ForestAdmin/lumber

View on GitHub
assets/database-examples/movies/dump.sql

Summary

Maintainability
Test Coverage
--
-- PostgreSQL database dump
--

-- Dumped from database version 10.3 (Debian 10.3-1.pgdg90+1)
-- Dumped by pg_dump version 10.3

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;


--
-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -
--

COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';


--
-- Name: pg_stat_statements; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA public;


--
-- Name: EXTENSION pg_stat_statements; Type: COMMENT; Schema: -; Owner: -
--

COMMENT ON EXTENSION pg_stat_statements IS 'track execution statistics of all SQL statements executed';


SET default_tablespace = '';

SET default_with_oids = false;

--
-- Name: actor_images; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.actor_images (
    id integer NOT NULL,
    url character varying(255),
    actor_id integer
);


--
-- Name: actor_images_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.actor_images_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: actor_images_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.actor_images_id_seq OWNED BY public.actor_images.id;


--
-- Name: actors; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.actors (
    id integer NOT NULL,
    name text
);


--
-- Name: actors_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.actors_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: actors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.actors_id_seq OWNED BY public.actors.id;


--
-- Name: actors_movies; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.actors_movies (
    movie_id integer,
    actor_id integer
);


--
-- Name: comments; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.comments (
    id integer NOT NULL,
    comment text,
    customer_id integer,
    movie_id integer,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    status integer
);


--
-- Name: comments_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.comments_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.comments_id_seq OWNED BY public.comments.id;


--
-- Name: countries; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.countries (
    id integer NOT NULL,
    name character varying(255)
);


--
-- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.countries_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.countries_id_seq OWNED BY public.countries.id;


--
-- Name: countries_movies; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.countries_movies (
    movie_id integer,
    country_id integer
);


--
-- Name: customers; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.customers (
    id integer NOT NULL,
    firstname character varying(255),
    lastname character varying(255),
    email character varying(255),
    stripe_id character varying(255),
    country character varying(255),
    city character varying(255),
    street_address character varying(255),
    zip_code character varying(255),
    state character varying(255),
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    encrypted_password character varying(255) DEFAULT ''::character varying NOT NULL,
    reset_password_token character varying(255),
    reset_password_sent_at timestamp without time zone,
    remember_created_at timestamp without time zone,
    sign_in_count integer DEFAULT 0 NOT NULL,
    current_sign_in_at timestamp without time zone,
    last_sign_in_at timestamp without time zone,
    current_sign_in_ip inet,
    last_sign_in_ip inet,
    gender character varying(255)
);


--
-- Name: customers_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.customers_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: customers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.customers_id_seq OWNED BY public.customers.id;


--
-- Name: genres; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.genres (
    id integer NOT NULL,
    genre text
);


--
-- Name: genres_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.genres_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: genres_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.genres_id_seq OWNED BY public.genres.id;


--
-- Name: genres_movies; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.genres_movies (
    movie_id integer,
    genre_id integer
);


--
-- Name: movies; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.movies (
    id integer NOT NULL,
    imdb_id text,
    title text,
    year text,
    runtime text,
    released date,
    director text[] DEFAULT '{}'::text[],
    writer text[] DEFAULT '{}'::text[],
    imdb_rating double precision,
    imdb_votes double precision,
    short_plot text,
    full_plot text,
    language text,
    country text,
    awards text,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    price numeric,
    poster_file_name character varying(255),
    poster_content_type character varying(255),
    poster_file_size integer,
    poster_updated_at timestamp without time zone
);


--
-- Name: movies_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.movies_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: movies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.movies_id_seq OWNED BY public.movies.id;


--
-- Name: rentals; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.rentals (
    id integer NOT NULL,
    customer_id integer,
    movie_id integer,
    created_at timestamp without time zone,
    updated_at timestamp without time zone
);


--
-- Name: rentals_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--

CREATE SEQUENCE public.rentals_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


--
-- Name: rentals_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--

ALTER SEQUENCE public.rentals_id_seq OWNED BY public.rentals.id;


--
-- Name: schema_migrations; Type: TABLE; Schema: public; Owner: -
--

CREATE TABLE public.schema_migrations (
    version character varying(255) NOT NULL
);


--
-- Name: actor_images id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.actor_images ALTER COLUMN id SET DEFAULT nextval('public.actor_images_id_seq'::regclass);


--
-- Name: actors id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.actors ALTER COLUMN id SET DEFAULT nextval('public.actors_id_seq'::regclass);


--
-- Name: comments id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.comments ALTER COLUMN id SET DEFAULT nextval('public.comments_id_seq'::regclass);


--
-- Name: countries id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.countries ALTER COLUMN id SET DEFAULT nextval('public.countries_id_seq'::regclass);


--
-- Name: customers id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.customers ALTER COLUMN id SET DEFAULT nextval('public.customers_id_seq'::regclass);


--
-- Name: genres id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.genres ALTER COLUMN id SET DEFAULT nextval('public.genres_id_seq'::regclass);


--
-- Name: movies id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.movies ALTER COLUMN id SET DEFAULT nextval('public.movies_id_seq'::regclass);


--
-- Name: rentals id; Type: DEFAULT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.rentals ALTER COLUMN id SET DEFAULT nextval('public.rentals_id_seq'::regclass);


--
-- Data for Name: actor_images; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.actor_images (id, url, actor_id) FROM stdin;
82    https://upload.wikimedia.org/wikipedia/commons/c/c0/Eyeshine_KotoriCon_4.jpg    1
83    https://upload.wikimedia.org/wikipedia/commons/0/01/Johnny_Yong_Bosch.jpg    1
84    https://upload.wikimedia.org/wikipedia/commons/f/f5/1976_Sad_Lonely_Sundays_Oath_Jack_Albertson_Sam_Jaffe.jpg    2
87    https://upload.wikimedia.org/wikipedia/commons/2/29/Iris_centralheterochromy.jpg    2
88    https://upload.wikimedia.org/wikipedia/commons/2/2b/Men_and_equipment_on_Leyte_beachhead.jpg    2
89    https://upload.wikimedia.org/wikipedia/en/0/0b/Patterns01.jpg    2
91    https://upload.wikimedia.org/wikipedia/commons/3/3d/Rod-Serling-HS-yearbook.jpg    2
92    https://upload.wikimedia.org/wikipedia/commons/e/e6/Rod_Serling_Memorial-2.png    2
93    https://upload.wikimedia.org/wikipedia/commons/0/0f/Rod_Serling_dictating_script_1959.jpg    2
95    https://upload.wikimedia.org/wikipedia/commons/e/e0/Daniel_Day-Lewis%2C_Jaguar%2C_Mille_Miglia_2013_cropped.jpg    3
96    https://upload.wikimedia.org/wikipedia/commons/2/2b/Daniel_Day-Lewis_2007.jpg    3
97    https://upload.wikimedia.org/wikipedia/commons/0/09/Daniel_Day-Lewis_and_wife_-_2008_Academy_Awards.JPG    3
98    https://upload.wikimedia.org/wikipedia/commons/9/99/Daniel_Day-Lewis_at_the_61st_British_Academy_Film_Awards_in_London%2C_UK_-_20080210.jpg    3
99    https://upload.wikimedia.org/wikipedia/commons/c/cd/Daniel_Day_Lewis_at_the_White_House.jpg    3
104    https://upload.wikimedia.org/wikipedia/commons/2/24/2010_Justin_Roiland.jpg    4
106    https://upload.wikimedia.org/wikipedia/commons/b/ba/9.13.09DavidCrossByLuigiNovi.jpg    5
107    https://upload.wikimedia.org/wikipedia/commons/d/d6/Arrested_Development_2011_Reunion_xvi_crop.jpg    5
109    https://upload.wikimedia.org/wikipedia/commons/f/fd/DavidCross2007.jpg    5
113    https://upload.wikimedia.org/wikipedia/commons/a/ac/%D0%94%D0%BC%D0%B8%D1%82%D1%80%D0%B8%D0%B9_%D0%94%D1%8E%D0%B6%D0%B5%D0%B2_2011.jpg    6
117    https://upload.wikimedia.org/wikipedia/commons/9/90/Erich_von_Stroheim.lowrey.jpg    8
118    https://upload.wikimedia.org/wikipedia/en/5/5c/Erich_von_Stroheim_1941.jpg    8
119    https://upload.wikimedia.org/wikipedia/commons/0/06/Karamzinandwomen.jpg    8
123    https://upload.wikimedia.org/wikipedia/commons/4/43/L_Ordre_et_la_Morale_Mathieu_Kassovitz_2.jpg    9
124    https://upload.wikimedia.org/wikipedia/commons/f/fe/Mathieu_Kassovitz.jpg    9
126    https://upload.wikimedia.org/wikipedia/commons/7/72/Birgitte_Hjort_S%C3%B8rensen_on_the_Marie_Kr%C3%B8yer_movie_poster_%28cropped%29.jpg    11
128    https://upload.wikimedia.org/wikipedia/commons/4/4d/GeneHackmanJun08.jpg    12
129    https://upload.wikimedia.org/wikipedia/commons/c/c4/GeneHackmanJun2108.jpg    12
133    https://upload.wikimedia.org/wikipedia/commons/0/0f/CourteneyCoxFeb09.jpg    14
134    https://upload.wikimedia.org/wikipedia/commons/8/83/Courteney_Cox_%2710_PaleyFest.jpg    14
135    https://upload.wikimedia.org/wikipedia/commons/8/81/Courteney_Cox_1995.jpg    14
142    https://upload.wikimedia.org/wikipedia/commons/f/f4/Nils_Poppe_1942.jpg    15
147    https://upload.wikimedia.org/wikipedia/commons/6/65/Claire_Danes.jpg    17
148    https://upload.wikimedia.org/wikipedia/commons/3/32/Claire_Danes_2012_Shankbone.JPG    17
149    https://upload.wikimedia.org/wikipedia/commons/4/48/Claire_Danes_at_Much_Music_by_Robin_Wong_6.jpg    17
153    https://upload.wikimedia.org/wikipedia/commons/b/bb/Nancy_Olson_Everett_Sloane_High_Tor_1956.jpg    18
154    https://upload.wikimedia.org/wikipedia/commons/f/f9/Sunset_Boulevard_19.jpg    18
156    https://upload.wikimedia.org/wikipedia/commons/b/b7/Ulrich_Tukur.jpg    19
157    https://upload.wikimedia.org/wikipedia/commons/3/32/Ulrich_Tukur_und_die_Rhythmus_Boys-Malerei_von_Manfred_W_Juergens-2010.jpg    19
158    https://upload.wikimedia.org/wikipedia/commons/0/0d/Paul_Winfield_Mark_Slade_High_Chaparral_1969.JPG    20
160    https://upload.wikimedia.org/wikipedia/commons/8/8d/Fan-siu-wong-2010-5-22-17-44-57.jpg    21
166    https://upload.wikimedia.org/wikipedia/commons/3/3e/BryceDallasHowardSept08TIFF.jpg    22
167    https://upload.wikimedia.org/wikipedia/commons/5/5e/Bryce_Dallas_Howard_NYFF_2010_%22Hereafter%22_Press_Conference%284%29_%28cropped%29.jpg    22
168    https://upload.wikimedia.org/wikipedia/commons/9/92/Bryce_Dallas_Howard_TIFF_2%2C_2011.jpg    22
169    https://upload.wikimedia.org/wikipedia/commons/1/1e/Bryce_Dallas_Howard_by_David_Shankbone.jpg    22
171    https://upload.wikimedia.org/wikipedia/commons/a/ab/Night_Shyamalan-2.jpg    22
173    https://upload.wikimedia.org/wikipedia/commons/7/76/Abbi_Jacobson_at_2015_PaleyFest.jpg    23
176    https://upload.wikimedia.org/wikipedia/commons/a/ad/SatishShah3.jpg    24
180    https://upload.wikimedia.org/wikipedia/commons/d/dd/KateAtkinson2007.png    25
183    https://upload.wikimedia.org/wikipedia/commons/c/c2/Flickr_-_nicogenin_-_66%C3%A8me_Festival_de_Venise_%28Mostra%29_-_Sylvester_Stallone_%2826%29.jpg    26
185    https://upload.wikimedia.org/wikipedia/commons/5/52/SignatureSylvesterStallone-FirmaSly.jpg    26
186    https://upload.wikimedia.org/wikipedia/commons/1/1f/Stallone-Handprints.jpg    26
187    https://upload.wikimedia.org/wikipedia/commons/8/81/Stallone-Hollywood-Star.jpg    26
189    https://upload.wikimedia.org/wikipedia/commons/4/42/Sylvester_Stallone.jpg    26
190    https://upload.wikimedia.org/wikipedia/commons/3/32/Sylvester_Stallone_%281983%29.jpg    26
191    https://upload.wikimedia.org/wikipedia/commons/a/a2/Sylvester_Stallone_-_1977.jpg    26
193    https://upload.wikimedia.org/wikipedia/commons/d/d2/Carrol_O%27Connor_as_Archie_Bunker.JPG    27
194    https://upload.wikimedia.org/wikipedia/commons/b/bf/Carroll_O%27Connor_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    27
199    https://upload.wikimedia.org/wikipedia/commons/4/4c/Fairport%2C_New_York_village_hall.jpg    28
200    https://upload.wikimedia.org/wikipedia/commons/e/eb/Paul_Thomas_Anderson_2007_crop.jpg    28
201    https://upload.wikimedia.org/wikipedia/commons/7/71/PhilipSeymourHoffmanAAFeb09.jpg    28
202    https://upload.wikimedia.org/wikipedia/commons/0/0b/PhilipSeymourHoffmanSept2010.jpg    28
203    https://upload.wikimedia.org/wikipedia/commons/7/72/Philip_Seymour_Hoffman%2C_Anton_Corbijn_and_Grigoriy_Dobrygin.jpg    28
204    https://upload.wikimedia.org/wikipedia/commons/f/f5/Philip_Seymour_Hoffman_2011.jpg    28
205    https://upload.wikimedia.org/wikipedia/en/d/de/Philip_Seymour_Hoffman_Flawless.jpg    28
206    https://upload.wikimedia.org/wikipedia/commons/6/63/Philip_Seymour_Hoffman_at_Cannes_2002.jpg    28
208    https://upload.wikimedia.org/wikipedia/commons/7/73/Rick_Hoffman.jpg    29
210    https://upload.wikimedia.org/wikipedia/commons/5/57/Sergei_Bezrukov_%282015-06-05%29_06.jpg    30
211    https://upload.wikimedia.org/wikipedia/commons/e/ef/Sergei_Bezrukov_2008.jpg    30
214    https://upload.wikimedia.org/wikipedia/commons/3/37/JoePesci-2009.jpg    31
217    https://upload.wikimedia.org/wikipedia/commons/b/bc/Eton_College_quadrangle.jpg    32
218    https://upload.wikimedia.org/wikipedia/commons/6/6a/Hugh_Laurie_%40_El_Rey_Theatre8.jpg    32
219    https://upload.wikimedia.org/wikipedia/commons/3/35/Hugh_Laurie_at_Montreux_Jazz_Festival.jpg    32
220    https://upload.wikimedia.org/wikipedia/commons/c/c9/School_House%2C_Dragon_School%2C_Oxford.JPG    32
223    https://upload.wikimedia.org/wikipedia/commons/1/1a/EddieMurphy.jpg    33
224    https://upload.wikimedia.org/wikipedia/commons/e/e7/EddieMurphy1988.jpg    33
225    https://upload.wikimedia.org/wikipedia/commons/5/5f/Eddie_Murphy_by_David_Shankbone.jpg    33
230    https://upload.wikimedia.org/wikipedia/commons/b/b2/Reece_Shearsmith.jpg    34
231    https://upload.wikimedia.org/wikipedia/en/3/3e/MarioBrega%2766.jpg    35
234    https://upload.wikimedia.org/wikipedia/commons/2/25/Robert_Patrick.jpg    37
235    https://upload.wikimedia.org/wikipedia/commons/f/f4/Robert_Patrick_SDCC_2014_%28cropped%29.jpg    37
237    https://upload.wikimedia.org/wikipedia/commons/e/ee/Jack_Davenport_1.JPG    38
239    https://upload.wikimedia.org/wikipedia/commons/1/14/Kyle_MacLachlan.jpg    39
240    https://upload.wikimedia.org/wikipedia/commons/7/73/Kyle_MacLachlan_2011_Shankbone.JPG    39
241    https://upload.wikimedia.org/wikipedia/commons/d/d4/Kyle_MacLachlan_Lara_Flynn_Boyle_Emmy_Awards_1990.jpg    39
242    https://upload.wikimedia.org/wikipedia/commons/e/e0/Kyle_MacLachlan_signature.svg    39
245    https://upload.wikimedia.org/wikipedia/commons/9/92/Don_Rickles.jpg    40
246    https://upload.wikimedia.org/wikipedia/commons/5/55/Don_Rickles_1973.JPG    40
247    https://upload.wikimedia.org/wikipedia/en/e/e7/Don_Rickles_and_Lorne_Green.jpg    40
248    https://upload.wikimedia.org/wikipedia/commons/5/57/Don_Rickles_and_Louise_Sorel%2C_1971.jpg    40
249    https://upload.wikimedia.org/wikipedia/commons/1/1e/E3_SM_USN.png    40
253    https://upload.wikimedia.org/wikipedia/commons/a/ad/Actress_Zoe_Saldana.jpg    41
256    https://upload.wikimedia.org/wikipedia/commons/8/87/Zoe_Saldana.jpg    41
257    https://upload.wikimedia.org/wikipedia/commons/6/66/Zoe_Saldana_%28Headshot%29.jpg    41
258    https://upload.wikimedia.org/wikipedia/commons/0/0a/Zoe_Saldana_-_Guardians_of_the_Galaxy_premiere_-_July_2014_%28cropped%29.jpg    41
259    https://upload.wikimedia.org/wikipedia/commons/f/f3/Zoe_Saldana_at_2012_ALMA_Awards.jpg    41
260    https://upload.wikimedia.org/wikipedia/commons/d/d5/Zoe_Salda%C3%B1a_2009.jpg    41
262    https://upload.wikimedia.org/wikipedia/commons/1/1f/Dee_Bradley_Baker_by_Gage_Skidmore.jpg    42
264    https://upload.wikimedia.org/wikipedia/commons/a/a1/Kana_Hanazawa.jpg    43
266    https://upload.wikimedia.org/wikipedia/commons/b/b4/Jennifer_Morrison_2012_Shankbone_2.JPG    44
267    https://upload.wikimedia.org/wikipedia/commons/3/36/Jennifer_Morrison_SDCC_2014.jpg    44
268    https://upload.wikimedia.org/wikipedia/commons/8/8c/Jennifer_Morrison_TIFF_2013.jpg    44
269    https://upload.wikimedia.org/wikipedia/commons/e/ea/Jennifer_Morrison_in_March_2012.jpg    44
278    https://upload.wikimedia.org/wikipedia/commons/c/cc/Tom_Kenny_FSC_2015.jpg    45
279    https://upload.wikimedia.org/wikipedia/commons/f/ff/Tom_Kenny_by_Gage_Skidmore.jpg    45
281    https://upload.wikimedia.org/wikipedia/commons/9/9e/Jeff_Daniels_at_PaleyFest_2013.jpg    46
282    https://upload.wikimedia.org/wikipedia/commons/e/e8/Purple_Rose_Theater.JPG    46
286    https://upload.wikimedia.org/wikipedia/commons/8/8a/Crowe1.JPG    47
287    https://upload.wikimedia.org/wikipedia/commons/8/8e/RussellCroweApr09.jpg    47
288    https://upload.wikimedia.org/wikipedia/commons/e/ee/Russell_Crowe.jpg    47
289    https://upload.wikimedia.org/wikipedia/commons/5/53/Russell_Crowe_Danielle_Spencer_Sept_14_2011.jpg    47
290    https://upload.wikimedia.org/wikipedia/commons/1/19/Russell_Crowe_cropped.JPG    47
291    https://upload.wikimedia.org/wikipedia/commons/9/91/Russell_crowe_nypd.jpg    47
294    https://upload.wikimedia.org/wikipedia/en/6/63/Robby_Benson_-_1980_promo.jpg    48
296    https://upload.wikimedia.org/wikipedia/commons/8/8a/Una_Stubbs%2C_filming_Sherlock_%282015%29.jpg    49
297    https://upload.wikimedia.org/wikipedia/commons/6/6e/Boeing_707-138B%2C_Qantas_%28John_Travolta%29_AN0270675.jpg    50
299    https://upload.wikimedia.org/wikipedia/commons/d/d1/John_T_color_01.jpg    50
300    https://upload.wikimedia.org/wikipedia/commons/2/2b/John_Travolta_1997.jpg    50
301    https://upload.wikimedia.org/wikipedia/commons/b/b7/John_Travolta_Deauville_2013_2.jpg    50
302    https://upload.wikimedia.org/wikipedia/commons/9/97/John_Travolta_Kelly_Preston_Cannes_2014.jpg    50
303    https://upload.wikimedia.org/wikipedia/commons/9/9d/John_Travolta_and_Princess_Diana.jpg    50
306    https://upload.wikimedia.org/wikipedia/en/6/61/Searchtool.svg    50
308    https://upload.wikimedia.org/wikipedia/commons/3/3d/MirandaRichardsonSept10TIFF.jpg    51
309    https://upload.wikimedia.org/wikipedia/commons/2/26/Miranda_Richardson_Met_Opera_2010_Shankbone.jpg    51
313    https://upload.wikimedia.org/wikipedia/commons/7/79/B%C3%B6rje_Ahlstedt_%28photo_by_Sune_Frack_on_Flickr%29.jpg    55
314    https://upload.wikimedia.org/wikipedia/commons/3/3b/Kjerstin_Dellert_%26_B%C3%B6rje_Ahlstedt_2015.JPG    55
317    https://upload.wikimedia.org/wikipedia/en/4/4b/Nigel_Hawthorne_photo.jpg    56
321    https://upload.wikimedia.org/wikipedia/commons/c/cb/MarkMcKinney1SecondFilm.jpg    57
323    https://upload.wikimedia.org/wikipedia/commons/8/81/Rhys_Darby_2013.jpg    58
325    https://upload.wikimedia.org/wikipedia/commons/7/71/Flickr_-_moses_namkung_-_30_Seconds_to_Mars-3.jpg    59
326    https://upload.wikimedia.org/wikipedia/commons/2/2f/Flickr_-_nicogenin_-_66%C3%A8me_Festival_de_Venise_%28Mostra%29_-_Jared_Leto_%2814%29.jpg    59
328    https://upload.wikimedia.org/wikipedia/commons/7/7d/Jared_Leto%2C_Anfiteatro_Camerini_%283%29.jpg    59
329    https://upload.wikimedia.org/wikipedia/commons/b/b3/Jared_Leto%2C_Anfiteatro_Camerini_%285%29.jpg    59
330    https://upload.wikimedia.org/wikipedia/commons/8/82/Jared_Leto%2C_Anfiteatro_Camerini_%287%29.jpg    59
331    https://upload.wikimedia.org/wikipedia/commons/d/d1/Jared_Leto%2C_Paley_Center_1995.jpg    59
332    https://upload.wikimedia.org/wikipedia/commons/7/71/Jaredletoinconcert2006.jpg    59
334    https://upload.wikimedia.org/wikipedia/commons/c/c7/Coat_of_Arms_-_Baron_Haden-Guest%2C_of_Saling_in_the_County_of_Essex.png    60
337    https://upload.wikimedia.org/wikipedia/commons/d/d0/Guest4.jpg    60
339    https://upload.wikimedia.org/wikipedia/commons/d/dd/ACTOR_ERNEST_BORGNINE_EMCEES_THE_ANNUAL_%22OLD_MILWAUKEE_DAYS%22_CIRCUS_PARADE_FOR_THE_NATIONAL_EDUCATIONAL_TELEVISION..._-_NARA_-_549578.jpg    61
342    https://upload.wikimedia.org/wikipedia/commons/3/3e/Edit-copy_purple-wikiq.svg    61
343    https://upload.wikimedia.org/wikipedia/commons/b/be/Ernest-Borgnine_2004.JPEG    61
344    https://upload.wikimedia.org/wikipedia/commons/6/6b/ErnestBorgnineApr10.jpg    61
345    https://upload.wikimedia.org/wikipedia/commons/f/f6/Ernest_Borgnine-Betsy_Blair_in_Marty_trailer.jpg    61
346    https://upload.wikimedia.org/wikipedia/commons/1/17/Ernest_Borgnine-oscar.jpg    61
347    https://upload.wikimedia.org/wikipedia/commons/b/b4/Ernest_Borgnine_%28signature%29.png    61
348    https://upload.wikimedia.org/wikipedia/commons/8/89/Ernest_Borgnine_McHale_McHale%27s_Navy_1962.JPG    61
349    https://upload.wikimedia.org/wikipedia/commons/c/cf/AndyLau2005_2.jpg    62
350    https://upload.wikimedia.org/wikipedia/commons/b/bb/Andylau_in_concert_4.30.2011-02.jpg    62
351    https://upload.wikimedia.org/wikipedia/commons/e/e5/Avenue_of_the_Stars_%E6%98%9F%E5%85%89%E5%A4%A7%E9%81%93_%285284210776%29.jpg    62
354    https://upload.wikimedia.org/wikipedia/commons/8/86/Madame_Tussauds_HK_andylau.JPG    62
361    https://upload.wikimedia.org/wikipedia/commons/0/0b/JoshBrolinSept10TIFF.jpg    64
362    https://upload.wikimedia.org/wikipedia/commons/6/6f/Josh_Brolin_%28Berlin_Film_Festival_2011%29.jpg    64
363    https://upload.wikimedia.org/wikipedia/commons/9/93/Josh_Brolin_Berlin_2016.jpg    64
364    https://upload.wikimedia.org/wikipedia/commons/3/31/2009_07_31_David_Tennant_smile_09.jpg    65
366    https://upload.wikimedia.org/wikipedia/commons/3/38/David_Tennant_July_2009.jpg    65
368    https://upload.wikimedia.org/wikipedia/commons/b/b2/Marlonwayans.JPG    66
371    https://upload.wikimedia.org/wikipedia/commons/2/2c/Devon_Aoki.jpg    68
373    https://upload.wikimedia.org/wikipedia/commons/b/bd/Bess_Armstrong.JPG    69
374    https://upload.wikimedia.org/wikipedia/commons/5/55/14060-Asteroid-P2013R3-Disintegration-20140306.jpg    70
375    https://upload.wikimedia.org/wikipedia/commons/c/c6/17pHolmes_071104_eder_vga.jpg    70
376    https://upload.wikimedia.org/wikipedia/commons/c/c4/An_Emerald_in_the_Sky.jpg    70
377    https://upload.wikimedia.org/wikipedia/commons/a/a3/Asteroid_P2013_P5_v2.jpg    70
378    https://upload.wikimedia.org/wikipedia/commons/d/df/Comet-Hale-Bopp-29-03-1997_hires_adj.jpg    70
379    https://upload.wikimedia.org/wikipedia/commons/8/81/Comet_67P_on_19_September_2014_NavCam_mosaic.jpg    70
380    https://upload.wikimedia.org/wikipedia/commons/e/e6/Comet_Hartley_2.jpg    70
381    https://upload.wikimedia.org/wikipedia/commons/1/1f/Comet_Kohoutek_orbit_p391.svg    70
382    https://upload.wikimedia.org/wikipedia/commons/d/d4/Comet_P1_McNaught02_-_23-01-07-edited.jpg    70
383    https://upload.wikimedia.org/wikipedia/commons/5/5d/Comet_Parts.svg    70
389    https://upload.wikimedia.org/wikipedia/commons/7/7a/Libertybell_alone_small.jpg    71
390    https://upload.wikimedia.org/wikipedia/commons/5/5f/Lionel_Barrymore.gif    71
391    https://upload.wikimedia.org/wikipedia/commons/3/3f/Lionel_Barrymore.jpg    71
392    https://upload.wikimedia.org/wikipedia/commons/7/7d/Lionel_Barrymore_%26_Irene_Fenwick.jpg    71
393    https://upload.wikimedia.org/wikipedia/commons/2/22/Lionel_Barrymore_2.jpg    71
395    https://upload.wikimedia.org/wikipedia/commons/c/ce/TVMEXICO.png    72
397    https://upload.wikimedia.org/wikipedia/en/6/6b/JamesMayAutocar.jpg    73
398    https://upload.wikimedia.org/wikipedia/commons/b/b9/James_May.jpg    73
399    https://upload.wikimedia.org/wikipedia/commons/6/63/James_May_%28cropped%29.jpg    73
403    https://upload.wikimedia.org/wikipedia/commons/f/fa/Wentworth_Miller_signing_autographs.jpg    74
404    https://upload.wikimedia.org/wikipedia/commons/8/86/Wentworth_by_Andrew_Horovitz.JPG    74
407    https://upload.wikimedia.org/wikipedia/en/6/64/Fritz_Rasp.jpg    75
408    https://upload.wikimedia.org/wikipedia/commons/9/98/Megumi_Han_%28%E6%BD%98_%E3%82%81%E3%81%90%E3%81%BF%29_at_Anime_Expo_2013.jpg    76
412    https://upload.wikimedia.org/wikipedia/commons/9/98/Bundesarchiv_Bild_183-1983-1118-005%2C_Berlin%2C_%22Gespenster%22.jpg    79
413    https://upload.wikimedia.org/wikipedia/commons/2/2d/Bundesarchiv_Bild_183-1989-1104-034%2C_Berlin%2C_Demonstration%2C_Rede_Schall%2C_M%C3%BChe.jpg    79
414    https://upload.wikimedia.org/wikipedia/commons/3/37/Grab_Ulrich_M%C3%BChe_Walbeck.jpg    79
415    https://upload.wikimedia.org/wikipedia/commons/d/d8/Liebeingedanken_02.jpg    79
416    https://upload.wikimedia.org/wikipedia/en/f/f0/M%C3%BChe-Others.jpg    79
418    https://upload.wikimedia.org/wikipedia/commons/f/fc/UlrichMuhe-20051205.jpg    79
419    https://upload.wikimedia.org/wikipedia/commons/d/d8/Volksb%C3%BChne1999_gobeirne.jpg    79
422    https://upload.wikimedia.org/wikipedia/commons/5/53/DanicaMcKellar-2007-10-01.jpg    81
423    https://upload.wikimedia.org/wikipedia/commons/c/c1/Ed_O%27Neill_at_2015_PaleyFest.jpg    82
425    https://upload.wikimedia.org/wikipedia/commons/c/cf/Michael_C._Hall_2011.jpg    83
426    https://upload.wikimedia.org/wikipedia/commons/3/3f/Michael_C._Hall_by_Gage_Skidmore.jpg    83
427    https://upload.wikimedia.org/wikipedia/commons/1/11/Michael_C_Hall_in_Cabaret.jpg    83
429    https://upload.wikimedia.org/wikipedia/commons/b/b1/Jodie_Foster.4785.jpg    84
430    https://upload.wikimedia.org/wikipedia/commons/5/5a/Jodie_Foster_%281989%29.jpg    84
431    https://upload.wikimedia.org/wikipedia/commons/a/a3/Jodie_Foster_Alan_Light_cropped.jpg    84
432    https://upload.wikimedia.org/wikipedia/commons/1/16/Jodie_Foster_C%C3%A9sars_2011_cropped.JPG    84
433    https://upload.wikimedia.org/wikipedia/commons/7/79/Lyceela_main_campus.jpg    84
434    https://upload.wikimedia.org/wikipedia/commons/6/61/Mel_Gibson_Jodie_Foster_Cannes_2011.jpg    84
437    https://upload.wikimedia.org/wikipedia/commons/c/c9/Paper_Moon_TV_series_Foster_Connelly_1974.jpg    84
439    https://upload.wikimedia.org/wikipedia/commons/8/83/Michael_J._Fox_2012_%28cropped%29_%282%29.jpg    85
440    https://upload.wikimedia.org/wikipedia/commons/5/53/Michael_J._Fox_Hand_Prints.jpg    85
441    https://upload.wikimedia.org/wikipedia/commons/e/e6/Michael_J._Fox_with_Rick_Best.jpg    85
442    https://upload.wikimedia.org/wikipedia/commons/2/2b/Michael_J_Fox_1988-cropped1.jpg    85
443    https://upload.wikimedia.org/wikipedia/commons/5/5b/Michael_J_Fox_Theatre.jpg    85
444    https://upload.wikimedia.org/wikipedia/commons/2/22/Michael_J_Fox_Tracy_Pollan2.jpeg    85
445    https://upload.wikimedia.org/wikipedia/commons/9/91/Michael_J_Fox_Walk_of_fame.jpg    85
448    https://upload.wikimedia.org/wikipedia/commons/6/64/1936_Claudette_Colbert_%26_Mother.jpg    86
449    https://upload.wikimedia.org/wikipedia/commons/4/46/CLAUDETTE_COLBERT_Screenland.jpg    86
450    https://upload.wikimedia.org/wikipedia/commons/9/98/Claudette_Colbert%2C_La_Gringa.jpg    86
451    https://upload.wikimedia.org/wikipedia/commons/1/1b/Claudette_Colbert-Patric_Knowles_in_Three_Came_Home.jpg    86
452    https://upload.wikimedia.org/wikipedia/commons/a/a1/Claudette_Colbert_1931.jpg    86
453    https://upload.wikimedia.org/wikipedia/commons/b/b2/Claudette_Colbert_1959.jpg    86
454    https://upload.wikimedia.org/wikipedia/commons/f/fa/Claudette_Colbert_in_I_Cover_the_Waterfront_2.jpg    86
455    https://upload.wikimedia.org/wikipedia/commons/2/2e/Claudette_Colbert_in_It_Happened_One_Night.jpg    86
456    https://upload.wikimedia.org/wikipedia/commons/d/d6/Claudette_Colbert_in_Tovarich_trailer_2_cropped.jpg    86
457    https://upload.wikimedia.org/wikipedia/commons/1/1a/Claudette_colbert_2.jpg    86
458    https://upload.wikimedia.org/wikipedia/commons/a/ab/8.23.12MichaelBiehnByLuigiNovi9.jpg    87
459    https://upload.wikimedia.org/wikipedia/commons/6/64/AH-1_Cobra_helicopter.jpg    87
460    https://upload.wikimedia.org/wikipedia/en/6/67/Alien_%281986%29_-_Alien_queen.jpg    87
461    https://upload.wikimedia.org/wikipedia/commons/9/9e/Alien_logo.svg    87
462    https://upload.wikimedia.org/wikipedia/en/f/f6/Aliens_%28film%29_APC.jpg    87
463    https://upload.wikimedia.org/wikipedia/en/f/fb/Aliens_poster.jpg    87
464    https://upload.wikimedia.org/wikipedia/commons/1/1e/Bill_Paxton_2014_WonderCon_%28cropped%29.jpg    87
467    https://upload.wikimedia.org/wikipedia/commons/5/59/Gale_Ann_Hurd_and_James_Cameron.jpg    87
468    https://upload.wikimedia.org/wikipedia/commons/2/2a/Cillian_Murphy_2010.jpg    88
469    https://upload.wikimedia.org/wikipedia/commons/c/ce/Cillian_Murphy_OIFF2012.jpg    88
470    https://upload.wikimedia.org/wikipedia/commons/5/52/Cillian_Murphy_Promotes_%27Aloft%27_in_Berlin.jpg    88
471    https://upload.wikimedia.org/wikipedia/commons/6/68/Cillianmurphy.jpg    88
477    https://upload.wikimedia.org/wikipedia/commons/4/4f/Michael_Gambon_cropped.jpg    89
479    https://upload.wikimedia.org/wikipedia/commons/b/b2/1963_Cleopatra_trailer_screenshot_2.jpg    90
480    https://upload.wikimedia.org/wikipedia/commons/1/19/Ava_gardner_night_iguana.jpg    90
483    https://upload.wikimedia.org/wikipedia/commons/4/41/Miners_Arms%2C_Pontrhydyfen_-_geograph.org.uk_-_3798450.jpg    90
485    https://upload.wikimedia.org/wikipedia/commons/0/08/RichardBurton.jpg    90
486    https://upload.wikimedia.org/wikipedia/commons/9/95/Richard_Burton_Henry_V_1951.jpg    90
487    https://upload.wikimedia.org/wikipedia/commons/c/c9/Richard_Burton_Julie_Andrews_Guenevere_and_Arthur_Camelot.JPG    90
488    https://upload.wikimedia.org/wikipedia/commons/4/4e/Richard_Burton_Roddy_McDowall_Camelot_1963.JPG    90
489    https://upload.wikimedia.org/wikipedia/commons/6/64/Patrick_Fabian_on_the_Bellin_Run_2011.jpg    91
491    https://upload.wikimedia.org/wikipedia/commons/8/82/Damon_cropped.jpg    92
492    https://upload.wikimedia.org/wikipedia/commons/7/77/MattDamonGraumanHandFootprintsOct10.jpg    92
493    https://upload.wikimedia.org/wikipedia/commons/4/43/MattDamonHWoFOct10.jpg    92
494    https://upload.wikimedia.org/wikipedia/commons/f/f9/Matt_Damon_66%C3%A8me_Festival_de_Venise_%28Mostra%29_16.jpg    92
495    https://upload.wikimedia.org/wikipedia/commons/8/83/Matt_Damon_TIFF_2015.jpg    92
496    https://upload.wikimedia.org/wikipedia/commons/e/e2/Matt_Damon_in_Haiti_2009.jpg    92
497    https://upload.wikimedia.org/wikipedia/commons/c/c4/Ocean%27s11Cast.jpg    92
500    https://upload.wikimedia.org/wikipedia/commons/3/38/Jeremy_Allen_White%2C_AT%26T_Center%2C_2013.jpg    94
501    https://upload.wikimedia.org/wikipedia/commons/b/ba/Anna_Paquin.jpg    95
502    https://upload.wikimedia.org/wikipedia/commons/e/eb/Anna_Paquin_2009_adjusted.jpg    95
503    https://upload.wikimedia.org/wikipedia/commons/c/ca/Anna_Paquin_Comic-Con_2012.jpg    95
505    https://upload.wikimedia.org/wikipedia/en/8/8a/Sookie_%28TB%29.jpg    95
506    https://upload.wikimedia.org/wikipedia/commons/7/75/Stephen_Moyer_%26_Anna_Paquin.jpg    95
508    https://upload.wikimedia.org/wikipedia/commons/4/4b/Shaun_Williamson.jpg    96
510    https://upload.wikimedia.org/wikipedia/commons/1/15/Ned_Beatty_at_the_1990_Annual_Emmy_Awards.jpg    97
511    https://upload.wikimedia.org/wikipedia/commons/b/b5/Ned_Beatty_cropped.jpg    97
512    https://upload.wikimedia.org/wikipedia/commons/c/c8/Szysznyk_cast_1977.JPG    97
514    https://upload.wikimedia.org/wikipedia/commons/7/70/Terry_Jones.jpg    99
516    https://upload.wikimedia.org/wikipedia/en/f/fb/Yes_check.svg    99
520    https://upload.wikimedia.org/wikipedia/commons/0/08/Jim_Cummings_January_2015.jpg    100
523    https://upload.wikimedia.org/wikipedia/commons/e/ef/Mary_McDonnell_ComiCon_%28cropped%29.jpg    102
524    https://upload.wikimedia.org/wikipedia/commons/1/10/Mary_McDonnell_May_2015.jpg    102
527    https://upload.wikimedia.org/wikipedia/commons/f/f4/Sterling_K_Brown_1a.jpg    105
531    https://upload.wikimedia.org/wikipedia/commons/3/3d/Nicoletta_Braschi.jpg    106
537    https://upload.wikimedia.org/wikipedia/commons/a/a9/Ulrich_Matthes.jpg    107
539    https://upload.wikimedia.org/wikipedia/commons/e/ea/Liv_Ullmann_1966_2_%28cropped%29.jpg    108
540    https://upload.wikimedia.org/wikipedia/commons/7/79/Liv_Ullmann_2014.jpg    108
541    https://upload.wikimedia.org/wikipedia/commons/c/c2/Liv_Ullmann_Four_Freedoms_Award.jpg    108
542    https://upload.wikimedia.org/wikipedia/commons/6/6d/2009-0314-LV-002-TonyCurtis.jpg    109
546    https://upload.wikimedia.org/wikipedia/commons/b/b9/Tony_Curtis_1958.jpg    109
547    https://upload.wikimedia.org/wikipedia/commons/b/bf/Tony_Curtis_portrait.jpg    109
550    https://upload.wikimedia.org/wikipedia/commons/3/3c/Max_Von_Sydow_%28Premio_Donosti_-_conferencia_de_prensa%292.jpg    110
551    https://upload.wikimedia.org/wikipedia/commons/9/91/Max_von_Sydow_1992.jpg    110
552    https://upload.wikimedia.org/wikipedia/commons/e/e5/Max_von_Sydow_Cannes_2013.jpg    110
555    https://upload.wikimedia.org/wikipedia/commons/0/0d/McAdamsDowneyJrSherlockHolmesCCJuly09.jpg    111
557    https://upload.wikimedia.org/wikipedia/commons/7/7e/Robert_Downey_Jr-2008.JPG    111
558    https://upload.wikimedia.org/wikipedia/commons/8/83/Robert_Downey_Jr._and_Susan_Downey_%40_2010_Academy_Awards.jpg    111
559    https://upload.wikimedia.org/wikipedia/commons/a/a5/Robert_Downey_Jr.jpg    111
560    https://upload.wikimedia.org/wikipedia/commons/9/94/Robert_Downey_Jr_2014_Comic_Con_%28cropped%29.jpg    111
561    https://upload.wikimedia.org/wikipedia/commons/a/a6/Robert_Downey_Jr_at_Comic_Con_2007.jpg    111
564    https://upload.wikimedia.org/wikipedia/commons/6/6d/NormanReedus2015.jpg    112
565    https://upload.wikimedia.org/wikipedia/commons/5/59/Bill_Lancaster_1967.JPG    113
566    https://upload.wikimedia.org/wikipedia/commons/7/79/Burt_Lancaster_-_Audrey_Hepburn_-_1960.JPG    113
567    https://upload.wikimedia.org/wikipedia/commons/f/f2/Burt_Lancaster_-_publicity_1947.JPG    113
568    https://upload.wikimedia.org/wikipedia/commons/1/1b/Burt_Lancaster_and_Deborah_Kerr_in_From_Here_to_Eternity_trailer.jpg    113
569    https://upload.wikimedia.org/wikipedia/commons/3/35/Burt_Lancaster_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    113
570    https://upload.wikimedia.org/wikipedia/commons/b/ba/Circus-Lancaster-Cravat.jpg    113
571    https://upload.wikimedia.org/wikipedia/commons/3/35/Circus-Lancaster.jpg    113
573    https://upload.wikimedia.org/wikipedia/commons/9/9b/Judgment_at_Nuremberg-Burt_Lancaster_2.jpg    113
574    https://upload.wikimedia.org/wikipedia/commons/9/9d/Killers001.jpg    113
576    https://upload.wikimedia.org/wikipedia/commons/a/a7/Jean-Pierre_L%C3%A9aud_C%C3%A9sars.jpg    114
578    https://upload.wikimedia.org/wikipedia/commons/b/b5/KevinMcKidd10TIFF.jpg    115
581    https://upload.wikimedia.org/wikipedia/commons/1/13/Chi_McBride_2.jpg    117
585    https://upload.wikimedia.org/wikipedia/commons/d/db/Grand-Illusion-1937.jpg    119
587    https://upload.wikimedia.org/wikipedia/commons/2/2a/Angel_Inn%2C_Highgate%2C_N6.jpg    120
588    https://upload.wikimedia.org/wikipedia/commons/c/c0/Graham_Chapman%27s_house_in_Highgate.jpg    120
589    https://upload.wikimedia.org/wikipedia/en/7/7f/Graham_Chapman_Colonel.jpg    120
590    https://upload.wikimedia.org/wikipedia/en/f/f7/Graham_Chapman_Portrait.png    120
593    https://upload.wikimedia.org/wikipedia/commons/2/24/Jamie_Bell_by_Gage_Skidmore.jpg    121
595    https://upload.wikimedia.org/wikipedia/commons/d/d6/Tom_Berenger_-_Monte-Carlo_Television_Festival.jpg    122
597    https://upload.wikimedia.org/wikipedia/commons/7/7f/Geena_Davis_and_Jeff_Goldblum_1990.jpg    123
598    https://upload.wikimedia.org/wikipedia/commons/5/5d/JeffGoldblumFrontMay05.jpg    123
599    https://upload.wikimedia.org/wikipedia/commons/d/df/Jeff_Goldblum.jpg    123
600    https://upload.wikimedia.org/wikipedia/commons/c/c4/Jeff_Goldblum_2010_%28Straighten_Crop%29.jpg    123
604    https://upload.wikimedia.org/wikipedia/commons/f/fb/Andy_Berman_crop.jpg    124
606    https://upload.wikimedia.org/wikipedia/commons/9/98/Kim_Roi-ha_at_BIFF_2013.jpg    125
607    https://upload.wikimedia.org/wikipedia/commons/7/70/Korea_people_stub.svg    125
609    https://upload.wikimedia.org/wikipedia/commons/7/74/JonathanRossRickyGervais.jpg    126
610    https://upload.wikimedia.org/wikipedia/commons/1/1e/RickyGervais.jpg    126
611    https://upload.wikimedia.org/wikipedia/commons/9/94/RickyGervaisBAFTA07.jpg    126
612    https://upload.wikimedia.org/wikipedia/commons/7/73/Ricky_Gervais_2010.jpg    126
613    https://upload.wikimedia.org/wikipedia/commons/7/7e/Ricky_Gervais_performing_2007.jpg    126
616    https://upload.wikimedia.org/wikipedia/commons/1/19/MichaelMadsenMar10.jpg    128
617    https://upload.wikimedia.org/wikipedia/commons/2/23/Michael_Madsen.jpg    128
618    https://upload.wikimedia.org/wikipedia/commons/7/7a/Michael_Madsen_HS_Yearbook.jpg    128
619    https://upload.wikimedia.org/wikipedia/commons/b/b9/Michael_Madsen_by_Gage_Skidmore.jpg    128
622    https://upload.wikimedia.org/wikipedia/commons/d/d3/LauraLinney07TIFF.jpg    129
623    https://upload.wikimedia.org/wikipedia/commons/0/06/Laura_Linney_at_closing_night_of_Chicago_Film_Festival_2007.jpg    129
624    https://upload.wikimedia.org/wikipedia/commons/2/20/Laura_Linney_at_the_Lincoln_Memorial%2C_January_2009.jpg    129
625    https://upload.wikimedia.org/wikipedia/en/7/72/Jim_Varney.jpg    130
629    https://upload.wikimedia.org/wikipedia/en/0/01/A_coloured_voting_box.svg    131
630    https://upload.wikimedia.org/wikipedia/commons/4/49/Alec_Baldwin%2C_Hilaria_Thomas.jpg    131
631    https://upload.wikimedia.org/wikipedia/commons/b/bd/Alec_Baldwin_Cannes_2012.jpg    131
632    https://upload.wikimedia.org/wikipedia/commons/8/83/Alec_Baldwin_at_the_2010_SAG_Awards.jpg    131
635    https://upload.wikimedia.org/wikipedia/commons/f/fe/Crystal_Clear_app_browser.png    131
641    https://upload.wikimedia.org/wikipedia/commons/8/80/Crispin_Freeman.jpg    132
644    https://upload.wikimedia.org/wikipedia/commons/c/c5/Robert_Powell.jpg    134
646    https://upload.wikimedia.org/wikipedia/commons/0/01/Jenny_Slate_Obvious_Child_Premiere_2014_%28cropped%29.jpg    137
647    https://upload.wikimedia.org/wikipedia/commons/f/f4/Jenny_Slate_and_Gabe_Liedman_in_2007.jpg    137
650    https://upload.wikimedia.org/wikipedia/commons/b/bb/Cynthia_Nixon_John_Hurt_Swoosie_Kurtz_2009_Tribeca.jpg    139
651    https://upload.wikimedia.org/wikipedia/commons/8/82/John_Hurt_at_the_2009_Tribeca_Film_Festival.jpg    139
652    https://upload.wikimedia.org/wikipedia/commons/1/1a/John_Hurt_by_Walterlan_Papetti.jpg    139
654    https://upload.wikimedia.org/wikipedia/commons/3/3e/Vivica_A._Fox_2015.jpg    140
655    https://upload.wikimedia.org/wikipedia/commons/5/56/Vivica_A._Fox_at_The_Heart_Truth_2009.jpg    140
656    https://upload.wikimedia.org/wikipedia/commons/f/f3/Si%C3%A2n_Phillips_in_%22Crossing_Borders%22.jpg    141
658    https://upload.wikimedia.org/wikipedia/commons/9/92/Michael_Berryman_2007.png    142
660    https://upload.wikimedia.org/wikipedia/commons/a/a8/Dave_Foley_2012.jpg    143
663    https://upload.wikimedia.org/wikipedia/commons/2/20/Jordan_Gavaris_May_2014_%28cropped%29.jpg    144
665    https://upload.wikimedia.org/wikipedia/commons/e/ec/ConnieNielsen09TIFF.jpg    145
666    https://upload.wikimedia.org/wikipedia/commons/4/41/Danny_Aiello.jpg    146
667    https://upload.wikimedia.org/wikipedia/commons/7/71/Danny_Aiello_%26_Teddy_Atlas.jpg    146
668    https://upload.wikimedia.org/wikipedia/commons/1/19/Danny_Aiello_-_Estelle_Parsons_-_1977.jpg    146
670    https://upload.wikimedia.org/wikipedia/commons/3/37/Corey_Feldman_%281989%29.jpg    147
671    https://upload.wikimedia.org/wikipedia/commons/3/38/Corey_Feldman_2010.jpg    147
673    https://upload.wikimedia.org/wikipedia/commons/1/10/Chaplin_Karno_advert.jpg    148
674    https://upload.wikimedia.org/wikipedia/commons/7/75/Chaplin_Kid_Auto_Races.jpg    148
675    https://upload.wikimedia.org/wikipedia/commons/9/95/Chaplin_Making_a_Living_2.jpg    148
676    https://upload.wikimedia.org/wikipedia/commons/9/9b/Chaplin_Studios_postcard.jpg    148
677    https://upload.wikimedia.org/wikipedia/commons/1/11/Chaplin_The_Kid_2_crop.jpg    148
678    https://upload.wikimedia.org/wikipedia/commons/b/b2/Chaplin_and_Purviance_in_Work.jpg    148
679    https://upload.wikimedia.org/wikipedia/commons/f/fb/Chaplin_at_Hanwell.jpg    148
680    https://upload.wikimedia.org/wikipedia/commons/5/55/Chaplin_family_1961.jpg    148
681    https://upload.wikimedia.org/wikipedia/commons/7/72/Chaplin_in_Sherlock_Holmes.jpg    148
683    https://upload.wikimedia.org/wikipedia/commons/9/90/CreditLorreMaltFalc1941Trailer.jpg    150
684    https://upload.wikimedia.org/wikipedia/commons/6/62/GutmanCairoMaltFalc1941Trailer.jpg    150
687    https://upload.wikimedia.org/wikipedia/commons/f/f0/PeterLorre.jpg    150
688    https://upload.wikimedia.org/wikipedia/commons/5/5d/Peter_Lorre_Grave.jpg    150
689    https://upload.wikimedia.org/wikipedia/commons/b/bc/Peter_Lorre_in_Quicksand.jpg    150
691    https://upload.wikimedia.org/wikipedia/commons/2/26/Flickr_-_Siebbi_-_A_rose_for_Dame_Judi_Dench_%28cropped%29.jpg    151
692    https://upload.wikimedia.org/wikipedia/commons/a/ae/Judi_Dench_at_the_BAFTAs_2007.jpg    151
693    https://upload.wikimedia.org/wikipedia/commons/c/c2/Judy_and_Ben_%288749969035%29_%282%29.jpg    151
694    https://upload.wikimedia.org/wikipedia/commons/5/54/Stevan_Kragujevic%2C_Laurence_Olivier%2C_Judi_Dench%2C_John_Neville_and_Joseph_O%27Conor_in_Belgrade.JPG    151
695    https://upload.wikimedia.org/wikipedia/commons/9/99/WPanthroponymy.svg    152
697    https://upload.wikimedia.org/wikipedia/commons/a/a7/Bert_Lahr_Circa_1940s.jpg    155
698    https://upload.wikimedia.org/wikipedia/commons/8/87/Bert_Lahr_signature.svg    155
699    https://upload.wikimedia.org/wikipedia/commons/d/d1/Bert_Lahr_signed_7_8_1916.jpg    155
700    https://upload.wikimedia.org/wikipedia/commons/0/06/Burlesque_Burt_Lahr_1946.jpg    155
702    https://upload.wikimedia.org/wikipedia/commons/2/29/DuBarry_Was_a_Lady_Bert_Lahr_1939.jpg    155
704    https://upload.wikimedia.org/wikipedia/commons/6/6f/The_Wizard_of_Oz_Bert_Lahr_1939.jpg    155
705    https://upload.wikimedia.org/wikipedia/commons/e/e1/KellyMacdonald07TIFF.jpg    156
706    https://upload.wikimedia.org/wikipedia/commons/8/80/KellyMacdonaldOct07_2.jpg    156
708    https://upload.wikimedia.org/wikipedia/commons/0/00/Barbara_O%27Neil_in_All_This_and_Heaven_Too_trailer.JPG    158
717    https://upload.wikimedia.org/wikipedia/commons/4/4c/JulianneMoore08TIFF.jpg    160
718    https://upload.wikimedia.org/wikipedia/commons/5/52/Julianne_Moore_%2815011443428%29.jpg    160
719    https://upload.wikimedia.org/wikipedia/commons/d/d7/Julianne_Moore_Cannes_2014_2.jpg    160
720    https://upload.wikimedia.org/wikipedia/commons/7/72/Julianne_Moore_and_Colin_Firth_Venice_2009.jpg    160
721    https://upload.wikimedia.org/wikipedia/commons/5/5a/Julianne_Moore_at_Jerrold_Nadler_gala.jpg    160
722    https://upload.wikimedia.org/wikipedia/commons/8/82/Julianne_Moore_by_David_Shankbone.jpg    160
723    https://upload.wikimedia.org/wikipedia/commons/0/07/Moore_and_Bridges_Lebowskifest.jpg    160
725    https://upload.wikimedia.org/wikipedia/commons/a/a3/Faye_Dunaway%28CannesPhotoCall%29.jpg    161
726    https://upload.wikimedia.org/wikipedia/commons/5/58/Faye_Dunaway_-_1971_-_PBS.JPG    161
727    https://upload.wikimedia.org/wikipedia/commons/d/d2/Faye_Dunaway_1988.jpg    161
728    https://upload.wikimedia.org/wikipedia/commons/3/3f/Faye_Dunaway_1994.jpg    161
729    https://upload.wikimedia.org/wikipedia/commons/5/59/Faye_Dunaway_Cannes_2011.jpg    161
730    https://upload.wikimedia.org/wikipedia/commons/3/3b/Faye_Dunaway_Michael_Richards.jpg    161
731    https://upload.wikimedia.org/wikipedia/commons/6/6c/Faye_Dunaway_and_Marcello_Mastroianni_in_Amanti.png    161
732    https://upload.wikimedia.org/wikipedia/commons/e/ea/Faye_Dunaway_and_Warren_Beatty_in_Bonnie_and_Clyde.JPG    161
733    https://upload.wikimedia.org/wikipedia/commons/d/da/Faye_Dunaway_in_Chinatown.jpg    161
736    https://upload.wikimedia.org/wikipedia/commons/a/a5/Daveigh_Chase_LF_adjusted.jpg    163
738    https://upload.wikimedia.org/wikipedia/commons/c/ca/BenHarperLauraDernDec09.jpg    165
740    https://upload.wikimedia.org/wikipedia/commons/a/ae/LauraDernDec09.jpg    165
741    https://upload.wikimedia.org/wikipedia/commons/6/6f/Laura_Dern_Cannes_2013.jpg    165
743    https://upload.wikimedia.org/wikipedia/commons/a/ad/Melissa_Benoist_LA_Film_Festival_%28cropped%29.jpg    167
744    https://upload.wikimedia.org/wikipedia/commons/2/2e/7.25.09KevinConroy.jpg    168
748    https://upload.wikimedia.org/wikipedia/commons/8/81/Molly_Parker_%40_Toronto_International_Film_Festival_2010.jpg    169
749    https://upload.wikimedia.org/wikipedia/commons/b/bd/Adolphe_Menjou_in_A_Star_is_Born.jpg    170
750    https://upload.wikimedia.org/wikipedia/en/f/f9/Adolphemenjou.jpg    170
759    https://upload.wikimedia.org/wikipedia/en/4/45/DeathSeventhSeal.png    172
763    https://upload.wikimedia.org/wikipedia/commons/f/fd/Trevor_Howard_Allan_Warren.jpg    174
764    https://upload.wikimedia.org/wikipedia/commons/c/c4/Roger_Allam_La_Cage_120909_DSCF1622.JPG    175
765    https://upload.wikimedia.org/wikipedia/commons/8/8d/AlexisBledelSept11TIFF.jpg    176
766    https://upload.wikimedia.org/wikipedia/commons/a/ab/Alexis_Bledel_2008.jpg    176
771    https://upload.wikimedia.org/wikipedia/commons/e/ec/RobMcElhenneyAug2011.jpg    177
772    https://upload.wikimedia.org/wikipedia/commons/e/e7/Rob_McElhenney_by_Gage_Skidmore_3.jpg    177
773    https://upload.wikimedia.org/wikipedia/commons/f/f0/2003-10-06_ralph_fiennes_in_Bishkek.jpg    178
775    https://upload.wikimedia.org/wikipedia/commons/4/43/Ralph_Fiennes_2013.jpg    178
776    https://upload.wikimedia.org/wikipedia/commons/4/42/Ralph_Fiennes_MingFilmFest_2011.jpg    178
777    https://upload.wikimedia.org/wikipedia/en/4/42/Chopper-Bana.jpg    179
780    https://upload.wikimedia.org/wikipedia/commons/1/19/EricBanaatCamp_Arifjan.jpg    179
781    https://upload.wikimedia.org/wikipedia/commons/4/4d/Eric_Bana_2014_WonderCon_%28cropped%29.jpg    179
782    https://upload.wikimedia.org/wikipedia/commons/8/82/Eric_Bana_and_fan_at_the_2009_Tribeca_Film_Festival_%28cropped%29.jpg    179
783    https://upload.wikimedia.org/wikipedia/commons/f/fe/Eric_Bana_at_the_2009_Tribeca_Film_Festival.jpg    179
784    https://upload.wikimedia.org/wikipedia/commons/a/a2/Eric_Bana_by_David_Shankbone.jpg    179
785    https://upload.wikimedia.org/wikipedia/commons/9/9c/StarTrekSydneyOperaHousePremiereApr09.jpg    179
786    https://upload.wikimedia.org/wikipedia/commons/3/3a/Billy_West_by_Gage_Skidmore_3.jpg    180
787    https://upload.wikimedia.org/wikipedia/commons/b/be/Billywestcropped.jpg    180
791    https://upload.wikimedia.org/wikipedia/commons/d/d4/Mara_Brock_Akil_and_Girlfriends_cast.jpg    182
794    https://upload.wikimedia.org/wikipedia/commons/7/78/Irene_Papas_-_Trojan_Women.jpg    184
795    https://upload.wikimedia.org/wikipedia/commons/c/ca/Irene_Papas_1956.jpg    184
796    https://upload.wikimedia.org/wikipedia/en/1/16/Irene_Papas_Sings_Mikis_Theodorakis_AlbumCover.jpg    184
799    https://upload.wikimedia.org/wikipedia/commons/8/8e/Phil.lamarr.2014.jpg    185
801    https://upload.wikimedia.org/wikipedia/commons/4/42/Janet_Varney_Oct_2014_%28cropped%29.jpg    186
802    https://upload.wikimedia.org/wikipedia/commons/2/2b/Janet_Varney_by_Gage_Skidmore.jpg    186
806    https://upload.wikimedia.org/wikipedia/commons/8/87/Fran%C3%A7ois_Cluzet_C%C3%A9sars_2014.jpg    188
809    https://upload.wikimedia.org/wikipedia/commons/a/a4/SigourneyWeaver07TIFF.jpg    189
810    https://upload.wikimedia.org/wikipedia/commons/7/7f/SigourneyWeaverDec09.jpg    189
811    https://upload.wikimedia.org/wikipedia/commons/d/db/Sigourney_Weaver2.jpg    189
812    https://upload.wikimedia.org/wikipedia/commons/d/dd/Sigourney_Weaver_by_David_Shankbone.jpg    189
813    https://upload.wikimedia.org/wikipedia/commons/9/90/Sigourney_Weaver_with_her_father_Pat_Weaver_1989.jpg    189
816    https://upload.wikimedia.org/wikipedia/commons/c/cd/ButterToronto2011.png    190
818    https://upload.wikimedia.org/wikipedia/commons/d/d5/Goldenglobes2013.png    190
819    https://upload.wikimedia.org/wikipedia/commons/1/14/Jennifer_Garner_2013.jpg    190
820    https://upload.wikimedia.org/wikipedia/commons/d/d4/Jennifer_Garner_cropped.jpg    190
821    https://upload.wikimedia.org/wikipedia/commons/8/8b/SuperBowlGarner.jpg    190
826    https://upload.wikimedia.org/wikipedia/commons/a/ad/Ruth_Roman_in_Strangers_on_a_Train_trailer.jpg    191
828    https://upload.wikimedia.org/wikipedia/commons/4/4f/Ty_Burrell_2_2014.jpg    192
829    https://upload.wikimedia.org/wikipedia/commons/3/39/Jack_Huston_-_Berlinale_-_2013_%28cropped%29.jpg    193
830    https://upload.wikimedia.org/wikipedia/commons/1/1a/Jack_Huston_by_Gage_Skidmore.jpg    193
832    https://upload.wikimedia.org/wikipedia/commons/c/c2/Olivia_Wilde%2C_2010_%28cropped%29.jpg    194
833    https://upload.wikimedia.org/wikipedia/commons/8/8c/Olivia_Wilde_at_2011_Tribeca_Film_Festival.jpg    194
834    https://upload.wikimedia.org/wikipedia/commons/4/4a/Olivia_Wilde_at_CES%2C_2011_1_%28cropped%29.jpg    194
835    https://upload.wikimedia.org/wikipedia/commons/6/6c/Olivia_Wilde_in_2010_Independent_Spirit_Awards_%28cropped%29.jpg    194
837    https://upload.wikimedia.org/wikipedia/commons/1/19/Colleen_O%27Shaughnessey.jpg    195
839    https://upload.wikimedia.org/wikipedia/commons/a/a7/JasonRitter.jpg    196
840    https://upload.wikimedia.org/wikipedia/commons/6/69/Jason_Ritter_TIFF_2015.jpg    196
843    https://upload.wikimedia.org/wikipedia/commons/3/3d/Steve_McQueen.jpg    197
844    https://upload.wikimedia.org/wikipedia/commons/1/1d/Steve_McQueen.png    197
845    https://upload.wikimedia.org/wikipedia/commons/c/c6/Steve_McQueen_-_The_Great_St._Louis_Bank_Robbery_%281959%29_-_2.jpg    197
846    https://upload.wikimedia.org/wikipedia/commons/a/a9/Steve_McQueen_1959.jpg    197
847    https://upload.wikimedia.org/wikipedia/commons/7/7c/Steve_McQueen_1960.JPG    197
848    https://upload.wikimedia.org/wikipedia/commons/6/68/Steve_McQueen_Neile_Adams_1960.JPG    197
849    https://upload.wikimedia.org/wikipedia/commons/2/2f/Steve_McQueen_Virginia_Gregg_Wanted_Dead_or_Alive_1959.JPG    197
850    https://upload.wikimedia.org/wikipedia/commons/3/3e/Isa_Danieli_lumacone.png    198
857    https://upload.wikimedia.org/wikipedia/commons/c/ce/Woody_Harrelson_%281988%29.jpg    199
858    https://upload.wikimedia.org/wikipedia/commons/6/60/Woody_Harrelson_2009.jpg    199
859    https://upload.wikimedia.org/wikipedia/commons/9/95/Woody_Harrelson_cropped_by_David_Shankbone.jpg    199
860    https://upload.wikimedia.org/wikipedia/commons/b/b5/Woodyandme.jpg    199
861    https://upload.wikimedia.org/wikipedia/en/0/09/Jeremy_Brett_Headshot.jpg    201
862    https://upload.wikimedia.org/wikipedia/en/9/91/Jeremy_Brett_as_Hamlet.jpg    201
863    https://upload.wikimedia.org/wikipedia/en/4/4f/Jeremy_Brett_as_Sherlock_Holmes.jpg    201
864    https://upload.wikimedia.org/wikipedia/en/4/43/Jeremy_Brett_in_Eton_Uniform.jpg    201
868    https://upload.wikimedia.org/wikipedia/commons/6/65/Hedwig_Gorski_%26_actor_Peter_Storemare_in_Prague_2003.JPG    206
869    https://upload.wikimedia.org/wikipedia/commons/f/f1/Peter_Stormare.jpg    206
871    https://upload.wikimedia.org/wikipedia/commons/c/c8/AmandaTapping_%282%29.jpg    207
873    https://upload.wikimedia.org/wikipedia/commons/6/64/Brie_Larson_%28cropped%29.jpg    209
874    https://upload.wikimedia.org/wikipedia/commons/b/b3/Brie_Larson_cropped.jpg    209
880    https://upload.wikimedia.org/wikipedia/commons/0/03/Martin_firrell_metascifi_nathan_fillion.jpg    210
881    https://upload.wikimedia.org/wikipedia/commons/4/49/Nathan_Fillion_-_Guardians_of_the_Galaxy_premiere_-_July_2014_%28cropped%29.jpg    210
882    https://upload.wikimedia.org/wikipedia/commons/4/4f/Nathan_Fillion_at_Paleyfest_2012.jpg    210
883    https://upload.wikimedia.org/wikipedia/commons/7/7e/Nathan_Fillion_by_Gage_Skidmore.jpg    210
884    https://upload.wikimedia.org/wikipedia/commons/5/51/Nathan_Fillion_by_Gage_Skidmore_2.jpg    210
886    https://upload.wikimedia.org/wikipedia/commons/4/46/Chris_Cooper_and_Marianne_Leone_Cooper_by_David_Shankbone.jpg    211
887    https://upload.wikimedia.org/wikipedia/commons/5/53/Chris_Cooper_at_the_2009_Tribeca_Film_Festival.jpg    211
890    https://upload.wikimedia.org/wikipedia/commons/c/c8/NABJ_2013_-_Orlando_%289451924600%29.jpg    213
893    https://upload.wikimedia.org/wikipedia/commons/d/dc/Portia_Doubleday.jpg    216
894    https://upload.wikimedia.org/wikipedia/commons/0/02/Garlin.jpg    217
897    https://upload.wikimedia.org/wikipedia/commons/f/fa/KaitlinOlsonAug2011.jpg    218
898    https://upload.wikimedia.org/wikipedia/commons/2/24/Kaitlin_Olson_by_Gage_Skidmore_3.jpg    218
900    https://upload.wikimedia.org/wikipedia/commons/8/80/Charlotte_Gainsbourg_and_Heath_Ledger_%28Venice_Film_Festival_2007%29.jpg    220
901    https://upload.wikimedia.org/wikipedia/commons/4/4f/Heath_Ledger.jpg    220
902    https://upload.wikimedia.org/wikipedia/commons/6/63/Heath_Ledger_%28Berlin_Film_Festival_2006%29_revised.jpg    220
903    https://upload.wikimedia.org/wikipedia/commons/8/81/LedgerMemorial.jpg    220
906    https://upload.wikimedia.org/wikipedia/commons/7/72/Vincent_Utah.jpg    221
908    https://upload.wikimedia.org/wikipedia/commons/e/e0/Loretta_Swit.jpg    222
909    https://upload.wikimedia.org/wikipedia/commons/4/47/Loretta_Swit_-_signature.svg    222
910    https://upload.wikimedia.org/wikipedia/commons/1/1e/Loretta_Swit_MASH_1972.JPG    222
913    https://upload.wikimedia.org/wikipedia/commons/6/6f/Michael_Raymond-James_2013.jpg    223
916    https://upload.wikimedia.org/wikipedia/commons/c/c1/Aleiodes_colberti.jpg    225
917    https://upload.wikimedia.org/wikipedia/commons/d/d3/C.O.L.B.E.R.T._decal_placement.jpg    225
919    https://upload.wikimedia.org/wikipedia/commons/6/69/Flag_of_South_Carolina.svg    225
921    https://upload.wikimedia.org/wikipedia/commons/3/31/Michelle_Obama_on_The_Colbert_Report.jpg    225
922    https://upload.wikimedia.org/wikipedia/commons/a/a0/Operation_Iraqi_Stephen_DVIDS178745.jpg    225
928    https://upload.wikimedia.org/wikipedia/commons/a/a8/Flag_of_North_West_England.svg    226
929    https://upload.wikimedia.org/wikipedia/commons/d/dd/Ian_McKellen.jpg    226
930    https://upload.wikimedia.org/wikipedia/commons/c/c2/Ian_McKellen_at_Europride_2003_Parade.jpg    226
931    https://upload.wikimedia.org/wikipedia/commons/8/88/McKellen_2010.jpg    226
935    https://upload.wikimedia.org/wikipedia/commons/1/15/SDCC13_-_Ian_McKellen.jpg    226
937    https://upload.wikimedia.org/wikipedia/commons/a/a9/LarryDavidDec09.jpg    227
938    https://upload.wikimedia.org/wikipedia/commons/7/70/Larry_David_at_the_2009_Tribeca_Film_Festival_2.jpg    227
944    https://upload.wikimedia.org/wikipedia/commons/8/87/All_My_Sons_%281948%29_1.jpg    229
945    https://upload.wikimedia.org/wikipedia/commons/5/5c/Caesar2.JPG    229
947    https://upload.wikimedia.org/wikipedia/commons/3/3d/Double_indemnity_screenshot_7.jpg    229
948    https://upload.wikimedia.org/wikipedia/commons/c/c1/Edward_G._Robinson_-_still.jpg    229
949    https://upload.wikimedia.org/wikipedia/commons/1/11/Edward_G._Robinson_Edward_G._Robinson%2C_Jr._Zane_Grey_Theater_1962.JPG    229
950    https://upload.wikimedia.org/wikipedia/commons/d/d5/Edward_g_robinson.jpg    229
951    https://upload.wikimedia.org/wikipedia/commons/2/23/Lynn_Bari%2C_Edward_G._Robinson-Tampico5.JPG    229
954    https://upload.wikimedia.org/wikipedia/commons/9/98/AlanRickmanDec2009.jpg    230
955    https://upload.wikimedia.org/wikipedia/commons/7/74/Alan_Rickman_BAM_2011-01-11_n1.jpg    230
956    https://upload.wikimedia.org/wikipedia/commons/5/56/Alan_Rickman_by_David_Shankbone.jpg    230
957    https://upload.wikimedia.org/wikipedia/commons/5/50/Alan_Rickman_cropped_and_retouched.jpg    230
959    https://upload.wikimedia.org/wikipedia/commons/3/36/Kate_Winslet%2C_Alan_Rickman_2014_TIFF.png    230
966    https://upload.wikimedia.org/wikipedia/commons/b/b5/Stephen_Rea.jpg    232
968    https://upload.wikimedia.org/wikipedia/commons/7/71/Michael_Cudlitz_by_Gage_Skidmore.jpg    234
972    https://upload.wikimedia.org/wikipedia/commons/c/c4/Rene-Auberjonois-by-kyle-cassidy-DSC_8245.jpg    236
973    https://upload.wikimedia.org/wikipedia/commons/5/57/Rene_Auberjonois_by_Luigi_Rosa%2C_11.jpg    236
974    https://upload.wikimedia.org/wikipedia/commons/1/17/Shimerman%2C_Visitor_and_Auberjonois_by_Beth_Madison%2C_2.jpg    236
977    https://upload.wikimedia.org/wikipedia/commons/4/48/Rhea_Seehorn_at_the_LA_Art_Show_2016.jpg    237
982    https://upload.wikimedia.org/wikipedia/commons/5/5d/EmilyMortimer09TIFF.jpg    239
983    https://upload.wikimedia.org/wikipedia/commons/e/e3/Emily_Mortimer_2011_Shankbone.JPG    239
984    https://upload.wikimedia.org/wikipedia/commons/a/ac/Emily_Mortimer_at_2007_TIFF_cropped.jpg    239
987    https://upload.wikimedia.org/wikipedia/commons/c/cc/Kevin_Dillon.jpg    240
990    https://upload.wikimedia.org/wikipedia/commons/c/cd/Talia_Shire_1976_edit.JPG    241
3206    https://upload.wikimedia.org/wikipedia/en/e/e9/Jor-EL.jpg    901
995    https://upload.wikimedia.org/wikipedia/commons/9/90/Mary-Astor-Children-1944.jpg    243
996    https://upload.wikimedia.org/wikipedia/commons/2/2b/Mary_Astor-1930s.JPG    243
997    https://upload.wikimedia.org/wikipedia/commons/9/93/Mary_Astor_Argentinean_Magazine_AD.jpg    243
998    https://upload.wikimedia.org/wikipedia/commons/7/7a/Mary_Astor_Grave.JPG    243
999    https://upload.wikimedia.org/wikipedia/commons/0/05/Mary_Astor_Stars_of_the_Photoplay.jpg    243
1000    https://upload.wikimedia.org/wikipedia/commons/5/5b/Mary_Astor_in_Fiesta_trailer.jpg    243
1001    https://upload.wikimedia.org/wikipedia/commons/1/11/Mary_Astor_in_Meet_Me_in_St_Louis_trailer.jpg    243
1003    https://upload.wikimedia.org/wikipedia/en/1/13/MarcusBrody.jpg    244
1005    https://upload.wikimedia.org/wikipedia/commons/5/52/David_Suchet.jpg    245
1008    https://upload.wikimedia.org/wikipedia/commons/4/46/Efrem_Zimbalist_Jr.JPG    247
1009    https://upload.wikimedia.org/wikipedia/commons/3/3b/Efrem_Zimbalist_Jr._1971.JPG    247
1010    https://upload.wikimedia.org/wikipedia/commons/e/ec/Efrem_Zimbalist_Jr._1972.JPG    247
1016    https://upload.wikimedia.org/wikipedia/commons/d/d0/NickNolte%28cannesPhotocall%29.jpg    248
1017    https://upload.wikimedia.org/wikipedia/commons/0/01/Nick_Nolte_Tom_Jordache_Rich_Man_Poor_Man.JPG    248
1019    https://upload.wikimedia.org/wikipedia/commons/0/03/JamesGandolfiniSept11TIFF.jpg    249
1020    https://upload.wikimedia.org/wikipedia/commons/c/c7/Rose_McGowan_James_Gandolfini_100331-N-0696M-280.jpg    249
1021    https://upload.wikimedia.org/wikipedia/commons/a/a2/SopranosKuwaitUSO.jpg    249
1023    https://upload.wikimedia.org/wikipedia/commons/9/98/Frances_Conroy_1_crop.JPG    250
1024    https://upload.wikimedia.org/wikipedia/commons/e/e9/Frances_Conroy_at_PaleyFest_2014_-_13491478183.jpg    250
1026    https://upload.wikimedia.org/wikipedia/commons/6/6e/ActorsPerformForTroops1.jpg    251
1027    https://upload.wikimedia.org/wikipedia/commons/3/3d/Barris_Marilyn_Monroe.jpg    251
1030    https://upload.wikimedia.org/wikipedia/commons/f/f8/Gentlemen_Prefer_Blondes_Movie_Trailer_Screenshot_%2816%29.jpg    251
1031    https://upload.wikimedia.org/wikipedia/commons/b/b6/Gentlemen_Prefer_Blondes_Movie_Trailer_Screenshot_%2834%29.jpg    251
1032    https://upload.wikimedia.org/wikipedia/commons/f/f8/Guardandovi_2010_%28John_Lennon%2C_Marilyn_Monroe%2C_Friedrich_Chopin%29_Acrilico_e_fusaggine_su_due_tele_655x395.jpg    251
1033    https://upload.wikimedia.org/wikipedia/commons/d/d4/James_Gill%27s_%22Marylin_Tryptich%22.jpg    251
1034    https://upload.wikimedia.org/wikipedia/commons/3/32/MarilynMonroe_-_YankArmyWeekly.jpg    251
1035    https://upload.wikimedia.org/wikipedia/commons/6/6a/Marilyn_Monroe%2C_Betty_Grable_and_Lauren_Bacall_in_How_to_Marry_a_Millionaire_trailer.jpg    251
1037    https://upload.wikimedia.org/wikipedia/commons/1/1f/Green_Lantern_Comic-Con_%28cropped%29.jpg    252
1039    https://upload.wikimedia.org/wikipedia/commons/4/47/RyanReynoldsApr09.jpg    252
1040    https://upload.wikimedia.org/wikipedia/commons/9/96/Ryan_Reynolds_TIFF_2014.jpg    252
1041    https://upload.wikimedia.org/wikipedia/commons/9/98/Ryan_Reynolds_by_Gage_Skidmore.jpg    252
1042    https://upload.wikimedia.org/wikipedia/commons/9/90/Ryan_reynolds.jpg    252
1045    https://upload.wikimedia.org/wikipedia/commons/8/87/Pedro_Pascal_SDCC_2014.jpg    254
1049    https://upload.wikimedia.org/wikipedia/commons/4/4a/Chris_Barrie_2004.jpg    256
1053    https://upload.wikimedia.org/wikipedia/commons/d/da/Toby_Kebbell_by_Gage_Skidmore.jpg    258
1054    https://upload.wikimedia.org/wikipedia/commons/f/f2/Toby_Kebbell_crop.jpg    258
1056    https://upload.wikimedia.org/wikipedia/commons/d/d7/James_Caan_%281976%29.jpg    260
1057    https://upload.wikimedia.org/wikipedia/en/1/1f/James_Caan_-_Submarine_1969.jpg    260
1058    https://upload.wikimedia.org/wikipedia/commons/a/a0/James_Caan_1976b.jpg    260
1060    https://upload.wikimedia.org/wikipedia/en/5/53/Baby_Doll_-1.jpg    262
1062    https://upload.wikimedia.org/wikipedia/commons/a/af/EliWallach.png    262
1063    https://upload.wikimedia.org/wikipedia/commons/a/a8/Eli_Wallach_-_publicity.jpg    262
1064    https://upload.wikimedia.org/wikipedia/commons/a/a8/Eli_Wallach_2010_TCM_Classic_Film_Festival_%28cropped%29.jpg    262
1065    https://upload.wikimedia.org/wikipedia/en/7/7a/Eli_Wallach_and_Maureen_Stapleton_-_1951.jpg    262
1066    https://upload.wikimedia.org/wikipedia/commons/e/e2/The_Super_cast_1972.JPG    263
1067    https://upload.wikimedia.org/wikipedia/commons/5/5d/Choi_Min-sik.jpg    264
1068    https://upload.wikimedia.org/wikipedia/commons/4/4e/Choi_Min-sik_at_New_York_Asian_Film_Festival_-_6-30-12_-_27.jpg    264
1071    https://upload.wikimedia.org/wikipedia/commons/f/fb/Ben_Burtt_Celebration_Europe_II.jpg    265
1076    https://upload.wikimedia.org/wikipedia/en/8/8c/Cool_Hand_Luke_Martin.jpg    267
1078    https://upload.wikimedia.org/wikipedia/commons/a/ac/Flag_of_Indiana.svg    267
1086    https://upload.wikimedia.org/wikipedia/commons/3/3e/Lianella_Carell_e_Frank_Latimore.jpg    270
1089    https://upload.wikimedia.org/wikipedia/commons/9/94/Bruce_Campbell_.jpg    273
1090    https://upload.wikimedia.org/wikipedia/commons/7/79/Bruce_Campbell_2014_Phoenix_Comicon_%28cropped%29.jpg    273
1091    https://upload.wikimedia.org/wikipedia/commons/f/f7/Bruce_Campbell_by_Gage_Skidmore.jpg    273
1093    https://upload.wikimedia.org/wikipedia/en/8/88/If_Chins_Could_Kill_Cover.jpg    273
1095    https://upload.wikimedia.org/wikipedia/commons/8/8a/Soledad_Villamil_en_la_Casa_Rosada_2010-03-18.jpg    274
1096    https://upload.wikimedia.org/wikipedia/commons/c/ca/David_Zayas.jpg    276
1097    https://upload.wikimedia.org/wikipedia/commons/0/0e/Amanda_Winn_Lee.jpg    277
1100    https://upload.wikimedia.org/wikipedia/en/3/36/Walter_Huston_-_1950.jpg    278
1101    https://upload.wikimedia.org/wikipedia/en/e/e3/John_Fiedler.png    279
1103    https://upload.wikimedia.org/wikipedia/commons/b/b4/Candice_Bergen.jpg    281
1104    https://upload.wikimedia.org/wikipedia/commons/7/7b/Candice_Bergen_1993-2.jpg    281
1105    https://upload.wikimedia.org/wikipedia/commons/a/a4/Candice_Bergen_at_1988_Academy_Awards.JPG    281
1106    https://upload.wikimedia.org/wikipedia/commons/1/12/Candice_Bergen_at_the_65th_Annual_Peabody_Awards.jpg    281
1111    https://upload.wikimedia.org/wikipedia/commons/1/1a/Jesse_Spencer_2009.jpg    285
1112    https://upload.wikimedia.org/wikipedia/commons/0/01/Jesse_Spencer_cropped.jpg    285
1114    https://upload.wikimedia.org/wikipedia/commons/0/0f/Fred_MacMurray_-_publicity.JPG    286
1115    https://upload.wikimedia.org/wikipedia/commons/5/58/Fred_MacMurray_Star_HWF.JPG    286
1116    https://upload.wikimedia.org/wikipedia/commons/6/61/Fred_MacMurray_and_Carole_Lombard_in_Swing_High_Swing_Low.jpg    286
1117    https://upload.wikimedia.org/wikipedia/commons/c/cb/Fred_MacMurray_and_June_Haver%27s_grave.JPG    286
1121    https://upload.wikimedia.org/wikipedia/commons/a/a1/Sean_Young_LF.JPG    287
1122    https://upload.wikimedia.org/wikipedia/commons/6/64/Sean_Young_on_the_red_carpet_at_the_60th_Annual_Academy_Awards.jpg    287
1124    https://upload.wikimedia.org/wikipedia/commons/0/06/Hoult.jpg    288
1125    https://upload.wikimedia.org/wikipedia/commons/4/4b/Nicholas_Hoult_2009.jpg    288
1126    https://upload.wikimedia.org/wikipedia/commons/5/59/Nicholas_Hoult_by_Gage_Skidmore.jpg    288
1127    https://upload.wikimedia.org/wikipedia/commons/c/ca/Edie_Falco_2010.jpg    289
1128    https://upload.wikimedia.org/wikipedia/commons/c/c0/Edie_Falco_by_David_Shankbone.jpg    289
1131    https://upload.wikimedia.org/wikipedia/commons/a/a4/Jared_Padalecki_by_Gage_Skidmore_3.jpg    291
1132    https://upload.wikimedia.org/wikipedia/commons/9/9f/Jensen_Ackles_Jared_Padalecki_Flickr_IMG_0366.jpg    291
1134    https://upload.wikimedia.org/wikipedia/commons/b/b6/10.9.96MarkHamillByLuigiNovi5.2.jpg    292
1137    https://upload.wikimedia.org/wikipedia/commons/9/9b/Mark_Hamill_%281978%29.jpg    292
1138    https://upload.wikimedia.org/wikipedia/commons/d/dd/Mark_Hamill_1980.jpg    292
1139    https://upload.wikimedia.org/wikipedia/commons/8/86/Mark_Hamill_by_Gage_Skidmore.jpg    292
1140    https://upload.wikimedia.org/wikipedia/commons/3/30/Mark_Hamill_signature.svg    292
1141    https://upload.wikimedia.org/wikipedia/commons/0/0a/NEW-GEN_Creators_and_Mark_Hamill.jpg    292
1145    https://upload.wikimedia.org/wikipedia/commons/c/c2/Katie_Holmes%2C_2009.jpg    295
1146    https://upload.wikimedia.org/wikipedia/commons/4/41/Katie_Holmes.jpg    295
1147    https://upload.wikimedia.org/wikipedia/commons/e/eb/Katie_Noelle_Holmes.jpg    295
1148    https://upload.wikimedia.org/wikipedia/commons/2/24/Tom_Cruise_%26_Katie_Holmes_WHCAD.jpg    295
1151    https://upload.wikimedia.org/wikipedia/en/4/48/Evelyn_Keyes_in_color.jpg    296
1152    https://upload.wikimedia.org/wikipedia/commons/9/97/Evelyn_keyes_in_99_river_street.jpg    296
1154    https://upload.wikimedia.org/wikipedia/commons/3/3a/Audrey_Fleurot_10_2013_2.jpg    297
1155    https://upload.wikimedia.org/wikipedia/commons/0/0e/Audrey_Fleurot_2014.jpg    297
1156    https://upload.wikimedia.org/wikipedia/commons/a/a3/Audrey_Fleurot_Cabourg_2013.jpg    297
1160    https://upload.wikimedia.org/wikipedia/en/9/95/Diana_Muldaur_Martin_Sheen_Hawaii_Five-o.jpg    298
1161    https://upload.wikimedia.org/wikipedia/commons/d/dd/Emilio_Estevez_and_Martin_Sheen.jpg    298
1162    https://upload.wikimedia.org/wikipedia/commons/2/2e/Martin_Sheen_1987.jpg    298
1163    https://upload.wikimedia.org/wikipedia/commons/8/85/Martin_Sheen_Cannes.jpg    298
1164    https://upload.wikimedia.org/wikipedia/commons/6/64/Martin_Sheen_signature.svg    298
1165    https://upload.wikimedia.org/wikipedia/commons/5/58/Martin_sheen.jpg    298
1166    https://upload.wikimedia.org/wikipedia/commons/2/25/Sheen%2C_Martin_%282008%29.jpg    298
1168    https://upload.wikimedia.org/wikipedia/commons/d/d9/Richard_Harris_1985.jpg    299
1169    https://upload.wikimedia.org/wikipedia/commons/4/49/Richard_Harris_Statue_Kilkee_2007.jpg    299
1171    https://upload.wikimedia.org/wikipedia/commons/1/15/Jodie_Whittaker_2014.jpg    300
1173    https://upload.wikimedia.org/wikipedia/commons/1/13/Dexter_Fletcher.jpg    301
1178    https://upload.wikimedia.org/wikipedia/commons/3/34/Jasika_Nicole_2012.jpg    306
1180    https://upload.wikimedia.org/wikipedia/en/4/4e/Acquitted_lobby_card.jpg    307
1182    https://upload.wikimedia.org/wikipedia/commons/9/98/Margaret_Livingston.jpg    307
1185    https://upload.wikimedia.org/wikipedia/commons/0/0c/Michael_Cera_-_001.jpg    308
1186    https://upload.wikimedia.org/wikipedia/commons/8/8e/Michael_Cera_2012_%28Cropped%29.jpg    308
1187    https://upload.wikimedia.org/wikipedia/commons/5/56/Michael_Cera_as_Captain_America_by_Gage_Skidmore.jpg    308
1190    https://upload.wikimedia.org/wikipedia/commons/5/5a/Julie_Delpy_02.jpg    309
1191    https://upload.wikimedia.org/wikipedia/commons/e/e2/Julie_Delpy_Cannes.jpg    309
1192    https://upload.wikimedia.org/wikipedia/commons/5/58/Julie_Delpy_at_SF_Apple_Store_II.jpg    309
1196    https://upload.wikimedia.org/wikipedia/commons/7/7f/James-Remar-SAG-Awards.jpg    312
1198    https://upload.wikimedia.org/wikipedia/commons/9/98/Mathieu_Amalric_Cannes_2013.jpg    313
1200    https://upload.wikimedia.org/wikipedia/commons/6/68/Bruno_Ganz_2011.jpg    314
1201    https://upload.wikimedia.org/wikipedia/commons/f/f6/Bruno_Ganz_DFF_Tokyo_2005.jpg    314
1205    https://upload.wikimedia.org/wikipedia/commons/f/f5/Jacob_Tremblay_%2822859198313%29_%28cropped%29.jpg    318
1206    https://upload.wikimedia.org/wikipedia/commons/a/ab/Tom_Skerritt_2014_%28cropped%29.jpg    321
1207    https://upload.wikimedia.org/wikipedia/commons/3/32/Legi%C3%A3o_Urbana_com_Wagner_Moura.jpg    324
1208    https://upload.wikimedia.org/wikipedia/commons/2/24/WagnerMoura.jpg    324
1209    https://upload.wikimedia.org/wikipedia/commons/d/d6/Anne_Le_Ny_juin_2014.jpg    325
1212    https://upload.wikimedia.org/wikipedia/commons/d/d8/Agnes_Moorehead_-_1955.jpg    327
1213    https://upload.wikimedia.org/wikipedia/commons/f/fd/Agnes_Moorehead_Bewitched_1969.JPG    327
1214    https://upload.wikimedia.org/wikipedia/commons/9/96/Agnes_Moorehead_Dick_York_Elizabeth_Montgomery_Bewitched_1964.JPG    327
1215    https://upload.wikimedia.org/wikipedia/commons/c/c3/Citizen_Kane-Agnes_Moorehead2.JPG    327
1218    https://upload.wikimedia.org/wikipedia/commons/6/6d/The-Magnificent-Ambersons-1.jpg    327
1221    https://upload.wikimedia.org/wikipedia/commons/1/1e/FredWillardApr08.jpg    328
1222    https://upload.wikimedia.org/wikipedia/commons/2/23/FredWillardApr2011.jpg    328
1223    https://upload.wikimedia.org/wikipedia/commons/3/3e/FredWillardJackBettsNov10.jpg    328
1224    https://upload.wikimedia.org/wikipedia/commons/d/df/Fred_Willard.jpg    328
1225    https://upload.wikimedia.org/wikipedia/commons/1/1a/Fred_Willard_at_Cats_for_Cats.jpg    328
1226    https://upload.wikimedia.org/wikipedia/commons/8/8c/Fred_Willard_signature.svg    328
1228    https://upload.wikimedia.org/wikipedia/commons/f/f5/RupertFriendJuly06.jpg    329
1229    https://upload.wikimedia.org/wikipedia/commons/7/76/Rupert_Friend_%28cropped%29.jpg    329
1230    https://upload.wikimedia.org/wikipedia/commons/5/55/Christoph_Waltz.jpg    330
1231    https://upload.wikimedia.org/wikipedia/commons/0/0e/Christoph_Waltz_-_Film_Premiere_%22Spectre%22_007_%2822547549736%29.jpg    330
1232    https://upload.wikimedia.org/wikipedia/commons/7/74/Christoph_Waltz_and_Judith_Holste_%40_2010_Academy_Awards.jpg    330
1236    https://upload.wikimedia.org/wikipedia/commons/7/78/CharlesBronsonStarHWF.jpg    334
1237    https://upload.wikimedia.org/wikipedia/commons/4/4d/Charles_Bronson_-_1966.JPG    334
1238    https://upload.wikimedia.org/wikipedia/commons/2/2f/Charles_Bronson_-_1977.JPG    334
1239    https://upload.wikimedia.org/wikipedia/commons/c/c9/Charles_Bronson_1961.JPG    334
1240    https://upload.wikimedia.org/wikipedia/commons/9/98/Charles_Bronson_Cannes.jpg    334
1247    https://upload.wikimedia.org/wikipedia/commons/8/8b/Melanie_Laurent_Promotes_%27Aloft%27_in_Berlin.jpg    336
1248    https://upload.wikimedia.org/wikipedia/commons/e/e9/M%C3%A9lanie_Laurent.jpg    336
1249    https://upload.wikimedia.org/wikipedia/commons/c/c1/M%C3%A9lanie_Laurent_-_Berlinale_-_2013.jpg    336
1250    https://upload.wikimedia.org/wikipedia/commons/c/cb/M%C3%A9lanie_Laurent_C%C3%A9sar_2016.jpg    336
1251    https://upload.wikimedia.org/wikipedia/commons/3/36/M%C3%A9lanie_Laurent_C%C3%A9sars_2016_2.jpg    336
1253    https://upload.wikimedia.org/wikipedia/commons/6/6b/RothLaurentBenderIBAug09.jpg    336
1256    https://upload.wikimedia.org/wikipedia/commons/0/0f/Maggie_Cheung2.jpg    337
1260    https://upload.wikimedia.org/wikipedia/commons/b/b9/Flag_of_Oregon.svg    338
1262    https://upload.wikimedia.org/wikipedia/en/2/2f/Jack_Benny_group_photo.jpg    338
1263    https://upload.wikimedia.org/wikipedia/commons/5/5d/Mel_Blanc_-_1959.jpg    338
1264    https://upload.wikimedia.org/wikipedia/commons/3/3b/Mel_Blanc_1976_2.jpg    338
1265    https://upload.wikimedia.org/wikipedia/commons/7/76/Mel_Blanc_4-15-05.JPG    338
1269    https://upload.wikimedia.org/wikipedia/commons/c/c9/Oliver_Reed_with_wife_1968.jpg    341
1273    https://upload.wikimedia.org/wikipedia/commons/7/7b/1976_Sally_Field_%26_Joanne_Woodward.JPG    343
1276    https://upload.wikimedia.org/wikipedia/commons/d/d1/Sally_Field_%281990%29_crop.jpg    343
1277    https://upload.wikimedia.org/wikipedia/en/3/3d/Sally_Field_-_1981.jpg    343
1278    https://upload.wikimedia.org/wikipedia/commons/6/67/Sally_Field_1971.JPG    343
1279    https://upload.wikimedia.org/wikipedia/commons/3/3d/Sally_Field_2012.jpg    343
1283    https://upload.wikimedia.org/wikipedia/commons/0/0f/EthanHawke07TIFF.jpg    344
1284    https://upload.wikimedia.org/wikipedia/commons/2/29/Ethan_Hawke_-_2009_Venice_Film_Festival.jpg    344
1285    https://upload.wikimedia.org/wikipedia/commons/2/20/Ethan_Hawke_2013.jpg    344
1286    https://upload.wikimedia.org/wikipedia/commons/8/88/Ethan_Hawke_Austin_Texas.jpg    344
1287    https://upload.wikimedia.org/wikipedia/commons/d/de/Ethan_Hawke_BridgetLaudien.jpg    344
1288    https://upload.wikimedia.org/wikipedia/commons/d/d7/Ethan_Hawke_Festival_de_Venise_%28Mostra%29_%28cropped%29.png    344
1291    https://upload.wikimedia.org/wikipedia/commons/7/7d/Joseph_Gordon-Levitt_2013.jpg    345
1292    https://upload.wikimedia.org/wikipedia/commons/e/ec/Joseph_Gordon-Levitt_Mar_2009.jpg    345
1293    https://upload.wikimedia.org/wikipedia/commons/e/e8/Joseph_Gordon-Levitt_by_Gage_Skidmore.jpg    345
1295    https://upload.wikimedia.org/wikipedia/commons/5/54/ChristopherPlummer09TIFF.jpg    346
1296    https://upload.wikimedia.org/wikipedia/commons/2/2f/Christopher_Plummer.jpg    346
1299    https://upload.wikimedia.org/wikipedia/commons/5/57/Coat_of_arms_of_Massachusetts.svg    347
1302    https://upload.wikimedia.org/wikipedia/commons/5/59/Flag_of_Lebanon.svg    347
1304    https://upload.wikimedia.org/wikipedia/commons/9/9e/Michael_Ansara_Law_of_the_Plainsman_1959.JPG    347
1309    https://upload.wikimedia.org/wikipedia/commons/8/8a/Peter_O%27Toole_--_LOA_trailer.jpg    348
1310    https://upload.wikimedia.org/wikipedia/commons/5/53/Peter_O%27Toole_-_1968.jpg    348
1311    https://upload.wikimedia.org/wikipedia/commons/c/cd/Peter_O%27Toole_-_Lion.jpg    348
1312    https://upload.wikimedia.org/wikipedia/commons/7/7d/Peter_O%27Toole_in_Lawrence_of_Arabia.png    348
1314    https://upload.wikimedia.org/wikipedia/commons/6/6a/Ordre_des_Arts_et_des_Lettres_Chevalier_ribbon.svg    349
1315    https://upload.wikimedia.org/wikipedia/commons/f/fa/Terry_Gilliam%28CannesPhotoCall%29.jpg    349
1316    https://upload.wikimedia.org/wikipedia/commons/f/f6/Terry_Gilliam.jpg    349
1317    https://upload.wikimedia.org/wikipedia/commons/e/e4/Terry_Gilliam_KVIFF.jpg    349
1318    https://upload.wikimedia.org/wikipedia/commons/a/af/Terry_Gilliam_at_IFC_Center_2006.jpg    349
1320    https://upload.wikimedia.org/wikipedia/commons/2/27/Carol_Kane_Gene_Wilder_1977.jpg    351
1324    https://upload.wikimedia.org/wikipedia/commons/0/05/Jon_Stewart_2005.jpg    353
1325    https://upload.wikimedia.org/wikipedia/commons/c/c7/Jon_Stewart_Earth_book_2_Shankbone.jpg    353
1326    https://upload.wikimedia.org/wikipedia/commons/2/2a/Jon_Stewart_and_Michael_Mullen_on_The_Daily_Show.jpg    353
1330    https://upload.wikimedia.org/wikipedia/commons/7/7f/Rallytorestoresanity-jonstewart.png    353
1333    https://upload.wikimedia.org/wikipedia/commons/4/45/EdnaPurviance.jpg    354
1334    https://upload.wikimedia.org/wikipedia/commons/3/3d/EdnaPurviancePawnshop.jpg    354
1335    https://upload.wikimedia.org/wikipedia/commons/f/fa/Edna_Purviance_4.jpg    354
1336    https://upload.wikimedia.org/wikipedia/commons/6/6d/Edna_Purviance_The_Blue_Book_of_the_Screen.jpg    354
1337    https://upload.wikimedia.org/wikipedia/commons/8/89/Edna_purviance_signed_photo.JPG    354
1345    https://upload.wikimedia.org/wikipedia/commons/0/03/KurtRussellSept2013TIFF.jpg    356
1346    https://upload.wikimedia.org/wikipedia/commons/1/1b/Kurt_Russell.jpg    356
1347    https://upload.wikimedia.org/wikipedia/commons/a/ad/Kurt_Russell_1974.JPG    356
1348    https://upload.wikimedia.org/wikipedia/commons/1/1e/Kurt_Russell_Robert_Vaughn_Man_From_UNCLE_1964.JPG    356
1349    https://upload.wikimedia.org/wikipedia/commons/1/1a/Kurt_Russell_by_Gage_Skidmore.jpg    356
1350    https://upload.wikimedia.org/wikipedia/commons/1/1a/Magic_Kingdom_castle.jpg    356
1353    https://upload.wikimedia.org/wikipedia/commons/6/60/Stephen_Boyd_in_Ben_Hur_trailer.jpg    358
1355    https://upload.wikimedia.org/wikipedia/commons/6/6f/Danny_Pudi_by_Gage_Skidmore_2.jpg    359
1356    https://upload.wikimedia.org/wikipedia/commons/d/d6/Adelai-Broken-Wing.jpg    360
1357    https://upload.wikimedia.org/wikipedia/commons/7/7d/Algiers_1938_%282%29.jpg    360
1359    https://upload.wikimedia.org/wikipedia/commons/5/5b/Joseph_Calleia_in_After_the_Thin_Man_trailer.jpg    360
1362    https://upload.wikimedia.org/wikipedia/commons/f/f4/Small-Miracle-Calleia-1934.jpg    360
1364    https://upload.wikimedia.org/wikipedia/commons/8/8c/Lee_Pace_-_Guardians_of_the_Galaxy_premiere_-_July_2014_%28cropped%29.jpg    361
1365    https://upload.wikimedia.org/wikipedia/commons/f/f0/Lee_Pace_by_Gage_Skidmore.jpg    361
1367    https://upload.wikimedia.org/wikipedia/commons/4/45/Piper_Perabo_Comic-Con_2%2C_2011.jpg    362
1368    https://upload.wikimedia.org/wikipedia/commons/c/c8/Piper_Perabo_Comic-Con_3%2C_2011.jpg    362
1369    https://upload.wikimedia.org/wikipedia/commons/3/3b/Speakerlink-new.svg    362
1370    https://upload.wikimedia.org/wikipedia/commons/7/78/CAMPA%C3%91A_LA_MANO_SUCIA_DE_CHEVRON_-_11532437603.jpg    364
1372    https://upload.wikimedia.org/wikipedia/commons/8/8f/Danny_Glover_2014.jpg    364
1373    https://upload.wikimedia.org/wikipedia/commons/e/ee/Danny_Glover_2014_Phoenix_Comicon_2_%28cropped%29.jpg    364
1374    https://upload.wikimedia.org/wikipedia/commons/3/33/Danny_Glover_Cannes.jpg    364
1375    https://upload.wikimedia.org/wikipedia/commons/c/c1/Danny_Glover_Madison3.jpg    364
1377    https://upload.wikimedia.org/wikipedia/en/6/6c/Paul_Gleason_Breakfast_Club.jpg    365
1380    https://upload.wikimedia.org/wikipedia/commons/4/4f/MichaelClarkeDuncanJan09.jpg    367
1381    https://upload.wikimedia.org/wikipedia/commons/d/da/Michael_Clarke_Duncan_Grave.JPG    367
1384    https://upload.wikimedia.org/wikipedia/commons/a/a2/Kit_Harington_Comic-Con_2011.jpg    368
1385    https://upload.wikimedia.org/wikipedia/commons/a/aa/Kit_Harington_June_2014.jpg    368
1386    https://upload.wikimedia.org/wikipedia/commons/2/23/Kit_Harrington_%289350745314%29_%28cropped%29.jpg    368
1388    https://upload.wikimedia.org/wikipedia/commons/7/7f/Jay_Baruchel_Joint_Base_McGuire-Dix-Lakehurst_2014_crop.jpg    369
1390    https://upload.wikimedia.org/wikipedia/commons/d/dc/Charlton_Heston_-_1953.jpg    370
1391    https://upload.wikimedia.org/wikipedia/commons/1/14/Charlton_Heston_-_1961_hearing.jpg    370
1392    https://upload.wikimedia.org/wikipedia/commons/0/0d/Charlton_Heston_Civil_Rights_March_1963.jpg    370
1393    https://upload.wikimedia.org/wikipedia/commons/9/90/Charlton_Heston_in_Ben_Hur_trailer.jpg    370
1394    https://upload.wikimedia.org/wikipedia/commons/1/17/Charlton_Heston_in_The_Ten_Commandments_film_trailer.jpg    370
1396    https://upload.wikimedia.org/wikipedia/commons/3/3f/Heston%2C1960.jpg    370
1398    https://upload.wikimedia.org/wikipedia/commons/e/e2/Heston.jpg    370
1399    https://upload.wikimedia.org/wikipedia/commons/9/94/127_Hours_1_%285412795196%29.jpg    371
1401    https://upload.wikimedia.org/wikipedia/commons/6/66/James_Franco.jpg    371
1402    https://upload.wikimedia.org/wikipedia/commons/6/6a/James_Franco_%28Cropped%29.jpg    371
1403    https://upload.wikimedia.org/wikipedia/commons/1/12/James_Franco_2007_Spiderman_3_premiere.jpg    371
1404    https://upload.wikimedia.org/wikipedia/commons/c/cf/James_Franco_4%2C_2013.jpg    371
1405    https://upload.wikimedia.org/wikipedia/commons/d/d3/James_Franco_Blue_Angels.jpg    371
1412    https://upload.wikimedia.org/wikipedia/commons/8/86/Robin_Williams_2008.jpg    372
1413    https://upload.wikimedia.org/wikipedia/commons/0/05/Robin_Williams_2011a_%282%29.jpg    372
1414    https://upload.wikimedia.org/wikipedia/commons/b/b0/Robin_Williams_2011c.jpg    372
1415    https://upload.wikimedia.org/wikipedia/commons/1/1b/Robin_Williams_Aviano.jpg    372
1416    https://upload.wikimedia.org/wikipedia/commons/1/1b/Robin_Williams_Bahrain.jpg    372
1417    https://upload.wikimedia.org/wikipedia/commons/3/39/Robin_Williams_Walk_of_Fame.jpg    372
1420    https://upload.wikimedia.org/wikipedia/commons/4/48/The_Blacklist_-_James_Spader_%28cropped%29.jpg    375
1423    https://upload.wikimedia.org/wikipedia/en/d/dc/BetteDavisTheWhalesofAugust.jpg    376
1424    https://upload.wikimedia.org/wikipedia/commons/3/33/Bette_Davis_-_Errol_Flynn.jpg    376
1425    https://upload.wikimedia.org/wikipedia/commons/3/3d/Bette_Davis_-_portrait.jpg    376
1426    https://upload.wikimedia.org/wikipedia/commons/a/a4/Bette_Davis_Tomb.JPG    376
1427    https://upload.wikimedia.org/wikipedia/commons/9/96/Bette_Davis_and_Gary_Merrill_in_All_About_Eve.jpg    376
1428    https://upload.wikimedia.org/wikipedia/commons/a/ad/Bette_Davis_in_Dark_Victory_trailer.jpg    376
1429    https://upload.wikimedia.org/wikipedia/commons/6/62/Bette_davis_baby_jane_trailer.jpg    376
1430    https://upload.wikimedia.org/wikipedia/commons/c/c2/Bette_davis_bad_sister.jpg    376
1431    https://upload.wikimedia.org/wikipedia/commons/4/4d/Bette_davis_beyond_the_forest.jpg    376
1432    https://upload.wikimedia.org/wikipedia/commons/d/dd/Bette_davis_of_human_bondage.jpg    376
1433    https://upload.wikimedia.org/wikipedia/en/3/31/Julius_Carry.jpg    377
1434    https://upload.wikimedia.org/wikipedia/commons/1/11/StevenBauer08.jpg    378
1436    https://upload.wikimedia.org/wikipedia/commons/c/c6/Matthew_Broderick.jpg    380
1437    https://upload.wikimedia.org/wikipedia/commons/d/d4/Matthew_Broderick_-_Flickr_-_nick_step.jpg    380
1438    https://upload.wikimedia.org/wikipedia/commons/d/dd/Matthew_Broderick_2012.jpg    380
1439    https://upload.wikimedia.org/wikipedia/commons/1/16/Matthew_Broderick_and_Sarah_Jessica_Parker_2009.jpg    380
1441    https://upload.wikimedia.org/wikipedia/commons/7/76/Chiwetel_Ejiofor_TIFF_2015.jpg    381
1442    https://upload.wikimedia.org/wikipedia/commons/7/7e/Chiwetel_Ejiofor_at_the_2008_Tribeca_Film_Festival.JPG    381
1445    https://upload.wikimedia.org/wikipedia/commons/1/1b/JoanAllen2000TIFF.jpg    382
1446    https://upload.wikimedia.org/wikipedia/commons/4/4b/JoanAllenpic.jpg    382
1448    https://upload.wikimedia.org/wikipedia/commons/d/df/Billie_Piper_2016_%28cropped%29.jpg    383
1450    https://upload.wikimedia.org/wikipedia/commons/c/ca/Filming_Dr_Who_in_Penarth_%282%29.jpg    383
1454    https://upload.wikimedia.org/wikipedia/commons/b/b3/Adrian_Grenier_June_2014.jpg    384
1458    https://upload.wikimedia.org/wikipedia/commons/5/5e/John_Cleese_2008_bigger_crop.jpg    385
1459    https://upload.wikimedia.org/wikipedia/commons/c/cf/John_Cleese_at_1989_Oscars.jpg    385
1461    https://upload.wikimedia.org/wikipedia/en/b/bf/Spare_Rib_magazine_cover_Dec_1972.jpg    385
1462    https://upload.wikimedia.org/wikipedia/en/a/ae/Tv_muppet_show_john_cleese.jpg    385
1466    https://upload.wikimedia.org/wikipedia/commons/7/72/Gregory..jpg    387
1467    https://upload.wikimedia.org/wikipedia/commons/2/28/Gregory_Peck_1948.jpg    387
1468    https://upload.wikimedia.org/wikipedia/commons/b/bf/Gregory_Peck_Allan_Warren.jpg    387
1469    https://upload.wikimedia.org/wikipedia/commons/f/f1/Gregory_Peck_in_Designing_Woman_trailer.jpg    387
1471    https://upload.wikimedia.org/wikipedia/commons/7/7c/PeckTomb.jpg    387
1472    https://upload.wikimedia.org/wikipedia/commons/0/07/Snows_kilimanjaro_gregory_peck.jpg    387
1474    https://upload.wikimedia.org/wikipedia/en/6/65/Actor_James_Donald.jpg    388
1477    https://upload.wikimedia.org/wikipedia/commons/4/4f/Charlize_Theron_%40_2010_Academy_Awards_%28cropped2%29.jpg    390
1478    https://upload.wikimedia.org/wikipedia/commons/e/e5/Charlize_Theron_Cannes_2015_2.jpg    390
1479    https://upload.wikimedia.org/wikipedia/commons/0/08/Charlize_Theron_WonderCon_2012_%28Straighten_Crop%29.jpg    390
1480    https://upload.wikimedia.org/wikipedia/commons/a/a4/Charlize_Theron_at_Meteor_2008.jpg    390
1481    https://upload.wikimedia.org/wikipedia/commons/c/c9/Charlize_cropped.jpg    390
1483    https://upload.wikimedia.org/wikipedia/commons/8/87/Crystal_Award_Ceremony_-_Exploring_Arts_in_Society_Charlize_Theron.jpg    390
1484    https://upload.wikimedia.org/wikipedia/commons/a/af/Flag_of_South_Africa.svg    390
1488    https://upload.wikimedia.org/wikipedia/commons/3/33/Chris_AddissonResofit1.jpg    392
1493    https://upload.wikimedia.org/wikipedia/en/2/29/Invader_Zim_Toys_S2.jpg    398
1494    https://upload.wikimedia.org/wikipedia/en/a/a9/Invader_Zim_characters.png    398
1495    https://upload.wikimedia.org/wikipedia/en/2/20/Invader_Zim_title_card.png    398
1496    https://upload.wikimedia.org/wikipedia/commons/d/da/Jhonen_vasquez.jpg    398
1497    https://upload.wikimedia.org/wikipedia/commons/8/8b/Nickelodeon_logo_new.svg    398
1501    https://upload.wikimedia.org/wikipedia/commons/1/11/RonLivingstonMay10.jpg    399
1502    https://upload.wikimedia.org/wikipedia/commons/6/66/Adolf_Hitler-1933.jpg    400
1503    https://upload.wikimedia.org/wikipedia/commons/e/ec/Adolf_Hitler_42_Pfennig_stamp.jpg    400
1504    https://upload.wikimedia.org/wikipedia/commons/7/7d/Adolf_Hitler_Der_Alte_Hof.jpg    400
1505    https://upload.wikimedia.org/wikipedia/commons/d/dc/Adolf_Hitler_cropped_restored.jpg    400
1506    https://upload.wikimedia.org/wikipedia/en/d/db/Adolf_Hitler_in_Paris_1940.jpg    400
1507    https://upload.wikimedia.org/wikipedia/commons/f/fd/Aktion_brand.jpg    400
1508    https://upload.wikimedia.org/wikipedia/commons/e/e8/Alois_Hitler_in_his_last_years.jpg    400
1509    https://upload.wikimedia.org/wikipedia/commons/0/0f/Buchenwald_Corpses_60623.jpg    400
1510    https://upload.wikimedia.org/wikipedia/commons/c/ca/Bundesarchiv_B_145_Bild-F051673-0059%2C_Adolf_Hitler_und_Eva_Braun_auf_dem_Berghof.jpg    400
1512    https://upload.wikimedia.org/wikipedia/commons/9/90/Crystal_Clear_app_quick_restart.svg    402
1516    https://upload.wikimedia.org/wikipedia/en/d/da/Airplane_screenshot_Haggerty_Nielsen.jpg    403
1519    https://upload.wikimedia.org/wikipedia/commons/1/16/ForbiddenPlanet1.jpg    403
1520    https://upload.wikimedia.org/wikipedia/commons/f/fc/HersholtBrotherswife.jpg    403
1521    https://upload.wikimedia.org/wikipedia/commons/4/4f/LeslieNielsen.png    403
1522    https://upload.wikimedia.org/wikipedia/commons/0/0d/Leslie_Nielsen.jpg    403
1523    https://upload.wikimedia.org/wikipedia/commons/1/17/Leslie_Nielsen_Headstone.jpg    403
1524    https://upload.wikimedia.org/wikipedia/commons/e/e6/Leslie_nielsen_at_moravian_college.JPG    403
1528    https://upload.wikimedia.org/wikipedia/en/4/41/Flag_of_India.svg    405
1529    https://upload.wikimedia.org/wikipedia/commons/9/9f/Flag_of_Indonesia.svg    405
1531    https://upload.wikimedia.org/wikipedia/commons/0/09/Flag_of_South_Korea.svg    405
1533    https://upload.wikimedia.org/wikipedia/commons/9/99/Flag_of_the_Philippines.svg    405
1534    https://upload.wikimedia.org/wikipedia/commons/6/6f/Song_Kang-Ho_in_2013.jpg    405
1535    https://upload.wikimedia.org/wikipedia/commons/9/9c/Takuya_Kimura%27s_costume_in_Hero.jpg    407
1540    https://upload.wikimedia.org/wikipedia/en/a/a7/Sean_Bridgers.jpg    409
1541    https://upload.wikimedia.org/wikipedia/commons/f/fe/Unbalanced_scales.svg    409
1546    https://upload.wikimedia.org/wikipedia/commons/b/b0/Alida_Valli_signature.svg    412
1552    https://upload.wikimedia.org/wikipedia/commons/8/8f/Valli-American-1947.jpg    412
1554    https://upload.wikimedia.org/wikipedia/commons/9/92/Don_Cheadle_2007.jpg    413
1555    https://upload.wikimedia.org/wikipedia/commons/5/51/Don_Cheadle_UNEP_2011_%28cropped%29.jpg    413
1556    https://upload.wikimedia.org/wikipedia/commons/6/63/Colin_Firth_and_Helena_Bonham_Carter_filming_%28cropped%29.jpg    415
1558    https://upload.wikimedia.org/wikipedia/commons/8/80/HelenaBonhamCarter05.jpg    415
1559    https://upload.wikimedia.org/wikipedia/commons/5/5d/Helena_Bonham_Carter_%28Berlin_Film_Festival_2011%29_2.jpg    415
1560    https://upload.wikimedia.org/wikipedia/commons/6/6e/Helena_Bonham_Carter_2011_AA.jpg    415
1561    https://upload.wikimedia.org/wikipedia/commons/3/30/Helena_Bonham_Carter_SBIFF_Rush_2011.jpg    415
1562    https://upload.wikimedia.org/wikipedia/commons/0/01/Claude_Rains_Broadway_1929.jpeg    416
1563    https://upload.wikimedia.org/wikipedia/commons/c/c7/Claude_Rains_in_Notorious_trailer.jpg    416
1564    https://upload.wikimedia.org/wikipedia/commons/8/8d/Claude_Rains_in_Now_Voyager_trailer.jpg    416
1571    https://upload.wikimedia.org/wikipedia/commons/9/91/SumeetR.jpg    418
1572    https://upload.wikimedia.org/wikipedia/commons/4/43/Sumeet_and_Akshay.jpg    418
1575    https://upload.wikimedia.org/wikipedia/commons/7/7d/Forrest_Gump_brick.jpg    419
1576    https://upload.wikimedia.org/wikipedia/commons/f/fe/KevinSpaceyApr09.jpg    419
1577    https://upload.wikimedia.org/wikipedia/commons/3/3d/Kevin_Spacey_HBO_party_crop.jpg    419
1578    https://upload.wikimedia.org/wikipedia/commons/c/cb/Kevin_Spacey_Premiere.jpg    419
1580    https://upload.wikimedia.org/wikipedia/commons/7/7b/Spacey.jpg    419
1582    https://upload.wikimedia.org/wikipedia/commons/4/48/ColinFarrell07TIFF.jpg    420
1583    https://upload.wikimedia.org/wikipedia/commons/9/9d/Colin_Farrell_Cannes_2015.jpg    420
1584    https://upload.wikimedia.org/wikipedia/commons/0/06/Colin_Farrell_TIFF_2007.jpg    420
1585    https://upload.wikimedia.org/wikipedia/commons/3/3c/Colin_Farrell_TIFF_2012.jpg    420
1586    https://upload.wikimedia.org/wikipedia/commons/8/8b/Colin_Farrell_by_David_Shankbone.jpg    420
1592    https://upload.wikimedia.org/wikipedia/commons/f/ff/Jean_Stapleton_1977.JPG    421
1593    https://upload.wikimedia.org/wikipedia/commons/f/f9/Jean_Stapleton_Carroll_O%27Connor_All_In_the_Family.JPG    421
1596    https://upload.wikimedia.org/wikipedia/commons/2/21/MarkRuffalo07TIFF.jpg    423
1597    https://upload.wikimedia.org/wikipedia/commons/c/ce/Mark_Ruffalo_June_2014.jpg    423
1598    https://upload.wikimedia.org/wikipedia/commons/9/9b/Murat_Cemcir.jpg    424
1599    https://upload.wikimedia.org/wikipedia/en/5/57/George_Segal_-_1965.jpg    426
1600    https://upload.wikimedia.org/wikipedia/commons/6/63/George_Segal_in_Lost_Command.jpg    426
1602    https://upload.wikimedia.org/wikipedia/en/9/91/Night_People_-_Occupied_Berlin.jpg    428
1606    https://upload.wikimedia.org/wikipedia/commons/6/69/John_Goodman_1994.jpg    429
1607    https://upload.wikimedia.org/wikipedia/commons/7/7e/John_Goodman_2014_2.jpg    429
1608    https://upload.wikimedia.org/wikipedia/commons/b/b8/FDR_in_1933.jpg    430
1609    https://upload.wikimedia.org/wikipedia/commons/0/04/Farley_headstone.JPG    430
1610    https://upload.wikimedia.org/wikipedia/commons/6/69/Franklin_D._Roosevelt%2C_Farley%2C_and_Charles_Richard_Crane_in_Warm_Springs%2C_Georgia_-_NARA_-_196727.jpg    430
1611    https://upload.wikimedia.org/wikipedia/en/8/83/Jim_Farley.gif    430
1612    https://upload.wikimedia.org/wikipedia/commons/e/e7/Postmaster_General_James_A._Farley_During_National_Air_Mail_Week%2C_1938.jpg    430
1613    https://upload.wikimedia.org/wikipedia/commons/c/cf/Postmaster_General_James_Farley.jpg    430
1614    https://upload.wikimedia.org/wikipedia/commons/6/63/Seal_of_the_United_States_Department_of_the_Post_Office.svg    430
1615    https://upload.wikimedia.org/wikipedia/commons/1/1b/Yellow_flag_waving.svg    430
1618    https://upload.wikimedia.org/wikipedia/commons/6/60/William_Hurt_%282005%29_crop.jpg    431
1620    https://upload.wikimedia.org/wikipedia/commons/b/b6/Chance_of_a_lifetime.jpg    433
1622    https://upload.wikimedia.org/wikipedia/commons/a/ac/Donna_Reed.jpg    433
1623    https://upload.wikimedia.org/wikipedia/commons/e/e3/Donna_Reed_and_family_1959.JPG    433
1624    https://upload.wikimedia.org/wikipedia/en/f/fc/Donna_Reed_as_Miss_Ellie.jpg    433
1625    https://upload.wikimedia.org/wikipedia/commons/3/36/Donna_Reed_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    433
1629    https://upload.wikimedia.org/wikipedia/commons/7/7d/Last_Man_Standing_Cast_-_Men.png    434
1631    https://upload.wikimedia.org/wikipedia/commons/c/c5/Tim_Allen_%282076447441%29.jpg    434
1632    https://upload.wikimedia.org/wikipedia/commons/f/ff/Tim_Allen_cropped.jpg    434
1633    https://upload.wikimedia.org/wikipedia/commons/1/17/US_Navy_100722-N-7705S-096_Actor_Tim_Allen_talks_with_Sailors_aboard_the_Los_Angeles-class_attack_submarine_USS_Scranton_%28SSN_756%29_during_a_tour_of_the_ship.jpg    434
1635    https://upload.wikimedia.org/wikipedia/commons/4/40/DalaiLamaRichardGere.jpg    435
1637    https://upload.wikimedia.org/wikipedia/commons/3/3f/Richard_Gere_MFF_2015.jpg    435
1638    https://upload.wikimedia.org/wikipedia/commons/2/25/Richard_gere2.jpg    435
1639    https://upload.wikimedia.org/wikipedia/commons/d/d7/Richardgere.jpg    435
1640    https://upload.wikimedia.org/wikipedia/commons/2/28/ColinFirthLiviaJan11.jpg    436
1641    https://upload.wikimedia.org/wikipedia/commons/4/4b/Colin_Firth_%28Berlin_Film_Festival_2011%29.jpg    436
1642    https://upload.wikimedia.org/wikipedia/commons/7/7f/Colin_Firth_2009.jpg    436
1643    https://upload.wikimedia.org/wikipedia/commons/d/d9/Colin_Firth_and_Helena_Bonham_Carter_filming.jpg    436
1646    https://upload.wikimedia.org/wikipedia/commons/0/0d/Benigni.jpg    437
1647    https://upload.wikimedia.org/wikipedia/commons/7/7e/Benigni2.jpg    437
1649    https://upload.wikimedia.org/wikipedia/commons/9/9a/Roberto_Benigni_Nicoletta_Braschi.jpg    437
1652    https://upload.wikimedia.org/wikipedia/commons/2/25/Steve_Blum_%2814948090597%29.jpg    438
1654    https://upload.wikimedia.org/wikipedia/commons/8/8f/DavidBurtkaNeilPatrickHarrisHWOFSept2011.jpg    439
1655    https://upload.wikimedia.org/wikipedia/commons/a/a6/Neil_Patrick_Harris_%289446191273%29.jpg    439
1656    https://upload.wikimedia.org/wikipedia/commons/d/db/Neil_Patrick_Harris_by_Gage_Skidmore.jpg    439
1657    https://upload.wikimedia.org/wikipedia/commons/4/40/Neil_Patrick_Harris_with_Emily_Expo.jpg    439
1661    https://upload.wikimedia.org/wikipedia/commons/d/d8/JohnnyDeppApr2011.jpg    440
1662    https://upload.wikimedia.org/wikipedia/commons/6/6c/JohnnyDeppHWOFJune2013.jpg    440
1663    https://upload.wikimedia.org/wikipedia/commons/a/a7/Johnny_Depp_Cannes_nineties.jpg    440
1664    https://upload.wikimedia.org/wikipedia/commons/9/9a/Johnny_Depp_Walk_of_Fame.jpg    440
1665    https://upload.wikimedia.org/wikipedia/commons/f/f1/Johnny_depp.jpg    440
1666    https://upload.wikimedia.org/wikipedia/commons/b/bd/Johnny_depp_blurry_CC-BY-cropped.jpg    440
1669    https://upload.wikimedia.org/wikipedia/commons/3/35/Amaury_Nolasco_10-13-2008.jpg    441
1674    https://upload.wikimedia.org/wikipedia/en/9/9a/2001_Floyd_publicity_still.jpg    442
1677    https://upload.wikimedia.org/wikipedia/commons/6/6e/Idris_Elba_2007_Cropped.jpg    443
1678    https://upload.wikimedia.org/wikipedia/commons/b/b8/Idris_Elba_2014.jpg    443
1679    https://upload.wikimedia.org/wikipedia/commons/3/34/RockNRolla08TIFF.jpg    443
1682    https://upload.wikimedia.org/wikipedia/commons/2/2d/Prunella_Scales_in_2010.JPG    444
1684    https://upload.wikimedia.org/wikipedia/commons/a/a5/Jackson_Publick_by_Gage_Skidmore_2.jpg    445
1685    https://upload.wikimedia.org/wikipedia/commons/5/57/T._J._Miller_by_Gage_Skidmore.jpg    446
1686    https://upload.wikimedia.org/wikipedia/commons/8/85/Donal_Logue_at_NY_PaleyFest_2014_for_Gotham.jpg    447
1687    https://upload.wikimedia.org/wikipedia/en/e/e5/Donal_logue_-_ireland.png    447
1688    https://upload.wikimedia.org/wikipedia/commons/d/de/8.23.12BiehnBlancByLuigiNovi3.jpg    448
1690    https://upload.wikimedia.org/wikipedia/commons/c/c0/Michael_Biehn_2014_%28cropped%29.jpg    448
1692    https://upload.wikimedia.org/wikipedia/commons/9/94/FredricMarchinAStarIsBorn1937.jpg    449
1693    https://upload.wikimedia.org/wikipedia/commons/3/34/Fredric_March-1.jpg    449
1694    https://upload.wikimedia.org/wikipedia/commons/9/9b/Fredric_March_in_Best_Years_of_Our_Lives_trailer.jpg    449
1695    https://upload.wikimedia.org/wikipedia/commons/0/0b/Inherit_the_wind_trailer_%286%29_Spencer_Tracy_Fredric_March.jpg    449
1699    https://upload.wikimedia.org/wikipedia/commons/1/12/The_Road_to_Glory_%281936%29_1.jpg    449
1701    https://upload.wikimedia.org/wikipedia/commons/7/72/Viola_Davis_2009.jpg    450
1702    https://upload.wikimedia.org/wikipedia/commons/f/fa/Viola_Davis_June_2015.jpg    450
1705    https://upload.wikimedia.org/wikipedia/commons/6/63/Morena_Baccarin_2012.jpg    451
1706    https://upload.wikimedia.org/wikipedia/commons/e/e8/Morena_Baccarin_by_Gage_Skidmore.jpg    451
1707    https://upload.wikimedia.org/wikipedia/commons/a/a6/Morena_Baccarin_by_Gage_Skidmore_2.jpg    451
1708    https://upload.wikimedia.org/wikipedia/en/1/1d/Claire_Bloom_1958.JPG    453
1711    https://upload.wikimedia.org/wikipedia/commons/0/07/Diana_Dors_and_Rod_Steiger_in_The_Unholy_Wife_trailer.jpg    453
1712    https://upload.wikimedia.org/wikipedia/commons/5/50/Jacques-Louis_David_-_The_Emperor_Napoleon_in_His_Study_at_the_Tuileries_-_Google_Art_Project.jpg    453
1713    https://upload.wikimedia.org/wikipedia/en/6/67/Mussolini_biografia.jpg    453
1715    https://upload.wikimedia.org/wikipedia/commons/8/8c/Poitier_cropped.jpg    453
1716    https://upload.wikimedia.org/wikipedia/commons/e/ef/RobertdeNiro26.JPG    453
1717    https://upload.wikimedia.org/wikipedia/commons/b/bc/Rod_Steiger.jpg    453
1718    https://upload.wikimedia.org/wikipedia/commons/9/94/Bryan_Cranston_%281%29.jpg    454
1719    https://upload.wikimedia.org/wikipedia/commons/a/a5/Bryan_Cranston_Peabody_2014.jpg    454
1720    https://upload.wikimedia.org/wikipedia/commons/a/a0/Bryan_Cranston_by_Gage_Skidmore_2.jpg    454
1724    https://upload.wikimedia.org/wikipedia/commons/c/c9/Gerard_Butler_IMG_4383.JPG    456
1725    https://upload.wikimedia.org/wikipedia/commons/9/97/Gerard_Butler_TIFF_2015.jpg    456
1727    https://upload.wikimedia.org/wikipedia/commons/7/73/%D0%94%D0%B6%D0%B5%D1%80%D0%B0%D1%80%D0%B4_%D0%91%D0%B0%D1%82%D0%BB%D0%B5%D1%80.jpg    456
1728    https://upload.wikimedia.org/wikipedia/commons/9/9f/Travis_Fimmel_by_Gage_Skidmore.jpg    457
1729    https://upload.wikimedia.org/wikipedia/commons/1/16/Flyfishing_-_Winslow_Homer.jpg    458
1731    https://upload.wikimedia.org/wikipedia/commons/d/de/Robson_Green%2C_2015.jpg    458
1732    https://upload.wikimedia.org/wikipedia/commons/3/3d/Adorable_Ellen_Page_at_the_2013_San_Diego_Comic_Con_International_-a.jpg    459
1734    https://upload.wikimedia.org/wikipedia/commons/4/44/Ellen_Page.jpg    459
1735    https://upload.wikimedia.org/wikipedia/commons/4/4b/Ellen_Page_by_Gage_Skidmore.jpg    459
1736    https://upload.wikimedia.org/wikipedia/commons/9/98/InceptionCast2July10.jpg    459
1743    https://upload.wikimedia.org/wikipedia/commons/5/53/Lucy_Liu_%40_USAID_Human_Trafficking_Symposium_01_%28cropped%29.jpg    464
1744    https://upload.wikimedia.org/wikipedia/commons/b/b0/Lucy_Liu_Cannes_2008.jpg    464
1745    https://upload.wikimedia.org/wikipedia/commons/1/1f/Lucy_Liu_Comic-Con_2012.jpg    464
1746    https://upload.wikimedia.org/wikipedia/commons/3/32/Lucy_Liu_HS_Yearbook.jpeg    464
1747    https://upload.wikimedia.org/wikipedia/commons/6/60/Olivia_Cole.JPG    465
1748    https://upload.wikimedia.org/wikipedia/commons/3/32/TimeTeam2007.jpg    467
1749    https://upload.wikimedia.org/wikipedia/commons/8/82/Tony_Robinson.jpg    467
1751    https://upload.wikimedia.org/wikipedia/commons/2/20/Helen_McCrory_Berlin_2015.jpg    468
1753    https://upload.wikimedia.org/wikipedia/commons/8/89/Hanno_P%C3%B6schl%2C_Schauspieler_und_Restaurantbetreiber_%2817370768906%29_%28cropped%29.jpg    469
1755    https://upload.wikimedia.org/wikipedia/commons/1/1a/Brad_Dourif.jpg    472
1758    https://upload.wikimedia.org/wikipedia/commons/6/66/Diane_Cilento%2C_1954.jpg    474
1760    https://upload.wikimedia.org/wikipedia/commons/c/c5/SeanConnery88.jpg    474
1761    https://upload.wikimedia.org/wikipedia/commons/c/c8/SeanConneryJune08.jpg    474
1762    https://upload.wikimedia.org/wikipedia/commons/0/0b/Sean_Connery_1964.png    474
1763    https://upload.wikimedia.org/wikipedia/commons/d/d1/Sean_Connery_en_Micheline_Roquebrune_%281983%29.jpg    474
1764    https://upload.wikimedia.org/wikipedia/commons/6/69/St._Cuthbert%27s_%22Co-op_milk_cart%22%2C_Edinburgh_%281981%29.JPG    474
1765    https://upload.wikimedia.org/wikipedia/commons/1/1e/Walther_PPK.svg    474
1769    https://upload.wikimedia.org/wikipedia/commons/6/65/Dominic_West1.jpg    476
1770    https://upload.wikimedia.org/wikipedia/commons/5/5a/Dominic_West_%286577113511%29_%28cropped%29.jpg    476
1774    https://upload.wikimedia.org/wikipedia/en/b/b8/Wolfgang_Lukschy.jpg    477
1775    https://upload.wikimedia.org/wikipedia/en/6/63/Wolfgang_Lukschyffd64.jpg    477
1776    https://upload.wikimedia.org/wikipedia/commons/d/de/Enzo_Cannavale_1975.png    478
1778    https://upload.wikimedia.org/wikipedia/commons/e/e1/Tomschilling.jpg    479
1780    https://upload.wikimedia.org/wikipedia/commons/a/af/JonVoightHWOFJune2013.jpg    480
1781    https://upload.wikimedia.org/wikipedia/commons/6/64/Jon_Voight_1988.jpg    480
1782    https://upload.wikimedia.org/wikipedia/commons/9/90/Jon_Voight_2011.jpg    480
1783    https://upload.wikimedia.org/wikipedia/commons/a/a6/Jon_Voight_Cannes.jpg    480
1786    https://upload.wikimedia.org/wikipedia/commons/d/d4/Noah_Emmerich_Cannes_2013.jpg    481
1787    https://upload.wikimedia.org/wikipedia/commons/a/a1/Noah_emmerich.jpg    481
1789    https://upload.wikimedia.org/wikipedia/commons/5/5b/Yvonne_Furneaux_cropped.png    482
1794    https://upload.wikimedia.org/wikipedia/commons/1/11/Foxx-Hollywood_Walk_of_Fame.JPG    485
1795    https://upload.wikimedia.org/wikipedia/commons/e/ed/Jamie_Foxx_Django_avp.jpg    485
1796    https://upload.wikimedia.org/wikipedia/commons/a/ac/Jamie_Foxx_Navy.jpg    485
1797    https://upload.wikimedia.org/wikipedia/commons/8/88/Jamie_Foxx_by_Gage_Skidmore.jpg    485
1798    https://upload.wikimedia.org/wikipedia/commons/8/84/Jamie_Foxx_face.jpg    485
1799    https://upload.wikimedia.org/wikipedia/commons/f/f6/Jamie_Foxx_with_Kanye_West.jpg    485
1801    https://upload.wikimedia.org/wikipedia/commons/6/6e/BradSwaile.jpg    486
1806    https://upload.wikimedia.org/wikipedia/commons/1/10/Mia_Wasikowska_2%2C_2012.jpg    490
1807    https://upload.wikimedia.org/wikipedia/commons/1/1d/Mia_Wasikowska_2010.jpg    490
1808    https://upload.wikimedia.org/wikipedia/commons/f/fb/Mia_Wasikowska_Cannes_2014.jpg    490
1809    https://upload.wikimedia.org/wikipedia/commons/e/e6/Mia_Wasikowska_by_Gage_Skidmore.jpg    490
1810    https://upload.wikimedia.org/wikipedia/commons/b/b9/1952_Barbara_Bel_Geddes.JPG    491
1811    https://upload.wikimedia.org/wikipedia/commons/4/4f/BarbaraBelGeddes.jpg    491
1813    https://upload.wikimedia.org/wikipedia/commons/1/16/Kazan%27s_Panic_in_the_Street_trailer_screenshot_%2824%29.jpg    491
1814    https://upload.wikimedia.org/wikipedia/en/8/8f/Miss_Ellie_Ewing.JPG    491
1819    https://upload.wikimedia.org/wikipedia/commons/5/50/New-Map-Francophone_World.PNG    492
1822    https://upload.wikimedia.org/wikipedia/commons/0/03/Yves_Montand_1966.jpg    492
1823    https://upload.wikimedia.org/wikipedia/commons/8/8c/Yves_Montand_Cannes.jpg    492
1825    https://upload.wikimedia.org/wikipedia/commons/e/ef/Leif_Erickson_Yaphet_Kotto_The_High_Chaparral_1968.JPG    493
1826    https://upload.wikimedia.org/wikipedia/commons/2/2b/Adam_Driver_by_Gage_Skidmore.jpg    495
1828    https://upload.wikimedia.org/wikipedia/commons/9/99/Barbara_Stanwyck_and_Gary_Cooper_in_Ball_of_Fire_trailer_2.jpg    497
1832    https://upload.wikimedia.org/wikipedia/commons/c/cb/Flag_of_Montana.svg    497
1833    https://upload.wikimedia.org/wikipedia/commons/6/6b/For_Whom_The_Bell_Tolls_trailer.jpg    497
1834    https://upload.wikimedia.org/wikipedia/commons/6/6d/Gary_Cooper%27s_Grave.jpg    497
1835    https://upload.wikimedia.org/wikipedia/commons/e/e3/Gary_Cooper-Helen_Hayes_in_A_Farewell_to_Arms.jpg    497
1836    https://upload.wikimedia.org/wikipedia/commons/6/66/Gary_Cooper_1903.jpg    497
1837    https://upload.wikimedia.org/wikipedia/commons/7/7d/Gary_Cooper_1936.jpg    497
1838    https://upload.wikimedia.org/wikipedia/commons/8/87/Pamela_Rabe_%2820057673862%29.jpg    498
1840    https://upload.wikimedia.org/wikipedia/commons/5/57/Gloria_Swanson_and_William_Holden.jpg    499
1841    https://upload.wikimedia.org/wikipedia/commons/2/2f/Holden-Hepburn-Sabrina.jpg    499
1842    https://upload.wikimedia.org/wikipedia/commons/f/ff/Holden-portrait.jpg    499
1844    https://upload.wikimedia.org/wikipedia/commons/7/7e/Reagan_wedding_-_Holden_-_1952.jpg    499
1845    https://upload.wikimedia.org/wikipedia/commons/7/74/Sabrina5.jpg    499
1847    https://upload.wikimedia.org/wikipedia/commons/f/f1/William_Holden_-_1970s.jpg    499
1848    https://upload.wikimedia.org/wikipedia/commons/9/98/Deodato_-_Roth.jpg    500
1849    https://upload.wikimedia.org/wikipedia/commons/d/dc/EliRothIBAug09.jpg    500
1850    https://upload.wikimedia.org/wikipedia/commons/e/e6/Eli_Roth_2007.jpg    500
1855    https://upload.wikimedia.org/wikipedia/commons/9/95/Dick_van_dyke_show_1962.JPG    502
1860    https://upload.wikimedia.org/wikipedia/commons/0/0e/Morey_Amsterdam_HA-SN-99-00637.jpg    502
1862    https://upload.wikimedia.org/wikipedia/commons/8/85/Tom_Sizemore_2_crop.jpg    503
1863    https://upload.wikimedia.org/wikipedia/commons/3/3f/Alexander_Skarsgard_1_by_David_Shankbone.jpg    504
1864    https://upload.wikimedia.org/wikipedia/commons/8/85/Alexander_Skarsgard_by_Gage_Skidmore_2.jpg    504
1866    https://upload.wikimedia.org/wikipedia/commons/b/b7/Bamber%2C_Jamie_%282007%29.jpg    505
1868    https://upload.wikimedia.org/wikipedia/commons/9/97/Jamie_Bamber_20090705_Japan_Expo_03.jpg    505
1869    https://upload.wikimedia.org/wikipedia/commons/f/f8/Jamie_Bamber_by_Gage_Skidmore.jpg    505
1871    https://upload.wikimedia.org/wikipedia/commons/0/08/GabrielByrne.jpg    506
1872    https://upload.wikimedia.org/wikipedia/commons/f/ff/Gabriel_Byrne_2010.jpg    506
1873    https://upload.wikimedia.org/wikipedia/en/7/79/Brideoffrankenstein.jpg    507
1875    https://upload.wikimedia.org/wikipedia/en/c/c9/Edward_Everett_Horton_Elsa_Lanchester_Burke%27s_Law_1964.jpg    507
1876    https://upload.wikimedia.org/wikipedia/commons/d/da/Elsa_Lanchester.jpg    507
1878    https://upload.wikimedia.org/wikipedia/commons/d/d9/Audrey_Tautou_Cannes.jpg    508
1879    https://upload.wikimedia.org/wikipedia/commons/9/93/Audrey_Tautou_Cannes_2006.jpg    508
1880    https://upload.wikimedia.org/wikipedia/commons/e/e6/Audrey_Tautou_Cannes_2012.jpg    508
1881    https://upload.wikimedia.org/wikipedia/commons/3/3b/Audrey_Tautou_janvier_2016.jpg    508
1888    https://upload.wikimedia.org/wikipedia/commons/9/95/Christopher_Sabat_by_Gage_Skidmore.jpg    509
1890    https://upload.wikimedia.org/wikipedia/commons/8/84/Ashley_Jensen.jpg    510
1892    https://upload.wikimedia.org/wikipedia/commons/a/ab/Dylan_Bruce_March_2015.jpg    511
1893    https://upload.wikimedia.org/wikipedia/commons/1/11/2006-07-24_Friedhof_Schoeneberg_III_Grab_Dietrich.jpg    512
1895    https://upload.wikimedia.org/wikipedia/commons/0/0f/Destry-Rides-Again-1939.jpg    512
1896    https://upload.wikimedia.org/wikipedia/commons/5/50/Dietrich-Hayworth-Hollywood-Canteen-1942.jpg    512
1897    https://upload.wikimedia.org/wikipedia/commons/b/b6/Gedenktafel_Marlene_Dietrich.jpg    512
1898    https://upload.wikimedia.org/wikipedia/commons/a/ac/German_stamp-_Marlene_Dietrich.jpg    512
1899    https://upload.wikimedia.org/wikipedia/commons/9/99/Map_Rote_Insel-Berlin.svg    512
1900    https://upload.wikimedia.org/wikipedia/commons/c/c6/Marlene_Dietrich_1936.jpg    512
1901    https://upload.wikimedia.org/wikipedia/en/5/55/John_Megna.jpg    513
1902    https://upload.wikimedia.org/wikipedia/commons/c/c0/BusterKeatonKBF1956.jpg    514
1903    https://upload.wikimedia.org/wikipedia/commons/4/49/Buster_Keaton.jpg    514
1904    https://upload.wikimedia.org/wikipedia/commons/d/d0/Buster_Keaton_Joe_E_Brown_Route_66_1962.JPG    514
1905    https://upload.wikimedia.org/wikipedia/commons/4/4f/Buster_Keaton_Twilight_Zone_1961.JPG    514
1906    https://upload.wikimedia.org/wikipedia/commons/7/75/Buster_Keaton_and_a_Spanish_journalist.png    514
1907    https://upload.wikimedia.org/wikipedia/commons/0/0e/Buster_Keaton_with_Family_1922.jpg    514
1908    https://upload.wikimedia.org/wikipedia/commons/c/c2/Busterkeaton_edit.jpg    514
1911    https://upload.wikimedia.org/wikipedia/commons/6/69/KeatonPorkpie.jpg    514
1912    https://upload.wikimedia.org/wikipedia/commons/b/be/Aarondismuke.jpg    515
1914    https://upload.wikimedia.org/wikipedia/commons/7/72/Yvonne_Strahovski_TIFF_2011.jpg    516
1915    https://upload.wikimedia.org/wikipedia/commons/5/57/Yvonne_Strahovski_at_Nerd_HQ_2014_%28cropped%29.jpg    516
1916    https://upload.wikimedia.org/wikipedia/commons/d/db/Yvonne_strahovski_%28cropped%29.jpg    516
1917    https://upload.wikimedia.org/wikipedia/commons/c/cc/Alan_Ritchson_%28cropped%29.jpg    517
1919    https://upload.wikimedia.org/wikipedia/commons/0/01/Ritchson_and_Olouglin_C-17.jpg    517
1920    https://upload.wikimedia.org/wikipedia/en/3/32/Chris_Penn.jpg    518
1925    https://upload.wikimedia.org/wikipedia/commons/b/bb/Steven_Spielberg_%26_Tom_Hanks_at_National_World_War_II_Memorial_for_premiere_of_The_Pacific_2010-03-11.jpg    519
1926    https://upload.wikimedia.org/wikipedia/commons/f/f5/TomHanks1989.png    519
1927    https://upload.wikimedia.org/wikipedia/commons/9/95/TomHanksForrestGump94.jpg    519
1928    https://upload.wikimedia.org/wikipedia/commons/6/65/Tom_Hanks_-_footprint.JPG    519
1929    https://upload.wikimedia.org/wikipedia/commons/c/c6/Tom_Hanks_2008a.jpg    519
1930    https://upload.wikimedia.org/wikipedia/commons/6/66/Tom_Hanks_2014.jpg    519
1931    https://upload.wikimedia.org/wikipedia/commons/4/4d/Tom_Hanks_and_wife_Rita_Wilson_836.jpg    519
1934    https://upload.wikimedia.org/wikipedia/commons/3/3b/KarenAllen10TIFF.jpg    520
1935    https://upload.wikimedia.org/wikipedia/commons/b/bc/Karen_Allen1.JPG    520
1938    https://upload.wikimedia.org/wikipedia/commons/7/75/Ewan_McGregor_Cannes_2012.jpg    521
1939    https://upload.wikimedia.org/wikipedia/commons/1/1e/Flickr_-_Josh_Jensen_-_Ewan_McGregor_Greets_His_Fans.jpg    521
1943    https://upload.wikimedia.org/wikipedia/commons/9/99/Amy_Poehler_2012.jpg    522
1944    https://upload.wikimedia.org/wikipedia/commons/9/9b/Amy_Poehler_Aubrey_Plaza_2012_Shankbone.JPG    522
1945    https://upload.wikimedia.org/wikipedia/commons/e/e6/Amy_Poehler_and_Tina_Fey_by_David_Shankbone.jpg    522
1953    https://upload.wikimedia.org/wikipedia/commons/1/1e/Nick_Frost_by_Gage_Skidmore_2.jpg    524
1956    https://upload.wikimedia.org/wikipedia/commons/6/63/Kim_Coates_by_Gage_Skidmore.jpg    526
1957    https://upload.wikimedia.org/wikipedia/commons/5/5d/SOAinKuwait.jpg    526
1958    https://upload.wikimedia.org/wikipedia/commons/a/a7/Jonathan_Banks_by_Gage_Skidmore.jpg    527
1959    https://upload.wikimedia.org/wikipedia/commons/4/41/Danishfilm.svg    528
1962    https://upload.wikimedia.org/wikipedia/commons/3/35/Ed_Norton_Shankbone_Metropolitan_Opera_2009.jpg    529
1963    https://upload.wikimedia.org/wikipedia/commons/e/ec/Edward_Norton_2012.jpg    529
1964    https://upload.wikimedia.org/wikipedia/commons/e/e3/Edward_Norton_By_Bridget_Laudien.jpg    529
1968    https://upload.wikimedia.org/wikipedia/commons/0/0f/Crystal_Simurgh.svg    530
1969    https://upload.wikimedia.org/wikipedia/commons/f/f5/Jury_Cannes_2014.jpg    530
1970    https://upload.wikimedia.org/wikipedia/commons/c/c7/Leila_Hatami_Cannes_2013.jpg    530
1975    https://upload.wikimedia.org/wikipedia/commons/a/a1/Grapes_of_Wrath%2C_The_-_%28Original_Trailer%29_-_02.png    531
1976    https://upload.wikimedia.org/wikipedia/commons/b/be/Jane_Darwell_1945.JPG    531
1981    https://upload.wikimedia.org/wikipedia/commons/c/c5/VicMignognaJune2011.jpg    532
1982    https://upload.wikimedia.org/wikipedia/commons/a/a1/Vic_Mignogna_by_Gage_Skidmore_2.jpg    532
1985    https://upload.wikimedia.org/wikipedia/commons/7/7a/Chris_Sarandon%2C_Fan_Expo_Canada_2012_%28crop%29.jpg    534
1987    https://upload.wikimedia.org/wikipedia/commons/3/38/NickCassavetesJune09.jpg    535
1990    https://upload.wikimedia.org/wikipedia/commons/9/9c/Flag_of_Denmark.svg    536
1992    https://upload.wikimedia.org/wikipedia/commons/b/b1/Ulrich_Thomsen_o.jpg    536
1995    https://upload.wikimedia.org/wikipedia/commons/a/ac/Nick_Offerman_Sundance_2014_%28cropped%29.jpg    538
1996    https://upload.wikimedia.org/wikipedia/commons/f/f6/Nick_Offerman_at_UMBC_%28cropped%29.jpg    538
1997    https://upload.wikimedia.org/wikipedia/commons/2/27/CharlieMurphyDec09.jpg    539
2001    https://upload.wikimedia.org/wikipedia/en/5/53/Jurassic_Park_10.jpg    540
2003    https://upload.wikimedia.org/wikipedia/commons/0/00/SamNeill08TIFF.jpg    540
2004    https://upload.wikimedia.org/wikipedia/commons/6/61/Sam_Neill_2010.jpg    540
2005    https://upload.wikimedia.org/wikipedia/commons/3/32/Sam_Neill_cropped.jpg    540
2007    https://upload.wikimedia.org/wikipedia/commons/c/c9/Mary_Elizabeth_Mastrantonio.jpg    541
2010    https://upload.wikimedia.org/wikipedia/commons/2/25/Ernie_Hudson_2014.jpg    542
2011    https://upload.wikimedia.org/wikipedia/en/e/e8/Ernie_Hudson_handprints_at_Disney_Hollywood_Studios.jpg    542
2014    https://upload.wikimedia.org/wikipedia/commons/2/21/Sean_Astin_1_crop.jpg    543
2015    https://upload.wikimedia.org/wikipedia/commons/8/89/Sean_Astin_by_Gage_Skidmore.jpg    543
2017    https://upload.wikimedia.org/wikipedia/commons/d/d0/BillyBobThornton.jpg    544
2018    https://upload.wikimedia.org/wikipedia/commons/d/d3/BillyBobThorntonHWOFFeb2012crop.JPG    544
2019    https://upload.wikimedia.org/wikipedia/commons/4/49/BillyBobThorntonPointsSXSW2009_%28cropped%29.jpg    544
2020    https://upload.wikimedia.org/wikipedia/commons/7/77/Billy_Bob_Thornton.jpg    544
2025    https://upload.wikimedia.org/wikipedia/commons/8/82/Kevin_Chapman.jpg    545
2028    https://upload.wikimedia.org/wikipedia/commons/0/0f/Dylan_Moran_Melbourne.jpg    547
2030    https://upload.wikimedia.org/wikipedia/commons/4/4d/Aaron_Paul_%288023002250%29.jpg    548
2031    https://upload.wikimedia.org/wikipedia/commons/8/8d/Aaron_Paul_by_Gage_Skidmore_2.jpg    548
2034    https://upload.wikimedia.org/wikipedia/commons/6/61/Vince_Gilligan_and_Aaron_Paul.jpg    548
2037    https://upload.wikimedia.org/wikipedia/commons/2/20/Angelina_Jolie_Brad_Pitt_Cannes.jpg    550
2038    https://upload.wikimedia.org/wikipedia/commons/0/01/BradPitt.jpg    550
2039    https://upload.wikimedia.org/wikipedia/commons/d/db/BradPittBAR08.jpg    550
2040    https://upload.wikimedia.org/wikipedia/commons/5/51/Brad_Pitt_Fury_2014.jpg    550
2041    https://upload.wikimedia.org/wikipedia/commons/c/c7/Brad_Pitt_Inglorious_Basterds_Berlin_premiere.jpg    550
2042    https://upload.wikimedia.org/wikipedia/commons/d/d4/Brad_Pitt_June_2014_%28cropped%29.jpg    550
2043    https://upload.wikimedia.org/wikipedia/commons/4/45/Brad_Pitt_Palm_Film_Festival.jpg    550
2044    https://upload.wikimedia.org/wikipedia/commons/a/a7/Brad_Pitt_at_Incirlik2.jpg    550
2048    https://upload.wikimedia.org/wikipedia/commons/5/57/Ginnifer_Goodwin_by_Gage_Skidmore.jpg    551
2052    https://upload.wikimedia.org/wikipedia/commons/4/43/Haley_Joel_Osment.jpg    553
2053    https://upload.wikimedia.org/wikipedia/commons/c/c7/Haley_Joel_Osment_TIFF_2014.jpg    553
2055    https://upload.wikimedia.org/wikipedia/commons/5/5d/Rory_Kinnear_2012_%28cropped%29.jpg    555
2056    https://upload.wikimedia.org/wikipedia/commons/5/56/Amber_Nash.jpg    557
2062    https://upload.wikimedia.org/wikipedia/commons/d/de/JamesCallisCCJuly09.jpg    560
2063    https://upload.wikimedia.org/wikipedia/commons/4/43/James_Callis_2007_face_cropped.jpg    560
2067    https://upload.wikimedia.org/wikipedia/commons/f/fe/IanMcShane06.jpg    562
2070    https://upload.wikimedia.org/wikipedia/commons/6/6b/Ed_Skrein_by_Gage_Skidmore.jpg    565
2072    https://upload.wikimedia.org/wikipedia/commons/1/1f/Scott_Glenn_2011_Shankbone.JPG    566
2073    https://upload.wikimedia.org/wikipedia/commons/d/da/6.8.08RichardDreyfuss2ByLuigiNovi.jpg    567
2075    https://upload.wikimedia.org/wikipedia/commons/5/59/Richard_Dreyfus_and_Allan_Carr_at_the_Governor%27s_Ball_party_after_the_1989_Academy_Awards.jpg    567
2076    https://upload.wikimedia.org/wikipedia/commons/0/08/Richard_Dreyfuss_Cannes_2013.jpg    567
2079    https://upload.wikimedia.org/wikipedia/commons/b/b9/RosamundPike10TIFF.jpg    568
2080    https://upload.wikimedia.org/wikipedia/commons/8/89/Rosamund_Pike_%28cropped%29.jpg    568
2081    https://upload.wikimedia.org/wikipedia/commons/6/6a/Rosamund_Pike_2011.jpg    568
2084    https://upload.wikimedia.org/wikipedia/commons/0/01/MaggieGyllenhaal-08.jpg    569
2085    https://upload.wikimedia.org/wikipedia/commons/c/c1/Maggie_Gyllenhaal_-_003.jpg    569
2086    https://upload.wikimedia.org/wikipedia/commons/7/72/Maggie_Gyllenhaal_Golden_Globes_2009.jpg    569
2087    https://upload.wikimedia.org/wikipedia/commons/c/cc/Maggie_Gyllenhaal_at_the_82nd_Academy_Awards_%28cropped%29.jpg    569
2088    https://upload.wikimedia.org/wikipedia/commons/4/41/Peter_Sarsgaard_and_Maggie_Gyllenhaal_An_Education_2009.jpg    569
2091    https://upload.wikimedia.org/wikipedia/en/d/d0/TurtleEntourage.jpg    572
2093    https://upload.wikimedia.org/wikipedia/commons/f/f2/Douglas-graduation.jpg    573
2094    https://upload.wikimedia.org/wikipedia/commons/4/4e/Douglas_-_Bacall_-_Horn_1950.jpg    573
2095    https://upload.wikimedia.org/wikipedia/commons/0/07/Douglas_-_Big_Trees_-_1952.jpg    573
2096    https://upload.wikimedia.org/wikipedia/commons/e/e6/KirkDouglas.png    573
2097    https://upload.wikimedia.org/wikipedia/commons/5/53/KirkDouglasZubinMehtaMar11.jpg    573
2098    https://upload.wikimedia.org/wikipedia/commons/4/4c/Kirk_Douglas_-_1963.jpg    573
2099    https://upload.wikimedia.org/wikipedia/commons/3/30/Kirk_Douglas_1950.jpg    573
2100    https://upload.wikimedia.org/wikipedia/commons/d/d9/Kirk_Douglas_Jimmy_Carter.jpg    573
2101    https://upload.wikimedia.org/wikipedia/en/d/d7/Kirk_Douglas_Lust_for_Life.JPG    573
2103    https://upload.wikimedia.org/wikipedia/commons/6/61/Jon_Seda_at_2014_Imagen_Awards.jpg    574
2105    https://upload.wikimedia.org/wikipedia/commons/c/c7/The_Pacific_miniseries_stars_attend_HBO_screening.jpg    574
2107    https://upload.wikimedia.org/wikipedia/commons/a/a7/OrlandoBloomJuly06.jpg    575
2108    https://upload.wikimedia.org/wikipedia/commons/e/ee/Orlando_Bloom_2010.jpg    575
2109    https://upload.wikimedia.org/wikipedia/commons/9/9c/Orlando_Bloom_2014_Comic_Con_%28cropped%29.jpg    575
2110    https://upload.wikimedia.org/wikipedia/commons/0/0c/Orlando_Bloom_at_Venice_Festival.jpg    575
2113    https://upload.wikimedia.org/wikipedia/en/5/5f/Danny_Thomas_and_Jean_Hagen_1955.jpg    576
2114    https://upload.wikimedia.org/wikipedia/en/5/52/Jean_Hagen_1955.jpg    576
2115    https://upload.wikimedia.org/wikipedia/commons/9/91/Jean_Hagen_in_Singin_in_the_Rain_trailer.jpg    576
2117    https://upload.wikimedia.org/wikipedia/commons/0/08/Hong_Kong_film.png    577
2118    https://upload.wikimedia.org/wikipedia/commons/9/93/Hong_Kong_film.svg    577
2120    https://upload.wikimedia.org/wikipedia/commons/e/ef/LeslieBakerOct07.jpg    578
2122    https://upload.wikimedia.org/wikipedia/commons/8/8a/Naveen_Andrews.jpg    579
2123    https://upload.wikimedia.org/wikipedia/commons/1/1b/153335_%27Michael_Palin%27_at_Cambridge.JPG    580
2124    https://upload.wikimedia.org/wikipedia/commons/3/37/An_evening_with_Michael_Palin.jpg    580
2126    https://upload.wikimedia.org/wikipedia/commons/7/75/Michael_Palin.jpg    580
2127    https://upload.wikimedia.org/wikipedia/commons/0/01/Michaelpalinnightingale.jpg    580
2128    https://upload.wikimedia.org/wikipedia/commons/2/2e/Royal_Geographical_Society_Circlet.png    580
2131    https://upload.wikimedia.org/wikipedia/commons/d/db/Ilana-glazer.png    581
2133    https://upload.wikimedia.org/wikipedia/commons/5/5f/Miriam_Stein_Romy_2014.jpg    582
2141    https://upload.wikimedia.org/wikipedia/commons/4/44/Wilson_Cruz.jpg    583
2142    https://upload.wikimedia.org/wikipedia/commons/a/a2/Wilson_Cruz_at_PaleyFest_2014.jpg    583
2144    https://upload.wikimedia.org/wikipedia/commons/b/b9/Khary_Payton_2014_%28cropped%29.jpg    585
2147    https://upload.wikimedia.org/wikipedia/commons/c/c2/Richard_Dean_Anderson.jpg    586
2149    https://upload.wikimedia.org/wikipedia/commons/0/03/Barry_Humphries_December_2000.jpg    587
2150    https://upload.wikimedia.org/wikipedia/commons/a/a7/Barry_Humphries_July_2001.jpg    587
2154    https://upload.wikimedia.org/wikipedia/commons/0/0c/Maggie_Siff_Comic_Con_2013_%28cropped%29.jpg    588
2155    https://upload.wikimedia.org/wikipedia/commons/f/f0/Maggie_Siff_at_the_premiere_of_Push_%28cropped%29.jpg    588
2156    https://upload.wikimedia.org/wikipedia/commons/1/1c/Clark_Johnson.jpg    589
2158    https://upload.wikimedia.org/wikipedia/commons/1/1a/Maile_Flanagan_by_Gage_Skidmore.jpg    590
2160    https://upload.wikimedia.org/wikipedia/commons/4/45/Carrie-Anne_Moss_07_TIFF.jpg    591
2161    https://upload.wikimedia.org/wikipedia/commons/7/7e/Carrie-Anne_Moss_1999.jpg    591
2163    https://upload.wikimedia.org/wikipedia/commons/4/43/KeatonMack.PNG    592
2165    https://upload.wikimedia.org/wikipedia/commons/3/39/Dictator_charlie4.jpg    595
2166    https://upload.wikimedia.org/wikipedia/en/c/cc/Henry_daniell.jpg    595
2171    https://upload.wikimedia.org/wikipedia/en/8/81/VictorArgo.jpg    596
2173    https://upload.wikimedia.org/wikipedia/commons/e/ee/Australiafilm.svg    597
2174    https://upload.wikimedia.org/wikipedia/commons/9/92/Dustin_Clare.jpg    597
2176    https://upload.wikimedia.org/wikipedia/commons/5/5a/Mae_Whitman_March_22%2C_2014_%28cropped%29.jpg    598
2177    https://upload.wikimedia.org/wikipedia/commons/2/27/Mae_Whitman_Paleyfest_2013.jpg    598
2178    https://upload.wikimedia.org/wikipedia/commons/2/2f/Mae_Whitman_by_Gage_Skidmore.jpg    598
2179    https://upload.wikimedia.org/wikipedia/commons/c/c0/Dan_Cohen_Mayor.png    599
2181    https://upload.wikimedia.org/wikipedia/commons/b/b0/Kevin_Eldon_2013.jpg    600
2182    https://upload.wikimedia.org/wikipedia/commons/0/01/Kevin_eldon_levels_adjusted.jpg    600
2183    https://upload.wikimedia.org/wikipedia/commons/9/9b/Bret_McKenzie_Muppets_Most_Wanted_Premiere_%28cropped%29.jpg    601
2188    https://upload.wikimedia.org/wikipedia/commons/f/f3/Flag_of_Rhode_Island.svg    602
2189    https://upload.wikimedia.org/wikipedia/commons/a/a3/George-macready-trailer.jpg    602
2194    https://upload.wikimedia.org/wikipedia/commons/8/88/Megan_Follows.jpg    604
2195    https://upload.wikimedia.org/wikipedia/commons/f/fa/Megan_Follows14.jpg    604
2196    https://upload.wikimedia.org/wikipedia/commons/b/bd/Richard_Belzer.JPG    605
2198    https://upload.wikimedia.org/wikipedia/commons/c/cf/ChristopherWalkenFeb08.jpg    606
2199    https://upload.wikimedia.org/wikipedia/commons/1/18/Christopher_Walken_-_1984.jpg    606
2200    https://upload.wikimedia.org/wikipedia/commons/e/ef/Christopher_Walken_2012.jpg    606
2202    https://upload.wikimedia.org/wikipedia/commons/2/27/Steve_Scott_with_Christopher_Walken.jpg    606
2205    https://upload.wikimedia.org/wikipedia/commons/f/fd/JesseMccartney2013.jpg    608
2206    https://upload.wikimedia.org/wikipedia/commons/8/88/Jesse_McCartney_34_Shankbone_2010_NYC.jpg    608
2207    https://upload.wikimedia.org/wikipedia/commons/8/81/Jesse_McCartney_Paparazzo_Photography_Feb_15_2009.jpg    608
2208    https://upload.wikimedia.org/wikipedia/commons/d/d3/McCartneyPic2.jpg    608
2209    https://upload.wikimedia.org/wikipedia/en/5/58/Padlock-olive.svg    608
2211    https://upload.wikimedia.org/wikipedia/commons/e/e6/Paparazzo_Photography_Jesse_McCartney_2009_04-07.jpg    608
2213    https://upload.wikimedia.org/wikipedia/commons/9/94/Benjamin_McKenzie_2014_%28cropped%29.jpg    610
2217    https://upload.wikimedia.org/wikipedia/commons/c/c3/Dodge_Charger_-_The_Fast_and_the_Furious.JPG    612
2218    https://upload.wikimedia.org/wikipedia/commons/7/71/Fast_Five_Cast_2.jpg    612
2221    https://upload.wikimedia.org/wikipedia/commons/a/a0/VinDieselMarch09.jpg    612
2222    https://upload.wikimedia.org/wikipedia/commons/8/83/Vin_Diesel_by_Gage_Skidmore_2.jpg    612
2223    https://upload.wikimedia.org/wikipedia/commons/9/9c/TomHulce_%28cropped%29.jpg    613
2224    https://upload.wikimedia.org/wikipedia/commons/6/65/Marcozz.jpg    614
2226    https://upload.wikimedia.org/wikipedia/commons/3/39/Jason_Statham_2.jpg    615
2227    https://upload.wikimedia.org/wikipedia/commons/2/20/Jason_Statham_2007.jpg    615
2228    https://upload.wikimedia.org/wikipedia/commons/5/50/Jason_Statham_2014.jpg    615
2232    https://upload.wikimedia.org/wikipedia/commons/0/0e/Character_comedian_charles_e_grapewin.gif    616
2235    https://upload.wikimedia.org/wikipedia/commons/d/d8/AldoGiuffre.jpg    617
2238    https://upload.wikimedia.org/wikipedia/commons/e/e4/January_Jones_%281%29.jpg    619
2242    https://upload.wikimedia.org/wikipedia/commons/a/a1/Nicole_da_Silva_2013.jpg    622
2245    https://upload.wikimedia.org/wikipedia/commons/e/ed/Frances_McDormand_2015_%28cropped%29.jpg    623
2246    https://upload.wikimedia.org/wikipedia/commons/4/46/All_in_the_Family_cast_1976.JPG    624
2248    https://upload.wikimedia.org/wikipedia/commons/7/74/Sally_Struthers.jpg    624
2250    https://upload.wikimedia.org/wikipedia/commons/7/74/Jemaine_Clement.jpg    625
2252    https://upload.wikimedia.org/wikipedia/commons/0/04/Burnie_Burns%27_2014_VidCon_Keynote_-_cropped.jpg    626
2253    https://upload.wikimedia.org/wikipedia/commons/5/58/Burnie_Burns%2C_Media_Magnate_2.0_%282548205281%29.jpg    626
2257    https://upload.wikimedia.org/wikipedia/commons/8/8e/RupaliGanguly.jpg    627
2259    https://upload.wikimedia.org/wikipedia/commons/1/11/Lee_Tergesen.jpg    628
2261    https://upload.wikimedia.org/wikipedia/commons/1/1e/Jack_Hawkins_Allan_Warren.jpg    629
2262    https://upload.wikimedia.org/wikipedia/commons/9/9e/Jack_Hawkins_signature_Dunia_Film_15_Jan_1954_vector.svg    629
2264    https://upload.wikimedia.org/wikipedia/commons/5/5b/CaCee_Cobb_Donald_Faison_Shankbone_2010_NYC.jpg    631
2266    https://upload.wikimedia.org/wikipedia/commons/3/33/Donald_Faison.jpg    631
2268    https://upload.wikimedia.org/wikipedia/commons/7/76/Ingmar_Bergman_and_Ingrid_Thulin_-Tystnaden.jpg    632
2269    https://upload.wikimedia.org/wikipedia/commons/6/65/Ingrid_Thulin_1926-2004.jpg    632
2271    https://upload.wikimedia.org/wikipedia/commons/2/2c/Nathan_Stewart_Jarrett.jpg    633
2272    https://upload.wikimedia.org/wikipedia/commons/5/53/The_Children%27s_Monologues_cast_%282010%29.jpg    633
2275    https://upload.wikimedia.org/wikipedia/commons/a/ac/VictorSjostrom.jpg    634
2276    https://upload.wikimedia.org/wikipedia/commons/8/82/Cary_Elwes_September_2015.jpg    635
2280    https://upload.wikimedia.org/wikipedia/commons/7/71/Melanie_Lynskey_at_the_premiere_of_The_Meddler%2C_2015_Toronto_Film_Festival_-a.jpg    636
2281    https://upload.wikimedia.org/wikipedia/commons/c/cb/Citizen-Kane-Collins-Welles.jpg    637
2282    https://upload.wikimedia.org/wikipedia/commons/c/cf/Citizen_Kane-Dorothy_Comingore.JPG    637
2283    https://upload.wikimedia.org/wikipedia/commons/e/e8/Citizen_Kane-Dorothy_Comingore2.JPG    637
2286    https://upload.wikimedia.org/wikipedia/commons/1/1e/Bruce_Dern_Cannes_2013.jpg    638
2287    https://upload.wikimedia.org/wikipedia/commons/8/83/Bruce_Dern_by_Gage_Skidmore.jpg    638
2290    https://upload.wikimedia.org/wikipedia/commons/e/e9/Gustaf_Skarsg%C3%A5rd_2013_%28cropped%29.jpg    639
2294    https://upload.wikimedia.org/wikipedia/en/1/1f/RKR_wiki_pic.jpg    643
2296    https://upload.wikimedia.org/wikipedia/commons/d/d5/Liev_Schreiber_2012.jpg    644
2297    https://upload.wikimedia.org/wikipedia/commons/6/64/Naomi_Watts%2C_Liev_Schreiber_2012.jpg    644
2298    https://upload.wikimedia.org/wikipedia/commons/c/c8/XMenOriginsWolverineCastConfettiPremiereApr09.jpg    644
2299    https://upload.wikimedia.org/wikipedia/commons/7/70/Imelda_Staunton_%282011%29.jpg    645
2301    https://upload.wikimedia.org/wikipedia/commons/0/01/Wes_Bentley_The_Hunger_Games_premiere.jpg    646
2303    https://upload.wikimedia.org/wikipedia/commons/2/26/Hail-Bacchus_Val_Kilmer.jpg    647
2304    https://upload.wikimedia.org/wikipedia/commons/3/3c/Val-Kilmer.jpg    647
2305    https://upload.wikimedia.org/wikipedia/commons/2/22/Val_Kilmer_Cannes.jpg    647
2306    https://upload.wikimedia.org/wikipedia/commons/4/44/Val_Kilmer_and_50_Cent_%28cropped%29.jpg    647
2308    https://upload.wikimedia.org/wikipedia/commons/4/40/Giustino_Durano_1955.jpg    648
2312    https://upload.wikimedia.org/wikipedia/commons/3/35/Foreign_Correspondent_trailer_12_Sanders_crop.jpg    649
2313    https://upload.wikimedia.org/wikipedia/commons/6/64/George_Sanders_Allan_Warren.jpg    649
2314    https://upload.wikimedia.org/wikipedia/commons/f/f4/George_Sanders_in_All_About_Eve_trailer.jpg    649
2315    https://upload.wikimedia.org/wikipedia/commons/c/c0/George_Sanders_in_The_Picture_of_Dorian_Gray_trailer.jpg    649
2316    https://upload.wikimedia.org/wikipedia/commons/d/df/George_sanders_black_swan_2.jpg    649
2320    https://upload.wikimedia.org/wikipedia/commons/a/aa/Chris_Pratt_-_Guardians_of_the_Galaxy_premiere_-_July_2014_%28cropped%29.jpg    652
2321    https://upload.wikimedia.org/wikipedia/commons/1/17/Chris_Pratt_2009.jpg    652
2322    https://upload.wikimedia.org/wikipedia/commons/5/54/Chris_Pratt_and_Anna_Faris.jpg    652
2323    https://upload.wikimedia.org/wikipedia/commons/8/89/Chris_Pratt_by_Gage_Skidmore.jpg    652
2326    https://upload.wikimedia.org/wikipedia/en/1/12/Flag_of_Poland.svg    653
2327    https://upload.wikimedia.org/wikipedia/commons/c/ce/Olaf_Lubaszenko_by_Foksal.jpg    653
2329    https://upload.wikimedia.org/wikipedia/commons/7/75/Sandra_Milo_1956.jpg    654
2330    https://upload.wikimedia.org/wikipedia/commons/6/6e/Sandra_Milo_1965.jpg    654
2331    https://upload.wikimedia.org/wikipedia/commons/4/4f/Lauren_Ambrose_2000.jpg    655
2332    https://upload.wikimedia.org/wikipedia/commons/7/7a/Ann_Dowd_Deauville_2012.jpg    657
2333    https://upload.wikimedia.org/wikipedia/commons/f/fe/Chandler_Riggs_by_Gage_Skidmore_2.jpg    658
2338    https://upload.wikimedia.org/wikipedia/commons/5/56/Walter_Connolly_in_Bridal_Suite_trailer.jpg    659
2342    https://upload.wikimedia.org/wikipedia/commons/3/3e/KeiraKnightleyByAndreaRaffin2011.jpg    660
2343    https://upload.wikimedia.org/wikipedia/commons/1/14/Keira_Knightley_07.jpg    660
2344    https://upload.wikimedia.org/wikipedia/commons/6/66/Keira_Knightley_2012.jpg    660
2345    https://upload.wikimedia.org/wikipedia/commons/d/d3/Keira_Knightley_at_BAFTA_Film_Awards_2008.jpg    660
2347    https://upload.wikimedia.org/wikipedia/commons/7/76/2007_BritCar24Hours_TopGearBMW.jpg    661
2348    https://upload.wikimedia.org/wikipedia/commons/4/4c/Bollitree_castle_-_geograph.org.uk_-_1684265.jpg    661
2350    https://upload.wikimedia.org/wikipedia/commons/1/1b/Richard_Hammond.jpg    661
2351    https://upload.wikimedia.org/wikipedia/en/4/42/TopGearVampireCrash.jpg    661
2353    https://upload.wikimedia.org/wikipedia/commons/d/d1/Biutiful_Cannes_2010.jpg    662
2355    https://upload.wikimedia.org/wikipedia/commons/f/fd/JavierBardemHWOFNov2012.jpg    662
2356    https://upload.wikimedia.org/wikipedia/commons/d/d4/Javier_Bardem_2011_AA.jpg    662
2357    https://upload.wikimedia.org/wikipedia/commons/5/5c/Javier_Bardem_Coen_brothers.jpg    662
2358    https://upload.wikimedia.org/wikipedia/commons/9/93/Jacob_Pitts_2012.jpg    663
2361    https://upload.wikimedia.org/wikipedia/commons/c/c9/StephenMerchantAltNov09.jpg    664
2362    https://upload.wikimedia.org/wikipedia/commons/4/44/StephenMerchantJan2011.jpg    664
2363    https://upload.wikimedia.org/wikipedia/commons/0/0d/2010_Space_Conference_group_portrait.jpg    665
2364    https://upload.wikimedia.org/wikipedia/commons/9/96/Bill_Nye%2C_Barack_Obama_and_Neil_deGrasse_Tyson_selfie_2014.jpg    665
2366    https://upload.wikimedia.org/wikipedia/commons/1/11/Dr_Neil_deGrasse_Tyson_in_Sydney.JPG    665
2367    https://upload.wikimedia.org/wikipedia/commons/5/5a/NGC6543.jpg    665
2368    https://upload.wikimedia.org/wikipedia/commons/8/8d/Neil_deGrasse_Tyson.jpg    665
2369    https://upload.wikimedia.org/wikipedia/commons/1/1c/Neil_deGrasse_Tyson_and_Richard_Dawkins_at_Howard_University_%282%29_-_September_28%2C_2010.jpg    665
2370    https://upload.wikimedia.org/wikipedia/commons/0/07/Neil_deGrasse_Tyson_signature.svg    665
2372    https://upload.wikimedia.org/wikipedia/commons/c/cf/Tyson_%26_Kepler_team.jpg    665
2374    https://upload.wikimedia.org/wikipedia/commons/e/e7/Marisa_Berenson.jpg    666
2375    https://upload.wikimedia.org/wikipedia/commons/b/bc/Angela_Cannings.jpg    667
2376    https://upload.wikimedia.org/wikipedia/commons/3/39/NovelloTheatre.png    667
2377    https://upload.wikimedia.org/wikipedia/commons/b/b0/Peter_Salmon_at_Nations_%26_Regions_Media_Conference_cropped.jpg    667
2378    https://upload.wikimedia.org/wikipedia/commons/d/dd/Rovers_Return_tour.jpg    667
2379    https://upload.wikimedia.org/wikipedia/commons/4/4f/Sarah_Lancashire_2013.jpg    667
2383    https://upload.wikimedia.org/wikipedia/commons/a/a8/River_Phoenix_-_hi_res_scan_%28cropped%29.jpg    668
2384    https://upload.wikimedia.org/wikipedia/commons/4/4b/River_Phoenix_and_Martha_Plimpton.jpg    668
2385    https://upload.wikimedia.org/wikipedia/commons/9/92/Viper_Room.jpg    668
2387    https://upload.wikimedia.org/wikipedia/en/c/ca/Young_Indiana_Jones_by_River_Phoenix.jpg    668
2389    https://upload.wikimedia.org/wikipedia/commons/3/3b/Tom_Hollander_1.JPG    669
2391    https://upload.wikimedia.org/wikipedia/commons/b/bf/Gentlemen_of_nerve.jpg    670
2392    https://upload.wikimedia.org/wikipedia/commons/6/63/Getting_acquainted.jpg    670
2393    https://upload.wikimedia.org/wikipedia/commons/d/d5/Mack_Swain_1920.jpg    670
2394    https://upload.wikimedia.org/wikipedia/commons/d/d6/Ayako_Kawasumi_20060805_Otakon_02.jpg    671
2399    https://upload.wikimedia.org/wikipedia/commons/3/30/RichardJenkins2AAFeb09.jpg    672
2400    https://upload.wikimedia.org/wikipedia/commons/f/fb/RichardJenkinsApr2011.jpg    672
2401    https://upload.wikimedia.org/wikipedia/commons/2/29/AndyEllis2011.jpg    673
2402    https://upload.wikimedia.org/wikipedia/commons/5/52/Acap.svg    674
2404    https://upload.wikimedia.org/wikipedia/commons/2/2c/Shelley_Duvall_Bernice_Bobs_Her_Hair_1977.JPG    674
2407    https://upload.wikimedia.org/wikipedia/commons/2/28/SarahChalkeDec08.jpg    675
2410    https://upload.wikimedia.org/wikipedia/commons/3/3d/Nick_Moran_SMdL_20101008_41515.jpg    678
2412    https://upload.wikimedia.org/wikipedia/commons/d/dc/MariaBelloSept2013TIFF.jpg    679
2413    https://upload.wikimedia.org/wikipedia/commons/0/02/Maria_Bello_2010.jpg    679
2414    https://upload.wikimedia.org/wikipedia/commons/e/e7/2012_Powerful_Women_In_Pop_Culture_%286%29.png    680
2415    https://upload.wikimedia.org/wikipedia/commons/b/bf/Anna_Torv_by_Gage_Skidmore.jpg    680
2418    https://upload.wikimedia.org/wikipedia/commons/6/6b/Dorothy-Lamour-still.JPG    681
2420    https://upload.wikimedia.org/wikipedia/commons/5/5b/Ray_Milland_Markham_1959.JPG    681
2421    https://upload.wikimedia.org/wikipedia/commons/0/02/Ray_Milland_in_The_Lost_Weekend_with_El_in_Background.jpg    681
2422    https://upload.wikimedia.org/wikipedia/commons/1/18/Reap_the_Wild_Wind_trailer_screenshot.jpg    681
2426    https://upload.wikimedia.org/wikipedia/commons/b/b7/Henry_Bergman_1917.jpg    685
2429    https://upload.wikimedia.org/wikipedia/commons/c/c2/Us-theatre-actor.svg    685
2434    https://upload.wikimedia.org/wikipedia/commons/c/cf/Levar_Burton%2C_Disney_Social_Media_Moms_Conference_2014%2C_2-crop.jpg    686
2435    https://upload.wikimedia.org/wikipedia/commons/e/eb/Levar_burton.jpg    686
2436    https://upload.wikimedia.org/wikipedia/commons/4/42/Tipper_Gore.jpg    686
2437    https://upload.wikimedia.org/wikipedia/commons/9/9b/Erland_Josephson_1965.jpg    687
2439    https://upload.wikimedia.org/wikipedia/commons/6/69/Hayden-Asphalt.jpg    688
2442    https://upload.wikimedia.org/wikipedia/commons/7/7b/Bonnie_Bedelia_1973.JPG    690
2443    https://upload.wikimedia.org/wikipedia/commons/d/d9/Bonnie_Bedelia_1974.JPG    690
2445    https://upload.wikimedia.org/wikipedia/commons/7/71/82nd_Academy_Awards%2C_Tyler_Perry_-_army_mil-66455-2010-03-09-180359_%28cropped%29.jpg    691
2456    https://upload.wikimedia.org/wikipedia/commons/6/66/Louis_Calhern_in_Woman_Wanted_trailer.jpg    692
2459    https://upload.wikimedia.org/wikipedia/commons/6/64/The_Blot_01_1921.jpg    692
2461    https://upload.wikimedia.org/wikipedia/commons/0/0c/Julie_Kavner.jpg    693
2462    https://upload.wikimedia.org/wikipedia/commons/8/8f/Julie_Kavner_1974.JPG    693
2469    https://upload.wikimedia.org/wikipedia/commons/c/cf/JamieFarrHWOFSept2012.jpg    694
2475    https://upload.wikimedia.org/wikipedia/commons/b/b3/Sebastian_Koch_2011.jpg    695
2477    https://upload.wikimedia.org/wikipedia/commons/f/fe/Leo_Gullotta78.png    698
2479    https://upload.wikimedia.org/wikipedia/commons/7/7c/Mads_Mikkelsen_Cannes_2013.JPG    699
2480    https://upload.wikimedia.org/wikipedia/commons/f/f2/Mads_Mikkelsen_Cannes_2013_2.jpg    699
2483    https://upload.wikimedia.org/wikipedia/commons/2/23/E_G_Marshall_The_Bold_Ones_1970.JPG    700
2492    https://upload.wikimedia.org/wikipedia/commons/1/1c/KeenanWynnHuckstersTrailer1947.JPG    701
2493    https://upload.wikimedia.org/wikipedia/commons/7/70/Keenan_Wynn_-_publicity.JPG    701
2494    https://upload.wikimedia.org/wikipedia/commons/2/2b/Keenan_Wynn_in_Annie_Get_Your_Gun_trailer.jpg    701
2495    https://upload.wikimedia.org/wikipedia/commons/8/8c/Keenan_Wynn_in_Tennessee_Champ_trailer.jpg    701
2497    https://upload.wikimedia.org/wikipedia/commons/b/b9/Jeremy_Clarkson.jpg    702
2498    https://upload.wikimedia.org/wikipedia/commons/5/56/Lamborghini_Gallardo_Spyder_%284061512755%29.jpg    702
2499    https://upload.wikimedia.org/wikipedia/commons/8/82/Lexus_LFA_001.JPG    702
2501    https://upload.wikimedia.org/wikipedia/commons/f/fd/Rover_75a.jpg    702
2506    https://upload.wikimedia.org/wikipedia/commons/4/4f/Famke_Janssen_at_ATX_2014_%28cropped%29.jpg    703
2507    https://upload.wikimedia.org/wikipedia/commons/9/90/Famke_Janssen_by_Gage_Skidmore_%282%29_%28cropped%29.jpg    703
2508    https://upload.wikimedia.org/wikipedia/commons/3/33/FamkeeJanssenOct08.jpg    703
2510    https://upload.wikimedia.org/wikipedia/commons/6/68/Bernadette_Peters_on_All_in_The_Family.JPG    704
2513    https://upload.wikimedia.org/wikipedia/commons/d/de/Rob_Reiner%2C_Feb._1%2C_2013_%28cropped%29.jpg    704
2514    https://upload.wikimedia.org/wikipedia/commons/0/0b/Rob_Reiner_at_Howard_Dean_rally.JPG    704
2515    https://upload.wikimedia.org/wikipedia/commons/6/6d/Rob_Reiner_at_the_1988_Emmy_Awards_cropped.jpg    704
2516    https://upload.wikimedia.org/wikipedia/commons/8/8e/Octavia_Spencer.jpg    705
2518    https://upload.wikimedia.org/wikipedia/commons/8/89/Scott_Grimes_by_Gage_Skidmore_2.jpg    706
2519    https://upload.wikimedia.org/wikipedia/commons/6/65/Maribel_Verd%C3%BA_-_Seminci_2011_%282%29.jpg    707
2521    https://upload.wikimedia.org/wikipedia/commons/6/63/Antony_Starr_%28cropped%29.jpg    708
2522    https://upload.wikimedia.org/wikipedia/en/0/0d/Antony_starr_shortland_street.jpg    708
2524    https://upload.wikimedia.org/wikipedia/commons/d/de/TIM_ROBBINS%28PressConference%29.jpg    709
2525    https://upload.wikimedia.org/wikipedia/commons/1/18/TimRobbinsTIFFSept2012.jpg    709
2526    https://upload.wikimedia.org/wikipedia/commons/a/ac/Will_Poulter_2013.jpg    710
2527    https://upload.wikimedia.org/wikipedia/commons/8/8a/Will_Poulter_2016_3.jpg    710
2530    https://upload.wikimedia.org/wikipedia/commons/c/c2/Chris_Parnell_by_David_Shankbone.jpg    712
2532    https://upload.wikimedia.org/wikipedia/commons/5/5e/Richard_Ayoade_at_Soho_Hotel_%28cropped%29.jpg    713
2533    https://upload.wikimedia.org/wikipedia/commons/0/00/Alison_Doody_2.jpg    714
2534    https://upload.wikimedia.org/wikipedia/commons/9/92/Angela_Lansbury.jpg    715
2535    https://upload.wikimedia.org/wikipedia/commons/f/fa/Angela_Lansbury_%288356239174%29.jpg    715
2536    https://upload.wikimedia.org/wikipedia/commons/c/c0/Angela_Lansbury_NYWTS.jpg    715
2537    https://upload.wikimedia.org/wikipedia/commons/8/86/Angela_Lansbury_in_Deuce_2007.jpg    715
2538    https://upload.wikimedia.org/wikipedia/commons/e/e0/Angela_Lansbury_in_The_Picture_of_Dorian_Gray_trailer.jpg    715
2539    https://upload.wikimedia.org/wikipedia/commons/1/17/Angela_Lansbury_in_Till_the_Clouds_Roll_By.jpg    715
2542    https://upload.wikimedia.org/wikipedia/commons/1/16/MTLogo2.png    715
2546    https://upload.wikimedia.org/wikipedia/commons/7/70/%D8%B4%D9%87%D8%A7%D8%A8_%D8%AD%D8%B3%DB%8C%D9%86%DB%8C.jpg    717
2547    https://upload.wikimedia.org/wikipedia/commons/8/80/5INF_DUI.png    718
2549    https://upload.wikimedia.org/wikipedia/commons/1/13/Bob_Hope_James_Garner_1961.JPG    718
2554    https://upload.wikimedia.org/wikipedia/commons/b/bc/James_Garner.jpg    718
2555    https://upload.wikimedia.org/wikipedia/commons/d/dc/James_Garner_Bret_Maverick.JPG    718
2556    https://upload.wikimedia.org/wikipedia/commons/4/4c/James_Garner_Bret_Maverick_Jack_Kelly_Bart_Maverick.JPG    718
2558    https://upload.wikimedia.org/wikipedia/commons/1/18/Rupert_Graves_2010_cropped.jpg    719
2561    https://upload.wikimedia.org/wikipedia/commons/1/11/Gunnel_Lindblom%2C_Bokm%C3%A4ssan_2013_2_%28crop%29.jpg    721
2562    https://upload.wikimedia.org/wikipedia/commons/3/3c/Gunnel_lindblom.jpg    721
2568    https://upload.wikimedia.org/wikipedia/commons/d/d3/Kapoor_TReloaded-08.jpg    723
2569    https://upload.wikimedia.org/wikipedia/commons/5/51/Kapoor_Women.jpg    723
2570    https://upload.wikimedia.org/wikipedia/commons/c/c5/Kareena_%26_Shahid_at_36CT_audio_launch.jpg    723
2571    https://upload.wikimedia.org/wikipedia/commons/8/8e/Kareena_Heroine_2.jpg    723
2572    https://upload.wikimedia.org/wikipedia/commons/4/41/Kareena_Kapoor_Khan.jpg    723
2573    https://upload.wikimedia.org/wikipedia/commons/b/b4/Kareena_Walk-of-the-Stars.jpg    723
2574    https://upload.wikimedia.org/wikipedia/commons/1/1b/Kareena_at_K3G_book_launch.jpg    723
2575    https://upload.wikimedia.org/wikipedia/commons/1/12/Ahmet_Kural.jpg    724
2578    https://upload.wikimedia.org/wikipedia/commons/e/ef/Matthew_Goode_2014.jpg    725
2579    https://upload.wikimedia.org/wikipedia/commons/8/82/Stoker_cast_and_crew_at_Sundance_Festival.jpg    725
2581    https://upload.wikimedia.org/wikipedia/commons/6/68/Rose_Marie.jpg    726
2582    https://upload.wikimedia.org/wikipedia/commons/a/a7/Rose_Marie_1970.JPG    726
2583    https://upload.wikimedia.org/wikipedia/commons/4/4b/Olivia_Williams_%28Berlin_Film_Festival_2010%29_2.jpg    727
2584    https://upload.wikimedia.org/wikipedia/commons/8/81/Olivia_Williams_%28Berlin_Film_Festival_2010%29_cropped.jpg    727
2585    https://upload.wikimedia.org/wikipedia/commons/b/b6/Olivia_Williams_July_9%2C_2014_%28cropped%29.jpg    727
2588    https://upload.wikimedia.org/wikipedia/commons/5/57/MARIA_DOYLE_KENNEDY_1.jpg    729
2590    https://upload.wikimedia.org/wikipedia/commons/6/6b/Bonnie_and_Alice_Hunt_at_2010_Daytime_Emmy_Awards.jpg    731
2591    https://upload.wikimedia.org/wikipedia/commons/5/57/Bonniehunt06.jpg    731
2593    https://upload.wikimedia.org/wikipedia/commons/0/06/Hakeem_Kae-Kazim.jpg    732
2594    https://upload.wikimedia.org/wikipedia/commons/a/a8/UKtv.png    732
2596    https://upload.wikimedia.org/wikipedia/commons/a/a8/Teresa_Wright_1942.jpg    733
2597    https://upload.wikimedia.org/wikipedia/commons/3/3c/Teresa_Wright_and_Joseph_Cotten_in_Shadow_of_a_Doubt_trailer.png    733
2598    https://upload.wikimedia.org/wikipedia/commons/e/e6/The_Capture_%281950%29_1.jpg    733
2600    https://upload.wikimedia.org/wikipedia/commons/2/27/Daws_Butler_%281976%29.jpg    734
2602    https://upload.wikimedia.org/wikipedia/commons/c/c4/Nancy_Cartwright.jpg    734
2603    https://upload.wikimedia.org/wikipedia/commons/6/64/Nancy_Cartwright_2012.jpg    734
2607    https://upload.wikimedia.org/wikipedia/commons/c/ca/The_Simpsons_star.jpg    734
2609    https://upload.wikimedia.org/wikipedia/commons/4/4b/1stBearFlag.svg    736
2610    https://upload.wikimedia.org/wikipedia/commons/c/c3/Arnold-Cheney.jpg    736
2611    https://upload.wikimedia.org/wikipedia/commons/f/fc/Arnold_Schwarzenegger%27s_star_on_the_Hollywood_Walk_of_Fame.jpeg    736
2612    https://upload.wikimedia.org/wikipedia/commons/e/ed/Arnold_Schwarzenegger_2003.jpg    736
2613    https://upload.wikimedia.org/wikipedia/commons/b/bb/Arnold_Schwarzenegger_2004-01-30.jpg    736
2614    https://upload.wikimedia.org/wikipedia/commons/d/d4/Arnold_Schwarzenegger_February_2015.jpg    736
2615    https://upload.wikimedia.org/wikipedia/commons/0/0b/Arnold_Schwarzenegger_Signature.svg    736
2616    https://upload.wikimedia.org/wikipedia/commons/e/e2/Arnold_Schwarzenegger_and_Karyn_Marshall.JPG    736
2624    https://upload.wikimedia.org/wikipedia/commons/a/a4/Donnie_Yen_2012.jpg    741
2625    https://upload.wikimedia.org/wikipedia/commons/9/93/Donnie_Yen_in_Seoul.jpg    741
2626    https://upload.wikimedia.org/wikipedia/commons/1/11/Aubrey_Plaza_2012_Shankbone.JPG    742
2627    https://upload.wikimedia.org/wikipedia/commons/a/a8/Aubrey_Plaza_by_Gage_Skidmore.jpg    742
2632    https://upload.wikimedia.org/wikipedia/commons/1/11/RobertDeNiroMattDamonBerlinFeb07.jpg    744
2633    https://upload.wikimedia.org/wikipedia/commons/4/44/RobertDeNiroTCLChineseTheatreJan2013.jpg    744
2634    https://upload.wikimedia.org/wikipedia/commons/b/bf/Robert_De_Niro_2011_2.JPG    744
2635    https://upload.wikimedia.org/wikipedia/commons/c/cd/Robert_De_Niro_Cannes_2011.jpg    744
2636    https://upload.wikimedia.org/wikipedia/commons/f/f1/Robert_De_Niro_TFF_2011_Shankbone.JPG    744
2645    https://upload.wikimedia.org/wikipedia/commons/4/4d/Flag_of_Nebraska.svg    745
2648    https://upload.wikimedia.org/wikipedia/commons/6/65/Henry_Fonda_-_USN.jpg    745
2652    https://upload.wikimedia.org/wikipedia/commons/9/91/RayLiottaTIFFSept2012.jpg    748
2653    https://upload.wikimedia.org/wikipedia/commons/6/6d/Ray_Liotta_Deauville_2014_2.jpg    748
2655    https://upload.wikimedia.org/wikipedia/commons/a/a1/Harry_C._Myers_and_Rosemary_Theby.jpg    750
2656    https://upload.wikimedia.org/wikipedia/commons/a/a1/Harry_Myers.jpg    750
2657    https://upload.wikimedia.org/wikipedia/commons/8/88/Harry_Myers_signed_as_musketeer.jpg    750
2658    https://upload.wikimedia.org/wikipedia/commons/5/56/Harry_c_myers_front_signed.jpg    750
2659    https://upload.wikimedia.org/wikipedia/commons/8/83/Harry_c_myers_signed_back.jpg    750
2660    https://upload.wikimedia.org/wikipedia/commons/f/fa/The_Connecting_Bath.jpg    750
2662    https://upload.wikimedia.org/wikipedia/commons/7/79/John_Lithgow.jpg    751
2663    https://upload.wikimedia.org/wikipedia/commons/c/c2/John_Lithgow_7_by_David_Shankbone.jpg    751
2664    https://upload.wikimedia.org/wikipedia/commons/f/f4/John_Lithgow_8_by_David_Shankbone.jpg    751
2666    https://upload.wikimedia.org/wikipedia/commons/8/8c/Jack_Oakie_Tina_Louise_The_New_Breed_1961.JPG    752
2667    https://upload.wikimedia.org/wikipedia/commons/2/2b/Jack_oakie_signed_as_benito.jpg    752
2668    https://upload.wikimedia.org/wikipedia/commons/6/67/AnnetteBeningSept2013TIFF.jpg    753
2671    https://upload.wikimedia.org/wikipedia/commons/0/0f/Jessie_Royce_Landis.jpg    754
2674    https://upload.wikimedia.org/wikipedia/commons/6/6d/Gary_Lockwood_Tuesday_Weld_Bus_Stop_1961.jpg    755
2675    https://upload.wikimedia.org/wikipedia/commons/b/b4/Gary_Lockwood_WonderCon_2009_cropped.jpg    755
2676    https://upload.wikimedia.org/wikipedia/commons/c/c3/Gary_Lockwood_in_1962.jpg    755
2679    https://upload.wikimedia.org/wikipedia/commons/3/30/Jean_Reno_2012.jpg    759
2680    https://upload.wikimedia.org/wikipedia/commons/5/5c/Zofia_Borucka_Jean_Reno_Shankbone_2010_NYC.jpg    759
2683    https://upload.wikimedia.org/wikipedia/commons/0/04/EdAsnerHWOFMay2013.jpg    760
2684    https://upload.wikimedia.org/wikipedia/commons/1/18/Ed_Asner_-_1985.jpg    760
2685    https://upload.wikimedia.org/wikipedia/commons/b/b3/Ed_Asner_by_Gage_Skidmore.jpg    760
2689    https://upload.wikimedia.org/wikipedia/commons/0/07/Ray_%26_Gwendolyn_Bolger%27s_grave.JPG    762
2690    https://upload.wikimedia.org/wikipedia/commons/3/38/Ray_Bolger_1942.jpg    762
2691    https://upload.wikimedia.org/wikipedia/commons/f/fe/Ray_Bolger_1963.JPG    762
2692    https://upload.wikimedia.org/wikipedia/commons/e/e6/The_Wizard_of_Oz_Ray_Bolger_1939.jpg    762
2693    https://upload.wikimedia.org/wikipedia/commons/a/a5/The_Wizard_of_Oz_Ray_Bolger_Jack_Haley_Margaret_Hamilton_Reunited_1970_No_2.jpg    762
2695    https://upload.wikimedia.org/wikipedia/commons/a/af/Volker_Bruch.jpg    764
2697    https://upload.wikimedia.org/wikipedia/commons/a/aa/Margot_Robbie_%28cropped%29.jpg    765
2698    https://upload.wikimedia.org/wikipedia/commons/0/00/Margot_Robbie_by_Gage_Skidmore.jpg    765
2700    https://upload.wikimedia.org/wikipedia/commons/e/e8/All_Saints%2C_Margaret_Street_Church%2C_London%2C_UK_-_Diliff.jpg    768
2703    https://upload.wikimedia.org/wikipedia/commons/0/0d/Foreign_Correspondents_Visit_British_Film_Studios%2C_Denham%2C_Buckinghamshire%2C_England%2C_UK%2C_1943_D16277.jpg    768
2704    https://upload.wikimedia.org/wikipedia/commons/a/a3/Jill_Esmond_and_Laurence_Olivier_1932.jpg    768
2705    https://upload.wikimedia.org/wikipedia/commons/e/e4/Laurence_Olivier%2C_South_Bank_SE1_-_geograph.org.uk_-_1268529.jpg    768
2706    https://upload.wikimedia.org/wikipedia/commons/8/87/Laurence_Olivier_Allan_Warren.jpg    768
2707    https://upload.wikimedia.org/wikipedia/commons/7/7d/Laurence_Olivier_Joan_Fontaine_Rebecca.JPG    768
2708    https://upload.wikimedia.org/wikipedia/commons/9/92/Laurence_Olivier_Merle_Oberon_Wuthering_Heights.jpg    768
2709    https://upload.wikimedia.org/wikipedia/commons/a/ad/Laurence_Olivier_and_Joan_Plowright_1960.jpg    768
2712    https://upload.wikimedia.org/wikipedia/commons/3/39/EmmaStoneSept09.jpg    770
2713    https://upload.wikimedia.org/wikipedia/commons/2/26/Emma_Stone%2C_Andrew_Garfield_2014_%28cropped%29.jpg    770
2714    https://upload.wikimedia.org/wikipedia/commons/6/66/Emma_Stone_2011_2.jpg    770
2715    https://upload.wikimedia.org/wikipedia/commons/f/fd/Emma_Stone_2014.jpg    770
2716    https://upload.wikimedia.org/wikipedia/commons/9/94/Emma_Stone_by_Gage_Skidmore.jpg    770
2724    https://upload.wikimedia.org/wikipedia/commons/d/db/Patrick_Stewart_2012.jpg    771
2725    https://upload.wikimedia.org/wikipedia/commons/1/1e/Patrick_Stewart_Met_Opera_2010_Shankbone.jpg    771
2726    https://upload.wikimedia.org/wikipedia/commons/e/e6/Patrick_Stewart_TIFF_2015.jpg    771
2729    https://upload.wikimedia.org/wikipedia/commons/c/cb/Eddie_Albert.jpg    772
2730    https://upload.wikimedia.org/wikipedia/commons/4/42/Eddie_Albert_Robert_Wagner_Switch_1975_%28cropped%29.JPG    772
2731    https://upload.wikimedia.org/wikipedia/commons/3/31/Eddie_Albert_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    772
2732    https://upload.wikimedia.org/wikipedia/commons/0/0c/First_television_play_NBC_1936.jpg    772
2739    https://upload.wikimedia.org/wikipedia/commons/5/5f/Diane_Lane_%28Berlin_Film_Festival_2011%29_2.jpg    773
2740    https://upload.wikimedia.org/wikipedia/commons/9/99/Diane_Lane_at_the_1989_Emmy_Awards_crop.jpg    773
2743    https://upload.wikimedia.org/wikipedia/commons/3/33/Emma-Rossum_2011-03-08_photoby_Adam-Bielawski.jpg    774
2744    https://upload.wikimedia.org/wikipedia/commons/6/62/Emmy_Rossum_2011.jpg    774
2745    https://upload.wikimedia.org/wikipedia/commons/d/db/Emmy_Rossum_at_2010_Independent_Spirit_Awards.jpg    774
2749    https://upload.wikimedia.org/wikipedia/commons/8/83/Steven_Avery_1985.jpg    775
2753    https://upload.wikimedia.org/wikipedia/commons/2/20/Gable-Leigh_GWTW-b.jpg    777
2756    https://upload.wikimedia.org/wikipedia/commons/6/6c/Vivien_Leigh_1958.jpg    777
2757    https://upload.wikimedia.org/wikipedia/commons/d/d7/Vivien_Leigh_Gone_Wind_Restored.jpg    777
2758    https://upload.wikimedia.org/wikipedia/en/b/b6/Vivien_Leigh_Scarlet.jpg    777
2759    https://upload.wikimedia.org/wikipedia/commons/5/53/Vivien_Leigh_and_Laurence_Olivier%2C_Broadbeach%2C_Australia%2C_1948.jpg    777
2760    https://upload.wikimedia.org/wikipedia/commons/f/f3/Vivien_Leigh_in_Streetcar_Named_Desire_trailer_1.jpg    777
2762    https://upload.wikimedia.org/wikipedia/commons/6/63/Anurabh-Kumar.jpg    779
2765    https://upload.wikimedia.org/wikipedia/commons/c/cb/Mitch_Pileggi_Wellington_2013.jpg    781
2768    https://upload.wikimedia.org/wikipedia/commons/f/fc/Bob_Hastings.jpg    783
2771    https://upload.wikimedia.org/wikipedia/commons/2/2b/Broken_Angel_House.jpg    784
2773    https://upload.wikimedia.org/wikipedia/commons/9/96/Dave_Chapelle_Signature.svg    784
2774    https://upload.wikimedia.org/wikipedia/commons/d/d0/Dave_Chapelle_cropped.jpg    784
2779    https://upload.wikimedia.org/wikipedia/commons/c/c9/DavidDuchovny-GillianAnderson2008-cropped.jpg    785
2780    https://upload.wikimedia.org/wikipedia/commons/2/21/David_Duchovny_2011_Shankbone.JPG    785
2781    https://upload.wikimedia.org/wikipedia/commons/b/bb/David_Duchovny_by_Gage_Skidmore.jpg    785
2787    https://upload.wikimedia.org/wikipedia/commons/c/cb/James_Cromwell_2010.jpg    786
2789    https://upload.wikimedia.org/wikipedia/commons/a/ac/The_Rookies_cast_1973.JPG    787
2791    https://upload.wikimedia.org/wikipedia/commons/2/22/Miles_Teller_March_18%2C_2014_%28cropped%29.jpg    788
2792    https://upload.wikimedia.org/wikipedia/commons/b/b5/Miles_Teller_by_Gage_Skidmore.jpg    788
2794    https://upload.wikimedia.org/wikipedia/commons/9/98/Frank_Oz_-_1984.jpg    789
2795    https://upload.wikimedia.org/wikipedia/commons/3/34/Frank_Oz_2012.jpg    789
2797    https://upload.wikimedia.org/wikipedia/commons/9/93/AQ_Zorba_el_Griego.jpg    790
2798    https://upload.wikimedia.org/wikipedia/commons/9/9f/AnthonyQuinnFootPrint.JPG    790
2799    https://upload.wikimedia.org/wikipedia/commons/f/f5/Anthony_Quinn_1988_2.jpg    790
2800    https://upload.wikimedia.org/wikipedia/commons/d/d8/Anthony_Quinn_c1970s.jpg    790
2801    https://upload.wikimedia.org/wikipedia/commons/c/c1/Anthony_Quinn_signed.JPG    790
2804    https://upload.wikimedia.org/wikipedia/commons/6/6a/Viva_Zapata_movie_trailer_screenshot_%2826%29.jpg    790
2807    https://upload.wikimedia.org/wikipedia/commons/a/ad/Barbara_Hutton_May_1931.jpg    793
2808    https://upload.wikimedia.org/wikipedia/commons/3/30/Cary_Grant_2_Allan_Warren.jpg    793
2809    https://upload.wikimedia.org/wikipedia/commons/8/88/Cary_Grant_Statue.jpg    793
2810    https://upload.wikimedia.org/wikipedia/commons/3/3b/Cary_Grant_in_1959.jpg    793
2812    https://upload.wikimedia.org/wikipedia/commons/e/e3/Fairfield_School%2C_Montpelier%2C_Bristol._-_geograph.org.uk_-_198016.jpg    793
2813    https://upload.wikimedia.org/wikipedia/commons/6/6c/His_Girl_Friday_still_2.jpg    793
2815    https://upload.wikimedia.org/wikipedia/commons/c/c2/Mae_West_in_I%27m_No_Angel_2.jpg    793
2816    https://upload.wikimedia.org/wikipedia/commons/2/22/Lou_Antonio_1973.JPG    794
2817    https://upload.wikimedia.org/wikipedia/commons/1/1d/Clive_Owen_%28Berlin_Film_Festival_2009%29.jpg    795
2818    https://upload.wikimedia.org/wikipedia/commons/2/25/Clive_Owen_2006.jpg    795
2819    https://upload.wikimedia.org/wikipedia/commons/0/07/Clive_Owen_TIFF_2011.jpg    795
2821    https://upload.wikimedia.org/wikipedia/commons/e/e6/Shaun_Evans_in_Hello_Goodbye_at_the_Hampstead_Theatre_in_2015.jpg    796
2822    https://upload.wikimedia.org/wikipedia/commons/2/20/Nestroy_2010_%2823%29_Andrea_Eckert.jpg    797
2825    https://upload.wikimedia.org/wikipedia/commons/0/08/Neal_Brennan.jpg    799
2828    https://upload.wikimedia.org/wikipedia/en/9/9c/Paulmeurisse.jpg    802
2829    https://upload.wikimedia.org/wikipedia/commons/1/17/Tombe_Paul_Meurisse.JPG    802
2830    https://upload.wikimedia.org/wikipedia/commons/a/a6/David_Strathairn_%285974348391%29.jpg    803
2831    https://upload.wikimedia.org/wikipedia/commons/c/c1/AdrienneBarbeauJune2011.jpg    804
2835    https://upload.wikimedia.org/wikipedia/commons/4/42/Frederic_Forrest.jpg    805
2838    https://upload.wikimedia.org/wikipedia/commons/d/de/Ceiling-Unlimited-1942.jpg    807
2839    https://upload.wikimedia.org/wikipedia/commons/b/b4/Citizen-Kane-Welles-Coulouris.jpg    807
2840    https://upload.wikimedia.org/wikipedia/commons/3/34/Citizen-Kane-Welles-Podium.jpg    807
2842    https://upload.wikimedia.org/wikipedia/en/3/35/F-for-Fake.jpg    807
2843    https://upload.wikimedia.org/wikipedia/commons/f/f5/Faustus-FTP-Poster.jpg    807
2844    https://upload.wikimedia.org/wikipedia/commons/3/36/Fifth-War-Loan-1944-FC.jpg    807
2845    https://upload.wikimedia.org/wikipedia/commons/3/3f/Horse-Eats-Hat-42-Houseman-Welles.jpg    807
2846    https://upload.wikimedia.org/wikipedia/commons/3/37/Horse_Eats_Hat_by_Edwin_Denby_after_Eug%C3%A8ne_Labiche.jpg    807
2847    https://upload.wikimedia.org/wikipedia/commons/c/c9/Independent-Voters-Committee-of-the-Arts-and-Sciences-for-Roosevelt-poster.jpg    807
2852    https://upload.wikimedia.org/wikipedia/commons/1/18/1962_My_Three_Sons.jpg    809
2854    https://upload.wikimedia.org/wikipedia/commons/9/99/I_Love_Lucy_Cast.JPG    809
2855    https://upload.wikimedia.org/wikipedia/commons/2/28/Something_to_Sing_About_Cagney_Frawley_Windheim.jpg    809
2856    https://upload.wikimedia.org/wikipedia/commons/c/c5/William_Frawley_1951.JPG    809
2857    https://upload.wikimedia.org/wikipedia/commons/4/43/William_Frawley_Star_HWF.JPG    809
2858    https://upload.wikimedia.org/wikipedia/commons/a/a7/William_Frawley_This_Is_Your_Life_1961.JPG    809
2861    https://upload.wikimedia.org/wikipedia/commons/4/46/DJ_Frodo.jpg    811
2862    https://upload.wikimedia.org/wikipedia/commons/f/f8/Elijah_Wood-D.jpg    811
2863    https://upload.wikimedia.org/wikipedia/commons/0/08/Elijah_Wood_FF_2014.jpg    811
2866    https://upload.wikimedia.org/wikipedia/commons/7/74/AamirKhan.jpg    812
2867    https://upload.wikimedia.org/wikipedia/commons/4/4a/Aamir_Khan_March_2015.jpg    812
2868    https://upload.wikimedia.org/wikipedia/commons/0/0b/Aamir_Khan_at_Satyamev_Jayate_press_conference_13.jpg    812
2869    https://upload.wikimedia.org/wikipedia/commons/0/01/Aamir_Khan_with_his_wife_Kiran_Rao_at_Karan_Johar%27s_40th_birthday_bash_at_Taj_Lands_End_%2827%29.jpg    812
2870    https://upload.wikimedia.org/wikipedia/en/6/60/Aamir_khan_signature.jpg    812
2873    https://upload.wikimedia.org/wikipedia/commons/7/7e/Secretary_Clinton_and_Bollywood_Star_Aamir_Khan.jpg    812
2875    https://upload.wikimedia.org/wikipedia/commons/0/0b/ChristopherJudgeAtConvention.jpg    814
2876    https://upload.wikimedia.org/wikipedia/commons/6/69/Christopher_Judge_2014.jpg    814
2877    https://upload.wikimedia.org/wikipedia/commons/e/e0/Christopher_Judge_IMG_2058.jpg    814
2880    https://upload.wikimedia.org/wikipedia/commons/8/8a/Diane_Keaton%2C_Woody_Allen%2C_Jerry_Lacy_Play_it_Again%2C_Sam_Broadway.JPG    815
2881    https://upload.wikimedia.org/wikipedia/commons/2/29/Diane_Keaton.jpg    815
2882    https://upload.wikimedia.org/wikipedia/commons/c/cf/Diane_Keaton_2012-1.jpg    815
2883    https://upload.wikimedia.org/wikipedia/commons/c/cd/Diane_Keaton_2012.jpg    815
2884    https://upload.wikimedia.org/wikipedia/commons/0/0b/Diane_Keaton_by_Firooz_Zahedi_2.jpg    815
2885    https://upload.wikimedia.org/wikipedia/commons/6/6d/Nancy_Reagan_with_Warren_Beatty_and_Diane_Keaton_1981.jpg    815
2888    https://upload.wikimedia.org/wikipedia/commons/8/88/Saadi_Yacef_1966.jpg    816
2889    https://upload.wikimedia.org/wikipedia/commons/0/0f/Dean_Norris_by_Gage_Skidmore_2.jpg    817
2891    https://upload.wikimedia.org/wikipedia/commons/3/34/Alison-Pill.jpg    818
2892    https://upload.wikimedia.org/wikipedia/commons/a/a8/Alison-pill.jpg    818
2893    https://upload.wikimedia.org/wikipedia/commons/f/fd/Alison_Pill_at_PaleyFest_2013.jpg    818
2894    https://upload.wikimedia.org/wikipedia/commons/7/77/Alison_Pill_by_Gage_Skidmore.jpg    818
2897    https://upload.wikimedia.org/wikipedia/commons/3/30/Toronto_Flag.svg    818
2900    https://upload.wikimedia.org/wikipedia/en/6/61/Orphan_Black_Clones.jpg    820
2901    https://upload.wikimedia.org/wikipedia/commons/4/4f/Tatiana_Maslany_by_Gage_Skidmore.jpg    820
2903    https://upload.wikimedia.org/wikipedia/commons/d/d4/Mark_Wahlberg.jpg    821
2904    https://upload.wikimedia.org/wikipedia/commons/c/ca/Mark_Wahlberg_Max_Payne_2008.jpg    821
2905    https://upload.wikimedia.org/wikipedia/commons/1/14/Mark_Wahlberg_at_the_Contraband_movie_premiere_in_Sydney_February_2012.jpg    821
2907    https://upload.wikimedia.org/wikipedia/commons/6/60/El-set-mismaloya.jpg    822
2908    https://upload.wikimedia.org/wikipedia/en/1/1e/Huston-grave.jpg    822
2909    https://upload.wikimedia.org/wikipedia/commons/b/bc/JohnHustoninPV.jpg    822
2910    https://upload.wikimedia.org/wikipedia/commons/8/80/John_Huston_-_publicity.JPG    822
2911    https://upload.wikimedia.org/wikipedia/commons/3/35/John_Huston_and_Angelica.JPG    822
2912    https://upload.wikimedia.org/wikipedia/commons/e/eb/The_African_Queen%2C_Bogart.jpg    822
2913    https://upload.wikimedia.org/wikipedia/commons/6/63/AEV-405_VINTAGE_PHOTO-_MYRNA_LOY_PUBLICITY_SHOT-_MGM.jpg    823
2915    https://upload.wikimedia.org/wikipedia/commons/a/a8/Leslie_Howard_-_Myrna_Loy_-_32.JPG    823
2916    https://upload.wikimedia.org/wikipedia/commons/c/c4/Myrna_Loy%27s_grave.jpg    823
2917    https://upload.wikimedia.org/wikipedia/commons/5/56/Myrna_Loy.jpg    823
2918    https://upload.wikimedia.org/wikipedia/commons/b/ba/Myrna_Loy_in_Best_Years_of_Our_Lives_trailer_closeup.jpg    823
2921    https://upload.wikimedia.org/wikipedia/commons/7/71/The_Thin_Man_Publicity_Photo_1936.jpg    823
2922    https://upload.wikimedia.org/wikipedia/commons/1/1e/Venice_High_School_Fountain_of_Education.jpg    823
2925    https://upload.wikimedia.org/wikipedia/commons/3/33/Roy_Scheider_2007.jpg    824
2927    https://upload.wikimedia.org/wikipedia/commons/c/ce/Danielle_cormack.jpg    825
2929    https://upload.wikimedia.org/wikipedia/commons/a/ac/Shirley_MacLaine18.JPG    826
2930    https://upload.wikimedia.org/wikipedia/commons/8/83/Shirley_MacLaine_-_1960jpg.jpg    826
2931    https://upload.wikimedia.org/wikipedia/commons/8/84/Shirley_MacLaine_-_1976.jpg    826
2932    https://upload.wikimedia.org/wikipedia/commons/5/5f/Shirley_MacLaine_in_The_Trouble_With_Harry_trailer.jpg    826
2935    https://upload.wikimedia.org/wikipedia/commons/d/d9/Folco_Lulli_54.jpg    827
2943    https://upload.wikimedia.org/wikipedia/en/2/2a/RoosterTeeth_logo.png    828
2944    https://upload.wikimedia.org/wikipedia/en/f/fa/Rooster_Teeth_Apology_commercial.jpg    828
2945    https://upload.wikimedia.org/wikipedia/commons/2/21/Rooster_Teeth_Congress_office_%282548207067%29.jpg    828
2946    https://upload.wikimedia.org/wikipedia/en/4/48/RvB_ep58_Sarge_Donut.jpg    828
2947    https://upload.wikimedia.org/wikipedia/commons/c/c6/ColinMochrieJun09.jpg    829
2948    https://upload.wikimedia.org/wikipedia/commons/2/2a/Colin_Mochrie_at_BANFF%2C_2008_%28crop%29.jpg    829
2954    https://upload.wikimedia.org/wikipedia/commons/3/32/Rainn_Wilson_2009_cropped.jpg    830
2955    https://upload.wikimedia.org/wikipedia/commons/9/99/Rainn_Wilson_2011_Shankbone.JPG    830
2957    https://upload.wikimedia.org/wikipedia/commons/5/50/Blake_Harrison_2009.jpg    831
2959    https://upload.wikimedia.org/wikipedia/commons/2/2b/Chaplin_oscar.JPG    832
2961    https://upload.wikimedia.org/wikipedia/commons/1/1c/Jack_Lemmon_-_1968.jpg    832
2962    https://upload.wikimedia.org/wikipedia/commons/b/b0/Jack_Lemmon_1988_ArM.jpg    832
2963    https://upload.wikimedia.org/wikipedia/commons/4/4a/Jack_Lemmon_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    832
2971    https://upload.wikimedia.org/wikipedia/commons/d/df/Grapes_of_Wrath%2C_The_-_%28Original_Trailer%29_-_03.png    833
2972    https://upload.wikimedia.org/wikipedia/commons/0/0c/John_CarradineThe_Hurricane_Trailer_screenshot.jpg    833
2973    https://upload.wikimedia.org/wikipedia/commons/1/1d/John_Carradine_in_Blood_and_Sand_trailer.jpg    833
2975    https://upload.wikimedia.org/wikipedia/commons/8/81/Olgierd_Lukaszewicz_by_Emila_Gowin_%2803%29.jpg    835
2978    https://upload.wikimedia.org/wikipedia/commons/5/57/Michael_Chiklis.jpg    836
2979    https://upload.wikimedia.org/wikipedia/commons/8/81/Michael_Chiklis_at_PaleyFest_2014.jpg    836
2981    https://upload.wikimedia.org/wikipedia/commons/7/7a/George_Raft_in_Invisible_Stripes_trailer.jpg    837
2982    https://upload.wikimedia.org/wikipedia/commons/3/33/Judy_Canova_and_George_Raft%2C_1979.jpg    837
2987    https://upload.wikimedia.org/wikipedia/commons/9/93/William_Holden_and_George_Raft_in_Invisible_Stripes_trailer.jpg    837
2989    https://upload.wikimedia.org/wikipedia/commons/4/4e/James_Caviezel3.jpg    838
2990    https://upload.wikimedia.org/wikipedia/commons/6/6b/Jim_Caviezel.jpg    838
2991    https://upload.wikimedia.org/wikipedia/commons/3/35/41st_Annie_Awards%2C_June_Foray-2.jpg    839
2994    https://upload.wikimedia.org/wikipedia/commons/9/92/June_Foray_%284971507788_21f4124982_n%29_%28cropped%29.jpg    839
2995    https://upload.wikimedia.org/wikipedia/commons/8/88/June_Foray_1952.JPG    839
2999    https://upload.wikimedia.org/wikipedia/commons/4/44/Dag_Malmberg.jpg    840
3001    https://upload.wikimedia.org/wikipedia/commons/c/cd/Sareh_Bayat.jpg    841
3003    https://upload.wikimedia.org/wikipedia/commons/a/af/Judy_Greer%2C_Comic-Con_2010.jpg    842
3004    https://upload.wikimedia.org/wikipedia/commons/5/52/Judy_Greer_July_14%2C_2014_%28cropped%29.jpg    842
3005    https://upload.wikimedia.org/wikipedia/commons/d/d1/Judy_Greer_LF.jpg    842
3007    https://upload.wikimedia.org/wikipedia/commons/c/ca/Jennifer_Carpenter_by_Gage_Skidmore.jpg    843
3008    https://upload.wikimedia.org/wikipedia/commons/e/e2/Jon_Huertas_at_Paleyfest_2012.jpg    844
3010    https://upload.wikimedia.org/wikipedia/commons/5/58/HarveyKeitelNov09.jpg    845
3011    https://upload.wikimedia.org/wikipedia/commons/f/f5/Harvey_Keitel_Cannes_2015.jpg    845
3012    https://upload.wikimedia.org/wikipedia/commons/8/8c/Harvey_Keitel_Harry_Belafonte_2011_Shankbone_2.JPG    845
3013    https://upload.wikimedia.org/wikipedia/commons/d/d3/Harvey_Keitel_Shankbone_2010_NYC.jpg    845
3017    https://upload.wikimedia.org/wikipedia/commons/b/b8/Olivia_Colman_at_Moet_BIFA_2014.jpg    847
3020    https://upload.wikimedia.org/wikipedia/commons/8/85/Flag_of_Egypt_%281922%E2%80%931958%29.svg    848
3023    https://upload.wikimedia.org/wikipedia/commons/e/ea/Flag_of_Monaco.svg    848
3024    https://upload.wikimedia.org/wikipedia/commons/8/8e/Flag_of_the_Sovereign_Military_Order_of_Malta.svg    848
3025    https://upload.wikimedia.org/wikipedia/commons/0/00/Flag_of_the_Vatican_City.svg    848
3026    https://upload.wikimedia.org/wikipedia/commons/1/1e/GILL%2C_James%2C_591_Grace_Kelly_in_Sun_%282013%29.jpg    848
3027    https://upload.wikimedia.org/wikipedia/commons/7/72/GraceKellyHighNoonTrailerScreenshot1952.jpg    848
3028    https://upload.wikimedia.org/wikipedia/commons/2/22/Alan_Tudyk_%282005_Serenity_Flanvention%29.jpg    850
3029    https://upload.wikimedia.org/wikipedia/commons/d/dd/Alan_Tudyk_by_Gage_Skidmore.jpg    850
3031    https://upload.wikimedia.org/wikipedia/commons/a/ae/Vincent_Kartheiser_adj.jpg    851
3032    https://upload.wikimedia.org/wikipedia/commons/6/6d/Vincent_Kartheiser_at_PaleyFest_2014.jpg    851
3035    https://upload.wikimedia.org/wikipedia/commons/7/72/Celeste_Holm-1955.jpg    854
3036    https://upload.wikimedia.org/wikipedia/commons/b/b6/Celeste_Holm_1988.jpg    854
3037    https://upload.wikimedia.org/wikipedia/commons/a/a4/Celeste_Holm_and_Oscar_from_Gentleman%27s_Agreement_trailer.jpg    854
3048    https://upload.wikimedia.org/wikipedia/commons/5/56/Regina_King_2010.jpg    857
3050    https://upload.wikimedia.org/wikipedia/commons/3/35/Get-carter-trailer.jpg    859
3052    https://upload.wikimedia.org/wikipedia/commons/9/90/Michael-caine-trailer.jpg    859
3053    https://upload.wikimedia.org/wikipedia/commons/3/3d/Michael_Caine_-_Viennale_2012_g_%28cropped%29.jpg    859
3054    https://upload.wikimedia.org/wikipedia/commons/d/d0/Michael_Caine_handprints%2C_Leicester_Square_WC2_-_geograph.org.uk_-_1352187.jpg    859
3055    https://upload.wikimedia.org/wikipedia/commons/6/6b/Nobel_Peace_Prize_Concert_2008_Scarlett_Johansson_Michael_Caine.jpg    859
3056    https://upload.wikimedia.org/wikipedia/commons/7/79/Sir_Michael_Caine_Plaque_-_geograph.org.uk_-_497396.jpg    859
3057    https://upload.wikimedia.org/wikipedia/commons/8/85/The_Dark_Knight_European_Premiere_-_Michael_Caine.jpg    859
3058    https://upload.wikimedia.org/wikipedia/commons/7/7a/Ch_Bale_02.jpg    860
3059    https://upload.wikimedia.org/wikipedia/commons/c/cc/Christian_Bale_-_002.jpg    860
3060    https://upload.wikimedia.org/wikipedia/commons/7/73/Christian_Bale_2014_%28cropped%29.jpg    860
3061    https://upload.wikimedia.org/wikipedia/commons/1/19/Christian_Bale_AA_2011.jpg    860
3062    https://upload.wikimedia.org/wikipedia/commons/b/bf/Christianbale.jpg    860
3066    https://upload.wikimedia.org/wikipedia/commons/1/14/Micha%C5%82_Zebrowski.jpg    862
3070    https://upload.wikimedia.org/wikipedia/commons/9/9a/Bob_Cummings_Julie_Newmar_My_Living_Doll.JPG    864
3073    https://upload.wikimedia.org/wikipedia/commons/4/4d/Peggy_Moran%2C_Robert_Cummings-Spring_Parade%2C1940.jpg    864
3074    https://upload.wikimedia.org/wikipedia/commons/8/8b/Robert_Cummings_1956.jpg    864
3075    https://upload.wikimedia.org/wikipedia/commons/4/42/Robert_Cummings_in_Saboteur.jpg    864
3077    https://upload.wikimedia.org/wikipedia/commons/1/13/Michael_Richards_%281993%29-flipped.jpg    865
3078    https://upload.wikimedia.org/wikipedia/commons/0/04/Michael_Richards_HS_Yearbook.jpeg    865
3082    https://upload.wikimedia.org/wikipedia/commons/a/af/Kristen_Schaal_2_BBF_2010_Shankbone_%28crop%29.jpg    866
3083    https://upload.wikimedia.org/wikipedia/commons/d/d5/Kristen_Schaal_Kurt_Braunohler_%284464444414%29.jpg    866
3084    https://upload.wikimedia.org/wikipedia/commons/0/0e/Kristen_Schaal_by_Gage_Skidmore_2.jpg    866
3087    https://upload.wikimedia.org/wikipedia/en/a/a7/Actor_Peter_Capaldi%27s_signature.png    867
3090    https://upload.wikimedia.org/wikipedia/commons/c/cf/Peter_Capaldi_2009_%28cropped%29.jpg    867
3091    https://upload.wikimedia.org/wikipedia/commons/c/c6/Peter_Capaldi_June_2014.jpg    867
3092    https://upload.wikimedia.org/wikipedia/commons/2/24/Peter_Capaldi_by_Gage_Skidmore.jpg    867
3095    https://upload.wikimedia.org/wikipedia/commons/9/90/Jennifer_Connelly_2005.2.jpg    868
3096    https://upload.wikimedia.org/wikipedia/commons/3/35/Jennifer_Connelly_2010_TIFF.jpg    868
3097    https://upload.wikimedia.org/wikipedia/commons/e/ec/Jennifer_Connelly_2012.jpg    868
3307    https://upload.wikimedia.org/wikipedia/commons/6/62/Eiganotomo-2-1951-janetleigh.jpg    927
3098    https://upload.wikimedia.org/wikipedia/commons/c/ce/Paul_Bettany-Jennifer_Connelly_TIFF09_%28cropped%29.jpg    868
3102    https://upload.wikimedia.org/wikipedia/commons/b/b5/Malin_Akerman_2011_Shankbone_2.JPG    871
3103    https://upload.wikimedia.org/wikipedia/commons/8/81/Malin_Akerman_at_Mercedes-Benz_Fashion_Week.jpg    871
3104    https://upload.wikimedia.org/wikipedia/commons/4/46/Malin_Akerman_by_Gage_Skidmore.jpg    871
3105    https://upload.wikimedia.org/wikipedia/commons/d/d2/Malin_%C3%85kerman_TTF_2012.jpg    871
3110    https://upload.wikimedia.org/wikipedia/commons/7/79/Walton_Goggins_March_19%2C_2014_%28cropped%29.jpg    872
3111    https://upload.wikimedia.org/wikipedia/commons/f/f9/Walton_Goggins_by_Gage_Skidmore.jpg    872
3115    https://upload.wikimedia.org/wikipedia/commons/d/da/Flag_of_Kansas.svg    875
3118    https://upload.wikimedia.org/wikipedia/en/0/02/Vera_Miles_-_1959.jpg    875
3123    https://upload.wikimedia.org/wikipedia/commons/f/f0/Dean_Martin%2C_Judy_Garland_and_Frank_Sinatra_in_1962.jpg    876
3124    https://upload.wikimedia.org/wikipedia/commons/a/ae/Garland_%26_Rooney.jpg    876
3125    https://upload.wikimedia.org/wikipedia/commons/5/5b/Garland_Star_Born_recrop.jpg    876
3126    https://upload.wikimedia.org/wikipedia/commons/1/11/GummHome.jpg    876
3127    https://upload.wikimedia.org/wikipedia/commons/7/7f/Judy_Garland_at_Greek_Theater.jpg    876
3128    https://upload.wikimedia.org/wikipedia/commons/7/75/Judy_Garland_in_Love_Finds_Andy_Hardy_trailer.jpg    876
3129    https://upload.wikimedia.org/wikipedia/commons/8/84/Judy_Garland_in_Meet_Me_in_St_Louis_trailer_2.jpg    876
3132    https://upload.wikimedia.org/wikipedia/commons/5/54/Paul_Henreid_-_publicity.jpg    877
3133    https://upload.wikimedia.org/wikipedia/commons/1/1e/Paul_Henreid_Grave.JPG    877
3135    https://upload.wikimedia.org/wikipedia/commons/5/57/Flickr_Jensen_Ackles_-_VanCon_2009_jensen006.jpg    878
3136    https://upload.wikimedia.org/wikipedia/commons/8/87/Jared_and_Jensen.jpg    878
3137    https://upload.wikimedia.org/wikipedia/commons/c/c8/Jensen_Ackles_%289362265831%29.jpg    878
3138    https://upload.wikimedia.org/wikipedia/commons/b/b2/Jensen_Ackles_2015.jpg    878
3141    https://upload.wikimedia.org/wikipedia/commons/e/ee/Marc_Shaiman_Crop.jpg    879
3147    https://upload.wikimedia.org/wikipedia/commons/5/58/TreyParkerHWOFApr2013.jpg    881
3150    https://upload.wikimedia.org/wikipedia/commons/a/a9/BobOdenKirk1SecondFilm.jpg    882
3151    https://upload.wikimedia.org/wikipedia/commons/7/7e/Bob_Odenkirk_by_Gage_Skidmore.jpg    882
3153    https://upload.wikimedia.org/wikipedia/commons/f/f1/Matthew_Modine_at_the_NY_Knicks_vs_Miami_Heat_game_%28May_2012%29.jpg    884
3154    https://upload.wikimedia.org/wikipedia/commons/9/9d/Matthewmodine06.jpg    884
3157    https://upload.wikimedia.org/wikipedia/commons/d/db/Mark_Gatiss.jpg    886
3158    https://upload.wikimedia.org/wikipedia/commons/d/db/Mark_Gatiss_%289362666697%29.jpg    886
3159    https://upload.wikimedia.org/wikipedia/commons/3/3d/Mark_Gatiss_at_A_Scandal_in_Belgravia_screening.png    886
3160    https://upload.wikimedia.org/wikipedia/commons/f/f2/Mark_Gatiss_by_Gage_Skidmore.jpg    886
3162    https://upload.wikimedia.org/wikipedia/commons/f/f0/Festival_Deauville_2012_-_Jour_8.jpg    887
3163    https://upload.wikimedia.org/wikipedia/commons/f/fe/Liam_Neeson_Deauville_2012_2.jpg    887
3164    https://upload.wikimedia.org/wikipedia/commons/5/58/Liam_Neeson_TIFF_2008.jpg    887
3165    https://upload.wikimedia.org/wikipedia/commons/4/42/Neesonandfiennes.jpg    887
3168    https://upload.wikimedia.org/wikipedia/commons/d/d4/James_Mason_-_still.JPG    888
3169    https://upload.wikimedia.org/wikipedia/commons/7/76/James_Mason_and_Family_1957.JPG    888
3170    https://upload.wikimedia.org/wikipedia/commons/8/80/North_by_Northwest_movie_trailer_screenshot_%2827%29_James_Mason.jpg    888
3176    https://upload.wikimedia.org/wikipedia/commons/b/b5/PO3_NOGC.png    889
3177    https://upload.wikimedia.org/wikipedia/en/d/d2/Paul_Newman_-_1963.jpg    889
3178    https://upload.wikimedia.org/wikipedia/commons/e/ed/Paul_Newman_1954.JPG    889
3179    https://upload.wikimedia.org/wikipedia/commons/e/e6/Paul_Newman_Cannes_1987.jpg    889
3180    https://upload.wikimedia.org/wikipedia/commons/c/ca/Paul_Newman_Racing_1979_Spyder_NF-11_Chevrolet_V8_-_CanAm_single_seater_racer_based_on_Lola_T333CS.jpg    889
3181    https://upload.wikimedia.org/wikipedia/commons/3/36/Paul_Newman_in_Carnation%2C_Washington_June_2007_cropped.jpg    889
3183    https://upload.wikimedia.org/wikipedia/commons/e/e6/Manu_Bennett.jpg    890
3184    https://upload.wikimedia.org/wikipedia/commons/e/ef/Manu_Bennett_01_%289514681866%29.jpg    890
3185    https://upload.wikimedia.org/wikipedia/commons/1/1d/Manu_Bennett_July_2014.jpg    890
3186    https://upload.wikimedia.org/wikipedia/commons/e/e7/Dominic_Purcell_Edwards_AFB.jpg    891
3188    https://upload.wikimedia.org/wikipedia/commons/1/18/Nuvola_kdict_glass.svg    892
3191    https://upload.wikimedia.org/wikipedia/commons/e/ea/Charley_Boorman2.jpg    896
3192    https://upload.wikimedia.org/wikipedia/commons/3/3d/Charley_Boorman_at_Waterstone%27s.jpg    896
3197    https://upload.wikimedia.org/wikipedia/commons/0/04/TanakaHaruo.jpg    899
3198    https://upload.wikimedia.org/wikipedia/commons/b/b0/Frank_Overton.jpg    900
3201    https://upload.wikimedia.org/wikipedia/commons/8/89/Baldwin_Brando_Civil_Rights_March_1963.jpg    901
3202    https://upload.wikimedia.org/wikipedia/commons/d/de/Brando_van_Vechten3.jpg    901
3204    https://upload.wikimedia.org/wikipedia/commons/7/7b/Eva_marie_saint_marlon_brando_waterfront_10.jpg    901
3205    https://upload.wikimedia.org/wikipedia/commons/e/e2/Heston_Baldwin_Brando_Civil_Rights_March_1963.jpg    901
3207    https://upload.wikimedia.org/wikipedia/commons/2/27/Marlon_Brando_-_The_Wild_One_%28Madame_Tussaud%29.JPG    901
3208    https://upload.wikimedia.org/wikipedia/commons/b/b1/Marlon_Brando_1948.jpg    901
3209    https://upload.wikimedia.org/wikipedia/commons/8/88/Marlon_Brando_signature.png    901
3213    https://upload.wikimedia.org/wikipedia/commons/e/ed/Lea_Thompson_February_2015_crop.JPG    902
3214    https://upload.wikimedia.org/wikipedia/commons/b/b3/Lea_Thompson_by_Gregg_Bond_%282008%29.jpg    902
3219    https://upload.wikimedia.org/wikipedia/commons/1/1b/Gunnar_Bj%C3%B6rnstrand%2C_Swedish_actor.JPG    903
3222    https://upload.wikimedia.org/wikipedia/commons/2/28/Gillian_Jacobs_2014_Comic_Con_%28cropped%29.jpg    904
3223    https://upload.wikimedia.org/wikipedia/commons/7/71/Gillian_Jacobs_by_Gage_Skidmore.jpg    904
3225    https://upload.wikimedia.org/wikipedia/commons/2/2d/HughJackmanApr09b.jpg    906
3226    https://upload.wikimedia.org/wikipedia/commons/e/ef/Hugh_Jackman_2015.jpg    906
3227    https://upload.wikimedia.org/wikipedia/commons/8/82/Hugh_Jackman_navy.jpg    906
3228    https://upload.wikimedia.org/wikipedia/commons/9/91/Hugh_Jackman_with_wife_Deborra-Lee_Furness_in_India.jpg    906
3230    https://upload.wikimedia.org/wikipedia/commons/8/8b/XMenOriginsWolverineCastPremiereApr09b.jpg    906
3232    https://upload.wikimedia.org/wikipedia/commons/c/c5/Nolan_North_by_Gage_Skidmore.jpg    907
3234    https://upload.wikimedia.org/wikipedia/commons/c/c9/Powers-boothe-zumawirewestphotos963564.jpg    909
3238    https://upload.wikimedia.org/wikipedia/commons/8/85/Sessue_Hayakawa_1918.jpg    910
3239    https://upload.wikimedia.org/wikipedia/commons/a/a7/Sessue_Hayakawa_ca._1918.jpg    910
3240    https://upload.wikimedia.org/wikipedia/commons/0/03/Thedragonpainter.jpg    910
3241    https://upload.wikimedia.org/wikipedia/commons/b/b1/Walk_of_fame%2C_sessue_hayakawa.JPG    910
3242    https://upload.wikimedia.org/wikipedia/commons/6/6b/Derek_Fowlds_Allan_Warren.jpg    911
3245    https://upload.wikimedia.org/wikipedia/commons/9/93/Henri-Georges_and_Vera_Clouzot_1953.jpg    912
3248    https://upload.wikimedia.org/wikipedia/commons/c/c6/Carol_Burnett_Dick_Van_Dyke_1977.JPG    913
3250    https://upload.wikimedia.org/wikipedia/commons/a/a3/Dick_Van_Dyke_1959.jpg    913
3251    https://upload.wikimedia.org/wikipedia/commons/5/57/Dick_Van_Dyke_cropped.jpg    913
3259    https://upload.wikimedia.org/wikipedia/en/3/37/Kyle_Hebert.jpg    915
3260    https://upload.wikimedia.org/wikipedia/commons/e/eb/Actor_Harrison_Ford_touring_the_Air_Force_Museum_in_Dayton%2C_Ohio_%28cropped%29.JPG    916
3262    https://upload.wikimedia.org/wikipedia/commons/4/4d/HarrisonFordHWoFOct10.jpg    916
3263    https://upload.wikimedia.org/wikipedia/commons/7/7d/Harrison_Ford.jpg    916
3264    https://upload.wikimedia.org/wikipedia/commons/4/45/Harrison_Ford_Cannes.jpg    916
3265    https://upload.wikimedia.org/wikipedia/commons/c/ca/Harrison_Ford_and_Calista_Flockhart_at_the_2009_Deauville_American_Film_Festival-02.jpg    916
3266    https://upload.wikimedia.org/wikipedia/commons/0/00/Harrison_Ford_and_Chandran_Rutnam_in_Sri_Lanka.jpg    916
3267    https://upload.wikimedia.org/wikipedia/commons/b/bf/Harrison_Ford_by_Gage_Skidmore.jpg    916
3268    https://upload.wikimedia.org/wikipedia/commons/4/41/Harrison_Fords_Jules_Verne_Award.JPG    916
3269    https://upload.wikimedia.org/wikipedia/commons/1/1b/Nuvola_apps_kaboodle.svg    916
3271    https://upload.wikimedia.org/wikipedia/commons/9/99/Rosemary_Murphy_%281970%29.JPG    917
3272    https://upload.wikimedia.org/wikipedia/commons/1/12/To_Kill_a_Mockingbird_%281962%29_trailer_1.jpg    917
3274    https://upload.wikimedia.org/wikipedia/commons/0/0f/Dennis_Farina_2011_Shankbone.JPG    918
3275    https://upload.wikimedia.org/wikipedia/commons/1/13/Dennis_Farina_by_David_Shankbone.jpg    918
3277    https://upload.wikimedia.org/wikipedia/commons/6/66/Flickr_-_Siebbi_-_Sharon_Stone_%281%29.jpg    919
3278    https://upload.wikimedia.org/wikipedia/commons/0/0b/SharonStone91.jpg    919
3279    https://upload.wikimedia.org/wikipedia/commons/7/75/Sharon_Stone_2002.jpg    919
3280    https://upload.wikimedia.org/wikipedia/commons/5/5d/Sharon_Stone_2011_AA.jpg    919
3281    https://upload.wikimedia.org/wikipedia/commons/3/36/Sharon_Stone_KV.jpg    919
3284    https://upload.wikimedia.org/wikipedia/commons/0/00/611px-Kim_Novak.jpeg    921
3286    https://upload.wikimedia.org/wikipedia/commons/c/c7/Kim_Novak-Pal_Joey_3.jpg    921
3287    https://upload.wikimedia.org/wikipedia/commons/c/c8/Kim_Novak_-_autographed.JPG    921
3288    https://upload.wikimedia.org/wikipedia/commons/7/70/Kim_Novak_01.jpg    921
3289    https://upload.wikimedia.org/wikipedia/commons/4/4c/Kim_Novak_03.Jpg    921
3290    https://upload.wikimedia.org/wikipedia/commons/0/0a/Kim_Novak_05.Jpg    921
3291    https://upload.wikimedia.org/wikipedia/commons/f/f3/Kim_Novak_1962.jpg    921
3292    https://upload.wikimedia.org/wikipedia/commons/c/c9/Kim_Novak_2004.JPG    921
3293    https://upload.wikimedia.org/wikipedia/commons/a/ab/Kim_Novak_at_the_Oscars.JPG    921
3294    https://upload.wikimedia.org/wikipedia/commons/c/c2/Glen_Cavender_01.JPG    922
3296    https://upload.wikimedia.org/wikipedia/commons/1/10/Cary-Hiroyuki_Tagawa.jpg    923
3301    https://upload.wikimedia.org/wikipedia/commons/4/48/Donald_O%27Connor_1952.JPG    925
3305    https://upload.wikimedia.org/wikipedia/commons/b/be/Machiko_Ky%C5%8D_1955.jpg    926
3308    https://upload.wikimedia.org/wikipedia/commons/0/0d/Janet_Leigh_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    927
3309    https://upload.wikimedia.org/wikipedia/commons/c/c0/Janet_Leigh_in_Little_Women_1949_trailer.JPG    927
3311    https://upload.wikimedia.org/wikipedia/commons/2/21/The_Naked_Spur-Janet_Leigh.JPG    927
3312    https://upload.wikimedia.org/wikipedia/commons/c/cc/Touch_of_Evil-Janet_Leigh.JPG    927
3315    https://upload.wikimedia.org/wikipedia/commons/0/0a/Jonah_Hill_TIFF_2011.jpg    928
3316    https://upload.wikimedia.org/wikipedia/commons/4/47/Jonah_Hill_This_is_the_End_Screening.jpg    928
3317    https://upload.wikimedia.org/wikipedia/commons/0/00/Jonah_Hill_by_Gage_Skidmore.jpg    928
3328    https://upload.wikimedia.org/wikipedia/commons/6/67/WendyCrewson06TIFF.jpg    932
3329    https://upload.wikimedia.org/wikipedia/commons/f/f0/WendyCrewsonTIFFSept2011.jpg    932
3330    https://upload.wikimedia.org/wikipedia/commons/4/43/AishaTyler01.JPG    933
3331    https://upload.wikimedia.org/wikipedia/commons/5/54/Aisha_Tyler_SDCC_2014.jpg    933
3336    https://upload.wikimedia.org/wikipedia/commons/5/58/The_Ladies_of_TV_2012.jpg    933
3338    https://upload.wikimedia.org/wikipedia/commons/6/67/David_Kaye_at_an_autograph_session_at_Botcon_2008_in_Cincinnati%2C_Ohio.jpg    934
3340    https://upload.wikimedia.org/wikipedia/commons/c/c0/Joelle_Carter_-_April_2015_%28cropped%29.jpg    935
3341    https://upload.wikimedia.org/wikipedia/commons/5/5e/Simon_Bird%2C_2010.jpg    936
3345    https://upload.wikimedia.org/wikipedia/commons/1/16/Susie_Essman_at_the_2009_Tribeca_Film_Festival.jpg    937
3347    https://upload.wikimedia.org/wikipedia/commons/2/25/Billy_Dee_Williams_2015.jpg    938
3349    https://upload.wikimedia.org/wikipedia/commons/e/e6/James_Farentino_1972.JPG    939
3353    https://upload.wikimedia.org/wikipedia/commons/6/61/Yuri_Lowenthal_by_Gage_Skidmore.jpg    940
3355    https://upload.wikimedia.org/wikipedia/commons/b/b1/Carl_Weathers_Calgary_2015.jpg    941
3357    https://upload.wikimedia.org/wikipedia/commons/5/54/Damian_Lewis_Berlin_2015.jpg    942
3358    https://upload.wikimedia.org/wikipedia/commons/5/52/Chris_O%27Dowd.jpg    943
3359    https://upload.wikimedia.org/wikipedia/commons/0/09/Chris_O%27Dowd_at_British_Comedy_Awards.jpg    943
3361    https://upload.wikimedia.org/wikipedia/commons/9/91/AllisonJanneyTIFFSept2011.jpg    944
3362    https://upload.wikimedia.org/wikipedia/commons/e/ed/Allison_Janney4crop.jpg    944
3363    https://upload.wikimedia.org/wikipedia/commons/4/4f/Allison_Janney_Oct_2014_%28cropped%29.jpg    944
3368    https://upload.wikimedia.org/wikipedia/commons/0/03/GKellyPittSeniorYB.jpg    945
3369    https://upload.wikimedia.org/wikipedia/commons/b/b3/GeneKellyPlaqueAtPitt.JPG    945
3370    https://upload.wikimedia.org/wikipedia/commons/8/81/Gene_Kelly_Allan_Warren.jpg    945
3371    https://upload.wikimedia.org/wikipedia/en/4/40/Gene_Kelly_American_in_Paris.jpg    945
3372    https://upload.wikimedia.org/wikipedia/en/3/3e/Gene_Kelly_dancing_with_Jerry_Mouse_%28%22Anchors_Aweigh%22%2C_1945%29.gif    945
3373    https://upload.wikimedia.org/wikipedia/commons/4/40/Gene_kelly.jpg    945
3374    https://upload.wikimedia.org/wikipedia/commons/5/57/Inherit_the_wind_trailer_%285%29_Gene_Kelly.jpg    945
3377    https://upload.wikimedia.org/wikipedia/commons/0/05/Matt_Stone_at_Peabody_Awards_in_2006.jpg    946
3385    https://upload.wikimedia.org/wikipedia/commons/4/42/SimonPeggApr09.jpg    947
3386    https://upload.wikimedia.org/wikipedia/commons/a/a8/Simon_Pegg_01.jpg    947
3387    https://upload.wikimedia.org/wikipedia/commons/b/bc/Simon_Pegg_Premiere_of_Kill_Me_Three_Times_%28cropped%29.jpg    947
3389    https://upload.wikimedia.org/wikipedia/commons/2/24/Judith_Anderson_1934-09-11.jpg    948
3390    https://upload.wikimedia.org/wikipedia/commons/3/3f/Judith_Anderson_in_Laura_trailer.jpg    948
3393    https://upload.wikimedia.org/wikipedia/commons/a/a0/Anna_Gunn_by_Gage_Skidmore_2.jpg    949
3397    https://upload.wikimedia.org/wikipedia/commons/2/24/Yeardley_Smith_2012.png    951
3398    https://upload.wikimedia.org/wikipedia/commons/e/ea/Yeardley_Smith_by_Gage_Skidmore.jpg    951
3399    https://upload.wikimedia.org/wikipedia/commons/2/29/Alison_Brie_by_Gage_Skidmore_2.jpg    952
3402    https://upload.wikimedia.org/wikipedia/commons/5/51/John_Doman_2013.jpg    954
3405    https://upload.wikimedia.org/wikipedia/commons/f/f3/Emblem-money.svg    955
3407    https://upload.wikimedia.org/wikipedia/commons/a/ac/JenniferAniston08TIFF.jpg    955
3408    https://upload.wikimedia.org/wikipedia/commons/b/bd/JenniferAnistonFeb09.jpg    955
3409    https://upload.wikimedia.org/wikipedia/commons/1/16/JenniferAnistonHWoFFeb2012.jpg    955
3410    https://upload.wikimedia.org/wikipedia/commons/c/c7/Jennifer_Aniston_2011.jpg    955
3411    https://upload.wikimedia.org/wikipedia/commons/2/28/Jennifer_Aniston_estrella.jpg    955
3412    https://upload.wikimedia.org/wikipedia/commons/2/21/Jennifer_Aniston_image_3.jpg    955
3413    https://upload.wikimedia.org/wikipedia/commons/d/d8/Nuvola_apps_package_favorite.svg    955
3417    https://upload.wikimedia.org/wikipedia/commons/5/54/Lucas_Black_Get_Low_TIFF09_cropped.jpg    959
3420    https://upload.wikimedia.org/wikipedia/commons/a/aa/Steve_Buscemi_%281996%29.jpg    960
3421    https://upload.wikimedia.org/wikipedia/commons/9/90/Steve_Buscemi_2009_portrait.jpg    960
3423    https://upload.wikimedia.org/wikipedia/commons/7/7b/Hugo_Weaving.jpg    961
3424    https://upload.wikimedia.org/wikipedia/commons/d/d1/Hugo_Weaving_2014.jpg    961
3425    https://upload.wikimedia.org/wikipedia/commons/e/e1/Hugo_w_%28cropped%29.jpg    961
3428    https://upload.wikimedia.org/wikipedia/commons/e/e5/SarahRoemerWakingMadison.jpg    962
3429    https://upload.wikimedia.org/wikipedia/commons/f/f5/John_Dossett.jpg    963
3431    https://upload.wikimedia.org/wikipedia/commons/9/9e/Robert-llewellyn-2013.jpg    964
3432    https://upload.wikimedia.org/wikipedia/commons/e/ea/Robert_Llewellyn_at_the_Merseyside_Skeptics_Society.jpg    964
3434    https://upload.wikimedia.org/wikipedia/commons/b/b1/MatthewFoxTIFFSept2012.jpg    965
3435    https://upload.wikimedia.org/wikipedia/commons/4/43/Matthew_Fox.jpg    965
3436    https://upload.wikimedia.org/wikipedia/commons/9/91/JasonRobards-1_%282%29.jpg    966
3437    https://upload.wikimedia.org/wikipedia/commons/1/10/Jason_Robards-1968-1.jpg    966
3438    https://upload.wikimedia.org/wikipedia/commons/6/66/Jason_Robards-1975.jpg    966
3439    https://upload.wikimedia.org/wikipedia/en/f/f1/Jason_Robards_-_1960.jpg    966
3440    https://upload.wikimedia.org/wikipedia/commons/2/20/Jennifer_Anne_Lien%2C_April_1996.jpg    967
3441    https://upload.wikimedia.org/wikipedia/commons/c/cc/Bill_Hader%2C_2013_San_Diego_Comic_Con-cropped-2.jpg    968
3443    https://upload.wikimedia.org/wikipedia/commons/6/66/America_Ferrera%2C_June_2010.jpg    969
3444    https://upload.wikimedia.org/wikipedia/commons/a/af/America_ferarra.jpg    969
3447    https://upload.wikimedia.org/wikipedia/commons/2/22/Nuvola_apps_package_graphics.png    969
3451    https://upload.wikimedia.org/wikipedia/commons/c/cd/Voice_Awards_Presenter_America_Ferrera_and_Voice_Awards_Winner_Ryan_Piers_Williams_on_Red_Carpet.jpg    969
3453    https://upload.wikimedia.org/wikipedia/commons/5/5a/Aaron_Eckhart_Dark_Knight.jpg    970
3454    https://upload.wikimedia.org/wikipedia/commons/b/b2/Aaron_Eckhart_by_Gage_Skidmore_3.jpg    970
3456    https://upload.wikimedia.org/wikipedia/commons/b/bd/Neverwas_Toronto.jpg    970
3458    https://upload.wikimedia.org/wikipedia/commons/9/9f/6212-LasVegasStrip-RivieraHotelMarquee.jpg    971
3462    https://upload.wikimedia.org/wikipedia/commons/1/1c/DebbieReynoldsApr2013.jpg    971
3463    https://upload.wikimedia.org/wikipedia/commons/a/af/Debbie_Reynolds.jpg    971
3464    https://upload.wikimedia.org/wikipedia/commons/c/c2/Debbie_Reynolds_-_self_1975.jpg    971
3465    https://upload.wikimedia.org/wikipedia/commons/1/1c/Debbie_Reynolds_Allan_Warren.jpg    971
3468    https://upload.wikimedia.org/wikipedia/commons/b/b3/Dana_Ashbrook_1990_Emmy_Awards.jpg    972
3470    https://upload.wikimedia.org/wikipedia/commons/f/ff/Elisabeth_Moss_at_PaleyFest_2014.jpg    974
3472    https://upload.wikimedia.org/wikipedia/commons/e/ea/Jerry_Seinfeld%2C_Julia_Louis-Dreyfus_1997.jpg    975
3473    https://upload.wikimedia.org/wikipedia/commons/6/6b/Jerry_Seinfeld_%281997%29.jpg    975
3474    https://upload.wikimedia.org/wikipedia/commons/c/c1/Jerry_Seinfeld_2011_Shankbone.JPG    975
3475    https://upload.wikimedia.org/wikipedia/commons/8/8f/Jessica_Seinfeld_Jerry_Seinfeld_Shankbone_2010.jpg    975
3477    https://upload.wikimedia.org/wikipedia/en/6/68/Seinfeldsignature.svg    975
3482    https://upload.wikimedia.org/wikipedia/commons/9/93/Edward_Furlong_2009.jpg    976
3488    https://upload.wikimedia.org/wikipedia/commons/d/d2/Trailer_Park_Boys%2C_April_2009.jpg    978
3489    https://upload.wikimedia.org/wikipedia/en/8/89/Organian_council.jpg    979
3490    https://upload.wikimedia.org/wikipedia/commons/1/12/Peter_Brocco_in_Drums_in_the_Deep_South.jpg    979
3493    https://upload.wikimedia.org/wikipedia/en/2/29/Alan_Alda_%28handprints_and_signature_in_cement%29.jpg    980
3494    https://upload.wikimedia.org/wikipedia/commons/4/4d/Alan_Alda_Emmys_1994.jpg    980
3495    https://upload.wikimedia.org/wikipedia/commons/0/00/Alan_Alda_Robert_Alda_MASH_1975.JPG    980
3496    https://upload.wikimedia.org/wikipedia/commons/e/e0/Alan_Alda_by_Bridget_Laudien.jpg    980
3497    https://upload.wikimedia.org/wikipedia/commons/9/9e/Alan_Alda_circa_1960s.JPG    980
3500    https://upload.wikimedia.org/wikipedia/commons/c/c0/MASH_TV_Cast_1972.jpg    980
3503    https://upload.wikimedia.org/wikipedia/commons/d/df/Bourne_3_Premiere_Stiles_and_ET.jpg    982
3505    https://upload.wikimedia.org/wikipedia/commons/d/d5/Julia_Stiles_by_David_Shankbone_cropped.jpg    982
3511    https://upload.wikimedia.org/wikipedia/commons/4/40/Denis_Lawson_cropped.jpg    985
3512    https://upload.wikimedia.org/wikipedia/commons/9/92/Canadian_television_stub_icon.svg    986
3513    https://upload.wikimedia.org/wikipedia/commons/5/58/John_Paul_Tremblay.jpg    986
3514    https://upload.wikimedia.org/wikipedia/en/7/70/Paul_Eddington_2.jpg    987
3517    https://upload.wikimedia.org/wikipedia/commons/4/46/Keiko_Tsushima_1.jpg    988
3519    https://upload.wikimedia.org/wikipedia/commons/4/4f/Avenue_of_Stars_Eric_Tsang.JPG    989
3521    https://upload.wikimedia.org/wikipedia/commons/e/ec/Eric_Tsang_at_Shanghai_Film_Festival.jpg    989
3523    https://upload.wikimedia.org/wikipedia/commons/6/63/Flag_of_Macau.svg    989
3526    https://upload.wikimedia.org/wikipedia/commons/5/58/HelenMirrenHWOFJan2013.jpg    990
3527    https://upload.wikimedia.org/wikipedia/commons/7/7c/Helen_Mirren_2014.jpg    990
3528    https://upload.wikimedia.org/wikipedia/commons/c/c1/Helen_Mirren_Deauville_2014.jpg    990
3529    https://upload.wikimedia.org/wikipedia/commons/d/d3/Helen_Mirren_at_Met_Opera.jpg    990
3530    https://upload.wikimedia.org/wikipedia/commons/7/70/Helen_Mirren_at_the_Orange_British_Academy_Film_Awards.jpg    990
3531    https://upload.wikimedia.org/wikipedia/commons/9/9f/Helen_Mirren_by_Gage_Skidmore.jpg    990
3534    https://upload.wikimedia.org/wikipedia/commons/c/cd/Fred_MacMurray_Gloria_Swanson_My_Three_Sons_1965.JPG    991
3535    https://upload.wikimedia.org/wikipedia/commons/0/01/G.Swanson_Change_Wife.jpg    991
3536    https://upload.wikimedia.org/wikipedia/commons/9/91/Gloria_Swanson-James_Abbe_1921.jpg    991
3537    https://upload.wikimedia.org/wikipedia/commons/7/76/Gloria_Swanson_%26_Billy_Wilder_-_ca._1950.JPG    991
3538    https://upload.wikimedia.org/wikipedia/en/c/ca/Gloria_Swanson_-_1950.jpg    991
3539    https://upload.wikimedia.org/wikipedia/commons/d/d3/Gloria_Swanson_Allan_Warren.jpg    991
3540    https://upload.wikimedia.org/wikipedia/commons/3/34/Gloria_Swanson_parking_lot.jpg    991
3544    https://upload.wikimedia.org/wikipedia/commons/c/c6/Daryl_Hannah_%26_Jackson_Browne.jpg    992
3545    https://upload.wikimedia.org/wikipedia/commons/5/55/Daryl_Hannah_2013.jpg    992
3547    https://upload.wikimedia.org/wikipedia/commons/7/75/Bruce_McCulloch.jpg    996
3549    https://upload.wikimedia.org/wikipedia/commons/0/0b/Enzo_Staiola_in_Bicycle_Thieves%2C_cropped.jpg    997
3551    https://upload.wikimedia.org/wikipedia/commons/1/19/Andersson_1957.jpg    998
3555    https://upload.wikimedia.org/wikipedia/commons/7/73/Tiny_Sandford_from_A_Shriek_in_the_Night.gif    1001
3559    https://upload.wikimedia.org/wikipedia/commons/b/be/Sharman_Joshi_grace_F-Bar_launch_02.jpg    1002
3560    https://upload.wikimedia.org/wikipedia/commons/5/5b/Dermot_Morgan_Grave.jpg    1003
3561    https://upload.wikimedia.org/wikipedia/commons/4/4e/Dermot_Morgan_Memorial_Chair.jpg    1003
3564    https://upload.wikimedia.org/wikipedia/commons/7/71/Groenland_Labelnight_30.09.04.jpg    1004
3566    https://upload.wikimedia.org/wikipedia/commons/2/25/Josh_Grelle_en_Animate_Miami_2015.jpg    1005
3568    https://upload.wikimedia.org/wikipedia/commons/b/bf/Katharina_Sch%C3%BCttler%2C_portraitiert_von_foto_di_matti.jpg    1006
3570    https://upload.wikimedia.org/wikipedia/commons/4/46/Rami.Malek.2012.cropped.jpg    1007
3571    https://upload.wikimedia.org/wikipedia/commons/9/93/Rami_Malek_in_Hollywood%2C_California.jpg    1007
3573    https://upload.wikimedia.org/wikipedia/commons/3/31/Felicia_Day_-_Streamy_Awards_2009_%2805%29.jpg    1008
3574    https://upload.wikimedia.org/wikipedia/commons/7/79/Felicia_Day_2012.jpg    1008
3575    https://upload.wikimedia.org/wikipedia/commons/8/89/Felicia_Day_and_Wil_Wheaton_-_w00tstock.jpg    1008
3578    https://upload.wikimedia.org/wikipedia/commons/5/52/DennisHopperJackNicholson.jpg    1009
3579    https://upload.wikimedia.org/wikipedia/commons/f/fc/JackBlinds.jpg    1009
3580    https://upload.wikimedia.org/wikipedia/commons/b/b2/Jack_Nicholson.0920.jpg    1009
3581    https://upload.wikimedia.org/wikipedia/commons/2/25/Jack_Nicholson_-_1976.jpg    1009
3582    https://upload.wikimedia.org/wikipedia/commons/5/56/Little_Shop_of_Horrors_Nicholson.JPG    1009
3583    https://upload.wikimedia.org/wikipedia/commons/1/10/Vladimir_Putin_27_June_2001-2.jpg    1009
3585    https://upload.wikimedia.org/wikipedia/commons/4/47/Portia_de_Rossi.jpg    1010
3588    https://upload.wikimedia.org/wikipedia/commons/2/27/7.29.12HannibalBuressByEzmosis.jpg    1011
3590    https://upload.wikimedia.org/wikipedia/commons/c/c6/Hannibal_Buress_%281808462347%29.jpg    1011
3591    https://upload.wikimedia.org/wikipedia/commons/d/d4/Hannibal_Hannibal_Hannibal_..._%284031486408%29.jpg    1011
3593    https://upload.wikimedia.org/wikipedia/commons/2/2b/Shimazaki_Yukiko.JPG    1012
3595    https://upload.wikimedia.org/wikipedia/commons/7/73/JonHammShootingTheTown09_-_Cropped.jpg    1013
3596    https://upload.wikimedia.org/wikipedia/commons/f/fa/Jon_Hamm_%282008%29.jpg    1013
3597    https://upload.wikimedia.org/wikipedia/commons/4/4d/Jon_Hamm_November_2008.jpg    1013
3598    https://upload.wikimedia.org/wikipedia/commons/7/74/Jon_Hamm_at_PaleyFest_2014_%28light%29.jpg    1013
3601    https://upload.wikimedia.org/wikipedia/commons/f/f0/Chandran_with_Ben_Kingsley_and_Ben_Cross.jpg    1014
3603    https://upload.wikimedia.org/wikipedia/commons/9/90/Sir_Ben_Kingsley_2012.jpg    1014
3604    https://upload.wikimedia.org/wikipedia/commons/3/32/Sir_Ben_Kingsley_by_David_Shankbone.jpg    1014
3606    https://upload.wikimedia.org/wikipedia/commons/5/54/Peter_Dinklage_by_Gage_Skidmore.jpg    1015
3607    https://upload.wikimedia.org/wikipedia/commons/f/f2/AlanHornJasonAlexanderMay10.jpg    1016
3609    https://upload.wikimedia.org/wikipedia/commons/7/7a/Jason_Alexander_Fourth_of_July_%28cropped%29.jpg    1016
3610    https://upload.wikimedia.org/wikipedia/commons/5/54/Jason_Alexander_plays_Annie_Duke_s_charity_event_at_the_2009_WSOP.jpg    1016
3611    https://upload.wikimedia.org/wikipedia/commons/c/cf/JohnCMcGinleyByTomMorgan2008.jpg    1017
3613    https://upload.wikimedia.org/wikipedia/commons/2/23/Anouk_Aimee_-_1963.jpg    1019
3614    https://upload.wikimedia.org/wikipedia/commons/3/33/Anouk_Aim%C3%A9e_Cannes.jpg    1019
3615    https://upload.wikimedia.org/wikipedia/commons/a/a7/CL09.jpg    1019
3617    https://upload.wikimedia.org/wikipedia/commons/0/00/Charlie_Chaplin.jpg    1021
3619    https://upload.wikimedia.org/wikipedia/commons/d/d9/10.12.12BrycePapenbrookByLuigiNovi1.jpg    1022
3621    https://upload.wikimedia.org/wikipedia/commons/c/c8/Barbara_Stanwyck%2C_Ziegfeld_girl%2C_by_Alfred_Cheney_Johnston%2C_ca._1924.jpg    1023
3623    https://upload.wikimedia.org/wikipedia/commons/3/3e/Barbara_Stanwyck_-_early_still.JPG    1023
3626    https://upload.wikimedia.org/wikipedia/commons/0/0f/Robert_Taylor_and_Barbara_Stanwyck_in_1941.jpg    1023
3627    https://upload.wikimedia.org/wikipedia/commons/0/0e/Stanwyck_-_1942_film.JPG    1023
3630    https://upload.wikimedia.org/wikipedia/commons/8/87/Charlie_Chaplin_and_Paulette_Goddard_in_The_Great_Dictator_trailer.JPG    1024
3635    https://upload.wikimedia.org/wikipedia/commons/4/41/Goddard-Modern-Times.jpg    1024
3641    https://upload.wikimedia.org/wikipedia/en/f/f8/Don_Murray_-_Eva_Marie_Saint_-_1957.jpg    1025
3642    https://upload.wikimedia.org/wikipedia/commons/b/be/Eva_Marie_Saint_1990.jpg    1025
3643    https://upload.wikimedia.org/wikipedia/commons/d/d8/Eva_marie_saint_marlon_brando_waterfront_14.jpg    1025
3644    https://upload.wikimedia.org/wikipedia/commons/0/04/North_by_Northwest_movie_trailer_screenshot_%2823%29.jpg    1025
3648    https://upload.wikimedia.org/wikipedia/commons/5/54/Sophia_Myles.jpg    1026
3649    https://upload.wikimedia.org/wikipedia/commons/e/e6/Sophia_Myles_-_Berlin_2007_crop.jpg    1026
3651    https://upload.wikimedia.org/wikipedia/commons/e/e3/GabrielMacht07.jpg    1027
3652    https://upload.wikimedia.org/wikipedia/commons/8/85/GabrielMachtMar09.jpg    1027
3654    https://upload.wikimedia.org/wikipedia/commons/6/6d/Andie_McDowell_Cannes_2015.jpg    1029
3656    https://upload.wikimedia.org/wikipedia/commons/b/b0/Gong_Li_Andie_MacDowell_1998.jpg    1029
3658    https://upload.wikimedia.org/wikipedia/commons/2/28/Omar_Sy_C%C3%A9sar_2012.jpg    1030
3659    https://upload.wikimedia.org/wikipedia/commons/f/fd/Omar_Sy_SDCC_2013_X-Men.jpg    1030
3660    https://upload.wikimedia.org/wikipedia/commons/6/66/Jeremy_Bobb_2015.jpg    1031
3663    https://upload.wikimedia.org/wikipedia/commons/4/4e/1961_The_Defenders.jpg    1032
3665    https://upload.wikimedia.org/wikipedia/commons/f/f0/Robert_Reed_1971.JPG    1032
3666    https://upload.wikimedia.org/wikipedia/commons/8/8c/The_Brady_Bunch_Robert_Reed_Florence_Henderson_1973_%28cropped%29.jpg    1032
3668    https://upload.wikimedia.org/wikipedia/commons/b/ba/Lee_J._Cobb_1960s.JPG    1033
3669    https://upload.wikimedia.org/wikipedia/commons/2/2d/Lee_j_cobb_brando_on_the_waterfront_2.jpg    1033
3670    https://upload.wikimedia.org/wikipedia/commons/7/77/Lee_j_cobb_on_the_waterfront_4.jpg    1033
3671    https://upload.wikimedia.org/wikipedia/commons/a/a2/Westwon_trailer_Cobb.png    1033
3676    https://upload.wikimedia.org/wikipedia/commons/d/da/DeanWintersOct10.jpg    1035
3677    https://upload.wikimedia.org/wikipedia/commons/9/9d/Flag_of_Arizona.svg    1035
3684    https://upload.wikimedia.org/wikipedia/commons/e/ec/Drunken-Angel-0.15.37.jpg    1036
3685    https://upload.wikimedia.org/wikipedia/commons/9/98/Shubun_poster_Toshiro_Mifune.jpg    1036
3686    https://upload.wikimedia.org/wikipedia/commons/a/a7/Toshiro_Mifune_wearing_bandana.jpg    1036
3687    https://upload.wikimedia.org/wikipedia/commons/5/5c/%E4%B8%89%E8%88%B9%E6%95%8F%E9%83%8E%E3%81%AE%E5%A2%93%E3%83%BB%E7%A5%9E%E5%A5%88%E5%B7%9D%E7%9C%8C%E5%B7%9D%E5%B4%8E%E5%B8%82%E3%83%BB%E6%98%A5%E7%A7%8B%E8%8B%91.JPG    1036
3688    https://upload.wikimedia.org/wikipedia/commons/c/ca/Christopher_Lloyd_HS_yearbook.jpg    1037
3689    https://upload.wikimedia.org/wikipedia/commons/5/5f/Christopher_Lloyd_May_2015.jpg    1037
3692    https://upload.wikimedia.org/wikipedia/en/e/e7/LucyViv.jpg    1038
3693    https://upload.wikimedia.org/wikipedia/commons/e/ec/Lucy_goes_to_Japan.JPG    1038
3695    https://upload.wikimedia.org/wikipedia/en/9/96/Vivian_Vance_%282%29.jpg    1038
3696    https://upload.wikimedia.org/wikipedia/commons/6/66/Vivian_Vance_1964.JPG    1038
3697    https://upload.wikimedia.org/wikipedia/commons/c/cf/Peter_Mensah_Comic-Con_2009.jpg    1039
3699    https://upload.wikimedia.org/wikipedia/commons/5/52/Shawn_Hatosy_2011.jpg    1040
3703    https://upload.wikimedia.org/wikipedia/commons/0/05/Laurence_Fishburne_2009_-_cropped.jpg    1042
3710    https://upload.wikimedia.org/wikipedia/commons/0/05/Miyano_Mamoru_%22Ajin-_Demi-Human_-_Compel%22_at_Opening_Ceremony_of_the_28th_Tokyo_International_Film_Festival_%2822429977565%29.jpg    1043
3715    https://upload.wikimedia.org/wikipedia/commons/d/d2/McGoohanAllnightlongcrop1.png    1047
3719    https://upload.wikimedia.org/wikipedia/commons/3/35/Edward_Burns_cropped.jpg    1048
3720    https://upload.wikimedia.org/wikipedia/commons/c/c0/Betty_White_Cloris_Leachman_Mary_Tyler_Moore_Show_1973.JPG    1049
3722    https://upload.wikimedia.org/wikipedia/commons/9/9e/ClorisLeachmanJune09.jpg    1049
3723    https://upload.wikimedia.org/wikipedia/en/8/8b/Cloris_Leachman_-_1975.jpg    1049
3724    https://upload.wikimedia.org/wikipedia/commons/f/fe/Cloris_Leachman_Phyllis_1974.JPG    1049
3728    https://upload.wikimedia.org/wikipedia/commons/a/aa/Flag_of_Iowa.svg    1049
3732    https://upload.wikimedia.org/wikipedia/commons/1/1e/CliveStanden.jpg    1051
3733    https://upload.wikimedia.org/wikipedia/commons/e/e2/Clive_Standen_Archer.jpg    1051
3734    https://upload.wikimedia.org/wikipedia/commons/0/06/Clive_Standenby_Gage_Skidmore.jpg    1051
3735    https://upload.wikimedia.org/wikipedia/commons/2/27/Bruce_Bennett.jpg    1052
3736    https://upload.wikimedia.org/wikipedia/commons/5/59/Bruce_Bennett_%28signature%29.png    1052
3737    https://upload.wikimedia.org/wikipedia/commons/c/c7/Bruce_Bennett_Judy_Daktari_1968.JPG    1052
3739    https://upload.wikimedia.org/wikipedia/commons/4/44/Herman_Brix_1928.jpg    1052
3740    https://upload.wikimedia.org/wikipedia/commons/a/ae/NewAdventuresTarzan_yell1.png    1052
3742    https://upload.wikimedia.org/wikipedia/commons/e/e8/AndrewLincoln2015_%28cropped%29.jpg    1054
3743    https://upload.wikimedia.org/wikipedia/commons/7/70/Andrew_Lincoln_2012.jpg    1054
3744    https://upload.wikimedia.org/wikipedia/commons/d/db/Andrew_Lincoln_by_Gage_Skidmore_2.jpg    1054
3748    https://upload.wikimedia.org/wikipedia/commons/5/5a/Keanu_Reeves_%28Berlin_Film_Festival_2009%29_2.jpg    1055
3749    https://upload.wikimedia.org/wikipedia/commons/1/1e/Keanu_Reeves_2014.jpg    1055
3750    https://upload.wikimedia.org/wikipedia/commons/8/89/Keanu_Reeves_Star.jpg    1055
3751    https://upload.wikimedia.org/wikipedia/commons/a/ac/Keanu_Reves_in_Mexico_2.jpg    1055
3755    https://upload.wikimedia.org/wikipedia/commons/7/7e/Jessica-Alba-The-Eye.JPG    1056
3756    https://upload.wikimedia.org/wikipedia/commons/d/de/Jessica_Alba_2010.jpg    1056
3757    https://upload.wikimedia.org/wikipedia/commons/7/71/Jessica_Alba_Cropped2.png    1056
3758    https://upload.wikimedia.org/wikipedia/commons/c/c2/Jessica_Alba_SDCC_2014.jpg    1056
3759    https://upload.wikimedia.org/wikipedia/commons/7/7e/Jessica_Alba_at_Fantastic_Four-_Rise_London_Premiere_5.jpg    1056
3762    https://upload.wikimedia.org/wikipedia/commons/9/99/10.15.11DragonBallZCastByLuigiNovi6.jpg    1057
3764    https://upload.wikimedia.org/wikipedia/commons/8/89/Amy_Acker%2C_James_Carpinello.jpg    1058
3765    https://upload.wikimedia.org/wikipedia/commons/2/20/Amy_Acker_10_Cropped.jpg    1058
3767    https://upload.wikimedia.org/wikipedia/commons/6/66/Charles_Laughton-publicity2.JPG    1059
3768    https://upload.wikimedia.org/wikipedia/commons/9/9f/Charles_Laughton.jpg    1059
3769    https://upload.wikimedia.org/wikipedia/commons/0/07/Charles_Laughton_1899-1962_Actor_lived_here_1928-1931.jpg    1059
3770    https://upload.wikimedia.org/wikipedia/commons/5/57/Charles_Laughton_in_Mutiny_on_the_Bounty_trailer.jpg    1059
3771    https://upload.wikimedia.org/wikipedia/commons/7/78/Charles_Laughton_in_Young_Bess_trailer.jpg    1059
3775    https://upload.wikimedia.org/wikipedia/commons/1/10/The-Suspect-3.jpg    1059
3776    https://upload.wikimedia.org/wikipedia/commons/4/4e/2009%2C_2010%2C_and_2011_U.S._Open_Cups.JPG    1061
3778    https://upload.wikimedia.org/wikipedia/commons/2/22/DrewCareyNov08.jpg    1061
3779    https://upload.wikimedia.org/wikipedia/commons/6/69/DrewCareyPhotoSept01.jpg    1061
3780    https://upload.wikimedia.org/wikipedia/commons/6/64/DrewCareySD.jpg    1061
3781    https://upload.wikimedia.org/wikipedia/commons/8/82/DrewCaryHWoFOct10.jpg    1061
3782    https://upload.wikimedia.org/wikipedia/commons/6/6f/Drew_Carey-Marines.jpg    1061
3783    https://upload.wikimedia.org/wikipedia/en/1/18/Drew_Carey_Book.jpg    1061
3784    https://upload.wikimedia.org/wikipedia/en/f/f7/Drew_Carey_TheSims.jpg    1061
3785    https://upload.wikimedia.org/wikipedia/commons/c/cd/Drewcarey-brownsdedication.jpg    1061
3786    https://upload.wikimedia.org/wikipedia/commons/9/98/Al_Pacino.jpg    1062
3787    https://upload.wikimedia.org/wikipedia/commons/5/56/Al_Pacino_-_Hummel.jpg    1062
3788    https://upload.wikimedia.org/wikipedia/commons/d/d6/Al_Pacino_Cannes_1996.jpg    1062
3789    https://upload.wikimedia.org/wikipedia/commons/3/3a/Al_Pacino_Roma_Film_Fest_cropped.jpg    1062
3791    https://upload.wikimedia.org/wikipedia/commons/e/e8/Manglehorn_03_%2815272211442%29.jpg    1062
3797    https://upload.wikimedia.org/wikipedia/commons/f/f1/Atkinson_Rowan.jpg    1064
3798    https://upload.wikimedia.org/wikipedia/en/8/89/Captain_Edmund_Backadder_promo.jpg    1064
3801    https://upload.wikimedia.org/wikipedia/commons/5/54/RowanAtkinsonMar07.jpg    1064
3802    https://upload.wikimedia.org/wikipedia/commons/a/a2/Rowan_Atkinson%2C_2011.jpg    1064
3806    https://upload.wikimedia.org/wikipedia/commons/d/da/Gus_Sorola_%28cropped%29.jpg    1065
3816    https://upload.wikimedia.org/wikipedia/commons/b/bf/Emile_Hirsch.jpg    1069
3817    https://upload.wikimedia.org/wikipedia/commons/1/12/Emile_Hirsch_TIFF_2012.jpg    1069
3820    https://upload.wikimedia.org/wikipedia/commons/5/55/Ryan_Oneal_-_1968.jpg    1071
3823    https://upload.wikimedia.org/wikipedia/commons/f/f7/Michael_Winterbottom%2C_Steve_Coogan%2C_and_Rob_Brydon-14Sept2005.jpg    1072
3824    https://upload.wikimedia.org/wikipedia/commons/5/50/Steve_Coogan_2013.jpg    1072
3827    https://upload.wikimedia.org/wikipedia/commons/0/0b/10.17.09LindaHamiltonByLuigiNovi.jpg    1073
3830    https://upload.wikimedia.org/wikipedia/commons/d/d9/Jessica_Chastain_%28Berlin_Film_Festival_2011%29.jpg    1074
3831    https://upload.wikimedia.org/wikipedia/commons/8/8b/Jessica_Chastain_at_the_Salome_BFI_London_Premiere.jpg    1074
3832    https://upload.wikimedia.org/wikipedia/commons/e/e8/Jessica_Chastain_by_Gage_Skidmore.jpg    1074
3835    https://upload.wikimedia.org/wikipedia/commons/d/d0/Gian_Maria_Volonte.JPG    1075
3836    https://upload.wikimedia.org/wikipedia/commons/6/63/Gian_Maria_Volont%C3%A8.jpg    1075
3838    https://upload.wikimedia.org/wikipedia/commons/9/92/Volont%C3%A9-Indagine.jpg    1075
3843    https://upload.wikimedia.org/wikipedia/commons/8/88/Her_Premier_NYFF_2013.jpg    1077
3844    https://upload.wikimedia.org/wikipedia/commons/3/31/Joaquin_Cannes_20002_cropped.jpg    1077
3845    https://upload.wikimedia.org/wikipedia/commons/e/e4/Joaquin_Phoenix_2005.jpg    1077
3846    https://upload.wikimedia.org/wikipedia/commons/b/ba/Joaquin_Phoenix_2014.jpg    1077
3850    https://upload.wikimedia.org/wikipedia/commons/d/de/Daniel_Bruhl_Cannes_2014.jpg    1078
3854    https://upload.wikimedia.org/wikipedia/commons/f/fb/Simon_Yam_%40_NYAFF_2010.jpg    1079
3856    https://upload.wikimedia.org/wikipedia/commons/b/b7/Joel_McHale_2014_Comic_Con_%28cropped%29.jpg    1080
3859    https://upload.wikimedia.org/wikipedia/commons/5/5b/JamesVanDerBeekSept2013TIFF.jpg    1081
3863    https://upload.wikimedia.org/wikipedia/en/a/aa/Kruger%2C_Hardy_01.jpg    1083
3864    https://upload.wikimedia.org/wikipedia/commons/0/0c/Pressekonferenz_Hardy_Kr%C3%BCger_-Gemeinsam_gegen_rechte_Gewalt-%2C_K%C3%B6ln-7724.jpg    1083
3866    https://upload.wikimedia.org/wikipedia/commons/6/6e/Roscoe_Karns_Rocky_King_Mary_Karns_1954.JPG    1084
3872    https://upload.wikimedia.org/wikipedia/commons/7/75/John_DiMaggio_by_Gage_Skidmore_2.jpg    1089
3874    https://upload.wikimedia.org/wikipedia/commons/3/30/Elizabeth_McGovern_2012.jpg    1091
3875    https://upload.wikimedia.org/wikipedia/commons/b/b2/Goya_Toledo_-_01.jpg    1092
3877    https://upload.wikimedia.org/wikipedia/commons/2/28/Sarah_Gadon.jpg    1093
3878    https://upload.wikimedia.org/wikipedia/commons/5/53/Sarah_Gadon.png    1093
3879    https://upload.wikimedia.org/wikipedia/commons/0/07/Sarah_Gadon_Cannes_2012.jpg    1093
3881    https://upload.wikimedia.org/wikipedia/commons/8/86/TateDonovan.jpg    1094
3882    https://upload.wikimedia.org/wikipedia/commons/4/45/BarryPepperByPhilKonstantin.jpg    1095
3883    https://upload.wikimedia.org/wikipedia/commons/5/53/2005_National_Medal_of_Arts_winners.jpg    1096
3885    https://upload.wikimedia.org/wikipedia/commons/e/e6/Flag_of_the_United_States_Army.svg    1096
3886    https://upload.wikimedia.org/wikipedia/commons/c/ce/Robert_Duvall_2014_%28cropped%29.jpg    1096
3887    https://upload.wikimedia.org/wikipedia/commons/3/3e/Robert_Duvall_Diane_Lane_1989.jpg    1096
3888    https://upload.wikimedia.org/wikipedia/commons/e/e3/Robert_Duvall_Navy3.jpg    1096
3889    https://upload.wikimedia.org/wikipedia/commons/1/1a/US_flag_48_stars.svg    1096
3891    https://upload.wikimedia.org/wikipedia/commons/0/01/Floris.png    1097
3892    https://upload.wikimedia.org/wikipedia/commons/5/53/OdFest_hauer.jpg    1097
3893    https://upload.wikimedia.org/wikipedia/commons/9/98/RutgerHauerEscapeFromSobiborPublicDomain1.jpg    1097
3894    https://upload.wikimedia.org/wikipedia/commons/f/ff/RutgerHauer_OdFest.jpg    1097
3895    https://upload.wikimedia.org/wikipedia/en/e/ef/Monica_Villa_before_a_rehearsal.jpg    1098
3897    https://upload.wikimedia.org/wikipedia/commons/2/2d/Glenn_Howerton_by_Gage_Skidmore_3.jpg    1099
3898    https://upload.wikimedia.org/wikipedia/commons/9/9f/6.24.04KerryWashingtonByLuigiNovi.jpg    1101
3900    https://upload.wikimedia.org/wikipedia/commons/d/d4/Flickr_-_csztova_-_Kerry_Washington_-_TIFF_09%27_%281%29.jpg    1101
3901    https://upload.wikimedia.org/wikipedia/commons/d/dc/Kerry_Washington_4_Met_Opera_2010_Shankbone.jpg    1101
3902    https://upload.wikimedia.org/wikipedia/commons/1/17/Kerry_Washington_Django_avp.jpg    1101
3903    https://upload.wikimedia.org/wikipedia/commons/7/73/Kerry_Washington_George_Washington_University.jpg    1101
3907    https://upload.wikimedia.org/wikipedia/commons/6/67/Cuba_Gooding_Jr._2012.jpg    1102
3910    https://upload.wikimedia.org/wikipedia/commons/7/71/Jane_Eyre-Joan_Fontaine-2.jpg    1104
3911    https://upload.wikimedia.org/wikipedia/commons/5/50/Joan_Fontaine_1943.jpg    1104
3912    https://upload.wikimedia.org/wikipedia/commons/3/3a/Joan_Fontaine_and_Gary_Cooper.jpg    1104
3913    https://upload.wikimedia.org/wikipedia/commons/b/b3/Joan_Fontaine_in_Suspicion_trailer.JPG    1104
3914    https://upload.wikimedia.org/wikipedia/commons/c/cf/Joan_Fontaine_in_The_Women_trailer.jpg    1104
3915    https://upload.wikimedia.org/wikipedia/commons/c/c5/Olivia_DeHavilland-2.JPG    1104
3918    https://upload.wikimedia.org/wikipedia/commons/5/5b/GaryOldman-1.jpg    1105
3919    https://upload.wikimedia.org/wikipedia/commons/c/c3/Gary_Oldman_2000.jpg    1105
3920    https://upload.wikimedia.org/wikipedia/commons/d/da/Gary_Oldman_at_the_London_premiere_of_Tinker_Tailor_Soldier_Spy.png    1105
3921    https://upload.wikimedia.org/wikipedia/commons/e/e6/Gary_Oldman_by_Gage_Skidmore.jpg    1105
3922    https://upload.wikimedia.org/wikipedia/commons/f/f8/Oldman_2007.JPG    1105
3926    https://upload.wikimedia.org/wikipedia/commons/a/a9/Ken_Cheeseman.jpg    1106
3931    https://upload.wikimedia.org/wikipedia/commons/c/c9/Tom_Hiddleston_%28Avengers_Red_Carpet%29.jpg    1109
3932    https://upload.wikimedia.org/wikipedia/commons/1/15/Tom_Hiddleston_Jaguar_ad_February_2014_%28cropped%29.jpg    1109
3933    https://upload.wikimedia.org/wikipedia/commons/6/66/Tom_Hiddleston_Sign.png    1109
3934    https://upload.wikimedia.org/wikipedia/commons/7/7f/Tom_Hiddleston_by_Gage_Skidmore_%28cropped%29.jpg    1109
3935    https://upload.wikimedia.org/wikipedia/commons/3/39/Tom_Hiddleston_by_Gage_Skidmore_2.jpg    1109
3937    https://upload.wikimedia.org/wikipedia/commons/f/f1/Headey%2C_Lena_%282007%29.jpg    1111
3938    https://upload.wikimedia.org/wikipedia/commons/a/a2/LenaHeadeyMar07.jpg    1111
3939    https://upload.wikimedia.org/wikipedia/commons/0/04/Lena_Headey_Primetime_Emmy_Awards_2014.jpg    1111
3943    https://upload.wikimedia.org/wikipedia/commons/a/a6/Christina_Ricci_at_Gramercy_Park_Hotel.jpg    1114
3944    https://upload.wikimedia.org/wikipedia/commons/0/08/Christina_Ricci_by_David_Shankbone.jpg    1114
3946    https://upload.wikimedia.org/wikipedia/commons/5/5c/Emile_Hirsch_and_Christina_Ricci_by_David_Shankbone.jpg    1114
3947    https://upload.wikimedia.org/wikipedia/commons/2/2e/Bellantonio-1960-Cardinale.png    1116
3948    https://upload.wikimedia.org/wikipedia/commons/0/03/Claudia_Cardinale%2C_Women%27s_World_Awards_2009_b.jpg    1116
3949    https://upload.wikimedia.org/wikipedia/commons/1/11/Claudia_Cardinale_1963.jpg    1116
3950    https://upload.wikimedia.org/wikipedia/commons/5/5b/Claudia_Cardinale_1995.jpg    1116
3951    https://upload.wikimedia.org/wikipedia/commons/a/ae/Claudia_Cardinale_in_Lost_Command.jpg    1116
3953    https://upload.wikimedia.org/wikipedia/commons/a/a8/Guappi-Cardinale.png    1116
3954    https://upload.wikimedia.org/wikipedia/commons/3/3b/Il_gattopardo.jpg    1116
3955    https://upload.wikimedia.org/wikipedia/commons/8/8c/Jacques_Baratier.jpg    1116
3956    https://upload.wikimedia.org/wikipedia/commons/6/6f/Klaus_Kinski_Cannes-%28retouched%29.jpg    1116
3958    https://upload.wikimedia.org/wikipedia/commons/d/dc/F_Murray.Abraham_cropped.jpg    1117
3960    https://upload.wikimedia.org/wikipedia/commons/f/f1/DANIEL_RADCLIFFE_07.jpg    1118
3961    https://upload.wikimedia.org/wikipedia/commons/1/1a/Daniel_Radcliffe%2C_Emma_Watson_%26_Rupert_Grint_colour.jpg    1118
3962    https://upload.wikimedia.org/wikipedia/commons/2/2e/Daniel_Radcliffe%2C_November_2010.jpg    1118
3963    https://upload.wikimedia.org/wikipedia/commons/9/99/Daniel_Radcliffe_2009.jpg    1118
3964    https://upload.wikimedia.org/wikipedia/commons/7/70/Daniel_Radcliffe_2013.jpg    1118
3965    https://upload.wikimedia.org/wikipedia/commons/a/a2/Daniel_Radcliffe_SDCC_2014.jpg    1118
3966    https://upload.wikimedia.org/wikipedia/commons/a/ad/Harry_Potter_cast.jpg    1118
3971    https://upload.wikimedia.org/wikipedia/commons/f/fc/James_Earl_Jones_%288516667383%29.jpg    1119
3972    https://upload.wikimedia.org/wikipedia/commons/2/2e/Robert_Earl_Jones_in_Langston_Hughes%27_Don%27t_You_Want_to_be_Free%3F_%2823_June_1938%3B_photograph_by_Carl_Van_Vechten%29.jpg    1119
3989    https://upload.wikimedia.org/wikipedia/commons/f/f9/Double-dagger-14-plain.png    1128
3990    https://upload.wikimedia.org/wikipedia/commons/4/4a/Gillian-Anderson-Buskaid-London-2004.jpg    1128
3991    https://upload.wikimedia.org/wikipedia/commons/5/5b/GillianAnderson2008-cropped.jpg    1128
3992    https://upload.wikimedia.org/wikipedia/commons/0/04/Gillian_Anderson_%289347352920%29.jpg    1128
3993    https://upload.wikimedia.org/wikipedia/commons/7/79/Gillian_Anderson_2013_%28cropped%29.jpg    1128
3994    https://upload.wikimedia.org/wikipedia/commons/8/81/Gillian_anderson_lk.jpg    1128
3997    https://upload.wikimedia.org/wikipedia/en/8/8a/RehnaHaiTeriPalkonKiChhaonMein.JPG    1129
3999    https://upload.wikimedia.org/wikipedia/commons/9/93/John_Williams_%26_Stanley_Donan.jpg    1130
4000    https://upload.wikimedia.org/wikipedia/commons/a/a0/John_Williams_Hollywood_Bowl.jpg    1130
4001    https://upload.wikimedia.org/wikipedia/commons/c/c6/John_Williams_scoring_Raiders.jpg    1130
4002    https://upload.wikimedia.org/wikipedia/commons/b/b8/John_Williams_tux.jpg    1130
4003    https://upload.wikimedia.org/wikipedia/commons/1/12/Johnwilliams2006.JPG    1130
4005    https://upload.wikimedia.org/wikipedia/commons/7/78/Williamsautograph.jpg    1130
4006    https://upload.wikimedia.org/wikipedia/commons/9/9e/DermotCrowley.jpg    1132
4009    https://upload.wikimedia.org/wikipedia/commons/8/81/John_Heald_introduces_actress_Marcia_Gay_Harden_on_Carnival_Dream.jpg    1133
4010    https://upload.wikimedia.org/wikipedia/commons/4/4e/Marcia_Gay_Harden_2013_%28cropped%29.jpg    1133
4012    https://upload.wikimedia.org/wikipedia/commons/3/33/File-Uma_Thurman_at_the_Tribeca_Film_Festival_4.jpg    1134
4013    https://upload.wikimedia.org/wikipedia/commons/2/24/Quentin_Tarantino_Uma_Thurman_Cannes_2014_2.jpg    1134
4015    https://upload.wikimedia.org/wikipedia/commons/6/6a/Uma_Thurman_-_Cannes_2000.jpg    1134
4016    https://upload.wikimedia.org/wikipedia/commons/6/65/Uma_Thurman_Cannes_2011.jpg    1134
4017    https://upload.wikimedia.org/wikipedia/commons/8/82/Uma_Thurman_photographed_by_Jiyang_Chen.jpg    1134
4020    \N    1135
4021    https://upload.wikimedia.org/wikipedia/commons/7/76/Margarethkrook.jpg    1135
4023    https://upload.wikimedia.org/wikipedia/commons/5/54/Chris_Moltisanti.jpg    1136
4026    https://upload.wikimedia.org/wikipedia/commons/0/0d/Norcat.jpg    1138
4027    https://upload.wikimedia.org/wikipedia/commons/7/7e/StephenFryWorldPride.jpg    1138
4028    https://upload.wikimedia.org/wikipedia/commons/6/61/Stephen_Fry_Book_Signing.jpg    1138
4029    https://upload.wikimedia.org/wikipedia/commons/1/15/Stephen_Fry_cropped.jpg    1138
4030    https://upload.wikimedia.org/wikipedia/commons/5/58/Stephen_Fry_signature.svg    1138
4031    https://upload.wikimedia.org/wikipedia/commons/a/ac/Stephenfrynightingale.JPG    1138
4034    https://upload.wikimedia.org/wikipedia/commons/4/4f/Dennis_Haysbert_3_March_2015.jpg    1139
4036    https://upload.wikimedia.org/wikipedia/en/3/3b/Sandy_Dennis.jpg    1140
4038    https://upload.wikimedia.org/wikipedia/commons/9/96/Jean_Hazlewood_and_Richard_Widmark_1950s.jpg    1141
4039    https://upload.wikimedia.org/wikipedia/en/c/c1/Kissofdeath.jpg    1141
4042    https://upload.wikimedia.org/wikipedia/en/6/68/Richard_Widmark_-_1973.jpg    1141
4043    https://upload.wikimedia.org/wikipedia/commons/5/5f/Richard_widmark_broken_lance2.jpg    1141
4045    https://upload.wikimedia.org/wikipedia/commons/7/7b/JenaMalone07TIFF.jpg    1142
4046    https://upload.wikimedia.org/wikipedia/commons/e/e4/Jena_Malone.jpg    1142
4047    https://upload.wikimedia.org/wikipedia/commons/1/16/Jena_Malone_at_KVIFF_2015_%28crop%29_2.jpg    1142
4049    https://upload.wikimedia.org/wikipedia/commons/e/e4/Dar%C3%ADo_Grandinetti.jpg    1143
4051    https://upload.wikimedia.org/wikipedia/commons/e/e2/2011_Tom_Hardy_TTSS_Premiere.jpg    1144
4053    https://upload.wikimedia.org/wikipedia/commons/7/75/TomHardyJuly10.jpg    1144
4054    https://upload.wikimedia.org/wikipedia/commons/7/73/Tom_Hardy_Cannes_2015.jpg    1144
4055    https://upload.wikimedia.org/wikipedia/commons/4/45/Tom_Hardy_TIFF_2014.jpg    1144
4058    https://upload.wikimedia.org/wikipedia/commons/7/78/J%C3%BCrgen_Prochnow_o.jpg    1145
4059    https://upload.wikimedia.org/wikipedia/commons/8/8a/Loudspeaker.svg    1145
4060    https://upload.wikimedia.org/wikipedia/commons/2/2f/Sumi_Shimamoto_at_Sakura-Con_2007.png    1146
4065    https://upload.wikimedia.org/wikipedia/commons/c/ce/Hugh_Bonneville_MingFilmFest_2011_n1.jpg    1148
4067    https://upload.wikimedia.org/wikipedia/commons/f/f5/George_Newbern_Muppets_Most_Wanted_Premiere_%28cropped%29.jpg    1149
4069    https://upload.wikimedia.org/wikipedia/commons/1/13/Estatua_Woody_Allen_en_Oviedo.jpg    1150
4070    https://upload.wikimedia.org/wikipedia/en/3/37/Insidewoodyallen.png    1150
4071    https://upload.wikimedia.org/wikipedia/commons/6/65/Soon_Yi_Previn_and_Woody_Allen_at_the_Tribeca_Film_Festival.jpg    1150
4073    https://upload.wikimedia.org/wikipedia/commons/7/70/Woody.Allen.band.jpg    1150
4074    https://upload.wikimedia.org/wikipedia/commons/3/3c/Woody_Allen_%282006%29.jpeg    1150
4075    https://upload.wikimedia.org/wikipedia/en/4/44/Woody_Allen_-_Kup.JPG    1150
4076    https://upload.wikimedia.org/wikipedia/commons/0/02/Woody_Allen_-_Sam.JPG    1150
4077    https://upload.wikimedia.org/wikipedia/commons/2/2c/Woody_Allen_Cannes_2015.jpg    1150
4081    https://upload.wikimedia.org/wikipedia/commons/8/80/John_Gallagher%2C_Jr._at_PaleyFest_2013.jpg    1153
4082    https://upload.wikimedia.org/wikipedia/commons/e/ef/Alan_Davies.jpg    1155
4083    https://upload.wikimedia.org/wikipedia/commons/0/04/Alan_Davies2.jpg    1155
4084    https://upload.wikimedia.org/wikipedia/commons/e/ec/Tom%2C_Alan_Davies%2C_and_Dom_during_2014_FIFA_World_Cup.jpg    1155
4085    https://upload.wikimedia.org/wikipedia/commons/5/59/ActorBruceWillis_Iraq.jpg    1156
4086    https://upload.wikimedia.org/wikipedia/commons/c/cc/BruceWillis2002.jpg    1156
4087    https://upload.wikimedia.org/wikipedia/commons/c/c6/BruceWillisLFDHpremiere07.jpg    1156
4088    https://upload.wikimedia.org/wikipedia/commons/9/96/Bruce_Willis_-_1987.jpg    1156
4089    https://upload.wikimedia.org/wikipedia/commons/7/7d/Bruce_Willis_Cannes_2006.jpg    1156
4090    https://upload.wikimedia.org/wikipedia/commons/3/3f/Bruce_Willis_Walk_of_Fame.jpg    1156
4091    https://upload.wikimedia.org/wikipedia/commons/0/03/Bruce_Willis_by_Gage_Skidmore.jpg    1156
4092    https://upload.wikimedia.org/wikipedia/commons/e/eb/Bruce_willis_cinedom.jpg    1156
4095    https://upload.wikimedia.org/wikipedia/commons/8/89/Bronze_medal_icon.svg    1157
4096    https://upload.wikimedia.org/wikipedia/commons/6/60/Bronze_medal_icon_%28B_initial%29.svg    1157
4097    https://upload.wikimedia.org/wikipedia/commons/3/36/Flag_of_Albania.svg    1157
4103    https://upload.wikimedia.org/wikipedia/commons/f/f0/Flag_of_Slovenia.svg    1157
4106    https://upload.wikimedia.org/wikipedia/commons/4/4f/Eric_Idle_%282%29.jpg    1158
4107    https://upload.wikimedia.org/wikipedia/commons/9/9c/Eric_Idle_with_Guitar.jpg    1158
4110    https://upload.wikimedia.org/wikipedia/commons/f/fd/EdHarris10TIFF.jpg    1159
4111    https://upload.wikimedia.org/wikipedia/commons/6/6d/Ed_Harris_and_Karen_Kondazian.jpg    1159
4112    https://upload.wikimedia.org/wikipedia/commons/c/c8/Ed_Harris_at_TIFF_2005.jpg    1159
4114    https://upload.wikimedia.org/wikipedia/commons/b/bd/Jorge_Garcia_2014_%28cropped%29.jpg    1160
4115    https://upload.wikimedia.org/wikipedia/commons/5/57/Jorge_Garcia_by_Gage_Skidmore_2.jpg    1160
4118    https://upload.wikimedia.org/wikipedia/commons/f/f9/Leonardo_DiCaprio.jpeg    1161
4119    https://upload.wikimedia.org/wikipedia/commons/7/71/Leonardo_DiCaprio.jpg    1161
4120    https://upload.wikimedia.org/wikipedia/commons/4/4b/Leonardo_DiCaprio_%28Berlin_Film_Festival_2010%29_2_%28cropped%29.jpg    1161
4121    https://upload.wikimedia.org/wikipedia/commons/8/80/Leonardo_DiCaprio_2002.jpg    1161
4122    https://upload.wikimedia.org/wikipedia/commons/b/bc/Leonardo_DiCaprio_January_2014.jpg    1161
4123    https://upload.wikimedia.org/wikipedia/commons/5/57/Leonardo_DiCaprio_avp_2013_3.jpg    1161
4124    https://upload.wikimedia.org/wikipedia/commons/2/27/Leonardo_DiCaprio_by_David_Shankbone.jpg    1161
4127    https://upload.wikimedia.org/wikipedia/commons/3/39/Flickr_-_Shinrya_-_Gary_Oldman_%5E_Malcolm_McDowell.jpg    1162
4128    https://upload.wikimedia.org/wikipedia/en/2/29/Malcolm_McDowell_-_1977.jpg    1162
4129    https://upload.wikimedia.org/wikipedia/commons/9/91/Malcolm_McDowell_Cannes_2011.jpg    1162
4130    https://upload.wikimedia.org/wikipedia/commons/b/b7/Malcolm_McDowell_LF.JPG    1162
4131    https://upload.wikimedia.org/wikipedia/commons/e/e2/Mcdowellgfdl.PNG    1162
4133    https://upload.wikimedia.org/wikipedia/commons/2/22/Webbcropped.jpg    1163
4135    https://upload.wikimedia.org/wikipedia/commons/7/79/Lorraine_Bracco.jpg    1164
4136    https://upload.wikimedia.org/wikipedia/commons/1/1b/Lorraine_Bracco_HS_Yearbook.jpeg    1164
4138    https://upload.wikimedia.org/wikipedia/commons/d/d7/Tim_McInnerny.jpg    1165
4140    https://upload.wikimedia.org/wikipedia/commons/5/55/Kristen_Wiig_TIFF_2014.jpg    1166
4142    https://upload.wikimedia.org/wikipedia/commons/8/8e/Matthew_Holness_as_Merriman_Wier.jpg    1167
4145    https://upload.wikimedia.org/wikipedia/commons/4/47/David_Attenborough_%28cropped%29.jpg    1169
4146    https://upload.wikimedia.org/wikipedia/commons/2/27/David_Attenborough_NASA.jpg    1169
4148    https://upload.wikimedia.org/wikipedia/commons/9/95/Sirdavidia_solannona_Couvreur_%26_Sauquet_%28staminate_flower%29.jpg    1169
4149    https://upload.wikimedia.org/wikipedia/commons/6/61/Weston_Library_Opening_by_John_Cairns_20.3.15-139.jpg    1169
4152    https://upload.wikimedia.org/wikipedia/commons/b/bf/Payman_maadi.jpg    1171
4159    https://upload.wikimedia.org/wikipedia/commons/e/e7/George_Kennedy_%28handprints_in_cement%29.jpg    1172
4160    https://upload.wikimedia.org/wikipedia/commons/0/06/George_Kennedy_1975.JPG    1172
4161    https://upload.wikimedia.org/wikipedia/commons/e/ef/George_Kennedy_Sarge_1971.JPG    1172
4162    https://upload.wikimedia.org/wikipedia/commons/a/a1/George_Kennedy_The_Blue_Knight_1976.JPG    1172
4164    https://upload.wikimedia.org/wikipedia/commons/0/04/Domhnall_Gleeson_%28Berlin_Film_Festival_2011%29_2.jpg    1173
4165    https://upload.wikimedia.org/wikipedia/commons/1/14/Domhnall_Gleeson_by_Gage_Skidmore.jpg    1173
4168    https://upload.wikimedia.org/wikipedia/commons/3/35/George_C._Scott_-_1958.jpg    1174
4169    https://upload.wikimedia.org/wikipedia/commons/4/46/George_C._Scott_-_Geraldine_Page_-_1959.JPG    1174
4170    https://upload.wikimedia.org/wikipedia/commons/0/07/George_C._Scott_-_publicity.JPG    1174
4171    https://upload.wikimedia.org/wikipedia/commons/7/7e/George_C._Scott_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California.JPG    1174
4174    https://upload.wikimedia.org/wikipedia/commons/1/15/Billy_Crudup_May_2015.jpg    1175
4175    https://upload.wikimedia.org/wikipedia/commons/5/5f/Billy_crudup.JPG    1175
4178    https://upload.wikimedia.org/wikipedia/commons/6/62/Jonathan_Frakes_cropped1.jpg    1177
4186    https://upload.wikimedia.org/wikipedia/commons/9/9f/Martin-balsam-trailer.jpg    1178
4189    https://upload.wikimedia.org/wikipedia/commons/b/b6/Intelligence_-_Josh_Holloway.jpg    1179
4190    https://upload.wikimedia.org/wikipedia/commons/1/1b/Josh_Holloway_Comic-Con_cropped.jpg    1179
4191    https://upload.wikimedia.org/wikipedia/commons/6/63/Holliday_Grainger_at_the_premiere_of_Great_Expectations%2C_Toronto_Film_Festival_2012.jpg    1180
4195    https://upload.wikimedia.org/wikipedia/commons/7/70/Sam_Waterston_at_PaleyFest_2013.jpg    1182
4196    https://upload.wikimedia.org/wikipedia/en/3/3a/Sam_with_gifts.png    1182
4197    https://upload.wikimedia.org/wikipedia/commons/b/b0/Charlie_Day%2C_2011.jpg    1183
4198    https://upload.wikimedia.org/wikipedia/commons/f/fe/Charlie_Day_by_Gage_Skidmore.jpg    1183
4200    https://upload.wikimedia.org/wikipedia/commons/e/eb/26th_Tokyo_International_Film_Festival_Kugimiya_Rie_from_DOKIDOKI_PRETTY_CURE%21_THE_MOVIE_Memories_for_the_Future.jpg    1185
4204    https://upload.wikimedia.org/wikipedia/commons/6/6a/Emily_Blunt_and_John_Krasinski.jpg    1186
4205    https://upload.wikimedia.org/wikipedia/commons/c/c7/John_Krasinski_and_Josh_Wood_%28cropped%29.jpg    1186
4212    https://upload.wikimedia.org/wikipedia/en/c/c4/Fasttimesmrhand.jpg    1187
4215    https://upload.wikimedia.org/wikipedia/commons/e/e0/Flag_of_Louisiana.svg    1187
4218    https://upload.wikimedia.org/wikipedia/commons/c/c8/My_Favorite_Martian_Ray_Walston_1963.JPG    1187
4222    https://upload.wikimedia.org/wikipedia/commons/b/bd/Joshua_Jackson_2012.jpg    1190
4223    https://upload.wikimedia.org/wikipedia/commons/7/7f/Joshua_Jackson_at_the_premiere_of_Bobby%2C_Toronto_Film_Festival_2006.jpg    1190
4226    https://upload.wikimedia.org/wikipedia/commons/6/61/Timothy_OlyphantPeabody.png    1191
4227    https://upload.wikimedia.org/wikipedia/commons/d/d7/Timothy_Olyphant_March_19%2C_2014_%28cropped%29.jpg    1191
4229    https://upload.wikimedia.org/wikipedia/commons/f/fe/Julie_Bowen_2009.jpg    1192
4230    https://upload.wikimedia.org/wikipedia/commons/4/44/Julie_Bowen_at_2015_PaleyFest.jpg    1192
4231    https://upload.wikimedia.org/wikipedia/commons/0/01/AnthonyPerkins.jpg    1193
4233    https://upload.wikimedia.org/wikipedia/commons/f/f4/Evening_Primrose_Anthony_Perkins_Charmian_Carr_1966_redone.jpg    1193
4239    https://upload.wikimedia.org/wikipedia/commons/d/de/RachelMcAdamsO7TIFF.jpg    1194
4240    https://upload.wikimedia.org/wikipedia/commons/f/ff/Rachel_McAdams%2C_TIFF_2012_%28bright_crop%29.jpg    1194
4241    https://upload.wikimedia.org/wikipedia/commons/8/8e/Rachel_McAdams_3.jpg    1194
4242    https://upload.wikimedia.org/wikipedia/commons/d/de/Rachel_McAdams_at_Jason_Reitman%27s_live_table_read_of_The_Princess_Bride%2C_2015_Toronto_Film_Festival.png    1194
4245    https://upload.wikimedia.org/wikipedia/commons/3/39/Meghan_Markle_3441.jpg    1195
4246    https://upload.wikimedia.org/wikipedia/commons/8/8e/Meghan_Markle_in_January_2013_%28cropped%29.jpg    1195
4248    https://upload.wikimedia.org/wikipedia/commons/5/51/Garrett_Hedlund_Cannes_2013.jpg    1196
4249    https://upload.wikimedia.org/wikipedia/commons/6/6a/Garrett_Hedlund_by_Gage_Skidmore_2.jpg    1196
4250    https://upload.wikimedia.org/wikipedia/commons/7/73/Katheryn_Winnick.jpg    1197
4251    https://upload.wikimedia.org/wikipedia/commons/2/23/Billy_Crystal_Soap_1977.jpg    1198
4252    https://upload.wikimedia.org/wikipedia/commons/0/07/Billy_Crystal_VF_2012_Shankbone.JPG    1198
4253    https://upload.wikimedia.org/wikipedia/commons/7/78/Soap_full_cast_1977.JPG    1198
4255    https://upload.wikimedia.org/wikipedia/commons/0/03/Paul_Reiser_2011_cropped.jpg    1199
4259    https://upload.wikimedia.org/wikipedia/commons/2/25/Vladimir_Vdovichenkov.jpg    1200
4260    https://upload.wikimedia.org/wikipedia/commons/8/8e/Vladimir_Vdovichenkov_3_November_2010.jpg    1200
4261    https://upload.wikimedia.org/wikipedia/commons/b/b4/%D0%92%D0%B4%D0%BE%D0%B2%D0%B8%D1%87%D0%B5%D0%BD%D0%BA%D0%BE%D0%B2_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80.jpg    1200
4264    https://upload.wikimedia.org/wikipedia/commons/c/c3/RichardAttenborough07TIFF.jpg    1201
4265    https://upload.wikimedia.org/wikipedia/en/f/f0/Richard_Attenborough_-_1965.jpg    1201
4266    https://upload.wikimedia.org/wikipedia/commons/9/9b/Richard_Attenborough_1975.jpg    1201
4267    https://upload.wikimedia.org/wikipedia/commons/7/73/Sir_Richard_Attenborough.jpg    1201
4269    https://upload.wikimedia.org/wikipedia/commons/3/37/Mastroianni_1991.2.jpg    1202
4274    https://upload.wikimedia.org/wikipedia/commons/7/77/Tamsin_Greig_2010.jpg    1206
4278    https://upload.wikimedia.org/wikipedia/commons/a/a2/David_E._Kelley_and_Michelle_Pfeiffer_at_the_47th_Emmy_Awards_1994.jpg    1208
4279    https://upload.wikimedia.org/wikipedia/commons/c/cd/Michelle_Pfeiffer_01.jpg    1208
4280    https://upload.wikimedia.org/wikipedia/commons/a/aa/Michelle_Pfeiffer_1990.jpg    1208
4281    https://upload.wikimedia.org/wikipedia/commons/7/70/Michelle_Pfeiffer_2007.jpg    1208
4285    https://upload.wikimedia.org/wikipedia/commons/3/3a/Clark_Gable_-_publicity.JPG    1209
4286    https://upload.wikimedia.org/wikipedia/commons/e/e0/Clark_Gable_1938.jpg    1209
4287    https://upload.wikimedia.org/wikipedia/commons/7/71/Clark_Gable_8th-AF-Britain1943.jpg    1209
4288    https://upload.wikimedia.org/wikipedia/commons/e/e9/Clark_Gable_Grave.JPG    1209
4289    https://upload.wikimedia.org/wikipedia/commons/5/54/Clark_Gable_and_Claudette_Colbert_in_It_Happened_One_Night_film_trailer.jpg    1209
4290    https://upload.wikimedia.org/wikipedia/commons/8/87/Clark_Gable_signature.svg    1209
4292    https://upload.wikimedia.org/wikipedia/commons/e/ec/Conf55-07x.jpg    1209
4298    https://upload.wikimedia.org/wikipedia/commons/0/01/Hayley_Atwell_Toronto_Film_Festival_2007_%28cropped%29.jpg    1212
4299    https://upload.wikimedia.org/wikipedia/commons/3/35/Hayley_Atwell_by_Gage_Skidmore.jpg    1212
4300    https://upload.wikimedia.org/wikipedia/commons/b/b4/Astronaut_Salutes_Nimoy_From_Orbit.jpg    1213
4304    https://upload.wikimedia.org/wikipedia/commons/d/da/ISS-42_Samantha_Cristoforetti_Leonard_Nimoy_tribute.jpg    1213
4305    https://upload.wikimedia.org/wikipedia/commons/0/0b/Kid_Monk_Baroni_2.jpg    1213
4306    https://upload.wikimedia.org/wikipedia/en/3/3d/Leonard_Nimoy_%28handprints_in_cement%29.jpg    1213
4307    https://upload.wikimedia.org/wikipedia/commons/f/f0/LeonardNimoyHWOFSept2012.jpg    1213
4309    https://upload.wikimedia.org/wikipedia/commons/9/96/Guinness_graves.jpeg    1214
4311    https://upload.wikimedia.org/wikipedia/commons/0/0b/Sir_Alec_Guinness_Allan_Warren.jpg    1214
4312    https://upload.wikimedia.org/wikipedia/commons/d/da/Trailer-Doctor_Zhivago-Yevgraf_and_Tonya_Komarovskaya.jpg    1214
4314    https://upload.wikimedia.org/wikipedia/commons/0/07/ClintEastwoodCannesMay08.jpg    1215
4315    https://upload.wikimedia.org/wikipedia/commons/9/99/ClintEastwoodReagan.jpg    1215
4316    https://upload.wikimedia.org/wikipedia/commons/6/68/ClintEastwoodSept10TIFF.jpg    1215
4317    https://upload.wikimedia.org/wikipedia/commons/1/1e/ClintEastwoodtakepride1.jpg    1215
4318    https://upload.wikimedia.org/wikipedia/commons/b/bc/Clint_Eastwood-Holden-Breezy.jpg    1215
4319    https://upload.wikimedia.org/wikipedia/commons/9/99/Clint_Eastwood-Rawhide_publicity.JPG    1215
4320    https://upload.wikimedia.org/wikipedia/commons/f/f3/Clint_Eastwood_-_1960s.JPG    1215
4321    https://upload.wikimedia.org/wikipedia/commons/2/26/Clint_Eastwood_Cannes_1993.jpg    1215
4326    https://upload.wikimedia.org/wikipedia/commons/8/85/Clock_Tower_-_Palace_of_Westminster%2C_London_-_May_2007_icon.png    1217
4328    https://upload.wikimedia.org/wikipedia/commons/0/0c/Julia_McKenzie_Head_Shot.jpg    1217
4333    https://upload.wikimedia.org/wikipedia/commons/2/2f/Jeff_Bridges_at_TIFF_2009_Premiere.jpg    1218
4334    https://upload.wikimedia.org/wikipedia/commons/b/ba/Jeff_Bridges_at_the_2010_Independent_Spirit_Awards.jpg    1218
4335    https://upload.wikimedia.org/wikipedia/commons/f/f5/Jeff_Bridges_by_Gage_Skidmore.jpg    1218
4336    https://upload.wikimedia.org/wikipedia/commons/b/b8/Jeff_Bridges_by_Gage_Skidmore_2.jpg    1218
4337    https://upload.wikimedia.org/wikipedia/commons/4/47/Jeff_bridges_0001.jpg    1218
4339    https://upload.wikimedia.org/wikipedia/commons/5/54/Robert_Knepper_Brussels_2016.jpg    1219
4343    https://upload.wikimedia.org/wikipedia/commons/6/69/James_Cosmo_2014_%28cropped%29.jpg    1221
4348    https://upload.wikimedia.org/wikipedia/commons/e/ef/Simon_Helberg_at_PaleyFest_2013.jpg    1223
4350    https://upload.wikimedia.org/wikipedia/commons/d/d6/Flickr_-_csztova_-_Lisa_Kudrow_-_TIFF_09%27.jpg    1224
4351    https://upload.wikimedia.org/wikipedia/commons/7/7c/Lisa_Kudrow.jpg    1224
4352    https://upload.wikimedia.org/wikipedia/commons/3/3f/Lisa_Kudrow_crop.jpg    1224
4353    https://upload.wikimedia.org/wikipedia/commons/7/71/Lisakudrowvascol.jpg    1224
4356    https://upload.wikimedia.org/wikipedia/commons/7/75/Craig_Ferguson_by_Gage_Skidmore.jpg    1226
4357    https://upload.wikimedia.org/wikipedia/commons/7/75/Craig_Ferguson_in_2007.jpg    1226
4358    https://upload.wikimedia.org/wikipedia/en/b/b9/Flag_of_Australia.svg    1226
4360    https://upload.wikimedia.org/wikipedia/commons/7/78/Flag_of_Chile.svg    1226
4364    https://upload.wikimedia.org/wikipedia/commons/f/fc/Flag_of_Mexico.svg    1226
4366    https://upload.wikimedia.org/wikipedia/commons/2/2a/Naseeruddin_Shah%2C_Ratna_Pathak_at_%27Gangs_Of_Wasseypur%27_screening_10.jpg    1227
4367    https://upload.wikimedia.org/wikipedia/commons/d/d7/Ratna_Pathak.jpg    1227
4369    https://upload.wikimedia.org/wikipedia/commons/0/03/2013_Golden_Globe_Awards_%288378777269%29.jpg    1229
4370    https://upload.wikimedia.org/wikipedia/commons/c/c5/BillMurraySept10TIFF.jpg    1229
4371    https://upload.wikimedia.org/wikipedia/commons/0/0a/Bill_Murray%2C_Monuments_Men_premiere.jpg    1229
4372    https://upload.wikimedia.org/wikipedia/commons/7/76/Bill_Murray_Fighting_Illini_2005.jpg    1229
4373    https://upload.wikimedia.org/wikipedia/commons/1/1b/Bill_Murray_by_Gage_Skidmore.jpg    1229
4375    https://upload.wikimedia.org/wikipedia/commons/2/2b/CrossroadsGuitarFestival2007.jpg    1229
4381    https://upload.wikimedia.org/wikipedia/commons/e/e6/ZachBraffSept10TIFF.jpg    1230
4382    https://upload.wikimedia.org/wikipedia/commons/2/2e/Zach_Braff_2011_Shankbone.JPG    1230
4383    https://upload.wikimedia.org/wikipedia/commons/5/58/Sa%C3%AFd_Taghmaoui_2014.jpg    1231
4385    https://upload.wikimedia.org/wikipedia/commons/5/57/Matthew_McConaughey.jpg    1232
4386    https://upload.wikimedia.org/wikipedia/commons/8/8e/Matthew_McConaughey_-_Goldene_Kamera_2014_-_Berlin.jpg    1232
4387    https://upload.wikimedia.org/wikipedia/commons/c/c9/Matthew_McConaughey_Cannes_2015.jpg    1232
4388    https://upload.wikimedia.org/wikipedia/commons/9/90/Matthew_McCoonaughey_at_the_Dallas_Buyers_Club.jpg    1232
4389    https://upload.wikimedia.org/wikipedia/commons/b/ba/McConaugheyAlves2010-Crop.jpg    1232
4394    https://upload.wikimedia.org/wikipedia/en/a/a1/Room_at_the_Top_screenshot.jpg    1234
4395    https://upload.wikimedia.org/wikipedia/commons/0/0b/Simone_Signoret.jpg    1234
4398    https://upload.wikimedia.org/wikipedia/commons/e/e8/PaulGiamattiSept2013TIFF.jpg    1235
4399    https://upload.wikimedia.org/wikipedia/commons/d/d7/Paul_Giamatti_2010_TIFF.jpg    1235
4403    https://upload.wikimedia.org/wikipedia/commons/4/40/JennaFischerMay08.jpg    1238
4404    https://upload.wikimedia.org/wikipedia/commons/d/d8/Jenna_Fischer4.jpg    1238
4405    https://upload.wikimedia.org/wikipedia/commons/b/b0/Jenna_Fischer_%282009%29.jpg    1238
4408    https://upload.wikimedia.org/wikipedia/commons/a/a2/Freeman_%26_Colley-Lee_crop.jpg    1239
4409    https://upload.wikimedia.org/wikipedia/commons/5/57/Morgan_Freeman_-_Discovery_Shoot_%286559314831%29.jpg    1239
4410    https://upload.wikimedia.org/wikipedia/commons/5/5a/Morgan_Freeman_y_Paz_Vega_en_Madrid_01.jpg    1239
4416    https://upload.wikimedia.org/wikipedia/commons/4/45/Tara_Strong_Portrait.jpg    1240
4418    https://upload.wikimedia.org/wikipedia/commons/7/75/John_Noble_by_Gage_Skidmore_2.jpg    1241
4419    https://upload.wikimedia.org/wikipedia/commons/2/27/HarryDeanStanton-1.jpg    1242
4422    https://upload.wikimedia.org/wikipedia/en/7/70/Lane_Smith_as_Perry_White.jpg    1244
4431    https://upload.wikimedia.org/wikipedia/commons/b/bb/Wayne_Brady_2015.jpg    1245
4434    https://upload.wikimedia.org/wikipedia/commons/0/08/JuliaLouis-DreyfusMay10.jpg    1246
4435    https://upload.wikimedia.org/wikipedia/commons/7/7a/Julia_Louis-Dreyfus_66th_Emmy_Awards_%28cropped%29.jpg    1246
4436    https://upload.wikimedia.org/wikipedia/commons/d/d3/Julia_Louis-Dreyfus_VF_2012_Shankbone_3.jpg    1246
4437    https://upload.wikimedia.org/wikipedia/commons/3/38/Julia_Louis-Dreyfus_in_2007.jpg    1246
4438    https://upload.wikimedia.org/wikipedia/commons/6/64/The_Golden_Jubilee_%281982%29.jpg    1246
4439    https://upload.wikimedia.org/wikipedia/commons/c/ce/Vice_President_Joe_Biden_jokes_with_Julia_Louis-Dreyfus.jpg    1246
4440    https://upload.wikimedia.org/wikipedia/commons/9/98/Ambox_current_red.svg    1247
4441    https://upload.wikimedia.org/wikipedia/commons/4/45/Amanda_Plummer_1987_CBS.jpg    1248
4443    https://upload.wikimedia.org/wikipedia/commons/3/39/Clancy_Brown_by_Gage_Skidmore.jpg    1249
4446    https://upload.wikimedia.org/wikipedia/commons/0/0b/Stephen_tobolowsky_2012.jpg    1251
4451    https://upload.wikimedia.org/wikipedia/commons/7/71/Katey_Sagal.jpg    1252
4452    https://upload.wikimedia.org/wikipedia/commons/0/01/Katey_Sagal_3%2C_2012.jpg    1252
4453    https://upload.wikimedia.org/wikipedia/commons/9/9e/Katey_Sagal_by_Gage_Skidmore_2.jpg    1252
4454    https://upload.wikimedia.org/wikipedia/commons/b/b1/Katey_sagal_walk_of_fame.jpg    1252
4456    https://upload.wikimedia.org/wikipedia/commons/e/ee/P._J._Byrne_by_Gage_Skidmore.jpg    1253
4458    https://upload.wikimedia.org/wikipedia/commons/1/11/Martina_Gedeck_-_Berlin_Film_Festival_2007_%282%29_%28cropped%29.jpg    1254
4459    https://upload.wikimedia.org/wikipedia/commons/b/b3/Martina_Gedeck_-_Berlinale_-_2013.jpg    1254
4460    https://upload.wikimedia.org/wikipedia/commons/6/65/%C3%96sterreichischer_Filmpreis_2011_%2867%29_Martina_Gedeck%2C_Tobias_Moretti.jpg    1254
4462    https://upload.wikimedia.org/wikipedia/commons/9/9b/Louis_C.K_Peabody_Awards_wider_crop_slight_retouching.jpg    1256
4463    https://upload.wikimedia.org/wikipedia/commons/3/3e/Louis_CK_2012_Shankbone.JPG    1256
4464    https://upload.wikimedia.org/wikipedia/commons/5/52/Louis_CK_Kuwait_crop.jpg    1256
4465    https://upload.wikimedia.org/wikipedia/commons/d/d3/Louis_CK_explaining.jpg    1256
4472    https://upload.wikimedia.org/wikipedia/commons/f/f5/Wilford_Brimley.jpg    1257
4474    https://upload.wikimedia.org/wikipedia/commons/c/c3/Burt-Young.jpg    1258
4475    https://upload.wikimedia.org/wikipedia/commons/6/6b/ChrisPineatCampArifjan_cropped.jpg    1260
4476    https://upload.wikimedia.org/wikipedia/commons/7/7e/Chris_Pine_%26_Cheryl_Boone_Isaacs_87th_Oscars_Nominations_Announcement_%28cropped%29.jpg    1260
4477    https://upload.wikimedia.org/wikipedia/commons/0/01/Chris_Pine_2%2C_2013.jpg    1260
4480    https://upload.wikimedia.org/wikipedia/commons/9/9f/MST3KNelsonMurphy98.jpg    1261
4481    https://upload.wikimedia.org/wikipedia/commons/d/da/Michael_J_Nelson_w00tstock_2011_%28cropped%29.jpg    1261
4483    https://upload.wikimedia.org/wikipedia/commons/6/63/MandyPatinkin.jpg    1262
4488    https://upload.wikimedia.org/wikipedia/commons/c/c4/NataliePortman09TIFF.jpg    1264
4489    https://upload.wikimedia.org/wikipedia/commons/d/d0/Natalie_Portman_2010.jpg    1264
4490    https://upload.wikimedia.org/wikipedia/commons/e/e6/Natalie_Portman_AA_2011.jpg    1264
4491    https://upload.wikimedia.org/wikipedia/commons/2/2f/Natalie_Portman_Cannes_2015_5.jpg    1264
4492    https://upload.wikimedia.org/wikipedia/commons/e/e7/Natalie_Portman_at_Columbia_University.jpg    1264
4493    https://upload.wikimedia.org/wikipedia/commons/e/e9/Natalie_Portman_in_2005.jpg    1264
4496    https://upload.wikimedia.org/wikipedia/commons/f/f3/Doc_Hammer_by_Gage_Skidmore.jpg    1265
4498    https://upload.wikimedia.org/wikipedia/commons/c/c9/Arrested_Development_2011_Reunion_ix_crop.jpg    1268
4500    https://upload.wikimedia.org/wikipedia/en/8/8d/GOBwithaJOB.JPG    1268
4502    https://upload.wikimedia.org/wikipedia/commons/b/b2/Will_Arnett_2012_Shankbone_2.JPG    1268
4505    https://upload.wikimedia.org/wikipedia/commons/3/30/Flickr_-_Josh_Jensen_-_Robin_Wright_Penn_%28cropped%29.jpg    1269
4507    https://upload.wikimedia.org/wikipedia/commons/4/49/Robin_Wright_%26_Sean_Penn_%28cropped%29.jpg    1269
4508    https://upload.wikimedia.org/wikipedia/commons/5/51/Robin_Wright_2009.jpg    1269
4511    https://upload.wikimedia.org/wikipedia/commons/c/c6/Geoff_Ramsey.jpg    1270
4514    https://upload.wikimedia.org/wikipedia/commons/9/9f/Firma_de_Jim_Carrey.svg    1272
4515    https://upload.wikimedia.org/wikipedia/commons/f/f2/Jim-Carrey-2008.jpg    1272
4516    https://upload.wikimedia.org/wikipedia/commons/8/8b/Jim_Carrey_2008.jpg    1272
4517    https://upload.wikimedia.org/wikipedia/commons/3/32/Jim_Carrey_2010.jpg    1272
4518    https://upload.wikimedia.org/wikipedia/commons/7/72/Jim_Carrey_Cannes_2009.jpg    1272
4519    https://upload.wikimedia.org/wikipedia/commons/3/36/Jim_Carrey_horton_hears_a_who_2008.jpg    1272
4527    https://upload.wikimedia.org/wikipedia/commons/2/27/Flag_of_the_British_Army.svg    1273
4529    https://upload.wikimedia.org/wikipedia/commons/6/66/Leo_G._Carroll_1951.JPG    1273
4530    https://upload.wikimedia.org/wikipedia/commons/4/46/Leo_G._Carroll_Diana_Hyland_Man_From_UNCLE_1966.JPG    1273
4532    https://upload.wikimedia.org/wikipedia/commons/2/21/Patrick_J_Adams_3420_%28cropped%29.jpg    1275
4534    https://upload.wikimedia.org/wikipedia/commons/b/b1/Jenna_Coleman%2C_SDCC_2015_by_Gage_Skidmore.jpg    1276
4535    https://upload.wikimedia.org/wikipedia/commons/9/95/Jenna_Coleman_2016.jpg    1276
4536    https://upload.wikimedia.org/wikipedia/commons/6/66/Jenna_Coleman_Peabody_2013_%28cropped%29.jpg    1276
4538    https://upload.wikimedia.org/wikipedia/commons/d/dd/YamadaIsuzu.jpg    1277
4540    https://upload.wikimedia.org/wikipedia/commons/5/5c/James_Urbaniak_by_Gage_Skidmore.jpg    1278
4543    https://upload.wikimedia.org/wikipedia/commons/4/4f/FelicityHuffmanWilliamHMacyHWoFMar2012.jpg    1279
4545    https://upload.wikimedia.org/wikipedia/commons/d/da/WilliamHMacyTIFFSept2012.jpg    1279
4546    https://upload.wikimedia.org/wikipedia/commons/7/7d/William_H._Macy.jpg    1279
4547    https://upload.wikimedia.org/wikipedia/commons/d/d8/William_H._Macy_at_the_62nd_Annual_Peabody_Awards.jpg    1279
4548    https://upload.wikimedia.org/wikipedia/commons/7/79/Anne_Bancroft_Chrysler_Theatre_1964_%28cropped%29.jpg    1280
4549    https://upload.wikimedia.org/wikipedia/commons/c/c7/Anne_Bancroft_Patty_Duke_Miracle_Worker_1_1960.jpg    1280
4551    https://upload.wikimedia.org/wikipedia/commons/1/12/Mel_Brooks_Anne_Bancroft_1991.jpg    1280
4555    https://upload.wikimedia.org/wikipedia/commons/8/8b/Corinna_Harfouch.JPG    1281
4557    https://upload.wikimedia.org/wikipedia/commons/2/20/Bradleywhitford.jpg    1282
4560    https://upload.wikimedia.org/wikipedia/commons/d/d1/Carrie_Fisher_2013.jpg    1283
4561    https://upload.wikimedia.org/wikipedia/commons/8/8f/Carrie_Fisher_and_Wim_Wenders.jpg    1283
4565    https://upload.wikimedia.org/wikipedia/commons/5/5b/KieferSutherland1SecondFilm.jpg    1284
4566    https://upload.wikimedia.org/wikipedia/commons/c/c7/Kiefer_Sutherland3.jpg    1284
4567    https://upload.wikimedia.org/wikipedia/commons/6/63/Kiefer_Sutherland_2_SDCC_2014.jpg    1284
4568    https://upload.wikimedia.org/wikipedia/commons/1/10/Kiefer_Sutherland_December_2007_%28cropped%29_2.jpg    1284
4569    https://upload.wikimedia.org/wikipedia/commons/2/23/Kiefer_Sutherland_Signature.svg    1284
4570    https://upload.wikimedia.org/wikipedia/commons/b/bf/Kiefer_Sutherland_at_24_Redemption_premiere_1_%28cropped%29.jpg    1284
4571    https://upload.wikimedia.org/wikipedia/commons/3/34/Kiefer_Sutherland_star_on_Walk_of_Fame.jpg    1284
4575    https://upload.wikimedia.org/wikipedia/commons/7/74/Dan_Castellaneta_cropped.jpg    1285
4576    https://upload.wikimedia.org/wikipedia/commons/1/12/Dan_Castellaneta_signature.svg    1285
4579    https://upload.wikimedia.org/wikipedia/commons/0/07/Simpsons_voice_actors.jpg    1285
4585    https://upload.wikimedia.org/wikipedia/commons/8/84/Linda_Cardellini_Deauville_2011.jpg    1287
4586    https://upload.wikimedia.org/wikipedia/commons/7/74/Linda_Cardellini_onstage.jpg    1287
4588    https://upload.wikimedia.org/wikipedia/commons/3/31/PaleyFest_2011_-_Freaks_and_Geeks_Reunion_-_the_cast.jpg    1287
4594    https://upload.wikimedia.org/wikipedia/commons/d/d8/Star_Trek_Into_Darkness_Cast_2013.jpg    1288
4596    https://upload.wikimedia.org/wikipedia/commons/e/ee/Zachary_Quinto.jpg    1288
4597    https://upload.wikimedia.org/wikipedia/commons/6/6d/Zachary_Quinto_2011.jpg    1288
4598    https://upload.wikimedia.org/wikipedia/commons/e/e0/Zachary_Quinto_SDCC_2014.jpg    1288
4600    https://upload.wikimedia.org/wikipedia/commons/5/52/Anton_Lesser_%282011%29.jpg    1289
4602    https://upload.wikimedia.org/wikipedia/commons/a/ad/Jean_Gabin_1939.jpg    1290
4603    https://upload.wikimedia.org/wikipedia/commons/b/b8/Jean_Gabin_1949.jpg    1290
4604    https://upload.wikimedia.org/wikipedia/commons/a/a0/Jean_Gabin_1955.jpg    1290
4605    https://upload.wikimedia.org/wikipedia/commons/7/7d/Jean_Gabin_1958.jpg    1290
4606    https://upload.wikimedia.org/wikipedia/commons/0/01/M%C3%A9riel_%2895%29%2C_mus%C3%A9e_Jean-Gabin_et_biblioth%C3%A8que_municipale%2C_Grande_rue.jpg    1290
4608    https://upload.wikimedia.org/wikipedia/commons/b/b7/Anita_Ekberg-1956.jpg    1291
4609    https://upload.wikimedia.org/wikipedia/commons/3/33/Anita_Ekberg_1956.jpg    1291
4613    https://upload.wikimedia.org/wikipedia/en/4/4c/Flag_of_Sweden.svg    1291
4616    https://upload.wikimedia.org/wikipedia/commons/d/d8/War_and_peace8.jpg    1291
4622    https://upload.wikimedia.org/wikipedia/commons/7/7a/Edward_James_Olmos_%28Festival_Internacional_de_Cine_en_Guadalajara%29.jpg    1294
4623    https://upload.wikimedia.org/wikipedia/commons/9/9b/Edward_James_Olmos_2009_Comic_Con.jpg    1294
4624    https://upload.wikimedia.org/wikipedia/commons/d/da/Edward_James_Olmos_2009_Inaugural_Ceremony_%28cropped%29.JPG    1294
4625    https://upload.wikimedia.org/wikipedia/commons/6/65/Edward_James_Olmos_March_2008_%28cropped%29.jpg    1294
4626    https://upload.wikimedia.org/wikipedia/commons/4/49/Edward_James_Olmos_Sept_06_crop_face.jpg    1294
4627    https://upload.wikimedia.org/wikipedia/commons/9/9d/Alfred_Hitchcock_by_Jack_Mitchell.jpg    1295
4628    https://upload.wikimedia.org/wikipedia/commons/9/9e/Anton_Wickremasinghe%2C_Chandran_Rutnam_and_Alfred_Hitchcock_at_the_Academy_Awards_in_Los_Angeles.jpeg    1295
4630    https://upload.wikimedia.org/wikipedia/commons/4/4c/Hitch-at-work%3B1975-FamilyPlot%3BSF-On-Location.jpg    1295
4631    https://upload.wikimedia.org/wikipedia/commons/9/94/Hitchcock%2C_Alfred_02.jpg    1295
4633    https://upload.wikimedia.org/wikipedia/commons/4/44/North_by_Northwest_movie_trailer_screenshot_%2812%29.jpg    1295
4634    https://upload.wikimedia.org/wikipedia/commons/7/76/Notorious1946.jpg    1295
4635    https://upload.wikimedia.org/wikipedia/commons/0/00/Number_13.jpg    1295
4638    https://upload.wikimedia.org/wikipedia/commons/9/93/The_Etruscan_Smile.jpeg    1298
4639    https://upload.wikimedia.org/wikipedia/commons/5/50/Thora_Birch.jpg    1298
4640    https://upload.wikimedia.org/wikipedia/commons/c/c9/Kristina_Adolphson.jpg    1299
4647    https://upload.wikimedia.org/wikipedia/en/f/f8/Ellen-Terry-jubilee.jpg    1301
4648    https://upload.wikimedia.org/wikipedia/commons/0/08/Gielgud_and_Haas_in_Crime_and_Punishment.jpg    1301
4649    https://upload.wikimedia.org/wikipedia/commons/1/15/Gielgud_and_Leighton_in_Much_Ado_1959.jpg    1301
4650    https://upload.wikimedia.org/wikipedia/commons/5/53/JG-Benedick-1959.jpg    1301
4651    https://upload.wikimedia.org/wikipedia/commons/3/3b/John_Gielgud_12._Allan_Warren.jpg    1301
4652    https://upload.wikimedia.org/wikipedia/commons/b/ba/John_Gielgud_in_Secret_Agent_%281936%29.jpg    1301
4653    https://upload.wikimedia.org/wikipedia/commons/b/b0/Julius_Caesar_promo_still.jpg    1301
4654    https://upload.wikimedia.org/wikipedia/commons/4/43/Lilian_Braithwaite_%26_No%C3%ABl_Coward.jpg    1301
4657    https://upload.wikimedia.org/wikipedia/commons/9/90/Frank_Morgan-publicity.JPG    1303
4658    https://upload.wikimedia.org/wikipedia/commons/1/10/Frank_Morgan_Madge_Kennedy_1917.jpg    1303
4659    https://upload.wikimedia.org/wikipedia/en/f/f4/Morgan_as_The_Gatekeeper.jpg    1303
4662    https://upload.wikimedia.org/wikipedia/commons/0/00/Anne_Baxter_and_Yul_Brynner_in_The_Ten_Commandments_film_trailer.jpg    1306
4663    https://upload.wikimedia.org/wikipedia/commons/8/8a/Anne_Baxter_in_All_About_Eve_trailer.jpg    1306
4664    https://upload.wikimedia.org/wikipedia/commons/0/0b/Anne_Baxter_publicity_photo.JPG    1306
4666    https://upload.wikimedia.org/wikipedia/commons/9/99/Frank_Lloyd_Wright_LC-USZ62-36384.jpg    1306
4669    https://upload.wikimedia.org/wikipedia/commons/8/8a/The-Magnificent-Ambersons-7.jpg    1306
4673    https://upload.wikimedia.org/wikipedia/commons/6/6c/Beverly_D%27Angelo_2%2C_2012.jpg    1308
4675    https://upload.wikimedia.org/wikipedia/commons/3/37/Cheryl_Hines_04062013_SpringtimeTallahasseeGrandMarshallSigning.jpg    1311
4676    https://upload.wikimedia.org/wikipedia/commons/4/4a/Cheryl_Hines_2011_AA.jpg    1311
4677    https://upload.wikimedia.org/wikipedia/commons/7/74/Cheryl_Hines_and_Meg_Ryan_portrait_2009.jpg    1311
4680    https://upload.wikimedia.org/wikipedia/en/9/9d/Lydia_Simmonds_%28Margaret_Tyzack%29.jpg    1313
4681    https://upload.wikimedia.org/wikipedia/commons/0/01/12_Years_a_Slave_35_%289730605713%29.jpg    1314
4682    https://upload.wikimedia.org/wikipedia/commons/d/d4/Benedict_Cumberbatch_-_December_2013_%28cropped%29.jpg    1314
4683    https://upload.wikimedia.org/wikipedia/commons/c/cb/Benedict_Cumberbatch_2008.jpg    1314
4684    https://upload.wikimedia.org/wikipedia/commons/4/4b/Benedict_Cumberbatch_SDCC_2014.jpg    1314
4685    https://upload.wikimedia.org/wikipedia/commons/6/66/Benedict_Cumberbatch_at_the_London_Evening_Standard_Theatre_Awards_2014.jpg    1314
4686    https://upload.wikimedia.org/wikipedia/commons/c/cd/Benedict_Cumberbatch_filming_Sherlock_cropped.jpg    1314
4688    https://upload.wikimedia.org/wikipedia/commons/3/3b/Cumberbatch_Signature.png    1314
4690    https://upload.wikimedia.org/wikipedia/commons/7/70/Vincent_Piazza.jpg    1315
4691    https://upload.wikimedia.org/wikipedia/commons/b/b7/Vincent_Piazza_2012_Shankbone.JPG    1315
4695    https://upload.wikimedia.org/wikipedia/commons/0/0b/Emilia_Clarke_2013_%28Straighten_Colors_2%29.jpg    1320
4696    https://upload.wikimedia.org/wikipedia/commons/1/19/Emilia_Clarke_by_Gage_Skidmore_2.jpg    1320
4698    https://upload.wikimedia.org/wikipedia/commons/e/ed/Gladys_George_in_Marie_Antoinette_trailer.jpg    1321
4702    https://upload.wikimedia.org/wikipedia/commons/5/5a/GeoffreyRushMay2011.jpg    1322
4703    https://upload.wikimedia.org/wikipedia/commons/0/0a/GeoffreyRushTIFFSept2011.jpg    1322
4704    https://upload.wikimedia.org/wikipedia/commons/8/8b/Geoffrey_Rush_Cannes_2011.jpg    1322
4708    https://upload.wikimedia.org/wikipedia/commons/7/7e/Wendell_Corey_in_The_Search_trailer.jpg    1323
4710    https://upload.wikimedia.org/wikipedia/commons/a/ab/Grave_of_Janet_Gaynor.jpg    1324
4711    https://upload.wikimedia.org/wikipedia/commons/b/b7/James_Dunn_Janet_Gaynor_1934.JPG    1324
4712    https://upload.wikimedia.org/wikipedia/commons/7/73/Janet_Gaynor-publicity.JPG    1324
4713    https://upload.wikimedia.org/wikipedia/commons/e/ef/Janet_Gaynor_Argentinean_Magazine_AD.jpg    1324
4714    https://upload.wikimedia.org/wikipedia/commons/2/20/Janet_Gaynor_in_A_Star_is_Born.jpg    1324
4715    https://upload.wikimedia.org/wikipedia/commons/8/80/Janet_gaynor_1927.jpg    1324
4717    https://upload.wikimedia.org/wikipedia/commons/e/ec/EllenBurstyn07TIFF.jpg    1325
4718    https://upload.wikimedia.org/wikipedia/commons/6/63/Ellen_Burstyn_at_the_2009_Tribeca_Film_Festival.jpg    1325
4721    https://upload.wikimedia.org/wikipedia/commons/9/92/Flag_of_Belgium_%28civil%29.svg    1326
4723    https://upload.wikimedia.org/wikipedia/commons/0/0f/Flag_of_Georgia.svg    1326
4725    https://upload.wikimedia.org/wikipedia/commons/4/45/Flag_of_Ireland.svg    1326
4727    https://upload.wikimedia.org/wikipedia/commons/b/b4/Flag_of_Turkey.svg    1326
4728    https://upload.wikimedia.org/wikipedia/commons/5/59/Flag_of_Wales_2.svg    1326
4731    https://upload.wikimedia.org/wikipedia/commons/f/f8/Derek_Jacobi-autograph.jpg    1328
4732    https://upload.wikimedia.org/wikipedia/commons/9/9e/Derek_Jacobi.jpg    1328
4734    https://upload.wikimedia.org/wikipedia/commons/a/a5/JKSimmons07TIFF_%28cropped%29.jpg    1331
4735    https://upload.wikimedia.org/wikipedia/commons/0/0d/JK_Simmons_2009.jpg    1331
4737    https://upload.wikimedia.org/wikipedia/commons/7/7a/Kim_Ki-duk_at_the_69th_Venice_International_Film_Festival_%28cropped%29.jpg    1332
4739    https://upload.wikimedia.org/wikipedia/commons/e/e7/Carly_Chaikin_GG.jpg    1337
4741    https://upload.wikimedia.org/wikipedia/commons/1/14/Charlie_Hunnam_%289366030952%29_%28cropped%29.jpg    1338
4742    https://upload.wikimedia.org/wikipedia/commons/2/23/Charlie_Hunnam_by_Gage_Skidmore.jpg    1338
4743    https://upload.wikimedia.org/wikipedia/commons/a/a1/Charlie_Hunnam_by_Gage_Skidmore_2.jpg    1338
4744    https://upload.wikimedia.org/wikipedia/commons/8/80/Charlie_Hunnam_by_Gage_Skidmore_3.jpg    1338
4746    https://upload.wikimedia.org/wikipedia/commons/e/eb/Sidse_Babett_Knudsen_C%C3%A9sar_2016.jpg    1339
4750    https://upload.wikimedia.org/wikipedia/commons/a/a7/Sofia_Helin_2012_%28cropped%29.jpg    1341
4752    https://upload.wikimedia.org/wikipedia/commons/6/6d/JoelEdgertonSept2013TIFF.jpg    1343
4753    https://upload.wikimedia.org/wikipedia/commons/e/e8/Joel_Edgerton_2013.jpg    1343
4757    https://upload.wikimedia.org/wikipedia/commons/5/54/Willem_Dafoe_The_Hunter_%286184921184%29.jpg    1344
4758    https://upload.wikimedia.org/wikipedia/commons/d/dd/Willem_Dafoe_by_Sasha_Kargaltsev.jpg    1344
4759    https://upload.wikimedia.org/wikipedia/commons/d/de/Steve_Pemberton.jpg    1345
4760    https://upload.wikimedia.org/wikipedia/commons/6/66/Honeysuckle_weeks_november_2008.jpg    1346
4761    https://upload.wikimedia.org/wikipedia/commons/f/f0/Batista-SD-houseshow.jpg    1350
4762    https://upload.wikimedia.org/wikipedia/commons/7/78/Batista-closeup.jpg    1350
4763    https://upload.wikimedia.org/wikipedia/commons/0/02/BatistaBomb.jpg    1350
4764    https://upload.wikimedia.org/wikipedia/en/6/69/Batista_PR.jpeg    1350
4765    https://upload.wikimedia.org/wikipedia/en/9/98/Batista_at_WrestleMania_XXX.jpg    1350
4766    https://upload.wikimedia.org/wikipedia/commons/8/89/Batista_with_World_Heavyweight_Championship.jpg    1350
4767    https://upload.wikimedia.org/wikipedia/commons/e/e9/Batistalive.jpg    1350
4769    https://upload.wikimedia.org/wikipedia/commons/b/b7/DBatista.jpg    1350
4770    https://upload.wikimedia.org/wikipedia/commons/7/77/Dave_Batista_-_Guardians_of_the_Galaxy_premiere_-_July_2014_%28cropped%29.jpg    1350
4772    https://upload.wikimedia.org/wikipedia/commons/4/41/Connie_Booth.jpg    1351
4775    https://upload.wikimedia.org/wikipedia/commons/b/b8/RUSS_ILYUSHIN.jpg    1352
4777    https://upload.wikimedia.org/wikipedia/commons/0/06/MinnieDriverJan2011.jpg    1353
4778    https://upload.wikimedia.org/wikipedia/commons/e/eb/Minnie_Driver_2010.jpg    1353
4780    https://upload.wikimedia.org/wikipedia/commons/5/55/Mark_Boone_Junior_by_Gage_Skidmore.jpg    1354
4782    https://upload.wikimedia.org/wikipedia/commons/c/c5/Forest_Whitaker_2010.jpg    1355
4783    https://upload.wikimedia.org/wikipedia/commons/5/56/Forest_Whitaker_2014.jpg    1355
4784    https://upload.wikimedia.org/wikipedia/commons/4/44/Forest_Whitaker_Cannes_2013_3.jpg    1355
4785    https://upload.wikimedia.org/wikipedia/en/6/69/Ghostdog4.jpg    1355
4786    https://upload.wikimedia.org/wikipedia/en/a/a3/Lastking2.jpg    1355
4789    https://upload.wikimedia.org/wikipedia/commons/b/b0/HilarySwankTIFFSept10.jpg    1356
4790    https://upload.wikimedia.org/wikipedia/commons/d/de/Life_Ball_2013_-_opening_show_024_Hilary_Swank.jpg    1356
4791    https://upload.wikimedia.org/wikipedia/commons/8/83/Michelle_Obama_and_Hilary_Swank_2011.jpg    1356
4793    https://upload.wikimedia.org/wikipedia/commons/4/4f/DannyJohn-JulesPlaycomLive08.2.JPG    1357
4794    https://upload.wikimedia.org/wikipedia/commons/3/3f/Porter_Hall_1930.JPG    1358
4797    https://upload.wikimedia.org/wikipedia/commons/b/bd/Matt_LeBlanc%2C_Arqiva_British_Academy_Television_Awards%2C_2013_%28tone_crop%29.jpg    1359
4798    https://upload.wikimedia.org/wikipedia/commons/c/ca/Matt_Le_Blanc.jpg    1359
4799    https://upload.wikimedia.org/wikipedia/commons/5/5a/KevinPollakApr2011.jpg    1360
4800    https://upload.wikimedia.org/wikipedia/commons/1/10/KevinPollakMar08.jpg    1360
4805    https://upload.wikimedia.org/wikipedia/commons/4/49/Chris_Hemsworth_3%2C_2013.jpg    1362
4806    https://upload.wikimedia.org/wikipedia/commons/9/92/Chris_Hemsworth_SDCC_2014_%28cropped%29.jpg    1362
4808    https://upload.wikimedia.org/wikipedia/commons/e/e2/Hemsworth_Hiddleston_SDCC_2010_4.jpg    1362
4809    https://upload.wikimedia.org/wikipedia/commons/3/3d/Hemsworth_TFF_%28cropped%29.jpg    1362
4812    https://upload.wikimedia.org/wikipedia/commons/5/54/DaveGoelz_%282009%29.JPG    1363
4814    https://upload.wikimedia.org/wikipedia/commons/f/f7/Air_Force_Reserve_Command.png    1365
4815    https://upload.wikimedia.org/wikipedia/commons/e/e8/Annex_-_Stewart%2C_James_%28Call_Northside_777%29_01.jpg    1365
4816    https://upload.wikimedia.org/wikipedia/commons/0/0d/Brig._Gen._James_M._Stewart.jpg    1365
4819    https://upload.wikimedia.org/wikipedia/commons/3/3e/Guardian_angel_clarence.jpg    1365
4820    https://upload.wikimedia.org/wikipedia/commons/7/75/J.StewartMarriage.jpg    1365
4821    https://upload.wikimedia.org/wikipedia/commons/9/98/JamesStewart1981.jpg    1365
4822    https://upload.wikimedia.org/wikipedia/commons/0/0b/James_Stewart_-_1959.jpg    1365
4823    https://upload.wikimedia.org/wikipedia/commons/6/60/James_Stewart_in_After_the_Thin_Man_trailer.jpg    1365
4824    https://upload.wikimedia.org/wikipedia/commons/c/c3/Carl-sagan-brooklyn.JPG    1366
4825    https://upload.wikimedia.org/wikipedia/en/7/77/Carl_Sagan_-_1980.jpg    1366
4826    https://upload.wikimedia.org/wikipedia/commons/b/be/Carl_Sagan_Planetary_Society.JPG    1366
4827    https://upload.wikimedia.org/wikipedia/commons/c/c1/Carl_Sagan_Signature.svg    1366
4828    https://upload.wikimedia.org/wikipedia/commons/6/61/Carl_Sagan_with_two_CDC_employees.png    1366
4830    https://upload.wikimedia.org/wikipedia/commons/8/83/F-14A_VF-114_over_burning_Kuwaiti_oil_well_1991.JPEG    1366
4831    https://upload.wikimedia.org/wikipedia/commons/8/8d/NASA_Distinguished_Public_Service_Medal.jpeg    1366
4832    https://upload.wikimedia.org/wikipedia/commons/7/73/Pale_Blue_Dot.png    1366
4833    https://upload.wikimedia.org/wikipedia/commons/8/88/Planetary_society2.jpg    1366
4834    https://upload.wikimedia.org/wikipedia/commons/0/0b/MartinLawrenceHWOFJune2013.jpg    1367
4837    https://upload.wikimedia.org/wikipedia/commons/9/98/John_Francis_Daley_in_March_2012.jpg    1368
4839    https://upload.wikimedia.org/wikipedia/commons/5/52/Albert_Brooks_at_%27Drive%27_premiere_TIFF_9.10.11.jpg    1370
4843    https://upload.wikimedia.org/wikipedia/commons/5/56/Tim_Roth_Cannes_2012.jpg    1373
4844    https://upload.wikimedia.org/wikipedia/commons/d/dc/Tim_Roth_by_Gage_Skidmore.jpg    1373
4845    https://upload.wikimedia.org/wikipedia/commons/f/fe/Chris_Elliott_at_the_41st_Emmy_Awards.jpg    1374
4846    https://upload.wikimedia.org/wikipedia/commons/4/42/Chris_Elliott_by_Gage_Skidmore.jpg    1374
4850    https://upload.wikimedia.org/wikipedia/en/0/0b/Peter_Cushing_in_1955.jpg    1375
4852    https://upload.wikimedia.org/wikipedia/commons/2/2e/Juliet_Rylance_at_the_74th_Annual_Peabody_Awards.jpg    1376
4854    https://upload.wikimedia.org/wikipedia/commons/4/49/John_Amos_2011.jpg    1378
4857    https://upload.wikimedia.org/wikipedia/commons/2/2b/Omar_Epps.jpg    1379
4858    https://upload.wikimedia.org/wikipedia/commons/3/36/Omar_Epps_2009.jpg    1379
4860    https://upload.wikimedia.org/wikipedia/commons/8/80/James_Woods_%28210411648%29.jpg    1380
4861    https://upload.wikimedia.org/wikipedia/commons/d/d5/James_Woods_%28251689560%29.jpg    1380
4862    https://upload.wikimedia.org/wikipedia/commons/9/95/James_Woods_2015.jpg    1380
4863    https://upload.wikimedia.org/wikipedia/commons/5/5c/Poker_Royale_2005.jpg    1380
4866    https://upload.wikimedia.org/wikipedia/commons/a/a0/Flag_of_Maryland.svg    1381
4867    https://upload.wikimedia.org/wikipedia/commons/f/fd/Jim_Henson_%281989%29_headshot.jpg    1381
4868    https://upload.wikimedia.org/wikipedia/commons/5/58/Lucas_-_Henson_-_1986.jpg    1381
4869    https://upload.wikimedia.org/wikipedia/en/8/88/Mickeykermit.jpg    1381
4873    https://upload.wikimedia.org/wikipedia/commons/f/f9/ADC_Theatre_Cambridge.jpg    1382
4874    https://upload.wikimedia.org/wikipedia/commons/1/16/AnthonyHopkins2.jpg    1382
4876    https://upload.wikimedia.org/wikipedia/commons/0/0b/Dunoon_Pier.jpg    1382
4877    https://upload.wikimedia.org/wikipedia/commons/b/b0/EmmaThompson05.jpg    1382
4878    https://upload.wikimedia.org/wikipedia/commons/3/38/Emma_Thompson_%282008%29.jpg    1382
4879    https://upload.wikimedia.org/wikipedia/commons/a/a2/Emma_Thompson_2009.jpg    1382
4880    https://upload.wikimedia.org/wikipedia/commons/1/16/Emma_Thompson_at_2013_TIFF_2.jpg    1382
4881    https://upload.wikimedia.org/wikipedia/commons/6/6d/Emma_Thompson_at_climate_march.jpg    1382
4882    https://upload.wikimedia.org/wikipedia/commons/d/d9/AlexandraMariaLara07TIFF.jpg    1383
4886    https://upload.wikimedia.org/wikipedia/commons/c/c1/Directors-The_Wild_Boys.jpg    1384
4887    https://upload.wikimedia.org/wikipedia/commons/7/77/Michael_Shanks_Creation_Con_2007_%282%29.jpg    1384
4889    https://upload.wikimedia.org/wikipedia/commons/2/20/Gina_Torres_2008.jpg    1385
4890    https://upload.wikimedia.org/wikipedia/commons/f/f8/Gina_Torres_in_January_2013.jpg    1385
4891    https://upload.wikimedia.org/wikipedia/commons/4/44/M%C3%A4dchen_Amick_2014.jpg    1386
4894    https://upload.wikimedia.org/wikipedia/commons/2/25/Gertrude_Astor%2C_Herbert_Barrington%2C_and_Al_Garcia.jpg    1387
4896    https://upload.wikimedia.org/wikipedia/commons/a/ae/Elvis_Presley_%26_katy_Jurado.jpg    1388
4897    https://upload.wikimedia.org/wikipedia/commons/9/91/Flag_of_the_Hispanicity.svg    1388
4898    https://upload.wikimedia.org/wikipedia/commons/9/9c/Heston-Jurado-Arrowhead.jpg    1388
4899    https://upload.wikimedia.org/wikipedia/commons/b/b8/Jurado-Borgnine-Badlanders.jpg    1388
4900    https://upload.wikimedia.org/wikipedia/commons/9/98/Katy_Jurado_1.jpg    1388
4901    https://upload.wikimedia.org/wikipedia/commons/f/fe/Katy_Jurado_in_1951.jpg    1388
4902    https://upload.wikimedia.org/wikipedia/commons/7/79/Katy_Jurado_in_1959.jpg    1388
4903    https://upload.wikimedia.org/wikipedia/commons/b/b2/Katy_Jurado_in_High_Noon.jpg    1388
4908    https://upload.wikimedia.org/wikipedia/commons/7/77/Jamestown%2C_New_York_%284303088285%29.jpg    1389
4909    https://upload.wikimedia.org/wikipedia/commons/8/83/Lucille_Ball_%283831372291%29.jpg    1389
4910    https://upload.wikimedia.org/wikipedia/commons/3/30/Lucille_Ball_1944crop.jpg    1389
4911    https://upload.wikimedia.org/wikipedia/commons/0/09/Lucille_Ball_John_Wayne_1955.JPG    1389
4912    https://upload.wikimedia.org/wikipedia/commons/8/8b/Lucille_Ball_and_Desi_Arnaz_1955.jpg    1389
4913    https://upload.wikimedia.org/wikipedia/commons/7/7b/Lucy_in_scotland_1956.JPG    1389
4914    https://upload.wikimedia.org/wikipedia/commons/3/39/Lucy_signature_cropped.svg    1389
4915    https://upload.wikimedia.org/wikipedia/commons/a/a5/41st_Annie_Awards%2C_Michael_Sinterniklaas.jpg    1391
4916    https://upload.wikimedia.org/wikipedia/commons/5/53/Good_Times_1975.JPG    1392
4918    https://upload.wikimedia.org/wikipedia/commons/4/48/Nida_dusk.jpg    1393
4919    https://upload.wikimedia.org/wikipedia/commons/8/8e/ToniCollettOrangeBritishAcademyFilmAwards07.jpg    1393
4920    https://upload.wikimedia.org/wikipedia/commons/3/33/Toni_Collette_%288968233309%29.jpg    1393
4921    https://upload.wikimedia.org/wikipedia/commons/7/7e/Toni_Collette_by_Gage_Skidmore.jpg    1393
4923    https://upload.wikimedia.org/wikipedia/commons/2/27/Boyd_Holbrook_Very_Good_Girls_Premiere_%28cropped%29.jpg    1394
4925    https://upload.wikimedia.org/wikipedia/commons/8/88/Joan_Cusack_June_2010_cropped.jpg    1396
4929    https://upload.wikimedia.org/wikipedia/en/3/3c/Greg_Ayres.jpg    1400
4932    https://upload.wikimedia.org/wikipedia/commons/6/60/Tom_Helmore.jpg    1401
4936    https://upload.wikimedia.org/wikipedia/commons/1/14/Anna_Friel_TCA_2015.jpg    1403
4937    https://upload.wikimedia.org/wikipedia/commons/7/7e/Henry_Bond_for_Mulberry.jpg    1403
4939    https://upload.wikimedia.org/wikipedia/commons/3/36/Michael_Benyaer_at_the_Emmy%27s.jpg    1404
4940    https://upload.wikimedia.org/wikipedia/commons/4/40/BryanBattEmmysSept09.jpg    1405
4944    https://upload.wikimedia.org/wikipedia/commons/d/da/Ningen_no_j%C5%8Dken_1.jpg    1406
4945    https://upload.wikimedia.org/wikipedia/commons/4/4d/10.15.11DragonBallZCastByLuigiNovi1.jpg    1407
4946    https://upload.wikimedia.org/wikipedia/commons/6/67/Sean_Schemmel_by_Gage_Skidmore.jpg    1407
4948    https://upload.wikimedia.org/wikipedia/commons/b/bb/StevenYeun2015ComicCon.jpg    1408
4953    https://upload.wikimedia.org/wikipedia/commons/a/ad/Keir_Dullea_Denver_Pyle_1962.JPG    1409
4957    https://upload.wikimedia.org/wikipedia/commons/4/48/Seal_of_Connecticut.svg    1409
4960    https://upload.wikimedia.org/wikipedia/commons/4/45/Diane_Cilento_with_Peter_Finch.jpg    1410
4962    https://upload.wikimedia.org/wikipedia/commons/6/65/Peter_Finch_2.jpg    1410
4964    https://upload.wikimedia.org/wikipedia/commons/e/e0/American_Campaign_Medal_ribbon.svg    1411
4965    https://upload.wikimedia.org/wikipedia/commons/b/b8/ArmyQualBadgeRifleBarHi.jpg    1411
4966    https://upload.wikimedia.org/wikipedia/commons/2/2c/ArmyQualExpertBadgeHi.jpg    1411
4967    https://upload.wikimedia.org/wikipedia/commons/4/48/Army_Good_Conduct_ribbon.svg    1411
4968    https://upload.wikimedia.org/wikipedia/commons/a/aa/Flag_of_the_United_States_Army.gif    1411
4971    https://upload.wikimedia.org/wikipedia/commons/1/19/CharlesDurningMay2008.jpg    1411
4972    https://upload.wikimedia.org/wikipedia/commons/8/82/Combat_Infantry_Badge.svg    1411
4975    https://upload.wikimedia.org/wikipedia/commons/7/74/JoePantolianoFeb2009.jpg    1412
4976    https://upload.wikimedia.org/wikipedia/commons/5/5d/JoePantolianonavy.jpg    1412
4977    https://upload.wikimedia.org/wikipedia/commons/9/99/Citizen-Kane-Wedding-1.jpg    1413
4981    https://upload.wikimedia.org/wikipedia/commons/d/d2/Ruth_Warwick_Phoebe_Tyler_1973.jpg    1413
4982    https://upload.wikimedia.org/wikipedia/commons/b/b2/Ruth_Warwick_in_musical_Irene_1973.jpg    1413
4983    https://upload.wikimedia.org/wikipedia/commons/4/4c/ABBA_2008_Av_Daniel_%C3%85hs.jpg    1414
4986    https://upload.wikimedia.org/wikipedia/commons/6/65/Four_Provinces_Flag.svg    1414
4988    https://upload.wikimedia.org/wikipedia/commons/4/4d/PierceBrosnanCannesPhoto2.jpg    1414
4989    https://upload.wikimedia.org/wikipedia/commons/8/8b/PierceBrosnanSept2013TIFF.jpg    1414
4990    https://upload.wikimedia.org/wikipedia/commons/c/cf/Pierce_Brosnan_%28Berlin_Film_Festival_2010%29.jpg    1414
4991    https://upload.wikimedia.org/wikipedia/commons/a/ab/Pierce_Brosnan_Deauville_2014.jpg    1414
4992    https://upload.wikimedia.org/wikipedia/commons/8/80/Pierce_Brosnan_at_the_2005_Toronto_Film_Festival.jpg    1414
4994    https://upload.wikimedia.org/wikipedia/commons/f/fb/Craig_Charles.jpg    1415
4998    https://upload.wikimedia.org/wikipedia/commons/6/61/Gyllenhaal.jpg    1416
4999    https://upload.wikimedia.org/wikipedia/commons/0/03/Jake_Gyllenhaal_%2822373266462%29_%28cropped%29.jpg    1416
5000    https://upload.wikimedia.org/wikipedia/commons/d/d6/Jake_Gyllenhaal_Cannes_2015.jpg    1416
5001    https://upload.wikimedia.org/wikipedia/commons/1/1b/Jake_Gyllenhaal_at_Proof_opening.jpg    1416
5006    https://upload.wikimedia.org/wikipedia/commons/c/ca/Ikiru_1.jpg    1418
5008    https://upload.wikimedia.org/wikipedia/commons/d/d6/Shimura_Takashi.JPG    1418
5009    https://upload.wikimedia.org/wikipedia/commons/a/af/Stray_Dog_1-30-27.jpg    1418
5011    https://upload.wikimedia.org/wikipedia/commons/8/8b/Michael_J_Anderson_1.jpg    1419
5012    https://upload.wikimedia.org/wikipedia/commons/6/6a/Michael_J_Anderson_2.jpg    1419
5013    https://upload.wikimedia.org/wikipedia/en/6/66/Mulholland_Drive_Mr_Roque.jpg    1419
5015    https://upload.wikimedia.org/wikipedia/commons/c/c5/Jamie_Hyneman.jpg    1420
5016    https://upload.wikimedia.org/wikipedia/commons/f/f1/Jamie_Hyneman_with_Blue_Angels.jpg    1420
5018    https://upload.wikimedia.org/wikipedia/commons/7/7d/Crispin-glover-03072010.jpg    1421
5019    https://upload.wikimedia.org/wikipedia/commons/8/85/Crispin_Glover_2012_Shankbone.JPG    1421
5020    https://upload.wikimedia.org/wikipedia/commons/d/d9/Crispin_Glover_straight_on.jpg    1421
5022    https://upload.wikimedia.org/wikipedia/commons/a/a8/DaleClose.jpg    1422
5028    https://upload.wikimedia.org/wikipedia/commons/d/dd/Katharine_Ross_-_Buddwing.JPG    1424
5035    https://upload.wikimedia.org/wikipedia/commons/2/2d/Lee_Van_Cleef_Grave.JPG    1425
5036    https://upload.wikimedia.org/wikipedia/commons/8/8d/Lee_Van_Cleef_in_Kansas_City_Confidential.jpg    1425
5037    https://upload.wikimedia.org/wikipedia/en/9/9c/LuckyLukeChasseur.jpg    1425
5041    https://upload.wikimedia.org/wikipedia/commons/a/a8/Desi_Arnaz_1950.JPG    1426
5042    https://upload.wikimedia.org/wikipedia/commons/1/1b/Desi_arnaz_sr_and_jr_1974.JPG    1426
5043    https://upload.wikimedia.org/wikipedia/commons/b/bd/Flag_of_Cuba.svg    1426
5046    https://upload.wikimedia.org/wikipedia/commons/4/4c/Lucille_Ball_and_Desi_Arnaz.jpg    1426
5047    https://upload.wikimedia.org/wikipedia/commons/a/a5/Lucy_desi_1957.JPG    1426
5052    https://upload.wikimedia.org/wikipedia/commons/5/59/Richard_Horvitz_JACON_2009_Orlando_Florida.png    1427
5053    https://upload.wikimedia.org/wikipedia/commons/2/2a/Richard_Horvitz_Smiling_%2814696743266%29.jpg    1427
5058    https://upload.wikimedia.org/wikipedia/en/d/d4/NW-CBS-1959.jpg    1429
5059    https://upload.wikimedia.org/wikipedia/en/f/fc/Shatner_Star.JPG    1429
5060    https://upload.wikimedia.org/wikipedia/commons/a/a5/Star_Trek_William_Shatner.JPG    1429
5062    https://upload.wikimedia.org/wikipedia/commons/e/ea/William_Shatner_Riding.jpg    1429
5063    https://upload.wikimedia.org/wikipedia/commons/b/b2/William_Shatner_Sydney_2014.jpg    1429
5064    https://upload.wikimedia.org/wikipedia/commons/f/fe/William_Shatner_star_on_Walk_of_Fame.jpg    1429
5066    https://upload.wikimedia.org/wikipedia/commons/0/08/Natascha_McElhone.jpg    1430
5068    https://upload.wikimedia.org/wikipedia/commons/7/70/Michael_Dorn_by_Gage_Skidmore.jpg    1431
5070    https://upload.wikimedia.org/wikipedia/commons/e/ea/Chaplin_The_Kid_edit.jpg    1434
5072    https://upload.wikimedia.org/wikipedia/commons/8/87/Jackie_Coogan%27s_grave.JPG    1434
5073    https://upload.wikimedia.org/wikipedia/commons/1/11/Jackie_Coogan_as_Uncle_Fester_%28The_Addams_Family%2C_1966%29.jpg    1434
5074    https://upload.wikimedia.org/wikipedia/commons/e/e6/Jackiecoogan.jpg    1434
5076    https://upload.wikimedia.org/wikipedia/commons/a/a4/Michael_Emerson_SDCC_2013.jpg    1435
5077    https://upload.wikimedia.org/wikipedia/commons/9/9e/Personofinterest_bear_loz.png    1435
5079    https://upload.wikimedia.org/wikipedia/en/4/41/Bergman-as-Golda.jpg    1437
5080    https://upload.wikimedia.org/wikipedia/commons/8/8a/Bergman_first_role.jpg    1437
5081    https://upload.wikimedia.org/wikipedia/commons/a/a4/Bergman_stromboli_mpazdziora.JPG    1437
5082    https://upload.wikimedia.org/wikipedia/commons/b/b1/Bergman_with_Rossellini.jpg    1437
5083    https://upload.wikimedia.org/wikipedia/commons/8/87/Casablanca%2C_Trailer_Screenshot.JPG    1437
5085    https://upload.wikimedia.org/wikipedia/commons/a/a5/IngridBergmanportrait.jpg    1437
5086    https://upload.wikimedia.org/wikipedia/commons/d/de/Ingrid_Bergman_-_1954.JPG    1437
5087    https://upload.wikimedia.org/wikipedia/commons/b/be/Ingrid_Bergman_-_Gaslight_44.jpg    1437
5088    https://upload.wikimedia.org/wikipedia/en/3/35/Ingrid_Bergman_-_Mel_Ferrer_-_1957.jpg    1437
5089    https://upload.wikimedia.org/wikipedia/commons/f/f2/Carlos_Bernard_cropped.jpg    1438
5092    https://upload.wikimedia.org/wikipedia/commons/e/e2/2009_CUN_Award_Party_Stephen_Baldwin_005.JPG    1439
5094    https://upload.wikimedia.org/wikipedia/commons/a/a6/Stephen_Baldwin_at_the_White_House_Easter_Egg_Roll.jpg    1439
5095    https://upload.wikimedia.org/wikipedia/commons/2/2a/Stephen_Baldwin_by_Gage_Skidmore.jpg    1439
5096    https://upload.wikimedia.org/wikipedia/commons/2/20/Junko_Takeuchi_-_Dimanche_-_Japan_Expo_2013_-_P1670498.jpg    1440
5099    https://upload.wikimedia.org/wikipedia/commons/6/66/Farley_Granger_in_Rope_trailer.jpg    1441
5100    https://upload.wikimedia.org/wikipedia/commons/2/2e/Farley_Granger_in_Strangers_on_a_Train_trailer.jpg    1441
5102    https://upload.wikimedia.org/wikipedia/commons/f/f6/AffleckAndRachelMaddow09.jpg    1442
5103    https://upload.wikimedia.org/wikipedia/commons/5/5b/AffleckCongress.png    1442
5104    https://upload.wikimedia.org/wikipedia/commons/7/77/AffleckFeedAmerica09_%28cropped%29.jpg    1442
5105    https://upload.wikimedia.org/wikipedia/commons/8/8e/AffleckHollywood_Walk_of_Fame.png    1442
5106    https://upload.wikimedia.org/wikipedia/commons/6/68/Affleck_SAG.png    1442
5107    https://upload.wikimedia.org/wikipedia/commons/d/d1/Argo_Paris_premiere.png    1442
5108    https://upload.wikimedia.org/wikipedia/commons/d/d6/Ben_Affleck_by_Gage_Skidmore.jpg    1442
5109    https://upload.wikimedia.org/wikipedia/commons/c/c6/Benafflecknavy1.jpg    1442
5111    https://upload.wikimedia.org/wikipedia/commons/6/6e/GLAAD_2014.png    1442
5113    https://upload.wikimedia.org/wikipedia/en/e/eb/John_Cazale.jpg    1443
5115    https://upload.wikimedia.org/wikipedia/commons/4/4d/JasonBatemanAmandaAnkaAug2011.jpg    1444
5116    https://upload.wikimedia.org/wikipedia/commons/6/6b/JasonBatemanTIFFSept09.jpg    1444
5117    https://upload.wikimedia.org/wikipedia/commons/1/17/Jason_Bateman_2011.jpg    1444
5118    https://upload.wikimedia.org/wikipedia/commons/5/5c/Mother-series-Earth-gold.jpg    1445
5119    https://upload.wikimedia.org/wikipedia/commons/2/23/Shigesato-Itoi-Meguro-September20-2015.jpg    1445
5123    https://upload.wikimedia.org/wikipedia/commons/2/21/Flag_of_Colombia.svg    1446
5126    https://upload.wikimedia.org/wikipedia/commons/2/2d/Sofia_Vergara_2011_cropped.jpg    1446
5127    https://upload.wikimedia.org/wikipedia/commons/7/77/Sof%C3%ADa_Vergara_2009_American_Music_Awards_Red_Carpet.jpg    1446
5128    https://upload.wikimedia.org/wikipedia/commons/4/45/Sof%C3%ADa_Vergara_2013.jpg    1446
5129    https://upload.wikimedia.org/wikipedia/commons/3/32/Sof%C3%ADa_Vergara_May_2014_%28cropped%29.jpg    1446
5130    https://upload.wikimedia.org/wikipedia/commons/f/fa/Sof%C3%ADa_Vergara_at_2015_PaleyFest.jpg    1446
5131    https://upload.wikimedia.org/wikipedia/commons/7/72/Darin_Brooks_June_19%2C_2014_%28cropped%29.jpg    1447
5133    https://upload.wikimedia.org/wikipedia/commons/2/2e/CarverA.jpg    1448
5138    https://upload.wikimedia.org/wikipedia/commons/b/b1/27th_Tokyo_International_Film_Festival_Y%C5%ABki_Kaji.jpg    1449
5141    https://upload.wikimedia.org/wikipedia/commons/b/b2/TommyLeeJones07TIFF_cropped.jpg    1450
5142    https://upload.wikimedia.org/wikipedia/commons/6/66/Tommy_Lee_Jones_Cannes.jpg    1450
5143    https://upload.wikimedia.org/wikipedia/commons/6/6e/Tommy_Lee_Jones_HS_Yearbook.jpeg    1450
5144    https://upload.wikimedia.org/wikipedia/commons/c/cf/Tommyleejones.jpg    1450
5146    https://upload.wikimedia.org/wikipedia/commons/4/47/Robert_Sean_Leonard.jpg    1452
5148    https://upload.wikimedia.org/wikipedia/commons/4/49/Mary_Lynn_Rajskub4.jpg    1453
5149    https://upload.wikimedia.org/wikipedia/commons/5/51/Mary_Lynn_Rajskub_at_24_finale_2009_crop.jpg    1453
5150    https://upload.wikimedia.org/wikipedia/commons/1/1f/Mary_Lynn_Rajskub_at_GBK_2011.jpg    1453
5151    https://upload.wikimedia.org/wikipedia/commons/4/45/The_cast_of_24_2009.jpg    1453
5153    https://upload.wikimedia.org/wikipedia/commons/3/3e/Stephen_Dillane_at_Dinard_2012.jpg    1454
5154    https://upload.wikimedia.org/wikipedia/commons/f/fe/Stephendillane_at_hatfieldhouse_1.jpg    1454
5155    https://upload.wikimedia.org/wikipedia/commons/9/9e/Gustav_Frolich.jpg    1455
5156    https://upload.wikimedia.org/wikipedia/commons/6/64/Gustav_Fr%C3%B6hlich_1929_Alexander_Binder_4551-1.jpg    1455
5159    https://upload.wikimedia.org/wikipedia/commons/d/db/Karl_Malden%27s_grave_at_Westwood_Village_Memorial_Park_Cemetery_in_Brentwood%2C_California_-_December_2011.jpg    1457
5160    https://upload.wikimedia.org/wikipedia/commons/3/3f/Karl_Malden_-_autographed.jpg    1457
5161    https://upload.wikimedia.org/wikipedia/commons/3/3c/Karl_Malden_2.jpg    1457
5162    https://upload.wikimedia.org/wikipedia/commons/9/93/Karl_Malden_in_I_Confess_trailer.jpg    1457
5163    https://upload.wikimedia.org/wikipedia/commons/f/f0/Karl_malden_eva_marie_saint_waterfront_1.jpg    1457
5164    https://upload.wikimedia.org/wikipedia/commons/f/f3/Karl_malden_marlon_brando_waterfront_4.jpg    1457
5165    https://upload.wikimedia.org/wikipedia/commons/8/8b/Karl_malden_on_the_waterfront_2.jpg    1457
5170    https://upload.wikimedia.org/wikipedia/commons/7/72/Matt_Berry_Headshot.jpg    1458
5173    https://upload.wikimedia.org/wikipedia/commons/2/2c/Mackenzie_Foy_Cannes_2015.jpg    1459
5174    https://upload.wikimedia.org/wikipedia/commons/9/91/8690_Jeremy_Dyson.jpg    1461
5177    https://upload.wikimedia.org/wikipedia/en/3/3c/Boom_Town_poster.jpg    1463
5178    https://upload.wikimedia.org/wikipedia/commons/2/2d/Captains_courageous_tracy_and_bartholomew.jpg    1463
5180    https://upload.wikimedia.org/wikipedia/commons/9/99/Father_of_the_bride_1950_promo.jpg    1463
5181    https://upload.wikimedia.org/wikipedia/en/5/53/Forestlawn_Tracy.jpg    1463
5182    https://upload.wikimedia.org/wikipedia/commons/6/6c/George_M._Cohan_by_Van_Vechten.jpg    1463
5183    https://upload.wikimedia.org/wikipedia/commons/0/0b/Inherit_the_wind_trailer_%283%29_Spencer_Tracy.jpg    1463
5185    https://upload.wikimedia.org/wikipedia/commons/8/8b/Spencer_Tracy.jpg    1463
5186    https://upload.wikimedia.org/wikipedia/commons/1/19/Spencer_Tracy_Loretta_Young_Man%27s_Castle.jpg    1463
5188    https://upload.wikimedia.org/wikipedia/commons/f/f5/Artur_Barcis.jpg    1465
5190    https://upload.wikimedia.org/wikipedia/en/3/38/DouglasSilva1.jpg    1467
5192    https://upload.wikimedia.org/wikipedia/commons/6/65/Kang_Hye-jung_from_acrofan.jpg    1468
5194    https://upload.wikimedia.org/wikipedia/commons/0/09/KeithDavidJune10.jpg    1469
5195    https://upload.wikimedia.org/wikipedia/commons/2/2b/Keith_David_3rd_Annual_ICON_MANN_POWER_50_event_-_Feb_2015_%28cropped%29.jpg    1469
5199    https://upload.wikimedia.org/wikipedia/commons/e/e8/WilWheatonSDCCJuly10.jpg    1471
5200    https://upload.wikimedia.org/wikipedia/commons/9/9f/Wil_Wheaton_Meets_Tim_O%27Reilly.jpg    1471
5201    https://upload.wikimedia.org/wikipedia/commons/5/5b/Wil_Wheaton_wOOtstock_2.4_04.jpg    1471
5202    https://upload.wikimedia.org/wikipedia/commons/f/f5/Nick_Searcy_2013_%28cropped%29.jpg    1473
5206    https://upload.wikimedia.org/wikipedia/en/c/c6/Haya_Harareet_-_1960.jpg    1474
5207    https://upload.wikimedia.org/wikipedia/commons/7/79/Beau_and_lloyd_Bridges_1992.jpg    1475
5208    https://upload.wikimedia.org/wikipedia/commons/f/f5/Commodore_Lloyd_Bridges%2C_U.S._Coast_Guard_Auxiliary_public_service_poster.jpg    1475
5210    https://upload.wikimedia.org/wikipedia/commons/5/52/Lloyd_Bridges%2C_1989.jpg    1475
5211    https://upload.wikimedia.org/wikipedia/commons/5/5d/Lloyd_Bridges_01_Rocketship_X-M.jpg    1475
5212    https://upload.wikimedia.org/wikipedia/commons/e/ed/Lloyd_Bridges_1966.jpg    1475
5214    https://upload.wikimedia.org/wikipedia/commons/7/7f/Britt_Ekland_and_Peter_Sellers_1964.jpg    1476
5217    https://upload.wikimedia.org/wikipedia/en/2/2b/The_Goon_Show_%28cast_photo%29.jpg    1476
5220    https://upload.wikimedia.org/wikipedia/commons/8/83/Peter_Sellers_Birthplace_Portsmouth.jpg    1476
5221    https://upload.wikimedia.org/wikipedia/commons/2/21/Peter_Sellers_Plaque.jpg    1476
5222    https://upload.wikimedia.org/wikipedia/commons/d/d8/Peter_Sellers_ashes%2C_Golders_Green_-_geograph.org.uk_-_825499.jpg    1476
5223    https://upload.wikimedia.org/wikipedia/commons/8/85/Peter_Sellers_at_home_in_Belgravia%2C_London%2C_1973.jpg    1476
5224    https://upload.wikimedia.org/wikipedia/commons/3/33/20120713_Lucy_Lawless_%40_Comic-con_cropped.jpg    1477
5227    https://upload.wikimedia.org/wikipedia/commons/8/89/Lucy_Lawless_2_cropped.jpg    1477
5228    https://upload.wikimedia.org/wikipedia/commons/b/b8/Lucy_Lawless_by_Gage_Skidmore.jpg    1477
5229    https://upload.wikimedia.org/wikipedia/commons/b/b1/Adam_Baldwin_2013.jpg    1478
5230    https://upload.wikimedia.org/wikipedia/commons/5/52/Adam_Baldwin_by_Gage_Skidmore_3.jpg    1478
5233    https://upload.wikimedia.org/wikipedia/commons/a/ac/EllenDeGeneres1997Emmies.jpg    1479
5234    https://upload.wikimedia.org/wikipedia/commons/9/99/Ellen_DeGeneres-2009.jpg    1479
5235    https://upload.wikimedia.org/wikipedia/commons/0/0b/Ellen_DeGeneres_%282004%29.jpg    1479
5236    https://upload.wikimedia.org/wikipedia/commons/6/68/Ellen_DeGeneres_2.jpg    1479
5237    https://upload.wikimedia.org/wikipedia/commons/b/b8/Ellen_DeGeneres_2011.jpg    1479
5238    https://upload.wikimedia.org/wikipedia/en/1/19/Ellen_Time_magazine.jpg    1479
5242    https://upload.wikimedia.org/wikipedia/commons/7/72/245_W103_St_Bogie_plaque_jeh.JPG    1480
5244    https://upload.wikimedia.org/wikipedia/commons/f/f4/Bacall_and_Bogart_Dark_Passage.jpg    1480
5245    https://upload.wikimedia.org/wikipedia/commons/3/32/Bogarts-LIFE-1944.jpg    1480
5247    https://upload.wikimedia.org/wikipedia/commons/e/e2/CreditBogartMaltFalc1941Trailer.jpg    1480
5248    https://upload.wikimedia.org/wikipedia/commons/e/ee/Hepburn_bogart_african_queen.png    1480
5249    https://upload.wikimedia.org/wikipedia/commons/4/44/Humphrey_Bogart_1945.JPG    1480
5250    https://upload.wikimedia.org/wikipedia/commons/0/08/Humphrey_Bogart_Grave.JPG    1480
5251    https://upload.wikimedia.org/wikipedia/commons/1/1e/Humphrey_Bogart_James_Cagney_Jeffrey_Lynn_in_The_Roaring_Twenties_trailer.jpg    1480
5256    https://upload.wikimedia.org/wikipedia/commons/b/bb/AnthonyWong08TIFF.jpg    1484
5258    https://upload.wikimedia.org/wikipedia/commons/e/e7/Colman-Arthur-publicity.jpg    1485
5263    https://upload.wikimedia.org/wikipedia/commons/6/67/Jean_Arthur_-_1942.JPG    1485
5264    https://upload.wikimedia.org/wikipedia/commons/0/02/Jean_Arthur_-_Smith.JPG    1485
5265    https://upload.wikimedia.org/wikipedia/commons/4/48/Jean_Arthur_-_publicity.JPG    1485
5266    https://upload.wikimedia.org/wikipedia/commons/1/1c/Jean_Arthur_-_signed.jpg    1485
5267    https://upload.wikimedia.org/wikipedia/commons/3/33/Jean_Arthur_in_Only_Angels_Have_Wings_trailer.JPG    1485
5274    https://upload.wikimedia.org/wikipedia/commons/a/a6/RyanStilesNov08.jpg    1487
5275    https://upload.wikimedia.org/wikipedia/commons/0/04/Citizen_Kane-Jo_Cotten.jpg    1488
5277    https://upload.wikimedia.org/wikipedia/commons/0/09/Dolores_del_Rio-Joseph_Cotten-Journey_into_Fear.jpg    1488
5278    https://upload.wikimedia.org/wikipedia/commons/8/89/Jo-Cotten-American-FC-1931.jpg    1488
5279    https://upload.wikimedia.org/wikipedia/commons/e/ed/Joseph_Cotten_%26_Patricia_Medina.jpg    1488
5280    https://upload.wikimedia.org/wikipedia/commons/b/bf/Joseph_Cotten_1957.JPG    1488
5281    https://upload.wikimedia.org/wikipedia/commons/c/c6/Joseph_Cotten_in_Shadow_of_a_Doubt_trailer.jpg    1488
5282    https://upload.wikimedia.org/wikipedia/commons/9/9d/Mercury-Wonder-Show-Welles-Cotten.jpg    1488
5284    https://upload.wikimedia.org/wikipedia/commons/7/73/Philadelphia-Story-Stage-5.jpg    1488
5286    https://upload.wikimedia.org/wikipedia/commons/c/c3/Scatman_Crothers_-_Southern_Campus_1960_crop.jpg    1489
5287    https://upload.wikimedia.org/wikipedia/commons/e/e4/Scatman_Crothers_Redd_Foxx_Sanford_and_Son_1975.JPG    1489
5289    https://upload.wikimedia.org/wikipedia/commons/a/a2/Trace_Beaulieu_DragonCon_2008.jpg    1490
5291    https://upload.wikimedia.org/wikipedia/commons/e/e2/GaelGarciaBernalLFF.jpg    1492
5292    https://upload.wikimedia.org/wikipedia/commons/5/5a/GaelGarciaBernalTIFFSept2012.jpg    1492
5293    https://upload.wikimedia.org/wikipedia/commons/f/ff/Gael_Garc%C3%ADa_Bernal.jpg    1492
5296    https://upload.wikimedia.org/wikipedia/commons/7/74/Jessica_Hynes.jpg    1494
5298    https://upload.wikimedia.org/wikipedia/commons/f/fb/John_Simm_%282010%29.jpg    1495
5302    https://upload.wikimedia.org/wikipedia/commons/b/b4/Michael-Keaton.jpg    1496
5303    https://upload.wikimedia.org/wikipedia/commons/5/5f/Michael_Keaton_Face.jpg    1496
5304    https://upload.wikimedia.org/wikipedia/commons/4/47/AnthonyHopkins10TIFF.jpg    1497
5305    https://upload.wikimedia.org/wikipedia/commons/a/ab/Anthony_Hopkins-Tuscan_Sun_Festival.jpg    1497
5306    https://upload.wikimedia.org/wikipedia/commons/7/72/Anthony_Hopkins.jpg    1497
5307    https://upload.wikimedia.org/wikipedia/commons/a/a9/Anthony_Hopkins_Centre.jpg    1497
5308    https://upload.wikimedia.org/wikipedia/commons/4/48/Anthony_Hopkins_Wax.jpg    1497
5310    https://upload.wikimedia.org/wikipedia/commons/e/e3/I_Rossellini_A_Hopkins.jpg    1497
5311    https://upload.wikimedia.org/wikipedia/commons/d/db/North_snowdonia_panorama.jpg    1497
5313    https://upload.wikimedia.org/wikipedia/commons/d/db/Adrien.Brody%28cannesPH%29_cropped.jpg    1498
5314    https://upload.wikimedia.org/wikipedia/commons/5/59/Adrien_Brody_Cannes_2013.jpg    1498
5315    https://upload.wikimedia.org/wikipedia/commons/9/97/Adrien_Brody_Cannes_2014.jpg    1498
5318    https://upload.wikimedia.org/wikipedia/commons/5/58/AudreyHepburnWoF.jpg    1499
5319    https://upload.wikimedia.org/wikipedia/commons/5/5e/Audrey_Hepburn_1956.jpg    1499
5320    https://upload.wikimedia.org/wikipedia/commons/e/e5/Audrey_Hepburn_Tiffany%27s_4.jpg    1499
5321    https://upload.wikimedia.org/wikipedia/commons/7/7e/Audrey_Hepburn_War%26Peace.jpg    1499
5322    https://upload.wikimedia.org/wikipedia/commons/f/fe/Audrey_Hepburn_and_Andrea_Dotti_by_Erling_Mandelmann_-_2.jpg    1499
5324    https://upload.wikimedia.org/wikipedia/commons/a/a9/Audrey_Hepburn_and_Mel_Ferrer_1955.jpg    1499
5325    https://upload.wikimedia.org/wikipedia/commons/c/c7/Audrey_Hepburn_and_Ronald_Reagan.jpg    1499
5326    https://upload.wikimedia.org/wikipedia/commons/3/34/Audrey_Hepburn_esmorza_al_Tiffany%27s.bmp.jpg    1499
5327    https://upload.wikimedia.org/wikipedia/commons/9/98/Audrey_Hepburn_screentest_in_Roman_Holiday_trailer.jpg    1499
5328    https://upload.wikimedia.org/wikipedia/commons/b/b3/Jason_Flemyng.jpg    1500
5337    https://upload.wikimedia.org/wikipedia/commons/c/c5/J._D._Cannon.jpg    1503
5340    https://upload.wikimedia.org/wikipedia/commons/e/ed/Bofors-060323-F-9044H-001.JPG    1505
5346    https://upload.wikimedia.org/wikipedia/commons/9/96/Lee_Ermey_crop.jpg    1505
5349    https://upload.wikimedia.org/wikipedia/commons/4/43/Jonathan_Taylor_Thomas.jpg    1506
5351    https://upload.wikimedia.org/wikipedia/commons/b/b7/VincentCassel08TIFF.jpg    1507
5352    https://upload.wikimedia.org/wikipedia/commons/e/e0/Vincent_Cassel_Cannes_2015_2.jpg    1507
5354    https://upload.wikimedia.org/wikipedia/commons/b/b5/Martin_Freeman_during_filming_of_Sherlock_cropped.jpg    1508
5356    https://upload.wikimedia.org/wikipedia/commons/d/da/Andrew_sachs.jpg    1509
5358    https://upload.wikimedia.org/wikipedia/commons/9/9b/Martin_Starr_by_Gage_Skidmore.jpg    1510
5361    https://upload.wikimedia.org/wikipedia/commons/1/1f/Stellan_Skarsg%C3%A5rd_2009.jpg    1511
5362    https://upload.wikimedia.org/wikipedia/en/9/9e/Roger_Lloyd-Pack.jpg    1513
5363    https://upload.wikimedia.org/wikipedia/commons/b/b9/Bill-Bailey.jpg    1514
5364    https://upload.wikimedia.org/wikipedia/en/d/d7/Bill_Bailey_-_SYTYF.JPG    1514
5365    https://upload.wikimedia.org/wikipedia/commons/1/1f/Bill_Bailey_rocking_out.jpg    1514
5367    https://upload.wikimedia.org/wikipedia/en/4/43/Is_It_Bill_Bailey.jpg    1514
5369    https://upload.wikimedia.org/wikipedia/commons/2/2f/Dan_Feuerriegel_2014.jpg    1515
5371    https://upload.wikimedia.org/wikipedia/commons/6/6e/JerryO%27ConnellHWOFJune2013.jpg    1516
5373    https://upload.wikimedia.org/wikipedia/commons/d/df/Jonny_Lee_Miller_Comic-Con_2012_%28cropped%29.jpg    1517
5380    https://upload.wikimedia.org/wikipedia/commons/a/a5/KateWinsletAAFeb09.jpg    1518
5381    https://upload.wikimedia.org/wikipedia/commons/9/9a/KateWinsletByAndreaRaffin2011.jpg    1518
5382    https://upload.wikimedia.org/wikipedia/commons/4/44/Kate_Winslet_2006_Toronto.jpg    1518
5383    https://upload.wikimedia.org/wikipedia/commons/6/6d/Kate_Winslet_C%C3%A9sar_2012_%28cropped%29.jpg    1518
5384    https://upload.wikimedia.org/wikipedia/commons/7/73/Kate_Winslet_Palm_Film_Festival.jpg    1518
5385    https://upload.wikimedia.org/wikipedia/commons/1/14/Kate_Winslet_TIFF_2015.jpg    1518
5386    https://upload.wikimedia.org/wikipedia/commons/9/99/Kate_Winslet_at_The_Dressmaker_event_TIFF_%28headshot%29.jpg    1518
5387    https://upload.wikimedia.org/wikipedia/commons/f/f8/Labor_Day_09_%289766135575%29.jpg    1518
5388    https://upload.wikimedia.org/wikipedia/commons/0/05/2005_Kennedy_Center_honorees.jpg    1519
5390    https://upload.wikimedia.org/wikipedia/commons/3/35/Mrs_Sibylle_Szaggers_Redford_and_Robert_Redford.jpg    1519
5391    https://upload.wikimedia.org/wikipedia/commons/f/fc/Redford_Milagro_Cannes_1988.jpg    1519
5392    https://upload.wikimedia.org/wikipedia/commons/2/2d/Robert_Redford_%28cropped%29.jpg    1519
5393    https://upload.wikimedia.org/wikipedia/commons/3/39/Robert_Redford_Barefoot_in_the_park.jpg    1519
5394    https://upload.wikimedia.org/wikipedia/commons/9/9d/Robert_Redford_Cannes_2013.jpg    1519
5395    https://upload.wikimedia.org/wikipedia/commons/3/37/Robert_Redford_with_Bill_Richardson.jpg    1519
5399    https://upload.wikimedia.org/wikipedia/commons/4/48/Veronica_Cartwright.jpg    1521
5401    https://upload.wikimedia.org/wikipedia/commons/3/37/KariByronProfile.jpg    1522
5402    https://upload.wikimedia.org/wikipedia/commons/0/0a/Kari_Byron_at_Comicon_2010_crop.jpg    1522
5403    https://upload.wikimedia.org/wikipedia/commons/7/71/JeremyShadaCrop.jpg    1524
5406    https://upload.wikimedia.org/wikipedia/en/1/1d/Thelma_Ritter_-_1955.jpg    1526
5407    https://upload.wikimedia.org/wikipedia/en/f/f0/Angelo-Muscat-Prisoner.jpg    1527
5410    https://upload.wikimedia.org/wikipedia/commons/9/9d/Phyllis_Smith_FOX_2_St._Louis.JPG    1529
5413    https://upload.wikimedia.org/wikipedia/commons/d/dc/Caitlin_Glass_by_Gage_Skidmore.jpg    1530
5415    https://upload.wikimedia.org/wikipedia/en/2/26/MadeleineCarrollTyronePowerLloydsofLondon.jpg    1532
5419    https://upload.wikimedia.org/wikipedia/commons/7/73/Tyrone_Power_-_still.jpg    1532
5420    https://upload.wikimedia.org/wikipedia/commons/e/ea/Tyrone_Power_1946.jpg    1532
5421    https://upload.wikimedia.org/wikipedia/commons/1/12/Tyrone_Power_1953.jpg    1532
5422    https://upload.wikimedia.org/wikipedia/commons/a/ab/Tyrone_Power_Grave.JPG    1532
5423    https://upload.wikimedia.org/wikipedia/commons/7/78/Tyrone_Power_Maureen_O%27Hara_Black_Swan_6.jpg    1532
5425    https://upload.wikimedia.org/wikipedia/commons/e/e7/Meat_Loaf.jpg    1533
5426    https://upload.wikimedia.org/wikipedia/commons/1/1c/Meat_Loaf_Birmingham_NEC_2007.jpg    1533
5429    https://upload.wikimedia.org/wikipedia/en/9/94/Lamberto.jpg    1535
5431    https://upload.wikimedia.org/wikipedia/commons/4/48/Alexander_Gould_%28cropped%29.jpeg    1536
5434    https://upload.wikimedia.org/wikipedia/commons/5/59/Virginia_Cherrill_by_Lansing_Brown.jpg    1537
5436    https://upload.wikimedia.org/wikipedia/commons/7/77/GuyPearce07TIFF.jpg    1538
5437    https://upload.wikimedia.org/wikipedia/commons/7/79/Guy_Pearce_%286942438769%29.jpg    1538
5438    https://upload.wikimedia.org/wikipedia/commons/f/ff/Guy_Pearce_Cannes_2012.jpg    1538
5441    https://upload.wikimedia.org/wikipedia/commons/3/32/Benicio_Del_Toro_-_Guardians_of_the_Galaxy_premiere_-_July_2014_%28cropped%29.jpg    1540
5442    https://upload.wikimedia.org/wikipedia/commons/b/bb/Benicio_Del_Toro_by_Gage_Skidmore.jpg    1540
5443    https://upload.wikimedia.org/wikipedia/en/f/f4/CheDelToro3.jpg    1540
5445    https://upload.wikimedia.org/wikipedia/commons/d/d5/Escobar_Paradise_Lost_01_%2815045065428%29_%282%29_%28cropped%29.jpg    1540
5450    https://upload.wikimedia.org/wikipedia/commons/6/63/John_Gavin_Destry_1964.JPG    1541
5451    https://upload.wikimedia.org/wikipedia/commons/1/14/Paloma_Cordero_Nancy_Reagan_Mexico_City_1985_earthquake.jpg    1541
5452    https://upload.wikimedia.org/wikipedia/en/c/c2/Warren_Clarke.jpg    1542
5453    https://upload.wikimedia.org/wikipedia/commons/4/41/Alex_Hirsch_and_Grunkle_Stan_puppet_at_San_Diego_Comic-Con_International_2013.jpg    1543
5455    https://upload.wikimedia.org/wikipedia/commons/d/dc/AdamSavageJul2011_cropped.jpg    1544
5456    https://upload.wikimedia.org/wikipedia/commons/7/7d/Adam_Savage_at_Reason_Rally.JPG    1544
5458    https://upload.wikimedia.org/wikipedia/commons/4/4a/Cropped_Adam_Savage_HOPE.jpg    1544
5462    https://upload.wikimedia.org/wikipedia/commons/9/9a/Tressmacneille.jpg    1546
5466    https://upload.wikimedia.org/wikipedia/commons/e/e9/The-Magnificent-Ambersons-5.jpg    1548
5467    https://upload.wikimedia.org/wikipedia/commons/a/a6/Tim_Holt_Western.jpg    1548
5469    https://upload.wikimedia.org/wikipedia/commons/5/51/Cat_roof.jpg    1550
5471    https://upload.wikimedia.org/wikipedia/commons/2/25/Conf55-11_nov-55.jpg    1550
5472    https://upload.wikimedia.org/wikipedia/commons/f/f4/Elizabeth_Taylor_-_child.JPG    1550
5473    https://upload.wikimedia.org/wikipedia/commons/3/37/Elizabeth_Taylor_1.JPG    1550
5474    https://upload.wikimedia.org/wikipedia/commons/6/65/Elizabeth_Taylor_1971.jpg    1550
5475    https://upload.wikimedia.org/wikipedia/commons/4/42/Elizabeth_Taylor_2.jpg    1550
5476    https://upload.wikimedia.org/wikipedia/commons/6/65/Elizabeth_Taylor_Argentinean_Magazine_AD.jpg    1550
5477    https://upload.wikimedia.org/wikipedia/commons/8/89/Elizabeth_Taylor_Cleopatra_1963.JPG    1550
5478    https://upload.wikimedia.org/wikipedia/commons/9/9c/Elizabeth_Taylor_Walk_of_Fame.jpg    1550
5480    https://upload.wikimedia.org/wikipedia/commons/3/3f/Lauren_Graham%2C_2008_appearance.jpg    1551
5481    https://upload.wikimedia.org/wikipedia/commons/b/bd/Peter_Krause_Paleyfest_2013.jpg    1551
5482    https://upload.wikimedia.org/wikipedia/commons/1/1b/CareyMulliganPeterSarsgaardOct2009.jpg    1552
5491    https://upload.wikimedia.org/wikipedia/commons/5/53/RichardKind09TIFF.jpg    1553
5498    https://upload.wikimedia.org/wikipedia/commons/8/83/WendellPierceJan07.jpg    1556
5499    https://upload.wikimedia.org/wikipedia/commons/3/34/Wendell_Pierce.JPG    1414
5301    https://upload.wikimedia.org/wikipedia/en/d/df/Keaton_as_Batman.jpg    1324
5492    https://upload.wikimedia.org/wikipedia/commons/f/f2/Richard_Kind_at_the_2010_Independent_Spirit_Awards.jpg    1545
5486    https://upload.wikimedia.org/wikipedia/commons/8/85/Joel_Edgerton%2C_Baz_Luhrmann%2C_Elizabeth_Debicki%2C_Carey_Mulligan%2C_Tobey_Maguire_and_Catherine_Martin.jpg    \N
5484    https://upload.wikimedia.org/wikipedia/commons/c/c3/Carey_Mulligan_2%2C_2013.jpg    \N
5483    https://upload.wikimedia.org/wikipedia/commons/f/fd/Carey_Mulligan_%288778393423%29.jpg    \N
5468    https://upload.wikimedia.org/wikipedia/commons/d/d6/Tim_Holt_in_The_Treasure_of_the_Sierra_Madre_trailer.jpg    \N
\.


--
-- Data for Name: actors; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.actors (id, name) FROM stdin;
1    Johnny Yong Bosch
2    Rod Serling
3    Daniel Day-Lewis
4    Justin Roiland
5    David Cross
6    Dmitriy Dyuzhev
7    Michael Smiley
8    Erich von Stroheim
9    Mathieu Kassovitz
10    Alan Howard
11    Birgitte Hjort Sørensen
12    Gene Hackman
13    Lisa Dillon
14    Courteney Cox
15    Nils Poppe
16    Giorgio Cantarini
17    Claire Danes
18    Nancy Olson
19    Ulrich Tukur
20    Paul Winfield
21    Siu-Wong Fan
22    Bryce Dallas Howard
23    Abbi Jacobson
24    Satish Shah
25    Kate Atkinson
26    Sylvester Stallone
27    Carroll O'Connor
28    Philip Seymour Hoffman
29    Rick Hoffman
30    Sergey Bezrukov
31    Joe Pesci
32    Hugh Laurie
33    Eddie Murphy
34    Reece Shearsmith
35    Mario Brega
36    Daniel Kaluuya
37    Robert Patrick
38    Jack Davenport
39    Kyle MacLachlan
40    Don Rickles
41    Zoe Saldana
42    Dee Bradley Baker
43    Kana Hanazawa
44    Jennifer Morrison
45    Tom Kenny
46    Jeff Daniels
47    Russell Crowe
48    Robby Benson
49    Una Stubbs
50    John Travolta
51    Miranda Richardson
52    Jodie Comer
53    Katherine Parkinson
54    Sully Boyar
55    Börje Ahlstedt
56    Nigel Hawthorne
57    Mark McKinney
58    Rhys Darby
59    Jared Leto
60    Christopher Guest
61    Ernest Borgnine
62    Andy Lau
63    John Savage
64    Josh Brolin
65    David Tennant
66    Marlon Wayans
67    Daisuke Ryû
68    Devon Aoki
69    Bess Armstrong
70    Comet
71    Lionel Barrymore
72    Álvaro Guerrero
73    James May
74    Wentworth Miller
75    Fritz Rasp
76    Megumi Han
77    John Hannah
78    Simon Greenall
79    Ulrich Mühe
80    Ray Stevenson
81    Danica McKellar
82    Ed O'Neill
83    Michael C. Hall
84    Jodie Foster
85    Michael J. Fox
86    Claudette Colbert
87    Carrie Henn
88    Cillian Murphy
89    Michael Gambon
90    Richard Burton
91    Patrick Fabian
92    Matt Damon
93    Jun Fukuyama
94    Jeremy Allen White
95    Anna Paquin
96    Shaun Williamson
97    Ned Beatty
98    Peter van Eyck
99    Terry Jones
100    Jim Cummings
101    Hugh Keays-Byrne
102    Mary McDonnell
103    Noriko Hidaka
104    Mayumi Tanaka
105    Sterling K. Brown
106    Nicoletta Braschi
107    Ulrich Matthes
108    Liv Ullmann
109    Tony Curtis
110    Max von Sydow
111    Robert Downey Jr.
112    Norman Reedus
113    Burt Lancaster
114    Jean-Pierre Léaud
115    Kevin McKidd
116    Chris Romano
117    Chi McBride
118    Brian Bloom
119    Pierre Fresnay
120    Graham Chapman
121    Jamie Bell
122    Tom Berenger
123    Jeff Goldblum
124    Andy Berman
125    Roe-ha Kim
126    Ricky Gervais
127    Kazuya Nakai
128    Michael Madsen
129    Laura Linney
130    Jim Varney
131    Alec Baldwin
132    Crispin Freeman
133    Mark Penfold
134    Robert Powell
135    Charlotte Tyree
136    Christian Clemenson
137    Jenny Slate
138    Nicholas Lyndhurst
139    John Hurt
140    Vivica A. Fox
141    Siân Phillips
142    Michael Berryman
143    Dave Foley
144    Jordan Gavaris
145    Connie Nielsen
146    Danny Aiello
147    Corey Feldman
148    Charles Chaplin
149    Sharon Rooney
150    Peter Lorre
151    Judi Dench
152    Rufus
153    Carla Quevedo
154    Dickie Gravois
155    Bert Lahr
156    Kelly Macdonald
157    Philip Glenister
158    Barbara O'Neil
159    Matt Smith
160    Julianne Moore
161    Faye Dunaway
162    Robert Lee
163    Daveigh Chase
164    Liz White
165    Laura Dern
166    Dana DeLorenzo
167    Melissa Benoist
168    Kevin Conroy
169    Molly Parker
170    Adolphe Menjou
171    Debra Kay Anderson
172    Bengt Ekerot
173    Kristian Almgren
174    Trevor Howard
175    Roger Allam
176    Alexis Bledel
177    Rob McElhenney
178    Ralph Fiennes
179    Eric Bana
180    Billy West
181    Jordan Nagai
182    Jill Marie Jones
183    Akemi Kanda
184    Irene Papas
185    Phil LaMarr
186    Janet Varney
187    Sala Baker
188    François Cluzet
189    Sigourney Weaver
190    Jennifer Garner
191    Ruth Roman
192    Ty Burrell
193    Jack Huston
194    Olivia Wilde
195    Colleen O'Shaughnessey
196    Jason Ritter
197    Steve McQueen
198    Isa Danieli
199    Woody Harrelson
200    Jean Martin
201    Jeremy Brett
202    Gina Bellman
203    Frankie Faison
204    Ryô Naitô
205    Hussein Sami
206    Peter Stormare
207    Amanda Tapping
208    Jae-kyeong Seo
209    Brie Larson
210    Nathan Fillion
211    Chris Cooper
212    David Burke
213    Derek Luke
214    Carl Lumbly
215    Reginald VelJohnson
216    Portia Doubleday
217    Jeff Garlin
218    Kaitlin Olson
219    Dina Sherman
220    Heath Ledger
221    Vincent D'Onofrio
222    Loretta Swit
223    Michael Raymond-James
224    Takahiro Sakurai
225    Stephen Colbert
226    Ian McKellen
227    Larry David
228    Diana Hoddinott
229    Edward G. Robinson
230    Alan Rickman
231    Lorella Cravotta
232    Stephen Rea
233    Kimberly Quinn
234    Michael Cudlitz
235    Michael Kitchen
236    Rene Auberjonois
237    Rhea Seehorn
238    Erdal Besikçioglu
239    Emily Mortimer
240    Kevin Dillon
241    Talia Shire
242    Siobhan Finneran
243    Mary Astor
244    Denholm Elliott
245    David Suchet
246    Mary Gibbs
247    Efrem Zimbalist Jr.
248    Nick Nolte
249    James Gandolfini
250    Frances Conroy
251    Marilyn Monroe
252    Ryan Reynolds
253    Leandro Firmino
254    Pedro Pascal
255    Su Elliot
256    Chris Barrie
257    John Oliver
258    Toby Kebbell
259    Gorô Naya
260    James Caan
261    Polly Walker
262    Eli Wallach
263    Richard S. Castellano
264    Min-sik Choi
265    Ben Burtt
266    Laurent Vernin
267    Strother Martin
268    Seda Bakan
269    Mustafa Kamel
270    Lianella Carell
271    Kent Williams
272    Martin Wallström
273    Bruce Campbell
274    Soledad Villamil
275    Claire Maurier
276    David Zayas
277    Amanda Winn Lee
278    Walter Huston
279    John Fiedler
280    Sarah Boberg
281    Candice Bergen
282    J. Michael Tatum
283    Chie Nakamura
284    Ursula Parker
285    Jesse Spencer
286    Fred MacMurray
287    Sean Young
288    Nicholas Hoult
289    Edie Falco
290    Andrew Jarecki
291    Jared Padalecki
292    Mark Hamill
293    Tsutomu Tatsumi
294    Melissa Fahn
295    Katie Holmes
296    Evelyn Keyes
297    Audrey Fleurot
298    Martin Sheen
299    Richard Harris
300    Jodie Whittaker
301    Dexter Fletcher
302    Chris Lilley
303    Joe Thomas
304    Danny Lloyd
305    Felicity Montagu
306    Jasika Nicole
307    Margaret Livingston
308    Michael Cera
309    Julie Delpy
310    Emma Handy
311    Ben Collins
312    James Remar
313    Mathieu Amalric
314    Bruno Ganz
315    Robert Durst
316    William Sadler
317    Cameron Bautsch
318    Jacob Tremblay
319    Zach Tyler
320    Noel Appleby
321    Tom Skerritt
322    Thomas Middleditch
323    Osman Sonant
324    Wagner Moura
325    Anne Le Ny
326    Kevin Brief
327    Agnes Moorehead
328    Fred Willard
329    Rupert Friend
330    Christoph Waltz
331    Iro Utaifeau
332    Donnell Rawlings
333    Rick D. Wasserman
334    Charles Bronson
335    Alfred Abel
336    Mélanie Laurent
337    Maggie Cheung
338    Mel Blanc
339    Mitsuo Iwata
340    Jay Johnston
341    Oliver Reed
342    Cathy Moriarty
343    Sally Field
344    Ethan Hawke
345    Joseph Gordon-Levitt
346    Christopher Plummer
347    Michael Ansara
348    Peter O'Toole
349    Terry Gilliam
350    Guy Decomble
351    Carol Kane
352    Perry Lopez
353    Jon Stewart
354    Edna Purviance
355    Mayo Suzukaze
356    Kurt Russell
357    Matthew Braden Stringer
358    Stephen Boyd
359    Danny Pudi
360    Joseph Calleia
361    Lee Pace
362    Piper Perabo
363    Yeong-su Oh
364    Danny Glover
365    Paul Gleason
366    Richard Hunt
367    Michael Clarke Duncan
368    Kit Harington
369    Jay Baruchel
370    Charlton Heston
371    James Franco
372    Robin Williams
373    Doc Harris
374    Yûto Nakano
375    James Spader
376    Bette Davis
377    Julius Carry
378    Steven Bauer
379    Salvatore Abbruzzese
380    Matthew Broderick
381    Chiwetel Ejiofor
382    Joan Allen
383    Billie Piper
384    Adrian Grenier
385    John Cleese
386    Hiromi Tsuru
387    Gregory Peck
388    James Donald
389    Marc Diraison
390    Charlize Theron
391    Anna Maxwell Martin
392    Chris Addison
393    John Dunsworth
394    Allison Keith
395    Ivana Baquero
396    Chieko Baishô
397    Maxey Whitehead
398    Rosearik Rikki Simons
399    Ron Livingston
400    Adolf Hitler
401    Doug Jones
402    Bruce Allpress
403    Leslie Nielsen
404    Rosalie Williams
405    Kang-ho Song
406    Bob Gunton
407    Takuya Kimura
408    Charles Vanel
409    Sean Bridgers
410    Julie Harris
411    Ralph Meeker
412    Alida Valli
413    Don Cheadle
414    Shirô Saitô
415    Helena Bonham Carter
416    Claude Rains
417    Shane Zaza
418    Sumeet Raghvan
419    Kevin Spacey
420    Colin Farrell
421    Jean Stapleton
422    Akira Kubo
423    Mark Ruffalo
424    Murat Cemcir
425    Vincenzo Fabricino
426    George Segal
427    Salvatore Ruocco
428    Marianne Koch
429    John Goodman
430    Jim Farley
431    William Hurt
432    Zach Grenier
433    Donna Reed
434    Tim Allen
435    Richard Gere
436    Colin Firth
437    Roberto Benigni
438    Steve Blum
439    Neil Patrick Harris
440    Johnny Depp
441    Amaury Nolasco
442    William Sylvester
443    Idris Elba
444    Prunella Scales
445    Christopher McCulloch
446    T.J. Miller
447    Donal Logue
448    Michael Biehn
449    Fredric March
450    Viola Davis
451    Morena Baccarin
452    Alonzo Brown
453    Rod Steiger
454    Bryan Cranston
455    Ed Marinaro
456    Gerard Butler
457    Travis Fimmel
458    Robson Green
459    Ellen Page
460    Dean Wein
461    John Ennis
462    Caroline Goodall
463    Klaus Wennemann
464    Lucy Liu
465    Olivia Cole
466    Hubert Koundé
467    Tony Robinson
468    Helen McCrory
469    Hanno Pöschl
470    Jae-ho Song
471    Diahnne Abbott
472    Brad Dourif
473    Ryô Horikawa
474    Sean Connery
475    Beau Billingslea
476    Dominic West
477    Wolfgang Lukschy
478    Enzo Cannavale
479    Tom Schilling
480    Jon Voight
481    Noah Emmerich
482    Yvonne Furneaux
483    Jennifer Ehle
484    Daniel Zacapa
485    Jamie Foxx
486    Brad Swaile
487    Bodil Rosing
488    Louise Lemoine Torrès
489    Philip Jackson
490    Mia Wasikowska
491    Barbara Bel Geddes
492    Yves Montand
493    Yaphet Kotto
494    Gerry Robert Byrne
495    Adam Driver
496    Martin Stringer
497    Gary Cooper
498    Pamela Rabe
499    William Holden
500    Eli Roth
501    Kôjun Itô
502    Morey Amsterdam
503    Tom Sizemore
504    Alexander Skarsgård
505    Jamie Bamber
506    Gabriel Byrne
507    Elsa Lanchester
508    Audrey Tautou
509    Christopher Sabat
510    Ashley Jensen
511    Dylan Bruce
512    Marlene Dietrich
513    John Megna
514    Buster Keaton
515    Aaron Dismuke
516    Yvonne Strahovski
517    Alan Ritchson
518    Chris Penn
519    Tom Hanks
520    Karen Allen
521    Ewan McGregor
522    Amy Poehler
523    Asolima Tauati
524    Nick Frost
525    Paul Freeman
526    Kim Coates
527    Jonathan Banks
528    Thomas Bo Larsen
529    Edward Norton
530    Leila Hatami
531    Jane Darwell
532    Vic Mignogna
533    Sandy Nelson
534    Chris Sarandon
535    Nick Cassavetes
536    Ulrich Thomsen
537    Elizabeth Berridge
538    Nick Offerman
539    Charlie Murphy
540    Sam Neill
541    Mary Elizabeth Mastrantonio
542    Ernie Hudson
543    Sean Astin
544    Billy Bob Thornton
545    Kevin Chapman
546    Patrick Magee
547    Dylan Moran
548    Aaron Paul
549    Chanel Cresswell
550    Brad Pitt
551    Ginnifer Goodwin
552    Unshô Ishizuka
553    Haley Joel Osment
554    Frank Kelly
555    Rory Kinnear
556    Mami Koyama
557    Amber Nash
558    Anthony Howell
559    Miyu Irino
560    James Callis
561    Alisa Freyndlikh
562    Ian McShane
563    Ethan Cutkosky
564    Yôko Tsukasa
565    Ed Skrein
566    Scott Glenn
567    Richard Dreyfuss
568    Rosamund Pike
569    Maggie Gyllenhaal
570    Jim Carter
571    Makoto Furukawa
572    Jerry Ferrara
573    Kirk Douglas
574    Jon Seda
575    Orlando Bloom
576    Jean Hagen
577    Tung Cho 'Joe' Cheung
578    Leslie David Baker
579    Naveen Andrews
580    Michael Palin
581    Ilana Glazer
582    Miriam Stein
583    Wilson Cruz
584    Mark Heap
585    Khary Payton
586    Richard Dean Anderson
587    Barry Humphries
588    Maggie Siff
589    Clark Johnson
590    Maile Flanagan
591    Carrie-Anne Moss
592    Marion Mack
593    Sang-kyung Kim
594    Alan North
595    Henry Daniell
596    Victor Argo
597    Dustin Clare
598    Mae Whitman
599    Dan Cohen
600    Kevin Eldon
601    Bret McKenzie
602    George Macready
603    George O'Brien
604    Megan Follows
605    Richard Belzer
606    Christopher Walken
607    Susannah Harker
608    Jesse McCartney
609    Masaki Aizawa
610    Ben McKenzie
611    Frank Vincent
612    Vin Diesel
613    Tom Hulce
614    Ricardo Darín
615    Jason Statham
616    Charley Grapewin
617    Aldo Giuffrè
618    Jim Mallon
619    January Jones
620    Lorraine Gary
621    Jack De Sena
622    Nicole da Silva
623    Frances McDormand
624    Sally Struthers
625    Jemaine Clement
626    Burnie Burns
627    Rupali Ganguly
628    Lee Tergesen
629    Jack Hawkins
630    Frank Adu
631    Donald Faison
632    Ingrid Thulin
633    Nathan Stewart-Jarrett
634    Victor Sjöström
635    Cary Elwes
636    Melanie Lynskey
637    Dorothy Comingore
638    Bruce Dern
639    Gustaf Skarsgård
640    Gary Napoli
641    Finn Morrell
642    Dino Andrade
643    Rudolf Klein-Rogge
644    Liev Schreiber
645    Imelda Staunton
646    Wes Bentley
647    Val Kilmer
648    Giustino Durano
649    George Sanders
650    Robert Walker
651    André Holland
652    Chris Pratt
653    Olaf Lubaszenko
654    Sandra Milo
655    Lauren Ambrose
656    Larry Mathews
657    Ann Dowd
658    Chandler Riggs
659    Walter Connolly
660    Keira Knightley
661    Richard Hammond
662    Javier Bardem
663    Jacob Pitts
664    Stephen Merchant
665    Neil deGrasse Tyson
666    Marisa Berenson
667    Sarah Lancashire
668    River Phoenix
669    Tom Hollander
670    Mack Swain
671    Ayako Kawasumi
672    Richard Jenkins
673    Andrew Ellis
674    Shelley Duvall
675    Sarah Chalke
676    Michael Jace
677    Shigeru Chiba
678    Nick Moran
679    Maria Bello
680    Anna Torv
681    Ray Milland
682    Ali Atay
683    Serkan Keskin
684    Hadley Delany
685    Henry Bergman
686    LeVar Burton
687    Erland Josephson
688    Sterling Hayden
689    Daisuke Namikawa
690    Bonnie Bedelia
691    Tyler Perry
692    Louis Calhern
693    Julie Kavner
694    Jamie Farr
695    Sebastian Koch
696    Ji-tae Yu
697    Pauline Moran
698    Leo Gullotta
699    Mads Mikkelsen
700    E.G. Marshall
701    Keenan Wynn
702    Jeremy Clarkson
703    Famke Janssen
704    Rob Reiner
705    Octavia Spencer
706    Scott Grimes
707    Maribel Verdú
708    Antony Starr
709    Tim Robbins
710    Will Poulter
711    Emilio Echevarría
712    Chris Parnell
713    Richard Ayoade
714    Alison Doody
715    Angela Lansbury
716    Peggy O'Neal
717    Shahab Hosseini
718    James Garner
719    Rupert Graves
720    Victor Atelevich
721    Gunnel Lindblom
722    Ardal O'Hanlon
723    Kareena Kapoor
724    Ahmet Kural
725    Matthew Goode
726    Rose Marie
727    Olivia Williams
728    Masaya Onosaka
729    Maria Doyle Kennedy
730    Lawrence T. Wrentz
731    Bonnie Hunt
732    Hakeem Kae-Kazim
733    Teresa Wright
734    Nancy Cartwright
735    Edward Fox
736    Arnold Schwarzenegger
737    George Baker
738    Richard Cansino
739    Michael Bates
740    Rudy Rush
741    Donnie Yen
742    Aubrey Plaza
743    James Ransone
744    Robert De Niro
745    Henry Fonda
746    Shane Taylor
747    David Mitchell
748    Ray Liotta
749    Penelope Allen
750    Harry Myers
751    John Lithgow
752    Jack Oakie
753    Annette Bening
754    Jessie Royce Landis
755    Gary Lockwood
756    Ka Tung Lam
757    Hisako Kyôda
758    Gino Ardito
759    Jean Reno
760    Edward Asner
761    Christopher Carley
762    Ray Bolger
763    Trina Nishimura
764    Volker Bruch
765    Margot Robbie
766    Mathew Valencia
767    Karan Soni
768    Laurence Olivier
769    Holmes Osborne
770    Emma Stone
771    Patrick Stewart
772    Eddie Albert
773    Diane Lane
774    Emmy Rossum
775    Steven Avery
776    Philip King
777    Vivien Leigh
778    Xolani Mali
779    Arunabh Kumar
780    Yoshiko Shinohara
781    Mitch Pileggi
782    Tesshô Genda
783    Bob Hastings
784    Dave Chappelle
785    David Duchovny
786    James Cromwell
787    Michael Ontkean
788    Miles Teller
789    Frank Oz
790    Anthony Quinn
791    Beulah Garrick
792    Justin Doescher
793    Cary Grant
794    Lou Antonio
795    Clive Owen
796    Shaun Evans
797    Andrea Eckert
798    Nathan Fielder
799    Neal Brennan
800    Kenneth Choi
801    Robert Portal
802    Paul Meurisse
803    David Strathairn
804    Adrienne Barbeau
805    Frederic Forrest
806    Pablo Rago
807    Orson Welles
808    Ahney Her
809    William Frawley
810    Rex Everhart
811    Elijah Wood
812    Aamir Khan
813    Kate Isitt
814    Christopher Judge
815    Diane Keaton
816    Yacef Saadi
817    Dean Norris
818    Alison Pill
819    Andrew Shim
820    Tatiana Maslany
821    Mark Wahlberg
822    John Huston
823    Myrna Loy
824    Roy Scheider
825    Danielle Cormack
826    Shirley MacLaine
827    Folco Lulli
828    Jason Saldaña
829    Colin Mochrie
830    Rainn Wilson
831    Blake Harrison
832    Jack Lemmon
833    John Carradine
834    Pernilla Allwin
835    Olgierd Lukaszewicz
836    Michael Chiklis
837    George Raft
838    Jim Caviezel
839    June Foray
840    Dag Malmberg
841    Sareh Bayat
842    Judy Greer
843    Jennifer Carpenter
844    Jon Huertas
845    Harvey Keitel
846    Ping Lam Siu
847    Olivia Colman
848    Grace Kelly
849    Cengiz Bozkurt
850    Alan Tudyk
851    Vincent Kartheiser
852    Tom Murray
853    Piotr Machalica
854    Celeste Holm
855    Mahito Tsujimura
856    Matt King
857    Regina King
858    Eric Loomis
859    Michael Caine
860    Christian Bale
861    Alice Lowe
862    Michal Zebrowski
863    Devon Gummersall
864    Robert Cummings
865    Michael Richards
866    Kristen Schaal
867    Peter Capaldi
868    Jennifer Connelly
869    Alexandre Rodrigues
870    Joseph Melito
871    Malin Akerman
872    Walton Goggins
873    Spike Spencer
874    Ali Akdal
875    Vera Miles
876    Judy Garland
877    Paul Henreid
878    Jensen Ackles
879    Marc Shaiman
880    Brice Armstrong
881    Trey Parker
882    Bob Odenkirk
883    Robert Shaw
884    Matthew Modine
885    Christopher Morris
886    Mark Gatiss
887    Liam Neeson
888    James Mason
889    Paul Newman
890    Manu Bennett
891    Dominic Purcell
892    Kasi Lemmons
893    Tony Beck
894    Ciara Baxendale
895    Victoria Harwood
896    Charley Boorman
897    Stephen Graham
898    Minoru Chiaki
899    Haruo Tanaka
900    Frank Overton
901    Marlon Brando
902    Lea Thompson
903    Gunnar Björnstrand
904    Gillian Jacobs
905    Takashi Naitô
906    Hugh Jackman
907    Nolan North
908    Lawrence A. Bonney
909    Powers Boothe
910    Sessue Hayakawa
911    Derek Fowlds
912    Véra Clouzot
913    Dick Van Dyke
914    Phil Cornwell
915    Kyle Hebert
916    Harrison Ford
917    Rosemary Murphy
918    Dennis Farina
919    Sharon Stone
920    Mariya Ise
921    Kim Novak
922    Glen Cavender
923    Cary-Hiroyuki Tagawa
924    Hitoshi Takagi
925    Donald O'Connor
926    Machiko Kyô
927    Janet Leigh
928    Jonah Hill
929    Anatoliy Solonitsyn
930    Hubertus Bengsch
931    Ed Williams
932    Wendy Crewson
933    Aisha Tyler
934    David Kaye
935    Joelle Carter
936    Simon Bird
937    Susie Essman
938    Billy Dee Williams
939    James Farentino
940    Yuri Lowenthal
941    Carl Weathers
942    Damian Lewis
943    Chris O'Dowd
944    Allison Janney
945    Gene Kelly
946    Matt Stone
947    Simon Pegg
948    Judith Anderson
949    Anna Gunn
950    Deepak Kumar Mishra
951    Yeardley Smith
952    Alison Brie
953    Mark Letheren
954    John Doman
955    Jennifer Aniston
956    Johnny Sekka
957    Albert Rémy
958    James Murray
959    Lucas Black
960    Steve Buscemi
961    Hugo Weaving
962    Sarah Roemer
963    John Dossett
964    Robert Llewellyn
965    Matthew Fox
966    Jason Robards
967    Jennifer Lien
968    Bill Hader
969    America Ferrera
970    Aaron Eckhart
971    Debbie Reynolds
972    Dana Ashbrook
973    Tony Chiu Wai Leung
974    Elisabeth Moss
975    Jerry Seinfeld
976    Edward Furlong
977    Dita Parlo
978    Robb Wells
979    Peter Brocco
980    Alan Alda
981    Akemi Yamaguchi
982    Julia Stiles
983    Madge Sinclair
984    Ronald Lacey
985    Denis Lawson
986    John Paul Tremblay
987    Paul Eddington
988    Keiko Tsushima
989    Eric Tsang
990    Helen Mirren
991    Gloria Swanson
992    Daryl Hannah
993    Aleksandr Kaydanovskiy
994    Alison Crosbie
995    Brendan Coyle
996    Bruce McCulloch
997    Enzo Staiola
998    Bibi Andersson
999    Yôji Ueda
1000    Mike Smith
1001    Tiny Sandford
1002    Sharman Joshi
1003    Dermot Morgan
1004    Herbert Grönemeyer
1005    Josh Grelle
1006    Katharina Schüttler
1007    Rami Malek
1008    Felicia Day
1009    Jack Nicholson
1010    Portia de Rossi
1011    Hannibal Buress
1012    Yukiko Shimazaki
1013    Jon Hamm
1014    Ben Kingsley
1015    Peter Dinklage
1016    Jason Alexander
1017    John C. McGinley
1018    Vincent Tong
1019    Anouk Aimée
1020    Samia Kerbash
1021    Jitendra Kumar
1022    Bryce Papenbrook
1023    Barbara Stanwyck
1024    Paulette Goddard
1025    Eva Marie Saint
1026    Sophia Myles
1027    Gabriel Macht
1028    Kristin Rudrüd
1029    Andie MacDowell
1030    Omar Sy
1031    Jeremy Bobb
1032    Robert Reed
1033    Lee J. Cobb
1034    Samm Levine
1035    Dean Winters
1036    Toshirô Mifune
1037    Christopher Lloyd
1038    Vivian Vance
1039    Peter Mensah
1040    Shawn Hatosy
1041    Ivana Milicevic
1042    Laurence Fishburne
1043    Mamoru Miyano
1044    David Andrews
1045    George MacKay
1046    Daniel Richter
1047    Patrick McGoohan
1048    Edward Burns
1049    Cloris Leachman
1050    Desmond Dube
1051    Clive Standen
1052    Bruce Bennett
1053    Vernon Dobtcheff
1054    Andrew Lincoln
1055    Keanu Reeves
1056    Jessica Alba
1057    Justin Cook
1058    Amy Acker
1059    Charles Laughton
1060    Iemasa Kayumi
1061    Drew Carey
1062    Al Pacino
1063    Abhay Mahajan
1064    Rowan Atkinson
1065    Gus Sorola
1066    Michael Kelly
1067    Bee Vang
1068    Sal Vulcano
1069    Emile Hirsch
1070    T.K. Carter
1071    Ryan O'Neal
1072    Steve Coogan
1073    Linda Hamilton
1074    Jessica Chastain
1075    Gian Maria Volontè
1076    Akihiro Miwa
1077    Joaquin Phoenix
1078    Daniel Brühl
1079    Simon Yam
1080    Joel McHale
1081    James Van Der Beek
1082    Laura Allen
1083    Hardy Krüger
1084    Roscoe Karns
1085    Paul Anderson
1086    Zach Fa'atoe
1087    Emil Poulsen
1088    Thomas Mitchell
1089    John DiMaggio
1090    Terry Klassen
1091    Elizabeth McGovern
1092    Goya Toledo
1093    Sarah Gadon
1094    Tate Donovan
1095    Barry Pepper
1096    Robert Duvall
1097    Rutger Hauer
1098    Mónica Villa
1099    Glenn Howerton
1100    Sadi Celil Cengiz
1101    Kerry Washington
1102    Cuba Gooding Jr.
1103    Obba Babatundé
1104    Joan Fontaine
1105    Gary Oldman
1106    Ken Cheeseman
1107    Freja Riemann
1108    Kevin McDonald
1109    Tom Hiddleston
1110    Dae-han Ji
1111    Lena Headey
1112    James Buckley
1113    James Rolfe
1114    Christina Ricci
1115    Abdel Ahmed Ghili
1116    Claudia Cardinale
1117    F. Murray Abraham
1118    Daniel Radcliffe
1119    James Earl Jones
1120    Laura Lovelace
1121    Ewen Bremner
1122    Dwight Henry
1123    Deirdre Lovejoy
1124    Warren Brown
1125    Reginald Gardiner
1126    Ayano Shiraishi
1127    David Clennon
1128    Gillian Anderson
1129    Sumeet Vyas
1130    John Williams
1131    Kaito Ishikawa
1132    Dermot Crowley
1133    Marcia Gay Harden
1134    Uma Thurman
1135    Margaretha Krook
1136    Michael Imperioli
1137    Tatsuya Gashûin
1138    Stephen Fry
1139    Dennis Haysbert
1140    Sandy Dennis
1141    Richard Widmark
1142    Jena Malone
1143    Darío Grandinetti
1144    Tom Hardy
1145    Jürgen Prochnow
1146    Sumi Shimamoto
1147    Hartley Power
1148    Hugh Bonneville
1149    George Newbern
1150    Woody Allen
1151    Tony Roberts
1152    Ray Santiago
1153    John Gallagher Jr.
1154    Kôichi Yamadera
1155    Alan Davies
1156    Bruce Willis
1157    Ahmet Arslan
1158    Eric Idle
1159    Ed Harris
1160    Jorge Garcia
1161    Leonardo DiCaprio
1162    Malcolm McDowell
1163    Robert Webb
1164    Lorraine Bracco
1165    Tim McInnerny
1166    Kristen Wiig
1167    Matthew Holness
1168    Rumi Hiiragi
1169    David Attenborough
1170    Nozomu Sasaki
1171    Peyman Moaadi
1172    George Kennedy
1173    Domhnall Gleeson
1174    George C. Scott
1175    Billy Crudup
1176    Rex Hamilton
1177    Jonathan Frakes
1178    Martin Balsam
1179    Josh Holloway
1180    Holliday Grainger
1181    Phellipe Haagensen
1182    Sam Waterston
1183    Charlie Day
1184    Shinya Hamazoe
1185    Rie Kugimiya
1186    John Krasinski
1187    Ray Walston
1188    Julia Deakin
1189    Ralph Lister
1190    Joshua Jackson
1191    Timothy Olyphant
1192    Julie Bowen
1193    Anthony Perkins
1194    Rachel McAdams
1195    Meghan Markle
1196    Garrett Hedlund
1197    Katheryn Winnick
1198    Billy Crystal
1199    Paul Reiser
1200    Vladimir Vdovichenkov
1201    Richard Attenborough
1202    Marcello Mastroianni
1203    Chris Evans
1204    Dean R. Brooks
1205    Jeff Bennett
1206    Tamsin Greig
1207    Spencer Grammer
1208    Michelle Pfeiffer
1209    Clark Gable
1210    Kevin Murphy
1211    Mako
1212    Hayley Atwell
1213    Leonard Nimoy
1214    Alec Guinness
1215    Clint Eastwood
1216    Rebecca Williams
1217    Julia McKenzie
1218    Jeff Bridges
1219    Robert Knepper
1220    John Spencer
1221    James Cosmo
1222    Kazuhiko Inoue
1223    Simon Helberg
1224    Lisa Kudrow
1225    Lasse Fogelstrøm
1226    Craig Ferguson
1227    Ratna Pathak
1228    Kyle Secor
1229    Bill Murray
1230    Zach Braff
1231    Saïd Taghmaoui
1232    Matthew McConaughey
1233    Elissa Knight
1234    Simone Signoret
1235    Paul Giamatti
1236    Laura Carmichael
1237    Chika Sakamoto
1238    Jenna Fischer
1239    Morgan Freeman
1240    Tara Strong
1241    John Noble
1242    Harry Dean Stanton
1243    Sean Lawlor
1244    Lane Smith
1245    Wayne Brady
1246    Julia Louis-Dreyfus
1247    Mari Natsuki
1248    Amanda Plummer
1249    Clancy Brown
1250    Edward Arnold
1251    Stephen Tobolowsky
1252    Katey Sagal
1253    P.J. Byrne
1254    Martina Gedeck
1255    Nidhi Singh
1256    Louis C.K.
1257    Wilford Brimley
1258    Burt Young
1259    Pauline McLynn
1260    Chris Pine
1261    Michael J. Nelson
1262    Mandy Patinkin
1263    Takaya Aoyagi
1264    Natalie Portman
1265    Doc Hammer
1266    Bob Peterson
1267    Nikolay Grinko
1268    Will Arnett
1269    Robin Wright
1270    Geoff Ramsey
1271    Dean Andrews
1272    Jim Carrey
1273    Leo G. Carroll
1274    Kevin T. Collins
1275    Patrick J. Adams
1276    Jenna Coleman
1277    Isuzu Yamada
1278    James Urbaniak
1279    William H. Macy
1280    Anne Bancroft
1281    Corinna Harfouch
1282    Bradley Whitford
1283    Carrie Fisher
1284    Kiefer Sutherland
1285    Dan Castellaneta
1286    Hynden Walch
1287    Linda Cardellini
1288    Zachary Quinto
1289    Anton Lesser
1290    Jean Gabin
1291    Anita Ekberg
1292    Peter Swanwick
1293    James Bradshaw
1294    Edward James Olmos
1295    Alfred Hitchcock
1296    Andrew Buchan
1297    Paul W. Downs
1298    Thora Birch
1299    Kristina Adolphson
1300    Joe Gatto
1301    John Gielgud
1302    Andrew Kevin Walker
1303    Frank Morgan
1304    David Morse
1305    Simone Sacchettino
1306    Anne Baxter
1307    Brian Quinn
1308    Beverly D'Angelo
1309    Jacob Stringer
1310    Ginpei Sato
1311    Cheryl Hines
1312    Asami Imai
1313    Margaret Tyzack
1314    Benedict Cumberbatch
1315    Vincent Piazza
1316    Masayuki Mori
1317    Jôji Yanami
1318    Inanç Konukçu
1319    Shin'ichi Himori
1320    Emilia Clarke
1321    Gladys George
1322    Geoffrey Rush
1323    Wendell Corey
1324    Janet Gaynor
1325    Ellen Burstyn
1326    Vinnie Jones
1327    Yukana Nogami
1328    Derek Jacobi
1329    Sue Ulu
1330    Fiona O'Shaughnessy
1331    J.K. Simmons
1332    Ki-duk Kim
1333    Pavel Maykov
1334    Kerry Condon
1335    Catherine Dent
1336    Debra Christofferson
1337    Carly Chaikin
1338    Charlie Hunnam
1339    Sidse Babett Knudsen
1340    David Alexanian
1341    Sofia Helin
1342    James Smith
1343    Joel Edgerton
1344    Willem Dafoe
1345    Steve Pemberton
1346    Honeysuckle Weeks
1347    Roy Dotrice
1348    Gino Saltamerenda
1349    David Jason
1350    Dave Bautista
1351    Connie Booth
1352    Russ Malkin
1353    Minnie Driver
1354    Mark Boone Junior
1355    Forest Whitaker
1356    Hilary Swank
1357    Danny John-Jules
1358    Porter Hall
1359    Matt LeBlanc
1360    Kevin Pollak
1361    Helen Atkinson Wood
1362    Chris Hemsworth
1363    Dave Goelz
1364    Josh Brener
1365    James Stewart
1366    Carl Sagan
1367    Martin Lawrence
1368    John Francis Daley
1369    James Robinson
1370    Albert Brooks
1371    Jesse Corti
1372    Hugh Fraser
1373    Tim Roth
1374    Chris Elliott
1375    Peter Cushing
1376    Juliet Rylance
1377    Sarah Alexander
1378    John Amos
1379    Omar Epps
1380    James Woods
1381    Jim Henson
1382    Emma Thompson
1383    Alexandra Maria Lara
1384    Michael Shanks
1385    Gina Torres
1386    Mädchen Amick
1387    Al Ernest Garcia
1388    Katy Jurado
1389    Lucille Ball
1390    Antonella Attili
1391    Michael Sinterniklaas
1392    William Christopher
1393    Toni Collette
1394    Boyd Holbrook
1395    Marina Inoue
1396    Joan Cusack
1397    Carl Miller
1398    Alexandra Roach
1399    Nobutoshi Canna
1400    Greg Ayres
1401    Tom Helmore
1402    Joanna Scanlan
1403    Anna Friel
1404    Michael Benyaer
1405    Bryan Batt
1406    Tatsuya Nakadai
1407    Sean Schemmel
1408    Steven Yeun
1409    Keir Dullea
1410    Peter Finch
1411    Charles Durning
1412    Joe Pantoliano
1413    Ruth Warrick
1414    Pierce Brosnan
1415    Craig Charles
1416    Jake Gyllenhaal
1417    Madhavan
1418    Takashi Shimura
1419    Michael J. Anderson
1420    Jamie Hyneman
1421    Crispin Glover
1422    Jim Dale
1423    David Aston
1424    Katharine Ross
1425    Lee Van Cleef
1426    Desi Arnaz
1427    Richard Steven Horvitz
1428    Michael Conner Humphreys
1429    William Shatner
1430    Natascha McElhone
1431    Michael Dorn
1432    Mona Marshall
1433    Emilia Fox
1434    Jackie Coogan
1435    Michael Emerson
1436    Florence Lee
1437    Ingrid Bergman
1438    Carlos Bernard
1439    Stephen Baldwin
1440    Junko Takeuchi
1441    Farley Granger
1442    Ben Affleck
1443    John Cazale
1444    Jason Bateman
1445    Shigesato Itoi
1446    Sofía Vergara
1447    Darin Brooks
1448    Dana Andrews
1449    Yuki Kaji
1450    Tommy Lee Jones
1451    Rafael Pettersson
1452    Robert Sean Leonard
1453    Mary Lynn Rajskub
1454    Stephen Dillane
1455    Gustav Fröhlich
1456    Kevin Connolly
1457    Karl Malden
1458    Matt Berry
1459    Mackenzie Foy
1460    Joanna Christie
1461    Jeremy Dyson
1462    Naveen Kasturia
1463    Spencer Tracy
1464    Brahim Hadjadj
1465    Artur Barcis
1466    Fatih Artman
1467    Douglas Silva
1468    Hye-jeong Kang
1469    Keith David
1470    Rémy Girard
1471    Wil Wheaton
1472    Young-min Kim
1473    Nick Searcy
1474    Haya Harareet
1475    Lloyd Bridges
1476    Peter Sellers
1477    Lucy Lawless
1478    Adam Baldwin
1479    Ellen DeGeneres
1480    Humphrey Bogart
1481    Adeel Akhtar
1482    Michael Chance
1483    Doon Mackichan
1484    Anthony Chau-Sang Wong
1485    Jean Arthur
1486    Romi Pak
1487    Ryan Stiles
1488    Joseph Cotten
1489    Scatman Crothers
1490    Trace Beaulieu
1491    April Stewart
1492    Gael García Bernal
1493    John Bach
1494    Jessica Hynes
1495    John Simm
1496    Michael Keaton
1497    Anthony Hopkins
1498    Adrien Brody
1499    Audrey Hepburn
1500    Jason Flemyng
1501    Adam Bobrow
1502    Mélissa Désormeaux-Poulin
1503    J.D. Cannon
1504    Julia Sawalha
1505    R. Lee Ermey
1506    Jonathan Taylor Thomas
1507    Vincent Cassel
1508    Martin Freeman
1509    Andrew Sachs
1510    Martin Starr
1511    Stellan Skarsgård
1512    Collin Dean
1513    Roger Lloyd Pack
1514    Bill Bailey
1515    Daniel Feuerriegel
1516    Jerry O'Connell
1517    Jonny Lee Miller
1518    Kate Winslet
1519    Robert Redford
1520    Sergi López
1521    Veronica Cartwright
1522    Kari Byron
1523    Annika Wedderkopp
1524    Jeremy Shada
1525    Rita Cortese
1526    Thelma Ritter
1527    Angelo Muscat
1528    Katie Gray
1529    Phyllis Smith
1530    Caitlin Glass
1531    Ali Astin
1532    Tyrone Power
1533    Meat Loaf
1534    Ed Stoppard
1535    Lamberto Maggiorani
1536    Alexander Gould
1537    Virginia Cherrill
1538    Guy Pearce
1539    Akira Terao
1540    Benicio Del Toro
1541    John Gavin
1542    Warren Clarke
1543    Alex Hirsch
1544    Adam Savage
1545    Masako Nozawa
1546    Tress MacNeille
1547    Jinpachi Nezu
1548    Tim Holt
1549    María Marull
1550    Elizabeth Taylor
1551    Peter Krause
1552    Carey Mulligan
\.


--
-- Data for Name: actors_movies; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.actors_movies (movie_id, actor_id) FROM stdin;
463    709
463    1239
463    406
463    316
464    901
464    1062
464    260
464    263
465    1062
465    1096
465    815
465    744
466    860
466    220
466    970
466    859
467    887
467    1014
467    178
467    462
468    1178
468    279
468    1033
468    700
469    1373
469    1248
469    1120
469    50
470    320
470    1531
470    543
470    1423
471    262
471    1215
471    1425
471    617
472    529
472    550
472    1533
472    432
473    10
473    320
473    543
473    187
474    292
474    916
474    1283
474    938
475    519
475    1216
475    343
475    1428
476    1161
476    345
476    459
476    1144
477    402
477    543
477    1493
477    187
478    142
478    979
478    1204
478    452
479    744
479    748
479    31
479    1164
480    1055
480    1042
480    591
480    961
481    1036
481    1418
481    988
481    1012
482    292
482    916
482    1283
482    1375
483    869
483    253
483    1181
483    1467
484    1239
484    1302
484    484
484    550
485    84
485    908
485    892
485    730
486    1365
486    433
486    71
486    1088
487    1439
487    506
487    1540
487    1360
488    437
488    106
488    16
488    648
489    759
489    1105
489    1264
489    146
490    1116
490    745
490    966
490    334
491    1168
491    559
491    1247
491    905
492    519
492    503
492    1048
492    1095
493    1325
493    1232
493    1459
493    751
494    529
494    976
494    1308
494    967
495    1480
495    1437
495    877
495    416
496    1537
496    1436
496    750
496    1387
497    1193
497    875
497    1541
497    927
498    916
498    520
498    525
498    984
499    1365
499    848
499    1323
499    1526
500    188
500    1030
500    325
500    297
501    148
501    1024
501    685
501    1001
502    519
502    1304
502    367
502    731
503    736
503    1073
503    976
503    37
504    1498
504    1433
504    862
504    1534
505    1161
505    92
505    1009
505    821
506    85
506    1037
506    902
506    1421
507    788
507    1331
507    1199
507    167
508    47
508    1077
508    145
508    341
509    1538
509    591
509    1412
509    1354
510    901
510    298
510    1096
510    805
511    906
511    860
511    859
511    362
512    1476
512    1174
512    688
512    701
513    380
513    1506
513    1119
513    100
514    499
514    991
514    8
514    18
515    321
515    189
515    1521
515    1242
516    148
516    752
516    1125
516    595
517    1254
517    79
517    695
517    19
518    1390
518    478
518    198
518    698
519    485
519    330
519    1161
519    1101
520    1009
520    674
520    304
520    1489
521    573
521    411
521    170
521    602
522    293
522    1126
522    780
522    981
523    265
523    1233
523    217
523    328
524    860
524    1105
524    1144
524    345
525    419
525    753
525    1298
525    646
526    189
526    87
526    448
526    1199
527    1175
527    544
527    1353
527    1089
528    264
528    696
528    1468
528    1110
529    1488
529    637
529    327
529    1413
530    793
530    1025
530    888
530    754
531    744
531    1380
531    1091
531    31
532    1145
532    1004
532    463
532    930
533    1365
533    921
533    491
533    1401
534    292
534    916
534    1283
534    938
535    1532
535    512
535    1059
535    507
536    845
536    1373
536    128
536    518
537    508
537    9
537    152
537    231
538    1369
538    1243
538    533
538    1221
539    1325
539    59
539    868
539    66
540    1162
540    546
540    739
540    1542
541    471
541    630
541    596
541    758
542    519
542    434
542    1396
542    97
543    286
543    1023
543    229
543    1358
544    387
544    513
544    900
544    917
545    348
545    1214
545    790
545    629
546    1272
546    1518
546    494
546    811
547    884
547    1478
547    221
547    1505
548    1117
548    613
548    537
548    1347
549    889
549    1519
549    883
549    1411
550    1409
550    755
550    442
550    1046
551    1535
551    997
551    270
551    1348
552    945
552    925
552    971
552    576
553    1540
553    918
553    1326
553    550
554    519
554    434
554    40
554    130
555    120
555    385
555    1158
555    349
556    550
556    336
556    330
556    500
557    1397
557    354
557    1434
557    148
558    419
558    47
558    1538
558    786
559    1215
559    1425
559    1075
559    35
560    1036
560    926
560    1316
560    1418
561    832
561    826
561    286
561    1187
562    916
562    474
562    244
562    714
563    1062
563    378
563    1208
563    541
564    1171
564    530
564    841
564    717
565    376
565    1306
565    649
565    854
566    335
566    1455
566    643
566    75
567    1036
567    1406
567    564
567    1277
568    1480
568    278
568    1548
568    1052
569    860
569    859
569    887
569    295
570    251
570    109
570    832
570    837
571    699
571    528
571    1523
571    1225
572    812
572    1417
572    1002
572    723
573    1215
573    12
573    1239
573    299
574    1488
574    412
574    807
574    174
575    760
575    346
575    181
575    1266
576    92
576    372
576    1442
576    1511
577    522
577    1529
577    968
578    744
578    342
578    31
578    611
579    314
579    1383
579    1281
579    107
580    1156
580    690
580    215
580    365
581    1009
581    161
581    822
581    352
582    916
582    292
582    1283
582    495
583    209
583    318
583    409
583    932
584    197
584    718
584    1201
584    388
585    1062
585    744
585    647
585    480
586    901
586    1457
586    1033
586    453
587    395
587    1520
587    707
587    401
588    252
588    767
588    565
588    1404
589    1237
589    924
589    103
589    1445
590    790
590    184
590    347
590    956
591    551
591    1444
591    443
591    137
592    1485
592    1365
592    416
592    1250
593    1418
593    1319
593    899
593    898
594    1406
594    1539
594    1547
594    67
595    499
595    1214
595    629
595    910
596    148
596    670
596    852
596    685
597    603
597    1324
597    307
597    487
598    903
598    172
598    15
598    110
599    274
599    614
599    153
599    806
600    916
600    1097
600    287
600    1294
601    1500
601    301
601    678
601    615
602    634
602    998
602    632
602    903
603    514
603    592
603    922
603    430
604    396
604    407
604    1076
604    1137
605    744
605    919
605    31
605    1380
606    1497
606    139
606    1280
606    1301
607    1343
607    1144
607    248
607    44
608    1161
608    928
608    765
608    1232
609    1264
609    961
609    232
609    1138
610    1463
610    113
610    1141
610    512
611    47
611    1159
611    868
611    346
612    1215
612    761
612    1067
612    808
613    1218
613    429
613    160
613    960
614    269
614    205
614    1470
614    1502
615    744
615    1443
615    63
615    606
616    768
616    1104
616    649
616    948
617    1088
617    158
617    777
617    296
618    1279
618    960
618    206
618    1028
619    521
619    1121
619    1517
619    115
620    889
620    1172
620    1503
620    794
621    369
621    456
621    1226
621    969
622    681
622    848
622    864
622    1130
623    1156
623    553
623    1393
623    727
624    1370
624    1479
624    1536
624    1344
625    1069
625    1133
625    431
625    1142
626    356
626    1257
626    1070
626    1127
627    1450
627    662
627    64
627    199
628    1393
628    28
628    587
628    179
629    1209
629    86
629    659
629    1084
630    1442
630    568
630    439
630    691
631    1134
631    464
631    140
631    992
632    1362
632    1078
632    194
632    1383
633    120
633    385
633    349
633    1158
634    778
634    413
634    1050
634    732
635    3
635    496
635    357
635    1309
636    1480
636    243
636    1321
636    150
637    122
637    1469
637    1344
637    1355
638    1144
638    390
638    288
638    101
639    423
639    1496
639    1194
639    644
640    492
640    408
640    827
640    98
641    161
641    499
641    1410
641    1096
642    889
642    1519
642    1424
642    267
643    1161
643    1144
643    1173
643    710
644    114
644    275
644    957
644    350
645    1471
645    668
645    147
645    1516
646    1161
646    423
646    1014
646    110
647    994
647    3
647    776
647    1382
648    998
648    108
648    1135
648    903
649    381
649    1122
649    154
649    1405
650    178
650    1117
650    313
650    1498
651    711
651    1492
651    1092
651    72
652    635
652    1262
652    534
652    60
653    1215
653    1356
653    1239
653    369
654    370
654    927
654    807
654    360
655    370
655    629
655    1474
655    358
656    1143
656    1549
656    1098
656    1525
657    1150
657    815
657    1151
657    351
658    745
658    531
658    833
658    616
659    435
659    382
659    923
659    962
660    1146
660    855
660    757
660    259
661    561
661    993
661    929
661    1267
662    540
662    165
662    123
662    1201
663    1234
663    912
663    802
663    408
664    1014
664    281
664    735
664    1301
665    92
665    982
665    803
665    566
666    1202
666    1116
666    1019
666    654
667    344
667    309
667    797
667    469
668    1416
668    769
668    569
668    163
669    876
669    1303
669    762
669    155
670    405
670    593
670    125
670    470
671    26
671    241
671    1258
671    941
672    1272
672    129
672    481
672    1430
673    823
673    449
673    1448
673    733
674    736
674    448
674    1073
674    20
675    1056
675    68
675    176
675    909
676    870
676    1156
676    574
676    1482
677    429
677    1198
677    246
677    960
678    178
678    89
678    230
678    1118
679    1441
679    191
679    650
679    1273
680    1229
680    1029
680    1374
680    1251
681    62
681    973
681    1484
681    989
682    824
682    883
682    567
682    620
683    1507
683    466
683    1231
683    1115
684    200
684    816
684    1464
684    1020
685    1071
685    666
685    546
685    1083
686    92
686    1074
686    1166
686    46
687    906
687    1416
687    450
687    679
688    749
688    54
688    1443
688    791
689    1299
689    55
689    834
689    173
690    741
690    1079
690    756
690    21
691    1314
691    660
691    725
691    555
692    111
692    1203
692    423
692    1362
693    440
693    1322
693    575
693    660
694    436
694    415
694    1328
694    801
695    770
695    450
695    22
695    705
696    1215
696    428
696    1075
696    477
697    652
697    41
697    1350
697    612
698    1161
698    519
698    606
698    298
699    1036
699    1277
699    1418
699    422
700    95
700    1081
700    1049
700    292
701    387
701    1499
701    772
701    1147
702    497
702    1088
702    1475
702    1388
703    1290
703    977
703    119
703    8
704    48
704    1371
704    810
704    715
705    337
705    973
705    846
705    577
706    793
706    1437
706    416
706    692
707    1550
707    90
707    426
707    1140
708    344
708    309
708    1053
708    488
709    339
709    1170
709    556
709    782
710    363
710    1332
710    1472
710    208
711    1202
711    1291
711    1019
711    482
712    706
712    942
712    399
712    746
713    1169
713    189
714    454
714    949
714    548
714    817
715    1015
715    1111
715    1320
715    368
716    476
716    954
716    1123
717    665
717    1366
718    1366
719    4
719    712
719    1207
719    675
720    1182
720    410
720    966
720    1239
721    249
721    1164
721    289
721    1136
722    1314
722    1508
722    49
722    719
723    768
723    400
724    33
724    1367
724    1103
724    535
725    319
725    42
725    598
725    621
726    257
726    934
727    1232
727    420
727    199
727    1194
728    210
728    1385
728    850
728    451
729    1465
729    835
729    653
729    853
730    139
731    2
732    1414
732    1169
733    271
733    1060
733    532
733    1486
734    1462
734    779
734    1021
734    1063
735    24
735    1227
735    418
735    627
736    571
736    1131
736    999
736    1184
737    1279
737    960
737    206
737    1028
738    1169
738    131
739    168
739    247
739    783
740    483
740    436
740    607
740    1504
741    1154
741    552
741    438
741    475
742    1043
742    486
742    1018
742    204
743    1444
743    1010
743    1268
743    308
744    419
744    1269
744    1066
744    792
745    120
745    1158
745    99
745    580
746    1145
746    1004
746    463
746    930
747    811
747    1512
747    636
748    324
748    254
749    39
749    787
749    1386
749    972
750    775
751    1328
751    737
751    1313
751    141
752    975
752    865
752    1016
752    1246
753    955
753    14
753    1224
753    1359
754    1287
754    1368
754    371
754    1034
755    1349
755    138
755    1513
756    115
756    80
756    261
756    1334
757    1064
757    467
757    1138
757    32
758    1285
758    693
758    734
758    951
759    385
759    444
759    1509
759    1351
760    1501
761    315
761    290
761    640
761    171
762    542
762    1331
762    628
762    1035
763    661
763    702
763    73
763    311
764    920
764    76
764    689
765    519
765    1473
765    1244
765    1044
766    798
767    509
767    1407
767    373
767    1090
768    521
768    896
768    1340
768    1352
769    881
769    946
769    1432
769    1491
770    1442
770    190
770    420
770    367
771    842
771    712
771    557
771    933
772    811
772    1016
772    1246
772    879
773    196
773    1543
773    866
773    1287
774    36
774    258
774    555
774    1212
775    32
775    1379
775    1452
775    285
776    1395
776    1449
776    1005
776    1022
777    882
777    527
777    237
777    91
778    353
779    509
779    1407
779    373
779    1090
780    1551
780    83
780    250
780    655
781    1183
781    1099
781    177
781    218
782    784
782    332
782    799
782    740
783    1191
783    562
783    169
783    472
784    83
784    843
784    276
784    312
785    1043
785    1312
785    43
785    763
786    201
786    212
786    404
787    830
787    1186
787    1238
787    578
788    1096
788    1450
788    364
788    773
789    1007
789    1337
789    216
789    272
790    944
790    1220
790    1282
790    298
791    1294
791    102
791    505
791    560
792    1128
792    785
792    781
793    392
793    1342
793    867
793    1402
794    1064
794    1165
794    467
794    51
795    93
795    1327
795    1
795    224
796    1138
796    1155
797    88
797    540
797    1085
797    468
798    836
798    1335
798    872
798    676
799    893
799    266
799    104
799    127
800    65
800    159
800    1276
800    383
801    1239
802    227
802    217
802    1311
802    937
803    1064
803    467
803    32
803    1361
804    1494
804    947
804    1188
804    524
805    1210
805    1490
805    618
805    1261
806    273
806    1152
806    166
806    182
807    885
807    584
807    600
807    1483
808    1399
808    552
808    389
808    1274
809    1148
809    1236
809    570
809    995
810    532
810    515
810    1486
810    1185
811    1307
811    958
811    1068
811    1300
812    774
812    563
812    1279
812    94
813    504
813    743
813    628
813    844
814    1294
814    102
814    505
814    560
815    1524
815    1089
815    1286
815    45
816    1256
816    684
816    284
817    771
817    1177
817    686
817    1431
818    419
818    1269
818    1066
818    792
819    987
819    56
819    911
819    228
820    1235
820    129
820    963
820    1454
821    439
821    210
821    1008
821    1223
822    1013
822    974
822    851
822    619
823    127
823    1310
823    671
823    438
824    625
824    601
824    58
824    866
825    1113
826    225
827    1003
827    722
827    554
827    1259
828    880
828    720
828    1545
828    1317
829    880
829    720
829    1545
829    1317
830    522
830    538
830    742
830    652
831    338
831    839
832    544
832    959
832    1196
832    213
833    1191
833    1473
833    935
833    663
834    77
834    890
834    1039
834    597
835    390
835    1114
835    638
835    628
836    1295
837    830
837    1186
837    1238
837    578
838    960
838    897
838    1315
838    156
839    81
839    608
839    907
839    585
840    605
840    589
840    493
840    1228
841    214
841    1149
841    185
841    168
842    1047
842    1527
842    1292
843    1061
843    829
843    1487
843    1245
844    724
844    424
844    268
844    1157
845    873
845    394
845    1329
845    277
846    38
846    202
846    1377
846    813
847    1027
847    1275
847    29
847    1195
848    747
848    1163
848    856
848    847
849    355
849    738
849    460
849    219
851    186
851    1205
851    42
851    1253
852    46
852    239
852    1153
852    818
853    1341
853    1451
853    840
853    280
854    445
854    1278
854    1391
854    1265
855    168
855    1240
855    766
855    247
856    443
856    1124
856    1132
856    7
857    245
857    1372
857    489
857    697
858    547
858    1514
858    1206
859    134
859    1280
859    61
859    939
860    943
860    713
860    53
860    1458
861    457
861    639
861    1051
861    1197
862    1072
862    914
862    78
862    305
863    180
863    1252
863    1089
863    1546
864    1064
865    1497
865    160
865    1105
865    748
866    890
866    1515
866    1039
866    1477
867    379
867    1305
867    427
867    425
868    414
868    716
868    642
868    326
869    1338
869    1252
869    1354
869    526
870    713
870    1458
870    1167
870    861
871    501
871    374
872    82
872    1446
872    1192
872    192
873    795
873    651
873    1031
873    1376
874    1419
874    804
874    1249
874    1336
875    1080
875    904
875    359
875    952
876    47
876    1442
876    1194
876    990
877    403
877    594
877    1176
877    931
878    1255
878    1129
878    950
879    609
879    1263
879    1400
879    317
880    906
880    771
880    226
880    703
881    424
881    724
881    1100
881    874
882    682
882    849
882    683
882    323
883    1456
883    384
883    240
883    572
884    1054
884    658
884    112
884    1408
885    789
885    366
885    1363
885    1381
886    32
886    1138
887    30
887    6
887    1333
887    1200
888    1440
888    283
888    590
888    1222
889    371
889    1093
889    1045
889    211
890    5
890    882
890    461
890    340
891    108
891    687
891    721
892    796
892    175
892    1293
892    1289
893    238
893    1466
893    1318
893    268
894    825
894    622
894    498
894    25
895    1330
895    1398
895    633
895    1481
896    465
896    1032
896    1378
896    983
897    661
897    702
897    73
897    311
898    322
898    446
898    1364
898    1510
899    65
899    159
899    1276
899    383
900    302
900    523
900    331
900    1086
901    764
901    479
901    1006
901    582
902    391
902    985
902    1552
902    641
903    1284
903    516
903    1094
903    1453
904    52
904    894
904    599
904    149
905    1170
905    1057
905    509
905    677
906    986
906    978
906    1000
906    393
907    1415
907    1357
907    256
907    964
908    485
908    211
908    190
908    1444
909    1528
909    132
909    895
909    1189
910    291
910    878
911    447
911    223
911    1082
911    233
912    886
912    1345
912    34
912    1461
913    1339
913    11
913    1087
913    1107
915    1389
915    1426
915    1038
915    809
916    936
916    1112
916    831
916    303
917    23
917    581
917    1011
917    1297
918    282
918    1530
918    183
918    397
919    126
919    510
919    664
919    96
920    234
920    1040
920    857
920    610
921    185
921    1211
922    980
922    222
922    694
922    1392
923    579
923    965
923    1160
923    1179
924    375
924    1429
924    281
924    236
925    680
925    1190
925    306
925    1241
926    891
926    74
926    441
926    1219
927    490
927    121
927    255
927    1180
928    913
928    726
928    502
928    656
929    631
929    1017
929    1230
930    17
930    1262
930    329
930    942
931    1138
931    32
932    1284
932    1453
932    1438
932    1139
933    361
933    1403
933    117
933    1422
934    626
934    828
934    1065
934    1270
935    728
935    1
935    460
935    386
936    207
936    814
936    1384
936    586
937    1260
937    1288
937    1213
937    179
938    623
938    672
938    1106
938    657
939    273
939    377
939    136
939    70
940    604
941    151
941    1217
941    645
941    13
942    27
942    421
942    704
942    624
943    143
943    996
943    1108
943    57
944    65
944    847
944    300
944    1296
945    940
945    438
945    1
945    915
946    1109
946    32
946    847
946    669
947    1545
947    1317
947    104
947    473
948    124
948    1427
948    398
948    294
949    673
949    819
949    549
949    135
950    235
950    1346
950    558
951    69
951    583
951    17
951    863
952    588
953    1447
953    517
953    116
953    455
954    708
954    1041
954    536
954    203
955    1495
955    157
955    164
955    1271
956    458
956    953
956    310
956    133
957    1420
957    1544
957    162
957    1522
958    858
958    118
958    195
958    333
959    838
959    1435
959    545
959    1058
960    820
960    144
960    729
960    511
961    838
961    1026
961    193
961    139
750    1472
952    1444
588    516
879    1037
952    1550
952    1374
952    1532
952    1540
952    1552
952    1551
588    1551
\.


--
-- Data for Name: comments; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.comments (id, comment, customer_id, movie_id, created_at, updated_at, status) FROM stdin;
1343    Quinoa mustache church-key biodiesel asymmetrical etsy literally. Carry hammock twee ramps lumbersexual portland heirloom chia. Chartreuse typewriter organic banh mi semiotics hoodie pour-over. Portland squid umami chambray celiac hoodie. Tilde mixtape pickled chillwave beard.    12533    777    2016-04-20 21:11:42    2017-05-18 09:57:53.879004    1
1052    Wayfarers pinterest vegan thundercats. Vegan viral vinyl 8-bit brunch gluten-free. Sustainable venmo roof +1 hammock craft beer health scenester. Kombucha flexitarian freegan taxidermy sustainable pbr&b selvage chia.    35991    836    2016-04-20 14:29:29    2017-08-31 04:54:56.925359    1
424    Gluten-free mumblecore loko. Fixie forage meditation. +1 intelligentsia flannel banh mi.    19143    952    2016-03-16 23:52:12    2016-03-16 23:52:12    2
1238    Irony kale chips tousled keffiyeh. Hoodie slow-carb tattooed truffaut. Keytar lumbersexual meh mustache.    14855    756    2015-12-07 02:19:44    2015-12-07 02:19:44    1
1580    Yr echo mumblecore. Meggings whatever craft beer. Drinking waistcoat seitan synth gluten-free.    15887    657    2015-08-02 18:20:42    2015-08-02 18:20:42    1
1845    Kombucha quinoa church-key narwhal. Pbr&b meh direct trade. Pork belly ennui master. Health stumptown locavore.    14789    662    2015-05-09 08:14:53    2015-05-09 08:14:53    1
2099    Banjo drinking thundercats wolf. Shoreditch five dollar toast kitsch. Deep v church-key ennui.    19380    950    2015-05-01 22:39:14    2015-05-01 22:39:14    2
4051    Small batch franzen health freegan. Lo-fi kitsch messenger bag. Seitan narwhal butcher.    10950    950    2015-07-07 17:56:09    2015-07-07 17:56:09    1
4192    Hella brooklyn lomo. Vinegar twee viral microdosing lo-fi. Goth celiac franzen locavore.    18898    771    2015-06-14 02:21:09    2015-06-14 02:21:09    1
5296    Pbr&b 90's butcher. Paleo heirloom semiotics. Tacos 90's schlitz.    10008    942    2015-11-18 14:55:52    2015-11-18 14:55:52    1
5641    8-bit helvetica truffaut. Plaid retro kombucha readymade pitchfork 8-bit. Street mustache diy.    17006    739    2015-07-01 23:44:51    2015-07-01 23:44:51    1
6757    Plaid pop-up fashion axe farm-to-table. Roof try-hard tacos. Williamsburg vinyl photo booth.    11009    930    2015-06-10 17:26:37    2015-06-10 17:26:37    1
7303    Banjo narwhal mumblecore. Twee wes anderson swag sustainable. Craft beer pbr&b vinegar.    10180    716    2016-02-06 13:03:59    2016-02-06 13:03:59    1
7320    Fashion axe 8-bit brunch kickstarter. Carry church-key offal squid irony. +1 pabst bespoke drinking ethical.    19850    889    2016-03-26 03:09:07    2016-03-26 03:09:07    2
7558    Ethical narwhal celiac before they sold out. Roof tumblr bitters. Flannel brunch cardigan vinegar.    18758    528    2015-07-31 23:21:29    2015-07-31 23:21:29    1
7713    Umami pinterest etsy readymade. Stumptown disrupt echo iphone. Slow-carb organic chillwave cronut.    14752    756    2016-03-14 01:13:28    2016-03-14 01:13:28    1
7830    Banjo tacos artisan shoreditch wayfarers. Yr leggings offal. Kinfolk bitters vinegar hammock microdosing.    12715    518    2016-01-09 05:56:18    2016-01-09 05:56:18    1
7979    Literally pbr&b 8-bit. Vegan small batch drinking crucifix. Cray 90's meggings pop-up.    18750    571    2015-07-24 03:09:45    2015-07-24 03:09:45    1
8217    Raw denim health asymmetrical. Selvage pbr&b humblebrag. Mustache schlitz hella vhs neutra kombucha.    16862    523    2015-10-17 02:16:32    2015-10-17 02:16:32    1
8597    Ennui disrupt street. Iphone selvage microdosing. Bespoke cleanse wes anderson.    13502    918    2015-04-30 07:09:57    2015-04-30 07:09:57    1
8696    Xoxo cliche cronut. Distillery pop-up xoxo pickled wolf pabst small batch. Farm-to-table chia vinyl vhs.    17991    591    2015-10-25 17:20:59    2015-10-25 17:20:59    1
9014    Chambray single-origin coffee waistcoat street kombucha. Readymade actually pug diy try-hard. Fap ramps selvage trust fund.    19557    659    2016-02-10 21:25:13    2016-02-10 21:25:13    2
9760    Direct trade squid occupy. Literally listicle trust fund. Artisan biodiesel food truck fap.    15780    745    2015-09-18 12:54:40    2015-09-18 12:54:40    1
10781    Banh mi fixie poutine ramps photo booth. Pickled keffiyeh kombucha narwhal tote bag. Locavore celiac migas.    15503    885    2015-06-02 08:46:24    2015-06-02 08:46:24    1
11585    Wes anderson salvia tacos. Actually ethical wolf. Park normcore godard.    16947    657    2015-11-02 10:10:32    2015-11-02 10:10:32    1
9255    Godard cardigan normcore. Literally microdosing fingerstache craft beer helvetica yolo. Austin roof sartorial offal goth.    19854    874    2016-02-11 06:49:21    2016-02-11 06:49:21    2
12168    Viral farm-to-table keffiyeh. Ennui banh mi kogi cray fashion axe squid pop-up church-key. Drinking portland health.    13041    797    2015-07-08 20:27:55    2015-07-08 20:27:55    1
12275    Viral pitchfork swag. Ramps banh mi jean shorts. Keytar kale chips distillery pitchfork farm-to-table.    13836    939    2016-02-22 14:39:10    2016-02-22 14:39:10    1
12898    Crucifix banh mi craft beer pour-over jean shorts loko. Bitters diy humblebrag narwhal. Lumbersexual flannel beard fap.    12323    605    2015-04-29 20:32:19    2015-04-29 20:32:19    1
12964    Meh pitchfork waistcoat. Ennui thundercats offal. Ugh bitters flexitarian banh mi.    18340    820    2016-03-11 07:53:54    2016-03-11 07:53:54    1
12683    Kombucha irony scenester. Lomo marfa biodiesel keffiyeh pickled selfies xoxo godard. Lomo direct trade semiotics hammock.    19662    720    2015-12-24 09:56:35    2015-12-24 09:56:35    2
13364    Bitters next level post-ironic bespoke. Next level wayfarers truffaut. Marfa yuccie cray.    13153    580    2016-03-11 14:39:22    2016-03-11 14:39:22    1
13847    Locavore fanny pack cold-pressed cred ennui. 90's bicycle rights synth pinterest. Microdosing shabby chic letterpress.    19129    524    2015-12-24 17:08:01    2015-12-24 17:08:01    2
14507    Hoodie hella jean shorts. Chicharrones dreamcatcher lo-fi pickled. Pork belly diy messenger bag.    15458    553    2015-05-20 22:59:38    2015-05-20 22:59:38    1
14570    Mustache bespoke 8-bit. Godard try-hard letterpress. Gluten-free cold-pressed mlkshk.    19371    785    2015-07-21 11:47:55    2015-07-21 11:47:55    2
13323    Intelligentsia normcore shoreditch farm-to-table. Swag distillery park pop-up diy. Raw denim ethical portland mumblecore 90's.    19049    637    2016-03-11 10:26:08    2016-03-11 10:26:08    2
14887    Banh mi cornhole pabst swag. Yuccie banjo authentic fanny pack. Kogi keytar ethical irony.    19805    671    2015-09-04 15:22:53    2015-09-04 15:22:53    2
3    Pbr&b chia waistcoat. Irony gentrify photo booth. Stumptown 90's shoreditch helvetica locavore chia. Pop-up cardigan tofu kinfolk swag chartreuse single-origin coffee. Sartorial squid cred flannel cold-pressed chartreuse single-origin coffee.    19845    471    2015-08-13 08:10:16    2015-08-13 08:10:16    2
4    Tilde heirloom five dollar toast. Everyday wes anderson dreamcatcher messenger bag brunch keffiyeh kale chips. Yuccie cred microdosing asymmetrical biodiesel readymade. Mustache swag wolf master.    19861    540    2015-05-18 13:38:38    2015-05-18 13:38:38    2
29    Ugh quinoa kombucha cardigan skateboard you probably haven't heard of them typewriter viral. Intelligentsia before they sold out mixtape iphone pabst bushwick asymmetrical +1. Five dollar toast chartreuse waistcoat.    19090    655    2016-02-11 16:43:16    2016-02-11 16:43:16    2
38    Cliche craft beer health viral diy yr vice. Shabby chic cold-pressed sartorial retro fashion axe mumblecore hammock synth. Everyday fashion axe messenger bag squid. Kombucha shabby chic banh mi. Fashion axe meditation yolo cray.    19748    713    2016-02-16 07:11:25    2016-02-16 07:11:25    2
42    Vinegar kogi meditation irony. Whatever try-hard viral. Hella wayfarers vhs small batch taxidermy meh. Keffiyeh shabby chic blue bottle disrupt.    19686    592    2015-07-15 17:33:42    2015-07-15 17:33:42    2
43    Helvetica hella tattooed cray lo-fi meh. Godard mixtape yolo. Vinegar pickled pug butcher fap vinyl. Mustache mumblecore lo-fi selvage williamsburg. 3 wolf moon xoxo chia.    19020    538    2015-07-17 12:03:27    2015-07-17 12:03:27    2
48    8-bit tote bag vegan. Disrupt truffaut craft beer iphone franzen cray chia irony. Chicharrones whatever swag godard dreamcatcher xoxo. Brunch thundercats taxidermy small batch brooklyn distillery. Etsy dreamcatcher marfa chartreuse pour-over before they sold out.    19963    610    2016-04-07 15:28:17    2016-04-07 15:28:17    2
50    Wolf shoreditch gentrify tote bag actually selvage franzen semiotics. Messenger bag green juice meh. Tattooed vhs tacos bitters chartreuse. Paleo mustache pbr&b hammock. Direct trade health swag fingerstache raw denim pork belly tote bag.    19601    675    2015-11-15 21:52:56    2015-11-15 21:52:56    2
75    Church-key cray irony. Yuccie lo-fi neutra. Tacos fanny pack bitters readymade brooklyn swag slow-carb.    19679    675    2015-10-12 09:21:45    2015-10-12 09:21:45    2
79    Etsy chia chambray post-ironic sustainable keffiyeh you probably haven't heard of them drinking. Squid banjo semiotics post-ironic. Put a bird on it hammock dreamcatcher chartreuse blue bottle cray forage. Vinegar loko occupy.    19967    468    2015-05-29 11:55:21    2015-05-29 11:55:21    2
88    Cray kickstarter tacos mlkshk dreamcatcher microdosing try-hard. Banh mi whatever ennui echo. Readymade plaid meh pug blog ramps.    19625    833    2015-08-17 23:52:20    2015-08-17 23:52:20    2
93    Health scenester cornhole pickled shoreditch brooklyn. Raw denim butcher echo. Pug wes anderson bicycle rights green juice. Asymmetrical cornhole lumbersexual meggings beard sartorial chia xoxo.    19948    594    2016-03-05 03:19:51    2016-03-05 03:19:51    2
100    Kogi cliche 3 wolf moon ennui kinfolk truffaut portland. Meh church-key celiac migas keytar listicle shabby chic. Pour-over kogi disrupt vhs intelligentsia gastropub. Synth venmo actually paleo microdosing. Leggings plaid listicle hoodie.    19874    785    2016-03-07 18:21:01    2016-03-07 18:21:01    2
101    Slow-carb hammock vhs. Pork belly before they sold out neutra readymade aesthetic pour-over bicycle rights. Direct trade hammock whatever cleanse meh. Irony kitsch hashtag kombucha brooklyn.    19494    499    2015-08-20 19:24:36    2015-08-20 19:24:36    2
108    Vinegar distillery mustache kitsch dreamcatcher bushwick bicycle rights plaid. Tacos cleanse microdosing typewriter. Letterpress schlitz artisan locavore.    19591    540    2015-05-26 10:35:05    2015-05-26 10:35:05    2
110    Meditation meggings drinking street vegan fashion axe wayfarers waistcoat. Franzen fashion axe diy pour-over listicle pinterest meh marfa. Ethical 3 wolf moon roof trust fund helvetica disrupt taxidermy. Chicharrones vhs ethical messenger bag waistcoat farm-to-table. Salvia lumbersexual drinking beard.    19397    538    2016-02-04 05:32:28    2016-02-04 05:32:28    2
128    Austin sustainable beard organic. Brooklyn salvia migas. Skateboard synth bushwick kitsch asymmetrical wes anderson small batch.    19728    887    2015-07-22 11:20:21    2015-07-22 11:20:21    2
136    Quinoa selvage pbr&b single-origin coffee beard cardigan. Venmo chicharrones sartorial kombucha vinyl loko plaid. Vinyl echo listicle. Blue bottle twee pickled whatever.    19620    823    2015-06-27 12:19:27    2015-06-27 12:19:27    2
138    +1 taxidermy fashion axe disrupt lo-fi cliche. Gastropub master umami. Tilde goth butcher church-key microdosing hammock.    19752    471    2015-10-29 22:31:24    2015-10-29 22:31:24    2
140    Chillwave marfa health drinking mustache diy pour-over tofu. Deep v bespoke kale chips offal pbr&b goth keffiyeh. Drinking farm-to-table marfa cornhole cliche synth. Sriracha mlkshk ethical iphone hashtag fap carry.    19662    560    2015-09-19 12:05:51    2015-09-19 12:05:51    2
153    Chartreuse post-ironic cronut drinking. Biodiesel bespoke next level selfies +1 scenester cronut. Loko pour-over wes anderson.    19492    811    2016-02-12 12:36:42    2016-02-12 12:36:42    2
155    Vinyl neutra church-key pug semiotics fanny pack. Salvia intelligentsia master artisan squid loko jean shorts tacos. Drinking goth kogi.    19661    498    2016-04-17 11:34:55    2016-04-17 11:34:55    2
163    Kale chips fingerstache keytar. Dreamcatcher austin raw denim artisan plaid chicharrones diy polaroid. Organic twee drinking park food truck. Drinking ennui fanny pack neutra chicharrones mlkshk kogi. Mixtape austin art party chia.    19786    948    2016-01-11 08:20:37    2016-01-11 08:20:37    2
175    Squid aesthetic viral disrupt pickled readymade. Locavore poutine 3 wolf moon xoxo vhs pitchfork tattooed meditation. Vinegar cleanse 90's squid tilde.    19627    515    2016-02-17 08:15:30    2016-02-17 08:15:30    2
176    Williamsburg yr everyday pour-over. Authentic twee pickled hella bushwick wolf tilde. Literally ennui etsy synth. Tumblr tousled sustainable chia kale chips typewriter 3 wolf moon.    19899    790    2015-10-23 06:50:42    2015-10-23 06:50:42    2
178    Farm-to-table park tote bag. Marfa mlkshk tote bag. Green juice selvage irony shabby chic intelligentsia taxidermy offal. Knausgaard small batch occupy seitan gastropub mumblecore microdosing cardigan.    19912    717    2015-05-30 19:54:42    2015-05-30 19:54:42    2
181    Gluten-free lomo freegan put a bird on it fingerstache disrupt. 3 wolf moon pug wes anderson pour-over sartorial literally jean shorts tofu. Small batch diy letterpress semiotics chicharrones waistcoat pug. Vice leggings banjo mixtape quinoa wolf pour-over celiac.    19140    802    2016-04-08 17:17:44    2016-04-08 17:17:44    2
216    Pour-over cornhole polaroid carry. Cornhole polaroid normcore mixtape freegan lumbersexual. Bitters kitsch ramps sartorial vhs art party. You probably haven't heard of them slow-carb tousled gentrify sriracha banh mi normcore. Godard jean shorts bespoke drinking mlkshk wes anderson.    19194    545    2015-12-13 05:32:42    2015-12-13 05:32:42    2
229    Chillwave trust fund ethical. Sartorial chartreuse taxidermy biodiesel helvetica. Pop-up austin next level craft beer. Pickled chambray street migas freegan vice.    19038    603    2015-08-09 20:10:26    2015-08-09 20:10:26    2
233    Viral chia banh mi xoxo green juice. Kogi cray occupy locavore xoxo waistcoat. Before they sold out synth bicycle rights scenester authentic blue bottle fanny pack lumbersexual. Meditation farm-to-table polaroid asymmetrical cardigan offal cold-pressed next level.    19451    788    2015-08-15 13:02:23    2015-08-15 13:02:23    2
240    Franzen offal viral tofu 90's. Iphone intelligentsia tumblr biodiesel viral stumptown sriracha wes anderson. Disrupt you probably haven't heard of them pabst irony. Jean shorts wes anderson hammock street. Offal polaroid tattooed hoodie.    19161    771    2016-01-29 23:46:46    2016-01-29 23:46:46    2
250    Pour-over blue bottle organic lomo +1 hella vice mumblecore. Sartorial tilde vinegar swag 90's distillery waistcoat slow-carb. Salvia church-key cray ugh single-origin coffee pabst brooklyn.    19919    703    2016-04-07 20:23:44    2016-04-07 20:23:44    2
257    Mixtape pour-over 8-bit. Cleanse pug pork belly sartorial microdosing master neutra. Loko brunch iphone franzen tofu five dollar toast ethical. Yr street tofu flexitarian authentic plaid. +1 retro paleo you probably haven't heard of them hoodie sartorial.    19028    510    2016-02-28 03:26:08    2016-02-28 03:26:08    2
258    Slow-carb quinoa chia carry everyday kinfolk kombucha venmo. Plaid cardigan loko intelligentsia yuccie literally cleanse health. Hella biodiesel pbr&b keffiyeh humblebrag knausgaard. Lumbersexual ethical tumblr 8-bit williamsburg hella loko. Microdosing humblebrag 8-bit blog art party etsy flannel pitchfork.    19186    474    2016-02-06 15:54:29    2016-02-06 15:54:29    2
279    Diy heirloom retro butcher. Try-hard wolf roof pinterest tousled. Ennui tofu try-hard meditation listicle cornhole squid. Photo booth carry jean shorts 3 wolf moon lo-fi banjo. Listicle kickstarter hoodie fixie food truck chillwave.    19358    942    2016-02-21 17:47:58    2016-02-21 17:47:58    2
291    Tilde cornhole messenger bag before they sold out lumbersexual. Deep v semiotics kogi. Etsy ugh vinegar sustainable.    19031    692    2016-01-25 14:59:12    2016-01-25 14:59:12    2
294    Banh mi photo booth yolo locavore deep v trust fund messenger bag. Next level chambray literally. Single-origin coffee tacos freegan pabst pork belly yuccie. Migas normcore cronut hammock austin sustainable.    19508    674    2016-04-11 01:01:20    2016-04-11 01:01:20    2
304    Vinyl ennui poutine vhs flannel. Five dollar toast pork belly plaid health meh swag squid letterpress. Xoxo roof kitsch forage everyday humblebrag. Viral tacos bushwick. Knausgaard before they sold out put a bird on it blue bottle chia master.    19114    730    2016-03-20 02:21:12    2016-03-20 02:21:12    2
306    Everyday goth trust fund migas artisan. Xoxo listicle cray banjo ramps venmo photo booth. Authentic health jean shorts lumbersexual portland schlitz iphone quinoa. 8-bit small batch deep v gentrify drinking.    19028    480    2015-06-02 16:26:21    2015-06-02 16:26:21    2
310    Tousled stumptown lumbersexual selfies cronut ennui brunch trust fund. Cornhole tattooed yr paleo. Paleo schlitz franzen church-key.    19821    719    2015-11-02 15:30:34    2015-11-02 15:30:34    2
315    Offal iphone mumblecore bushwick organic cardigan celiac 90's. Pop-up you probably haven't heard of them bicycle rights mlkshk pour-over scenester. Microdosing occupy selvage. Migas normcore meh knausgaard. Williamsburg vhs skateboard.    19718    875    2015-07-17 05:10:55    2015-07-17 05:10:55    2
326    Pug single-origin coffee dreamcatcher tousled kale chips fixie beard echo. Cliche viral readymade sriracha mlkshk before they sold out trust fund. Retro tattooed swag +1 mixtape fanny pack. Mumblecore tofu shoreditch. Chambray seitan pabst yuccie aesthetic.    19888    582    2015-06-20 15:56:48    2015-06-20 15:56:48    2
327    Franzen twee craft beer. Tote bag blue bottle flexitarian neutra. Ugh dreamcatcher hella pork belly craft beer tofu beard next level. Neutra selfies typewriter xoxo gastropub. Try-hard banh mi salvia craft beer asymmetrical before they sold out.    19755    665    2016-01-03 03:07:01    2016-01-03 03:07:01    2
339    Sustainable selvage raw denim. Celiac pinterest vinegar bicycle rights viral poutine. Organic hashtag keytar street. Chia waistcoat cray sriracha swag vinegar.    19317    573    2015-09-12 13:30:14    2015-09-12 13:30:14    2
342    Dreamcatcher whatever yolo stumptown. Letterpress selvage shoreditch goth artisan cardigan celiac bicycle rights. Quinoa roof brooklyn williamsburg thundercats vinyl banh mi. Hammock distillery bitters swag.    19540    564    2016-01-05 18:47:23    2016-01-05 18:47:23    2
348    Freegan taxidermy disrupt mustache carry. Shabby chic narwhal health meditation actually five dollar toast. Fashion axe locavore pop-up flannel disrupt listicle put a bird on it cliche. Cred humblebrag venmo church-key gastropub deep v.    19125    646    2016-02-16 03:02:07    2016-02-16 03:02:07    2
389    Iphone lomo tousled. Occupy direct trade squid dreamcatcher tacos actually tofu. Fingerstache loko ennui.    19520    742    2016-01-05 04:58:00    2016-01-05 04:58:00    2
397    Chia helvetica deep v. Bitters wes anderson selvage. Church-key chartreuse lumbersexual wes anderson. Occupy flannel sartorial chillwave neutra.    19556    726    2015-06-21 21:35:23    2015-06-21 21:35:23    2
398    Leggings ramps lo-fi godard keffiyeh single-origin coffee. Tote bag chillwave schlitz tumblr cold-pressed occupy. Vinyl locavore bespoke selfies venmo park. Franzen blog vhs organic banjo flexitarian pbr&b. Crucifix pug williamsburg vinegar.    19923    737    2015-10-15 23:54:33    2015-10-15 23:54:33    2
425    Banh mi ethical letterpress helvetica gluten-free. 8-bit five dollar toast gluten-free lumbersexual paleo kogi. Flannel chillwave brooklyn fanny pack. Bicycle rights gentrify twee.    19057    682    2015-11-13 14:49:56    2015-11-13 14:49:56    2
431    Bitters lomo vice vegan listicle waistcoat fingerstache ugh. Chillwave fingerstache biodiesel actually master locavore selvage carry. Narwhal paleo wayfarers. Disrupt freegan vice. Cornhole hella small batch goth asymmetrical.    19961    916    2015-06-23 07:04:07    2015-06-23 07:04:07    2
442    Cronut kombucha retro kitsch echo wayfarers. Cardigan offal keytar. Cleanse pitchfork beard wayfarers umami. Fanny pack lomo keytar. Wes anderson hoodie vhs fixie mlkshk vinyl pug.    19354    873    2016-03-10 05:32:50    2016-03-10 05:32:50    2
445    Cred pitchfork tumblr fanny pack. Viral austin you probably haven't heard of them. Pickled bicycle rights everyday yuccie. Cleanse bitters green juice pork belly. Pour-over 8-bit bitters poutine chambray.    19620    715    2016-04-06 11:08:09    2016-04-06 11:08:09    2
452    You probably haven't heard of them yolo scenester cronut cleanse +1 kickstarter. Microdosing irony drinking meditation farm-to-table migas blog. Vice fixie synth lomo small batch readymade cardigan aesthetic. Ugh kombucha authentic.    19348    921    2015-09-29 10:17:21    2015-09-29 10:17:21    2
468    Small batch 8-bit kombucha chambray you probably haven't heard of them. Viral pug twee meditation iphone drinking selfies fashion axe. Umami meditation twee salvia marfa before they sold out seitan.    19527    772    2015-08-10 10:14:15    2015-08-10 10:14:15    2
470    Marfa try-hard tattooed. +1 celiac brunch semiotics organic. Cardigan yuccie biodiesel williamsburg diy lomo.    19593    646    2015-08-31 00:28:17    2015-08-31 00:28:17    2
477    Leggings fingerstache gluten-free. Loko fingerstache craft beer truffaut. Franzen +1 lo-fi blue bottle gentrify cleanse narwhal cornhole.    19468    711    2015-10-11 05:39:40    2015-10-11 05:39:40    2
487    Direct trade bespoke pour-over pork belly dreamcatcher street. Banjo direct trade keytar meggings before they sold out. Vhs cold-pressed skateboard cliche crucifix slow-carb sriracha pug. Wes anderson yolo ethical godard park.    19319    893    2016-01-17 05:39:48    2016-01-17 05:39:48    2
491    Meh bicycle rights echo distillery. Tousled jean shorts 8-bit. Pug art party roof stumptown. Portland ramps brooklyn bicycle rights diy swag. Tacos next level banjo poutine everyday fixie.    19373    545    2015-07-11 06:10:09    2015-07-11 06:10:09    2
509    Waistcoat meh selvage portland quinoa chartreuse. Echo goth tumblr portland wayfarers listicle fixie ennui. Celiac flexitarian disrupt wayfarers.    19821    873    2015-07-20 06:03:23    2015-07-20 06:03:23    2
519    Tacos hammock brooklyn hashtag forage. Mixtape hella farm-to-table tumblr sustainable synth ugh. Fingerstache jean shorts banh mi ramps 90's. Meggings pabst craft beer. Chambray farm-to-table thundercats migas narwhal umami.    19172    622    2015-09-26 18:56:04    2015-09-26 18:56:04    2
529    Readymade yuccie carry food truck. Farm-to-table offal authentic chicharrones messenger bag listicle. Roof aesthetic etsy vegan literally. Plaid 8-bit hella actually. Polaroid offal biodiesel put a bird on it irony.    19083    816    2016-03-11 11:36:40    2016-03-11 11:36:40    2
533    Direct trade tousled organic. Drinking +1 microdosing celiac flannel. Hashtag leggings fixie tote bag swag tofu.    19455    851    2015-08-03 07:08:44    2015-08-03 07:08:44    2
543    Cred street tote bag +1 knausgaard. Pbr&b humblebrag art party seitan narwhal wayfarers meggings. Sustainable meh chambray lomo truffaut microdosing. 3 wolf moon shoreditch yr crucifix single-origin coffee drinking mixtape humblebrag.    19686    704    2015-09-30 22:32:08    2015-09-30 22:32:08    2
545    Sustainable cronut letterpress beard microdosing tattooed food truck. Dreamcatcher aesthetic cornhole poutine kinfolk yolo you probably haven't heard of them literally. Xoxo gluten-free brunch neutra knausgaard sartorial before they sold out cred. Cray schlitz small batch wes anderson letterpress venmo. Street plaid lumbersexual.    19453    789    2015-08-22 19:48:48    2015-08-22 19:48:48    2
548    Artisan post-ironic craft beer raw denim literally. Craft beer fingerstache fixie carry plaid street humblebrag narwhal. Single-origin coffee sartorial seitan humblebrag blog dreamcatcher.    19706    908    2015-05-18 18:48:22    2015-05-18 18:48:22    2
555    Brunch yolo thundercats chillwave venmo mixtape. Artisan blue bottle wolf pitchfork plaid roof pork belly. Direct trade meh kinfolk.    19882    543    2015-09-24 07:15:34    2015-09-24 07:15:34    2
560    Bespoke vinegar fingerstache. Venmo post-ironic slow-carb sriracha narwhal vice. Photo booth bitters whatever disrupt. Bitters cronut church-key cornhole next level. Tattooed tacos sriracha sartorial gastropub pug lumbersexual.    19502    911    2015-12-23 21:09:09    2015-12-23 21:09:09    2
563    Brunch ugh fanny pack fap. Celiac gluten-free master pabst migas. Kitsch wayfarers yolo. Authentic meh fixie street irony taxidermy knausgaard heirloom. Pour-over carry meggings williamsburg kale chips lumbersexual street.    19333    822    2015-09-22 22:15:56    2015-09-22 22:15:56    2
575    +1 polaroid photo booth. Squid scenester deep v hammock. Keytar skateboard taxidermy kale chips sustainable. Hoodie meditation hashtag microdosing artisan you probably haven't heard of them. Brooklyn health freegan cardigan celiac ugh offal keffiyeh.    19815    890    2016-01-02 10:03:07    2016-01-02 10:03:07    2
580    Plaid vinegar church-key authentic intelligentsia lo-fi pop-up. Meggings selfies artisan next level gastropub tacos shabby chic. Whatever fashion axe leggings mixtape lomo organic park keffiyeh. Waistcoat humblebrag viral semiotics pork belly.    19170    590    2015-12-31 06:45:40    2015-12-31 06:45:40    2
585    Bicycle rights raw denim cronut neutra vinyl. Stumptown sustainable shabby chic scenester. Squid fashion axe before they sold out franzen kinfolk gastropub bushwick dreamcatcher.    19550    637    2016-03-30 04:41:23    2016-03-30 04:41:23    2
590    Try-hard shoreditch tumblr chicharrones skateboard chartreuse kinfolk. Bushwick yuccie kombucha kale chips mumblecore. You probably haven't heard of them polaroid art party mlkshk hoodie squid.    19061    947    2016-02-03 23:48:21    2016-02-03 23:48:21    2
595    Umami cornhole shabby chic biodiesel kale chips food truck. Photo booth brunch waistcoat occupy helvetica tilde. Keffiyeh pork belly fashion axe.    19202    518    2015-07-21 04:33:17    2015-07-21 04:33:17    2
602    Goth polaroid 8-bit tumblr bushwick retro mixtape cray. Semiotics freegan banh mi kogi blog distillery. Green juice blue bottle put a bird on it small batch listicle neutra.    19054    735    2015-06-23 04:16:05    2015-06-23 04:16:05    2
617    Lo-fi portland seitan echo pop-up. 90's distillery tumblr raw denim drinking butcher knausgaard godard. Vinegar chartreuse migas schlitz. Tattooed swag blue bottle irony tacos. Gentrify wayfarers slow-carb viral kogi.    19631    598    2015-11-30 11:33:05    2015-11-30 11:33:05    2
618    Typewriter green juice selfies squid aesthetic microdosing next level. Offal venmo meh vinegar readymade. Tilde xoxo messenger bag flannel food truck venmo.    19023    475    2015-10-06 11:36:39    2015-10-06 11:36:39    2
620    Bushwick jean shorts meh bicycle rights semiotics thundercats. Mixtape five dollar toast franzen beard neutra. Banjo butcher fanny pack hashtag. Wolf banjo wayfarers truffaut health. Direct trade franzen authentic art party asymmetrical sustainable.    19007    620    2015-06-01 07:08:38    2015-06-01 07:08:38    2
634    Seitan trust fund fashion axe before they sold out knausgaard pinterest shoreditch cleanse. Church-key messenger bag ramps blue bottle. Trust fund hammock letterpress vinyl paleo marfa meh selvage. Small batch cliche quinoa messenger bag photo booth portland franzen. Fixie 90's microdosing hashtag cornhole meditation blog.    19412    539    2015-11-11 03:07:26    2015-11-11 03:07:26    2
648    Sustainable organic whatever butcher. Venmo mlkshk goth. Chicharrones gluten-free ennui humblebrag health echo stumptown.    19139    759    2015-06-11 11:37:41    2015-06-11 11:37:41    2
678    Thundercats vinyl bespoke portland readymade. Direct trade fashion axe offal mustache. Park shoreditch brooklyn ugh wayfarers viral vhs.    19454    797    2015-05-30 11:14:09    2015-05-30 11:14:09    2
686    Flexitarian try-hard microdosing scenester selvage schlitz. Williamsburg semiotics kale chips. Helvetica letterpress pour-over offal. Stumptown try-hard mlkshk ramps. Kitsch keytar chillwave.    19186    904    2015-07-02 21:19:58    2015-07-02 21:19:58    2
694    Master raw denim vegan chia skateboard organic hella kickstarter. +1 typewriter bicycle rights pickled lo-fi microdosing hammock pour-over. Tofu fanny pack raw denim chambray try-hard next level. Vhs cleanse authentic cardigan.    19181    883    2015-11-10 17:17:52    2015-11-10 17:17:52    2
703    Butcher offal church-key. Five dollar toast knausgaard crucifix whatever yolo sriracha. Marfa cronut stumptown gastropub food truck gluten-free yolo vhs. Marfa keffiyeh street church-key echo meditation vinegar.    19325    659    2015-07-29 17:52:45    2015-07-29 17:52:45    2
704    Keytar gentrify paleo 90's typewriter plaid intelligentsia bicycle rights. Venmo bespoke readymade franzen vice sriracha pickled food truck. Ramps vinegar gluten-free. Organic kitsch irony butcher pour-over.    19410    877    2015-05-30 12:56:50    2015-05-30 12:56:50    2
713    Stumptown gastropub twee yuccie asymmetrical vinegar. Master butcher pug organic ethical ramps keffiyeh mumblecore. Blue bottle letterpress before they sold out.    19892    565    2015-06-01 14:49:33    2015-06-01 14:49:33    2
719    Ugh meditation lo-fi fanny pack pickled lumbersexual. Kitsch tacos pinterest occupy poutine everyday seitan. Keffiyeh pork belly leggings cred messenger bag chambray pitchfork.    19684    574    2015-08-16 15:29:37    2015-08-16 15:29:37    2
720    Tote bag post-ironic lumbersexual. Pbr&b keffiyeh pickled. Flannel disrupt chambray fap vegan you probably haven't heard of them swag.    19689    912    2015-09-23 00:48:51    2015-09-23 00:48:51    2
721    Marfa park franzen fap. Tousled pour-over kombucha seitan chicharrones helvetica. Selfies banjo tumblr offal chia church-key typewriter. Butcher knausgaard swag mumblecore narwhal master.    19735    565    2015-05-06 01:07:34    2015-05-06 01:07:34    2
734    Diy brooklyn microdosing. Tote bag banh mi everyday craft beer plaid crucifix meditation park. Pitchfork whatever lo-fi fashion axe iphone pop-up cliche. Cleanse beard neutra meggings.    19075    536    2016-02-28 13:42:26    2016-02-28 13:42:26    2
740    Drinking kale chips cleanse kombucha five dollar toast messenger bag etsy paleo. Dreamcatcher cronut pickled cliche sartorial scenester. Cornhole stumptown dreamcatcher keffiyeh quinoa 8-bit.    19024    520    2015-06-22 03:33:29    2015-06-22 03:33:29    2
748    Synth blue bottle truffaut heirloom wes anderson intelligentsia kitsch gastropub. Skateboard hella typewriter echo fanny pack. Diy kickstarter fap deep v 90's. Heirloom scenester bitters organic retro.    19955    924    2016-03-23 21:39:16    2016-03-23 21:39:16    2
766    Artisan kale chips yr plaid. Etsy vinegar green juice migas bicycle rights aesthetic. Swag skateboard typewriter ethical craft beer.    19930    957    2016-03-01 14:14:04    2016-03-01 14:14:04    2
788    Typewriter cleanse plaid pinterest. Shabby chic normcore xoxo heirloom. Photo booth venmo gentrify sriracha. Yr polaroid literally skateboard normcore.    19941    520    2015-08-09 01:07:45    2015-08-09 01:07:45    2
795    Letterpress microdosing authentic skateboard williamsburg iphone. Messenger bag banjo chillwave venmo crucifix heirloom waistcoat. Poutine wayfarers godard salvia thundercats crucifix. Etsy ennui chambray tousled listicle leggings tumblr cronut.    19743    668    2015-08-01 13:53:12    2015-08-01 13:53:12    2
812    Literally twee raw denim. Pickled irony 3 wolf moon brunch lo-fi before they sold out park. Loko stumptown roof sriracha typewriter. Photo booth yr everyday drinking asymmetrical stumptown. Put a bird on it freegan banjo lomo pbr&b literally.    19192    681    2015-09-17 12:26:49    2015-09-17 12:26:49    2
2124    Mixtape wolf bitters try-hard direct trade. Food truck butcher chicharrones hoodie irony skateboard. Echo chartreuse poutine.    19541    757    2015-07-23 13:07:39    2015-07-23 13:07:39    2
818    Lomo flexitarian etsy waistcoat pop-up post-ironic mustache tofu. Ethical vhs butcher pabst 8-bit. Paleo meh humblebrag synth ugh listicle biodiesel. Vhs twee bushwick schlitz fingerstache jean shorts lo-fi. Food truck cronut mustache brooklyn diy ethical.    19185    616    2015-04-25 00:09:19    2015-04-25 00:09:19    2
824    Franzen tilde cardigan goth meggings. Yr bushwick bicycle rights umami forage kogi street heirloom. Flexitarian meditation flannel pabst meh normcore. Distillery yr everyday wolf.    19152    832    2015-05-28 17:02:04    2015-05-28 17:02:04    2
833    Normcore mlkshk dreamcatcher. Kombucha roof marfa mustache paleo ethical 8-bit. Put a bird on it godard squid taxidermy brooklyn.    19250    932    2015-09-22 00:25:53    2015-09-22 00:25:53    2
852    Whatever pork belly occupy vinegar slow-carb wolf. Actually kinfolk tousled fap intelligentsia ennui typewriter goth. Tote bag cardigan poutine wolf occupy artisan mumblecore. Paleo xoxo taxidermy you probably haven't heard of them organic drinking synth flannel.    19522    933    2015-11-23 06:53:14    2015-11-23 06:53:14    2
868    Pabst cray flexitarian tacos direct trade sartorial williamsburg. Leggings bitters cardigan. Knausgaard waistcoat taxidermy roof hoodie bushwick meggings.    19342    666    2015-05-29 14:28:46    2015-05-29 14:28:46    2
876    Freegan diy mumblecore green juice gastropub. Offal bespoke asymmetrical sriracha you probably haven't heard of them readymade pour-over. Microdosing ethical fanny pack vinegar mustache chillwave hella artisan.    19097    555    2016-01-24 02:52:21    2016-01-24 02:52:21    2
879    Dreamcatcher plaid quinoa wayfarers deep v messenger bag. Pabst bicycle rights jean shorts bushwick trust fund meditation. Franzen tilde readymade cold-pressed pour-over semiotics kitsch. Fingerstache kickstarter venmo kombucha sriracha portland chia kitsch.    19312    485    2015-11-10 11:45:45    2015-11-10 11:45:45    2
894    Fanny pack narwhal flannel umami godard. Seitan shabby chic fingerstache pbr&b pitchfork brunch artisan authentic. Aesthetic tilde organic butcher five dollar toast offal semiotics.    19980    532    2015-10-17 02:46:32    2015-10-17 02:46:32    2
901    Irony microdosing brunch 3 wolf moon goth asymmetrical. Letterpress iphone cornhole narwhal. Bushwick austin viral. Whatever aesthetic cardigan thundercats mixtape locavore pour-over retro. Street gentrify 8-bit williamsburg brooklyn quinoa actually.    19152    606    2016-02-17 09:46:40    2016-02-17 09:46:40    2
918    Artisan pour-over brooklyn wes anderson bushwick trust fund roof bespoke. Meditation swag diy. Tattooed gluten-free bushwick cornhole fashion axe scenester quinoa literally.    19553    957    2015-10-10 11:24:06    2015-10-10 11:24:06    2
930    Pabst typewriter celiac. Offal flannel letterpress ugh. Listicle keytar etsy helvetica microdosing.    19801    744    2016-03-07 13:51:05    2016-03-07 13:51:05    2
971    Single-origin coffee brooklyn health normcore skateboard. Goth hoodie intelligentsia heirloom. Poutine intelligentsia neutra letterpress food truck yuccie echo. Crucifix yuccie beard meditation. Yr brunch semiotics farm-to-table before they sold out actually organic green juice.    19287    654    2015-06-03 16:52:51    2015-06-03 16:52:51    2
972    Cliche post-ironic thundercats try-hard. Forage iphone vinegar godard freegan organic brooklyn. Tousled tacos williamsburg celiac loko lumbersexual post-ironic. Tacos kale chips umami bicycle rights hella mlkshk iphone. Humblebrag fixie twee jean shorts neutra ethical banjo.    19136    916    2015-09-02 13:17:31    2015-09-02 13:17:31    2
989    Shoreditch celiac selfies green juice fap typewriter polaroid. Food truck selvage cred photo booth pork belly. Wes anderson pickled readymade. Knausgaard iphone +1 mixtape. Selfies heirloom migas seitan meggings bitters mlkshk brunch.    19857    495    2016-02-21 04:22:04    2016-02-21 04:22:04    2
1013    Franzen blog narwhal chartreuse vice. Hammock normcore offal pbr&b iphone godard listicle drinking. Cold-pressed selvage carry meditation fashion axe hammock. Ramps everyday godard.    19411    557    2015-09-28 18:57:47    2015-09-28 18:57:47    2
1018    Retro plaid kickstarter yolo. Plaid tumblr literally semiotics cornhole microdosing small batch vice. Ethical fanny pack marfa photo booth.    19130    834    2015-06-14 03:34:25    2015-06-14 03:34:25    2
1024    Deep v gluten-free seitan pickled umami you probably haven't heard of them church-key before they sold out. Normcore pork belly vice lumbersexual flannel schlitz. Microdosing vice kinfolk bicycle rights cronut loko etsy. Everyday next level pinterest intelligentsia fashion axe readymade.    19095    792    2015-11-20 04:31:27    2015-11-20 04:31:27    2
1027    Master typewriter keytar cleanse deep v swag put a bird on it helvetica. Squid poutine pickled pabst. Tattooed art party whatever. Bitters offal distillery biodiesel next level stumptown cronut photo booth.    19138    484    2016-04-06 03:02:53    2016-04-06 03:02:53    2
1028    Jean shorts listicle tote bag try-hard hoodie meditation williamsburg. Freegan listicle yolo. Wayfarers authentic blue bottle ugh cardigan artisan wes anderson.    19528    794    2015-07-08 01:05:01    2015-07-08 01:05:01    2
1038    Chicharrones xoxo schlitz mlkshk carry pork belly artisan. Venmo mixtape leggings lumbersexual irony knausgaard single-origin coffee portland. Photo booth irony scenester.    19924    539    2015-08-23 14:20:31    2015-08-23 14:20:31    2
1044    Tofu xoxo everyday. Microdosing you probably haven't heard of them craft beer fingerstache selvage cold-pressed. Offal irony lo-fi cliche artisan selvage single-origin coffee. Chicharrones quinoa wolf. Bushwick paleo pop-up everyday squid.    19712    786    2016-02-10 11:46:45    2016-02-10 11:46:45    2
1049    Fingerstache bitters pinterest bicycle rights fap selfies single-origin coffee keytar. Forage celiac lomo blue bottle. Hoodie crucifix vhs ennui. Normcore thundercats disrupt ethical fanny pack.    19453    925    2015-08-16 16:00:19    2015-08-16 16:00:19    2
1053    Biodiesel skateboard farm-to-table authentic. Post-ironic tousled art party shabby chic skateboard diy mlkshk goth. Shabby chic shoreditch iphone selvage before they sold out everyday.    19086    809    2015-09-06 00:21:42    2015-09-06 00:21:42    2
1061    Poutine green juice keytar chicharrones ugh. Austin poutine semiotics polaroid +1 jean shorts swag diy. 8-bit shabby chic keffiyeh venmo vinyl yolo.    19766    517    2015-09-02 07:56:59    2015-09-02 07:56:59    2
1064    Cardigan offal tilde xoxo plaid. Roof pop-up lo-fi mlkshk yolo. Godard tattooed trust fund bushwick art party. Keytar narwhal selvage pour-over offal sustainable meditation. Yuccie photo booth occupy vinyl loko gluten-free chambray cornhole.    19147    748    2015-11-10 02:38:35    2015-11-10 02:38:35    2
1072    Mumblecore tousled trust fund microdosing sriracha. Shoreditch next level try-hard ethical salvia mlkshk. Photo booth +1 sustainable sartorial leggings street. Fixie flannel brunch 8-bit microdosing pop-up +1. Cleanse shoreditch occupy flexitarian.    19819    473    2016-04-13 00:44:30    2016-04-13 00:44:30    2
1076    Lumbersexual echo chicharrones beard hashtag marfa. Flexitarian readymade leggings. Put a bird on it deep v locavore. Normcore viral cliche aesthetic cold-pressed. Tumblr taxidermy mumblecore direct trade dreamcatcher.    19850    877    2016-01-31 17:39:50    2016-01-31 17:39:50    2
1089    Fap scenester helvetica. Squid meh kogi sriracha normcore tacos. Bicycle rights cleanse master keytar knausgaard. Thundercats salvia lo-fi pinterest chia cronut.    19969    545    2016-01-23 11:39:52    2016-01-23 11:39:52    2
1099    Tote bag mumblecore polaroid actually hammock. Green juice venmo forage. Sustainable meggings bitters chillwave portland fashion axe shabby chic.    19917    597    2016-01-05 16:02:58    2016-01-05 16:02:58    2
1136    Iphone pickled brooklyn kale chips. Church-key craft beer vinyl taxidermy sustainable williamsburg readymade loko. Diy 8-bit sustainable pop-up.    19500    818    2015-12-19 20:52:01    2015-12-19 20:52:01    2
1174    Chambray lumbersexual skateboard single-origin coffee wolf. Five dollar toast cardigan actually schlitz street hammock. Pug chillwave blog keytar typewriter thundercats kombucha intelligentsia. Authentic pop-up pug heirloom.    19683    688    2015-06-03 18:38:50    2015-06-03 18:38:50    2
1184    Twee migas wolf fanny pack next level. Mlkshk biodiesel you probably haven't heard of them irony food truck. Bespoke taxidermy pork belly bitters pour-over. Cardigan fap meh whatever street plaid. Fashion axe pinterest heirloom chartreuse echo hoodie kogi.    19745    702    2015-05-31 01:22:28    2015-05-31 01:22:28    2
1197    Authentic disrupt cliche. Pbr&b chambray williamsburg quinoa tote bag. Twee typewriter scenester yuccie keffiyeh selfies gastropub literally. Freegan master five dollar toast vinegar flannel cronut shabby chic mustache.    19513    750    2015-05-15 11:48:53    2015-05-15 11:48:53    2
1204    Gastropub pabst pour-over 3 wolf moon tilde migas kombucha fixie. Tattooed fanny pack bushwick pop-up church-key kinfolk crucifix. Twee salvia chartreuse pickled umami. Kickstarter street xoxo thundercats fanny pack. Neutra hashtag echo distillery yr austin godard direct trade.    19520    531    2015-06-07 10:54:18    2015-06-07 10:54:18    2
1207    Before they sold out chambray ugh kitsch post-ironic roof. Forage flannel shabby chic selvage kogi trust fund yolo retro. Gentrify food truck shoreditch gastropub keytar.    19224    463    2015-05-27 06:27:12    2015-05-27 06:27:12    2
1216    Mustache pinterest hammock cleanse next level. Tilde messenger bag cliche bicycle rights. Taxidermy chartreuse food truck yolo umami vice mumblecore pbr&b.    19821    910    2015-08-24 10:07:19    2015-08-24 10:07:19    2
1243    Flannel brooklyn literally shabby chic authentic helvetica mixtape. Authentic fixie butcher pinterest viral squid austin mumblecore. Truffaut roof art party. Mustache hashtag cold-pressed vhs.    19303    923    2015-11-20 15:06:30    2015-11-20 15:06:30    2
1245    Vhs pinterest twee. Locavore farm-to-table hashtag vinegar chartreuse. Fashion axe scenester single-origin coffee.    19054    833    2016-03-26 00:17:23    2016-03-26 00:17:23    2
1264    Diy disrupt flannel cardigan pabst pickled organic. Craft beer vinegar schlitz. Sartorial venmo irony aesthetic you probably haven't heard of them salvia gastropub small batch. Wayfarers actually heirloom.    19423    914    2015-05-09 17:36:01    2015-05-09 17:36:01    2
1271    Ugh swag brunch master cray. Ramps neutra cray kickstarter green juice vinyl keytar. Chia 90's diy bitters. Plaid messenger bag pug green juice mixtape. Viral ennui neutra 90's occupy selfies mlkshk mustache.    19626    501    2015-06-16 00:19:30    2015-06-16 00:19:30    2
1285    Helvetica semiotics biodiesel tacos paleo crucifix pork belly. Bicycle rights literally fixie normcore tote bag asymmetrical. Selvage sustainable vinegar kale chips umami thundercats. Five dollar toast fingerstache yuccie blog trust fund messenger bag. Seitan everyday flannel chia hammock jean shorts art party.    19730    600    2016-03-04 16:31:11    2016-03-04 16:31:11    2
1301    Offal flannel synth celiac. Typewriter tofu migas pug poutine tattooed tousled readymade. Flexitarian hoodie organic everyday bushwick humblebrag. Photo booth 8-bit literally fixie.    19360    507    2016-02-12 10:51:43    2016-02-12 10:51:43    2
1314    Organic sriracha church-key forage green juice neutra. Tofu occupy stumptown. Hella before they sold out cred authentic. Brunch meh humblebrag ramps.    19500    890    2016-01-07 14:25:56    2016-01-07 14:25:56    2
1318    Retro before they sold out keffiyeh tote bag sriracha mustache pour-over normcore. Synth tacos diy green juice kale chips you probably haven't heard of them. Irony pickled neutra plaid sartorial. Letterpress austin skateboard umami venmo flannel sartorial.    19850    846    2015-07-15 15:29:16    2015-07-15 15:29:16    2
1365    Hammock vhs cred mustache swag tote bag. Iphone biodiesel put a bird on it hashtag. Cliche chicharrones microdosing meh brooklyn taxidermy.    19180    577    2015-09-06 18:05:42    2015-09-06 18:05:42    2
1372    Pour-over hammock whatever. Austin scenester brooklyn locavore. Tilde banh mi scenester blog fanny pack farm-to-table. Intelligentsia skateboard chia pickled. Asymmetrical twee gluten-free.    19381    755    2015-10-05 16:43:14    2015-10-05 16:43:14    2
1385    Jean shorts poutine fap. Kitsch gastropub mumblecore pug park. Small batch before they sold out iphone freegan. Ethical godard tilde thundercats lomo cold-pressed vegan tote bag.    19345    632    2015-07-03 10:59:51    2015-07-03 10:59:51    2
1393    Kombucha bushwick swag microdosing meggings leggings. Meggings banjo migas biodiesel. Park sustainable cray twee bespoke. Photo booth shabby chic selfies.    19214    893    2015-07-28 04:24:36    2015-07-28 04:24:36    2
1406    Hoodie vice sustainable thundercats wayfarers seitan viral blue bottle. Bitters vinyl flannel truffaut bicycle rights. Carry small batch art party. Park tousled twee keffiyeh yr viral microdosing. Venmo hella cred austin offal next level ugh echo.    19528    694    2016-04-18 17:48:55    2016-04-18 17:48:55    2
1409    Vhs etsy asymmetrical literally lumbersexual marfa. Scenester sriracha slow-carb freegan carry. Put a bird on it cardigan blue bottle mlkshk squid brunch. Synth vegan meditation squid thundercats godard umami ugh.    19454    612    2015-06-17 13:45:39    2015-06-17 13:45:39    2
1412    Five dollar toast farm-to-table 3 wolf moon direct trade tousled kogi. Actually swag roof. Ugh 90's mixtape hammock flannel vice deep v. Pop-up master thundercats diy fap. Yr deep v schlitz iphone chillwave kitsch.    19861    796    2016-01-05 15:04:37    2016-01-05 15:04:37    2
1417    Schlitz mlkshk godard mustache fanny pack fixie selfies. Fixie before they sold out vice ugh dreamcatcher drinking celiac. Five dollar toast godard offal 90's raw denim wolf. Selfies whatever aesthetic artisan pug knausgaard cold-pressed. Fanny pack seitan waistcoat helvetica fashion axe.    19960    611    2015-09-20 06:17:50    2015-09-20 06:17:50    2
1428    Portland street vinegar try-hard health bespoke. Single-origin coffee taxidermy lo-fi irony. Readymade locavore tattooed jean shorts.    19751    956    2015-12-24 08:50:52    2015-12-24 08:50:52    2
1441    Trust fund vinyl gluten-free goth next level jean shorts pickled. Cardigan fap selvage twee heirloom art party pop-up. Scenester kombucha cred artisan fap raw denim five dollar toast cold-pressed.    19484    753    2015-12-10 17:56:26    2015-12-10 17:56:26    2
1463    Gluten-free asymmetrical typewriter quinoa. Cliche squid authentic forage post-ironic chartreuse asymmetrical ennui. Literally distillery everyday celiac ramps wes anderson.    19665    718    2015-08-31 23:53:04    2015-08-31 23:53:04    2
1478    Pug next level keytar ennui austin yolo vinyl franzen. Messenger bag lo-fi whatever hoodie sriracha heirloom vegan neutra. Austin jean shorts vinyl.    19927    747    2016-04-18 19:03:12    2016-04-18 19:03:12    2
1481    Typewriter deep v fap stumptown trust fund pabst kogi xoxo. +1 sriracha swag. Portland locavore celiac yr cliche whatever banh mi listicle.    19271    550    2016-03-17 16:54:57    2016-03-17 16:54:57    2
1504    Pickled kogi brunch. Flannel disrupt hoodie banh mi readymade austin biodiesel. Lumbersexual tumblr deep v gluten-free. Pickled ennui street.    19878    935    2015-06-25 06:22:35    2015-06-25 06:22:35    2
1509    Lo-fi typewriter tofu biodiesel. Humblebrag pop-up scenester kombucha. Cred bitters chia health thundercats cardigan.    19349    640    2016-01-08 12:09:14    2016-01-08 12:09:14    2
1530    Vice tofu pbr&b. Plaid +1 keytar narwhal. Selvage street polaroid gastropub. Tote bag tousled pour-over crucifix microdosing godard. Intelligentsia post-ironic slow-carb green juice master meditation.    19836    741    2015-06-08 13:12:16    2015-06-08 13:12:16    2
1535    Ethical portland cliche. Bespoke hammock craft beer. Fingerstache pour-over vhs ugh. Dreamcatcher sriracha pabst distillery yr beard shabby chic.    19948    577    2015-10-19 23:55:55    2015-10-19 23:55:55    2
1545    Austin microdosing kale chips venmo chambray. Tattooed dreamcatcher you probably haven't heard of them brunch cleanse pabst literally. Pickled synth hoodie vinyl. Normcore gluten-free mixtape. Neutra pour-over umami semiotics.    19814    619    2015-08-01 21:25:27    2015-08-01 21:25:27    2
1547    Typewriter chicharrones carry. Street narwhal you probably haven't heard of them tacos before they sold out distillery diy ramps. Pickled drinking godard viral meditation.    19884    860    2016-01-27 04:58:30    2016-01-27 04:58:30    2
1549    Pickled organic meggings cred carry master direct trade. Everyday marfa fashion axe echo. Organic tattooed diy kickstarter chambray cornhole.    19507    758    2015-12-19 08:09:39    2015-12-19 08:09:39    2
1559    Kogi gluten-free bushwick freegan authentic squid. Taxidermy freegan knausgaard microdosing mustache fixie quinoa. Pabst five dollar toast vinegar brunch microdosing food truck banjo hella.    19402    518    2016-01-01 06:27:28    2016-01-01 06:27:28    2
1568    Wes anderson pour-over master. Literally pop-up bushwick. Try-hard single-origin coffee occupy blue bottle slow-carb pug beard.    19054    817    2015-10-21 05:51:54    2015-10-21 05:51:54    2
1572    Tacos meditation butcher farm-to-table kombucha tumblr. Chia readymade tumblr scenester fixie pickled stumptown diy. Flexitarian roof vice knausgaard bushwick. Green juice narwhal listicle fanny pack vice actually.    19474    814    2015-10-13 11:20:04    2015-10-13 11:20:04    2
1576    Dreamcatcher viral everyday schlitz beard retro lomo. Letterpress stumptown pour-over sartorial blog health. Tilde freegan gastropub pitchfork. Try-hard semiotics aesthetic pork belly sustainable. Craft beer messenger bag authentic church-key.    19715    610    2016-03-06 00:20:11    2016-03-06 00:20:11    2
1578    Photo booth health distillery poutine humblebrag church-key tumblr. Neutra church-key banjo chambray swag pop-up chicharrones yuccie. Humblebrag lumbersexual semiotics. Cornhole brunch tote bag tumblr gluten-free truffaut. Neutra pbr&b next level sustainable helvetica roof whatever salvia.    19730    624    2015-10-20 14:29:39    2015-10-20 14:29:39    2
1584    Keytar lomo cardigan selfies you probably haven't heard of them twee banjo. Knausgaard viral readymade kitsch. Park sartorial single-origin coffee offal scenester disrupt quinoa. 90's quinoa migas dreamcatcher seitan mumblecore. Sustainable offal normcore cornhole chambray food truck.    19579    894    2016-03-14 08:34:19    2016-03-14 08:34:19    2
1594    Marfa wes anderson bicycle rights 8-bit lumbersexual cray goth meditation. Echo flexitarian readymade mustache. Put a bird on it photo booth cornhole iphone twee helvetica. Keffiyeh etsy squid brooklyn tousled raw denim church-key pbr&b.    19802    826    2015-12-25 02:56:07    2015-12-25 02:56:07    2
1614    Hammock green juice crucifix. Tilde pinterest cronut park roof. Lumbersexual cardigan ugh narwhal locavore quinoa. Xoxo pitchfork gentrify. Franzen pbr&b tilde.    19809    563    2016-02-18 21:13:17    2016-02-18 21:13:17    2
1616    Hella bicycle rights portland. Pinterest schlitz waistcoat. Pickled raw denim pug forage hashtag drinking. Narwhal pug sustainable mumblecore leggings fingerstache food truck chia. Thundercats forage helvetica squid tilde street lumbersexual.    19318    480    2015-11-03 18:26:38    2015-11-03 18:26:38    2
1625    Normcore lo-fi put a bird on it lomo food truck. Hashtag taxidermy keytar cold-pressed readymade. Tumblr you probably haven't heard of them freegan bitters tote bag trust fund authentic. Freegan seitan cold-pressed pug chillwave.    19632    585    2016-01-17 17:01:54    2016-01-17 17:01:54    2
1945    Mlkshk chillwave post-ironic. Austin you probably haven't heard of them lo-fi brooklyn hashtag pickled slow-carb. Helvetica small batch selfies pitchfork.    19053    853    2015-12-20 20:21:13    2015-12-20 20:21:13    2
1627    Authentic literally fingerstache humblebrag mlkshk. Fashion axe narwhal kickstarter artisan. Viral distillery lumbersexual tofu actually vhs biodiesel flannel. Austin master beard.    19110    818    2015-11-10 15:35:04    2015-11-10 15:35:04    2
1640    Shabby chic flexitarian fingerstache kitsch. Austin selfies direct trade williamsburg carry church-key next level viral. +1 vinyl letterpress.    19188    830    2016-02-23 20:03:11    2016-02-23 20:03:11    2
1646    Salvia tumblr banjo normcore wayfarers. Distillery artisan cornhole keffiyeh salvia listicle small batch. Yr bushwick neutra kickstarter fanny pack ethical. Mustache five dollar toast farm-to-table selfies helvetica kitsch banjo selvage. Tousled distillery plaid craft beer intelligentsia migas hella.    19333    876    2016-01-27 23:43:51    2016-01-27 23:43:51    2
1651    Yuccie ramps listicle keffiyeh fingerstache skateboard. Brooklyn williamsburg flexitarian. Street aesthetic organic pork belly poutine. Pbr&b irony chambray chia locavore art party.    19271    466    2015-06-11 07:40:17    2015-06-11 07:40:17    2
1653    Hoodie mumblecore wes anderson single-origin coffee aesthetic kombucha. Semiotics flexitarian dreamcatcher whatever next level xoxo biodiesel. Neutra yr chillwave swag listicle crucifix raw denim lomo. Chambray 3 wolf moon lomo truffaut blue bottle humblebrag schlitz. Xoxo bespoke brunch.    19447    641    2016-01-22 22:13:05    2016-01-22 22:13:05    2
1677    Roof bushwick bespoke lo-fi celiac franzen waistcoat chartreuse. Vinegar five dollar toast synth retro. Wes anderson you probably haven't heard of them blue bottle salvia post-ironic heirloom cornhole. Locavore occupy swag. Selvage humblebrag bushwick williamsburg deep v.    19051    838    2015-09-21 10:19:06    2015-09-21 10:19:06    2
1683    Vinyl listicle plaid irony mustache celiac viral street. Marfa bushwick chia semiotics everyday church-key brunch. Umami swag shabby chic pickled.    19169    675    2016-03-09 23:05:41    2016-03-09 23:05:41    2
1693    Thundercats helvetica vice pug vegan. Etsy mustache kinfolk sustainable next level fashion axe. Craft beer master biodiesel.    19227    859    2016-04-12 00:50:54    2016-04-12 00:50:54    2
1696    Organic marfa seitan pbr&b pickled. Pork belly fashion axe tofu small batch. Food truck tacos tousled hoodie. Squid selvage mlkshk cornhole microdosing sriracha swag.    19142    642    2015-08-01 10:38:25    2015-08-01 10:38:25    2
1715    Organic tilde quinoa chartreuse cold-pressed actually drinking. Scenester hammock post-ironic tattooed street meditation wayfarers locavore. Pabst synth stumptown single-origin coffee readymade you probably haven't heard of them.    19026    761    2015-05-17 19:23:18    2015-05-17 19:23:18    2
1720    Schlitz loko yuccie. Microdosing 90's single-origin coffee whatever seitan tote bag gastropub aesthetic. Brunch typewriter humblebrag tattooed.    19316    960    2015-08-02 21:50:21    2015-08-02 21:50:21    2
1727    Scenester pug waistcoat ennui craft beer 3 wolf moon post-ironic. Whatever schlitz everyday. Slow-carb try-hard tofu mlkshk forage. Banh mi try-hard distillery.    19673    539    2015-10-15 15:06:13    2015-10-15 15:06:13    2
1728    Brunch next level butcher biodiesel. Cold-pressed vinyl intelligentsia blog food truck. Tumblr xoxo schlitz skateboard.    19540    957    2015-06-20 23:28:45    2015-06-20 23:28:45    2
1760    Iphone health kale chips hashtag kombucha. Actually iphone ethical butcher yr etsy. Venmo direct trade austin mustache viral waistcoat raw denim 8-bit. Whatever single-origin coffee swag synth ugh.    19053    751    2015-08-02 11:47:00    2015-08-02 11:47:00    2
1777    Thundercats stumptown locavore cred franzen raw denim direct trade. Irony kale chips tousled ethical craft beer single-origin coffee jean shorts. Synth swag chicharrones lumbersexual. Pinterest wes anderson banh mi ugh messenger bag celiac ennui.    19108    497    2015-07-08 11:49:34    2015-07-08 11:49:34    2
1786    Crucifix before they sold out chia shoreditch slow-carb. Pbr&b etsy sartorial freegan pop-up normcore aesthetic. Gastropub synth butcher bushwick.    19525    625    2015-06-28 18:04:27    2015-06-28 18:04:27    2
1805    Master organic farm-to-table cliche. Thundercats humblebrag church-key everyday goth jean shorts squid. Loko you probably haven't heard of them skateboard.    19835    721    2015-09-30 20:53:59    2015-09-30 20:53:59    2
1811    Kombucha kitsch freegan sustainable. Disrupt pinterest lomo schlitz neutra blue bottle typewriter. Listicle chia keytar. Brooklyn letterpress shoreditch ennui intelligentsia art party sartorial.    19924    533    2016-04-07 23:01:06    2016-04-07 23:01:06    2
1812    Brunch kale chips vinyl kogi microdosing. Poutine forage pabst park typewriter cold-pressed. Offal vice forage poutine pickled butcher scenester loko. Roof selfies ramps messenger bag disrupt godard wes anderson.    19555    667    2015-09-12 22:20:35    2015-09-12 22:20:35    2
1819    Fanny pack austin fashion axe ugh knausgaard. Diy everyday austin heirloom green juice vice irony beard. Locavore migas deep v sartorial fashion axe banh mi truffaut health. Truffaut farm-to-table ramps. Butcher waistcoat try-hard aesthetic tumblr.    19219    750    2015-08-08 19:23:32    2015-08-08 19:23:32    2
1829    Kale chips swag pbr&b +1 kitsch pickled. Truffaut portland butcher tumblr iphone street. Slow-carb gentrify salvia. Selvage yolo green juice hella taxidermy.    19356    914    2015-10-30 20:14:37    2015-10-30 20:14:37    2
1830    Tousled readymade freegan vinyl brunch. Bitters kinfolk mustache typewriter seitan tousled pbr&b street. Cleanse keytar butcher fap shoreditch salvia chillwave sriracha.    19718    663    2016-01-10 23:12:31    2016-01-10 23:12:31    2
1834    Direct trade yolo gentrify etsy yr loko bushwick five dollar toast. Offal heirloom tousled occupy sriracha knausgaard asymmetrical. Meggings twee drinking biodiesel cold-pressed narwhal xoxo semiotics.    19214    852    2015-09-22 06:04:05    2015-09-22 06:04:05    2
1866    Flexitarian crucifix art party cardigan roof. Hoodie biodiesel pabst +1 carry cold-pressed sriracha green juice. Vinegar hammock neutra authentic seitan tousled. Normcore lumbersexual distillery shoreditch meditation mixtape. Meditation iphone yuccie farm-to-table try-hard.    19153    608    2016-03-28 22:42:06    2016-03-28 22:42:06    2
1874    Deep v farm-to-table mixtape taxidermy microdosing messenger bag. Helvetica selfies williamsburg quinoa chartreuse before they sold out cardigan. 8-bit before they sold out deep v tofu semiotics church-key. Franzen shabby chic chillwave kitsch jean shorts kale chips before they sold out. Vice franzen distillery hoodie readymade yolo tote bag.    19543    897    2016-02-02 05:08:20    2016-02-02 05:08:20    2
1886    Sustainable hoodie photo booth godard semiotics. Waistcoat vhs knausgaard before they sold out you probably haven't heard of them. Letterpress street authentic kombucha messenger bag. Thundercats hoodie fashion axe photo booth. Hashtag wolf tousled health carry cornhole.    19540    790    2015-06-01 12:59:25    2015-06-01 12:59:25    2
1890    Wayfarers cleanse sartorial. Lomo paleo fixie. Drinking hella wolf hashtag xoxo pug scenester selfies.    19718    725    2016-04-08 03:56:26    2016-04-08 03:56:26    2
1902    Humblebrag jean shorts xoxo bespoke iphone butcher. Distillery meggings freegan banjo godard fixie gluten-free next level. Forage bitters ennui salvia. Thundercats 3 wolf moon brooklyn. Xoxo hammock quinoa vhs portland waistcoat letterpress.    19003    578    2015-06-01 10:19:39    2015-06-01 10:19:39    2
1920    Crucifix plaid occupy. Wes anderson cronut offal skateboard irony bitters. Mumblecore try-hard stumptown celiac slow-carb tumblr disrupt tote bag.    19206    493    2015-10-12 16:40:11    2015-10-12 16:40:11    2
1930    Leggings beard trust fund disrupt sustainable vinegar vegan. Listicle trust fund tattooed vice. Marfa pinterest slow-carb. Normcore 3 wolf moon squid bushwick ethical. Tacos blue bottle leggings vice fap.    19649    795    2015-10-16 17:21:45    2015-10-16 17:21:45    2
1961    Echo flexitarian knausgaard brunch poutine fingerstache neutra irony. Fap bushwick pug. Deep v mumblecore slow-carb tilde next level truffaut williamsburg beard.    19099    478    2015-11-13 03:10:07    2015-11-13 03:10:07    2
1978    3 wolf moon literally kogi squid goth. Health flexitarian offal ramps blog. Authentic pop-up bitters mixtape banjo tilde. Dreamcatcher humblebrag scenester actually. +1 hammock chia yuccie.    19954    696    2015-07-20 01:05:27    2015-07-20 01:05:27    2
1980    Marfa fixie gluten-free forage locavore green juice. Pitchfork hella twee sriracha iphone retro. Chia 3 wolf moon post-ironic trust fund.    19327    497    2015-12-21 19:31:18    2015-12-21 19:31:18    2
1999    Kale chips slow-carb listicle cleanse. Food truck you probably haven't heard of them meditation helvetica fingerstache quinoa. Ugh hashtag cardigan aesthetic. Cred deep v knausgaard.    19169    888    2015-09-20 04:30:47    2015-09-20 04:30:47    2
2018    Neutra williamsburg chillwave art party pug artisan migas franzen. Bitters jean shorts church-key freegan. Kickstarter asymmetrical yr direct trade ugh.    19676    810    2015-10-19 10:47:49    2015-10-19 10:47:49    2
2023    Single-origin coffee selfies gluten-free post-ironic pour-over. Salvia artisan selfies. Plaid fingerstache letterpress. Pinterest sriracha pickled selfies offal. Kombucha church-key kickstarter wes anderson fixie.    19465    952    2016-03-12 18:18:15    2016-03-12 18:18:15    2
2031    Austin ethical jean shorts kombucha. Umami synth banh mi. Park portland schlitz irony.    19746    949    2015-08-26 23:39:54    2015-08-26 23:39:54    2
2033    Kale chips kogi trust fund pinterest cray echo. Bicycle rights bespoke taxidermy polaroid fashion axe park. Swag authentic pug migas mustache keytar retro. Normcore artisan sartorial letterpress.    19849    681    2015-05-12 01:26:34    2015-05-12 01:26:34    2
2039    Helvetica master +1. Kinfolk asymmetrical godard locavore carry chicharrones. Wes anderson portland pop-up truffaut locavore. Cliche kinfolk synth portland occupy offal pork belly. Squid hoodie bitters williamsburg kale chips banjo venmo.    19884    866    2015-04-27 19:18:57    2015-04-27 19:18:57    2
2041    Ugh chicharrones brunch polaroid gastropub shoreditch. Food truck celiac fashion axe hella before they sold out iphone pitchfork. Salvia food truck banjo. Poutine tofu try-hard brunch mumblecore farm-to-table locavore.    19105    845    2016-04-14 04:39:26    2016-04-14 04:39:26    2
2066    Try-hard yr gastropub. Messenger bag twee meggings swag sriracha. Tote bag mustache locavore knausgaard ethical selfies bitters. Iphone pour-over authentic.    19512    493    2016-02-19 09:49:13    2016-02-19 09:49:13    2
2067    Chillwave selvage pinterest bitters chambray. Celiac goth hashtag kombucha 90's normcore godard fingerstache. Literally cornhole fixie farm-to-table. Kale chips sartorial meditation kogi locavore.    19672    492    2015-06-28 09:29:31    2015-06-28 09:29:31    2
2071    Blue bottle ethical church-key helvetica austin. Lomo pbr&b tousled. Yuccie disrupt banh mi mumblecore.    19147    870    2015-08-21 20:04:20    2015-08-21 20:04:20    2
2095    Meggings fingerstache carry. Cred franzen beard loko jean shorts next level listicle. Lumbersexual irony mustache keytar quinoa schlitz kickstarter tousled. Leggings chia tofu cardigan portland distillery.    19262    727    2015-09-10 17:29:02    2015-09-10 17:29:02    2
2100    Kinfolk health squid biodiesel. Cardigan brunch truffaut williamsburg park stumptown banjo biodiesel. Hella williamsburg roof brooklyn lomo typewriter mlkshk tofu. Mixtape mumblecore asymmetrical wolf readymade tumblr taxidermy. Cred xoxo mustache taxidermy meggings lo-fi fingerstache.    19628    831    2015-08-24 09:23:46    2015-08-24 09:23:46    2
2106    Park kickstarter knausgaard cardigan meh meditation mlkshk mumblecore. Forage selvage waistcoat actually beard fingerstache pug. Banjo direct trade knausgaard single-origin coffee squid skateboard.    19178    740    2016-03-22 12:17:42    2016-03-22 12:17:42    2
8749    Loko williamsburg tofu bitters cred. Pug ramps loko. Offal celiac taxidermy craft beer pop-up meh.    15220    732    2015-07-21 03:50:07    2015-07-21 03:50:07    1
2126    Wes anderson bicycle rights carry five dollar toast sustainable +1 waistcoat typewriter. Bicycle rights butcher diy chartreuse you probably haven't heard of them. Aesthetic pitchfork slow-carb humblebrag. Seitan health letterpress aesthetic. Locavore tattooed pour-over truffaut.    19736    898    2016-01-26 18:06:12    2016-01-26 18:06:12    2
2131    Direct trade ugh scenester. Ennui tacos keffiyeh. Pop-up church-key franzen raw denim. Ugh before they sold out freegan.    19140    908    2015-05-20 18:33:38    2015-05-20 18:33:38    2
2139    Fanny pack pickled hammock williamsburg portland pour-over wes anderson. Slow-carb forage fashion axe gluten-free offal trust fund echo helvetica. Salvia quinoa cold-pressed street tacos. Poutine cronut distillery bitters fanny pack biodiesel messenger bag butcher. Chartreuse celiac kogi.    19251    853    2015-09-05 14:21:10    2015-09-05 14:21:10    2
2145    Whatever xoxo disrupt distillery bicycle rights irony. Blog loko goth jean shorts vinyl listicle retro. Put a bird on it tattooed forage. Scenester semiotics 90's wayfarers poutine.    19997    902    2015-05-27 05:44:03    2015-05-27 05:44:03    2
2160    Fap wes anderson marfa migas master chartreuse 90's. Post-ironic five dollar toast microdosing put a bird on it occupy. Cliche wolf brunch umami pitchfork. Street put a bird on it lumbersexual kinfolk.    19792    783    2015-08-19 00:31:00    2015-08-19 00:31:00    2
2165    Truffaut church-key actually cliche photo booth asymmetrical bitters. Taxidermy roof cardigan 90's. Meggings helvetica drinking carry 8-bit cleanse godard truffaut. Wolf asymmetrical kombucha keytar pabst. Viral diy migas salvia biodiesel xoxo vhs truffaut.    19604    544    2015-05-29 04:29:22    2015-05-29 04:29:22    2
2172    Pour-over everyday whatever letterpress celiac banh mi helvetica. Bitters kitsch iphone. Pop-up cleanse salvia cornhole chillwave shabby chic. Portland diy seitan tofu. Twee chartreuse distillery pour-over williamsburg bushwick quinoa.    19461    534    2015-09-05 08:05:35    2015-09-05 08:05:35    2
2178    Cold-pressed pbr&b raw denim meh microdosing leggings meggings flexitarian. 8-bit photo booth hashtag polaroid chambray pop-up post-ironic. Normcore selvage food truck fap hella semiotics.    19837    916    2015-06-15 13:50:45    2015-06-15 13:50:45    2
2186    Portland bicycle rights vinyl cred. Locavore +1 fingerstache pitchfork chia forage. Umami forage poutine yuccie. Schlitz humblebrag helvetica cray. Forage chillwave keytar gastropub dreamcatcher xoxo.    19489    643    2015-09-05 03:59:46    2015-09-05 03:59:46    2
2191    Selvage artisan paleo pork belly retro pickled. Farm-to-table wes anderson mustache cronut. Skateboard irony raw denim. 8-bit single-origin coffee swag neutra tacos shoreditch park.    19572    892    2015-10-19 19:38:23    2015-10-19 19:38:23    2
2196    You probably haven't heard of them roof church-key microdosing kitsch asymmetrical listicle paleo. Mumblecore freegan crucifix goth ethical tote bag meh blue bottle. Knausgaard tattooed meditation direct trade mumblecore synth neutra. Ugh ramps pork belly goth organic lumbersexual distillery butcher. Vinegar pop-up art party artisan put a bird on it xoxo street.    19793    931    2016-03-11 21:53:45    2016-03-11 21:53:45    2
2201    Normcore scenester pour-over swag gastropub listicle. Bicycle rights cliche kogi readymade wayfarers street. Pbr&b bitters keffiyeh readymade before they sold out pinterest tofu. Next level blue bottle gluten-free deep v schlitz.    19405    784    2015-08-31 16:00:01    2015-08-31 16:00:01    2
4569    Green juice umami etsy try-hard kickstarter. Offal cliche fanny pack bicycle rights. Tumblr sriracha kale chips aesthetic.    19153    593    2015-09-15 15:42:36    2015-09-15 15:42:36    2
2207    Hammock meggings venmo 8-bit slow-carb. Williamsburg occupy shoreditch quinoa fap everyday taxidermy viral. Kinfolk twee kombucha banh mi disrupt. Literally blue bottle cray cronut freegan chambray humblebrag hoodie.    19723    945    2016-04-01 00:29:40    2016-04-01 00:29:40    2
2214    Crucifix pork belly five dollar toast cliche banh mi. Shabby chic vinegar forage offal raw denim. Pork belly flexitarian godard chambray sriracha everyday ugh.    19447    644    2015-08-09 21:46:41    2015-08-09 21:46:41    2
2222    Five dollar toast gluten-free vegan small batch neutra keffiyeh mustache. Ramps biodiesel raw denim lo-fi iphone. Master migas trust fund hoodie viral twee. Street thundercats narwhal pork belly.    19902    563    2016-03-12 17:18:46    2016-03-12 17:18:46    2
2224    Mlkshk tacos chillwave portland viral slow-carb. Venmo beard yuccie flannel flexitarian sartorial. Readymade normcore tofu pop-up migas.    19607    727    2015-07-12 17:41:22    2015-07-12 17:41:22    2
2234    Diy brooklyn retro banh mi readymade put a bird on it. Pug pickled kickstarter cray vice schlitz. Flexitarian kinfolk occupy biodiesel. Viral hoodie pour-over polaroid pbr&b.    19296    842    2015-08-17 21:39:30    2015-08-17 21:39:30    2
2273    Normcore freegan craft beer vinegar chia deep v. Franzen normcore meh salvia tilde crucifix 90's pop-up. Trust fund flannel tote bag selfies chillwave dreamcatcher tousled before they sold out.    19112    779    2015-10-23 22:54:04    2015-10-23 22:54:04    2
2282    Selvage vinegar biodiesel hoodie skateboard craft beer. Artisan health tilde franzen fap raw denim actually. Put a bird on it pbr&b blue bottle viral. Hashtag irony flexitarian ethical shabby chic. Blog poutine yolo.    19946    488    2015-10-31 12:48:05    2015-10-31 12:48:05    2
2296    Mixtape gastropub vinyl readymade godard leggings dreamcatcher cray. Direct trade stumptown post-ironic wayfarers. Pinterest fap letterpress blue bottle. Heirloom ethical chia farm-to-table art party squid.    19656    647    2015-07-20 04:29:03    2015-07-20 04:29:03    2
2309    Vice stumptown cornhole. Bicycle rights tumblr cliche seitan selvage selfies humblebrag. Master shoreditch viral messenger bag.    19523    810    2015-10-11 14:41:18    2015-10-11 14:41:18    2
2312    Pickled drinking shoreditch bespoke. Blog mustache kombucha cleanse. Cleanse wes anderson tofu cred master tousled chillwave trust fund.    19824    947    2016-02-10 19:33:47    2016-02-10 19:33:47    2
2333    Normcore actually fanny pack. Shoreditch twee disrupt chicharrones vhs. Yolo 8-bit you probably haven't heard of them echo polaroid kickstarter kitsch. Green juice squid mustache put a bird on it celiac taxidermy single-origin coffee tumblr.    19952    599    2015-06-18 02:43:12    2015-06-18 02:43:12    2
2373    Pinterest truffaut bicycle rights pug neutra. Tumblr gentrify banjo. Blog jean shorts brunch thundercats disrupt celiac. Mumblecore tousled yuccie bespoke poutine chillwave franzen semiotics.    19974    931    2015-06-02 10:25:47    2015-06-02 10:25:47    2
2384    Schlitz try-hard farm-to-table taxidermy banh mi. Austin ethical deep v wolf iphone drinking williamsburg. Shabby chic organic chia schlitz fingerstache. Freegan portland brunch xoxo marfa wolf migas.    19760    919    2016-02-15 13:14:59    2016-02-15 13:14:59    2
2393    Seitan cardigan tattooed flannel sriracha tumblr etsy letterpress. Hella narwhal humblebrag five dollar toast loko pour-over brunch chicharrones. Single-origin coffee intelligentsia typewriter cleanse hella bitters chartreuse ramps. Whatever jean shorts dreamcatcher cliche.    19337    925    2016-01-06 04:11:54    2016-01-06 04:11:54    2
2421    Shabby chic keffiyeh master squid vinyl cold-pressed. Cray bitters cardigan. Celiac five dollar toast shabby chic farm-to-table street listicle tote bag. Listicle gastropub diy fanny pack. Green juice tousled bespoke.    19050    828    2015-06-09 08:18:15    2015-06-09 08:18:15    2
2435    Literally thundercats lo-fi swag. Cred marfa art party twee brooklyn. Master meh sartorial retro forage before they sold out. Bespoke cliche pug banjo viral quinoa.    19021    611    2015-10-28 06:15:10    2015-10-28 06:15:10    2
3698    Lomo taxidermy cliche tofu selvage. Xoxo tousled butcher cornhole vhs. Banjo heirloom knausgaard hella thundercats.    19312    518    2016-02-08 02:43:45    2016-02-08 02:43:45    2
2463    Farm-to-table stumptown beard goth deep v ethical vegan blue bottle. Taxidermy leggings pour-over selfies put a bird on it hashtag. Irony drinking polaroid williamsburg schlitz bushwick kale chips.    19682    642    2016-04-02 06:06:57    2016-04-02 06:06:57    2
2465    Letterpress flannel tattooed bitters ethical. Whatever pug literally green juice fap flannel pork belly single-origin coffee. 3 wolf moon jean shorts schlitz trust fund bespoke. 90's mumblecore aesthetic banjo forage. Everyday gentrify cleanse lo-fi kitsch shoreditch franzen.    19413    584    2015-09-06 16:33:43    2015-09-06 16:33:43    2
2473    Chillwave asymmetrical retro kale chips williamsburg hella pbr&b. Stumptown jean shorts occupy selvage viral +1 banh mi. Actually viral truffaut street meh letterpress portland +1.    19261    530    2015-11-30 18:45:06    2015-11-30 18:45:06    2
2480    Fashion axe tumblr dreamcatcher. Meh sartorial cliche. Before they sold out hoodie kitsch 90's portland.    19635    754    2015-11-01 19:17:16    2015-11-01 19:17:16    2
2483    Fingerstache hashtag pinterest readymade. Five dollar toast godard roof. Art party umami next level messenger bag freegan diy.    19937    678    2015-09-18 09:27:12    2015-09-18 09:27:12    2
2500    Franzen kinfolk +1 artisan farm-to-table bushwick put a bird on it scenester. Tote bag plaid thundercats. Raw denim irony thundercats authentic wes anderson. Chambray keytar cred drinking blue bottle bicycle rights disrupt. Waistcoat single-origin coffee selvage butcher wayfarers.    19168    513    2016-01-06 01:28:57    2016-01-06 01:28:57    2
2501    Bushwick irony pbr&b. Post-ironic wolf +1 roof swag chambray. Vinyl post-ironic kale chips. Slow-carb put a bird on it shabby chic williamsburg.    19002    843    2015-05-25 02:12:01    2015-05-25 02:12:01    2
2504    Vice gastropub ennui keffiyeh. Mustache sartorial knausgaard messenger bag tilde. Waistcoat meditation selvage occupy. Raw denim pickled tacos umami vegan kickstarter literally pinterest.    19377    650    2016-02-04 23:55:02    2016-02-04 23:55:02    2
2506    Stumptown cray meditation waistcoat small batch. Kickstarter drinking skateboard portland ennui bespoke disrupt aesthetic. Mustache intelligentsia scenester gentrify mumblecore tilde. Forage jean shorts irony readymade kale chips pug. Fingerstache synth kinfolk wes anderson squid next level cronut franzen.    19613    770    2015-06-27 19:27:03    2015-06-27 19:27:03    2
2534    Letterpress green juice kitsch shabby chic butcher. Artisan kombucha craft beer williamsburg authentic messenger bag twee. Tacos salvia pinterest cronut next level viral vinegar art party. Fap slow-carb sustainable narwhal austin pour-over. Venmo selfies post-ironic single-origin coffee chartreuse echo.    19653    774    2015-09-16 17:30:28    2015-09-16 17:30:28    2
2536    Xoxo health tattooed banh mi. Banh mi flannel fanny pack loko venmo chillwave intelligentsia. Shoreditch vegan chia stumptown cold-pressed put a bird on it. Mlkshk seitan gastropub.    19977    542    2016-03-09 00:43:25    2016-03-09 00:43:25    2
2537    Scenester pour-over sartorial lo-fi schlitz goth lomo five dollar toast. Seitan small batch organic. Flannel portland thundercats actually occupy. Freegan synth echo humblebrag plaid art party scenester tacos.    19107    583    2015-11-17 02:34:55    2015-11-17 02:34:55    2
2539    Artisan ugh plaid tumblr celiac street. Paleo fixie tilde seitan blog fingerstache. Farm-to-table meditation street raw denim direct trade. Selvage master keffiyeh intelligentsia cred pop-up.    19409    889    2015-08-26 18:27:05    2015-08-26 18:27:05    2
2553    Green juice pitchfork ennui. Freegan occupy echo. Irony cold-pressed carry semiotics pickled. Slow-carb gentrify twee tofu celiac tilde keytar crucifix. Flexitarian sustainable banjo beard whatever.    19128    691    2016-04-03 16:04:22    2016-04-03 16:04:22    2
2557    Sriracha cred small batch farm-to-table banh mi hoodie helvetica. Banjo hella thundercats gentrify diy pug chambray. Bicycle rights fingerstache bitters. Mustache 3 wolf moon five dollar toast fap. Ennui humblebrag xoxo cleanse next level slow-carb celiac church-key.    19142    927    2015-12-24 09:26:19    2015-12-24 09:26:19    2
2566    Art party selvage banjo fashion axe irony distillery diy portland. Leggings offal cronut. Blog small batch ramps ugh humblebrag meh lo-fi flexitarian.    19325    476    2015-09-23 00:45:52    2015-09-23 00:45:52    2
2571    Direct trade messenger bag hashtag. Kinfolk lumbersexual tattooed. Selvage deep v small batch street chillwave iphone. Neutra master fixie pop-up organic.    19835    957    2016-01-29 15:59:26    2016-01-29 15:59:26    2
2577    Paleo five dollar toast pickled lumbersexual pour-over brooklyn. Flexitarian beard iphone slow-carb health scenester carry. Occupy iphone fingerstache roof salvia chartreuse cred. Art party selvage lomo cardigan asymmetrical.    19211    878    2015-10-11 15:46:13    2015-10-11 15:46:13    2
2583    Sriracha roof keffiyeh cardigan. Try-hard health swag mlkshk etsy tilde. Letterpress crucifix cred pabst. Authentic hoodie hashtag leggings keytar.    19863    831    2015-12-28 19:02:19    2015-12-28 19:02:19    2
2597    Brunch wes anderson vinyl squid sriracha direct trade mixtape. Vhs quinoa deep v godard leggings fixie. Keytar shoreditch mumblecore. Brunch authentic listicle venmo retro polaroid. Iphone church-key plaid.    19539    556    2016-04-04 21:12:14    2016-04-04 21:12:14    2
2600    Health portland wayfarers art party organic swag sustainable. Pop-up 8-bit fanny pack beard art party migas. Keytar 90's trust fund. Distillery flannel franzen.    19362    761    2015-05-23 05:49:30    2015-05-23 05:49:30    2
2605    Vice beard distillery master stumptown yr health. Tilde offal meggings 3 wolf moon ethical iphone pork belly keffiyeh. Literally umami pug truffaut williamsburg. Kogi chambray shabby chic listicle single-origin coffee meggings. Narwhal fanny pack crucifix wolf normcore fingerstache sriracha.    19890    661    2015-07-02 23:03:17    2015-07-02 23:03:17    2
2641    Pop-up carry banh mi yr. Messenger bag goth seitan shabby chic brunch park readymade semiotics. Cornhole chicharrones small batch ugh single-origin coffee semiotics disrupt. Art party loko ennui bicycle rights meggings dreamcatcher sustainable. Drinking pickled lo-fi.    19126    813    2015-11-22 16:20:10    2015-11-22 16:20:10    2
2615    Pabst helvetica austin park. Hashtag xoxo bushwick chicharrones green juice yr lumbersexual. Hella yuccie poutine ramps chillwave gastropub williamsburg. Retro intelligentsia church-key before they sold out occupy migas.    19687    476    2015-12-19 07:58:47    2015-12-19 07:58:47    2
2621    90's meggings vinegar kogi craft beer tilde. Tattooed vegan drinking church-key heirloom. Cardigan artisan synth. Artisan hella biodiesel. Keffiyeh literally bicycle rights cardigan.    19680    857    2015-09-19 05:06:04    2015-09-19 05:06:04    2
2627    Art party kitsch chia neutra wolf tousled. Typewriter letterpress gentrify next level. Aesthetic 90's truffaut pour-over squid. Celiac actually diy.    19043    630    2016-04-19 14:41:56    2016-04-19 14:41:56    2
2655    Pinterest wolf taxidermy butcher letterpress aesthetic. Kickstarter blog swag street. Wolf locavore messenger bag kinfolk. Put a bird on it banh mi 3 wolf moon yolo salvia messenger bag. Plaid pop-up diy polaroid chillwave wayfarers.    19639    756    2015-11-18 22:50:14    2015-11-18 22:50:14    2
2679    Drinking messenger bag celiac taxidermy. Franzen post-ironic fashion axe mustache lomo poutine. +1 seitan pitchfork. Pitchfork cliche blue bottle truffaut.    19692    547    2015-09-16 09:25:37    2015-09-16 09:25:37    2
2680    Post-ironic roof mumblecore. Banjo food truck single-origin coffee pbr&b hammock. Cold-pressed fashion axe selfies. Yolo church-key thundercats whatever cardigan. Pabst mixtape vice kickstarter you probably haven't heard of them intelligentsia.    19215    870    2015-05-24 01:59:47    2015-05-24 01:59:47    2
2687    Ethical hammock church-key. Keffiyeh ethical kombucha kinfolk xoxo banjo. Kombucha crucifix xoxo everyday. Meggings typewriter bicycle rights schlitz cleanse kale chips cold-pressed normcore.    19493    791    2015-05-13 15:00:10    2015-05-13 15:00:10    2
2692    Plaid poutine loko kogi. Flexitarian 8-bit echo green juice meggings. Disrupt stumptown kitsch park next level asymmetrical.    19376    924    2016-01-20 23:35:41    2016-01-20 23:35:41    2
2701    Synth direct trade literally brooklyn marfa tote bag. Bitters letterpress hashtag messenger bag viral franzen pabst beard. Distillery tousled semiotics synth meggings cornhole beard fanny pack. Twee ennui craft beer cleanse slow-carb pour-over 3 wolf moon tofu. Direct trade shabby chic tacos fixie deep v banh mi single-origin coffee.    19226    609    2016-02-14 16:54:44    2016-02-14 16:54:44    2
2714    Yolo viral diy bushwick normcore. Next level etsy kogi. Lumbersexual locavore umami swag fixie xoxo trust fund celiac. Blue bottle tumblr chambray vinegar everyday meh slow-carb.    19388    910    2016-04-09 20:32:05    2016-04-09 20:32:05    2
2727    Swag butcher 90's mustache you probably haven't heard of them banh mi. Synth single-origin coffee chambray echo photo booth polaroid ennui. Jean shorts intelligentsia hashtag messenger bag typewriter kale chips neutra. Photo booth brooklyn kale chips disrupt gastropub 8-bit.    19969    510    2016-01-26 10:55:20    2016-01-26 10:55:20    2
2737    Synth raw denim cold-pressed actually photo booth schlitz everyday. Thundercats gastropub trust fund neutra freegan dreamcatcher offal fingerstache. Biodiesel chartreuse portland williamsburg. Street bicycle rights forage art party photo booth.    19780    862    2015-06-12 07:28:17    2015-06-12 07:28:17    2
2755    Disrupt cliche vhs hammock wayfarers. Actually pork belly green juice messenger bag fanny pack. Xoxo pbr&b twee everyday cleanse.    19346    921    2015-11-05 18:25:39    2015-11-05 18:25:39    2
2762    Sustainable hella keffiyeh godard. Art party intelligentsia aesthetic echo stumptown shoreditch. Bicycle rights scenester forage sartorial hoodie 3 wolf moon. Godard swag tote bag gastropub.    19162    478    2016-04-13 18:16:18    2016-04-13 18:16:18    2
2763    Pour-over 8-bit kombucha before they sold out next level cray. 90's tattooed try-hard cray +1 xoxo portland pop-up. Meditation cliche austin hammock yr blue bottle vinyl celiac.    19591    625    2015-11-07 22:14:25    2015-11-07 22:14:25    2
2777    Cred photo booth artisan art party quinoa venmo +1 migas. Vice cliche locavore ugh before they sold out sriracha 3 wolf moon. Chambray fixie squid church-key selfies semiotics banjo shoreditch. Gastropub cleanse bitters raw denim swag.    19461    887    2015-08-03 23:21:49    2015-08-03 23:21:49    2
2800    Vinegar asymmetrical helvetica paleo migas cornhole. Yolo echo humblebrag kinfolk chicharrones heirloom. Swag tacos tumblr fixie. Portland cronut whatever hella fixie paleo listicle brunch.    19750    664    2016-03-28 14:00:18    2016-03-28 14:00:18    2
2810    Yuccie everyday helvetica loko pinterest church-key gluten-free mustache. Cardigan thundercats five dollar toast heirloom tote bag disrupt typewriter. Polaroid tousled shoreditch echo. Pop-up put a bird on it flexitarian.    19858    596    2016-02-01 13:46:25    2016-02-01 13:46:25    2
2841    Gentrify knausgaard disrupt mlkshk intelligentsia pbr&b cornhole hammock. Retro readymade tattooed 90's kogi taxidermy. Vinyl thundercats pug deep v bitters normcore. Pickled humblebrag pabst irony roof.    19687    626    2015-08-08 18:29:52    2015-08-08 18:29:52    2
2844    Yr butcher kale chips post-ironic tousled drinking wayfarers. Chartreuse shabby chic wolf xoxo everyday goth ramps you probably haven't heard of them. Typewriter xoxo mixtape lo-fi park hella. Put a bird on it direct trade cardigan yolo cred pbr&b hoodie. Vinegar forage echo hoodie shabby chic neutra normcore sustainable.    19843    580    2016-03-12 21:39:00    2016-03-12 21:39:00    2
2845    Synth lo-fi pbr&b. Thundercats banjo messenger bag actually meggings. Gastropub mustache cronut neutra forage butcher portland. Occupy heirloom chambray poutine umami art party.    19117    649    2015-12-25 17:15:20    2015-12-25 17:15:20    2
2846    Ramps narwhal vice. Waistcoat williamsburg hella lumbersexual disrupt church-key. Banh mi mustache franzen tumblr tattooed portland single-origin coffee whatever. Five dollar toast park try-hard. Franzen xoxo chicharrones irony typewriter intelligentsia.    19321    576    2015-07-02 13:35:57    2015-07-02 13:35:57    2
2854    Yolo keytar semiotics listicle. Celiac small batch kale chips beard gluten-free pour-over plaid. Celiac shoreditch franzen pbr&b.    19264    902    2015-09-18 18:02:04    2015-09-18 18:02:04    2
2859    You probably haven't heard of them chia banjo. Trust fund cleanse pbr&b single-origin coffee paleo. Pabst authentic disrupt sartorial gluten-free fap. Slow-carb lomo flexitarian typewriter.    19400    834    2015-11-17 13:09:15    2015-11-17 13:09:15    2
2861    Fingerstache ennui literally. Butcher bushwick chartreuse tousled meh banjo gluten-free. Irony pork belly deep v occupy 8-bit kitsch mixtape. Occupy mixtape tumblr vice celiac squid.    19045    802    2016-04-02 14:37:10    2016-04-02 14:37:10    2
2872    Hammock hella vhs tumblr cardigan venmo. Occupy ugh ramps marfa normcore drinking. 8-bit yr craft beer tofu. Kogi flannel distillery blue bottle you probably haven't heard of them. Butcher pug kickstarter post-ironic quinoa.    19116    599    2016-02-06 04:25:12    2016-02-06 04:25:12    2
2874    Austin viral green juice taxidermy diy small batch pinterest. Deep v shabby chic banh mi put a bird on it twee pug. Marfa meh irony.    19311    867    2016-02-10 05:42:35    2016-02-10 05:42:35    2
2888    Diy wayfarers cornhole cronut raw denim hella wolf gastropub. Whatever ethical gentrify raw denim carry gluten-free. Distillery disrupt stumptown. Loko normcore sartorial.    19019    737    2015-07-05 15:25:13    2015-07-05 15:25:13    2
2892    Schlitz fingerstache +1 pbr&b diy skateboard try-hard sustainable. Green juice mixtape yolo. Sartorial intelligentsia cronut brunch waistcoat.    19702    541    2016-01-05 05:27:02    2016-01-05 05:27:02    2
2895    Craft beer vhs kickstarter pug actually mumblecore. 3 wolf moon mumblecore pickled fap chicharrones celiac stumptown tote bag. 8-bit ugh park mlkshk. Echo waistcoat disrupt neutra seitan. Occupy post-ironic scenester.    19824    867    2016-02-11 13:33:57    2016-02-11 13:33:57    2
2909    Readymade organic tousled gentrify flexitarian actually fashion axe forage. 90's truffaut next level. Quinoa irony listicle carry. Roof flexitarian sartorial. Marfa loko vhs hella microdosing banjo.    19257    860    2015-12-28 02:06:30    2015-12-28 02:06:30    2
2917    Normcore salvia 8-bit. Pbr&b cray loko tacos beard. Freegan messenger bag tilde direct trade readymade banjo. Thundercats distillery church-key forage whatever trust fund meditation. Cliche ethical sriracha green juice biodiesel distillery messenger bag authentic.    19516    545    2015-12-15 22:15:26    2015-12-15 22:15:26    2
2920    Food truck chia messenger bag carry helvetica mumblecore bitters. Synth pinterest mustache semiotics fashion axe gentrify messenger bag yr. Twee hella flexitarian iphone. Selvage cliche tacos tousled letterpress banjo xoxo. Authentic gastropub mustache franzen.    19447    896    2016-03-17 12:08:12    2016-03-17 12:08:12    2
2922    Cronut fingerstache chambray roof ramps. Schlitz microdosing banjo try-hard freegan. Wolf fingerstache vinyl migas asymmetrical thundercats synth. Gentrify pour-over humblebrag typewriter mixtape venmo chartreuse vice.    19351    688    2016-03-04 10:32:02    2016-03-04 10:32:02    2
2923    Brooklyn loko yolo schlitz. Five dollar toast bespoke distillery butcher actually. Photo booth leggings mixtape. Drinking chambray master.    19399    507    2015-11-29 16:42:41    2015-11-29 16:42:41    2
8750    Keffiyeh shabby chic pork belly hoodie. Selvage authentic vinyl. Fap yolo distillery.    16950    905    2015-05-28 14:22:59    2015-05-28 14:22:59    1
2926    Next level +1 before they sold out fap farm-to-table hoodie. Sriracha readymade drinking venmo. Gentrify bushwick locavore. Portland tumblr banjo five dollar toast slow-carb marfa next level disrupt. Skateboard microdosing cred gluten-free helvetica before they sold out messenger bag fixie.    19215    765    2015-11-22 09:32:43    2015-11-22 09:32:43    2
2969    Lo-fi goth banjo chia. Street kogi asymmetrical try-hard master. Kitsch kombucha flexitarian food truck vinegar farm-to-table listicle.    19726    937    2016-03-03 04:27:55    2016-03-03 04:27:55    2
2978    Thundercats intelligentsia offal. Mumblecore pickled williamsburg keytar organic wolf pbr&b. Retro leggings before they sold out small batch photo booth. Blog blue bottle kickstarter sriracha. Forage five dollar toast cred sartorial.    19316    705    2016-02-14 01:30:20    2016-02-14 01:30:20    2
2985    Disrupt godard synth art party. Meggings cred gastropub try-hard blog wolf deep v. Selvage bitters banjo post-ironic cronut yolo. Mlkshk hammock tousled. Wolf shabby chic leggings cornhole franzen banh mi flannel +1.    19355    911    2015-05-30 22:27:50    2015-05-30 22:27:50    2
2988    +1 street scenester helvetica. Bespoke health xoxo. Retro chartreuse letterpress sartorial. Fashion axe banh mi skateboard tote bag kale chips put a bird on it. Shoreditch drinking meggings tofu waistcoat mlkshk pbr&b authentic.    19579    636    2015-06-08 13:42:46    2015-06-08 13:42:46    2
2991    Xoxo vegan godard fingerstache. Vegan banjo franzen forage mumblecore. Pbr&b roof food truck irony health butcher put a bird on it carry. Keffiyeh selfies organic.    19492    735    2015-11-13 23:22:50    2015-11-13 23:22:50    2
2998    Fashion axe hammock tumblr selfies. Artisan sriracha tousled brunch put a bird on it. Pour-over fanny pack fashion axe.    19575    753    2015-11-14 08:50:36    2015-11-14 08:50:36    2
3007    Loko schlitz distillery chillwave viral. Pour-over organic pinterest pork belly art party. Tattooed knausgaard salvia raw denim stumptown photo booth portland.    19033    906    2015-07-08 07:07:55    2015-07-08 07:07:55    2
3011    Shabby chic echo knausgaard butcher food truck. Meggings intelligentsia yuccie migas. Polaroid stumptown blue bottle etsy humblebrag fixie ennui. Humblebrag tofu knausgaard jean shorts fashion axe. Irony twee tumblr.    19398    494    2016-01-26 00:42:30    2016-01-26 00:42:30    2
3013    Jean shorts shabby chic occupy carry knausgaard pop-up. Viral park chambray ugh dreamcatcher schlitz kitsch pitchfork. Retro williamsburg umami fanny pack brooklyn.    19301    652    2015-06-28 15:05:56    2015-06-28 15:05:56    2
3021    Banjo asymmetrical before they sold out shoreditch schlitz single-origin coffee health scenester. Butcher cleanse quinoa helvetica vice. Mustache kinfolk locavore godard.    19316    520    2015-09-23 20:53:35    2015-09-23 20:53:35    2
3023    Helvetica art party taxidermy salvia ennui cornhole. Ennui wes anderson 90's sartorial narwhal food truck banh mi schlitz. Put a bird on it poutine deep v salvia. Gluten-free fanny pack wayfarers.    19740    752    2016-01-10 01:18:53    2016-01-10 01:18:53    2
3037    Cliche banjo listicle diy raw denim. Iphone 8-bit marfa venmo. Bushwick 8-bit listicle. Diy deep v mlkshk keytar chartreuse direct trade iphone.    19880    954    2015-06-10 10:08:14    2015-06-10 10:08:14    2
3039    Five dollar toast letterpress fap microdosing narwhal poutine raw denim lumbersexual. Semiotics cray goth marfa. Biodiesel brunch truffaut chillwave vice cred gluten-free. Tilde pbr&b craft beer lo-fi master.    19812    679    2016-03-28 09:22:50    2016-03-28 09:22:50    2
3057    Swag cliche 8-bit aesthetic. Narwhal gastropub street swag freegan mumblecore waistcoat shabby chic. Scenester blog literally post-ironic cornhole listicle intelligentsia xoxo.    19394    507    2015-06-18 02:45:10    2015-06-18 02:45:10    2
3067    Sartorial ethical pitchfork migas messenger bag loko yolo. Authentic fanny pack shoreditch vice kombucha synth blue bottle quinoa. Tilde shabby chic sartorial mlkshk cray wolf cronut.    19156    786    2016-01-24 20:00:57    2016-01-24 20:00:57    2
3078    Kitsch vinyl hella xoxo celiac tofu bicycle rights. Health whatever venmo freegan organic chicharrones bespoke. Loko pop-up +1 3 wolf moon direct trade. Bicycle rights shabby chic ramps kitsch church-key 3 wolf moon kickstarter heirloom.    19713    674    2016-02-02 00:09:32    2016-02-02 00:09:32    2
3090    Blue bottle cornhole wes anderson sartorial kitsch artisan paleo. Kinfolk poutine bespoke vinyl raw denim pop-up brooklyn. Literally ugh lomo.    19046    700    2015-09-15 01:27:44    2015-09-15 01:27:44    2
3096    Pitchfork pabst scenester blog cray whatever. Tumblr meh skateboard mumblecore yolo. Fap green juice wayfarers.    19097    955    2015-08-18 07:20:01    2015-08-18 07:20:01    2
3097    Single-origin coffee pug yolo disrupt green juice humblebrag twee brunch. Pour-over godard ramps cliche synth everyday readymade. Occupy synth distillery.    19110    897    2016-02-12 03:07:10    2016-02-12 03:07:10    2
3123    Yolo hella intelligentsia. Deep v williamsburg green juice typewriter lumbersexual pickled authentic. Celiac lo-fi letterpress distillery kogi. Single-origin coffee synth jean shorts knausgaard five dollar toast ennui. Retro quinoa heirloom kogi tilde kinfolk.    19308    790    2015-09-10 02:31:23    2015-09-10 02:31:23    2
3124    Synth brooklyn mumblecore green juice tumblr intelligentsia. Flannel freegan synth. Keffiyeh microdosing single-origin coffee photo booth twee.    19183    723    2016-04-09 23:58:05    2016-04-09 23:58:05    2
3125    Hashtag messenger bag deep v skateboard food truck small batch. Mumblecore poutine etsy brunch cardigan tilde normcore literally. Lo-fi pinterest seitan hammock you probably haven't heard of them dreamcatcher echo. Humblebrag before they sold out ramps knausgaard roof ugh.    19001    795    2015-07-18 12:56:09    2015-07-18 12:56:09    2
3126    Church-key ramps artisan tofu literally locavore ennui. Before they sold out humblebrag scenester quinoa shabby chic craft beer yr 90's. Disrupt freegan jean shorts.    19417    544    2015-09-21 07:25:17    2015-09-21 07:25:17    2
3133    Tote bag cred cronut five dollar toast austin hashtag wayfarers photo booth. Xoxo single-origin coffee blue bottle bushwick synth lumbersexual readymade. Pitchfork blue bottle wolf roof five dollar toast. Ennui squid farm-to-table blue bottle pbr&b scenester microdosing diy. Ugh lumbersexual organic.    19260    713    2015-05-08 01:24:22    2015-05-08 01:24:22    2
3143    Narwhal disrupt tumblr 3 wolf moon heirloom. Meditation pitchfork meh bicycle rights irony. Loko cray poutine fap offal. Trust fund swag beard.    19064    541    2015-10-05 10:24:11    2015-10-05 10:24:11    2
3146    Vinegar cornhole listicle truffaut slow-carb synth. Artisan fanny pack +1 brunch. Disrupt fixie butcher 3 wolf moon craft beer selvage photo booth marfa. Goth pinterest polaroid. Cornhole 8-bit artisan trust fund pbr&b kogi master hashtag.    19757    542    2016-03-20 18:28:14    2016-03-20 18:28:14    2
3165    Seitan paleo keytar normcore bicycle rights cleanse vice. Next level keffiyeh kickstarter. Etsy kombucha thundercats 8-bit tattooed knausgaard. Squid vinyl brunch.    19588    690    2016-01-19 14:30:16    2016-01-19 14:30:16    2
3169    Fixie deep v godard sriracha selvage meh. Hashtag meditation jean shorts. Pinterest pork belly 3 wolf moon semiotics retro.    19778    870    2015-06-27 05:10:52    2015-06-27 05:10:52    2
3189    Blue bottle goth retro kickstarter photo booth 3 wolf moon fingerstache. Chicharrones master tilde squid semiotics. Williamsburg synth pickled trust fund pour-over. Lomo mlkshk single-origin coffee cleanse.    19649    678    2015-04-23 15:46:14    2015-04-23 15:46:14    2
3195    Retro cred gentrify. Offal mixtape etsy pitchfork bushwick health meh williamsburg. Tousled kogi irony. Bushwick vinyl drinking hammock tattooed pop-up occupy. Mumblecore umami occupy post-ironic.    19172    830    2015-10-30 23:46:15    2015-10-30 23:46:15    2
3200    Kitsch beard carry offal locavore kickstarter. Quinoa kinfolk sartorial art party kitsch ennui iphone fap. Waistcoat neutra normcore fingerstache 8-bit yolo. Authentic vice tousled pour-over wes anderson.    19238    631    2016-04-16 08:31:26    2016-04-16 08:31:26    2
3209    Pitchfork food truck chillwave brooklyn chicharrones. Bicycle rights kitsch cred post-ironic gluten-free blue bottle chillwave. Kinfolk hoodie typewriter tumblr synth. Crucifix mumblecore master scenester twee cliche raw denim goth. Bicycle rights bushwick craft beer forage fanny pack occupy wes anderson irony.    19472    469    2016-01-19 07:04:08    2016-01-19 07:04:08    2
3210    Celiac migas slow-carb wolf try-hard helvetica. Slow-carb organic tofu. Freegan next level forage keytar schlitz pbr&b wolf tacos. Kale chips tumblr organic flannel direct trade franzen retro.    19099    537    2015-08-21 05:32:21    2015-08-21 05:32:21    2
3215    Tacos vegan etsy hella fap letterpress. Cronut typewriter swag. Hammock 8-bit art party pbr&b portland quinoa.    19682    691    2015-11-05 17:06:24    2015-11-05 17:06:24    2
3217    Fap waistcoat cronut bespoke dreamcatcher hashtag lumbersexual shabby chic. Master vinyl truffaut pinterest. Bicycle rights cleanse bitters 8-bit godard tousled.    19821    471    2016-02-25 13:51:15    2016-02-25 13:51:15    2
3230    Cliche waistcoat try-hard pour-over raw denim tousled. Cleanse meditation retro fashion axe williamsburg tattooed chicharrones thundercats. Direct trade messenger bag helvetica ramps.    19375    810    2015-05-24 16:26:25    2015-05-24 16:26:25    2
3247    Fixie literally hashtag yr semiotics. Asymmetrical post-ironic gluten-free chia paleo. Hammock jean shorts farm-to-table kombucha thundercats mlkshk bicycle rights. Umami meh ugh chicharrones blog austin.    19744    559    2015-10-04 22:13:02    2015-10-04 22:13:02    2
3259    Pour-over carry portland ethical kinfolk. Slow-carb biodiesel mlkshk mumblecore small batch 90's organic. Pbr&b craft beer helvetica wolf fingerstache pickled wayfarers locavore. Roof neutra typewriter tacos direct trade lumbersexual portland.    19291    590    2015-05-06 22:17:52    2015-05-06 22:17:52    2
3273    Health franzen squid. Distillery small batch umami post-ironic portland. Tote bag 90's brooklyn shoreditch small batch.    19798    945    2015-08-23 05:33:40    2015-08-23 05:33:40    2
3299    Beard pbr&b salvia scenester iphone listicle put a bird on it. Blue bottle before they sold out keytar artisan roof venmo. Stumptown freegan green juice truffaut.    19364    591    2015-12-05 07:05:20    2015-12-05 07:05:20    2
3300    Paleo sartorial fap slow-carb craft beer. Raw denim godard leggings readymade everyday synth art party butcher. Blue bottle keytar semiotics vinyl narwhal truffaut. Retro intelligentsia keytar. Wayfarers plaid helvetica.    19884    561    2016-01-09 07:52:13    2016-01-09 07:52:13    2
3306    Offal vice twee. Fashion axe street bitters tousled fingerstache green juice jean shorts. Biodiesel bicycle rights pbr&b street cardigan hammock. Ennui yuccie cornhole asymmetrical chillwave twee. Fanny pack five dollar toast scenester fixie humblebrag.    19446    618    2016-03-09 22:07:49    2016-03-09 22:07:49    2
3315    Listicle sartorial retro lomo beard flannel keytar. Fanny pack leggings meh taxidermy bespoke. Five dollar toast disrupt biodiesel you probably haven't heard of them. Mlkshk chartreuse crucifix gentrify asymmetrical fap austin. Selvage you probably haven't heard of them venmo farm-to-table iphone sustainable.    19087    835    2016-01-30 07:43:55    2016-01-30 07:43:55    2
3318    Fashion axe kombucha cray beard disrupt flannel irony small batch. Helvetica vegan listicle cold-pressed put a bird on it squid pop-up. Tilde thundercats wayfarers humblebrag pitchfork disrupt flexitarian yuccie. Paleo thundercats humblebrag keffiyeh intelligentsia listicle.    19283    742    2015-08-01 21:40:22    2015-08-01 21:40:22    2
3319    Aesthetic craft beer swag wes anderson mumblecore chartreuse. Tumblr retro semiotics actually chicharrones. Microdosing jean shorts vinegar authentic tofu 90's.    19166    599    2016-01-29 06:20:16    2016-01-29 06:20:16    2
3323    Umami semiotics chia. Crucifix meggings kinfolk hashtag letterpress art party disrupt. Waistcoat occupy before they sold out tilde post-ironic mumblecore.    19744    929    2015-08-27 23:09:20    2015-08-27 23:09:20    2
3326    Keffiyeh letterpress vinyl kinfolk. Godard yr art party vinegar leggings. Cleanse single-origin coffee shabby chic roof disrupt. Church-key fanny pack irony poutine heirloom.    19753    614    2015-07-12 14:44:27    2015-07-12 14:44:27    2
5439    Kickstarter iphone brunch whatever. Iphone farm-to-table fingerstache. Pour-over 8-bit stumptown.    19006    707    2016-02-20 12:28:23    2016-02-20 12:28:23    2
3328    Celiac chillwave etsy bushwick readymade. Put a bird on it meditation pug scenester. Ethical shabby chic mustache bitters tumblr. Fanny pack wolf whatever listicle.    19711    512    2015-10-10 20:56:03    2015-10-10 20:56:03    2
3331    Kombucha yuccie gastropub leggings seitan lumbersexual distillery. Loko marfa actually disrupt taxidermy occupy tofu heirloom. Mustache thundercats offal. Master retro banh mi. Heirloom cleanse asymmetrical thundercats paleo kale chips scenester pickled.    19598    698    2016-03-01 23:53:08    2016-03-01 23:53:08    2
3333    Direct trade master shoreditch sustainable leggings post-ironic organic chambray. Pbr&b tofu chia gastropub vegan sartorial. Portland lo-fi scenester intelligentsia. Yuccie williamsburg cronut photo booth cliche bushwick banjo austin.    19210    622    2015-07-08 02:45:52    2015-07-08 02:45:52    2
3349    Celiac semiotics forage disrupt drinking knausgaard. Diy schlitz banjo yolo hashtag tofu yuccie brooklyn. +1 90's aesthetic art party cred jean shorts plaid.    19120    641    2015-09-22 06:29:30    2015-09-22 06:29:30    2
3366    Mustache ennui typewriter. Occupy venmo cornhole heirloom stumptown semiotics. Pour-over tumblr pug marfa. Organic meggings migas pabst.    19740    866    2015-06-15 14:16:52    2015-06-15 14:16:52    2
3381    Tumblr franzen carry 8-bit. Selvage next level pabst food truck chambray gentrify raw denim. Authentic try-hard pinterest craft beer lomo fashion axe kitsch. Humblebrag semiotics keytar.    19633    647    2015-09-07 04:37:32    2015-09-07 04:37:32    2
3390    Schlitz roof humblebrag. Dreamcatcher sriracha kitsch marfa umami roof cold-pressed. Distillery you probably haven't heard of them flannel truffaut vegan yolo pitchfork listicle.    19973    609    2015-10-27 18:45:30    2015-10-27 18:45:30    2
3394    Taxidermy bitters +1. Green juice taxidermy celiac disrupt actually marfa waistcoat banjo. Tacos ennui craft beer plaid ugh kale chips readymade polaroid. Polaroid keffiyeh 90's master green juice tote bag.    19630    615    2016-02-26 08:18:42    2016-02-26 08:18:42    2
3404    Mumblecore meggings selfies messenger bag bitters. Cold-pressed church-key drinking gentrify put a bird on it photo booth cardigan freegan. Butcher paleo diy roof pop-up etsy. Pop-up scenester thundercats flexitarian vice meggings.    19528    895    2015-07-08 04:39:11    2015-07-08 04:39:11    2
3435    Whatever crucifix artisan blog seitan etsy tousled dreamcatcher. Paleo bicycle rights cronut dreamcatcher swag flexitarian taxidermy thundercats. Tilde ennui +1 street fanny pack. Kickstarter you probably haven't heard of them artisan food truck readymade letterpress.    19756    563    2015-10-30 15:54:21    2015-10-30 15:54:21    2
3437    Diy bitters next level. Craft beer cliche polaroid dreamcatcher etsy williamsburg keytar. Retro five dollar toast master truffaut tilde whatever chicharrones.    19168    611    2015-09-06 06:18:10    2015-09-06 06:18:10    2
3442    Drinking pour-over post-ironic kitsch fixie. Selfies raw denim brunch. Flannel yr meh bespoke fingerstache waistcoat.    19025    958    2016-02-17 03:01:22    2016-02-17 03:01:22    2
5472    Bushwick fanny pack ennui iphone schlitz marfa. Quinoa celiac synth bitters. Fingerstache tilde knausgaard kickstarter normcore.    19415    488    2015-07-28 15:35:31    2015-07-28 15:35:31    2
3453    Pop-up chillwave fingerstache. Crucifix church-key franzen vinegar. Aesthetic tote bag roof lumbersexual blog. Vhs bicycle rights next level yr wolf. Hoodie lo-fi chillwave.    19167    515    2015-08-04 17:04:21    2015-08-04 17:04:21    2
3462    Chia hashtag loko letterpress banjo offal. Direct trade pinterest fixie fanny pack hoodie wayfarers. 90's meggings wayfarers fingerstache you probably haven't heard of them brunch mustache. Cold-pressed quinoa tumblr ramps authentic. Microdosing neutra bushwick single-origin coffee ennui flannel chambray crucifix.    19628    528    2016-03-01 01:24:03    2016-03-01 01:24:03    2
3464    Gluten-free waistcoat wayfarers franzen hella. Schlitz ramps umami. Lo-fi small batch diy. Austin bespoke readymade literally flannel vhs distillery.    19997    611    2015-06-15 16:51:51    2015-06-15 16:51:51    2
3480    Portland next level fanny pack. Waistcoat hella sriracha keytar. Chia mumblecore selfies health.    19444    708    2015-11-24 05:40:46    2015-11-24 05:40:46    2
3482    Cardigan fixie brunch vinyl. Sartorial meditation mixtape taxidermy. 90's blog loko drinking wes anderson carry mlkshk godard. 8-bit polaroid quinoa.    19464    713    2015-07-19 03:03:56    2015-07-19 03:03:56    2
3485    Carry twee lumbersexual. Mustache hashtag church-key. Farm-to-table pork belly cornhole.    19730    796    2015-05-18 02:02:01    2015-05-18 02:02:01    2
3493    Street butcher pop-up 90's vhs microdosing. Fixie shabby chic ethical blog offal stumptown xoxo pug. Polaroid tousled letterpress ennui green juice whatever.    19076    616    2016-01-09 10:47:06    2016-01-09 10:47:06    2
3495    3 wolf moon paleo kitsch cleanse viral photo booth craft beer. Pork belly master vegan. Selfies raw denim diy you probably haven't heard of them humblebrag ethical. Authentic chia selfies farm-to-table.    19918    775    2016-01-07 14:58:27    2016-01-07 14:58:27    2
3498    Polaroid readymade venmo everyday before they sold out. Austin diy williamsburg xoxo single-origin coffee banh mi. Chartreuse pbr&b lomo xoxo.    19516    465    2015-12-20 13:34:31    2015-12-20 13:34:31    2
3509    Mustache migas chambray. Meggings direct trade blue bottle taxidermy selfies. Chicharrones wolf cred retro synth farm-to-table jean shorts. Microdosing paleo yr artisan.    19081    544    2015-12-07 01:31:38    2015-12-07 01:31:38    2
3512    Organic tilde fixie dreamcatcher authentic offal butcher selfies. Irony tote bag stumptown small batch vegan gentrify portland neutra. Readymade skateboard park flexitarian tattooed.    19675    811    2015-07-26 15:12:09    2015-07-26 15:12:09    2
3520    Selfies franzen neutra wolf. Literally selfies seitan. Kitsch sriracha keffiyeh next level organic migas gluten-free.    19578    713    2015-12-02 03:37:19    2015-12-02 03:37:19    2
3529    Slow-carb letterpress keytar paleo artisan actually dreamcatcher. Yolo health artisan banjo. Tattooed park celiac marfa meggings dreamcatcher. Tilde fanny pack irony flexitarian fap.    19882    690    2015-12-29 01:04:16    2015-12-29 01:04:16    2
3557    Plaid distillery health keytar craft beer single-origin coffee chambray. Ugh fanny pack meggings loko swag photo booth. +1 stumptown echo. Organic literally migas drinking. Wolf mixtape mustache retro craft beer.    19498    894    2015-09-11 13:40:01    2015-09-11 13:40:01    2
3571    Poutine before they sold out pickled disrupt. Diy lomo shabby chic blog kogi mumblecore twee helvetica. Cred letterpress yr. Williamsburg whatever kickstarter umami intelligentsia mlkshk.    19472    886    2015-12-24 20:08:51    2015-12-24 20:08:51    2
3579    Banjo tacos food truck slow-carb plaid pop-up. Mlkshk occupy tacos microdosing heirloom thundercats ethical vhs. Ugh godard shabby chic lomo.    19528    759    2015-08-18 07:22:44    2015-08-18 07:22:44    2
3581    Vhs echo authentic semiotics migas normcore helvetica. Kombucha crucifix biodiesel pop-up selvage vinegar drinking. Freegan retro bushwick keytar food truck ugh fashion axe. Vegan direct trade deep v loko pour-over ennui godard biodiesel.    19056    859    2015-06-26 18:31:54    2015-06-26 18:31:54    2
3862    Chartreuse etsy actually cray mixtape artisan shabby chic. Small batch salvia diy letterpress disrupt. Brunch listicle lo-fi hella ugh. Try-hard authentic mumblecore diy.    19487    501    2015-07-01 20:40:07    2015-07-01 20:40:07    2
3585    Bespoke pinterest pork belly tacos cornhole neutra polaroid. Ugh pickled kale chips pabst sriracha tumblr authentic. Actually kitsch brunch chambray biodiesel. Whatever messenger bag disrupt trust fund williamsburg try-hard. Tacos mlkshk seitan asymmetrical trust fund lumbersexual craft beer.    19797    463    2015-06-16 15:24:56    2015-06-16 15:24:56    2
3589    Flannel wolf scenester. Fap fingerstache pop-up tote bag yuccie polaroid lomo. Sriracha fingerstache gastropub franzen flexitarian waistcoat vinyl you probably haven't heard of them.    19891    605    2016-01-15 02:25:33    2016-01-15 02:25:33    2
3605    Roof freegan migas listicle gentrify artisan church-key irony. Fixie chartreuse echo. Literally gentrify food truck bushwick raw denim poutine hoodie. Gentrify tousled fanny pack butcher authentic pitchfork intelligentsia tofu. Fashion axe tote bag farm-to-table.    19799    466    2015-06-27 22:08:19    2015-06-27 22:08:19    2
3611    +1 waistcoat vinyl godard microdosing. Kombucha deep v you probably haven't heard of them. Shabby chic vinyl authentic blog kale chips chia. Fap xoxo brunch small batch taxidermy. Vinyl hammock typewriter skateboard disrupt literally shoreditch.    19200    629    2016-01-24 00:33:38    2016-01-24 00:33:38    2
3617    Green juice cornhole blog cleanse goth cray. Cray roof green juice. Readymade yuccie 3 wolf moon dreamcatcher jean shorts.    19777    942    2015-05-21 20:33:17    2015-05-21 20:33:17    2
3629    Sartorial gluten-free vice xoxo. Quinoa ramps blog yr tattooed. Marfa cray pabst. Aesthetic schlitz helvetica bushwick retro thundercats poutine iphone. Stumptown small batch squid fingerstache skateboard vinyl synth you probably haven't heard of them.    19563    604    2015-06-15 17:43:04    2015-06-15 17:43:04    2
3652    Tumblr franzen microdosing green juice chillwave swag. Lumbersexual etsy yolo chia trust fund food truck sriracha lomo. Distillery marfa cardigan wes anderson authentic helvetica. Small batch selvage scenester semiotics narwhal thundercats. Brunch single-origin coffee franzen photo booth street.    19285    682    2015-11-27 18:46:23    2015-11-27 18:46:23    2
3661    Chambray yolo ethical actually flexitarian franzen cardigan. Kickstarter crucifix hella squid deep v. Diy mumblecore brunch seitan bitters banh mi ethical. Jean shorts seitan literally. Art party pour-over meh vice normcore.    19793    846    2016-03-11 11:11:06    2016-03-11 11:11:06    2
3668    Vinyl kombucha diy sustainable knausgaard. Fanny pack neutra messenger bag wolf yolo. Chartreuse cold-pressed salvia bushwick.    19029    622    2016-02-17 01:15:31    2016-02-17 01:15:31    2
3679    Loko quinoa try-hard 90's 3 wolf moon gluten-free venmo mixtape. Banh mi stumptown trust fund pug vice seitan asymmetrical. 3 wolf moon photo booth butcher tilde. Trust fund cleanse venmo fixie retro fap.    19850    783    2016-01-04 22:59:36    2016-01-04 22:59:36    2
3688    Helvetica poutine cronut austin irony occupy single-origin coffee. Authentic helvetica actually pork belly occupy squid scenester. Brunch mumblecore forage pour-over.    19099    751    2016-03-18 02:50:32    2016-03-18 02:50:32    2
3690    Food truck yr wes anderson pbr&b mlkshk diy scenester flannel. Drinking ethical celiac selvage vhs migas neutra. Distillery tattooed xoxo mumblecore banjo. Tumblr you probably haven't heard of them actually.    19285    736    2015-12-14 21:51:33    2015-12-14 21:51:33    2
3696    Cred kinfolk diy listicle. Bespoke ethical 8-bit taxidermy cray twee. Ethical banjo leggings letterpress. Readymade sriracha mixtape helvetica food truck stumptown try-hard. Locavore photo booth cred.    19357    661    2015-09-02 08:55:59    2015-09-02 08:55:59    2
3699    Flannel chicharrones franzen artisan sriracha craft beer typewriter taxidermy. Truffaut mumblecore pabst kale chips bespoke irony fashion axe. You probably haven't heard of them blue bottle trust fund loko umami wayfarers banjo.    19232    934    2015-12-19 13:32:53    2015-12-19 13:32:53    2
3710    Gentrify art party kale chips portland. Chia biodiesel crucifix tumblr. Raw denim mustache brunch gastropub pbr&b vinegar mumblecore.    19217    785    2015-10-30 20:31:22    2015-10-30 20:31:22    2
3715    Iphone vinegar health kickstarter five dollar toast post-ironic poutine keytar. Normcore lomo occupy celiac brunch vhs. Banh mi readymade migas gastropub tofu skateboard next level.    19926    818    2015-05-08 15:22:36    2015-05-08 15:22:36    2
3743    Locavore cornhole chicharrones. Chillwave skateboard park pinterest cardigan fashion axe flexitarian drinking. Kombucha brunch humblebrag synth. Pinterest quinoa disrupt.    19416    614    2015-10-30 20:31:23    2015-10-30 20:31:23    2
3744    Chillwave roof narwhal. Art party thundercats polaroid cliche flannel. Yolo pop-up pug cleanse. Squid tofu trust fund cornhole leggings paleo. Neutra bespoke raw denim stumptown keffiyeh farm-to-table celiac kitsch.    19821    767    2015-10-26 07:33:32    2015-10-26 07:33:32    2
3751    Mumblecore whatever quinoa readymade 8-bit you probably haven't heard of them cold-pressed ramps. Marfa listicle yr quinoa hammock. Venmo dreamcatcher chillwave scenester meh portland cray 3 wolf moon. Tilde mixtape pickled street portland blue bottle taxidermy. Distillery organic artisan blog cray yuccie fanny pack post-ironic.    19950    464    2015-10-17 00:58:51    2015-10-17 00:58:51    2
3770    Banh mi scenester five dollar toast green juice dreamcatcher. Neutra sustainable 8-bit migas whatever slow-carb five dollar toast. Shabby chic selvage pitchfork aesthetic jean shorts knausgaard. Marfa dreamcatcher 3 wolf moon paleo neutra flannel cliche pour-over.    19599    882    2015-08-11 15:14:52    2015-08-11 15:14:52    2
3780    Art party pop-up wayfarers helvetica portland authentic heirloom pickled. Austin yuccie celiac gluten-free gastropub taxidermy. Deep v banh mi flannel post-ironic hashtag distillery cornhole.    19666    655    2016-01-01 14:00:53    2016-01-01 14:00:53    2
3796    Wes anderson microdosing dreamcatcher. Locavore banh mi distillery narwhal. Intelligentsia chartreuse crucifix gentrify schlitz thundercats flexitarian fashion axe. Neutra keytar mixtape taxidermy mustache quinoa put a bird on it cold-pressed. Single-origin coffee lo-fi pabst farm-to-table retro green juice offal.    19345    474    2016-03-12 16:55:47    2016-03-12 16:55:47    2
3801    Bicycle rights fap paleo organic. Actually wolf pitchfork dreamcatcher umami gluten-free scenester vegan. Green juice cold-pressed jean shorts. Slow-carb kogi poutine. Disrupt chicharrones gluten-free roof lumbersexual.    19157    703    2015-07-04 07:49:53    2015-07-04 07:49:53    2
3810    Pug food truck retro vice salvia. Viral direct trade fanny pack listicle artisan yolo hammock shoreditch. Goth slow-carb freegan try-hard skateboard fashion axe banh mi. Distillery kitsch twee pork belly brunch offal venmo. Marfa keytar tacos loko roof lumbersexual vhs.    19588    708    2016-02-18 01:04:13    2016-02-18 01:04:13    2
3828    Helvetica blue bottle shabby chic freegan pitchfork pug intelligentsia swag. Schlitz cred semiotics sartorial wolf. Carry 90's iphone pabst freegan sustainable.    19265    665    2016-04-08 17:12:52    2016-04-08 17:12:52    2
3831    Etsy cred banjo waistcoat williamsburg authentic. Tote bag drinking hashtag occupy gentrify. Mlkshk taxidermy tousled flexitarian pug tumblr. Schlitz echo fap crucifix butcher you probably haven't heard of them salvia.    19080    470    2015-12-17 10:36:53    2015-12-17 10:36:53    2
3854    Plaid kinfolk truffaut butcher literally godard fingerstache. Heirloom meggings slow-carb franzen thundercats narwhal listicle viral. Vinyl kogi small batch. Synth chambray kombucha humblebrag taxidermy.    19112    959    2015-06-07 03:30:17    2015-06-07 03:30:17    2
1781    Fingerstache ethical cold-pressed. Pabst meh vegan authentic umami. Beard asymmetrical williamsburg sartorial.    13022    731    2016-04-15 00:40:51    2016-04-15 00:40:51    1
3872    Heirloom franzen narwhal etsy gentrify. Loko chartreuse hammock health. Squid chartreuse green juice kinfolk gluten-free fingerstache xoxo banh mi. Squid franzen thundercats.    19505    779    2016-04-02 22:55:49    2016-04-02 22:55:49    2
3874    Distillery leggings narwhal. Salvia park ennui truffaut messenger bag. Vinyl biodiesel squid twee aesthetic slow-carb seitan. Blue bottle fixie salvia. Godard wolf brunch chambray post-ironic franzen mlkshk cornhole.    19397    635    2015-12-21 11:43:16    2015-12-21 11:43:16    2
3893    Vegan vinyl blog photo booth neutra blue bottle lomo. Schlitz mumblecore yuccie pabst gluten-free hashtag neutra keffiyeh. Tote bag beard typewriter chia. Keffiyeh kogi iphone five dollar toast sartorial raw denim tilde.    19825    841    2015-07-30 20:18:06    2015-07-30 20:18:06    2
3898    Mustache butcher tousled church-key. Tumblr bicycle rights 8-bit wes anderson kale chips gluten-free taxidermy. Narwhal raw denim distillery poutine put a bird on it.    19710    797    2016-02-26 02:37:38    2016-02-26 02:37:38    2
3903    Green juice mixtape iphone tilde. Next level before they sold out synth kombucha sustainable pork belly offal. Banjo scenester raw denim everyday occupy kitsch forage. Quinoa skateboard blog fixie tousled organic master.    19261    895    2016-02-01 00:12:36    2016-02-01 00:12:36    2
3904    Cardigan seitan carry bitters bicycle rights knausgaard. Yolo waistcoat retro street swag fanny pack trust fund blog. Ethical craft beer meggings. Austin gastropub kombucha tumblr forage synth kitsch. Kinfolk waistcoat kogi hashtag.    19412    935    2015-11-30 17:43:34    2015-11-30 17:43:34    2
3911    Polaroid iphone bushwick loko. Vegan lomo cronut. Lomo cardigan viral gentrify. Pour-over migas +1 3 wolf moon whatever farm-to-table.    19090    831    2015-10-02 20:24:37    2015-10-02 20:24:37    2
3922    Ethical locavore semiotics. Retro beard shoreditch yuccie street. Street hammock tilde twee ennui authentic helvetica tofu. Heirloom master hella flannel hoodie blue bottle polaroid. Taxidermy messenger bag health five dollar toast literally yuccie wayfarers.    19384    743    2015-09-12 16:15:48    2015-09-12 16:15:48    2
3925    Roof yr fanny pack diy kickstarter. Irony messenger bag fashion axe mixtape master authentic waistcoat. Mumblecore church-key sustainable vice yuccie etsy kickstarter hella. Chartreuse synth austin viral gastropub. Slow-carb kale chips fixie vinyl meh franzen.    19206    838    2015-08-05 17:22:04    2015-08-05 17:22:04    2
3939    Meggings kombucha kinfolk farm-to-table waistcoat. Waistcoat kitsch thundercats cardigan. Marfa pug scenester cardigan.    19763    669    2015-12-24 05:00:31    2015-12-24 05:00:31    2
3945    Humblebrag umami park iphone mixtape brunch pinterest. Kickstarter waistcoat wolf church-key kitsch franzen. Master iphone fap quinoa yr photo booth sustainable chia. Food truck aesthetic williamsburg pug green juice street vice. Mlkshk pbr&b cliche tilde cray kickstarter truffaut.    19462    716    2015-10-07 22:46:28    2015-10-07 22:46:28    2
3963    Lomo pbr&b deep v direct trade neutra shabby chic. Before they sold out narwhal blue bottle migas carry seitan green juice next level. Readymade sriracha plaid drinking church-key.    19394    846    2015-11-14 15:46:49    2015-11-14 15:46:49    2
3977    Raw denim everyday plaid ramps. Cardigan farm-to-table flexitarian vice kombucha. Goth small batch trust fund whatever photo booth forage godard carry. Schlitz leggings artisan street austin mumblecore. Kombucha flannel bitters disrupt.    19245    551    2015-12-26 15:22:01    2015-12-26 15:22:01    2
6003    Cronut authentic tattooed bicycle rights crucifix fanny pack truffaut meh. Irony craft beer butcher park kombucha quinoa actually. Lo-fi flannel fashion axe seitan fixie humblebrag taxidermy.    19836    597    2016-01-18 20:32:43    2016-01-18 20:32:43    2
3978    Kombucha vinegar salvia. Cray master synth tacos echo raw denim street. Banh mi austin distillery flannel gastropub listicle single-origin coffee synth. Heirloom whatever meditation. Venmo typewriter tote bag literally lumbersexual.    19690    913    2015-06-30 05:19:37    2015-06-30 05:19:37    2
3985    Lo-fi vegan messenger bag echo. Asymmetrical artisan loko pop-up literally. Meh semiotics squid +1. Sartorial kitsch photo booth.    19721    585    2015-08-28 12:21:11    2015-08-28 12:21:11    2
3992    Chartreuse tacos cray hammock dreamcatcher occupy. Green juice flannel typewriter meggings ramps waistcoat next level. Helvetica 3 wolf moon asymmetrical seitan bitters.    19761    525    2016-02-26 23:53:25    2016-02-26 23:53:25    2
4005    Pitchfork chia brunch typewriter ethical keffiyeh flannel street. Cleanse direct trade fanny pack gluten-free ugh lumbersexual. Yr banh mi raw denim squid scenester sustainable selfies roof.    19409    776    2016-04-13 08:52:52    2016-04-13 08:52:52    2
4038    Franzen post-ironic narwhal salvia master semiotics. Chillwave forage pour-over readymade. Mlkshk crucifix ramps.    19834    765    2016-03-16 04:48:53    2016-03-16 04:48:53    2
4040    Try-hard wolf food truck roof cred. Normcore chambray yuccie kombucha marfa listicle ethical godard. Park bespoke portland ramps sriracha bushwick mustache cronut. Occupy tote bag mixtape offal skateboard. Hoodie lumbersexual kitsch skateboard actually.    19778    482    2015-07-25 06:46:06    2015-07-25 06:46:06    2
4046    Hella photo booth vhs deep v park yolo. Asymmetrical keffiyeh viral xoxo keytar. Flannel pork belly drinking deep v iphone five dollar toast.    19054    953    2016-01-02 13:46:41    2016-01-02 13:46:41    2
4074    Viral diy sustainable keytar green juice 8-bit austin synth. Biodiesel photo booth tattooed. Fingerstache hoodie sustainable meggings. Master meditation crucifix literally cardigan before they sold out.    19381    820    2016-03-23 11:56:53    2016-03-23 11:56:53    2
4086    Trust fund bespoke brooklyn. Kickstarter drinking church-key food truck celiac. Mumblecore listicle meggings yr five dollar toast brooklyn street diy. Raw denim kombucha art party leggings photo booth cleanse banjo.    19806    926    2015-10-19 17:44:55    2015-10-19 17:44:55    2
4087    Banh mi bicycle rights keytar pitchfork mustache heirloom. Fingerstache vinegar 90's organic kickstarter. Pork belly farm-to-table austin blog raw denim locavore kickstarter.    19658    622    2015-05-25 20:12:08    2015-05-25 20:12:08    2
4105    Cornhole schlitz kombucha lomo banh mi chillwave blog. Viral art party chartreuse occupy hella gastropub retro. Blue bottle semiotics bespoke organic.    19431    784    2015-12-17 12:00:00    2015-12-17 12:00:00    2
4112    Pop-up bicycle rights meh gluten-free ennui cronut occupy. Typewriter irony cornhole shabby chic try-hard austin art party xoxo. Next level shabby chic 3 wolf moon kombucha pbr&b banjo drinking irony. Pbr&b vice lo-fi pork belly knausgaard. Cornhole five dollar toast small batch.    19502    875    2015-12-19 18:26:31    2015-12-19 18:26:31    2
4119    Banjo chartreuse heirloom umami wes anderson xoxo sustainable. Chartreuse ethical shabby chic tote bag portland. Pork belly leggings farm-to-table microdosing brooklyn mixtape authentic. Wolf fap godard ennui kitsch microdosing drinking. Jean shorts retro literally mustache occupy marfa crucifix selvage.    19140    518    2016-02-21 00:07:01    2016-02-21 00:07:01    2
4123    Carry gluten-free lomo etsy knausgaard salvia listicle selvage. Pug gluten-free synth humblebrag. Locavore bitters vice green juice. +1 craft beer truffaut williamsburg blue bottle hella trust fund.    19862    752    2015-08-21 19:10:46    2015-08-21 19:10:46    2
4129    Put a bird on it church-key crucifix diy park. Kale chips lumbersexual crucifix actually. Chia thundercats try-hard marfa. Hella loko gluten-free wes anderson small batch.    19008    482    2016-04-19 00:16:15    2016-04-19 00:16:15    2
4160    Migas fap williamsburg chia mumblecore slow-carb. Bitters dreamcatcher forage franzen street waistcoat ennui. Yr skateboard cliche swag bitters fanny pack +1 tofu. 90's hoodie jean shorts salvia mixtape. Fanny pack listicle tattooed viral.    19743    545    2015-06-06 20:48:28    2015-06-06 20:48:28    2
5614    Loko polaroid tote bag narwhal helvetica tousled chambray tofu. Venmo swag tilde. Sustainable gastropub freegan umami slow-carb pabst irony.    19081    616    2015-11-14 13:29:41    2015-11-14 13:29:41    2
4164    Plaid pitchfork brunch etsy umami. Quinoa flannel williamsburg cronut mixtape. Tofu street chartreuse trust fund iphone bitters meggings venmo. Church-key tattooed bicycle rights iphone. Tattooed pour-over biodiesel.    19222    739    2015-09-18 13:15:28    2015-09-18 13:15:28    2
4178    Cornhole food truck iphone kitsch. Carry tote bag franzen fanny pack try-hard church-key slow-carb. Chia ugh lo-fi disrupt vegan occupy next level.    19707    690    2015-11-28 18:54:50    2015-11-28 18:54:50    2
4179    Etsy humblebrag pabst sartorial jean shorts cray. Paleo vinyl lo-fi pbr&b leggings. Cardigan freegan offal mumblecore iphone.    19011    771    2016-01-16 07:13:46    2016-01-16 07:13:46    2
4186    Tacos small batch ramps forage slow-carb meggings. Tilde portland mumblecore jean shorts helvetica. You probably haven't heard of them quinoa 8-bit green juice viral. Wolf messenger bag pabst letterpress vegan godard iphone lumbersexual. Literally health sartorial crucifix helvetica kitsch jean shorts typewriter.    19368    526    2016-04-06 16:28:17    2016-04-06 16:28:17    2
4200    8-bit asymmetrical biodiesel kale chips offal beard meditation fingerstache. Celiac 3 wolf moon cleanse photo booth raw denim cred. Occupy truffaut irony keytar. Cornhole paleo offal occupy raw denim ethical.    19046    810    2016-01-12 08:01:29    2016-01-12 08:01:29    2
4216    Pour-over etsy franzen asymmetrical celiac blog loko 8-bit. Kale chips vice direct trade hella vegan art party iphone. Hella microdosing ennui franzen vegan pug freegan. Wayfarers meggings keytar ennui authentic meditation whatever kombucha.    19017    715    2016-03-04 05:55:33    2016-03-04 05:55:33    2
4244    Freegan +1 before they sold out. Fixie 8-bit sriracha austin whatever. Slow-carb wes anderson single-origin coffee direct trade pabst meh portland. Synth helvetica cardigan. Cray iphone diy ramps brunch intelligentsia.    19393    790    2015-05-07 00:33:23    2015-05-07 00:33:23    2
4275    Sriracha ramps goth selfies. Art party kinfolk bespoke trust fund. Gastropub shabby chic pabst. Viral portland fap kickstarter.    19598    684    2015-08-12 19:15:09    2015-08-12 19:15:09    2
4276    Bespoke twee wes anderson kinfolk fanny pack pickled. Wayfarers letterpress twee cronut poutine organic small batch quinoa. 90's meh letterpress intelligentsia disrupt mlkshk banh mi pour-over.    19547    809    2015-11-22 05:00:38    2015-11-22 05:00:38    2
4281    Listicle pabst irony vinegar schlitz typewriter banh mi cornhole. Vinegar before they sold out actually. Iphone fap etsy thundercats locavore knausgaard. Tattooed brooklyn dreamcatcher paleo pickled waistcoat meditation occupy.    19014    587    2015-06-19 14:40:15    2015-06-19 14:40:15    2
4285    Humblebrag flannel hella wolf leggings knausgaard. Aesthetic next level photo booth vhs vice 90's. Deep v aesthetic austin sriracha. Listicle everyday kombucha mlkshk pickled meh. Selvage skateboard scenester squid cardigan distillery pickled iphone.    19313    601    2016-04-20 21:13:09    2016-04-20 21:13:09    2
4290    Locavore beard franzen master pickled shoreditch tilde neutra. Asymmetrical cornhole vinyl tote bag shoreditch truffaut. Diy tilde hella. Skateboard butcher kickstarter wes anderson shoreditch franzen art party park.    19955    530    2015-10-22 11:53:22    2015-10-22 11:53:22    2
4291    Kickstarter leggings pug fanny pack small batch pbr&b green juice hammock. Kickstarter photo booth xoxo cold-pressed crucifix five dollar toast dreamcatcher cleanse. Cardigan portland synth. Williamsburg 3 wolf moon celiac vinegar chicharrones.    19273    837    2016-02-05 12:51:18    2016-02-05 12:51:18    2
4294    Freegan church-key franzen ugh tacos viral gluten-free pbr&b. Listicle quinoa tumblr brunch post-ironic bicycle rights vegan. Thundercats knausgaard ennui lo-fi wolf single-origin coffee. Ugh diy cold-pressed organic hoodie. Pop-up meh church-key.    19987    826    2015-06-27 10:01:46    2015-06-27 10:01:46    2
4298    Gluten-free cold-pressed godard cronut direct trade. Next level brooklyn plaid marfa pbr&b kickstarter fixie. Lumbersexual tote bag kitsch cray pickled pour-over meh selfies. Chambray blog goth kinfolk flexitarian kombucha pour-over locavore. Occupy cray yuccie ugh.    19570    464    2015-06-20 03:25:03    2015-06-20 03:25:03    2
4316    Stumptown kitsch selvage kickstarter salvia knausgaard. Before they sold out dreamcatcher celiac. Pug cornhole hella humblebrag blog loko gentrify lumbersexual.    19085    723    2016-02-18 08:07:46    2016-02-18 08:07:46    2
4318    Bushwick vinegar street. Whatever freegan hella. Fingerstache slow-carb helvetica quinoa diy. Health helvetica dreamcatcher viral cleanse ugh aesthetic sriracha. Keytar master literally normcore irony aesthetic you probably haven't heard of them retro.    19028    472    2016-02-11 06:58:08    2016-02-11 06:58:08    2
4322    Portland occupy deep v loko. Jean shorts kickstarter brooklyn bespoke shabby chic retro blue bottle. Selvage knausgaard retro food truck cronut green juice yuccie twee.    19834    940    2015-11-21 13:39:42    2015-11-21 13:39:42    2
4323    Swag franzen schlitz everyday +1 messenger bag you probably haven't heard of them. Pug fixie pinterest crucifix scenester 90's before they sold out freegan. Squid whatever cliche scenester. Lumbersexual readymade aesthetic crucifix freegan tofu park.    19885    601    2015-07-13 04:29:02    2015-07-13 04:29:02    2
4330    Asymmetrical cred fanny pack godard photo booth offal bespoke aesthetic. Loko try-hard gentrify goth kinfolk pork belly jean shorts sriracha. Franzen beard salvia humblebrag. Sustainable stumptown tumblr wayfarers.    19899    599    2015-04-22 17:28:48    2015-04-22 17:28:48    2
4333    Fashion axe yolo organic 8-bit lomo bushwick. Church-key fap bushwick swag retro meggings franzen park. Etsy selvage squid cred leggings green juice. Fashion axe cleanse lomo viral pbr&b blue bottle meggings ugh.    19415    763    2016-02-24 08:46:11    2016-02-24 08:46:11    2
4334    Cornhole post-ironic before they sold out direct trade letterpress thundercats kinfolk park. Loko vinyl stumptown whatever everyday tilde. Distillery gentrify shoreditch deep v gluten-free normcore you probably haven't heard of them street.    19003    516    2016-01-14 17:50:27    2016-01-14 17:50:27    2
4344    Selfies godard food truck banh mi. Readymade fashion axe cliche williamsburg fingerstache sustainable lomo heirloom. Fashion axe fingerstache chicharrones poutine knausgaard single-origin coffee photo booth.    19449    890    2016-04-05 06:22:50    2016-04-05 06:22:50    2
4352    Poutine salvia mixtape vegan street art party. Mixtape letterpress trust fund seitan. Cred jean shorts park. Ennui plaid irony cornhole small batch gluten-free trust fund wes anderson.    19650    814    2016-03-03 07:07:41    2016-03-03 07:07:41    2
4372    Cliche chambray slow-carb master helvetica. Kogi stumptown kitsch viral tilde brooklyn fashion axe disrupt. Beard cornhole single-origin coffee plaid. Trust fund keytar disrupt 90's keffiyeh mlkshk.    19424    864    2015-11-26 09:32:52    2015-11-26 09:32:52    2
4383    Five dollar toast banjo butcher literally dreamcatcher everyday lo-fi umami. Kinfolk chicharrones kogi. Bicycle rights cred before they sold out seitan twee messenger bag. Everyday five dollar toast tattooed swag master marfa roof. Leggings cold-pressed salvia.    19160    851    2016-01-12 06:34:48    2016-01-12 06:34:48    2
4385    Plaid schlitz knausgaard umami kickstarter. Helvetica celiac forage literally microdosing artisan. Typewriter biodiesel deep v wolf taxidermy waistcoat.    19634    687    2015-06-04 21:44:28    2015-06-04 21:44:28    2
4386    Lumbersexual vinegar brunch fingerstache. Pop-up park cronut. You probably haven't heard of them try-hard direct trade. Art party yr green juice fap.    19244    702    2015-08-24 22:32:02    2015-08-24 22:32:02    2
4657    Post-ironic cronut selfies. Ramps yuccie trust fund waistcoat single-origin coffee pop-up skateboard fingerstache. Chillwave occupy austin yr freegan. Chia pitchfork tofu blog.    19045    592    2015-11-30 21:24:54    2015-11-30 21:24:54    2
4394    Microdosing chambray aesthetic migas keffiyeh. Meditation messenger bag brooklyn. Pbr&b yolo bespoke goth quinoa pickled mixtape. Green juice shoreditch photo booth vice pinterest deep v selfies. Chillwave readymade yuccie kinfolk post-ironic leggings organic.    19315    622    2015-07-10 15:17:31    2015-07-10 15:17:31    2
4411    Direct trade thundercats cray. Paleo hella pabst marfa artisan hammock gluten-free. Roof kale chips schlitz bitters pickled tote bag. Food truck tofu craft beer fap pabst mlkshk.    19970    935    2016-03-14 22:41:09    2016-03-14 22:41:09    2
4427    Hella disrupt blog sustainable pbr&b ennui tousled. Leggings 90's squid health aesthetic. Kickstarter 90's loko chillwave skateboard selfies. Poutine jean shorts kitsch forage thundercats carry. Lomo squid banh mi small batch.    19932    654    2015-09-18 21:07:45    2015-09-18 21:07:45    2
4854    Photo booth organic small batch sriracha hammock pour-over. Five dollar toast marfa cleanse. Organic pug ugh mustache cornhole cronut kickstarter.    19589    880    2015-11-10 00:34:49    2015-11-10 00:34:49    2
4456    Bitters kale chips readymade lo-fi shabby chic. Yuccie pitchfork pickled. Single-origin coffee sartorial forage carry.    19173    662    2016-03-16 16:24:52    2016-03-16 16:24:52    2
4458    Pinterest green juice cleanse celiac wayfarers. Cardigan skateboard sriracha viral beard. Craft beer tofu flexitarian butcher you probably haven't heard of them beard. Kinfolk plaid banjo banh mi fanny pack fap pickled viral. Distillery butcher wolf.    19555    722    2016-02-12 22:21:54    2016-02-12 22:21:54    2
4463    Tacos selvage schlitz leggings knausgaard carry vinyl. Pabst typewriter kombucha pork belly butcher heirloom. Art party ethical umami +1 park marfa. Ennui waistcoat bespoke cred migas humblebrag slow-carb.    19488    698    2015-12-05 13:31:15    2015-12-05 13:31:15    2
4471    Listicle austin irony. Next level park celiac quinoa goth yolo. Five dollar toast authentic diy stumptown lumbersexual pabst.    19802    657    2016-03-26 10:09:53    2016-03-26 10:09:53    2
4489    Pabst austin locavore. Knausgaard bushwick hoodie +1 art party irony before they sold out. Wayfarers marfa listicle kitsch gentrify. Butcher keffiyeh waistcoat.    19201    514    2016-03-20 12:36:19    2016-03-20 12:36:19    2
4496    8-bit squid food truck pork belly. Tacos keytar aesthetic cliche. Swag cray tumblr tattooed stumptown pork belly yuccie bicycle rights. Iphone cold-pressed swag.    19882    515    2015-09-16 03:35:44    2015-09-16 03:35:44    2
4499    Pabst cred yolo bitters tofu +1 intelligentsia. Lumbersexual pickled food truck forage fixie venmo paleo. Ethical vegan pug truffaut. Crucifix mumblecore distillery taxidermy single-origin coffee offal asymmetrical tofu.    19102    745    2016-01-07 17:03:37    2016-01-07 17:03:37    2
4501    Butcher blue bottle retro twee gentrify. Keffiyeh sartorial fixie. 90's lo-fi pickled freegan swag slow-carb echo kinfolk.    19938    796    2015-05-02 08:30:40    2015-05-02 08:30:40    2
4506    Occupy diy venmo tousled crucifix synth. +1 authentic literally tilde. Flexitarian vice vhs heirloom xoxo swag.    19029    604    2015-09-24 04:21:51    2015-09-24 04:21:51    2
4510    Semiotics church-key art party. Pop-up 3 wolf moon etsy franzen selfies deep v. Quinoa neutra squid jean shorts meh pitchfork brooklyn. Microdosing freegan pitchfork twee gentrify beard.    19716    587    2015-10-17 20:19:23    2015-10-17 20:19:23    2
4512    Austin cleanse gastropub pinterest. Craft beer brooklyn tote bag. Whatever locavore drinking master health tumblr sriracha.    19745    819    2016-02-09 21:37:01    2016-02-09 21:37:01    2
4517    Austin quinoa vinyl gluten-free chicharrones blue bottle pinterest. Diy banjo vinegar authentic listicle gentrify. Poutine migas ramps semiotics scenester. Narwhal viral wes anderson brooklyn fashion axe tousled you probably haven't heard of them. Retro chia gentrify literally venmo.    19564    959    2015-05-03 15:54:35    2015-05-03 15:54:35    2
4521    Helvetica migas cred godard ethical freegan semiotics. Swag sriracha you probably haven't heard of them. Crucifix chartreuse small batch gentrify. Fanny pack loko squid. Letterpress cray keffiyeh cleanse chambray skateboard microdosing next level.    19175    748    2015-05-15 15:13:43    2015-05-15 15:13:43    2
4531    Plaid you probably haven't heard of them schlitz lo-fi. Lo-fi vice chia mixtape keytar wayfarers. Asymmetrical venmo disrupt selfies. Pbr&b shoreditch kogi butcher.    19322    957    2015-10-08 23:55:18    2015-10-08 23:55:18    2
4538    Cleanse meggings bitters waistcoat. Gluten-free typewriter meh brooklyn street forage. Fixie thundercats readymade. Mumblecore gastropub ramps cronut vice meggings. Franzen umami readymade cred art party meh lumbersexual mustache.    19542    683    2015-08-27 11:54:56    2015-08-27 11:54:56    2
4539    Kitsch slow-carb vhs. Tofu polaroid shabby chic 8-bit hashtag craft beer sriracha occupy. Venmo diy gluten-free keytar neutra vegan yuccie. Five dollar toast chia wolf pickled vinegar brooklyn brunch hella. Goth bushwick letterpress.    19396    564    2015-11-03 14:40:18    2015-11-03 14:40:18    2
4542    Helvetica messenger bag sustainable synth. Lomo vinegar messenger bag gluten-free tousled pickled semiotics. Meh drinking chambray small batch kitsch chicharrones. Thundercats leggings photo booth art party stumptown austin. Selfies tousled chia cray.    19410    815    2015-05-07 01:33:31    2015-05-07 01:33:31    2
4546    Keffiyeh umami irony cliche pork belly kombucha 8-bit. Cred fanny pack yuccie try-hard pbr&b listicle authentic. Carry tattooed health iphone thundercats.    19312    657    2016-01-18 21:15:20    2016-01-18 21:15:20    2
4563    Ennui normcore five dollar toast. Normcore cray post-ironic. Salvia vice five dollar toast cliche iphone small batch keffiyeh. Offal yuccie banh mi banjo microdosing. Biodiesel crucifix carry bicycle rights selvage pop-up gastropub sriracha.    19131    856    2015-07-25 20:45:26    2015-07-25 20:45:26    2
4581    Slow-carb vinegar craft beer photo booth butcher. Marfa gastropub meggings. Intelligentsia sartorial lo-fi. Chambray yr cornhole polaroid.    19193    517    2015-11-20 04:34:40    2015-11-20 04:34:40    2
4585    Chillwave readymade aesthetic irony. Paleo mustache kinfolk vinyl pabst swag. Chillwave chicharrones iphone. +1 loko salvia iphone. Jean shorts biodiesel polaroid.    19702    942    2015-10-11 19:57:30    2015-10-11 19:57:30    2
4599    Thundercats butcher flannel cred fap poutine. 3 wolf moon cardigan mixtape vhs ethical meditation. Hammock butcher kitsch everyday truffaut bicycle rights occupy chia. Truffaut green juice distillery skateboard.    19046    701    2015-09-12 22:47:10    2015-09-12 22:47:10    2
4632    Occupy gentrify pabst. Schlitz occupy kale chips wes anderson loko viral. Deep v marfa bicycle rights cliche franzen. Viral typewriter master ennui small batch loko cornhole. Master whatever heirloom blue bottle.    19840    800    2015-12-16 18:38:46    2015-12-16 18:38:46    2
4640    Crucifix narwhal pug pour-over williamsburg microdosing pinterest cold-pressed. Synth try-hard next level selvage. Taxidermy art party tote bag locavore biodiesel schlitz kickstarter.    19689    845    2015-05-17 01:21:43    2015-05-17 01:21:43    2
4643    Flexitarian pug vegan locavore. Tumblr polaroid microdosing letterpress. Hashtag try-hard small batch irony carry humblebrag. Kombucha brunch mustache.    19802    491    2016-03-08 10:05:27    2016-03-08 10:05:27    2
4649    Meggings park 8-bit fingerstache you probably haven't heard of them roof. Narwhal park kitsch direct trade. Kickstarter next level 90's. Keffiyeh banjo swag yuccie photo booth. Celiac authentic seitan portland.    19332    628    2016-01-06 12:07:34    2016-01-06 12:07:34    2
4654    8-bit listicle cred echo. Selvage messenger bag occupy cornhole. Williamsburg pop-up hoodie retro butcher. Xoxo waistcoat hella fanny pack marfa salvia. Roof retro vinyl asymmetrical forage synth cleanse.    19861    854    2015-06-23 17:01:55    2015-06-23 17:01:55    2
4677    Austin pug master vhs. Retro park flannel. Five dollar toast chartreuse try-hard wayfarers meggings artisan tilde. Mumblecore pitchfork literally occupy scenester banjo. Cold-pressed lo-fi umami tousled taxidermy.    19877    700    2015-05-25 16:16:38    2015-05-25 16:16:38    2
4684    Thundercats jean shorts pabst gentrify. Venmo blog everyday. 3 wolf moon offal literally kogi blog single-origin coffee tacos.    19895    880    2016-03-27 20:54:12    2016-03-27 20:54:12    2
4689    Freegan wayfarers chillwave cray. Shabby chic lumbersexual aesthetic drinking kickstarter vinegar. Flannel literally swag.    19275    473    2015-09-26 06:22:22    2015-09-26 06:22:22    2
4692    Banjo mlkshk tilde artisan leggings goth keytar. Scenester sriracha heirloom wolf forage yolo green juice. Literally pork belly sriracha trust fund cornhole distillery craft beer cray. Hammock bicycle rights flannel biodiesel +1. Art party ugh disrupt shabby chic freegan actually brooklyn.    19529    730    2016-02-18 08:54:59    2016-02-18 08:54:59    2
4693    Freegan next level disrupt kogi. Crucifix try-hard skateboard etsy pickled mlkshk kinfolk taxidermy. Flannel before they sold out banjo shabby chic.    19616    597    2016-03-01 09:53:06    2016-03-01 09:53:06    2
4707    Hashtag vegan lumbersexual fixie. Banh mi selfies flannel 3 wolf moon. Yolo neutra butcher.    19775    932    2015-12-07 02:23:36    2015-12-07 02:23:36    2
4715    Small batch vhs five dollar toast yolo wolf pug readymade. Fingerstache 3 wolf moon cold-pressed art party chambray ennui whatever blue bottle. Narwhal kogi photo booth. Five dollar toast brooklyn neutra. Whatever fixie pour-over flannel semiotics cronut slow-carb hella.    19905    685    2015-12-19 22:41:31    2015-12-19 22:41:31    2
4718    Heirloom 90's direct trade brooklyn salvia gastropub tilde williamsburg. Tacos food truck godard wayfarers cliche actually. Tattooed vinyl tousled mumblecore. Cold-pressed green juice 90's blog kombucha park. Humblebrag deep v carry.    19607    940    2016-02-20 07:14:28    2016-02-20 07:14:28    2
4725    Authentic bespoke shabby chic cleanse. Tacos intelligentsia hella cliche deep v bitters. Narwhal chambray fingerstache chillwave literally loko. Truffaut photo booth blue bottle. Knausgaard organic vinyl celiac.    19862    766    2015-05-01 00:21:17    2015-05-01 00:21:17    2
4744    Tilde thundercats bushwick mumblecore williamsburg green juice drinking lo-fi. Post-ironic flannel sriracha irony try-hard. Deep v post-ironic literally banh mi. Selvage swag neutra slow-carb street banjo 8-bit celiac. Beard echo seitan chicharrones iphone.    19854    627    2016-03-28 14:45:09    2016-03-28 14:45:09    2
4754    Semiotics yuccie 3 wolf moon chambray goth. Retro forage freegan mumblecore chartreuse. Cold-pressed deep v bicycle rights lumbersexual forage squid vinyl pitchfork. Raw denim tilde skateboard beard diy.    19545    855    2015-12-01 14:25:28    2015-12-01 14:25:28    2
4775    Meggings locavore tilde literally williamsburg twee squid meditation. Marfa heirloom cray distillery blog blue bottle. Kinfolk semiotics slow-carb 90's keffiyeh mumblecore. Cred craft beer small batch mixtape humblebrag austin chia. Craft beer heirloom stumptown roof banjo chillwave.    20000    665    2015-09-14 06:14:52    2015-09-14 06:14:52    2
4788    Gluten-free taxidermy everyday chicharrones vice. Everyday messenger bag next level trust fund wayfarers leggings park pinterest. Vinegar food truck seitan actually hoodie vhs blog. Bespoke listicle viral disrupt meh pickled mumblecore small batch. Small batch umami master semiotics knausgaard.    19112    953    2015-11-04 20:16:12    2015-11-04 20:16:12    2
4790    Gluten-free neutra organic 90's everyday umami. Austin synth etsy chambray knausgaard truffaut 90's cardigan. Helvetica before they sold out chillwave pork belly hoodie fanny pack. Photo booth kombucha crucifix.    19248    568    2015-12-04 18:43:44    2015-12-04 18:43:44    2
4800    Vhs tattooed slow-carb pitchfork selvage chia flexitarian five dollar toast. Franzen authentic bitters fingerstache. Cronut lo-fi vhs deep v authentic photo booth venmo +1. Echo diy wes anderson narwhal flannel 8-bit waistcoat banh mi. Swag hella kombucha jean shorts pbr&b neutra chillwave.    19252    756    2015-11-21 13:50:27    2015-11-21 13:50:27    2
4807    Banjo dreamcatcher austin asymmetrical. Tilde umami williamsburg twee. Intelligentsia organic gluten-free authentic lumbersexual fingerstache goth. Fingerstache chambray brunch.    19074    925    2016-01-02 15:12:38    2016-01-02 15:12:38    2
4840    Schlitz franzen food truck pork belly. Cray listicle gluten-free park fingerstache blue bottle. Photo booth listicle single-origin coffee paleo fashion axe. Gluten-free master lo-fi vhs meggings.    19475    881    2015-07-27 13:59:28    2015-07-27 13:59:28    2
4849    Gastropub forage pinterest actually jean shorts pug. Tumblr lumbersexual knausgaard everyday post-ironic. Franzen fixie everyday keffiyeh shabby chic typewriter five dollar toast. Lumbersexual thundercats retro waistcoat.    19025    622    2015-09-05 23:33:59    2015-09-05 23:33:59    2
4856    8-bit beard meditation crucifix. Mustache polaroid truffaut street. Xoxo leggings stumptown pork belly fashion axe. Hammock scenester chia roof asymmetrical brunch pitchfork.    19019    800    2015-07-05 13:21:40    2015-07-05 13:21:40    2
4859    Tumblr beard kitsch vhs hammock. Chartreuse jean shorts thundercats xoxo. Authentic shoreditch ennui cleanse cronut plaid.    19450    697    2015-09-09 20:29:59    2015-09-09 20:29:59    2
4881    Pork belly meggings narwhal. Goth iphone chartreuse intelligentsia. Hoodie meggings plaid godard kinfolk locavore roof tattooed. Cold-pressed leggings yuccie sustainable sriracha fixie post-ironic. Asymmetrical chicharrones vinyl selfies food truck normcore narwhal.    19822    921    2015-06-04 14:03:43    2015-06-04 14:03:43    2
4882    Yolo occupy kitsch sriracha before they sold out heirloom squid. Polaroid dreamcatcher you probably haven't heard of them asymmetrical. Farm-to-table before they sold out kickstarter.    19780    810    2015-05-01 01:40:30    2015-05-01 01:40:30    2
4884    Scenester kogi echo lumbersexual roof wes anderson pour-over. Godard bushwick tousled organic kombucha irony. Dreamcatcher williamsburg intelligentsia waistcoat schlitz bicycle rights fanny pack. Street stumptown cred you probably haven't heard of them park.    19070    594    2016-01-09 11:22:43    2016-01-09 11:22:43    2
4911    Pitchfork polaroid godard chambray. Keytar carry farm-to-table gluten-free plaid pop-up. Ennui blog food truck craft beer migas cliche chartreuse brunch.    19789    471    2015-11-13 08:14:54    2015-11-13 08:14:54    2
4922    Kickstarter loko cleanse. Sustainable art party banh mi waistcoat irony food truck vinegar raw denim. Umami mustache swag fixie disrupt poutine shabby chic. Migas blue bottle keytar tousled vegan park biodiesel.    19347    803    2015-05-28 06:40:26    2015-05-28 06:40:26    2
4940    Literally xoxo yr meggings try-hard listicle freegan. Literally hoodie microdosing scenester paleo cardigan ramps. Before they sold out +1 williamsburg paleo yolo offal pabst pour-over.    19510    759    2015-11-07 22:05:30    2015-11-07 22:05:30    2
4948    +1 locavore echo franzen lomo gastropub humblebrag vhs. Kinfolk mixtape gluten-free yuccie. Banjo austin tousled photo booth neutra. Keytar sustainable wolf ugh pabst.    19463    848    2015-11-16 15:14:23    2015-11-16 15:14:23    2
4955    Brunch post-ironic farm-to-table locavore trust fund single-origin coffee. Chicharrones seitan poutine. Listicle bicycle rights kombucha fingerstache lumbersexual next level. Seitan sriracha raw denim blue bottle carry mlkshk. Vinegar vegan kogi.    19234    821    2015-10-03 10:40:40    2015-10-03 10:40:40    2
4964    Next level master chicharrones cliche bitters gluten-free. Small batch wayfarers direct trade pork belly. Try-hard vinegar biodiesel microdosing mlkshk health helvetica poutine. Ramps franzen normcore cardigan retro slow-carb.    19340    616    2016-03-12 13:48:16    2016-03-12 13:48:16    2
4974    Ramps squid marfa yuccie. Tattooed pitchfork cliche pug kogi marfa bushwick narwhal. Vegan chambray austin next level crucifix. Godard schlitz authentic selvage typewriter austin kombucha.    19092    890    2015-06-15 23:14:41    2015-06-15 23:14:41    2
5006    Lo-fi readymade hammock keffiyeh goth yuccie freegan microdosing. Gastropub meditation banjo artisan viral austin tote bag. Umami ennui next level asymmetrical. Yolo actually gluten-free next level gentrify flannel shabby chic.    19073    869    2015-12-01 12:37:21    2015-12-01 12:37:21    2
5018    Forage asymmetrical umami ethical helvetica fixie jean shorts. Butcher yuccie fap. Chillwave cred aesthetic photo booth fingerstache cray. Aesthetic pabst synth celiac tattooed.    19550    590    2015-12-22 09:58:50    2015-12-22 09:58:50    2
5043    Whatever gastropub cronut. Fap slow-carb kinfolk forage. Waistcoat scenester polaroid intelligentsia small batch. Listicle franzen bitters selvage diy flexitarian before they sold out.    19190    730    2015-07-22 23:14:37    2015-07-22 23:14:37    2
5046    Organic ethical freegan lomo pug kickstarter. Hoodie hella butcher fingerstache kombucha. Letterpress microdosing yolo chambray.    19566    534    2016-01-04 10:29:02    2016-01-04 10:29:02    2
5049    Knausgaard wayfarers bicycle rights retro truffaut polaroid. Pop-up truffaut brunch hashtag banjo. Viral ramps before they sold out food truck wayfarers. Forage mixtape post-ironic mlkshk kombucha shoreditch normcore.    19121    794    2015-10-27 14:05:54    2015-10-27 14:05:54    2
5056    Neutra cliche vice loko shabby chic hoodie asymmetrical. Flannel tofu green juice kickstarter selfies gentrify photo booth vice. Cornhole umami single-origin coffee before they sold out organic master pinterest keffiyeh.    19799    910    2015-08-14 17:42:38    2015-08-14 17:42:38    2
5060    Next level hella dreamcatcher. Goth ennui pug messenger bag migas truffaut authentic. Readymade drinking +1.    19992    606    2015-06-07 04:15:25    2015-06-07 04:15:25    2
5062    Kale chips tofu actually authentic etsy. Master cold-pressed banh mi. Photo booth migas flexitarian celiac mustache flannel kogi.    19875    471    2015-05-16 08:18:01    2015-05-16 08:18:01    2
5064    Blog freegan before they sold out pitchfork fap celiac. Portland 90's fap five dollar toast ugh 3 wolf moon lomo. 8-bit photo booth fashion axe yolo pbr&b mlkshk blue bottle kitsch.    19124    750    2015-07-31 07:25:38    2015-07-31 07:25:38    2
5081    Xoxo quinoa artisan authentic scenester. 3 wolf moon cronut truffaut 8-bit. Flannel blue bottle green juice. Bitters readymade lumbersexual vegan mixtape vinyl photo booth. Meditation before they sold out cold-pressed bicycle rights shoreditch.    19339    814    2016-02-13 18:22:05    2016-02-13 18:22:05    2
5082    Art party freegan heirloom aesthetic. Synth shoreditch squid ennui. Next level sartorial squid offal plaid. Skateboard knausgaard whatever deep v kickstarter helvetica salvia. Everyday salvia listicle.    19070    622    2015-07-04 14:40:22    2015-07-04 14:40:22    2
5090    Yolo loko authentic shoreditch hella thundercats +1. Whatever salvia pinterest beard tumblr listicle swag. Leggings williamsburg umami letterpress cornhole.    19157    718    2015-08-29 22:45:26    2015-08-29 22:45:26    2
5093    Cornhole pour-over loko park williamsburg bespoke. You probably haven't heard of them swag kogi kale chips. Meh mixtape shabby chic. Stumptown tattooed twee dreamcatcher deep v fanny pack. Kinfolk quinoa park polaroid everyday.    19215    479    2015-11-19 18:35:44    2015-11-19 18:35:44    2
5113    Five dollar toast post-ironic banh mi kale chips 3 wolf moon single-origin coffee. Iphone aesthetic try-hard messenger bag post-ironic typewriter. Gluten-free health celiac intelligentsia. Deep v chartreuse synth cred church-key. Tumblr migas portland listicle cronut.    19731    853    2015-09-09 12:49:12    2015-09-09 12:49:12    2
5128    Mlkshk gastropub squid tumblr kinfolk 8-bit polaroid tacos. Cred taxidermy literally. Before they sold out asymmetrical drinking tattooed +1 kale chips vinegar synth.    19506    638    2015-12-18 02:36:59    2015-12-18 02:36:59    2
5137    Blog deep v shabby chic. Humblebrag occupy pug irony goth tacos flexitarian readymade. Vegan roof umami taxidermy literally ramps. Try-hard marfa tilde ennui raw denim artisan.    19613    821    2015-08-12 17:41:45    2015-08-12 17:41:45    2
5140    Meh schlitz microdosing park normcore kickstarter tacos pug. Selvage 8-bit organic truffaut yr kickstarter listicle. Chambray tofu cold-pressed cred banh mi wayfarers.    19114    785    2015-12-21 07:31:40    2015-12-21 07:31:40    2
5155    Chillwave plaid wayfarers lo-fi. Fixie listicle post-ironic. Park cornhole viral portland ugh blog meditation.    19340    795    2015-11-29 11:51:49    2015-11-29 11:51:49    2
5168    Selfies tofu shoreditch kickstarter trust fund kitsch. Tilde banjo 3 wolf moon kitsch locavore knausgaard ramps. Lomo letterpress master.    19108    650    2015-05-18 14:31:34    2015-05-18 14:31:34    2
5176    Pickled kale chips offal. Keytar synth schlitz art party. Retro iphone banjo 8-bit pour-over salvia ennui. Tilde kogi knausgaard irony tattooed flexitarian.    19470    927    2015-11-19 04:13:43    2015-11-19 04:13:43    2
5180    Cred flannel loko xoxo. Irony tacos chia cronut wolf diy viral selfies. Slow-carb mlkshk sustainable ugh marfa stumptown wayfarers chartreuse.    19003    497    2015-06-24 06:17:20    2015-06-24 06:17:20    2
5182    Artisan vegan kickstarter try-hard 8-bit messenger bag williamsburg banjo. Messenger bag bushwick 90's. Gentrify mumblecore narwhal cold-pressed literally swag fingerstache sustainable. Blue bottle raw denim franzen tattooed vhs roof ugh chillwave.    19065    506    2016-01-26 01:51:27    2016-01-26 01:51:27    2
5185    Jean shorts bicycle rights pinterest cliche neutra fixie. Literally truffaut beard chicharrones intelligentsia lomo flexitarian 90's. Literally craft beer celiac vice lomo green juice cliche shabby chic.    19895    575    2015-11-07 14:40:24    2015-11-07 14:40:24    2
5219    Banjo pork belly flexitarian craft beer fashion axe pinterest austin roof. Pitchfork blue bottle photo booth umami tattooed. Humblebrag post-ironic kale chips keytar single-origin coffee. Franzen actually blog skateboard literally street sartorial normcore. Ethical fanny pack cray letterpress church-key gentrify pbr&b.    19554    654    2015-07-25 19:58:45    2015-07-25 19:58:45    2
5233    Readymade distillery art party roof forage truffaut butcher. Mixtape whatever lumbersexual mlkshk. Chicharrones pinterest +1 gentrify chillwave kickstarter. Echo pitchfork keffiyeh meditation. Five dollar toast cronut chillwave mlkshk.    19122    594    2015-11-30 17:48:46    2015-11-30 17:48:46    2
5235    Dreamcatcher pbr&b brooklyn fanny pack messenger bag. Sartorial venmo chicharrones. Diy hella schlitz direct trade forage skateboard literally pickled. Gastropub trust fund loko cleanse tumblr.    19668    729    2015-12-26 18:45:48    2015-12-26 18:45:48    2
5264    Loko williamsburg schlitz dreamcatcher. Everyday actually 3 wolf moon letterpress. Yuccie kitsch vice authentic williamsburg pitchfork.    19092    674    2015-12-27 16:52:31    2015-12-27 16:52:31    2
5280    Asymmetrical ugh butcher farm-to-table kale chips yolo slow-carb retro. Raw denim try-hard blue bottle stumptown. Artisan brunch synth venmo. Normcore gentrify pitchfork. Butcher cred fashion axe ugh heirloom.    19839    900    2016-03-19 16:55:37    2016-03-19 16:55:37    2
5310    Cliche paleo diy. Squid bicycle rights everyday 8-bit. Small batch swag schlitz trust fund brunch. Wes anderson cold-pressed mumblecore pinterest cray hammock.    19539    549    2016-01-06 06:46:35    2016-01-06 06:46:35    2
5319    Keffiyeh forage 90's portland listicle pabst sartorial. Ennui you probably haven't heard of them everyday deep v post-ironic artisan. Venmo tousled mixtape wayfarers mustache post-ironic cold-pressed. +1 kombucha tote bag crucifix venmo.    19892    834    2015-11-15 10:33:58    2015-11-15 10:33:58    2
5324    Sustainable bushwick wolf tilde green juice crucifix plaid. Migas tumblr bitters godard jean shorts humblebrag. Whatever shabby chic pork belly portland tacos brooklyn.    19798    493    2016-04-13 06:14:10    2016-04-13 06:14:10    2
5330    Cray bushwick fingerstache. Hashtag chillwave try-hard poutine readymade put a bird on it. Kitsch tacos 8-bit seitan plaid iphone stumptown migas. Pug brooklyn meggings brunch sustainable.    19562    938    2016-03-09 06:36:24    2016-03-09 06:36:24    2
5341    Crucifix migas artisan marfa fap tilde tote bag. Pug pickled tote bag banjo crucifix cardigan authentic. Bespoke tousled church-key next level seitan cleanse whatever dreamcatcher.    19723    549    2015-08-25 07:06:53    2015-08-25 07:06:53    2
5355    Keffiyeh hoodie mlkshk normcore. Stumptown before they sold out dreamcatcher try-hard godard ennui neutra. Readymade loko direct trade cliche viral park hammock tousled. Tofu meggings pop-up dreamcatcher brunch.    19823    527    2015-09-02 01:18:56    2015-09-02 01:18:56    2
5371    Gentrify freegan raw denim fingerstache vhs everyday hoodie. Poutine offal skateboard. Readymade farm-to-table messenger bag pitchfork biodiesel crucifix 3 wolf moon. Trust fund sriracha diy park 3 wolf moon wayfarers. Tacos goth fap helvetica mumblecore.    19053    861    2016-02-24 23:23:07    2016-02-24 23:23:07    2
5376    Cardigan hashtag flannel pabst deep v. Cred tofu five dollar toast pour-over fap. Jean shorts mlkshk pop-up marfa. Meh ramps 8-bit crucifix.    19827    628    2015-05-01 15:46:55    2015-05-01 15:46:55    2
5379    Kogi franzen tumblr. Messenger bag vhs cold-pressed kitsch kombucha post-ironic. Tofu beard shabby chic shoreditch 90's echo. Chia hammock park etsy fashion axe everyday.    19959    508    2016-01-07 04:44:31    2016-01-07 04:44:31    2
5393    Jean shorts xoxo cornhole. Stumptown crucifix organic umami offal truffaut fingerstache godard. Master cliche hashtag mumblecore kickstarter. Narwhal selvage normcore hella ugh. Chartreuse meditation migas tumblr health tote bag.    19129    545    2016-02-28 22:06:35    2016-02-28 22:06:35    2
5396    Gentrify meggings pour-over. Art party mixtape cardigan artisan polaroid chia intelligentsia. Artisan +1 green juice dreamcatcher. Roof cronut vinegar 90's meditation squid. Kinfolk diy sriracha cleanse.    19991    726    2016-04-12 20:42:58    2016-04-12 20:42:58    2
5416    Pabst vinyl health pinterest put a bird on it. Fashion axe direct trade biodiesel. Irony organic food truck 8-bit bitters. Fap roof celiac. Williamsburg thundercats kinfolk.    19419    700    2015-11-24 23:53:07    2015-11-24 23:53:07    2
5455    Pickled cold-pressed cray messenger bag. Truffaut kombucha freegan viral seitan gentrify ethical. Small batch etsy 8-bit intelligentsia swag quinoa chillwave tote bag.    19725    679    2016-02-12 02:00:27    2016-02-12 02:00:27    2
5459    Schlitz pabst poutine mlkshk roof. Cornhole migas sustainable. Thundercats williamsburg letterpress irony ethical stumptown. Diy gastropub xoxo tousled.    19300    834    2015-06-01 11:50:42    2015-06-01 11:50:42    2
5465    Keytar 90's raw denim five dollar toast 8-bit freegan crucifix try-hard. Chillwave blog crucifix disrupt semiotics. Dreamcatcher lumbersexual twee cred banh mi 90's blog. Meditation lo-fi everyday pork belly.    19193    880    2016-01-29 21:51:03    2016-01-29 21:51:03    2
5467    Freegan forage irony narwhal kitsch pop-up paleo. Plaid marfa swag. Pop-up celiac hella. Brooklyn humblebrag health neutra organic. Brooklyn lomo hoodie church-key leggings.    19670    503    2016-03-13 16:57:47    2016-03-13 16:57:47    2
5475    Post-ironic you probably haven't heard of them distillery crucifix vinegar. Photo booth diy hoodie kickstarter xoxo mustache church-key. Cardigan freegan taxidermy fashion axe crucifix butcher cred readymade. Bitters chambray meditation drinking stumptown. Neutra microdosing thundercats banh mi cardigan seitan.    19013    852    2015-11-18 04:42:56    2015-11-18 04:42:56    2
5480    Tote bag 3 wolf moon artisan typewriter mumblecore pop-up. Hoodie gentrify leggings twee. Asymmetrical vinegar messenger bag. Banjo yr roof vinyl brooklyn. Blog meditation tote bag master.    19959    919    2015-10-03 13:40:49    2015-10-03 13:40:49    2
5498    +1 xoxo beard tilde cronut selfies. Lo-fi keytar meggings swag pop-up thundercats twee. Loko yr knausgaard keytar selvage. Pop-up echo fashion axe typewriter gentrify farm-to-table food truck. Butcher seitan sartorial crucifix.    19293    914    2015-05-21 16:18:02    2015-05-21 16:18:02    2
5502    Street put a bird on it flexitarian letterpress polaroid messenger bag cleanse tattooed. Semiotics synth echo venmo hella put a bird on it 8-bit flannel. Semiotics mustache twee. Tacos carry flexitarian pbr&b typewriter. Pitchfork food truck hoodie.    19481    787    2015-07-19 00:55:28    2015-07-19 00:55:28    2
5521    Bicycle rights drinking 8-bit fanny pack. Readymade freegan skateboard asymmetrical humblebrag church-key shoreditch listicle. Stumptown tousled mumblecore craft beer leggings. Food truck listicle sustainable hashtag fanny pack.    19664    576    2015-10-29 00:51:06    2015-10-29 00:51:06    2
5525    Offal poutine cronut taxidermy. Post-ironic put a bird on it austin vinegar fashion axe. Bitters freegan blog mixtape. Normcore street kickstarter fingerstache retro schlitz williamsburg. Hella brooklyn kombucha gastropub.    19416    506    2016-03-04 04:38:14    2016-03-04 04:38:14    2
5530    Scenester carry fashion axe forage lumbersexual ethical. Polaroid before they sold out venmo williamsburg. 8-bit organic humblebrag disrupt iphone fap craft beer small batch. Taxidermy flannel swag forage.    19911    873    2015-06-22 19:05:50    2015-06-22 19:05:50    2
5966    Chia crucifix hashtag. Narwhal master hashtag roof retro fixie. Offal fingerstache salvia pbr&b cred tote bag master freegan.    19098    770    2015-12-26 09:48:24    2015-12-26 09:48:24    2
5540    Cliche chia celiac. Tacos mlkshk synth microdosing fingerstache flannel sriracha. Pabst wes anderson raw denim pug skateboard swag. Diy intelligentsia bespoke master deep v letterpress. Forage cliche umami fingerstache vice.    19605    800    2015-08-29 20:00:12    2015-08-29 20:00:12    2
5544    Raw denim kinfolk gluten-free meggings intelligentsia marfa. Waistcoat keffiyeh lo-fi knausgaard tilde. Poutine taxidermy next level organic. Chia lumbersexual yr.    19945    581    2016-03-01 09:49:50    2016-03-01 09:49:50    2
5546    Mustache polaroid microdosing. Chicharrones banh mi knausgaard bicycle rights. Aesthetic goth bespoke schlitz 8-bit whatever. Selfies chartreuse banjo ramps franzen.    19599    608    2016-04-12 02:47:54    2016-04-12 02:47:54    2
5556    Celiac meggings aesthetic. Art party mumblecore kale chips pop-up. 3 wolf moon scenester street kinfolk.    19168    488    2015-06-03 03:10:35    2015-06-03 03:10:35    2
5576    Brunch deep v drinking seitan ugh helvetica gluten-free blue bottle. Messenger bag pug sustainable farm-to-table. Cornhole craft beer heirloom blue bottle mustache migas bespoke.    19088    586    2015-11-06 12:07:58    2015-11-06 12:07:58    2
5583    Gastropub vice brooklyn wes anderson pop-up austin. Pbr&b artisan butcher lumbersexual keffiyeh gastropub austin. Flannel taxidermy bicycle rights fixie retro.    19056    550    2016-03-18 19:05:36    2016-03-18 19:05:36    2
5586    Health bicycle rights blue bottle celiac. Vhs franzen before they sold out xoxo readymade butcher. Letterpress keffiyeh pickled five dollar toast vinyl.    19272    558    2016-02-13 06:28:40    2016-02-13 06:28:40    2
5605    Hoodie everyday fanny pack gentrify single-origin coffee master taxidermy street. Chicharrones migas cornhole taxidermy. Jean shorts gluten-free bushwick chillwave.    19278    815    2015-09-27 07:25:45    2015-09-27 07:25:45    2
5622    Everyday wayfarers helvetica health. Chambray gastropub polaroid. Flannel semiotics meh.    19863    636    2015-10-31 23:16:42    2015-10-31 23:16:42    2
5626    Leggings migas meggings kombucha cold-pressed meh dreamcatcher austin. Intelligentsia vinyl etsy keffiyeh brunch semiotics mixtape kogi. Meggings blue bottle tote bag chartreuse. Ethical gluten-free 90's pinterest fashion axe. Sriracha biodiesel iphone thundercats.    19080    690    2015-11-10 03:34:56    2015-11-10 03:34:56    2
5638    Messenger bag blue bottle roof dreamcatcher. Stumptown art party sustainable. Cleanse schlitz butcher five dollar toast chartreuse. Schlitz normcore offal vice sartorial small batch. Chia you probably haven't heard of them portland.    19222    525    2016-03-01 04:09:09    2016-03-01 04:09:09    2
5671    Umami deep v next level neutra kickstarter gluten-free drinking. Yr kickstarter heirloom thundercats put a bird on it gentrify xoxo marfa. Echo bitters twee. Fixie ramps bespoke. Art party wolf mustache mlkshk five dollar toast bitters pork belly.    19482    592    2015-10-31 12:19:38    2015-10-31 12:19:38    2
5672    Carry tilde before they sold out heirloom. Cold-pressed readymade stumptown diy literally schlitz blog. Celiac slow-carb vegan ethical mustache brunch shoreditch chambray. Letterpress ennui shabby chic.    19882    808    2016-02-27 10:56:46    2016-02-27 10:56:46    2
5680    Pitchfork blog cred pickled bicycle rights pinterest. Scenester cronut kombucha shoreditch fixie master normcore. Umami schlitz +1 mlkshk typewriter. Dreamcatcher raw denim try-hard bespoke austin vinyl. Slow-carb art party neutra everyday.    19800    465    2015-06-03 03:17:19    2015-06-03 03:17:19    2
5688    Selvage lomo chia venmo meh tote bag. Marfa mustache pickled vhs squid swag waistcoat. Viral celiac squid freegan.    19190    736    2016-02-28 08:49:20    2016-02-28 08:49:20    2
5690    Swag lo-fi hoodie. Butcher raw denim sriracha pour-over. Semiotics wolf schlitz pbr&b. Bespoke mlkshk craft beer 3 wolf moon migas post-ironic. Cornhole blue bottle forage paleo.    19887    860    2015-08-14 02:27:06    2015-08-14 02:27:06    2
5698    Farm-to-table flannel godard locavore quinoa tousled drinking meggings. Meh 8-bit tote bag. Drinking seitan tofu try-hard. Pop-up food truck post-ironic ramps readymade.    19253    906    2015-05-06 19:25:04    2015-05-06 19:25:04    2
5704    Literally everyday intelligentsia. Gluten-free forage wes anderson pork belly cardigan gentrify ethical. Tote bag sustainable literally farm-to-table. Typewriter mumblecore vice organic freegan.    19602    643    2015-04-28 12:20:10    2015-04-28 12:20:10    2
5708    Drinking food truck ugh. Cleanse keffiyeh hammock. Food truck mustache cray. Post-ironic disrupt aesthetic everyday distillery beard kickstarter. Plaid lumbersexual microdosing.    19544    522    2015-08-25 08:33:52    2015-08-25 08:33:52    2
5716    Semiotics yolo vegan ethical food truck. Waistcoat craft beer irony green juice disrupt fixie. Bespoke vinyl letterpress blue bottle.    19425    616    2016-03-31 17:30:02    2016-03-31 17:30:02    2
5718    Wes anderson sustainable keytar cold-pressed microdosing ennui hammock. Tattooed hoodie ethical sartorial. Try-hard typewriter fingerstache listicle drinking banjo godard. Put a bird on it meggings skateboard disrupt. Bitters truffaut 3 wolf moon meditation pug.    19765    712    2015-09-01 07:52:30    2015-09-01 07:52:30    2
5735    Chambray cronut meggings williamsburg wayfarers authentic. Migas keffiyeh cardigan fanny pack yuccie thundercats biodiesel fixie. Swag actually you probably haven't heard of them hashtag gluten-free.    19996    578    2015-08-17 07:57:47    2015-08-17 07:57:47    2
5749    Thundercats viral chambray. Mustache vegan williamsburg diy pbr&b austin squid. Hashtag craft beer franzen trust fund vinyl. Brooklyn literally fap selfies skateboard blog fingerstache.    19022    614    2015-07-07 17:12:59    2015-07-07 17:12:59    2
5765    Ramps pabst meh chillwave salvia. Shabby chic helvetica banh mi kombucha intelligentsia crucifix. Photo booth chicharrones hoodie pabst tousled. Trust fund yr yuccie helvetica pabst. Bitters mumblecore master readymade cardigan.    19219    806    2015-09-22 01:55:30    2015-09-22 01:55:30    2
5783    Pug tilde microdosing paleo. Locavore pbr&b cleanse bitters. Pop-up synth pbr&b freegan twee.    19866    617    2016-01-07 16:29:53    2016-01-07 16:29:53    2
5785    Irony 3 wolf moon hoodie keytar disrupt ethical pop-up street. Sartorial kitsch try-hard yr wolf mumblecore. Biodiesel pitchfork health.    19254    741    2016-01-17 15:58:03    2016-01-17 15:58:03    2
5791    Beard franzen street. Offal keffiyeh tote bag kickstarter pop-up. Fashion axe seitan art party.    19808    913    2016-03-03 21:21:24    2016-03-03 21:21:24    2
5797    Gastropub thundercats kombucha forage vinyl. Diy vegan shabby chic semiotics etsy authentic kinfolk. Twee you probably haven't heard of them deep v.    19827    571    2015-06-27 12:25:35    2015-06-27 12:25:35    2
5802    Fashion axe wes anderson carry offal helvetica polaroid sustainable synth. Godard keytar ennui twee thundercats loko 90's kale chips. 8-bit try-hard disrupt cronut. Dreamcatcher paleo craft beer bespoke seitan godard tacos tumblr.    19770    622    2016-03-18 21:53:01    2016-03-18 21:53:01    2
5803    Street blue bottle goth tacos. Meggings skateboard distillery humblebrag fixie kinfolk mustache. Whatever taxidermy vinegar diy everyday meh twee sartorial. Williamsburg park twee craft beer single-origin coffee schlitz franzen. Squid goth whatever.    19229    534    2015-12-15 20:04:58    2015-12-15 20:04:58    2
5816    Listicle actually xoxo goth. Pour-over migas bitters microdosing gluten-free cray cold-pressed. Godard retro sustainable chartreuse raw denim chicharrones gastropub.    19859    632    2015-05-12 10:29:13    2015-05-12 10:29:13    2
5821    Disrupt echo listicle sustainable kitsch butcher. Gastropub vinyl bespoke ugh bicycle rights pug hammock put a bird on it. Kitsch flannel gluten-free vice aesthetic. Yolo goth wes anderson plaid tumblr.    19403    909    2015-10-12 14:07:35    2015-10-12 14:07:35    2
5824    Polaroid irony whatever scenester park. Wes anderson pbr&b put a bird on it skateboard park authentic green juice. Bespoke pour-over chillwave wayfarers kitsch butcher mlkshk cliche. Flannel mumblecore fap microdosing sustainable neutra.    19738    885    2015-08-21 13:29:03    2015-08-21 13:29:03    2
5854    Deep v +1 pork belly meggings keffiyeh everyday cold-pressed. Pop-up kinfolk selfies park roof. Truffaut green juice gentrify. Pabst ramps bespoke 90's godard franzen waistcoat. You probably haven't heard of them 8-bit normcore.    19470    764    2016-02-03 07:49:48    2016-02-03 07:49:48    2
5873    Hammock xoxo banh mi poutine. Salvia heirloom 3 wolf moon locavore asymmetrical waistcoat beard. Xoxo portland migas williamsburg truffaut flannel twee.    19559    522    2016-04-11 19:05:07    2016-04-11 19:05:07    2
5888    Paleo leggings cold-pressed irony organic. Post-ironic vhs seitan. Cornhole quinoa williamsburg narwhal chillwave intelligentsia post-ironic. Wayfarers organic listicle.    19912    488    2015-06-08 13:06:17    2015-06-08 13:06:17    2
5889    Cronut mustache bushwick butcher. Yr echo shabby chic. Intelligentsia locavore gentrify master. +1 dreamcatcher church-key five dollar toast literally tilde shoreditch.    19440    934    2015-06-24 14:15:12    2015-06-24 14:15:12    2
5893    Mumblecore occupy cronut asymmetrical 90's vhs pug waistcoat. Pinterest viral drinking godard loko pop-up. Farm-to-table green juice xoxo pbr&b vinegar. Austin fap put a bird on it cleanse mustache distillery. Tousled viral farm-to-table seitan.    19921    733    2015-05-30 21:33:43    2015-05-30 21:33:43    2
5897    Distillery mustache semiotics readymade microdosing vice marfa pour-over. Chicharrones yuccie fixie neutra sartorial. Pour-over pop-up humblebrag before they sold out pitchfork blog. Semiotics skateboard health biodiesel umami intelligentsia. Cold-pressed food truck squid tilde scenester williamsburg.    19952    906    2015-05-27 04:10:22    2015-05-27 04:10:22    2
1883    Pbr&b umami sustainable flexitarian. Cred 8-bit austin. Vinyl raw denim meditation.    11332    528    2015-09-12 14:51:32    2015-09-12 14:51:32    1
5917    Green juice wayfarers photo booth taxidermy gluten-free lo-fi squid retro. Vinyl sriracha blog. Helvetica readymade brunch crucifix hoodie selfies pitchfork.    19685    491    2015-06-09 18:49:44    2015-06-09 18:49:44    2
5918    Wes anderson +1 intelligentsia flexitarian keffiyeh venmo photo booth asymmetrical. Humblebrag bespoke actually. Cardigan five dollar toast keytar next level. Mlkshk viral paleo ramps yuccie shabby chic tote bag dreamcatcher.    19263    661    2015-12-18 10:28:37    2015-12-18 10:28:37    2
5927    Small batch lomo narwhal wolf synth xoxo photo booth. Sustainable actually typewriter. Gastropub forage 8-bit butcher bicycle rights chicharrones pork belly loko. Asymmetrical you probably haven't heard of them chia vhs wolf goth post-ironic knausgaard. Mumblecore kickstarter locavore asymmetrical.    19597    959    2015-12-31 12:20:01    2015-12-31 12:20:01    2
5929    Paleo farm-to-table swag tilde offal +1 pabst. Cold-pressed tacos etsy cray. Keytar humblebrag gastropub cleanse selfies direct trade vegan lo-fi. Wayfarers fashion axe deep v post-ironic forage poutine shabby chic skateboard.    19311    591    2015-12-08 19:25:14    2015-12-08 19:25:14    2
5932    Vhs godard semiotics artisan health. Tilde gentrify chartreuse drinking shabby chic. Readymade tumblr aesthetic chambray.    19883    827    2015-11-21 19:16:15    2015-11-21 19:16:15    2
5940    Pbr&b tacos organic. Selfies mixtape migas. Everyday literally kitsch dreamcatcher cray. +1 street blue bottle. Brooklyn literally single-origin coffee 90's.    19764    553    2015-11-02 23:47:35    2015-11-02 23:47:35    2
5944    Yr gastropub fixie cliche chicharrones listicle meh direct trade. Iphone pitchfork direct trade sartorial freegan church-key fanny pack cliche. Kickstarter chicharrones godard organic green juice yuccie.    19026    836    2015-06-02 21:09:03    2015-06-02 21:09:03    2
5956    Skateboard thundercats tofu park pop-up pinterest. Knausgaard butcher pinterest everyday salvia etsy. Austin bitters truffaut biodiesel brunch mlkshk.    19916    850    2016-03-29 00:13:06    2016-03-29 00:13:06    2
5960    Forage goth shoreditch next level irony distillery blue bottle. Ramps everyday umami. 90's yr aesthetic deep v schlitz gastropub intelligentsia bicycle rights. Slow-carb lo-fi intelligentsia. Semiotics williamsburg banjo.    19883    484    2016-03-02 00:18:25    2016-03-02 00:18:25    2
5972    Hashtag selfies banjo meditation williamsburg tattooed chillwave dreamcatcher. Yr poutine retro fap austin. Aesthetic vinyl authentic slow-carb synth normcore. Lo-fi gluten-free semiotics diy vice biodiesel.    19481    588    2016-03-24 07:23:17    2016-03-24 07:23:17    2
5975    Wayfarers butcher tattooed direct trade church-key single-origin coffee mixtape. Farm-to-table leggings pickled selvage marfa loko literally celiac. Chia kombucha roof. Hashtag vegan literally vinegar direct trade post-ironic.    19475    594    2016-03-22 14:00:20    2016-03-22 14:00:20    2
5979    Narwhal meggings vinyl. Raw denim ugh quinoa. Ramps kickstarter hoodie.    19590    643    2015-08-08 19:54:54    2015-08-08 19:54:54    2
5983    Disrupt mumblecore meh selvage thundercats tacos mustache. Master poutine tofu truffaut flannel. Mustache twee mixtape vice selfies bespoke cred vinegar. Austin master tacos brooklyn.    19009    497    2015-08-11 01:29:53    2015-08-11 01:29:53    2
5996    Distillery gluten-free next level narwhal roof raw denim waistcoat. Bushwick everyday chillwave. Hashtag gluten-free stumptown diy. Yr chambray brunch offal neutra.    19009    745    2015-08-06 19:54:43    2015-08-06 19:54:43    2
7069    Iphone locavore fingerstache thundercats. Ramps disrupt mlkshk park selvage. Loko chillwave narwhal venmo ennui. Cliche asymmetrical swag occupy.    19922    633    2016-03-28 03:27:58    2016-03-28 03:27:58    2
6004    Intelligentsia freegan tattooed sriracha cred shabby chic. Organic austin migas. Literally cliche authentic williamsburg cleanse flannel. Beard dreamcatcher marfa chicharrones cliche celiac wes anderson. Salvia hoodie paleo.    19904    658    2016-03-01 13:53:06    2016-03-01 13:53:06    2
6007    Diy 90's meditation bicycle rights. Mlkshk kitsch next level everyday. Literally street asymmetrical cray vhs craft beer disrupt raw denim. 3 wolf moon brunch church-key polaroid xoxo.    19957    609    2015-10-04 01:56:53    2015-10-04 01:56:53    2
6014    Chillwave irony trust fund drinking etsy umami echo mumblecore. Typewriter biodiesel bitters neutra cray cliche blog. 8-bit polaroid shoreditch authentic.    19263    749    2015-12-15 05:35:40    2015-12-15 05:35:40    2
6034    +1 carry 8-bit banh mi fanny pack. Put a bird on it pug tousled banjo cleanse chicharrones. Tilde readymade yr.    19587    645    2015-05-17 10:39:52    2015-05-17 10:39:52    2
6042    Irony kickstarter neutra messenger bag pbr&b williamsburg 8-bit. Pour-over austin beard gluten-free stumptown schlitz. Tacos loko intelligentsia vinyl photo booth.    19559    850    2015-08-09 12:53:08    2015-08-09 12:53:08    2
6054    You probably haven't heard of them slow-carb ethical pitchfork plaid. Shoreditch sustainable austin. Chicharrones austin cray hella.    19217    891    2015-07-20 13:17:46    2015-07-20 13:17:46    2
6061    Xoxo paleo iphone butcher lomo heirloom tumblr thundercats. Meggings next level artisan waistcoat. Trust fund green juice listicle seitan. Lumbersexual street try-hard flannel waistcoat ugh crucifix. Fashion axe fingerstache farm-to-table readymade vegan you probably haven't heard of them tote bag.    19429    904    2015-06-15 07:19:37    2015-06-15 07:19:37    2
6071    Ugh deep v tofu art party. Vinegar tattooed tote bag. Kogi letterpress vice selvage pabst ethical slow-carb actually. Disrupt vice small batch retro blog austin. Migas intelligentsia single-origin coffee hella hammock meh cliche squid.    19151    465    2016-03-18 14:51:21    2016-03-18 14:51:21    2
6072    Chillwave franzen cred. Drinking pug occupy. Humblebrag banh mi raw denim portland bicycle rights shoreditch. Literally fixie seitan hella aesthetic dreamcatcher try-hard. Intelligentsia seitan umami.    19843    668    2015-07-02 09:54:13    2015-07-02 09:54:13    2
6074    Bicycle rights bitters meh microdosing street selfies fanny pack cray. Everyday gastropub gluten-free. Echo craft beer gentrify cold-pressed small batch loko. Selfies chambray austin chia.    19837    741    2015-06-08 03:40:06    2015-06-08 03:40:06    2
6075    Semiotics listicle cronut migas chillwave farm-to-table. Authentic chartreuse forage next level artisan sustainable. 8-bit roof carry pug beard green juice twee typewriter. Yolo lo-fi five dollar toast chambray.    19782    806    2015-10-04 19:41:05    2015-10-04 19:41:05    2
6077    Stumptown church-key single-origin coffee twee trust fund street meggings. Try-hard letterpress cold-pressed twee hella +1. Yolo salvia freegan kogi listicle meh. Flexitarian squid selvage artisan.    19691    481    2016-03-03 01:23:11    2016-03-03 01:23:11    2
6081    Hammock pickled drinking. Sartorial blue bottle truffaut viral portland tousled craft beer. Meh keffiyeh retro thundercats.    19241    668    2015-10-21 08:03:02    2015-10-21 08:03:02    2
6104    Hammock pinterest you probably haven't heard of them bitters craft beer. Mustache vinyl meh ethical pop-up viral. Leggings microdosing heirloom try-hard tattooed. Butcher swag church-key.    19421    575    2016-03-19 15:25:13    2016-03-19 15:25:13    2
6107    Vhs biodiesel meditation scenester pabst celiac pbr&b. Vegan taxidermy kitsch art party brooklyn pug butcher. Authentic small batch park selvage food truck. Tumblr truffaut stumptown locavore sustainable. Normcore park hammock cliche.    19389    545    2015-11-17 12:09:18    2015-11-17 12:09:18    2
6114    Chambray lomo fap before they sold out whatever twee pitchfork franzen. Bicycle rights bushwick synth master meditation jean shorts disrupt brooklyn. Ugh paleo tattooed. Sriracha listicle kickstarter.    19424    737    2016-01-19 18:09:31    2016-01-19 18:09:31    2
6131    Venmo cleanse echo pour-over umami. Cray lomo vinegar. Meh leggings letterpress bitters. Lomo lo-fi flannel cleanse loko kitsch. Pug tofu offal street.    19750    762    2015-05-30 09:51:33    2015-05-30 09:51:33    2
6137    Tofu jean shorts chia heirloom before they sold out cardigan sustainable banjo. Street goth pitchfork wes anderson. Wayfarers shabby chic sriracha try-hard cronut. Knausgaard tacos pickled authentic hashtag.    19722    662    2015-06-21 21:46:17    2015-06-21 21:46:17    2
6141    Yuccie messenger bag ethical mumblecore viral chicharrones. Synth thundercats cardigan helvetica bespoke tofu jean shorts banh mi. Bespoke trust fund small batch. Gluten-free single-origin coffee irony. Selvage raw denim literally.    19346    779    2015-06-12 09:37:59    2015-06-12 09:37:59    2
6159    Kitsch etsy asymmetrical bicycle rights kickstarter lo-fi you probably haven't heard of them. Viral direct trade goth beard. Letterpress forage waistcoat pitchfork.    19215    749    2016-01-28 08:06:06    2016-01-28 08:06:06    2
6166    Yolo direct trade yuccie sriracha keffiyeh banh mi goth. Blue bottle farm-to-table pitchfork biodiesel twee cleanse chia actually. Photo booth irony paleo actually.    19710    648    2015-06-10 14:32:17    2015-06-10 14:32:17    2
6171    Banh mi swag paleo yuccie gastropub. Fanny pack lomo kickstarter. Bicycle rights tote bag freegan letterpress williamsburg narwhal seitan hashtag.    19537    866    2016-02-05 01:17:42    2016-02-05 01:17:42    2
6173    Hella pour-over shabby chic quinoa gluten-free offal taxidermy literally. Fap paleo polaroid cardigan listicle chambray cronut lo-fi. Craft beer leggings tousled.    19969    593    2015-04-28 15:03:20    2015-04-28 15:03:20    2
6174    Chia hashtag chartreuse selfies heirloom sustainable kinfolk cornhole. Art party kale chips humblebrag tousled. Twee occupy tattooed. Skateboard post-ironic twee.    19463    748    2015-06-15 07:20:10    2015-06-15 07:20:10    2
6183    Kitsch waistcoat sustainable listicle +1. Small batch jean shorts five dollar toast. Gastropub typewriter raw denim. Yr pickled xoxo health banjo. Mumblecore leggings butcher carry sartorial blog.    19160    475    2016-02-28 10:44:13    2016-02-28 10:44:13    2
6186    Fixie ennui bespoke seitan. Pbr&b health fingerstache scenester cleanse freegan. Church-key chartreuse retro typewriter sartorial hammock meh chambray. Gentrify everyday carry fingerstache tacos. Listicle pabst cronut brunch flexitarian intelligentsia pop-up.    19233    469    2015-11-23 17:15:52    2015-11-23 17:15:52    2
6193    Kinfolk typewriter waistcoat yolo artisan. Hoodie cornhole mlkshk asymmetrical marfa pickled quinoa flexitarian. Swag kickstarter synth banh mi pabst freegan crucifix semiotics. Bitters bicycle rights synth selfies chillwave normcore ethical. Paleo yuccie cornhole before they sold out.    19018    753    2015-08-02 02:40:09    2015-08-02 02:40:09    2
6239    Disrupt schlitz slow-carb raw denim flexitarian. Chicharrones seitan raw denim. Slow-carb williamsburg viral fingerstache ethical yuccie put a bird on it. Flannel cray semiotics meggings hoodie franzen pabst.    19150    834    2016-03-09 14:56:52    2016-03-09 14:56:52    2
6243    Xoxo vinegar mlkshk tousled lomo health bushwick. Cornhole beard humblebrag. Authentic cleanse leggings blog goth. Mixtape paleo ramps. Iphone everyday tattooed 3 wolf moon fashion axe normcore freegan hella.    19864    546    2016-04-20 16:38:15    2016-04-20 16:38:15    2
6255    You probably haven't heard of them pabst wayfarers vice tote bag mustache green juice kombucha. Authentic pinterest synth. Disrupt fanny pack pbr&b bespoke sustainable try-hard church-key. Chicharrones lomo mixtape tilde. Church-key roof jean shorts pork belly tousled ennui actually fanny pack.    19671    936    2015-12-03 17:13:35    2015-12-03 17:13:35    2
6256    Neutra banjo gastropub offal. Marfa vinegar biodiesel slow-carb. Green juice aesthetic meditation. Whatever humblebrag locavore lomo. Direct trade skateboard tacos offal ennui mlkshk hashtag.    19922    847    2016-03-10 22:38:06    2016-03-10 22:38:06    2
6258    Pop-up letterpress butcher cold-pressed drinking mumblecore. Keffiyeh portland knausgaard asymmetrical kogi vice pork belly small batch. Etsy lo-fi keytar messenger bag mumblecore bushwick roof. Ethical sartorial ennui pop-up.    19396    825    2015-10-04 04:21:11    2015-10-04 04:21:11    2
6259    Freegan quinoa street migas pitchfork gluten-free. Salvia humblebrag master gluten-free kale chips roof pabst. Tofu kinfolk fap slow-carb loko yuccie pickled. Semiotics plaid vice chambray gentrify distillery pickled.    19945    897    2015-11-19 07:53:16    2015-11-19 07:53:16    2
6263    Flannel bespoke +1 cleanse umami dreamcatcher lomo vegan. Park letterpress bespoke food truck flexitarian skateboard hella occupy. Everyday brooklyn ramps migas paleo raw denim. Seitan waistcoat yolo street wayfarers cornhole.    19686    657    2015-10-05 16:41:11    2015-10-05 16:41:11    2
6265    Before they sold out lo-fi bitters banjo butcher. Gluten-free typewriter yuccie. Intelligentsia lo-fi iphone crucifix umami godard. Tilde asymmetrical put a bird on it cliche five dollar toast yr. Food truck craft beer godard synth.    19797    497    2016-03-16 15:18:53    2016-03-16 15:18:53    2
6268    Wayfarers cliche retro whatever sustainable humblebrag fap. Helvetica chia wolf chartreuse umami disrupt. Keytar tilde pop-up sartorial. Deep v mumblecore everyday readymade lumbersexual tilde crucifix truffaut. Thundercats listicle deep v plaid post-ironic.    19616    927    2016-02-01 00:57:13    2016-02-01 00:57:13    2
6272    Street kinfolk small batch synth. Lo-fi semiotics tote bag cardigan. Vhs pour-over post-ironic austin. Craft beer selvage tumblr irony wayfarers.    19827    935    2016-01-04 05:52:17    2016-01-04 05:52:17    2
6298    Single-origin coffee meditation pop-up fixie pickled sustainable selvage cred. Roof butcher vinegar blue bottle chartreuse tilde normcore. Plaid actually keytar farm-to-table green juice church-key bespoke. Celiac readymade actually.    19589    797    2015-07-18 06:05:35    2015-07-18 06:05:35    2
6303    Etsy selvage crucifix knausgaard offal. Brooklyn locavore taxidermy mlkshk. Polaroid godard brooklyn hella you probably haven't heard of them twee 90's wes anderson. Shoreditch keffiyeh tilde craft beer sustainable fashion axe. Sartorial helvetica goth pug pinterest.    19462    788    2015-09-06 03:22:25    2015-09-06 03:22:25    2
6306    Chia raw denim xoxo cred keffiyeh goth vice sartorial. Pork belly fingerstache vinyl skateboard master everyday bicycle rights pour-over. Polaroid flexitarian crucifix fashion axe master. Organic hoodie kale chips.    19369    716    2016-01-28 21:57:12    2016-01-28 21:57:12    2
6318    Ethical umami try-hard street food truck literally semiotics. Keffiyeh mustache cliche. Slow-carb sriracha 8-bit humblebrag 90's post-ironic dreamcatcher banh mi. Ramps street hoodie pop-up vegan.    19324    959    2016-02-25 01:27:35    2016-02-25 01:27:35    2
6332    8-bit locavore 3 wolf moon. Seitan master cardigan. Meh fixie craft beer hoodie sustainable. Shoreditch franzen paleo marfa ennui vinyl tacos. Thundercats bitters fixie polaroid mixtape quinoa.    19547    891    2016-01-09 06:21:53    2016-01-09 06:21:53    2
6342    Brunch franzen portland direct trade quinoa before they sold out poutine tacos. Chillwave readymade yuccie brunch. Echo mumblecore ennui crucifix disrupt cold-pressed fap wolf.    19626    859    2015-09-30 19:07:58    2015-09-30 19:07:58    2
6351    Plaid bushwick thundercats kickstarter bicycle rights single-origin coffee wolf pbr&b. Paleo quinoa tattooed freegan. Everyday occupy brooklyn leggings yuccie paleo humblebrag. Plaid echo fixie pickled.    19141    729    2016-03-20 14:59:11    2016-03-20 14:59:11    2
6352    Sriracha microdosing bushwick quinoa brunch vinegar. Food truck blog selfies diy vhs skateboard. Craft beer tousled asymmetrical poutine brunch. Normcore offal cleanse ugh flannel.    19280    634    2016-02-10 00:23:19    2016-02-10 00:23:19    2
6354    Authentic swag whatever blog venmo lo-fi cronut mixtape. Wayfarers etsy yuccie chillwave gastropub crucifix mixtape ramps. Bespoke letterpress crucifix meggings.    19312    590    2015-10-14 22:29:12    2015-10-14 22:29:12    2
6360    Normcore pitchfork squid flannel. Squid health tousled organic. Cornhole microdosing pabst williamsburg kitsch bushwick. Vhs direct trade cray polaroid raw denim gluten-free farm-to-table messenger bag.    19991    728    2015-09-21 03:26:22    2015-09-21 03:26:22    2
6373    Tofu lumbersexual franzen helvetica. Kinfolk polaroid hashtag food truck swag taxidermy cred vhs. Irony helvetica you probably haven't heard of them diy aesthetic hella offal bushwick. Pabst messenger bag loko banh mi everyday. Pop-up normcore cleanse dreamcatcher.    19237    553    2015-05-05 17:58:14    2015-05-05 17:58:14    2
6401    Dreamcatcher squid leggings pbr&b. Hoodie locavore flannel tumblr schlitz beard microdosing. Fashion axe keytar biodiesel portland wolf cred. Bespoke ennui carry.    19813    543    2015-10-04 21:00:19    2015-10-04 21:00:19    2
6418    Hoodie try-hard organic pug wayfarers deep v sriracha +1. Swag deep v stumptown flexitarian. Venmo aesthetic knausgaard austin kale chips gastropub williamsburg trust fund.    19448    519    2015-10-30 12:44:09    2015-10-30 12:44:09    2
6424    Typewriter mumblecore quinoa kombucha plaid chillwave hammock taxidermy. Authentic farm-to-table echo five dollar toast mlkshk. Selfies health letterpress migas. Roof 90's umami direct trade drinking schlitz mumblecore mustache.    19626    559    2015-06-12 23:12:35    2015-06-12 23:12:35    2
6430    Hashtag bushwick next level tote bag seitan. Synth pour-over whatever. Cronut wes anderson williamsburg. Tilde skateboard loko hashtag gentrify.    19078    551    2015-10-12 19:31:16    2015-10-12 19:31:16    2
6432    Kale chips venmo humblebrag cornhole lomo pabst photo booth. Hella kogi vice. Street locavore ramps tofu. Etsy pabst readymade post-ironic brunch fixie photo booth neutra. Keytar put a bird on it health meditation tousled flexitarian slow-carb.    19796    725    2015-07-19 12:37:37    2015-07-19 12:37:37    2
6446    Crucifix fashion axe cleanse quinoa beard asymmetrical hella blog. Try-hard squid celiac. Cliche readymade actually chicharrones. Master blog sustainable bespoke bushwick umami. Beard occupy kitsch truffaut.    19237    539    2015-10-08 14:51:11    2015-10-08 14:51:11    2
6449    Listicle kombucha iphone. Venmo put a bird on it portland banh mi lomo. Readymade umami salvia mlkshk. Flannel occupy gentrify kickstarter next level small batch kale chips. Shoreditch thundercats schlitz put a bird on it green juice vinegar food truck direct trade.    19040    738    2015-06-08 06:02:57    2015-06-08 06:02:57    2
6452    Brooklyn kogi disrupt knausgaard chicharrones. Viral hella +1 xoxo chia blog kickstarter. Listicle echo synth loko cold-pressed typewriter before they sold out tilde.    19675    928    2016-01-21 15:03:10    2016-01-21 15:03:10    2
6454    Gentrify craft beer mixtape umami meh squid. Chia tofu pork belly gluten-free shabby chic cray chambray. Carry pug food truck chicharrones paleo listicle.    19143    831    2015-08-28 09:33:40    2015-08-28 09:33:40    2
6460    Umami pop-up 8-bit. Fixie green juice bespoke mlkshk leggings tote bag dreamcatcher. Poutine fashion axe xoxo sriracha austin cray. Drinking viral asymmetrical.    19429    626    2015-11-07 12:07:43    2015-11-07 12:07:43    2
6482    Brunch lumbersexual seitan cleanse normcore gluten-free. Cray ramps umami. Meditation cray keffiyeh williamsburg irony. Vegan microdosing umami keffiyeh pork belly slow-carb.    19293    676    2016-01-11 01:11:20    2016-01-11 01:11:20    2
6483    Loko readymade pbr&b locavore. Lumbersexual fanny pack listicle chillwave. Pinterest carry chambray thundercats kombucha.    19280    746    2016-04-06 06:54:43    2016-04-06 06:54:43    2
6843    Organic quinoa narwhal kogi kombucha trust fund. Lumbersexual food truck portland biodiesel church-key drinking poutine. Hella paleo raw denim aesthetic authentic.    19851    847    2016-03-14 10:20:35    2016-03-14 10:20:35    2
6500    Xoxo occupy everyday mixtape food truck fixie next level. Drinking portland celiac try-hard tacos. Raw denim intelligentsia hella fixie. Pug forage schlitz disrupt kinfolk stumptown sustainable chillwave. Viral meditation iphone.    19083    829    2016-03-21 17:35:14    2016-03-21 17:35:14    2
6502    Paleo crucifix selvage mlkshk ugh. Beard williamsburg austin. Venmo fanny pack yuccie chillwave ethical. Roof normcore chia irony. You probably haven't heard of them seitan vinegar schlitz kinfolk mustache street.    19005    471    2015-06-17 18:53:59    2015-06-17 18:53:59    2
6503    Blog health raw denim actually flannel celiac authentic. Tofu ugh synth vhs fixie yr before they sold out kombucha. Church-key yr chia ramps listicle fanny pack crucifix yolo. Freegan blue bottle squid ennui narwhal tousled craft beer next level. Tumblr selfies cred ramps vice beard.    19755    467    2016-01-22 02:10:08    2016-01-22 02:10:08    2
6533    Yolo venmo tilde small batch dreamcatcher single-origin coffee mustache you probably haven't heard of them. Helvetica bespoke umami craft beer post-ironic farm-to-table. Scenester swag forage gluten-free. Deep v tilde tumblr kinfolk disrupt +1 narwhal try-hard.    19158    830    2016-04-20 01:22:05    2016-04-20 01:22:05    2
6566    Fashion axe plaid everyday cleanse. Dreamcatcher cliche put a bird on it blue bottle gentrify iphone cornhole. Poutine truffaut banh mi yolo kale chips vice plaid.    19232    529    2015-10-26 06:02:26    2015-10-26 06:02:26    2
6594    Gluten-free yuccie selfies asymmetrical. Craft beer jean shorts pork belly aesthetic bushwick deep v crucifix intelligentsia. Yuccie bushwick thundercats.    19921    642    2015-05-03 03:47:41    2015-05-03 03:47:41    2
6597    Humblebrag chambray five dollar toast. Church-key jean shorts typewriter single-origin coffee xoxo ugh. Messenger bag disrupt tattooed. Street synth sartorial keytar dreamcatcher 8-bit. Keffiyeh trust fund kombucha letterpress squid.    19161    781    2015-09-30 19:58:25    2015-09-30 19:58:25    2
6605    Humblebrag craft beer gastropub actually hashtag. Yolo carry loko umami. Mlkshk readymade vinyl helvetica truffaut bitters cray flexitarian.    19521    928    2016-01-02 20:45:17    2016-01-02 20:45:17    2
6607    Farm-to-table drinking distillery marfa banjo heirloom. Five dollar toast freegan flexitarian. Helvetica raw denim before they sold out. Kinfolk cardigan raw denim literally truffaut cleanse.    19203    791    2015-05-10 13:54:24    2015-05-10 13:54:24    2
6625    Polaroid dreamcatcher fanny pack pickled franzen portland fixie. Mixtape fashion axe thundercats. Single-origin coffee disrupt austin chambray. Synth mixtape locavore disrupt trust fund keytar. Shabby chic asymmetrical synth tumblr.    19239    678    2015-09-22 21:09:55    2015-09-22 21:09:55    2
6626    Goth bespoke twee chartreuse listicle. Pinterest slow-carb pickled umami bitters diy. Leggings letterpress fanny pack forage yolo. Hammock microdosing kombucha.    19441    554    2015-06-28 03:57:24    2015-06-28 03:57:24    2
6627    Fap kogi polaroid. Helvetica cold-pressed literally farm-to-table everyday distillery. Vegan mixtape flexitarian gentrify seitan.    19277    705    2015-07-23 22:33:25    2015-07-23 22:33:25    2
6631    Fanny pack kickstarter letterpress. Meh chicharrones poutine. Banjo literally readymade offal five dollar toast freegan drinking vice.    19453    824    2016-01-09 17:17:57    2016-01-09 17:17:57    2
6658    Farm-to-table authentic kombucha mustache chartreuse. Etsy wes anderson 8-bit fanny pack chia blue bottle. Knausgaard ramps tattooed deep v. Xoxo goth organic brooklyn. Letterpress kombucha actually.    19343    696    2015-10-07 18:37:37    2015-10-07 18:37:37    2
6692    Iphone freegan food truck offal five dollar toast sartorial kinfolk. Cold-pressed everyday you probably haven't heard of them aesthetic brooklyn tumblr goth yolo. 8-bit authentic tacos tattooed sustainable small batch.    19241    828    2016-01-23 17:39:27    2016-01-23 17:39:27    2
6693    Migas trust fund semiotics swag quinoa seitan street. Whatever pop-up locavore hella post-ironic thundercats. Master hella green juice hammock franzen iphone twee. Bicycle rights cornhole food truck fixie kogi. Seitan echo wayfarers.    19581    927    2016-04-17 05:10:03    2016-04-17 05:10:03    2
6705    Schlitz truffaut roof biodiesel migas vinegar twee. Microdosing austin small batch vinyl meditation lo-fi. Banh mi helvetica kale chips polaroid diy truffaut retro.    19631    874    2015-08-19 08:34:13    2015-08-19 08:34:13    2
6738    Chartreuse sustainable kickstarter chillwave. Twee thundercats vhs fap. Distillery swag vinyl mixtape ramps hashtag. 90's scenester letterpress. Ugh humblebrag diy biodiesel tumblr yolo semiotics.    19995    728    2015-07-08 20:26:10    2015-07-08 20:26:10    2
6741    Umami mlkshk organic +1 hashtag vhs truffaut. Mumblecore chillwave try-hard 3 wolf moon pug poutine kinfolk. Chillwave vinyl synth literally lomo yolo kickstarter kinfolk.    19914    609    2015-11-19 07:16:29    2015-11-19 07:16:29    2
6745    Salvia pour-over next level shoreditch fixie pork belly. Wolf tattooed authentic messenger bag gluten-free. Polaroid cold-pressed schlitz.    19607    559    2016-04-04 14:28:19    2016-04-04 14:28:19    2
6772    Health messenger bag vegan humblebrag pour-over readymade brunch. Plaid intelligentsia farm-to-table dreamcatcher vinyl. Fanny pack venmo kitsch drinking messenger bag skateboard fingerstache. Sriracha artisan tumblr ethical drinking humblebrag poutine. Gentrify cold-pressed vinyl before they sold out viral lomo brooklyn yolo.    19041    809    2016-04-13 14:34:01    2016-04-13 14:34:01    2
6778    Iphone authentic tattooed. Schlitz retro tumblr park. Selvage brunch distillery crucifix church-key meh intelligentsia. Skateboard yuccie brooklyn hella banjo ethical. Semiotics plaid kombucha quinoa.    19552    513    2016-01-20 06:11:03    2016-01-20 06:11:03    2
6793    Locavore shabby chic cred. Pug actually chartreuse deep v swag salvia. Austin try-hard cold-pressed migas. Direct trade helvetica cardigan single-origin coffee sriracha kitsch vice.    19955    929    2016-03-24 20:22:45    2016-03-24 20:22:45    2
6795    Brunch single-origin coffee food truck brooklyn meggings diy scenester. Occupy trust fund franzen drinking street migas pbr&b pop-up. Yuccie quinoa venmo offal. Health +1 pug sustainable intelligentsia.    19302    575    2015-06-06 08:59:03    2015-06-06 08:59:03    2
6796    Put a bird on it dreamcatcher narwhal flannel jean shorts franzen diy. Artisan retro +1 pitchfork chartreuse irony 8-bit pabst. Cardigan master chartreuse schlitz tilde 90's skateboard. Meggings fap shabby chic taxidermy celiac pork belly street food truck. Street 3 wolf moon keffiyeh fingerstache next level art party.    19762    543    2016-03-10 06:03:07    2016-03-10 06:03:07    2
6822    Gluten-free williamsburg selvage ramps salvia plaid lumbersexual. Photo booth taxidermy +1 trust fund intelligentsia mustache crucifix. Blue bottle beard messenger bag chicharrones.    19158    541    2015-08-12 00:42:49    2015-08-12 00:42:49    2
6827    Mustache farm-to-table wolf. Health try-hard cliche. Yr iphone celiac.    19523    808    2016-04-08 16:50:31    2016-04-08 16:50:31    2
6828    Synth hoodie gastropub kickstarter pinterest. Single-origin coffee polaroid butcher squid hashtag sustainable flexitarian umami. Gentrify slow-carb 90's helvetica locavore retro.    19685    848    2015-09-12 04:33:43    2015-09-12 04:33:43    2
6845    Cliche skateboard kombucha street gastropub scenester mixtape. Lumbersexual everyday fixie umami asymmetrical beard. Pitchfork sustainable vinegar. Flannel pabst tacos hella.    19810    702    2015-06-28 07:38:41    2015-06-28 07:38:41    2
6853    Shoreditch selvage photo booth chicharrones jean shorts chia. Intelligentsia pug retro yr. Typewriter pork belly seitan carry dreamcatcher lumbersexual shoreditch chia.    19867    697    2015-12-28 23:36:56    2015-12-28 23:36:56    2
6858    Etsy you probably haven't heard of them fanny pack polaroid. Meh keytar goth schlitz synth cray 8-bit. Heirloom retro loko bitters fingerstache street ramps tumblr. Cold-pressed bespoke organic whatever normcore. Butcher chillwave distillery.    19291    531    2015-10-18 08:29:27    2015-10-18 08:29:27    2
6863    Celiac slow-carb chambray retro mustache bespoke. Freegan you probably haven't heard of them schlitz semiotics banh mi listicle. Tousled swag chia post-ironic bicycle rights tumblr pour-over gastropub. Roof wes anderson normcore austin ennui fixie swag. Kale chips disrupt skateboard health vhs fingerstache.    19863    535    2016-01-15 21:24:49    2016-01-15 21:24:49    2
6876    Kogi chicharrones swag migas cred. Ennui fashion axe occupy. Pop-up intelligentsia meditation authentic literally diy helvetica fashion axe. Art party you probably haven't heard of them literally cliche.    19874    670    2016-02-29 23:13:42    2016-02-29 23:13:42    2
6889    Xoxo thundercats lomo cleanse messenger bag health pabst. Cold-pressed godard keytar. Banh mi blog vhs waistcoat schlitz.    19954    811    2015-10-14 06:30:52    2015-10-14 06:30:52    2
6890    Narwhal aesthetic thundercats post-ironic flannel scenester. Thundercats semiotics wayfarers microdosing put a bird on it health squid. Yuccie cornhole mumblecore 3 wolf moon freegan.    19556    811    2015-10-22 14:15:52    2015-10-22 14:15:52    2
6903    Fixie meggings vinyl shoreditch blue bottle distillery leggings. Leggings quinoa microdosing iphone narwhal. Heirloom loko single-origin coffee master pitchfork lomo authentic before they sold out. Typewriter artisan etsy gluten-free meggings hoodie. Viral blue bottle flexitarian loko pabst kinfolk vice drinking.    19128    826    2016-02-27 00:14:55    2016-02-27 00:14:55    2
6915    Austin slow-carb art party ethical messenger bag. Mixtape fanny pack ramps wolf pbr&b. Chia beard occupy craft beer raw denim. Trust fund butcher put a bird on it master photo booth keytar. Shabby chic farm-to-table tacos lo-fi.    19494    635    2015-08-11 05:08:49    2015-08-11 05:08:49    2
6919    Cold-pressed everyday ugh before they sold out wolf master single-origin coffee. Irony pour-over cornhole yr. Helvetica fingerstache freegan. Distillery vinyl brooklyn readymade cray selfies.    19955    890    2015-06-07 02:00:04    2015-06-07 02:00:04    2
6928    Waistcoat occupy cardigan hoodie meggings mlkshk mumblecore. Butcher slow-carb wayfarers microdosing pinterest cleanse venmo skateboard. Church-key health godard venmo.    19373    644    2016-01-31 11:20:50    2016-01-31 11:20:50    2
6938    Stumptown yr farm-to-table organic synth carry diy. Post-ironic photo booth microdosing. Asymmetrical umami poutine squid. Meh pork belly pitchfork seitan echo pug helvetica.    19590    811    2015-06-17 10:46:50    2015-06-17 10:46:50    2
6939    Godard trust fund gentrify. Street cliche franzen lomo cold-pressed photo booth. Meditation umami single-origin coffee messenger bag.    19452    469    2016-03-14 22:41:52    2016-03-14 22:41:52    2
6948    Messenger bag kitsch skateboard. Sustainable try-hard ethical kinfolk. Cray synth squid cold-pressed hammock. Church-key next level artisan fap. Gluten-free keytar cornhole street pork belly dreamcatcher typewriter kombucha.    19056    697    2015-07-06 07:43:22    2015-07-06 07:43:22    2
6954    Swag semiotics celiac farm-to-table. Microdosing locavore actually humblebrag fingerstache loko diy. Pork belly you probably haven't heard of them diy. Humblebrag listicle cardigan. Portland taxidermy swag echo.    19110    601    2016-04-11 20:34:26    2016-04-11 20:34:26    2
6958    Selfies forage drinking goth put a bird on it meh. Cleanse trust fund swag craft beer. Pinterest irony humblebrag dreamcatcher gastropub ugh. Hashtag celiac fanny pack dreamcatcher pitchfork whatever irony selfies. Vinyl master pitchfork mustache.    19382    535    2015-08-19 03:28:14    2015-08-19 03:28:14    2
6959    Bushwick church-key tacos distillery. Post-ironic normcore art party forage heirloom kogi tousled hammock. Squid art party skateboard mumblecore.    19582    910    2016-03-02 09:49:20    2016-03-02 09:49:20    2
6969    Kogi seitan tattooed etsy pork belly franzen meggings drinking. Raw denim vegan offal. Selfies fap chambray chartreuse ennui before they sold out cronut.    19777    582    2015-10-12 09:35:31    2015-10-12 09:35:31    2
6981    Etsy leggings keffiyeh locavore. Roof seitan selfies stumptown knausgaard truffaut artisan lomo. Twee carry irony brunch yuccie celiac. Dreamcatcher butcher yuccie meggings kickstarter ethical. Kinfolk kickstarter ramps 90's heirloom lomo pop-up.    19506    675    2016-02-15 03:12:58    2016-02-15 03:12:58    2
6982    Next level leggings tote bag dreamcatcher street cleanse try-hard. Jean shorts banjo xoxo wolf vinegar food truck heirloom quinoa. Food truck fashion axe kale chips leggings chillwave heirloom pbr&b everyday. Selvage mlkshk church-key lumbersexual ugh. Biodiesel pop-up franzen salvia listicle heirloom before they sold out.    19912    928    2015-08-13 08:45:12    2015-08-13 08:45:12    2
6991    Helvetica kombucha keytar. Roof drinking flannel direct trade kinfolk farm-to-table. Wayfarers austin artisan brunch kinfolk polaroid post-ironic.    19333    707    2015-04-24 12:53:58    2015-04-24 12:53:58    2
7004    Health seitan meh locavore distillery leggings. Fanny pack pinterest trust fund shabby chic post-ironic green juice intelligentsia. Distillery pabst diy. Austin cardigan yr chambray cray. Pork belly before they sold out tote bag.    19110    715    2015-09-12 18:23:39    2015-09-12 18:23:39    2
7015    Messenger bag williamsburg twee direct trade 3 wolf moon normcore quinoa narwhal. Whatever sriracha cliche sartorial keytar. Vegan wes anderson sustainable before they sold out flexitarian venmo. Tumblr irony sartorial banh mi authentic kogi. Intelligentsia pinterest bicycle rights umami.    19270    884    2016-02-29 04:30:42    2016-02-29 04:30:42    2
7025    Pickled slow-carb roof next level. Truffaut small batch pug celiac pitchfork swag green juice quinoa. Locavore blue bottle 3 wolf moon marfa selvage hoodie. Semiotics fanny pack mumblecore.    19023    577    2015-08-11 21:55:58    2015-08-11 21:55:58    2
7031    Chambray chillwave marfa squid cred tote bag tousled roof. Normcore truffaut actually tacos +1 chillwave godard meditation. Truffaut kickstarter wolf hoodie. Tote bag cronut cold-pressed cray beard kickstarter occupy hashtag. Deep v put a bird on it fanny pack tattooed gastropub.    19772    730    2016-01-19 10:19:09    2016-01-19 10:19:09    2
7043    90's meditation slow-carb green juice authentic. Hoodie before they sold out tousled neutra venmo seitan. Typewriter small batch pickled williamsburg.    19064    741    2015-07-14 10:31:18    2015-07-14 10:31:18    2
7047    +1 tacos yuccie meggings tote bag tousled. Whatever retro messenger bag fingerstache hoodie wes anderson austin keytar. Flannel echo tofu bespoke etsy fap vegan.    19127    943    2015-05-24 03:44:43    2015-05-24 03:44:43    2
7049    Beard intelligentsia stumptown yr pop-up organic. Wayfarers schlitz pinterest umami squid listicle tofu yolo. Normcore diy fap listicle narwhal plaid brunch xoxo. Vinegar blog kinfolk yuccie hammock.    19936    907    2016-04-09 21:12:08    2016-04-09 21:12:08    2
7057    Fap fanny pack small batch meggings viral. Distillery organic bicycle rights tousled cliche taxidermy 90's. Sartorial yuccie synth kogi. Literally banh mi yolo. Mumblecore aesthetic humblebrag biodiesel 90's flannel echo.    19164    645    2015-11-07 06:12:11    2015-11-07 06:12:11    2
7064    90's fap kombucha carry. Twee taxidermy tattooed typewriter ethical yolo etsy. Yuccie migas bitters vhs wolf salvia goth cliche. Banjo mlkshk everyday quinoa lumbersexual shabby chic forage organic. Raw denim hoodie bushwick semiotics kitsch.    19846    667    2015-09-16 13:42:53    2015-09-16 13:42:53    2
7077    Beard pickled hammock. Polaroid vinyl celiac roof plaid flexitarian twee. Drinking pop-up tousled xoxo swag hoodie seitan.    19938    942    2016-02-06 09:39:50    2016-02-06 09:39:50    2
7078    Truffaut diy humblebrag asymmetrical yr banh mi bushwick. Venmo bitters pitchfork stumptown sartorial organic wes anderson. Freegan loko ethical twee messenger bag etsy.    19529    746    2015-09-30 13:50:04    2015-09-30 13:50:04    2
7105    Distillery leggings dreamcatcher put a bird on it pour-over raw denim iphone. Stumptown bespoke pug aesthetic hella. Ramps chia put a bird on it meh fap. Try-hard banjo authentic hoodie.    19657    915    2016-01-26 08:06:36    2016-01-26 08:06:36    2
7128    Keytar quinoa austin yr flexitarian. Yr etsy leggings street. Fashion axe tacos freegan literally cardigan. Hella artisan park.    19358    664    2015-08-26 03:46:18    2015-08-26 03:46:18    2
7142    Thundercats deep v fap cliche gentrify mixtape kale chips skateboard. Put a bird on it loko street messenger bag sartorial pabst portland. Yuccie biodiesel mixtape neutra. Kinfolk semiotics typewriter. Migas street microdosing.    19859    550    2015-12-07 10:24:18    2015-12-07 10:24:18    2
7162    Fap +1 asymmetrical food truck hammock. Authentic salvia vice. Williamsburg kinfolk flexitarian quinoa iphone mixtape. Quinoa beard irony tattooed +1 skateboard.    19724    518    2015-08-28 04:45:56    2015-08-28 04:45:56    2
7173    Everyday tumblr kale chips portland normcore. Wolf master cronut small batch fixie. Pug green juice echo. Authentic fixie vegan disrupt park biodiesel pug hoodie.    19547    846    2015-12-13 18:44:26    2015-12-13 18:44:26    2
7192    Jean shorts kitsch kinfolk brunch. Ugh authentic before they sold out waistcoat craft beer you probably haven't heard of them crucifix deep v. You probably haven't heard of them yuccie typewriter everyday mlkshk echo deep v. Hammock messenger bag semiotics listicle sartorial beard.    19398    592    2015-11-08 12:41:33    2015-11-08 12:41:33    2
7195    Aesthetic kombucha jean shorts tattooed. Kombucha kickstarter roof semiotics. Chia brooklyn skateboard taxidermy synth master chillwave farm-to-table. Pitchfork flannel wes anderson selfies chicharrones.    19595    875    2016-03-02 05:31:43    2016-03-02 05:31:43    2
7208    Sartorial stumptown green juice. Schlitz organic green juice sriracha authentic swag post-ironic. Banjo narwhal trust fund twee. Selfies iphone raw denim single-origin coffee. Venmo poutine meditation 8-bit messenger bag goth twee.    19923    475    2016-04-07 21:11:12    2016-04-07 21:11:12    2
7218    Thundercats fap sartorial vinyl mumblecore microdosing. Selvage direct trade mustache vinyl tattooed deep v actually. Gluten-free goth blog yolo. Five dollar toast pbr&b diy biodiesel.    19066    656    2015-06-27 04:02:41    2015-06-27 04:02:41    2
7223    Cold-pressed ugh kitsch 3 wolf moon photo booth. Salvia vice pbr&b neutra skateboard fashion axe stumptown literally. Organic fanny pack fingerstache stumptown.    19713    947    2015-10-07 12:31:08    2015-10-07 12:31:08    2
7230    Butcher stumptown single-origin coffee. Chicharrones twee listicle food truck wayfarers tote bag poutine. Crucifix kitsch readymade.    19321    684    2016-02-16 21:36:08    2016-02-16 21:36:08    2
7239    Beard hoodie raw denim offal skateboard 90's food truck. Cleanse green juice cornhole echo. Etsy marfa food truck.    19939    804    2015-06-04 03:03:12    2015-06-04 03:03:12    2
7259    Wes anderson vhs food truck street offal. Mustache chia sartorial sustainable small batch williamsburg. Pop-up kitsch quinoa deep v austin ennui try-hard franzen. Twee post-ironic pitchfork mixtape taxidermy. Selvage meditation semiotics venmo kinfolk.    19379    860    2015-12-02 00:20:03    2015-12-02 00:20:03    2
7266    Godard salvia pbr&b. Mixtape post-ironic seitan organic actually celiac pbr&b skateboard. Hammock sriracha dreamcatcher.    19577    942    2015-09-06 17:16:58    2015-09-06 17:16:58    2
2640    Listicle put a bird on it twee try-hard. Sustainable banjo butcher. Jean shorts ennui post-ironic.    10188    830    2015-09-19 00:32:01    2015-09-19 00:32:01    1
7268    Poutine occupy small batch jean shorts. Carry kogi iphone kickstarter disrupt. Letterpress beard cardigan street seitan franzen selfies slow-carb. Truffaut direct trade 8-bit artisan carry pbr&b deep v cronut. Vinegar jean shorts blog wes anderson etsy cardigan fap sustainable.    19504    638    2015-06-17 14:17:06    2015-06-17 14:17:06    2
7282    Hoodie butcher humblebrag cold-pressed lumbersexual diy pork belly heirloom. Waistcoat seitan art party viral small batch kitsch. Whatever hammock paleo.    19256    663    2015-05-15 01:16:00    2015-05-15 01:16:00    2
7284    Artisan microdosing letterpress tattooed fashion axe yr. Yolo godard lumbersexual. 8-bit knausgaard +1. Lo-fi ethical xoxo readymade. Shabby chic celiac pinterest vinegar cold-pressed before they sold out bitters ugh.    19564    930    2015-04-28 17:25:51    2015-04-28 17:25:51    2
7287    Roof neutra chia vhs diy goth. Vice lumbersexual bushwick loko drinking salvia. Pabst venmo artisan blue bottle listicle etsy meggings cold-pressed. Keffiyeh chia kitsch artisan.    19824    513    2016-01-05 16:16:01    2016-01-05 16:16:01    2
7312    Irony cliche distillery cronut literally marfa. Offal pitchfork selfies kinfolk echo gentrify. Lumbersexual readymade chambray diy tote bag typewriter schlitz.    19040    486    2016-01-14 10:27:55    2016-01-14 10:27:55    2
7315    Fixie literally fanny pack drinking vice chambray put a bird on it ethical. +1 pop-up schlitz kickstarter chartreuse church-key. Kogi +1 disrupt mustache flexitarian mixtape.    19239    650    2015-09-17 01:08:22    2015-09-17 01:08:22    2
7318    Skateboard raw denim ugh fixie roof tattooed. Mlkshk thundercats skateboard. Jean shorts tofu salvia. Gentrify mlkshk williamsburg goth asymmetrical cray.    19026    599    2016-04-16 12:19:21    2016-04-16 12:19:21    2
7336    Ethical cardigan flannel authentic celiac. Church-key ethical fap crucifix. Fap beard keffiyeh gastropub vhs neutra. Celiac scenester fap.    19538    592    2015-11-17 19:06:09    2015-11-17 19:06:09    2
7359    Whatever food truck intelligentsia disrupt direct trade goth authentic. Small batch fashion axe leggings plaid humblebrag. Vinegar meditation retro migas stumptown lomo. Tofu food truck ethical. Literally kogi green juice.    19778    688    2015-11-22 10:05:47    2015-11-22 10:05:47    2
7361    Mixtape poutine chambray cray cliche letterpress retro. Ramps literally cronut bushwick selfies kickstarter meditation. Shoreditch knausgaard chartreuse chicharrones try-hard polaroid deep v.    19967    843    2016-01-31 09:19:16    2016-01-31 09:19:16    2
7381    Shabby chic everyday heirloom retro forage. Viral master tousled. Tumblr meggings small batch tacos bushwick hammock. Meggings +1 craft beer slow-carb roof vice hoodie actually. 90's everyday health craft beer tumblr meditation 3 wolf moon farm-to-table.    19278    870    2015-04-25 13:18:27    2015-04-25 13:18:27    2
7384    Ethical mlkshk sartorial mixtape vhs paleo keytar pug. Aesthetic tattooed street kitsch. Ramps forage brooklyn. Distillery paleo synth art party portland. Chillwave farm-to-table poutine tattooed tilde scenester 8-bit bicycle rights.    19955    552    2015-09-17 10:23:49    2015-09-17 10:23:49    2
7394    Taxidermy loko tacos selvage skateboard chillwave forage. Vhs chia migas heirloom yolo ugh five dollar toast. Meditation banh mi mumblecore irony twee 8-bit loko pabst.    19615    923    2016-02-15 10:11:58    2016-02-15 10:11:58    2
7400    Kickstarter waistcoat pug meggings iphone pbr&b. Quinoa biodiesel celiac literally flannel fingerstache. Goth taxidermy roof 90's authentic. Offal paleo tousled yuccie food truck put a bird on it truffaut sustainable. Polaroid fixie dreamcatcher salvia.    19728    616    2016-04-10 13:34:28    2016-04-10 13:34:28    2
7690    Taxidermy humblebrag salvia. Ramps bespoke waistcoat lo-fi schlitz salvia gluten-free. Small batch tattooed thundercats church-key ennui cliche salvia.    19821    600    2016-01-24 05:27:43    2016-01-24 05:27:43    2
7403    Art party chillwave swag thundercats everyday portland venmo. Blog quinoa everyday kale chips helvetica lumbersexual listicle irony. Kale chips narwhal kinfolk. Food truck 3 wolf moon pickled loko.    19855    818    2015-11-17 23:45:10    2015-11-17 23:45:10    2
7405    Flannel meh tumblr humblebrag chambray kombucha. Art party humblebrag before they sold out cred godard. Try-hard whatever wolf shabby chic diy. Next level photo booth bitters asymmetrical fap.    19073    660    2015-08-01 08:07:43    2015-08-01 08:07:43    2
7438    Slow-carb readymade roof hella skateboard pour-over. Marfa vinyl tousled pug beard echo bicycle rights. Selfies pug wes anderson salvia sriracha farm-to-table organic. Kinfolk cornhole literally tofu hella plaid chambray.    19664    737    2016-01-10 04:45:27    2016-01-10 04:45:27    2
7447    Kombucha occupy readymade tattooed 90's pbr&b etsy farm-to-table. Drinking lomo food truck meh yolo portland wayfarers pour-over. Salvia kitsch pinterest. Slow-carb schlitz tofu franzen kale chips.    19952    839    2015-08-23 05:04:13    2015-08-23 05:04:13    2
7449    Distillery occupy listicle yuccie dreamcatcher neutra gentrify. Single-origin coffee pabst loko squid fanny pack banh mi butcher sustainable. Shabby chic gluten-free schlitz master pabst portland.    19631    533    2016-02-21 06:44:48    2016-02-21 06:44:48    2
7458    Normcore gastropub umami leggings celiac. Cred bushwick freegan. Fap cornhole authentic chartreuse. Cliche pinterest pop-up. Bicycle rights yr messenger bag.    19643    525    2016-03-21 08:24:39    2016-03-21 08:24:39    2
7459    Squid church-key readymade authentic lo-fi. Irony xoxo pitchfork chia stumptown cold-pressed. Beard cleanse pitchfork shabby chic chartreuse chambray. Aesthetic brooklyn williamsburg flexitarian polaroid kombucha disrupt carry.    19903    882    2016-03-25 10:11:43    2016-03-25 10:11:43    2
7477    Vhs pabst master literally. Art party put a bird on it shoreditch fashion axe hoodie truffaut cray. Franzen migas pork belly scenester single-origin coffee sriracha everyday.    19394    645    2016-03-28 14:00:25    2016-03-28 14:00:25    2
7489    Gluten-free retro banh mi. Disrupt vice tofu marfa. Lomo skateboard keytar blog neutra fingerstache. Chartreuse fanny pack fixie ugh ennui viral freegan green juice.    19026    702    2015-10-15 20:36:46    2015-10-15 20:36:46    2
7492    Roof readymade yr you probably haven't heard of them kinfolk irony green juice listicle. Disrupt butcher sriracha lumbersexual. Celiac microdosing distillery bespoke. Yuccie kombucha sustainable pbr&b. Godard kale chips chia five dollar toast yr lumbersexual.    19897    910    2015-06-21 19:54:54    2015-06-21 19:54:54    2
7495    Marfa trust fund whatever. Retro swag wolf cronut taxidermy. Messenger bag kickstarter park farm-to-table butcher. Cold-pressed five dollar toast tumblr typewriter semiotics. Meditation flexitarian humblebrag squid bespoke tote bag wolf.    19610    878    2015-12-04 23:18:04    2015-12-04 23:18:04    2
7529    Organic tattooed leggings echo tote bag semiotics. Tofu readymade mumblecore. Semiotics pabst cronut. Sriracha before they sold out small batch jean shorts lumbersexual artisan. Kickstarter cardigan fashion axe truffaut five dollar toast selvage you probably haven't heard of them.    19388    801    2015-07-23 23:48:22    2015-07-23 23:48:22    2
7554    Brooklyn poutine microdosing. Vice tousled forage helvetica. Intelligentsia venmo chia everyday farm-to-table asymmetrical. Freegan actually polaroid jean shorts vinyl 90's cronut street.    19483    621    2015-08-25 22:55:26    2015-08-25 22:55:26    2
7560    Typewriter fixie aesthetic stumptown intelligentsia wayfarers. Tilde selvage loko before they sold out. Park chicharrones chillwave kogi asymmetrical yr keffiyeh sartorial.    19419    497    2015-07-14 15:59:54    2015-07-14 15:59:54    2
7585    Iphone +1 tilde knausgaard. Cleanse hoodie carry. Squid loko 8-bit pabst letterpress bitters. Ramps godard forage. Small batch ennui blue bottle.    19553    693    2016-03-14 14:37:11    2016-03-14 14:37:11    2
7869    Etsy echo fanny pack schlitz tofu xoxo forage. Fanny pack vice single-origin coffee raw denim. Taxidermy helvetica cred tote bag tattooed swag truffaut.    19865    843    2016-03-21 01:52:32    2016-03-21 01:52:32    2
7611    Wes anderson mumblecore trust fund. Wayfarers kickstarter messenger bag whatever authentic. Umami direct trade chartreuse church-key. Sustainable tousled keytar green juice kinfolk chambray irony. Aesthetic mustache shabby chic 3 wolf moon ugh irony meditation.    19926    467    2016-02-18 14:12:12    2016-02-18 14:12:12    2
7620    Roof yuccie before they sold out tote bag single-origin coffee. Typewriter biodiesel pug ugh wayfarers vhs. Dreamcatcher brunch semiotics post-ironic. Shabby chic cray leggings fingerstache.    19865    728    2016-04-07 07:16:55    2016-04-07 07:16:55    2
7621    Vinegar hella fashion axe aesthetic carry sartorial schlitz. Chicharrones meggings bespoke gluten-free. You probably haven't heard of them 8-bit vinegar viral yr. Literally put a bird on it ugh truffaut. Offal bushwick lo-fi gluten-free.    19941    621    2015-11-10 07:12:03    2015-11-10 07:12:03    2
7634    Semiotics selfies portland. Flannel stumptown ethical marfa hashtag. Godard fanny pack pop-up pabst.    19859    748    2015-08-16 11:56:36    2015-08-16 11:56:36    2
7637    Kogi lumbersexual iphone plaid 90's truffaut chia. Chia tilde truffaut aesthetic. Try-hard retro before they sold out fingerstache iphone. Diy carry slow-carb etsy bicycle rights.    19703    674    2015-06-20 20:25:02    2015-06-20 20:25:02    2
7640    Paleo +1 goth carry cornhole authentic migas ramps. +1 food truck butcher leggings cold-pressed echo. Chambray before they sold out 3 wolf moon small batch vhs. Brunch everyday kogi post-ironic lo-fi.    19035    506    2016-04-10 01:09:05    2016-04-10 01:09:05    2
7650    Mixtape bespoke photo booth fashion axe knausgaard. Williamsburg banh mi tousled. Vegan dreamcatcher +1 blog.    19504    904    2015-09-09 20:20:07    2015-09-09 20:20:07    2
7658    Poutine diy cornhole wolf. Flannel cleanse retro art party godard 8-bit. Quinoa venmo tofu synth xoxo green juice listicle slow-carb. Franzen pork belly gluten-free brooklyn fap scenester synth truffaut. Truffaut cardigan everyday blog scenester tote bag trust fund single-origin coffee.    19421    663    2015-10-20 03:36:09    2015-10-20 03:36:09    2
7659    Keytar pop-up stumptown twee flannel everyday bicycle rights blog. Next level listicle raw denim art party kogi. Mlkshk carry hella iphone chicharrones tattooed. Retro organic quinoa pug twee salvia before they sold out.    19688    844    2015-06-07 05:17:23    2015-06-07 05:17:23    2
7663    Blue bottle cardigan vice cornhole. Health sriracha deep v keffiyeh iphone. Gluten-free heirloom normcore. Kogi tumblr thundercats fixie craft beer.    19244    574    2015-07-25 23:57:22    2015-07-25 23:57:22    2
7668    Tousled godard put a bird on it helvetica pour-over selvage quinoa before they sold out. Master vice mixtape thundercats wes anderson. Bitters normcore kinfolk cliche. Poutine fixie vhs pabst.    19935    845    2016-03-14 18:33:25    2016-03-14 18:33:25    2
7673    Paleo food truck church-key twee. Occupy franzen bushwick trust fund blog kitsch direct trade humblebrag. Tumblr single-origin coffee portland food truck blog. Cornhole schlitz swag carry five dollar toast keffiyeh. Sartorial fingerstache retro franzen direct trade mixtape.    19042    802    2016-03-03 11:08:18    2016-03-03 11:08:18    2
7675    Hashtag helvetica banh mi mumblecore biodiesel. Drinking meggings pickled squid single-origin coffee. Squid cornhole messenger bag park meh flexitarian tumblr.    19727    635    2015-08-22 08:04:04    2015-08-22 08:04:04    2
7684    Venmo meditation twee. Shoreditch everyday schlitz you probably haven't heard of them cray. Godard you probably haven't heard of them iphone. Selvage xoxo bicycle rights umami. Pitchfork ethical franzen blog.    19629    527    2015-05-22 08:55:02    2015-05-22 08:55:02    2
7695    Forage waistcoat post-ironic. Post-ironic waistcoat skateboard iphone thundercats. Iphone gastropub mixtape wolf.    19312    653    2015-06-24 14:50:05    2015-06-24 14:50:05    2
7743    Mixtape ethical crucifix bitters deep v. Heirloom mustache swag before they sold out biodiesel tote bag. Street migas hashtag chicharrones blue bottle ennui bicycle rights.    19105    674    2016-03-18 03:39:22    2016-03-18 03:39:22    2
7744    Mixtape sartorial celiac goth before they sold out mustache. Tattooed austin etsy beard keytar paleo. Cred chartreuse quinoa.    19340    497    2015-09-29 22:03:04    2015-09-29 22:03:04    2
7745    Wes anderson craft beer thundercats dreamcatcher narwhal. Celiac synth next level brooklyn butcher chillwave drinking. Offal flexitarian tote bag. Meh post-ironic pabst gentrify fashion axe. Art party williamsburg pug microdosing.    19377    714    2016-02-19 19:26:05    2016-02-19 19:26:05    2
7758    Lo-fi cred art party trust fund. 3 wolf moon bitters loko actually shabby chic. Literally 3 wolf moon vice roof banh mi normcore before they sold out messenger bag.    19420    614    2016-03-16 22:19:15    2016-03-16 22:19:15    2
7761    Next level post-ironic freegan street poutine crucifix. Selvage migas health. Disrupt loko williamsburg fashion axe ethical whatever raw denim. Shabby chic normcore lo-fi goth ethical. Health yuccie pickled sriracha direct trade post-ironic etsy.    19192    816    2015-09-08 19:32:35    2015-09-08 19:32:35    2
7763    Stumptown etsy typewriter seitan trust fund. Pabst polaroid biodiesel. Messenger bag chicharrones listicle pug seitan put a bird on it photo booth mlkshk. Etsy put a bird on it try-hard 8-bit gastropub. Freegan tattooed vhs vice gentrify food truck kitsch.    19037    493    2015-11-18 23:14:51    2015-11-18 23:14:51    2
7764    Organic waistcoat street salvia pickled post-ironic fixie. Hella poutine narwhal. Gentrify mustache direct trade kombucha.    19235    802    2016-01-21 09:31:22    2016-01-21 09:31:22    2
7770    Lumbersexual readymade quinoa. Messenger bag diy readymade lomo tote bag cold-pressed. Kogi deep v yuccie try-hard organic. Bushwick occupy fixie sartorial.    19917    703    2015-05-01 21:22:17    2015-05-01 21:22:17    2
7774    Fashion axe raw denim meggings truffaut. Lomo tofu humblebrag before they sold out bicycle rights retro. Biodiesel polaroid readymade tilde art party.    19182    918    2016-04-08 07:38:15    2016-04-08 07:38:15    2
7782    Viral goth chillwave brunch literally tofu cardigan shoreditch. Cronut intelligentsia freegan. Hella swag wes anderson roof. Meggings fap put a bird on it. Pork belly asymmetrical pug ethical.    19981    482    2015-05-20 19:14:23    2015-05-20 19:14:23    2
7809    Tumblr park pour-over sustainable wayfarers squid quinoa. Loko keytar next level ramps normcore everyday food truck carry. Vice drinking messenger bag next level schlitz gentrify cray. Food truck xoxo pop-up kombucha williamsburg. Kinfolk humblebrag banjo ethical tote bag yuccie listicle sriracha.    19174    685    2016-02-17 04:38:07    2016-02-17 04:38:07    2
7817    Poutine salvia pickled chicharrones lumbersexual pork belly sriracha art party. Raw denim crucifix disrupt wes anderson occupy chartreuse chicharrones. Selvage ethical organic. Tattooed listicle distillery selvage five dollar toast stumptown pinterest retro.    19179    566    2015-08-28 12:37:34    2015-08-28 12:37:34    2
7826    Lumbersexual mustache vinegar mumblecore art party you probably haven't heard of them cred echo. Lomo pop-up beard single-origin coffee you probably haven't heard of them. Gentrify gastropub leggings ethical pop-up chillwave. Meditation brooklyn mumblecore sriracha chartreuse etsy biodiesel.    19428    787    2015-05-30 23:02:17    2015-05-30 23:02:17    2
7850    Authentic goth knausgaard fashion axe organic. Vinegar goth messenger bag try-hard. Ramps brunch celiac. You probably haven't heard of them selfies chartreuse.    19930    519    2015-12-25 18:40:20    2015-12-25 18:40:20    2
7893    Lomo cornhole aesthetic. Poutine migas vegan selfies kickstarter viral cred. Blog put a bird on it authentic paleo.    19149    958    2015-07-07 03:29:51    2015-07-07 03:29:51    2
7906    Heirloom locavore craft beer. Actually godard xoxo everyday freegan. Everyday yuccie before they sold out pickled. Locavore mixtape wes anderson.    19429    774    2015-10-13 00:31:36    2015-10-13 00:31:36    2
7924    Cornhole helvetica diy normcore photo booth hammock bicycle rights. Vhs farm-to-table ramps ugh fashion axe put a bird on it cornhole. Aesthetic schlitz thundercats flexitarian. Five dollar toast neutra chillwave hella. Pabst franzen vinyl bicycle rights forage slow-carb lo-fi kogi.    19933    802    2016-04-19 05:37:17    2016-04-19 05:37:17    2
7926    Schlitz flexitarian franzen. Poutine ugh blue bottle wolf roof franzen. Kitsch pop-up cray slow-carb selvage. Ennui squid art party single-origin coffee bitters.    19079    515    2015-11-03 07:14:02    2015-11-03 07:14:02    2
7961    Scenester knausgaard chambray cliche park yr selvage. Ethical photo booth thundercats cred stumptown slow-carb street mlkshk. Single-origin coffee cray mlkshk tattooed roof wes anderson. Squid poutine portland. Meditation lo-fi scenester.    19739    653    2015-08-12 15:33:13    2015-08-12 15:33:13    2
7965    Franzen mixtape polaroid selvage vice kale chips. Waistcoat taxidermy farm-to-table. Ramps biodiesel skateboard scenester portland chicharrones. Pug aesthetic xoxo sustainable lo-fi austin hammock kale chips.    19250    735    2016-03-27 10:44:56    2016-03-27 10:44:56    2
7968    Umami tofu pour-over cardigan etsy 3 wolf moon. Readymade artisan gastropub cray humblebrag. Everyday flexitarian fingerstache pickled. Ennui squid authentic knausgaard wes anderson godard before they sold out. Pork belly etsy farm-to-table cliche.    19921    888    2016-01-23 17:02:24    2016-01-23 17:02:24    2
7972    Cold-pressed waistcoat brooklyn chartreuse aesthetic cronut sustainable. Pbr&b butcher raw denim pork belly readymade etsy trust fund. Humblebrag pabst keffiyeh distillery disrupt godard. You probably haven't heard of them cliche bushwick poutine chicharrones.    19667    615    2016-01-22 17:33:19    2016-01-22 17:33:19    2
7981    Gluten-free brooklyn pug small batch. Messenger bag offal pug. Meggings helvetica literally. Master tousled actually fashion axe etsy. Iphone chambray you probably haven't heard of them.    19918    491    2015-05-29 09:25:09    2015-05-29 09:25:09    2
7986    8-bit tumblr literally. Organic ethical vice brooklyn artisan +1 plaid fixie. Put a bird on it mlkshk yolo meh cronut plaid occupy.    19726    803    2015-06-24 03:11:50    2015-06-24 03:11:50    2
8013    Freegan whatever keffiyeh polaroid lumbersexual celiac. Letterpress lumbersexual cred vinegar kinfolk franzen post-ironic flannel. Pop-up literally health kinfolk disrupt mustache locavore cleanse.    19513    692    2015-07-09 02:04:13    2015-07-09 02:04:13    2
8029    Tattooed tousled artisan. Waistcoat keffiyeh pop-up vhs butcher wayfarers pickled. Chia pour-over distillery bitters health mustache slow-carb.    19386    857    2016-02-10 14:24:02    2016-02-10 14:24:02    2
8041    Etsy tofu migas master hella direct trade scenester. Master tofu wolf taxidermy goth wayfarers asymmetrical dreamcatcher. Tousled stumptown skateboard polaroid artisan irony brunch everyday. Etsy fashion axe locavore intelligentsia asymmetrical. Squid pickled gastropub.    19217    592    2015-11-01 18:21:08    2015-11-01 18:21:08    2
8044    Banjo lo-fi yuccie. Gentrify bespoke synth diy. Fashion axe everyday mlkshk bicycle rights venmo master asymmetrical literally.    19481    954    2016-04-04 16:08:47    2016-04-04 16:08:47    2
8051    Synth farm-to-table pinterest master flannel disrupt. Neutra swag cliche. Readymade flexitarian lumbersexual mumblecore. Pour-over drinking kale chips shoreditch semiotics bitters marfa.    19705    960    2015-05-20 06:52:43    2015-05-20 06:52:43    2
8067    Bitters cliche pug everyday. Before they sold out waistcoat craft beer intelligentsia. Lomo waistcoat marfa ennui.    19087    920    2016-03-24 18:38:46    2016-03-24 18:38:46    2
8097    Pabst health chillwave diy pitchfork freegan lumbersexual. Normcore marfa locavore typewriter tacos kickstarter before they sold out art party. Banjo meggings celiac tattooed lomo williamsburg five dollar toast vhs. Flexitarian tacos etsy. Fingerstache waistcoat franzen vinyl thundercats tofu.    19082    872    2015-12-07 23:49:09    2015-12-07 23:49:09    2
8143    Farm-to-table vice before they sold out fashion axe kale chips. Wes anderson typewriter vhs vinegar craft beer direct trade etsy pitchfork. Chia street xoxo.    19395    810    2016-01-23 22:53:58    2016-01-23 22:53:58    2
8151    Twee fixie yuccie cray church-key schlitz. Wayfarers bespoke keffiyeh fingerstache franzen. Blue bottle locavore iphone chia.    19943    817    2016-03-21 22:32:16    2016-03-21 22:32:16    2
8155    Sriracha ugh humblebrag schlitz sartorial 90's tote bag truffaut. Sartorial letterpress asymmetrical brunch crucifix stumptown wolf authentic. Post-ironic fashion axe paleo migas pabst.    19711    880    2015-12-25 00:26:39    2015-12-25 00:26:39    2
8158    Vhs tilde jean shorts gastropub. Disrupt mlkshk you probably haven't heard of them street cleanse. Before they sold out literally post-ironic diy 90's lumbersexual tacos. Gentrify cleanse park sriracha cray listicle.    19346    539    2016-02-24 17:12:43    2016-02-24 17:12:43    2
8160    Sustainable helvetica mustache neutra waistcoat. Fingerstache hoodie blue bottle cred locavore meditation roof cleanse. Trust fund vice actually semiotics. Gastropub seitan street butcher disrupt chillwave.    19820    917    2015-05-06 15:53:38    2015-05-06 15:53:38    2
8161    Lomo ennui tumblr fap umami. Fashion axe loko freegan vice pabst williamsburg semiotics. Bitters cronut kinfolk. Chillwave kitsch slow-carb. Small batch tilde trust fund bespoke waistcoat normcore farm-to-table post-ironic.    19989    893    2015-09-01 03:33:49    2015-09-01 03:33:49    2
8165    Trust fund church-key mustache synth. Post-ironic leggings aesthetic umami locavore taxidermy crucifix. Next level organic street ramps vinyl. Lo-fi cronut single-origin coffee gastropub umami.    19729    895    2015-08-07 03:32:13    2015-08-07 03:32:13    2
8169    Kinfolk drinking jean shorts echo celiac umami. Skateboard meggings intelligentsia authentic goth. Poutine wolf artisan venmo pour-over carry cronut. Messenger bag bitters vinyl. Hammock +1 organic cornhole.    19365    937    2015-08-23 11:10:10    2015-08-23 11:10:10    2
8176    Lomo helvetica bitters hella tilde ethical fanny pack. Truffaut thundercats forage. Vhs freegan offal. Pitchfork franzen fingerstache raw denim.    19101    532    2015-12-06 10:41:48    2015-12-06 10:41:48    2
8191    Pickled humblebrag retro intelligentsia butcher ramps. Kitsch semiotics cred neutra cornhole fixie 90's. 8-bit lomo plaid. Readymade mustache polaroid.    19645    799    2015-08-01 07:43:26    2015-08-01 07:43:26    2
8245    Thundercats intelligentsia yuccie fap vhs retro iphone chambray. 8-bit bushwick loko keytar deep v +1 craft beer. Next level freegan polaroid food truck master meditation. 8-bit pug kitsch twee.    19510    607    2015-11-01 17:40:58    2015-11-01 17:40:58    2
8223    Everyday vinegar leggings. Goth intelligentsia aesthetic chambray before they sold out. Bushwick fap raw denim 8-bit 3 wolf moon wes anderson. Twee marfa 3 wolf moon keytar migas organic. Tousled pinterest tofu organic mixtape.    19302    928    2016-01-12 16:50:43    2016-01-12 16:50:43    2
8231    Deep v neutra humblebrag. Chillwave cronut chartreuse vinegar tattooed bespoke slow-carb flexitarian. Ennui kickstarter aesthetic.    19881    933    2015-12-22 06:51:19    2015-12-22 06:51:19    2
8236    Blue bottle pop-up irony tilde umami franzen lo-fi echo. Chillwave church-key yolo gentrify hashtag green juice. Park shabby chic swag tote bag master. Paleo synth craft beer yuccie.    19839    719    2015-08-03 11:46:07    2015-08-03 11:46:07    2
8254    Butcher pickled locavore raw denim flannel humblebrag. Blue bottle direct trade ramps 90's shoreditch yr. Leggings art party semiotics raw denim chambray ramps migas actually. Health hoodie church-key chicharrones plaid cardigan.    19699    495    2015-12-24 23:02:01    2015-12-24 23:02:01    2
8266    Trust fund chicharrones marfa photo booth disrupt offal. Brooklyn chillwave pickled brunch. Ugh street readymade crucifix. 8-bit single-origin coffee post-ironic leggings marfa sartorial drinking bushwick. Paleo 8-bit shabby chic.    19606    575    2015-07-16 09:32:29    2015-07-16 09:32:29    2
8270    Thundercats 3 wolf moon vhs. Pbr&b celiac post-ironic. Forage loko farm-to-table knausgaard next level.    19225    781    2015-07-09 12:49:07    2015-07-09 12:49:07    2
8276    Wes anderson chartreuse carry xoxo tilde try-hard actually. Fashion axe microdosing chicharrones blog typewriter next level. Intelligentsia whatever synth hammock.    19645    669    2015-10-09 04:15:38    2015-10-09 04:15:38    2
8284    Mlkshk waistcoat cliche chartreuse. Flexitarian yuccie knausgaard freegan. Pickled chartreuse drinking locavore. Iphone fanny pack godard park salvia. Umami disrupt pbr&b sartorial iphone direct trade blog 90's.    19262    626    2015-09-29 17:02:50    2015-09-29 17:02:50    2
8296    Keytar brunch direct trade. Try-hard waistcoat mixtape food truck celiac. Church-key cold-pressed blog heirloom banjo jean shorts swag selfies.    19168    521    2015-07-26 09:13:59    2015-07-26 09:13:59    2
8301    Kombucha bespoke tote bag brunch fashion axe jean shorts. Hashtag blue bottle biodiesel yr meggings vegan cardigan. Banjo shoreditch messenger bag put a bird on it yr readymade vice cronut.    19387    617    2015-05-04 10:51:45    2015-05-04 10:51:45    2
8322    8-bit yr thundercats chambray. Listicle scenester tofu cardigan meggings crucifix chillwave next level. 3 wolf moon fingerstache 90's yuccie skateboard.    19049    818    2015-10-23 20:51:36    2015-10-23 20:51:36    2
8335    Before they sold out scenester art party. Tofu sriracha chicharrones meh. Shoreditch pickled flexitarian small batch. Yuccie truffaut flexitarian dreamcatcher.    19134    494    2016-02-05 06:06:58    2016-02-05 06:06:58    2
8353    Raw denim cardigan gluten-free pour-over food truck street kogi flannel. Green juice disrupt mustache knausgaard shoreditch quinoa meditation bespoke. Cardigan wolf biodiesel. Quinoa dreamcatcher chambray trust fund 8-bit tote bag actually shabby chic.    19374    837    2015-11-30 06:57:34    2015-11-30 06:57:34    2
8363    Mustache keffiyeh fanny pack. Listicle meh asymmetrical leggings. Kogi letterpress fixie. Street humblebrag locavore hella single-origin coffee pop-up. Banh mi loko kogi.    19617    650    2015-05-09 10:20:45    2015-05-09 10:20:45    2
8368    Vice pork belly vinyl cray fap. Godard leggings kitsch sartorial vinegar waistcoat swag. Small batch aesthetic tumblr tousled selvage. Chicharrones tumblr schlitz cold-pressed vhs diy heirloom.    19428    827    2015-10-12 12:02:38    2015-10-12 12:02:38    2
8374    Pbr&b kitsch skateboard pinterest offal ennui. Wayfarers selvage portland narwhal keffiyeh chartreuse post-ironic squid. Jean shorts vice fashion axe synth vinyl. Migas roof 90's cornhole. Brunch listicle blue bottle.    19407    508    2015-08-19 05:40:32    2015-08-19 05:40:32    2
8378    Scenester flexitarian cornhole vegan blog. Poutine crucifix franzen goth stumptown knausgaard. Chicharrones listicle banjo vinegar small batch etsy mixtape. Hoodie tilde twee marfa polaroid selfies shoreditch.    19320    945    2015-12-01 08:44:30    2015-12-01 08:44:30    2
8381    Viral seitan direct trade quinoa whatever chartreuse. Pbr&b drinking mustache pour-over 3 wolf moon literally vinegar. Messenger bag plaid bushwick synth post-ironic pork belly celiac jean shorts. Pork belly gastropub street twee biodiesel. Asymmetrical narwhal helvetica gastropub thundercats vhs wolf.    19421    464    2016-01-15 21:38:53    2016-01-15 21:38:53    2
9399    Fingerstache seitan typewriter chicharrones neutra. Neutra lumbersexual 3 wolf moon dreamcatcher crucifix aesthetic diy. Heirloom butcher distillery franzen.    19710    536    2015-08-21 04:55:16    2015-08-21 04:55:16    2
8412    Pop-up selfies ethical cornhole sartorial farm-to-table. Pour-over forage chartreuse goth +1. Hoodie meh brunch tumblr. Pabst shabby chic church-key yolo twee. Chia williamsburg marfa mixtape readymade direct trade everyday put a bird on it.    19611    838    2015-07-29 16:17:42    2015-07-29 16:17:42    2
8437    Yolo cleanse before they sold out slow-carb messenger bag squid. Cornhole scenester fap kombucha before they sold out. Swag sustainable leggings typewriter dreamcatcher keffiyeh plaid. Xoxo squid trust fund aesthetic crucifix health ramps.    19828    528    2015-08-07 03:47:54    2015-08-07 03:47:54    2
8439    Portland austin carry yr pop-up vice. Ugh banjo synth organic readymade sustainable drinking sriracha. Readymade 3 wolf moon freegan jean shorts. Godard letterpress flexitarian everyday. Ethical tattooed wayfarers cleanse.    19654    618    2016-04-09 20:23:44    2016-04-09 20:23:44    2
8440    Meh loko taxidermy keytar cred locavore cornhole. Authentic master post-ironic keffiyeh green juice. Waistcoat wes anderson beard loko williamsburg. Locavore ramps try-hard. Waistcoat single-origin coffee tacos small batch tumblr intelligentsia aesthetic.    19617    599    2016-03-02 22:11:07    2016-03-02 22:11:07    2
8445    Shabby chic locavore roof organic five dollar toast. Freegan umami mustache. Narwhal keytar paleo echo trust fund austin neutra selfies.    19428    633    2016-03-20 03:11:13    2016-03-20 03:11:13    2
8460    Yuccie art party diy sartorial. Pitchfork helvetica listicle. Crucifix shoreditch hashtag fashion axe small batch next level aesthetic mlkshk. Bespoke shoreditch goth cliche hoodie bicycle rights bushwick.    19392    626    2016-04-02 09:20:21    2016-04-02 09:20:21    2
8468    Schlitz cleanse gluten-free church-key wolf. Humblebrag pork belly brooklyn dreamcatcher mumblecore. Diy ethical listicle chia squid tote bag.    19538    537    2015-08-28 09:57:33    2015-08-28 09:57:33    2
8481    Locavore listicle mixtape five dollar toast. Narwhal godard next level vegan cliche. Sustainable drinking beard kitsch biodiesel distillery etsy scenester. Crucifix hella vice waistcoat fingerstache brooklyn mixtape single-origin coffee.    19148    776    2015-05-12 10:13:36    2015-05-12 10:13:36    2
8493    Ugh organic selfies loko lomo seitan. Stumptown xoxo locavore. Five dollar toast chillwave cleanse ramps synth 3 wolf moon. Cred flannel tote bag godard.    19386    834    2015-11-19 21:08:45    2015-11-19 21:08:45    2
8495    8-bit bicycle rights blue bottle. Blue bottle asymmetrical iphone pbr&b. Irony swag normcore blog jean shorts messenger bag. Meditation leggings pop-up tote bag fashion axe cold-pressed hammock crucifix. Five dollar toast thundercats park viral fanny pack yr chicharrones.    19188    524    2016-03-06 21:46:11    2016-03-06 21:46:11    2
8503    Art party food truck salvia green juice synth. Art party everyday beard iphone loko. Try-hard messenger bag park authentic.    19680    627    2016-01-12 00:20:48    2016-01-12 00:20:48    2
8508    Schlitz chartreuse echo hashtag leggings jean shorts. Godard aesthetic umami narwhal craft beer ethical yr food truck. Bespoke leggings swag pinterest. Irony meh keffiyeh ugh. Park disrupt heirloom vinyl normcore offal.    19838    635    2015-09-05 18:57:54    2015-09-05 18:57:54    2
8518    Letterpress loko fanny pack green juice cronut mumblecore brunch fap. Hashtag tacos pinterest kinfolk kitsch thundercats intelligentsia. Vice hammock blog farm-to-table fixie.    19015    741    2015-12-16 01:33:43    2015-12-16 01:33:43    2
8545    Occupy umami chillwave tilde photo booth messenger bag post-ironic. Ugh try-hard venmo street shabby chic. Hella chambray franzen flannel five dollar toast synth kinfolk. Leggings street everyday irony cray.    19714    742    2015-05-05 07:52:54    2015-05-05 07:52:54    2
8574    Park polaroid biodiesel beard. Mlkshk yolo pbr&b cred fap wolf. Everyday stumptown 3 wolf moon.    19180    895    2015-08-18 17:55:47    2015-08-18 17:55:47    2
8592    Five dollar toast helvetica offal try-hard listicle fixie. Post-ironic green juice organic. Small batch organic intelligentsia raw denim mlkshk. Occupy xoxo actually. Aesthetic kombucha fingerstache lo-fi cornhole.    19575    650    2016-03-12 19:01:53    2016-03-12 19:01:53    2
8921    Hammock kombucha raw denim. Squid post-ironic narwhal goth etsy pork belly. Pickled street fap sriracha kitsch.    19970    529    2016-03-10 15:42:27    2016-03-10 15:42:27    2
8596    Messenger bag cold-pressed polaroid kitsch tousled. Tousled yuccie biodiesel post-ironic narwhal taxidermy tacos chartreuse. Etsy jean shorts offal kombucha single-origin coffee fingerstache. Everyday master cleanse drinking art party. Disrupt twee before they sold out humblebrag cray 3 wolf moon hoodie.    19305    571    2016-01-09 13:33:37    2016-01-09 13:33:37    2
8601    Fixie chia mlkshk typewriter. Hashtag tacos single-origin coffee godard fanny pack chartreuse. Pbr&b taxidermy celiac wayfarers. Ennui master tacos diy. Bitters hella tousled.    19965    936    2015-05-15 16:33:05    2015-05-15 16:33:05    2
8631    Messenger bag cronut craft beer vinyl typewriter meditation photo booth kitsch. Waistcoat forage pop-up twee next level brooklyn flannel. Fingerstache pop-up normcore. Fingerstache biodiesel pinterest mustache bespoke portland farm-to-table skateboard.    19260    836    2015-10-05 22:32:28    2015-10-05 22:32:28    2
8636    Scenester jean shorts lumbersexual farm-to-table tousled tote bag crucifix. Offal wayfarers small batch. Quinoa squid cred forage migas messenger bag gluten-free. Kickstarter cardigan fixie brunch neutra pork belly etsy.    19852    542    2015-12-25 09:27:48    2015-12-25 09:27:48    2
8637    Flannel banjo lomo. Williamsburg aesthetic polaroid 8-bit banh mi mustache messenger bag gastropub. Pinterest leggings park shoreditch pour-over slow-carb microdosing fanny pack. Wes anderson distillery chambray 8-bit sartorial. Shabby chic blue bottle fashion axe listicle single-origin coffee franzen.    19664    626    2015-08-14 07:35:53    2015-08-14 07:35:53    2
8649    Hashtag artisan dreamcatcher. Seitan heirloom street xoxo tofu organic pork belly selvage. Iphone drinking meh pug seitan. Ugh chillwave flannel williamsburg lumbersexual forage.    19571    618    2015-12-23 03:54:40    2015-12-23 03:54:40    2
8651    Wes anderson keytar kogi squid. Chicharrones single-origin coffee brooklyn plaid normcore lomo tousled. Chia raw denim umami cray fanny pack celiac poutine. Normcore kinfolk 90's small batch venmo helvetica hoodie.    19118    857    2015-08-30 23:56:46    2015-08-30 23:56:46    2
8656    Hashtag chambray chartreuse fap forage keffiyeh polaroid. Schlitz wes anderson twee typewriter pitchfork. Meggings raw denim bushwick. Sartorial cleanse pbr&b fixie trust fund.    19968    745    2016-03-03 02:30:49    2016-03-03 02:30:49    2
8683    Swag lumbersexual waistcoat plaid carry actually. You probably haven't heard of them tacos craft beer before they sold out migas art party sartorial pug. Venmo meditation jean shorts. 90's put a bird on it authentic single-origin coffee raw denim. Tilde chartreuse whatever deep v small batch blog cold-pressed kickstarter.    19894    881    2016-01-24 08:43:21    2016-01-24 08:43:21    2
8690    Banjo bitters diy hella brunch carry letterpress salvia. Carry hella biodiesel literally salvia sriracha kitsch whatever. Health iphone truffaut next level literally. Yr goth shabby chic knausgaard sustainable cleanse.    19944    828    2015-06-09 01:48:13    2015-06-09 01:48:13    2
8701    Iphone cleanse blog meditation. Narwhal poutine neutra lumbersexual mustache kinfolk authentic yolo. Master listicle goth chartreuse shabby chic try-hard. Semiotics lomo schlitz heirloom.    19807    568    2015-06-12 16:40:40    2015-06-12 16:40:40    2
8708    Art party organic mixtape 8-bit tilde direct trade. Umami loko lumbersexual. Gentrify helvetica food truck craft beer. Taxidermy before they sold out street selfies.    19941    945    2015-09-02 18:38:20    2015-09-02 18:38:20    2
8716    Listicle banjo jean shorts kinfolk waistcoat master mumblecore tacos. Sartorial direct trade mustache. Before they sold out bicycle rights bespoke hammock celiac. Etsy drinking tousled. Neutra tofu hella austin chartreuse.    19701    839    2015-07-16 07:35:13    2015-07-16 07:35:13    2
8719    Echo twee pabst fixie freegan ramps five dollar toast cardigan. 90's chillwave jean shorts sustainable truffaut fanny pack poutine schlitz. Leggings jean shorts pug echo. Taxidermy letterpress sriracha bespoke literally sartorial wolf distillery.    19268    914    2015-10-01 23:49:33    2015-10-01 23:49:33    2
8725    Locavore church-key intelligentsia brunch forage organic scenester. Fashion axe vegan cred salvia flannel. Knausgaard fap bespoke pabst bushwick. Irony everyday meh beard. Kickstarter vhs cold-pressed yolo tousled vinyl.    19153    909    2015-11-16 00:01:46    2015-11-16 00:01:46    2
8732    Banh mi stumptown plaid. Ennui stumptown pitchfork kitsch craft beer marfa fap flannel. Locavore 8-bit pop-up mustache wayfarers. Tousled polaroid intelligentsia brunch waistcoat.    19956    591    2016-01-13 22:40:53    2016-01-13 22:40:53    2
8748    Cliche xoxo fixie vice art party cleanse yuccie direct trade. Master banh mi meggings before they sold out gluten-free. Shabby chic microdosing squid seitan heirloom try-hard.    19195    936    2015-06-04 12:31:02    2015-06-04 12:31:02    2
8756    Williamsburg drinking put a bird on it. Cornhole green juice kombucha five dollar toast truffaut chicharrones diy forage. Xoxo pickled fap seitan whatever swag.    19076    898    2016-01-11 06:07:13    2016-01-11 06:07:13    2
8758    Mlkshk brooklyn iphone. Meggings forage pinterest food truck leggings normcore banh mi before they sold out. Park authentic keytar humblebrag kinfolk.    19600    482    2016-01-05 13:49:49    2016-01-05 13:49:49    2
8775    Yuccie paleo bitters kombucha godard messenger bag. Sriracha asymmetrical meh. Actually knausgaard put a bird on it scenester lomo tousled godard. Tilde direct trade bicycle rights tattooed.    19715    628    2016-04-16 04:58:58    2016-04-16 04:58:58    2
8789    Authentic kale chips kombucha post-ironic. Tattooed cornhole park yr kale chips portland slow-carb williamsburg. Yuccie organic xoxo listicle pbr&b trust fund. Bushwick venmo diy.    19560    638    2015-07-17 18:15:57    2015-07-17 18:15:57    2
8814    Pickled small batch tacos irony knausgaard brooklyn meggings. Letterpress yolo pork belly stumptown ennui brunch you probably haven't heard of them art party. Tilde pug neutra.    19713    840    2015-07-23 16:38:09    2015-07-23 16:38:09    2
8816    Brunch taxidermy gastropub ennui 90's. Scenester readymade butcher +1 kickstarter microdosing marfa post-ironic. Cronut wolf actually pop-up umami ethical.    19661    716    2015-07-15 09:51:18    2015-07-15 09:51:18    2
8839    Portland diy semiotics lo-fi carry. Microdosing swag intelligentsia. Chambray tote bag normcore kombucha vinyl humblebrag thundercats. Vinyl selfies wes anderson poutine kickstarter venmo 90's. Vice yolo chillwave schlitz kitsch ugh.    19866    948    2015-08-01 08:50:17    2015-08-01 08:50:17    2
8869    Artisan church-key post-ironic. Aesthetic godard mustache pbr&b gentrify cred polaroid. Pinterest cray beard fap +1 vinegar pabst fashion axe. Fanny pack taxidermy farm-to-table flannel. Flexitarian master pour-over franzen banh mi.    19524    538    2016-01-23 03:20:14    2016-01-23 03:20:14    2
8874    Hashtag paleo tattooed pickled. Retro gluten-free seitan 8-bit. Vinyl everyday quinoa park fingerstache put a bird on it artisan. Umami mixtape vinyl knausgaard pickled food truck you probably haven't heard of them godard.    19573    821    2015-07-27 07:07:18    2015-07-27 07:07:18    2
8880    Xoxo deep v shoreditch hella roof. Cardigan fixie irony yuccie tousled. Skateboard freegan beard migas marfa.    19909    742    2016-02-24 12:58:48    2016-02-24 12:58:48    2
8894    Pop-up stumptown yuccie normcore cronut. Forage post-ironic offal mustache yr locavore art party chartreuse. Vegan thundercats health plaid. Wayfarers fap asymmetrical flannel typewriter sriracha. Listicle skateboard gentrify ethical portland.    19494    639    2015-06-29 11:27:59    2015-06-29 11:27:59    2
8914    Poutine umami skateboard. Street bespoke sustainable venmo. Mumblecore listicle bitters locavore knausgaard heirloom. Retro artisan keffiyeh hella tattooed. Health seitan salvia tumblr aesthetic ugh.    19538    879    2015-04-23 01:03:53    2015-04-23 01:03:53    2
8950    Seitan kickstarter pug truffaut lumbersexual literally meditation. Portland bicycle rights you probably haven't heard of them kickstarter migas. Fap etsy stumptown post-ironic.    19585    662    2015-07-03 21:27:06    2015-07-03 21:27:06    2
8955    Keffiyeh brunch sriracha put a bird on it. Chambray crucifix keytar umami artisan vinyl. Pitchfork umami irony retro freegan kogi tilde biodiesel. Artisan small batch locavore. Butcher pbr&b mlkshk kogi letterpress food truck meh.    19594    530    2016-02-18 05:52:42    2016-02-18 05:52:42    2
8959    Raw denim trust fund pug aesthetic before they sold out. Kitsch pug letterpress shoreditch. Fingerstache mlkshk brooklyn iphone kitsch drinking brunch fixie. Diy wolf street cornhole.    19995    950    2015-12-02 20:22:22    2015-12-02 20:22:22    2
8978    Shabby chic gentrify mumblecore deep v. Tattooed godard kale chips butcher. Chartreuse art party tattooed yuccie sriracha schlitz typewriter.    19558    661    2015-07-14 04:07:57    2015-07-14 04:07:57    2
8985    Irony poutine cronut dreamcatcher. Listicle single-origin coffee lumbersexual fashion axe vinegar asymmetrical actually. Whatever cardigan five dollar toast. Franzen pinterest organic. Stumptown drinking pickled waistcoat.    19845    887    2015-09-16 20:00:55    2015-09-16 20:00:55    2
8991    Slow-carb polaroid skateboard. Vhs marfa direct trade. Leggings tote bag meditation carry austin yr. Kinfolk chillwave goth microdosing seitan dreamcatcher occupy single-origin coffee. Raw denim chillwave freegan vinegar tofu pbr&b.    19253    841    2015-07-04 04:46:56    2015-07-04 04:46:56    2
9008    Brooklyn forage kitsch hammock cray. Scenester readymade mlkshk aesthetic hashtag pickled goth. Pickled vinegar ennui fixie try-hard freegan kinfolk. Tumblr franzen lomo.    19483    850    2015-06-13 09:32:14    2015-06-13 09:32:14    2
9012    Flannel park kinfolk chartreuse trust fund. Wolf irony cardigan wayfarers ugh single-origin coffee quinoa flannel. Chambray pabst irony pork belly bespoke diy kogi. Lumbersexual actually cred.    19385    751    2015-06-05 11:14:32    2015-06-05 11:14:32    2
9043    Banh mi migas yr humblebrag kale chips paleo cronut. Leggings biodiesel wes anderson literally seitan ugh jean shorts. Retro mustache forage pug direct trade. Distillery twee shoreditch gluten-free shabby chic occupy.    19351    542    2016-01-28 15:18:04    2016-01-28 15:18:04    2
9049    Occupy scenester williamsburg. Irony fap knausgaard master gentrify echo selfies schlitz. Leggings put a bird on it pinterest quinoa brunch viral distillery cred.    19789    798    2015-10-28 00:13:00    2015-10-28 00:13:00    2
9059    Distillery cliche meditation celiac pour-over godard. Pour-over tumblr tofu slow-carb 3 wolf moon vice typewriter. Letterpress lomo authentic tumblr post-ironic. Quinoa shoreditch intelligentsia blog pabst literally yolo. Normcore vice actually cornhole organic kogi kombucha wolf.    19370    791    2015-12-18 16:12:42    2015-12-18 16:12:42    2
9080    Helvetica occupy raw denim godard. Humblebrag tattooed cardigan heirloom ennui yr lumbersexual mustache. Pitchfork authentic yr bicycle rights godard iphone pabst tumblr. Yuccie narwhal synth disrupt street.    19554    758    2015-09-18 14:28:34    2015-09-18 14:28:34    2
9086    Lomo poutine quinoa actually chia vinegar blue bottle vhs. Paleo cliche tacos. Asymmetrical mumblecore cliche chillwave you probably haven't heard of them wayfarers wes anderson flexitarian. You probably haven't heard of them twee health tousled lo-fi cold-pressed listicle. Kale chips bushwick green juice gentrify lumbersexual.    19687    551    2016-01-20 05:57:51    2016-01-20 05:57:51    2
9096    Occupy letterpress kombucha pabst. Lumbersexual tumblr messenger bag actually yuccie gastropub kogi. Keytar wayfarers tousled dreamcatcher. Quinoa gastropub vhs lumbersexual hammock brunch yr aesthetic. Cliche bitters skateboard.    19657    577    2015-08-23 07:47:14    2015-08-23 07:47:14    2
9120    Synth fixie organic hoodie umami before they sold out tacos. Leggings fingerstache organic echo keytar synth beard. Fingerstache banjo tumblr crucifix mumblecore irony mustache. 8-bit pour-over fingerstache irony aesthetic pork belly sriracha.    19148    845    2015-05-21 15:34:38    2015-05-21 15:34:38    2
9134    Truffaut tilde next level cray. Typewriter pour-over tousled. Typewriter pour-over occupy chartreuse viral thundercats before they sold out.    19236    515    2016-03-18 17:49:03    2016-03-18 17:49:03    2
9139    Fap literally seitan williamsburg meh. Actually brooklyn deep v semiotics post-ironic. Humblebrag goth keytar taxidermy leggings selfies mumblecore. Yolo biodiesel readymade paleo dreamcatcher truffaut bushwick chicharrones.    19606    532    2015-10-03 17:49:51    2015-10-03 17:49:51    2
9151    Meh readymade actually. Raw denim leggings cold-pressed put a bird on it tote bag ennui cray whatever. Fingerstache ugh celiac bitters blue bottle meh whatever. Sriracha migas chicharrones plaid green juice kogi fixie.    19336    630    2015-06-05 16:07:48    2015-06-05 16:07:48    2
9155    Lumbersexual wolf distillery. Plaid dreamcatcher five dollar toast roof food truck leggings. Letterpress park vhs chambray listicle hammock messenger bag chillwave.    19224    923    2015-09-05 11:48:41    2015-09-05 11:48:41    2
9159    Quinoa semiotics vegan. Portland kinfolk pinterest chambray squid viral farm-to-table poutine. Irony vegan taxidermy tofu. Sustainable mumblecore chillwave artisan organic. Green juice pug irony hoodie post-ironic chia pork belly.    19154    519    2015-07-18 10:51:14    2015-07-18 10:51:14    2
9160    Gluten-free iphone chillwave biodiesel street poutine wolf. Cardigan knausgaard cray kinfolk keffiyeh. Williamsburg freegan selfies.    19003    480    2015-11-03 01:11:56    2015-11-03 01:11:56    2
9188    Blog fashion axe sriracha put a bird on it diy. Semiotics fap biodiesel chillwave. Hella slow-carb plaid 3 wolf moon skateboard flexitarian celiac. Vinegar tote bag cleanse typewriter ramps jean shorts dreamcatcher. Chartreuse truffaut poutine.    19397    775    2015-11-19 04:07:34    2015-11-19 04:07:34    2
9189    Jean shorts paleo portland ugh 90's listicle. Brunch marfa literally cornhole bicycle rights. Keytar everyday etsy cold-pressed mumblecore. Blue bottle tofu butcher gastropub typewriter. Readymade whatever austin fap meh.    19922    614    2016-01-13 10:13:09    2016-01-13 10:13:09    2
9195    Roof cred cardigan before they sold out. Quinoa goth fap plaid selfies organic. Trust fund cronut 8-bit mustache kinfolk wes anderson messenger bag.    19025    951    2016-02-18 08:35:35    2016-02-18 08:35:35    2
9200    Butcher sriracha bicycle rights fanny pack listicle mlkshk chillwave. Poutine salvia vegan vhs bitters gentrify yuccie forage. Biodiesel squid try-hard church-key organic ugh stumptown keffiyeh.    19988    875    2016-04-14 21:03:07    2016-04-14 21:03:07    2
9209    Cronut tacos distillery semiotics godard dreamcatcher kickstarter. Sustainable you probably haven't heard of them bushwick literally pop-up shabby chic. Pork belly meggings chicharrones jean shorts ennui listicle selfies occupy. Carry 8-bit sartorial authentic church-key raw denim viral cred.    19205    720    2016-04-03 14:52:46    2016-04-03 14:52:46    2
9211    Raw denim hella squid. Craft beer cardigan fashion axe knausgaard vinyl. Williamsburg sriracha swag hoodie. Offal typewriter intelligentsia beard ugh. Irony diy gluten-free cronut pickled freegan hammock cred.    19912    512    2015-11-14 08:46:47    2015-11-14 08:46:47    2
9226    Wes anderson blog cliche neutra blue bottle park yuccie. Ugh banjo everyday fanny pack meggings. Diy kickstarter vinegar. Photo booth mustache bicycle rights. Butcher retro lomo.    19753    550    2016-03-20 16:15:22    2016-03-20 16:15:22    2
9228    Direct trade banh mi celiac pug pickled flexitarian tacos. Sartorial vice bushwick pitchfork xoxo. Small batch knausgaard typewriter chartreuse shoreditch hella tacos. Kitsch food truck butcher.    19360    728    2016-03-10 08:21:01    2016-03-10 08:21:01    2
9264    Kinfolk fashion axe pabst. Sriracha roof 3 wolf moon distillery leggings. Listicle fap gastropub chillwave taxidermy ugh keffiyeh.    19758    554    2016-03-04 07:31:05    2016-03-04 07:31:05    2
9270    Neutra food truck diy truffaut photo booth post-ironic direct trade. Hella health pour-over gentrify food truck marfa mumblecore. Lo-fi organic art party messenger bag kickstarter selfies cornhole. Neutra tilde craft beer.    19358    673    2015-09-09 17:04:04    2015-09-09 17:04:04    2
9281    Direct trade shabby chic keytar. Pickled street carry neutra beard deep v tattooed loko. Letterpress distillery ennui venmo food truck. Portland bicycle rights xoxo.    19793    852    2016-04-10 14:39:05    2016-04-10 14:39:05    2
9292    Chia vinegar literally pitchfork umami. Readymade asymmetrical scenester offal. Readymade marfa microdosing occupy tacos aesthetic kinfolk.    19407    664    2015-12-01 01:59:14    2015-12-01 01:59:14    2
9301    Iphone mustache biodiesel yr. You probably haven't heard of them church-key diy drinking hella polaroid. Diy chicharrones thundercats fap before they sold out. Fingerstache pop-up polaroid pbr&b brunch. Pbr&b pabst vhs.    19424    658    2015-08-22 00:13:40    2015-08-22 00:13:40    2
9306    Vinyl drinking flannel tattooed jean shorts everyday ethical keffiyeh. Hashtag semiotics franzen letterpress pop-up listicle. Offal drinking letterpress pour-over. Fanny pack leggings kombucha butcher cronut vinyl. Seitan sriracha stumptown.    19049    499    2015-10-06 00:23:36    2015-10-06 00:23:36    2
9319    Kickstarter taxidermy loko photo booth. Trust fund pabst roof pork belly ugh. Taxidermy pork belly cold-pressed locavore meh. Master semiotics kombucha. Celiac freegan marfa sartorial disrupt tumblr.    19784    756    2015-10-09 15:52:47    2015-10-09 15:52:47    2
9324    Fap chillwave tote bag distillery 3 wolf moon leggings. Fanny pack umami godard cred. Roof listicle migas scenester messenger bag post-ironic. Pour-over crucifix next level literally vhs.    19618    942    2015-05-28 17:01:15    2015-05-28 17:01:15    2
9338    Banh mi intelligentsia farm-to-table. Selfies vice actually kale chips cred twee. Craft beer taxidermy beard paleo iphone. Meggings freegan truffaut mustache. Selvage kinfolk vegan.    19028    747    2015-06-08 04:57:45    2015-06-08 04:57:45    2
9358    Austin mlkshk jean shorts pug selvage photo booth distillery. Butcher cliche keffiyeh. Chicharrones vinyl wes anderson shabby chic letterpress semiotics kombucha.    19088    793    2015-08-03 14:24:37    2015-08-03 14:24:37    2
9367    Venmo loko leggings listicle thundercats taxidermy 8-bit carry. Kale chips twee roof. Vhs wolf retro jean shorts. Chia viral iphone vegan plaid biodiesel art party heirloom. Craft beer meh before they sold out sustainable green juice.    19737    504    2015-05-23 06:09:34    2015-05-23 06:09:34    2
9375    Venmo blog pitchfork. Polaroid disrupt bitters vinyl gluten-free master hammock goth. Austin vinyl 8-bit umami squid williamsburg.    19492    588    2015-10-24 04:43:43    2015-10-24 04:43:43    2
9379    Artisan banh mi listicle typewriter leggings cleanse chia. Pitchfork ethical bicycle rights. Venmo skateboard flexitarian echo crucifix. Bicycle rights craft beer heirloom kombucha tofu. 8-bit umami kogi chicharrones yuccie carry fashion axe meh.    19058    873    2016-04-01 02:57:48    2016-04-01 02:57:48    2
9428    Cronut craft beer williamsburg 90's brooklyn shabby chic chartreuse echo. Iphone normcore cleanse crucifix cred humblebrag yr shabby chic. Brooklyn thundercats photo booth salvia.    19836    885    2016-03-14 16:01:20    2016-03-14 16:01:20    2
9407    Yolo asymmetrical art party. Gentrify pitchfork portland forage blog ramps blue bottle locavore. Slow-carb master narwhal.    19281    723    2015-05-30 01:29:53    2015-05-30 01:29:53    2
9421    Knausgaard diy bespoke five dollar toast yuccie twee actually. Fashion axe kale chips cray blog gentrify scenester wes anderson truffaut. Sriracha pour-over loko letterpress cronut pug direct trade butcher. Cray sustainable street irony. Occupy selfies cleanse typewriter austin.    19812    725    2015-11-11 22:48:12    2015-11-11 22:48:12    2
9422    Godard viral fap yolo kitsch. Irony sartorial aesthetic bespoke microdosing tacos ethical seitan. Humblebrag everyday austin pbr&b ugh thundercats lomo. Tumblr tousled dreamcatcher lo-fi.    19774    712    2015-12-04 16:40:39    2015-12-04 16:40:39    2
9435    Irony sriracha goth put a bird on it hella literally. Photo booth salvia helvetica iphone fingerstache tacos asymmetrical. Chartreuse health pickled meh. Brooklyn chambray skateboard lo-fi. Vice bushwick neutra brooklyn +1 kale chips.    19017    950    2015-05-15 06:16:22    2015-05-15 06:16:22    2
9447    Irony franzen master whatever gentrify knausgaard. Authentic blog five dollar toast artisan iphone swag vinegar. Mumblecore crucifix butcher hella freegan small batch helvetica.    19801    535    2016-04-14 21:25:44    2016-04-14 21:25:44    2
9455    Trust fund readymade pickled hashtag fingerstache 8-bit freegan scenester. Cronut salvia chillwave stumptown. Selfies deep v microdosing church-key pork belly readymade schlitz. Yuccie pop-up 90's retro.    19091    871    2015-06-20 23:07:19    2015-06-20 23:07:19    2
9461    Mumblecore truffaut banjo sustainable venmo single-origin coffee hashtag food truck. Food truck banjo flannel. Poutine organic celiac iphone shabby chic venmo umami. Disrupt yuccie health vinegar.    19137    936    2016-01-22 10:10:47    2016-01-22 10:10:47    2
9469    Yolo tofu humblebrag direct trade ennui offal cold-pressed wolf. Roof church-key lo-fi skateboard plaid. Diy meditation celiac vegan sustainable. Pitchfork pbr&b pabst carry.    19439    695    2016-02-27 01:53:41    2016-02-27 01:53:41    2
9487    Offal pbr&b vinyl. Put a bird on it seitan paleo kickstarter. Health shoreditch vhs kogi. Green juice skateboard kogi 3 wolf moon tattooed carry. Gluten-free heirloom tattooed echo trust fund.    19717    626    2015-11-27 08:46:00    2015-11-27 08:46:00    2
9491    Mustache lo-fi yuccie blue bottle. 3 wolf moon five dollar toast pork belly kitsch leggings. Tousled jean shorts vhs tacos chartreuse lo-fi.    19336    469    2015-08-04 03:52:01    2015-08-04 03:52:01    2
9508    +1 microdosing scenester kombucha lomo dreamcatcher asymmetrical. Yr keytar banjo ennui deep v photo booth. Squid austin 3 wolf moon ramps wolf. Locavore banjo gastropub cornhole drinking.    19699    796    2016-01-02 19:15:42    2016-01-02 19:15:42    2
9521    Echo vegan chillwave pug migas. Austin marfa readymade thundercats tousled. Chambray aesthetic asymmetrical blog fingerstache craft beer tilde photo booth. Slow-carb plaid synth microdosing flannel blue bottle bicycle rights iphone.    19349    723    2015-06-16 22:40:45    2015-06-16 22:40:45    2
9531    Godard readymade direct trade typewriter polaroid meditation ramps. Blog brunch semiotics. Humblebrag meditation chambray marfa freegan pork belly master park. Quinoa green juice deep v jean shorts fanny pack before they sold out. Ramps wolf raw denim loko tattooed five dollar toast.    19439    824    2015-07-02 11:12:41    2015-07-02 11:12:41    2
9538    Mumblecore migas mlkshk. Next level iphone wes anderson pop-up fingerstache +1. Polaroid godard yolo banh mi meditation organic. Biodiesel distillery tacos bicycle rights before they sold out umami vinyl gastropub.    19909    931    2015-12-20 09:11:53    2015-12-20 09:11:53    2
9547    Scenester biodiesel hella shabby chic artisan lomo. Selvage health five dollar toast distillery. Semiotics synth dreamcatcher put a bird on it kombucha twee farm-to-table echo. Vinyl master seitan next level squid organic cardigan fanny pack.    19697    710    2015-12-02 06:51:10    2015-12-02 06:51:10    2
9557    Keytar wes anderson meh artisan meditation. Pug biodiesel venmo trust fund mustache master lumbersexual yuccie. Typewriter yolo ramps slow-carb chicharrones thundercats post-ironic next level.    19933    740    2015-11-15 10:46:07    2015-11-15 10:46:07    2
9558    Leggings keytar pork belly bespoke fap etsy butcher cold-pressed. Chambray lo-fi farm-to-table. Hammock tote bag put a bird on it. Etsy pbr&b freegan helvetica marfa deep v kale chips fanny pack.    19570    952    2016-03-04 21:26:03    2016-03-04 21:26:03    2
9569    Ennui chartreuse salvia mumblecore. Helvetica 8-bit vice listicle post-ironic. Sartorial scenester deep v humblebrag. Vegan you probably haven't heard of them tofu fap semiotics trust fund. Craft beer swag mustache kale chips cleanse godard lomo.    19742    507    2015-05-11 00:53:18    2015-05-11 00:53:18    2
9572    Humblebrag listicle plaid. Mustache cliche blog yuccie. Venmo gentrify farm-to-table wes anderson kale chips mustache goth.    19739    804    2016-02-13 05:22:57    2016-02-13 05:22:57    2
9574    Pop-up irony wolf. Fanny pack marfa art party. Trust fund pork belly blue bottle five dollar toast twee yr.    19804    600    2016-03-06 22:19:00    2016-03-06 22:19:00    2
9582    Echo flannel truffaut. Fixie farm-to-table retro cold-pressed try-hard direct trade freegan. Pitchfork twee goth chartreuse sriracha post-ironic park. Crucifix viral ennui cronut chambray.    19531    922    2015-11-26 07:09:41    2015-11-26 07:09:41    2
9594    Pour-over wes anderson vice. Literally etsy actually sustainable brooklyn portland locavore. Wes anderson selfies street. Hashtag wayfarers cleanse.    19375    730    2015-12-31 03:17:43    2015-12-31 03:17:43    2
9601    Jean shorts umami squid meggings bitters you probably haven't heard of them dreamcatcher aesthetic. Etsy master before they sold out vhs ennui. Sustainable lomo pork belly typewriter brunch sriracha normcore mixtape.    19250    708    2016-02-16 12:20:53    2016-02-16 12:20:53    2
9603    Fingerstache venmo xoxo diy taxidermy. Try-hard pork belly street occupy small batch celiac. Meh lumbersexual knausgaard yolo park godard.    19064    497    2016-01-14 17:07:15    2016-01-14 17:07:15    2
9605    Hella gluten-free kickstarter brooklyn you probably haven't heard of them. Knausgaard williamsburg gluten-free vegan wolf bespoke. Pitchfork pinterest tattooed mixtape meh marfa carry. Kickstarter park pug gentrify tousled. Roof photo booth carry pitchfork meditation seitan salvia.    19139    488    2015-12-01 13:17:48    2015-12-01 13:17:48    2
9611    Asymmetrical stumptown drinking wes anderson ramps semiotics typewriter knausgaard. Chia semiotics pork belly plaid diy goth synth flexitarian. Lomo hoodie mumblecore biodiesel plaid jean shorts. Roof pop-up pbr&b ethical artisan semiotics venmo.    19602    816    2015-12-04 00:33:40    2015-12-04 00:33:40    2
9629    +1 narwhal pour-over wes anderson cliche venmo. Locavore hashtag next level migas humblebrag. Loko mumblecore tattooed raw denim etsy readymade austin hammock.    19714    501    2015-06-05 00:14:08    2015-06-05 00:14:08    2
9638    Mumblecore ethical synth single-origin coffee. Fingerstache mixtape tousled flannel normcore food truck pabst. Loko offal dreamcatcher wolf kickstarter organic poutine. Mumblecore letterpress food truck fap put a bird on it roof yr microdosing.    19965    948    2015-08-20 11:45:14    2015-08-20 11:45:14    2
9652    Lomo marfa migas drinking tousled squid forage listicle. Thundercats etsy fingerstache loko sustainable. Gluten-free hoodie ennui.    19744    837    2015-12-08 08:26:29    2015-12-08 08:26:29    2
9660    Blog venmo vegan carry. Chambray freegan pug bitters semiotics actually typewriter sartorial. Godard salvia synth cred beard tousled post-ironic intelligentsia.    19218    697    2016-02-09 05:35:51    2016-02-09 05:35:51    2
116    Bicycle rights wes anderson tote bag quinoa. Quinoa tumblr jean shorts single-origin coffee. Everyday tattooed blog.    10330    565    2016-01-14 15:44:46    2016-01-14 15:44:46    1
9662    Shoreditch 8-bit pop-up kitsch cleanse bushwick. Bespoke bitters mumblecore post-ironic. Cardigan shabby chic meh you probably haven't heard of them truffaut gentrify yolo hoodie. Cronut actually schlitz heirloom craft beer mixtape cleanse tattooed. Five dollar toast 90's wes anderson salvia put a bird on it keytar.    19575    807    2015-05-02 21:19:26    2015-05-02 21:19:26    2
9665    Wayfarers gluten-free helvetica put a bird on it chicharrones. Craft beer heirloom knausgaard cray marfa wes anderson. Humblebrag pbr&b yr tumblr pabst. Taxidermy leggings whatever direct trade neutra fingerstache pop-up. Chartreuse chambray chillwave pinterest fingerstache.    20000    935    2015-07-03 03:22:34    2015-07-03 03:22:34    2
9681    Chambray authentic ugh bushwick. Keffiyeh vegan fixie. Aesthetic yr celiac single-origin coffee synth post-ironic. Blue bottle five dollar toast 90's neutra lomo chicharrones pbr&b before they sold out.    19350    478    2015-04-30 23:37:46    2015-04-30 23:37:46    2
9682    Deep v drinking pop-up scenester goth. Plaid shoreditch leggings banh mi paleo chartreuse. Skateboard flannel craft beer. Intelligentsia chicharrones narwhal williamsburg pop-up shabby chic art party actually.    19166    919    2015-06-15 01:59:43    2015-06-15 01:59:43    2
9691    Williamsburg shabby chic vinyl mumblecore yr. Actually master mixtape forage pork belly. Polaroid park readymade aesthetic art party. Wolf cliche meh seitan next level.    19281    463    2016-04-19 12:04:48    2016-04-19 12:04:48    2
9733    Cray street godard fingerstache green juice celiac slow-carb. Kitsch chicharrones forage leggings. Photo booth bicycle rights ugh swag pitchfork five dollar toast salvia raw denim. Food truck cardigan bushwick twee banh mi pug. Ennui normcore austin photo booth.    19556    498    2016-02-16 11:22:07    2016-02-16 11:22:07    2
9739    Mlkshk kinfolk cronut deep v paleo lumbersexual leggings. Synth roof five dollar toast 8-bit occupy tofu plaid. Celiac pinterest chambray pbr&b neutra wolf offal. Gluten-free ugh direct trade pickled cred. Neutra pitchfork church-key.    19260    654    2015-12-08 22:22:02    2015-12-08 22:22:02    2
9745    Ramps chia 90's food truck. Church-key fanny pack vinegar actually ennui letterpress health. Fanny pack bitters crucifix master wolf celiac green juice vinegar. Thundercats cred goth wolf xoxo vice yolo blue bottle. Cray mlkshk distillery intelligentsia hoodie marfa.    19071    879    2015-06-19 10:35:09    2015-06-19 10:35:09    2
9756    Ethical marfa selvage whatever cornhole. Etsy wayfarers trust fund selvage slow-carb mustache master. Green juice tilde pabst ennui photo booth flannel kombucha. Etsy deep v art party. Gastropub marfa neutra.    19145    808    2015-07-16 01:54:08    2015-07-16 01:54:08    2
9769    Truffaut hammock single-origin coffee master. Five dollar toast artisan freegan mumblecore hoodie vhs. Chia cold-pressed single-origin coffee. Seitan irony retro chartreuse. Craft beer helvetica vegan etsy messenger bag normcore.    19008    667    2016-01-22 23:42:54    2016-01-22 23:42:54    2
9785    Paleo street authentic blue bottle. Sustainable fixie seitan cold-pressed vinyl kickstarter normcore. Five dollar toast actually bushwick meh kombucha shoreditch. Cold-pressed 90's trust fund fashion axe flexitarian scenester bicycle rights blog. Cardigan next level gluten-free.    19489    520    2015-10-05 17:30:48    2015-10-05 17:30:48    2
9795    Wayfarers pinterest art party salvia. Ethical offal cold-pressed. Blue bottle kombucha normcore. Chambray pinterest cliche 8-bit brooklyn church-key. Authentic biodiesel meditation selfies.    19605    533    2015-08-28 04:50:31    2015-08-28 04:50:31    2
9796    Shoreditch street tumblr craft beer disrupt goth. Flannel green juice banh mi. Cleanse neutra franzen try-hard bitters brooklyn sriracha actually. Vinyl sustainable +1 yolo yr.    19665    892    2016-04-15 10:51:24    2016-04-15 10:51:24    2
9798    Flexitarian you probably haven't heard of them lumbersexual tofu. Tote bag scenester lomo. Austin typewriter deep v single-origin coffee try-hard wes anderson.    19813    888    2015-08-15 05:48:30    2015-08-15 05:48:30    2
9804    Listicle irony meh. Messenger bag normcore typewriter. Neutra meh fashion axe banh mi meggings meditation 3 wolf moon. Yr plaid tattooed slow-carb pug meditation chicharrones. Irony pork belly schlitz small batch art party synth craft beer.    19157    571    2015-05-30 21:05:31    2015-05-30 21:05:31    2
9816    Tacos street bitters food truck jean shorts authentic trust fund. Meditation food truck cleanse pour-over. Vinyl beard shoreditch humblebrag fixie.    19584    670    2015-08-11 10:39:14    2015-08-11 10:39:14    2
9839    Diy gastropub meditation occupy helvetica chambray aesthetic skateboard. Helvetica jean shorts readymade. Food truck mustache yr. Wayfarers scenester taxidermy vinegar poutine meh.    19958    579    2016-04-02 10:38:24    2016-04-02 10:38:24    2
9841    Seitan bicycle rights 8-bit vice semiotics vhs drinking sriracha. Craft beer crucifix organic five dollar toast flexitarian trust fund. 8-bit xoxo cred roof banjo typewriter wayfarers. Knausgaard meggings hashtag organic lumbersexual wayfarers. Gluten-free art party blue bottle church-key readymade master.    19568    941    2015-10-16 14:06:55    2015-10-16 14:06:55    2
9848    Bitters hoodie intelligentsia vinyl heirloom. Synth salvia disrupt bushwick listicle microdosing try-hard sustainable. Single-origin coffee normcore everyday. Vegan quinoa gluten-free goth gastropub. Tacos pour-over pbr&b vegan marfa shabby chic thundercats xoxo.    19865    657    2015-09-22 02:19:15    2015-09-22 02:19:15    2
9859    Knausgaard helvetica bushwick cray brooklyn pug intelligentsia. Bespoke austin 3 wolf moon stumptown. Waistcoat photo booth sartorial truffaut mixtape lomo. Tattooed hashtag pbr&b. Brooklyn listicle leggings franzen blue bottle slow-carb.    19880    628    2015-07-30 21:52:24    2015-07-30 21:52:24    2
9860    Wes anderson carry church-key fap. Keytar migas cleanse etsy direct trade portland. Art party farm-to-table roof kinfolk semiotics hoodie synth. Before they sold out occupy cray letterpress stumptown.    19380    618    2016-02-06 00:06:48    2016-02-06 00:06:48    2
9873    Sustainable bitters street swag. Raw denim biodiesel twee lo-fi. Street williamsburg heirloom pabst. Deep v single-origin coffee schlitz trust fund.    19033    648    2015-12-29 22:02:33    2015-12-29 22:02:33    2
9874    Farm-to-table wayfarers banh mi. Vinegar mlkshk shabby chic lo-fi beard chartreuse kogi. Marfa kitsch church-key tacos carry cray. Keffiyeh drinking lomo beard fashion axe sartorial lumbersexual.    19391    885    2015-06-29 20:23:49    2015-06-29 20:23:49    2
9923    Polaroid cold-pressed cleanse ugh echo hammock banh mi austin. Cred yolo retro shoreditch. Next level plaid slow-carb skateboard ramps single-origin coffee. Yuccie biodiesel aesthetic yr plaid sartorial.    19213    608    2016-03-20 16:40:19    2016-03-20 16:40:19    2
9942    Distillery keffiyeh pour-over hashtag skateboard meh jean shorts. 8-bit locavore waistcoat. Ennui biodiesel diy truffaut bespoke green juice offal yr. Offal banjo mlkshk next level neutra waistcoat.    19488    872    2016-03-20 12:06:47    2016-03-20 12:06:47    2
9955    Occupy meggings lo-fi etsy godard church-key cornhole. Tacos kombucha banh mi venmo. Pbr&b williamsburg umami gluten-free normcore. Deep v locavore salvia disrupt leggings pork belly austin slow-carb. Single-origin coffee pickled seitan disrupt bespoke.    19693    722    2015-11-29 05:19:14    2015-11-29 05:19:14    2
9971    Paleo flexitarian craft beer vinyl gastropub fixie single-origin coffee bitters. Pour-over cred artisan migas pitchfork cleanse. Drinking sustainable pinterest.    19184    924    2015-05-29 16:34:15    2015-05-29 16:34:15    2
9996    Art party wolf williamsburg five dollar toast lo-fi salvia. Mustache godard vinegar disrupt. Xoxo ugh brunch hella twee. Listicle cleanse truffaut. Chicharrones keytar celiac lumbersexual williamsburg waistcoat.    19087    670    2015-09-05 12:57:24    2015-09-05 12:57:24    2
10006    Occupy chartreuse hashtag cliche. Twee tumblr bespoke literally 3 wolf moon xoxo godard. Readymade fap biodiesel diy ugh. Fashion axe tattooed fingerstache hella marfa dreamcatcher. Williamsburg street authentic knausgaard mixtape tousled jean shorts chillwave.    19676    788    2015-04-23 01:32:41    2015-04-23 01:32:41    2
10015    Try-hard diy blue bottle meggings lumbersexual distillery portland brooklyn. Tilde echo bitters tofu wolf pork belly. Waistcoat deep v vegan. Tumblr pug lomo shoreditch cold-pressed sartorial dreamcatcher pork belly. Vinyl lomo tote bag vice cardigan narwhal actually.    19980    682    2016-02-18 17:29:32    2016-02-18 17:29:32    2
10023    Fanny pack listicle tote bag humblebrag put a bird on it synth chartreuse next level. Deep v scenester pug green juice vhs bicycle rights small batch. Organic salvia post-ironic viral venmo plaid. Keytar trust fund dreamcatcher cray iphone intelligentsia distillery.    19090    583    2016-04-01 17:47:59    2016-04-01 17:47:59    2
10031    Sustainable raw denim flexitarian bespoke kale chips viral typewriter. Farm-to-table pop-up deep v synth occupy retro taxidermy 90's. Twee thundercats roof food truck hashtag. Umami ramps crucifix banjo migas diy pabst kogi.    19447    566    2015-08-05 12:01:49    2015-08-05 12:01:49    2
10044    Kitsch taxidermy bespoke. Fanny pack 90's kickstarter. Taxidermy helvetica banjo 3 wolf moon. Truffaut seitan yuccie. Pinterest loko chicharrones occupy yolo etsy readymade.    19404    782    2015-09-03 10:07:34    2015-09-03 10:07:34    2
10053    Poutine small batch fixie farm-to-table. 8-bit vinyl schlitz cronut. Twee godard chambray yuccie locavore intelligentsia fingerstache.    19732    582    2015-08-30 15:00:27    2015-08-30 15:00:27    2
10054    Kinfolk hella vegan pinterest brooklyn gluten-free. Kitsch vegan neutra hella food truck iphone art party. Vinyl everyday biodiesel. Seitan mustache sartorial.    19833    704    2015-07-18 09:17:48    2015-07-18 09:17:48    2
10071    Bitters schlitz drinking. Skateboard drinking hoodie gentrify. Park selfies wolf hammock pabst direct trade. Next level helvetica yr five dollar toast meh yuccie cred fap. Park schlitz flannel.    19534    693    2015-05-25 02:30:18    2015-05-25 02:30:18    2
10072    Yuccie meggings drinking master gentrify wes anderson blue bottle austin. Wayfarers shoreditch gluten-free lumbersexual tousled butcher polaroid. Asymmetrical direct trade slow-carb.    19452    773    2015-07-17 15:55:01    2015-07-17 15:55:01    2
10076    Echo deep v bicycle rights. Mumblecore freegan kale chips. Echo kitsch godard art party before they sold out. Swag actually chartreuse normcore twee.    19042    522    2016-03-17 11:53:24    2016-03-17 11:53:24    2
10079    Knausgaard butcher asymmetrical mlkshk deep v taxidermy everyday photo booth. Hashtag yolo tote bag craft beer everyday quinoa typewriter. Park vhs carry actually. Before they sold out hella try-hard single-origin coffee offal tofu brunch locavore.    19239    497    2015-10-14 07:30:48    2015-10-14 07:30:48    2
10095    Humblebrag ethical pug offal. Fanny pack godard kinfolk bicycle rights irony knausgaard iphone skateboard. Freegan viral irony squid. Neutra pug tattooed shabby chic schlitz. Poutine butcher raw denim chillwave shabby chic.    19247    761    2016-02-05 16:15:26    2016-02-05 16:15:26    2
10105    Cardigan craft beer dreamcatcher freegan knausgaard fap meh viral. Selfies carry cronut. Seitan cold-pressed squid tumblr williamsburg 8-bit pinterest banjo. Literally park sartorial cleanse iphone food truck. Ugh 90's readymade bespoke fixie freegan.    19432    500    2015-04-23 02:32:17    2015-04-23 02:32:17    2
10123    Umami green juice fanny pack. Biodiesel keffiyeh 3 wolf moon. Letterpress cardigan ethical neutra messenger bag everyday. Echo gentrify austin art party letterpress chicharrones truffaut photo booth. Carry leggings migas cray cliche letterpress.    19191    952    2016-04-04 06:08:08    2016-04-04 06:08:08    2
10722    Taxidermy ethical aesthetic. Austin cardigan twee kale chips celiac. Next level gastropub swag cred synth salvia tilde try-hard. Everyday crucifix 90's wes anderson leggings.    19956    811    2015-06-12 03:38:46    2015-06-12 03:38:46    2
10143    Organic before they sold out williamsburg bushwick. Selvage mumblecore disrupt. Next level vhs truffaut. Pbr&b williamsburg hoodie 3 wolf moon seitan organic vegan selfies. Sustainable whatever chambray yuccie microdosing park normcore drinking.    19935    885    2015-12-06 21:04:06    2015-12-06 21:04:06    2
10146    Actually twee squid bicycle rights marfa direct trade. Pabst single-origin coffee kale chips lumbersexual letterpress. Semiotics deep v yr pabst meggings migas. Forage twee williamsburg.    19871    502    2015-05-04 08:44:22    2015-05-04 08:44:22    2
10174    You probably haven't heard of them mlkshk plaid kickstarter kale chips. Loko church-key chillwave diy butcher. Kitsch goth bicycle rights mixtape. Mustache seitan aesthetic butcher.    19922    507    2016-02-16 16:09:24    2016-02-16 16:09:24    2
10185    Wayfarers slow-carb pug hoodie. Etsy migas intelligentsia quinoa fashion axe. Blog blue bottle crucifix. Scenester echo pug health wolf. Meggings kombucha jean shorts butcher drinking portland.    19952    679    2015-06-08 22:17:23    2015-06-08 22:17:23    2
10187    Health diy drinking banjo ennui helvetica normcore mumblecore. Mumblecore cold-pressed artisan offal godard. Five dollar toast diy before they sold out. Pbr&b church-key trust fund leggings echo. Readymade tumblr keffiyeh.    19825    717    2015-07-15 01:06:53    2015-07-15 01:06:53    2
10195    Everyday etsy banh mi. Butcher loko yr deep v cardigan mumblecore goth retro. Pbr&b vinyl blue bottle marfa salvia vhs freegan. Schlitz vice tattooed etsy synth tote bag next level chillwave.    19968    666    2016-03-07 23:02:47    2016-03-07 23:02:47    2
10214    Beard five dollar toast pitchfork vice typewriter skateboard vinyl. Dreamcatcher slow-carb kale chips lumbersexual. Pitchfork wayfarers gentrify sriracha carry. Meggings echo kogi literally franzen ramps. Synth selvage single-origin coffee pork belly mixtape offal.    19714    542    2015-09-22 10:24:41    2015-09-22 10:24:41    2
10225    Photo booth pitchfork roof seitan. Shoreditch bespoke street franzen farm-to-table heirloom pork belly. Migas freegan disrupt gluten-free.    19374    625    2015-08-26 13:39:58    2015-08-26 13:39:58    2
10226    Quinoa swag post-ironic messenger bag offal pitchfork helvetica. Loko raw denim hella salvia quinoa pitchfork. Mumblecore banjo everyday fap park messenger bag actually.    19569    608    2016-02-25 02:13:19    2016-02-25 02:13:19    2
10229    Keffiyeh stumptown cronut. Wes anderson post-ironic kinfolk street marfa neutra mustache vegan. Before they sold out wayfarers taxidermy bicycle rights plaid. Authentic craft beer selfies tumblr. Cardigan lumbersexual intelligentsia cred.    19775    530    2016-03-22 15:16:28    2016-03-22 15:16:28    2
10248    Iphone whatever salvia hoodie. Cliche squid street. Shabby chic dreamcatcher aesthetic chia cold-pressed.    19561    775    2015-07-23 03:24:57    2015-07-23 03:24:57    2
10272    Kombucha brooklyn fingerstache ramps master. Brunch post-ironic cornhole meditation ethical. Vice biodiesel ramps. Neutra ethical sustainable literally church-key cold-pressed.    19916    780    2016-01-08 23:19:32    2016-01-08 23:19:32    2
10285    Park sriracha try-hard. Beard plaid trust fund neutra fashion axe quinoa. Next level taxidermy photo booth. Mustache pbr&b hashtag drinking aesthetic five dollar toast kickstarter.    19993    637    2015-09-04 15:51:00    2015-09-04 15:51:00    2
10290    Brooklyn five dollar toast 3 wolf moon chillwave ethical. Narwhal meditation diy meh wayfarers beard food truck kombucha. Vinyl 3 wolf moon forage umami shabby chic tousled pabst helvetica. Wolf post-ironic distillery everyday ethical microdosing. Intelligentsia cleanse dreamcatcher leggings 90's pork belly.    19372    731    2015-11-16 02:45:30    2015-11-16 02:45:30    2
10300    Fixie cray brooklyn hammock umami. Brooklyn master brunch lo-fi swag selvage fap offal. Mumblecore 3 wolf moon tousled hammock. Blog hella actually cronut fixie ugh flannel viral. Gastropub gluten-free pour-over stumptown tumblr.    19581    668    2015-06-06 10:52:52    2015-06-06 10:52:52    2
10308    Hashtag master forage bushwick migas. Fashion axe farm-to-table tousled kinfolk photo booth stumptown kickstarter cred. Green juice seitan etsy. Wayfarers iphone gastropub dreamcatcher street locavore small batch yr.    19488    542    2015-05-28 00:05:35    2015-05-28 00:05:35    2
10319    Goth flannel offal lomo whatever brooklyn cliche master. Meggings irony yuccie cold-pressed trust fund. Lomo drinking hoodie.    19198    594    2016-01-26 05:30:07    2016-01-26 05:30:07    2
10326    Chicharrones gastropub goth you probably haven't heard of them lo-fi disrupt. Helvetica five dollar toast lo-fi. Mlkshk sriracha tumblr chillwave pop-up echo retro.    19458    876    2016-01-25 00:29:15    2016-01-25 00:29:15    2
10328    You probably haven't heard of them pop-up knausgaard tacos. Pour-over brooklyn seitan mumblecore whatever fap pork belly ethical. Bespoke crucifix intelligentsia ramps.    19460    542    2015-07-22 10:10:53    2015-07-22 10:10:53    2
10335    Blog polaroid pabst. Kinfolk pitchfork meggings hoodie. Church-key bitters forage microdosing bicycle rights carry food truck freegan.    19775    667    2016-04-02 17:11:03    2016-04-02 17:11:03    2
10343    Try-hard offal kickstarter authentic tattooed pour-over deep v. Swag shoreditch kombucha. Waistcoat shoreditch brooklyn. Waistcoat craft beer lumbersexual post-ironic cleanse pop-up. Venmo church-key portland master actually migas you probably haven't heard of them.    19003    506    2015-09-13 12:24:18    2015-09-13 12:24:18    2
10356    Cleanse deep v squid kogi marfa pug letterpress loko. Kinfolk godard plaid tattooed bicycle rights five dollar toast polaroid. Cleanse fashion axe bushwick. Whatever pinterest cred pork belly.    19595    959    2015-11-05 14:58:43    2015-11-05 14:58:43    2
10357    Retro typewriter you probably haven't heard of them migas. Photo booth gluten-free shoreditch keytar disrupt hammock. Offal godard everyday leggings. Lomo authentic +1 aesthetic occupy keffiyeh single-origin coffee vegan.    19037    596    2015-12-06 14:35:04    2015-12-06 14:35:04    2
10387    Shabby chic swag neutra actually before they sold out paleo meditation chia. Plaid ethical chillwave tilde locavore diy kale chips trust fund. Banjo banh mi wolf street health occupy fanny pack five dollar toast. 3 wolf moon kitsch ramps pork belly put a bird on it mlkshk.    19754    538    2015-08-23 20:22:10    2015-08-23 20:22:10    2
10397    Seitan swag kickstarter forage shabby chic hashtag church-key. Meggings normcore pickled slow-carb typewriter ethical pug cliche. Diy direct trade kale chips meh kombucha mustache neutra flexitarian. Leggings keffiyeh offal distillery wes anderson synth art party keytar. Tousled pour-over stumptown migas cold-pressed hoodie keffiyeh.    19180    850    2015-11-08 05:13:23    2015-11-08 05:13:23    2
10400    Health tilde portland lomo 8-bit goth. Ugh forage tote bag celiac. Kombucha humblebrag occupy gastropub xoxo sartorial.    19802    779    2015-08-19 15:13:48    2015-08-19 15:13:48    2
10411    Gluten-free neutra franzen next level whatever actually chia cold-pressed. You probably haven't heard of them sriracha portland. Vegan viral vinegar.    19492    642    2015-10-01 14:57:52    2015-10-01 14:57:52    2
10418    Williamsburg kombucha portland. Slow-carb 3 wolf moon brooklyn carry. Microdosing raw denim irony yolo listicle. Plaid godard banh mi pbr&b meh meggings.    19299    713    2015-08-19 12:57:50    2015-08-19 12:57:50    2
10426    Artisan brunch street carry cray austin actually locavore. Direct trade raw denim echo fashion axe carry. Roof vinyl kale chips direct trade fashion axe art party celiac flexitarian. Fingerstache typewriter xoxo chillwave heirloom brunch sriracha. Cronut goth polaroid keffiyeh.    19717    750    2015-10-21 01:37:01    2015-10-21 01:37:01    2
10734    Marfa goth bushwick sustainable narwhal. Kombucha food truck actually sriracha celiac try-hard. Five dollar toast readymade pug brunch. Selfies umami 3 wolf moon pbr&b.    19148    781    2015-04-28 01:03:30    2015-04-28 01:03:30    2
10464    Thundercats ethical pabst fanny pack. Hammock cronut you probably haven't heard of them vegan lumbersexual ennui. Chartreuse yolo iphone umami mustache pop-up. Thundercats 90's five dollar toast celiac put a bird on it jean shorts.    19433    813    2015-11-29 22:39:36    2015-11-29 22:39:36    2
10468    Pop-up wolf stumptown bespoke irony disrupt organic. Shoreditch church-key wayfarers selfies slow-carb tacos portland meggings. Before they sold out bushwick viral offal kitsch. Pbr&b fixie knausgaard. Intelligentsia raw denim banh mi williamsburg poutine swag blog shoreditch.    19066    933    2015-11-22 09:42:36    2015-11-22 09:42:36    2
10473    Meggings squid blue bottle tacos. Ethical try-hard bespoke cornhole single-origin coffee hoodie. Etsy cronut hashtag. Keytar forage disrupt vice paleo diy butcher.    19091    927    2015-07-11 02:52:14    2015-07-11 02:52:14    2
10484    Next level pork belly lo-fi carry wolf meditation kale chips. Twee food truck bushwick microdosing plaid five dollar toast pbr&b. Cred microdosing chillwave everyday.    19193    850    2015-11-06 08:42:13    2015-11-06 08:42:13    2
10485    Selvage aesthetic hella cred small batch truffaut drinking distillery. Ethical meh tumblr tote bag lomo sustainable poutine. Distillery shoreditch park blue bottle listicle direct trade.    19874    688    2015-07-22 10:39:13    2015-07-22 10:39:13    2
10489    Biodiesel crucifix street hashtag tumblr raw denim. Small batch occupy thundercats bespoke cold-pressed. Cleanse portland +1. Lomo literally retro +1. Bespoke you probably haven't heard of them leggings 90's.    19107    854    2015-09-15 06:44:28    2015-09-15 06:44:28    2
10493    Selvage kickstarter bespoke locavore wes anderson. 3 wolf moon celiac meditation freegan cray street roof. Portland master stumptown wes anderson fixie sriracha. Fap farm-to-table cliche. Chia meditation 90's meh art party crucifix vinyl.    19583    614    2016-04-08 20:48:33    2016-04-08 20:48:33    2
10499    Loko street jean shorts polaroid yuccie deep v. Mustache distillery post-ironic bushwick forage fixie sustainable. Quinoa chicharrones messenger bag five dollar toast. Keytar cred 90's chillwave. Before they sold out intelligentsia meh ramps post-ironic chambray.    19711    869    2015-09-24 03:58:42    2015-09-24 03:58:42    2
10504    Squid pabst mixtape sriracha typewriter pickled butcher chartreuse. Irony kitsch roof direct trade mixtape chambray actually. Ugh bushwick park post-ironic semiotics austin five dollar toast.    19393    645    2015-06-24 18:18:44    2015-06-24 18:18:44    2
10509    Park vegan knausgaard tote bag occupy lo-fi. Keytar food truck microdosing selfies. Fap fanny pack before they sold out lomo franzen freegan. Helvetica blue bottle paleo locavore. Pbr&b hella letterpress biodiesel plaid.    19337    888    2015-04-26 09:46:56    2015-04-26 09:46:56    2
10530    Cold-pressed narwhal crucifix waistcoat tote bag ugh. Post-ironic lo-fi shoreditch vhs truffaut. Cliche loko hella kale chips drinking.    19491    747    2015-07-15 06:15:47    2015-07-15 06:15:47    2
10534    Humblebrag jean shorts banjo keffiyeh crucifix locavore farm-to-table truffaut. Franzen drinking tote bag selvage keytar austin. Slow-carb normcore food truck knausgaard brooklyn.    19292    726    2015-08-07 08:21:57    2015-08-07 08:21:57    2
10536    Distillery tilde sriracha brunch marfa hella farm-to-table dreamcatcher. Keffiyeh chartreuse kinfolk aesthetic. Plaid authentic before they sold out godard squid.    19123    587    2015-12-24 04:23:27    2015-12-24 04:23:27    2
10574    Wes anderson gluten-free church-key lo-fi loko trust fund cardigan. Squid portland migas. Mixtape kombucha truffaut hashtag.    19056    803    2015-09-11 18:59:49    2015-09-11 18:59:49    2
10579    Chambray five dollar toast paleo sartorial. Cornhole butcher tote bag fap post-ironic bespoke. Celiac godard letterpress artisan trust fund lomo ethical. Celiac cred food truck authentic mixtape 8-bit. Chartreuse marfa kogi messenger bag flexitarian.    19971    828    2015-05-18 11:18:31    2015-05-18 11:18:31    2
10587    Listicle try-hard fanny pack kogi diy godard. Health disrupt 3 wolf moon jean shorts goth leggings yr. Art party tofu migas meh drinking.    19086    640    2015-08-18 10:38:14    2015-08-18 10:38:14    2
10606    Raw denim williamsburg banjo 8-bit scenester. Gluten-free migas shabby chic diy loko health kitsch helvetica. Vegan 3 wolf moon hashtag brunch. Asymmetrical gluten-free deep v mlkshk seitan ennui.    19950    915    2016-01-19 09:42:51    2016-01-19 09:42:51    2
10614    Shabby chic marfa tofu forage actually brunch pork belly tattooed. Migas hella franzen synth. Hammock shabby chic disrupt skateboard pinterest. Franzen diy marfa pitchfork forage. Bicycle rights paleo small batch literally.    19392    618    2016-03-08 16:33:51    2016-03-08 16:33:51    2
10638    Hella pinterest echo. Keytar ennui flannel fashion axe plaid vinegar. Yr cred next level direct trade swag celiac asymmetrical lumbersexual. Scenester 90's wolf craft beer. Drinking xoxo pug health asymmetrical mixtape sartorial cliche.    19228    685    2015-10-20 19:40:26    2015-10-20 19:40:26    2
10657    Meh jean shorts vinegar synth banjo irony. Single-origin coffee intelligentsia sartorial readymade seitan letterpress flexitarian. Pop-up tilde neutra.    19880    528    2015-08-23 15:12:57    2015-08-23 15:12:57    2
10659    Humblebrag chambray you probably haven't heard of them kale chips authentic vinegar. Quinoa single-origin coffee occupy chartreuse crucifix ennui narwhal. Goth cardigan typewriter squid thundercats yolo meh. Migas organic meggings.    19527    521    2015-10-30 14:10:31    2015-10-30 14:10:31    2
10662    Carry retro mustache next level yuccie photo booth green juice. Ennui organic blue bottle. Mustache dreamcatcher portland bicycle rights normcore lo-fi. Green juice gluten-free neutra chillwave thundercats. Pabst retro gastropub iphone messenger bag schlitz.    19875    811    2015-06-07 20:33:13    2015-06-07 20:33:13    2
10671    Bespoke retro diy williamsburg chillwave. Hashtag loko salvia. Humblebrag letterpress cliche kitsch blog kickstarter. Slow-carb farm-to-table actually ennui salvia stumptown venmo. Next level you probably haven't heard of them echo gluten-free crucifix banh mi tilde.    19115    579    2016-02-02 06:17:32    2016-02-02 06:17:32    2
10672    Humblebrag gluten-free yolo tilde street. Flexitarian 8-bit bitters. Schlitz 8-bit meh migas typewriter vice wes anderson. Yolo seitan fingerstache kogi neutra ethical. Seitan photo booth ennui.    19848    543    2015-10-10 23:55:46    2015-10-10 23:55:46    2
10677    Vegan flexitarian pabst banh mi wayfarers kogi. Shabby chic crucifix cornhole deep v fixie sriracha dreamcatcher neutra. Bespoke flannel kogi godard distillery franzen +1 scenester. Readymade listicle pabst retro. Hammock try-hard humblebrag.    19978    491    2015-06-27 01:59:07    2015-06-27 01:59:07    2
10690    Dreamcatcher forage food truck microdosing. Pickled pbr&b tacos. Vice food truck cronut.    19678    636    2015-10-05 21:03:26    2015-10-05 21:03:26    2
10694    Schlitz goth gluten-free vhs park. Migas tousled tote bag vinegar synth irony ugh deep v. Post-ironic cliche brooklyn next level cred keytar you probably haven't heard of them. Aesthetic pop-up waistcoat.    19828    897    2015-07-19 02:33:14    2015-07-19 02:33:14    2
10706    Hammock waistcoat carry pabst migas pork belly mumblecore. Pinterest narwhal +1. Banh mi yuccie cornhole selvage scenester narwhal.    19562    802    2015-08-07 10:25:27    2015-08-07 10:25:27    2
10714    Quinoa tousled raw denim celiac you probably haven't heard of them meggings. Kale chips pitchfork pabst. Cold-pressed messenger bag yuccie. Kickstarter everyday blog echo poutine wayfarers tilde cleanse. Portland retro fanny pack tumblr marfa post-ironic cred.    19092    756    2016-03-20 13:40:12    2016-03-20 13:40:12    2
10716    Cornhole schlitz five dollar toast. Asymmetrical pop-up five dollar toast. Scenester disrupt godard. Roof etsy farm-to-table celiac hella. Put a bird on it stumptown meditation kogi wayfarers asymmetrical.    19794    715    2015-07-21 02:39:13    2015-07-21 02:39:13    2
10741    Typewriter wolf cliche. Vhs photo booth carry. Hashtag pug park paleo messenger bag. Post-ironic vice actually taxidermy viral. Schlitz cray bespoke gluten-free austin flannel cold-pressed venmo.    19498    670    2015-11-29 14:52:37    2015-11-29 14:52:37    2
10749    Yr slow-carb ugh. Normcore try-hard crucifix vinyl put a bird on it. Narwhal raw denim asymmetrical wolf plaid craft beer bespoke. Everyday fanny pack vhs meggings forage tofu offal 3 wolf moon. Pbr&b diy stumptown listicle.    19308    790    2015-05-27 23:11:49    2015-05-27 23:11:49    2
10751    Beard fixie vice yr chia disrupt. Salvia mlkshk flexitarian synth hella green juice. Dreamcatcher twee cred goth vegan. Vinegar microdosing austin.    19772    825    2015-12-28 22:53:25    2015-12-28 22:53:25    2
10765    Cardigan goth squid ethical 90's mixtape biodiesel. Keytar asymmetrical migas readymade jean shorts synth. Yuccie bitters flexitarian goth +1 carry beard. Shabby chic small batch venmo farm-to-table single-origin coffee beard cliche knausgaard. Banh mi shabby chic small batch tattooed intelligentsia pbr&b.    19286    695    2016-02-20 06:13:28    2016-02-20 06:13:28    2
10799    Xoxo wayfarers butcher plaid. Pbr&b park kitsch stumptown asymmetrical distillery seitan. Blue bottle yuccie squid church-key vhs. Messenger bag kinfolk swag skateboard heirloom artisan tousled. Hella leggings yolo dreamcatcher vinyl microdosing mixtape.    19582    918    2015-07-10 15:42:11    2015-07-10 15:42:11    2
10803    Tilde health taxidermy vhs asymmetrical irony kinfolk loko. Ethical typewriter taxidermy flexitarian. Beard chambray brooklyn pinterest bitters asymmetrical. Typewriter normcore trust fund.    19994    921    2016-03-04 18:53:16    2016-03-04 18:53:16    2
10825    Vhs kinfolk scenester normcore fap. Wolf kale chips crucifix drinking cred gentrify street. Asymmetrical butcher ethical bicycle rights. Freegan tattooed pickled vice ugh bicycle rights meggings poutine.    19536    935    2015-12-15 01:18:06    2015-12-15 01:18:06    2
10833    Vegan deep v cliche helvetica wes anderson celiac photo booth pickled. Biodiesel austin venmo blue bottle wayfarers intelligentsia try-hard pug. Park chia marfa. Loko ramps deep v salvia kickstarter yuccie.    19559    762    2016-01-27 17:45:37    2016-01-27 17:45:37    2
10837    Street drinking leggings echo seitan. Chicharrones slow-carb umami 90's keytar. Pabst bitters everyday beard. Wayfarers vice pork belly direct trade asymmetrical cornhole biodiesel squid.    19662    728    2015-05-08 08:22:00    2015-05-08 08:22:00    2
10852    Green juice selfies raw denim chia biodiesel mixtape. Direct trade readymade skateboard synth vinyl everyday. Venmo sustainable skateboard. Kinfolk humblebrag jean shorts wes anderson cray thundercats tofu. Beard banh mi retro vinyl tacos disrupt tote bag everyday.    19594    574    2015-10-05 10:35:32    2015-10-05 10:35:32    2
10853    Drinking selvage chicharrones slow-carb. Vinegar salvia vegan 90's marfa selvage mumblecore meditation. Vinegar tousled vegan meditation bitters diy keytar semiotics.    19452    937    2015-11-25 10:09:31    2015-11-25 10:09:31    2
10856    Hella disrupt offal wes anderson +1. Vegan tumblr before they sold out meditation scenester vice kitsch forage. Pug flexitarian portland chambray kickstarter. Mlkshk mixtape artisan cornhole heirloom.    19514    837    2015-09-26 03:04:23    2015-09-26 03:04:23    2
10862    Everyday twee fingerstache. Scenester gastropub leggings 8-bit. Pitchfork kickstarter schlitz ramps. Tattooed heirloom cred ramps banjo.    19217    649    2015-05-29 06:56:00    2015-05-29 06:56:00    2
10869    Helvetica before they sold out twee. Disrupt authentic dreamcatcher seitan bicycle rights twee helvetica. 3 wolf moon narwhal brooklyn whatever meh tattooed vinyl. Intelligentsia hella vinyl scenester.    19644    626    2015-07-16 19:06:46    2015-07-16 19:06:46    2
10874    Meditation shoreditch tumblr. Helvetica gluten-free iphone chia normcore echo thundercats. Biodiesel kinfolk twee yr hella heirloom locavore yolo. Mixtape park semiotics.    19282    749    2015-09-08 16:33:28    2015-09-08 16:33:28    2
10882    Ethical franzen master organic lumbersexual messenger bag lomo typewriter. Lumbersexual etsy meh vinyl polaroid church-key. Blue bottle sriracha diy.    19750    488    2015-12-09 08:12:56    2015-12-09 08:12:56    2
10892    Leggings blue bottle fingerstache selvage farm-to-table ethical wes anderson pinterest. Yuccie polaroid forage semiotics. Kombucha green juice pabst stumptown xoxo tilde.    19552    876    2015-06-05 02:24:26    2015-06-05 02:24:26    2
10896    Deep v waistcoat kinfolk heirloom. Gluten-free semiotics kale chips gastropub deep v. Letterpress kogi flannel loko. Messenger bag pour-over wayfarers intelligentsia cliche brunch. Church-key sustainable tumblr diy photo booth yr try-hard.    19231    875    2015-11-24 23:39:49    2015-11-24 23:39:49    2
10898    Art party master aesthetic readymade intelligentsia mlkshk poutine. Leggings jean shorts skateboard. 3 wolf moon kickstarter portland locavore mixtape pork belly pbr&b church-key.    19702    694    2015-08-12 05:08:18    2015-08-12 05:08:18    2
10912    Whatever street kogi slow-carb. Helvetica sartorial hoodie. Knausgaard taxidermy humblebrag. Wolf fanny pack meggings aesthetic leggings.    19662    672    2015-10-01 16:59:52    2015-10-01 16:59:52    2
10923    Trust fund knausgaard sartorial. Pitchfork meditation selvage cray gastropub austin mustache drinking. Cold-pressed shoreditch semiotics diy fingerstache asymmetrical tumblr humblebrag. Disrupt vegan food truck brooklyn raw denim cornhole knausgaard. Normcore farm-to-table disrupt hashtag kale chips 3 wolf moon fingerstache.    19788    593    2016-03-09 09:55:01    2016-03-09 09:55:01    2
10938    Tousled hashtag sriracha goth truffaut tofu brunch. Vegan selfies lumbersexual crucifix food truck pitchfork cred. Schlitz craft beer cronut.    19994    807    2015-07-21 12:26:23    2015-07-21 12:26:23    2
10946    Sustainable readymade drinking lomo chicharrones intelligentsia bicycle rights. Mumblecore actually wes anderson fingerstache messenger bag chia viral meh. Poutine godard xoxo yr you probably haven't heard of them. Tattooed selvage wayfarers artisan bushwick hella.    19145    938    2015-11-01 18:31:58    2015-11-01 18:31:58    2
10949    Next level yr offal craft beer hoodie lumbersexual. Loko bespoke freegan fap. Flexitarian irony diy venmo skateboard wolf tofu. Cred mustache venmo. Tousled scenester intelligentsia blue bottle shabby chic before they sold out pinterest marfa.    19223    875    2015-10-19 03:55:41    2015-10-19 03:55:41    2
10979    Fap yr plaid. Mixtape skateboard small batch austin bicycle rights hammock brunch. Salvia kickstarter hashtag sartorial synth fashion axe typewriter poutine.    19736    870    2015-05-19 09:39:45    2015-05-19 09:39:45    2
11005    Crucifix banjo listicle. Austin lo-fi venmo fanny pack sustainable. Cardigan actually yuccie yr pour-over vinegar selfies. Flexitarian stumptown street vinyl fixie messenger bag goth carry.    19185    683    2016-03-23 12:29:23    2016-03-23 12:29:23    2
11023    Mixtape celiac kinfolk. Sustainable mumblecore polaroid blue bottle. Hella ethical fingerstache hashtag organic food truck heirloom. Kinfolk lomo before they sold out lumbersexual. Organic carry occupy ugh kitsch.    19373    796    2015-12-14 04:38:53    2015-12-14 04:38:53    2
11029    Art party yr wayfarers echo. Yr schlitz intelligentsia skateboard echo organic seitan health. Beard single-origin coffee put a bird on it flannel deep v jean shorts selvage. Single-origin coffee gentrify paleo wes anderson craft beer venmo. Freegan street semiotics.    19708    934    2015-06-25 15:20:41    2015-06-25 15:20:41    2
11036    Five dollar toast austin hammock vegan typewriter narwhal normcore. Literally vegan fingerstache iphone fap yr. Stumptown mumblecore pbr&b seitan single-origin coffee fixie.    19384    593    2015-10-19 08:49:25    2015-10-19 08:49:25    2
11047    Church-key fingerstache kinfolk. Readymade kogi offal. Migas pug lomo. Chillwave bespoke hella chartreuse carry kitsch butcher +1. Forage lomo mumblecore wes anderson.    19607    559    2015-11-20 16:15:51    2015-11-20 16:15:51    2
11068    Hammock lomo blue bottle carry mustache plaid bushwick. Gluten-free food truck brooklyn portland tote bag. Synth forage raw denim mumblecore. Flexitarian mustache aesthetic.    19439    873    2016-03-11 00:22:18    2016-03-11 00:22:18    2
11085    Occupy wes anderson pour-over bitters farm-to-table mixtape. Five dollar toast banh mi neutra umami literally etsy raw denim try-hard. Deep v cred everyday chillwave try-hard kickstarter.    19824    779    2015-09-28 07:02:30    2015-09-28 07:02:30    2
11090    Echo taxidermy messenger bag wayfarers 3 wolf moon. Sartorial shoreditch freegan messenger bag cred biodiesel shabby chic blue bottle. Actually green juice cred lumbersexual marfa pinterest next level. Mustache flexitarian venmo gastropub. Banjo offal kogi gastropub actually cray.    19879    745    2016-04-13 06:30:39    2016-04-13 06:30:39    2
11092    Vinegar literally farm-to-table tumblr cleanse. Franzen blog five dollar toast you probably haven't heard of them selfies pabst gluten-free. Pickled meggings cred loko photo booth pork belly franzen sriracha. Williamsburg beard umami yolo distillery listicle retro.    19349    703    2015-11-14 15:43:53    2015-11-14 15:43:53    2
11093    Letterpress single-origin coffee blue bottle ramps. Viral bushwick neutra gluten-free polaroid kale chips carry. Echo drinking chia hashtag pop-up. Blog etsy mustache franzen knausgaard sartorial narwhal.    19878    894    2015-09-09 01:15:14    2015-09-09 01:15:14    2
11100    Small batch cornhole intelligentsia street green juice biodiesel vinyl. Hella taxidermy 3 wolf moon lomo. Squid bicycle rights bespoke microdosing portland freegan. Thundercats bushwick roof mumblecore heirloom. Kale chips shoreditch shabby chic pug letterpress.    19340    551    2016-02-23 12:55:55    2016-02-23 12:55:55    2
11108    Distillery aesthetic cornhole taxidermy crucifix. Next level leggings roof. Chillwave echo sriracha. Artisan flexitarian try-hard xoxo. Vice shabby chic try-hard fingerstache bespoke.    19530    593    2015-12-12 06:07:59    2015-12-12 06:07:59    2
11121    Poutine truffaut synth distillery green juice. Art party pabst pug keffiyeh. Ugh 90's yolo kombucha flexitarian.    19037    565    2016-04-05 08:58:06    2016-04-05 08:58:06    2
11131    Umami readymade bespoke venmo brooklyn. Twee kickstarter farm-to-table before they sold out try-hard. Pitchfork venmo wolf lo-fi. Roof tilde kinfolk mustache pork belly bicycle rights. Forage meh ennui.    19418    886    2015-12-24 02:16:22    2015-12-24 02:16:22    2
11154    Craft beer schlitz kinfolk. Iphone +1 portland. Organic letterpress blue bottle gentrify.    19897    902    2015-08-16 08:38:01    2015-08-16 08:38:01    2
11171    Marfa tousled cardigan actually. Mlkshk disrupt tilde marfa artisan. Biodiesel tousled franzen food truck trust fund gluten-free.    19793    721    2015-06-24 10:15:34    2015-06-24 10:15:34    2
11186    Scenester taxidermy tote bag tilde iphone park 90's twee. Squid cardigan knausgaard listicle. Tote bag seitan whatever hashtag pbr&b meditation messenger bag. Messenger bag literally squid. Offal cleanse normcore synth vinyl.    19876    492    2016-04-10 10:00:10    2016-04-10 10:00:10    2
11193    Banh mi roof butcher. Chillwave organic seitan chambray slow-carb wolf park leggings. Jean shorts synth thundercats. Dreamcatcher xoxo locavore selvage kinfolk.    19304    779    2015-05-23 23:19:27    2015-05-23 23:19:27    2
11214    Cred portland keffiyeh xoxo. Pinterest ethical readymade food truck waistcoat. Sustainable cardigan locavore cornhole typewriter. Pour-over photo booth chillwave kinfolk blog slow-carb.    19506    873    2015-12-13 06:57:44    2015-12-13 06:57:44    2
11216    Heirloom kinfolk keytar bicycle rights asymmetrical normcore quinoa. Schlitz sartorial forage meggings. Whatever fashion axe marfa yr wolf literally celiac. Flannel wayfarers bicycle rights selfies gastropub aesthetic. Drinking keytar tattooed.    19487    836    2015-10-10 07:48:25    2015-10-10 07:48:25    2
11226    Blue bottle tattooed distillery polaroid mustache vegan selfies chambray. Hashtag tacos synth try-hard pinterest. Plaid loko quinoa pug selfies. Intelligentsia hashtag plaid pop-up tilde readymade tofu kale chips. Master narwhal marfa sustainable kombucha deep v.    19306    815    2015-09-14 20:51:46    2015-09-14 20:51:46    2
11237    Austin actually narwhal meh trust fund. Fanny pack polaroid selvage skateboard ethical put a bird on it flannel. Typewriter narwhal food truck fanny pack gentrify drinking. Viral locavore hoodie kinfolk fixie before they sold out knausgaard. Normcore echo kombucha jean shorts bitters.    19741    510    2015-10-11 16:34:36    2015-10-11 16:34:36    2
11245    Artisan meggings diy five dollar toast lomo. Mustache hella vinyl truffaut. Tote bag waistcoat shabby chic scenester blog vegan disrupt bespoke. Flexitarian vinyl disrupt.    19520    650    2015-06-06 15:51:16    2015-06-06 15:51:16    2
11251    Whatever gentrify tousled narwhal vegan. Blue bottle kinfolk venmo. Narwhal artisan retro lomo blog. Normcore etsy street cred. Helvetica organic flannel.    19848    463    2015-08-30 15:07:08    2015-08-30 15:07:08    2
11265    Ennui hoodie yuccie organic next level blue bottle. Cronut actually kogi hella brooklyn iphone hoodie selfies. Tilde five dollar toast yr. Butcher yr leggings health actually hoodie.    19357    609    2015-09-07 16:55:06    2015-09-07 16:55:06    2
11279    Occupy cray hella chillwave. Vice fashion axe artisan venmo vegan mixtape meggings hashtag. Microdosing church-key chartreuse vinyl. Hoodie yuccie yr mlkshk knausgaard intelligentsia selfies authentic. Mumblecore sartorial organic leggings williamsburg.    19710    534    2015-10-19 20:08:44    2015-10-19 20:08:44    2
11283    Skateboard +1 pop-up chambray tattooed. Intelligentsia lomo chia kombucha waistcoat jean shorts green juice mustache. Banjo bespoke leggings street authentic. Tattooed 3 wolf moon shoreditch drinking slow-carb pop-up street kombucha. Microdosing try-hard godard retro.    19884    610    2016-01-25 09:29:50    2016-01-25 09:29:50    2
11302    Viral chillwave ugh. Skateboard carry swag dreamcatcher pinterest meditation you probably haven't heard of them. Cronut kickstarter raw denim ethical fingerstache meditation shabby chic before they sold out. Kitsch ennui ethical.    19312    901    2015-07-14 01:21:38    2015-07-14 01:21:38    2
11308    Thundercats food truck mumblecore. Craft beer mixtape keffiyeh shabby chic wolf taxidermy poutine. Tacos kale chips meditation bicycle rights. Tilde vinyl vice mustache locavore actually.    19084    679    2015-08-31 12:34:21    2015-08-31 12:34:21    2
11315    Wayfarers swag pickled fap migas. Pug normcore migas wolf pabst cleanse readymade lumbersexual. Cliche mustache fanny pack lo-fi salvia truffaut. Green juice literally godard knausgaard hammock 90's butcher meggings. Yr hammock pug cronut five dollar toast raw denim tilde chartreuse.    19768    629    2016-02-08 15:04:06    2016-02-08 15:04:06    2
11317    Tacos goth shoreditch lo-fi. Iphone irony cray ramps. Quinoa lumbersexual williamsburg ennui cardigan microdosing.    19566    839    2016-01-06 06:36:20    2016-01-06 06:36:20    2
11341    Echo kombucha small batch park single-origin coffee selvage chambray beard. Goth mustache lo-fi keffiyeh. Offal pork belly meditation keytar. Keffiyeh sartorial cornhole. Authentic carry pitchfork pabst xoxo.    19481    666    2015-07-05 22:46:15    2015-07-05 22:46:15    2
11363    Aesthetic vice umami gentrify irony. Twee ramps butcher gluten-free jean shorts. Whatever cred pop-up cleanse umami normcore.    19236    576    2015-08-20 22:29:16    2015-08-20 22:29:16    2
11371    Blog austin keytar tacos. Stumptown skateboard beard flannel. Fingerstache food truck semiotics.    19554    673    2016-03-01 11:36:30    2016-03-01 11:36:30    2
11373    Banh mi salvia try-hard pickled dreamcatcher organic knausgaard loko. Trust fund distillery sustainable umami. Green juice poutine marfa bitters ramps cold-pressed.    19955    788    2015-09-26 17:29:42    2015-09-26 17:29:42    2
11398    Deep v church-key quinoa. Cray street fingerstache authentic. Wolf tilde marfa try-hard organic bitters. Lo-fi biodiesel salvia farm-to-table neutra seitan flexitarian.    19520    590    2015-10-15 19:25:34    2015-10-15 19:25:34    2
11427    Jean shorts keffiyeh truffaut banh mi you probably haven't heard of them. Pork belly microdosing kogi fanny pack franzen farm-to-table hoodie. Letterpress tote bag farm-to-table tacos bushwick biodiesel. Trust fund art party keytar fixie sriracha austin.    19664    937    2015-09-30 21:39:48    2015-09-30 21:39:48    2
11447    Cold-pressed vegan truffaut paleo fingerstache. Marfa plaid 8-bit skateboard cornhole austin retro flexitarian. Literally heirloom sartorial skateboard master aesthetic flexitarian pitchfork. Farm-to-table chillwave kombucha wolf shoreditch.    19935    787    2015-08-21 09:49:08    2015-08-21 09:49:08    2
11448    Cardigan helvetica echo. Wes anderson vhs leggings fashion axe. Vinegar tofu kale chips.    19032    931    2015-06-20 23:57:05    2015-06-20 23:57:05    2
11469    Marfa keytar bitters health yolo kitsch artisan brooklyn. Craft beer wes anderson tote bag tilde disrupt. Forage chartreuse authentic swag carry celiac.    19677    620    2015-05-30 00:54:11    2015-05-30 00:54:11    2
11475    Chillwave microdosing plaid. Lo-fi occupy mlkshk franzen williamsburg banh mi pickled selvage. Cray intelligentsia fap plaid lomo leggings brunch.    19033    942    2016-02-01 13:27:49    2016-02-01 13:27:49    2
11480    Vegan sustainable master bitters pinterest semiotics church-key heirloom. Fingerstache brooklyn park. Bicycle rights pickled small batch street. Leggings pickled photo booth portland. Quinoa asymmetrical street butcher viral health.    19208    491    2016-03-06 00:14:46    2016-03-06 00:14:46    2
11482    Bitters fap yr tacos farm-to-table seitan offal. Wolf chia schlitz offal direct trade kombucha heirloom. Chambray skateboard jean shorts locavore heirloom. Cornhole diy ennui church-key tousled paleo yuccie.    19933    627    2015-06-03 05:30:15    2015-06-03 05:30:15    2
11491    Skateboard pinterest vegan hella locavore. Asymmetrical five dollar toast fashion axe franzen pop-up art party. Pickled raw denim vhs slow-carb. Waistcoat sustainable vinegar. Irony listicle cold-pressed roof kickstarter banjo.    19305    554    2015-05-20 11:50:55    2015-05-20 11:50:55    2
11501    Ennui whatever tumblr health pour-over chicharrones artisan. Synth vegan mumblecore kale chips fixie photo booth. Vhs tattooed tote bag cornhole. Loko vinyl irony trust fund sartorial lo-fi drinking vice.    19208    716    2016-02-06 05:26:33    2016-02-06 05:26:33    2
11519    Paleo cliche meggings loko. Biodiesel vhs xoxo irony artisan chia authentic. Mustache tattooed try-hard. Pug truffaut helvetica hella sartorial brunch. Meggings everyday raw denim drinking retro disrupt bicycle rights slow-carb.    19620    914    2015-12-11 18:42:34    2015-12-11 18:42:34    2
11540    Crucifix cray raw denim cronut tattooed. Hammock crucifix pbr&b authentic. Yolo portland +1 meh actually kombucha ethical vegan.    19739    829    2015-09-13 11:03:54    2015-09-13 11:03:54    2
11556    Plaid gluten-free vinyl artisan waistcoat loko tote bag. Ugh meditation flannel cornhole vice banjo fingerstache kombucha. Brooklyn microdosing fanny pack retro. Vice chicharrones deep v actually mlkshk.    19724    876    2015-05-23 02:09:55    2015-05-23 02:09:55    2
11577    Banjo freegan heirloom cornhole vinyl. Drinking intelligentsia leggings seitan green juice craft beer letterpress farm-to-table. You probably haven't heard of them authentic viral.    19898    914    2015-12-18 08:43:01    2015-12-18 08:43:01    2
11580    Tumblr green juice offal thundercats venmo pork belly salvia. Tote bag master blog skateboard loko bitters next level vice. Tattooed street squid. Humblebrag loko skateboard try-hard everyday selfies brunch tumblr.    19602    637    2015-05-23 05:53:02    2015-05-23 05:53:02    2
11586    Cardigan you probably haven't heard of them organic shabby chic cliche cornhole occupy vinyl. Yuccie meditation swag tote bag. 3 wolf moon cronut helvetica kinfolk irony.    19610    648    2015-09-19 11:52:02    2015-09-19 11:52:02    2
11617    Offal poutine chia freegan master park. Tilde fixie yuccie. +1 ramps portland. Franzen shabby chic gastropub distillery typewriter chicharrones yolo +1.    19709    622    2015-12-25 02:47:42    2015-12-25 02:47:42    2
11618    Seitan truffaut bushwick letterpress helvetica cronut. Offal quinoa skateboard hammock listicle. Taxidermy polaroid health echo food truck pinterest sriracha. Freegan chia flannel whatever.    19725    479    2015-04-24 22:14:43    2015-04-24 22:14:43    2
11650    Seitan put a bird on it 8-bit selvage pitchfork letterpress roof helvetica. Jean shorts semiotics intelligentsia pop-up. Jean shorts direct trade photo booth vegan shabby chic yuccie cold-pressed. Readymade small batch kitsch banh mi austin chicharrones.    19868    505    2015-07-17 04:44:33    2015-07-17 04:44:33    2
11651    Flannel pinterest yr beard sartorial. Chartreuse cornhole slow-carb migas crucifix yuccie microdosing. Cornhole yuccie cliche.    19301    959    2015-07-12 06:39:41    2015-07-12 06:39:41    2
11663    Chartreuse tacos trust fund master five dollar toast ennui. Fingerstache chambray cray carry. Taxidermy keffiyeh intelligentsia kickstarter mumblecore pug. Lumbersexual venmo cliche helvetica pug master.    19076    756    2015-05-19 12:21:16    2015-05-19 12:21:16    2
11673    Twee messenger bag small batch food truck dreamcatcher kickstarter fanny pack. Schlitz cray deep v tilde. Literally yolo before they sold out skateboard gentrify mlkshk pinterest. Messenger bag asymmetrical salvia tote bag keffiyeh. Kale chips banh mi put a bird on it meh echo pop-up biodiesel.    19014    618    2016-02-21 22:58:53    2016-02-21 22:58:53    2
11686    Whatever fanny pack craft beer. Everyday 8-bit banjo sartorial locavore pitchfork hella chambray. Blog narwhal williamsburg intelligentsia. Thundercats keffiyeh beard. Fixie venmo fap yolo tousled seitan.    19382    805    2015-11-15 03:17:26    2015-11-15 03:17:26    2
11688    Church-key twee blog neutra slow-carb fingerstache umami stumptown. Hella waistcoat carry actually stumptown. Whatever yolo umami. Venmo irony kombucha mustache stumptown gluten-free try-hard tacos. Shoreditch microdosing godard five dollar toast listicle mustache.    19789    894    2015-10-26 07:30:12    2015-10-26 07:30:12    2
11692    Schlitz poutine vhs ramps beard. Heirloom beard put a bird on it deep v. Green juice you probably haven't heard of them meh wayfarers tattooed.    19911    518    2015-09-04 14:37:08    2015-09-04 14:37:08    2
11700    Occupy goth schlitz. Cold-pressed synth tilde carry locavore twee. Neutra before they sold out cronut try-hard offal single-origin coffee.    19977    701    2015-08-28 02:56:42    2015-08-28 02:56:42    2
11704    Literally mlkshk next level art party squid street cronut. Cliche lomo sartorial ethical etsy slow-carb kale chips. Helvetica banjo selvage next level fingerstache. Pickled ramps scenester quinoa viral narwhal tilde letterpress. Intelligentsia cleanse put a bird on it schlitz.    20000    811    2016-03-23 22:28:28    2016-03-23 22:28:28    2
11715    Raw denim paleo authentic seitan xoxo fanny pack. Umami deep v neutra taxidermy bushwick. Vhs normcore shabby chic actually readymade shoreditch selvage green juice. Williamsburg iphone tote bag portland.    19313    548    2015-06-15 01:11:37    2015-06-15 01:11:37    2
11719    Bicycle rights lomo selfies bespoke quinoa authentic craft beer yuccie. Humblebrag iphone retro cred williamsburg selfies. Street dreamcatcher synth cliche. Bicycle rights cornhole biodiesel pabst tilde.    19747    862    2015-05-09 10:03:19    2015-05-09 10:03:19    2
11723    Heirloom vinyl everyday cronut paleo flannel thundercats microdosing. Roof sartorial hammock twee organic. Lumbersexual butcher street artisan.    19702    669    2015-06-18 01:33:59    2015-06-18 01:33:59    2
11739    You probably haven't heard of them paleo keffiyeh cold-pressed bushwick shoreditch everyday gluten-free. Neutra vice meh street pop-up. Narwhal banjo goth five dollar toast lomo brooklyn pbr&b xoxo. Kale chips diy artisan cardigan quinoa.    19531    836    2015-09-19 19:09:19    2015-09-19 19:09:19    2
11746    Fashion axe vice bespoke carry. Ennui 8-bit blog banjo truffaut selfies skateboard raw denim. Fashion axe cliche cred tattooed twee meh.    19665    743    2015-06-06 21:07:29    2015-06-06 21:07:29    2
11753    Kitsch austin sriracha craft beer chicharrones pbr&b umami photo booth. Fixie banjo pop-up pour-over fap biodiesel ramps austin. Brooklyn jean shorts craft beer chicharrones pug microdosing.    19022    936    2016-03-10 04:50:44    2016-03-10 04:50:44    2
11755    Ramps waistcoat five dollar toast blog pug. Tumblr freegan green juice cliche chambray flannel. 90's kickstarter mustache mlkshk.    19001    861    2015-12-29 21:15:06    2015-12-29 21:15:06    2
11762    Sustainable migas cred dreamcatcher meditation. Twee mixtape lo-fi humblebrag shabby chic. Direct trade fanny pack church-key tumblr photo booth xoxo poutine you probably haven't heard of them. Small batch fanny pack bicycle rights before they sold out.    19697    798    2015-11-09 11:42:41    2015-11-09 11:42:41    2
11766    Forage sartorial small batch freegan. Skateboard chicharrones fanny pack occupy godard loko meditation yr. Organic poutine small batch microdosing yolo.    19610    565    2015-09-11 07:24:46    2015-09-11 07:24:46    2
11769    Vegan kogi marfa post-ironic wayfarers try-hard flexitarian. Actually wes anderson vegan drinking skateboard. Chillwave roof umami tacos shabby chic. Biodiesel fap cray tilde sustainable farm-to-table hashtag raw denim.    19413    960    2015-12-23 03:18:08    2015-12-23 03:18:08    2
11773    Crucifix humblebrag pork belly single-origin coffee post-ironic pop-up green juice cardigan. Tacos semiotics schlitz art party fap waistcoat whatever. Bushwick 8-bit mlkshk hashtag gluten-free freegan twee marfa.    19949    638    2015-08-09 04:41:17    2015-08-09 04:41:17    2
11774    Beard stumptown tilde tofu gluten-free disrupt. Chartreuse actually heirloom wayfarers health. Blue bottle kale chips banh mi.    19810    703    2015-06-30 09:17:15    2015-06-30 09:17:15    2
11779    Pop-up fanny pack cold-pressed microdosing dreamcatcher iphone. Aesthetic pickled blog slow-carb chartreuse. Dreamcatcher leggings jean shorts selfies hashtag cronut gluten-free sustainable. Kombucha vegan carry normcore. Vhs before they sold out jean shorts 3 wolf moon shoreditch.    19593    527    2015-07-17 05:10:20    2015-07-17 05:10:20    2
11780    Whatever everyday cred 3 wolf moon roof cleanse ugh drinking. Literally try-hard kogi kale chips marfa. Cleanse blue bottle pickled green juice marfa pinterest chillwave vinegar.    19357    865    2016-03-13 09:49:02    2016-03-13 09:49:02    2
11811    Street carry ramps crucifix freegan photo booth. Paleo portland shoreditch post-ironic food truck intelligentsia loko tattooed. Hammock disrupt pitchfork crucifix cardigan chia jean shorts.    19509    593    2015-11-05 20:41:48    2015-11-05 20:41:48    2
11822    Xoxo tote bag kogi. Etsy quinoa keytar. Sartorial pour-over lomo. Loko cliche tote bag.    19486    777    2015-09-24 19:33:51    2015-09-24 19:33:51    2
12212    Quinoa brunch tacos. Cardigan single-origin coffee kogi. Salvia you probably haven't heard of them banh mi sriracha beard wayfarers keffiyeh.    19036    508    2015-05-06 02:50:54    2015-05-06 02:50:54    2
11844    Poutine street franzen five dollar toast pinterest. Williamsburg master hoodie leggings neutra marfa photo booth quinoa. Wolf twee freegan butcher cleanse 90's. Kale chips actually photo booth wolf pork belly.    19621    845    2016-02-11 18:55:51    2016-02-11 18:55:51    2
11860    Chia godard 3 wolf moon fap you probably haven't heard of them. Umami banjo mumblecore kombucha. Deep v fanny pack tacos butcher seitan cold-pressed disrupt.    19095    521    2015-10-20 14:06:34    2015-10-20 14:06:34    2
11865    Seitan knausgaard deep v. Single-origin coffee truffaut squid synth church-key yolo. Mlkshk distillery +1 typewriter fanny pack selvage. Flannel kombucha bitters seitan.    19821    698    2016-01-17 17:22:24    2016-01-17 17:22:24    2
11874    Yuccie biodiesel quinoa ramps mlkshk tattooed. Deep v kinfolk tofu. Organic kitsch vhs chicharrones 3 wolf moon waistcoat hella flannel. Artisan keytar blue bottle.    19632    560    2016-03-20 17:14:47    2016-03-20 17:14:47    2
11880    Kale chips gastropub cray godard disrupt humblebrag. Etsy listicle readymade direct trade tattooed. Listicle health mixtape photo booth retro dreamcatcher. Flannel shoreditch synth raw denim distillery blog truffaut ramps.    19124    685    2016-02-12 07:46:02    2016-02-12 07:46:02    2
11905    Letterpress authentic small batch wes anderson butcher kogi fap. Franzen listicle squid sustainable wes anderson photo booth. Meditation gastropub green juice xoxo pork belly listicle next level.    19567    843    2015-10-31 22:40:32    2015-10-31 22:40:32    2
11939    Fixie pour-over paleo banjo. Skateboard tofu xoxo vinyl messenger bag. Fap sustainable small batch +1 roof.    19057    629    2015-10-30 02:59:22    2015-10-30 02:59:22    2
11951    Viral fanny pack gastropub chartreuse semiotics artisan selvage pork belly. Salvia helvetica umami kogi food truck meggings fingerstache. Typewriter next level chicharrones cleanse seitan echo. Viral health vice artisan. Pop-up tumblr roof celiac pork belly +1 gastropub small batch.    19902    782    2015-08-04 07:57:37    2015-08-04 07:57:37    2
12000    Dreamcatcher loko yuccie truffaut fap venmo pabst. Semiotics skateboard normcore letterpress organic beard helvetica. Locavore ethical banjo poutine asymmetrical hashtag sriracha sustainable.    19912    584    2016-03-29 11:10:40    2016-03-29 11:10:40    2
12015    Synth fingerstache echo hoodie narwhal xoxo pickled salvia. Squid stumptown craft beer polaroid. Cold-pressed post-ironic fingerstache. Messenger bag pop-up street intelligentsia meggings. Slow-carb schlitz meditation occupy wolf beard marfa venmo.    19613    801    2016-04-20 04:29:26    2016-04-20 04:29:26    2
12016    Skateboard everyday irony umami. Food truck sartorial banjo brooklyn 3 wolf moon. Drinking tofu fanny pack franzen blue bottle synth yuccie heirloom. Semiotics echo paleo flannel church-key.    19833    483    2015-05-13 10:27:12    2015-05-13 10:27:12    2
12030    Butcher migas umami tumblr. Seitan helvetica food truck meh beard marfa sustainable post-ironic. Farm-to-table xoxo 90's cliche quinoa direct trade cray drinking. Wolf kickstarter aesthetic pbr&b fingerstache. Food truck pour-over asymmetrical locavore readymade heirloom occupy blue bottle.    19616    839    2016-01-18 11:07:53    2016-01-18 11:07:53    2
12036    Blog gluten-free normcore you probably haven't heard of them photo booth drinking pour-over. Post-ironic plaid bitters locavore. Vhs pinterest typewriter kinfolk. Flexitarian hammock kogi fashion axe lumbersexual taxidermy.    19624    878    2015-05-29 06:22:20    2015-05-29 06:22:20    2
12048    Wolf asymmetrical godard cray. Chartreuse banh mi tacos asymmetrical readymade gastropub cold-pressed photo booth. Post-ironic organic food truck intelligentsia.    19430    720    2015-10-25 00:06:56    2015-10-25 00:06:56    2
12054    Flannel green juice marfa cleanse kickstarter sustainable. Messenger bag poutine butcher twee. Pickled tofu fingerstache selfies ennui truffaut fashion axe vinegar.    19632    750    2015-08-07 21:04:04    2015-08-07 21:04:04    2
12087    Lo-fi distillery brooklyn franzen bushwick skateboard. Occupy ethical ramps gluten-free meditation xoxo whatever cray. Swag 3 wolf moon +1 forage photo booth.    19677    787    2016-02-18 00:57:52    2016-02-18 00:57:52    2
12088    Hammock tattooed gluten-free. Photo booth everyday kombucha tofu sartorial. Hashtag everyday art party raw denim schlitz.    19883    648    2016-02-03 08:39:19    2016-02-03 08:39:19    2
12089    Franzen pork belly stumptown salvia. Chillwave single-origin coffee fingerstache. Drinking church-key +1 gastropub pork belly fanny pack freegan shoreditch. Try-hard biodiesel blog lumbersexual polaroid waistcoat single-origin coffee fixie. Mustache organic beard keffiyeh raw denim.    19438    838    2015-07-13 05:25:43    2015-07-13 05:25:43    2
12094    Normcore keytar migas seitan locavore meditation distillery. Kinfolk neutra pitchfork literally hammock fanny pack tofu deep v. Tattooed master blog fixie. Squid aesthetic meggings. Listicle tilde heirloom flannel blue bottle vinegar squid pitchfork.    19703    933    2015-11-20 06:52:40    2015-11-20 06:52:40    2
12104    Hashtag synth vegan tofu. Green juice meh meggings. Shabby chic portland before they sold out readymade asymmetrical. Fingerstache meh offal. Ugh artisan ennui.    19295    904    2015-12-19 02:44:26    2015-12-19 02:44:26    2
12110    Photo booth tousled selvage. Bicycle rights seitan sartorial bespoke leggings fixie beard disrupt. Small batch literally messenger bag banh mi meh taxidermy cleanse pork belly. Farm-to-table cronut mlkshk chambray +1 intelligentsia.    19958    472    2015-07-17 08:15:25    2015-07-17 08:15:25    2
12144    Blog polaroid dreamcatcher raw denim pop-up salvia butcher occupy. Chambray narwhal yuccie yr wolf butcher gastropub. Polaroid letterpress ugh artisan.    19561    524    2016-03-28 20:55:47    2016-03-28 20:55:47    2
12145    Vinegar street xoxo brunch synth tousled polaroid selfies. Seitan wolf keffiyeh sartorial goth mustache. Kombucha cleanse pabst taxidermy. Mustache skateboard organic wayfarers godard 90's direct trade sartorial.    19840    489    2015-05-27 13:35:48    2015-05-27 13:35:48    2
12158    Hoodie cliche flexitarian asymmetrical goth pbr&b +1 fingerstache. Cronut helvetica everyday ugh disrupt chambray sartorial. Farm-to-table try-hard fingerstache intelligentsia you probably haven't heard of them cardigan flannel tousled. Taxidermy typewriter vegan. Meditation biodiesel lo-fi helvetica synth neutra.    19399    655    2015-10-05 11:02:56    2015-10-05 11:02:56    2
12170    Pour-over thundercats taxidermy artisan stumptown. Beard hammock pinterest occupy cray before they sold out pbr&b. Viral 8-bit single-origin coffee wayfarers cleanse hashtag 3 wolf moon. Shabby chic lo-fi craft beer tumblr pug yolo +1 fashion axe.    19499    960    2015-12-12 13:29:28    2015-12-12 13:29:28    2
12176    Gluten-free wes anderson crucifix craft beer neutra austin kogi. Carry hoodie yolo kombucha austin tilde trust fund messenger bag. Forage locavore leggings chartreuse you probably haven't heard of them taxidermy knausgaard williamsburg. Butcher marfa bitters.    19756    742    2015-04-27 05:07:12    2015-04-27 05:07:12    2
12187    Intelligentsia actually cornhole. Kickstarter organic actually sustainable readymade authentic williamsburg brunch. Paleo bitters viral biodiesel narwhal waistcoat fap aesthetic. Cray pitchfork kitsch squid church-key 8-bit master cardigan.    19856    942    2016-03-24 08:10:40    2016-03-24 08:10:40    2
12189    Deep v post-ironic authentic before they sold out swag. Normcore organic cardigan tacos. Banh mi mixtape gentrify wolf deep v venmo knausgaard lo-fi.    19736    495    2015-05-31 10:27:32    2015-05-31 10:27:32    2
12211    Photo booth art party tousled single-origin coffee. Narwhal mlkshk direct trade cliche selfies pitchfork vegan. Farm-to-table lomo before they sold out occupy wes anderson disrupt flannel truffaut.    19442    758    2015-07-03 14:32:23    2015-07-03 14:32:23    2
12234    Vinegar xoxo meditation blog swag 3 wolf moon echo. Meggings cray photo booth +1. Seitan health meggings. Bitters mustache slow-carb messenger bag vhs forage. Crucifix austin locavore normcore pork belly.    19611    868    2015-11-07 03:28:31    2015-11-07 03:28:31    2
12246    Williamsburg hoodie biodiesel fingerstache tousled fixie. Intelligentsia freegan distillery migas jean shorts kitsch swag. Distillery beard gluten-free.    19884    636    2016-01-21 02:06:17    2016-01-21 02:06:17    2
12247    Venmo williamsburg tattooed chia. Green juice truffaut fashion axe. Ennui vice thundercats distillery crucifix shoreditch. Direct trade pour-over iphone tousled celiac. +1 bicycle rights brooklyn ennui mlkshk crucifix.    19140    562    2015-12-14 18:57:15    2015-12-14 18:57:15    2
12251    Echo forage lumbersexual stumptown heirloom food truck gluten-free. Artisan ramps mustache craft beer lo-fi. Pitchfork meditation sustainable vegan kickstarter.    19326    722    2015-04-28 13:17:26    2015-04-28 13:17:26    2
12259    Direct trade fanny pack slow-carb shabby chic street semiotics pork belly. Brooklyn asymmetrical forage vhs messenger bag. Cleanse fap selfies wolf asymmetrical. Food truck chambray cred synth organic diy. Goth health pour-over you probably haven't heard of them retro salvia ennui.    19968    588    2016-03-14 13:46:51    2016-03-14 13:46:51    2
12277    Aesthetic paleo post-ironic tattooed retro actually. Tilde photo booth etsy actually diy master hammock lomo. Plaid squid lomo pour-over. Small batch hella kombucha offal cleanse authentic keffiyeh.    19423    599    2016-03-10 19:10:03    2016-03-10 19:10:03    2
12283    Normcore deep v park vice listicle. Marfa 90's umami tote bag whatever squid wes anderson. Asymmetrical xoxo viral messenger bag.    19525    851    2015-11-02 09:38:06    2015-11-02 09:38:06    2
12302    Green juice lomo cronut pinterest intelligentsia listicle. Knausgaard normcore kale chips gastropub keffiyeh typewriter flexitarian fingerstache. Bespoke pabst paleo humblebrag. Hoodie vice green juice brooklyn ethical.    19138    586    2015-05-30 23:06:14    2015-05-30 23:06:14    2
12303    90's listicle pug. Heirloom seitan shabby chic xoxo mlkshk viral yr 90's. Chillwave chia bicycle rights deep v. Authentic hella selfies biodiesel schlitz poutine before they sold out pitchfork. Normcore paleo marfa narwhal.    19280    658    2016-03-17 01:17:45    2016-03-17 01:17:45    2
12324    Loko farm-to-table lo-fi brooklyn chartreuse chia kinfolk. Chia microdosing lomo xoxo cray intelligentsia authentic. Polaroid ugh literally fingerstache street cliche. Bespoke dreamcatcher tacos wes anderson vhs.    19040    831    2015-06-01 04:00:36    2015-06-01 04:00:36    2
12328    Gastropub skateboard butcher ennui diy. Fashion axe church-key cred goth ramps. Roof forage pitchfork fingerstache post-ironic shabby chic truffaut semiotics. Seitan 8-bit flexitarian aesthetic viral cray vinyl photo booth. Readymade semiotics pickled.    19507    513    2015-12-15 18:18:27    2015-12-15 18:18:27    2
12333    Selvage godard humblebrag. Yolo fashion axe mlkshk mustache actually. Banjo everyday diy. Ramps neutra kogi actually kitsch gentrify jean shorts. Waistcoat tilde goth literally aesthetic blog.    19866    542    2015-08-20 00:45:35    2015-08-20 00:45:35    2
12335    Tumblr fixie you probably haven't heard of them. Farm-to-table biodiesel bespoke. Post-ironic kickstarter mixtape austin pbr&b hammock.    19808    488    2015-06-02 07:40:33    2015-06-02 07:40:33    2
12339    Neutra artisan leggings intelligentsia normcore. Butcher shabby chic quinoa hammock small batch trust fund twee offal. Put a bird on it twee loko.    19146    687    2015-12-22 20:20:51    2015-12-22 20:20:51    2
12347    You probably haven't heard of them swag seitan yolo fixie vinyl. Forage keytar cold-pressed stumptown banjo cred cornhole. Chambray narwhal everyday five dollar toast tote bag food truck.    19639    541    2015-08-13 21:40:27    2015-08-13 21:40:27    2
12350    Vegan diy forage. Literally flexitarian you probably haven't heard of them actually. Fap occupy kitsch. Food truck pour-over ethical. Selfies kitsch shoreditch roof mlkshk you probably haven't heard of them pbr&b.    19688    905    2015-09-06 10:40:08    2015-09-06 10:40:08    2
12353    Irony 8-bit listicle yr skateboard tofu retro goth. Hella echo pickled banjo shoreditch aesthetic. Bitters neutra fingerstache narwhal lomo truffaut meh. Pickled flannel shabby chic gastropub tumblr blue bottle slow-carb taxidermy. Keffiyeh chia put a bird on it jean shorts letterpress sartorial pug pour-over.    19708    481    2015-07-26 10:45:10    2015-07-26 10:45:10    2
12359    Vhs lo-fi wayfarers. Pickled ramps occupy tofu before they sold out umami hoodie. 3 wolf moon portland quinoa stumptown marfa polaroid brunch venmo. Pinterest intelligentsia craft beer chia.    19698    817    2016-03-23 12:02:36    2016-03-23 12:02:36    2
12360    Hammock forage art party you probably haven't heard of them. Asymmetrical tacos deep v thundercats wayfarers salvia. Pop-up wes anderson slow-carb humblebrag selvage whatever pinterest. Truffaut tote bag typewriter chia polaroid ramps.    19695    675    2016-03-20 01:05:03    2016-03-20 01:05:03    2
12369    Mlkshk meggings butcher pabst blue bottle. Aesthetic +1 hammock franzen neutra readymade ennui. Meditation flexitarian gastropub. Farm-to-table pickled stumptown bitters ugh single-origin coffee thundercats ennui. Ramps celiac jean shorts chicharrones typewriter occupy skateboard poutine.    19922    669    2016-01-25 21:50:21    2016-01-25 21:50:21    2
12371    Poutine waistcoat umami kickstarter quinoa ugh etsy. Meditation leggings cold-pressed. Helvetica distillery cronut celiac roof. Keffiyeh keytar heirloom butcher single-origin coffee humblebrag.    19337    509    2015-08-07 16:08:22    2015-08-07 16:08:22    2
12378    Intelligentsia cold-pressed 8-bit butcher wolf. Kombucha swag pop-up poutine. 90's blog pour-over gastropub truffaut portland. Hashtag vinyl trust fund meditation mlkshk.    19620    624    2016-02-11 21:33:24    2016-02-11 21:33:24    2
12396    90's cleanse mumblecore helvetica. Single-origin coffee portland narwhal pbr&b. Freegan paleo selvage roof.    19167    918    2015-06-23 18:28:16    2015-06-23 18:28:16    2
12402    Sriracha next level fingerstache. Migas artisan schlitz tofu selfies venmo try-hard 90's. Meditation 8-bit helvetica chia tattooed chambray ramps. Salvia hella semiotics roof heirloom. Authentic ramps helvetica beard keffiyeh master.    19438    478    2015-08-16 22:40:12    2015-08-16 22:40:12    2
12406    Letterpress kitsch schlitz food truck twee stumptown pinterest disrupt. Celiac photo booth church-key pbr&b umami aesthetic. Schlitz meditation stumptown pinterest yr. Cleanse tilde kogi tacos asymmetrical banjo roof ennui. Sartorial asymmetrical salvia occupy disrupt.    19872    946    2015-11-09 10:24:00    2015-11-09 10:24:00    2
12412    Portland vhs schlitz five dollar toast. Vinyl meh park sriracha street. Messenger bag single-origin coffee organic occupy cardigan. Poutine letterpress goth mixtape messenger bag roof meh.    19632    942    2015-05-15 11:50:03    2015-05-15 11:50:03    2
12429    Master vhs flexitarian xoxo pug pop-up stumptown. Messenger bag art party bitters helvetica. Quinoa food truck bicycle rights carry squid taxidermy letterpress vice. Franzen fap offal.    19343    930    2016-04-16 09:18:59    2016-04-16 09:18:59    2
12452    Irony cred cornhole fanny pack disrupt loko occupy. Meditation chillwave before they sold out waistcoat literally. Sustainable plaid art party vice.    19710    518    2016-01-28 07:31:30    2016-01-28 07:31:30    2
12456    Crucifix pork belly actually mustache asymmetrical. Freegan chambray aesthetic. Goth quinoa post-ironic. Thundercats fixie wes anderson disrupt.    19304    789    2015-08-21 22:05:18    2015-08-21 22:05:18    2
12458    Keytar umami roof. Pour-over beard echo flannel gluten-free. Meditation helvetica 8-bit seitan offal farm-to-table vhs.    19089    489    2015-04-27 03:05:21    2015-04-27 03:05:21    2
12471    Marfa tattooed narwhal fashion axe fap jean shorts offal keffiyeh. Trust fund retro listicle viral art party 8-bit. Kale chips artisan kogi lo-fi quinoa iphone pork belly. Heirloom typewriter pickled. Brunch lumbersexual retro post-ironic venmo intelligentsia quinoa lomo.    19301    801    2015-10-30 00:46:58    2015-10-30 00:46:58    2
12479    Sriracha skateboard etsy five dollar toast. Slow-carb venmo single-origin coffee selvage. Mixtape pbr&b locavore brooklyn chambray irony.    19677    466    2015-05-05 19:52:27    2015-05-05 19:52:27    2
12486    Direct trade keffiyeh echo venmo hammock. Tattooed ugh cliche. Yr taxidermy bespoke humblebrag. Mumblecore synth kogi. Cardigan vinyl meggings.    19943    512    2016-01-22 10:41:34    2016-01-22 10:41:34    2
12498    Deep v offal pour-over venmo cleanse. Butcher dreamcatcher craft beer loko cleanse. Pabst austin fixie. Photo booth messenger bag everyday umami locavore. Roof kombucha pop-up.    19091    568    2015-09-04 09:10:37    2015-09-04 09:10:37    2
12513    Pop-up wes anderson xoxo green juice sartorial. Fingerstache ennui whatever pour-over gentrify wolf. Artisan bitters vinyl pitchfork everyday. Asymmetrical synth heirloom health keffiyeh messenger bag gentrify. Before they sold out paleo neutra tousled listicle.    19789    834    2016-04-02 23:33:52    2016-04-02 23:33:52    2
12519    Poutine semiotics chambray asymmetrical mixtape neutra green juice meditation. Tote bag intelligentsia jean shorts bicycle rights mixtape taxidermy try-hard. 90's austin master neutra pour-over kinfolk synth.    19051    471    2016-03-21 10:55:22    2016-03-21 10:55:22    2
12549    Drinking semiotics skateboard wes anderson. Leggings tousled crucifix gastropub bushwick. Trust fund neutra craft beer beard vegan. Helvetica deep v pop-up letterpress wes anderson godard ennui. Echo tattooed lomo try-hard five dollar toast.    19339    636    2015-10-31 03:34:10    2015-10-31 03:34:10    2
12560    Disrupt hoodie scenester biodiesel bicycle rights pabst. Gluten-free pbr&b pork belly health. Fingerstache ethical chia asymmetrical synth try-hard. Pug mixtape brooklyn. Sartorial vegan hella synth five dollar toast blog pitchfork.    19853    616    2016-01-19 11:20:06    2016-01-19 11:20:06    2
12561    Kogi fixie schlitz farm-to-table sartorial salvia knausgaard. Vice heirloom artisan ramps flexitarian. Yr roof polaroid. Austin normcore cred ramps pbr&b farm-to-table kinfolk.    19276    901    2015-08-08 11:26:26    2015-08-08 11:26:26    2
12577    Cleanse typewriter food truck roof offal sustainable poutine normcore. Tacos carry marfa iphone pour-over pitchfork. Meh poutine chia umami. Sriracha hella kitsch franzen.    19490    755    2015-05-02 16:32:07    2015-05-02 16:32:07    2
12578    Deep v schlitz pour-over green juice sriracha vinyl hashtag keytar. Brunch yr direct trade. Scenester bespoke sriracha dreamcatcher celiac umami waistcoat. Bitters vice everyday mixtape 3 wolf moon plaid. Viral authentic blog.    19674    921    2015-12-11 01:14:19    2015-12-11 01:14:19    2
12583    Taxidermy narwhal paleo. Yolo vhs portland organic pinterest ramps. Slow-carb direct trade locavore ugh neutra kitsch normcore.    19768    791    2015-10-07 14:43:35    2015-10-07 14:43:35    2
12607    Selfies gluten-free diy readymade hella venmo intelligentsia. Sartorial kogi viral vice pitchfork quinoa leggings. Stumptown organic meggings umami gluten-free narwhal occupy forage. Whatever normcore schlitz pop-up aesthetic franzen. Fap plaid pbr&b kale chips.    19459    932    2015-10-30 03:28:34    2015-10-30 03:28:34    2
12625    Lomo park fap cray. Roof franzen knausgaard cray five dollar toast intelligentsia kitsch. Photo booth mustache intelligentsia mixtape slow-carb knausgaard.    19117    730    2016-01-14 17:30:45    2016-01-14 17:30:45    2
12657    Cliche godard everyday. Meditation brooklyn meggings bespoke wayfarers fanny pack. Blue bottle umami trust fund messenger bag.    19211    888    2016-03-18 14:09:16    2016-03-18 14:09:16    2
12665    Neutra fanny pack 8-bit. Locavore lo-fi lumbersexual mlkshk fap craft beer flannel. Cardigan asymmetrical health sartorial salvia crucifix beard organic. Photo booth beard pop-up echo. 8-bit taxidermy food truck ennui farm-to-table.    19065    944    2015-10-15 07:18:39    2015-10-15 07:18:39    2
12701    Pitchfork 3 wolf moon semiotics portland. Vice vegan park messenger bag. Pitchfork plaid migas. Brunch irony roof gluten-free. Authentic pabst hoodie offal scenester semiotics aesthetic lumbersexual.    19824    781    2016-04-16 11:11:00    2016-04-16 11:11:00    2
12706    Hella cardigan pork belly loko. Retro cronut tote bag truffaut fingerstache pour-over diy. Etsy chillwave next level pop-up vice chicharrones umami xoxo. Viral tattooed vice diy fixie food truck 8-bit. Drinking shoreditch tote bag carry seitan vegan tattooed.    19658    628    2015-09-04 09:59:19    2015-09-04 09:59:19    2
12712    Fixie photo booth umami tote bag meh leggings. Yuccie hammock fingerstache yr. Shoreditch bespoke fixie disrupt. Bitters pour-over iphone sriracha.    19331    495    2016-02-04 09:42:26    2016-02-04 09:42:26    2
12722    Lomo try-hard +1 vinyl banh mi vhs. Bushwick cornhole beard blog asymmetrical. Chartreuse marfa kale chips slow-carb xoxo diy fashion axe. Scenester narwhal marfa chartreuse godard trust fund umami. Post-ironic slow-carb craft beer migas tattooed cornhole cronut.    19554    946    2015-10-08 00:58:36    2015-10-08 00:58:36    2
12734    Five dollar toast lumbersexual vegan truffaut swag butcher. Knausgaard franzen cardigan 8-bit sriracha craft beer sustainable thundercats. Pabst keffiyeh loko cold-pressed celiac typewriter chicharrones sartorial. Banh mi tacos helvetica.    19306    684    2015-11-06 20:41:16    2015-11-06 20:41:16    2
12737    Squid letterpress pickled brunch. Green juice 8-bit blog offal loko crucifix yolo letterpress. Schlitz pop-up meditation hashtag. 90's brunch post-ironic venmo.    19046    959    2016-02-25 22:23:48    2016-02-25 22:23:48    2
12738    Poutine tote bag pitchfork polaroid williamsburg heirloom messenger bag. Microdosing pork belly kinfolk try-hard flannel wes anderson letterpress meh. Pickled retro farm-to-table offal echo.    19956    809    2016-03-26 20:25:24    2016-03-26 20:25:24    2
12741    Listicle offal pork belly synth sustainable humblebrag. Carry kombucha mustache. Post-ironic ennui organic banjo microdosing fap williamsburg.    19175    703    2015-09-05 10:41:03    2015-09-05 10:41:03    2
12762    Street meggings pop-up farm-to-table 8-bit authentic 90's. Cleanse jean shorts fap quinoa vinyl austin. Food truck twee pinterest cornhole poutine.    19735    937    2015-06-12 09:45:35    2015-06-12 09:45:35    2
12769    Selvage etsy celiac plaid kale chips. Readymade ramps poutine marfa waistcoat. Skateboard cold-pressed cred sriracha. Selvage ethical heirloom forage plaid ramps chartreuse direct trade.    19216    854    2015-12-12 14:48:09    2015-12-12 14:48:09    2
12815    Cleanse cred bitters yuccie fashion axe. Blog letterpress cred. Banh mi poutine kitsch cornhole blue bottle vice pickled. Roof deep v whatever. Goth literally leggings kickstarter jean shorts five dollar toast umami franzen.    19177    735    2015-05-31 05:54:01    2015-05-31 05:54:01    2
12816    Skateboard vice kickstarter knausgaard tumblr chia. Vinegar green juice gluten-free thundercats brunch waistcoat organic. Green juice tilde irony bicycle rights keffiyeh wayfarers try-hard health. Cronut 3 wolf moon kinfolk literally pabst ennui bicycle rights artisan.    19931    804    2015-06-09 18:53:53    2015-06-09 18:53:53    2
12820    Xoxo yr occupy. Fap normcore single-origin coffee distillery forage brunch lo-fi. Kale chips meggings freegan try-hard church-key brunch heirloom meh.    19370    576    2015-10-15 04:38:21    2015-10-15 04:38:21    2
12826    Irony salvia wayfarers hoodie blue bottle quinoa. Loko waistcoat mlkshk. Chia beard fap. Portland put a bird on it tilde pabst butcher. Tote bag ramps literally chia heirloom flannel hoodie cornhole.    19055    787    2016-01-02 05:00:53    2016-01-02 05:00:53    2
12829    Paleo cornhole chillwave. Chia cornhole poutine normcore yuccie pitchfork. Squid green juice thundercats locavore truffaut heirloom meditation. Mixtape literally yuccie crucifix kombucha. Blue bottle chartreuse cred vinyl.    19018    704    2015-12-11 18:16:44    2015-12-11 18:16:44    2
12863    Microdosing 90's truffaut fashion axe. Poutine occupy blue bottle cliche forage green juice tote bag small batch. Tote bag wayfarers venmo lumbersexual. Echo mixtape normcore.    19995    828    2015-06-18 19:25:41    2015-06-18 19:25:41    2
12878    Thundercats neutra seitan. Meggings next level chicharrones. Everyday narwhal plaid.    19997    715    2015-07-10 14:41:31    2015-07-10 14:41:31    2
12885    Sriracha freegan actually locavore craft beer. Keffiyeh irony sustainable messenger bag echo tacos. Craft beer echo before they sold out park iphone marfa. Dreamcatcher venmo pour-over master organic church-key cleanse. Cliche xoxo heirloom whatever wolf neutra lomo irony.    19391    714    2015-09-03 19:24:23    2015-09-03 19:24:23    2
12891    Tumblr bicycle rights mumblecore vegan flexitarian. Meditation mixtape truffaut normcore. Narwhal tofu kickstarter direct trade wayfarers literally. Pinterest sartorial wayfarers swag pickled next level semiotics mlkshk. Mlkshk semiotics umami 8-bit.    19540    811    2015-07-31 00:06:51    2015-07-31 00:06:51    2
12919    Trust fund pork belly salvia fixie synth. Fap hoodie ugh drinking paleo single-origin coffee pickled. Cray bicycle rights kogi narwhal vinegar tacos. Drinking beard yr xoxo seitan sustainable fap.    19125    909    2015-12-20 11:30:13    2015-12-20 11:30:13    2
12936    Ethical celiac kickstarter deep v post-ironic. Organic quinoa portland stumptown heirloom williamsburg vice 90's. Mustache distillery quinoa park diy tattooed. Put a bird on it squid health. Chicharrones hella fashion axe hoodie.    19431    704    2016-01-22 20:12:06    2016-01-22 20:12:06    2
12943    Disrupt leggings kogi schlitz listicle. Crucifix flannel jean shorts synth typewriter sriracha. Occupy vinyl flannel authentic. Sustainable wes anderson 90's +1 dreamcatcher gentrify austin raw denim. Meh truffaut microdosing.    19762    683    2015-07-23 11:58:51    2015-07-23 11:58:51    2
12952    Yolo pitchfork iphone chillwave gentrify xoxo twee health. Tote bag pinterest tattooed trust fund cliche. Pbr&b stumptown shoreditch flexitarian try-hard. Intelligentsia hoodie banjo pbr&b. 3 wolf moon yr poutine hella jean shorts gastropub.    19440    659    2015-07-31 12:36:04    2015-07-31 12:36:04    2
12961    Semiotics asymmetrical direct trade tilde. Venmo mumblecore butcher. Cardigan vice leggings chia offal polaroid. Pour-over craft beer wolf. Kale chips forage seitan typewriter.    19738    958    2015-05-18 15:00:52    2015-05-18 15:00:52    2
12969    Meggings hashtag craft beer. Aesthetic wayfarers 8-bit squid. Carry kitsch narwhal schlitz bespoke aesthetic yolo lo-fi.    19780    531    2015-09-30 06:12:50    2015-09-30 06:12:50    2
12973    Kombucha ramps green juice locavore sriracha. Meggings fanny pack kogi trust fund fixie hashtag loko roof. Kogi 3 wolf moon pabst pop-up seitan hoodie.    19376    794    2016-02-10 10:48:08    2016-02-10 10:48:08    2
12979    Forage tumblr vinegar carry celiac green juice deep v. Echo wayfarers pbr&b cliche pitchfork sriracha. Drinking freegan chia asymmetrical. Brunch typewriter asymmetrical. Vinyl waistcoat put a bird on it franzen.    19456    483    2015-11-17 05:20:01    2015-11-17 05:20:01    2
12981    Salvia selvage deep v selfies health. Fixie kombucha shabby chic hoodie tumblr vice tofu. Shabby chic kale chips intelligentsia.    19013    534    2016-02-01 10:49:12    2016-02-01 10:49:12    2
12990    Chicharrones butcher pug selvage taxidermy lo-fi lumbersexual tousled. 90's readymade dreamcatcher green juice meggings pbr&b waistcoat hella. Etsy kale chips kickstarter polaroid viral fashion axe cleanse distillery. Wayfarers schlitz pbr&b.    19806    791    2015-12-27 22:27:31    2015-12-27 22:27:31    2
13000    Meh normcore retro umami. Pickled lomo craft beer iphone distillery. Heirloom quinoa skateboard brunch.    19043    709    2015-09-13 02:53:43    2015-09-13 02:53:43    2
14969    Shoreditch biodiesel disrupt church-key. Flexitarian godard cleanse photo booth tattooed. Tattooed ethical farm-to-table. Yuccie yolo lo-fi.    19482    520    2015-06-26 05:58:57    2015-06-26 05:58:57    2
13033    Five dollar toast beard brooklyn. +1 kinfolk bushwick swag. Hammock cleanse flexitarian mumblecore plaid chillwave meggings. Chartreuse shabby chic trust fund sartorial church-key offal goth williamsburg.    19399    603    2015-07-29 13:17:51    2015-07-29 13:17:51    2
13049    Post-ironic before they sold out put a bird on it shoreditch. Health meh 8-bit blue bottle stumptown brooklyn green juice. Listicle tote bag pbr&b synth food truck tumblr master roof.    19268    758    2015-07-10 16:06:59    2015-07-10 16:06:59    2
13064    Lo-fi cornhole seitan readymade. Quinoa shabby chic bitters xoxo bushwick intelligentsia. You probably haven't heard of them sartorial polaroid aesthetic.    19666    708    2015-12-08 21:42:17    2015-12-08 21:42:17    2
13065    Whatever quinoa venmo humblebrag yolo. Bushwick iphone fingerstache synth 3 wolf moon hammock. Sustainable offal master helvetica.    19071    497    2015-05-02 21:05:50    2015-05-02 21:05:50    2
13089    Bespoke typewriter chia selfies. Tattooed hammock lumbersexual. Forage tofu mlkshk occupy crucifix vhs. Humblebrag quinoa tousled. Thundercats cred mixtape pitchfork venmo kinfolk slow-carb.    19677    853    2015-12-31 16:49:56    2015-12-31 16:49:56    2
13096    Williamsburg synth neutra iphone loko. Banjo schlitz plaid skateboard disrupt pork belly tofu fixie. Try-hard seitan blue bottle. Kitsch intelligentsia photo booth bespoke franzen actually. Church-key twee you probably haven't heard of them green juice selfies chicharrones.    19541    499    2015-07-12 23:04:08    2015-07-12 23:04:08    2
13100    Messenger bag hashtag stumptown bushwick dreamcatcher pour-over. Banjo vhs blog. Biodiesel polaroid lo-fi pour-over cliche hammock fashion axe shoreditch.    19130    595    2015-05-20 20:33:41    2015-05-20 20:33:41    2
13105    Kitsch put a bird on it irony pop-up pitchfork semiotics. Neutra photo booth mixtape forage. Intelligentsia letterpress truffaut pabst scenester. Biodiesel kale chips tofu lomo shabby chic echo cliche swag.    19330    918    2015-05-31 12:21:36    2015-05-31 12:21:36    2
13125    Sustainable pork belly asymmetrical brunch drinking. Pitchfork swag pop-up slow-carb. Craft beer mumblecore bicycle rights intelligentsia before they sold out put a bird on it. Pug knausgaard beard cornhole.    19638    891    2015-11-19 19:38:09    2015-11-19 19:38:09    2
13126    Kickstarter craft beer drinking tousled. Pinterest humblebrag biodiesel twee viral jean shorts 8-bit. Locavore cliche church-key knausgaard. Typewriter health jean shorts. Pitchfork pop-up meh vinyl photo booth.    19171    609    2015-12-18 07:31:15    2015-12-18 07:31:15    2
13134    Poutine echo thundercats normcore forage. Goth meh salvia park bicycle rights pug hoodie. Fixie mixtape sartorial blue bottle before they sold out gastropub fingerstache venmo. Flannel keytar craft beer 90's mumblecore. Wolf tofu chia meh ethical.    19653    659    2015-10-31 11:59:32    2015-10-31 11:59:32    2
13147    Chartreuse yolo tofu kickstarter park farm-to-table hella. Flexitarian farm-to-table gentrify austin retro salvia cronut. Whatever cliche actually keytar lo-fi viral. Fap flexitarian cold-pressed. Asymmetrical trust fund kinfolk.    19428    870    2016-01-21 00:13:57    2016-01-21 00:13:57    2
13155    Chartreuse cleanse kale chips fanny pack williamsburg. Cardigan ugh synth. Flexitarian franzen aesthetic chartreuse post-ironic sartorial fashion axe. Normcore listicle blue bottle authentic yuccie. Five dollar toast polaroid authentic plaid meggings quinoa.    19003    947    2015-07-09 01:34:31    2015-07-09 01:34:31    2
14192    Literally cray bicycle rights williamsburg mustache celiac. Kinfolk keffiyeh diy polaroid. Fap art party gentrify.    19839    815    2016-03-23 00:29:00    2016-03-23 00:29:00    2
13162    Cronut letterpress williamsburg echo helvetica mumblecore meh. Yr twee venmo aesthetic stumptown. Street photo booth raw denim selvage ennui vinyl.    19710    584    2016-03-19 21:56:39    2016-03-19 21:56:39    2
13174    Chia neutra vegan heirloom ugh blog. Gluten-free beard sustainable keffiyeh chia tumblr. Iphone celiac hammock kinfolk. Cornhole williamsburg truffaut banjo fingerstache letterpress pour-over. +1 drinking kitsch typewriter ennui.    19964    953    2015-11-24 20:58:09    2015-11-24 20:58:09    2
13176    Disrupt chambray skateboard flexitarian kinfolk next level chia single-origin coffee. Pop-up pickled bushwick cronut retro humblebrag organic disrupt. Master tilde polaroid seitan post-ironic cardigan.    19473    576    2015-07-11 20:03:58    2015-07-11 20:03:58    2
13193    Taxidermy skateboard gluten-free kinfolk bespoke loko vegan try-hard. Pitchfork bushwick neutra quinoa ugh. Blue bottle pour-over williamsburg franzen. Yuccie blog pour-over try-hard sriracha retro pug. Authentic keytar narwhal pinterest etsy viral cornhole.    19435    787    2016-02-24 16:00:07    2016-02-24 16:00:07    2
13197    Truffaut fanny pack cliche. Tattooed single-origin coffee pour-over biodiesel leggings pabst pitchfork. Godard occupy swag. Dreamcatcher meditation roof selfies chambray.    19288    871    2015-09-30 13:47:22    2015-09-30 13:47:22    2
13206    Next level tousled occupy before they sold out meditation forage. Salvia try-hard sustainable. Distillery tousled pour-over locavore.    19174    678    2016-03-08 05:43:53    2016-03-08 05:43:53    2
13219    Freegan trust fund semiotics diy 90's. Small batch keytar direct trade vinegar flexitarian 8-bit fashion axe shoreditch. Offal knausgaard cold-pressed brunch. Vhs freegan semiotics roof asymmetrical. Viral synth chartreuse cold-pressed.    19872    600    2015-08-22 13:46:57    2015-08-22 13:46:57    2
13220    Twee hella ethical iphone viral mixtape. Viral gluten-free single-origin coffee street pabst asymmetrical. Ethical meditation goth pour-over chia authentic. 8-bit organic cold-pressed green juice godard knausgaard vinegar gentrify. Truffaut vinyl distillery leggings.    19070    678    2015-09-28 04:26:57    2015-09-28 04:26:57    2
13225    Portland listicle scenester brunch pickled pbr&b 3 wolf moon cray. Artisan synth shoreditch. Tumblr tacos selvage chicharrones umami tofu. Cardigan artisan banh mi keytar mustache authentic xoxo. Diy fixie franzen before they sold out biodiesel organic tacos.    19461    862    2016-01-11 05:13:51    2016-01-11 05:13:51    2
13245    Plaid wayfarers gentrify whatever +1 next level. Readymade fashion axe 8-bit. Small batch everyday drinking roof helvetica sustainable.    19006    882    2015-05-26 13:17:10    2015-05-26 13:17:10    2
13248    Vhs shoreditch iphone echo meh blue bottle. 90's pop-up celiac vegan selvage. Pabst carry pbr&b.    19580    570    2015-11-05 10:48:02    2015-11-05 10:48:02    2
13259    Neutra +1 plaid. Banjo umami vinyl. Irony mlkshk jean shorts post-ironic umami.    19990    946    2015-04-22 19:45:46    2015-04-22 19:45:46    2
13264    Chicharrones seitan locavore messenger bag brunch. Tote bag meditation squid. Everyday fanny pack offal bespoke viral. Irony chicharrones tacos art party mumblecore lo-fi. Selvage photo booth cronut art party twee roof quinoa organic.    19439    574    2015-09-08 16:09:45    2015-09-08 16:09:45    2
13279    Neutra yolo narwhal brooklyn lumbersexual actually. Kickstarter +1 schlitz disrupt kitsch street. Park readymade cardigan kickstarter shabby chic twee plaid. Ramps distillery tote bag. Fanny pack squid skateboard.    19785    857    2015-12-20 13:19:56    2015-12-20 13:19:56    2
13283    Tacos single-origin coffee taxidermy wayfarers roof small batch. +1 fanny pack waistcoat chambray butcher 90's marfa trust fund. Cronut celiac godard fingerstache dreamcatcher plaid shabby chic austin. Viral vhs typewriter vegan banh mi franzen plaid pinterest.    19212    472    2015-12-09 22:10:37    2015-12-09 22:10:37    2
13292    Microdosing paleo banh mi pour-over thundercats. Ramps locavore blog. Humblebrag tattooed offal mumblecore pour-over sriracha. Aesthetic venmo squid salvia before they sold out chia butcher. Health plaid disrupt.    19979    500    2015-12-03 16:32:48    2015-12-03 16:32:48    2
13298    Irony pop-up seitan post-ironic salvia xoxo cliche intelligentsia. Keffiyeh sustainable helvetica art party banh mi occupy hoodie. Biodiesel tacos cleanse.    19711    913    2015-04-21 22:23:37    2015-04-21 22:23:37    2
13328    Locavore bicycle rights chillwave. Scenester health deep v cronut neutra pickled cardigan. Before they sold out tacos photo booth meditation blue bottle tilde hella paleo. Swag church-key gastropub authentic fashion axe fanny pack knausgaard single-origin coffee.    19433    810    2016-04-15 19:41:48    2016-04-15 19:41:48    2
13339    Hammock synth organic neutra. Vice twee single-origin coffee post-ironic scenester occupy pitchfork meggings. Xoxo venmo cold-pressed. Paleo yolo drinking.    19420    918    2015-09-17 13:26:17    2015-09-17 13:26:17    2
13344    Williamsburg slow-carb loko meditation park selfies keffiyeh. Forage taxidermy ramps heirloom flannel. Ethical post-ironic gastropub heirloom jean shorts selfies wolf.    19031    594    2016-02-02 03:51:37    2016-02-02 03:51:37    2
13349    Carry neutra readymade flexitarian chia. Goth next level ramps meditation meggings shabby chic food truck portland. Roof skateboard gluten-free helvetica.    19432    935    2015-08-23 18:50:33    2015-08-23 18:50:33    2
13363    Artisan meh forage scenester tousled taxidermy cray. Organic chartreuse green juice meditation portland tousled pabst godard. Drinking tote bag readymade literally organic seitan kogi kale chips.    19059    883    2015-11-03 04:22:08    2015-11-03 04:22:08    2
13367    Marfa next level mlkshk photo booth whatever. Intelligentsia cronut flannel you probably haven't heard of them. Vice tote bag iphone trust fund kogi typewriter whatever.    19042    954    2015-06-04 22:34:54    2015-06-04 22:34:54    2
13387    Chia 90's viral shabby chic tofu craft beer. Tacos cleanse pop-up gentrify vhs bitters. Pabst etsy iphone readymade.    19873    845    2015-05-06 00:21:22    2015-05-06 00:21:22    2
13391    Knausgaard salvia bespoke vhs meggings park bicycle rights. Pabst truffaut direct trade kogi everyday cray marfa bespoke. Single-origin coffee meditation cardigan ugh jean shorts.    19452    646    2016-04-11 00:45:25    2016-04-11 00:45:25    2
13399    Farm-to-table flexitarian five dollar toast. Craft beer drinking tofu etsy vinegar. Kombucha cardigan hammock yr blog photo booth pug. Carry chartreuse shabby chic 90's yuccie distillery next level.    19493    691    2015-08-18 16:35:08    2015-08-18 16:35:08    2
13403    Pug kombucha 90's. Lumbersexual heirloom paleo pug stumptown yolo tilde. Flannel fashion axe gluten-free kale chips.    19687    711    2016-02-10 00:12:15    2016-02-10 00:12:15    2
13432    Pitchfork street bitters small batch waistcoat everyday. Readymade cliche aesthetic humblebrag chillwave neutra tattooed before they sold out. Letterpress blue bottle whatever echo cray pickled.    19589    626    2015-06-11 09:31:26    2015-06-11 09:31:26    2
13451    Microdosing polaroid fanny pack celiac shabby chic brooklyn. Twee pork belly vice ramps squid cold-pressed shoreditch. Cornhole beard kinfolk bespoke. Five dollar toast drinking meh deep v mustache thundercats. Farm-to-table everyday hoodie beard occupy ennui.    19399    674    2015-05-16 10:41:47    2015-05-16 10:41:47    2
13457    Disrupt blog tilde distillery. Helvetica artisan portland readymade everyday. Fap vinegar aesthetic chia. Pop-up tacos neutra banh mi fap.    19372    510    2015-10-15 05:26:37    2015-10-15 05:26:37    2
13465    Loko pabst cronut. Bespoke artisan cold-pressed iphone plaid ramps. Forage cornhole brunch. Listicle cornhole mustache pitchfork fingerstache meggings. Heirloom helvetica sriracha.    19464    868    2015-11-23 09:13:15    2015-11-23 09:13:15    2
13483    Wayfarers letterpress kickstarter. Viral fanny pack roof pickled tousled ugh leggings brooklyn. Bicycle rights pbr&b whatever stumptown kitsch. Quinoa +1 mumblecore banh mi retro heirloom.    19937    934    2015-09-25 15:34:54    2015-09-25 15:34:54    2
13486    3 wolf moon farm-to-table lomo butcher direct trade. Readymade forage meditation. +1 mustache vhs. Locavore asymmetrical wayfarers authentic. Sartorial listicle vinegar hashtag.    19548    669    2015-08-05 02:33:10    2015-08-05 02:33:10    2
13504    Cliche paleo post-ironic dreamcatcher. Tofu art party drinking williamsburg selfies craft beer post-ironic thundercats. Pabst 3 wolf moon chicharrones. Cronut locavore humblebrag trust fund portland. Scenester butcher whatever venmo photo booth listicle.    19609    907    2016-02-04 16:14:45    2016-02-04 16:14:45    2
13529    Polaroid diy next level pour-over vinyl. Raw denim mixtape venmo park vhs celiac ethical. Tacos five dollar toast locavore. Actually ennui marfa church-key selfies synth tacos. Microdosing jean shorts church-key wolf blog butcher gentrify.    19674    900    2015-12-30 06:22:59    2015-12-30 06:22:59    2
13535    Bushwick swag pinterest jean shorts irony. Humblebrag tacos semiotics poutine meh wolf blue bottle. Offal chicharrones salvia heirloom migas.    19262    796    2015-09-09 01:39:04    2015-09-09 01:39:04    2
13545    Hashtag direct trade art party. Photo booth pug cliche venmo keffiyeh. Mlkshk narwhal quinoa forage raw denim cardigan meh thundercats. Twee tilde cronut keffiyeh thundercats yr raw denim.    19419    765    2015-11-15 13:29:59    2015-11-15 13:29:59    2
13550    Freegan shabby chic poutine letterpress ethical gluten-free migas. Offal tofu listicle cronut post-ironic xoxo mixtape marfa. Thundercats twee typewriter master. Leggings mixtape kitsch wolf banjo post-ironic gluten-free. Ennui irony mumblecore bushwick cliche fixie.    19568    647    2015-12-15 15:52:34    2015-12-15 15:52:34    2
13558    Normcore direct trade tote bag schlitz marfa pop-up portland. Tumblr pickled master trust fund. Kogi tofu tote bag salvia direct trade disrupt +1 lo-fi. Kickstarter photo booth flexitarian loko.    19908    590    2015-09-23 02:40:26    2015-09-23 02:40:26    2
13565    Cronut occupy hoodie umami xoxo flexitarian park viral. Kinfolk pitchfork plaid. Scenester mumblecore etsy gluten-free five dollar toast biodiesel cornhole twee. Sustainable 90's actually distillery. Squid swag raw denim.    19586    863    2016-04-14 18:06:41    2016-04-14 18:06:41    2
13566    Fixie tumblr taxidermy master flannel drinking kinfolk schlitz. Plaid photo booth vinyl artisan occupy street. Pop-up single-origin coffee mixtape you probably haven't heard of them tote bag disrupt. Carry butcher wayfarers flannel diy stumptown semiotics. 8-bit cardigan next level shabby chic pour-over waistcoat street pbr&b.    19370    772    2015-08-20 08:30:42    2015-08-20 08:30:42    2
13568    Before they sold out food truck crucifix messenger bag jean shorts. Pour-over authentic listicle chartreuse. Ramps literally paleo lo-fi fixie. Farm-to-table vinegar food truck pabst kombucha cliche hoodie. Cornhole meh venmo marfa.    19987    862    2015-06-19 07:35:14    2015-06-19 07:35:14    2
13573    Keytar chicharrones distillery chillwave. Portland everyday sustainable chambray. Messenger bag plaid dreamcatcher everyday pop-up tofu yolo diy.    19882    467    2016-03-06 22:51:43    2016-03-06 22:51:43    2
13577    Wayfarers aesthetic roof hella. Church-key vegan tilde. Franzen chambray 90's irony authentic meh blue bottle beard. Tacos helvetica cleanse mlkshk seitan photo booth skateboard ramps. Wayfarers listicle vhs.    19897    472    2016-03-07 12:53:18    2016-03-07 12:53:18    2
13580    Bitters mustache pitchfork distillery beard actually. Sartorial vegan pug butcher celiac umami yuccie direct trade. Next level artisan loko. Portland pinterest irony tousled etsy before they sold out migas meditation.    19354    781    2016-02-27 20:54:27    2016-02-27 20:54:27    2
13591    Green juice semiotics raw denim thundercats wayfarers. Kinfolk twee raw denim put a bird on it. Vegan 3 wolf moon bushwick whatever freegan. Bitters marfa tousled polaroid.    19109    481    2016-03-02 06:14:32    2016-03-02 06:14:32    2
13593    Narwhal artisan try-hard before they sold out gentrify. Hashtag gentrify gastropub chartreuse whatever. Etsy ethical humblebrag.    19222    724    2015-10-13 11:42:16    2015-10-13 11:42:16    2
13610    Drinking meggings banjo selfies semiotics pug. Health poutine irony locavore fashion axe. Chicharrones migas iphone aesthetic salvia gluten-free cronut.    19913    636    2016-03-13 23:41:45    2016-03-13 23:41:45    2
13611    Umami polaroid normcore put a bird on it keytar. Organic try-hard cliche typewriter wes anderson. Keffiyeh beard crucifix kitsch. Bespoke knausgaard mumblecore crucifix authentic. Pork belly migas vegan venmo etsy shoreditch ethical yolo.    19971    607    2016-01-05 10:37:40    2016-01-05 10:37:40    2
13643    90's vegan fap pabst health lumbersexual readymade beard. Roof biodiesel mixtape vhs pug. Direct trade pork belly paleo cred bespoke pour-over gentrify. Portland poutine cronut synth wes anderson shabby chic distillery.    19985    708    2016-02-24 03:38:28    2016-02-24 03:38:28    2
13650    Kickstarter diy williamsburg lumbersexual cliche pinterest before they sold out raw denim. Biodiesel street cornhole keffiyeh neutra marfa kinfolk actually. Keytar mlkshk celiac art party chartreuse wayfarers. Fingerstache kitsch farm-to-table scenester before they sold out microdosing. Lumbersexual gentrify shabby chic sartorial authentic schlitz tumblr tote bag.    19017    618    2015-05-01 13:43:45    2015-05-01 13:43:45    2
13661    Taxidermy kogi seitan leggings marfa 3 wolf moon. Slow-carb kogi migas vegan meh park meditation. Chillwave thundercats vinyl tacos yuccie food truck pabst. Skateboard tousled lo-fi cred flexitarian neutra dreamcatcher.    19269    687    2015-07-16 19:54:22    2015-07-16 19:54:22    2
13663    3 wolf moon cray fingerstache taxidermy retro yr. Twee portland carry. Brooklyn kale chips ugh. Wolf austin twee mlkshk kinfolk post-ironic. Thundercats hammock cray occupy poutine before they sold out hella put a bird on it.    19604    547    2015-10-14 17:16:09    2015-10-14 17:16:09    2
13670    Bicycle rights marfa post-ironic pickled. Paleo schlitz pabst marfa keytar umami. Salvia chartreuse offal leggings biodiesel paleo. Actually narwhal single-origin coffee.    19237    683    2015-11-29 07:13:55    2015-11-29 07:13:55    2
13682    Organic cray narwhal craft beer retro schlitz vice. Cray salvia retro keffiyeh mumblecore cardigan fixie street. Austin sustainable gastropub.    19023    911    2016-04-08 08:00:52    2016-04-08 08:00:52    2
13702    Health polaroid franzen pabst raw denim ramps tumblr. Williamsburg banh mi kickstarter. Forage gastropub try-hard banjo brunch.    19606    664    2015-10-26 15:17:52    2015-10-26 15:17:52    2
13703    Pork belly offal dreamcatcher tacos actually roof tousled. Cred flexitarian neutra tattooed plaid pabst street. Gentrify asymmetrical yolo carry wolf. Bicycle rights master crucifix yuccie bitters five dollar toast. Bushwick xoxo mustache +1 next level.    19612    600    2015-08-13 10:17:58    2015-08-13 10:17:58    2
13711    +1 ethical park disrupt vegan narwhal banh mi. Pinterest listicle next level. Art party dreamcatcher sartorial paleo you probably haven't heard of them poutine. Chicharrones tacos art party food truck occupy.    19404    812    2016-03-07 21:25:22    2016-03-07 21:25:22    2
13714    Selvage mixtape slow-carb waistcoat. Austin yuccie ennui kale chips. Kickstarter diy taxidermy butcher normcore tilde sustainable.    19910    612    2015-06-15 07:10:33    2015-06-15 07:10:33    2
13734    Migas wolf brunch keytar. Pitchfork fixie helvetica quinoa. Keffiyeh sartorial kombucha pitchfork.    19694    653    2016-02-21 16:24:20    2016-02-21 16:24:20    2
13735    Sriracha banh mi letterpress freegan carry hoodie kinfolk kombucha. Pbr&b next level tilde skateboard narwhal wayfarers. Put a bird on it vinegar dreamcatcher biodiesel.    19513    521    2015-06-27 08:23:14    2015-06-27 08:23:14    2
13746    Cardigan loko whatever deep v vhs synth yolo. Bespoke pitchfork fingerstache roof migas. Thundercats five dollar toast forage plaid craft beer brooklyn. Freegan franzen authentic vegan. Lomo skateboard freegan distillery leggings meditation yr.    19861    844    2016-01-19 09:50:18    2016-01-19 09:50:18    2
13747    90's sustainable put a bird on it single-origin coffee banjo dreamcatcher cronut tousled. Chicharrones artisan diy ennui kogi yolo echo. Chicharrones actually blue bottle retro literally. Tousled raw denim flannel.    19649    894    2016-04-20 04:39:55    2016-04-20 04:39:55    2
13749    Meggings celiac trust fund. Kogi street godard beard farm-to-table brunch pork belly pbr&b. Disrupt lomo banh mi drinking listicle. Lo-fi roof listicle.    19994    659    2015-05-26 16:15:15    2015-05-26 16:15:15    2
13761    Yolo venmo ramps. Dreamcatcher bitters selvage. Kogi mumblecore kickstarter chambray. Williamsburg cornhole street swag fap loko thundercats.    19975    669    2016-01-05 05:20:28    2016-01-05 05:20:28    2
13765    Fap williamsburg keytar disrupt lo-fi yr irony cronut. Slow-carb master raw denim dreamcatcher cardigan narwhal readymade selvage. Polaroid skateboard mustache. Yr drinking venmo.    19600    701    2015-07-01 23:17:58    2015-07-01 23:17:58    2
13779    Tofu sartorial waistcoat flannel normcore. Craft beer 90's artisan yolo biodiesel kogi seitan. Cliche swag venmo lo-fi keytar waistcoat humblebrag shabby chic. Drinking biodiesel pabst vice selvage bespoke vhs tilde.    19592    735    2015-08-30 07:55:19    2015-08-30 07:55:19    2
13784    Fashion axe etsy gastropub shabby chic locavore. Kogi kitsch seitan. Whatever food truck jean shorts brooklyn.    19761    519    2015-08-09 17:46:32    2015-08-09 17:46:32    2
13785    Mustache whatever waistcoat listicle. Master butcher readymade portland offal vhs. Godard brooklyn xoxo lumbersexual.    19905    556    2015-09-06 22:20:27    2015-09-06 22:20:27    2
13800    Gluten-free shoreditch normcore heirloom flannel vinyl. Farm-to-table butcher raw denim five dollar toast. Green juice irony locavore helvetica leggings. Shoreditch food truck williamsburg.    19008    810    2015-05-08 14:57:25    2015-05-08 14:57:25    2
13803    Put a bird on it echo twee bushwick 3 wolf moon tofu forage cardigan. Five dollar toast blue bottle meditation irony food truck. Chia authentic etsy deep v.    19776    742    2015-10-27 15:27:00    2015-10-27 15:27:00    2
13808    Sriracha paleo meh cleanse listicle humblebrag. Ugh chambray humblebrag hella +1 drinking pinterest. Small batch sustainable marfa. Chicharrones jean shorts trust fund cleanse chambray bushwick cardigan. Loko brooklyn farm-to-table small batch leggings +1.    19641    600    2015-11-17 22:13:52    2015-11-17 22:13:52    2
13821    Banjo fanny pack intelligentsia. Banjo keytar sriracha pbr&b. Synth semiotics hashtag meditation godard. Roof waistcoat iphone helvetica organic vice taxidermy.    19563    546    2015-12-31 06:49:11    2015-12-31 06:49:11    2
13826    Bespoke gastropub crucifix slow-carb truffaut photo booth. Deep v wolf taxidermy tattooed. Fashion axe iphone 90's tilde jean shorts vinegar 3 wolf moon poutine.    19935    899    2015-09-04 15:53:24    2015-09-04 15:53:24    2
13838    Offal wayfarers tumblr chartreuse roof jean shorts banh mi pickled. Mumblecore green juice hella raw denim diy goth bushwick. Fashion axe cold-pressed meh carry forage. Schlitz pour-over messenger bag stumptown pug helvetica.    19353    593    2015-08-24 05:26:40    2015-08-24 05:26:40    2
13846    +1 stumptown brooklyn. Celiac yuccie everyday kickstarter. Thundercats helvetica gluten-free small batch forage banh mi. Direct trade retro crucifix yuccie food truck. Shoreditch meh kale chips celiac you probably haven't heard of them pbr&b.    19091    635    2015-04-22 19:52:03    2015-04-22 19:52:03    2
13848    Everyday marfa cliche tofu poutine tilde five dollar toast ramps. Hammock ethical drinking. Selfies squid echo listicle bespoke church-key lo-fi typewriter.    19739    755    2015-08-04 09:25:59    2015-08-04 09:25:59    2
13854    Selvage lumbersexual humblebrag 90's chicharrones trust fund twee irony. Twee wes anderson craft beer. Shabby chic flannel pitchfork 8-bit master slow-carb viral ethical. Letterpress put a bird on it vinyl celiac aesthetic carry jean shorts. Umami flexitarian shabby chic letterpress whatever swag tilde.    19472    779    2015-06-18 21:41:55    2015-06-18 21:41:55    2
14982    Cardigan fashion axe shoreditch butcher farm-to-table church-key kitsch. Semiotics twee vinyl selfies chartreuse ennui hammock. Tote bag tacos skateboard vegan.    19896    574    2015-12-05 05:21:25    2015-12-05 05:21:25    2
13856    Sustainable crucifix craft beer pork belly sartorial ennui mumblecore austin. Fashion axe shabby chic kale chips. Letterpress loko messenger bag drinking gastropub chia. Fingerstache austin gastropub. Swag whatever franzen dreamcatcher direct trade thundercats lumbersexual xoxo.    19267    639    2015-10-12 04:15:52    2015-10-12 04:15:52    2
13859    Semiotics pabst celiac banh mi post-ironic tofu. Direct trade ramps williamsburg franzen. Occupy yr keytar tumblr hammock.    19243    950    2016-03-25 04:13:45    2016-03-25 04:13:45    2
13864    Venmo park lomo five dollar toast tofu. Tilde hashtag farm-to-table cronut mixtape ugh. Lo-fi gentrify forage tote bag pop-up dreamcatcher lomo green juice.    19087    954    2016-04-07 02:04:53    2016-04-07 02:04:53    2
13872    Wayfarers direct trade sriracha viral. Kitsch celiac fanny pack aesthetic cronut fixie. Truffaut freegan gluten-free biodiesel.    19323    830    2015-08-08 01:01:20    2015-08-08 01:01:20    2
13873    Cronut pop-up green juice disrupt blog meh bicycle rights fixie. Hashtag iphone aesthetic. Tacos five dollar toast letterpress you probably haven't heard of them. Vhs viral heirloom goth organic chartreuse. Beard chartreuse banjo.    19319    468    2016-03-15 01:38:46    2016-03-15 01:38:46    2
13881    Listicle art party 8-bit bicycle rights keytar roof. Chia tofu cred master cornhole shabby chic heirloom. Retro twee bitters stumptown gentrify pork belly.    19672    650    2015-12-27 10:57:21    2015-12-27 10:57:21    2
13886    Microdosing quinoa hella. Hoodie cliche stumptown trust fund. Jean shorts messenger bag organic hashtag fap kale chips. Carry biodiesel xoxo quinoa street irony mustache cray. Quinoa pork belly pabst.    19848    742    2016-02-13 12:11:22    2016-02-13 12:11:22    2
13896    Tofu mixtape pinterest next level meditation green juice portland stumptown. Austin slow-carb wolf seitan church-key brunch vinyl disrupt. Migas actually truffaut pinterest loko letterpress chia. Swag franzen sustainable keffiyeh. Blog cleanse health.    19790    843    2015-09-07 21:29:26    2015-09-07 21:29:26    2
13902    Yuccie before they sold out aesthetic. Biodiesel street thundercats. Cleanse wes anderson intelligentsia.    19715    614    2015-12-19 19:38:02    2015-12-19 19:38:02    2
13912    Whatever viral humblebrag listicle wayfarers. Goth fingerstache tilde selfies fashion axe. Portland brunch poutine readymade roof. Irony literally yr. Carry migas cliche.    19248    713    2015-11-14 08:39:52    2015-11-14 08:39:52    2
13916    Master fingerstache xoxo artisan fashion axe. Goth cronut butcher mlkshk poutine listicle park pinterest. Crucifix listicle kogi. Locavore photo booth freegan xoxo.    19519    534    2015-08-13 22:31:08    2015-08-13 22:31:08    2
13923    Ugh drinking meggings +1 gentrify vinyl. Green juice artisan you probably haven't heard of them tote bag salvia beard shabby chic. Cold-pressed neutra put a bird on it kale chips small batch. Mustache wolf fap tote bag brunch. Diy chia seitan.    19155    792    2015-09-07 11:46:17    2015-09-07 11:46:17    2
13925    Actually chambray offal. Wes anderson kogi waistcoat yuccie keytar ethical pickled. Try-hard vinyl celiac next level kinfolk. Vhs chicharrones xoxo knausgaard stumptown venmo. Deep v migas tousled lo-fi schlitz iphone park chartreuse.    19001    720    2015-04-29 14:38:30    2015-04-29 14:38:30    2
13929    Green juice +1 wayfarers kale chips cray vinegar squid. Pbr&b drinking narwhal. Food truck semiotics offal salvia typewriter cardigan. Church-key 3 wolf moon hammock five dollar toast authentic.    19595    517    2015-05-27 15:34:59    2015-05-27 15:34:59    2
13932    Slow-carb banjo heirloom food truck disrupt narwhal authentic drinking. Wayfarers bitters gentrify tofu. Thundercats meditation whatever humblebrag artisan lo-fi schlitz.    19510    561    2015-08-03 21:41:11    2015-08-03 21:41:11    2
13933    Crucifix five dollar toast messenger bag austin authentic banh mi meh tote bag. Carry asymmetrical kombucha. Xoxo literally chillwave. Humblebrag xoxo tumblr truffaut synth. Artisan kitsch mumblecore.    19754    630    2016-01-31 15:30:07    2016-01-31 15:30:07    2
13938    Park hashtag fixie tattooed humblebrag dreamcatcher. Organic narwhal crucifix chambray ethical. Biodiesel mixtape bushwick tacos wolf.    19255    880    2015-08-20 16:26:00    2015-08-20 16:26:00    2
13943    Put a bird on it mixtape butcher pork belly. Vhs flannel 8-bit forage +1 seitan. Pug put a bird on it lo-fi meh forage. Retro fashion axe forage. Ennui pork belly post-ironic helvetica freegan cornhole.    19611    632    2015-11-09 01:08:27    2015-11-09 01:08:27    2
13948    Blog portland keytar shabby chic keffiyeh quinoa selvage asymmetrical. Taxidermy pbr&b 90's narwhal +1 fanny pack photo booth. Readymade pug selfies quinoa intelligentsia food truck asymmetrical artisan. Banjo +1 church-key kickstarter freegan. Kogi readymade selvage yuccie post-ironic master.    19750    813    2016-01-10 23:21:47    2016-01-10 23:21:47    2
13959    Vice leggings meditation. Carry tousled schlitz yr yuccie photo booth tofu brooklyn. Street yolo semiotics normcore 8-bit.    19168    487    2015-07-18 16:38:04    2015-07-18 16:38:04    2
13961    Pork belly kickstarter wolf slow-carb cold-pressed. Pork belly goth helvetica ennui blue bottle. Selvage asymmetrical quinoa locavore. Five dollar toast flannel vinyl ethical occupy irony letterpress. Brunch waistcoat freegan.    19990    477    2015-12-23 10:28:46    2015-12-23 10:28:46    2
13973    Kickstarter cleanse cliche taxidermy farm-to-table umami sriracha. Chartreuse cred neutra helvetica seitan jean shorts heirloom. Hammock helvetica art party authentic narwhal umami. Park salvia ramps bitters echo kogi paleo.    19047    853    2016-02-09 02:40:10    2016-02-09 02:40:10    2
13987    Butcher disrupt banh mi. Franzen literally xoxo kickstarter migas. Fashion axe scenester tousled tote bag 90's irony try-hard.    19458    825    2015-08-26 01:21:59    2015-08-26 01:21:59    2
14002    Venmo tofu paleo cray kinfolk helvetica pork belly. 90's sartorial pour-over paleo. 3 wolf moon artisan venmo bespoke. Polaroid humblebrag single-origin coffee. Tote bag hammock blue bottle lomo squid sustainable semiotics xoxo.    19930    851    2015-06-06 00:54:30    2015-06-06 00:54:30    2
14039    Literally keffiyeh freegan hoodie art party chambray flexitarian try-hard. Bushwick pug raw denim tacos synth meditation organic. Wes anderson disrupt trust fund normcore semiotics kinfolk. Fap fingerstache pickled skateboard. Gluten-free listicle pitchfork gentrify viral 8-bit kickstarter.    19710    491    2015-12-05 12:07:18    2015-12-05 12:07:18    2
14050    Pop-up bespoke single-origin coffee carry post-ironic franzen keffiyeh. Street microdosing actually salvia jean shorts pop-up. Occupy beard tofu craft beer. Brunch humblebrag heirloom bushwick small batch. Fixie asymmetrical street meditation ugh small batch church-key.    19532    631    2016-01-26 19:45:47    2016-01-26 19:45:47    2
14087    Jean shorts yolo paleo authentic carry gluten-free 90's. Small batch listicle etsy kinfolk. Forage franzen next level bushwick you probably haven't heard of them. Semiotics cold-pressed try-hard literally etsy sriracha. Synth vinegar forage thundercats narwhal master kogi.    19546    826    2015-10-02 04:22:46    2015-10-02 04:22:46    2
14089    Trust fund pour-over offal swag jean shorts food truck. Waistcoat letterpress church-key. 8-bit cray quinoa keffiyeh meggings health.    19202    885    2015-10-06 03:03:22    2015-10-06 03:03:22    2
14100    Vegan fingerstache whatever literally waistcoat lo-fi. Lumbersexual mixtape flannel waistcoat yolo austin meggings. Fanny pack diy seitan authentic letterpress chartreuse. Kickstarter neutra actually farm-to-table cred. Helvetica shoreditch organic bicycle rights.    19958    505    2015-09-08 21:49:18    2015-09-08 21:49:18    2
14102    Craft beer bitters leggings seitan organic. Before they sold out authentic craft beer pork belly hammock. Blog letterpress ennui bespoke small batch locavore vice tumblr.    19810    655    2015-11-05 22:10:13    2015-11-05 22:10:13    2
14106    Tacos humblebrag viral 3 wolf moon neutra. Beard fashion axe next level cold-pressed microdosing kinfolk photo booth poutine. Waistcoat master before they sold out pabst. Chartreuse synth you probably haven't heard of them freegan cleanse poutine crucifix. Lumbersexual wolf freegan pinterest try-hard gastropub single-origin coffee.    19564    776    2015-08-02 20:43:13    2015-08-02 20:43:13    2
14124    Chillwave banh mi gluten-free. Yuccie vegan shoreditch fashion axe hoodie locavore. +1 lo-fi bicycle rights austin jean shorts asymmetrical bespoke. Literally fixie pour-over. Fap goth neutra.    19625    751    2015-08-28 00:01:33    2015-08-28 00:01:33    2
14125    Vice cray kinfolk before they sold out mumblecore intelligentsia. Jean shorts forage readymade wolf. Loko vhs drinking neutra pbr&b offal.    19736    838    2016-02-21 11:19:20    2016-02-21 11:19:20    2
14128    Mlkshk street venmo seitan loko tacos gluten-free. Hoodie truffaut loko hashtag. Cold-pressed seitan cred craft beer health. Art party pickled venmo seitan raw denim single-origin coffee you probably haven't heard of them letterpress. Fingerstache blog art party wayfarers asymmetrical disrupt.    19316    528    2016-01-05 05:46:18    2016-01-05 05:46:18    2
14135    Craft beer next level stumptown microdosing asymmetrical blue bottle. Paleo vinyl tumblr xoxo. Literally banjo stumptown twee portland bushwick vinegar ramps. Truffaut salvia readymade deep v 3 wolf moon flexitarian crucifix. Disrupt craft beer forage taxidermy put a bird on it.    19056    901    2016-04-03 02:36:46    2016-04-03 02:36:46    2
14139    Small batch authentic before they sold out wolf. Diy bushwick cliche. 3 wolf moon quinoa swag readymade hoodie food truck portland pickled.    19419    754    2015-12-18 21:16:38    2015-12-18 21:16:38    2
14148    Brunch distillery retro venmo. Sustainable put a bird on it cliche. Portland pop-up hella neutra sustainable microdosing hammock forage. Venmo occupy iphone hoodie wolf. Migas williamsburg fap schlitz.    19991    731    2016-04-19 16:31:25    2016-04-19 16:31:25    2
14150    Kogi letterpress master truffaut tilde kinfolk before they sold out 8-bit. Gastropub fashion axe vhs blog park ramps twee disrupt. Venmo wes anderson kitsch next level.    19386    896    2015-08-31 12:49:20    2015-08-31 12:49:20    2
14155    Slow-carb shabby chic raw denim keffiyeh tumblr paleo. Before they sold out portland organic tattooed five dollar toast. Skateboard humblebrag kale chips hashtag small batch disrupt poutine.    19218    762    2015-05-05 16:23:55    2015-05-05 16:23:55    2
14169    Trust fund stumptown aesthetic disrupt post-ironic listicle. Before they sold out organic diy trust fund lo-fi skateboard bespoke. Readymade yr blue bottle pug leggings chia five dollar toast vhs.    19006    785    2015-10-02 19:43:57    2015-10-02 19:43:57    2
14175    Fanny pack keffiyeh leggings diy fap. Normcore vhs franzen tofu. Letterpress kale chips pickled literally. Stumptown waistcoat health. Hella normcore yuccie fingerstache hammock.    19114    614    2015-06-04 21:51:55    2015-06-04 21:51:55    2
14191    Pabst flexitarian mixtape deep v vice. Photo booth diy scenester paleo next level. Stumptown hella poutine literally cornhole tote bag vhs listicle. Irony banh mi brooklyn direct trade.    19477    732    2015-07-20 08:19:53    2015-07-20 08:19:53    2
14195    Austin echo roof flannel brunch twee tattooed selfies. Scenester chartreuse mixtape leggings normcore vinyl. Offal asymmetrical craft beer franzen meditation green juice. Selvage bespoke craft beer.    19663    506    2015-10-27 15:46:00    2015-10-27 15:46:00    2
14198    Listicle flannel vegan. Ethical kogi mlkshk tattooed. Pbr&b chartreuse tote bag fashion axe iphone leggings fap bitters.    19444    846    2016-03-02 06:16:58    2016-03-02 06:16:58    2
14199    Humblebrag 90's quinoa. Fanny pack cardigan salvia diy bushwick banh mi listicle. Meh organic fixie chartreuse intelligentsia vinyl ugh authentic.    19813    778    2015-12-26 05:58:40    2015-12-26 05:58:40    2
14205    Poutine hella mixtape hoodie post-ironic. Shabby chic pug meditation disrupt pickled. Direct trade occupy squid fixie portland.    19868    654    2016-04-01 22:08:23    2016-04-01 22:08:23    2
14223    Pbr&b yr brunch lumbersexual cardigan fingerstache. Butcher tofu lomo. Hashtag readymade chicharrones kickstarter umami asymmetrical. Church-key actually kinfolk salvia shoreditch.    19746    694    2016-04-09 05:18:46    2016-04-09 05:18:46    2
14224    Asymmetrical meditation organic. Venmo pickled post-ironic. Intelligentsia irony freegan kitsch mixtape mustache poutine. Whatever locavore etsy portland.    19539    672    2016-03-22 11:28:10    2016-03-22 11:28:10    2
14226    Fanny pack fashion axe cred gastropub franzen street portland kinfolk. Farm-to-table kickstarter intelligentsia wayfarers slow-carb. Deep v 8-bit hoodie.    19055    707    2016-02-22 05:14:25    2016-02-22 05:14:25    2
14242    Artisan photo booth intelligentsia street blue bottle plaid pour-over. Tilde brunch lumbersexual direct trade cray put a bird on it irony everyday. Viral vice master fap lomo. Chicharrones cornhole cliche master.    19120    598    2015-10-21 10:19:00    2015-10-21 10:19:00    2
14306    Wes anderson tote bag vegan paleo fixie street. Kale chips lo-fi actually fashion axe viral organic vhs. Gentrify gluten-free gastropub chillwave wolf twee marfa tumblr. Whatever marfa deep v kitsch.    19738    560    2015-08-30 03:48:41    2015-08-30 03:48:41    2
14249    Taxidermy cold-pressed viral iphone locavore. Disrupt leggings celiac pug meditation chillwave helvetica. Wayfarers next level gentrify plaid lumbersexual iphone retro hammock.    19533    946    2015-05-13 17:32:31    2015-05-13 17:32:31    2
14281    Meh lomo put a bird on it cold-pressed crucifix chambray park. Pitchfork kale chips tousled authentic. Hammock biodiesel iphone bushwick marfa. Portland photo booth disrupt pickled umami tousled quinoa.    19461    653    2015-08-25 13:13:18    2015-08-25 13:13:18    2
14314    Semiotics yr asymmetrical ugh helvetica celiac pug tousled. Actually mixtape fanny pack. Sustainable offal neutra. Godard organic portland scenester put a bird on it vegan brooklyn selvage. Cray tilde brunch pbr&b umami squid.    19631    526    2015-11-20 14:23:42    2015-11-20 14:23:42    2
14321    Authentic tumblr keffiyeh try-hard tote bag. Blog fingerstache distillery health. Street authentic yr. Post-ironic portland vinyl slow-carb gluten-free. Lomo tousled drinking truffaut diy chillwave.    19522    476    2015-11-15 00:21:37    2015-11-15 00:21:37    2
14323    Etsy bicycle rights venmo brunch umami. Keytar pabst raw denim farm-to-table taxidermy. Chillwave mumblecore diy fingerstache migas semiotics fixie. Photo booth locavore church-key chartreuse. Wolf blue bottle mlkshk vice tattooed trust fund williamsburg chicharrones.    19294    920    2016-01-04 19:37:11    2016-01-04 19:37:11    2
14324    Mlkshk pour-over banh mi portland green juice hammock vice viral. Before they sold out normcore lo-fi kinfolk leggings farm-to-table keytar. Chia fanny pack asymmetrical celiac austin helvetica squid. Banh mi small batch goth.    19152    695    2015-07-25 02:32:24    2015-07-25 02:32:24    2
14329    Five dollar toast salvia lumbersexual chambray health portland stumptown pickled. Pabst narwhal trust fund tacos kombucha pinterest franzen. Chambray schlitz locavore vinyl. Pickled organic loko.    19800    634    2016-03-22 23:41:53    2016-03-22 23:41:53    2
14336    Trust fund organic mustache skateboard pickled xoxo flannel. Mustache art party yr squid cray microdosing. Tofu next level cold-pressed synth stumptown skateboard gastropub farm-to-table. Ramps leggings biodiesel taxidermy synth bushwick distillery mixtape.    19027    820    2015-09-21 06:43:26    2015-09-21 06:43:26    2
14339    Retro cold-pressed fingerstache poutine deep v food truck kale chips raw denim. Kogi chartreuse celiac hoodie post-ironic. Art party fingerstache keytar squid wolf street chambray chillwave.    19646    661    2015-08-07 23:35:17    2015-08-07 23:35:17    2
14341    Organic slow-carb keffiyeh intelligentsia austin bicycle rights typewriter migas. Vhs cray swag viral. Keffiyeh chambray butcher raw denim lo-fi austin. Mlkshk franzen microdosing before they sold out lumbersexual pop-up readymade narwhal. Lomo yr iphone intelligentsia salvia letterpress.    19599    796    2015-07-27 01:14:05    2015-07-27 01:14:05    2
14342    Hoodie keffiyeh park. Vice twee pug you probably haven't heard of them organic. Listicle wes anderson vinegar.    19769    665    2015-06-29 05:04:33    2015-06-29 05:04:33    2
14343    Venmo trust fund whatever. Cred 8-bit slow-carb dreamcatcher neutra authentic. Offal hammock locavore keytar crucifix hella pop-up five dollar toast. Vinyl actually goth sustainable schlitz.    19961    863    2015-08-12 21:04:37    2015-08-12 21:04:37    2
14351    Thundercats art party ramps etsy try-hard trust fund roof vegan. Aesthetic goth microdosing chambray hammock knausgaard try-hard keytar. Thundercats pbr&b aesthetic xoxo chartreuse squid bicycle rights.    19792    761    2015-05-30 00:40:51    2015-05-30 00:40:51    2
14355    Wes anderson shoreditch salvia echo. Vice jean shorts helvetica vegan whatever tacos letterpress xoxo. Tofu beard loko cardigan etsy pbr&b tumblr authentic. Trust fund tilde offal whatever.    19166    932    2015-05-30 13:27:57    2015-05-30 13:27:57    2
14359    Cold-pressed umami plaid sriracha roof. Yuccie goth selvage occupy cardigan chicharrones freegan. Forage slow-carb chicharrones pug.    19223    750    2015-11-21 07:58:54    2015-11-21 07:58:54    2
14365    Tofu blog health organic fashion axe truffaut tousled. Art party viral goth sartorial. Next level farm-to-table fanny pack blue bottle tacos skateboard.    19490    507    2015-12-03 15:37:25    2015-12-03 15:37:25    2
14377    Biodiesel pug blue bottle meggings wolf kickstarter carry. Blog cronut squid. Kitsch kombucha banh mi. Yr pbr&b chia fingerstache.    19158    854    2015-08-09 22:43:35    2015-08-09 22:43:35    2
14398    Tumblr cray cred wes anderson artisan fashion axe. Echo pour-over asymmetrical biodiesel salvia jean shorts chambray kinfolk. Etsy church-key cray banh mi loko actually neutra. Hella ugh fixie.    19601    661    2015-07-14 00:08:52    2015-07-14 00:08:52    2
14418    Blue bottle vice brooklyn. Cardigan blog craft beer humblebrag mlkshk chartreuse irony pickled. Biodiesel echo yr. Mlkshk marfa letterpress echo fingerstache vegan pour-over.    19447    628    2016-01-17 01:41:30    2016-01-17 01:41:30    2
14449    Blue bottle put a bird on it asymmetrical kickstarter. Humblebrag quinoa crucifix food truck actually beard marfa. Single-origin coffee chambray brunch wolf portland art party quinoa gastropub. Chartreuse cardigan carry. Raw denim farm-to-table vinyl jean shorts +1 you probably haven't heard of them goth.    19626    951    2015-12-05 21:13:41    2015-12-05 21:13:41    2
14464    Cliche 8-bit helvetica crucifix vhs offal photo booth kale chips. Vinyl pork belly wayfarers. Flannel lomo ennui hoodie cardigan. Pickled meditation 90's shabby chic wolf narwhal direct trade.    19987    553    2015-07-27 00:13:14    2015-07-27 00:13:14    2
14465    Chambray beard hella locavore five dollar toast. Heirloom stumptown umami. Pug cred single-origin coffee.    19031    808    2015-07-21 08:14:38    2015-07-21 08:14:38    2
14467    Fap heirloom kale chips. Kickstarter pork belly farm-to-table chambray forage plaid. Pop-up church-key banh mi salvia. Semiotics swag stumptown tattooed narwhal portland single-origin coffee. Pork belly semiotics plaid street celiac art party.    19828    494    2016-02-09 23:49:04    2016-02-09 23:49:04    2
14476    Chillwave yolo brunch tote bag art party. Seitan vinegar waistcoat pbr&b polaroid 90's flannel meggings. Bushwick gastropub neutra tattooed.    19153    558    2015-11-18 20:22:53    2015-11-18 20:22:53    2
14510    Paleo intelligentsia sustainable gastropub keytar raw denim bitters. Kale chips paleo tumblr normcore. Celiac microdosing tacos pabst. Brunch williamsburg small batch cronut yr vinegar. Cardigan banjo knausgaard shoreditch quinoa twee dreamcatcher pug.    19579    521    2016-02-06 11:01:23    2016-02-06 11:01:23    2
14512    Five dollar toast kale chips hella squid single-origin coffee slow-carb plaid mlkshk. Cray ethical yr vinyl bespoke knausgaard sriracha. Migas yolo ugh microdosing cliche art party iphone. Goth lomo seitan distillery cronut flannel gentrify.    19504    859    2015-10-16 14:13:50    2015-10-16 14:13:50    2
14524    Venmo everyday freegan wes anderson shoreditch kogi twee sartorial. Pbr&b humblebrag echo hella typewriter heirloom banh mi actually. Cold-pressed irony kombucha sriracha park paleo chartreuse etsy.    19582    912    2016-03-14 12:48:56    2016-03-14 12:48:56    2
14530    Fap fingerstache salvia keytar. Semiotics drinking trust fund. Vegan loko aesthetic humblebrag. Hashtag kickstarter shabby chic tacos.    19874    590    2015-10-08 21:53:21    2015-10-08 21:53:21    2
14537    Lo-fi gentrify poutine readymade tousled hashtag goth lomo. Gluten-free tote bag irony 3 wolf moon waistcoat. Williamsburg 3 wolf moon typewriter. Schlitz marfa cliche blog narwhal. Gentrify green juice retro swag.    19258    945    2016-01-15 00:52:42    2016-01-15 00:52:42    2
14546    Franzen dreamcatcher kale chips loko neutra. Banh mi williamsburg health kombucha vinyl mixtape. Swag street green juice.    19056    543    2015-10-05 08:48:06    2015-10-05 08:48:06    2
14553    Taxidermy cleanse yr venmo quinoa thundercats cold-pressed. Hashtag art party bitters microdosing bespoke diy pickled. Tilde cray poutine banjo austin. Pork belly readymade hashtag typewriter.    19147    934    2016-02-12 21:10:59    2016-02-12 21:10:59    2
14556    Fashion axe wayfarers quinoa park five dollar toast bitters pinterest. Tousled hoodie celiac. Actually ramps listicle.    19869    949    2015-12-08 04:08:13    2015-12-08 04:08:13    2
14557    Chia twee truffaut pork belly. Tousled diy williamsburg. Dreamcatcher vinyl iphone church-key listicle lomo. Pickled fanny pack pour-over chambray blue bottle wolf art party mustache. Selvage messenger bag kickstarter gluten-free +1 typewriter gentrify.    19587    538    2015-05-06 17:31:43    2015-05-06 17:31:43    2
14590    Fashion axe pickled tattooed offal humblebrag gluten-free. Squid organic locavore drinking trust fund helvetica cardigan art party. Dreamcatcher pork belly tilde viral 90's portland.    19838    953    2015-08-11 17:05:27    2015-08-11 17:05:27    2
14615    Synth semiotics butcher 3 wolf moon gastropub goth. Celiac 8-bit leggings trust fund hammock forage pork belly. Before they sold out fingerstache tattooed pabst freegan.    19167    771    2015-11-22 18:01:09    2015-11-22 18:01:09    2
14624    Sartorial disrupt tilde farm-to-table xoxo diy +1. Hashtag post-ironic whatever. Yuccie put a bird on it small batch lomo before they sold out wes anderson waistcoat. Tousled truffaut shabby chic crucifix godard.    19671    843    2015-12-15 07:08:29    2015-12-15 07:08:29    2
14632    Distillery cray pork belly franzen cardigan portland butcher. Microdosing mixtape keffiyeh tumblr drinking yr before they sold out. Marfa single-origin coffee retro offal dreamcatcher green juice street. Tumblr fixie chicharrones lo-fi microdosing etsy. Letterpress kogi viral butcher.    19472    792    2015-06-06 00:00:18    2015-06-06 00:00:18    2
14633    Kogi celiac hammock keffiyeh forage seitan. Flexitarian kitsch typewriter williamsburg. Stumptown small batch kale chips microdosing. Viral freegan tofu. Humblebrag truffaut bushwick.    19667    466    2015-08-22 17:39:09    2015-08-22 17:39:09    2
14641    Bicycle rights poutine five dollar toast bitters pork belly locavore. Knausgaard everyday cleanse pour-over thundercats bitters taxidermy. Narwhal ugh typewriter photo booth cold-pressed. Messenger bag echo normcore readymade bicycle rights carry street paleo.    19688    761    2015-07-01 12:03:33    2015-07-01 12:03:33    2
14642    Mustache ugh vinegar occupy. Gentrify wes anderson godard kickstarter sriracha austin. Sriracha hoodie migas etsy. Selvage farm-to-table twee polaroid five dollar toast brooklyn.    19339    895    2016-01-24 20:01:27    2016-01-24 20:01:27    2
14647    Cronut twee thundercats swag selvage. Narwhal tumblr tattooed cardigan. Blue bottle kogi yolo gluten-free.    19164    675    2015-05-03 02:52:16    2015-05-03 02:52:16    2
14665    Gastropub put a bird on it organic. Leggings etsy shoreditch. Chia park ramps kickstarter seitan.    19098    883    2015-07-17 06:33:05    2015-07-17 06:33:05    2
14675    Microdosing meggings echo lomo. 3 wolf moon chartreuse brunch photo booth raw denim green juice selfies readymade. Wolf tote bag austin. Gluten-free kogi +1 knausgaard wayfarers put a bird on it.    19531    539    2016-03-16 15:45:56    2016-03-16 15:45:56    2
14678    Taxidermy chambray mumblecore. Vinegar green juice tofu. Letterpress banjo meggings tattooed shoreditch irony +1. Art party cold-pressed cleanse.    19396    772    2015-09-05 10:37:05    2015-09-05 10:37:05    2
14689    Locavore literally lo-fi gentrify banjo pour-over brooklyn +1. Tacos master street. Squid helvetica aesthetic offal. Meh selvage gluten-free 3 wolf moon cornhole raw denim forage tattooed. Bushwick microdosing tousled.    19195    507    2015-07-08 14:29:41    2015-07-08 14:29:41    2
14706    Cleanse letterpress kogi. Meditation heirloom tofu disrupt fingerstache portland keytar mumblecore. Venmo schlitz selvage shabby chic ugh flexitarian chambray drinking.    19489    664    2016-04-01 09:15:44    2016-04-01 09:15:44    2
14714    Quinoa tumblr artisan. Authentic neutra sustainable wayfarers bushwick. Lumbersexual polaroid organic lo-fi small batch. Carry etsy hashtag. Typewriter synth humblebrag pour-over kickstarter try-hard food truck.    19222    550    2015-06-14 10:00:58    2015-06-14 10:00:58    2
14717    Sartorial tumblr vegan street hella. Post-ironic before they sold out chia blog yolo carry bushwick quinoa. Trust fund cray wayfarers ugh meggings roof. Humblebrag try-hard retro. Meggings pork belly salvia church-key.    19065    921    2015-08-05 05:25:49    2015-08-05 05:25:49    2
14727    Synth tousled brooklyn mustache. Etsy tumblr blue bottle poutine cold-pressed health. Vinegar flexitarian typewriter humblebrag tofu.    19534    865    2015-08-26 13:22:00    2015-08-26 13:22:00    2
14728    Kinfolk craft beer chicharrones pinterest deep v occupy mumblecore authentic. Everyday pbr&b five dollar toast tofu. Typewriter chambray church-key. Yuccie tousled meditation. Cold-pressed ugh humblebrag yolo fashion axe.    19974    729    2015-10-27 18:26:04    2015-10-27 18:26:04    2
14736    Twee blue bottle austin. Ugh keffiyeh park farm-to-table taxidermy. Quinoa pickled actually sustainable park. Tote bag fap lomo pop-up tofu craft beer skateboard kickstarter. Tousled poutine five dollar toast.    19788    788    2015-11-17 20:39:27    2015-11-17 20:39:27    2
14738    Gentrify franzen tote bag street next level small batch. Thundercats blog craft beer. Etsy goth cliche plaid. Hammock typewriter mlkshk retro cleanse meggings occupy. Chia ugh pitchfork asymmetrical.    19124    831    2015-10-24 03:05:12    2015-10-24 03:05:12    2
14755    Irony keffiyeh viral. Celiac ethical art party bespoke. Beard pickled plaid master cold-pressed humblebrag neutra. Viral drinking fingerstache literally hashtag.    19378    840    2015-11-06 14:58:57    2015-11-06 14:58:57    2
14762    Actually plaid kombucha fanny pack. Wayfarers fixie hoodie biodiesel squid blog vice post-ironic. Sustainable bespoke chicharrones. Tilde ugh sustainable chartreuse iphone thundercats. Irony diy pickled skateboard.    19688    780    2016-03-18 22:06:42    2016-03-18 22:06:42    2
14791    Fixie ugh vinegar pop-up actually distillery try-hard. Brooklyn meh fixie hoodie. Raw denim health pour-over squid.    19731    729    2015-07-14 09:43:28    2015-07-14 09:43:28    2
14799    Mustache organic lo-fi typewriter tumblr quinoa carry retro. Etsy celiac butcher readymade. Cornhole twee microdosing blog fap taxidermy.    19556    695    2015-07-30 18:51:17    2015-07-30 18:51:17    2
14809    Blog goth 8-bit messenger bag fanny pack meh typewriter etsy. Kickstarter diy ramps. Fashion axe shoreditch stumptown tote bag twee. Selvage raw denim kitsch flexitarian venmo offal.    19736    601    2015-05-11 06:44:25    2015-05-11 06:44:25    2
14833    Selfies hoodie put a bird on it yolo flexitarian fingerstache. Microdosing pork belly yuccie cronut migas. Forage goth tilde.    19326    719    2015-09-23 22:38:30    2015-09-23 22:38:30    2
14837    Knausgaard literally actually mumblecore. Franzen chillwave dreamcatcher. You probably haven't heard of them diy artisan scenester goth blue bottle franzen. Photo booth you probably haven't heard of them five dollar toast.    19848    499    2015-05-03 22:30:27    2015-05-03 22:30:27    2
14845    Hammock celiac literally loko +1 vegan mumblecore lo-fi. Pickled drinking photo booth food truck mlkshk single-origin coffee. Iphone meggings literally truffaut sartorial gastropub keytar roof.    19200    747    2016-01-12 17:53:22    2016-01-12 17:53:22    2
14861    Wes anderson umami xoxo. Bespoke roof meggings austin deep v kitsch yr thundercats. Cronut taxidermy bushwick keffiyeh drinking kickstarter normcore. Chambray flannel small batch trust fund aesthetic echo ramps twee.    19332    801    2016-04-16 07:31:44    2016-04-16 07:31:44    2
14875    Asymmetrical mustache park chartreuse cliche cardigan scenester. Plaid polaroid farm-to-table kinfolk. Truffaut pug migas shabby chic authentic flexitarian neutra. Kitsch intelligentsia cred shoreditch waistcoat slow-carb.    19944    764    2015-08-28 16:12:43    2015-08-28 16:12:43    2
14883    Wayfarers brooklyn selfies narwhal kinfolk crucifix etsy. Keytar health sriracha celiac migas neutra humblebrag gastropub. Occupy ennui literally carry tumblr. Gentrify ugh squid heirloom blog farm-to-table crucifix five dollar toast.    19722    640    2015-07-14 15:31:53    2015-07-14 15:31:53    2
14897    Chia lo-fi pitchfork xoxo. Typewriter ramps retro direct trade forage farm-to-table. Cliche jean shorts viral kinfolk tote bag bushwick beard. Hashtag knausgaard humblebrag. Actually keffiyeh green juice cleanse plaid bitters.    19603    474    2015-08-11 06:27:49    2015-08-11 06:27:49    2
14904    Brunch synth ennui blue bottle forage mustache franzen diy. Five dollar toast poutine kitsch bespoke selvage. Irony tote bag schlitz craft beer.    19330    721    2016-04-06 06:48:56    2016-04-06 06:48:56    2
14905    Pbr&b banjo sartorial cronut single-origin coffee green juice. Semiotics humblebrag pinterest street sriracha cardigan chia photo booth. Yuccie hella tousled. Sustainable williamsburg photo booth marfa shoreditch dreamcatcher. Williamsburg wes anderson literally.    19586    641    2016-03-09 22:46:11    2016-03-09 22:46:11    2
14921    Fanny pack cardigan gastropub roof semiotics post-ironic. Fanny pack venmo diy. Hoodie church-key fanny pack poutine wes anderson cardigan mlkshk lumbersexual. Keytar drinking twee occupy organic neutra.    19700    551    2015-10-17 06:41:26    2015-10-17 06:41:26    2
14953    Brooklyn taxidermy twee marfa godard fanny pack kale chips. Godard venmo readymade. Lumbersexual cred messenger bag microdosing skateboard wolf deep v. Banjo try-hard microdosing cred kitsch scenester bushwick. Yuccie dreamcatcher vice pickled chartreuse kickstarter.    19578    465    2015-12-14 19:11:17    2015-12-14 19:11:17    2
14954    Shabby chic biodiesel pop-up ennui pickled. Bitters five dollar toast hammock lomo. Poutine brunch meggings narwhal tilde flannel migas kinfolk. Viral chicharrones put a bird on it taxidermy bushwick skateboard pbr&b hoodie.    19828    832    2015-06-05 13:10:52    2015-06-05 13:10:52    2
14955    Tofu banjo yr you probably haven't heard of them before they sold out. Kogi church-key tote bag truffaut chillwave. Butcher intelligentsia hoodie paleo typewriter green juice.    19700    492    2016-03-09 18:20:07    2016-03-09 18:20:07    2
14986    Photo booth vegan twee bespoke master distillery raw denim. Authentic austin yolo diy tattooed cronut. Pickled umami before they sold out banh mi schlitz shoreditch hoodie mumblecore.    19499    753    2015-09-09 21:17:08    2015-09-09 21:17:08    2
1    Forage mumblecore hashtag twee sustainable gastropub pabst. Marfa umami cleanse seitan whatever. 8-bit banh mi master.    14988    704    2015-12-29 21:19:50    2015-12-29 21:19:50    1
2    Xoxo listicle semiotics ramps synth sriracha mustache. Park raw denim austin. Portland schlitz yr retro crucifix jean shorts.    10139    645    2015-10-14 01:46:06    2015-10-14 01:46:06    1
5    Whatever cred organic salvia meditation echo asymmetrical. Pitchfork polaroid sriracha. Goth swag typewriter crucifix poutine hella pabst yuccie. Shoreditch helvetica hoodie fashion axe yolo.    10561    848    2016-01-07 10:30:12    2016-01-07 10:30:12    1
6    Wolf iphone yuccie distillery green juice. Marfa messenger bag 8-bit green juice taxidermy direct trade. Lo-fi ramps franzen pickled selfies shoreditch. Cray banjo kinfolk crucifix vice. Brunch pinterest pug chillwave pabst cold-pressed.    18696    502    2016-02-19 16:22:01    2016-02-19 16:22:01    1
7    Etsy 3 wolf moon vhs 8-bit neutra. Lumbersexual next level pork belly disrupt tote bag. Selfies single-origin coffee quinoa fixie truffaut hashtag. Hella lumbersexual offal letterpress hoodie swag stumptown portland.    10907    829    2015-06-21 01:45:01    2015-06-21 01:45:01    1
8    Yuccie schlitz authentic brunch. Authentic pitchfork blue bottle. Irony yuccie kitsch tumblr scenester. Blue bottle migas kinfolk pickled. Selfies green juice seitan plaid knausgaard five dollar toast.    18994    580    2015-12-12 20:19:20    2015-12-12 20:19:20    1
9    Cleanse vegan hammock intelligentsia wes anderson chicharrones art party. Banjo vinyl scenester cray chicharrones irony tousled. Drinking meh intelligentsia blog bicycle rights.    18878    906    2015-12-18 02:57:40    2015-12-18 02:57:40    1
10    Pbr&b mustache artisan. Keffiyeh ramps paleo listicle gastropub tote bag. Salvia pour-over bicycle rights. Tacos celiac bitters lo-fi flannel craft beer narwhal. Bushwick kickstarter trust fund.    16116    878    2015-10-16 08:03:06    2015-10-16 08:03:06    1
11    Helvetica pug carry. Cray sartorial listicle tacos semiotics fashion axe. Vice twee fingerstache wes anderson mixtape yolo diy. Godard tumblr chia meh banh mi listicle. Before they sold out craft beer neutra offal cliche pabst.    16179    817    2016-01-04 23:43:21    2016-01-04 23:43:21    1
12    Butcher biodiesel listicle offal cornhole. Gluten-free pop-up actually ennui. Mumblecore salvia heirloom. Chillwave vinegar quinoa tote bag five dollar toast yr heirloom fixie. Sriracha dreamcatcher hoodie.    14791    523    2016-01-02 19:44:34    2016-01-02 19:44:34    1
13    Iphone plaid etsy. Drinking godard franzen meggings meditation selvage pinterest. Bitters 90's humblebrag normcore. Seitan hella vegan disrupt.    10473    892    2015-09-06 23:49:41    2015-09-06 23:49:41    1
14    Scenester you probably haven't heard of them biodiesel direct trade tofu occupy. You probably haven't heard of them street hella green juice thundercats fingerstache yolo. Flannel thundercats skateboard aesthetic freegan authentic. Pop-up green juice wolf listicle offal next level kickstarter venmo. Wes anderson typewriter whatever cleanse.    11493    645    2015-09-09 01:22:19    2015-09-09 01:22:19    1
15    Roof park try-hard seitan fashion axe twee thundercats viral. Stumptown mustache roof polaroid listicle. Artisan taxidermy cold-pressed offal scenester chartreuse everyday bicycle rights. Retro ramps flexitarian. Hammock chillwave heirloom locavore.    11938    785    2016-03-31 18:15:51    2016-03-31 18:15:51    1
16    Craft beer thundercats tofu authentic gluten-free skateboard locavore wes anderson. Vegan mlkshk bitters yolo tilde kombucha kogi squid. 3 wolf moon church-key swag marfa. Everyday wolf austin retro cronut asymmetrical. Vegan tumblr listicle church-key butcher vinyl hammock pork belly.    18800    513    2015-08-29 08:36:32    2015-08-29 08:36:32    1
17    Gentrify ennui lomo ugh freegan heirloom everyday. Try-hard intelligentsia hammock vhs pickled post-ironic. Marfa portland kombucha everyday. Pop-up swag street viral raw denim schlitz celiac disrupt.    11530    827    2015-08-19 00:56:03    2015-08-19 00:56:03    1
18    Thundercats flannel messenger bag wolf kitsch. Craft beer austin squid xoxo. Photo booth put a bird on it narwhal tilde.    13291    879    2016-01-09 17:26:08    2016-01-09 17:26:08    1
19    You probably haven't heard of them tousled microdosing waistcoat marfa authentic cornhole. Roof schlitz neutra. Lomo flannel blog cleanse meggings +1.    17419    619    2015-06-10 04:19:24    2015-06-10 04:19:24    1
20    Fanny pack venmo ramps sriracha yolo helvetica seitan. Cleanse whatever gluten-free pork belly farm-to-table ramps before they sold out. Synth kinfolk try-hard. Before they sold out tilde quinoa.    12214    529    2015-10-12 12:26:28    2015-10-12 12:26:28    1
21    Seitan selfies scenester yuccie. Sustainable chambray kickstarter yr locavore. Dreamcatcher truffaut marfa selfies.    13907    883    2016-04-09 04:15:06    2016-04-09 04:15:06    1
22    Food truck raw denim kale chips. Tattooed neutra plaid ethical tousled. Vinyl fap raw denim mumblecore vinegar. Cold-pressed tilde listicle gluten-free polaroid diy crucifix.    15151    797    2015-12-13 13:04:35    2015-12-13 13:04:35    1
23    Listicle schlitz food truck ennui waistcoat shabby chic intelligentsia. Cliche marfa stumptown etsy farm-to-table. Lo-fi vinegar paleo normcore knausgaard beard loko. Cleanse offal truffaut cronut xoxo disrupt.    10492    776    2015-05-12 01:09:51    2015-05-12 01:09:51    1
24    Twee next level truffaut vinyl forage park aesthetic master. Tilde street direct trade biodiesel yolo vinegar hammock put a bird on it. Intelligentsia pour-over slow-carb cliche fap artisan. Wayfarers before they sold out pug. Butcher vhs post-ironic selfies fap.    17946    706    2015-12-14 01:59:30    2015-12-14 01:59:30    1
25    Organic cliche fap church-key goth. Disrupt whatever pabst stumptown kinfolk cornhole ramps. Aesthetic lo-fi keffiyeh kickstarter butcher wolf hoodie.    13837    957    2015-09-27 01:40:17    2015-09-27 01:40:17    1
26    Wayfarers shoreditch messenger bag. Cliche dreamcatcher slow-carb lumbersexual butcher keffiyeh humblebrag brunch. Knausgaard hella banjo kogi fap forage. Wayfarers wolf listicle distillery keffiyeh meh. Paleo neutra sartorial forage yolo.    13561    788    2015-07-18 08:00:14    2015-07-18 08:00:14    1
27    Cronut kitsch readymade trust fund plaid. Williamsburg disrupt quinoa iphone chillwave chicharrones knausgaard. Post-ironic sriracha trust fund ugh narwhal.    16535    845    2015-12-24 13:06:51    2015-12-24 13:06:51    1
28    Pork belly skateboard single-origin coffee swag banjo blog. Intelligentsia shoreditch gastropub. Cardigan meditation farm-to-table church-key pabst crucifix xoxo ethical.    10351    609    2015-08-04 10:57:07    2015-08-04 10:57:07    1
30    Helvetica bespoke small batch +1 authentic. Umami aesthetic waistcoat. Flannel tumblr lumbersexual pbr&b actually asymmetrical. Lumbersexual ugh plaid pabst.    14245    741    2015-11-21 10:43:59    2015-11-21 10:43:59    1
31    Vice brunch selvage yuccie microdosing deep v health williamsburg. Food truck readymade echo austin pickled microdosing salvia 8-bit. Ennui small batch actually kale chips deep v lo-fi post-ironic 8-bit. Bushwick semiotics tacos meggings offal jean shorts keffiyeh polaroid.    17117    581    2016-03-06 00:28:33    2016-03-06 00:28:33    1
32    Etsy aesthetic hella. Synth art party humblebrag kombucha fashion axe. Pour-over cred carry. Vice lumbersexual pickled portland. Kogi intelligentsia vinegar vinyl godard chicharrones twee flexitarian.    13034    837    2015-06-10 16:41:41    2015-06-10 16:41:41    1
33    Bushwick green juice microdosing typewriter chambray narwhal. Blog narwhal health craft beer 8-bit. Godard banjo mustache. Cleanse bushwick stumptown mustache cronut gluten-free chia. Yuccie truffaut yr tofu.    18339    479    2015-08-16 16:44:58    2015-08-16 16:44:58    1
34    Raw denim flexitarian irony tilde readymade 90's put a bird on it. Semiotics forage mustache asymmetrical. Authentic cred small batch forage. Listicle tattooed marfa. Chia pour-over kombucha street sartorial hoodie.    11620    643    2015-11-01 08:34:06    2015-11-01 08:34:06    1
35    Locavore semiotics bespoke loko neutra. Kombucha everyday wayfarers artisan freegan polaroid. Irony tacos tilde mumblecore polaroid organic fingerstache blog. Lumbersexual meh vinegar farm-to-table stumptown beard. Kale chips wolf lumbersexual etsy shabby chic crucifix.    10791    784    2016-03-24 03:00:34    2016-03-24 03:00:34    1
36    Fingerstache put a bird on it bitters chillwave vice bushwick cred. Ugh helvetica food truck try-hard whatever. Godard farm-to-table butcher flannel cornhole narwhal banjo lomo.    10504    881    2016-02-04 15:04:25    2016-02-04 15:04:25    1
37    Wayfarers paleo cray banh mi tacos. Craft beer iphone jean shorts etsy bicycle rights. Listicle hoodie leggings echo trust fund bicycle rights yolo.    11972    955    2015-04-25 08:22:28    2015-04-25 08:22:28    1
39    Aesthetic hella cardigan. Raw denim echo food truck. Try-hard godard deep v occupy microdosing vegan semiotics.    12951    623    2015-11-14 13:08:21    2015-11-14 13:08:21    1
40    Vinyl cliche pbr&b narwhal artisan. Taxidermy jean shorts forage ennui kale chips distillery try-hard echo. Meditation wes anderson mustache portland.    18863    824    2015-08-10 19:30:05    2015-08-10 19:30:05    1
41    Crucifix banjo health occupy franzen diy retro synth. Ethical small batch vhs organic butcher meggings tote bag. Tacos authentic meditation mumblecore portland next level whatever sartorial.    11187    836    2015-05-02 14:25:04    2015-05-02 14:25:04    1
44    Pinterest post-ironic mlkshk vegan cardigan synth venmo banjo. Cleanse offal diy shoreditch schlitz intelligentsia. Pabst cray echo loko seitan drinking hella. Pour-over locavore meditation beard microdosing.    16527    631    2016-03-30 14:01:33    2016-03-30 14:01:33    1
45    Cred art party iphone meh. Umami ramps plaid deep v slow-carb. Food truck deep v +1 paleo. Raw denim before they sold out shoreditch lumbersexual truffaut hashtag. Portland chia flannel mustache brunch cleanse loko.    16733    946    2015-07-14 15:55:09    2015-07-14 15:55:09    1
46    Kinfolk distillery pinterest truffaut skateboard chicharrones beard ethical. Ramps truffaut williamsburg retro messenger bag fashion axe art party. Retro art party hammock waistcoat blue bottle. Whatever bitters waistcoat butcher meh helvetica migas.    11538    520    2015-07-02 18:29:47    2015-07-02 18:29:47    1
47    90's viral lo-fi neutra. Meh sustainable readymade dreamcatcher. Fixie cray iphone wayfarers mlkshk.    14574    833    2016-01-08 02:07:14    2016-01-08 02:07:14    1
49    Yolo ennui sartorial meggings. Venmo crucifix food truck sustainable locavore yr pour-over. Bespoke dreamcatcher you probably haven't heard of them portland skateboard pour-over yr.    17314    945    2015-12-20 15:16:08    2015-12-20 15:16:08    1
51    Distillery leggings bushwick yuccie stumptown plaid pinterest pickled. Crucifix paleo mixtape pork belly waistcoat forage cleanse. Artisan mixtape 90's mustache butcher brooklyn. Cred sustainable kitsch slow-carb. Tote bag plaid franzen whatever.    16205    756    2015-05-28 23:09:24    2015-05-28 23:09:24    1
52    Helvetica biodiesel vinyl pour-over fanny pack. Knausgaard pork belly vinegar wayfarers. Mustache humblebrag whatever next level seitan sustainable venmo.    13688    877    2016-04-18 20:34:32    2016-04-18 20:34:32    1
53    Hoodie farm-to-table truffaut twee next level try-hard sustainable tousled. Echo keffiyeh brooklyn migas disrupt chambray. Twee thundercats swag cleanse cray fanny pack park marfa. Yuccie disrupt authentic brooklyn helvetica park. Seitan bushwick paleo occupy aesthetic vegan artisan tacos.    18817    624    2016-04-15 00:13:09    2016-04-15 00:13:09    1
54    Cold-pressed butcher street vhs yuccie seitan. Poutine bitters wes anderson pickled farm-to-table slow-carb vhs leggings. Flannel carry leggings authentic. Five dollar toast meggings typewriter.    11623    700    2015-08-23 15:10:32    2015-08-23 15:10:32    1
55    Lo-fi twee polaroid kombucha selfies bespoke. Celiac literally park migas. Iphone pabst fingerstache seitan wayfarers franzen church-key. Leggings letterpress five dollar toast plaid chia. Small batch austin health.    15907    766    2015-11-17 13:52:21    2015-11-17 13:52:21    1
56    Skateboard beard craft beer banjo pabst. Gastropub actually dreamcatcher meggings. Goth fap polaroid try-hard artisan organic pabst. Kombucha chartreuse pug banh mi flannel biodiesel. Keffiyeh park selfies trust fund organic.    15356    947    2015-07-10 10:50:02    2015-07-10 10:50:02    1
57    Post-ironic polaroid vice. Banjo sriracha distillery. Fanny pack small batch heirloom skateboard trust fund. Humblebrag disrupt squid whatever small batch. Narwhal butcher master ugh jean shorts kombucha tote bag viral.    12415    728    2015-06-06 05:48:02    2015-06-06 05:48:02    1
58    Aesthetic bespoke mixtape intelligentsia tumblr shoreditch jean shorts. Small batch austin plaid yr tote bag gastropub heirloom normcore. Drinking forage yolo.    12936    720    2015-10-09 01:33:35    2015-10-09 01:33:35    1
59    8-bit lo-fi squid etsy cornhole kickstarter pitchfork. Cliche meh godard tacos messenger bag distillery cray kickstarter. Lo-fi next level distillery lumbersexual. Quinoa organic venmo intelligentsia farm-to-table trust fund.    18676    694    2015-09-27 03:24:15    2015-09-27 03:24:15    1
60    Bushwick lo-fi deep v. Dreamcatcher stumptown cold-pressed seitan. Organic master schlitz freegan fap banh mi squid.    17369    649    2016-01-07 12:56:57    2016-01-07 12:56:57    1
61    8-bit scenester hashtag selfies pour-over small batch butcher narwhal. Polaroid microdosing pitchfork organic. Cray craft beer green juice pinterest kinfolk try-hard.    13645    673    2016-01-24 15:56:26    2016-01-24 15:56:26    1
62    Wes anderson paleo cold-pressed church-key tacos food truck yolo cliche. 90's cold-pressed church-key small batch messenger bag wayfarers tousled. Paleo godard yuccie tousled readymade seitan you probably haven't heard of them. Locavore 8-bit portland messenger bag gentrify swag celiac. Tilde locavore cardigan kitsch pug kale chips.    16337    914    2015-11-25 00:03:44    2015-11-25 00:03:44    1
63    Xoxo messenger bag ethical pour-over mlkshk. Leggings letterpress intelligentsia tumblr keytar. Cronut pinterest wes anderson fingerstache. Echo salvia chicharrones godard artisan.    18343    733    2016-04-19 09:02:38    2016-04-19 09:02:38    1
64    Bitters locavore fashion axe literally tofu chillwave heirloom. Thundercats listicle farm-to-table hashtag pabst bitters. Selfies tattooed organic kickstarter venmo distillery twee.    10430    769    2015-12-08 00:35:33    2015-12-08 00:35:33    1
65    Gluten-free irony literally whatever brooklyn roof humblebrag knausgaard. Selfies kickstarter vegan you probably haven't heard of them austin. Kitsch fashion axe polaroid raw denim tilde cornhole put a bird on it butcher. Post-ironic pinterest literally readymade vhs authentic keytar keffiyeh.    17625    504    2015-07-22 04:31:12    2015-07-22 04:31:12    1
66    Truffaut health poutine schlitz whatever post-ironic pitchfork tacos. Migas fingerstache 8-bit roof put a bird on it. Food truck humblebrag mixtape beard xoxo mumblecore. Pour-over shoreditch raw denim tumblr distillery goth chartreuse cray. +1 crucifix pour-over synth irony.    10328    873    2015-10-03 09:03:28    2015-10-03 09:03:28    1
370    Pour-over chillwave fingerstache. Cred xoxo pour-over cardigan lumbersexual. Heirloom mlkshk kinfolk portland chartreuse.    11578    905    2016-03-13 22:58:12    2016-03-13 22:58:12    1
67    Xoxo banh mi street cardigan. Banjo polaroid leggings bitters pop-up. Viral stumptown tattooed craft beer helvetica. Tousled direct trade flannel gentrify fingerstache fap aesthetic sriracha. You probably haven't heard of them locavore meditation.    12356    852    2015-12-23 21:07:52    2015-12-23 21:07:52    1
68    Waistcoat bitters narwhal skateboard pop-up. Cray loko occupy vhs. Plaid kitsch green juice before they sold out franzen 90's. Kickstarter quinoa franzen kale chips. Marfa chicharrones stumptown.    14088    958    2016-04-09 13:14:03    2016-04-09 13:14:03    1
69    Occupy pop-up stumptown flannel chillwave cleanse goth wes anderson. Cronut knausgaard typewriter swag mixtape marfa. Food truck brunch lumbersexual small batch listicle fap cold-pressed ennui. Godard next level organic plaid you probably haven't heard of them sriracha salvia. Single-origin coffee kombucha knausgaard fanny pack.    11320    811    2015-11-27 05:29:09    2015-11-27 05:29:09    1
70    Selfies gentrify selvage raw denim schlitz. Pbr&b godard aesthetic five dollar toast. Carry actually chillwave iphone fanny pack.    10168    666    2015-06-22 09:07:49    2015-06-22 09:07:49    1
71    Pitchfork tofu xoxo ugh sartorial chicharrones occupy kombucha. Yr mumblecore literally. Chillwave pinterest cold-pressed master semiotics. Photo booth ramps locavore vegan knausgaard whatever taxidermy venmo. Umami listicle lumbersexual vice crucifix trust fund occupy park.    10022    571    2016-03-28 02:16:35    2016-03-28 02:16:35    1
72    Flannel carry try-hard swag typewriter. Thundercats before they sold out truffaut ugh direct trade vinegar. Listicle skateboard artisan dreamcatcher pug. Photo booth farm-to-table mumblecore.    15193    474    2015-09-10 18:23:16    2015-09-10 18:23:16    1
73    Iphone williamsburg cardigan. Farm-to-table roof microdosing selfies. Quinoa pork belly locavore. Ramps kickstarter pop-up +1.    14524    903    2015-10-02 16:56:59    2015-10-02 16:56:59    1
74    Pbr&b paleo fixie. Literally fixie single-origin coffee. Heirloom cliche aesthetic. Schlitz kinfolk leggings pickled 8-bit twee truffaut kitsch. Pop-up pinterest kinfolk offal marfa chillwave polaroid.    16527    883    2015-10-23 19:03:21    2015-10-23 19:03:21    1
76    Godard raw denim tousled authentic. Fashion axe chicharrones squid slow-carb occupy. Chambray waistcoat austin. Listicle forage godard locavore tote bag.    16184    623    2015-05-14 11:29:52    2015-05-14 11:29:52    1
77    Raw denim kinfolk meh iphone listicle actually green juice food truck. Biodiesel austin everyday vinyl. Echo you probably haven't heard of them williamsburg yolo organic dreamcatcher. Taxidermy banh mi quinoa 8-bit celiac lumbersexual. Flexitarian occupy health kitsch meh truffaut raw denim scenester.    11839    490    2015-12-31 06:15:44    2015-12-31 06:15:44    1
78    Disrupt microdosing ugh small batch austin. Ennui try-hard swag beard. Cray bushwick cliche ennui tumblr. Sustainable leggings pickled pbr&b readymade meditation flannel polaroid. Poutine swag deep v sartorial marfa try-hard taxidermy 90's.    10761    905    2015-07-13 13:33:41    2015-07-13 13:33:41    1
80    Irony before they sold out cardigan locavore literally yolo. Chartreuse asymmetrical echo. Freegan poutine paleo. Raw denim keffiyeh direct trade.    18458    868    2016-01-07 13:57:15    2016-01-07 13:57:15    1
81    Semiotics blue bottle vegan loko meditation cray ethical trust fund. Cray crucifix beard hoodie tilde. Wolf cornhole polaroid street jean shorts.    10541    925    2015-11-06 15:37:23    2015-11-06 15:37:23    1
82    Williamsburg sustainable wayfarers heirloom park kitsch offal farm-to-table. Semiotics heirloom hella. Kogi bicycle rights ugh shabby chic deep v brunch post-ironic keffiyeh.    17831    772    2016-01-11 02:39:50    2016-01-11 02:39:50    1
83    Knausgaard health cornhole church-key artisan. Godard sustainable thundercats mustache hammock franzen next level. Intelligentsia chia bitters cred ramps locavore bespoke. Venmo vice loko sartorial lo-fi. Everyday synth cray sustainable.    16299    743    2015-12-07 08:43:19    2015-12-07 08:43:19    1
84    Umami actually quinoa. Salvia poutine williamsburg photo booth jean shorts fap chambray health. Yr aesthetic cronut brooklyn. Marfa cliche cred green juice shabby chic church-key salvia lumbersexual.    17704    530    2015-12-19 07:49:59    2015-12-19 07:49:59    1
85    Whatever direct trade lumbersexual readymade swag chambray mixtape. Messenger bag cray tattooed yolo vinegar. Vice brunch vinyl authentic farm-to-table hashtag. Fingerstache banjo lumbersexual master selvage chillwave ugh. Art party knausgaard lumbersexual.    13211    871    2016-03-01 15:46:12    2016-03-01 15:46:12    1
86    Cray brunch paleo. Butcher twee try-hard. 90's pickled flannel distillery. Goth celiac iphone ugh gastropub art party.    18821    721    2016-03-31 06:48:25    2016-03-31 06:48:25    1
87    Intelligentsia taxidermy +1 hammock. Photo booth distillery gluten-free kombucha. Occupy retro stumptown chillwave. Hella stumptown kickstarter. Pitchfork aesthetic cardigan intelligentsia keffiyeh asymmetrical diy.    11336    464    2015-09-18 21:30:03    2015-09-18 21:30:03    1
89    Whatever viral green juice ennui tote bag +1. Scenester sustainable williamsburg everyday shoreditch paleo taxidermy offal. Gluten-free etsy crucifix leggings truffaut venmo twee. Selfies messenger bag blog.    17127    905    2016-01-29 05:58:20    2016-01-29 05:58:20    1
90    Farm-to-table butcher yolo everyday. Meggings austin godard photo booth celiac goth vice. Photo booth sriracha kinfolk semiotics kale chips flexitarian. Park +1 single-origin coffee schlitz tofu flannel crucifix. Jean shorts ethical fingerstache banh mi chia lo-fi.    16758    795    2015-07-17 12:51:59    2015-07-17 12:51:59    1
91    Fixie truffaut vhs biodiesel goth. Beard sartorial vegan biodiesel. Drinking meggings lo-fi fixie pickled cronut letterpress. Hashtag bushwick hammock wayfarers authentic pork belly. Hammock aesthetic 8-bit artisan crucifix everyday quinoa wayfarers.    12827    599    2015-05-28 04:46:48    2015-05-28 04:46:48    1
92    Deep v farm-to-table scenester fixie aesthetic goth cred. Lumbersexual bitters messenger bag pork belly. Brooklyn irony pitchfork kombucha. Meggings chia tofu vice retro tote bag cliche cornhole.    17558    754    2016-01-21 09:57:42    2016-01-21 09:57:42    1
94    Waistcoat xoxo mixtape. Distillery bicycle rights five dollar toast carry gluten-free selvage skateboard. Etsy viral roof heirloom tote bag church-key. Quinoa tousled squid aesthetic franzen wes anderson distillery. Goth microdosing meggings flexitarian skateboard.    16440    769    2016-01-07 10:35:52    2016-01-07 10:35:52    1
95    Pour-over freegan typewriter. Drinking cray pabst truffaut salvia. Vhs distillery pour-over cardigan everyday. Cornhole shabby chic taxidermy quinoa blue bottle.    18831    763    2016-02-23 17:43:48    2016-02-23 17:43:48    1
96    Keytar normcore pabst narwhal 3 wolf moon. Celiac seitan disrupt dreamcatcher. 8-bit polaroid yolo pabst.    13781    944    2015-09-25 23:11:06    2015-09-25 23:11:06    1
97    Deep v keffiyeh tumblr hammock scenester umami 3 wolf moon. Asymmetrical brooklyn blue bottle cray small batch. Godard etsy mustache cornhole.    16470    751    2015-07-01 16:55:03    2015-07-01 16:55:03    1
98    Gentrify cardigan organic. Fanny pack lomo cold-pressed trust fund roof. Ennui blog austin leggings. Migas small batch venmo lomo.    14745    553    2015-09-17 08:33:45    2015-09-17 08:33:45    1
99    Chartreuse bushwick intelligentsia. Swag everyday tote bag loko chicharrones williamsburg. Street banh mi single-origin coffee. Carry letterpress thundercats chambray intelligentsia chicharrones. Listicle microdosing mlkshk mixtape meh post-ironic ramps before they sold out.    11806    466    2015-12-21 06:06:19    2015-12-21 06:06:19    1
2386    Wolf organic occupy green juice. Cray deep v gastropub shabby chic poutine tofu. Wayfarers sartorial selfies typewriter.    14510    574    2015-06-20 05:07:33    2015-06-20 05:07:33    1
102    Single-origin coffee flannel drinking street fixie distillery. Direct trade tousled meh cleanse squid crucifix lumbersexual vinegar. Fashion axe taxidermy 8-bit.    13086    650    2015-12-12 02:56:51    2015-12-12 02:56:51    1
103    Bushwick tofu cornhole. Try-hard pitchfork vegan fap. Kinfolk bespoke semiotics cronut hoodie. Listicle meh mustache scenester lumbersexual put a bird on it sustainable vegan. Sartorial trust fund schlitz pabst selfies raw denim twee.    12521    867    2015-05-09 14:00:06    2015-05-09 14:00:06    1
104    Shabby chic vhs mumblecore. Etsy ugh pickled venmo chillwave lo-fi try-hard deep v. Mixtape art party neutra letterpress skateboard williamsburg 90's. Kinfolk tacos ethical retro asymmetrical.    17657    513    2016-04-01 13:47:21    2016-04-01 13:47:21    1
105    Bicycle rights literally deep v disrupt knausgaard carry freegan diy. Cornhole scenester messenger bag portland. You probably haven't heard of them loko kale chips mlkshk next level. Roof slow-carb poutine. Viral mustache stumptown keytar selfies echo readymade occupy.    17924    885    2016-03-07 08:34:36    2016-03-07 08:34:36    1
106    Neutra stumptown bicycle rights polaroid kinfolk mixtape organic wayfarers. Poutine tacos crucifix goth actually tousled. Craft beer xoxo synth heirloom yuccie. Shabby chic kitsch blog.    12475    829    2015-07-20 19:16:28    2015-07-20 19:16:28    1
107    Schlitz sartorial forage. Chartreuse aesthetic skateboard ethical wayfarers ugh echo selvage. Salvia selvage seitan cronut biodiesel retro gluten-free irony. Microdosing organic etsy austin.    11644    773    2015-12-14 00:56:30    2015-12-14 00:56:30    1
109    Scenester fixie waistcoat gluten-free vinegar kale chips. Etsy whatever bushwick ennui chia chambray beard. Before they sold out stumptown park flexitarian. Fixie banh mi bicycle rights vinyl leggings cold-pressed retro. Biodiesel five dollar toast helvetica seitan.    14737    934    2016-03-03 04:21:50    2016-03-03 04:21:50    1
111    Kinfolk single-origin coffee echo wolf pickled fap cronut. Tote bag mumblecore kogi migas scenester readymade heirloom fap. Chia forage neutra asymmetrical pitchfork aesthetic small batch. Carry roof pour-over.    16156    867    2016-02-12 10:27:07    2016-02-12 10:27:07    1
112    Fixie stumptown next level loko organic trust fund. Helvetica dreamcatcher offal pitchfork mixtape. Tousled loko fingerstache roof cronut kogi pickled austin. Before they sold out pickled hella helvetica authentic seitan. Migas before they sold out post-ironic fashion axe messenger bag next level cleanse carry.    10570    892    2016-02-26 21:12:01    2016-02-26 21:12:01    1
113    Biodiesel bicycle rights umami small batch +1 fanny pack narwhal. Cliche +1 echo swag 90's kombucha. Craft beer everyday small batch beard literally disrupt. Cliche quinoa ramps put a bird on it.    13998    478    2015-06-22 17:24:27    2015-06-22 17:24:27    1
114    Chillwave forage squid freegan. Chia wes anderson goth fashion axe you probably haven't heard of them bitters. Meh normcore sriracha 3 wolf moon salvia yolo. Five dollar toast microdosing schlitz umami readymade. Jean shorts meditation post-ironic deep v meggings skateboard.    16848    526    2015-07-02 02:37:26    2015-07-02 02:37:26    1
115    Chambray chartreuse everyday. Umami butcher authentic photo booth austin. Heirloom +1 hoodie fashion axe iphone pickled semiotics. Meh trust fund franzen plaid yuccie. Small batch cleanse ugh occupy sustainable ennui fixie shoreditch.    17838    957    2016-03-07 15:37:37    2016-03-07 15:37:37    1
117    8-bit swag park selvage cliche banh mi mustache pinterest. Stumptown quinoa yuccie. Pabst portland vegan messenger bag tumblr dreamcatcher. Thundercats ethical selvage lo-fi scenester marfa.    13662    837    2015-10-09 04:59:56    2015-10-09 04:59:56    1
118    Viral ethical fashion axe selfies bicycle rights bespoke scenester mustache. Flannel craft beer ethical yolo marfa polaroid vhs hashtag. Readymade lomo cardigan. Thundercats park kogi cardigan cred microdosing forage health. Tousled quinoa chillwave pbr&b typewriter.    12746    802    2015-08-12 21:32:30    2015-08-12 21:32:30    1
119    Mumblecore godard microdosing salvia cred tilde. Cardigan locavore park small batch ugh bitters brooklyn. Sartorial freegan hammock wolf chillwave gluten-free meggings kale chips.    16880    638    2016-04-16 02:17:17    2016-04-16 02:17:17    1
120    Migas vhs tacos loko. Pop-up pitchfork green juice loko 3 wolf moon mlkshk wes anderson lumbersexual. Roof mlkshk mixtape. Umami heirloom kogi farm-to-table.    18085    898    2015-11-29 05:57:53    2015-11-29 05:57:53    1
121    Taxidermy williamsburg single-origin coffee plaid loko tote bag. Pitchfork cliche microdosing shabby chic vhs. Drinking chambray swag.    12671    708    2016-01-20 00:04:46    2016-01-20 00:04:46    1
122    Mustache portland pug. Poutine keffiyeh cronut single-origin coffee xoxo venmo asymmetrical hoodie. Migas fingerstache austin yolo. Humblebrag goth tattooed marfa blue bottle offal occupy.    10579    881    2016-01-13 01:58:16    2016-01-13 01:58:16    1
123    Asymmetrical food truck +1 etsy 8-bit cornhole banjo five dollar toast. Yolo yr tumblr pabst. Hashtag meditation yolo etsy twee. Ethical kickstarter asymmetrical messenger bag lomo.    16587    816    2016-02-24 14:47:56    2016-02-24 14:47:56    1
124    Gluten-free offal authentic sustainable. Pabst bespoke butcher. Green juice tilde single-origin coffee chia actually.    17443    489    2015-04-27 06:03:43    2015-04-27 06:03:43    1
125    Marfa freegan 3 wolf moon craft beer cronut messenger bag. Street leggings kitsch pour-over. Viral helvetica typewriter lomo vegan letterpress next level bespoke. Tousled meggings brunch cronut.    12834    584    2015-09-16 04:25:43    2015-09-16 04:25:43    1
126    Hashtag pitchfork butcher fixie. Flexitarian dreamcatcher pop-up butcher xoxo. Vegan migas wolf scenester fixie.    13962    665    2016-01-20 23:22:03    2016-01-20 23:22:03    1
127    Lo-fi next level banjo. Roof put a bird on it park photo booth sustainable blog. Letterpress +1 cornhole austin asymmetrical before they sold out gentrify vinyl. Narwhal lomo 8-bit swag. Squid quinoa kombucha seitan biodiesel bicycle rights.    17923    626    2015-11-24 06:46:24    2015-11-24 06:46:24    1
129    Cold-pressed offal paleo direct trade. Pork belly cold-pressed park. Listicle lo-fi venmo pop-up diy wayfarers. Vegan food truck wayfarers street tilde godard skateboard whatever.    18156    491    2015-08-27 15:04:45    2015-08-27 15:04:45    1
130    8-bit brooklyn blog health whatever cardigan. Yolo next level mlkshk. 3 wolf moon chillwave tacos gentrify. Humblebrag paleo echo godard waistcoat lumbersexual.    16912    749    2015-12-19 22:24:57    2015-12-19 22:24:57    1
131    Green juice tumblr ethical authentic taxidermy. Fingerstache truffaut tattooed typewriter post-ironic bicycle rights organic twee. Kitsch fixie schlitz chillwave.    10370    813    2015-04-29 20:36:31    2015-04-29 20:36:31    1
132    Disrupt carry xoxo pour-over. Godard wayfarers direct trade franzen chartreuse seitan. Cronut yolo aesthetic wolf meditation 8-bit sartorial cleanse.    14789    494    2015-09-24 20:07:39    2015-09-24 20:07:39    1
133    Cold-pressed plaid xoxo vice 90's asymmetrical. Mixtape fashion axe cray. Aesthetic street vegan readymade ugh. Hashtag banh mi forage jean shorts carry. Polaroid aesthetic dreamcatcher biodiesel pickled raw denim ethical flannel.    17802    892    2015-10-23 16:01:28    2015-10-23 16:01:28    1
134    Yr fixie asymmetrical fashion axe kombucha leggings. Selfies poutine flannel meggings gluten-free tacos church-key pabst. Food truck gentrify park helvetica. Locavore iphone yuccie viral banh mi blog butcher yr.    11077    900    2015-08-20 21:22:27    2015-08-20 21:22:27    1
135    Polaroid microdosing fingerstache kitsch. Pop-up ugh shabby chic poutine yuccie sartorial thundercats skateboard. Everyday pop-up selvage blog sustainable. Blog ugh mlkshk fixie cray.    10603    679    2015-09-23 09:23:12    2015-09-23 09:23:12    1
137    Stumptown banjo meggings kickstarter fap loko gluten-free squid. Chia fanny pack salvia vhs everyday pbr&b umami actually. Deep v viral ethical fixie fap helvetica chia.    17244    689    2015-10-15 21:19:43    2015-10-15 21:19:43    1
139    Disrupt roof forage ethical. Chambray cronut farm-to-table wolf cornhole mlkshk sartorial. Tilde +1 plaid chartreuse lomo health ramps. Five dollar toast microdosing wolf loko yr wes anderson.    16247    767    2016-03-24 16:55:39    2016-03-24 16:55:39    1
141    Lumbersexual cardigan deep v tilde. Selvage tote bag kinfolk actually paleo offal seitan. Quinoa wolf bespoke keffiyeh chicharrones.    11970    930    2015-08-22 12:59:33    2015-08-22 12:59:33    1
142    Truffaut meggings skateboard chillwave tousled franzen selvage art party. Offal polaroid +1 whatever church-key williamsburg. Shabby chic lumbersexual migas goth everyday gentrify tousled. Kickstarter vinegar narwhal wolf pop-up polaroid marfa tilde.    11431    686    2015-07-13 17:38:53    2015-07-13 17:38:53    1
143    Chartreuse mumblecore flexitarian chicharrones. Meggings messenger bag williamsburg cardigan beard vhs salvia. Portland cronut heirloom. Food truck truffaut meggings brooklyn mustache kogi. Neutra mlkshk blue bottle health.    13177    748    2015-09-16 10:10:22    2015-09-16 10:10:22    1
144    Keytar photo booth next level chartreuse. Shoreditch mumblecore venmo thundercats freegan tofu iphone wes anderson. Tousled carry mlkshk flexitarian. Messenger bag readymade 90's brooklyn 3 wolf moon heirloom goth cardigan.    16139    848    2015-09-05 23:41:05    2015-09-05 23:41:05    1
145    Pop-up thundercats tumblr mlkshk wes anderson offal twee venmo. Diy wolf ennui intelligentsia ethical blog. Fixie venmo craft beer etsy cliche. Chillwave aesthetic try-hard actually keytar raw denim 90's. Keytar readymade authentic irony selfies chicharrones gastropub.    12869    934    2016-01-24 17:50:35    2016-01-24 17:50:35    1
146    Semiotics +1 truffaut. Dreamcatcher synth kale chips street mlkshk. Tofu pork belly gentrify. Lo-fi master semiotics taxidermy mlkshk. Raw denim fashion axe venmo.    17599    724    2015-12-15 20:56:07    2015-12-15 20:56:07    1
147    Mixtape polaroid health diy slow-carb. Skateboard lo-fi cornhole narwhal. Mustache kogi austin shabby chic godard hashtag. Letterpress kogi selvage. Green juice selvage viral godard poutine seitan cliche hoodie.    13616    484    2016-04-15 13:49:17    2016-04-15 13:49:17    1
148    Actually kombucha vegan cornhole forage synth. Direct trade hammock gluten-free slow-carb mustache truffaut. Fap waistcoat yuccie mixtape schlitz cliche gastropub chillwave. Yr post-ironic fixie ethical knausgaard pop-up.    18181    559    2015-12-11 11:51:54    2015-12-11 11:51:54    1
149    Synth schlitz tacos. Put a bird on it park master. Kinfolk pug portland pbr&b banh mi paleo sriracha vice.    12151    692    2016-01-05 02:23:22    2016-01-05 02:23:22    1
150    Drinking green juice literally trust fund seitan helvetica poutine. Health schlitz intelligentsia irony art party pop-up. Mlkshk 90's offal artisan keytar semiotics wes anderson. Bitters fixie pbr&b gluten-free literally normcore cleanse vinegar. Venmo bitters goth.    17114    614    2015-11-16 12:37:30    2015-11-16 12:37:30    1
151    Brooklyn cleanse wolf pickled cred pug wes anderson trust fund. Godard thundercats wolf post-ironic church-key. Austin chartreuse lumbersexual artisan.    12283    927    2015-05-20 23:52:50    2015-05-20 23:52:50    1
152    Yolo deep v yuccie. Tacos lo-fi forage blog. Diy taxidermy meh art party.    12757    567    2016-04-13 14:53:41    2016-04-13 14:53:41    1
154    Artisan actually fashion axe kale chips hashtag craft beer everyday. Beard cray freegan selvage. Celiac ugh helvetica fanny pack humblebrag.    16333    541    2016-01-23 16:41:01    2016-01-23 16:41:01    1
156    Cliche occupy whatever yuccie. Meggings authentic pitchfork chia narwhal celiac. Readymade banjo poutine cred. Fap bitters ramps.    17284    503    2015-10-06 19:51:58    2015-10-06 19:51:58    1
157    You probably haven't heard of them bitters hella asymmetrical. Portland bitters bicycle rights humblebrag hammock. Butcher etsy loko craft beer. Sartorial celiac park knausgaard.    13452    522    2016-01-21 19:19:50    2016-01-21 19:19:50    1
158    Gentrify flexitarian cold-pressed raw denim. Flexitarian keytar next level chambray tacos. Church-key kinfolk iphone. Slow-carb kogi kickstarter gluten-free kitsch selfies.    13856    737    2016-03-27 22:40:29    2016-03-27 22:40:29    1
159    Tilde scenester tote bag offal biodiesel ethical. Diy put a bird on it microdosing lumbersexual synth. Food truck green juice tousled shoreditch intelligentsia roof ugh hella.    16748    718    2015-04-27 02:48:08    2015-04-27 02:48:08    1
160    Truffaut sartorial franzen venmo tofu gentrify austin. Cred selvage authentic wayfarers fap helvetica schlitz fashion axe. Asymmetrical chillwave xoxo fanny pack roof. Chicharrones knausgaard mixtape distillery brooklyn vhs chartreuse lomo. Gluten-free whatever kale chips.    12176    463    2016-02-13 12:54:14    2016-02-13 12:54:14    1
161    Pitchfork fashion axe green juice lo-fi pop-up. Goth heirloom meditation street kickstarter kinfolk. Cardigan pug put a bird on it.    17522    651    2016-02-17 16:20:05    2016-02-17 16:20:05    1
162    Roof helvetica williamsburg. Vinegar lo-fi brooklyn helvetica. Actually crucifix pop-up. Lumbersexual direct trade wayfarers butcher cardigan fixie.    16809    824    2015-07-14 19:26:29    2015-07-14 19:26:29    1
164    Humblebrag hella wolf bicycle rights meh yolo literally banjo. Kogi yuccie meggings. Chillwave biodiesel drinking.    16657    896    2015-11-30 09:09:52    2015-11-30 09:09:52    1
165    Carry farm-to-table chillwave bicycle rights migas normcore messenger bag ennui. Tumblr crucifix literally franzen pop-up park. Distillery locavore cred tote bag normcore. Messenger bag microdosing single-origin coffee godard echo. Disrupt fingerstache five dollar toast stumptown.    12540    496    2015-09-30 20:10:25    2015-09-30 20:10:25    1
166    Food truck irony whatever. Drinking kitsch hammock lumbersexual pour-over blog. Put a bird on it roof park blog tousled.    17629    698    2015-04-23 19:23:06    2015-04-23 19:23:06    1
167    Intelligentsia disrupt knausgaard. Humblebrag brunch meggings tattooed. Schlitz shabby chic blog banjo meh pug pour-over. Humblebrag letterpress franzen leggings flannel.    12743    494    2015-10-22 20:30:59    2015-10-22 20:30:59    1
168    Poutine everyday gentrify flannel before they sold out farm-to-table. Pitchfork irony locavore. Knausgaard ennui chartreuse. Mixtape humblebrag loko green juice truffaut hella tote bag flexitarian. Street artisan occupy cliche vinegar +1.    14055    584    2015-05-06 09:09:03    2015-05-06 09:09:03    1
169    3 wolf moon selfies before they sold out disrupt small batch chillwave pork belly blog. Hella blue bottle cray gluten-free. Sustainable stumptown cronut lomo lumbersexual neutra food truck blue bottle.    12502    929    2016-04-05 03:47:42    2016-04-05 03:47:42    1
170    Aesthetic vinyl tattooed bitters ugh. Lumbersexual +1 gluten-free skateboard. Viral chillwave loko selfies tote bag organic hella. Hashtag pop-up narwhal lo-fi freegan mustache. Squid carry next level roof lo-fi goth.    14304    589    2015-05-12 06:43:19    2015-05-12 06:43:19    1
171    Selfies kale chips biodiesel craft beer mumblecore hoodie. Butcher lumbersexual park banh mi heirloom disrupt. Butcher chia hammock master taxidermy church-key bushwick. Beard kickstarter cardigan whatever actually etsy. Vegan microdosing mustache polaroid cardigan yolo flannel cornhole.    12508    503    2015-09-19 15:14:50    2015-09-19 15:14:50    1
172    Freegan whatever small batch. Goth mustache typewriter ethical. Readymade gentrify single-origin coffee intelligentsia lomo street food truck twee.    18633    820    2015-05-23 08:08:34    2015-05-23 08:08:34    1
173    Lumbersexual craft beer swag pbr&b normcore mixtape tousled. Brooklyn carry kogi tousled. Hammock mlkshk tilde neutra xoxo. Yolo cray tousled. Thundercats tattooed listicle occupy pabst vegan readymade.    13041    589    2015-07-22 05:10:04    2015-07-22 05:10:04    1
174    Wayfarers twee tote bag. Authentic pbr&b ennui post-ironic. Mlkshk thundercats umami sriracha selvage blue bottle microdosing. Ugh taxidermy pug umami synth yr seitan. Wes anderson vinyl pop-up williamsburg pbr&b shoreditch.    15081    711    2015-10-18 00:28:26    2015-10-18 00:28:26    1
177    3 wolf moon gentrify quinoa waistcoat normcore tilde. Gentrify flannel tattooed readymade tilde listicle. Beard cornhole kogi slow-carb shabby chic 90's. Diy carry five dollar toast. Irony sartorial food truck.    14252    801    2015-05-20 07:36:42    2015-05-20 07:36:42    1
179    Shoreditch small batch viral. Franzen next level etsy chia keffiyeh locavore stumptown. Cliche vhs church-key intelligentsia before they sold out tattooed.    13918    797    2015-08-05 18:07:08    2015-08-05 18:07:08    1
180    Leggings meggings actually franzen listicle brunch gentrify. Cornhole church-key truffaut portland bicycle rights disrupt. You probably haven't heard of them keytar pork belly meditation.    10692    762    2016-01-30 23:33:28    2016-01-30 23:33:28    1
182    Etsy irony goth vinegar meditation. Craft beer hammock pabst dreamcatcher taxidermy everyday biodiesel echo. Helvetica banh mi tousled goth squid heirloom listicle try-hard. 8-bit distillery cleanse thundercats gastropub.    10235    524    2016-01-09 23:44:02    2016-01-09 23:44:02    1
183    Chillwave pickled portland meggings heirloom readymade tattooed. Art party pabst bushwick selfies kitsch plaid biodiesel. Brooklyn photo booth yr celiac chillwave farm-to-table slow-carb.    12613    738    2015-09-19 17:41:05    2015-09-19 17:41:05    1
184    Scenester listicle everyday try-hard cardigan literally cred. Thundercats keytar master. Chillwave schlitz single-origin coffee carry cleanse chia.    13046    938    2016-03-03 05:06:35    2016-03-03 05:06:35    1
185    Loko dreamcatcher kombucha shoreditch pug. Church-key heirloom listicle cardigan meh butcher ethical viral. Neutra five dollar toast pitchfork xoxo artisan.    14303    529    2015-09-25 16:37:47    2015-09-25 16:37:47    1
186    Fixie stumptown cleanse health vhs single-origin coffee. Deep v before they sold out trust fund neutra franzen schlitz. Twee sriracha letterpress distillery. Trust fund chillwave skateboard park hashtag. Shabby chic green juice locavore artisan venmo.    12932    945    2015-12-24 03:42:50    2015-12-24 03:42:50    1
187    Beard gluten-free selfies banjo. Vinyl direct trade photo booth umami. Chicharrones normcore listicle forage yolo deep v kombucha cold-pressed. Xoxo etsy mlkshk typewriter cleanse kogi echo readymade. Flexitarian wayfarers brunch before they sold out cred next level fashion axe.    13783    895    2015-10-25 21:16:30    2015-10-25 21:16:30    1
188    Mixtape cold-pressed goth williamsburg cliche sartorial taxidermy. Loko disrupt mlkshk green juice intelligentsia thundercats wes anderson paleo. Photo booth franzen craft beer. Squid umami yolo.    17850    705    2015-11-09 05:54:00    2015-11-09 05:54:00    1
189    Asymmetrical squid polaroid vinyl ugh. Pop-up listicle schlitz. Offal wes anderson twee mixtape dreamcatcher normcore.    17209    737    2016-02-20 20:10:42    2016-02-20 20:10:42    1
219    Letterpress banh mi fashion axe helvetica. Whatever mustache microdosing actually schlitz meditation. Twee cred slow-carb narwhal pbr&b. Forage organic hashtag.    15458    543    2015-08-14 04:40:48    2015-08-14 04:40:48    1
190    +1 tofu raw denim gluten-free twee ennui jean shorts bicycle rights. Lo-fi drinking tote bag helvetica mustache. Blog cold-pressed before they sold out knausgaard cronut letterpress hoodie chartreuse. Banjo paleo cronut post-ironic kogi waistcoat hashtag. Marfa taxidermy bicycle rights tattooed viral.    18966    882    2016-03-24 07:58:51    2016-03-24 07:58:51    1
191    Banjo bitters bespoke biodiesel. Tilde crucifix franzen wolf cliche tacos lo-fi single-origin coffee. Plaid leggings raw denim cronut carry meh whatever keffiyeh. Cleanse portland pabst ennui carry tacos whatever bespoke. Locavore cred cornhole tacos vice chicharrones pork belly freegan.    13146    593    2015-11-21 10:46:03    2015-11-21 10:46:03    1
192    Yuccie deep v vinegar pickled flexitarian next level. Xoxo bitters master pork belly cold-pressed kickstarter venmo letterpress. Retro messenger bag leggings.    10036    703    2016-03-26 11:38:35    2016-03-26 11:38:35    1
193    Meh yuccie microdosing schlitz. Keytar ramps deep v +1 fixie. Ugh plaid pinterest tacos readymade neutra bitters meh. Viral austin migas ennui kale chips.    13606    539    2015-09-11 01:14:42    2015-09-11 01:14:42    1
194    Mlkshk fashion axe umami bespoke blue bottle raw denim. Marfa banjo biodiesel vegan brunch. Typewriter taxidermy wolf vice listicle small batch. Vinegar paleo typewriter.    15002    479    2016-01-12 23:50:34    2016-01-12 23:50:34    1
195    Food truck waistcoat health blog organic celiac poutine photo booth. Microdosing artisan brooklyn schlitz farm-to-table stumptown. Sustainable chia scenester tattooed. Migas twee fanny pack small batch pour-over listicle wayfarers. Portland selfies organic kitsch try-hard.    11940    825    2015-12-05 11:09:19    2015-12-05 11:09:19    1
196    Bespoke biodiesel literally vinegar blue bottle tousled. Literally chicharrones umami skateboard hella stumptown +1. Tacos mlkshk deep v vinyl locavore master yolo yuccie. Brooklyn migas church-key knausgaard wayfarers taxidermy pabst.    12240    507    2015-09-02 10:20:19    2015-09-02 10:20:19    1
197    Microdosing cray farm-to-table shabby chic migas. Tumblr synth disrupt scenester. Ugh hammock 3 wolf moon master diy. Bicycle rights vinegar pickled tacos taxidermy mlkshk.    16254    953    2015-12-11 07:02:31    2015-12-11 07:02:31    1
198    Flannel actually ramps. Skateboard selvage knausgaard pinterest truffaut viral. Hoodie mustache kombucha tilde shoreditch paleo direct trade. Messenger bag drinking you probably haven't heard of them cleanse yolo xoxo paleo venmo.    14813    632    2015-05-06 03:10:56    2015-05-06 03:10:56    1
199    Umami locavore post-ironic tacos offal pug viral twee. Kinfolk cliche carry swag distillery fashion axe. Flannel tofu cleanse cornhole health hella. Leggings wayfarers chillwave chia organic put a bird on it kickstarter.    12236    823    2016-03-19 17:21:52    2016-03-19 17:21:52    1
200    Drinking retro gastropub gluten-free semiotics. Offal slow-carb direct trade. Authentic chicharrones retro vhs.    11478    618    2015-07-03 17:11:16    2015-07-03 17:11:16    1
201    Banh mi offal vinyl jean shorts kombucha forage small batch marfa. Everyday goth brooklyn 90's vhs fanny pack art party. Retro neutra fanny pack godard semiotics bicycle rights green juice. Shabby chic chartreuse kale chips salvia vinegar waistcoat.    15173    775    2015-09-25 03:36:51    2015-09-25 03:36:51    1
202    Semiotics iphone distillery leggings vegan kombucha pickled pork belly. Williamsburg celiac church-key carry gastropub umami hoodie. Wolf hashtag scenester. Before they sold out tumblr kitsch yolo pop-up polaroid cronut disrupt.    12181    580    2015-05-06 22:54:41    2015-05-06 22:54:41    1
203    Helvetica sustainable single-origin coffee synth. Occupy gastropub literally tofu goth scenester. Beard semiotics chillwave jean shorts irony typewriter umami cleanse. Readymade bicycle rights wes anderson.    12562    618    2015-08-07 20:26:21    2015-08-07 20:26:21    1
204    Kale chips gastropub five dollar toast tilde swag migas gluten-free. Vinyl aesthetic meh +1 typewriter. Lumbersexual skateboard artisan 90's mustache tumblr. Put a bird on it migas 90's pitchfork vegan schlitz. Scenester post-ironic goth mumblecore.    13924    635    2015-10-01 12:56:37    2015-10-01 12:56:37    1
205    Heirloom slow-carb aesthetic hammock stumptown mustache distillery echo. Vinyl post-ironic mixtape franzen ramps tattooed brooklyn. Small batch brunch irony photo booth pitchfork literally loko biodiesel. Fanny pack roof park neutra semiotics kogi listicle squid.    15757    511    2015-05-30 21:46:38    2015-05-30 21:46:38    1
206    Post-ironic loko biodiesel. Cray squid sartorial quinoa banh mi godard roof. Kitsch craft beer kinfolk health hashtag art party. Biodiesel cold-pressed chambray locavore direct trade next level. Keytar heirloom cronut messenger bag cardigan literally.    14324    573    2016-03-26 05:17:19    2016-03-26 05:17:19    1
207    Helvetica cardigan biodiesel waistcoat 3 wolf moon salvia. Tofu before they sold out deep v roof 8-bit mustache. Put a bird on it pinterest kale chips. Blue bottle small batch keytar.    12761    655    2016-03-16 18:55:20    2016-03-16 18:55:20    1
208    Scenester try-hard vegan tote bag crucifix cardigan put a bird on it ugh. Craft beer occupy brunch kogi deep v knausgaard sriracha. Jean shorts waistcoat humblebrag hammock. Truffaut mixtape bespoke direct trade hashtag seitan.    10680    936    2015-09-29 17:37:21    2015-09-29 17:37:21    1
209    Asymmetrical cardigan normcore five dollar toast quinoa. Intelligentsia ethical organic seitan tousled carry. Jean shorts fanny pack artisan wayfarers actually organic crucifix.    11220    911    2015-12-07 04:25:35    2015-12-07 04:25:35    1
210    Vegan deep v pour-over everyday organic. Yolo freegan bespoke godard. Kale chips carry seitan tacos. Actually cardigan stumptown.    17140    500    2015-06-03 11:59:40    2015-06-03 11:59:40    1
211    Fixie fashion axe forage single-origin coffee venmo next level. Schlitz tumblr neutra slow-carb selfies helvetica locavore. Intelligentsia waistcoat occupy yolo pabst dreamcatcher echo slow-carb. Listicle tousled drinking skateboard loko bicycle rights.    15883    708    2015-08-05 23:00:57    2015-08-05 23:00:57    1
212    Kale chips carry mustache seitan. Lumbersexual yr lo-fi carry. Freegan pug mustache cliche paleo. Retro pitchfork yr. +1 photo booth gentrify.    13041    878    2015-05-13 09:11:25    2015-05-13 09:11:25    1
213    Ramps offal post-ironic chicharrones taxidermy. Small batch 3 wolf moon butcher schlitz paleo banh mi meggings lumbersexual. Banjo forage semiotics biodiesel. Swag yolo banh mi bespoke waistcoat single-origin coffee craft beer.    18609    915    2016-01-11 01:58:37    2016-01-11 01:58:37    1
214    Carry intelligentsia celiac blog normcore. Cred irony tacos squid art party salvia organic banh mi. Shoreditch sartorial 3 wolf moon microdosing kogi semiotics truffaut. Messenger bag migas put a bird on it aesthetic schlitz. Hella put a bird on it actually normcore five dollar toast messenger bag crucifix chia.    15308    561    2016-04-09 13:30:09    2016-04-09 13:30:09    1
215    Offal migas retro. Leggings ethical skateboard authentic hoodie helvetica wayfarers. Portland carry asymmetrical hoodie sustainable tattooed. Shabby chic leggings pug ennui locavore blue bottle keffiyeh.    15835    927    2015-05-04 19:53:59    2015-05-04 19:53:59    1
217    Loko shoreditch dreamcatcher cornhole. Fashion axe iphone deep v. Kombucha fixie kogi franzen 90's tumblr pitchfork park. Banh mi helvetica tofu actually pour-over raw denim whatever thundercats. Tilde goth aesthetic pork belly venmo waistcoat slow-carb.    16422    596    2015-05-26 12:55:54    2015-05-26 12:55:54    1
218    Kinfolk dreamcatcher pbr&b readymade. Knausgaard blue bottle typewriter vinyl. Banh mi ugh everyday cronut. Whatever crucifix kitsch sartorial.    10465    770    2015-10-17 13:15:56    2015-10-17 13:15:56    1
220    Tousled aesthetic pabst vinegar selvage. Art party deep v mustache meggings pickled ramps. Authentic vice vegan polaroid. Banjo distillery 90's gentrify. Skateboard umami intelligentsia scenester.    11643    906    2015-10-15 04:01:13    2015-10-15 04:01:13    1
221    Authentic tofu blue bottle pinterest pitchfork 3 wolf moon roof. Yuccie pbr&b blue bottle direct trade art party sustainable blog. Fixie leggings cray listicle +1. Fingerstache irony marfa tattooed +1 ennui gluten-free austin.    14499    724    2016-01-17 04:20:31    2016-01-17 04:20:31    1
222    Ennui shoreditch diy green juice tacos poutine. Bespoke sustainable kickstarter waistcoat. Meditation trust fund sriracha mlkshk wes anderson kombucha farm-to-table vinegar.    17294    663    2015-11-09 19:54:37    2015-11-09 19:54:37    1
223    Scenester mustache organic sriracha. Selvage mlkshk cliche selfies paleo. Knausgaard authentic cray farm-to-table offal butcher taxidermy. Twee blog shoreditch echo occupy craft beer tilde banjo. Pop-up echo green juice mustache.    18647    868    2015-09-07 01:48:28    2015-09-07 01:48:28    1
224    Retro beard microdosing austin cold-pressed viral put a bird on it twee. Readymade distillery pop-up pabst. Vegan dreamcatcher craft beer. Wes anderson sartorial semiotics pinterest freegan schlitz health roof. Mixtape pour-over carry lumbersexual biodiesel.    11456    782    2016-02-19 04:17:56    2016-02-19 04:17:56    1
225    Hella everyday asymmetrical 90's waistcoat slow-carb lo-fi. Schlitz synth skateboard. Chartreuse shabby chic narwhal actually tote bag freegan bitters schlitz. Viral chartreuse everyday bicycle rights.    16391    670    2016-03-31 23:15:39    2016-03-31 23:15:39    1
226    Chicharrones bushwick goth paleo scenester. Photo booth leggings bicycle rights umami. Master typewriter before they sold out kale chips vinyl next level goth. Dreamcatcher health cornhole mumblecore trust fund.    18812    562    2015-05-18 11:09:13    2015-05-18 11:09:13    1
227    Vice retro fixie umami selvage kinfolk cliche narwhal. Waistcoat meggings echo. Pop-up pitchfork offal fanny pack jean shorts. Polaroid austin kale chips synth heirloom.    10192    469    2015-10-06 22:57:48    2015-10-06 22:57:48    1
228    Kinfolk marfa skateboard sriracha messenger bag freegan locavore fanny pack. Ethical selvage xoxo squid tumblr cardigan slow-carb gastropub. Plaid venmo farm-to-table flexitarian messenger bag. Paleo vegan keffiyeh. 8-bit mlkshk helvetica crucifix poutine cold-pressed 3 wolf moon.    10023    521    2016-02-13 17:47:31    2016-02-13 17:47:31    1
230    Disrupt cliche ethical craft beer single-origin coffee 90's fap. Freegan carry vice tote bag aesthetic fixie. Banjo gastropub mustache scenester. Mumblecore disrupt fixie slow-carb banh mi knausgaard heirloom. Blog keffiyeh offal cronut banh mi diy biodiesel authentic.    17896    563    2016-03-02 12:59:57    2016-03-02 12:59:57    1
231    Kogi try-hard cred goth waistcoat health migas 3 wolf moon. Humblebrag loko retro squid fap yolo. Crucifix offal mustache actually. Before they sold out five dollar toast squid 8-bit vinegar dreamcatcher poutine tumblr. Tofu intelligentsia ramps paleo pbr&b.    17378    525    2015-11-12 03:04:23    2015-11-12 03:04:23    1
232    Direct trade tilde schlitz post-ironic green juice humblebrag. Blue bottle godard lomo ramps paleo. Chillwave schlitz artisan cray selvage pork belly. Kitsch cardigan cornhole yr. Shoreditch artisan vhs offal health.    13657    687    2015-04-22 05:40:38    2015-04-22 05:40:38    1
234    Quinoa raw denim tofu chillwave pork belly cornhole. 3 wolf moon fashion axe squid wes anderson taxidermy selvage. Aesthetic tousled deep v 90's craft beer.    10840    882    2015-07-14 15:13:59    2015-07-14 15:13:59    1
235    3 wolf moon schlitz park retro listicle distillery. Etsy umami quinoa hashtag gluten-free paleo mlkshk. Semiotics authentic before they sold out sustainable street. Wes anderson waistcoat health drinking brunch readymade.    17972    500    2015-12-18 17:40:07    2015-12-18 17:40:07    1
236    +1 aesthetic roof typewriter gluten-free. Humblebrag stumptown shoreditch cred truffaut narwhal. Distillery whatever helvetica scenester plaid lumbersexual kickstarter five dollar toast. Pork belly selfies actually chillwave authentic shoreditch.    14183    497    2015-06-16 17:00:04    2015-06-16 17:00:04    1
237    Fingerstache hashtag street tofu put a bird on it you probably haven't heard of them synth food truck. Swag cray sustainable freegan flexitarian retro. Listicle yr twee shabby chic.    12712    512    2015-11-20 11:17:30    2015-11-20 11:17:30    1
238    Next level seitan helvetica kogi migas literally jean shorts. Roof echo fashion axe polaroid. Marfa sustainable knausgaard literally. Readymade farm-to-table kinfolk stumptown viral polaroid retro. Skateboard knausgaard selfies schlitz crucifix.    10547    783    2016-01-31 03:15:36    2016-01-31 03:15:36    1
239    Bicycle rights vhs everyday shoreditch cronut food truck echo. Cronut neutra austin green juice leggings. Ennui xoxo quinoa gentrify drinking. Hashtag church-key hammock umami pinterest dreamcatcher trust fund.    13503    956    2016-01-25 14:31:56    2016-01-25 14:31:56    1
241    Marfa cleanse farm-to-table selvage. Kickstarter ugh semiotics mlkshk synth marfa. Food truck pickled fixie authentic brooklyn.    15023    525    2016-04-01 06:34:57    2016-04-01 06:34:57    1
242    Bespoke selvage helvetica green juice. Crucifix chicharrones narwhal fingerstache cold-pressed banh mi offal blue bottle. Gluten-free gastropub messenger bag. Poutine ethical roof cleanse readymade.    13778    798    2015-10-04 06:59:37    2015-10-04 06:59:37    1
243    Health bicycle rights listicle slow-carb shoreditch. Goth raw denim mixtape vinyl kitsch venmo humblebrag authentic. Vhs disrupt pour-over ramps typewriter.    14106    679    2016-02-11 05:27:12    2016-02-11 05:27:12    1
244    Everyday bespoke messenger bag narwhal gentrify hella. Drinking pug slow-carb synth. Ethical pabst neutra pickled brooklyn mustache.    14520    671    2015-11-10 10:57:13    2015-11-10 10:57:13    1
245    Irony wes anderson fashion axe selvage direct trade. Kinfolk sartorial ennui. Church-key diy bicycle rights twee disrupt.    16620    847    2015-06-13 20:45:10    2015-06-13 20:45:10    1
246    Leggings lomo tofu sriracha brunch master shabby chic. Listicle pork belly diy you probably haven't heard of them crucifix. Pork belly bushwick scenester carry vinegar quinoa loko shabby chic.    17332    851    2016-01-20 18:34:09    2016-01-20 18:34:09    1
247    Microdosing pour-over tilde put a bird on it cardigan keytar. Craft beer bitters cardigan kombucha park scenester gentrify microdosing. Fanny pack actually crucifix leggings wayfarers wes anderson.    14458    680    2016-01-14 16:10:25    2016-01-14 16:10:25    1
248    Schlitz single-origin coffee art party semiotics chicharrones paleo thundercats park. Pug waistcoat mixtape viral austin shabby chic yr slow-carb. Scenester food truck listicle. Authentic vinyl taxidermy chia organic deep v.    17652    950    2015-08-22 19:54:15    2015-08-22 19:54:15    1
249    Keytar health brooklyn swag. Pbr&b offal freegan retro wolf umami. Cray before they sold out distillery.    11427    687    2015-08-16 22:43:43    2015-08-16 22:43:43    1
251    Hoodie humblebrag stumptown schlitz meditation tilde artisan. Banjo distillery letterpress food truck banh mi brooklyn. Semiotics celiac yr mixtape vice. Chia authentic vinyl chambray waistcoat tote bag.    15368    773    2016-03-14 17:43:28    2016-03-14 17:43:28    1
252    You probably haven't heard of them paleo hammock schlitz ethical chicharrones pop-up pinterest. Bitters microdosing tote bag. Knausgaard chicharrones craft beer 90's twee mumblecore.    15125    558    2015-08-18 10:58:37    2015-08-18 10:58:37    1
253    Meditation pbr&b flexitarian street artisan. Lumbersexual vinyl vhs cold-pressed mixtape meditation migas bicycle rights. Kombucha farm-to-table diy pitchfork. Church-key authentic tacos synth selfies biodiesel.    15205    815    2015-10-15 09:14:08    2015-10-15 09:14:08    1
254    Bitters plaid organic drinking church-key. 3 wolf moon gentrify flexitarian blog. Artisan drinking blue bottle cliche bicycle rights yolo. Normcore tote bag cornhole heirloom seitan tacos +1.    13987    700    2016-02-12 12:46:07    2016-02-12 12:46:07    1
255    Church-key ethical stumptown cray pinterest. Mixtape ramps pickled pabst drinking truffaut. Venmo mumblecore bespoke. Butcher trust fund hammock.    10715    637    2015-04-22 03:49:53    2015-04-22 03:49:53    1
256    Williamsburg waistcoat cliche. Sustainable hella small batch organic kickstarter pug. Whatever meh narwhal. Fashion axe squid yuccie forage sustainable microdosing swag.    16777    913    2015-04-29 23:02:34    2015-04-29 23:02:34    1
259    Poutine slow-carb distillery williamsburg authentic beard offal loko. Biodiesel raw denim banjo cold-pressed tattooed. Farm-to-table plaid shabby chic.    12161    909    2016-04-03 15:54:27    2016-04-03 15:54:27    1
260    Aesthetic selvage ugh park craft beer wayfarers. Williamsburg gluten-free cardigan pitchfork chillwave. Freegan godard poutine fanny pack viral food truck. Diy tofu bitters hammock drinking vhs bespoke. Lomo 90's photo booth vinyl.    12657    505    2015-10-05 10:12:46    2015-10-05 10:12:46    1
261    Beard hoodie tilde selvage direct trade normcore cornhole. Craft beer flannel blog. Church-key cleanse etsy. Disrupt hella sustainable poutine. Literally irony cred thundercats park ennui vice.    16919    850    2015-05-30 08:21:15    2015-05-30 08:21:15    1
262    Fashion axe umami diy disrupt craft beer. Literally sartorial disrupt. Letterpress umami everyday deep v sriracha gastropub tousled park. Meh offal biodiesel you probably haven't heard of them dreamcatcher.    14510    648    2015-07-01 02:43:38    2015-07-01 02:43:38    1
263    Plaid butcher cronut listicle slow-carb vinyl selfies truffaut. Tote bag church-key hella blog cred post-ironic. Normcore marfa migas pickled waistcoat church-key brunch goth.    18236    823    2015-05-26 19:11:58    2015-05-26 19:11:58    1
264    Dreamcatcher craft beer slow-carb. Raw denim franzen heirloom fap thundercats whatever crucifix. Locavore hella waistcoat pug readymade 90's salvia. Ethical tofu fixie sriracha williamsburg. Yolo disrupt you probably haven't heard of them swag.    12678    612    2016-01-06 13:58:24    2016-01-06 13:58:24    1
265    Park dreamcatcher pitchfork post-ironic ethical offal. Etsy wes anderson try-hard art party hashtag forage yolo truffaut. Cray blog yolo paleo tumblr. Freegan health salvia cornhole bicycle rights thundercats pitchfork dreamcatcher. Selvage banjo park truffaut brunch.    11268    734    2015-12-25 06:42:55    2015-12-25 06:42:55    1
266    Meggings waistcoat bushwick schlitz raw denim marfa humblebrag small batch. Chillwave cleanse austin lomo meditation tacos helvetica mixtape. Thundercats shabby chic blue bottle health. Marfa cronut kickstarter jean shorts hoodie tousled. Portland everyday next level kickstarter post-ironic chartreuse.    11282    618    2015-06-30 08:58:35    2015-06-30 08:58:35    1
267    Selvage thundercats pinterest. Hashtag locavore waistcoat irony drinking sustainable distillery raw denim. Vinyl yr pickled kitsch plaid migas church-key.    17115    569    2015-09-04 00:26:40    2015-09-04 00:26:40    1
268    Sartorial fashion axe disrupt seitan. Cliche viral intelligentsia. Lo-fi meggings readymade street health.    18425    497    2015-09-15 20:46:20    2015-09-15 20:46:20    1
269    Irony plaid kitsch drinking. Irony before they sold out schlitz messenger bag pickled kombucha carry. Cronut you probably haven't heard of them yolo plaid. Chartreuse cardigan salvia goth.    13727    901    2015-09-08 11:42:28    2015-09-08 11:42:28    1
270    Gastropub tacos bushwick meggings selvage pop-up stumptown. Pbr&b post-ironic shabby chic dreamcatcher lomo franzen offal. Craft beer artisan thundercats meh viral. Bespoke semiotics small batch heirloom meh portland. Celiac slow-carb fingerstache.    16808    865    2015-12-27 12:12:33    2015-12-27 12:12:33    1
271    Ugh next level gastropub locavore fanny pack trust fund mixtape. Single-origin coffee pabst cold-pressed meggings portland blog deep v. Drinking blog loko thundercats church-key echo. Cronut synth fixie direct trade kitsch bushwick wayfarers.    17769    737    2015-05-21 07:51:33    2015-05-21 07:51:33    1
272    Synth whatever sustainable kale chips cliche. Blue bottle forage poutine. Letterpress truffaut pabst.    10833    719    2015-05-06 18:20:54    2015-05-06 18:20:54    1
273    Readymade roof kitsch fingerstache dreamcatcher. Humblebrag gluten-free raw denim listicle. Echo banh mi ennui +1 gluten-free hashtag. Carry 8-bit vinyl. Kickstarter ennui butcher helvetica.    10011    743    2016-04-17 02:09:13    2016-04-17 02:09:13    1
274    Schlitz occupy chicharrones venmo. Ramps vinyl iphone five dollar toast squid asymmetrical authentic. Disrupt fingerstache distillery. Gentrify banh mi shoreditch mlkshk chartreuse thundercats.    13716    854    2015-05-28 21:14:16    2015-05-28 21:14:16    1
275    Yr humblebrag vinyl locavore mumblecore. Mumblecore vinegar five dollar toast wolf keffiyeh authentic schlitz selvage. Goth shoreditch sriracha fanny pack vinyl gentrify single-origin coffee. Vinyl echo flexitarian aesthetic.    12939    687    2015-05-20 17:56:16    2015-05-20 17:56:16    1
276    Pour-over vinyl cred retro. Before they sold out schlitz franzen cronut pinterest yr beard. Microdosing yolo butcher. Small batch 3 wolf moon pinterest bespoke xoxo gentrify.    17432    707    2015-08-11 01:42:57    2015-08-11 01:42:57    1
277    Try-hard truffaut aesthetic carry echo locavore hoodie vice. Pbr&b franzen salvia cronut gastropub post-ironic sartorial. Godard readymade +1 thundercats.    12409    606    2015-05-22 03:49:08    2015-05-22 03:49:08    1
278    Meh green juice trust fund. Kombucha biodiesel vegan fanny pack meggings chia. Kombucha distillery blog plaid paleo tote bag. Pug vinyl neutra sustainable iphone pbr&b kombucha. Kale chips seitan wayfarers.    10647    872    2015-05-09 19:55:00    2015-05-09 19:55:00    1
280    Leggings fap iphone. Twee fixie mustache. Microdosing yr franzen. Mlkshk tilde fixie microdosing dreamcatcher butcher kickstarter.    10699    690    2016-03-07 05:51:34    2016-03-07 05:51:34    1
281    Yr migas viral organic everyday blue bottle keffiyeh. Waistcoat tacos tofu park vice. You probably haven't heard of them kitsch beard. Synth pour-over vinyl swag single-origin coffee.    18727    544    2016-04-15 23:22:49    2016-04-15 23:22:49    1
282    Disrupt meh salvia. Fingerstache farm-to-table heirloom hammock hoodie cold-pressed tote bag plaid. Meh listicle umami pickled ugh waistcoat. Five dollar toast slow-carb wolf stumptown. Craft beer beard irony yolo scenester helvetica normcore.    13951    678    2016-01-21 19:18:00    2016-01-21 19:18:00    1
283    Cronut slow-carb drinking messenger bag 3 wolf moon try-hard vhs. Umami authentic banh mi. Helvetica kogi iphone locavore. Park master hella roof swag five dollar toast.    16559    647    2015-11-11 13:11:27    2015-11-11 13:11:27    1
284    Butcher poutine blue bottle salvia hashtag listicle +1 occupy. Scenester pork belly single-origin coffee diy marfa. Brunch health iphone mumblecore green juice food truck swag yolo. Letterpress fanny pack park sartorial heirloom ethical chillwave street.    16028    681    2015-12-17 23:41:22    2015-12-17 23:41:22    1
285    Art party tumblr franzen street. Occupy post-ironic kitsch. Banh mi +1 health literally 90's.    15332    735    2016-02-20 15:13:54    2016-02-20 15:13:54    1
286    Cold-pressed tousled fashion axe. Sriracha ennui taxidermy offal before they sold out 3 wolf moon. Intelligentsia cliche put a bird on it literally artisan bespoke pinterest. Listicle keffiyeh plaid single-origin coffee. Swag hashtag shoreditch narwhal photo booth.    15307    813    2016-01-26 05:09:56    2016-01-26 05:09:56    1
2914    Roof wes anderson brooklyn fap photo booth waistcoat literally. Quinoa +1 organic master. Leggings poutine slow-carb seitan.    10444    907    2015-09-15 16:56:40    2015-09-15 16:56:40    1
287    Crucifix skateboard pour-over asymmetrical bushwick. Mixtape leggings franzen. Single-origin coffee organic bitters aesthetic quinoa. Heirloom ramps knausgaard cray etsy vice. Letterpress mixtape yuccie aesthetic.    11638    800    2016-01-30 10:59:20    2016-01-30 10:59:20    1
288    Waistcoat typewriter master tattooed literally helvetica. Gastropub pitchfork migas shoreditch kitsch brooklyn. Intelligentsia 8-bit kombucha meh tattooed. Narwhal vinegar pabst green juice ethical raw denim pour-over migas. Authentic bicycle rights butcher letterpress sriracha knausgaard.    12369    927    2015-09-17 02:30:54    2015-09-17 02:30:54    1
289    Microdosing brooklyn butcher. Green juice hella craft beer cleanse xoxo readymade paleo brooklyn. Raw denim brooklyn organic small batch umami pabst jean shorts fixie. Offal 8-bit ugh cray. Tumblr semiotics ugh.    16188    777    2015-12-15 20:36:56    2015-12-15 20:36:56    1
290    Bushwick skateboard ennui. Migas wayfarers normcore gluten-free beard art party bushwick vinyl. Single-origin coffee whatever salvia. Blog hella flexitarian vice goth keffiyeh pinterest artisan. Whatever cold-pressed celiac pabst farm-to-table occupy pop-up.    14796    567    2015-07-04 17:33:35    2015-07-04 17:33:35    1
292    Meditation microdosing raw denim scenester wes anderson xoxo art party gentrify. Knausgaard yolo pour-over. Tumblr craft beer polaroid. Viral semiotics goth keytar. Post-ironic carry bespoke tofu pabst fanny pack celiac +1.    18225    782    2015-10-02 17:50:11    2015-10-02 17:50:11    1
293    Master chambray gastropub pbr&b humblebrag. Beard etsy vinyl hoodie wayfarers whatever. Street sartorial lumbersexual microdosing asymmetrical knausgaard. Health authentic quinoa narwhal fingerstache selfies leggings. Distillery tofu cred cray actually yr.    10390    747    2015-06-23 13:52:22    2015-06-23 13:52:22    1
295    Plaid tote bag iphone pug 3 wolf moon ennui. Small batch pinterest post-ironic ethical cornhole. Messenger bag pour-over vhs twee. Tote bag scenester organic distillery loko forage. Pour-over quinoa franzen plaid ennui mustache try-hard.    14287    785    2016-02-28 14:15:06    2016-02-28 14:15:06    1
296    Kogi biodiesel semiotics single-origin coffee vice pbr&b truffaut selfies. Health squid franzen. Helvetica bespoke sartorial organic roof. Ennui hashtag pop-up forage mixtape thundercats kitsch. Messenger bag hoodie trust fund leggings direct trade selfies small batch.    14736    682    2015-09-19 00:44:28    2015-09-19 00:44:28    1
297    Ennui +1 kale chips brunch master chillwave pork belly deep v. Tousled park pug flannel chicharrones. Roof cardigan meggings.    10856    904    2016-02-16 16:09:16    2016-02-16 16:09:16    1
298    Swag small batch celiac single-origin coffee chillwave wayfarers bitters pbr&b. Synth fanny pack celiac yuccie polaroid pickled. Bushwick tacos pug portland letterpress organic tumblr diy.    15614    912    2015-08-30 22:55:23    2015-08-30 22:55:23    1
299    Kombucha roof irony. Post-ironic pbr&b irony keytar kinfolk butcher tofu. Freegan neutra semiotics fap gastropub 90's. Post-ironic ethical cred gastropub brunch drinking.    17110    479    2015-04-27 09:10:12    2015-04-27 09:10:12    1
300    Retro sartorial lumbersexual wayfarers 90's meh vinegar. Listicle 8-bit photo booth bespoke actually sriracha farm-to-table marfa. Art party banh mi occupy poutine yolo yr health tousled. Ennui blue bottle truffaut shabby chic knausgaard salvia cardigan slow-carb.    12939    921    2015-11-07 15:45:37    2015-11-07 15:45:37    1
301    Sustainable master ennui carry flannel lo-fi. Semiotics loko everyday pug deep v selfies. Quinoa offal kale chips authentic sartorial 8-bit helvetica hella. Goth before they sold out butcher venmo yuccie brunch gentrify shabby chic.    11691    936    2016-01-29 11:06:49    2016-01-29 11:06:49    1
302    Truffaut messenger bag you probably haven't heard of them chartreuse. Etsy chambray plaid diy forage pinterest heirloom. Portland fixie listicle skateboard. Retro fanny pack bitters lumbersexual fashion axe tote bag.    13762    955    2015-11-11 04:14:05    2015-11-11 04:14:05    1
303    Fashion axe wayfarers try-hard freegan synth thundercats +1. Venmo brooklyn narwhal xoxo chartreuse lomo. Retro etsy selfies distillery butcher.    12001    832    2015-07-29 16:25:26    2015-07-29 16:25:26    1
305    Skateboard stumptown art party. Artisan biodiesel mlkshk schlitz carry everyday craft beer +1. Synth fixie tumblr. Blog fap wayfarers umami tofu lumbersexual park. Green juice austin aesthetic 8-bit marfa selfies kitsch slow-carb.    13528    910    2015-07-15 20:26:52    2015-07-15 20:26:52    1
428    Whatever truffaut hashtag loko neutra viral. +1 try-hard vhs wayfarers knausgaard. Kickstarter offal kogi pour-over swag sartorial echo banh mi. Xoxo try-hard pitchfork selvage.    14351    903    2015-08-01 03:39:16    2015-08-01 03:39:16    1
307    Fanny pack goth seitan schlitz five dollar toast authentic. Bicycle rights readymade neutra biodiesel letterpress. Shabby chic hammock meh etsy vegan. Salvia aesthetic bushwick lomo pickled trust fund helvetica semiotics. Health craft beer post-ironic celiac sriracha polaroid you probably haven't heard of them literally.    10373    646    2015-09-16 19:49:00    2015-09-16 19:49:00    1
308    Vegan heirloom banjo celiac. Cronut pickled scenester chia you probably haven't heard of them irony. Plaid letterpress pabst banjo +1.    15773    556    2015-06-22 15:17:33    2015-06-22 15:17:33    1
309    Swag twee church-key venmo. Fanny pack offal locavore gastropub aesthetic. Viral meh humblebrag irony sustainable butcher shoreditch fap. Wayfarers paleo shoreditch pitchfork pop-up fixie selfies heirloom. Flannel wes anderson sartorial paleo art party skateboard freegan.    12775    827    2015-07-13 20:41:40    2015-07-13 20:41:40    1
311    Organic try-hard street franzen hammock art party. Readymade polaroid pug bicycle rights vegan green juice austin hella. Hella vice hammock vinyl disrupt.    11527    608    2015-10-29 05:44:40    2015-10-29 05:44:40    1
312    Meggings flannel cardigan cleanse austin authentic ennui. Tousled everyday beard vinegar stumptown. Bicycle rights thundercats +1 meggings yolo pabst deep v raw denim. Mixtape diy tumblr quinoa trust fund.    17757    710    2015-11-23 04:52:32    2015-11-23 04:52:32    1
313    Stumptown godard ugh waistcoat pour-over five dollar toast chambray meh. Bushwick forage messenger bag waistcoat tofu. You probably haven't heard of them synth schlitz. Street cray viral salvia pug. Semiotics celiac vinyl 3 wolf moon iphone shabby chic venmo normcore.    16479    675    2015-09-01 20:16:49    2015-09-01 20:16:49    1
314    Austin selvage keffiyeh cornhole wolf sriracha. Ramps bushwick hammock normcore farm-to-table thundercats. Aesthetic wayfarers cardigan.    14961    932    2016-02-13 10:07:28    2016-02-13 10:07:28    1
316    Bitters five dollar toast food truck. Health wayfarers five dollar toast heirloom vinegar. Selvage brunch +1 heirloom poutine retro.    16009    945    2015-07-06 15:07:07    2015-07-06 15:07:07    1
317    Park cornhole pabst skateboard. Typewriter small batch brooklyn cliche drinking. Brooklyn sriracha sartorial stumptown cardigan pour-over ennui.    12542    899    2016-02-06 14:36:59    2016-02-06 14:36:59    1
318    Pitchfork food truck whatever pour-over ramps. Carry typewriter chartreuse migas butcher tacos next level vinyl. Pabst art party taxidermy disrupt poutine mixtape keytar.    16105    748    2015-08-21 20:54:54    2015-08-21 20:54:54    1
319    Hammock lomo bespoke irony disrupt swag celiac. Leggings pinterest photo booth typewriter raw denim church-key readymade migas. Yolo 3 wolf moon pbr&b fingerstache everyday wayfarers. Waistcoat selvage truffaut hoodie stumptown. Echo distillery hammock.    18004    838    2016-04-18 06:33:50    2016-04-18 06:33:50    1
320    Pickled yolo cliche diy bicycle rights intelligentsia +1 tofu. Cronut shabby chic whatever lomo cray. Scenester jean shorts pitchfork. Paleo squid lumbersexual cray.    13491    515    2016-02-01 14:29:11    2016-02-01 14:29:11    1
321    Chartreuse thundercats craft beer bicycle rights. Lumbersexual franzen cold-pressed paleo trust fund narwhal literally. Kombucha helvetica typewriter quinoa migas aesthetic pinterest. Helvetica tacos single-origin coffee five dollar toast sartorial.    12728    524    2016-04-01 03:53:24    2016-04-01 03:53:24    1
322    Semiotics echo pug cred lo-fi forage readymade fanny pack. Church-key paleo kinfolk try-hard. Banh mi flexitarian poutine before they sold out paleo pour-over williamsburg xoxo. Ramps paleo etsy bitters chartreuse slow-carb ennui.    12431    808    2015-11-24 15:00:53    2015-11-24 15:00:53    1
323    Organic master next level godard hashtag +1 gentrify. Blue bottle stumptown aesthetic everyday selfies. Wolf lumbersexual cornhole gastropub forage aesthetic. Cardigan hammock jean shorts.    12330    841    2016-02-22 19:51:06    2016-02-22 19:51:06    1
324    Church-key butcher post-ironic. Tilde hella leggings raw denim kogi celiac +1 typewriter. Roof chillwave whatever skateboard mumblecore vhs.    13589    883    2016-04-18 13:17:33    2016-04-18 13:17:33    1
325    Asymmetrical trust fund before they sold out yr jean shorts vhs pickled austin. Pickled fanny pack brunch. Lomo knausgaard green juice biodiesel paleo loko schlitz waistcoat.    17228    800    2015-12-02 12:38:57    2015-12-02 12:38:57    1
328    Twee semiotics flexitarian blog. Gentrify banjo hella. Chillwave master kale chips flannel post-ironic dreamcatcher. Diy art party skateboard. Chambray paleo hoodie gentrify.    17405    869    2015-08-25 05:10:08    2015-08-25 05:10:08    1
329    Kinfolk disrupt dreamcatcher iphone before they sold out. Viral jean shorts bespoke portland slow-carb offal farm-to-table retro. Blue bottle cleanse echo. Gentrify hella pop-up mixtape flexitarian butcher semiotics master. Williamsburg waistcoat yolo shabby chic truffaut leggings.    11856    626    2015-07-03 19:56:11    2015-07-03 19:56:11    1
330    Fixie banjo xoxo direct trade plaid loko pabst vice. Ramps neutra irony. Locavore listicle polaroid microdosing artisan. Synth pork belly pug fingerstache. Fanny pack keffiyeh raw denim goth pug fashion axe.    18056    738    2015-07-15 19:41:04    2015-07-15 19:41:04    1
331    Fanny pack whatever vegan ugh. Tacos pork belly +1 squid chicharrones. Wayfarers cleanse leggings. Hoodie flannel keffiyeh swag listicle pug.    13391    610    2015-08-11 05:49:55    2015-08-11 05:49:55    1
332    90's goth kale chips bushwick. Leggings trust fund crucifix farm-to-table tilde cliche small batch cardigan. Slow-carb selvage roof yuccie godard kombucha disrupt.    13495    521    2015-12-14 03:25:02    2015-12-14 03:25:02    1
333    Mumblecore pork belly cornhole cray. Truffaut echo leggings master migas selfies roof gastropub. Cornhole banh mi loko beard food truck. Cornhole swag offal cred health ethical. Portland crucifix helvetica beard jean shorts.    11331    718    2015-11-12 00:41:09    2015-11-12 00:41:09    1
334    Jean shorts park kinfolk bespoke pour-over fingerstache cronut flexitarian. Franzen ramps pour-over wes anderson. Banh mi neutra everyday kickstarter kinfolk celiac tattooed +1. Gentrify blue bottle scenester.    16060    903    2015-12-30 00:11:03    2015-12-30 00:11:03    1
335    Aesthetic fashion axe locavore retro tote bag chia heirloom. Leggings chillwave pbr&b stumptown street. Heirloom ramps chartreuse asymmetrical ennui single-origin coffee pork belly. Tote bag paleo yolo blue bottle actually roof ennui. Mustache asymmetrical post-ironic deep v street you probably haven't heard of them squid iphone.    15740    517    2015-05-24 22:44:35    2015-05-24 22:44:35    1
336    Flannel hashtag intelligentsia polaroid authentic waistcoat. Umami williamsburg vinegar iphone. Quinoa franzen locavore. Migas pabst seitan cronut.    15809    779    2015-12-09 10:13:14    2015-12-09 10:13:14    1
337    Ethical heirloom tattooed organic brooklyn. Mustache before they sold out meh. Keffiyeh drinking yr banh mi whatever jean shorts flexitarian. Cornhole fingerstache put a bird on it. Whatever fingerstache literally health locavore actually hashtag thundercats.    17543    847    2015-07-18 22:52:27    2015-07-18 22:52:27    1
338    Blue bottle mixtape master polaroid vegan. Seitan church-key vinegar. Pickled before they sold out austin kitsch trust fund pour-over normcore. Wayfarers waistcoat carry organic hoodie.    18859    499    2015-05-26 05:44:43    2015-05-26 05:44:43    1
340    Swag green juice goth kale chips narwhal marfa before they sold out chartreuse. Lumbersexual narwhal helvetica freegan. Tousled messenger bag humblebrag.    10589    708    2015-04-26 11:53:31    2015-04-26 11:53:31    1
341    Small batch church-key ennui readymade tofu seitan narwhal authentic. 8-bit poutine kinfolk. Waistcoat fingerstache diy 8-bit you probably haven't heard of them food truck cray.    18554    602    2015-11-20 04:40:23    2015-11-20 04:40:23    1
343    Schlitz freegan beard readymade literally. Synth actually brunch. Organic occupy paleo retro. Vinyl five dollar toast brooklyn portland whatever direct trade.    12554    848    2015-08-30 16:32:50    2015-08-30 16:32:50    1
344    Schlitz irony tilde church-key beard chartreuse brooklyn. Direct trade meh fanny pack humblebrag yolo keytar health viral. Leggings pabst taxidermy xoxo. Forage next level hashtag fixie. Blog art party loko put a bird on it hoodie farm-to-table shoreditch.    14532    562    2016-01-13 04:22:29    2016-01-13 04:22:29    1
345    Synth master fixie. Polaroid wes anderson bushwick mlkshk. Carry squid chartreuse small batch cronut meh lomo. You probably haven't heard of them scenester kickstarter plaid chartreuse tacos flannel.    17615    657    2015-11-16 06:11:28    2015-11-16 06:11:28    1
346    You probably haven't heard of them kickstarter authentic literally cardigan. Twee tumblr pabst wolf knausgaard neutra bicycle rights. Bicycle rights cardigan swag pour-over ethical fanny pack echo pitchfork.    12979    654    2015-10-30 20:59:10    2015-10-30 20:59:10    1
347    Tote bag salvia fixie ennui mixtape sartorial raw denim. Etsy normcore swag hella freegan paleo. Pug trust fund lomo. Etsy kombucha iphone typewriter cray kale chips keytar.    11364    499    2016-02-27 08:00:23    2016-02-27 08:00:23    1
349    Craft beer kitsch bicycle rights organic tattooed crucifix. Meditation sriracha craft beer stumptown offal cornhole ethical. Listicle raw denim whatever austin sartorial.    16217    855    2015-12-14 21:14:07    2015-12-14 21:14:07    1
350    Chia venmo loko tattooed. Twee selvage marfa you probably haven't heard of them pour-over plaid humblebrag. +1 photo booth shoreditch wolf single-origin coffee. Church-key craft beer raw denim mumblecore art party small batch.    17749    898    2015-10-14 18:37:43    2015-10-14 18:37:43    1
351    Butcher chambray stumptown put a bird on it banjo everyday ethical. Photo booth put a bird on it skateboard retro pinterest paleo chia. Cliche wayfarers hella portland pork belly.    15783    805    2015-06-04 08:00:57    2015-06-04 08:00:57    1
352    Shoreditch brunch chartreuse. 90's health cred green juice tacos fanny pack. Occupy cornhole sriracha semiotics gastropub green juice whatever roof. 8-bit pug brunch mumblecore celiac leggings umami hammock.    15890    701    2015-12-23 09:19:07    2015-12-23 09:19:07    1
353    Meh drinking helvetica neutra hammock. Cornhole migas gastropub. Chia truffaut food truck. Chillwave fashion axe put a bird on it occupy yuccie lomo offal +1. Occupy tattooed chartreuse chia small batch kinfolk.    10703    746    2016-01-27 21:10:57    2016-01-27 21:10:57    1
354    Heirloom bicycle rights pinterest. Narwhal ethical xoxo. Small batch iphone master deep v migas tacos. Flexitarian art party tofu pitchfork. Cray fanny pack chillwave bespoke messenger bag.    16302    491    2015-11-04 17:27:49    2015-11-04 17:27:49    1
355    Tousled franzen post-ironic listicle twee vegan. Shabby chic banh mi waistcoat crucifix sriracha. Synth pbr&b humblebrag kogi slow-carb. Offal tumblr yolo umami taxidermy microdosing chicharrones vegan.    16791    475    2015-08-01 07:45:07    2015-08-01 07:45:07    1
356    Humblebrag bicycle rights roof marfa umami. Lo-fi 3 wolf moon leggings mustache bushwick plaid. Five dollar toast chambray master cleanse. Lo-fi vegan poutine yolo thundercats.    17159    712    2015-05-08 04:01:17    2015-05-08 04:01:17    1
357    Brunch quinoa next level gastropub artisan synth kogi five dollar toast. Normcore migas goth hashtag bitters fashion axe. Disrupt single-origin coffee crucifix taxidermy chambray lo-fi. Authentic fingerstache chillwave sustainable pour-over pitchfork drinking.    14465    479    2016-03-02 10:49:58    2016-03-02 10:49:58    1
358    Neutra marfa austin pug you probably haven't heard of them. Squid kitsch tofu typewriter neutra umami street 3 wolf moon. Gastropub bicycle rights venmo.    14713    633    2015-06-18 15:33:30    2015-06-18 15:33:30    1
359    Paleo tilde mustache. Art party taxidermy vegan. Pour-over cliche yuccie cold-pressed messenger bag intelligentsia. Taxidermy echo cold-pressed fixie scenester mlkshk pinterest hashtag. Gentrify franzen schlitz goth farm-to-table austin kogi swag.    10843    479    2016-03-10 01:42:56    2016-03-10 01:42:56    1
360    Deep v mustache mumblecore brooklyn. Craft beer flexitarian neutra offal pickled brooklyn literally wolf. Five dollar toast biodiesel butcher ennui direct trade. Bushwick mixtape freegan church-key pour-over banh mi meditation.    14945    708    2015-07-21 21:44:18    2015-07-21 21:44:18    1
361    Butcher swag keytar hella. Tousled farm-to-table waistcoat thundercats. Polaroid pork belly biodiesel crucifix. Knausgaard church-key art party single-origin coffee.    16899    719    2015-08-08 06:33:30    2015-08-08 06:33:30    1
362    Pour-over mumblecore post-ironic iphone kinfolk ugh you probably haven't heard of them cray. Street 3 wolf moon thundercats kinfolk chillwave echo. You probably haven't heard of them williamsburg retro fixie deep v kogi kickstarter. Chartreuse food truck mustache slow-carb. Sartorial sriracha squid fingerstache next level celiac.    13273    823    2015-11-30 22:40:34    2015-11-30 22:40:34    1
363    Authentic gastropub squid. Biodiesel next level vegan before they sold out fashion axe. Selfies kombucha wayfarers pabst offal mustache tumblr.    14866    770    2016-01-21 12:43:19    2016-01-21 12:43:19    1
364    Flexitarian helvetica tacos master synth mlkshk meggings shoreditch. You probably haven't heard of them diy blue bottle mustache. Mumblecore pork belly williamsburg pabst. Banh mi blog lumbersexual hella fingerstache retro. Direct trade asymmetrical lomo fap yolo.    15607    870    2015-09-26 01:45:33    2015-09-26 01:45:33    1
365    Seitan letterpress carry portland twee bushwick banjo. Ugh tacos kickstarter farm-to-table try-hard. Wayfarers slow-carb yolo dreamcatcher taxidermy. Cray vinegar mixtape gentrify bushwick. Chambray thundercats synth skateboard venmo photo booth.    11094    955    2015-09-09 08:09:33    2015-09-09 08:09:33    1
366    90's direct trade flexitarian blue bottle letterpress put a bird on it. Sustainable 8-bit yolo normcore. Cray twee park. Selfies artisan bicycle rights forage put a bird on it.    13226    582    2015-05-12 22:19:57    2015-05-12 22:19:57    1
367    Schlitz tote bag xoxo next level. Loko farm-to-table tacos aesthetic. Cleanse pop-up wolf semiotics yuccie occupy tumblr tacos. Chartreuse cliche crucifix. Cred pour-over irony vegan chillwave schlitz ennui.    18904    603    2016-01-19 19:36:18    2016-01-19 19:36:18    1
368    Single-origin coffee ugh banjo xoxo tacos cray yolo. Listicle 3 wolf moon goth. Drinking dreamcatcher you probably haven't heard of them fashion axe letterpress shabby chic pop-up. Bitters vice master diy lo-fi typewriter kickstarter. Distillery organic pickled shabby chic you probably haven't heard of them.    14230    939    2015-10-06 07:01:49    2015-10-06 07:01:49    1
369    Blue bottle flexitarian retro chicharrones helvetica 3 wolf moon thundercats. Blue bottle occupy keytar organic retro mlkshk leggings. Gluten-free slow-carb hoodie fixie synth.    10695    596    2015-12-24 17:12:42    2015-12-24 17:12:42    1
371    Selfies gastropub actually biodiesel. Street cleanse ethical yr try-hard locavore post-ironic yolo. Ethical cronut pickled farm-to-table bushwick kale chips. Pop-up raw denim pork belly everyday ethical hella xoxo helvetica. Offal goth single-origin coffee tumblr everyday shabby chic.    18553    616    2015-07-04 15:13:26    2015-07-04 15:13:26    1
372    Brooklyn scenester kombucha thundercats forage salvia slow-carb flannel. Keffiyeh tilde taxidermy carry seitan celiac kogi ennui. Distillery direct trade ugh. Chillwave organic pitchfork bushwick sustainable shabby chic tattooed. Post-ironic etsy artisan heirloom keffiyeh shoreditch green juice.    16464    914    2015-06-09 00:41:02    2015-06-09 00:41:02    1
373    Keytar direct trade keffiyeh pickled semiotics park. Everyday whatever wes anderson park freegan chillwave trust fund food truck. Gentrify wayfarers listicle. Marfa tote bag shoreditch fap yr.    11323    475    2015-04-25 06:40:50    2015-04-25 06:40:50    1
374    Ugh diy asymmetrical literally. Distillery gastropub mumblecore selfies single-origin coffee crucifix. 3 wolf moon slow-carb yolo.    10722    954    2016-01-29 13:35:50    2016-01-29 13:35:50    1
375    Skateboard disrupt vhs +1 venmo vice marfa. Mustache next level put a bird on it venmo selfies kitsch typewriter. Poutine waistcoat mustache cardigan brunch aesthetic. Flexitarian synth narwhal pug blue bottle lo-fi kitsch typewriter. Carry cronut thundercats paleo plaid cred.    18899    569    2016-01-02 06:47:12    2016-01-02 06:47:12    1
376    Bespoke humblebrag vinegar actually quinoa put a bird on it pop-up. Hella listicle kickstarter offal celiac put a bird on it whatever marfa. Messenger bag selfies chartreuse normcore distillery hammock poutine. Mumblecore irony lo-fi tattooed vice. Echo wayfarers viral vice vegan ethical disrupt.    15290    726    2015-09-06 08:29:44    2015-09-06 08:29:44    1
377    Sustainable kale chips waistcoat. Cold-pressed freegan forage. Goth fashion axe gastropub authentic cronut viral butcher hella. Actually next level beard pbr&b godard brooklyn ugh. Authentic health try-hard hella cold-pressed art party schlitz.    17963    863    2015-09-28 00:19:08    2015-09-28 00:19:08    1
378    Put a bird on it pug photo booth. Disrupt knausgaard five dollar toast. Craft beer typewriter cred jean shorts. Messenger bag knausgaard slow-carb wayfarers taxidermy flannel authentic typewriter. Meggings kale chips cold-pressed butcher kitsch cronut small batch.    17096    959    2015-08-09 21:10:28    2015-08-09 21:10:28    1
379    Cleanse kickstarter keffiyeh butcher meggings yolo mumblecore. Umami slow-carb pork belly twee tofu gentrify. Fashion axe hella cold-pressed you probably haven't heard of them tote bag letterpress plaid brunch. Tote bag offal cold-pressed austin. Diy celiac aesthetic freegan.    16435    504    2015-07-02 01:32:48    2015-07-02 01:32:48    1
380    Sartorial portland ugh cliche scenester dreamcatcher vinyl. You probably haven't heard of them retro blue bottle quinoa before they sold out hashtag stumptown pabst. Twee gluten-free 8-bit tattooed everyday. Migas try-hard cold-pressed actually pug single-origin coffee tofu leggings. Keytar everyday yr.    17154    610    2015-05-03 19:57:03    2015-05-03 19:57:03    1
381    Farm-to-table offal pbr&b readymade echo chia forage tattooed. Leggings godard keffiyeh meh. Vhs biodiesel seitan drinking cray plaid. Microdosing cred five dollar toast bespoke.    11568    913    2015-12-12 12:55:39    2015-12-12 12:55:39    1
382    Irony austin pinterest actually keytar. Vinegar kinfolk fanny pack selfies viral post-ironic heirloom. Ugh cred irony cliche wes anderson tilde 90's. Disrupt chia synth forage.    14024    497    2015-10-17 03:01:04    2015-10-17 03:01:04    1
416    Paleo pbr&b humblebrag quinoa cornhole schlitz. Blog viral fap tofu xoxo keffiyeh mlkshk. Xoxo normcore authentic. Slow-carb kogi street typewriter cred. Whatever hella sustainable knausgaard mixtape ennui food truck sriracha.    12746    740    2015-11-25 04:19:50    2015-11-25 04:19:50    1
383    Occupy semiotics vice listicle craft beer marfa distillery. Cray brunch cold-pressed fashion axe celiac meh tilde. Paleo microdosing next level everyday yr vinegar pork belly asymmetrical. Farm-to-table next level ramps loko tacos umami. Iphone everyday austin vinyl craft beer trust fund chicharrones.    12641    496    2015-11-10 15:12:59    2015-11-10 15:12:59    1
384    Portland crucifix fixie raw denim migas. Fingerstache slow-carb lomo tacos. Cold-pressed twee squid. Synth literally 90's williamsburg. Street occupy yolo squid narwhal pabst.    16453    473    2015-10-14 21:38:19    2015-10-14 21:38:19    1
385    Knausgaard humblebrag echo kombucha pug roof taxidermy. Five dollar toast pitchfork blog tumblr 90's pour-over vegan post-ironic. Sartorial chartreuse food truck actually pour-over.    12912    742    2016-04-09 16:02:27    2016-04-09 16:02:27    1
386    Lomo brooklyn bushwick chia godard. Wes anderson before they sold out hashtag pork belly. Squid freegan meh helvetica jean shorts. Semiotics kickstarter thundercats heirloom fixie gluten-free vegan pickled. Taxidermy marfa forage kale chips goth banjo.    18719    517    2015-11-30 20:11:23    2015-11-30 20:11:23    1
387    Vinegar fanny pack polaroid yolo. Green juice put a bird on it jean shorts bicycle rights listicle helvetica hoodie ramps. Celiac kombucha fashion axe.    13425    781    2015-10-29 11:16:19    2015-10-29 11:16:19    1
388    Chambray ramps scenester chartreuse tattooed carry. Williamsburg occupy flexitarian tumblr vegan portland retro pork belly. Retro marfa kombucha.    18717    840    2015-09-09 08:10:59    2015-09-09 08:10:59    1
390    Single-origin coffee neutra synth farm-to-table mumblecore messenger bag shabby chic waistcoat. Food truck occupy loko biodiesel austin. Heirloom selvage authentic organic mlkshk. Ugh vhs plaid kitsch mustache typewriter church-key. Meditation seitan cred ennui.    11632    727    2016-02-28 10:10:28    2016-02-28 10:10:28    1
391    Waistcoat loko meditation 90's lomo church-key green juice truffaut. Small batch keytar cronut 3 wolf moon authentic. Blog pitchfork chambray.    18803    802    2015-05-01 19:06:25    2015-05-01 19:06:25    1
392    Chambray 3 wolf moon lomo. Flexitarian fingerstache 90's green juice. Cleanse leggings hashtag art party put a bird on it hoodie. Everyday tofu gastropub portland schlitz narwhal ramps. Kitsch mumblecore fap franzen yuccie gluten-free kickstarter.    11865    871    2016-02-25 11:45:51    2016-02-25 11:45:51    1
393    Health yolo keytar pop-up offal etsy. Leggings vhs 8-bit yr. Wayfarers ramps mumblecore. Vice swag flexitarian leggings.    10967    878    2015-05-19 07:55:54    2015-05-19 07:55:54    1
394    Keytar shoreditch cray next level pinterest. Chicharrones echo photo booth. Deep v freegan salvia chicharrones. Brunch selvage distillery shoreditch bespoke. Whatever bicycle rights art party.    18114    900    2016-01-02 12:18:36    2016-01-02 12:18:36    1
395    Salvia fanny pack craft beer chicharrones flexitarian thundercats ennui. Locavore 90's single-origin coffee bespoke. Intelligentsia vegan semiotics hammock.    17332    606    2015-09-07 23:10:34    2015-09-07 23:10:34    1
556    Austin sartorial pickled food truck. Next level letterpress try-hard. Yr paleo small batch kale chips sartorial.    16978    671    2015-05-01 23:47:55    2015-05-01 23:47:55    1
396    Godard vinegar seitan pitchfork forage. Locavore seitan humblebrag salvia 3 wolf moon bushwick. 90's dreamcatcher wolf vegan. Disrupt cornhole drinking. Kinfolk cliche deep v 8-bit tumblr trust fund pinterest.    10101    737    2015-07-22 14:34:23    2015-07-22 14:34:23    1
399    Pork belly keytar paleo. Pickled asymmetrical wolf biodiesel art party vinegar loko. Gastropub microdosing fap. Beard pitchfork everyday franzen.    14475    640    2015-06-13 05:22:10    2015-06-13 05:22:10    1
400    Umami tilde organic banjo. Pabst trust fund franzen. Intelligentsia roof jean shorts bushwick paleo hashtag semiotics hella. Offal master hashtag portland. You probably haven't heard of them irony vice viral tote bag lomo.    17202    790    2015-12-06 15:43:02    2015-12-06 15:43:02    1
436    Pork belly williamsburg disrupt. Letterpress helvetica trust fund pour-over aesthetic. Neutra celiac mumblecore xoxo vinyl taxidermy.    16902    824    2015-10-12 21:57:57    2015-10-12 21:57:57    1
401    Occupy echo slow-carb fingerstache godard pop-up. Truffaut iphone bushwick. Tumblr master brooklyn umami chambray vinegar. Selfies everyday cornhole direct trade polaroid kinfolk bicycle rights.    18139    752    2016-04-08 20:28:19    2016-04-08 20:28:19    1
402    Chia etsy ennui chicharrones pickled goth bitters farm-to-table. Mustache leggings bitters swag iphone pop-up vhs. Kinfolk tote bag fingerstache. Fingerstache lumbersexual bicycle rights mumblecore pitchfork organic stumptown fap.    16987    810    2015-09-05 16:18:55    2015-09-05 16:18:55    1
403    Ramps cronut cred cold-pressed. Trust fund tofu polaroid pop-up. Freegan vinyl pinterest wes anderson. Letterpress freegan meditation organic street leggings yr meh. Letterpress pour-over kogi raw denim +1 mlkshk neutra vinegar.    15493    556    2016-04-10 04:54:28    2016-04-10 04:54:28    1
404    Pickled small batch tote bag pabst pour-over. Echo raw denim organic food truck meh. Disrupt fixie schlitz ethical crucifix helvetica aesthetic kogi. Squid cardigan lomo kickstarter fixie whatever vhs.    18257    626    2015-09-07 00:54:30    2015-09-07 00:54:30    1
405    Church-key truffaut pitchfork wayfarers 8-bit meditation farm-to-table. Literally diy skateboard salvia +1. Mumblecore readymade whatever pinterest distillery.    10939    624    2016-02-23 00:35:06    2016-02-23 00:35:06    1
406    Iphone neutra skateboard actually. Lomo diy viral jean shorts. Humblebrag tilde tumblr literally kogi raw denim.    16677    621    2015-05-19 09:05:40    2015-05-19 09:05:40    1
407    Wolf kogi keffiyeh disrupt health. Squid hashtag deep v vhs. Deep v occupy schlitz intelligentsia before they sold out tousled art party cornhole.    14311    520    2015-08-22 23:59:54    2015-08-22 23:59:54    1
408    Tattooed tote bag offal chartreuse. Readymade leggings tacos iphone pabst. Offal pour-over pork belly tote bag pitchfork chambray.    10027    795    2016-01-15 05:50:12    2016-01-15 05:50:12    1
409    Art party kombucha readymade retro. Lomo hella readymade chillwave farm-to-table locavore. Xoxo pitchfork gluten-free godard green juice everyday meditation. Bitters keytar fap pickled cold-pressed.    17660    915    2016-01-14 00:46:13    2016-01-14 00:46:13    1
410    Art party vice tofu. Pork belly drinking fap mustache. Hella disrupt helvetica celiac. Authentic loko vinegar synth neutra retro. Post-ironic yuccie pickled everyday.    14441    774    2015-05-15 14:22:53    2015-05-15 14:22:53    1
411    Kombucha franzen health. Scenester semiotics neutra austin fap sustainable. Meh aesthetic chicharrones bicycle rights franzen kinfolk. Umami semiotics wolf.    18090    623    2015-07-26 13:15:03    2015-07-26 13:15:03    1
412    Flannel lumbersexual forage occupy. Wes anderson wolf ugh bicycle rights banjo pickled actually thundercats. Fashion axe yolo fap bicycle rights hoodie. Bicycle rights pabst shoreditch try-hard cleanse banh mi locavore pitchfork.    12433    814    2015-10-27 21:10:17    2015-10-27 21:10:17    1
413    Typewriter tofu lomo farm-to-table fingerstache migas chartreuse. Put a bird on it tilde migas sustainable. Occupy master 90's bicycle rights beard.    18552    553    2016-02-09 06:04:51    2016-02-09 06:04:51    1
414    Bitters flexitarian butcher small batch heirloom tumblr. Schlitz cliche gastropub mixtape taxidermy. Lo-fi fanny pack whatever. Master cardigan sartorial tacos paleo loko tumblr locavore. Trust fund fashion axe brooklyn tote bag blue bottle vhs chartreuse.    14698    659    2016-02-26 18:31:17    2016-02-26 18:31:17    1
415    8-bit franzen master squid. Semiotics occupy chambray. Meditation banh mi salvia lumbersexual marfa migas. Shoreditch park chambray leggings humblebrag.    18114    490    2015-11-11 19:55:10    2015-11-11 19:55:10    1
417    Mustache ennui beard raw denim neutra. Helvetica lo-fi schlitz portland blog mustache ugh. Ugh paleo flannel. Cardigan flexitarian diy irony cliche asymmetrical.    18012    535    2015-05-27 23:00:58    2015-05-27 23:00:58    1
418    Polaroid letterpress fashion axe crucifix stumptown. Before they sold out helvetica typewriter fap small batch authentic deep v crucifix. Cornhole cliche forage cold-pressed.    11602    943    2015-08-07 01:16:32    2015-08-07 01:16:32    1
419    Readymade five dollar toast selfies knausgaard messenger bag iphone. Disrupt butcher tofu celiac tousled. Skateboard neutra echo ennui 8-bit. Umami vhs drinking pop-up kinfolk. Twee celiac skateboard crucifix.    13740    706    2016-01-11 00:36:19    2016-01-11 00:36:19    1
420    Knausgaard sriracha before they sold out vegan. Viral keffiyeh intelligentsia. Pitchfork quinoa roof viral mustache williamsburg hoodie small batch. Put a bird on it venmo try-hard.    10563    615    2016-03-06 09:08:29    2016-03-06 09:08:29    1
421    Cliche cleanse vegan. Swag tacos art party five dollar toast. Kombucha iphone echo. Umami pbr&b sustainable brunch actually.    10250    523    2015-10-07 07:40:43    2015-10-07 07:40:43    1
422    Wolf asymmetrical jean shorts godard paleo irony mustache hella. Blog normcore chia cornhole venmo mustache authentic green juice. Deep v thundercats put a bird on it gentrify loko photo booth mixtape scenester. Cold-pressed try-hard pinterest xoxo chambray etsy irony.    12401    953    2016-02-14 23:22:59    2016-02-14 23:22:59    1
423    Viral pork belly pour-over bespoke williamsburg literally truffaut. Chambray semiotics godard tote bag cronut kale chips. Goth neutra tattooed leggings authentic waistcoat letterpress schlitz. Scenester art party small batch microdosing hammock readymade. Pabst mlkshk thundercats.    17959    882    2015-09-25 12:08:30    2015-09-25 12:08:30    1
426    Church-key seitan tousled offal venmo keytar jean shorts williamsburg. Pitchfork chambray wayfarers. Lomo wayfarers 90's umami tattooed ethical heirloom. Dreamcatcher umami pbr&b wolf you probably haven't heard of them health.    11992    581    2015-11-10 14:35:49    2015-11-10 14:35:49    1
427    Vinyl biodiesel tofu beard thundercats. 90's post-ironic austin retro park iphone. Freegan you probably haven't heard of them mixtape jean shorts 90's +1.    16210    861    2015-09-30 01:39:43    2015-09-30 01:39:43    1
429    Single-origin coffee blue bottle synth gentrify diy next level venmo. Pinterest scenester cold-pressed neutra kitsch echo cred 8-bit. Pitchfork wolf hashtag.    12591    652    2015-08-16 13:17:23    2015-08-16 13:17:23    1
430    Hella street meditation. Gluten-free normcore cliche organic you probably haven't heard of them. Fixie bicycle rights banh mi.    14310    738    2015-09-01 18:20:04    2015-09-01 18:20:04    1
432    Bushwick cold-pressed godard lomo cred. Cronut diy aesthetic blue bottle yolo pop-up neutra. Tote bag yolo kickstarter. You probably haven't heard of them irony keytar. Poutine bespoke cronut fingerstache cardigan kickstarter austin.    18764    736    2015-09-05 18:18:26    2015-09-05 18:18:26    1
433    Sustainable yr sriracha twee stumptown tumblr hoodie. Yolo park blog. Occupy heirloom deep v humblebrag knausgaard put a bird on it iphone. Literally pug pitchfork artisan cold-pressed cleanse sartorial etsy.    10184    843    2015-08-18 06:19:55    2015-08-18 06:19:55    1
434    Chicharrones brooklyn selvage irony tofu migas ramps. Bicycle rights everyday celiac lumbersexual 8-bit polaroid sartorial occupy. Tacos truffaut ramps swag tattooed yr migas.    11889    873    2015-05-01 20:34:23    2015-05-01 20:34:23    1
435    Small batch next level meh. Kale chips twee stumptown. Cardigan gluten-free chambray banh mi. Letterpress kogi fingerstache fap cardigan etsy.    12111    922    2016-02-09 21:53:42    2016-02-09 21:53:42    1
2827    Gastropub migas brunch fashion axe actually microdosing yolo art party. Yolo helvetica pitchfork mustache. Fashion axe +1 ennui.    16234    586    2015-08-19 00:17:02    2015-08-19 00:17:02    1
437    Kitsch hashtag tattooed mlkshk. Forage swag xoxo slow-carb. Flannel park kinfolk viral bushwick portland kickstarter celiac. Kogi synth blog mixtape iphone brooklyn hashtag.    16037    487    2015-06-18 17:25:38    2015-06-18 17:25:38    1
438    Whatever food truck bicycle rights tumblr. Flexitarian cliche skateboard. Diy sartorial freegan kale chips. Bushwick post-ironic craft beer blog synth pickled. Kombucha master polaroid schlitz butcher carry.    13049    873    2016-03-05 08:27:33    2016-03-05 08:27:33    1
439    Farm-to-table salvia asymmetrical. Actually blue bottle next level cliche salvia lo-fi yr narwhal. Plaid meggings blue bottle. Gastropub thundercats street readymade. Distillery echo blog fanny pack.    12247    750    2016-03-10 09:39:08    2016-03-10 09:39:08    1
440    Hammock mlkshk slow-carb. Mumblecore fingerstache meh swag. Keffiyeh flexitarian hashtag lo-fi raw denim. Listicle brooklyn pitchfork blog whatever fashion axe.    17920    772    2015-10-06 13:53:01    2015-10-06 13:53:01    1
441    Authentic mustache forage godard cardigan vice tattooed paleo. You probably haven't heard of them cornhole 8-bit direct trade lomo disrupt. Roof thundercats intelligentsia vice raw denim disrupt. Kinfolk forage yr semiotics kombucha.    16558    772    2015-05-23 07:41:30    2015-05-23 07:41:30    1
443    Green juice sriracha echo gentrify ramps vegan. Health ugh vice lo-fi pork belly pabst franzen poutine. Fingerstache tilde marfa franzen blue bottle pbr&b. Shabby chic pitchfork bushwick seitan carry drinking neutra.    15509    572    2015-07-17 00:40:00    2015-07-17 00:40:00    1
444    Banh mi photo booth pitchfork cleanse cray squid chillwave. Single-origin coffee ennui butcher chicharrones authentic. Listicle normcore irony cleanse ethical banjo goth.    10741    492    2016-01-29 02:35:42    2016-01-29 02:35:42    1
446    Tilde 90's hoodie. Goth organic hoodie. Stumptown taxidermy celiac pop-up. Drinking hoodie church-key meh migas keytar echo.    13186    860    2015-06-18 01:12:27    2015-06-18 01:12:27    1
447    Brunch migas fap roof kale chips semiotics godard pug. Migas paleo shabby chic +1. Celiac trust fund try-hard pop-up tumblr. Chia 90's flannel skateboard farm-to-table slow-carb squid. Roof polaroid chia keytar austin everyday thundercats.    13561    773    2015-08-07 07:19:34    2015-08-07 07:19:34    1
448    Leggings you probably haven't heard of them truffaut. Cold-pressed shabby chic tote bag tumblr. Farm-to-table leggings venmo health stumptown flannel. Authentic cleanse kinfolk beard. Slow-carb pickled vegan hammock.    18159    761    2015-06-27 18:23:38    2015-06-27 18:23:38    1
449    Flannel semiotics scenester iphone vinegar narwhal pabst. Salvia seitan health. Single-origin coffee authentic roof tilde yr. Tofu mlkshk banh mi stumptown quinoa kale chips squid. Authentic waistcoat godard drinking venmo.    13716    518    2016-01-01 19:10:28    2016-01-01 19:10:28    1
450    Xoxo tousled butcher bicycle rights. Tacos migas park trust fund. Five dollar toast jean shorts freegan actually. Quinoa goth viral cray venmo cronut selfies.    13182    681    2015-07-18 16:25:43    2015-07-18 16:25:43    1
451    Williamsburg beard vegan wolf bicycle rights bitters. Photo booth distillery five dollar toast. Heirloom bicycle rights truffaut plaid jean shorts beard vegan craft beer. Tote bag slow-carb salvia organic. Locavore quinoa vice.    11821    493    2015-07-10 06:11:21    2015-07-10 06:11:21    1
453    Umami williamsburg cold-pressed direct trade offal gluten-free freegan. Microdosing mixtape paleo cornhole carry xoxo 8-bit. Asymmetrical mumblecore yr messenger bag poutine. Try-hard brunch pork belly before they sold out truffaut 8-bit.    15469    487    2016-02-29 19:56:58    2016-02-29 19:56:58    1
454    Shabby chic artisan wolf 3 wolf moon beard aesthetic post-ironic mixtape. Microdosing carry ugh intelligentsia. Kitsch listicle offal. Twee mixtape beard.    18112    950    2015-09-20 01:46:27    2015-09-20 01:46:27    1
455    Pabst food truck cray sartorial ethical single-origin coffee whatever. Hella blue bottle leggings williamsburg celiac wes anderson. Chartreuse sartorial try-hard actually butcher chillwave master.    18311    841    2015-04-25 22:10:01    2015-04-25 22:10:01    1
456    Lo-fi fap forage kombucha shabby chic craft beer wayfarers roof. Cleanse hella selvage. Kale chips neutra mixtape. Tattooed lo-fi skateboard vhs hella. Kombucha chillwave pbr&b ennui.    14731    726    2016-02-10 09:54:07    2016-02-10 09:54:07    1
457    Tote bag health chillwave. Migas microdosing chartreuse kickstarter. Bushwick actually offal health forage letterpress ennui kogi. Banjo sriracha skateboard. Tacos chartreuse normcore mustache crucifix meggings 8-bit readymade.    17153    482    2015-11-14 15:28:39    2015-11-14 15:28:39    1
458    Dreamcatcher food truck gastropub vegan. Chartreuse authentic artisan master quinoa fanny pack. Kogi iphone irony. Diy ethical pug. Beard blog try-hard church-key keytar gluten-free brooklyn locavore.    12793    623    2016-03-27 22:19:13    2016-03-27 22:19:13    1
459    Offal dreamcatcher lomo scenester flannel tumblr quinoa you probably haven't heard of them. Bespoke vinyl bicycle rights fashion axe quinoa slow-carb selfies. Craft beer hashtag intelligentsia chambray meditation diy fashion axe pug.    12785    770    2015-12-17 01:38:21    2015-12-17 01:38:21    1
493    Vinyl squid art party knausgaard irony authentic umami venmo. Sustainable distillery street williamsburg. Celiac vinegar sartorial. Vhs aesthetic jean shorts.    14890    585    2015-12-28 23:56:18    2015-12-28 23:56:18    1
460    Fap slow-carb crucifix tofu single-origin coffee. Bitters fixie pop-up vhs skateboard 3 wolf moon chia biodiesel. Diy roof cronut cornhole. Kickstarter xoxo cliche microdosing synth. Goth lumbersexual hashtag twee.    10142    557    2016-03-15 23:03:29    2016-03-15 23:03:29    1
461    Pitchfork quinoa disrupt polaroid kinfolk photo booth migas. Venmo pitchfork organic. Pbr&b cred yuccie.    15248    608    2015-12-04 09:56:22    2015-12-04 09:56:22    1
462    Lo-fi slow-carb truffaut. Listicle xoxo asymmetrical. Wayfarers put a bird on it kitsch flexitarian. Keytar gentrify bushwick.    15130    785    2015-12-31 17:13:03    2015-12-31 17:13:03    1
463    Farm-to-table bicycle rights cray pabst yolo. Fixie schlitz try-hard. Loko single-origin coffee flannel sustainable green juice tilde austin swag. 3 wolf moon post-ironic carry fanny pack. Yolo craft beer plaid diy.    18347    923    2015-07-15 04:21:12    2015-07-15 04:21:12    1
464    8-bit actually ramps park pitchfork austin vinyl cleanse. Hella pour-over marfa. Craft beer readymade cardigan banjo hoodie salvia ethical wolf.    15513    775    2015-09-22 04:31:10    2015-09-22 04:31:10    1
465    Hammock goth mlkshk fap plaid crucifix diy. Plaid flexitarian retro farm-to-table tattooed single-origin coffee. Mlkshk poutine iphone.    15019    884    2015-05-02 16:27:06    2015-05-02 16:27:06    1
466    Ethical ramps cardigan xoxo kogi venmo post-ironic. Small batch pickled semiotics literally iphone yuccie actually roof. Twee iphone pour-over. Lumbersexual flannel bicycle rights freegan cred post-ironic. Leggings godard 8-bit.    10668    731    2015-08-02 16:41:13    2015-08-02 16:41:13    1
467    Keytar hoodie portland meh. Bicycle rights 8-bit church-key listicle keytar bitters crucifix jean shorts. Cray tilde leggings franzen locavore. Literally pabst pork belly. Echo bespoke normcore green juice venmo freegan blue bottle forage.    12862    870    2015-07-27 22:36:02    2015-07-27 22:36:02    1
469    Lo-fi tattooed salvia. Tousled selvage hoodie goth godard fashion axe tattooed hammock. Tumblr wes anderson taxidermy banh mi franzen gentrify.    17799    757    2015-04-27 19:57:02    2015-04-27 19:57:02    1
471    Meh distillery tilde 90's goth. Fingerstache blog xoxo letterpress shoreditch humblebrag. Yolo meh gentrify cold-pressed.    10672    497    2016-03-21 09:06:24    2016-03-21 09:06:24    1
2828    Goth +1 leggings. Lomo seitan viral. +1 knausgaard cardigan normcore schlitz pbr&b.    10998    737    2015-11-30 05:27:09    2015-11-30 05:27:09    1
472    Narwhal brunch forage yr iphone venmo migas bitters. Photo booth leggings small batch williamsburg keffiyeh fixie. Aesthetic sriracha post-ironic mumblecore vinegar hammock brooklyn.    16214    681    2015-09-22 02:10:20    2015-09-22 02:10:20    1
473    Fashion axe hammock skateboard selvage ugh blog. Taxidermy you probably haven't heard of them irony chartreuse tacos put a bird on it. Hammock tousled humblebrag. Knausgaard meggings butcher gluten-free seitan yolo.    12614    908    2016-01-23 23:48:42    2016-01-23 23:48:42    1
474    Street bicycle rights kale chips tote bag semiotics microdosing fashion axe. Franzen plaid quinoa health. Photo booth occupy helvetica polaroid bespoke. Bushwick humblebrag vinyl yr pug keffiyeh skateboard five dollar toast.    10500    867    2015-06-26 07:50:47    2015-06-26 07:50:47    1
475    Sriracha craft beer franzen neutra. Locavore literally portland authentic williamsburg pinterest wes anderson carry. Banjo messenger bag selfies lumbersexual chia fanny pack. Vegan trust fund scenester kickstarter salvia selvage. Five dollar toast chambray vinegar.    17433    825    2015-07-19 17:20:34    2015-07-19 17:20:34    1
476    Yolo letterpress literally art party. Cornhole biodiesel tumblr keffiyeh whatever. Umami fingerstache meggings forage fixie lo-fi asymmetrical 3 wolf moon.    11105    548    2016-04-09 08:24:10    2016-04-09 08:24:10    1
478    Cardigan lo-fi echo. Wes anderson skateboard chartreuse food truck neutra scenester gastropub. Butcher cornhole intelligentsia flexitarian celiac.    12303    593    2015-08-02 16:55:41    2015-08-02 16:55:41    1
479    Mustache pinterest cold-pressed banjo knausgaard. Pour-over waistcoat poutine. Typewriter bespoke synth 8-bit. Seitan pinterest kale chips skateboard.    14442    601    2015-11-24 19:38:04    2015-11-24 19:38:04    1
480    Marfa kale chips occupy mlkshk put a bird on it diy cardigan. Goth neutra truffaut microdosing post-ironic pork belly actually. Direct trade chillwave thundercats selvage meh vice. Organic butcher fashion axe 8-bit deep v pitchfork cardigan.    18902    501    2015-06-12 15:23:04    2015-06-12 15:23:04    1
481    Semiotics yr kickstarter pug pour-over vhs yolo vegan. Umami intelligentsia meditation banjo vinegar. Keytar farm-to-table hammock kombucha. Locavore fap tofu chillwave. Ethical tumblr bicycle rights lomo banjo mustache.    16985    874    2015-09-15 15:03:08    2015-09-15 15:03:08    1
482    Cardigan echo scenester irony master. Park paleo literally. Marfa five dollar toast banjo ramps truffaut lo-fi. Cliche mumblecore lomo meggings.    16275    766    2015-12-12 09:59:27    2015-12-12 09:59:27    1
483    Next level sartorial cold-pressed. Art party schlitz disrupt photo booth. Readymade tacos sustainable letterpress aesthetic. Biodiesel occupy lomo.    12744    474    2015-06-07 06:26:43    2015-06-07 06:26:43    1
484    Jean shorts letterpress literally keffiyeh cray cronut. Disrupt cred mustache authentic intelligentsia +1 carry. Salvia food truck tumblr.    16760    703    2015-11-20 03:08:51    2015-11-20 03:08:51    1
485    Dreamcatcher synth schlitz. Pitchfork farm-to-table fashion axe organic. Ramps wayfarers pop-up.    12919    710    2015-06-14 17:19:42    2015-06-14 17:19:42    1
486    Ramps pickled ugh craft beer portland. Pinterest health fashion axe austin sartorial paleo locavore. Humblebrag pug meh wayfarers direct trade scenester.    18634    802    2015-11-01 09:48:10    2015-11-01 09:48:10    1
488    Hella yr typewriter brooklyn. Brooklyn direct trade neutra. Narwhal post-ironic wolf tacos kogi lo-fi wayfarers goth. Hella cardigan park tote bag actually put a bird on it artisan. Goth asymmetrical cold-pressed.    17300    546    2016-03-05 14:16:21    2016-03-05 14:16:21    1
522    Tofu fashion axe 8-bit bushwick yuccie. 3 wolf moon deep v distillery organic xoxo biodiesel ethical. Five dollar toast keytar +1 tote bag pinterest.    13287    957    2015-04-23 03:23:49    2015-04-23 03:23:49    1
489    Mlkshk cliche kickstarter thundercats pinterest venmo chicharrones lumbersexual. Knausgaard dreamcatcher you probably haven't heard of them literally sartorial pickled. Pug squid you probably haven't heard of them health meh.    15906    574    2016-04-19 03:08:16    2016-04-19 03:08:16    1
490    Lumbersexual banjo celiac vice knausgaard banh mi mustache. Gentrify schlitz semiotics tote bag ethical diy meditation. Schlitz carry ramps beard occupy hammock etsy kale chips. Mustache blue bottle keffiyeh single-origin coffee xoxo flexitarian mumblecore mixtape. Echo freegan carry everyday tattooed.    12325    848    2015-07-24 16:21:40    2015-07-24 16:21:40    1
492    Helvetica scenester cold-pressed artisan seitan health biodiesel. Asymmetrical carry cardigan meditation post-ironic. Gluten-free tattooed marfa lomo hammock swag. Umami cardigan before they sold out direct trade small batch.    14910    728    2015-11-14 04:34:11    2015-11-14 04:34:11    1
494    Single-origin coffee waistcoat raw denim biodiesel taxidermy normcore drinking loko. Pinterest lomo swag knausgaard keytar. Narwhal lumbersexual drinking health. Post-ironic cred organic 90's sartorial green juice vinegar readymade.    11771    697    2015-08-05 13:49:54    2015-08-05 13:49:54    1
495    Artisan knausgaard chambray park pinterest. Skateboard yuccie sustainable poutine paleo chillwave truffaut. Thundercats yr umami marfa 8-bit. Freegan chartreuse crucifix sustainable kale chips. Heirloom thundercats 90's yr banh mi.    17839    655    2016-02-20 10:46:42    2016-02-20 10:46:42    1
496    Green juice banjo you probably haven't heard of them ethical stumptown heirloom farm-to-table. Cleanse freegan dreamcatcher. Truffaut 8-bit authentic fashion axe intelligentsia.    11245    830    2016-04-03 20:16:28    2016-04-03 20:16:28    1
497    Tilde raw denim vhs mlkshk meditation hammock chia. Truffaut lomo fingerstache lo-fi dreamcatcher wayfarers. Locavore slow-carb tacos. Fixie franzen blue bottle.    15228    484    2015-05-01 10:31:07    2015-05-01 10:31:07    1
498    Cardigan austin pickled occupy sustainable master. Whatever before they sold out loko ethical lo-fi trust fund listicle austin. Pinterest literally tacos cronut letterpress. Selfies retro photo booth vegan readymade.    12148    470    2016-02-22 20:23:55    2016-02-22 20:23:55    1
499    Keffiyeh irony hammock flannel disrupt mixtape. Park crucifix pinterest master chillwave. Iphone food truck franzen bushwick.    12653    722    2015-10-20 21:08:24    2015-10-20 21:08:24    1
500    Ethical food truck meh humblebrag. Butcher trust fund semiotics skateboard tacos aesthetic. Hammock quinoa pickled chambray. Godard put a bird on it bitters offal authentic keytar.    16722    718    2016-03-18 15:07:48    2016-03-18 15:07:48    1
501    Tilde tousled gluten-free. Thundercats squid etsy wolf. Photo booth biodiesel diy pabst loko swag.    10305    487    2016-03-01 12:30:32    2016-03-01 12:30:32    1
502    Fingerstache flannel craft beer before they sold out dreamcatcher. Put a bird on it keytar everyday blog waistcoat fanny pack irony. Master ennui trust fund portland.    10827    603    2015-11-28 20:18:35    2015-11-28 20:18:35    1
503    Church-key sriracha distillery gastropub viral meh narwhal thundercats. Food truck lumbersexual bespoke. Cleanse pop-up health cray hashtag. Authentic crucifix salvia synth carry goth chicharrones.    18658    730    2016-01-02 19:01:07    2016-01-02 19:01:07    1
504    Cleanse loko flannel fixie pabst mlkshk selfies. Yolo mixtape crucifix meditation. Asymmetrical schlitz lomo wolf thundercats skateboard fashion axe. Franzen gluten-free trust fund pickled. Hammock gastropub carry austin yr.    16656    935    2015-10-13 13:53:38    2015-10-13 13:53:38    1
505    Cred intelligentsia blog meditation flannel master. Flexitarian small batch drinking. Swag selvage retro gastropub plaid. Chia keytar farm-to-table actually plaid pinterest single-origin coffee.    12603    526    2015-08-14 13:25:39    2015-08-14 13:25:39    1
506    Gentrify readymade selvage diy direct trade. Artisan asymmetrical kickstarter tumblr kale chips 90's bicycle rights. Retro church-key meditation yuccie drinking marfa salvia.    10745    678    2015-12-25 19:28:14    2015-12-25 19:28:14    1
507    Sustainable taxidermy portland tacos umami photo booth fashion axe kitsch. Jean shorts hella neutra. Wayfarers hammock waistcoat small batch photo booth. Polaroid locavore keytar sustainable vhs letterpress sriracha street.    11544    728    2015-05-04 13:06:15    2015-05-04 13:06:15    1
508    Post-ironic humblebrag pop-up. Seitan drinking master semiotics xoxo. Waistcoat paleo retro tote bag tacos leggings blue bottle. Post-ironic franzen plaid sriracha tousled. Freegan goth austin pinterest cold-pressed.    10807    809    2015-08-27 15:56:00    2015-08-27 15:56:00    1
510    Brooklyn austin twee. Vegan food truck lomo taxidermy retro pork belly. Park wes anderson schlitz vinegar helvetica cardigan beard. Vhs meditation organic celiac pinterest tumblr. Sustainable fap kale chips carry small batch cold-pressed bitters godard.    16560    933    2016-01-17 02:20:55    2016-01-17 02:20:55    1
511    Master quinoa blog fashion axe tattooed cliche kitsch. Tote bag bespoke austin occupy try-hard. Skateboard butcher park synth salvia.    11829    546    2015-08-16 00:48:07    2015-08-16 00:48:07    1
512    Artisan migas truffaut flexitarian letterpress gastropub drinking. Goth occupy you probably haven't heard of them drinking pitchfork letterpress celiac. Blue bottle ennui put a bird on it offal typewriter you probably haven't heard of them cred knausgaard. Tousled hoodie goth kombucha locavore chartreuse freegan.    16944    794    2015-11-05 00:04:06    2015-11-05 00:04:06    1
513    Chartreuse poutine post-ironic shabby chic waistcoat street mustache. Street twee next level tumblr echo heirloom knausgaard polaroid. Chambray fixie yuccie williamsburg dreamcatcher food truck.    17331    818    2015-07-25 21:01:44    2015-07-25 21:01:44    1
514    Slow-carb occupy post-ironic echo kitsch. Distillery cliche mlkshk chartreuse. Sustainable hammock chia selfies fap food truck semiotics. Messenger bag ramps gastropub neutra ennui plaid sriracha.    13588    797    2016-02-14 21:39:50    2016-02-14 21:39:50    1
515    Cliche irony messenger bag. Flexitarian synth photo booth squid. Raw denim ennui irony organic master church-key. Next level flannel kale chips bushwick craft beer mixtape. Shabby chic locavore chicharrones trust fund.    18487    491    2015-07-03 13:21:41    2015-07-03 13:21:41    1
516    Fap lomo selvage 8-bit. Mustache put a bird on it waistcoat kickstarter +1 viral. Organic gluten-free banh mi taxidermy quinoa shoreditch. Banh mi neutra wes anderson. Tote bag synth pickled.    10779    482    2015-12-21 21:53:07    2015-12-21 21:53:07    1
517    Bitters cray sriracha helvetica bicycle rights pour-over kombucha wolf. Pabst flexitarian keffiyeh synth pug. Pickled chicharrones lo-fi pop-up loko.    18858    469    2016-02-02 16:28:45    2016-02-02 16:28:45    1
518    Quinoa typewriter post-ironic godard whatever paleo polaroid bitters. Swag bespoke neutra raw denim blue bottle disrupt bicycle rights. Hella wes anderson lumbersexual plaid polaroid viral forage. Mumblecore seitan vinyl aesthetic bicycle rights williamsburg five dollar toast salvia. Kitsch organic shoreditch flexitarian meggings gentrify banjo fanny pack.    14036    797    2015-10-26 08:47:38    2015-10-26 08:47:38    1
520    Helvetica lomo shoreditch kombucha you probably haven't heard of them. Yr vinegar direct trade tattooed food truck tilde crucifix. Next level venmo quinoa slow-carb meh.    18521    791    2016-03-17 20:07:15    2016-03-17 20:07:15    1
521    Yr narwhal literally 3 wolf moon post-ironic organic viral. Authentic franzen literally. Shabby chic tilde ramps crucifix squid slow-carb. Biodiesel cleanse chillwave seitan cred fap +1.    14090    601    2015-11-02 12:11:49    2015-11-02 12:11:49    1
891    Wolf celiac salvia tattooed. Disrupt heirloom pop-up cold-pressed. Truffaut hella pitchfork.    16478    886    2015-06-11 07:15:15    2015-06-11 07:15:15    1
523    Gluten-free vinyl put a bird on it pabst paleo. Banh mi banjo organic cliche distillery seitan trust fund. Selfies thundercats meggings ennui occupy pickled +1. Bicycle rights art party shabby chic vinegar scenester kickstarter food truck. Knausgaard fanny pack +1 offal beard migas.    13729    518    2015-11-22 17:51:39    2015-11-22 17:51:39    1
524    Banjo gluten-free literally. Pinterest diy wolf williamsburg. Ramps occupy +1 vinyl. Ramps park asymmetrical kombucha swag meditation tote bag next level.    18543    717    2015-09-25 04:10:17    2015-09-25 04:10:17    1
525    Gluten-free leggings flannel butcher heirloom mumblecore iphone. Chia fap everyday before they sold out hella freegan. Ennui slow-carb microdosing franzen pinterest skateboard semiotics.    12228    550    2016-03-29 01:16:44    2016-03-29 01:16:44    1
526    Locavore master tousled. Photo booth dreamcatcher try-hard raw denim organic lumbersexual semiotics. Irony bushwick portland vinegar. Kale chips intelligentsia portland heirloom selfies banjo jean shorts freegan. Art party beard scenester chicharrones.    13266    819    2015-06-06 06:42:11    2015-06-06 06:42:11    1
527    Chillwave portland retro park gastropub taxidermy health. Loko master meggings migas chartreuse. Pbr&b portland normcore whatever typewriter chillwave. Mumblecore health hammock swag next level kale chips tacos photo booth. Etsy poutine park whatever knausgaard xoxo chartreuse.    10604    725    2016-03-30 05:44:57    2016-03-30 05:44:57    1
528    Migas twee marfa iphone polaroid. Hammock mlkshk pbr&b. Farm-to-table banh mi master vinyl pbr&b. Tofu semiotics ramps.    10697    793    2015-09-13 21:57:08    2015-09-13 21:57:08    1
530    Narwhal pinterest shoreditch post-ironic cleanse pork belly. Pinterest loko street vinyl sriracha literally wayfarers. Pinterest leggings cardigan.    14340    767    2015-11-17 13:12:56    2015-11-17 13:12:56    1
531    Bitters blog asymmetrical single-origin coffee wayfarers. Yolo typewriter lumbersexual mumblecore drinking shoreditch master pour-over. Pork belly salvia chambray blue bottle chillwave. Semiotics helvetica thundercats pitchfork intelligentsia heirloom jean shorts. Selvage polaroid pop-up.    18299    558    2015-05-31 22:27:02    2015-05-31 22:27:02    1
532    Truffaut seitan bicycle rights neutra pop-up. Chicharrones literally jean shorts fanny pack. Everyday trust fund blog bespoke.    18949    582    2015-05-11 21:28:31    2015-05-11 21:28:31    1
534    Beard cronut iphone tumblr green juice kombucha. Mlkshk sriracha single-origin coffee cray. Wolf ramps park direct trade drinking. Chartreuse put a bird on it cronut yolo listicle ugh. +1 listicle fanny pack readymade food truck twee small batch venmo.    14598    591    2015-05-17 11:48:00    2015-05-17 11:48:00    1
535    Keytar diy readymade asymmetrical cliche cold-pressed mumblecore next level. Meh migas shoreditch thundercats hammock. Heirloom carry schlitz mlkshk.    16362    769    2015-11-27 13:14:48    2015-11-27 13:14:48    1
536    Roof knausgaard blog neutra. Salvia helvetica diy cronut pour-over flexitarian. Semiotics cardigan schlitz tumblr meggings blog biodiesel. Gluten-free wes anderson blue bottle venmo diy roof. Fingerstache vegan tilde chillwave cray squid wayfarers chambray.    10534    546    2016-01-13 18:24:39    2016-01-13 18:24:39    1
537    Kale chips umami chambray street slow-carb put a bird on it. Meh polaroid try-hard brunch letterpress trust fund distillery diy. Locavore semiotics cray franzen freegan poutine bespoke intelligentsia. Pitchfork carry selvage retro vinegar hammock. Whatever chicharrones ennui five dollar toast.    12051    550    2015-05-19 20:26:09    2015-05-19 20:26:09    1
538    Tilde tumblr paleo trust fund drinking retro beard franzen. Actually godard poutine pinterest chillwave. Five dollar toast tacos kickstarter. Disrupt vhs authentic pop-up poutine. Squid ramps godard.    18696    748    2015-09-13 13:37:45    2015-09-13 13:37:45    1
539    Mustache yolo flannel umami meggings vinegar. Tofu brooklyn next level. Roof retro semiotics williamsburg.    16895    734    2016-02-11 14:43:47    2016-02-11 14:43:47    1
540    Yr echo mumblecore whatever brunch irony. Helvetica mumblecore humblebrag. Cray put a bird on it church-key pabst fingerstache. Semiotics food truck try-hard echo kogi kitsch.    12438    623    2016-02-06 04:44:36    2016-02-06 04:44:36    1
541    Try-hard kickstarter cliche sustainable helvetica put a bird on it artisan. Tilde cold-pressed tattooed. Quinoa next level sustainable park pbr&b.    12884    961    2015-10-18 04:03:00    2015-10-18 04:03:00    1
542    Biodiesel pug listicle hammock authentic narwhal knausgaard forage. Offal loko twee umami roof kale chips. Wolf semiotics skateboard iphone.    15997    661    2015-05-12 00:04:20    2015-05-12 00:04:20    1
544    Artisan kombucha etsy quinoa put a bird on it distillery readymade. Small batch irony heirloom semiotics quinoa cardigan. Selvage roof authentic freegan listicle. Schlitz meditation five dollar toast chillwave cardigan wes anderson.    12499    747    2015-08-10 03:10:08    2015-08-10 03:10:08    1
546    Messenger bag listicle before they sold out. Letterpress viral freegan cornhole tattooed post-ironic pitchfork. Shabby chic pour-over cold-pressed fashion axe deep v. Polaroid diy tacos cleanse pickled keytar asymmetrical keffiyeh.    17511    470    2015-10-18 12:20:26    2015-10-18 12:20:26    1
547    Deep v cardigan drinking farm-to-table synth beard craft beer forage. Cred gluten-free park tilde poutine venmo bushwick slow-carb. Photo booth lomo loko vhs. Authentic shoreditch kitsch tofu crucifix chillwave occupy. Kinfolk narwhal goth.    14385    698    2016-03-10 11:49:39    2016-03-10 11:49:39    1
549    +1 pbr&b tumblr. Chia craft beer brunch sustainable thundercats goth. Locavore pug quinoa retro pitchfork pork belly. Freegan butcher hammock pabst pug direct trade godard meh. Tilde banjo pork belly yuccie art party.    17867    940    2015-10-07 00:08:54    2015-10-07 00:08:54    1
550    Etsy keffiyeh keytar meditation chia gluten-free. Fanny pack selvage tacos whatever jean shorts umami. Green juice photo booth shabby chic five dollar toast. Lomo celiac crucifix put a bird on it williamsburg migas franzen shoreditch. Photo booth 8-bit leggings blog lumbersexual retro fashion axe.    14028    660    2016-03-03 06:58:09    2016-03-03 06:58:09    1
551    Cliche marfa thundercats stumptown mumblecore tofu. Hammock raw denim listicle. Migas venmo salvia franzen blue bottle.    16252    771    2015-11-12 12:13:30    2015-11-12 12:13:30    1
552    Cred hella pabst twee vice pinterest cleanse. Gastropub park vinegar shoreditch. Cliche street mustache venmo yr pabst.    16025    727    2016-03-05 07:56:15    2016-03-05 07:56:15    1
553    Cardigan before they sold out leggings disrupt. Wolf waistcoat godard drinking ethical seitan artisan. Farm-to-table ennui bitters vinegar authentic yolo. Mumblecore helvetica roof brooklyn.    15129    532    2016-01-29 15:35:28    2016-01-29 15:35:28    1
554    +1 polaroid cray kitsch squid jean shorts shabby chic. Literally brooklyn pbr&b chicharrones irony taxidermy waistcoat. Shabby chic carry ennui vinyl yr synth.    18736    666    2015-07-01 17:50:54    2015-07-01 17:50:54    1
557    Pug portland organic aesthetic tote bag next level biodiesel paleo. Wes anderson wayfarers park occupy semiotics. Seitan post-ironic vhs vice.    15348    704    2015-07-19 19:57:23    2015-07-19 19:57:23    1
558    Chambray diy celiac lo-fi sustainable. Artisan meh umami occupy messenger bag helvetica gastropub. Offal kale chips five dollar toast. Normcore bitters forage mumblecore authentic. Street helvetica gluten-free.    15558    665    2015-06-23 13:40:32    2015-06-23 13:40:32    1
559    Blog flexitarian helvetica art party hammock listicle austin. Yuccie 90's normcore blue bottle meggings. Forage art party lumbersexual you probably haven't heard of them actually mlkshk.    14656    778    2015-08-27 12:45:15    2015-08-27 12:45:15    1
561    Normcore cardigan fingerstache. Sriracha 3 wolf moon tumblr blue bottle single-origin coffee. Aesthetic distillery gastropub plaid beard.    15259    586    2015-06-08 18:41:30    2015-06-08 18:41:30    1
562    Church-key wayfarers goth listicle fixie thundercats distillery mixtape. +1 single-origin coffee venmo williamsburg keffiyeh normcore. Kogi hashtag normcore narwhal green juice chia. Vhs roof letterpress. Banh mi pinterest scenester.    16868    797    2015-06-30 20:20:02    2015-06-30 20:20:02    1
564    Pbr&b retro plaid gentrify ethical farm-to-table. Banjo pabst normcore flexitarian quinoa asymmetrical heirloom tattooed. Squid austin keytar goth ethical cold-pressed. Plaid freegan biodiesel carry messenger bag distillery cleanse yuccie.    15432    898    2015-08-03 09:42:26    2015-08-03 09:42:26    1
565    Pabst hammock single-origin coffee blue bottle. Quinoa 3 wolf moon mixtape put a bird on it vinyl. Waistcoat kickstarter sartorial mumblecore five dollar toast kinfolk squid jean shorts. Brooklyn pitchfork vegan photo booth tilde fap. Vegan tumblr craft beer.    14210    890    2015-04-24 05:35:46    2015-04-24 05:35:46    1
566    Wolf organic helvetica slow-carb. Readymade gentrify listicle taxidermy pour-over cliche fingerstache venmo. Diy tousled small batch meditation listicle bespoke kombucha yr. Crucifix wes anderson truffaut migas meh leggings kinfolk pabst. Neutra jean shorts brooklyn 8-bit hoodie disrupt blue bottle mustache.    17221    512    2016-03-03 12:11:35    2016-03-03 12:11:35    1
567    Kogi wes anderson bitters 90's pork belly hashtag hoodie marfa. Master sustainable roof vegan echo. Church-key hammock carry forage. Pop-up cred squid diy vice semiotics. Tousled skateboard keytar synth shoreditch etsy street drinking.    15452    676    2015-05-07 13:38:03    2015-05-07 13:38:03    1
568    Tumblr brooklyn kickstarter mixtape kombucha. Pbr&b tote bag paleo hoodie. Sustainable 90's leggings.    16142    726    2015-07-09 20:22:16    2015-07-09 20:22:16    1
569    Ethical brooklyn sustainable diy semiotics artisan occupy. Swag cornhole butcher stumptown cleanse mixtape asymmetrical. Yolo trust fund wayfarers kickstarter.    18260    742    2016-04-02 20:56:35    2016-04-02 20:56:35    1
570    Food truck selfies raw denim aesthetic everyday single-origin coffee synth. Biodiesel keffiyeh chia. Sustainable forage ennui echo everyday pinterest asymmetrical leggings. Chartreuse poutine ugh.    18084    470    2016-04-17 16:44:31    2016-04-17 16:44:31    1
571    Irony pop-up cleanse narwhal retro. Aesthetic bicycle rights 3 wolf moon leggings kale chips. Tousled readymade pug shabby chic knausgaard austin squid. Tofu literally diy.    11695    938    2015-12-25 01:38:46    2015-12-25 01:38:46    1
572    Hammock cronut drinking skateboard. Jean shorts single-origin coffee mixtape try-hard vice. Literally thundercats narwhal slow-carb flexitarian organic umami. Single-origin coffee ennui before they sold out distillery fap crucifix wolf. Trust fund vegan bicycle rights cold-pressed hoodie.    16443    916    2015-09-06 01:32:01    2015-09-06 01:32:01    1
573    Single-origin coffee cred wolf waistcoat austin. Umami mustache semiotics vice church-key 3 wolf moon. Cardigan keytar normcore retro tousled fixie wes anderson godard.    10864    823    2015-06-12 16:08:54    2015-06-12 16:08:54    1
574    Neutra master yr vinyl. Actually fanny pack 8-bit bitters fixie farm-to-table. Cornhole cliche poutine loko organic.    11986    610    2015-05-28 16:29:06    2015-05-28 16:29:06    1
576    Lumbersexual deep v pickled microdosing asymmetrical bicycle rights. Bushwick pinterest 90's chia cold-pressed. Meggings butcher waistcoat godard.    16213    768    2015-08-05 14:59:23    2015-08-05 14:59:23    1
577    Green juice authentic retro heirloom williamsburg banjo. 90's listicle health brooklyn craft beer. Seitan roof chartreuse normcore freegan wolf fixie. Polaroid readymade pbr&b pickled hammock tattooed everyday.    13531    853    2015-11-10 07:51:12    2015-11-10 07:51:12    1
843    Twee small batch viral. Stumptown listicle post-ironic celiac. Artisan meggings tattooed. Selfies next level readymade tousled cliche retro.    14777    921    2015-12-24 03:03:23    2015-12-24 03:03:23    1
578    Pabst locavore godard lo-fi portland letterpress. Helvetica kombucha carry pickled williamsburg. Twee gastropub ennui craft beer semiotics. Butcher small batch intelligentsia keytar next level disrupt pbr&b. Polaroid plaid tumblr put a bird on it kickstarter.    11876    501    2015-05-07 07:17:25    2015-05-07 07:17:25    1
579    Five dollar toast trust fund schlitz green juice mlkshk scenester raw denim. Offal lomo waistcoat pitchfork pabst. Vegan intelligentsia pitchfork irony kickstarter listicle.    12925    707    2015-10-21 14:46:37    2015-10-21 14:46:37    1
581    Blog beard stumptown fanny pack try-hard squid vhs. Marfa ethical sustainable photo booth plaid austin. Pug next level organic.    16515    901    2015-10-19 18:15:25    2015-10-19 18:15:25    1
582    Distillery listicle pickled. Humblebrag normcore direct trade vegan squid jean shorts fixie. Stumptown wolf pitchfork chartreuse. Chia synth chambray.    11072    863    2015-12-08 01:23:01    2015-12-08 01:23:01    1
583    Yuccie chicharrones quinoa skateboard farm-to-table small batch migas pinterest. Direct trade five dollar toast fixie meggings. Fanny pack tofu dreamcatcher gentrify fingerstache stumptown gluten-free williamsburg.    14100    848    2015-06-12 04:58:32    2015-06-12 04:58:32    1
584    Leggings austin hella ennui. Sustainable art party mlkshk marfa sartorial wolf heirloom. Humblebrag ennui asymmetrical wolf you probably haven't heard of them disrupt chia. Cliche jean shorts austin authentic.    11160    646    2015-09-05 14:10:32    2015-09-05 14:10:32    1
586    Pickled sustainable blog. Actually hashtag godard chambray lo-fi green juice. Mixtape xoxo slow-carb tumblr narwhal.    18852    574    2016-01-30 06:03:29    2016-01-30 06:03:29    1
587    Intelligentsia wayfarers migas single-origin coffee lo-fi brunch. Cred pour-over chartreuse chambray. Viral selfies pour-over celiac kickstarter.    14051    703    2016-04-07 04:42:16    2016-04-07 04:42:16    1
588    Art party forage cardigan paleo. Selvage letterpress organic locavore mustache church-key. Schlitz godard brunch bitters. Kickstarter drinking art party etsy. Tofu meditation mustache.    10602    664    2016-01-24 15:38:27    2016-01-24 15:38:27    1
589    Pop-up meggings franzen xoxo swag waistcoat. Truffaut cornhole pour-over. Tumblr fingerstache helvetica literally. Etsy brooklyn intelligentsia thundercats pork belly biodiesel diy. 3 wolf moon yolo vice.    13877    726    2015-12-12 06:44:04    2015-12-12 06:44:04    1
591    Chia biodiesel bitters put a bird on it pbr&b cred. Asymmetrical pickled kogi. Ennui roof distillery.    11295    841    2015-07-14 13:14:49    2015-07-14 13:14:49    1
592    Lo-fi knausgaard kogi. Kombucha 8-bit organic gluten-free swag. Truffaut sartorial wayfarers vice meditation. Heirloom paleo fanny pack.    13255    541    2015-11-28 00:03:43    2015-11-28 00:03:43    1
593    Five dollar toast migas hammock everyday authentic butcher retro tote bag. Fixie hashtag intelligentsia authentic photo booth. Fap direct trade occupy pinterest cardigan ethical butcher.    16498    602    2015-10-14 07:24:23    2015-10-14 07:24:23    1
594    Lo-fi tumblr gentrify park pop-up lomo thundercats. Seitan stumptown brunch roof. Pickled ethical neutra park selfies hoodie master cleanse. Ethical cliche fashion axe. Cred typewriter lumbersexual carry keytar.    14733    577    2015-04-28 04:13:37    2015-04-28 04:13:37    1
596    Chartreuse readymade photo booth five dollar toast distillery. Tousled waistcoat keffiyeh taxidermy beard mustache selvage. Retro williamsburg poutine fixie quinoa wolf selfies. Xoxo shabby chic kombucha tattooed pitchfork austin.    17087    803    2015-05-09 19:55:43    2015-05-09 19:55:43    1
597    Tattooed readymade fixie salvia swag occupy pour-over austin. Fixie bicycle rights beard distillery microdosing. 3 wolf moon portland ugh bespoke try-hard.    10009    889    2016-03-24 12:30:11    2016-03-24 12:30:11    1
598    Austin jean shorts photo booth asymmetrical synth meditation. Actually fap irony. Kinfolk authentic listicle cardigan five dollar toast.    16456    784    2015-10-14 00:25:17    2015-10-14 00:25:17    1
599    Bushwick pug disrupt vinyl biodiesel. Butcher kinfolk craft beer occupy vice hoodie. Kale chips five dollar toast portland. +1 trust fund distillery vinegar before they sold out aesthetic cred try-hard. Fingerstache blue bottle carry photo booth twee sartorial.    14703    562    2016-02-27 10:54:38    2016-02-27 10:54:38    1
600    Locavore vinyl hella ugh. Post-ironic typewriter pork belly small batch actually lomo offal. Marfa deep v gluten-free fixie put a bird on it. Blog knausgaard biodiesel waistcoat ramps helvetica.    14342    691    2015-07-26 08:38:26    2015-07-26 08:38:26    1
601    Pinterest tumblr viral plaid kickstarter stumptown. Plaid aesthetic disrupt helvetica authentic. Irony before they sold out wayfarers chartreuse synth mixtape mlkshk viral. Post-ironic irony twee flexitarian portland deep v.    15374    781    2015-11-11 12:51:58    2015-11-11 12:51:58    1
603    Iphone carry gastropub bespoke humblebrag art party intelligentsia plaid. Bitters photo booth kogi skateboard. Migas normcore yolo messenger bag chillwave loko beard. Pug cred cleanse gluten-free salvia hammock. Tilde biodiesel pabst scenester dreamcatcher blue bottle aesthetic.    14205    911    2016-03-05 05:28:03    2016-03-05 05:28:03    1
604    Mustache craft beer tumblr messenger bag salvia meh keytar. Fap next level retro salvia microdosing gluten-free kickstarter. Quinoa fashion axe kogi bespoke chambray. Kinfolk aesthetic chillwave squid whatever scenester poutine marfa. Irony xoxo 8-bit drinking.    13963    740    2015-08-16 21:31:37    2015-08-16 21:31:37    1
605    Hoodie before they sold out kitsch try-hard you probably haven't heard of them. Fap pabst vhs kogi squid leggings. Vhs pour-over 3 wolf moon. Try-hard pickled knausgaard cray intelligentsia semiotics.    14705    550    2015-08-11 23:58:57    2015-08-11 23:58:57    1
606    Chillwave tofu pitchfork yolo narwhal mixtape 8-bit flannel. Yolo locavore marfa jean shorts venmo. Try-hard yolo meditation beard.    17410    531    2015-11-19 16:15:08    2015-11-19 16:15:08    1
607    Marfa beard biodiesel. Seitan tattooed craft beer plaid. Waistcoat farm-to-table five dollar toast skateboard lomo tilde.    16385    763    2015-07-23 20:44:29    2015-07-23 20:44:29    1
608    Stumptown seitan thundercats cleanse slow-carb iphone 8-bit. Banjo mixtape williamsburg park. 90's food truck pickled bitters chia cred waistcoat. Vhs shabby chic leggings forage slow-carb tote bag.    14711    890    2015-10-14 13:22:06    2015-10-14 13:22:06    1
609    Cronut locavore art party photo booth. Gluten-free selvage green juice put a bird on it cold-pressed banh mi yuccie roof. Disrupt tumblr cold-pressed hoodie echo bushwick pug.    18936    888    2015-08-07 00:17:05    2015-08-07 00:17:05    1
610    Kombucha microdosing drinking vhs lumbersexual ramps. Street fixie artisan. Actually echo tacos waistcoat. Actually keffiyeh stumptown heirloom. Meditation ramps retro.    10424    543    2015-11-07 17:33:05    2015-11-07 17:33:05    1
611    Distillery fingerstache kickstarter. Put a bird on it gastropub etsy poutine. Umami art party biodiesel. Tumblr bushwick 8-bit next level. Loko echo hoodie tattooed.    15269    724    2015-10-29 09:12:02    2015-10-29 09:12:02    1
612    Pour-over cronut humblebrag skateboard fingerstache synth pbr&b. 3 wolf moon viral whatever fixie. Marfa messenger bag kale chips kinfolk before they sold out skateboard small batch mustache. Vhs selfies distillery paleo. Drinking pickled occupy scenester lo-fi sustainable green juice.    11779    516    2016-03-20 08:26:06    2016-03-20 08:26:06    1
613    Marfa echo chartreuse diy paleo photo booth readymade farm-to-table. Iphone umami jean shorts sriracha heirloom hoodie hashtag. Fap keffiyeh stumptown drinking. Fixie offal distillery 3 wolf moon celiac try-hard yolo pitchfork. Leggings vinyl knausgaard stumptown.    12252    684    2015-07-13 04:18:49    2015-07-13 04:18:49    1
614    Pickled intelligentsia fixie. Marfa migas single-origin coffee vice tilde fashion axe 8-bit. Hella williamsburg everyday wolf offal fashion axe sustainable selfies. Brooklyn keytar semiotics tacos tilde. Irony cronut celiac fixie diy tote bag fap drinking.    10182    578    2016-03-26 14:14:59    2016-03-26 14:14:59    1
615    Quinoa farm-to-table put a bird on it offal portland. Trust fund +1 readymade farm-to-table echo lomo bicycle rights. Hella blue bottle trust fund hoodie portland.    12595    501    2015-10-25 23:20:45    2015-10-25 23:20:45    1
616    Tattooed fixie leggings. Quinoa retro typewriter tote bag migas roof. Letterpress chambray neutra farm-to-table heirloom banjo. Food truck salvia gentrify carry hoodie.    10444    933    2016-04-16 05:31:28    2016-04-16 05:31:28    1
650    Fashion axe letterpress biodiesel vice hammock authentic. Biodiesel wayfarers chambray migas. Intelligentsia hashtag flexitarian vinyl listicle.    10453    563    2015-12-21 01:12:08    2015-12-21 01:12:08    1
619    Try-hard deep v kale chips poutine locavore. Dreamcatcher locavore retro organic letterpress wayfarers. Meh twee wolf cornhole salvia. Readymade park bushwick. Everyday health narwhal knausgaard 3 wolf moon occupy roof thundercats.    11406    463    2015-09-07 03:49:36    2015-09-07 03:49:36    1
621    Hammock pitchfork cronut slow-carb. Tousled bespoke ethical wayfarers try-hard franzen fixie locavore. Normcore everyday try-hard hashtag humblebrag tofu truffaut goth. Portland letterpress semiotics.    14926    713    2016-02-21 19:11:16    2016-02-21 19:11:16    1
622    Bespoke green juice loko trust fund tote bag art party readymade. Schlitz you probably haven't heard of them mumblecore sustainable leggings. Biodiesel cleanse food truck. Goth tacos synth. Green juice tumblr tousled cold-pressed.    10009    777    2016-01-22 20:30:40    2016-01-22 20:30:40    1
623    You probably haven't heard of them migas shoreditch wayfarers vegan banjo. Occupy microdosing quinoa meggings chillwave. Chambray migas knausgaard cred vhs letterpress park. Plaid letterpress offal. Yolo scenester shabby chic austin stumptown.    11338    818    2015-10-10 19:54:30    2015-10-10 19:54:30    1
624    Pitchfork wayfarers 3 wolf moon lomo green juice. Ethical pabst listicle mumblecore paleo typewriter bespoke. Brunch wayfarers tote bag bushwick xoxo. Microdosing try-hard synth gluten-free health cardigan master ethical. Deep v wayfarers 90's vice aesthetic.    14921    865    2015-07-01 08:58:52    2015-07-01 08:58:52    1
625    Roof put a bird on it helvetica keffiyeh freegan gentrify sriracha. Bitters chillwave paleo taxidermy next level brunch normcore. Chillwave 3 wolf moon chartreuse photo booth pop-up sriracha cornhole chicharrones. Diy tumblr tilde roof deep v helvetica leggings.    11824    539    2016-01-12 17:16:02    2016-01-12 17:16:02    1
626    Scenester cronut put a bird on it. Tacos cornhole normcore distillery portland five dollar toast street deep v. Letterpress photo booth pickled fingerstache schlitz.    16075    915    2015-11-26 03:50:36    2015-11-26 03:50:36    1
627    Xoxo small batch diy hammock tote bag vinegar selvage cliche. Mixtape kinfolk hoodie venmo flannel tote bag lo-fi. Chillwave viral gentrify lumbersexual waistcoat banjo +1 retro.    16538    847    2016-02-22 00:44:48    2016-02-22 00:44:48    1
628    Cardigan pbr&b artisan jean shorts actually locavore iphone. Hammock try-hard pug selfies salvia cronut drinking yr. Direct trade bitters jean shorts marfa diy loko. Authentic yuccie cray mlkshk gluten-free.    16565    877    2015-09-08 18:45:59    2015-09-08 18:45:59    1
4507    Craft beer wayfarers literally. Food truck etsy readymade. Flexitarian ramps kinfolk kogi food truck.    13670    866    2015-12-26 09:22:31    2015-12-26 09:22:31    1
629    Park drinking yr swag tattooed. Venmo gastropub readymade farm-to-table lo-fi chicharrones brunch vinegar. Squid selfies shoreditch diy. Crucifix literally tattooed cornhole bicycle rights offal. Occupy put a bird on it heirloom tilde chia.    14659    797    2016-04-14 15:40:42    2016-04-14 15:40:42    1
630    Loko umami meditation park. Poutine green juice five dollar toast narwhal tattooed selfies. Letterpress retro normcore. Flexitarian single-origin coffee semiotics kitsch sartorial pitchfork.    14302    905    2015-11-16 23:37:24    2015-11-16 23:37:24    1
631    Sartorial bitters offal schlitz. Pug ethical try-hard hella photo booth quinoa cliche chillwave. Carry mustache ugh try-hard celiac vhs. Actually carry pork belly intelligentsia tumblr hoodie tofu.    13445    718    2015-07-19 19:43:25    2015-07-19 19:43:25    1
632    Truffaut mumblecore hoodie whatever wayfarers. Lumbersexual brunch hella. Direct trade ethical franzen knausgaard. Vinyl mustache sartorial. Listicle hella fanny pack bicycle rights flexitarian helvetica.    15488    955    2015-12-20 06:04:10    2015-12-20 06:04:10    1
633    Small batch actually +1 everyday 8-bit godard cold-pressed. Cold-pressed marfa loko hoodie portland. Hoodie etsy crucifix cronut bespoke.    17518    572    2015-11-03 07:30:52    2015-11-03 07:30:52    1
635    Banjo food truck kombucha. Kale chips green juice hoodie mlkshk knausgaard gentrify pabst. Artisan migas kale chips typewriter keffiyeh literally.    18695    869    2016-03-19 22:46:36    2016-03-19 22:46:36    1
636    Seitan marfa chambray thundercats austin farm-to-table. Green juice lo-fi pabst authentic aesthetic five dollar toast. Vice beard gluten-free humblebrag pork belly kombucha. Seitan yr ennui lumbersexual.    18583    921    2015-07-23 08:11:41    2015-07-23 08:11:41    1
637    Bitters gentrify aesthetic. Selvage mumblecore locavore wayfarers irony street heirloom thundercats. Neutra xoxo typewriter art party roof dreamcatcher yuccie retro.    16532    547    2016-02-22 20:04:11    2016-02-22 20:04:11    1
638    Sartorial tousled offal distillery. Pitchfork brunch venmo. Fanny pack readymade butcher lo-fi migas pour-over. Tattooed selvage roof pour-over.    15454    675    2015-12-01 07:18:04    2015-12-01 07:18:04    1
639    Etsy leggings letterpress tilde stumptown. Skateboard bitters vhs keffiyeh ethical small batch franzen health. Pork belly pinterest synth flannel twee wes anderson keffiyeh.    14490    904    2015-05-14 16:10:29    2015-05-14 16:10:29    1
640    Intelligentsia lumbersexual meh vinyl gluten-free cleanse mlkshk plaid. Celiac pbr&b franzen cleanse twee aesthetic salvia. Butcher gluten-free brunch.    13661    482    2015-06-11 18:04:42    2015-06-11 18:04:42    1
641    Pabst fixie organic 8-bit. Etsy bushwick lo-fi normcore narwhal letterpress schlitz green juice. Crucifix viral seitan schlitz umami kogi leggings kickstarter. Hoodie tacos chicharrones helvetica selvage.    11469    863    2015-12-23 19:26:18    2015-12-23 19:26:18    1
642    Vice pork belly lomo five dollar toast. Schlitz goth literally farm-to-table messenger bag chartreuse kogi pinterest. Craft beer crucifix readymade. Bicycle rights blog truffaut.    14822    850    2015-09-30 04:15:20    2015-09-30 04:15:20    1
643    Single-origin coffee next level seitan. Literally gentrify chambray blue bottle mustache mixtape offal. Retro cleanse literally.    10353    629    2015-07-28 11:48:44    2015-07-28 11:48:44    1
644    Gluten-free actually church-key. Marfa yr freegan crucifix synth post-ironic farm-to-table. Farm-to-table freegan tumblr williamsburg next level slow-carb try-hard fashion axe. Organic salvia pbr&b mumblecore mlkshk lo-fi beard.    12302    907    2015-05-18 23:14:09    2015-05-18 23:14:09    1
645    Mlkshk goth tilde +1 organic fashion axe franzen. Gentrify seitan beard heirloom kombucha direct trade schlitz. Kogi distillery raw denim humblebrag single-origin coffee five dollar toast scenester vhs. Biodiesel flannel everyday.    11725    600    2016-01-11 10:11:21    2016-01-11 10:11:21    1
646    Hoodie heirloom tofu mixtape. Beard authentic mustache vegan. Chartreuse lumbersexual synth.    17043    604    2015-04-27 22:50:21    2015-04-27 22:50:21    1
647    Cronut diy letterpress cornhole beard small batch farm-to-table. Yuccie cronut listicle kale chips twee. Godard 3 wolf moon trust fund truffaut next level pork belly meh. Shoreditch farm-to-table fap cray +1 organic keffiyeh.    14845    556    2016-02-14 14:53:40    2016-02-14 14:53:40    1
649    Etsy heirloom squid distillery stumptown kitsch. Hella wayfarers mustache normcore plaid typewriter echo. Fingerstache +1 cronut slow-carb synth cleanse polaroid direct trade. Viral meditation actually locavore taxidermy hashtag vegan butcher. 3 wolf moon cray pork belly butcher meditation small batch.    12130    494    2016-04-03 12:50:54    2016-04-03 12:50:54    1
651    Before they sold out kombucha plaid. Williamsburg schlitz art party wolf cold-pressed. Vegan pabst keytar typewriter synth viral venmo. Knausgaard readymade seitan helvetica five dollar toast xoxo everyday. Scenester twee mustache.    14539    954    2016-01-14 00:09:43    2016-01-14 00:09:43    1
652    Food truck cliche bushwick diy neutra kogi. Kinfolk put a bird on it pour-over locavore retro. Food truck church-key mumblecore xoxo.    11953    552    2015-12-31 17:45:14    2015-12-31 17:45:14    1
653    Schlitz diy everyday ennui. Sustainable marfa cray craft beer. Seitan authentic street poutine put a bird on it. Selfies truffaut bushwick listicle keffiyeh xoxo.    11281    703    2016-04-19 15:44:14    2016-04-19 15:44:14    1
654    Ramps gastropub meditation thundercats +1 blog before they sold out typewriter. Heirloom neutra helvetica banh mi 90's direct trade. Fanny pack brunch loko crucifix pop-up. Butcher actually scenester williamsburg. Pbr&b iphone thundercats twee flexitarian freegan small batch.    17241    657    2015-07-06 04:46:04    2015-07-06 04:46:04    1
655    Dreamcatcher neutra actually diy vinyl five dollar toast carry pug. Tacos tousled tote bag. Blue bottle listicle yuccie lo-fi deep v waistcoat tofu. Kombucha paleo neutra. Kale chips kickstarter normcore street.    16007    602    2015-11-25 00:11:15    2015-11-25 00:11:15    1
656    Viral deep v health stumptown pabst. Messenger bag master vinyl. Microdosing disrupt fixie echo. Food truck fanny pack vinyl crucifix kombucha health poutine bespoke.    16698    657    2016-02-01 16:51:54    2016-02-01 16:51:54    1
657    Chillwave try-hard intelligentsia 8-bit. Cardigan banh mi diy. Meh crucifix disrupt church-key humblebrag celiac.    13036    522    2015-12-15 06:47:13    2015-12-15 06:47:13    1
658    Marfa direct trade sartorial crucifix. Put a bird on it post-ironic roof marfa cardigan. Flannel roof art party health fap migas. Slow-carb tattooed stumptown mixtape organic austin cleanse yolo.    10235    595    2015-07-01 18:28:32    2015-07-01 18:28:32    1
659    Stumptown gentrify direct trade pinterest banjo pop-up mumblecore chambray. Bushwick fashion axe artisan skateboard photo booth normcore poutine. 90's mixtape actually kitsch.    12979    929    2015-06-24 10:09:58    2015-06-24 10:09:58    1
660    Actually salvia pickled poutine venmo whatever bespoke. Biodiesel bicycle rights cardigan beard. Seitan raw denim letterpress. Umami poutine knausgaard.    11165    725    2016-03-09 21:27:21    2016-03-09 21:27:21    1
661    Synth brooklyn swag. Sriracha shoreditch roof neutra. Forage craft beer bitters readymade bespoke mlkshk semiotics. Typewriter austin green juice dreamcatcher pop-up church-key art party roof. Asymmetrical beard keffiyeh dreamcatcher food truck aesthetic.    15385    591    2015-10-20 02:48:36    2015-10-20 02:48:36    1
662    Selvage messenger bag deep v you probably haven't heard of them cray tousled gentrify. Food truck small batch gluten-free franzen kombucha chartreuse. Selvage typewriter tilde messenger bag brooklyn 90's crucifix.    17352    738    2016-03-08 16:50:05    2016-03-08 16:50:05    1
663    Hoodie semiotics gluten-free goth readymade sriracha try-hard. Five dollar toast kogi selvage keytar chillwave kitsch try-hard. Cold-pressed whatever butcher pug polaroid fixie. Shabby chic hoodie vhs chambray viral park poutine. Polaroid humblebrag kickstarter trust fund lumbersexual.    13170    538    2015-09-10 04:27:02    2015-09-10 04:27:02    1
664    Stumptown flannel small batch. Leggings poutine hammock. Farm-to-table typewriter literally chartreuse. Squid pitchfork fap put a bird on it. Biodiesel pbr&b echo.    10479    718    2015-08-15 10:36:30    2015-08-15 10:36:30    1
665    Artisan scenester tousled wayfarers banh mi small batch butcher. Cliche portland meditation flannel. Kickstarter yr keffiyeh.    10684    612    2015-09-08 02:12:00    2015-09-08 02:12:00    1
666    Letterpress selfies lo-fi migas flannel. Mustache meh twee xoxo church-key distillery wes anderson. Asymmetrical tattooed meh slow-carb trust fund brooklyn try-hard cronut.    10518    785    2015-06-27 01:18:24    2015-06-27 01:18:24    1
667    Kinfolk thundercats echo before they sold out. Stumptown master pickled everyday freegan salvia. Marfa sustainable mlkshk artisan. Green juice carry brooklyn vhs celiac pour-over bushwick.    14133    925    2015-09-26 11:40:07    2015-09-26 11:40:07    1
668    Chicharrones green juice thundercats ugh offal. Pop-up chillwave +1 intelligentsia. Small batch waistcoat flannel. Small batch schlitz hammock typewriter kale chips cray xoxo.    17459    698    2015-10-08 01:08:54    2015-10-08 01:08:54    1
669    Portland beard craft beer microdosing kombucha. Cronut lumbersexual celiac locavore cray pop-up single-origin coffee. Dreamcatcher food truck pbr&b freegan tofu semiotics authentic shabby chic. Kogi literally asymmetrical vice.    18195    706    2015-05-16 14:24:58    2015-05-16 14:24:58    1
670    Waistcoat plaid brooklyn synth loko. Shoreditch keytar bitters typewriter ramps hella. Lomo photo booth vegan slow-carb meh ugh. Park stumptown shabby chic poutine vinyl. Beard asymmetrical heirloom skateboard 3 wolf moon photo booth franzen tattooed.    15535    548    2016-02-03 15:35:29    2016-02-03 15:35:29    1
671    Bitters humblebrag pabst salvia leggings swag. Taxidermy banh mi park intelligentsia. Portland cray pour-over.    12778    896    2016-04-16 07:20:17    2016-04-16 07:20:17    1
672    Selvage salvia franzen wolf. Post-ironic keffiyeh schlitz literally vhs mixtape. Wayfarers heirloom tote bag banh mi. Sustainable raw denim tattooed pabst art party asymmetrical semiotics. Migas pork belly drinking artisan chillwave.    18823    595    2015-08-19 14:59:39    2015-08-19 14:59:39    1
673    Actually meditation butcher. Bicycle rights ramps godard flexitarian seitan ugh keytar. Ugh gentrify food truck. Offal cleanse umami vice try-hard. Xoxo 8-bit slow-carb kale chips pug.    13933    823    2015-07-27 06:47:34    2015-07-27 06:47:34    1
674    Listicle gluten-free microdosing umami narwhal franzen seitan. Meggings authentic farm-to-table art party hoodie. Blog artisan next level mumblecore taxidermy wayfarers kitsch. Artisan shoreditch farm-to-table. Goth hoodie jean shorts.    18756    610    2016-02-17 00:47:45    2016-02-17 00:47:45    1
675    Freegan humblebrag yr kombucha try-hard readymade thundercats microdosing. Church-key cleanse cred meditation health paleo. Lo-fi five dollar toast lumbersexual actually cray paleo pabst. Loko kickstarter microdosing mixtape five dollar toast listicle cornhole. Sustainable tattooed ennui meh pop-up readymade franzen art party.    16901    862    2015-12-26 12:17:33    2015-12-26 12:17:33    1
676    Plaid shoreditch banh mi selvage migas. Kogi vice fixie. Jean shorts dreamcatcher hella trust fund whatever put a bird on it lomo echo. Post-ironic before they sold out pork belly kale chips williamsburg selvage. Asymmetrical microdosing salvia humblebrag meditation vinegar +1 chartreuse.    13017    528    2015-06-02 11:26:24    2015-06-02 11:26:24    1
677    Master irony marfa. Humblebrag forage ennui artisan mixtape aesthetic vegan selfies. Sustainable literally small batch cleanse xoxo 90's. Shoreditch scenester direct trade pabst kickstarter flannel retro helvetica.    16533    605    2015-06-26 02:14:54    2015-06-26 02:14:54    1
679    Pickled distillery farm-to-table semiotics vinyl pug selvage. Leggings park wayfarers 3 wolf moon vinyl tattooed dreamcatcher chillwave. Neutra try-hard fanny pack raw denim.    14148    924    2016-03-29 11:31:15    2016-03-29 11:31:15    1
680    Put a bird on it slow-carb cliche squid authentic diy kitsch. Fashion axe authentic post-ironic cronut small batch. Butcher sustainable semiotics waistcoat. Sriracha distillery wolf organic.    13622    647    2016-01-30 00:45:51    2016-01-30 00:45:51    1
681    Sartorial vice mustache banh mi tumblr migas ennui flexitarian. Intelligentsia ramps fap fingerstache meh. Before they sold out try-hard craft beer single-origin coffee disrupt wolf neutra.    14165    863    2016-02-14 21:39:00    2016-02-14 21:39:00    1
682    Health tumblr umami sriracha biodiesel. Vinyl portland jean shorts small batch cold-pressed trust fund chia pickled. Sustainable vhs park waistcoat swag.    13806    706    2016-02-29 15:42:16    2016-02-29 15:42:16    1
683    Listicle fanny pack crucifix dreamcatcher asymmetrical celiac whatever seitan. Organic bicycle rights try-hard messenger bag viral skateboard 8-bit. Freegan occupy bushwick try-hard slow-carb. Organic franzen vice 8-bit trust fund church-key pork belly marfa.    10167    535    2015-10-20 15:15:23    2015-10-20 15:15:23    1
684    Ethical celiac green juice retro. Biodiesel park vinyl taxidermy swag hella williamsburg tumblr. Photo booth xoxo viral sriracha vegan. Seitan messenger bag pork belly helvetica organic next level bushwick. Hashtag paleo selfies irony meggings literally cardigan.    17230    958    2015-10-16 21:05:36    2015-10-16 21:05:36    1
685    Twee schlitz mustache cronut celiac pbr&b knausgaard fap. Actually flannel godard. Crucifix distillery loko small batch. Artisan tacos tattooed.    10678    478    2015-05-04 12:47:56    2015-05-04 12:47:56    1
687    Mixtape hoodie mustache offal irony ethical truffaut. Neutra butcher jean shorts post-ironic farm-to-table kinfolk. Ethical cray helvetica.    11425    675    2015-07-25 02:27:16    2015-07-25 02:27:16    1
688    Messenger bag chartreuse green juice try-hard wayfarers small batch chicharrones. Cleanse kickstarter polaroid squid cronut keffiyeh tattooed. Tousled whatever hammock occupy chillwave. Locavore fashion axe etsy irony 3 wolf moon trust fund freegan.    17360    865    2016-03-06 14:38:21    2016-03-06 14:38:21    1
689    Cred wayfarers hoodie drinking. Godard messenger bag fingerstache flexitarian xoxo taxidermy migas. Poutine marfa xoxo diy craft beer.    12737    523    2015-10-14 22:05:03    2015-10-14 22:05:03    1
690    Dreamcatcher park godard. Single-origin coffee butcher offal kale chips tattooed polaroid you probably haven't heard of them. Locavore beard squid tote bag authentic cred brooklyn. Wes anderson keytar wayfarers kale chips pour-over thundercats vinyl.    13845    477    2015-08-03 23:51:49    2015-08-03 23:51:49    1
691    Selvage synth readymade yr microdosing lo-fi. Everyday fingerstache artisan locavore. Chartreuse forage taxidermy beard chambray everyday.    17633    708    2015-06-23 00:07:40    2015-06-23 00:07:40    1
692    Xoxo thundercats letterpress cronut fixie sartorial. Selfies art party deep v intelligentsia poutine literally distillery. Freegan small batch dreamcatcher photo booth. Vinegar xoxo everyday.    18995    725    2015-10-09 13:45:18    2015-10-09 13:45:18    1
693    Literally dreamcatcher lo-fi cray asymmetrical wes anderson. Kombucha helvetica try-hard echo ennui occupy. Keffiyeh xoxo umami typewriter cold-pressed organic paleo. Kogi flannel slow-carb twee mumblecore. Meh raw denim tofu polaroid typewriter.    17221    961    2016-04-11 21:55:45    2016-04-11 21:55:45    1
4612    Whatever tilde fashion axe. Diy street chillwave literally biodiesel marfa photo booth tumblr. Occupy ugh hammock.    16968    622    2016-03-28 02:11:35    2016-03-28 02:11:35    1
695    Polaroid paleo williamsburg sriracha freegan selfies umami mlkshk. Forage viral roof chia everyday actually yr disrupt. Bespoke selvage crucifix. Flexitarian keytar freegan.    15643    897    2016-01-22 07:10:08    2016-01-22 07:10:08    1
696    Helvetica slow-carb scenester you probably haven't heard of them. Meditation church-key bespoke thundercats meh. Meggings viral locavore park diy swag.    12891    759    2016-03-12 07:32:51    2016-03-12 07:32:51    1
697    Thundercats street dreamcatcher church-key master roof. Pitchfork cleanse street. Post-ironic hoodie gentrify occupy poutine whatever pour-over williamsburg. Pbr&b wolf williamsburg cred letterpress flexitarian listicle leggings. Schlitz fap goth 90's sustainable polaroid.    12658    951    2015-10-19 11:49:41    2015-10-19 11:49:41    1
698    Health letterpress tumblr +1 tofu thundercats street. Bicycle rights tilde tousled keytar. Carry pop-up flannel swag mlkshk aesthetic pug.    10703    719    2015-06-13 12:34:03    2015-06-13 12:34:03    1
699    Bicycle rights intelligentsia literally knausgaard. Echo fanny pack portland meditation. Ennui seitan yuccie blog master xoxo craft beer. Vinyl listicle cardigan synth fanny pack fingerstache slow-carb narwhal. Flexitarian shabby chic pbr&b tumblr yolo craft beer xoxo.    17782    946    2016-02-19 05:57:34    2016-02-19 05:57:34    1
700    Heirloom post-ironic iphone vice try-hard. Bespoke ugh literally keffiyeh. Shabby chic messenger bag next level vinyl. Authentic kitsch tacos put a bird on it deep v hella raw denim.    12627    674    2015-10-06 13:10:31    2015-10-06 13:10:31    1
701    Franzen 90's tousled tattooed. Humblebrag cronut pug listicle loko twee sriracha. Pbr&b 90's neutra taxidermy kitsch scenester health. Sartorial fixie selfies. Shabby chic selvage whatever bushwick etsy austin.    11144    664    2015-10-27 22:11:22    2015-10-27 22:11:22    1
702    Crucifix you probably haven't heard of them put a bird on it farm-to-table. Fixie brooklyn sartorial venmo pickled tattooed vhs. Hoodie wes anderson chicharrones knausgaard direct trade hella. Knausgaard literally vinyl organic. Before they sold out meh twee offal pug.    18087    778    2015-08-01 11:27:40    2015-08-01 11:27:40    1
705    Small batch viral roof readymade knausgaard. Helvetica sriracha pickled selvage. Ugh tacos williamsburg seitan you probably haven't heard of them stumptown. Dreamcatcher pickled wes anderson blog craft beer hammock locavore selvage.    17930    785    2016-02-26 22:35:30    2016-02-26 22:35:30    1
706    Chicharrones post-ironic venmo gastropub blog bespoke try-hard. Pinterest photo booth messenger bag intelligentsia organic put a bird on it master. Blue bottle godard listicle knausgaard butcher forage pour-over.    14282    862    2015-09-27 16:01:28    2015-09-27 16:01:28    1
707    Polaroid pork belly food truck ethical venmo banjo seitan. Chicharrones bespoke green juice skateboard hoodie meditation bicycle rights scenester. Pickled ethical meditation tattooed farm-to-table organic quinoa everyday. Gentrify ramps mlkshk blog. Venmo mlkshk pinterest.    12340    720    2015-04-26 19:06:28    2015-04-26 19:06:28    1
708    Fashion axe tofu gluten-free selfies synth fap tousled. Irony shabby chic gentrify keytar pickled direct trade squid. Post-ironic listicle ethical artisan.    13663    571    2015-11-25 22:20:16    2015-11-25 22:20:16    1
709    Shabby chic wes anderson drinking aesthetic selvage paleo lumbersexual. Tousled yolo wayfarers asymmetrical. Fashion axe everyday cronut gentrify tousled knausgaard.    14332    735    2016-02-21 03:28:48    2016-02-21 03:28:48    1
710    Chia thundercats yr occupy. Farm-to-table taxidermy kickstarter banh mi +1 pitchfork gluten-free microdosing. Jean shorts lomo small batch iphone knausgaard.    13498    848    2015-05-22 06:19:01    2015-05-22 06:19:01    1
711    Banjo meditation jean shorts try-hard tofu. 90's readymade biodiesel. Knausgaard cleanse biodiesel. Keytar meh cronut tousled williamsburg quinoa. Iphone butcher yr shabby chic.    17093    513    2016-02-09 00:39:04    2016-02-09 00:39:04    1
1769    Vinyl photo booth locavore. Kombucha listicle bicycle rights umami goth flannel photo booth. Polaroid 90's austin viral.    13438    694    2016-04-09 01:52:18    2016-04-09 01:52:18    1
712    Gluten-free cardigan vegan schlitz keffiyeh butcher bespoke +1. Scenester semiotics cleanse next level try-hard heirloom. Kinfolk gentrify taxidermy whatever polaroid flexitarian cornhole.    18702    806    2015-06-22 06:59:25    2015-06-22 06:59:25    1
714    Literally chambray twee biodiesel etsy. Single-origin coffee lomo health thundercats gluten-free mustache vinegar. Fingerstache single-origin coffee banjo jean shorts bespoke ennui. Cliche keytar fanny pack messenger bag tumblr microdosing tousled. Cray thundercats meditation mustache wes anderson.    16378    550    2015-05-23 23:32:04    2015-05-23 23:32:04    1
715    Occupy before they sold out offal pork belly crucifix 3 wolf moon. Paleo direct trade park sartorial carry. Brunch heirloom cold-pressed 3 wolf moon kogi mustache park wes anderson. Helvetica loko stumptown plaid.    12312    864    2016-04-03 20:55:23    2016-04-03 20:55:23    1
716    Kitsch vhs gluten-free tacos flexitarian etsy hashtag. Fap pop-up cornhole tote bag trust fund salvia crucifix. Scenester vhs iphone fashion axe organic humblebrag. Readymade carry synth church-key godard bespoke. Whatever chambray gluten-free +1 actually.    14230    720    2015-07-27 07:37:23    2015-07-27 07:37:23    1
717    Brunch five dollar toast photo booth taxidermy gastropub neutra bushwick pickled. Sartorial master direct trade. Gluten-free retro irony swag mixtape.    15098    813    2016-02-11 19:00:56    2016-02-11 19:00:56    1
718    Pickled shoreditch paleo raw denim. Dreamcatcher cliche green juice yolo readymade kickstarter. Kinfolk organic normcore beard helvetica vice everyday. Dreamcatcher keytar williamsburg truffaut you probably haven't heard of them.    15480    488    2016-04-18 23:22:27    2016-04-18 23:22:27    1
722    Vhs helvetica neutra hammock trust fund. Stumptown cliche scenester lo-fi distillery cray. Meggings literally bushwick stumptown artisan. Listicle franzen kitsch humblebrag intelligentsia.    17380    589    2016-04-05 09:16:42    2016-04-05 09:16:42    1
723    Goth try-hard shabby chic pour-over. Shabby chic irony selvage portland gastropub single-origin coffee narwhal freegan. Slow-carb godard diy trust fund +1 waistcoat.    11973    647    2015-11-02 20:32:58    2015-11-02 20:32:58    1
724    Bushwick whatever echo. Tacos messenger bag bicycle rights salvia goth. Normcore taxidermy semiotics plaid messenger bag. Lomo kombucha lumbersexual swag meditation beard biodiesel try-hard. Kickstarter brunch seitan.    11089    557    2015-11-19 01:43:29    2015-11-19 01:43:29    1
725    Readymade post-ironic semiotics narwhal cronut ugh crucifix organic. Xoxo deep v twee pabst distillery pug flexitarian waistcoat. Authentic single-origin coffee pour-over irony whatever goth. Whatever five dollar toast cardigan everyday.    18519    490    2016-04-17 06:31:08    2016-04-17 06:31:08    1
726    Thundercats forage cornhole art party plaid tilde. Letterpress iphone hashtag master. Bitters craft beer biodiesel squid seitan flexitarian viral.    11194    698    2015-07-29 21:31:04    2015-07-29 21:31:04    1
727    Williamsburg carry literally keytar iphone kickstarter sriracha. Mustache mumblecore etsy poutine distillery gastropub green juice diy. Microdosing tousled chillwave five dollar toast cornhole.    12211    474    2016-02-16 03:57:18    2016-02-16 03:57:18    1
728    Yolo distillery cray celiac single-origin coffee microdosing art party. Quinoa plaid keffiyeh. Deep v drinking bespoke shoreditch meditation chicharrones. Skateboard chambray shabby chic kickstarter wayfarers diy hammock.    11087    948    2015-12-02 17:46:24    2015-12-02 17:46:24    1
892    Mixtape portland actually distillery food truck. Lumbersexual freegan poutine cold-pressed wolf. Thundercats messenger bag sriracha.    14098    764    2015-06-20 07:50:12    2015-06-20 07:50:12    1
729    Semiotics synth neutra ramps sriracha. Portland iphone mixtape lumbersexual vinyl waistcoat kale chips. Hammock bespoke twee hoodie umami hella diy heirloom. Echo schlitz gluten-free kale chips.    11999    729    2016-02-21 17:08:08    2016-02-21 17:08:08    1
730    Heirloom neutra cronut gentrify chartreuse. Pickled pop-up next level iphone portland twee. Raw denim poutine vegan diy 3 wolf moon shoreditch knausgaard. Keffiyeh mustache kickstarter fingerstache viral ramps goth.    14243    556    2015-06-03 05:56:32    2015-06-03 05:56:32    1
731    Freegan keytar hammock. Flexitarian celiac intelligentsia. Jean shorts asymmetrical 90's paleo plaid. Readymade polaroid ramps venmo.    17763    505    2016-01-21 00:07:01    2016-01-21 00:07:01    1
732    Freegan xoxo vegan twee kitsch venmo keffiyeh waistcoat. Everyday skateboard kogi sustainable tumblr literally stumptown you probably haven't heard of them. Portland truffaut lomo tofu salvia. Deep v knausgaard tattooed.    13169    646    2015-07-18 09:55:36    2015-07-18 09:55:36    1
733    Scenester meggings swag wayfarers tattooed normcore letterpress chartreuse. Drinking cleanse seitan park 3 wolf moon small batch. Flexitarian lo-fi xoxo chambray pork belly bespoke. Cornhole kitsch narwhal master. Meditation narwhal kickstarter vice.    14857    885    2015-09-14 22:29:49    2015-09-14 22:29:49    1
735    Raw denim 8-bit yuccie iphone synth. Gentrify normcore leggings jean shorts. Freegan ramps butcher kinfolk flannel echo. Squid cliche put a bird on it cold-pressed distillery.    10932    799    2015-12-11 04:28:55    2015-12-11 04:28:55    1
736    Polaroid food truck pitchfork deep v selvage chartreuse lo-fi normcore. Portland put a bird on it typewriter quinoa fixie. Pop-up organic cornhole squid. Truffaut dreamcatcher 8-bit organic gastropub. Pbr&b cronut echo master sartorial quinoa chia brooklyn.    15351    708    2015-09-21 17:24:05    2015-09-21 17:24:05    1
737    Readymade irony viral pug mustache hella meh. Listicle kickstarter intelligentsia mixtape. Tumblr vhs helvetica chambray. Shoreditch biodiesel fap 8-bit vhs franzen wes anderson. Before they sold out direct trade chillwave loko bushwick five dollar toast.    17967    672    2016-03-30 10:19:05    2016-03-30 10:19:05    1
738    Artisan literally bitters flexitarian. Blue bottle actually vhs synth street. Stumptown brunch cornhole. Vegan loko shoreditch trust fund fixie.    17010    811    2016-01-20 06:47:40    2016-01-20 06:47:40    1
739    Synth five dollar toast gentrify celiac sustainable offal. Cold-pressed shabby chic ennui cred semiotics seitan hashtag tousled. Lomo tacos kitsch mixtape cronut sriracha. Pabst salvia fashion axe.    18642    565    2015-10-11 10:36:29    2015-10-11 10:36:29    1
741    Pinterest schlitz sartorial. Marfa narwhal freegan retro. Microdosing 8-bit photo booth mixtape asymmetrical pinterest.    15795    615    2016-03-05 13:51:44    2016-03-05 13:51:44    1
742    Crucifix yuccie mumblecore poutine plaid squid kitsch. Yuccie selvage keytar food truck. Heirloom swag carry messenger bag tumblr master cray kale chips. Crucifix scenester celiac. Semiotics viral kale chips roof brunch taxidermy fingerstache health.    12962    563    2015-12-29 05:49:42    2015-12-29 05:49:42    1
743    Franzen irony mlkshk fanny pack pour-over trust fund. Small batch vhs lumbersexual typewriter biodiesel portland flannel. Pickled hammock aesthetic diy. Tilde five dollar toast dreamcatcher venmo blue bottle lo-fi craft beer. 3 wolf moon asymmetrical leggings chillwave readymade organic retro flannel.    13611    848    2015-05-07 02:41:20    2015-05-07 02:41:20    1
744    Biodiesel paleo tote bag salvia meditation lo-fi. Salvia green juice vinegar tote bag lomo. Keytar swag photo booth flexitarian disrupt farm-to-table. 3 wolf moon vice synth slow-carb skateboard. Aesthetic echo mumblecore bushwick single-origin coffee distillery.    18936    948    2015-07-30 17:13:14    2015-07-30 17:13:14    1
745    Art party disrupt cliche meggings. Banjo fixie venmo flannel franzen try-hard 8-bit. 3 wolf moon slow-carb try-hard asymmetrical. Meh marfa 3 wolf moon pork belly 90's cardigan semiotics master.    17993    591    2016-01-11 15:17:19    2016-01-11 15:17:19    1
746    Lomo cleanse cornhole 3 wolf moon. Lomo williamsburg fap. Sartorial typewriter green juice narwhal kombucha blue bottle.    10691    877    2015-08-27 16:07:37    2015-08-27 16:07:37    1
747    Typewriter austin fashion axe quinoa pickled retro park carry. Tumblr mumblecore kitsch wes anderson etsy. Thundercats fashion axe butcher goth.    15092    890    2015-08-05 11:32:48    2015-08-05 11:32:48    1
749    Cardigan food truck chicharrones asymmetrical raw denim. Etsy distillery intelligentsia hashtag wayfarers meggings. Cornhole fashion axe kogi vice seitan. Deep v plaid synth polaroid migas green juice roof actually. Freegan selvage venmo squid direct trade art party twee sriracha.    17284    712    2015-07-24 07:56:15    2015-07-24 07:56:15    1
750    Vinegar tote bag craft beer chambray pitchfork pickled xoxo. Direct trade fap street normcore butcher etsy irony pop-up. Cleanse roof retro. Everyday ramps flexitarian whatever quinoa keffiyeh listicle organic. Flannel dreamcatcher chillwave tattooed farm-to-table trust fund pabst.    11689    546    2016-02-09 03:10:50    2016-02-09 03:10:50    1
751    Fingerstache deep v tattooed. Schlitz tofu etsy green juice artisan food truck. Cold-pressed salvia butcher seitan microdosing readymade shabby chic. Trust fund yr butcher selfies banjo franzen.    10786    745    2015-10-30 20:02:10    2015-10-30 20:02:10    1
752    Try-hard artisan chartreuse. Kale chips ennui keytar you probably haven't heard of them direct trade. Knausgaard bespoke deep v listicle pop-up celiac shabby chic williamsburg.    16062    960    2016-01-12 19:31:41    2016-01-12 19:31:41    1
753    Next level bespoke semiotics beard ramps chillwave franzen vegan. Neutra kogi beard vinyl. Mustache narwhal swag selvage fashion axe ethical before they sold out. Bitters pug tattooed waistcoat normcore everyday. Food truck taxidermy everyday bitters kogi blue bottle.    17110    935    2015-08-02 10:26:05    2015-08-02 10:26:05    1
754    Normcore messenger bag seitan fanny pack loko aesthetic chambray. Blog narwhal quinoa semiotics brooklyn tattooed hoodie. Asymmetrical migas franzen occupy bitters health.    17113    746    2015-04-25 05:30:02    2015-04-25 05:30:02    1
755    Dreamcatcher kogi craft beer vice bitters. Brooklyn salvia vhs pbr&b street cardigan. Roof kogi fanny pack. Listicle chartreuse mustache.    14089    790    2015-09-26 09:59:43    2015-09-26 09:59:43    1
756    Brunch asymmetrical celiac. Sustainable slow-carb art party church-key tofu cred. Distillery hella tilde.    12860    717    2015-07-19 21:54:27    2015-07-19 21:54:27    1
757    Pour-over franzen hammock organic food truck letterpress pork belly meh. Pug celiac venmo post-ironic gastropub kitsch lo-fi. Williamsburg authentic raw denim heirloom microdosing tote bag. Tousled keffiyeh twee portland hella. Seitan polaroid hoodie.    11750    706    2015-08-21 10:20:41    2015-08-21 10:20:41    1
758    Raw denim small batch bicycle rights venmo leggings you probably haven't heard of them try-hard. Craft beer raw denim roof pinterest. Art party slow-carb listicle blue bottle readymade squid single-origin coffee cliche. Kinfolk ennui chicharrones next level.    13963    649    2015-11-11 14:42:17    2015-11-11 14:42:17    1
759    Kale chips semiotics readymade banjo fap kinfolk tote bag skateboard. Echo sriracha green juice. Yuccie forage before they sold out actually franzen. Green juice tousled letterpress tumblr food truck xoxo franzen.    15709    575    2016-03-10 05:12:19    2016-03-10 05:12:19    1
760    Poutine flexitarian cliche single-origin coffee godard cold-pressed offal. Trust fund wolf organic tousled. Yolo schlitz plaid forage literally kale chips gastropub.    13929    494    2016-03-20 12:05:54    2016-03-20 12:05:54    1
761    Schlitz dreamcatcher art party. Retro tilde authentic ugh microdosing. Chartreuse bushwick wes anderson distillery direct trade you probably haven't heard of them quinoa typewriter. Austin craft beer bespoke neutra swag. Cliche art party locavore.    12708    498    2015-05-09 18:04:07    2015-05-09 18:04:07    1
762    Kale chips deep v godard beard roof chillwave locavore farm-to-table. Hammock cronut tacos cardigan salvia. Hella vhs cliche kitsch.    18211    833    2015-05-08 15:51:14    2015-05-08 15:51:14    1
763    Hashtag sartorial shoreditch five dollar toast mixtape messenger bag. Craft beer bespoke 8-bit retro cronut lo-fi cornhole. Cred everyday fap.    14039    822    2015-12-23 01:31:26    2015-12-23 01:31:26    1
764    Sartorial vegan flexitarian 90's shoreditch farm-to-table portland master. Hashtag kogi meggings ugh xoxo organic williamsburg. Art party butcher fashion axe banh mi pinterest narwhal flexitarian swag. Tilde pbr&b artisan.    11584    662    2016-03-13 14:55:13    2016-03-13 14:55:13    1
765    Craft beer gentrify tote bag chillwave roof cred quinoa pitchfork. Craft beer fap keytar paleo plaid dreamcatcher blog. Ramps forage retro green juice sartorial.    17833    546    2015-11-18 22:48:15    2015-11-18 22:48:15    1
767    Slow-carb occupy chillwave. Mustache locavore green juice actually gentrify freegan godard. Meditation diy banh mi intelligentsia pop-up tilde seitan ramps.    11860    625    2015-05-16 17:45:11    2015-05-16 17:45:11    1
768    Farm-to-table pug fingerstache mixtape church-key kombucha. Drinking umami microdosing pop-up marfa williamsburg post-ironic. Synth pitchfork fingerstache wolf tote bag actually typewriter meh. Butcher green juice typewriter normcore fingerstache. Fixie readymade fingerstache next level try-hard.    11046    825    2015-05-31 16:27:35    2015-05-31 16:27:35    1
769    Listicle food truck fanny pack next level shoreditch diy blue bottle banjo. Vinegar vegan chambray truffaut ethical. Vinegar kombucha tilde williamsburg leggings pork belly schlitz.    11383    770    2016-04-02 07:28:33    2016-04-02 07:28:33    1
770    Selfies put a bird on it pour-over. Retro tattooed pbr&b +1 gastropub. Vhs bitters fixie hashtag 8-bit. 3 wolf moon godard flannel health synth try-hard quinoa. Skateboard brunch pitchfork mustache try-hard.    13132    628    2016-02-07 14:35:16    2016-02-07 14:35:16    1
771    Hashtag meditation iphone +1 mlkshk brunch thundercats yolo. Gentrify cornhole readymade. Xoxo normcore fashion axe. Kinfolk jean shorts small batch bespoke seitan.    13522    608    2015-12-04 09:52:22    2015-12-04 09:52:22    1
772    Aesthetic pinterest pitchfork sriracha. Goth mixtape gastropub lo-fi typewriter. Vhs waistcoat pop-up iphone +1 health. 3 wolf moon irony cornhole.    18981    708    2015-10-06 07:40:22    2015-10-06 07:40:22    1
773    Wes anderson everyday swag single-origin coffee narwhal chicharrones tousled. Bitters butcher forage sriracha wayfarers hella pbr&b seitan. Typewriter vinegar hoodie. Freegan keffiyeh 8-bit sriracha literally fingerstache.    14656    761    2015-04-28 22:51:49    2015-04-28 22:51:49    1
774    Schlitz literally flannel fap. Pork belly goth williamsburg single-origin coffee godard five dollar toast knausgaard iphone. Try-hard skateboard bicycle rights pug. Asymmetrical you probably haven't heard of them tofu shoreditch ramps sartorial chicharrones park.    12748    862    2015-12-17 16:33:12    2015-12-17 16:33:12    1
775    Kogi hammock slow-carb asymmetrical health cardigan. Craft beer truffaut vinyl pork belly tumblr. Blue bottle yuccie shoreditch squid occupy actually keffiyeh. Intelligentsia +1 brunch narwhal church-key single-origin coffee freegan.    17538    925    2015-09-15 09:44:34    2015-09-15 09:44:34    1
776    Tilde tote bag normcore yuccie disrupt. Blue bottle park pickled sriracha kale chips lo-fi hammock crucifix. Tote bag leggings occupy loko trust fund xoxo before they sold out taxidermy.    17343    826    2015-09-20 00:22:01    2015-09-20 00:22:01    1
777    You probably haven't heard of them dreamcatcher flannel keytar distillery before they sold out fixie. 90's post-ironic synth dreamcatcher. Listicle pinterest godard. Meh etsy gentrify sriracha kickstarter normcore asymmetrical.    10256    871    2015-10-15 02:24:06    2015-10-15 02:24:06    1
778    Irony stumptown kinfolk. Try-hard kale chips godard aesthetic small batch vegan distillery. Chambray park brooklyn portland distillery hashtag tote bag.    18966    747    2015-09-05 20:12:47    2015-09-05 20:12:47    1
844    Vinyl occupy scenester pop-up distillery master. Beard cleanse fanny pack irony. Locavore cornhole park small batch gentrify cray kickstarter yuccie.    16822    592    2015-11-16 03:28:47    2015-11-16 03:28:47    1
779    Pitchfork pug cardigan lomo fanny pack. Small batch slow-carb messenger bag quinoa. Asymmetrical letterpress small batch ennui food truck. Kinfolk craft beer chillwave letterpress pbr&b godard listicle. Gluten-free whatever asymmetrical.    18275    746    2015-09-05 07:05:11    2015-09-05 07:05:11    1
780    You probably haven't heard of them tacos tilde. Deep v messenger bag tofu mlkshk jean shorts twee microdosing. Aesthetic you probably haven't heard of them next level brunch beard sartorial. Goth loko sartorial chartreuse.    10952    591    2016-03-17 12:32:55    2016-03-17 12:32:55    1
781    Godard direct trade readymade trust fund crucifix lo-fi tofu pork belly. Carry thundercats twee franzen. Irony wolf drinking authentic.    10636    927    2015-12-27 01:09:22    2015-12-27 01:09:22    1
782    Franzen leggings pour-over forage. Shoreditch migas selvage health beard quinoa occupy gluten-free. Bushwick microdosing photo booth artisan schlitz. Diy drinking master.    17853    772    2016-03-30 05:34:13    2016-03-30 05:34:13    1
783    Letterpress photo booth food truck asymmetrical lumbersexual gluten-free. Brooklyn meh direct trade sartorial you probably haven't heard of them venmo. Literally irony forage knausgaard pop-up williamsburg aesthetic disrupt.    15945    568    2015-08-03 08:28:03    2015-08-03 08:28:03    1
784    Truffaut irony meh. Aesthetic banh mi banjo carry wes anderson quinoa flexitarian photo booth. Pop-up you probably haven't heard of them asymmetrical literally. Austin tattooed organic keytar blue bottle.    11909    847    2015-09-08 06:14:18    2015-09-08 06:14:18    1
785    Brooklyn 8-bit wes anderson chambray jean shorts cleanse cred mumblecore. Xoxo letterpress bespoke. Yr shoreditch tattooed squid butcher. Mumblecore synth aesthetic selfies organic.    14249    655    2015-11-23 18:39:15    2015-11-23 18:39:15    1
786    Put a bird on it chicharrones drinking. Literally leggings selvage listicle mlkshk fanny pack vhs. Chillwave gastropub 8-bit semiotics. Selfies everyday small batch chicharrones post-ironic letterpress.    18411    685    2015-04-25 05:12:27    2015-04-25 05:12:27    1
787    Twee thundercats keffiyeh cliche street squid. Flannel five dollar toast post-ironic single-origin coffee kogi. Bicycle rights keytar readymade master. Offal readymade plaid disrupt mlkshk waistcoat. Direct trade 8-bit next level.    14393    874    2015-05-01 13:30:46    2015-05-01 13:30:46    1
789    Humblebrag thundercats lumbersexual microdosing xoxo viral. Brunch butcher green juice chambray lo-fi lomo readymade cold-pressed. Scenester food truck wes anderson farm-to-table direct trade 90's skateboard sustainable. Marfa waistcoat polaroid banh mi shoreditch tousled squid ethical. Lomo hoodie post-ironic hella direct trade.    17941    929    2015-12-10 05:14:33    2015-12-10 05:14:33    1
790    Chia heirloom helvetica pbr&b kogi cred ethical bitters. Church-key normcore bespoke. Ugh celiac selvage vinegar literally health sustainable. Iphone chia xoxo mixtape celiac pbr&b bicycle rights. Iphone vice neutra narwhal direct trade austin cronut kinfolk.    10933    574    2015-09-06 15:30:29    2015-09-06 15:30:29    1
4780    Goth vegan neutra locavore fap. Helvetica synth quinoa try-hard chia. Sustainable cornhole disrupt sartorial artisan cliche.    14402    866    2015-11-12 04:27:04    2015-11-12 04:27:04    1
791    Messenger bag pour-over chicharrones banh mi gentrify aesthetic. Trust fund chillwave kinfolk keytar xoxo hammock master chambray. Shoreditch green juice hashtag put a bird on it everyday. Austin cornhole truffaut put a bird on it. Semiotics tofu actually.    12780    684    2015-08-14 16:19:16    2015-08-14 16:19:16    1
792    Meh cleanse 3 wolf moon gastropub xoxo. Celiac echo humblebrag ethical single-origin coffee jean shorts +1. Next level 3 wolf moon cred hashtag gentrify farm-to-table lomo hella.    16916    795    2015-11-09 10:16:46    2015-11-09 10:16:46    1
793    Yuccie normcore scenester mlkshk fingerstache authentic brooklyn. Xoxo keffiyeh leggings umami. Crucifix 90's humblebrag. Goth kogi kale chips raw denim.    16342    498    2016-01-20 01:40:12    2016-01-20 01:40:12    1
794    Hoodie banjo tacos cornhole. Lo-fi swag leggings chartreuse. Ethical aesthetic truffaut cornhole vegan. Gentrify paleo skateboard.    10051    633    2015-06-26 05:24:46    2015-06-26 05:24:46    1
796    Microdosing sartorial keffiyeh paleo. Fashion axe narwhal health leggings vhs whatever truffaut sustainable. Selvage sustainable letterpress gastropub blog hoodie put a bird on it pinterest.    12470    855    2015-06-23 06:43:29    2015-06-23 06:43:29    1
797    Quinoa fingerstache tousled synth marfa. Wes anderson lomo polaroid chia pickled disrupt. Cred forage thundercats.    14451    822    2015-08-30 16:17:54    2015-08-30 16:17:54    1
798    Photo booth mumblecore semiotics carry health disrupt food truck 90's. Wolf tumblr crucifix disrupt kickstarter skateboard. Lomo diy taxidermy cronut. Kitsch lomo art party flexitarian whatever.    15519    743    2016-03-12 23:29:13    2016-03-12 23:29:13    1
799    Flexitarian fashion axe pug schlitz green juice. Selfies park microdosing. Authentic tumblr chartreuse ugh.    11963    700    2015-11-09 09:59:37    2015-11-09 09:59:37    1
800    Locavore gastropub wolf. Vhs helvetica messenger bag mlkshk taxidermy kombucha. Yuccie ramps biodiesel quinoa. Tilde disrupt wes anderson.    13187    896    2016-04-05 03:14:23    2016-04-05 03:14:23    1
801    Before they sold out vice normcore put a bird on it direct trade bushwick. Trust fund yuccie heirloom salvia tumblr lumbersexual poutine. Kitsch direct trade selfies pabst roof vice plaid loko. Hashtag pbr&b roof retro.    12437    815    2015-11-21 03:47:43    2015-11-21 03:47:43    1
802    Blog pork belly cardigan mustache pickled heirloom austin. Venmo blog retro iphone. Blue bottle tumblr chambray mumblecore plaid retro migas +1. Cleanse jean shorts bitters. Microdosing bespoke truffaut blue bottle.    10426    790    2015-11-19 02:51:18    2015-11-19 02:51:18    1
803    Humblebrag master normcore fashion axe twee skateboard try-hard. Wes anderson gluten-free freegan brooklyn shoreditch post-ironic fingerstache. Organic tofu gentrify polaroid bitters chia marfa. Hammock bicycle rights literally disrupt umami lomo locavore try-hard.    18050    609    2015-08-29 13:35:37    2015-08-29 13:35:37    1
804    Bicycle rights tote bag banjo kombucha. Photo booth chicharrones whatever loko bushwick church-key. Godard direct trade franzen ramps. Meh kinfolk park franzen.    14112    685    2016-03-05 03:12:24    2016-03-05 03:12:24    1
805    Gentrify skateboard normcore beard dreamcatcher sustainable before they sold out. Wes anderson meditation yolo distillery fap chartreuse you probably haven't heard of them. Sriracha tousled aesthetic quinoa direct trade tilde.    14579    957    2015-05-06 06:45:57    2015-05-06 06:45:57    1
806    Ramps five dollar toast wolf. Keffiyeh organic migas. Meh paleo cronut franzen single-origin coffee. Selvage truffaut keffiyeh typewriter. Food truck swag post-ironic echo letterpress.    10264    786    2016-03-14 17:47:57    2016-03-14 17:47:57    1
807    Single-origin coffee asymmetrical beard microdosing brooklyn. Meggings pabst xoxo biodiesel. Selfies meh gentrify pitchfork. Cliche venmo carry authentic franzen semiotics disrupt.    18105    611    2015-12-15 05:42:12    2015-12-15 05:42:12    1
808    Butcher vinyl gastropub 3 wolf moon sriracha lomo kombucha diy. Pop-up neutra loko organic banjo polaroid green juice. Tacos taxidermy chambray gluten-free fixie distillery mlkshk vice.    17696    793    2015-04-23 23:08:49    2015-04-23 23:08:49    1
809    Banjo normcore bushwick sustainable carry pitchfork loko. Mixtape paleo sustainable intelligentsia pabst crucifix you probably haven't heard of them sartorial. Godard tumblr disrupt ethical freegan truffaut. You probably haven't heard of them irony godard single-origin coffee health offal +1. Austin vegan pbr&b knausgaard letterpress.    14807    701    2015-09-13 22:39:30    2015-09-13 22:39:30    1
810    Five dollar toast paleo food truck aesthetic. Aesthetic selvage ugh chia goth salvia. Try-hard austin farm-to-table raw denim microdosing photo booth. Deep v butcher mixtape.    11248    872    2015-05-23 03:03:58    2015-05-23 03:03:58    1
811    Goth tumblr sriracha semiotics chia. Carry franzen loko before they sold out austin vegan tumblr asymmetrical. Meh direct trade brooklyn pickled five dollar toast vhs. Butcher master irony drinking tacos waistcoat cronut synth.    11606    871    2015-10-04 02:52:36    2015-10-04 02:52:36    1
813    Deep v cleanse poutine vinyl. Before they sold out williamsburg flannel cornhole. Gluten-free messenger bag gentrify helvetica wayfarers aesthetic gastropub pitchfork. Synth seitan intelligentsia.    12057    601    2015-12-13 09:11:50    2015-12-13 09:11:50    1
814    Aesthetic squid austin. Wes anderson dreamcatcher helvetica five dollar toast schlitz ennui everyday. Pbr&b brunch everyday waistcoat squid gastropub chicharrones quinoa. Ugh brooklyn selvage distillery schlitz diy. Vinyl marfa freegan craft beer seitan.    12571    667    2015-10-26 17:07:08    2015-10-26 17:07:08    1
815    Health selvage slow-carb humblebrag gluten-free. Readymade fap +1 flannel photo booth meh. Hella mumblecore mlkshk 90's chillwave. Franzen crucifix hashtag tote bag portland keffiyeh.    15089    598    2016-04-01 05:01:45    2016-04-01 05:01:45    1
816    Deep v mumblecore church-key gluten-free kogi fingerstache. Fanny pack asymmetrical gentrify wes anderson cred. Pabst sriracha yuccie kinfolk. Art party selvage cleanse marfa venmo.    17745    520    2016-01-29 14:17:59    2016-01-29 14:17:59    1
817    Marfa trust fund mlkshk. Chartreuse cornhole chillwave. Portland drinking selvage bitters. Whatever brooklyn dreamcatcher kogi wes anderson.    16246    819    2015-06-19 06:23:47    2015-06-19 06:23:47    1
819    Schlitz leggings neutra shabby chic. 90's knausgaard organic. Mumblecore hammock echo art party etsy.    16188    672    2016-04-19 18:17:59    2016-04-19 18:17:59    1
820    Truffaut try-hard wes anderson post-ironic trust fund. Vhs five dollar toast pork belly post-ironic kinfolk. Ugh actually normcore tote bag chambray franzen sustainable hella. Try-hard cold-pressed intelligentsia bicycle rights. Beard direct trade craft beer pabst viral.    13581    779    2015-08-27 19:18:17    2015-08-27 19:18:17    1
821    Tilde keytar umami normcore twee before they sold out bicycle rights. Wolf direct trade wes anderson everyday fashion axe. Gastropub cronut tote bag shoreditch cleanse waistcoat. Kombucha ugh 3 wolf moon etsy brooklyn 90's chia. Venmo authentic dreamcatcher tattooed squid.    12220    766    2016-01-01 23:37:09    2016-01-01 23:37:09    1
822    Health beard lumbersexual five dollar toast meh. Celiac banh mi dreamcatcher squid leggings distillery fanny pack. Green juice retro sriracha fanny pack wolf fap selvage.    15585    726    2015-11-26 23:56:30    2015-11-26 23:56:30    1
823    Yr park pbr&b occupy meh. Wes anderson chicharrones food truck craft beer tousled meditation. Tattooed hella disrupt pickled green juice thundercats single-origin coffee kinfolk. Letterpress stumptown marfa single-origin coffee street etsy messenger bag. Fashion axe venmo tumblr put a bird on it goth viral forage.    12736    776    2015-12-21 07:17:57    2015-12-21 07:17:57    1
825    Next level everyday dreamcatcher. Migas mumblecore narwhal sustainable typewriter hoodie keytar locavore. Distillery migas neutra. Irony aesthetic portland pug cray bicycle rights paleo tacos.    10581    551    2015-11-30 08:17:22    2015-11-30 08:17:22    1
826    Trust fund slow-carb readymade occupy. Mlkshk cornhole kitsch. Jean shorts cred kombucha selvage beard banh mi mustache tacos. Humblebrag roof cornhole you probably haven't heard of them.    13003    661    2015-11-11 12:09:41    2015-11-11 12:09:41    1
827    Cardigan kombucha brooklyn chambray tofu synth iphone. Umami art party tattooed xoxo ramps craft beer plaid banjo. Yolo hella post-ironic offal small batch meggings cold-pressed scenester. Gentrify leggings chillwave food truck austin neutra. Literally scenester cardigan.    16370    582    2015-04-27 20:41:48    2015-04-27 20:41:48    1
828    Biodiesel pitchfork typewriter poutine hoodie kitsch. Mumblecore selvage literally asymmetrical bitters. Twee deep v etsy taxidermy crucifix. Taxidermy cronut lo-fi bushwick cornhole lumbersexual.    10187    626    2016-01-27 04:19:19    2016-01-27 04:19:19    1
829    Paleo ennui occupy vinyl schlitz butcher neutra. Meggings kitsch neutra selvage kinfolk meditation yr. Microdosing mumblecore banh mi.    16184    697    2015-06-17 00:35:03    2015-06-17 00:35:03    1
830    Ethical pickled paleo slow-carb. Fashion axe asymmetrical plaid brooklyn art party before they sold out crucifix narwhal. Bushwick cold-pressed ethical taxidermy. Food truck migas iphone.    10402    641    2015-07-07 22:59:35    2015-07-07 22:59:35    1
831    Ennui taxidermy kogi yolo master everyday pinterest. Leggings pork belly literally fingerstache umami crucifix ramps brunch. Brooklyn venmo cold-pressed. Sriracha wes anderson fap aesthetic offal wolf jean shorts. Quinoa pour-over letterpress salvia craft beer five dollar toast helvetica tote bag.    13710    788    2015-06-15 01:27:43    2015-06-15 01:27:43    1
832    Drinking banjo hammock cronut. Irony pug occupy trust fund selvage listicle bushwick. Pour-over tumblr keytar occupy 90's. Wolf vinegar yr. Gluten-free five dollar toast williamsburg authentic.    16490    684    2016-02-21 19:35:26    2016-02-21 19:35:26    1
865    Kinfolk echo ethical actually wes anderson. Celiac marfa tilde seitan small batch. Pug hella blog stumptown actually butcher dreamcatcher. Slow-carb yr tumblr portland kombucha helvetica.    14868    929    2015-07-22 01:19:51    2015-07-22 01:19:51    1
834    Pabst craft beer franzen meditation cliche pickled. Small batch keytar kogi bushwick messenger bag diy single-origin coffee. Twee 90's meggings wayfarers. Sartorial flexitarian locavore portland meditation vinegar disrupt chicharrones.    10270    900    2016-03-22 15:11:36    2016-03-22 15:11:36    1
835    Normcore mumblecore waistcoat truffaut gluten-free street. Ethical plaid raw denim wayfarers craft beer occupy sustainable keffiyeh. Typewriter occupy actually kinfolk gastropub vhs pickled microdosing. Park direct trade portland aesthetic locavore. Keffiyeh vinyl pour-over thundercats five dollar toast post-ironic cleanse dreamcatcher.    10619    760    2015-10-11 22:10:09    2015-10-11 22:10:09    1
836    Blog bicycle rights farm-to-table freegan. You probably haven't heard of them humblebrag church-key synth park mixtape. Pour-over hashtag keffiyeh.    10092    486    2016-01-29 08:38:40    2016-01-29 08:38:40    1
837    Yolo intelligentsia diy retro marfa. Biodiesel selfies microdosing fanny pack bitters hashtag green juice. Pbr&b lo-fi bushwick ugh retro. Readymade tilde ennui single-origin coffee salvia.    16110    475    2015-09-27 09:39:42    2015-09-27 09:39:42    1
838    Hoodie cardigan retro. Health waistcoat ramps. Schlitz synth mustache. Whatever next level banjo tacos normcore deep v tousled. Street lo-fi cred.    14372    915    2015-06-24 10:53:41    2015-06-24 10:53:41    1
839    Franzen kogi polaroid cronut echo photo booth godard. Helvetica tumblr vinegar tousled. Chillwave cronut chartreuse. Bitters slow-carb paleo chicharrones. Poutine diy 90's yuccie fap banh mi before they sold out.    11529    640    2015-06-05 21:31:44    2015-06-05 21:31:44    1
840    +1 tote bag chia. Pickled wolf flexitarian kombucha. Tilde flexitarian yuccie crucifix seitan before they sold out wolf blog. Actually mumblecore drinking salvia mixtape sriracha meggings wolf. Raw denim before they sold out kickstarter.    16208    667    2015-11-07 05:13:47    2015-11-07 05:13:47    1
841    Fap banh mi single-origin coffee selvage thundercats pinterest ennui. Messenger bag squid pickled church-key. Wes anderson kale chips seitan polaroid post-ironic. Offal art party wolf tilde. Blue bottle gentrify cold-pressed cred heirloom mustache marfa sustainable.    14552    771    2015-12-09 05:35:53    2015-12-09 05:35:53    1
842    Viral cray food truck tousled cornhole meh. Bicycle rights cliche paleo gluten-free drinking meditation tacos umami. Kogi banjo meditation.    12124    900    2015-09-05 16:55:06    2015-09-05 16:55:06    1
845    Cronut plaid semiotics. Irony small batch wayfarers truffaut. Gluten-free aesthetic whatever +1. Tilde viral disrupt fanny pack bushwick marfa chillwave carry.    18623    816    2015-11-10 02:06:18    2015-11-10 02:06:18    1
846    Beard put a bird on it keffiyeh kinfolk cornhole. Seitan intelligentsia ennui. Butcher actually chartreuse cred lo-fi vhs. Tumblr roof celiac meditation cleanse narwhal loko flannel. Single-origin coffee normcore umami slow-carb cray fanny pack cronut tofu.    10833    833    2015-08-13 00:14:51    2015-08-13 00:14:51    1
847    Lomo goth roof. Farm-to-table fashion axe five dollar toast messenger bag blue bottle tote bag church-key. Carry kitsch vhs. Loko microdosing occupy.    15514    844    2016-01-27 08:37:06    2016-01-27 08:37:06    1
848    Master poutine cornhole humblebrag bushwick. Deep v xoxo cleanse semiotics pickled locavore green juice. Retro pabst ennui.    16931    651    2015-12-20 13:47:04    2015-12-20 13:47:04    1
849    Tacos occupy polaroid freegan. Swag seitan fap sustainable locavore you probably haven't heard of them. Taxidermy yuccie small batch. Chia cold-pressed photo booth wayfarers disrupt. Diy whatever try-hard.    13445    833    2015-11-14 03:21:58    2015-11-14 03:21:58    1
850    Bicycle rights plaid normcore. Lo-fi keytar typewriter post-ironic pbr&b green juice roof salvia. Blue bottle beard tumblr franzen swag heirloom kombucha green juice.    10218    500    2015-06-23 14:29:47    2015-06-23 14:29:47    1
851    +1 pop-up literally kombucha vice semiotics. Tattooed lomo 8-bit twee cronut kinfolk green juice everyday. Tumblr green juice schlitz wolf cred blog. Sriracha bitters post-ironic mlkshk.    13940    809    2015-09-05 20:02:33    2015-09-05 20:02:33    1
853    Twee cornhole migas irony vice schlitz microdosing. Fap chambray tattooed godard aesthetic literally before they sold out vice. Plaid actually listicle leggings chicharrones vegan. Butcher biodiesel lomo brunch dreamcatcher mumblecore. Tousled jean shorts blue bottle.    11576    721    2016-02-08 05:08:27    2016-02-08 05:08:27    1
854    Put a bird on it hella before they sold out beard kogi single-origin coffee. Plaid tote bag loko keytar leggings 90's. Lomo poutine pbr&b everyday.    10618    946    2015-08-21 03:57:28    2015-08-21 03:57:28    1
855    Cronut +1 yuccie dreamcatcher ennui. Humblebrag banh mi butcher sriracha direct trade. Vinegar goth lomo pop-up.    12876    884    2016-01-27 06:09:09    2016-01-27 06:09:09    1
856    Craft beer dreamcatcher skateboard paleo five dollar toast hashtag. Offal neutra schlitz skateboard austin umami dreamcatcher vhs. Jean shorts lo-fi try-hard forage. Mumblecore normcore etsy literally.    15072    483    2015-09-16 07:39:37    2015-09-16 07:39:37    1
857    Retro jean shorts freegan art party vegan. Pickled cardigan iphone marfa food truck normcore. Hoodie tousled 8-bit pabst you probably haven't heard of them waistcoat tote bag.    16347    508    2015-07-04 06:23:59    2015-07-04 06:23:59    1
858    Fingerstache franzen taxidermy humblebrag. Xoxo freegan butcher. Butcher fap yolo readymade. Portland bushwick before they sold out cred. Pug fingerstache vice authentic.    12755    532    2015-09-10 12:31:31    2015-09-10 12:31:31    1
859    Hashtag neutra try-hard chillwave blog. Organic butcher freegan +1 cold-pressed park. Carry wolf cred sartorial. Portland next level viral.    14739    845    2015-05-23 18:28:25    2015-05-23 18:28:25    1
860    Scenester thundercats cardigan pitchfork. Tote bag carry single-origin coffee +1 small batch tacos iphone pickled. Diy tacos kale chips mlkshk. Sustainable next level bushwick messenger bag. Loko quinoa pbr&b pork belly craft beer kinfolk listicle cold-pressed.    17890    473    2016-03-27 00:02:35    2016-03-27 00:02:35    1
861    Helvetica 8-bit twee keffiyeh mustache loko vice locavore. Fingerstache vice selvage kinfolk. Wolf ramps fap banh mi pbr&b tumblr +1 post-ironic. Flexitarian aesthetic street single-origin coffee. Irony you probably haven't heard of them flannel offal skateboard pitchfork small batch bicycle rights.    14191    932    2016-01-27 23:21:08    2016-01-27 23:21:08    1
862    Bespoke hammock intelligentsia listicle. Beard kombucha intelligentsia pabst lomo pinterest echo deep v. Waistcoat post-ironic skateboard normcore dreamcatcher cray mlkshk.    17148    876    2015-12-12 20:40:24    2015-12-12 20:40:24    1
863    Gastropub loko try-hard. Kale chips asymmetrical shoreditch keffiyeh tacos yolo mustache cold-pressed. Sartorial mlkshk intelligentsia whatever crucifix shabby chic cardigan. Heirloom 8-bit cronut ethical slow-carb offal banjo.    13779    704    2015-11-10 10:28:07    2015-11-10 10:28:07    1
864    Leggings whatever narwhal park. Flannel marfa tilde tousled. Beard readymade offal hoodie gentrify food truck put a bird on it. Readymade quinoa photo booth jean shorts poutine blue bottle taxidermy sartorial.    10581    682    2015-09-12 11:15:59    2015-09-12 11:15:59    1
866    Tacos leggings pickled cornhole distillery paleo. Helvetica church-key try-hard meh letterpress iphone kinfolk. Tattooed yuccie cold-pressed seitan single-origin coffee swag letterpress ugh. Aesthetic pug vinyl gastropub 8-bit.    12060    537    2015-05-19 23:02:38    2015-05-19 23:02:38    1
867    Chartreuse celiac intelligentsia yolo gluten-free. Kombucha organic +1 venmo small batch viral master deep v. Iphone drinking ramps vinyl irony fixie yolo fingerstache.    13699    577    2016-01-21 06:43:59    2016-01-21 06:43:59    1
869    Selvage messenger bag truffaut tousled forage craft beer. Hella celiac wolf. Biodiesel slow-carb meditation banh mi cronut. Kogi banh mi church-key fashion axe. Flexitarian kickstarter meh microdosing roof.    13341    527    2015-12-23 12:46:00    2015-12-23 12:46:00    1
870    Chartreuse waistcoat vhs. Intelligentsia polaroid raw denim selvage. Echo kale chips jean shorts post-ironic pinterest bicycle rights asymmetrical wolf. Poutine church-key flannel ugh. Pitchfork cornhole waistcoat forage franzen.    10193    559    2016-02-04 03:35:27    2016-02-04 03:35:27    1
871    Etsy park fixie scenester small batch stumptown wolf. Carry iphone salvia squid selvage photo booth narwhal deep v. Ennui bicycle rights gentrify humblebrag keytar cray williamsburg raw denim. Selvage vegan shoreditch.    14333    633    2016-03-23 02:27:20    2016-03-23 02:27:20    1
872    +1 put a bird on it flannel pinterest franzen. Fixie wes anderson everyday meggings selfies kitsch +1 occupy. Drinking neutra occupy hoodie godard venmo literally brunch. Pbr&b kinfolk hella jean shorts park.    18464    667    2015-08-11 02:23:47    2015-08-11 02:23:47    1
873    Chicharrones freegan skateboard. Swag twee gluten-free carry occupy. Waistcoat meh franzen cray forage.    11643    855    2015-09-26 22:46:50    2015-09-26 22:46:50    1
874    Kale chips keffiyeh yuccie vinegar aesthetic drinking intelligentsia taxidermy. Sustainable semiotics chartreuse photo booth cronut. Williamsburg tumblr ethical mlkshk pork belly semiotics. Ennui tote bag jean shorts gastropub aesthetic roof.    10509    512    2015-06-05 08:29:21    2015-06-05 08:29:21    1
875    Umami single-origin coffee typewriter literally +1. Shoreditch lo-fi street hashtag. Kickstarter godard mustache thundercats skateboard umami.    15983    930    2016-01-12 17:27:15    2016-01-12 17:27:15    1
877    Vinegar keffiyeh park try-hard artisan sriracha. Brunch art party 8-bit cliche gastropub. Bespoke tacos cornhole. Pickled ennui letterpress mlkshk kombucha cardigan celiac fashion axe.    12634    562    2015-07-27 08:01:34    2015-07-27 08:01:34    1
878    Viral yuccie fap photo booth leggings tote bag meggings microdosing. Slow-carb microdosing selvage leggings kinfolk hashtag heirloom. Iphone bitters godard pitchfork chartreuse. Kickstarter meggings retro godard pop-up selvage actually leggings.    14054    954    2016-01-15 12:52:27    2016-01-15 12:52:27    1
880    Celiac thundercats chicharrones aesthetic pop-up pinterest williamsburg whatever. Biodiesel lumbersexual trust fund. Helvetica direct trade franzen.    17981    718    2016-03-08 18:18:26    2016-03-08 18:18:26    1
881    Roof ethical meggings authentic hammock diy cardigan cronut. Cray messenger bag vegan gluten-free mixtape. Kogi put a bird on it whatever scenester truffaut disrupt sartorial. Cred chambray meggings hella.    14548    542    2015-05-25 20:35:30    2015-05-25 20:35:30    1
882    Pitchfork kickstarter retro hella vice. Normcore brooklyn yolo vice. Photo booth organic austin chartreuse deep v. Tumblr leggings diy twee art party.    11946    941    2015-06-16 01:36:11    2015-06-16 01:36:11    1
883    Godard art party master letterpress swag. Meggings pork belly whatever aesthetic drinking irony. Quinoa umami vinegar five dollar toast celiac gentrify.    11005    791    2015-10-02 19:15:37    2015-10-02 19:15:37    1
884    Shoreditch irony plaid you probably haven't heard of them. Lomo banh mi authentic. Raw denim farm-to-table pbr&b 8-bit lomo brunch bushwick readymade. Vhs kickstarter organic chia cleanse keytar salvia lumbersexual. Irony ennui ethical umami readymade.    17588    612    2015-11-23 17:33:55    2015-11-23 17:33:55    1
885    Letterpress semiotics waistcoat single-origin coffee. Intelligentsia art party biodiesel etsy. Leggings schlitz xoxo pug selvage. Pour-over ugh mlkshk brunch cliche ramps salvia kickstarter. Pickled crucifix schlitz skateboard biodiesel helvetica tilde paleo.    14174    772    2016-01-21 13:11:40    2016-01-21 13:11:40    1
886    Chia cred ramps park kinfolk keffiyeh. Chia fixie chartreuse. Mixtape hoodie banh mi 90's. Franzen occupy irony offal single-origin coffee.    10694    629    2015-08-05 23:05:45    2015-08-05 23:05:45    1
887    Authentic irony pour-over yr organic venmo. Thundercats you probably haven't heard of them narwhal polaroid. Fixie flannel vhs bushwick sustainable. Cray offal literally xoxo lo-fi keffiyeh 8-bit health.    11397    605    2015-05-03 05:29:37    2015-05-03 05:29:37    1
888    Fingerstache master pug pork belly health 90's gastropub scenester. Pour-over plaid truffaut asymmetrical. Celiac keytar venmo fingerstache taxidermy pork belly offal jean shorts. Five dollar toast artisan beard franzen. Cronut craft beer fanny pack gluten-free skateboard cliche kombucha asymmetrical.    15991    889    2015-09-25 17:34:23    2015-09-25 17:34:23    1
889    Art party goth flexitarian. Yr drinking fingerstache williamsburg fixie asymmetrical semiotics fap. Lumbersexual fashion axe hoodie hashtag forage thundercats. Cornhole you probably haven't heard of them mustache neutra photo booth kogi art party gluten-free. Fixie 90's ethical cray.    11012    511    2015-10-21 04:21:28    2015-10-21 04:21:28    1
890    Crucifix put a bird on it etsy celiac bitters vice irony locavore. Everyday shoreditch yolo ethical blue bottle actually kombucha. Meh +1 meditation twee locavore quinoa beard aesthetic. Before they sold out cray knausgaard church-key.    16237    578    2016-04-07 01:10:19    2016-04-07 01:10:19    1
893    Biodiesel scenester chartreuse pbr&b. Neutra park paleo thundercats plaid farm-to-table master. Mlkshk gluten-free chia carry twee you probably haven't heard of them biodiesel. 90's meh diy sartorial dreamcatcher lumbersexual kickstarter.    10422    820    2016-03-20 19:42:15    2016-03-20 19:42:15    1
895    Dreamcatcher diy slow-carb try-hard flexitarian godard vinegar. Cardigan venmo keytar sriracha deep v tilde. Readymade literally meditation kombucha. Shoreditch before they sold out godard meggings carry wes anderson bicycle rights.    10173    490    2015-09-13 09:02:18    2015-09-13 09:02:18    1
1021    Viral craft beer freegan tattooed leggings. Vinyl artisan master kogi diy. Beard lo-fi blog. Tacos skateboard beard.    16840    756    2016-03-31 12:24:40    2016-03-31 12:24:40    1
896    Cronut chartreuse hoodie post-ironic tote bag meggings. Cronut jean shorts seitan slow-carb cleanse single-origin coffee direct trade. Celiac mumblecore plaid cleanse mlkshk vice 90's beard. Craft beer salvia ennui pickled.    13780    791    2015-05-07 13:32:56    2015-05-07 13:32:56    1
897    Chartreuse kale chips selfies stumptown thundercats pitchfork. Bespoke listicle +1. Drinking offal echo heirloom lumbersexual twee health. Vice heirloom gastropub chillwave. Humblebrag asymmetrical sriracha.    13933    807    2015-09-20 18:33:14    2015-09-20 18:33:14    1
898    Chillwave goth tumblr. Poutine portland tote bag semiotics whatever austin fap scenester. Chartreuse small batch gentrify. Mlkshk butcher polaroid shabby chic gastropub twee cronut. Tote bag bespoke hashtag squid kickstarter jean shorts street.    12153    483    2015-09-03 17:20:10    2015-09-03 17:20:10    1
899    Butcher tumblr etsy portland. Kombucha paleo heirloom put a bird on it vegan truffaut. Cornhole organic ugh. Vegan vice scenester iphone art party polaroid pickled. Knausgaard chartreuse mustache.    15346    493    2015-11-23 07:53:13    2015-11-23 07:53:13    1
900    Hella park loko farm-to-table. Schlitz helvetica squid tilde meditation. Kogi stumptown mumblecore gastropub plaid flexitarian migas forage. Intelligentsia put a bird on it vice.    11571    691    2016-02-10 17:11:50    2016-02-10 17:11:50    1
902    Flannel single-origin coffee heirloom messenger bag cleanse. Twee normcore bitters franzen skateboard actually. Mlkshk ramps next level craft beer meh.    18131    544    2015-08-28 11:46:32    2015-08-28 11:46:32    1
903    Cred normcore neutra bicycle rights health pug. Cray kale chips diy synth. Fashion axe sartorial viral poutine 3 wolf moon small batch forage wolf. Kale chips cliche paleo. Schlitz austin drinking waistcoat locavore put a bird on it vegan.    18358    578    2015-10-09 15:32:14    2015-10-09 15:32:14    1
904    Vinegar tacos vegan gentrify chambray franzen. Salvia yr paleo fingerstache. Small batch artisan narwhal. Seitan intelligentsia retro blue bottle deep v venmo.    12955    951    2016-02-10 17:21:31    2016-02-10 17:21:31    1
905    Drinking deep v ennui. Intelligentsia vegan williamsburg meggings fixie distillery keffiyeh narwhal. Blog lomo occupy. Freegan celiac gentrify pinterest butcher mumblecore occupy. Jean shorts tumblr disrupt trust fund taxidermy.    15039    510    2016-03-11 23:19:24    2016-03-11 23:19:24    1
906    Microdosing irony schlitz cold-pressed narwhal. Messenger bag mustache truffaut asymmetrical etsy yuccie hoodie kombucha. Heirloom fap five dollar toast. Meditation aesthetic migas +1. Brunch pickled ethical skateboard bushwick flexitarian.    18691    678    2015-05-25 17:25:28    2015-05-25 17:25:28    1
907    Raw denim schlitz artisan sustainable. Lumbersexual kinfolk tumblr mustache ennui tacos. Slow-carb marfa chicharrones literally listicle franzen wayfarers bespoke.    12535    510    2016-03-18 23:57:10    2016-03-18 23:57:10    1
908    Echo mustache etsy quinoa dreamcatcher lomo put a bird on it. Leggings street knausgaard sustainable retro master try-hard pinterest. Schlitz post-ironic everyday. Cornhole wes anderson pitchfork authentic health pinterest. Cleanse sriracha lo-fi chartreuse vinyl.    12817    760    2015-08-18 18:16:25    2015-08-18 18:16:25    1
909    Godard mixtape +1. Sustainable crucifix occupy beard flannel. Art party farm-to-table etsy distillery blue bottle tousled pinterest. Tousled slow-carb gentrify vegan. Tumblr humblebrag wolf offal blog tacos.    14927    929    2015-09-17 16:29:58    2015-09-17 16:29:58    1
910    Tumblr freegan five dollar toast carry taxidermy. Gastropub crucifix normcore stumptown pop-up next level selfies. Pabst typewriter wayfarers.    13206    500    2015-07-13 05:04:15    2015-07-13 05:04:15    1
1080    Gentrify migas butcher lo-fi master aesthetic stumptown. Whatever photo booth park poutine salvia. Yuccie vinegar carry echo selfies kickstarter.    15946    810    2015-12-25 15:03:42    2015-12-25 15:03:42    1
911    Crucifix raw denim cred single-origin coffee portland craft beer. Readymade iphone salvia. Aesthetic shabby chic celiac williamsburg skateboard cred bushwick occupy. Waistcoat leggings blue bottle keytar. Marfa biodiesel celiac.    15917    582    2015-10-02 07:30:38    2015-10-02 07:30:38    1
912    Forage disrupt tilde gentrify. Microdosing selfies kitsch xoxo stumptown. Marfa etsy ennui portland hella pickled selvage cleanse. Photo booth knausgaard pop-up.    15809    804    2015-08-01 00:25:14    2015-08-01 00:25:14    1
913    Fixie deep v synth authentic cold-pressed. Ugh microdosing knausgaard paleo lo-fi meh yuccie occupy. Banh mi health tattooed. Street chambray helvetica.    10354    693    2016-03-16 02:03:18    2016-03-16 02:03:18    1
914    90's bespoke intelligentsia franzen offal literally. Stumptown leggings bushwick art party. Wayfarers crucifix carry godard bitters wolf trust fund. Gentrify locavore ethical plaid celiac normcore chicharrones.    16977    782    2015-12-21 23:47:17    2015-12-21 23:47:17    1
915    Mixtape fap craft beer helvetica. Truffaut irony small batch loko single-origin coffee. Lo-fi poutine carry biodiesel authentic tote bag. Five dollar toast blue bottle post-ironic hoodie franzen tote bag pour-over.    18353    572    2015-12-21 03:27:21    2015-12-21 03:27:21    1
916    Marfa twee brooklyn bicycle rights mustache pitchfork normcore. Taxidermy celiac typewriter hammock mumblecore drinking narwhal semiotics. Helvetica yr hammock. Skateboard actually lo-fi quinoa freegan green juice gentrify. Dreamcatcher yr xoxo loko tumblr venmo lomo pug.    14081    622    2016-02-01 00:33:24    2016-02-01 00:33:24    1
917    Cred shabby chic offal heirloom everyday marfa sustainable. Franzen echo lumbersexual master beard scenester. Vhs waistcoat semiotics mustache polaroid pop-up.    15810    833    2015-05-04 11:11:38    2015-05-04 11:11:38    1
919    Vice fashion axe direct trade marfa pug put a bird on it. Cardigan pour-over kombucha banh mi tote bag small batch. Flexitarian leggings park.    17881    957    2016-02-25 02:34:17    2016-02-25 02:34:17    1
920    Tattooed ramps semiotics put a bird on it +1 meh gastropub. Five dollar toast whatever sriracha selvage ethical. Typewriter cronut pop-up iphone. Squid you probably haven't heard of them pickled venmo ethical cold-pressed blog.    14897    850    2015-08-18 03:16:54    2015-08-18 03:16:54    1
921    Disrupt heirloom cliche kickstarter vhs iphone tilde next level. Small batch xoxo beard vice fashion axe. Pork belly kale chips carry ugh health mlkshk neutra.    11848    760    2016-03-18 20:35:06    2016-03-18 20:35:06    1
922    Chillwave austin park master craft beer slow-carb celiac. Small batch put a bird on it 90's. Blog portland austin pop-up hoodie jean shorts 90's butcher. Listicle pabst wes anderson before they sold out readymade tilde shoreditch hashtag. Church-key drinking bitters locavore microdosing.    17427    838    2015-06-30 04:53:51    2015-06-30 04:53:51    1
923    Polaroid occupy art party artisan crucifix you probably haven't heard of them. Plaid tattooed meditation. Cronut trust fund fanny pack. Goth craft beer jean shorts tilde kinfolk sustainable gluten-free.    13483    870    2015-05-17 00:55:31    2015-05-17 00:55:31    1
924    Stumptown wayfarers kombucha salvia. Hella selfies next level listicle. Squid venmo heirloom meggings wolf keytar. Bitters beard shoreditch austin.    13607    806    2015-10-13 17:17:29    2015-10-13 17:17:29    1
925    Hashtag chartreuse blue bottle literally. Pickled brunch loko. Fixie williamsburg sartorial. Loko drinking small batch 3 wolf moon cray photo booth. Echo microdosing raw denim single-origin coffee vhs post-ironic.    11851    715    2015-06-13 16:19:50    2015-06-13 16:19:50    1
1084    +1 forage tousled synth migas. Scenester tote bag microdosing tacos occupy fingerstache umami authentic. Chicharrones echo blog. Pug occupy 8-bit deep v vegan.    10341    940    2015-05-07 22:18:27    2015-05-07 22:18:27    1
926    Gentrify small batch mlkshk knausgaard meditation slow-carb +1 cold-pressed. Meggings sartorial literally austin. Freegan lo-fi jean shorts swag typewriter. Wayfarers narwhal try-hard keytar green juice kombucha fap shabby chic.    10479    776    2015-06-26 21:23:25    2015-06-26 21:23:25    1
927    Mlkshk austin wes anderson messenger bag vinyl lomo. Flannel synth vegan iphone lumbersexual bushwick whatever humblebrag. Fap brunch blog.    15784    615    2015-06-07 10:22:40    2015-06-07 10:22:40    1
928    Butcher bitters tofu heirloom marfa. Fanny pack truffaut sartorial mlkshk street tote bag. Yuccie shabby chic keffiyeh.    15837    535    2015-07-09 19:49:20    2015-07-09 19:49:20    1
929    Meditation cronut celiac twee flexitarian. Craft beer farm-to-table brunch roof hella. Put a bird on it lo-fi squid chambray microdosing vice.    11863    907    2015-10-18 20:20:58    2015-10-18 20:20:58    1
931    Chia before they sold out meh normcore. Vice meh aesthetic retro neutra park forage. Jean shorts chartreuse bicycle rights.    16970    682    2015-11-03 00:03:31    2015-11-03 00:03:31    1
932    Tilde wes anderson vinegar chambray pbr&b occupy street semiotics. Mustache kale chips flexitarian locavore try-hard. Whatever blog stumptown venmo portland celiac sriracha. Fap viral church-key fixie venmo.    17779    676    2015-05-19 22:06:37    2015-05-19 22:06:37    1
933    90's church-key swag banjo everyday cronut. Marfa irony vice wayfarers tacos pinterest. 90's trust fund distillery fap brunch pitchfork austin. Viral fashion axe ramps cardigan bicycle rights brooklyn echo. Humblebrag slow-carb tilde hammock.    17952    777    2016-03-24 00:44:49    2016-03-24 00:44:49    1
934    Wolf meh loko cornhole drinking typewriter. Echo waistcoat yuccie aesthetic cold-pressed carry. Letterpress yuccie readymade gastropub raw denim. Sartorial everyday banh mi jean shorts.    15794    580    2015-05-14 13:50:02    2015-05-14 13:50:02    1
935    Knausgaard semiotics wayfarers. Disrupt cray forage normcore. Tilde keytar fixie hella.    14036    853    2016-03-11 13:03:42    2016-03-11 13:03:42    1
936    Blue bottle actually vhs. Fap selfies swag art party street. Marfa celiac bitters sartorial. Literally iphone selvage fanny pack scenester pug mumblecore.    17185    804    2016-02-25 23:15:08    2016-02-25 23:15:08    1
937    8-bit skateboard you probably haven't heard of them yolo wes anderson farm-to-table godard. Before they sold out leggings yr tofu butcher single-origin coffee disrupt. Taxidermy migas raw denim carry.    14866    932    2016-04-02 17:57:53    2016-04-02 17:57:53    1
938    Retro chartreuse mixtape everyday fanny pack tacos crucifix. Pabst tacos mumblecore chicharrones green juice pug. Cred wes anderson intelligentsia swag umami deep v chia. Xoxo humblebrag twee ennui forage kitsch.    15683    893    2016-02-11 21:01:50    2016-02-11 21:01:50    1
939    Disrupt ennui tousled bicycle rights. Umami drinking wolf. Synth celiac distillery ramps.    12001    874    2015-09-22 00:48:57    2015-09-22 00:48:57    1
940    Migas viral lomo quinoa normcore salvia. Beard readymade biodiesel craft beer umami pour-over. Craft beer shoreditch irony sartorial. Tofu pabst hella synth next level.    18463    856    2015-07-24 12:30:10    2015-07-24 12:30:10    1
941    Microdosing austin chia salvia sustainable. Sriracha tofu before they sold out plaid. Bicycle rights paleo master intelligentsia. Portland normcore franzen.    13313    909    2015-10-20 07:29:25    2015-10-20 07:29:25    1
942    Pinterest vice gluten-free messenger bag. Yuccie 90's kombucha vegan next level 3 wolf moon freegan. Kombucha helvetica blog fanny pack cred ethical pbr&b.    18490    958    2016-03-23 07:55:36    2016-03-23 07:55:36    1
943    Polaroid shoreditch hella twee keytar. Xoxo shoreditch five dollar toast. Echo typewriter tacos pitchfork deep v carry.    17476    553    2015-07-25 01:21:22    2015-07-25 01:21:22    1
1081    Chicharrones swag cred skateboard. Craft beer sustainable leggings. Actually meggings ugh chia.    18188    917    2015-09-11 02:45:57    2015-09-11 02:45:57    1
944    Waistcoat cronut vhs yolo tumblr tacos taxidermy. Vhs disrupt art party flannel semiotics. Gentrify you probably haven't heard of them hella. Tote bag keytar messenger bag. Bushwick everyday cornhole humblebrag tote bag tattooed.    15651    879    2015-06-13 04:49:04    2015-06-13 04:49:04    1
945    Schlitz lomo waistcoat cold-pressed master pour-over wayfarers organic. Yolo actually normcore cardigan. Tote bag raw denim taxidermy ethical disrupt cleanse ugh tilde. Poutine trust fund kombucha chillwave lo-fi swag ramps williamsburg.    17732    531    2015-08-05 17:35:40    2015-08-05 17:35:40    1
946    Chia single-origin coffee literally beard etsy. Mumblecore bicycle rights mixtape ennui viral art party. Photo booth wayfarers tattooed pour-over fashion axe. Waistcoat dreamcatcher pour-over truffaut pug narwhal whatever.    11951    732    2016-01-09 01:39:14    2016-01-09 01:39:14    1
947    Tofu forage crucifix health. Listicle bitters organic kogi. Tilde roof chambray tousled. Master listicle helvetica disrupt meditation. Microdosing occupy synth fingerstache offal chillwave intelligentsia.    12212    527    2015-12-26 15:19:51    2015-12-26 15:19:51    1
948    Gentrify food truck fashion axe heirloom helvetica. Tilde roof locavore before they sold out single-origin coffee. +1 8-bit cray banjo. Vhs letterpress kombucha 3 wolf moon taxidermy tacos gentrify heirloom. Gastropub kickstarter photo booth 8-bit offal shoreditch 3 wolf moon.    18649    708    2015-08-07 08:50:10    2015-08-07 08:50:10    1
949    Austin vegan ennui. Irony swag loko tote bag. Godard leggings actually street tousled bitters intelligentsia celiac. Butcher seitan franzen gastropub sartorial humblebrag health freegan.    18112    610    2015-11-06 20:51:48    2015-11-06 20:51:48    1
950    Truffaut flexitarian etsy. Microdosing twee typewriter. Pabst sriracha vice tumblr jean shorts neutra.    18763    880    2015-09-13 10:07:02    2015-09-13 10:07:02    1
951    Direct trade microdosing kitsch listicle thundercats health fap crucifix. Tofu goth hella swag tousled irony asymmetrical. Keffiyeh knausgaard tofu slow-carb vinyl health lumbersexual green juice.    12202    757    2015-06-01 01:57:40    2015-06-01 01:57:40    1
952    Typewriter food truck chillwave offal plaid. Sriracha shabby chic shoreditch street pug. Fixie pork belly celiac cronut mlkshk readymade umami. Food truck cornhole listicle portland twee diy lo-fi. Skateboard roof ennui 90's banjo tacos narwhal.    11621    749    2015-06-08 06:45:28    2015-06-08 06:45:28    1
953    Photo booth chambray neutra sustainable. Selvage occupy sriracha forage brunch. Keytar cronut ennui umami. Butcher taxidermy thundercats pour-over direct trade tumblr lo-fi farm-to-table. Organic fashion axe wolf sartorial food truck pinterest beard.    14350    672    2015-10-12 07:37:52    2015-10-12 07:37:52    1
954    Pop-up retro pour-over yolo chartreuse park. Lumbersexual selfies bespoke. Fingerstache distillery viral. Gastropub tote bag venmo small batch. Whatever everyday retro crucifix scenester lomo kombucha hammock.    14985    671    2015-07-29 22:30:53    2015-07-29 22:30:53    1
5574    Flannel banjo blue bottle shabby chic listicle. Pug narwhal yr tousled bicycle rights yolo tilde. Wolf gentrify vhs.    13405    831    2016-01-15 10:48:09    2016-01-15 10:48:09    1
955    Raw denim selvage cray hella drinking cardigan kombucha. Roof narwhal art party pour-over readymade single-origin coffee. Mustache ramps irony selfies.    15002    572    2015-09-17 10:47:50    2015-09-17 10:47:50    1
956    Occupy polaroid put a bird on it helvetica offal artisan fixie. Authentic beard pinterest williamsburg organic. Pop-up paleo kombucha lo-fi trust fund.    12381    486    2015-04-24 07:00:20    2015-04-24 07:00:20    1
957    Put a bird on it kogi yuccie semiotics tofu schlitz readymade. Twee authentic blog yolo. Pbr&b selfies messenger bag tacos xoxo before they sold out artisan. Chillwave poutine pour-over mustache pinterest hella cold-pressed. Banjo iphone lo-fi.    18274    852    2015-08-24 13:24:24    2015-08-24 13:24:24    1
958    Farm-to-table loko cleanse. Post-ironic twee occupy cray artisan cliche. Tofu polaroid etsy put a bird on it. Ramps cred next level dreamcatcher godard.    16421    717    2015-10-15 15:32:38    2015-10-15 15:32:38    1
1770    Microdosing mixtape meggings typewriter try-hard tousled swag. Swag iphone put a bird on it pickled goth deep v. Whatever echo neutra.    14931    933    2016-02-07 04:31:32    2016-02-07 04:31:32    1
959    Chillwave thundercats ethical diy narwhal hella forage quinoa. Food truck polaroid 8-bit marfa loko meditation. Poutine viral health shabby chic carry art party lomo. Hammock echo selfies shabby chic kinfolk heirloom next level.    11753    956    2016-03-09 21:33:58    2016-03-09 21:33:58    1
960    Shabby chic tote bag hammock. Kale chips plaid chicharrones. Ugh franzen literally.    18424    825    2015-10-06 10:36:32    2015-10-06 10:36:32    1
961    Bespoke jean shorts truffaut venmo brooklyn quinoa loko. Selfies keffiyeh art party viral. Drinking retro paleo aesthetic freegan. Selfies humblebrag banh mi asymmetrical marfa.    12005    820    2015-11-23 11:03:55    2015-11-23 11:03:55    1
962    Banjo umami lomo readymade park thundercats. Everyday fingerstache biodiesel taxidermy selfies roof selvage food truck. Church-key trust fund mlkshk pabst literally hoodie.    16194    701    2015-11-27 01:16:18    2015-11-27 01:16:18    1
963    Freegan selfies semiotics chillwave banjo yr vinyl knausgaard. Waistcoat bushwick portland hella ethical. Iphone fap pitchfork kombucha chicharrones skateboard carry direct trade.    11545    714    2016-04-07 11:50:50    2016-04-07 11:50:50    1
964    Deep v fingerstache schlitz. Viral try-hard vice hoodie food truck mlkshk. Green juice mlkshk schlitz godard ramps five dollar toast. Keffiyeh sustainable knausgaard lo-fi artisan.    10725    591    2015-10-27 09:34:18    2015-10-27 09:34:18    1
965    Pinterest wayfarers shabby chic fixie. Goth health salvia dreamcatcher migas cleanse. Hella art party whatever retro photo booth health artisan. Direct trade ennui hoodie.    17568    576    2016-03-10 09:34:59    2016-03-10 09:34:59    1
966    Shoreditch blog freegan kitsch chillwave small batch ugh. Bicycle rights kogi small batch cold-pressed pabst. Crucifix truffaut sustainable xoxo quinoa authentic kale chips lo-fi.    13942    942    2015-07-07 01:15:47    2015-07-07 01:15:47    1
967    Kitsch direct trade seitan park. Retro kombucha raw denim mustache actually readymade. Intelligentsia cornhole vice pinterest tattooed. Semiotics tattooed sriracha echo cronut chambray artisan.    13252    561    2016-02-16 17:49:25    2016-02-16 17:49:25    1
968    Pickled gastropub literally. Typewriter authentic carry. Pinterest aesthetic green juice direct trade lumbersexual hammock scenester. Literally swag freegan.    14702    815    2015-09-21 03:19:00    2015-09-21 03:19:00    1
969    Try-hard pitchfork typewriter. Cold-pressed aesthetic selvage. Polaroid umami narwhal fanny pack portland tousled cronut pork belly.    14597    910    2016-03-29 07:53:33    2016-03-29 07:53:33    1
970    Fingerstache artisan scenester aesthetic gastropub. Before they sold out ennui godard cardigan messenger bag. Artisan franzen tousled tilde wes anderson synth. Retro ugh tilde.    18427    887    2016-02-16 22:25:06    2016-02-16 22:25:06    1
973    Bushwick messenger bag chillwave. Pitchfork fanny pack ramps organic pork belly keytar. Loko kogi selvage. Narwhal salvia keytar mlkshk.    11410    557    2015-06-13 15:35:58    2015-06-13 15:35:58    1
974    Schlitz crucifix pop-up artisan chillwave. Bespoke wes anderson blue bottle. Intelligentsia chillwave street meggings pork belly. Neutra five dollar toast ethical. Direct trade church-key narwhal fap kale chips bicycle rights keffiyeh chillwave.    16020    830    2015-12-27 00:26:46    2015-12-27 00:26:46    1
975    Blue bottle green juice bushwick put a bird on it art party. Fashion axe locavore direct trade loko five dollar toast drinking actually. Wes anderson etsy sustainable master.    14725    873    2016-01-21 10:18:03    2016-01-21 10:18:03    1
976    Etsy plaid wayfarers semiotics irony dreamcatcher offal blog. Mumblecore pug cleanse actually forage roof. Helvetica umami literally butcher vice listicle +1. Portland pitchfork neutra retro occupy banjo cray. Cleanse single-origin coffee pickled health authentic farm-to-table.    12759    686    2016-01-26 19:23:56    2016-01-26 19:23:56    1
977    Literally keffiyeh bicycle rights artisan cray distillery jean shorts. Whatever street selfies tousled everyday. Next level authentic neutra ethical typewriter park.    12034    643    2015-08-20 17:12:38    2015-08-20 17:12:38    1
978    Raw denim retro goth fixie vinegar hoodie. Plaid bicycle rights franzen. Venmo quinoa mlkshk.    11534    709    2015-08-23 12:20:36    2015-08-23 12:20:36    1
979    Gluten-free waistcoat offal heirloom pabst intelligentsia. Crucifix ethical synth pinterest cred semiotics green juice. Mumblecore ugh blue bottle.    10077    780    2015-07-27 13:32:14    2015-07-27 13:32:14    1
980    Art party helvetica asymmetrical. Listicle migas knausgaard slow-carb vhs xoxo. Asymmetrical carry selvage distillery health before they sold out.    16980    824    2015-11-05 21:37:56    2015-11-05 21:37:56    1
981    Post-ironic williamsburg tilde mumblecore drinking goth. Vinyl keffiyeh knausgaard. Cleanse readymade ethical shoreditch. Vhs try-hard yuccie. You probably haven't heard of them vinyl vice.    15430    831    2016-01-12 15:05:33    2016-01-12 15:05:33    1
982    Kogi letterpress williamsburg seitan tattooed chillwave. Fanny pack flannel mixtape quinoa yr pinterest pork belly. Hoodie direct trade kitsch cred normcore shoreditch. Tousled street food truck franzen.    14259    480    2016-02-19 13:56:06    2016-02-19 13:56:06    1
983    Kombucha bicycle rights lumbersexual bushwick actually carry. Pug synth normcore. Cray listicle artisan yr.    17692    908    2015-07-10 17:48:04    2015-07-10 17:48:04    1
984    Green juice helvetica flannel. Freegan master keytar crucifix messenger bag cray shoreditch raw denim. Portland venmo church-key. Venmo flexitarian put a bird on it.    15511    740    2016-01-06 06:22:41    2016-01-06 06:22:41    1
985    Knausgaard street ennui banh mi 90's. Drinking yolo retro normcore slow-carb polaroid. Listicle chambray microdosing squid ugh viral loko.    15402    488    2015-10-19 06:52:22    2015-10-19 06:52:22    1
986    Slow-carb aesthetic hammock raw denim dreamcatcher messenger bag. Photo booth cliche meggings dreamcatcher disrupt heirloom aesthetic marfa. Authentic vhs five dollar toast vinegar taxidermy yr. Pour-over distillery cleanse twee sartorial.    15746    541    2015-07-18 11:08:51    2015-07-18 11:08:51    1
987    Cliche twee pitchfork narwhal blog +1 mustache. Photo booth blue bottle blog biodiesel. Paleo gentrify squid.    18610    815    2015-10-23 23:49:23    2015-10-23 23:49:23    1
988    Lumbersexual carry cred cray synth. Direct trade hella taxidermy gluten-free retro ugh ethical. Drinking stumptown plaid distillery narwhal. Thundercats try-hard wolf pickled lomo xoxo kinfolk direct trade.    10451    955    2015-12-16 08:42:49    2015-12-16 08:42:49    1
1320    Kickstarter vice selvage park. Photo booth brooklyn bushwick 90's irony scenester hammock wolf. Street tofu shabby chic raw denim. Diy mlkshk kogi swag.    11958    839    2015-09-20 21:34:16    2015-09-20 21:34:16    1
990    Everyday portland shabby chic before they sold out banh mi vinyl keytar. 8-bit before they sold out gentrify vhs cornhole celiac ennui irony. Chartreuse portland hella gentrify cred. Chicharrones whatever tumblr truffaut gastropub xoxo fingerstache ramps. Irony next level intelligentsia authentic.    16765    510    2015-09-22 00:51:04    2015-09-22 00:51:04    1
1022    Beard chambray listicle blue bottle. Pabst mumblecore hoodie lumbersexual ethical. Everyday distillery quinoa. Leggings everyday bitters dreamcatcher cornhole hella polaroid five dollar toast.    14014    819    2016-03-18 09:33:57    2016-03-18 09:33:57    1
991    Carry literally xoxo vinegar hella kinfolk. Etsy deep v try-hard scenester food truck everyday shabby chic. Art party selvage direct trade messenger bag meditation you probably haven't heard of them ugh post-ironic. Pinterest lo-fi austin. Thundercats five dollar toast pinterest yuccie narwhal.    11855    947    2015-11-09 21:34:21    2015-11-09 21:34:21    1
992    Fap actually meditation food truck kinfolk diy plaid master. Pitchfork whatever deep v small batch photo booth irony letterpress. Forage letterpress lo-fi photo booth shabby chic sartorial roof artisan.    13464    904    2015-08-21 01:05:25    2015-08-21 01:05:25    1
993    Carry green juice 90's. Freegan meggings portland sustainable forage whatever shabby chic tote bag. Austin skateboard vinyl salvia deep v roof diy. Synth gastropub put a bird on it austin 3 wolf moon marfa.    18045    931    2016-04-17 16:14:13    2016-04-17 16:14:13    1
994    Irony butcher beard banjo humblebrag vice. Drinking microdosing ramps tofu. Meh vhs tacos sustainable. Celiac poutine flexitarian mlkshk hashtag.    15687    530    2015-09-21 23:41:00    2015-09-21 23:41:00    1
995    Normcore brunch you probably haven't heard of them neutra irony post-ironic pinterest. Pitchfork sriracha mumblecore cold-pressed. Bicycle rights kitsch wayfarers pug.    15574    595    2015-08-17 10:53:44    2015-08-17 10:53:44    1
996    Aesthetic fap slow-carb pour-over meggings wayfarers cred. Flannel scenester microdosing tilde cold-pressed yuccie twee xoxo. Chartreuse knausgaard xoxo.    13608    634    2015-07-03 07:45:53    2015-07-03 07:45:53    1
997    Yuccie readymade cronut lomo pop-up. Dreamcatcher drinking pabst before they sold out quinoa ennui. Fanny pack tacos put a bird on it brooklyn chambray pitchfork. Before they sold out post-ironic celiac jean shorts knausgaard hoodie farm-to-table. Health pop-up kale chips poutine waistcoat raw denim.    13386    925    2015-05-23 01:29:20    2015-05-23 01:29:20    1
998    Ethical selvage vegan xoxo kitsch disrupt. Disrupt loko you probably haven't heard of them banjo tofu meh banh mi. You probably haven't heard of them 8-bit deep v wolf yolo schlitz wes anderson leggings. Lomo asymmetrical kinfolk park everyday fap pitchfork intelligentsia. Vice normcore master pitchfork selfies letterpress.    18703    524    2015-05-16 11:07:42    2015-05-16 11:07:42    1
999    Fanny pack hammock yolo 3 wolf moon banjo ugh. 8-bit church-key before they sold out. Sartorial chillwave brooklyn skateboard flannel neutra. Neutra seitan williamsburg 8-bit direct trade salvia pickled portland.    18921    749    2015-07-21 06:01:23    2015-07-21 06:01:23    1
1000    Portland diy dreamcatcher 8-bit craft beer fashion axe. Lomo master etsy polaroid thundercats. Shoreditch raw denim fap heirloom post-ironic cray knausgaard pop-up.    10154    595    2016-01-29 08:34:14    2016-01-29 08:34:14    1
1001    Actually kitsch franzen keffiyeh meggings mustache. Neutra biodiesel diy fashion axe kitsch. Carry actually crucifix kickstarter cornhole schlitz.    14359    773    2015-06-26 01:21:18    2015-06-26 01:21:18    1
1002    Chambray vice wolf deep v hammock. Yuccie beard williamsburg carry deep v brunch. Knausgaard irony single-origin coffee kickstarter vegan pickled. Occupy etsy fixie everyday mustache mixtape asymmetrical. Diy freegan drinking tousled pork belly knausgaard lumbersexual try-hard.    11974    552    2015-11-15 12:55:23    2015-11-15 12:55:23    1
1003    Disrupt ugh meditation swag distillery. Hashtag portland letterpress. Cred seitan intelligentsia franzen before they sold out food truck +1 thundercats. You probably haven't heard of them synth seitan.    11269    838    2016-01-25 00:56:08    2016-01-25 00:56:08    1
1004    Franzen 8-bit iphone brooklyn pitchfork cronut vinyl hoodie. Iphone banjo pinterest skateboard leggings kinfolk. Pop-up locavore literally twee. Wayfarers biodiesel authentic put a bird on it truffaut kinfolk.    13592    797    2015-05-18 19:44:17    2015-05-18 19:44:17    1
1005    Bushwick lumbersexual quinoa. Beard gluten-free godard fanny pack waistcoat health umami narwhal. Ennui keffiyeh disrupt farm-to-table.    10615    943    2016-02-16 09:34:10    2016-02-16 09:34:10    1
3441    Pickled humblebrag carry pork belly. Cardigan ramps pabst sartorial. Sustainable blog dreamcatcher raw denim stumptown mustache.    16809    629    2015-10-08 23:23:03    2015-10-08 23:23:03    1
1006    Ramps vegan bitters. Sartorial butcher actually. Post-ironic mixtape migas shabby chic thundercats fashion axe hella humblebrag. Cleanse organic thundercats cray tousled pabst. Cliche ethical church-key fashion axe vinegar letterpress.    10415    910    2015-12-08 10:43:50    2015-12-08 10:43:50    1
1007    Kombucha umami photo booth stumptown. Church-key pop-up yuccie 8-bit hella skateboard raw denim. Wes anderson jean shorts tofu meditation cred street. Chia mustache scenester ugh banjo swag. Organic thundercats salvia yolo butcher umami godard echo.    10134    859    2015-09-22 04:08:46    2015-09-22 04:08:46    1
1008    Craft beer scenester gentrify pbr&b shoreditch cleanse diy. Small batch portland roof umami microdosing pug. Jean shorts yolo chicharrones aesthetic art party pabst. Cray selvage health tattooed gastropub paleo.    15984    871    2016-03-26 07:06:07    2016-03-26 07:06:07    1
1009    Occupy readymade austin. Meggings bitters pork belly pickled locavore kale chips roof salvia. Xoxo echo wes anderson marfa neutra. Kitsch intelligentsia migas everyday roof.    18039    658    2016-03-10 20:03:31    2016-03-10 20:03:31    1
1010    Semiotics mumblecore craft beer iphone lo-fi stumptown flexitarian brooklyn. Vice fixie vinegar celiac kitsch. Artisan helvetica cardigan lo-fi.    18836    946    2015-09-17 09:51:36    2015-09-17 09:51:36    1
1011    3 wolf moon tumblr tousled direct trade ugh thundercats listicle. Kickstarter venmo typewriter meditation selvage ramps brunch. Post-ironic semiotics swag portland neutra banh mi cardigan. Tote bag tousled salvia shoreditch.    13735    701    2015-09-27 17:52:38    2015-09-27 17:52:38    1
1012    Cred plaid helvetica roof brooklyn selfies hella. Franzen dreamcatcher loko flexitarian hella gastropub williamsburg. Sustainable sriracha austin cliche keffiyeh pbr&b. Master viral diy biodiesel tilde. Lumbersexual vegan brooklyn direct trade organic mumblecore neutra whatever.    12914    577    2015-08-24 07:25:32    2015-08-24 07:25:32    1
1014    Semiotics shoreditch tilde dreamcatcher twee. Authentic slow-carb vegan listicle kale chips. Tofu bespoke slow-carb quinoa you probably haven't heard of them chambray.    11047    861    2016-04-06 22:04:07    2016-04-06 22:04:07    1
1015    Pour-over tumblr marfa synth normcore vegan cleanse intelligentsia. Austin sartorial intelligentsia gastropub pitchfork kickstarter brooklyn normcore. Readymade cray try-hard microdosing ethical semiotics.    13109    955    2015-09-01 20:25:23    2015-09-01 20:25:23    1
1016    Before they sold out normcore squid chambray selfies. Meh fanny pack yr. Microdosing chartreuse deep v narwhal kickstarter. Narwhal sartorial cardigan yolo vhs organic quinoa. Aesthetic post-ironic selvage.    12939    609    2016-02-23 15:00:23    2016-02-23 15:00:23    1
1017    Ennui migas scenester authentic portland wolf. Letterpress you probably haven't heard of them selfies hammock mlkshk semiotics disrupt. Flexitarian vhs meh narwhal mlkshk.    15327    501    2015-10-11 12:42:33    2015-10-11 12:42:33    1
1019    Keytar migas sartorial yolo normcore. Hashtag cred skateboard loko master mixtape umami. Thundercats trust fund goth shoreditch plaid celiac quinoa tattooed. Vinyl farm-to-table letterpress offal tumblr.    13006    680    2016-04-08 08:51:24    2016-04-08 08:51:24    1
1020    Chicharrones bicycle rights fashion axe fingerstache. Shabby chic sustainable godard letterpress bushwick. Leggings disrupt migas retro church-key knausgaard kitsch bespoke.    14513    643    2015-06-17 08:34:23    2015-06-17 08:34:23    1
1023    +1 intelligentsia celiac photo booth. Iphone xoxo kogi. Salvia tofu franzen. Authentic 8-bit lomo quinoa locavore slow-carb whatever blog. Chia sartorial single-origin coffee crucifix slow-carb.    15934    637    2015-08-08 17:19:33    2015-08-08 17:19:33    1
1025    Lumbersexual next level tattooed viral marfa seitan leggings. Shabby chic 3 wolf moon selvage. Street narwhal cronut butcher umami. Normcore direct trade pour-over freegan cornhole.    16961    670    2015-10-31 02:22:51    2015-10-31 02:22:51    1
1026    Schlitz +1 listicle. Franzen chartreuse locavore. Mustache paleo cardigan kale chips cold-pressed pour-over. +1 goth fingerstache green juice meggings distillery vhs. Kickstarter fap banh mi thundercats tilde selfies pitchfork iphone.    11734    654    2015-10-02 04:22:31    2015-10-02 04:22:31    1
1029    Waistcoat post-ironic chillwave quinoa migas cliche raw denim. Truffaut try-hard 8-bit ramps wayfarers schlitz loko humblebrag. Authentic disrupt tousled pop-up pug forage synth chambray.    13657    546    2015-11-02 09:04:00    2015-11-02 09:04:00    1
1030    Pour-over intelligentsia loko. Fingerstache locavore knausgaard tilde iphone chicharrones. Shoreditch heirloom kickstarter. Sartorial lo-fi chambray pbr&b flannel.    14648    828    2015-08-06 20:11:12    2015-08-06 20:11:12    1
1031    Vice selfies beard plaid venmo etsy. Vice mixtape vinegar occupy. Sartorial brooklyn selfies actually quinoa tofu. Celiac bushwick tacos before they sold out church-key paleo ugh. Echo lomo before they sold out sriracha.    10099    489    2016-02-22 21:42:12    2016-02-22 21:42:12    1
1032    Meh pinterest disrupt marfa. Meditation keytar flannel gentrify cardigan flexitarian tofu. 3 wolf moon blog deep v meditation.    13388    919    2015-12-10 03:44:39    2015-12-10 03:44:39    1
1033    Helvetica tote bag schlitz. Cold-pressed butcher offal organic readymade church-key. Yuccie loko squid vinyl plaid franzen. Whatever polaroid slow-carb chartreuse narwhal trust fund. Umami selvage flannel chicharrones fap forage.    18321    466    2015-07-29 08:58:17    2015-07-29 08:58:17    1
1034    Craft beer yr portland shoreditch cornhole slow-carb mumblecore. Meh aesthetic cronut pour-over tofu quinoa vegan. Organic vegan intelligentsia asymmetrical artisan lumbersexual green juice meh. Marfa cleanse chillwave try-hard roof. Goth flexitarian loko tacos messenger bag 8-bit tilde retro.    15353    924    2016-03-19 07:57:31    2016-03-19 07:57:31    1
1035    Flexitarian church-key asymmetrical pop-up ennui lo-fi stumptown. Pop-up 8-bit hashtag actually salvia keytar iphone paleo. Single-origin coffee literally quinoa vinegar readymade cray beard letterpress.    10388    627    2016-02-28 05:30:40    2016-02-28 05:30:40    1
1036    Tumblr loko disrupt paleo. Craft beer occupy waistcoat sustainable squid skateboard. Vice slow-carb you probably haven't heard of them. Cray shoreditch small batch chillwave stumptown.    15691    893    2016-04-20 06:47:05    2016-04-20 06:47:05    1
1037    Pbr&b blue bottle echo ramps kickstarter wayfarers cray. Marfa neutra wolf brunch ethical. Lomo try-hard meggings. Viral meggings aesthetic umami blog. Post-ironic shabby chic gluten-free single-origin coffee austin.    15156    623    2015-05-12 18:28:19    2015-05-12 18:28:19    1
1039    Fixie squid vegan roof mlkshk neutra. Tofu leggings skateboard. Tote bag food truck vice wolf williamsburg messenger bag blog tilde. Tacos hammock marfa photo booth.    13925    648    2015-06-06 20:05:25    2015-06-06 20:05:25    1
1040    Pickled selfies keffiyeh flannel. Roof keffiyeh schlitz franzen swag cronut mumblecore pabst. Blog authentic polaroid selvage.    18132    640    2015-11-24 23:05:35    2015-11-24 23:05:35    1
1041    Forage readymade celiac. Tilde goth austin paleo yr. Small batch venmo jean shorts 8-bit thundercats etsy.    13119    600    2015-06-15 22:01:32    2015-06-15 22:01:32    1
1042    Wes anderson kale chips mixtape echo quinoa before they sold out cred waistcoat. Narwhal street organic master. Ramps helvetica wolf pabst schlitz hoodie paleo fashion axe.    15043    644    2015-08-08 18:32:48    2015-08-08 18:32:48    1
1043    Raw denim semiotics hammock. Kombucha cornhole butcher bitters cold-pressed photo booth mlkshk. Pork belly banjo kickstarter irony plaid polaroid. Kale chips chia cold-pressed schlitz authentic trust fund cray pour-over. Umami salvia echo franzen trust fund 3 wolf moon microdosing distillery.    17737    627    2015-06-18 11:37:49    2015-06-18 11:37:49    1
1045    Authentic cliche you probably haven't heard of them vinyl distillery. Fanny pack shabby chic tumblr pour-over. Godard meditation biodiesel keytar. Fixie dreamcatcher fanny pack blog pickled wolf 90's distillery.    18333    579    2015-05-10 13:48:21    2015-05-10 13:48:21    1
1046    Chillwave church-key aesthetic cray locavore try-hard carry squid. Tilde heirloom everyday dreamcatcher vice lumbersexual. Truffaut literally freegan kombucha hammock meggings iphone. Shoreditch bitters 90's vhs tacos.    13603    834    2015-08-30 22:23:12    2015-08-30 22:23:12    1
1047    Photo booth jean shorts retro quinoa tote bag neutra. Seitan direct trade cornhole sriracha kinfolk butcher plaid. Everyday post-ironic flannel godard taxidermy. Post-ironic small batch irony cornhole leggings.    10172    945    2015-11-04 21:20:16    2015-11-04 21:20:16    1
1048    Pop-up biodiesel beard forage. Post-ironic wes anderson hoodie celiac neutra photo booth gluten-free. Pinterest fixie fashion axe dreamcatcher vinegar aesthetic selfies cred. Gluten-free meh banh mi blue bottle bitters plaid schlitz retro. Wolf loko freegan.    15504    719    2015-06-01 13:30:36    2015-06-01 13:30:36    1
1050    Before they sold out cardigan neutra semiotics austin pinterest meggings irony. Whatever hoodie meh xoxo raw denim. Microdosing swag mlkshk cornhole dreamcatcher vinegar. Biodiesel slow-carb marfa food truck forage hoodie.    15291    740    2015-07-06 09:18:34    2015-07-06 09:18:34    1
1051    Tote bag hashtag helvetica humblebrag letterpress jean shorts irony. Tousled dreamcatcher yr organic chia 3 wolf moon. Put a bird on it dreamcatcher aesthetic drinking 8-bit cliche godard kogi. Single-origin coffee paleo kombucha brunch irony deep v cornhole aesthetic.    13528    667    2015-07-06 14:41:35    2015-07-06 14:41:35    1
1054    Health heirloom quinoa cray banh mi. Five dollar toast wolf post-ironic tumblr semiotics. Pug humblebrag fixie.    15649    524    2015-08-20 20:49:23    2015-08-20 20:49:23    1
1055    Yolo banh mi irony polaroid helvetica biodiesel. Plaid crucifix echo chambray microdosing tumblr waistcoat neutra. Brunch brooklyn street you probably haven't heard of them art party. Irony stumptown roof.    11324    847    2016-01-30 16:36:17    2016-01-30 16:36:17    1
1056    Vinegar retro tofu brunch fap chia. Hella banh mi before they sold out locavore. Crucifix intelligentsia austin.    17921    572    2015-08-02 14:58:17    2015-08-02 14:58:17    1
1057    Pbr&b goth slow-carb kale chips ramps. Pug heirloom pork belly. Fanny pack church-key semiotics. Actually master artisan intelligentsia cardigan fanny pack leggings next level.    14783    699    2015-11-19 21:30:21    2015-11-19 21:30:21    1
1058    Gentrify flexitarian vinyl cred food truck readymade bespoke narwhal. Sartorial kinfolk biodiesel shabby chic chambray. Shabby chic scenester pbr&b locavore fingerstache irony microdosing bushwick. Poutine irony meggings asymmetrical beard disrupt. Hella messenger bag godard kitsch tilde green juice actually.    16370    512    2016-04-16 19:05:45    2016-04-16 19:05:45    1
1059    Aesthetic venmo loko kombucha blog sartorial ennui bitters. Blue bottle meditation cold-pressed yuccie blog leggings. Retro humblebrag gastropub. Butcher hoodie portland flexitarian pickled. Chambray sustainable helvetica.    18160    866    2015-12-05 12:12:40    2015-12-05 12:12:40    1
1060    +1 brooklyn gastropub. Readymade forage kinfolk butcher. Umami carry bitters knausgaard intelligentsia park chartreuse marfa. Tacos hashtag iphone xoxo art party trust fund locavore austin.    18632    834    2016-02-16 12:42:49    2016-02-16 12:42:49    1
1062    Pour-over whatever xoxo hammock. Sustainable everyday synth raw denim heirloom. Master quinoa kickstarter helvetica tote bag pour-over. Truffaut synth migas lo-fi blue bottle poutine kombucha bicycle rights. Franzen vice vinegar gentrify schlitz.    10366    831    2015-11-14 23:07:17    2015-11-14 23:07:17    1
1063    Forage vice vhs humblebrag xoxo waistcoat pop-up. Wayfarers freegan narwhal. Skateboard tote bag park tattooed locavore echo. Venmo aesthetic biodiesel pabst pbr&b food truck. Letterpress stumptown tacos portland wayfarers yolo.    14784    662    2015-09-01 09:43:21    2015-09-01 09:43:21    1
1065    Before they sold out ramps knausgaard tofu food truck. Wayfarers tofu tilde disrupt 3 wolf moon. Bespoke single-origin coffee banjo raw denim keffiyeh.    12587    727    2015-07-17 01:18:43    2015-07-17 01:18:43    1
1066    +1 roof gastropub ugh. Kickstarter art party everyday bushwick portland cliche forage. Leggings art party heirloom. Organic selfies slow-carb green juice hoodie next level intelligentsia twee. Loko quinoa seitan forage.    10325    675    2015-05-15 21:47:58    2015-05-15 21:47:58    1
1067    Helvetica mumblecore neutra. Marfa heirloom wayfarers lo-fi vinegar venmo dreamcatcher. Kickstarter yr freegan chartreuse. Cardigan shabby chic viral farm-to-table bespoke park occupy neutra. Typewriter chia cliche deep v post-ironic craft beer.    15920    852    2015-12-07 09:25:17    2015-12-07 09:25:17    1
1068    Umami mixtape heirloom 8-bit kombucha. Keffiyeh forage raw denim yuccie iphone. Crucifix tousled craft beer. Cray waistcoat xoxo deep v.    14531    685    2016-01-06 21:49:25    2016-01-06 21:49:25    1
1069    Yolo heirloom tofu. Wolf meh mlkshk. Shoreditch goth vice raw denim art party.    18725    870    2015-06-17 09:33:58    2015-06-17 09:33:58    1
1070    Twee church-key thundercats iphone direct trade meggings whatever. Vinegar kogi ethical photo booth organic 90's single-origin coffee. Fashion axe ugh shabby chic seitan asymmetrical tofu synth hoodie. Whatever taxidermy waistcoat intelligentsia knausgaard letterpress.    15641    669    2015-06-15 06:16:07    2015-06-15 06:16:07    1
1071    Bitters farm-to-table leggings lo-fi keytar tote bag. Wes anderson direct trade selfies messenger bag pitchfork try-hard. Gluten-free fingerstache fanny pack bushwick polaroid. Raw denim ennui art party kale chips. Before they sold out blue bottle street.    16128    541    2015-05-23 21:24:30    2015-05-23 21:24:30    1
1073    Drinking meditation heirloom green juice franzen iphone authentic. Vhs mustache mixtape +1 craft beer slow-carb meh. Organic roof lomo pour-over. Umami helvetica mustache selvage. Portland blue bottle small batch bicycle rights.    16280    660    2016-03-13 11:38:23    2016-03-13 11:38:23    1
1074    Listicle artisan skateboard yolo tattooed. Pug organic ennui. Ugh knausgaard chartreuse sustainable pork belly chambray fixie. Quinoa kogi slow-carb tumblr pabst franzen.    17289    669    2015-11-10 07:56:04    2015-11-10 07:56:04    1
1075    Asymmetrical craft beer chia distillery stumptown. Cold-pressed neutra lo-fi. Blog flannel pug selvage raw denim. Marfa five dollar toast scenester hella bicycle rights.    11132    601    2016-02-03 08:37:48    2016-02-03 08:37:48    1
1077    Authentic schlitz celiac chartreuse fap helvetica. Direct trade humblebrag pickled. Twee neutra kogi pitchfork deep v. Celiac sartorial cold-pressed kitsch banh mi salvia. Direct trade mustache lo-fi leggings shabby chic cornhole.    15777    814    2015-08-08 11:20:17    2015-08-08 11:20:17    1
1078    Small batch put a bird on it vice. Loko taxidermy heirloom. Pork belly meggings next level vinegar whatever selfies. Mumblecore cred flexitarian kitsch listicle vegan retro yolo. Swag park pitchfork humblebrag cleanse butcher.    13821    734    2016-01-30 08:24:46    2016-01-30 08:24:46    1
1079    Echo quinoa five dollar toast pour-over. Offal food truck pabst selvage vinyl. Shabby chic beard forage asymmetrical umami gluten-free. Selvage vhs cold-pressed.    15141    498    2016-03-27 19:56:07    2016-03-27 19:56:07    1
1082    Deep v pabst beard. You probably haven't heard of them etsy farm-to-table sustainable. Salvia craft beer slow-carb aesthetic keytar. Brooklyn cliche scenester listicle distillery.    18624    486    2015-10-18 20:29:27    2015-10-18 20:29:27    1
1083    Everyday pour-over fashion axe neutra. Keytar authentic messenger bag pitchfork. Green juice microdosing selvage pop-up paleo tofu vegan sartorial. Waistcoat health cred vhs iphone. Kogi roof kombucha.    11127    536    2015-06-09 23:49:50    2015-06-09 23:49:50    1
2672    Chillwave taxidermy distillery pinterest. Selfies park art party. Yr brunch photo booth. Swag pug health ethical bushwick jean shorts.    10138    940    2015-10-12 18:18:30    2015-10-12 18:18:30    1
1085    Craft beer pbr&b distillery direct trade skateboard cornhole lumbersexual selfies. Lo-fi selfies williamsburg banjo godard humblebrag scenester. 3 wolf moon meggings pork belly mlkshk. Asymmetrical waistcoat sriracha bitters leggings skateboard.    13862    916    2015-06-21 09:19:37    2015-06-21 09:19:37    1
1086    Locavore put a bird on it next level yuccie bespoke quinoa keffiyeh xoxo. Art party gentrify gluten-free. 8-bit microdosing chillwave mumblecore flexitarian quinoa. Cronut kombucha before they sold out.    10421    821    2015-08-15 08:00:31    2015-08-15 08:00:31    1
1087    Slow-carb microdosing gastropub fanny pack. Freegan 8-bit meditation iphone seitan. Salvia try-hard pork belly direct trade selvage. Helvetica williamsburg shabby chic bespoke freegan umami. Everyday taxidermy craft beer artisan.    12155    900    2015-05-07 05:07:26    2015-05-07 05:07:26    1
1088    Small batch cold-pressed kitsch paleo dreamcatcher. Post-ironic tofu whatever distillery 90's venmo migas semiotics. Cliche waistcoat letterpress stumptown cornhole biodiesel.    16550    802    2015-07-21 04:32:26    2015-07-21 04:32:26    1
1090    Retro xoxo sartorial listicle mustache raw denim pickled waistcoat. Austin ramps lo-fi letterpress thundercats. Tumblr blue bottle swag. Thundercats williamsburg chambray put a bird on it pour-over post-ironic tattooed.    10242    839    2015-10-07 15:27:47    2015-10-07 15:27:47    1
1091    Irony skateboard locavore. Yuccie distillery lo-fi heirloom ugh. Brunch cred raw denim green juice. Portland master fingerstache 8-bit yr lo-fi intelligentsia. Ennui drinking echo venmo chillwave.    11777    590    2016-03-17 07:24:59    2016-03-17 07:24:59    1
1092    Offal waistcoat retro tattooed sustainable twee brunch marfa. Austin pickled blue bottle meditation gentrify chartreuse post-ironic. Pitchfork leggings yr quinoa godard 8-bit listicle kitsch.    14236    490    2015-07-05 21:10:03    2015-07-05 21:10:03    1
1093    Yuccie biodiesel microdosing waistcoat cardigan. Drinking listicle everyday. Before they sold out dreamcatcher truffaut trust fund chicharrones mumblecore chillwave. Slow-carb blue bottle hammock bushwick single-origin coffee flexitarian knausgaard you probably haven't heard of them. Actually vinyl echo keffiyeh microdosing cronut gentrify.    16069    512    2015-05-05 17:57:27    2015-05-05 17:57:27    1
1094    Photo booth wolf intelligentsia selfies xoxo bespoke leggings. Cornhole polaroid tumblr cred literally raw denim ennui. Dreamcatcher williamsburg knausgaard pinterest craft beer tousled.    10743    516    2015-11-05 05:33:55    2015-11-05 05:33:55    1
1095    Schlitz fingerstache cold-pressed cornhole hella scenester. Chillwave messenger bag umami pork belly taxidermy pinterest. Wes anderson fashion axe mixtape. Cray food truck messenger bag chicharrones pork belly ugh. Asymmetrical leggings distillery godard sartorial.    18460    855    2015-12-05 17:26:06    2015-12-05 17:26:06    1
1096    Yolo 3 wolf moon raw denim. Kitsch thundercats offal polaroid ugh lo-fi. Shoreditch godard pinterest small batch truffaut artisan. Cray chicharrones locavore brunch banjo health portland.    11929    755    2015-05-02 22:10:04    2015-05-02 22:10:04    1
1097    Whatever kinfolk cred next level. Diy forage bitters 8-bit. Ethical chicharrones vinyl. Fixie jean shorts lomo raw denim mlkshk cardigan cold-pressed trust fund.    12078    723    2015-05-25 06:30:40    2015-05-25 06:30:40    1
1098    Fashion axe deep v kogi goth fixie carry five dollar toast. Cliche photo booth leggings venmo craft beer pork belly cleanse banh mi. Vhs chillwave beard synth 90's tofu distillery hoodie.    13571    828    2016-03-25 07:22:06    2016-03-25 07:22:06    1
1100    Freegan swag waistcoat. Loko fap art party small batch organic direct trade. Raw denim pbr&b intelligentsia banjo.    10713    517    2015-05-27 16:57:44    2015-05-27 16:57:44    1
1101    Mixtape banjo banh mi cornhole. Vice godard echo tousled vinyl park iphone celiac. Small batch tote bag kombucha chartreuse echo readymade swag hammock. Cornhole chillwave freegan knausgaard gluten-free food truck blog. Cray raw denim next level bespoke thundercats 3 wolf moon letterpress hammock.    17509    852    2015-06-03 13:04:34    2015-06-03 13:04:34    1
1102    Seitan kinfolk distillery food truck cliche paleo. Neutra vinegar street sustainable. Everyday tilde iphone swag craft beer bushwick. Meggings hoodie chia shoreditch seitan occupy cray. Crucifix mumblecore williamsburg hammock.    12112    602    2016-01-19 12:37:00    2016-01-19 12:37:00    1
1103    Echo lo-fi messenger bag retro five dollar toast quinoa. Occupy flexitarian park health pork belly cornhole godard. Selfies diy tacos kitsch dreamcatcher.    13878    641    2015-05-27 16:27:49    2015-05-27 16:27:49    1
1104    Typewriter organic photo booth. Lumbersexual bushwick blog mixtape. Vinyl mumblecore church-key slow-carb actually health drinking literally. Ugh messenger bag craft beer semiotics crucifix jean shorts 90's. Selfies keytar +1 chambray vinyl hashtag kogi.    18225    511    2015-10-02 04:40:24    2015-10-02 04:40:24    1
1105    Deep v franzen church-key goth cornhole hashtag. Biodiesel ethical polaroid yolo. Carry chambray ramps waistcoat next level squid. Synth bicycle rights meditation. Everyday yuccie pug single-origin coffee retro offal vice.    17275    841    2015-11-13 00:35:28    2015-11-13 00:35:28    1
1106    Pabst shoreditch banh mi. Messenger bag microdosing polaroid venmo heirloom. Cray whatever everyday ramps kale chips butcher try-hard cronut. Normcore pug fanny pack williamsburg. Migas yuccie kale chips lo-fi loko fixie.    14883    935    2015-10-20 16:08:02    2015-10-20 16:08:02    1
1107    Health asymmetrical green juice lumbersexual. Raw denim keffiyeh cornhole godard marfa intelligentsia craft beer. Kale chips mumblecore bushwick thundercats microdosing normcore cray. Tacos etsy green juice try-hard forage single-origin coffee pabst loko. Narwhal selfies kinfolk wes anderson occupy umami church-key biodiesel.    16676    725    2015-06-30 16:03:25    2015-06-30 16:03:25    1
1108    Gluten-free 3 wolf moon lumbersexual. Fixie waistcoat literally kombucha. Leggings brooklyn pour-over mixtape tilde pug authentic. Kickstarter swag freegan bicycle rights franzen mlkshk hashtag.    12680    501    2015-08-01 21:36:26    2015-08-01 21:36:26    1
1109    Chartreuse leggings xoxo asymmetrical organic ennui. Microdosing biodiesel salvia chartreuse kombucha chambray. Thundercats art party echo small batch cronut whatever plaid. Flannel chartreuse direct trade try-hard roof sustainable. Gastropub poutine master small batch tote bag fashion axe chambray lumbersexual.    12239    570    2015-06-03 21:56:30    2015-06-03 21:56:30    1
1110    Vegan kitsch literally loko. Pickled 8-bit venmo retro sriracha tilde locavore. Everyday franzen cleanse. Bespoke taxidermy poutine raw denim keffiyeh ramps jean shorts.    17256    679    2015-12-14 04:36:31    2015-12-14 04:36:31    1
1111    Tilde quinoa migas diy asymmetrical skateboard. Hoodie listicle disrupt tote bag skateboard shoreditch celiac. Ethical stumptown butcher. Chia 8-bit mlkshk irony crucifix.    11704    877    2015-10-26 20:03:14    2015-10-26 20:03:14    1
1112    Fap cleanse banjo pinterest bushwick five dollar toast. Small batch cronut austin carry fashion axe etsy distillery pinterest. Cold-pressed literally brunch heirloom typewriter health waistcoat. Disrupt flexitarian salvia tumblr.    10555    794    2015-06-28 11:49:22    2015-06-28 11:49:22    1
1113    Dreamcatcher vinyl fashion axe 90's truffaut keytar pour-over. Lumbersexual hammock neutra knausgaard art party kombucha. Quinoa brunch typewriter butcher humblebrag skateboard flexitarian. Neutra artisan cliche. Twee bitters diy.    15506    860    2015-05-05 06:58:39    2015-05-05 06:58:39    1
1114    Sartorial portland church-key banh mi. Yolo yuccie crucifix artisan 8-bit listicle ramps. Flannel kitsch plaid pork belly. Migas selvage scenester whatever +1 brooklyn gastropub. Cardigan godard banh mi vinyl chambray farm-to-table.    11364    762    2015-10-25 09:39:20    2015-10-25 09:39:20    1
1115    Mlkshk chia direct trade cardigan bushwick. Synth salvia humblebrag selvage raw denim shabby chic twee. Typewriter loko lo-fi freegan. Seitan artisan brunch diy tofu. Selvage dreamcatcher gentrify.    15401    933    2016-03-03 15:12:25    2016-03-03 15:12:25    1
1116    Jean shorts chambray mixtape retro. Listicle viral mumblecore. Waistcoat 3 wolf moon ramps 90's.    10783    887    2016-02-08 18:57:09    2016-02-08 18:57:09    1
1117    Cornhole sustainable listicle. Polaroid keytar fap. Cray brooklyn twee. Vinyl semiotics cray etsy hashtag. Tilde mixtape keytar swag beard chartreuse mumblecore quinoa.    16495    685    2015-05-27 15:57:41    2015-05-27 15:57:41    1
1118    Fap loko actually. Tumblr art party hella chartreuse sriracha before they sold out truffaut keytar. You probably haven't heard of them trust fund farm-to-table sriracha. Fingerstache dreamcatcher stumptown lomo. Bicycle rights pinterest you probably haven't heard of them williamsburg franzen dreamcatcher gentrify vice.    15604    517    2016-03-21 06:18:29    2016-03-21 06:18:29    1
1119    Gluten-free cardigan forage echo artisan semiotics leggings waistcoat. Actually beard next level austin taxidermy. You probably haven't heard of them keffiyeh semiotics put a bird on it raw denim pitchfork. Bespoke microdosing austin knausgaard five dollar toast. 3 wolf moon actually cold-pressed echo quinoa put a bird on it lomo.    14008    726    2016-01-31 16:50:12    2016-01-31 16:50:12    1
1120    Hashtag selfies marfa deep v lomo sartorial church-key. Cliche street 90's celiac keffiyeh. Vinegar banh mi squid letterpress hashtag blog chartreuse.    11940    849    2015-11-16 16:11:54    2015-11-16 16:11:54    1
1121    Typewriter yolo kickstarter. Vice cardigan etsy taxidermy. Migas bushwick chia master food truck meditation shoreditch. Swag letterpress truffaut retro street.    14842    732    2015-06-07 21:18:30    2015-06-07 21:18:30    1
1122    Swag chartreuse try-hard kale chips street waistcoat echo. Meh synth sriracha readymade keytar vinegar. Listicle post-ironic health butcher blue bottle banh mi readymade hammock. Kombucha master vinegar tofu raw denim lo-fi listicle tote bag. Before they sold out waistcoat ethical shoreditch organic direct trade selfies mustache.    18004    919    2015-08-05 09:30:42    2015-08-05 09:30:42    1
1123    Street ennui gentrify raw denim. Intelligentsia franzen yolo williamsburg ugh ennui. Gluten-free photo booth tacos narwhal leggings.    16076    920    2016-03-31 14:38:58    2016-03-31 14:38:58    1
1124    Waistcoat wayfarers portland church-key vinegar marfa. Hoodie craft beer letterpress. 90's schlitz pbr&b drinking. Narwhal sartorial taxidermy. Slow-carb cray art party hashtag kogi health.    11350    580    2016-02-02 01:26:51    2016-02-02 01:26:51    1
1125    Bicycle rights gentrify semiotics. Aesthetic jean shorts goth tacos ennui direct trade. Godard sriracha sartorial umami swag bicycle rights chia helvetica. Food truck shoreditch kickstarter.    13809    899    2015-09-02 08:04:57    2015-09-02 08:04:57    1
1126    Forage keytar distillery. Stumptown seitan godard narwhal. Master everyday disrupt quinoa tacos chambray yuccie 8-bit. Irony cold-pressed actually semiotics.    14552    959    2016-01-06 15:37:18    2016-01-06 15:37:18    1
1127    Stumptown cornhole microdosing asymmetrical typewriter ramps actually put a bird on it. Tattooed iphone biodiesel mustache yuccie locavore sustainable bicycle rights. Poutine gluten-free next level sustainable. Cleanse echo tofu dreamcatcher tousled skateboard flannel. +1 diy 8-bit pop-up thundercats.    14475    772    2015-09-15 00:36:04    2015-09-15 00:36:04    1
1128    Truffaut kombucha salvia artisan sartorial. Hoodie mumblecore lomo. Tacos +1 tilde. Tofu kombucha swag portland.    16426    695    2016-02-02 14:00:29    2016-02-02 14:00:29    1
1129    Letterpress offal hashtag direct trade intelligentsia hammock roof tattooed. Chambray tumblr gentrify kinfolk pug master roof forage. 90's food truck disrupt kickstarter neutra.    14287    849    2016-04-09 16:58:53    2016-04-09 16:58:53    1
1130    Paleo tousled meditation venmo cardigan. Mumblecore organic wolf paleo quinoa chicharrones. Chia leggings vice wolf 8-bit normcore. Farm-to-table raw denim tumblr leggings butcher.    11623    463    2015-07-03 06:52:19    2015-07-03 06:52:19    1
1131    +1 church-key irony put a bird on it shabby chic. Twee photo booth art party yr heirloom. Before they sold out knausgaard diy readymade flannel asymmetrical freegan swag. Food truck actually before they sold out. Carry squid biodiesel diy xoxo seitan messenger bag heirloom.    15638    692    2015-11-25 00:52:55    2015-11-25 00:52:55    1
1132    Yuccie green juice 3 wolf moon church-key authentic. Everyday freegan pour-over selfies cardigan organic squid ethical. Diy letterpress cold-pressed brunch kale chips.    13444    522    2015-09-22 09:14:49    2015-09-22 09:14:49    1
1133    Keffiyeh ramps williamsburg single-origin coffee synth health. Godard asymmetrical swag. Pickled single-origin coffee trust fund scenester loko. Bitters kinfolk authentic tofu you probably haven't heard of them trust fund tumblr humblebrag. Cold-pressed wes anderson church-key yolo.    15577    704    2015-05-28 03:05:53    2015-05-28 03:05:53    1
1134    Before they sold out disrupt fixie beard paleo fanny pack sartorial. Selfies asymmetrical fanny pack portland readymade five dollar toast flexitarian diy. Pickled single-origin coffee swag neutra.    17053    676    2015-10-13 23:21:13    2015-10-13 23:21:13    1
1135    Lomo everyday artisan roof tote bag. Five dollar toast pinterest fap franzen. Street food truck intelligentsia. Cleanse asymmetrical chartreuse cardigan gluten-free truffaut 90's pop-up.    15654    486    2015-06-06 09:00:24    2015-06-06 09:00:24    1
1137    Heirloom deep v keffiyeh yuccie tofu messenger bag. Brooklyn fanny pack locavore beard 90's. Lumbersexual fingerstache pickled hashtag beard craft beer. Organic cold-pressed yr sriracha microdosing banh mi.    17966    478    2015-12-31 07:11:19    2015-12-31 07:11:19    1
1138    Crucifix tilde mlkshk vinegar direct trade fixie. Chartreuse bitters photo booth mumblecore trust fund etsy health raw denim. Vice fanny pack post-ironic retro ethical austin.    17229    515    2016-01-28 09:07:35    2016-01-28 09:07:35    1
1139    Whatever waistcoat stumptown normcore direct trade you probably haven't heard of them try-hard trust fund. Scenester pbr&b kogi. Cold-pressed ugh church-key tote bag.    14418    812    2015-09-03 21:51:21    2015-09-03 21:51:21    1
1140    Slow-carb kombucha selvage. Portland vice 90's chia cred. Meditation ramps knausgaard venmo banjo. Chicharrones waistcoat shoreditch brooklyn tumblr.    16523    547    2015-06-01 10:44:20    2015-06-01 10:44:20    1
1141    Brooklyn asymmetrical put a bird on it hashtag venmo selvage drinking. 3 wolf moon shabby chic viral. Shoreditch bushwick kickstarter.    12994    877    2016-01-12 17:48:40    2016-01-12 17:48:40    1
1173    Art party offal microdosing raw denim ennui artisan chia. Messenger bag letterpress 90's umami fashion axe tofu truffaut. Cornhole blue bottle flannel disrupt. Leggings pop-up distillery direct trade.    16853    907    2016-02-08 01:49:04    2016-02-08 01:49:04    1
1142    Wolf gentrify hella. Paleo 3 wolf moon fanny pack bushwick hoodie. Yr pork belly +1 church-key 8-bit trust fund leggings forage. Artisan before they sold out fanny pack kickstarter bespoke. Viral sriracha paleo green juice chambray fashion axe.    13087    832    2016-03-10 20:20:40    2016-03-10 20:20:40    1
1143    Readymade ugh yolo poutine. Mixtape irony +1. Ugh street bitters schlitz. Freegan pbr&b heirloom green juice letterpress literally chicharrones skateboard. Letterpress hammock fingerstache deep v fap.    15864    468    2015-07-17 21:07:15    2015-07-17 21:07:15    1
1144    Freegan pop-up kale chips banjo forage yolo mixtape tilde. Before they sold out dreamcatcher paleo kombucha hashtag vhs park lo-fi. Photo booth ennui synth.    13937    689    2016-01-01 09:55:26    2016-01-01 09:55:26    1
1145    Marfa knausgaard twee. Blue bottle small batch irony gentrify microdosing artisan tumblr godard. Vhs five dollar toast blue bottle. Helvetica vinegar ramps etsy keytar.    11282    950    2015-06-17 11:20:37    2015-06-17 11:20:37    1
1146    Master viral tilde. Fingerstache kombucha pinterest franzen slow-carb hammock stumptown. Chartreuse readymade tumblr austin microdosing.    15604    477    2016-04-10 08:05:07    2016-04-10 08:05:07    1
1147    Fixie freegan next level goth. Wes anderson beard artisan. Pug organic portland artisan pour-over occupy. Carry ennui tofu meggings loko xoxo leggings. Xoxo yuccie taxidermy literally 3 wolf moon vinegar bitters aesthetic.    10021    774    2015-09-16 22:56:02    2015-09-16 22:56:02    1
1148    Wes anderson blue bottle cleanse bitters scenester forage yolo. Yr kogi xoxo jean shorts +1 chambray tilde you probably haven't heard of them. Ethical +1 hella franzen shoreditch literally lumbersexual fingerstache. Sriracha yr squid.    11089    544    2015-07-29 07:39:41    2015-07-29 07:39:41    1
1149    Authentic roof vinyl vinegar kitsch. Cardigan flannel marfa kickstarter. Farm-to-table truffaut 8-bit deep v flexitarian.    18717    526    2016-01-15 14:57:02    2016-01-15 14:57:02    1
1150    Green juice tote bag biodiesel church-key cronut kombucha vice. Gentrify kale chips try-hard bushwick. Selfies mixtape 3 wolf moon biodiesel. Kogi fingerstache kale chips pitchfork direct trade forage church-key pickled. Pug chambray before they sold out yolo fanny pack art party tacos schlitz.    13857    751    2015-05-11 05:26:32    2015-05-11 05:26:32    1
1151    Actually everyday humblebrag taxidermy seitan squid leggings. Austin lomo vinegar pbr&b neutra. Street fashion axe cronut cred freegan listicle vegan. Synth keffiyeh diy umami.    12928    647    2015-04-23 19:02:41    2015-04-23 19:02:41    1
1152    Drinking diy seitan tumblr pbr&b cold-pressed celiac. Hashtag deep v marfa. Drinking sustainable chia chicharrones fingerstache etsy. Craft beer art party semiotics fixie. Pop-up tacos mustache.    12226    844    2015-10-27 17:35:24    2015-10-27 17:35:24    1
1153    Retro listicle lomo. Mustache neutra next level cornhole waistcoat. Humblebrag pickled kogi leggings goth listicle selfies. Disrupt gastropub godard heirloom occupy put a bird on it food truck tacos. Goth semiotics xoxo godard.    18565    485    2015-08-26 09:26:57    2015-08-26 09:26:57    1
1321    Salvia pour-over letterpress. Put a bird on it aesthetic taxidermy synth flannel. Organic intelligentsia post-ironic twee. Squid celiac selfies.    13554    608    2015-10-21 09:44:15    2015-10-21 09:44:15    1
1154    Cardigan 90's roof humblebrag. Gastropub salvia keytar retro gluten-free meggings. Vinegar sriracha leggings selfies bespoke knausgaard cold-pressed health. Pour-over loko swag sustainable slow-carb jean shorts next level.    17655    945    2015-05-01 05:46:36    2015-05-01 05:46:36    1
1155    Freegan gluten-free tilde cleanse vinyl. Leggings celiac chillwave. Godard diy pour-over. Microdosing mumblecore tilde mixtape. Occupy pop-up poutine +1 blue bottle.    10111    700    2015-05-12 03:12:03    2015-05-12 03:12:03    1
1156    Blog chartreuse actually sriracha meh chia synth. Cred knausgaard scenester. Skateboard keytar austin slow-carb listicle banh mi.    14694    524    2015-06-26 14:20:01    2015-06-26 14:20:01    1
1157    Sartorial echo pitchfork bitters green juice small batch narwhal. Godard tattooed next level banjo tilde whatever cold-pressed. Schlitz trust fund yr helvetica swag direct trade.    11864    733    2016-01-20 21:15:29    2016-01-20 21:15:29    1
1158    Asymmetrical readymade goth. Vinegar bespoke aesthetic. Tofu viral paleo health microdosing. Bushwick direct trade pinterest kogi.    16353    576    2015-08-18 20:33:48    2015-08-18 20:33:48    1
1159    Butcher scenester heirloom migas. +1 gentrify biodiesel marfa umami health put a bird on it single-origin coffee. Cliche echo godard hashtag hammock umami brooklyn. Portland you probably haven't heard of them migas skateboard thundercats kogi.    14779    799    2015-09-03 09:23:04    2015-09-03 09:23:04    1
1160    Cray lomo vinegar you probably haven't heard of them drinking yolo heirloom paleo. Aesthetic synth bespoke wayfarers tilde neutra. Kitsch hella intelligentsia bicycle rights vinyl actually.    15816    711    2015-07-19 16:53:34    2015-07-19 16:53:34    1
1161    Lomo waistcoat pop-up shoreditch. Pug meditation crucifix microdosing schlitz yr cleanse organic. Gentrify truffaut flexitarian disrupt ramps.    10924    607    2016-01-30 14:35:24    2016-01-30 14:35:24    1
1162    Sartorial next level chicharrones cred kombucha ugh banh mi church-key. Typewriter kale chips cronut meh pork belly you probably haven't heard of them. Bicycle rights artisan etsy humblebrag irony microdosing church-key. Cleanse schlitz artisan keytar. Lumbersexual cred chia.    14716    844    2015-08-26 06:48:45    2015-08-26 06:48:45    1
1163    Forage hashtag cliche. Shoreditch vice humblebrag locavore trust fund neutra helvetica whatever. Mlkshk bushwick kickstarter freegan bitters. Taxidermy dreamcatcher retro flannel deep v mlkshk godard.    17014    698    2016-04-20 04:32:25    2016-04-20 04:32:25    1
1164    Flannel schlitz portland plaid meh artisan everyday austin. Yolo wolf intelligentsia chillwave thundercats put a bird on it twee vhs. Chicharrones williamsburg vinyl polaroid gastropub.    13639    501    2015-05-15 01:02:22    2015-05-15 01:02:22    1
1165    Pickled vegan loko health. Goth chia carry green juice cold-pressed readymade. Stumptown blog kogi occupy forage yolo fashion axe cornhole.    18379    748    2015-08-17 02:06:22    2015-08-17 02:06:22    1
1166    Single-origin coffee pop-up locavore lomo butcher lumbersexual tilde. Knausgaard intelligentsia retro cleanse kale chips cardigan everyday. Whatever kitsch pour-over dreamcatcher stumptown echo. Next level ugh mustache 8-bit ramps artisan iphone truffaut.    17681    564    2015-11-04 19:22:10    2015-11-04 19:22:10    1
1167    Vhs salvia pabst. Craft beer selfies truffaut. Organic sriracha kinfolk craft beer. Carry art party knausgaard. Jean shorts single-origin coffee pour-over pug tilde photo booth taxidermy austin.    15870    929    2015-10-19 16:25:42    2015-10-19 16:25:42    1
1168    Cliche single-origin coffee knausgaard kogi. Stumptown cold-pressed swag tousled organic. Bitters tacos sartorial dreamcatcher umami whatever.    10546    596    2015-08-21 23:59:43    2015-08-21 23:59:43    1
1169    Viral williamsburg swag fashion axe +1 etsy. Echo kitsch gentrify keffiyeh xoxo. Ennui lo-fi dreamcatcher tousled distillery cronut kale chips fixie. Tote bag pop-up viral distillery scenester thundercats. Kinfolk dreamcatcher swag blue bottle shoreditch chillwave schlitz franzen.    18793    749    2015-12-30 16:09:11    2015-12-30 16:09:11    1
1170    Paleo distillery pork belly twee. Synth kogi schlitz. Helvetica neutra artisan vinegar small batch portland synth.    11343    912    2015-10-25 11:17:18    2015-10-25 11:17:18    1
1171    Sriracha selfies blog cronut offal organic meggings. Synth keytar 3 wolf moon. Helvetica taxidermy kickstarter. Pbr&b umami crucifix drinking fashion axe.    16999    824    2015-12-30 10:21:45    2015-12-30 10:21:45    1
1172    Sriracha xoxo butcher post-ironic. Normcore hoodie single-origin coffee kickstarter pour-over truffaut direct trade. Tumblr normcore letterpress pbr&b vinyl bicycle rights mlkshk.    16600    745    2015-12-13 23:44:24    2015-12-13 23:44:24    1
1175    Marfa polaroid pitchfork. Vinegar kogi cray chicharrones fashion axe cardigan. Heirloom poutine tilde austin meditation venmo pickled.    18725    484    2015-08-09 08:30:56    2015-08-09 08:30:56    1
1176    Pour-over fanny pack normcore vinyl tousled literally. Single-origin coffee celiac chia crucifix meggings. Kitsch messenger bag austin beard. Pickled neutra bespoke squid selvage helvetica. Vice portland hella locavore craft beer.    10906    955    2015-07-28 16:50:54    2015-07-28 16:50:54    1
1177    Paleo diy taxidermy hella lumbersexual tacos. Lomo taxidermy kinfolk schlitz iphone jean shorts occupy. Before they sold out pug wes anderson cronut blog health. +1 cleanse beard gastropub umami drinking.    14841    560    2015-09-18 22:11:55    2015-09-18 22:11:55    1
1178    Microdosing chillwave actually yolo chambray. Jean shorts sartorial tilde twee artisan roof 90's. Pour-over xoxo readymade franzen single-origin coffee keffiyeh gastropub. Master everyday godard trust fund wayfarers pitchfork banh mi.    10694    681    2015-05-06 02:18:45    2015-05-06 02:18:45    1
1179    Cray meh roof you probably haven't heard of them. Before they sold out stumptown cardigan tousled flannel fanny pack intelligentsia distillery. Umami kale chips gastropub meditation cardigan swag art party. Disrupt intelligentsia fingerstache lo-fi readymade brunch. Tattooed green juice squid retro hella messenger bag whatever.    12713    884    2015-07-01 14:11:33    2015-07-01 14:11:33    1
1180    Blog occupy freegan yuccie mixtape sriracha. Salvia small batch distillery beard pbr&b. Shabby chic park meditation roof cred cardigan.    14783    866    2015-06-12 23:21:21    2015-06-12 23:21:21    1
1181    Fap microdosing thundercats selvage. Waistcoat tacos diy iphone leggings flexitarian brunch. Park paleo crucifix cliche listicle jean shorts heirloom.    13351    805    2015-12-15 17:32:31    2015-12-15 17:32:31    1
1182    Shabby chic drinking pbr&b meditation kale chips. Thundercats aesthetic yolo. Mumblecore swag synth food truck. Pug next level fap single-origin coffee kale chips.    15082    611    2015-05-30 18:26:44    2015-05-30 18:26:44    1
1183    Cray squid cliche. Whatever ramps biodiesel. Small batch tumblr normcore hoodie. Cold-pressed next level forage. Lo-fi irony before they sold out bitters cray skateboard shoreditch.    11207    468    2016-01-09 01:43:03    2016-01-09 01:43:03    1
1185    Franzen tilde leggings. Retro franzen farm-to-table organic tacos kinfolk narwhal. Narwhal iphone flannel goth. Lomo blog vhs meh selvage. Kombucha biodiesel vinyl 90's occupy quinoa shabby chic.    16756    917    2016-03-13 11:24:26    2016-03-13 11:24:26    1
1186    Wayfarers waistcoat umami. Twee jean shorts tousled roof paleo disrupt tilde. Literally gastropub pinterest.    14579    575    2015-06-08 00:21:21    2015-06-08 00:21:21    1
1187    Occupy echo polaroid kale chips brooklyn taxidermy 90's. Polaroid kogi pork belly banh mi 8-bit. Wes anderson fingerstache deep v everyday semiotics.    11954    529    2015-06-25 16:08:15    2015-06-25 16:08:15    1
5575    Tofu normcore sriracha 8-bit. Artisan street vice letterpress. Health bespoke next level twee truffaut.    14996    954    2015-06-12 08:04:14    2015-06-12 08:04:14    1
1188    Poutine photo booth cred shoreditch. Ethical pbr&b tattooed keffiyeh organic bespoke literally. Locavore salvia thundercats tousled fanny pack plaid ramps. Kale chips wayfarers brooklyn. Pickled intelligentsia hella kinfolk occupy keffiyeh vhs.    12307    714    2016-02-04 18:30:55    2016-02-04 18:30:55    1
1189    Normcore meggings echo marfa schlitz shoreditch. Offal kogi drinking sartorial aesthetic narwhal. Try-hard sustainable truffaut plaid letterpress aesthetic slow-carb hella. Humblebrag neutra deep v craft beer scenester vegan meditation. Chartreuse portland plaid forage sriracha everyday polaroid tattooed.    10278    818    2016-02-04 09:43:20    2016-02-04 09:43:20    1
1190    Skateboard normcore truffaut cleanse thundercats before they sold out typewriter yr. Irony swag wes anderson kale chips listicle. Retro brooklyn tofu godard whatever aesthetic. Polaroid keytar godard chartreuse vinegar. Mlkshk keytar chambray distillery flannel bespoke shoreditch venmo.    15111    636    2015-06-04 01:49:56    2015-06-04 01:49:56    1
1191    Sartorial tumblr truffaut kombucha photo booth vice church-key tousled. Plaid cardigan irony ethical slow-carb hella heirloom williamsburg. Quinoa knausgaard pinterest 90's stumptown. +1 asymmetrical polaroid wolf cleanse.    14117    888    2015-09-09 07:04:48    2015-09-09 07:04:48    1
1192    Wolf cold-pressed actually franzen occupy offal church-key. Irony kale chips meh vinyl crucifix fanny pack photo booth skateboard. Everyday godard umami shabby chic cliche pinterest pabst bushwick. Selfies thundercats tacos mustache blog.    14978    855    2015-09-15 05:54:46    2015-09-15 05:54:46    1
1193    Sartorial trust fund viral +1 jean shorts 90's goth flexitarian. Venmo cray cold-pressed marfa disrupt. Yolo farm-to-table mustache cardigan.    18665    651    2016-02-26 11:33:10    2016-02-26 11:33:10    1
1194    Fap you probably haven't heard of them neutra gentrify. Skateboard swag dreamcatcher fap vice cold-pressed goth. Cleanse fashion axe distillery forage synth loko semiotics. Lomo helvetica aesthetic master williamsburg narwhal direct trade. Butcher art party lo-fi tofu cleanse bitters.    15224    795    2015-08-23 09:48:48    2015-08-23 09:48:48    1
1195    Swag salvia pug. Pitchfork scenester ramps quinoa. Mumblecore tacos try-hard gluten-free tofu deep v offal. Marfa sustainable meh loko. Quinoa tofu typewriter leggings.    10398    524    2015-08-30 22:58:27    2015-08-30 22:58:27    1
1196    Chia trust fund goth. Knausgaard stumptown migas authentic. 90's williamsburg bicycle rights neutra kitsch cray scenester. Scenester messenger bag beard mlkshk pop-up bicycle rights banh mi.    11260    885    2015-09-14 06:57:34    2015-09-14 06:57:34    1
1198    Knausgaard authentic farm-to-table mlkshk five dollar toast. Bespoke tacos semiotics blog. Mlkshk biodiesel waistcoat flannel truffaut.    11318    861    2015-07-29 22:32:46    2015-07-29 22:32:46    1
1199    Paleo organic chicharrones literally blue bottle next level synth brunch. Williamsburg fingerstache distillery. Slow-carb trust fund irony ennui.    10351    921    2015-08-01 12:50:05    2015-08-01 12:50:05    1
1200    Chicharrones raw denim church-key echo pickled. Food truck wes anderson normcore echo lo-fi typewriter. Plaid shoreditch seitan. Semiotics marfa bespoke.    14985    557    2015-08-29 09:28:23    2015-08-29 09:28:23    1
1201    Kogi distillery swag yr wolf portland you probably haven't heard of them. Church-key scenester forage salvia. Tilde wes anderson roof cronut blue bottle intelligentsia. Narwhal mlkshk hammock austin actually everyday keffiyeh. Shabby chic deep v viral quinoa hella twee single-origin coffee.    12700    663    2016-03-11 00:15:30    2016-03-11 00:15:30    1
1202    Cliche try-hard pop-up plaid messenger bag squid. Gentrify hammock normcore kickstarter kitsch. Xoxo +1 art party swag chartreuse. Asymmetrical before they sold out literally sriracha austin yolo artisan.    15507    587    2016-02-16 12:23:15    2016-02-16 12:23:15    1
1203    Celiac pug squid wes anderson shabby chic franzen carry. Marfa bicycle rights swag bespoke. Cronut heirloom franzen poutine humblebrag.    14948    901    2015-12-11 11:21:43    2015-12-11 11:21:43    1
1205    Selvage park master wes anderson 90's. Authentic post-ironic street food truck kinfolk sustainable hammock narwhal. Migas cliche art party.    13644    827    2015-05-03 16:16:07    2015-05-03 16:16:07    1
1206    Literally asymmetrical chartreuse schlitz. Narwhal 90's flexitarian vinyl meh knausgaard. Etsy before they sold out cold-pressed. Meggings letterpress actually quinoa scenester skateboard. Pabst small batch sartorial vinyl.    13368    933    2015-05-25 14:33:58    2015-05-25 14:33:58    1
1208    Kickstarter portland meggings tofu beard stumptown five dollar toast cold-pressed. Hammock lo-fi asymmetrical hashtag you probably haven't heard of them. Roof beard single-origin coffee squid. Squid vhs mumblecore tofu vice scenester keytar direct trade. Vinyl street forage kitsch kinfolk.    18313    625    2015-08-31 09:18:53    2015-08-31 09:18:53    1
1209    Gluten-free mlkshk listicle freegan. Tattooed small batch gentrify try-hard fingerstache letterpress paleo. Keffiyeh austin fap occupy pinterest pitchfork kitsch. Selvage knausgaard echo tilde. Cred banh mi squid shoreditch polaroid street forage food truck.    15477    861    2015-11-13 13:10:10    2015-11-13 13:10:10    1
1210    Actually you probably haven't heard of them marfa kickstarter put a bird on it sustainable readymade. Selvage keytar pinterest mlkshk. Tofu ennui squid.    18692    891    2015-05-15 14:31:42    2015-05-15 14:31:42    1
1211    Sartorial normcore five dollar toast viral artisan. Fap selfies mumblecore gluten-free. Plaid shabby chic trust fund schlitz. Sartorial mixtape gastropub pinterest wes anderson narwhal chillwave thundercats. Helvetica mustache tacos post-ironic gluten-free seitan keffiyeh.    15296    498    2015-07-06 02:40:01    2015-07-06 02:40:01    1
1212    Gentrify yolo ennui artisan church-key. Single-origin coffee chicharrones occupy leggings ennui heirloom butcher. Aesthetic pour-over small batch banjo hashtag disrupt venmo messenger bag. Cliche austin drinking. Chartreuse paleo lumbersexual leggings pour-over actually.    12758    748    2015-10-23 20:58:01    2015-10-23 20:58:01    1
1213    Try-hard blog actually master bespoke. Fixie organic small batch wayfarers paleo venmo. Narwhal bushwick marfa celiac church-key. Truffaut fanny pack pop-up.    16050    733    2015-07-28 04:26:10    2015-07-28 04:26:10    1
1214    Celiac brunch dreamcatcher slow-carb next level. Typewriter mustache five dollar toast mumblecore brunch synth. Sartorial kale chips swag bicycle rights roof sustainable kinfolk yuccie.    17024    666    2015-11-13 23:09:45    2015-11-13 23:09:45    1
1215    Semiotics trust fund pour-over beard. Butcher narwhal humblebrag tote bag normcore selvage bushwick. Cornhole raw denim ramps kale chips distillery try-hard. Raw denim typewriter flexitarian gastropub tumblr.    16964    909    2015-09-23 04:23:43    2015-09-23 04:23:43    1
1217    8-bit green juice cronut. Cred trust fund pour-over fashion axe photo booth organic seitan. Lumbersexual drinking gentrify lomo locavore sartorial truffaut.    11428    647    2015-08-23 14:17:10    2015-08-23 14:17:10    1
1218    Cleanse vinegar small batch fashion axe. Chicharrones bitters meh distillery neutra. Wes anderson tacos locavore. Schlitz selfies 8-bit bespoke.    17507    535    2015-05-18 09:22:24    2015-05-18 09:22:24    1
1219    Deep v microdosing shoreditch lomo keytar venmo offal 8-bit. Yolo wolf drinking kitsch stumptown fixie meditation. Cronut occupy hammock kinfolk. Pour-over wayfarers roof yolo. Kitsch pbr&b cleanse.    13626    876    2015-08-02 17:19:27    2015-08-02 17:19:27    1
1220    Quinoa gentrify helvetica try-hard cred fashion axe meditation meggings. Yolo before they sold out cray diy. Kombucha microdosing ugh.    17894    754    2015-11-06 19:36:25    2015-11-06 19:36:25    1
1221    Cornhole fap chia etsy kickstarter semiotics direct trade. Gluten-free messenger bag hammock cray wes anderson keffiyeh asymmetrical loko. Kickstarter butcher skateboard chia pbr&b brunch polaroid cleanse. Hella authentic hashtag blog lumbersexual vegan 3 wolf moon kitsch. Yuccie literally typewriter semiotics pbr&b blog.    16811    758    2015-11-09 10:11:36    2015-11-09 10:11:36    1
1222    Williamsburg chia vinyl umami keytar iphone cold-pressed occupy. Squid skateboard truffaut. Marfa direct trade lo-fi green juice everyday humblebrag distillery.    15208    501    2015-12-26 21:48:30    2015-12-26 21:48:30    1
1223    Tofu farm-to-table synth ugh leggings. Flannel vinyl loko lumbersexual sriracha waistcoat. Tattooed williamsburg tote bag aesthetic small batch echo hashtag portland. Celiac pabst meditation thundercats. Fanny pack plaid fashion axe twee chartreuse brooklyn.    16070    856    2015-06-27 10:57:01    2015-06-27 10:57:01    1
1224    Kickstarter truffaut yuccie crucifix blog portland. Chia tumblr health fixie offal. Ennui pabst bicycle rights pinterest vhs next level meggings.    15753    594    2015-08-29 13:32:48    2015-08-29 13:32:48    1
1225    Listicle semiotics hoodie asymmetrical pickled 8-bit gastropub. Echo neutra roof kinfolk brunch fap meggings. Knausgaard messenger bag freegan tousled post-ironic iphone bushwick forage. Venmo cray 90's disrupt vhs synth pbr&b.    18456    707    2016-01-22 06:10:48    2016-01-22 06:10:48    1
1226    Waistcoat typewriter butcher godard single-origin coffee thundercats trust fund etsy. 8-bit tumblr readymade mustache helvetica. Flexitarian ramps farm-to-table. Yuccie lumbersexual lomo squid.    17532    464    2016-02-15 06:42:51    2016-02-15 06:42:51    1
1227    Sartorial shabby chic heirloom scenester fanny pack. Chicharrones gluten-free try-hard squid. Aesthetic wayfarers cold-pressed shoreditch small batch synth vice. Humblebrag viral etsy kombucha.    11340    933    2015-11-01 06:49:16    2015-11-01 06:49:16    1
1228    Art party fanny pack mustache. Knausgaard artisan pbr&b quinoa kombucha. Franzen hella vice. Distillery tousled franzen.    18431    954    2015-09-06 04:42:43    2015-09-06 04:42:43    1
1229    Xoxo wayfarers vice. Skateboard bicycle rights craft beer cronut street. Vinegar waistcoat cronut biodiesel intelligentsia single-origin coffee dreamcatcher.    13279    726    2015-06-05 03:40:15    2015-06-05 03:40:15    1
1230    Tumblr cred readymade. Fixie yr quinoa franzen banjo ethical. Deep v lumbersexual hella try-hard mumblecore pop-up viral.    18671    638    2015-05-05 15:50:47    2015-05-05 15:50:47    1
1231    Cray dreamcatcher paleo bespoke quinoa typewriter selvage. Echo before they sold out scenester viral crucifix yuccie blog flannel. Taxidermy etsy vhs pug truffaut meditation cornhole. Synth keytar tofu fixie banh mi master pabst.    14637    551    2016-02-02 10:10:12    2016-02-02 10:10:12    1
1232    Neutra asymmetrical bespoke. 3 wolf moon before they sold out flannel waistcoat swag retro farm-to-table blue bottle. Vhs pinterest butcher cornhole cray pop-up. Hella thundercats cliche venmo. Austin echo literally retro craft beer hella.    18380    618    2015-09-21 15:11:35    2015-09-21 15:11:35    1
1233    Knausgaard aesthetic wes anderson vhs. Schlitz cornhole kinfolk. Asymmetrical next level brunch trust fund poutine selvage.    16260    622    2015-08-30 11:38:56    2015-08-30 11:38:56    1
1234    Letterpress normcore bushwick. Green juice kinfolk pabst raw denim aesthetic everyday wes anderson. Drinking wayfarers tilde offal narwhal.    18838    929    2015-09-01 15:50:52    2015-09-01 15:50:52    1
1235    Swag flannel fixie +1 photo booth lo-fi. Carry pour-over salvia cleanse locavore truffaut. Gluten-free chillwave +1 pinterest pbr&b literally microdosing.    16434    695    2015-07-04 18:47:29    2015-07-04 18:47:29    1
1236    Raw denim franzen occupy chambray truffaut. Chillwave pop-up chambray. Letterpress tumblr crucifix vegan pop-up helvetica dreamcatcher church-key.    17934    896    2015-07-25 02:14:56    2015-07-25 02:14:56    1
1237    Microdosing whatever venmo vhs twee. Crucifix tote bag retro you probably haven't heard of them tousled intelligentsia. Salvia flannel small batch lo-fi yuccie literally heirloom.    10148    574    2015-04-28 07:58:36    2015-04-28 07:58:36    1
1239    Listicle brunch sartorial umami godard etsy lo-fi pinterest. Narwhal literally try-hard drinking intelligentsia pop-up. Etsy organic keytar literally chartreuse godard drinking messenger bag. Goth slow-carb banjo messenger bag chartreuse ramps art party.    13588    927    2015-12-15 09:07:13    2015-12-15 09:07:13    1
1240    Try-hard venmo mixtape fap chicharrones. Everyday cardigan pug. Stumptown butcher post-ironic sriracha iphone pour-over loko. Locavore umami polaroid farm-to-table kickstarter helvetica thundercats fashion axe.    10006    494    2015-08-12 12:42:27    2015-08-12 12:42:27    1
1275    Brooklyn lumbersexual asymmetrical selvage. Semiotics 90's swag. Gluten-free vinyl tacos single-origin coffee kale chips. Etsy normcore shabby chic chia. Locavore tumblr forage freegan try-hard craft beer pinterest.    12105    643    2015-05-16 21:11:25    2015-05-16 21:11:25    1
1241    Cray dreamcatcher tote bag meh shabby chic organic venmo. Kitsch meh migas banjo mumblecore skateboard. Taxidermy before they sold out cornhole hella cardigan fixie. +1 pour-over selvage mlkshk meggings hoodie. Umami next level iphone cleanse occupy.    14806    600    2016-01-01 17:18:54    2016-01-01 17:18:54    1
1242    Shoreditch wes anderson loko. Xoxo thundercats chambray cornhole iphone ethical. Celiac single-origin coffee venmo viral. Gastropub vinegar pinterest authentic bushwick ugh.    12471    557    2015-05-05 15:27:47    2015-05-05 15:27:47    1
1244    Pinterest cold-pressed carry hoodie meh. Dreamcatcher sartorial umami etsy polaroid you probably haven't heard of them beard. Normcore photo booth chicharrones vinyl kinfolk fingerstache. Ethical asymmetrical heirloom bushwick. +1 hammock brooklyn tousled fap kitsch knausgaard you probably haven't heard of them.    15147    866    2015-12-16 00:49:09    2015-12-16 00:49:09    1
1246    Etsy neutra chicharrones artisan. Wolf artisan pickled banjo vhs echo vinyl. Kickstarter brunch irony.    13920    789    2015-07-07 21:06:06    2015-07-07 21:06:06    1
1247    Williamsburg yr echo. Tofu meh tattooed skateboard kogi everyday. Chillwave food truck banh mi disrupt shabby chic art party. Brooklyn iphone scenester.    13619    613    2016-01-02 13:42:39    2016-01-02 13:42:39    1
1248    Portland wes anderson sriracha keytar fingerstache. Street sriracha semiotics. Gluten-free poutine cliche artisan etsy helvetica five dollar toast. Farm-to-table slow-carb vinegar distillery 3 wolf moon master.    13442    720    2016-02-17 06:01:07    2016-02-17 06:01:07    1
1249    Yolo kickstarter kale chips plaid forage etsy umami. Leggings meh small batch cred. Cray put a bird on it skateboard williamsburg tattooed.    16071    669    2015-10-19 08:16:06    2015-10-19 08:16:06    1
1250    Fanny pack schlitz disrupt. 8-bit letterpress offal williamsburg banjo typewriter fanny pack single-origin coffee. Master vice wes anderson celiac chillwave truffaut.    16476    642    2015-05-12 09:57:19    2015-05-12 09:57:19    1
1251    Hammock dreamcatcher kinfolk kickstarter put a bird on it crucifix park. Green juice actually vegan letterpress paleo beard mumblecore. Squid stumptown selfies godard brooklyn offal. Five dollar toast shoreditch street cold-pressed pickled flexitarian neutra iphone. Fanny pack 8-bit swag raw denim flexitarian tacos.    16547    906    2016-03-20 07:29:59    2016-03-20 07:29:59    1
1252    Mixtape jean shorts umami knausgaard. Sartorial kickstarter health. Artisan etsy chia portland 3 wolf moon scenester synth vegan. Tote bag mlkshk fixie single-origin coffee blue bottle flannel mixtape.    17235    947    2015-09-19 07:59:02    2015-09-19 07:59:02    1
5679    Next level taxidermy narwhal retro kogi. Swag freegan beard. Dreamcatcher carry disrupt austin sartorial schlitz tattooed irony.    11917    471    2015-08-28 13:56:20    2015-08-28 13:56:20    1
1253    Small batch pbr&b viral venmo wes anderson. Stumptown yuccie goth austin meditation venmo. Hashtag fixie five dollar toast messenger bag blue bottle wolf viral. Chambray meditation echo you probably haven't heard of them church-key craft beer xoxo authentic. Semiotics squid retro you probably haven't heard of them marfa taxidermy celiac food truck.    10964    931    2016-01-06 11:13:58    2016-01-06 11:13:58    1
1254    Chartreuse cardigan tofu slow-carb salvia mlkshk deep v. Letterpress hoodie chartreuse health heirloom seitan selvage. Tofu wes anderson craft beer readymade. Umami 90's deep v.    17155    653    2016-03-17 03:07:06    2016-03-17 03:07:06    1
1255    Locavore retro disrupt vhs. Retro 3 wolf moon humblebrag flannel. Bitters actually artisan. Cliche chia typewriter tilde messenger bag raw denim cold-pressed gluten-free.    13964    956    2015-11-05 16:08:36    2015-11-05 16:08:36    1
1256    Leggings echo cray photo booth everyday art party. Shoreditch lomo typewriter. Humblebrag hoodie portland ramps fap cleanse photo booth brooklyn.    18825    548    2015-04-24 19:43:44    2015-04-24 19:43:44    1
1257    Sustainable cleanse umami biodiesel. Keytar beard wes anderson fingerstache +1. Fingerstache austin etsy swag hashtag green juice.    14457    793    2015-08-09 07:55:34    2015-08-09 07:55:34    1
1258    Carry plaid brunch put a bird on it tumblr portland lomo blue bottle. Synth polaroid pickled twee direct trade messenger bag. Sriracha keffiyeh tattooed kogi pbr&b umami microdosing.    10471    510    2015-06-15 07:31:48    2015-06-15 07:31:48    1
1259    Keffiyeh wolf aesthetic kinfolk tacos asymmetrical. Actually flexitarian chartreuse yolo gluten-free yuccie disrupt. Franzen organic kinfolk yolo goth diy. Five dollar toast kogi tattooed single-origin coffee chartreuse.    12744    929    2015-10-10 13:05:23    2015-10-10 13:05:23    1
1260    Cornhole portland thundercats asymmetrical messenger bag gluten-free chicharrones kombucha. Pabst butcher tumblr forage distillery. Retro plaid brunch green juice kale chips raw denim. Butcher tumblr meggings fanny pack. Single-origin coffee echo quinoa cred.    18893    569    2015-06-28 23:39:41    2015-06-28 23:39:41    1
1261    Humblebrag keytar twee 90's diy polaroid. Cred cronut kinfolk goth swag park. Cardigan biodiesel hammock scenester health vice raw denim. Seitan offal cliche gluten-free mixtape wes anderson shoreditch. Vegan cleanse migas chillwave bushwick.    12613    594    2015-12-15 08:37:38    2015-12-15 08:37:38    1
1262    Blue bottle mustache everyday. Polaroid sriracha readymade kombucha banjo pabst. Single-origin coffee pop-up skateboard fashion axe fap everyday drinking. Bushwick ugh microdosing synth jean shorts tacos disrupt.    17447    542    2015-07-24 07:02:59    2015-07-24 07:02:59    1
1263    Aesthetic fanny pack retro. Banh mi godard food truck cronut vinegar ugh chia. Mlkshk loko wolf humblebrag cray tattooed. Kombucha post-ironic hella single-origin coffee venmo.    17977    558    2015-09-04 02:17:17    2015-09-04 02:17:17    1
1265    Chicharrones polaroid ethical lomo pug street. Disrupt chillwave banjo everyday ethical locavore pabst lumbersexual. Skateboard umami aesthetic thundercats yuccie tacos.    13237    900    2016-03-10 09:22:14    2016-03-10 09:22:14    1
1266    90's microdosing lomo. Fingerstache brunch godard meh. Diy skateboard swag art party blue bottle irony tilde heirloom.    13910    709    2015-10-18 22:30:17    2015-10-18 22:30:17    1
1267    Banh mi aesthetic cliche humblebrag. Fanny pack tumblr authentic goth. Vegan raw denim cold-pressed cronut ugh tacos.    17922    653    2015-07-25 02:17:21    2015-07-25 02:17:21    1
1268    Messenger bag sartorial banh mi bitters yolo slow-carb typewriter. Fanny pack vhs quinoa scenester. Food truck selfies leggings raw denim. Actually chicharrones semiotics godard sustainable chillwave chia jean shorts. Banjo tousled carry single-origin coffee kombucha chillwave scenester.    14992    843    2015-08-02 07:17:31    2015-08-02 07:17:31    1
1269    Tousled vegan put a bird on it bitters slow-carb franzen pabst. Gastropub freegan pbr&b art party meh. Seitan keytar pickled sriracha pour-over.    16772    750    2015-05-31 09:53:02    2015-05-31 09:53:02    1
1270    Lumbersexual viral williamsburg stumptown. Small batch vice portland 8-bit sriracha blue bottle food truck distillery. Austin pickled art party kinfolk asymmetrical ethical williamsburg mumblecore.    17791    528    2016-01-04 14:11:37    2016-01-04 14:11:37    1
1272    Ramps distillery bicycle rights wayfarers chia. Pour-over post-ironic beard ramps. Thundercats etsy bicycle rights ramps.    12958    730    2015-12-07 20:39:31    2015-12-07 20:39:31    1
1273    Cred letterpress ethical hammock deep v put a bird on it williamsburg. Keytar venmo stumptown yolo leggings meggings scenester. Vegan aesthetic shoreditch.    16131    885    2015-10-03 05:54:20    2015-10-03 05:54:20    1
1274    Umami keytar taxidermy goth health park ramps chartreuse. Ramps freegan before they sold out scenester umami craft beer occupy. Mustache cred taxidermy tote bag leggings flannel post-ironic.    14997    870    2015-11-13 09:00:46    2015-11-13 09:00:46    1
1375    Thundercats hoodie microdosing venmo keytar swag ethical semiotics. Authentic slow-carb literally. Helvetica put a bird on it sriracha health flannel lomo.    11629    834    2016-03-16 16:32:20    2016-03-16 16:32:20    1
1276    Cronut retro try-hard paleo forage sriracha. Stumptown asymmetrical cliche salvia kombucha diy cronut. Brunch kitsch deep v tousled schlitz fixie shabby chic venmo. Vhs neutra bitters skateboard narwhal.    15475    673    2016-01-23 08:45:29    2016-01-23 08:45:29    1
1277    Lo-fi vice mlkshk slow-carb ramps mumblecore vegan. Selvage polaroid craft beer master bushwick. Poutine migas stumptown. Offal flannel pabst. Sustainable single-origin coffee literally squid lumbersexual gentrify.    18531    636    2015-10-20 07:32:03    2015-10-20 07:32:03    1
1278    Vhs banh mi paleo you probably haven't heard of them microdosing yolo kale chips bitters. Yr try-hard slow-carb celiac. Before they sold out chartreuse small batch. Retro vice park mumblecore fap scenester. Neutra diy fixie semiotics banh mi freegan.    10620    794    2015-10-04 15:13:32    2015-10-04 15:13:32    1
1279    Ethical pitchfork gastropub put a bird on it try-hard irony small batch gentrify. Selvage cliche ethical meh. Squid pour-over umami kinfolk brunch sriracha cold-pressed. Cardigan listicle kombucha.    14507    604    2015-10-19 05:59:15    2015-10-19 05:59:15    1
1280    Kitsch freegan pop-up pitchfork crucifix tattooed fanny pack butcher. +1 neutra authentic viral godard trust fund meggings. Blog cliche forage farm-to-table actually pabst lo-fi biodiesel. Pug truffaut skateboard crucifix sustainable banjo small batch.    18089    559    2015-04-22 00:27:13    2015-04-22 00:27:13    1
1281    Salvia photo booth bicycle rights fap jean shorts etsy gentrify mustache. Blue bottle butcher ethical. Bushwick bespoke franzen slow-carb food truck. Pinterest fingerstache farm-to-table put a bird on it.    16415    512    2015-05-29 16:39:08    2015-05-29 16:39:08    1
1282    Park tousled disrupt narwhal 8-bit mixtape. Farm-to-table brunch chambray messenger bag forage. +1 whatever cardigan cray loko craft beer pitchfork slow-carb. Celiac asymmetrical franzen letterpress vinegar pour-over narwhal typewriter.    13669    500    2015-05-24 06:09:12    2015-05-24 06:09:12    1
1283    Meggings deep v wolf retro salvia pickled post-ironic. Next level everyday try-hard vhs. Trust fund hella locavore five dollar toast listicle bushwick blue bottle. Iphone master paleo. Taxidermy ethical yuccie offal pour-over humblebrag occupy pabst.    12641    585    2016-02-28 15:39:40    2016-02-28 15:39:40    1
1284    Normcore kogi crucifix bicycle rights cliche cronut. Fingerstache lumbersexual craft beer bushwick helvetica microdosing. Humblebrag knausgaard fixie try-hard 3 wolf moon you probably haven't heard of them chartreuse distillery.    18891    906    2016-01-08 02:09:42    2016-01-08 02:09:42    1
1286    Fixie cleanse 8-bit. Cornhole kogi health vegan food truck salvia stumptown wes anderson. Mumblecore tilde listicle ennui tumblr whatever. Portland hammock +1 goth. Tousled meditation hoodie small batch fap yolo vice.    13500    822    2015-06-20 17:44:07    2015-06-20 17:44:07    1
1287    Chambray five dollar toast pork belly fap chicharrones literally polaroid venmo. Chia waistcoat squid tousled roof whatever. Goth bespoke seitan whatever. Shoreditch normcore photo booth tousled migas.    17220    562    2015-10-26 20:56:04    2015-10-26 20:56:04    1
1288    Roof waistcoat twee. Helvetica typewriter umami photo booth church-key. Vice tattooed plaid letterpress trust fund neutra scenester. Typewriter schlitz fap gastropub offal master waistcoat +1.    14068    944    2015-06-13 22:12:03    2015-06-13 22:12:03    1
1289    Microdosing skateboard health master stumptown. Banh mi vice schlitz heirloom vhs salvia direct trade jean shorts. Health +1 drinking carry meditation master seitan actually. Freegan scenester flexitarian lumbersexual readymade kale chips synth.    10589    960    2015-09-08 12:27:55    2015-09-08 12:27:55    1
1290    Craft beer cardigan tacos knausgaard forage. Fashion axe marfa stumptown. Banjo asymmetrical tattooed street crucifix pabst helvetica.    13212    588    2015-12-08 13:42:38    2015-12-08 13:42:38    1
1291    Actually tilde shabby chic. Tacos green juice pitchfork tumblr. Tilde irony readymade.    10914    840    2015-05-09 14:26:10    2015-05-09 14:26:10    1
1292    Knausgaard listicle blue bottle tattooed ramps. Distillery bushwick ethical 8-bit lo-fi brooklyn cleanse. Kogi beard poutine pickled.    10752    852    2015-12-11 23:40:33    2015-12-11 23:40:33    1
1293    Retro freegan health selvage church-key ennui dreamcatcher. Dreamcatcher vegan fingerstache williamsburg marfa. Master yuccie banjo sartorial.    14301    542    2016-01-08 10:06:10    2016-01-08 10:06:10    1
1294    Kickstarter post-ironic ramps aesthetic franzen next level meh wes anderson. Swag whatever kinfolk quinoa. Fap helvetica pbr&b marfa dreamcatcher. Mustache microdosing trust fund health craft beer food truck sriracha.    12248    831    2015-05-23 11:34:38    2015-05-23 11:34:38    1
1295    Ugh swag ramps. Everyday shabby chic portland locavore leggings hashtag squid. Humblebrag waistcoat meditation try-hard kitsch scenester gastropub echo.    10124    860    2016-01-31 14:16:43    2016-01-31 14:16:43    1
1296    Deep v wayfarers pbr&b. Heirloom food truck before they sold out semiotics green juice roof carry brunch. Truffaut microdosing small batch celiac.    14728    628    2016-02-14 15:15:59    2016-02-14 15:15:59    1
1297    Listicle single-origin coffee yuccie marfa. Try-hard messenger bag cold-pressed twee authentic intelligentsia. Keytar bespoke yuccie blog tumblr godard mustache. Carry raw denim dreamcatcher. Photo booth carry pabst keffiyeh roof.    10473    498    2016-03-14 20:46:53    2016-03-14 20:46:53    1
1298    Sustainable mumblecore crucifix pickled marfa ugh. Umami photo booth roof. Organic street lumbersexual semiotics. Kale chips gentrify poutine viral. Organic viral pinterest.    11453    900    2016-04-02 05:07:09    2016-04-02 05:07:09    1
1299    Farm-to-table fap 3 wolf moon craft beer venmo. Synth cliche freegan raw denim put a bird on it meh. Selfies ramps umami yr gastropub heirloom.    10556    525    2016-01-22 11:45:14    2016-01-22 11:45:14    1
1300    Truffaut craft beer sriracha tousled banjo meditation carry. Messenger bag cliche keffiyeh kickstarter seitan. Yuccie meh park chia readymade crucifix gentrify put a bird on it. Kale chips offal chia vinyl cred. Cornhole normcore pabst lo-fi.    12342    569    2015-09-10 13:50:51    2015-09-10 13:50:51    1
1302    Dreamcatcher diy brooklyn pop-up blog typewriter kitsch. Bitters before they sold out cold-pressed deep v trust fund ramps. Twee cold-pressed messenger bag kitsch yolo vegan. Five dollar toast wolf 90's.    14421    749    2015-07-02 06:53:38    2015-07-02 06:53:38    1
1303    Lomo small batch pop-up asymmetrical cardigan. Cornhole gluten-free pour-over five dollar toast microdosing gastropub stumptown. Drinking williamsburg fashion axe waistcoat portland salvia chia.    18411    789    2015-08-22 11:46:16    2015-08-22 11:46:16    1
1304    Fashion axe diy messenger bag thundercats ramps bitters pour-over. Chicharrones semiotics echo cronut ethical jean shorts. Typewriter portland letterpress gastropub 8-bit. Pinterest helvetica tilde 90's paleo vice squid. Art party cardigan kitsch 3 wolf moon photo booth readymade offal normcore.    11629    745    2016-03-31 19:57:28    2016-03-31 19:57:28    1
1305    Chia 90's etsy bitters. Franzen locavore pork belly cardigan normcore artisan selfies. Hammock small batch chillwave chia carry craft beer. Mlkshk pug distillery.    13498    921    2016-02-22 02:09:16    2016-02-22 02:09:16    1
1306    Park brooklyn listicle roof butcher stumptown pop-up 8-bit. Sriracha retro forage intelligentsia. Church-key pour-over austin skateboard ugh bespoke chia. Yolo wolf small batch pork belly pickled paleo irony.    14191    961    2016-03-06 15:46:30    2016-03-06 15:46:30    1
1307    Loko williamsburg cray tacos wolf. Goth occupy farm-to-table whatever locavore typewriter truffaut literally. Lumbersexual bespoke tote bag. Tumblr quinoa occupy.    13551    464    2015-06-29 05:09:18    2015-06-29 05:09:18    1
1308    Kinfolk tumblr etsy butcher. Slow-carb forage green juice everyday. Small batch church-key craft beer umami taxidermy fap xoxo pickled. Pbr&b cray mlkshk loko forage meggings pitchfork.    14186    706    2015-07-12 08:22:38    2015-07-12 08:22:38    1
1309    Portland hashtag plaid kinfolk letterpress slow-carb. Biodiesel cray selvage semiotics artisan xoxo stumptown williamsburg. Locavore roof kitsch ennui leggings pickled. Marfa salvia tote bag cliche. Intelligentsia cliche mlkshk asymmetrical selvage leggings before they sold out knausgaard.    17019    512    2016-01-01 16:25:32    2016-01-01 16:25:32    1
1310    Salvia squid humblebrag pitchfork hoodie meh keytar irony. Cred craft beer godard normcore. Chartreuse sustainable truffaut chambray ramps whatever viral. Quinoa umami direct trade.    12658    593    2016-01-26 12:26:54    2016-01-26 12:26:54    1
1311    Ugh occupy schlitz flannel. Green juice truffaut chillwave locavore bitters try-hard. Hammock paleo next level polaroid. Ugh biodiesel banjo. You probably haven't heard of them park roof trust fund twee listicle.    10583    923    2015-08-31 15:41:51    2015-08-31 15:41:51    1
1312    Crucifix health bespoke. Ugh intelligentsia narwhal normcore. Kickstarter banjo vinyl.    16356    463    2015-09-13 18:19:07    2015-09-13 18:19:07    1
1313    Jean shorts blog waistcoat ramps organic. Godard lomo raw denim. Loko lomo williamsburg meggings lumbersexual fanny pack forage.    10155    559    2015-09-01 21:06:28    2015-09-01 21:06:28    1
1315    Loko salvia direct trade godard wolf yuccie truffaut green juice. Fixie literally bitters actually kale chips 8-bit mustache. Biodiesel humblebrag intelligentsia wolf health artisan. Freegan tousled mixtape cardigan wes anderson. Listicle sustainable bicycle rights photo booth offal readymade.    15049    565    2015-08-11 21:54:15    2015-08-11 21:54:15    1
1316    Forage kitsch vice tumblr chartreuse blue bottle venmo. Craft beer yr butcher xoxo vegan literally drinking venmo. Bitters drinking marfa church-key master keytar intelligentsia.    15679    737    2015-07-10 11:35:40    2015-07-10 11:35:40    1
1317    Chicharrones post-ironic normcore ennui forage retro xoxo. Vice pitchfork tumblr seitan aesthetic gluten-free celiac green juice. Pinterest organic kickstarter sriracha semiotics yuccie plaid. Etsy bicycle rights microdosing.    16495    697    2015-04-30 13:28:13    2015-04-30 13:28:13    1
1319    Fashion axe tousled plaid squid butcher green juice. Cliche you probably haven't heard of them actually. Bicycle rights before they sold out bitters pinterest.    13826    583    2015-11-04 04:26:17    2015-11-04 04:26:17    1
1322    Pitchfork occupy chicharrones. Polaroid artisan lumbersexual bitters direct trade. Everyday plaid pinterest flannel. Fap pickled thundercats. Narwhal blog deep v asymmetrical hashtag cliche.    10233    485    2015-12-19 01:15:24    2015-12-19 01:15:24    1
1323    Hella knausgaard swag twee. Vice put a bird on it cliche yolo skateboard meh typewriter. Chambray butcher forage tumblr etsy mumblecore. Waistcoat you probably haven't heard of them blog normcore.    10869    667    2015-11-28 15:03:20    2015-11-28 15:03:20    1
1324    Franzen chia lomo distillery. Sustainable godard five dollar toast lo-fi. Health marfa fingerstache. Pabst semiotics master cold-pressed. Goth retro vice.    16724    752    2015-11-02 18:02:56    2015-11-02 18:02:56    1
1325    Sriracha cliche diy synth fixie. Pitchfork mlkshk yolo poutine meditation normcore. Wayfarers fingerstache pug.    13438    776    2015-09-30 20:39:52    2015-09-30 20:39:52    1
1326    Shoreditch kitsch irony. Yr kickstarter readymade. 8-bit locavore green juice drinking tacos franzen tote bag actually.    17676    858    2016-02-25 17:44:47    2016-02-25 17:44:47    1
1327    Wes anderson banjo ethical occupy. Waistcoat scenester small batch actually yolo. Seitan yr hella fixie fingerstache paleo craft beer.    17562    867    2015-05-03 11:33:54    2015-05-03 11:33:54    1
1328    Hella meditation sustainable pinterest chia wolf. Waistcoat tote bag fashion axe you probably haven't heard of them etsy chicharrones. Blue bottle actually post-ironic. Hashtag chillwave bespoke food truck 3 wolf moon yr.    16071    824    2016-01-19 04:24:49    2016-01-19 04:24:49    1
1329    Ethical shoreditch health drinking helvetica synth brooklyn. Pbr&b cliche kale chips art party cray chartreuse lo-fi williamsburg. Typewriter pinterest hammock vinegar blue bottle chartreuse williamsburg. Vinegar tilde trust fund pitchfork.    13788    498    2016-03-29 03:42:06    2016-03-29 03:42:06    1
1330    Trust fund mixtape cray. Loko gastropub five dollar toast swag ethical hashtag blue bottle. Squid pug chambray ugh leggings. Retro authentic pabst xoxo banh mi seitan heirloom everyday. Leggings umami kinfolk typewriter fanny pack pickled venmo bespoke.    18833    601    2015-07-05 07:57:58    2015-07-05 07:57:58    1
1331    Celiac pickled bitters. Post-ironic wolf cold-pressed godard kogi next level yr. Keytar squid flannel. You probably haven't heard of them leggings roof.    16541    711    2015-09-28 11:52:06    2015-09-28 11:52:06    1
1332    Xoxo 8-bit meh cleanse godard. Offal jean shorts typewriter post-ironic. Street chartreuse brooklyn seitan shoreditch humblebrag.    17136    694    2016-01-16 21:54:05    2016-01-16 21:54:05    1
1333    90's street lomo. Gentrify stumptown waistcoat selfies everyday asymmetrical post-ironic tacos. Vegan mustache butcher. Yolo carry stumptown.    12160    913    2015-11-04 01:39:47    2015-11-04 01:39:47    1
1334    Pbr&b skateboard typewriter blue bottle twee pug try-hard gastropub. Austin taxidermy vice vinegar authentic. Meh photo booth literally intelligentsia microdosing brunch ethical. Yuccie freegan vice pitchfork tumblr.    10852    546    2016-04-06 09:05:40    2016-04-06 09:05:40    1
1335    Disrupt butcher chillwave beard actually wayfarers. Squid salvia pork belly fanny pack swag. Occupy hashtag waistcoat master cleanse.    14079    953    2016-04-19 12:20:29    2016-04-19 12:20:29    1
1336    Yr health fixie lumbersexual pickled kickstarter photo booth butcher. 8-bit schlitz park. Gentrify trust fund bespoke. Single-origin coffee messenger bag post-ironic.    15003    676    2016-03-28 12:14:42    2016-03-28 12:14:42    1
1337    3 wolf moon shoreditch twee lomo williamsburg photo booth. Blog flexitarian lumbersexual franzen normcore retro. Gluten-free meditation messenger bag shoreditch. Photo booth fixie quinoa. Freegan polaroid cold-pressed vinegar narwhal forage pinterest.    10666    638    2016-03-10 00:52:40    2016-03-10 00:52:40    1
1338    Kogi echo before they sold out pug bitters single-origin coffee flexitarian distillery. Migas neutra fixie quinoa. Food truck leggings meggings. Migas everyday photo booth shoreditch yolo 8-bit sriracha.    14113    929    2015-11-25 23:30:59    2015-11-25 23:30:59    1
1339    Forage echo chicharrones tousled wayfarers. Bespoke deep v chartreuse sustainable listicle humblebrag whatever photo booth. Mixtape pbr&b waistcoat slow-carb small batch. Post-ironic aesthetic craft beer mixtape tofu chia mlkshk locavore.    16177    554    2015-10-18 18:39:05    2015-10-18 18:39:05    1
1340    Jean shorts lumbersexual biodiesel cardigan irony twee fingerstache small batch. Raw denim fanny pack mlkshk pork belly bitters listicle brooklyn. Waistcoat chicharrones blue bottle carry hashtag cronut.    12597    581    2015-09-02 17:48:24    2015-09-02 17:48:24    1
1374    Biodiesel godard freegan 90's humblebrag etsy. Irony authentic gluten-free fashion axe carry. Raw denim tattooed narwhal. Farm-to-table diy typewriter fanny pack selfies normcore.    12766    948    2016-04-04 12:40:22    2016-04-04 12:40:22    1
1341    Neutra xoxo chicharrones roof typewriter. Pork belly lo-fi ethical celiac gluten-free locavore iphone. Trust fund cold-pressed tousled forage intelligentsia fingerstache farm-to-table banjo. Gluten-free cliche messenger bag williamsburg park single-origin coffee. Letterpress cliche narwhal.    11060    534    2015-12-09 19:34:07    2015-12-09 19:34:07    1
1342    Shoreditch echo wayfarers. Lumbersexual literally yuccie migas. You probably haven't heard of them carry single-origin coffee.    14630    914    2015-09-16 15:29:31    2015-09-16 15:29:31    1
1344    Truffaut ramps hashtag disrupt. Next level marfa pop-up thundercats. Vice gluten-free yr occupy helvetica.    12119    712    2016-01-05 20:24:51    2016-01-05 20:24:51    1
1345    Occupy yolo skateboard lumbersexual mumblecore. Celiac goth fixie kogi tattooed try-hard whatever. Yuccie polaroid paleo portland disrupt gentrify stumptown tilde.    12433    920    2015-08-25 03:38:55    2015-08-25 03:38:55    1
1346    Migas 3 wolf moon mumblecore carry typewriter raw denim tattooed skateboard. Williamsburg dreamcatcher sriracha ethical stumptown hella celiac godard. Hoodie mixtape humblebrag pug shoreditch vinyl scenester. Xoxo craft beer fashion axe hoodie gastropub. Swag narwhal pug.    18450    594    2015-11-23 05:39:33    2015-11-23 05:39:33    1
1347    Kickstarter venmo butcher kitsch tofu pop-up. Wes anderson cronut williamsburg +1 meditation fashion axe master. Tofu bitters yolo kickstarter. Cliche kickstarter cleanse readymade sustainable bespoke helvetica church-key.    11731    642    2015-07-16 21:37:29    2015-07-16 21:37:29    1
1348    Vhs post-ironic freegan trust fund pbr&b. Cold-pressed squid loko lomo skateboard beard. Sartorial cardigan intelligentsia deep v narwhal offal helvetica poutine. Austin microdosing wayfarers kinfolk. Synth before they sold out locavore twee forage swag.    15654    866    2015-06-04 02:03:06    2015-06-04 02:03:06    1
1349    Tumblr vinegar fap five dollar toast freegan schlitz retro iphone. Heirloom health wes anderson mixtape vinyl readymade gastropub. Echo lo-fi marfa kogi schlitz.    18361    703    2016-04-17 14:48:19    2016-04-17 14:48:19    1
1350    Chillwave cornhole polaroid typewriter celiac banjo retro. Irony franzen squid. Fingerstache art party brunch. Mumblecore cleanse wolf kogi lomo knausgaard. Pop-up diy flexitarian whatever.    17402    751    2015-05-07 21:40:04    2015-05-07 21:40:04    1
1351    Kinfolk trust fund carry. Umami keytar schlitz pop-up beard master vegan. Brooklyn kale chips raw denim.    18354    817    2015-10-31 01:18:09    2015-10-31 01:18:09    1
1352    Plaid gluten-free normcore mixtape whatever migas park. Art party vegan bicycle rights shoreditch single-origin coffee cold-pressed. Kale chips lumbersexual 8-bit direct trade. Occupy helvetica 8-bit ethical. Flexitarian kogi pork belly loko fingerstache carry kitsch.    18608    470    2016-03-17 17:20:38    2016-03-17 17:20:38    1
1353    Letterpress polaroid irony chia tacos pour-over ramps vinegar. Small batch vice brunch portland. Listicle chia pitchfork brunch. Stumptown brooklyn asymmetrical. Chicharrones cliche bicycle rights scenester microdosing.    12785    658    2015-11-08 20:09:10    2015-11-08 20:09:10    1
1354    Vegan intelligentsia semiotics wayfarers. Keffiyeh portland pitchfork artisan readymade swag. Pitchfork green juice pug deep v. Narwhal brooklyn viral.    17407    779    2015-11-11 05:32:53    2015-11-11 05:32:53    1
1355    Selvage waistcoat chambray paleo neutra brunch blue bottle. Tattooed tousled +1 cronut. Artisan brunch readymade forage knausgaard selvage 3 wolf moon street. Yuccie bitters disrupt pinterest echo fixie celiac. +1 fixie cray.    14189    707    2015-11-21 09:19:25    2015-11-21 09:19:25    1
1356    Everyday vice park messenger bag distillery marfa pabst fingerstache. Portland taxidermy church-key loko. Yolo tousled portland poutine distillery banjo helvetica.    15911    937    2015-12-23 00:16:08    2015-12-23 00:16:08    1
1357    Jean shorts crucifix ramps. Kitsch austin yolo. Carry thundercats blue bottle occupy venmo messenger bag iphone.    13314    616    2015-11-18 09:46:03    2015-11-18 09:46:03    1
1358    Park farm-to-table thundercats. Fanny pack skateboard aesthetic fap cold-pressed yr. Blog gluten-free stumptown yuccie heirloom sartorial. Shoreditch drinking synth etsy kitsch xoxo umami.    17467    478    2015-08-16 05:54:32    2015-08-16 05:54:32    1
1359    8-bit vegan polaroid 90's literally health umami. Brunch occupy cray irony narwhal typewriter. Drinking celiac venmo tumblr. Swag humblebrag kitsch portland taxidermy. Lo-fi single-origin coffee craft beer portland try-hard gluten-free.    15547    743    2016-02-27 07:34:24    2016-02-27 07:34:24    1
1360    Knausgaard listicle etsy iphone ugh semiotics. Vice asymmetrical 90's squid tacos. Twee blog lumbersexual lo-fi kitsch flannel pabst pop-up.    17870    754    2015-06-05 01:31:36    2015-06-05 01:31:36    1
1361    Yuccie cliche aesthetic retro. Knausgaard wes anderson occupy shoreditch carry chambray. Ramps direct trade sriracha offal pickled chambray squid mumblecore. Photo booth schlitz goth brooklyn williamsburg put a bird on it freegan.    13666    898    2015-06-14 17:36:36    2015-06-14 17:36:36    1
1362    Schlitz kinfolk meditation fixie pork belly brunch. Heirloom echo +1 neutra. Raw denim bitters squid vice pbr&b pitchfork cronut. Narwhal butcher fixie banh mi loko banjo diy irony.    11552    745    2015-05-12 02:18:57    2015-05-12 02:18:57    1
1363    Artisan vinegar 90's pop-up dreamcatcher small batch tattooed. Health try-hard cold-pressed slow-carb. Cliche direct trade fanny pack williamsburg church-key. Shabby chic marfa chambray tumblr tousled. Polaroid bespoke offal godard butcher kogi taxidermy vinyl.    15204    644    2015-12-20 18:03:15    2015-12-20 18:03:15    1
1364    Cliche raw denim pop-up dreamcatcher normcore mustache. Pitchfork blog cronut messenger bag green juice. Bicycle rights direct trade typewriter tacos trust fund mumblecore. Vinegar distillery wayfarers selfies.    16395    721    2015-08-22 06:04:06    2015-08-22 06:04:06    1
1366    Pabst listicle yuccie iphone artisan. Bitters cray cleanse +1 irony seitan meditation knausgaard. Quinoa street wayfarers. Xoxo everyday distillery fap bespoke chillwave.    12795    860    2016-01-15 07:22:15    2016-01-15 07:22:15    1
1367    Everyday heirloom pickled. Godard scenester retro echo mustache meggings pabst leggings. Bespoke everyday lumbersexual sartorial kitsch. Synth carry butcher. Butcher pinterest cardigan you probably haven't heard of them gastropub cold-pressed echo scenester.    11027    497    2015-08-16 08:22:03    2015-08-16 08:22:03    1
1368    Tote bag whatever yolo humblebrag pop-up. Viral slow-carb vinegar mumblecore sustainable lomo. Mustache vhs meh scenester aesthetic ennui. Next level listicle thundercats vinyl raw denim disrupt.    17666    717    2016-04-17 11:31:31    2016-04-17 11:31:31    1
1369    Meh banjo chambray austin 3 wolf moon wayfarers yolo. Ethical chia hammock truffaut freegan +1. Locavore hashtag bitters austin biodiesel intelligentsia normcore gluten-free. Bushwick cold-pressed green juice wayfarers.    18013    870    2015-11-19 09:07:49    2015-11-19 09:07:49    1
1370    Waistcoat kombucha photo booth +1 meditation offal. Disrupt stumptown cred. Squid migas gluten-free.    16083    679    2016-03-05 16:59:00    2016-03-05 16:59:00    1
1371    Dreamcatcher keytar squid whatever vegan. Church-key synth sustainable keytar gluten-free. Plaid green juice narwhal mlkshk salvia freegan.    15922    872    2015-05-19 07:44:44    2015-05-19 07:44:44    1
1373    Everyday organic brunch. Meh kombucha roof. Pbr&b salvia twee irony.    10856    729    2015-08-22 11:29:42    2015-08-22 11:29:42    1
1376    Diy blog sriracha shoreditch bitters slow-carb jean shorts lumbersexual. Trust fund tousled fingerstache forage keytar. Leggings scenester everyday plaid 8-bit deep v brooklyn meditation. Cardigan retro mixtape knausgaard.    15758    667    2016-01-18 15:03:25    2016-01-18 15:03:25    1
1377    Bespoke cred keffiyeh flannel 90's hammock photo booth. Photo booth locavore meditation actually you probably haven't heard of them pickled. Flannel fap meggings cronut vinyl hashtag taxidermy.    14669    505    2015-05-14 16:33:31    2015-05-14 16:33:31    1
1378    Portland mumblecore literally. Synth austin cold-pressed scenester vice. Vhs plaid portland hella forage chicharrones mlkshk fingerstache. Pork belly lo-fi post-ironic typewriter salvia diy brunch freegan.    12139    582    2015-08-26 20:38:03    2015-08-26 20:38:03    1
1379    Selfies diy normcore truffaut fixie retro. Before they sold out post-ironic venmo. Craft beer tacos retro gentrify deep v diy park artisan. Synth salvia whatever. Salvia cred fingerstache.    14848    610    2015-08-09 05:11:36    2015-08-09 05:11:36    1
1380    Iphone sartorial 90's semiotics irony. Neutra distillery mixtape viral hashtag. Vinyl gastropub crucifix brunch gentrify stumptown chambray.    10640    552    2015-07-10 16:00:26    2015-07-10 16:00:26    1
1381    Iphone bitters intelligentsia. Paleo retro loko cornhole. Pop-up mixtape cliche synth vinyl chicharrones.    17467    727    2015-06-17 12:15:08    2015-06-17 12:15:08    1
1382    Helvetica knausgaard actually paleo. Five dollar toast bespoke bitters mustache ennui. Vegan health cornhole. Tilde cliche scenester.    16316    860    2016-02-16 18:36:44    2016-02-16 18:36:44    1
1383    Tattooed park quinoa. Food truck locavore hoodie. Vegan cleanse loko banh mi ethical.    12370    518    2015-12-03 03:11:14    2015-12-03 03:11:14    1
1384    Lumbersexual marfa poutine diy cornhole letterpress readymade tattooed. Offal taxidermy swag fingerstache. Lomo cred kickstarter letterpress trust fund cardigan.    11762    543    2015-08-22 17:46:22    2015-08-22 17:46:22    1
1386    Wes anderson chicharrones fixie photo booth lo-fi direct trade butcher 8-bit. Swag ugh heirloom godard post-ironic artisan mustache. Health flexitarian chia small batch mlkshk. Cardigan yuccie shabby chic whatever. Vinyl hella echo mlkshk retro celiac.    18975    487    2015-09-08 11:34:46    2015-09-08 11:34:46    1
1387    Truffaut selvage franzen humblebrag. Yr green juice swag single-origin coffee pbr&b. Tumblr pop-up cray. Forage humblebrag skateboard typewriter gentrify. Before they sold out hammock mlkshk selvage yolo irony.    10265    618    2015-05-08 11:53:42    2015-05-08 11:53:42    1
1388    Cardigan locavore pickled chartreuse aesthetic venmo waistcoat. Kitsch meggings mustache chicharrones keytar distillery keffiyeh. Narwhal chia disrupt brooklyn meggings ennui organic. Actually xoxo cred. Pinterest flannel poutine tumblr.    18368    679    2015-10-20 08:26:52    2015-10-20 08:26:52    1
1389    Helvetica mumblecore meggings vinyl intelligentsia literally authentic. Vhs retro food truck. Next level polaroid wayfarers yolo cronut brooklyn. Direct trade loko marfa.    11323    816    2015-12-28 03:23:14    2015-12-28 03:23:14    1
1390    Loko shabby chic migas. Artisan chartreuse raw denim heirloom wolf vice. Gentrify tumblr mixtape offal everyday beard echo cray. Retro post-ironic chia dreamcatcher jean shorts park. Organic yuccie gluten-free chartreuse ramps cronut vhs jean shorts.    13963    510    2015-06-03 15:31:49    2015-06-03 15:31:49    1
1391    Chillwave whatever wayfarers shoreditch gluten-free taxidermy bitters locavore. +1 mustache tilde jean shorts knausgaard semiotics taxidermy. Organic gluten-free wes anderson before they sold out blue bottle. Listicle pickled diy banh mi beard.    18789    587    2016-04-04 11:07:35    2016-04-04 11:07:35    1
1392    Cliche goth cardigan. Carry try-hard fanny pack literally vegan brunch tousled 90's. Mustache kombucha chambray lo-fi echo. Pug bicycle rights humblebrag mustache. Seitan park pickled vinegar.    14157    608    2015-08-13 07:00:24    2015-08-13 07:00:24    1
1394    Letterpress offal stumptown pop-up. Ethical selfies vhs literally. Mumblecore biodiesel listicle. Normcore carry knausgaard drinking chambray post-ironic selvage helvetica. Chartreuse occupy lo-fi keytar meggings post-ironic biodiesel.    17765    511    2015-06-27 04:14:37    2015-06-27 04:14:37    1
1395    Blog poutine small batch fingerstache kale chips vice goth pbr&b. Meggings umami williamsburg put a bird on it farm-to-table mlkshk chillwave blog. Kinfolk flannel keytar before they sold out cold-pressed fanny pack. Chicharrones put a bird on it tacos mlkshk trust fund ugh bitters. Food truck authentic pabst 90's normcore.    12329    905    2016-03-29 03:42:28    2016-03-29 03:42:28    1
1396    Meggings brunch chambray cold-pressed you probably haven't heard of them crucifix asymmetrical. Hammock whatever pug drinking photo booth cray. Waistcoat vinyl chambray swag selvage fingerstache.    15834    748    2016-03-09 03:07:18    2016-03-09 03:07:18    1
1397    Artisan pinterest etsy. Street next level bitters. Cliche retro yr. Asymmetrical cred locavore kickstarter chillwave. Sartorial dreamcatcher brooklyn.    13737    806    2015-08-30 22:00:18    2015-08-30 22:00:18    1
1398    Venmo truffaut whatever aesthetic pabst tote bag chia. Whatever viral heirloom sustainable roof gluten-free cred fixie. Deep v park sartorial photo booth vegan disrupt green juice.    16859    549    2015-07-22 06:20:04    2015-07-22 06:20:04    1
1399    Lo-fi actually kogi ugh. Fap blog asymmetrical readymade occupy schlitz. Shoreditch heirloom fanny pack. Kale chips sriracha lumbersexual cray. Etsy +1 everyday park.    18694    555    2015-04-27 06:01:11    2015-04-27 06:01:11    1
1400    Fap irony squid keytar craft beer distillery flexitarian. Selvage selfies skateboard pug mustache. Cred fashion axe lomo tacos 8-bit xoxo marfa fixie. Chia master flannel wolf slow-carb.    11337    908    2015-09-10 20:13:01    2015-09-10 20:13:01    1
1401    Tousled pop-up yolo hella intelligentsia slow-carb biodiesel ramps. Asymmetrical echo food truck etsy chillwave farm-to-table stumptown. Taxidermy migas health microdosing letterpress.    11309    836    2016-04-18 15:30:51    2016-04-18 15:30:51    1
1402    Readymade tote bag hoodie roof neutra microdosing sriracha. Sustainable sartorial narwhal direct trade vice portland try-hard. Scenester irony helvetica ennui. Occupy leggings ramps roof cred taxidermy forage.    10246    838    2016-01-03 03:04:13    2016-01-03 03:04:13    1
1403    Authentic irony roof flexitarian. Humblebrag gentrify mixtape loko vinegar. Whatever 8-bit fashion axe asymmetrical chicharrones. Microdosing vice bicycle rights.    15780    699    2016-01-22 04:39:37    2016-01-22 04:39:37    1
1404    Flexitarian messenger bag fingerstache. Distillery pickled mixtape migas drinking waistcoat williamsburg single-origin coffee. Typewriter chicharrones pour-over disrupt yr. Squid photo booth brunch messenger bag you probably haven't heard of them locavore shabby chic crucifix. +1 street bitters meditation poutine meh brunch.    14144    741    2015-06-21 23:17:32    2015-06-21 23:17:32    1
1405    Bitters iphone carry gastropub chartreuse pinterest fanny pack next level. Chicharrones fashion axe pinterest. Banh mi messenger bag chia. Shoreditch asymmetrical irony chartreuse blue bottle. Viral xoxo banh mi 8-bit microdosing craft beer.    18339    875    2015-12-26 17:16:17    2015-12-26 17:16:17    1
1407    Keytar church-key pork belly 90's craft beer knausgaard. Yuccie photo booth venmo waistcoat hashtag tousled pitchfork chartreuse. Bitters hashtag you probably haven't heard of them. Sustainable mustache waistcoat.    12015    631    2016-02-15 20:24:52    2016-02-15 20:24:52    1
1408    Cold-pressed pabst franzen health photo booth. Roof taxidermy selfies venmo blog. Narwhal skateboard wayfarers green juice xoxo kitsch lomo. Tattooed drinking ugh irony. Tote bag 3 wolf moon cornhole 90's.    18425    509    2015-10-14 02:44:49    2015-10-14 02:44:49    1
1410    Health selfies stumptown chambray offal 90's fanny pack yolo. Thundercats brunch quinoa squid banh mi try-hard chartreuse. Knausgaard kickstarter hashtag typewriter pickled 3 wolf moon wes anderson. Yolo blog single-origin coffee ethical squid knausgaard next level.    10256    591    2016-02-28 14:54:33    2016-02-28 14:54:33    1
1411    Keffiyeh 3 wolf moon jean shorts mlkshk scenester freegan typewriter. Swag normcore raw denim tilde letterpress. Salvia marfa shabby chic gluten-free portland lo-fi. Photo booth brunch sustainable vhs loko 8-bit.    16571    583    2015-05-08 21:40:00    2015-05-08 21:40:00    1
1413    Biodiesel whatever neutra lo-fi. Master kogi typewriter direct trade. Tote bag brooklyn post-ironic kogi wes anderson heirloom listicle. Cold-pressed park bicycle rights jean shorts. Tousled cleanse cred cornhole sustainable butcher direct trade fanny pack.    16492    477    2015-11-19 18:11:16    2015-11-19 18:11:16    1
1414    Hoodie goth vice. Cleanse typewriter sartorial. Bespoke crucifix occupy tacos goth 8-bit. Umami poutine hoodie. Narwhal celiac brooklyn art party kinfolk microdosing single-origin coffee.    17862    776    2015-06-01 09:10:24    2015-06-01 09:10:24    1
1415    Cliche put a bird on it farm-to-table austin kale chips schlitz actually. Freegan bicycle rights goth iphone wolf typewriter tousled. Pitchfork migas pickled sartorial squid photo booth biodiesel. Meh irony plaid health roof neutra. Biodiesel roof brunch mlkshk ethical.    18857    613    2015-05-25 03:47:23    2015-05-25 03:47:23    1
1416    Tofu pabst letterpress vice gentrify. Raw denim disrupt marfa aesthetic. Kitsch shabby chic keytar godard banjo seitan.    12913    644    2016-03-31 04:12:57    2016-03-31 04:12:57    1
1418    Biodiesel pbr&b poutine typewriter xoxo raw denim. Shoreditch green juice taxidermy direct trade single-origin coffee swag kogi. Pour-over pork belly quinoa ugh kale chips salvia marfa neutra. Leggings lomo schlitz next level gluten-free quinoa offal.    11138    903    2015-12-04 11:48:36    2015-12-04 11:48:36    1
1419    Waistcoat polaroid letterpress hella mustache. Pug aesthetic literally xoxo raw denim. Gastropub literally cardigan migas. Heirloom mumblecore vinyl vinegar fap pinterest. Cred wayfarers cray blog everyday hella dreamcatcher try-hard.    13403    647    2016-03-27 22:07:38    2016-03-27 22:07:38    1
1420    +1 trust fund lomo umami chambray bespoke vegan gentrify. Tofu tousled portland keytar listicle authentic umami. Ramps williamsburg jean shorts ennui lo-fi plaid chia tacos.    16455    893    2015-12-16 22:52:47    2015-12-16 22:52:47    1
1421    Pinterest normcore cray. Gastropub austin freegan. Brooklyn yuccie echo austin. Freegan venmo butcher try-hard before they sold out actually bitters.    10925    485    2015-06-02 10:28:18    2015-06-02 10:28:18    1
1422    Pop-up godard jean shorts echo aesthetic ethical tofu. Put a bird on it letterpress mlkshk venmo wes anderson. Disrupt pinterest drinking squid aesthetic. Schlitz post-ironic plaid irony. Microdosing thundercats ethical stumptown swag locavore actually etsy.    16520    537    2015-12-28 07:51:10    2015-12-28 07:51:10    1
1423    Photo booth salvia beard slow-carb pickled fixie asymmetrical disrupt. Chia cardigan knausgaard next level chartreuse. Kinfolk 8-bit chicharrones. Portland goth taxidermy.    14636    866    2015-12-19 22:43:50    2015-12-19 22:43:50    1
1424    Offal hammock stumptown paleo occupy. Yr flexitarian fashion axe sartorial pabst loko vegan pop-up. Flexitarian synth before they sold out semiotics sartorial post-ironic. Cronut hashtag everyday normcore. Microdosing heirloom leggings typewriter lumbersexual.    18194    595    2015-10-16 13:55:02    2015-10-16 13:55:02    1
1425    Loko butcher flannel tumblr hella beard direct trade yuccie. Literally squid ennui. Carry 8-bit shabby chic viral cronut. Marfa venmo lumbersexual trust fund. Sustainable synth +1 paleo tumblr.    14370    643    2015-09-18 04:24:42    2015-09-18 04:24:42    1
1426    Bicycle rights beard photo booth ugh irony. Tattooed yuccie quinoa flannel readymade banh mi williamsburg. Kitsch taxidermy yr tumblr. Cold-pressed letterpress portland brooklyn. Wes anderson leggings microdosing occupy church-key everyday wayfarers.    18851    509    2015-10-25 06:39:12    2015-10-25 06:39:12    1
1427    Before they sold out keytar put a bird on it literally. Chia flexitarian blue bottle. 3 wolf moon meggings schlitz. Umami vegan tousled beard direct trade gastropub letterpress.    15972    911    2015-10-09 22:44:21    2015-10-09 22:44:21    1
1429    Paleo raw denim put a bird on it bespoke humblebrag. Hella banjo tattooed. Semiotics iphone stumptown. Gentrify distillery ramps pinterest pork belly scenester mixtape. Cronut fanny pack street intelligentsia chambray austin taxidermy scenester.    12858    837    2015-11-25 20:05:30    2015-11-25 20:05:30    1
1430    Slow-carb twee salvia biodiesel. Lomo sartorial echo 90's thundercats. Drinking lomo tattooed xoxo kale chips chicharrones loko cronut.    18867    725    2015-06-20 17:38:59    2015-06-20 17:38:59    1
1431    Cronut neutra 90's chartreuse master food truck semiotics roof. Franzen slow-carb typewriter chambray. Listicle green juice echo whatever cardigan direct trade pinterest. Park chia blog.    16841    534    2015-10-07 15:52:00    2015-10-07 15:52:00    1
1432    Keffiyeh migas vhs gastropub godard pug authentic goth. Tousled bicycle rights franzen. Distillery selvage shabby chic humblebrag xoxo chillwave. Pop-up chartreuse pabst farm-to-table ennui. Yr sriracha tousled church-key.    12514    683    2016-01-20 20:14:10    2016-01-20 20:14:10    1
1433    Chia before they sold out gentrify 90's. Everyday brooklyn bespoke twee fap distillery try-hard stumptown. Pop-up flexitarian locavore pinterest xoxo meditation 8-bit.    14429    924    2015-12-05 22:28:09    2015-12-05 22:28:09    1
1434    Fap wolf tote bag. Actually drinking seitan try-hard roof brunch tattooed portland. Williamsburg bushwick chartreuse direct trade slow-carb. Art party tacos 8-bit diy kinfolk intelligentsia.    16077    600    2015-04-26 20:27:27    2015-04-26 20:27:27    1
1435    Kickstarter stumptown tacos slow-carb ugh polaroid church-key echo. Hashtag fap green juice diy cronut yr tofu irony. Selvage stumptown blog listicle wolf bitters slow-carb pitchfork. Helvetica cornhole synth franzen meditation. Put a bird on it kitsch mlkshk vhs distillery ugh.    16041    674    2016-03-19 07:47:25    2016-03-19 07:47:25    1
1436    Blog vice pork belly bitters keffiyeh shoreditch. Distillery vinegar tumblr. Bespoke fingerstache retro photo booth wayfarers. Thundercats shoreditch godard cronut pickled cred fixie. Taxidermy venmo kogi health offal pop-up sriracha.    12195    961    2015-06-18 14:48:49    2015-06-18 14:48:49    1
1437    Meh skateboard crucifix. Ramps pitchfork mixtape asymmetrical sriracha master. Pbr&b microdosing small batch.    11483    930    2015-08-30 11:09:26    2015-08-30 11:09:26    1
1438    Butcher wes anderson organic bespoke salvia skateboard. Health meh gluten-free bicycle rights post-ironic. +1 vhs five dollar toast dreamcatcher. Before they sold out farm-to-table wayfarers bitters tumblr lo-fi banh mi slow-carb.    14862    625    2015-11-11 01:10:37    2015-11-11 01:10:37    1
1439    Literally butcher narwhal squid salvia slow-carb. Artisan mixtape lo-fi keffiyeh. Microdosing skateboard yolo vegan cliche. Chicharrones diy pabst leggings locavore trust fund chillwave.    14608    810    2016-01-14 19:23:52    2016-01-14 19:23:52    1
1440    Deep v five dollar toast keytar jean shorts skateboard irony diy kitsch. Blog organic tacos mlkshk meggings xoxo. Ennui shabby chic hoodie tumblr health.    15468    564    2015-12-06 01:20:10    2015-12-06 01:20:10    1
1442    Intelligentsia ramps gluten-free schlitz fanny pack tattooed art party. Listicle lomo truffaut retro cray. Godard tousled chambray quinoa lo-fi etsy beard. Swag direct trade humblebrag.    17800    879    2015-10-20 08:59:23    2015-10-20 08:59:23    1
1443    Bitters aesthetic kinfolk offal. 8-bit +1 neutra freegan carry shoreditch banjo. Kombucha trust fund aesthetic. Meh drinking church-key leggings echo. Before they sold out five dollar toast distillery semiotics.    15654    554    2015-10-03 13:18:52    2015-10-03 13:18:52    1
1444    Tilde tacos master fashion axe direct trade kombucha cray. Post-ironic five dollar toast hella squid single-origin coffee fap. Mumblecore dreamcatcher craft beer park fap drinking.    10002    480    2015-10-10 22:48:26    2015-10-10 22:48:26    1
1445    Food truck pabst messenger bag. Paleo jean shorts godard etsy austin. Pabst mumblecore keytar taxidermy chia migas single-origin coffee. Authentic normcore retro cliche sustainable wes anderson shoreditch knausgaard. Vinegar vice microdosing loko hammock.    15795    698    2015-11-28 08:55:57    2015-11-28 08:55:57    1
1446    Swag street put a bird on it bespoke bitters cold-pressed truffaut. Umami flannel twee. Meggings tilde mlkshk direct trade aesthetic. Chicharrones pabst 90's narwhal cleanse roof mixtape.    14272    939    2016-01-08 12:11:43    2016-01-08 12:11:43    1
1447    Skateboard keffiyeh food truck forage. Bitters wes anderson tacos. Loko photo booth migas master. Ramps kinfolk chambray twee diy. Drinking health before they sold out irony bushwick put a bird on it 3 wolf moon.    10231    734    2015-07-01 01:09:53    2015-07-01 01:09:53    1
1448    Blue bottle everyday gastropub church-key godard hoodie put a bird on it. Pabst flannel echo retro normcore. Mlkshk skateboard hoodie intelligentsia goth hashtag. Ugh franzen sustainable try-hard pug pickled.    14103    762    2015-12-23 10:38:15    2015-12-23 10:38:15    1
1449    Kinfolk narwhal 3 wolf moon sriracha literally single-origin coffee. Thundercats ugh twee wolf meggings gluten-free stumptown. Cleanse diy waistcoat meditation. Tilde roof fanny pack banh mi hammock freegan.    15718    714    2016-03-26 22:07:45    2016-03-26 22:07:45    1
1450    Slow-carb twee fingerstache actually single-origin coffee taxidermy. Tumblr plaid five dollar toast stumptown fashion axe. Poutine squid put a bird on it humblebrag aesthetic venmo master freegan. Listicle sustainable tacos salvia pork belly pour-over.    16084    559    2015-10-27 23:31:01    2015-10-27 23:31:01    1
1451    Deep v chia crucifix kitsch dreamcatcher vice direct trade. Master mixtape irony. Gluten-free occupy tacos master taxidermy chicharrones. Bitters poutine tote bag. Pug williamsburg five dollar toast mlkshk.    18280    543    2016-04-05 03:58:56    2016-04-05 03:58:56    1
1452    Chicharrones tote bag chambray keytar williamsburg. Helvetica pinterest sriracha. Mumblecore biodiesel chambray brunch church-key franzen park.    11835    523    2015-08-23 23:28:49    2015-08-23 23:28:49    1
1453    Disrupt narwhal waistcoat pork belly tacos next level. Wayfarers retro skateboard organic master gastropub flexitarian. Loko biodiesel kombucha 3 wolf moon seitan meditation direct trade. Slow-carb sriracha echo occupy seitan bespoke. Chicharrones schlitz occupy semiotics.    16492    683    2015-12-12 13:34:24    2015-12-12 13:34:24    1
1454    Pinterest five dollar toast everyday direct trade. Slow-carb meh letterpress blog pabst small batch hammock cornhole. Yr twee xoxo lo-fi 3 wolf moon flannel farm-to-table kogi. Try-hard vice intelligentsia austin. Plaid hella shoreditch park authentic knausgaard.    16318    815    2015-11-14 06:32:17    2015-11-14 06:32:17    1
1455    Actually deep v vegan photo booth pbr&b butcher selvage meggings. Scenester thundercats hashtag quinoa. Migas jean shorts letterpress narwhal 90's kombucha.    17936    933    2015-06-10 00:57:32    2015-06-10 00:57:32    1
1456    Williamsburg +1 art party. Chicharrones waistcoat 3 wolf moon kombucha vice small batch. Lo-fi vinegar quinoa swag. 8-bit intelligentsia blog. Yolo iphone knausgaard flannel beard echo.    10795    902    2015-08-24 23:01:01    2015-08-24 23:01:01    1
1457    Pbr&b knausgaard try-hard fashion axe. Food truck farm-to-table ugh. Flexitarian thundercats small batch post-ironic stumptown.    16865    952    2015-08-22 14:08:14    2015-08-22 14:08:14    1
1458    Blue bottle cleanse gentrify fixie yolo. Knausgaard mumblecore wolf. Synth ugh taxidermy fashion axe. Bespoke neutra forage disrupt ramps.    17586    496    2015-07-27 02:45:54    2015-07-27 02:45:54    1
1459    Cronut keffiyeh skateboard taxidermy gentrify. Marfa vice kogi yuccie. Craft beer 90's cronut xoxo. Cardigan skateboard typewriter scenester forage ennui hella. Goth keytar post-ironic ethical sartorial.    12332    837    2015-04-27 17:42:31    2015-04-27 17:42:31    1
1460    Gluten-free shabby chic roof semiotics seitan keffiyeh. Church-key cleanse street fashion axe ugh pabst vegan bitters. Hammock tote bag disrupt marfa organic actually cray.    11739    589    2016-04-12 04:07:29    2016-04-12 04:07:29    1
1461    Fanny pack portland lo-fi shabby chic. Irony scenester everyday. Marfa try-hard blue bottle drinking organic blog keytar.    11995    960    2015-12-29 18:08:38    2015-12-29 18:08:38    1
1462    Pitchfork seitan hella fixie. Williamsburg godard roof wes anderson fanny pack viral tote bag. Craft beer organic fanny pack salvia.    11952    669    2015-09-06 04:05:37    2015-09-06 04:05:37    1
1464    Heirloom flannel letterpress hoodie tousled lumbersexual. Vice bitters wolf small batch cornhole meh chambray. Authentic 8-bit chillwave mumblecore. Try-hard keytar master portland selvage chambray.    14914    957    2015-05-17 00:19:42    2015-05-17 00:19:42    1
1465    Small batch wolf keffiyeh. Carry umami taxidermy whatever portland salvia chicharrones loko. Wayfarers +1 readymade chicharrones.    15158    679    2015-11-22 12:28:35    2015-11-22 12:28:35    1
1466    Gluten-free 3 wolf moon photo booth chia pour-over listicle helvetica humblebrag. Food truck carry lumbersexual everyday roof freegan. Shoreditch retro ethical hella brunch.    14987    759    2016-03-25 12:31:49    2016-03-25 12:31:49    1
1467    Crucifix sartorial you probably haven't heard of them banh mi neutra tousled health. Semiotics stumptown kitsch. Direct trade bespoke neutra keffiyeh vinegar meditation.    13085    839    2015-11-28 00:58:17    2015-11-28 00:58:17    1
1468    Humblebrag iphone crucifix seitan scenester brooklyn meh cleanse. Post-ironic austin ethical bushwick pitchfork cornhole shoreditch ugh. Letterpress direct trade bicycle rights banjo diy celiac. Chillwave banjo vice xoxo before they sold out.    14831    723    2015-11-26 19:42:34    2015-11-26 19:42:34    1
1469    Meggings meh cardigan post-ironic taxidermy. Vhs hoodie etsy small batch health. Beard wayfarers messenger bag yolo offal trust fund meggings mumblecore.    17250    676    2015-04-22 22:15:49    2015-04-22 22:15:49    1
1470    Humblebrag wayfarers skateboard fashion axe. Williamsburg venmo gastropub chillwave master mumblecore readymade. Health keytar vegan microdosing tacos bespoke. Chambray sartorial photo booth schlitz pickled. Umami salvia offal chillwave.    13635    776    2015-08-14 23:44:05    2015-08-14 23:44:05    1
1471    Kogi tousled meditation put a bird on it pinterest direct trade. Blog wayfarers stumptown. Vinyl photo booth venmo truffaut xoxo. Celiac brunch fanny pack taxidermy mustache sriracha master. Vice shoreditch helvetica roof fashion axe.    12080    478    2015-05-24 16:44:29    2015-05-24 16:44:29    1
1472    Viral narwhal iphone flexitarian banjo biodiesel. Sartorial normcore ennui. Meditation chicharrones pour-over heirloom bushwick trust fund. Chillwave thundercats chambray chia pinterest. Dreamcatcher semiotics kickstarter blog kitsch authentic portland.    17537    542    2015-12-25 23:02:13    2015-12-25 23:02:13    1
1473    Yr readymade scenester retro roof bushwick echo ramps. Lo-fi keytar pork belly stumptown knausgaard vhs sartorial viral. Readymade kale chips loko migas fap truffaut swag vegan. Schlitz mumblecore asymmetrical readymade post-ironic vice neutra narwhal. Mixtape drinking wayfarers letterpress.    17296    853    2015-06-15 08:24:40    2015-06-15 08:24:40    1
1474    Goth kogi park tumblr xoxo blue bottle whatever. Hammock forage vhs yr kale chips. Banh mi fanny pack direct trade. Loko mumblecore iphone meggings fixie selfies flexitarian. Flannel raw denim kinfolk letterpress.    17151    644    2015-06-06 02:25:12    2015-06-06 02:25:12    1
1475    Literally pop-up kale chips. Offal tattooed portland sustainable neutra. Pour-over yolo pickled tacos hoodie pinterest. Ennui hashtag salvia fixie lo-fi cronut. You probably haven't heard of them tattooed normcore photo booth.    14427    949    2015-11-26 19:29:54    2015-11-26 19:29:54    1
1476    Truffaut banh mi cronut austin helvetica mixtape cray slow-carb. Meggings green juice health put a bird on it ethical kogi authentic freegan. +1 pbr&b health twee kogi mumblecore meggings.    17144    581    2015-10-05 13:29:33    2015-10-05 13:29:33    1
1477    Intelligentsia sustainable fap deep v franzen hoodie. Gentrify celiac franzen +1 freegan fanny pack cardigan. Kickstarter letterpress next level cliche kale chips wayfarers typewriter. Yr tousled post-ironic cronut paleo 8-bit mustache mixtape. Quinoa everyday yolo umami 3 wolf moon street.    18039    568    2016-02-08 00:02:10    2016-02-08 00:02:10    1
1479    Forage fixie keytar butcher 3 wolf moon ethical. Cray church-key everyday ennui five dollar toast. Hammock banh mi cronut williamsburg plaid everyday. Ugh helvetica umami five dollar toast vinegar flexitarian.    15469    700    2015-12-12 09:25:15    2015-12-12 09:25:15    1
1480    Kinfolk shabby chic photo booth blog art party. Dreamcatcher gentrify pork belly tote bag thundercats taxidermy roof. Kombucha swag flannel normcore banjo celiac plaid. Pug venmo taxidermy meh jean shorts locavore.    15778    623    2015-05-16 19:01:24    2015-05-16 19:01:24    1
1482    Vegan migas slow-carb taxidermy artisan. Aesthetic fashion axe sartorial meggings fixie pour-over williamsburg marfa. Flannel gastropub meditation raw denim banh mi. Kickstarter cold-pressed austin leggings.    14309    949    2015-07-15 06:26:24    2015-07-15 06:26:24    1
1483    Flexitarian carry vhs trust fund bushwick direct trade before they sold out vegan. Poutine vice migas post-ironic 8-bit dreamcatcher. Shoreditch trust fund marfa celiac waistcoat offal freegan put a bird on it. Chartreuse crucifix shoreditch synth sriracha.    15836    727    2016-03-17 17:33:35    2016-03-17 17:33:35    1
1484    Ugh next level seitan portland beard food truck cardigan cold-pressed. Hoodie selfies seitan. Normcore cold-pressed everyday locavore chia tousled loko austin. Chillwave narwhal echo hashtag mlkshk offal. Letterpress crucifix cardigan meditation cleanse kitsch deep v.    17982    676    2016-04-06 18:12:14    2016-04-06 18:12:14    1
1485    Before they sold out cardigan loko fixie meditation. Flexitarian biodiesel sartorial echo pour-over etsy williamsburg. Diy next level meh pitchfork asymmetrical plaid. Polaroid twee seitan tumblr. Skateboard yolo small batch chartreuse trust fund.    15882    655    2015-12-24 10:31:20    2015-12-24 10:31:20    1
1486    Cornhole 90's wes anderson shabby chic 3 wolf moon pbr&b park food truck. Chicharrones slow-carb selfies. Sustainable bitters marfa keytar iphone sriracha slow-carb. Typewriter seitan ugh.    18625    791    2015-08-12 19:33:25    2015-08-12 19:33:25    1
1487    Ugh offal twee brooklyn scenester. Microdosing truffaut sartorial godard marfa. Roof ramps ugh literally chillwave celiac pitchfork migas. Chicharrones letterpress stumptown venmo vinyl cred trust fund disrupt.    10001    756    2015-07-11 23:02:20    2015-07-11 23:02:20    1
2674    Food truck green juice truffaut scenester. Kitsch marfa meditation. Retro banh mi banjo cornhole hoodie tattooed pork belly normcore.    18086    663    2015-10-20 06:23:54    2015-10-20 06:23:54    1
1488    Polaroid intelligentsia ugh yr wolf synth godard quinoa. Ugh freegan retro. Pickled sartorial five dollar toast listicle plaid flexitarian dreamcatcher salvia. Gluten-free distillery jean shorts squid. Everyday you probably haven't heard of them seitan lumbersexual schlitz thundercats messenger bag.    17988    735    2016-02-16 10:49:14    2016-02-16 10:49:14    1
1489    Squid tofu neutra lumbersexual thundercats cred. Cronut neutra pour-over artisan. Everyday taxidermy xoxo.    18588    687    2015-10-30 22:56:35    2015-10-30 22:56:35    1
1490    Scenester farm-to-table single-origin coffee. Mlkshk disrupt seitan organic celiac. Venmo mustache trust fund pickled fanny pack keytar single-origin coffee.    12680    706    2016-02-10 18:49:08    2016-02-10 18:49:08    1
1491    Mustache try-hard whatever church-key bushwick pickled kogi ennui. Sartorial forage ethical humblebrag post-ironic vinegar slow-carb vice. Twee pour-over plaid. Paleo bushwick ugh. Street twee cliche gentrify retro kombucha distillery messenger bag.    10277    690    2016-02-17 00:10:16    2016-02-17 00:10:16    1
1492    Salvia forage vegan food truck master. Paleo fashion axe pinterest raw denim jean shorts synth wayfarers you probably haven't heard of them. Biodiesel chillwave pug schlitz umami neutra cliche. Xoxo loko kitsch ramps. Bushwick sustainable cred distillery chia tattooed heirloom.    13295    681    2016-01-05 19:39:15    2016-01-05 19:39:15    1
1493    Retro authentic sriracha tote bag microdosing. Plaid synth church-key migas tattooed raw denim. Before they sold out green juice 90's lo-fi. Trust fund tote bag brunch kickstarter polaroid tumblr narwhal wes anderson. Listicle farm-to-table microdosing vegan.    12249    948    2015-09-27 08:44:34    2015-09-27 08:44:34    1
1494    Truffaut sriracha cold-pressed locavore cardigan +1 hammock. Tacos pabst scenester salvia brunch. Flannel leggings park quinoa 90's. Artisan tattooed craft beer you probably haven't heard of them sartorial deep v tousled.    16386    754    2015-06-17 03:32:01    2015-06-17 03:32:01    1
1495    Helvetica waistcoat austin. Meditation vinyl master narwhal. Gastropub vinyl 3 wolf moon yr tattooed iphone. Church-key kinfolk quinoa vinyl kogi williamsburg try-hard. Franzen listicle bicycle rights xoxo gentrify echo single-origin coffee.    15612    558    2015-11-18 15:18:00    2015-11-18 15:18:00    1
1496    Freegan portland migas readymade ethical. Godard trust fund brunch authentic vegan organic lo-fi flexitarian. Try-hard vice brooklyn tilde 3 wolf moon thundercats pabst selfies.    13379    518    2015-10-27 13:13:37    2015-10-27 13:13:37    1
1497    Hoodie yr leggings you probably haven't heard of them plaid goth kitsch microdosing. Yr small batch meggings plaid lo-fi cleanse. Mumblecore selvage pork belly celiac farm-to-table chillwave. Swag bicycle rights goth lumbersexual master pork belly cold-pressed selfies.    13062    621    2016-02-08 16:52:31    2016-02-08 16:52:31    1
1498    Wayfarers cred pop-up wes anderson gentrify cray. Iphone ramps taxidermy kitsch letterpress street. Blue bottle meggings literally mustache yr. Marfa bitters mumblecore wolf.    18533    749    2015-07-01 00:37:29    2015-07-01 00:37:29    1
1499    Portland loko waistcoat pug. Hella viral knausgaard occupy next level. Taxidermy food truck 90's pop-up disrupt. Small batch jean shorts kitsch crucifix next level. Mixtape cold-pressed brooklyn wes anderson paleo cardigan occupy williamsburg.    17997    814    2015-10-11 06:46:21    2015-10-11 06:46:21    1
1500    Poutine kinfolk semiotics. Viral cardigan lumbersexual mlkshk wolf hammock selvage. Yr ugh tumblr park occupy keytar.    10386    744    2015-10-09 19:52:07    2015-10-09 19:52:07    1
1501    Goth pork belly swag kitsch dreamcatcher try-hard. Viral street ethical cronut craft beer. Stumptown yolo gluten-free bicycle rights actually slow-carb.    16709    793    2015-08-19 15:54:23    2015-08-19 15:54:23    1
1502    Sartorial shabby chic +1 heirloom. Fingerstache 8-bit vinyl literally. Schlitz vinegar echo craft beer chia.    12344    633    2016-03-10 22:09:13    2016-03-10 22:09:13    1
1571    Irony green juice typewriter swag. Art party put a bird on it brunch vhs crucifix. Actually food truck echo yuccie fixie next level.    11944    798    2015-11-28 21:12:48    2015-11-28 21:12:48    1
1503    Raw denim celiac five dollar toast diy pug iphone. Gastropub tilde put a bird on it. Raw denim waistcoat ugh. Blog mixtape poutine park forage. Knausgaard yolo five dollar toast offal actually kogi.    15059    752    2016-03-12 04:10:13    2016-03-12 04:10:13    1
1505    Brooklyn vinegar drinking 8-bit pug skateboard. Cardigan cornhole crucifix. Organic heirloom yuccie next level bitters deep v brunch. Knausgaard scenester quinoa readymade keytar salvia tilde semiotics. Post-ironic street distillery helvetica ugh.    12320    513    2015-12-15 20:20:07    2015-12-15 20:20:07    1
1506    Pabst marfa actually deep v normcore. Cold-pressed fap selvage roof williamsburg lomo. Ennui raw denim umami authentic venmo echo portland chia. Iphone scenester semiotics. Everyday tilde thundercats cronut.    15894    894    2015-12-22 20:18:37    2015-12-22 20:18:37    1
1507    Park normcore ethical. Cray kale chips wolf biodiesel sustainable. Irony mustache vegan fingerstache. Loko semiotics lumbersexual church-key twee viral gastropub health.    18244    540    2015-11-02 19:58:17    2015-11-02 19:58:17    1
1508    Freegan quinoa flannel gentrify. Locavore kogi normcore asymmetrical. Tousled fixie hella waistcoat cardigan dreamcatcher selvage.    15202    748    2015-07-25 21:25:55    2015-07-25 21:25:55    1
1510    8-bit keytar chillwave pinterest viral meggings dreamcatcher. Jean shorts wayfarers poutine kickstarter chicharrones. Scenester chicharrones etsy. Vinyl wayfarers readymade selfies health sustainable.    14044    913    2015-07-08 02:23:46    2015-07-08 02:23:46    1
1511    Flannel umami post-ironic letterpress sriracha health messenger bag photo booth. Meggings viral thundercats. Kitsch drinking kickstarter diy five dollar toast single-origin coffee. Letterpress ramps fanny pack lumbersexual tattooed 3 wolf moon. Blue bottle celiac keytar chillwave gentrify health shabby chic seitan.    10352    712    2016-02-25 15:43:04    2016-02-25 15:43:04    1
1512    Austin meh wolf wayfarers portland cred. Flexitarian cred offal. 90's poutine lomo mustache.    14068    593    2015-09-06 23:32:27    2015-09-06 23:32:27    1
1513    Blue bottle flannel mlkshk selvage messenger bag polaroid. Kickstarter knausgaard bushwick lumbersexual stumptown humblebrag bespoke hoodie. Readymade loko lomo selvage helvetica. Salvia readymade kitsch loko try-hard.    15999    481    2015-12-16 11:43:38    2015-12-16 11:43:38    1
1514    Five dollar toast farm-to-table beard gastropub fanny pack migas synth actually. Carry celiac cleanse art party butcher schlitz. 90's venmo semiotics raw denim. Marfa beard cred pabst messenger bag.    13679    736    2016-03-20 00:58:00    2016-03-20 00:58:00    1
1515    Viral taxidermy heirloom polaroid tacos small batch williamsburg street. Chartreuse green juice godard whatever 90's paleo ramps. Truffaut pug kale chips pop-up vice five dollar toast. Offal schlitz tacos kitsch. Mumblecore franzen yolo meditation ramps irony letterpress.    15026    559    2015-06-21 09:33:36    2015-06-21 09:33:36    1
1516    Gastropub godard 3 wolf moon pour-over art party farm-to-table semiotics. +1 austin kogi biodiesel paleo. Vinegar cornhole trust fund hammock. Cardigan chambray vinyl vice chartreuse fingerstache knausgaard vhs.    16327    553    2015-06-04 18:27:05    2015-06-04 18:27:05    1
1517    Semiotics messenger bag plaid. Shoreditch butcher cleanse you probably haven't heard of them microdosing diy vinegar tofu. Mustache shoreditch craft beer neutra blog heirloom swag.    17855    875    2015-11-10 08:36:20    2015-11-10 08:36:20    1
1581    Marfa bespoke yuccie retro 8-bit health cardigan. Twee messenger bag literally direct trade cornhole scenester chia. Swag slow-carb kickstarter.    14820    768    2015-11-25 01:31:02    2015-11-25 01:31:02    1
1518    Freegan butcher vinegar gentrify chambray yr. Cleanse kinfolk gastropub post-ironic. You probably haven't heard of them biodiesel tofu blue bottle waistcoat ugh. Distillery narwhal chia swag yr 8-bit heirloom. Helvetica narwhal jean shorts bushwick synth retro.    15749    517    2015-05-16 13:06:13    2015-05-16 13:06:13    1
1519    Pork belly letterpress offal skateboard venmo synth. Xoxo street occupy chambray fashion axe. Chartreuse pour-over tilde quinoa before they sold out williamsburg kickstarter. Cornhole tumblr humblebrag disrupt umami. Yuccie viral migas hoodie chia chicharrones keytar beard.    15059    691    2015-05-10 18:43:35    2015-05-10 18:43:35    1
1520    Photo booth gastropub knausgaard celiac keffiyeh typewriter. Fashion axe blue bottle tumblr. Pug twee gluten-free. Chia meh ethical. Pour-over goth franzen.    16946    954    2015-07-27 19:07:23    2015-07-27 19:07:23    1
1521    Jean shorts organic kombucha authentic cleanse cardigan diy butcher. Austin swag yr master typewriter vinegar. Heirloom ramps vinyl lo-fi humblebrag. Authentic yr everyday etsy.    11729    733    2016-01-06 02:29:45    2016-01-06 02:29:45    1
1522    Ennui kinfolk chia 8-bit. Tousled gluten-free ethical irony synth asymmetrical food truck. Microdosing before they sold out actually synth asymmetrical roof cronut.    14156    945    2016-02-11 14:40:53    2016-02-11 14:40:53    1
1523    Mixtape cardigan deep v umami polaroid iphone. Five dollar toast cornhole forage williamsburg try-hard semiotics artisan. Pickled taxidermy williamsburg plaid meh green juice. Pickled portland cronut yr goth bespoke diy gentrify. Wes anderson selvage meditation 8-bit thundercats.    16086    913    2015-09-19 15:18:59    2015-09-19 15:18:59    1
1524    Narwhal chartreuse distillery craft beer hammock squid fanny pack gastropub. 3 wolf moon normcore swag mixtape. Food truck beard vegan goth bicycle rights portland 3 wolf moon. Aesthetic thundercats twee literally church-key blog.    13515    693    2015-11-25 08:07:31    2015-11-25 08:07:31    1
1525    Pinterest readymade try-hard authentic. Roof fanny pack vice deep v vinyl green juice drinking dreamcatcher. Vice freegan yuccie tousled lumbersexual. Pour-over whatever cronut gluten-free kale chips blog craft beer.    14657    868    2016-03-26 17:58:01    2016-03-26 17:58:01    1
1526    Cliche pickled 3 wolf moon meggings mixtape wayfarers kogi five dollar toast. Selfies letterpress whatever tousled bicycle rights. Cornhole bitters put a bird on it lo-fi letterpress park diy. Plaid celiac heirloom. Tote bag hashtag post-ironic iphone ugh kogi.    14669    828    2015-09-21 06:37:24    2015-09-21 06:37:24    1
1527    Vice roof synth iphone trust fund seitan gluten-free skateboard. Offal aesthetic helvetica tattooed letterpress. Post-ironic tattooed ugh.    14446    673    2015-10-18 15:04:50    2015-10-18 15:04:50    1
1528    Cardigan williamsburg hella echo. Raw denim five dollar toast actually. Disrupt neutra kickstarter scenester. Lo-fi mlkshk readymade.    17382    769    2016-02-16 05:22:15    2016-02-16 05:22:15    1
1529    Chicharrones seitan crucifix. Fashion axe hella chicharrones crucifix cleanse. Etsy lo-fi meditation franzen photo booth. Ramps drinking hella umami.    15526    786    2016-03-31 16:33:56    2016-03-31 16:33:56    1
1531    Fixie bitters banjo. Five dollar toast plaid microdosing austin squid cray. Neutra hella kogi crucifix mlkshk.    14292    716    2015-07-19 20:44:21    2015-07-19 20:44:21    1
1532    Mixtape irony ugh intelligentsia viral authentic. You probably haven't heard of them gluten-free pabst photo booth pbr&b iphone craft beer freegan. Pour-over waistcoat asymmetrical. Etsy crucifix put a bird on it brunch austin pickled you probably haven't heard of them paleo. Hella mixtape keffiyeh keytar.    15174    942    2016-03-12 16:04:18    2016-03-12 16:04:18    1
1533    +1 hella you probably haven't heard of them tacos waistcoat. Iphone bitters tilde butcher squid pinterest. Kinfolk bushwick flannel shabby chic +1 vegan. Fixie xoxo humblebrag.    17276    547    2015-06-10 07:55:16    2015-06-10 07:55:16    1
1534    Carry neutra yolo vhs pickled brooklyn etsy. Keffiyeh carry whatever tofu. Art party readymade neutra vinegar listicle.    10011    641    2015-06-10 04:26:06    2015-06-10 04:26:06    1
1536    Next level polaroid crucifix wes anderson. Fanny pack brunch wolf etsy disrupt vinegar. Blog freegan mlkshk etsy heirloom leggings pabst. Readymade godard vhs vice trust fund. Scenester occupy lomo tacos raw denim post-ironic.    12370    714    2016-03-05 00:55:36    2016-03-05 00:55:36    1
1537    Lumbersexual beard fingerstache before they sold out try-hard. Beard ethical sriracha locavore. Fixie irony sustainable shabby chic roof food truck readymade forage.    14052    641    2015-05-26 12:36:32    2015-05-26 12:36:32    1
1538    Leggings shabby chic synth master heirloom kombucha skateboard. Goth skateboard hoodie austin artisan raw denim. Hashtag meh wes anderson.    12311    794    2015-05-12 01:35:19    2015-05-12 01:35:19    1
1539    Gentrify yuccie shoreditch heirloom trust fund paleo post-ironic. Blue bottle listicle tacos dreamcatcher health gastropub literally. Park yr pinterest aesthetic. Lumbersexual freegan offal vegan skateboard locavore. Offal helvetica lomo wes anderson forage truffaut ennui cray.    16022    708    2016-03-03 12:26:30    2016-03-03 12:26:30    1
1540    Sartorial diy single-origin coffee locavore tumblr mumblecore. Sustainable venmo vinyl. Hashtag distillery fingerstache truffaut post-ironic iphone semiotics typewriter.    10174    517    2015-11-21 10:10:25    2015-11-21 10:10:25    1
1541    Loko chillwave kale chips trust fund. Humblebrag squid craft beer sartorial migas. Banjo pinterest selfies brooklyn. Tacos yuccie cred mumblecore cronut. Cornhole cardigan diy crucifix mixtape narwhal loko.    18932    921    2015-11-04 08:42:00    2015-11-04 08:42:00    1
1542    Tumblr swag vhs literally hashtag pug actually iphone. Try-hard selvage bicycle rights ennui blog disrupt. Whatever shabby chic craft beer tote bag lomo distillery asymmetrical chartreuse. Chia lo-fi echo sriracha.    10209    689    2016-04-13 12:36:13    2016-04-13 12:36:13    1
1543    Blue bottle forage xoxo yolo goth 90's yuccie cleanse. Banjo everyday offal direct trade kombucha vegan. Carry biodiesel everyday. Trust fund master art party sartorial.    16269    714    2016-03-12 13:22:23    2016-03-12 13:22:23    1
1544    Freegan loko banjo chia. Deep v small batch sustainable pabst tousled pinterest mustache. Neutra marfa deep v flexitarian poutine xoxo next level tattooed.    17925    664    2016-01-02 13:59:44    2016-01-02 13:59:44    1
1546    Literally pug mixtape tumblr selvage gastropub kickstarter scenester. Cliche plaid migas. Bespoke farm-to-table hella.    18819    658    2016-04-12 08:35:18    2016-04-12 08:35:18    1
1548    Synth wes anderson fingerstache blue bottle poutine lo-fi. Asymmetrical brunch taxidermy. Austin brooklyn diy crucifix bushwick sartorial yr selvage.    15766    608    2015-10-14 13:17:37    2015-10-14 13:17:37    1
1588    Bespoke tumblr squid. Twee church-key art party street tattooed. Pork belly bicycle rights listicle keffiyeh carry drinking godard.    12536    577    2015-07-02 17:33:54    2015-07-02 17:33:54    1
1550    Ethical twee portland pitchfork post-ironic. Freegan knausgaard lomo vice butcher kale chips. Freegan tote bag fixie. Next level knausgaard irony thundercats put a bird on it before they sold out. Kickstarter pitchfork fashion axe raw denim semiotics photo booth jean shorts tilde.    12594    914    2016-01-08 15:03:17    2016-01-08 15:03:17    1
1551    Hella squid lumbersexual kitsch vinegar. Banh mi actually meditation waistcoat stumptown poutine tumblr. Park chillwave marfa sustainable forage synth. Paleo put a bird on it schlitz sustainable.    18951    490    2015-06-09 00:11:39    2015-06-09 00:11:39    1
1552    Locavore small batch polaroid kogi skateboard selvage. Pinterest yr occupy pickled beard put a bird on it fixie. Normcore freegan irony.    14263    750    2015-05-16 00:50:27    2015-05-16 00:50:27    1
1553    Vice seitan kitsch fixie. Celiac mixtape fingerstache portland fashion axe. Stumptown tattooed twee hella hashtag ethical organic. Farm-to-table post-ironic marfa literally banh mi poutine.    11710    801    2015-06-28 02:15:44    2015-06-28 02:15:44    1
1554    Scenester sartorial stumptown portland brunch flexitarian slow-carb yolo. Celiac shoreditch photo booth biodiesel chia readymade ramps cornhole. Meh retro lumbersexual banh mi. Offal pork belly humblebrag tilde. Single-origin coffee street pinterest narwhal hoodie diy.    15080    748    2016-03-15 00:54:10    2016-03-15 00:54:10    1
1555    Street freegan raw denim 8-bit cray pbr&b. Tacos schlitz art party church-key roof kinfolk pop-up. Butcher kickstarter cardigan brooklyn lo-fi. Selvage knausgaard readymade seitan five dollar toast. Diy kogi shabby chic.    14860    654    2015-07-28 21:47:40    2015-07-28 21:47:40    1
1556    Gentrify cred loko whatever keffiyeh celiac you probably haven't heard of them. Hammock vegan food truck austin freegan cardigan meh. Next level whatever skateboard church-key hammock carry gluten-free swag. Waistcoat pabst diy offal banh mi hoodie bushwick skateboard.    15785    637    2016-04-02 17:20:29    2016-04-02 17:20:29    1
1557    Banjo meggings cred meh kombucha. Crucifix pop-up hoodie fashion axe jean shorts yuccie pug. Polaroid pbr&b brooklyn flannel locavore. Mustache fap franzen microdosing pitchfork.    12916    721    2015-11-26 22:21:41    2015-11-26 22:21:41    1
1558    Bicycle rights mixtape xoxo tousled synth butcher. Pickled cred sartorial distillery leggings put a bird on it cronut roof. Actually echo tofu bicycle rights vegan fanny pack skateboard.    18518    736    2015-06-10 05:54:39    2015-06-10 05:54:39    1
1560    Banjo asymmetrical blue bottle fixie. Put a bird on it carry tousled blue bottle narwhal cornhole hoodie meggings. Hella godard franzen yr.    18328    931    2015-12-14 19:52:28    2015-12-14 19:52:28    1
1561    Brooklyn pour-over portland pbr&b direct trade pabst flexitarian. Pop-up hoodie goth. Yr shabby chic cleanse wes anderson.    12823    717    2015-09-03 09:36:55    2015-09-03 09:36:55    1
1562    Freegan swag knausgaard fixie celiac ramps gentrify cray. Kinfolk thundercats you probably haven't heard of them mustache roof. Heirloom small batch 3 wolf moon blue bottle mustache roof vinyl artisan. Yuccie cornhole cliche sartorial sustainable bushwick. Intelligentsia pork belly five dollar toast bushwick fanny pack artisan occupy.    18594    658    2016-04-05 17:30:32    2016-04-05 17:30:32    1
1563    Lo-fi chambray keffiyeh pour-over. Bicycle rights slow-carb cronut. Tote bag gentrify franzen viral poutine photo booth offal.    14913    585    2015-06-20 21:21:25    2015-06-20 21:21:25    1
1564    Ramps gentrify quinoa cardigan master hashtag fixie. Etsy shoreditch cray tattooed. Umami poutine tousled keytar knausgaard heirloom vegan retro. Microdosing cold-pressed heirloom humblebrag master small batch selfies. Kogi fashion axe stumptown put a bird on it kombucha mustache.    10935    674    2016-02-13 19:38:34    2016-02-13 19:38:34    1
1565    Tousled fanny pack irony vinegar pop-up. Typewriter retro cronut. Ennui leggings sriracha banjo salvia. Godard kickstarter schlitz pug sustainable art party +1 artisan. Pop-up waistcoat cray aesthetic thundercats poutine helvetica try-hard.    15003    872    2016-02-17 00:10:31    2016-02-17 00:10:31    1
1566    Cliche occupy franzen austin deep v pabst. Meggings helvetica kogi kombucha fixie church-key narwhal. Try-hard disrupt marfa kitsch swag gentrify. Intelligentsia loko cold-pressed beard pinterest kickstarter.    16335    779    2015-08-31 04:37:49    2015-08-31 04:37:49    1
1567    Flexitarian semiotics mumblecore tilde. Pickled heirloom narwhal authentic. Food truck butcher mlkshk drinking migas diy chia swag. Fixie cliche bitters dreamcatcher.    18021    829    2016-01-02 07:37:33    2016-01-02 07:37:33    1
1569    Butcher pork belly semiotics. Ethical bespoke keytar 90's meggings wayfarers. Sartorial vinyl bicycle rights banh mi pour-over. Mlkshk brunch franzen chia disrupt beard godard ethical. Ugh offal poutine aesthetic beard yuccie gluten-free artisan.    16694    825    2015-07-07 07:29:57    2015-07-07 07:29:57    1
1570    Intelligentsia dreamcatcher lo-fi leggings tattooed fanny pack. Austin hammock +1. Roof blog tote bag post-ironic.    13154    493    2015-12-27 04:04:16    2015-12-27 04:04:16    1
1573    Intelligentsia keffiyeh small batch lo-fi xoxo chartreuse cold-pressed. Pinterest diy yr plaid hella wayfarers. Keytar drinking locavore banjo tote bag lomo cleanse.    18593    922    2016-01-30 04:37:26    2016-01-30 04:37:26    1
1574    Banjo raw denim fingerstache. Franzen cliche kickstarter leggings cray deep v actually. Butcher literally 3 wolf moon wayfarers stumptown fap. Direct trade kickstarter twee semiotics cray migas crucifix.    13364    708    2016-02-18 02:56:56    2016-02-18 02:56:56    1
1575    Hoodie narwhal aesthetic jean shorts selfies everyday. Meggings beard fixie. Bespoke locavore crucifix fixie.    13109    914    2016-04-03 00:05:49    2016-04-03 00:05:49    1
1577    Kogi intelligentsia swag selfies retro poutine. Godard mustache raw denim typewriter normcore. Messenger bag godard pickled shoreditch try-hard bespoke. Brooklyn pitchfork chicharrones yolo. Literally blog lumbersexual ramps distillery kickstarter tacos plaid.    12230    590    2016-01-23 23:59:48    2016-01-23 23:59:48    1
1579    Pour-over lomo semiotics synth deep v celiac. Photo booth pabst yolo everyday cleanse. Freegan retro meh. Cornhole chia austin.    15901    698    2016-04-07 08:35:56    2016-04-07 08:35:56    1
1582    Put a bird on it crucifix austin schlitz williamsburg thundercats. Ramps sartorial gentrify tumblr goth. Paleo vegan wolf tumblr tofu marfa microdosing. Knausgaard occupy viral crucifix hella flannel flexitarian kinfolk. Tacos heirloom etsy listicle butcher wes anderson bushwick.    17558    624    2016-02-28 17:06:42    2016-02-28 17:06:42    1
1583    Dreamcatcher +1 chicharrones vinyl. Cardigan roof sriracha skateboard mustache ennui. Flannel chicharrones beard bicycle rights distillery. Literally typewriter brunch normcore hoodie.    14300    560    2015-07-29 07:11:40    2015-07-29 07:11:40    1
1585    Ramps thundercats narwhal offal ennui master. Listicle quinoa next level leggings kombucha church-key. Quinoa irony humblebrag. Beard next level butcher gastropub put a bird on it scenester vinyl. Trust fund sustainable fixie yolo schlitz tattooed vinyl pug.    11735    868    2015-05-31 07:37:21    2015-05-31 07:37:21    1
1586    Squid ramps viral 3 wolf moon church-key fap pop-up. Normcore ramps literally pinterest. Shoreditch try-hard art party franzen tumblr aesthetic. Yuccie hashtag cliche meditation food truck butcher pickled. Leggings kinfolk ugh.    11636    817    2015-08-29 04:41:19    2015-08-29 04:41:19    1
1587    Everyday sustainable microdosing five dollar toast synth franzen cronut carry. Echo tacos banjo lumbersexual cleanse trust fund direct trade master. Health banh mi godard hella messenger bag. Flannel bushwick normcore salvia cardigan.    17327    747    2016-02-25 05:48:04    2016-02-25 05:48:04    1
1589    Banh mi cornhole stumptown. You probably haven't heard of them selfies williamsburg sustainable vinegar farm-to-table small batch pbr&b. Pbr&b gastropub banh mi. Chambray ethical beard salvia synth put a bird on it tofu. Kale chips vice etsy meh letterpress crucifix narwhal.    12850    581    2015-10-28 01:21:53    2015-10-28 01:21:53    1
1590    Pork belly letterpress raw denim cliche twee post-ironic fixie. Actually franzen yolo roof asymmetrical hashtag. Polaroid shabby chic mlkshk freegan 3 wolf moon wolf blog chartreuse. Everyday bitters sriracha meditation cred fingerstache echo sartorial. Slow-carb gastropub chillwave try-hard artisan flexitarian.    17213    911    2015-10-13 00:56:16    2015-10-13 00:56:16    1
1591    Meditation 90's authentic swag drinking. Hoodie park schlitz food truck roof taxidermy bespoke. Bushwick fap selfies. Twee heirloom wolf sustainable. Cray quinoa yr umami lo-fi carry asymmetrical street.    10470    572    2016-02-17 16:05:11    2016-02-17 16:05:11    1
1592    Keffiyeh poutine disrupt. Occupy authentic before they sold out butcher vinyl chillwave disrupt shoreditch. 8-bit drinking stumptown ethical cliche tousled microdosing. Pinterest pork belly literally plaid.    10937    592    2015-05-18 23:53:08    2015-05-18 23:53:08    1
1593    Plaid you probably haven't heard of them chicharrones locavore. Farm-to-table messenger bag pop-up pabst poutine yr slow-carb yuccie. Farm-to-table vinyl trust fund pbr&b venmo roof. Disrupt vice keytar. Marfa bushwick banjo retro skateboard everyday tattooed.    18613    886    2015-06-20 16:09:52    2015-06-20 16:09:52    1
1595    3 wolf moon carry neutra gentrify forage pork belly pop-up. Wes anderson whatever artisan art party scenester. Literally kitsch flexitarian. Biodiesel sriracha chambray. Pork belly plaid biodiesel keffiyeh occupy twee.    17314    928    2015-07-02 16:46:03    2015-07-02 16:46:03    1
1596    Yuccie plaid paleo scenester gentrify mumblecore. Photo booth actually keffiyeh. Pickled slow-carb cold-pressed. Pug humblebrag biodiesel tote bag brunch. Schlitz narwhal vegan.    16020    720    2015-07-02 11:35:48    2015-07-02 11:35:48    1
1597    Photo booth neutra brooklyn locavore. Skateboard mumblecore photo booth swag kinfolk williamsburg pbr&b. Seitan kitsch godard small batch pug.    11884    582    2015-07-04 15:25:46    2015-07-04 15:25:46    1
1598    Poutine dreamcatcher 8-bit bitters small batch. Bicycle rights freegan aesthetic selfies blog schlitz whatever. Raw denim artisan wolf trust fund tilde. Single-origin coffee everyday taxidermy. Farm-to-table yr keytar.    15549    906    2015-07-31 09:41:15    2015-07-31 09:41:15    1
1599    Church-key kitsch heirloom. Forage health fingerstache. Fashion axe salvia direct trade semiotics pitchfork keffiyeh tacos.    11236    495    2015-12-24 21:19:50    2015-12-24 21:19:50    1
1600    Artisan messenger bag semiotics chia kinfolk cardigan. Farm-to-table lomo tacos wes anderson fingerstache banh mi shabby chic. Tilde crucifix cray portland trust fund ethical artisan. Fashion axe biodiesel crucifix listicle banjo bespoke.    18946    952    2016-02-12 17:26:19    2016-02-12 17:26:19    1
1601    Twee intelligentsia you probably haven't heard of them tote bag viral. Banh mi semiotics kinfolk. Trust fund gluten-free food truck aesthetic. Tousled kale chips yolo echo 8-bit twee disrupt roof. Diy keytar umami.    18252    589    2016-02-29 13:42:03    2016-02-29 13:42:03    1
1602    Kale chips thundercats narwhal vice. Crucifix skateboard humblebrag williamsburg blue bottle. Normcore cleanse thundercats poutine. Art party single-origin coffee iphone taxidermy put a bird on it salvia. Hoodie pour-over 90's actually.    12730    573    2015-10-22 05:50:33    2015-10-22 05:50:33    1
1603    Goth loko food truck ennui carry you probably haven't heard of them raw denim brunch. Occupy taxidermy lo-fi single-origin coffee fashion axe truffaut chia health. Five dollar toast ramps farm-to-table kogi vinyl. Gastropub pour-over sustainable. Fanny pack bespoke mumblecore readymade lumbersexual tacos.    13244    863    2016-02-29 03:42:24    2016-02-29 03:42:24    1
1604    Freegan locavore cardigan shabby chic. Vhs cray cliche synth. 8-bit hella xoxo.    15413    530    2015-11-02 05:14:42    2015-11-02 05:14:42    1
1605    Franzen vinyl craft beer fanny pack. Yolo ennui pabst. Meggings synth carry.    15114    809    2016-01-24 19:49:18    2016-01-24 19:49:18    1
1606    Yolo tofu selvage. Fashion axe plaid vinegar kale chips squid knausgaard. Mlkshk single-origin coffee kale chips dreamcatcher fap quinoa. Cronut goth banh mi. Bicycle rights meggings bitters sriracha yuccie aesthetic deep v.    17496    656    2015-07-02 12:30:13    2015-07-02 12:30:13    1
1607    Whatever craft beer vinegar leggings slow-carb photo booth typewriter ethical. Pickled ennui godard vice farm-to-table swag fashion axe. Offal craft beer neutra synth health hoodie tousled. Messenger bag intelligentsia banjo banh mi vegan try-hard.    12423    518    2016-02-11 06:38:44    2016-02-11 06:38:44    1
1608    Kickstarter blue bottle 90's venmo viral kombucha. Yuccie typewriter photo booth intelligentsia hoodie. Tote bag pinterest cred actually microdosing. Tacos put a bird on it celiac chicharrones pbr&b mustache.    14064    876    2015-10-03 21:50:50    2015-10-03 21:50:50    1
1609    Echo narwhal gentrify. Messenger bag art party fingerstache farm-to-table pug celiac. Disrupt everyday williamsburg hoodie brunch hashtag celiac keffiyeh. 8-bit yolo typewriter blog narwhal aesthetic health. Kogi pitchfork whatever humblebrag freegan church-key hammock irony.    10888    813    2016-02-25 02:04:41    2016-02-25 02:04:41    1
1610    Deep v ennui butcher whatever ethical narwhal beard. Freegan migas messenger bag cleanse normcore. Actually seitan post-ironic meh. Pinterest craft beer actually seitan art party.    12302    558    2015-10-29 14:16:18    2015-10-29 14:16:18    1
1611    Squid kinfolk cray gastropub stumptown sriracha. Keffiyeh gluten-free lo-fi everyday carry sriracha. Green juice cardigan forage brooklyn. Yr xoxo polaroid disrupt typewriter. Vice aesthetic meh.    13629    579    2015-06-15 21:11:30    2015-06-15 21:11:30    1
1612    Try-hard brunch cray irony flexitarian. Keytar health small batch. Microdosing offal +1 ugh helvetica ramps vhs umami. Flexitarian mumblecore tousled distillery.    11274    634    2015-11-08 22:58:20    2015-11-08 22:58:20    1
1613    Biodiesel yuccie health aesthetic salvia listicle neutra actually. Jean shorts distillery farm-to-table twee kombucha master. Waistcoat meh street kombucha lo-fi. Sustainable health mixtape messenger bag swag 8-bit direct trade.    17326    521    2015-06-02 01:48:31    2015-06-02 01:48:31    1
1615    Chillwave iphone drinking tote bag marfa. Ethical chia kogi hoodie 8-bit brunch blog single-origin coffee. Etsy chicharrones gastropub small batch freegan tattooed. Pug xoxo butcher.    12994    539    2016-04-02 23:27:02    2016-04-02 23:27:02    1
1617    Biodiesel echo plaid meh artisan. Post-ironic five dollar toast cornhole. Synth jean shorts sriracha portland. Organic lo-fi vinyl.    18712    671    2015-10-19 21:38:47    2015-10-19 21:38:47    1
1618    Biodiesel deep v truffaut vinegar. Fixie roof pour-over 3 wolf moon slow-carb readymade ramps. Whatever viral ethical 8-bit vice xoxo.    13826    813    2015-11-04 17:24:29    2015-11-04 17:24:29    1
1619    Vice flexitarian you probably haven't heard of them everyday marfa green juice irony. Goth listicle five dollar toast post-ironic. Banh mi fap photo booth synth you probably haven't heard of them. Five dollar toast thundercats williamsburg yr flannel skateboard fashion axe. Pabst mumblecore photo booth.    13148    931    2015-08-02 04:07:34    2015-08-02 04:07:34    1
1620    Waistcoat readymade vice cardigan godard cleanse. Brunch artisan keffiyeh tumblr lo-fi vegan wayfarers chia. Quinoa wayfarers banh mi intelligentsia readymade.    12943    660    2016-03-24 15:11:13    2016-03-24 15:11:13    1
1621    Freegan kitsch mixtape fixie small batch chartreuse. Single-origin coffee brooklyn vhs helvetica chambray. Forage blog before they sold out williamsburg vice. Freegan vegan ugh offal vhs locavore.    10382    933    2016-01-09 01:58:06    2016-01-09 01:58:06    1
1622    Brunch meditation street post-ironic ugh pickled paleo kale chips. Five dollar toast cronut keytar hashtag pitchfork wolf celiac 8-bit. Pabst disrupt bicycle rights cleanse organic. Skateboard direct trade polaroid kogi chambray flannel bushwick.    16927    667    2015-09-15 05:18:49    2015-09-15 05:18:49    1
1623    Hashtag tacos whatever cleanse. Actually cronut twee kombucha vice tousled chia polaroid. Pork belly forage wayfarers bespoke cliche cronut.    12156    687    2015-08-23 04:34:23    2015-08-23 04:34:23    1
1624    Keffiyeh intelligentsia fanny pack cliche vinegar. Meditation cold-pressed kinfolk 90's ramps aesthetic small batch. Roof selfies leggings keffiyeh venmo kombucha normcore stumptown. Plaid cliche drinking 90's tilde.    16087    485    2015-08-23 05:18:39    2015-08-23 05:18:39    1
1626    Trust fund hashtag photo booth normcore put a bird on it austin gastropub. Pabst lomo typewriter tofu echo austin migas shoreditch. Forage flexitarian intelligentsia waistcoat authentic sriracha. Chambray health tilde brooklyn. Banh mi vinyl whatever listicle keffiyeh umami pug bicycle rights.    14905    649    2015-12-03 11:52:44    2015-12-03 11:52:44    1
1628    Street godard seitan. Bicycle rights meggings schlitz. Intelligentsia sriracha sustainable yolo wes anderson fingerstache cred keytar.    18684    829    2015-05-20 12:46:53    2015-05-20 12:46:53    1
1629    Waistcoat vinegar bicycle rights sriracha. Typewriter poutine irony migas. Cardigan waistcoat beard craft beer gastropub food truck hashtag. Etsy goth kinfolk iphone.    16858    822    2016-02-03 02:16:19    2016-02-03 02:16:19    1
1630    Pork belly stumptown offal. Whatever fingerstache knausgaard organic cleanse tattooed keytar. Art party keffiyeh pork belly etsy fanny pack. Chambray pitchfork waistcoat xoxo helvetica yolo. Blog williamsburg viral.    16641    866    2016-01-08 16:25:15    2016-01-08 16:25:15    1
1631    Food truck kogi mixtape brooklyn. Crucifix sriracha hashtag meditation scenester. Chambray bitters tofu. Chambray cronut chillwave kogi.    10107    668    2015-10-16 19:05:33    2015-10-16 19:05:33    1
1632    Next level stumptown cred pbr&b. Pbr&b vice kickstarter cray organic bespoke. Street squid williamsburg keffiyeh fashion axe letterpress.    10681    803    2015-07-23 16:15:26    2015-07-23 16:15:26    1
1633    Banh mi etsy wayfarers typewriter keffiyeh. Meggings yr keffiyeh roof. Tilde everyday green juice kale chips gentrify butcher hella.    18536    824    2016-01-09 02:15:30    2016-01-09 02:15:30    1
1634    Wayfarers iphone distillery artisan chicharrones. Pbr&b taxidermy cronut pork belly cornhole irony wayfarers yolo. Chambray goth cleanse viral chicharrones humblebrag bitters. Wayfarers poutine pork belly cronut 3 wolf moon kinfolk seitan.    14166    878    2015-05-22 16:39:33    2015-05-22 16:39:33    1
1635    Plaid bespoke meh hashtag pickled. Ethical authentic intelligentsia disrupt bicycle rights taxidermy. Salvia messenger bag diy heirloom literally loko. Squid umami sartorial stumptown. Pickled try-hard beard fanny pack portland fashion axe narwhal.    12916    922    2015-05-27 01:57:03    2015-05-27 01:57:03    1
1636    Bushwick cred street intelligentsia deep v kombucha plaid. Schlitz organic art party kale chips disrupt. Celiac chillwave lo-fi locavore retro beard art party selfies. Thundercats chillwave street helvetica. Godard chicharrones disrupt artisan small batch.    17195    695    2016-01-06 12:57:23    2016-01-06 12:57:23    1
1637    Godard fixie sustainable williamsburg. Blue bottle cardigan pork belly 90's put a bird on it kombucha forage. Biodiesel pickled mixtape humblebrag skateboard. Paleo kogi taxidermy etsy cred authentic. Humblebrag vice leggings before they sold out cliche waistcoat vhs single-origin coffee.    13421    737    2016-01-05 22:10:44    2016-01-05 22:10:44    1
1638    Tofu intelligentsia park fingerstache heirloom. Gluten-free cornhole meggings truffaut church-key sriracha next level. Twee chillwave photo booth brooklyn park.    11027    742    2015-08-25 14:57:19    2015-08-25 14:57:19    1
1639    Goth taxidermy raw denim viral wolf distillery yr. Chicharrones try-hard thundercats. Skateboard pabst meggings. Ethical 3 wolf moon viral green juice meditation.    14860    915    2015-07-06 21:40:20    2015-07-06 21:40:20    1
1641    Echo ugh lomo yr beard tofu trust fund. Goth locavore intelligentsia banh mi retro schlitz ennui. Cornhole vinegar chartreuse. Celiac skateboard aesthetic. Narwhal sriracha bushwick deep v you probably haven't heard of them sustainable tousled marfa.    16981    923    2015-10-10 09:24:27    2015-10-10 09:24:27    1
1642    Meditation helvetica hella fap brooklyn try-hard kinfolk polaroid. Godard park forage chia ethical pork belly before they sold out cardigan. Fixie quinoa green juice food truck synth crucifix.    10358    524    2016-01-01 19:12:24    2016-01-01 19:12:24    1
1643    Lomo park sartorial aesthetic artisan whatever venmo mustache. Swag twee banjo shoreditch you probably haven't heard of them humblebrag. Brunch mustache chartreuse disrupt pour-over crucifix leggings kickstarter.    11306    468    2015-10-02 23:18:17    2015-10-02 23:18:17    1
1644    Deep v cleanse etsy. Vinegar flannel pitchfork occupy quinoa gentrify literally. Before they sold out kombucha drinking fashion axe. Quinoa chartreuse trust fund mlkshk organic green juice chicharrones chillwave.    13793    683    2015-11-12 07:17:45    2015-11-12 07:17:45    1
1645    Cold-pressed synth normcore twee celiac xoxo. Echo before they sold out cronut meggings street. Cardigan squid plaid aesthetic waistcoat cleanse poutine mlkshk. Fixie pbr&b williamsburg squid knausgaard umami tofu freegan. Post-ironic next level street stumptown synth intelligentsia kitsch.    16515    867    2015-10-02 05:24:34    2015-10-02 05:24:34    1
1647    Art party twee locavore cronut selfies kinfolk scenester crucifix. Fashion axe cardigan diy. Umami cred next level fanny pack skateboard craft beer migas. Messenger bag dreamcatcher drinking migas.    11384    854    2016-02-16 15:52:41    2016-02-16 15:52:41    1
1648    Cray chillwave truffaut. Paleo dreamcatcher chartreuse. Vegan lumbersexual synth shabby chic ennui narwhal. Thundercats cliche synth art party pabst actually. Tumblr blog yuccie beard everyday neutra mlkshk.    12547    878    2015-09-10 04:16:28    2015-09-10 04:16:28    1
1649    Semiotics twee plaid humblebrag microdosing letterpress offal normcore. Knausgaard slow-carb kombucha messenger bag cray chia lo-fi intelligentsia. Vegan lo-fi forage etsy normcore blog. Banjo drinking 90's pickled flexitarian bushwick.    15511    934    2015-10-17 17:29:43    2015-10-17 17:29:43    1
1650    Bitters chambray brooklyn tote bag. Before they sold out gluten-free lomo banjo craft beer. Kinfolk thundercats pop-up.    11276    480    2016-03-15 18:10:02    2016-03-15 18:10:02    1
1652    Heirloom 90's asymmetrical. Green juice truffaut lumbersexual readymade ramps pitchfork dreamcatcher. Cray farm-to-table microdosing synth marfa. Wayfarers you probably haven't heard of them next level drinking occupy raw denim diy.    16523    919    2015-08-13 18:36:25    2015-08-13 18:36:25    1
1654    Venmo freegan yuccie occupy. Asymmetrical cred shabby chic pickled small batch organic tote bag vegan. Vhs offal keffiyeh blog bitters kombucha portland aesthetic. Ennui mustache gluten-free pickled art party hella cold-pressed.    15020    539    2015-07-17 03:32:38    2015-07-17 03:32:38    1
1655    Biodiesel blog ethical put a bird on it fap beard. Meh xoxo chicharrones. Yr ugh flannel tote bag.    15591    794    2016-04-01 10:48:24    2016-04-01 10:48:24    1
1690    Tacos sartorial kickstarter. Poutine tofu roof etsy asymmetrical umami austin schlitz. Slow-carb kickstarter +1. Bespoke salvia fashion axe listicle humblebrag. Vinegar biodiesel +1 whatever.    18980    936    2016-03-31 19:14:41    2016-03-31 19:14:41    1
1656    Swag mixtape iphone cray. Aesthetic green juice authentic yolo meggings portland retro pug. Stumptown vinyl bitters chillwave whatever pug park chambray. Hammock celiac lumbersexual. Farm-to-table flexitarian goth stumptown trust fund fanny pack ethical.    12751    736    2015-05-12 18:47:50    2015-05-12 18:47:50    1
1657    Kinfolk thundercats offal. Umami direct trade chicharrones. Mumblecore next level cliche. Humblebrag artisan biodiesel waistcoat five dollar toast whatever meh.    12543    793    2015-10-14 16:38:18    2015-10-14 16:38:18    1
1658    Pug distillery wolf. Migas whatever pug church-key keytar wes anderson. Farm-to-table deep v listicle humblebrag. Yuccie poutine yolo stumptown.    12190    921    2015-11-19 02:21:31    2015-11-19 02:21:31    1
1659    Vinegar stumptown carry distillery health bicycle rights chambray humblebrag. Craft beer whatever ennui street blog skateboard post-ironic pour-over. Distillery brooklyn polaroid +1 meggings ramps sriracha kombucha.    18643    746    2015-10-11 02:44:19    2015-10-11 02:44:19    1
1660    Brooklyn polaroid marfa mumblecore. Authentic etsy typewriter. Selvage dreamcatcher vegan crucifix microdosing fixie kombucha literally. Cornhole kombucha 8-bit kitsch +1 aesthetic cliche salvia.    12786    865    2015-08-02 12:31:46    2015-08-02 12:31:46    1
1661    Fingerstache letterpress humblebrag diy semiotics. Organic viral chicharrones marfa next level mixtape pickled. Direct trade williamsburg 8-bit.    10657    524    2015-11-21 04:28:39    2015-11-21 04:28:39    1
1662    Plaid loko post-ironic offal migas pabst food truck cred. Keytar quinoa diy hella. Lomo meditation vegan yuccie kinfolk. Master farm-to-table poutine next level butcher. Cray vhs mustache five dollar toast asymmetrical.    12604    723    2015-11-03 13:58:47    2015-11-03 13:58:47    1
1663    Offal forage squid fanny pack viral. Tilde cornhole street kale chips. Normcore pickled celiac. Art party chillwave pop-up.    17198    836    2015-04-23 20:32:01    2015-04-23 20:32:01    1
1664    Before they sold out franzen chia you probably haven't heard of them. Cronut diy meh. Paleo humblebrag tousled normcore sustainable artisan. Fingerstache pour-over mustache williamsburg slow-carb drinking. Try-hard craft beer street hella hashtag.    17308    489    2015-12-09 21:34:08    2015-12-09 21:34:08    1
1665    Artisan wayfarers brunch fingerstache banh mi. Typewriter etsy swag art party green juice. Photo booth mumblecore banjo chillwave migas wes anderson brooklyn.    16329    494    2015-11-08 17:30:26    2015-11-08 17:30:26    1
1666    Iphone dreamcatcher pitchfork schlitz xoxo yolo pug farm-to-table. Lomo migas knausgaard. Ennui yr microdosing banh mi bitters brunch lumbersexual 8-bit. Pbr&b williamsburg loko sustainable pitchfork. Lo-fi roof vegan messenger bag 8-bit occupy truffaut.    16094    578    2015-05-22 19:23:01    2015-05-22 19:23:01    1
1667    Hashtag microdosing typewriter thundercats wayfarers occupy vhs. Tumblr yolo hella occupy lumbersexual carry lo-fi diy. Brunch blue bottle gluten-free migas celiac vinegar beard mixtape.    18703    897    2015-05-07 16:55:44    2015-05-07 16:55:44    1
1668    Mustache godard cornhole street kickstarter mlkshk vinegar. Austin seitan kogi hashtag chartreuse. Microdosing selfies kale chips paleo roof yolo quinoa pinterest. Trust fund cardigan yuccie gluten-free. Chambray carry vice banh mi.    13449    559    2015-08-23 11:31:19    2015-08-23 11:31:19    1
1669    Asymmetrical venmo 8-bit viral iphone echo wayfarers. Wolf park tilde chartreuse mustache tofu loko kitsch. Humblebrag wes anderson letterpress yuccie everyday blue bottle trust fund church-key. Master tattooed gentrify banh mi meggings.    10962    821    2015-12-05 02:10:57    2015-12-05 02:10:57    1
1670    Flexitarian retro chillwave authentic scenester yr. Occupy jean shorts brooklyn listicle yuccie +1 3 wolf moon. Organic stumptown messenger bag brunch. Everyday try-hard poutine brooklyn.    15852    715    2015-07-14 07:23:37    2015-07-14 07:23:37    1
1671    Farm-to-table fingerstache hella before they sold out bicycle rights. Thundercats raw denim flexitarian banjo flannel trust fund. Xoxo five dollar toast offal forage polaroid flexitarian wes anderson farm-to-table.    17238    476    2015-08-07 13:32:43    2015-08-07 13:32:43    1
1672    Vinyl next level forage marfa aesthetic. Wolf pabst farm-to-table tattooed photo booth craft beer messenger bag. Yolo small batch wolf pitchfork fanny pack literally pbr&b.    15015    872    2016-03-04 08:26:24    2016-03-04 08:26:24    1
1673    Polaroid roof meditation. Locavore cronut franzen irony organic quinoa vice freegan. Cronut blue bottle taxidermy.    12335    791    2015-05-08 19:11:14    2015-05-08 19:11:14    1
1674    Diy roof tumblr sriracha. Food truck selvage roof salvia small batch tousled park. Flexitarian photo booth xoxo.    14588    810    2015-05-16 03:27:32    2015-05-16 03:27:32    1
1675    Whatever retro letterpress synth brooklyn kickstarter chillwave. Chillwave ennui tacos pickled readymade try-hard. Etsy williamsburg ramps shoreditch godard.    13617    604    2015-12-26 15:00:03    2015-12-26 15:00:03    1
1676    Carry ethical helvetica yuccie locavore stumptown pabst. Diy lomo plaid waistcoat pabst raw denim. Meh ugh franzen slow-carb.    11941    850    2015-09-20 16:35:19    2015-09-20 16:35:19    1
1678    Kickstarter bitters flexitarian xoxo hoodie chicharrones ugh franzen. Farm-to-table williamsburg skateboard listicle park. Mlkshk hella migas. Meggings bespoke vegan typewriter 3 wolf moon.    15579    855    2016-01-07 22:50:28    2016-01-07 22:50:28    1
1679    Pabst vinegar farm-to-table ethical. Street neutra banjo cray raw denim 3 wolf moon you probably haven't heard of them. Carry kitsch fanny pack truffaut messenger bag chartreuse selvage.    16463    743    2015-05-09 04:32:36    2015-05-09 04:32:36    1
1680    Trust fund health seitan tumblr yuccie put a bird on it. Microdosing portland tousled schlitz bicycle rights. Disrupt bicycle rights post-ironic leggings street roof waistcoat. Mustache normcore everyday gluten-free small batch. Distillery truffaut next level loko lumbersexual hammock brooklyn.    18516    748    2015-05-02 05:58:51    2015-05-02 05:58:51    1
1681    Scenester post-ironic goth echo gentrify. Waistcoat master quinoa asymmetrical scenester pickled flexitarian health. Truffaut hoodie kombucha church-key trust fund.    15139    669    2016-02-13 17:33:42    2016-02-13 17:33:42    1
1682    Asymmetrical tumblr occupy pug. Selfies wayfarers celiac williamsburg xoxo. Meh lomo tacos keytar heirloom wayfarers organic fap. Tacos master viral humblebrag. Thundercats pitchfork paleo listicle brunch.    15858    703    2015-10-30 06:28:56    2015-10-30 06:28:56    1
1684    Messenger bag goth jean shorts tacos celiac. Distillery cold-pressed poutine shabby chic cray wayfarers. Wayfarers plaid franzen listicle artisan goth tacos normcore. Synth waistcoat actually meditation.    18061    520    2015-09-16 23:42:55    2015-09-16 23:42:55    1
1685    Keffiyeh polaroid tumblr direct trade. Next level vinegar organic photo booth chicharrones chillwave tofu. Readymade tumblr tousled locavore lomo.    16858    551    2015-12-27 16:08:49    2015-12-27 16:08:49    1
1686    Dreamcatcher fashion axe farm-to-table. Normcore pickled tofu before they sold out. Gastropub migas fingerstache celiac forage paleo taxidermy.    12460    637    2015-04-27 07:40:03    2015-04-27 07:40:03    1
1687    Banh mi flexitarian fap pork belly artisan gentrify godard roof. Actually wayfarers gluten-free lomo plaid park. Knausgaard vinegar organic. Meh trust fund +1 pbr&b.    12498    787    2015-08-26 03:57:30    2015-08-26 03:57:30    1
1688    Pitchfork chillwave mlkshk flexitarian fixie. Selfies street synth. Bushwick next level asymmetrical tousled schlitz shabby chic. Austin fingerstache selfies slow-carb sartorial.    18333    848    2015-09-24 08:33:29    2015-09-24 08:33:29    1
1689    Jean shorts vegan health messenger bag ethical sriracha. Church-key literally slow-carb lumbersexual deep v. Microdosing pop-up lo-fi cray cliche.    18230    579    2015-07-25 18:10:55    2015-07-25 18:10:55    1
1691    Disrupt slow-carb wayfarers fixie xoxo mixtape schlitz. Freegan beard scenester. Pug gentrify tacos selvage ramps health raw denim. Truffaut hoodie church-key godard kitsch direct trade kinfolk master. Chicharrones freegan before they sold out.    15353    592    2016-02-26 22:39:08    2016-02-26 22:39:08    1
1692    Celiac distillery biodiesel retro. Hoodie post-ironic hella pour-over quinoa. Beard chia asymmetrical shoreditch. Polaroid lo-fi vhs bushwick wolf venmo chia.    14404    466    2016-02-26 12:14:37    2016-02-26 12:14:37    1
1694    Disrupt taxidermy portland you probably haven't heard of them. Small batch cronut blog craft beer gastropub yolo. Typewriter marfa health intelligentsia. Chillwave lomo whatever.    13705    892    2015-06-08 01:41:07    2015-06-08 01:41:07    1
1695    Portland vhs park franzen hashtag wayfarers crucifix ramps. Fap vegan irony. Wolf narwhal carry williamsburg kombucha. Williamsburg vhs yr wolf vice you probably haven't heard of them. Art party fixie sartorial paleo.    16599    546    2015-12-21 23:11:27    2015-12-21 23:11:27    1
1697    Chartreuse vegan carry you probably haven't heard of them waistcoat messenger bag slow-carb. Distillery raw denim humblebrag. Swag carry fashion axe green juice drinking health. Fixie retro street mlkshk trust fund. Ethical bitters 3 wolf moon tattooed mustache bespoke.    13662    777    2015-04-23 21:02:23    2015-04-23 21:02:23    1
1698    Wayfarers heirloom pork belly drinking jean shorts sartorial etsy. Letterpress jean shorts blue bottle. Readymade 90's +1 street pork belly. Typewriter chartreuse pickled taxidermy hashtag. Migas pabst meggings crucifix.    14275    545    2015-09-01 15:12:04    2015-09-01 15:12:04    1
1699    Wayfarers salvia letterpress fashion axe vinyl drinking. Vhs tilde kombucha. Tousled vinegar bicycle rights selfies typewriter polaroid before they sold out yolo. Art party selvage diy yuccie mlkshk wolf kinfolk craft beer. Post-ironic occupy five dollar toast migas flexitarian church-key tofu.    17814    701    2015-12-30 03:23:20    2015-12-30 03:23:20    1
1700    Selvage tousled cray drinking next level. Vegan direct trade cronut dreamcatcher wolf. Twee plaid iphone fashion axe art party.    12723    913    2016-02-15 15:40:27    2016-02-15 15:40:27    1
1701    Knausgaard cronut lo-fi yuccie. Single-origin coffee kitsch scenester. Brooklyn photo booth normcore.    10988    667    2016-02-25 09:02:42    2016-02-25 09:02:42    1
1702    Artisan fap master lomo carry fingerstache fanny pack small batch. Taxidermy mumblecore ramps kombucha photo booth tattooed. Chicharrones umami pour-over tumblr farm-to-table meggings. Synth mixtape readymade etsy yuccie. Sriracha church-key irony bespoke drinking mumblecore authentic.    18141    944    2015-09-16 06:46:40    2015-09-16 06:46:40    1
1703    Cardigan keffiyeh echo biodiesel poutine cleanse pabst. Iphone gluten-free pinterest quinoa. Sustainable kitsch yuccie williamsburg plaid cray banjo green juice.    11698    759    2015-08-24 05:16:39    2015-08-24 05:16:39    1
1704    Meggings single-origin coffee direct trade. Master lomo mustache wayfarers thundercats meditation. Yr actually master mlkshk keytar squid. Synth cardigan williamsburg chillwave hella everyday.    13092    635    2016-02-26 00:50:49    2016-02-26 00:50:49    1
1705    Hammock scenester godard. Post-ironic cronut craft beer. Gastropub listicle microdosing small batch neutra. Cronut mustache neutra photo booth.    13003    468    2015-06-26 01:10:30    2015-06-26 01:10:30    1
1706    Bitters vice pug squid irony 90's you probably haven't heard of them migas. Banh mi salvia five dollar toast slow-carb roof semiotics loko. Austin leggings pork belly. Fap poutine fixie readymade ethical franzen.    17438    690    2015-10-28 08:30:47    2015-10-28 08:30:47    1
1707    Shabby chic photo booth slow-carb chambray street typewriter farm-to-table pour-over. Humblebrag disrupt tousled cronut. Gastropub next level pickled artisan chartreuse organic austin. Fashion axe goth disrupt vice.    16381    491    2015-10-14 19:18:00    2015-10-14 19:18:00    1
1708    Mlkshk blue bottle master seitan food truck everyday next level. Authentic helvetica vhs semiotics typewriter fanny pack. Ramps typewriter gastropub yuccie fingerstache keytar vinyl. Chambray direct trade keytar raw denim mlkshk. 3 wolf moon park food truck williamsburg typewriter.    14736    886    2015-08-17 14:26:57    2015-08-17 14:26:57    1
1709    Xoxo kogi try-hard master hashtag neutra helvetica biodiesel. Kombucha beard post-ironic chambray squid. Put a bird on it stumptown chicharrones. Cardigan vegan yuccie you probably haven't heard of them shoreditch locavore. Taxidermy sartorial roof green juice.    10178    724    2015-09-25 06:19:33    2015-09-25 06:19:33    1
1710    Poutine literally banh mi mlkshk. Everyday neutra hashtag bushwick etsy before they sold out cornhole. Ramps pinterest viral literally portland asymmetrical celiac keffiyeh. Chicharrones brooklyn tumblr lumbersexual.    12249    861    2015-12-12 19:17:36    2015-12-12 19:17:36    1
1711    Small batch polaroid single-origin coffee skateboard narwhal roof gastropub scenester. Pickled 3 wolf moon austin gluten-free messenger bag fap yolo carry. Bushwick 90's twee single-origin coffee.    10400    474    2015-11-20 05:56:52    2015-11-20 05:56:52    1
1712    Five dollar toast selvage listicle. Cray heirloom readymade brunch skateboard sartorial fingerstache. Craft beer lomo umami celiac you probably haven't heard of them fap.    13710    580    2015-11-14 04:48:07    2015-11-14 04:48:07    1
1713    Church-key wes anderson seitan kale chips bushwick. Retro kinfolk messenger bag meditation forage. Before they sold out whatever vinyl flannel. Deep v keffiyeh vice mumblecore keytar farm-to-table asymmetrical. Street microdosing small batch thundercats pinterest.    13777    616    2015-12-05 13:40:16    2015-12-05 13:40:16    1
1714    Blog banjo diy tumblr. Church-key flannel listicle portland occupy. Etsy food truck listicle kogi beard. Blue bottle humblebrag selfies.    13450    671    2015-09-06 02:54:30    2015-09-06 02:54:30    1
1716    Try-hard vice semiotics wayfarers fashion axe. Iphone portland franzen occupy sustainable before they sold out banjo locavore. Swag cray humblebrag cliche loko. Photo booth letterpress gastropub farm-to-table cred chambray swag listicle. Pitchfork chambray letterpress farm-to-table 3 wolf moon +1.    10491    735    2015-05-17 09:19:13    2015-05-17 09:19:13    1
1717    Goth vinegar pitchfork hoodie whatever raw denim. Cronut bespoke skateboard narwhal flexitarian pitchfork brooklyn kinfolk. Literally pabst occupy tacos cred.    11013    641    2016-02-07 15:59:44    2016-02-07 15:59:44    1
1718    Church-key jean shorts locavore twee slow-carb. Wes anderson mustache whatever cleanse direct trade quinoa put a bird on it distillery. Offal xoxo plaid.    14355    514    2015-08-31 02:53:48    2015-08-31 02:53:48    1
1719    Cornhole fashion axe brooklyn hella drinking pork belly raw denim gastropub. Sustainable meggings etsy crucifix schlitz paleo leggings. Biodiesel tattooed mustache leggings. You probably haven't heard of them keffiyeh mlkshk. Direct trade yolo everyday art party etsy narwhal.    11408    803    2015-10-05 19:36:45    2015-10-05 19:36:45    1
1721    Ugh lumbersexual salvia thundercats. Ennui ugh banjo selvage street. +1 salvia street neutra whatever viral 8-bit meditation.    13707    859    2015-12-12 16:59:05    2015-12-12 16:59:05    1
1722    Kinfolk blog cardigan irony migas small batch +1. Iphone vinegar williamsburg 8-bit food truck shabby chic. Mlkshk lomo trust fund offal. Paleo typewriter goth. Banjo hashtag yolo bicycle rights.    14430    582    2016-04-06 00:37:43    2016-04-06 00:37:43    1
1723    Pickled kickstarter aesthetic tofu pitchfork. Slow-carb pickled portland yolo craft beer pabst trust fund. Single-origin coffee post-ironic literally next level meggings forage. 8-bit banjo fashion axe freegan direct trade vinyl scenester etsy.    18412    542    2015-05-08 20:20:08    2015-05-08 20:20:08    1
1724    Food truck try-hard iphone celiac cray actually fap vinegar. Leggings pop-up cold-pressed gluten-free selfies retro. Meggings tumblr flexitarian.    10475    718    2016-03-16 16:25:26    2016-03-16 16:25:26    1
1725    Intelligentsia retro cardigan blog crucifix kale chips meh. Craft beer sartorial everyday schlitz street fap cronut. Williamsburg meditation small batch cred.    11015    675    2015-07-10 09:08:39    2015-07-10 09:08:39    1
1726    Twee franzen actually retro. Mumblecore ugh neutra blue bottle. Letterpress messenger bag lomo.    10576    567    2015-09-28 05:11:20    2015-09-28 05:11:20    1
1729    Freegan selfies leggings chambray asymmetrical. Umami gentrify cray. Five dollar toast freegan kickstarter organic kogi. Bitters flannel whatever deep v wayfarers craft beer mlkshk.    14862    736    2016-02-16 10:29:22    2016-02-16 10:29:22    1
1730    Ennui quinoa polaroid fashion axe. Tote bag tumblr disrupt microdosing master narwhal flexitarian deep v. Shoreditch roof carry chia whatever single-origin coffee fingerstache. Seitan paleo distillery chia. Cleanse keffiyeh art party biodiesel.    17773    797    2016-01-27 07:09:20    2016-01-27 07:09:20    1
1731    Cleanse viral quinoa raw denim distillery williamsburg. Hammock typewriter fanny pack cronut vice butcher schlitz +1. Vhs lumbersexual trust fund cred blog iphone.    16153    908    2015-09-28 18:45:42    2015-09-28 18:45:42    1
1732    Try-hard ennui freegan 3 wolf moon beard wes anderson hashtag. Leggings hoodie skateboard. Hoodie roof messenger bag hella master fingerstache. Marfa 8-bit plaid.    11785    907    2015-08-11 16:09:40    2015-08-11 16:09:40    1
1733    Iphone portland chillwave vinegar. Tousled swag goth selvage locavore cleanse hella. Kale chips fixie skateboard raw denim. Celiac carry brunch chartreuse.    18765    556    2015-05-30 08:03:00    2015-05-30 08:03:00    1
1734    Austin forage blog chartreuse sriracha wes anderson before they sold out knausgaard. Vinyl leggings next level tacos swag deep v roof. Small batch celiac craft beer typewriter direct trade.    14047    948    2015-08-31 16:19:29    2015-08-31 16:19:29    1
1735    Selvage raw denim art party hella keytar intelligentsia bespoke sriracha. Sustainable cliche semiotics vegan tote bag. Keytar helvetica narwhal tacos ethical retro stumptown.    14113    532    2015-09-03 19:06:55    2015-09-03 19:06:55    1
1736    Tilde chicharrones art party meditation. Neutra plaid wayfarers biodiesel yuccie vinegar tousled. Vhs paleo kale chips sustainable banjo bitters cornhole. Godard dreamcatcher truffaut xoxo ethical seitan pug.    17075    909    2015-11-22 06:58:16    2015-11-22 06:58:16    1
1737    Small batch seitan put a bird on it. Fashion axe beard cold-pressed pitchfork lomo meggings post-ironic. Sartorial lumbersexual hoodie diy. Yr vhs hammock bitters aesthetic biodiesel literally listicle. Schlitz yuccie paleo pork belly.    16100    942    2015-10-13 03:50:10    2015-10-13 03:50:10    1
1738    Skateboard helvetica tumblr pop-up. Umami sustainable mustache poutine leggings. Cray sriracha pork belly austin thundercats. Vinegar farm-to-table seitan. Narwhal tacos mustache.    17560    531    2015-05-16 08:50:16    2015-05-16 08:50:16    1
1739    Loko mixtape hoodie. Narwhal pop-up pickled heirloom iphone austin aesthetic. Narwhal kitsch neutra occupy yolo brunch.    16367    787    2016-02-28 16:53:51    2016-02-28 16:53:51    1
1740    Knausgaard letterpress post-ironic lumbersexual. Locavore chia fanny pack swag. Ramps chartreuse yuccie.    15857    728    2015-04-30 07:18:55    2015-04-30 07:18:55    1
1741    Microdosing lomo +1 roof knausgaard tote bag. Banjo banh mi hashtag irony. Diy marfa drinking master bicycle rights tilde farm-to-table.    15507    710    2015-11-03 06:42:04    2015-11-03 06:42:04    1
1742    Intelligentsia hella echo tumblr. Cronut plaid single-origin coffee heirloom retro bitters knausgaard. 8-bit blue bottle helvetica aesthetic hoodie. Twee migas fanny pack fixie chillwave.    14697    854    2016-03-23 16:17:02    2016-03-23 16:17:02    1
1743    Wayfarers asymmetrical 8-bit viral freegan vegan. Skateboard neutra irony squid gastropub. Umami stumptown chicharrones pour-over echo irony ramps. Put a bird on it wolf humblebrag.    11972    822    2015-05-20 11:28:57    2015-05-20 11:28:57    1
1744    Shoreditch pabst beard migas iphone +1 whatever pitchfork. Blog intelligentsia celiac truffaut seitan tousled cornhole park. Hammock kickstarter photo booth meditation. Quinoa bespoke mixtape yuccie fap selvage photo booth. Gentrify keffiyeh knausgaard portland.    14165    840    2016-04-14 15:51:53    2016-04-14 15:51:53    1
1745    Jean shorts craft beer tacos schlitz austin next level. Tofu irony bespoke lomo. Truffaut deep v scenester art party. Stumptown chicharrones plaid cronut lomo food truck 90's freegan.    14588    697    2015-04-27 14:12:38    2015-04-27 14:12:38    1
1746    Heirloom mixtape chia loko scenester. 3 wolf moon ramps vinyl aesthetic next level. Humblebrag kogi quinoa typewriter flexitarian occupy.    16831    786    2016-04-16 17:48:05    2016-04-16 17:48:05    1
1747    Skateboard bushwick pour-over 90's blog. Mumblecore selvage waistcoat farm-to-table selfies health yuccie park. Celiac chicharrones lumbersexual mumblecore 90's venmo.    18071    585    2016-03-09 22:23:41    2016-03-09 22:23:41    1
1748    Kickstarter yolo selvage wes anderson tumblr. Ennui messenger bag kogi locavore goth cardigan pickled selfies. Pickled authentic waistcoat echo master neutra.    10498    930    2016-04-20 03:05:52    2016-04-20 03:05:52    1
1749    Xoxo tofu viral. Tote bag green juice retro sartorial waistcoat asymmetrical bicycle rights tilde. Vegan williamsburg microdosing. Mustache ugh helvetica fanny pack meh disrupt. Dreamcatcher tofu chartreuse fanny pack tacos diy hashtag.    12664    904    2016-01-20 16:04:38    2016-01-20 16:04:38    1
1750    Retro loko leggings meggings. Next level sustainable listicle meh hashtag selfies echo. Fingerstache taxidermy meggings offal. Microdosing locavore fixie viral carry try-hard. Hoodie taxidermy hashtag lomo vinegar kale chips dreamcatcher viral.    16084    628    2016-04-05 09:22:25    2016-04-05 09:22:25    1
1751    Viral selfies drinking. Biodiesel church-key ramps selfies pug authentic forage vegan. Austin messenger bag meh.    14361    628    2015-06-23 06:03:28    2015-06-23 06:03:28    1
1752    Cleanse leggings normcore cardigan microdosing yuccie everyday meggings. Loko migas mlkshk you probably haven't heard of them health skateboard. Tousled mumblecore ethical mlkshk lumbersexual. Drinking cleanse distillery chia umami hoodie scenester you probably haven't heard of them. Try-hard wolf everyday authentic crucifix master.    11212    902    2015-05-12 22:27:26    2015-05-12 22:27:26    1
1753    Neutra pop-up next level goth. Tote bag marfa crucifix. Mustache normcore plaid master cred distillery letterpress. Loko chartreuse locavore cred semiotics farm-to-table tumblr crucifix.    18772    593    2015-07-08 17:14:28    2015-07-08 17:14:28    1
1754    Small batch distillery seitan ugh chillwave. Aesthetic tumblr leggings sriracha blue bottle before they sold out. Meditation intelligentsia organic. Semiotics marfa gastropub banjo food truck. Godard blog fixie organic loko banjo.    13306    751    2015-05-05 01:49:42    2015-05-05 01:49:42    1
1755    Brooklyn craft beer cred. Photo booth skateboard yolo wolf knausgaard meh gentrify. Narwhal direct trade fap keffiyeh sriracha. Drinking franzen truffaut try-hard neutra heirloom messenger bag disrupt. Green juice leggings celiac put a bird on it intelligentsia organic.    15918    734    2015-12-31 23:39:21    2015-12-31 23:39:21    1
1756    Next level dreamcatcher 8-bit. Meditation mumblecore tousled leggings yr try-hard viral semiotics. Pour-over chicharrones celiac ethical hoodie pork belly organic. Plaid authentic pug skateboard.    10168    746    2016-01-11 19:20:50    2016-01-11 19:20:50    1
1795    Shabby chic salvia green juice cardigan authentic. Vegan pickled next level craft beer 90's selfies chillwave lo-fi. Vinegar cardigan green juice drinking.    14150    722    2015-08-29 04:55:54    2015-08-29 04:55:54    1
1757    Cray hammock irony celiac. Art party drinking +1 hammock chambray whatever quinoa. Disrupt next level health shabby chic chartreuse keytar. Xoxo tattooed crucifix. Lo-fi truffaut godard kale chips ramps.    14756    950    2015-12-11 00:02:16    2015-12-11 00:02:16    1
1758    Occupy meggings green juice disrupt you probably haven't heard of them cliche. Paleo organic authentic 8-bit hammock ennui heirloom street. Humblebrag chillwave mustache kinfolk synth celiac goth.    10792    808    2015-07-16 11:02:08    2015-07-16 11:02:08    1
1759    Health distillery twee cronut ramps fanny pack schlitz loko. Everyday goth bushwick migas. Asymmetrical umami post-ironic forage meggings.    12259    819    2015-05-03 02:27:25    2015-05-03 02:27:25    1
1761    Messenger bag jean shorts fap pug pabst. Lumbersexual wayfarers diy crucifix tilde. Gluten-free fanny pack tote bag. Flexitarian butcher sustainable. Poutine hoodie polaroid.    13625    937    2016-01-24 13:55:15    2016-01-24 13:55:15    1
1762    Craft beer vice art party umami next level ugh. Yr shoreditch chartreuse cronut goth. Trust fund helvetica photo booth diy austin. Migas franzen semiotics locavore.    11726    831    2015-08-15 23:03:55    2015-08-15 23:03:55    1
1763    Pabst thundercats gentrify iphone goth. Farm-to-table kogi banjo lumbersexual vinegar organic art party distillery. Brunch echo diy vinyl.    12631    953    2016-01-05 20:16:08    2016-01-05 20:16:08    1
1764    Beard kogi fap kale chips fashion axe selfies. 3 wolf moon plaid before they sold out mustache. Brunch pour-over drinking cleanse. Bespoke diy celiac. Bicycle rights umami listicle.    10130    512    2015-12-31 23:35:32    2015-12-31 23:35:32    1
1765    Neutra kogi chicharrones bitters leggings. Retro salvia actually meditation franzen ugh. Venmo food truck marfa chambray messenger bag ugh raw denim.    13276    956    2015-12-13 09:15:58    2015-12-13 09:15:58    1
1766    Blog squid retro kickstarter waistcoat pabst kombucha 90's. Sartorial pour-over quinoa occupy poutine. Wayfarers irony skateboard shoreditch fingerstache mlkshk literally direct trade.    14347    579    2016-01-24 01:30:16    2016-01-24 01:30:16    1
1767    Tofu forage asymmetrical farm-to-table. Keffiyeh green juice carry. Flannel trust fund humblebrag skateboard mustache cliche wes anderson 90's. Cray selfies asymmetrical tumblr fingerstache.    10410    513    2015-11-03 19:36:14    2015-11-03 19:36:14    1
1768    Retro pitchfork five dollar toast bicycle rights listicle butcher selvage. Knausgaard retro chambray normcore raw denim food truck chartreuse austin. Blue bottle kombucha celiac jean shorts kitsch. Chia roof hashtag pug letterpress listicle pour-over.    13192    933    2015-06-06 08:54:56    2015-06-06 08:54:56    1
1771    Bicycle rights flexitarian biodiesel mumblecore ugh cleanse. Keytar beard pbr&b venmo 8-bit keffiyeh mixtape blog. Mixtape jean shorts skateboard microdosing vegan. Aesthetic meh pop-up iphone.    10260    769    2016-03-03 13:55:48    2016-03-03 13:55:48    1
1772    Tattooed flexitarian banh mi vice occupy bitters post-ironic. Occupy bushwick whatever 3 wolf moon loko. Literally tumblr kale chips before they sold out next level biodiesel health gastropub. Yolo helvetica ennui seitan drinking jean shorts franzen artisan.    12211    545    2015-05-23 16:39:26    2015-05-23 16:39:26    1
1773    Lumbersexual five dollar toast sriracha sustainable messenger bag biodiesel. Deep v tacos authentic church-key quinoa. Kogi godard distillery bushwick everyday.    15736    848    2015-09-07 10:44:02    2015-09-07 10:44:02    1
1774    Loko you probably haven't heard of them +1 single-origin coffee. Cold-pressed narwhal try-hard health. Chia humblebrag polaroid twee 3 wolf moon.    10728    737    2015-07-17 04:30:31    2015-07-17 04:30:31    1
1775    Taxidermy vinyl brunch five dollar toast meh tacos kinfolk. Helvetica selfies letterpress swag kickstarter stumptown cardigan. Single-origin coffee kogi flannel tote bag chillwave viral fanny pack. Stumptown typewriter vhs gluten-free quinoa pickled. Hella blue bottle cray.    12430    780    2016-01-01 13:52:27    2016-01-01 13:52:27    1
1776    Distillery ennui next level. Artisan banjo wes anderson freegan literally. Wayfarers normcore distillery cronut. Kombucha artisan put a bird on it pitchfork iphone etsy blue bottle crucifix.    18391    946    2015-10-16 02:28:45    2015-10-16 02:28:45    1
1778    Kickstarter loko freegan crucifix yr heirloom lo-fi put a bird on it. Dreamcatcher lumbersexual hella loko actually. Lumbersexual wes anderson single-origin coffee cliche wayfarers humblebrag. Narwhal chillwave deep v locavore semiotics. Umami celiac meh.    12484    732    2016-01-25 01:25:44    2016-01-25 01:25:44    1
1779    Cardigan neutra squid. Offal neutra vhs. Bicycle rights meh schlitz brooklyn kogi gentrify.    12536    852    2015-10-05 03:46:31    2015-10-05 03:46:31    1
1780    Small batch pickled stumptown pitchfork. Cornhole tofu vinyl next level pbr&b dreamcatcher swag small batch. Park +1 craft beer ramps humblebrag. Ugh green juice umami neutra chicharrones shoreditch tousled. Bitters gluten-free portland truffaut.    17742    961    2015-12-22 14:15:19    2015-12-22 14:15:19    1
1782    Next level marfa normcore chambray waistcoat beard banh mi. Pitchfork fanny pack health quinoa cleanse asymmetrical green juice. Slow-carb polaroid artisan sartorial. Polaroid schlitz keytar irony leggings.    13000    844    2016-02-20 07:50:37    2016-02-20 07:50:37    1
1783    Goth mlkshk brunch banh mi post-ironic cray blue bottle readymade. Yr franzen typewriter. Umami swag fashion axe raw denim. Yolo literally chartreuse ethical.    13168    945    2016-01-15 03:22:02    2016-01-15 03:22:02    1
1784    Occupy chillwave taxidermy. Gastropub truffaut chartreuse. Normcore cred kinfolk tousled before they sold out.    13938    692    2015-06-28 10:10:22    2015-06-28 10:10:22    1
1785    Banh mi trust fund franzen kogi. Organic keffiyeh venmo. Iphone fingerstache park venmo yr biodiesel semiotics meggings. Freegan you probably haven't heard of them umami.    13628    652    2016-01-26 01:18:19    2016-01-26 01:18:19    1
1787    Raw denim kale chips vhs biodiesel lomo. Small batch tousled fap twee drinking sriracha meditation. Flannel cornhole banh mi.    10311    578    2016-01-02 15:55:59    2016-01-02 15:55:59    1
1788    Keytar gluten-free lumbersexual small batch forage pbr&b vinyl. Kickstarter vhs direct trade art party cronut whatever chartreuse. Drinking keytar hella pop-up flannel kitsch cronut. Fashion axe tattooed vinegar listicle authentic. Mustache chia food truck humblebrag five dollar toast.    12601    960    2016-02-12 13:05:44    2016-02-12 13:05:44    1
1789    Williamsburg intelligentsia cold-pressed. Tousled hella pinterest forage food truck organic listicle. Paleo irony twee tote bag hammock.    17710    862    2015-07-17 21:04:20    2015-07-17 21:04:20    1
1790    Chartreuse vhs +1 echo. Vinyl irony humblebrag aesthetic raw denim butcher banjo vegan. Dreamcatcher mustache try-hard.    18780    629    2015-06-02 04:27:50    2015-06-02 04:27:50    1
1791    Quinoa beard literally post-ironic single-origin coffee. 8-bit cred pickled photo booth. Ugh freegan you probably haven't heard of them shoreditch small batch.    10837    700    2016-03-29 08:53:21    2016-03-29 08:53:21    1
1792    Beard cleanse banjo kogi irony. Freegan cold-pressed carry. Godard health portland pitchfork jean shorts. Yolo bicycle rights typewriter authentic irony artisan ethical.    16857    833    2016-02-28 04:17:51    2016-02-28 04:17:51    1
1793    Ethical chicharrones portland pop-up helvetica craft beer ugh. Goth carry bicycle rights park selvage. Food truck kickstarter freegan. Humblebrag everyday synth. Actually wes anderson tumblr narwhal austin blog.    11793    592    2015-11-19 00:47:15    2015-11-19 00:47:15    1
1794    Art party seitan austin heirloom keytar 3 wolf moon. Migas direct trade disrupt retro biodiesel flannel kogi. Organic literally roof fingerstache. Selvage chartreuse migas five dollar toast street carry. Vhs mlkshk next level letterpress forage.    15739    933    2015-09-15 16:16:19    2015-09-15 16:16:19    1
1796    Microdosing flannel pbr&b craft beer cleanse. Crucifix asymmetrical pop-up occupy deep v. Actually green juice pabst literally small batch poutine mustache.    13870    512    2015-12-04 01:53:36    2015-12-04 01:53:36    1
1797    Deep v typewriter loko pug readymade keffiyeh mumblecore. Raw denim neutra yr banjo chambray. Green juice salvia kombucha fingerstache taxidermy scenester locavore. Chicharrones mustache leggings asymmetrical tacos hashtag meh heirloom.    10790    526    2016-01-26 18:32:12    2016-01-26 18:32:12    1
1798    Health kale chips yuccie kinfolk. Cronut hoodie trust fund austin migas mustache gentrify. Pbr&b typewriter pinterest actually neutra chambray carry ramps. Quinoa helvetica vinegar mumblecore venmo master. Banjo brooklyn before they sold out gastropub.    13526    639    2016-03-24 01:25:01    2016-03-24 01:25:01    1
1799    Drinking chicharrones fashion axe tacos dreamcatcher truffaut. Small batch viral ugh. Narwhal food truck distillery lumbersexual vinyl kale chips pbr&b.    14531    702    2015-06-25 04:01:05    2015-06-25 04:01:05    1
1800    Sriracha seitan cleanse authentic. Jean shorts aesthetic vinegar shabby chic forage carry. Twee tattooed bicycle rights freegan.    13252    823    2015-08-14 16:16:17    2015-08-14 16:16:17    1
1801    Mlkshk roof before they sold out fingerstache. Everyday poutine bicycle rights health. Kickstarter raw denim austin semiotics. Farm-to-table bushwick pitchfork art party. Selfies semiotics slow-carb sustainable cleanse fingerstache actually kickstarter.    12494    960    2015-07-21 08:51:22    2015-07-21 08:51:22    1
1802    Beard artisan park thundercats aesthetic vice fashion axe. Cliche mumblecore drinking echo mixtape. Pug flannel messenger bag. Mumblecore drinking flexitarian pop-up tacos kickstarter pork belly.    18426    916    2015-07-13 06:46:50    2015-07-13 06:46:50    1
4110    Food truck xoxo everyday austin leggings venmo. Next level hammock irony selfies vegan. Wayfarers viral umami wes anderson offal +1.    16678    747    2015-07-24 19:16:04    2015-07-24 19:16:04    1
1803    Intelligentsia master occupy pork belly photo booth sustainable twee slow-carb. Mumblecore craft beer chicharrones echo cliche single-origin coffee park. Street yuccie pop-up cold-pressed vinyl synth small batch 3 wolf moon. Goth microdosing listicle pork belly health artisan banjo banh mi. Godard sustainable paleo chicharrones goth.    16201    888    2015-12-04 05:02:15    2015-12-04 05:02:15    1
1804    Migas taxidermy vinyl. Mlkshk tote bag drinking loko craft beer carry kombucha street. Chartreuse salvia loko bitters normcore banh mi jean shorts kickstarter.    11846    552    2015-10-30 21:07:12    2015-10-30 21:07:12    1
1806    Bespoke tousled banh mi. Beard lo-fi park shoreditch. Bitters shabby chic jean shorts cardigan franzen sartorial.    11858    704    2016-02-10 09:17:51    2016-02-10 09:17:51    1
1807    Blog iphone swag street kickstarter mustache tofu single-origin coffee. Green juice vinegar chia health. Ethical irony chartreuse cliche knausgaard mumblecore. Slow-carb before they sold out iphone art party mlkshk bushwick echo. Fixie vegan gentrify iphone chillwave cred.    13444    704    2016-03-10 18:12:46    2016-03-10 18:12:46    1
1808    Marfa you probably haven't heard of them kickstarter listicle thundercats green juice whatever single-origin coffee. Synth pour-over authentic salvia vice. Vhs +1 skateboard paleo. 8-bit artisan actually chillwave letterpress gentrify. Etsy pabst kinfolk 3 wolf moon blog gluten-free disrupt bicycle rights.    18053    608    2015-08-20 16:01:19    2015-08-20 16:01:19    1
1809    Typewriter twee art party synth cred bicycle rights organic quinoa. Pop-up bushwick williamsburg. Direct trade taxidermy keytar drinking venmo mumblecore.    15167    576    2015-11-26 01:32:07    2015-11-26 01:32:07    1
1810    Helvetica squid vinegar. Wolf pug keytar bespoke forage. Ugh helvetica echo truffaut. Art party migas butcher yolo helvetica blue bottle intelligentsia. Venmo post-ironic mlkshk distillery heirloom.    18671    817    2015-05-01 22:58:57    2015-05-01 22:58:57    1
1813    Tilde distillery goth blog pbr&b irony master. Loko cleanse farm-to-table organic vice austin hashtag. Distillery vinegar ethical ennui stumptown meh.    10255    925    2015-10-16 19:53:35    2015-10-16 19:53:35    1
1814    Carry etsy viral before they sold out wolf. Brooklyn roof banjo messenger bag. Mixtape occupy swag direct trade fap cray kombucha. Shabby chic tumblr cred microdosing messenger bag wolf. Literally truffaut viral pitchfork blog dreamcatcher brooklyn.    10389    515    2015-08-17 09:58:59    2015-08-17 09:58:59    1
1815    Roof literally trust fund put a bird on it. Gluten-free leggings brooklyn trust fund twee yuccie truffaut roof. Mlkshk brooklyn chambray. Slow-carb truffaut typewriter keytar.    16438    926    2015-10-30 03:42:47    2015-10-30 03:42:47    1
1816    Hashtag beard waistcoat. Post-ironic gentrify craft beer fixie dreamcatcher. Pop-up schlitz aesthetic. Messenger bag fanny pack pabst.    18940    761    2015-10-07 07:22:49    2015-10-07 07:22:49    1
1817    Cronut chicharrones tacos microdosing. Waistcoat helvetica hella brunch tilde echo plaid actually. Leggings cornhole dreamcatcher. +1 pitchfork tousled banjo shoreditch gastropub flannel knausgaard.    12272    692    2016-02-14 21:54:44    2016-02-14 21:54:44    1
1818    Iphone yolo chartreuse kickstarter banjo butcher food truck lo-fi. Chartreuse pour-over celiac chicharrones locavore vegan diy vhs. Slow-carb freegan sartorial tote bag locavore godard letterpress swag. Vinegar roof cred tote bag pork belly single-origin coffee 8-bit 3 wolf moon. Vice semiotics crucifix twee ramps.    10152    785    2015-12-02 19:21:21    2015-12-02 19:21:21    1
1820    Actually twee heirloom small batch celiac scenester. Lomo intelligentsia hashtag. Shabby chic godard kale chips organic cardigan mlkshk thundercats yolo. Hashtag street freegan meh ramps typewriter hoodie. Cray hella craft beer taxidermy heirloom small batch semiotics paleo.    15425    917    2015-11-25 21:17:32    2015-11-25 21:17:32    1
1821    Chicharrones selfies loko mixtape listicle chartreuse biodiesel freegan. Skateboard blog mixtape before they sold out wayfarers. Dreamcatcher keytar whatever godard.    12971    867    2016-04-14 13:10:29    2016-04-14 13:10:29    1
1822    Gastropub shoreditch ugh vhs pabst roof 8-bit. You probably haven't heard of them vhs semiotics meditation. Stumptown tattooed synth lumbersexual.    14681    505    2015-12-23 09:01:18    2015-12-23 09:01:18    1
1823    Lumbersexual kinfolk butcher. Migas craft beer kinfolk fanny pack stumptown iphone kitsch raw denim. Banh mi yuccie fashion axe everyday butcher trust fund ugh mixtape.    14213    571    2015-06-15 11:18:29    2015-06-15 11:18:29    1
1824    Narwhal knausgaard farm-to-table blue bottle flexitarian mixtape chia street. Kitsch typewriter food truck migas slow-carb craft beer. Raw denim letterpress bespoke. Intelligentsia tumblr church-key fap locavore vegan scenester try-hard. 8-bit deep v gluten-free vhs taxidermy green juice mumblecore tacos.    11360    705    2016-02-02 10:22:43    2016-02-02 10:22:43    1
1825    Helvetica umami pabst meditation direct trade chambray fashion axe. Craft beer helvetica locavore normcore kale chips schlitz. Pop-up pickled photo booth food truck.    12703    871    2015-07-08 09:41:32    2015-07-08 09:41:32    1
1826    Tilde meditation neutra authentic kitsch disrupt hammock 90's. Waistcoat artisan readymade xoxo selvage thundercats. Letterpress banh mi xoxo retro sustainable tousled truffaut synth.    12091    526    2016-01-06 04:25:12    2016-01-06 04:25:12    1
1827    Wayfarers letterpress beard. Carry mlkshk beard banh mi cornhole 8-bit. Kombucha fashion axe readymade viral cliche salvia. Irony small batch shoreditch shabby chic. Pop-up drinking distillery.    13067    632    2015-10-24 06:03:37    2015-10-24 06:03:37    1
1991    Readymade meggings schlitz dreamcatcher ramps craft beer forage park. Chartreuse distillery pbr&b. Direct trade narwhal marfa trust fund.    10880    850    2015-10-24 01:00:13    2015-10-24 01:00:13    1
1828    Sustainable five dollar toast everyday irony tattooed put a bird on it pour-over wes anderson. Chillwave organic ethical wes anderson mustache literally heirloom. Direct trade wayfarers skateboard carry kombucha. Loko gastropub squid etsy.    17731    574    2015-08-31 20:50:25    2015-08-31 20:50:25    1
1831    Bicycle rights craft beer brunch salvia post-ironic freegan. Pitchfork kogi keffiyeh tattooed. Taxidermy biodiesel selvage photo booth. Vice leggings listicle jean shorts etsy wolf yolo.    12462    556    2015-12-03 15:08:53    2015-12-03 15:08:53    1
1832    Cliche wes anderson chicharrones thundercats taxidermy hella. Venmo chicharrones fingerstache wayfarers disrupt godard pickled. Chartreuse seitan actually direct trade raw denim pug. Letterpress asymmetrical bitters neutra. Irony meh vegan franzen heirloom ugh asymmetrical cleanse.    12737    603    2015-06-19 22:48:47    2015-06-19 22:48:47    1
1833    Retro godard offal aesthetic leggings fingerstache locavore seitan. Butcher put a bird on it umami banh mi authentic gastropub austin flannel. Chicharrones biodiesel knausgaard fixie shoreditch brooklyn 3 wolf moon cleanse. Echo polaroid 3 wolf moon pour-over iphone pbr&b goth. Chambray typewriter direct trade cornhole yolo vinegar.    14742    815    2015-08-26 12:12:36    2015-08-26 12:12:36    1
1835    Kombucha semiotics thundercats drinking pork belly ethical heirloom. Umami next level kickstarter. Post-ironic pitchfork pop-up banjo salvia pbr&b. Vinyl cleanse mustache brunch park. Franzen cliche cornhole freegan shoreditch venmo twee.    15250    834    2015-08-07 16:11:33    2015-08-07 16:11:33    1
1836    Vinegar pour-over drinking schlitz post-ironic whatever. Intelligentsia pug salvia beard. Chartreuse freegan quinoa slow-carb occupy beard mlkshk. Scenester street xoxo drinking pop-up banjo.    16924    691    2015-11-12 10:16:50    2015-11-12 10:16:50    1
1837    Fixie salvia humblebrag hoodie xoxo chambray master. Humblebrag keytar pug photo booth literally franzen. Chia 3 wolf moon cold-pressed vinyl crucifix goth banjo. Viral direct trade freegan forage. Listicle truffaut hashtag wayfarers.    10135    800    2015-07-04 17:28:12    2015-07-04 17:28:12    1
1838    Seitan cold-pressed twee disrupt wayfarers wolf pbr&b stumptown. Pinterest irony occupy knausgaard tousled cleanse thundercats. Celiac migas chicharrones wayfarers salvia. Gastropub kale chips asymmetrical.    14937    719    2015-04-26 16:26:31    2015-04-26 16:26:31    1
1839    Hashtag everyday +1 waistcoat loko synth normcore pour-over. Food truck +1 aesthetic intelligentsia readymade whatever ramps schlitz. Retro wayfarers you probably haven't heard of them ethical vice. Everyday wolf ethical williamsburg.    18853    616    2015-11-11 00:07:29    2015-11-11 00:07:29    1
1840    Hashtag lomo godard. Migas banh mi chillwave pitchfork tacos humblebrag. Hashtag echo ugh single-origin coffee church-key tofu. Marfa selfies pabst narwhal pbr&b typewriter echo.    14944    546    2015-12-22 00:07:15    2015-12-22 00:07:15    1
1841    Semiotics gluten-free plaid slow-carb. Church-key humblebrag cold-pressed ugh lumbersexual 3 wolf moon narwhal. Cleanse plaid pickled direct trade jean shorts pork belly pbr&b chambray. Yuccie disrupt scenester. Pickled photo booth scenester 90's selfies tilde fingerstache.    11701    732    2015-12-12 22:49:36    2015-12-12 22:49:36    1
1842    +1 cornhole portland. Tilde farm-to-table jean shorts chia try-hard viral knausgaard tote bag. Raw denim banjo listicle green juice pop-up.    16106    494    2015-10-18 12:43:14    2015-10-18 12:43:14    1
1843    Yolo mustache forage letterpress chicharrones selvage dreamcatcher umami. Tote bag raw denim xoxo dreamcatcher cliche. Carry knausgaard taxidermy tousled. Cornhole scenester small batch. Meggings gentrify swag forage tilde.    15778    653    2015-11-16 02:05:56    2015-11-16 02:05:56    1
1844    Lumbersexual gentrify etsy readymade wes anderson kogi tousled. Williamsburg ennui chicharrones normcore butcher. Kinfolk blog squid carry waistcoat celiac gastropub.    14735    712    2015-09-15 06:44:22    2015-09-15 06:44:22    1
1846    Distillery tacos retro cronut readymade. Pinterest church-key gastropub taxidermy. Health hoodie selfies next level cardigan offal. Marfa disrupt tote bag cold-pressed pug.    10938    475    2015-06-05 16:40:58    2015-06-05 16:40:58    1
1847    Vice kinfolk swag before they sold out blue bottle shoreditch. Roof austin tacos messenger bag plaid drinking put a bird on it. Ethical cred meditation.    13087    710    2015-11-17 09:35:23    2015-11-17 09:35:23    1
1848    Narwhal disrupt schlitz mixtape scenester tousled fap. 90's pop-up chartreuse lumbersexual ethical. Mlkshk organic street ethical fanny pack. Portland put a bird on it vinegar poutine celiac hoodie. Cliche everyday wes anderson.    18686    672    2016-03-19 01:49:17    2016-03-19 01:49:17    1
2188    Yr direct trade etsy. Migas meditation fingerstache seitan swag. Fap cornhole tilde. Migas austin quinoa cold-pressed flannel fingerstache yr biodiesel.    12012    536    2015-12-01 00:35:02    2015-12-01 00:35:02    1
1849    Gentrify roof narwhal loko fashion axe pinterest park kale chips. 90's austin microdosing heirloom cronut pickled chartreuse. Post-ironic raw denim iphone chicharrones gluten-free jean shorts. Humblebrag whatever park bicycle rights shabby chic cronut franzen. Plaid tacos pabst put a bird on it.    12926    954    2016-01-21 16:20:15    2016-01-21 16:20:15    1
1850    Helvetica green juice tacos loko pickled. Umami slow-carb pinterest banjo flexitarian diy +1. Gastropub chicharrones loko. Tote bag bespoke portland next level.    16576    927    2016-03-31 13:32:17    2016-03-31 13:32:17    1
1851    Austin viral salvia gentrify 3 wolf moon. Tilde brunch pickled fanny pack. Listicle freegan typewriter gentrify meh sriracha tattooed next level. Whatever shoreditch jean shorts swag. Hoodie cray banjo pop-up fingerstache actually semiotics church-key.    12729    910    2016-03-04 23:31:14    2016-03-04 23:31:14    1
1852    Typewriter microdosing pork belly. Church-key kinfolk tofu fap. Chillwave tacos master direct trade.    16013    637    2016-02-23 22:55:24    2016-02-23 22:55:24    1
1853    Squid farm-to-table paleo quinoa raw denim chambray. Mixtape bespoke meggings tattooed synth kinfolk gastropub shoreditch. Authentic williamsburg hella put a bird on it.    10613    889    2016-04-07 06:25:00    2016-04-07 06:25:00    1
1854    Tousled hella keffiyeh. Pbr&b blog green juice art party you probably haven't heard of them cleanse cornhole. Mustache squid fap.    15537    528    2015-05-09 02:11:34    2015-05-09 02:11:34    1
1855    Intelligentsia microdosing migas quinoa banjo meggings bushwick single-origin coffee. Whatever normcore fanny pack tofu austin chicharrones truffaut schlitz. Everyday post-ironic mumblecore.    18912    835    2015-07-05 19:09:31    2015-07-05 19:09:31    1
1856    Lumbersexual taxidermy pop-up keffiyeh pinterest. Kickstarter bespoke readymade cronut knausgaard pickled polaroid. Gastropub tofu tumblr sustainable fanny pack artisan kitsch meditation. Organic wes anderson raw denim before they sold out echo chicharrones five dollar toast listicle.    12280    688    2015-08-28 00:11:05    2015-08-28 00:11:05    1
1857    8-bit pour-over five dollar toast. Jean shorts fixie vhs plaid quinoa semiotics. Ugh asymmetrical brooklyn fanny pack green juice ethical banjo bicycle rights.    14735    628    2015-11-03 20:53:47    2015-11-03 20:53:47    1
1858    Normcore fingerstache williamsburg bitters scenester locavore. Banh mi microdosing thundercats dreamcatcher pabst direct trade sriracha salvia. Asymmetrical cardigan kale chips wayfarers chartreuse truffaut farm-to-table. Park single-origin coffee gastropub marfa bitters everyday. Forage jean shorts asymmetrical flannel.    11770    718    2015-12-03 10:11:55    2015-12-03 10:11:55    1
1859    Ennui locavore kogi deep v celiac. Xoxo asymmetrical ennui ramps iphone listicle offal. Dreamcatcher poutine occupy plaid raw denim pickled.    17829    574    2015-11-29 20:55:21    2015-11-29 20:55:21    1
1860    Meh artisan ugh hoodie umami. Bicycle rights hella venmo brooklyn schlitz bitters. Literally put a bird on it everyday vice aesthetic synth migas. Chicharrones post-ironic vhs. Artisan pbr&b umami.    10905    511    2015-11-18 08:12:31    2015-11-18 08:12:31    1
1861    Chambray heirloom goth marfa. Viral butcher cliche farm-to-table beard. Vegan sustainable meditation vinegar locavore. Xoxo meditation sustainable mumblecore locavore 90's.    15742    953    2015-10-11 09:50:17    2015-10-11 09:50:17    1
1862    Aesthetic brooklyn marfa mlkshk beard cliche locavore. Knausgaard hella shabby chic tousled. Pug migas chambray you probably haven't heard of them williamsburg seitan. Selfies cred master. Gentrify asymmetrical celiac.    14777    528    2016-03-30 05:15:17    2016-03-30 05:15:17    1
1863    Kitsch sustainable yolo microdosing scenester small batch franzen. Butcher cold-pressed brooklyn pinterest. Irony ramps fap gluten-free actually photo booth. Bespoke flannel letterpress poutine.    16603    526    2015-09-24 13:30:05    2015-09-24 13:30:05    1
1864    Quinoa whatever godard before they sold out park. Health +1 vinegar shabby chic food truck swag yolo. Synth fanny pack waistcoat. Tacos kickstarter aesthetic kitsch pinterest.    10310    623    2015-11-19 14:48:32    2015-11-19 14:48:32    1
1865    Lo-fi williamsburg swag helvetica carry cliche microdosing. Master 8-bit brunch. Viral pitchfork echo locavore fanny pack five dollar toast diy.    12017    742    2015-11-03 06:00:49    2015-11-03 06:00:49    1
1867    Blog mixtape photo booth church-key. Pork belly bushwick tousled sriracha selfies chambray. Venmo viral put a bird on it. Chillwave diy tilde.    18519    552    2015-11-17 23:12:32    2015-11-17 23:12:32    1
1868    Marfa hammock blog keytar. Heirloom humblebrag beard pabst forage vegan carry kickstarter. Flannel direct trade brooklyn pbr&b offal cray. Bitters brunch shoreditch humblebrag.    17564    541    2015-12-27 23:32:56    2015-12-27 23:32:56    1
1869    Typewriter cred park kickstarter banjo disrupt microdosing. Cray bitters kickstarter retro pbr&b. Williamsburg keffiyeh wolf vinegar. Thundercats cleanse distillery plaid lo-fi cray readymade master.    18493    814    2016-03-26 19:36:08    2016-03-26 19:36:08    1
1870    Celiac kinfolk five dollar toast vinyl offal crucifix. Wes anderson blue bottle marfa pug master intelligentsia ethical. Twee cardigan fixie stumptown next level salvia kickstarter vice. Beard paleo aesthetic tofu.    15686    668    2015-04-28 22:28:55    2015-04-28 22:28:55    1
1871    Migas neutra mlkshk. Chartreuse sriracha freegan authentic blue bottle. Keytar 3 wolf moon fap tousled literally.    11117    681    2015-11-28 05:28:10    2015-11-28 05:28:10    1
1872    Godard cardigan cliche. Typewriter street salvia selfies green juice single-origin coffee. Cardigan tote bag art party tofu bushwick mlkshk celiac.    13405    910    2015-11-11 08:23:10    2015-11-11 08:23:10    1
1873    Cleanse sriracha chambray tousled vice try-hard. Brunch vegan selvage craft beer mlkshk keytar slow-carb. Franzen keytar five dollar toast cardigan wayfarers. Beard literally roof ramps yuccie umami.    18325    635    2015-09-02 08:23:36    2015-09-02 08:23:36    1
1875    Everyday pug brunch fashion axe. Gentrify freegan meh vinegar. Cleanse carry tacos chillwave twee pour-over truffaut loko.    17369    548    2015-08-21 16:09:31    2015-08-21 16:09:31    1
1876    Mlkshk actually tofu kogi neutra. Stumptown brunch banh mi quinoa salvia cliche. Keffiyeh godard intelligentsia meggings celiac lumbersexual pinterest. Goth kale chips semiotics shoreditch small batch plaid pbr&b.    15400    531    2015-12-30 11:59:07    2015-12-30 11:59:07    1
1877    Chambray truffaut thundercats etsy tofu kale chips pinterest. Loko bushwick tote bag helvetica umami health. Try-hard post-ironic pinterest truffaut portland intelligentsia lumbersexual blue bottle.    14435    935    2015-05-05 00:48:58    2015-05-05 00:48:58    1
1878    You probably haven't heard of them mlkshk bicycle rights ethical ennui listicle artisan. Freegan cray tilde. Migas vinegar wes anderson.    15767    736    2016-02-16 03:55:19    2016-02-16 03:55:19    1
1879    Tote bag bicycle rights cardigan dreamcatcher migas pork belly hoodie aesthetic. Flannel vinyl blue bottle art party listicle pop-up chartreuse. Freegan wolf ennui. Meh ugh jean shorts try-hard humblebrag paleo dreamcatcher marfa.    14617    571    2016-01-19 04:41:29    2016-01-19 04:41:29    1
1880    Chambray asymmetrical brooklyn. Plaid squid vice forage tumblr. Dreamcatcher kogi raw denim selvage typewriter. Lumbersexual selvage food truck skateboard flexitarian fingerstache plaid normcore.    17248    715    2015-12-10 07:06:03    2015-12-10 07:06:03    1
1881    Pinterest ugh tattooed meh distillery. Tacos pickled kogi paleo five dollar toast sartorial microdosing. Normcore kitsch brunch scenester.    15307    871    2015-06-17 15:25:02    2015-06-17 15:25:02    1
1882    Viral sartorial mumblecore tacos beard etsy small batch echo. Cold-pressed semiotics williamsburg kombucha intelligentsia. Direct trade craft beer squid health cred readymade.    11054    483    2016-04-04 04:16:56    2016-04-04 04:16:56    1
1884    Aesthetic neutra trust fund cleanse pickled kinfolk swag crucifix. Pop-up dreamcatcher typewriter semiotics. Fingerstache quinoa shoreditch cred. Brooklyn diy squid fap offal organic shoreditch. Yr wes anderson pop-up wayfarers keffiyeh asymmetrical cornhole ramps.    12250    655    2015-12-14 00:41:04    2015-12-14 00:41:04    1
1885    Jean shorts quinoa bitters intelligentsia chicharrones. Sartorial kombucha tacos next level crucifix sriracha aesthetic swag. Fap health cliche cold-pressed godard hammock.    14655    541    2015-10-31 01:10:59    2015-10-31 01:10:59    1
1887    3 wolf moon distillery master marfa single-origin coffee brunch. Deep v pork belly venmo vice fap. Chia narwhal swag schlitz sustainable asymmetrical farm-to-table kale chips. Yuccie semiotics retro pabst pinterest microdosing gentrify.    14168    597    2015-06-28 13:06:53    2015-06-28 13:06:53    1
1888    Iphone vice flannel viral shabby chic marfa. Fap hoodie mlkshk pickled. Ennui heirloom authentic lumbersexual organic biodiesel. Typewriter cardigan ethical scenester occupy. Plaid kombucha fanny pack cronut franzen.    18440    587    2015-10-29 08:37:43    2015-10-29 08:37:43    1
1889    Viral heirloom cardigan. Raw denim plaid wolf ramps flannel hashtag direct trade. Lo-fi kale chips fingerstache. Intelligentsia selvage roof humblebrag kitsch sartorial vice kogi. Pork belly flexitarian wes anderson jean shorts semiotics.    17629    511    2016-03-14 19:46:37    2016-03-14 19:46:37    1
1891    Photo booth cardigan next level cray jean shorts loko gluten-free. Forage 90's mixtape freegan knausgaard. Artisan meditation mlkshk. Artisan freegan vinyl williamsburg.    16653    667    2015-12-28 22:19:28    2015-12-28 22:19:28    1
1892    Forage readymade irony kogi. Direct trade cred echo pitchfork heirloom ramps. Food truck five dollar toast meggings fingerstache leggings. Put a bird on it everyday disrupt selfies. Yolo vinegar portland jean shorts sustainable.    16015    683    2015-06-11 00:47:09    2015-06-11 00:47:09    1
1893    Bicycle rights ramps lumbersexual godard cred hella marfa vinegar. Umami bushwick stumptown selfies scenester kombucha offal. Hoodie biodiesel banjo. Everyday loko ramps mlkshk whatever craft beer. Literally narwhal 3 wolf moon keffiyeh selvage wolf everyday.    17203    656    2016-03-26 00:14:30    2016-03-26 00:14:30    1
1894    Iphone vegan bespoke jean shorts. 3 wolf moon ramps small batch retro kinfolk tousled craft beer. Pork belly wayfarers knausgaard waistcoat kitsch craft beer cold-pressed. Brooklyn kale chips gluten-free.    18000    709    2016-03-13 01:11:34    2016-03-13 01:11:34    1
1895    Quinoa distillery waistcoat meditation viral semiotics put a bird on it post-ironic. Seitan scenester raw denim tattooed distillery pbr&b. Poutine photo booth kickstarter.    15048    618    2015-10-23 04:21:03    2015-10-23 04:21:03    1
1896    Plaid readymade thundercats church-key. Authentic selvage skateboard selfies chambray lomo. Raw denim lomo iphone trust fund truffaut pop-up narwhal. Offal meditation heirloom cliche. Kale chips pork belly banh mi vhs typewriter readymade everyday 90's.    15513    780    2015-08-28 11:36:53    2015-08-28 11:36:53    1
1897    Pbr&b stumptown put a bird on it semiotics fashion axe squid fap. Salvia offal forage everyday cardigan flannel godard franzen. Ugh church-key art party banjo health pour-over schlitz. Cliche crucifix intelligentsia portland chia plaid keytar forage. You probably haven't heard of them cray asymmetrical tumblr raw denim seitan migas retro.    14976    658    2015-07-26 03:50:39    2015-07-26 03:50:39    1
1898    Heirloom art party church-key kickstarter crucifix cold-pressed. Put a bird on it pop-up waistcoat trust fund thundercats mustache listicle. Lomo viral selfies tousled put a bird on it diy. Freegan wayfarers disrupt. Mumblecore forage irony marfa.    18397    807    2016-02-04 03:48:11    2016-02-04 03:48:11    1
1899    Small batch heirloom tousled vegan. Farm-to-table shabby chic portland vice small batch sriracha schlitz everyday. Shabby chic portland brooklyn franzen organic gentrify retro. Kitsch lo-fi offal single-origin coffee pbr&b pork belly banjo.    16485    539    2015-05-17 22:47:12    2015-05-17 22:47:12    1
1900    Health cronut yolo celiac kitsch. Street sustainable bitters tattooed migas chillwave. Cold-pressed helvetica twee literally brooklyn microdosing. Butcher leggings beard loko yr dreamcatcher kickstarter you probably haven't heard of them.    17600    530    2015-11-06 17:11:14    2015-11-06 17:11:14    1
1901    Health art party disrupt typewriter selfies. Cred master cray chartreuse truffaut locavore. Next level sriracha raw denim umami.    12096    513    2015-06-18 11:01:13    2015-06-18 11:01:13    1
1903    Retro dreamcatcher knausgaard intelligentsia craft beer narwhal cronut mixtape. Tote bag organic freegan tumblr yuccie diy mixtape selvage. Mixtape chia poutine single-origin coffee. Irony disrupt humblebrag fixie scenester fashion axe actually chicharrones. Fixie schlitz tilde letterpress lumbersexual food truck authentic.    17295    953    2015-12-01 13:33:47    2015-12-01 13:33:47    1
1904    Waistcoat hella sustainable fashion axe biodiesel vinegar. Trust fund raw denim green juice kickstarter locavore. Ramps aesthetic keytar. Shoreditch butcher literally whatever. Wayfarers sriracha whatever truffaut.    17361    591    2015-08-29 20:47:49    2015-08-29 20:47:49    1
1905    Distillery vice tacos franzen fixie mixtape crucifix. Cold-pressed schlitz yuccie knausgaard kogi. Raw denim umami meggings portland heirloom gastropub. Fanny pack mumblecore small batch twee hashtag aesthetic meh.    17976    892    2016-04-02 18:49:09    2016-04-02 18:49:09    1
1906    Quinoa deep v salvia. Fap echo organic messenger bag fashion axe trust fund franzen bespoke. Deep v 90's flexitarian humblebrag art party. Meh tattooed synth carry xoxo small batch franzen.    17121    911    2015-09-24 09:17:52    2015-09-24 09:17:52    1
1907    Trust fund single-origin coffee you probably haven't heard of them fashion axe helvetica banjo pickled. Meditation beard flexitarian vinegar mixtape raw denim. Neutra letterpress microdosing loko. Food truck skateboard pickled vegan.    16732    786    2015-07-13 19:57:06    2015-07-13 19:57:06    1
1908    Kogi biodiesel chicharrones polaroid pork belly irony salvia. Listicle disrupt ugh synth 90's squid loko thundercats. Etsy cornhole godard fashion axe biodiesel church-key.    12995    537    2015-11-09 05:34:15    2015-11-09 05:34:15    1
1909    Intelligentsia squid blue bottle chillwave sriracha synth pitchfork viral. Green juice freegan bitters. Messenger bag chartreuse cardigan art party.    11271    551    2015-04-29 12:25:32    2015-04-29 12:25:32    1
1910    Pickled drinking sustainable kale chips 3 wolf moon put a bird on it meggings offal. Yuccie sartorial readymade aesthetic schlitz next level. Selfies knausgaard vinegar godard 90's ugh. Tofu ennui try-hard pork belly selvage ugh. Locavore quinoa mixtape sriracha typewriter.    16069    485    2015-12-27 23:42:33    2015-12-27 23:42:33    1
1911    Ugh salvia cleanse meggings. Fap franzen fingerstache schlitz austin blog twee gastropub. Microdosing squid portland. Neutra typewriter cronut bitters sartorial. Whatever roof waistcoat humblebrag lomo kinfolk master five dollar toast.    18530    853    2015-10-23 13:29:39    2015-10-23 13:29:39    1
1912    Pickled austin chillwave. Forage heirloom cray. Health waistcoat wayfarers marfa biodiesel messenger bag mumblecore vegan. Crucifix pop-up skateboard craft beer. Offal fashion axe jean shorts selvage mumblecore vinyl brunch.    15154    827    2015-10-16 21:15:49    2015-10-16 21:15:49    1
1913    Fanny pack semiotics salvia gastropub flexitarian church-key umami. Everyday venmo bespoke xoxo pop-up kitsch waistcoat. Photo booth fixie carry bespoke forage cleanse squid. Health fingerstache williamsburg mlkshk literally.    11001    640    2015-07-18 19:51:05    2015-07-18 19:51:05    1
2255    Beard leggings diy slow-carb. Etsy organic ennui. Tousled master cronut lumbersexual artisan.    18811    598    2015-11-16 02:17:53    2015-11-16 02:17:53    1
1914    Mumblecore cred polaroid gentrify green juice echo vice viral. Vice 3 wolf moon readymade tacos. Diy narwhal pop-up before they sold out chillwave kogi park. Next level try-hard iphone. Migas chillwave gluten-free.    18236    866    2015-12-07 08:48:19    2015-12-07 08:48:19    1
1915    Cornhole venmo pug. Everyday typewriter organic pug. Mustache cred single-origin coffee. Roof health selfies mumblecore tattooed meggings.    12301    832    2015-09-27 19:44:45    2015-09-27 19:44:45    1
1916    Roof umami health. Hoodie lomo paleo xoxo before they sold out. Cornhole biodiesel tumblr raw denim roof knausgaard. Heirloom tattooed normcore crucifix street banh mi. Diy mlkshk vinegar narwhal ennui direct trade.    17623    785    2015-06-07 13:01:32    2015-06-07 13:01:32    1
1917    Forage blue bottle umami franzen tousled wolf. Fap migas crucifix neutra small batch etsy photo booth gastropub. Vinegar helvetica pug knausgaard. Helvetica typewriter wes anderson occupy kitsch farm-to-table actually.    16450    946    2016-02-12 14:41:58    2016-02-12 14:41:58    1
1918    Master pop-up leggings. Leggings fap celiac tofu ennui. Mumblecore kitsch blog brooklyn. Poutine vinegar put a bird on it food truck pickled.    14552    593    2016-03-24 07:35:51    2016-03-24 07:35:51    1
1919    Vice marfa ennui cardigan tofu lumbersexual small batch knausgaard. Food truck hashtag yuccie. Typewriter plaid hashtag kombucha chambray slow-carb. Cold-pressed wes anderson keffiyeh tote bag 3 wolf moon celiac pabst.    12299    811    2016-03-13 10:47:26    2016-03-13 10:47:26    1
1921    Vegan actually heirloom occupy. Portland chartreuse etsy hoodie. Migas letterpress everyday. Blog blue bottle echo lomo franzen hashtag cred. Listicle crucifix pabst lomo retro wayfarers iphone.    17658    548    2016-01-14 03:39:01    2016-01-14 03:39:01    1
1922    Viral drinking flannel migas keytar bushwick seitan portland. You probably haven't heard of them 3 wolf moon twee. Distillery sustainable iphone brunch mustache. Before they sold out taxidermy asymmetrical kogi. Keytar ethical squid scenester brunch.    15613    810    2015-07-17 13:09:51    2015-07-17 13:09:51    1
1923    Jean shorts austin mustache. Tumblr portland street. Poutine franzen yr everyday sartorial small batch selfies blog.    14132    569    2016-02-17 01:22:36    2016-02-17 01:22:36    1
1924    Vice quinoa chia godard lomo. Tousled intelligentsia chambray pour-over deep v. Letterpress heirloom portland authentic. Umami forage cliche sustainable literally migas ugh.    10658    696    2016-04-11 22:46:08    2016-04-11 22:46:08    1
1925    Fap vegan intelligentsia leggings chambray. Pour-over kogi semiotics literally typewriter put a bird on it raw denim. Vinyl austin yolo fingerstache. Shoreditch health tattooed selfies brunch banh mi chartreuse thundercats.    16887    906    2015-10-02 05:41:34    2015-10-02 05:41:34    1
1926    Pbr&b brooklyn brunch. Trust fund salvia bitters selvage umami disrupt try-hard readymade. Raw denim flannel seitan heirloom knausgaard cred. Kinfolk cliche plaid biodiesel keffiyeh. Artisan lumbersexual chartreuse messenger bag occupy everyday pug typewriter.    13234    507    2015-10-19 05:17:20    2015-10-19 05:17:20    1
1927    Lumbersexual truffaut dreamcatcher authentic leggings. Kitsch tofu roof. Photo booth selfies pabst meh trust fund. Kombucha vinyl drinking pork belly. Distillery pop-up xoxo ethical five dollar toast.    18431    832    2015-11-15 13:31:36    2015-11-15 13:31:36    1
1928    Selvage park truffaut cred knausgaard. Artisan art party cold-pressed 8-bit waistcoat small batch photo booth street. Etsy banh mi kinfolk. Wolf mustache tousled narwhal squid slow-carb vinyl deep v.    15969    507    2015-08-27 13:34:00    2015-08-27 13:34:00    1
1929    Flexitarian pug lomo before they sold out carry sartorial tattooed. Portland seitan stumptown normcore. Fanny pack wolf vinyl freegan fingerstache. Cred photo booth bicycle rights kombucha. Cronut shabby chic organic disrupt truffaut fashion axe chillwave banh mi.    15645    589    2016-04-13 10:58:51    2016-04-13 10:58:51    1
1931    Ennui yolo next level kickstarter kale chips raw denim chicharrones. Semiotics chartreuse migas offal +1. Narwhal shoreditch waistcoat semiotics kogi ramps blog. Tilde fingerstache cornhole mustache master.    11306    817    2016-02-18 01:08:20    2016-02-18 01:08:20    1
1932    Lomo food truck occupy locavore actually freegan you probably haven't heard of them cliche. Austin brunch pbr&b. Migas mustache small batch next level 90's. +1 occupy pickled dreamcatcher selvage.    10571    595    2016-02-08 06:41:28    2016-02-08 06:41:28    1
1933    Trust fund kitsch blog actually chia leggings retro chillwave. Knausgaard scenester taxidermy diy tote bag dreamcatcher kale chips yr. Chambray lo-fi banjo.    15364    621    2015-11-06 18:12:04    2015-11-06 18:12:04    1
1934    Cliche tote bag semiotics tilde cronut fashion axe bushwick. Squid fashion axe wayfarers pinterest kale chips. Yolo wes anderson knausgaard.    15631    488    2016-03-04 03:02:49    2016-03-04 03:02:49    1
1935    3 wolf moon kinfolk xoxo green juice sartorial park pop-up kitsch. Blue bottle chillwave godard brunch salvia. Vice whatever lo-fi small batch plaid. Mustache helvetica five dollar toast authentic.    13614    727    2015-12-02 03:48:47    2015-12-02 03:48:47    1
1936    Microdosing ethical artisan lo-fi. Franzen etsy cold-pressed goth farm-to-table. Cold-pressed twee you probably haven't heard of them iphone plaid. Tote bag distillery quinoa hella park +1 selvage franzen.    14749    498    2015-08-13 16:15:41    2015-08-13 16:15:41    1
1937    Synth thundercats quinoa waistcoat. Fingerstache salvia park waistcoat +1 keytar selfies etsy. 3 wolf moon sartorial direct trade bespoke kale chips. Cronut gentrify selfies fap artisan.    14754    691    2016-03-03 09:15:02    2016-03-03 09:15:02    1
1938    Banjo meh 8-bit dreamcatcher marfa austin vegan master. Tilde hashtag church-key actually aesthetic chillwave. Asymmetrical fingerstache celiac aesthetic.    16238    877    2015-09-08 13:07:51    2015-09-08 13:07:51    1
1939    8-bit sartorial truffaut put a bird on it waistcoat cornhole viral salvia. Letterpress stumptown authentic asymmetrical actually chia xoxo loko. Swag yr paleo before they sold out.    16806    824    2016-02-15 07:18:54    2016-02-15 07:18:54    1
1940    Brooklyn goth meditation fingerstache next level scenester jean shorts. Salvia yuccie vice letterpress pop-up +1. Poutine waistcoat quinoa stumptown yuccie knausgaard.    16730    558    2015-05-20 20:08:35    2015-05-20 20:08:35    1
1941    Hammock five dollar toast salvia direct trade xoxo. Celiac cornhole diy bespoke shabby chic godard taxidermy. Polaroid ugh narwhal direct trade keytar.    10862    698    2016-04-08 19:02:04    2016-04-08 19:02:04    1
1942    Paleo cred jean shorts letterpress typewriter ethical. Hella flexitarian waistcoat. Hoodie humblebrag bespoke listicle. Kinfolk try-hard stumptown.    15619    780    2015-12-23 06:20:44    2015-12-23 06:20:44    1
1943    Drinking lo-fi pabst pug pork belly kickstarter fingerstache. Lumbersexual banjo whatever fashion axe taxidermy forage heirloom umami. Wes anderson meditation salvia pbr&b fanny pack direct trade lo-fi.    18876    922    2015-12-09 09:59:29    2015-12-09 09:59:29    1
1944    Pitchfork fanny pack authentic xoxo. Park yolo schlitz photo booth brunch yuccie. Whatever pour-over brooklyn bitters seitan before they sold out forage squid.    15416    609    2015-10-15 08:06:11    2015-10-15 08:06:11    1
1946    Artisan helvetica taxidermy wayfarers pug. Pitchfork vhs banh mi bespoke +1 offal. Bespoke scenester gastropub microdosing. Hashtag pop-up next level leggings pour-over bespoke brunch. Direct trade schlitz brooklyn roof blue bottle flannel kale chips.    18346    615    2015-07-02 04:19:08    2015-07-02 04:19:08    1
1947    Gastropub distillery swag roof vhs intelligentsia vinegar lumbersexual. Hella microdosing kickstarter. Shabby chic occupy blue bottle. Disrupt before they sold out vinegar thundercats hella chia asymmetrical.    14549    835    2015-06-30 03:02:01    2015-06-30 03:02:01    1
1948    Retro butcher pop-up brunch carry master. Vegan sartorial ennui chia kickstarter paleo everyday kale chips. Biodiesel small batch waistcoat. Kitsch cleanse humblebrag cornhole lomo vinyl semiotics jean shorts.    15437    721    2015-06-30 22:38:44    2015-06-30 22:38:44    1
1949    Lomo fap farm-to-table. Brunch 90's vhs. Salvia wolf skateboard +1 heirloom humblebrag helvetica kickstarter.    14242    637    2015-05-02 08:26:16    2015-05-02 08:26:16    1
1950    Blog pbr&b fap. Retro narwhal marfa fap health vinyl salvia blog. Bicycle rights bitters yuccie.    11881    526    2015-08-21 17:01:27    2015-08-21 17:01:27    1
1951    Carry squid post-ironic godard. Deep v narwhal pug. Blog intelligentsia pabst. Mlkshk normcore vegan. Bespoke pop-up jean shorts listicle tilde fashion axe readymade.    14744    933    2015-09-02 16:12:43    2015-09-02 16:12:43    1
1952    Park literally chambray. Portland bespoke pitchfork austin etsy loko williamsburg. Paleo hammock microdosing gentrify literally diy kickstarter. Mixtape carry semiotics meggings venmo roof. Tattooed pour-over lumbersexual bushwick brooklyn park.    12416    658    2016-03-14 16:17:21    2016-03-14 16:17:21    1
1953    Iphone carry thundercats cornhole street chillwave. 3 wolf moon slow-carb kinfolk pour-over green juice retro. Mustache put a bird on it pitchfork selvage blog pabst. Cronut thundercats street gentrify kickstarter lomo.    18550    914    2015-09-07 01:26:58    2015-09-07 01:26:58    1
1954    Authentic schlitz bespoke master yr jean shorts pbr&b tilde. Mlkshk everyday flannel freegan street kombucha taxidermy single-origin coffee. Cardigan hella thundercats.    10286    541    2016-01-10 04:56:52    2016-01-10 04:56:52    1
1955    Yuccie butcher microdosing. Blog fingerstache pickled sartorial green juice single-origin coffee cardigan. Art party tilde plaid fap chartreuse.    17457    737    2016-01-28 13:37:13    2016-01-28 13:37:13    1
4568    Mlkshk yuccie cray bicycle rights. Waistcoat tofu yolo xoxo hella fashion axe hashtag. Helvetica gluten-free poutine twee freegan.    16585    882    2015-12-24 19:09:46    2015-12-24 19:09:46    1
1956    Paleo asymmetrical chia put a bird on it carry. You probably haven't heard of them hella next level. Williamsburg skateboard 3 wolf moon park microdosing yr cronut food truck.    11227    761    2015-05-22 01:04:26    2015-05-22 01:04:26    1
1957    Kombucha cred normcore bicycle rights slow-carb irony viral. Cardigan typewriter meh. Pinterest etsy thundercats sriracha lumbersexual.    14209    507    2015-07-12 04:52:25    2015-07-12 04:52:25    1
1990    Deep v neutra bespoke. Fap vinegar plaid. Diy street trust fund distillery vegan ugh squid wayfarers. Master mustache poutine whatever kale chips craft beer vhs intelligentsia. Narwhal try-hard humblebrag post-ironic.    14153    725    2015-12-22 12:08:26    2015-12-22 12:08:26    1
1958    Forage asymmetrical church-key dreamcatcher. Bushwick scenester street locavore selvage chambray. Tote bag normcore next level post-ironic viral street vice small batch. Vegan williamsburg cliche marfa deep v celiac tacos tumblr. Etsy twee brooklyn scenester selfies selvage bicycle rights five dollar toast.    10833    960    2015-12-17 04:55:52    2015-12-17 04:55:52    1
1959    90's godard neutra fanny pack. Loko typewriter cred. Schlitz marfa pinterest cornhole. Flexitarian salvia tilde synth post-ironic yuccie vinyl umami. Kitsch crucifix selfies wayfarers.    12866    523    2015-07-08 16:01:10    2015-07-08 16:01:10    1
1960    Portland cardigan five dollar toast viral gastropub gluten-free. You probably haven't heard of them viral readymade 90's pabst cleanse. Cronut bitters tattooed cold-pressed gastropub slow-carb. Keffiyeh crucifix vinegar church-key banjo health. Normcore asymmetrical messenger bag pinterest brooklyn blog.    12391    602    2015-08-03 13:38:46    2015-08-03 13:38:46    1
1962    Kitsch fingerstache paleo. Meh brunch disrupt mumblecore direct trade poutine health carry. Yolo humblebrag farm-to-table pour-over banjo kickstarter.    11795    486    2015-05-24 03:18:00    2015-05-24 03:18:00    1
1963    Pbr&b craft beer raw denim selfies. Locavore etsy typewriter asymmetrical vegan helvetica lo-fi hashtag. Cardigan austin skateboard ethical small batch meggings actually.    14766    786    2015-05-26 14:16:22    2015-05-26 14:16:22    1
1964    Squid crucifix food truck venmo chicharrones hammock kickstarter. Fingerstache asymmetrical iphone synth. Ethical microdosing try-hard keytar. Irony pork belly jean shorts forage cred. Schlitz food truck church-key sartorial put a bird on it tote bag neutra mlkshk.    17560    632    2015-07-20 08:22:55    2015-07-20 08:22:55    1
1965    Butcher xoxo loko shoreditch beard pour-over. Raw denim letterpress paleo truffaut jean shorts semiotics before they sold out iphone. Crucifix shoreditch fanny pack beard. Blue bottle hella meditation.    17711    809    2016-04-11 00:29:06    2016-04-11 00:29:06    1
1966    +1 kinfolk yuccie deep v viral. Heirloom fixie lomo chambray viral taxidermy hella actually. Sustainable craft beer occupy letterpress kombucha. Actually ennui locavore direct trade green juice tilde retro.    11936    938    2016-04-01 11:50:30    2016-04-01 11:50:30    1
1967    Crucifix cold-pressed vinyl slow-carb. Normcore viral migas distillery kogi craft beer. Occupy cliche tumblr bespoke kombucha direct trade narwhal brooklyn. Vice tacos +1 hammock bicycle rights. Ennui wayfarers vhs mlkshk neutra blue bottle fingerstache tousled.    18006    802    2016-03-31 03:24:10    2016-03-31 03:24:10    1
1968    Migas 3 wolf moon raw denim schlitz aesthetic. Waistcoat normcore kogi. Selfies keffiyeh vinyl venmo. Gentrify cronut semiotics schlitz pork belly. Wayfarers semiotics kickstarter plaid locavore neutra before they sold out wes anderson.    14830    577    2015-06-20 07:28:01    2015-06-20 07:28:01    1
1969    Chicharrones crucifix tacos 3 wolf moon. Venmo meggings blue bottle irony chillwave. Small batch xoxo irony meh 8-bit.    16692    531    2016-04-09 09:19:55    2016-04-09 09:19:55    1
1970    Hammock occupy humblebrag knausgaard thundercats pop-up. Plaid poutine cliche meggings carry jean shorts. Health iphone intelligentsia. Tumblr etsy raw denim cornhole. Photo booth meggings fap cliche.    15497    696    2016-01-30 19:19:50    2016-01-30 19:19:50    1
1971    Pop-up ethical ugh. Park try-hard narwhal mixtape. Kale chips letterpress distillery kombucha craft beer lumbersexual pop-up. Kombucha mumblecore meh kitsch.    14110    732    2015-12-27 04:41:34    2015-12-27 04:41:34    1
1972    Neutra shoreditch selvage. Schlitz everyday keffiyeh salvia etsy. Pug next level distillery lo-fi swag plaid. Selvage street dreamcatcher carry artisan plaid.    17203    919    2016-03-23 12:12:44    2016-03-23 12:12:44    1
1973    Tousled park chia. Kickstarter salvia master pour-over. Wes anderson church-key cliche stumptown park trust fund fashion axe heirloom. Health polaroid whatever. Typewriter sustainable try-hard organic.    12299    765    2016-03-12 15:37:51    2016-03-12 15:37:51    1
1974    Bespoke loko street austin. Chambray celiac squid banh mi put a bird on it letterpress. Tumblr pour-over quinoa small batch williamsburg.    17373    706    2015-06-21 07:02:26    2015-06-21 07:02:26    1
1975    Tilde truffaut umami bicycle rights polaroid +1. Semiotics diy vinegar beard try-hard chia fashion axe. 8-bit pabst lomo tousled pour-over.    14805    919    2016-01-26 00:10:18    2016-01-26 00:10:18    1
1976    Photo booth umami kitsch marfa fingerstache disrupt cred leggings. Roof dreamcatcher literally tilde bespoke. Brunch crucifix gastropub seitan heirloom five dollar toast cronut.    11226    781    2015-11-17 04:20:39    2015-11-17 04:20:39    1
1977    Lumbersexual flannel kinfolk. Umami actually polaroid shoreditch. Bespoke gentrify franzen.    12611    697    2015-10-13 02:00:47    2015-10-13 02:00:47    1
1979    Selfies stumptown cray meggings mumblecore cliche. Before they sold out jean shorts cronut xoxo polaroid butcher slow-carb wes anderson. Deep v wayfarers bespoke hashtag small batch marfa pabst food truck. 90's yr lo-fi deep v tote bag typewriter.    13737    675    2015-05-10 15:11:35    2015-05-10 15:11:35    1
1981    Chartreuse occupy brooklyn pug sustainable heirloom. Green juice bicycle rights plaid 3 wolf moon. Umami deep v kitsch kickstarter.    11766    579    2015-06-17 23:29:05    2015-06-17 23:29:05    1
1982    Kale chips tattooed cliche typewriter biodiesel butcher godard. Chillwave biodiesel tilde pinterest vhs sustainable normcore bespoke. Helvetica you probably haven't heard of them selfies keffiyeh typewriter organic williamsburg celiac. Carry kinfolk actually. Austin ugh chia.    14688    851    2015-12-11 21:12:11    2015-12-11 21:12:11    1
1983    Migas heirloom fap plaid park letterpress celiac five dollar toast. 3 wolf moon ennui pickled leggings. Try-hard yolo sriracha kogi banh mi stumptown. Actually wolf hella beard banh mi goth cliche.    17991    929    2016-01-25 01:31:48    2016-01-25 01:31:48    1
1984    Locavore wes anderson yolo chartreuse. Actually williamsburg godard ethical kinfolk blog salvia. Organic chambray schlitz echo godard blog portland aesthetic. Butcher tumblr chambray tousled knausgaard. Echo neutra jean shorts hashtag gastropub health wayfarers blue bottle.    17265    673    2016-01-05 10:06:48    2016-01-05 10:06:48    1
1985    Scenester retro celiac vinyl pinterest put a bird on it. Small batch trust fund tote bag godard vice pop-up banh mi. Meh kickstarter truffaut authentic. Beard aesthetic diy food truck.    13042    501    2015-10-16 02:32:21    2015-10-16 02:32:21    1
1986    Selfies five dollar toast church-key brunch humblebrag ramps deep v. Godard selvage salvia typewriter crucifix. Truffaut 3 wolf moon letterpress paleo. Whatever sustainable distillery swag.    12034    473    2015-11-28 10:10:58    2015-11-28 10:10:58    1
2146    Forage whatever actually thundercats pop-up squid cray. Chia kale chips austin cronut kickstarter craft beer. Ramps shabby chic mumblecore.    11947    684    2016-04-09 17:23:29    2016-04-09 17:23:29    1
1987    Gluten-free xoxo listicle synth. Health squid artisan. Try-hard mixtape five dollar toast cliche leggings park vice yolo. Blue bottle yuccie schlitz meditation raw denim everyday wes anderson.    13619    629    2016-03-09 19:03:29    2016-03-09 19:03:29    1
1988    Lomo migas bushwick chia locavore vinegar. Schlitz etsy bushwick normcore tofu quinoa lo-fi humblebrag. Sustainable pork belly before they sold out cleanse. Photo booth keytar flannel heirloom. Umami meh ugh pickled.    11556    945    2016-02-04 09:03:25    2016-02-04 09:03:25    1
1989    Wayfarers listicle disrupt. Actually readymade mixtape. Chia umami migas. Master yuccie direct trade humblebrag semiotics portland.    10367    858    2016-04-04 16:29:59    2016-04-04 16:29:59    1
1992    Tacos narwhal microdosing locavore slow-carb. Chia meditation deep v pbr&b try-hard. Pour-over tumblr viral godard meditation schlitz. Kombucha retro ugh helvetica church-key. Brunch kombucha 3 wolf moon art party.    11773    884    2015-08-24 03:46:28    2015-08-24 03:46:28    1
1993    Mixtape bushwick chillwave flannel 8-bit bespoke. Locavore distillery skateboard fixie. Ramps vegan art party kale chips chartreuse pug meditation intelligentsia. Godard polaroid chartreuse cleanse. Waistcoat irony ethical keytar chicharrones.    17225    536    2015-09-25 10:43:37    2015-09-25 10:43:37    1
1994    Neutra fixie +1. Kogi xoxo forage. Cronut vhs thundercats park messenger bag austin literally green juice.    14049    729    2016-04-11 15:03:01    2016-04-11 15:03:01    1
1995    Craft beer hella seitan hammock. Tote bag everyday disrupt. Slow-carb polaroid tattooed.    16309    857    2016-02-13 04:07:23    2016-02-13 04:07:23    1
1996    Single-origin coffee dreamcatcher williamsburg cleanse. Heirloom selvage roof small batch kickstarter. Cray authentic biodiesel pickled fingerstache church-key wolf synth. Artisan polaroid godard. Ennui squid cray tattooed occupy listicle synth before they sold out.    18659    560    2015-07-29 19:43:28    2015-07-29 19:43:28    1
1997    Slow-carb vice vinegar. Farm-to-table yolo hella tilde asymmetrical humblebrag. Vhs readymade letterpress austin knausgaard. Venmo cliche yr. Readymade green juice fixie whatever gentrify.    15131    916    2015-08-10 01:20:53    2015-08-10 01:20:53    1
1998    Photo booth food truck tacos crucifix cornhole. Vinyl umami normcore. Whatever green juice pabst. Loko brooklyn pop-up offal 90's next level gentrify schlitz. Flannel lumbersexual vice authentic deep v franzen.    10484    680    2015-12-29 18:21:08    2015-12-29 18:21:08    1
2000    Vice beard farm-to-table migas cliche. Fap cliche hella intelligentsia. Butcher ennui keffiyeh helvetica health. Vegan listicle fingerstache tilde post-ironic.    12593    488    2015-12-11 01:40:45    2015-12-11 01:40:45    1
2001    Forage mlkshk williamsburg biodiesel tilde readymade put a bird on it. Yr quinoa put a bird on it. Fixie 3 wolf moon biodiesel lomo.    18725    478    2016-03-15 17:55:45    2016-03-15 17:55:45    1
2002    Crucifix paleo master austin freegan sustainable. Disrupt lumbersexual bespoke plaid kinfolk sriracha selfies letterpress. Readymade fashion axe seitan xoxo distillery twee cronut bespoke. Deep v crucifix lomo. Try-hard five dollar toast ramps.    10949    872    2015-09-11 04:05:26    2015-09-11 04:05:26    1
2003    Migas tacos plaid neutra pickled banh mi iphone. Irony craft beer butcher authentic. Before they sold out heirloom loko echo wolf. Ennui pbr&b gentrify hoodie hashtag flannel twee.    11208    472    2015-06-25 03:46:35    2015-06-25 03:46:35    1
2004    Thundercats viral seitan jean shorts lo-fi irony. Asymmetrical echo plaid humblebrag typewriter marfa neutra. Yr truffaut kickstarter deep v everyday carry shabby chic. Meggings raw denim squid hella pickled organic tilde.    11387    516    2015-10-09 08:41:34    2015-10-09 08:41:34    1
2005    Deep v tote bag organic. Loko bespoke trust fund mlkshk taxidermy. Kombucha bespoke everyday master. Viral tumblr butcher pitchfork hoodie vegan food truck.    11439    849    2015-08-13 01:17:03    2015-08-13 01:17:03    1
2006    Ugh flexitarian cornhole sartorial wayfarers. Squid echo raw denim readymade cleanse. Sriracha organic vhs hashtag. Selfies vegan authentic. Pickled vinyl locavore truffaut pabst thundercats.    18898    896    2015-08-02 23:44:42    2015-08-02 23:44:42    1
2007    Pug chillwave squid. Echo swag small batch. Chia bitters banjo crucifix goth meggings cold-pressed wolf. Organic godard keytar.    10676    471    2015-05-31 02:33:40    2015-05-31 02:33:40    1
2008    Goth schlitz banh mi mustache sustainable waistcoat offal. Put a bird on it pitchfork lomo. Migas meggings lomo asymmetrical semiotics thundercats mustache vhs. Bespoke direct trade tumblr butcher tacos leggings fanny pack.    16725    702    2016-01-11 05:12:00    2016-01-11 05:12:00    1
2009    Wayfarers hammock readymade small batch authentic. Mustache green juice freegan cliche. Marfa dreamcatcher cold-pressed chillwave bespoke selvage before they sold out. Heirloom food truck etsy. Kale chips 3 wolf moon letterpress.    17383    772    2015-07-03 05:23:10    2015-07-03 05:23:10    1
2010    Migas etsy cleanse. Iphone single-origin coffee mumblecore hella hashtag vhs truffaut. Cold-pressed pickled 8-bit intelligentsia fashion axe swag shoreditch green juice. Post-ironic squid viral synth leggings flexitarian yolo. Banjo raw denim listicle paleo.    12066    610    2015-11-21 13:29:54    2015-11-21 13:29:54    1
2011    Tote bag keytar poutine photo booth five dollar toast. Street wolf fashion axe. Photo booth pour-over vhs trust fund blue bottle microdosing everyday letterpress. Bushwick artisan seitan banh mi kitsch mlkshk.    18024    559    2015-06-28 07:27:25    2015-06-28 07:27:25    1
2287    Normcore distillery tumblr pug. Squid church-key ugh portland wes anderson. Kinfolk kombucha vegan.    10942    740    2016-02-16 03:50:24    2016-02-16 03:50:24    1
2012    Echo occupy food truck cleanse iphone wes anderson gastropub twee. Fingerstache semiotics post-ironic umami viral cliche typewriter. Banjo chambray yolo. Butcher meditation biodiesel mixtape.    16916    767    2016-03-04 01:21:40    2016-03-04 01:21:40    1
2013    Chambray you probably haven't heard of them wes anderson disrupt try-hard skateboard park ethical. Scenester waistcoat 3 wolf moon. Literally cleanse everyday butcher tattooed readymade.    11789    737    2015-11-03 21:13:25    2015-11-03 21:13:25    1
2014    Bitters try-hard green juice brunch thundercats flexitarian banh mi fingerstache. Tousled chicharrones gentrify mumblecore skateboard. Freegan deep v sartorial intelligentsia. Cornhole ethical locavore blue bottle. Etsy salvia listicle vice iphone leggings.    11142    657    2015-11-18 11:07:10    2015-11-18 11:07:10    1
2015    Drinking gentrify pitchfork butcher. Letterpress irony kombucha meh jean shorts quinoa. Letterpress migas kombucha crucifix biodiesel irony banjo tofu.    15604    710    2015-10-29 10:39:28    2015-10-29 10:39:28    1
2016    Wes anderson blog aesthetic vhs. Meh kickstarter humblebrag dreamcatcher iphone put a bird on it polaroid. Occupy chambray put a bird on it butcher vinyl. Health listicle marfa 90's forage. Intelligentsia authentic single-origin coffee microdosing kombucha listicle.    15883    665    2015-11-27 18:26:32    2015-11-27 18:26:32    1
2017    Chia drinking bitters pug literally messenger bag everyday. Thundercats cleanse vhs master tousled. Schlitz sartorial hoodie tacos hammock. Before they sold out marfa lomo fanny pack. Butcher cleanse hammock.    18931    698    2016-02-07 12:58:05    2016-02-07 12:58:05    1
2019    Chia hashtag meditation post-ironic fanny pack blog five dollar toast skateboard. Fingerstache small batch waistcoat kitsch diy seitan actually selvage. Ugh whatever put a bird on it shabby chic tilde forage.    13258    918    2016-01-27 06:30:52    2016-01-27 06:30:52    1
2020    Gastropub fingerstache microdosing meggings vinegar thundercats sartorial chillwave. Cleanse biodiesel meh. Flannel hella cray cronut.    11104    463    2015-11-25 15:13:18    2015-11-25 15:13:18    1
2021    Lo-fi schlitz church-key pop-up gentrify brooklyn organic. Kale chips freegan asymmetrical. Gentrify leggings shabby chic godard. Pickled tousled wolf seitan leggings knausgaard. Church-key wayfarers yuccie.    10756    692    2015-05-11 15:08:14    2015-05-11 15:08:14    1
2022    Truffaut direct trade pop-up thundercats. Shabby chic squid cleanse park ugh. Yuccie umami goth small batch. Wes anderson blog waistcoat lomo offal authentic.    15803    799    2015-10-12 04:44:44    2015-10-12 04:44:44    1
2024    Yuccie wolf stumptown church-key ennui venmo typewriter. Williamsburg deep v +1. Messenger bag keffiyeh yolo pug viral bespoke. Plaid xoxo freegan put a bird on it kombucha migas chambray iphone. Tattooed tilde ugh forage.    14407    958    2015-07-11 21:50:09    2015-07-11 21:50:09    1
2025    Mixtape shabby chic hammock heirloom tote bag viral tousled 3 wolf moon. Heirloom 8-bit fanny pack kinfolk squid. Vegan messenger bag kinfolk seitan occupy vhs.    14135    567    2015-09-09 11:37:39    2015-09-09 11:37:39    1
2026    Sustainable raw denim keytar meggings. Bicycle rights offal small batch before they sold out. Vhs iphone polaroid austin direct trade pour-over biodiesel selfies.    11504    481    2015-11-01 14:49:59    2015-11-01 14:49:59    1
2027    Cornhole ethical direct trade yr hella helvetica. Semiotics gentrify 3 wolf moon iphone 8-bit. Craft beer austin tousled yolo ramps. Viral ramps humblebrag tumblr vhs church-key.    11184    839    2016-01-12 18:45:32    2016-01-12 18:45:32    1
2028    Tumblr pabst asymmetrical stumptown. Try-hard pbr&b tumblr. Wolf slow-carb venmo wayfarers yr cleanse. Crucifix sustainable lo-fi. Chicharrones blog tofu skateboard gastropub cornhole distillery.    16450    625    2016-03-07 07:12:25    2016-03-07 07:12:25    1
2029    Yolo bicycle rights messenger bag. Meh cornhole aesthetic 3 wolf moon thundercats. Listicle readymade kinfolk neutra meditation kombucha.    17131    685    2016-02-08 20:10:56    2016-02-08 20:10:56    1
2030    Vegan taxidermy squid trust fund tote bag everyday single-origin coffee whatever. Chicharrones loko gastropub scenester portland keffiyeh. Lumbersexual shoreditch shabby chic. Stumptown poutine fixie lumbersexual.    12532    627    2015-07-17 05:13:40    2015-07-17 05:13:40    1
2032    Deep v distillery viral 8-bit. Organic neutra echo hashtag bitters 3 wolf moon pinterest tote bag. Bicycle rights brunch neutra craft beer goth vice marfa. Yr readymade cred hoodie. Tousled direct trade kinfolk cliche art party chillwave cred +1.    18700    923    2015-06-26 23:52:38    2015-06-26 23:52:38    1
2034    Pop-up humblebrag kogi cleanse freegan. Cray typewriter helvetica. Salvia trust fund fanny pack health poutine.    18433    509    2016-01-08 23:00:02    2016-01-08 23:00:02    1
2035    Art party goth craft beer whatever banjo. Five dollar toast neutra pour-over ugh hella sriracha. Mixtape food truck cray crucifix plaid raw denim offal. Wolf blue bottle goth vinegar.    12044    536    2015-05-19 23:20:14    2015-05-19 23:20:14    1
2036    Ramps ugh mustache umami. Plaid meggings food truck irony fixie godard cold-pressed yr. Synth bitters hammock. Craft beer humblebrag mustache swag artisan whatever tote bag. Five dollar toast retro leggings beard farm-to-table occupy 8-bit.    13886    586    2015-05-09 03:21:05    2015-05-09 03:21:05    1
2037    Disrupt next level iphone. Scenester helvetica normcore gluten-free photo booth letterpress wolf retro. Asymmetrical polaroid sartorial. Pop-up cray swag craft beer typewriter actually 90's.    14268    681    2015-08-01 01:01:14    2015-08-01 01:01:14    1
2038    Fixie helvetica intelligentsia. Farm-to-table meditation waistcoat lumbersexual chia intelligentsia. Green juice crucifix thundercats roof wes anderson craft beer hammock. Craft beer vice williamsburg pug poutine celiac. Lomo semiotics taxidermy put a bird on it.    15105    602    2016-01-22 06:08:15    2016-01-22 06:08:15    1
2040    Vice sustainable goth waistcoat seitan wolf craft beer. Deep v art party fingerstache carry wolf keytar. Marfa umami godard +1 meditation poutine echo.    16071    754    2015-07-29 02:38:59    2015-07-29 02:38:59    1
2042    Iphone meditation forage. Knausgaard seitan gentrify selfies sartorial. Pug tacos literally health. Mustache swag banjo. Whatever hashtag bushwick.    11586    612    2015-08-08 23:35:38    2015-08-08 23:35:38    1
2043    Master put a bird on it quinoa sustainable migas vhs. Semiotics ethical blue bottle celiac letterpress dreamcatcher. Tattooed pug cornhole shoreditch actually vegan. Slow-carb quinoa pork belly scenester wes anderson. Banh mi brunch etsy next level mlkshk single-origin coffee leggings chicharrones.    12365    592    2016-02-03 05:25:57    2016-02-03 05:25:57    1
2044    Farm-to-table banjo 3 wolf moon goth deep v readymade wayfarers. Pork belly cray roof vegan iphone. Put a bird on it actually meh etsy whatever bitters blog pbr&b.    11638    806    2015-05-27 04:19:50    2015-05-27 04:19:50    1
2045    Tumblr kitsch narwhal blog. Paleo roof pickled deep v diy ethical ramps. Gentrify post-ironic put a bird on it art party echo leggings listicle gastropub. Fingerstache stumptown mlkshk hoodie post-ironic offal everyday vinegar.    12178    811    2015-05-13 00:55:29    2015-05-13 00:55:29    1
2046    Tilde post-ironic neutra skateboard umami vinegar migas. Irony helvetica mixtape wolf chartreuse try-hard intelligentsia austin. Jean shorts loko bushwick yr stumptown.    13094    912    2015-04-28 22:17:37    2015-04-28 22:17:37    1
2047    Lumbersexual small batch goth. Pork belly hashtag deep v distillery biodiesel. Stumptown small batch celiac church-key jean shorts messenger bag.    15980    491    2015-10-11 00:52:12    2015-10-11 00:52:12    1
2048    Tousled forage offal put a bird on it art party. Kitsch taxidermy pickled. Flexitarian disrupt cold-pressed pork belly trust fund.    13082    778    2015-12-26 15:13:59    2015-12-26 15:13:59    1
2049    Everyday humblebrag +1 aesthetic. Shabby chic knausgaard gastropub small batch microdosing craft beer. Bicycle rights narwhal gentrify ugh semiotics knausgaard. Portland synth health kombucha. Gastropub skateboard heirloom.    12012    779    2015-09-22 20:20:52    2015-09-22 20:20:52    1
2050    Cardigan thundercats pug cold-pressed skateboard messenger bag. Neutra slow-carb marfa authentic put a bird on it goth humblebrag cold-pressed. Leggings yr direct trade. Xoxo keffiyeh bicycle rights. Occupy neutra normcore jean shorts fap humblebrag selfies.    13241    878    2015-08-12 05:56:07    2015-08-12 05:56:07    1
2051    Carry flannel polaroid normcore tacos. Tumblr tousled whatever humblebrag church-key bicycle rights put a bird on it vice. Mustache food truck wayfarers photo booth schlitz. Drinking mlkshk scenester. Godard pug intelligentsia wolf franzen disrupt street 8-bit.    18360    758    2015-06-10 05:24:09    2015-06-10 05:24:09    1
2052    Chillwave street scenester cronut synth vhs. Pinterest chambray trust fund sustainable thundercats cray. Ethical blue bottle franzen chicharrones vice church-key ennui. Retro blue bottle tattooed ugh forage fashion axe polaroid pop-up.    15621    574    2015-08-22 20:56:25    2015-08-22 20:56:25    1
2053    Chicharrones neutra intelligentsia jean shorts wayfarers 3 wolf moon. Portland fashion axe helvetica marfa tousled heirloom. Tacos trust fund twee messenger bag carry banh mi small batch hella. Diy humblebrag portland viral artisan austin scenester.    18163    490    2015-12-14 13:39:27    2015-12-14 13:39:27    1
2054    Xoxo kale chips skateboard cred. Quinoa dreamcatcher kogi. Deep v cornhole wolf fap umami listicle iphone. Ennui trust fund semiotics.    12813    504    2015-11-09 16:21:45    2015-11-09 16:21:45    1
2055    Pabst meh art party food truck cold-pressed thundercats etsy. Loko food truck raw denim wolf pbr&b. Asymmetrical tofu humblebrag health.    17526    919    2016-02-25 08:18:44    2016-02-25 08:18:44    1
2056    Kombucha gastropub butcher food truck loko 90's. Authentic pop-up listicle. Pork belly retro truffaut. Hella hashtag fashion axe portland. Tilde waistcoat gastropub echo.    10506    675    2015-05-15 02:46:58    2015-05-15 02:46:58    1
2057    Put a bird on it vhs normcore diy. Heirloom flannel yuccie 3 wolf moon echo. Health ugh messenger bag.    12937    644    2015-07-06 00:06:18    2015-07-06 00:06:18    1
2058    Flannel 90's ennui etsy ethical fap fanny pack kombucha. Actually typewriter blog. Wes anderson xoxo cleanse post-ironic disrupt health. Tote bag thundercats williamsburg. Poutine everyday hella meditation truffaut park thundercats.    10808    521    2016-04-16 12:03:53    2016-04-16 12:03:53    1
2164    Post-ironic gluten-free godard bespoke locavore. Crucifix tacos chillwave stumptown drinking iphone. Cardigan put a bird on it beard lumbersexual diy goth. Post-ironic cray cliche meggings bicycle rights vhs keffiyeh.    11325    908    2015-11-27 04:16:41    2015-11-27 04:16:41    1
2059    Crucifix hashtag selfies occupy distillery. Tofu occupy cray hashtag waistcoat. Keytar chambray portland farm-to-table park bushwick photo booth. Chicharrones mumblecore sustainable ethical. Iphone normcore paleo mlkshk cronut waistcoat narwhal meggings.    14479    816    2016-02-28 00:24:04    2016-02-28 00:24:04    1
2060    Butcher flannel food truck bitters flexitarian park stumptown. Williamsburg kinfolk pinterest art party iphone retro letterpress. Pop-up wolf helvetica typewriter flannel deep v.    12691    498    2015-09-25 02:49:42    2015-09-25 02:49:42    1
2061    Yuccie austin ennui chartreuse before they sold out selvage scenester. Drinking diy pickled cleanse venmo. Fanny pack irony pour-over.    10902    765    2016-04-10 00:43:41    2016-04-10 00:43:41    1
2062    Post-ironic microdosing craft beer tote bag photo booth. Gastropub scenester chillwave. Scenester selfies everyday knausgaard readymade health vice keffiyeh. Chia kombucha blog tumblr flexitarian cray. Letterpress pork belly thundercats yr.    10789    527    2015-05-22 07:12:39    2015-05-22 07:12:39    1
2063    Polaroid mustache locavore. Messenger bag roof gentrify five dollar toast portland hashtag chia. Loko vinegar photo booth sartorial readymade. 90's bitters small batch vice.    12530    781    2016-02-07 05:33:52    2016-02-07 05:33:52    1
2064    Stumptown trust fund occupy organic. Banjo before they sold out messenger bag. Ramps dreamcatcher humblebrag tumblr before they sold out chambray. Knausgaard tousled pickled. Irony sustainable ugh cliche gluten-free.    11233    466    2015-12-24 19:33:23    2015-12-24 19:33:23    1
2065    Green juice tacos fixie dreamcatcher hashtag taxidermy. Tote bag deep v etsy yr direct trade. Raw denim chambray pour-over waistcoat diy meh. Stumptown wes anderson jean shorts.    13686    594    2015-11-06 04:24:13    2015-11-06 04:24:13    1
2068    Typewriter marfa sustainable 8-bit try-hard mustache carry. Single-origin coffee fixie actually before they sold out. Chambray raw denim vice viral. 3 wolf moon pug kickstarter humblebrag kale chips marfa disrupt ramps. Kickstarter flannel whatever sustainable blue bottle ethical williamsburg.    10259    496    2016-02-26 23:18:48    2016-02-26 23:18:48    1
2069    Gastropub pop-up brooklyn beard offal. Offal cronut ennui readymade banjo. Tofu narwhal lomo.    10487    948    2015-10-28 01:49:49    2015-10-28 01:49:49    1
2070    Vinegar heirloom kitsch beard. Bespoke cray kitsch meh ennui cliche. Authentic normcore gastropub cray scenester. Pitchfork ennui typewriter whatever organic.    14523    943    2015-09-06 17:00:09    2015-09-06 17:00:09    1
2072    Salvia chartreuse ramps poutine craft beer semiotics. Carry keffiyeh hella. Authentic tilde cornhole salvia mlkshk brunch occupy swag.    12253    837    2015-06-12 08:56:01    2015-06-12 08:56:01    1
2073    Chambray helvetica venmo 3 wolf moon wolf. Fingerstache forage pour-over williamsburg fap etsy. Cray keffiyeh xoxo yuccie deep v scenester ugh.    12446    921    2015-05-01 01:03:32    2015-05-01 01:03:32    1
2074    Five dollar toast gastropub neutra normcore blue bottle franzen godard tacos. Before they sold out waistcoat seitan disrupt kale chips. Hammock 8-bit sartorial literally skateboard health irony.    10654    727    2015-06-26 08:41:25    2015-06-26 08:41:25    1
2075    Portland gluten-free lo-fi. Pickled raw denim leggings meditation keffiyeh photo booth cardigan bicycle rights. Forage tattooed etsy ramps meh echo listicle pabst. Umami chia pug banjo asymmetrical.    13530    729    2015-06-30 11:11:47    2015-06-30 11:11:47    1
2076    Chambray mlkshk waistcoat. Semiotics kickstarter williamsburg flexitarian park master taxidermy godard. Kitsch salvia dreamcatcher.    10050    683    2015-05-11 21:05:32    2015-05-11 21:05:32    1
2077    Aesthetic intelligentsia salvia meggings vhs microdosing cold-pressed. Fanny pack hoodie authentic. Authentic health intelligentsia chia neutra tousled. Banh mi viral brunch pour-over kickstarter waistcoat cleanse gluten-free.    16253    724    2015-11-19 06:55:16    2015-11-19 06:55:16    1
2078    Art party 8-bit ethical biodiesel. Stumptown tote bag neutra poutine. Franzen kogi organic mlkshk portland cronut distillery chicharrones.    15696    738    2016-03-20 04:28:46    2016-03-20 04:28:46    1
2079    Brunch 8-bit vice franzen health lumbersexual seitan. Portland narwhal street. Butcher kale chips fashion axe. Microdosing stumptown gastropub fixie. Organic pabst cardigan.    14730    913    2016-04-06 05:51:30    2016-04-06 05:51:30    1
2080    Taxidermy cred thundercats wes anderson pabst. Swag tacos venmo goth heirloom. Food truck intelligentsia organic marfa banjo microdosing yr flannel.    17980    465    2016-04-03 18:53:39    2016-04-03 18:53:39    1
2081    Trust fund ethical austin wolf mixtape. Migas post-ironic roof. Mumblecore blue bottle kinfolk hoodie godard viral skateboard schlitz.    14684    726    2016-02-11 20:51:55    2016-02-11 20:51:55    1
2082    Forage sartorial before they sold out post-ironic pabst kinfolk pug scenester. Helvetica echo chambray. Seitan lumbersexual squid kickstarter gentrify salvia.    14735    822    2015-09-26 09:20:18    2015-09-26 09:20:18    1
2083    Scenester bespoke kale chips sartorial skateboard cold-pressed biodiesel park. Butcher dreamcatcher jean shorts flannel taxidermy aesthetic heirloom. Pop-up health whatever literally lomo.    15242    566    2015-10-10 04:25:39    2015-10-10 04:25:39    1
2084    Tumblr pug tote bag shoreditch messenger bag pickled ramps hashtag. Before they sold out kitsch pour-over humblebrag. Polaroid godard actually master meggings celiac normcore retro. Direct trade cornhole photo booth vice pabst schlitz. Hoodie vice plaid quinoa aesthetic whatever.    13901    602    2016-01-14 17:26:37    2016-01-14 17:26:37    1
2085    Park vegan +1. Distillery stumptown wayfarers blog microdosing. Vhs brooklyn gluten-free. Cleanse brunch polaroid skateboard banjo. Keffiyeh artisan knausgaard locavore asymmetrical everyday.    18347    547    2015-06-04 01:08:08    2015-06-04 01:08:08    1
2086    Green juice forage bicycle rights gastropub freegan seitan. Viral hashtag cronut polaroid farm-to-table scenester. Roof bespoke swag vinyl portland leggings yuccie pabst. Raw denim gentrify squid tote bag letterpress migas gastropub messenger bag.    16851    826    2015-10-25 06:48:57    2015-10-25 06:48:57    1
2087    Cliche blue bottle fap dreamcatcher roof church-key. Lo-fi cray chicharrones messenger bag chillwave bicycle rights. Fashion axe street intelligentsia narwhal next level hella. Blog irony pitchfork.    18357    812    2015-05-19 11:07:16    2015-05-19 11:07:16    1
2088    Knausgaard yr portland photo booth. Cold-pressed vhs ramps. Blue bottle tote bag cred. Forage roof health small batch banjo kitsch offal.    14448    727    2015-10-21 16:04:28    2015-10-21 16:04:28    1
2089    Wayfarers master pinterest vhs keffiyeh. 3 wolf moon viral sustainable ennui before they sold out poutine. Chambray jean shorts banjo cardigan 3 wolf moon 90's. Williamsburg keffiyeh ennui wolf gentrify viral shoreditch wayfarers.    12183    633    2016-01-28 20:31:12    2016-01-28 20:31:12    1
2090    Mustache migas tacos bitters etsy. Taxidermy vegan franzen drinking lomo viral ethical. Shabby chic xoxo scenester gluten-free humblebrag messenger bag tousled fanny pack. Chillwave actually scenester banh mi butcher umami cronut.    17931    491    2015-09-07 10:46:16    2015-09-07 10:46:16    1
2091    Deep v helvetica brunch typewriter gastropub chartreuse. Pork belly waistcoat lumbersexual humblebrag selfies normcore brunch. Forage lumbersexual austin craft beer.    15664    572    2016-04-07 07:16:09    2016-04-07 07:16:09    1
2092    Fashion axe iphone bitters mlkshk dreamcatcher fixie. Meditation crucifix trust fund williamsburg pabst 8-bit. Ethical irony green juice. Direct trade synth shoreditch plaid. Mlkshk organic chia synth.    17115    664    2015-11-10 08:30:54    2015-11-10 08:30:54    1
7504    Asymmetrical dreamcatcher williamsburg celiac franzen. Fanny pack waistcoat chia try-hard. Iphone xoxo fanny pack.    10744    949    2015-09-05 01:24:39    2015-09-05 01:24:39    1
2093    Stumptown helvetica typewriter pbr&b portland cred. Direct trade seitan bitters chia artisan viral. Tacos irony listicle dreamcatcher. Ennui taxidermy viral forage single-origin coffee whatever listicle. Celiac messenger bag crucifix.    16827    558    2015-05-14 22:14:37    2015-05-14 22:14:37    1
2094    Pork belly hella semiotics yuccie marfa swag pop-up. Carry banh mi park trust fund hella flannel. Helvetica butcher pinterest 8-bit sriracha synth.    14743    811    2016-04-01 07:13:41    2016-04-01 07:13:41    1
2096    Ennui pitchfork kitsch occupy cronut goth yuccie. Paleo vegan xoxo ugh lumbersexual cronut squid. Cold-pressed locavore hella goth health. Fap try-hard roof taxidermy 3 wolf moon. Neutra austin blue bottle lomo fixie bespoke pickled keffiyeh.    18289    741    2015-11-17 07:12:50    2015-11-17 07:12:50    1
2097    Squid cold-pressed freegan mlkshk plaid. Cliche forage fashion axe thundercats +1. Marfa salvia gluten-free butcher whatever. Cold-pressed stumptown venmo hella ennui flannel.    11465    816    2015-10-31 23:52:48    2015-10-31 23:52:48    1
2098    Park pug lo-fi schlitz jean shorts blog. Drinking typewriter vegan pinterest 90's. Five dollar toast disrupt flannel pug. Typewriter bicycle rights literally keffiyeh. Cred yuccie cronut single-origin coffee.    16703    495    2016-01-22 21:03:48    2016-01-22 21:03:48    1
2101    Kale chips pork belly tofu tousled before they sold out taxidermy. Squid cleanse scenester vice wayfarers master single-origin coffee keytar. Single-origin coffee kogi stumptown.    10258    836    2016-04-09 10:38:59    2016-04-09 10:38:59    1
2102    Ennui literally cronut chicharrones hammock readymade swag. Swag typewriter godard chicharrones. Cleanse seitan chartreuse tousled williamsburg ramps. Deep v twee leggings tacos sartorial kombucha cleanse flannel.    16087    836    2016-01-04 18:24:36    2016-01-04 18:24:36    1
2103    Mumblecore ramps godard gastropub. Austin organic vinyl quinoa green juice fap. Vinyl tilde ugh swag jean shorts kombucha williamsburg chambray.    11077    600    2015-09-10 19:04:50    2015-09-10 19:04:50    1
2104    Selfies raw denim chia hella artisan twee knausgaard echo. Waistcoat direct trade hoodie beard. Pop-up single-origin coffee banh mi wes anderson fanny pack hella lo-fi. Echo lo-fi before they sold out chambray.    15058    645    2015-07-12 00:06:51    2015-07-12 00:06:51    1
2105    Offal keffiyeh trust fund mlkshk flannel franzen pbr&b. Umami jean shorts post-ironic direct trade. Wolf occupy artisan trust fund 3 wolf moon thundercats. Normcore vinegar keffiyeh cornhole mumblecore pitchfork letterpress. Kickstarter lomo cred chia slow-carb flexitarian.    18032    507    2015-09-24 11:39:29    2015-09-24 11:39:29    1
2107    Mumblecore helvetica bitters carry swag. Literally fingerstache marfa quinoa farm-to-table ennui park ramps. Gastropub kale chips selvage tilde authentic kickstarter chillwave. Pabst vegan tote bag. Mumblecore kitsch chillwave flannel try-hard.    15945    463    2015-06-12 22:21:25    2015-06-12 22:21:25    1
2108    Bicycle rights selfies five dollar toast fixie kitsch bespoke art party pinterest. Scenester sustainable synth meditation freegan. Scenester stumptown 8-bit blog listicle craft beer. Squid quinoa you probably haven't heard of them lomo slow-carb semiotics. Diy slow-carb tumblr.    12905    737    2015-10-14 07:48:13    2015-10-14 07:48:13    1
2109    Fingerstache meh godard marfa farm-to-table vhs. Swag you probably haven't heard of them small batch venmo lo-fi roof pbr&b. Diy organic lo-fi. Gastropub wayfarers plaid fingerstache distillery cliche beard. Sriracha hella seitan small batch.    16627    571    2015-11-11 00:34:35    2015-11-11 00:34:35    1
2110    Semiotics fap offal vinyl freegan shabby chic try-hard. Drinking try-hard master thundercats keffiyeh goth bespoke. Helvetica cardigan neutra.    13157    685    2015-08-21 07:09:49    2015-08-21 07:09:49    1
2111    Pitchfork stumptown yuccie etsy humblebrag. Quinoa vhs crucifix. Actually deep v scenester direct trade yuccie. Celiac deep v cliche crucifix godard tousled thundercats.    12847    474    2016-02-18 15:46:35    2016-02-18 15:46:35    1
2112    Migas gluten-free sustainable shabby chic readymade. Direct trade lumbersexual synth. Lumbersexual xoxo cardigan food truck flannel tumblr church-key. Typewriter austin migas.    15635    716    2015-09-08 22:48:49    2015-09-08 22:48:49    1
2113    Asymmetrical vhs austin biodiesel intelligentsia dreamcatcher shoreditch. Put a bird on it salvia roof poutine. Authentic franzen kickstarter readymade.    14932    903    2016-03-03 11:53:15    2016-03-03 11:53:15    1
2114    Stumptown umami sustainable ethical listicle truffaut yolo selfies. Lomo fixie keffiyeh. Taxidermy health neutra. Actually cray raw denim drinking meditation. Gluten-free five dollar toast paleo pork belly.    16091    761    2016-02-12 14:47:21    2016-02-12 14:47:21    1
2115    Kogi flannel wayfarers street. Kitsch stumptown small batch +1. Keytar hella cronut.    13210    910    2015-10-11 14:22:26    2015-10-11 14:22:26    1
2116    Bespoke forage brunch occupy pbr&b. Photo booth schlitz everyday diy meh. Bushwick distillery viral before they sold out everyday kogi irony tote bag. Messenger bag cred gentrify paleo twee waistcoat diy. Banjo microdosing kale chips waistcoat lumbersexual.    18954    864    2015-07-06 06:09:44    2015-07-06 06:09:44    1
2117    Keytar disrupt pork belly deep v. Waistcoat craft beer master kinfolk distillery. Fixie small batch asymmetrical put a bird on it seitan tumblr.    15376    719    2015-09-24 19:06:12    2015-09-24 19:06:12    1
2118    Meditation neutra cronut messenger bag skateboard hammock viral umami. Gastropub iphone locavore asymmetrical bitters drinking disrupt hoodie. Cronut art party freegan waistcoat heirloom pour-over ugh shabby chic. Bicycle rights drinking listicle wayfarers scenester kale chips. Bespoke master viral quinoa goth seitan.    18741    584    2016-04-04 13:00:53    2016-04-04 13:00:53    1
2119    90's shoreditch helvetica you probably haven't heard of them next level. Disrupt roof tofu schlitz gentrify sriracha butcher blue bottle. Raw denim pour-over gentrify trust fund franzen next level.    14971    503    2015-05-22 18:54:33    2015-05-22 18:54:33    1
2120    Bicycle rights raw denim deep v crucifix roof. Yr beard chia paleo salvia small batch. Paleo mustache wes anderson. Everyday flexitarian leggings vice deep v polaroid roof biodiesel. Banh mi hella dreamcatcher craft beer loko.    18976    557    2015-05-30 22:18:07    2015-05-30 22:18:07    1
2121    Craft beer thundercats humblebrag. Keytar lumbersexual pinterest diy gastropub shoreditch food truck. Quinoa iphone cleanse ugh helvetica try-hard. Heirloom banjo actually shabby chic umami meh tote bag. Crucifix franzen farm-to-table mlkshk forage.    10356    798    2015-11-22 03:34:35    2015-11-22 03:34:35    1
2122    Pickled marfa chartreuse sustainable. Deep v kogi jean shorts yuccie. Farm-to-table ethical fanny pack.    16860    769    2015-08-31 18:19:01    2015-08-31 18:19:01    1
2123    Scenester pitchfork actually. Waistcoat hella goth kitsch. Ennui actually craft beer. Sustainable cleanse quinoa ramps banjo neutra selfies loko.    17659    473    2015-06-19 21:04:57    2015-06-19 21:04:57    1
2125    Gluten-free 3 wolf moon vegan before they sold out chicharrones messenger bag vice kogi. Squid fashion axe mlkshk seitan. Tousled cardigan pug five dollar toast chartreuse franzen paleo bushwick. Ennui typewriter single-origin coffee pop-up cray polaroid franzen. Listicle venmo put a bird on it stumptown deep v bespoke cleanse.    17354    593    2015-12-27 11:23:56    2015-12-27 11:23:56    1
2127    Iphone health stumptown. Flexitarian retro artisan scenester migas pop-up. Kombucha letterpress stumptown tote bag asymmetrical microdosing chartreuse carry.    13214    687    2015-05-31 01:06:56    2015-05-31 01:06:56    1
2735    Pitchfork portland tattooed street readymade migas. Chartreuse squid narwhal tousled venmo ramps blog photo booth. Vhs venmo yuccie ennui artisan food truck.    18661    871    2016-04-16 04:09:08    2016-04-16 04:09:08    1
2128    Butcher bespoke microdosing meggings cronut brunch next level. Sustainable semiotics cred tacos. Skateboard cray echo ugh fap park leggings. Church-key mixtape williamsburg park pickled ethical banjo forage. Pinterest occupy freegan chillwave.    11871    741    2015-05-08 18:17:04    2015-05-08 18:17:04    1
2129    Waistcoat cardigan taxidermy. Gentrify quinoa street everyday. Brunch literally locavore franzen cold-pressed taxidermy pork belly. Dreamcatcher viral goth.    16523    777    2015-10-17 18:41:28    2015-10-17 18:41:28    1
2130    Thundercats before they sold out ennui biodiesel austin. Gastropub street yolo. Vinyl franzen food truck viral. Banh mi scenester street pinterest.    18904    513    2015-05-24 17:32:14    2015-05-24 17:32:14    1
2132    Helvetica hoodie echo ethical. Pitchfork letterpress gluten-free keffiyeh pop-up fashion axe pickled. Venmo twee lumbersexual fap sustainable. Pop-up lomo gluten-free next level wes anderson mustache scenester. Post-ironic jean shorts meh thundercats food truck.    10001    870    2015-06-28 09:05:22    2015-06-28 09:05:22    1
2133    Microdosing single-origin coffee freegan farm-to-table humblebrag tacos etsy. Everyday lo-fi iphone butcher pickled raw denim. Leggings microdosing carry biodiesel single-origin coffee flexitarian. Gluten-free normcore tousled. Whatever brooklyn wolf.    12557    698    2015-12-01 14:28:35    2015-12-01 14:28:35    1
2134    Flexitarian williamsburg tote bag franzen polaroid locavore. Venmo literally fingerstache. Sriracha sartorial stumptown.    13998    851    2016-03-07 20:18:51    2016-03-07 20:18:51    1
2135    Pork belly biodiesel williamsburg. Iphone gluten-free photo booth venmo vinyl. Listicle stumptown ramps mumblecore small batch. Celiac franzen shoreditch.    15200    801    2015-12-06 20:44:34    2015-12-06 20:44:34    1
2136    Mixtape bespoke hella kinfolk small batch meh kombucha. Yuccie raw denim slow-carb bitters cronut 90's farm-to-table. Mixtape iphone chicharrones pabst cliche.    11056    640    2015-12-01 02:35:06    2015-12-01 02:35:06    1
2137    Fingerstache selfies farm-to-table ramps bushwick venmo. Typewriter portland photo booth mixtape butcher gentrify sartorial. Lo-fi locavore cliche five dollar toast irony fixie. Literally salvia austin park cornhole stumptown kinfolk kombucha.    18056    780    2016-03-09 08:36:08    2016-03-09 08:36:08    1
2138    Mlkshk godard park shabby chic cleanse offal. Microdosing messenger bag migas blue bottle venmo five dollar toast kale chips street. Disrupt mlkshk gluten-free selfies single-origin coffee.    12412    641    2015-09-16 20:04:58    2015-09-16 20:04:58    1
2140    Loko everyday lumbersexual vegan schlitz. Next level vinyl pour-over lumbersexual heirloom ugh portland 3 wolf moon. Readymade roof cray venmo pour-over letterpress vegan.    12447    876    2015-04-25 15:44:43    2015-04-25 15:44:43    1
2141    90's kombucha brunch put a bird on it farm-to-table gastropub vegan. Fixie selvage kombucha iphone williamsburg retro cred ramps. Hella knausgaard forage raw denim chicharrones chia lo-fi blue bottle.    13373    777    2016-02-14 17:16:42    2016-02-14 17:16:42    1
2142    8-bit intelligentsia pop-up. Mumblecore tumblr fashion axe austin umami brunch bespoke leggings. Pickled pop-up crucifix.    11548    741    2016-03-08 10:59:50    2016-03-08 10:59:50    1
2143    Kitsch pabst chia photo booth disrupt 90's. Cleanse chia twee. Kale chips stumptown hoodie.    14488    510    2016-03-30 17:19:49    2016-03-30 17:19:49    1
2144    Intelligentsia cray waistcoat tote bag irony venmo. Craft beer cleanse before they sold out tilde bitters tumblr hashtag normcore. Messenger bag helvetica poutine freegan bespoke direct trade humblebrag.    14537    545    2016-04-18 13:31:46    2016-04-18 13:31:46    1
2147    Lomo brunch ramps seitan. Goth vice banjo waistcoat art party carry typewriter bitters. Artisan sartorial waistcoat actually next level. Neutra yuccie bicycle rights. Actually humblebrag fashion axe everyday pabst blog plaid.    10493    687    2015-08-30 12:42:51    2015-08-30 12:42:51    1
2148    Knausgaard marfa organic intelligentsia chartreuse green juice. Five dollar toast whatever squid freegan. Humblebrag irony ugh. Yolo crucifix humblebrag xoxo butcher everyday.    14507    691    2015-10-13 19:25:51    2015-10-13 19:25:51    1
2149    Asymmetrical dreamcatcher cornhole. Disrupt selvage stumptown. Keffiyeh vice neutra. Authentic forage bushwick. Master flexitarian ennui seitan bushwick hammock disrupt pop-up.    18459    731    2015-08-14 00:16:48    2015-08-14 00:16:48    1
2150    Street vice forage pitchfork. Bicycle rights green juice jean shorts shabby chic literally. Cray slow-carb forage synth locavore.    16598    840    2015-11-21 21:16:22    2015-11-21 21:16:22    1
2151    Bespoke truffaut cold-pressed selvage schlitz microdosing. Thundercats direct trade church-key kombucha master. Five dollar toast pabst chillwave whatever try-hard aesthetic mlkshk vegan.    14849    545    2016-03-26 01:45:35    2016-03-26 01:45:35    1
2152    Waistcoat paleo kinfolk irony skateboard. Food truck pickled tousled chillwave messenger bag venmo 3 wolf moon helvetica. Swag heirloom vice five dollar toast. Offal semiotics before they sold out tofu. Vegan cronut hella banh mi sartorial health skateboard.    18838    801    2015-06-02 01:26:14    2015-06-02 01:26:14    1
2153    Diy meh whatever tote bag intelligentsia. You probably haven't heard of them kogi truffaut. Wolf hammock dreamcatcher literally narwhal mustache fap kinfolk. Fingerstache echo pop-up migas flannel. Cold-pressed fap pinterest.    18702    765    2016-02-23 13:12:30    2016-02-23 13:12:30    1
3614    Meh typewriter fashion axe. Irony you probably haven't heard of them roof. Kogi lo-fi schlitz roof thundercats cliche crucifix.    11298    938    2015-08-09 12:16:16    2015-08-09 12:16:16    1
2154    Selfies next level meditation photo booth. Austin cliche biodiesel. Portland yr ennui. Cold-pressed mixtape leggings pbr&b cleanse salvia. Dreamcatcher cardigan microdosing humblebrag pork belly tofu you probably haven't heard of them beard.    17514    942    2015-09-03 19:50:21    2015-09-03 19:50:21    1
2155    Cronut knausgaard kogi williamsburg. Keytar yolo tacos organic food truck cred. Aesthetic keffiyeh asymmetrical heirloom franzen.    15125    594    2015-10-04 05:46:58    2015-10-04 05:46:58    1
2156    Goth asymmetrical microdosing bushwick next level cray meh distillery. Health echo skateboard chicharrones. Banjo pabst retro actually blue bottle.    12412    723    2015-11-16 10:15:43    2015-11-16 10:15:43    1
2157    Austin hammock literally umami food truck bushwick. Wolf goth pop-up. Iphone plaid five dollar toast kinfolk yr lo-fi.    14308    949    2015-04-27 08:20:20    2015-04-27 08:20:20    1
2158    Heirloom xoxo knausgaard normcore cardigan farm-to-table waistcoat. Yuccie beard gluten-free art party jean shorts next level. Narwhal 3 wolf moon literally flannel.    16153    704    2015-09-04 02:44:31    2015-09-04 02:44:31    1
2159    Park put a bird on it twee keffiyeh. Austin tilde meggings. Church-key 3 wolf moon tattooed lomo kitsch selvage seitan try-hard.    10112    689    2015-05-06 18:45:09    2015-05-06 18:45:09    1
2161    Wolf fap meggings schlitz pitchfork. Letterpress venmo pabst dreamcatcher locavore seitan. Poutine bicycle rights readymade photo booth scenester blog vinyl skateboard. Salvia pour-over bicycle rights kale chips health.    11974    583    2015-09-10 23:16:32    2015-09-10 23:16:32    1
2162    Pop-up cardigan thundercats godard hammock. Tote bag shabby chic tousled. Sustainable goth twee tacos squid. Tofu everyday pitchfork. Meh gastropub semiotics kale chips craft beer ennui everyday.    15046    889    2015-12-11 18:45:17    2015-12-11 18:45:17    1
2163    Disrupt semiotics swag kale chips cold-pressed photo booth biodiesel. Drinking cred brooklyn health polaroid. Vegan xoxo art party chicharrones yr park slow-carb. Cred meditation williamsburg celiac neutra etsy fingerstache. Master franzen small batch bespoke offal.    13819    691    2015-06-26 07:06:45    2015-06-26 07:06:45    1
2166    Freegan umami organic. Literally five dollar toast normcore seitan ethical lo-fi art party 90's. Plaid beard selfies dreamcatcher lo-fi paleo marfa direct trade.    10358    583    2016-02-12 19:02:47    2016-02-12 19:02:47    1
2167    Blue bottle retro small batch kombucha thundercats put a bird on it. Five dollar toast craft beer yolo hella 3 wolf moon plaid flexitarian. Park art party selfies kinfolk chia portland hella crucifix. Farm-to-table asymmetrical cronut. Vinyl church-key butcher.    10118    727    2015-06-15 07:14:32    2015-06-15 07:14:32    1
2168    Direct trade hashtag freegan fingerstache you probably haven't heard of them. Stumptown 3 wolf moon hella tousled literally. Post-ironic cray hella listicle. Tote bag heirloom mixtape park forage. Mustache beard messenger bag banjo dreamcatcher schlitz polaroid organic.    16785    662    2015-07-16 10:44:06    2015-07-16 10:44:06    1
2169    Salvia authentic kale chips umami art party single-origin coffee hoodie bushwick. Ramps tousled try-hard health viral crucifix. Thundercats mustache deep v retro chia skateboard carry church-key. Mustache ennui fingerstache sustainable photo booth ramps roof godard. Whatever occupy fingerstache cred etsy marfa locavore chicharrones.    11810    467    2016-01-08 06:09:11    2016-01-08 06:09:11    1
2170    Humblebrag health mumblecore typewriter goth. Mustache church-key tattooed. Normcore venmo brooklyn bushwick neutra vegan vinyl.    14602    659    2016-03-03 10:03:40    2016-03-03 10:03:40    1
2171    Umami intelligentsia banjo. Occupy polaroid messenger bag plaid austin fashion axe. Narwhal listicle cliche sriracha cronut. Selfies ugh hashtag cronut migas. Fixie stumptown flexitarian.    17294    554    2015-09-13 15:46:27    2015-09-13 15:46:27    1
2173    Migas post-ironic distillery keffiyeh salvia. Tattooed 3 wolf moon seitan. Pinterest selvage bushwick letterpress neutra shabby chic post-ironic health. Mixtape literally swag chicharrones blog whatever chambray chartreuse.    11709    646    2015-09-04 00:14:05    2015-09-04 00:14:05    1
2174    Loko beard aesthetic hammock cred synth wolf. Chambray cray salvia yolo. Xoxo austin pickled vegan. Messenger bag pinterest beard shabby chic cardigan. Chambray church-key semiotics tousled migas gentrify.    16140    495    2016-04-18 09:53:05    2016-04-18 09:53:05    1
2175    Forage biodiesel readymade lo-fi bushwick. Shoreditch viral cronut fixie iphone butcher. You probably haven't heard of them cronut intelligentsia direct trade knausgaard put a bird on it.    12522    910    2015-08-04 03:30:10    2015-08-04 03:30:10    1
2176    Ethical cray pug before they sold out chicharrones dreamcatcher. Gastropub celiac pitchfork chambray authentic. Chartreuse you probably haven't heard of them street yolo plaid knausgaard. Yr twee chia squid occupy kombucha tumblr. Vinegar farm-to-table salvia.    16173    910    2016-01-12 20:57:21    2016-01-12 20:57:21    1
2177    Meggings godard butcher helvetica. Bitters cornhole park heirloom. Hashtag brooklyn craft beer 90's trust fund biodiesel shabby chic mustache. Occupy pbr&b gluten-free wes anderson fingerstache artisan lomo. Listicle drinking 90's hammock fanny pack echo.    18604    789    2016-03-12 03:21:07    2016-03-12 03:21:07    1
2179    Direct trade lumbersexual fanny pack. Raw denim sustainable hashtag vice seitan. Roof disrupt chambray lumbersexual cliche scenester meh. Biodiesel iphone food truck. Ethical mixtape loko.    10309    678    2016-01-06 22:04:55    2016-01-06 22:04:55    1
2180    Organic skateboard brunch literally plaid. Bespoke whatever cardigan etsy flexitarian cray park trust fund. 90's disrupt tumblr echo xoxo.    11713    548    2015-04-29 01:59:27    2015-04-29 01:59:27    1
2181    Lomo wolf shabby chic readymade art party health humblebrag normcore. Ugh truffaut 3 wolf moon kogi keytar cold-pressed drinking selfies. Microdosing ramps beard celiac. Semiotics salvia fap. Everyday fanny pack whatever health mumblecore fixie.    12079    482    2015-06-13 00:58:36    2015-06-13 00:58:36    1
2182    Typewriter chambray blog tote bag pug hoodie. Marfa yuccie diy. Ramps food truck kinfolk dreamcatcher sartorial cold-pressed pabst cronut. Skateboard meggings crucifix schlitz. Gentrify master etsy fashion axe food truck mumblecore.    12732    648    2015-09-20 04:14:40    2015-09-20 04:14:40    1
2183    Tote bag marfa paleo park franzen. Truffaut ramps pickled. Small batch austin readymade chartreuse normcore lumbersexual roof.    14884    845    2015-08-03 11:59:18    2015-08-03 11:59:18    1
2184    Craft beer vice messenger bag beard stumptown ramps. Stumptown semiotics irony leggings truffaut distillery disrupt gentrify. Banh mi actually artisan. Vice cronut chicharrones iphone squid kale chips pour-over humblebrag. Synth mustache intelligentsia franzen next level.    16220    663    2015-05-22 06:34:50    2015-05-22 06:34:50    1
2185    Chia pitchfork cronut pop-up. Vegan mumblecore keytar actually cornhole. Swag mustache five dollar toast typewriter artisan ugh yolo mumblecore. Jean shorts meggings distillery normcore diy pop-up actually. Lomo fingerstache readymade synth dreamcatcher cold-pressed.    17716    640    2015-08-22 20:56:25    2015-08-22 20:56:25    1
2187    Lomo artisan pug hella cardigan wayfarers helvetica sriracha. Single-origin coffee distillery ugh schlitz freegan banjo hammock neutra. Lomo chambray etsy literally kombucha pug helvetica.    10027    742    2015-08-11 06:31:29    2015-08-11 06:31:29    1
2189    Marfa keytar biodiesel wes anderson jean shorts hashtag chia post-ironic. Biodiesel bespoke cornhole cardigan umami meh artisan chia. Next level occupy literally. Gluten-free pour-over tousled pitchfork messenger bag disrupt. Jean shorts venmo pickled roof sustainable echo cold-pressed chillwave.    17425    554    2015-08-04 05:56:54    2015-08-04 05:56:54    1
2190    Fap yr ennui shabby chic heirloom dreamcatcher street. Dreamcatcher slow-carb raw denim. Seitan mustache food truck. +1 cray gluten-free ethical bitters. Cardigan selfies small batch fingerstache mumblecore.    15023    551    2016-02-04 18:11:43    2016-02-04 18:11:43    1
2192    Waistcoat try-hard celiac. Carry freegan schlitz 8-bit selvage offal master keffiyeh. Vice street pabst park humblebrag cleanse. Fingerstache wolf etsy semiotics humblebrag vegan. Venmo squid humblebrag bicycle rights next level.    10759    701    2015-10-04 10:58:02    2015-10-04 10:58:02    1
2193    Park gentrify food truck celiac. Locavore cliche messenger bag paleo. Twee chillwave 90's iphone vhs. Yr street small batch craft beer fanny pack try-hard.    15244    812    2015-08-11 22:59:15    2015-08-11 22:59:15    1
2194    Bicycle rights banh mi trust fund letterpress 3 wolf moon. Butcher marfa kickstarter hella retro forage artisan. Cleanse drinking trust fund post-ironic thundercats fixie. Xoxo hoodie put a bird on it dreamcatcher scenester. Post-ironic semiotics fashion axe narwhal literally direct trade.    16607    899    2015-08-14 16:31:58    2015-08-14 16:31:58    1
2195    Godard letterpress pitchfork flannel intelligentsia. Poutine 3 wolf moon umami master 90's chartreuse +1. Jean shorts freegan tote bag franzen. Etsy food truck waistcoat cold-pressed cliche keytar farm-to-table. Forage hammock 8-bit.    15748    825    2015-08-14 03:22:09    2015-08-14 03:22:09    1
2197    Mlkshk synth umami bitters tilde tofu yuccie pitchfork. Ennui carry pug street fashion axe vice wayfarers tattooed. Cornhole wes anderson kickstarter. Yolo neutra xoxo salvia polaroid tofu. Organic scenester chambray bicycle rights.    15662    619    2015-11-12 03:00:19    2015-11-12 03:00:19    1
2198    Tattooed fap heirloom. Shoreditch quinoa post-ironic. Umami synth letterpress kogi loko. Normcore forage umami bespoke. Retro hoodie bushwick narwhal salvia kickstarter venmo.    17264    705    2015-12-06 03:04:34    2015-12-06 03:04:34    1
2235    Direct trade banjo vinegar humblebrag. Bushwick helvetica roof leggings. Godard pour-over deep v umami health messenger bag irony. 8-bit small batch single-origin coffee cliche kombucha fanny pack franzen hashtag.    14746    726    2015-10-29 11:28:09    2015-10-29 11:28:09    1
2199    Viral vegan next level gentrify 90's master skateboard. Post-ironic chillwave skateboard pork belly 90's xoxo before they sold out. Carry occupy bespoke hashtag. Bitters 3 wolf moon blue bottle meggings diy microdosing health post-ironic. Jean shorts artisan pork belly actually bushwick.    18230    761    2016-03-11 07:12:14    2016-03-11 07:12:14    1
2200    Messenger bag yuccie crucifix. Kombucha roof selvage lo-fi banjo shabby chic. Pinterest pabst church-key. Irony twee health. Scenester occupy jean shorts.    18438    917    2015-09-24 16:31:05    2015-09-24 16:31:05    1
2202    Goth put a bird on it heirloom narwhal venmo. Dreamcatcher cardigan umami deep v distillery asymmetrical offal. Whatever hammock mixtape mumblecore intelligentsia locavore chicharrones. Bespoke raw denim park.    15386    750    2016-01-14 05:09:33    2016-01-14 05:09:33    1
2203    Church-key flexitarian xoxo taxidermy humblebrag. Mixtape kale chips chillwave synth ugh keffiyeh helvetica. Neutra lo-fi messenger bag austin cray raw denim bespoke. Whatever single-origin coffee health trust fund sustainable selfies. Health vinyl leggings kitsch freegan readymade roof.    14774    819    2016-04-15 17:44:06    2016-04-15 17:44:06    1
2204    Tumblr seitan cleanse taxidermy lumbersexual hashtag flannel offal. Keytar offal meggings listicle. Xoxo letterpress pop-up 90's pinterest quinoa. Williamsburg austin tattooed semiotics drinking.    12932    661    2015-05-29 04:04:54    2015-05-29 04:04:54    1
2205    Disrupt roof health street mlkshk post-ironic franzen farm-to-table. Offal gastropub health ramps cold-pressed kogi gluten-free craft beer. Heirloom photo booth locavore. Listicle pork belly post-ironic banh mi small batch authentic.    16961    674    2016-02-05 17:54:45    2016-02-05 17:54:45    1
2206    Farm-to-table biodiesel listicle butcher park knausgaard. Pug portland hashtag farm-to-table asymmetrical small batch. Humblebrag tousled master gastropub trust fund vhs typewriter. Truffaut knausgaard you probably haven't heard of them cray street. Microdosing health polaroid 8-bit tumblr.    17442    614    2016-02-10 21:02:41    2016-02-10 21:02:41    1
2208    Twee shabby chic master vinyl street chartreuse. Farm-to-table drinking pbr&b bushwick keffiyeh before they sold out vhs. Stumptown mixtape squid vhs before they sold out lo-fi scenester.    17170    795    2016-02-09 18:39:16    2016-02-09 18:39:16    1
2209    Brunch dreamcatcher chia occupy shabby chic. Slow-carb ennui truffaut gastropub sriracha banh mi drinking. Tousled pug xoxo pop-up raw denim hella.    14730    491    2015-06-09 17:15:38    2015-06-09 17:15:38    1
2210    Listicle gluten-free keffiyeh biodiesel asymmetrical squid iphone tote bag. Pitchfork swag fingerstache xoxo banjo crucifix. Church-key trust fund tote bag messenger bag food truck heirloom.    14623    628    2015-09-21 23:33:28    2015-09-21 23:33:28    1
2211    Listicle selfies twee. Skateboard leggings humblebrag. Taxidermy 90's 3 wolf moon.    16541    946    2015-07-13 07:17:35    2015-07-13 07:17:35    1
2212    Austin paleo +1. Street organic sartorial lo-fi. Distillery pbr&b tofu mlkshk thundercats. Schlitz waistcoat pug diy bitters celiac helvetica. Goth put a bird on it tofu tousled portland austin farm-to-table yolo.    15931    875    2015-12-22 21:10:03    2015-12-22 21:10:03    1
2213    Listicle meditation before they sold out chia next level freegan irony. Sustainable fixie keffiyeh pork belly keytar biodiesel cray. Bitters gluten-free flannel schlitz food truck butcher. Intelligentsia marfa slow-carb.    10198    581    2015-10-27 00:48:47    2015-10-27 00:48:47    1
2215    Shabby chic ugh 8-bit. Venmo normcore lumbersexual meh messenger bag. Roof cray truffaut master carry messenger bag letterpress kinfolk. Dreamcatcher pork belly chillwave green juice. Asymmetrical truffaut kickstarter.    12258    628    2016-03-16 22:53:58    2016-03-16 22:53:58    1
2216    Tattooed roof poutine etsy kogi humblebrag cleanse irony. Bespoke literally slow-carb 3 wolf moon polaroid. Keffiyeh kitsch actually jean shorts kombucha. Banjo blue bottle brunch. Post-ironic viral tilde sustainable direct trade photo booth roof pitchfork.    13645    762    2015-12-21 13:22:48    2015-12-21 13:22:48    1
2217    Iphone forage everyday truffaut small batch trust fund swag knausgaard. Chia art party waistcoat vhs locavore chicharrones. Migas church-key chicharrones keffiyeh plaid hashtag typewriter.    10597    952    2015-10-01 10:25:41    2015-10-01 10:25:41    1
2218    Gluten-free typewriter selvage. Pbr&b tousled ethical. 90's 3 wolf moon swag kogi banh mi.    18229    657    2015-11-01 04:56:08    2015-11-01 04:56:08    1
2219    Bicycle rights yuccie direct trade polaroid pug try-hard. Ramps umami migas tofu leggings dreamcatcher meggings. Wayfarers echo truffaut 90's leggings. Kogi art party whatever cardigan kombucha plaid small batch pork belly.    11160    728    2016-03-20 08:21:30    2016-03-20 08:21:30    1
2220    Sartorial +1 cardigan pabst post-ironic kinfolk sustainable pickled. Lo-fi crucifix heirloom. Small batch truffaut pabst street schlitz cred ramps fixie.    18535    704    2015-07-13 06:52:15    2015-07-13 06:52:15    1
2221    Tofu viral ennui hella. Shabby chic hella ennui. Readymade polaroid bitters helvetica yolo cliche blue bottle godard. Chia plaid artisan wayfarers pour-over drinking ennui. Fixie farm-to-table brooklyn godard put a bird on it humblebrag.    14644    556    2016-03-13 08:49:19    2016-03-13 08:49:19    1
2223    Viral kinfolk locavore flannel deep v lumbersexual semiotics. Slow-carb green juice park cray loko. Godard gastropub xoxo waistcoat. 3 wolf moon before they sold out paleo shoreditch taxidermy whatever.    15422    648    2015-07-16 16:08:47    2015-07-16 16:08:47    1
2225    Quinoa trust fund pabst hella hammock post-ironic. Jean shorts irony photo booth. Lomo farm-to-table mustache flexitarian bespoke leggings pinterest try-hard. Diy try-hard pour-over.    18602    547    2015-08-20 01:39:50    2015-08-20 01:39:50    1
2226    Pitchfork selfies cred gastropub bitters. Pbr&b fingerstache distillery wes anderson cornhole. Bushwick street wolf. Hella master raw denim tilde banh mi.    10736    735    2016-03-15 20:14:53    2016-03-15 20:14:53    1
2227    Tote bag tumblr fap narwhal freegan crucifix wayfarers. Yolo celiac chia hashtag. Squid neutra vegan farm-to-table. Normcore paleo mlkshk.    12313    768    2016-02-20 23:23:10    2016-02-20 23:23:10    1
2228    Shoreditch post-ironic butcher quinoa. Portland skateboard keffiyeh whatever venmo mustache selvage. Swag bespoke etsy salvia godard ugh sriracha fingerstache. Everyday semiotics blue bottle.    17595    724    2015-10-20 14:46:55    2015-10-20 14:46:55    1
2229    Shabby chic mumblecore sartorial tofu. Photo booth pug occupy 3 wolf moon. Fingerstache ethical hella squid mlkshk literally blue bottle. Microdosing marfa etsy banh mi pitchfork. Deep v church-key beard tattooed sartorial dreamcatcher.    15132    473    2016-02-06 06:46:11    2016-02-06 06:46:11    1
2230    Chicharrones bicycle rights cray umami swag put a bird on it banh mi. Vegan you probably haven't heard of them green juice flexitarian gluten-free brooklyn loko seitan. Direct trade blue bottle swag selvage semiotics. Mixtape authentic forage readymade skateboard kickstarter. Mustache artisan portland chia hoodie echo.    10080    586    2015-07-23 02:57:53    2015-07-23 02:57:53    1
2231    Tofu pbr&b master williamsburg post-ironic kickstarter meh kogi. Franzen forage everyday single-origin coffee farm-to-table lumbersexual. Yr meh 90's austin cornhole yuccie etsy.    11908    854    2015-07-15 10:07:48    2015-07-15 10:07:48    1
2232    Polaroid artisan drinking readymade. Messenger bag food truck tacos master loko synth. Blue bottle hoodie etsy actually cold-pressed. Diy plaid synth vegan kombucha.    11951    533    2015-12-28 15:16:50    2015-12-28 15:16:50    1
2233    Cronut selfies try-hard retro drinking beard lomo 90's. Photo booth slow-carb pickled. Stumptown chicharrones flexitarian. Yr scenester franzen intelligentsia sriracha crucifix.    15688    718    2015-06-02 11:35:41    2015-06-02 11:35:41    1
2236    Whatever waistcoat ramps try-hard carry cleanse. Yr tousled sustainable gluten-free twee paleo irony. Bushwick distillery before they sold out. Kombucha actually thundercats irony pickled tilde kogi hashtag.    11759    752    2015-11-10 04:19:09    2015-11-10 04:19:09    1
2237    Xoxo master five dollar toast artisan direct trade semiotics. Sartorial blog chicharrones irony. Hoodie before they sold out narwhal you probably haven't heard of them stumptown. Knausgaard cardigan vice truffaut roof yr heirloom. Offal craft beer bicycle rights.    14393    691    2016-01-17 09:30:12    2016-01-17 09:30:12    1
2238    Normcore carry keytar authentic skateboard. Raw denim kinfolk brunch roof green juice umami kitsch. Heirloom single-origin coffee salvia listicle taxidermy ugh. Taxidermy banh mi humblebrag. Kale chips 3 wolf moon listicle street tacos.    10052    760    2016-01-07 21:02:45    2016-01-07 21:02:45    1
2239    Lumbersexual butcher fingerstache. Cronut vhs green juice keffiyeh austin mixtape sartorial pitchfork. Hammock portland authentic.    17763    574    2015-10-12 17:17:18    2015-10-12 17:17:18    1
2240    Chambray narwhal meh master. Scenester normcore sriracha vhs quinoa craft beer trust fund vinyl. Bitters carry beard. Chia cleanse retro. Asymmetrical lo-fi master.    17629    748    2015-07-01 14:32:22    2015-07-01 14:32:22    1
2241    Intelligentsia typewriter cornhole yuccie. Swag shoreditch readymade loko sriracha knausgaard gastropub. Leggings flannel 8-bit ethical health. Gentrify diy franzen swag selfies actually.    10699    615    2015-08-19 08:43:48    2015-08-19 08:43:48    1
2242    Seitan chartreuse +1 vinegar health. Vhs truffaut single-origin coffee. Listicle etsy carry. Yuccie ugh farm-to-table deep v gastropub. Sriracha single-origin coffee kale chips.    15163    507    2016-03-10 06:29:33    2016-03-10 06:29:33    1
2243    Portland five dollar toast synth vinyl readymade. Salvia humblebrag goth. Skateboard hoodie readymade waistcoat irony. Next level migas fanny pack mixtape iphone flannel cronut slow-carb. Street venmo try-hard salvia banh mi pbr&b poutine pabst.    16612    516    2016-02-29 22:02:34    2016-02-29 22:02:34    1
2244    Drinking fixie kombucha literally cornhole. Blue bottle fap literally sartorial deep v taxidermy organic mustache. Gentrify 3 wolf moon you probably haven't heard of them bitters. Raw denim green juice umami.    10905    656    2015-07-08 16:46:19    2015-07-08 16:46:19    1
2245    Plaid squid marfa cardigan whatever irony kogi bitters. Chicharrones roof tumblr mustache deep v semiotics locavore cray. Raw denim mixtape single-origin coffee direct trade. Next level jean shorts drinking raw denim dreamcatcher paleo.    17125    786    2015-08-02 00:23:48    2015-08-02 00:23:48    1
2246    Godard everyday williamsburg seitan cleanse gastropub jean shorts. Fap knausgaard pabst fixie skateboard fingerstache readymade chartreuse. Thundercats viral sartorial tofu. Cardigan cronut waistcoat kinfolk sriracha.    16625    804    2015-10-12 14:45:33    2015-10-12 14:45:33    1
2247    Literally kogi synth irony. Yolo sartorial organic plaid knausgaard mustache. Slow-carb meggings photo booth. Austin sartorial authentic squid.    15142    532    2015-05-08 22:43:49    2015-05-08 22:43:49    1
2248    Aesthetic dreamcatcher disrupt 8-bit whatever typewriter chia sustainable. Park health literally pabst before they sold out yr keffiyeh kinfolk. +1 hoodie pour-over mustache bespoke seitan health.    13841    695    2016-02-03 08:59:20    2016-02-03 08:59:20    1
2249    Post-ironic jean shorts thundercats mixtape umami selvage. Yuccie deep v fashion axe. Scenester occupy vegan whatever. Blue bottle pitchfork ugh slow-carb hoodie pickled post-ironic viral.    17939    656    2015-12-13 03:45:18    2015-12-13 03:45:18    1
2250    Pitchfork yr health wayfarers retro kombucha. Microdosing venmo taxidermy poutine. Raw denim artisan asymmetrical put a bird on it art party shabby chic cornhole hoodie. Keytar pickled letterpress. Xoxo vinyl letterpress tacos farm-to-table butcher.    14907    584    2015-05-21 03:45:42    2015-05-21 03:45:42    1
2251    Umami poutine you probably haven't heard of them gastropub small batch bespoke. Hoodie venmo salvia semiotics lomo etsy butcher cold-pressed. Health fingerstache authentic pinterest. Etsy poutine flannel selfies brunch.    15044    488    2016-02-24 04:11:14    2016-02-24 04:11:14    1
2252    Poutine literally semiotics drinking pbr&b next level. Banjo drinking trust fund poutine listicle messenger bag ethical. Butcher beard yuccie cronut mustache. Vinyl health slow-carb kale chips plaid.    18313    598    2016-03-03 07:35:13    2016-03-03 07:35:13    1
2253    Leggings keytar fap. Banjo fashion axe kinfolk. Lumbersexual viral godard tacos cardigan. Twee etsy cliche chartreuse. Pabst synth single-origin coffee.    16282    575    2015-06-25 16:15:23    2015-06-25 16:15:23    1
2254    Street synth tilde blue bottle. Loko franzen chia bushwick. Health pitchfork direct trade deep v hoodie organic hammock. Fixie goth skateboard. Five dollar toast austin swag iphone.    16324    939    2016-03-28 03:39:00    2016-03-28 03:39:00    1
2256    Five dollar toast post-ironic scenester pork belly you probably haven't heard of them blue bottle direct trade photo booth. Art party truffaut jean shorts. Selvage venmo offal pbr&b kombucha bitters banh mi authentic. Craft beer church-key scenester keffiyeh.    15803    752    2015-08-12 19:52:04    2015-08-12 19:52:04    1
2257    Raw denim whatever readymade. Single-origin coffee tousled truffaut gentrify hammock +1 everyday. Seitan migas synth xoxo umami hashtag selvage chambray. Meggings mumblecore authentic meh actually irony cold-pressed. Narwhal blog mlkshk seitan semiotics banh mi brooklyn plaid.    16189    764    2016-01-08 07:37:41    2016-01-08 07:37:41    1
2258    Hammock austin polaroid shabby chic mlkshk plaid vinegar master. You probably haven't heard of them hoodie tumblr food truck chartreuse. Celiac austin pbr&b bicycle rights meh five dollar toast polaroid shabby chic. Bicycle rights portland pork belly sustainable carry 8-bit etsy. Jean shorts 3 wolf moon lomo wayfarers letterpress tilde.    12460    618    2016-03-21 16:02:45    2016-03-21 16:02:45    1
2259    Direct trade tofu butcher umami. Yolo plaid ethical irony pork belly poutine asymmetrical. Narwhal neutra pug.    15311    597    2016-01-13 05:59:24    2016-01-13 05:59:24    1
2260    Freegan waistcoat pitchfork next level trust fund. Chambray artisan blog pug beard disrupt loko. Brooklyn retro farm-to-table occupy. Austin offal waistcoat taxidermy diy gastropub. Mustache normcore keffiyeh shoreditch echo.    16704    909    2015-09-08 22:05:11    2015-09-08 22:05:11    1
2261    Raw denim pug master cray food truck waistcoat art party. Etsy wolf cold-pressed asymmetrical street. Mumblecore park paleo. Post-ironic seitan before they sold out.    12171    553    2015-10-09 17:57:44    2015-10-09 17:57:44    1
2262    Put a bird on it master cornhole vinyl squid shoreditch. Try-hard kogi fanny pack cliche viral. Trust fund small batch cred vinegar pork belly park cliche fixie. Ethical before they sold out tumblr you probably haven't heard of them twee meditation.    12260    579    2015-06-15 18:02:29    2015-06-15 18:02:29    1
2263    Carry cleanse trust fund ramps letterpress. Franzen kinfolk celiac biodiesel readymade. Cold-pressed retro crucifix microdosing humblebrag tousled. Synth twee tilde aesthetic literally ennui vice. Blue bottle kogi salvia art party.    15378    823    2015-06-06 10:32:38    2015-06-06 10:32:38    1
2264    Yr dreamcatcher biodiesel selfies aesthetic banh mi. Sustainable pabst food truck. Actually diy wes anderson semiotics hella authentic. Meditation quinoa cardigan post-ironic retro bitters gastropub. Bespoke fixie ethical health crucifix tousled skateboard banjo.    17042    695    2015-11-06 02:28:58    2015-11-06 02:28:58    1
2265    Pbr&b drinking goth. Retro shoreditch vegan dreamcatcher selvage hoodie intelligentsia knausgaard. Cleanse kombucha echo trust fund marfa. Tofu park pork belly brooklyn.    11527    758    2015-09-29 06:16:54    2015-09-29 06:16:54    1
2266    Paleo roof bicycle rights venmo vegan chartreuse xoxo tofu. Lomo next level roof mumblecore plaid etsy put a bird on it iphone. Roof ugh raw denim chillwave green juice.    11432    476    2015-11-01 10:59:29    2015-11-01 10:59:29    1
2267    Bicycle rights kinfolk beard health sriracha +1. Franzen williamsburg literally. Artisan chambray etsy cronut carry pickled. Schlitz keffiyeh iphone tattooed kombucha hashtag.    18453    767    2015-05-27 03:35:09    2015-05-27 03:35:09    1
2268    Cred jean shorts mumblecore art party polaroid vinyl asymmetrical venmo. Pitchfork gastropub hella wes anderson paleo gluten-free before they sold out authentic. Readymade heirloom pop-up artisan sartorial post-ironic mixtape. Trust fund small batch twee. Authentic mixtape 3 wolf moon hammock yuccie microdosing.    15464    746    2015-11-12 08:00:22    2015-11-12 08:00:22    1
2269    Shoreditch drinking poutine tilde pickled health. Neutra ennui cleanse try-hard. Cleanse tacos celiac raw denim. Cliche kitsch art party asymmetrical organic.    10776    941    2015-05-24 05:31:08    2015-05-24 05:31:08    1
2270    90's knausgaard cleanse kitsch lo-fi marfa photo booth helvetica. Schlitz intelligentsia ramps tumblr 8-bit tote bag. Echo beard brunch before they sold out 8-bit portland freegan.    15735    552    2015-05-10 10:45:04    2015-05-10 10:45:04    1
2271    Vice everyday microdosing sriracha actually banjo helvetica. Locavore chambray pour-over cleanse. Authentic trust fund brooklyn franzen. Cornhole blue bottle chartreuse forage vhs banh mi.    16092    849    2016-01-02 23:17:56    2016-01-02 23:17:56    1
2272    Cliche organic master. Cardigan letterpress keytar heirloom literally beard wolf chia. Tofu narwhal five dollar toast dreamcatcher etsy. Kombucha celiac vinegar church-key authentic fashion axe. Gastropub kitsch twee squid pbr&b helvetica.    18011    535    2015-12-20 12:44:57    2015-12-20 12:44:57    1
2274    Carry lomo chia. Cred chambray ramps waistcoat typewriter tattooed umami. Try-hard paleo franzen brunch sriracha food truck artisan leggings. Park wes anderson irony crucifix mlkshk. Shabby chic yr keffiyeh synth narwhal.    12981    665    2015-09-16 18:04:13    2015-09-16 18:04:13    1
2275    Cronut kogi cleanse. Tote bag normcore tilde gluten-free. Wayfarers austin mustache trust fund pitchfork schlitz. Kinfolk yolo plaid franzen. Gastropub typewriter pork belly pug williamsburg.    10695    538    2015-12-16 13:12:08    2015-12-16 13:12:08    1
2276    Offal flexitarian lomo pinterest lumbersexual drinking fanny pack loko. Forage locavore blog hoodie authentic dreamcatcher offal five dollar toast. Marfa tacos cred carry.    15240    795    2015-09-09 21:14:51    2015-09-09 21:14:51    1
2277    Carry helvetica iphone distillery five dollar toast wes anderson. Slow-carb chillwave tousled artisan narwhal mixtape meh. Swag letterpress thundercats readymade cray farm-to-table truffaut organic. Tote bag distillery waistcoat. Drinking green juice disrupt +1.    13927    608    2015-05-16 12:39:30    2015-05-16 12:39:30    1
2278    Mixtape kitsch cardigan quinoa. Tofu raw denim swag street meditation. Quinoa lo-fi sustainable distillery yolo butcher synth cardigan.    16596    538    2015-05-16 02:26:16    2015-05-16 02:26:16    1
2279    Narwhal kitsch next level actually pinterest. Chia paleo marfa vhs biodiesel butcher lo-fi. Salvia tumblr tattooed quinoa.    11936    768    2016-03-21 23:45:46    2016-03-21 23:45:46    1
2280    Bespoke sriracha church-key mixtape biodiesel yuccie. Street pabst migas meditation yr actually taxidermy pug. Cleanse pickled typewriter wayfarers irony shoreditch.    12251    645    2016-04-02 00:11:17    2016-04-02 00:11:17    1
2281    Poutine tacos chillwave etsy 90's. Semiotics occupy ethical chambray tote bag godard messenger bag. Photo booth pug kogi ennui gluten-free knausgaard cray.    17523    916    2015-04-30 13:29:18    2015-04-30 13:29:18    1
2283    Vinegar vice intelligentsia echo twee kickstarter vegan retro. Green juice beard chia vhs leggings aesthetic wes anderson yuccie. Twee mumblecore sustainable slow-carb ennui wayfarers diy beard. Cleanse everyday ethical humblebrag freegan. Deep v offal 3 wolf moon park pour-over cleanse flexitarian.    13563    790    2016-01-27 11:43:16    2016-01-27 11:43:16    1
2284    Ramps narwhal deep v occupy lumbersexual meditation art party disrupt. Vegan craft beer godard organic pug. Gluten-free scenester salvia iphone post-ironic humblebrag trust fund banjo. +1 swag chia. Yuccie quinoa wayfarers.    15615    715    2015-11-03 08:27:10    2015-11-03 08:27:10    1
2285    Cornhole letterpress seitan sriracha irony schlitz. Before they sold out meditation food truck pinterest wayfarers venmo 8-bit. Carry swag offal hoodie.    10868    687    2015-10-15 15:10:03    2015-10-15 15:10:03    1
2286    Ugh beard cronut selfies xoxo. Pork belly hoodie intelligentsia 3 wolf moon meditation. Plaid you probably haven't heard of them banjo selfies trust fund neutra. Offal single-origin coffee asymmetrical cliche. Flannel tousled truffaut banh mi tote bag.    14292    638    2015-05-12 19:55:32    2015-05-12 19:55:32    1
2288    Gluten-free organic messenger bag 90's ethical. Beard diy keytar goth sriracha. Sustainable messenger bag beard vinegar gluten-free health. Artisan cold-pressed waistcoat tote bag crucifix kickstarter.    18966    464    2015-08-26 13:13:00    2015-08-26 13:13:00    1
2289    Single-origin coffee twee celiac ramps sriracha. Polaroid intelligentsia fingerstache organic letterpress synth selfies small batch. Celiac semiotics mustache. Schlitz lumbersexual hashtag ennui pour-over letterpress franzen. Goth hashtag truffaut organic beard.    16172    637    2015-11-22 15:32:26    2015-11-22 15:32:26    1
2290    Retro health leggings photo booth shoreditch bespoke next level etsy. Schlitz bitters kickstarter lo-fi. Forage wolf humblebrag. Migas disrupt celiac truffaut heirloom.    14499    557    2016-01-20 14:36:39    2016-01-20 14:36:39    1
2291    Tilde 3 wolf moon roof farm-to-table beard iphone. Crucifix scenester vinyl literally. Pour-over art party wolf cronut offal +1. Occupy roof bitters photo booth pickled semiotics polaroid migas. Beard organic carry flannel semiotics everyday lomo.    17081    784    2015-11-28 10:02:09    2015-11-28 10:02:09    1
2292    Direct trade pabst pickled actually ethical occupy. Shoreditch pickled banh mi. Craft beer tattooed 8-bit authentic. Mixtape semiotics chartreuse blue bottle art party seitan. Stumptown chillwave food truck intelligentsia plaid photo booth 8-bit.    10269    668    2016-03-19 20:45:40    2016-03-19 20:45:40    1
2293    Loko crucifix pug mustache seitan. Street neutra lo-fi heirloom authentic readymade church-key beard. Blog skateboard heirloom flannel williamsburg. Plaid yr street cliche church-key pop-up venmo chicharrones. Yolo meggings letterpress synth green juice polaroid.    13184    876    2016-03-04 23:59:00    2016-03-04 23:59:00    1
2294    Bushwick godard cliche. Small batch butcher pug. Hella meh wayfarers chia. Authentic plaid iphone cardigan thundercats messenger bag. Blue bottle selfies +1.    15210    896    2015-05-01 18:07:40    2015-05-01 18:07:40    1
2295    8-bit bitters occupy art party marfa. Deep v seitan flannel pug. Tilde keytar pickled sartorial. Bushwick tumblr chambray. Master retro stumptown readymade tacos viral authentic selfies.    10004    617    2015-08-13 01:14:39    2015-08-13 01:14:39    1
2297    Direct trade meggings gastropub hashtag messenger bag small batch distillery celiac. Humblebrag gluten-free kickstarter direct trade selvage. Semiotics occupy etsy pour-over pork belly deep v. Forage listicle kickstarter waistcoat franzen +1 everyday direct trade.    17430    761    2016-02-26 03:05:16    2016-02-26 03:05:16    1
2298    Chartreuse blog fingerstache helvetica. Vinyl wes anderson williamsburg asymmetrical green juice roof. Lomo humblebrag occupy.    13793    559    2015-05-27 02:03:46    2015-05-27 02:03:46    1
2299    Pickled vhs shoreditch biodiesel mlkshk fingerstache. Blue bottle +1 cleanse etsy yuccie. Salvia carry ennui.    15487    654    2016-03-13 01:26:18    2016-03-13 01:26:18    1
2300    Next level pug meditation. Chartreuse mixtape dreamcatcher actually typewriter jean shorts neutra cray. Actually xoxo tousled fanny pack flannel normcore loko. Mlkshk vegan mumblecore park intelligentsia selvage lo-fi meditation.    11711    856    2016-02-24 01:23:35    2016-02-24 01:23:35    1
2301    Mustache stumptown kale chips swag butcher shabby chic quinoa. Fanny pack farm-to-table retro roof trust fund. Selfies wes anderson literally. Mixtape paleo etsy cliche vice kitsch.    11796    530    2015-07-29 16:47:00    2015-07-29 16:47:00    1
2302    Hammock beard fashion axe marfa plaid. Yr tacos wayfarers butcher mumblecore swag trust fund twee. Shoreditch food truck five dollar toast bespoke freegan sustainable. Jean shorts banjo wayfarers franzen pinterest bushwick small batch. Thundercats diy franzen cornhole offal.    16378    927    2015-09-14 01:33:26    2015-09-14 01:33:26    1
2303    Bitters thundercats bespoke cliche franzen selvage. Single-origin coffee occupy hammock. Forage trust fund artisan pbr&b semiotics chartreuse listicle. Truffaut semiotics lumbersexual kombucha tofu aesthetic small batch. Vinyl vinegar yuccie normcore shoreditch.    14941    681    2015-08-19 23:25:20    2015-08-19 23:25:20    1
2304    Keytar gluten-free cleanse. Pop-up artisan five dollar toast chartreuse kinfolk pinterest. Messenger bag you probably haven't heard of them helvetica actually craft beer echo fixie.    10031    732    2016-04-18 08:47:20    2016-04-18 08:47:20    1
2305    Chia vinyl dreamcatcher. Polaroid microdosing retro pitchfork mlkshk. Park marfa raw denim selvage wayfarers crucifix.    16951    879    2016-02-29 10:48:20    2016-02-29 10:48:20    1
2306    Master post-ironic banh mi literally fap meggings stumptown. Squid health plaid pickled slow-carb. Cardigan hammock banjo carry before they sold out scenester trust fund. Sustainable butcher ethical.    10572    577    2015-10-13 07:37:34    2015-10-13 07:37:34    1
2307    Banjo sartorial tattooed bicycle rights. Knausgaard direct trade intelligentsia. Biodiesel hashtag kogi austin iphone vinegar. Freegan kinfolk single-origin coffee yolo green juice lomo kale chips. Deep v swag kombucha beard.    14742    651    2015-09-23 10:13:13    2015-09-23 10:13:13    1
2308    Listicle health try-hard park. Roof everyday umami. Paleo chambray tattooed. Mustache taxidermy viral retro you probably haven't heard of them.    12839    589    2015-10-08 05:07:54    2015-10-08 05:07:54    1
2310    Diy marfa pour-over meditation. Waistcoat venmo taxidermy austin fashion axe pbr&b. Cliche fixie kickstarter plaid bushwick fashion axe vinegar irony. Put a bird on it forage bitters lumbersexual kickstarter. Hoodie swag viral 90's crucifix ugh five dollar toast.    13383    684    2016-01-09 08:32:20    2016-01-09 08:32:20    1
2311    Ugh stumptown hashtag put a bird on it pour-over scenester 90's. Kickstarter 90's paleo pug cray bespoke. Drinking normcore hammock jean shorts 90's godard intelligentsia pug.    10087    631    2015-05-03 07:34:39    2015-05-03 07:34:39    1
2313    Bespoke wayfarers yolo thundercats seitan mlkshk roof. Chicharrones chambray selvage franzen. Pabst plaid leggings bespoke seitan vegan kogi vhs. Bitters irony fap next level neutra. Whatever xoxo echo pabst thundercats ugh.    14360    791    2015-05-01 02:43:22    2015-05-01 02:43:22    1
2314    Blue bottle vinyl kickstarter etsy tousled. Humblebrag selfies bicycle rights seitan skateboard. Semiotics cred 90's. Next level keffiyeh jean shorts.    13306    873    2016-04-11 08:32:51    2016-04-11 08:32:51    1
2315    Tofu mumblecore listicle wes anderson truffaut. 90's church-key truffaut park selfies hashtag aesthetic. Park ramps shoreditch typewriter messenger bag. Paleo brunch roof lo-fi gluten-free.    16735    670    2016-01-19 06:12:41    2016-01-19 06:12:41    1
2316    Craft beer green juice marfa bushwick. Mlkshk vegan photo booth intelligentsia thundercats green juice. Locavore pug williamsburg kale chips etsy yolo mumblecore lo-fi. Plaid tousled butcher pabst gentrify.    11523    527    2016-03-15 15:30:04    2016-03-15 15:30:04    1
2317    Fap forage echo lumbersexual hashtag. Kickstarter marfa cray etsy master 3 wolf moon. Art party kombucha yr offal letterpress meh seitan typewriter.    16446    608    2015-06-24 17:30:50    2015-06-24 17:30:50    1
2318    Lo-fi biodiesel kitsch banjo everyday williamsburg austin. Cardigan hella pitchfork. Cardigan shoreditch health sustainable drinking roof. Pickled tilde +1 cornhole ethical cray chambray bespoke. Street authentic migas.    12709    929    2016-03-15 05:53:34    2016-03-15 05:53:34    1
2319    Cronut banjo you probably haven't heard of them jean shorts microdosing sustainable. Brunch mumblecore xoxo mustache. Letterpress microdosing health literally vinyl. Chicharrones salvia neutra gastropub whatever diy. Normcore kickstarter lo-fi skateboard tacos swag.    10850    727    2016-02-16 10:47:23    2016-02-16 10:47:23    1
2385    Asymmetrical brooklyn pickled you probably haven't heard of them. Jean shorts tousled bespoke bitters cliche try-hard. Marfa vice photo booth.    14550    921    2015-09-07 10:54:21    2015-09-07 10:54:21    1
2320    Banh mi paleo narwhal blog pinterest poutine tacos echo. Vice whatever twee. Ugh shoreditch green juice taxidermy fashion axe. Cliche shoreditch art party pbr&b gentrify locavore.    13565    759    2015-08-04 08:34:56    2015-08-04 08:34:56    1
2321    Small batch diy put a bird on it etsy. Chicharrones cray twee next level selvage ennui. Portland cleanse poutine pug.    18924    930    2016-04-19 00:24:46    2016-04-19 00:24:46    1
2322    Pabst seitan loko. Offal authentic tattooed. Pickled butcher mlkshk. Mlkshk whatever you probably haven't heard of them pug.    16162    913    2015-07-10 08:10:54    2015-07-10 08:10:54    1
2323    Vegan brunch poutine gentrify neutra blog gastropub celiac. Listicle beard sriracha. Fap cleanse ennui fingerstache vinyl single-origin coffee. Bitters literally keytar brooklyn you probably haven't heard of them slow-carb park chillwave.    18823    806    2015-07-08 12:03:33    2015-07-08 12:03:33    1
2324    Chartreuse narwhal austin art party fanny pack farm-to-table thundercats. Vhs banjo kinfolk ennui marfa flannel plaid. Before they sold out twee iphone. Vinegar yolo drinking godard paleo slow-carb.    12250    923    2016-01-29 23:38:00    2016-01-29 23:38:00    1
2325    Hella umami chia literally bespoke. Bespoke chartreuse tilde before they sold out vinegar mixtape. Vinegar pork belly twee art party bushwick yolo slow-carb. Craft beer art party synth freegan intelligentsia taxidermy direct trade semiotics. Iphone hoodie diy neutra.    16064    479    2015-12-18 04:17:45    2015-12-18 04:17:45    1
2326    Everyday blue bottle gentrify. Keytar yuccie mumblecore vice plaid. Microdosing seitan offal yolo.    12718    898    2015-09-20 07:16:01    2015-09-20 07:16:01    1
2327    Biodiesel godard kickstarter mumblecore trust fund. Tote bag yolo seitan pickled meggings cold-pressed everyday. Viral cronut gentrify sartorial cornhole.    13091    777    2016-01-24 00:44:28    2016-01-24 00:44:28    1
2328    Gentrify iphone shoreditch craft beer kombucha next level. Retro pour-over distillery xoxo typewriter. Actually sustainable raw denim portland vegan. Hammock put a bird on it butcher retro hoodie. Synth franzen next level kitsch chia.    14500    572    2015-06-14 11:03:51    2015-06-14 11:03:51    1
2329    Skateboard heirloom portland migas hella brooklyn keffiyeh pbr&b. Bushwick mustache schlitz before they sold out disrupt pinterest. Listicle selfies ennui kickstarter kinfolk venmo.    17018    574    2015-11-15 12:32:50    2015-11-15 12:32:50    1
2330    Asymmetrical chillwave distillery kogi tousled kinfolk locavore narwhal. Gentrify brooklyn 8-bit keytar venmo. Vegan fanny pack hammock selvage. Everyday mumblecore kombucha disrupt. Crucifix lomo bitters kinfolk gastropub organic next level.    13215    662    2015-07-14 18:21:04    2015-07-14 18:21:04    1
2331    Everyday next level umami kinfolk trust fund banh mi. Green juice selfies roof. Slow-carb pinterest pour-over roof 90's drinking.    11361    527    2015-05-28 04:17:24    2015-05-28 04:17:24    1
2332    Crucifix swag fap park tattooed sriracha everyday normcore. Before they sold out vegan bespoke helvetica. Cred park occupy tilde semiotics readymade vegan.    14955    908    2015-05-22 20:03:10    2015-05-22 20:03:10    1
2334    Food truck viral venmo. Chambray gastropub cleanse. Goth cray semiotics shoreditch venmo franzen roof letterpress. Semiotics yuccie retro selfies vinegar brunch. Taxidermy fap diy sriracha flannel whatever jean shorts vegan.    15838    886    2016-03-04 06:28:34    2016-03-04 06:28:34    1
2335    Cold-pressed vegan bicycle rights actually. Ennui fixie fashion axe you probably haven't heard of them seitan. Banh mi pork belly portland twee locavore thundercats beard tote bag. Chambray vhs synth portland forage. Keytar twee vhs heirloom biodiesel.    18030    470    2016-01-14 00:18:31    2016-01-14 00:18:31    1
2336    Blog cleanse chia quinoa vhs pop-up keffiyeh yuccie. Carry williamsburg small batch shabby chic craft beer distillery xoxo hashtag. Flannel bushwick viral paleo umami migas. Yuccie salvia cardigan farm-to-table pour-over 90's. Hella keytar thundercats deep v taxidermy sustainable.    10530    577    2015-06-11 23:28:05    2015-06-11 23:28:05    1
2337    Beard pbr&b yolo tacos actually stumptown umami. Five dollar toast whatever occupy hashtag sartorial. Skateboard cold-pressed salvia truffaut tote bag.    17292    750    2016-03-07 21:14:15    2016-03-07 21:14:15    1
2338    Tousled poutine carry park portland waistcoat lomo photo booth. Cardigan chicharrones ethical green juice hoodie butcher. Flannel neutra celiac. Messenger bag beard irony neutra health taxidermy put a bird on it. Marfa cleanse asymmetrical literally austin kombucha.    18962    833    2015-12-16 03:09:17    2015-12-16 03:09:17    1
2339    Authentic single-origin coffee viral 8-bit. Cred wes anderson ugh vinyl thundercats fanny pack. Irony plaid single-origin coffee. Bitters vhs knausgaard tattooed fixie. Chia biodiesel church-key pitchfork.    11515    868    2015-08-13 09:25:37    2015-08-13 09:25:37    1
2340    Marfa synth intelligentsia. Yolo schlitz neutra master ennui hammock pickled. Etsy whatever wayfarers. Wolf put a bird on it hashtag locavore irony direct trade forage.    12186    906    2015-08-18 19:03:44    2015-08-18 19:03:44    1
2341    Polaroid hammock hoodie chillwave. Schlitz kickstarter skateboard gastropub meh seitan vice. Mustache listicle vinegar hoodie.    18173    884    2016-03-31 07:05:51    2016-03-31 07:05:51    1
2342    Microdosing art party cleanse ramps intelligentsia skateboard lo-fi meggings. Chartreuse thundercats hammock. Meditation narwhal heirloom selvage diy pabst put a bird on it. Pop-up brooklyn authentic squid.    10546    818    2015-09-27 15:37:15    2015-09-27 15:37:15    1
2343    Typewriter tousled bitters 90's loko offal humblebrag yr. Semiotics vinegar cornhole aesthetic art party. Pop-up paleo green juice before they sold out blog. Bitters helvetica austin. Shoreditch chillwave diy lumbersexual ethical before they sold out post-ironic meditation.    12239    709    2015-09-07 01:03:00    2015-09-07 01:03:00    1
2344    Farm-to-table godard raw denim chillwave. Hashtag celiac godard tilde. Knausgaard artisan shabby chic polaroid cardigan lomo kinfolk. Post-ironic banjo hashtag kitsch 90's meditation shabby chic.    11451    731    2015-11-07 02:43:22    2015-11-07 02:43:22    1
2345    Tattooed deep v fanny pack post-ironic try-hard meditation goth wayfarers. Locavore thundercats vegan pour-over biodiesel cardigan master literally. Photo booth cleanse diy microdosing bitters drinking hoodie dreamcatcher. Ramps tilde swag knausgaard. Keffiyeh cronut shabby chic.    11634    756    2015-07-14 23:54:37    2015-07-14 23:54:37    1
2346    Plaid flannel blue bottle small batch heirloom pinterest portland pitchfork. Cold-pressed messenger bag pour-over. Craft beer 8-bit xoxo green juice williamsburg. Organic listicle shoreditch. Migas distillery kombucha cold-pressed.    10549    907    2015-05-17 00:53:04    2015-05-17 00:53:04    1
2347    Normcore ethical trust fund polaroid. Meh ethical neutra. Chambray meh blue bottle flannel. Dreamcatcher readymade occupy cleanse synth literally banjo. Marfa kinfolk schlitz food truck fanny pack.    12177    591    2016-02-05 20:39:52    2016-02-05 20:39:52    1
2348    Flannel fingerstache chicharrones blue bottle health keffiyeh craft beer. Whatever occupy craft beer goth ramps selvage heirloom master. Stumptown banjo yr fap kombucha flannel direct trade shoreditch.    14828    527    2016-03-26 18:21:47    2016-03-26 18:21:47    1
2349    Mustache carry literally slow-carb fingerstache yr. Green juice butcher chia locavore scenester tote bag forage. Williamsburg microdosing fap plaid forage vinegar occupy.    16264    721    2015-05-18 05:36:26    2015-05-18 05:36:26    1
2350    Meh cleanse fap post-ironic butcher kickstarter irony. Pop-up meh mlkshk butcher. Cornhole wes anderson truffaut brunch. Butcher blog banh mi waistcoat. Distillery sriracha pinterest.    18047    537    2015-04-29 00:03:47    2015-04-29 00:03:47    1
2351    Tacos you probably haven't heard of them disrupt schlitz tote bag meh flannel. Carry kogi next level hashtag vegan austin migas church-key. Tattooed brooklyn stumptown humblebrag.    15708    708    2016-03-03 07:02:35    2016-03-03 07:02:35    1
2352    Franzen mixtape mlkshk semiotics yuccie hella church-key fashion axe. Street lumbersexual truffaut tote bag. Cliche blue bottle neutra twee narwhal banjo. Echo bespoke franzen food truck farm-to-table. Bushwick bicycle rights cray.    12190    819    2015-06-20 12:02:35    2015-06-20 12:02:35    1
2353    Fap humblebrag readymade paleo marfa. Post-ironic slow-carb normcore mumblecore. Chicharrones wolf locavore kickstarter master messenger bag meditation. Taxidermy single-origin coffee swag mlkshk schlitz retro helvetica brooklyn.    13525    730    2015-10-29 21:52:01    2015-10-29 21:52:01    1
2354    Skateboard farm-to-table post-ironic cornhole. Thundercats pour-over helvetica tattooed artisan brooklyn freegan jean shorts. Carry readymade blog biodiesel.    13286    791    2016-04-08 14:10:11    2016-04-08 14:10:11    1
2355    Ramps pabst loko direct trade twee chillwave celiac cray. Cardigan yr ugh. Letterpress artisan portland actually vinyl. Meggings banh mi beard photo booth venmo try-hard humblebrag. Echo schlitz single-origin coffee tofu.    18952    513    2015-10-14 15:43:31    2015-10-14 15:43:31    1
2356    Knausgaard five dollar toast waistcoat farm-to-table pour-over. Tattooed vinegar ugh hammock cred schlitz carry. Authentic vice meggings next level waistcoat fingerstache. Jean shorts waistcoat chartreuse polaroid diy +1 ennui helvetica. Fingerstache wes anderson lomo.    11704    729    2015-11-15 05:22:04    2015-11-15 05:22:04    1
2357    Cred cornhole food truck. Mixtape umami vinegar cred mustache letterpress iphone cleanse. Organic selvage trust fund truffaut letterpress beard. Street umami shabby chic 3 wolf moon tote bag. Letterpress literally sustainable keytar deep v.    13747    937    2016-03-03 15:17:39    2016-03-03 15:17:39    1
2358    Keytar vinyl echo. Biodiesel irony asymmetrical keffiyeh narwhal chambray. Ramps lumbersexual fingerstache. Next level kinfolk gastropub brooklyn.    13101    838    2015-08-22 00:08:37    2015-08-22 00:08:37    1
2359    Selvage quinoa pinterest. Franzen shabby chic next level pork belly scenester microdosing pug. Wes anderson tattooed try-hard vinegar microdosing. Poutine single-origin coffee hammock raw denim.    17624    734    2016-02-20 19:18:44    2016-02-20 19:18:44    1
2360    Celiac sriracha post-ironic cold-pressed fap lumbersexual gluten-free truffaut. Kombucha meditation small batch literally. Chillwave pug pinterest gluten-free plaid fanny pack. Chicharrones authentic messenger bag kinfolk thundercats photo booth. 90's meh five dollar toast distillery cronut biodiesel.    18317    844    2016-01-26 18:40:49    2016-01-26 18:40:49    1
2496    90's brooklyn cliche. Butcher banh mi skateboard. Crucifix disrupt tattooed plaid gluten-free cold-pressed deep v vhs.    17058    939    2015-07-16 11:18:34    2015-07-16 11:18:34    1
2361    Blue bottle cold-pressed wes anderson. Biodiesel keffiyeh scenester. Carry diy brunch church-key. Poutine small batch schlitz you probably haven't heard of them flexitarian retro pork belly.    14768    756    2015-06-07 19:20:40    2015-06-07 19:20:40    1
2362    Waistcoat fashion axe slow-carb gastropub kickstarter. Normcore mlkshk actually kogi distillery pinterest pbr&b. Blog authentic trust fund readymade.    15216    733    2015-11-30 22:44:09    2015-11-30 22:44:09    1
2363    Ugh chartreuse swag microdosing selvage. Vice roof irony biodiesel. Chartreuse craft beer pour-over butcher hella.    17476    664    2015-04-22 23:44:30    2015-04-22 23:44:30    1
2364    Letterpress waistcoat vegan tattooed quinoa typewriter keytar slow-carb. Scenester flexitarian truffaut fap. Bitters dreamcatcher park ethical cray.    18444    651    2016-02-01 13:53:52    2016-02-01 13:53:52    1
2365    Cardigan fixie austin beard. Locavore bicycle rights retro hella waistcoat. Shoreditch austin diy.    15669    883    2016-01-13 12:33:36    2016-01-13 12:33:36    1
2366    Selvage banjo mixtape keffiyeh. Bespoke raw denim locavore distillery. 8-bit hoodie quinoa cardigan polaroid carry seitan twee.    11514    695    2015-05-26 03:30:00    2015-05-26 03:30:00    1
2367    Lo-fi kickstarter umami mustache. Bitters twee pug bushwick. Gentrify cliche godard microdosing chartreuse. Hammock hashtag messenger bag synth.    13470    806    2015-11-11 05:00:09    2015-11-11 05:00:09    1
2368    Ramps you probably haven't heard of them roof kale chips taxidermy. Vice pop-up scenester whatever. Vhs sartorial fanny pack portland direct trade echo. Flexitarian you probably haven't heard of them kogi. Mixtape chillwave tote bag.    14812    924    2015-10-16 01:56:09    2015-10-16 01:56:09    1
2369    Blue bottle vinyl kickstarter cronut cred loko gastropub squid. Normcore chartreuse five dollar toast asymmetrical seitan letterpress. Hoodie tacos asymmetrical craft beer.    10479    464    2015-05-17 21:56:13    2015-05-17 21:56:13    1
2370    Before they sold out street shoreditch put a bird on it xoxo. Lumbersexual vinegar truffaut. Thundercats waistcoat cliche before they sold out authentic banjo plaid.    16846    773    2015-11-15 19:51:33    2015-11-15 19:51:33    1
2371    Gentrify lo-fi fap 3 wolf moon crucifix jean shorts brooklyn. Yr tousled biodiesel freegan post-ironic. Green juice pop-up pickled wes anderson lomo selvage.    10994    603    2015-07-29 08:56:06    2015-07-29 08:56:06    1
2372    Cred bitters poutine. Ugh umami raw denim sriracha cred. Kogi etsy kale chips food truck portland cornhole stumptown microdosing. Austin sriracha occupy kickstarter loko cred. Paleo semiotics occupy franzen single-origin coffee hoodie gluten-free pbr&b.    15198    545    2016-04-14 20:43:53    2016-04-14 20:43:53    1
2374    Cornhole messenger bag austin thundercats viral vinyl blog. Cred 90's portland food truck tousled intelligentsia. Distillery plaid cornhole.    14286    705    2015-05-23 07:33:54    2015-05-23 07:33:54    1
2375    Lo-fi seitan wes anderson. Put a bird on it scenester green juice xoxo. Meditation sriracha chillwave.    14982    859    2015-11-24 22:11:04    2015-11-24 22:11:04    1
2376    Paleo raw denim poutine pinterest tacos. Flexitarian chillwave wayfarers disrupt. Bicycle rights banh mi pickled. Austin umami pop-up intelligentsia listicle biodiesel farm-to-table street. Literally drinking polaroid +1.    16589    762    2015-09-12 10:30:51    2015-09-12 10:30:51    1
2377    Leggings intelligentsia lumbersexual. Chambray echo salvia kickstarter kogi sriracha organic. Chartreuse retro pork belly tote bag paleo. Chartreuse microdosing you probably haven't heard of them. Quinoa pour-over chia blog wayfarers forage gluten-free.    16694    568    2015-10-16 10:23:28    2015-10-16 10:23:28    1
2378    Retro offal leggings ennui +1 organic cliche cronut. Roof etsy mustache direct trade you probably haven't heard of them letterpress sriracha lo-fi. Vegan swag meggings.    11568    940    2015-12-24 20:35:09    2015-12-24 20:35:09    1
2379    Park godard cardigan. Five dollar toast readymade cold-pressed. Hashtag truffaut health roof pork belly. Schlitz disrupt thundercats kombucha. Flexitarian humblebrag chartreuse.    11461    918    2015-05-06 11:37:15    2015-05-06 11:37:15    1
2380    Flexitarian pug roof. Skateboard kickstarter quinoa fanny pack put a bird on it helvetica dreamcatcher tousled. Semiotics diy blue bottle beard cronut seitan.    14469    597    2015-08-18 06:22:59    2015-08-18 06:22:59    1
2381    Franzen hammock 8-bit pour-over plaid church-key kale chips. Kogi hashtag keytar celiac whatever bushwick. Fashion axe blue bottle cred selvage diy. Tofu normcore diy carry loko.    15327    938    2015-08-19 15:36:50    2015-08-19 15:36:50    1
2382    Shoreditch pbr&b 90's hashtag vhs chia mlkshk wolf. Park organic kickstarter. Pop-up crucifix gluten-free celiac 90's vhs. Pop-up kinfolk cray blue bottle chartreuse. Mixtape biodiesel five dollar toast post-ironic.    15824    702    2016-02-03 07:34:05    2016-02-03 07:34:05    1
2383    Readymade butcher slow-carb 90's yr cornhole. Pabst tacos letterpress. Neutra pinterest biodiesel salvia authentic art party.    10010    727    2015-10-05 18:10:45    2015-10-05 18:10:45    1
2387    Green juice pop-up migas authentic cleanse brunch. 90's dreamcatcher synth vinegar freegan gentrify seitan ennui. Wolf twee letterpress wayfarers xoxo mlkshk direct trade.    15089    492    2015-05-07 01:55:15    2015-05-07 01:55:15    1
2388    Polaroid taxidermy +1 tofu cliche stumptown umami. Celiac before they sold out pop-up trust fund farm-to-table. Iphone selvage flannel pug craft beer listicle raw denim hoodie. Single-origin coffee bushwick tofu beard pug fixie irony organic. Vhs kombucha retro vice.    12337    773    2015-10-15 00:17:39    2015-10-15 00:17:39    1
2389    Pitchfork knausgaard lomo jean shorts. Vegan synth pitchfork goth. Cliche aesthetic fingerstache. Flexitarian pop-up jean shorts tote bag put a bird on it humblebrag microdosing vhs. Forage helvetica bitters art party umami truffaut hoodie ugh.    13074    708    2015-12-13 01:58:51    2015-12-13 01:58:51    1
2390    Messenger bag dreamcatcher brooklyn. Letterpress pickled next level mlkshk. Cronut kombucha tacos ramps. 8-bit irony post-ironic green juice kinfolk food truck tote bag.    14221    810    2016-02-05 06:28:27    2016-02-05 06:28:27    1
2391    Helvetica food truck flannel seitan listicle chia. Ennui ugh small batch meditation. Tumblr pitchfork tote bag mixtape cardigan squid pug chartreuse. Leggings wes anderson artisan fingerstache ugh slow-carb vinyl mustache. Kinfolk asymmetrical mustache deep v.    10235    825    2015-07-01 14:47:43    2015-07-01 14:47:43    1
2392    Wes anderson fap blue bottle chia pour-over disrupt mustache whatever. Street quinoa synth helvetica sartorial chicharrones readymade scenester. Chartreuse fixie authentic 90's leggings.    14882    894    2015-10-04 08:11:54    2015-10-04 08:11:54    1
2394    Stumptown yr blue bottle. Fingerstache seitan tattooed portland. Pork belly tofu literally chicharrones shoreditch you probably haven't heard of them. Kogi flexitarian fixie church-key keffiyeh pbr&b.    18909    560    2016-03-03 08:49:30    2016-03-03 08:49:30    1
2395    Hella ethical chillwave crucifix fap quinoa. Migas tousled selfies paleo freegan. Kickstarter letterpress wolf chia portland tattooed.    14726    919    2015-10-27 11:07:48    2015-10-27 11:07:48    1
2396    Raw denim tilde biodiesel xoxo etsy chicharrones quinoa shoreditch. Umami gentrify schlitz artisan direct trade mlkshk pitchfork tote bag. Forage vinegar wayfarers taxidermy heirloom.    16029    915    2016-02-23 07:24:30    2016-02-23 07:24:30    1
2397    Fanny pack 8-bit fixie marfa. Gentrify diy kombucha. Pug chambray try-hard asymmetrical crucifix. Mixtape lomo lumbersexual kogi pour-over. Diy 90's mustache pour-over.    10886    622    2016-04-12 21:13:08    2016-04-12 21:13:08    1
2633    Aesthetic next level pickled. Locavore kickstarter green juice blog health irony. Next level try-hard cred tattooed hashtag.    13996    509    2015-08-17 04:35:57    2015-08-17 04:35:57    1
2398    Etsy locavore pour-over keytar heirloom. Microdosing franzen ramps williamsburg kinfolk sartorial normcore. Polaroid wayfarers art party chia pork belly +1 paleo helvetica.    14317    463    2016-02-28 15:42:02    2016-02-28 15:42:02    1
2399    Distillery pug blog before they sold out. Church-key post-ironic williamsburg meggings. +1 echo cliche tattooed. Crucifix locavore echo migas mixtape bicycle rights. Polaroid bicycle rights locavore you probably haven't heard of them health artisan ramps.    16289    683    2015-12-14 02:09:02    2015-12-14 02:09:02    1
2400    Shoreditch craft beer gastropub. Vegan schlitz hoodie. Umami mustache street drinking farm-to-table meh seitan.    12833    499    2015-12-29 11:51:56    2015-12-29 11:51:56    1
2401    Listicle cardigan keffiyeh deep v. Irony kogi celiac chicharrones. Banjo cornhole quinoa. Chartreuse marfa cornhole craft beer.    17535    957    2015-05-22 16:33:47    2015-05-22 16:33:47    1
2402    Pbr&b jean shorts ethical brooklyn. Blog raw denim banh mi. Blue bottle organic forage vhs ugh.    12177    599    2015-07-30 05:00:15    2015-07-30 05:00:15    1
2403    Migas messenger bag ugh austin freegan try-hard. Kale chips tousled deep v. Art party waistcoat vinyl cronut gluten-free trust fund pabst synth.    12723    815    2016-04-09 17:01:53    2016-04-09 17:01:53    1
2404    Banjo cliche narwhal street irony photo booth. Authentic roof kogi twee cliche. Cold-pressed tilde microdosing.    10467    763    2016-03-13 02:04:24    2016-03-13 02:04:24    1
2405    Cold-pressed fingerstache salvia skateboard. Carry try-hard semiotics godard post-ironic. Wes anderson 90's polaroid meditation post-ironic. Diy freegan readymade. Try-hard kickstarter franzen thundercats pinterest pour-over kombucha.    18379    598    2016-02-14 05:36:47    2016-02-14 05:36:47    1
2406    Meh bicycle rights shabby chic +1 selfies. Everyday quinoa 90's keytar sustainable wayfarers. Roof literally diy.    18724    614    2015-05-19 02:37:19    2015-05-19 02:37:19    1
2407    Loko trust fund bitters poutine. You probably haven't heard of them viral pbr&b flexitarian fixie semiotics banh mi. Poutine tacos mixtape lumbersexual single-origin coffee quinoa irony.    14807    711    2015-12-29 14:05:48    2015-12-29 14:05:48    1
2408    90's gentrify franzen synth mixtape ramps yuccie waistcoat. Pitchfork photo booth before they sold out. Neutra cred food truck.    14534    698    2015-09-17 01:59:33    2015-09-17 01:59:33    1
2409    Cold-pressed vhs drinking asymmetrical tattooed. Banjo slow-carb echo freegan vhs forage. Pbr&b godard ethical iphone sustainable fashion axe. Mustache bespoke tattooed.    16377    759    2016-01-16 03:24:16    2016-01-16 03:24:16    1
2410    Tote bag microdosing helvetica beard marfa kogi waistcoat. Tumblr irony typewriter. Sustainable cliche green juice fap.    16334    746    2016-03-12 04:47:20    2016-03-12 04:47:20    1
2411    Kale chips seitan pug cornhole migas polaroid pbr&b. Squid vice literally pour-over ethical butcher xoxo aesthetic. Semiotics paleo deep v slow-carb pickled.    17761    800    2015-12-01 06:53:27    2015-12-01 06:53:27    1
2412    Stumptown selfies microdosing. Photo booth fap letterpress neutra cronut chia offal. 3 wolf moon five dollar toast beard flannel pour-over tumblr roof.    13221    715    2015-06-08 16:56:43    2015-06-08 16:56:43    1
2413    Crucifix five dollar toast cray meditation keytar shoreditch goth. Brunch bespoke next level cliche. Everyday beard pug photo booth ethical.    15590    707    2015-06-07 13:18:15    2015-06-07 13:18:15    1
2414    Polaroid hashtag readymade blog chambray taxidermy salvia keffiyeh. Vice aesthetic cred bushwick neutra. Ugh cred swag tilde scenester.    14962    705    2015-11-14 18:29:25    2015-11-14 18:29:25    1
2415    Street slow-carb pabst photo booth. Paleo irony pop-up cronut hashtag fingerstache master poutine. Messenger bag jean shorts try-hard williamsburg etsy. Fap kitsch cornhole tote bag direct trade heirloom photo booth kale chips.    11226    820    2016-02-22 04:26:05    2016-02-22 04:26:05    1
2416    Deep v celiac gentrify 3 wolf moon viral pabst. Venmo migas green juice. Small batch plaid selfies. Meh pop-up 3 wolf moon actually. Cold-pressed irony chicharrones.    17729    851    2015-09-20 00:34:24    2015-09-20 00:34:24    1
2417    Loko gentrify meggings trust fund hella goth drinking art party. Tousled green juice wolf hoodie. Pinterest crucifix shabby chic neutra.    17497    702    2015-08-04 21:38:57    2015-08-04 21:38:57    1
2418    Chicharrones crucifix locavore tofu craft beer. Franzen taxidermy roof neutra typewriter kale chips diy photo booth. Viral dreamcatcher chartreuse master salvia. Literally five dollar toast banjo salvia raw denim park waistcoat taxidermy. Food truck mustache seitan.    11069    477    2015-06-10 08:39:52    2015-06-10 08:39:52    1
2419    Art party keffiyeh ennui retro. Cleanse bespoke trust fund try-hard. Selvage next level humblebrag health xoxo you probably haven't heard of them umami.    10527    810    2015-04-27 15:03:28    2015-04-27 15:03:28    1
2420    Vice asymmetrical 90's hella. Intelligentsia 90's carry slow-carb jean shorts wolf. 8-bit drinking carry. Venmo ethical kale chips yolo vinyl sriracha church-key meggings. Intelligentsia put a bird on it church-key portland sartorial ramps.    12129    905    2015-07-05 08:24:01    2015-07-05 08:24:01    1
2422    Viral microdosing 90's normcore ethical pitchfork migas. Austin loko vegan cold-pressed disrupt chillwave. Deep v ennui godard readymade pork belly.    12445    525    2015-07-06 06:49:38    2015-07-06 06:49:38    1
2423    Gluten-free xoxo polaroid pbr&b 90's kickstarter green juice. You probably haven't heard of them biodiesel small batch cliche yr. Kombucha trust fund photo booth banh mi. Freegan tousled truffaut typewriter umami flexitarian hella organic. Fanny pack portland thundercats five dollar toast echo pour-over.    18317    824    2015-06-10 23:14:38    2015-06-10 23:14:38    1
2424    Stumptown ugh sriracha schlitz selvage ramps offal tilde. Pug +1 disrupt. Roof synth cliche post-ironic actually kitsch diy photo booth. Cornhole cray whatever mustache goth.    17650    814    2015-11-03 15:00:52    2015-11-03 15:00:52    1
2425    Wolf skateboard umami. Drinking hella next level. Sriracha kale chips goth fanny pack vhs pabst health poutine. Asymmetrical slow-carb flexitarian. Vinegar hammock fixie tofu keffiyeh cray wes anderson.    13658    728    2015-06-22 01:39:13    2015-06-22 01:39:13    1
2426    Stumptown vinegar goth tilde wolf iphone. Sustainable austin keffiyeh vhs farm-to-table. Banjo quinoa asymmetrical health raw denim bushwick pickled. Twee bitters gastropub meh asymmetrical.    17669    873    2015-07-29 03:21:53    2015-07-29 03:21:53    1
2427    Art party authentic lumbersexual direct trade franzen next level. Chillwave trust fund readymade neutra letterpress. Kogi crucifix tote bag semiotics everyday food truck tumblr health. Normcore chillwave blog.    14164    681    2015-09-21 06:42:11    2015-09-21 06:42:11    1
2428    Poutine kogi viral xoxo asymmetrical hella iphone hammock. Wes anderson portland cleanse authentic vice austin biodiesel godard. Wes anderson chia freegan skateboard pork belly. Chambray stumptown tofu gentrify kinfolk wayfarers schlitz.    11380    861    2015-08-27 02:57:13    2015-08-27 02:57:13    1
2429    Meditation messenger bag carry shoreditch meggings pour-over. Freegan sriracha flannel. Lomo hella put a bird on it dreamcatcher raw denim cray vinegar salvia. Fap stumptown pinterest banjo literally leggings plaid asymmetrical.    10293    522    2015-11-13 14:38:42    2015-11-13 14:38:42    1
2430    Scenester xoxo drinking etsy single-origin coffee try-hard. Meggings try-hard freegan wes anderson tote bag. Venmo food truck typewriter. Kogi bushwick master bitters tattooed blog drinking selfies. Fingerstache truffaut thundercats whatever.    11021    627    2016-03-17 09:18:06    2016-03-17 09:18:06    1
2804    Hashtag cardigan keffiyeh 90's typewriter tofu pickled. Messenger bag yr actually. Food truck kinfolk quinoa taxidermy chia. Deep v iphone plaid pabst.    14249    557    2015-07-13 10:15:30    2015-07-13 10:15:30    1
2431    Taxidermy gentrify ramps everyday. Chicharrones heirloom sartorial. Hashtag listicle yolo chambray trust fund tilde bushwick. Cold-pressed art party raw denim authentic meh pinterest.    18545    814    2015-09-16 08:50:00    2015-09-16 08:50:00    1
2432    Fashion axe freegan semiotics beard cred jean shorts kickstarter. Pbr&b kinfolk crucifix pitchfork five dollar toast. Lumbersexual freegan pour-over venmo before they sold out polaroid. Viral leggings cleanse ethical. Tofu normcore flannel.    11185    513    2016-02-17 17:49:09    2016-02-17 17:49:09    1
2433    Brunch green juice chillwave venmo. Sriracha cleanse gluten-free fixie direct trade cold-pressed fap jean shorts. Mixtape kickstarter brunch fingerstache neutra 90's.    18465    634    2015-12-10 18:52:19    2015-12-10 18:52:19    1
2434    Butcher waistcoat crucifix cronut bitters fashion axe vinyl five dollar toast. Williamsburg austin hashtag semiotics flexitarian kitsch. Farm-to-table skateboard selvage fanny pack wayfarers cray fap narwhal. Farm-to-table loko paleo wolf kinfolk tousled pop-up.    11913    638    2015-05-23 22:09:41    2015-05-23 22:09:41    1
2436    Portland pabst authentic quinoa carry pinterest. Seitan pop-up vinegar. Schlitz intelligentsia godard pug narwhal cleanse mumblecore gluten-free. Park distillery you probably haven't heard of them carry keffiyeh farm-to-table vice tote bag. Lomo art party microdosing chillwave slow-carb.    12515    468    2016-01-12 01:15:53    2016-01-12 01:15:53    1
2437    Literally cleanse plaid pitchfork fashion axe keytar. Knausgaard deep v wolf cleanse. Biodiesel trust fund chartreuse ennui lo-fi asymmetrical shoreditch. Drinking authentic sustainable lomo literally paleo pork belly.    12109    597    2015-04-28 14:43:29    2015-04-28 14:43:29    1
2438    Cleanse master lomo try-hard actually fap. Tofu paleo whatever. Gluten-free marfa cold-pressed gentrify keffiyeh paleo. Next level fixie chartreuse pickled before they sold out ugh pop-up 3 wolf moon. Pabst farm-to-table intelligentsia ennui trust fund godard yuccie.    15895    722    2015-07-02 07:22:17    2015-07-02 07:22:17    1
2439    Authentic marfa whatever tilde cray distillery artisan cold-pressed. Whatever trust fund stumptown blue bottle bicycle rights banh mi paleo. You probably haven't heard of them seitan 8-bit bespoke mlkshk.    18816    709    2015-06-18 05:40:00    2015-06-18 05:40:00    1
2440    Small batch cred polaroid. Photo booth diy art party cold-pressed bitters pinterest lomo. Twee pug you probably haven't heard of them cardigan irony retro chicharrones poutine. Cornhole cold-pressed polaroid offal.    11846    491    2015-07-18 04:05:11    2015-07-18 04:05:11    1
2441    Franzen wes anderson neutra lomo bespoke cleanse forage. Pour-over loko austin distillery xoxo chia. Meggings slow-carb heirloom sriracha everyday letterpress. 8-bit mixtape meggings fanny pack tattooed offal fingerstache. Pabst organic scenester humblebrag disrupt.    17443    550    2015-06-30 06:12:47    2015-06-30 06:12:47    1
2442    Goth shoreditch hammock twee pop-up heirloom fap. Forage typewriter 3 wolf moon everyday cronut lumbersexual squid. Brunch austin typewriter polaroid sriracha trust fund.    11578    908    2015-05-24 18:26:25    2015-05-24 18:26:25    1
2443    Austin shoreditch etsy kogi. Gluten-free mustache normcore. Xoxo vice plaid thundercats fixie sartorial. Twee leggings keytar vegan salvia.    11707    916    2015-05-22 02:50:20    2015-05-22 02:50:20    1
2444    Truffaut migas pinterest chia pork belly raw denim. Meggings austin five dollar toast echo. Goth franzen mumblecore waistcoat.    17692    750    2015-12-27 17:51:31    2015-12-27 17:51:31    1
2445    Cardigan chambray 90's franzen post-ironic hammock lumbersexual food truck. Trust fund chartreuse raw denim typewriter health. Roof kitsch tumblr lumbersexual mlkshk pabst green juice. Selvage scenester synth waistcoat pickled tote bag bespoke slow-carb.    16402    762    2016-03-02 18:03:23    2016-03-02 18:03:23    1
2446    Listicle brooklyn sartorial keffiyeh. Leggings aesthetic vinegar. Ethical listicle loko photo booth cronut poutine.    18611    699    2016-02-10 21:59:00    2016-02-10 21:59:00    1
2447    Crucifix tumblr drinking. Wolf pug echo keffiyeh neutra 90's next level wayfarers. Selfies helvetica vinegar whatever irony godard synth. Tilde roof poutine fap chicharrones. Irony pabst echo chillwave distillery salvia.    14299    496    2015-12-16 00:55:52    2015-12-16 00:55:52    1
2448    Intelligentsia selfies meh pbr&b tattooed banh mi shoreditch kinfolk. Bushwick yuccie blog sartorial bicycle rights pug. Shabby chic fashion axe health irony.    18318    593    2016-04-18 11:45:30    2016-04-18 11:45:30    1
2449    Stumptown 90's pabst cronut kale chips pug health green juice. Tofu typewriter seitan. Quinoa echo sriracha synth venmo authentic gentrify tumblr.    10408    466    2016-01-07 07:55:55    2016-01-07 07:55:55    1
2450    Taxidermy meditation hammock. Occupy poutine deep v mumblecore. Chia flannel vinegar austin bitters chillwave tacos. Cronut lo-fi fanny pack deep v.    18509    712    2016-02-14 20:06:33    2016-02-14 20:06:33    1
2451    Vinegar art party kale chips kinfolk tattooed. Put a bird on it thundercats polaroid scenester 90's hoodie tumblr vegan. Keffiyeh master quinoa cold-pressed. Leggings actually brooklyn 8-bit kombucha meh fanny pack.    10745    735    2015-07-01 23:41:59    2015-07-01 23:41:59    1
2452    Flannel flexitarian polaroid photo booth gastropub drinking. Next level occupy vinyl literally cornhole. Wolf put a bird on it seitan marfa humblebrag listicle scenester. Pitchfork offal meggings microdosing.    15042    848    2015-08-09 08:53:55    2015-08-09 08:53:55    1
2453    Aesthetic asymmetrical brunch art party. Pour-over hammock cleanse twee marfa swag ennui. Banjo viral ramps wes anderson.    16473    933    2015-12-28 18:07:46    2015-12-28 18:07:46    1
2454    Goth loko slow-carb occupy neutra bushwick cornhole tattooed. Meggings biodiesel photo booth sustainable beard cray shoreditch raw denim. Goth poutine single-origin coffee pickled cronut. Quinoa ethical banh mi freegan. Actually knausgaard drinking kinfolk tacos.    14501    910    2015-11-09 05:12:24    2015-11-09 05:12:24    1
2455    Kitsch wes anderson vhs 90's. Kale chips poutine brunch carry whatever leggings yolo. Heirloom hoodie fixie beard cold-pressed. Ennui park tilde carry green juice next level.    11383    920    2016-03-25 03:35:21    2016-03-25 03:35:21    1
2456    Sriracha blog street flannel asymmetrical disrupt letterpress kinfolk. Small batch pabst carry. Mixtape chia viral.    10177    553    2015-08-28 13:50:08    2015-08-28 13:50:08    1
2457    Pork belly leggings shabby chic. Beard yuccie authentic shoreditch mustache tumblr. Cliche you probably haven't heard of them single-origin coffee bushwick. Art party selvage truffaut chia. Retro fap humblebrag cray.    13509    606    2016-03-01 13:03:36    2016-03-01 13:03:36    1
2458    Aesthetic sustainable franzen. Offal master godard raw denim 90's carry church-key fixie. Venmo you probably haven't heard of them chicharrones echo shoreditch selfies distillery. Lumbersexual bitters yr master freegan loko shoreditch typewriter.    17223    840    2016-02-19 23:04:13    2016-02-19 23:04:13    1
2459    Kickstarter vinyl gentrify xoxo hella. Post-ironic kombucha freegan fashion axe typewriter chillwave. Paleo literally asymmetrical tattooed fingerstache. Goth celiac you probably haven't heard of them lo-fi loko mixtape.    17411    835    2015-05-23 06:19:26    2015-05-23 06:19:26    1
2460    Cold-pressed fap park deep v carry before they sold out wes anderson. Mixtape schlitz next level chicharrones. Cray chicharrones knausgaard authentic butcher neutra biodiesel actually.    11820    780    2016-02-10 13:17:01    2016-02-10 13:17:01    1
2461    Portland gentrify lomo keffiyeh marfa pork belly. Wes anderson actually shoreditch. Trust fund meh farm-to-table typewriter offal try-hard.    14070    814    2016-02-08 14:46:56    2016-02-08 14:46:56    1
2462    Xoxo iphone green juice. Quinoa before they sold out wolf. Post-ironic hammock shoreditch health. Loko flannel knausgaard tilde. Iphone williamsburg xoxo health cold-pressed occupy seitan art party.    16163    699    2015-12-04 08:40:02    2015-12-04 08:40:02    1
2464    Roof typewriter pinterest humblebrag wes anderson pabst. Mumblecore food truck chartreuse gluten-free. Flannel post-ironic marfa keytar organic food truck put a bird on it cold-pressed. Knausgaard semiotics kitsch pbr&b locavore heirloom.    18442    790    2015-11-14 16:01:01    2015-11-14 16:01:01    1
2466    Hoodie wolf cray leggings beard. Fanny pack wolf selvage next level brooklyn taxidermy freegan. Polaroid bitters biodiesel lumbersexual. Bespoke disrupt 3 wolf moon pbr&b neutra. Pabst mustache bicycle rights flannel.    18952    663    2016-02-17 16:44:50    2016-02-17 16:44:50    1
2467    Cornhole pitchfork banh mi whatever pour-over. Retro meditation umami slow-carb hoodie crucifix 8-bit austin. 8-bit tousled polaroid.    11859    698    2015-07-07 02:53:38    2015-07-07 02:53:38    1
2468    Cornhole yuccie flexitarian forage street salvia. Ethical craft beer waistcoat yolo meh slow-carb banh mi. Paleo seitan bicycle rights salvia.    13037    858    2015-11-19 03:26:05    2015-11-19 03:26:05    1
2469    Farm-to-table swag bespoke 8-bit. Selvage church-key keffiyeh waistcoat farm-to-table try-hard trust fund intelligentsia. 3 wolf moon cold-pressed farm-to-table brooklyn organic tattooed whatever keffiyeh. Jean shorts irony iphone humblebrag ugh.    14469    894    2016-04-01 03:03:04    2016-04-01 03:03:04    1
2470    Bespoke jean shorts shabby chic food truck 90's. Fap pabst yuccie tacos tousled pug waistcoat. Chambray intelligentsia etsy cray. Shabby chic fashion axe chartreuse gentrify vice health xoxo. Chartreuse +1 fashion axe pickled quinoa.    14908    769    2016-03-15 09:26:02    2016-03-15 09:26:02    1
2471    Artisan etsy selvage cleanse pour-over aesthetic. Pickled humblebrag pabst salvia food truck authentic +1. Paleo +1 retro bicycle rights. Craft beer hoodie flannel master pour-over. Gastropub yuccie mlkshk shabby chic lumbersexual bicycle rights lo-fi.    14233    511    2015-12-18 11:26:28    2015-12-18 11:26:28    1
2472    Drinking skateboard aesthetic try-hard seitan deep v polaroid. Fap 90's meditation listicle. Sustainable authentic letterpress blog photo booth. Bushwick cliche fashion axe vegan cray. Everyday tote bag letterpress 3 wolf moon sartorial polaroid kale chips cray.    15234    826    2015-10-19 16:32:12    2015-10-19 16:32:12    1
2474    Biodiesel semiotics put a bird on it yuccie. Cold-pressed bicycle rights pabst echo williamsburg poutine. Thundercats stumptown butcher fanny pack raw denim. Food truck mustache selfies letterpress pug poutine sartorial.    12692    904    2015-12-03 01:31:48    2015-12-03 01:31:48    1
2475    Normcore asymmetrical vhs small batch fap slow-carb. Disrupt ramps kinfolk. Tousled seitan forage schlitz health.    14090    615    2015-07-27 11:18:00    2015-07-27 11:18:00    1
2476    Polaroid cred sriracha crucifix shabby chic. +1 taxidermy flexitarian 8-bit you probably haven't heard of them. Semiotics franzen banjo beard.    17408    801    2015-06-17 03:35:52    2015-06-17 03:35:52    1
2477    Offal art party retro chartreuse. Scenester pabst master drinking flannel. Church-key semiotics chartreuse pork belly pbr&b tousled swag 90's. Food truck humblebrag fanny pack. Vegan tumblr keffiyeh aesthetic godard.    11908    941    2015-12-07 04:38:37    2015-12-07 04:38:37    1
2478    Sustainable bushwick pbr&b single-origin coffee health. Meggings sartorial gluten-free cornhole mlkshk flannel. 90's cold-pressed deep v tofu occupy cronut vinegar semiotics.    16358    653    2015-08-16 00:40:27    2015-08-16 00:40:27    1
2479    Chicharrones humblebrag vhs meggings pork belly asymmetrical locavore. Biodiesel loko marfa etsy. Dreamcatcher twee blog semiotics readymade street organic retro. Pork belly pug ethical paleo asymmetrical tofu.    12164    766    2016-01-16 19:56:53    2016-01-16 19:56:53    1
2481    Blue bottle flexitarian +1 everyday godard wayfarers kale chips offal. Etsy fap pop-up messenger bag. Distillery beard venmo migas cornhole. You probably haven't heard of them small batch trust fund listicle vinyl umami.    12416    710    2015-12-09 16:55:39    2015-12-09 16:55:39    1
2482    Fashion axe helvetica cray seitan narwhal. Craft beer +1 kickstarter austin. Aesthetic pitchfork mlkshk cray paleo xoxo iphone.    17271    580    2016-02-19 16:42:47    2016-02-19 16:42:47    1
2484    Craft beer food truck blue bottle vhs chia leggings distillery. Plaid yuccie messenger bag waistcoat pop-up park hammock. Readymade slow-carb meggings chicharrones deep v chartreuse small batch. Paleo fap chartreuse pinterest disrupt thundercats sustainable bicycle rights. Pug tumblr vinyl.    13238    505    2015-07-31 03:10:19    2015-07-31 03:10:19    1
2485    Normcore selfies microdosing hammock tote bag. Slow-carb shoreditch blog kinfolk shabby chic. Bitters helvetica scenester. 90's umami cronut brooklyn tousled biodiesel thundercats.    15352    611    2015-08-16 02:40:58    2015-08-16 02:40:58    1
2486    Gluten-free iphone put a bird on it venmo freegan single-origin coffee roof. Pinterest meggings art party brunch actually green juice slow-carb. Knausgaard plaid synth. 3 wolf moon kitsch tousled messenger bag bushwick +1 ugh. Before they sold out beard heirloom post-ironic truffaut bitters.    11718    642    2015-08-08 07:04:25    2015-08-08 07:04:25    1
2487    Locavore +1 beard put a bird on it selfies. Keytar pbr&b everyday put a bird on it. Kinfolk before they sold out bicycle rights craft beer. Umami schlitz chartreuse gastropub.    14384    599    2016-02-28 23:38:46    2016-02-28 23:38:46    1
2488    Kale chips gentrify wayfarers iphone authentic etsy selvage neutra. Retro lomo 8-bit single-origin coffee. Truffaut stumptown jean shorts aesthetic before they sold out.    18634    557    2015-06-27 11:56:15    2015-06-27 11:56:15    1
2489    Tote bag waistcoat forage ennui jean shorts tousled goth. Food truck messenger bag artisan authentic plaid drinking pitchfork tote bag. Helvetica ramps vegan etsy shoreditch pbr&b yolo cronut.    10728    686    2015-05-20 22:12:26    2015-05-20 22:12:26    1
2490    Lomo kickstarter banjo echo forage authentic cray bespoke. Fap venmo deep v seitan retro park. Mlkshk craft beer viral hashtag shabby chic fingerstache tilde.    17428    935    2015-10-20 19:53:07    2015-10-20 19:53:07    1
2491    Quinoa thundercats selvage try-hard vinegar wes anderson normcore semiotics. Sriracha knausgaard chillwave vice crucifix. Lo-fi photo booth listicle selfies cornhole jean shorts shoreditch +1. Humblebrag freegan trust fund lumbersexual whatever kogi lomo.    14381    547    2015-12-31 23:52:27    2015-12-31 23:52:27    1
2492    Master forage leggings bushwick roof cronut swag skateboard. Pug yuccie literally bushwick messenger bag tacos cliche. Stumptown tousled marfa mumblecore. Pinterest literally gastropub brunch normcore craft beer scenester.    10441    515    2016-03-25 14:50:48    2016-03-25 14:50:48    1
2493    Sriracha farm-to-table beard scenester forage. Yr cliche blue bottle biodiesel ugh portland. Freegan portland xoxo celiac butcher loko goth. Meditation trust fund semiotics truffaut pour-over pug helvetica. Wes anderson lumbersexual single-origin coffee meditation lomo brunch readymade.    16748    815    2015-10-10 03:27:10    2015-10-10 03:27:10    1
2494    Kickstarter diy pug pork belly photo booth. Green juice fingerstache twee retro. Pickled aesthetic chillwave readymade austin salvia distillery. Fashion axe cardigan selvage. Kombucha retro meggings tilde vhs kitsch.    16670    952    2015-08-30 20:20:54    2015-08-30 20:20:54    1
2495    Waistcoat pop-up brooklyn tacos lumbersexual offal. Godard cronut skateboard neutra venmo beard 3 wolf moon. Thundercats hammock fingerstache small batch.    12442    756    2015-09-24 16:34:52    2015-09-24 16:34:52    1
2497    Before they sold out direct trade lo-fi wolf mlkshk distillery. Twee lumbersexual cornhole master fingerstache cred. +1 readymade chia you probably haven't heard of them organic drinking. Freegan paleo chicharrones. Cronut 3 wolf moon pop-up asymmetrical stumptown.    11650    781    2015-11-13 21:16:13    2015-11-13 21:16:13    1
2498    Echo post-ironic wes anderson vice distillery art party. Marfa pbr&b cray tote bag migas. Messenger bag cray +1 ethical forage asymmetrical. Ugh twee seitan kale chips vinegar tacos. Artisan master vice keffiyeh bicycle rights.    14061    948    2016-02-03 23:05:14    2016-02-03 23:05:14    1
2499    Kinfolk beard cred before they sold out poutine small batch fap authentic. Keffiyeh diy selvage helvetica aesthetic. Seitan craft beer schlitz next level. Freegan messenger bag green juice.    16542    694    2016-03-18 21:33:42    2016-03-18 21:33:42    1
2502    Vinyl cliche lo-fi chambray. Squid paleo actually ethical poutine. Put a bird on it sriracha craft beer hoodie direct trade skateboard vice.    12724    716    2016-02-16 04:11:02    2016-02-16 04:11:02    1
2503    Readymade vinegar mustache asymmetrical cardigan synth kale chips ennui. Irony keffiyeh brooklyn sartorial offal readymade. Yolo migas roof viral. Single-origin coffee 3 wolf moon vhs twee.    13260    597    2016-01-12 01:53:27    2016-01-12 01:53:27    1
2505    Goth pickled next level mixtape ugh. Cray carry craft beer. Plaid chartreuse butcher cleanse dreamcatcher synth truffaut. Ennui biodiesel gluten-free tofu retro listicle. Bitters offal squid ennui selfies hammock sustainable tofu.    15853    558    2015-07-21 18:51:49    2015-07-21 18:51:49    1
2507    Roof chicharrones salvia tumblr yuccie cliche gastropub irony. Fixie bushwick actually echo intelligentsia. Kinfolk kitsch jean shorts food truck ramps hella echo cardigan. Banh mi plaid meditation freegan farm-to-table semiotics. Single-origin coffee raw denim yuccie vhs cronut blue bottle ugh.    11784    748    2015-08-12 15:34:51    2015-08-12 15:34:51    1
2508    Plaid cleanse squid yuccie street. Vegan direct trade listicle raw denim fanny pack green juice. Tattooed pour-over gentrify mustache scenester tousled. Hashtag yolo hammock.    12153    877    2016-04-10 09:46:45    2016-04-10 09:46:45    1
2509    Meditation vinegar tote bag 3 wolf moon sustainable. Artisan church-key normcore. Plaid roof sriracha seitan.    12150    800    2016-03-25 14:22:42    2016-03-25 14:22:42    1
2510    Cornhole taxidermy freegan blog everyday etsy. Pickled retro irony marfa. Offal kale chips etsy heirloom semiotics.    11766    950    2016-01-14 21:37:31    2016-01-14 21:37:31    1
2511    Echo ramps vinyl. Etsy fap franzen swag. Drinking 8-bit slow-carb brooklyn banh mi freegan tilde. Kitsch bicycle rights pop-up disrupt williamsburg cliche.    11247    700    2016-01-02 23:48:08    2016-01-02 23:48:08    1
2512    Williamsburg pabst pop-up single-origin coffee vinyl farm-to-table meditation. Pbr&b goth banh mi chambray. Sartorial stumptown ennui. Seitan church-key butcher.    15430    913    2015-11-14 02:10:49    2015-11-14 02:10:49    1
2513    Ennui fingerstache hella knausgaard. Typewriter cold-pressed polaroid meh. Craft beer cred yr tumblr. Raw denim iphone tacos bespoke gentrify dreamcatcher semiotics health.    10587    641    2016-02-02 01:05:37    2016-02-02 01:05:37    1
2514    Cronut aesthetic fixie semiotics. Aesthetic small batch kombucha next level. Post-ironic microdosing cronut banh mi schlitz asymmetrical vice gentrify.    13702    483    2015-05-23 08:50:44    2015-05-23 08:50:44    1
2515    Echo slow-carb microdosing. Paleo jean shorts offal ramps yolo godard crucifix. Microdosing art party shabby chic gentrify mlkshk helvetica artisan.    15726    916    2015-04-22 17:51:49    2015-04-22 17:51:49    1
2516    Slow-carb mumblecore church-key. Franzen synth park flexitarian twee banjo single-origin coffee. Chia street taxidermy. Chicharrones blog flexitarian cornhole green juice cleanse. Ennui godard aesthetic roof umami pug shabby chic salvia.    12037    609    2015-09-04 06:31:28    2015-09-04 06:31:28    1
2517    Migas portland paleo cold-pressed distillery neutra fanny pack salvia. Meditation flexitarian trust fund bushwick whatever crucifix intelligentsia. Vinegar food truck squid banjo. Post-ironic austin everyday +1 humblebrag typewriter microdosing before they sold out. Ethical portland vice drinking twee thundercats.    14413    886    2015-10-21 19:34:51    2015-10-21 19:34:51    1
2518    Drinking +1 goth flexitarian xoxo gluten-free meggings. Typewriter plaid sriracha. Distillery kinfolk meh occupy readymade paleo. 3 wolf moon small batch photo booth distillery kickstarter bicycle rights semiotics. +1 normcore bushwick vinyl.    17160    598    2015-09-28 02:32:25    2015-09-28 02:32:25    1
2519    Brunch aesthetic vinyl migas kombucha kogi. Whatever microdosing asymmetrical marfa before they sold out master food truck you probably haven't heard of them. Farm-to-table fingerstache food truck wayfarers lumbersexual.    10336    675    2015-08-09 00:35:51    2015-08-09 00:35:51    1
2520    Vice marfa distillery drinking irony heirloom aesthetic. Raw denim small batch franzen humblebrag shoreditch. Trust fund +1 biodiesel irony tousled cold-pressed actually craft beer. Quinoa mustache meditation lo-fi bitters. Kombucha marfa yr schlitz put a bird on it tousled.    18239    644    2015-09-02 02:39:02    2015-09-02 02:39:02    1
2521    Umami heirloom ethical shabby chic goth salvia. Austin hashtag art party cleanse butcher thundercats typewriter. Tousled irony narwhal actually. Irony authentic pug echo slow-carb. Organic flannel tofu yr slow-carb asymmetrical.    11176    581    2015-12-09 22:57:14    2015-12-09 22:57:14    1
2522    Tumblr cold-pressed direct trade fap locavore vhs asymmetrical diy. Ethical bicycle rights loko vegan. Normcore intelligentsia sustainable. 90's carry helvetica meditation microdosing echo selvage.    10541    567    2016-02-11 05:03:37    2016-02-11 05:03:37    1
2523    Kogi offal paleo. Twee cornhole pug 8-bit letterpress fap. Whatever direct trade twee crucifix godard church-key vhs.    18920    850    2015-10-14 20:18:33    2015-10-14 20:18:33    1
2524    Hella +1 thundercats hashtag pour-over irony bespoke squid. Fap cliche typewriter whatever readymade narwhal. Fap gastropub pinterest meh small batch. Marfa cronut health banh mi yr kinfolk meh.    13811    492    2015-11-18 12:32:10    2015-11-18 12:32:10    1
2525    Shoreditch bicycle rights skateboard. Leggings heirloom pitchfork kinfolk synth readymade next level. Goth hammock franzen lo-fi mlkshk. Kombucha park vhs locavore deep v quinoa mlkshk. Iphone pinterest raw denim meh franzen green juice everyday selvage.    11931    499    2015-06-07 14:51:23    2015-06-07 14:51:23    1
2526    Everyday food truck yr sartorial lo-fi hoodie art party. Fashion axe thundercats listicle tousled. Dreamcatcher roof polaroid slow-carb ennui marfa swag venmo. Bespoke shoreditch polaroid chambray marfa street hammock ramps.    17678    471    2016-02-07 17:33:29    2016-02-07 17:33:29    1
2527    Disrupt flannel pabst etsy chia fixie heirloom waistcoat. Knausgaard loko cold-pressed master put a bird on it gluten-free aesthetic flexitarian. Yolo cray kitsch tumblr street xoxo tofu literally. Selfies hella shabby chic keffiyeh cornhole art party waistcoat kale chips.    18697    817    2015-06-18 05:03:00    2015-06-18 05:03:00    1
2528    +1 umami tilde. Microdosing cray lomo mixtape. Brooklyn raw denim diy carry quinoa. Tote bag bitters bushwick.    10205    796    2015-12-23 11:40:28    2015-12-23 11:40:28    1
2529    Mlkshk kinfolk seitan taxidermy health. Ethical swag mixtape leggings fingerstache shoreditch. Wolf chillwave blog loko flannel bespoke. Bespoke yuccie cronut street shoreditch pour-over tousled pork belly. Squid beard asymmetrical organic pop-up.    13131    943    2015-08-16 17:14:02    2015-08-16 17:14:02    1
2838    Marfa blue bottle venmo irony tousled knausgaard. Typewriter disrupt ugh narwhal try-hard. Literally before they sold out +1.    12779    945    2015-09-24 18:09:26    2015-09-24 18:09:26    1
2530    Bitters fashion axe readymade brooklyn quinoa. Asymmetrical vhs gluten-free ugh normcore cornhole meh post-ironic. Brunch literally vinegar sustainable squid carry before they sold out.    10755    627    2016-01-17 12:55:59    2016-01-17 12:55:59    1
2531    Everyday art party deep v pabst selfies seitan viral cold-pressed. Ennui aesthetic cred hoodie brunch carry ethical. Synth deep v bushwick artisan plaid.    15452    597    2016-03-15 03:29:40    2016-03-15 03:29:40    1
2532    Offal disrupt yr fashion axe knausgaard aesthetic chambray xoxo. Art party pork belly crucifix. Goth cred blog raw denim ramps cray post-ironic chartreuse.    15187    785    2016-01-11 22:00:52    2016-01-11 22:00:52    1
2533    Kale chips keffiyeh pbr&b. Knausgaard shoreditch master seitan goth direct trade. Pork belly kinfolk jean shorts neutra cray. Cred street skateboard. Everyday banh mi aesthetic pork belly.    18026    615    2015-12-21 20:18:10    2015-12-21 20:18:10    1
2535    Diy iphone literally dreamcatcher before they sold out synth. Yolo synth single-origin coffee. Skateboard swag goth kale chips.    15795    913    2015-08-16 18:48:30    2015-08-16 18:48:30    1
2538    Kale chips flannel kickstarter. Fixie taxidermy leggings hella viral intelligentsia cronut. Ennui fixie pop-up stumptown health irony. Normcore thundercats bespoke authentic forage irony trust fund celiac. Forage seitan photo booth thundercats schlitz waistcoat flexitarian.    13830    920    2015-05-27 11:29:26    2015-05-27 11:29:26    1
2540    3 wolf moon chillwave selfies try-hard kogi cronut helvetica seitan. Brunch carry truffaut chillwave cleanse heirloom. Quinoa disrupt 8-bit. Beard retro microdosing green juice try-hard. Wayfarers xoxo small batch tousled godard freegan loko tofu.    12204    562    2016-04-07 15:32:54    2016-04-07 15:32:54    1
2541    Jean shorts schlitz dreamcatcher kombucha gentrify yolo. Art party microdosing raw denim selvage actually. Iphone xoxo pop-up seitan truffaut bicycle rights. Cold-pressed truffaut fashion axe pug pbr&b chillwave. Pork belly chia humblebrag.    11820    820    2015-05-05 13:44:20    2015-05-05 13:44:20    1
2542    Disrupt kitsch gastropub. Iphone irony synth crucifix swag art party heirloom. Taxidermy ennui hoodie austin meh.    14753    873    2016-03-09 09:19:46    2016-03-09 09:19:46    1
2543    Mustache artisan try-hard butcher yolo organic skateboard. Farm-to-table forage pinterest goth five dollar toast everyday. Synth fashion axe ugh health kogi lo-fi. 3 wolf moon poutine quinoa asymmetrical +1 tattooed knausgaard mustache. Celiac 8-bit cred direct trade pork belly chillwave microdosing franzen.    16825    524    2015-07-19 02:57:27    2015-07-19 02:57:27    1
2544    Drinking loko pop-up sartorial mumblecore sriracha thundercats. Pickled asymmetrical chillwave yr selvage. Distillery five dollar toast narwhal pop-up marfa organic helvetica. Quinoa mustache iphone. Goth cleanse kinfolk synth.    18517    550    2015-07-11 10:01:58    2015-07-11 10:01:58    1
2545    Cold-pressed flexitarian photo booth you probably haven't heard of them. Occupy single-origin coffee dreamcatcher helvetica bushwick. Austin disrupt master synth. Put a bird on it butcher cardigan mlkshk etsy bicycle rights lo-fi. Truffaut chillwave retro master organic.    15358    573    2016-04-10 12:06:49    2016-04-10 12:06:49    1
2546    Seitan roof helvetica. Pork belly gluten-free taxidermy keffiyeh. Etsy drinking listicle keytar street.    16901    615    2016-02-23 15:08:08    2016-02-23 15:08:08    1
2547    Salvia sartorial chicharrones you probably haven't heard of them occupy pickled. Direct trade put a bird on it actually kombucha. 3 wolf moon jean shorts hella vinegar tofu chartreuse park. Tofu cray skateboard.    11606    868    2015-11-14 01:00:45    2015-11-14 01:00:45    1
2673    Paleo dreamcatcher twee echo green juice biodiesel celiac asymmetrical. Farm-to-table try-hard paleo bushwick. Sustainable selvage locavore. Portland hella photo booth. Sriracha thundercats mixtape chambray drinking.    11986    871    2016-01-01 01:21:06    2016-01-01 01:21:06    1
2548    Cliche semiotics normcore yr ethical jean shorts locavore. Hella lo-fi messenger bag craft beer kinfolk. Knausgaard ethical vegan ramps pug. Truffaut locavore post-ironic. Fanny pack asymmetrical shabby chic humblebrag fashion axe chambray actually.    17703    828    2016-04-11 10:37:57    2016-04-11 10:37:57    1
2549    Fap jean shorts wes anderson waistcoat tote bag direct trade vhs. Disrupt cold-pressed poutine next level chambray ennui messenger bag marfa. Cray mixtape drinking 3 wolf moon before they sold out kombucha diy. Distillery messenger bag single-origin coffee squid aesthetic waistcoat locavore. Bitters lomo bicycle rights.    14005    864    2015-11-27 03:18:39    2015-11-27 03:18:39    1
2550    Raw denim chartreuse jean shorts 3 wolf moon yolo thundercats. Godard artisan farm-to-table chicharrones. Farm-to-table squid paleo offal. Green juice freegan carry trust fund fap tousled blue bottle.    13554    938    2015-10-19 07:16:45    2015-10-19 07:16:45    1
2551    Deep v meh truffaut beard schlitz yolo. Normcore green juice crucifix. Humblebrag drinking cred authentic poutine selfies.    10836    596    2015-10-21 18:40:45    2015-10-21 18:40:45    1
2552    Skateboard flexitarian offal celiac. Wes anderson etsy listicle try-hard yr salvia. Austin selvage trust fund vinyl street humblebrag. Heirloom kale chips pickled.    15772    837    2016-02-21 12:55:10    2016-02-21 12:55:10    1
2554    Helvetica thundercats kinfolk. Lo-fi quinoa selvage chartreuse pug 8-bit. Yuccie single-origin coffee venmo sustainable banh mi keffiyeh intelligentsia. Tofu flannel cleanse ramps slow-carb aesthetic.    16699    587    2016-01-03 08:21:55    2016-01-03 08:21:55    1
2555    Street dreamcatcher goth. Farm-to-table blog microdosing forage scenester wes anderson whatever. Hella pug umami sartorial. Aesthetic meggings yolo.    16935    915    2015-09-19 15:16:46    2015-09-19 15:16:46    1
2556    Church-key leggings dreamcatcher five dollar toast semiotics beard migas. Slow-carb meh migas before they sold out. Schlitz mumblecore chillwave waistcoat loko paleo humblebrag.    17367    477    2015-05-12 01:17:46    2015-05-12 01:17:46    1
2558    Migas intelligentsia austin xoxo yr heirloom kinfolk taxidermy. Drinking cleanse skateboard roof pitchfork flannel. Gluten-free hashtag mustache cred organic artisan listicle cronut. Single-origin coffee selvage beard kinfolk fingerstache cardigan.    17769    571    2015-06-27 17:38:44    2015-06-27 17:38:44    1
2559    Thundercats taxidermy humblebrag banh mi cold-pressed tacos tumblr butcher. Kogi paleo trust fund. Before they sold out put a bird on it intelligentsia truffaut normcore brooklyn squid. Kinfolk pug organic post-ironic pour-over cliche. Gastropub craft beer paleo.    12359    659    2015-04-26 20:52:47    2015-04-26 20:52:47    1
2560    Try-hard selfies small batch bespoke distillery. Umami meditation kickstarter deep v slow-carb ugh tousled. Viral pug lo-fi. Gluten-free pour-over hella listicle intelligentsia tattooed kitsch.    15161    928    2015-05-05 16:41:17    2015-05-05 16:41:17    1
2561    Pour-over meh mixtape mustache ugh artisan. Swag retro pabst portland stumptown waistcoat master. 3 wolf moon franzen bicycle rights tacos kitsch wes anderson tousled ethical. Locavore truffaut lumbersexual blue bottle tacos dreamcatcher five dollar toast.    12599    773    2016-04-19 14:27:55    2016-04-19 14:27:55    1
2562    Church-key venmo polaroid. Pour-over locavore vinegar ennui forage pbr&b literally keffiyeh. Hashtag migas art party. Ugh franzen sartorial literally irony pbr&b. Diy cardigan iphone tousled stumptown.    12219    629    2015-12-13 21:52:09    2015-12-13 21:52:09    1
2563    Brunch twee etsy fanny pack carry polaroid gluten-free. Echo cardigan waistcoat. Kitsch offal thundercats semiotics heirloom meditation meh.    14953    897    2015-06-10 13:57:32    2015-06-10 13:57:32    1
2839    Tattooed chartreuse beard. Synth poutine post-ironic selfies viral. Heirloom shoreditch single-origin coffee ugh truffaut cred.    12487    808    2015-07-20 05:11:53    2015-07-20 05:11:53    1
2564    Swag skateboard disrupt. Poutine truffaut synth meh gentrify. Neutra aesthetic selfies kitsch messenger bag distillery banjo. Organic 8-bit you probably haven't heard of them synth celiac distillery.    10148    543    2015-10-02 14:37:10    2015-10-02 14:37:10    1
2565    Squid aesthetic master hoodie selfies. Forage kickstarter church-key hella. Scenester beard umami hammock post-ironic put a bird on it semiotics waistcoat. Keffiyeh plaid craft beer.    15213    545    2016-01-22 00:46:08    2016-01-22 00:46:08    1
2567    Xoxo single-origin coffee brunch pabst chartreuse art party bespoke. Street cleanse pour-over migas poutine. Artisan selfies vinyl cleanse hoodie banjo pickled plaid. Single-origin coffee mustache aesthetic etsy meggings loko kogi asymmetrical.    12587    664    2015-08-08 20:14:19    2015-08-08 20:14:19    1
2568    Ugh blog occupy portland. Before they sold out leggings typewriter godard. Irony cliche echo tofu bicycle rights neutra ramps. Deep v art party viral migas.    17526    788    2015-11-14 07:09:03    2015-11-14 07:09:03    1
2569    Jean shorts williamsburg ugh thundercats. Waistcoat portland narwhal. Chia irony pop-up goth listicle polaroid waistcoat. 3 wolf moon chillwave scenester. Gluten-free biodiesel blue bottle.    14340    494    2016-01-14 06:45:14    2016-01-14 06:45:14    1
2570    Marfa selvage mixtape vinyl. Pbr&b kickstarter retro williamsburg ennui bicycle rights. Synth truffaut tofu. Ramps beard cred intelligentsia.    12811    494    2015-10-03 00:07:14    2015-10-03 00:07:14    1
2572    Mixtape disrupt wes anderson swag messenger bag viral. Wes anderson shabby chic five dollar toast plaid keytar whatever. Kinfolk listicle pork belly gastropub cardigan ennui. Wes anderson art party flannel.    12851    622    2016-01-03 12:41:26    2016-01-03 12:41:26    1
2573    Skateboard everyday vinegar fixie. Fanny pack health marfa carry. Venmo skateboard ramps shabby chic. Wes anderson diy helvetica lomo. Dreamcatcher yr williamsburg irony.    10490    852    2015-06-14 16:33:03    2015-06-14 16:33:03    1
2574    Paleo roof fap you probably haven't heard of them carry squid. Mumblecore keytar disrupt blog echo 90's. Freegan tousled locavore. Stumptown loko pop-up. Raw denim pitchfork pop-up venmo narwhal organic.    18334    783    2015-10-18 11:29:08    2015-10-18 11:29:08    1
2575    Yolo xoxo brunch cliche twee. Deep v lumbersexual venmo taxidermy franzen chia. Carry 8-bit biodiesel tumblr loko.    16608    531    2015-07-20 00:36:06    2015-07-20 00:36:06    1
2576    Bitters craft beer authentic fap keffiyeh vinyl. Brunch dreamcatcher skateboard hashtag thundercats tousled tilde cray. Lo-fi synth hammock ennui quinoa hoodie butcher.    12847    479    2016-04-19 05:17:58    2016-04-19 05:17:58    1
2578    Normcore chambray celiac godard pop-up. Meh fixie kinfolk. Try-hard freegan taxidermy locavore dreamcatcher etsy direct trade gastropub. Vegan yuccie artisan literally cronut. 90's post-ironic seitan.    13139    959    2015-10-01 02:09:35    2015-10-01 02:09:35    1
2579    Kombucha locavore butcher squid. Blue bottle etsy viral mlkshk chambray umami single-origin coffee readymade. Biodiesel taxidermy ethical bushwick offal. Salvia literally green juice brooklyn thundercats single-origin coffee. Chia small batch fap single-origin coffee mumblecore next level.    18316    768    2015-12-19 18:21:48    2015-12-19 18:21:48    1
2580    Tofu gastropub blog. Chillwave wes anderson deep v yolo pour-over. Pop-up loko knausgaard chartreuse pabst xoxo.    18616    913    2015-10-26 02:58:49    2015-10-26 02:58:49    1
2581    Flannel meditation tattooed mlkshk salvia schlitz mustache ethical. Fixie migas church-key small batch. Gastropub brunch tacos 3 wolf moon marfa tumblr hoodie quinoa. Schlitz craft beer locavore stumptown actually.    13288    546    2015-05-28 20:22:50    2015-05-28 20:22:50    1
2582    Truffaut artisan kombucha waistcoat next level five dollar toast flexitarian bushwick. Etsy carry venmo microdosing polaroid pickled lo-fi biodiesel. Master schlitz retro pinterest small batch franzen wes anderson banh mi. Brooklyn hoodie franzen letterpress cronut offal godard quinoa. Austin mlkshk 8-bit xoxo cardigan.    12818    848    2015-08-02 10:29:24    2015-08-02 10:29:24    1
2584    Celiac diy chillwave cray pabst helvetica irony. Hashtag health selvage wes anderson salvia meggings selfies. Goth aesthetic semiotics forage.    10529    810    2015-08-19 04:26:57    2015-08-19 04:26:57    1
2585    Cliche shoreditch pinterest authentic. Cred cray typewriter. Next level listicle echo freegan farm-to-table swag typewriter chillwave. Pitchfork viral pug mixtape forage deep v vhs.    17515    710    2015-09-27 10:38:15    2015-09-27 10:38:15    1
2586    Migas disrupt hashtag pinterest mixtape mumblecore lomo taxidermy. Ugh pitchfork semiotics goth godard xoxo vinegar. Humblebrag direct trade stumptown bushwick gluten-free deep v. Meggings +1 heirloom chia next level art party.    14077    683    2015-07-31 06:38:33    2015-07-31 06:38:33    1
2587    Banjo you probably haven't heard of them chia small batch distillery xoxo. Yuccie knausgaard loko cray waistcoat bicycle rights. Seitan fashion axe +1 cleanse.    15203    937    2015-10-17 17:00:31    2015-10-17 17:00:31    1
2588    Intelligentsia ennui fap. Cray quinoa banh mi green juice chicharrones roof. Crucifix blog hella artisan tofu carry.    11202    575    2015-09-28 02:35:31    2015-09-28 02:35:31    1
2656    Wolf fingerstache plaid distillery five dollar toast lumbersexual meh. Church-key plaid readymade pour-over butcher. Selvage offal occupy crucifix gluten-free leggings flannel.    15359    634    2015-05-31 07:26:22    2015-05-31 07:26:22    1
2589    Franzen flexitarian celiac cardigan cliche. Iphone 90's stumptown cred. Wayfarers next level mustache 90's pitchfork cardigan. Cleanse tumblr cardigan listicle. Loko post-ironic health yolo craft beer readymade everyday raw denim.    10824    752    2015-08-14 07:17:17    2015-08-14 07:17:17    1
2590    Yolo chillwave fingerstache pork belly scenester letterpress typewriter. Butcher viral +1. Irony yolo retro cred. Ugh gluten-free intelligentsia deep v vinyl stumptown poutine. Yuccie everyday wolf.    13371    768    2015-06-08 10:43:23    2015-06-08 10:43:23    1
2591    Locavore intelligentsia messenger bag franzen asymmetrical. Marfa tacos wolf. Schlitz fingerstache cray kogi kale chips cred wes anderson.    13399    822    2015-08-10 22:27:05    2015-08-10 22:27:05    1
2592    Neutra cliche ugh iphone synth. Poutine green juice shoreditch skateboard echo readymade blue bottle. Ethical ramps etsy +1 blue bottle 8-bit. Try-hard yuccie keffiyeh freegan diy. Shabby chic seitan mixtape normcore gentrify mumblecore typewriter listicle.    17038    899    2015-11-06 22:42:13    2015-11-06 22:42:13    1
2593    Narwhal beard sartorial chartreuse typewriter pop-up gentrify. Direct trade single-origin coffee kogi paleo sriracha. Waistcoat messenger bag kitsch. Celiac bicycle rights butcher sartorial thundercats cleanse fingerstache.    10633    639    2015-07-15 12:34:23    2015-07-15 12:34:23    1
2594    Vinyl pop-up locavore scenester paleo pug. Asymmetrical freegan cred. You probably haven't heard of them hashtag meggings green juice.    11093    566    2015-05-25 18:13:07    2015-05-25 18:13:07    1
2595    Kickstarter taxidermy viral plaid semiotics bitters vinyl blog. Church-key carry craft beer kickstarter. Marfa flexitarian salvia.    14674    530    2015-09-13 17:37:29    2015-09-13 17:37:29    1
2596    Bitters gentrify meditation you probably haven't heard of them. Ramps keffiyeh venmo chia flannel pork belly crucifix chicharrones. Echo authentic franzen quinoa dreamcatcher kale chips.    17232    526    2015-12-07 19:53:24    2015-12-07 19:53:24    1
2598    Actually fashion axe yolo. Plaid cold-pressed forage organic chillwave kickstarter wayfarers. Health listicle blog craft beer. Lo-fi church-key yuccie kale chips trust fund gentrify echo. Polaroid organic irony.    11638    892    2015-11-14 15:35:35    2015-11-14 15:35:35    1
2599    Mumblecore taxidermy williamsburg banh mi helvetica. Lomo ramps polaroid. Pbr&b selfies flannel blue bottle intelligentsia fingerstache craft beer try-hard. Narwhal brunch trust fund microdosing. Yr chartreuse irony biodiesel thundercats selvage loko green juice.    13722    876    2016-01-06 09:00:44    2016-01-06 09:00:44    1
2601    Microdosing synth beard. Marfa cardigan butcher cold-pressed before they sold out franzen pork belly. Offal lo-fi semiotics waistcoat normcore truffaut bespoke. Fingerstache food truck bitters vhs venmo bicycle rights. Microdosing squid ramps.    16009    533    2015-12-03 11:43:50    2015-12-03 11:43:50    1
2602    Migas waistcoat flexitarian messenger bag. Tote bag slow-carb blue bottle vinyl echo. Lumbersexual chillwave whatever master small batch. Typewriter freegan williamsburg post-ironic trust fund semiotics jean shorts put a bird on it. Lumbersexual tote bag leggings mixtape banjo.    18257    562    2015-11-07 16:46:54    2015-11-07 16:46:54    1
2603    Bitters vegan typewriter truffaut raw denim pitchfork health. Organic jean shorts disrupt vinegar flexitarian. Flexitarian bitters occupy.    18131    667    2015-04-23 16:24:46    2015-04-23 16:24:46    1
2604    Truffaut vice chartreuse yr. Flexitarian small batch bicycle rights fingerstache cray beard chicharrones. Godard plaid fap. Pork belly actually fanny pack sriracha mlkshk neutra skateboard art party. Stumptown green juice ugh sriracha truffaut fingerstache meditation gastropub.    11465    479    2015-08-24 08:25:35    2015-08-24 08:25:35    1
2606    Synth selfies shoreditch celiac venmo meditation pop-up biodiesel. Occupy stumptown wes anderson five dollar toast photo booth chia messenger bag lo-fi. Lumbersexual before they sold out blue bottle williamsburg pabst narwhal polaroid.    17825    621    2015-09-26 16:07:05    2015-09-26 16:07:05    1
2607    8-bit migas humblebrag. Drinking craft beer bushwick asymmetrical semiotics forage. Cronut scenester banh mi vinegar aesthetic art party roof. Roof scenester diy kitsch bespoke fap photo booth +1. Street next level tousled farm-to-table wes anderson selfies.    11703    837    2015-11-19 00:12:30    2015-11-19 00:12:30    1
2608    Bespoke fap green juice sustainable church-key chia carry. Waistcoat pour-over pabst xoxo gluten-free keytar you probably haven't heard of them. Tacos gastropub roof trust fund waistcoat pinterest kombucha farm-to-table. Swag gastropub kogi carry shoreditch mixtape fap organic. Neutra cray you probably haven't heard of them.    13919    866    2015-08-14 03:53:00    2015-08-14 03:53:00    1
2609    Kinfolk fingerstache selfies drinking banh mi sartorial cornhole twee. Paleo vice meditation listicle park church-key umami cliche. Asymmetrical umami bitters authentic kitsch mumblecore chartreuse hashtag. Master hashtag vinyl listicle ethical. Master crucifix waistcoat iphone authentic.    16586    790    2016-03-02 06:48:36    2016-03-02 06:48:36    1
2610    Yolo pabst twee chia pbr&b xoxo. Mustache gentrify church-key seitan put a bird on it actually 8-bit. Tacos selfies plaid cold-pressed pbr&b mumblecore. Neutra fixie fingerstache letterpress scenester wolf fap.    17166    863    2015-05-23 10:28:25    2015-05-23 10:28:25    1
2611    Lumbersexual vinegar pabst artisan. 8-bit lo-fi franzen cardigan vhs meggings normcore schlitz. Retro pork belly gluten-free chicharrones flexitarian pinterest. Pork belly roof pickled chillwave authentic.    13233    763    2015-08-19 05:01:55    2015-08-19 05:01:55    1
2612    Cardigan pug franzen. Kale chips twee semiotics migas cray you probably haven't heard of them fanny pack. Authentic direct trade vinegar flexitarian tofu disrupt microdosing. Pitchfork gastropub cronut chillwave farm-to-table tote bag blog. Crucifix chia scenester literally franzen.    16589    604    2016-03-25 05:50:16    2016-03-25 05:50:16    1
2613    Yolo gluten-free godard typewriter. Squid trust fund ennui pinterest. Typewriter yr direct trade offal sustainable cold-pressed gentrify gastropub. Beard bushwick single-origin coffee meditation messenger bag cold-pressed kitsch.    12053    896    2016-03-30 02:03:35    2016-03-30 02:03:35    1
2614    Polaroid flexitarian tumblr banjo pickled everyday synth. Kickstarter master mumblecore art party yr. Polaroid brunch celiac. Wolf fashion axe artisan raw denim banjo tacos kickstarter. Venmo pug brooklyn.    14870    489    2015-10-18 17:51:39    2015-10-18 17:51:39    1
2616    Poutine banjo whatever letterpress next level viral. Trust fund cray plaid heirloom truffaut skateboard umami keffiyeh. Carry 8-bit green juice viral wayfarers mixtape.    14830    678    2016-03-18 13:33:15    2016-03-18 13:33:15    1
2617    Whatever bitters cray kickstarter thundercats +1 marfa. Neutra occupy freegan gluten-free. Truffaut cred intelligentsia literally meggings yolo.    13198    730    2016-02-29 16:24:57    2016-02-29 16:24:57    1
2618    Polaroid stumptown freegan. Mustache fingerstache neutra pbr&b typewriter flexitarian cray lo-fi. Cleanse diy asymmetrical craft beer wolf. Fixie direct trade iphone disrupt.    10410    889    2015-12-25 21:58:42    2015-12-25 21:58:42    1
2619    Viral ugh tacos narwhal slow-carb vegan bespoke. Crucifix asymmetrical fashion axe tilde chia migas. Post-ironic fap kickstarter hammock. Lomo taxidermy skateboard. Cronut umami next level cliche.    17942    777    2016-01-28 11:18:54    2016-01-28 11:18:54    1
2620    Next level synth tacos neutra pug occupy cliche typewriter. Brooklyn occupy hammock. Loko roof actually cred ugh twee viral. Schlitz flexitarian ethical hella cornhole.    18494    625    2015-06-30 04:24:51    2015-06-30 04:24:51    1
2622    Twee lomo hashtag loko park. Photo booth direct trade hashtag normcore fixie. Brunch schlitz narwhal vinyl offal kickstarter. Salvia narwhal letterpress bitters bespoke cliche meggings. Microdosing fingerstache 3 wolf moon.    10703    469    2015-11-05 05:46:26    2015-11-05 05:46:26    1
2623    Irony truffaut kickstarter schlitz. Tattooed locavore hashtag everyday xoxo mustache vinyl. Organic kogi schlitz.    17937    469    2016-02-17 05:14:00    2016-02-17 05:14:00    1
2624    Offal vhs raw denim farm-to-table whatever. Pabst gastropub raw denim whatever before they sold out. Mustache selfies aesthetic loko butcher small batch fixie. Austin goth asymmetrical.    16714    959    2015-08-01 21:52:22    2015-08-01 21:52:22    1
2625    You probably haven't heard of them yuccie etsy. Fashion axe craft beer 90's kale chips listicle. Lomo cray health tote bag diy.    14586    786    2016-04-03 06:37:59    2016-04-03 06:37:59    1
2626    Roof vhs kombucha church-key wes anderson. Park paleo kombucha photo booth brunch next level. Kale chips artisan 90's raw denim.    12046    591    2016-01-31 03:14:52    2016-01-31 03:14:52    1
2628    Godard neutra squid mustache. Chillwave kombucha cred waistcoat. Craft beer forage master shoreditch. Tofu try-hard hammock twee mixtape pour-over neutra heirloom.    15255    603    2016-01-28 09:32:29    2016-01-28 09:32:29    1
2629    Plaid dreamcatcher sartorial humblebrag. Iphone five dollar toast pabst lomo neutra church-key. Helvetica wayfarers flannel.    11804    676    2015-11-08 03:35:53    2015-11-08 03:35:53    1
2630    Put a bird on it readymade kale chips next level meggings taxidermy pitchfork lomo. Everyday jean shorts distillery yolo next level microdosing tote bag readymade. Letterpress deep v tumblr portland.    17192    745    2015-06-14 14:19:10    2015-06-14 14:19:10    1
2631    Shoreditch jean shorts pickled poutine. Five dollar toast meh migas kinfolk synth retro sriracha. Hella art party freegan helvetica bushwick slow-carb. Hashtag sustainable before they sold out godard retro.    14442    803    2015-11-16 07:52:08    2015-11-16 07:52:08    1
2632    Paleo typewriter normcore banh mi. Butcher ennui 3 wolf moon. Chia chartreuse heirloom blog migas hammock beard poutine. Hammock freegan venmo. Bitters authentic hoodie flexitarian typewriter tousled organic shoreditch.    15854    627    2015-09-28 10:40:51    2015-09-28 10:40:51    1
2634    90's skateboard helvetica dreamcatcher hammock literally xoxo polaroid. Meh drinking offal thundercats. Austin microdosing xoxo thundercats authentic pbr&b vinegar. Sustainable hammock 8-bit carry gluten-free viral raw denim bespoke.    18069    572    2015-10-20 01:08:33    2015-10-20 01:08:33    1
2635    Narwhal cray five dollar toast +1 next level craft beer brooklyn gastropub. Keffiyeh tote bag gluten-free ennui +1. Selvage ethical chambray gentrify loko umami scenester.    15175    614    2015-09-13 08:53:48    2015-09-13 08:53:48    1
2636    Small batch single-origin coffee carry hammock everyday. Seitan next level flexitarian polaroid cray. Thundercats franzen synth +1 loko selvage tattooed.    18580    836    2015-08-06 08:03:51    2015-08-06 08:03:51    1
2637    Migas wolf pbr&b put a bird on it offal typewriter pork belly mumblecore. Sriracha pabst seitan. Cronut everyday offal williamsburg loko vinegar post-ironic. Single-origin coffee intelligentsia trust fund fap marfa beard seitan. Green juice slow-carb normcore +1 salvia master schlitz.    13028    676    2015-12-02 00:34:46    2015-12-02 00:34:46    1
2638    Echo 3 wolf moon diy taxidermy celiac. Art party 3 wolf moon schlitz. Wayfarers pop-up squid microdosing small batch helvetica jean shorts.    15730    805    2015-11-07 09:15:34    2015-11-07 09:15:34    1
2639    Wes anderson cliche leggings shabby chic jean shorts waistcoat stumptown vegan. Hella knausgaard kinfolk literally. Etsy carry tilde forage pickled five dollar toast salvia.    16418    630    2015-06-23 02:59:35    2015-06-23 02:59:35    1
2642    Disrupt lo-fi raw denim drinking echo pabst park retro. Irony squid craft beer waistcoat occupy direct trade iphone. Sustainable squid tattooed you probably haven't heard of them dreamcatcher before they sold out intelligentsia sartorial. Thundercats jean shorts celiac tofu gastropub gentrify brooklyn keytar.    10336    750    2015-12-10 06:12:00    2015-12-10 06:12:00    1
2643    Retro farm-to-table poutine. Ennui dreamcatcher tumblr single-origin coffee sustainable messenger bag diy bespoke. Health readymade cred. Bitters slow-carb yolo green juice umami distillery vinyl.    17704    817    2015-08-21 12:57:38    2015-08-21 12:57:38    1
2644    +1 roof iphone goth. Offal raw denim mixtape meggings gluten-free cardigan literally. Chicharrones freegan pinterest kombucha.    18462    529    2015-10-16 17:16:57    2015-10-16 17:16:57    1
2645    Keffiyeh next level wolf tousled farm-to-table. Godard freegan ethical tousled mlkshk crucifix cray. Banjo whatever pork belly. Wayfarers shabby chic tofu listicle fixie squid. Tumblr retro listicle skateboard viral.    18540    626    2015-05-03 07:10:26    2015-05-03 07:10:26    1
2646    Yr distillery art party cronut fanny pack taxidermy chicharrones roof. Hammock brooklyn marfa slow-carb ramps lo-fi cornhole single-origin coffee. Hammock humblebrag before they sold out fap listicle cliche vhs. Hashtag single-origin coffee biodiesel authentic wes anderson banh mi. Thundercats pop-up etsy sartorial craft beer mumblecore.    17152    878    2015-12-17 16:09:27    2015-12-17 16:09:27    1
2647    Authentic fanny pack locavore butcher twee paleo small batch salvia. Bushwick umami loko tattooed sriracha scenester gentrify. Ennui deep v brooklyn dreamcatcher asymmetrical hoodie fanny pack gastropub. Photo booth sartorial seitan. Cray actually normcore shabby chic locavore.    14531    726    2015-12-08 02:55:59    2015-12-08 02:55:59    1
2648    Drinking wayfarers meggings chillwave synth 90's echo. Kitsch migas neutra gastropub pork belly distillery church-key forage. Vhs pbr&b distillery pour-over pickled mlkshk lumbersexual skateboard. Banh mi lo-fi direct trade flannel kickstarter you probably haven't heard of them tofu green juice.    15851    520    2016-02-27 01:54:46    2016-02-27 01:54:46    1
2649    Beard poutine vinyl banjo. Tacos plaid organic twee literally godard venmo freegan. Meditation skateboard paleo iphone scenester intelligentsia pitchfork retro.    13131    599    2015-08-30 07:06:48    2015-08-30 07:06:48    1
2650    Artisan raw denim cleanse cliche pitchfork xoxo tacos. Mustache celiac selfies kitsch truffaut mixtape. Blog vice vinyl. Try-hard flannel ethical keffiyeh chillwave. Aesthetic kale chips austin yolo occupy kitsch ugh.    13123    851    2015-07-04 08:33:36    2015-07-04 08:33:36    1
2651    Normcore tote bag keffiyeh fap narwhal offal chicharrones sartorial. Biodiesel you probably haven't heard of them lumbersexual selvage cronut yuccie wayfarers occupy. Fap polaroid ugh.    12053    947    2015-09-20 13:06:47    2015-09-20 13:06:47    1
2652    Try-hard offal plaid portland hashtag tattooed xoxo. Cornhole polaroid bicycle rights neutra skateboard. Farm-to-table tousled fingerstache.    11438    667    2015-08-25 22:17:34    2015-08-25 22:17:34    1
2653    Listicle cornhole banjo photo booth. Franzen meditation celiac. Umami microdosing mumblecore. Farm-to-table jean shorts +1 etsy slow-carb mumblecore irony chillwave. Crucifix schlitz poutine yolo gastropub shabby chic jean shorts kogi.    14771    749    2016-02-22 16:11:44    2016-02-22 16:11:44    1
2654    Aesthetic meditation ennui. Xoxo vinyl craft beer wayfarers hoodie try-hard normcore portland. Art party xoxo diy wolf etsy salvia.    17800    783    2015-08-04 09:00:52    2015-08-04 09:00:52    1
2657    Iphone cardigan green juice typewriter listicle truffaut trust fund. Keytar polaroid banjo kale chips. Normcore yr squid health.    11928    540    2015-07-23 07:17:14    2015-07-23 07:17:14    1
2658    +1 salvia distillery cleanse occupy. Vegan iphone helvetica leggings williamsburg carry tumblr waistcoat. Stumptown flannel bespoke squid tilde. Bitters echo loko.    17810    501    2016-04-03 22:52:21    2016-04-03 22:52:21    1
2659    Wayfarers williamsburg iphone 90's truffaut kogi meditation. Hoodie retro mixtape park thundercats twee. Cliche listicle 90's bushwick beard shabby chic.    10827    843    2015-12-13 23:46:59    2015-12-13 23:46:59    1
2660    Jean shorts thundercats wolf brunch tumblr skateboard fashion axe. Synth whatever ennui fap truffaut fingerstache. Kombucha listicle tattooed. Celiac authentic tacos five dollar toast. Salvia readymade neutra roof portland.    10882    834    2015-09-03 18:05:14    2015-09-03 18:05:14    1
2661    Farm-to-table schlitz cornhole heirloom actually kale chips. Aesthetic distillery lomo photo booth locavore sriracha cornhole tilde. Beard celiac street tofu. Jean shorts semiotics shoreditch meggings retro.    11865    727    2015-07-04 15:09:19    2015-07-04 15:09:19    1
2662    Single-origin coffee cray fixie cleanse cardigan pug. Mustache whatever kogi hashtag chambray lumbersexual. Photo booth williamsburg goth. Ugh shoreditch mustache 90's chartreuse blue bottle. Tofu flannel gastropub 3 wolf moon.    15577    484    2015-12-11 16:44:42    2015-12-11 16:44:42    1
2663    Wolf yuccie beard umami selfies. Ramps plaid kickstarter forage retro typewriter fingerstache ennui. Vinegar drinking shabby chic helvetica park fingerstache bespoke.    10969    916    2015-11-24 23:52:33    2015-11-24 23:52:33    1
2664    Gentrify +1 chambray pickled fanny pack. Microdosing 8-bit banh mi tumblr gentrify. Tumblr taxidermy godard. Gentrify godard kogi bushwick locavore hoodie.    15970    633    2016-03-31 12:08:56    2016-03-31 12:08:56    1
2665    Ennui park paleo art party. Ramps ugh fap skateboard put a bird on it direct trade wes anderson etsy. Pork belly stumptown typewriter you probably haven't heard of them.    13449    692    2016-02-07 12:47:21    2016-02-07 12:47:21    1
2666    Quinoa celiac iphone sartorial. Park master put a bird on it locavore dreamcatcher loko hashtag. Schlitz park goth dreamcatcher 8-bit bushwick. Cray chillwave selvage direct trade. Twee goth flannel tousled small batch tote bag.    10629    575    2015-09-18 15:38:29    2015-09-18 15:38:29    1
2705    You probably haven't heard of them pour-over typewriter celiac austin ramps. Selvage pickled bushwick meditation shoreditch. Marfa normcore brunch small batch vegan.    15075    695    2015-10-09 20:13:11    2015-10-09 20:13:11    1
2667    Flannel fixie wes anderson roof normcore readymade. Messenger bag hammock food truck meditation +1 master authentic pickled. Schlitz put a bird on it yolo umami. Food truck hoodie tousled polaroid kickstarter biodiesel hella.    14424    627    2016-01-12 09:42:18    2016-01-12 09:42:18    1
2668    Ethical before they sold out bushwick pickled helvetica 8-bit echo typewriter. Scenester kogi yr jean shorts +1. Scenester cray chambray raw denim. Kale chips craft beer jean shorts scenester.    15631    701    2015-07-15 09:04:44    2015-07-15 09:04:44    1
2669    Sartorial gastropub etsy cardigan loko. Cred deep v chia. Chicharrones sustainable try-hard synth.    18397    526    2015-07-30 05:11:59    2015-07-30 05:11:59    1
2670    Crucifix listicle pork belly brooklyn kombucha vinegar. Fingerstache narwhal humblebrag five dollar toast knausgaard food truck 3 wolf moon. Thundercats pbr&b before they sold out knausgaard farm-to-table trust fund pop-up. Marfa salvia pickled art party jean shorts. +1 selfies butcher pinterest put a bird on it raw denim meh.    14922    862    2015-07-22 17:06:26    2015-07-22 17:06:26    1
2671    Ethical food truck +1 shoreditch flannel. Tousled biodiesel flannel neutra typewriter. Diy squid everyday biodiesel williamsburg mustache farm-to-table. Mumblecore migas tote bag portland freegan brooklyn disrupt. Aesthetic mlkshk disrupt kinfolk tote bag shabby chic offal.    15574    610    2016-03-08 15:08:56    2016-03-08 15:08:56    1
2675    Helvetica chillwave tilde park green juice messenger bag. Green juice asymmetrical waistcoat yuccie authentic hashtag tofu blue bottle. Tote bag diy vegan swag pork belly iphone direct trade hashtag.    17231    487    2016-02-11 06:14:06    2016-02-11 06:14:06    1
2676    Wayfarers church-key thundercats waistcoat selfies microdosing vinegar. Neutra yuccie post-ironic truffaut schlitz roof kitsch godard. Artisan beard lomo venmo.    13263    480    2015-07-25 14:37:44    2015-07-25 14:37:44    1
2677    Distillery pour-over poutine tacos iphone cleanse cardigan. Truffaut chartreuse iphone fingerstache kinfolk small batch 8-bit. Fap hoodie semiotics literally beard wayfarers etsy banjo. Pickled church-key you probably haven't heard of them irony crucifix humblebrag distillery selfies.    11253    725    2016-03-27 16:19:18    2016-03-27 16:19:18    1
2678    +1 hoodie park celiac. Quinoa migas banh mi freegan. Vinyl typewriter sustainable. Distillery art party banh mi artisan normcore deep v stumptown.    13327    536    2016-04-06 12:21:02    2016-04-06 12:21:02    1
2681    Vice distillery roof sartorial mumblecore sustainable truffaut schlitz. Xoxo humblebrag austin listicle paleo. Sustainable organic vhs xoxo marfa hella chartreuse ethical.    16220    626    2016-01-28 04:49:30    2016-01-28 04:49:30    1
2682    Meditation hella flannel. Cronut vinyl waistcoat 8-bit fingerstache deep v. Vice fap health single-origin coffee humblebrag banjo pork belly narwhal. Sriracha shabby chic tote bag gentrify.    15868    533    2015-07-07 09:42:41    2015-07-07 09:42:41    1
2683    Keffiyeh fap raw denim diy narwhal wolf master. Raw denim kickstarter cliche. Disrupt brunch synth.    11437    649    2016-01-19 05:55:43    2016-01-19 05:55:43    1
2684    Dreamcatcher mlkshk scenester everyday kombucha. Photo booth single-origin coffee cornhole you probably haven't heard of them kickstarter plaid. Selfies scenester messenger bag.    13894    920    2016-04-05 08:26:50    2016-04-05 08:26:50    1
2685    Try-hard bespoke etsy farm-to-table tousled normcore cray everyday. Mixtape letterpress literally diy photo booth kitsch. Street waistcoat portland gentrify try-hard ugh tousled.    15445    690    2015-12-03 19:32:00    2015-12-03 19:32:00    1
2686    Lo-fi flannel organic pbr&b taxidermy. Chambray synth drinking offal narwhal shoreditch dreamcatcher blue bottle. Tumblr green juice yuccie. Hoodie ugh synth offal next level. Bushwick typewriter keytar you probably haven't heard of them blue bottle.    14031    874    2015-06-29 10:20:15    2015-06-29 10:20:15    1
2688    3 wolf moon williamsburg disrupt chillwave tousled scenester direct trade thundercats. Farm-to-table etsy stumptown. Humblebrag fixie umami kogi. Cred kogi mustache gastropub lumbersexual. Pug seitan swag brooklyn.    18529    694    2015-08-24 11:54:25    2015-08-24 11:54:25    1
2689    Leggings direct trade bicycle rights. Farm-to-table hammock retro post-ironic. Austin gastropub narwhal small batch sustainable mlkshk hashtag. Hoodie everyday actually ethical fixie try-hard cred.    12087    645    2015-08-06 22:27:19    2015-08-06 22:27:19    1
2690    Vinyl crucifix mixtape disrupt pbr&b meh art party kale chips. Tilde squid five dollar toast chicharrones tumblr. Art party hella selfies hammock lomo.    12687    516    2015-07-15 23:52:39    2015-07-15 23:52:39    1
2691    Retro pabst bitters gentrify mustache beard. Seitan swag loko chillwave authentic. 90's tacos intelligentsia selvage truffaut tumblr.    16913    884    2015-05-30 23:21:18    2015-05-30 23:21:18    1
2693    Selfies schlitz distillery. Chillwave fap freegan knausgaard gentrify semiotics swag. Hammock deep v mumblecore. Microdosing vinyl flannel narwhal.    12523    935    2015-12-31 13:31:09    2015-12-31 13:31:09    1
2694    Fixie deep v organic post-ironic heirloom drinking beard. 3 wolf moon thundercats banh mi. Keytar sustainable mlkshk meggings butcher tousled raw denim. Cliche stumptown poutine master 3 wolf moon keytar.    17036    674    2016-02-23 17:58:03    2016-02-23 17:58:03    1
2695    Cleanse organic chia lomo skateboard neutra fingerstache. Small batch bushwick fixie photo booth. Biodiesel fixie cliche pinterest cred. Pug irony synth.    14041    897    2015-08-20 01:06:04    2015-08-20 01:06:04    1
2696    Flannel slow-carb tattooed schlitz lo-fi. Tilde viral letterpress offal cred aesthetic. Small batch food truck before they sold out mumblecore. Food truck everyday cred slow-carb. Meggings everyday wolf.    12064    576    2015-10-24 12:13:17    2015-10-24 12:13:17    1
2697    Neutra umami photo booth small batch banjo skateboard chambray hella. Locavore kombucha normcore whatever trust fund venmo park photo booth. Quinoa put a bird on it next level. 8-bit pour-over keffiyeh. Loko whatever gastropub sustainable tilde celiac.    15409    709    2016-01-11 21:28:36    2016-01-11 21:28:36    1
2698    Drinking occupy fashion axe portland. Deep v selvage quinoa tattooed. Kinfolk dreamcatcher meggings forage 8-bit listicle gluten-free vinyl. Lumbersexual humblebrag put a bird on it hoodie freegan seitan occupy.    13612    660    2015-08-08 22:58:56    2015-08-08 22:58:56    1
2699    Single-origin coffee semiotics tattooed blog biodiesel. Squid bicycle rights cardigan chia twee. Kickstarter vhs raw denim locavore cronut banh mi cardigan 90's. Organic chicharrones distillery put a bird on it iphone cold-pressed intelligentsia. Yuccie gentrify portland flannel tofu hoodie banjo paleo.    16270    884    2015-12-11 04:29:48    2015-12-11 04:29:48    1
2700    Diy organic cornhole butcher taxidermy williamsburg. Twee iphone thundercats shoreditch. Venmo fixie put a bird on it artisan.    12881    540    2015-05-25 06:17:18    2015-05-25 06:17:18    1
2702    Locavore portland keytar. Stumptown swag yuccie sartorial skateboard loko pop-up. Drinking pickled cliche cornhole fashion axe cold-pressed roof readymade.    15260    732    2015-06-15 14:47:48    2015-06-15 14:47:48    1
2703    Vinyl brooklyn gentrify vegan. Small batch distillery shabby chic fixie organic skateboard master. Farm-to-table typewriter fanny pack.    17161    815    2016-03-25 20:41:36    2016-03-25 20:41:36    1
2704    Vice poutine mixtape typewriter hammock. Intelligentsia bitters swag tousled cardigan. Shabby chic mixtape jean shorts 3 wolf moon helvetica iphone dreamcatcher vice. Kitsch actually tofu bespoke williamsburg chicharrones. Paleo schlitz salvia beard lumbersexual.    12470    527    2015-12-02 13:35:57    2015-12-02 13:35:57    1
2840    Swag readymade raw denim church-key helvetica. Kombucha crucifix cred health organic. Cold-pressed ennui tousled.    16690    563    2016-03-05 12:19:23    2016-03-05 12:19:23    1
2736    Chartreuse locavore tacos wayfarers squid 8-bit. Raw denim occupy cardigan readymade pug fingerstache hashtag. Migas fanny pack small batch ugh heirloom echo gastropub. Offal goth cliche austin pickled.    13692    679    2015-10-28 19:57:38    2015-10-28 19:57:38    1
2706    Marfa pitchfork hoodie tumblr etsy hammock wayfarers. Sriracha leggings seitan brunch bushwick quinoa narwhal deep v. Mixtape five dollar toast wes anderson cardigan ennui ramps heirloom. Distillery gluten-free chillwave try-hard selvage sustainable pitchfork.    12738    817    2016-03-29 10:21:52    2016-03-29 10:21:52    1
2707    Lumbersexual salvia waistcoat deep v kitsch migas. Park ramps flexitarian cleanse polaroid shabby chic poutine. Franzen flannel shoreditch. Tote bag church-key franzen. Farm-to-table etsy pug 90's kogi bespoke put a bird on it freegan.    10359    556    2015-05-22 13:03:34    2015-05-22 13:03:34    1
2708    Paleo fingerstache banjo yolo narwhal cred brunch pork belly. Pickled leggings mustache whatever vinyl. Polaroid forage dreamcatcher narwhal messenger bag banjo distillery cold-pressed. Schlitz shabby chic irony. Photo booth synth disrupt.    18459    677    2015-08-17 09:27:30    2015-08-17 09:27:30    1
2709    Vhs iphone 3 wolf moon taxidermy. Authentic small batch tattooed irony lomo messenger bag kale chips bicycle rights. Gluten-free hella everyday.    17433    950    2015-09-28 12:02:53    2015-09-28 12:02:53    1
2710    Skateboard put a bird on it whatever migas chillwave distillery quinoa chicharrones. 8-bit literally aesthetic jean shorts kogi. Drinking selfies tofu semiotics polaroid vegan poutine. Kogi raw denim disrupt echo next level. Yuccie echo fingerstache pbr&b photo booth mixtape.    16661    706    2015-07-21 09:48:41    2015-07-21 09:48:41    1
2711    Kinfolk 3 wolf moon ethical. Brooklyn you probably haven't heard of them hella fingerstache cardigan hoodie artisan. Normcore pabst art party yolo. Xoxo helvetica plaid biodiesel.    17775    699    2015-09-08 02:42:24    2015-09-08 02:42:24    1
2712    Pug stumptown ugh sriracha deep v. Banh mi cornhole meh sriracha. Seitan 8-bit neutra. Sartorial vinyl flexitarian wayfarers messenger bag.    17352    871    2016-01-11 23:12:07    2016-01-11 23:12:07    1
2713    Migas squid waistcoat humblebrag small batch single-origin coffee banh mi bicycle rights. Meh cliche bushwick echo poutine. Etsy xoxo before they sold out narwhal cred truffaut cold-pressed. Cardigan etsy distillery fashion axe.    15588    857    2015-11-23 01:29:02    2015-11-23 01:29:02    1
2715    Put a bird on it squid kale chips iphone. Distillery flexitarian semiotics raw denim park. Master distillery tilde mixtape semiotics. Pour-over gluten-free aesthetic biodiesel kickstarter everyday. Asymmetrical humblebrag park ramps retro microdosing.    13522    900    2015-05-28 16:18:44    2015-05-28 16:18:44    1
2716    Art party drinking fixie ugh put a bird on it chillwave. Artisan taxidermy listicle kitsch diy squid. Cray iphone authentic slow-carb celiac chia banh mi skateboard. Aesthetic ramps franzen hammock. Kinfolk chartreuse slow-carb cold-pressed brooklyn poutine drinking.    11407    677    2015-07-10 08:27:48    2015-07-10 08:27:48    1
2717    Semiotics narwhal mustache cliche lo-fi typewriter. Food truck franzen vegan retro kitsch. Vice hella squid.    18291    940    2015-05-04 11:27:29    2015-05-04 11:27:29    1
2718    +1 selvage sustainable yuccie kogi wayfarers kitsch mustache. Wayfarers iphone vinegar stumptown. Ramps deep v 90's lomo artisan lumbersexual. Keytar distillery shabby chic cold-pressed squid single-origin coffee pork belly.    15343    593    2015-12-07 12:37:20    2015-12-07 12:37:20    1
2719    Portland yr williamsburg goth. Truffaut gastropub asymmetrical sustainable distillery tattooed. Food truck hoodie kitsch lo-fi intelligentsia synth. Vegan ugh direct trade 90's tilde drinking ennui shoreditch. Leggings organic portland raw denim actually echo typewriter.    18258    905    2016-03-23 19:43:36    2016-03-23 19:43:36    1
2720    Kombucha trust fund venmo everyday asymmetrical iphone mixtape selvage. Ugh roof beard flannel twee cornhole. Goth messenger bag chillwave you probably haven't heard of them chia chambray skateboard. Dreamcatcher skateboard helvetica organic. Pour-over freegan swag.    18903    574    2015-12-14 18:32:11    2015-12-14 18:32:11    1
2721    Vegan pabst celiac 90's small batch. Kogi etsy banjo whatever cardigan sustainable locavore fap. Listicle brunch kombucha semiotics actually franzen schlitz retro. Direct trade five dollar toast aesthetic +1 chillwave 8-bit yuccie.    16907    522    2015-11-15 13:40:03    2015-11-15 13:40:03    1
2722    Banjo distillery viral organic scenester next level. Before they sold out shoreditch green juice plaid iphone meditation slow-carb. Readymade tousled literally sriracha ugh messenger bag. Pug synth ramps shabby chic aesthetic trust fund kinfolk swag.    16695    860    2015-11-27 16:48:17    2015-11-27 16:48:17    1
2723    Deep v seitan chartreuse occupy godard whatever cray. Retro roof wayfarers shabby chic. Mlkshk trust fund artisan. Ugh loko synth typewriter. Retro roof five dollar toast pork belly farm-to-table.    10367    723    2015-11-03 01:42:01    2015-11-03 01:42:01    1
2724    Sriracha synth diy. Selfies irony vegan butcher keytar pop-up listicle gastropub. Gastropub direct trade mlkshk freegan selvage aesthetic tilde. Fashion axe health lo-fi. Echo freegan xoxo blog knausgaard twee.    15862    798    2015-12-04 05:46:44    2015-12-04 05:46:44    1
2725    Shoreditch green juice carry. Church-key vinyl plaid cold-pressed +1. Polaroid scenester hella. Put a bird on it keytar food truck literally truffaut waistcoat vinegar. Banh mi hashtag paleo loko ramps portland mustache.    11270    707    2015-10-14 20:16:52    2015-10-14 20:16:52    1
2726    Ethical flexitarian vegan migas kitsch salvia microdosing. Brooklyn 3 wolf moon synth pbr&b 8-bit neutra 90's. Seitan narwhal vinyl tote bag brooklyn.    18806    764    2016-01-11 12:06:33    2016-01-11 12:06:33    1
2728    Banh mi listicle raw denim pour-over viral vegan 3 wolf moon distillery. Green juice farm-to-table vegan authentic 3 wolf moon butcher. Pbr&b bushwick master. Occupy fanny pack williamsburg yr yuccie letterpress blog.    18560    696    2015-07-29 04:45:46    2015-07-29 04:45:46    1
2729    Kinfolk irony banjo waistcoat art party. Carry whatever knausgaard jean shorts selfies mumblecore. Flexitarian iphone pug +1. Ugh austin yolo xoxo lomo raw denim.    10404    698    2015-11-11 20:08:28    2015-11-11 20:08:28    1
2730    Tote bag flexitarian franzen vhs. Pbr&b chicharrones small batch. Vice typewriter etsy 90's church-key forage yr mlkshk. Direct trade pork belly biodiesel.    11412    819    2016-03-02 00:37:42    2016-03-02 00:37:42    1
2731    Pbr&b cornhole ennui tofu dreamcatcher. Banjo occupy skateboard tumblr intelligentsia actually post-ironic. Next level kombucha locavore single-origin coffee diy blue bottle banh mi. Squid asymmetrical fanny pack cleanse diy meditation.    11009    829    2015-05-04 21:30:51    2015-05-04 21:30:51    1
2732    Xoxo cleanse kale chips pug banjo squid bushwick. Pinterest master ethical kickstarter small batch kombucha. Waistcoat sriracha +1 post-ironic celiac craft beer.    11881    595    2016-03-03 02:21:58    2016-03-03 02:21:58    1
2733    Artisan tilde five dollar toast. Meditation beard chia banjo. Trust fund meh pinterest helvetica sriracha letterpress shoreditch. Pour-over scenester cronut blog health dreamcatcher whatever. Typewriter deep v kitsch you probably haven't heard of them.    11732    599    2015-11-01 16:22:06    2015-11-01 16:22:06    1
2734    Asymmetrical you probably haven't heard of them cronut blue bottle forage sriracha distillery. Venmo truffaut synth pabst tacos direct trade roof. Bicycle rights xoxo intelligentsia master you probably haven't heard of them photo booth wolf.    13175    661    2016-02-15 04:23:31    2016-02-15 04:23:31    1
2738    Iphone narwhal mlkshk flexitarian gastropub master. Keffiyeh authentic organic pour-over. Jean shorts cleanse flannel. Hammock polaroid authentic ennui letterpress stumptown squid.    14191    621    2015-10-11 06:36:19    2015-10-11 06:36:19    1
2739    Crucifix knausgaard normcore kombucha pour-over narwhal. Cleanse post-ironic art party cliche shabby chic. Diy mixtape cardigan farm-to-table carry gastropub disrupt. Tote bag loko locavore asymmetrical fap. Swag ennui seitan trust fund beard chambray hella.    12347    953    2015-08-28 00:29:10    2015-08-28 00:29:10    1
2740    Tacos narwhal bushwick aesthetic. Post-ironic ramps yr organic loko. Schlitz meggings you probably haven't heard of them butcher paleo art party migas vinyl.    11337    574    2015-07-03 17:41:53    2015-07-03 17:41:53    1
2741    Sartorial gentrify letterpress occupy chia aesthetic venmo brooklyn. Vinegar food truck art party microdosing pour-over. Sriracha thundercats schlitz farm-to-table deep v williamsburg vinyl sartorial. Hammock messenger bag fashion axe tousled raw denim. Banjo vegan artisan normcore hella authentic +1.    11154    758    2016-01-21 00:44:38    2016-01-21 00:44:38    1
2742    Pork belly trust fund ethical slow-carb ennui xoxo craft beer. Venmo before they sold out crucifix. Small batch vice roof put a bird on it 3 wolf moon tattooed.    14881    571    2015-09-27 01:22:38    2015-09-27 01:22:38    1
2743    Umami food truck venmo fashion axe neutra. Celiac tote bag taxidermy forage. Messenger bag scenester meh.    10367    568    2016-03-28 14:42:35    2016-03-28 14:42:35    1
2744    Kogi typewriter yolo umami. Austin quinoa gentrify fap. Umami tilde cold-pressed distillery.    16692    603    2015-11-28 16:53:34    2015-11-28 16:53:34    1
2745    Vhs meh salvia stumptown organic leggings. Slow-carb tote bag schlitz lomo 8-bit yolo tofu. Kale chips sartorial selfies pug. Ugh mlkshk before they sold out authentic.    13597    926    2015-06-20 09:22:27    2015-06-20 09:22:27    1
2746    Meggings banh mi art party banjo. Jean shorts park bicycle rights. Readymade echo helvetica. Humblebrag loko yr vinyl pug jean shorts hoodie hashtag. Synth pork belly tousled sustainable asymmetrical scenester tilde.    14728    885    2015-08-07 01:03:55    2015-08-07 01:03:55    1
2747    Single-origin coffee direct trade 90's messenger bag pour-over. Brunch etsy pork belly schlitz. Etsy flannel sustainable +1 vinegar chia. Ramps beard thundercats keytar neutra raw denim.    18076    880    2016-03-09 19:06:25    2016-03-09 19:06:25    1
2748    Lo-fi try-hard meditation skateboard gentrify kombucha plaid. Kombucha selvage hammock. Direct trade ugh hella ethical cleanse. Shoreditch stumptown pbr&b post-ironic hella helvetica. Butcher kogi art party cred normcore.    15970    511    2015-08-09 10:46:13    2015-08-09 10:46:13    1
2749    Portland 90's yuccie kale chips park twee. Cornhole tofu cleanse aesthetic. Actually meh ethical shoreditch fixie.    12809    559    2016-01-17 03:05:35    2016-01-17 03:05:35    1
2750    +1 tilde tumblr direct trade. Tote bag +1 fingerstache health fixie. Ramps umami heirloom. Thundercats gastropub pabst vegan kale chips whatever.    16310    832    2015-12-13 14:19:43    2015-12-13 14:19:43    1
2751    Drinking literally schlitz. Lumbersexual ugh neutra. Occupy microdosing five dollar toast yolo ugh tote bag asymmetrical.    12208    590    2015-10-16 02:33:55    2015-10-16 02:33:55    1
2752    Seitan synth selvage try-hard pour-over authentic whatever. Pug seitan tousled put a bird on it stumptown gentrify. Hashtag skateboard iphone austin health readymade.    10756    904    2015-11-24 06:20:19    2015-11-24 06:20:19    1
2753    Brunch slow-carb tote bag butcher. Listicle readymade put a bird on it try-hard fingerstache. Tumblr hammock wayfarers iphone wes anderson. Shabby chic meggings etsy chicharrones aesthetic mustache pitchfork street. Offal locavore before they sold out seitan master.    18013    878    2015-11-02 14:18:58    2015-11-02 14:18:58    1
2754    Pickled ennui beard taxidermy. Diy 8-bit offal microdosing. Freegan marfa gluten-free hella umami lumbersexual post-ironic. Pug skateboard trust fund.    16728    787    2016-03-05 23:16:09    2016-03-05 23:16:09    1
2756    Master portland irony. Normcore vinyl master deep v intelligentsia celiac synth yr. Lomo vinegar franzen.    17640    581    2015-06-28 06:56:08    2015-06-28 06:56:08    1
2757    Wayfarers humblebrag asymmetrical mlkshk mustache. Sriracha cold-pressed poutine organic helvetica crucifix. Tumblr humblebrag mumblecore asymmetrical hashtag ennui marfa. Everyday selfies single-origin coffee before they sold out organic cray. Carry authentic shoreditch.    10731    952    2016-04-02 20:34:55    2016-04-02 20:34:55    1
2758    Bushwick xoxo helvetica wayfarers gluten-free. Sustainable viral yolo thundercats lomo seitan kinfolk. Health vinyl chillwave.    15395    961    2016-02-12 19:23:18    2016-02-12 19:23:18    1
2759    Portland fixie cray xoxo. Readymade cardigan cronut whatever chambray. Lomo deep v messenger bag hammock pop-up meggings locavore thundercats.    13741    848    2015-04-25 12:32:05    2015-04-25 12:32:05    1
2760    Beard wayfarers tattooed. Normcore polaroid drinking vinyl brooklyn. Williamsburg iphone godard jean shorts retro. Wes anderson cliche brooklyn. Hammock xoxo cred fixie austin put a bird on it.    15623    493    2016-02-14 18:05:45    2016-02-14 18:05:45    1
2794    Pork belly kitsch hashtag pickled. Blue bottle beard tacos roof banh mi waistcoat skateboard wayfarers. Kombucha thundercats biodiesel single-origin coffee williamsburg.    12287    781    2015-05-27 16:12:28    2015-05-27 16:12:28    1
2761    Single-origin coffee scenester humblebrag gentrify hoodie bicycle rights. Marfa tote bag cardigan. Cleanse vegan tousled whatever literally carry semiotics you probably haven't heard of them. Flannel quinoa iphone fashion axe williamsburg semiotics. Authentic jean shorts tattooed tilde art party ugh.    14063    517    2015-04-22 09:31:40    2015-04-22 09:31:40    1
2764    Vegan mustache kogi portland flannel selvage. Pork belly church-key tattooed. Goth locavore post-ironic art party forage selfies quinoa distillery. Twee food truck kitsch fixie.    13837    487    2015-05-21 04:57:57    2015-05-21 04:57:57    1
2765    Selvage sustainable salvia slow-carb farm-to-table flannel single-origin coffee. Asymmetrical cardigan neutra. Keffiyeh pitchfork scenester.    18197    467    2016-02-08 11:59:48    2016-02-08 11:59:48    1
2766    Lomo craft beer iphone cardigan before they sold out sriracha bitters migas. Fingerstache narwhal tilde ugh park. Bitters tote bag meggings tattooed pork belly synth pbr&b bicycle rights. Schlitz goth locavore meh etsy hella gastropub.    11435    503    2016-01-16 05:11:37    2016-01-16 05:11:37    1
2767    Selvage keffiyeh viral 90's post-ironic pork belly. Locavore jean shorts bitters selfies ennui. Pug locavore echo 8-bit pitchfork aesthetic green juice trust fund. Yr celiac loko tilde keffiyeh.    18729    827    2015-12-05 13:58:12    2015-12-05 13:58:12    1
2768    Vegan swag salvia pinterest umami. +1 tacos cardigan master squid. Cornhole 3 wolf moon tilde 90's aesthetic. Artisan plaid authentic. Ugh flannel butcher photo booth.    16787    719    2015-08-25 22:49:19    2015-08-25 22:49:19    1
2769    Fanny pack put a bird on it keffiyeh portland pop-up wes anderson artisan. Synth pork belly raw denim tofu ramps pickled kickstarter. Kombucha umami skateboard yolo microdosing cray hella.    13778    551    2015-06-12 18:07:17    2015-06-12 18:07:17    1
2770    Shabby chic put a bird on it intelligentsia. Knausgaard neutra letterpress carry craft beer. Jean shorts forage portland wolf waistcoat. Raw denim offal lumbersexual chia beard readymade. Etsy microdosing cronut.    10965    480    2015-11-07 17:35:02    2015-11-07 17:35:02    1
2771    Fashion axe franzen kickstarter vegan. Fanny pack wolf selvage authentic try-hard pickled carry. Fap neutra health shoreditch celiac messenger bag vinyl.    10971    810    2015-05-16 23:38:15    2015-05-16 23:38:15    1
2772    Gastropub cardigan banjo disrupt street pabst semiotics roof. Etsy aesthetic brooklyn pug retro. Health fap swag narwhal celiac street fashion axe church-key. Butcher microdosing tofu semiotics normcore lo-fi art party chartreuse. Drinking wayfarers before they sold out.    18849    670    2015-12-19 21:04:28    2015-12-19 21:04:28    1
2773    Lomo cronut pop-up actually knausgaard etsy. Lomo quinoa wayfarers gentrify biodiesel schlitz vinyl. Microdosing tumblr retro tote bag direct trade cliche sriracha tattooed. Salvia meggings church-key kogi cray forage kombucha.    12217    937    2015-06-26 03:15:37    2015-06-26 03:15:37    1
2774    Stumptown polaroid irony direct trade vice authentic. Chartreuse vice fingerstache iphone gluten-free vhs roof. Hashtag truffaut seitan. Fingerstache narwhal keytar migas meggings.    12166    589    2015-06-07 23:54:37    2015-06-07 23:54:37    1
2775    You probably haven't heard of them fap organic kombucha crucifix. Kickstarter 90's marfa shoreditch. Brunch shoreditch cold-pressed. Fixie keytar gentrify crucifix ennui ramps hella craft beer.    13255    747    2016-02-07 05:17:44    2016-02-07 05:17:44    1
2776    Gastropub truffaut banjo venmo chia vegan. Etsy viral pork belly +1 chillwave cred. Heirloom scenester bicycle rights cardigan hammock tattooed diy. Mumblecore schlitz banjo.    11457    642    2016-01-15 13:29:02    2016-01-15 13:29:02    1
2778    Kombucha iphone stumptown. Gastropub +1 pickled waistcoat drinking poutine brunch tousled. Lumbersexual bushwick tofu etsy occupy tacos everyday pbr&b. Etsy hoodie ugh austin humblebrag.    18403    826    2016-04-05 20:50:50    2016-04-05 20:50:50    1
2779    Shabby chic microdosing butcher. Shabby chic pug cleanse polaroid squid. Yr chicharrones microdosing irony carry cardigan before they sold out. Slow-carb hoodie schlitz goth beard pop-up try-hard. Jean shorts williamsburg crucifix seitan.    17351    668    2015-08-03 02:33:27    2015-08-03 02:33:27    1
2780    Art party meggings quinoa butcher cronut polaroid. Sartorial waistcoat twee pug. Food truck ugh diy. Lumbersexual +1 kombucha tacos.    13872    575    2015-06-11 08:53:44    2015-06-11 08:53:44    1
2781    Vinegar forage flannel. Freegan try-hard pitchfork put a bird on it. Fanny pack hammock deep v. Tote bag letterpress selvage meditation vice sriracha bespoke knausgaard. Carry venmo church-key leggings.    13063    467    2015-08-30 06:44:10    2015-08-30 06:44:10    1
2782    Semiotics typewriter wolf iphone meditation deep v vhs craft beer. Diy craft beer fashion axe loko street. Austin brunch flexitarian. Microdosing brooklyn neutra.    12485    809    2015-10-10 01:43:55    2015-10-10 01:43:55    1
2783    Shabby chic artisan tofu narwhal raw denim tousled art party crucifix. Vinyl bitters you probably haven't heard of them. Hashtag chillwave occupy cronut xoxo. Bushwick green juice godard irony. Keytar shabby chic pinterest vhs.    12295    533    2015-06-18 05:44:17    2015-06-18 05:44:17    1
2784    Chartreuse wolf godard mumblecore vinegar small batch listicle blog. Skateboard listicle authentic goth swag deep v vhs. Selvage tote bag pickled chartreuse raw denim kale chips kickstarter. Fingerstache cold-pressed gluten-free roof single-origin coffee.    17688    636    2015-08-14 04:30:54    2015-08-14 04:30:54    1
2785    Art party leggings heirloom brunch plaid. Carry gentrify poutine blue bottle heirloom. Actually tousled franzen cornhole locavore.    17306    651    2015-04-30 20:10:53    2015-04-30 20:10:53    1
2786    Shoreditch carry austin pug distillery. Bicycle rights taxidermy neutra roof fanny pack. Actually tumblr single-origin coffee cronut aesthetic quinoa kitsch. Echo salvia iphone migas polaroid fanny pack.    11858    833    2016-01-22 00:15:20    2016-01-22 00:15:20    1
2787    Chillwave organic wayfarers butcher brunch dreamcatcher. Small batch carry pabst shabby chic selvage godard. Chambray fap meditation cold-pressed yuccie everyday. Bespoke freegan banh mi distillery ethical vinyl whatever squid.    10313    634    2016-03-20 22:16:48    2016-03-20 22:16:48    1
2788    Tote bag try-hard vegan bushwick carry crucifix butcher. Helvetica schlitz fanny pack. Narwhal crucifix vegan migas church-key heirloom chillwave. Selvage biodiesel fanny pack austin hammock art party.    14785    485    2015-06-22 21:20:26    2015-06-22 21:20:26    1
2789    Trust fund wes anderson etsy bitters migas offal kinfolk. Asymmetrical kogi venmo everyday pabst seitan. Kombucha stumptown marfa mumblecore listicle irony.    10416    806    2015-04-26 21:19:32    2015-04-26 21:19:32    1
2790    Ennui pinterest tilde freegan. Asymmetrical direct trade readymade gastropub flannel. Mustache direct trade fixie shoreditch organic pork belly sartorial ethical.    18877    563    2015-10-12 17:07:46    2015-10-12 17:07:46    1
2791    Pork belly pitchfork readymade before they sold out intelligentsia waistcoat cliche tumblr. Drinking irony leggings salvia banjo chia. Butcher pabst small batch keffiyeh disrupt.    15163    885    2015-06-05 09:31:05    2015-06-05 09:31:05    1
2792    Sustainable green juice flannel mixtape viral sriracha fanny pack. Typewriter mlkshk fanny pack bicycle rights banjo. Plaid kitsch mustache freegan health green juice sartorial thundercats. Wolf ethical pop-up shoreditch photo booth.    10853    492    2015-11-19 12:54:02    2015-11-19 12:54:02    1
2793    Tote bag pug flannel. Echo photo booth hashtag vice tofu pabst kinfolk pitchfork. Chicharrones dreamcatcher post-ironic five dollar toast. Occupy thundercats park try-hard mixtape pork belly lo-fi loko. Cliche 3 wolf moon you probably haven't heard of them cronut williamsburg.    10842    900    2015-08-14 02:46:53    2015-08-14 02:46:53    1
2795    Wolf cronut freegan poutine kombucha. Park swag mlkshk wolf ramps loko gentrify. Disrupt actually asymmetrical hashtag shoreditch. Neutra hashtag brunch. Squid cleanse heirloom narwhal asymmetrical.    11472    530    2016-01-07 16:29:54    2016-01-07 16:29:54    1
2796    Pbr&b pug austin fingerstache next level. Direct trade food truck bitters biodiesel. Sartorial cornhole ennui vhs everyday humblebrag. Kitsch shabby chic pbr&b forage bitters stumptown vinyl.    13164    543    2015-10-18 06:36:13    2015-10-18 06:36:13    1
2797    Loko tumblr lomo typewriter organic. Roof vhs sriracha ethical portland crucifix vinegar. Twee locavore fap deep v jean shorts you probably haven't heard of them. Godard tacos mustache xoxo chillwave yolo leggings.    17855    927    2015-07-31 18:14:28    2015-07-31 18:14:28    1
2798    Tilde wayfarers health vinyl cold-pressed organic vhs. Heirloom gentrify austin health blue bottle xoxo ethical. Try-hard kitsch wayfarers letterpress fanny pack leggings 3 wolf moon cronut. Ennui green juice photo booth pbr&b. Selfies put a bird on it humblebrag helvetica.    14907    774    2015-07-09 06:38:14    2015-07-09 06:38:14    1
2799    Kombucha wolf tofu. Swag chia blue bottle. Vegan five dollar toast knausgaard marfa fingerstache salvia put a bird on it craft beer. Kombucha xoxo vhs try-hard freegan celiac vinyl. Cray lo-fi seitan art party cronut tousled before they sold out narwhal.    13824    792    2015-08-20 00:47:26    2015-08-20 00:47:26    1
2801    Cardigan chambray yolo farm-to-table single-origin coffee vinyl. Bespoke post-ironic five dollar toast yuccie freegan mlkshk cardigan. Vinyl swag sustainable viral typewriter crucifix before they sold out.    11421    561    2015-09-12 12:43:13    2015-09-12 12:43:13    1
2802    Authentic five dollar toast pbr&b mlkshk pinterest mixtape brunch. Kale chips williamsburg pbr&b venmo locavore small batch authentic iphone. Twee literally keytar bushwick kinfolk kogi.    12538    788    2015-11-05 10:40:34    2015-11-05 10:40:34    1
2803    Chicharrones neutra green juice ugh seitan. Street five dollar toast microdosing bushwick tacos sustainable. Locavore marfa kinfolk sriracha meh quinoa aesthetic wes anderson.    15502    853    2015-07-16 18:07:19    2015-07-16 18:07:19    1
2805    Pour-over 3 wolf moon gluten-free readymade pop-up authentic chartreuse. Migas salvia celiac intelligentsia. Heirloom before they sold out +1 pickled pop-up put a bird on it hammock. Next level intelligentsia tote bag portland.    17900    802    2015-11-12 07:25:59    2015-11-12 07:25:59    1
2806    Godard chartreuse fixie seitan tattooed whatever. Next level pour-over fanny pack iphone tofu trust fund gastropub meggings. Farm-to-table heirloom yuccie flannel. Paleo synth church-key hammock bicycle rights diy humblebrag. Meh taxidermy forage salvia.    16236    788    2015-10-03 19:19:13    2015-10-03 19:19:13    1
2807    Schlitz forage narwhal. Bespoke drinking 3 wolf moon tumblr intelligentsia slow-carb pabst. Neutra single-origin coffee vinegar trust fund viral banjo biodiesel blog. Whatever twee hashtag synth +1 vice farm-to-table.    17515    942    2015-11-29 09:13:22    2015-11-29 09:13:22    1
2808    Vice pickled brooklyn. Kale chips banh mi tacos readymade. Mustache normcore blue bottle next level beard chia.    18853    806    2015-12-06 02:13:44    2015-12-06 02:13:44    1
2809    Drinking tofu pug hella knausgaard. Photo booth fingerstache shoreditch pinterest cornhole humblebrag pug. Church-key wolf photo booth food truck.    14554    923    2015-09-01 04:36:55    2015-09-01 04:36:55    1
2811    Kogi mustache bespoke keffiyeh slow-carb synth gentrify lumbersexual. Typewriter trust fund organic seitan williamsburg. Thundercats blue bottle lo-fi pour-over roof. Knausgaard ennui actually keytar. Master bespoke sriracha dreamcatcher.    17576    843    2016-02-22 02:47:32    2016-02-22 02:47:32    1
2812    Skateboard fingerstache goth cronut artisan vegan semiotics. Master heirloom selvage gluten-free hashtag austin asymmetrical. Austin knausgaard flexitarian narwhal selfies shoreditch scenester. Swag tofu venmo photo booth polaroid lomo mumblecore shoreditch.    16458    914    2015-07-13 19:22:05    2015-07-13 19:22:05    1
2813    Fap meh gluten-free authentic twee pour-over pinterest pabst. Celiac pork belly raw denim heirloom flexitarian. Swag drinking crucifix before they sold out deep v kombucha.    16910    835    2015-10-22 16:01:16    2015-10-22 16:01:16    1
2814    Vice cold-pressed chicharrones normcore fanny pack. Pork belly pug microdosing kombucha vinegar sartorial quinoa. Shoreditch pickled banjo umami messenger bag tousled tattooed. Roof lo-fi mlkshk swag.    18314    546    2015-10-03 02:45:44    2015-10-03 02:45:44    1
2815    Chillwave selvage swag paleo craft beer. Gentrify street helvetica. Photo booth ennui ethical diy.    17519    954    2016-04-18 10:53:10    2016-04-18 10:53:10    1
2816    Dreamcatcher echo cray cronut bespoke xoxo shoreditch. Disrupt kombucha microdosing thundercats iphone readymade green juice goth. Gastropub paleo tumblr cronut. Taxidermy blue bottle helvetica gluten-free kitsch migas trust fund. Bespoke pug banjo listicle gentrify.    17186    644    2015-10-07 06:58:27    2015-10-07 06:58:27    1
2817    3 wolf moon irony pinterest kinfolk messenger bag bespoke intelligentsia. +1 vice hoodie mustache listicle banjo. Gastropub pbr&b humblebrag fap.    12531    837    2015-09-27 02:44:10    2015-09-27 02:44:10    1
2818    Chicharrones retro art party cornhole organic. Jean shorts lomo farm-to-table ramps park cronut trust fund microdosing. Chia fashion axe xoxo.    18274    824    2015-04-24 19:25:53    2015-04-24 19:25:53    1
2819    Park thundercats wolf squid hoodie pbr&b. Ethical normcore put a bird on it cleanse retro paleo. Keytar craft beer polaroid sriracha hammock. Asymmetrical deep v bitters wayfarers fixie waistcoat. Tousled small batch carry disrupt wes anderson synth.    17415    831    2015-11-27 08:57:50    2015-11-27 08:57:50    1
2820    Knausgaard brooklyn sartorial wayfarers retro roof gentrify. Cardigan fanny pack kinfolk chillwave kale chips viral letterpress. Flexitarian fanny pack hella post-ironic drinking. Kombucha food truck vhs art party ramps chartreuse bespoke. Cardigan aesthetic typewriter carry kogi neutra.    12080    766    2015-08-26 21:21:27    2015-08-26 21:21:27    1
2821    Letterpress mustache keffiyeh distillery tacos small batch listicle. Literally mlkshk thundercats vinyl listicle. Cronut selvage +1 master. Thundercats seitan disrupt tilde sustainable.    15326    903    2016-02-07 14:46:00    2016-02-07 14:46:00    1
2822    You probably haven't heard of them everyday cred helvetica pitchfork kinfolk bitters. Tattooed wayfarers lumbersexual 90's art party quinoa fap. Etsy skateboard artisan park ramps cliche marfa scenester. Park beard xoxo.    14194    644    2015-07-02 18:55:38    2015-07-02 18:55:38    1
2823    Farm-to-table portland polaroid. Banh mi literally polaroid. Keffiyeh beard you probably haven't heard of them. Whatever godard sartorial franzen yr brooklyn crucifix.    18024    795    2015-12-14 04:35:43    2015-12-14 04:35:43    1
2824    Tacos taxidermy roof farm-to-table keffiyeh pork belly stumptown butcher. Twee readymade master. Kickstarter 3 wolf moon thundercats meditation goth.    18081    648    2016-04-19 04:24:57    2016-04-19 04:24:57    1
2825    Next level carry diy gentrify pitchfork bushwick narwhal brunch. Pug venmo microdosing cardigan cold-pressed banjo. Skateboard chillwave selfies hammock gentrify crucifix schlitz quinoa. Brooklyn xoxo 90's knausgaard forage.    11460    629    2015-08-12 08:15:37    2015-08-12 08:15:37    1
2826    Health raw denim master. Waistcoat blog ethical portland cleanse. Bicycle rights bushwick franzen. Carry marfa pop-up cornhole.    18492    935    2016-01-21 08:26:13    2016-01-21 08:26:13    1
2829    Fashion axe pabst migas blue bottle kogi stumptown meggings brooklyn. Slow-carb ramps portland. 8-bit kitsch messenger bag biodiesel. Tilde taxidermy meggings polaroid. Tousled mlkshk ethical.    17032    569    2015-06-07 23:01:41    2015-06-07 23:01:41    1
2830    3 wolf moon blog schlitz. Tattooed pork belly chambray vice pabst small batch. Twee tumblr hammock vhs knausgaard waistcoat.    18744    515    2016-02-14 15:02:13    2016-02-14 15:02:13    1
2831    Bespoke meditation chartreuse whatever cliche bitters craft beer messenger bag. Next level chambray beard. Meggings cray tofu brooklyn gastropub echo.    13108    812    2015-10-20 08:03:55    2015-10-20 08:03:55    1
2832    Roof master beard ugh. Synth celiac distillery viral mlkshk master readymade. Humblebrag whatever brooklyn blue bottle cardigan waistcoat. Poutine 90's waistcoat austin flannel xoxo.    14973    884    2015-06-07 14:46:43    2015-06-07 14:46:43    1
2833    Retro mixtape 8-bit single-origin coffee. You probably haven't heard of them drinking disrupt. Narwhal typewriter vhs fap hoodie cliche schlitz. Actually vegan paleo occupy truffaut. Butcher mumblecore bitters tilde +1 cornhole intelligentsia.    14350    659    2016-02-06 01:56:09    2016-02-06 01:56:09    1
2834    Plaid diy yolo helvetica pork belly readymade vice. Synth readymade irony. Art party try-hard drinking disrupt vice intelligentsia cardigan messenger bag. Tilde pinterest readymade. Listicle plaid swag truffaut.    13532    843    2016-02-08 17:19:51    2016-02-08 17:19:51    1
2835    Yolo flexitarian slow-carb. Vinegar farm-to-table bespoke post-ironic cronut migas offal. Beard cred knausgaard retro farm-to-table. Small batch venmo crucifix tattooed polaroid kogi before they sold out church-key. Shoreditch pbr&b normcore fap ramps.    18110    772    2015-09-20 22:32:28    2015-09-20 22:32:28    1
2836    +1 fap brunch tousled authentic chambray pug austin. Austin viral hella venmo cardigan banh mi wayfarers mixtape. Vhs small batch craft beer meditation blog schlitz biodiesel. You probably haven't heard of them occupy chicharrones cornhole readymade vinegar cliche fap. Aesthetic dreamcatcher distillery neutra everyday direct trade microdosing.    16083    667    2015-07-31 01:16:58    2015-07-31 01:16:58    1
2837    Pug diy helvetica before they sold out tattooed single-origin coffee hammock yr. Bespoke kickstarter bushwick waistcoat portland. Cornhole ethical jean shorts.    18071    889    2015-06-07 07:42:46    2015-06-07 07:42:46    1
2842    Fixie mixtape bespoke keytar shoreditch deep v. Humblebrag knausgaard roof. Church-key lumbersexual green juice plaid distillery.    18589    943    2015-06-11 01:22:23    2015-06-11 01:22:23    1
2843    Polaroid 90's kitsch fashion axe pop-up vinegar chia. Chia cliche letterpress quinoa master. Portland everyday mumblecore ethical asymmetrical hella. Carry squid humblebrag.    12159    503    2015-06-04 04:54:26    2015-06-04 04:54:26    1
2847    Hammock plaid blog fingerstache waistcoat tofu lumbersexual. Roof iphone cold-pressed photo booth. Biodiesel microdosing beard fashion axe crucifix meggings ethical lumbersexual.    17994    942    2015-07-12 09:35:59    2015-07-12 09:35:59    1
2848    Slow-carb yr vegan scenester. Kickstarter meh 90's sustainable. Umami 3 wolf moon truffaut chillwave actually before they sold out marfa.    14917    717    2015-10-10 17:45:27    2015-10-10 17:45:27    1
2849    Flexitarian blue bottle sriracha. Loko kickstarter direct trade polaroid truffaut vhs. Semiotics tacos scenester keytar small batch listicle butcher pop-up.    13220    943    2016-01-22 03:37:12    2016-01-22 03:37:12    1
2850    Iphone five dollar toast shoreditch tote bag butcher. 90's kitsch waistcoat swag tousled pabst kale chips pitchfork. Skateboard food truck sustainable put a bird on it.    11932    870    2016-03-29 17:49:21    2016-03-29 17:49:21    1
2851    Schlitz knausgaard tilde fap small batch fingerstache pabst post-ironic. Letterpress hoodie schlitz forage pabst vinegar. Portland intelligentsia swag locavore beard master. Kickstarter celiac single-origin coffee hella fashion axe vinegar. Cleanse retro pickled.    16674    839    2016-01-30 06:43:03    2016-01-30 06:43:03    1
2852    Hoodie craft beer brooklyn diy sustainable. Pour-over ramps disrupt. Iphone flannel shabby chic hashtag. Food truck kitsch gentrify park pug marfa tattooed. Offal loko quinoa fingerstache keffiyeh park.    13221    554    2016-01-28 14:28:31    2016-01-28 14:28:31    1
2853    Aesthetic fixie tilde food truck tacos master shabby chic iphone. Lo-fi +1 pitchfork chicharrones diy yr blue bottle. Tattooed scenester butcher forage meh letterpress.    15506    883    2015-08-05 18:03:39    2015-08-05 18:03:39    1
2855    Meggings yr diy. Synth cardigan health. Pabst keffiyeh +1 direct trade distillery bespoke bitters tattooed.    18496    851    2016-02-19 00:27:12    2016-02-19 00:27:12    1
2856    Plaid selvage yuccie meh taxidermy tattooed. Semiotics meditation tofu chicharrones hella. Neutra williamsburg chambray keytar.    17098    679    2015-05-22 10:07:53    2015-05-22 10:07:53    1
2857    Pinterest normcore schlitz migas wes anderson biodiesel tumblr blog. Intelligentsia retro actually cleanse listicle flannel. Portland schlitz literally humblebrag ennui. Green juice blue bottle church-key celiac typewriter leggings. Banh mi austin offal pork belly.    14657    710    2015-10-16 11:25:35    2015-10-16 11:25:35    1
2858    Sartorial mlkshk occupy ugh bushwick salvia. Gentrify church-key lo-fi ramps paleo selfies. Neutra loko art party. Single-origin coffee letterpress blue bottle etsy hammock twee yr.    16579    544    2015-06-19 23:24:30    2015-06-19 23:24:30    1
2860    Austin flannel plaid salvia brunch gentrify. Authentic craft beer next level lo-fi cardigan. Meditation williamsburg yuccie. Hella tacos viral church-key actually photo booth.    12507    783    2015-08-14 08:32:51    2015-08-14 08:32:51    1
2862    Wes anderson wayfarers semiotics art party meditation. Offal wes anderson slow-carb raw denim etsy photo booth keffiyeh food truck. Aesthetic pabst tattooed cold-pressed.    16302    836    2015-05-17 03:48:27    2015-05-17 03:48:27    1
2863    Semiotics tousled ugh pinterest. Tattooed selvage dreamcatcher cred normcore cliche retro hella. Everyday kale chips umami leggings austin.    14432    798    2015-12-22 06:01:07    2015-12-22 06:01:07    1
2864    Wolf kogi tumblr bitters diy park. Gentrify celiac chambray taxidermy tilde master wayfarers. Gastropub drinking humblebrag beard kale chips aesthetic.    16545    637    2015-05-17 19:33:23    2015-05-17 19:33:23    1
5285    Direct trade tofu carry. Flexitarian gastropub selvage retro crucifix. Semiotics microdosing lomo heirloom venmo.    16370    672    2015-12-08 02:14:54    2015-12-08 02:14:54    1
2865    Polaroid heirloom yuccie tofu offal synth aesthetic try-hard. Bitters kinfolk drinking narwhal chambray truffaut. Cold-pressed blue bottle twee yuccie. Vice kale chips kitsch. Selfies fap poutine pork belly single-origin coffee 90's hashtag schlitz.    10159    781    2016-01-04 09:17:22    2016-01-04 09:17:22    1
2866    Flannel neutra vinegar cleanse. Lomo pop-up cred readymade seitan tumblr gastropub. Bicycle rights hashtag actually etsy iphone loko try-hard master. Pug pinterest tumblr crucifix. Blog bushwick iphone 3 wolf moon tacos next level cronut.    10335    931    2015-08-07 19:28:22    2015-08-07 19:28:22    1
2867    Food truck actually park pork belly flannel master normcore wayfarers. Echo sriracha kinfolk twee scenester microdosing. Pour-over 3 wolf moon keytar cronut thundercats dreamcatcher 90's fingerstache.    15547    517    2015-09-18 13:02:34    2015-09-18 13:02:34    1
2868    Twee fixie tacos williamsburg pabst before they sold out mustache celiac. Cardigan art party chartreuse post-ironic umami distillery. Heirloom street vhs knausgaard meditation locavore distillery vegan. Cleanse salvia retro scenester health carry tattooed.    18995    844    2015-05-16 10:11:26    2015-05-16 10:11:26    1
2869    +1 lo-fi readymade. Blog brunch bespoke chia seitan kombucha irony bitters. Health single-origin coffee cornhole normcore +1 seitan.    12454    540    2015-05-18 23:51:27    2015-05-18 23:51:27    1
2870    Bitters semiotics five dollar toast single-origin coffee kale chips roof migas seitan. Meh tattooed meggings biodiesel vice cliche schlitz. Paleo pop-up farm-to-table. +1 listicle direct trade street post-ironic scenester.    14108    923    2015-09-29 19:06:00    2015-09-29 19:06:00    1
2871    Pabst before they sold out offal direct trade tofu hoodie ugh. Venmo wolf cleanse heirloom migas tote bag. Williamsburg craft beer blue bottle salvia echo tacos.    10174    712    2015-11-04 17:07:01    2015-11-04 17:07:01    1
2873    Portland drinking retro umami. Heirloom cray poutine cold-pressed kitsch carry wolf austin. Xoxo kinfolk migas.    16576    681    2015-11-24 23:53:01    2015-11-24 23:53:01    1
2875    Wayfarers asymmetrical godard salvia green juice leggings. Bushwick venmo semiotics pickled franzen. Stumptown farm-to-table skateboard iphone heirloom tattooed. Chicharrones knausgaard tattooed. Cleanse whatever roof wes anderson sartorial.    16465    801    2016-04-03 01:37:23    2016-04-03 01:37:23    1
2876    Park hammock typewriter. Mumblecore cold-pressed pitchfork. Irony meditation sriracha bespoke yuccie lumbersexual polaroid. Deep v intelligentsia ramps 3 wolf moon.    10082    761    2016-02-12 07:31:39    2016-02-12 07:31:39    1
2877    Kinfolk cred yuccie health skateboard cornhole. +1 microdosing neutra cray typewriter mlkshk. Intelligentsia everyday cred bicycle rights authentic.    16125    785    2016-01-27 01:18:04    2016-01-27 01:18:04    1
2878    Kogi fingerstache street kinfolk scenester carry. Keffiyeh bushwick authentic godard iphone tilde pop-up 8-bit. Street normcore messenger bag disrupt bespoke. Goth banjo cliche quinoa fashion axe forage cold-pressed cornhole. Trust fund swag taxidermy.    11004    482    2016-03-09 05:23:26    2016-03-09 05:23:26    1
2879    Venmo gentrify polaroid. Try-hard flexitarian tilde cornhole bushwick xoxo meggings portland. Cred occupy leggings meggings meh listicle.    15208    679    2015-08-10 19:34:30    2015-08-10 19:34:30    1
2880    Roof try-hard tacos. Vegan pour-over whatever craft beer distillery health migas. Carry ramps fixie. Yuccie migas lomo blue bottle. Literally thundercats fashion axe shoreditch selfies brunch hoodie bitters.    18421    663    2015-06-22 05:26:19    2015-06-22 05:26:19    1
2881    Ethical cred venmo. Literally shabby chic xoxo. Green juice semiotics direct trade slow-carb dreamcatcher sriracha meh. Banh mi bushwick organic tattooed.    10387    655    2016-01-15 17:45:19    2016-01-15 17:45:19    1
2882    Trust fund bicycle rights viral post-ironic vegan quinoa migas meditation. Normcore viral swag offal twee pug venmo. Mixtape wayfarers jean shorts intelligentsia irony. Actually ennui master crucifix disrupt freegan farm-to-table.    17867    929    2016-03-29 09:57:59    2016-03-29 09:57:59    1
2883    Distillery pug pinterest gentrify occupy fashion axe ethical pork belly. Sartorial taxidermy cliche ugh mixtape. Salvia mumblecore try-hard austin kale chips.    17073    728    2015-05-07 07:31:29    2015-05-07 07:31:29    1
2884    Tote bag leggings tilde pickled chia pork belly pour-over disrupt. Single-origin coffee hella retro poutine. Quinoa pitchfork cardigan pop-up stumptown aesthetic diy. Irony kale chips brunch knausgaard ugh food truck cray banjo. Whatever cliche sustainable church-key fingerstache.    16525    807    2015-05-17 07:08:17    2015-05-17 07:08:17    1
2885    Vegan paleo blog you probably haven't heard of them vice. Roof banh mi etsy chambray cold-pressed. Authentic park ennui health meditation narwhal small batch sustainable. Franzen pitchfork chartreuse mustache tattooed offal.    15288    957    2015-09-13 23:47:42    2015-09-13 23:47:42    1
2886    Semiotics cliche ennui meditation mumblecore yuccie flexitarian food truck. Disrupt franzen loko church-key pbr&b cardigan yuccie. Kinfolk skateboard gentrify blue bottle hella ethical kale chips goth. Post-ironic cardigan meggings blog heirloom marfa.    10800    616    2015-09-19 08:40:56    2015-09-19 08:40:56    1
2887    Tilde lomo migas knausgaard five dollar toast post-ironic brooklyn. Irony intelligentsia xoxo meggings quinoa authentic lo-fi kickstarter. Lo-fi kitsch cronut 90's schlitz vhs. Synth farm-to-table venmo.    10321    598    2015-11-15 11:01:10    2015-11-15 11:01:10    1
2889    Sustainable fixie letterpress microdosing vegan farm-to-table trust fund kickstarter. Messenger bag raw denim yolo 3 wolf moon iphone plaid stumptown. Typewriter echo wolf cardigan quinoa pop-up kinfolk mixtape.    18438    712    2015-12-15 10:53:35    2015-12-15 10:53:35    1
2890    Crucifix franzen trust fund blue bottle 3 wolf moon. Try-hard messenger bag hammock. Hella ugh health whatever. Shabby chic mlkshk kitsch forage vice viral roof.    14243    822    2015-08-26 00:14:16    2015-08-26 00:14:16    1
2891    Put a bird on it you probably haven't heard of them semiotics. Ramps vice swag. Sartorial knausgaard gluten-free lo-fi beard retro fap. Yuccie quinoa hella humblebrag distillery mustache ramps pug.    18432    678    2016-02-20 08:05:34    2016-02-20 08:05:34    1
2893    Knausgaard seitan mumblecore. Deep v health pbr&b semiotics. Fashion axe tilde food truck asymmetrical cleanse tattooed meditation squid. Fanny pack hoodie post-ironic mlkshk +1 bushwick.    18241    756    2015-05-29 13:48:12    2015-05-29 13:48:12    1
2894    Readymade lomo viral raw denim disrupt iphone cred synth. Put a bird on it farm-to-table ramps pug kinfolk. Normcore loko five dollar toast cardigan skateboard. Meditation crucifix gentrify authentic deep v.    14170    938    2016-03-12 02:24:10    2016-03-12 02:24:10    1
2896    Vinegar williamsburg blog. Master franzen offal twee listicle whatever. Before they sold out neutra keytar tofu loko trust fund. Small batch art party cold-pressed quinoa locavore chicharrones biodiesel intelligentsia. Gluten-free fap migas actually meditation knausgaard.    17523    875    2015-05-18 07:41:11    2015-05-18 07:41:11    1
2897    Five dollar toast lomo venmo portland sartorial wayfarers. Dreamcatcher freegan sartorial +1 fap marfa. Mixtape diy photo booth.    12147    947    2015-12-14 19:52:42    2015-12-14 19:52:42    1
2898    Pork belly beard actually leggings vhs drinking. Meditation schlitz cliche keffiyeh loko mlkshk chicharrones marfa. Seitan blog yolo xoxo mumblecore echo.    15371    803    2015-09-02 08:39:08    2015-09-02 08:39:08    1
2899    Salvia shoreditch swag flexitarian stumptown leggings keytar. Austin salvia messenger bag sustainable williamsburg. Ugh lumbersexual echo. Tofu synth lumbersexual yr street 3 wolf moon.    13193    936    2016-03-23 17:33:27    2016-03-23 17:33:27    1
2900    Leggings next level scenester ramps. Iphone before they sold out synth wes anderson. Echo helvetica umami chicharrones. Selvage fingerstache health salvia artisan fashion axe cronut tilde.    17769    670    2015-09-16 20:08:11    2015-09-16 20:08:11    1
2901    Gentrify sustainable wes anderson. Poutine retro pickled craft beer pabst intelligentsia put a bird on it fingerstache. Intelligentsia blog 3 wolf moon craft beer pinterest fap vhs pabst. Artisan hella vegan authentic quinoa gastropub meh street. Tote bag mustache blog readymade single-origin coffee taxidermy seitan.    16490    841    2016-02-23 05:22:01    2016-02-23 05:22:01    1
2902    Seitan kinfolk kombucha messenger bag. Five dollar toast keffiyeh skateboard cred shoreditch fashion axe gastropub. Meditation viral mixtape chillwave letterpress pitchfork fap etsy. Bespoke letterpress neutra cray. Aesthetic kinfolk vhs microdosing readymade pour-over sustainable.    12393    538    2016-04-11 20:53:18    2016-04-11 20:53:18    1
2903    Disrupt marfa yr gastropub plaid tousled normcore. Williamsburg pbr&b helvetica lo-fi crucifix farm-to-table. Lo-fi echo wayfarers mustache scenester direct trade. Retro art party humblebrag williamsburg.    16056    758    2015-10-21 08:05:49    2015-10-21 08:05:49    1
2904    Gentrify iphone direct trade. Fanny pack shoreditch pug typewriter. Farm-to-table street try-hard hashtag tumblr mixtape blue bottle occupy. Cray bicycle rights forage gluten-free kickstarter celiac. Truffaut tofu sustainable.    16118    797    2016-04-10 21:11:33    2016-04-10 21:11:33    1
2905    Chillwave sartorial ugh. Beard pitchfork brooklyn cold-pressed. Authentic typewriter biodiesel lumbersexual tattooed kitsch deep v. Chartreuse fingerstache vinegar. Brooklyn twee cold-pressed shabby chic sartorial typewriter asymmetrical.    12799    714    2015-07-15 19:22:01    2015-07-15 19:22:01    1
2906    Shoreditch pabst tattooed cronut goth. Migas sriracha listicle. Street lomo tumblr vice irony tattooed. Chicharrones keytar cornhole.    12946    559    2015-12-02 11:08:57    2015-12-02 11:08:57    1
2907    Chambray freegan skateboard deep v yr. Roof gluten-free yuccie humblebrag selfies. Portland vegan ramps franzen. Godard actually kinfolk chillwave tumblr messenger bag yuccie farm-to-table.    16625    633    2015-11-03 03:49:48    2015-11-03 03:49:48    1
2908    Vinyl craft beer mustache lo-fi banjo narwhal cliche knausgaard. Authentic austin 8-bit yuccie selfies quinoa. Master celiac skateboard chia small batch jean shorts mumblecore xoxo.    16916    520    2016-04-06 18:20:38    2016-04-06 18:20:38    1
2910    Cornhole artisan yr sartorial literally. Cold-pressed cray hammock meditation carry. Tattooed chillwave trust fund heirloom synth 90's marfa vice.    12043    749    2015-11-16 22:44:33    2015-11-16 22:44:33    1
2911    Hammock selvage chartreuse direct trade. Cardigan everyday salvia scenester fixie ramps tumblr sartorial. Gluten-free stumptown fap poutine neutra craft beer.    16617    800    2015-07-17 22:06:04    2015-07-17 22:06:04    1
2912    Tacos chillwave shabby chic bushwick butcher fingerstache seitan tousled. Cronut vhs blog beard ethical. Kickstarter ethical viral thundercats bicycle rights etsy small batch gluten-free. Cliche lumbersexual pug 90's put a bird on it banjo intelligentsia. Vinegar shabby chic sustainable meh.    14668    705    2015-11-30 04:48:53    2015-11-30 04:48:53    1
2913    Farm-to-table pop-up food truck tote bag slow-carb neutra letterpress knausgaard. Carry health fashion axe. Vhs poutine kogi hashtag austin.    11674    641    2016-01-09 01:20:33    2016-01-09 01:20:33    1
2915    Stumptown lo-fi plaid cornhole vegan pinterest. Meggings seitan craft beer tattooed godard swag synth thundercats. Diy portland semiotics locavore synth selfies fanny pack migas.    12147    494    2015-07-14 13:31:17    2015-07-14 13:31:17    1
2916    Etsy brunch 90's locavore tote bag. Locavore pork belly pbr&b keytar salvia hammock polaroid yuccie. Cold-pressed synth pour-over 3 wolf moon craft beer celiac hammock. Messenger bag try-hard irony kitsch.    11178    584    2015-04-30 07:15:39    2015-04-30 07:15:39    1
2918    Trust fund kombucha mumblecore 8-bit jean shorts 90's selvage. Organic freegan raw denim thundercats cronut keytar marfa. Messenger bag five dollar toast tousled vhs keffiyeh. Squid 8-bit marfa. Art party cardigan gentrify leggings kickstarter selvage ramps.    13252    769    2016-04-18 05:12:01    2016-04-18 05:12:01    1
2919    Kombucha williamsburg squid. Asymmetrical authentic tattooed wayfarers organic cliche. Biodiesel yuccie tote bag.    18183    947    2016-04-08 10:42:59    2016-04-08 10:42:59    1
2921    Letterpress park hella meditation small batch cray marfa. Banh mi street irony fingerstache cold-pressed. Neutra you probably haven't heard of them gentrify cliche ramps poutine bespoke sartorial.    13830    624    2015-06-11 08:46:35    2015-06-11 08:46:35    1
2924    Wes anderson skateboard readymade marfa celiac hammock banjo. Retro disrupt meditation. Ugh vegan try-hard narwhal. Gentrify tacos post-ironic squid.    16207    594    2015-09-24 02:42:31    2015-09-24 02:42:31    1
2925    Waistcoat mumblecore keytar pickled. Wayfarers pickled leggings locavore ugh. Craft beer green juice slow-carb. Disrupt next level lo-fi meggings lomo butcher.    11037    682    2015-11-26 22:34:36    2015-11-26 22:34:36    1
2927    Ethical pinterest etsy kale chips salvia. Actually bespoke tofu occupy stumptown meh keytar. Knausgaard kale chips green juice yuccie flexitarian.    14376    955    2015-09-19 00:25:40    2015-09-19 00:25:40    1
2928    Beard mixtape church-key biodiesel. Chambray cold-pressed hammock fixie scenester fanny pack cray cred. Portland paleo ramps brooklyn occupy. Skateboard vinegar franzen.    17952    946    2015-12-29 05:41:30    2015-12-29 05:41:30    1
2929    Try-hard polaroid pour-over 3 wolf moon quinoa biodiesel pug jean shorts. Hashtag wes anderson five dollar toast roof ramps. Dreamcatcher austin normcore single-origin coffee schlitz pickled. Flexitarian cred poutine organic single-origin coffee lumbersexual 3 wolf moon butcher.    16780    883    2015-12-14 04:08:20    2015-12-14 04:08:20    1
2930    Microdosing ramps etsy. Banjo sartorial kickstarter hashtag. Authentic fap church-key shoreditch pickled microdosing narwhal.    10215    777    2015-07-20 04:01:52    2015-07-20 04:01:52    1
2931    Cold-pressed helvetica park scenester poutine kitsch. Skateboard everyday lumbersexual. Mumblecore gentrify kinfolk semiotics brunch hella hoodie. Lumbersexual chillwave brooklyn banjo marfa.    14849    918    2015-12-19 01:10:04    2015-12-19 01:10:04    1
2932    Photo booth pickled deep v. Raw denim +1 try-hard vinyl street yr. Poutine tattooed selvage lo-fi flannel. Artisan 90's farm-to-table heirloom pabst. Fanny pack brooklyn semiotics diy hammock before they sold out shabby chic.    10539    703    2015-05-24 18:10:58    2015-05-24 18:10:58    1
2933    Synth pop-up microdosing fingerstache offal 90's brooklyn. Scenester hashtag iphone actually heirloom schlitz mustache. Readymade xoxo ennui five dollar toast kombucha vinyl.    13009    498    2015-07-24 00:45:33    2015-07-24 00:45:33    1
2934    Butcher mumblecore viral. Food truck fap drinking polaroid seitan kinfolk. Tote bag kickstarter skateboard authentic raw denim. Deep v twee mlkshk everyday photo booth kitsch five dollar toast.    15653    820    2015-09-01 23:18:52    2015-09-01 23:18:52    1
2935    Venmo deep v vhs tattooed tacos cronut squid. Lo-fi tofu tacos crucifix hoodie humblebrag. Schlitz irony kickstarter pug lumbersexual neutra 3 wolf moon. Everyday kale chips blog quinoa intelligentsia leggings. Keytar 90's ramps squid skateboard pug intelligentsia.    17930    512    2016-01-11 01:28:18    2016-01-11 01:28:18    1
2936    Pour-over marfa thundercats 3 wolf moon. Master authentic squid chambray 90's try-hard roof literally. Irony vhs yr. Umami pickled tattooed fap kitsch xoxo.    18553    672    2015-07-23 17:20:04    2015-07-23 17:20:04    1
2937    Blue bottle you probably haven't heard of them paleo sartorial franzen intelligentsia church-key authentic. Pop-up austin cornhole single-origin coffee. Semiotics vhs normcore messenger bag vinyl cliche. Cronut kale chips godard blog park.    12288    796    2016-03-24 20:05:55    2016-03-24 20:05:55    1
3003    Franzen goth vinegar waistcoat ugh keytar. Meggings food truck hella. Carry williamsburg hashtag. Street wes anderson intelligentsia deep v.    16125    819    2015-08-07 11:11:54    2015-08-07 11:11:54    1
2938    Tofu neutra portland williamsburg lomo irony keytar. Echo tousled austin art party wolf heirloom. Hella chicharrones shoreditch meh pitchfork. Next level tacos tattooed organic hashtag. Migas stumptown listicle direct trade heirloom biodiesel.    14775    629    2016-02-29 21:16:08    2016-02-29 21:16:08    1
2939    Irony tote bag kinfolk offal knausgaard fap xoxo. Truffaut ugh hashtag. Twee organic wes anderson truffaut messenger bag marfa chartreuse shabby chic. Kitsch organic master. Chillwave try-hard bushwick portland.    13344    578    2016-03-23 16:35:24    2016-03-23 16:35:24    1
2940    Health pinterest distillery meggings. Neutra post-ironic kinfolk scenester fanny pack direct trade. Roof loko hoodie cornhole cronut. Tilde twee banh mi.    16173    864    2015-08-04 20:15:50    2015-08-04 20:15:50    1
2941    Kitsch craft beer kinfolk umami health carry 8-bit hella. Hoodie crucifix green juice tousled kale chips. Fashion axe mumblecore vegan vinegar blue bottle. Dreamcatcher try-hard fap.    11070    475    2016-02-10 16:22:44    2016-02-10 16:22:44    1
2942    Narwhal church-key salvia mumblecore kombucha fanny pack post-ironic. Tattooed hoodie skateboard organic occupy pork belly authentic bespoke. Salvia forage banh mi occupy pork belly. Helvetica neutra franzen. Readymade banjo intelligentsia church-key heirloom truffaut meh.    15149    620    2015-11-20 20:37:15    2015-11-20 20:37:15    1
2943    Iphone migas flannel viral. Farm-to-table before they sold out distillery cliche readymade. Polaroid pop-up you probably haven't heard of them williamsburg cornhole meh 90's.    11424    482    2015-09-15 13:13:13    2015-09-15 13:13:13    1
2944    Loko biodiesel fanny pack humblebrag kitsch stumptown austin. Ramps intelligentsia single-origin coffee tousled roof neutra cliche. Kale chips wes anderson cleanse yuccie viral etsy godard. Vice blog irony waistcoat squid cray loko small batch.    17708    591    2016-02-17 10:50:27    2016-02-17 10:50:27    1
2945    Five dollar toast fap locavore normcore. Celiac kogi single-origin coffee 3 wolf moon 8-bit. Twee selfies cleanse yr. Forage lo-fi knausgaard tote bag synth. Trust fund flexitarian lumbersexual 3 wolf moon roof brunch.    13167    608    2016-03-05 19:20:53    2016-03-05 19:20:53    1
2946    Vinyl blog ramps distillery photo booth diy chicharrones. Pickled neutra chicharrones. Stumptown flexitarian tacos gentrify street.    16634    892    2015-11-11 05:06:02    2015-11-11 05:06:02    1
2947    Chicharrones yr intelligentsia. Occupy microdosing cornhole selfies. Swag artisan fanny pack mixtape. Photo booth tote bag quinoa +1. Lumbersexual fashion axe beard tofu truffaut squid trust fund yuccie.    16738    619    2015-12-27 20:34:07    2015-12-27 20:34:07    1
2948    Vinegar squid post-ironic aesthetic shabby chic. Five dollar toast sustainable meggings tofu ethical iphone polaroid freegan. Quinoa keffiyeh tote bag carry before they sold out listicle vinegar.    15217    772    2015-12-01 10:05:10    2015-12-01 10:05:10    1
11985    Kombucha raw denim fap sartorial flexitarian. Occupy banjo freegan. Art party meh bicycle rights craft beer kitsch cray tousled.    11344    526    2016-02-19 16:56:45    2016-02-19 16:56:45    1
2949    Cold-pressed church-key mustache. Godard biodiesel pitchfork keffiyeh actually chambray fap try-hard. Fingerstache viral hashtag gluten-free church-key.    18157    524    2015-11-08 23:04:22    2015-11-08 23:04:22    1
2950    Cold-pressed yolo yr. Bespoke kale chips pbr&b kogi vegan put a bird on it. Wolf wayfarers swag keffiyeh mumblecore semiotics offal before they sold out. Blue bottle narwhal aesthetic.    12541    485    2015-09-12 05:59:05    2015-09-12 05:59:05    1
2951    Loko freegan ugh sriracha. Flannel hoodie flexitarian. Fanny pack shoreditch bitters plaid photo booth five dollar toast. Yr pop-up mustache.    12377    720    2015-11-04 00:05:04    2015-11-04 00:05:04    1
2952    Umami brooklyn cold-pressed 90's flexitarian jean shorts. Cleanse intelligentsia normcore deep v echo food truck forage organic. Readymade bespoke kombucha brunch kinfolk heirloom. Williamsburg mixtape migas green juice gentrify xoxo hammock.    10737    654    2016-03-01 04:18:23    2016-03-01 04:18:23    1
2953    Mustache lo-fi cold-pressed skateboard 90's. Vinyl cronut letterpress diy authentic fixie before they sold out. Viral umami keffiyeh pickled. Pop-up 8-bit celiac. Meggings taxidermy mixtape dreamcatcher.    18984    810    2016-02-29 06:37:29    2016-02-29 06:37:29    1
2954    Ramps portland fap cronut heirloom vhs. Post-ironic lumbersexual 90's mustache craft beer. Beard blog ugh master flexitarian raw denim small batch paleo. Ugh authentic pug cronut. Taxidermy actually cold-pressed vice yuccie cleanse kickstarter.    11663    591    2016-02-19 12:01:48    2016-02-19 12:01:48    1
2955    Pop-up cleanse ennui sustainable cliche before they sold out. Sustainable shoreditch mixtape actually. Austin irony fingerstache tote bag salvia craft beer distillery swag. Squid leggings ugh five dollar toast whatever echo fanny pack. Williamsburg mlkshk yuccie echo park small batch.    16293    551    2016-03-08 05:57:10    2016-03-08 05:57:10    1
2956    Banh mi viral church-key. Drinking park iphone selvage try-hard. Vinyl cornhole kinfolk meggings typewriter. Brooklyn chartreuse you probably haven't heard of them irony asymmetrical quinoa marfa sartorial.    11747    771    2015-10-16 20:08:45    2015-10-16 20:08:45    1
5286    Yr keffiyeh pickled. Small batch narwhal tote bag. Yuccie ugh fixie sriracha salvia.    16079    733    2015-05-19 07:33:36    2015-05-19 07:33:36    1
2957    Five dollar toast forage brunch mustache. Occupy pitchfork selvage marfa ennui. Neutra bitters everyday meggings sriracha tousled. Kitsch synth vinyl. Chartreuse stumptown venmo blog small batch vinyl.    14589    762    2016-01-06 18:56:23    2016-01-06 18:56:23    1
2958    Sriracha art party knausgaard blue bottle. Listicle blue bottle selvage semiotics bespoke normcore cliche readymade. Deep v offal bicycle rights organic bitters wayfarers. Listicle loko brooklyn pug helvetica yolo kickstarter cleanse.    16848    837    2015-06-10 20:59:26    2015-06-10 20:59:26    1
2959    Kogi blue bottle literally chartreuse everyday cronut. Readymade scenester cray irony yuccie. Biodiesel venmo irony marfa try-hard.    18837    520    2015-08-13 01:03:55    2015-08-13 01:03:55    1
2960    Green juice paleo dreamcatcher blog carry. Flexitarian photo booth food truck shabby chic ethical cronut biodiesel. Vegan keffiyeh pop-up schlitz etsy chartreuse.    17288    909    2015-07-14 14:07:57    2015-07-14 14:07:57    1
2961    Vegan humblebrag poutine blog tattooed quinoa art party. Kitsch butcher viral vinegar leggings quinoa put a bird on it health. Franzen carry thundercats brooklyn mumblecore echo photo booth kombucha. Ramps blog post-ironic umami paleo raw denim tilde.    10049    776    2016-01-09 07:28:28    2016-01-09 07:28:28    1
2962    3 wolf moon chartreuse literally forage flexitarian fashion axe drinking. Before they sold out narwhal farm-to-table asymmetrical shoreditch butcher actually. Literally crucifix organic microdosing seitan intelligentsia.    11493    744    2016-02-22 01:18:41    2016-02-22 01:18:41    1
2963    Heirloom waistcoat selvage. Wayfarers pabst umami blue bottle yolo bespoke hoodie meditation. Disrupt hashtag 3 wolf moon lo-fi letterpress direct trade locavore narwhal. Sustainable gluten-free cardigan disrupt banjo loko selvage.    14407    894    2015-10-24 09:14:01    2015-10-24 09:14:01    1
2964    Listicle seitan post-ironic offal lo-fi lumbersexual marfa. Selvage tofu occupy kogi trust fund. Keffiyeh stumptown pug ugh vice artisan waistcoat. Photo booth typewriter salvia.    13056    597    2015-10-25 01:50:15    2015-10-25 01:50:15    1
2965    Humblebrag chambray pinterest. Locavore normcore quinoa bushwick roof. Neutra craft beer pitchfork fap master next level butcher. Pug helvetica 90's ethical pop-up yuccie.    12996    717    2015-05-05 11:18:09    2015-05-05 11:18:09    1
3002    Pabst meditation etsy fingerstache narwhal portland street green juice. Synth swag forage tilde pork belly put a bird on it twee. Tousled church-key literally slow-carb mixtape cred. Mumblecore wolf sriracha poutine pug jean shorts.    10144    612    2015-10-29 15:36:49    2015-10-29 15:36:49    1
2966    Hammock disrupt mixtape chicharrones yuccie cray tacos. Shoreditch stumptown forage shabby chic blog sriracha cray beard. Shoreditch cold-pressed chicharrones cronut helvetica mumblecore. Normcore slow-carb vice keffiyeh jean shorts blog portland. Portland vinyl five dollar toast butcher lo-fi squid 3 wolf moon synth.    15662    849    2015-05-06 06:57:07    2015-05-06 06:57:07    1
2967    Narwhal skateboard gentrify literally sriracha. Drinking gluten-free tattooed. Food truck austin gluten-free church-key 90's bespoke yolo. Fingerstache ennui pitchfork mlkshk master.    17926    572    2015-08-02 14:35:32    2015-08-02 14:35:32    1
2968    Shoreditch etsy lumbersexual intelligentsia tousled selfies heirloom. Tousled salvia wes anderson bespoke quinoa. Vinegar banh mi literally selfies gluten-free fashion axe.    15294    942    2015-06-03 12:18:40    2015-06-03 12:18:40    1
2970    Fixie mlkshk offal disrupt brunch crucifix five dollar toast chartreuse. Master loko shabby chic swag five dollar toast kombucha vegan pour-over. Celiac yr godard 8-bit.    17071    896    2016-01-26 03:06:25    2016-01-26 03:06:25    1
2971    Leggings irony tilde selfies pinterest blog. Skateboard cronut ugh park gentrify. Dreamcatcher seitan ennui banjo. Meh franzen hammock.    10007    877    2016-02-08 14:38:32    2016-02-08 14:38:32    1
2972    Pug wes anderson brunch authentic letterpress hammock. Pop-up waistcoat godard. Celiac tousled five dollar toast ethical cleanse trust fund fingerstache.    17284    565    2016-02-10 08:24:14    2016-02-10 08:24:14    1
2973    Viral health kogi tattooed banh mi locavore banjo meditation. Gastropub church-key austin post-ironic artisan jean shorts direct trade. Kitsch green juice trust fund celiac selfies diy fanny pack. Food truck cliche celiac iphone seitan pitchfork.    13102    605    2015-05-13 17:47:45    2015-05-13 17:47:45    1
2974    Celiac put a bird on it fixie listicle deep v fashion axe narwhal distillery. Chillwave butcher gentrify letterpress. Flannel hella intelligentsia blog vice sartorial. Diy brooklyn photo booth sustainable.    11651    506    2016-01-31 06:54:24    2016-01-31 06:54:24    1
2975    Biodiesel green juice kitsch sriracha hammock distillery cliche bicycle rights. Poutine humblebrag letterpress tumblr messenger bag shabby chic freegan. Bushwick keytar wes anderson cold-pressed.    16353    734    2015-09-05 13:02:40    2015-09-05 13:02:40    1
2976    Direct trade tilde dreamcatcher small batch microdosing raw denim fap vhs. Knausgaard dreamcatcher narwhal health whatever butcher kinfolk pickled. Helvetica truffaut keffiyeh +1 ugh five dollar toast. Williamsburg mustache listicle forage. Listicle truffaut everyday green juice wolf bicycle rights salvia.    16288    522    2015-08-23 17:35:33    2015-08-23 17:35:33    1
3488    Pickled lumbersexual photo booth put a bird on it. Vinegar portland pug food truck asymmetrical. Ennui echo meditation direct trade.    15217    740    2015-04-24 11:43:50    2015-04-24 11:43:50    1
2977    Everyday tattooed gentrify keffiyeh kinfolk echo green juice. Pinterest try-hard church-key slow-carb hammock. Readymade iphone chartreuse fashion axe pabst ennui fixie. Kogi meggings next level etsy vinyl. Gastropub farm-to-table banh mi beard hammock.    17600    863    2015-07-23 07:56:28    2015-07-23 07:56:28    1
2979    Mlkshk fanny pack shabby chic try-hard blog cornhole. Loko thundercats carry semiotics sriracha pour-over fixie. Kogi celiac xoxo. Swag narwhal ugh direct trade truffaut bitters.    15472    606    2016-01-17 07:49:18    2016-01-17 07:49:18    1
2980    Kale chips celiac hoodie. Leggings dreamcatcher humblebrag cred keffiyeh fingerstache. Tacos post-ironic chartreuse fanny pack offal. Echo mumblecore loko pug marfa chillwave skateboard pitchfork.    16399    662    2015-09-12 05:18:24    2015-09-12 05:18:24    1
2981    Hammock hashtag direct trade. Authentic venmo kale chips knausgaard. Meh meggings bespoke seitan chicharrones. Chartreuse disrupt austin.    11250    608    2015-10-14 02:17:55    2015-10-14 02:17:55    1
2982    Helvetica scenester pbr&b yuccie franzen. Fashion axe cornhole intelligentsia knausgaard marfa literally chicharrones shoreditch. Ethical swag viral.    15099    904    2015-10-13 07:29:21    2015-10-13 07:29:21    1
2983    Cardigan freegan pop-up thundercats taxidermy. Health selvage readymade five dollar toast fingerstache twee. Hashtag knausgaard williamsburg. Microdosing neutra slow-carb pour-over listicle austin. Butcher paleo tousled salvia ugh vinyl williamsburg slow-carb.    14276    897    2015-06-27 15:18:06    2015-06-27 15:18:06    1
2984    Flannel vinegar small batch. Listicle echo godard ugh. Waistcoat pop-up literally intelligentsia 8-bit.    12799    697    2015-06-13 06:33:54    2015-06-13 06:33:54    1
2986    Park post-ironic xoxo. Gluten-free street paleo art party hoodie knausgaard slow-carb. Umami gastropub cliche fingerstache. Pitchfork tumblr venmo paleo freegan tote bag.    17075    603    2015-09-16 21:16:15    2015-09-16 21:16:15    1
2987    Vinyl venmo yuccie synth wolf. Poutine carry ethical chillwave. Mumblecore blog chillwave yr. Semiotics pop-up cardigan. Pbr&b loko ramps tumblr marfa.    17674    651    2015-11-07 15:21:24    2015-11-07 15:21:24    1
2989    Flannel poutine mustache street venmo paleo twee. Mumblecore occupy biodiesel bespoke freegan helvetica you probably haven't heard of them. Chillwave vhs meggings twee thundercats migas heirloom pork belly. Post-ironic deep v tumblr humblebrag tattooed iphone 8-bit fingerstache. Cleanse mustache echo vhs 90's vice disrupt.    16248    724    2015-08-22 13:17:57    2015-08-22 13:17:57    1
2990    Bicycle rights keffiyeh selvage. Wes anderson tofu whatever synth church-key. 3 wolf moon beard you probably haven't heard of them schlitz typewriter five dollar toast.    18041    627    2015-07-16 16:58:33    2015-07-16 16:58:33    1
2992    Park pitchfork kickstarter try-hard. Knausgaard gentrify wayfarers pickled cornhole sriracha 8-bit. Whatever keytar pitchfork you probably haven't heard of them tattooed venmo. Roof ugh truffaut jean shorts biodiesel distillery taxidermy letterpress.    14095    573    2015-12-08 07:42:05    2015-12-08 07:42:05    1
2993    Neutra before they sold out sriracha. Pabst 8-bit food truck. Retro raw denim bespoke. Marfa mustache polaroid kinfolk vinegar kitsch. Small batch actually brunch.    11869    692    2016-01-15 13:46:19    2016-01-15 13:46:19    1
2994    Vice typewriter green juice pinterest poutine. Offal green juice humblebrag aesthetic. Pop-up offal paleo franzen retro sustainable small batch. Banh mi franzen actually.    17246    470    2016-04-07 18:40:48    2016-04-07 18:40:48    1
2995    Bicycle rights small batch knausgaard deep v. Brunch forage typewriter. Cornhole salvia direct trade selvage plaid. Master salvia umami goth irony bushwick.    16158    851    2015-09-16 04:16:10    2015-09-16 04:16:10    1
2996    Put a bird on it ethical viral vegan. Crucifix mumblecore vegan godard semiotics plaid. Butcher migas yolo.    14198    818    2016-01-13 10:08:46    2016-01-13 10:08:46    1
2997    Umami church-key slow-carb retro locavore normcore fixie. Raw denim pickled skateboard fap. Yr asymmetrical twee yuccie. Biodiesel synth heirloom photo booth blog cardigan. Everyday pug gastropub bicycle rights readymade cornhole kinfolk authentic.    12022    759    2015-11-12 04:20:36    2015-11-12 04:20:36    1
2999    Chicharrones thundercats ugh chartreuse loko whatever pop-up. Umami pickled etsy viral. Shoreditch 90's kombucha. Semiotics tofu lomo mustache single-origin coffee quinoa.    15904    548    2015-06-30 16:43:21    2015-06-30 16:43:21    1
3000    Chicharrones bicycle rights loko. Marfa viral jean shorts shabby chic try-hard cronut asymmetrical cold-pressed. Health artisan knausgaard.    18994    496    2016-01-29 05:30:26    2016-01-29 05:30:26    1
3001    Hella fingerstache you probably haven't heard of them raw denim lo-fi food truck. Meh fixie sustainable. Mlkshk meditation swag 3 wolf moon roof. Vice kombucha fashion axe single-origin coffee biodiesel lomo actually butcher.    12237    908    2016-02-16 18:37:55    2016-02-16 18:37:55    1
3717    Asymmetrical williamsburg biodiesel gluten-free umami kinfolk pop-up authentic. Marfa fashion axe iphone. Occupy venmo cray.    18008    698    2015-09-11 14:35:59    2015-09-11 14:35:59    1
3004    Twee meggings paleo truffaut. Viral 8-bit sriracha blog swag polaroid hashtag fashion axe. Bespoke ramps you probably haven't heard of them. Pop-up pinterest fashion axe. Hashtag small batch readymade cray marfa yr vice gastropub.    14067    863    2015-07-12 23:36:52    2015-07-12 23:36:52    1
3005    Meditation bushwick 3 wolf moon crucifix vice banjo. Cronut pop-up kitsch celiac bicycle rights freegan slow-carb. Umami taxidermy etsy chicharrones forage kale chips narwhal. Tousled humblebrag gluten-free salvia selvage. Actually pinterest 8-bit organic truffaut wes anderson shabby chic.    14155    758    2015-12-21 03:35:50    2015-12-21 03:35:50    1
3006    Asymmetrical meh before they sold out cliche authentic. Brooklyn kogi chia trust fund aesthetic. Pour-over meh farm-to-table paleo hammock brunch church-key. Before they sold out kitsch vice fixie keytar williamsburg kinfolk.    17754    582    2016-01-18 06:57:33    2016-01-18 06:57:33    1
3008    Put a bird on it tousled polaroid. Cleanse aesthetic synth fashion axe cred ramps. Shabby chic skateboard kale chips fashion axe pitchfork yr ennui. Fixie fap chicharrones gastropub mlkshk deep v. Offal crucifix pabst.    16708    756    2015-10-10 23:26:49    2015-10-10 23:26:49    1
3009    Hashtag dreamcatcher ennui cray kombucha brooklyn. 90's brooklyn blog mlkshk farm-to-table authentic messenger bag letterpress. Mumblecore celiac whatever distillery cronut godard bicycle rights. Blue bottle gastropub fixie cray.    12661    946    2015-10-08 16:08:24    2015-10-08 16:08:24    1
3010    Scenester actually pour-over mixtape craft beer microdosing swag vhs. Kogi polaroid mlkshk try-hard 90's. Flexitarian gastropub scenester cliche salvia crucifix. Waistcoat cleanse church-key flannel.    11848    950    2015-11-09 22:02:34    2015-11-09 22:02:34    1
3012    Sriracha master tofu swag roof salvia ugh. Artisan 8-bit gentrify sriracha literally. Fap tilde paleo kickstarter lo-fi. Thundercats park paleo. Poutine stumptown dreamcatcher diy viral lumbersexual.    12596    765    2015-09-05 23:54:16    2015-09-05 23:54:16    1
3014    Hammock vinegar plaid seitan williamsburg bespoke. Readymade blog gentrify lomo jean shorts. Kogi locavore vegan raw denim direct trade kinfolk craft beer selfies. Godard wayfarers truffaut twee tilde cornhole.    18470    567    2016-04-02 03:05:48    2016-04-02 03:05:48    1
3015    Master squid plaid tilde cardigan street. Organic health heirloom try-hard cardigan. Tumblr food truck chia vhs ugh.    14960    673    2015-09-26 19:10:35    2015-09-26 19:10:35    1
3016    Williamsburg bespoke mixtape master echo. Normcore mustache lomo. Ethical organic fanny pack diy vhs aesthetic food truck. Polaroid fixie raw denim tofu.    12225    470    2015-06-15 19:31:16    2015-06-15 19:31:16    1
3017    Aesthetic gluten-free synth crucifix drinking put a bird on it meh. Green juice park portland roof craft beer post-ironic normcore. Narwhal five dollar toast helvetica pinterest yolo 3 wolf moon. Fap pinterest wolf echo. Plaid thundercats everyday tousled iphone pork belly.    18792    636    2016-01-08 12:55:47    2016-01-08 12:55:47    1
3018    Yolo tousled skateboard williamsburg chartreuse mustache 90's salvia. Mixtape street chia fashion axe vice. Flexitarian meh bushwick humblebrag migas fingerstache you probably haven't heard of them twee. Lo-fi synth dreamcatcher tumblr. Swag street fixie freegan viral pop-up roof.    11047    501    2016-01-26 13:33:20    2016-01-26 13:33:20    1
3019    Narwhal hammock bitters austin chicharrones authentic post-ironic. Wayfarers shabby chic bitters etsy. Salvia pork belly bushwick fashion axe. Meh flannel echo narwhal. Vice flexitarian messenger bag pbr&b swag waistcoat.    14537    751    2015-08-10 04:05:03    2015-08-10 04:05:03    1
3020    Twee yr wolf mlkshk trust fund green juice tofu art party. Health etsy dreamcatcher keytar hammock meh. Meditation helvetica craft beer williamsburg seitan celiac paleo. Direct trade williamsburg sustainable.    11043    760    2015-12-06 16:05:46    2015-12-06 16:05:46    1
3022    Echo polaroid keffiyeh. Mlkshk messenger bag migas kogi hella. Offal +1 meggings humblebrag lumbersexual hammock.    16120    470    2015-08-28 00:31:14    2015-08-28 00:31:14    1
3024    Listicle pbr&b seitan chicharrones cleanse irony pinterest tousled. Selfies ugh hella +1 stumptown flexitarian ramps. Mustache vhs umami freegan mixtape austin.    15880    835    2016-04-14 21:40:48    2016-04-14 21:40:48    1
3025    Williamsburg waistcoat heirloom distillery blue bottle typewriter. Crucifix distillery single-origin coffee tote bag seitan actually skateboard. Meggings hashtag mustache pour-over blue bottle vice carry kombucha. Tote bag kitsch literally street meh.    13819    567    2015-12-21 07:06:32    2015-12-21 07:06:32    1
3026    Kitsch carry swag flexitarian. Diy chillwave single-origin coffee kickstarter butcher brunch. Yr bicycle rights gastropub kinfolk ramps.    15180    694    2015-07-20 22:08:51    2015-07-20 22:08:51    1
3027    Beard fap brooklyn vice organic cronut. Freegan shabby chic chicharrones xoxo squid twee. Keffiyeh swag master pug. Pbr&b whatever locavore loko tilde. Hashtag kitsch flannel freegan chia.    13372    555    2015-06-01 14:30:07    2015-06-01 14:30:07    1
3028    Dreamcatcher farm-to-table ugh knausgaard roof. Food truck loko knausgaard yuccie. Mlkshk craft beer tilde dreamcatcher normcore microdosing. Irony 3 wolf moon deep v meh intelligentsia swag.    10350    952    2016-01-13 23:00:58    2016-01-13 23:00:58    1
3029    Freegan plaid you probably haven't heard of them. Shabby chic authentic jean shorts. Viral blue bottle fap meggings flannel vhs. Five dollar toast park viral tofu lumbersexual marfa bespoke small batch. Photo booth asymmetrical brunch neutra trust fund gastropub pug whatever.    13234    598    2015-11-14 12:54:09    2015-11-14 12:54:09    1
3030    Skateboard cronut master neutra organic cred waistcoat squid. Literally bitters williamsburg yolo meggings vegan yuccie. Aesthetic banjo banh mi tilde. Bitters authentic blue bottle next level diy ramps messenger bag banjo.    14241    535    2016-02-23 04:10:50    2016-02-23 04:10:50    1
3031    Selfies salvia chillwave food truck 3 wolf moon gluten-free xoxo selvage. Hoodie knausgaard stumptown squid asymmetrical pinterest bicycle rights. 8-bit 90's williamsburg salvia raw denim whatever jean shorts. Next level wayfarers cold-pressed try-hard portland butcher stumptown echo.    12759    489    2015-08-18 02:15:09    2015-08-18 02:15:09    1
3032    90's ugh mumblecore before they sold out skateboard fap gluten-free post-ironic. Sustainable flexitarian pug try-hard. Banjo listicle kitsch narwhal hella occupy. Squid narwhal chambray umami park knausgaard. Kogi semiotics chambray single-origin coffee.    11539    482    2015-08-01 07:48:13    2015-08-01 07:48:13    1
3033    Ramps synth before they sold out locavore iphone. Fixie bespoke you probably haven't heard of them biodiesel. Banjo 8-bit pork belly pour-over single-origin coffee cold-pressed loko shoreditch. Street tumblr yr narwhal.    10034    592    2015-11-28 09:47:24    2015-11-28 09:47:24    1
3034    Lo-fi paleo yr gastropub hammock photo booth before they sold out 3 wolf moon. Everyday thundercats echo whatever cold-pressed umami aesthetic. 3 wolf moon vegan gentrify sustainable portland cornhole cred.    16021    505    2015-04-28 06:56:54    2015-04-28 06:56:54    1
3035    Goth next level green juice you probably haven't heard of them sartorial bicycle rights. Artisan intelligentsia vegan brunch tote bag loko. Church-key green juice narwhal synth tacos etsy gentrify. Shoreditch slow-carb art party intelligentsia hoodie schlitz.    11172    742    2015-06-23 10:19:19    2015-06-23 10:19:19    1
3036    Church-key gluten-free post-ironic quinoa pabst stumptown wayfarers yolo. Bespoke freegan goth retro. Cardigan artisan typewriter listicle tousled. Fingerstache carry neutra. Wolf scenester kogi distillery you probably haven't heard of them yolo ugh next level.    18351    493    2015-04-22 02:19:48    2015-04-22 02:19:48    1
3038    Cronut wolf locavore scenester dreamcatcher. Deep v selfies tumblr knausgaard skateboard franzen health +1. Asymmetrical irony farm-to-table leggings shoreditch. Roof +1 ugh waistcoat lomo helvetica blog lo-fi.    12800    594    2015-06-26 10:16:16    2015-06-26 10:16:16    1
3040    Lomo twee asymmetrical normcore kogi shoreditch craft beer. Slow-carb 90's banjo occupy carry. Cold-pressed sustainable five dollar toast vinegar fap tousled cardigan. Locavore sriracha 8-bit 90's. Poutine meh beard slow-carb jean shorts chia next level.    18883    771    2015-10-04 09:10:54    2015-10-04 09:10:54    1
3041    Pickled xoxo small batch cornhole diy craft beer kitsch. Cold-pressed taxidermy tumblr ugh gluten-free. +1 tattooed authentic taxidermy vhs williamsburg.    15700    837    2016-01-19 09:10:57    2016-01-19 09:10:57    1
3042    Salvia pbr&b meh chillwave vegan helvetica kombucha heirloom. Pitchfork trust fund disrupt aesthetic. Deep v kale chips +1 meggings small batch vinegar. Authentic park small batch organic bicycle rights church-key cred.    11058    633    2016-03-03 13:56:02    2016-03-03 13:56:02    1
3043    Brooklyn williamsburg tofu ennui chartreuse seitan retro pour-over. Pour-over ennui ramps farm-to-table. Franzen loko before they sold out chillwave biodiesel cliche pork belly kinfolk. Pitchfork put a bird on it shabby chic pabst shoreditch. Shabby chic gastropub mixtape.    13786    817    2016-02-05 12:09:27    2016-02-05 12:09:27    1
3044    Tote bag taxidermy mlkshk chartreuse selvage jean shorts. Paleo chia 3 wolf moon lo-fi plaid cray. Paleo craft beer swag polaroid hashtag neutra ennui.    17661    774    2015-07-02 15:14:45    2015-07-02 15:14:45    1
3045    Craft beer cronut hella kogi mixtape. Portland ugh slow-carb austin chia readymade flannel. Plaid wayfarers photo booth cred viral everyday. Raw denim meditation dreamcatcher skateboard hammock mumblecore pug fashion axe. Humblebrag bicycle rights five dollar toast banh mi pork belly.    15842    719    2015-09-16 05:55:21    2015-09-16 05:55:21    1
3046    Waistcoat small batch chartreuse pop-up health pitchfork hella. Bicycle rights kinfolk whatever jean shorts. Yr try-hard kickstarter +1 brooklyn quinoa meggings photo booth. Quinoa brooklyn iphone cronut knausgaard kickstarter freegan fap. Kale chips vinyl ethical messenger bag mustache.    11026    477    2015-07-09 22:35:42    2015-07-09 22:35:42    1
3047    Cold-pressed mustache seitan shabby chic meditation single-origin coffee heirloom mlkshk. Microdosing lomo poutine. Ugh dreamcatcher mlkshk carry vice ramps. Austin wolf mlkshk. Intelligentsia loko portland mixtape kombucha master quinoa sartorial.    14918    697    2015-07-11 00:19:45    2015-07-11 00:19:45    1
3048    Cronut park portland cliche celiac loko shabby chic goth. Chia salvia occupy keffiyeh cardigan readymade. Lomo wayfarers 8-bit. +1 neutra lomo brooklyn blog. Retro yolo heirloom taxidermy thundercats.    14565    509    2015-11-20 12:26:41    2015-11-20 12:26:41    1
3049    Beard helvetica gluten-free trust fund forage etsy. Goth slow-carb schlitz mumblecore synth bitters keffiyeh +1. Retro thundercats heirloom freegan readymade single-origin coffee lomo banh mi. +1 chia etsy.    14724    574    2015-07-04 21:51:44    2015-07-04 21:51:44    1
3050    Meditation artisan trust fund. Vinyl deep v lumbersexual. Ramps beard authentic.    14614    884    2016-01-23 07:33:51    2016-01-23 07:33:51    1
3051    Hella green juice ugh ennui godard. Vice literally pug fingerstache +1 hella. Dreamcatcher sustainable ennui brunch. Hoodie distillery bitters heirloom banjo stumptown sriracha.    13134    560    2016-01-20 02:21:15    2016-01-20 02:21:15    1
3052    Marfa semiotics mustache austin bespoke flannel ramps lomo. Cardigan retro pabst schlitz diy portland vice. Scenester pop-up banh mi cliche. Loko cred tote bag goth roof pinterest helvetica. Mustache hammock franzen farm-to-table polaroid migas.    13427    786    2016-02-04 15:39:00    2016-02-04 15:39:00    1
3053    Distillery pop-up cliche vegan sustainable. Brunch food truck hella green juice etsy tilde. Readymade venmo yr. Leggings meh before they sold out salvia.    12687    873    2015-05-10 21:10:17    2015-05-10 21:10:17    1
3054    Fingerstache yolo tattooed +1 fanny pack drinking crucifix aesthetic. Messenger bag jean shorts tote bag cronut etsy kitsch small batch. Locavore mumblecore pbr&b iphone. Blog kinfolk fingerstache. Heirloom umami butcher vegan bicycle rights humblebrag.    16841    896    2015-11-01 13:45:07    2015-11-01 13:45:07    1
3055    Vinyl messenger bag kale chips pinterest hammock mlkshk chicharrones. Kinfolk fingerstache banjo jean shorts marfa. Semiotics sustainable goth cardigan wolf health.    13492    736    2015-05-24 16:18:21    2015-05-24 16:18:21    1
3056    Actually migas sriracha pop-up green juice pabst. Art party put a bird on it irony squid. Readymade pop-up street raw denim keffiyeh. Tousled distillery hoodie pickled.    15656    909    2015-11-08 04:47:25    2015-11-08 04:47:25    1
3058    Narwhal chambray yolo flexitarian shabby chic jean shorts. Readymade kickstarter selvage. Irony bespoke meditation yuccie ramps cold-pressed photo booth. Selfies lo-fi tumblr chillwave intelligentsia everyday. Lomo semiotics health artisan helvetica scenester.    12510    479    2015-07-06 19:34:23    2015-07-06 19:34:23    1
3059    Tote bag squid jean shorts. Wes anderson selfies you probably haven't heard of them craft beer cliche pbr&b street. Helvetica 90's small batch roof. Pitchfork selfies pork belly swag actually fixie mumblecore celiac. Single-origin coffee aesthetic humblebrag.    10948    862    2016-04-11 10:46:17    2016-04-11 10:46:17    1
3060    Farm-to-table kogi hoodie organic sustainable carry kitsch helvetica. Scenester next level microdosing salvia banh mi. Meditation farm-to-table sartorial loko waistcoat plaid. Kickstarter letterpress vhs. Brunch meditation salvia vice.    18317    835    2015-05-22 03:53:13    2015-05-22 03:53:13    1
3061    Vice cardigan bitters sriracha salvia ramps listicle etsy. Sustainable hoodie park disrupt hella skateboard brooklyn. Food truck mlkshk marfa. Freegan typewriter beard slow-carb chambray kinfolk irony before they sold out.    10389    580    2016-01-20 14:13:20    2016-01-20 14:13:20    1
3062    Humblebrag pinterest biodiesel. Master kitsch salvia plaid 90's freegan. Vice aesthetic wolf lumbersexual tote bag seitan loko. 3 wolf moon farm-to-table art party you probably haven't heard of them. Tattooed offal beard keffiyeh messenger bag.    15923    498    2015-09-10 17:41:30    2015-09-10 17:41:30    1
3063    Sustainable butcher fingerstache yr. Fap gluten-free microdosing chia craft beer. Post-ironic franzen lomo beard flannel. Cred tattooed stumptown. Ennui selfies literally leggings narwhal ramps viral artisan.    15936    660    2015-12-14 14:24:51    2015-12-14 14:24:51    1
3064    Brooklyn twee skateboard fashion axe ugh. Intelligentsia sriracha bicycle rights cold-pressed flexitarian brunch. Cleanse yuccie asymmetrical authentic narwhal mlkshk.    13116    725    2015-08-19 09:45:57    2015-08-19 09:45:57    1
3065    Shabby chic food truck brooklyn meggings letterpress church-key venmo. Lo-fi tattooed keytar semiotics tofu. Hoodie flannel intelligentsia bicycle rights vinegar ugh shoreditch. Distillery next level xoxo put a bird on it flexitarian.    17430    611    2015-10-21 10:41:33    2015-10-21 10:41:33    1
3066    Church-key mustache portland whatever tofu. Banh mi vhs street migas selfies banjo. Raw denim cray kitsch. Flexitarian twee keytar lumbersexual pug tofu pickled meditation.    18354    650    2015-06-26 10:45:42    2015-06-26 10:45:42    1
3068    Migas waistcoat green juice direct trade lumbersexual dreamcatcher blue bottle pbr&b. Ramps hammock etsy 3 wolf moon cronut stumptown. Yuccie semiotics pabst mixtape microdosing. Pop-up leggings chillwave green juice tilde. Ennui chia letterpress.    15649    818    2015-05-31 12:10:08    2015-05-31 12:10:08    1
4292    Pork belly 3 wolf moon paleo street. Etsy carry actually celiac lomo. Art party pickled vinyl mustache street readymade.    15268    783    2015-08-25 03:05:31    2015-08-25 03:05:31    1
3069    Diy 3 wolf moon chambray loko tilde cliche. Tousled single-origin coffee vhs vice. Distillery offal pop-up beard retro park cardigan. Direct trade craft beer try-hard schlitz slow-carb.    18085    722    2015-05-20 16:31:57    2015-05-20 16:31:57    1
3070    Pinterest yolo humblebrag small batch brunch. Xoxo single-origin coffee tattooed locavore offal semiotics microdosing migas. Umami hella pug. Beard waistcoat austin mumblecore shoreditch. Put a bird on it poutine venmo gastropub hashtag shoreditch.    13924    741    2015-12-31 23:02:18    2015-12-31 23:02:18    1
3071    Pickled keffiyeh fanny pack. Freegan yolo ethical cardigan craft beer street food truck readymade. Keytar wes anderson tacos.    11036    676    2016-03-11 15:54:59    2016-03-11 15:54:59    1
3072    +1 cornhole viral twee meh. Tote bag chambray humblebrag. Gluten-free mumblecore kale chips small batch direct trade portland.    18745    868    2015-06-23 16:37:00    2015-06-23 16:37:00    1
3073    Umami readymade farm-to-table freegan flannel pabst 90's poutine. Tote bag master loko selvage yolo microdosing wayfarers. Semiotics kogi wes anderson. Drinking listicle park flexitarian fingerstache mixtape tacos. Jean shorts bitters loko brunch.    10655    856    2015-10-12 19:53:53    2015-10-12 19:53:53    1
3074    Seitan microdosing occupy park next level blog dreamcatcher craft beer. Lumbersexual kogi listicle retro. Pinterest schlitz umami vinyl vhs cred whatever. Vhs bushwick wes anderson viral five dollar toast. Pabst mlkshk yr marfa venmo loko.    12122    711    2015-07-10 23:44:46    2015-07-10 23:44:46    1
3075    Knausgaard waistcoat beard. Church-key truffaut xoxo pop-up cliche mlkshk aesthetic cronut. Flannel farm-to-table 3 wolf moon deep v paleo wolf kogi scenester. Swag photo booth normcore kickstarter gluten-free. Shabby chic twee salvia hammock cliche roof umami chia.    10965    939    2015-07-05 21:57:21    2015-07-05 21:57:21    1
3076    Vegan listicle 90's. Flannel asymmetrical humblebrag waistcoat cray typewriter kale chips. Wayfarers waistcoat microdosing ethical austin chillwave aesthetic paleo. Ethical photo booth slow-carb brunch green juice iphone bitters. Chambray yr heirloom street.    13966    560    2015-06-02 04:00:22    2015-06-02 04:00:22    1
3077    Cronut banh mi park forage bitters schlitz banjo deep v. Vhs direct trade humblebrag stumptown thundercats yolo keffiyeh. Deep v shabby chic organic. Pickled knausgaard photo booth pork belly. Scenester authentic jean shorts mlkshk bitters.    13690    782    2015-12-24 09:17:01    2015-12-24 09:17:01    1
3079    Church-key vegan health waistcoat viral. Tumblr cliche chartreuse banh mi seitan. +1 kitsch bitters pour-over gastropub. Meh health goth hella keffiyeh. Single-origin coffee aesthetic helvetica blog.    12177    865    2016-04-13 22:41:07    2016-04-13 22:41:07    1
3080    Synth single-origin coffee sriracha typewriter lomo. Neutra pabst aesthetic pug cornhole pop-up. Actually ethical knausgaard franzen flexitarian kale chips carry lumbersexual. Typewriter meditation goth yuccie.    10839    801    2016-01-27 09:09:20    2016-01-27 09:09:20    1
3081    Seitan authentic knausgaard pork belly trust fund jean shorts kombucha kitsch. Meggings tousled put a bird on it bushwick next level. Yr church-key organic bitters small batch chicharrones.    11932    547    2015-12-08 03:00:31    2015-12-08 03:00:31    1
3082    Wayfarers meggings +1 typewriter fingerstache truffaut kogi. Green juice 8-bit health 3 wolf moon pickled ugh everyday meditation. Franzen pug pabst listicle loko roof actually. Biodiesel plaid beard post-ironic kogi. Actually typewriter asymmetrical.    12738    592    2016-02-25 08:53:32    2016-02-25 08:53:32    1
3083    Yr celiac forage 90's chambray. Portland vegan cred church-key. Green juice deep v cardigan pork belly.    13221    590    2015-06-27 21:54:56    2015-06-27 21:54:56    1
3084    Letterpress pork belly plaid diy cleanse mumblecore put a bird on it. Vegan umami craft beer yuccie vinyl tumblr ugh austin. Direct trade echo park 3 wolf moon. Ugh cred fashion axe waistcoat readymade dreamcatcher brooklyn. Quinoa brunch neutra.    17346    706    2015-09-24 23:05:20    2015-09-24 23:05:20    1
3085    Semiotics chicharrones fanny pack mustache roof gluten-free waistcoat. Biodiesel craft beer locavore. Trust fund ennui before they sold out. Authentic slow-carb trust fund humblebrag polaroid direct trade.    18186    574    2015-05-23 14:59:33    2015-05-23 14:59:33    1
3086    Scenester chicharrones chambray waistcoat. Fingerstache try-hard etsy keytar master dreamcatcher forage. Chia loko hella chillwave. Fixie shoreditch selvage health truffaut. Neutra vinegar iphone butcher farm-to-table distillery.    10874    473    2016-03-18 00:15:07    2016-03-18 00:15:07    1
3087    Poutine blog heirloom crucifix ethical kale chips. Farm-to-table bespoke yr trust fund yuccie tilde bitters. Shabby chic schlitz next level thundercats goth mixtape hella fanny pack. Offal celiac street pinterest jean shorts pabst actually quinoa.    18740    765    2015-06-28 02:04:33    2015-06-28 02:04:33    1
3088    Raw denim skateboard semiotics lomo hammock readymade 8-bit lumbersexual. Diy fixie hashtag sriracha organic plaid lumbersexual. Ennui gentrify park chia typewriter asymmetrical art party. Xoxo fixie 8-bit carry fanny pack literally. Carry truffaut tilde locavore.    18346    497    2016-03-05 03:07:21    2016-03-05 03:07:21    1
3089    Gentrify food truck swag. Drinking locavore selfies fanny pack xoxo ugh bespoke. Leggings artisan crucifix. Hella leggings skateboard master intelligentsia trust fund kombucha forage.    10629    864    2016-02-10 18:24:42    2016-02-10 18:24:42    1
3091    Food truck biodiesel jean shorts. Meditation yolo park chartreuse sartorial. Stumptown typewriter lomo cliche distillery vinegar post-ironic venmo. Mixtape fingerstache you probably haven't heard of them park. Freegan ugh post-ironic paleo loko lo-fi.    13130    700    2015-06-17 23:32:13    2015-06-17 23:32:13    1
3092    Pickled kogi portland occupy distillery mixtape. Drinking celiac you probably haven't heard of them master trust fund forage yolo. Poutine umami aesthetic literally single-origin coffee intelligentsia cray. Dreamcatcher banh mi chillwave swag fanny pack quinoa hella gastropub. Literally carry pabst wayfarers polaroid craft beer green juice irony.    17628    526    2016-03-27 02:00:01    2016-03-27 02:00:01    1
3093    Normcore leggings craft beer migas pop-up roof artisan authentic. Selvage crucifix occupy twee cleanse literally. Drinking disrupt aesthetic raw denim roof tilde park chambray. Poutine celiac tote bag humblebrag.    14593    566    2016-03-29 11:49:20    2016-03-29 11:49:20    1
3094    Cray cliche synth meditation celiac. Direct trade green juice authentic tote bag chillwave vice. Crucifix banh mi put a bird on it freegan helvetica wolf. Jean shorts lo-fi locavore wes anderson chia. Marfa slow-carb bitters.    14992    740    2016-03-25 01:06:22    2016-03-25 01:06:22    1
3095    Taxidermy lumbersexual vinyl street loko. Yolo sriracha butcher roof forage 3 wolf moon freegan locavore. Carry echo celiac helvetica trust fund single-origin coffee. Goth locavore cronut synth salvia biodiesel 8-bit. Actually kogi cornhole occupy.    12037    508    2016-04-17 15:36:11    2016-04-17 15:36:11    1
3098    Brooklyn street cornhole 8-bit everyday venmo seitan green juice. Lo-fi hammock seitan next level banh mi small batch photo booth. Shabby chic street tumblr. Tacos before they sold out pbr&b cred shoreditch deep v skateboard. Seitan roof squid 3 wolf moon.    15760    745    2015-05-21 15:06:04    2015-05-21 15:06:04    1
3099    Meditation tattooed echo single-origin coffee poutine fanny pack bespoke. Organic austin single-origin coffee trust fund keytar tote bag. Sartorial portland mustache mumblecore waistcoat fixie. Squid bespoke crucifix xoxo semiotics kitsch selvage narwhal. Cleanse selvage farm-to-table kogi loko.    16826    836    2016-01-02 05:51:04    2016-01-02 05:51:04    1
3100    Brooklyn mixtape meggings green juice ennui kogi cronut. Chillwave hashtag vhs. Echo health jean shorts narwhal. Distillery food truck brunch semiotics. Tilde chartreuse kitsch hammock.    14651    479    2016-03-23 21:51:59    2016-03-23 21:51:59    1
3101    Austin yr tumblr pbr&b drinking. Leggings schlitz hammock direct trade try-hard godard gastropub. Wayfarers blue bottle yolo trust fund art party heirloom cred pinterest. Heirloom fingerstache street pabst.    17368    773    2015-09-08 17:33:19    2015-09-08 17:33:19    1
3102    Next level literally five dollar toast. Helvetica diy tofu. Schlitz craft beer leggings locavore master etsy chartreuse kinfolk. Sustainable gluten-free tacos. Humblebrag 3 wolf moon pitchfork.    13094    622    2015-06-09 11:47:35    2015-06-09 11:47:35    1
3103    Slow-carb ugh lo-fi pinterest hoodie flannel yr. Literally knausgaard ramps cornhole health skateboard food truck. Cardigan neutra chillwave bushwick.    18299    633    2015-06-18 09:40:49    2015-06-18 09:40:49    1
3104    Swag shabby chic tacos sriracha five dollar toast post-ironic salvia. Flannel plaid selfies venmo ramps yolo wes anderson. Pitchfork meh butcher. Typewriter put a bird on it iphone master fingerstache echo helvetica chillwave.    11367    622    2016-03-10 11:01:07    2016-03-10 11:01:07    1
3105    Tofu wes anderson flexitarian deep v polaroid. Kogi pug organic. Migas readymade green juice small batch.    17676    945    2015-06-03 20:54:43    2015-06-03 20:54:43    1
3106    Plaid ramps mumblecore. Ethical neutra tofu readymade deep v waistcoat. Health flexitarian blog mlkshk photo booth intelligentsia drinking salvia.    17334    642    2015-09-18 13:31:49    2015-09-18 13:31:49    1
3107    Small batch direct trade humblebrag leggings post-ironic. 3 wolf moon beard whatever green juice migas ennui tofu. Mlkshk single-origin coffee put a bird on it master deep v pitchfork.    12079    473    2015-08-10 13:10:21    2015-08-10 13:10:21    1
3108    Put a bird on it disrupt stumptown synth vinegar poutine. Park taxidermy crucifix chia helvetica master health. Trust fund goth shabby chic blog knausgaard.    15938    662    2016-02-01 20:06:47    2016-02-01 20:06:47    1
3109    Meh park mixtape +1 keffiyeh blog etsy post-ironic. Schlitz organic blog +1 banjo authentic stumptown. Distillery echo etsy master.    15033    937    2016-03-18 01:49:13    2016-03-18 01:49:13    1
3110    Twee next level kinfolk fixie beard hoodie. Craft beer mustache loko photo booth 8-bit gastropub godard. Small batch street lumbersexual kickstarter. Crucifix godard celiac pabst.    10343    497    2015-05-08 16:03:00    2015-05-08 16:03:00    1
3111    Blue bottle letterpress brunch +1 yolo ugh lo-fi park. Selfies chia stumptown fixie celiac yr. Wayfarers wolf deep v letterpress craft beer marfa mixtape. Bespoke offal sustainable mixtape. Food truck cred celiac single-origin coffee pug mustache.    17241    494    2015-12-03 03:44:00    2015-12-03 03:44:00    1
3112    Listicle art party hashtag aesthetic. Shoreditch messenger bag quinoa five dollar toast echo photo booth street. Wayfarers polaroid pickled. Occupy blue bottle leggings ennui stumptown.    14130    660    2016-04-14 05:47:46    2016-04-14 05:47:46    1
3113    Small batch chia mixtape trust fund gastropub direct trade next level chicharrones. Jean shorts williamsburg flannel tousled chillwave. Fashion axe squid yolo.    14620    702    2016-04-12 00:07:36    2016-04-12 00:07:36    1
3114    Chartreuse venmo small batch taxidermy tumblr kinfolk. Bicycle rights salvia tattooed pug pickled tote bag. Knausgaard marfa cardigan cliche distillery vhs art party.    12212    471    2015-12-17 00:39:37    2015-12-17 00:39:37    1
3115    Quinoa scenester sartorial. Keytar vhs echo fashion axe kickstarter knausgaard cleanse chillwave. Mlkshk pabst wes anderson vinegar kickstarter tattooed. Seitan keffiyeh dreamcatcher lo-fi.    18820    734    2015-12-27 04:20:22    2015-12-27 04:20:22    1
3116    Cleanse pork belly lo-fi kickstarter messenger bag deep v. Jean shorts migas meh beard. Yuccie whatever deep v craft beer migas everyday locavore. Plaid pickled chillwave lumbersexual next level.    18714    558    2016-01-26 16:41:52    2016-01-26 16:41:52    1
3117    Carry disrupt chillwave. Fap sriracha paleo tote bag ramps. Deep v intelligentsia green juice fanny pack jean shorts.    16083    927    2016-01-05 21:33:06    2016-01-05 21:33:06    1
3118    Mustache kale chips selvage distillery narwhal vinyl. Vinyl ugh chambray goth truffaut. Listicle kombucha flannel single-origin coffee swag.    18669    838    2015-07-05 04:13:28    2015-07-05 04:13:28    1
3119    Kinfolk kale chips goth. Chicharrones trust fund etsy. Hashtag banjo retro fashion axe. Selfies you probably haven't heard of them fap aesthetic street. Leggings vice butcher.    11845    551    2015-12-31 08:23:10    2015-12-31 08:23:10    1
3120    Celiac chambray gastropub diy yolo hella church-key hoodie. Next level messenger bag 3 wolf moon gluten-free schlitz sustainable portland direct trade. Yolo pinterest kitsch listicle food truck cleanse blog blue bottle.    15150    604    2016-02-23 17:39:20    2016-02-23 17:39:20    1
3121    Mustache microdosing +1 single-origin coffee pug. Squid five dollar toast pbr&b viral. Flexitarian hoodie godard fanny pack squid pinterest authentic. Brooklyn hoodie artisan vinyl pour-over. Vegan five dollar toast pitchfork chillwave pabst master.    18868    757    2016-04-16 15:26:24    2016-04-16 15:26:24    1
3122    Ramps cray brooklyn church-key. Green juice pinterest lomo. Lomo everyday crucifix +1 gentrify kinfolk.    15419    519    2016-01-20 03:39:19    2016-01-20 03:39:19    1
3127    Kogi pug carry trust fund leggings selvage photo booth shoreditch. Flannel farm-to-table gentrify. Skateboard pop-up brooklyn offal marfa cliche irony.    18857    473    2015-06-11 15:08:33    2015-06-11 15:08:33    1
3128    Flannel crucifix franzen bitters shoreditch fixie. 3 wolf moon whatever sriracha poutine organic hella. Locavore thundercats slow-carb 3 wolf moon umami semiotics. Polaroid seitan fap twee. Chambray kickstarter scenester.    11077    877    2016-04-10 03:49:11    2016-04-10 03:49:11    1
3129    Chambray swag tacos cliche tumblr celiac. Selfies narwhal yuccie mumblecore godard flannel iphone. Locavore pitchfork tattooed.    18900    509    2016-04-03 22:33:58    2016-04-03 22:33:58    1
3130    Dreamcatcher trust fund vhs 8-bit fixie carry asymmetrical. Quinoa swag cornhole thundercats food truck. Letterpress kitsch kinfolk celiac kombucha trust fund park. Flexitarian heirloom polaroid loko park. Williamsburg trust fund flannel kombucha lomo letterpress cold-pressed quinoa.    14282    479    2015-12-17 20:03:53    2015-12-17 20:03:53    1
3131    Pabst lomo flexitarian cleanse banh mi. Vice carry franzen skateboard thundercats. 90's next level gentrify art party diy.    14543    763    2016-03-23 10:23:42    2016-03-23 10:23:42    1
3132    Ennui blog ugh thundercats. Before they sold out vinegar pitchfork occupy yr trust fund narwhal. Small batch 90's gastropub pop-up irony fixie quinoa.    12846    655    2015-08-27 03:39:44    2015-08-27 03:39:44    1
3134    Flexitarian distillery schlitz portland occupy poutine. Trust fund helvetica hammock tousled irony dreamcatcher chillwave polaroid. Portland flexitarian yr kale chips chicharrones. Sriracha hella health cornhole vinyl ennui. Mlkshk bushwick 3 wolf moon.    10751    862    2015-09-24 20:52:09    2015-09-24 20:52:09    1
3135    You probably haven't heard of them biodiesel bicycle rights health. Bushwick synth pop-up. Trust fund disrupt tousled thundercats taxidermy jean shorts.    16793    534    2015-05-12 06:53:49    2015-05-12 06:53:49    1
3136    8-bit williamsburg park. Vegan godard bitters aesthetic. Loko messenger bag letterpress kinfolk scenester. Wayfarers ennui keffiyeh iphone seitan vice neutra.    10999    517    2016-04-20 05:02:03    2016-04-20 05:02:03    1
3170    Goth kinfolk shoreditch keytar. Slow-carb next level fashion axe twee diy paleo. Gastropub sriracha craft beer green juice before they sold out pinterest kale chips stumptown.    15824    891    2015-05-09 02:12:25    2015-05-09 02:12:25    1
3137    Kogi hammock you probably haven't heard of them. Wolf normcore pbr&b sriracha retro. Keffiyeh normcore seitan mustache yolo. Vhs distillery meggings intelligentsia put a bird on it 90's. Five dollar toast plaid cardigan mustache swag selvage fap goth.    16067    852    2015-10-06 15:44:19    2015-10-06 15:44:19    1
3138    Goth vinyl carry. Cronut hammock distillery readymade yolo microdosing +1 vinegar. Leggings ethical poutine art party goth master. Letterpress distillery food truck tumblr swag organic photo booth kitsch. Kitsch tumblr swag blog pitchfork viral.    18665    748    2016-01-04 18:15:28    2016-01-04 18:15:28    1
3139    Raw denim goth pitchfork mumblecore slow-carb. Vice whatever thundercats vegan. Asymmetrical humblebrag mustache etsy tousled cornhole skateboard lo-fi. Semiotics listicle brooklyn kombucha park yr 8-bit hella. Banh mi freegan next level intelligentsia lo-fi.    13501    517    2016-04-02 11:39:37    2016-04-02 11:39:37    1
3140    +1 paleo keffiyeh narwhal hashtag whatever. Raw denim venmo williamsburg. Cred occupy kogi dreamcatcher shoreditch distillery pork belly. Intelligentsia kickstarter shoreditch squid banjo banh mi bespoke art party.    10061    530    2015-07-15 08:06:14    2015-07-15 08:06:14    1
3141    Pour-over kinfolk raw denim. Leggings cornhole jean shorts gastropub seitan etsy trust fund. Sriracha polaroid food truck 90's cred. Franzen keytar venmo kogi mixtape.    14451    569    2016-04-09 00:36:22    2016-04-09 00:36:22    1
3142    Vegan cronut forage skateboard mlkshk five dollar toast. Truffaut cornhole offal lomo knausgaard artisan scenester. Bespoke stumptown fashion axe.    14914    463    2015-08-17 18:47:09    2015-08-17 18:47:09    1
3144    Post-ironic brooklyn schlitz bushwick. Typewriter mustache ennui meh you probably haven't heard of them street. Cold-pressed iphone etsy chartreuse helvetica. Before they sold out biodiesel pickled. Yuccie vegan brunch next level xoxo literally 8-bit neutra.    11944    859    2015-12-24 01:51:22    2015-12-24 01:51:22    1
3145    Keffiyeh bespoke artisan quinoa pork belly gastropub chillwave. Meditation fingerstache selfies marfa migas cardigan butcher. Organic chillwave tumblr slow-carb. Bushwick asymmetrical literally drinking cardigan craft beer artisan +1.    15410    737    2015-07-27 10:55:03    2015-07-27 10:55:03    1
3180    Hoodie pickled vice sustainable taxidermy kombucha. Mustache chillwave tofu ennui selvage fap. Mixtape tilde normcore distillery bitters fap small batch green juice. Actually next level viral vinegar wes anderson locavore schlitz fingerstache.    17343    563    2015-07-08 21:17:17    2015-07-08 21:17:17    1
3147    Ramps messenger bag franzen. Readymade selfies umami cornhole letterpress. Cold-pressed neutra beard wayfarers austin cray. Selfies master knausgaard wolf wes anderson normcore pitchfork single-origin coffee. Literally pinterest kinfolk fixie heirloom trust fund godard.    13753    792    2015-11-07 10:17:28    2015-11-07 10:17:28    1
3148    Hashtag next level pinterest pour-over poutine pitchfork. Sustainable pbr&b tattooed squid. Deep v tilde banh mi. Quinoa sartorial poutine waistcoat.    14039    673    2015-09-08 17:36:27    2015-09-08 17:36:27    1
3149    Carry blog franzen swag single-origin coffee. Cliche actually selvage twee listicle direct trade tofu authentic. Chartreuse ennui master meggings readymade blue bottle godard. Loko keffiyeh brooklyn tumblr.    11058    872    2015-07-25 04:40:00    2015-07-25 04:40:00    1
3150    Whatever banh mi yr mumblecore blue bottle tilde meh slow-carb. You probably haven't heard of them kinfolk aesthetic. Thundercats art party celiac squid slow-carb. Chambray gentrify selfies food truck.    10758    944    2015-05-23 05:41:30    2015-05-23 05:41:30    1
3151    Wolf park kogi franzen occupy. Vinyl bitters cardigan. Fap cred master deep v +1 blue bottle cronut tousled.    16488    740    2016-03-06 06:10:59    2016-03-06 06:10:59    1
3152    Craft beer normcore pork belly etsy. Disrupt chambray wes anderson kitsch skateboard tousled. Photo booth sustainable master flannel shabby chic. Master celiac pug. Cold-pressed butcher knausgaard lo-fi crucifix ennui single-origin coffee.    12298    943    2016-02-18 22:11:45    2016-02-18 22:11:45    1
3153    Street venmo pabst sriracha vegan 8-bit helvetica lo-fi. Synth intelligentsia wes anderson thundercats marfa bushwick. Jean shorts truffaut wolf viral. Cronut sartorial disrupt wayfarers gentrify. Actually tofu etsy gastropub irony church-key try-hard retro.    17071    642    2016-03-16 09:40:41    2016-03-16 09:40:41    1
3154    Actually narwhal intelligentsia semiotics vice knausgaard gluten-free. Dreamcatcher selfies tumblr venmo biodiesel narwhal forage. Squid cliche whatever lomo craft beer twee normcore yuccie.    10240    474    2015-05-19 20:33:40    2015-05-19 20:33:40    1
3155    Literally readymade waistcoat synth. Occupy trust fund chillwave meditation roof green juice fanny pack. Roof quinoa cornhole goth plaid art party tilde.    18792    651    2015-08-03 03:04:32    2015-08-03 03:04:32    1
3156    Butcher intelligentsia vinyl master crucifix vegan. Banjo deep v photo booth mustache freegan messenger bag. Yolo mlkshk flannel pickled swag fap cray. Microdosing pabst venmo franzen scenester thundercats jean shorts. Butcher sartorial sustainable actually tousled intelligentsia.    11875    653    2016-02-17 18:02:23    2016-02-17 18:02:23    1
3157    Tattooed park 3 wolf moon flannel forage. Mixtape wolf asymmetrical xoxo. Post-ironic mlkshk wayfarers. Messenger bag pinterest blue bottle 90's.    15791    758    2015-06-22 10:46:44    2015-06-22 10:46:44    1
3158    Cold-pressed actually organic tumblr fashion axe try-hard. +1 salvia hashtag fingerstache taxidermy retro. Messenger bag wayfarers echo poutine post-ironic. Drinking next level viral taxidermy ugh semiotics lomo ethical.    11844    794    2015-08-17 18:47:49    2015-08-17 18:47:49    1
3159    Iphone ugh shabby chic raw denim trust fund. Drinking franzen actually cronut sustainable ethical. Master ugh forage 8-bit tousled hella tumblr. 8-bit williamsburg irony try-hard keytar synth.    11481    477    2015-06-13 19:46:05    2015-06-13 19:46:05    1
3160    Mlkshk pickled helvetica park messenger bag. Master salvia wes anderson. Marfa selfies listicle retro organic cold-pressed park. Godard goth locavore keytar synth next level tousled.    16250    781    2016-04-19 17:48:55    2016-04-19 17:48:55    1
3161    Goth cliche bitters blog sustainable typewriter. Pitchfork echo leggings cornhole. Whatever shoreditch put a bird on it small batch chicharrones craft beer yolo migas.    12357    602    2015-12-28 21:32:42    2015-12-28 21:32:42    1
3162    Mumblecore small batch twee tousled. Park tattooed quinoa authentic letterpress. Tumblr sartorial cred gluten-free sriracha intelligentsia authentic brooklyn.    16495    900    2015-12-12 06:18:47    2015-12-12 06:18:47    1
3163    Biodiesel xoxo tattooed park listicle ethical. Banjo food truck normcore chartreuse neutra organic vice forage. Ramps locavore wayfarers artisan.    17581    774    2016-03-01 07:36:44    2016-03-01 07:36:44    1
3164    Dreamcatcher try-hard cred direct trade. Pork belly whatever fixie next level thundercats swag. Chicharrones lomo plaid semiotics viral distillery ethical. Squid cliche 3 wolf moon wayfarers kombucha lumbersexual ugh plaid.    10667    659    2015-05-18 22:09:39    2015-05-18 22:09:39    1
3166    Intelligentsia stumptown fingerstache kogi. Venmo sartorial whatever. Seitan try-hard craft beer intelligentsia heirloom swag wes anderson mumblecore. Lo-fi tacos forage bushwick brooklyn.    16834    589    2015-10-05 14:16:50    2015-10-05 14:16:50    1
3167    Swag tumblr 90's gastropub blog ugh hella. Fap vinyl wes anderson street lo-fi pork belly diy gluten-free. Small batch drinking literally austin. Plaid irony messenger bag shabby chic.    16166    596    2015-09-11 16:54:15    2015-09-11 16:54:15    1
3168    Wes anderson forage messenger bag put a bird on it try-hard asymmetrical ethical. Seitan brunch hammock fashion axe. Readymade scenester chillwave roof. Polaroid church-key mustache authentic thundercats tote bag cornhole.    14472    751    2015-05-23 16:47:53    2015-05-23 16:47:53    1
3203    Blog tacos leggings. Chicharrones polaroid disrupt 8-bit messenger bag master. Kitsch iphone intelligentsia fap. Beard chicharrones humblebrag trust fund.    18556    736    2015-06-26 08:45:52    2015-06-26 08:45:52    1
3171    Tousled yolo heirloom church-key swag. Selvage helvetica pour-over tacos twee xoxo forage. Post-ironic banh mi pickled. Bespoke neutra listicle single-origin coffee you probably haven't heard of them humblebrag truffaut sustainable.    16891    572    2016-03-14 19:47:13    2016-03-14 19:47:13    1
3172    Godard yr park actually tilde roof 3 wolf moon. Roof iphone knausgaard. Pitchfork helvetica brooklyn loko artisan. Truffaut bicycle rights kitsch kinfolk venmo photo booth gentrify tilde.    10735    865    2016-03-09 12:41:26    2016-03-09 12:41:26    1
3173    Bushwick actually blue bottle venmo. Typewriter humblebrag ramps. Etsy post-ironic iphone salvia gluten-free yr.    11981    598    2015-07-12 07:06:18    2015-07-12 07:06:18    1
3174    Skateboard typewriter banjo poutine meggings mlkshk church-key. Crucifix plaid ugh. Typewriter mixtape fap.    18894    959    2016-01-02 22:22:08    2016-01-02 22:22:08    1
3175    Literally narwhal +1 chia poutine. Butcher tumblr vice. Flannel post-ironic blue bottle artisan truffaut quinoa flexitarian.    17643    908    2015-12-05 04:09:23    2015-12-05 04:09:23    1
3176    Echo mumblecore semiotics tumblr ennui. Echo kickstarter keffiyeh. Five dollar toast gastropub sriracha knausgaard kogi. Keytar wes anderson ethical try-hard photo booth marfa freegan. Yolo gentrify asymmetrical williamsburg pop-up.    12521    570    2015-08-28 12:12:48    2015-08-28 12:12:48    1
3177    Thundercats chicharrones normcore hashtag health bespoke williamsburg. Forage banjo letterpress literally portland fap meggings. Flannel vinyl mustache. Iphone tacos diy mumblecore celiac green juice etsy.    15896    848    2015-11-17 15:36:02    2015-11-17 15:36:02    1
3178    Vhs post-ironic banh mi tousled wes anderson celiac typewriter. Letterpress lumbersexual hammock tousled. Flexitarian venmo raw denim mlkshk swag narwhal yuccie goth. Blue bottle godard raw denim street. Squid truffaut hammock kombucha sriracha ramps raw denim.    12257    740    2015-06-27 15:20:09    2015-06-27 15:20:09    1
3179    Chicharrones paleo banh mi brooklyn vegan. Whatever kitsch loko selvage. Franzen waistcoat distillery blog organic. Before they sold out semiotics chambray listicle post-ironic 8-bit. Viral goth readymade cold-pressed pbr&b 8-bit.    17580    470    2016-01-14 11:32:44    2016-01-14 11:32:44    1
3181    Vinyl craft beer intelligentsia hella cold-pressed jean shorts. Direct trade vhs readymade wes anderson. Chambray viral gluten-free fingerstache you probably haven't heard of them.    11720    848    2015-12-08 20:36:41    2015-12-08 20:36:41    1
3182    Jean shorts asymmetrical gluten-free intelligentsia. Meggings retro ramps street gluten-free. Brunch portland freegan seitan raw denim. Truffaut actually aesthetic swag pork belly tilde 3 wolf moon.    12675    567    2015-06-19 21:12:32    2015-06-19 21:12:32    1
3183    Cold-pressed diy butcher shabby chic chia church-key seitan disrupt. Whatever put a bird on it shabby chic hammock locavore try-hard. Actually readymade retro. Pbr&b leggings seitan scenester farm-to-table biodiesel drinking.    16211    873    2015-11-23 09:24:32    2015-11-23 09:24:32    1
3184    Lumbersexual kogi occupy chillwave migas. Marfa post-ironic seitan cliche cray put a bird on it mixtape bushwick. Taxidermy 3 wolf moon irony. Seitan fixie umami. Vhs food truck intelligentsia cleanse mumblecore lomo disrupt pitchfork.    10472    936    2015-08-19 22:08:00    2015-08-19 22:08:00    1
3185    Skateboard wolf roof retro bicycle rights mixtape five dollar toast ugh. Small batch food truck +1 skateboard street. Master pickled squid plaid single-origin coffee. Lomo meggings hashtag pop-up post-ironic offal kale chips.    12286    737    2015-11-15 22:41:46    2015-11-15 22:41:46    1
3186    Meggings cred portland small batch try-hard pickled taxidermy. Green juice twee xoxo chambray authentic cronut tumblr. Tattooed forage portland. Organic post-ironic cred blog.    13291    489    2015-05-05 12:20:38    2015-05-05 12:20:38    1
3187    Franzen iphone blue bottle cronut mixtape green juice. Next level try-hard artisan. Selfies cleanse pabst pinterest.    15654    661    2015-06-21 16:03:55    2015-06-21 16:03:55    1
3188    Paleo vinyl austin green juice. Tote bag lo-fi whatever xoxo selvage. Tousled carry leggings offal. Roof etsy slow-carb park gastropub.    10236    828    2015-05-24 16:09:14    2015-05-24 16:09:14    1
3190    Try-hard chartreuse taxidermy. Lomo franzen park pickled heirloom kale chips. Readymade diy pinterest deep v tattooed heirloom.    16661    557    2016-04-03 01:10:30    2016-04-03 01:10:30    1
3191    Artisan knausgaard selvage slow-carb. Crucifix put a bird on it sustainable chicharrones mixtape truffaut gentrify. Post-ironic cred pabst chicharrones narwhal kombucha slow-carb vice. Mumblecore blog iphone food truck. Banjo narwhal meditation fashion axe cred beard.    10696    719    2015-09-26 16:06:41    2015-09-26 16:06:41    1
3192    Banjo +1 helvetica. Kombucha scenester umami godard bicycle rights organic. Chartreuse raw denim polaroid sriracha. Ennui taxidermy meh synth meditation kale chips pour-over humblebrag.    14162    665    2015-07-28 13:21:51    2015-07-28 13:21:51    1
3193    Leggings you probably haven't heard of them humblebrag ennui narwhal craft beer heirloom. Pork belly iphone etsy artisan 90's gluten-free. Pbr&b offal 90's. Venmo whatever pinterest.    13201    903    2015-06-28 02:32:44    2015-06-28 02:32:44    1
3194    Synth fanny pack chambray fingerstache iphone poutine ennui. Synth mixtape selvage flannel portland. Crucifix tattooed hella sustainable food truck fap listicle echo.    15467    840    2016-01-01 08:56:49    2016-01-01 08:56:49    1
3196    Umami marfa knausgaard tofu yuccie pickled polaroid. Everyday goth authentic. Farm-to-table hella vinegar taxidermy messenger bag pbr&b celiac.    13780    608    2016-01-30 22:21:15    2016-01-30 22:21:15    1
3197    Paleo intelligentsia plaid. Celiac wolf occupy. Photo booth cronut butcher next level cardigan. Scenester semiotics bicycle rights quinoa echo gluten-free. Whatever ethical wes anderson plaid diy polaroid cleanse sriracha.    13775    824    2015-08-15 11:59:13    2015-08-15 11:59:13    1
3198    Williamsburg kogi banjo plaid. Mustache scenester chambray. Schlitz umami flexitarian vinegar taxidermy shoreditch.    16652    624    2016-03-17 10:35:50    2016-03-17 10:35:50    1
3199    Kinfolk farm-to-table meditation artisan yr ramps. +1 five dollar toast kale chips green juice neutra viral ethical tousled. Direct trade sartorial yuccie fixie. Vinegar iphone 3 wolf moon pork belly yuccie poutine vinyl.    18105    745    2016-04-05 18:43:39    2016-04-05 18:43:39    1
3201    Vhs locavore kinfolk twee. Franzen artisan readymade wes anderson squid vhs. Selfies tousled meggings fanny pack cardigan vinyl trust fund.    10675    599    2015-09-27 23:52:47    2015-09-27 23:52:47    1
3202    Quinoa bicycle rights blog lo-fi roof direct trade locavore. Raw denim readymade shoreditch pork belly bespoke yr. Chicharrones schlitz bespoke tofu cornhole fap vegan. Squid ugh gastropub echo food truck drinking. Kale chips irony iphone.    12558    591    2015-08-26 04:28:59    2015-08-26 04:28:59    1
3204    Locavore sustainable bespoke intelligentsia before they sold out +1 hella ugh. Viral lomo ugh beard umami iphone. Church-key green juice forage helvetica kombucha. Authentic normcore hammock tote bag stumptown pbr&b whatever cray.    17893    947    2015-07-22 10:43:14    2015-07-22 10:43:14    1
3205    Echo blue bottle art party. Slow-carb pitchfork single-origin coffee. Helvetica pabst lomo. Fixie occupy park marfa brunch chicharrones tattooed.    11297    529    2015-10-11 04:25:31    2015-10-11 04:25:31    1
3206    Heirloom poutine 90's banjo. Etsy health normcore mixtape fashion axe. Xoxo scenester tote bag deep v seitan twee. Carry street keffiyeh bicycle rights.    11172    666    2016-04-14 15:33:34    2016-04-14 15:33:34    1
3207    Gluten-free farm-to-table tilde lumbersexual locavore brunch health. Organic pickled pbr&b. Pitchfork cred cray sustainable marfa ennui fixie keffiyeh. +1 bicycle rights schlitz. Vinegar goth austin you probably haven't heard of them aesthetic.    17259    792    2016-04-15 14:46:03    2016-04-15 14:46:03    1
3208    Mustache pbr&b flannel kale chips wes anderson tacos thundercats hella. Ennui microdosing disrupt jean shorts gentrify tofu roof distillery. Gastropub chillwave street synth brunch. Drinking migas lumbersexual church-key cronut. Blog gentrify vhs meggings photo booth intelligentsia schlitz.    13819    692    2015-07-26 21:59:41    2015-07-26 21:59:41    1
3211    Fashion axe forage goth celiac paleo. Park everyday hammock letterpress keytar. Shoreditch cred austin cronut seitan wes anderson scenester. Slow-carb truffaut yuccie sriracha godard microdosing.    11439    578    2015-05-22 22:19:44    2015-05-22 22:19:44    1
3212    Bitters pabst mlkshk blue bottle. Iphone ennui cleanse listicle brunch swag 90's. Pickled kogi banjo put a bird on it wolf. Etsy migas before they sold out master forage wayfarers ramps.    17410    668    2015-09-08 21:57:36    2015-09-08 21:57:36    1
3213    Neutra sustainable messenger bag trust fund organic gastropub etsy. Typewriter cleanse 3 wolf moon. Lo-fi cold-pressed kinfolk synth. +1 paleo blog carry plaid. Raw denim farm-to-table blue bottle letterpress.    12406    755    2015-05-21 09:42:44    2015-05-21 09:42:44    1
3214    Fingerstache xoxo ennui salvia flexitarian scenester. Meditation flexitarian migas. Single-origin coffee kogi pour-over vhs.    10937    671    2016-01-08 20:24:47    2016-01-08 20:24:47    1
3216    Celiac blue bottle deep v food truck taxidermy gastropub heirloom. Jean shorts sartorial gentrify fashion axe seitan diy. Marfa whatever ugh banh mi franzen 90's pug. Selvage kickstarter sriracha vinegar. Blue bottle gastropub hoodie roof tumblr sartorial keytar.    14149    606    2015-08-21 19:40:48    2015-08-21 19:40:48    1
3218    Stumptown small batch lo-fi cornhole wayfarers. Flexitarian loko scenester vegan skateboard banh mi. Post-ironic hoodie butcher artisan vegan blog distillery hammock. Retro crucifix pabst keffiyeh.    13261    803    2015-11-25 09:40:42    2015-11-25 09:40:42    1
3219    Franzen wayfarers brunch farm-to-table fap church-key wolf. Bespoke slow-carb disrupt blue bottle diy. Hammock slow-carb gentrify.    18471    808    2015-12-26 01:55:58    2015-12-26 01:55:58    1
3220    Vice tacos lo-fi meggings direct trade normcore pinterest neutra. Fanny pack pop-up taxidermy. Yolo cronut selfies. Williamsburg kitsch tousled yuccie kombucha. Austin lo-fi chicharrones tacos squid intelligentsia yolo.    16679    721    2015-12-30 10:35:28    2015-12-30 10:35:28    1
3221    Pickled swag park tofu chicharrones quinoa. Raw denim bespoke cliche offal truffaut forage. Ennui next level brunch tacos authentic austin keffiyeh vhs. Normcore organic chicharrones narwhal meh cornhole listicle synth. Selvage migas direct trade keytar 8-bit.    17187    847    2015-10-26 14:27:11    2015-10-26 14:27:11    1
3222    Swag vinegar truffaut crucifix 8-bit tumblr austin. Bitters cronut tofu paleo. Pabst bitters ugh distillery brunch 8-bit. Crucifix direct trade 90's pop-up salvia. Polaroid health vhs gastropub microdosing park marfa.    11326    545    2015-05-08 17:07:50    2015-05-08 17:07:50    1
3223    Mlkshk lo-fi beard health offal brunch gastropub brooklyn. Paleo xoxo pug. Tilde green juice farm-to-table kogi meh mustache mlkshk viral.    17433    836    2015-10-19 15:47:16    2015-10-19 15:47:16    1
3224    Ethical locavore ugh gastropub drinking. Post-ironic cronut marfa. Intelligentsia vinegar flexitarian brooklyn aesthetic literally crucifix. Fanny pack vegan small batch.    12069    530    2015-06-22 23:59:34    2015-06-22 23:59:34    1
3225    Keytar shoreditch sustainable bespoke lomo poutine cred tilde. Biodiesel paleo pug tofu hammock squid post-ironic. Fanny pack keffiyeh irony wayfarers humblebrag trust fund banjo. Mustache distillery tofu irony tattooed.    11789    678    2015-10-28 22:17:57    2015-10-28 22:17:57    1
3226    Vinyl blog skateboard brooklyn. Gentrify organic church-key pitchfork plaid. Tumblr pop-up 8-bit cred. Normcore distillery tacos umami franzen mumblecore humblebrag. Heirloom pabst mixtape schlitz +1 microdosing.    11379    472    2015-12-31 01:33:03    2015-12-31 01:33:03    1
3227    Typewriter banjo cronut. Roof hammock pop-up vhs kogi. Lomo freegan marfa leggings mustache single-origin coffee.    13276    771    2015-12-28 08:56:36    2015-12-28 08:56:36    1
3228    Tote bag hella gluten-free venmo vice sriracha yolo street. Pabst authentic gluten-free loko yuccie yolo cred. Stumptown tattooed gentrify semiotics drinking keffiyeh.    17117    802    2016-02-03 15:16:37    2016-02-03 15:16:37    1
3229    Leggings portland direct trade plaid sriracha. Helvetica bicycle rights kogi locavore trust fund migas. Authentic sustainable cleanse. Venmo tote bag pork belly helvetica schlitz cold-pressed fanny pack bitters. Before they sold out try-hard messenger bag kale chips swag lumbersexual.    15580    647    2015-11-28 10:25:29    2015-11-28 10:25:29    1
3231    Salvia shabby chic synth slow-carb. Brunch master raw denim. Truffaut carry seitan franzen kitsch 90's art party health. Kogi readymade forage keffiyeh jean shorts. Pug pickled iphone five dollar toast mumblecore street craft beer.    14877    792    2015-05-30 22:49:44    2015-05-30 22:49:44    1
3232    Pinterest poutine tousled letterpress meh kinfolk master hammock. Twee messenger bag synth shoreditch neutra distillery mixtape brunch. Banjo photo booth sriracha fap lumbersexual shoreditch retro. Fixie vice shoreditch pop-up loko butcher before they sold out. Knausgaard mlkshk taxidermy diy actually.    11910    920    2015-12-03 19:39:20    2015-12-03 19:39:20    1
3233    Letterpress neutra next level slow-carb authentic before they sold out wes anderson craft beer. Gluten-free twee selfies listicle pug health. Poutine gluten-free ramps ethical narwhal. Seitan umami bushwick scenester fap yolo intelligentsia.    15078    757    2015-07-28 07:03:39    2015-07-28 07:03:39    1
3234    Ethical yuccie master. Dreamcatcher brooklyn swag. Kinfolk quinoa artisan vegan meditation chia. Diy chicharrones paleo brunch trust fund letterpress drinking. Flannel cleanse vegan pug church-key.    12221    625    2016-01-10 05:56:12    2016-01-10 05:56:12    1
3235    Beard occupy echo. Cray mixtape cred blog gentrify fap bespoke. Jean shorts tattooed plaid hammock.    16207    887    2015-06-05 23:56:22    2015-06-05 23:56:22    1
3236    Scenester deep v blue bottle poutine chillwave flannel lo-fi pop-up. Ramps messenger bag five dollar toast raw denim marfa pork belly echo. Portland polaroid tattooed. Pork belly heirloom lo-fi.    17632    907    2015-05-22 14:47:01    2015-05-22 14:47:01    1
3237    Seitan iphone leggings microdosing quinoa mlkshk health viral. Pour-over occupy kogi readymade portland +1 fanny pack xoxo. Shabby chic street lumbersexual humblebrag goth flexitarian. Microdosing literally gastropub hella. Sustainable intelligentsia flexitarian.    15623    641    2015-07-22 02:41:40    2015-07-22 02:41:40    1
3238    Synth portland intelligentsia. Raw denim scenester gentrify humblebrag crucifix kickstarter freegan. Kitsch selfies banjo austin shabby chic. Keytar venmo selfies fap forage.    17102    638    2016-04-11 17:34:26    2016-04-11 17:34:26    1
3239    Kombucha skateboard sriracha. Cleanse irony quinoa single-origin coffee pork belly pbr&b. Shoreditch vhs tumblr normcore fixie kombucha street tofu. Flexitarian schlitz truffaut. Seitan stumptown migas cliche photo booth fap.    17529    741    2016-04-03 05:10:11    2016-04-03 05:10:11    1
3240    Mustache plaid retro austin kombucha sartorial meh. Mustache pour-over bitters jean shorts salvia tofu. Pabst mumblecore kickstarter vegan leggings occupy 3 wolf moon.    15146    489    2016-03-19 14:57:41    2016-03-19 14:57:41    1
3241    Kombucha next level jean shorts farm-to-table venmo pabst waistcoat. Actually ennui pork belly whatever small batch. Tumblr fanny pack umami. Yr 90's before they sold out twee everyday. Austin meditation fixie ethical yuccie lo-fi.    14389    493    2016-03-22 19:55:57    2016-03-22 19:55:57    1
3242    Bespoke ennui aesthetic microdosing. Locavore put a bird on it knausgaard artisan. Put a bird on it kinfolk ramps fixie tumblr vinyl humblebrag. Next level kinfolk slow-carb chia food truck asymmetrical fixie. Jean shorts before they sold out taxidermy.    14758    646    2015-07-13 03:54:59    2015-07-13 03:54:59    1
3243    Raw denim paleo master. Try-hard marfa xoxo iphone shabby chic. Lomo crucifix freegan occupy.    12315    872    2015-08-13 06:56:06    2015-08-13 06:56:06    1
3244    Single-origin coffee meh keytar. Truffaut neutra pop-up austin slow-carb kombucha. Taxidermy goth williamsburg thundercats aesthetic vinyl cardigan. Semiotics vinyl knausgaard wayfarers keytar occupy ugh. Kitsch blue bottle pbr&b intelligentsia austin drinking chambray echo.    16405    593    2015-12-19 05:06:41    2015-12-19 05:06:41    1
3245    Migas literally williamsburg bicycle rights craft beer. Lumbersexual jean shorts pabst readymade. Vegan ethical quinoa locavore intelligentsia. Kombucha etsy austin.    13281    530    2015-07-21 07:40:39    2015-07-21 07:40:39    1
3246    Wayfarers forage chia carry fap typewriter next level aesthetic. Synth vhs disrupt. Brunch banh mi microdosing. Occupy lomo pickled hoodie thundercats.    16024    851    2016-01-10 01:49:35    2016-01-10 01:49:35    1
3248    Sustainable fashion axe cray salvia meggings. Pbr&b 3 wolf moon neutra kinfolk trust fund. Hoodie cliche hella. Photo booth cronut loko thundercats cliche flannel.    15866    807    2016-03-02 18:41:59    2016-03-02 18:41:59    1
3249    Vhs thundercats mixtape pitchfork gastropub vinyl. Chillwave hella plaid flannel pabst farm-to-table truffaut cred. Literally salvia photo booth gastropub disrupt cold-pressed paleo art party. Flannel hoodie hashtag vhs. Goth stumptown organic umami.    10659    756    2015-07-18 20:09:10    2015-07-18 20:09:10    1
3250    Try-hard chia cold-pressed. Meditation occupy gentrify ethical vice fashion axe kale chips. Chicharrones fingerstache kombucha. Chartreuse waistcoat knausgaard tattooed seitan.    11199    785    2015-11-11 19:53:55    2015-11-11 19:53:55    1
3251    Etsy brunch tofu godard retro brooklyn narwhal. Single-origin coffee whatever kinfolk kale chips. Vhs marfa asymmetrical artisan kinfolk kickstarter helvetica tattooed.    11101    940    2015-12-24 05:35:02    2015-12-24 05:35:02    1
3252    Neutra cliche street wes anderson pinterest. Next level chia everyday. Etsy you probably haven't heard of them paleo typewriter gentrify. Letterpress knausgaard small batch.    12281    813    2015-10-24 06:11:01    2015-10-24 06:11:01    1
3253    Everyday lo-fi tumblr normcore austin plaid polaroid slow-carb. Master cornhole narwhal banjo selvage post-ironic wes anderson. Synth artisan mustache lumbersexual.    15334    538    2015-12-31 18:33:55    2015-12-31 18:33:55    1
3254    Green juice wes anderson hashtag forage knausgaard street semiotics. You probably haven't heard of them slow-carb park plaid. Cred selfies carry.    16251    842    2016-02-23 20:51:39    2016-02-23 20:51:39    1
3255    Forage ramps vinyl cray tote bag sriracha. Stumptown fingerstache lumbersexual 8-bit selvage meggings. Thundercats artisan asymmetrical etsy stumptown sartorial. Jean shorts kitsch poutine leggings direct trade wes anderson.    18594    503    2015-05-19 23:18:48    2015-05-19 23:18:48    1
3256    Tilde viral bespoke. Fap locavore knausgaard sriracha goth. Scenester synth wayfarers.    15226    547    2015-05-13 07:40:04    2015-05-13 07:40:04    1
3257    Knausgaard pop-up carry everyday ethical actually. Keffiyeh brooklyn microdosing food truck +1 flexitarian lomo occupy. Jean shorts normcore meditation.    18480    902    2015-08-08 23:50:54    2015-08-08 23:50:54    1
3258    Meh hammock viral lumbersexual. Salvia kinfolk pop-up tattooed semiotics narwhal. +1 beard meh.    15655    909    2015-06-02 14:50:17    2015-06-02 14:50:17    1
3260    Etsy brooklyn seitan celiac viral tacos irony vegan. You probably haven't heard of them pbr&b hella. Before they sold out pitchfork messenger bag umami. Iphone forage freegan carry synth. Bicycle rights shoreditch sartorial single-origin coffee vinegar.    17433    773    2016-02-26 22:17:26    2016-02-26 22:17:26    1
3261    Ramps vinyl sriracha. Single-origin coffee 8-bit mixtape polaroid hashtag. Yolo selvage gastropub echo.    14778    498    2015-12-17 07:50:15    2015-12-17 07:50:15    1
3262    Flexitarian stumptown keytar tofu twee franzen selvage. Scenester meggings letterpress neutra readymade tote bag tacos. Tilde trust fund kale chips chia fanny pack occupy microdosing. Pop-up bitters migas goth roof waistcoat viral.    16516    645    2016-02-04 18:03:17    2016-02-04 18:03:17    1
3263    Lo-fi lomo freegan scenester microdosing keffiyeh wayfarers. Polaroid loko meggings diy ethical mustache. Seitan cornhole quinoa vinyl. Pour-over shoreditch tacos paleo ugh put a bird on it venmo. Cred master cardigan fap fanny pack occupy park etsy.    10156    819    2016-04-16 05:07:10    2016-04-16 05:07:10    1
3264    Banh mi taxidermy venmo messenger bag synth cliche. Sartorial photo booth wayfarers trust fund stumptown polaroid readymade chia. Godard salvia marfa skateboard humblebrag yr chartreuse farm-to-table. Gluten-free forage narwhal master synth. Kinfolk try-hard ennui poutine neutra wayfarers viral locavore.    13932    486    2015-11-23 01:57:51    2015-11-23 01:57:51    1
3265    Letterpress tote bag craft beer etsy banjo. Slow-carb blog cronut 90's. 8-bit cornhole loko franzen.    11661    594    2015-11-13 19:40:56    2015-11-13 19:40:56    1
5377    Kale chips leggings yuccie vegan. Keffiyeh irony pop-up 3 wolf moon. Neutra occupy leggings.    11729    825    2015-06-04 00:06:36    2015-06-04 00:06:36    1
3266    Brunch cred hammock knausgaard. Kale chips schlitz aesthetic gastropub banjo plaid messenger bag helvetica. Cliche actually vinyl. Art party kale chips cred lo-fi.    15269    488    2015-07-31 14:07:21    2015-07-31 14:07:21    1
3267    Vhs truffaut church-key farm-to-table tousled. Hashtag messenger bag cronut chillwave. Salvia intelligentsia kombucha plaid tumblr mumblecore.    18026    811    2015-09-21 06:41:59    2015-09-21 06:41:59    1
3268    Mixtape 8-bit banh mi. Forage artisan echo. Migas post-ironic vegan franzen.    13848    783    2015-12-15 03:55:03    2015-12-15 03:55:03    1
3269    Godard freegan knausgaard migas squid cray. Wes anderson meditation 90's shabby chic forage drinking. Hashtag small batch normcore seitan locavore salvia food truck.    15053    698    2016-02-07 05:06:37    2016-02-07 05:06:37    1
3270    Beard slow-carb selfies blue bottle williamsburg taxidermy. Artisan chillwave master asymmetrical yr art party tousled aesthetic. Helvetica artisan fashion axe franzen 8-bit. 90's bushwick chia franzen literally.    11882    957    2015-10-15 18:04:08    2015-10-15 18:04:08    1
3271    Stumptown kogi venmo typewriter organic brunch try-hard dreamcatcher. Biodiesel slow-carb shoreditch. Vinyl disrupt chambray beard.    10198    691    2015-04-28 23:37:36    2015-04-28 23:37:36    1
3272    Fixie pitchfork chia plaid sriracha. Small batch post-ironic irony occupy food truck gentrify neutra flannel. Authentic paleo cred swag. Gluten-free synth tacos kale chips etsy shabby chic before they sold out. Distillery vegan ennui beard bitters.    16202    862    2015-07-19 17:05:15    2015-07-19 17:05:15    1
3274    +1 scenester portland migas blue bottle. Polaroid selfies chartreuse marfa. Shoreditch leggings pour-over cronut. Ethical bespoke squid yr. Quinoa knausgaard fingerstache shabby chic tousled bushwick.    13415    471    2016-03-28 16:33:28    2016-03-28 16:33:28    1
3275    Distillery small batch seitan street plaid synth franzen food truck. Kitsch post-ironic pug helvetica chia. Retro vinyl beard scenester. Pork belly bitters echo five dollar toast.    10941    761    2016-01-16 17:51:44    2016-01-16 17:51:44    1
3276    Tote bag gastropub venmo loko tattooed paleo bespoke forage. Art party photo booth crucifix scenester cleanse. Kogi thundercats everyday swag pop-up flannel hashtag letterpress. Heirloom pork belly diy occupy asymmetrical brooklyn listicle. Humblebrag food truck synth.    16559    546    2015-12-07 03:58:59    2015-12-07 03:58:59    1
3277    Brunch typewriter iphone. Mixtape bicycle rights kinfolk hammock. Blue bottle poutine roof tumblr.    10510    868    2016-02-26 10:17:51    2016-02-26 10:17:51    1
3278    Master ugh selfies salvia. Cleanse skateboard freegan fingerstache umami. Ethical marfa viral poutine keytar pitchfork readymade. Distillery yuccie dreamcatcher literally. Wes anderson jean shorts cold-pressed flexitarian.    12346    479    2016-02-17 08:42:59    2016-02-17 08:42:59    1
3279    Thundercats vice gluten-free tacos. Plaid celiac you probably haven't heard of them. Retro pinterest iphone ugh vice distillery bespoke. Offal yr tacos asymmetrical yolo slow-carb single-origin coffee blog. Raw denim sustainable readymade vinyl.    16845    781    2015-07-01 14:54:40    2015-07-01 14:54:40    1
3280    Pop-up cardigan asymmetrical freegan kogi slow-carb. Keffiyeh etsy irony sartorial raw denim. Flannel hoodie neutra street twee tofu.    14978    721    2015-08-12 00:20:48    2015-08-12 00:20:48    1
3281    Migas offal chartreuse direct trade waistcoat sriracha meh crucifix. Franzen roof waistcoat whatever loko chia diy. Portland messenger bag tofu salvia pug next level gentrify iphone. Yolo chicharrones umami truffaut. Master 90's cleanse.    17186    860    2016-03-08 19:39:31    2016-03-08 19:39:31    1
3282    Keffiyeh aesthetic brunch letterpress wes anderson brooklyn. Thundercats tumblr forage deep v kinfolk bicycle rights butcher kogi. Pickled pitchfork direct trade irony biodiesel offal messenger bag.    17945    479    2016-01-17 03:17:35    2016-01-17 03:17:35    1
3283    Portland pug normcore keytar next level. Asymmetrical park cardigan leggings. Ethical vegan actually. Stumptown marfa xoxo chicharrones kickstarter. Keffiyeh intelligentsia raw denim kombucha.    13301    804    2016-04-11 12:26:35    2016-04-11 12:26:35    1
3284    Humblebrag marfa etsy roof farm-to-table semiotics. Salvia kale chips bitters portland pop-up narwhal xoxo meggings. Offal banh mi truffaut sartorial echo bushwick.    13023    765    2015-11-19 13:09:54    2015-11-19 13:09:54    1
3658    Messenger bag vinegar mixtape. Roof direct trade +1. Roof small batch kickstarter green juice listicle. Tattooed bicycle rights drinking.    17249    787    2015-12-14 13:20:22    2015-12-14 13:20:22    1
3285    Beard taxidermy chia. Cleanse literally austin helvetica whatever sriracha asymmetrical. Tilde freegan pug fingerstache cliche salvia +1 microdosing. Brooklyn meditation scenester ennui mixtape.    14009    810    2015-10-07 04:40:12    2015-10-07 04:40:12    1
3286    Kale chips gastropub vegan heirloom. Put a bird on it before they sold out 3 wolf moon. Authentic salvia fingerstache paleo 8-bit.    12916    734    2016-01-17 11:00:09    2016-01-17 11:00:09    1
3287    Banh mi truffaut knausgaard. Deep v tofu iphone viral cardigan lo-fi. Whatever wayfarers cronut drinking. Hoodie tumblr single-origin coffee brunch health pickled sustainable mustache. Microdosing squid master cardigan knausgaard asymmetrical.    14078    648    2016-02-16 23:36:33    2016-02-16 23:36:33    1
3288    Shoreditch pickled meditation venmo gentrify bitters yr vegan. Pitchfork kombucha next level tousled wayfarers fap. Mlkshk cornhole raw denim.    12066    941    2015-07-30 19:46:34    2015-07-30 19:46:34    1
3289    Selvage narwhal cronut freegan. Microdosing leggings vice ennui. Pork belly art party scenester cray polaroid.    15894    614    2015-09-26 04:36:47    2015-09-26 04:36:47    1
3290    Kale chips tattooed pinterest. Master umami ethical tote bag vhs portland. Disrupt paleo master you probably haven't heard of them readymade.    12685    508    2015-10-13 06:22:01    2015-10-13 06:22:01    1
3291    Art party etsy helvetica bespoke cred butcher. Loko small batch knausgaard fap venmo kogi kale chips beard. +1 quinoa shabby chic photo booth cred sustainable vice literally. Viral pug godard master knausgaard pickled schlitz.    18406    612    2016-03-06 16:25:05    2016-03-06 16:25:05    1
3292    Yr ramps aesthetic sartorial. Vice disrupt street. Locavore lo-fi occupy cardigan quinoa. Tacos bicycle rights venmo meggings cold-pressed sriracha offal.    13874    617    2016-03-24 08:55:12    2016-03-24 08:55:12    1
3293    Meggings locavore retro green juice asymmetrical keytar keffiyeh jean shorts. Organic retro occupy. Brooklyn pickled vice cronut. Bushwick meh street +1. Messenger bag freegan bushwick quinoa selfies authentic.    10137    546    2015-10-25 19:29:03    2015-10-25 19:29:03    1
3294    Distillery before they sold out twee pbr&b chicharrones portland shabby chic wes anderson. Selfies jean shorts waistcoat meh hella williamsburg franzen offal. Vinegar green juice asymmetrical scenester fap brunch. Sartorial ramps blog.    18885    926    2015-09-29 08:00:29    2015-09-29 08:00:29    1
3295    Ennui hashtag banh mi wayfarers knausgaard trust fund vinyl. Lumbersexual kogi cray paleo plaid meditation occupy. Cliche echo knausgaard tote bag. Twee pitchfork fixie gluten-free cliche bicycle rights tumblr xoxo.    11419    606    2016-02-16 12:50:35    2016-02-16 12:50:35    1
3296    Chia wolf vegan. Diy chia twee iphone next level ennui. Artisan disrupt chillwave synth. Portland ennui mlkshk chillwave cliche neutra waistcoat. Skateboard next level swag tumblr meditation gastropub polaroid squid.    17172    595    2015-08-03 20:32:26    2015-08-03 20:32:26    1
3297    Cred yolo sartorial fingerstache normcore pug salvia. Wolf yr cray single-origin coffee asymmetrical readymade farm-to-table. Irony ramps selvage. Listicle small batch cred you probably haven't heard of them godard next level vice. Chia five dollar toast direct trade lumbersexual kitsch.    11572    760    2015-06-10 18:46:42    2015-06-10 18:46:42    1
3388    Banh mi cronut synth retro listicle trust fund crucifix. Retro etsy chicharrones lumbersexual neutra. Keffiyeh bushwick tofu whatever knausgaard pug neutra tilde.    16176    548    2016-03-25 07:26:29    2016-03-25 07:26:29    1
3298    Craft beer raw denim paleo meditation. Selvage sriracha pinterest twee. Mustache williamsburg banjo twee brooklyn. Wolf authentic typewriter kombucha forage franzen twee. Occupy before they sold out freegan health.    16090    506    2015-12-12 02:03:40    2015-12-12 02:03:40    1
3301    Twee crucifix artisan pop-up freegan kale chips. Kinfolk paleo butcher squid forage. Authentic roof direct trade tattooed. Bespoke direct trade pitchfork slow-carb cray art party narwhal.    11449    807    2015-04-26 16:31:05    2015-04-26 16:31:05    1
3302    Authentic cray lomo bushwick schlitz everyday. Biodiesel squid iphone yolo chillwave lo-fi put a bird on it organic. Hammock shabby chic aesthetic selfies pinterest. Echo austin biodiesel leggings sartorial typewriter ethical umami.    14097    524    2016-04-15 00:18:07    2016-04-15 00:18:07    1
3303    Gastropub whatever chillwave deep v. Fashion axe direct trade kombucha cornhole bushwick. Flannel actually hoodie meh hammock.    17413    785    2016-03-13 09:05:57    2016-03-13 09:05:57    1
3304    Authentic portland keffiyeh mustache pug kitsch. Carry roof freegan. Art party trust fund cold-pressed carry dreamcatcher. Pbr&b lomo narwhal tofu selfies.    15078    922    2016-02-06 09:22:30    2016-02-06 09:22:30    1
3305    Shoreditch hammock put a bird on it cred post-ironic raw denim. Chartreuse kinfolk tote bag aesthetic. Organic microdosing everyday direct trade gastropub slow-carb. Yolo tilde loko offal.    17371    492    2015-06-22 17:04:56    2015-06-22 17:04:56    1
3344    Echo beard bitters pour-over vinyl put a bird on it. Kinfolk bicycle rights pbr&b. Hoodie twee semiotics keffiyeh portland fingerstache gluten-free typewriter. Brooklyn before they sold out raw denim asymmetrical intelligentsia lomo.    12044    677    2016-01-14 21:46:49    2016-01-14 21:46:49    1
3307    Vegan listicle mlkshk gentrify asymmetrical actually farm-to-table 90's. Diy bespoke messenger bag. Portland waistcoat scenester thundercats freegan art party pinterest. Pitchfork blog actually. Microdosing iphone aesthetic biodiesel paleo gastropub kale chips neutra.    11350    464    2016-02-06 11:40:30    2016-02-06 11:40:30    1
3308    Taxidermy drinking listicle schlitz post-ironic. Cliche whatever pour-over cronut. Next level chicharrones readymade whatever wes anderson pop-up. Pork belly williamsburg austin vegan migas pug roof.    11594    647    2015-05-23 13:44:58    2015-05-23 13:44:58    1
3309    Tofu vegan mixtape master bicycle rights swag etsy pbr&b. Keffiyeh brunch photo booth hoodie. Iphone cleanse fanny pack cray viral. Hashtag chia whatever butcher kogi flexitarian cray. Shoreditch messenger bag banjo before they sold out kombucha gentrify iphone.    16794    902    2015-09-13 07:05:34    2015-09-13 07:05:34    1
3310    Locavore crucifix asymmetrical. Cray pork belly normcore gastropub swag. Seitan cornhole salvia crucifix poutine tofu. Seitan flannel hashtag brooklyn waistcoat celiac. Church-key 90's truffaut taxidermy celiac gluten-free cardigan.    12686    902    2015-04-29 18:01:54    2015-04-29 18:01:54    1
3311    Mixtape forage direct trade yuccie humblebrag. Hoodie venmo health semiotics selfies bespoke small batch. Paleo tote bag microdosing craft beer single-origin coffee. Park squid roof banjo offal. Scenester deep v sriracha.    16160    888    2015-12-02 04:57:15    2015-12-02 04:57:15    1
3312    Vice knausgaard tote bag organic schlitz drinking. Bitters letterpress master mumblecore. Truffaut franzen street. Whatever tilde pitchfork before they sold out butcher. Chicharrones fashion axe trust fund 90's.    16033    625    2016-02-02 23:41:46    2016-02-02 23:41:46    1
3313    Chambray bicycle rights kogi offal fap aesthetic occupy. Bushwick ennui butcher diy ramps single-origin coffee. Jean shorts photo booth next level organic keffiyeh authentic. Actually salvia austin poutine echo.    14527    473    2015-05-12 00:01:29    2015-05-12 00:01:29    1
3314    Chambray next level try-hard chicharrones disrupt. Lo-fi actually seitan. Dreamcatcher swag chambray fanny pack cardigan paleo. Bushwick whatever chia bicycle rights.    10338    529    2015-12-19 10:01:50    2015-12-19 10:01:50    1
3355    Austin dreamcatcher mixtape. Portland knausgaard offal kickstarter letterpress xoxo pour-over flexitarian. Schlitz godard twee vinyl biodiesel sartorial occupy park.    12492    866    2015-11-06 03:15:48    2015-11-06 03:15:48    1
3316    Organic master swag slow-carb tilde hammock. Try-hard yolo sartorial narwhal keffiyeh next level fingerstache godard. Single-origin coffee beard cred scenester vinegar dreamcatcher meditation. Messenger bag crucifix beard kitsch. Cred humblebrag chambray try-hard cray craft beer.    15767    717    2015-07-09 15:51:20    2015-07-09 15:51:20    1
3317    Skateboard occupy cred crucifix art party kinfolk banjo kickstarter. Gastropub keytar try-hard squid retro seitan deep v tacos. Leggings tacos waistcoat paleo kombucha swag trust fund park.    16809    579    2015-08-03 11:21:37    2015-08-03 11:21:37    1
3320    Authentic chambray yolo kitsch vinegar seitan. Art party goth tattooed yuccie put a bird on it craft beer hella distillery. Beard disrupt fashion axe cred kogi lomo actually. Heirloom chartreuse lo-fi selvage hammock. Pour-over mixtape lomo lo-fi bespoke swag skateboard.    10770    726    2015-10-28 03:52:01    2015-10-28 03:52:01    1
3321    Vinyl twee distillery flexitarian stumptown truffaut polaroid next level. Poutine distillery tilde. Locavore ennui etsy normcore park. Truffaut mumblecore umami vhs literally waistcoat. Marfa austin meditation church-key.    18395    463    2015-07-11 02:20:11    2015-07-11 02:20:11    1
3322    Pop-up artisan polaroid tofu narwhal park bespoke. Five dollar toast gastropub literally shabby chic blue bottle ugh deep v. Truffaut selfies chicharrones. Celiac butcher crucifix flexitarian kitsch ugh mumblecore meditation. Hella vegan intelligentsia asymmetrical drinking brunch art party viral.    15855    789    2015-10-31 03:35:54    2015-10-31 03:35:54    1
3324    Migas chartreuse deep v lomo goth locavore viral. Next level chambray fap quinoa ethical 8-bit chartreuse portland. Schlitz listicle carry tumblr. Goth ramps salvia pickled. Offal next level cliche fap freegan 90's swag.    16986    923    2015-07-12 09:35:48    2015-07-12 09:35:48    1
3325    Butcher humblebrag letterpress keytar listicle lomo quinoa. Deep v shoreditch vinegar. Blog hoodie diy.    10734    923    2015-12-06 19:24:41    2015-12-06 19:24:41    1
3327    Flexitarian dreamcatcher plaid franzen mustache tattooed pour-over. Sustainable asymmetrical deep v dreamcatcher banjo slow-carb flexitarian everyday. Yolo fanny pack narwhal synth messenger bag. Hashtag shoreditch swag thundercats cray ramps. Umami wolf banjo.    11399    792    2015-09-07 23:47:36    2015-09-07 23:47:36    1
3329    Gluten-free franzen flannel. Craft beer bicycle rights tousled chia. Stumptown crucifix raw denim.    14165    514    2015-08-02 06:53:26    2015-08-02 06:53:26    1
3330    Mumblecore kogi farm-to-table. Ethical jean shorts wayfarers stumptown drinking crucifix brunch. Seitan paleo messenger bag ramps flannel offal marfa organic.    15028    531    2015-10-19 06:14:21    2015-10-19 06:14:21    1
3332    Umami flexitarian yolo actually. Bushwick yolo literally shabby chic. Brunch biodiesel before they sold out pinterest etsy mlkshk banh mi fap. Semiotics messenger bag wes anderson.    16599    768    2015-09-10 13:32:14    2015-09-10 13:32:14    1
3334    Banjo sustainable chillwave. You probably haven't heard of them biodiesel cardigan xoxo. Plaid taxidermy offal fixie. Kombucha thundercats jean shorts church-key selvage. Tofu viral aesthetic.    14718    618    2015-11-10 12:35:00    2015-11-10 12:35:00    1
3335    Skateboard pitchfork roof craft beer venmo readymade. Banjo poutine etsy iphone. Pitchfork wolf franzen church-key cardigan. Wolf kitsch marfa small batch chartreuse gentrify. Wolf +1 fanny pack kombucha scenester you probably haven't heard of them 90's.    17871    611    2015-10-14 01:29:03    2015-10-14 01:29:03    1
3336    Meh authentic yolo plaid goth tattooed. Street tilde direct trade mumblecore craft beer ennui pickled. Migas knausgaard heirloom viral shabby chic kitsch. Carry letterpress vegan marfa. Chillwave mlkshk umami chartreuse messenger bag squid hoodie.    12392    565    2015-12-07 03:45:23    2015-12-07 03:45:23    1
3337    Hoodie retro jean shorts. Hammock art party paleo meggings drinking direct trade trust fund bitters. Jean shorts portland fap.    12955    900    2015-11-26 02:59:24    2015-11-26 02:59:24    1
3338    Green juice 8-bit 90's readymade tumblr everyday butcher. Mixtape cleanse kale chips fanny pack ugh craft beer. Freegan mixtape swag chicharrones health direct trade. Selfies salvia pop-up taxidermy sustainable. Heirloom wayfarers pbr&b flexitarian.    18814    713    2016-01-16 17:26:47    2016-01-16 17:26:47    1
3339    Swag carry pop-up venmo banh mi synth. Irony offal whatever letterpress kale chips kinfolk. Aesthetic fixie gastropub brunch retro bicycle rights kitsch. Flexitarian chicharrones tousled drinking banjo five dollar toast park.    14875    545    2015-07-25 06:34:15    2015-07-25 06:34:15    1
3340    Lomo thundercats retro cray gentrify. Xoxo meggings authentic vinegar. Meggings organic echo everyday photo booth vinegar.    10194    514    2015-09-13 22:24:56    2015-09-13 22:24:56    1
3341    8-bit brooklyn austin schlitz jean shorts semiotics. Echo pitchfork mustache plaid iphone authentic neutra knausgaard. Humblebrag park small batch distillery goth.    13069    912    2015-08-10 05:20:44    2015-08-10 05:20:44    1
3342    Brunch synth intelligentsia single-origin coffee carry put a bird on it. Vinegar shabby chic pabst raw denim. Master venmo kogi locavore.    13813    829    2015-11-26 09:47:11    2015-11-26 09:47:11    1
3343    Letterpress messenger bag green juice butcher shoreditch keffiyeh forage lo-fi. Pop-up put a bird on it pug iphone gastropub marfa. Post-ironic distillery viral ramps meh. Shabby chic pabst green juice sriracha.    15292    525    2015-10-06 09:15:43    2015-10-06 09:15:43    1
3345    Banh mi actually jean shorts migas beard tilde meh brunch. Williamsburg church-key scenester echo actually small batch. Try-hard pinterest yr.    10541    710    2016-03-31 14:33:08    2016-03-31 14:33:08    1
3346    Blog heirloom swag. Chillwave trust fund echo portland dreamcatcher. Loko salvia selfies pug butcher tote bag bicycle rights bitters. Freegan bespoke offal fanny pack quinoa distillery kale chips. Vinyl migas vinegar semiotics truffaut narwhal kitsch tilde.    10827    586    2015-09-08 14:00:12    2015-09-08 14:00:12    1
3347    Irony mixtape tousled keffiyeh green juice pour-over. Pinterest scenester waistcoat meditation wayfarers slow-carb taxidermy thundercats. Tattooed street slow-carb bespoke. Cardigan neutra bicycle rights.    13775    645    2015-11-21 10:29:57    2015-11-21 10:29:57    1
3348    Health 3 wolf moon tousled actually try-hard. Flannel master deep v lomo tousled whatever kogi. Kickstarter fixie selfies viral brooklyn quinoa schlitz. Neutra fixie vice. Salvia viral health poutine organic vinegar.    16802    813    2016-03-20 12:33:52    2016-03-20 12:33:52    1
3350    Pitchfork mlkshk iphone before they sold out photo booth. Forage freegan vinyl letterpress. Banh mi blog small batch thundercats echo. Freegan kale chips xoxo.    12848    706    2015-07-24 18:28:31    2015-07-24 18:28:31    1
3351    Vinegar viral mumblecore butcher irony church-key. Vhs pop-up shabby chic roof tilde. Forage fixie neutra cleanse austin.    10359    641    2015-05-06 11:53:43    2015-05-06 11:53:43    1
3352    Pour-over taxidermy direct trade gentrify pickled fingerstache. Craft beer literally meggings. Flexitarian neutra health salvia.    12817    493    2015-07-04 06:35:35    2015-07-04 06:35:35    1
3353    Microdosing diy yr letterpress. Blog humblebrag keffiyeh williamsburg. Blue bottle kitsch park. Cleanse raw denim austin sriracha. Lo-fi yr single-origin coffee ugh banh mi organic marfa salvia.    16878    702    2015-05-13 22:05:35    2015-05-13 22:05:35    1
3354    Selvage farm-to-table put a bird on it health gluten-free disrupt kinfolk blog. Kinfolk tousled before they sold out fingerstache. Paleo vice vinyl authentic green juice lumbersexual meggings cray. Pop-up ethical meh retro chartreuse you probably haven't heard of them.    13187    803    2015-08-01 12:18:04    2015-08-01 12:18:04    1
3356    Brunch semiotics meditation intelligentsia goth aesthetic. Helvetica bespoke ethical. Twee cold-pressed leggings ethical knausgaard kogi scenester. Gastropub semiotics scenester swag.    12198    624    2015-06-17 23:22:13    2015-06-17 23:22:13    1
3357    Sartorial pitchfork taxidermy microdosing art party fingerstache listicle etsy. Drinking vhs meh 3 wolf moon selvage authentic single-origin coffee. Cliche quinoa pabst literally viral you probably haven't heard of them loko.    11482    679    2016-01-26 19:20:20    2016-01-26 19:20:20    1
3419    Shoreditch freegan godard. Goth schlitz yolo listicle brunch single-origin coffee shoreditch bitters. Selvage raw denim authentic.    11815    787    2016-02-15 23:54:58    2016-02-15 23:54:58    1
3358    Bespoke wolf vegan. Keytar salvia goth gentrify farm-to-table drinking letterpress kickstarter. Microdosing fanny pack meditation bushwick pitchfork crucifix. Fanny pack keytar master chillwave meh. Vinegar venmo loko polaroid.    17966    662    2016-02-28 12:10:09    2016-02-28 12:10:09    1
3359    Mixtape pabst you probably haven't heard of them schlitz gluten-free ethical. Deep v franzen mustache. Asymmetrical bespoke sartorial yr franzen wes anderson lomo helvetica. Fap synth polaroid street messenger bag. Chartreuse williamsburg vegan cornhole cardigan.    15710    481    2016-03-03 20:00:01    2016-03-03 20:00:01    1
3360    Yr disrupt post-ironic godard cold-pressed taxidermy. Hella 3 wolf moon asymmetrical vice. Mustache etsy tilde crucifix. Truffaut sartorial pbr&b before they sold out taxidermy forage polaroid 8-bit. Cray +1 wayfarers shoreditch.    15230    861    2015-11-10 02:11:37    2015-11-10 02:11:37    1
3361    Distillery +1 pinterest biodiesel gentrify street xoxo. Salvia dreamcatcher wes anderson kombucha single-origin coffee pbr&b readymade. Ennui kinfolk pop-up messenger bag green juice irony. Meggings jean shorts food truck waistcoat migas aesthetic pork belly. Tacos meggings gluten-free occupy whatever tote bag.    18404    678    2015-12-23 06:19:49    2015-12-23 06:19:49    1
3362    Cardigan semiotics squid freegan vice 3 wolf moon. Kale chips roof pickled pbr&b lomo five dollar toast. Street biodiesel gastropub. Pabst readymade vinyl messenger bag authentic. Diy heirloom cliche pabst blog yr portland.    17611    570    2016-02-18 06:45:25    2016-02-18 06:45:25    1
3363    Synth slow-carb wolf deep v distillery goth. Irony knausgaard cardigan drinking synth squid leggings. Venmo gentrify art party normcore. Kitsch drinking taxidermy blue bottle gastropub fixie. Narwhal kombucha pinterest marfa skateboard umami authentic chicharrones.    15226    808    2015-06-22 02:25:29    2015-06-22 02:25:29    1
3364    Diy put a bird on it lumbersexual. Kickstarter beard listicle chia polaroid quinoa. Vegan chartreuse meh messenger bag.    16954    932    2015-10-24 20:27:01    2015-10-24 20:27:01    1
3365    Literally celiac messenger bag bicycle rights health tacos fap pour-over. Chillwave godard lo-fi synth. Mlkshk ramps five dollar toast vice raw denim.    18226    717    2015-07-26 16:20:30    2015-07-26 16:20:30    1
3367    Art party humblebrag keffiyeh helvetica butcher. Fap yuccie bitters carry synth austin meh. Pinterest food truck waistcoat cold-pressed +1 dreamcatcher asymmetrical.    15023    563    2016-01-07 11:41:01    2016-01-07 11:41:01    1
3368    Umami meditation ethical skateboard butcher truffaut. Keytar artisan tote bag. Intelligentsia blue bottle pug. Tilde retro pork belly mlkshk keytar. Kickstarter flannel authentic meggings neutra.    17226    957    2015-08-17 00:30:13    2015-08-17 00:30:13    1
3369    Church-key locavore humblebrag wolf mustache vinyl asymmetrical. Yolo migas heirloom cornhole green juice portland crucifix banjo. Irony crucifix gastropub bitters. Everyday squid slow-carb roof seitan literally deep v banh mi.    15457    819    2015-08-10 21:24:11    2015-08-10 21:24:11    1
3370    Pork belly vinegar pinterest biodiesel. Occupy gentrify banjo mlkshk readymade bespoke ugh. Vinyl twee mumblecore keytar authentic pbr&b mlkshk lumbersexual.    15828    469    2015-08-18 19:45:03    2015-08-18 19:45:03    1
3371    Cornhole schlitz chicharrones before they sold out gastropub. Biodiesel aesthetic slow-carb quinoa distillery twee scenester. Paleo cliche health lumbersexual brunch jean shorts retro.    14989    768    2015-07-22 19:52:21    2015-07-22 19:52:21    1
3372    Health marfa 3 wolf moon goth meggings keytar. Blue bottle cardigan poutine bitters venmo. Flannel brunch wes anderson truffaut forage trust fund marfa meditation. Brooklyn skateboard loko try-hard vinegar bespoke. Try-hard celiac whatever.    15062    559    2015-09-17 07:43:34    2015-09-17 07:43:34    1
3373    Vice roof tilde. Before they sold out pickled slow-carb pitchfork. Keytar master +1 humblebrag. Polaroid dreamcatcher iphone pitchfork umami. Biodiesel pop-up synth freegan jean shorts shabby chic pinterest.    11056    817    2015-07-19 02:38:04    2015-07-19 02:38:04    1
3374    Everyday gastropub scenester. Master lomo semiotics photo booth vice. Roof small batch cray irony tilde microdosing. Tofu knausgaard letterpress forage ugh squid lomo.    17444    564    2015-08-11 23:31:06    2015-08-11 23:31:06    1
3375    Kinfolk listicle everyday retro brunch small batch. Chillwave pickled slow-carb viral. Shoreditch forage scenester knausgaard literally.    11363    565    2015-08-18 08:12:32    2015-08-18 08:12:32    1
3376    Fap meh banjo. Tousled kitsch street distillery leggings gluten-free. Poutine chia synth food truck occupy. Ugh quinoa sartorial shabby chic occupy fanny pack.    16171    884    2016-04-01 19:35:23    2016-04-01 19:35:23    1
3377    Vhs thundercats keffiyeh venmo 8-bit actually art party. Bitters whatever plaid cliche umami. Before they sold out polaroid single-origin coffee paleo biodiesel park banjo squid. Organic dreamcatcher 3 wolf moon.    10328    513    2016-01-11 10:41:31    2016-01-11 10:41:31    1
3378    Meh small batch schlitz pitchfork echo. Quinoa wolf vice fashion axe. Green juice truffaut cliche asymmetrical echo hammock iphone cold-pressed.    12979    625    2015-08-29 23:53:18    2015-08-29 23:53:18    1
3379    Iphone biodiesel cleanse vhs stumptown. Photo booth banh mi letterpress. Disrupt pabst ugh brooklyn fanny pack austin. Quinoa heirloom shabby chic farm-to-table five dollar toast. Echo cronut mustache locavore meh kombucha selvage.    13095    759    2015-08-22 00:35:15    2015-08-22 00:35:15    1
3380    Farm-to-table single-origin coffee pickled health letterpress. Cronut fap humblebrag asymmetrical vhs meggings. Lumbersexual bicycle rights carry drinking. Cleanse cray meggings shoreditch listicle schlitz.    15274    496    2015-08-28 03:56:47    2015-08-28 03:56:47    1
3382    Photo booth roof dreamcatcher master single-origin coffee squid. Chartreuse dreamcatcher asymmetrical tote bag sustainable tilde aesthetic. Vinyl synth typewriter hammock scenester portland. Pitchfork cliche cardigan thundercats asymmetrical tilde shoreditch seitan.    11886    742    2015-08-02 20:17:37    2015-08-02 20:17:37    1
3383    Butcher single-origin coffee green juice lo-fi. Kale chips tousled poutine ugh actually raw denim try-hard. Tilde disrupt gentrify meggings. Kinfolk deep v cold-pressed 90's ramps. Street readymade tattooed disrupt biodiesel xoxo.    11167    722    2016-03-30 04:02:14    2016-03-30 04:02:14    1
3384    Disrupt yolo brooklyn slow-carb. Plaid post-ironic pop-up gastropub. Raw denim carry waistcoat photo booth vinyl intelligentsia. Drinking bushwick cleanse disrupt taxidermy irony. Cliche cornhole you probably haven't heard of them single-origin coffee fashion axe venmo umami.    15160    617    2015-12-26 18:11:04    2015-12-26 18:11:04    1
3385    Paleo actually cred church-key bitters pug marfa fap. Blog keytar poutine bitters locavore 90's. Bushwick health selfies pitchfork 90's roof. Iphone fap pop-up brunch. Iphone master typewriter tofu flexitarian.    16644    905    2016-04-04 15:55:08    2016-04-04 15:55:08    1
3386    Semiotics keytar viral chambray typewriter banh mi occupy. 90's asymmetrical migas health 8-bit. Trust fund jean shorts lumbersexual offal austin truffaut. Thundercats helvetica roof.    12416    900    2015-12-10 14:48:02    2015-12-10 14:48:02    1
3387    Wes anderson disrupt roof locavore gentrify chicharrones pour-over. Williamsburg kogi hashtag cleanse disrupt banjo vegan. Kogi jean shorts direct trade fashion axe roof pabst twee etsy.    11896    742    2016-01-23 19:09:59    2016-01-23 19:09:59    1
5658    Art party street tofu. Seitan selfies pitchfork try-hard master. Lo-fi cray etsy. Xoxo celiac 8-bit bitters salvia.    15469    901    2015-11-08 00:41:00    2015-11-08 00:41:00    1
3389    Portland irony yuccie kitsch crucifix butcher pickled cleanse. Bushwick normcore neutra kale chips park vinegar gentrify direct trade. Organic mixtape brooklyn loko meh jean shorts cliche sriracha. Celiac williamsburg flexitarian hella selvage bitters five dollar toast. Kale chips schlitz listicle intelligentsia literally gastropub pbr&b actually.    13644    938    2015-07-07 11:40:13    2015-07-07 11:40:13    1
3391    Loko farm-to-table thundercats pork belly blue bottle swag humblebrag hashtag. Kickstarter seitan art party biodiesel. Intelligentsia hashtag wes anderson hoodie. Helvetica franzen kombucha next level godard hoodie bitters.    13786    684    2016-02-19 00:20:42    2016-02-19 00:20:42    1
3392    Art party fingerstache sriracha butcher actually kombucha. Gastropub fap wolf kale chips food truck brooklyn beard. Williamsburg wolf pbr&b taxidermy actually. Loko pbr&b you probably haven't heard of them.    18604    725    2015-05-14 17:17:13    2015-05-14 17:17:13    1
3393    Pork belly portland post-ironic skateboard pour-over. Trust fund iphone franzen vinyl taxidermy banjo typewriter meditation. Whatever disrupt jean shorts heirloom you probably haven't heard of them thundercats 3 wolf moon.    13613    499    2015-06-09 03:48:56    2015-06-09 03:48:56    1
3395    Ethical heirloom cold-pressed whatever vinyl five dollar toast fixie. Swag portland lo-fi poutine. Banh mi franzen yuccie post-ironic readymade chambray health mixtape. Cliche literally fanny pack blue bottle photo booth tumblr.    11069    533    2015-06-20 07:22:44    2015-06-20 07:22:44    1
3396    Vhs etsy cliche kinfolk jean shorts twee blue bottle. Kombucha mlkshk you probably haven't heard of them humblebrag bushwick. Venmo fashion axe kogi. Yr blue bottle schlitz hella. Drinking keffiyeh farm-to-table cardigan butcher messenger bag.    15658    734    2016-01-30 11:09:27    2016-01-30 11:09:27    1
3397    Deep v kogi hashtag. 3 wolf moon chillwave cornhole migas. Brooklyn wes anderson roof franzen yr microdosing raw denim gastropub. Schlitz craft beer ennui vinyl leggings hashtag meh. Chambray cold-pressed irony farm-to-table migas.    18755    845    2015-05-05 03:43:23    2015-05-05 03:43:23    1
3398    Austin cred locavore freegan goth fashion axe. Leggings sriracha mustache. Asymmetrical tilde pickled yuccie stumptown vhs. Gentrify blue bottle venmo drinking marfa pork belly biodiesel health. Echo lo-fi bitters truffaut letterpress 3 wolf moon.    11332    672    2015-07-22 21:06:49    2015-07-22 21:06:49    1
3399    Microdosing viral chambray retro yuccie hoodie portland. Waistcoat taxidermy before they sold out kogi blog franzen cronut. Lo-fi street paleo vinegar selvage.    10498    898    2015-08-21 02:39:45    2015-08-21 02:39:45    1
3400    Stumptown locavore wolf artisan readymade vhs banjo ugh. Wes anderson five dollar toast schlitz quinoa. Williamsburg bitters brunch truffaut single-origin coffee. Trust fund bushwick shabby chic.    12119    734    2015-06-03 23:37:06    2015-06-03 23:37:06    1
3401    Brooklyn before they sold out food truck seitan fashion axe. Banjo chicharrones pork belly. Slow-carb pour-over quinoa umami loko. +1 pinterest crucifix freegan squid ethical poutine. Cred echo kogi hammock sustainable truffaut occupy gastropub.    11996    757    2015-04-25 22:52:47    2015-04-25 22:52:47    1
3402    Tacos intelligentsia whatever brooklyn keffiyeh bushwick. Chillwave pbr&b neutra polaroid letterpress. Schlitz pork belly fashion axe. Letterpress cronut carry synth. Irony iphone franzen ethical butcher semiotics.    11614    931    2016-03-20 17:05:30    2016-03-20 17:05:30    1
3403    Pinterest pbr&b semiotics typewriter meh shabby chic pitchfork. Hella bushwick helvetica quinoa typewriter vinyl retro. Paleo shoreditch post-ironic normcore slow-carb whatever. Pinterest five dollar toast viral. Pour-over park tilde venmo blue bottle hoodie kinfolk leggings.    16368    718    2016-03-22 19:10:44    2016-03-22 19:10:44    1
3405    Selfies pabst semiotics next level craft beer. Banh mi portland retro brunch fingerstache. Literally tofu distillery authentic skateboard health. Migas plaid freegan keytar master.    10311    752    2015-07-05 11:26:30    2015-07-05 11:26:30    1
3406    Stumptown distillery letterpress plaid wolf. Church-key chartreuse migas tumblr roof photo booth. Art party vegan bespoke.    11452    702    2015-06-02 15:00:37    2015-06-02 15:00:37    1
3407    Roof diy tote bag authentic. Bitters echo mlkshk vice microdosing mustache. Thundercats try-hard mustache goth shoreditch small batch fixie. Lomo bicycle rights sustainable cleanse direct trade chicharrones 8-bit.    18519    932    2016-02-16 14:52:21    2016-02-16 14:52:21    1
3408    Chicharrones keytar hammock migas. Bespoke heirloom post-ironic. Post-ironic 8-bit hashtag.    11195    712    2015-11-22 15:02:03    2015-11-22 15:02:03    1
3409    Fashion axe ennui diy. Xoxo disrupt pork belly artisan typewriter austin. Whatever shoreditch cliche pug literally photo booth. Leggings thundercats salvia. Wayfarers cold-pressed readymade organic.    17466    719    2015-04-29 19:55:49    2015-04-29 19:55:49    1
3410    Blue bottle church-key kickstarter single-origin coffee blog knausgaard before they sold out park. Jean shorts flannel pinterest intelligentsia kombucha meditation bespoke. Venmo slow-carb chicharrones jean shorts.    15281    608    2015-09-15 15:06:25    2015-09-15 15:06:25    1
3411    Kinfolk single-origin coffee food truck leggings. Everyday kinfolk selfies venmo freegan pug food truck tote bag. Retro cardigan farm-to-table tousled yr shoreditch disrupt venmo.    10294    809    2016-02-25 06:28:17    2016-02-25 06:28:17    1
3412    Wes anderson fanny pack meggings polaroid mumblecore. Street kombucha post-ironic blog ramps. Gentrify sustainable bicycle rights. Bushwick listicle letterpress street 8-bit farm-to-table venmo narwhal. Chillwave godard cred knausgaard cray.    14073    538    2016-02-20 14:23:39    2016-02-20 14:23:39    1
3413    Ethical tattooed viral echo. Hammock kinfolk ramps typewriter slow-carb authentic. Shoreditch 90's chambray goth heirloom selfies poutine gentrify. Etsy diy letterpress pop-up. Food truck before they sold out meh.    11735    743    2016-01-18 01:35:13    2016-01-18 01:35:13    1
3414    Leggings yuccie keffiyeh roof +1 farm-to-table dreamcatcher. Taxidermy aesthetic pop-up vhs pork belly yuccie. Goth lo-fi slow-carb marfa letterpress. Lumbersexual dreamcatcher food truck pickled art party health direct trade loko. Blue bottle gastropub carry mlkshk marfa sartorial.    17335    741    2015-06-27 23:16:37    2015-06-27 23:16:37    1
3415    Twee jean shorts 8-bit hoodie swag xoxo disrupt. Occupy meh literally asymmetrical drinking. Locavore meh green juice polaroid plaid salvia. Church-key ugh schlitz mlkshk.    10615    565    2015-06-07 00:49:20    2015-06-07 00:49:20    1
3416    Kinfolk loko bicycle rights. Brooklyn paleo echo master 3 wolf moon. Yuccie migas skateboard drinking diy heirloom.    10851    949    2015-06-26 18:29:39    2015-06-26 18:29:39    1
3417    Hashtag health cliche deep v. Yuccie portland narwhal neutra. Post-ironic mlkshk blog semiotics photo booth fanny pack ugh. Kitsch selfies echo stumptown slow-carb migas photo booth chartreuse.    17896    776    2015-06-22 09:29:44    2015-06-22 09:29:44    1
3418    Forage post-ironic organic carry cleanse swag slow-carb. Aesthetic try-hard paleo. Trust fund park flexitarian lo-fi yolo ugh leggings tumblr. Crucifix gluten-free small batch park.    17261    563    2015-09-02 03:34:28    2015-09-02 03:34:28    1
3420    Letterpress stumptown deep v post-ironic tattooed brooklyn shoreditch. Food truck etsy skateboard. Salvia freegan tattooed pbr&b. Mustache poutine tofu intelligentsia post-ironic austin 3 wolf moon. Vegan fap goth cleanse.    17250    835    2015-08-26 15:10:39    2015-08-26 15:10:39    1
3421    Neutra tattooed echo. Gastropub green juice kickstarter yolo. Cliche shabby chic master hoodie. Wes anderson mustache cornhole vhs hella microdosing occupy keffiyeh.    16617    832    2015-05-21 16:15:39    2015-05-21 16:15:39    1
3422    Cold-pressed shabby chic iphone sriracha. Paleo pop-up heirloom gluten-free. Vinyl wayfarers sartorial fixie taxidermy. Godard diy cred kombucha chartreuse.    13378    756    2015-08-25 13:05:34    2015-08-25 13:05:34    1
3423    Marfa tilde hashtag semiotics venmo small batch. Waistcoat migas retro beard. Yolo selfies stumptown.    10554    623    2015-08-12 07:23:22    2015-08-12 07:23:22    1
3424    Whatever letterpress polaroid stumptown cliche waistcoat blog hashtag. Biodiesel next level paleo pinterest small batch chia bicycle rights celiac. Authentic knausgaard farm-to-table artisan distillery offal pop-up. Gluten-free synth meditation thundercats cray. Gastropub retro meggings messenger bag pickled squid sustainable hashtag.    14997    891    2015-05-14 16:42:31    2015-05-14 16:42:31    1
3425    Vinyl loko food truck gentrify direct trade wayfarers marfa. Truffaut fap tofu. Sriracha hella fap tumblr. Salvia tacos skateboard park migas twee farm-to-table. Brooklyn try-hard keffiyeh actually fashion axe next level.    18526    517    2016-04-08 14:07:04    2016-04-08 14:07:04    1
3426    Tousled normcore flannel disrupt wolf gastropub. Kale chips vegan pbr&b tofu paleo twee gluten-free you probably haven't heard of them. Irony vhs single-origin coffee cornhole humblebrag kitsch portland. Etsy small batch helvetica flexitarian austin blog. Kitsch tattooed mlkshk fap knausgaard crucifix small batch meh.    18397    816    2015-10-07 16:58:55    2015-10-07 16:58:55    1
3427    Williamsburg waistcoat before they sold out tattooed fap quinoa try-hard. Wolf tacos keytar typewriter. Whatever carry loko banh mi ethical. Marfa health waistcoat kombucha viral yolo pug.    17506    566    2016-01-07 13:18:45    2016-01-07 13:18:45    1
3428    Selvage kogi artisan. Lomo whatever godard taxidermy ethical cliche sartorial 8-bit. Sartorial pug banjo cornhole scenester waistcoat. Kale chips microdosing photo booth chia mumblecore meggings selvage.    12038    881    2015-05-02 12:48:12    2015-05-02 12:48:12    1
3429    Jean shorts tattooed typewriter yolo. Pork belly heirloom raw denim green juice. Dreamcatcher church-key meh waistcoat. Direct trade bespoke narwhal gentrify ethical. Deep v cred pabst church-key.    17778    913    2015-05-06 10:40:33    2015-05-06 10:40:33    1
3430    Scenester direct trade wes anderson biodiesel echo carry hella quinoa. Hoodie pabst health. Bitters intelligentsia semiotics authentic helvetica forage pork belly everyday. Slow-carb pour-over squid cronut wayfarers.    11319    764    2015-10-26 03:52:19    2015-10-26 03:52:19    1
3431    Pbr&b keytar flannel venmo offal. Pug blue bottle distillery pitchfork food truck godard crucifix. +1 hella williamsburg fingerstache helvetica celiac drinking. Truffaut before they sold out celiac park sustainable venmo pbr&b tacos. Echo taxidermy tattooed.    14424    486    2016-03-20 03:13:38    2016-03-20 03:13:38    1
3432    Listicle hammock venmo. Single-origin coffee lomo carry readymade cold-pressed banjo williamsburg. Craft beer echo meditation brunch squid. Master flannel drinking portland yr ethical biodiesel. Meh williamsburg fingerstache cardigan put a bird on it.    14796    689    2015-07-18 22:30:44    2015-07-18 22:30:44    1
3433    Beard art party retro williamsburg letterpress vice disrupt microdosing. Roof pickled occupy. Craft beer cred occupy. Before they sold out intelligentsia retro post-ironic loko cornhole etsy literally. Quinoa goth pour-over taxidermy vegan godard.    13080    480    2016-03-08 03:35:10    2016-03-08 03:35:10    1
3434    Direct trade yr celiac. Keffiyeh artisan health flexitarian distillery pork belly ennui. Tousled 90's chambray hoodie bitters. Fingerstache pitchfork cronut butcher intelligentsia skateboard kogi.    12619    789    2015-11-05 10:22:37    2015-11-05 10:22:37    1
3436    Etsy waistcoat neutra flexitarian. Cold-pressed banh mi echo williamsburg try-hard semiotics. Loko direct trade brooklyn church-key occupy asymmetrical lomo. Brunch chartreuse taxidermy. Mumblecore polaroid jean shorts ethical thundercats.    15717    810    2015-06-09 18:49:07    2015-06-09 18:49:07    1
3438    Chillwave drinking jean shorts food truck mumblecore kombucha hella quinoa. Pop-up cred kogi keffiyeh artisan you probably haven't heard of them. Skateboard godard farm-to-table banjo slow-carb whatever williamsburg chartreuse. Asymmetrical put a bird on it scenester.    16823    930    2016-02-25 01:35:20    2016-02-25 01:35:20    1
3439    Retro offal fap forage 90's. Marfa kale chips shoreditch fanny pack williamsburg hashtag offal cred. Small batch forage drinking semiotics church-key.    12944    473    2016-02-24 13:54:49    2016-02-24 13:54:49    1
3440    Sartorial flannel selfies. 90's hammock organic retro helvetica shabby chic tacos godard. Yuccie mustache meh +1 pour-over.    16909    550    2015-08-27 13:08:06    2015-08-27 13:08:06    1
3443    Authentic bitters direct trade lumbersexual. Vinyl pitchfork sartorial pour-over. Goth whatever godard flexitarian 8-bit neutra +1 single-origin coffee. Selfies you probably haven't heard of them organic put a bird on it banh mi readymade vinyl. Offal retro helvetica brunch.    10807    622    2016-02-11 04:13:32    2016-02-11 04:13:32    1
3444    Echo mixtape disrupt fap meggings +1. Hella typewriter literally. Deep v flexitarian selvage. Plaid typewriter tilde next level messenger bag locavore. Synth sriracha offal vinegar chillwave.    10860    766    2016-04-19 02:12:34    2016-04-19 02:12:34    1
3445    Marfa helvetica hoodie swag messenger bag freegan ugh. Five dollar toast vegan yuccie flexitarian. Typewriter locavore kinfolk cornhole stumptown kale chips. Tousled ennui humblebrag franzen readymade quinoa.    16105    931    2016-03-19 10:03:03    2016-03-19 10:03:03    1
3446    Ramps chartreuse pour-over. Tote bag cardigan selfies offal street. Twee cred cray. Carry tattooed irony cleanse. Lomo ugh cray.    18007    921    2016-03-07 05:50:28    2016-03-07 05:50:28    1
3447    Mumblecore selvage xoxo. Franzen tacos iphone drinking venmo gluten-free. Asymmetrical jean shorts vegan sartorial vinegar distillery. Kickstarter messenger bag wes anderson kogi skateboard. Offal deep v irony you probably haven't heard of them synth lomo put a bird on it bushwick.    12110    627    2015-06-24 23:47:51    2015-06-24 23:47:51    1
3448    Blog mustache meh marfa. Kogi hella aesthetic. Before they sold out chillwave franzen plaid kale chips kickstarter hoodie. Loko microdosing messenger bag.    18016    693    2015-05-07 14:35:56    2015-05-07 14:35:56    1
3449    Pug leggings shoreditch mumblecore cronut diy typewriter. Normcore mumblecore narwhal austin distillery microdosing. 90's try-hard offal street vinyl biodiesel leggings craft beer.    18597    809    2015-11-23 00:48:16    2015-11-23 00:48:16    1
3450    Quinoa hella 90's vinegar kinfolk. Mlkshk iphone letterpress organic normcore venmo meggings. Goth blog park cray. Blue bottle meditation +1 deep v pickled wayfarers poutine paleo. Health chartreuse hashtag keffiyeh.    17495    826    2016-02-02 12:10:12    2016-02-02 12:10:12    1
3451    Leggings master marfa butcher whatever irony brunch brooklyn. Tote bag put a bird on it carry yolo taxidermy. Wes anderson truffaut kitsch poutine biodiesel typewriter helvetica park. Umami vice 90's portland listicle occupy.    18253    532    2015-10-09 02:30:17    2015-10-09 02:30:17    1
3452    Swag thundercats intelligentsia cardigan park literally photo booth. Master taxidermy retro listicle. Small batch gastropub keytar deep v franzen intelligentsia.    10959    785    2015-07-14 20:59:56    2015-07-14 20:59:56    1
3454    Sartorial migas cred. Forage post-ironic drinking pbr&b. Ennui tattooed leggings farm-to-table etsy intelligentsia.    10296    672    2016-01-17 16:35:33    2016-01-17 16:35:33    1
3455    Knausgaard mixtape lomo waistcoat quinoa lo-fi scenester. Polaroid thundercats authentic brooklyn meh banh mi pbr&b. Squid ethical fap. Sustainable messenger bag selvage tofu vinegar. Master pabst pour-over raw denim.    10745    680    2015-06-05 15:33:13    2015-06-05 15:33:13    1
3456    Knausgaard everyday xoxo chambray yr marfa. Yuccie you probably haven't heard of them +1 seitan messenger bag swag. Heirloom venmo bicycle rights pork belly synth church-key.    11635    932    2015-12-08 11:21:42    2015-12-08 11:21:42    1
3457    Health +1 bitters. Yuccie butcher raw denim roof distillery heirloom. Mustache raw denim readymade typewriter aesthetic umami kinfolk. Literally diy gluten-free tumblr lomo cronut poutine cray. Lo-fi typewriter vinegar bitters hashtag celiac.    13591    670    2015-10-21 23:09:26    2015-10-21 23:09:26    1
3458    Chia tacos deep v. Waistcoat pinterest tumblr fanny pack meditation selvage cronut vinegar. Everyday sriracha master pork belly readymade kombucha ugh. Marfa artisan waistcoat park 3 wolf moon ennui.    15924    732    2015-04-22 00:25:36    2015-04-22 00:25:36    1
3459    Asymmetrical before they sold out craft beer cronut schlitz tacos church-key. Tumblr neutra thundercats sriracha umami pour-over five dollar toast whatever. Tousled lo-fi master organic neutra pbr&b. Next level +1 vinyl messenger bag 90's. Tousled meh stumptown yuccie viral.    12214    602    2016-02-29 03:30:22    2016-02-29 03:30:22    1
3460    Kogi cold-pressed mlkshk food truck knausgaard locavore. Goth roof chillwave freegan godard yuccie letterpress kitsch. Green juice vhs lumbersexual gastropub helvetica pinterest pickled goth. Banh mi butcher kombucha.    17217    884    2016-01-16 16:09:10    2016-01-16 16:09:10    1
3461    Raw denim slow-carb squid distillery forage asymmetrical cornhole. Locavore tousled kickstarter pickled 3 wolf moon five dollar toast readymade. Aesthetic pork belly offal carry humblebrag fingerstache +1. Vegan blue bottle stumptown tote bag kinfolk keytar.    11229    625    2015-08-13 18:35:51    2015-08-13 18:35:51    1
3463    Artisan scenester viral paleo art party. Deep v plaid paleo pabst keytar lomo stumptown celiac. Neutra pickled next level tote bag banjo. Tofu beard offal craft beer tattooed vhs viral. Normcore put a bird on it listicle ugh distillery cardigan yolo you probably haven't heard of them.    13174    823    2015-06-17 02:06:09    2015-06-17 02:06:09    1
3465    Bitters hashtag polaroid. Kale chips taxidermy beard sriracha viral hella selfies hoodie. Brunch deep v 3 wolf moon. Sriracha quinoa +1 waistcoat tilde chartreuse biodiesel. Tacos ennui authentic shabby chic kogi church-key godard put a bird on it.    13198    508    2015-04-26 04:28:22    2015-04-26 04:28:22    1
3466    Kinfolk pabst before they sold out diy neutra chia vinyl. Next level neutra fingerstache bitters. Wayfarers normcore brunch fap deep v art party. Fixie single-origin coffee microdosing marfa heirloom. Neutra blue bottle meggings ugh.    10639    517    2015-05-30 00:58:06    2015-05-30 00:58:06    1
3467    Fashion axe xoxo lumbersexual pour-over vice before they sold out try-hard. Small batch mixtape cred biodiesel scenester thundercats hoodie seitan. Green juice raw denim stumptown fingerstache beard.    17958    490    2015-12-13 16:02:18    2015-12-13 16:02:18    1
3468    Celiac organic try-hard authentic semiotics meggings freegan fanny pack. Cronut put a bird on it trust fund. Wolf messenger bag meditation deep v.    12360    903    2015-05-20 16:32:59    2015-05-20 16:32:59    1
3469    Brunch beard flexitarian disrupt yuccie diy sriracha. Bespoke kogi portland selfies vegan. Migas artisan cold-pressed umami pour-over pbr&b. Wolf lumbersexual marfa hella diy chartreuse narwhal.    13004    571    2015-09-08 02:50:43    2015-09-08 02:50:43    1
3470    Knausgaard post-ironic celiac. Tattooed yolo venmo quinoa fap narwhal. Crucifix kickstarter neutra. Shoreditch vice park twee kombucha.    12183    642    2015-12-11 10:49:37    2015-12-11 10:49:37    1
3471    Listicle wes anderson synth tilde brunch umami. Tofu umami cray. Aesthetic meditation synth. Quinoa echo kombucha plaid occupy forage. Fanny pack organic photo booth leggings quinoa mumblecore loko pbr&b.    14453    545    2016-02-24 11:53:17    2016-02-24 11:53:17    1
3472    Disrupt five dollar toast etsy literally shoreditch cold-pressed. Pabst single-origin coffee organic knausgaard lo-fi venmo +1 umami. Carry food truck pop-up lomo yuccie.    14759    792    2015-12-10 05:49:15    2015-12-10 05:49:15    1
3473    Brunch crucifix twee mixtape loko mumblecore post-ironic narwhal. Banh mi yolo stumptown. Dreamcatcher farm-to-table neutra master kinfolk. Lumbersexual xoxo banjo salvia.    12098    651    2015-11-01 07:08:29    2015-11-01 07:08:29    1
3474    Photo booth ethical bespoke farm-to-table celiac asymmetrical chicharrones. Pabst actually forage heirloom +1. Semiotics ramps tumblr distillery ennui. Neutra occupy green juice irony brunch craft beer. Slow-carb xoxo hammock celiac banh mi lomo messenger bag cardigan.    13754    653    2015-06-17 21:20:14    2015-06-17 21:20:14    1
3475    Stumptown yr meditation squid pop-up deep v. Gastropub marfa kickstarter fingerstache seitan kale chips wes anderson blue bottle. Carry kale chips brunch. Williamsburg portland skateboard.    15783    533    2015-07-04 09:51:03    2015-07-04 09:51:03    1
3476    Banh mi cleanse disrupt. Narwhal brooklyn mixtape readymade raw denim shabby chic. Asymmetrical carry stumptown.    12276    928    2016-03-17 08:58:49    2016-03-17 08:58:49    1
3477    Brooklyn sartorial mustache. Helvetica distillery ethical flexitarian pitchfork poutine schlitz wayfarers. Gluten-free vice fixie intelligentsia kickstarter tousled. Intelligentsia try-hard listicle occupy wes anderson narwhal. Dreamcatcher selfies vinegar ethical williamsburg tote bag aesthetic plaid.    17769    917    2016-02-15 19:53:54    2016-02-15 19:53:54    1
3478    Artisan iphone put a bird on it yolo leggings. Blog scenester pinterest microdosing biodiesel cronut loko etsy. Freegan pug gluten-free chartreuse. Freegan shoreditch irony food truck polaroid kitsch.    15500    804    2015-10-08 12:31:11    2015-10-08 12:31:11    1
3479    Taxidermy butcher squid disrupt hella yr. Cred mustache wes anderson. Marfa umami ugh bicycle rights distillery.    17720    687    2016-03-08 20:30:17    2016-03-08 20:30:17    1
3481    Kombucha chicharrones chambray bicycle rights. Put a bird on it semiotics gluten-free. Ramps ennui blue bottle chia selvage kombucha. Forage ugh polaroid mumblecore jean shorts +1.    11230    491    2015-05-21 06:09:57    2015-05-21 06:09:57    1
3483    Microdosing photo booth put a bird on it chambray. Readymade iphone sartorial irony waistcoat skateboard bicycle rights. 90's leggings hella etsy keytar wes anderson before they sold out.    14559    531    2016-01-02 22:07:42    2016-01-02 22:07:42    1
3484    Leggings retro mlkshk pop-up letterpress. Forage wolf austin flannel. Fap cred xoxo.    14817    726    2015-12-02 00:16:13    2015-12-02 00:16:13    1
3486    Ramps messenger bag normcore keytar biodiesel pork belly migas trust fund. Put a bird on it etsy tote bag messenger bag. Banjo letterpress waistcoat kogi kombucha umami dreamcatcher squid. Lomo thundercats biodiesel pork belly keffiyeh leggings 8-bit distillery. Gastropub craft beer park helvetica skateboard seitan 8-bit.    13160    865    2016-04-13 21:27:21    2016-04-13 21:27:21    1
3487    Intelligentsia flexitarian craft beer quinoa schlitz vegan bitters. Polaroid gentrify keffiyeh put a bird on it cronut. Waistcoat celiac post-ironic letterpress kinfolk. Waistcoat umami wolf.    12749    831    2015-11-28 03:26:40    2015-11-28 03:26:40    1
3489    Meggings normcore brunch locavore typewriter literally humblebrag. Keffiyeh flexitarian carry cred pitchfork aesthetic. Butcher seitan microdosing kickstarter lo-fi literally letterpress. Pabst chambray polaroid plaid godard. Small batch dreamcatcher echo migas.    12079    793    2016-02-06 19:33:21    2016-02-06 19:33:21    1
3490    Cliche food truck street before they sold out scenester portland waistcoat. Literally wes anderson kombucha normcore. Pug bitters chambray. Banjo sriracha synth.    14004    501    2015-05-12 02:08:40    2015-05-12 02:08:40    1
3491    Meggings listicle actually small batch pinterest heirloom 3 wolf moon brooklyn. Whatever banh mi kale chips forage selfies goth vinyl. Green juice tousled blog diy bespoke. Normcore vinegar listicle distillery dreamcatcher.    12848    780    2015-07-20 12:00:16    2015-07-20 12:00:16    1
3492    Plaid portland ennui tumblr whatever. Fashion axe vice beard kitsch kale chips. Wayfarers pbr&b waistcoat kickstarter keytar. +1 gastropub hashtag banjo heirloom food truck messenger bag. Squid authentic chillwave.    12245    605    2015-11-03 05:34:53    2015-11-03 05:34:53    1
3494    Franzen beard tilde swag humblebrag bitters aesthetic poutine. Small batch goth thundercats health scenester beard. Quinoa banh mi 90's vegan five dollar toast.    14673    564    2015-10-11 13:28:09    2015-10-11 13:28:09    1
3496    Carry artisan venmo iphone tote bag. Asymmetrical salvia tacos cornhole vice messenger bag aesthetic before they sold out. Drinking leggings migas. Venmo thundercats williamsburg photo booth lumbersexual selfies master forage.    11209    960    2015-08-03 02:18:05    2015-08-03 02:18:05    1
3497    Mumblecore kale chips plaid. Fashion axe before they sold out umami hashtag meggings. Offal sriracha truffaut authentic fixie narwhal. Kickstarter waistcoat helvetica chia forage cornhole.    14254    942    2016-04-18 04:11:36    2016-04-18 04:11:36    1
3499    Microdosing banjo authentic. Meggings offal next level photo booth cred. Artisan chillwave farm-to-table synth kinfolk pop-up drinking. Yr fixie selfies try-hard chicharrones. Bicycle rights beard godard 90's pop-up ramps.    18746    815    2015-11-03 08:26:02    2015-11-03 08:26:02    1
3500    Tattooed tote bag occupy franzen. Brooklyn keytar put a bird on it selfies typewriter street. Trust fund kickstarter +1 farm-to-table before they sold out freegan mixtape.    18716    512    2015-12-04 00:34:38    2015-12-04 00:34:38    1
3501    Farm-to-table biodiesel next level cleanse hammock 8-bit leggings put a bird on it. Marfa ugh forage. Bespoke distillery schlitz health. Whatever lumbersexual irony.    15436    897    2015-10-19 02:36:23    2015-10-19 02:36:23    1
3502    Kogi meditation bushwick drinking banh mi viral keffiyeh. Diy readymade freegan franzen brooklyn dreamcatcher master pug. Organic hammock viral shabby chic artisan tousled. Banh mi microdosing before they sold out leggings tattooed blue bottle echo. Yolo shabby chic single-origin coffee vegan pinterest wolf williamsburg.    10722    782    2016-02-07 22:05:14    2016-02-07 22:05:14    1
3503    Cray wolf humblebrag tilde tofu five dollar toast. Trust fund 90's godard. Kickstarter readymade umami scenester post-ironic. Cleanse flannel intelligentsia quinoa fap migas pitchfork. Neutra shabby chic listicle knausgaard.    12071    859    2015-07-15 19:26:04    2015-07-15 19:26:04    1
3504    Etsy twee health master jean shorts small batch shabby chic. Goth shabby chic tattooed. Narwhal butcher you probably haven't heard of them +1 austin. Meditation vice venmo stumptown hammock cornhole wayfarers.    12914    607    2015-09-05 12:27:29    2015-09-05 12:27:29    1
3505    Biodiesel health thundercats pour-over. Plaid bicycle rights microdosing actually mlkshk chia salvia. Pug lumbersexual listicle bushwick street.    17498    795    2016-04-14 20:43:34    2016-04-14 20:43:34    1
3506    Sustainable butcher celiac. Twee brooklyn art party pour-over. Ethical tacos gentrify. 8-bit microdosing green juice chicharrones kogi. Crucifix artisan etsy forage pop-up.    15256    554    2015-05-15 07:28:41    2015-05-15 07:28:41    1
3507    Cleanse butcher heirloom next level tousled photo booth 8-bit brunch. Tofu vegan flexitarian pop-up yolo wes anderson mlkshk aesthetic. Selfies loko bushwick health before they sold out kitsch. Whatever cleanse yolo lo-fi. Tumblr meh listicle microdosing wes anderson pinterest slow-carb.    11715    540    2015-07-11 13:50:04    2015-07-11 13:50:04    1
3508    Jean shorts pabst portland hoodie whatever retro. Polaroid squid you probably haven't heard of them before they sold out franzen direct trade fashion axe. Pinterest shoreditch fap. Photo booth pickled mumblecore shoreditch narwhal celiac.    13230    715    2015-09-07 10:33:09    2015-09-07 10:33:09    1
3510    Disrupt tilde 90's food truck. Bicycle rights whatever tousled mustache direct trade pour-over xoxo. Flexitarian knausgaard loko etsy five dollar toast bespoke skateboard pitchfork. Cray tofu 3 wolf moon roof quinoa.    12617    642    2015-05-19 15:37:18    2015-05-19 15:37:18    1
3511    Sriracha pbr&b artisan. Before they sold out 90's beard schlitz. Vegan blog mlkshk pickled food truck williamsburg. Etsy butcher craft beer portland kitsch. Lo-fi kitsch kale chips disrupt tumblr humblebrag.    15346    827    2016-02-03 17:37:18    2016-02-03 17:37:18    1
5723    Lo-fi cleanse locavore semiotics offal. Sriracha mlkshk typewriter park. Farm-to-table humblebrag yuccie heirloom microdosing diy.    17989    531    2016-02-11 21:15:29    2016-02-11 21:15:29    1
3513    Swag mustache viral yr. Vegan roof selfies shabby chic loko whatever ethical single-origin coffee. Helvetica crucifix tacos cleanse trust fund narwhal farm-to-table ramps.    12866    866    2015-12-17 05:29:51    2015-12-17 05:29:51    1
3514    Quinoa +1 cleanse poutine selfies humblebrag narwhal. Occupy green juice neutra deep v food truck vice salvia. Stumptown gastropub cornhole intelligentsia organic marfa cray.    13613    721    2015-06-24 08:38:01    2015-06-24 08:38:01    1
3515    Polaroid poutine vinegar cliche kickstarter crucifix. Small batch mumblecore kitsch loko marfa church-key. Fashion axe mumblecore farm-to-table intelligentsia.    18677    768    2016-04-13 08:59:06    2016-04-13 08:59:06    1
3516    Beard swag venmo franzen celiac chartreuse portland. Yolo bespoke occupy cred organic. Pop-up semiotics kombucha kale chips post-ironic. Slow-carb fixie five dollar toast freegan schlitz austin pickled. Schlitz tumblr +1 selfies kombucha.    10340    944    2015-06-28 19:44:25    2015-06-28 19:44:25    1
3517    Wes anderson 90's mumblecore. Deep v pour-over bushwick vinyl food truck carry. Pork belly twee carry kickstarter flexitarian locavore trust fund. Hella before they sold out polaroid pitchfork bushwick. Truffaut small batch vegan.    15876    508    2015-04-27 01:35:55    2015-04-27 01:35:55    1
3518    Meggings flannel fingerstache godard sriracha tousled. Kickstarter fanny pack fingerstache pug. Single-origin coffee vegan echo freegan listicle lomo.    16621    892    2016-01-29 01:24:32    2016-01-29 01:24:32    1
3519    Hammock twee letterpress. Selfies 3 wolf moon craft beer drinking iphone trust fund. Literally aesthetic crucifix food truck. Yr goth stumptown keffiyeh cliche.    16652    905    2016-04-04 06:23:17    2016-04-04 06:23:17    1
3521    Gentrify 8-bit slow-carb organic master flexitarian. Post-ironic meh hashtag cleanse pop-up fixie before they sold out. Locavore photo booth tattooed plaid tofu jean shorts cardigan park.    16206    565    2015-05-31 03:50:11    2015-05-31 03:50:11    1
3522    Venmo xoxo cornhole vegan kombucha twee chicharrones literally. Street vegan williamsburg. Banh mi ugh offal master butcher. Five dollar toast jean shorts fap mixtape beard.    10682    802    2015-07-06 10:23:34    2015-07-06 10:23:34    1
3523    Franzen messenger bag kickstarter. Truffaut yolo yr cold-pressed. Master bitters retro pour-over. Cronut tilde distillery vice scenester craft beer fixie literally. Pitchfork normcore brooklyn.    14805    914    2015-07-04 14:41:39    2015-07-04 14:41:39    1
3524    Next level normcore swag craft beer. Irony readymade cliche. Fixie marfa vinyl pop-up wolf. Vice chia sustainable. Mumblecore biodiesel readymade gentrify wes anderson.    14332    588    2015-12-29 17:20:50    2015-12-29 17:20:50    1
3525    Neutra listicle flexitarian art party kinfolk letterpress. Vhs echo blog. Scenester +1 gentrify biodiesel seitan yr.    14945    789    2015-09-22 17:00:28    2015-09-22 17:00:28    1
3526    Pitchfork selvage vhs literally kogi loko offal. Chartreuse xoxo kogi diy pork belly. Gluten-free slow-carb asymmetrical. Tilde swag pinterest migas. Kinfolk xoxo lumbersexual.    11946    524    2016-03-02 04:06:55    2016-03-02 04:06:55    1
3527    Chillwave bespoke intelligentsia tattooed farm-to-table ethical. Lo-fi venmo meh hella try-hard bushwick asymmetrical. Bushwick art party venmo readymade forage everyday shabby chic ennui.    16235    799    2015-07-01 01:38:48    2015-07-01 01:38:48    1
3528    Pitchfork tattooed fashion axe viral pork belly flannel beard. Mlkshk leggings fanny pack street selfies cliche. Actually disrupt lomo try-hard lo-fi kinfolk. Austin meggings sartorial keytar cold-pressed.    12029    872    2015-08-16 19:40:31    2015-08-16 19:40:31    1
3530    Drinking wes anderson street bitters synth meggings twee. Chambray mumblecore crucifix jean shorts craft beer cronut pour-over. Banjo vegan godard street keytar. Ugh brooklyn offal pickled.    16042    933    2016-04-18 00:37:24    2016-04-18 00:37:24    1
3531    90's poutine pug chia green juice single-origin coffee typewriter. Organic salvia cornhole authentic kogi ramps. Pbr&b stumptown blog hashtag normcore brunch dreamcatcher. Vinyl vhs asymmetrical. Migas wes anderson lomo cardigan aesthetic vegan.    15424    558    2015-10-11 10:28:45    2015-10-11 10:28:45    1
3532    Kale chips kombucha keffiyeh single-origin coffee. Umami fashion axe carry sustainable cleanse. Vice 8-bit blog flannel. Raw denim pour-over paleo.    18002    650    2015-06-01 10:20:38    2015-06-01 10:20:38    1
3533    Fanny pack wes anderson meh. Put a bird on it paleo pbr&b. Austin brooklyn schlitz raw denim williamsburg. Jean shorts scenester helvetica occupy iphone synth.    11354    668    2015-06-28 23:44:34    2015-06-28 23:44:34    1
3534    Typewriter quinoa banh mi kombucha truffaut vice seitan. Whatever kombucha leggings sriracha. Venmo crucifix tousled wayfarers cred mumblecore.    15642    517    2015-05-04 12:05:11    2015-05-04 12:05:11    1
3535    Bitters jean shorts tacos ramps seitan. Stumptown retro umami farm-to-table flannel occupy fap gluten-free. Pug artisan kitsch meggings brunch swag farm-to-table neutra.    15662    728    2015-06-03 03:11:36    2015-06-03 03:11:36    1
3536    Lo-fi drinking before they sold out 90's knausgaard yolo marfa slow-carb. Kogi portland vinyl sustainable lomo 3 wolf moon forage. Bushwick synth sriracha sustainable. Tattooed fap keffiyeh fanny pack cornhole messenger bag cardigan single-origin coffee.    13399    869    2016-03-28 19:03:09    2016-03-28 19:03:09    1
3537    Photo booth shoreditch actually tattooed. Cardigan taxidermy migas narwhal waistcoat viral. Yr pbr&b cred.    10026    812    2016-01-19 09:02:29    2016-01-19 09:02:29    1
3538    Bicycle rights viral aesthetic selfies. Pork belly cleanse helvetica plaid +1 you probably haven't heard of them marfa. Single-origin coffee cleanse gentrify. Direct trade pinterest put a bird on it single-origin coffee selvage vice. Aesthetic tacos knausgaard vice mixtape.    13158    757    2016-01-04 18:24:22    2016-01-04 18:24:22    1
3539    Shoreditch vinegar typewriter hashtag single-origin coffee locavore tumblr kinfolk. Craft beer humblebrag street iphone freegan blue bottle tofu normcore. Etsy distillery kogi brunch pop-up biodiesel pork belly.    17709    915    2015-08-18 00:13:47    2015-08-18 00:13:47    1
3540    Helvetica kinfolk viral ramps. Tote bag kogi tilde whatever scenester. Pbr&b viral pug quinoa knausgaard tattooed. Franzen sriracha listicle raw denim bushwick art party pickled.    10390    579    2016-01-14 06:48:25    2016-01-14 06:48:25    1
3541    Tacos neutra bespoke lo-fi blog banjo jean shorts. Lo-fi seitan ennui pork belly poutine cornhole meggings. Meh synth vinyl.    16860    735    2015-12-01 12:47:00    2015-12-01 12:47:00    1
3542    Celiac pinterest crucifix neutra. Gastropub portland try-hard cornhole cold-pressed next level. Tousled marfa cold-pressed trust fund. Flannel lomo austin tote bag bicycle rights.    15602    774    2015-05-08 20:08:36    2015-05-08 20:08:36    1
3543    Kogi umami echo. Drinking ugh letterpress crucifix cliche you probably haven't heard of them distillery. Cred beard 90's thundercats. Tofu echo everyday tote bag gluten-free master.    15544    797    2015-12-09 09:32:36    2015-12-09 09:32:36    1
3544    Selfies banjo post-ironic. Messenger bag neutra beard farm-to-table. 3 wolf moon brooklyn tote bag.    13170    820    2016-04-01 01:32:03    2016-04-01 01:32:03    1
3576    Brunch migas chillwave selfies gluten-free venmo. Disrupt lomo literally. Migas put a bird on it mlkshk hashtag craft beer. Pickled typewriter kogi. Chambray mixtape butcher salvia mustache.    16980    955    2015-05-09 13:41:15    2015-05-09 13:41:15    1
3951    Shabby chic neutra yr drinking tote bag heirloom. Gluten-free farm-to-table church-key messenger bag viral meditation. Goth leggings chartreuse.    10839    515    2015-07-08 11:10:40    2015-07-08 11:10:40    1
3545    Franzen mumblecore wolf. Retro church-key put a bird on it authentic sriracha austin. Tacos sartorial art party. Lumbersexual everyday tilde fanny pack brunch narwhal hashtag austin. Pickled mlkshk freegan messenger bag hammock chambray vinyl pitchfork.    10389    851    2015-10-08 02:57:31    2015-10-08 02:57:31    1
3546    Vice craft beer normcore. Yr knausgaard organic pitchfork twee lo-fi bicycle rights locavore. Actually craft beer chambray williamsburg flexitarian carry crucifix.    13491    596    2016-03-22 13:24:17    2016-03-22 13:24:17    1
3547    Tattooed taxidermy cred ramps skateboard. Five dollar toast polaroid neutra fashion axe freegan beard stumptown bushwick. Occupy listicle 8-bit marfa pork belly. Butcher farm-to-table health. Aesthetic cred mixtape.    12244    520    2015-05-10 15:12:13    2015-05-10 15:12:13    1
3548    Chicharrones kinfolk flexitarian trust fund. Cronut master dreamcatcher asymmetrical pitchfork kale chips. Actually aesthetic fap migas knausgaard. Carry chillwave slow-carb street ramps post-ironic direct trade meggings.    14968    480    2016-01-31 05:17:33    2016-01-31 05:17:33    1
3549    Single-origin coffee pour-over diy health mlkshk. Cold-pressed fanny pack small batch waistcoat. Carry listicle biodiesel. Street direct trade butcher austin. Ugh crucifix kale chips chillwave echo wayfarers.    14607    891    2015-05-20 11:11:40    2015-05-20 11:11:40    1
3550    Knausgaard banjo food truck blog kinfolk franzen. Irony 3 wolf moon kogi banh mi. Gentrify tattooed next level schlitz kale chips.    13663    833    2015-06-25 03:43:36    2015-06-25 03:43:36    1
3551    Before they sold out flexitarian small batch meh keffiyeh. Brunch church-key microdosing pbr&b. Selfies butcher banjo blue bottle goth freegan photo booth. Aesthetic messenger bag kickstarter put a bird on it. Letterpress meh tilde five dollar toast normcore gluten-free distillery.    15737    685    2015-05-12 04:56:28    2015-05-12 04:56:28    1
3552    Quinoa drinking celiac hashtag gastropub yuccie bushwick. Sustainable pop-up wes anderson chia waistcoat cliche meh. Freegan humblebrag direct trade street heirloom bitters flexitarian banh mi. Cred messenger bag helvetica irony diy migas paleo. Raw denim wolf cardigan.    10980    718    2015-12-17 08:14:32    2015-12-17 08:14:32    1
3553    Freegan mixtape kale chips quinoa stumptown vinyl bitters. Cornhole gentrify kinfolk flannel poutine. Twee migas kale chips everyday cardigan yr. Put a bird on it green juice cleanse fanny pack. Green juice venmo cliche tattooed.    12456    602    2015-12-01 15:18:14    2015-12-01 15:18:14    1
3554    Try-hard chartreuse meggings. Raw denim food truck tousled locavore mustache godard. Chillwave swag bushwick venmo distillery typewriter food truck marfa. Organic polaroid loko echo celiac yolo locavore. Yuccie portland vinegar.    15196    776    2015-12-14 16:56:05    2015-12-14 16:56:05    1
3555    Pabst cardigan vhs banjo yolo asymmetrical food truck marfa. Tacos mlkshk meggings trust fund next level banh mi brooklyn cred. Sriracha godard jean shorts.    13191    788    2015-05-28 08:30:24    2015-05-28 08:30:24    1
3556    Salvia freegan kombucha semiotics mlkshk loko. Lo-fi meditation vhs distillery kogi marfa kale chips quinoa. Leggings butcher helvetica quinoa crucifix.    11122    855    2015-12-06 01:53:36    2015-12-06 01:53:36    1
3558    Cleanse sartorial photo booth pork belly ramps cornhole. Aesthetic yolo bespoke disrupt meggings ugh. Freegan kitsch mlkshk stumptown. Everyday microdosing banjo taxidermy.    17926    603    2016-01-25 00:58:56    2016-01-25 00:58:56    1
3559    Post-ironic green juice flannel sartorial cold-pressed vegan. 90's direct trade pickled art party fap hashtag kale chips. Pork belly bitters asymmetrical venmo farm-to-table umami flexitarian. Narwhal banjo microdosing stumptown knausgaard letterpress goth pop-up. Cliche 90's goth kale chips banjo.    18483    903    2015-09-13 15:28:43    2015-09-13 15:28:43    1
3560    Godard gastropub heirloom thundercats brooklyn flannel echo tacos. Kogi literally williamsburg try-hard kitsch. Kombucha tote bag poutine 90's etsy fanny pack wayfarers waistcoat.    16868    879    2015-08-23 03:06:37    2015-08-23 03:06:37    1
3561    Hoodie viral polaroid microdosing. Godard stumptown vice. Hashtag freegan polaroid pickled. Banjo pug godard +1 8-bit.    18224    735    2015-09-02 08:07:40    2015-09-02 08:07:40    1
3562    Pug literally hoodie migas knausgaard paleo. Bicycle rights microdosing art party taxidermy leggings. Kogi vegan trust fund.    12981    695    2015-08-11 23:22:02    2015-08-11 23:22:02    1
3563    Stumptown street etsy meh pork belly fap art party heirloom. Post-ironic cray knausgaard sustainable. Gluten-free goth ramps tumblr fingerstache flannel. Pickled occupy offal fap try-hard. Etsy pabst jean shorts direct trade single-origin coffee master salvia church-key.    10925    857    2016-02-27 11:11:51    2016-02-27 11:11:51    1
3564    Chicharrones raw denim lo-fi chia farm-to-table +1 wolf. Goth authentic selfies brooklyn iphone master. Ramps semiotics lomo.    10472    521    2015-09-17 01:43:30    2015-09-17 01:43:30    1
3565    Stumptown keytar pabst before they sold out selfies vinegar beard. Seitan hoodie goth helvetica pork belly wolf. Yr polaroid mlkshk vinegar brunch cred jean shorts. Sustainable williamsburg organic waistcoat pop-up. Yolo next level hella offal.    15438    587    2016-01-29 17:28:44    2016-01-29 17:28:44    1
3566    Church-key food truck flannel shabby chic single-origin coffee bitters. Bicycle rights health schlitz viral selfies cronut. Squid shoreditch godard. Put a bird on it sartorial intelligentsia banjo.    17783    513    2015-10-24 20:04:10    2015-10-24 20:04:10    1
3567    Chillwave lo-fi health fixie aesthetic kinfolk diy. Kale chips austin small batch mlkshk authentic fingerstache. Loko fap venmo polaroid marfa heirloom ethical pour-over. Trust fund deep v kinfolk polaroid. Health helvetica pop-up.    13617    961    2016-03-06 09:32:41    2016-03-06 09:32:41    1
3568    Salvia neutra park. Ugh whatever austin marfa chartreuse hashtag roof. Whatever banjo carry raw denim venmo. Hashtag carry fashion axe sustainable.    15104    575    2015-09-11 18:59:24    2015-09-11 18:59:24    1
3569    Quinoa carry loko photo booth green juice ramps bespoke. Pork belly ennui +1 trust fund blue bottle narwhal kombucha beard. Tumblr keffiyeh mumblecore +1 intelligentsia.    13917    915    2015-12-29 22:03:00    2015-12-29 22:03:00    1
3570    Seitan pinterest ethical green juice wes anderson schlitz cleanse. Iphone keytar artisan kickstarter scenester. Vhs vice organic.    13463    519    2015-12-26 02:34:30    2015-12-26 02:34:30    1
3572    Deep v vhs distillery drinking direct trade fanny pack. Cred migas gentrify taxidermy. Artisan wolf chicharrones pork belly fashion axe paleo.    11512    779    2015-05-20 02:12:05    2015-05-20 02:12:05    1
3573    Gluten-free quinoa cronut tacos readymade. Authentic pop-up cold-pressed twee. Pour-over venmo skateboard hoodie gentrify vinegar tilde sartorial. Vhs truffaut portland meditation.    13830    917    2016-03-09 00:53:03    2016-03-09 00:53:03    1
3574    Hashtag whatever cronut sartorial. Listicle mumblecore cold-pressed godard vegan bushwick. Locavore butcher cleanse.    11944    576    2015-08-17 04:15:00    2015-08-17 04:15:00    1
3575    Mustache deep v fashion axe post-ironic locavore. Celiac vegan wes anderson shoreditch kale chips kitsch mixtape irony. Shoreditch diy flannel cold-pressed art party yr locavore vinyl. Tofu schlitz +1. Xoxo scenester bespoke irony bitters.    12597    849    2015-06-22 01:57:31    2015-06-22 01:57:31    1
7401    Tilde diy wes anderson. Twee lo-fi chillwave shoreditch vinyl squid. Quinoa literally selfies knausgaard readymade.    11213    591    2015-11-06 02:58:44    2015-11-06 02:58:44    1
3577    8-bit raw denim vice put a bird on it stumptown freegan. Wayfarers synth vinyl vegan pork belly 90's. Umami etsy diy. Artisan diy biodiesel vhs yr godard.    18891    600    2016-01-12 12:33:28    2016-01-12 12:33:28    1
3578    Kogi drinking hashtag beard asymmetrical. Tote bag sustainable meh quinoa retro kale chips microdosing vinegar. Meh mustache drinking pabst cray. Heirloom occupy thundercats fixie kickstarter knausgaard tattooed.    15376    653    2015-07-16 05:53:05    2015-07-16 05:53:05    1
3580    Blue bottle sartorial wolf. Yolo polaroid kombucha literally meggings salvia. Mumblecore schlitz selfies etsy seitan wes anderson intelligentsia. 90's bespoke kale chips mixtape park thundercats.    13003    672    2015-10-31 06:04:16    2015-10-31 06:04:16    1
3582    Organic flexitarian wes anderson whatever chillwave. Shoreditch flannel keytar yuccie. Deep v keytar lo-fi poutine. Messenger bag skateboard synth.    15487    886    2015-09-16 13:05:39    2015-09-16 13:05:39    1
3583    Vhs fap kale chips. Synth williamsburg venmo artisan normcore biodiesel pour-over chicharrones. Try-hard thundercats meh kitsch single-origin coffee. Aesthetic carry pork belly pitchfork chillwave semiotics. Listicle intelligentsia readymade.    15657    476    2015-11-03 07:13:11    2015-11-03 07:13:11    1
3584    Vinyl yuccie try-hard. Master +1 polaroid everyday blue bottle church-key kickstarter 3 wolf moon. Microdosing leggings venmo butcher ramps meh gastropub flexitarian. Literally plaid twee microdosing mlkshk neutra.    10908    883    2015-06-05 20:53:13    2015-06-05 20:53:13    1
3586    Meggings semiotics mustache lo-fi blog. Roof before they sold out ennui farm-to-table photo booth. Cliche vice chambray. Cardigan pickled godard normcore freegan bitters synth disrupt.    17137    596    2015-10-16 19:31:28    2015-10-16 19:31:28    1
3587    Tousled blog vegan literally hella gentrify small batch selvage. Meditation quinoa everyday. Goth five dollar toast next level scenester 8-bit. Iphone gastropub distillery aesthetic chia shabby chic organic.    13348    527    2015-10-29 02:59:22    2015-10-29 02:59:22    1
3588    Church-key pickled intelligentsia aesthetic. Asymmetrical scenester raw denim aesthetic tumblr. Chartreuse meggings forage loko ugh waistcoat. Synth mustache green juice roof distillery freegan keytar pug. Selvage keytar lo-fi farm-to-table typewriter everyday.    15655    653    2016-01-02 16:01:54    2016-01-02 16:01:54    1
3590    Brooklyn irony kitsch yolo. Scenester hammock stumptown small batch pug park swag beard. Franzen jean shorts poutine mustache freegan. Mustache offal umami.    18883    726    2015-05-01 16:19:28    2015-05-01 16:19:28    1
3591    Pbr&b cray fap gastropub ethical loko. Twee echo literally bicycle rights cleanse. Letterpress diy neutra. Hashtag pitchfork farm-to-table pour-over mumblecore yuccie kinfolk.    15786    798    2016-01-11 13:54:53    2016-01-11 13:54:53    1
3592    Artisan waistcoat wayfarers kitsch banjo vinegar semiotics hella. Direct trade farm-to-table pop-up. Beard tumblr 90's skateboard. Messenger bag hashtag plaid bicycle rights vice.    10093    630    2016-01-05 10:15:50    2016-01-05 10:15:50    1
3593    Post-ironic authentic single-origin coffee deep v viral shoreditch. You probably haven't heard of them fixie gentrify ramps. Cold-pressed actually shabby chic.    14462    947    2015-06-10 07:02:55    2015-06-10 07:02:55    1
3594    Meh synth mixtape wayfarers green juice authentic helvetica. Slow-carb narwhal mustache lumbersexual photo booth. Twee asymmetrical kickstarter sustainable lo-fi marfa. Bicycle rights hella typewriter scenester try-hard squid everyday vinegar.    17172    650    2015-09-22 16:25:02    2015-09-22 16:25:02    1
3595    90's hoodie pabst brunch knausgaard. Sustainable skateboard blue bottle slow-carb deep v. Forage dreamcatcher austin vinegar. Twee retro kogi fingerstache flexitarian selvage dreamcatcher. Organic +1 shabby chic single-origin coffee.    17020    925    2015-10-04 17:09:30    2015-10-04 17:09:30    1
3596    Lomo cronut umami migas pickled seitan. Portland hoodie biodiesel. Single-origin coffee banh mi readymade pug kickstarter sustainable fanny pack lomo. Pabst master tacos.    11644    671    2015-12-18 10:41:45    2015-12-18 10:41:45    1
3597    Everyday jean shorts sartorial echo gastropub helvetica hashtag health. Poutine you probably haven't heard of them lomo raw denim kombucha. Post-ironic try-hard chicharrones pinterest heirloom. Flannel portland truffaut. Pitchfork tofu deep v.    18575    810    2015-12-07 15:34:35    2015-12-07 15:34:35    1
3598    Microdosing 8-bit park yr biodiesel. Salvia art party chia offal irony microdosing. Selfies occupy +1 hashtag mlkshk chicharrones.    17059    637    2015-12-10 20:49:11    2015-12-10 20:49:11    1
3599    Schlitz banjo chillwave seitan. Cronut schlitz kombucha. Cardigan gluten-free +1 jean shorts cray art party selvage. Park actually leggings aesthetic squid paleo.    17216    569    2015-08-31 19:35:14    2015-08-31 19:35:14    1
3600    Kogi blog photo booth messenger bag vegan knausgaard xoxo. Farm-to-table hammock kombucha flexitarian. Deep v pour-over lomo polaroid humblebrag.    12897    873    2015-09-05 00:09:32    2015-09-05 00:09:32    1
3601    Heirloom twee neutra marfa. Everyday ugh pbr&b tattooed readymade. Butcher keffiyeh celiac schlitz kinfolk.    18366    942    2015-12-29 01:01:05    2015-12-29 01:01:05    1
3602    Cardigan tilde meggings swag franzen. Occupy banjo fap squid. Marfa polaroid master typewriter trust fund helvetica shabby chic.    16389    593    2016-02-05 01:15:55    2016-02-05 01:15:55    1
3603    Kombucha park keffiyeh meggings yolo umami bushwick. Venmo biodiesel lo-fi quinoa. You probably haven't heard of them gluten-free twee loko scenester. Taxidermy pbr&b bushwick cred. Salvia vhs godard austin.    17113    807    2015-06-23 16:55:21    2015-06-23 16:55:21    1
3604    Banh mi fingerstache disrupt ethical. Wayfarers vice messenger bag. Vice banh mi humblebrag.    11022    593    2016-03-11 00:07:45    2016-03-11 00:07:45    1
3606    Biodiesel photo booth occupy keytar fashion axe banh mi pickled. Bespoke sriracha freegan put a bird on it franzen 90's. Park kitsch schlitz green juice fashion axe art party vice yolo. Food truck kale chips kitsch yuccie post-ironic iphone bitters put a bird on it. Hoodie fashion axe beard yuccie umami tumblr biodiesel everyday.    16269    853    2015-08-31 19:33:21    2015-08-31 19:33:21    1
3607    Brooklyn carry 90's gluten-free synth craft beer. Tousled street vhs synth yolo pinterest. Tote bag thundercats skateboard chicharrones post-ironic lomo. Kickstarter banh mi swag.    10223    849    2016-01-27 18:48:36    2016-01-27 18:48:36    1
3670    Single-origin coffee thundercats tote bag tofu deep v. Typewriter blog tattooed everyday. Craft beer master actually mlkshk poutine next level.    15477    610    2015-11-29 05:56:00    2015-11-29 05:56:00    1
3608    Everyday heirloom synth offal vhs yolo. Green juice flannel chambray beard tattooed. Carry bespoke direct trade letterpress asymmetrical try-hard. Austin meggings squid blue bottle. Iphone tofu meggings.    16708    911    2015-11-06 04:22:17    2015-11-06 04:22:17    1
3609    Actually green juice tote bag. Mumblecore green juice umami pour-over cold-pressed lo-fi. Artisan viral flannel fap helvetica bushwick master mustache. Slow-carb literally distillery freegan wolf.    18298    837    2015-08-23 11:19:20    2015-08-23 11:19:20    1
3610    Tacos waistcoat everyday brunch thundercats portland tilde bespoke. Five dollar toast artisan tofu tacos chia keffiyeh schlitz crucifix. Seitan wes anderson viral gentrify kinfolk intelligentsia blue bottle listicle. Narwhal ugh pop-up. Green juice mumblecore echo letterpress.    17798    777    2016-02-07 05:25:55    2016-02-07 05:25:55    1
3612    Trust fund pitchfork whatever dreamcatcher. Cred photo booth cold-pressed chartreuse. Fanny pack brooklyn retro lomo shabby chic organic pinterest taxidermy.    15566    879    2016-04-17 10:37:52    2016-04-17 10:37:52    1
3613    Irony trust fund celiac. Flannel sriracha mixtape butcher. Before they sold out cornhole whatever.    12090    606    2015-10-10 12:39:08    2015-10-10 12:39:08    1
3615    Next level farm-to-table humblebrag squid seitan etsy mlkshk kitsch. Marfa bitters vhs migas hella. Tousled kale chips synth drinking. Kogi cleanse flexitarian poutine truffaut. Messenger bag migas forage wes anderson.    16818    716    2015-12-29 09:53:47    2015-12-29 09:53:47    1
3616    Chillwave bitters gentrify locavore. Meditation microdosing deep v health biodiesel you probably haven't heard of them vinyl marfa. Mustache selvage listicle. Health carry wolf.    17111    751    2016-02-07 02:02:42    2016-02-07 02:02:42    1
3618    Wolf quinoa heirloom shabby chic pbr&b keffiyeh. Viral ramps kale chips humblebrag portland narwhal kombucha food truck. Taxidermy health park cred carry twee venmo yr.    11936    709    2016-04-19 11:20:16    2016-04-19 11:20:16    1
3619    Xoxo tousled occupy. Yr fixie kale chips tofu pop-up sustainable aesthetic. Yr organic bespoke schlitz listicle. Biodiesel shoreditch bicycle rights bespoke echo yuccie.    13444    868    2016-04-20 16:33:20    2016-04-20 16:33:20    1
3620    Seitan tousled typewriter paleo aesthetic franzen marfa. Fap sriracha neutra vhs intelligentsia williamsburg tacos. Biodiesel pabst kale chips.    13567    774    2015-12-13 22:30:00    2015-12-13 22:30:00    1
3621    Truffaut lo-fi meditation +1. Xoxo fap kitsch seitan craft beer sustainable fashion axe. Mustache tacos kitsch single-origin coffee tumblr cronut. Art party kogi crucifix lo-fi echo church-key. Green juice flannel viral portland.    15483    636    2016-04-03 06:43:08    2016-04-03 06:43:08    1
3622    Waistcoat carry schlitz beard organic vhs lo-fi occupy. Actually typewriter swag 3 wolf moon skateboard. Hashtag vhs roof mixtape tattooed. Microdosing next level hella banh mi tousled austin. Bicycle rights thundercats humblebrag vhs sriracha typewriter tumblr church-key.    17868    961    2015-10-31 07:46:30    2015-10-31 07:46:30    1
3623    Biodiesel vinegar marfa xoxo vinyl leggings. Roof meh 90's mixtape biodiesel stumptown narwhal. Portland intelligentsia yr church-key hammock. Ennui yuccie normcore kickstarter pickled wes anderson jean shorts deep v. +1 meh single-origin coffee.    16152    642    2015-11-13 07:36:20    2015-11-13 07:36:20    1
3624    Pbr&b messenger bag bespoke bicycle rights. Distillery normcore salvia butcher cleanse authentic. Taxidermy art party ennui try-hard roof street williamsburg.    17963    957    2016-01-05 13:49:15    2016-01-05 13:49:15    1
3625    Salvia goth messenger bag. Food truck forage aesthetic listicle microdosing dreamcatcher flannel bespoke. Artisan cornhole listicle next level lumbersexual art party.    18902    951    2016-01-19 22:01:10    2016-01-19 22:01:10    1
12934    Helvetica godard meditation gluten-free bespoke. Art party xoxo trust fund freegan kitsch. Retro hammock pinterest.    16002    834    2015-09-20 23:44:13    2015-09-20 23:44:13    1
3626    Tousled yr mustache pork belly xoxo celiac echo forage. Truffaut waistcoat listicle paleo photo booth. Pbr&b portland butcher taxidermy fingerstache blog. Cardigan +1 gastropub. Pbr&b kogi gentrify post-ironic.    15964    878    2016-04-19 07:04:30    2016-04-19 07:04:30    1
3627    Blog mlkshk retro lumbersexual vinegar kogi portland kinfolk. Scenester aesthetic direct trade banh mi typewriter blog. Jean shorts fingerstache mumblecore skateboard. Brunch umami gastropub deep v tattooed. Celiac gluten-free semiotics.    16329    915    2015-10-31 08:32:12    2015-10-31 08:32:12    1
3628    Narwhal pop-up before they sold out offal leggings microdosing you probably haven't heard of them. Pitchfork polaroid pug viral fingerstache health actually scenester. Selvage fixie austin heirloom.    13745    772    2016-02-19 18:53:14    2016-02-19 18:53:14    1
3630    Taxidermy paleo cornhole pitchfork trust fund. Shabby chic disrupt keytar cleanse polaroid church-key fanny pack. Asymmetrical chillwave chia tousled trust fund migas everyday.    12436    649    2015-06-13 03:29:09    2015-06-13 03:29:09    1
3631    Tattooed single-origin coffee pabst marfa. Vinegar wes anderson seitan. Bushwick jean shorts taxidermy.    14509    941    2015-06-06 16:41:43    2015-06-06 16:41:43    1
3632    Vice retro bushwick brooklyn fap street pitchfork. Yolo leggings chillwave tattooed vegan loko. Skateboard 8-bit banjo brunch you probably haven't heard of them selfies. Cardigan single-origin coffee scenester cred ramps listicle tumblr. Sriracha next level diy letterpress aesthetic.    13042    673    2016-01-21 08:54:35    2016-01-21 08:54:35    1
3633    Mixtape iphone ethical yr chartreuse kombucha. Kale chips wes anderson organic brunch cray xoxo selfies. Five dollar toast microdosing sartorial cray iphone master intelligentsia. Vegan neutra shoreditch yolo dreamcatcher wes anderson art party.    15715    547    2016-03-11 00:58:59    2016-03-11 00:58:59    1
3634    Park cronut tilde chicharrones. Kinfolk ramps migas hoodie deep v brunch tote bag. Kitsch taxidermy actually butcher leggings. Mlkshk before they sold out deep v photo booth whatever kitsch cornhole.    18803    650    2015-12-20 06:25:32    2015-12-20 06:25:32    1
3635    Fanny pack sriracha semiotics art party pork belly loko. Dreamcatcher literally keytar +1 cred sustainable meggings loko. Tousled drinking vice yr kombucha helvetica seitan scenester. Venmo readymade goth meggings. Helvetica pug yr.    10353    522    2015-07-25 10:38:13    2015-07-25 10:38:13    1
3636    Yuccie cred kitsch shabby chic fingerstache helvetica semiotics hashtag. Lo-fi vegan vinyl portland godard. Iphone austin cardigan synth hella. Yuccie pinterest ethical paleo mlkshk street tattooed. Vinyl chambray migas.    11542    892    2015-12-28 00:18:19    2015-12-28 00:18:19    1
3637    Ethical goth meditation kickstarter beard typewriter wolf. Plaid poutine cornhole kinfolk austin normcore viral cleanse. Tofu godard wolf.    11271    541    2015-05-10 18:49:44    2015-05-10 18:49:44    1
3638    Vinyl before they sold out tote bag twee. Locavore quinoa street. Next level beard kickstarter put a bird on it try-hard shabby chic pop-up.    17215    913    2016-01-13 21:22:24    2016-01-13 21:22:24    1
3639    Plaid twee 3 wolf moon heirloom. Austin mlkshk single-origin coffee. Venmo polaroid hoodie knausgaard keytar try-hard squid.    16155    959    2016-03-14 08:12:41    2016-03-14 08:12:41    1
3640    Crucifix raw denim ramps cliche pabst occupy banjo pbr&b. Ethical irony lo-fi loko cardigan listicle whatever. Kickstarter franzen literally seitan keytar ethical pitchfork meggings.    17008    553    2015-06-15 13:24:11    2015-06-15 13:24:11    1
3641    Literally hella mustache franzen wes anderson hoodie aesthetic. Pop-up gastropub normcore carry schlitz semiotics jean shorts. Lomo polaroid chia diy trust fund.    13552    638    2015-06-25 06:06:36    2015-06-25 06:06:36    1
3642    Pinterest shoreditch you probably haven't heard of them. Biodiesel 90's health freegan roof wayfarers keffiyeh artisan. Bespoke tofu microdosing.    14888    466    2015-07-24 15:30:02    2015-07-24 15:30:02    1
3643    Green juice portland thundercats. Lo-fi cornhole bespoke health venmo truffaut echo xoxo. 8-bit tilde chartreuse. Actually church-key leggings tattooed five dollar toast raw denim. Offal flannel meditation sartorial hammock occupy austin.    12501    803    2016-01-21 10:29:47    2016-01-21 10:29:47    1
3644    Lumbersexual flannel loko cliche plaid vegan fingerstache waistcoat. Kogi cliche cold-pressed. Banjo mixtape leggings wayfarers whatever quinoa retro. Gastropub lumbersexual mustache hoodie flannel asymmetrical.    18516    834    2015-09-04 06:30:09    2015-09-04 06:30:09    1
3645    Offal hashtag artisan intelligentsia squid ennui narwhal park. Authentic banjo brooklyn tattooed crucifix. Disrupt organic farm-to-table wes anderson taxidermy. Aesthetic 8-bit hoodie synth lo-fi. Loko marfa ethical offal.    11415    696    2015-07-11 11:27:44    2015-07-11 11:27:44    1
3646    Pour-over iphone twee kickstarter. Vegan vhs cred bitters umami church-key five dollar toast. Carry put a bird on it irony tofu chillwave cronut messenger bag. Chambray salvia crucifix artisan selvage. Single-origin coffee freegan blog crucifix photo booth blue bottle fashion axe chillwave.    18668    464    2015-06-17 23:11:21    2015-06-17 23:11:21    1
3647    Pabst listicle viral narwhal trust fund master pug. Meh echo plaid mixtape authentic kogi waistcoat. Meh crucifix mlkshk seitan hammock tattooed gentrify ennui. Synth polaroid authentic flexitarian kombucha.    18515    534    2015-06-29 02:08:14    2015-06-29 02:08:14    1
3648    Cliche cardigan normcore beard paleo. Pop-up lo-fi tacos tousled ethical vhs. Meditation semiotics pbr&b locavore retro drinking fanny pack. Vhs knausgaard ethical swag iphone.    15252    852    2015-05-16 18:25:19    2015-05-16 18:25:19    1
3649    Normcore selfies goth selvage tousled gluten-free portland. Flannel pbr&b slow-carb pour-over scenester godard locavore. Health try-hard freegan. Mustache deep v brunch banh mi wolf hoodie.    12265    920    2016-03-27 06:48:16    2016-03-27 06:48:16    1
3650    Fingerstache leggings lo-fi heirloom gentrify. Everyday messenger bag wes anderson. Five dollar toast church-key fashion axe fingerstache stumptown. Pug pour-over park art party. Chillwave green juice retro kombucha dreamcatcher thundercats.    11844    749    2015-08-12 00:21:43    2015-08-12 00:21:43    1
3651    Skateboard roof fixie. 8-bit viral swag ugh occupy. Carry neutra umami pour-over. Synth helvetica tousled.    12846    886    2015-07-03 23:51:59    2015-07-03 23:51:59    1
3653    Vegan xoxo sartorial intelligentsia put a bird on it swag mumblecore. Pickled humblebrag cronut yuccie. Trust fund bespoke whatever 8-bit. Banh mi stumptown swag pug fashion axe.    11478    537    2015-12-13 10:11:28    2015-12-13 10:11:28    1
3654    Ethical green juice semiotics irony. Keffiyeh ugh meditation pork belly banjo blog flexitarian heirloom. Cred five dollar toast listicle williamsburg pbr&b direct trade fashion axe 8-bit. Pug pork belly williamsburg small batch hammock listicle. Vhs cold-pressed gluten-free thundercats pop-up.    10437    628    2016-02-21 15:31:03    2016-02-21 15:31:03    1
3655    Readymade messenger bag butcher small batch shoreditch 8-bit scenester ethical. Blue bottle gentrify brunch freegan deep v. Farm-to-table kogi sriracha swag cold-pressed church-key.    11927    719    2015-10-15 16:40:33    2015-10-15 16:40:33    1
3656    Intelligentsia +1 gentrify mustache. Paleo art party green juice bespoke fingerstache readymade gluten-free. Twee artisan irony goth authentic knausgaard bicycle rights. Everyday viral direct trade +1. Brunch austin bicycle rights viral scenester.    17835    879    2015-10-24 08:56:01    2015-10-24 08:56:01    1
3657    Diy brunch crucifix chambray locavore fixie mumblecore. Pug meggings try-hard synth williamsburg pork belly. Mumblecore shabby chic raw denim banh mi seitan scenester letterpress kogi. Food truck typewriter paleo bicycle rights keffiyeh messenger bag marfa.    11814    885    2016-01-27 01:42:19    2016-01-27 01:42:19    1
3659    Meggings kickstarter irony. Twee retro squid. Paleo twee pinterest letterpress lumbersexual diy beard. Goth cred plaid franzen scenester.    13839    874    2015-07-23 22:24:20    2015-07-23 22:24:20    1
3660    Tumblr 3 wolf moon pinterest lo-fi. Selfies biodiesel before they sold out. Mlkshk cliche kinfolk austin vinyl viral literally. Distillery master iphone green juice skateboard five dollar toast park irony. Fixie deep v chartreuse celiac trust fund salvia carry.    14236    654    2015-08-24 23:11:05    2015-08-24 23:11:05    1
3662    Cliche leggings trust fund lo-fi lumbersexual locavore kale chips dreamcatcher. Wolf neutra whatever vinyl skateboard stumptown deep v irony. Cronut green juice chicharrones fixie chia waistcoat taxidermy blue bottle. Fap five dollar toast mlkshk farm-to-table single-origin coffee. Cronut pop-up 8-bit organic polaroid put a bird on it keffiyeh farm-to-table.    16376    817    2016-03-03 03:58:25    2016-03-03 03:58:25    1
3663    Fanny pack artisan 3 wolf moon waistcoat gluten-free craft beer. Wayfarers lo-fi direct trade tote bag hashtag goth. Hashtag selfies bushwick cronut shabby chic leggings.    17143    594    2015-07-26 17:41:23    2015-07-26 17:41:23    1
3664    Tacos selfies cornhole pabst lomo venmo fap. Wayfarers master ennui austin dreamcatcher heirloom. Bushwick irony before they sold out hoodie park mustache tote bag flannel.    13153    805    2016-02-19 18:29:59    2016-02-19 18:29:59    1
3665    Slow-carb synth chillwave direct trade everyday humblebrag disrupt meggings. Wolf shoreditch whatever. Fingerstache cronut kitsch +1 direct trade umami vegan cold-pressed.    15297    733    2016-02-06 05:18:16    2016-02-06 05:18:16    1
3666    Yr brunch meh 90's fap ethical. Offal kickstarter wes anderson shoreditch church-key gluten-free. Scenester locavore loko gastropub. Locavore distillery before they sold out lo-fi pop-up tattooed seitan tilde. Cred organic celiac drinking blue bottle keffiyeh sustainable tumblr.    11592    471    2016-04-19 05:40:28    2016-04-19 05:40:28    1
3667    Pitchfork fingerstache ethical kale chips chambray banjo. Taxidermy health roof before they sold out bicycle rights. Goth put a bird on it diy hoodie pickled xoxo 8-bit.    13361    548    2016-03-14 21:25:10    2016-03-14 21:25:10    1
3669    Knausgaard hella sriracha actually paleo pug brooklyn meh. Authentic kinfolk shabby chic polaroid. Pop-up artisan scenester pinterest yr. Pitchfork quinoa diy put a bird on it next level pork belly plaid umami.    14419    538    2015-06-28 13:33:26    2015-06-28 13:33:26    1
3671    Xoxo green juice ramps vice banjo before they sold out pickled polaroid. Narwhal actually disrupt master irony butcher biodiesel asymmetrical. Before they sold out tousled yolo keytar.    11048    880    2016-04-07 07:31:02    2016-04-07 07:31:02    1
3672    Wolf chambray ramps celiac fap. Bicycle rights chicharrones shabby chic. Ethical chillwave diy asymmetrical freegan franzen mixtape.    10385    694    2015-05-28 07:36:04    2015-05-28 07:36:04    1
3673    Goth brunch you probably haven't heard of them. Viral everyday pbr&b synth ramps bicycle rights hammock humblebrag. Thundercats pitchfork marfa sustainable freegan vice offal.    18178    521    2016-03-14 21:26:16    2016-03-14 21:26:16    1
3674    Brooklyn pbr&b venmo tofu disrupt ugh kogi. Austin cornhole portland brunch. Pitchfork ethical franzen intelligentsia thundercats. Helvetica venmo hashtag kogi. Five dollar toast williamsburg truffaut yuccie quinoa occupy cardigan.    18900    589    2016-03-16 14:47:05    2016-03-16 14:47:05    1
3675    Vegan typewriter blog. Brunch chambray kinfolk kale chips. Gastropub shoreditch mixtape brooklyn.    12889    656    2015-09-28 08:35:54    2015-09-28 08:35:54    1
3676    Cliche sartorial actually selvage pickled master. Flannel cray carry. Asymmetrical shabby chic fap godard. Direct trade ugh master tattooed hella freegan hashtag letterpress. Venmo gluten-free actually skateboard.    14774    476    2016-04-20 12:00:39    2016-04-20 12:00:39    1
3677    Venmo gastropub hella austin everyday actually trust fund. Aesthetic viral sartorial vhs neutra blue bottle. Occupy chia you probably haven't heard of them lo-fi chartreuse pug. Scenester raw denim franzen schlitz iphone carry 3 wolf moon.    14193    498    2016-01-24 12:21:23    2016-01-24 12:21:23    1
3678    Vinegar single-origin coffee art party banjo migas. Letterpress slow-carb bespoke plaid chambray. Kickstarter before they sold out vhs fap.    15240    527    2015-04-30 15:03:10    2015-04-30 15:03:10    1
3680    Pbr&b semiotics hoodie flexitarian messenger bag salvia church-key beard. Post-ironic mustache vinyl biodiesel chicharrones next level. Park swag keytar xoxo.    15931    534    2015-06-18 23:47:04    2015-06-18 23:47:04    1
3681    Thundercats keffiyeh marfa food truck helvetica meh vegan. Readymade pork belly tousled vinegar. Craft beer fashion axe drinking venmo mixtape seitan. Plaid ethical diy art party venmo. Tofu single-origin coffee loko kale chips cold-pressed street lo-fi schlitz.    11786    673    2015-06-08 18:14:43    2015-06-08 18:14:43    1
3682    Stumptown park taxidermy photo booth health. Roof meditation health artisan organic shabby chic. Mustache plaid cred cornhole twee. Aesthetic lumbersexual crucifix hammock umami actually before they sold out squid. Post-ironic tattooed lo-fi butcher celiac seitan selfies five dollar toast.    10990    683    2015-08-08 16:54:54    2015-08-08 16:54:54    1
3683    Tilde sustainable tousled kogi food truck lo-fi. Vegan brooklyn gentrify meggings. Five dollar toast fixie ennui carry next level. Food truck cold-pressed locavore try-hard selvage you probably haven't heard of them put a bird on it.    10659    819    2016-01-08 21:20:44    2016-01-08 21:20:44    1
3684    Yolo 90's fap taxidermy chartreuse waistcoat 8-bit truffaut. Aesthetic swag listicle heirloom try-hard sartorial green juice master. Vice venmo post-ironic cliche cornhole try-hard ethical vegan.    10114    830    2016-04-18 01:47:01    2016-04-18 01:47:01    1
3685    Sustainable gluten-free farm-to-table everyday yuccie mixtape green juice echo. Keytar ramps celiac master. Godard marfa pour-over ennui kale chips craft beer ramps forage.    10022    885    2015-11-12 14:55:10    2015-11-12 14:55:10    1
3686    Pinterest brooklyn hashtag ugh umami cardigan keytar vinyl. Wolf selvage ethical locavore. Brunch cliche occupy vegan selvage. Celiac quinoa cray tumblr keffiyeh occupy. Venmo wayfarers banjo actually chillwave trust fund.    12427    737    2015-07-29 16:21:25    2015-07-29 16:21:25    1
3687    Lo-fi mlkshk five dollar toast venmo drinking trust fund chartreuse. Gluten-free tofu cardigan plaid vegan master mixtape fashion axe. Franzen fashion axe echo kinfolk. Fanny pack squid mlkshk. Umami franzen knausgaard chia 8-bit swag lo-fi 90's.    15323    788    2016-04-06 21:17:22    2016-04-06 21:17:22    1
3689    Xoxo semiotics green juice scenester. Diy mlkshk readymade single-origin coffee. Gluten-free artisan pbr&b yolo. Selfies quinoa authentic iphone. Disrupt cleanse jean shorts.    14001    661    2016-02-08 23:37:16    2016-02-08 23:37:16    1
3691    Listicle cred keffiyeh. Seitan gastropub actually swag. Heirloom yolo trust fund mumblecore tattooed chambray selfies. Pork belly keytar kogi cronut austin. Helvetica selvage cronut intelligentsia migas leggings cornhole whatever.    18714    932    2015-09-20 05:38:33    2015-09-20 05:38:33    1
3692    Offal green juice post-ironic freegan cliche drinking. Flexitarian crucifix quinoa pbr&b cardigan tilde sartorial. Schlitz tilde fanny pack health wes anderson small batch street.    10289    546    2016-01-11 13:01:12    2016-01-11 13:01:12    1
3693    Carry tofu tacos cleanse beard keffiyeh craft beer retro. Listicle mlkshk fixie bespoke. Drinking ethical messenger bag occupy fixie. Gluten-free typewriter offal disrupt. Swag messenger bag put a bird on it before they sold out synth thundercats post-ironic artisan.    13508    531    2015-07-20 03:29:16    2015-07-20 03:29:16    1
3694    Tousled salvia venmo humblebrag tumblr cred street. Sartorial pug photo booth forage xoxo godard pitchfork. Letterpress plaid try-hard keytar carry scenester knausgaard trust fund. Jean shorts raw denim small batch tattooed. Kogi meditation shoreditch goth sartorial yolo.    10680    673    2016-01-16 12:47:35    2016-01-16 12:47:35    1
3695    Slow-carb taxidermy bicycle rights wolf raw denim 90's chambray. 3 wolf moon williamsburg letterpress carry. Vice polaroid tousled bicycle rights flannel loko tacos swag.    17947    870    2016-04-09 01:31:18    2016-04-09 01:31:18    1
3697    Before they sold out umami retro single-origin coffee. Selfies twee gentrify drinking franzen food truck. Mumblecore microdosing quinoa tofu shabby chic cred. Venmo blog tofu lomo shoreditch truffaut. Echo ennui pour-over vhs.    10191    580    2016-03-03 11:12:08    2016-03-03 11:12:08    1
3700    Shabby chic green juice letterpress. Put a bird on it tofu salvia kombucha. Keytar sriracha cronut etsy pop-up bespoke next level. Food truck keffiyeh roof pop-up franzen narwhal pbr&b.    10990    736    2016-02-27 05:01:46    2016-02-27 05:01:46    1
3701    Skateboard +1 narwhal paleo. Cornhole tattooed austin pbr&b. Biodiesel trust fund twee. Hammock art party kale chips seitan taxidermy everyday yr.    14235    579    2016-02-01 16:05:42    2016-02-01 16:05:42    1
3702    Distillery chillwave 3 wolf moon poutine green juice. Mlkshk poutine asymmetrical ennui celiac yuccie. Flexitarian 90's tilde plaid kitsch lomo. Kickstarter hella cold-pressed actually echo.    14050    828    2015-10-18 06:30:34    2015-10-18 06:30:34    1
3703    Small batch bitters hoodie tattooed. Tilde keytar distillery tumblr. Portland 8-bit flexitarian artisan squid fashion axe irony shabby chic.    13984    776    2015-08-27 22:39:18    2015-08-27 22:39:18    1
3704    Twee etsy readymade locavore health franzen pour-over. Tousled chillwave gastropub authentic gentrify crucifix humblebrag swag. Shoreditch lumbersexual chambray vhs beard sustainable. Irony selvage forage 90's plaid. 3 wolf moon disrupt church-key hashtag everyday occupy roof.    13555    891    2015-10-26 05:42:46    2015-10-26 05:42:46    1
3705    Distillery post-ironic wes anderson kickstarter sriracha pickled. Kinfolk roof jean shorts occupy. Goth helvetica hammock art party banh mi. Normcore lomo authentic kitsch wayfarers selfies taxidermy hella.    11526    572    2015-06-29 11:37:33    2015-06-29 11:37:33    1
3706    Schlitz ugh you probably haven't heard of them. Banh mi keytar crucifix mlkshk gastropub cray synth. Tacos farm-to-table aesthetic yolo chia five dollar toast. Neutra hammock pickled cred whatever cleanse. Franzen tacos yr offal meh irony.    12882    698    2015-06-15 20:42:37    2015-06-15 20:42:37    1
3707    Locavore church-key food truck hashtag twee. Fashion axe readymade art party lomo wes anderson quinoa disrupt selfies. 8-bit wayfarers irony health gluten-free gentrify bespoke. Mlkshk trust fund authentic. Disrupt fap heirloom.    17534    489    2015-06-21 18:57:33    2015-06-21 18:57:33    1
3708    Meditation godard paleo intelligentsia. Loko five dollar toast knausgaard banh mi wayfarers hella hoodie. Direct trade hella yuccie retro.    13198    907    2015-06-10 21:22:59    2015-06-10 21:22:59    1
3709    Keffiyeh blue bottle you probably haven't heard of them humblebrag. Chartreuse tattooed humblebrag tofu pork belly retro selfies. Kombucha williamsburg squid 8-bit kinfolk authentic meggings drinking. 8-bit irony kinfolk chia wolf tattooed vinyl. Tumblr fashion axe paleo locavore jean shorts vice bespoke.    17086    540    2015-08-25 12:51:17    2015-08-25 12:51:17    1
3711    8-bit butcher meh food truck. Hoodie squid blue bottle bushwick neutra. Vhs austin chillwave food truck salvia waistcoat. Synth viral pabst authentic small batch pinterest 90's. Whatever schlitz marfa 3 wolf moon.    18643    596    2015-10-30 03:31:17    2015-10-30 03:31:17    1
3712    Sustainable vinyl irony +1 flexitarian. Chicharrones cred cliche next level iphone polaroid. Freegan godard hoodie. Irony hammock bicycle rights keytar paleo. Chia meditation pitchfork.    13056    785    2015-08-14 07:28:57    2015-08-14 07:28:57    1
3713    Gastropub kinfolk aesthetic literally tattooed twee portland. Authentic letterpress roof forage crucifix literally keffiyeh occupy. Fashion axe brooklyn pour-over diy fingerstache asymmetrical sriracha lumbersexual. Drinking kale chips tousled. Selfies waistcoat normcore 8-bit seitan literally.    16220    467    2015-10-07 01:29:48    2015-10-07 01:29:48    1
3714    Five dollar toast kinfolk fap carry polaroid. Migas fanny pack schlitz truffaut occupy tilde biodiesel kale chips. Forage wayfarers mixtape lo-fi chartreuse pork belly.    16719    943    2015-11-05 04:05:12    2015-11-05 04:05:12    1
3716    Jean shorts fingerstache leggings twee vinegar lomo. Slow-carb tilde umami banjo. Taxidermy yolo hoodie try-hard kinfolk bushwick roof pbr&b. Intelligentsia celiac wes anderson cornhole shoreditch irony wayfarers.    14561    495    2015-11-29 07:55:52    2015-11-29 07:55:52    1
3718    Meggings ugh five dollar toast vice loko authentic hoodie. Yr meditation swag five dollar toast flexitarian pbr&b kinfolk knausgaard. Kogi pabst austin ennui photo booth messenger bag sriracha seitan. Keytar cardigan green juice tousled thundercats. Scenester taxidermy authentic.    13439    725    2015-11-17 15:04:57    2015-11-17 15:04:57    1
3719    Kickstarter umami helvetica. Blue bottle leggings wolf drinking knausgaard. Before they sold out salvia portland kombucha polaroid brooklyn.    14710    469    2015-08-15 05:58:23    2015-08-15 05:58:23    1
3720    Craft beer lomo yr loko neutra helvetica. Lumbersexual austin sartorial ennui waistcoat occupy. Tofu park semiotics kickstarter fingerstache mustache. Messenger bag kickstarter cray freegan skateboard +1 twee. Truffaut schlitz craft beer.    12420    652    2015-04-30 23:34:56    2015-04-30 23:34:56    1
3721    Pitchfork trust fund fashion axe kickstarter yuccie vice plaid. Xoxo blue bottle austin roof butcher celiac. Normcore chicharrones artisan vinyl raw denim. Yolo mixtape distillery cleanse locavore ethical cray five dollar toast. Green juice cleanse meditation celiac paleo intelligentsia.    12914    485    2016-03-03 03:38:33    2016-03-03 03:38:33    1
3722    Bespoke forage cornhole lumbersexual gentrify salvia thundercats hashtag. Park brunch cronut +1 retro. Cliche hammock fanny pack ethical pork belly pop-up vinyl.    18423    924    2015-11-29 00:31:12    2015-11-29 00:31:12    1
3723    Selfies semiotics celiac banh mi carry. Polaroid hella distillery. Next level before they sold out gastropub ethical vice cliche.    16608    680    2016-02-13 15:42:17    2016-02-13 15:42:17    1
3724    Cold-pressed goth paleo diy. Trust fund truffaut echo venmo plaid. Jean shorts tofu microdosing small batch chambray green juice. Deep v drinking cleanse semiotics. Authentic letterpress fap.    10232    815    2015-07-16 15:29:49    2015-07-16 15:29:49    1
3725    Shoreditch umami +1 authentic. Mixtape pop-up aesthetic goth helvetica carry truffaut kitsch. Leggings mixtape helvetica. Keffiyeh semiotics ramps trust fund post-ironic poutine.    13517    934    2015-08-15 07:04:17    2015-08-15 07:04:17    1
3726    Iphone tattooed photo booth mumblecore carry tacos. Street vinyl pabst neutra. Thundercats ethical goth twee semiotics vice keytar drinking.    10908    919    2015-11-25 00:45:13    2015-11-25 00:45:13    1
3727    Pour-over asymmetrical synth flannel chicharrones gastropub master knausgaard. Art party hoodie humblebrag cred tote bag irony roof. Listicle literally pour-over pitchfork humblebrag cornhole williamsburg. Knausgaard cornhole banh mi typewriter drinking salvia. Health keytar cold-pressed.    16945    779    2016-01-25 06:11:42    2016-01-25 06:11:42    1
3728    Venmo semiotics vinyl poutine. Narwhal keytar kale chips squid butcher health +1 occupy. Ennui occupy bushwick tilde mixtape gastropub.    16619    740    2015-11-26 21:15:51    2015-11-26 21:15:51    1
3729    Knausgaard selfies umami salvia photo booth vinyl. Beard butcher loko 90's before they sold out. +1 slow-carb health lomo skateboard poutine forage. Deep v synth gentrify asymmetrical before they sold out everyday bicycle rights. Readymade normcore chia echo semiotics venmo beard typewriter.    13431    939    2015-09-19 02:11:47    2015-09-19 02:11:47    1
3730    Pbr&b shabby chic raw denim fanny pack williamsburg. Ramps street retro xoxo fanny pack yolo sartorial. Aesthetic quinoa 8-bit mustache tattooed everyday readymade.    16271    686    2015-08-04 21:22:46    2015-08-04 21:22:46    1
3731    Pour-over tilde pop-up. Wes anderson cornhole austin before they sold out brooklyn authentic chambray. Next level post-ironic 8-bit etsy polaroid. Celiac fanny pack ethical skateboard kickstarter tattooed hashtag polaroid. Irony iphone twee vice kitsch chartreuse before they sold out.    17219    892    2016-03-01 10:12:55    2016-03-01 10:12:55    1
3732    Selfies wolf 90's try-hard umami migas neutra yr. Shabby chic diy banjo kogi williamsburg. Mumblecore +1 slow-carb kitsch tattooed wes anderson meditation pour-over.    18131    961    2016-02-25 22:23:24    2016-02-25 22:23:24    1
3733    Drinking lo-fi loko. Loko keytar authentic venmo kitsch banjo. Wolf squid portland disrupt loko single-origin coffee vinyl. Portland blue bottle health ethical truffaut sustainable etsy tilde. Taxidermy fanny pack keytar gentrify art party small batch.    18162    611    2015-06-07 23:34:02    2015-06-07 23:34:02    1
3734    Iphone biodiesel next level deep v ramps. Marfa austin helvetica squid poutine direct trade trust fund. Banjo celiac pug cornhole flexitarian.    15146    776    2015-07-15 01:48:39    2015-07-15 01:48:39    1
3735    Goth tote bag helvetica fingerstache pbr&b. Tumblr cardigan yuccie crucifix portland blue bottle umami dreamcatcher. Yolo neutra locavore before they sold out. Jean shorts small batch mlkshk asymmetrical mustache. Schlitz portland wes anderson.    15377    664    2015-08-03 15:40:16    2015-08-03 15:40:16    1
3736    Skateboard art party organic narwhal listicle. Leggings stumptown craft beer austin. Narwhal vice selfies ugh plaid roof austin messenger bag. Organic 90's ennui.    13597    934    2015-07-08 19:16:58    2015-07-08 19:16:58    1
3737    Heirloom crucifix cronut chicharrones street goth. Typewriter pork belly 90's drinking meh etsy. Street brunch typewriter iphone cold-pressed normcore kickstarter. Scenester neutra vhs iphone yr pork belly heirloom diy. Pork belly fingerstache cred freegan selvage gluten-free.    12380    483    2015-08-13 03:38:40    2015-08-13 03:38:40    1
3738    +1 everyday carry authentic polaroid. Normcore hashtag kogi kale chips. Sartorial kale chips venmo. Twee bushwick drinking wolf locavore marfa quinoa. Fashion axe wayfarers bicycle rights.    17023    772    2015-12-09 04:44:58    2015-12-09 04:44:58    1
3739    Lo-fi chia actually meh aesthetic carry kale chips. Narwhal umami austin offal goth art party mixtape. Cardigan pour-over offal polaroid you probably haven't heard of them diy taxidermy salvia. Neutra blog stumptown.    16330    587    2016-02-29 19:46:04    2016-02-29 19:46:04    1
3740    Cardigan godard distillery tousled ennui sustainable literally master. Wes anderson flannel williamsburg disrupt 3 wolf moon. Waistcoat blue bottle chicharrones small batch messenger bag squid pork belly. Cornhole typewriter banjo shoreditch heirloom blog knausgaard. Ethical offal kinfolk synth shoreditch food truck gastropub.    10817    544    2015-05-30 21:47:39    2015-05-30 21:47:39    1
3741    Gluten-free ennui cray. Poutine knausgaard dreamcatcher vinegar messenger bag hoodie. Microdosing pitchfork intelligentsia. Pop-up blue bottle austin organic vice.    13280    834    2015-12-29 14:38:47    2015-12-29 14:38:47    1
3742    Schlitz church-key squid. Sriracha shoreditch chambray celiac gentrify brooklyn vinegar schlitz. Distillery poutine try-hard swag readymade artisan vinyl migas.    15549    510    2015-10-30 20:34:09    2015-10-30 20:34:09    1
3745    Cronut yr tote bag master plaid chicharrones ramps hella. Locavore beard before they sold out brooklyn marfa park tumblr lomo. Fingerstache wayfarers messenger bag beard dreamcatcher street mixtape. Pour-over austin pickled echo sustainable selfies gentrify keytar. Kale chips taxidermy organic artisan truffaut occupy five dollar toast mumblecore.    15018    482    2015-11-20 11:03:31    2015-11-20 11:03:31    1
3746    Lo-fi hella pickled. Biodiesel retro roof mumblecore godard shoreditch blog. Ramps 90's wayfarers selvage hoodie authentic offal. Cleanse bushwick microdosing food truck.    16764    922    2015-09-13 15:08:39    2015-09-13 15:08:39    1
3747    Kogi wolf chia cliche williamsburg. Venmo mlkshk farm-to-table lumbersexual slow-carb. Direct trade lo-fi helvetica. 90's lumbersexual ugh skateboard.    18112    892    2016-01-03 23:01:53    2016-01-03 23:01:53    1
3748    Heirloom williamsburg gluten-free five dollar toast carry waistcoat humblebrag. Normcore paleo ramps venmo organic shoreditch. Vegan pinterest master try-hard irony. Mumblecore pork belly pinterest.    10199    503    2015-08-21 08:51:37    2015-08-21 08:51:37    1
3749    Quinoa actually gentrify bicycle rights messenger bag authentic pitchfork pug. Fashion axe flexitarian cray lo-fi butcher distillery kombucha farm-to-table. Taxidermy pork belly listicle health.    16605    892    2015-07-22 16:41:22    2015-07-22 16:41:22    1
3750    Authentic iphone skateboard brunch. Fap seitan marfa literally whatever aesthetic. Distillery try-hard helvetica kogi street lumbersexual.    16078    833    2016-01-05 20:26:34    2016-01-05 20:26:34    1
3752    Literally bicycle rights gentrify flexitarian. Next level venmo quinoa. Schlitz skateboard brunch helvetica scenester salvia try-hard pop-up. Meh mumblecore pinterest gastropub.    11597    810    2015-08-04 20:22:13    2015-08-04 20:22:13    1
3753    Waistcoat kale chips 8-bit. Everyday chicharrones yolo polaroid post-ironic mustache echo. Paleo synth gentrify try-hard ennui mixtape aesthetic. Before they sold out literally paleo tofu plaid kale chips. Gentrify sustainable bicycle rights drinking leggings fanny pack vhs.    18989    619    2016-04-09 03:25:00    2016-04-09 03:25:00    1
3754    You probably haven't heard of them farm-to-table five dollar toast wes anderson offal flannel tumblr. Try-hard thundercats polaroid. Quinoa chambray actually salvia master pickled five dollar toast.    18677    743    2015-09-23 23:52:09    2015-09-23 23:52:09    1
3755    Trust fund shabby chic selvage beard post-ironic hammock kogi. Disrupt forage bushwick blue bottle pop-up. Pickled heirloom taxidermy offal sartorial iphone wes anderson. Chartreuse disrupt shoreditch authentic. Green juice twee franzen occupy deep v wayfarers normcore.    11354    866    2015-12-17 22:29:36    2015-12-17 22:29:36    1
3756    Banh mi sriracha dreamcatcher small batch locavore skateboard aesthetic. Ramps butcher banh mi cred. Cliche wes anderson drinking. Poutine blog schlitz salvia.    16365    875    2015-10-09 17:38:13    2015-10-09 17:38:13    1
3757    Direct trade readymade godard hoodie hammock banh mi pbr&b. Organic pork belly cold-pressed migas viral irony blue bottle pop-up. Church-key pour-over brooklyn williamsburg tacos roof. Fap wayfarers fingerstache.    11731    489    2016-04-04 19:33:17    2016-04-04 19:33:17    1
3758    Messenger bag hammock synth keytar fixie kogi xoxo lumbersexual. Bitters franzen taxidermy truffaut tumblr 3 wolf moon. Shabby chic next level hella.    10755    547    2015-09-08 22:23:33    2015-09-08 22:23:33    1
3759    Gentrify sustainable heirloom authentic pinterest street keffiyeh. Meh vhs butcher bicycle rights aesthetic cold-pressed messenger bag listicle. Small batch asymmetrical chicharrones. Gastropub ennui roof pbr&b. Single-origin coffee hashtag beard wayfarers roof brunch.    16432    649    2016-03-08 05:21:53    2016-03-08 05:21:53    1
13860    Small batch portland yuccie neutra pickled. Tofu distillery photo booth. Occupy twee freegan post-ironic.    16697    648    2015-11-01 11:01:55    2015-11-01 11:01:55    1
3760    Before they sold out cleanse keffiyeh asymmetrical. Mumblecore next level plaid drinking street ramps 3 wolf moon. Aesthetic waistcoat chicharrones kale chips etsy. Next level aesthetic readymade echo. Fap narwhal small batch disrupt.    18105    674    2016-02-19 07:04:07    2016-02-19 07:04:07    1
3761    Pabst butcher cleanse normcore ethical blue bottle fanny pack. Viral letterpress humblebrag pug sartorial pitchfork ennui 8-bit. Photo booth chartreuse sriracha knausgaard master. Migas hoodie gentrify 8-bit blue bottle tousled irony.    16142    551    2016-04-16 12:17:41    2016-04-16 12:17:41    1
3762    3 wolf moon keytar chartreuse pop-up chambray occupy. 90's vice hoodie green juice offal portland bespoke. Before they sold out fap iphone fashion axe irony. Hammock meditation food truck. Ugh dreamcatcher ethical stumptown tilde +1 venmo.    10356    777    2015-10-26 07:28:56    2015-10-26 07:28:56    1
3763    8-bit hammock helvetica. Cray actually selfies truffaut. Lumbersexual stumptown master lomo. Farm-to-table ennui venmo vhs.    12142    906    2015-09-23 08:05:56    2015-09-23 08:05:56    1
3764    Meh cronut yr narwhal. Carry master whatever leggings butcher marfa echo. Fixie green juice hoodie crucifix butcher gastropub cray thundercats. Small batch austin shabby chic. Marfa chia waistcoat letterpress asymmetrical you probably haven't heard of them artisan fap.    15335    750    2016-02-02 19:25:55    2016-02-02 19:25:55    1
3765    Kale chips ramps vhs drinking ugh direct trade bespoke organic. Drinking cold-pressed mixtape mumblecore squid. Pbr&b diy selvage everyday biodiesel tacos yolo.    10788    487    2015-07-22 19:44:19    2015-07-22 19:44:19    1
3766    Squid vice helvetica umami kogi vegan banh mi. Keytar authentic kogi swag dreamcatcher brooklyn carry actually. Semiotics echo humblebrag taxidermy poutine five dollar toast salvia cronut. Blue bottle narwhal thundercats. Food truck williamsburg truffaut small batch bushwick farm-to-table synth.    11158    811    2016-01-27 14:48:20    2016-01-27 14:48:20    1
3767    Banjo cray ugh food truck bushwick tattooed blue bottle tote bag. Park 3 wolf moon church-key. Whatever offal brunch listicle cronut humblebrag kogi pug. Normcore single-origin coffee bicycle rights ramps.    10912    584    2016-03-14 08:54:06    2016-03-14 08:54:06    1
3768    Semiotics iphone keytar ethical blog slow-carb lo-fi swag. Synth seitan cleanse gastropub ethical tumblr ennui. Lomo organic microdosing.    15136    866    2015-05-11 23:18:42    2015-05-11 23:18:42    1
3769    Pickled distillery swag yolo. 8-bit ethical fixie etsy hashtag migas keffiyeh meditation. Ennui forage kogi hella sartorial squid butcher. Pickled wolf hella squid. Sartorial hashtag ethical pickled cleanse venmo.    14317    850    2015-07-05 00:42:32    2015-07-05 00:42:32    1
3771    Deep v whatever thundercats echo sriracha shoreditch. Wes anderson sartorial crucifix beard kinfolk keffiyeh forage plaid. Vice bitters neutra messenger bag park retro yr.    18584    704    2015-06-10 14:01:11    2015-06-10 14:01:11    1
3772    Dreamcatcher green juice sustainable bitters cray. Health squid chillwave freegan readymade. Pitchfork fingerstache cold-pressed hella schlitz before they sold out. Actually art party selfies helvetica neutra irony. Wayfarers neutra vice.    14869    887    2015-05-11 12:15:37    2015-05-11 12:15:37    1
3773    Beard ethical vinegar chillwave. Pbr&b dreamcatcher polaroid. Direct trade hella poutine 3 wolf moon actually venmo.    15594    845    2015-08-05 23:03:35    2015-08-05 23:03:35    1
3774    Disrupt pickled franzen normcore goth gastropub retro food truck. Post-ironic disrupt sustainable hella kombucha vinegar raw denim. Put a bird on it direct trade pinterest health.    10342    697    2016-03-26 11:02:08    2016-03-26 11:02:08    1
3775    Poutine knausgaard banh mi lo-fi tofu. Authentic helvetica wayfarers meggings. Taxidermy freegan shabby chic. Chillwave 8-bit post-ironic fingerstache lomo park gastropub cold-pressed. Blog wolf vegan.    10893    547    2016-03-07 06:03:24    2016-03-07 06:03:24    1
3776    Whatever irony cliche. Williamsburg banjo single-origin coffee cornhole vinyl quinoa kombucha. Fanny pack freegan artisan brunch mustache 90's you probably haven't heard of them chicharrones.    13270    719    2015-11-24 23:20:45    2015-11-24 23:20:45    1
3777    Chartreuse aesthetic meggings neutra marfa. Meh beard keytar brunch 8-bit gentrify wes anderson goth. Ethical mumblecore cardigan green juice. Everyday cronut dreamcatcher.    18010    489    2015-12-26 03:32:00    2015-12-26 03:32:00    1
3778    Franzen tilde drinking normcore chia banh mi. Cred 3 wolf moon scenester. Stumptown hella raw denim. Pitchfork echo cleanse. Kickstarter meggings tacos selvage hammock.    17717    883    2015-11-02 02:51:47    2015-11-02 02:51:47    1
3779    Umami scenester tacos flannel keytar. Church-key venmo literally fixie twee pbr&b sartorial ennui. Meggings slow-carb skateboard chia.    14530    807    2015-09-26 15:12:26    2015-09-26 15:12:26    1
3781    Squid raw denim schlitz drinking kogi. Tote bag pinterest flexitarian quinoa. Shabby chic twee actually scenester forage. Trust fund hammock kitsch farm-to-table slow-carb poutine.    13387    704    2016-03-25 02:38:15    2016-03-25 02:38:15    1
3782    Umami migas small batch organic shoreditch fanny pack post-ironic put a bird on it. Bicycle rights goth disrupt poutine ethical. Cornhole readymade messenger bag venmo. Williamsburg park bicycle rights drinking. Pabst street hella vegan diy.    15077    764    2015-08-10 14:25:53    2015-08-10 14:25:53    1
3783    Austin cred dreamcatcher sartorial tattooed cleanse brunch green juice. Kogi swag 3 wolf moon roof lo-fi cornhole pickled bespoke. Seitan gentrify locavore readymade ennui kale chips mixtape.    17023    600    2016-02-04 21:56:56    2016-02-04 21:56:56    1
3784    Master hoodie fixie migas williamsburg offal. Viral skateboard cardigan paleo echo selvage hammock. Bespoke butcher salvia bicycle rights. Etsy post-ironic ramps.    13384    801    2016-01-22 03:37:34    2016-01-22 03:37:34    1
3785    Roof etsy pop-up deep v swag bespoke. Mlkshk master quinoa. Post-ironic synth keffiyeh selfies next level.    15711    613    2015-10-18 14:37:22    2015-10-18 14:37:22    1
3786    Hoodie fashion axe kinfolk you probably haven't heard of them flexitarian. Actually craft beer letterpress listicle freegan paleo fingerstache kombucha. Dreamcatcher blue bottle tacos pug ramps lomo truffaut kinfolk. Brooklyn butcher echo disrupt. Kombucha art party scenester williamsburg small batch tote bag stumptown narwhal.    18634    931    2015-09-20 17:55:34    2015-09-20 17:55:34    1
3787    Tacos ennui wes anderson vinegar. Try-hard seitan cornhole. Street pinterest godard roof ennui. Street intelligentsia listicle church-key occupy ethical.    10333    692    2016-01-27 19:52:44    2016-01-27 19:52:44    1
3788    Tote bag try-hard lomo cold-pressed asymmetrical tousled. Hammock cliche neutra humblebrag photo booth. Carry tumblr meditation bitters 90's viral. Organic iphone biodiesel stumptown. Trust fund celiac kombucha sriracha lumbersexual church-key tumblr 8-bit.    15647    504    2015-05-16 08:11:08    2015-05-16 08:11:08    1
3789    Lumbersexual skateboard aesthetic authentic five dollar toast mustache. Pbr&b salvia pug humblebrag bespoke. Next level waistcoat vinyl truffaut plaid.    12612    514    2015-04-27 16:05:24    2015-04-27 16:05:24    1
3790    Intelligentsia vinegar swag meggings carry. Synth echo church-key banh mi mlkshk shoreditch. Carry yolo meggings neutra kitsch beard. Leggings cray gentrify selfies. Carry plaid gastropub venmo.    10160    642    2015-06-03 21:43:48    2015-06-03 21:43:48    1
3791    Cronut poutine health vinegar gentrify. Street fanny pack paleo lumbersexual selvage whatever small batch banjo. Paleo pinterest pour-over scenester. Celiac mustache normcore mlkshk. Health gluten-free normcore.    18618    815    2015-05-02 11:32:11    2015-05-02 11:32:11    1
3792    Vinegar readymade mlkshk umami mixtape fingerstache. Bicycle rights ugh try-hard yr mumblecore you probably haven't heard of them five dollar toast microdosing. Hella waistcoat authentic flexitarian etsy. Blog mustache bicycle rights umami venmo whatever. Park seitan letterpress mustache polaroid sriracha skateboard wayfarers.    12491    512    2015-09-02 21:47:26    2015-09-02 21:47:26    1
3793    Diy shoreditch sriracha vice. Salvia everyday fixie. Vegan loko ennui lo-fi intelligentsia. Celiac pabst authentic forage vhs church-key. Small batch xoxo normcore.    13627    594    2015-09-22 21:36:23    2015-09-22 21:36:23    1
3794    Selfies brunch bicycle rights lumbersexual chillwave vinyl pickled five dollar toast. Mlkshk ennui yolo. Typewriter fanny pack venmo meggings bushwick chicharrones trust fund. Tote bag blog leggings cornhole. Celiac leggings swag kogi seitan iphone.    17312    573    2015-07-03 14:00:54    2015-07-03 14:00:54    1
3795    Marfa organic scenester tofu park truffaut banh mi. Mlkshk 3 wolf moon migas pour-over +1 crucifix cornhole deep v. Green juice kitsch before they sold out. Gentrify venmo irony street.    17871    784    2015-12-04 11:14:28    2015-12-04 11:14:28    1
3797    Disrupt listicle cray. Tilde five dollar toast kale chips banjo cronut. Green juice lumbersexual blog raw denim. Farm-to-table 90's neutra fingerstache carry pug seitan.    10029    924    2015-08-05 08:16:10    2015-08-05 08:16:10    1
3798    Art party banh mi ramps swag fixie normcore pug. Vhs umami marfa kale chips food truck pitchfork yr you probably haven't heard of them. Intelligentsia 3 wolf moon ramps keffiyeh.    17694    582    2015-12-01 02:39:39    2015-12-01 02:39:39    1
3799    Kitsch everyday cardigan pour-over cliche lomo truffaut fap. Next level readymade ramps narwhal. Raw denim retro waistcoat meditation selfies pug park food truck.    17278    549    2015-11-25 23:00:28    2015-11-25 23:00:28    1
3800    Mixtape jean shorts health. Green juice art party cardigan. Lo-fi mlkshk drinking. Messenger bag normcore forage lomo cornhole paleo. Chicharrones kogi quinoa craft beer selvage ennui.    18156    793    2015-07-08 07:47:50    2015-07-08 07:47:50    1
3802    Normcore lo-fi farm-to-table church-key single-origin coffee gastropub. Poutine goth swag cardigan brooklyn. Kinfolk echo bushwick bitters post-ironic. Trust fund roof tofu leggings.    16017    711    2015-07-01 17:00:04    2015-07-01 17:00:04    1
3803    Chia narwhal portland. +1 wayfarers brooklyn salvia chia authentic keytar. Celiac bicycle rights green juice truffaut kinfolk heirloom kogi ramps.    13365    793    2015-08-14 14:48:02    2015-08-14 14:48:02    1
3804    Schlitz church-key asymmetrical echo. Cold-pressed tousled slow-carb park deep v. Pop-up knausgaard salvia celiac church-key tousled distillery tilde. Wes anderson carry bitters.    11639    565    2015-11-19 16:19:14    2015-11-19 16:19:14    1
3805    Tacos everyday kinfolk pickled. Thundercats mumblecore tilde hashtag. Cornhole vice lomo. 90's neutra messenger bag offal meh.    16490    594    2015-10-29 16:24:16    2015-10-29 16:24:16    1
3806    Etsy pitchfork craft beer hashtag. Keytar mustache you probably haven't heard of them occupy leggings next level. 3 wolf moon tumblr dreamcatcher.    18908    716    2016-02-28 00:04:19    2016-02-28 00:04:19    1
3807    Kickstarter vinyl lo-fi. Intelligentsia microdosing celiac listicle kombucha. Mumblecore everyday banjo. Typewriter cray gluten-free disrupt paleo leggings.    11829    545    2015-10-12 20:49:10    2015-10-12 20:49:10    1
3808    Scenester cardigan everyday pinterest pitchfork. Selvage green juice neutra street listicle chambray. Tilde semiotics narwhal wayfarers. Thundercats microdosing seitan.    14562    870    2016-03-25 12:19:23    2016-03-25 12:19:23    1
3809    Single-origin coffee lumbersexual carry church-key retro pinterest fixie small batch. Flexitarian heirloom vinyl green juice twee dreamcatcher hoodie. Microdosing pabst green juice chambray deep v flannel.    18917    891    2015-07-06 11:14:35    2015-07-06 11:14:35    1
3811    Flexitarian before they sold out chia tumblr. Meditation marfa pop-up artisan deep v messenger bag carry. Sustainable fashion axe pop-up.    10739    562    2015-05-22 22:22:33    2015-05-22 22:22:33    1
3812    Meditation pitchfork whatever. Brunch bespoke brooklyn leggings asymmetrical vinyl. Roof food truck biodiesel crucifix 90's blog typewriter ramps. Mumblecore bitters xoxo tilde diy austin.    11177    548    2015-08-23 13:57:55    2015-08-23 13:57:55    1
3813    Tofu actually ethical. Whatever tote bag meditation polaroid chia. Dreamcatcher vinyl diy cornhole lo-fi vinegar fap.    11680    845    2016-03-21 23:53:06    2016-03-21 23:53:06    1
3814    Letterpress quinoa skateboard ugh shoreditch tattooed retro. Etsy banjo microdosing tumblr. Put a bird on it chia authentic small batch. Mumblecore squid intelligentsia mlkshk. Asymmetrical gluten-free cronut fashion axe ethical keffiyeh chicharrones.    11697    748    2015-07-08 20:58:44    2015-07-08 20:58:44    1
3815    Pickled lumbersexual slow-carb ugh quinoa chia raw denim. Tousled selvage mustache cred wayfarers salvia freegan beard. You probably haven't heard of them lumbersexual post-ironic pbr&b goth. Tote bag 90's salvia hammock echo yuccie pickled.    16786    784    2015-08-03 17:38:40    2015-08-03 17:38:40    1
3816    Listicle direct trade organic art party kitsch keffiyeh green juice. Kinfolk blog williamsburg knausgaard portland pork belly. You probably haven't heard of them organic disrupt kale chips xoxo roof.    14455    870    2015-05-19 12:30:04    2015-05-19 12:30:04    1
3817    Aesthetic crucifix knausgaard skateboard. Scenester sartorial drinking cliche. Helvetica shabby chic post-ironic yuccie butcher fixie.    13894    785    2015-08-05 20:38:32    2015-08-05 20:38:32    1
3818    Paleo craft beer actually hammock viral taxidermy yuccie 8-bit. 90's tilde forage shoreditch raw denim +1 taxidermy. Tacos chillwave disrupt sartorial.    17525    658    2015-05-12 15:22:01    2015-05-12 15:22:01    1
3819    +1 wes anderson vice flexitarian ennui butcher. Bicycle rights synth freegan kale chips hammock polaroid. Fingerstache kombucha mustache celiac iphone. Kale chips keffiyeh marfa squid kinfolk flannel pabst. Truffaut aesthetic hoodie poutine vhs mixtape next level 90's.    17423    589    2015-09-25 02:51:13    2015-09-25 02:51:13    1
3820    Sustainable salvia pug cliche yr forage. Before they sold out mlkshk readymade locavore letterpress occupy. Cred mlkshk cliche thundercats godard viral hammock bicycle rights. Poutine gentrify literally kogi goth. Pork belly chartreuse aesthetic sriracha iphone humblebrag vinyl gastropub.    18192    465    2015-11-17 12:51:36    2015-11-17 12:51:36    1
3821    Irony fashion axe kickstarter trust fund pour-over ugh put a bird on it. Etsy next level tacos fingerstache. Food truck put a bird on it tacos dreamcatcher green juice austin marfa. Bicycle rights stumptown schlitz irony ugh disrupt. Shabby chic post-ironic before they sold out selfies.    14061    863    2015-05-23 21:26:36    2015-05-23 21:26:36    1
3947    Farm-to-table readymade asymmetrical godard actually ethical tote bag lomo. Plaid etsy chartreuse helvetica flannel. Meditation yr cornhole.    11370    787    2016-01-23 03:38:14    2016-01-23 03:38:14    1
3822    Quinoa selfies mumblecore authentic wes anderson. Paleo offal food truck cleanse sustainable selfies. You probably haven't heard of them pour-over flexitarian. Chartreuse messenger bag shabby chic venmo cray salvia artisan.    11579    510    2015-12-14 13:50:18    2015-12-14 13:50:18    1
3823    Schlitz heirloom butcher scenester. Try-hard synth portland food truck fixie artisan. Mumblecore chia bespoke chambray chartreuse heirloom food truck locavore. Park celiac 3 wolf moon selfies brooklyn skateboard chillwave ramps.    11586    919    2016-02-04 10:38:59    2016-02-04 10:38:59    1
3824    Mlkshk actually cliche flexitarian. Flexitarian cornhole twee cronut health. Sustainable ennui blue bottle cornhole carry.    11910    673    2015-12-28 01:02:11    2015-12-28 01:02:11    1
3825    Shoreditch mlkshk venmo vice pinterest park. Hashtag vhs swag waistcoat vice. Neutra truffaut fap polaroid ramps pug post-ironic five dollar toast. Hashtag xoxo austin iphone bespoke. Crucifix vinegar artisan heirloom.    17715    524    2015-07-13 16:47:26    2015-07-13 16:47:26    1
3826    Everyday chartreuse mlkshk xoxo. Mumblecore hammock pickled kickstarter banjo listicle biodiesel. Pour-over craft beer single-origin coffee organic.    15422    725    2015-07-22 17:20:08    2015-07-22 17:20:08    1
3827    Heirloom locavore ennui small batch pabst crucifix. Church-key blue bottle mlkshk diy intelligentsia. Hashtag heirloom mustache diy polaroid chillwave. Literally marfa direct trade. Venmo gastropub vhs.    12269    893    2016-01-10 04:29:33    2016-01-10 04:29:33    1
3829    Pitchfork fingerstache kickstarter synth distillery neutra. Skateboard brooklyn tofu farm-to-table distillery. Migas microdosing bitters readymade williamsburg. Pabst seitan 8-bit five dollar toast. Before they sold out disrupt meggings pug helvetica.    17802    887    2015-08-15 05:29:16    2015-08-15 05:29:16    1
3830    Narwhal gluten-free bespoke banh mi leggings. Next level brunch green juice bespoke banh mi. Vegan before they sold out celiac xoxo. Messenger bag twee echo ramps listicle cred.    14598    771    2016-03-02 09:13:44    2016-03-02 09:13:44    1
3832    Drinking pickled forage vhs hella schlitz bespoke. Yr everyday single-origin coffee lo-fi fingerstache williamsburg. Diy food truck pork belly meggings cornhole authentic.    12978    546    2015-08-24 05:55:32    2015-08-24 05:55:32    1
3833    Typewriter fap yolo yuccie kombucha messenger bag pinterest readymade. Gastropub tousled tattooed. Taxidermy artisan +1 blog meh.    10670    583    2015-08-05 22:48:34    2015-08-05 22:48:34    1
3834    Chillwave single-origin coffee +1 skateboard vinyl vinegar butcher. Letterpress paleo before they sold out shabby chic skateboard franzen. You probably haven't heard of them brunch squid blue bottle thundercats direct trade shabby chic. Chicharrones intelligentsia tattooed listicle small batch yolo stumptown.    11195    923    2016-04-17 15:59:51    2016-04-17 15:59:51    1
3835    Keytar health meh pabst gentrify pbr&b. Asymmetrical diy fingerstache readymade chicharrones park. Occupy hoodie beard 90's. Vinyl deep v fap food truck gastropub portland messenger bag.    10750    467    2015-10-17 18:52:25    2015-10-17 18:52:25    1
3836    Tote bag beard mixtape tousled offal craft beer fanny pack. Chartreuse flexitarian street taxidermy bushwick 90's slow-carb tattooed. Street chia pop-up.    11207    715    2015-05-09 08:21:57    2015-05-09 08:21:57    1
3837    Fixie goth yolo everyday. Retro pbr&b poutine 3 wolf moon. Poutine chartreuse actually wes anderson flexitarian farm-to-table kogi. Wes anderson butcher goth hashtag brooklyn helvetica vhs typewriter. Blue bottle post-ironic offal tattooed godard pinterest.    11881    591    2015-08-04 13:20:37    2015-08-04 13:20:37    1
3838    Deep v typewriter mlkshk vhs. Franzen schlitz marfa bespoke letterpress hammock lumbersexual. Actually typewriter blog jean shorts bespoke viral food truck lumbersexual. 3 wolf moon polaroid wayfarers vhs. Health pop-up vegan ramps pabst hammock.    16540    933    2015-08-08 00:37:39    2015-08-08 00:37:39    1
3839    Freegan distillery cleanse kombucha cold-pressed quinoa. Vhs fap semiotics. Banh mi brooklyn post-ironic irony keytar echo.    16853    500    2015-04-22 21:47:41    2015-04-22 21:47:41    1
3840    Sartorial master keytar actually. Gentrify pour-over bushwick hashtag. Retro seitan listicle taxidermy drinking kitsch goth authentic. Flannel cold-pressed fingerstache. Yuccie farm-to-table synth art party chia franzen.    15020    933    2016-02-03 13:38:29    2016-02-03 13:38:29    1
3841    Marfa kickstarter austin master. Cold-pressed carry crucifix migas selvage salvia gentrify pickled. Authentic umami hammock post-ironic celiac meggings you probably haven't heard of them pbr&b. Lomo bitters pabst aesthetic.    15422    873    2016-01-19 19:59:13    2016-01-19 19:59:13    1
3842    Trust fund dreamcatcher cronut truffaut freegan. Literally pickled pinterest yr occupy humblebrag. Try-hard seitan keffiyeh twee.    16964    857    2015-06-02 14:05:32    2015-06-02 14:05:32    1
3843    Diy knausgaard neutra art party waistcoat mlkshk. Listicle wayfarers typewriter kale chips microdosing mustache. Vice whatever forage artisan cliche xoxo locavore. Food truck typewriter cred pickled dreamcatcher polaroid kogi. Chartreuse skateboard trust fund goth synth shoreditch sartorial 3 wolf moon.    10680    728    2015-12-07 12:24:56    2015-12-07 12:24:56    1
3844    Yolo readymade letterpress cliche hashtag. Cardigan celiac venmo lomo kombucha chambray. Mustache vhs direct trade listicle. Post-ironic pop-up listicle sartorial fixie +1. Venmo selfies normcore wayfarers blue bottle.    10849    565    2016-01-19 03:34:44    2016-01-19 03:34:44    1
3845    Farm-to-table iphone meggings lomo synth green juice lo-fi readymade. Cliche carry mlkshk pinterest. Blog readymade typewriter scenester humblebrag food truck. Offal cred yolo. Tattooed fashion axe heirloom master helvetica.    14206    950    2016-01-06 19:28:28    2016-01-06 19:28:28    1
3846    Small batch wolf green juice cleanse kogi tofu pitchfork. Bushwick lumbersexual hashtag tousled vhs. Wayfarers carry organic cred photo booth. Pitchfork umami everyday normcore lo-fi leggings.    17235    908    2015-11-06 21:07:33    2015-11-06 21:07:33    1
3847    Meggings deep v synth polaroid. Quinoa loko lo-fi. Celiac offal forage mixtape fanny pack.    17360    532    2016-03-17 11:07:16    2016-03-17 11:07:16    1
3848    Everyday mixtape kinfolk. You probably haven't heard of them knausgaard seitan thundercats. Scenester mumblecore vinyl kitsch echo pbr&b. Gentrify tofu butcher tacos green juice. Blog +1 brunch vegan knausgaard twee post-ironic.    18423    827    2015-08-01 22:17:39    2015-08-01 22:17:39    1
3849    Squid godard you probably haven't heard of them vice. Trust fund semiotics park art party. Tilde post-ironic park street. Cardigan hoodie pork belly. Yuccie salvia twee gastropub small batch dreamcatcher.    14058    591    2016-03-23 16:56:26    2016-03-23 16:56:26    1
3850    Cardigan taxidermy austin. Tofu park meh. Craft beer art party plaid butcher 8-bit chicharrones raw denim.    12135    572    2016-03-21 13:46:09    2016-03-21 13:46:09    1
3851    Helvetica ennui tacos godard waistcoat quinoa franzen. Synth street salvia carry hashtag biodiesel actually put a bird on it. Tote bag kinfolk vinyl gastropub leggings kitsch vhs. Gentrify organic blog ennui portland 8-bit.    16894    790    2015-07-26 00:36:15    2015-07-26 00:36:15    1
3852    Cardigan carry 8-bit craft beer meditation shoreditch. Asymmetrical fashion axe echo cardigan 3 wolf moon. Pabst actually loko tilde pour-over next level. Heirloom pickled try-hard.    14335    664    2015-10-08 04:41:06    2015-10-08 04:41:06    1
3853    Shoreditch quinoa selfies. Fixie wayfarers literally paleo you probably haven't heard of them venmo hella synth. Cold-pressed squid brooklyn pickled carry pour-over dreamcatcher.    13804    663    2015-06-17 06:33:05    2015-06-17 06:33:05    1
3855    Chartreuse mlkshk disrupt loko vegan freegan. Trust fund pickled street raw denim letterpress church-key freegan wolf. Flexitarian semiotics hoodie hella. Echo actually raw denim. Mlkshk pork belly next level disrupt messenger bag locavore lumbersexual skateboard.    18921    704    2016-03-17 21:53:14    2016-03-17 21:53:14    1
3856    Fap church-key kombucha pickled leggings. Yuccie waistcoat iphone lumbersexual sustainable austin gluten-free. Organic pbr&b waistcoat fashion axe deep v occupy hammock. Semiotics asymmetrical mlkshk. Messenger bag locavore kinfolk single-origin coffee before they sold out.    13137    670    2015-12-13 12:42:46    2015-12-13 12:42:46    1
3857    Kogi flexitarian 90's. Ugh vice lomo meditation butcher aesthetic viral bitters. 8-bit post-ironic celiac kale chips schlitz pbr&b echo stumptown.    10781    794    2016-01-23 14:15:23    2016-01-23 14:15:23    1
3858    Blue bottle mixtape health. Chillwave cardigan offal tofu craft beer. Cold-pressed waistcoat fixie wolf brunch mixtape everyday listicle.    13274    809    2015-07-03 22:15:01    2015-07-03 22:15:01    1
3859    Migas bespoke post-ironic chillwave tote bag. Blue bottle ramps keytar bushwick shabby chic chartreuse art party letterpress. Offal vinegar small batch neutra intelligentsia twee beard bicycle rights.    12344    616    2015-10-16 08:48:57    2015-10-16 08:48:57    1
3860    Gentrify marfa offal. Five dollar toast put a bird on it vice kitsch roof. Post-ironic etsy art party.    18874    804    2015-11-07 00:01:32    2015-11-07 00:01:32    1
3861    Actually sriracha sustainable trust fund occupy pbr&b whatever pop-up. Authentic selfies helvetica cronut chicharrones iphone kitsch cleanse. Cred 90's pork belly vhs yolo hella. Poutine next level chartreuse cardigan bespoke iphone taxidermy. Truffaut meggings +1 art party celiac.    17306    478    2016-02-19 22:09:11    2016-02-19 22:09:11    1
3863    Mumblecore dreamcatcher paleo viral small batch. Forage pbr&b bicycle rights. Quinoa lo-fi heirloom meh.    11651    639    2016-03-03 11:52:15    2016-03-03 11:52:15    1
3864    Banh mi vinegar paleo sartorial shabby chic banjo raw denim 90's. Irony ugh offal heirloom retro. Blue bottle yr hashtag. Brooklyn wolf knausgaard.    12759    792    2015-07-02 03:21:57    2015-07-02 03:21:57    1
3865    Slow-carb fanny pack wolf. Church-key freegan narwhal tilde diy forage bushwick. Taxidermy kogi ennui biodiesel tousled fap meditation.    14002    687    2015-08-17 11:42:38    2015-08-17 11:42:38    1
3866    Paleo pitchfork craft beer. Listicle ugh williamsburg pickled quinoa mlkshk lo-fi narwhal. Slow-carb aesthetic thundercats listicle vhs banh mi locavore photo booth.    16173    676    2015-10-18 12:24:04    2015-10-18 12:24:04    1
3867    Pickled brunch scenester narwhal 8-bit. Franzen hashtag mixtape quinoa. Cardigan viral poutine meditation lo-fi literally meh 90's.    11391    770    2015-05-10 19:35:46    2015-05-10 19:35:46    1
3868    Yr hammock hoodie xoxo bitters quinoa retro. Austin 90's crucifix lomo xoxo skateboard carry dreamcatcher. Etsy bicycle rights cold-pressed 8-bit sustainable gentrify. Scenester kinfolk cornhole cray kitsch food truck kale chips. Truffaut chartreuse tote bag etsy everyday lomo 8-bit.    12998    516    2016-02-09 04:03:51    2016-02-09 04:03:51    1
3869    Shabby chic knausgaard trust fund flexitarian thundercats blue bottle helvetica. Beard banh mi ethical brooklyn celiac. Knausgaard chambray beard health readymade.    18303    484    2015-11-18 00:21:43    2015-11-18 00:21:43    1
3870    Vegan semiotics biodiesel typewriter meggings bushwick. Umami leggings flexitarian pinterest marfa trust fund selvage tacos. Master chartreuse fanny pack schlitz.    10832    737    2016-01-16 21:17:20    2016-01-16 21:17:20    1
3871    Cold-pressed trust fund selfies typewriter thundercats plaid heirloom. Mumblecore narwhal 8-bit retro synth forage. 3 wolf moon pug synth. Sartorial roof direct trade kale chips ugh drinking tacos. Etsy deep v selfies direct trade green juice chia.    16401    587    2015-12-13 14:23:06    2015-12-13 14:23:06    1
3873    Keytar messenger bag cardigan deep v. Keytar bicycle rights banjo. Vice etsy tousled paleo flexitarian park selvage deep v. Knausgaard meditation kinfolk truffaut.    14977    506    2015-08-01 18:36:25    2015-08-01 18:36:25    1
3875    You probably haven't heard of them cred bespoke drinking tote bag. Hoodie tousled marfa iphone slow-carb. Microdosing five dollar toast fashion axe stumptown normcore sartorial.    13702    745    2015-06-26 23:11:33    2015-06-26 23:11:33    1
3876    Flannel goth aesthetic. Vice cronut blog cardigan keffiyeh. Brunch biodiesel authentic.    13648    823    2015-11-27 16:51:40    2015-11-27 16:51:40    1
3877    Trust fund chillwave seitan venmo. Tofu umami normcore bicycle rights meggings master. Vhs carry vinyl stumptown pour-over freegan intelligentsia.    18570    563    2015-08-23 16:41:04    2015-08-23 16:41:04    1
3878    Shabby chic cronut hammock chillwave flannel semiotics. Photo booth bespoke taxidermy tote bag messenger bag. Biodiesel fingerstache park try-hard dreamcatcher cred.    15851    900    2015-07-05 10:47:44    2015-07-05 10:47:44    1
3879    Chillwave swag gentrify tofu heirloom readymade art party scenester. Distillery whatever beard selfies dreamcatcher sustainable. Typewriter tote bag occupy. Truffaut photo booth kinfolk goth semiotics pour-over. Microdosing post-ironic gastropub hella brunch chillwave tousled dreamcatcher.    18893    894    2015-11-18 17:43:41    2015-11-18 17:43:41    1
3880    Wayfarers pitchfork viral church-key vinyl pinterest truffaut franzen. Forage lo-fi fashion axe ramps gentrify dreamcatcher. Tacos normcore chillwave blue bottle.    17113    545    2015-11-06 04:40:20    2015-11-06 04:40:20    1
3881    90's beard xoxo next level skateboard disrupt flannel craft beer. Salvia shoreditch chambray yr chillwave. Artisan kogi retro vegan keytar helvetica synth. Umami polaroid cliche fingerstache kogi. Heirloom try-hard letterpress austin sriracha kale chips plaid.    16418    522    2015-07-27 04:12:14    2015-07-27 04:12:14    1
3882    Intelligentsia chartreuse gluten-free wolf pinterest lo-fi. Waistcoat locavore dreamcatcher tattooed art party authentic. Venmo wayfarers marfa. Heirloom organic flannel sustainable tofu bitters.    11212    926    2016-03-30 10:09:38    2016-03-30 10:09:38    1
3883    Organic plaid meditation meh put a bird on it. Shabby chic neutra master park plaid. Lomo readymade before they sold out wayfarers pabst flannel. Pork belly synth scenester. Small batch pork belly cronut ramps selfies biodiesel etsy.    11851    558    2015-08-16 16:25:28    2015-08-16 16:25:28    1
3884    Normcore artisan before they sold out trust fund. Church-key lomo vhs kinfolk mumblecore pabst leggings. Cardigan direct trade truffaut fixie. Tofu kogi sustainable mustache williamsburg.    13288    960    2015-07-26 17:53:43    2015-07-26 17:53:43    1
4109    Stumptown craft beer migas wolf. Scenester vhs banjo five dollar toast. Goth cliche jean shorts.    14359    474    2016-04-08 09:24:14    2016-04-08 09:24:14    1
3885    Photo booth swag neutra tousled offal salvia whatever master. Tumblr schlitz kickstarter occupy typewriter cray marfa pitchfork. Kickstarter truffaut meggings offal ugh green juice cliche. Normcore fanny pack semiotics aesthetic etsy kogi. Squid keffiyeh mixtape mumblecore lomo.    12263    508    2015-09-24 06:31:16    2015-09-24 06:31:16    1
3886    Yr shabby chic tofu forage yuccie. Keytar etsy jean shorts master. Narwhal tote bag pickled.    17743    676    2016-01-02 16:49:36    2016-01-02 16:49:36    1
3887    Wes anderson portland flexitarian swag. Flannel selvage selfies venmo authentic distillery. Church-key lumbersexual organic cliche chillwave humblebrag. Trust fund schlitz fashion axe distillery bitters hammock. Neutra five dollar toast blue bottle retro keffiyeh tacos selvage chartreuse.    15951    684    2016-03-22 04:23:35    2016-03-22 04:23:35    1
3888    Schlitz goth hoodie disrupt. Narwhal health biodiesel. Swag chia banh mi cleanse waistcoat wayfarers. Wolf pinterest helvetica. Lomo meh before they sold out umami viral etsy keytar pour-over.    17310    791    2015-07-21 05:15:33    2015-07-21 05:15:33    1
3889    Pickled brooklyn typewriter kickstarter direct trade keffiyeh five dollar toast. Fap ugh artisan shoreditch celiac normcore bespoke. Kale chips carry actually cred pork belly try-hard wes anderson. Craft beer occupy kitsch post-ironic sriracha pug.    13460    825    2015-10-20 11:37:07    2015-10-20 11:37:07    1
3890    Twee umami five dollar toast truffaut wes anderson wolf mustache food truck. Bicycle rights actually microdosing kinfolk vhs pbr&b. Raw denim pbr&b scenester polaroid. Raw denim viral normcore neutra loko hammock. Crucifix normcore schlitz.    17024    527    2015-10-20 09:41:57    2015-10-20 09:41:57    1
3891    Thundercats pickled keffiyeh goth. Lumbersexual +1 microdosing. Literally austin tofu meggings. Gastropub bushwick carry health food truck retro bicycle rights cliche.    10439    644    2015-05-13 12:48:30    2015-05-13 12:48:30    1
3892    Put a bird on it cred church-key truffaut street deep v asymmetrical. Drinking chillwave knausgaard. Williamsburg stumptown offal. Brunch everyday street mustache yuccie.    13284    789    2015-10-18 13:15:05    2015-10-18 13:15:05    1
3894    Try-hard umami bushwick cleanse seitan offal. Intelligentsia shoreditch squid shabby chic raw denim. Loko deep v banh mi hella chartreuse pug tofu authentic.    15278    694    2015-05-22 09:20:19    2015-05-22 09:20:19    1
3895    Before they sold out street mixtape occupy. Tote bag keytar put a bird on it tattooed. Food truck vegan humblebrag. Semiotics blog artisan vinegar single-origin coffee beard goth. Literally brooklyn drinking cornhole pitchfork sriracha.    16502    787    2015-05-02 00:04:12    2015-05-02 00:04:12    1
3896    Tousled cliche migas next level kale chips ethical. Single-origin coffee listicle franzen wayfarers hoodie cardigan forage slow-carb. Waistcoat vinegar yuccie. Distillery next level cornhole green juice fingerstache.    12322    639    2015-05-22 13:59:53    2015-05-22 13:59:53    1
3897    Roof try-hard pickled pug. Five dollar toast kogi artisan helvetica. Skateboard ennui godard vegan disrupt. Occupy whatever ugh farm-to-table.    10986    567    2015-09-25 00:35:13    2015-09-25 00:35:13    1
3899    Keytar readymade pickled cray. Flannel kinfolk you probably haven't heard of them shoreditch skateboard etsy dreamcatcher. Pabst hoodie master.    18626    613    2015-12-22 04:48:47    2015-12-22 04:48:47    1
3900    Etsy yr salvia you probably haven't heard of them roof flannel. Gentrify offal raw denim pour-over bicycle rights. Iphone meditation hella. Blue bottle direct trade fanny pack hashtag.    13777    871    2016-02-20 01:43:54    2016-02-20 01:43:54    1
3901    Meh bespoke health. Gluten-free narwhal polaroid health. Hella kogi bushwick swag shabby chic ennui austin lomo. Post-ironic park trust fund bitters single-origin coffee. Bicycle rights pabst slow-carb poutine messenger bag church-key chia artisan.    15574    722    2015-10-05 13:31:54    2015-10-05 13:31:54    1
3902    Literally hashtag gluten-free squid. Green juice sriracha scenester bicycle rights xoxo seitan twee. Goth normcore blue bottle chia. Biodiesel next level scenester pinterest waistcoat knausgaard.    13051    637    2016-02-06 14:30:34    2016-02-06 14:30:34    1
3905    Chambray vice chillwave thundercats vegan. Everyday skateboard 90's. Sartorial hammock kickstarter.    11935    874    2015-12-17 08:40:39    2015-12-17 08:40:39    1
3906    Master pour-over kombucha salvia diy tilde jean shorts cardigan. Tilde cold-pressed viral irony street schlitz put a bird on it. Bespoke truffaut lumbersexual wolf. Try-hard art party sartorial shoreditch. Cornhole pour-over aesthetic keffiyeh helvetica.    12527    863    2015-10-21 22:40:31    2015-10-21 22:40:31    1
3907    Chartreuse fashion axe pour-over post-ironic loko. Heirloom knausgaard vinyl neutra. Post-ironic semiotics street venmo cred kinfolk hoodie. Yuccie blue bottle poutine.    11765    859    2015-10-17 18:08:01    2015-10-17 18:08:01    1
3908    You probably haven't heard of them shoreditch poutine pbr&b whatever craft beer. Migas keffiyeh swag. Plaid small batch green juice waistcoat.    14080    700    2015-10-16 22:03:56    2015-10-16 22:03:56    1
3909    Brooklyn pug flexitarian echo offal goth forage. Chillwave fanny pack cleanse paleo chia slow-carb taxidermy. Selvage literally xoxo poutine actually.    18012    663    2015-11-03 00:28:08    2015-11-03 00:28:08    1
3910    Single-origin coffee typewriter tattooed crucifix gentrify five dollar toast synth skateboard. Dreamcatcher crucifix tumblr whatever brooklyn. Craft beer banjo bespoke next level. Hammock selfies paleo ethical you probably haven't heard of them food truck knausgaard. Ramps keffiyeh ugh chambray photo booth yolo.    15231    617    2015-08-14 16:27:19    2015-08-14 16:27:19    1
3912    Marfa taxidermy authentic lumbersexual shabby chic shoreditch truffaut. Ennui swag cliche cronut you probably haven't heard of them hammock freegan hella. Pitchfork 90's retro brooklyn vegan. Swag food truck vegan green juice iphone.    12292    584    2015-11-26 08:41:31    2015-11-26 08:41:31    1
3913    Bicycle rights franzen literally mumblecore. Etsy artisan viral whatever. Thundercats jean shorts keytar cleanse franzen kitsch. Pour-over tote bag fap polaroid salvia kombucha. Crucifix gentrify bicycle rights fingerstache post-ironic neutra sriracha.    12529    887    2016-02-19 12:00:14    2016-02-19 12:00:14    1
3914    Actually pug austin vice. Celiac bushwick swag pbr&b venmo pinterest. Banh mi actually cred cronut pork belly tofu meggings narwhal. Kogi austin vhs venmo. Plaid before they sold out etsy semiotics iphone +1.    18026    731    2016-03-17 22:06:20    2016-03-17 22:06:20    1
3915    Biodiesel tousled pug brunch paleo. Butcher schlitz street tumblr. Carry humblebrag fanny pack mixtape swag. Messenger bag actually roof. Ennui whatever yuccie lumbersexual hella.    18847    919    2015-10-25 03:39:48    2015-10-25 03:39:48    1
3916    Craft beer deep v mumblecore small batch photo booth stumptown ethical sriracha. Skateboard tote bag mustache thundercats cleanse. Shoreditch asymmetrical readymade paleo meggings squid listicle. Literally schlitz heirloom jean shorts paleo typewriter cleanse.    10833    954    2015-08-08 11:51:36    2015-08-08 11:51:36    1
3917    Godard small batch actually umami messenger bag selfies sriracha meggings. Gastropub wayfarers cardigan chillwave mumblecore offal williamsburg. Typewriter retro green juice.    11794    815    2016-04-04 07:21:40    2016-04-04 07:21:40    1
3918    Whatever plaid tattooed. Skateboard gluten-free pbr&b cliche whatever lo-fi. Ennui pour-over waistcoat irony pickled.    14193    749    2015-09-15 14:09:07    2015-09-15 14:09:07    1
3919    Yolo church-key authentic single-origin coffee pop-up freegan diy. Park brooklyn taxidermy semiotics pickled godard. Williamsburg chia diy bicycle rights yr. Hammock bushwick knausgaard. Cred goth retro biodiesel echo.    16624    813    2015-12-05 04:51:13    2015-12-05 04:51:13    1
3920    Banjo cronut wolf locavore keffiyeh. Waistcoat drinking viral thundercats deep v austin fanny pack. Chambray hashtag health ennui crucifix pabst. Yuccie jean shorts offal narwhal scenester yolo 8-bit hoodie.    16137    666    2015-07-23 12:28:43    2015-07-23 12:28:43    1
3921    Tilde shoreditch celiac tote bag aesthetic. Irony ethical helvetica. Pickled cornhole vhs craft beer tofu.    15434    615    2015-10-19 08:48:12    2015-10-19 08:48:12    1
3923    Biodiesel you probably haven't heard of them bespoke. Migas semiotics lumbersexual selfies goth gluten-free try-hard. Cardigan sustainable kombucha. Crucifix beard wayfarers mlkshk. Kitsch waistcoat street dreamcatcher fanny pack umami butcher.    13244    888    2015-09-12 04:29:52    2015-09-12 04:29:52    1
3924    Franzen fashion axe food truck wes anderson artisan try-hard. Quinoa cardigan wes anderson viral selfies ethical. Pickled vhs portland heirloom. Roof forage literally leggings blue bottle cray. Squid artisan pork belly mustache authentic gastropub irony ugh.    12468    479    2015-06-06 13:38:08    2015-06-06 13:38:08    1
3926    Heirloom everyday photo booth. Occupy tilde deep v yolo put a bird on it. Cold-pressed plaid hammock fanny pack banh mi knausgaard kogi marfa. Pinterest pabst paleo chillwave taxidermy brunch wayfarers shoreditch.    12875    634    2015-12-11 00:59:21    2015-12-11 00:59:21    1
3927    Craft beer xoxo irony schlitz migas cray. Brunch flannel tacos 3 wolf moon art party. Biodiesel seitan crucifix. Hammock banjo pug fashion axe franzen wayfarers.    14159    772    2015-12-04 08:30:05    2015-12-04 08:30:05    1
3997    Lumbersexual pabst polaroid shabby chic 90's aesthetic bitters. Celiac yolo vegan synth street kitsch. Scenester single-origin coffee vegan.    17235    749    2015-07-02 20:43:07    2015-07-02 20:43:07    1
3928    Authentic brooklyn cleanse flexitarian kombucha shabby chic sriracha offal. Art party synth lumbersexual kogi small batch. 8-bit helvetica occupy squid offal. Chambray humblebrag helvetica. Aesthetic cardigan jean shorts hoodie semiotics vhs letterpress.    10842    602    2015-05-17 15:05:25    2015-05-17 15:05:25    1
3929    Vinegar bespoke yuccie meditation actually. Dreamcatcher vhs messenger bag bushwick cornhole skateboard stumptown. Shoreditch crucifix tacos ethical thundercats pbr&b ramps paleo. Plaid cronut locavore biodiesel drinking. Kogi brooklyn meh normcore gastropub yr polaroid forage.    11338    852    2015-06-12 16:03:51    2015-06-12 16:03:51    1
3930    Pitchfork mlkshk umami kombucha. Pork belly artisan kitsch pour-over everyday heirloom. Cold-pressed 3 wolf moon artisan asymmetrical. Selfies hashtag jean shorts pabst marfa kombucha bespoke you probably haven't heard of them.    13491    746    2016-04-03 08:53:50    2016-04-03 08:53:50    1
3931    Raw denim cold-pressed small batch bespoke pork belly kale chips vinegar disrupt. Cardigan photo booth banjo roof microdosing +1 mustache dreamcatcher. Celiac hashtag post-ironic pop-up mustache.    13313    468    2015-05-31 02:09:25    2015-05-31 02:09:25    1
3932    Sartorial bitters quinoa truffaut. Plaid blog meggings goth echo pork belly. Wes anderson chia pug bitters shoreditch.    14663    589    2015-12-04 00:08:47    2015-12-04 00:08:47    1
3933    Hella cardigan etsy crucifix flannel ugh bushwick. Vegan etsy pabst pinterest. Art party heirloom 90's. Umami cleanse tote bag whatever leggings carry iphone.    17005    516    2015-06-19 02:42:26    2015-06-19 02:42:26    1
3934    Bitters viral celiac iphone leggings fashion axe. Waistcoat goth offal vhs meh tofu you probably haven't heard of them. Organic ennui marfa hoodie fap chambray tacos. Wayfarers tofu yolo 8-bit deep v butcher.    11006    813    2016-04-03 00:10:24    2016-04-03 00:10:24    1
3935    Venmo dreamcatcher tote bag pork belly. Master tilde paleo ugh direct trade trust fund iphone. Gentrify marfa jean shorts mumblecore tofu locavore echo. Humblebrag normcore knausgaard kale chips viral vinyl.    13816    882    2015-08-28 11:14:06    2015-08-28 11:14:06    1
3936    Lumbersexual narwhal vice typewriter freegan cliche kombucha flannel. Farm-to-table butcher gentrify. Vhs godard letterpress. Post-ironic mixtape migas. Pork belly synth heirloom swag.    14365    576    2016-02-20 19:43:35    2016-02-20 19:43:35    1
3937    Messenger bag kogi sriracha poutine gluten-free etsy synth. Gastropub waistcoat tote bag church-key ramps hella. Actually cleanse cold-pressed ennui food truck poutine. Vhs biodiesel readymade. Franzen sartorial scenester.    11746    709    2015-12-18 00:03:17    2015-12-18 00:03:17    1
3938    Shoreditch marfa chicharrones. Whatever pork belly 8-bit meh dreamcatcher. Ramps dreamcatcher xoxo 3 wolf moon. Dreamcatcher craft beer mlkshk selvage twee +1 squid.    10479    617    2015-12-06 01:58:46    2015-12-06 01:58:46    1
3940    Messenger bag 90's ramps whatever. Occupy pabst plaid aesthetic. Mixtape vegan hoodie godard shabby chic selfies pop-up.    15860    958    2015-12-28 03:53:22    2015-12-28 03:53:22    1
3941    Fingerstache chillwave authentic echo hoodie etsy. Yuccie art party selvage vice polaroid irony. Slow-carb tilde knausgaard. Meggings hella 8-bit yr paleo hashtag tousled chambray. Narwhal viral asymmetrical pabst offal.    10247    608    2016-02-01 10:42:23    2016-02-01 10:42:23    1
3942    Master scenester poutine cliche butcher pabst. Pour-over kombucha roof sriracha tofu. Next level yuccie vhs brunch shoreditch. Readymade etsy helvetica disrupt cleanse raw denim. +1 pug dreamcatcher.    13924    885    2016-02-26 02:03:33    2016-02-26 02:03:33    1
3943    Put a bird on it irony blog small batch banjo carry. Quinoa tacos hella diy kogi. Mixtape bespoke vhs master roof fashion axe art party.    15871    790    2015-12-09 03:41:20    2015-12-09 03:41:20    1
3944    Cleanse photo booth taxidermy pork belly master mustache hella paleo. Banjo locavore scenester. Bitters tilde quinoa.    18546    512    2015-09-06 11:38:08    2015-09-06 11:38:08    1
3946    Single-origin coffee butcher disrupt vinegar letterpress. Lo-fi wayfarers fixie beard farm-to-table shoreditch selvage. Yolo cleanse fingerstache post-ironic tousled. Tousled offal master loko goth.    16518    838    2015-09-17 02:34:29    2015-09-17 02:34:29    1
3948    Mixtape kogi leggings pickled typewriter before they sold out ramps kickstarter. Wolf kale chips literally cronut ugh. Direct trade vhs viral kogi chartreuse 3 wolf moon occupy.    16130    855    2016-02-14 22:14:32    2016-02-14 22:14:32    1
3949    Lumbersexual seitan cred fingerstache jean shorts helvetica try-hard. Tousled crucifix neutra kitsch deep v biodiesel. Letterpress tote bag beard seitan meggings shabby chic pitchfork pug. Street biodiesel kickstarter keffiyeh. Ennui farm-to-table blog irony pour-over small batch blue bottle beard.    17920    664    2015-11-21 22:05:45    2015-11-21 22:05:45    1
3950    Brunch dreamcatcher pug tousled chia twee. Mixtape occupy semiotics cleanse street authentic cold-pressed. Sartorial keffiyeh 3 wolf moon chambray franzen you probably haven't heard of them park kitsch. Knausgaard craft beer migas xoxo health slow-carb. Chartreuse disrupt next level godard salvia knausgaard selfies marfa.    17198    568    2015-08-25 09:13:14    2015-08-25 09:13:14    1
3952    Keffiyeh drinking hoodie you probably haven't heard of them fanny pack salvia distillery chicharrones. Sriracha swag church-key chia. Viral shoreditch pop-up paleo bitters whatever microdosing health. Salvia selfies blog schlitz health tattooed migas kickstarter. Hammock leggings iphone humblebrag.    17597    560    2016-02-04 12:12:36    2016-02-04 12:12:36    1
3953    Kale chips thundercats messenger bag readymade wayfarers. Blue bottle messenger bag marfa. Everyday kale chips iphone craft beer asymmetrical crucifix. Chillwave meditation vinyl diy williamsburg knausgaard plaid.    17213    610    2015-10-03 10:00:28    2015-10-03 10:00:28    1
3954    Typewriter bushwick green juice cliche drinking squid sriracha. 8-bit kitsch waistcoat. Listicle letterpress viral crucifix. Shabby chic master cred put a bird on it cleanse occupy.    13768    737    2015-06-18 02:47:10    2015-06-18 02:47:10    1
3955    Franzen small batch yolo echo mlkshk. Fashion axe ugh you probably haven't heard of them. Tacos taxidermy asymmetrical intelligentsia. Vice deep v ethical biodiesel wayfarers.    12977    846    2015-09-22 06:34:47    2015-09-22 06:34:47    1
3956    Bushwick small batch photo booth crucifix food truck gentrify. 8-bit leggings you probably haven't heard of them master next level quinoa ethical skateboard. Viral fixie butcher celiac letterpress schlitz goth. Mlkshk 90's hella salvia. Waistcoat neutra asymmetrical hella vice.    18654    752    2015-12-13 01:33:33    2015-12-13 01:33:33    1
3957    Bespoke salvia microdosing lo-fi. Artisan pop-up shabby chic wes anderson green juice. Flexitarian poutine waistcoat.    11759    495    2016-01-03 10:49:18    2016-01-03 10:49:18    1
3958    Letterpress next level heirloom crucifix. Occupy vinegar scenester leggings bitters chillwave vhs 3 wolf moon. Thundercats literally twee listicle 8-bit.    15172    947    2015-09-27 02:16:50    2015-09-27 02:16:50    1
3959    Cronut artisan yr tumblr tilde schlitz literally mumblecore. +1 try-hard bitters you probably haven't heard of them venmo irony slow-carb flexitarian. Ugh narwhal cred humblebrag single-origin coffee food truck actually. Vinegar bespoke craft beer selfies jean shorts helvetica.    15739    643    2015-12-08 02:53:30    2015-12-08 02:53:30    1
3960    Fashion axe taxidermy 8-bit single-origin coffee mlkshk tote bag. 3 wolf moon waistcoat kombucha artisan blog viral. Cray tattooed hella tumblr shabby chic pabst. Park vinegar small batch artisan pabst waistcoat. Keytar portland hoodie raw denim meggings flexitarian knausgaard asymmetrical.    11070    557    2015-06-25 20:37:53    2015-06-25 20:37:53    1
3961    Franzen sartorial pitchfork cold-pressed. Raw denim you probably haven't heard of them mlkshk yolo chartreuse squid deep v roof. Bitters waistcoat cred raw denim marfa mustache heirloom irony. Cold-pressed wayfarers intelligentsia literally craft beer. Blue bottle bicycle rights distillery semiotics schlitz.    16013    690    2015-09-06 07:29:59    2015-09-06 07:29:59    1
3962    Kale chips pitchfork chicharrones echo. Gentrify vinegar lumbersexual pork belly occupy franzen kogi park. Everyday polaroid next level ramps +1 master yuccie hoodie.    13432    672    2015-10-11 10:57:38    2015-10-11 10:57:38    1
3964    Brooklyn cornhole art party. Locavore cleanse polaroid. Tofu vice paleo. Wes anderson yr you probably haven't heard of them lumbersexual.    14223    745    2015-08-29 08:58:38    2015-08-29 08:58:38    1
3965    Vegan art party deep v lomo mixtape typewriter. Hoodie distillery brooklyn. Messenger bag flexitarian mlkshk photo booth chia tattooed. Microdosing swag chicharrones heirloom drinking.    15421    691    2015-10-08 06:08:48    2015-10-08 06:08:48    1
3966    Knausgaard letterpress kogi yuccie try-hard marfa. Leggings waistcoat shabby chic. Cold-pressed sartorial meh.    11932    870    2015-09-18 13:39:31    2015-09-18 13:39:31    1
3967    Iphone chambray locavore typewriter readymade. Beard drinking ennui synth park cleanse trust fund paleo. Celiac chia shoreditch.    16280    565    2015-12-30 10:28:53    2015-12-30 10:28:53    1
3968    Master occupy migas cold-pressed literally chillwave. Small batch listicle food truck. Goth trust fund whatever artisan tilde tousled flannel forage.    11523    666    2015-10-13 07:35:11    2015-10-13 07:35:11    1
3969    Health kitsch distillery tattooed marfa. Forage drinking twee fashion axe. Migas church-key kitsch hashtag carry leggings squid cronut.    11628    463    2015-09-26 20:20:17    2015-09-26 20:20:17    1
3970    Pop-up poutine artisan marfa readymade scenester drinking tumblr. Mumblecore letterpress fashion axe whatever art party organic gluten-free locavore. Hoodie keytar forage. Fanny pack raw denim vinegar.    12332    532    2015-11-11 02:22:06    2015-11-11 02:22:06    1
3971    Keytar bushwick pabst offal pitchfork tofu. Neutra vinegar cold-pressed williamsburg letterpress. Goth pork belly taxidermy narwhal chia williamsburg.    16811    944    2015-10-08 15:23:24    2015-10-08 15:23:24    1
3972    Stumptown austin sustainable. Yuccie street 3 wolf moon poutine. Wolf forage next level squid. Beard godard typewriter cred truffaut shoreditch. Chillwave trust fund seitan next level.    13871    693    2015-06-14 00:21:49    2015-06-14 00:21:49    1
3973    Trust fund deep v thundercats intelligentsia post-ironic. Put a bird on it keytar next level small batch. Swag try-hard lomo. Next level cliche selvage bushwick tousled.    18190    737    2015-12-09 10:16:37    2015-12-09 10:16:37    1
3974    Cronut authentic chambray lo-fi. Portland pug mumblecore flexitarian asymmetrical. Kitsch typewriter tote bag. Kombucha tattooed try-hard distillery.    16168    732    2016-02-21 17:15:16    2016-02-21 17:15:16    1
3975    Dreamcatcher hoodie next level vice green juice viral. Sustainable try-hard umami dreamcatcher. Health austin disrupt try-hard kale chips etsy. Tacos goth waistcoat irony carry. Poutine typewriter food truck celiac knausgaard cardigan.    16545    666    2015-05-22 13:01:07    2015-05-22 13:01:07    1
3976    Roof gastropub pbr&b. Craft beer plaid single-origin coffee. Loko 3 wolf moon plaid art party twee keffiyeh skateboard tilde. Biodiesel 90's master goth. Yolo cold-pressed tote bag fashion axe.    10697    783    2015-08-26 14:19:25    2015-08-26 14:19:25    1
3979    Food truck lomo pork belly mixtape chartreuse salvia bushwick. Tousled poutine farm-to-table hammock roof. Tofu locavore post-ironic vinegar normcore aesthetic microdosing. Street pop-up thundercats.    18392    543    2015-11-08 23:42:29    2015-11-08 23:42:29    1
3980    Sartorial loko next level portland freegan pork belly banjo crucifix. Carry offal chambray tacos meditation pour-over. Lomo 8-bit hammock small batch squid marfa locavore. Farm-to-table narwhal mlkshk kale chips wes anderson chia skateboard.    11587    880    2015-07-28 07:22:40    2015-07-28 07:22:40    1
3981    Cold-pressed gastropub wolf authentic. Asymmetrical chicharrones paleo fixie iphone. Pbr&b freegan wes anderson messenger bag franzen.    16149    857    2016-03-13 23:52:33    2016-03-13 23:52:33    1
3982    Mumblecore schlitz knausgaard keffiyeh street poutine 90's echo. Polaroid diy jean shorts. Readymade viral microdosing narwhal. Locavore kickstarter mixtape literally etsy five dollar toast.    11985    478    2015-09-11 03:15:55    2015-09-11 03:15:55    1
3983    Brunch master disrupt. Etsy pabst lumbersexual raw denim kinfolk. Sustainable offal mixtape scenester mumblecore cold-pressed.    17368    785    2015-12-22 03:51:21    2015-12-22 03:51:21    1
3984    Fanny pack keffiyeh hoodie green juice readymade. Before they sold out pop-up thundercats deep v you probably haven't heard of them. Messenger bag lumbersexual beard post-ironic. Art party kinfolk food truck diy hoodie chillwave cold-pressed. Direct trade pork belly gentrify ethical banjo cred retro pitchfork.    14832    590    2015-12-14 21:15:18    2015-12-14 21:15:18    1
4055    Hammock everyday disrupt. Tilde bicycle rights vinegar. Church-key gastropub williamsburg meggings ennui.    11554    533    2015-06-18 22:06:31    2015-06-18 22:06:31    1
3986    Chartreuse diy vice food truck. Pbr&b kickstarter migas xoxo marfa. Austin brooklyn cred pitchfork cray small batch. Vice post-ironic keffiyeh sustainable wes anderson fixie bicycle rights.    13469    906    2016-04-16 10:15:23    2016-04-16 10:15:23    1
3987    Taxidermy +1 pop-up letterpress put a bird on it. Scenester dreamcatcher lo-fi offal hammock literally kale chips. Asymmetrical microdosing celiac knausgaard shabby chic. Mixtape cleanse cornhole keffiyeh.    18739    868    2015-12-09 10:05:30    2015-12-09 10:05:30    1
3988    Cliche brooklyn blue bottle twee chartreuse celiac selvage. Pour-over letterpress drinking hashtag mumblecore green juice knausgaard chambray. Vinegar fap squid church-key kickstarter. Synth offal viral brunch tacos hammock fanny pack distillery. Portland artisan goth yr mixtape.    18016    862    2015-05-04 12:32:36    2015-05-04 12:32:36    1
3989    Vegan poutine tumblr tilde. Tilde fap pbr&b park. Trust fund yr wes anderson chia keffiyeh intelligentsia locavore authentic.    12458    774    2015-04-29 15:20:04    2015-04-29 15:20:04    1
3990    Waistcoat fanny pack put a bird on it distillery kale chips. Pbr&b vinegar before they sold out chia leggings kinfolk godard. Gastropub craft beer pickled.    17870    617    2016-03-12 02:44:28    2016-03-12 02:44:28    1
3991    Lumbersexual cold-pressed literally roof humblebrag whatever. Whatever banjo butcher cleanse stumptown tilde keffiyeh cliche. Mixtape craft beer cliche 90's gastropub bespoke selfies typewriter. Letterpress kickstarter bespoke raw denim echo direct trade.    16763    933    2016-03-19 09:08:58    2016-03-19 09:08:58    1
3993    Echo carry fap umami taxidermy locavore cleanse vinyl. Messenger bag franzen swag hammock kickstarter kitsch shoreditch goth. Blog pinterest fixie.    15789    605    2016-01-13 22:07:50    2016-01-13 22:07:50    1
3994    Letterpress artisan waistcoat taxidermy lumbersexual diy. Lo-fi schlitz pug narwhal lomo biodiesel. Occupy chillwave intelligentsia craft beer heirloom health. Retro synth aesthetic gastropub keytar vegan.    11119    588    2015-11-23 10:01:20    2015-11-23 10:01:20    1
3995    Mlkshk gentrify shabby chic cliche roof cronut. Vinegar pug pour-over banh mi heirloom flexitarian brooklyn 3 wolf moon. Retro kickstarter cleanse meh.    15638    588    2015-05-31 06:35:07    2015-05-31 06:35:07    1
3996    Vhs tilde pbr&b pinterest tofu. Food truck cronut schlitz sriracha poutine chillwave blue bottle craft beer. Yr scenester chambray mixtape cornhole. 3 wolf moon shoreditch migas echo.    11588    516    2016-02-16 16:30:37    2016-02-16 16:30:37    1
3998    Wayfarers yolo letterpress flexitarian photo booth you probably haven't heard of them. Vegan taxidermy disrupt. 3 wolf moon forage blog kale chips etsy truffaut stumptown pinterest. Brunch art party meh ramps farm-to-table gastropub migas. Vice pickled jean shorts.    11654    540    2015-05-13 21:01:51    2015-05-13 21:01:51    1
3999    Street slow-carb gentrify farm-to-table mixtape chillwave trust fund. Blue bottle migas fixie kickstarter. Schlitz knausgaard next level taxidermy shabby chic pabst pbr&b gentrify. Tacos kitsch banh mi viral taxidermy cornhole.    11409    658    2016-03-16 16:27:29    2016-03-16 16:27:29    1
4000    Roof scenester cleanse chambray dreamcatcher farm-to-table. Cred next level kogi kickstarter. Master swag tilde fashion axe sustainable listicle food truck messenger bag. Raw denim hammock freegan venmo. Helvetica disrupt meh craft beer polaroid.    14224    542    2015-07-13 15:44:03    2015-07-13 15:44:03    1
4001    Master waistcoat yolo banh mi fap health tacos helvetica. Gastropub fixie mlkshk echo. Tousled mixtape roof tacos cliche tattooed hella.    14502    638    2016-03-16 12:40:10    2016-03-16 12:40:10    1
4002    Bicycle rights thundercats aesthetic banjo. Put a bird on it hashtag normcore knausgaard marfa chillwave fap. Gentrify truffaut microdosing 3 wolf moon austin chia.    17813    874    2015-12-18 12:14:04    2015-12-18 12:14:04    1
4003    Shoreditch everyday mixtape banh mi lo-fi venmo occupy diy. Listicle tousled readymade photo booth. Fashion axe ennui mixtape deep v occupy kickstarter cold-pressed distillery. Hammock kogi blue bottle whatever +1 food truck heirloom blog. Letterpress put a bird on it ennui tote bag godard pug.    11364    872    2015-08-30 13:02:18    2015-08-30 13:02:18    1
4004    Quinoa migas heirloom church-key pbr&b. Marfa farm-to-table occupy brunch tote bag heirloom gentrify seitan. Narwhal helvetica crucifix yr hammock 90's heirloom you probably haven't heard of them.    15252    500    2015-11-13 08:50:25    2015-11-13 08:50:25    1
4006    Mumblecore tofu umami kinfolk mustache thundercats. Trust fund ramps pickled microdosing small batch chambray. Chillwave selfies vhs cleanse tote bag. Roof thundercats church-key lo-fi cardigan blog.    18986    771    2015-06-01 14:34:42    2015-06-01 14:34:42    1
4007    Irony authentic cred blog banh mi xoxo. Brunch gastropub literally austin. Fixie cronut park umami.    10236    660    2015-07-11 20:35:18    2015-07-11 20:35:18    1
4008    Yuccie gentrify celiac synth. Twee wayfarers trust fund lumbersexual. Chillwave twee normcore venmo.    15405    893    2015-08-26 19:52:35    2015-08-26 19:52:35    1
4009    Direct trade shoreditch occupy stumptown retro kombucha listicle narwhal. Kinfolk five dollar toast distillery raw denim +1 bicycle rights. Cardigan cronut tote bag raw denim diy photo booth selfies brooklyn. Vinegar pabst yolo chia diy single-origin coffee blog.    15951    792    2015-10-04 21:41:35    2015-10-04 21:41:35    1
4010    Typewriter cornhole kombucha celiac synth blue bottle mumblecore banh mi. Bushwick kogi vhs. Banh mi yr skateboard try-hard. Food truck authentic scenester pickled marfa etsy hammock ugh.    18887    559    2015-08-02 16:30:24    2015-08-02 16:30:24    1
4011    Selvage synth pabst truffaut +1 blue bottle. Disrupt sriracha etsy whatever listicle 90's squid deep v. Artisan ethical narwhal raw denim. Pork belly dreamcatcher offal 90's.    11602    614    2016-01-03 13:12:41    2016-01-03 13:12:41    1
4012    Loko slow-carb selfies cornhole. Knausgaard forage flannel sartorial 3 wolf moon. Letterpress dreamcatcher small batch pork belly biodiesel pbr&b. Selfies forage master xoxo godard vinyl. Microdosing actually waistcoat seitan tote bag.    12250    733    2015-07-21 09:25:55    2015-07-21 09:25:55    1
4013    Fap polaroid offal viral. Freegan celiac knausgaard cliche pitchfork yolo. Offal beard venmo bicycle rights fanny pack xoxo migas. Disrupt 90's schlitz.    11467    817    2015-12-09 02:30:20    2015-12-09 02:30:20    1
4014    Ethical hella fixie yr chambray truffaut. Cronut cleanse vhs meh. Pinterest flexitarian franzen yuccie.    11838    614    2015-08-21 20:10:49    2015-08-21 20:10:49    1
4015    Drinking pbr&b direct trade photo booth flannel butcher. Synth tacos mixtape wayfarers artisan 8-bit cronut. Plaid irony flannel chicharrones salvia chia. Bitters selfies cold-pressed irony etsy. Scenester roof diy +1 yuccie.    15696    608    2016-01-20 10:17:33    2016-01-20 10:17:33    1
4016    Raw denim bespoke tote bag retro. Church-key cold-pressed vinyl. Stumptown cliche chartreuse poutine migas.    10766    936    2015-08-28 09:33:47    2015-08-28 09:33:47    1
4017    Taxidermy paleo shabby chic ugh listicle swag. Cliche synth dreamcatcher occupy tofu freegan. Godard cray beard park health twee salvia. Fingerstache farm-to-table migas 8-bit five dollar toast.    11022    840    2015-11-03 21:07:01    2015-11-03 21:07:01    1
4018    Heirloom small batch vegan. Bushwick deep v intelligentsia lumbersexual chia wolf. Fanny pack ethical tacos. Neutra loko scenester xoxo kogi listicle.    14201    655    2015-05-19 00:39:57    2015-05-19 00:39:57    1
4056    Sriracha selfies cornhole you probably haven't heard of them mumblecore. Gentrify offal iphone cleanse. Narwhal freegan mlkshk.    11873    617    2015-11-29 18:18:51    2015-11-29 18:18:51    1
4019    Craft beer chartreuse meh polaroid viral. Crucifix street vinegar waistcoat xoxo umami. Scenester selvage pork belly cronut. Cardigan artisan yuccie +1 pbr&b semiotics.    16464    886    2015-05-30 04:33:42    2015-05-30 04:33:42    1
4020    Chillwave pitchfork iphone distillery. Try-hard ethical neutra organic kale chips. Craft beer organic blog skateboard drinking. Locavore roof iphone put a bird on it. Paleo pbr&b mustache swag franzen tattooed pitchfork banjo.    14279    753    2015-05-30 01:39:10    2015-05-30 01:39:10    1
4021    Wayfarers quinoa seitan knausgaard photo booth. Fashion axe keytar disrupt knausgaard. Migas vice scenester mlkshk. Waistcoat asymmetrical tousled heirloom listicle. Kickstarter poutine williamsburg listicle bespoke distillery.    15312    724    2016-04-09 20:04:34    2016-04-09 20:04:34    1
4022    Ennui letterpress direct trade chambray keytar. Hoodie iphone narwhal five dollar toast. Helvetica fingerstache single-origin coffee. Literally brunch pour-over. Food truck yolo ethical deep v wolf.    16958    688    2016-01-09 09:00:39    2016-01-09 09:00:39    1
4023    Keytar neutra swag chia +1 hoodie literally yolo. Flexitarian ugh ethical fap taxidermy flannel. Austin butcher goth jean shorts yr stumptown.    12313    872    2015-10-18 17:28:18    2015-10-18 17:28:18    1
4024    Intelligentsia kombucha squid cleanse. Church-key locavore readymade pour-over blog fap. Hella keytar crucifix forage kinfolk locavore.    15129    658    2015-11-28 21:46:44    2015-11-28 21:46:44    1
4025    Brooklyn +1 sriracha. Vhs plaid carry literally lo-fi beard cornhole sriracha. 8-bit +1 humblebrag tofu carry iphone echo semiotics.    17897    831    2015-05-28 18:32:13    2015-05-28 18:32:13    1
4026    Tousled occupy listicle yr wes anderson shabby chic microdosing whatever. Mustache art party neutra meggings pour-over readymade narwhal. 8-bit xoxo kickstarter sustainable. Artisan kogi paleo sriracha keytar try-hard.    13378    768    2016-03-04 08:04:37    2016-03-04 08:04:37    1
4027    Banjo gentrify tumblr. Sriracha chambray next level seitan. Next level bespoke authentic polaroid sartorial cred microdosing park. Biodiesel mustache trust fund chillwave chia. Kitsch intelligentsia small batch pork belly stumptown craft beer.    15708    753    2015-11-06 09:45:01    2015-11-06 09:45:01    1
4028    Franzen brooklyn synth authentic loko crucifix typewriter. Street listicle locavore freegan blog twee lo-fi. Trust fund kickstarter fanny pack tattooed roof chillwave marfa master. Wes anderson twee pinterest tumblr.    12080    940    2015-12-16 13:56:23    2015-12-16 13:56:23    1
4098    Twee brooklyn banjo bushwick messenger bag. Venmo sriracha selvage photo booth mixtape. Street next level direct trade cliche gluten-free 90's.    17209    911    2016-01-31 08:20:33    2016-01-31 08:20:33    1
4029    Distillery letterpress blog schlitz kale chips ugh austin five dollar toast. 8-bit chillwave swag whatever irony street 90's. Cardigan thundercats forage kale chips readymade.    14898    655    2016-04-08 01:53:24    2016-04-08 01:53:24    1
4030    Mumblecore food truck lo-fi wayfarers park. Umami iphone twee bitters fingerstache wolf bushwick. Chartreuse bespoke pabst migas banjo disrupt kale chips blog.    15753    687    2015-12-16 15:21:02    2015-12-16 15:21:02    1
4031    Butcher trust fund carry shoreditch leggings. Health keffiyeh pour-over distillery. Irony blue bottle semiotics. Humblebrag messenger bag fap typewriter brooklyn pinterest salvia brunch. Tilde art party ugh.    13821    809    2015-07-02 11:02:25    2015-07-02 11:02:25    1
4032    Synth xoxo semiotics. Schlitz roof pabst kale chips ethical vhs yr. Kale chips chambray viral.    11403    731    2015-05-15 15:00:29    2015-05-15 15:00:29    1
4033    Jean shorts freegan skateboard retro. Small batch williamsburg brooklyn occupy chillwave blue bottle. Fashion axe slow-carb freegan ugh. Gastropub whatever paleo bushwick blue bottle. Raw denim polaroid sriracha slow-carb kickstarter mustache roof cronut.    15388    821    2015-08-30 11:42:19    2015-08-30 11:42:19    1
4034    90's post-ironic taxidermy mustache hoodie yuccie mlkshk irony. Gentrify swag freegan lomo. Quinoa everyday meditation bicycle rights. Twee echo lo-fi bicycle rights stumptown lomo.    13570    909    2015-10-21 21:00:11    2015-10-21 21:00:11    1
4035    Scenester vice leggings chillwave. Offal crucifix iphone pitchfork meh. Craft beer hoodie squid.    11714    598    2015-12-11 10:20:17    2015-12-11 10:20:17    1
4036    Readymade cornhole sustainable knausgaard street pop-up leggings. Dreamcatcher cold-pressed next level poutine tote bag freegan. Semiotics cliche chambray pitchfork actually knausgaard health authentic. Post-ironic pitchfork poutine pork belly aesthetic locavore. Kitsch cronut cray kale chips cardigan mixtape.    14472    819    2016-03-31 01:37:41    2016-03-31 01:37:41    1
4037    Pour-over offal hashtag wayfarers. Gentrify craft beer pinterest. Raw denim 3 wolf moon gentrify hoodie.    14583    691    2015-11-03 07:24:25    2015-11-03 07:24:25    1
4039    Messenger bag chillwave neutra goth mustache biodiesel. Intelligentsia quinoa vinyl heirloom. Banh mi brunch mlkshk. Helvetica carry goth pinterest 8-bit. Viral aesthetic irony kickstarter selvage messenger bag wolf craft beer.    18396    950    2015-06-27 01:27:04    2015-06-27 01:27:04    1
4041    Kombucha food truck squid thundercats semiotics. 8-bit yuccie next level shoreditch bitters drinking. Artisan migas mixtape put a bird on it. Banh mi celiac carry. +1 meditation banjo health keffiyeh pickled.    13685    843    2016-02-18 03:50:12    2016-02-18 03:50:12    1
4042    Readymade microdosing cliche hoodie franzen park. Pop-up hoodie hammock selfies squid hashtag. Pitchfork fashion axe hammock. Yr retro vinegar pork belly brooklyn pour-over.    17449    701    2016-02-14 20:20:00    2016-02-14 20:20:00    1
4043    Retro selvage flannel food truck hella wayfarers. Pitchfork cronut actually venmo tilde hoodie cardigan. Pinterest whatever synth scenester. Kogi five dollar toast meditation cronut.    18833    534    2015-09-22 19:53:17    2015-09-22 19:53:17    1
4044    Mumblecore jean shorts art party master pickled post-ironic. Craft beer disrupt franzen fap wes anderson. Polaroid vinyl venmo. Organic green juice deep v thundercats before they sold out schlitz marfa mumblecore. Kickstarter diy hoodie offal roof pop-up.    12453    649    2015-04-25 19:08:14    2015-04-25 19:08:14    1
4045    Butcher umami everyday cred bespoke. Celiac pug scenester tattooed pinterest. Goth pabst vegan.    13259    740    2015-11-29 17:36:27    2015-11-29 17:36:27    1
4047    Listicle 90's fashion axe. Xoxo locavore pug. Thundercats deep v master raw denim hoodie shoreditch.    14673    911    2015-10-14 07:34:17    2015-10-14 07:34:17    1
4048    Single-origin coffee vice 90's. Microdosing intelligentsia kickstarter vinegar chicharrones narwhal. Truffaut mixtape park.    11772    957    2015-04-29 05:56:38    2015-04-29 05:56:38    1
4049    Meggings knausgaard freegan readymade echo. Leggings gluten-free 3 wolf moon echo loko. Knausgaard synth aesthetic listicle 90's vice viral. Deep v mixtape asymmetrical 90's church-key blog 8-bit.    15539    831    2015-09-04 17:54:47    2015-09-04 17:54:47    1
4050    Iphone ennui neutra whatever five dollar toast fap salvia hella. Franzen cray sriracha hammock keytar direct trade celiac schlitz. Flannel five dollar toast wayfarers you probably haven't heard of them fashion axe marfa pitchfork viral.    16442    478    2015-12-17 19:44:10    2015-12-17 19:44:10    1
4052    Polaroid beard cardigan green juice you probably haven't heard of them. Mlkshk mumblecore schlitz pinterest. Photo booth tumblr skateboard literally scenester.    14499    527    2016-01-18 16:07:33    2016-01-18 16:07:33    1
4053    Mustache master polaroid chia ennui before they sold out wes anderson williamsburg. Tumblr cray waistcoat hashtag literally mustache. Roof twee photo booth hoodie direct trade bicycle rights meggings semiotics.    10240    517    2015-11-19 11:32:37    2015-11-19 11:32:37    1
4054    Put a bird on it tofu banh mi yr mlkshk. Ennui migas fingerstache shabby chic biodiesel. Roof cardigan cronut pop-up five dollar toast retro tacos. You probably haven't heard of them vinyl gluten-free chambray. Wayfarers kale chips wes anderson deep v.    10704    582    2016-04-02 13:12:39    2016-04-02 13:12:39    1
4057    Kitsch fingerstache pork belly sartorial cred hoodie banjo squid. Ennui scenester viral fingerstache deep v vinegar paleo. Shabby chic irony gentrify chia franzen. Swag tilde leggings.    13974    689    2015-07-18 20:51:19    2015-07-18 20:51:19    1
4058    Seitan marfa disrupt. Ugh taxidermy migas trust fund vinyl. Keffiyeh brooklyn you probably haven't heard of them hella asymmetrical. Actually xoxo neutra hella celiac.    14109    519    2015-10-07 02:27:58    2015-10-07 02:27:58    1
4059    Irony yuccie street kinfolk intelligentsia. Sustainable wes anderson pickled post-ironic waistcoat. Blog narwhal butcher. Thundercats kale chips craft beer gastropub salvia chambray keytar.    15950    499    2015-12-21 13:27:50    2015-12-21 13:27:50    1
4060    Brooklyn jean shorts thundercats selvage street. Food truck hashtag tumblr lomo pinterest. Raw denim pabst artisan direct trade small batch schlitz authentic. Post-ironic williamsburg hammock. Gluten-free cardigan selvage squid chillwave bitters messenger bag direct trade.    12984    899    2015-10-25 07:04:48    2015-10-25 07:04:48    1
4061    Fashion axe yr aesthetic lomo shoreditch roof xoxo hashtag. Schlitz humblebrag fashion axe sartorial next level normcore mumblecore. Crucifix slow-carb deep v you probably haven't heard of them pinterest.    18480    724    2015-11-10 08:10:01    2015-11-10 08:10:01    1
4062    Austin waistcoat xoxo disrupt tilde. Synth tote bag keytar. Vegan actually fashion axe pork belly iphone semiotics. Stumptown sustainable bitters occupy vegan direct trade. Tousled locavore paleo mlkshk chicharrones vhs whatever keytar.    10917    853    2015-07-31 16:25:57    2015-07-31 16:25:57    1
4063    Fap meh flannel craft beer selvage. Butcher pinterest banh mi ethical echo iphone sartorial. Yuccie tacos schlitz shoreditch next level. Cold-pressed crucifix wes anderson freegan meh synth celiac poutine.    14161    785    2015-04-23 17:18:33    2015-04-23 17:18:33    1
4064    Meditation flannel helvetica forage fap vice xoxo cornhole. Literally tumblr whatever cleanse. Iphone thundercats hoodie wolf health 90's. Pitchfork squid normcore raw denim bushwick next level ethical aesthetic.    18490    879    2015-10-04 17:28:36    2015-10-04 17:28:36    1
4065    Neutra chia cray aesthetic. Diy fingerstache bitters organic selfies pop-up hashtag leggings. Cronut whatever shabby chic hoodie.    13684    921    2015-12-18 09:33:41    2015-12-18 09:33:41    1
4066    Pinterest green juice portland asymmetrical keytar health. Sartorial ennui polaroid marfa raw denim. Dreamcatcher try-hard artisan selfies heirloom vhs bespoke narwhal. Fingerstache seitan hella retro.    12685    654    2015-06-13 06:29:45    2015-06-13 06:29:45    1
4067    Mustache normcore pinterest twee venmo fanny pack waistcoat slow-carb. Single-origin coffee kale chips narwhal. Twee banjo cardigan. Keytar fingerstache distillery craft beer.    17111    543    2016-03-27 18:20:36    2016-03-27 18:20:36    1
4068    Mlkshk hammock vinegar iphone pork belly. Wolf marfa park pbr&b church-key. Next level knausgaard keytar. Bicycle rights photo booth sartorial heirloom put a bird on it roof artisan. Twee bicycle rights thundercats blue bottle.    18085    718    2016-04-19 21:10:02    2016-04-19 21:10:02    1
4069    Chillwave helvetica you probably haven't heard of them. Yr flexitarian slow-carb drinking kombucha shoreditch. Leggings tacos food truck whatever mumblecore. Synth post-ironic tattooed.    13400    812    2016-02-18 01:13:29    2016-02-18 01:13:29    1
4070    Meditation vinegar pour-over. Drinking butcher skateboard mlkshk brooklyn. Asymmetrical normcore +1.    15755    547    2015-05-11 03:14:25    2015-05-11 03:14:25    1
4071    Portland mlkshk park pork belly quinoa narwhal. Flexitarian +1 diy plaid normcore. Five dollar toast narwhal goth.    13327    701    2015-12-03 11:34:09    2015-12-03 11:34:09    1
4072    Kombucha fashion axe roof 3 wolf moon. Schlitz organic yuccie semiotics. Cray direct trade tofu humblebrag crucifix. Lomo mlkshk paleo fixie everyday tofu.    17300    473    2015-08-18 06:25:11    2015-08-18 06:25:11    1
4073    Kombucha seitan vinyl put a bird on it cliche flannel blog craft beer. Gastropub chicharrones carry jean shorts master biodiesel. Tumblr vinyl umami lomo chambray sartorial freegan sustainable.    11542    564    2015-10-13 04:50:30    2015-10-13 04:50:30    1
4075    Locavore trust fund helvetica leggings swag health cold-pressed. Bicycle rights kale chips pbr&b tote bag mlkshk organic. Occupy fashion axe single-origin coffee chillwave scenester flannel meditation.    14745    910    2015-12-21 10:02:00    2015-12-21 10:02:00    1
4076    Craft beer ugh photo booth kombucha. Tofu waistcoat normcore +1 banh mi pitchfork knausgaard. Stumptown mumblecore helvetica freegan sartorial typewriter pabst scenester. Chillwave knausgaard poutine tattooed tilde. Hoodie taxidermy mlkshk shabby chic pbr&b photo booth tacos narwhal.    16632    846    2015-12-16 02:40:42    2015-12-16 02:40:42    1
4077    Brooklyn fap gentrify mustache butcher selvage. Narwhal artisan vegan shabby chic wayfarers. Green juice church-key actually selfies messenger bag try-hard cornhole park. Occupy blue bottle kale chips artisan pitchfork butcher asymmetrical.    13281    813    2016-03-08 14:31:56    2016-03-08 14:31:56    1
4078    Aesthetic brooklyn neutra chillwave sartorial. Park pitchfork art party direct trade loko brooklyn fashion axe wes anderson. Tacos banh mi irony cleanse art party neutra freegan.    10349    543    2015-12-18 03:10:55    2015-12-18 03:10:55    1
4079    Ennui drinking mixtape vhs biodiesel asymmetrical franzen. Intelligentsia next level synth messenger bag distillery park blue bottle celiac. Salvia echo single-origin coffee microdosing chambray put a bird on it. Pitchfork chia portland seitan. Iphone literally schlitz retro cliche.    16757    585    2015-08-29 07:32:46    2015-08-29 07:32:46    1
4080    Tacos gastropub banjo yolo mixtape. Offal selvage sartorial cleanse semiotics butcher knausgaard wes anderson. Butcher cray crucifix helvetica. Vinyl tattooed slow-carb synth deep v drinking photo booth. Post-ironic vinyl echo locavore ethical squid blog.    11983    859    2015-06-25 13:22:34    2015-06-25 13:22:34    1
4081    Messenger bag freegan beard bespoke crucifix gastropub vinyl. Fashion axe chillwave gentrify chia. Tofu wayfarers you probably haven't heard of them vinyl single-origin coffee yolo park five dollar toast. Mlkshk sustainable jean shorts humblebrag lo-fi farm-to-table roof. 3 wolf moon five dollar toast iphone sustainable put a bird on it flannel try-hard cray.    13783    524    2015-10-26 16:55:12    2015-10-26 16:55:12    1
4082    Lo-fi artisan yr. Yolo twee listicle pour-over aesthetic cray banjo xoxo. Fixie williamsburg irony kale chips 90's. Leggings swag mustache small batch kale chips meh.    15691    736    2015-09-01 17:14:19    2015-09-01 17:14:19    1
4083    Helvetica franzen blog williamsburg. Bitters kogi tilde aesthetic ramps. Skateboard semiotics wayfarers tumblr. Tofu fingerstache ethical bushwick.    12504    551    2015-11-01 18:10:42    2015-11-01 18:10:42    1
4084    Try-hard bicycle rights fanny pack. Bespoke pabst yr craft beer +1 everyday. Pitchfork chartreuse helvetica chambray freegan taxidermy drinking.    17934    696    2015-05-08 23:34:04    2015-05-08 23:34:04    1
4085    Literally retro whatever try-hard vhs. Tumblr forage franzen green juice. Small batch yr viral. Craft beer swag chillwave pinterest.    13238    708    2016-01-13 15:02:32    2016-01-13 15:02:32    1
4088    Lumbersexual locavore beard chicharrones. Letterpress semiotics cleanse post-ironic chicharrones yr bushwick. Lo-fi sustainable everyday distillery franzen quinoa keffiyeh. Organic hammock hashtag leggings small batch raw denim artisan blue bottle. Cray kogi ramps chillwave art party pour-over selfies.    15354    645    2015-11-23 16:49:39    2015-11-23 16:49:39    1
4223    Leggings master freegan kickstarter artisan. Cred tousled neutra pop-up celiac. Semiotics truffaut carry literally waistcoat direct trade.    18133    961    2015-06-30 08:04:23    2015-06-30 08:04:23    1
4089    Pinterest letterpress +1. Forage vice narwhal. Photo booth mustache pop-up hoodie vinegar. Chia artisan five dollar toast poutine marfa. Artisan small batch single-origin coffee actually.    10306    631    2015-11-13 19:37:56    2015-11-13 19:37:56    1
4090    Park bushwick kitsch mixtape. Single-origin coffee synth mumblecore fingerstache plaid. Vegan butcher williamsburg cardigan seitan microdosing kombucha tote bag.    13245    934    2015-11-27 05:15:16    2015-11-27 05:15:16    1
4091    Fashion axe organic distillery fixie crucifix kickstarter godard 90's. Poutine roof locavore bicycle rights kogi leggings hoodie. Leggings post-ironic disrupt. Art party small batch bespoke sustainable.    14450    669    2015-10-29 03:18:11    2015-10-29 03:18:11    1
4092    Asymmetrical cronut godard twee try-hard jean shorts venmo locavore. Pickled pug stumptown pork belly whatever blog vice. Hoodie franzen kogi pour-over.    18375    861    2015-08-22 12:20:58    2015-08-22 12:20:58    1
4093    Drinking flannel distillery narwhal vegan try-hard meh williamsburg. Gentrify art party vice banjo portland. You probably haven't heard of them wayfarers tattooed before they sold out. Tousled iphone migas aesthetic organic etsy.    10042    897    2015-05-12 16:28:53    2015-05-12 16:28:53    1
4094    Roof letterpress wolf ethical cold-pressed bespoke. Organic mixtape offal squid echo umami pug. Slow-carb umami schlitz fashion axe cred. Selvage biodiesel photo booth synth authentic park.    16757    928    2015-12-09 11:57:43    2015-12-09 11:57:43    1
4095    Taxidermy readymade goth banjo flannel kombucha disrupt gentrify. Dreamcatcher messenger bag drinking butcher tumblr kickstarter jean shorts single-origin coffee. Bicycle rights offal freegan.    12660    707    2016-01-21 21:54:59    2016-01-21 21:54:59    1
4096    Irony selvage loko street slow-carb shoreditch chia tacos. 3 wolf moon sartorial tilde kogi. Humblebrag artisan chillwave dreamcatcher retro pbr&b.    16859    753    2015-10-10 19:18:10    2015-10-10 19:18:10    1
4097    Blog flexitarian before they sold out. Hashtag keytar deep v art party ramps retro next level freegan. Beard jean shorts flexitarian mlkshk sustainable. Scenester mixtape gluten-free put a bird on it blog.    17256    463    2016-04-09 01:38:33    2016-04-09 01:38:33    1
4099    Messenger bag disrupt tote bag. Wolf kombucha freegan chartreuse. Before they sold out cold-pressed everyday master jean shorts meditation cliche ennui. Synth lomo cray. Art party jean shorts park pop-up knausgaard.    15525    782    2015-05-10 16:29:22    2015-05-10 16:29:22    1
4100    Irony retro asymmetrical direct trade kitsch blog. Echo bicycle rights locavore. Pop-up wayfarers tacos vhs. Everyday brunch umami 8-bit williamsburg gluten-free art party. Street +1 park waistcoat before they sold out artisan.    12848    733    2016-01-14 01:51:23    2016-01-14 01:51:23    1
4101    Typewriter synth cliche plaid selvage. Asymmetrical bushwick neutra small batch. Keytar letterpress bicycle rights.    17100    543    2016-02-09 19:34:09    2016-02-09 19:34:09    1
4102    Quinoa pickled five dollar toast vice mlkshk. Literally whatever irony iphone bespoke try-hard umami. Flexitarian seitan retro authentic 3 wolf moon before they sold out quinoa. Celiac mixtape shoreditch leggings direct trade.    17741    930    2016-03-05 07:16:22    2016-03-05 07:16:22    1
4103    Keytar tilde chia. Pbr&b pinterest knausgaard bitters messenger bag. Shoreditch put a bird on it hoodie roof messenger bag.    10744    666    2015-06-10 02:22:34    2015-06-10 02:22:34    1
4104    Lo-fi before they sold out synth bespoke shabby chic pitchfork. Sriracha typewriter vinegar. 90's thundercats slow-carb twee ugh sartorial. Venmo twee health church-key try-hard portland.    15851    699    2015-11-27 14:28:08    2015-11-27 14:28:08    1
4106    Slow-carb pop-up ethical brunch plaid swag kinfolk messenger bag. Chambray synth kitsch godard mumblecore. Jean shorts direct trade roof disrupt tilde cronut mlkshk.    12450    721    2015-09-22 18:26:17    2015-09-22 18:26:17    1
4107    Mlkshk kogi sriracha venmo franzen ethical biodiesel. Plaid trust fund post-ironic green juice gluten-free. Authentic cronut quinoa gluten-free bitters franzen venmo.    14678    941    2015-10-09 03:41:24    2015-10-09 03:41:24    1
4108    Health street biodiesel meggings. Tacos bicycle rights pitchfork vinyl. Ramps austin listicle messenger bag. Pinterest quinoa truffaut listicle.    10250    871    2015-11-27 21:46:02    2015-11-27 21:46:02    1
4111    Hashtag retro dreamcatcher loko. Biodiesel distillery migas art party. Tousled bicycle rights lumbersexual etsy cray. Vinyl cleanse truffaut asymmetrical knausgaard whatever master pbr&b.    16300    941    2015-04-27 01:29:38    2015-04-27 01:29:38    1
4113    Sriracha fap offal. Tilde 8-bit lomo pour-over bitters schlitz selvage. Dreamcatcher sustainable lo-fi. Neutra truffaut artisan asymmetrical next level normcore keffiyeh.    10295    602    2016-03-02 05:27:58    2016-03-02 05:27:58    1
4114    Put a bird on it truffaut chicharrones flexitarian squid cray cronut etsy. Artisan tofu vegan neutra chillwave. Williamsburg mlkshk vinegar umami truffaut. Green juice tousled organic taxidermy waistcoat irony.    13505    504    2015-10-31 10:05:44    2015-10-31 10:05:44    1
4115    Park sriracha stumptown iphone artisan distillery pbr&b. Banjo small batch selfies squid asymmetrical put a bird on it tote bag hoodie. Crucifix park chia. Diy blog shoreditch.    15297    809    2015-07-17 05:09:45    2015-07-17 05:09:45    1
4116    Distillery poutine 8-bit. Mumblecore wolf bicycle rights typewriter lumbersexual. Disrupt master polaroid gluten-free chicharrones. Kinfolk green juice banjo pour-over crucifix scenester. Vegan narwhal next level.    13703    477    2015-05-27 03:13:01    2015-05-27 03:13:01    1
4117    Plaid kogi flexitarian beard wolf squid organic. Loko ethical readymade portland twee blog. Taxidermy wayfarers literally quinoa kogi before they sold out microdosing farm-to-table. Selfies beard kinfolk.    16764    574    2015-12-06 03:39:06    2015-12-06 03:39:06    1
4118    Direct trade artisan austin. Pickled hella yolo pork belly kale chips trust fund next level. Semiotics goth salvia narwhal gentrify health shabby chic. Master schlitz cliche umami put a bird on it diy. Ethical cred gastropub iphone 8-bit.    16110    542    2015-12-07 03:55:58    2015-12-07 03:55:58    1
4120    Messenger bag pbr&b trust fund heirloom vinegar. Paleo pitchfork disrupt flexitarian kickstarter mixtape five dollar toast. Flexitarian williamsburg aesthetic deep v.    11845    836    2016-02-14 18:35:43    2016-02-14 18:35:43    1
4121    Blue bottle small batch brooklyn scenester skateboard. Fashion axe readymade etsy authentic humblebrag raw denim 3 wolf moon fanny pack. Marfa quinoa vice before they sold out squid.    12962    855    2015-11-05 11:38:25    2015-11-05 11:38:25    1
4122    Locavore franzen next level polaroid ennui tote bag. Irony shabby chic lo-fi thundercats stumptown. Pork belly post-ironic raw denim marfa schlitz. Hoodie single-origin coffee selvage raw denim kitsch fashion axe portland neutra. Lo-fi goth squid mumblecore migas.    14679    862    2015-11-16 11:12:31    2015-11-16 11:12:31    1
4124    Raw denim tattooed swag intelligentsia. Tousled lo-fi squid yolo meditation. Butcher twee tattooed.    12524    556    2015-10-25 20:54:11    2015-10-25 20:54:11    1
4125    Park vinyl raw denim brooklyn fap. Beard try-hard literally keytar tousled. 90's bespoke portland loko blog 8-bit echo. Cornhole farm-to-table knausgaard meditation.    13065    557    2015-09-05 11:06:48    2015-09-05 11:06:48    1
4126    Tousled lomo actually mixtape fixie post-ironic. Tacos readymade tousled cornhole. Hoodie gastropub typewriter pork belly meditation drinking gentrify. Chillwave etsy sustainable cleanse.    14830    920    2015-10-28 00:52:36    2015-10-28 00:52:36    1
4127    Drinking knausgaard vinegar xoxo. Iphone selfies celiac meh marfa. Gluten-free humblebrag intelligentsia pbr&b tousled. Vice intelligentsia cornhole viral. Pinterest austin authentic bitters freegan.    17302    479    2015-10-04 11:18:19    2015-10-04 11:18:19    1
4128    Helvetica messenger bag typewriter artisan authentic +1. Cray wayfarers flexitarian banjo viral migas bespoke authentic. Tilde microdosing forage +1 shabby chic. Quinoa kogi mlkshk godard.    12142    730    2015-11-26 16:37:22    2015-11-26 16:37:22    1
4130    Truffaut art party tacos five dollar toast 3 wolf moon fanny pack. Neutra portland yuccie you probably haven't heard of them art party. Actually try-hard sartorial craft beer. Deep v pug retro pickled chambray. Heirloom cornhole before they sold out banh mi blue bottle.    12232    793    2016-03-03 23:21:19    2016-03-03 23:21:19    1
4131    Bushwick letterpress vegan cold-pressed. Chia shoreditch seitan next level flexitarian. Crucifix vice before they sold out pbr&b. Flannel artisan green juice pork belly chillwave neutra slow-carb. Kale chips pabst roof bespoke.    13525    950    2015-06-30 09:43:50    2015-06-30 09:43:50    1
4132    Blue bottle vinyl chambray whatever post-ironic ethical pop-up. Vinegar swag cray deep v. Fanny pack tote bag williamsburg ramps ugh. Tumblr blue bottle pop-up vinegar skateboard selvage.    11772    889    2016-02-10 11:57:13    2016-02-10 11:57:13    1
4133    Cray you probably haven't heard of them authentic carry pop-up letterpress etsy. Irony salvia biodiesel chia drinking umami. Crucifix bitters five dollar toast ethical butcher bicycle rights meh. Farm-to-table taxidermy retro marfa kombucha blue bottle. Freegan blog kogi williamsburg.    10482    960    2016-03-19 17:34:53    2016-03-19 17:34:53    1
4134    Before they sold out williamsburg microdosing drinking vinyl street. Marfa biodiesel you probably haven't heard of them chia. Craft beer neutra sustainable brunch.    13610    573    2015-12-29 16:06:00    2015-12-29 16:06:00    1
4135    90's next level venmo stumptown forage. Try-hard sustainable blog. Fixie before they sold out heirloom. Organic dreamcatcher park slow-carb keffiyeh brunch meggings.    14036    489    2015-04-28 18:34:34    2015-04-28 18:34:34    1
4136    Blue bottle artisan 8-bit single-origin coffee tousled lomo wayfarers yr. Swag banh mi truffaut. Letterpress shabby chic cronut small batch pbr&b. Put a bird on it fixie actually vhs leggings umami.    15608    644    2015-12-21 19:26:15    2015-12-21 19:26:15    1
4137    Kinfolk whatever cleanse retro truffaut fixie. Venmo banh mi butcher artisan cleanse. Banjo tacos scenester 8-bit ennui biodiesel farm-to-table tofu. Lomo salvia 3 wolf moon crucifix ethical you probably haven't heard of them listicle wayfarers. Kogi aesthetic vice fingerstache vinyl.    11392    610    2015-09-19 13:14:22    2015-09-19 13:14:22    1
4138    Post-ironic sriracha small batch tattooed. Retro fanny pack try-hard portland swag pop-up mlkshk. Microdosing truffaut iphone master. Venmo health lomo knausgaard kale chips squid. Readymade kickstarter 8-bit.    11095    709    2016-01-19 08:45:01    2016-01-19 08:45:01    1
4139    Cardigan scenester umami yr readymade. Fingerstache distillery slow-carb pickled migas. Artisan next level helvetica irony brooklyn. Health brunch polaroid.    16943    736    2015-12-23 12:56:32    2015-12-23 12:56:32    1
4140    Ugh intelligentsia godard vice viral. Venmo cred microdosing quinoa kinfolk. Locavore chicharrones 3 wolf moon vinegar humblebrag sartorial loko. Vinegar pitchfork vegan umami typewriter freegan yolo try-hard.    16951    581    2016-03-17 07:49:27    2016-03-17 07:49:27    1
4141    Offal sriracha try-hard deep v kombucha stumptown. Fanny pack keytar kogi kale chips kinfolk. Microdosing selvage wes anderson hammock thundercats single-origin coffee yolo health.    18770    842    2016-02-28 00:07:48    2016-02-28 00:07:48    1
4142    Messenger bag sustainable hammock. Tacos leggings hashtag food truck pug +1. Paleo vice selvage beard small batch helvetica. Flannel synth meditation jean shorts godard. Vinegar wes anderson kitsch chia locavore chambray art party umami.    11300    716    2016-02-23 06:11:45    2016-02-23 06:11:45    1
4143    Small batch fashion axe crucifix vinegar forage. Typewriter biodiesel lumbersexual. Wolf normcore hashtag umami pork belly craft beer pinterest.    13334    591    2016-04-02 00:42:28    2016-04-02 00:42:28    1
4144    Tumblr cardigan yuccie. Post-ironic tofu green juice carry pbr&b food truck poutine. Ramps typewriter carry cornhole. Biodiesel church-key pickled before they sold out truffaut hella poutine. Bicycle rights pbr&b flexitarian bushwick pickled.    17859    629    2016-01-17 03:10:05    2016-01-17 03:10:05    1
4145    Heirloom gluten-free bicycle rights humblebrag. Vice humblebrag iphone migas lomo artisan. Wolf leggings chia photo booth williamsburg authentic mlkshk. Banh mi five dollar toast selvage.    15759    635    2016-02-25 11:41:57    2016-02-25 11:41:57    1
4146    90's squid chia drinking organic. Leggings waistcoat keffiyeh chambray put a bird on it. Gluten-free mustache hashtag sriracha health poutine.    13942    673    2016-03-09 22:41:00    2016-03-09 22:41:00    1
4147    Truffaut synth gastropub taxidermy cliche fingerstache cronut wayfarers. Austin pug +1. Listicle loko asymmetrical pickled.    16743    887    2015-09-30 14:41:59    2015-09-30 14:41:59    1
4148    Keytar celiac craft beer fingerstache dreamcatcher trust fund polaroid. Cardigan pabst organic pinterest banh mi wayfarers. Photo booth lumbersexual direct trade viral skateboard. Bushwick blue bottle brunch single-origin coffee bicycle rights pickled taxidermy. Butcher deep v echo ethical pop-up skateboard waistcoat.    12978    682    2015-08-02 06:14:04    2015-08-02 06:14:04    1
4149    Chillwave vinegar hammock tofu goth synth post-ironic retro. Cray butcher kinfolk occupy. Lomo drinking disrupt beard slow-carb portland. Lo-fi master dreamcatcher microdosing health fixie 3 wolf moon.    18837    843    2015-07-25 23:16:33    2015-07-25 23:16:33    1
4150    Narwhal kitsch messenger bag photo booth kale chips loko organic. Art party ennui cray sriracha typewriter poutine next level put a bird on it. Disrupt swag fixie. Fashion axe knausgaard disrupt photo booth viral. Chia single-origin coffee post-ironic raw denim.    10823    805    2015-10-21 23:18:40    2015-10-21 23:18:40    1
4151    Ugh kitsch diy. Food truck sriracha quinoa farm-to-table. Ugh chambray blue bottle +1 knausgaard vinyl yolo asymmetrical. Drinking banjo trust fund literally letterpress chambray.    18869    790    2015-07-15 15:39:01    2015-07-15 15:39:01    1
4152    Bushwick cliche farm-to-table kale chips polaroid bicycle rights hammock. Brooklyn whatever hashtag cold-pressed lomo. Five dollar toast celiac wolf food truck schlitz selvage.    15555    512    2015-11-05 10:18:01    2015-11-05 10:18:01    1
4153    Art party organic humblebrag paleo. Small batch vhs tilde. Hoodie distillery readymade migas pour-over street shabby chic. Gluten-free post-ironic plaid.    14590    667    2015-12-19 17:51:18    2015-12-19 17:51:18    1
4154    Aesthetic seitan tacos biodiesel helvetica cardigan. Gastropub asymmetrical shabby chic. Everyday taxidermy bitters cold-pressed vegan carry beard. Food truck hoodie salvia scenester. Green juice pop-up organic meh helvetica offal taxidermy.    17528    794    2016-01-19 16:18:48    2016-01-19 16:18:48    1
4155    Swag narwhal echo flexitarian disrupt blog organic. Microdosing banh mi 8-bit. You probably haven't heard of them park synth scenester. Direct trade dreamcatcher locavore slow-carb put a bird on it banh mi.    15198    472    2015-07-26 04:36:19    2015-07-26 04:36:19    1
4156    Mustache +1 banjo chia lo-fi ennui skateboard. Chillwave diy shabby chic skateboard loko slow-carb truffaut. Celiac cardigan tote bag. Vice loko scenester celiac schlitz ugh roof iphone. Marfa street you probably haven't heard of them leggings ennui chia.    18545    765    2016-04-07 09:40:32    2016-04-07 09:40:32    1
4157    Put a bird on it food truck cleanse skateboard meditation. Everyday mixtape bicycle rights put a bird on it taxidermy wayfarers bushwick tumblr. Pork belly locavore shabby chic authentic celiac lumbersexual art party pabst. Photo booth church-key swag hella next level. Chartreuse sriracha ugh.    18523    914    2015-11-28 15:16:05    2015-11-28 15:16:05    1
4158    Kinfolk kale chips vinyl park typewriter schlitz synth 8-bit. Tilde ramps viral squid pickled direct trade. Selfies carry diy fixie. Truffaut swag gastropub vhs biodiesel synth beard. Freegan pbr&b gastropub.    11512    682    2015-12-27 10:46:31    2015-12-27 10:46:31    1
4159    Keytar wes anderson sustainable pabst franzen tacos truffaut photo booth. Narwhal cardigan vhs polaroid chartreuse +1 hella austin. Pork belly schlitz ennui yuccie stumptown wes anderson. Roof hoodie kombucha yolo pickled cray.    15479    522    2016-03-30 05:26:00    2016-03-30 05:26:00    1
4161    Literally stumptown fap. Small batch ugh occupy fixie 8-bit poutine fap blog. Keytar offal butcher food truck keffiyeh salvia mustache. Banh mi portland green juice bitters cornhole aesthetic truffaut. Intelligentsia cornhole you probably haven't heard of them.    15271    892    2015-06-09 18:11:20    2015-06-09 18:11:20    1
4162    Selvage mlkshk polaroid tacos gluten-free post-ironic. Tousled fap put a bird on it gastropub squid asymmetrical fashion axe bushwick. Thundercats photo booth trust fund. Yuccie craft beer sartorial pabst park.    14350    845    2015-07-10 12:04:19    2015-07-10 12:04:19    1
4163    Disrupt readymade try-hard. Master portland pork belly health roof whatever polaroid. Etsy shoreditch taxidermy sustainable. Loko brooklyn craft beer cardigan chia pour-over taxidermy food truck. Meggings migas neutra kale chips celiac austin.    14639    596    2015-04-24 05:17:11    2015-04-24 05:17:11    1
4165    Vice helvetica lumbersexual microdosing. Seitan meggings stumptown kinfolk semiotics. Listicle skateboard chillwave migas food truck franzen plaid stumptown. Keffiyeh meh 3 wolf moon. Hashtag banh mi church-key neutra pbr&b fanny pack sriracha.    14617    878    2015-09-08 11:50:17    2015-09-08 11:50:17    1
4166    Butcher cold-pressed flexitarian microdosing chillwave dreamcatcher truffaut semiotics. Intelligentsia everyday letterpress green juice brunch pug paleo. Yr lomo trust fund kitsch tumblr wolf meh pitchfork. Meh fanny pack ennui bicycle rights.    11702    841    2015-04-23 14:49:48    2015-04-23 14:49:48    1
4167    Flannel sustainable ennui. Intelligentsia microdosing skateboard. Blog 8-bit bicycle rights occupy. Yuccie offal beard slow-carb synth. Flannel vinyl tofu ennui chillwave.    12964    716    2015-12-14 07:26:34    2015-12-14 07:26:34    1
4168    Chambray bicycle rights migas selvage lomo kombucha synth. Celiac listicle wolf health asymmetrical dreamcatcher cred next level. 90's before they sold out stumptown photo booth trust fund beard. 8-bit microdosing helvetica humblebrag wolf gastropub sustainable.    17958    554    2016-04-08 23:39:08    2016-04-08 23:39:08    1
4169    Bicycle rights poutine kale chips leggings yr tilde. Cred scenester kitsch organic cronut. Raw denim lumbersexual five dollar toast health. Knausgaard tacos tousled master shoreditch plaid. Gastropub pork belly lo-fi 3 wolf moon hella authentic tote bag.    17359    913    2016-03-15 08:49:39    2016-03-15 08:49:39    1
4170    Chambray fixie stumptown truffaut sustainable leggings diy plaid. Carry blog mustache messenger bag. Kickstarter wes anderson kombucha mumblecore.    18692    592    2015-09-24 13:26:57    2015-09-24 13:26:57    1
4171    Viral fingerstache roof loko chambray. Pinterest pbr&b aesthetic. Ugh master pickled waistcoat cornhole. Humblebrag brooklyn crucifix cleanse pour-over pork belly etsy marfa.    15802    873    2015-12-25 19:50:07    2015-12-25 19:50:07    1
4172    90's artisan biodiesel roof tacos whatever. Schlitz vhs mumblecore. Echo lumbersexual mixtape beard mustache fingerstache food truck brunch. Roof neutra 3 wolf moon keytar austin.    11752    589    2015-07-17 20:02:10    2015-07-17 20:02:10    1
4173    Lumbersexual hashtag messenger bag cold-pressed. Before they sold out kitsch lomo quinoa sartorial. Blog salvia umami hammock williamsburg 8-bit fanny pack park. 90's food truck before they sold out.    18150    839    2015-12-11 23:25:48    2015-12-11 23:25:48    1
4174    Art party beard helvetica listicle flannel selfies lumbersexual. Celiac pinterest chartreuse yuccie kogi. Kogi food truck squid bitters wayfarers.    16724    519    2015-11-16 21:38:22    2015-11-16 21:38:22    1
4175    Semiotics letterpress taxidermy kogi. Irony post-ironic messenger bag celiac health retro locavore. Seitan shoreditch gentrify. Swag mixtape letterpress photo booth truffaut keffiyeh.    12966    667    2015-08-11 10:52:32    2015-08-11 10:52:32    1
4176    Biodiesel truffaut kinfolk portland cardigan 8-bit. Butcher celiac food truck irony selfies scenester chartreuse pork belly. Humblebrag kogi try-hard bitters shoreditch diy. Pinterest meditation disrupt five dollar toast post-ironic hoodie. Mixtape vegan viral.    15716    852    2015-07-30 09:31:29    2015-07-30 09:31:29    1
4177    Deep v park bicycle rights plaid jean shorts messenger bag. Master loko sartorial blue bottle waistcoat. Meditation flannel pitchfork microdosing waistcoat hashtag pork belly migas.    18969    716    2015-06-07 12:06:52    2015-06-07 12:06:52    1
4180    Heirloom post-ironic you probably haven't heard of them quinoa. Hella mustache dreamcatcher flannel raw denim diy pbr&b. Cold-pressed kale chips raw denim tilde butcher put a bird on it forage.    16457    718    2016-02-02 00:16:34    2016-02-02 00:16:34    1
4181    Biodiesel banh mi butcher seitan neutra. Gastropub mumblecore cronut cleanse godard art party banh mi pinterest. Cleanse trust fund retro yr microdosing asymmetrical tofu intelligentsia.    11121    642    2015-06-19 06:44:51    2015-06-19 06:44:51    1
4182    Skateboard crucifix vinegar. Salvia selvage pbr&b vegan. Twee post-ironic vinyl chia bitters crucifix.    18078    657    2015-11-03 14:01:04    2015-11-03 14:01:04    1
4183    Put a bird on it church-key humblebrag sartorial. Tacos cold-pressed fanny pack +1 blog. Pug listicle tattooed distillery. Brunch deep v pinterest tacos. Hoodie mlkshk fixie dreamcatcher bitters.    15279    603    2016-04-19 21:02:24    2016-04-19 21:02:24    1
4184    Art party chambray authentic kale chips paleo chillwave tumblr. Echo thundercats meggings small batch. Tattooed chambray carry cliche kinfolk salvia. Health wayfarers hammock hashtag thundercats.    12987    754    2016-03-11 11:07:39    2016-03-11 11:07:39    1
4185    Thundercats austin retro vinyl. Goth health typewriter chambray. Banjo lumbersexual vice tilde vegan.    10744    687    2015-04-23 15:25:59    2015-04-23 15:25:59    1
4187    Blog neutra next level paleo small batch tacos kickstarter. Migas irony food truck. Pickled fingerstache chillwave fashion axe mlkshk intelligentsia godard.    14023    961    2016-01-06 17:33:26    2016-01-06 17:33:26    1
4188    Fingerstache vinyl shabby chic xoxo hammock irony. Cleanse keffiyeh sartorial typewriter mixtape synth sustainable normcore. Raw denim pabst skateboard locavore twee blog.    13516    789    2016-01-26 08:38:40    2016-01-26 08:38:40    1
4189    Stumptown meh lo-fi retro butcher williamsburg carry flexitarian. Fap yolo bitters thundercats mixtape. Distillery slow-carb kogi. Cleanse ugh selfies.    13453    876    2015-06-27 07:55:55    2015-06-27 07:55:55    1
4190    Mixtape yr beard kombucha keffiyeh distillery jean shorts whatever. Typewriter hammock kinfolk skateboard retro. Heirloom mumblecore semiotics keytar waistcoat tacos selfies scenester. Chartreuse austin iphone forage mustache ugh distillery. Cold-pressed locavore vice pbr&b dreamcatcher 8-bit.    17008    829    2016-03-03 10:24:00    2016-03-03 10:24:00    1
4256    Selfies wolf messenger bag banjo gentrify normcore. Hashtag humblebrag microdosing disrupt. Forage next level beard paleo put a bird on it echo.    13462    728    2015-05-09 05:02:39    2015-05-09 05:02:39    1
4191    Everyday you probably haven't heard of them poutine biodiesel next level post-ironic intelligentsia narwhal. Offal meditation salvia beard hoodie lumbersexual godard. Truffaut heirloom pug street pabst.    11551    895    2015-08-01 17:42:14    2015-08-01 17:42:14    1
4193    Quinoa waistcoat seitan cronut sustainable. Actually skateboard wes anderson cred vice gluten-free shoreditch. Typewriter try-hard mustache art party squid. Loko wes anderson fixie mustache kogi slow-carb mixtape etsy. Pickled vice goth slow-carb retro tofu yuccie.    18473    472    2015-06-28 21:38:27    2015-06-28 21:38:27    1
4194    Hella disrupt heirloom freegan. Tilde kombucha loko pbr&b synth portland mixtape jean shorts. Letterpress slow-carb etsy asymmetrical before they sold out chartreuse gastropub. Paleo portland stumptown mixtape ramps synth tacos.    16576    550    2015-12-10 04:19:20    2015-12-10 04:19:20    1
4195    Etsy kale chips bespoke letterpress umami literally venmo carry. Echo tousled literally plaid schlitz tacos humblebrag. Swag cray slow-carb. Freegan wayfarers selvage green juice yolo. Blog semiotics seitan bespoke craft beer beard.    15976    847    2015-06-19 22:41:53    2015-06-19 22:41:53    1
4196    Keytar artisan ramps tattooed hella. Jean shorts next level meh kinfolk slow-carb photo booth iphone. Aesthetic shabby chic whatever pbr&b tofu +1. Quinoa mlkshk tilde pickled post-ironic. Pickled kale chips cronut fap chambray taxidermy street.    11310    794    2015-09-22 20:43:47    2015-09-22 20:43:47    1
4197    Whatever fanny pack pitchfork. Keytar yr distillery chicharrones cred narwhal. Truffaut literally pbr&b fanny pack chicharrones.    11667    514    2015-04-25 18:14:40    2015-04-25 18:14:40    1
4198    Gluten-free gastropub listicle fanny pack vice. Actually diy pbr&b schlitz retro skateboard kale chips. Art party seitan deep v tattooed farm-to-table vinyl retro squid. Chillwave viral 3 wolf moon gastropub chicharrones occupy kinfolk mlkshk.    18901    752    2015-09-14 12:02:20    2015-09-14 12:02:20    1
4199    Roof kogi marfa brunch literally offal truffaut. Shoreditch gastropub locavore. Vinegar kickstarter lomo pickled flannel chambray.    11412    761    2015-07-07 22:47:08    2015-07-07 22:47:08    1
4201    Messenger bag brunch forage flexitarian cred pbr&b keytar. Cred cornhole loko cardigan selvage. Franzen shoreditch slow-carb street vinegar forage. Everyday scenester diy knausgaard skateboard.    15826    855    2015-12-07 19:51:09    2015-12-07 19:51:09    1
4202    Master blog kale chips occupy semiotics. Vhs 8-bit godard skateboard listicle kitsch beard trust fund. Cliche selfies master tumblr park. Shoreditch godard bushwick health mixtape shabby chic brunch.    12811    637    2016-02-07 16:59:12    2016-02-07 16:59:12    1
4203    Hoodie yr neutra chillwave letterpress kombucha freegan franzen. Biodiesel readymade fap migas bespoke salvia gastropub. Semiotics knausgaard taxidermy lumbersexual church-key cred. Pickled vinegar portland +1 yuccie try-hard. Health loko paleo migas.    17716    616    2015-12-07 19:48:26    2015-12-07 19:48:26    1
4204    Banh mi gastropub fingerstache. Fap drinking next level hoodie freegan dreamcatcher pbr&b. Offal umami kombucha. Hammock mlkshk seitan.    12910    818    2015-05-10 19:17:26    2015-05-10 19:17:26    1
4205    Tote bag direct trade mlkshk neutra helvetica wayfarers vinyl fashion axe. Waistcoat roof cornhole brooklyn. Organic ramps butcher vinyl williamsburg leggings.    14923    576    2015-05-25 06:58:33    2015-05-25 06:58:33    1
4206    Artisan leggings synth farm-to-table. Skateboard williamsburg meggings disrupt forage actually distillery. Umami shabby chic chicharrones health asymmetrical tousled. Master etsy small batch mlkshk. Bitters wolf flexitarian tilde xoxo.    12019    861    2015-07-12 23:42:12    2015-07-12 23:42:12    1
4207    Intelligentsia chambray vegan marfa celiac banh mi swag literally. Yolo fixie bicycle rights deep v cred. Yolo kinfolk food truck yr godard twee goth. Taxidermy mumblecore biodiesel deep v artisan literally.    17589    955    2015-04-24 21:09:13    2015-04-24 21:09:13    1
4208    Messenger bag williamsburg drinking. Authentic pork belly cray direct trade. Gluten-free irony banh mi tattooed. Street tattooed pitchfork plaid retro synth humblebrag. Helvetica authentic cliche occupy actually leggings biodiesel +1.    17901    480    2015-07-01 18:12:08    2015-07-01 18:12:08    1
4209    Helvetica diy ramps humblebrag pickled celiac vinyl. Swag yuccie 3 wolf moon tilde literally mustache. Church-key authentic polaroid hella fap tilde fanny pack.    18683    868    2015-10-01 00:45:23    2015-10-01 00:45:23    1
4210    Mlkshk before they sold out try-hard tacos. Diy whatever cornhole bespoke helvetica. Church-key semiotics letterpress stumptown paleo pop-up. Seitan tattooed meggings marfa pug five dollar toast farm-to-table bushwick.    11038    807    2015-07-31 22:51:42    2015-07-31 22:51:42    1
4211    Pabst meh cray artisan. Squid cronut synth viral tote bag cornhole franzen 8-bit. Readymade kickstarter twee.    15226    474    2016-03-28 15:08:46    2016-03-28 15:08:46    1
4212    Lo-fi locavore deep v pinterest photo booth. Wolf park locavore bitters gluten-free cred loko. Kitsch flexitarian umami.    17870    613    2016-01-29 04:20:58    2016-01-29 04:20:58    1
4213    Kombucha gastropub tousled godard pickled park. Tilde tofu lomo organic wes anderson gentrify brunch. Hammock kitsch selfies mlkshk. Microdosing portland tote bag meh. Vhs tilde migas artisan gentrify brooklyn.    15985    493    2015-04-22 06:56:19    2015-04-22 06:56:19    1
4214    Kitsch wayfarers cornhole deep v aesthetic. Ennui cliche taxidermy park selfies bitters. Echo post-ironic actually 8-bit tofu swag tilde raw denim. Franzen disrupt marfa pop-up cold-pressed vhs mixtape roof. Hella pinterest messenger bag 3 wolf moon fingerstache portland.    18941    707    2015-10-30 09:14:37    2015-10-30 09:14:37    1
4215    Meggings single-origin coffee authentic mumblecore beard schlitz raw denim ugh. Meditation typewriter next level. Cleanse blue bottle truffaut readymade single-origin coffee biodiesel before they sold out ennui.    18751    650    2015-12-22 18:37:54    2015-12-22 18:37:54    1
4217    Marfa asymmetrical carry butcher. Selfies master dreamcatcher blue bottle kombucha mumblecore health small batch. Squid kinfolk tattooed dreamcatcher. Street leggings hoodie helvetica. Everyday skateboard direct trade helvetica.    17561    638    2016-02-15 19:49:15    2016-02-15 19:49:15    1
4218    Before they sold out kogi yuccie iphone waistcoat. Truffaut typewriter authentic photo booth bespoke art party heirloom. Health franzen small batch echo polaroid knausgaard listicle. Selfies bushwick tumblr. Cornhole asymmetrical church-key.    16542    472    2015-12-02 06:31:46    2015-12-02 06:31:46    1
4219    Hammock before they sold out dreamcatcher. Pop-up photo booth forage meditation wolf tacos lumbersexual. Fingerstache actually biodiesel put a bird on it tousled yolo fanny pack vhs. Tofu freegan cornhole roof stumptown. Church-key seitan drinking celiac normcore readymade semiotics ramps.    12544    865    2015-06-14 03:12:12    2015-06-14 03:12:12    1
4220    Ugh crucifix blue bottle neutra pbr&b. Etsy gentrify marfa quinoa offal meh portland yr. Venmo craft beer fingerstache skateboard green juice.    11675    636    2016-03-26 04:28:47    2016-03-26 04:28:47    1
4221    Put a bird on it craft beer tofu direct trade meditation portland small batch paleo. Trust fund mumblecore loko fixie squid craft beer. Forage irony pour-over small batch occupy meditation selfies. Roof whatever +1.    15801    840    2016-01-21 21:37:21    2016-01-21 21:37:21    1
4222    Selvage cliche keffiyeh. Umami gentrify wes anderson marfa hashtag listicle leggings. Asymmetrical trust fund butcher gentrify godard occupy. Authentic bitters quinoa cleanse before they sold out. Migas banjo neutra.    17812    515    2016-03-08 23:30:02    2016-03-08 23:30:02    1
4224    Ethical wayfarers truffaut cronut normcore tattooed meggings roof. Banh mi kogi bicycle rights vinyl biodiesel. Art party pickled flannel aesthetic beard hammock. Literally bicycle rights 8-bit mustache sustainable beard chicharrones.    15518    923    2015-08-26 20:49:21    2015-08-26 20:49:21    1
4225    Twee marfa cronut wes anderson authentic lomo migas knausgaard. Yuccie narwhal humblebrag swag next level street carry. Mlkshk street 90's tilde pickled sriracha. Seitan fingerstache 3 wolf moon. Chambray poutine single-origin coffee ethical pinterest.    18897    765    2015-10-23 18:25:12    2015-10-23 18:25:12    1
4226    Aesthetic echo messenger bag. Direct trade meggings artisan hammock park semiotics ennui. Lumbersexual tacos bitters letterpress truffaut brooklyn roof yr.    10165    787    2015-08-07 09:36:04    2015-08-07 09:36:04    1
4227    Roof keytar yolo pop-up before they sold out everyday. Dreamcatcher fingerstache kitsch aesthetic. Cold-pressed paleo street.    12192    669    2015-10-19 07:51:31    2015-10-19 07:51:31    1
4228    Cray carry umami pug keffiyeh fanny pack chillwave. Retro photo booth direct trade wayfarers green juice. Street franzen knausgaard tattooed organic.    13770    833    2016-01-23 10:54:57    2016-01-23 10:54:57    1
4229    Everyday asymmetrical blue bottle heirloom whatever art party tilde. Banjo single-origin coffee gluten-free roof. Wolf chicharrones portland helvetica normcore seitan godard austin. Messenger bag scenester literally neutra. Yuccie everyday chartreuse gluten-free.    11496    932    2015-12-19 23:24:22    2015-12-19 23:24:22    1
4230    Ugh yr retro fap single-origin coffee normcore fanny pack. Offal listicle neutra +1 deep v cliche lumbersexual. Vhs cliche sriracha flannel keffiyeh.    10867    900    2016-01-13 23:22:54    2016-01-13 23:22:54    1
4231    Chambray mixtape gastropub aesthetic selvage paleo helvetica. Humblebrag farm-to-table intelligentsia chicharrones fashion axe truffaut. Flexitarian occupy freegan skateboard five dollar toast knausgaard polaroid.    12111    580    2016-01-21 23:37:36    2016-01-21 23:37:36    1
4232    Scenester narwhal disrupt craft beer microdosing yr. Cornhole farm-to-table swag bespoke tousled celiac seitan dreamcatcher. Bespoke viral pitchfork five dollar toast.    15148    669    2015-10-16 20:20:30    2015-10-16 20:20:30    1
4233    Synth lomo ethical beard. Lo-fi photo booth brunch actually leggings banh mi roof. Selfies migas knausgaard. Ramps squid gastropub skateboard truffaut chartreuse.    11952    860    2016-03-15 15:01:35    2016-03-15 15:01:35    1
4234    Slow-carb cred selvage. Roof goth migas offal. Selvage bespoke williamsburg farm-to-table. Gluten-free paleo wolf etsy ennui lo-fi crucifix.    14161    637    2015-12-11 04:48:45    2015-12-11 04:48:45    1
4235    Taxidermy flexitarian locavore. Artisan swag flexitarian lo-fi bushwick kogi. Aesthetic williamsburg dreamcatcher gluten-free.    17017    484    2015-05-13 00:36:09    2015-05-13 00:36:09    1
4236    Ugh vhs migas cardigan tilde art party stumptown. Small batch mixtape next level cold-pressed waistcoat vhs. Pop-up lomo tofu kickstarter ethical narwhal ugh venmo. Marfa typewriter brunch.    10757    582    2015-09-11 18:58:19    2015-09-11 18:58:19    1
4237    Plaid you probably haven't heard of them ugh before they sold out fingerstache offal narwhal cliche. Pabst post-ironic gentrify butcher pug aesthetic gastropub kombucha. Ennui pork belly wayfarers gluten-free meditation.    13047    860    2015-11-08 17:20:54    2015-11-08 17:20:54    1
4238    Bicycle rights meh street twee bushwick. Meditation kitsch art party gastropub poutine raw denim. Retro loko pug.    14540    895    2015-06-12 22:18:15    2015-06-12 22:18:15    1
4239    Helvetica migas meh semiotics retro. Godard tofu squid tilde. Pork belly church-key blog yuccie chia deep v xoxo paleo. Blue bottle wayfarers fanny pack pop-up dreamcatcher health. Marfa yr loko tofu pop-up food truck.    12576    760    2015-12-07 16:56:38    2015-12-07 16:56:38    1
4240    Hashtag heirloom pour-over. Neutra cold-pressed wolf helvetica everyday cronut. Butcher roof chia migas art party celiac. Lo-fi bitters 90's chicharrones occupy messenger bag stumptown. Food truck health yolo distillery pickled keffiyeh fanny pack lomo.    13181    817    2016-02-06 19:21:16    2016-02-06 19:21:16    1
4241    Readymade art party tofu blog pickled fanny pack master goth. Kitsch salvia farm-to-table kombucha kogi flannel pour-over. Pop-up etsy meggings 3 wolf moon leggings cardigan park schlitz.    18001    871    2015-10-18 09:04:57    2015-10-18 09:04:57    1
4242    Vegan pickled mumblecore 8-bit readymade asymmetrical truffaut. 3 wolf moon dreamcatcher xoxo before they sold out. Chia hoodie mixtape messenger bag photo booth shoreditch pug kitsch.    15770    618    2015-07-26 19:43:51    2015-07-26 19:43:51    1
4243    Microdosing yuccie try-hard shoreditch. Readymade xoxo tumblr trust fund 90's. Bitters cleanse sriracha. Occupy bitters photo booth sartorial yr godard +1. Art party raw denim post-ironic 3 wolf moon everyday trust fund loko.    12471    915    2015-04-22 16:57:24    2015-04-22 16:57:24    1
4245    Fap irony chillwave 3 wolf moon truffaut slow-carb viral farm-to-table. Pbr&b bespoke photo booth celiac loko. Mumblecore aesthetic dreamcatcher blog neutra. Truffaut swag art party.    15698    945    2015-08-31 12:30:32    2015-08-31 12:30:32    1
4246    Kitsch raw denim stumptown yolo pinterest microdosing vinyl quinoa. Meh locavore pinterest tilde church-key quinoa. Disrupt drinking swag craft beer.    14827    909    2015-05-03 21:37:09    2015-05-03 21:37:09    1
4247    Everyday lomo ramps bicycle rights art party street hammock fashion axe. Ramps forage bespoke 3 wolf moon microdosing. Gluten-free sustainable beard.    11981    483    2016-01-04 16:15:27    2016-01-04 16:15:27    1
4248    90's farm-to-table skateboard kombucha pickled meh. Craft beer letterpress roof viral health. Drinking cray ethical shabby chic. Skateboard leggings fingerstache photo booth.    18630    483    2015-09-28 00:08:29    2015-09-28 00:08:29    1
4249    Flexitarian kickstarter cardigan dreamcatcher pop-up biodiesel wes anderson retro. Raw denim gastropub heirloom whatever. Green juice organic synth yuccie hella. Goth thundercats ethical brunch bicycle rights occupy. Cred pug ramps.    16416    723    2015-05-20 20:50:43    2015-05-20 20:50:43    1
4250    Crucifix park direct trade helvetica. Viral fap scenester ugh sustainable asymmetrical slow-carb. Fashion axe art party carry post-ironic banh mi plaid pinterest swag. Raw denim umami 8-bit ethical park yuccie stumptown.    10059    737    2015-06-14 13:39:09    2015-06-14 13:39:09    1
4251    Shabby chic cliche master ennui kogi. Seitan raw denim beard gluten-free organic pug. Letterpress put a bird on it intelligentsia. Cred bicycle rights salvia crucifix aesthetic everyday organic synth.    15555    902    2015-11-27 04:33:11    2015-11-27 04:33:11    1
4252    Echo selfies etsy chillwave 8-bit. Waistcoat roof stumptown wayfarers selfies mustache. Carry franzen pickled flannel whatever synth. Pop-up carry pickled bespoke chambray goth selfies street. Paleo brunch shoreditch meggings yr intelligentsia pitchfork keffiyeh.    14284    634    2015-11-02 05:43:47    2015-11-02 05:43:47    1
4253    Lumbersexual listicle pabst swag bespoke meditation. Stumptown chartreuse farm-to-table retro drinking. Hoodie dreamcatcher ennui gentrify pork belly before they sold out tumblr master. Quinoa meh letterpress selvage tote bag literally.    14974    501    2015-07-26 21:56:21    2015-07-26 21:56:21    1
4254    Chia kitsch kombucha quinoa. Bicycle rights crucifix artisan tilde. Photo booth butcher chia readymade kitsch.    12057    681    2016-01-07 02:51:25    2016-01-07 02:51:25    1
4255    Whatever letterpress messenger bag +1 swag. Shoreditch asymmetrical church-key meggings bicycle rights yr. Tote bag trust fund beard echo.    12938    495    2015-06-11 07:56:42    2015-06-11 07:56:42    1
4257    Raw denim kinfolk occupy actually. Lomo twee plaid. 8-bit hammock williamsburg jean shorts. Austin raw denim tofu celiac. Wolf pour-over lo-fi.    14727    663    2015-07-02 07:52:21    2015-07-02 07:52:21    1
4258    Ennui flexitarian dreamcatcher leggings microdosing pug yr cardigan. Gluten-free food truck crucifix retro. Pork belly carry letterpress photo booth kinfolk aesthetic wolf jean shorts. Flexitarian try-hard drinking blog cray kale chips five dollar toast. Retro mustache poutine farm-to-table yuccie leggings xoxo lumbersexual.    12060    611    2015-07-19 23:36:30    2015-07-19 23:36:30    1
4259    Twee art party knausgaard selvage pinterest. Trust fund cred taxidermy locavore cleanse. Seitan fixie brooklyn ugh typewriter farm-to-table scenester. Listicle iphone cray pork belly neutra jean shorts pabst mlkshk.    14567    575    2015-06-12 20:48:21    2015-06-12 20:48:21    1
4260    Synth wes anderson try-hard 3 wolf moon whatever pug lomo etsy. Diy offal deep v dreamcatcher. Messenger bag butcher ennui craft beer fixie.    13878    559    2015-08-19 19:55:54    2015-08-19 19:55:54    1
4261    Mlkshk narwhal blog plaid cleanse waistcoat. Shabby chic flexitarian organic keffiyeh meh. Shoreditch mixtape jean shorts raw denim banh mi farm-to-table. Cray pinterest marfa you probably haven't heard of them skateboard vice chia.    16559    735    2015-09-28 12:49:55    2015-09-28 12:49:55    1
4262    Before they sold out 3 wolf moon disrupt polaroid chia. Truffaut chartreuse cleanse kinfolk helvetica shoreditch flexitarian. Iphone craft beer hella fingerstache pabst typewriter. Tote bag banjo occupy hoodie paleo diy ugh.    13108    607    2015-08-21 09:43:33    2015-08-21 09:43:33    1
4263    Mixtape tote bag cronut. Loko diy schlitz quinoa paleo iphone chillwave meditation. Celiac actually mustache chicharrones kogi. Pork belly vhs roof. Wes anderson heirloom vinyl chartreuse plaid.    14010    525    2016-04-05 00:58:46    2016-04-05 00:58:46    1
4264    Put a bird on it cred plaid. Loko pickled flexitarian cold-pressed banjo disrupt organic. Sartorial forage yr slow-carb microdosing seitan echo waistcoat.    17974    946    2015-05-03 08:43:56    2015-05-03 08:43:56    1
4265    Kombucha irony marfa bespoke lumbersexual fixie. 90's franzen gentrify. Narwhal bespoke craft beer offal chartreuse ennui truffaut. Plaid viral fap trust fund. Hammock narwhal farm-to-table viral green juice shoreditch.    10754    499    2015-09-23 14:25:30    2015-09-23 14:25:30    1
4303    Pabst banjo you probably haven't heard of them microdosing synth gastropub salvia. Paleo chia shoreditch viral vegan literally. Aesthetic thundercats vice lomo. Seitan loko banjo cleanse.    18065    778    2015-11-06 09:46:04    2015-11-06 09:46:04    1
4266    Drinking direct trade green juice. Xoxo food truck cliche brunch. Irony fingerstache neutra listicle whatever cliche swag single-origin coffee. Park ramps flannel pop-up shoreditch quinoa ugh. Everyday narwhal helvetica wayfarers photo booth chia celiac authentic.    13279    813    2015-11-10 16:47:29    2015-11-10 16:47:29    1
4267    Listicle brunch hashtag venmo whatever deep v. Brunch hammock fingerstache tattooed yr intelligentsia locavore. Scenester you probably haven't heard of them bicycle rights pop-up green juice 8-bit food truck.    10413    505    2015-12-13 05:19:29    2015-12-13 05:19:29    1
4268    Ramps street heirloom sustainable sartorial hella pour-over. Asymmetrical plaid +1 chicharrones letterpress shoreditch banh mi flexitarian. Carry shabby chic tumblr pbr&b normcore forage butcher skateboard. Messenger bag neutra banjo bitters you probably haven't heard of them aesthetic etsy helvetica. Cred umami post-ironic ethical.    15329    487    2015-05-22 01:17:54    2015-05-22 01:17:54    1
4269    Kogi health art party vegan actually. Shoreditch goth tacos artisan 8-bit butcher tousled readymade. Direct trade fingerstache occupy narwhal cray meggings trust fund literally. Tofu lomo pinterest cray aesthetic 90's skateboard gastropub. Vinyl vinegar venmo stumptown.    12250    641    2015-06-28 04:00:54    2015-06-28 04:00:54    1
4270    Cold-pressed chartreuse authentic intelligentsia vhs neutra semiotics. Lomo ethical cred skateboard hammock yr swag before they sold out. Small batch fashion axe bespoke squid umami +1 messenger bag.    14234    479    2015-09-02 18:58:04    2015-09-02 18:58:04    1
4271    8-bit craft beer austin semiotics pabst truffaut. Irony pitchfork echo. Marfa viral banh mi. Celiac pabst hoodie whatever flannel lumbersexual pour-over listicle.    12100    881    2015-04-24 13:03:03    2015-04-24 13:03:03    1
4272    Kickstarter franzen synth hella you probably haven't heard of them farm-to-table etsy tofu. Brooklyn pour-over polaroid venmo roof brunch. Hashtag messenger bag authentic whatever umami.    17420    949    2015-12-06 22:38:18    2015-12-06 22:38:18    1
4273    Health cred letterpress cliche poutine. Franzen diy art party umami kombucha. Beard salvia ennui mustache intelligentsia dreamcatcher. Biodiesel pork belly meggings wayfarers cray carry chambray. Cleanse narwhal sustainable paleo intelligentsia.    15333    737    2015-07-17 18:15:16    2015-07-17 18:15:16    1
4274    Ramps next level knausgaard you probably haven't heard of them. Biodiesel 8-bit loko mustache farm-to-table leggings. Roof next level tattooed vinegar plaid distillery cronut. Whatever artisan pbr&b retro portland. Pour-over quinoa mustache.    12281    679    2015-12-07 09:55:33    2015-12-07 09:55:33    1
4277    Tacos truffaut williamsburg venmo raw denim. Whatever brunch +1 fingerstache microdosing kinfolk letterpress salvia. Irony leggings portland. Park kale chips bicycle rights pabst.    10977    654    2015-06-12 00:43:42    2015-06-12 00:43:42    1
4278    Schlitz etsy leggings mustache meggings pour-over. Keffiyeh xoxo disrupt lumbersexual beard kickstarter. Park beard keytar brooklyn. Locavore organic roof cronut mlkshk lumbersexual selfies.    14832    636    2015-08-19 07:11:31    2015-08-19 07:11:31    1
4279    Tacos listicle tilde deep v aesthetic lomo 3 wolf moon try-hard. Photo booth swag typewriter shoreditch sriracha letterpress franzen. Kogi freegan skateboard green juice twee kickstarter cardigan occupy. Quinoa fanny pack kinfolk messenger bag tacos poutine.    15573    910    2015-07-01 15:58:02    2015-07-01 15:58:02    1
4280    Humblebrag normcore xoxo banjo pop-up +1. Meh intelligentsia distillery ugh brooklyn. Lomo mlkshk diy.    12518    891    2015-10-22 01:14:37    2015-10-22 01:14:37    1
4282    Fashion axe slow-carb williamsburg. Five dollar toast lomo cray everyday wayfarers disrupt. Celiac selfies tumblr mumblecore semiotics chartreuse. 90's iphone literally.    18747    681    2016-02-18 05:57:12    2016-02-18 05:57:12    1
4283    Raw denim mustache health celiac iphone. Street poutine offal deep v bushwick kale chips everyday typewriter. Pbr&b 8-bit cronut kale chips schlitz. Umami drinking polaroid seitan meditation retro park.    14211    883    2015-11-22 08:38:50    2015-11-22 08:38:50    1
4284    Pitchfork vinegar ugh park paleo actually before they sold out bespoke. Keffiyeh flexitarian small batch artisan fingerstache. Literally banjo keytar.    16069    680    2015-12-29 18:41:03    2015-12-29 18:41:03    1
4286    Hammock stumptown sriracha master tattooed health. Five dollar toast mumblecore freegan humblebrag meh meggings leggings fingerstache. Food truck organic retro.    15697    606    2016-03-16 12:19:36    2016-03-16 12:19:36    1
4287    Kale chips lo-fi microdosing vhs offal cornhole vice. Paleo organic +1 normcore yuccie keytar fashion axe pop-up. Flexitarian raw denim typewriter flannel ramps hammock.    11123    584    2015-04-27 14:24:34    2015-04-27 14:24:34    1
4288    Pabst beard jean shorts bushwick viral chartreuse irony distillery. Small batch tumblr crucifix actually pour-over. Actually readymade yr ethical bicycle rights. Typewriter letterpress sartorial you probably haven't heard of them. Chartreuse vice cardigan yr.    11387    542    2015-09-17 09:36:52    2015-09-17 09:36:52    1
4289    +1 wayfarers try-hard park helvetica raw denim keffiyeh. Occupy godard beard twee. Drinking park keytar wolf. Asymmetrical gastropub mlkshk pbr&b bitters tacos. Ethical salvia tousled.    16630    886    2015-08-18 04:52:51    2015-08-18 04:52:51    1
4293    Austin ramps banjo organic lumbersexual craft beer salvia lo-fi. Chambray 90's cleanse lomo 3 wolf moon letterpress drinking. Cronut hashtag beard pitchfork park.    18873    568    2015-08-30 08:22:20    2015-08-30 08:22:20    1
4295    Try-hard iphone pbr&b williamsburg mlkshk tacos. Pickled health cornhole selfies. Gastropub bicycle rights yolo. Church-key helvetica direct trade.    11486    714    2015-09-27 08:27:44    2015-09-27 08:27:44    1
4296    Chicharrones stumptown dreamcatcher everyday heirloom kale chips. Shabby chic retro five dollar toast salvia vegan. Portland next level try-hard vegan bitters brunch. Yr tousled chillwave +1 3 wolf moon semiotics fingerstache meggings. Bicycle rights aesthetic viral marfa distillery butcher 3 wolf moon photo booth.    13038    686    2015-05-17 21:42:40    2015-05-17 21:42:40    1
4297    Crucifix cardigan meggings letterpress bushwick art party chillwave. Mixtape street literally pitchfork post-ironic mlkshk messenger bag. Scenester try-hard butcher.    14802    502    2015-10-11 01:24:24    2015-10-11 01:24:24    1
4299    Quinoa brooklyn diy kickstarter chartreuse loko. Microdosing letterpress pickled. Vegan church-key intelligentsia vinyl fingerstache. Intelligentsia five dollar toast aesthetic distillery stumptown tofu lumbersexual art party. Pinterest marfa occupy freegan.    16355    475    2015-05-04 03:39:18    2015-05-04 03:39:18    1
4300    Lomo shoreditch squid locavore leggings artisan. Before they sold out pitchfork art party tofu try-hard. Cleanse deep v sriracha forage echo skateboard fashion axe.    12645    674    2015-11-09 11:59:12    2015-11-09 11:59:12    1
4301    Cronut street brooklyn. Beard drinking art party pinterest marfa pbr&b sriracha. Kombucha stumptown lo-fi sriracha seitan jean shorts. Schlitz brunch gluten-free narwhal readymade carry normcore. Tofu meh you probably haven't heard of them shabby chic wes anderson godard deep v helvetica.    16403    888    2015-11-01 11:27:20    2015-11-01 11:27:20    1
4302    Actually tilde synth five dollar toast letterpress. Slow-carb raw denim green juice semiotics salvia 3 wolf moon +1. Narwhal gastropub kogi pbr&b tilde kickstarter crucifix. Locavore paleo small batch flexitarian kombucha meggings. Thundercats carry salvia pitchfork hoodie try-hard.    15676    762    2015-11-19 16:18:46    2015-11-19 16:18:46    1
4339    Put a bird on it kombucha vhs master banh mi. Jean shorts literally typewriter wes anderson tilde ethical freegan. Helvetica health sustainable loko.    11677    750    2015-09-16 21:55:11    2015-09-16 21:55:11    1
4304    Bushwick sartorial humblebrag brooklyn goth listicle. Umami goth roof master letterpress. Carry cronut readymade goth flannel microdosing. Loko plaid cronut hella direct trade fashion axe waistcoat.    10194    776    2015-12-02 01:52:55    2015-12-02 01:52:55    1
4305    Carry chambray listicle vice echo single-origin coffee fanny pack literally. Thundercats lumbersexual fap knausgaard kale chips ramps. Readymade fap craft beer.    18871    866    2015-11-16 17:43:09    2015-11-16 17:43:09    1
4306    Hoodie normcore stumptown farm-to-table food truck street. Single-origin coffee seitan vinyl pinterest loko. Cornhole slow-carb deep v plaid pbr&b letterpress kale chips fixie. Sriracha flannel ennui art party pork belly cliche wayfarers.    18864    748    2016-01-09 12:06:31    2016-01-09 12:06:31    1
4307    Lumbersexual skateboard typewriter. Sustainable truffaut trust fund banjo. Tilde health bicycle rights. Franzen fingerstache cleanse yolo mustache cardigan cold-pressed seitan. Seitan 90's lo-fi asymmetrical vegan roof cray.    13055    599    2015-04-30 01:08:14    2015-04-30 01:08:14    1
4308    Fixie hoodie pop-up retro vinyl marfa pinterest. Yuccie schlitz swag salvia banjo. Pork belly marfa tumblr kickstarter intelligentsia selvage raw denim. Lo-fi cray brunch 3 wolf moon tote bag pork belly cronut. Keffiyeh scenester xoxo loko small batch distillery vhs narwhal.    10680    474    2015-12-08 10:35:24    2015-12-08 10:35:24    1
4309    Humblebrag squid tousled cred small batch chicharrones pork belly keytar. Church-key venmo health yr direct trade distillery vinyl. Meggings jean shorts lomo green juice art party godard skateboard. Locavore +1 pork belly tofu knausgaard. Actually brooklyn sriracha freegan mixtape cleanse.    17228    553    2015-05-14 16:07:57    2015-05-14 16:07:57    1
4310    Direct trade narwhal yr sustainable semiotics chambray thundercats. Master meditation seitan next level truffaut post-ironic. Selvage artisan tousled dreamcatcher roof.    14497    810    2015-12-25 00:11:38    2015-12-25 00:11:38    1
4311    Franzen intelligentsia direct trade crucifix. Park butcher 8-bit. Squid 90's scenester. Wolf austin gastropub jean shorts cold-pressed. Knausgaard sartorial kickstarter humblebrag gentrify 90's shabby chic offal.    14230    816    2015-05-27 11:58:32    2015-05-27 11:58:32    1
4312    Gentrify tousled farm-to-table health banh mi letterpress selvage. Ugh offal artisan fap taxidermy blog xoxo paleo. Biodiesel raw denim meditation chartreuse fixie.    11860    818    2015-07-16 14:10:42    2015-07-16 14:10:42    1
4313    Offal plaid biodiesel before they sold out echo fashion axe. Viral bicycle rights thundercats tattooed. Bitters gluten-free direct trade park 90's meh.    13033    521    2016-01-19 10:56:28    2016-01-19 10:56:28    1
4314    Listicle trust fund gluten-free cornhole mumblecore. Distillery cred craft beer next level loko tofu lomo. Pinterest cardigan shoreditch kickstarter fashion axe yuccie organic flexitarian. Asymmetrical photo booth mlkshk wolf fanny pack you probably haven't heard of them. 3 wolf moon everyday wes anderson skateboard humblebrag meggings bespoke celiac.    18043    871    2015-11-19 21:43:03    2015-11-19 21:43:03    1
4315    Gastropub pabst meh sustainable. Deep v kickstarter pinterest occupy mlkshk cred. Migas health food truck put a bird on it +1 portland. Blog pitchfork locavore.    10307    684    2015-09-24 01:12:07    2015-09-24 01:12:07    1
4317    Echo sriracha direct trade church-key carry chia skateboard pabst. 8-bit before they sold out meggings cornhole. Narwhal occupy try-hard before they sold out. Cold-pressed single-origin coffee echo pitchfork craft beer semiotics. Green juice before they sold out seitan vinegar pour-over.    15953    919    2016-03-17 04:17:46    2016-03-17 04:17:46    1
4319    Mustache meggings heirloom austin fanny pack hella. Distillery kombucha keffiyeh brooklyn migas typewriter tumblr leggings. Carry normcore authentic beard wayfarers. Narwhal direct trade helvetica. Squid seitan brunch fashion axe helvetica humblebrag ramps lumbersexual.    11462    829    2015-12-22 20:14:18    2015-12-22 20:14:18    1
4320    Biodiesel marfa semiotics gluten-free retro cleanse echo. Ramps listicle pour-over pork belly vice drinking scenester put a bird on it. Gentrify ennui vinyl meggings ramps 3 wolf moon. Kickstarter literally tofu beard franzen vhs. Iphone semiotics hoodie umami kitsch.    10455    729    2016-03-02 00:47:16    2016-03-02 00:47:16    1
4321    Yuccie neutra austin biodiesel goth pinterest slow-carb. Roof ethical keffiyeh humblebrag sustainable polaroid. Keytar meggings tattooed pop-up five dollar toast iphone art party vinegar. Migas wayfarers salvia pop-up fixie banh mi.    11510    699    2015-11-01 03:22:20    2015-11-01 03:22:20    1
4324    Plaid tacos cred tattooed seitan waistcoat selfies. Narwhal marfa gentrify swag. Occupy ugh street. 90's semiotics hashtag cronut hoodie scenester humblebrag swag. Artisan lumbersexual mlkshk.    18029    668    2015-10-20 23:38:49    2015-10-20 23:38:49    1
4325    Pickled mlkshk godard slow-carb blue bottle wolf gastropub park. Slow-carb mustache tumblr meh deep v. Lumbersexual brunch wes anderson gastropub. Distillery flannel yolo ethical scenester narwhal. Chia craft beer pabst kombucha single-origin coffee keffiyeh.    13213    609    2016-01-22 01:52:21    2016-01-22 01:52:21    1
4326    Humblebrag tousled microdosing pop-up squid paleo. Wes anderson fixie brooklyn umami keytar. Church-key diy fanny pack kogi typewriter portland. Small batch aesthetic intelligentsia hella etsy park before they sold out. Kombucha quinoa bushwick xoxo.    10816    696    2015-05-13 03:52:45    2015-05-13 03:52:45    1
4327    Banh mi pork belly drinking. Leggings trust fund pour-over sustainable helvetica. Leggings gentrify cardigan polaroid poutine shabby chic. Godard whatever typewriter tote bag cray sartorial. Mustache ugh migas ramps.    17558    886    2016-03-30 15:02:54    2016-03-30 15:02:54    1
4328    Forage paleo crucifix yolo biodiesel craft beer venmo keffiyeh. Echo godard bicycle rights 8-bit beard. Umami truffaut chia tofu craft beer tote bag pour-over lo-fi.    18121    750    2015-11-29 14:22:49    2015-11-29 14:22:49    1
4329    Craft beer locavore whatever meh kinfolk crucifix heirloom godard. Try-hard street disrupt gastropub. Beard direct trade cold-pressed authentic ethical.    16438    495    2016-01-21 14:56:34    2016-01-21 14:56:34    1
4331    Cornhole hammock synth you probably haven't heard of them literally shabby chic. Next level sriracha cornhole everyday offal. Wes anderson church-key distillery park. Cronut scenester bespoke microdosing bitters hella salvia keytar.    17269    734    2015-12-05 01:11:11    2015-12-05 01:11:11    1
4332    Pickled pop-up tote bag mustache loko bicycle rights hammock disrupt. Selfies paleo schlitz. Actually trust fund pinterest. Jean shorts shabby chic keffiyeh locavore messenger bag. Squid post-ironic raw denim migas photo booth.    18222    805    2015-10-14 01:54:02    2015-10-14 01:54:02    1
4335    Kogi mustache biodiesel cred 90's tacos hella ramps. Iphone locavore roof sartorial disrupt venmo portland mlkshk. Kombucha normcore squid. +1 hoodie selfies organic portland.    11004    484    2015-09-26 03:57:38    2015-09-26 03:57:38    1
4336    Cliche pitchfork occupy. 3 wolf moon carry bitters park tumblr pug slow-carb godard. Street kinfolk roof butcher tofu microdosing disrupt. Keytar pitchfork photo booth freegan.    18330    613    2015-11-21 02:43:13    2015-11-21 02:43:13    1
4337    Schlitz vinyl williamsburg aesthetic austin ethical before they sold out. Listicle kale chips poutine shoreditch. Wes anderson post-ironic hammock marfa cleanse typewriter polaroid offal.    16523    832    2015-09-16 20:07:51    2015-09-16 20:07:51    1
4338    Meggings yolo artisan tattooed. Keffiyeh blog xoxo neutra banh mi meggings plaid squid. Disrupt banjo semiotics godard fashion axe waistcoat. Fanny pack mlkshk bitters yolo schlitz semiotics offal.    17514    960    2016-02-14 16:02:58    2016-02-14 16:02:58    1
4340    Marfa blue bottle thundercats chartreuse shabby chic gluten-free tilde. Swag knausgaard yr. Ethical vice aesthetic mixtape trust fund chambray +1 street.    18265    650    2016-01-11 15:04:03    2016-01-11 15:04:03    1
4341    Readymade brunch austin keytar meggings pitchfork irony. Blue bottle drinking put a bird on it vinegar pbr&b. Cray humblebrag skateboard freegan lumbersexual mlkshk flannel portland.    18408    845    2015-08-27 20:17:59    2015-08-27 20:17:59    1
4342    Authentic art party food truck bushwick. Knausgaard dreamcatcher semiotics neutra asymmetrical. Hoodie five dollar toast microdosing biodiesel.    14753    918    2015-05-18 05:59:27    2015-05-18 05:59:27    1
4343    Kitsch fashion axe diy aesthetic chicharrones. Thundercats bicycle rights selfies fingerstache cray squid disrupt. Everyday mixtape franzen chillwave selfies diy semiotics. Synth roof lo-fi leggings.    10371    617    2015-07-11 14:04:04    2015-07-11 14:04:04    1
4345    Authentic bushwick +1. Readymade mumblecore pinterest synth kombucha whatever put a bird on it. Offal keytar readymade hoodie try-hard trust fund. Shabby chic green juice gentrify disrupt. Yr street ramps.    18837    843    2015-09-18 04:41:55    2015-09-18 04:41:55    1
4346    Quinoa gentrify actually kogi skateboard post-ironic organic. Aesthetic pug loko tilde flannel lo-fi. Messenger bag craft beer loko lumbersexual. Try-hard wolf quinoa. Pabst pickled yr.    12116    813    2015-07-20 08:47:47    2015-07-20 08:47:47    1
4347    Crucifix everyday austin retro mixtape fap. Quinoa narwhal disrupt lumbersexual. Vhs put a bird on it hella trust fund yuccie marfa cardigan. Keytar meditation kogi vice godard. Forage park scenester freegan.    16664    856    2015-10-13 07:46:11    2015-10-13 07:46:11    1
4348    Shabby chic intelligentsia tilde kinfolk celiac put a bird on it xoxo. Heirloom vegan pickled 3 wolf moon skateboard. Whatever +1 truffaut church-key everyday yr.    16549    687    2015-05-16 03:01:05    2015-05-16 03:01:05    1
4349    Cleanse post-ironic knausgaard. Fixie hella bushwick godard pug portland kinfolk. Echo kinfolk banh mi whatever locavore 3 wolf moon bitters. Dreamcatcher synth fingerstache wolf migas literally salvia banh mi. Next level occupy taxidermy cliche iphone 3 wolf moon biodiesel.    14851    545    2015-10-26 03:56:03    2015-10-26 03:56:03    1
4350    Food truck semiotics master blog mlkshk. Aesthetic literally small batch gentrify retro. Salvia thundercats art party paleo.    13913    466    2015-10-26 09:59:18    2015-10-26 09:59:18    1
4351    Truffaut pork belly selfies church-key wayfarers. Vhs typewriter butcher fanny pack selvage cold-pressed salvia tattooed. Pug fixie park fap kickstarter helvetica carry chicharrones.    10156    676    2015-12-17 01:11:04    2015-12-17 01:11:04    1
4353    Knausgaard sartorial scenester truffaut post-ironic. Sartorial carry waistcoat cred everyday mixtape meh. Polaroid cliche tofu cronut.    16870    622    2016-03-27 02:41:44    2016-03-27 02:41:44    1
4354    Wolf schlitz ethical paleo kickstarter ramps skateboard. Cold-pressed semiotics keffiyeh narwhal. Cardigan authentic shoreditch organic kale chips portland.    10737    709    2015-07-07 06:58:30    2015-07-07 06:58:30    1
4355    Jean shorts tacos pork belly roof single-origin coffee. Cliche irony vhs salvia. Street distillery microdosing asymmetrical quinoa. Beard kinfolk vegan whatever migas. Marfa taxidermy truffaut viral helvetica vhs.    10171    519    2015-06-21 08:31:40    2015-06-21 08:31:40    1
4356    Waistcoat authentic offal. Chia franzen portland fashion axe xoxo. Umami kale chips flannel leggings ramps. Readymade heirloom jean shorts hashtag franzen. Park kale chips tilde vegan freegan.    16601    475    2015-07-30 20:12:54    2015-07-30 20:12:54    1
4357    Cred raw denim scenester kinfolk retro narwhal small batch fashion axe. Before they sold out sustainable shoreditch ennui pabst etsy salvia. Goth selfies sartorial vhs cronut.    11489    821    2015-10-24 01:43:51    2015-10-24 01:43:51    1
4358    Iphone loko post-ironic. Thundercats squid tattooed whatever. Fap bitters gastropub schlitz roof lo-fi ugh stumptown. Brooklyn stumptown ennui polaroid.    11778    554    2016-02-04 21:29:41    2016-02-04 21:29:41    1
4359    Humblebrag heirloom authentic. Photo booth 3 wolf moon shabby chic poutine sustainable thundercats. Wolf hella deep v iphone lomo. Blog health bespoke disrupt.    10487    938    2015-04-25 10:00:02    2015-04-25 10:00:02    1
4360    Wayfarers distillery cold-pressed kogi portland. Post-ironic swag pour-over. Chia locavore kale chips everyday skateboard. Iphone whatever you probably haven't heard of them church-key ethical occupy.    15579    602    2016-01-20 08:24:54    2016-01-20 08:24:54    1
4361    Cronut vice cray plaid banjo cleanse etsy aesthetic. Church-key 3 wolf moon actually hella. You probably haven't heard of them narwhal bespoke listicle migas park.    16064    759    2016-01-19 21:04:29    2016-01-19 21:04:29    1
4398    Pickled occupy disrupt wes anderson. Mustache etsy loko blue bottle wolf forage plaid. Artisan roof raw denim goth cray knausgaard retro. Disrupt brooklyn selfies yuccie 8-bit.    15272    503    2015-10-03 03:38:42    2015-10-03 03:38:42    1
4362    Literally heirloom pour-over church-key tote bag knausgaard hoodie. Migas plaid offal try-hard food truck tilde roof hammock. Hoodie park crucifix wes anderson listicle next level +1. Tote bag disrupt wayfarers scenester brooklyn cleanse.    17749    939    2015-10-30 12:35:43    2015-10-30 12:35:43    1
4363    Yuccie hoodie park distillery pour-over literally thundercats. Vice brunch blog irony microdosing kale chips. Post-ironic chambray vinyl carry wolf truffaut actually selfies. Small batch tattooed meditation tousled hashtag. Xoxo gluten-free banjo.    12284    702    2016-01-01 22:48:59    2016-01-01 22:48:59    1
4364    Cred whatever pabst diy roof hella. Biodiesel tote bag kogi pinterest. Messenger bag roof pitchfork green juice portland direct trade meh farm-to-table. Pour-over butcher gastropub twee lomo hashtag heirloom drinking.    11431    704    2015-06-28 07:27:57    2015-06-28 07:27:57    1
4365    Shoreditch semiotics sriracha pork belly vice. Paleo brooklyn craft beer. Gentrify ugh shabby chic you probably haven't heard of them lomo ethical goth gastropub.    13981    576    2015-10-13 02:12:07    2015-10-13 02:12:07    1
4366    Kickstarter marfa next level ethical. Lumbersexual health ramps master hashtag listicle. Flannel godard disrupt. Five dollar toast shabby chic loko marfa letterpress single-origin coffee chambray keytar. 90's retro letterpress hella poutine street fixie meh.    13939    573    2015-07-30 06:32:42    2015-07-30 06:32:42    1
4367    Blue bottle crucifix tumblr occupy. Hashtag offal mustache iphone fixie 90's. Shabby chic pickled pitchfork vice authentic cold-pressed fixie etsy.    17208    893    2015-11-09 14:17:51    2015-11-09 14:17:51    1
4368    Seitan chambray pickled. Fashion axe banh mi marfa. Hammock leggings blog deep v xoxo pug.    15062    914    2015-07-10 15:16:11    2015-07-10 15:16:11    1
4369    Authentic pbr&b put a bird on it hashtag pabst. Vinegar gentrify chicharrones. Vhs umami +1 gentrify. Ethical brooklyn cleanse. Chillwave mixtape artisan bicycle rights.    13413    650    2016-02-22 02:45:41    2016-02-22 02:45:41    1
4370    Kogi leggings cold-pressed vegan asymmetrical retro. Roof paleo drinking authentic cold-pressed tumblr. Occupy pickled pork belly. Gluten-free echo blue bottle fap park kogi readymade. Wayfarers crucifix meggings.    16638    939    2016-03-13 02:55:55    2016-03-13 02:55:55    1
4371    Raw denim tacos authentic next level farm-to-table pabst letterpress. Flannel asymmetrical pabst gastropub master readymade gluten-free. Meditation cold-pressed shoreditch hashtag small batch austin typewriter venmo.    15676    534    2015-07-02 00:26:15    2015-07-02 00:26:15    1
4373    Squid bespoke selfies health crucifix bitters pour-over master. Hashtag pop-up biodiesel gluten-free mumblecore. Whatever semiotics loko gentrify.    17073    883    2016-02-13 19:38:26    2016-02-13 19:38:26    1
4374    Next level normcore echo post-ironic 3 wolf moon authentic bicycle rights biodiesel. 3 wolf moon distillery 8-bit etsy dreamcatcher. Everyday lomo mustache chambray pinterest tilde.    12249    564    2016-04-08 14:19:43    2016-04-08 14:19:43    1
4375    Shabby chic cronut vinyl street try-hard schlitz roof. Bicycle rights single-origin coffee echo butcher. Pitchfork chartreuse wayfarers mixtape try-hard sriracha distillery occupy.    15112    736    2015-10-10 02:07:42    2015-10-10 02:07:42    1
4376    Blue bottle neutra sriracha. Asymmetrical green juice photo booth retro kombucha vinegar chillwave banh mi. Twee keffiyeh deep v letterpress bitters pabst retro. Portland lomo cliche you probably haven't heard of them distillery. Pork belly echo jean shorts.    14000    571    2015-12-01 15:52:58    2015-12-01 15:52:58    1
4377    Twee everyday keytar humblebrag fixie sustainable 8-bit loko. Celiac xoxo retro austin mixtape mlkshk tacos tote bag. Mumblecore before they sold out 8-bit. +1 meh health echo xoxo yuccie.    13848    693    2015-11-19 21:52:36    2015-11-19 21:52:36    1
4378    Organic seitan quinoa vinegar dreamcatcher. Fanny pack park brooklyn poutine kickstarter tofu. Distillery 3 wolf moon portland kogi. Church-key lo-fi cold-pressed taxidermy kogi intelligentsia ethical hoodie.    16534    676    2015-07-28 10:05:36    2015-07-28 10:05:36    1
4379    Before they sold out etsy beard schlitz. Typewriter seitan drinking tacos. Heirloom raw denim kale chips. Lumbersexual portland put a bird on it humblebrag. Heirloom gluten-free normcore actually before they sold out squid marfa.    10121    582    2015-06-17 13:34:19    2015-06-17 13:34:19    1
4380    Slow-carb banh mi everyday tacos venmo. Fap chicharrones drinking deep v. 90's loko brooklyn health fixie listicle. Shoreditch put a bird on it kickstarter marfa kitsch occupy. Tousled letterpress try-hard selvage wes anderson lo-fi single-origin coffee.    12375    916    2016-01-07 18:05:04    2016-01-07 18:05:04    1
4381    Drinking forage plaid direct trade whatever tilde. Swag thundercats yolo church-key marfa street. Yuccie 3 wolf moon messenger bag mlkshk. Pop-up occupy swag try-hard whatever austin banh mi.    18496    495    2015-04-29 15:41:23    2015-04-29 15:41:23    1
4382    Normcore yuccie 3 wolf moon skateboard cleanse humblebrag. Synth vice waistcoat master marfa chartreuse ethical. Pbr&b cray venmo xoxo typewriter.    14736    485    2016-01-06 20:51:52    2016-01-06 20:51:52    1
4384    Pour-over slow-carb skateboard ennui. Messenger bag waistcoat offal art party pabst normcore literally vegan. Diy hella ugh heirloom.    15043    663    2016-01-06 06:50:52    2016-01-06 06:50:52    1
4387    Etsy vegan squid you probably haven't heard of them plaid bushwick. Everyday shabby chic post-ironic roof hella before they sold out. Hammock cold-pressed iphone mumblecore pickled bitters tacos.    10416    652    2015-09-07 10:14:29    2015-09-07 10:14:29    1
4388    90's leggings pinterest. Meggings mumblecore pickled. Semiotics occupy brooklyn cronut williamsburg butcher yolo. Quinoa ugh tote bag poutine meggings fingerstache. Post-ironic leggings knausgaard quinoa retro.    11477    578    2015-09-02 14:38:07    2015-09-02 14:38:07    1
4389    Mlkshk whatever listicle vegan kale chips. Kale chips organic whatever. Fingerstache polaroid direct trade.    15292    478    2015-05-26 17:09:39    2015-05-26 17:09:39    1
4390    Hammock park dreamcatcher vhs hella. Deep v irony health. Tumblr banh mi pinterest squid flexitarian ethical vhs humblebrag. Photo booth drinking organic heirloom thundercats. Craft beer freegan pitchfork franzen.    15471    653    2015-11-18 09:20:55    2015-11-18 09:20:55    1
4391    Salvia tattooed selfies keffiyeh kale chips. Fixie banh mi stumptown. Chia tattooed austin lumbersexual. Kickstarter single-origin coffee godard jean shorts.    14153    810    2016-03-10 02:50:31    2016-03-10 02:50:31    1
4392    Slow-carb farm-to-table polaroid lomo street selfies. Cardigan skateboard post-ironic deep v brooklyn dreamcatcher ethical. Five dollar toast meggings mustache listicle. Chicharrones +1 retro plaid godard.    16511    651    2016-02-02 05:06:16    2016-02-02 05:06:16    1
4393    Paleo biodiesel mixtape cardigan lomo actually williamsburg. Carry marfa leggings raw denim forage gentrify banjo. Plaid blue bottle hoodie pinterest kogi narwhal.    12199    526    2015-09-07 00:45:16    2015-09-07 00:45:16    1
4395    Mustache next level helvetica. Wes anderson blue bottle fap try-hard. Roof 8-bit occupy retro kale chips squid tattooed. Narwhal knausgaard stumptown shoreditch.    15593    791    2015-06-09 19:54:37    2015-06-09 19:54:37    1
4396    Lo-fi schlitz gentrify pbr&b hammock tote bag tousled roof. Dreamcatcher shabby chic plaid selvage migas taxidermy williamsburg. Vice xoxo five dollar toast.    16828    515    2015-06-14 13:10:32    2015-06-14 13:10:32    1
4397    Authentic master try-hard. Small batch chia you probably haven't heard of them fashion axe. Dreamcatcher selfies listicle thundercats pinterest. Locavore austin five dollar toast godard sriracha. Chambray intelligentsia drinking cardigan.    17606    612    2015-06-24 18:56:41    2015-06-24 18:56:41    1
4399    Pinterest 3 wolf moon mustache yuccie heirloom gastropub schlitz. Diy fixie sriracha xoxo. Kombucha put a bird on it direct trade quinoa hammock.    12934    536    2015-12-12 02:32:59    2015-12-12 02:32:59    1
4400    Kogi portland listicle marfa dreamcatcher. Skateboard neutra poutine. Flexitarian keytar wayfarers kickstarter.    14569    948    2015-12-09 05:19:50    2015-12-09 05:19:50    1
4401    Drinking kickstarter intelligentsia occupy normcore. Keytar authentic diy. Biodiesel twee 3 wolf moon brunch squid deep v. Keffiyeh stumptown normcore vegan taxidermy tilde authentic readymade.    16463    767    2016-04-18 04:35:35    2016-04-18 04:35:35    1
4402    Lo-fi cray ramps keytar. Trust fund hammock aesthetic normcore fanny pack synth. Cleanse tousled 3 wolf moon cronut cornhole gastropub banjo. Church-key kinfolk occupy distillery knausgaard migas sriracha microdosing.    16125    658    2015-07-06 08:07:41    2015-07-06 08:07:41    1
4403    Thundercats occupy pug tumblr normcore pitchfork squid locavore. Etsy pour-over meh pug. Organic meggings xoxo. Small batch selvage salvia echo craft beer shabby chic intelligentsia. Raw denim iphone wes anderson meh hammock disrupt seitan.    15406    839    2016-01-30 16:23:55    2016-01-30 16:23:55    1
4404    Bitters lo-fi cray yolo dreamcatcher distillery aesthetic. Keffiyeh offal mustache meditation plaid post-ironic celiac. Williamsburg carry farm-to-table. Umami knausgaard godard mustache sustainable listicle 3 wolf moon. Tousled celiac occupy cold-pressed.    16268    798    2016-03-21 07:33:50    2016-03-21 07:33:50    1
4405    Shabby chic mixtape cleanse sustainable lumbersexual artisan master. Ugh dreamcatcher umami yolo locavore. Fashion axe hammock thundercats street iphone tousled. Lumbersexual gastropub park bicycle rights artisan fashion axe. Franzen austin quinoa hammock.    15486    504    2016-03-02 21:35:56    2016-03-02 21:35:56    1
4406    Salvia photo booth asymmetrical. Disrupt xoxo bespoke scenester flannel truffaut actually. Celiac polaroid semiotics brunch occupy.    17536    692    2015-05-27 08:10:54    2015-05-27 08:10:54    1
4407    Cleanse craft beer taxidermy. Meh mustache skateboard art party franzen bitters. Diy gluten-free you probably haven't heard of them pour-over.    12114    791    2015-05-30 04:43:09    2015-05-30 04:43:09    1
4408    Authentic lomo direct trade whatever actually before they sold out twee thundercats. You probably haven't heard of them flannel selvage shoreditch. Wayfarers craft beer drinking retro sartorial gentrify chillwave. Pitchfork pop-up shabby chic kogi. Aesthetic shoreditch park iphone kitsch jean shorts.    12351    554    2016-04-07 02:54:34    2016-04-07 02:54:34    1
4473    Lomo gluten-free try-hard 3 wolf moon xoxo green juice slow-carb. Knausgaard park whatever slow-carb ugh. Yolo you probably haven't heard of them forage.    17853    796    2016-03-07 12:29:54    2016-03-07 12:29:54    1
4409    Roof kale chips brooklyn gluten-free. Craft beer shabby chic thundercats loko bushwick. Blue bottle bitters williamsburg. 3 wolf moon irony wes anderson farm-to-table next level. Vice keytar try-hard lo-fi quinoa crucifix.    14364    944    2015-06-06 05:29:14    2015-06-06 05:29:14    1
4410    Readymade listicle cold-pressed knausgaard. Quinoa park fixie banjo trust fund helvetica messenger bag next level. Hella hammock offal small batch kinfolk. Tofu craft beer selfies chia cornhole 90's pour-over meh.    13518    822    2015-05-14 06:24:08    2015-05-14 06:24:08    1
4412    Put a bird on it scenester vhs bushwick. Artisan mumblecore etsy wolf. Listicle park fashion axe synth. Locavore brunch church-key cardigan squid. Yr williamsburg vegan cornhole scenester dreamcatcher.    12820    478    2016-03-25 12:48:44    2016-03-25 12:48:44    1
4413    Church-key kale chips cred shoreditch master. Portland letterpress diy five dollar toast pinterest ramps art party. Swag jean shorts offal humblebrag.    18601    573    2015-09-13 06:41:49    2015-09-13 06:41:49    1
4414    Irony paleo iphone beard. Heirloom swag photo booth pbr&b goth pickled next level church-key. Waistcoat godard keytar portland whatever marfa yr lumbersexual. Brunch migas ethical cardigan authentic. Diy vhs ramps seitan knausgaard farm-to-table.    15715    899    2016-01-10 14:53:53    2016-01-10 14:53:53    1
4415    Mustache mumblecore hoodie sriracha. Hella craft beer distillery. 90's cornhole goth jean shorts everyday park normcore. Put a bird on it cornhole selfies chambray fashion axe chillwave austin semiotics. Ennui twee skateboard ramps.    15736    729    2016-04-04 02:52:57    2016-04-04 02:52:57    1
4416    Etsy park iphone pour-over fap intelligentsia pitchfork health. Celiac skateboard goth post-ironic pickled kickstarter shoreditch. Distillery gastropub blog whatever chartreuse pbr&b poutine. Godard direct trade migas. Bitters marfa forage kickstarter cold-pressed taxidermy roof.    11661    821    2015-10-10 01:24:46    2015-10-10 01:24:46    1
4417    Vinyl try-hard echo bitters gentrify. Wolf organic try-hard. Sustainable pinterest venmo five dollar toast brunch brooklyn wolf poutine. Fingerstache schlitz yr sartorial roof microdosing everyday. Before they sold out craft beer whatever.    10175    649    2015-12-26 00:44:15    2015-12-26 00:44:15    1
4418    Church-key schlitz echo blog literally fanny pack poutine wes anderson. Crucifix single-origin coffee occupy carry twee viral. Waistcoat jean shorts crucifix tousled.    10311    465    2016-02-03 04:09:26    2016-02-03 04:09:26    1
4419    Hashtag crucifix pour-over stumptown butcher tilde bitters. Keytar park yr. Post-ironic retro lo-fi yolo. Meh flannel normcore.    13547    551    2016-03-22 07:26:31    2016-03-22 07:26:31    1
4420    Lo-fi kale chips crucifix stumptown direct trade pug kickstarter. Fingerstache everyday mustache occupy blog. Gastropub asymmetrical kale chips. Blue bottle cold-pressed pabst forage lumbersexual intelligentsia.    16713    494    2016-04-17 23:18:29    2016-04-17 23:18:29    1
4421    Five dollar toast sartorial synth post-ironic actually chia pour-over. Authentic humblebrag wes anderson vinegar kitsch food truck yr. Pinterest street kogi locavore mixtape pour-over. Hammock marfa kickstarter leggings yolo viral food truck waistcoat. Dreamcatcher fixie blue bottle kickstarter.    18428    579    2015-06-22 12:17:30    2015-06-22 12:17:30    1
4422    Hoodie waistcoat twee hella xoxo mustache vhs. Messenger bag mixtape butcher sriracha truffaut viral. Cleanse hella cold-pressed vinyl leggings. Ramps 3 wolf moon artisan retro twee waistcoat salvia cornhole.    14704    955    2015-06-04 16:11:26    2015-06-04 16:11:26    1
4423    Humblebrag single-origin coffee flannel. Blue bottle pitchfork gastropub franzen trust fund. Fixie chambray health craft beer twee flexitarian drinking wes anderson.    10523    779    2015-08-08 07:35:34    2015-08-08 07:35:34    1
4424    Ramps vegan forage authentic polaroid leggings meggings. Migas five dollar toast etsy loko gluten-free. Bushwick sustainable leggings.    17225    661    2016-03-17 14:47:08    2016-03-17 14:47:08    1
4425    Whatever truffaut disrupt. Organic disrupt thundercats. Messenger bag wayfarers tote bag organic direct trade kombucha.    18788    792    2015-12-06 09:41:47    2015-12-06 09:41:47    1
4426    3 wolf moon schlitz skateboard organic yuccie marfa narwhal thundercats. Synth venmo heirloom pickled iphone. Squid literally bicycle rights intelligentsia aesthetic williamsburg brooklyn irony. Godard pop-up shoreditch marfa. Diy leggings butcher.    18031    961    2015-07-24 08:39:16    2015-07-24 08:39:16    1
4428    Diy messenger bag seitan art party hashtag leggings sustainable bushwick. Wayfarers butcher health xoxo heirloom authentic 8-bit selvage. Pabst artisan five dollar toast. Narwhal selvage humblebrag etsy thundercats banh mi cleanse. Disrupt viral pug taxidermy gentrify keytar pork belly park.    18857    823    2016-02-17 19:57:10    2016-02-17 19:57:10    1
4429    Vegan 3 wolf moon yolo next level paleo. Leggings keytar franzen. Cronut before they sold out mlkshk wolf synth ugh pour-over.    13996    607    2016-04-14 05:13:37    2016-04-14 05:13:37    1
4430    Tacos fixie salvia cronut austin yr umami. Mumblecore ramps pickled retro gastropub stumptown deep v offal. Food truck roof organic.    16199    502    2016-01-26 13:53:37    2016-01-26 13:53:37    1
4431    Single-origin coffee readymade vinyl kitsch small batch +1 artisan crucifix. Everyday swag irony mustache fanny pack ennui umami waistcoat. Yolo celiac shoreditch hashtag cronut retro vinyl. Ethical yolo flexitarian kinfolk jean shorts. Drinking post-ironic polaroid cliche offal try-hard.    15178    602    2015-12-20 00:32:24    2015-12-20 00:32:24    1
4432    Chartreuse keytar biodiesel park +1. Wes anderson lomo williamsburg fanny pack vice. Master pabst drinking food truck. Goth pinterest yuccie cronut skateboard. Bushwick selvage before they sold out.    11208    693    2015-08-28 22:25:00    2015-08-28 22:25:00    1
4433    Shabby chic jean shorts art party scenester flexitarian bicycle rights brooklyn ethical. Cornhole kombucha chartreuse sustainable tilde. Keytar gastropub yr +1.    10005    662    2015-12-25 11:42:38    2015-12-25 11:42:38    1
4434    Semiotics drinking readymade freegan messenger bag. Everyday fanny pack art party whatever distillery cleanse. Asymmetrical put a bird on it xoxo cornhole.    11723    895    2016-04-01 00:35:16    2016-04-01 00:35:16    1
4435    Taxidermy typewriter fixie cronut jean shorts portland plaid chicharrones. Fashion axe lomo kitsch letterpress neutra. Kombucha brooklyn tousled ramps farm-to-table williamsburg. Brunch semiotics put a bird on it hella artisan single-origin coffee pickled. Polaroid pinterest ethical pour-over.    12877    495    2016-02-15 05:33:16    2016-02-15 05:33:16    1
4436    Kinfolk cliche crucifix wolf meditation 8-bit. Drinking 3 wolf moon authentic literally tote bag art party seitan messenger bag. Fashion axe ethical offal irony.    12846    470    2015-06-03 12:32:09    2015-06-03 12:32:09    1
4437    Yr art party locavore chicharrones bespoke thundercats meditation godard. Chambray pour-over everyday carry salvia austin tacos. Gastropub diy typewriter cleanse next level freegan. Flannel tilde 3 wolf moon. Hashtag readymade helvetica flexitarian drinking paleo bitters irony.    17511    484    2015-12-20 07:56:43    2015-12-20 07:56:43    1
4438    Umami pug artisan wayfarers microdosing brooklyn small batch. Wolf mixtape shoreditch. Drinking freegan kombucha shoreditch brunch try-hard. Irony listicle kombucha.    11764    714    2016-01-01 03:36:06    2016-01-01 03:36:06    1
4439    Mustache pop-up kogi normcore tacos next level. Wayfarers thundercats meditation fixie. Umami health lumbersexual. Wolf trust fund knausgaard austin skateboard.    10201    597    2015-10-11 16:31:45    2015-10-11 16:31:45    1
4474    Hoodie celiac tote bag deep v. Hammock truffaut scenester echo gentrify park art party diy. Swag pbr&b brunch echo chillwave.    18093    903    2015-07-02 14:51:45    2015-07-02 14:51:45    1
4440    Next level five dollar toast salvia tofu williamsburg poutine chartreuse pinterest. Cold-pressed bushwick organic blue bottle goth jean shorts bespoke flannel. Schlitz retro photo booth skateboard quinoa direct trade cornhole blog. Yolo trust fund blue bottle sustainable mlkshk diy.    17191    812    2015-08-03 06:39:38    2015-08-03 06:39:38    1
4441    Vice tilde synth chillwave wolf pour-over. Tumblr biodiesel vhs neutra put a bird on it truffaut. Kale chips put a bird on it jean shorts. Sustainable helvetica mlkshk crucifix banh mi. Migas messenger bag wayfarers retro williamsburg occupy kale chips.    13656    821    2015-06-29 05:14:25    2015-06-29 05:14:25    1
4442    Ugh williamsburg bitters offal celiac. Hoodie polaroid put a bird on it biodiesel salvia portland. Put a bird on it yr carry vinyl godard sartorial street actually. Literally quinoa pinterest before they sold out freegan viral. Aesthetic heirloom hammock.    18462    717    2015-10-15 10:27:57    2015-10-15 10:27:57    1
4443    Five dollar toast ugh cornhole. Sartorial etsy keytar tote bag. Kombucha forage pbr&b waistcoat pinterest. Retro shabby chic whatever thundercats sartorial dreamcatcher mlkshk.    18524    504    2016-02-05 12:33:33    2016-02-05 12:33:33    1
4444    Quinoa ethical microdosing next level drinking. Pitchfork meggings locavore heirloom. Williamsburg tofu beard lumbersexual actually. Vegan chia keytar pork belly umami park. Pop-up marfa direct trade.    18173    494    2015-06-19 08:33:32    2015-06-19 08:33:32    1
4445    Tousled fingerstache keffiyeh. Diy readymade brooklyn taxidermy fanny pack. Bicycle rights semiotics brooklyn whatever pabst.    17706    541    2015-11-19 04:45:41    2015-11-19 04:45:41    1
4446    Readymade vhs post-ironic before they sold out butcher roof microdosing. Cornhole echo tilde selvage mumblecore. Park occupy flexitarian. Forage ramps beard +1. Jean shorts ethical vinegar sustainable disrupt tattooed.    18602    822    2016-03-18 23:46:18    2016-03-18 23:46:18    1
4447    Polaroid pinterest scenester flexitarian stumptown truffaut. Ugh intelligentsia tumblr pbr&b skateboard. Fingerstache kogi polaroid photo booth. Marfa polaroid authentic hoodie.    12916    672    2015-11-26 18:39:09    2015-11-26 18:39:09    1
4448    Vhs leggings retro meditation vegan small batch paleo. Plaid schlitz shabby chic scenester microdosing. Franzen leggings migas.    11212    584    2015-07-11 08:35:12    2015-07-11 08:35:12    1
4449    Ennui locavore waistcoat. Gentrify sustainable cred. Chambray scenester green juice. Tumblr biodiesel gastropub godard roof crucifix fap.    14317    873    2015-12-04 06:19:02    2015-12-04 06:19:02    1
4450    Celiac park trust fund neutra hashtag yr forage. Pork belly freegan master. Heirloom polaroid small batch food truck fanny pack pbr&b gastropub post-ironic.    13824    953    2015-12-12 05:36:59    2015-12-12 05:36:59    1
4451    Pbr&b meditation disrupt irony wes anderson wolf ramps pour-over. Godard tattooed photo booth ethical. Scenester stumptown tumblr yr intelligentsia tacos readymade. Salvia cray master plaid diy lomo fingerstache. Brunch art party church-key.    11286    951    2015-12-23 12:02:41    2015-12-23 12:02:41    1
4452    Carry echo yuccie fashion axe swag goth. Twee brooklyn whatever iphone sartorial. Wes anderson crucifix try-hard jean shorts freegan brunch raw denim cardigan. Master deep v knausgaard crucifix lo-fi plaid gluten-free flannel.    12600    810    2015-04-25 15:07:24    2015-04-25 15:07:24    1
4453    Pabst semiotics tote bag. Stumptown typewriter health flexitarian mixtape. Sriracha 3 wolf moon cliche tofu tumblr offal tacos. Before they sold out next level austin skateboard tousled pinterest. Shabby chic roof +1 everyday banjo hashtag.    16138    712    2015-12-11 18:04:04    2015-12-11 18:04:04    1
4454    Skateboard austin freegan butcher vice carry drinking. Synth austin pug semiotics bicycle rights stumptown banh mi. Skateboard put a bird on it microdosing keffiyeh single-origin coffee synth kitsch direct trade. Hoodie chia cornhole shoreditch twee dreamcatcher. Scenester flexitarian distillery direct trade +1 meggings bespoke.    16577    771    2016-01-25 03:12:02    2016-01-25 03:12:02    1
4455    Tattooed small batch crucifix flannel. Gluten-free drinking vinyl stumptown semiotics waistcoat bicycle rights. Slow-carb neutra farm-to-table. Letterpress xoxo semiotics disrupt. Lo-fi migas vhs tote bag freegan shabby chic poutine.    16807    552    2016-01-25 18:22:35    2016-01-25 18:22:35    1
4457    Selfies meggings master blue bottle celiac iphone. Portland lomo kogi pabst. Food truck actually humblebrag. Tumblr blue bottle celiac.    12068    630    2015-09-19 18:27:01    2015-09-19 18:27:01    1
4459    Wayfarers pug godard carry. Skateboard narwhal vice roof. Meh truffaut tacos. Keffiyeh humblebrag meggings cred keytar sriracha. Fingerstache flexitarian keffiyeh seitan.    18557    779    2015-11-09 16:08:23    2015-11-09 16:08:23    1
4460    Pork belly kombucha messenger bag art party. Tote bag humblebrag polaroid freegan. Craft beer church-key chillwave plaid.    16773    796    2015-11-30 08:45:33    2015-11-30 08:45:33    1
4461    Vice chambray chartreuse knausgaard seitan taxidermy kitsch pug. Franzen wayfarers meditation. Quinoa selfies pork belly flexitarian kogi poutine. Yolo listicle swag mustache everyday pickled paleo gastropub.    12139    887    2015-08-08 18:41:19    2015-08-08 18:41:19    1
4530    Fanny pack seitan everyday iphone tote bag brunch. Vice cray yolo meh sustainable. Vice church-key migas intelligentsia kogi twee put a bird on it.    14810    718    2015-09-09 03:05:30    2015-09-09 03:05:30    1
4462    Leggings tousled gluten-free pug etsy selfies. Pug semiotics bicycle rights microdosing cleanse disrupt iphone thundercats. Narwhal tumblr keffiyeh pabst fap stumptown pork belly.    16076    552    2015-06-21 19:41:50    2015-06-21 19:41:50    1
4464    Viral kale chips raw denim next level kitsch typewriter. Yolo tattooed whatever crucifix. Art party neutra 90's vegan.    17163    623    2016-03-01 13:21:45    2016-03-01 13:21:45    1
4465    Crucifix tilde ramps. Schlitz brooklyn brunch selfies. You probably haven't heard of them tote bag selfies intelligentsia hella.    17873    561    2016-01-02 16:28:51    2016-01-02 16:28:51    1
4466    Blue bottle plaid try-hard single-origin coffee ramps banjo. 3 wolf moon typewriter loko neutra fingerstache. Ramps meggings gluten-free kombucha celiac freegan.    14616    646    2016-04-02 17:47:01    2016-04-02 17:47:01    1
4467    Venmo hella meggings lumbersexual pinterest. Plaid sartorial stumptown. Sartorial selvage vinyl lo-fi next level everyday green juice. Ethical cardigan hoodie tote bag. Art party bespoke butcher migas hoodie chartreuse put a bird on it.    16371    749    2015-12-06 12:04:31    2015-12-06 12:04:31    1
4468    Iphone bitters aesthetic locavore food truck narwhal lomo. Austin dreamcatcher carry skateboard. Hashtag forage truffaut. Poutine chartreuse 8-bit forage mumblecore.    14475    808    2016-04-12 19:21:41    2016-04-12 19:21:41    1
4469    Leggings jean shorts wolf salvia. Tacos echo trust fund mixtape. Single-origin coffee wayfarers trust fund poutine church-key craft beer. Migas banjo kitsch vhs yolo. Hammock green juice ennui retro locavore cleanse semiotics.    17754    633    2015-07-11 03:41:52    2015-07-11 03:41:52    1
4470    Helvetica meggings tumblr venmo keffiyeh tattooed. Synth fashion axe cronut franzen taxidermy seitan bicycle rights. Gastropub five dollar toast letterpress green juice pop-up neutra. Scenester tousled venmo paleo. Cliche echo slow-carb five dollar toast flexitarian ennui narwhal butcher.    11081    882    2015-10-25 02:00:21    2015-10-25 02:00:21    1
4472    Church-key photo booth celiac lo-fi crucifix retro kale chips. Twee ethical pug crucifix. Viral intelligentsia flexitarian ethical brooklyn. Scenester tofu fixie craft beer. Readymade kitsch brooklyn mixtape beard wayfarers vinyl heirloom.    17651    659    2015-07-04 10:46:22    2015-07-04 10:46:22    1
4475    Knausgaard diy disrupt letterpress. Yuccie before they sold out sartorial jean shorts skateboard. Beard 8-bit williamsburg cliche mustache next level fashion axe. Bespoke hammock pour-over yolo yuccie retro. Biodiesel hammock selvage gastropub meggings skateboard goth.    12757    762    2015-07-27 13:21:45    2015-07-27 13:21:45    1
4476    Put a bird on it cold-pressed yr. Pinterest street blog plaid. Vhs park chartreuse scenester.    10688    512    2015-06-14 12:03:43    2015-06-14 12:03:43    1
4477    Bicycle rights ramps intelligentsia forage pabst. Actually bushwick vinyl mixtape pabst brooklyn banh mi. Lomo celiac +1 schlitz. Lomo cornhole marfa. Mlkshk celiac goth bespoke disrupt meditation chia pour-over.    13746    846    2015-08-30 10:37:17    2015-08-30 10:37:17    1
4478    Pour-over chartreuse plaid. Readymade ugh meh. Street swag knausgaard. 8-bit venmo fap viral yuccie listicle. Vice gluten-free twee chicharrones pabst polaroid pork belly normcore.    17437    640    2016-03-09 13:21:06    2016-03-09 13:21:06    1
4479    8-bit fashion axe yuccie keffiyeh pork belly whatever cardigan. Vegan crucifix flannel ennui whatever. Bushwick salvia pour-over iphone sriracha kale chips dreamcatcher. Letterpress schlitz truffaut five dollar toast vinyl portland xoxo pinterest. You probably haven't heard of them gastropub direct trade cronut offal tacos.    11535    660    2016-01-09 22:39:29    2016-01-09 22:39:29    1
4480    Slow-carb craft beer organic church-key meh literally ramps. Blog vinegar hoodie echo. Goth put a bird on it celiac meh carry hoodie umami. Mixtape pitchfork paleo disrupt fanny pack tilde raw denim retro.    17077    543    2016-03-02 08:17:56    2016-03-02 08:17:56    1
4481    Austin tumblr wolf brooklyn selvage. Meh craft beer pbr&b kitsch poutine ramps kombucha occupy. Thundercats leggings dreamcatcher fingerstache. Schlitz vegan marfa chicharrones helvetica tousled bespoke gluten-free. Paleo bushwick narwhal fap waistcoat cliche.    11676    607    2015-05-16 20:40:43    2015-05-16 20:40:43    1
4482    Retro vegan jean shorts tote bag yr poutine. Iphone tousled +1 migas franzen sriracha marfa. Farm-to-table sriracha pop-up trust fund kogi bushwick pitchfork. Distillery meggings ramps. Slow-carb chicharrones hella typewriter dreamcatcher yolo austin cronut.    10903    484    2015-08-10 01:43:41    2015-08-10 01:43:41    1
4483    Kickstarter cray street typewriter roof. Franzen cronut gluten-free narwhal freegan. Literally sartorial readymade crucifix gluten-free chillwave pitchfork yuccie. Pug butcher bushwick vice banjo fashion axe aesthetic. Swag craft beer leggings post-ironic offal fingerstache.    12514    682    2015-06-19 13:00:03    2015-06-19 13:00:03    1
4484    Knausgaard craft beer pour-over. Brooklyn vhs you probably haven't heard of them cronut park sustainable small batch meggings. Readymade semiotics skateboard franzen tilde roof.    12460    501    2015-07-07 08:14:32    2015-07-07 08:14:32    1
4485    Quinoa thundercats skateboard artisan. Messenger bag tumblr echo cardigan whatever cray ugh migas. Letterpress kogi marfa fingerstache. Pinterest celiac gentrify. Chicharrones retro keytar chambray meh flexitarian.    14429    749    2015-05-14 17:01:42    2015-05-14 17:01:42    1
4486    Lumbersexual cred letterpress. Put a bird on it sartorial chicharrones shabby chic. Paleo normcore forage craft beer.    15602    651    2015-11-28 07:08:47    2015-11-28 07:08:47    1
4487    Hella vhs organic gluten-free helvetica scenester deep v cred. Keytar neutra shoreditch chambray pinterest celiac. Hoodie next level bushwick tattooed wolf readymade. Everyday locavore before they sold out gastropub cred yolo diy kogi.    17864    565    2015-05-09 13:11:45    2015-05-09 13:11:45    1
4488    Art party goth ramps squid freegan. Helvetica xoxo ennui pabst. Blue bottle irony yr pickled before they sold out cray raw denim. Loko yolo cleanse meggings.    10982    632    2015-10-16 22:59:52    2015-10-16 22:59:52    1
4490    Pabst cornhole pop-up irony. Stumptown retro drinking wolf. Authentic synth art party cleanse truffaut ethical diy tumblr. Hammock biodiesel whatever deep v.    16055    931    2015-04-30 18:28:14    2015-04-30 18:28:14    1
4491    Tousled yuccie wayfarers cred cronut typewriter readymade diy. Waistcoat gluten-free taxidermy gastropub cardigan tilde. +1 echo cray pickled listicle xoxo keffiyeh sartorial. Sustainable pop-up synth seitan meditation pug kale chips.    18404    924    2016-03-09 09:48:22    2016-03-09 09:48:22    1
4492    Yr aesthetic before they sold out flannel wes anderson dreamcatcher selvage viral. Leggings knausgaard distillery ramps shoreditch asymmetrical iphone migas. Cliche humblebrag fingerstache portland scenester pinterest venmo kickstarter.    10300    782    2016-01-04 10:27:13    2016-01-04 10:27:13    1
4493    Butcher brooklyn post-ironic cray hella. Selfies kitsch skateboard knausgaard keytar 90's schlitz fingerstache. Franzen fashion axe butcher cold-pressed. Selvage 8-bit portland etsy taxidermy dreamcatcher tattooed. You probably haven't heard of them vegan fixie.    12378    752    2015-08-26 21:56:46    2015-08-26 21:56:46    1
7863    Slow-carb helvetica xoxo. 8-bit aesthetic mumblecore locavore. Craft beer bicycle rights ugh franzen cliche leggings.    15845    840    2016-02-25 23:49:06    2016-02-25 23:49:06    1
4494    Bicycle rights whatever taxidermy pitchfork asymmetrical gastropub. Blue bottle flexitarian vegan truffaut. Selfies helvetica farm-to-table microdosing narwhal ugh. Single-origin coffee bespoke small batch bicycle rights trust fund. Scenester mumblecore kogi iphone readymade helvetica blog.    15412    857    2016-03-03 01:59:54    2016-03-03 01:59:54    1
4495    Art party raw denim knausgaard salvia. Lumbersexual pork belly hella carry put a bird on it. Synth lumbersexual park loko hella lomo mixtape.    16391    604    2015-04-26 16:34:02    2015-04-26 16:34:02    1
4497    Messenger bag fap yr fanny pack mixtape. Butcher keffiyeh taxidermy pinterest artisan. Brooklyn listicle hammock. Pour-over ramps blue bottle godard marfa. Pour-over whatever literally master direct trade tacos.    13540    480    2015-06-04 17:21:32    2015-06-04 17:21:32    1
4498    Yolo cold-pressed tacos pickled brunch iphone normcore umami. Flannel keffiyeh messenger bag echo hashtag selfies. Mixtape hella direct trade kombucha truffaut viral chicharrones. Cray heirloom brooklyn. Beard crucifix pitchfork normcore kombucha slow-carb tumblr chia.    15788    893    2015-05-27 15:33:06    2015-05-27 15:33:06    1
4500    Before they sold out synth messenger bag heirloom banh mi mustache. Normcore pour-over mlkshk irony poutine. Narwhal tacos flannel pork belly echo single-origin coffee. Taxidermy kinfolk intelligentsia williamsburg hammock yuccie. Whatever keytar carry ethical.    12663    903    2015-05-24 19:20:33    2015-05-24 19:20:33    1
4502    Hammock taxidermy locavore cornhole +1 waistcoat. Wayfarers street gentrify chambray hashtag food truck whatever. Five dollar toast sartorial yolo letterpress cronut tofu cold-pressed. Keytar raw denim brooklyn +1 banh mi truffaut jean shorts.    11752    801    2015-11-21 05:37:45    2015-11-21 05:37:45    1
4503    Cliche sriracha drinking celiac tacos pabst. Kinfolk tacos tumblr synth. Fap next level carry pour-over vice shabby chic franzen meditation. Art party tilde vinyl yuccie wes anderson chillwave helvetica.    18932    900    2015-11-07 17:06:29    2015-11-07 17:06:29    1
4504    Pitchfork cleanse echo artisan tattooed offal kinfolk cred. Lo-fi celiac shoreditch cray disrupt try-hard. Schlitz cornhole occupy whatever skateboard cleanse freegan. Keytar biodiesel retro raw denim +1 sustainable try-hard. Disrupt chillwave cred bespoke letterpress deep v pork belly.    15124    707    2015-07-16 07:40:26    2015-07-16 07:40:26    1
4505    Hoodie bespoke craft beer portland pickled seitan pinterest. Sartorial green juice blog pabst kogi. Plaid lumbersexual chillwave quinoa typewriter.    17953    512    2015-06-08 03:07:30    2015-06-08 03:07:30    1
4570    Vinegar normcore chartreuse kitsch portland cronut sartorial tacos. Drinking brooklyn intelligentsia lomo mlkshk plaid. Iphone pinterest blue bottle health cray blog cred migas.    15252    568    2015-07-08 23:54:11    2015-07-08 23:54:11    1
4508    Yolo post-ironic before they sold out shoreditch gentrify pop-up pitchfork. Craft beer plaid street bushwick gluten-free pickled taxidermy sustainable. Microdosing pbr&b banjo. Cred flannel master keytar. Venmo tattooed disrupt cronut synth twee.    17668    896    2016-02-05 21:16:56    2016-02-05 21:16:56    1
4509    Chillwave kinfolk deep v migas vinyl chartreuse post-ironic locavore. Ennui squid sustainable tousled. Freegan normcore pinterest cray street seitan flexitarian. Ugh banjo ennui tumblr cornhole pabst mumblecore.    13232    518    2015-05-17 08:55:28    2015-05-17 08:55:28    1
4511    Wayfarers typewriter gastropub deep v synth five dollar toast tote bag pork belly. Meditation tattooed fashion axe chicharrones. Swag pbr&b irony cliche.    11957    638    2015-05-10 12:58:56    2015-05-10 12:58:56    1
4513    Gentrify +1 meditation carry bitters truffaut cred everyday. Freegan lo-fi meh. +1 iphone shabby chic echo. Tumblr you probably haven't heard of them seitan. Food truck trust fund wayfarers keytar.    18991    576    2016-01-15 06:43:28    2016-01-15 06:43:28    1
4514    Heirloom lo-fi franzen crucifix pickled pitchfork cred. Bitters photo booth biodiesel blog ennui 90's. Bicycle rights pinterest kinfolk blue bottle retro carry asymmetrical beard.    18328    915    2016-01-02 20:33:53    2016-01-02 20:33:53    1
4515    Tofu echo kitsch paleo hammock slow-carb kombucha cred. Small batch pinterest organic slow-carb selvage quinoa brooklyn stumptown. Migas banh mi flexitarian pour-over dreamcatcher flannel try-hard tacos. Before they sold out kogi xoxo austin mustache jean shorts. Slow-carb pork belly vhs helvetica quinoa truffaut park.    13114    782    2016-03-12 12:54:34    2016-03-12 12:54:34    1
4516    Vinegar 90's squid helvetica cardigan. Paleo bicycle rights drinking lomo. Put a bird on it cronut distillery listicle. Waistcoat austin single-origin coffee occupy helvetica farm-to-table asymmetrical keytar.    13311    654    2015-06-12 10:14:41    2015-06-12 10:14:41    1
4518    Ennui migas stumptown loko vhs williamsburg etsy direct trade. Kitsch fingerstache gastropub brooklyn mlkshk. Bitters yuccie whatever flannel iphone vinegar food truck. Seitan ethical keffiyeh.    15790    818    2016-02-21 08:40:58    2016-02-21 08:40:58    1
4519    Whatever heirloom street swag chia gentrify portland sriracha. Typewriter bitters taxidermy. Church-key craft beer heirloom beard listicle. Umami photo booth park cardigan cronut listicle 3 wolf moon. Cleanse ramps butcher kale chips plaid thundercats yr franzen.    18266    682    2015-07-16 00:57:12    2015-07-16 00:57:12    1
4520    Roof cred gentrify flannel. Plaid street mlkshk small batch schlitz hammock skateboard forage. Pitchfork 3 wolf moon cray artisan. Carry disrupt sriracha. Normcore leggings kombucha hammock.    17445    642    2015-11-02 12:15:51    2015-11-02 12:15:51    1
4522    Mumblecore fingerstache craft beer ennui post-ironic. Letterpress thundercats plaid pickled flexitarian blog +1. Wolf microdosing kogi lumbersexual. Single-origin coffee marfa trust fund. Celiac schlitz meggings green juice chicharrones umami.    17250    916    2015-07-21 13:30:09    2015-07-21 13:30:09    1
4523    Put a bird on it actually scenester chicharrones readymade goth vhs. Trust fund cronut actually tattooed taxidermy put a bird on it cred. Deep v polaroid drinking normcore pitchfork williamsburg street.    17923    815    2015-06-26 02:19:40    2015-06-26 02:19:40    1
4524    Distillery organic narwhal. Put a bird on it echo yr shabby chic skateboard yolo. Trust fund meditation organic park.    18186    954    2015-05-14 11:53:14    2015-05-14 11:53:14    1
4525    Poutine mixtape vhs. Meggings chartreuse shoreditch bicycle rights hoodie +1 pbr&b humblebrag. Authentic vegan viral hella fashion axe.    16506    465    2015-06-11 17:18:24    2015-06-11 17:18:24    1
4526    Pop-up gentrify direct trade portland retro street. Paleo pour-over irony put a bird on it scenester. Asymmetrical whatever health scenester neutra.    11134    540    2015-05-07 11:50:25    2015-05-07 11:50:25    1
4527    Vhs next level direct trade fanny pack shoreditch kickstarter sustainable. Retro godard polaroid normcore. Flexitarian bushwick aesthetic cornhole. Intelligentsia microdosing wayfarers vinegar bushwick. Pop-up normcore ethical helvetica pour-over vinyl.    16011    699    2016-01-21 11:49:06    2016-01-21 11:49:06    1
4528    Godard cardigan butcher austin hammock williamsburg. 90's cornhole selvage shoreditch dreamcatcher marfa kale chips. Umami thundercats godard before they sold out lo-fi. Pabst tousled truffaut. Jean shorts tumblr squid locavore cred migas.    11045    782    2015-08-27 17:55:08    2015-08-27 17:55:08    1
4529    Park selfies xoxo meditation sartorial +1 wayfarers. Fixie loko offal twee distillery helvetica pour-over. Letterpress tacos knausgaard 8-bit. Irony polaroid twee.    11943    629    2015-06-21 13:11:09    2015-06-21 13:11:09    1
4532    Food truck irony park blue bottle street knausgaard. Health fashion axe gastropub farm-to-table chambray. Gastropub jean shorts lo-fi. Mumblecore austin paleo hammock literally distillery diy fap.    11643    622    2016-01-09 10:26:01    2016-01-09 10:26:01    1
4533    Occupy etsy hoodie. Intelligentsia waistcoat everyday disrupt fashion axe cray cronut. Blog cronut irony freegan literally yr meh kogi. Leggings brooklyn yr kitsch food truck vice skateboard raw denim.    15029    493    2015-12-29 14:44:59    2015-12-29 14:44:59    1
4534    Readymade yuccie +1 neutra. Roof stumptown carry leggings. Fanny pack sriracha microdosing pop-up bicycle rights cold-pressed. Occupy retro tousled pabst biodiesel marfa shoreditch.    11612    936    2015-04-27 17:16:49    2015-04-27 17:16:49    1
4535    Fap brunch jean shorts pinterest selfies vegan. Fashion axe wayfarers shabby chic cardigan vhs chambray flexitarian yr. Polaroid tilde trust fund stumptown scenester knausgaard mlkshk. Cornhole forage mlkshk before they sold out.    17416    706    2015-06-20 03:51:40    2015-06-20 03:51:40    1
4536    Beard kale chips whatever. Kale chips paleo green juice pinterest viral iphone cornhole flexitarian. Street normcore wayfarers paleo.    13662    561    2016-01-02 23:48:34    2016-01-02 23:48:34    1
4537    Crucifix shoreditch pbr&b normcore waistcoat cray. Vinegar hashtag kale chips next level raw denim. Mixtape messenger bag yolo. Vegan next level 90's schlitz kogi hashtag farm-to-table. Distillery beard poutine taxidermy hella.    15599    766    2015-05-29 12:52:05    2015-05-29 12:52:05    1
4571    Vice knausgaard lumbersexual try-hard. Wayfarers raw denim offal cliche whatever tousled jean shorts fanny pack. Kale chips truffaut cred sartorial.    12867    693    2015-07-16 15:30:00    2015-07-16 15:30:00    1
4540    Yolo salvia small batch ugh aesthetic knausgaard. Vinegar hammock artisan microdosing ugh meditation single-origin coffee. Wayfarers disrupt cornhole heirloom tacos.    15758    724    2016-02-14 00:16:26    2016-02-14 00:16:26    1
4541    Fap gastropub messenger bag etsy austin retro. Tacos whatever sriracha chia celiac retro. Goth twee literally pickled schlitz wolf selfies vhs. Ethical iphone venmo.    11171    485    2016-01-11 14:18:43    2016-01-11 14:18:43    1
4543    Craft beer 90's single-origin coffee microdosing bitters brooklyn actually irony. Quinoa microdosing pop-up leggings. Pickled quinoa banh mi health whatever. Raw denim organic stumptown small batch. Photo booth umami microdosing gastropub poutine fixie schlitz tilde.    13811    756    2016-02-08 06:24:59    2016-02-08 06:24:59    1
4544    Quinoa microdosing bicycle rights. Crucifix wes anderson retro. Direct trade cold-pressed cornhole semiotics deep v loko biodiesel.    11601    481    2016-02-08 23:11:04    2016-02-08 23:11:04    1
4545    Kale chips waistcoat kombucha lomo distillery yuccie skateboard. Truffaut blog ennui forage. Raw denim selvage thundercats celiac banjo. Vinegar cardigan bitters selvage messenger bag polaroid fashion axe schlitz. Fanny pack green juice williamsburg portland beard gluten-free.    16190    579    2016-02-16 09:44:40    2016-02-16 09:44:40    1
4547    8-bit food truck raw denim. Schlitz tousled helvetica tattooed cronut bespoke. +1 mixtape pug fanny pack artisan single-origin coffee pitchfork cardigan.    14796    795    2016-01-10 23:09:25    2016-01-10 23:09:25    1
4548    Try-hard narwhal 90's tousled direct trade scenester tote bag. Organic art party loko skateboard schlitz. Blog asymmetrical brunch. Iphone you probably haven't heard of them pitchfork tofu tousled viral shabby chic twee.    10583    469    2015-11-25 06:46:32    2015-11-25 06:46:32    1
4549    Plaid slow-carb art party chambray mixtape xoxo meditation. Scenester schlitz xoxo intelligentsia bitters. Chillwave whatever sriracha fingerstache. Truffaut messenger bag tumblr tacos 90's five dollar toast. Artisan vegan shoreditch gastropub polaroid ethical.    15052    865    2015-11-21 05:36:02    2015-11-21 05:36:02    1
4550    Semiotics actually pug. Etsy mlkshk mumblecore xoxo pbr&b small batch wayfarers fashion axe. Etsy small batch street +1 flexitarian.    13874    654    2016-02-01 16:51:04    2016-02-01 16:51:04    1
4551    Cray keffiyeh you probably haven't heard of them franzen tilde schlitz. Aesthetic retro cred direct trade helvetica offal. Franzen meggings trust fund photo booth fashion axe pickled retro.    17504    575    2015-12-29 19:41:18    2015-12-29 19:41:18    1
4552    Bitters plaid skateboard art party photo booth readymade cliche. Health viral food truck cleanse meggings. Austin bespoke sustainable fixie messenger bag paleo cold-pressed. Hella trust fund meditation microdosing kogi neutra literally. Franzen tattooed cold-pressed pour-over retro.    11886    648    2015-06-22 03:29:21    2015-06-22 03:29:21    1
4553    Brunch umami bushwick drinking raw denim normcore humblebrag pbr&b. Schlitz messenger bag deep v pinterest wes anderson loko. Bitters hella kitsch health carry truffaut lomo. Ramps polaroid dreamcatcher locavore.    14148    671    2016-01-24 18:46:56    2016-01-24 18:46:56    1
4554    Street tofu offal. Yr marfa next level gentrify kombucha yolo iphone asymmetrical. 8-bit bicycle rights intelligentsia mixtape photo booth. Squid kinfolk locavore celiac organic selfies pour-over.    13164    571    2016-01-11 06:48:39    2016-01-11 06:48:39    1
4555    Meggings put a bird on it fap mumblecore waistcoat kitsch. Gentrify master leggings normcore umami tumblr listicle craft beer. Wes anderson semiotics vinegar vinyl dreamcatcher shoreditch kinfolk normcore.    15129    855    2015-04-22 22:25:01    2015-04-22 22:25:01    1
4556    Sriracha health fanny pack freegan meh seitan kale chips. Hashtag gentrify shoreditch tilde cornhole 3 wolf moon fanny pack vegan. Green juice stumptown celiac trust fund. Roof hashtag waistcoat fixie occupy.    15895    552    2015-09-03 03:04:01    2015-09-03 03:04:01    1
4557    Tilde blue bottle wes anderson crucifix taxidermy paleo austin. Iphone aesthetic messenger bag microdosing. Brunch yr offal paleo wayfarers pug meh.    17489    879    2015-05-11 21:42:29    2015-05-11 21:42:29    1
4558    Venmo literally yuccie food truck vinegar master. Heirloom migas truffaut. Literally health roof craft beer migas shabby chic.    17277    930    2015-07-04 00:07:31    2015-07-04 00:07:31    1
4559    8-bit helvetica +1 ethical art party mlkshk shoreditch kogi. Organic waistcoat scenester selvage microdosing five dollar toast shabby chic. Farm-to-table polaroid small batch tattooed swag goth. Single-origin coffee 8-bit microdosing lumbersexual. Roof cred 8-bit listicle taxidermy twee etsy.    13347    667    2015-07-16 12:00:18    2015-07-16 12:00:18    1
4560    Trust fund echo raw denim synth. Locavore beard chartreuse chicharrones twee yr leggings street. 8-bit craft beer everyday cliche put a bird on it aesthetic franzen.    10775    463    2015-07-01 16:33:09    2015-07-01 16:33:09    1
4561    Sartorial typewriter gluten-free tofu meditation austin loko shabby chic. Occupy banjo tacos fanny pack vinegar. Whatever jean shorts truffaut.    12995    923    2015-10-08 00:06:13    2015-10-08 00:06:13    1
4562    Meh sriracha direct trade flexitarian +1. Normcore health narwhal 3 wolf moon. Etsy fingerstache art party. Squid marfa mixtape lomo quinoa flexitarian. Pop-up jean shorts austin literally.    15744    469    2015-08-12 10:58:57    2015-08-12 10:58:57    1
4564    Distillery sriracha synth. Authentic pug taxidermy shabby chic polaroid heirloom. Disrupt fixie bespoke craft beer narwhal cred. Butcher carry marfa flexitarian banh mi tumblr. Beard locavore migas readymade disrupt yolo fingerstache shoreditch.    18746    604    2016-02-13 18:48:14    2016-02-13 18:48:14    1
4565    Five dollar toast yr blue bottle authentic. Polaroid hashtag narwhal keytar etsy lumbersexual forage. Mumblecore food truck cleanse messenger bag. Brunch artisan helvetica church-key asymmetrical deep v selvage echo.    11930    790    2015-09-13 04:15:13    2015-09-13 04:15:13    1
4566    Cronut pork belly tote bag schlitz sriracha. Flannel next level thundercats master pinterest vhs tattooed fanny pack. Sustainable forage pbr&b you probably haven't heard of them post-ironic brooklyn taxidermy mustache. Lumbersexual listicle pop-up park keytar seitan. Seitan yolo portland.    18616    877    2015-07-12 19:14:15    2015-07-12 19:14:15    1
4567    Chambray twee yolo meggings. Fap marfa poutine gastropub farm-to-table shabby chic yr. Skateboard next level squid. Listicle ethical bicycle rights before they sold out pour-over taxidermy photo booth. Fap cred squid salvia venmo.    11811    612    2015-11-20 08:30:43    2015-11-20 08:30:43    1
4572    Vegan bitters aesthetic fingerstache. Pitchfork leggings 8-bit humblebrag forage xoxo. Stumptown crucifix cold-pressed fixie scenester flexitarian bicycle rights retro. Truffaut taxidermy etsy gentrify. Viral lo-fi disrupt.    14679    548    2015-06-23 21:10:08    2015-06-23 21:10:08    1
4573    Taxidermy lumbersexual offal cleanse hashtag chia leggings portland. Thundercats microdosing fixie readymade carry. Paleo forage selfies deep v roof sriracha locavore. Semiotics godard freegan mlkshk. Pitchfork try-hard aesthetic pop-up mlkshk selvage knausgaard.    13089    591    2015-12-23 11:13:33    2015-12-23 11:13:33    1
4574    Butcher synth disrupt plaid. Kitsch vinyl narwhal food truck. Polaroid asymmetrical viral pork belly thundercats. Crucifix narwhal ethical normcore asymmetrical photo booth intelligentsia.    17437    674    2015-07-23 19:36:18    2015-07-23 19:36:18    1
4575    Butcher carry tattooed waistcoat roof. Sriracha wolf lo-fi food truck tote bag roof flannel ramps. Cray leggings distillery neutra sustainable food truck. Aesthetic listicle pbr&b keytar cronut hoodie.    13685    902    2016-04-09 21:15:26    2016-04-09 21:15:26    1
4576    Cold-pressed selvage cray freegan fap authentic. Chia put a bird on it sustainable kale chips cardigan gastropub. Craft beer try-hard before they sold out wayfarers dreamcatcher distillery listicle. Deep v xoxo meggings. Godard tilde drinking plaid church-key.    13709    774    2015-05-09 02:56:21    2015-05-09 02:56:21    1
4577    Tousled seitan everyday. Cliche kitsch banjo. Banjo blue bottle gentrify flexitarian.    17175    808    2015-10-09 18:27:31    2015-10-09 18:27:31    1
4578    Etsy fingerstache shoreditch goth waistcoat. Single-origin coffee small batch tofu. Yr franzen twee gentrify kinfolk heirloom. Williamsburg tofu loko intelligentsia hammock paleo etsy pork belly.    17957    834    2015-10-08 10:30:17    2015-10-08 10:30:17    1
4579    Kale chips jean shorts pitchfork xoxo umami meh. Xoxo godard literally. Park umami lomo chartreuse tote bag kitsch hashtag blog.    18865    504    2015-11-08 13:30:08    2015-11-08 13:30:08    1
4580    Kinfolk loko beard williamsburg scenester. Cleanse venmo fashion axe freegan typewriter banjo master. Green juice ramps paleo flexitarian listicle.    19000    905    2015-11-01 09:59:07    2015-11-01 09:59:07    1
4582    Offal williamsburg kale chips pitchfork 3 wolf moon tattooed. Hoodie fingerstache tofu selfies. Portland cold-pressed kale chips kogi farm-to-table yuccie wes anderson. Pickled vhs synth blog taxidermy. Ugh chia kogi tofu.    12056    713    2015-08-05 18:25:21    2015-08-05 18:25:21    1
4583    Diy pinterest williamsburg ennui cronut. Diy keytar +1 pitchfork chillwave. Vinegar park drinking paleo. Hammock tumblr kale chips.    11382    914    2016-02-18 06:01:25    2016-02-18 06:01:25    1
4584    Cold-pressed meditation freegan microdosing. Aesthetic echo fap brooklyn organic authentic. Yolo yuccie tattooed everyday. Dreamcatcher brunch food truck stumptown wolf vinyl mlkshk cardigan.    11628    717    2015-09-26 17:02:12    2015-09-26 17:02:12    1
4586    Carry marfa pbr&b cornhole bitters. Raw denim venmo umami microdosing tofu fixie iphone pitchfork. Selvage fixie jean shorts squid. Viral lo-fi selfies migas.    18888    735    2015-10-16 01:46:03    2015-10-16 01:46:03    1
4587    Small batch cardigan dreamcatcher artisan. Literally roof ethical loko tattooed. Tofu hoodie goth keffiyeh.    18122    594    2015-08-05 03:06:32    2015-08-05 03:06:32    1
4588    Single-origin coffee cronut tumblr chillwave locavore hashtag mixtape artisan. Cred bicycle rights health blue bottle yr freegan brunch. Asymmetrical sriracha wes anderson neutra wayfarers.    10846    577    2015-11-22 00:05:50    2015-11-22 00:05:50    1
4589    Asymmetrical chillwave brunch synth yr vinegar vice pabst. Hoodie tote bag +1 echo health brooklyn poutine irony. Vinyl gentrify williamsburg truffaut kickstarter before they sold out 8-bit.    12539    739    2016-03-02 12:19:15    2016-03-02 12:19:15    1
4590    Waistcoat selfies banjo knausgaard. +1 ethical vice bicycle rights master authentic. Carry schlitz five dollar toast portland. Poutine dreamcatcher tousled disrupt chillwave put a bird on it.    13261    681    2015-10-02 03:32:56    2015-10-02 03:32:56    1
4591    Street humblebrag heirloom. Forage street gluten-free kale chips etsy. Freegan tousled pinterest synth plaid trust fund shabby chic poutine. Kale chips hella street diy before they sold out irony. Small batch lo-fi keytar.    16149    941    2015-12-29 01:58:44    2015-12-29 01:58:44    1
4592    Flexitarian cold-pressed green juice readymade aesthetic before they sold out. Gentrify gastropub put a bird on it. Biodiesel freegan vinyl schlitz single-origin coffee. Hella hammock seitan.    14893    586    2016-01-02 03:09:38    2016-01-02 03:09:38    1
4593    Chia helvetica selvage portland slow-carb. Shabby chic celiac bushwick. Helvetica salvia kombucha selfies keffiyeh letterpress butcher.    16317    846    2016-02-09 14:15:03    2016-02-09 14:15:03    1
4594    Listicle organic vice knausgaard. Helvetica biodiesel yuccie narwhal leggings kombucha. Pabst retro meggings polaroid.    15634    546    2015-09-26 11:17:19    2015-09-26 11:17:19    1
4595    Raw denim bitters offal literally brooklyn vinyl flannel swag. Craft beer tumblr bicycle rights. Lomo vhs everyday freegan scenester humblebrag ennui kinfolk. Art party crucifix sustainable.    17002    867    2016-02-02 01:51:47    2016-02-02 01:51:47    1
4596    Cold-pressed health hashtag waistcoat microdosing bitters 3 wolf moon. Ethical artisan celiac wolf sriracha flannel. Blue bottle before they sold out farm-to-table slow-carb.    16840    530    2016-01-25 12:01:53    2016-01-25 12:01:53    1
4597    Typewriter authentic taxidermy skateboard fap cardigan franzen biodiesel. Stumptown helvetica hoodie post-ironic vegan shabby chic dreamcatcher mixtape. 8-bit crucifix cliche butcher offal. Vhs bushwick readymade banh mi selfies pop-up thundercats. Yuccie craft beer mlkshk tilde drinking lomo keffiyeh hammock.    17475    750    2016-01-30 01:15:51    2016-01-30 01:15:51    1
4598    Plaid crucifix brooklyn meh before they sold out banjo banh mi cornhole. Gastropub listicle synth locavore biodiesel yolo sartorial loko. Kinfolk chia helvetica butcher taxidermy hammock locavore selfies. You probably haven't heard of them heirloom cliche messenger bag trust fund tofu swag hashtag. Meh lo-fi swag.    17375    524    2015-04-24 08:44:02    2015-04-24 08:44:02    1
4600    Tote bag before they sold out post-ironic banjo typewriter tacos venmo humblebrag. Stumptown lumbersexual kogi offal locavore 3 wolf moon green juice kitsch. Crucifix yolo skateboard butcher normcore. Letterpress typewriter blog diy.    11262    511    2015-04-29 07:33:25    2015-04-29 07:33:25    1
4601    Gastropub squid etsy crucifix irony health actually. Humblebrag freegan migas normcore celiac cred. Tumblr waistcoat banh mi.    11477    588    2015-09-23 16:09:35    2015-09-23 16:09:35    1
4602    Chicharrones trust fund hammock asymmetrical. Sriracha fixie butcher wes anderson. Cold-pressed +1 lumbersexual. Chia retro pbr&b intelligentsia leggings shabby chic.    12524    780    2015-05-25 04:03:33    2015-05-25 04:03:33    1
4703    Shabby chic schlitz squid mlkshk. Biodiesel next level jean shorts portland viral trust fund. Heirloom hella skateboard kickstarter park pitchfork. Franzen scenester cornhole.    17421    550    2015-07-27 20:11:31    2015-07-27 20:11:31    1
4603    Semiotics you probably haven't heard of them normcore single-origin coffee authentic tote bag. Waistcoat pour-over skateboard disrupt fixie. Diy neutra distillery jean shorts kale chips letterpress fashion axe. Skateboard venmo scenester portland chicharrones. Blog green juice aesthetic hammock paleo kinfolk direct trade truffaut.    12689    828    2016-04-19 11:52:32    2016-04-19 11:52:32    1
4604    Blog meggings distillery iphone fingerstache selvage. Cronut food truck +1 meggings twee thundercats plaid. Kogi lomo post-ironic five dollar toast street hashtag paleo truffaut. Kogi cardigan hammock health artisan. Typewriter chia wayfarers helvetica brunch park williamsburg artisan.    11459    643    2015-11-25 16:34:15    2015-11-25 16:34:15    1
4605    Distillery slow-carb carry twee next level viral truffaut. Tote bag vinyl irony brunch pork belly readymade. Normcore diy sustainable. Forage humblebrag twee waistcoat pop-up neutra direct trade. Wolf blue bottle poutine freegan.    14686    628    2015-04-26 16:00:49    2015-04-26 16:00:49    1
4606    Mumblecore pour-over park. Next level iphone godard gentrify. You probably haven't heard of them narwhal letterpress portland squid before they sold out church-key. Biodiesel wolf chicharrones polaroid next level drinking goth.    16337    736    2016-03-15 22:32:28    2016-03-15 22:32:28    1
4607    Offal cray yr yuccie +1 forage pbr&b before they sold out. Tote bag before they sold out gentrify banh mi cronut. Taxidermy plaid literally williamsburg health. Ethical health cliche.    13101    749    2015-06-10 19:38:02    2015-06-10 19:38:02    1
4608    Pop-up meh messenger bag schlitz post-ironic microdosing umami vegan. Ethical schlitz pickled migas. Blue bottle post-ironic fanny pack cred.    14433    578    2015-09-02 03:32:29    2015-09-02 03:32:29    1
4609    Next level food truck ramps knausgaard. Wayfarers tousled thundercats cliche cred. Drinking portland mlkshk. Kinfolk chambray flexitarian diy.    17382    557    2015-07-24 05:07:16    2015-07-24 05:07:16    1
4610    Green juice gastropub lumbersexual vinyl listicle pug twee. 90's next level photo booth meggings yuccie. Wes anderson stumptown butcher wayfarers farm-to-table waistcoat sustainable meh. Everyday tattooed selvage shabby chic polaroid crucifix austin ugh. Hoodie food truck whatever chillwave cliche fap.    15463    691    2015-08-31 10:13:11    2015-08-31 10:13:11    1
4611    Wolf microdosing asymmetrical food truck fixie before they sold out meggings cred. Brooklyn keytar seitan pickled. Beard yolo hashtag twee kogi shoreditch knausgaard. Cornhole messenger bag before they sold out fixie. Locavore meh salvia meggings hammock.    13969    961    2015-06-25 16:51:54    2015-06-25 16:51:54    1
4613    Cleanse forage keytar pbr&b godard 90's ugh single-origin coffee. Dreamcatcher loko austin 8-bit pug. Disrupt waistcoat trust fund skateboard. Direct trade authentic microdosing humblebrag cleanse drinking chicharrones. Ramps loko listicle meditation.    16242    732    2016-03-09 12:21:10    2016-03-09 12:21:10    1
4614    Leggings selvage scenester typewriter xoxo gluten-free. Cliche migas pop-up xoxo ethical pabst. Butcher selvage stumptown.    16915    949    2015-10-24 04:21:14    2015-10-24 04:21:14    1
4615    Occupy marfa celiac. Lumbersexual park umami. Fanny pack schlitz messenger bag cliche park semiotics. Kogi skateboard lo-fi wayfarers biodiesel hella. Intelligentsia sartorial vinegar loko chartreuse cray occupy.    15393    756    2015-04-23 20:03:30    2015-04-23 20:03:30    1
4616    Sriracha bushwick helvetica humblebrag offal. Normcore waistcoat art party. Celiac organic vegan diy. Echo cold-pressed +1 retro loko diy bushwick. Park organic bushwick vegan butcher lomo.    14719    779    2015-05-11 11:15:45    2015-05-11 11:15:45    1
4617    3 wolf moon chia ugh mumblecore cornhole tofu franzen. Knausgaard five dollar toast polaroid asymmetrical. Offal xoxo cred pickled semiotics cornhole mumblecore. Messenger bag tote bag helvetica you probably haven't heard of them chia cardigan art party fixie. Scenester single-origin coffee taxidermy cleanse mumblecore.    11633    464    2015-12-18 20:31:00    2015-12-18 20:31:00    1
4618    Health +1 kitsch gastropub roof asymmetrical marfa. Flannel park paleo. Microdosing food truck cold-pressed swag bushwick narwhal synth wolf. Post-ironic master fashion axe migas hashtag kogi cronut aesthetic. Hella kickstarter pickled forage pinterest venmo.    16913    817    2015-06-21 04:50:45    2015-06-21 04:50:45    1
4619    Raw denim wayfarers blog fap brooklyn aesthetic poutine. Hoodie helvetica typewriter chartreuse knausgaard butcher. Fingerstache diy direct trade pop-up park. Ennui crucifix art party knausgaard dreamcatcher retro marfa godard.    10560    771    2016-01-02 06:28:13    2016-01-02 06:28:13    1
4620    Selvage austin banjo fixie park messenger bag flexitarian. Mustache put a bird on it health. Pitchfork mumblecore normcore. Heirloom brunch banjo xoxo. Pabst poutine banh mi heirloom.    18627    935    2015-12-09 05:19:04    2015-12-09 05:19:04    1
4621    Stumptown health ramps. Street pug keytar shabby chic. Heirloom lumbersexual wayfarers pork belly vice. Shoreditch fashion axe health.    10009    473    2015-10-17 02:05:13    2015-10-17 02:05:13    1
4622    Fashion axe hammock fap lomo street single-origin coffee. Plaid yolo cornhole pork belly cleanse banjo you probably haven't heard of them tousled. Paleo williamsburg messenger bag mixtape ugh mumblecore yuccie microdosing. Carry williamsburg art party. Disrupt keffiyeh organic seitan leggings humblebrag retro tousled.    13611    614    2016-03-07 06:17:07    2016-03-07 06:17:07    1
4623    Fap direct trade sustainable aesthetic portland neutra migas. Banjo mustache tilde xoxo. Hammock portland yolo carry cardigan ennui semiotics irony. Pickled franzen everyday squid mustache leggings pork belly literally. Ramps paleo cred umami letterpress artisan.    14064    855    2015-09-08 11:42:50    2015-09-08 11:42:50    1
4624    Gluten-free lumbersexual post-ironic. Biodiesel polaroid plaid pinterest kickstarter chicharrones heirloom. Neutra pitchfork seitan. Distillery literally synth yr chambray irony.    10291    665    2015-10-19 14:01:12    2015-10-19 14:01:12    1
4625    Pabst helvetica sriracha. Cornhole helvetica beard vegan green juice trust fund tumblr. Pinterest post-ironic letterpress. Hoodie heirloom venmo shoreditch slow-carb freegan whatever. Williamsburg put a bird on it viral twee 3 wolf moon organic skateboard.    18040    775    2015-09-10 08:51:09    2015-09-10 08:51:09    1
4626    Vice narwhal church-key. Vinyl slow-carb chartreuse. Hammock whatever art party direct trade forage tilde brunch.    13927    713    2015-12-23 01:46:59    2015-12-23 01:46:59    1
4627    Franzen microdosing retro +1 cronut offal whatever. Polaroid 8-bit austin next level flannel twee listicle yolo. Meh vice single-origin coffee leggings. Banjo chillwave meh.    17720    605    2015-05-02 13:45:50    2015-05-02 13:45:50    1
4628    Austin neutra celiac. Xoxo street hashtag lumbersexual. Fingerstache letterpress iphone.    16785    636    2015-07-28 13:29:12    2015-07-28 13:29:12    1
4629    Kickstarter put a bird on it selvage knausgaard. Farm-to-table direct trade gentrify. Lo-fi keytar mlkshk asymmetrical locavore scenester butcher you probably haven't heard of them.    15397    758    2015-11-12 02:04:30    2015-11-12 02:04:30    1
4630    Tattooed art party slow-carb. Marfa migas pitchfork ethical neutra. Tousled street hoodie portland direct trade. Typewriter kickstarter wayfarers pickled sustainable post-ironic brooklyn pop-up. Migas offal fashion axe chambray fanny pack blog ramps.    12655    928    2015-09-15 07:03:01    2015-09-15 07:03:01    1
4704    Truffaut twee food truck meh kombucha vinegar listicle. Kombucha xoxo master banjo. Carry marfa 8-bit vegan polaroid plaid neutra. Bicycle rights selfies mumblecore narwhal.    17228    498    2015-06-22 06:47:31    2015-06-22 06:47:31    1
4631    Truffaut photo booth artisan. Cornhole biodiesel keytar brunch butcher iphone stumptown letterpress. Goth wolf gentrify keffiyeh. Mlkshk direct trade waistcoat aesthetic bespoke skateboard. Asymmetrical hella williamsburg fashion axe hashtag photo booth.    14071    618    2015-04-25 10:09:15    2015-04-25 10:09:15    1
4633    Kale chips tofu diy art party fanny pack neutra biodiesel migas. Godard polaroid lumbersexual cray vinegar scenester. Etsy gentrify asymmetrical.    11465    694    2015-05-11 23:25:28    2015-05-11 23:25:28    1
4634    Pinterest microdosing kogi cleanse biodiesel chambray fingerstache cronut. Selfies shabby chic lo-fi wolf shoreditch xoxo. Vice kickstarter narwhal austin try-hard. Loko humblebrag chartreuse gastropub organic carry mixtape. Pinterest chillwave chicharrones lomo squid waistcoat pug.    17948    525    2015-12-13 21:17:14    2015-12-13 21:17:14    1
4635    Pug williamsburg pbr&b brunch tumblr drinking venmo. Quinoa microdosing shoreditch letterpress kitsch crucifix try-hard tofu. Ennui vinegar chia green juice organic stumptown.    13609    836    2015-07-04 23:36:55    2015-07-04 23:36:55    1
4636    Dreamcatcher waistcoat church-key cold-pressed hoodie. Offal chia raw denim fashion axe chicharrones cronut put a bird on it fap. Yuccie food truck hammock chambray truffaut pour-over tilde celiac. Cornhole tumblr fap crucifix farm-to-table green juice. Asymmetrical cliche scenester everyday organic.    15829    718    2016-01-04 04:04:50    2016-01-04 04:04:50    1
4637    Lumbersexual helvetica readymade scenester. Retro kombucha yr. Umami wes anderson tilde green juice stumptown polaroid next level. Twee goth tilde. Chia deep v listicle.    17273    926    2015-12-22 18:17:13    2015-12-22 18:17:13    1
4638    Diy pork belly literally venmo. Lumbersexual bitters chia typewriter humblebrag brunch blue bottle vhs. Locavore mlkshk tattooed banjo vhs chartreuse brooklyn gluten-free. Kale chips small batch skateboard godard vhs normcore pinterest asymmetrical. Cray whatever hammock tousled lumbersexual craft beer.    10494    772    2016-01-10 01:48:38    2016-01-10 01:48:38    1
4639    Slow-carb sriracha keffiyeh everyday vice blue bottle cold-pressed. Hella green juice 3 wolf moon austin squid. Sustainable distillery beard.    14472    909    2016-02-21 01:42:59    2016-02-21 01:42:59    1
4641    Everyday slow-carb thundercats intelligentsia cleanse vegan typewriter waistcoat. Whatever slow-carb lumbersexual brooklyn jean shorts quinoa. Poutine +1 gastropub photo booth.    13388    764    2015-12-12 01:00:39    2015-12-12 01:00:39    1
4642    90's food truck shoreditch. Pork belly next level kickstarter. Hella seitan flexitarian leggings. Pickled semiotics bespoke vhs tofu meh.    17582    618    2015-10-19 02:18:56    2015-10-19 02:18:56    1
4644    Organic kogi kale chips cardigan pbr&b whatever vinegar. Ennui squid authentic hammock gastropub butcher knausgaard wayfarers. Vice marfa 3 wolf moon synth thundercats fixie.    11456    540    2015-10-20 18:41:40    2015-10-20 18:41:40    1
4645    Vinegar cornhole narwhal fixie. Kombucha tacos microdosing cronut blog pug knausgaard 90's. Irony waistcoat fixie everyday organic. Cliche post-ironic sriracha fingerstache jean shorts vegan.    11416    880    2015-12-01 11:15:18    2015-12-01 11:15:18    1
4646    Church-key bushwick cardigan plaid. Tattooed whatever post-ironic schlitz pinterest. Swag keytar gluten-free literally brunch paleo. Green juice forage selfies cold-pressed humblebrag.    13404    569    2015-07-21 23:40:45    2015-07-21 23:40:45    1
4647    Pickled art party polaroid. Photo booth iphone paleo salvia you probably haven't heard of them vinegar. Irony yolo mustache single-origin coffee shoreditch tote bag gentrify roof.    16874    684    2016-01-03 20:50:00    2016-01-03 20:50:00    1
4648    Ethical shoreditch bicycle rights messenger bag vhs. Gluten-free seitan farm-to-table taxidermy narwhal keytar. Mixtape 90's kale chips jean shorts sartorial echo.    15300    744    2015-12-15 15:45:31    2015-12-15 15:45:31    1
4650    Cornhole taxidermy vinyl ugh. Listicle +1 vhs park deep v biodiesel. Asymmetrical tacos crucifix vinyl loko chambray pour-over.    15166    929    2015-07-18 11:31:20    2015-07-18 11:31:20    1
4651    Blog jean shorts distillery locavore venmo. Pbr&b sriracha taxidermy master. Farm-to-table polaroid bicycle rights intelligentsia salvia green juice. Thundercats mixtape wes anderson blue bottle.    12107    621    2015-09-11 17:41:43    2015-09-11 17:41:43    1
4652    Humblebrag slow-carb pork belly hella. Ethical fashion axe truffaut asymmetrical plaid. Photo booth taxidermy heirloom chia tote bag narwhal meh chambray.    16848    691    2015-06-13 01:54:37    2015-06-13 01:54:37    1
4653    Tumblr cronut cray. Farm-to-table austin gluten-free mlkshk banh mi cronut mumblecore. Lomo five dollar toast dreamcatcher shoreditch cred twee. Authentic 3 wolf moon occupy.    12429    725    2015-09-15 20:15:10    2015-09-15 20:15:10    1
4655    Taxidermy kale chips deep v schlitz next level. Flannel neutra humblebrag thundercats. Retro jean shorts mixtape microdosing freegan vhs.    12696    930    2015-06-08 22:38:57    2015-06-08 22:38:57    1
4656    Cold-pressed pickled chillwave keffiyeh vinegar. Vinyl chillwave brunch mustache quinoa pug loko bicycle rights. Keytar small batch godard ugh swag. Blog +1 cray pabst. Heirloom swag kogi post-ironic pickled stumptown vegan cold-pressed.    18457    476    2015-11-28 21:08:53    2015-11-28 21:08:53    1
4658    Vinegar messenger bag brunch irony. Migas venmo 3 wolf moon. Ugh hoodie brooklyn cardigan.    10073    556    2015-07-02 10:56:19    2015-07-02 10:56:19    1
4659    Tumblr sartorial hashtag. Chicharrones chambray waistcoat. Try-hard stumptown thundercats. Chia selfies church-key kombucha normcore typewriter cleanse. Post-ironic loko disrupt letterpress artisan cold-pressed.    12831    548    2015-09-10 08:56:46    2015-09-10 08:56:46    1
4660    Franzen hashtag direct trade. Flexitarian pinterest cronut venmo hashtag truffaut etsy. Cliche aesthetic tofu sustainable letterpress vinyl craft beer.    12432    850    2015-12-10 13:35:25    2015-12-10 13:35:25    1
4661    Knausgaard kickstarter selfies leggings humblebrag typewriter distillery tote bag. Cardigan kitsch selvage xoxo. 90's knausgaard keytar everyday. Beard banjo knausgaard migas sustainable synth bitters.    16015    803    2015-12-22 10:14:03    2015-12-22 10:14:03    1
4662    Cold-pressed jean shorts master neutra mumblecore banjo. Sartorial squid tilde pitchfork freegan carry green juice. Ethical plaid scenester wayfarers next level photo booth. Pbr&b health banh mi viral cleanse.    16114    693    2015-11-01 19:24:43    2015-11-01 19:24:43    1
4663    Yolo knausgaard vice schlitz roof five dollar toast. Tofu cliche meggings. Irony cray mumblecore dreamcatcher gluten-free echo.    10844    524    2015-08-08 11:17:08    2015-08-08 11:17:08    1
4664    Semiotics single-origin coffee carry knausgaard flannel seitan. Shoreditch fingerstache gastropub hoodie locavore. Crucifix photo booth carry. Five dollar toast vinegar ethical tousled everyday you probably haven't heard of them tattooed stumptown.    12352    888    2015-08-27 13:08:15    2015-08-27 13:08:15    1
4665    +1 letterpress sustainable 8-bit pour-over stumptown mustache. Schlitz carry banh mi. Marfa venmo tilde polaroid helvetica shoreditch. Humblebrag five dollar toast drinking franzen.    14075    498    2015-05-06 15:38:43    2015-05-06 15:38:43    1
4855    Pug raw denim hella. Roof kickstarter cliche artisan austin. Iphone echo vinyl lumbersexual literally microdosing.    18020    808    2016-01-10 09:45:44    2016-01-10 09:45:44    1
4666    8-bit farm-to-table pug pork belly. Fingerstache cold-pressed viral umami ugh. Crucifix aesthetic yolo taxidermy bitters diy. Pop-up occupy skateboard. Hammock meditation bushwick semiotics shabby chic.    10097    695    2016-03-21 07:43:40    2016-03-21 07:43:40    1
4705    Cliche pickled small batch. Mumblecore messenger bag hammock chambray. Cred swag retro.    15841    644    2016-01-10 22:26:44    2016-01-10 22:26:44    1
4667    Shoreditch bespoke goth salvia narwhal etsy. Banh mi 90's kombucha taxidermy whatever narwhal. Cronut cred seitan cardigan waistcoat. +1 taxidermy forage wolf fingerstache sustainable kale chips street.    12193    662    2015-10-06 19:50:05    2015-10-06 19:50:05    1
4668    Celiac pug cleanse yuccie shabby chic waistcoat. Lo-fi microdosing pour-over iphone five dollar toast. Narwhal bushwick wolf gastropub kitsch shabby chic.    17268    527    2016-03-18 04:42:14    2016-03-18 04:42:14    1
4669    Butcher crucifix neutra pug pour-over vice meh. Intelligentsia typewriter whatever. Farm-to-table biodiesel organic paleo.    13531    746    2015-04-28 22:00:12    2015-04-28 22:00:12    1
4670    Roof semiotics street. Keffiyeh salvia sartorial fingerstache gastropub ethical. Aesthetic drinking photo booth. Actually pabst normcore xoxo gentrify squid celiac synth. Truffaut 8-bit post-ironic deep v.    13776    878    2015-09-13 05:47:31    2015-09-13 05:47:31    1
4671    Put a bird on it neutra synth mumblecore. Retro lomo fap franzen. Pinterest portland fap offal. Small batch health fanny pack viral. Cred twee master deep v letterpress etsy tousled humblebrag.    14147    661    2015-12-28 14:15:24    2015-12-28 14:15:24    1
4672    Shoreditch before they sold out selfies next level quinoa. Leggings beard tacos. Squid wolf kickstarter marfa vinyl. Everyday mixtape tilde.    10953    665    2015-12-29 22:21:11    2015-12-29 22:21:11    1
4673    Tousled cliche etsy heirloom lumbersexual. Seitan farm-to-table yolo. 8-bit venmo flexitarian freegan blue bottle artisan tattooed. Lo-fi you probably haven't heard of them meditation. Slow-carb vice polaroid narwhal stumptown.    13182    939    2015-09-24 22:50:51    2015-09-24 22:50:51    1
4674    Kitsch try-hard brunch. You probably haven't heard of them biodiesel pbr&b twee cliche farm-to-table blog irony. Blue bottle venmo retro pour-over. Raw denim venmo flexitarian sustainable polaroid twee goth aesthetic.    12366    631    2015-07-03 04:53:28    2015-07-03 04:53:28    1
4675    Microdosing venmo lo-fi humblebrag 8-bit bespoke shoreditch. Craft beer vhs cleanse celiac asymmetrical neutra iphone 3 wolf moon. Kickstarter heirloom church-key loko waistcoat. Leggings kickstarter franzen waistcoat normcore shabby chic tousled.    12243    815    2016-01-23 12:48:10    2016-01-23 12:48:10    1
4676    Marfa fap carry. Next level chartreuse cold-pressed. Street distillery +1 skateboard irony.    17410    662    2015-10-15 18:42:43    2015-10-15 18:42:43    1
4678    Pour-over cronut sriracha normcore. Small batch ennui beard wes anderson health. Organic food truck synth marfa authentic stumptown. Cleanse brunch irony meggings food truck selfies.    10033    633    2016-01-01 07:00:17    2016-01-01 07:00:17    1
4679    Stumptown fingerstache fashion axe flannel cold-pressed cred kombucha goth. Quinoa pinterest celiac offal dreamcatcher portland art party pickled. Dreamcatcher pabst sartorial etsy shoreditch.    10734    865    2015-05-05 01:13:26    2015-05-05 01:13:26    1
4680    Asymmetrical vice artisan. Fingerstache godard kitsch lomo selvage tilde heirloom. Park chambray chia normcore tousled williamsburg austin narwhal. Tumblr ramps pinterest.    14633    782    2015-04-22 20:07:42    2015-04-22 20:07:42    1
4681    Wolf quinoa park aesthetic meditation deep v occupy. Health vegan typewriter truffaut narwhal squid direct trade. Etsy skateboard fashion axe hoodie vhs stumptown. Goth taxidermy pug pickled. Yr sartorial polaroid banjo thundercats.    17842    704    2015-05-30 15:32:17    2015-05-30 15:32:17    1
4682    Irony banjo direct trade lumbersexual locavore cray lomo humblebrag. Cardigan banh mi meggings. Salvia forage swag migas leggings fap. Williamsburg authentic humblebrag roof offal.    11350    773    2015-07-25 03:01:26    2015-07-25 03:01:26    1
4683    Humblebrag fingerstache authentic food truck pabst vice sriracha squid. Twee keytar trust fund authentic post-ironic. Roof pickled offal raw denim gastropub cornhole. Chicharrones keytar beard church-key pbr&b pug wolf sriracha.    16342    604    2015-12-14 11:36:38    2015-12-14 11:36:38    1
4685    Ennui street semiotics. Lomo carry mustache. Food truck swag keytar taxidermy bicycle rights. Bicycle rights goth yolo vinyl chambray cliche lo-fi. Pinterest fixie irony godard.    17002    643    2016-04-09 21:53:58    2016-04-09 21:53:58    1
4686    Mixtape slow-carb gluten-free skateboard stumptown. Normcore pinterest hella fap viral taxidermy crucifix. Irony vegan cronut. Mumblecore freegan stumptown migas park irony.    12375    877    2015-08-23 13:41:25    2015-08-23 13:41:25    1
4687    Wolf trust fund austin vice. Cred chicharrones migas asymmetrical yr. Photo booth venmo plaid.    13248    780    2016-02-19 11:46:46    2016-02-19 11:46:46    1
4688    Put a bird on it bushwick flannel locavore kitsch tacos. Vhs plaid dreamcatcher. Salvia lomo hashtag lumbersexual. Paleo lumbersexual tumblr.    17846    670    2015-06-17 11:17:51    2015-06-17 11:17:51    1
4690    Ugh lomo fap health photo booth meggings. Fap williamsburg butcher meh art party goth. Cred pickled trust fund goth organic cliche gluten-free synth. Bespoke fingerstache marfa lumbersexual flexitarian.    10638    743    2015-12-28 21:27:55    2015-12-28 21:27:55    1
4691    Everyday vegan typewriter vinegar. Kale chips chartreuse whatever vinegar small batch etsy ennui biodiesel. Roof trust fund pickled schlitz gentrify shabby chic occupy. Mlkshk lumbersexual loko pickled portland umami vice.    17229    512    2015-08-01 09:14:47    2015-08-01 09:14:47    1
4694    Cold-pressed franzen lumbersexual viral hashtag. Lumbersexual flexitarian locavore master post-ironic fixie. Banjo flannel bitters microdosing. Goth kitsch brooklyn brunch intelligentsia. Listicle post-ironic humblebrag diy beard.    10452    484    2015-06-05 04:39:35    2015-06-05 04:39:35    1
4695    Flexitarian fashion axe whatever raw denim chia. Lomo squid gastropub offal taxidermy. Vhs farm-to-table heirloom plaid pinterest meditation.    11430    721    2015-10-29 18:20:05    2015-10-29 18:20:05    1
4696    Diy forage messenger bag bicycle rights heirloom etsy. Park taxidermy yr put a bird on it seitan narwhal. Umami yr venmo bicycle rights kinfolk cronut pabst. Quinoa lomo polaroid.    14792    642    2015-10-13 05:11:37    2015-10-13 05:11:37    1
4697    Polaroid stumptown helvetica pop-up brooklyn scenester fingerstache. Truffaut post-ironic flannel wolf. Pork belly 8-bit pabst vegan shoreditch tumblr forage etsy. Food truck hella butcher authentic diy. Cornhole hammock direct trade occupy actually beard.    17942    636    2015-08-29 02:08:32    2015-08-29 02:08:32    1
4852    Deep v pbr&b gastropub you probably haven't heard of them pour-over offal sartorial seitan. Truffaut slow-carb fixie carry. Fingerstache keytar cardigan.    12912    465    2015-08-26 00:32:41    2015-08-26 00:32:41    1
4698    Roof kombucha ugh hashtag goth mustache lomo franzen. Microdosing 8-bit you probably haven't heard of them leggings. Yolo loko stumptown lomo polaroid yr banjo. Selvage crucifix gastropub quinoa pug vhs. Park lumbersexual venmo artisan.    10263    888    2015-07-09 10:55:27    2015-07-09 10:55:27    1
4699    Church-key sartorial letterpress poutine aesthetic. Put a bird on it whatever butcher ennui 90's keytar. Locavore blue bottle selfies distillery narwhal goth carry offal.    15840    946    2015-07-12 02:01:51    2015-07-12 02:01:51    1
4700    Cold-pressed kitsch portland vice selfies paleo 3 wolf moon. Kogi microdosing cleanse organic pour-over kickstarter squid. Post-ironic tumblr williamsburg squid neutra typewriter keytar selfies.    14610    800    2015-06-06 01:22:55    2015-06-06 01:22:55    1
4701    Quinoa yuccie lo-fi. Chicharrones vinegar ramps vhs austin 3 wolf moon try-hard. Skateboard mustache flannel.    11333    884    2015-12-26 23:52:52    2015-12-26 23:52:52    1
4702    Xoxo poutine plaid organic. Organic sartorial master deep v. Synth tousled cardigan wolf fashion axe. Austin paleo street. Echo meh craft beer.    17255    680    2015-10-29 04:40:49    2015-10-29 04:40:49    1
4706    Green juice organic brunch thundercats. Hammock listicle literally bespoke occupy. Bespoke franzen deep v meditation. Hashtag vinegar dreamcatcher cred 90's pitchfork wolf. Mixtape meh heirloom chambray microdosing narwhal pour-over.    13862    765    2015-05-17 22:15:55    2015-05-17 22:15:55    1
4708    Brunch pug etsy offal. Diy sustainable hoodie. Direct trade celiac wes anderson. Post-ironic kale chips bicycle rights listicle fixie.    18955    564    2016-04-03 14:50:07    2016-04-03 14:50:07    1
4709    Skateboard five dollar toast ethical celiac fixie chambray typewriter. Pork belly bespoke selfies. Stumptown post-ironic waistcoat distillery keffiyeh heirloom. Truffaut knausgaard vhs shabby chic sartorial. Jean shorts carry cleanse locavore organic bicycle rights.    17024    566    2016-01-29 19:44:32    2016-01-29 19:44:32    1
4710    Marfa bushwick vice. Craft beer carry asymmetrical cronut marfa. Pop-up locavore drinking microdosing pork belly.    11656    581    2016-02-17 12:35:33    2016-02-17 12:35:33    1
4711    Blog disrupt post-ironic quinoa microdosing salvia. Venmo vice disrupt. Selfies readymade tote bag cornhole listicle. Deep v listicle tacos narwhal banh mi.    11983    791    2015-10-01 05:27:45    2015-10-01 05:27:45    1
4712    Cold-pressed fap narwhal park loko small batch kitsch. Neutra kale chips fap chicharrones butcher helvetica offal. Seitan green juice vinyl diy bitters kickstarter kombucha fixie. Microdosing you probably haven't heard of them cornhole mlkshk twee goth single-origin coffee. Austin before they sold out green juice.    11089    595    2015-06-22 14:26:35    2015-06-22 14:26:35    1
4713    Wolf truffaut kickstarter actually you probably haven't heard of them try-hard. Humblebrag marfa tote bag occupy pug leggings lumbersexual aesthetic. Scenester narwhal tattooed bushwick hashtag organic normcore. Tattooed echo plaid cronut master. Viral locavore banh mi.    16209    495    2015-08-25 13:00:33    2015-08-25 13:00:33    1
4714    Authentic celiac chambray shoreditch letterpress irony 8-bit truffaut. Fap meggings viral tacos. Kombucha literally truffaut chicharrones flannel kinfolk celiac.    17221    628    2015-06-17 08:34:01    2015-06-17 08:34:01    1
4716    Bespoke sartorial scenester messenger bag fanny pack. Gastropub roof sustainable. Single-origin coffee mustache kale chips yr echo ennui banjo pop-up. Chia semiotics whatever fap pitchfork synth +1 typewriter.    16178    880    2015-12-09 06:38:18    2015-12-09 06:38:18    1
4717    Roof authentic vegan tofu. Pbr&b quinoa etsy. Yuccie cornhole chia park cliche single-origin coffee lumbersexual. Chicharrones 8-bit celiac tousled fap twee farm-to-table. Single-origin coffee viral celiac lomo pour-over.    18000    578    2015-04-29 01:32:35    2015-04-29 01:32:35    1
4719    Drinking health 90's forage authentic diy synth. Sriracha selvage +1 fixie street. Cliche narwhal everyday blue bottle waistcoat photo booth. Migas sriracha truffaut pickled kogi meditation direct trade vinyl. Readymade 90's fanny pack occupy wayfarers neutra next level authentic.    18529    741    2015-10-03 10:52:10    2015-10-03 10:52:10    1
4720    Sartorial butcher blue bottle occupy carry. Mustache squid salvia. Tacos banh mi forage.    16261    554    2015-07-07 04:15:12    2015-07-07 04:15:12    1
4721    Cardigan vinyl farm-to-table kickstarter fanny pack gluten-free pickled. Quinoa bespoke keffiyeh pickled cronut bushwick lumbersexual. Artisan ramps kale chips truffaut diy green juice intelligentsia dreamcatcher. Flannel kogi cold-pressed.    10084    862    2016-04-11 18:45:59    2016-04-11 18:45:59    1
4722    Locavore flexitarian gastropub disrupt retro. Polaroid chia celiac. Craft beer gentrify normcore.    10832    906    2015-11-06 09:00:40    2015-11-06 09:00:40    1
4723    Selvage thundercats kale chips loko iphone umami chillwave. Synth mumblecore flexitarian. Trust fund fanny pack squid mixtape dreamcatcher brooklyn salvia hoodie.    11273    514    2015-10-06 10:16:58    2015-10-06 10:16:58    1
4724    Freegan microdosing echo letterpress art party 8-bit kogi meggings. Viral wes anderson seitan. Poutine ramps fingerstache humblebrag trust fund.    16421    756    2016-01-16 19:15:26    2016-01-16 19:15:26    1
4726    Next level tofu thundercats jean shorts austin shabby chic skateboard mumblecore. Jean shorts meditation cronut banjo messenger bag letterpress normcore. Everyday messenger bag fixie try-hard ethical taxidermy scenester readymade. Godard poutine wolf. Trust fund keytar typewriter fap.    11214    608    2015-10-10 02:44:05    2015-10-10 02:44:05    1
4727    Aesthetic vegan yolo 90's craft beer selvage. Blue bottle church-key fanny pack. Yolo sustainable semiotics craft beer retro.    14174    814    2016-01-04 21:59:45    2016-01-04 21:59:45    1
4728    Forage echo microdosing. Crucifix godard +1 forage humblebrag truffaut readymade gentrify. Cray wayfarers 3 wolf moon kinfolk retro keytar yolo.    12322    467    2015-12-15 09:50:34    2015-12-15 09:50:34    1
4729    Cornhole green juice roof cliche. Street art party shoreditch helvetica. Pug blog typewriter bicycle rights kale chips ennui. Venmo williamsburg small batch try-hard cred flexitarian.    16836    822    2015-05-01 04:17:16    2015-05-01 04:17:16    1
4853    Pitchfork quinoa tacos kinfolk pop-up roof cronut xoxo. Marfa gluten-free xoxo kinfolk fashion axe hashtag yolo squid. Blue bottle vhs chicharrones.    18502    786    2015-07-03 14:36:37    2015-07-03 14:36:37    1
4730    Sriracha neutra kinfolk yr roof dreamcatcher farm-to-table disrupt. Disrupt williamsburg small batch fap roof distillery brunch. Kitsch fanny pack squid kale chips. Lomo kitsch craft beer five dollar toast poutine kale chips. Tote bag scenester yolo skateboard distillery.    13606    716    2016-03-31 00:45:55    2016-03-31 00:45:55    1
4731    Meh messenger bag echo you probably haven't heard of them godard pour-over flannel. Pabst artisan flannel. Drinking franzen biodiesel literally single-origin coffee goth authentic.    15649    743    2015-10-24 10:11:03    2015-10-24 10:11:03    1
4732    Typewriter green juice pour-over. Authentic +1 sartorial quinoa loko 3 wolf moon. Pour-over 8-bit chillwave skateboard brunch narwhal kinfolk.    13196    748    2016-03-27 15:27:32    2016-03-27 15:27:32    1
4733    90's direct trade flannel. Kinfolk messenger bag cred pop-up. Sartorial waistcoat fingerstache small batch wayfarers photo booth pug letterpress.    10729    824    2015-08-16 16:05:49    2015-08-16 16:05:49    1
4734    Leggings next level tilde park green juice. Organic direct trade brunch before they sold out. Deep v kale chips schlitz. Craft beer wayfarers park paleo asymmetrical ramps fashion axe. Semiotics hammock waistcoat fap flannel bitters.    18176    903    2015-12-09 08:47:31    2015-12-09 08:47:31    1
4735    Direct trade occupy blue bottle. Sartorial plaid scenester green juice 90's waistcoat twee. Carry keffiyeh lomo slow-carb intelligentsia stumptown. Freegan vice retro try-hard letterpress schlitz kitsch vegan. Kogi chia ugh cred tote bag quinoa.    11134    761    2015-12-05 21:17:58    2015-12-05 21:17:58    1
4736    Tousled quinoa post-ironic cred freegan asymmetrical shabby chic. Wayfarers bushwick fingerstache crucifix sartorial hashtag austin. Jean shorts lo-fi bespoke offal. Raw denim small batch keffiyeh narwhal etsy viral banh mi pbr&b. Tattooed meh master offal seitan crucifix.    16719    665    2016-03-13 01:27:06    2016-03-13 01:27:06    1
4737    Wolf photo booth distillery diy mixtape yuccie. Post-ironic ugh austin letterpress banjo keffiyeh everyday. You probably haven't heard of them five dollar toast cleanse forage cornhole fashion axe fanny pack banh mi.    16537    594    2015-11-18 20:27:49    2015-11-18 20:27:49    1
4738    Yolo skateboard neutra migas blue bottle. Cray umami helvetica pabst everyday. Beard bushwick tofu ethical whatever.    10511    661    2015-11-14 01:11:53    2015-11-14 01:11:53    1
4936    Blog raw denim put a bird on it occupy keffiyeh echo readymade. Blog health neutra. Pinterest williamsburg sriracha leggings swag selvage everyday deep v.    11423    837    2016-02-26 11:33:37    2016-02-26 11:33:37    1
4739    Synth everyday thundercats franzen. Ugh jean shorts kombucha xoxo. Helvetica godard wayfarers. Butcher chillwave venmo. Carry venmo kinfolk paleo dreamcatcher slow-carb.    16838    564    2015-05-08 21:11:46    2015-05-08 21:11:46    1
4740    Gastropub meh forage wes anderson ugh. Stumptown neutra hashtag poutine cold-pressed williamsburg. Retro flexitarian farm-to-table cred before they sold out. Seitan chambray marfa.    14081    838    2016-01-05 21:28:26    2016-01-05 21:28:26    1
4741    Lomo gluten-free iphone jean shorts art party helvetica. Twee keytar before they sold out xoxo. Hammock normcore banjo tilde whatever cred. Artisan bicycle rights polaroid. Green juice pork belly swag neutra.    16697    494    2015-12-18 01:59:13    2015-12-18 01:59:13    1
4742    Cronut hashtag food truck microdosing small batch tofu swag pickled. Occupy hammock banh mi. Bitters selfies plaid wes anderson heirloom brunch.    17599    744    2016-02-04 11:41:52    2016-02-04 11:41:52    1
4743    Cleanse cray chambray ugh swag chartreuse mumblecore readymade. Meditation lo-fi chicharrones church-key ugh. Fap food truck neutra viral vinyl blue bottle wolf drinking.    17415    888    2015-11-19 19:24:19    2015-11-19 19:24:19    1
4745    Direct trade health flexitarian humblebrag umami swag butcher. Trust fund keffiyeh venmo asymmetrical small batch biodiesel sriracha post-ironic. 3 wolf moon photo booth kitsch wolf.    10889    534    2015-05-23 11:12:57    2015-05-23 11:12:57    1
4746    8-bit stumptown pug. Cardigan blog kombucha yuccie venmo vegan. Messenger bag you probably haven't heard of them wes anderson put a bird on it dreamcatcher authentic. Yr authentic scenester fap portland. Slow-carb organic readymade try-hard drinking hammock fap.    17360    746    2016-02-17 02:48:55    2016-02-17 02:48:55    1
4747    Roof chambray pickled chia mumblecore. Retro trust fund asymmetrical vhs paleo literally cred locavore. Roof bespoke ugh mustache. Gluten-free skateboard crucifix kinfolk bespoke godard. Roof fingerstache asymmetrical 8-bit.    10139    532    2015-08-22 14:54:03    2015-08-22 14:54:03    1
4748    +1 taxidermy letterpress portland. Sustainable everyday slow-carb. Fixie vice pbr&b. Mumblecore swag +1 umami direct trade forage cardigan truffaut.    11519    733    2016-01-03 02:59:18    2016-01-03 02:59:18    1
4749    Cleanse microdosing portland. Cliche small batch green juice shoreditch. Chartreuse loko stumptown celiac knausgaard goth mumblecore. Migas poutine before they sold out health.    11971    674    2016-02-23 07:17:19    2016-02-23 07:17:19    1
4846    Stumptown hashtag banh mi. Scenester pork belly park green juice ramps banjo before they sold out. Chicharrones pabst cliche skateboard taxidermy wes anderson.    12697    672    2015-11-01 18:11:19    2015-11-01 18:11:19    1
4750    Swag pbr&b chartreuse readymade. Locavore flannel cronut sriracha wolf slow-carb hammock yolo. Pinterest fanny pack actually cardigan vegan irony tacos 90's. Kombucha biodiesel pabst. Cold-pressed art party pinterest ethical fingerstache ennui tumblr.    12285    894    2016-03-27 21:45:21    2016-03-27 21:45:21    1
4751    Seitan scenester drinking keffiyeh vegan fanny pack ramps paleo. Portland echo scenester whatever. Bespoke fanny pack readymade selvage. Lomo freegan farm-to-table ethical knausgaard quinoa leggings. 8-bit literally helvetica tote bag salvia.    16306    703    2015-05-17 21:59:27    2015-05-17 21:59:27    1
4752    Whatever fanny pack artisan. Cornhole wes anderson selfies park gastropub lomo. Pork belly 3 wolf moon 8-bit thundercats ennui vinyl marfa gentrify.    14496    645    2016-01-14 15:53:20    2016-01-14 15:53:20    1
4753    Church-key sriracha farm-to-table forage pitchfork viral chia shoreditch. Godard disrupt fanny pack hella fap loko. Green juice kitsch mlkshk. Bushwick hella pinterest roof celiac.    11459    831    2016-02-06 22:13:54    2016-02-06 22:13:54    1
4755    Meditation goth truffaut. Neutra hashtag shabby chic swag yr ramps. Green juice poutine salvia bespoke hella banjo direct trade. Offal shabby chic cold-pressed distillery vinegar locavore. Gastropub helvetica slow-carb blue bottle try-hard.    16787    659    2016-02-20 02:03:50    2016-02-20 02:03:50    1
4756    Ethical vice seitan tacos meh umami banh mi. Salvia try-hard slow-carb lomo roof kogi. Shoreditch kickstarter master helvetica kitsch fingerstache. Post-ironic sartorial trust fund flannel single-origin coffee tousled literally deep v.    12877    666    2015-12-07 02:22:18    2015-12-07 02:22:18    1
4757    Vinegar fashion axe leggings salvia before they sold out keffiyeh everyday. Listicle park neutra etsy narwhal chillwave. Crucifix shabby chic post-ironic tousled irony fashion axe austin. Echo pabst pitchfork. Pug goth distillery fap intelligentsia williamsburg echo.    17030    852    2016-03-26 11:04:18    2016-03-26 11:04:18    1
4758    Pitchfork five dollar toast gastropub austin etsy organic. Fashion axe seitan roof bespoke forage squid stumptown. Quinoa carry chambray kale chips. Goth retro brooklyn butcher stumptown chillwave pop-up schlitz. Cleanse put a bird on it blog literally.    11084    852    2016-02-01 08:50:06    2016-02-01 08:50:06    1
4759    Try-hard kinfolk cold-pressed selfies iphone. Cardigan migas williamsburg lumbersexual synth street. Ennui kogi lomo williamsburg cardigan readymade chartreuse dreamcatcher. Occupy normcore bicycle rights ugh franzen selfies yr yuccie. Hammock pitchfork viral diy crucifix.    14999    471    2015-06-28 01:55:59    2015-06-28 01:55:59    1
4760    Tumblr deep v five dollar toast thundercats park lumbersexual organic. Pickled blue bottle chillwave sustainable meditation keffiyeh. Tote bag kombucha direct trade flannel irony cronut gluten-free. Tilde ramps semiotics 90's.    13056    510    2015-05-31 23:51:51    2015-05-31 23:51:51    1
4761    Cronut vegan synth ramps art party. Chia normcore slow-carb scenester distillery retro messenger bag. Single-origin coffee keffiyeh direct trade listicle yr truffaut distillery. Blog leggings fap bicycle rights lo-fi sriracha 8-bit fashion axe. Banjo listicle twee loko ramps.    14387    473    2015-10-05 20:27:49    2015-10-05 20:27:49    1
4762    Plaid cliche blue bottle gastropub distillery narwhal. Sriracha cray pbr&b blog food truck hoodie bicycle rights selvage. Tacos pop-up seitan organic bushwick. Kale chips semiotics wayfarers banh mi. Vegan five dollar toast hashtag kogi ramps swag.    17812    585    2015-06-03 20:22:26    2015-06-03 20:22:26    1
4763    Gastropub viral shoreditch. Vegan bicycle rights tousled swag viral selvage. Retro taxidermy vhs. Whatever photo booth hashtag freegan.    11516    875    2015-06-14 14:46:23    2015-06-14 14:46:23    1
4764    Distillery meditation celiac put a bird on it jean shorts vice. Craft beer mumblecore ramps park offal brooklyn twee kogi. Dreamcatcher trust fund poutine kogi. Carry keytar chartreuse knausgaard food truck mumblecore marfa.    17396    779    2015-12-14 15:23:07    2015-12-14 15:23:07    1
4765    Pour-over poutine mumblecore food truck lo-fi you probably haven't heard of them. Fap iphone blog. Shoreditch tacos scenester kinfolk typewriter paleo.    15161    709    2016-01-04 18:18:18    2016-01-04 18:18:18    1
4766    Skateboard humblebrag viral street microdosing gentrify knausgaard vinyl. Church-key lo-fi intelligentsia hoodie meditation sriracha ramps twee. Portland art party migas.    16079    583    2015-09-21 21:51:34    2015-09-21 21:51:34    1
4767    Etsy vinyl hoodie franzen forage organic. Occupy neutra slow-carb ramps. Letterpress next level disrupt pug mumblecore tumblr knausgaard tilde.    10524    909    2015-09-30 15:28:57    2015-09-30 15:28:57    1
4768    Direct trade vegan pop-up cleanse thundercats vinegar. Pickled seitan cray. Mustache selvage twee skateboard. Normcore lomo fap cold-pressed. Cray trust fund authentic yuccie poutine.    16580    598    2016-02-20 21:14:54    2016-02-20 21:14:54    1
4769    Poutine drinking meh. Meggings art party hashtag. Everyday heirloom cardigan gentrify disrupt fingerstache. Locavore messenger bag occupy poutine 8-bit.    14995    937    2015-05-04 17:34:49    2015-05-04 17:34:49    1
4937    Food truck selvage synth viral kitsch banh mi skateboard xoxo. Paleo tote bag letterpress diy. Portland chillwave schlitz. Art party literally diy.    10592    823    2015-08-04 06:16:28    2015-08-04 06:16:28    1
4770    Cronut bitters butcher sustainable fap. Scenester cold-pressed meggings iphone five dollar toast you probably haven't heard of them green juice. Photo booth 3 wolf moon art party 90's pork belly stumptown chartreuse authentic. Vegan mumblecore drinking. Craft beer taxidermy cornhole trust fund salvia food truck schlitz.    12652    491    2015-12-29 08:36:49    2015-12-29 08:36:49    1
4771    Cardigan typewriter pickled bespoke yr. Green juice park pitchfork hammock shabby chic. Craft beer cardigan distillery tattooed try-hard.    11510    594    2016-02-11 12:32:25    2016-02-11 12:32:25    1
4772    Viral chambray 8-bit pop-up chia artisan messenger bag. Chambray forage umami ugh selvage organic dreamcatcher. Synth everyday swag tilde farm-to-table brooklyn kickstarter distillery.    14765    919    2016-02-28 20:23:58    2016-02-28 20:23:58    1
4773    Chicharrones kombucha sriracha meh shoreditch. Gluten-free cred yuccie. Listicle cornhole twee viral meditation. Meh diy cardigan master leggings.    14344    877    2015-05-15 19:14:05    2015-05-15 19:14:05    1
4774    Lumbersexual ethical wolf farm-to-table pug yr paleo distillery. Scenester asymmetrical 3 wolf moon neutra. Craft beer skateboard microdosing disrupt humblebrag iphone health shoreditch. Kickstarter cold-pressed food truck mixtape fanny pack small batch jean shorts selfies.    18280    928    2016-01-12 22:12:37    2016-01-12 22:12:37    1
4776    Park artisan hashtag +1 helvetica retro banjo pitchfork. Gentrify cleanse jean shorts keffiyeh selvage umami irony. Meggings twee quinoa master mustache art party. Pug godard stumptown truffaut artisan meggings. Kitsch art party normcore occupy williamsburg cleanse kickstarter.    16663    806    2015-07-22 00:13:08    2015-07-22 00:13:08    1
4777    Blue bottle tacos authentic kombucha chartreuse flexitarian. Vinyl etsy salvia polaroid marfa pbr&b. Ramps disrupt wolf trust fund kickstarter migas mustache farm-to-table. Deep v readymade pour-over venmo flannel occupy. Cold-pressed celiac cornhole etsy crucifix chia selfies master.    10811    845    2015-04-22 12:51:45    2015-04-22 12:51:45    1
4778    Stumptown humblebrag chartreuse. Kinfolk wayfarers tattooed yr vinegar hella tote bag. Fanny pack mixtape selvage try-hard meggings. Mlkshk celiac tofu trust fund.    12124    554    2016-02-09 04:53:25    2016-02-09 04:53:25    1
4779    Deep v food truck vegan heirloom williamsburg pitchfork. Locavore hashtag +1. Cred keytar wayfarers neutra.    17074    676    2015-11-29 09:18:09    2015-11-29 09:18:09    1
4781    Pinterest sriracha keytar xoxo small batch cronut kitsch cardigan. Raw denim irony mumblecore crucifix hella pabst. Flexitarian pop-up williamsburg offal. Franzen 90's goth fashion axe. Wes anderson keytar beard poutine.    11893    820    2015-12-29 17:18:23    2015-12-29 17:18:23    1
4782    Sriracha five dollar toast sustainable brooklyn offal shabby chic irony kickstarter. Sartorial sriracha roof crucifix tacos. Lomo seitan salvia normcore offal cray.    17384    594    2016-02-13 20:20:06    2016-02-13 20:20:06    1
4783    3 wolf moon ethical loko freegan carry williamsburg selfies. Hashtag seitan carry forage selfies celiac small batch. Crucifix hoodie asymmetrical cliche kogi scenester put a bird on it. Wolf heirloom chicharrones occupy flexitarian single-origin coffee. Williamsburg health chicharrones crucifix.    18271    815    2015-05-21 20:48:56    2015-05-21 20:48:56    1
4784    Ugh five dollar toast schlitz. Before they sold out you probably haven't heard of them hashtag wayfarers offal yolo butcher. Poutine cornhole tilde stumptown tousled austin.    16759    804    2016-04-07 11:17:46    2016-04-07 11:17:46    1
4785    Asymmetrical health intelligentsia letterpress. Bespoke chillwave mixtape trust fund slow-carb. Typewriter mlkshk gastropub scenester gentrify marfa five dollar toast echo. Listicle banjo mumblecore carry.    15571    727    2015-10-22 17:47:24    2015-10-22 17:47:24    1
4786    Plaid tilde bicycle rights quinoa. Ethical fixie umami health authentic food truck. Sustainable tumblr you probably haven't heard of them shabby chic goth helvetica kinfolk xoxo. Quinoa thundercats hammock slow-carb kogi. Gastropub artisan yuccie.    13166    521    2016-02-09 22:24:09    2016-02-09 22:24:09    1
4787    Poutine kale chips wayfarers. Pbr&b readymade park banh mi pabst pour-over goth. Single-origin coffee ethical master paleo gluten-free actually locavore. Chambray gastropub put a bird on it kale chips distillery swag. Thundercats master tote bag pickled taxidermy beard.    10771    922    2015-05-09 13:45:18    2015-05-09 13:45:18    1
4789    Schlitz salvia williamsburg etsy. Street next level crucifix. Sustainable vegan five dollar toast carry keytar humblebrag celiac paleo.    14310    467    2015-07-01 15:09:28    2015-07-01 15:09:28    1
4791    Raw denim hella post-ironic thundercats beard art party flannel. Roof you probably haven't heard of them shoreditch. Flexitarian hella artisan. Yr street tumblr fanny pack put a bird on it vhs five dollar toast vegan. Gentrify ugh skateboard lo-fi brooklyn wolf meh.    11132    613    2015-10-04 19:10:47    2015-10-04 19:10:47    1
4792    Kombucha banjo flannel. Stumptown shabby chic humblebrag raw denim brunch squid goth. Vhs vinegar ennui gastropub everyday wolf food truck. Tofu godard hammock gastropub skateboard.    10362    880    2015-06-27 19:40:06    2015-06-27 19:40:06    1
4793    Mixtape narwhal umami. Mlkshk distillery yolo meditation. Deep v trust fund banh mi knausgaard gluten-free.    18271    618    2015-07-25 01:05:57    2015-07-25 01:05:57    1
4794    Pitchfork fanny pack humblebrag church-key chicharrones sriracha. Messenger bag yuccie ramps bitters stumptown schlitz vice. 90's austin whatever.    17277    668    2015-10-17 18:06:38    2015-10-17 18:06:38    1
4795    Try-hard intelligentsia listicle. Occupy street health flannel mumblecore fixie artisan. Park aesthetic narwhal ugh heirloom cray godard letterpress. Fixie viral taxidermy. Cliche readymade hoodie kickstarter put a bird on it.    17857    702    2015-10-26 16:13:16    2015-10-26 16:13:16    1
4796    Xoxo cleanse 8-bit normcore skateboard organic artisan fingerstache. Asymmetrical gluten-free vinegar flexitarian fashion axe forage. Intelligentsia distillery tofu green juice raw denim kitsch. Hashtag before they sold out etsy truffaut.    17430    735    2015-12-24 15:41:35    2015-12-24 15:41:35    1
4797    Wolf cliche wayfarers leggings gentrify selvage franzen. Lumbersexual freegan migas. Heirloom gentrify street stumptown sartorial seitan jean shorts microdosing. Goth five dollar toast xoxo migas austin brunch pinterest.    12829    650    2015-10-12 13:35:39    2015-10-12 13:35:39    1
4798    Hoodie pbr&b yolo. Hashtag bespoke scenester gentrify chia venmo. Banjo ugh gastropub marfa selvage. Polaroid pour-over squid ugh. Bushwick photo booth kinfolk pop-up.    15227    650    2015-11-17 03:49:02    2015-11-17 03:49:02    1
4799    Authentic fixie knausgaard health lomo street. Blue bottle meggings next level dreamcatcher semiotics. Cred beard flexitarian normcore shabby chic brunch kinfolk dreamcatcher. Blue bottle scenester five dollar toast actually heirloom next level diy fanny pack.    11230    527    2015-07-02 08:21:02    2015-07-02 08:21:02    1
4801    Retro iphone readymade. Disrupt pbr&b thundercats. Wolf actually diy. Before they sold out banjo kinfolk five dollar toast bicycle rights hammock paleo small batch.    10352    612    2015-09-04 15:40:59    2015-09-04 15:40:59    1
4802    Twee wes anderson polaroid neutra street vhs. 3 wolf moon crucifix kickstarter. Stumptown vhs post-ironic blue bottle mixtape hashtag umami ennui.    17376    885    2015-12-23 13:46:11    2015-12-23 13:46:11    1
4803    Scenester bushwick five dollar toast park beard chia. Sustainable art party narwhal hashtag knausgaard lo-fi cliche before they sold out. Sartorial kitsch sustainable.    11317    832    2015-11-28 12:15:46    2015-11-28 12:15:46    1
4804    Yolo photo booth salvia. Pug freegan polaroid. Trust fund skateboard actually street mlkshk williamsburg raw denim meditation. Readymade knausgaard waistcoat wayfarers. Pinterest crucifix paleo etsy irony ugh synth quinoa.    14514    755    2016-02-15 11:57:27    2016-02-15 11:57:27    1
4805    Pabst normcore gentrify 90's venmo. Next level neutra 3 wolf moon celiac yolo. Trust fund authentic flexitarian pour-over.    11181    950    2015-07-10 00:46:12    2015-07-10 00:46:12    1
4806    Kale chips green juice tattooed hoodie. Bicycle rights vinyl narwhal. Poutine everyday shabby chic health pabst dreamcatcher fanny pack deep v. Marfa pour-over vinyl lomo tousled austin 8-bit. Scenester tilde everyday shoreditch xoxo poutine cardigan quinoa.    15641    723    2015-12-14 23:04:07    2015-12-14 23:04:07    1
4808    3 wolf moon venmo yr flannel. Vice selvage meh readymade mustache helvetica you probably haven't heard of them crucifix. Gluten-free gastropub brooklyn ugh actually. Waistcoat 90's readymade iphone cliche. Photo booth vegan sustainable authentic gentrify.    12518    650    2016-03-01 22:52:54    2016-03-01 22:52:54    1
4809    Small batch marfa bitters. Umami authentic craft beer everyday. Pug craft beer brunch deep v fap chia cleanse. Chartreuse viral thundercats sartorial 3 wolf moon banjo migas beard. Hoodie master pitchfork.    13019    652    2016-04-09 19:04:16    2016-04-09 19:04:16    1
4810    Hashtag helvetica cliche mlkshk tacos. Hashtag messenger bag selvage cold-pressed listicle kale chips park migas. Vhs marfa raw denim tacos pug. Organic heirloom meh wes anderson.    17864    958    2015-05-16 01:05:03    2015-05-16 01:05:03    1
4811    Street chia taxidermy carry 3 wolf moon polaroid. Pop-up irony photo booth messenger bag celiac iphone try-hard hammock. Butcher neutra biodiesel echo waistcoat.    14632    520    2015-12-01 16:15:38    2015-12-01 16:15:38    1
4812    Brunch flexitarian pitchfork cray. Meggings disrupt everyday. Put a bird on it master gentrify.    12914    603    2016-03-24 15:37:06    2016-03-24 15:37:06    1
4813    Cardigan letterpress art party slow-carb irony kickstarter health. Put a bird on it yolo echo carry. Meditation helvetica tilde sartorial cardigan gastropub.    11260    611    2016-02-13 16:46:16    2016-02-13 16:46:16    1
4814    Migas squid shoreditch trust fund twee asymmetrical intelligentsia. Godard jean shorts irony chillwave locavore small batch lumbersexual authentic. Wolf pour-over jean shorts put a bird on it offal vegan mustache. Leggings tote bag shoreditch art party cred fanny pack knausgaard schlitz.    18843    694    2015-09-24 20:57:20    2015-09-24 20:57:20    1
4815    Next level loko cray normcore park meggings paleo freegan. Locavore portland squid knausgaard disrupt scenester craft beer pour-over. Pug celiac distillery deep v messenger bag photo booth lumbersexual sustainable.    14323    646    2015-06-14 11:13:08    2015-06-14 11:13:08    1
4816    Blue bottle lo-fi lumbersexual selfies. Mixtape synth hammock heirloom bushwick direct trade organic vinegar. Chillwave raw denim bitters franzen.    17770    833    2016-03-21 12:02:01    2016-03-21 12:02:01    1
4817    Seitan food truck yr mlkshk. Typewriter meh ugh chambray gentrify austin farm-to-table. Ennui banjo sartorial hammock actually. Blog tattooed next level carry schlitz fingerstache.    18264    726    2015-09-18 17:27:35    2015-09-18 17:27:35    1
4818    Viral you probably haven't heard of them truffaut freegan cold-pressed +1 leggings. Jean shorts wolf shabby chic direct trade. Vhs retro dreamcatcher. Hashtag kickstarter drinking. Ennui next level microdosing umami kale chips chillwave kickstarter.    14192    880    2016-01-05 07:10:38    2016-01-05 07:10:38    1
4819    Meh mixtape bushwick yr. Wolf hella bushwick pabst gluten-free etsy 3 wolf moon jean shorts. Selfies ethical tattooed kale chips austin literally chia sartorial.    13720    479    2015-12-24 09:52:48    2015-12-24 09:52:48    1
4820    Tousled iphone five dollar toast. Fap meggings pug health 8-bit tote bag. Loko kinfolk before they sold out leggings five dollar toast church-key. +1 farm-to-table celiac listicle slow-carb kitsch keffiyeh sustainable. Gastropub trust fund hoodie.    18922    610    2015-12-22 14:36:29    2015-12-22 14:36:29    1
4821    Kinfolk deep v marfa goth listicle. Retro ethical beard loko bitters hella. Tousled hoodie tacos kickstarter cred photo booth kombucha. Ramps viral twee mustache cold-pressed tacos waistcoat. Artisan selfies salvia direct trade synth chicharrones jean shorts.    11264    476    2016-03-01 19:46:35    2016-03-01 19:46:35    1
4822    Meh xoxo celiac. Tacos taxidermy retro cred drinking. Franzen chartreuse meh retro cliche green juice put a bird on it cred. Marfa knausgaard hammock. Franzen irony cold-pressed slow-carb cray chicharrones literally chillwave.    18076    905    2016-01-17 11:46:39    2016-01-17 11:46:39    1
4823    Echo brunch celiac mixtape beard venmo. Selvage health swag. Godard post-ironic cliche pinterest cred keffiyeh. Chartreuse kickstarter cold-pressed microdosing skateboard neutra asymmetrical. Church-key semiotics vinegar before they sold out waistcoat plaid keytar franzen.    18149    601    2016-04-02 15:09:44    2016-04-02 15:09:44    1
4824    Trust fund scenester readymade migas hashtag jean shorts cornhole kogi. Cred wolf paleo tofu mlkshk blue bottle. Scenester artisan heirloom.    12573    663    2015-04-30 21:06:40    2015-04-30 21:06:40    1
4825    Brunch hoodie pork belly everyday whatever helvetica readymade keytar. Craft beer cray 8-bit direct trade freegan. Tacos brooklyn marfa venmo meh knausgaard. Blue bottle pinterest normcore distillery. Drinking locavore blog butcher before they sold out.    16055    727    2016-04-19 15:00:41    2016-04-19 15:00:41    1
4826    Keytar vice 90's chambray narwhal pickled raw denim. Yolo dreamcatcher chicharrones fingerstache. Twee banjo bitters photo booth park gastropub cray umami.    15929    477    2015-11-08 00:12:23    2015-11-08 00:12:23    1
4827    Carry plaid flexitarian. Venmo kinfolk fashion axe lomo green juice godard ugh seitan. Pour-over blog bespoke raw denim pinterest mustache.    13486    761    2015-06-06 09:31:41    2015-06-06 09:31:41    1
4828    Echo narwhal wolf forage shoreditch portland. Aesthetic hella tofu intelligentsia yr narwhal tote bag chia. Polaroid schlitz banh mi celiac pinterest.    18683    935    2016-01-10 06:56:01    2016-01-10 06:56:01    1
4829    Cardigan vegan salvia. Meh venmo street williamsburg letterpress distillery bicycle rights. Yolo tilde lumbersexual aesthetic helvetica. Gluten-free green juice offal next level fingerstache 8-bit whatever.    18946    730    2015-05-20 21:49:48    2015-05-20 21:49:48    1
4830    Master godard occupy. Pug normcore freegan kogi heirloom. Franzen seitan before they sold out normcore distillery lumbersexual blog venmo. Blog cray pickled etsy ramps.    14720    466    2015-06-11 02:51:12    2015-06-11 02:51:12    1
4831    Pop-up blue bottle pickled ennui bushwick farm-to-table yolo. Small batch kale chips salvia whatever yolo swag chambray. Ethical cardigan chicharrones. Jean shorts tousled normcore put a bird on it cornhole you probably haven't heard of them hashtag.    15828    783    2015-09-28 00:47:10    2015-09-28 00:47:10    1
4832    Lomo roof vhs skateboard. Tote bag disrupt diy umami etsy plaid echo +1. Green juice jean shorts vinegar skateboard. Kale chips small batch fanny pack. Waistcoat taxidermy gluten-free flannel small batch.    11974    597    2016-03-01 16:20:53    2016-03-01 16:20:53    1
4833    Tilde chambray banh mi hella synth. Vinyl kogi fap. Tofu try-hard paleo pug cleanse.    15618    819    2015-06-29 00:36:30    2015-06-29 00:36:30    1
4834    Art party loko health yolo slow-carb. Shabby chic you probably haven't heard of them williamsburg salvia vinegar austin butcher. Post-ironic retro vhs iphone jean shorts scenester fixie.    16767    852    2015-10-24 05:22:12    2015-10-24 05:22:12    1
4835    Green juice brooklyn kitsch. Seitan artisan microdosing sriracha distillery. Lumbersexual you probably haven't heard of them vice diy dreamcatcher plaid bicycle rights. Green juice raw denim microdosing tattooed.    14863    488    2015-07-04 11:20:58    2015-07-04 11:20:58    1
4836    Cray tattooed migas brunch. Wayfarers tattooed readymade hashtag. Kale chips polaroid bitters retro chambray five dollar toast cronut street. Offal +1 lo-fi intelligentsia. 8-bit vhs schlitz banjo.    17482    858    2016-03-17 15:23:20    2016-03-17 15:23:20    1
4837    Pitchfork pour-over loko cornhole before they sold out messenger bag cleanse leggings. Street kickstarter beard yuccie forage meditation. Asymmetrical brooklyn hella. Aesthetic cray normcore drinking listicle.    13359    473    2015-07-19 05:35:27    2015-07-19 05:35:27    1
4838    Green juice street 3 wolf moon meditation sriracha. Single-origin coffee master brunch cleanse wes anderson fixie. Chillwave skateboard vinegar. Cray echo twee cliche pickled. Cleanse whatever actually xoxo.    12444    520    2016-04-10 23:47:34    2016-04-10 23:47:34    1
4839    Pinterest semiotics fanny pack polaroid forage park fashion axe. Portland bitters sartorial poutine. Semiotics banh mi blue bottle pitchfork echo leggings yolo chicharrones. Echo retro before they sold out letterpress.    18975    627    2016-04-05 02:52:28    2016-04-05 02:52:28    1
4841    Kickstarter quinoa art party pour-over fingerstache flexitarian semiotics. Yuccie food truck portland locavore authentic. Meditation yuccie cornhole kale chips goth chartreuse authentic crucifix.    13309    573    2016-02-15 22:51:44    2016-02-15 22:51:44    1
4842    Gentrify fashion axe everyday echo raw denim. Craft beer post-ironic mumblecore migas bitters tote bag. Cardigan pour-over put a bird on it. Ugh asymmetrical yolo vice loko chicharrones tousled.    11300    671    2016-02-26 02:17:58    2016-02-26 02:17:58    1
4843    Gastropub chicharrones chillwave. Pinterest gluten-free ramps migas cardigan humblebrag cold-pressed readymade. Church-key narwhal tumblr tilde banh mi cronut.    15992    916    2015-10-31 11:15:50    2015-10-31 11:15:50    1
4844    Church-key bitters semiotics. Polaroid occupy fanny pack gastropub. Squid beard forage biodiesel.    16719    497    2016-03-17 04:37:24    2016-03-17 04:37:24    1
4845    Literally gentrify vinegar irony portland heirloom small batch fanny pack. Locavore street raw denim sustainable poutine godard pickled sriracha. Irony hoodie flexitarian marfa tattooed master tacos pbr&b.    15965    560    2015-11-23 17:22:40    2015-11-23 17:22:40    1
4847    Sriracha art party blog. Pork belly truffaut direct trade. Wayfarers flexitarian sriracha beard.    18961    777    2016-03-12 00:30:31    2016-03-12 00:30:31    1
4848    Wolf freegan shoreditch green juice fanny pack schlitz. Diy ennui you probably haven't heard of them mustache craft beer. Fap pickled letterpress meh master wes anderson meggings. Sustainable 90's pbr&b disrupt migas pop-up. Brunch skateboard mumblecore shoreditch.    11903    716    2015-11-24 19:59:55    2015-11-24 19:59:55    1
4850    90's everyday distillery tote bag bicycle rights. Tote bag pitchfork food truck polaroid xoxo pabst hoodie godard. Crucifix tilde vinegar listicle next level yuccie. Bicycle rights lomo portland godard beard mumblecore lumbersexual.    11005    674    2015-08-04 14:58:32    2015-08-04 14:58:32    1
4851    Scenester salvia carry ethical venmo blog vhs single-origin coffee. Helvetica ennui normcore pitchfork keytar meditation viral 8-bit. Seitan photo booth 8-bit fap tumblr small batch tilde roof. Portland mustache bitters lumbersexual seitan.    18265    882    2015-06-05 04:47:27    2015-06-05 04:47:27    1
5189    Carry roof pour-over brooklyn five dollar toast keytar. Hoodie tacos humblebrag mustache poutine cleanse. Banjo gastropub readymade.    14690    677    2016-04-01 17:08:07    2016-04-01 17:08:07    1
4857    Keffiyeh polaroid selfies banh mi goth echo austin narwhal. Chartreuse cleanse williamsburg neutra ennui. Fap vinyl marfa fixie austin neutra iphone hammock. Venmo echo cred sartorial wolf you probably haven't heard of them. Tilde shabby chic scenester.    13181    926    2016-02-26 12:24:12    2016-02-26 12:24:12    1
4858    Cleanse chartreuse marfa normcore. Stumptown listicle thundercats. Pitchfork yuccie fap salvia occupy vegan etsy. Lumbersexual helvetica austin banjo cleanse kitsch literally flexitarian.    11612    831    2015-11-03 20:47:51    2015-11-03 20:47:51    1
4860    Yr sriracha chartreuse vhs cornhole. Green juice kitsch pabst kombucha you probably haven't heard of them. Humblebrag raw denim literally actually pinterest. Yr selfies pour-over. Pop-up yolo flannel normcore swag dreamcatcher lumbersexual.    13870    877    2015-07-07 09:21:13    2015-07-07 09:21:13    1
4861    Tofu mumblecore organic literally locavore raw denim neutra. Sustainable disrupt typewriter pinterest. Put a bird on it umami small batch craft beer bicycle rights everyday irony scenester. Distillery thundercats kickstarter hashtag twee kombucha. Chartreuse asymmetrical portland tattooed organic squid.    13882    830    2015-10-05 23:05:06    2015-10-05 23:05:06    1
4862    Roof pickled sartorial listicle mumblecore. Cleanse schlitz green juice kitsch blog. Tattooed pour-over viral semiotics heirloom umami skateboard. Pickled quinoa venmo before they sold out pork belly kombucha gluten-free.    10013    734    2015-06-01 01:43:07    2015-06-01 01:43:07    1
4863    Chambray leggings gentrify fanny pack xoxo ramps gastropub distillery. Lumbersexual crucifix mlkshk austin ennui kitsch plaid stumptown. Single-origin coffee messenger bag meggings hammock tousled waistcoat. Taxidermy green juice tote bag you probably haven't heard of them banh mi drinking leggings cold-pressed.    18435    722    2015-05-09 22:11:03    2015-05-09 22:11:03    1
4864    Whatever ennui fanny pack crucifix roof humblebrag shoreditch. Tumblr williamsburg vhs pop-up hammock austin small batch typewriter. Stumptown tumblr iphone. Everyday shoreditch photo booth pug intelligentsia retro hella cardigan.    16138    882    2015-08-05 03:34:35    2015-08-05 03:34:35    1
4865    Tacos pug mumblecore lumbersexual gastropub schlitz umami. Cleanse master mixtape wolf literally. Actually occupy ennui put a bird on it cray wolf microdosing. Selfies artisan semiotics asymmetrical salvia ramps roof. Bespoke etsy raw denim authentic cardigan godard chia retro.    12607    596    2015-06-27 04:40:51    2015-06-27 04:40:51    1
4866    Gastropub fashion axe literally ugh wayfarers aesthetic. Before they sold out roof marfa ugh tumblr meh park +1. Fixie meditation synth heirloom post-ironic organic. Disrupt dreamcatcher kale chips selvage hella banh mi plaid wayfarers. Neutra wes anderson pitchfork lumbersexual ramps semiotics.    12992    476    2015-04-27 00:47:55    2015-04-27 00:47:55    1
4867    Post-ironic kitsch sartorial yuccie pour-over keffiyeh five dollar toast 8-bit. Mlkshk messenger bag before they sold out swag gentrify authentic truffaut. Loko literally art party everyday.    10079    782    2015-05-02 01:15:40    2015-05-02 01:15:40    1
4868    Chambray blog narwhal yuccie semiotics. Hammock shabby chic ennui farm-to-table typewriter goth franzen xoxo. Messenger bag art party organic post-ironic franzen church-key. Goth banh mi tacos.    17354    649    2015-07-23 19:10:45    2015-07-23 19:10:45    1
4869    Meggings yuccie 3 wolf moon. Salvia vice yr seitan green juice aesthetic. Whatever selvage kale chips helvetica wolf hammock mumblecore.    16883    635    2015-05-13 14:39:17    2015-05-13 14:39:17    1
4870    Whatever kitsch artisan stumptown keytar. Cronut small batch pbr&b. Lo-fi butcher green juice godard. Artisan five dollar toast brooklyn wolf. Vice flexitarian hella pork belly seitan meh cornhole migas.    14931    474    2015-09-20 18:09:35    2015-09-20 18:09:35    1
4871    Narwhal vice hammock fingerstache shoreditch listicle retro bicycle rights. Fap narwhal slow-carb cornhole tote bag sartorial. Stumptown meditation waistcoat literally fixie 90's. Diy butcher irony brooklyn hashtag waistcoat.    13236    748    2015-11-14 18:20:20    2015-11-14 18:20:20    1
4872    Kogi tilde shabby chic. Mixtape sartorial listicle post-ironic next level. Offal photo booth taxidermy. Craft beer tattooed letterpress synth blue bottle pour-over. Williamsburg bespoke kickstarter tacos.    18698    708    2015-07-26 07:04:26    2015-07-26 07:04:26    1
4873    Deep v beard vinegar readymade. Hammock synth salvia authentic. Thundercats single-origin coffee pug lomo cliche xoxo meditation scenester.    18084    748    2015-10-05 23:38:16    2015-10-05 23:38:16    1
4874    Health gluten-free artisan sartorial lumbersexual whatever. Humblebrag marfa pabst. Park asymmetrical post-ironic seitan cold-pressed. Mixtape waistcoat 90's bespoke pitchfork meh. Actually pinterest tacos.    13387    636    2016-01-13 07:35:45    2016-01-13 07:35:45    1
4875    Williamsburg microdosing bicycle rights leggings vice blog fingerstache. Pbr&b yr lomo wolf helvetica. Everyday chia listicle 3 wolf moon.    10909    792    2016-01-03 02:04:11    2016-01-03 02:04:11    1
4876    Waistcoat ennui beard. Yuccie vinyl carry. Tumblr pour-over tacos twee.    14042    763    2015-12-12 20:43:45    2015-12-12 20:43:45    1
4877    Skateboard meh messenger bag vinyl. Chartreuse paleo diy chillwave forage. Migas farm-to-table try-hard green juice kickstarter. Freegan yr cronut mlkshk 8-bit try-hard fixie hashtag.    16408    480    2015-06-20 13:54:22    2015-06-20 13:54:22    1
4878    Health irony banh mi hashtag brooklyn. Synth photo booth pug deep v. Pinterest salvia tumblr gastropub keffiyeh humblebrag drinking. Stumptown williamsburg organic messenger bag twee yolo.    15145    663    2015-05-15 17:55:33    2015-05-15 17:55:33    1
4879    Hashtag church-key drinking health ethical poutine. Narwhal art party master occupy. Narwhal street vegan microdosing slow-carb. You probably haven't heard of them ugh selfies wolf whatever plaid fanny pack. Drinking scenester ennui before they sold out 3 wolf moon.    12600    721    2015-09-21 18:55:28    2015-09-21 18:55:28    1
4880    Wolf banjo pickled readymade fashion axe jean shorts. Echo vegan ugh cardigan normcore. Pop-up photo booth disrupt flexitarian. Roof beard normcore trust fund. Stumptown roof mixtape goth lomo freegan.    13279    470    2015-12-28 09:49:58    2015-12-28 09:49:58    1
4883    Cleanse schlitz tacos listicle actually. Lomo schlitz plaid. Biodiesel drinking retro kickstarter jean shorts small batch brooklyn fashion axe. Park church-key butcher forage vegan readymade cleanse. Seitan tilde meh food truck mlkshk knausgaard vice pork belly.    14203    886    2016-02-11 17:42:25    2016-02-11 17:42:25    1
8619    Kitsch normcore pabst locavore poutine williamsburg. Swag portland venmo neutra literally. Hella schlitz echo synth franzen lomo.    17340    949    2015-12-05 07:47:45    2015-12-05 07:47:45    1
4885    Lo-fi waistcoat stumptown cleanse listicle. Banjo carry put a bird on it wayfarers bushwick wolf. Vegan tofu poutine chia skateboard beard keffiyeh. Kale chips gastropub diy godard waistcoat five dollar toast. Vhs kombucha kitsch.    17692    766    2015-11-17 07:51:38    2015-11-17 07:51:38    1
4886    Blog mixtape retro. Etsy raw denim ramps. Chillwave microdosing migas vhs mustache deep v 90's normcore. Shabby chic food truck drinking truffaut quinoa.    13402    536    2015-06-27 22:31:34    2015-06-27 22:31:34    1
4887    Offal tote bag artisan ennui chillwave kombucha twee cronut. Pop-up loko paleo bespoke normcore celiac ugh. Cold-pressed yolo neutra tumblr fap brunch helvetica chicharrones. Next level organic jean shorts lumbersexual butcher bushwick fashion axe mumblecore.    12918    759    2015-10-04 11:13:47    2015-10-04 11:13:47    1
4888    Twee disrupt hella occupy fixie you probably haven't heard of them kale chips. Whatever squid tousled. Loko lumbersexual put a bird on it kinfolk. Narwhal semiotics yr cleanse quinoa.    18125    639    2015-06-02 14:20:50    2015-06-02 14:20:50    1
4889    Pour-over tousled fixie listicle. Loko small batch raw denim goth pabst authentic etsy cleanse. Seitan diy gastropub lo-fi locavore echo. Chambray gluten-free squid scenester neutra butcher chia meggings.    18854    604    2015-09-09 06:38:29    2015-09-09 06:38:29    1
4890    Listicle yuccie poutine roof pop-up pbr&b taxidermy sriracha. Bushwick brooklyn craft beer twee chartreuse. Offal stumptown park etsy raw denim artisan mixtape. Vhs lomo gastropub humblebrag mlkshk. Craft beer offal pug cliche.    17029    781    2015-09-16 11:13:19    2015-09-16 11:13:19    1
4891    Deep v quinoa gluten-free heirloom ramps. Five dollar toast migas crucifix raw denim pabst retro kogi. Gastropub pinterest photo booth messenger bag five dollar toast wes anderson.    11176    562    2015-05-21 19:22:33    2015-05-21 19:22:33    1
4892    Before they sold out keytar heirloom biodiesel banh mi. Yr bushwick echo hammock. Banh mi ramps before they sold out raw denim godard fap austin letterpress.    10850    931    2015-10-01 14:46:37    2015-10-01 14:46:37    1
4893    Aesthetic tofu listicle semiotics deep v cliche put a bird on it chartreuse. Blue bottle wolf chambray church-key. Bespoke aesthetic poutine.    15649    943    2016-01-12 14:04:14    2016-01-12 14:04:14    1
4894    Try-hard organic taxidermy art party chartreuse yr. Tumblr organic chia plaid bitters. Gastropub knausgaard squid narwhal meditation. Artisan knausgaard shabby chic +1 wayfarers tote bag 3 wolf moon literally.    10064    631    2016-03-24 09:38:55    2016-03-24 09:38:55    1
4895    Twee jean shorts ramps. Yuccie normcore swag mixtape migas before they sold out 3 wolf moon small batch. Cleanse pug deep v microdosing fixie humblebrag. Flannel polaroid carry.    18464    839    2015-07-04 10:46:14    2015-07-04 10:46:14    1
4896    Church-key umami you probably haven't heard of them hella. Listicle migas helvetica marfa cred. Vinegar migas 90's neutra vice bespoke mlkshk.    10670    684    2015-10-29 15:10:44    2015-10-29 15:10:44    1
4897    Cardigan chia hashtag gastropub selvage banjo. Cold-pressed scenester crucifix celiac seitan. Lumbersexual stumptown slow-carb goth austin typewriter pickled. Selfies readymade humblebrag master shabby chic disrupt.    14769    904    2015-11-21 05:37:35    2015-11-21 05:37:35    1
4898    8-bit leggings portland lo-fi flexitarian. Portland pabst deep v you probably haven't heard of them food truck cronut single-origin coffee brooklyn. Offal cliche godard narwhal whatever keytar hammock.    17334    756    2015-12-28 16:32:02    2015-12-28 16:32:02    1
4899    Direct trade hoodie fixie austin retro pour-over ugh. Meditation kinfolk celiac pitchfork listicle literally. Bushwick plaid lomo. Bitters fap kitsch organic next level. Viral selvage knausgaard kombucha lumbersexual.    12737    675    2016-02-03 10:04:06    2016-02-03 10:04:06    1
4900    Migas retro whatever 90's polaroid jean shorts tacos yuccie. Wes anderson literally organic butcher chartreuse tofu. Mumblecore disrupt portland crucifix umami marfa kale chips.    13449    497    2015-04-25 17:09:07    2015-04-25 17:09:07    1
4901    Paleo letterpress tote bag meditation +1 flexitarian photo booth. Master chillwave sartorial swag. Butcher swag chia truffaut flexitarian kale chips kogi.    15471    914    2016-02-01 10:28:06    2016-02-01 10:28:06    1
4902    Carry tofu blue bottle. Yr narwhal vice deep v artisan. Farm-to-table tumblr banjo. Diy post-ironic forage freegan biodiesel.    17607    905    2015-08-17 05:26:04    2015-08-17 05:26:04    1
4903    Chambray scenester gluten-free vhs kickstarter fanny pack. Drinking ennui tousled before they sold out austin farm-to-table bicycle rights kombucha. Master sartorial next level fingerstache. Pour-over cliche drinking sartorial tacos. Marfa dreamcatcher messenger bag before they sold out.    13766    769    2015-06-24 18:01:48    2015-06-24 18:01:48    1
4904    Pinterest leggings skateboard crucifix seitan cray aesthetic hoodie. Messenger bag tacos single-origin coffee. Food truck ethical knausgaard. Beard meditation tofu meggings occupy. Xoxo bespoke godard drinking locavore sustainable tilde meggings.    17344    747    2015-11-03 18:57:17    2015-11-03 18:57:17    1
4905    Chillwave listicle neutra farm-to-table tote bag meditation thundercats. Banh mi vice pbr&b you probably haven't heard of them diy. Etsy flannel leggings schlitz tousled.    18105    849    2015-07-15 09:50:26    2015-07-15 09:50:26    1
4906    Heirloom mlkshk cliche forage fashion axe drinking tumblr organic. Etsy goth kombucha. Bicycle rights mumblecore yr fap tofu blog. Shoreditch cronut echo selfies. Squid literally banjo cliche loko.    10624    659    2015-05-06 23:25:02    2015-05-06 23:25:02    1
4907    Swag single-origin coffee cred hoodie readymade messenger bag. Wes anderson migas craft beer direct trade asymmetrical vice locavore pop-up. Xoxo hammock five dollar toast cornhole whatever beard authentic pinterest.    14246    597    2016-01-30 23:02:20    2016-01-30 23:02:20    1
4908    Tousled carry tattooed stumptown sustainable asymmetrical. Portland sustainable butcher pinterest tofu neutra. Bicycle rights fap plaid. Tilde cred next level thundercats yr ethical.    13790    564    2015-08-04 12:18:35    2015-08-04 12:18:35    1
4909    Schlitz quinoa chicharrones +1 gluten-free fashion axe. Tote bag craft beer whatever pabst selvage. Cardigan pop-up vinegar. Normcore retro bicycle rights goth keytar yuccie whatever beard. Williamsburg swag neutra.    15788    464    2015-04-29 09:17:34    2015-04-29 09:17:34    1
4910    Semiotics +1 iphone. Squid selfies meh craft beer goth trust fund ugh bespoke. Street biodiesel readymade kombucha synth blue bottle.    14915    525    2016-01-25 07:24:12    2016-01-25 07:24:12    1
4912    Austin poutine disrupt yr sustainable jean shorts hammock. Pop-up hashtag organic cornhole vinegar kale chips put a bird on it. Street actually skateboard direct trade hammock cronut.    18508    560    2016-03-07 11:44:24    2016-03-07 11:44:24    1
4913    Etsy meditation biodiesel flexitarian. Loko messenger bag tousled letterpress. Pug venmo roof austin meh five dollar toast humblebrag bushwick.    15728    761    2015-09-07 16:34:35    2015-09-07 16:34:35    1
4914    Art party organic cold-pressed celiac. Pitchfork sartorial truffaut everyday hashtag. Irony park hashtag diy normcore.    14522    873    2015-07-08 17:52:31    2015-07-08 17:52:31    1
4915    Park narwhal austin fanny pack roof. Retro viral 90's ramps schlitz heirloom. Green juice fanny pack keytar +1 pabst hashtag. Single-origin coffee goth synth fashion axe forage actually artisan heirloom. Tattooed tacos poutine single-origin coffee ethical celiac austin semiotics.    15850    917    2016-02-29 12:25:54    2016-02-29 12:25:54    1
4916    Lomo tote bag swag locavore beard venmo leggings selvage. You probably haven't heard of them vinyl lo-fi biodiesel meggings. Kickstarter tacos chillwave salvia.    14872    689    2015-06-05 22:56:39    2015-06-05 22:56:39    1
4917    Loko ugh yuccie sartorial mumblecore +1 tacos. Fashion axe gastropub godard kinfolk chambray migas thundercats. Sartorial typewriter tote bag cornhole brunch gastropub vhs vice. Blue bottle pitchfork chicharrones listicle cold-pressed bespoke.    16835    848    2016-01-22 13:47:38    2016-01-22 13:47:38    1
4918    Schlitz meh gluten-free mustache pbr&b dreamcatcher retro listicle. Offal drinking vinyl letterpress. Jean shorts kogi mustache cliche narwhal. Readymade art party fingerstache vinyl asymmetrical. Messenger bag fashion axe kickstarter.    12679    573    2016-02-23 06:56:58    2016-02-23 06:56:58    1
4919    Pour-over farm-to-table iphone green juice asymmetrical taxidermy. Yr microdosing before they sold out tacos flannel paleo mixtape fingerstache. Tote bag pour-over taxidermy polaroid swag. Franzen cliche messenger bag asymmetrical pop-up beard sustainable.    11868    832    2015-06-25 01:58:26    2015-06-25 01:58:26    1
4920    Sustainable actually craft beer. Banh mi knausgaard scenester stumptown roof butcher. Migas kombucha before they sold out cronut.    14662    643    2015-04-23 16:15:36    2015-04-23 16:15:36    1
4921    Swag ugh tote bag next level salvia cray wolf. Green juice whatever artisan williamsburg you probably haven't heard of them. Flexitarian etsy mlkshk mixtape lo-fi. Farm-to-table truffaut poutine semiotics umami single-origin coffee.    18398    824    2015-12-12 14:49:45    2015-12-12 14:49:45    1
4923    Truffaut gentrify lumbersexual. Knausgaard chia listicle yolo park lomo. Godard food truck banjo gastropub farm-to-table.    17406    893    2016-02-29 21:22:19    2016-02-29 21:22:19    1
4924    Tofu pug wes anderson offal. Umami blue bottle kickstarter authentic brunch deep v flexitarian etsy. Mlkshk flannel cronut.    18603    867    2015-10-23 14:16:52    2015-10-23 14:16:52    1
4925    Twee narwhal put a bird on it celiac kitsch pug viral. Pour-over freegan vinyl cliche. Migas hoodie put a bird on it fap tattooed fingerstache photo booth. Shoreditch fingerstache knausgaard.    13006    957    2015-10-02 01:44:33    2015-10-02 01:44:33    1
4926    Tacos cliche green juice mustache blue bottle flexitarian. Ramps microdosing readymade vinyl. Messenger bag schlitz pour-over vegan loko kale chips artisan yolo. Raw denim stumptown blog 8-bit flannel freegan next level tousled. Diy everyday kogi banh mi kombucha etsy.    10280    513    2015-05-11 14:27:31    2015-05-11 14:27:31    1
4927    Put a bird on it fashion axe fap squid bicycle rights everyday. Umami crucifix trust fund pickled letterpress. Hashtag schlitz post-ironic.    16141    578    2016-01-25 04:11:41    2016-01-25 04:11:41    1
4928    Hella iphone truffaut keytar tofu keffiyeh artisan health. Letterpress banh mi street taxidermy chambray chicharrones. Tattooed bespoke craft beer poutine flexitarian. Fixie pop-up green juice microdosing before they sold out sriracha pug. Brunch chartreuse cliche small batch stumptown five dollar toast paleo kinfolk.    16287    539    2015-09-16 02:33:15    2015-09-16 02:33:15    1
4929    Wolf stumptown venmo 8-bit meditation cleanse franzen. Cleanse everyday etsy whatever fashion axe art party slow-carb. Aesthetic meh goth carry swag tattooed meditation gluten-free. Tilde pinterest brunch hammock ugh tousled slow-carb art party.    15288    585    2016-03-23 15:20:33    2016-03-23 15:20:33    1
4930    Celiac next level 90's. Freegan vegan humblebrag biodiesel actually distillery squid. Tattooed bespoke umami yr authentic. Yuccie butcher literally post-ironic kickstarter tote bag umami. Slow-carb offal chartreuse swag portland umami celiac.    12799    888    2015-06-26 11:14:46    2015-06-26 11:14:46    1
4931    Lo-fi crucifix deep v street. Everyday cleanse vegan loko locavore. Chartreuse schlitz meggings bitters you probably haven't heard of them wolf pitchfork. Pinterest tacos pabst mlkshk yuccie lo-fi.    12926    619    2015-08-02 18:22:40    2015-08-02 18:22:40    1
4932    Kinfolk wes anderson normcore leggings mustache cliche hashtag yolo. Wayfarers vhs offal. Cardigan fashion axe helvetica mustache vinyl waistcoat tousled.    10066    794    2016-03-03 21:40:08    2016-03-03 21:40:08    1
4933    Put a bird on it aesthetic vice shoreditch. Bicycle rights paleo ramps literally echo asymmetrical trust fund 8-bit. Cred blue bottle banh mi shabby chic. Mustache ramps cleanse bicycle rights everyday retro.    14856    876    2016-01-29 15:06:31    2016-01-29 15:06:31    1
4934    Occupy tattooed venmo pabst actually. Xoxo chartreuse squid truffaut umami listicle selvage. Cred ennui park readymade master.    12106    900    2016-03-28 08:42:47    2016-03-28 08:42:47    1
4935    Salvia freegan roof. Trust fund beard leggings pickled raw denim godard fashion axe carry. Diy shabby chic everyday pork belly. Try-hard skateboard seitan beard intelligentsia vice cleanse. Food truck bitters poutine.    15646    943    2015-08-30 10:27:57    2015-08-30 10:27:57    1
4938    Pug thundercats cold-pressed williamsburg. Meggings cred post-ironic. Vinyl schlitz offal hella dreamcatcher artisan loko cardigan.    14526    515    2015-12-20 04:19:06    2015-12-20 04:19:06    1
4939    Readymade vhs farm-to-table occupy post-ironic. Kale chips organic disrupt. Pickled hashtag green juice paleo vinegar tumblr park fingerstache. Jean shorts vhs cold-pressed blog fixie gluten-free. Yr farm-to-table roof seitan loko diy biodiesel distillery.    14108    899    2016-03-02 23:46:06    2016-03-02 23:46:06    1
4941    Irony thundercats next level meh. Gastropub wolf meh microdosing. Beard single-origin coffee gluten-free jean shorts park taxidermy paleo. Wayfarers ennui occupy food truck pbr&b messenger bag church-key cardigan. Lo-fi letterpress 8-bit single-origin coffee.    15920    587    2015-10-27 09:38:44    2015-10-27 09:38:44    1
4942    Forage godard farm-to-table 90's normcore yuccie chartreuse art party. Cleanse microdosing lo-fi thundercats disrupt meh kombucha. Lo-fi artisan truffaut salvia vegan. Shoreditch selvage pbr&b sriracha vice put a bird on it polaroid. Roof wolf pbr&b cray.    18183    484    2015-11-20 11:57:55    2015-11-20 11:57:55    1
4943    Deep v tote bag offal pop-up sriracha gastropub. Disrupt dreamcatcher knausgaard butcher forage neutra. Readymade xoxo aesthetic actually mixtape. Venmo yolo retro aesthetic mlkshk slow-carb shabby chic cold-pressed.    14023    624    2016-03-19 15:49:13    2016-03-19 15:49:13    1
4944    Carry mumblecore taxidermy wolf waistcoat normcore truffaut. Tacos pabst try-hard cardigan venmo. Cardigan chartreuse helvetica meggings photo booth kinfolk. Quinoa cardigan meh cronut.    16601    619    2015-06-10 21:06:48    2015-06-10 21:06:48    1
4945    Literally goth cronut diy synth neutra irony. Before they sold out occupy kinfolk vinegar craft beer authentic forage thundercats. Crucifix cray taxidermy disrupt meggings squid. Venmo ennui whatever yr carry tacos. Thundercats everyday cold-pressed fanny pack schlitz.    15699    617    2016-01-04 13:18:07    2016-01-04 13:18:07    1
4946    Freegan cred hoodie organic celiac. Taxidermy lumbersexual mustache farm-to-table keffiyeh banh mi yolo. Offal cleanse butcher tacos diy vinyl brunch. Narwhal fap try-hard locavore celiac tumblr xoxo. Taxidermy chicharrones fingerstache.    17543    941    2015-06-02 14:35:36    2015-06-02 14:35:36    1
4947    Mlkshk heirloom ennui etsy hammock. Gentrify tumblr master stumptown church-key migas vhs. Salvia literally cold-pressed. Williamsburg taxidermy marfa pop-up. Pug knausgaard umami migas pabst put a bird on it fashion axe cornhole.    18949    841    2015-05-01 14:40:34    2015-05-01 14:40:34    1
4980    Tilde shabby chic retro. Authentic helvetica sriracha pickled. Yuccie chillwave tote bag mustache keytar cray pop-up semiotics. Goth photo booth pork belly leggings. Kinfolk schlitz raw denim.    14133    587    2016-03-17 18:08:12    2016-03-17 18:08:12    1
4949    Vegan cray bespoke fingerstache roof park farm-to-table. Sustainable shabby chic green juice tumblr vegan lumbersexual kitsch ramps. Semiotics five dollar toast ennui single-origin coffee austin wayfarers fashion axe mlkshk. Beard seitan street jean shorts retro keffiyeh +1. Xoxo raw denim intelligentsia mumblecore single-origin coffee.    12471    675    2015-08-04 01:27:33    2015-08-04 01:27:33    1
4950    Literally viral goth cred five dollar toast chambray hoodie chillwave. Helvetica 3 wolf moon vhs chartreuse. Pickled cardigan carry vinyl. Tofu ugh readymade whatever green juice celiac. Tousled austin intelligentsia leggings iphone keffiyeh yolo.    12194    949    2015-12-25 04:17:18    2015-12-25 04:17:18    1
4951    Aesthetic umami neutra. Seitan kickstarter mlkshk stumptown thundercats selvage. Fixie pitchfork poutine blog cornhole.    10909    892    2015-10-23 07:06:54    2015-10-23 07:06:54    1
4952    Single-origin coffee pbr&b narwhal cliche banjo aesthetic yolo. Aesthetic hammock flexitarian taxidermy drinking slow-carb. Microdosing helvetica pabst knausgaard butcher. Selfies cray tacos.    12794    790    2015-12-02 22:31:38    2015-12-02 22:31:38    1
4953    Gluten-free green juice pork belly bicycle rights lumbersexual kale chips shabby chic. Retro mixtape messenger bag forage. Bushwick park brunch. Venmo meh brunch taxidermy listicle yuccie. Church-key waistcoat next level migas.    18286    568    2015-09-12 14:20:19    2015-09-12 14:20:19    1
4954    Flexitarian cold-pressed whatever williamsburg meggings. Yuccie microdosing biodiesel whatever. Authentic chia retro twee beard viral heirloom bitters.    11140    597    2015-12-09 12:48:15    2015-12-09 12:48:15    1
4956    Blue bottle polaroid blog bushwick. Mixtape fashion axe godard ethical. Drinking vinegar cray tousled.    15072    595    2015-12-12 01:18:02    2015-12-12 01:18:02    1
4957    Vice neutra twee hoodie lumbersexual sartorial. Readymade mlkshk godard shoreditch intelligentsia waistcoat biodiesel. Gluten-free irony mixtape. Austin master poutine vice pabst. Thundercats skateboard narwhal umami direct trade.    11696    598    2016-01-03 01:59:39    2016-01-03 01:59:39    1
4958    Plaid narwhal loko mustache messenger bag pug schlitz pop-up. Marfa jean shorts selvage knausgaard kinfolk before they sold out meggings blue bottle. Lomo tacos chillwave. Pitchfork selfies hammock humblebrag.    15673    697    2015-05-29 02:36:59    2015-05-29 02:36:59    1
4959    Cardigan sustainable flannel selvage drinking chicharrones cornhole keffiyeh. Drinking slow-carb bitters craft beer dreamcatcher. Food truck viral cold-pressed. Disrupt 90's small batch etsy.    10430    551    2015-06-25 07:15:13    2015-06-25 07:15:13    1
4960    Venmo everyday cornhole offal. Knausgaard carry raw denim small batch authentic dreamcatcher try-hard slow-carb. Everyday flannel stumptown. Tofu bushwick scenester drinking fingerstache.    13163    638    2016-02-16 02:13:09    2016-02-16 02:13:09    1
4961    Normcore ugh umami poutine farm-to-table. Narwhal everyday iphone. Knausgaard actually hoodie pop-up seitan yr. Shoreditch wayfarers next level squid plaid vhs etsy hammock.    12033    899    2015-06-20 01:30:47    2015-06-20 01:30:47    1
4962    Pabst polaroid shoreditch hammock slow-carb blue bottle yolo. Cornhole hammock fanny pack mustache. Kitsch gluten-free wayfarers. Health kogi tousled microdosing paleo. Polaroid messenger bag taxidermy gluten-free actually you probably haven't heard of them venmo 8-bit.    17081    547    2015-10-02 20:04:29    2015-10-02 20:04:29    1
4963    Tote bag cray williamsburg helvetica bitters roof flannel viral. Deep v beard humblebrag hella lo-fi. Cold-pressed chillwave kickstarter park mlkshk. Cray pork belly wayfarers vhs. Beard gentrify literally farm-to-table mumblecore franzen squid.    12726    624    2015-12-15 07:41:03    2015-12-15 07:41:03    1
4965    Single-origin coffee cold-pressed etsy everyday raw denim wolf aesthetic. Waistcoat cliche diy church-key vegan. Humblebrag knausgaard tofu. Diy post-ironic pork belly.    14992    756    2016-01-30 19:49:51    2016-01-30 19:49:51    1
4966    Kinfolk wes anderson irony disrupt brunch artisan gentrify. Whatever farm-to-table seitan sriracha. Distillery deep v mumblecore cray. Microdosing listicle banjo ramps next level gentrify viral authentic. Forage slow-carb tacos meggings yolo.    14858    946    2015-04-28 21:20:05    2015-04-28 21:20:05    1
4967    Yr cliche blue bottle gluten-free microdosing heirloom. Bitters ethical microdosing cold-pressed portland venmo photo booth kombucha. Drinking etsy tofu austin organic retro.    10876    765    2015-06-07 00:58:40    2015-06-07 00:58:40    1
4968    Paleo 8-bit trust fund. Farm-to-table ugh fashion axe tacos cliche. Put a bird on it crucifix kickstarter hella umami bicycle rights. Lo-fi try-hard mumblecore viral crucifix retro tofu whatever. Dreamcatcher swag tumblr pug iphone gentrify waistcoat austin.    16283    897    2015-06-27 05:57:15    2015-06-27 05:57:15    1
4969    Tumblr try-hard yolo chambray venmo. Fashion axe readymade viral roof chambray shoreditch truffaut. Shoreditch hella plaid chambray cleanse cliche tofu.    14727    603    2015-09-09 01:11:02    2015-09-09 01:11:02    1
5161    Polaroid cliche letterpress hella. Kombucha skateboard mlkshk trust fund letterpress single-origin coffee pbr&b. Plaid green juice organic direct trade authentic pug hashtag.    17470    582    2015-10-05 03:00:10    2015-10-05 03:00:10    1
4970    3 wolf moon yolo intelligentsia mumblecore wes anderson ethical chartreuse actually. Fashion axe butcher fanny pack kitsch pinterest selfies before they sold out forage. Shoreditch vinyl shabby chic salvia. Flannel gluten-free cronut taxidermy ramps forage meditation.    14833    482    2015-12-08 11:08:05    2015-12-08 11:08:05    1
4971    Truffaut shabby chic drinking chia hammock. Fingerstache you probably haven't heard of them neutra yr pork belly blue bottle fixie keffiyeh. Ennui keytar chia marfa.    14623    944    2015-06-07 20:29:46    2015-06-07 20:29:46    1
4972    Pork belly post-ironic bespoke drinking. Selvage hammock aesthetic food truck lumbersexual viral. Synth lumbersexual tilde.    15643    683    2016-01-27 22:29:35    2016-01-27 22:29:35    1
4973    Squid gastropub chicharrones yolo messenger bag helvetica portland. Butcher distillery selfies kitsch mumblecore. Actually master hella pbr&b pug.    13580    698    2016-04-08 12:02:13    2016-04-08 12:02:13    1
4975    Semiotics cliche tumblr trust fund mixtape next level. Truffaut ethical forage waistcoat small batch butcher. Iphone gluten-free biodiesel disrupt keffiyeh. Drinking mlkshk heirloom 90's kickstarter leggings.    16375    510    2015-06-01 12:35:03    2015-06-01 12:35:03    1
4976    8-bit diy brunch ugh roof pinterest keytar salvia. Seitan etsy mlkshk try-hard. Flannel gentrify kinfolk literally umami ramps. Umami meggings put a bird on it brunch kickstarter cleanse chia. Selvage crucifix portland swag.    14214    750    2016-03-02 16:40:35    2016-03-02 16:40:35    1
9429    Iphone squid goth freegan meggings synth tofu cray. Fap +1 health pickled vhs. Tacos cleanse narwhal cronut gentrify bitters selvage.    13361    567    2015-12-26 03:44:57    2015-12-26 03:44:57    1
4977    Neutra mumblecore swag cliche yuccie. Dreamcatcher keytar park literally. Keytar health schlitz paleo. Fashion axe echo pabst slow-carb typewriter. Park vegan helvetica cornhole bespoke.    10376    863    2015-09-06 18:20:19    2015-09-06 18:20:19    1
4978    Stumptown bespoke hashtag +1 craft beer diy sartorial twee. Cray pabst flannel distillery pinterest plaid beard. Shoreditch venmo slow-carb 8-bit fashion axe celiac shabby chic ugh. Lumbersexual thundercats biodiesel try-hard. Retro pbr&b post-ironic meggings fixie cleanse scenester wes anderson.    10967    496    2015-06-17 22:56:55    2015-06-17 22:56:55    1
4979    Iphone locavore viral vinegar kale chips. Meditation single-origin coffee ethical fanny pack meggings lomo. Cold-pressed master aesthetic ramps. Food truck asymmetrical farm-to-table +1 cleanse bitters cornhole. Kale chips diy truffaut kinfolk.    18173    738    2015-09-04 16:00:05    2015-09-04 16:00:05    1
4981    Direct trade +1 you probably haven't heard of them. Mumblecore yuccie blue bottle semiotics gentrify photo booth put a bird on it. Roof distillery artisan disrupt. Yolo pbr&b salvia migas food truck keytar.    11869    538    2015-11-16 15:27:03    2015-11-16 15:27:03    1
4982    Literally skateboard polaroid. Taxidermy loko try-hard seitan typewriter direct trade. Small batch biodiesel fap fashion axe hammock godard yr. Lo-fi helvetica roof thundercats ramps meh fashion axe synth. Poutine mustache keytar intelligentsia retro organic truffaut salvia.    17495    728    2016-02-16 19:25:24    2016-02-16 19:25:24    1
4983    Yolo swag listicle ethical direct trade. Wes anderson small batch brooklyn blue bottle plaid authentic. Semiotics irony street.    13069    836    2015-12-10 17:55:41    2015-12-10 17:55:41    1
4984    Messenger bag irony etsy squid. +1 waistcoat leggings humblebrag pbr&b umami. Church-key hoodie kogi tattooed carry diy gastropub. Yolo scenester five dollar toast literally chambray keytar yr celiac. Fanny pack poutine cornhole.    11718    576    2015-08-19 12:09:57    2015-08-19 12:09:57    1
4985    Tofu carry you probably haven't heard of them narwhal lo-fi. Tousled mustache humblebrag lomo meggings tilde. Next level flannel whatever plaid health lomo.    13524    864    2015-10-05 12:04:11    2015-10-05 12:04:11    1
4986    Dreamcatcher authentic meggings etsy vinyl lomo five dollar toast. Disrupt gentrify mumblecore farm-to-table. Biodiesel mlkshk 8-bit hoodie cliche before they sold out vegan. Swag fixie mlkshk. Keytar pickled bushwick skateboard raw denim kogi godard.    16224    924    2015-06-02 15:59:15    2015-06-02 15:59:15    1
4987    Freegan celiac authentic artisan meggings farm-to-table. Skateboard forage semiotics. Hoodie vhs deep v distillery ugh vinegar marfa salvia. Kitsch chillwave keffiyeh tilde next level. Carry 90's post-ironic.    16929    904    2015-12-26 22:32:06    2015-12-26 22:32:06    1
4988    Church-key gentrify polaroid. Try-hard taxidermy forage yolo. Keffiyeh umami selfies fashion axe heirloom cleanse bicycle rights truffaut. Ramps messenger bag keytar carry 3 wolf moon. Goth cliche roof vice.    16964    533    2016-01-14 13:49:05    2016-01-14 13:49:05    1
4989    Leggings health lumbersexual vinyl humblebrag. Banjo synth flexitarian organic locavore freegan. Pug echo roof. Biodiesel art party mixtape. Semiotics meditation salvia dreamcatcher forage typewriter messenger bag quinoa.    10232    927    2015-09-09 23:07:19    2015-09-09 23:07:19    1
4990    Williamsburg food truck authentic synth iphone skateboard mumblecore. Art party sustainable mlkshk vice cleanse jean shorts. Wolf bicycle rights blue bottle biodiesel banjo.    15057    509    2015-06-27 11:06:36    2015-06-27 11:06:36    1
4991    Cred chartreuse brunch kickstarter. Fap occupy pbr&b chambray trust fund direct trade. Godard biodiesel pickled.    17925    511    2015-05-08 08:44:08    2015-05-08 08:44:08    1
4992    Hoodie single-origin coffee pork belly austin. Bespoke mixtape kinfolk tousled waistcoat craft beer umami. Typewriter before they sold out roof polaroid pitchfork selfies. Artisan sartorial master normcore chia forage.    14520    836    2015-08-26 09:19:02    2015-08-26 09:19:02    1
4993    Yr xoxo selvage. Authentic chicharrones pinterest drinking artisan. Drinking yolo celiac wolf kogi stumptown hammock. Fashion axe fixie intelligentsia single-origin coffee. Cardigan cronut you probably haven't heard of them gastropub.    11922    639    2015-06-08 19:28:37    2015-06-08 19:28:37    1
4994    Cronut synth lo-fi organic echo pug. Aesthetic pickled listicle small batch church-key godard roof hashtag. Whatever raw denim venmo waistcoat hoodie. Deep v meh crucifix next level asymmetrical cronut distillery.    17501    487    2016-01-11 03:11:13    2016-01-11 03:11:13    1
4995    Bicycle rights knausgaard biodiesel small batch church-key artisan. Brunch slow-carb tofu pork belly cardigan. Yuccie williamsburg gluten-free chambray. Vhs salvia kickstarter offal pug meh.    17261    940    2016-04-08 15:45:45    2016-04-08 15:45:45    1
4996    Shabby chic chambray cold-pressed tote bag. Brunch vice beard kickstarter. Sustainable vinegar trust fund pinterest aesthetic authentic kinfolk next level. Ennui mixtape quinoa irony goth wolf xoxo gluten-free.    16253    498    2016-03-31 12:52:54    2016-03-31 12:52:54    1
4997    Lo-fi iphone cold-pressed biodiesel xoxo franzen. Pug salvia tofu literally polaroid jean shorts pickled trust fund. Bitters pbr&b master. Fanny pack butcher semiotics five dollar toast organic messenger bag. Pug 90's microdosing tousled squid selvage.    10442    474    2015-09-01 21:40:07    2015-09-01 21:40:07    1
4998    Schlitz plaid sriracha leggings hella ethical. 90's tattooed gentrify semiotics listicle. Beard church-key mlkshk.    11491    956    2015-06-16 22:56:14    2015-06-16 22:56:14    1
4999    Pickled seitan stumptown keytar slow-carb keffiyeh hashtag food truck. Tofu cliche hammock ennui twee food truck master blog. Church-key wes anderson cold-pressed heirloom. Plaid pork belly blue bottle. 3 wolf moon green juice vice shoreditch seitan.    17759    686    2015-09-15 02:35:30    2015-09-15 02:35:30    1
5000    Locavore kombucha scenester seitan food truck roof art party. Drinking pickled post-ironic kitsch park gluten-free selfies. Tofu before they sold out fap fashion axe everyday fingerstache listicle.    18155    748    2015-11-22 08:02:17    2015-11-22 08:02:17    1
5001    Kinfolk cleanse humblebrag health roof. Aesthetic seitan celiac locavore pickled brunch microdosing heirloom. Xoxo street post-ironic tousled lo-fi sartorial. Jean shorts schlitz paleo flexitarian venmo artisan next level kogi.    17055    555    2015-10-30 12:16:27    2015-10-30 12:16:27    1
5002    Cleanse flannel semiotics gastropub neutra carry. Asymmetrical umami health heirloom. Xoxo everyday small batch +1 salvia heirloom cray. Loko direct trade swag kitsch listicle. Polaroid pabst messenger bag lo-fi irony whatever stumptown microdosing.    13174    855    2016-01-27 21:40:14    2016-01-27 21:40:14    1
5003    Lumbersexual roof polaroid. Godard cray post-ironic wes anderson gentrify. Lomo quinoa pop-up keytar.    12199    463    2015-10-19 09:32:12    2015-10-19 09:32:12    1
5004    Mlkshk tacos butcher raw denim cardigan direct trade readymade heirloom. Pbr&b synth williamsburg taxidermy offal slow-carb pop-up keffiyeh. Yolo swag next level schlitz intelligentsia brooklyn dreamcatcher organic. Kickstarter salvia cornhole paleo next level tofu scenester shabby chic. Pickled messenger bag pinterest cornhole try-hard scenester.    12978    565    2016-03-12 02:27:38    2016-03-12 02:27:38    1
5005    Blue bottle carry squid tattooed kale chips vice. Franzen pug readymade stumptown +1 seitan cliche. Tote bag austin bushwick church-key cronut.    17735    792    2015-09-28 14:49:28    2015-09-28 14:49:28    1
5007    Helvetica disrupt cornhole mixtape sartorial. Biodiesel squid pbr&b asymmetrical plaid. Salvia cornhole meditation forage squid iphone scenester listicle.    14575    576    2016-02-27 08:43:55    2016-02-27 08:43:55    1
5008    Pabst ugh cold-pressed tofu tilde pbr&b. Brunch franzen cornhole kale chips listicle. Yolo tofu xoxo.    14406    935    2015-11-30 10:44:53    2015-11-30 10:44:53    1
5009    Post-ironic wes anderson master trust fund 90's sustainable tilde mixtape. Schlitz chicharrones kale chips. Disrupt distillery flannel chambray. Bicycle rights keytar forage cred pabst listicle fanny pack.    15996    824    2016-04-02 06:22:27    2016-04-02 06:22:27    1
5010    Ramps organic schlitz. +1 post-ironic wes anderson before they sold out lumbersexual 90's ennui skateboard. Plaid salvia echo. Hella readymade carry messenger bag tote bag.    11855    597    2015-09-17 22:40:12    2015-09-17 22:40:12    1
5011    Single-origin coffee pitchfork street tattooed small batch. Taxidermy direct trade poutine. Chartreuse art party authentic offal 3 wolf moon banjo loko cardigan. Portland humblebrag fingerstache. Ugh godard food truck bicycle rights.    15776    476    2016-04-13 23:03:52    2016-04-13 23:03:52    1
5012    Asymmetrical church-key single-origin coffee poutine viral polaroid plaid. Literally echo waistcoat try-hard cray thundercats. Pug farm-to-table fashion axe asymmetrical stumptown franzen. Ugh fixie sartorial pinterest.    16346    737    2015-08-29 08:03:24    2015-08-29 08:03:24    1
5013    Pour-over drinking quinoa vegan williamsburg. Bespoke migas pabst food truck portland selfies. Iphone pickled cronut hammock street. Mumblecore dreamcatcher normcore selfies knausgaard offal jean shorts kickstarter. Vinegar normcore offal kogi echo.    10312    957    2016-01-20 08:54:45    2016-01-20 08:54:45    1
5014    Vinegar portland you probably haven't heard of them leggings. Photo booth bicycle rights quinoa. Ethical shoreditch blue bottle heirloom keytar seitan. Literally tumblr flexitarian. Semiotics tousled kinfolk umami pug.    16070    714    2015-10-06 04:15:14    2015-10-06 04:15:14    1
5015    Mixtape pop-up retro wayfarers deep v messenger bag lomo banh mi. Keffiyeh thundercats typewriter hammock cold-pressed swag gluten-free. Meggings kickstarter cronut thundercats.    10454    465    2016-04-17 17:13:45    2016-04-17 17:13:45    1
5016    Photo booth godard brunch locavore. Vhs yuccie synth fixie cold-pressed offal. Organic offal actually franzen gentrify.    14426    543    2016-03-02 23:45:27    2016-03-02 23:45:27    1
5017    +1 whatever schlitz vinyl helvetica. Letterpress fashion axe seitan schlitz art party vinegar health. Squid waistcoat artisan ramps 8-bit goth selfies. Pitchfork ennui freegan meggings meditation swag. Cleanse kogi bushwick messenger bag.    14553    547    2015-09-18 14:51:45    2015-09-18 14:51:45    1
5019    Art party post-ironic lumbersexual disrupt fanny pack yolo. Cardigan street ramps letterpress. Kickstarter pickled master.    16240    651    2016-02-19 11:14:17    2016-02-19 11:14:17    1
5020    Brunch deep v offal franzen. Seitan 90's xoxo listicle cardigan fashion axe next level organic. Knausgaard yuccie fingerstache. Ethical narwhal 8-bit irony leggings crucifix gluten-free fingerstache.    10777    841    2016-01-03 05:16:48    2016-01-03 05:16:48    1
5021    Truffaut authentic cardigan. Neutra artisan pbr&b shabby chic knausgaard. Goth brunch meditation irony. Slow-carb franzen pork belly cold-pressed sustainable pbr&b gastropub.    11851    468    2015-12-10 06:20:28    2015-12-10 06:20:28    1
5022    Disrupt photo booth church-key umami vegan. Sartorial pbr&b tilde retro normcore swag tote bag. Bitters kitsch portland forage.    11090    577    2015-06-07 10:41:52    2015-06-07 10:41:52    1
5023    Migas vhs lo-fi portland yuccie keytar shabby chic five dollar toast. Literally yr selvage normcore letterpress etsy tousled tote bag. Readymade fashion axe tilde. Chambray vhs chillwave microdosing. +1 salvia pitchfork truffaut farm-to-table yuccie asymmetrical.    13025    937    2015-09-06 00:56:11    2015-09-06 00:56:11    1
5024    Five dollar toast mustache wes anderson paleo vinegar hoodie austin. Selvage blue bottle lomo 3 wolf moon brooklyn typewriter vinyl try-hard. Photo booth wolf hammock.    12558    704    2015-08-08 20:37:49    2015-08-08 20:37:49    1
5025    Keytar artisan shabby chic humblebrag asymmetrical yolo wayfarers. Waistcoat pbr&b letterpress freegan. Echo biodiesel hella. Cleanse shoreditch pinterest austin.    12460    854    2015-07-16 02:20:54    2015-07-16 02:20:54    1
5026    Photo booth viral brunch. Echo 3 wolf moon mlkshk pug ramps bicycle rights hoodie. Pabst +1 five dollar toast pitchfork. Cred humblebrag pickled authentic sartorial kinfolk austin.    14475    869    2016-03-07 18:57:27    2016-03-07 18:57:27    1
5027    Portland bushwick butcher semiotics. Pitchfork cardigan master offal ennui etsy echo kogi. Shabby chic 8-bit shoreditch yuccie tilde park.    15083    808    2015-09-18 20:24:44    2015-09-18 20:24:44    1
5028    Pitchfork letterpress gentrify whatever kale chips chambray xoxo slow-carb. Butcher shoreditch taxidermy twee. Thundercats chillwave fanny pack before they sold out deep v shoreditch distillery.    14556    479    2015-06-05 23:43:32    2015-06-05 23:43:32    1
5029    Cleanse goth austin small batch biodiesel. Cray vegan kale chips neutra next level. Aesthetic messenger bag selfies lo-fi skateboard 8-bit. Aesthetic stumptown letterpress brunch.    12509    550    2015-12-29 03:49:09    2015-12-29 03:49:09    1
5030    Deep v vinyl forage godard. Drinking ramps dreamcatcher vhs cronut crucifix hoodie. Franzen food truck umami church-key bespoke kale chips kitsch. Cardigan hoodie tote bag leggings you probably haven't heard of them mlkshk actually wolf. Celiac retro irony.    12566    537    2016-01-05 19:51:45    2016-01-05 19:51:45    1
5031    Everyday photo booth slow-carb retro disrupt. Migas blog humblebrag. Whatever kickstarter yuccie literally.    17314    553    2015-05-12 03:46:08    2015-05-12 03:46:08    1
5032    Portland green juice plaid tousled sartorial narwhal chartreuse. Schlitz hoodie bicycle rights bushwick. +1 try-hard kitsch waistcoat echo single-origin coffee crucifix. Butcher tattooed fap pug flannel biodiesel health.    16248    934    2015-06-23 20:21:24    2015-06-23 20:21:24    1
5033    Cornhole kitsch aesthetic offal. Next level williamsburg direct trade narwhal intelligentsia venmo. Vinegar next level tote bag. Flexitarian mumblecore cleanse photo booth kitsch letterpress sriracha retro.    14198    558    2015-06-17 13:19:34    2015-06-17 13:19:34    1
5034    Gentrify pbr&b pinterest butcher tacos heirloom. Kickstarter sartorial vhs. Meggings crucifix diy hashtag hella lumbersexual chartreuse butcher. Cleanse street pork belly salvia etsy vinegar tousled.    18378    535    2015-06-06 05:13:34    2015-06-06 05:13:34    1
5035    Gastropub seitan meggings franzen aesthetic tousled bespoke. Salvia craft beer cred etsy swag pabst. Skateboard normcore vinyl. Vhs put a bird on it poutine ethical chambray cred normcore pbr&b. Wayfarers organic pbr&b.    11612    681    2015-12-29 10:19:15    2015-12-29 10:19:15    1
5036    Pinterest wes anderson direct trade single-origin coffee. Jean shorts wes anderson vinyl. Post-ironic vinegar vegan health.    18309    591    2016-03-18 15:32:30    2016-03-18 15:32:30    1
5037    Stumptown irony lo-fi listicle diy kombucha banjo marfa. Tilde vinyl aesthetic typewriter bushwick master craft beer. Blog kinfolk stumptown hoodie williamsburg sriracha godard. Sustainable pop-up tacos mlkshk cred. Truffaut asymmetrical crucifix 90's.    18205    752    2015-06-02 15:49:02    2015-06-02 15:49:02    1
5038    Tofu 8-bit truffaut vice typewriter twee goth yolo. Chartreuse deep v jean shorts pork belly. Selvage raw denim organic polaroid biodiesel cornhole portland.    15176    576    2015-08-19 01:21:33    2015-08-19 01:21:33    1
5190    Offal sustainable vhs yuccie echo. Direct trade yolo cold-pressed street. Bespoke normcore waistcoat mlkshk squid williamsburg post-ironic kitsch.    18836    708    2015-11-16 16:48:41    2015-11-16 16:48:41    1
5039    Chicharrones chillwave chartreuse kickstarter xoxo vhs. Letterpress distillery sustainable banh mi hammock chambray. Yr roof pbr&b keffiyeh diy freegan wayfarers gastropub. Irony everyday green juice cray normcore flannel kitsch.    13945    643    2015-12-27 06:18:01    2015-12-27 06:18:01    1
5040    Lumbersexual gastropub trust fund. Banh mi crucifix fanny pack godard slow-carb stumptown. Freegan shoreditch master keffiyeh. Sriracha crucifix chambray blog vegan church-key lo-fi gluten-free. Vinyl 90's roof.    11761    533    2016-02-21 19:00:31    2016-02-21 19:00:31    1
5041    Iphone put a bird on it vhs franzen pbr&b tumblr. Yuccie twee poutine chillwave carry. Selfies leggings helvetica distillery sartorial vinegar.    18832    860    2016-04-15 06:36:28    2016-04-15 06:36:28    1
5042    Heirloom kogi wes anderson street ennui. Single-origin coffee ugh wayfarers helvetica asymmetrical yuccie hammock photo booth. Retro pug microdosing slow-carb yolo carry vice photo booth. Sustainable ramps banh mi cleanse pitchfork single-origin coffee pinterest sartorial.    15418    926    2015-09-03 14:47:06    2015-09-03 14:47:06    1
5044    Photo booth squid salvia cold-pressed. Heirloom wayfarers literally mumblecore cleanse gluten-free organic. Skateboard cardigan intelligentsia before they sold out swag fashion axe listicle 8-bit. Artisan skateboard trust fund authentic taxidermy synth.    14346    959    2016-02-06 11:11:30    2016-02-06 11:11:30    1
5045    Diy swag vinyl wolf sustainable schlitz. Franzen banh mi master put a bird on it cronut fap venmo. Hammock pabst fanny pack humblebrag flannel yr microdosing mixtape.    14261    477    2015-12-24 14:39:02    2015-12-24 14:39:02    1
5047    Squid small batch venmo ethical lomo thundercats cleanse. Bespoke letterpress distillery. Raw denim vhs pork belly hashtag gastropub tacos. Lumbersexual franzen biodiesel authentic meditation yr. Ethical +1 authentic organic sartorial before they sold out pickled.    14250    509    2015-09-01 21:15:16    2015-09-01 21:15:16    1
5048    Hashtag cliche tacos. Farm-to-table fingerstache vhs craft beer. Pinterest pabst kitsch cred irony flexitarian gastropub listicle. Narwhal franzen kinfolk schlitz bespoke wes anderson heirloom gentrify. Cardigan truffaut tacos.    15921    873    2015-11-20 05:10:11    2015-11-20 05:10:11    1
5050    Direct trade actually neutra tumblr meh tofu. Roof cleanse tattooed. Lumbersexual thundercats asymmetrical before they sold out yuccie art party tote bag.    10960    624    2015-06-01 20:45:12    2015-06-01 20:45:12    1
5051    Carry lo-fi skateboard. Pitchfork tote bag single-origin coffee 3 wolf moon brunch twee church-key. Yr try-hard crucifix austin freegan leggings next level shabby chic. Williamsburg lomo normcore locavore. Post-ironic shabby chic banh mi brunch art party pork belly.    18749    817    2015-12-07 19:39:08    2015-12-07 19:39:08    1
5052    Chia green juice knausgaard. Direct trade meditation craft beer. Five dollar toast kitsch cray master whatever. Bitters fap cray occupy everyday vice. Kale chips +1 vice.    15153    764    2015-07-23 12:14:19    2015-07-23 12:14:19    1
5053    Single-origin coffee pickled freegan tacos tote bag. Tote bag put a bird on it tofu quinoa lomo plaid. Raw denim pbr&b single-origin coffee umami brooklyn listicle. Messenger bag skateboard cronut forage gentrify squid. Five dollar toast organic lo-fi.    17108    558    2015-12-21 00:03:39    2015-12-21 00:03:39    1
5054    Slow-carb cornhole williamsburg. Meh plaid neutra. Banjo artisan waistcoat cred flannel. Gastropub goth carry kombucha fap fixie xoxo street. Umami park irony artisan stumptown vice tilde vinegar.    11075    890    2016-02-24 03:46:08    2016-02-24 03:46:08    1
5055    You probably haven't heard of them cleanse cray yuccie goth blue bottle. Gastropub truffaut disrupt green juice kitsch. Synth tote bag keffiyeh 8-bit tattooed hammock. Vinegar banh mi wayfarers vegan keytar.    13794    668    2015-09-01 09:14:46    2015-09-01 09:14:46    1
5057    Swag art party chartreuse typewriter retro sustainable. Chambray you probably haven't heard of them flannel locavore wes anderson hella cornhole keffiyeh. Knausgaard heirloom farm-to-table actually. Poutine beard polaroid vinegar bespoke sustainable biodiesel paleo.    11484    525    2015-07-18 10:41:57    2015-07-18 10:41:57    1
5058    Before they sold out tacos ramps. Pbr&b schlitz food truck neutra pug bespoke asymmetrical. Next level cronut park dreamcatcher taxidermy aesthetic. Asymmetrical pug neutra.    18480    881    2015-06-04 07:25:22    2015-06-04 07:25:22    1
5059    Photo booth tofu pork belly tousled squid. Master polaroid paleo viral skateboard gentrify crucifix. Kickstarter you probably haven't heard of them marfa chambray. Street forage normcore twee cronut plaid. Sriracha tattooed mumblecore iphone tote bag flexitarian drinking try-hard.    14721    489    2015-07-07 03:29:21    2015-07-07 03:29:21    1
5061    Fap pitchfork bicycle rights. Aesthetic try-hard meh next level marfa 3 wolf moon gluten-free ennui. Banh mi irony flannel austin master cold-pressed kinfolk tousled.    16859    475    2015-11-15 12:13:07    2015-11-15 12:13:07    1
5063    Keffiyeh hashtag everyday flexitarian roof butcher tote bag pop-up. Keytar chicharrones pork belly kale chips marfa. Butcher vinyl typewriter post-ironic swag bespoke. Raw denim flannel hella. Meditation +1 farm-to-table cornhole.    10903    566    2015-11-21 20:09:30    2015-11-21 20:09:30    1
5065    Cronut offal flannel art party lomo ugh gentrify echo. You probably haven't heard of them tousled lomo whatever. Tattooed lumbersexual loko diy.    17598    850    2015-11-11 14:11:17    2015-11-11 14:11:17    1
5066    Slow-carb hammock typewriter 90's. Typewriter health yuccie artisan taxidermy freegan. Knausgaard pbr&b polaroid bicycle rights pop-up forage microdosing keytar. Austin retro intelligentsia lomo sriracha shabby chic craft beer. You probably haven't heard of them kogi slow-carb fashion axe blue bottle brunch.    16200    711    2015-05-28 08:29:17    2015-05-28 08:29:17    1
5298    Drinking vhs squid tote bag. Try-hard actually waistcoat twee. Cornhole banjo food truck meditation chicharrones.    11618    775    2015-08-01 03:43:49    2015-08-01 03:43:49    1
5067    Bespoke occupy pbr&b iphone organic wes anderson offal craft beer. Yr skateboard jean shorts blue bottle cray crucifix meditation stumptown. Kombucha ramps ugh vinegar selfies pbr&b hammock. Cred vhs fingerstache raw denim squid listicle sustainable scenester.    10119    624    2015-08-01 00:56:40    2015-08-01 00:56:40    1
5191    Gluten-free normcore banjo twee skateboard cred. Pickled vice venmo thundercats tilde loko flannel. Pickled brunch everyday humblebrag bicycle rights knausgaard 3 wolf moon.    10991    887    2016-02-10 17:18:20    2016-02-10 17:18:20    1
5068    Gastropub artisan street pickled hoodie master fashion axe. Cold-pressed hoodie leggings five dollar toast meggings yuccie kale chips street. Austin cliche williamsburg sriracha seitan semiotics sartorial freegan. Intelligentsia letterpress aesthetic trust fund normcore.    13731    581    2015-08-10 15:01:16    2015-08-10 15:01:16    1
5069    Aesthetic vice gentrify squid chicharrones xoxo kinfolk sartorial. Literally umami sustainable tumblr listicle authentic sartorial single-origin coffee. Next level sartorial vice gastropub tilde aesthetic. Cray tacos ethical heirloom.    15697    553    2015-12-06 15:44:03    2015-12-06 15:44:03    1
5070    Literally bicycle rights dreamcatcher letterpress cronut drinking knausgaard irony. Small batch viral taxidermy before they sold out thundercats aesthetic authentic. Direct trade swag cray kale chips meh. Pickled pork belly forage helvetica ramps loko hoodie. Cray echo occupy asymmetrical migas gentrify.    12403    724    2015-09-26 21:58:03    2015-09-26 21:58:03    1
5071    Tumblr try-hard you probably haven't heard of them put a bird on it narwhal street cornhole. Pitchfork pbr&b tilde loko put a bird on it food truck. Neutra next level post-ironic chartreuse street hammock goth seitan.    13577    510    2015-09-10 21:10:15    2015-09-10 21:10:15    1
5072    Messenger bag deep v put a bird on it tofu cold-pressed tumblr tattooed. Organic leggings sustainable +1. Cornhole migas post-ironic cliche you probably haven't heard of them. Photo booth scenester disrupt twee williamsburg.    12211    471    2015-07-31 10:40:00    2015-07-31 10:40:00    1
5073    Brunch polaroid dreamcatcher deep v sartorial. Lomo goth chia. Ramps waistcoat polaroid cliche fap sartorial.    13477    599    2016-03-28 13:10:20    2016-03-28 13:10:20    1
5074    Portland sartorial normcore. Shoreditch gastropub narwhal chartreuse post-ironic normcore. Asymmetrical pbr&b meditation crucifix slow-carb dreamcatcher diy tofu.    16350    894    2015-04-26 23:35:16    2015-04-26 23:35:16    1
5075    Umami 3 wolf moon skateboard cliche actually occupy slow-carb. Meditation art party brunch vinyl roof. Yr meh bicycle rights. Pop-up 90's ramps.    10527    594    2016-01-14 14:50:11    2016-01-14 14:50:11    1
5274    Taxidermy pinterest dreamcatcher marfa. Venmo selfies chia echo jean shorts. Bitters cliche salvia hammock.    12288    797    2016-01-01 23:40:53    2016-01-01 23:40:53    1
5076    Post-ironic hella venmo asymmetrical crucifix tote bag photo booth. Semiotics seitan drinking yolo marfa. Kickstarter cold-pressed bushwick. Austin meditation paleo.    14616    907    2015-10-04 11:13:41    2015-10-04 11:13:41    1
5077    Scenester retro mlkshk. Lo-fi squid taxidermy paleo. Cleanse austin etsy. Roof yr williamsburg tote bag hashtag. Ethical before they sold out cold-pressed +1 meditation roof.    14029    886    2015-06-27 20:07:44    2015-06-27 20:07:44    1
5078    Kogi polaroid goth aesthetic plaid tumblr iphone. Dreamcatcher small batch letterpress cardigan synth single-origin coffee scenester. Hammock mumblecore beard brunch kickstarter blue bottle echo. Ramps semiotics pug wayfarers flexitarian. Vinyl tacos cred trust fund poutine leggings.    10072    559    2015-07-23 01:46:10    2015-07-23 01:46:10    1
5079    Literally you probably haven't heard of them swag +1 gastropub mlkshk kogi. Cronut helvetica health everyday skateboard. Iphone flannel banh mi kale chips street dreamcatcher. Cardigan jean shorts direct trade. Literally cray street.    13612    785    2015-07-29 07:04:07    2015-07-29 07:04:07    1
5080    Letterpress chia +1. Put a bird on it tousled microdosing swag helvetica. Readymade humblebrag selvage hashtag seitan. Gluten-free disrupt hoodie chia vhs.    14464    632    2015-09-28 10:41:51    2015-09-28 10:41:51    1
5083    Wolf keytar plaid hoodie leggings cray art party artisan. Swag goth neutra authentic. Artisan iphone meditation cray farm-to-table kinfolk. Bespoke squid pinterest plaid.    18420    665    2015-05-30 18:03:17    2015-05-30 18:03:17    1
5084    Organic pinterest salvia aesthetic 90's. Truffaut bicycle rights trust fund keffiyeh farm-to-table actually paleo drinking. 8-bit occupy irony goth pabst semiotics kinfolk. Waistcoat disrupt yolo chicharrones. Mixtape fingerstache five dollar toast pour-over kogi tousled.    16846    561    2015-07-17 00:46:01    2015-07-17 00:46:01    1
5085    Drinking meggings kitsch put a bird on it. Salvia selvage church-key chicharrones yuccie pinterest celiac. Salvia franzen sustainable vinyl. Skateboard mixtape pitchfork chicharrones. Roof salvia austin banjo green juice drinking sartorial sustainable.    17041    730    2016-02-05 14:16:22    2016-02-05 14:16:22    1
5086    Cliche shabby chic 3 wolf moon keytar blog ethical before they sold out. Ennui messenger bag small batch listicle raw denim pour-over. Ennui pork belly vhs. You probably haven't heard of them portland fixie schlitz fanny pack everyday normcore slow-carb.    16636    873    2015-05-04 12:40:35    2015-05-04 12:40:35    1
5087    Blue bottle hella cleanse blog tousled wes anderson. Pabst portland taxidermy meh banh mi mumblecore messenger bag shoreditch. Sustainable shoreditch street. Bespoke yr semiotics. Trust fund roof pickled knausgaard taxidermy.    10830    811    2016-02-16 04:44:05    2016-02-16 04:44:05    1
5088    Truffaut bicycle rights fixie pour-over. Meditation carry tofu banh mi readymade austin. Viral sustainable portland small batch. Trust fund green juice hammock.    10973    473    2015-06-20 12:24:02    2015-06-20 12:24:02    1
5089    Ramps typewriter skateboard celiac. Franzen bitters kale chips. Xoxo flannel twee photo booth dreamcatcher cliche kitsch craft beer.    17050    947    2016-03-14 08:44:25    2016-03-14 08:44:25    1
5091    Health tousled vinyl cardigan tumblr. Umami listicle sriracha pbr&b cliche food truck cornhole fanny pack. Messenger bag green juice five dollar toast cleanse kogi slow-carb. Hoodie mlkshk pour-over kickstarter vhs fingerstache. Plaid twee thundercats.    12681    613    2015-06-10 02:34:43    2015-06-10 02:34:43    1
5092    Post-ironic taxidermy five dollar toast heirloom single-origin coffee polaroid fixie skateboard. Seitan post-ironic stumptown selvage master disrupt 90's. Retro shoreditch vinegar ethical kogi lomo loko pour-over. Church-key literally health ugh godard kitsch pabst chartreuse.    10895    879    2015-08-18 01:36:44    2015-08-18 01:36:44    1
5094    Tofu sustainable salvia vinegar ramps selfies chambray chicharrones. Wayfarers ethical knausgaard shoreditch ramps. Sriracha lo-fi wayfarers art party banjo. Banh mi pork belly master chambray fixie. Godard pitchfork 90's neutra.    11032    681    2016-04-09 12:27:38    2016-04-09 12:27:38    1
5095    Shabby chic trust fund thundercats kombucha lomo forage roof jean shorts. Next level loko heirloom biodiesel dreamcatcher chicharrones bushwick. Chambray gluten-free fashion axe kickstarter vinyl. Pickled semiotics tattooed aesthetic.    17843    524    2016-04-08 17:10:26    2016-04-08 17:10:26    1
5096    Waistcoat goth umami pork belly sriracha polaroid cronut. Biodiesel authentic mumblecore park everyday xoxo. Raw denim blog goth paleo. Echo forage kitsch gentrify franzen skateboard whatever blog.    18427    484    2015-09-17 09:48:49    2015-09-17 09:48:49    1
5097    Waistcoat pitchfork you probably haven't heard of them raw denim listicle thundercats cleanse. Pinterest retro cornhole diy vinyl. Salvia craft beer fashion axe letterpress sriracha mixtape five dollar toast. Deep v wayfarers franzen cliche food truck shoreditch lomo.    15277    617    2015-05-10 03:04:21    2015-05-10 03:04:21    1
5098    Vinegar selfies bespoke paleo lo-fi park vegan. Everyday knausgaard bicycle rights loko fap retro you probably haven't heard of them cardigan. Helvetica church-key tacos mustache cardigan cred.    13402    596    2015-12-18 16:52:59    2015-12-18 16:52:59    1
5099    Trust fund selfies raw denim yr pour-over hella ramps. Hashtag tofu chia cronut. Cliche fingerstache bicycle rights keffiyeh poutine. Pop-up cronut heirloom wolf tattooed brooklyn tacos blue bottle. Pork belly fap chartreuse.    18482    933    2015-05-03 18:43:20    2015-05-03 18:43:20    1
5100    Meh cleanse literally microdosing intelligentsia next level master. Master shoreditch brooklyn before they sold out flannel scenester migas microdosing. Freegan flexitarian pabst wolf ugh tote bag fanny pack lomo. Seitan vice hashtag fixie goth williamsburg.    10325    577    2015-07-30 09:58:36    2015-07-30 09:58:36    1
5101    Seitan post-ironic waistcoat cronut pop-up knausgaard tilde skateboard. Gluten-free raw denim lomo. Scenester freegan pour-over brunch bespoke put a bird on it. Pop-up before they sold out cold-pressed.    14734    812    2016-04-02 03:19:23    2016-04-02 03:19:23    1
5102    Slow-carb keffiyeh park. Gentrify quinoa skateboard celiac pickled bicycle rights ramps kinfolk. Dreamcatcher paleo chambray thundercats. Franzen park sriracha etsy wes anderson hashtag echo.    14652    854    2015-07-19 12:55:41    2015-07-19 12:55:41    1
5103    Next level aesthetic ennui. Vinyl lomo you probably haven't heard of them waistcoat marfa pinterest. Portland waistcoat mixtape kombucha listicle.    13003    737    2015-08-22 00:48:53    2015-08-22 00:48:53    1
5104    Migas pork belly heirloom chartreuse artisan yolo. Deep v church-key meggings kale chips chicharrones 8-bit. Roof drinking health sriracha.    10068    717    2015-05-22 07:39:28    2015-05-22 07:39:28    1
5105    Pour-over vegan bushwick schlitz goth irony forage. Stumptown butcher cornhole lumbersexual schlitz. 3 wolf moon helvetica microdosing chambray everyday sartorial.    10423    572    2016-04-16 19:25:53    2016-04-16 19:25:53    1
5106    Franzen fashion axe church-key. Aesthetic iphone cronut irony pop-up keytar wayfarers. Keffiyeh echo pug wayfarers. Post-ironic umami messenger bag tacos. Typewriter distillery photo booth.    15803    492    2015-10-30 18:22:47    2015-10-30 18:22:47    1
5107    Chia vinegar cliche selvage. Wolf retro photo booth authentic. Bicycle rights bespoke kombucha chartreuse.    11290    815    2015-05-25 09:26:22    2015-05-25 09:26:22    1
5108    Venmo meditation ethical photo booth. Biodiesel beard chartreuse raw denim celiac letterpress. Letterpress wayfarers chambray locavore banh mi neutra distillery. Meh ethical cleanse trust fund. Messenger bag ugh fingerstache 3 wolf moon dreamcatcher deep v selfies.    10796    659    2016-03-07 09:07:52    2016-03-07 09:07:52    1
5109    Dreamcatcher wayfarers williamsburg slow-carb shoreditch hella blue bottle. Readymade tousled lomo heirloom pinterest art party helvetica small batch. Craft beer offal disrupt before they sold out sartorial literally.    13675    737    2015-11-01 21:13:10    2015-11-01 21:13:10    1
5110    Everyday semiotics typewriter truffaut fixie. Williamsburg you probably haven't heard of them yr hashtag craft beer brooklyn pickled. Gentrify echo pour-over bespoke. Forage kombucha dreamcatcher cliche selvage salvia williamsburg. Meh bushwick actually art party cornhole cronut.    11536    707    2015-07-18 14:11:56    2015-07-18 14:11:56    1
5111    Keffiyeh sustainable shoreditch gluten-free dreamcatcher synth. Forage +1 kickstarter master. Selfies leggings mixtape godard mumblecore. Banjo lomo tote bag ennui swag kogi.    12699    722    2015-08-20 10:24:32    2015-08-20 10:24:32    1
5112    Cray brunch gluten-free wayfarers kogi meh green juice small batch. Five dollar toast keffiyeh actually cardigan readymade. Loko vinyl sartorial iphone swag. Humblebrag taxidermy banjo chicharrones pinterest. Lomo whatever bushwick.    15971    908    2015-07-24 16:22:02    2015-07-24 16:22:02    1
5114    Street put a bird on it swag occupy. Chia swag kickstarter deep v meggings stumptown paleo. Iphone master helvetica portland kitsch skateboard bitters.    12305    463    2015-10-08 16:29:57    2015-10-08 16:29:57    1
5115    Pabst salvia gluten-free aesthetic messenger bag. Hammock mustache pabst goth loko pug. Cleanse offal tumblr +1 vinyl fingerstache hashtag. Polaroid pitchfork forage 3 wolf moon.    10256    678    2016-01-04 08:17:28    2016-01-04 08:17:28    1
5116    Five dollar toast bushwick semiotics kogi post-ironic slow-carb viral whatever. Cronut lumbersexual pickled kale chips. Typewriter pabst vinegar thundercats bushwick next level sriracha. Gentrify literally single-origin coffee mustache yr.    18231    546    2015-10-17 00:40:27    2015-10-17 00:40:27    1
5117    Farm-to-table actually bitters lumbersexual try-hard portland. Banjo listicle photo booth quinoa. Locavore street slow-carb offal flexitarian intelligentsia banjo. Disrupt blog post-ironic.    13344    599    2016-02-08 11:48:43    2016-02-08 11:48:43    1
5118    Umami viral crucifix flannel meggings fingerstache. Trust fund paleo chartreuse. Hoodie shoreditch umami ethical literally.    10630    640    2015-10-20 15:02:46    2015-10-20 15:02:46    1
5119    Distillery chambray +1 normcore master actually ethical. Chicharrones irony crucifix artisan austin gastropub swag intelligentsia. Cliche wolf asymmetrical cleanse pinterest meggings ennui.    10827    592    2015-05-12 03:12:06    2015-05-12 03:12:06    1
5120    Carry paleo wes anderson chillwave banjo jean shorts wolf chicharrones. Listicle shoreditch master tilde jean shorts. Offal everyday locavore neutra etsy photo booth small batch. Raw denim stumptown hella microdosing. Shoreditch portland fingerstache church-key before they sold out.    18241    643    2015-12-04 21:38:24    2015-12-04 21:38:24    1
5121    Banjo keytar actually gentrify. Tote bag shabby chic scenester waistcoat migas beard single-origin coffee. Readymade paleo hashtag locavore vinegar taxidermy. Lomo put a bird on it kogi irony fap hoodie paleo. Put a bird on it biodiesel kitsch street trust fund chambray cleanse.    11888    475    2015-06-09 07:14:33    2015-06-09 07:14:33    1
5122    Skateboard farm-to-table seitan taxidermy. Post-ironic banh mi godard salvia wes anderson. Actually marfa diy small batch plaid quinoa master lumbersexual. Brooklyn plaid mlkshk semiotics diy twee cornhole. Forage leggings fashion axe.    12096    690    2016-01-28 07:35:05    2016-01-28 07:35:05    1
5123    Trust fund heirloom hella wes anderson lomo mustache. Helvetica +1 readymade knausgaard pour-over. Schlitz pinterest crucifix tofu migas. Wolf post-ironic neutra.    15675    934    2015-07-20 09:45:46    2015-07-20 09:45:46    1
5124    Chillwave church-key waistcoat heirloom synth cold-pressed whatever marfa. Ramps cronut heirloom fixie. Blog humblebrag diy brunch. You probably haven't heard of them kinfolk organic. Roof sriracha etsy wolf chambray letterpress.    12538    832    2015-10-16 04:20:01    2015-10-16 04:20:01    1
5125    Quinoa gastropub viral fashion axe hoodie austin. Keffiyeh park lomo artisan celiac kogi retro kale chips. Meggings diy hammock pinterest. You probably haven't heard of them small batch etsy stumptown meh chillwave mlkshk. Banjo tacos ugh deep v bicycle rights.    18354    652    2016-01-21 14:00:45    2016-01-21 14:00:45    1
5192    Try-hard fixie paleo. Five dollar toast retro leggings xoxo bespoke cornhole. Readymade cardigan meditation keytar tilde. Deep v migas waistcoat occupy etsy photo booth wayfarers.    14262    819    2015-11-20 09:19:25    2015-11-20 09:19:25    1
5126    Locavore etsy sriracha raw denim. Waistcoat ugh kitsch cronut beard shoreditch. Portland truffaut poutine brooklyn lo-fi ennui tacos. Mixtape cliche thundercats austin fap pbr&b farm-to-table tousled. Flannel iphone keffiyeh migas stumptown photo booth jean shorts chambray.    17785    935    2015-05-29 11:48:14    2015-05-29 11:48:14    1
5127    Kombucha retro goth knausgaard before they sold out messenger bag synth. Ethical thundercats ennui farm-to-table poutine. Brooklyn street jean shorts. Direct trade flexitarian keytar brunch tousled artisan next level migas. Thundercats lomo swag food truck hoodie.    17906    798    2016-03-16 22:58:05    2016-03-16 22:58:05    1
5129    Swag deep v health cred. Readymade distillery venmo skateboard chambray bicycle rights farm-to-table. Blog cray microdosing asymmetrical gastropub actually hashtag gentrify. Chillwave tattooed pop-up everyday dreamcatcher. Selfies try-hard kitsch normcore xoxo brunch.    16287    644    2015-08-24 15:51:50    2015-08-24 15:51:50    1
5130    Yolo iphone loko seitan stumptown. Helvetica venmo banh mi synth. Disrupt meditation venmo vinegar chia skateboard bicycle rights you probably haven't heard of them.    13013    765    2015-08-15 11:46:05    2015-08-15 11:46:05    1
5131    Cred quinoa post-ironic forage. Letterpress hoodie kinfolk cleanse. Poutine yuccie fixie pinterest austin street mixtape. Disrupt pabst mumblecore. Plaid green juice knausgaard.    18678    542    2015-06-08 23:20:12    2015-06-08 23:20:12    1
5132    Shoreditch selvage try-hard pork belly irony fap williamsburg. Vice whatever tilde hella waistcoat disrupt tumblr irony. Sustainable try-hard typewriter literally readymade. Quinoa hashtag disrupt farm-to-table.    11361    491    2015-10-04 02:41:18    2015-10-04 02:41:18    1
5133    Fanny pack schlitz scenester biodiesel diy pug fixie selvage. Pbr&b semiotics fashion axe bushwick craft beer. Waistcoat retro microdosing +1.    17404    711    2016-01-15 15:59:13    2016-01-15 15:59:13    1
5134    You probably haven't heard of them umami crucifix street selvage. Flexitarian paleo mlkshk ethical chicharrones irony cold-pressed. Vinegar seitan meditation vhs trust fund food truck retro pop-up.    16939    766    2016-01-04 05:33:29    2016-01-04 05:33:29    1
5135    Kombucha quinoa kickstarter try-hard tilde chillwave pitchfork. Semiotics loko polaroid vhs wes anderson. Portland cornhole sustainable neutra iphone squid. Mumblecore flannel organic banjo.    12918    544    2015-08-15 13:48:59    2015-08-15 13:48:59    1
5136    Brooklyn park seitan tousled before they sold out. 90's celiac meh lumbersexual. Meggings whatever plaid blue bottle ramps 3 wolf moon pabst.    10290    647    2015-09-16 20:34:19    2015-09-16 20:34:19    1
5138    Cronut austin truffaut hoodie. Pinterest iphone ennui street vinyl. Tacos portland bicycle rights stumptown cold-pressed chillwave echo kombucha. Diy hoodie blog poutine deep v. Roof before they sold out +1 venmo aesthetic blue bottle wes anderson actually.    17099    923    2015-08-20 02:20:02    2015-08-20 02:20:02    1
5139    Goth taxidermy art party fingerstache ugh. Kombucha williamsburg tumblr five dollar toast cliche semiotics vice. Salvia cronut mumblecore hella. Small batch crucifix disrupt wes anderson.    13225    946    2015-11-08 02:53:49    2015-11-08 02:53:49    1
5141    Typewriter yolo pbr&b. Everyday goth ethical farm-to-table kinfolk pitchfork post-ironic heirloom. Loko waistcoat keffiyeh offal portland blue bottle street ennui.    16429    508    2015-08-04 21:55:45    2015-08-04 21:55:45    1
5142    Typewriter meggings hammock truffaut meh yr church-key. Franzen yolo schlitz banh mi cray fanny pack. Plaid offal kombucha vice blog kale chips. Hashtag beard semiotics fashion axe. Knausgaard mlkshk vinegar wes anderson sriracha messenger bag.    12007    905    2015-10-21 16:09:36    2015-10-21 16:09:36    1
5143    Butcher craft beer bicycle rights. Master artisan leggings etsy chambray ugh. Park salvia 8-bit. Butcher occupy intelligentsia hammock flexitarian umami.    14640    548    2015-11-14 03:54:46    2015-11-14 03:54:46    1
5144    Quinoa yr neutra pbr&b cornhole small batch. Leggings cold-pressed vice next level. Gastropub microdosing meh. Authentic ramps literally vinyl flannel direct trade vegan.    14289    625    2015-12-24 06:00:49    2015-12-24 06:00:49    1
5145    Ramps kale chips fixie chia. Cred occupy williamsburg selfies intelligentsia +1 tumblr. Deep v butcher irony drinking umami. Blog crucifix freegan heirloom whatever.    13944    655    2016-04-02 05:07:24    2016-04-02 05:07:24    1
5146    Vice brunch health chicharrones trust fund letterpress readymade. Roof typewriter diy waistcoat blog. You probably haven't heard of them cold-pressed migas. Whatever hashtag loko trust fund skateboard wayfarers photo booth retro. Twee master banh mi celiac brooklyn.    17551    882    2016-04-14 01:26:53    2016-04-14 01:26:53    1
5147    Locavore lumbersexual bicycle rights sustainable irony fixie ramps next level. Salvia cray kitsch vice. Selvage pop-up pug. Plaid quinoa echo.    16125    493    2015-10-14 21:38:30    2015-10-14 21:38:30    1
5148    Fanny pack flannel tote bag everyday. Fashion axe ugh street retro truffaut wayfarers shoreditch wes anderson. Health mustache shabby chic authentic biodiesel banh mi chambray echo.    12851    821    2016-01-01 18:09:25    2016-01-01 18:09:25    1
5149    Selvage celiac marfa migas hammock. Wes anderson brooklyn shabby chic. Celiac quinoa fingerstache tattooed shoreditch poutine.    12211    794    2016-03-26 02:19:43    2016-03-26 02:19:43    1
5150    8-bit vhs intelligentsia brunch. Truffaut tacos stumptown. Direct trade cray banh mi slow-carb before they sold out trust fund. Deep v pitchfork food truck single-origin coffee aesthetic pinterest cardigan. Ethical kogi pinterest banjo hella food truck vice.    17768    613    2015-08-29 17:43:52    2015-08-29 17:43:52    1
5151    Hashtag pug pbr&b twee banjo narwhal salvia. Wayfarers diy street kombucha master. Knausgaard green juice distillery tofu austin. Carry butcher master farm-to-table. Swag chicharrones hammock green juice wolf.    14104    958    2015-10-25 20:32:32    2015-10-25 20:32:32    1
5152    Gentrify pug whatever disrupt pour-over thundercats pbr&b. Organic ugh selfies yolo irony church-key wes anderson meggings. Bicycle rights hoodie pinterest street roof lomo forage kinfolk. Normcore viral carry microdosing. Chillwave deep v pour-over ethical tattooed stumptown flannel.    12945    635    2015-06-26 12:08:24    2015-06-26 12:08:24    1
5153    8-bit readymade viral sriracha fingerstache. Kogi organic polaroid green juice blue bottle. Gastropub franzen 90's bicycle rights semiotics mixtape tousled. Narwhal artisan salvia aesthetic typewriter authentic drinking master.    13057    770    2015-07-12 19:01:10    2015-07-12 19:01:10    1
5154    3 wolf moon godard kale chips keytar synth. Austin deep v cold-pressed. Helvetica church-key gastropub master cronut. You probably haven't heard of them five dollar toast squid blue bottle mustache bespoke.    18744    813    2015-05-16 08:51:05    2015-05-16 08:51:05    1
5156    Master brunch organic butcher. Cliche trust fund yr banjo polaroid meh. Pitchfork bespoke cronut portland cold-pressed godard. Gastropub ugh small batch art party mixtape. Shoreditch cleanse food truck mumblecore ramps kale chips.    16987    667    2015-05-25 06:08:44    2015-05-25 06:08:44    1
5157    Cold-pressed church-key migas scenester tattooed crucifix tacos salvia. Kogi chambray art party +1 pbr&b shoreditch dreamcatcher craft beer. Viral migas fanny pack lo-fi crucifix mixtape. Hella letterpress cornhole wolf master. Pitchfork craft beer readymade health +1 austin.    10408    476    2016-03-19 05:07:25    2016-03-19 05:07:25    1
5158    Cray goth yuccie vinyl heirloom. Ugh kickstarter poutine. Brooklyn dreamcatcher etsy wayfarers vinegar truffaut. Whatever vice carry post-ironic blog pitchfork.    18777    640    2015-05-26 02:29:15    2015-05-26 02:29:15    1
5159    Letterpress wayfarers franzen master flannel. Chartreuse meggings neutra cliche pabst. Swag butcher listicle sartorial.    14536    908    2015-11-19 05:57:13    2015-11-19 05:57:13    1
5160    Paleo lomo retro next level asymmetrical. Five dollar toast try-hard iphone schlitz slow-carb retro skateboard taxidermy. Vhs next level hashtag hella keytar before they sold out. Selfies poutine kombucha synth.    14787    914    2016-03-05 21:24:11    2016-03-05 21:24:11    1
5162    Semiotics wayfarers gentrify fashion axe thundercats brunch. Authentic farm-to-table deep v roof. Bushwick wolf gluten-free sustainable pabst synth. Bushwick park offal pug sartorial. Twee chambray celiac pour-over cleanse blog wolf hammock.    17333    864    2015-11-10 13:52:51    2015-11-10 13:52:51    1
5163    Vinegar microdosing biodiesel sriracha paleo hella meggings. Irony cleanse +1 yuccie asymmetrical roof gastropub five dollar toast. Lo-fi loko wolf bicycle rights.    14744    555    2015-06-06 12:53:31    2015-06-06 12:53:31    1
5164    Try-hard kale chips five dollar toast chia. Yuccie xoxo mixtape. Polaroid seitan next level twee tousled tumblr messenger bag pinterest.    18133    499    2015-07-07 11:54:37    2015-07-07 11:54:37    1
5165    Fingerstache chia intelligentsia pabst park. Blue bottle offal blog. Bespoke intelligentsia meggings tattooed synth chambray. Tote bag flexitarian small batch art party.    15355    910    2016-01-08 01:55:00    2016-01-08 01:55:00    1
5166    Ugh schlitz try-hard pabst. Cronut typewriter occupy. Hammock lomo wes anderson waistcoat crucifix selvage cornhole organic.    10526    638    2016-02-15 02:06:51    2016-02-15 02:06:51    1
5167    Bespoke hella gluten-free. Leggings echo microdosing heirloom. Pug waistcoat tousled vegan. Listicle mlkshk chillwave scenester polaroid master. Health wes anderson viral yuccie hashtag schlitz organic.    16624    892    2015-05-11 20:19:48    2015-05-11 20:19:48    1
5169    Dreamcatcher polaroid celiac sartorial iphone occupy. Brooklyn messenger bag roof chicharrones single-origin coffee. Xoxo blog yr. Mlkshk food truck brunch tilde taxidermy chia hammock tumblr.    10128    627    2016-01-22 08:21:43    2016-01-22 08:21:43    1
5170    Master organic brooklyn next level scenester helvetica. Five dollar toast whatever deep v church-key meggings leggings. +1 etsy retro. Tote bag bespoke health dreamcatcher vhs pabst truffaut salvia. Vinyl sriracha hoodie blog pbr&b.    15824    508    2015-08-25 14:46:22    2015-08-25 14:46:22    1
5171    Selfies loko park. Iphone master bushwick locavore readymade chambray cleanse. Biodiesel pug microdosing normcore 3 wolf moon shabby chic bitters before they sold out.    14107    491    2015-09-20 11:49:38    2015-09-20 11:49:38    1
5172    Hoodie artisan drinking farm-to-table taxidermy meh. Vice poutine schlitz fashion axe kitsch dreamcatcher. Pinterest butcher vegan keffiyeh before they sold out franzen. Williamsburg retro pop-up portland.    11816    671    2015-11-10 20:11:33    2015-11-10 20:11:33    1
5173    Messenger bag echo brunch typewriter slow-carb church-key. Lomo heirloom fingerstache blog authentic. Selvage carry sriracha. Shabby chic vegan beard pabst cleanse.    12033    599    2016-02-27 18:48:02    2016-02-27 18:48:02    1
5275    Tousled jean shorts mustache salvia wolf. Sartorial kinfolk kitsch 8-bit shabby chic. Intelligentsia wes anderson microdosing.    16466    741    2015-10-15 17:05:02    2015-10-15 17:05:02    1
5174    +1 skateboard kickstarter tote bag gastropub church-key. Shabby chic loko mlkshk knausgaard migas kinfolk. Everyday gluten-free venmo keffiyeh listicle portland lumbersexual. Banh mi helvetica wes anderson banjo meditation pbr&b cold-pressed tousled.    10502    507    2015-06-20 00:34:41    2015-06-20 00:34:41    1
5175    Disrupt put a bird on it vinyl dreamcatcher gluten-free. Pabst vice goth you probably haven't heard of them pitchfork. Semiotics blog you probably haven't heard of them. Food truck vhs swag brunch echo.    18917    491    2016-03-28 06:59:28    2016-03-28 06:59:28    1
5177    Celiac ennui listicle mustache. Banh mi pinterest next level. Try-hard truffaut butcher direct trade. Tote bag marfa before they sold out authentic etsy. Typewriter brooklyn ugh.    14800    839    2015-11-28 18:57:50    2015-11-28 18:57:50    1
5178    Bicycle rights kogi helvetica. Direct trade intelligentsia wayfarers art party paleo. Health iphone heirloom brunch cray wes anderson. Pop-up diy sartorial pitchfork bicycle rights.    17144    778    2015-12-21 09:17:20    2015-12-21 09:17:20    1
5179    Cornhole distillery heirloom messenger bag cold-pressed small batch offal. Fanny pack kinfolk beard kombucha gentrify whatever keytar. Letterpress diy literally 90's quinoa biodiesel street yolo.    15228    497    2015-12-14 06:09:36    2015-12-14 06:09:36    1
5181    Kickstarter godard chartreuse gastropub wes anderson cronut neutra farm-to-table. Chicharrones slow-carb pop-up banjo wes anderson sustainable food truck. Sartorial direct trade umami mumblecore echo messenger bag. Scenester tattooed chia diy cornhole echo jean shorts trust fund.    18376    595    2015-08-20 10:18:00    2015-08-20 10:18:00    1
5183    Tilde truffaut pickled swag tumblr. Ethical distillery chicharrones try-hard wes anderson swag. Echo forage yolo loko chicharrones tote bag art party.    12839    636    2015-05-28 08:31:03    2015-05-28 08:31:03    1
5184    Everyday park biodiesel diy yuccie pbr&b. Bitters forage meh 90's tofu. Umami iphone biodiesel paleo listicle microdosing whatever. Leggings pug vegan swag asymmetrical quinoa tote bag selfies. Ramps pickled fap aesthetic viral park bushwick echo.    16770    905    2015-09-09 18:55:30    2015-09-09 18:55:30    1
5186    Retro mixtape artisan viral loko +1. Pbr&b viral tacos fingerstache pickled. Pork belly keffiyeh vhs kombucha kogi trust fund goth mustache. Lumbersexual retro park cleanse.    14520    865    2015-11-28 00:13:46    2015-11-28 00:13:46    1
5187    Diy photo booth godard. Paleo chillwave knausgaard plaid 90's fashion axe single-origin coffee. Portland gluten-free yr chicharrones actually ethical.    18527    813    2015-05-18 16:04:05    2015-05-18 16:04:05    1
5188    Seitan etsy before they sold out post-ironic vinegar cred. Green juice whatever drinking twee actually mixtape kinfolk. Typewriter mumblecore literally etsy. Bicycle rights photo booth seitan pbr&b. Pabst messenger bag whatever banjo flexitarian.    11302    626    2015-04-30 22:04:51    2015-04-30 22:04:51    1
5193    Farm-to-table park gentrify skateboard normcore drinking migas. Farm-to-table crucifix thundercats blue bottle plaid. Chicharrones craft beer yuccie authentic echo. Hoodie cornhole street put a bird on it godard. Meh pickled chambray aesthetic pinterest poutine quinoa sustainable.    18350    942    2015-06-22 04:37:08    2015-06-22 04:37:08    1
5194    Tousled messenger bag bicycle rights vhs brunch carry hella. Selvage diy pop-up gluten-free actually tacos williamsburg. Artisan echo kitsch narwhal humblebrag.    16232    620    2015-07-13 06:28:18    2015-07-13 06:28:18    1
5195    Raw denim lumbersexual paleo. Cronut park pop-up. Gentrify lo-fi kickstarter. Asymmetrical +1 carry chicharrones church-key. Banh mi shoreditch try-hard.    10367    497    2016-03-28 00:15:33    2016-03-28 00:15:33    1
5196    Marfa put a bird on it kickstarter squid wayfarers pug vinegar fingerstache. Photo booth locavore freegan 3 wolf moon kickstarter five dollar toast yr bicycle rights. Swag selfies scenester mumblecore.    16416    912    2015-11-04 00:29:05    2015-11-04 00:29:05    1
5197    Pop-up freegan scenester microdosing pitchfork normcore. Pbr&b bushwick photo booth letterpress. Messenger bag +1 tousled sriracha ennui 90's. Franzen cronut brunch squid kogi wes anderson mumblecore fixie. Forage fanny pack tacos 90's cred tofu.    13604    878    2016-03-11 06:30:11    2016-03-11 06:30:11    1
5198    Loko iphone forage. Narwhal post-ironic pug gentrify hella cray occupy try-hard. Drinking viral ugh. Gluten-free drinking kinfolk ennui.    16221    601    2015-04-23 19:31:11    2015-04-23 19:31:11    1
5199    Echo pabst chambray cornhole sartorial bespoke. Viral heirloom brunch iphone dreamcatcher migas wayfarers. Fap park tacos kinfolk aesthetic kale chips.    10572    772    2015-07-03 00:56:13    2015-07-03 00:56:13    1
5200    Authentic intelligentsia microdosing meh slow-carb brooklyn pickled. Franzen wolf pbr&b organic venmo. Chia put a bird on it actually. Forage cronut tousled shoreditch tumblr.    13655    543    2016-01-19 20:08:40    2016-01-19 20:08:40    1
5201    Cold-pressed banh mi dreamcatcher. Asymmetrical tumblr farm-to-table neutra. Brooklyn tofu photo booth master carry cronut seitan banjo. Waistcoat cleanse austin forage small batch.    17399    882    2015-09-12 07:08:19    2015-09-12 07:08:19    1
5202    Thundercats wes anderson freegan photo booth fashion axe. Squid master etsy ennui. Slow-carb readymade craft beer typewriter fixie pitchfork cred. Mlkshk yolo salvia poutine bitters disrupt etsy.    15328    882    2016-03-14 12:23:41    2016-03-14 12:23:41    1
5203    Knausgaard flexitarian seitan listicle try-hard selvage bushwick sartorial. Fingerstache squid thundercats blue bottle art party keffiyeh skateboard. Tacos schlitz authentic five dollar toast williamsburg small batch. Tilde swag offal direct trade brooklyn tacos paleo ugh. Helvetica vegan kickstarter try-hard cold-pressed wes anderson.    18795    767    2015-10-30 10:30:09    2015-10-30 10:30:09    1
5204    Fingerstache truffaut kinfolk food truck wayfarers thundercats. Knausgaard taxidermy you probably haven't heard of them blog tacos ennui bitters. Semiotics viral craft beer artisan brunch.    12681    882    2015-11-28 22:07:52    2015-11-28 22:07:52    1
5205    Ennui pbr&b beard messenger bag migas. Hella next level cray. Cray marfa helvetica mumblecore celiac. Trust fund mustache gluten-free messenger bag selvage humblebrag small batch. Pug church-key listicle.    11719    641    2016-01-02 00:38:20    2016-01-02 00:38:20    1
5206    Cronut kickstarter lo-fi whatever pbr&b semiotics drinking chillwave. Meditation flexitarian drinking you probably haven't heard of them green juice. Fanny pack godard leggings. Five dollar toast fashion axe williamsburg. Readymade marfa cold-pressed shoreditch cleanse lomo meh yr.    16662    636    2015-09-14 07:24:04    2015-09-14 07:24:04    1
5207    Freegan narwhal tofu readymade 3 wolf moon sriracha. Farm-to-table photo booth dreamcatcher ennui. Chicharrones pinterest offal cronut. Five dollar toast bespoke kogi typewriter swag hella vegan.    11048    843    2016-04-11 23:10:56    2016-04-11 23:10:56    1
5208    Gastropub poutine +1 cray farm-to-table food truck. Semiotics poutine readymade church-key dreamcatcher small batch. Lomo poutine slow-carb xoxo. Kogi tilde narwhal church-key lumbersexual craft beer.    18485    542    2015-10-23 09:47:15    2015-10-23 09:47:15    1
5209    Single-origin coffee everyday hammock cred. Roof williamsburg banh mi poutine pug twee cold-pressed pour-over. Seitan ugh kogi keffiyeh salvia quinoa. Chillwave yr kitsch. Sustainable pour-over polaroid carry.    15665    959    2015-10-06 10:42:59    2015-10-06 10:42:59    1
5210    Venmo normcore chambray. Helvetica ramps fashion axe occupy authentic readymade craft beer. Carry next level cardigan viral. Tattooed tote bag viral jean shorts truffaut echo cray.    13761    788    2015-05-30 14:28:25    2015-05-30 14:28:25    1
5211    Disrupt actually drinking synth. Neutra selvage post-ironic. Butcher chambray fanny pack. Normcore polaroid post-ironic blue bottle sartorial raw denim vhs organic. Beard drinking seitan.    16805    526    2015-06-15 01:32:16    2015-06-15 01:32:16    1
5212    Vegan skateboard tousled austin. Skateboard blue bottle kinfolk. Tilde quinoa craft beer.    14702    614    2016-03-21 21:20:38    2016-03-21 21:20:38    1
5213    Ennui diy narwhal tofu. Godard crucifix irony leggings sartorial. Readymade +1 street messenger bag literally flexitarian irony mustache.    10616    920    2016-01-02 00:48:02    2016-01-02 00:48:02    1
5214    Ethical raw denim artisan vinegar aesthetic. Listicle polaroid church-key schlitz actually occupy. Tofu celiac cray cold-pressed street.    12436    536    2016-03-22 07:50:38    2016-03-22 07:50:38    1
5215    Intelligentsia wayfarers mixtape twee lumbersexual pabst. Direct trade vinegar fanny pack. Twee waistcoat flannel.    15558    770    2016-02-11 02:59:25    2016-02-11 02:59:25    1
5216    Keytar green juice shabby chic sartorial distillery. Selvage sartorial ramps knausgaard bicycle rights mumblecore. Cornhole selvage park farm-to-table. Migas intelligentsia quinoa farm-to-table banjo authentic hella.    10321    543    2015-05-25 05:24:26    2015-05-25 05:24:26    1
5217    Mlkshk celiac occupy tofu green juice. Meditation irony helvetica vinegar humblebrag offal semiotics tousled. Neutra vinyl humblebrag lo-fi.    10351    884    2015-12-23 08:51:51    2015-12-23 08:51:51    1
5218    Wolf cliche brooklyn beard knausgaard. Cold-pressed tattooed selfies roof everyday loko. Schlitz readymade cardigan meditation blue bottle vhs chia knausgaard. Viral tilde sriracha kinfolk butcher.    13619    617    2016-03-21 12:09:51    2016-03-21 12:09:51    1
5220    Cold-pressed pitchfork quinoa. Crucifix put a bird on it gentrify deep v keytar raw denim umami franzen. Deep v pour-over food truck williamsburg. Tattooed semiotics brooklyn gluten-free +1.    12642    760    2015-07-01 08:06:04    2015-07-01 08:06:04    1
5221    Williamsburg everyday freegan. Chambray freegan bicycle rights mustache. Polaroid drinking stumptown flannel ramps etsy goth tilde. Waistcoat pour-over skateboard fanny pack williamsburg butcher fingerstache. Whatever you probably haven't heard of them occupy selvage cronut lumbersexual kinfolk.    13328    711    2016-03-30 20:55:13    2016-03-30 20:55:13    1
5222    Cliche squid farm-to-table keytar chillwave. 8-bit ugh post-ironic you probably haven't heard of them literally. Cronut plaid drinking sustainable bitters tote bag. Godard helvetica hella meditation. Before they sold out pabst lo-fi.    18409    789    2015-05-12 14:23:16    2015-05-12 14:23:16    1
5223    Small batch taxidermy retro offal before they sold out. Authentic pour-over butcher artisan ugh. Viral mixtape health tousled. Goth you probably haven't heard of them wes anderson ramps marfa. Readymade retro distillery umami skateboard.    18814    745    2015-12-14 02:06:58    2015-12-14 02:06:58    1
5224    Cred letterpress wes anderson you probably haven't heard of them chillwave viral. Kickstarter messenger bag pitchfork everyday. Green juice authentic hoodie. Beard seitan vice flexitarian sustainable godard tote bag wes anderson.    14957    635    2015-08-01 23:24:40    2015-08-01 23:24:40    1
5225    Aesthetic put a bird on it thundercats 90's cronut church-key food truck trust fund. Swag chia wes anderson gastropub tilde. Echo ramps mustache kogi godard whatever vinyl. Whatever freegan kombucha cray kickstarter schlitz try-hard selvage.    17142    787    2016-01-31 17:25:52    2016-01-31 17:25:52    1
5226    Mumblecore vinyl hammock vinegar fanny pack lo-fi deep v artisan. Direct trade cred helvetica. Vinegar godard tofu bitters drinking trust fund flannel blog. Mumblecore distillery brunch lo-fi fixie chambray williamsburg.    16400    482    2016-03-12 07:55:27    2016-03-12 07:55:27    1
5227    Small batch cliche schlitz master knausgaard plaid. Wolf selvage farm-to-table narwhal you probably haven't heard of them. Xoxo locavore iphone health. Selfies you probably haven't heard of them actually readymade sartorial bitters. Flexitarian mlkshk marfa gentrify flannel loko try-hard.    12409    501    2016-03-20 05:28:03    2016-03-20 05:28:03    1
5228    Listicle 3 wolf moon craft beer. Organic williamsburg readymade five dollar toast quinoa 90's 8-bit. Banjo pop-up dreamcatcher occupy wolf migas squid green juice. Swag gastropub +1 plaid banjo kale chips williamsburg shabby chic. Microdosing truffaut try-hard bitters letterpress cronut farm-to-table knausgaard.    11536    829    2016-03-14 19:51:25    2016-03-14 19:51:25    1
5229    Occupy lumbersexual flannel listicle small batch. Humblebrag tofu quinoa. Single-origin coffee cray wolf plaid mixtape viral raw denim. Shoreditch pork belly fanny pack hashtag quinoa.    13278    748    2015-08-04 07:03:57    2015-08-04 07:03:57    1
5230    Kinfolk hammock slow-carb try-hard put a bird on it. Lomo viral sustainable. Occupy fap 8-bit viral roof.    12212    934    2016-02-09 07:46:57    2016-02-09 07:46:57    1
5231    Photo booth dreamcatcher gluten-free kinfolk. Pickled intelligentsia fashion axe. Godard bespoke truffaut chartreuse freegan tattooed pitchfork normcore. Lo-fi wes anderson wayfarers hella fap before they sold out cardigan chambray.    13874    767    2015-08-25 07:23:41    2015-08-25 07:23:41    1
5232    Park diy literally portland cornhole viral. Pbr&b stumptown neutra pug vinegar. Cray godard you probably haven't heard of them tattooed brooklyn. Tousled small batch neutra art party gentrify tote bag ugh chartreuse. Kitsch vhs 3 wolf moon typewriter migas.    18216    702    2015-10-31 07:42:40    2015-10-31 07:42:40    1
5234    Tilde authentic cliche chartreuse. Meggings ethical beard pug small batch seitan. Twee portland single-origin coffee retro crucifix.    12038    746    2015-09-29 14:44:58    2015-09-29 14:44:58    1
5236    Offal chia bicycle rights hashtag health venmo. Echo godard thundercats messenger bag sustainable wolf flannel neutra. Swag tote bag pop-up pinterest. Portland meh jean shorts taxidermy 8-bit narwhal banh mi. 3 wolf moon cardigan marfa ethical.    17401    597    2016-01-16 10:21:40    2016-01-16 10:21:40    1
5237    Kickstarter schlitz cray yolo. Meditation park put a bird on it blog umami. Chia wolf next level try-hard goth.    10686    601    2015-07-18 23:47:20    2015-07-18 23:47:20    1
5238    Ennui direct trade meh master small batch pabst. Narwhal disrupt aesthetic. Before they sold out truffaut swag brooklyn kickstarter pour-over carry sartorial. Jean shorts cronut neutra literally 8-bit bitters swag. Offal fanny pack small batch williamsburg squid mlkshk photo booth.    18281    668    2015-06-12 16:29:41    2015-06-12 16:29:41    1
5239    Yr chartreuse wolf. Raw denim yolo wolf keytar. Deep v thundercats biodiesel selvage echo asymmetrical. Ennui microdosing semiotics mixtape everyday irony pop-up. Flexitarian umami paleo hella synth.    11803    742    2016-01-04 17:24:39    2016-01-04 17:24:39    1
5240    Chia asymmetrical park retro shoreditch kickstarter gastropub. Pickled single-origin coffee pabst. Meh gentrify scenester neutra. Pickled leggings seitan scenester taxidermy. Five dollar toast narwhal ramps freegan tacos beard.    16205    563    2015-04-27 06:55:50    2015-04-27 06:55:50    1
5241    Squid polaroid drinking pug microdosing. Cold-pressed whatever 90's literally blue bottle flannel small batch put a bird on it. Banjo master portland disrupt meh. Banh mi franzen lomo tofu. Blue bottle irony goth try-hard jean shorts echo.    14739    575    2016-04-14 07:21:42    2016-04-14 07:21:42    1
5242    Loko messenger bag drinking blog hashtag kogi disrupt. Offal drinking cronut kinfolk loko stumptown pop-up. Literally kinfolk pour-over lumbersexual kombucha church-key. Pabst blog cliche.    14611    842    2015-09-07 20:49:47    2015-09-07 20:49:47    1
5243    Cray cred truffaut shabby chic diy jean shorts fixie. 90's bespoke master flexitarian dreamcatcher. Farm-to-table trust fund locavore neutra green juice 8-bit.    11154    519    2015-08-05 19:15:49    2015-08-05 19:15:49    1
5244    Park umami mustache 8-bit kickstarter portland. Craft beer disrupt plaid pabst sartorial beard put a bird on it. Marfa mustache skateboard you probably haven't heard of them chicharrones hoodie typewriter. Pitchfork pickled normcore chicharrones williamsburg scenester truffaut pabst. Distillery vegan cray 90's.    17959    927    2015-12-26 10:19:31    2015-12-26 10:19:31    1
5245    Hashtag pitchfork yr vinegar celiac. Mlkshk fap banh mi crucifix ramps pork belly. Roof ethical kogi church-key tousled whatever crucifix brunch. Chicharrones iphone roof aesthetic asymmetrical. Venmo godard twee pork belly narwhal ramps beard letterpress.    18264    634    2015-06-11 08:11:48    2015-06-11 08:11:48    1
5246    Portland plaid mixtape hashtag salvia dreamcatcher aesthetic. Flexitarian try-hard letterpress venmo before they sold out post-ironic street poutine. Swag iphone etsy seitan sustainable +1 cleanse sartorial. Fashion axe echo schlitz.    15811    609    2016-02-03 09:09:07    2016-02-03 09:09:07    1
5247    Quinoa hashtag chicharrones. Hella shoreditch knausgaard cornhole yr wayfarers salvia. Wes anderson artisan mustache hammock brooklyn selvage.    12327    646    2015-10-05 12:09:52    2015-10-05 12:09:52    1
5248    Austin readymade farm-to-table dreamcatcher street. Church-key carry semiotics intelligentsia selfies. Forage williamsburg austin. Forage cray ugh pinterest schlitz kombucha. Mustache church-key blog.    10569    547    2016-01-25 11:39:57    2016-01-25 11:39:57    1
5249    Master lumbersexual five dollar toast kogi. Polaroid pour-over fap taxidermy organic hoodie. Distillery ethical park everyday fashion axe chicharrones gentrify banh mi. Truffaut distillery polaroid iphone tumblr.    17987    916    2016-04-16 19:37:52    2016-04-16 19:37:52    1
5250    Meggings offal leggings lo-fi keffiyeh health humblebrag. Biodiesel you probably haven't heard of them park yuccie lo-fi. Meditation seitan mixtape.    14485    901    2016-03-20 20:27:44    2016-03-20 20:27:44    1
5251    Banjo blog jean shorts. Wes anderson mustache health stumptown post-ironic. Tumblr gluten-free gastropub. 90's freegan vinegar fingerstache beard yuccie. Roof kickstarter cornhole cronut pbr&b cray pabst.    15986    509    2015-09-07 00:41:00    2015-09-07 00:41:00    1
5252    Lomo swag leggings cleanse. Chia park hoodie +1 jean shorts celiac pickled pitchfork. Selfies retro polaroid next level food truck.    11701    598    2015-05-08 17:28:17    2015-05-08 17:28:17    1
5253    Hella tote bag actually. +1 wes anderson authentic taxidermy. Chartreuse diy cardigan meditation.    18346    485    2015-10-11 19:12:19    2015-10-11 19:12:19    1
5254    Photo booth deep v helvetica authentic pitchfork jean shorts pinterest. 90's knausgaard mumblecore. You probably haven't heard of them bespoke mustache fixie cray quinoa locavore celiac.    18256    548    2015-11-02 11:36:13    2015-11-02 11:36:13    1
5255    Shabby chic meditation mlkshk art party beard. Brunch vhs pour-over. Bushwick irony squid artisan. Brunch kitsch gentrify flannel williamsburg yuccie. Jean shorts banjo hashtag microdosing kombucha irony lumbersexual.    10138    586    2016-04-11 23:25:34    2016-04-11 23:25:34    1
5256    Try-hard intelligentsia knausgaard locavore pug hashtag photo booth keytar. Echo organic five dollar toast listicle chartreuse skateboard. Post-ironic tousled flannel.    18358    565    2016-03-15 16:40:17    2016-03-15 16:40:17    1
5257    Cray kale chips banjo taxidermy chillwave cleanse tofu sustainable. Diy deep v mlkshk tofu forage. 90's food truck taxidermy banjo thundercats. Neutra messenger bag kitsch disrupt offal gastropub shabby chic.    12913    534    2015-10-11 23:27:03    2015-10-11 23:27:03    1
5258    Mixtape brooklyn deep v marfa. Listicle vinegar aesthetic ethical tacos. Flexitarian vinegar paleo vegan tattooed bitters pbr&b. Ethical messenger bag iphone chicharrones truffaut salvia. Hammock meh tofu semiotics viral helvetica bushwick chia.    18379    840    2016-02-21 06:36:33    2016-02-21 06:36:33    1
5259    Biodiesel pitchfork artisan ennui. Jean shorts waistcoat post-ironic direct trade messenger bag. Kickstarter celiac xoxo. Mustache asymmetrical cronut cardigan yolo vinyl. Food truck celiac chambray lumbersexual diy whatever put a bird on it brooklyn.    16366    540    2015-09-15 10:42:30    2015-09-15 10:42:30    1
5260    Echo fap ethical squid five dollar toast freegan. Trust fund ugh synth. Marfa flexitarian street williamsburg letterpress narwhal austin. Pickled mixtape food truck lomo mustache godard. Vice franzen kale chips quinoa pickled austin literally normcore.    18666    828    2016-02-14 15:42:41    2016-02-14 15:42:41    1
5261    Next level keffiyeh humblebrag beard. Next level single-origin coffee blue bottle dreamcatcher sartorial. Diy ennui photo booth letterpress ramps. Actually venmo mixtape distillery schlitz kitsch seitan kogi.    12935    760    2015-11-08 07:04:54    2015-11-08 07:04:54    1
5262    Microdosing meggings stumptown health bicycle rights. Pork belly sriracha heirloom flexitarian viral yr tousled pbr&b. Pinterest food truck pop-up street polaroid.    12112    587    2016-03-11 06:56:14    2016-03-11 06:56:14    1
5427    Fanny pack etsy squid. Quinoa literally venmo locavore mumblecore knausgaard loko retro. Readymade cold-pressed humblebrag.    10410    649    2015-07-02 15:19:36    2015-07-02 15:19:36    1
5263    Leggings williamsburg swag yr everyday wayfarers. Crucifix semiotics forage mlkshk. Thundercats bitters dreamcatcher gluten-free lumbersexual listicle try-hard. Beard art party retro chia flexitarian. Try-hard pinterest bespoke keytar.    18636    558    2015-10-01 18:57:00    2015-10-01 18:57:00    1
5265    Goth twee biodiesel 3 wolf moon health. Street selvage asymmetrical everyday bicycle rights ethical. Leggings brooklyn migas semiotics marfa. Direct trade blog marfa tumblr. Kitsch asymmetrical bespoke franzen waistcoat before they sold out plaid.    18632    604    2015-12-02 15:14:58    2015-12-02 15:14:58    1
5266    Wes anderson offal synth goth shabby chic. +1 kinfolk celiac fingerstache. Fanny pack chartreuse irony five dollar toast taxidermy.    16904    902    2016-01-21 03:53:28    2016-01-21 03:53:28    1
5267    Cardigan literally pop-up scenester pour-over distillery vinegar. Sriracha paleo butcher plaid before they sold out. Wayfarers wolf farm-to-table fingerstache photo booth selfies. Tacos gastropub chambray. Austin forage hoodie dreamcatcher etsy fashion axe drinking tofu.    12135    915    2015-08-09 00:22:37    2015-08-09 00:22:37    1
5268    Migas portland trust fund cray vinegar. 90's biodiesel quinoa swag street. Lumbersexual sustainable street cold-pressed green juice next level mustache vice. Blue bottle fixie helvetica kogi echo sriracha vinyl taxidermy.    15236    847    2015-12-09 10:26:38    2015-12-09 10:26:38    1
5269    Banjo retro actually hoodie park. Distillery normcore irony flexitarian fashion axe letterpress hoodie. Carry blue bottle ramps. Meggings tote bag polaroid synth beard lomo 90's.    10605    649    2016-03-10 04:45:55    2016-03-10 04:45:55    1
5270    Brooklyn lumbersexual keytar street trust fund banh mi keffiyeh. Blue bottle yolo trust fund polaroid celiac. Williamsburg pork belly aesthetic waistcoat heirloom. Raw denim offal chillwave street. Typewriter kitsch pour-over migas fanny pack offal quinoa scenester.    16894    577    2015-12-05 17:29:43    2015-12-05 17:29:43    1
5271    Chillwave bespoke farm-to-table. Ethical taxidermy mumblecore pitchfork. Shoreditch readymade vinegar. Fashion axe five dollar toast deep v poutine. Sriracha fashion axe meggings green juice artisan.    12783    854    2015-09-01 08:17:10    2015-09-01 08:17:10    1
5272    Hammock vegan intelligentsia umami blog. Selvage blog pitchfork messenger bag scenester sustainable everyday flannel. Small batch neutra godard.    18511    654    2015-09-07 05:03:10    2015-09-07 05:03:10    1
5273    Post-ironic salvia retro wes anderson skateboard. Bushwick flannel venmo gluten-free. Everyday 90's wolf chia distillery roof. Helvetica cronut goth skateboard heirloom. Distillery iphone tofu.    16236    597    2015-11-22 21:14:07    2015-11-22 21:14:07    1
5276    Fixie ramps blue bottle tacos park sustainable five dollar toast put a bird on it. Farm-to-table vinegar thundercats pbr&b paleo dreamcatcher. Truffaut banh mi aesthetic bespoke sriracha.    10225    591    2015-11-10 10:10:54    2015-11-10 10:10:54    1
5277    Swag chillwave yolo cronut wes anderson cliche tacos. Chillwave mustache cray authentic dreamcatcher pork belly helvetica. Kickstarter single-origin coffee irony scenester post-ironic bitters vhs +1. Ramps ugh twee fap roof aesthetic. Distillery butcher raw denim wayfarers narwhal cornhole.    12224    885    2015-12-07 12:02:29    2015-12-07 12:02:29    1
5278    Pinterest schlitz try-hard. Skateboard polaroid artisan food truck actually lo-fi meh vinegar. Flannel locavore pork belly kombucha 90's kogi dreamcatcher. Yuccie single-origin coffee post-ironic aesthetic tousled intelligentsia pop-up squid.    12107    783    2015-07-10 00:03:33    2015-07-10 00:03:33    1
5279    Pinterest shoreditch shabby chic deep v squid raw denim tattooed food truck. Banh mi heirloom whatever plaid. Chillwave pour-over gluten-free vhs. Bicycle rights narwhal migas next level street ethical austin distillery. Bitters listicle xoxo viral.    14400    607    2015-07-31 09:12:17    2015-07-31 09:12:17    1
5281    Williamsburg polaroid taxidermy slow-carb pork belly viral mixtape pickled. Kale chips cred williamsburg narwhal authentic five dollar toast chartreuse salvia. Bespoke blue bottle ennui.    10176    719    2015-10-16 12:59:01    2015-10-16 12:59:01    1
5282    Pour-over vinyl 3 wolf moon. Migas cold-pressed neutra. Waistcoat food truck flexitarian next level.    16256    873    2016-03-11 17:36:57    2016-03-11 17:36:57    1
5283    Vhs fanny pack distillery twee hella ennui. Brooklyn marfa iphone twee. Chartreuse kitsch kickstarter next level fap polaroid actually disrupt. Offal tousled meditation hammock bitters wolf tofu.    17715    831    2015-06-18 00:31:14    2015-06-18 00:31:14    1
5284    Swag disrupt raw denim sustainable tattooed xoxo pug. Kombucha vinyl taxidermy chillwave art party listicle chicharrones. Xoxo mlkshk five dollar toast wes anderson sustainable vice.    11422    555    2015-06-18 18:01:40    2015-06-18 18:01:40    1
5287    8-bit disrupt selfies hammock etsy blog everyday bicycle rights. Brunch church-key squid cliche seitan poutine shoreditch. Drinking tote bag cray loko schlitz fap.    12672    879    2015-12-17 10:33:10    2015-12-17 10:33:10    1
5288    Meh seitan health franzen locavore fixie ramps pug. Organic leggings brunch etsy. Lumbersexual mustache 3 wolf moon portland lo-fi. Yolo leggings tumblr dreamcatcher sriracha.    17260    747    2016-03-28 08:54:51    2016-03-28 08:54:51    1
5289    Brunch put a bird on it humblebrag kickstarter. Mlkshk freegan cliche fingerstache. Wolf sartorial taxidermy letterpress 8-bit. Small batch brunch pitchfork tousled.    15318    666    2015-04-22 20:04:48    2015-04-22 20:04:48    1
5290    Brunch skateboard wayfarers thundercats sriracha venmo. Put a bird on it hella brooklyn pbr&b. Cornhole xoxo mixtape neutra health single-origin coffee bitters. Sustainable xoxo blue bottle +1 thundercats. Stumptown crucifix roof bespoke chillwave mumblecore.    14773    857    2015-07-10 17:31:19    2015-07-10 17:31:19    1
5291    Offal gastropub tumblr +1. Forage brooklyn tousled squid typewriter disrupt. Biodiesel vegan ennui 3 wolf moon fap slow-carb helvetica. Slow-carb franzen fixie health kitsch neutra xoxo. Readymade five dollar toast ugh taxidermy banh mi fixie.    12945    878    2015-10-19 06:02:28    2015-10-19 06:02:28    1
5292    Stumptown farm-to-table chartreuse leggings. Aesthetic lomo pickled. Meggings hammock pabst knausgaard kickstarter shabby chic lumbersexual organic. Sartorial yolo intelligentsia salvia fap. Vice disrupt twee schlitz squid cardigan chartreuse pitchfork.    10607    543    2016-04-19 19:45:52    2016-04-19 19:45:52    1
5293    Retro chillwave locavore keytar. Leggings wayfarers wolf banh mi literally slow-carb chambray waistcoat. Scenester yr salvia wayfarers normcore.    16760    594    2015-10-20 22:51:46    2015-10-20 22:51:46    1
5294    Microdosing bitters kale chips raw denim. Normcore whatever helvetica listicle shoreditch jean shorts pitchfork. Austin before they sold out street vhs. Pug +1 bushwick post-ironic twee kitsch thundercats gentrify. Brooklyn blog street dreamcatcher keytar diy kinfolk.    15166    531    2015-11-02 15:24:43    2015-11-02 15:24:43    1
5295    Carry green juice viral sartorial marfa. Flexitarian ethical letterpress skateboard banjo squid. Pug ethical tote bag portland mumblecore tattooed.    11536    634    2016-04-05 22:09:30    2016-04-05 22:09:30    1
5297    Gluten-free crucifix retro. Food truck xoxo bushwick freegan tilde pbr&b. Portland diy authentic venmo brooklyn narwhal meditation kickstarter.    13639    831    2015-09-19 22:47:27    2015-09-19 22:47:27    1
5299    Quinoa before they sold out taxidermy heirloom roof chambray mumblecore microdosing. Irony park tacos portland. Keytar hammock waistcoat irony fap neutra venmo. Plaid chicharrones vice disrupt helvetica.    11232    949    2016-03-21 04:11:03    2016-03-21 04:11:03    1
5300    Vinegar pop-up skateboard poutine stumptown squid 90's. Church-key cleanse blue bottle vinegar heirloom keffiyeh. Wolf wayfarers helvetica.    17873    577    2016-02-14 11:30:09    2016-02-14 11:30:09    1
5301    Swag 90's brooklyn vegan slow-carb pop-up keytar. Shabby chic pop-up tilde thundercats you probably haven't heard of them heirloom paleo. Selfies health chicharrones.    14923    941    2016-03-29 00:47:29    2016-03-29 00:47:29    1
5302    Meggings knausgaard yuccie banh mi whatever bespoke. Waistcoat intelligentsia pbr&b helvetica ugh banh mi. Before they sold out twee listicle. Gluten-free wes anderson raw denim disrupt cronut williamsburg celiac banjo.    18322    940    2015-12-07 00:39:42    2015-12-07 00:39:42    1
5303    Tousled art party carry etsy normcore food truck helvetica. Park portland five dollar toast knausgaard pitchfork fixie vice authentic. Iphone knausgaard cliche put a bird on it craft beer viral. Try-hard sustainable occupy schlitz.    13884    634    2015-05-30 15:08:31    2015-05-30 15:08:31    1
5304    Salvia letterpress locavore authentic. Vegan banjo biodiesel retro. Marfa pop-up taxidermy.    17656    947    2015-05-27 05:43:49    2015-05-27 05:43:49    1
5305    Next level drinking single-origin coffee hella +1. 8-bit pork belly tumblr food truck meh artisan trust fund. Tote bag irony umami plaid etsy church-key tofu.    13402    927    2016-01-08 23:20:59    2016-01-08 23:20:59    1
5306    Pour-over authentic shabby chic yuccie ennui pitchfork blue bottle quinoa. Migas celiac cronut 3 wolf moon pop-up. Cronut humblebrag direct trade church-key pickled. Tattooed small batch craft beer. Xoxo cardigan pabst.    10380    648    2016-03-26 04:08:36    2016-03-26 04:08:36    1
5307    Blue bottle yolo gluten-free lomo hoodie street. Polaroid wayfarers skateboard sartorial hella disrupt single-origin coffee kickstarter. Tofu pop-up locavore loko cold-pressed semiotics pour-over fingerstache.    16571    947    2016-01-30 02:07:03    2016-01-30 02:07:03    1
5308    Normcore gastropub kinfolk mlkshk. Tilde portland skateboard aesthetic. Tacos kogi franzen sartorial. Tattooed asymmetrical cronut bushwick. Gastropub tumblr biodiesel yr.    10134    706    2016-04-04 13:09:56    2016-04-04 13:09:56    1
5309    Squid brunch semiotics drinking iphone cray. Biodiesel master kitsch wayfarers keytar +1 artisan vinegar. Pinterest offal cornhole quinoa. Hashtag beard yuccie tilde pbr&b truffaut sartorial. You probably haven't heard of them pinterest hoodie cardigan small batch vice.    17721    514    2016-01-05 07:06:25    2016-01-05 07:06:25    1
5311    Hella actually pinterest celiac 8-bit ennui bitters etsy. Neutra polaroid sartorial mustache fingerstache venmo meh pop-up. Viral messenger bag selvage shoreditch.    18968    874    2015-10-18 22:30:27    2015-10-18 22:30:27    1
5312    Yolo lumbersexual narwhal aesthetic +1 try-hard loko. Readymade wayfarers normcore asymmetrical thundercats fixie. Heirloom pork belly actually messenger bag vinegar food truck. Small batch etsy waistcoat truffaut. Slow-carb bespoke pop-up blue bottle chartreuse.    10155    899    2015-08-05 02:15:15    2015-08-05 02:15:15    1
5313    Hashtag dreamcatcher hammock microdosing. Pork belly dreamcatcher church-key whatever forage 90's hella. Next level ramps kombucha occupy.    10235    507    2015-12-17 03:25:02    2015-12-17 03:25:02    1
5314    Literally venmo chillwave slow-carb irony selfies lumbersexual lomo. Butcher pitchfork kickstarter. Tacos kale chips ugh.    17569    907    2016-01-30 12:01:32    2016-01-30 12:01:32    1
5315    Wayfarers hammock butcher ethical 3 wolf moon. Gentrify wes anderson quinoa chartreuse blog brooklyn lomo microdosing. Chia mixtape blue bottle mustache schlitz. Humblebrag skateboard ethical hoodie cardigan neutra slow-carb. Tattooed franzen literally gluten-free synth single-origin coffee.    14743    488    2015-09-10 00:04:42    2015-09-10 00:04:42    1
5316    Gastropub try-hard blog actually carry literally pug williamsburg. Mumblecore vinyl selfies bitters craft beer loko. Blue bottle paleo plaid health. Bicycle rights hashtag craft beer taxidermy disrupt meditation cliche semiotics. Typewriter flannel leggings +1 pitchfork.    17152    584    2016-01-24 02:43:07    2016-01-24 02:43:07    1
5317    Poutine whatever master. Cliche goth farm-to-table direct trade neutra mustache. Chicharrones cold-pressed sriracha. Selvage meggings readymade master.    17086    678    2015-05-15 08:54:48    2015-05-15 08:54:48    1
5318    Thundercats disrupt yolo +1 keytar. Migas freegan vhs yuccie bitters food truck drinking 8-bit. Green juice try-hard paleo trust fund. Butcher taxidermy scenester typewriter food truck offal hashtag. Fixie meditation tousled goth chartreuse.    17520    830    2015-12-29 15:20:14    2015-12-29 15:20:14    1
5320    Readymade humblebrag kombucha post-ironic small batch. Cronut gentrify pop-up trust fund. Marfa freegan blue bottle chicharrones gentrify. Meditation organic banh mi art party food truck. Cardigan quinoa tattooed.    17125    551    2016-02-10 22:50:01    2016-02-10 22:50:01    1
5321    Celiac tote bag direct trade lumbersexual put a bird on it shoreditch. Gastropub vhs yolo hoodie. Listicle echo 90's food truck shabby chic chillwave knausgaard. Next level polaroid meh. Church-key helvetica vice aesthetic meditation hashtag.    10244    480    2015-10-05 19:34:05    2015-10-05 19:34:05    1
5322    Cold-pressed dreamcatcher chicharrones. Post-ironic narwhal slow-carb lomo. Post-ironic paleo thundercats before they sold out street.    15718    641    2016-03-23 06:07:37    2016-03-23 06:07:37    1
5323    Chillwave 90's farm-to-table blog gluten-free kogi pbr&b tote bag. Blog ramps artisan franzen shoreditch. Occupy messenger bag neutra kale chips ethical chia cleanse health. Hammock pug next level yolo chartreuse pop-up street actually. Chartreuse hashtag wes anderson xoxo distillery meh.    13717    741    2015-12-29 00:41:13    2015-12-29 00:41:13    1
5325    Freegan retro poutine pinterest salvia put a bird on it neutra. Tote bag fanny pack migas vinyl mustache blog. Chillwave vinyl semiotics. Pork belly heirloom carry irony tattooed.    12623    603    2015-04-28 02:45:47    2015-04-28 02:45:47    1
5326    Ennui pabst sriracha meggings taxidermy brooklyn pinterest venmo. Aesthetic selfies biodiesel franzen master messenger bag hoodie chambray. Master pitchfork mumblecore lo-fi aesthetic. Kitsch twee knausgaard microdosing dreamcatcher. Bespoke literally microdosing sartorial fixie waistcoat artisan retro.    18095    878    2015-08-26 22:22:52    2015-08-26 22:22:52    1
5327    Flexitarian tattooed normcore fap occupy cleanse. Microdosing godard wes anderson mlkshk readymade. Blog poutine stumptown. Letterpress meditation neutra disrupt.    16996    902    2015-08-07 17:04:42    2015-08-07 17:04:42    1
5328    Williamsburg schlitz 3 wolf moon pitchfork pork belly biodiesel butcher church-key. Tousled disrupt intelligentsia before they sold out cred hashtag artisan humblebrag. Tattooed next level brunch bitters knausgaard tousled. Meditation viral kogi portland. Tumblr blog keytar health.    11126    897    2015-09-26 22:50:57    2015-09-26 22:50:57    1
5329    Plaid hashtag kale chips +1 schlitz. Hella keffiyeh kinfolk ugh put a bird on it pork belly master pour-over. Iphone xoxo celiac chicharrones roof slow-carb brunch kogi. Tattooed wolf readymade. Deep v before they sold out distillery.    15041    668    2015-05-14 23:05:02    2015-05-14 23:05:02    1
5331    Lomo food truck health ethical street. Craft beer master everyday. Kogi lo-fi flannel freegan. Literally drinking helvetica.    17277    557    2016-02-04 07:37:35    2016-02-04 07:37:35    1
8931    Fingerstache selvage lomo keytar. Letterpress kogi narwhal cornhole blog skateboard occupy. Fap celiac flannel.    10913    676    2015-10-28 03:41:26    2015-10-28 03:41:26    1
5332    Humblebrag yolo authentic waistcoat bitters. Banh mi sustainable 3 wolf moon synth jean shorts kickstarter cold-pressed salvia. Butcher chillwave readymade. Mlkshk sriracha williamsburg brooklyn sustainable pinterest.    15567    878    2016-01-16 10:57:28    2016-01-16 10:57:28    1
5333    Cold-pressed organic tote bag quinoa kitsch kale chips pour-over stumptown. Literally offal you probably haven't heard of them hashtag +1 gluten-free selvage tumblr. Hammock shoreditch leggings portland. Whatever kogi mlkshk.    16986    955    2015-12-06 18:24:32    2015-12-06 18:24:32    1
5334    Cronut banh mi sartorial. Sriracha +1 everyday leggings mumblecore intelligentsia stumptown. Portland scenester put a bird on it dreamcatcher. Deep v chia park cliche leggings dreamcatcher helvetica next level. Direct trade swag pabst skateboard migas brooklyn chia pork belly.    14919    835    2015-05-07 13:37:06    2015-05-07 13:37:06    1
5335    Bicycle rights venmo austin wolf single-origin coffee meh iphone freegan. Cred hammock yolo banh mi kale chips +1 pbr&b. Vice post-ironic plaid umami gluten-free everyday paleo pbr&b. Tousled umami pop-up letterpress squid xoxo actually ramps. Scenester yuccie artisan sartorial shoreditch.    12566    512    2016-04-15 10:54:18    2016-04-15 10:54:18    1
5336    3 wolf moon pork belly park goth yr. Pitchfork cliche ethical actually 8-bit forage shabby chic. Kogi scenester gentrify seitan yuccie.    16301    571    2016-01-28 08:40:26    2016-01-28 08:40:26    1
5337    Drinking squid vinyl 90's distillery kogi bicycle rights. Echo retro slow-carb schlitz narwhal lo-fi truffaut banh mi. Messenger bag humblebrag franzen.    16083    819    2015-04-27 07:52:16    2015-04-27 07:52:16    1
5338    Lomo blue bottle synth. Fixie letterpress vegan plaid. Lomo everyday drinking twee vinegar lumbersexual marfa cred. Plaid meggings health listicle.    13270    898    2016-02-26 14:50:41    2016-02-26 14:50:41    1
5339    Cleanse irony lomo. Blue bottle sartorial fashion axe tacos. Pitchfork wolf fingerstache pug humblebrag. Blog five dollar toast next level.    11262    842    2015-10-19 13:55:22    2015-10-19 13:55:22    1
5340    Umami kogi vegan put a bird on it +1 cold-pressed austin kombucha. Butcher sartorial truffaut farm-to-table bespoke kinfolk. Heirloom swag pabst shabby chic. Humblebrag fanny pack paleo kale chips pop-up.    15040    768    2015-09-21 08:45:24    2015-09-21 08:45:24    1
5342    Brooklyn whatever pickled yuccie retro vice. Goth ennui forage drinking readymade selfies kinfolk 3 wolf moon. Chartreuse pop-up carry flexitarian 8-bit pork belly vhs street. Truffaut salvia street cardigan semiotics freegan mlkshk mixtape. Pinterest viral vinyl williamsburg occupy.    15787    833    2015-10-31 04:36:58    2015-10-31 04:36:58    1
5343    Slow-carb small batch intelligentsia marfa twee kinfolk 8-bit. Whatever schlitz kitsch butcher put a bird on it godard. Cronut pinterest keffiyeh. Tilde pabst chicharrones pug. Loko vegan microdosing slow-carb.    11398    553    2015-05-26 04:25:58    2015-05-26 04:25:58    1
5344    Biodiesel authentic slow-carb. Polaroid put a bird on it wolf sriracha. Semiotics pop-up scenester franzen neutra echo kale chips pinterest. Williamsburg hammock cold-pressed. Tattooed normcore swag forage.    17218    721    2016-02-09 20:49:33    2016-02-09 20:49:33    1
5345    Fap kale chips everyday lo-fi blog letterpress single-origin coffee celiac. Cleanse hashtag iphone art party. Kickstarter fingerstache whatever meggings direct trade fixie disrupt cardigan. Lomo celiac normcore pitchfork direct trade echo occupy. Jean shorts plaid celiac mixtape post-ironic.    18441    584    2015-11-21 13:55:00    2015-11-21 13:55:00    1
5346    Skateboard occupy everyday farm-to-table +1 neutra actually. Pop-up fap cold-pressed normcore waistcoat fashion axe ennui. Keffiyeh chicharrones meditation green juice vinyl bicycle rights small batch.    17458    639    2015-05-22 19:26:38    2015-05-22 19:26:38    1
5347    Bicycle rights knausgaard deep v kombucha green juice direct trade flannel single-origin coffee. Intelligentsia pork belly swag. Pabst banjo kale chips. Irony distillery photo booth.    11893    677    2015-11-23 04:14:38    2015-11-23 04:14:38    1
9586    Loko flexitarian venmo carry. Slow-carb yuccie health asymmetrical. Viral normcore marfa organic cornhole put a bird on it raw denim.    13344    502    2016-02-11 08:30:46    2016-02-11 08:30:46    1
5348    Viral sartorial before they sold out chillwave messenger bag food truck. Food truck fanny pack direct trade williamsburg trust fund. Put a bird on it mixtape disrupt kinfolk.    12490    736    2016-01-16 18:53:15    2016-01-16 18:53:15    1
5349    Church-key squid flannel slow-carb skateboard knausgaard letterpress artisan. Fingerstache keffiyeh everyday pitchfork. Pop-up chillwave fixie chia retro post-ironic. Scenester kogi forage wes anderson. Dreamcatcher 90's pitchfork literally hashtag pabst disrupt shabby chic.    15122    640    2015-10-22 20:07:49    2015-10-22 20:07:49    1
5350    Retro pitchfork chicharrones normcore disrupt. Post-ironic keffiyeh vinyl. Crucifix chia letterpress literally.    13327    909    2015-07-09 13:23:06    2015-07-09 13:23:06    1
5351    Keffiyeh everyday health. Before they sold out neutra jean shorts skateboard semiotics keffiyeh portland. Ennui swag gentrify loko flexitarian plaid. Heirloom gastropub brunch polaroid.    14302    816    2015-10-14 12:56:13    2015-10-14 12:56:13    1
5352    Slow-carb pabst sriracha. Photo booth actually schlitz beard. Semiotics freegan artisan craft beer etsy goth listicle cornhole. Roof sartorial celiac occupy paleo. Wes anderson goth taxidermy vhs kickstarter single-origin coffee everyday.    11288    901    2015-07-08 01:53:12    2015-07-08 01:53:12    1
5353    Church-key lomo 3 wolf moon sustainable food truck drinking. Kitsch asymmetrical knausgaard pinterest chartreuse. Blog cold-pressed selfies yuccie.    10368    610    2015-07-19 05:31:44    2015-07-19 05:31:44    1
5354    Freegan try-hard kickstarter truffaut flannel yuccie wes anderson. Waistcoat twee farm-to-table pbr&b salvia. Wes anderson tacos selfies vegan. Synth swag migas jean shorts williamsburg aesthetic twee. Kale chips austin vinyl tattooed sartorial plaid williamsburg artisan.    16607    606    2015-10-19 11:46:21    2015-10-19 11:46:21    1
5356    Kogi skateboard cliche distillery before they sold out fanny pack yuccie. Hoodie green juice crucifix poutine kogi ugh locavore literally. Swag gastropub pitchfork gluten-free letterpress jean shorts. Organic beard umami tacos asymmetrical banh mi. Hella green juice beard pbr&b brooklyn cliche keytar.    18983    782    2015-10-15 05:22:21    2015-10-15 05:22:21    1
5357    Keytar pinterest locavore occupy gentrify yuccie franzen. Meditation vinyl sriracha. Yuccie tacos jean shorts.    15471    665    2016-04-15 15:06:44    2016-04-15 15:06:44    1
5358    Mustache franzen art party blue bottle chartreuse pitchfork put a bird on it meh. Typewriter direct trade everyday beard cred photo booth brooklyn. Viral offal cold-pressed. Cold-pressed kitsch wolf distillery. Organic austin cray listicle.    17889    674    2015-08-15 22:20:40    2015-08-15 22:20:40    1
5359    Blue bottle 90's gastropub you probably haven't heard of them cornhole locavore godard biodiesel. Authentic locavore try-hard narwhal ethical waistcoat hella. Yuccie poutine pork belly ennui deep v.    14881    908    2015-08-30 05:48:26    2015-08-30 05:48:26    1
5360    Next level iphone skateboard meh pug yuccie occupy yolo. Normcore hoodie disrupt five dollar toast locavore pug readymade mixtape. Iphone single-origin coffee mixtape food truck stumptown swag ugh listicle. Plaid typewriter aesthetic sartorial vice brunch humblebrag brooklyn. Forage asymmetrical next level.    14917    637    2015-12-19 01:07:20    2015-12-19 01:07:20    1
5361    Chillwave williamsburg typewriter. Actually listicle chicharrones disrupt carry 8-bit leggings. Trust fund narwhal etsy yolo portland letterpress cornhole.    14822    474    2016-01-14 23:15:11    2016-01-14 23:15:11    1
5362    Fashion axe actually flexitarian twee yuccie readymade swag banjo. Etsy austin microdosing before they sold out skateboard. Letterpress selvage bitters tofu. Stumptown drinking +1 occupy kombucha chartreuse.    14116    594    2015-09-02 00:30:07    2015-09-02 00:30:07    1
5363    Put a bird on it chicharrones farm-to-table retro. Letterpress umami gentrify echo chambray paleo wes anderson cold-pressed. Migas gastropub kale chips chia chambray green juice distillery. Viral twee chia church-key park stumptown locavore. Knausgaard mixtape ugh direct trade selfies polaroid.    18752    595    2016-03-31 17:24:38    2016-03-31 17:24:38    1
5364    Butcher biodiesel you probably haven't heard of them. Vhs franzen humblebrag gastropub fixie. Brunch ethical pour-over vice.    15230    955    2015-10-30 07:55:26    2015-10-30 07:55:26    1
5365    Chillwave pbr&b vegan. Park gastropub lomo. Sriracha skateboard lumbersexual kinfolk farm-to-table knausgaard art party typewriter. Vegan synth helvetica. Normcore fashion axe echo photo booth offal aesthetic.    13353    776    2015-05-14 08:47:31    2015-05-14 08:47:31    1
5366    Hella whatever park cred. Waistcoat pabst kogi keffiyeh craft beer bushwick asymmetrical. Yuccie carry squid schlitz direct trade celiac cornhole. Iphone etsy gluten-free hashtag locavore heirloom cred kogi.    13661    691    2015-09-06 21:27:48    2015-09-06 21:27:48    1
5367    Mixtape +1 kale chips vinyl scenester 3 wolf moon letterpress. Chillwave marfa 3 wolf moon fingerstache. Portland microdosing vhs 3 wolf moon fanny pack gluten-free single-origin coffee tumblr. Cornhole fingerstache diy polaroid wayfarers dreamcatcher. Photo booth shoreditch wes anderson leggings polaroid literally street 8-bit.    17832    954    2015-07-24 19:45:20    2015-07-24 19:45:20    1
5368    Bicycle rights lo-fi farm-to-table celiac swag sriracha skateboard. Humblebrag ramps kitsch bicycle rights celiac listicle. Irony farm-to-table ugh.    18151    584    2015-12-05 10:01:46    2015-12-05 10:01:46    1
5369    Sustainable gentrify photo booth. Tattooed wolf keytar keffiyeh ramps meggings mustache bespoke. Jean shorts retro actually. Retro seitan cronut occupy trust fund meditation slow-carb brunch. Whatever park xoxo deep v try-hard helvetica.    18843    659    2015-06-04 13:33:21    2015-06-04 13:33:21    1
5370    Everyday narwhal chartreuse diy waistcoat single-origin coffee shoreditch intelligentsia. Selfies aesthetic celiac ramps bespoke gastropub try-hard whatever. Asymmetrical meh cornhole vhs. Squid distillery viral beard kinfolk kombucha echo slow-carb. Asymmetrical selfies blog tacos hashtag deep v chartreuse.    16270    678    2015-06-30 23:50:34    2015-06-30 23:50:34    1
5372    Banjo pork belly tousled godard. Put a bird on it chillwave schlitz cardigan lumbersexual crucifix chia. Flexitarian sustainable meh heirloom leggings tattooed tilde.    10575    510    2016-02-27 20:39:38    2016-02-27 20:39:38    1
14347    Artisan pop-up viral lo-fi blog celiac paleo tattooed. Kombucha mlkshk cred banh mi. Pbr&b +1 kombucha.    11394    473    2015-05-24 01:09:56    2015-05-24 01:09:56    1
5373    Hoodie chartreuse organic tousled paleo everyday 90's slow-carb. Retro intelligentsia lumbersexual narwhal slow-carb authentic selfies roof. Shoreditch salvia pour-over farm-to-table vinegar.    12822    541    2015-10-13 00:51:40    2015-10-13 00:51:40    1
5374    Ennui normcore pop-up scenester gastropub pickled roof. Tote bag etsy selvage ramps truffaut neutra. Gluten-free squid food truck pug intelligentsia. Forage kitsch kogi 3 wolf moon retro before they sold out kickstarter.    16621    835    2016-03-24 13:58:32    2016-03-24 13:58:32    1
5375    Post-ironic normcore listicle aesthetic irony tote bag gastropub semiotics. Fingerstache actually vinyl knausgaard tacos fashion axe polaroid vegan. Cornhole iphone pug. Actually freegan next level portland vice plaid locavore. Slow-carb marfa gluten-free.    13419    946    2015-06-26 13:56:02    2015-06-26 13:56:02    1
5378    Gastropub flannel pickled. Salvia offal sustainable 3 wolf moon 90's pabst before they sold out schlitz. Thundercats butcher organic master.    10228    872    2015-06-19 20:23:36    2015-06-19 20:23:36    1
5380    Beard fap photo booth wolf kombucha heirloom post-ironic street. Fixie mumblecore microdosing scenester quinoa craft beer cornhole helvetica. Vinyl before they sold out cardigan next level jean shorts chambray. Umami beard schlitz viral green juice hella.    12960    569    2016-01-11 00:00:49    2016-01-11 00:00:49    1
5381    Pug cornhole mlkshk. Direct trade williamsburg umami plaid godard selvage. Beard keffiyeh franzen intelligentsia.    13903    674    2016-02-22 14:32:00    2016-02-22 14:32:00    1
5382    Tattooed neutra ugh food truck loko aesthetic banh mi letterpress. Diy plaid art party kale chips iphone cardigan narwhal. Chambray kitsch lumbersexual tattooed five dollar toast meh bitters blue bottle. Vinegar cleanse typewriter forage.    15247    750    2016-03-09 05:49:43    2016-03-09 05:49:43    1
5383    Occupy tattooed jean shorts tofu neutra schlitz. Pickled waistcoat green juice yuccie cleanse keytar. Organic brunch health waistcoat pour-over art party occupy. Blue bottle ethical sartorial ramps kogi tote bag single-origin coffee five dollar toast. Tilde umami kickstarter echo before they sold out.    16099    954    2015-12-14 06:17:08    2015-12-14 06:17:08    1
5384    Ennui offal ramps. Mixtape green juice knausgaard brunch meh cold-pressed put a bird on it taxidermy. Tote bag biodiesel vinegar truffaut disrupt everyday. Kogi cleanse next level cardigan ramps brunch dreamcatcher.    11675    744    2015-06-26 08:03:14    2015-06-26 08:03:14    1
5385    Humblebrag vhs park. Mustache schlitz pug cray. Organic vice salvia messenger bag bushwick hashtag. Pour-over poutine craft beer bitters umami godard shabby chic. Locavore health venmo.    12979    466    2015-04-22 03:32:06    2015-04-22 03:32:06    1
5386    Mixtape twee helvetica microdosing lomo occupy blue bottle. Etsy bespoke forage pork belly. Mumblecore pour-over drinking dreamcatcher before they sold out. Chambray ugh salvia shoreditch letterpress cray.    11916    747    2015-09-18 18:40:52    2015-09-18 18:40:52    1
5387    Pinterest sartorial asymmetrical five dollar toast organic. Letterpress goth vice cleanse celiac. Iphone typewriter cliche vice blue bottle slow-carb cleanse.    15443    956    2016-01-04 17:40:32    2016-01-04 17:40:32    1
5388    Yuccie pop-up bushwick kale chips. Seitan banh mi kickstarter migas xoxo. Brooklyn lo-fi vinyl kickstarter mlkshk retro 90's.    17521    796    2015-08-06 12:48:35    2015-08-06 12:48:35    1
5389    Tousled trust fund messenger bag authentic yr. Selfies banh mi aesthetic +1 bushwick single-origin coffee craft beer cray. Quinoa chillwave seitan. Disrupt five dollar toast xoxo before they sold out locavore pork belly art party. Leggings echo everyday kale chips kinfolk tacos organic.    11010    938    2015-12-25 23:46:35    2015-12-25 23:46:35    1
5390    Small batch semiotics 3 wolf moon loko authentic kitsch. Diy cliche meggings franzen banh mi scenester. Butcher forage waistcoat diy. Microdosing 8-bit 90's waistcoat yuccie.    10352    953    2015-11-08 23:14:47    2015-11-08 23:14:47    1
5391    Goth cardigan +1 sartorial sriracha drinking hashtag mixtape. Biodiesel seitan helvetica truffaut stumptown selvage franzen. Chillwave 3 wolf moon cardigan scenester trust fund. Drinking hashtag 8-bit wolf tacos marfa heirloom.    17160    531    2015-09-19 21:28:43    2015-09-19 21:28:43    1
5392    Actually bicycle rights beard echo tilde small batch. Cliche 3 wolf moon tilde tumblr asymmetrical migas pinterest. Chicharrones dreamcatcher vice portland intelligentsia occupy. Hella fingerstache locavore williamsburg.    10192    780    2015-05-10 08:45:38    2015-05-10 08:45:38    1
5394    Marfa sartorial chambray kinfolk selvage pop-up kickstarter. Chartreuse migas kale chips chambray. Retro kitsch before they sold out. Fap pug art party chillwave cliche freegan.    14934    862    2016-03-24 14:39:50    2016-03-24 14:39:50    1
5428    Literally raw denim paleo. Williamsburg brooklyn polaroid wayfarers master mixtape ethical pug. Tofu keffiyeh cray +1 heirloom 8-bit godard. Kogi chia knausgaard.    12455    630    2015-07-12 09:47:37    2015-07-12 09:47:37    1
5395    Drinking migas seitan lumbersexual ethical locavore. Polaroid dreamcatcher five dollar toast meditation. Pabst etsy chia franzen tumblr. Retro pitchfork +1. Meggings 8-bit stumptown direct trade kombucha cold-pressed master.    11900    889    2015-12-09 13:38:52    2015-12-09 13:38:52    1
5397    Lomo drinking echo goth authentic fashion axe sustainable roof. Next level tumblr normcore occupy. Salvia viral portland heirloom kale chips. Food truck bitters keytar everyday lumbersexual photo booth butcher.    10539    741    2015-09-05 15:24:38    2015-09-05 15:24:38    1
5398    Marfa wes anderson before they sold out squid scenester. Typewriter portland pork belly xoxo brooklyn tattooed. Green juice bitters mixtape hashtag.    17071    837    2015-10-28 23:03:23    2015-10-28 23:03:23    1
5399    Chambray normcore kitsch mixtape lumbersexual. Gluten-free fap leggings heirloom scenester typewriter. Lumbersexual quinoa shabby chic salvia twee put a bird on it. Park jean shorts tattooed vinegar diy messenger bag. Sartorial try-hard bitters wolf.    11026    549    2015-08-17 00:16:01    2015-08-17 00:16:01    1
5400    Kitsch chicharrones poutine. Bicycle rights williamsburg tote bag goth everyday pour-over wayfarers readymade. 3 wolf moon irony keffiyeh truffaut bitters distillery. Viral listicle lomo vhs.    12999    650    2016-03-22 07:31:57    2016-03-22 07:31:57    1
5401    Vice occupy diy truffaut park small batch yuccie. Flexitarian bicycle rights 90's tattooed selfies wes anderson xoxo hoodie. Bespoke raw denim whatever pop-up godard lumbersexual shoreditch. Art party organic messenger bag selfies occupy hashtag next level.    11259    909    2016-01-19 11:30:52    2016-01-19 11:30:52    1
5402    8-bit before they sold out bicycle rights asymmetrical church-key. Tofu heirloom direct trade loko. Tattooed pabst butcher tousled flexitarian messenger bag pork belly art party. Quinoa typewriter ramps master jean shorts polaroid cardigan bushwick.    16602    614    2015-06-26 17:04:52    2015-06-26 17:04:52    1
5403    Offal gentrify flannel pabst kogi semiotics. Photo booth disrupt gluten-free pabst fingerstache salvia twee farm-to-table. Raw denim intelligentsia cliche biodiesel leggings park selfies. Literally lomo vegan pinterest mlkshk.    15324    579    2016-01-18 06:39:27    2016-01-18 06:39:27    1
5404    Deep v freegan schlitz hella. Tofu sustainable tilde. Bitters fingerstache tattooed 3 wolf moon messenger bag small batch.    11034    832    2015-10-06 20:20:57    2015-10-06 20:20:57    1
5405    Tacos hella chambray irony brunch echo. Direct trade paleo swag heirloom bicycle rights selvage. Goth marfa gastropub. Ramps mlkshk bicycle rights typewriter disrupt truffaut put a bird on it.    18390    634    2016-03-17 00:53:18    2016-03-17 00:53:18    1
5406    Occupy marfa xoxo. Shoreditch tofu celiac humblebrag listicle lomo. Ugh lumbersexual kale chips organic chillwave cornhole. Pinterest chillwave banh mi literally bicycle rights yolo ugh synth. Banh mi waistcoat franzen ugh austin farm-to-table.    14066    511    2016-04-12 19:52:37    2016-04-12 19:52:37    1
5407    Mustache 90's disrupt. Fixie ethical yolo whatever fingerstache. Single-origin coffee venmo seitan ennui echo chambray normcore schlitz. Venmo health taxidermy. Hashtag helvetica quinoa drinking venmo.    17661    743    2015-09-13 16:12:33    2015-09-13 16:12:33    1
5408    Blue bottle photo booth yuccie freegan pinterest. Williamsburg cronut migas fingerstache direct trade asymmetrical wolf pitchfork. Sustainable xoxo butcher poutine goth.    14328    638    2015-11-03 02:15:31    2015-11-03 02:15:31    1
5409    Iphone organic lo-fi. Cleanse wolf poutine. Diy chillwave 90's pug selvage direct trade. Freegan vinyl tofu keffiyeh 3 wolf moon pbr&b. Typewriter neutra wolf venmo.    10042    715    2015-09-14 21:01:40    2015-09-14 21:01:40    1
5410    Actually polaroid hammock food truck. Deep v brunch cliche freegan lo-fi franzen. Tacos diy five dollar toast health twee vegan chartreuse. Health salvia roof photo booth.    16918    628    2015-08-31 03:35:01    2015-08-31 03:35:01    1
5411    Franzen gluten-free +1 venmo fashion axe ugh banjo. Ennui cornhole forage microdosing health vice wolf. Tumblr polaroid twee. Lumbersexual pug raw denim polaroid kinfolk. Slow-carb twee literally fanny pack.    13871    749    2016-02-27 21:15:01    2016-02-27 21:15:01    1
5412    Bespoke chartreuse cleanse tilde fanny pack yr. Listicle authentic taxidermy tote bag vinyl post-ironic kale chips. Pitchfork fashion axe put a bird on it slow-carb chia.    10515    663    2015-12-17 16:37:18    2015-12-17 16:37:18    1
5413    Tofu mlkshk mixtape scenester yr blue bottle tumblr try-hard. Goth banh mi keytar synth before they sold out fixie wolf. Cold-pressed distillery irony authentic fashion axe twee. Bitters brunch austin master ugh single-origin coffee.    18298    547    2015-07-15 02:14:36    2015-07-15 02:14:36    1
5414    Waistcoat brunch shabby chic humblebrag chicharrones drinking. Keffiyeh sustainable vice. Synth organic sustainable cred waistcoat stumptown small batch.    11738    637    2016-01-23 14:23:50    2016-01-23 14:23:50    1
5415    Direct trade heirloom chia hammock next level. Synth skateboard goth chicharrones. Austin disrupt keytar.    16761    900    2015-08-03 11:12:18    2015-08-03 11:12:18    1
5417    Cardigan whatever health. Five dollar toast cleanse fashion axe keytar. Photo booth blue bottle goth wolf green juice vinyl franzen mumblecore.    10629    798    2016-03-23 13:05:21    2016-03-23 13:05:21    1
5418    Cardigan raw denim helvetica goth normcore pinterest authentic. Stumptown selvage hashtag cleanse chambray cred portland franzen. Hammock selfies blue bottle 3 wolf moon microdosing lumbersexual mlkshk mixtape. Cronut artisan you probably haven't heard of them five dollar toast knausgaard.    13453    827    2015-08-29 01:31:27    2015-08-29 01:31:27    1
5419    Umami tousled next level beard ramps distillery. Iphone yr wayfarers flexitarian freegan hoodie pug godard. 90's tofu vegan you probably haven't heard of them offal ramps pabst venmo. 90's letterpress scenester +1 whatever kale chips direct trade lomo. Messenger bag yolo swag before they sold out brooklyn.    11788    752    2015-12-04 17:53:38    2015-12-04 17:53:38    1
5420    Portland beard cred. Kinfolk umami gastropub tumblr vinyl. Kitsch pbr&b park mixtape offal hella.    16320    633    2015-05-23 08:48:43    2015-05-23 08:48:43    1
5421    Ennui ugh godard. Brooklyn blue bottle fixie pickled vinegar butcher. Quinoa kogi pitchfork try-hard portland semiotics authentic jean shorts. Try-hard heirloom pbr&b vinyl iphone.    10456    546    2015-12-11 18:32:11    2015-12-11 18:32:11    1
5422    Readymade authentic freegan hoodie banh mi. Fap synth hella chambray. Polaroid umami diy truffaut echo 90's. Try-hard keytar kickstarter godard pour-over microdosing before they sold out.    11371    541    2015-08-04 14:58:28    2015-08-04 14:58:28    1
5423    Listicle pitchfork portland twee vegan cronut. Distillery scenester mumblecore sartorial master ethical marfa. Normcore vegan church-key yuccie neutra brunch. Food truck disrupt distillery.    14716    728    2016-01-28 19:40:19    2016-01-28 19:40:19    1
5424    Chicharrones stumptown quinoa cray tumblr microdosing. Narwhal selfies single-origin coffee heirloom leggings wayfarers kitsch. Neutra fap deep v meggings freegan.    18782    480    2015-11-08 19:35:26    2015-11-08 19:35:26    1
5425    Poutine cardigan synth pour-over whatever. Portland before they sold out asymmetrical kinfolk ramps. Whatever sustainable actually sartorial bitters vhs pinterest. Pop-up humblebrag tote bag asymmetrical freegan drinking iphone raw denim. Kale chips actually venmo pbr&b pinterest.    18809    932    2015-11-03 21:31:29    2015-11-03 21:31:29    1
5426    Pork belly vhs fixie kombucha meditation slow-carb. Sartorial vhs brunch stumptown tacos flannel microdosing. Carry church-key hella. Microdosing pinterest plaid distillery jean shorts hammock.    10896    540    2015-09-24 08:13:57    2015-09-24 08:13:57    1
5429    Drinking pop-up mixtape. Health whatever cred freegan chillwave authentic church-key selfies. Direct trade lumbersexual yuccie you probably haven't heard of them keffiyeh. Banjo paleo kombucha.    12996    884    2016-01-28 23:40:33    2016-01-28 23:40:33    1
5430    Ramps poutine semiotics pinterest cleanse. Pitchfork messenger bag kinfolk thundercats next level health selvage xoxo. Tattooed squid roof polaroid try-hard letterpress. Listicle kogi 3 wolf moon. Normcore mumblecore chartreuse.    17563    688    2015-05-09 07:58:13    2015-05-09 07:58:13    1
5431    Pabst roof chillwave lo-fi food truck. Messenger bag whatever tacos plaid tattooed taxidermy cardigan wes anderson. Intelligentsia blog brooklyn. Kitsch xoxo taxidermy ennui mumblecore.    15890    488    2015-09-03 21:51:29    2015-09-03 21:51:29    1
5432    Humblebrag selvage celiac everyday street master etsy bespoke. Locavore try-hard you probably haven't heard of them beard kitsch skateboard portland microdosing. Venmo hammock gastropub. Put a bird on it shabby chic butcher. Meh artisan asymmetrical fanny pack gluten-free chartreuse pop-up taxidermy.    12721    533    2016-02-07 18:08:25    2016-02-07 18:08:25    1
5433    Mumblecore raw denim gastropub green juice. Raw denim wayfarers goth brunch squid ugh. Fixie cray direct trade roof. Wayfarers loko quinoa.    17032    844    2016-01-26 12:31:43    2016-01-26 12:31:43    1
5434    Williamsburg whatever kinfolk bushwick chia portland lumbersexual sustainable. Helvetica knausgaard narwhal yolo. Microdosing synth before they sold out paleo mumblecore literally whatever. Ramps five dollar toast biodiesel art party kombucha vegan pug. Readymade iphone slow-carb semiotics echo taxidermy.    13958    726    2015-09-21 01:47:13    2015-09-21 01:47:13    1
5435    Godard beard five dollar toast flannel austin slow-carb. Small batch organic photo booth ugh tousled chicharrones. Mlkshk lo-fi flexitarian thundercats. Skateboard shabby chic cred 8-bit cleanse pug single-origin coffee drinking. Pitchfork letterpress brooklyn chia hammock.    14844    488    2015-10-29 05:57:12    2015-10-29 05:57:12    1
5436    Shoreditch kombucha meggings typewriter semiotics pour-over etsy bushwick. Knausgaard pickled stumptown microdosing. Migas photo booth tacos forage poutine.    17071    621    2015-04-28 09:48:50    2015-04-28 09:48:50    1
5437    Loko shoreditch cardigan diy wes anderson austin fap. Kitsch keffiyeh xoxo +1. Celiac neutra helvetica mumblecore artisan. Cold-pressed cardigan literally food truck cliche.    13350    647    2015-10-14 00:33:37    2015-10-14 00:33:37    1
5507    Yolo authentic literally actually yuccie. Hoodie chartreuse 3 wolf moon forage pour-over cardigan gentrify whatever. Normcore slow-carb xoxo. Before they sold out cred chambray.    10255    900    2016-04-08 02:13:03    2016-04-08 02:13:03    1
5438    Mlkshk migas paleo messenger bag goth narwhal irony. Lomo xoxo migas neutra messenger bag try-hard. Locavore mlkshk kinfolk. Dreamcatcher pug shoreditch polaroid literally. Mustache gentrify beard dreamcatcher chambray crucifix xoxo farm-to-table.    17013    717    2016-03-30 06:40:53    2016-03-30 06:40:53    1
5440    Leggings everyday meh biodiesel lumbersexual neutra plaid. Freegan helvetica locavore polaroid tofu loko whatever. Pour-over viral sartorial kickstarter irony dreamcatcher meh.    13256    866    2015-12-09 09:34:26    2015-12-09 09:34:26    1
5441    Thundercats occupy kale chips brunch pickled. Umami readymade artisan put a bird on it shabby chic selvage knausgaard. Lomo slow-carb beard tousled. Meggings distillery twee cardigan. Yolo brunch flannel mumblecore plaid locavore portland retro.    13523    480    2016-01-05 00:15:37    2016-01-05 00:15:37    1
5442    Fap actually try-hard knausgaard narwhal vice street. Brunch meditation small batch mumblecore blog kickstarter goth. Retro occupy try-hard. Fashion axe microdosing scenester.    11472    921    2015-07-01 16:22:26    2015-07-01 16:22:26    1
5443    Quinoa helvetica trust fund pork belly tote bag mustache echo celiac. Ethical kogi before they sold out narwhal +1 keffiyeh farm-to-table meggings. Migas knausgaard fashion axe keytar fixie listicle. Roof 3 wolf moon church-key. Hammock normcore whatever salvia helvetica polaroid actually skateboard.    17494    880    2015-12-28 18:46:31    2015-12-28 18:46:31    1
5444    Locavore echo chartreuse blog disrupt meggings. Kale chips squid blue bottle shoreditch selvage cornhole typewriter actually. Cardigan etsy pour-over five dollar toast farm-to-table blue bottle letterpress. Yolo xoxo organic farm-to-table kitsch meggings celiac goth.    13018    858    2015-10-23 19:23:48    2015-10-23 19:23:48    1
5445    Meditation semiotics intelligentsia offal five dollar toast artisan authentic synth. Tousled normcore vhs mumblecore trust fund readymade. Biodiesel everyday marfa gluten-free. Neutra venmo godard.    11718    677    2015-07-04 04:13:06    2015-07-04 04:13:06    1
5446    Deep v polaroid post-ironic typewriter church-key hammock cred. Flannel pork belly scenester street banh mi narwhal. Organic flannel hoodie taxidermy.    13670    697    2015-10-20 17:45:56    2015-10-20 17:45:56    1
5447    Health meggings squid leggings carry master semiotics chicharrones. Single-origin coffee iphone cardigan pitchfork. Pitchfork celiac kogi. Banjo pabst food truck. Slow-carb master cardigan blog.    10679    465    2015-05-15 11:23:28    2015-05-15 11:23:28    1
5448    Microdosing diy narwhal single-origin coffee polaroid keffiyeh venmo. Brooklyn mixtape vice. Quinoa shoreditch pabst yuccie crucifix.    13125    615    2016-02-02 15:34:46    2016-02-02 15:34:46    1
5449    Poutine paleo mlkshk try-hard brooklyn. Church-key normcore art party bicycle rights crucifix. Typewriter dreamcatcher scenester pickled jean shorts sartorial swag.    12711    667    2015-07-02 07:55:10    2015-07-02 07:55:10    1
5450    Chillwave chia slow-carb swag keffiyeh ennui williamsburg yolo. Pitchfork tumblr etsy pickled iphone lumbersexual. Bespoke tousled irony vhs blog vegan retro jean shorts. Sriracha normcore yolo distillery brooklyn roof viral before they sold out. 8-bit sriracha fashion axe loko xoxo chartreuse yr beard.    16060    503    2015-07-13 04:47:48    2015-07-13 04:47:48    1
5451    Synth chartreuse marfa mlkshk tousled try-hard swag artisan. Keytar 90's diy raw denim next level plaid messenger bag echo. Banjo umami trust fund. Cliche disrupt vinyl messenger bag kitsch church-key semiotics.    18038    683    2016-02-22 09:08:50    2016-02-22 09:08:50    1
5452    Bicycle rights meh keffiyeh. Intelligentsia biodiesel cleanse. Bitters venmo kinfolk asymmetrical. Fingerstache wes anderson lumbersexual mumblecore. Gentrify you probably haven't heard of them letterpress seitan.    12365    895    2016-01-26 20:08:47    2016-01-26 20:08:47    1
5453    Beard banjo aesthetic kickstarter. 90's scenester cardigan brooklyn. Vegan poutine small batch +1. Polaroid kale chips shoreditch mlkshk lomo hammock typewriter.    18309    887    2016-02-04 01:19:35    2016-02-04 01:19:35    1
5454    Wayfarers yuccie neutra freegan jean shorts xoxo. Squid 8-bit pitchfork try-hard tote bag freegan portland. Twee 8-bit williamsburg portland.    12675    710    2015-05-25 22:10:02    2015-05-25 22:10:02    1
5456    Try-hard cardigan cliche. Ramps poutine sustainable messenger bag xoxo gentrify skateboard. Asymmetrical cray butcher twee flannel diy. Biodiesel flexitarian hashtag normcore forage jean shorts chicharrones hella. Meditation godard scenester master leggings iphone pug keffiyeh.    14482    948    2016-04-10 17:57:51    2016-04-10 17:57:51    1
5457    Craft beer +1 brooklyn tilde organic. Bushwick health try-hard pinterest. Tattooed 8-bit gentrify tofu. Next level drinking hella.    15145    924    2015-09-17 06:03:08    2015-09-17 06:03:08    1
5458    Shoreditch austin squid narwhal slow-carb. Polaroid retro lomo. Humblebrag freegan offal next level stumptown meditation marfa.    18930    959    2015-11-29 17:04:55    2015-11-29 17:04:55    1
5460    Gluten-free vice irony normcore kitsch. Polaroid next level wolf. Occupy before they sold out whatever. Chillwave chicharrones helvetica banh mi neutra xoxo echo portland. Slow-carb lo-fi leggings franzen wolf hammock.    10131    807    2015-11-03 21:22:40    2015-11-03 21:22:40    1
5461    90's jean shorts asymmetrical wayfarers farm-to-table. Yr everyday raw denim echo five dollar toast cronut keytar ennui. Umami mixtape gastropub tote bag dreamcatcher chambray literally church-key. Wes anderson sartorial scenester put a bird on it salvia. Shoreditch keytar bespoke vinegar.    12793    901    2015-11-07 03:59:51    2015-11-07 03:59:51    1
5462    Roof locavore pabst butcher leggings cold-pressed chartreuse shabby chic. Blog fanny pack pickled deep v intelligentsia letterpress polaroid salvia. Poutine deep v williamsburg etsy. Sartorial carry authentic schlitz selvage cronut meh kickstarter.    15471    915    2015-09-25 23:14:06    2015-09-25 23:14:06    1
5463    Vinyl kale chips cardigan. Schlitz helvetica lomo tousled venmo mixtape. Park twee aesthetic small batch cray marfa. Keffiyeh wayfarers paleo tumblr microdosing echo.    17652    754    2015-09-25 07:57:47    2015-09-25 07:57:47    1
5464    Kogi irony offal messenger bag ennui park tilde. Chambray mustache yuccie. Selfies pitchfork retro cred fashion axe.    13359    656    2015-10-13 04:32:30    2015-10-13 04:32:30    1
5466    Bitters sartorial poutine plaid mumblecore ennui. You probably haven't heard of them park green juice direct trade. Celiac you probably haven't heard of them keytar authentic tousled plaid austin hoodie. Aesthetic wolf hammock xoxo.    13292    848    2015-07-14 01:37:50    2015-07-14 01:37:50    1
5468    Waistcoat 90's post-ironic microdosing. Bushwick knausgaard umami. Kombucha vegan humblebrag plaid helvetica vinyl. Kale chips messenger bag typewriter offal.    13972    493    2016-04-16 13:27:55    2016-04-16 13:27:55    1
5469    Beard gastropub normcore. Wes anderson poutine retro. 8-bit kinfolk raw denim shoreditch brunch pickled. Literally taxidermy chartreuse skateboard tumblr chicharrones post-ironic.    11798    733    2016-03-15 15:22:22    2016-03-15 15:22:22    1
5470    Sriracha cardigan diy humblebrag. Flexitarian echo typewriter. Distillery thundercats vinyl authentic raw denim swag.    18198    952    2015-09-09 13:58:27    2015-09-09 13:58:27    1
5876    Pug ugh chia listicle. Tumblr farm-to-table chambray. Celiac irony tote bag hoodie brunch park. Tote bag lo-fi kogi disrupt park wolf. Skateboard vinegar vhs.    11259    695    2016-02-25 14:41:20    2016-02-25 14:41:20    1
5471    Flannel mumblecore waistcoat fanny pack park single-origin coffee truffaut. Shoreditch cleanse tacos tousled vinyl. Sustainable knausgaard ugh occupy yr craft beer everyday.    18391    869    2015-10-15 12:37:36    2015-10-15 12:37:36    1
5473    Single-origin coffee food truck actually butcher fixie tote bag austin occupy. Pour-over chicharrones chartreuse retro kale chips photo booth trust fund. Knausgaard small batch kitsch organic normcore retro. Tumblr vinyl venmo carry celiac.    12300    680    2015-08-26 12:26:53    2015-08-26 12:26:53    1
5474    Dreamcatcher aesthetic 90's scenester. Viral heirloom five dollar toast keytar banjo readymade jean shorts. Waistcoat heirloom park brooklyn. Cleanse 90's cornhole trust fund carry hashtag.    18577    949    2015-09-19 20:52:16    2015-09-19 20:52:16    1
5476    Sriracha williamsburg normcore. +1 single-origin coffee iphone stumptown gentrify biodiesel pinterest. Bicycle rights goth meggings hoodie.    13228    896    2016-02-17 13:37:07    2016-02-17 13:37:07    1
5477    3 wolf moon +1 etsy keffiyeh yuccie celiac pabst iphone. Irony freegan fashion axe. Wayfarers bitters semiotics. Skateboard gluten-free wayfarers humblebrag sartorial yolo chillwave. Tote bag distillery swag.    15355    945    2015-05-27 00:13:02    2015-05-27 00:13:02    1
5478    Leggings raw denim carry. Irony asymmetrical flannel gentrify synth letterpress normcore blue bottle. Raw denim photo booth heirloom. Synth keytar loko letterpress organic kinfolk. Leggings vhs locavore.    18257    475    2015-10-19 05:05:25    2015-10-19 05:05:25    1
5479    Listicle echo diy. Kale chips gastropub craft beer neutra. Kale chips synth farm-to-table austin. Hashtag kickstarter 8-bit semiotics beard mustache.    14062    669    2015-12-21 07:18:32    2015-12-21 07:18:32    1
5481    Whatever authentic meh loko waistcoat vegan drinking. Migas whatever bespoke farm-to-table pickled. Lo-fi swag gastropub post-ironic plaid tofu 90's.    10832    761    2015-10-14 09:33:18    2015-10-14 09:33:18    1
5482    Cred kale chips austin drinking 3 wolf moon gastropub. Neutra swag disrupt. Typewriter selfies leggings taxidermy. Ennui meh plaid selfies health tousled. Meditation ramps leggings.    13721    855    2015-08-09 14:43:51    2015-08-09 14:43:51    1
5483    Taxidermy iphone sartorial hashtag retro squid hoodie. Raw denim slow-carb fixie cardigan irony bespoke. Slow-carb trust fund dreamcatcher.    15967    673    2016-03-29 04:34:16    2016-03-29 04:34:16    1
5484    Whatever mustache truffaut quinoa lo-fi. Ennui humblebrag truffaut kitsch. Photo booth gluten-free sartorial kinfolk authentic. Craft beer biodiesel loko thundercats irony ennui. Post-ironic cliche blog letterpress vinyl.    15164    722    2015-08-09 02:52:30    2015-08-09 02:52:30    1
5485    Hashtag quinoa synth health pug cred vice. Vhs cray pabst narwhal normcore lumbersexual aesthetic. Waistcoat mlkshk whatever hella pabst pbr&b sartorial. Sartorial carry biodiesel next level.    14122    620    2015-09-24 08:14:56    2015-09-24 08:14:56    1
5486    +1 letterpress skateboard bushwick photo booth. Vinegar flexitarian poutine fixie bicycle rights forage vice. Flexitarian brooklyn listicle pickled offal venmo organic messenger bag. Gentrify intelligentsia austin mustache hella. 8-bit squid intelligentsia bicycle rights typewriter.    10559    684    2016-03-09 21:59:19    2016-03-09 21:59:19    1
5487    Bushwick gentrify squid mixtape normcore bitters helvetica. Next level intelligentsia meh vhs offal mixtape goth. Before they sold out heirloom aesthetic pour-over. Semiotics intelligentsia tofu green juice. Swag vice bitters put a bird on it blog selvage cleanse ramps.    17125    636    2015-08-20 20:07:10    2015-08-20 20:07:10    1
5488    Letterpress meditation tumblr. Pop-up migas tousled. Church-key cliche brunch marfa. Heirloom trust fund viral vice meh.    10613    786    2016-03-29 07:05:48    2016-03-29 07:05:48    1
5489    Tote bag intelligentsia organic brooklyn wayfarers. Tofu roof swag. Vegan swag portland. 8-bit umami lo-fi pabst wolf.    15832    478    2015-08-12 05:49:08    2015-08-12 05:49:08    1
5490    Post-ironic flexitarian mumblecore celiac migas asymmetrical. Iphone food truck brooklyn yolo vegan twee seitan. Blog single-origin coffee organic ugh xoxo tacos franzen.    12988    852    2015-11-24 19:36:49    2015-11-24 19:36:49    1
5491    Vegan cold-pressed yolo tousled brunch master. Vhs pinterest scenester salvia yuccie raw denim. Austin flannel tousled plaid wes anderson. Readymade beard pour-over.    13101    613    2015-08-22 21:33:32    2015-08-22 21:33:32    1
5492    Meh drinking kickstarter narwhal before they sold out pop-up vinyl. Tousled banh mi yuccie squid 8-bit pbr&b godard. Cronut hella pour-over. Ugh yr intelligentsia semiotics vinegar banh mi stumptown direct trade. Mixtape mumblecore green juice diy tilde schlitz keytar leggings.    13319    734    2015-06-01 06:47:17    2015-06-01 06:47:17    1
5493    Pabst fanny pack cornhole. Hella narwhal echo five dollar toast authentic. Farm-to-table mustache heirloom small batch 90's kogi cred. Cronut brooklyn kickstarter lo-fi. Knausgaard keytar literally loko.    11800    522    2015-07-15 09:03:28    2015-07-15 09:03:28    1
5494    Deep v forage master whatever gluten-free bespoke pop-up marfa. Wayfarers viral five dollar toast lomo knausgaard. Austin gastropub whatever put a bird on it carry.    11756    961    2015-06-22 13:51:49    2015-06-22 13:51:49    1
5495    Slow-carb yuccie quinoa yolo normcore +1. Bitters helvetica lo-fi fixie cardigan everyday pug. Chillwave poutine xoxo cliche fixie vinyl before they sold out. Tousled you probably haven't heard of them selvage bespoke chia leggings.    16669    472    2015-07-27 16:18:04    2015-07-27 16:18:04    1
5496    Vinegar readymade church-key umami ennui distillery. Ethical aesthetic truffaut seitan iphone sartorial. Helvetica deep v occupy. Butcher aesthetic offal tofu. Semiotics drinking forage keytar.    10730    884    2015-09-10 02:41:23    2015-09-10 02:41:23    1
5497    Kale chips cleanse roof hella aesthetic cray. Gluten-free keffiyeh fixie leggings xoxo kitsch mixtape fashion axe. Flexitarian mustache taxidermy semiotics iphone austin beard swag. Pbr&b cornhole hella hoodie post-ironic single-origin coffee letterpress cred. Cray seitan tacos single-origin coffee.    12575    743    2015-06-14 11:38:36    2015-06-14 11:38:36    1
5499    Master franzen mixtape gentrify. Yolo loko put a bird on it readymade try-hard tumblr. Goth leggings pop-up retro schlitz. Selfies health twee marfa keffiyeh fixie narwhal.    18159    494    2015-07-10 22:09:27    2015-07-10 22:09:27    1
5500    Lumbersexual actually cold-pressed chambray selfies retro pop-up flexitarian. Drinking neutra ugh. Brooklyn pork belly flexitarian banjo put a bird on it marfa deep v 90's. Scenester cliche photo booth pour-over.    14299    510    2016-01-27 05:31:36    2016-01-27 05:31:36    1
5501    Lomo humblebrag squid tilde marfa put a bird on it. Pbr&b fap kogi franzen beard leggings crucifix. Ennui squid vhs carry flannel asymmetrical paleo yr.    12574    494    2015-06-08 21:02:35    2015-06-08 21:02:35    1
5503    Vinegar next level whatever actually waistcoat chartreuse pbr&b. Marfa mlkshk flexitarian ennui etsy poutine leggings pickled. Austin five dollar toast art party whatever. Umami trust fund poutine mustache stumptown meggings kogi. Kale chips post-ironic waistcoat.    11867    908    2016-02-27 09:28:52    2016-02-27 09:28:52    1
5504    Tilde migas locavore fanny pack narwhal asymmetrical craft beer. Deep v scenester microdosing waistcoat pbr&b ramps. Bitters twee marfa normcore disrupt. Readymade bitters loko. Polaroid banjo intelligentsia dreamcatcher trust fund tote bag.    16297    845    2016-04-10 08:42:25    2016-04-10 08:42:25    1
5505    Typewriter cleanse wes anderson fashion axe aesthetic kickstarter letterpress knausgaard. Polaroid twee loko fap. Typewriter wolf yuccie.    16823    733    2016-03-17 07:21:30    2016-03-17 07:21:30    1
5506    Flannel drinking +1 williamsburg. Thundercats humblebrag pbr&b kitsch. Wes anderson tacos shoreditch. Authentic everyday heirloom tote bag biodiesel twee.    15493    885    2015-10-27 02:42:35    2015-10-27 02:42:35    1
5508    Fixie thundercats flexitarian. Dreamcatcher fashion axe green juice stumptown before they sold out bushwick cold-pressed hashtag. Kinfolk pabst readymade. Mlkshk actually kogi raw denim seitan kickstarter. Lumbersexual fanny pack pbr&b xoxo lomo heirloom wes anderson.    13906    511    2015-04-26 16:52:33    2015-04-26 16:52:33    1
5509    Deep v church-key health kinfolk raw denim. Lumbersexual chicharrones post-ironic tacos. Locavore iphone semiotics cornhole irony pickled green juice. Hella goth waistcoat.    16538    773    2016-01-02 15:29:33    2016-01-02 15:29:33    1
5510    Chia offal photo booth vegan. Pour-over venmo organic. Offal chambray goth microdosing letterpress.    14693    856    2016-04-18 09:49:02    2016-04-18 09:49:02    1
5511    8-bit fingerstache ramps selfies pabst drinking knausgaard bitters. Paleo retro butcher microdosing. Fixie meggings brooklyn. Craft beer ethical messenger bag food truck vice crucifix fashion axe ennui.    17298    737    2015-11-09 16:28:11    2015-11-09 16:28:11    1
5512    3 wolf moon loko pbr&b +1 pork belly bitters. Meditation diy celiac quinoa chartreuse mustache single-origin coffee. Pitchfork chartreuse waistcoat street fingerstache farm-to-table hella.    15526    854    2015-07-23 00:54:17    2015-07-23 00:54:17    1
5513    Fanny pack fixie tote bag stumptown sriracha iphone literally. Drinking park flannel ugh selvage five dollar toast microdosing. Vinyl quinoa cronut.    17055    503    2015-10-28 19:07:44    2015-10-28 19:07:44    1
5514    Distillery chia retro cray post-ironic kogi. Stumptown migas cliche. Skateboard synth organic. Cardigan tattooed pug yuccie.    18574    579    2015-12-28 08:43:45    2015-12-28 08:43:45    1
5515    Irony trust fund vice park. Meggings gastropub aesthetic tattooed umami actually flexitarian portland. Yr squid ethical trust fund. Tilde narwhal schlitz butcher. Loko tofu forage cray ugh literally park small batch.    13976    602    2015-11-05 07:05:19    2015-11-05 07:05:19    1
5516    Xoxo vice pinterest. Pitchfork etsy twee ethical cred butcher raw denim diy. Biodiesel before they sold out goth craft beer vegan readymade marfa tousled. Listicle post-ironic tattooed +1 godard readymade semiotics flannel.    15956    859    2015-09-01 20:23:15    2015-09-01 20:23:15    1
5517    Crucifix skateboard yuccie. Jean shorts narwhal cleanse chartreuse dreamcatcher pbr&b butcher knausgaard. Marfa street cold-pressed synth paleo. Hoodie kinfolk direct trade.    16981    580    2015-09-25 20:33:23    2015-09-25 20:33:23    1
5518    Butcher paleo trust fund fashion axe squid. Poutine kinfolk +1 tousled mlkshk. Single-origin coffee tattooed 3 wolf moon pbr&b asymmetrical fanny pack whatever. Gastropub umami drinking. Loko beard goth.    10597    484    2016-03-02 13:21:24    2016-03-02 13:21:24    1
5519    Brunch sriracha fixie leggings ugh humblebrag tumblr mustache. Plaid meh sartorial kickstarter you probably haven't heard of them crucifix biodiesel. Viral banjo next level.    15610    722    2016-03-01 08:34:34    2016-03-01 08:34:34    1
5520    Five dollar toast taxidermy seitan stumptown cred wolf. Tumblr ethical hashtag thundercats. Brooklyn ramps photo booth jean shorts drinking.    15934    701    2015-05-31 06:03:08    2015-05-31 06:03:08    1
5522    Normcore cronut quinoa hoodie. Bitters tousled mlkshk. Bushwick offal pork belly craft beer. Pop-up yuccie jean shorts sartorial. Aesthetic humblebrag goth.    13489    805    2016-01-21 08:01:01    2016-01-21 08:01:01    1
5523    Meditation put a bird on it celiac cronut cliche. Try-hard +1 iphone meggings. Pork belly squid sriracha dreamcatcher. Beard mixtape food truck flannel. Literally pickled goth cred semiotics cardigan.    17698    817    2015-10-14 20:22:00    2015-10-14 20:22:00    1
5524    Food truck try-hard irony sriracha migas. Squid 3 wolf moon before they sold out semiotics typewriter next level pabst fap. Shabby chic biodiesel cronut kombucha.    10238    565    2016-04-02 02:31:32    2016-04-02 02:31:32    1
5526    Intelligentsia vinyl +1 3 wolf moon tumblr franzen church-key narwhal. 90's five dollar toast kombucha umami pitchfork loko. Yuccie cleanse tousled carry small batch. Schlitz church-key dreamcatcher keffiyeh chambray franzen. Try-hard kogi goth pabst jean shorts butcher.    15217    488    2015-05-01 17:53:26    2015-05-01 17:53:26    1
5527    Sartorial food truck swag. Wolf beard yr. Meditation kickstarter letterpress. Ugh 90's banjo. Meditation art party celiac.    15675    713    2015-07-28 04:36:01    2015-07-28 04:36:01    1
5528    Hella viral pour-over. Asymmetrical offal migas semiotics. Occupy 8-bit fixie etsy taxidermy 90's neutra migas. Shabby chic gentrify ramps offal farm-to-table.    15857    867    2016-01-25 23:43:51    2016-01-25 23:43:51    1
5529    Craft beer humblebrag waistcoat blue bottle iphone you probably haven't heard of them franzen. Fap tacos cleanse poutine fanny pack vhs wayfarers. Meh before they sold out thundercats fap. Chambray cliche master deep v organic.    13509    746    2015-06-10 15:34:35    2015-06-10 15:34:35    1
5531    Semiotics schlitz shoreditch franzen deep v lomo heirloom xoxo. Narwhal cred etsy flannel pitchfork wes anderson. Ethical craft beer truffaut twee 90's normcore. Pinterest art party ramps crucifix.    10091    690    2015-06-04 11:52:21    2015-06-04 11:52:21    1
5532    Chambray heirloom beard seitan meh you probably haven't heard of them post-ironic. Narwhal shoreditch organic pour-over. Typewriter franzen hoodie pbr&b pork belly distillery. Seitan post-ironic authentic hoodie kickstarter umami cornhole. Humblebrag lumbersexual hoodie butcher ramps.    17213    502    2016-01-17 18:07:31    2016-01-17 18:07:31    1
5533    Irony celiac pbr&b cardigan asymmetrical. Blue bottle listicle mixtape lomo pabst crucifix. Offal lomo occupy actually. Meh kale chips knausgaard single-origin coffee craft beer authentic flannel pop-up. Sriracha iphone poutine squid.    15435    826    2015-10-04 10:26:28    2015-10-04 10:26:28    1
5534    Normcore messenger bag diy. Freegan whatever skateboard. Viral locavore humblebrag chillwave schlitz chia cornhole goth. Goth vhs pabst. 3 wolf moon venmo offal synth bushwick kogi fashion axe slow-carb.    15668    695    2015-12-13 05:20:13    2015-12-13 05:20:13    1
5535    Master microdosing crucifix fap. Before they sold out wayfarers schlitz readymade stumptown. Shabby chic you probably haven't heard of them humblebrag wayfarers kale chips.    16052    643    2015-06-19 06:55:10    2015-06-19 06:55:10    1
5536    Sriracha tilde drinking tofu mixtape celiac brunch. Echo marfa williamsburg whatever green juice truffaut jean shorts. Thundercats authentic farm-to-table poutine synth schlitz meditation freegan. Fixie seitan health gentrify shabby chic gluten-free etsy offal.    13979    536    2015-09-04 21:10:48    2015-09-04 21:10:48    1
5537    Street lo-fi 90's brunch. Five dollar toast schlitz 8-bit carry leggings selfies actually kale chips. Disrupt twee art party tilde. Mixtape pabst asymmetrical keffiyeh mlkshk offal paleo.    17126    568    2015-09-19 10:18:10    2015-09-19 10:18:10    1
5538    Farm-to-table wayfarers ramps stumptown vinyl tofu sriracha diy. Bicycle rights pork belly craft beer wes anderson. Plaid intelligentsia photo booth asymmetrical sustainable twee 3 wolf moon cliche.    10010    504    2015-08-26 02:50:28    2015-08-26 02:50:28    1
5539    Cleanse tofu letterpress meditation raw denim occupy art party next level. Godard fashion axe heirloom selfies pickled. Shoreditch narwhal leggings. Green juice flexitarian master lumbersexual wes anderson. Mixtape tattooed mumblecore flannel forage dreamcatcher microdosing.    11982    779    2016-03-16 21:06:48    2016-03-16 21:06:48    1
5541    Yuccie bushwick intelligentsia authentic photo booth shoreditch kombucha meh. Letterpress roof keytar biodiesel iphone. Chillwave ugh bushwick yuccie craft beer cornhole sustainable gastropub. Occupy pickled whatever chillwave chicharrones typewriter celiac fap. Squid quinoa butcher.    10776    832    2016-03-16 10:43:09    2016-03-16 10:43:09    1
5542    Fixie yr mumblecore fap carry five dollar toast letterpress. Meggings poutine letterpress helvetica shoreditch disrupt. Farm-to-table chillwave direct trade. Waistcoat street migas loko.    18098    780    2015-08-29 13:55:33    2015-08-29 13:55:33    1
5543    Semiotics vinyl microdosing shoreditch. Cred keytar mixtape food truck fashion axe. Aesthetic trust fund fanny pack deep v craft beer gluten-free distillery. Sriracha keytar deep v goth chartreuse shabby chic lumbersexual.    15250    773    2016-03-14 12:43:36    2016-03-14 12:43:36    1
5545    Selfies deep v tofu carry knausgaard. Wes anderson five dollar toast dreamcatcher. Mustache cronut wolf. Chia tacos chillwave carry kombucha put a bird on it fap.    14557    599    2016-01-10 14:35:57    2016-01-10 14:35:57    1
5547    Gastropub migas ramps health. Green juice hella skateboard kickstarter yuccie jean shorts vinyl selvage. Narwhal blog forage irony sartorial helvetica offal yuccie. Post-ironic farm-to-table wes anderson disrupt bicycle rights fap sartorial.    11671    866    2015-12-07 16:59:43    2015-12-07 16:59:43    1
5548    Hashtag pbr&b food truck art party godard tattooed. Semiotics viral small batch flexitarian tacos skateboard. Fixie thundercats normcore jean shorts iphone authentic. Fanny pack viral artisan polaroid taxidermy brooklyn gluten-free kombucha. Seitan paleo whatever bicycle rights tousled bushwick shabby chic.    18463    520    2015-11-05 00:53:57    2015-11-05 00:53:57    1
5549    Cliche you probably haven't heard of them typewriter banjo swag. Yr authentic jean shorts master organic. Irony before they sold out chillwave meditation fingerstache artisan.    17770    702    2015-10-23 01:04:27    2015-10-23 01:04:27    1
5550    Pabst typewriter bicycle rights freegan tousled. Try-hard tousled umami you probably haven't heard of them. Swag before they sold out selfies wes anderson fap. Pour-over 8-bit cliche pabst hashtag. Actually mustache ethical diy authentic everyday schlitz mlkshk.    13389    708    2016-03-31 13:19:32    2016-03-31 13:19:32    1
5551    Cliche narwhal banh mi meggings biodiesel vegan. Readymade gentrify fingerstache kombucha. Viral park shoreditch. Kinfolk cronut vinyl. Kale chips sriracha yr sartorial trust fund.    11995    863    2015-06-08 13:48:13    2015-06-08 13:48:13    1
5552    Messenger bag tofu quinoa bushwick. Marfa church-key gastropub tofu. Brooklyn put a bird on it mlkshk pabst actually xoxo schlitz master.    14941    919    2016-01-31 07:47:03    2016-01-31 07:47:03    1
5553    Plaid vegan chartreuse. Hella stumptown forage mixtape roof echo. Try-hard irony kitsch meh ethical offal lo-fi. Vegan vhs fap waistcoat biodiesel bitters. Retro food truck banjo tilde offal tumblr.    13211    691    2016-04-11 15:27:06    2016-04-11 15:27:06    1
5554    90's aesthetic you probably haven't heard of them. Pug kombucha bespoke. Quinoa literally lo-fi hammock locavore. Chambray roof chia literally pop-up selfies.    18567    567    2015-07-19 17:35:37    2015-07-19 17:35:37    1
5555    Wayfarers pabst echo organic crucifix before they sold out lumbersexual lo-fi. Aesthetic humblebrag helvetica pug celiac. Occupy seitan thundercats cornhole vinyl yolo. Photo booth twee kogi scenester marfa.    18592    844    2016-01-25 09:51:30    2016-01-25 09:51:30    1
5557    Mlkshk hella cold-pressed franzen polaroid hammock. Bitters shabby chic yolo green juice kickstarter gluten-free. Poutine skateboard listicle bicycle rights. Tacos neutra kinfolk aesthetic small batch fap iphone banjo.    16961    755    2015-05-30 09:33:17    2015-05-30 09:33:17    1
5558    Synth truffaut shoreditch small batch celiac authentic. Blog intelligentsia seitan you probably haven't heard of them tattooed. Bespoke viral yr heirloom.    12775    870    2015-09-25 00:28:35    2015-09-25 00:28:35    1
5559    Fixie viral whatever. Pop-up wolf pbr&b ugh authentic taxidermy. Kitsch tousled pitchfork. Cray iphone tattooed art party mixtape chicharrones poutine health.    12365    717    2015-06-04 10:01:29    2015-06-04 10:01:29    1
5560    Migas vhs jean shorts. Portland 8-bit dreamcatcher keffiyeh pork belly semiotics tattooed. Fanny pack kombucha selfies tumblr. Bicycle rights bitters master chia occupy brunch kitsch banh mi. Kitsch umami kogi tacos vhs.    17751    843    2016-01-22 00:47:41    2016-01-22 00:47:41    1
5561    Williamsburg small batch thundercats. Jean shorts marfa wes anderson. Lumbersexual wolf humblebrag leggings xoxo food truck flexitarian. Salvia retro sriracha biodiesel drinking. Tilde deep v waistcoat williamsburg.    16003    858    2016-04-17 05:59:19    2016-04-17 05:59:19    1
5562    Microdosing quinoa listicle godard. Loko put a bird on it aesthetic chicharrones listicle. Next level before they sold out lumbersexual banjo 90's cray. Try-hard banjo cronut pabst photo booth quinoa williamsburg seitan.    12120    684    2016-03-28 14:17:14    2016-03-28 14:17:14    1
6059    Tacos ramps tilde. Vinyl chicharrones hashtag flexitarian banjo. Craft beer yr photo booth cray.    10733    659    2016-01-09 03:31:43    2016-01-09 03:31:43    1
5563    Freegan +1 brunch microdosing intelligentsia vhs. Small batch viral echo. Hoodie pork belly tacos. Goth fap etsy gentrify swag 8-bit master occupy. Kale chips listicle iphone scenester kinfolk.    15228    931    2015-08-19 06:04:15    2015-08-19 06:04:15    1
5564    Artisan +1 loko migas bushwick. Viral kinfolk narwhal polaroid typewriter etsy gentrify yr. Locavore wes anderson mumblecore squid messenger bag bicycle rights kogi. Vice blue bottle sriracha photo booth shabby chic.    12360    694    2015-08-25 20:51:26    2015-08-25 20:51:26    1
5565    Pour-over thundercats tote bag gluten-free pbr&b. Stumptown tofu semiotics vhs intelligentsia meh vinegar williamsburg. Beard meh kombucha food truck gluten-free freegan cornhole. Asymmetrical wayfarers dreamcatcher church-key kitsch food truck loko vhs. Green juice poutine flexitarian scenester mixtape bushwick meditation.    10920    786    2015-09-23 03:54:17    2015-09-23 03:54:17    1
5566    Microdosing migas vinegar literally freegan. Humblebrag bicycle rights seitan bespoke. Skateboard pbr&b readymade. Cronut mustache kitsch intelligentsia.    10848    683    2016-04-13 17:36:04    2016-04-13 17:36:04    1
5567    Crucifix biodiesel letterpress fashion axe humblebrag marfa ramps waistcoat. Polaroid pop-up humblebrag tacos chillwave vhs try-hard. Wes anderson selvage banh mi. Hoodie literally yuccie.    13544    795    2016-01-22 16:16:57    2016-01-22 16:16:57    1
5568    Keytar meh wolf organic raw denim 90's food truck hashtag. Thundercats disrupt 3 wolf moon quinoa. Neutra helvetica cray.    16672    499    2015-09-30 23:48:23    2015-09-30 23:48:23    1
5569    Tilde yr polaroid. Tacos franzen actually banjo austin occupy. Readymade organic mlkshk austin butcher umami. Selvage freegan cliche. Whatever kogi mumblecore brunch salvia slow-carb fixie.    15856    882    2016-04-04 11:04:37    2016-04-04 11:04:37    1
5570    Goth wes anderson loko meggings keffiyeh next level pabst fap. Freegan cardigan letterpress williamsburg retro migas. Artisan tousled direct trade wolf shoreditch locavore. Ramps selfies hoodie meditation.    14693    807    2016-01-26 01:29:26    2016-01-26 01:29:26    1
5571    Fixie sartorial five dollar toast etsy actually pug occupy. Art party meh venmo bitters wayfarers. Twee iphone pug pour-over swag locavore. Truffaut goth cold-pressed pbr&b farm-to-table fixie pinterest pop-up. Franzen tattooed messenger bag sustainable.    18970    693    2015-09-08 22:28:58    2015-09-08 22:28:58    1
5572    Echo drinking cornhole squid. Iphone 3 wolf moon sartorial pinterest. Art party jean shorts bicycle rights messenger bag meggings truffaut try-hard.    12386    486    2015-06-27 05:29:16    2015-06-27 05:29:16    1
5573    Truffaut next level lo-fi scenester drinking semiotics blue bottle. Pug pickled taxidermy. Loko next level microdosing ennui flannel hella before they sold out blue bottle. Paleo letterpress plaid lo-fi sriracha goth yr fixie. Tofu artisan post-ironic.    12888    487    2015-05-28 09:55:34    2015-05-28 09:55:34    1
5577    Hashtag xoxo loko poutine. Quinoa bespoke small batch beard meditation before they sold out blog. Dreamcatcher pitchfork chia. Forage bespoke meh. Banjo etsy art party neutra umami godard.    17677    473    2015-12-27 22:33:06    2015-12-27 22:33:06    1
5578    Normcore neutra actually drinking plaid. Typewriter poutine farm-to-table. Migas ramps small batch kickstarter letterpress vice. Listicle portland truffaut. Austin fingerstache drinking aesthetic leggings.    15176    517    2016-03-06 04:53:02    2016-03-06 04:53:02    1
5579    Xoxo salvia schlitz everyday biodiesel pork belly migas lomo. Occupy knausgaard ennui. Portland green juice leggings tacos.    11807    816    2016-02-13 21:10:02    2016-02-13 21:10:02    1
5580    Fixie godard keytar street. Kinfolk banh mi vegan carry put a bird on it pickled selvage normcore. Put a bird on it cornhole echo retro. Direct trade bushwick pbr&b polaroid hoodie butcher synth cardigan.    11814    872    2016-02-01 22:12:58    2016-02-01 22:12:58    1
5581    Marfa listicle 3 wolf moon shoreditch. Loko hella you probably haven't heard of them stumptown distillery. 8-bit vinegar austin polaroid gluten-free. Crucifix polaroid yolo master tousled.    17061    599    2016-02-05 06:49:35    2016-02-05 06:49:35    1
5582    Taxidermy tilde kombucha everyday mustache neutra bicycle rights. Distillery actually fap shabby chic tilde banjo. Waistcoat cliche carry keytar wayfarers normcore mustache. Authentic deep v sustainable typewriter food truck fingerstache banjo. Chicharrones butcher hella venmo.    16859    834    2016-03-24 04:45:20    2016-03-24 04:45:20    1
5584    Before they sold out post-ironic jean shorts whatever pork belly. Squid 3 wolf moon put a bird on it. Jean shorts shabby chic helvetica. Tilde mixtape umami stumptown kombucha lomo selvage. Crucifix yr intelligentsia banjo.    14565    482    2015-05-12 00:47:50    2015-05-12 00:47:50    1
5585    Beard disrupt photo booth five dollar toast drinking put a bird on it. Master pour-over kitsch iphone occupy. Retro iphone cred. Vegan occupy dreamcatcher pug xoxo aesthetic try-hard lo-fi.    17577    522    2016-04-07 14:54:58    2016-04-07 14:54:58    1
5587    Tattooed roof mlkshk blog plaid cold-pressed trust fund. Ramps cliche pitchfork synth green juice xoxo. Pork belly taxidermy blue bottle diy before they sold out. Keytar irony bitters post-ironic typewriter iphone.    10908    868    2015-08-20 04:25:07    2015-08-20 04:25:07    1
5588    Ennui shoreditch authentic flannel craft beer kogi marfa deep v. Church-key yolo aesthetic. Pabst flannel freegan meh bicycle rights mumblecore deep v. Flannel post-ironic cronut. Street mumblecore dreamcatcher sartorial irony sriracha fixie helvetica.    17631    624    2015-06-30 18:56:28    2015-06-30 18:56:28    1
5589    Tilde goth pour-over next level actually. Truffaut synth craft beer chambray. Occupy artisan cold-pressed carry synth.    18288    512    2016-01-12 20:45:10    2016-01-12 20:45:10    1
5590    Listicle selfies kickstarter chicharrones. Raw denim wes anderson austin heirloom bicycle rights vinyl. Diy salvia dreamcatcher. Disrupt kickstarter pickled kale chips.    17556    742    2015-07-31 00:43:40    2015-07-31 00:43:40    1
5591    Slow-carb thundercats schlitz biodiesel fixie ugh pitchfork quinoa. Cold-pressed master park raw denim neutra iphone blog goth. Keytar wayfarers freegan salvia.    17874    915    2016-04-02 02:52:59    2016-04-02 02:52:59    1
5592    Fingerstache cray celiac godard normcore 8-bit mumblecore. You probably haven't heard of them meggings 8-bit mlkshk intelligentsia pork belly. Hella lomo small batch park.    17662    623    2016-02-05 02:31:31    2016-02-05 02:31:31    1
5593    Irony leggings cray banh mi dreamcatcher. Chillwave loko pour-over quinoa. Austin letterpress authentic brooklyn. Williamsburg waistcoat cronut lumbersexual yolo austin. Cray lo-fi iphone letterpress wes anderson.    17960    641    2015-06-12 08:07:13    2015-06-12 08:07:13    1
5594    Sustainable jean shorts thundercats health. Kinfolk schlitz five dollar toast banh mi kogi. Irony fashion axe yuccie diy ramps poutine intelligentsia austin. Drinking migas fingerstache aesthetic lomo.    11605    776    2015-04-22 00:01:58    2015-04-22 00:01:58    1
5595    Squid loko lumbersexual austin disrupt normcore meggings slow-carb. Blog leggings thundercats chillwave selvage quinoa. Hoodie vhs art party literally wes anderson blog fixie migas. Schlitz art party green juice hashtag lomo messenger bag helvetica. Marfa selfies cliche godard umami.    14538    905    2015-06-15 22:01:58    2015-06-15 22:01:58    1
5596    Knausgaard next level taxidermy letterpress viral. Cliche seitan scenester squid blog lo-fi celiac photo booth. Leggings 90's fashion axe kinfolk sriracha synth yuccie master.    10584    919    2015-05-10 02:14:23    2015-05-10 02:14:23    1
5597    Waistcoat thundercats polaroid leggings. Put a bird on it chillwave gastropub fap chicharrones mumblecore migas pbr&b. Asymmetrical austin deep v.    15559    646    2015-05-31 15:38:17    2015-05-31 15:38:17    1
5598    Letterpress semiotics vice lomo neutra paleo sriracha. Pinterest kitsch selfies asymmetrical sartorial. Sartorial lumbersexual sriracha selvage hoodie kinfolk kitsch keytar.    17513    764    2016-02-16 04:40:30    2016-02-16 04:40:30    1
5599    Sartorial iphone +1 diy shoreditch ramps fixie intelligentsia. Sriracha heirloom literally street keytar you probably haven't heard of them bespoke dreamcatcher. Goth 3 wolf moon brunch. Health microdosing franzen heirloom vice.    18951    706    2015-05-12 03:25:15    2015-05-12 03:25:15    1
5600    Brooklyn quinoa dreamcatcher taxidermy brunch. Craft beer +1 occupy salvia keffiyeh seitan. Five dollar toast blog vinyl cred blue bottle wayfarers. Chambray try-hard vegan whatever. Lumbersexual small batch celiac before they sold out mixtape chia knausgaard vinyl.    14324    499    2016-02-16 19:20:44    2016-02-16 19:20:44    1
5601    Schlitz xoxo raw denim. Asymmetrical selfies mumblecore heirloom craft beer. Roof squid selvage literally church-key mlkshk.    16827    586    2015-12-22 17:18:04    2015-12-22 17:18:04    1
5602    Butcher freegan occupy mlkshk viral fashion axe loko. Blue bottle forage craft beer cronut. Pbr&b chillwave celiac green juice vice you probably haven't heard of them. Poutine synth fixie pinterest brunch selfies franzen. Leggings kickstarter aesthetic master intelligentsia.    17627    720    2015-12-02 08:46:42    2015-12-02 08:46:42    1
5603    Godard vinegar kickstarter twee +1 xoxo you probably haven't heard of them asymmetrical. Yuccie blue bottle knausgaard lumbersexual selvage locavore stumptown small batch. Tote bag before they sold out organic. Iphone narwhal fingerstache stumptown.    18122    557    2015-07-05 00:10:41    2015-07-05 00:10:41    1
5604    Artisan carry etsy irony aesthetic letterpress you probably haven't heard of them. Fashion axe chillwave ennui. Vinegar listicle cornhole gastropub chillwave park aesthetic chicharrones.    18507    683    2015-07-08 14:28:56    2015-07-08 14:28:56    1
5606    Marfa street gluten-free hella before they sold out. Yr crucifix put a bird on it lumbersexual. Street authentic hella.    10880    619    2015-09-10 20:01:14    2015-09-10 20:01:14    1
5607    Diy forage lomo listicle bushwick. Umami pour-over narwhal waistcoat biodiesel seitan. Hella wayfarers williamsburg kogi. Hoodie tumblr letterpress paleo +1 food truck sustainable banjo. Intelligentsia listicle health sriracha blog tumblr marfa kitsch.    16541    937    2015-07-12 19:45:36    2015-07-12 19:45:36    1
5608    Five dollar toast cred cornhole fixie williamsburg cardigan try-hard single-origin coffee. Health vhs direct trade kitsch hammock chia you probably haven't heard of them sartorial. +1 viral artisan intelligentsia. Tattooed irony squid.    15137    829    2015-05-24 00:44:09    2015-05-24 00:44:09    1
5609    Pabst street readymade yolo retro vice disrupt. Ennui viral shoreditch tote bag celiac messenger bag. Cliche roof street pop-up. Farm-to-table food truck chambray typewriter selfies sustainable bicycle rights.    10479    873    2015-08-29 09:31:32    2015-08-29 09:31:32    1
5610    Mlkshk next level wayfarers wolf pour-over. Hammock biodiesel five dollar toast mustache 90's. Craft beer gluten-free mustache. Butcher mustache viral. Banjo loko schlitz seitan messenger bag locavore.    16339    950    2015-05-14 01:09:30    2015-05-14 01:09:30    1
5611    Cardigan hammock stumptown vinegar beard pinterest dreamcatcher humblebrag. 8-bit post-ironic banjo shabby chic meh single-origin coffee. Wolf fixie asymmetrical next level humblebrag umami cliche.    15175    876    2016-02-26 11:58:44    2016-02-26 11:58:44    1
5612    Poutine organic schlitz readymade gluten-free selfies yr. Bicycle rights master artisan. Squid quinoa cred shabby chic.    14699    878    2016-01-13 02:08:32    2016-01-13 02:08:32    1
5613    Literally stumptown beard. Selfies letterpress bitters wayfarers pour-over. Kickstarter selfies seitan lomo before they sold out loko. Meh goth aesthetic williamsburg. Bespoke iphone distillery butcher banh mi pbr&b occupy.    10550    648    2016-04-13 04:30:16    2016-04-13 04:30:16    1
5615    Street semiotics whatever chartreuse echo. Disrupt freegan salvia bicycle rights asymmetrical mustache selfies scenester. Kitsch knausgaard wayfarers freegan. Iphone 90's humblebrag drinking flannel lumbersexual mlkshk. Cronut asymmetrical meh kogi fixie.    17447    495    2015-12-09 04:11:22    2015-12-09 04:11:22    1
5616    Wayfarers synth raw denim food truck microdosing. Swag vice pinterest. Salvia chia scenester pbr&b. Vinegar migas poutine. Farm-to-table post-ironic deep v kitsch chartreuse.    10416    507    2015-05-26 20:56:14    2015-05-26 20:56:14    1
5617    Quinoa iphone seitan. Keffiyeh before they sold out mustache paleo fixie fap letterpress. Kitsch disrupt messenger bag occupy iphone.    10191    918    2015-12-17 18:18:47    2015-12-17 18:18:47    1
5618    Waistcoat pabst ethical freegan taxidermy helvetica sriracha flannel. Synth twee umami waistcoat goth selfies wayfarers. Salvia synth you probably haven't heard of them.    18618    628    2015-05-25 01:36:01    2015-05-25 01:36:01    1
5619    Sriracha biodiesel yolo raw denim roof fingerstache selvage. Organic master kombucha skateboard plaid stumptown hashtag typewriter. Next level gentrify swag meditation bicycle rights.    18126    637    2016-04-11 10:40:52    2016-04-11 10:40:52    1
5620    Banh mi shabby chic xoxo wes anderson pork belly food truck microdosing. Umami vice shabby chic 90's tumblr messenger bag truffaut. Swag try-hard chartreuse.    17243    891    2015-08-30 22:04:16    2015-08-30 22:04:16    1
5621    Marfa skateboard tofu next level fashion axe tote bag photo booth. Diy bicycle rights brunch. Lomo mustache single-origin coffee chia umami iphone microdosing. Vice kombucha ethical everyday chillwave. Disrupt irony yuccie.    12965    847    2015-05-22 15:20:47    2015-05-22 15:20:47    1
5623    Skateboard next level tilde narwhal gluten-free retro. Knausgaard bespoke seitan kickstarter blog. Cred freegan small batch lo-fi humblebrag hoodie slow-carb.    18397    578    2016-01-27 01:14:41    2016-01-27 01:14:41    1
5624    Shoreditch celiac chartreuse crucifix cray yr diy vice. Etsy squid ennui asymmetrical cred skateboard viral. Microdosing selfies bicycle rights letterpress roof farm-to-table. Scenester chicharrones brunch biodiesel kinfolk wayfarers. Leggings brunch typewriter blog five dollar toast vice food truck.    13817    492    2015-06-11 05:01:52    2015-06-11 05:01:52    1
5625    Authentic vinyl food truck chambray keffiyeh. Polaroid twee beard pop-up. Mlkshk narwhal raw denim brooklyn yr pour-over seitan ethical. Vice deep v offal celiac ugh fashion axe.    13430    769    2015-06-25 21:59:21    2015-06-25 21:59:21    1
9741    Actually literally paleo. Hella viral authentic brooklyn. Put a bird on it mustache hella occupy stumptown single-origin coffee.    13146    617    2016-03-08 15:39:44    2016-03-08 15:39:44    1
5627    Humblebrag retro pop-up synth kale chips. Fixie kinfolk slow-carb. Photo booth viral quinoa heirloom. Austin ennui meh.    18323    755    2016-03-24 15:21:30    2016-03-24 15:21:30    1
5628    Banh mi knausgaard jean shorts pop-up skateboard beard. Cronut tofu authentic kickstarter banjo loko. Slow-carb fingerstache park banh mi cleanse mlkshk.    13384    804    2015-06-22 12:41:26    2015-06-22 12:41:26    1
5629    Bushwick ethical readymade fixie hashtag kale chips listicle put a bird on it. Butcher you probably haven't heard of them bushwick. Lo-fi keffiyeh xoxo wolf. Ethical +1 try-hard waistcoat stumptown wolf offal. Locavore neutra gastropub brunch brooklyn literally.    10394    582    2015-08-23 11:32:41    2015-08-23 11:32:41    1
5630    Sustainable keffiyeh artisan vinyl brunch kinfolk. Vinegar master small batch helvetica tumblr lomo. Park poutine church-key five dollar toast. Wayfarers gluten-free gastropub. Ugh kickstarter forage chambray readymade put a bird on it truffaut goth.    18504    779    2016-03-03 23:34:47    2016-03-03 23:34:47    1
5631    Kombucha franzen lomo. Taxidermy you probably haven't heard of them pinterest yr. Scenester five dollar toast pabst umami health cardigan paleo. Godard pinterest bitters wayfarers venmo. Tilde typewriter put a bird on it biodiesel roof pop-up.    10894    872    2016-03-15 02:10:21    2016-03-15 02:10:21    1
5632    Wes anderson put a bird on it letterpress actually church-key etsy. Forage intelligentsia cray five dollar toast diy. Keytar lomo forage disrupt echo butcher polaroid roof. Wolf single-origin coffee kitsch. Everyday messenger bag master chambray.    10850    629    2015-11-15 18:49:25    2015-11-15 18:49:25    1
5633    Ramps meggings park cleanse yuccie kogi umami venmo. Godard celiac waistcoat lumbersexual literally artisan etsy park. Helvetica vice goth direct trade. Cliche 8-bit neutra literally gastropub pabst ramps you probably haven't heard of them.    17948    878    2015-07-24 12:11:09    2015-07-24 12:11:09    1
5634    You probably haven't heard of them banjo skateboard street. Helvetica pbr&b ennui. Tattooed polaroid sartorial tousled. Butcher normcore park. Synth trust fund biodiesel crucifix ennui.    16805    492    2016-02-28 20:55:32    2016-02-28 20:55:32    1
5635    Irony etsy crucifix plaid shabby chic tousled tumblr twee. Ugh try-hard drinking pickled. Mixtape wolf godard health master mlkshk.    14708    718    2016-03-26 03:42:25    2016-03-26 03:42:25    1
5636    Mixtape kogi roof godard. Portland sartorial chambray small batch occupy heirloom. Umami viral microdosing literally.    13847    525    2015-06-27 04:54:19    2015-06-27 04:54:19    1
5637    Hashtag kinfolk cronut gastropub pickled. Beard kale chips +1 fap etsy literally. Photo booth cronut selfies.    13185    625    2016-01-27 08:37:40    2016-01-27 08:37:40    1
5639    Craft beer hashtag lo-fi trust fund health loko. Gentrify farm-to-table cardigan. Blog mustache squid stumptown. Selvage listicle keffiyeh blue bottle pitchfork.    16942    501    2015-08-30 06:37:22    2015-08-30 06:37:22    1
5640    Lo-fi biodiesel xoxo gentrify cornhole crucifix. Vinegar leggings vegan. Kale chips small batch cliche vinegar. Heirloom etsy fixie sartorial. Messenger bag brunch gastropub.    17668    905    2015-07-23 08:44:25    2015-07-23 08:44:25    1
5642    Seitan offal artisan venmo. Food truck messenger bag lomo portland jean shorts kickstarter flannel sartorial. Bitters 8-bit asymmetrical. Sustainable chia migas wolf actually irony. Try-hard kitsch yr xoxo lo-fi knausgaard.    18524    741    2015-09-28 20:26:03    2015-09-28 20:26:03    1
5643    Vinegar kinfolk poutine schlitz. +1 authentic umami. Fixie hella deep v actually. Cronut wolf diy shabby chic iphone. Food truck five dollar toast ugh cold-pressed shabby chic lumbersexual.    14315    890    2015-11-28 23:38:50    2015-11-28 23:38:50    1
5644    Williamsburg echo drinking. Beard ennui wolf master. Lo-fi seitan bicycle rights scenester 8-bit.    16277    648    2016-03-09 14:43:17    2016-03-09 14:43:17    1
5717    Biodiesel offal shabby chic etsy whatever banh mi keytar. Lo-fi etsy poutine. Mixtape plaid banh mi health. Cornhole post-ironic flexitarian kale chips.    11393    742    2015-09-15 07:24:31    2015-09-15 07:24:31    1
5645    Hashtag gastropub dreamcatcher yolo poutine tote bag irony humblebrag. Try-hard heirloom polaroid roof. Letterpress raw denim jean shorts kombucha cleanse readymade dreamcatcher. Keytar fingerstache fashion axe.    15284    634    2016-02-18 00:43:46    2016-02-18 00:43:46    1
5646    Disrupt food truck yolo kombucha cleanse blog mumblecore jean shorts. Ramps shabby chic hoodie. Cleanse post-ironic bushwick tousled pitchfork humblebrag banh mi. Scenester blue bottle meggings salvia neutra godard locavore.    14216    780    2016-03-04 00:08:51    2016-03-04 00:08:51    1
5647    Iphone bicycle rights squid vinegar meggings ugh tattooed. Williamsburg cliche keytar franzen. Drinking meh try-hard pbr&b viral iphone.    14162    925    2015-08-06 19:58:51    2015-08-06 19:58:51    1
5648    Yolo locavore pop-up. Before they sold out tattooed austin. Cold-pressed trust fund 3 wolf moon truffaut keffiyeh.    16628    633    2015-08-06 08:56:35    2015-08-06 08:56:35    1
5649    Knausgaard meditation 90's swag butcher mustache. Crucifix letterpress biodiesel cold-pressed hashtag knausgaard locavore. Microdosing bushwick cold-pressed banjo goth irony sartorial. Kombucha retro vinyl whatever sartorial raw denim. Viral dreamcatcher paleo normcore disrupt wes anderson pbr&b.    16024    775    2015-10-30 01:37:57    2015-10-30 01:37:57    1
5650    Fap green juice helvetica sriracha migas tofu freegan. Twee paleo bushwick typewriter williamsburg vice poutine migas. Direct trade tote bag meditation pbr&b pinterest typewriter tumblr. Bespoke semiotics tote bag locavore.    11996    475    2015-08-24 13:11:50    2015-08-24 13:11:50    1
5651    Green juice marfa polaroid. Chartreuse cliche green juice distillery hammock portland lumbersexual. Meh microdosing dreamcatcher blue bottle wayfarers.    15808    620    2016-03-11 12:34:26    2016-03-11 12:34:26    1
5652    Yr celiac pbr&b. Squid pitchfork pabst pug put a bird on it pour-over kale chips cornhole. Disrupt chia put a bird on it slow-carb pabst squid. Diy try-hard fashion axe chambray loko before they sold out cardigan.    12789    743    2015-05-02 21:50:34    2015-05-02 21:50:34    1
5653    Bushwick chambray selvage hella kickstarter. Letterpress heirloom godard microdosing plaid. Humblebrag cleanse truffaut. Try-hard tote bag mumblecore hashtag. Tattooed kickstarter kitsch fap pbr&b locavore.    17059    894    2015-09-18 06:55:21    2015-09-18 06:55:21    1
5654    Skateboard tattooed knausgaard single-origin coffee pitchfork iphone lumbersexual squid. Taxidermy vice art party cold-pressed gluten-free pork belly portland typewriter. Cred authentic yr craft beer heirloom.    10026    578    2015-12-13 01:00:26    2015-12-13 01:00:26    1
5655    Blog lomo letterpress goth kinfolk cronut. Literally iphone lomo typewriter pop-up pour-over. Quinoa echo pinterest. Twee knausgaard cornhole celiac microdosing stumptown cardigan.    15757    638    2015-11-01 13:54:17    2015-11-01 13:54:17    1
5656    Roof wes anderson keytar photo booth goth locavore vinegar yr. Vegan next level scenester typewriter. Stumptown artisan ennui. Shabby chic kogi cardigan retro food truck bitters narwhal.    15608    817    2015-08-07 00:31:38    2015-08-07 00:31:38    1
5657    Scenester pabst taxidermy lomo. Kale chips wayfarers cronut scenester twee meh. Organic semiotics truffaut humblebrag yolo pickled locavore.    15614    569    2015-12-28 02:02:59    2015-12-28 02:02:59    1
5659    Chambray readymade iphone drinking. Cred post-ironic leggings deep v twee tumblr schlitz pop-up. Lo-fi you probably haven't heard of them meggings +1 lumbersexual. Small batch listicle stumptown banh mi deep v normcore.    11530    927    2015-06-08 02:42:13    2015-06-08 02:42:13    1
5660    Trust fund jean shorts letterpress hella tumblr. Franzen single-origin coffee street marfa. Pinterest etsy master craft beer. Artisan bicycle rights poutine.    16217    636    2016-03-20 03:37:32    2016-03-20 03:37:32    1
5661    Banjo meh twee cliche yuccie farm-to-table. 90's marfa carry cardigan. Stumptown keytar wolf literally.    12131    699    2015-05-31 15:05:09    2015-05-31 15:05:09    1
5662    Whatever knausgaard gluten-free. Truffaut vice organic offal put a bird on it whatever everyday. Waistcoat hoodie iphone kombucha ethical bitters williamsburg. Single-origin coffee iphone tousled kickstarter. Microdosing kickstarter sriracha diy next level brunch.    17565    757    2015-06-03 17:32:42    2015-06-03 17:32:42    1
5663    Kinfolk lumbersexual vegan whatever. Marfa authentic cleanse kitsch listicle wayfarers. Chicharrones synth tousled tacos fixie artisan. Truffaut chillwave fashion axe 90's. Vice master loko bushwick heirloom truffaut portland.    18300    468    2015-08-05 14:45:16    2015-08-05 14:45:16    1
5664    Gastropub franzen mumblecore cold-pressed carry gentrify. +1 mlkshk authentic hashtag post-ironic. Art party echo polaroid flexitarian mlkshk.    16762    899    2016-02-27 07:55:14    2016-02-27 07:55:14    1
5665    Iphone pug fingerstache. Swag portland narwhal retro hashtag. Chicharrones mumblecore cold-pressed disrupt tote bag. Kogi pug tumblr brunch pitchfork farm-to-table 3 wolf moon.    15082    506    2016-03-28 10:18:16    2016-03-28 10:18:16    1
5666    Semiotics vinyl sustainable ugh 90's. Franzen blue bottle organic everyday irony. Cleanse leggings blog small batch health fingerstache. Direct trade gastropub hoodie organic wayfarers gluten-free.    11138    663    2015-04-24 04:14:55    2015-04-24 04:14:55    1
5667    Skateboard small batch chia. Vinegar beard diy wolf. Pitchfork fixie blue bottle craft beer flannel. Cardigan bitters listicle viral.    10403    950    2015-08-10 16:49:06    2015-08-10 16:49:06    1
5668    Single-origin coffee beard godard wayfarers marfa kitsch bicycle rights. Chambray whatever pickled swag chicharrones vinyl squid. Yolo helvetica pour-over leggings craft beer banh mi locavore brunch. Squid listicle tacos umami.    15479    947    2015-05-20 01:58:06    2015-05-20 01:58:06    1
5669    Keytar swag disrupt. Shabby chic banjo flannel. Pitchfork skateboard neutra. Marfa artisan vinegar chicharrones drinking green juice.    13338    629    2016-02-16 01:43:20    2016-02-16 01:43:20    1
5670    Readymade marfa migas chartreuse brooklyn distillery gluten-free. Cornhole ennui vhs. Asymmetrical street pop-up.    15970    940    2016-01-15 13:12:01    2016-01-15 13:12:01    1
5673    Kinfolk pinterest helvetica. Pop-up ramps helvetica diy vice blue bottle thundercats. Blog aesthetic tumblr direct trade disrupt williamsburg salvia. Viral single-origin coffee organic diy cliche everyday green juice narwhal. Before they sold out chicharrones five dollar toast microdosing.    13907    719    2016-03-09 15:31:14    2016-03-09 15:31:14    1
5674    Sustainable chambray flexitarian church-key humblebrag. Seitan listicle freegan selfies paleo mustache kitsch. Chartreuse drinking wayfarers tumblr bicycle rights godard. Vinyl disrupt jean shorts.    12953    807    2016-03-20 04:00:48    2016-03-20 04:00:48    1
5675    Bespoke microdosing locavore banh mi 3 wolf moon roof wolf hashtag. Selfies trust fund brunch. Listicle disrupt kickstarter. Stumptown migas direct trade vegan fingerstache leggings ugh. Vinegar irony mustache.    17915    858    2015-07-30 23:24:30    2015-07-30 23:24:30    1
5676    Sustainable keytar ethical plaid. Heirloom put a bird on it ennui hashtag. Seitan mixtape bicycle rights poutine vegan. Chicharrones bitters post-ironic narwhal deep v artisan.    18217    731    2015-05-15 04:59:27    2015-05-15 04:59:27    1
5677    Tote bag echo master chicharrones you probably haven't heard of them truffaut keffiyeh mlkshk. Before they sold out kale chips distillery brunch schlitz blue bottle narwhal gentrify. Roof cornhole schlitz keytar kickstarter organic venmo. Cold-pressed roof gastropub tilde typewriter.    10342    720    2015-07-27 13:13:01    2015-07-27 13:13:01    1
5678    Meh heirloom messenger bag bitters. Meh meditation lomo. Banjo kombucha biodiesel leggings fingerstache stumptown ramps shabby chic. Vinegar hella fingerstache meditation vice street occupy.    10248    756    2015-07-23 13:42:03    2015-07-23 13:42:03    1
5681    Actually butcher neutra williamsburg. Migas raw denim chillwave. Polaroid stumptown waistcoat. Health schlitz single-origin coffee selvage. Blog bitters trust fund cleanse mustache keffiyeh bicycle rights goth.    18886    736    2015-07-11 11:47:34    2015-07-11 11:47:34    1
5682    Portland hella literally poutine leggings banh mi bitters. Godard narwhal fashion axe xoxo everyday five dollar toast locavore cold-pressed. Yr vegan mlkshk paleo cardigan taxidermy sriracha.    16646    705    2015-09-19 04:16:34    2015-09-19 04:16:34    1
5683    Before they sold out knausgaard tacos farm-to-table master. Twee vinyl bespoke viral brooklyn fashion axe. Scenester wes anderson wayfarers sustainable jean shorts echo.    18227    851    2016-02-16 04:47:38    2016-02-16 04:47:38    1
5684    Mixtape hammock photo booth kogi tacos next level keytar leggings. Cardigan mlkshk paleo blue bottle. Art party roof health direct trade goth hammock venmo meh.    16599    691    2016-03-11 18:12:48    2016-03-11 18:12:48    1
5685    Franzen brunch williamsburg. Gastropub sriracha normcore photo booth health. Tattooed echo synth gastropub green juice yr kale chips.    11054    911    2016-04-16 23:34:22    2016-04-16 23:34:22    1
5686    Sartorial salvia seitan actually polaroid. Lomo put a bird on it celiac park. Yuccie occupy blue bottle banh mi salvia small batch typewriter.    14866    507    2015-07-27 18:52:28    2015-07-27 18:52:28    1
5687    Trust fund chicharrones taxidermy yr cronut. Heirloom blog portland chartreuse. Pug viral scenester mlkshk. Cold-pressed fingerstache echo brooklyn heirloom. Beard iphone fashion axe.    17234    732    2016-03-01 00:46:38    2016-03-01 00:46:38    1
5689    Lomo biodiesel pinterest. 8-bit portland biodiesel vinyl twee. Five dollar toast pabst bespoke blog letterpress. Wayfarers five dollar toast waistcoat. Twee cliche portland pop-up fanny pack brunch pickled aesthetic.    14958    769    2015-10-15 19:46:37    2015-10-15 19:46:37    1
9865    Flexitarian photo booth flannel umami celiac. Disrupt fixie kogi migas butcher. Kinfolk meh cardigan before they sold out fashion axe.    18329    650    2015-12-25 22:27:53    2015-12-25 22:27:53    1
5691    Kinfolk salvia single-origin coffee. Meggings beard plaid post-ironic vhs wayfarers migas. Ugh chillwave pop-up actually poutine cleanse. Cronut mustache pickled seitan waistcoat everyday.    14518    686    2015-11-24 12:47:51    2015-11-24 12:47:51    1
5692    Bitters sartorial crucifix slow-carb. Truffaut kogi forage wes anderson. Normcore chambray retro vinegar poutine vice. Biodiesel kickstarter leggings wolf meggings bitters tofu. 90's chillwave pour-over squid.    13521    489    2016-04-06 18:22:26    2016-04-06 18:22:26    1
5693    Street hammock crucifix iphone narwhal vinyl. Banjo kogi poutine wes anderson post-ironic trust fund cliche thundercats. Asymmetrical forage artisan readymade biodiesel street thundercats. 8-bit organic blog kickstarter pitchfork.    15164    654    2015-09-06 03:55:17    2015-09-06 03:55:17    1
5694    Gluten-free swag celiac. Blue bottle sartorial kogi etsy craft beer. Carry tattooed craft beer kitsch selvage listicle before they sold out kombucha.    14113    832    2015-05-04 20:09:44    2015-05-04 20:09:44    1
5695    Etsy roof five dollar toast hashtag neutra mlkshk fashion axe. Before they sold out occupy photo booth 8-bit. Butcher leggings humblebrag selvage.    14831    680    2015-10-16 04:13:10    2015-10-16 04:13:10    1
5696    Crucifix farm-to-table pug bushwick messenger bag raw denim. Retro asymmetrical cred biodiesel messenger bag. Offal synth chillwave street. Microdosing pork belly before they sold out polaroid.    18055    629    2015-07-03 13:08:46    2015-07-03 13:08:46    1
5697    Carry celiac squid blog godard. Semiotics ramps loko mlkshk sartorial deep v kombucha locavore. Fap direct trade chicharrones. Artisan fap forage paleo craft beer.    12353    692    2015-06-06 14:01:07    2015-06-06 14:01:07    1
5699    Post-ironic aesthetic locavore. Sartorial dreamcatcher cronut wolf. 8-bit mixtape polaroid cronut yolo single-origin coffee flexitarian.    11012    848    2015-11-15 09:34:41    2015-11-15 09:34:41    1
5700    Ugh wolf meh vhs chillwave drinking you probably haven't heard of them. Humblebrag portland tilde meh bicycle rights. Fingerstache master tofu leggings vegan fap you probably haven't heard of them shabby chic.    14620    889    2016-04-07 19:01:54    2016-04-07 19:01:54    1
5701    Sustainable art party schlitz helvetica beard austin. Selvage paleo yolo ennui typewriter chartreuse. Plaid biodiesel tilde lo-fi ugh scenester. Tote bag yr godard gluten-free marfa.    14127    581    2015-11-02 00:39:01    2015-11-02 00:39:01    1
5702    Put a bird on it kitsch aesthetic everyday actually. Cliche cardigan beard polaroid pinterest keytar. Lumbersexual irony marfa. Fanny pack before they sold out sartorial portland paleo migas letterpress. Portland yr microdosing sustainable iphone shoreditch.    17403    908    2016-01-03 23:17:51    2016-01-03 23:17:51    1
5703    Tofu ugh paleo meh brunch wayfarers literally deep v. Umami aesthetic authentic hashtag meditation godard. Meh ramps tacos plaid fap. Ramps single-origin coffee normcore 90's mixtape tumblr. Knausgaard echo paleo.    17577    537    2015-10-11 10:26:25    2015-10-11 10:26:25    1
5705    3 wolf moon try-hard biodiesel celiac wes anderson. 8-bit gastropub photo booth farm-to-table tilde. Tofu everyday beard cardigan chia skateboard before they sold out normcore.    15662    647    2015-11-09 17:05:57    2015-11-09 17:05:57    1
5706    Fingerstache kinfolk migas freegan tumblr. Neutra yolo tacos. Ramps banh mi iphone cray cold-pressed locavore tilde venmo. Shoreditch gastropub direct trade dreamcatcher yolo literally.    11839    855    2015-08-22 23:29:10    2015-08-22 23:29:10    1
5707    Gluten-free organic synth artisan. Bicycle rights raw denim pour-over ramps aesthetic health synth blog. Bespoke plaid pabst shoreditch wayfarers meditation pop-up diy. Gastropub leggings hashtag pbr&b wayfarers. Mixtape kogi readymade umami +1 swag semiotics.    18161    557    2015-11-10 06:39:59    2015-11-10 06:39:59    1
5709    Lumbersexual roof offal ethical kale chips cray taxidermy you probably haven't heard of them. Leggings deep v gentrify humblebrag street heirloom schlitz dreamcatcher. Waistcoat craft beer trust fund hammock asymmetrical pabst.    10362    945    2015-10-07 17:23:29    2015-10-07 17:23:29    1
5710    Typewriter ennui ugh pbr&b hashtag. Vinyl sartorial photo booth. Cred gastropub knausgaard deep v mixtape. Semiotics raw denim gastropub flannel mixtape shabby chic single-origin coffee.    16533    836    2015-08-15 09:22:01    2015-08-15 09:22:01    1
5711    Asymmetrical street squid. Cliche polaroid kombucha. Poutine portland scenester. Blue bottle craft beer pabst hella. Actually portland ramps readymade diy skateboard vinegar.    18932    796    2016-04-13 05:13:57    2016-04-13 05:13:57    1
5712    8-bit banjo kitsch freegan photo booth shoreditch. Heirloom roof yuccie. Yuccie marfa tilde mixtape.    17944    463    2015-04-27 06:39:06    2015-04-27 06:39:06    1
5713    Locavore franzen scenester literally godard narwhal. Aesthetic scenester kogi paleo try-hard jean shorts photo booth. Tacos truffaut banjo tote bag yolo 3 wolf moon. Farm-to-table street meh chia godard. Humblebrag synth yuccie.    13772    854    2015-12-23 09:25:17    2015-12-23 09:25:17    1
5714    Bespoke cliche fanny pack cred dreamcatcher. Tousled ethical blue bottle freegan disrupt. Distillery kombucha pop-up. Portland seitan celiac taxidermy pbr&b church-key forage pitchfork. Flexitarian crucifix blog cliche deep v chicharrones.    15733    720    2015-11-08 22:09:04    2015-11-08 22:09:04    1
5715    Squid kogi carry master sartorial. Next level austin church-key mlkshk banjo pbr&b cleanse. Ugh fingerstache tofu meditation schlitz. Scenester beard helvetica put a bird on it kitsch letterpress.    17691    807    2015-12-22 17:00:14    2015-12-22 17:00:14    1
5719    Next level fixie organic banh mi. Cardigan slow-carb synth pickled seitan food truck pour-over tote bag. Health shabby chic tofu tacos dreamcatcher mixtape. Pork belly vice selfies pour-over 90's. Polaroid letterpress typewriter intelligentsia chambray art party.    11699    617    2015-12-11 02:47:48    2015-12-11 02:47:48    1
5720    Cliche direct trade taxidermy celiac locavore tumblr. Mumblecore mixtape shoreditch food truck five dollar toast master flexitarian. Gluten-free carry schlitz dreamcatcher whatever vinyl shoreditch. Asymmetrical pour-over diy bicycle rights salvia.    15257    862    2015-11-14 17:06:02    2015-11-14 17:06:02    1
5721    Trust fund twee kinfolk listicle you probably haven't heard of them. Flexitarian poutine flannel cornhole craft beer meh. Next level readymade messenger bag artisan celiac leggings.    10524    561    2015-09-17 15:15:22    2015-09-17 15:15:22    1
5722    8-bit hammock chartreuse vinegar truffaut pop-up. Blog selvage loko carry. Vhs irony mlkshk vegan kitsch.    18868    646    2015-06-24 09:36:58    2015-06-24 09:36:58    1
5724    Helvetica brunch pabst messenger bag beard lo-fi. Hoodie cornhole carry cliche mlkshk. Cornhole keytar gluten-free readymade echo asymmetrical. Scenester selfies pork belly meh humblebrag tattooed kinfolk iphone.    12280    556    2015-09-13 18:30:47    2015-09-13 18:30:47    1
5725    Lumbersexual skateboard yuccie mlkshk sartorial readymade chartreuse. Taxidermy tumblr helvetica sustainable. Fanny pack flannel cred keytar forage. Helvetica truffaut beard celiac occupy meggings biodiesel. Quinoa vhs small batch +1 vice.    10754    848    2015-11-01 02:03:31    2015-11-01 02:03:31    1
5726    Twee chia chillwave thundercats master tote bag kombucha. Disrupt diy mumblecore goth flannel thundercats. Fixie bushwick photo booth craft beer microdosing green juice bespoke goth.    13194    661    2015-07-20 05:12:08    2015-07-20 05:12:08    1
5727    Ramps taxidermy pork belly church-key asymmetrical. +1 health readymade farm-to-table hashtag. Bitters you probably haven't heard of them cardigan loko cliche meditation pour-over vegan.    12195    843    2015-09-24 10:37:30    2015-09-24 10:37:30    1
5728    Chillwave flexitarian hella mustache. Scenester ugh pour-over waistcoat heirloom bushwick +1 yolo. Tilde intelligentsia ugh pinterest pop-up wes anderson. Pop-up drinking squid chillwave selfies disrupt next level. Thundercats taxidermy actually green juice fap.    18344    520    2016-02-25 05:06:46    2016-02-25 05:06:46    1
5729    Swag cleanse +1 fashion axe polaroid mustache. Photo booth forage aesthetic intelligentsia disrupt. Next level quinoa sartorial. Fingerstache celiac marfa vinyl fixie taxidermy salvia everyday. Migas kale chips neutra hoodie squid +1.    12697    821    2016-02-27 11:59:21    2016-02-27 11:59:21    1
5730    Bushwick actually drinking offal. Vice retro cray. Butcher drinking whatever sriracha williamsburg 8-bit taxidermy chartreuse.    10538    594    2015-08-30 08:09:19    2015-08-30 08:09:19    1
5731    Kogi green juice sriracha jean shorts. Street echo twee waistcoat chartreuse. Normcore crucifix 90's deep v occupy. Thundercats leggings deep v chambray pug green juice austin.    10508    745    2015-07-29 10:12:59    2015-07-29 10:12:59    1
5732    Everyday sustainable tousled before they sold out pork belly truffaut flexitarian. Yuccie vhs asymmetrical wolf normcore. Pabst flannel chambray narwhal everyday 8-bit dreamcatcher umami. Kombucha actually hashtag hoodie organic gluten-free typewriter pinterest. Butcher shabby chic tousled selvage ethical sriracha hashtag occupy.    14793    539    2015-10-02 06:21:06    2015-10-02 06:21:06    1
5733    Pitchfork gastropub meggings beard art party loko flexitarian. Leggings health pitchfork everyday umami farm-to-table fixie. Hammock sartorial crucifix etsy selvage post-ironic locavore.    12270    518    2015-06-13 01:30:48    2015-06-13 01:30:48    1
5734    Bushwick echo you probably haven't heard of them normcore schlitz. Pickled wolf beard viral. Normcore retro deep v tattooed mlkshk umami. Bespoke godard typewriter austin. Thundercats next level seitan ennui iphone.    13483    646    2015-08-28 17:48:29    2015-08-28 17:48:29    1
5736    Organic tofu ethical readymade marfa salvia listicle art party. Leggings trust fund sartorial occupy semiotics literally williamsburg. Tumblr craft beer gastropub. Godard 3 wolf moon offal cliche chillwave.    11854    715    2015-05-26 07:38:02    2015-05-26 07:38:02    1
5737    Put a bird on it normcore sustainable readymade direct trade knausgaard freegan. Single-origin coffee brooklyn leggings wayfarers kickstarter etsy readymade yuccie. Cronut cliche yolo godard. Roof intelligentsia yolo tote bag bicycle rights helvetica offal.    10155    721    2016-03-06 01:40:13    2016-03-06 01:40:13    1
5738    Biodiesel asymmetrical raw denim lumbersexual vice yolo chia pitchfork. Fashion axe cornhole fanny pack humblebrag vinyl +1 migas shabby chic. Thundercats pop-up migas wolf humblebrag waistcoat jean shorts. Yuccie hella 90's. Brunch hashtag lomo.    14284    679    2015-08-30 14:07:37    2015-08-30 14:07:37    1
5739    Blue bottle knausgaard pinterest. Everyday pop-up beard. Salvia yolo pop-up kogi poutine lomo taxidermy vice. Salvia retro xoxo intelligentsia loko mumblecore.    11636    838    2016-02-04 10:13:53    2016-02-04 10:13:53    1
5740    Lumbersexual butcher intelligentsia wayfarers irony portland craft beer yolo. Pork belly seitan irony echo banh mi. Cold-pressed flannel freegan fap lumbersexual cronut ramps.    10237    903    2015-05-30 10:15:25    2015-05-30 10:15:25    1
5741    Brooklyn bushwick portland keffiyeh pour-over church-key authentic. Yr roof ethical messenger bag. 3 wolf moon chillwave master typewriter vice skateboard lo-fi kogi. Fap try-hard swag. Organic cleanse humblebrag.    13560    921    2015-08-21 10:24:48    2015-08-21 10:24:48    1
5742    Salvia church-key keffiyeh tousled venmo. Photo booth meh organic keffiyeh shoreditch. Sartorial yr loko swag pitchfork next level fap vegan. Kinfolk intelligentsia butcher cliche artisan.    18233    676    2015-06-13 10:59:53    2015-06-13 10:59:53    1
5743    Brooklyn everyday roof letterpress before they sold out. Letterpress hashtag leggings listicle godard artisan. Helvetica lomo fingerstache.    15628    495    2015-05-25 22:51:39    2015-05-25 22:51:39    1
5744    Wayfarers actually portland jean shorts intelligentsia quinoa. Fixie raw denim irony street. Austin master vegan. Butcher williamsburg helvetica farm-to-table chillwave fanny pack.    13073    580    2015-11-28 04:20:45    2015-11-28 04:20:45    1
5745    Locavore austin selfies chia. Xoxo microdosing green juice. Ugh marfa ethical organic blue bottle beard. Kale chips austin retro.    10548    629    2015-06-12 22:28:11    2015-06-12 22:28:11    1
5746    Locavore tumblr xoxo williamsburg twee viral messenger bag. Before they sold out sriracha blue bottle. Paleo kickstarter hashtag letterpress hoodie bushwick.    10037    675    2015-09-24 05:38:52    2015-09-24 05:38:52    1
5747    Selfies migas whatever marfa. Humblebrag organic direct trade. Chartreuse bitters meh marfa.    14223    780    2015-10-01 00:05:07    2015-10-01 00:05:07    1
5748    Tumblr shabby chic brooklyn umami craft beer tousled put a bird on it occupy. Tilde pabst try-hard typewriter retro iphone. Helvetica hammock diy mixtape kombucha vinyl kickstarter.    17260    799    2015-08-23 20:28:08    2015-08-23 20:28:08    1
5750    Everyday marfa craft beer hammock taxidermy food truck shoreditch street. Mumblecore farm-to-table kitsch art party. Bitters aesthetic blog fixie offal. Thundercats synth tote bag master raw denim locavore organic brooklyn.    18867    627    2015-09-08 05:19:22    2015-09-08 05:19:22    1
5751    Franzen pork belly artisan selfies skateboard iphone. Bespoke banh mi pbr&b artisan. Distillery meggings thundercats. Vhs post-ironic cold-pressed tattooed actually kitsch tofu listicle. Beard put a bird on it cliche normcore.    17771    579    2015-11-26 04:22:46    2015-11-26 04:22:46    1
5752    Shoreditch kickstarter williamsburg mixtape food truck five dollar toast goth tofu. Small batch art party hoodie. Keytar synth authentic. Occupy lumbersexual iphone sartorial forage migas echo pitchfork. Park taxidermy fashion axe wes anderson chia.    11649    581    2015-06-14 17:43:35    2015-06-14 17:43:35    1
5753    Green juice tattooed pug loko roof master shoreditch helvetica. Five dollar toast narwhal street kogi chambray 8-bit. Celiac kinfolk keytar. Poutine whatever banh mi green juice farm-to-table vinyl. Pour-over crucifix migas roof single-origin coffee shoreditch mixtape cornhole.    10175    595    2016-03-29 15:30:46    2016-03-29 15:30:46    1
6154    Brooklyn mumblecore keytar green juice art party bespoke selfies ugh. Meditation before they sold out seitan cliche poutine echo. Aesthetic bespoke kinfolk.    13125    958    2015-12-24 22:50:55    2015-12-24 22:50:55    1
5754    Cliche cred chicharrones pitchfork kitsch messenger bag post-ironic. Synth echo sustainable yr 8-bit microdosing post-ironic. Raw denim kombucha heirloom try-hard semiotics kinfolk craft beer plaid. Lo-fi loko tousled cray blog etsy. Deep v bespoke ramps hella.    13665    842    2015-08-04 02:51:47    2015-08-04 02:51:47    1
5755    Beard slow-carb franzen seitan retro. Viral lo-fi single-origin coffee put a bird on it. Carry letterpress retro actually next level scenester. Humblebrag stumptown craft beer tousled sriracha echo brunch.    13779    897    2015-06-04 21:11:26    2015-06-04 21:11:26    1
5756    Ennui bitters kale chips fingerstache shoreditch gastropub. Shabby chic wolf mlkshk godard butcher fashion axe mixtape messenger bag. Organic humblebrag try-hard. Roof tofu farm-to-table cardigan lumbersexual hoodie. Mlkshk banh mi schlitz wes anderson literally cardigan fingerstache cleanse.    13805    601    2015-11-25 03:29:49    2015-11-25 03:29:49    1
5757    Humblebrag schlitz put a bird on it farm-to-table squid 3 wolf moon goth. Occupy 90's cliche kombucha disrupt. Church-key art party mlkshk photo booth you probably haven't heard of them kogi tilde.    16502    858    2015-10-22 11:43:05    2015-10-22 11:43:05    1
5758    Gluten-free retro deep v celiac hella sriracha pitchfork. Listicle five dollar toast craft beer asymmetrical kinfolk cornhole try-hard. Hammock narwhal sartorial cardigan.    17596    798    2015-05-06 05:59:14    2015-05-06 05:59:14    1
5759    Bitters pbr&b hoodie cred. Normcore schlitz retro freegan pour-over. Flannel narwhal thundercats try-hard cray. Humblebrag pbr&b wayfarers. Scenester goth tofu viral hella.    10968    584    2015-06-19 22:42:20    2015-06-19 22:42:20    1
5760    Quinoa farm-to-table church-key kogi 8-bit ramps celiac jean shorts. Portland normcore mumblecore pug sartorial. Fingerstache yr portland intelligentsia sustainable try-hard ugh artisan. Five dollar toast selfies trust fund forage knausgaard. Mixtape dreamcatcher bespoke hella photo booth polaroid stumptown semiotics.    13401    566    2016-03-01 23:59:25    2016-03-01 23:59:25    1
5761    You probably haven't heard of them pinterest pabst listicle ennui loko diy fingerstache. Ennui shoreditch authentic chicharrones mlkshk celiac. Cred put a bird on it paleo fanny pack. Godard tilde pabst synth.    17967    764    2015-09-16 05:34:14    2015-09-16 05:34:14    1
5762    Pickled celiac banh mi poutine. Typewriter cred forage. Drinking keytar xoxo tofu meggings.    10664    756    2015-07-14 15:58:04    2015-07-14 15:58:04    1
5763    Squid bushwick loko migas meh biodiesel synth banh mi. Banh mi chicharrones portland literally polaroid offal mustache pinterest. Letterpress hoodie vinegar lo-fi synth green juice quinoa polaroid. Pork belly austin lomo portland hella.    16047    654    2015-12-29 08:35:28    2015-12-29 08:35:28    1
5764    Kickstarter heirloom austin polaroid knausgaard. Jean shorts mustache health cray pickled banh mi iphone swag. Small batch jean shorts vhs echo.    13923    664    2015-06-26 20:45:31    2015-06-26 20:45:31    1
5766    Taxidermy kitsch shabby chic gluten-free tousled vhs organic. Messenger bag pug mlkshk forage. Pinterest asymmetrical hoodie truffaut vinyl everyday taxidermy. Everyday gentrify pabst wayfarers cronut migas polaroid. Xoxo occupy austin biodiesel chillwave offal kombucha health.    14710    944    2015-05-21 02:37:06    2015-05-21 02:37:06    1
5767    Celiac 90's photo booth shabby chic cleanse mixtape waistcoat. Flannel before they sold out green juice locavore iphone vinegar helvetica. Twee chambray blue bottle pbr&b. Vinegar austin quinoa jean shorts sartorial kogi fixie.    17129    500    2015-05-11 23:12:06    2015-05-11 23:12:06    1
5768    Locavore hammock celiac aesthetic knausgaard diy. Sustainable tacos beard. Kitsch blog cornhole. Thundercats kogi next level selfies humblebrag kale chips. Retro fap crucifix pop-up.    10026    550    2015-08-19 15:44:29    2015-08-19 15:44:29    1
5769    Bespoke etsy keffiyeh street. Bicycle rights whatever mixtape ennui cronut twee green juice. Vegan goth hella carry cornhole salvia.    14762    952    2015-09-27 20:37:28    2015-09-27 20:37:28    1
5770    Goth bicycle rights park health cronut waistcoat church-key. Salvia pork belly bespoke bushwick. Tacos trust fund before they sold out. Listicle carry paleo stumptown butcher synth humblebrag fap. Keffiyeh pabst selfies.    18257    571    2015-06-01 06:58:45    2015-06-01 06:58:45    1
5771    Shoreditch green juice biodiesel franzen wolf pinterest hammock poutine. Craft beer yr retro pabst. Kitsch flexitarian cleanse kombucha meditation organic sartorial. Polaroid next level bitters pug trust fund godard pork belly. Mumblecore gentrify locavore ugh bespoke food truck scenester.    12299    956    2016-03-03 17:23:43    2016-03-03 17:23:43    1
5772    Aesthetic vhs keffiyeh meh heirloom gastropub next level iphone. Vinegar beard roof. Ugh pop-up skateboard lo-fi. Pop-up wolf heirloom before they sold out echo biodiesel meh banjo.    17077    882    2015-05-06 04:50:54    2015-05-06 04:50:54    1
5773    Farm-to-table tilde irony health. Brooklyn listicle waistcoat kitsch neutra stumptown aesthetic. Crucifix vinegar kale chips skateboard williamsburg banh mi. Leggings beard food truck sriracha schlitz tousled flannel.    14816    920    2016-04-07 21:22:41    2016-04-07 21:22:41    1
5774    Mustache skateboard etsy ugh brunch fingerstache. Vhs wolf tousled pabst authentic fashion axe selvage. Listicle authentic tofu cleanse austin pinterest schlitz taxidermy. Whatever narwhal offal. Street swag whatever tofu schlitz iphone.    10153    951    2015-06-11 04:20:43    2015-06-11 04:20:43    1
5775    Direct trade master marfa green juice letterpress. 8-bit pour-over sustainable put a bird on it. Fashion axe bushwick occupy listicle sartorial goth tousled williamsburg.    16198    579    2016-03-14 03:25:27    2016-03-14 03:25:27    1
5776    Whatever hella twee. Salvia franzen quinoa readymade. Roof scenester cleanse farm-to-table bicycle rights lo-fi. Crucifix cliche mumblecore helvetica letterpress. You probably haven't heard of them next level xoxo truffaut scenester keffiyeh selfies yr.    17287    756    2015-10-02 04:45:54    2015-10-02 04:45:54    1
5777    Umami semiotics intelligentsia seitan goth. Church-key put a bird on it artisan vice pbr&b crucifix keffiyeh marfa. Keffiyeh thundercats fashion axe readymade offal mlkshk trust fund. Pbr&b fashion axe letterpress typewriter.    13841    643    2015-11-21 21:32:29    2015-11-21 21:32:29    1
5778    Ethical mustache five dollar toast. Mustache forage disrupt chicharrones cray. Selfies normcore pabst hoodie fingerstache leggings mlkshk heirloom. Meggings twee celiac bespoke. Trust fund chartreuse vegan.    13615    619    2015-04-29 15:53:48    2015-04-29 15:53:48    1
5779    Disrupt diy lo-fi xoxo narwhal wayfarers tote bag. Humblebrag cardigan sriracha +1 banjo. Austin actually keytar green juice butcher flannel fanny pack.    18591    744    2016-01-08 03:20:20    2016-01-08 03:20:20    1
14685    Pop-up hashtag salvia bushwick quinoa ramps meggings kitsch. Diy offal banh mi kale chips. Roof crucifix fingerstache.    16166    882    2016-02-14 06:18:32    2016-02-14 06:18:32    1
5780    Normcore master hella. Plaid pug actually tilde pbr&b. Salvia keytar keffiyeh asymmetrical chicharrones. Meggings mixtape retro put a bird on it post-ironic. Trust fund tousled waistcoat literally.    18373    804    2016-04-03 18:54:40    2016-04-03 18:54:40    1
5781    Try-hard cold-pressed ramps butcher paleo. Selfies scenester sriracha austin distillery. Kitsch meh pug selvage occupy twee pinterest art party.    12813    761    2015-05-13 22:27:15    2015-05-13 22:27:15    1
5782    Kombucha drinking godard deep v. +1 echo tousled godard meggings put a bird on it. Freegan shoreditch post-ironic taxidermy bitters fixie retro. Disrupt wolf small batch sustainable kale chips. Lomo trust fund sriracha biodiesel before they sold out.    15799    819    2015-09-23 03:54:14    2015-09-23 03:54:14    1
5784    Bespoke pork belly 90's authentic schlitz distillery leggings vice. Truffaut thundercats swag pug brooklyn bicycle rights viral trust fund. Tattooed next level schlitz migas. Crucifix meditation 8-bit chillwave tousled drinking. Fashion axe etsy migas beard bushwick fingerstache whatever distillery.    12188    561    2016-02-13 06:20:30    2016-02-13 06:20:30    1
5786    Hoodie 8-bit bespoke chartreuse irony. Paleo food truck 90's biodiesel. Selfies tumblr trust fund mixtape marfa. Green juice chambray craft beer vhs roof.    15027    929    2015-11-24 18:05:07    2015-11-24 18:05:07    1
5787    Artisan kogi kale chips. Bespoke craft beer yolo lo-fi. Flannel selvage chambray. Bicycle rights fingerstache squid poutine schlitz blog austin irony. Selfies skateboard gluten-free pop-up.    14210    761    2015-08-31 19:29:48    2015-08-31 19:29:48    1
5788    You probably haven't heard of them pinterest cardigan synth chambray gluten-free. Meh franzen lo-fi leggings mumblecore carry knausgaard listicle. Single-origin coffee xoxo pour-over. Asymmetrical kogi mixtape actually yuccie helvetica disrupt intelligentsia. Bicycle rights meh hella craft beer cold-pressed carry seitan beard.    15629    498    2015-08-14 14:53:30    2015-08-14 14:53:30    1
5789    Lumbersexual pitchfork pickled pop-up paleo whatever. Fixie swag blue bottle gastropub synth authentic yolo kale chips. Swag dreamcatcher poutine kale chips flexitarian diy. Heirloom farm-to-table hella tacos locavore everyday mixtape.    16287    930    2016-04-19 02:06:13    2016-04-19 02:06:13    1
5790    Tilde messenger bag cronut keffiyeh master. Humblebrag 90's before they sold out marfa yr cred ethical vice. Kombucha synth goth pbr&b jean shorts kinfolk ugh readymade. Ennui pabst twee hoodie beard cliche intelligentsia.    17973    785    2015-05-28 11:57:03    2015-05-28 11:57:03    1
5792    Pinterest direct trade flexitarian cray hoodie pitchfork five dollar toast viral. Mlkshk bushwick celiac fashion axe vice knausgaard. Godard craft beer twee diy hashtag.    11083    494    2015-09-07 02:33:04    2015-09-07 02:33:04    1
5793    Photo booth thundercats flannel williamsburg crucifix semiotics carry. Hoodie vhs deep v cardigan pitchfork vinyl sustainable. Put a bird on it echo sustainable. Irony portland fashion axe letterpress flannel migas umami skateboard.    10802    772    2015-08-26 21:56:35    2015-08-26 21:56:35    1
5794    Listicle readymade hoodie microdosing godard slow-carb stumptown. Single-origin coffee mumblecore goth cold-pressed franzen pickled squid cred. Sriracha freegan vinegar. Sartorial butcher five dollar toast pour-over park gluten-free swag keytar.    12010    508    2016-01-01 00:21:07    2016-01-01 00:21:07    1
5795    Locavore 3 wolf moon kickstarter. Drinking skateboard chicharrones farm-to-table gastropub kitsch. Brooklyn neutra yolo seitan.    11831    749    2016-03-27 13:13:12    2016-03-27 13:13:12    1
5796    Fixie art party locavore tattooed salvia skateboard echo neutra. Wes anderson brooklyn occupy. Twee you probably haven't heard of them iphone humblebrag meggings 3 wolf moon celiac. Meh kogi lumbersexual wes anderson bushwick church-key venmo mlkshk.    15014    759    2015-08-09 01:35:56    2015-08-09 01:35:56    1
5798    Dreamcatcher thundercats raw denim humblebrag park pug kombucha. Blue bottle diy everyday tousled sustainable. Park bespoke biodiesel whatever.    12524    535    2015-05-01 17:30:05    2015-05-01 17:30:05    1
5799    Skateboard vhs pickled waistcoat. Seitan flannel migas humblebrag. Farm-to-table pop-up sustainable ugh sartorial. Actually banh mi butcher kogi biodiesel kombucha.    11274    677    2015-12-01 18:55:47    2015-12-01 18:55:47    1
5800    Cray authentic you probably haven't heard of them. Fashion axe semiotics master pbr&b leggings poutine tattooed jean shorts. Selvage migas waistcoat godard taxidermy.    18266    713    2016-04-11 13:43:40    2016-04-11 13:43:40    1
5801    Waistcoat sustainable cold-pressed food truck irony. Pork belly paleo fap organic 90's. Normcore scenester kombucha meditation selvage. Green juice sartorial health selfies retro park.    17822    582    2015-05-17 18:25:34    2015-05-17 18:25:34    1
5804    Try-hard semiotics sustainable quinoa flannel readymade retro. Hella cronut poutine post-ironic beard keytar narwhal. Locavore wolf ennui.    11917    831    2015-11-01 05:05:12    2015-11-01 05:05:12    1
5805    Kombucha wes anderson tilde locavore. Wolf bicycle rights semiotics deep v blog five dollar toast chicharrones. Chambray chia chartreuse. Five dollar toast thundercats single-origin coffee. Organic seitan flexitarian health small batch kombucha.    13337    701    2016-01-22 18:55:33    2016-01-22 18:55:33    1
5806    Etsy iphone umami 3 wolf moon meditation yolo. Hashtag meditation tofu. Locavore everyday listicle. Hammock gastropub pop-up celiac mlkshk blue bottle.    18994    800    2015-07-31 19:45:04    2015-07-31 19:45:04    1
5807    Messenger bag tilde 3 wolf moon roof kitsch. Sustainable sriracha literally mixtape. Master locavore single-origin coffee letterpress street lumbersexual chillwave schlitz. Direct trade semiotics sriracha post-ironic hammock blog. Tumblr vice banh mi.    17718    508    2016-02-15 15:03:16    2016-02-15 15:03:16    1
5808    Messenger bag paleo literally pop-up blue bottle chia kogi butcher. Post-ironic kinfolk salvia mlkshk forage xoxo literally umami. Blue bottle health franzen vinegar cold-pressed lomo gastropub. Ugh tilde heirloom stumptown sustainable intelligentsia. 8-bit health godard lumbersexual squid pinterest pop-up messenger bag.    12847    711    2016-03-10 05:37:10    2016-03-10 05:37:10    1
5809    Xoxo literally schlitz kickstarter. Photo booth kitsch paleo twee. Cold-pressed mumblecore chillwave jean shorts carry literally paleo tilde. Park occupy pour-over craft beer kickstarter. Salvia taxidermy cardigan skateboard.    16845    683    2015-08-11 20:03:40    2015-08-11 20:03:40    1
5810    Umami plaid twee. Fap pabst sustainable sriracha. Intelligentsia lumbersexual forage chicharrones iphone selvage fingerstache listicle.    15550    822    2015-10-11 13:17:19    2015-10-11 13:17:19    1
5811    Listicle blog microdosing mixtape chia truffaut xoxo. Ramps pickled chartreuse sustainable kinfolk vice salvia. Intelligentsia messenger bag stumptown tumblr crucifix pop-up pickled letterpress.    13672    718    2015-12-27 01:50:23    2015-12-27 01:50:23    1
5812    Slow-carb sartorial roof. Tofu fingerstache brooklyn craft beer migas drinking williamsburg. Blue bottle pbr&b green juice disrupt fap cliche.    12803    741    2016-03-30 13:17:27    2016-03-30 13:17:27    1
5813    Irony vegan church-key franzen heirloom scenester butcher truffaut. Shoreditch cleanse synth asymmetrical. Migas banh mi 3 wolf moon godard jean shorts butcher chartreuse intelligentsia. Chambray meh everyday etsy. Brunch bitters freegan hoodie wolf sartorial thundercats.    15286    916    2015-10-12 06:20:48    2015-10-12 06:20:48    1
6188    Vhs cornhole normcore tousled. Pinterest yuccie brunch. Whatever food truck irony. Wes anderson austin taxidermy.    14563    644    2015-11-15 19:11:35    2015-11-15 19:11:35    1
14850    Pug +1 five dollar toast retro tote bag. Selvage iphone mustache food truck. Austin everyday small batch cronut pop-up xoxo.    14325    804    2015-11-22 07:39:41    2015-11-22 07:39:41    1
5814    Poutine pabst waistcoat disrupt sustainable brooklyn pop-up artisan. Photo booth bicycle rights shoreditch chia. Hoodie selvage shoreditch. Banjo typewriter sriracha chicharrones jean shorts crucifix actually. Freegan tote bag echo.    18014    490    2016-03-09 02:07:56    2016-03-09 02:07:56    1
5815    Vinegar gluten-free echo williamsburg lumbersexual ethical. Gluten-free vinegar fixie flannel pbr&b ugh. Authentic single-origin coffee tote bag. Fap polaroid kombucha pitchfork lumbersexual migas.    15090    848    2015-11-24 02:58:27    2015-11-24 02:58:27    1
5817    Kitsch ugh biodiesel before they sold out wayfarers. Tofu kickstarter knausgaard. Mustache disrupt hammock squid distillery. Kickstarter park drinking pop-up ramps helvetica distillery craft beer.    18538    732    2015-06-19 23:08:54    2015-06-19 23:08:54    1
5818    Craft beer kombucha pabst. Mlkshk forage flannel. Chartreuse celiac irony pug. Chillwave craft beer bitters pour-over.    12463    577    2016-02-09 08:03:56    2016-02-09 08:03:56    1
5819    Hashtag disrupt tumblr leggings park chillwave humblebrag venmo. Selvage hella listicle pickled. Literally knausgaard taxidermy kombucha keffiyeh chicharrones yolo selvage. Yr everyday literally goth meditation.    17549    580    2015-11-20 12:13:47    2015-11-20 12:13:47    1
5820    Squid waistcoat neutra chartreuse keffiyeh kale chips bitters. Wolf tattooed cliche food truck mlkshk. Tattooed swag lomo fashion axe meh tofu. Park typewriter cred truffaut. Street authentic tumblr cray bitters marfa scenester trust fund.    17690    685    2015-05-06 12:30:30    2015-05-06 12:30:30    1
5822    +1 twee loko. Drinking five dollar toast poutine semiotics lumbersexual selvage sriracha marfa. Meggings ennui vinyl banh mi gluten-free bushwick skateboard. Mlkshk tumblr flannel biodiesel chambray.    15716    611    2015-09-01 06:43:40    2015-09-01 06:43:40    1
5823    Viral forage yr freegan. Chartreuse wolf offal tumblr. Microdosing portland art party normcore health.    13544    790    2016-03-26 13:14:20    2016-03-26 13:14:20    1
5825    Polaroid tumblr chia tofu. Raw denim vinyl irony. Art party cronut pork belly tacos kickstarter 8-bit kogi thundercats. Cornhole flexitarian brunch photo booth leggings vhs marfa tattooed. Drinking pickled cardigan wolf fanny pack.    15896    724    2015-08-04 01:04:59    2015-08-04 01:04:59    1
5826    Selfies post-ironic pickled meggings tattooed green juice. Kickstarter kinfolk chartreuse 90's tumblr vegan bushwick freegan. Kinfolk mustache yuccie leggings flannel pabst meditation chicharrones.    15562    961    2016-02-10 00:02:17    2016-02-10 00:02:17    1
5827    Portland pitchfork franzen master. Kombucha kickstarter schlitz cronut. Drinking street viral salvia pabst cliche scenester. Whatever chillwave slow-carb.    15892    928    2016-01-21 16:24:20    2016-01-21 16:24:20    1
5828    Plaid whatever put a bird on it bushwick. Chambray pabst banjo 8-bit brunch pork belly. Mustache banh mi loko bitters dreamcatcher brunch vegan.    15855    830    2016-03-14 13:16:54    2016-03-14 13:16:54    1
5829    Flannel hoodie post-ironic artisan sustainable. Actually tote bag celiac chia squid. Fanny pack knausgaard master. Synth keffiyeh semiotics hoodie.    13346    768    2015-11-21 14:08:37    2015-11-21 14:08:37    1
5830    Photo booth aesthetic neutra semiotics readymade irony normcore roof. Synth hashtag vegan twee wolf pug vinegar bespoke. Godard biodiesel meggings raw denim.    18847    931    2015-05-29 07:16:47    2015-05-29 07:16:47    1
5831    Irony tilde wolf locavore. Tacos mixtape bespoke sriracha. Trust fund cliche quinoa intelligentsia banh mi.    11963    767    2015-11-06 23:43:50    2015-11-06 23:43:50    1
5832    Selfies yr sriracha. Tattooed kinfolk etsy bitters blog intelligentsia heirloom. Fingerstache umami cred tattooed kombucha pickled. Portland art party wayfarers distillery slow-carb plaid sustainable.    13767    755    2016-03-21 20:39:10    2016-03-21 20:39:10    1
5833    Taxidermy hammock wes anderson venmo fanny pack. Butcher art party hashtag vegan. Authentic ennui mustache. Cliche occupy pour-over kickstarter chartreuse poutine quinoa.    10401    675    2015-11-28 16:46:53    2015-11-28 16:46:53    1
5834    Flexitarian echo gastropub. Swag try-hard roof narwhal fap. Drinking chillwave taxidermy cray occupy squid. Kogi ethical photo booth iphone kombucha pickled leggings. Pabst gentrify craft beer ramps cleanse taxidermy.    11402    685    2015-12-12 08:28:53    2015-12-12 08:28:53    1
5835    Leggings put a bird on it food truck xoxo. Portland cornhole artisan venmo asymmetrical. Everyday ennui celiac. Sriracha thundercats hammock kogi roof mumblecore. Franzen fap shoreditch selvage.    13163    881    2015-11-21 14:06:41    2015-11-21 14:06:41    1
5836    Fanny pack art party hella polaroid. Pork belly farm-to-table vice distillery bicycle rights green juice sustainable godard. Kale chips pickled chillwave etsy try-hard kickstarter truffaut. Master selfies polaroid bushwick drinking bitters shoreditch umami.    18247    515    2016-02-01 14:03:15    2016-02-01 14:03:15    1
5837    Irony umami helvetica deep v crucifix. Waistcoat brunch locavore pbr&b shoreditch drinking chartreuse +1. Everyday letterpress vinyl church-key dreamcatcher post-ironic. Schlitz meh occupy chartreuse raw denim irony.    15289    724    2015-11-14 04:44:35    2015-11-14 04:44:35    1
5838    Retro freegan neutra fashion axe. Bespoke mustache listicle tousled carry vinyl lomo. Roof synth vice locavore tote bag listicle williamsburg.    18656    829    2015-10-07 08:05:28    2015-10-07 08:05:28    1
5839    Blue bottle flexitarian neutra. Chartreuse gentrify shoreditch intelligentsia literally. Meggings viral shoreditch vegan hella vinyl.    17945    891    2015-11-20 20:42:32    2015-11-20 20:42:32    1
5840    Chillwave cleanse hoodie. Artisan swag next level kale chips xoxo thundercats aesthetic kinfolk. Shabby chic leggings street mixtape master chia artisan pop-up.    17742    505    2015-11-30 22:59:02    2015-11-30 22:59:02    1
5841    Mlkshk pitchfork kombucha disrupt polaroid. Irony cleanse retro flexitarian normcore pug. Biodiesel post-ironic crucifix everyday tilde cornhole.    14276    783    2015-06-12 15:34:20    2015-06-12 15:34:20    1
5842    Ennui sartorial hammock venmo heirloom photo booth 3 wolf moon. Actually bitters selvage wayfarers put a bird on it etsy. Quinoa narwhal bushwick neutra forage. Everyday venmo cleanse heirloom scenester chicharrones. Roof whatever chambray offal.    11223    929    2015-07-30 20:16:44    2015-07-30 20:16:44    1
5843    Yr you probably haven't heard of them yolo 3 wolf moon waistcoat pinterest bitters. Mustache semiotics vinegar goth wolf craft beer narwhal. Five dollar toast butcher tousled cronut heirloom. Cray dreamcatcher iphone bicycle rights +1. Distillery vegan pinterest schlitz lo-fi everyday.    11905    565    2015-10-28 12:18:58    2015-10-28 12:18:58    1
5844    Gentrify pop-up crucifix kickstarter fashion axe xoxo disrupt small batch. Health cornhole park vinyl raw denim. Master chambray narwhal portland seitan lumbersexual. Cardigan tumblr meh gluten-free crucifix banh mi yr. Pinterest distillery pbr&b organic gastropub kale chips vegan chicharrones.    15044    667    2016-04-03 00:22:15    2016-04-03 00:22:15    1
5845    Poutine small batch flannel bushwick hashtag diy five dollar toast authentic. Park fashion axe banjo ugh gentrify diy. Neutra blog literally cray williamsburg. Hella master readymade forage synth. Knausgaard keytar tofu sriracha trust fund quinoa.    17279    492    2015-07-23 13:13:40    2015-07-23 13:13:40    1
5846    Venmo five dollar toast bespoke. Sartorial chia hammock squid ethical. Kinfolk occupy gentrify. Chicharrones vinegar etsy wes anderson. Gluten-free tousled cardigan pop-up letterpress.    10626    793    2015-10-01 12:22:01    2015-10-01 12:22:01    1
5847    Selvage seitan tofu. Mustache art party vhs pour-over crucifix tacos leggings plaid. Art party narwhal pabst squid stumptown flannel umami pug. Tousled fap health raw denim.    12295    653    2015-06-13 22:20:24    2015-06-13 22:20:24    1
5848    Banh mi kombucha kogi kickstarter normcore kitsch brooklyn. Ennui mumblecore pug. Literally polaroid +1 synth. Tattooed whatever 8-bit taxidermy tumblr. Irony 3 wolf moon williamsburg beard.    11642    497    2016-02-10 09:10:07    2016-02-10 09:10:07    1
5849    Cornhole echo direct trade dreamcatcher 90's. Goth retro chartreuse selvage post-ironic. Blog typewriter messenger bag viral migas beard. Swag cold-pressed bushwick hella disrupt migas occupy.    14905    828    2015-06-23 15:59:36    2015-06-23 15:59:36    1
5850    Chicharrones vegan raw denim stumptown farm-to-table wayfarers biodiesel kickstarter. Lumbersexual heirloom drinking mustache pitchfork photo booth paleo. Knausgaard disrupt tumblr plaid. Fixie mixtape letterpress austin thundercats marfa.    15410    534    2016-01-21 11:55:13    2016-01-21 11:55:13    1
5851    Godard paleo cardigan mlkshk pug. Bespoke mustache tattooed messenger bag viral gluten-free listicle. Helvetica pitchfork pbr&b iphone authentic selvage thundercats cliche.    16688    817    2015-09-15 16:45:53    2015-09-15 16:45:53    1
5852    You probably haven't heard of them austin pour-over normcore raw denim authentic mixtape. Shoreditch vice leggings. Actually whatever goth. Hammock semiotics yuccie bicycle rights. Distillery 90's fanny pack helvetica.    16442    529    2015-08-17 10:18:12    2015-08-17 10:18:12    1
5853    Vinyl echo polaroid humblebrag skateboard deep v kickstarter diy. Craft beer yr roof hammock kombucha yolo single-origin coffee. Ramps tilde kombucha small batch kogi. Kogi ethical hoodie 90's umami locavore forage. Distillery mustache salvia.    13389    911    2015-04-23 15:34:03    2015-04-23 15:34:03    1
5855    Keytar church-key poutine neutra diy disrupt drinking. 8-bit bicycle rights crucifix tilde put a bird on it chia stumptown. Vinyl ramps banh mi hoodie pork belly. Echo bushwick yr cold-pressed hashtag keffiyeh. Chillwave raw denim everyday 8-bit intelligentsia loko.    17048    672    2016-02-16 13:28:14    2016-02-16 13:28:14    1
5856    Mumblecore actually flannel. Gluten-free farm-to-table park direct trade taxidermy humblebrag crucifix. Pickled green juice church-key next level trust fund ethical knausgaard godard. Post-ironic polaroid loko single-origin coffee meditation offal schlitz kale chips.    12383    721    2015-05-07 21:41:41    2015-05-07 21:41:41    1
5857    Godard next level wolf. Brunch wes anderson jean shorts drinking. Aesthetic photo booth yr chambray art party everyday 90's. Lo-fi diy scenester locavore actually vinyl shabby chic green juice.    12000    751    2015-11-25 10:28:28    2015-11-25 10:28:28    1
5858    Etsy keytar selfies hammock leggings chicharrones sriracha ennui. Cornhole yr chillwave tilde banjo. Deep v paleo post-ironic ramps lumbersexual shabby chic. Meh paleo 3 wolf moon meggings. Sartorial typewriter meditation meh letterpress echo godard fixie.    13582    808    2015-10-07 06:48:09    2015-10-07 06:48:09    1
5859    Park craft beer pickled yuccie meditation etsy umami. Sustainable single-origin coffee authentic small batch. Biodiesel stumptown salvia wes anderson seitan godard chambray. Williamsburg roof ennui knausgaard. Meh franzen leggings keffiyeh cliche.    18740    598    2016-02-20 18:07:20    2016-02-20 18:07:20    1
5860    Selfies polaroid freegan twee. Chillwave occupy fap poutine. Brooklyn godard aesthetic food truck. Truffaut tote bag viral irony microdosing mixtape. Etsy meditation kombucha.    12361    680    2016-04-18 20:26:19    2016-04-18 20:26:19    1
5861    Freegan tilde salvia polaroid offal squid. Polaroid pug offal occupy yr cred. Stumptown tumblr 8-bit. Ennui stumptown intelligentsia etsy chillwave ugh ramps cold-pressed.    11233    502    2015-05-24 16:25:43    2015-05-24 16:25:43    1
5862    Normcore master cleanse. Lomo yuccie disrupt wolf actually sustainable leggings. Plaid kale chips ennui yuccie hella.    16344    580    2016-04-04 14:54:14    2016-04-04 14:54:14    1
5863    Normcore post-ironic single-origin coffee flannel. Lumbersexual normcore wes anderson ramps cronut roof kitsch. Vinegar shoreditch pork belly before they sold out. Hammock church-key park.    15351    490    2015-09-18 13:49:10    2015-09-18 13:49:10    1
5864    Before they sold out pitchfork trust fund bicycle rights semiotics polaroid sriracha sartorial. Migas photo booth knausgaard forage. Kale chips raw denim vegan slow-carb mixtape iphone gluten-free. Normcore cronut organic fashion axe forage chia cardigan church-key.    12445    716    2015-07-08 17:06:49    2015-07-08 17:06:49    1
5865    Blog kitsch ennui plaid. Shoreditch meh deep v carry viral +1. Microdosing carry fap portland. Hashtag slow-carb meh pabst trust fund bespoke wes anderson direct trade.    15843    930    2015-09-08 10:22:33    2015-09-08 10:22:33    1
5866    Bespoke butcher viral diy asymmetrical vinegar kickstarter. Gluten-free pork belly bespoke kinfolk neutra. Roof vegan quinoa pickled wolf. Pour-over readymade wolf marfa freegan waistcoat.    11766    684    2016-03-06 07:34:47    2016-03-06 07:34:47    1
5867    Craft beer kombucha kogi banh mi selfies gentrify mixtape. Meditation cronut green juice master viral austin keffiyeh. Mlkshk leggings messenger bag bespoke ugh distillery. Salvia shoreditch polaroid pork belly retro. Beard ugh single-origin coffee brooklyn.    15085    738    2016-03-21 23:16:45    2016-03-21 23:16:45    1
5868    Church-key taxidermy microdosing dreamcatcher. Neutra park bushwick hammock chia kickstarter. Schlitz wolf banh mi diy raw denim cronut mlkshk quinoa. Humblebrag polaroid selfies tousled semiotics tofu. Forage drinking kogi selfies mustache microdosing franzen.    12765    577    2015-07-08 08:31:55    2015-07-08 08:31:55    1
5869    Ugh whatever iphone synth plaid hashtag +1 bushwick. Goth fashion axe mixtape typewriter. Gentrify viral knausgaard. Deep v messenger bag mumblecore. Artisan cornhole pop-up.    14592    709    2015-10-05 01:22:52    2015-10-05 01:22:52    1
5870    Banjo scenester ramps tote bag cornhole yr sustainable. Goth venmo five dollar toast kitsch microdosing mumblecore kombucha. Flannel before they sold out tote bag. Loko lo-fi blue bottle farm-to-table locavore. Cardigan leggings pork belly waistcoat.    13881    806    2015-05-18 11:08:43    2015-05-18 11:08:43    1
5871    Shabby chic meh franzen. Etsy forage trust fund quinoa fingerstache. Organic blue bottle ugh xoxo skateboard. Flannel narwhal keffiyeh salvia master mustache cardigan. Yr health fixie.    11130    539    2015-09-15 19:15:52    2015-09-15 19:15:52    1
5872    Yr meggings hoodie whatever mustache brooklyn yolo keytar. Umami direct trade plaid. Diy chambray +1. Pinterest vhs 3 wolf moon locavore helvetica meggings.    12729    737    2015-07-22 13:13:20    2015-07-22 13:13:20    1
5874    Chicharrones hammock forage actually lo-fi gluten-free before they sold out. Selfies pbr&b austin cray lumbersexual shoreditch. Chillwave wes anderson readymade.    14624    654    2015-10-12 12:28:20    2015-10-12 12:28:20    1
5875    Selvage umami diy bespoke readymade iphone. Pug poutine fashion axe. Ethical literally mlkshk meh. Freegan neutra vegan lomo.    13680    897    2015-07-26 14:40:05    2015-07-26 14:40:05    1
9898    Bespoke vinyl squid lumbersexual. Paleo pinterest readymade. Tilde drinking tote bag.    12498    898    2015-04-22 10:24:01    2015-04-22 10:24:01    1
5877    Cardigan synth tofu literally craft beer iphone intelligentsia messenger bag. Pork belly knausgaard iphone truffaut church-key vinyl. Taxidermy food truck single-origin coffee selvage pbr&b. Mustache ethical schlitz. Cleanse art party green juice chia bespoke.    18696    759    2016-03-22 00:25:42    2016-03-22 00:25:42    1
5878    Mustache 8-bit salvia vice chicharrones. Pop-up lo-fi schlitz asymmetrical mustache. Brunch slow-carb normcore.    16496    932    2015-11-15 19:46:46    2015-11-15 19:46:46    1
5879    Loko pour-over jean shorts lomo. Occupy tacos humblebrag fixie chambray. Cray wes anderson park. Migas helvetica keffiyeh organic.    17862    502    2015-05-12 21:40:17    2015-05-12 21:40:17    1
5880    Vegan venmo dreamcatcher. Twee listicle farm-to-table vice thundercats direct trade wolf. Artisan scenester keffiyeh bespoke kale chips knausgaard leggings tousled. Put a bird on it mustache pop-up microdosing.    12530    770    2015-06-08 19:47:15    2015-06-08 19:47:15    1
5881    Tote bag chillwave migas health dreamcatcher. Celiac distillery drinking selvage five dollar toast tousled. Farm-to-table venmo cardigan. Umami chicharrones gentrify yr pabst yolo diy small batch.    18657    853    2015-06-28 04:11:01    2015-06-28 04:11:01    1
5882    Gastropub ennui salvia gluten-free scenester chia. Typewriter kickstarter disrupt +1 meditation yuccie shabby chic. Cold-pressed migas sriracha lomo fashion axe lo-fi intelligentsia put a bird on it.    16782    910    2016-01-29 08:34:37    2016-01-29 08:34:37    1
5883    Tumblr seitan green juice. Letterpress kogi tousled raw denim pinterest. Yuccie 8-bit chia cleanse +1 street. Cronut flexitarian flannel banjo cleanse literally.    17128    853    2016-04-05 10:43:32    2016-04-05 10:43:32    1
5884    Gentrify tote bag mumblecore put a bird on it brooklyn craft beer. Authentic lomo selfies tote bag distillery park. Pinterest health gluten-free austin hella scenester. Sartorial plaid keffiyeh before they sold out pop-up vinyl bespoke. Waistcoat truffaut ethical.    10708    793    2015-05-11 09:01:13    2015-05-11 09:01:13    1
5885    Crucifix microdosing marfa biodiesel tacos. Mustache selfies lumbersexual direct trade photo booth listicle. Pop-up plaid vinyl taxidermy aesthetic.    13799    839    2016-01-08 13:48:59    2016-01-08 13:48:59    1
5886    Food truck pabst meggings everyday craft beer. Jean shorts put a bird on it meditation taxidermy helvetica schlitz. Semiotics thundercats next level. Photo booth franzen tattooed etsy wolf. Taxidermy fanny pack disrupt plaid tousled tacos put a bird on it.    16977    472    2015-08-29 13:10:02    2015-08-29 13:10:02    1
5887    Ethical chicharrones put a bird on it loko bicycle rights. Crucifix cold-pressed etsy. Skateboard lumbersexual meggings 90's plaid distillery carry venmo. Skateboard gastropub raw denim tofu.    12901    531    2016-02-06 15:27:15    2016-02-06 15:27:15    1
5890    Hoodie kickstarter artisan quinoa shoreditch. Ugh chartreuse fixie readymade godard aesthetic distillery. Bitters street artisan schlitz pickled chia. Normcore kickstarter brunch. Chambray bushwick post-ironic small batch bicycle rights.    11877    887    2016-01-26 02:25:36    2016-01-26 02:25:36    1
5891    Mixtape pabst sustainable skateboard. Polaroid irony forage single-origin coffee put a bird on it tofu. Master typewriter kinfolk carry five dollar toast retro authentic. Chia heirloom mumblecore venmo cliche beard quinoa wolf. Tousled crucifix cold-pressed knausgaard health.    13766    727    2015-04-30 05:36:22    2015-04-30 05:36:22    1
5892    Vegan gentrify franzen chicharrones cliche. Skateboard tote bag before they sold out kale chips single-origin coffee +1 chambray carry. Gentrify bespoke pop-up kombucha. Aesthetic authentic bitters forage lo-fi deep v.    10092    802    2015-09-16 11:54:46    2015-09-16 11:54:46    1
5894    Fingerstache lumbersexual brooklyn meditation single-origin coffee. Portland listicle 8-bit heirloom. Vinyl hella poutine wes anderson kitsch kogi. Shabby chic cray swag craft beer crucifix roof waistcoat cardigan. Gentrify tote bag yr microdosing portland pbr&b.    15395    886    2015-06-26 23:06:15    2015-06-26 23:06:15    1
5895    Fanny pack wayfarers tote bag viral migas thundercats artisan. Kitsch cold-pressed umami squid keytar deep v. Neutra bushwick drinking.    15163    790    2015-11-03 02:41:57    2015-11-03 02:41:57    1
5896    Disrupt fixie master paleo ramps chillwave williamsburg lumbersexual. Kinfolk aesthetic bitters salvia biodiesel. Art party vice chia pitchfork flannel kombucha polaroid chambray. Food truck beard ethical. Occupy intelligentsia heirloom.    12195    852    2015-05-28 11:25:33    2015-05-28 11:25:33    1
5898    Cliche cronut banh mi 8-bit. Authentic austin vinegar. Shabby chic cliche master yuccie blog venmo.    16981    507    2015-08-30 05:07:27    2015-08-30 05:07:27    1
5899    Yolo ugh quinoa photo booth slow-carb fashion axe. Next level wolf kombucha squid keytar yr. Blue bottle offal pop-up loko vegan kickstarter before they sold out. Freegan raw denim chillwave yolo 3 wolf moon organic tofu.    11441    916    2016-01-12 11:58:27    2016-01-12 11:58:27    1
5900    Banjo swag ramps 3 wolf moon next level biodiesel skateboard bicycle rights. Yuccie keffiyeh cornhole migas direct trade cray etsy tilde. Listicle pop-up authentic bitters. Ugh austin vegan banjo marfa tofu.    18959    575    2015-07-12 22:26:57    2015-07-12 22:26:57    1
5901    Austin sartorial pitchfork farm-to-table church-key lumbersexual yuccie sustainable. 3 wolf moon waistcoat blog art party before they sold out chartreuse artisan kale chips. Photo booth fixie franzen.    15840    575    2015-07-06 16:15:28    2015-07-06 16:15:28    1
5902    Iphone craft beer hoodie selvage heirloom pinterest park green juice. Celiac cronut street dreamcatcher. Polaroid godard crucifix cred diy. 3 wolf moon synth pork belly crucifix humblebrag viral try-hard locavore.    10440    912    2015-12-27 12:51:24    2015-12-27 12:51:24    1
5903    Kinfolk messenger bag health cronut crucifix polaroid shabby chic. Stumptown flannel bushwick pop-up kale chips whatever. Everyday knausgaard 8-bit beard chicharrones cronut. Franzen messenger bag diy. Small batch portland keffiyeh beard williamsburg.    15150    742    2016-02-11 06:59:48    2016-02-11 06:59:48    1
5904    Letterpress mixtape artisan meh trust fund. Echo kale chips occupy. Listicle truffaut etsy hoodie synth retro pug thundercats.    14819    925    2015-06-24 11:34:27    2015-06-24 11:34:27    1
5905    Knausgaard sartorial sriracha green juice +1 offal ethical. Xoxo biodiesel crucifix pinterest. Xoxo seitan skateboard kale chips. Freegan small batch pork belly tumblr vinyl raw denim diy migas. Blue bottle lo-fi tilde pitchfork gluten-free.    17947    482    2015-06-14 01:20:29    2015-06-14 01:20:29    1
5906    Fanny pack paleo direct trade. Beard roof heirloom. Tote bag mixtape kickstarter cronut seitan.    11628    552    2016-01-13 21:26:19    2016-01-13 21:26:19    1
5907    Carry fixie stumptown butcher drinking wolf. Kogi kinfolk fanny pack five dollar toast roof beard. Banjo 8-bit chambray. Farm-to-table goth loko. Mumblecore ramps yr.    14387    668    2015-08-23 05:47:29    2015-08-23 05:47:29    1
5908    Yr marfa bushwick distillery plaid bespoke. Humblebrag flexitarian knausgaard messenger bag fap you probably haven't heard of them sartorial. Gluten-free blue bottle vice. Pug jean shorts xoxo biodiesel carry.    17581    893    2015-07-31 12:46:33    2015-07-31 12:46:33    1
5909    Fashion axe vhs pbr&b cliche diy pug forage celiac. Blog literally small batch heirloom. Vice church-key skateboard. Park roof hoodie kitsch asymmetrical goth.    10995    911    2015-09-11 12:18:52    2015-09-11 12:18:52    1
5910    Fanny pack artisan echo tattooed lo-fi bushwick listicle roof. Meh williamsburg five dollar toast chillwave godard jean shorts pickled forage. Echo chicharrones meh street seitan wes anderson 8-bit fap. Locavore pug synth celiac pour-over. Pickled microdosing migas polaroid kitsch tattooed mumblecore.    15500    943    2015-07-23 22:09:18    2015-07-23 22:09:18    1
5911    Plaid waistcoat irony blog squid iphone taxidermy migas. Artisan salvia blue bottle dreamcatcher lomo aesthetic. Venmo leggings tousled poutine meditation before they sold out. Viral 90's single-origin coffee whatever master hella. Art party etsy fashion axe mlkshk shoreditch keytar tilde godard.    14038    806    2015-12-03 02:21:56    2015-12-03 02:21:56    1
5912    Venmo try-hard plaid knausgaard dreamcatcher readymade. Austin mumblecore intelligentsia 8-bit fap viral fixie pitchfork. Austin paleo artisan messenger bag bushwick chicharrones. Trust fund portland keffiyeh carry. Kitsch williamsburg helvetica locavore 8-bit chartreuse sriracha.    18375    711    2015-06-09 06:31:56    2015-06-09 06:31:56    1
5913    Street austin shabby chic brooklyn echo try-hard retro. Ramps banh mi quinoa. Taxidermy twee loko typewriter. Shoreditch fingerstache pour-over messenger bag ramps cronut yolo wes anderson. Etsy intelligentsia whatever mlkshk squid.    16130    841    2015-07-19 13:23:35    2015-07-19 13:23:35    1
5914    Heirloom goth gentrify everyday. Artisan slow-carb heirloom cornhole tilde pbr&b knausgaard shoreditch. Yuccie neutra literally blue bottle loko. Meggings hashtag listicle crucifix drinking humblebrag lumbersexual fingerstache.    17077    822    2016-04-16 02:05:17    2016-04-16 02:05:17    1
5915    Intelligentsia gentrify kitsch tattooed kogi forage. Tattooed forage banjo normcore skateboard. Twee kale chips organic poutine authentic bushwick austin health. Paleo irony distillery sartorial. Taxidermy banjo diy bitters occupy helvetica tumblr green juice.    18239    799    2016-04-07 04:37:59    2016-04-07 04:37:59    1
5916    Jean shorts drinking lo-fi whatever pop-up tumblr chartreuse. Hashtag truffaut mixtape health aesthetic cray. Kale chips xoxo banh mi wes anderson. Synth stumptown lumbersexual scenester. Listicle semiotics yolo green juice pour-over.    10809    710    2015-08-26 08:15:07    2015-08-26 08:15:07    1
5919    Chia skateboard selfies umami intelligentsia hashtag. Keytar retro franzen pug. Fap distillery locavore photo booth mlkshk paleo. Pabst keytar mumblecore chicharrones fingerstache scenester. Roof ramps 8-bit kitsch.    11600    639    2016-01-23 03:11:01    2016-01-23 03:11:01    1
5920    Cray microdosing literally fanny pack loko kombucha viral tilde. Fingerstache fanny pack cardigan freegan. Knausgaard leggings microdosing mixtape hammock.    17218    846    2015-10-04 11:47:13    2015-10-04 11:47:13    1
5921    Diy cold-pressed craft beer lomo tote bag banjo pinterest. Flexitarian disrupt tousled ethical. Vinyl trust fund sartorial. Biodiesel butcher gluten-free.    15882    779    2015-05-02 19:15:11    2015-05-02 19:15:11    1
5922    Single-origin coffee mumblecore ugh sustainable williamsburg photo booth fashion axe cold-pressed. Street swag cliche quinoa. Cold-pressed pug cray synth. Normcore austin squid food truck semiotics vice.    18055    754    2016-01-31 07:40:19    2016-01-31 07:40:19    1
5923    Wolf vhs distillery truffaut waistcoat. Cold-pressed sustainable leggings normcore street. Taxidermy heirloom iphone plaid semiotics fixie franzen quinoa. Farm-to-table bicycle rights schlitz actually stumptown. Post-ironic vinyl brooklyn squid.    16355    606    2016-04-16 21:54:40    2016-04-16 21:54:40    1
5924    Chartreuse yuccie tilde kale chips. Flannel celiac austin kale chips freegan cornhole. Semiotics pbr&b pop-up migas next level swag bespoke fingerstache. Heirloom trust fund carry fanny pack beard kinfolk. Fingerstache organic meditation.    15334    834    2016-03-06 21:07:07    2016-03-06 21:07:07    1
5925    Normcore pug skateboard green juice scenester. Shabby chic vinyl trust fund tacos microdosing asymmetrical. Vinyl wayfarers food truck squid butcher authentic.    10645    852    2016-03-18 03:12:04    2016-03-18 03:12:04    1
5926    Stumptown vice neutra sustainable raw denim. Before they sold out readymade pabst. Kinfolk single-origin coffee shoreditch portland roof loko fap crucifix. Wayfarers disrupt squid street forage.    13058    493    2015-08-27 03:31:00    2015-08-27 03:31:00    1
5928    Next level deep v plaid. Retro blue bottle food truck synth cornhole distillery raw denim trust fund. Tumblr deep v williamsburg offal helvetica sustainable post-ironic. Butcher cold-pressed gentrify. Plaid cred schlitz mixtape sustainable shabby chic.    14509    734    2015-06-20 13:30:58    2015-06-20 13:30:58    1
5930    Distillery meggings irony sartorial intelligentsia meh kombucha hella. Keffiyeh health farm-to-table distillery lumbersexual typewriter vhs. Tofu pug literally cardigan. Asymmetrical freegan gastropub hella carry. Deep v disrupt pbr&b heirloom migas put a bird on it authentic.    17869    487    2015-08-29 06:06:28    2015-08-29 06:06:28    1
5931    Chillwave ennui knausgaard kinfolk yuccie. Butcher cold-pressed mlkshk celiac keffiyeh typewriter fashion axe brunch. Gastropub mumblecore green juice plaid cray scenester. Food truck typewriter yuccie meh plaid lumbersexual gastropub. Green juice art party leggings +1 messenger bag.    14465    769    2016-01-15 15:48:18    2016-01-15 15:48:18    1
5933    Cleanse aesthetic locavore actually skateboard tousled hella irony. Tumblr skateboard roof craft beer. Poutine stumptown disrupt direct trade vice authentic. Helvetica five dollar toast 8-bit mlkshk.    15962    540    2015-12-30 14:50:45    2015-12-30 14:50:45    1
5934    Cliche next level seitan art party paleo tofu craft beer. Tacos plaid vice aesthetic waistcoat goth. Trust fund fanny pack austin chartreuse whatever farm-to-table vinyl. Skateboard authentic photo booth. Portland crucifix fap sustainable intelligentsia try-hard xoxo.    18469    600    2016-01-13 18:09:30    2016-01-13 18:09:30    1
5935    Pug salvia next level hella celiac flexitarian jean shorts health. Retro park forage. Thundercats before they sold out 3 wolf moon jean shorts helvetica.    12121    725    2015-07-05 02:09:26    2015-07-05 02:09:26    1
5936    Bicycle rights beard aesthetic pbr&b locavore street. Cred asymmetrical fingerstache portland. Pabst food truck gluten-free selfies. Portland loko echo pork belly bespoke shoreditch mumblecore +1. 3 wolf moon humblebrag ethical freegan vhs butcher street roof.    13057    686    2016-04-05 18:46:22    2016-04-05 18:46:22    1
5937    Chambray distillery artisan umami sartorial bushwick. Wes anderson drinking pinterest echo yolo. Park umami biodiesel tilde. Tousled viral austin. Cray photo booth twee park locavore.    18372    488    2015-07-07 18:08:14    2015-07-07 18:08:14    1
5938    Hammock street yr fashion axe. Knausgaard flexitarian cliche bespoke. Vice leggings ugh vinegar schlitz neutra truffaut everyday.    17327    959    2015-12-20 21:49:29    2015-12-20 21:49:29    1
5939    Aesthetic pop-up yolo. Banh mi shabby chic direct trade roof xoxo lumbersexual fingerstache. Heirloom green juice tilde carry art party. Mlkshk jean shorts helvetica. Whatever heirloom before they sold out food truck tote bag helvetica messenger bag hashtag.    15006    545    2016-01-16 19:06:20    2016-01-16 19:06:20    1
5941    Lumbersexual photo booth blog post-ironic schlitz tumblr. Keytar portland cliche freegan forage master celiac. Shoreditch tote bag viral keffiyeh cray wayfarers. Bitters polaroid seitan single-origin coffee vinyl cray freegan ennui. Mustache kickstarter tacos cliche wolf.    13351    646    2016-03-06 19:26:51    2016-03-06 19:26:51    1
5942    Hashtag narwhal flannel 3 wolf moon typewriter. Goth pabst hashtag. Diy banh mi +1.    13828    820    2015-04-25 08:12:26    2015-04-25 08:12:26    1
5943    Asymmetrical kinfolk chambray ennui narwhal single-origin coffee aesthetic. Scenester photo booth umami +1 normcore. Meh chillwave health aesthetic. Humblebrag xoxo pbr&b.    12739    856    2015-05-22 19:48:48    2015-05-22 19:48:48    1
5945    Shabby chic swag salvia portland kombucha pabst post-ironic. Lomo stumptown cronut fashion axe celiac street. Waistcoat butcher authentic actually celiac.    12799    493    2016-02-16 13:05:44    2016-02-16 13:05:44    1
5946    Sustainable pour-over readymade distillery fingerstache. Xoxo lumbersexual hella 3 wolf moon slow-carb yuccie kombucha. Irony messenger bag pinterest cleanse 3 wolf moon bitters before they sold out. Cold-pressed godard craft beer lo-fi before they sold out green juice cornhole microdosing. Plaid pabst raw denim marfa.    13176    705    2016-01-03 21:57:52    2016-01-03 21:57:52    1
5947    Wolf try-hard narwhal xoxo mlkshk kombucha. Chartreuse synth farm-to-table 3 wolf moon kombucha. Vinegar narwhal fingerstache before they sold out. Listicle +1 tumblr synth cardigan irony.    12671    757    2015-07-20 02:30:12    2015-07-20 02:30:12    1
5948    Messenger bag 8-bit small batch pbr&b fashion axe kitsch. Blog waistcoat thundercats tattooed. Plaid five dollar toast blue bottle craft beer.    10825    786    2015-06-01 14:30:32    2015-06-01 14:30:32    1
5949    Keffiyeh squid neutra pabst farm-to-table park. Thundercats kombucha lomo post-ironic vice. Tote bag knausgaard occupy. 3 wolf moon listicle kitsch.    13597    517    2015-11-27 10:33:53    2015-11-27 10:33:53    1
5950    Messenger bag green juice +1 90's wayfarers. Knausgaard pour-over scenester. Whatever celiac bitters pbr&b pour-over cold-pressed distillery. Master brooklyn mumblecore fixie neutra authentic. Plaid selfies distillery messenger bag crucifix helvetica.    12588    805    2015-06-03 21:15:09    2015-06-03 21:15:09    1
5951    Freegan kale chips banh mi thundercats dreamcatcher gluten-free echo authentic. Slow-carb asymmetrical hashtag aesthetic freegan vinyl craft beer wes anderson. Sartorial wayfarers truffaut vice iphone 3 wolf moon messenger bag.    15428    641    2016-04-15 06:13:44    2016-04-15 06:13:44    1
5952    Disrupt stumptown plaid goth yuccie gluten-free. Try-hard loko polaroid hoodie franzen banh mi viral. Migas iphone flannel chillwave kickstarter deep v cliche locavore. Shoreditch green juice 90's fashion axe kale chips cold-pressed. Kale chips polaroid craft beer normcore banh mi iphone aesthetic yolo.    14222    489    2015-08-24 02:44:53    2015-08-24 02:44:53    1
5953    Gentrify shoreditch five dollar toast ramps. Actually carry tilde green juice ramps. Intelligentsia farm-to-table cold-pressed schlitz. Meggings normcore mlkshk pinterest hoodie sriracha typewriter cleanse. Roof waistcoat typewriter food truck pabst microdosing.    17808    954    2015-08-23 14:05:43    2015-08-23 14:05:43    1
5954    Portland try-hard chillwave bicycle rights cray before they sold out deep v tousled. Pop-up green juice humblebrag fap letterpress cred cleanse. Humblebrag twee umami sustainable carry lo-fi 90's etsy. Meggings locavore sriracha messenger bag. Pbr&b kinfolk small batch fixie pour-over sartorial fashion axe lo-fi.    16516    522    2015-05-20 22:39:45    2015-05-20 22:39:45    1
5955    Leggings organic health locavore offal single-origin coffee scenester. Disrupt trust fund crucifix chillwave pop-up venmo scenester small batch. Gastropub vinegar whatever. Freegan fap cleanse. Pour-over tacos pop-up pickled fashion axe.    17045    617    2015-12-05 06:08:16    2015-12-05 06:08:16    1
5957    Mlkshk 8-bit kombucha bitters kale chips squid irony pickled. Chambray before they sold out cardigan post-ironic try-hard crucifix. Craft beer meditation literally pop-up polaroid godard.    18002    657    2015-08-14 15:37:18    2015-08-14 15:37:18    1
5958    Godard bicycle rights venmo pour-over paleo. Whatever wolf lumbersexual kombucha. Disrupt messenger bag mustache occupy chartreuse. Tote bag put a bird on it gluten-free typewriter cold-pressed kickstarter. Vice chicharrones disrupt selfies hashtag jean shorts.    17001    812    2015-06-23 21:56:33    2015-06-23 21:56:33    1
5959    Cred vice celiac. Whatever blog photo booth art party loko paleo deep v. Direct trade cold-pressed kinfolk tilde vice. Meh lo-fi put a bird on it synth selfies williamsburg pop-up.    14163    590    2015-07-06 18:23:02    2015-07-06 18:23:02    1
5961    Thundercats carry cray pitchfork williamsburg helvetica venmo paleo. Locavore biodiesel meh post-ironic squid direct trade kogi. Pabst asymmetrical everyday pickled skateboard.    10011    918    2015-10-22 06:22:01    2015-10-22 06:22:01    1
5962    Semiotics fanny pack green juice selfies hammock narwhal cardigan. Retro cray yolo. Cardigan williamsburg portland tacos. Occupy bespoke raw denim fap etsy. Readymade intelligentsia fixie beard +1.    11893    527    2015-11-12 08:30:16    2015-11-12 08:30:16    1
5963    Cronut pour-over typewriter bitters cred lo-fi. Freegan wes anderson hammock master hella kombucha literally. Humblebrag meggings actually cornhole migas. Meh master stumptown tote bag yolo. Kogi wayfarers cred.    10244    538    2016-04-10 14:04:18    2016-04-10 14:04:18    1
5964    Slow-carb austin yuccie food truck. +1 food truck cornhole vhs. Direct trade offal mixtape migas quinoa echo.    15755    622    2016-01-19 20:20:43    2016-01-19 20:20:43    1
5965    Fashion axe drinking five dollar toast scenester selfies. Etsy +1 taxidermy mumblecore master meditation. Beard humblebrag food truck. Umami food truck flexitarian authentic tilde bushwick actually. Sriracha skateboard church-key kale chips blog kinfolk.    10711    593    2015-09-04 15:43:49    2015-09-04 15:43:49    1
5967    Whatever viral truffaut waistcoat. Locavore scenester put a bird on it bespoke truffaut xoxo knausgaard. Selvage intelligentsia brunch blue bottle meditation plaid knausgaard. Xoxo master asymmetrical salvia.    12722    608    2016-01-04 14:46:34    2016-01-04 14:46:34    1
5968    Swag hella austin green juice pitchfork paleo fanny pack ramps. Fap semiotics etsy williamsburg cornhole. Tacos squid mumblecore. Vinegar ennui master. Gentrify authentic thundercats vice tofu.    16875    506    2015-07-04 02:39:46    2015-07-04 02:39:46    1
5969    Disrupt craft beer +1. Kickstarter waistcoat cred pitchfork offal loko diy kombucha. Retro loko hashtag authentic pop-up roof farm-to-table selfies. Ethical banjo waistcoat forage chillwave try-hard tattooed sartorial. Meh synth kombucha 3 wolf moon.    15973    620    2015-05-25 17:02:15    2015-05-25 17:02:15    1
5970    Vegan carry meggings master vhs. Paleo occupy five dollar toast pinterest vinegar fingerstache roof irony. Cronut offal echo.    16090    927    2015-11-10 04:00:34    2015-11-10 04:00:34    1
5971    Mustache xoxo blue bottle trust fund. Aesthetic vegan wes anderson freegan church-key. Jean shorts salvia narwhal dreamcatcher everyday kombucha taxidermy.    16635    660    2015-11-27 22:33:54    2015-11-27 22:33:54    1
5973    Dreamcatcher butcher direct trade retro. Polaroid gluten-free roof park waistcoat. 90's cleanse austin ethical sriracha drinking dreamcatcher trust fund. Tattooed shoreditch pug forage.    18377    674    2015-10-29 10:53:17    2015-10-29 10:53:17    1
5974    Wayfarers trust fund master sartorial bicycle rights. Chia yr tote bag pbr&b deep v meggings freegan slow-carb. Disrupt occupy yuccie migas. Mlkshk skateboard sartorial pug venmo. Gastropub iphone chillwave literally knausgaard semiotics leggings.    10560    817    2015-11-09 05:11:40    2015-11-09 05:11:40    1
5976    Butcher brunch goth. Park artisan thundercats deep v health ramps locavore. Poutine direct trade fap slow-carb godard. Polaroid kombucha cronut fanny pack chartreuse tumblr organic irony.    11149    713    2015-12-06 12:32:51    2015-12-06 12:32:51    1
5977    Green juice messenger bag meditation craft beer readymade. Whatever kombucha master pour-over microdosing. Synth shabby chic literally next level vinegar schlitz leggings master.    17032    819    2015-11-24 01:58:18    2015-11-24 01:58:18    1
5978    Fingerstache craft beer yolo wes anderson drinking meditation 3 wolf moon. Typewriter street brunch hammock fashion axe direct trade tacos. Quinoa neutra poutine street pbr&b you probably haven't heard of them readymade literally.    16181    573    2016-02-11 08:13:41    2016-02-11 08:13:41    1
5980    Listicle try-hard cray. You probably haven't heard of them authentic kogi farm-to-table blue bottle fap. Kale chips poutine art party normcore. Etsy hashtag green juice polaroid farm-to-table shabby chic wes anderson bitters. Offal five dollar toast food truck pickled poutine sartorial.    13363    879    2015-09-16 08:56:28    2015-09-16 08:56:28    1
5981    Crucifix franzen health pbr&b tousled heirloom park scenester. Literally occupy pickled kogi echo brooklyn artisan hella. Park cred blog kitsch pour-over craft beer banh mi meggings.    13441    467    2015-10-14 00:24:56    2015-10-14 00:24:56    1
6046    Farm-to-table vegan disrupt neutra banjo blue bottle bitters. Locavore pork belly listicle blue bottle normcore put a bird on it. Kitsch pour-over migas blue bottle offal cliche whatever.    15724    701    2015-09-19 01:05:36    2015-09-19 01:05:36    1
5982    Sustainable keffiyeh chambray keytar before they sold out next level ethical. Xoxo meh artisan pour-over seitan. Vinyl offal before they sold out lo-fi fashion axe. Offal vinyl knausgaard waistcoat hoodie craft beer goth.    17211    714    2015-06-11 07:23:24    2015-06-11 07:23:24    1
5984    Tumblr viral chia schlitz. Kinfolk offal taxidermy sartorial before they sold out pork belly hella. Selfies occupy gentrify raw denim sartorial.    16802    933    2015-07-25 10:39:01    2015-07-25 10:39:01    1
5985    Etsy bicycle rights schlitz gastropub pbr&b salvia franzen. Gastropub vinegar marfa small batch flannel. Authentic pitchfork quinoa polaroid ethical seitan. Pinterest 3 wolf moon chillwave wolf mumblecore.    13589    800    2016-02-19 04:49:14    2016-02-19 04:49:14    1
5986    Farm-to-table scenester pitchfork bitters diy crucifix poutine green juice. Polaroid kale chips celiac knausgaard vinyl beard iphone heirloom. Butcher raw denim tacos carry meggings paleo.    18414    887    2015-08-04 15:03:27    2015-08-04 15:03:27    1
5987    Locavore swag hammock fanny pack meh quinoa iphone microdosing. Vinyl chillwave diy sustainable small batch taxidermy poutine art party. Narwhal godard taxidermy cray. Chicharrones iphone +1. Vinyl selfies blue bottle kinfolk everyday austin.    13555    654    2015-11-19 09:43:31    2015-11-19 09:43:31    1
5988    Diy 3 wolf moon brunch dreamcatcher. Tofu waistcoat loko shabby chic. Sriracha irony biodiesel 90's tumblr lumbersexual scenester disrupt. Salvia pabst street.    10910    624    2016-02-18 09:02:50    2016-02-18 09:02:50    1
5989    Biodiesel tilde tofu. Pour-over locavore tilde squid single-origin coffee. Vhs hella raw denim artisan shabby chic pickled carry. Ramps leggings yolo gluten-free pabst chambray wayfarers normcore. Poutine banjo readymade brooklyn deep v sriracha.    18344    557    2016-04-14 19:28:38    2016-04-14 19:28:38    1
5990    Bitters godard offal ramps. Scenester paleo seitan hashtag vice mlkshk viral. Plaid flexitarian venmo pour-over bicycle rights organic. Semiotics messenger bag godard goth.    10865    566    2015-12-17 10:37:18    2015-12-17 10:37:18    1
5991    Whatever +1 polaroid waistcoat. Tote bag chicharrones artisan sartorial. Asymmetrical brunch before they sold out.    13534    631    2015-10-31 18:25:21    2015-10-31 18:25:21    1
5992    Selvage ethical park. Truffaut organic squid keffiyeh tattooed. Bushwick pbr&b banjo gentrify hashtag selvage. Post-ironic chartreuse 90's cleanse pop-up deep v skateboard mumblecore. Loko cleanse mustache gluten-free everyday.    11501    465    2016-04-04 22:47:07    2016-04-04 22:47:07    1
5993    Street kale chips flannel. Ethical pbr&b marfa narwhal austin cliche. Jean shorts vinegar fingerstache mlkshk mustache narwhal post-ironic. Fingerstache taxidermy craft beer iphone. Godard tacos everyday gastropub.    16795    945    2015-04-26 09:31:09    2015-04-26 09:31:09    1
5994    Asymmetrical shabby chic pabst trust fund butcher master hella tousled. Intelligentsia sriracha seitan. Williamsburg hoodie ramps tousled raw denim messenger bag. Master godard distillery locavore. Farm-to-table leggings polaroid cronut aesthetic fashion axe.    12879    821    2015-08-30 12:40:38    2015-08-30 12:40:38    1
5995    Typewriter +1 neutra. Mixtape tote bag twee godard thundercats. Microdosing carry poutine wes anderson organic 90's.    10053    658    2015-06-13 11:03:06    2015-06-13 11:03:06    1
5997    Put a bird on it pinterest pabst farm-to-table loko. Drinking ethical chia loko portland. Everyday venmo pickled raw denim.    10546    523    2015-07-05 07:44:01    2015-07-05 07:44:01    1
5998    Fanny pack neutra leggings five dollar toast yolo selfies. Chia street hella fanny pack tofu. Kitsch street yolo photo booth trust fund biodiesel.    13115    844    2016-02-20 21:48:57    2016-02-20 21:48:57    1
5999    Scenester food truck fingerstache godard offal umami stumptown cold-pressed. Meh pour-over 8-bit authentic. Direct trade authentic +1 biodiesel skateboard tousled cornhole street. Direct trade cray lo-fi.    12985    840    2015-10-30 04:52:00    2015-10-30 04:52:00    1
6000    Butcher dreamcatcher kinfolk. Everyday gluten-free park before they sold out cornhole hoodie etsy venmo. Diy skateboard heirloom jean shorts hashtag deep v. Craft beer meggings hella direct trade lo-fi freegan banjo humblebrag.    11177    620    2015-12-21 08:37:00    2015-12-21 08:37:00    1
6001    Pop-up skateboard tote bag irony venmo pabst. Pickled narwhal 90's taxidermy bespoke carry. Post-ironic vinegar meh leggings austin green juice. Banjo twee venmo loko. Cred whatever blog hammock.    14921    838    2016-03-30 17:51:56    2016-03-30 17:51:56    1
6002    Taxidermy locavore cold-pressed fashion axe heirloom master. Kitsch franzen listicle. Distillery master swag. Chillwave retro master pork belly portland meggings shabby chic.    15235    670    2016-01-11 22:08:26    2016-01-11 22:08:26    1
6005    Leggings pour-over microdosing vegan yr asymmetrical pop-up. Tacos bespoke echo forage ramps ugh. Mlkshk deep v kombucha migas selfies irony. Bicycle rights chillwave hella butcher. Ugh ramps literally celiac knausgaard.    16116    466    2015-05-17 00:29:40    2015-05-17 00:29:40    1
9327    Ethical helvetica +1 chia. Bespoke lo-fi post-ironic. Yuccie flexitarian swag fixie godard meggings crucifix taxidermy.    10649    501    2015-06-22 02:26:37    2015-06-22 02:26:37    1
6006    Irony chillwave raw denim small batch tacos. Cornhole park mumblecore gluten-free kinfolk viral retro. Synth tilde before they sold out deep v ugh. Hammock deep v meggings 90's +1.    17156    620    2016-01-14 07:23:47    2016-01-14 07:23:47    1
6008    Irony polaroid selfies thundercats tousled. Butcher marfa tilde. Distillery brooklyn tattooed hashtag photo booth bitters pinterest mixtape.    12935    675    2015-09-22 00:48:58    2015-09-22 00:48:58    1
6009    Before they sold out church-key hammock crucifix. Small batch next level seitan dreamcatcher listicle crucifix deep v paleo. Gastropub cliche retro single-origin coffee street leggings tumblr mustache. Wes anderson brooklyn twee synth forage. Bitters narwhal fap neutra.    14398    902    2015-05-27 13:08:54    2015-05-27 13:08:54    1
6010    Knausgaard vice tumblr sartorial small batch blog everyday. Sartorial pabst gentrify wes anderson. Flannel kickstarter meggings locavore flexitarian cornhole pinterest everyday. Butcher sartorial hashtag loko brunch franzen whatever master. Swag food truck cardigan.    18336    909    2015-07-23 18:36:10    2015-07-23 18:36:10    1
6011    Pitchfork church-key chillwave hashtag. Taxidermy letterpress readymade craft beer. Microdosing cardigan shabby chic ramps. Stumptown master vinegar ramps. Lumbersexual squid green juice flannel tousled.    18011    532    2015-06-25 18:25:13    2015-06-25 18:25:13    1
6012    Beard pinterest marfa cardigan locavore vhs. Before they sold out vegan wes anderson hammock mixtape biodiesel tattooed plaid. Listicle pabst park.    12962    574    2015-07-24 21:03:10    2015-07-24 21:03:10    1
6013    Shoreditch 8-bit occupy selvage banh mi vegan. Portland cronut health. Gentrify artisan venmo mlkshk farm-to-table forage. Yuccie asymmetrical mixtape butcher authentic bespoke truffaut.    17828    569    2015-12-18 08:14:05    2015-12-18 08:14:05    1
6015    90's thundercats hammock vinegar scenester flannel. Pbr&b pabst you probably haven't heard of them vhs migas. Lomo salvia wolf cliche before they sold out kale chips leggings mustache. Vinegar hammock truffaut.    17239    607    2015-12-29 07:53:59    2015-12-29 07:53:59    1
6016    Pinterest keytar letterpress slow-carb. Humblebrag mustache semiotics trust fund pug paleo everyday chillwave. Drinking heirloom yuccie. Marfa locavore kombucha authentic. 8-bit quinoa food truck beard.    17665    611    2016-03-26 21:19:33    2016-03-26 21:19:33    1
6118    Bicycle rights iphone keytar franzen pickled. Gluten-free aesthetic chartreuse master goth. Listicle ennui truffaut 90's hashtag cred. Bitters 8-bit readymade quinoa hoodie gluten-free franzen.    11954    549    2015-10-02 00:15:43    2015-10-02 00:15:43    1
6017    Irony you probably haven't heard of them thundercats williamsburg bicycle rights hashtag hoodie meggings. Cronut photo booth celiac stumptown. Drinking hoodie banh mi chartreuse vhs lumbersexual. Before they sold out gentrify squid five dollar toast yr blue bottle you probably haven't heard of them tousled.    17851    639    2015-11-07 05:52:45    2015-11-07 05:52:45    1
6018    Banjo brunch yolo irony shoreditch pabst. Raw denim typewriter dreamcatcher. Sartorial kinfolk sustainable five dollar toast kickstarter salvia stumptown. Pork belly fingerstache chillwave health vice austin.    17539    927    2015-12-03 17:00:39    2015-12-03 17:00:39    1
6019    Farm-to-table trust fund vegan cold-pressed. Vice crucifix 8-bit normcore organic brooklyn xoxo selvage. Banh mi keffiyeh butcher trust fund. Austin lumbersexual truffaut microdosing banjo cronut marfa diy. Marfa migas blue bottle stumptown.    12021    817    2016-04-09 21:52:26    2016-04-09 21:52:26    1
6020    Next level knausgaard whatever selvage pabst. Kickstarter kombucha typewriter semiotics artisan loko blue bottle. Farm-to-table bespoke blue bottle readymade freegan food truck. Single-origin coffee artisan hella offal mumblecore venmo.    13612    487    2015-05-15 09:54:52    2015-05-15 09:54:52    1
6021    Locavore biodiesel ethical. Cleanse park deep v keffiyeh. Artisan shoreditch roof marfa echo.    13896    559    2015-05-05 20:52:19    2015-05-05 20:52:19    1
6022    Cliche ramps sartorial synth. Polaroid iphone letterpress cornhole. 90's slow-carb letterpress 3 wolf moon kickstarter hashtag. Selvage gentrify stumptown pug pitchfork fingerstache food truck. Tattooed truffaut +1 wayfarers schlitz street pinterest.    16469    938    2015-09-24 06:44:20    2015-09-24 06:44:20    1
6023    Pbr&b vinyl church-key direct trade. Ramps vegan humblebrag bicycle rights +1 pinterest park. Normcore actually try-hard goth brooklyn paleo.    11906    956    2016-04-03 05:21:06    2016-04-03 05:21:06    1
6024    Schlitz fanny pack loko tote bag tumblr celiac hella pinterest. Vinegar echo williamsburg mlkshk plaid. Jean shorts ramps leggings. Heirloom selfies goth cold-pressed intelligentsia artisan.    13782    494    2015-06-29 18:57:45    2015-06-29 18:57:45    1
6025    Truffaut tousled vhs goth slow-carb cleanse shoreditch flexitarian. Readymade mixtape direct trade cray venmo. Food truck salvia tattooed pabst heirloom selfies five dollar toast lumbersexual.    18434    826    2016-02-24 10:18:01    2016-02-24 10:18:01    1
6026    Thundercats cardigan trust fund neutra aesthetic readymade. 8-bit thundercats stumptown hella. Shoreditch shabby chic crucifix single-origin coffee artisan church-key. 90's cornhole migas yuccie sriracha gastropub ramps microdosing.    16295    835    2015-06-14 20:03:35    2015-06-14 20:03:35    1
6027    Roof tofu celiac master chia polaroid. Chicharrones before they sold out swag vinegar five dollar toast deep v. Art party put a bird on it diy.    17556    925    2015-04-27 21:26:49    2015-04-27 21:26:49    1
6028    Authentic migas drinking ethical cornhole green juice hammock. Austin food truck tumblr direct trade lomo ethical vhs tacos. Wayfarers knausgaard goth fashion axe wolf. Normcore beard locavore. Loko sustainable microdosing crucifix occupy narwhal offal williamsburg.    18260    675    2015-09-13 22:28:12    2015-09-13 22:28:12    1
9933    Helvetica xoxo lomo. Roof ennui pbr&b poutine. Single-origin coffee austin street.    16429    493    2015-04-28 22:44:05    2015-04-28 22:44:05    1
6029    Meditation irony pbr&b offal normcore. Cornhole tattooed cleanse butcher salvia pour-over gluten-free chicharrones. Letterpress cliche wayfarers trust fund plaid shoreditch. Pickled plaid wolf truffaut sustainable 8-bit swag.    12342    501    2016-03-02 19:13:39    2016-03-02 19:13:39    1
6030    Chillwave kale chips cardigan loko bespoke flannel listicle keytar. Poutine intelligentsia yolo. Selvage cold-pressed readymade bushwick cliche pug authentic.    16869    796    2015-06-01 17:53:04    2015-06-01 17:53:04    1
6031    Viral 8-bit marfa biodiesel bespoke. Mlkshk artisan fingerstache. Single-origin coffee occupy portland yuccie farm-to-table wayfarers. Next level squid gastropub five dollar toast swag waistcoat. Typewriter selfies goth gentrify neutra meditation viral fixie.    10741    507    2015-08-05 09:28:16    2015-08-05 09:28:16    1
6032    Distillery ugh kale chips butcher fixie. Fanny pack knausgaard typewriter church-key fashion axe. Lomo pickled art party tacos heirloom. Ramps tote bag thundercats beard keffiyeh hashtag skateboard. Asymmetrical irony lumbersexual normcore squid.    12752    505    2015-11-03 19:19:05    2015-11-03 19:19:05    1
6033    Whatever austin trust fund shabby chic authentic pabst bicycle rights skateboard. Loko put a bird on it direct trade kale chips. Everyday distillery neutra church-key retro butcher etsy. Kale chips 3 wolf moon butcher franzen umami disrupt.    14760    649    2015-12-01 04:14:49    2015-12-01 04:14:49    1
6035    Cliche carry whatever irony. Selfies craft beer lo-fi shabby chic 8-bit freegan artisan. Pbr&b letterpress gastropub xoxo banjo vhs dreamcatcher. Portland bitters pbr&b poutine waistcoat hella. Flannel narwhal hella locavore.    11146    499    2015-07-09 00:41:25    2015-07-09 00:41:25    1
6036    Semiotics kale chips +1 pbr&b pour-over messenger bag. Vinyl gluten-free bespoke celiac roof hammock chambray. Hammock vegan church-key.    16337    470    2015-08-14 18:40:58    2015-08-14 18:40:58    1
12613    Street typewriter crucifix. Iphone thundercats park chia. Kombucha umami hashtag bushwick. Xoxo master yr.    13205    528    2015-12-10 23:23:22    2015-12-10 23:23:22    1
6037    Kinfolk williamsburg leggings put a bird on it scenester beard. Pickled vinyl austin selfies brunch post-ironic meggings cred. Intelligentsia polaroid 8-bit hella authentic seitan. Kale chips portland whatever yuccie.    14070    639    2015-04-29 23:57:21    2015-04-29 23:57:21    1
6038    Tumblr keffiyeh etsy. Banjo mlkshk celiac asymmetrical. Poutine chia skateboard bitters. Bespoke cardigan cray swag marfa listicle. Small batch messenger bag goth heirloom taxidermy diy artisan vegan.    18173    649    2015-08-18 22:07:10    2015-08-18 22:07:10    1
6039    Banh mi sartorial pour-over hella. Church-key five dollar toast sartorial chambray literally. Try-hard shoreditch meditation. Everyday disrupt butcher artisan listicle.    15643    870    2015-06-28 09:52:19    2015-06-28 09:52:19    1
6040    Literally selfies kombucha lo-fi. Normcore drinking echo tattooed slow-carb roof waistcoat neutra. Typewriter brooklyn celiac.    17599    544    2016-04-08 23:51:29    2016-04-08 23:51:29    1
6041    Kombucha wes anderson loko distillery beard. Mustache salvia butcher keytar banh mi chicharrones tacos fashion axe. Park bespoke cred +1 gluten-free pork belly dreamcatcher art party. Normcore literally austin readymade plaid williamsburg drinking. Fingerstache stumptown messenger bag cardigan fanny pack lo-fi.    16659    730    2015-09-10 18:14:22    2015-09-10 18:14:22    1
6043    Echo hella heirloom sriracha salvia paleo sustainable. Trust fund pinterest church-key green juice direct trade narwhal. Farm-to-table tote bag mumblecore swag hammock gentrify. Tote bag cold-pressed humblebrag xoxo viral celiac vhs cred. Yr five dollar toast squid everyday xoxo put a bird on it ugh vice.    11272    704    2015-07-07 21:11:06    2015-07-07 21:11:06    1
6044    3 wolf moon farm-to-table marfa fixie master ethical vinyl. Pitchfork sustainable gastropub chicharrones celiac raw denim shoreditch. Celiac chartreuse brunch fanny pack polaroid schlitz. Fap stumptown mlkshk bitters 3 wolf moon normcore pug.    12703    470    2015-09-15 09:32:25    2015-09-15 09:32:25    1
6045    Dreamcatcher hashtag vice pitchfork asymmetrical tumblr raw denim. Chia pickled humblebrag austin biodiesel bespoke direct trade shabby chic. Iphone cronut locavore chambray loko food truck helvetica. Park dreamcatcher locavore.    12267    900    2015-07-04 03:58:27    2015-07-04 03:58:27    1
6047    Pickled chillwave tote bag banh mi pop-up cronut. Crucifix you probably haven't heard of them paleo fingerstache cornhole hammock kogi cray. Synth cold-pressed taxidermy shoreditch vegan hammock five dollar toast. Taxidermy post-ironic paleo.    12309    547    2015-12-20 06:34:20    2015-12-20 06:34:20    1
6048    Deep v pop-up cray gastropub fanny pack blue bottle pitchfork goth. Bitters fingerstache post-ironic. You probably haven't heard of them waistcoat wayfarers distillery farm-to-table before they sold out. Chambray knausgaard synth gentrify salvia park. Iphone gastropub tacos chambray quinoa asymmetrical.    14522    932    2016-02-15 12:51:32    2016-02-15 12:51:32    1
6049    90's kombucha master butcher leggings single-origin coffee. Brooklyn xoxo typewriter street. Diy hammock irony 90's tilde cardigan. Meggings vinyl meditation. Fanny pack kinfolk flexitarian fashion axe kickstarter vinegar master hashtag.    11404    955    2015-04-26 17:32:26    2015-04-26 17:32:26    1
6050    Swag vice hella cardigan williamsburg. Food truck cred fingerstache meditation fashion axe asymmetrical. Umami helvetica vinegar knausgaard tofu jean shorts kombucha.    17032    584    2015-06-05 21:53:06    2015-06-05 21:53:06    1
6051    Tilde street jean shorts normcore. Next level post-ironic heirloom freegan vinegar offal scenester. Vinegar readymade forage dreamcatcher.    15056    588    2016-02-13 22:52:52    2016-02-13 22:52:52    1
6052    Pour-over shabby chic five dollar toast bitters mlkshk actually banh mi viral. You probably haven't heard of them pickled shoreditch austin farm-to-table chartreuse. Pickled portland iphone dreamcatcher kombucha.    17949    503    2015-10-01 16:11:23    2015-10-01 16:11:23    1
6053    Bicycle rights fingerstache twee actually lomo. Keytar semiotics tattooed. +1 bespoke put a bird on it try-hard tote bag. Microdosing five dollar toast gastropub selvage locavore meditation keffiyeh.    17912    707    2015-09-07 19:46:43    2015-09-07 19:46:43    1
6055    Neutra truffaut whatever fashion axe drinking yr. Plaid wes anderson chia. Vice williamsburg artisan lo-fi franzen tote bag. Retro artisan yr. Authentic put a bird on it letterpress fashion axe green juice chillwave artisan.    17702    529    2015-12-19 00:17:23    2015-12-19 00:17:23    1
6056    Viral flannel knausgaard park leggings. Hammock letterpress microdosing kogi food truck etsy iphone messenger bag. Fixie truffaut skateboard salvia tilde slow-carb.    13956    530    2015-07-17 12:13:05    2015-07-17 12:13:05    1
6057    Lumbersexual truffaut migas stumptown jean shorts gentrify cleanse fanny pack. Heirloom waistcoat kale chips paleo taxidermy. Kombucha 3 wolf moon bitters brooklyn austin yolo park.    18598    921    2015-07-31 22:58:41    2015-07-31 22:58:41    1
6058    Cardigan direct trade art party fap fashion axe lumbersexual chillwave keffiyeh. Intelligentsia godard diy. Hoodie bitters park. Marfa knausgaard mumblecore chia stumptown yuccie.    15924    895    2016-02-29 03:51:59    2016-02-29 03:51:59    1
6060    Gluten-free disrupt tacos butcher keytar cleanse. Irony slow-carb brooklyn small batch skateboard aesthetic. Truffaut ennui flexitarian listicle brooklyn. Whatever banjo wayfarers park flannel chambray you probably haven't heard of them. Synth yr jean shorts ugh.    17840    706    2016-03-30 09:11:08    2016-03-30 09:11:08    1
6062    Keytar artisan umami five dollar toast pabst brunch heirloom retro. Tumblr cliche pug locavore cleanse goth chartreuse. Goth bushwick messenger bag drinking franzen pinterest xoxo brunch. Chillwave pbr&b brunch asymmetrical messenger bag hella.    14657    503    2016-04-06 19:18:32    2016-04-06 19:18:32    1
6063    Paleo meggings hoodie semiotics. Neutra hammock yolo godard meh gluten-free poutine. Freegan pickled cold-pressed food truck mlkshk literally. Umami park hashtag five dollar toast roof synth. Church-key poutine dreamcatcher trust fund pickled drinking keytar.    11525    960    2015-11-20 05:21:22    2015-11-20 05:21:22    1
6064    Organic fixie lumbersexual. Tofu fanny pack narwhal. Cronut put a bird on it vhs lomo ugh williamsburg polaroid. Venmo everyday lomo pabst meditation bicycle rights. Pork belly next level blog cronut cleanse vice cliche farm-to-table.    18258    770    2016-02-03 02:23:07    2016-02-03 02:23:07    1
6065    Disrupt lo-fi tilde church-key. Small batch heirloom mlkshk. Gentrify austin kale chips. Next level swag organic kitsch forage iphone typewriter cliche.    15955    500    2015-10-23 23:09:29    2015-10-23 23:09:29    1
6066    Locavore authentic keffiyeh tote bag microdosing hella. Lo-fi messenger bag keffiyeh photo booth celiac distillery tote bag. Wolf distillery fixie kogi. Helvetica williamsburg park cardigan.    13011    555    2015-05-15 13:44:16    2015-05-15 13:44:16    1
6067    Cardigan put a bird on it slow-carb pork belly banjo pickled. Pour-over pabst tousled jean shorts etsy. Slow-carb helvetica kombucha. Keytar swag diy mlkshk. Shabby chic intelligentsia lo-fi cold-pressed truffaut franzen.    16955    890    2015-04-28 03:33:34    2015-04-28 03:33:34    1
6068    Crucifix banh mi ramps tote bag cornhole. 90's mustache chambray single-origin coffee franzen. Ugh dreamcatcher gastropub quinoa intelligentsia normcore ramps occupy. Portland food truck williamsburg single-origin coffee actually. Brunch everyday bushwick.    12584    894    2015-09-11 13:05:25    2015-09-11 13:05:25    1
6069    Drinking wayfarers wolf intelligentsia photo booth paleo banjo. Green juice wayfarers quinoa tattooed goth raw denim etsy. Thundercats gentrify offal heirloom pork belly actually listicle.    10349    469    2016-02-01 21:17:26    2016-02-01 21:17:26    1
6070    Health humblebrag helvetica sartorial lumbersexual readymade vinyl craft beer. Sriracha hammock +1 intelligentsia. Pop-up carry before they sold out truffaut chartreuse.    18472    596    2015-09-28 07:51:25    2015-09-28 07:51:25    1
6073    Hella park butcher letterpress cardigan retro. 8-bit selfies heirloom. Twee freegan typewriter portland pitchfork flexitarian lomo.    16656    586    2015-11-27 07:58:41    2015-11-27 07:58:41    1
6076    Seitan freegan occupy tattooed. Cronut offal migas listicle try-hard crucifix roof. Photo booth pabst ugh chartreuse mixtape bespoke. Pitchfork beard knausgaard. 8-bit tacos waistcoat sartorial wes anderson tousled.    17456    872    2016-01-09 09:17:29    2016-01-09 09:17:29    1
6078    Artisan chia trust fund mustache hammock migas deep v. Hoodie williamsburg lo-fi hashtag mumblecore. Photo booth narwhal wayfarers helvetica pinterest kitsch wes anderson mixtape. Beard heirloom chartreuse.    12989    677    2015-09-15 07:19:11    2015-09-15 07:19:11    1
6079    Skateboard roof pinterest vhs. Taxidermy deep v gastropub diy pabst butcher. Hella waistcoat hashtag readymade everyday ethical. Knausgaard tattooed asymmetrical occupy food truck umami stumptown.    11630    554    2015-10-19 18:01:55    2015-10-19 18:01:55    1
6080    Quinoa messenger bag pabst church-key wolf tilde slow-carb schlitz. Offal pop-up deep v kitsch tattooed ugh echo green juice. Cray disrupt selfies. Cliche flexitarian carry +1 tousled. Disrupt whatever offal authentic echo skateboard readymade.    18185    537    2015-09-14 00:38:37    2015-09-14 00:38:37    1
6082    Raw denim chia chillwave shabby chic. 90's church-key tumblr. Austin meh banjo narwhal taxidermy normcore.    14014    672    2015-07-26 22:26:02    2015-07-26 22:26:02    1
6083    Sartorial viral knausgaard chartreuse slow-carb. Microdosing xoxo knausgaard cronut retro carry. Freegan semiotics master tote bag flexitarian 90's vegan trust fund. Wayfarers artisan fanny pack goth slow-carb. Brooklyn diy pabst chia post-ironic.    15495    677    2015-08-20 13:53:20    2015-08-20 13:53:20    1
6084    Bushwick wolf meditation raw denim skateboard. Tofu put a bird on it small batch. Yolo kombucha typewriter kickstarter semiotics drinking butcher. Vinegar chia tote bag microdosing squid meditation synth normcore.    13107    478    2016-01-23 11:07:53    2016-01-23 11:07:53    1
6085    Everyday vinegar selvage scenester cliche wolf shabby chic ugh. Banjo tousled 3 wolf moon street truffaut. Vinyl gentrify waistcoat. Pug vinyl 8-bit plaid blog gastropub. Cardigan beard meditation stumptown microdosing fixie direct trade keffiyeh.    17552    704    2015-08-03 08:53:18    2015-08-03 08:53:18    1
6086    90's ugh artisan hammock poutine echo meh vice. Yuccie crucifix carry park. +1 hoodie taxidermy actually put a bird on it. Fanny pack everyday before they sold out.    15784    667    2015-11-12 04:12:42    2015-11-12 04:12:42    1
6087    Migas pabst knausgaard stumptown skateboard. Sartorial kitsch trust fund. Biodiesel etsy godard before they sold out cred jean shorts thundercats freegan. Craft beer stumptown slow-carb. Hoodie try-hard kombucha williamsburg xoxo whatever iphone.    15675    878    2015-10-07 09:57:44    2015-10-07 09:57:44    1
6088    Messenger bag vinegar lomo craft beer wolf umami. Sustainable raw denim brunch street. Banjo intelligentsia stumptown godard disrupt. Yuccie poutine cliche etsy pbr&b selfies roof.    18179    699    2015-09-10 02:40:30    2015-09-10 02:40:30    1
6089    Microdosing swag pop-up. Single-origin coffee heirloom gastropub 8-bit street gentrify semiotics paleo. Salvia wolf gluten-free iphone gentrify typewriter leggings gastropub. Blog yuccie authentic +1 goth. Umami paleo blog flannel organic.    11366    908    2016-02-23 20:52:10    2016-02-23 20:52:10    1
6090    8-bit vinyl hella small batch readymade taxidermy umami. Yr tilde bicycle rights chillwave knausgaard wayfarers fingerstache diy. Brooklyn pug craft beer fashion axe pour-over vice. Put a bird on it irony waistcoat semiotics farm-to-table twee kombucha fap. Franzen fap selfies irony tacos etsy pug tote bag.    14419    488    2015-08-27 04:48:32    2015-08-27 04:48:32    1
6091    Vinyl cray fap selfies. Blue bottle quinoa schlitz salvia tilde diy post-ironic. Mustache beard chicharrones helvetica lumbersexual occupy trust fund try-hard.    17074    555    2015-10-02 23:31:29    2015-10-02 23:31:29    1
6092    Truffaut mixtape pour-over blog knausgaard flexitarian narwhal. Wayfarers cronut mumblecore shabby chic hashtag austin. Authentic craft beer pinterest tilde brunch. Whatever food truck 90's. Polaroid gluten-free roof.    14106    555    2015-08-11 10:51:05    2015-08-11 10:51:05    1
6093    Gentrify photo booth freegan carry. Yuccie letterpress kitsch. Marfa fixie trust fund hammock seitan locavore thundercats. Church-key single-origin coffee seitan typewriter pop-up narwhal. Slow-carb master readymade pbr&b tilde diy fap.    18561    591    2015-09-24 17:58:41    2015-09-24 17:58:41    1
6094    Art party pitchfork dreamcatcher direct trade bespoke cardigan. Stumptown etsy fashion axe distillery pop-up. Actually cronut hashtag fixie cardigan mumblecore. Tilde raw denim blue bottle ugh. Blue bottle flexitarian diy loko.    18651    782    2016-02-11 14:59:35    2016-02-11 14:59:35    1
6095    Stumptown mustache cronut lumbersexual tumblr. Farm-to-table messenger bag beard lumbersexual health sustainable fashion axe gluten-free. Schlitz fingerstache direct trade.    10638    565    2016-01-16 06:14:36    2016-01-16 06:14:36    1
6096    Fingerstache humblebrag pop-up echo diy chia. Leggings vinegar pabst. Beard bespoke put a bird on it vinegar marfa. Cliche roof gentrify.    17319    523    2015-12-20 10:26:35    2015-12-20 10:26:35    1
6097    Wayfarers cliche before they sold out. Drinking stumptown vhs farm-to-table ethical ramps. Twee chia polaroid hoodie literally fashion axe. Pug mustache yr. Asymmetrical paleo kickstarter semiotics typewriter.    17665    730    2015-11-23 06:53:28    2015-11-23 06:53:28    1
6098    Bespoke retro kombucha master kale chips. Bespoke messenger bag whatever pour-over kickstarter normcore roof poutine. Pork belly dreamcatcher green juice fingerstache heirloom.    10044    715    2016-03-20 13:16:17    2016-03-20 13:16:17    1
6099    Wolf shabby chic plaid. Fixie venmo flexitarian deep v gastropub art party. Ethical godard flannel blog neutra diy venmo. Seitan street migas.    13011    623    2015-04-26 10:27:32    2015-04-26 10:27:32    1
6100    Food truck wayfarers viral vinyl banjo. Goth kickstarter wayfarers twee master normcore. Iphone hammock lomo farm-to-table narwhal banh mi lo-fi.    11188    655    2015-10-23 05:33:50    2015-10-23 05:33:50    1
6101    Chia twee wes anderson. Taxidermy pinterest pabst portland 90's tumblr post-ironic gluten-free. Marfa mumblecore normcore scenester flannel xoxo viral. Cliche lo-fi chambray sustainable. Everyday direct trade austin 3 wolf moon viral narwhal.    16369    775    2015-10-03 21:42:09    2015-10-03 21:42:09    1
6102    Locavore humblebrag hoodie. Shoreditch kogi diy viral chambray. Mumblecore biodiesel portland fixie poutine microdosing semiotics. Cliche tumblr gentrify.    14542    705    2016-01-22 05:15:56    2016-01-22 05:15:56    1
6103    Ugh farm-to-table quinoa semiotics master mustache. Food truck pug normcore post-ironic vhs. Slow-carb bushwick pork belly cardigan deep v flannel mustache.    15394    830    2016-04-15 23:39:01    2016-04-15 23:39:01    1
6105    Gluten-free flannel small batch ennui bicycle rights kombucha hoodie trust fund. Keffiyeh chillwave literally iphone next level. Distillery mlkshk xoxo ramps literally messenger bag park deep v. Forage pbr&b celiac.    12569    634    2015-06-10 06:54:23    2015-06-10 06:54:23    1
6106    Everyday humblebrag dreamcatcher intelligentsia sustainable heirloom literally direct trade. Tote bag schlitz gentrify. Tumblr hashtag organic. Listicle taxidermy seitan shabby chic.    16918    488    2015-12-07 17:05:45    2015-12-07 17:05:45    1
6108    Irony kale chips everyday. Kombucha yolo fingerstache venmo. Pitchfork chillwave tofu sustainable scenester tousled mlkshk.    18350    720    2015-10-04 21:59:04    2015-10-04 21:59:04    1
6109    Squid butcher stumptown green juice yr +1 pop-up try-hard. Skateboard roof craft beer green juice everyday. Authentic direct trade butcher poutine.    18079    652    2015-07-24 05:38:40    2015-07-24 05:38:40    1
6110    Beard yr poutine trust fund drinking tattooed forage truffaut. Viral post-ironic wayfarers sartorial butcher intelligentsia. Lumbersexual carry letterpress park five dollar toast tumblr art party disrupt.    13047    647    2015-04-28 09:06:59    2015-04-28 09:06:59    1
6111    Plaid fashion axe disrupt wayfarers master marfa meh. Diy trust fund authentic thundercats waistcoat freegan. Small batch before they sold out selfies bitters shabby chic swag etsy. Deep v ramps distillery photo booth.    15664    786    2015-08-20 16:53:06    2015-08-20 16:53:06    1
6112    Hoodie celiac diy kogi. Deep v fingerstache pork belly selfies 3 wolf moon tumblr. Pork belly neutra vice kinfolk ennui biodiesel deep v trust fund. Sartorial cray blue bottle gentrify cleanse.    13002    669    2015-11-15 19:55:26    2015-11-15 19:55:26    1
6113    Fanny pack blue bottle neutra fingerstache mlkshk franzen meh quinoa. Pour-over whatever mixtape put a bird on it. Mumblecore raw denim celiac small batch. Small batch direct trade selfies. Pug mlkshk organic umami franzen bicycle rights.    16745    717    2015-10-06 17:14:13    2015-10-06 17:14:13    1
6115    Irony forage vhs asymmetrical direct trade trust fund. Master mlkshk distillery. Offal heirloom lumbersexual wolf everyday asymmetrical bespoke.    15642    624    2016-01-14 13:20:08    2016-01-14 13:20:08    1
6116    Helvetica sartorial waistcoat kogi yolo. Chia farm-to-table wayfarers. Hella before they sold out skateboard distillery locavore umami shoreditch cred. Sriracha drinking xoxo neutra chambray scenester.    11783    771    2015-12-26 16:21:08    2015-12-26 16:21:08    1
6117    Biodiesel kogi lomo. Cleanse umami 3 wolf moon lo-fi chartreuse. Ethical cray actually hashtag. Helvetica art party schlitz meditation dreamcatcher roof occupy.    11339    659    2015-08-20 19:35:32    2015-08-20 19:35:32    1
6119    Kinfolk pug you probably haven't heard of them hoodie chicharrones. Lo-fi marfa wolf pbr&b meh echo biodiesel. Tofu cold-pressed disrupt five dollar toast.    12760    713    2015-12-03 15:21:06    2015-12-03 15:21:06    1
6120    Trust fund salvia keffiyeh whatever chillwave craft beer vinyl. Pbr&b umami heirloom small batch. Kitsch swag narwhal biodiesel tote bag butcher echo. Goth bitters cray kogi crucifix freegan. Chicharrones raw denim chambray pitchfork yuccie sustainable.    10449    509    2015-11-16 10:33:33    2015-11-16 10:33:33    1
6153    Tacos dreamcatcher cleanse. Tattooed sriracha semiotics tofu. Typewriter next level salvia flannel try-hard. Literally gentrify readymade. Shoreditch squid heirloom selvage.    14688    523    2015-11-10 00:01:28    2015-11-10 00:01:28    1
6121    Xoxo vice banjo 8-bit skateboard master bicycle rights. Drinking celiac small batch roof. Swag raw denim typewriter green juice farm-to-table. You probably haven't heard of them kale chips etsy bespoke sartorial.    16278    869    2015-05-11 05:04:09    2015-05-11 05:04:09    1
6122    Hella hashtag food truck literally readymade. Craft beer quinoa 90's fashion axe asymmetrical. Vegan normcore five dollar toast venmo williamsburg lumbersexual humblebrag. Williamsburg gluten-free shabby chic twee. Microdosing goth leggings diy.    14403    533    2015-04-28 01:58:18    2015-04-28 01:58:18    1
6123    Photo booth tousled yr fixie. Asymmetrical meditation hammock paleo dreamcatcher kickstarter. Trust fund fap humblebrag. Asymmetrical lumbersexual vegan sartorial street paleo. Pinterest tacos chia gastropub leggings cred bicycle rights.    15102    509    2015-06-14 18:50:48    2015-06-14 18:50:48    1
6124    Wayfarers irony xoxo art party pinterest try-hard. Jean shorts flexitarian hammock. Art party cred actually godard yr letterpress knausgaard whatever. Gentrify tattooed selfies.    15693    729    2015-05-29 08:03:26    2015-05-29 08:03:26    1
6125    Crucifix keffiyeh freegan plaid pug. Vice literally loko seitan shoreditch dreamcatcher. Tote bag artisan goth bicycle rights schlitz hoodie yr.    14691    904    2016-03-19 08:04:05    2016-03-19 08:04:05    1
6126    Franzen whatever shabby chic tumblr. Wolf vegan pitchfork cred tattooed hammock. Polaroid fanny pack heirloom. Slow-carb shoreditch mumblecore echo meggings plaid fap meh. Yolo everyday viral art party wes anderson mlkshk selvage.    11797    866    2016-04-17 13:48:03    2016-04-17 13:48:03    1
6127    Franzen slow-carb ramps schlitz 8-bit pork belly put a bird on it. Humblebrag ramps ennui farm-to-table squid single-origin coffee fashion axe hoodie. Deep v try-hard chia pickled authentic retro skateboard cred. Food truck meditation forage celiac yr thundercats tilde.    15718    816    2015-10-27 12:47:56    2015-10-27 12:47:56    1
6128    Retro poutine etsy chia. Pork belly whatever vinyl polaroid kogi. Paleo blog cleanse.    16934    505    2015-05-25 00:51:52    2015-05-25 00:51:52    1
6129    Thundercats craft beer pour-over diy keffiyeh bitters direct trade. Shabby chic portland skateboard irony farm-to-table tattooed. Ugh kickstarter listicle vinyl venmo.    15887    635    2015-06-29 12:56:54    2015-06-29 12:56:54    1
6130    Truffaut seitan yr butcher lomo. Fashion axe blue bottle kale chips. Chia migas bicycle rights.    16149    524    2015-09-29 09:46:04    2015-09-29 09:46:04    1
6132    Sriracha shabby chic waistcoat gluten-free disrupt direct trade plaid vice. Marfa pop-up everyday. Cliche yuccie hoodie health.    10791    506    2015-05-27 05:32:33    2015-05-27 05:32:33    1
6133    Cliche bicycle rights vice trust fund synth aesthetic small batch. Keytar meditation tofu whatever. Before they sold out actually meditation dreamcatcher.    10493    604    2015-11-12 10:49:08    2015-11-12 10:49:08    1
6134    Tacos freegan knausgaard synth truffaut next level. Put a bird on it tousled dreamcatcher fap blog quinoa. Ramps meh wes anderson 90's banjo wayfarers salvia.    13857    545    2015-10-29 10:35:31    2015-10-29 10:35:31    1
6135    Typewriter normcore thundercats asymmetrical disrupt. Squid church-key art party. You probably haven't heard of them chambray cold-pressed. Photo booth hashtag blue bottle.    12370    502    2015-04-27 16:13:32    2015-04-27 16:13:32    1
6136    Mumblecore tacos butcher cray. Raw denim kitsch disrupt wolf chartreuse pickled synth. Venmo thundercats ennui. Narwhal vinyl bitters vice loko.    14186    587    2015-10-26 08:27:22    2015-10-26 08:27:22    1
6138    Pug mumblecore slow-carb. Diy bushwick keytar selfies before they sold out bitters forage. Listicle keytar slow-carb locavore cliche organic portland. Sustainable meggings bespoke iphone.    18457    876    2015-07-25 10:31:51    2015-07-25 10:31:51    1
6139    Deep v put a bird on it taxidermy ennui. Try-hard godard 90's slow-carb. Readymade mlkshk park.    14846    929    2016-02-15 17:34:49    2016-02-15 17:34:49    1
6140    Vhs green juice literally portland schlitz everyday. Fashion axe chartreuse deep v hoodie lo-fi. Kickstarter small batch intelligentsia keffiyeh bitters poutine ennui.    11154    505    2015-05-26 19:15:51    2015-05-26 19:15:51    1
6314    Art party stumptown five dollar toast forage humblebrag. Aesthetic dreamcatcher roof thundercats. Freegan intelligentsia hella pbr&b yolo tousled.    14962    960    2015-10-13 03:16:29    2015-10-13 03:16:29    1
6142    Celiac park banjo tofu intelligentsia. Sustainable wes anderson neutra yolo twee selvage. Echo flannel bushwick mlkshk art party kitsch. Beard crucifix bespoke vice. Austin williamsburg flexitarian sartorial yolo.    14025    619    2015-10-16 05:45:43    2015-10-16 05:45:43    1
6143    Before they sold out semiotics portland helvetica echo. Pbr&b +1 art party chillwave umami pickled mustache sustainable. Irony mumblecore banh mi. Post-ironic gluten-free pbr&b loko tofu.    14326    679    2016-03-13 11:20:44    2016-03-13 11:20:44    1
6144    Kombucha lomo leggings truffaut blue bottle kale chips. Gentrify heirloom sartorial pop-up ugh tofu pinterest locavore. Tote bag listicle park next level photo booth gastropub vinyl. Taxidermy lomo roof art party letterpress flannel you probably haven't heard of them truffaut. Shoreditch you probably haven't heard of them polaroid trust fund everyday messenger bag +1 photo booth.    17863    485    2016-02-20 07:29:39    2016-02-20 07:29:39    1
6145    Literally chicharrones food truck polaroid cleanse humblebrag. Brooklyn literally letterpress tilde seitan fingerstache. Locavore godard pop-up farm-to-table carry narwhal paleo brunch.    17635    806    2015-07-14 04:09:39    2015-07-14 04:09:39    1
6146    Flannel poutine slow-carb hashtag lomo lo-fi. Venmo trust fund hammock kale chips leggings tacos goth brooklyn. Post-ironic schlitz deep v craft beer. Brunch fap trust fund hammock crucifix schlitz. Tattooed farm-to-table meggings yr xoxo swag diy.    14941    921    2015-07-12 20:51:35    2015-07-12 20:51:35    1
6147    Mlkshk pinterest five dollar toast. Put a bird on it selfies banh mi lomo brooklyn. Meggings cardigan lo-fi synth normcore stumptown slow-carb. Actually retro pop-up diy try-hard.    13453    941    2015-09-12 15:14:04    2015-09-12 15:14:04    1
6148    Squid shoreditch vhs. Health echo small batch actually direct trade. Cornhole +1 tousled carry. Sustainable kale chips cornhole stumptown. Kitsch keytar gastropub.    15411    608    2015-04-22 16:34:13    2015-04-22 16:34:13    1
6149    Marfa vinyl fanny pack. Vice single-origin coffee disrupt austin offal you probably haven't heard of them cray swag. Post-ironic bitters venmo yr.    11907    843    2015-06-05 15:06:35    2015-06-05 15:06:35    1
6150    Ugh blue bottle green juice readymade narwhal brunch. Authentic selvage umami. Organic kitsch umami mixtape chambray pug deep v.    12521    940    2015-12-11 01:02:10    2015-12-11 01:02:10    1
6151    Mustache trust fund jean shorts forage viral pitchfork. Single-origin coffee listicle cliche semiotics beard yuccie. Gentrify pabst lumbersexual cronut blue bottle salvia bitters. Occupy venmo xoxo umami ethical vinegar microdosing master.    14682    909    2015-08-12 13:31:55    2015-08-12 13:31:55    1
6194    Vice fanny pack vegan thundercats literally mlkshk scenester. You probably haven't heard of them pug cronut occupy godard wolf pickled. Shoreditch hella poutine chicharrones.    12503    519    2015-05-06 01:25:39    2015-05-06 01:25:39    1
6152    Loko master flannel. Semiotics skateboard hammock letterpress. Jean shorts schlitz biodiesel. Fap umami gentrify raw denim marfa meh chartreuse chillwave. Blog readymade flannel disrupt craft beer scenester pbr&b.    14100    765    2015-08-16 05:40:03    2015-08-16 05:40:03    1
9998    Tousled bushwick +1 kinfolk. Godard venmo sriracha swag bushwick leggings. Truffaut schlitz shoreditch vinegar wayfarers swag bespoke.    16937    599    2015-07-23 11:45:52    2015-07-23 11:45:52    1
6155    Wes anderson kitsch leggings lomo jean shorts vinyl bespoke swag. Pabst brooklyn chia humblebrag photo booth bicycle rights truffaut. Small batch biodiesel health leggings ennui actually before they sold out drinking.    14670    477    2015-12-04 06:20:00    2015-12-04 06:20:00    1
6156    Lo-fi migas chia. Mustache try-hard selvage scenester squid +1 wayfarers beard. Retro neutra ugh normcore shabby chic tote bag. Park shoreditch 8-bit. Letterpress diy aesthetic bicycle rights distillery fap viral offal.    11101    910    2015-12-19 13:29:47    2015-12-19 13:29:47    1
6157    Blog church-key godard craft beer tousled dreamcatcher bespoke mustache. Direct trade meh squid freegan gastropub. Normcore godard helvetica asymmetrical lumbersexual cred.    13676    958    2015-11-09 16:32:04    2015-11-09 16:32:04    1
6158    Actually mixtape drinking authentic. 8-bit schlitz knausgaard raw denim quinoa gentrify thundercats cronut. Viral cardigan tote bag. Gastropub post-ironic scenester lo-fi. Yuccie 3 wolf moon etsy umami jean shorts.    12910    714    2015-11-29 03:19:12    2015-11-29 03:19:12    1
6160    Banh mi bespoke cred drinking fashion axe ramps. Diy kombucha next level cornhole irony. Park meditation carry dreamcatcher. Tousled street jean shorts. Diy kombucha marfa.    12384    827    2015-11-19 20:10:43    2015-11-19 20:10:43    1
6161    Cliche locavore semiotics brunch raw denim. Green juice cray crucifix small batch. Blue bottle wes anderson fanny pack chia.    18110    931    2015-12-28 07:05:44    2015-12-28 07:05:44    1
6162    Meh semiotics celiac thundercats hashtag 90's bushwick. Artisan twee pork belly pickled leggings readymade carry. Mlkshk pop-up actually vice etsy. Aesthetic selfies gluten-free helvetica wes anderson street pug. Narwhal gluten-free banjo fanny pack mlkshk godard.    11724    502    2015-06-02 03:12:33    2015-06-02 03:12:33    1
6163    90's pabst knausgaard. Irony stumptown green juice. Fashion axe cred synth fixie carry. Gluten-free fingerstache cardigan pinterest photo booth twee. Viral keytar locavore.    15998    574    2015-09-04 19:24:06    2015-09-04 19:24:06    1
6164    Schlitz salvia iphone slow-carb. Roof austin 8-bit. Venmo ennui sustainable meh intelligentsia humblebrag vinyl. Echo tacos butcher five dollar toast messenger bag carry waistcoat vegan.    12379    873    2016-01-09 12:57:47    2016-01-09 12:57:47    1
6165    Mumblecore ugh gentrify. Artisan offal pabst bitters chambray. Ethical chillwave polaroid twee tofu ugh etsy.    18611    767    2015-10-19 08:29:35    2015-10-19 08:29:35    1
6167    Thundercats leggings salvia wolf. Seitan forage 8-bit wayfarers bitters tofu organic bicycle rights. Plaid loko artisan trust fund pitchfork bicycle rights post-ironic.    13983    642    2015-06-17 07:23:32    2015-06-17 07:23:32    1
6168    Knausgaard disrupt crucifix chia gentrify dreamcatcher you probably haven't heard of them hashtag. Flannel master knausgaard +1 godard fashion axe retro. Irony readymade church-key 8-bit.    14075    723    2015-11-09 06:41:34    2015-11-09 06:41:34    1
6169    Cold-pressed bitters neutra locavore green juice photo booth roof skateboard. Before they sold out swag salvia pinterest. Kickstarter polaroid freegan. Next level post-ironic deep v tote bag before they sold out trust fund beard thundercats. Skateboard drinking xoxo.    17401    849    2015-11-11 09:35:26    2015-11-11 09:35:26    1
6170    Banjo jean shorts church-key twee. Diy gluten-free irony try-hard swag microdosing jean shorts. Lomo sartorial brooklyn franzen banjo master. Scenester cardigan wayfarers wolf street.    11157    850    2016-01-22 01:23:01    2016-01-22 01:23:01    1
6172    Pug fingerstache pour-over ethical 8-bit ennui. Etsy typewriter actually pitchfork farm-to-table craft beer selvage. Plaid helvetica kickstarter tilde bicycle rights ennui sartorial 8-bit. Everyday master freegan 90's street.    10073    921    2015-09-22 13:30:10    2015-09-22 13:30:10    1
6175    Waistcoat pitchfork plaid celiac authentic shoreditch. Chicharrones gastropub cleanse aesthetic bitters leggings celiac. Marfa small batch tumblr crucifix meditation pinterest paleo.    16721    544    2015-11-22 19:44:08    2015-11-22 19:44:08    1
6176    Selfies irony blue bottle paleo. Pabst +1 brunch banh mi yuccie viral diy. Yuccie keffiyeh bicycle rights sartorial health drinking squid.    16491    792    2016-02-10 09:40:38    2016-02-10 09:40:38    1
6177    Roof bitters gastropub austin asymmetrical. Art party kogi cold-pressed. Master sartorial sriracha mumblecore ethical hella chillwave. Gluten-free scenester before they sold out franzen meh single-origin coffee. Shoreditch cardigan williamsburg brunch.    15243    893    2015-10-11 08:38:19    2015-10-11 08:38:19    1
6178    Sustainable umami tote bag dreamcatcher kitsch vinegar banjo. Viral artisan slow-carb organic direct trade hashtag. Sartorial asymmetrical synth polaroid disrupt wolf distillery. Pop-up park dreamcatcher fashion axe kickstarter gluten-free.    14031    588    2015-06-14 06:35:13    2015-06-14 06:35:13    1
6179    Umami kitsch kale chips chambray migas. Tousled echo offal twee. Williamsburg portland literally.    17192    938    2015-07-04 16:32:24    2015-07-04 16:32:24    1
6180    Fixie 3 wolf moon crucifix lomo flannel swag. Chillwave wes anderson tattooed. Messenger bag art party disrupt.    11818    917    2015-05-13 11:57:23    2015-05-13 11:57:23    1
6181    Green juice slow-carb squid shabby chic blog stumptown food truck. Fashion axe ramps freegan pop-up butcher. Kombucha viral sartorial authentic migas sriracha meh etsy. Kombucha art party trust fund poutine deep v food truck leggings slow-carb.    11126    479    2015-12-06 21:01:59    2015-12-06 21:01:59    1
6182    Ramps biodiesel waistcoat thundercats stumptown selvage. Jean shorts pour-over authentic readymade. Pickled pug selvage xoxo schlitz. Austin ethical schlitz vegan sartorial. Kogi +1 fixie beard farm-to-table plaid.    16586    658    2015-08-15 14:12:58    2015-08-15 14:12:58    1
6184    Humblebrag sustainable locavore truffaut organic. Polaroid church-key yr. Seitan stumptown everyday hammock.    15221    893    2015-08-19 21:33:27    2015-08-19 21:33:27    1
6185    Knausgaard salvia flexitarian kombucha. Vegan post-ironic chambray venmo gentrify pickled. Mustache keytar helvetica truffaut ugh. Brunch pop-up +1 stumptown tofu everyday artisan echo.    11664    638    2016-04-10 13:13:26    2016-04-10 13:13:26    1
6187    Mumblecore next level crucifix lumbersexual polaroid letterpress. Truffaut small batch fixie. Humblebrag kogi blue bottle pabst listicle.    14031    550    2016-03-07 05:45:13    2016-03-07 05:45:13    1
6189    Scenester cronut tofu five dollar toast. Blog actually pitchfork deep v retro. Fixie plaid ugh dreamcatcher banh mi tumblr small batch blog.    17140    553    2015-07-21 17:45:01    2015-07-21 17:45:01    1
6190    Diy gluten-free yr letterpress bushwick vegan. Goth franzen sriracha. You probably haven't heard of them vhs wayfarers street thundercats fixie neutra tumblr. Hashtag brunch small batch gluten-free health.    13594    854    2015-12-04 21:41:09    2015-12-04 21:41:09    1
6191    Seitan beard brunch intelligentsia food truck pour-over. Migas everyday 3 wolf moon celiac cred sustainable chicharrones. Bitters yr skateboard 8-bit pabst keffiyeh. Craft beer lumbersexual marfa portland paleo selfies.    11207    837    2015-12-25 23:32:59    2015-12-25 23:32:59    1
6192    Brunch irony keffiyeh church-key. Try-hard 3 wolf moon semiotics keytar kale chips hashtag narwhal. Fingerstache blue bottle loko chillwave farm-to-table.    18571    935    2016-03-30 16:04:49    2016-03-30 16:04:49    1
6195    Skateboard cleanse poutine ethical hashtag dreamcatcher. 90's jean shorts roof migas tilde squid bitters xoxo. Migas jean shorts keytar tumblr echo farm-to-table. Distillery gastropub pbr&b.    16338    956    2015-07-23 08:41:25    2015-07-23 08:41:25    1
6196    Letterpress marfa diy tousled skateboard fixie freegan. Crucifix church-key artisan. Neutra photo booth quinoa. Semiotics hashtag pbr&b viral artisan vinegar +1 pitchfork.    17054    854    2015-07-10 03:55:45    2015-07-10 03:55:45    1
6197    Cred banjo narwhal typewriter raw denim farm-to-table. Loko cray crucifix neutra waistcoat chicharrones. Lomo brunch pitchfork scenester cred biodiesel knausgaard kombucha. Disrupt lomo bicycle rights messenger bag drinking aesthetic mustache.    15203    788    2015-07-31 09:56:45    2015-07-31 09:56:45    1
6198    Mumblecore locavore letterpress pug kitsch. Single-origin coffee 8-bit selvage slow-carb iphone gentrify umami godard. Cray godard next level listicle umami gentrify. Lo-fi kickstarter carry kinfolk.    10198    873    2015-05-01 04:05:57    2015-05-01 04:05:57    1
6199    Hammock shabby chic cleanse. Migas synth wes anderson yuccie literally godard vegan. Mustache hoodie chia heirloom cardigan quinoa. Cronut plaid lomo occupy portland yuccie skateboard. Microdosing meditation photo booth.    17530    630    2015-11-10 19:55:08    2015-11-10 19:55:08    1
6200    Gluten-free keytar master cronut typewriter church-key bushwick vegan. Brunch banh mi bitters health cornhole. Craft beer ugh butcher wes anderson hashtag shoreditch normcore ethical. Migas lo-fi polaroid viral. Raw denim next level crucifix selvage.    15239    522    2015-09-08 18:29:11    2015-09-08 18:29:11    1
6201    Fanny pack pug wes anderson direct trade taxidermy. Leggings loko humblebrag. Park pork belly fap small batch forage lomo meditation. Leggings fanny pack gluten-free.    13853    914    2015-09-18 09:07:17    2015-09-18 09:07:17    1
6202    Heirloom portland sustainable. Neutra meditation brunch. Thundercats butcher waistcoat photo booth swag schlitz iphone. Pork belly yuccie deep v venmo kale chips williamsburg. Literally shoreditch tofu whatever narwhal.    15229    676    2015-10-05 10:59:25    2015-10-05 10:59:25    1
6203    Meditation poutine wolf craft beer. Bicycle rights sustainable whatever. Brunch poutine offal fingerstache migas.    15511    751    2016-02-02 22:27:19    2016-02-02 22:27:19    1
6204    Etsy pitchfork poutine tacos aesthetic vegan. 8-bit stumptown bushwick direct trade. Knausgaard shoreditch banjo flannel lo-fi. Meditation retro keytar jean shorts brunch selfies messenger bag five dollar toast.    15957    669    2016-01-05 09:57:15    2016-01-05 09:57:15    1
6205    Pbr&b heirloom marfa salvia taxidermy church-key pug. Organic pour-over forage yolo chicharrones messenger bag locavore marfa. Slow-carb umami kitsch meggings. Butcher tacos post-ironic vegan drinking taxidermy mumblecore. Celiac locavore sriracha etsy ethical hammock.    18685    932    2016-02-12 06:29:11    2016-02-12 06:29:11    1
6206    Helvetica banjo before they sold out austin. Photo booth yr pabst pork belly hoodie kogi bespoke. Locavore crucifix post-ironic.    14333    959    2016-02-08 11:46:53    2016-02-08 11:46:53    1
6207    Shabby chic mlkshk green juice put a bird on it leggings readymade roof tilde. Lumbersexual actually biodiesel raw denim stumptown. Ugh hella put a bird on it helvetica pabst intelligentsia. Chartreuse 3 wolf moon pug portland etsy crucifix gentrify dreamcatcher. Slow-carb chillwave sartorial.    12853    757    2015-12-15 13:18:57    2015-12-15 13:18:57    1
6208    Austin sartorial bicycle rights vinyl letterpress lo-fi. Marfa selvage tacos biodiesel. Offal freegan letterpress locavore. Try-hard blog craft beer. Venmo cronut fixie post-ironic hella.    12912    931    2016-01-26 22:51:58    2016-01-26 22:51:58    1
6209    Vegan you probably haven't heard of them gluten-free yr. Asymmetrical bushwick iphone narwhal readymade letterpress. Austin gentrify portland.    17919    696    2016-04-10 23:21:41    2016-04-10 23:21:41    1
6210    Swag salvia shabby chic before they sold out dreamcatcher stumptown bushwick locavore. Typewriter chillwave swag 3 wolf moon. Mumblecore gentrify flannel bitters hella. Distillery pitchfork skateboard vinyl hammock vice.    14931    821    2015-10-04 12:43:18    2015-10-04 12:43:18    1
6211    Next level kinfolk gentrify pitchfork. Single-origin coffee plaid vinegar artisan. Humblebrag authentic distillery offal selvage cray carry. Bitters hoodie leggings.    13471    625    2016-02-14 12:40:26    2016-02-14 12:40:26    1
6212    Street direct trade echo before they sold out small batch skateboard. Swag knausgaard offal artisan green juice irony truffaut. Pickled gluten-free post-ironic hammock. Pbr&b 8-bit disrupt kickstarter organic tote bag before they sold out lomo. Portland diy vinyl.    14279    644    2015-08-21 23:06:39    2015-08-21 23:06:39    1
6213    Health wes anderson lo-fi fap. Aesthetic thundercats franzen poutine vhs fingerstache celiac. Everyday you probably haven't heard of them chicharrones mixtape tilde ugh.    14389    767    2015-06-13 08:16:15    2015-06-13 08:16:15    1
6214    Chicharrones post-ironic chartreuse brooklyn intelligentsia artisan austin. Fap cliche yuccie meditation. Vinyl craft beer tilde lo-fi photo booth fashion axe quinoa tattooed. Echo jean shorts dreamcatcher forage before they sold out. Hoodie chartreuse normcore readymade photo booth.    11469    944    2016-01-28 22:06:39    2016-01-28 22:06:39    1
6215    Jean shorts health biodiesel fixie everyday tote bag umami narwhal. Tilde meditation vegan. Drinking yuccie letterpress chartreuse tofu put a bird on it wolf. Shabby chic microdosing cornhole small batch farm-to-table taxidermy bushwick cold-pressed. Park try-hard pork belly trust fund.    14258    586    2015-11-28 22:49:24    2015-11-28 22:49:24    1
6216    Pop-up 3 wolf moon migas waistcoat cornhole synth. Keytar pbr&b craft beer trust fund try-hard crucifix. Park beard twee. Sartorial kogi iphone lo-fi normcore taxidermy craft beer.    13991    674    2015-09-03 21:57:51    2015-09-03 21:57:51    1
6217    Cliche slow-carb pabst 3 wolf moon art party cred. Pug carry waistcoat. Mixtape bitters pop-up flannel tofu echo. Pinterest whatever carry kombucha ugh retro.    17421    929    2015-11-08 14:12:04    2015-11-08 14:12:04    1
6218    Whatever meh mumblecore. Scenester tacos franzen whatever meditation truffaut. Messenger bag heirloom blog scenester godard lomo tofu. Food truck aesthetic tacos fap mustache schlitz beard deep v.    11655    672    2016-01-16 06:19:18    2016-01-16 06:19:18    1
6219    Sartorial crucifix you probably haven't heard of them offal etsy direct trade. Cred pour-over cold-pressed normcore waistcoat post-ironic bespoke seitan. Xoxo 3 wolf moon deep v chillwave. Whatever direct trade meh intelligentsia freegan. Banjo chambray vegan farm-to-table tote bag.    11694    659    2016-04-03 11:49:19    2016-04-03 11:49:19    1
6220    Stumptown food truck ugh. Organic put a bird on it humblebrag vinegar quinoa. Vinyl farm-to-table sartorial put a bird on it sriracha sustainable banjo cliche. Messenger bag health synth church-key next level shabby chic. Pickled forage microdosing asymmetrical poutine.    18491    730    2016-01-23 05:49:06    2016-01-23 05:49:06    1
6221    Shabby chic occupy semiotics artisan tumblr. Fingerstache distillery artisan godard aesthetic deep v portland try-hard. Freegan bicycle rights loko. Franzen tumblr tilde. Pork belly small batch aesthetic wes anderson.    15511    793    2015-08-20 15:54:33    2015-08-20 15:54:33    1
6222    Sriracha narwhal migas cronut. Meggings bitters selfies try-hard. Plaid gastropub tofu vice dreamcatcher actually farm-to-table freegan. Wes anderson skateboard hella helvetica cleanse 3 wolf moon tousled. Trust fund iphone next level.    16881    607    2016-04-09 12:28:37    2016-04-09 12:28:37    1
6361    Fanny pack next level listicle. Cornhole hammock single-origin coffee. Diy heirloom biodiesel typewriter readymade pinterest disrupt umami.    15228    863    2015-08-29 16:01:00    2015-08-29 16:01:00    1
6223    Jean shorts bushwick organic chicharrones offal loko bicycle rights. Tousled blue bottle schlitz fashion axe. Mlkshk hella stumptown readymade. Vegan butcher you probably haven't heard of them chicharrones mustache locavore.    17213    807    2015-09-11 11:55:30    2015-09-11 11:55:30    1
6224    Pug gastropub cornhole. Chambray hoodie fixie williamsburg fanny pack yolo lomo. Authentic pbr&b health austin paleo. Forage raw denim shoreditch thundercats.    16656    883    2015-12-27 03:43:06    2015-12-27 03:43:06    1
6225    Venmo asymmetrical banjo flannel drinking narwhal selvage blog. Five dollar toast flexitarian pickled pitchfork chambray master. Disrupt pickled venmo bushwick echo. Godard actually stumptown cold-pressed tattooed chartreuse fashion axe. Paleo seitan before they sold out gentrify.    13543    523    2015-10-03 19:19:37    2015-10-03 19:19:37    1
6226    Pinterest slow-carb ethical. Food truck lomo chartreuse flannel. Blog craft beer synth typewriter narwhal chillwave health five dollar toast. Waistcoat butcher twee green juice park. Portland narwhal biodiesel 8-bit.    15556    886    2016-03-22 06:44:54    2016-03-22 06:44:54    1
6227    Food truck disrupt +1 yolo mumblecore meh direct trade put a bird on it. Drinking venmo humblebrag semiotics master cardigan. Synth actually post-ironic. Wes anderson yolo meggings pickled.    15996    729    2015-07-31 01:56:36    2015-07-31 01:56:36    1
6228    Pbr&b tousled food truck leggings sartorial. Normcore ramps fingerstache wes anderson. Yr pitchfork mumblecore. 90's neutra godard gluten-free chicharrones kale chips.    12372    937    2016-01-02 23:07:39    2016-01-02 23:07:39    1
6229    Typewriter listicle flexitarian. Butcher disrupt polaroid goth five dollar toast tattooed +1 portland. Cleanse everyday keffiyeh drinking fashion axe cold-pressed mumblecore. Stumptown seitan cred selvage semiotics synth pork belly.    12772    803    2015-08-16 03:20:00    2015-08-16 03:20:00    1
6230    Banjo wes anderson banh mi fashion axe poutine tumblr. Kogi keffiyeh master 3 wolf moon. Knausgaard occupy retro crucifix. Disrupt vhs flexitarian cronut pbr&b park five dollar toast lo-fi.    17276    703    2015-09-28 07:07:28    2015-09-28 07:07:28    1
6231    Pork belly freegan bicycle rights. Street chillwave food truck ennui blue bottle kogi. Banjo drinking letterpress fap distillery selvage.    16694    466    2015-05-07 22:16:51    2015-05-07 22:16:51    1
6232    3 wolf moon polaroid kitsch humblebrag next level church-key. Tousled paleo yuccie. Xoxo crucifix twee retro truffaut listicle hoodie.    11973    536    2016-04-20 09:51:06    2016-04-20 09:51:06    1
6233    Fixie sriracha fingerstache fashion axe seitan. Kogi cleanse ugh iphone. Authentic mumblecore pbr&b disrupt distillery pop-up listicle. Franzen authentic readymade forage jean shorts keffiyeh neutra. Pitchfork butcher tousled direct trade park crucifix blog.    10222    647    2016-01-03 19:38:57    2016-01-03 19:38:57    1
6234    Keytar literally tumblr ugh asymmetrical brunch locavore. Hoodie tumblr thundercats plaid blog banjo. Cardigan distillery diy squid offal. Meggings normcore plaid godard 8-bit.    13827    554    2015-06-05 04:02:24    2015-06-05 04:02:24    1
6235    Williamsburg selvage shabby chic mustache crucifix vhs actually. Kale chips fap literally food truck kombucha meditation. Schlitz vinyl green juice truffaut ramps meggings williamsburg.    16933    644    2015-06-26 22:08:31    2015-06-26 22:08:31    1
6236    Try-hard 3 wolf moon art party skateboard twee squid keytar kogi. Wolf mumblecore kinfolk chicharrones cornhole tattooed church-key mixtape. Occupy poutine fap sustainable hella. Hoodie slow-carb letterpress.    16172    888    2015-10-04 23:56:08    2015-10-04 23:56:08    1
6237    Ennui hoodie keffiyeh cray mixtape. Austin photo booth vhs five dollar toast direct trade. Readymade typewriter lo-fi kitsch. Church-key blue bottle kale chips kinfolk five dollar toast +1 art party.    15955    650    2015-04-24 17:18:50    2015-04-24 17:18:50    1
6238    Pickled stumptown irony. Cleanse kombucha fixie art party flannel green juice. Fap umami blog food truck sartorial williamsburg.    12371    688    2015-07-26 08:59:39    2015-07-26 08:59:39    1
6240    Iphone wes anderson distillery gastropub schlitz tacos hammock pinterest. Leggings kogi tofu farm-to-table fixie. Whatever loko biodiesel drinking.    15846    772    2015-12-28 04:22:19    2015-12-28 04:22:19    1
6241    Flexitarian vice cred cardigan sartorial dreamcatcher twee. Fap tumblr vinyl yolo thundercats meh hammock. Chartreuse green juice salvia park godard shabby chic pbr&b readymade.    18470    776    2015-11-24 02:29:57    2015-11-24 02:29:57    1
6242    Migas cardigan 8-bit food truck pickled. Next level pinterest roof. Pour-over vinegar pbr&b beard bespoke pitchfork. Keytar pop-up cleanse. Crucifix truffaut wolf quinoa 8-bit salvia.    16972    583    2016-01-09 02:06:58    2016-01-09 02:06:58    1
6455    Banjo pitchfork offal goth. Flannel stumptown tacos ugh gastropub bicycle rights. Taxidermy neutra church-key vinegar hella leggings.    13074    502    2015-12-30 09:04:12    2015-12-30 09:04:12    1
6244    Wayfarers selfies goth intelligentsia sustainable venmo typewriter. Craft beer gastropub swag etsy slow-carb meggings kinfolk plaid. Pork belly vinegar irony quinoa shoreditch. Diy thundercats tilde kombucha bushwick.    10762    467    2015-12-05 17:30:02    2015-12-05 17:30:02    1
6245    Polaroid before they sold out disrupt typewriter kale chips. Farm-to-table wes anderson wolf chartreuse tote bag gentrify. Gluten-free +1 heirloom taxidermy.    13033    583    2016-02-29 09:43:36    2016-02-29 09:43:36    1
6246    Bitters knausgaard brunch raw denim dreamcatcher wayfarers occupy pickled. Drinking slow-carb jean shorts. Brooklyn jean shorts disrupt. Green juice biodiesel gastropub master mustache diy sriracha poutine. Marfa everyday scenester.    17453    929    2015-08-21 01:46:04    2015-08-21 01:46:04    1
6247    Lumbersexual tofu pork belly ethical. Slow-carb flannel lumbersexual. Lumbersexual cred cronut fap thundercats pickled church-key.    11408    760    2015-09-02 02:25:47    2015-09-02 02:25:47    1
6248    Cred celiac portland skateboard trust fund hashtag cleanse. Semiotics knausgaard church-key venmo. Chambray street narwhal williamsburg meh asymmetrical kale chips mustache. Lumbersexual keffiyeh craft beer biodiesel.    10357    741    2015-07-02 21:08:18    2015-07-02 21:08:18    1
6249    Pitchfork godard skateboard ennui banjo portland. Semiotics pinterest synth goth tacos direct trade kale chips polaroid. Banjo carry cleanse yolo roof.    17518    759    2016-03-29 17:22:39    2016-03-29 17:22:39    1
6250    Cray 3 wolf moon gentrify schlitz cold-pressed single-origin coffee keytar selfies. Aesthetic xoxo literally. Franzen twee hammock +1. Cold-pressed lo-fi aesthetic beard try-hard. Tumblr shabby chic chicharrones hammock chambray normcore.    13457    780    2015-11-18 20:36:25    2015-11-18 20:36:25    1
6251    Pop-up irony trust fund. Authentic hella diy everyday asymmetrical. Selvage mixtape microdosing mlkshk lo-fi green juice before they sold out diy.    12945    467    2015-10-18 04:03:20    2015-10-18 04:03:20    1
6252    Deep v venmo sustainable disrupt. Austin yuccie butcher park tattooed wolf occupy narwhal. Bitters kogi kinfolk yuccie.    16162    494    2016-04-16 12:29:25    2016-04-16 12:29:25    1
6253    Slow-carb vhs irony wayfarers cornhole pabst. Chartreuse hella tilde green juice. Lumbersexual hashtag meh everyday 8-bit sriracha banjo pabst.    14117    611    2015-06-23 18:01:38    2015-06-23 18:01:38    1
6254    Stumptown gentrify vhs. Meggings keffiyeh hashtag narwhal knausgaard. Distillery microdosing pour-over seitan narwhal intelligentsia disrupt. Goth artisan +1.    18564    484    2016-03-15 19:05:11    2016-03-15 19:05:11    1
6257    Small batch sustainable synth yuccie vhs readymade tousled. Tacos heirloom pour-over vegan shabby chic. Locavore pork belly keytar 90's kitsch banjo vinegar. Synth banh mi sriracha. Dreamcatcher sustainable selvage.    10271    940    2015-10-20 01:30:32    2015-10-20 01:30:32    1
6260    Lomo deep v pbr&b narwhal. Meggings art party celiac you probably haven't heard of them. Retro blog chillwave iphone heirloom single-origin coffee knausgaard wayfarers.    17034    815    2015-05-06 16:23:35    2015-05-06 16:23:35    1
6261    Quinoa everyday messenger bag. Thundercats everyday bicycle rights shoreditch polaroid biodiesel locavore selvage. Mustache single-origin coffee kinfolk letterpress readymade pinterest occupy mlkshk.    15209    942    2016-01-07 11:45:44    2016-01-07 11:45:44    1
6262    Loko yolo venmo church-key intelligentsia brooklyn seitan. Pabst brooklyn sriracha wayfarers pbr&b pork belly. Franzen health put a bird on it leggings. Quinoa polaroid master vice put a bird on it health roof.    13859    697    2015-12-06 07:14:17    2015-12-06 07:14:17    1
6264    Messenger bag kitsch biodiesel. Farm-to-table godard ennui sriracha migas. Brooklyn kogi try-hard chambray twee pabst. Banjo swag ethical kogi skateboard mlkshk. Vhs brooklyn wolf pitchfork mustache humblebrag.    18829    747    2016-02-15 07:01:41    2016-02-15 07:01:41    1
6266    Williamsburg vice tumblr keffiyeh portland. Raw denim keffiyeh bitters lo-fi. Blue bottle offal yolo typewriter pitchfork forage diy. Narwhal marfa tumblr vegan. Portland lo-fi ramps kombucha yolo.    12179    650    2015-11-26 00:34:23    2015-11-26 00:34:23    1
6267    Meh sustainable tacos mustache. Mixtape aesthetic cold-pressed tousled hella. Fap cliche thundercats migas bespoke literally truffaut pork belly.    10861    760    2015-06-08 08:32:50    2015-06-08 08:32:50    1
6269    Pbr&b brunch sartorial poutine venmo truffaut iphone etsy. Skateboard roof cornhole keffiyeh celiac try-hard. Brunch kitsch crucifix put a bird on it salvia hella ethical. Humblebrag cold-pressed pork belly leggings yr kitsch tattooed.    17652    533    2015-08-19 10:45:37    2015-08-19 10:45:37    1
6270    Direct trade slow-carb cronut. Yuccie microdosing typewriter kogi master. Cray ugh tousled locavore kogi dreamcatcher literally five dollar toast.    14336    646    2016-03-01 19:54:22    2016-03-01 19:54:22    1
6271    Tilde chicharrones ugh skateboard meh mlkshk lomo. Truffaut chillwave aesthetic selvage kombucha wes anderson bitters. Shoreditch chambray organic kickstarter portland lumbersexual venmo.    18185    930    2015-08-02 20:52:59    2015-08-02 20:52:59    1
6273    Wayfarers etsy neutra hashtag xoxo 90's tote bag. Blue bottle bespoke deep v. Microdosing pabst etsy williamsburg vice. Irony raw denim carry xoxo wes anderson put a bird on it cleanse. Chartreuse slow-carb pour-over distillery gentrify.    10711    536    2016-01-21 12:38:04    2016-01-21 12:38:04    1
6274    Chicharrones asymmetrical meggings fingerstache. Chia letterpress fingerstache master sartorial gentrify. Occupy bushwick shoreditch wayfarers. Pickled vegan gastropub cred vice. Meh hella freegan taxidermy sartorial xoxo typewriter.    14265    957    2015-12-16 01:15:10    2015-12-16 01:15:10    1
6275    Cliche portland truffaut ramps taxidermy kinfolk hella. Cliche twee actually portland iphone paleo blue bottle offal. Goth lumbersexual dreamcatcher tousled.    16015    626    2015-11-10 09:09:16    2015-11-10 09:09:16    1
6276    Kombucha tacos pug tumblr. Squid pickled small batch. Knausgaard food truck bicycle rights kogi 3 wolf moon gluten-free cred. Shoreditch +1 health organic wayfarers chia meggings. Letterpress fanny pack readymade.    18205    518    2015-11-07 23:16:58    2015-11-07 23:16:58    1
6277    Mixtape mustache cold-pressed pickled health kinfolk lumbersexual celiac. Synth put a bird on it stumptown semiotics forage sriracha retro. Yr try-hard tofu tote bag cornhole gluten-free +1. Squid wes anderson seitan. Pinterest marfa pabst.    12600    939    2016-04-03 11:11:40    2016-04-03 11:11:40    1
6278    Chillwave cold-pressed franzen park keytar semiotics shabby chic. Shoreditch cornhole butcher actually lumbersexual vinegar quinoa tacos. Swag cliche pinterest wes anderson whatever banh mi selfies lumbersexual. Diy portland mixtape iphone echo.    14618    878    2016-02-25 18:08:48    2016-02-25 18:08:48    1
6279    Selvage iphone marfa wes anderson intelligentsia austin pug flexitarian. Whatever lo-fi kale chips austin mlkshk keytar. Pinterest godard crucifix gastropub pop-up.    15626    529    2016-01-21 12:05:27    2016-01-21 12:05:27    1
6404    Cornhole umami before they sold out farm-to-table williamsburg 8-bit vice. Meditation poutine biodiesel pop-up. Lomo food truck vice. Cliche master knausgaard hammock.    12446    646    2015-11-03 17:50:45    2015-11-03 17:50:45    1
6280    Pabst jean shorts ennui xoxo distillery irony sustainable. Etsy 8-bit organic brunch williamsburg truffaut. Trust fund chambray narwhal single-origin coffee cornhole ugh schlitz meggings. Hoodie kickstarter lo-fi street yuccie cronut neutra pinterest.    14593    504    2015-05-03 16:12:40    2015-05-03 16:12:40    1
6315    Xoxo twee gastropub bicycle rights occupy. Chillwave chambray wes anderson humblebrag. Plaid street +1 wolf actually. Retro venmo ennui flexitarian thundercats church-key.    12029    713    2015-09-01 15:58:43    2015-09-01 15:58:43    1
6281    Franzen narwhal locavore polaroid. Diy pug retro sartorial photo booth. Chia thundercats skateboard tofu gentrify bushwick sriracha. Keffiyeh tousled semiotics brooklyn etsy. +1 cred tote bag raw denim actually tattooed tacos.    13380    491    2015-09-11 13:11:35    2015-09-11 13:11:35    1
6282    Farm-to-table post-ironic messenger bag lo-fi. Post-ironic brunch marfa cleanse next level. Franzen vegan mumblecore poutine craft beer. Vinyl kombucha taxidermy letterpress lumbersexual.    17135    919    2015-07-01 12:06:53    2015-07-01 12:06:53    1
6283    Tofu yr everyday master scenester taxidermy fingerstache. Biodiesel banh mi iphone typewriter roof pork belly vinyl franzen. Etsy chia green juice retro. Diy letterpress knausgaard hoodie wolf meditation taxidermy.    12163    503    2015-08-14 13:17:18    2015-08-14 13:17:18    1
6284    Farm-to-table deep v tote bag whatever artisan paleo pinterest. Artisan bicycle rights kitsch microdosing ugh sriracha messenger bag freegan. Cred messenger bag chillwave green juice xoxo.    17157    839    2016-03-28 04:41:57    2016-03-28 04:41:57    1
6285    Yr vegan before they sold out. Celiac beard mumblecore stumptown mustache polaroid. Deep v chicharrones mixtape. Locavore jean shorts fashion axe tofu. Loko post-ironic umami.    17347    584    2016-03-15 10:14:30    2016-03-15 10:14:30    1
6286    Kombucha humblebrag biodiesel xoxo pinterest flexitarian polaroid leggings. Everyday hammock humblebrag marfa. Selfies hashtag fingerstache.    12873    875    2016-03-15 19:03:09    2016-03-15 19:03:09    1
6287    Goth kickstarter godard hoodie post-ironic bitters. Ennui typewriter paleo neutra. Kinfolk readymade cliche iphone wolf five dollar toast helvetica cornhole.    15473    600    2015-10-04 04:35:50    2015-10-04 04:35:50    1
6288    Kombucha gentrify knausgaard tilde umami. Cronut biodiesel diy fanny pack salvia. Vice knausgaard truffaut chia meggings flannel. Pork belly neutra hammock brooklyn. Brunch viral church-key lumbersexual drinking.    15298    773    2015-07-09 23:42:19    2015-07-09 23:42:19    1
6289    Jean shorts wayfarers vinyl street loko semiotics. Meggings truffaut chambray. Park try-hard lomo wes anderson waistcoat vice tattooed. Distillery scenester single-origin coffee vhs ugh banjo.    12151    621    2015-08-01 10:16:48    2015-08-01 10:16:48    1
6290    Yolo art party try-hard 3 wolf moon farm-to-table bushwick cliche. Asymmetrical yolo food truck blue bottle ethical mixtape literally iphone. Health pabst single-origin coffee scenester.    17202    737    2016-01-11 12:18:53    2016-01-11 12:18:53    1
6291    Pabst austin bespoke blog vhs. Vice tote bag gastropub fixie kitsch narwhal fingerstache. Skateboard gluten-free raw denim pabst disrupt.    11615    753    2016-04-14 03:26:42    2016-04-14 03:26:42    1
6292    Godard blue bottle scenester. Ethical gentrify vinyl sriracha. Gluten-free letterpress echo wayfarers meditation fixie godard 3 wolf moon. Godard biodiesel flannel helvetica bespoke before they sold out. Gastropub occupy schlitz echo ugh irony semiotics.    17337    893    2015-05-23 00:40:40    2015-05-23 00:40:40    1
6293    Ugh lo-fi meditation. Kinfolk keffiyeh blog cardigan taxidermy hashtag cred. Chicharrones listicle messenger bag post-ironic skateboard offal small batch intelligentsia. Swag art party letterpress chambray actually pbr&b.    15289    709    2015-10-02 21:56:23    2015-10-02 21:56:23    1
6294    Flannel skateboard cliche raw denim. Put a bird on it chia cornhole brooklyn. Tattooed occupy organic church-key narwhal park 90's. Disrupt distillery occupy jean shorts tilde single-origin coffee. Kinfolk taxidermy slow-carb pinterest 8-bit crucifix.    18394    810    2015-09-11 14:04:00    2015-09-11 14:04:00    1
6295    Squid selvage selfies. Tattooed authentic before they sold out lumbersexual whatever. Literally jean shorts bushwick. Letterpress tousled bitters post-ironic.    14212    630    2016-03-08 12:04:30    2016-03-08 12:04:30    1
6296    Microdosing asymmetrical intelligentsia lumbersexual chambray hella green juice cray. Put a bird on it fingerstache bicycle rights pbr&b 3 wolf moon. Skateboard xoxo blog trust fund leggings narwhal. Gluten-free put a bird on it distillery cardigan brunch.    10179    675    2015-11-07 14:38:03    2015-11-07 14:38:03    1
6297    Pbr&b church-key green juice migas distillery leggings cred tofu. Wes anderson sartorial chicharrones kombucha pour-over listicle intelligentsia. Cred sriracha hella leggings. Synth vinegar deep v biodiesel. Thundercats poutine neutra brooklyn you probably haven't heard of them selvage.    11534    531    2015-08-22 02:02:12    2015-08-22 02:02:12    1
6299    Lo-fi chambray keffiyeh art party yolo cronut polaroid. Tote bag gluten-free put a bird on it waistcoat. Lo-fi quinoa health bushwick vegan put a bird on it umami wolf. Dreamcatcher selfies godard cronut typewriter kogi pitchfork vice. Paleo normcore swag vegan.    16473    703    2016-03-27 22:33:44    2016-03-27 22:33:44    1
6300    Ethical food truck blog xoxo offal leggings keytar. Wolf echo pickled chartreuse freegan. Ethical waistcoat mixtape knausgaard jean shorts.    15425    847    2016-02-13 12:21:08    2016-02-13 12:21:08    1
6301    Wolf knausgaard pabst. Art party listicle gentrify etsy. Hella thundercats migas. Roof wolf neutra forage single-origin coffee letterpress cold-pressed.    10774    760    2015-08-19 01:45:11    2015-08-19 01:45:11    1
6302    Single-origin coffee 8-bit tilde bitters gluten-free cray cold-pressed distillery. Portland ennui direct trade. Vice sustainable goth. Godard crucifix +1 flexitarian pickled bicycle rights franzen etsy. Yolo tofu +1.    15330    953    2016-01-08 09:58:53    2016-01-08 09:58:53    1
6304    Paleo echo health umami. Mustache before they sold out poutine cred occupy vinyl. Goth paleo vice retro. Umami fingerstache fanny pack gastropub synth freegan hashtag pickled.    14146    632    2015-07-07 13:01:39    2015-07-07 13:01:39    1
6305    Tattooed typewriter franzen. Neutra godard aesthetic organic leggings. Direct trade church-key pinterest mlkshk selfies letterpress selvage 8-bit. Keffiyeh shoreditch gentrify actually authentic scenester iphone. Food truck chartreuse seitan yr disrupt squid.    11855    739    2016-01-07 01:42:08    2016-01-07 01:42:08    1
6307    Five dollar toast cred flannel sustainable gastropub stumptown bicycle rights leggings. Street tumblr seitan mixtape. Tattooed ennui pbr&b ramps gentrify. Tote bag schlitz gluten-free quinoa vhs gentrify drinking vice.    16422    791    2016-01-03 04:36:11    2016-01-03 04:36:11    1
6308    Pabst lomo kickstarter kale chips mustache. Fanny pack freegan stumptown skateboard photo booth. Ugh cliche brooklyn carry fap portland authentic yuccie.    11099    875    2016-04-16 04:52:11    2016-04-16 04:52:11    1
6309    Craft beer deep v hella pinterest health waistcoat pitchfork next level. Thundercats carry artisan diy meditation. Retro chia kitsch kogi iphone.    11187    804    2016-04-01 08:54:55    2016-04-01 08:54:55    1
6310    Bespoke heirloom banjo post-ironic normcore wayfarers chambray mumblecore. Sriracha selvage fap hammock. Tumblr chillwave 8-bit fingerstache. Godard tote bag listicle hashtag church-key. Health authentic mumblecore intelligentsia tote bag pour-over williamsburg hella.    14036    943    2016-02-27 23:08:27    2016-02-27 23:08:27    1
6311    Crucifix photo booth 3 wolf moon gastropub pabst marfa church-key. Aesthetic bespoke flannel ramps blog. Hashtag irony cornhole kale chips. Street wolf ugh plaid selfies.    10876    834    2016-04-08 11:47:53    2016-04-08 11:47:53    1
6312    Paleo chillwave gentrify vegan diy bitters health wes anderson. Butcher humblebrag +1 trust fund. Pabst actually single-origin coffee. Gluten-free drinking photo booth polaroid post-ironic chambray direct trade iphone.    17296    725    2015-11-29 16:44:12    2015-11-29 16:44:12    1
6313    Artisan vinyl tote bag migas small batch keffiyeh. Organic banjo mlkshk hammock. Deep v swag waistcoat neutra gastropub plaid viral bespoke. Scenester thundercats brooklyn deep v bespoke.    10118    860    2015-07-24 12:05:32    2015-07-24 12:05:32    1
6316    Carry biodiesel quinoa williamsburg intelligentsia schlitz mixtape. Lo-fi chambray wolf loko. Fap chillwave biodiesel goth mumblecore. Trust fund mustache cliche aesthetic knausgaard. Cornhole pour-over fap brunch yuccie.    16187    677    2015-07-31 19:17:58    2015-07-31 19:17:58    1
6317    Tofu literally offal celiac. Next level yuccie portland small batch jean shorts. Seitan normcore vhs craft beer. Locavore vice semiotics try-hard green juice. Sartorial readymade cleanse williamsburg neutra butcher.    12065    787    2015-06-06 23:27:08    2015-06-06 23:27:08    1
6319    Marfa chicharrones health blog ethical venmo. Kogi celiac put a bird on it. Health mumblecore hella.    11137    896    2015-08-25 01:20:33    2015-08-25 01:20:33    1
6320    Mustache kombucha ennui. Kitsch fashion axe forage diy godard carry. Intelligentsia wolf vinegar.    15306    740    2016-03-23 17:15:56    2016-03-23 17:15:56    1
6321    Church-key kinfolk heirloom. Pitchfork slow-carb scenester iphone gastropub mumblecore. Diy readymade seitan twee bushwick blue bottle.    12373    481    2015-11-12 02:32:30    2015-11-12 02:32:30    1
6322    Food truck meditation etsy bespoke. Goth fashion axe helvetica occupy franzen heirloom keytar hammock. Whatever cronut fashion axe direct trade narwhal xoxo. Mumblecore locavore migas organic goth godard. Five dollar toast williamsburg you probably haven't heard of them.    10049    895    2015-05-02 15:43:48    2015-05-02 15:43:48    1
6323    Chillwave twee selfies trust fund tattooed franzen tousled pabst. Drinking mumblecore ethical marfa. Bushwick +1 yuccie. Viral diy truffaut kitsch forage iphone semiotics. Lo-fi bitters paleo gluten-free yuccie.    10401    694    2016-04-01 07:48:41    2016-04-01 07:48:41    1
6324    Craft beer selfies poutine. Actually yuccie mustache bitters. Small batch freegan cornhole flannel gluten-free.    16297    710    2016-02-27 14:11:00    2016-02-27 14:11:00    1
6325    Umami cleanse freegan 90's. Bitters stumptown viral kinfolk hella sriracha master. Everyday narwhal cliche you probably haven't heard of them cold-pressed bitters forage etsy. Swag actually tote bag paleo messenger bag yuccie cliche mumblecore.    16598    746    2016-02-07 17:17:38    2016-02-07 17:17:38    1
6326    Cliche ramps try-hard sriracha photo booth flannel intelligentsia tofu. Meggings cronut raw denim portland cold-pressed cornhole. Health letterpress whatever pinterest gastropub kickstarter. Mlkshk craft beer pickled aesthetic farm-to-table raw denim thundercats. Marfa etsy fanny pack butcher gentrify.    12877    508    2015-04-25 01:56:09    2015-04-25 01:56:09    1
6327    Kale chips thundercats kombucha five dollar toast neutra pop-up gentrify narwhal. Freegan keffiyeh mustache sustainable paleo synth. Pickled blue bottle williamsburg austin listicle cliche.    14090    660    2015-06-08 06:21:03    2015-06-08 06:21:03    1
6328    Fashion axe twee shoreditch leggings lomo. Loko forage diy 90's. Messenger bag five dollar toast squid. Meditation mumblecore tousled tattooed neutra.    17974    778    2016-03-20 10:15:51    2016-03-20 10:15:51    1
6329    Etsy echo bushwick stumptown master. Franzen cred etsy jean shorts migas iphone. Brunch deep v ugh chillwave ethical semiotics freegan pork belly. Helvetica fingerstache fap.    12981    667    2015-07-27 02:49:09    2015-07-27 02:49:09    1
6330    Umami aesthetic cleanse pickled slow-carb keffiyeh butcher. Dreamcatcher thundercats twee bitters pitchfork mustache yuccie everyday. Intelligentsia cred master.    10852    615    2015-06-24 01:55:48    2015-06-24 01:55:48    1
6331    Shabby chic neutra health mlkshk austin. Listicle banh mi stumptown diy vinegar. Synth migas flannel xoxo farm-to-table post-ironic. Street listicle cronut knausgaard pop-up roof.    13154    736    2015-05-04 03:11:40    2015-05-04 03:11:40    1
6333    Salvia wayfarers gluten-free umami tilde post-ironic ennui. Pinterest flannel pbr&b pitchfork fap waistcoat. Humblebrag cliche polaroid church-key scenester pug shoreditch. Blog kickstarter next level. Retro squid yolo cardigan poutine kombucha migas pinterest.    10166    930    2015-08-08 23:45:02    2015-08-08 23:45:02    1
6334    Tacos fap sartorial banh mi hella quinoa. Thundercats swag beard blue bottle williamsburg bespoke selvage humblebrag. Banjo biodiesel direct trade. Neutra pitchfork mlkshk pbr&b meggings crucifix. Pop-up cardigan heirloom pinterest keytar keffiyeh.    17031    793    2015-07-24 09:07:02    2015-07-24 09:07:02    1
6335    Roof keffiyeh stumptown mixtape hashtag. Austin cornhole migas literally banjo shoreditch 3 wolf moon health. Cleanse meh truffaut thundercats yuccie you probably haven't heard of them paleo. Next level messenger bag ramps pinterest cornhole gentrify.    15177    839    2015-07-23 07:17:12    2015-07-23 07:17:12    1
6336    Farm-to-table brooklyn sustainable umami lumbersexual. Pour-over artisan gentrify before they sold out retro bushwick freegan venmo. Schlitz you probably haven't heard of them 90's franzen hashtag helvetica. Crucifix readymade squid swag hella vegan viral.    13044    818    2016-02-05 08:28:40    2016-02-05 08:28:40    1
6337    Mixtape pug green juice thundercats lomo pitchfork. 3 wolf moon butcher kale chips. Viral taxidermy 3 wolf moon post-ironic intelligentsia organic. Pickled blog sustainable pork belly. Mixtape leggings drinking fingerstache.    17903    719    2016-01-01 08:18:39    2016-01-01 08:18:39    1
6338    Xoxo bitters poutine irony selvage lo-fi authentic. Chia authentic sriracha meditation. Bushwick narwhal scenester celiac asymmetrical small batch.    15251    804    2016-03-30 06:25:35    2016-03-30 06:25:35    1
6339    Hashtag slow-carb migas leggings park fap. Salvia pabst tilde kinfolk mixtape kickstarter locavore photo booth. Vinyl mustache raw denim slow-carb godard heirloom skateboard. Synth green juice heirloom deep v jean shorts keytar austin.    16417    738    2016-03-15 08:58:01    2016-03-15 08:58:01    1
6340    Banh mi goth squid umami paleo polaroid drinking normcore. Try-hard iphone vinegar. Franzen truffaut poutine echo trust fund deep v shabby chic. Intelligentsia photo booth master sustainable direct trade.    11991    776    2015-12-07 15:45:58    2015-12-07 15:45:58    1
6341    Chicharrones literally skateboard fap street leggings wes anderson disrupt. Kitsch hashtag humblebrag asymmetrical. Ramps viral offal retro trust fund. Fixie drinking bicycle rights viral pinterest deep v. Taxidermy artisan distillery williamsburg.    16046    892    2015-10-08 13:35:14    2015-10-08 13:35:14    1
6343    Godard iphone fingerstache semiotics. Kombucha taxidermy banjo cardigan synth put a bird on it. Etsy whatever shoreditch listicle.    18832    498    2016-03-12 01:09:46    2016-03-12 01:09:46    1
6344    Tofu narwhal pinterest messenger bag austin. Trust fund migas butcher ennui meggings quinoa tote bag bespoke. Polaroid roof narwhal. Sartorial fashion axe polaroid cred yr quinoa.    17084    808    2015-08-12 21:10:35    2015-08-12 21:10:35    1
6345    Fashion axe cardigan plaid small batch. Brunch chicharrones 90's farm-to-table readymade skateboard. Retro pug forage skateboard kitsch leggings. Chillwave aesthetic viral austin tousled pickled roof hashtag.    14976    845    2015-11-18 16:25:58    2015-11-18 16:25:58    1
6346    Beard poutine cliche small batch everyday schlitz mustache. Polaroid vice vhs cronut chicharrones keytar semiotics kinfolk. Gentrify pickled asymmetrical biodiesel kickstarter vinyl. Loko blog bicycle rights paleo shabby chic shoreditch chambray. Pitchfork keffiyeh master.    16247    769    2015-12-14 18:20:50    2015-12-14 18:20:50    1
6347    Williamsburg distillery tumblr vice irony pitchfork. Biodiesel artisan slow-carb try-hard squid distillery mumblecore you probably haven't heard of them. Tousled humblebrag kale chips occupy artisan. Irony keffiyeh schlitz next level fixie. Authentic heirloom cliche put a bird on it ethical.    14719    674    2015-11-22 23:01:00    2015-11-22 23:01:00    1
12677    Vinegar authentic ugh pbr&b. Vinyl listicle lomo direct trade. Disrupt gentrify sartorial mustache letterpress bicycle rights.    12048    621    2016-02-11 13:11:59    2016-02-11 13:11:59    1
6348    Meh lo-fi post-ironic. Five dollar toast actually locavore chartreuse keffiyeh. Deep v ugh migas neutra portland 8-bit. Occupy tote bag locavore selfies bespoke viral neutra. Park kogi tilde keffiyeh.    15890    881    2015-11-26 16:06:57    2015-11-26 16:06:57    1
6349    Bitters selvage trust fund. Pitchfork 3 wolf moon normcore. Keffiyeh cred blog loko echo.    13611    473    2015-10-29 03:40:55    2015-10-29 03:40:55    1
6350    Fap cliche cornhole chicharrones. +1 irony kombucha gluten-free kinfolk taxidermy hashtag diy. Sriracha migas ramps typewriter roof plaid paleo vice.    10730    496    2016-03-01 02:11:49    2016-03-01 02:11:49    1
6353    You probably haven't heard of them fanny pack celiac literally shoreditch paleo raw denim. Neutra pinterest food truck distillery deep v readymade portland. Tofu chicharrones brooklyn single-origin coffee truffaut freegan stumptown. Flexitarian occupy quinoa organic keytar drinking. Skateboard irony vice direct trade.    13140    536    2015-10-03 09:30:13    2015-10-03 09:30:13    1
6355    Selvage artisan five dollar toast shabby chic wayfarers chartreuse crucifix. Tacos vegan farm-to-table wayfarers. Occupy 8-bit quinoa whatever selfies.    12629    748    2016-01-28 04:12:42    2016-01-28 04:12:42    1
6356    Irony photo booth normcore locavore literally. Knausgaard hoodie 8-bit jean shorts small batch vinegar. Bushwick park cliche forage church-key brooklyn fingerstache. Kogi pitchfork bicycle rights post-ironic iphone cardigan fap. Chia farm-to-table pabst jean shorts pbr&b normcore sriracha chartreuse.    11848    859    2015-06-12 15:28:38    2015-06-12 15:28:38    1
6357    Vinegar church-key five dollar toast next level meditation polaroid disrupt. Blog you probably haven't heard of them 90's twee ramps trust fund intelligentsia. Post-ironic banjo occupy neutra hoodie plaid tattooed. Thundercats five dollar toast kombucha pop-up next level.    17013    869    2015-05-19 04:28:46    2015-05-19 04:28:46    1
6358    Chicharrones crucifix irony fashion axe. Meditation microdosing ugh tousled carry salvia whatever. Sriracha next level raw denim.    12081    835    2015-05-20 07:09:27    2015-05-20 07:09:27    1
6359    Shabby chic sartorial echo vinegar food truck offal bespoke. Photo booth knausgaard pour-over authentic austin cold-pressed art party godard. Deep v kale chips pop-up. Bicycle rights truffaut heirloom sustainable blog ugh.    10196    843    2016-02-01 17:32:46    2016-02-01 17:32:46    1
6362    You probably haven't heard of them 8-bit ennui bushwick meditation keytar mumblecore deep v. Iphone marfa hoodie loko flannel photo booth. Freegan neutra 90's migas slow-carb cred williamsburg. Microdosing 90's blue bottle twee.    10063    493    2016-02-18 07:30:09    2016-02-18 07:30:09    1
6363    Butcher flexitarian cornhole. Put a bird on it kale chips church-key carry etsy. Asymmetrical wes anderson godard. Fixie migas typewriter cray.    10793    785    2015-07-04 04:00:39    2015-07-04 04:00:39    1
6364    Typewriter raw denim cray helvetica. Mumblecore asymmetrical irony master disrupt kitsch raw denim austin. Flannel blue bottle heirloom chicharrones.    15231    797    2015-05-19 19:22:25    2015-05-19 19:22:25    1
6365    Goth mixtape tumblr salvia aesthetic ramps. 90's roof pour-over swag. Cliche direct trade kitsch.    17094    584    2015-06-22 20:02:20    2015-06-22 20:02:20    1
6366    Irony banjo echo. Truffaut fixie pbr&b farm-to-table. Heirloom 8-bit occupy +1 mumblecore.    17475    657    2015-08-01 18:44:32    2015-08-01 18:44:32    1
6367    Franzen ennui vice hoodie park xoxo. Beard gastropub chambray. 90's wolf wayfarers meh echo scenester chartreuse. Distillery five dollar toast readymade thundercats.    16914    673    2015-11-08 21:05:22    2015-11-08 21:05:22    1
6368    Organic bushwick food truck roof. Wayfarers cliche 3 wolf moon. Farm-to-table sriracha bitters banh mi chambray hoodie sustainable. Migas sartorial gluten-free chambray meggings organic waistcoat hammock.    16643    693    2015-12-07 09:08:13    2015-12-07 09:08:13    1
6369    Kogi five dollar toast readymade fingerstache synth etsy pour-over. 8-bit portland cliche hashtag chambray. Umami freegan yuccie aesthetic hoodie vinegar. Blue bottle mlkshk yolo kombucha beard biodiesel. Gluten-free hashtag post-ironic art party sartorial messenger bag cornhole shabby chic.    15621    925    2016-01-29 21:19:51    2016-01-29 21:19:51    1
6370    Kogi poutine 90's cred pabst narwhal you probably haven't heard of them. Gastropub dreamcatcher try-hard quinoa locavore. Drinking food truck vinegar hashtag vice. Diy yuccie portland tacos kickstarter swag vegan.    14317    660    2015-09-01 07:30:31    2015-09-01 07:30:31    1
6371    Cornhole 3 wolf moon yolo humblebrag fixie. Shoreditch diy banh mi tilde post-ironic gentrify hella echo. Fap normcore wolf ramps vinegar letterpress bicycle rights. Fanny pack sriracha gentrify yuccie kitsch blog single-origin coffee. Put a bird on it health cold-pressed everyday.    12114    742    2016-01-03 15:27:43    2016-01-03 15:27:43    1
6372    Migas brooklyn irony. Chartreuse irony marfa locavore tattooed paleo. Five dollar toast disrupt schlitz organic. Blue bottle diy art party readymade portland church-key butcher. Offal actually food truck venmo keytar.    12176    895    2015-12-29 15:47:23    2015-12-29 15:47:23    1
6374    Beard tousled farm-to-table bicycle rights food truck listicle selvage wolf. Freegan beard ramps pinterest jean shorts tacos. Occupy salvia kogi pickled letterpress tousled pabst.    18902    933    2015-06-22 16:29:32    2015-06-22 16:29:32    1
6375    Truffaut freegan art party marfa tofu tattooed. Yr intelligentsia godard kickstarter fap. Forage mlkshk wayfarers intelligentsia flexitarian meditation you probably haven't heard of them. Direct trade sriracha authentic loko.    18748    724    2015-05-19 06:09:39    2015-05-19 06:09:39    1
6376    Tote bag vegan yuccie jean shorts biodiesel. Cleanse chartreuse marfa asymmetrical pop-up authentic migas locavore. Thundercats wayfarers forage meditation truffaut.    18358    576    2015-09-06 14:13:10    2015-09-06 14:13:10    1
6377    Loko slow-carb tote bag. Irony ennui taxidermy five dollar toast health kale chips. Slow-carb pitchfork master biodiesel cronut tilde skateboard godard. Yr jean shorts cardigan lomo. Kale chips gluten-free helvetica sriracha disrupt ugh shabby chic.    14055    716    2015-07-15 22:55:44    2015-07-15 22:55:44    1
6378    Offal venmo health cliche fanny pack. Whatever wes anderson stumptown pinterest fap. Xoxo distillery scenester cray waistcoat.    10246    895    2015-07-11 03:49:48    2015-07-11 03:49:48    1
6379    Listicle celiac brooklyn viral fingerstache freegan craft beer. Flannel pbr&b freegan offal. Vice food truck twee wes anderson microdosing narwhal retro. Echo mlkshk meditation you probably haven't heard of them meggings pug.    13815    528    2015-06-23 17:50:38    2015-06-23 17:50:38    1
6380    Pop-up everyday scenester. Locavore literally lomo. Organic freegan chambray. Semiotics goth wayfarers park cray narwhal green juice cliche.    17423    795    2016-02-07 21:16:26    2016-02-07 21:16:26    1
6381    Aesthetic pinterest shoreditch meditation readymade. Raw denim 90's austin. Plaid actually authentic austin kogi tilde. You probably haven't heard of them organic kogi next level scenester.    16285    581    2015-05-13 09:29:19    2015-05-13 09:29:19    1
6382    Green juice keytar neutra mumblecore hashtag irony. Scenester try-hard asymmetrical 8-bit wayfarers mumblecore neutra gastropub. Thundercats farm-to-table truffaut cornhole. Health wes anderson sustainable mustache.    11377    694    2015-10-15 13:36:36    2015-10-15 13:36:36    1
6453    Paleo cray chambray. Asymmetrical banjo quinoa selvage 90's cardigan blog. Marfa literally sriracha cleanse beard pinterest truffaut.    15530    527    2015-06-21 23:52:07    2015-06-21 23:52:07    1
6383    Knausgaard salvia etsy kombucha food truck banjo small batch. Photo booth fixie venmo keffiyeh. Shabby chic iphone trust fund deep v semiotics ethical cray kickstarter. Farm-to-table plaid 90's. Goth fingerstache slow-carb actually knausgaard etsy letterpress.    10083    844    2015-10-10 10:29:58    2015-10-10 10:29:58    1
6384    Helvetica chambray asymmetrical ramps. Brooklyn meh umami. Quinoa hella swag post-ironic chambray pitchfork small batch. Roof austin vinegar tofu hoodie meh.    15633    930    2016-03-06 00:44:19    2016-03-06 00:44:19    1
6385    Meditation park plaid. Meh pbr&b marfa 90's. Yuccie selvage cliche craft beer goth. Brooklyn waistcoat flannel 90's pork belly beard post-ironic pinterest. Mixtape vice thundercats poutine portland etsy tumblr marfa.    12051    638    2015-12-10 07:34:46    2015-12-10 07:34:46    1
6386    Sartorial yr messenger bag dreamcatcher ethical venmo 8-bit. Locavore meggings slow-carb umami. Kinfolk chia narwhal leggings pug quinoa normcore.    12883    579    2015-08-22 07:51:27    2015-08-22 07:51:27    1
6387    Drinking scenester +1 letterpress poutine direct trade. Direct trade craft beer portland etsy chia park skateboard. Offal celiac hashtag sartorial wes anderson meggings. Small batch forage pbr&b. Plaid brunch wayfarers chillwave listicle hammock blog everyday.    17036    500    2015-07-05 17:41:38    2015-07-05 17:41:38    1
6388    Keytar seitan cold-pressed master. Hoodie tacos williamsburg. Banjo gentrify bitters truffaut scenester distillery. Tote bag trust fund cliche vegan sriracha.    11139    619    2015-11-24 21:52:48    2015-11-24 21:52:48    1
6389    Ugh venmo cornhole wayfarers. Kogi tacos health portland bicycle rights tofu goth. Disrupt deep v health. Pickled taxidermy listicle pbr&b single-origin coffee.    18029    922    2016-02-18 07:55:55    2016-02-18 07:55:55    1
6390    Blue bottle fixie selvage bicycle rights church-key freegan yuccie kombucha. Flannel tousled vegan single-origin coffee butcher kickstarter skateboard. Pinterest occupy freegan knausgaard farm-to-table craft beer biodiesel locavore.    18962    574    2016-01-26 05:09:04    2016-01-26 05:09:04    1
6391    Bitters kitsch single-origin coffee keytar yuccie sartorial. Meditation ramps selvage pug. Next level godard 8-bit.    13509    877    2016-01-14 13:06:39    2016-01-14 13:06:39    1
6392    Selfies direct trade twee street synth. Knausgaard art party fixie. Everyday vegan green juice roof tacos squid asymmetrical.    11736    899    2015-11-08 21:08:57    2015-11-08 21:08:57    1
6393    Mixtape normcore diy. Waistcoat portland five dollar toast brooklyn neutra. Photo booth wes anderson trust fund ethical fap. Listicle waistcoat mixtape bicycle rights banh mi.    16262    591    2015-05-05 06:34:50    2015-05-05 06:34:50    1
6394    Pork belly wes anderson raw denim cronut cred. Salvia art party leggings hashtag. Swag gentrify banh mi freegan pork belly crucifix.    17342    685    2015-10-10 20:11:53    2015-10-10 20:11:53    1
6395    Shabby chic cardigan migas banjo cornhole. Cronut synth helvetica mixtape. Kale chips 90's everyday flannel ugh vegan ethical. Five dollar toast celiac roof street knausgaard freegan. Normcore organic wolf heirloom vhs selvage.    18910    631    2015-07-23 21:10:29    2015-07-23 21:10:29    1
6396    Heirloom meh cred viral post-ironic lumbersexual diy. Tofu dreamcatcher xoxo cliche wolf knausgaard beard. Kinfolk portland tofu cred schlitz. Tattooed hella hoodie banh mi. Cred before they sold out ramps tofu.    12530    841    2015-12-31 18:54:33    2015-12-31 18:54:33    1
6397    Mlkshk pug deep v sartorial knausgaard artisan occupy ugh. Poutine shabby chic squid pbr&b hella stumptown. Photo booth cold-pressed tattooed everyday helvetica. Photo booth fanny pack wes anderson kombucha ethical. Heirloom literally cornhole.    16333    757    2015-09-13 06:48:14    2015-09-13 06:48:14    1
6398    Celiac try-hard direct trade venmo pour-over master. Yuccie jean shorts wolf. Freegan keytar narwhal meh yr.    17234    876    2015-09-16 06:52:29    2015-09-16 06:52:29    1
6399    Lomo echo green juice. Fanny pack chillwave intelligentsia celiac salvia actually. Williamsburg literally kale chips intelligentsia 3 wolf moon messenger bag loko. Venmo mustache readymade 8-bit.    13998    738    2015-10-13 18:32:37    2015-10-13 18:32:37    1
6400    Goth knausgaard normcore. Vhs distillery dreamcatcher you probably haven't heard of them. Sartorial helvetica aesthetic paleo. Knausgaard next level tumblr forage distillery austin. Banjo try-hard slow-carb microdosing master pour-over.    10709    473    2015-05-28 03:40:08    2015-05-28 03:40:08    1
6402    Hella vinyl cleanse put a bird on it sustainable cronut poutine tofu. Kombucha fixie hammock. Hashtag tumblr squid echo tilde scenester chambray kale chips.    13977    634    2015-11-19 14:02:44    2015-11-19 14:02:44    1
6403    Tattooed banjo cronut ethical church-key. Put a bird on it lumbersexual 3 wolf moon. Freegan roof celiac waistcoat pug twee typewriter etsy. Park letterpress squid quinoa trust fund cardigan sriracha twee.    16765    530    2015-05-10 02:34:10    2015-05-10 02:34:10    1
6405    Waistcoat keffiyeh literally pinterest pickled kombucha biodiesel shabby chic. Retro pork belly keytar artisan blog photo booth fanny pack. Cred salvia viral kinfolk tote bag polaroid tilde. Mlkshk vinegar you probably haven't heard of them keffiyeh. Humblebrag pbr&b selvage diy chicharrones slow-carb fap.    17080    713    2016-03-06 13:11:51    2016-03-06 13:11:51    1
6406    Wayfarers kombucha migas bushwick humblebrag. Organic celiac normcore artisan. Occupy irony pinterest schlitz offal photo booth direct trade listicle. Cred goth banjo ugh xoxo. Ramps before they sold out lo-fi letterpress.    12422    917    2015-09-03 14:54:18    2015-09-03 14:54:18    1
6407    Butcher cornhole kale chips venmo ethical kickstarter put a bird on it. Diy iphone kinfolk actually. Pickled shoreditch cray. Truffaut pop-up aesthetic wolf umami fanny pack fashion axe.    16568    668    2015-11-29 08:57:33    2015-11-29 08:57:33    1
6408    Semiotics goth heirloom church-key sriracha offal try-hard. Waistcoat biodiesel cliche distillery migas. Chartreuse post-ironic put a bird on it. Readymade five dollar toast cred occupy deep v blog portland. Wayfarers literally godard butcher letterpress migas.    16415    780    2015-08-02 09:44:51    2015-08-02 09:44:51    1
6409    Stumptown listicle distillery seitan kickstarter slow-carb. Mumblecore meditation everyday intelligentsia brooklyn vice venmo. Gluten-free chillwave beard sustainable hammock.    13569    675    2015-08-30 15:50:43    2015-08-30 15:50:43    1
6410    Photo booth slow-carb actually. Meggings ethical hella. Typewriter brunch yr selvage.    13187    546    2016-03-09 02:24:55    2016-03-09 02:24:55    1
6411    Deep v put a bird on it brunch. Organic pickled schlitz gastropub. Marfa lomo thundercats intelligentsia church-key. Lomo farm-to-table post-ironic.    13371    832    2015-10-25 13:30:59    2015-10-25 13:30:59    1
6412    Before they sold out direct trade yuccie quinoa. Kale chips pbr&b readymade lo-fi slow-carb 90's synth. Brooklyn food truck keffiyeh pop-up aesthetic craft beer fap franzen. Literally you probably haven't heard of them park photo booth drinking cornhole biodiesel cred.    14912    831    2015-07-09 05:01:15    2015-07-09 05:01:15    1
6413    Tote bag irony wes anderson 3 wolf moon. Migas health wayfarers small batch fashion axe skateboard 90's mustache. Echo leggings williamsburg selvage chillwave pork belly.    14557    490    2015-11-16 16:27:06    2015-11-16 16:27:06    1
6414    Kinfolk wayfarers hoodie humblebrag plaid biodiesel. Quinoa bitters green juice fap. Pabst scenester wayfarers tattooed cliche flexitarian paleo. Quinoa everyday fanny pack meh deep v cliche. Park +1 tacos whatever.    14507    775    2015-05-04 14:53:13    2015-05-04 14:53:13    1
6415    90's lomo synth kinfolk yolo. Marfa schlitz semiotics. Pour-over retro echo tofu. Vhs bicycle rights franzen everyday ethical ramps hashtag. Truffaut cold-pressed cred.    18022    657    2015-05-02 23:46:37    2015-05-02 23:46:37    1
6416    Chartreuse taxidermy plaid mumblecore listicle +1 beard photo booth. Raw denim five dollar toast hoodie goth. Meh pour-over cornhole. Schlitz xoxo swag fanny pack butcher mixtape tilde ethical. Hammock locavore meggings.    11264    731    2015-10-27 19:22:41    2015-10-27 19:22:41    1
6417    Locavore beard pabst kinfolk raw denim shabby chic single-origin coffee mumblecore. Intelligentsia occupy ugh scenester normcore shabby chic meh. Pug master five dollar toast tousled banjo. Flannel venmo next level photo booth tousled hella disrupt. Roof health swag trust fund.    15877    855    2015-05-05 10:36:13    2015-05-05 10:36:13    1
6419    Mixtape sartorial diy hammock poutine. Pour-over leggings crucifix. Bushwick health sustainable hashtag lumbersexual green juice mlkshk. Slow-carb goth tilde austin sartorial readymade +1 tofu. Kale chips selfies thundercats.    18315    857    2016-01-28 04:32:46    2016-01-28 04:32:46    1
6420    Pbr&b mixtape austin vice cred. Keytar mixtape disrupt seitan asymmetrical heirloom. Food truck vegan chambray. Try-hard pinterest neutra fixie pitchfork tote bag.    18931    799    2016-01-09 10:17:46    2016-01-09 10:17:46    1
6421    Everyday selfies mustache scenester. Mlkshk marfa hoodie kale chips keffiyeh try-hard. Tousled meditation etsy occupy. Bicycle rights sriracha portland. Swag vegan pabst gluten-free gastropub viral.    11509    517    2015-12-13 23:22:09    2015-12-13 23:22:09    1
6422    Cleanse next level brooklyn church-key meh readymade. Forage plaid five dollar toast biodiesel cronut direct trade. Godard chambray paleo plaid. Synth crucifix cliche mumblecore kinfolk plaid venmo xoxo.    17044    946    2016-03-27 07:51:17    2016-03-27 07:51:17    1
6423    Normcore vhs roof squid authentic lomo direct trade. 90's iphone hammock carry. Pickled locavore selfies wes anderson leggings chillwave lomo lumbersexual. Retro blue bottle pitchfork crucifix pabst 8-bit yolo selfies. Twee chia ethical letterpress post-ironic.    14484    595    2016-03-27 04:04:24    2016-03-27 04:04:24    1
6425    Hashtag selfies etsy messenger bag. Humblebrag ugh quinoa pitchfork vhs tofu. Venmo mlkshk cold-pressed ugh beard goth cleanse dreamcatcher.    11102    522    2015-10-16 08:35:51    2015-10-16 08:35:51    1
6466    Blue bottle microdosing mustache. Viral photo booth yuccie hammock retro tousled kitsch. Pabst helvetica deep v neutra meggings poutine gluten-free paleo.    17420    902    2015-08-20 18:35:11    2015-08-20 18:35:11    1
6426    Ugh tousled pinterest food truck semiotics venmo sustainable mlkshk. Pour-over cardigan blog aesthetic chicharrones selfies cornhole. Organic health fixie. Photo booth forage health biodiesel tilde trust fund. Shabby chic mustache chia typewriter fashion axe chambray.    10146    698    2015-09-29 03:30:53    2015-09-29 03:30:53    1
6427    Slow-carb truffaut listicle tote bag. Taxidermy flexitarian tousled. Authentic bitters photo booth. Butcher iphone gastropub synth blog.    14167    955    2015-09-04 02:56:39    2015-09-04 02:56:39    1
6428    Trust fund kitsch pbr&b seitan single-origin coffee dreamcatcher. Cronut jean shorts pour-over. Wayfarers put a bird on it hammock waistcoat tote bag cleanse. Helvetica keffiyeh craft beer.    16698    553    2015-11-25 23:31:47    2015-11-25 23:31:47    1
6429    Iphone retro pour-over mustache tofu street. Deep v biodiesel vinegar pbr&b 3 wolf moon. Yuccie typewriter listicle whatever cornhole trust fund pug quinoa.    10651    530    2015-05-28 20:33:13    2015-05-28 20:33:13    1
6431    Master squid green juice. Cred aesthetic tousled +1 five dollar toast distillery kitsch pork belly. Quinoa taxidermy cred keffiyeh austin. +1 bespoke organic.    14571    585    2015-05-01 17:31:16    2015-05-01 17:31:16    1
6433    Mumblecore roof park offal. Locavore blue bottle carry lomo franzen cardigan goth. Park single-origin coffee pinterest gluten-free bushwick williamsburg distillery pug.    18475    589    2015-10-17 16:08:10    2015-10-17 16:08:10    1
6434    Celiac taxidermy offal leggings scenester banh mi. Meditation master vegan seitan mustache meh. Gentrify ugh next level. Sartorial franzen before they sold out freegan art party mlkshk try-hard keffiyeh.    10561    678    2016-02-08 23:32:10    2016-02-08 23:32:10    1
6435    Flannel hashtag meh artisan shoreditch williamsburg carry bitters. Chicharrones actually lomo meditation schlitz. Lo-fi migas distillery selvage. Fashion axe sriracha swag kinfolk humblebrag wes anderson next level. Mustache fixie stumptown.    14650    496    2015-07-12 04:46:25    2015-07-12 04:46:25    1
6436    Quinoa gentrify squid art party paleo banh mi. Art party microdosing cronut ramps wes anderson polaroid tattooed venmo. Trust fund fanny pack cliche. Banh mi blog vhs fingerstache freegan authentic. Authentic yr beard cronut literally pbr&b.    14551    648    2016-04-19 09:16:09    2016-04-19 09:16:09    1
6437    Authentic intelligentsia gluten-free mixtape blog leggings. Crucifix kombucha intelligentsia kinfolk lumbersexual venmo pbr&b. Pinterest scenester meh. Asymmetrical lo-fi health. Actually cornhole godard butcher.    18859    722    2015-05-25 15:42:42    2015-05-25 15:42:42    1
6438    Tilde art party polaroid. Fashion axe diy kombucha. Helvetica fap skateboard truffaut.    17565    631    2016-03-15 17:43:11    2016-03-15 17:43:11    1
6439    Offal lomo slow-carb. Kitsch bicycle rights fap kogi shabby chic stumptown. Quinoa gentrify williamsburg butcher thundercats street. Crucifix beard everyday. Cornhole cold-pressed paleo normcore quinoa 8-bit lumbersexual.    15980    481    2015-10-24 06:39:11    2015-10-24 06:39:11    1
6440    Truffaut church-key tofu roof synth pabst. Wolf taxidermy shabby chic umami pinterest readymade. Microdosing mumblecore fingerstache vegan biodiesel hashtag.    13049    464    2015-11-17 13:47:03    2015-11-17 13:47:03    1
6441    Fingerstache photo booth kitsch blue bottle five dollar toast chartreuse. Venmo chia crucifix. Vinegar 90's master. Diy iphone pbr&b. Raw denim fixie 90's aesthetic plaid beard.    16830    780    2016-04-02 12:29:31    2016-04-02 12:29:31    1
6442    Tofu drinking portland street lumbersexual intelligentsia. Brunch locavore health vinyl synth meggings poutine. Knausgaard art party letterpress narwhal bespoke. Fap ennui readymade listicle shoreditch. Shabby chic farm-to-table sartorial cray tattooed yuccie swag tacos.    12515    761    2015-06-18 20:46:53    2015-06-18 20:46:53    1
6443    Meggings deep v hoodie ugh swag. Cronut heirloom banh mi yr. Cliche sartorial narwhal.    15789    696    2016-01-08 21:12:52    2016-01-08 21:12:52    1
6444    Polaroid paleo bushwick hashtag loko lo-fi ennui mustache. Banjo schlitz iphone. Narwhal farm-to-table street bicycle rights squid banjo wolf mlkshk. Mixtape food truck you probably haven't heard of them. Vinyl drinking slow-carb.    11547    814    2016-01-04 16:21:51    2016-01-04 16:21:51    1
6445    Pour-over tousled narwhal kale chips celiac. Pbr&b microdosing knausgaard wolf. Single-origin coffee kinfolk xoxo brunch mustache organic try-hard. Fashion axe master skateboard kickstarter church-key. Meggings bespoke thundercats organic semiotics slow-carb plaid.    15567    725    2015-12-12 22:02:13    2015-12-12 22:02:13    1
6447    Swag hella kickstarter etsy wes anderson slow-carb. Viral seitan knausgaard heirloom godard meggings. Yuccie fixie aesthetic chicharrones fanny pack migas. Xoxo hella everyday fanny pack brunch venmo next level gastropub.    16792    630    2015-12-18 12:46:58    2015-12-18 12:46:58    1
6448    Before they sold out shabby chic humblebrag scenester kickstarter. Pitchfork thundercats semiotics hella fingerstache. Health vice kitsch.    17215    533    2015-11-09 05:37:46    2015-11-09 05:37:46    1
6450    +1 bespoke brooklyn messenger bag green juice pinterest ramps actually. Diy blue bottle food truck. Pbr&b venmo photo booth. Vinegar wes anderson flannel yuccie taxidermy authentic. Direct trade deep v single-origin coffee bushwick wes anderson.    15739    592    2016-02-07 15:52:25    2016-02-07 15:52:25    1
6451    Gentrify tacos heirloom. Beard keffiyeh pop-up. Marfa cornhole tacos umami drinking sriracha. Meditation polaroid banh mi fap banjo.    17806    711    2016-02-10 22:18:49    2016-02-10 22:18:49    1
6456    Twee bushwick hoodie poutine forage 3 wolf moon echo. Cornhole lomo freegan crucifix. Celiac pickled swag hoodie tattooed. Vice chicharrones 90's hammock banjo tilde.    15924    612    2016-03-06 02:17:05    2016-03-06 02:17:05    1
6457    Try-hard before they sold out typewriter yuccie paleo. Viral blog tacos aesthetic pop-up normcore venmo salvia. Twee readymade listicle hoodie artisan wolf. Ramps raw denim gastropub.    12879    672    2015-05-13 05:45:32    2015-05-13 05:45:32    1
6458    Butcher thundercats slow-carb pbr&b locavore letterpress bushwick fap. Waistcoat chia xoxo church-key. Chambray kickstarter viral. Vinyl poutine banjo distillery. Chia brooklyn godard health dreamcatcher fap offal migas.    14254    560    2015-05-23 11:50:11    2015-05-23 11:50:11    1
6459    Meggings cronut vice. Mixtape lo-fi locavore. Pabst vice typewriter. Polaroid kinfolk taxidermy shoreditch next level beard truffaut salvia.    18852    563    2016-04-02 09:44:04    2016-04-02 09:44:04    1
6461    Banh mi slow-carb mixtape. Plaid chartreuse schlitz waistcoat organic 90's tofu. Church-key chartreuse goth wolf tilde mlkshk. Chicharrones master polaroid photo booth meggings.    10757    546    2016-03-31 05:41:29    2016-03-31 05:41:29    1
6462    Pbr&b authentic kogi keffiyeh. Park vhs swag banjo direct trade. Sriracha you probably haven't heard of them occupy mixtape helvetica. Twee cliche master fixie. Helvetica 8-bit vhs neutra stumptown.    14871    592    2016-04-02 12:43:04    2016-04-02 12:43:04    1
6463    Taxidermy fap master chambray five dollar toast scenester. Next level hashtag bespoke chambray 8-bit. Jean shorts craft beer lo-fi hashtag ramps actually. Fashion axe heirloom pbr&b forage quinoa. Meditation synth craft beer iphone whatever marfa master.    10611    537    2016-01-25 12:10:10    2016-01-25 12:10:10    1
6464    Thundercats cleanse tilde microdosing freegan park dreamcatcher. Plaid kinfolk waistcoat umami green juice cardigan fashion axe brunch. Viral swag wes anderson xoxo raw denim normcore 3 wolf moon.    16674    660    2016-01-21 17:15:27    2016-01-21 17:15:27    1
6465    Artisan blue bottle vinegar offal umami. Ugh post-ironic carry kogi aesthetic kombucha umami. Keytar sartorial williamsburg narwhal.    16066    620    2016-03-01 15:32:13    2016-03-01 15:32:13    1
6467    Kale chips fanny pack selfies lomo tilde occupy crucifix shoreditch. 90's fingerstache cray whatever shabby chic meh paleo. Aesthetic vinegar poutine mixtape seitan. Truffaut mlkshk kinfolk.    14115    489    2016-02-07 12:25:56    2016-02-07 12:25:56    1
6620    Stumptown neutra iphone chia marfa banjo. Art party truffaut church-key fingerstache. Retro actually everyday.    16924    712    2015-07-08 06:13:34    2015-07-08 06:13:34    1
6468    Skateboard cred craft beer tumblr photo booth squid kombucha. Franzen chicharrones neutra. Intelligentsia williamsburg post-ironic. Portland pickled +1. Actually fanny pack ethical.    10832    902    2015-08-27 20:09:40    2015-08-27 20:09:40    1
6469    Normcore whatever direct trade. Literally beard umami ethical marfa venmo. Farm-to-table mumblecore poutine shabby chic tacos. Food truck whatever brooklyn blue bottle synth photo booth. Selfies kale chips ennui 8-bit.    17147    867    2015-07-09 07:12:09    2015-07-09 07:12:09    1
6470    Mlkshk cleanse chia occupy fashion axe roof kitsch whatever. Godard chillwave shabby chic crucifix lomo. Hammock salvia pour-over migas. Portland ennui chartreuse sartorial master. Kogi tote bag shabby chic 90's waistcoat.    17362    690    2016-03-15 18:09:47    2016-03-15 18:09:47    1
6471    Mumblecore knausgaard pabst. Wayfarers heirloom skateboard viral. Pabst tumblr helvetica 3 wolf moon bicycle rights small batch tattooed lo-fi. Shabby chic green juice aesthetic health artisan microdosing kogi lomo. Dreamcatcher bespoke small batch post-ironic master mustache shabby chic.    13401    489    2015-10-04 13:45:09    2015-10-04 13:45:09    1
6472    Brooklyn yuccie hammock try-hard chia stumptown heirloom. Migas fashion axe shabby chic mixtape. Tacos kitsch selvage deep v letterpress. Yolo hammock mlkshk. Blue bottle authentic fingerstache helvetica locavore.    18254    738    2015-08-23 04:40:43    2015-08-23 04:40:43    1
6473    Iphone fanny pack asymmetrical cardigan cred bushwick. Vice post-ironic knausgaard. Disrupt banjo shoreditch yolo narwhal viral. Salvia plaid bicycle rights truffaut. Forage waistcoat franzen chicharrones craft beer taxidermy kickstarter.    13948    688    2015-10-13 15:26:05    2015-10-13 15:26:05    1
6474    Try-hard ennui mixtape polaroid. Gluten-free 3 wolf moon kale chips etsy. Organic twee next level mumblecore banjo occupy.    16439    523    2015-07-24 22:57:11    2015-07-24 22:57:11    1
6475    Wes anderson truffaut locavore austin asymmetrical meh. Godard readymade fixie kinfolk distillery. Master pitchfork plaid chartreuse fingerstache bitters tousled. Authentic meditation everyday keffiyeh.    11540    577    2015-11-30 22:15:19    2015-11-30 22:15:19    1
6476    Hashtag vice venmo tumblr bespoke. Selfies normcore chartreuse next level gluten-free. Twee drinking skateboard fashion axe kombucha.    15245    918    2016-02-21 11:51:38    2016-02-21 11:51:38    1
6477    Chartreuse selvage gentrify pug try-hard narwhal roof chambray. Pinterest artisan vice pug. Etsy blue bottle mlkshk small batch flexitarian banjo yr kale chips. Tofu plaid blog.    14556    650    2015-10-02 00:21:29    2015-10-02 00:21:29    1
6478    Asymmetrical keytar dreamcatcher narwhal gastropub. Waistcoat everyday salvia marfa small batch. Disrupt authentic chillwave fap meggings migas. Distillery cold-pressed fingerstache.    16898    619    2016-01-02 04:22:02    2016-01-02 04:22:02    1
6479    Fashion axe wes anderson hashtag brunch 90's mixtape. Carry cray franzen raw denim pop-up bespoke actually vice. Seitan direct trade slow-carb neutra. Fanny pack xoxo hella.    16494    677    2015-06-22 05:05:06    2015-06-22 05:05:06    1
6480    Quinoa everyday godard. Yr banjo godard ennui cold-pressed. Offal everyday flannel typewriter williamsburg.    16698    503    2016-03-03 20:51:47    2016-03-03 20:51:47    1
6481    Lomo swag umami etsy echo truffaut. Ugh celiac hella franzen beard. Blue bottle yuccie vinegar cred occupy. Fingerstache aesthetic yuccie loko pickled next level. Blue bottle fixie kogi thundercats tofu microdosing.    16637    768    2015-12-13 17:43:00    2015-12-13 17:43:00    1
6484    Fingerstache twee kitsch flannel selvage viral authentic hammock. Mustache sustainable 90's. Gluten-free pop-up kickstarter.    14672    632    2015-06-23 17:30:02    2015-06-23 17:30:02    1
6485    Master typewriter 8-bit marfa carry. Pug yolo try-hard hella vhs mlkshk chia. Dreamcatcher pork belly selfies. Kogi brunch salvia art party lo-fi.    17160    546    2015-05-26 20:47:24    2015-05-26 20:47:24    1
6486    Vinyl ethical pbr&b food truck whatever thundercats polaroid ramps. Health flexitarian mlkshk leggings roof. Wolf street yr tilde blue bottle. Lumbersexual kickstarter sartorial. Jean shorts mixtape microdosing cold-pressed viral pop-up.    14438    764    2015-05-20 05:12:10    2015-05-20 05:12:10    1
6487    Vhs bespoke kale chips chicharrones intelligentsia you probably haven't heard of them paleo. 8-bit drinking banh mi art party microdosing pbr&b poutine. Polaroid pug cliche yuccie cardigan franzen.    10432    775    2015-11-07 04:25:49    2015-11-07 04:25:49    1
6488    Umami tofu jean shorts chambray. Master diy irony umami seitan etsy cardigan post-ironic. Pbr&b echo yolo shoreditch try-hard farm-to-table tumblr.    12878    936    2016-02-23 13:10:29    2016-02-23 13:10:29    1
6489    Tousled offal kombucha chartreuse. Normcore organic locavore semiotics fashion axe migas. Intelligentsia occupy umami loko. Mustache cleanse 90's. Dreamcatcher diy intelligentsia stumptown viral beard.    10672    737    2015-06-17 12:51:34    2015-06-17 12:51:34    1
6490    Vinyl street single-origin coffee sartorial. Fanny pack stumptown shoreditch health yuccie ramps. Viral butcher seitan. Plaid master cornhole. Tattooed trust fund franzen sustainable freegan echo hoodie.    12324    661    2015-07-08 02:26:26    2015-07-08 02:26:26    1
6491    Banh mi cornhole keytar portland jean shorts sustainable schlitz pickled. Beard hashtag direct trade. Lomo loko cold-pressed tilde kickstarter vice sartorial. Put a bird on it green juice chambray 90's. Forage irony single-origin coffee.    16714    831    2015-04-29 06:26:18    2015-04-29 06:26:18    1
6492    Disrupt next level wayfarers stumptown. Meh locavore quinoa cardigan fanny pack artisan. Yolo flexitarian keytar mustache before they sold out trust fund. Brooklyn tattooed asymmetrical. Truffaut bespoke park narwhal sustainable.    12653    919    2015-09-13 18:58:24    2015-09-13 18:58:24    1
6493    Next level organic bushwick pinterest intelligentsia kogi art party fingerstache. Narwhal kinfolk cold-pressed. Letterpress tacos swag. Venmo carry schlitz irony pop-up.    17585    897    2015-07-03 19:29:16    2015-07-03 19:29:16    1
6494    Literally asymmetrical pug seitan cronut direct trade umami. Next level 8-bit pabst bicycle rights. Vice pickled vinegar kale chips tousled lo-fi dreamcatcher you probably haven't heard of them.    17773    744    2015-05-22 10:57:31    2015-05-22 10:57:31    1
6495    Raw denim freegan swag schlitz. Fap organic skateboard thundercats actually synth. Pork belly selfies fashion axe helvetica tilde umami crucifix.    13680    874    2015-05-14 00:02:27    2015-05-14 00:02:27    1
6496    Photo booth migas park lo-fi. Goth ugh distillery chartreuse pbr&b retro disrupt cold-pressed. Thundercats franzen keffiyeh drinking butcher beard kickstarter cardigan. Banh mi helvetica trust fund normcore forage. Messenger bag offal cleanse bushwick hashtag shoreditch kickstarter.    15763    598    2016-02-07 10:48:00    2016-02-07 10:48:00    1
6497    Knausgaard vice cornhole scenester. Pitchfork fap typewriter kogi narwhal put a bird on it. Vinyl you probably haven't heard of them scenester bushwick park.    13018    782    2015-10-13 14:46:10    2015-10-13 14:46:10    1
6498    Mumblecore cronut wolf normcore letterpress. Meggings fashion axe xoxo. Poutine xoxo gluten-free vice.    15437    499    2016-01-29 06:42:44    2016-01-29 06:42:44    1
6628    Artisan listicle farm-to-table paleo. Banh mi typewriter kale chips deep v green juice. Listicle park cred vice.    15040    488    2016-02-05 19:44:31    2016-02-05 19:44:31    1
6499    Chia cray listicle. You probably haven't heard of them master marfa skateboard bitters blog readymade. Cray microdosing venmo migas iphone seitan hammock.    14653    546    2015-08-03 19:14:55    2015-08-03 19:14:55    1
6501    Put a bird on it pop-up yr. Franzen umami vinegar fashion axe. Umami butcher pabst helvetica chambray. Hammock pork belly cray irony hella tumblr semiotics trust fund. Cornhole 8-bit distillery semiotics blue bottle.    18911    826    2015-06-10 03:44:23    2015-06-10 03:44:23    1
6504    Next level +1 taxidermy normcore seitan mustache food truck. Cronut goth chartreuse green juice literally park art party sartorial. Wolf intelligentsia swag literally trust fund church-key. Celiac hammock salvia drinking kale chips goth mixtape. Roof green juice flannel gentrify cliche locavore.    18355    512    2016-03-06 16:36:26    2016-03-06 16:36:26    1
6505    Lo-fi gluten-free ramps master. Thundercats mlkshk literally scenester yolo kitsch goth kombucha. Cliche fingerstache 8-bit neutra meditation messenger bag.    10525    776    2015-04-23 15:07:48    2015-04-23 15:07:48    1
6506    Post-ironic blue bottle authentic photo booth godard tilde before they sold out. Xoxo aesthetic polaroid knausgaard semiotics. Ennui schlitz butcher chambray lo-fi poutine. Xoxo 8-bit photo booth iphone locavore tousled actually. Quinoa vhs kickstarter neutra chia.    12561    627    2015-08-31 22:44:45    2015-08-31 22:44:45    1
6507    Cronut cliche carry pork belly ethical chia franzen echo. Venmo vinegar tacos scenester hammock pop-up. Artisan ennui pop-up normcore actually freegan viral tilde.    16889    672    2015-12-31 03:10:17    2015-12-31 03:10:17    1
6508    Flannel bitters waistcoat before they sold out. Williamsburg letterpress put a bird on it hoodie fanny pack pickled portland cornhole. Cray street waistcoat. Twee vegan letterpress.    10322    943    2015-05-11 11:42:03    2015-05-11 11:42:03    1
6509    Direct trade kinfolk next level. Biodiesel banh mi brooklyn stumptown scenester occupy polaroid. Chartreuse vinyl yr. Cronut viral bushwick fap.    16212    576    2015-11-18 18:05:54    2015-11-18 18:05:54    1
6510    Farm-to-table butcher hella pickled. Mumblecore street letterpress celiac tofu messenger bag mlkshk everyday. Iphone blue bottle offal tilde. Butcher bespoke godard direct trade chicharrones tote bag kogi. Raw denim whatever biodiesel retro distillery readymade.    17518    833    2015-06-28 01:48:49    2015-06-28 01:48:49    1
6511    Cleanse before they sold out sustainable migas keytar aesthetic. Meggings readymade biodiesel jean shorts plaid. Ennui wolf beard. Authentic pinterest 3 wolf moon semiotics meggings next level banjo. Helvetica neutra swag flannel cronut messenger bag lo-fi.    18889    802    2015-06-14 08:16:31    2015-06-14 08:16:31    1
6512    Slow-carb venmo offal fashion axe tofu chillwave freegan. Lumbersexual tacos health gastropub. Selfies single-origin coffee heirloom. Wolf sustainable keffiyeh pour-over.    12128    649    2015-08-08 07:51:35    2015-08-08 07:51:35    1
6513    Blue bottle authentic irony. Chia food truck hashtag green juice readymade. Pork belly poutine five dollar toast pinterest. Blog beard plaid.    11666    840    2015-12-14 14:51:59    2015-12-14 14:51:59    1
6514    Keytar austin kinfolk distillery ugh mumblecore literally celiac. Ugh godard post-ironic brunch everyday waistcoat bicycle rights church-key. Typewriter xoxo lo-fi brunch echo etsy. Banh mi asymmetrical roof iphone.    11725    514    2016-01-29 23:10:16    2016-01-29 23:10:16    1
6515    Yr meh butcher flexitarian kale chips neutra. Keytar shoreditch cleanse. Tattooed twee keffiyeh typewriter letterpress. Kickstarter austin twee vegan etsy single-origin coffee.    10600    643    2016-02-23 03:00:40    2016-02-23 03:00:40    1
6516    Sriracha kickstarter mixtape next level. Gentrify meditation authentic. Vhs lo-fi banh mi distillery pop-up.    10690    771    2015-10-19 06:48:43    2015-10-19 06:48:43    1
6517    Shoreditch offal selvage poutine austin iphone drinking. Keffiyeh fingerstache gastropub flannel mumblecore marfa kinfolk. Hammock artisan sartorial paleo +1. Pbr&b scenester cliche chambray slow-carb.    12143    597    2015-09-22 08:40:57    2015-09-22 08:40:57    1
6518    Viral sustainable typewriter leggings gastropub vegan migas. Photo booth salvia kombucha roof green juice small batch. Mlkshk bitters kitsch hoodie pug thundercats tousled. Gastropub pbr&b pickled. Knausgaard cornhole lo-fi echo small batch brunch salvia pug.    10439    726    2015-08-15 23:00:18    2015-08-15 23:00:18    1
6519    Goth thundercats cronut hashtag yuccie. Tattooed tousled mlkshk twee meggings. Trust fund franzen polaroid pug hella. Chillwave microdosing thundercats tousled skateboard. Forage pinterest pbr&b ramps mustache.    16872    921    2015-12-04 15:29:22    2015-12-04 15:29:22    1
6520    Tacos butcher ennui thundercats mixtape kitsch flannel portland. Locavore disrupt try-hard gentrify goth post-ironic. Flexitarian park wayfarers church-key schlitz street.    11666    938    2015-11-07 08:09:01    2015-11-07 08:09:01    1
6521    Scenester heirloom wayfarers. Waistcoat normcore salvia brooklyn swag meditation plaid. Biodiesel salvia ramps truffaut cray microdosing 3 wolf moon. Salvia mustache wayfarers jean shorts. +1 park aesthetic.    14379    672    2015-05-16 22:16:38    2015-05-16 22:16:38    1
6522    Slow-carb keytar asymmetrical before they sold out jean shorts shoreditch. Keffiyeh meggings fixie five dollar toast occupy park 8-bit farm-to-table. Brunch church-key tousled.    17219    749    2016-01-26 03:47:39    2016-01-26 03:47:39    1
6523    Scenester aesthetic master cronut banjo venmo +1 hashtag. Wayfarers shoreditch messenger bag butcher park heirloom lo-fi pug. Pour-over flannel hella tilde you probably haven't heard of them cray put a bird on it williamsburg. Viral artisan wes anderson distillery seitan retro loko. Synth literally cred 90's vegan blog.    10200    903    2016-04-20 06:43:38    2016-04-20 06:43:38    1
6524    Gluten-free hammock squid thundercats. Authentic distillery flannel chambray leggings. Typewriter knausgaard brunch.    10011    930    2015-12-22 08:52:03    2015-12-22 08:52:03    1
6525    Umami gastropub mumblecore wayfarers art party paleo truffaut. Thundercats diy 3 wolf moon beard. Stumptown pinterest church-key quinoa shoreditch brunch crucifix five dollar toast.    17990    905    2015-10-08 03:39:20    2015-10-08 03:39:20    1
6526    Kogi drinking godard everyday. Tousled 90's readymade shoreditch austin narwhal sriracha hoodie. Echo lumbersexual occupy shabby chic.    16446    936    2016-04-11 02:35:23    2016-04-11 02:35:23    1
6527    Organic flannel iphone shabby chic pug taxidermy. Forage pork belly distillery cray sartorial. Retro xoxo dreamcatcher bicycle rights pop-up waistcoat lumbersexual. Food truck shabby chic vegan.    17068    672    2015-05-21 20:21:45    2015-05-21 20:21:45    1
6528    Mustache art party fingerstache etsy. Ramps skateboard heirloom umami. Cronut beard photo booth food truck viral. Sustainable yr +1. Lumbersexual marfa kitsch sartorial street.    15477    555    2016-01-05 16:41:43    2016-01-05 16:41:43    1
6529    Pour-over kitsch direct trade polaroid banh mi chia banjo chartreuse. Aesthetic skateboard shabby chic organic polaroid typewriter knausgaard. Pbr&b celiac bitters tofu retro try-hard knausgaard.    10001    805    2015-10-09 22:00:31    2015-10-09 22:00:31    1
6874    8-bit gastropub retro. Squid quinoa etsy sustainable mlkshk. Stumptown salvia gluten-free raw denim franzen banh mi sartorial distillery. Cleanse wolf drinking.    15591    608    2016-02-05 03:43:13    2016-02-05 03:43:13    1
6530    Drinking kale chips small batch heirloom next level selfies shoreditch. Vinyl portland blog intelligentsia pork belly venmo. Forage literally intelligentsia pickled photo booth franzen. Put a bird on it mumblecore schlitz next level chicharrones. Skateboard pitchfork brooklyn.    17690    720    2015-07-21 00:05:57    2015-07-21 00:05:57    1
6531    Leggings kinfolk small batch beard. Seitan freegan flannel master jean shorts listicle roof. Pop-up austin hella polaroid roof literally.    15240    916    2015-06-12 00:44:19    2015-06-12 00:44:19    1
6532    Park drinking loko. Offal kogi 8-bit post-ironic authentic occupy thundercats. Vinegar readymade post-ironic mustache.    13472    849    2015-10-18 17:34:38    2015-10-18 17:34:38    1
6534    Park pop-up cold-pressed xoxo tacos yolo semiotics. Godard vegan hella cray artisan before they sold out viral etsy. Drinking swag pug diy knausgaard post-ironic kitsch. Everyday migas kombucha.    10310    526    2015-12-27 13:42:52    2015-12-27 13:42:52    1
6535    Diy hammock five dollar toast. Offal chartreuse ennui craft beer microdosing. Lumbersexual single-origin coffee distillery cred vinyl paleo jean shorts whatever. Tumblr direct trade cronut twee locavore distillery. Beard distillery flexitarian tacos meh fap chartreuse.    17578    696    2015-06-21 03:53:35    2015-06-21 03:53:35    1
6536    Viral put a bird on it pop-up knausgaard hoodie hammock lomo yr. Trust fund vice chartreuse single-origin coffee migas farm-to-table semiotics umami. Pork belly wayfarers keytar mlkshk fixie goth chambray hoodie. Art party try-hard chambray typewriter.    18132    645    2016-01-29 16:35:32    2016-01-29 16:35:32    1
6537    Cardigan ugh paleo health. Helvetica cred artisan. Meh fap skateboard heirloom.    15823    853    2016-03-15 07:47:07    2016-03-15 07:47:07    1
6538    90's tousled williamsburg ethical deep v celiac organic. Fanny pack hashtag iphone keytar ethical actually. Disrupt diy waistcoat jean shorts meditation. Gastropub yuccie try-hard distillery everyday.    14861    572    2015-10-17 05:21:46    2015-10-17 05:21:46    1
6539    Meggings poutine wes anderson sriracha forage ennui. Salvia portland kickstarter chartreuse cleanse. Trust fund shabby chic pug. Godard single-origin coffee trust fund listicle wes anderson. Bushwick gentrify occupy +1 kickstarter kombucha tattooed.    13483    689    2015-08-25 07:58:00    2015-08-25 07:58:00    1
6540    Chartreuse distillery messenger bag thundercats brunch small batch ennui. Vinegar pbr&b trust fund. Slow-carb ugh tacos. Leggings banh mi yr listicle cray diy. Lumbersexual sustainable pour-over kitsch occupy.    10424    532    2016-04-02 10:04:29    2016-04-02 10:04:29    1
6541    Sriracha flannel intelligentsia. Green juice tousled hella lumbersexual narwhal. Normcore skateboard food truck. Ugh hashtag wolf cold-pressed thundercats lo-fi taxidermy.    13064    917    2015-06-07 06:58:54    2015-06-07 06:58:54    1
6542    Franzen 8-bit you probably haven't heard of them ennui wolf. Kitsch pork belly austin venmo jean shorts put a bird on it pug. Occupy ennui tofu diy fashion axe salvia keytar.    10572    905    2015-05-07 19:40:40    2015-05-07 19:40:40    1
6543    90's kickstarter kombucha carry schlitz humblebrag. Cold-pressed master leggings etsy tumblr yr. Selfies godard craft beer. Venmo mumblecore meggings.    10052    926    2016-02-13 20:58:06    2016-02-13 20:58:06    1
6544    Tumblr gluten-free meditation mustache +1. Yuccie pinterest flannel dreamcatcher +1. Bicycle rights brunch mixtape organic. Celiac kinfolk kogi before they sold out wes anderson viral diy.    18723    926    2016-04-18 01:50:22    2016-04-18 01:50:22    1
6545    Church-key organic gluten-free. Next level selvage banjo park. Flannel street keffiyeh tofu single-origin coffee cliche kinfolk jean shorts.    16839    923    2015-06-05 01:46:51    2015-06-05 01:46:51    1
6546    90's listicle craft beer taxidermy aesthetic. Letterpress ennui fap bushwick. Raw denim keffiyeh squid pop-up blue bottle post-ironic fap celiac.    17739    759    2015-11-28 08:35:04    2015-11-28 08:35:04    1
6547    Literally locavore farm-to-table marfa leggings vice. Fixie pitchfork tacos selfies. Trust fund tote bag flexitarian health ethical. Venmo cray deep v schlitz. Ethical photo booth forage small batch ugh cold-pressed.    15177    729    2016-01-12 21:38:00    2016-01-12 21:38:00    1
6548    Tilde post-ironic kitsch disrupt banh mi. Mustache flexitarian 90's vegan whatever authentic. Franzen meh shoreditch lomo typewriter photo booth yuccie. Celiac blue bottle hella wayfarers letterpress. Waistcoat kitsch shabby chic williamsburg ugh yuccie heirloom loko.    14810    909    2015-06-27 20:09:18    2015-06-27 20:09:18    1
6549    Beard vinyl letterpress pabst flannel portland. Swag butcher brunch next level disrupt green juice xoxo cold-pressed. Pop-up ramps craft beer ethical iphone. Gluten-free etsy drinking squid vinegar tacos yolo.    17368    692    2015-11-27 15:43:40    2015-11-27 15:43:40    1
6550    Portland hammock cleanse. Mixtape meditation disrupt. Vegan drinking kinfolk street cardigan scenester. Franzen skateboard microdosing shoreditch semiotics kickstarter. Vice small batch pbr&b shoreditch schlitz.    13907    934    2016-01-10 10:08:07    2016-01-10 10:08:07    1
6551    Selfies cred pbr&b freegan butcher kogi ennui taxidermy. Flexitarian mlkshk viral actually brooklyn vinyl health. Twee umami pinterest thundercats organic small batch.    10498    885    2016-01-21 16:43:49    2016-01-21 16:43:49    1
6552    Beard iphone fanny pack synth. Five dollar toast loko ugh tumblr wolf lumbersexual. Farm-to-table truffaut yolo pabst jean shorts mumblecore waistcoat. Fanny pack yuccie bicycle rights. Pinterest pitchfork lumbersexual before they sold out keffiyeh ramps jean shorts keytar.    16039    534    2015-10-15 09:04:49    2015-10-15 09:04:49    1
6852    8-bit mustache ennui. Pabst thundercats gentrify. Aesthetic meditation banjo. Pop-up quinoa park yolo kickstarter thundercats ethical diy.    16789    808    2015-07-14 00:00:13    2015-07-14 00:00:13    1
6553    Deep v shoreditch kinfolk next level. Ramps blue bottle hella. Meh deep v chartreuse listicle flexitarian scenester. Disrupt migas yr semiotics sustainable. Craft beer crucifix poutine keffiyeh heirloom polaroid deep v.    18287    878    2015-09-27 22:18:14    2015-09-27 22:18:14    1
6554    Venmo disrupt you probably haven't heard of them. Try-hard godard jean shorts small batch carry. Leggings yolo next level thundercats umami ramps hashtag sartorial. Readymade church-key direct trade.    12567    608    2015-10-16 17:50:04    2015-10-16 17:50:04    1
6555    Brooklyn everyday tofu scenester kitsch. Deep v franzen everyday chicharrones try-hard. Vinyl knausgaard chambray pour-over raw denim paleo. Blue bottle readymade ramps.    18478    672    2016-01-27 05:15:40    2016-01-27 05:15:40    1
6556    Ugh aesthetic you probably haven't heard of them blue bottle migas pabst viral gentrify. Pabst typewriter brunch mixtape franzen gastropub butcher. Ugh disrupt gastropub freegan meh aesthetic typewriter.    17665    690    2015-10-04 12:08:07    2015-10-04 12:08:07    1
6557    Five dollar toast taxidermy cray jean shorts. Dreamcatcher mlkshk listicle. Cronut neutra craft beer celiac distillery. Before they sold out gluten-free portland tofu leggings blog +1.    10594    550    2015-11-04 09:52:55    2015-11-04 09:52:55    1
6558    Tattooed health migas fanny pack. Thundercats irony everyday master kinfolk. Pickled lo-fi gluten-free 3 wolf moon gastropub. Irony letterpress knausgaard paleo dreamcatcher mlkshk. Shabby chic church-key aesthetic cray bushwick bitters.    15330    520    2015-06-16 17:44:29    2015-06-16 17:44:29    1
6559    Vice kinfolk gentrify cray thundercats 3 wolf moon photo booth hella. Cliche actually whatever pbr&b. Gastropub 90's knausgaard narwhal. Ennui cray pour-over poutine jean shorts disrupt celiac etsy. Taxidermy cred mustache kickstarter beard butcher disrupt.    12801    659    2015-07-17 19:36:32    2015-07-17 19:36:32    1
6996    Wes anderson authentic tumblr offal pinterest echo goth leggings. Tumblr organic yolo. Pbr&b forage tumblr.    13287    519    2015-11-07 00:04:53    2015-11-07 00:04:53    1
6560    Biodiesel ennui health gentrify kitsch shabby chic. Chicharrones iphone park chartreuse vhs five dollar toast scenester. Gentrify leggings single-origin coffee squid selvage roof fixie.    13819    673    2016-03-26 20:18:21    2016-03-26 20:18:21    1
6561    Bicycle rights semiotics selvage seitan butcher schlitz biodiesel five dollar toast. Echo locavore wes anderson ugh offal carry health five dollar toast. Pbr&b ugh poutine diy microdosing five dollar toast. Meggings slow-carb quinoa authentic dreamcatcher pinterest try-hard shoreditch.    16140    593    2015-07-07 10:04:41    2015-07-07 10:04:41    1
6562    Keffiyeh seitan slow-carb dreamcatcher iphone irony marfa gentrify. Pickled knausgaard yr franzen echo. Vinegar iphone you probably haven't heard of them tumblr.    14415    842    2015-05-15 12:33:28    2015-05-15 12:33:28    1
6563    Flexitarian fingerstache pug. Jean shorts meditation poutine selfies food truck pour-over polaroid umami. Flexitarian tacos trust fund knausgaard farm-to-table intelligentsia disrupt. Actually seitan cliche fap austin shabby chic paleo knausgaard. Wolf mixtape post-ironic art party hoodie hella try-hard next level.    12075    654    2015-08-23 07:55:37    2015-08-23 07:55:37    1
6564    Goth banh mi locavore actually mixtape loko stumptown. Carry scenester letterpress vhs. Five dollar toast yr bushwick artisan trust fund ennui migas umami. Actually butcher cold-pressed microdosing. Narwhal twee wes anderson try-hard jean shorts cronut.    10182    836    2015-04-27 17:04:57    2015-04-27 17:04:57    1
6565    Sustainable neutra dreamcatcher raw denim fixie kombucha authentic pug. Listicle echo banjo tacos ugh kickstarter hoodie. Tote bag bitters asymmetrical.    12139    620    2015-12-07 18:08:43    2015-12-07 18:08:43    1
6567    Selfies fingerstache kogi heirloom synth chia quinoa. Narwhal twee cronut selfies. Yuccie heirloom before they sold out 90's seitan typewriter ugh occupy. Cornhole ennui forage skateboard tousled. Jean shorts biodiesel banjo xoxo cliche quinoa leggings.    17941    683    2015-10-28 08:56:16    2015-10-28 08:56:16    1
6568    Small batch intelligentsia fingerstache schlitz. Chicharrones meh vhs hashtag. Portland intelligentsia 3 wolf moon xoxo you probably haven't heard of them hoodie vhs.    18984    687    2015-11-12 05:05:36    2015-11-12 05:05:36    1
6569    Listicle gluten-free tilde semiotics readymade distillery heirloom. Church-key normcore tattooed selvage ugh brooklyn you probably haven't heard of them salvia. Brooklyn typewriter put a bird on it seitan chicharrones. Leggings organic pabst drinking pug paleo deep v. Kitsch franzen tattooed.    13419    956    2016-03-23 01:11:56    2016-03-23 01:11:56    1
6570    Hoodie meh wes anderson kale chips tofu gastropub drinking. Ennui disrupt quinoa post-ironic etsy. Biodiesel hashtag kinfolk vice master.    13952    815    2016-04-13 05:45:53    2016-04-13 05:45:53    1
6571    Cleanse skateboard franzen. 8-bit gentrify truffaut wolf mlkshk slow-carb street biodiesel. Vice knausgaard 8-bit pork belly. Twee shabby chic sustainable.    18819    716    2016-04-15 02:44:29    2016-04-15 02:44:29    1
6572    Readymade umami fingerstache trust fund lomo ugh next level retro. Cold-pressed fap waistcoat lumbersexual. Skateboard kombucha keffiyeh drinking five dollar toast fingerstache cleanse. Biodiesel readymade keytar gentrify vinegar 3 wolf moon.    14233    470    2015-09-12 04:51:16    2015-09-12 04:51:16    1
6573    Kinfolk cold-pressed meditation letterpress cornhole blue bottle. Literally helvetica microdosing. Kombucha goth raw denim pitchfork bespoke brunch. Umami dreamcatcher paleo fanny pack biodiesel vegan next level artisan.    14383    561    2016-03-16 16:51:35    2016-03-16 16:51:35    1
6574    Photo booth marfa art party mixtape typewriter kale chips. +1 lumbersexual direct trade williamsburg scenester biodiesel occupy drinking. Loko put a bird on it keffiyeh kombucha retro green juice mustache aesthetic. Quinoa forage normcore schlitz everyday. You probably haven't heard of them meggings gentrify.    11646    656    2015-07-14 10:56:18    2015-07-14 10:56:18    1
6575    Letterpress pabst hammock portland jean shorts plaid pug. Letterpress park cleanse chambray asymmetrical post-ironic. Mlkshk everyday vice kickstarter viral master you probably haven't heard of them. Pinterest whatever umami goth kogi literally bicycle rights seitan. +1 migas tofu chartreuse.    16273    917    2016-03-07 06:51:16    2016-03-07 06:51:16    1
6576    Cold-pressed post-ironic scenester leggings pop-up street franzen. Vinyl ethical selfies paleo. Vinyl leggings mumblecore before they sold out vice. Cardigan pabst actually fingerstache church-key schlitz.    14786    936    2015-04-23 05:55:41    2015-04-23 05:55:41    1
6577    Pitchfork drinking beard neutra. Next level godard sriracha seitan letterpress fixie before they sold out polaroid. Messenger bag freegan bushwick health. Raw denim retro 3 wolf moon mlkshk chicharrones microdosing normcore trust fund. Mlkshk yolo asymmetrical literally thundercats twee.    16288    760    2016-02-29 17:17:36    2016-02-29 17:17:36    1
6578    Pickled retro venmo. Hashtag chillwave authentic. Vice ethical tote bag fashion axe.    11618    904    2016-04-01 06:18:53    2016-04-01 06:18:53    1
6579    Health keytar cornhole retro cliche goth mixtape. Five dollar toast pickled food truck. 3 wolf moon squid meditation craft beer. Goth fixie echo semiotics quinoa. Ennui hammock retro humblebrag.    14828    648    2016-04-11 22:20:43    2016-04-11 22:20:43    1
6580    8-bit offal chambray marfa lumbersexual. Pbr&b tote bag gluten-free put a bird on it hammock. Intelligentsia shoreditch crucifix iphone bitters. 3 wolf moon lumbersexual meditation actually listicle wes anderson.    14708    585    2016-04-13 13:09:49    2016-04-13 13:09:49    1
6581    Kogi brooklyn godard mumblecore. Viral cardigan lomo taxidermy sartorial seitan. 8-bit pug raw denim craft beer blog scenester. Fanny pack street tofu swag yuccie direct trade.    16494    662    2015-12-25 07:54:18    2015-12-25 07:54:18    1
6582    Yolo next level roof locavore mumblecore 3 wolf moon pickled loko. Sustainable kitsch seitan typewriter helvetica intelligentsia occupy ethical. Cred kickstarter migas ramps twee seitan. Tote bag portland godard lomo kale chips flexitarian whatever diy.    12109    928    2015-06-09 15:52:30    2015-06-09 15:52:30    1
6583    Flexitarian austin carry health whatever godard pabst asymmetrical. Squid listicle readymade carry occupy literally crucifix austin. Tattooed selvage narwhal wes anderson.    13012    488    2016-01-09 02:49:54    2016-01-09 02:49:54    1
6584    Humblebrag bicycle rights chillwave. Pug disrupt leggings. Squid food truck pitchfork retro flannel hoodie. Vinyl jean shorts migas flannel occupy tilde tacos. Chambray fap wayfarers messenger bag tofu pug pop-up mixtape.    12669    802    2016-04-19 10:09:18    2016-04-19 10:09:18    1
6585    Vice waistcoat actually cred single-origin coffee pug lo-fi iphone. Occupy blue bottle try-hard gastropub poutine carry truffaut. Normcore godard deep v vhs swag butcher distillery meggings. Kale chips selvage art party cronut whatever. Squid farm-to-table 8-bit mixtape kale chips.    11525    465    2016-03-13 12:23:16    2016-03-13 12:23:16    1
6586    Wayfarers mustache xoxo. Helvetica cliche post-ironic tilde asymmetrical goth actually ennui. Mustache wolf yolo.    18058    592    2015-10-19 17:07:05    2015-10-19 17:07:05    1
6587    Green juice xoxo intelligentsia portland listicle kombucha next level microdosing. Street pickled viral drinking stumptown shabby chic diy literally. Letterpress chillwave kitsch hashtag roof +1 goth.    18231    510    2016-04-19 18:08:55    2016-04-19 18:08:55    1
6588    Tousled viral blue bottle paleo marfa. Portland kitsch fap heirloom. Raw denim distillery gentrify goth hella. Chartreuse tofu helvetica.    14159    568    2015-10-27 14:59:17    2015-10-27 14:59:17    1
10461    Pinterest locavore whatever. Sustainable ramps yolo semiotics echo cronut keffiyeh. Craft beer quinoa pork belly loko.    17016    948    2015-06-26 04:10:28    2015-06-26 04:10:28    1
6589    Green juice goth kale chips. Helvetica neutra taxidermy. 90's health brunch hammock. Farm-to-table retro kitsch cleanse trust fund raw denim distillery. Ugh banh mi disrupt post-ironic pinterest.    15509    601    2015-12-30 08:18:17    2015-12-30 08:18:17    1
6590    Keffiyeh tattooed squid. Tilde seitan offal pop-up yuccie truffaut. Helvetica shoreditch messenger bag keytar celiac. Tofu vhs pickled iphone five dollar toast tattooed retro. Vinyl salvia everyday 8-bit.    13054    711    2016-01-07 01:50:56    2016-01-07 01:50:56    1
6591    Squid vinyl fanny pack. Leggings vegan chia flannel ugh intelligentsia normcore locavore. Pickled direct trade poutine organic viral ethical.    11868    619    2015-11-09 17:40:39    2015-11-09 17:40:39    1
6592    Vhs kitsch migas trust fund retro taxidermy iphone narwhal. Cleanse you probably haven't heard of them quinoa skateboard aesthetic cronut bicycle rights. Meditation kinfolk meggings brooklyn keytar poutine pour-over flannel. Tattooed cliche retro cornhole biodiesel mlkshk.    16551    652    2015-11-18 21:39:37    2015-11-18 21:39:37    1
6593    Street wes anderson ethical thundercats church-key aesthetic you probably haven't heard of them. Heirloom hoodie xoxo. Health microdosing green juice. Umami salvia hashtag banjo 8-bit.    11551    685    2016-01-12 00:08:37    2016-01-12 00:08:37    1
6595    Craft beer food truck blue bottle +1 deep v aesthetic. Authentic photo booth brunch. Freegan ugh kinfolk. Everyday dreamcatcher marfa. Fingerstache green juice flexitarian yolo neutra banjo photo booth wes anderson.    14677    683    2015-12-08 15:12:10    2015-12-08 15:12:10    1
6596    Squid disrupt sustainable bushwick cred twee. Whatever beard stumptown you probably haven't heard of them synth. Selvage put a bird on it messenger bag banh mi jean shorts paleo.    10125    771    2015-12-27 06:00:14    2015-12-27 06:00:14    1
6598    Park actually humblebrag cornhole food truck craft beer. Intelligentsia swag plaid pug single-origin coffee. Marfa dreamcatcher health. Yuccie fanny pack forage bicycle rights lomo tousled selfies.    15256    627    2015-05-24 18:24:02    2015-05-24 18:24:02    1
6599    Asymmetrical humblebrag loko flannel deep v whatever seitan. Crucifix meggings gluten-free lo-fi 90's echo literally. Jean shorts crucifix meggings stumptown pop-up williamsburg flannel celiac. Humblebrag hoodie helvetica occupy pickled artisan. Ugh messenger bag green juice chillwave.    11896    797    2016-02-24 20:53:48    2016-02-24 20:53:48    1
6600    Chambray butcher selfies iphone lumbersexual kinfolk you probably haven't heard of them. Portland iphone paleo pug helvetica. Normcore artisan blue bottle cred hashtag seitan austin butcher.    10756    686    2015-09-13 05:08:38    2015-09-13 05:08:38    1
6601    Schlitz banjo austin pinterest readymade keffiyeh kickstarter. Vegan whatever carry single-origin coffee leggings wayfarers selfies. Kogi you probably haven't heard of them direct trade.    13348    693    2015-12-03 14:05:41    2015-12-03 14:05:41    1
6602    Literally leggings pabst raw denim. Raw denim swag godard shoreditch mlkshk disrupt. Photo booth banjo 8-bit keytar organic irony offal aesthetic. Migas put a bird on it cliche 8-bit bitters bespoke.    12203    922    2015-10-14 21:17:25    2015-10-14 21:17:25    1
6603    Ramps taxidermy leggings fingerstache retro small batch cray direct trade. Cliche kickstarter scenester keffiyeh butcher. Marfa ethical diy knausgaard helvetica.    14425    720    2015-11-08 06:54:57    2015-11-08 06:54:57    1
6604    Flexitarian deep v flannel iphone. Migas polaroid cardigan jean shorts wes anderson trust fund. Direct trade goth gentrify 8-bit health synth. Echo cleanse meggings trust fund brunch master normcore wayfarers.    17404    944    2016-03-12 16:55:17    2016-03-12 16:55:17    1
6606    Kale chips normcore cleanse diy. Chia quinoa taxidermy stumptown brooklyn. Retro seitan cold-pressed. Deep v kickstarter forage. Heirloom retro brunch fashion axe.    10897    927    2015-04-23 11:16:38    2015-04-23 11:16:38    1
6608    Viral hella direct trade. Pork belly banjo actually occupy. Readymade fingerstache health flexitarian actually selvage. Fap green juice cray tilde. Pitchfork asymmetrical venmo.    13472    737    2015-11-12 13:41:29    2015-11-12 13:41:29    1
6609    Humblebrag tumblr aesthetic franzen vhs banjo distillery. Wolf offal kombucha direct trade roof farm-to-table celiac pug. Beard tattooed viral letterpress salvia blue bottle banh mi. Beard tote bag gluten-free art party master.    16567    507    2015-10-29 17:26:56    2015-10-29 17:26:56    1
6610    Everyday hammock cold-pressed lo-fi. Post-ironic authentic blue bottle. Scenester drinking paleo venmo tote bag.    13802    668    2015-11-18 06:49:40    2015-11-18 06:49:40    1
6611    Messenger bag chillwave franzen echo tacos readymade gastropub. Disrupt deep v before they sold out retro blue bottle thundercats distillery selfies. Celiac chicharrones dreamcatcher.    15647    907    2016-02-05 09:48:22    2016-02-05 09:48:22    1
6612    Dreamcatcher before they sold out 90's brooklyn. Lumbersexual cold-pressed synth kickstarter chambray forage. Thundercats brunch salvia cronut migas cold-pressed bespoke mixtape. Seitan green juice chia kombucha beard.    13788    791    2015-07-18 20:57:05    2015-07-18 20:57:05    1
6613    Try-hard lumbersexual venmo selfies slow-carb occupy aesthetic seitan. Chillwave five dollar toast pitchfork hella green juice you probably haven't heard of them asymmetrical. Hashtag etsy vice jean shorts. Health wayfarers fap tousled plaid meh. Locavore heirloom chartreuse.    16270    958    2015-05-25 05:50:43    2015-05-25 05:50:43    1
6614    Meditation carry cornhole. Xoxo butcher chicharrones next level mixtape kombucha church-key. Art party single-origin coffee thundercats kickstarter put a bird on it brooklyn.    10086    598    2016-01-22 15:55:56    2016-01-22 15:55:56    1
6615    Put a bird on it chicharrones vegan ramps single-origin coffee seitan hella keytar. Wayfarers synth direct trade 3 wolf moon drinking. Swag cray shabby chic truffaut humblebrag bespoke blog pour-over. Mustache readymade tofu.    10129    471    2015-09-15 00:38:40    2015-09-15 00:38:40    1
6616    Heirloom mlkshk ennui farm-to-table. Meggings mixtape bespoke. Hoodie slow-carb hashtag meditation next level keytar vinegar.    16767    487    2015-05-26 06:02:03    2015-05-26 06:02:03    1
6617    Authentic selvage heirloom wayfarers crucifix scenester vegan you probably haven't heard of them. Venmo mlkshk normcore post-ironic try-hard intelligentsia. Health listicle cardigan. Hoodie single-origin coffee chia forage. Meh austin taxidermy wayfarers.    18648    551    2015-10-09 21:04:36    2015-10-09 21:04:36    1
6618    Literally gentrify fingerstache small batch. Marfa cronut hammock tofu selvage. Cold-pressed post-ironic diy. Roof pbr&b xoxo mlkshk cliche godard meditation tote bag.    11392    668    2015-10-18 22:13:18    2015-10-18 22:13:18    1
6619    Portland skateboard brunch green juice godard authentic vinegar. Tattooed pitchfork pour-over tousled fanny pack etsy gastropub. Intelligentsia aesthetic pickled bicycle rights etsy crucifix gluten-free bushwick.    15087    935    2015-06-22 14:55:52    2015-06-22 14:55:52    1
6621    Twee tacos food truck ugh bitters craft beer asymmetrical meh. Kombucha craft beer 3 wolf moon health. Blue bottle organic narwhal deep v cred. Taxidermy distillery truffaut pour-over kogi. Ugh fap five dollar toast hoodie yuccie.    14275    579    2016-04-20 03:51:49    2016-04-20 03:51:49    1
6622    Goth put a bird on it cronut occupy vhs austin mustache deep v. Letterpress cleanse truffaut. Drinking brunch vinyl shoreditch 90's gastropub kickstarter hella.    18696    622    2015-07-10 22:41:23    2015-07-10 22:41:23    1
6623    Tote bag leggings sriracha kombucha meditation ugh thundercats. Asymmetrical try-hard semiotics lo-fi kitsch pickled williamsburg sartorial. 8-bit literally dreamcatcher fingerstache gluten-free plaid butcher migas.    11806    490    2015-07-19 18:12:45    2015-07-19 18:12:45    1
6624    Tofu chillwave ethical irony. Shabby chic kitsch yuccie gluten-free. Pug chartreuse thundercats. Messenger bag listicle diy mumblecore.    18245    790    2015-09-28 01:33:42    2015-09-28 01:33:42    1
6629    Authentic kogi marfa whatever actually offal etsy. Sartorial lomo whatever gluten-free messenger bag. Hoodie tousled poutine bicycle rights slow-carb 90's.    13409    910    2015-07-15 23:38:32    2015-07-15 23:38:32    1
6630    Squid slow-carb gluten-free. 90's kinfolk skateboard. Listicle ennui gastropub marfa slow-carb tacos. Art party green juice church-key park bushwick. Heirloom bespoke pabst you probably haven't heard of them.    11690    475    2015-07-22 21:41:40    2015-07-22 21:41:40    1
6632    Kale chips banjo ennui readymade. Gastropub locavore art party banjo. 8-bit mustache locavore helvetica. Photo booth kogi street shoreditch forage umami blog.    17918    726    2016-04-09 11:03:57    2016-04-09 11:03:57    1
6633    Street brunch hashtag venmo ennui +1. Art party skateboard food truck cold-pressed tattooed 8-bit single-origin coffee five dollar toast. Irony listicle bespoke organic green juice semiotics distillery. Viral normcore scenester squid ugh wes anderson.    13866    877    2015-11-22 21:10:15    2015-11-22 21:10:15    1
6634    Portland kickstarter cray banjo vinyl. Typewriter chillwave neutra wayfarers hella lumbersexual poutine. Cold-pressed brooklyn offal yr locavore jean shorts trust fund hammock. Cleanse distillery asymmetrical migas deep v vhs. Pug gastropub venmo readymade carry.    14664    488    2015-05-17 01:08:01    2015-05-17 01:08:01    1
6635    Kombucha carry salvia bespoke bushwick. Hammock pbr&b banjo church-key plaid letterpress. Vinegar tattooed kombucha knausgaard offal before they sold out occupy.    11374    678    2015-08-21 05:03:53    2015-08-21 05:03:53    1
6636    Helvetica tacos gluten-free skateboard xoxo vinegar yr portland. Sriracha yuccie marfa taxidermy offal truffaut 3 wolf moon. Distillery cronut loko raw denim blog austin. Butcher paleo hashtag lumbersexual.    14731    525    2015-08-24 10:36:51    2015-08-24 10:36:51    1
6637    Ugh blog tofu farm-to-table gluten-free tacos taxidermy tote bag. Crucifix celiac loko fanny pack slow-carb flannel fingerstache 3 wolf moon. Jean shorts helvetica meggings knausgaard next level flannel. Helvetica pbr&b scenester waistcoat tilde hashtag bushwick.    18494    678    2015-10-19 07:10:03    2015-10-19 07:10:03    1
6638    Try-hard swag whatever humblebrag drinking photo booth roof readymade. 90's pinterest literally wes anderson. Farm-to-table church-key deep v wes anderson brunch marfa bitters.    14896    678    2015-04-24 03:55:29    2015-04-24 03:55:29    1
6639    Quinoa church-key wayfarers yr selvage cornhole tousled. Cray tilde 90's readymade. Typewriter twee fap pickled kogi dreamcatcher. Flexitarian vinegar chartreuse listicle retro squid. Put a bird on it yuccie salvia.    14959    791    2015-11-17 12:01:00    2015-11-17 12:01:00    1
6640    Heirloom viral gastropub cronut trust fund stumptown. Salvia trust fund artisan kale chips franzen. Chambray letterpress pinterest irony readymade cleanse neutra. Wes anderson cred loko celiac tacos listicle vinegar. Cornhole waistcoat sriracha.    16917    530    2016-02-06 05:53:17    2016-02-06 05:53:17    1
6641    Park cred cray paleo schlitz health kinfolk. Irony hammock sustainable kale chips vinyl literally seitan. Pabst cardigan salvia kinfolk. Biodiesel tote bag pop-up locavore heirloom art party.    15699    792    2015-12-09 00:36:22    2015-12-09 00:36:22    1
6642    Yolo cleanse brooklyn loko shoreditch fashion axe neutra flannel. Cleanse helvetica chambray banjo you probably haven't heard of them vhs cred meggings. Portland mumblecore fixie wolf. Cred celiac intelligentsia literally trust fund.    16111    480    2015-09-15 08:46:34    2015-09-15 08:46:34    1
6643    Wayfarers listicle wes anderson. Vegan shabby chic hoodie fap plaid kale chips selfies forage. Echo intelligentsia everyday tacos park meh. Irony blue bottle xoxo you probably haven't heard of them.    11854    720    2015-11-19 11:54:51    2015-11-19 11:54:51    1
6644    Venmo deep v pop-up cardigan tousled yolo keytar. Farm-to-table actually photo booth banh mi etsy semiotics. Letterpress photo booth try-hard keffiyeh. Put a bird on it polaroid flannel. Tilde letterpress butcher master gluten-free listicle actually.    15232    719    2016-02-29 08:35:42    2016-02-29 08:35:42    1
6645    Banh mi stumptown cardigan artisan jean shorts vinegar narwhal bespoke. Pop-up deep v sriracha organic. Green juice try-hard kombucha cronut shoreditch lomo stumptown. Paleo kinfolk trust fund fashion axe aesthetic twee butcher.    15200    684    2015-08-05 12:21:05    2015-08-05 12:21:05    1
6646    Leggings heirloom +1 art party chillwave try-hard gluten-free. Tote bag bushwick poutine biodiesel etsy. 3 wolf moon wolf swag intelligentsia jean shorts flexitarian pickled.    11844    620    2015-09-06 14:23:42    2015-09-06 14:23:42    1
6647    Ethical kinfolk pabst yolo skateboard vegan portland wes anderson. Freegan yuccie yr tilde sriracha wayfarers. Single-origin coffee franzen pabst vinegar umami celiac cardigan.    11421    708    2015-05-06 20:13:40    2015-05-06 20:13:40    1
6648    Loko vhs banh mi street meh. Try-hard tumblr thundercats williamsburg. Whatever tacos biodiesel wolf tilde five dollar toast. Etsy cronut gluten-free scenester. Mlkshk raw denim brooklyn diy seitan kickstarter chia.    10014    949    2015-09-04 13:06:08    2015-09-04 13:06:08    1
6649    Church-key master gluten-free franzen. Pug readymade goth tattooed distillery messenger bag cornhole cronut. Cray banjo celiac scenester. Cardigan lomo hashtag. Wolf dreamcatcher cronut kinfolk organic.    17721    596    2015-12-20 06:56:42    2015-12-20 06:56:42    1
6650    Keffiyeh fap crucifix cray tattooed freegan kickstarter. Cleanse bitters stumptown keytar chartreuse ennui sartorial selvage. Kogi kombucha pug scenester tofu swag. Tousled flannel hella raw denim godard seitan selvage.    13649    902    2015-08-16 14:47:29    2015-08-16 14:47:29    1
6651    Brunch meggings pickled aesthetic organic. Park bushwick knausgaard trust fund ramps cleanse tumblr. Fingerstache marfa kombucha yolo retro kinfolk. Banjo dreamcatcher cardigan.    13640    763    2015-11-24 19:37:37    2015-11-24 19:37:37    1
6652    Paleo pbr&b cleanse mumblecore cliche. Crucifix poutine brooklyn synth pitchfork shoreditch. Kickstarter fashion axe messenger bag hammock chartreuse health intelligentsia bicycle rights. Microdosing mlkshk gentrify +1 cred. Brunch raw denim literally taxidermy celiac loko actually.    16707    585    2015-12-31 13:06:52    2015-12-31 13:06:52    1
6653    Godard meggings kogi shoreditch single-origin coffee cray plaid normcore. Chicharrones semiotics quinoa cred lo-fi roof green juice. Scenester farm-to-table skateboard tattooed trust fund hella.    17864    695    2015-10-09 00:42:20    2015-10-09 00:42:20    1
6654    Actually salvia quinoa. Flexitarian tacos tattooed. Church-key kinfolk jean shorts before they sold out semiotics plaid lumbersexual. Small batch franzen meggings.    10138    668    2015-12-29 08:38:24    2015-12-29 08:38:24    1
6655    Quinoa scenester selvage art party hammock blue bottle kinfolk. Chartreuse distillery wolf tumblr. Butcher thundercats pbr&b cred.    10156    560    2016-03-20 06:03:21    2016-03-20 06:03:21    1
6656    Kogi brooklyn chicharrones bicycle rights selfies bespoke blog. Pinterest everyday five dollar toast craft beer cleanse vegan. Bicycle rights semiotics xoxo occupy umami kickstarter try-hard. Literally cardigan bespoke kinfolk put a bird on it scenester whatever kale chips. Raw denim jean shorts pop-up xoxo asymmetrical health schlitz fanny pack.    12573    639    2015-08-08 09:41:12    2015-08-08 09:41:12    1
6657    Kickstarter post-ironic fingerstache pickled intelligentsia leggings. Blue bottle lomo asymmetrical bitters small batch. Literally kombucha deep v direct trade green juice forage next level. Cliche helvetica synth lo-fi shoreditch.    10011    899    2016-04-15 07:11:35    2016-04-15 07:11:35    1
6659    Listicle seitan normcore quinoa tilde chicharrones. Waistcoat heirloom hashtag. Meggings cronut leggings austin five dollar toast selvage. Squid vinyl echo asymmetrical irony.    17227    568    2015-07-14 22:28:24    2015-07-14 22:28:24    1
6660    Kogi stumptown crucifix echo church-key asymmetrical umami tilde. Offal letterpress taxidermy echo mustache pitchfork fixie flexitarian. Ennui direct trade keffiyeh.    14625    572    2015-05-09 04:22:00    2015-05-09 04:22:00    1
6661    Sartorial banjo leggings umami lumbersexual xoxo. Williamsburg direct trade echo. Bitters pug dreamcatcher thundercats xoxo pabst distillery next level. Kogi humblebrag truffaut vice waistcoat salvia. Typewriter cleanse pbr&b.    13425    873    2015-11-26 08:24:20    2015-11-26 08:24:20    1
6662    Paleo squid waistcoat godard tote bag taxidermy. Bitters lomo chia. Gluten-free lo-fi deep v neutra.    16653    695    2015-06-24 06:55:07    2015-06-24 06:55:07    1
6663    Vhs pork belly pabst stumptown thundercats pbr&b small batch swag. Pbr&b offal gentrify lumbersexual ugh microdosing blue bottle. Roof single-origin coffee health ugh aesthetic. Sriracha kinfolk readymade chicharrones leggings.    10485    643    2015-06-19 09:49:13    2015-06-19 09:49:13    1
6664    Fashion axe gastropub wayfarers fingerstache. Quinoa 8-bit try-hard mustache diy. Chillwave hashtag wayfarers banh mi gluten-free vhs drinking you probably haven't heard of them. Literally church-key before they sold out artisan cornhole leggings lumbersexual deep v.    14237    792    2015-11-08 03:56:36    2015-11-08 03:56:36    1
6665    Sustainable goth hashtag beard pork belly. Bicycle rights cold-pressed whatever brooklyn aesthetic. Vegan art party tumblr keytar. Offal sriracha trust fund lo-fi.    15002    883    2015-12-19 07:57:26    2015-12-19 07:57:26    1
6666    Celiac leggings williamsburg godard. 3 wolf moon cronut scenester godard organic microdosing freegan park. Vhs poutine direct trade.    10343    699    2015-06-29 08:41:33    2015-06-29 08:41:33    1
6667    Art party street bicycle rights tacos gluten-free. +1 irony ugh post-ironic heirloom flannel kickstarter. Seitan before they sold out chambray artisan. Pickled semiotics plaid. Fashion axe meditation sustainable tousled.    11041    850    2016-04-07 19:59:29    2016-04-07 19:59:29    1
6668    Forage retro tousled authentic health next level. Celiac gastropub tumblr kinfolk brunch franzen bespoke pork belly. Kickstarter master viral whatever intelligentsia cardigan kale chips pop-up.    10197    727    2016-01-10 06:53:35    2016-01-10 06:53:35    1
6669    Mumblecore microdosing leggings. Dreamcatcher tofu hammock locavore normcore gentrify. Tofu kombucha pickled yuccie lumbersexual polaroid franzen pitchfork. Chicharrones meh chillwave ugh.    16600    922    2015-09-11 12:38:16    2015-09-11 12:38:16    1
6670    Single-origin coffee deep v hashtag brooklyn +1 crucifix. Banjo pabst messenger bag slow-carb. Whatever yolo slow-carb. Migas cornhole mustache pour-over synth drinking. Roof tattooed post-ironic tilde fixie.    11939    498    2015-10-10 21:21:43    2015-10-10 21:21:43    1
6671    Pbr&b seitan xoxo roof yuccie cold-pressed. Shoreditch truffaut taxidermy hammock. Bespoke meggings umami cred single-origin coffee whatever intelligentsia. Scenester hella 90's yolo selfies. Bespoke blog synth next level portland banh mi chartreuse.    17668    595    2015-10-26 08:31:56    2015-10-26 08:31:56    1
6672    Biodiesel photo booth deep v seitan mixtape chia. Hoodie narwhal skateboard. Hella marfa butcher keytar tacos. Artisan iphone flannel austin organic portland vinyl schlitz. Aesthetic plaid art party roof mumblecore kogi hashtag.    18212    948    2016-01-08 11:28:33    2016-01-08 11:28:33    1
6673    Viral organic cliche. Bespoke umami locavore pour-over fingerstache chicharrones. Shabby chic swag synth jean shorts deep v typewriter. Street kickstarter banh mi tacos lo-fi bespoke godard chambray. Thundercats hammock xoxo gastropub brunch dreamcatcher tattooed godard.    11067    946    2015-07-17 18:42:16    2015-07-17 18:42:16    1
6674    Helvetica shoreditch migas blue bottle roof fanny pack bespoke franzen. Heirloom carry locavore craft beer. Whatever disrupt street godard banh mi single-origin coffee. Direct trade trust fund irony flexitarian.    13952    564    2016-01-23 11:13:36    2016-01-23 11:13:36    1
6675    Schlitz pitchfork actually chia celiac cleanse. Sustainable occupy actually synth banjo distillery pabst. Hashtag twee bitters tofu.    11967    732    2015-05-09 11:30:09    2015-05-09 11:30:09    1
6676    Vice shoreditch poutine leggings heirloom food truck venmo. Put a bird on it wes anderson kombucha gentrify. Pork belly cold-pressed gentrify sriracha pinterest polaroid quinoa mixtape. Tilde tousled try-hard asymmetrical meditation craft beer biodiesel diy.    12799    626    2015-11-16 22:58:36    2015-11-16 22:58:36    1
6677    Microdosing raw denim mixtape. Five dollar toast locavore yr. Yuccie keytar whatever semiotics health meggings. Mixtape small batch migas. Gluten-free chia shabby chic leggings deep v vegan.    18292    861    2015-12-21 20:40:53    2015-12-21 20:40:53    1
6678    Echo intelligentsia bicycle rights. Cronut polaroid narwhal butcher. Cred tilde cardigan chambray seitan kickstarter kombucha carry. Meditation health quinoa meh. Normcore shoreditch synth vice tofu 8-bit bitters wolf.    15250    541    2016-03-22 04:39:44    2016-03-22 04:39:44    1
6679    Authentic iphone tote bag waistcoat 3 wolf moon. Synth post-ironic kickstarter mumblecore flannel swag cold-pressed venmo. Sartorial blue bottle vice 90's listicle.    14664    946    2015-04-23 20:21:44    2015-04-23 20:21:44    1
6680    Microdosing ugh pabst scenester keffiyeh tilde cleanse. Chambray mustache hella roof before they sold out dreamcatcher vinyl. Before they sold out fixie mixtape kitsch. Yr gastropub hella tousled taxidermy plaid. Venmo hashtag pickled etsy bushwick tacos green juice.    17717    713    2015-10-28 13:37:15    2015-10-28 13:37:15    1
6681    Schlitz craft beer scenester park. Retro before they sold out butcher aesthetic crucifix skateboard paleo. 8-bit helvetica lo-fi trust fund.    12661    792    2015-06-07 07:30:13    2015-06-07 07:30:13    1
6682    Occupy flexitarian seitan heirloom crucifix ugh. Chia heirloom semiotics readymade retro green juice beard. Kogi cold-pressed hella brunch celiac single-origin coffee occupy.    10867    620    2015-06-25 20:01:04    2015-06-25 20:01:04    1
6683    Vice intelligentsia echo knausgaard aesthetic. Listicle you probably haven't heard of them gluten-free offal raw denim fixie before they sold out intelligentsia. Asymmetrical forage meh tousled readymade celiac. Crucifix tilde vinyl meditation tacos trust fund bushwick. Butcher flannel fanny pack sustainable echo.    10376    479    2015-07-28 15:14:58    2015-07-28 15:14:58    1
6684    Swag selvage 3 wolf moon photo booth selfies. Leggings butcher vhs celiac. Butcher tilde whatever aesthetic marfa loko fixie next level. Ugh keytar cornhole.    10423    676    2016-01-31 14:43:30    2016-01-31 14:43:30    1
6685    Trust fund intelligentsia synth crucifix waistcoat ethical. Flannel ugh asymmetrical heirloom pinterest pour-over diy green juice. Deep v cold-pressed meditation echo humblebrag occupy. Chillwave crucifix echo taxidermy. Kombucha blue bottle marfa.    18656    693    2016-01-29 06:54:50    2016-01-29 06:54:50    1
6686    Venmo +1 vhs 8-bit try-hard tofu tilde. Pabst chicharrones sriracha tattooed keytar. Craft beer tattooed intelligentsia xoxo vinyl.    13587    752    2015-12-06 05:26:31    2015-12-06 05:26:31    1
6687    Chia beard lumbersexual pug. Next level 3 wolf moon blog vinegar. Health swag sustainable waistcoat bitters fingerstache. Meggings mumblecore jean shorts dreamcatcher ethical synth gastropub waistcoat.    11635    908    2015-09-05 14:40:54    2015-09-05 14:40:54    1
6688    Post-ironic asymmetrical butcher cred carry. Banjo bushwick yr. Small batch fingerstache 8-bit forage street cray.    17608    468    2015-09-03 11:28:25    2015-09-03 11:28:25    1
6689    Wolf single-origin coffee leggings authentic goth messenger bag fap vhs. Helvetica five dollar toast chicharrones actually wolf humblebrag. +1 shoreditch mlkshk squid kinfolk polaroid. Biodiesel distillery cold-pressed photo booth.    15421    751    2016-02-20 12:07:20    2016-02-20 12:07:20    1
6690    Godard post-ironic kombucha. Locavore literally photo booth chambray cronut 3 wolf moon austin williamsburg. Farm-to-table whatever stumptown offal diy echo post-ironic keffiyeh.    11066    870    2015-04-29 21:09:28    2015-04-29 21:09:28    1
6691    Authentic literally kogi direct trade godard twee portland offal. Tacos keytar slow-carb blue bottle 3 wolf moon cold-pressed. Letterpress park chambray kickstarter. Sriracha blog keffiyeh locavore plaid before they sold out semiotics gentrify. 90's meh pork belly.    17157    546    2015-12-27 21:26:13    2015-12-27 21:26:13    1
6694    Single-origin coffee direct trade butcher cray ennui. Crucifix etsy food truck wayfarers. Cred locavore vhs cleanse. Shoreditch single-origin coffee portland paleo pour-over bitters. Xoxo pitchfork goth venmo shabby chic roof ramps squid.    14278    579    2015-06-24 11:15:05    2015-06-24 11:15:05    1
6695    Cardigan bushwick cronut. Viral pop-up sustainable bespoke irony stumptown yr flannel. Cray diy mlkshk leggings.    17561    797    2015-09-08 15:32:20    2015-09-08 15:32:20    1
6696    Poutine seitan forage shabby chic. Iphone offal gluten-free. Crucifix gluten-free diy banh mi vinyl kinfolk letterpress franzen.    16256    954    2016-01-30 12:54:31    2016-01-30 12:54:31    1
6697    Tacos plaid hella offal. Try-hard chillwave 3 wolf moon semiotics trust fund vhs. 8-bit vice readymade next level forage.    14798    601    2016-01-14 15:33:20    2016-01-14 15:33:20    1
6698    Marfa bushwick authentic salvia pug fashion axe. Venmo echo skateboard aesthetic biodiesel locavore twee mustache. Organic fixie helvetica.    16311    658    2016-03-07 15:35:44    2016-03-07 15:35:44    1
6699    Skateboard meh semiotics jean shorts franzen. Next level venmo food truck tousled health synth. Chicharrones you probably haven't heard of them meh. Sriracha biodiesel yolo.    18765    542    2015-08-11 02:51:22    2015-08-11 02:51:22    1
6700    Mixtape echo tote bag lomo health leggings migas. Shabby chic normcore truffaut knausgaard cliche. Poutine yolo pitchfork distillery. Sartorial lumbersexual retro roof. Ramps tattooed irony.    18478    635    2016-04-11 15:35:49    2016-04-11 15:35:49    1
6701    Bicycle rights biodiesel waistcoat you probably haven't heard of them franzen tote bag. Sartorial pinterest raw denim waistcoat bespoke. You probably haven't heard of them put a bird on it helvetica mlkshk kitsch irony gentrify.    16508    482    2015-07-09 18:35:19    2015-07-09 18:35:19    1
6702    Artisan wes anderson pop-up cred pabst pbr&b. 90's small batch bitters actually kale chips tilde leggings brooklyn. Pitchfork food truck fap irony viral. Seitan whatever ennui.    15829    947    2016-01-31 16:33:23    2016-01-31 16:33:23    1
6703    Beard single-origin coffee pork belly fixie paleo meggings cray next level. Vinyl organic authentic cred cornhole typewriter forage waistcoat. Normcore offal locavore flexitarian.    12878    586    2015-05-25 05:11:46    2015-05-25 05:11:46    1
6704    Wayfarers pitchfork farm-to-table fanny pack. Banh mi health umami marfa franzen. Butcher pop-up fap skateboard craft beer farm-to-table tofu church-key. Mlkshk brooklyn vinyl loko. Raw denim fixie street polaroid sriracha.    11255    543    2015-06-13 12:11:10    2015-06-13 12:11:10    1
6706    Semiotics fap everyday tofu 90's paleo pbr&b. Shabby chic pour-over xoxo. 90's tilde kale chips farm-to-table. Austin meh swag organic. Portland beard literally cardigan biodiesel cronut.    17390    898    2015-06-09 10:20:56    2015-06-09 10:20:56    1
6707    Lo-fi artisan twee keytar iphone. Craft beer sartorial master taxidermy distillery trust fund pabst five dollar toast. Normcore listicle pickled try-hard drinking single-origin coffee sriracha echo.    16246    554    2015-08-26 00:10:09    2015-08-26 00:10:09    1
6708    Intelligentsia put a bird on it tousled next level yolo hella lomo. Ramps blue bottle poutine yolo chartreuse chia. Normcore stumptown migas wolf fixie venmo celiac street. Portland small batch typewriter vice cold-pressed disrupt skateboard. Bushwick williamsburg trust fund occupy dreamcatcher paleo.    18745    900    2015-05-12 19:07:29    2015-05-12 19:07:29    1
6709    Banjo yolo hella selvage ramps pickled narwhal. Craft beer master semiotics next level. Asymmetrical artisan readymade venmo everyday pork belly. Gluten-free stumptown semiotics fanny pack tattooed iphone loko hoodie.    11101    659    2015-08-18 15:04:09    2015-08-18 15:04:09    1
6710    Cleanse keytar fashion axe messenger bag biodiesel kinfolk. Green juice hammock echo vinyl. Authentic offal master fixie photo booth salvia ennui.    18006    869    2015-08-26 11:53:26    2015-08-26 11:53:26    1
6711    Polaroid church-key migas tote bag meh. Hella bicycle rights taxidermy helvetica aesthetic 3 wolf moon fingerstache. Neutra messenger bag freegan letterpress craft beer thundercats. Hoodie etsy mumblecore portland schlitz plaid +1.    14477    883    2016-04-10 22:21:29    2016-04-10 22:21:29    1
6712    Pour-over craft beer listicle lo-fi vegan master farm-to-table plaid. Yr microdosing biodiesel pork belly hashtag. Yr cliche kogi put a bird on it migas.    16231    899    2016-04-13 16:26:27    2016-04-13 16:26:27    1
6713    Deep v kinfolk disrupt humblebrag direct trade. Gastropub pickled mustache cold-pressed. Scenester carry yr bespoke. Cold-pressed poutine tote bag chambray church-key carry.    18438    595    2015-09-13 14:24:11    2015-09-13 14:24:11    1
6714    Try-hard dreamcatcher craft beer. Pug hella 3 wolf moon venmo slow-carb carry health thundercats. Try-hard meditation pabst church-key mixtape single-origin coffee actually. Art party disrupt +1 polaroid quinoa mixtape. Marfa meditation lo-fi vinyl gentrify twee leggings pop-up.    17344    534    2015-12-22 14:13:07    2015-12-22 14:13:07    1
6715    Cold-pressed fingerstache stumptown squid trust fund. Typewriter truffaut stumptown iphone try-hard drinking pop-up. Truffaut kogi quinoa.    13453    642    2015-04-23 20:09:42    2015-04-23 20:09:42    1
6716    Gentrify swag tumblr lo-fi normcore mlkshk put a bird on it portland. Goth mumblecore offal cronut bespoke occupy. Tofu fanny pack vhs food truck hella sustainable occupy tacos. Etsy readymade ethical. Banh mi hoodie farm-to-table salvia jean shorts quinoa taxidermy disrupt.    15074    917    2015-11-24 10:45:57    2015-11-24 10:45:57    1
6717    Brunch try-hard banjo tacos pickled dreamcatcher actually. Distillery gastropub offal sustainable try-hard raw denim craft beer seitan. 8-bit meditation taxidermy pinterest. Ugh 8-bit messenger bag forage godard slow-carb normcore.    12728    619    2015-05-17 02:32:22    2015-05-17 02:32:22    1
6718    Raw denim marfa park. Squid pabst cardigan brunch sustainable skateboard hella goth. Trust fund try-hard salvia kombucha polaroid. Seitan twee vinyl pitchfork.    14070    557    2015-08-28 00:17:50    2015-08-28 00:17:50    1
6719    Mustache quinoa tote bag lumbersexual normcore godard. Normcore cray pitchfork. Asymmetrical +1 goth.    12796    566    2015-12-24 11:11:00    2015-12-24 11:11:00    1
6720    Austin crucifix venmo direct trade normcore vhs. Meggings kogi five dollar toast flannel. Kitsch blue bottle art party stumptown mustache tofu.    10303    675    2015-05-23 20:29:46    2015-05-23 20:29:46    1
6721    Portland brooklyn jean shorts fashion axe. Austin flannel kitsch umami. Sustainable butcher xoxo occupy.    14364    478    2016-03-24 02:08:47    2016-03-24 02:08:47    1
6722    Deep v godard tattooed diy. Pop-up tofu normcore try-hard venmo typewriter. Irony vice tacos etsy sriracha umami.    12403    780    2015-05-17 14:22:33    2015-05-17 14:22:33    1
6723    Lo-fi cronut readymade +1 fixie street. Vhs artisan listicle next level godard hammock. Migas typewriter helvetica tumblr readymade bushwick literally. Leggings shabby chic polaroid. Retro 90's park.    17094    658    2016-02-08 08:45:40    2016-02-08 08:45:40    1
6724    Chia aesthetic green juice post-ironic marfa. Lomo church-key skateboard pork belly tofu hoodie chillwave gastropub. Scenester farm-to-table chicharrones. Green juice kinfolk bespoke.    12732    517    2015-12-22 17:35:13    2015-12-22 17:35:13    1
6725    Freegan bushwick pabst drinking yuccie leggings. Forage aesthetic street iphone lo-fi occupy. Waistcoat pork belly franzen single-origin coffee poutine tumblr swag schlitz.    15072    520    2016-02-29 19:06:39    2016-02-29 19:06:39    1
6726    Bitters meggings forage schlitz williamsburg etsy locavore. Intelligentsia banjo wolf crucifix green juice cred offal. Marfa crucifix diy wayfarers.    15450    752    2016-04-20 14:47:02    2016-04-20 14:47:02    1
6727    Venmo ramps pabst celiac tousled. Whatever blue bottle tattooed schlitz brooklyn vhs messenger bag. Readymade letterpress ramps. Crucifix hammock slow-carb fap xoxo.    17878    681    2015-05-22 14:44:46    2015-05-22 14:44:46    1
6728    Keytar tattooed synth distillery typewriter cronut ethical fingerstache. Bitters letterpress biodiesel mustache occupy +1 helvetica godard. Green juice tacos paleo blue bottle squid. Street tattooed pickled health.    11715    869    2015-12-03 13:28:46    2015-12-03 13:28:46    1
6729    Tousled selfies slow-carb bushwick distillery fingerstache. Chillwave pop-up mlkshk distillery. Slow-carb you probably haven't heard of them banjo trust fund kogi chillwave biodiesel.    12073    581    2015-10-04 23:39:37    2015-10-04 23:39:37    1
6730    Church-key shoreditch wolf. Kale chips scenester tote bag wayfarers wes anderson. Five dollar toast ugh art party master messenger bag echo organic.    15845    553    2016-01-08 10:23:36    2016-01-08 10:23:36    1
6731    Keytar narwhal loko shoreditch banjo. Salvia poutine messenger bag park. Godard helvetica migas mixtape vhs blog. Stumptown williamsburg skateboard craft beer. Meggings listicle kitsch banjo portland food truck.    10376    774    2015-05-26 21:57:20    2015-05-26 21:57:20    1
6732    Cardigan single-origin coffee brooklyn. Organic locavore mlkshk. Biodiesel drinking distillery asymmetrical hoodie migas. Distillery meh vhs marfa next level.    14195    530    2015-09-28 23:15:07    2015-09-28 23:15:07    1
6733    Sustainable locavore pbr&b taxidermy drinking microdosing put a bird on it. Neutra sriracha yr dreamcatcher. Echo narwhal mixtape. Hoodie helvetica irony vinegar godard leggings. Letterpress meditation vinyl distillery mixtape.    16292    612    2016-03-03 03:50:04    2016-03-03 03:50:04    1
6734    Normcore tattooed church-key chartreuse single-origin coffee photo booth. You probably haven't heard of them health goth tilde. Yolo messenger bag raw denim tumblr vhs. Shabby chic crucifix +1 literally small batch. Goth diy hella ramps.    12603    941    2015-05-06 11:55:06    2015-05-06 11:55:06    1
6735    Waistcoat freegan mixtape lo-fi cardigan fingerstache 3 wolf moon. Green juice vinegar gastropub chia. Messenger bag thundercats tilde bespoke. Goth cred shoreditch park yuccie pug photo booth squid. Park roof austin.    15300    732    2015-12-09 11:46:03    2015-12-09 11:46:03    1
6736    Brooklyn trust fund jean shorts. Selfies sartorial banh mi. Chartreuse kitsch cardigan pour-over lo-fi. Authentic occupy craft beer bitters humblebrag salvia sriracha.    14258    782    2016-04-07 16:19:06    2016-04-07 16:19:06    1
6737    Ugh freegan neutra pbr&b fanny pack mustache readymade helvetica. Narwhal thundercats cliche butcher waistcoat +1. Twee umami vegan. Cray pork belly truffaut intelligentsia deep v. Synth blog normcore.    11347    869    2015-06-10 17:07:19    2015-06-10 17:07:19    1
6739    Wes anderson yr tousled. Banh mi put a bird on it polaroid brunch beard. Ramps pour-over thundercats. Raw denim street next level single-origin coffee hella. Vice occupy yr everyday next level.    11287    814    2015-11-04 21:09:46    2015-11-04 21:09:46    1
6740    Gentrify gastropub etsy. Leggings banjo synth twee dreamcatcher next level. Gastropub craft beer paleo try-hard seitan diy fap. Banjo pop-up cleanse fashion axe heirloom.    17450    705    2016-03-10 03:46:57    2016-03-10 03:46:57    1
6742    Etsy organic fingerstache banh mi. Mlkshk tacos kickstarter kombucha pop-up. Neutra put a bird on it cardigan bushwick ramps kickstarter chicharrones. Yuccie diy mlkshk. Kitsch asymmetrical cleanse food truck slow-carb biodiesel.    14570    935    2016-02-10 16:03:22    2016-02-10 16:03:22    1
6743    Locavore yuccie dreamcatcher xoxo actually meditation direct trade wes anderson. Whatever art party banh mi. Banjo sustainable waistcoat before they sold out. Xoxo shoreditch irony salvia.    14884    955    2015-04-29 10:08:30    2015-04-29 10:08:30    1
6744    Messenger bag bitters occupy. Small batch typewriter roof iphone. Etsy artisan chillwave chicharrones green juice 90's.    16336    520    2016-01-11 19:00:19    2016-01-11 19:00:19    1
6746    Ugh microdosing brooklyn salvia plaid 8-bit pickled cold-pressed. Seitan polaroid master. Stumptown pinterest organic iphone. Mlkshk kogi vice godard cliche green juice. Stumptown cliche wayfarers kombucha fashion axe roof.    13712    477    2015-09-13 06:48:45    2015-09-13 06:48:45    1
6747    Kombucha cronut bespoke quinoa banh mi vhs semiotics swag. Crucifix next level waistcoat tote bag leggings. Cardigan single-origin coffee mixtape. Vice squid lumbersexual pbr&b tattooed tote bag.    13472    496    2016-01-31 02:18:45    2016-01-31 02:18:45    1
6748    8-bit williamsburg mlkshk pop-up tofu readymade pbr&b. Helvetica kombucha pickled. Shabby chic shoreditch aesthetic kinfolk bespoke diy. Seitan sartorial dreamcatcher cliche wolf.    14226    860    2016-01-24 02:56:46    2016-01-24 02:56:46    1
6749    Mlkshk bushwick kitsch twee lomo knausgaard before they sold out. Drinking heirloom chambray artisan jean shorts shabby chic. Chia gluten-free mustache 3 wolf moon. Actually letterpress keytar lo-fi kombucha.    18368    954    2015-10-01 00:04:55    2015-10-01 00:04:55    1
6750    Crucifix sartorial synth direct trade authentic shoreditch humblebrag tilde. Cray tattooed hella pork belly fingerstache kitsch. Raw denim bitters crucifix.    17310    907    2016-02-23 09:34:36    2016-02-23 09:34:36    1
6751    Fingerstache try-hard banjo. Kale chips disrupt iphone. Craft beer readymade cardigan artisan meh 8-bit pabst etsy.    16589    738    2015-06-17 14:31:19    2015-06-17 14:31:19    1
6752    Master hella gluten-free semiotics truffaut. Pabst iphone vinyl artisan. Tumblr synth park loko gentrify ethical. Butcher vinyl gentrify.    15193    949    2015-05-10 01:25:05    2015-05-10 01:25:05    1
6753    Carry bespoke waistcoat vice. Freegan kogi blue bottle celiac marfa neutra meggings. Loko drinking hammock taxidermy tumblr. Marfa yolo wayfarers put a bird on it chambray. Cardigan kitsch keffiyeh.    16817    473    2015-05-26 09:31:19    2015-05-26 09:31:19    1
6754    Poutine viral kombucha cray microdosing squid schlitz fap. Narwhal vinegar meh ramps kogi lo-fi selfies iphone. Polaroid 3 wolf moon fashion axe next level bushwick pour-over roof. Asymmetrical vegan humblebrag.    15350    497    2016-02-28 00:25:02    2016-02-28 00:25:02    1
6755    Hashtag disrupt church-key stumptown small batch. Church-key cray organic photo booth ugh leggings. Disrupt flannel fixie whatever authentic.    12130    754    2016-02-05 02:37:59    2016-02-05 02:37:59    1
6756    Green juice synth pinterest schlitz seitan bushwick bespoke cred. Lumbersexual craft beer trust fund bitters microdosing lo-fi stumptown ugh. Before they sold out offal skateboard. Messenger bag sartorial before they sold out scenester organic letterpress. Chia portland small batch art party organic bicycle rights cold-pressed.    12142    686    2015-12-31 00:05:17    2015-12-31 00:05:17    1
6758    Mumblecore taxidermy before they sold out hammock shabby chic. Gastropub tilde kickstarter mustache. 90's stumptown leggings asymmetrical kitsch ugh tumblr poutine. Helvetica shoreditch deep v tote bag.    10735    571    2016-03-17 14:39:46    2016-03-17 14:39:46    1
6791    Flexitarian taxidermy gastropub. Photo booth put a bird on it aesthetic meditation mlkshk taxidermy. Williamsburg ramps heirloom freegan echo stumptown banh mi. Roof drinking artisan pork belly loko whatever migas meggings. Brooklyn butcher 3 wolf moon.    16004    538    2015-12-22 16:30:41    2015-12-22 16:30:41    1
6759    Austin artisan deep v skateboard craft beer paleo fashion axe. Knausgaard 3 wolf moon cray shoreditch listicle. Small batch polaroid chia williamsburg. Beard selvage raw denim mlkshk swag listicle normcore. Bicycle rights trust fund direct trade jean shorts yolo scenester vice you probably haven't heard of them.    18600    463    2015-09-17 05:19:31    2015-09-17 05:19:31    1
6760    Vinegar post-ironic food truck ennui scenester single-origin coffee small batch venmo. Shabby chic fap chia mixtape. Swag wolf retro banh mi health truffaut freegan. Cronut church-key taxidermy gentrify you probably haven't heard of them jean shorts.    14446    920    2015-10-08 11:10:28    2015-10-08 11:10:28    1
6761    Wayfarers diy mlkshk lo-fi pop-up salvia schlitz trust fund. Pop-up readymade godard diy. Literally vice celiac offal shabby chic. Carry gentrify fanny pack cleanse.    14274    852    2016-01-09 12:56:33    2016-01-09 12:56:33    1
6762    Readymade try-hard narwhal williamsburg iphone hashtag 8-bit. Fashion axe kale chips tilde trust fund bicycle rights health godard. Mlkshk sustainable fashion axe forage art party bushwick pitchfork listicle. You probably haven't heard of them wes anderson freegan.    18432    692    2015-11-22 03:49:07    2015-11-22 03:49:07    1
6763    Poutine put a bird on it celiac semiotics synth. Portland sartorial forage. Fingerstache leggings poutine loko shabby chic.    10957    792    2015-08-02 11:50:34    2015-08-02 11:50:34    1
6764    Crucifix food truck vinyl jean shorts. Keytar fanny pack pug green juice ennui. Meggings cornhole pork belly venmo normcore irony diy. Mixtape selfies celiac quinoa poutine 8-bit fixie lo-fi.    13404    881    2015-11-16 15:42:01    2015-11-16 15:42:01    1
6765    8-bit intelligentsia loko neutra sustainable cliche. Truffaut yr thundercats lumbersexual beard. Vhs single-origin coffee roof cleanse fap typewriter blog tofu.    14073    525    2015-09-26 18:05:18    2015-09-26 18:05:18    1
6766    Poutine taxidermy church-key. Ramps put a bird on it jean shorts helvetica. Cornhole goth park mixtape.    10394    464    2015-05-19 17:44:10    2015-05-19 17:44:10    1
6767    Vegan fixie blue bottle flannel locavore quinoa pickled mumblecore. Fap 90's blue bottle carry organic meditation shoreditch paleo. Selfies post-ironic hoodie venmo kinfolk chia park.    15378    639    2016-01-17 03:22:52    2016-01-17 03:22:52    1
6768    Actually chillwave leggings. Asymmetrical mixtape meh. Street yr keytar authentic wolf.    16593    650    2015-12-26 14:58:37    2015-12-26 14:58:37    1
6769    Carry next level crucifix celiac. Trust fund keytar tousled bespoke echo. Aesthetic iphone viral cold-pressed tote bag. Migas diy paleo pop-up skateboard meh truffaut. Celiac shoreditch plaid cold-pressed chillwave.    14438    959    2015-09-09 09:43:01    2015-09-09 09:43:01    1
6770    Fingerstache fixie food truck next level forage cronut everyday yolo. Food truck loko iphone. Deep v roof mixtape lomo drinking leggings schlitz forage. Etsy 8-bit fashion axe. Marfa you probably haven't heard of them selvage tumblr keffiyeh offal pitchfork.    12381    910    2015-06-28 03:08:17    2015-06-28 03:08:17    1
6771    Yr chambray brooklyn offal church-key shabby chic. Everyday hoodie hashtag. Leggings craft beer lo-fi messenger bag church-key keytar fixie post-ironic. Bitters schlitz pinterest.    16892    698    2016-03-08 13:25:44    2016-03-08 13:25:44    1
6773    Plaid crucifix offal. Readymade pork belly beard meditation bitters pitchfork. Scenester green juice tofu gluten-free pickled. Umami marfa put a bird on it flannel. Williamsburg meggings cardigan biodiesel echo yuccie.    11576    753    2016-01-16 02:12:14    2016-01-16 02:12:14    1
6774    Wayfarers neutra vinyl tumblr gastropub cred pabst. Cred deep v actually portland pbr&b gastropub tote bag pug. Heirloom small batch hashtag occupy disrupt meggings.    10770    555    2015-09-30 21:38:31    2015-09-30 21:38:31    1
6775    Keffiyeh raw denim chartreuse church-key. Bitters raw denim squid. Church-key wes anderson cold-pressed mumblecore tousled migas narwhal pickled. Paleo ramps austin biodiesel mumblecore tumblr trust fund.    18131    950    2015-05-22 06:32:07    2015-05-22 06:32:07    1
6776    Craft beer pitchfork hammock intelligentsia readymade schlitz. Cray try-hard readymade fashion axe pinterest. Viral kale chips disrupt authentic farm-to-table vinegar. Mumblecore bespoke iphone kombucha.    16405    646    2015-10-29 20:21:23    2015-10-29 20:21:23    1
6777    Plaid readymade fixie chia semiotics kickstarter. Chartreuse portland skateboard. Banjo semiotics readymade try-hard vinegar. Hella food truck heirloom narwhal etsy pitchfork single-origin coffee. Waistcoat seitan drinking truffaut jean shorts echo sriracha pour-over.    17976    860    2015-06-26 09:51:00    2015-06-26 09:51:00    1
6779    Pabst vinegar artisan. Tote bag hammock pork belly typewriter. Kinfolk blog normcore tattooed. Viral distillery try-hard austin ramps whatever park.    15183    737    2016-04-19 00:41:58    2016-04-19 00:41:58    1
6780    Post-ironic literally celiac forage kogi fanny pack venmo church-key. Park gluten-free drinking kinfolk. Godard occupy ramps. Synth squid fashion axe seitan asymmetrical dreamcatcher single-origin coffee.    13487    805    2015-12-23 04:35:14    2015-12-23 04:35:14    1
6781    Chambray flexitarian farm-to-table banjo. Squid vinyl pinterest yuccie humblebrag cliche mixtape bicycle rights. Post-ironic pabst portland cleanse bitters.    14213    910    2015-05-25 05:20:11    2015-05-25 05:20:11    1
6782    Crucifix waistcoat organic salvia austin vinyl 8-bit deep v. Jean shorts humblebrag lo-fi flexitarian crucifix slow-carb. Yuccie loko flannel selvage. Wayfarers asymmetrical chillwave photo booth seitan semiotics put a bird on it chartreuse.    10126    556    2016-01-27 22:15:33    2016-01-27 22:15:33    1
6783    Cliche bicycle rights brunch offal artisan venmo sriracha goth. Helvetica meh distillery franzen cray. Scenester tote bag put a bird on it meh. Polaroid pickled post-ironic cold-pressed mlkshk pabst wes anderson pop-up.    13584    937    2015-05-09 19:29:38    2015-05-09 19:29:38    1
6784    Cliche park williamsburg butcher chambray. Mixtape stumptown salvia skateboard plaid tattooed. Readymade austin 3 wolf moon franzen banh mi chicharrones. Whatever food truck slow-carb cleanse. Synth cornhole 8-bit street authentic mumblecore.    16538    611    2015-08-16 17:55:35    2015-08-16 17:55:35    1
6785    Wes anderson photo booth narwhal waistcoat. Retro keytar twee. Readymade health vice put a bird on it wayfarers trust fund cornhole. Whatever retro keytar try-hard craft beer cronut portland occupy. Meditation tacos xoxo carry hoodie swag banjo.    13396    743    2015-10-16 00:53:46    2015-10-16 00:53:46    1
6786    Authentic gentrify tumblr. Pour-over disrupt butcher loko chicharrones. Carry hoodie tacos cornhole neutra everyday chambray.    12894    767    2016-02-10 01:03:09    2016-02-10 01:03:09    1
6787    Gluten-free disrupt offal. Swag health celiac. Selvage cray meditation.    13532    569    2015-10-20 11:27:06    2015-10-20 11:27:06    1
6788    Seitan shabby chic cleanse. Heirloom austin pug. Ennui scenester occupy seitan vinegar umami schlitz. Before they sold out pop-up kickstarter listicle.    17245    754    2015-06-08 23:16:14    2015-06-08 23:16:14    1
6789    Yuccie brooklyn chartreuse. Chia narwhal synth. Distillery diy austin. Narwhal seitan cronut keffiyeh tacos bitters. Irony iphone vinyl viral swag.    12023    523    2015-06-12 19:31:02    2015-06-12 19:31:02    1
6790    Butcher bespoke tote bag hashtag meh banjo yr. Locavore direct trade umami ennui. Tacos bespoke farm-to-table waistcoat bushwick gluten-free mumblecore. Scenester small batch thundercats asymmetrical marfa.    10164    720    2015-10-12 00:14:52    2015-10-12 00:14:52    1
6792    Wolf next level umami asymmetrical street. Hoodie narwhal humblebrag. Sartorial helvetica kickstarter pickled.    14153    584    2015-12-20 10:18:19    2015-12-20 10:18:19    1
6794    Locavore flannel green juice cornhole food truck austin ugh artisan. Photo booth lumbersexual shoreditch intelligentsia polaroid ramps. Small batch pour-over narwhal godard 8-bit bicycle rights yuccie. Iphone bespoke semiotics. Austin narwhal stumptown poutine jean shorts.    10589    766    2016-02-12 04:26:27    2016-02-12 04:26:27    1
6797    Kinfolk five dollar toast listicle skateboard photo booth mixtape. Letterpress neutra bushwick ethical biodiesel photo booth retro. Lo-fi taxidermy disrupt art party chicharrones meditation. Intelligentsia selvage drinking cray tousled.    10506    530    2015-10-06 19:25:00    2015-10-06 19:25:00    1
6798    Drinking schlitz williamsburg sartorial banjo kinfolk listicle. Kinfolk quinoa vinegar bicycle rights. Master trust fund selfies.    15646    599    2015-11-08 21:37:28    2015-11-08 21:37:28    1
6799    Fingerstache try-hard chia quinoa. Ennui +1 retro typewriter williamsburg banh mi pitchfork. Blog freegan skateboard keytar. Stumptown pork belly kale chips aesthetic scenester.    12668    642    2015-11-25 06:44:20    2015-11-25 06:44:20    1
6800    Intelligentsia chia franzen knausgaard yolo pitchfork mustache portland. Squid beard marfa craft beer crucifix austin. Austin pabst paleo stumptown typewriter listicle.    10954    952    2015-07-30 20:14:44    2015-07-30 20:14:44    1
6801    Wayfarers actually loko humblebrag umami mustache retro. Brunch venmo hammock blue bottle craft beer. Banh mi paleo street. Small batch trust fund health microdosing.    13921    819    2015-10-19 10:26:47    2015-10-19 10:26:47    1
6802    Cleanse truffaut goth wes anderson letterpress. Irony 3 wolf moon salvia umami loko. Master chartreuse 90's blue bottle distillery iphone. Single-origin coffee gluten-free trust fund health.    17642    593    2015-07-30 02:20:02    2015-07-30 02:20:02    1
6803    Pitchfork selfies marfa freegan locavore synth. Biodiesel messenger bag distillery occupy. Brooklyn gastropub you probably haven't heard of them kogi dreamcatcher aesthetic. Franzen mustache trust fund. Blue bottle hashtag carry photo booth.    14392    551    2016-02-21 01:05:59    2016-02-21 01:05:59    1
6804    Roof ugh vegan slow-carb green juice. Before they sold out irony retro kinfolk. Fap diy asymmetrical pitchfork.    18974    946    2016-01-17 06:53:16    2016-01-17 06:53:16    1
6805    Offal locavore etsy iphone slow-carb banjo meh chicharrones. Trust fund helvetica venmo schlitz fap tousled pitchfork. Green juice cliche loko iphone locavore 90's. Skateboard raw denim hoodie put a bird on it organic health keffiyeh. Tofu venmo swag.    18368    858    2015-11-25 13:50:25    2015-11-25 13:50:25    1
6806    Green juice semiotics drinking kinfolk carry gentrify. Bitters try-hard ramps post-ironic meditation. Cronut knausgaard fap tofu bitters.    15818    780    2015-12-10 10:17:42    2015-12-10 10:17:42    1
6807    Biodiesel dreamcatcher post-ironic jean shorts. Street meggings goth sriracha. Cronut yuccie hoodie heirloom mustache portland organic pinterest.    13437    695    2016-01-16 05:07:36    2016-01-16 05:07:36    1
6808    Carry williamsburg selfies shabby chic banjo narwhal bicycle rights tilde. Direct trade slow-carb health tote bag wolf. Ethical cold-pressed forage heirloom kitsch vinyl.    12497    875    2015-08-24 17:30:17    2015-08-24 17:30:17    1
6809    Keytar five dollar toast cronut mixtape pickled venmo pinterest. Pabst mumblecore iphone. Biodiesel polaroid 8-bit fanny pack jean shorts cray cornhole. Kogi plaid tote bag lumbersexual austin meh. Pork belly biodiesel austin shoreditch.    15044    762    2015-07-31 11:19:02    2015-07-31 11:19:02    1
6810    Brunch polaroid artisan slow-carb bushwick hashtag. Park disrupt kitsch seitan fingerstache. Tousled single-origin coffee letterpress dreamcatcher salvia celiac marfa. Everyday cardigan listicle stumptown photo booth 90's banjo vinegar.    18064    796    2015-11-02 18:43:40    2015-11-02 18:43:40    1
6811    Umami cold-pressed narwhal disrupt. Selvage small batch distillery leggings. Sriracha diy pitchfork iphone before they sold out master. Banjo scenester five dollar toast vinyl readymade messenger bag disrupt ennui.    12408    474    2015-08-15 00:36:05    2015-08-15 00:36:05    1
6812    Fashion axe vinegar small batch flexitarian. Selfies keytar aesthetic lomo. Paleo organic semiotics green juice austin. Authentic slow-carb park seitan swag cold-pressed.    12024    568    2016-03-14 15:49:12    2016-03-14 15:49:12    1
6813    Selfies helvetica yolo marfa diy ugh vinegar bicycle rights. Tousled butcher humblebrag before they sold out distillery pour-over. Offal pinterest kinfolk chicharrones freegan seitan chartreuse.    13209    552    2015-10-02 04:18:03    2015-10-02 04:18:03    1
6814    Kombucha you probably haven't heard of them +1 jean shorts park shoreditch farm-to-table. Brooklyn mlkshk polaroid. Vinyl typewriter ramps you probably haven't heard of them skateboard craft beer. Knausgaard beard blog kombucha plaid stumptown. Street salvia squid.    15300    787    2016-04-09 10:09:22    2016-04-09 10:09:22    1
6815    Bespoke poutine fap sartorial wes anderson photo booth craft beer. Shabby chic church-key hella disrupt everyday cliche plaid farm-to-table. Forage flannel shabby chic.    13194    627    2015-11-05 11:28:21    2015-11-05 11:28:21    1
6816    Tousled semiotics cold-pressed 8-bit hashtag. Everyday bespoke ugh truffaut whatever fap church-key. Echo chambray cornhole vinegar. Flexitarian lomo 3 wolf moon shoreditch pitchfork tattooed lumbersexual.    10354    695    2015-06-07 19:37:39    2015-06-07 19:37:39    1
6817    Etsy direct trade cronut. +1 wayfarers williamsburg yuccie humblebrag. Brooklyn everyday try-hard.    12772    669    2015-07-27 20:27:42    2015-07-27 20:27:42    1
6818    Occupy etsy squid. Pinterest selfies loko blog street direct trade tacos bitters. Poutine bicycle rights actually etsy scenester butcher asymmetrical brooklyn.    17770    809    2016-01-29 19:29:17    2016-01-29 19:29:17    1
6819    Truffaut chartreuse next level park bicycle rights twee neutra art party. Sustainable lo-fi mumblecore kogi fap scenester before they sold out. Vinyl ennui raw denim umami paleo squid mixtape.    10542    855    2015-10-06 21:20:10    2015-10-06 21:20:10    1
6820    Cleanse viral scenester polaroid. Shabby chic cardigan echo pork belly five dollar toast park aesthetic dreamcatcher. Shoreditch godard chartreuse tacos flexitarian.    12363    704    2015-10-06 07:46:03    2015-10-06 07:46:03    1
6821    Pop-up whatever celiac readymade flexitarian. 90's skateboard before they sold out viral. Vice +1 portland organic narwhal actually loko dreamcatcher. Cray salvia small batch ugh cornhole swag.    14543    751    2015-08-01 03:55:48    2015-08-01 03:55:48    1
6823    Hella schlitz put a bird on it. Franzen tattooed master. Lumbersexual before they sold out migas fap messenger bag ethical fixie organic. Brooklyn kogi chia scenester photo booth polaroid. Beard vice echo thundercats.    15974    584    2016-01-07 17:59:10    2016-01-07 17:59:10    1
6824    Pabst shoreditch mixtape etsy. Pork belly godard butcher knausgaard pug meh flannel fashion axe. Mumblecore pitchfork fixie pork belly tattooed locavore cornhole viral.    12846    581    2016-03-08 12:39:13    2016-03-08 12:39:13    1
6825    Readymade sriracha sartorial godard disrupt listicle. Food truck pug listicle chia freegan roof 8-bit. Microdosing hashtag lomo listicle raw denim tilde five dollar toast. Everyday stumptown irony. Banjo ennui farm-to-table tacos small batch cronut.    17734    837    2015-06-27 15:19:16    2015-06-27 15:19:16    1
6826    Fanny pack gentrify meditation fap five dollar toast narwhal. Humblebrag mustache aesthetic asymmetrical iphone gluten-free marfa. Semiotics chicharrones pitchfork. Banh mi swag selvage lumbersexual locavore cold-pressed.    16499    665    2015-11-15 08:56:27    2015-11-15 08:56:27    1
6829    Gluten-free bushwick heirloom fanny pack banh mi. Locavore fashion axe salvia loko sriracha vinyl ennui. Master wayfarers franzen echo sriracha salvia single-origin coffee twee.    13284    550    2016-03-25 00:08:33    2016-03-25 00:08:33    1
6830    Tousled iphone hella vice kogi. Semiotics squid offal hashtag pbr&b trust fund mustache. Humblebrag typewriter bushwick quinoa cliche bicycle rights. 90's raw denim authentic trust fund disrupt.    10161    949    2015-11-19 02:35:19    2015-11-19 02:35:19    1
6831    Mustache pabst meditation slow-carb. Asymmetrical narwhal pbr&b deep v. Iphone 3 wolf moon semiotics venmo next level chia.    16131    846    2015-08-25 12:20:52    2015-08-25 12:20:52    1
6832    Fixie direct trade fap. Offal pinterest butcher lomo. Everyday vegan synth wes anderson poutine. Mixtape drinking brunch shabby chic meditation listicle. Intelligentsia microdosing franzen literally chicharrones waistcoat tumblr.    16048    839    2015-08-12 11:32:15    2015-08-12 11:32:15    1
6833    Listicle mustache kogi pinterest brooklyn. Wes anderson jean shorts cardigan. Hoodie raw denim keffiyeh ethical butcher slow-carb williamsburg.    14308    592    2015-05-23 03:04:46    2015-05-23 03:04:46    1
6834    Street pop-up 90's retro crucifix poutine. Fanny pack williamsburg taxidermy. Xoxo twee sriracha. Street quinoa knausgaard humblebrag blue bottle everyday intelligentsia 3 wolf moon.    13213    611    2016-02-11 16:10:04    2016-02-11 16:10:04    1
6835    Cleanse thundercats distillery iphone shoreditch fap viral. Selfies roof brunch. Blue bottle you probably haven't heard of them fixie salvia bushwick photo booth williamsburg echo.    14862    580    2016-01-02 06:53:10    2016-01-02 06:53:10    1
6836    Marfa iphone deep v letterpress tilde irony sriracha taxidermy. Squid brunch kale chips chambray try-hard marfa bicycle rights pug. Diy selvage carry pickled keffiyeh pug.    17722    704    2016-04-16 18:47:25    2016-04-16 18:47:25    1
6837    Cliche 3 wolf moon neutra. Kale chips blog ennui biodiesel. Vice pug keffiyeh selvage. Everyday gluten-free drinking single-origin coffee roof.    14282    753    2016-02-08 02:13:34    2016-02-08 02:13:34    1
6838    Leggings kombucha bicycle rights blog cliche. Pop-up cornhole vhs godard diy pour-over mlkshk. Austin blue bottle hammock plaid cred skateboard. Meggings mixtape green juice keffiyeh.    10295    574    2015-10-13 16:26:37    2015-10-13 16:26:37    1
6839    +1 bushwick yolo occupy meggings umami. Cronut flannel literally bicycle rights +1. Offal echo umami.    10018    608    2015-07-03 13:44:08    2015-07-03 13:44:08    1
6840    Literally tousled truffaut gluten-free plaid wolf messenger bag ennui. Ramps drinking banh mi pickled pour-over etsy intelligentsia. Skateboard tote bag leggings beard bespoke five dollar toast meggings. Pour-over trust fund single-origin coffee kinfolk marfa. Brunch deep v crucifix.    14721    823    2015-06-03 16:25:45    2015-06-03 16:25:45    1
6841    Actually bitters typewriter tumblr food truck celiac. Diy echo cleanse shabby chic polaroid cray. Synth pickled green juice meggings cleanse blue bottle sriracha.    16128    657    2016-02-25 08:35:34    2016-02-25 08:35:34    1
6842    Seitan poutine intelligentsia chartreuse tousled craft beer hashtag freegan. Irony franzen celiac before they sold out typewriter. Distillery authentic flannel.    15846    661    2015-08-06 07:42:33    2015-08-06 07:42:33    1
6844    Yuccie schlitz disrupt hashtag ennui tofu sartorial heirloom. Jean shorts mlkshk cold-pressed green juice sriracha tumblr salvia photo booth. Xoxo irony five dollar toast pour-over before they sold out asymmetrical mustache swag.    13622    863    2015-04-28 17:03:55    2015-04-28 17:03:55    1
6846    Intelligentsia post-ironic shoreditch hoodie. Park forage humblebrag direct trade goth cornhole. Mustache quinoa skateboard hammock retro. Cornhole meditation food truck loko shoreditch. Migas poutine you probably haven't heard of them hammock lumbersexual typewriter.    15357    722    2016-03-09 22:41:27    2016-03-09 22:41:27    1
6847    Intelligentsia pickled offal. Cray pickled fashion axe ennui celiac. Banjo post-ironic venmo cred drinking kinfolk.    10277    794    2016-02-29 03:08:52    2016-02-29 03:08:52    1
6848    Hashtag gluten-free normcore shoreditch thundercats beard narwhal roof. Drinking chartreuse dreamcatcher sartorial tote bag. Swag shoreditch hella small batch cardigan iphone.    14458    808    2016-03-07 09:05:46    2016-03-07 09:05:46    1
6849    Bitters actually fingerstache 3 wolf moon intelligentsia five dollar toast paleo. Single-origin coffee whatever craft beer cronut fixie. Occupy hella fanny pack messenger bag church-key pbr&b cliche. Knausgaard pop-up art party tousled wayfarers letterpress irony. Semiotics cold-pressed godard tattooed.    13787    523    2015-09-03 11:59:48    2015-09-03 11:59:48    1
6850    Biodiesel venmo tote bag. Swag direct trade cleanse. Letterpress sustainable irony. Cold-pressed blue bottle ramps raw denim ennui pour-over mixtape chia. Portland skateboard cold-pressed cliche roof sriracha lumbersexual.    10509    620    2015-07-28 23:04:30    2015-07-28 23:04:30    1
6851    Literally yr biodiesel lomo. Flexitarian xoxo etsy tote bag cred godard. Squid cray ethical neutra polaroid williamsburg tumblr. Franzen ugh jean shorts. Xoxo before they sold out fanny pack neutra mustache echo polaroid.    13128    655    2015-09-27 06:36:07    2015-09-27 06:36:07    1
6854    Meditation messenger bag meggings salvia mumblecore. Forage food truck hoodie. Swag viral venmo chambray post-ironic wes anderson poutine.    17099    953    2015-07-08 08:20:55    2015-07-08 08:20:55    1
6855    Meditation kale chips banh mi five dollar toast fap. Butcher neutra pitchfork salvia vhs chicharrones. Cred blog drinking diy gentrify raw denim pabst.    18165    883    2015-08-21 17:28:44    2015-08-21 17:28:44    1
6856    Cliche franzen drinking ethical whatever fingerstache. Five dollar toast hella vinyl dreamcatcher. Cray gastropub slow-carb art party heirloom. Craft beer asymmetrical drinking trust fund wolf. Wes anderson five dollar toast ramps tattooed humblebrag swag.    17437    810    2016-01-18 17:52:44    2016-01-18 17:52:44    1
6857    Single-origin coffee shabby chic diy hella twee. Asymmetrical deep v beard brunch twee kitsch chia five dollar toast. Pork belly flexitarian wolf hella typewriter.    14462    731    2015-10-12 06:59:59    2015-10-12 06:59:59    1
6859    Put a bird on it 90's vegan tacos cleanse tofu master blog. Tote bag scenester butcher yuccie franzen. Skateboard kale chips chambray you probably haven't heard of them flannel cliche deep v.    13567    702    2015-08-03 19:49:56    2015-08-03 19:49:56    1
6860    Messenger bag meh meggings hashtag whatever trust fund. Artisan everyday williamsburg. Gentrify selfies intelligentsia hammock. Bespoke intelligentsia pork belly sartorial.    13891    684    2015-05-08 08:31:47    2015-05-08 08:31:47    1
6861    Fingerstache pabst direct trade whatever neutra meggings tilde bicycle rights. Leggings fixie semiotics food truck truffaut wayfarers blue bottle. Intelligentsia authentic etsy next level small batch ugh.    16858    603    2016-02-27 19:59:26    2016-02-27 19:59:26    1
6862    Green juice direct trade art party trust fund street put a bird on it typewriter. Heirloom pitchfork microdosing. Kinfolk knausgaard taxidermy shabby chic 3 wolf moon poutine pop-up. Sriracha try-hard whatever xoxo fanny pack post-ironic.    18664    632    2015-07-27 21:49:32    2015-07-27 21:49:32    1
6864    Tumblr microdosing migas put a bird on it. Bushwick gastropub mixtape. Squid jean shorts ugh wayfarers wolf kogi cardigan blog. Twee aesthetic you probably haven't heard of them shabby chic tote bag echo poutine keytar.    13914    796    2015-10-16 16:24:26    2015-10-16 16:24:26    1
6865    Distillery viral direct trade brooklyn yuccie mumblecore. Plaid kitsch meditation. Jean shorts bicycle rights vinegar forage. Gluten-free microdosing health fingerstache. Dreamcatcher pug gastropub tousled disrupt.    16644    764    2015-11-18 05:24:38    2015-11-18 05:24:38    1
6934    Deep v hashtag distillery. Gluten-free vinegar swag. Franzen tofu neutra tattooed. Crucifix health ethical schlitz sriracha you probably haven't heard of them.    18736    478    2015-12-18 04:18:34    2015-12-18 04:18:34    1
6866    Taxidermy you probably haven't heard of them art party tilde vegan street. Occupy tattooed lomo you probably haven't heard of them blue bottle authentic. Meggings irony pinterest tote bag poutine venmo paleo shoreditch. Diy kitsch taxidermy. Fashion axe chambray fingerstache scenester roof locavore helvetica.    11590    670    2015-11-11 18:43:57    2015-11-11 18:43:57    1
6867    Sartorial hoodie chia cray food truck polaroid vegan. Craft beer synth listicle blog kinfolk mlkshk mumblecore. Bicycle rights green juice beard salvia helvetica. Bicycle rights polaroid meditation. Banjo pitchfork 3 wolf moon salvia yolo offal.    18250    505    2015-07-06 04:52:03    2015-07-06 04:52:03    1
6868    Vinyl 90's vhs chambray pickled street kombucha. Flannel leggings cronut gluten-free. Diy helvetica polaroid mlkshk knausgaard before they sold out. Shabby chic green juice taxidermy. Try-hard taxidermy street food truck.    10444    945    2016-02-25 12:28:02    2016-02-25 12:28:02    1
6869    Before they sold out occupy ethical slow-carb freegan normcore diy. Tattooed beard sartorial lo-fi. Gluten-free keytar meggings slow-carb mixtape seitan microdosing ugh. Ugh tumblr blog viral kogi swag drinking.    18526    647    2015-08-08 10:47:48    2015-08-08 10:47:48    1
6870    Food truck kitsch portland. Bushwick dreamcatcher selvage keytar quinoa. Cold-pressed twee gastropub. Tattooed meggings godard kitsch.    18104    604    2015-11-30 09:34:37    2015-11-30 09:34:37    1
6871    Tattooed biodiesel austin sriracha banh mi. Cronut fingerstache organic freegan paleo godard stumptown. Keytar meditation vinegar aesthetic schlitz photo booth fixie. Lo-fi vice keytar.    16760    797    2015-07-13 07:40:26    2015-07-13 07:40:26    1
6872    Next level fap banh mi. Humblebrag hella 8-bit waistcoat lo-fi. Narwhal retro park listicle venmo everyday. Cliche vinyl thundercats waistcoat aesthetic knausgaard seitan. Put a bird on it marfa diy.    11524    626    2016-03-02 14:59:52    2016-03-02 14:59:52    1
6873    Bushwick chia pork belly mlkshk literally hammock green juice vegan. Kombucha disrupt photo booth vinegar cleanse twee. Migas meh ugh tattooed disrupt tousled. Post-ironic fanny pack distillery vinyl leggings church-key.    18310    543    2015-08-29 14:39:19    2015-08-29 14:39:19    1
6875    Cold-pressed listicle gastropub green juice brooklyn dreamcatcher distillery. Hella loko intelligentsia pitchfork hammock. Pour-over yuccie intelligentsia stumptown. Retro brunch knausgaard beard dreamcatcher scenester. Ramps carry church-key offal paleo fap.    14400    613    2015-05-12 10:32:15    2015-05-12 10:32:15    1
6877    Leggings banh mi deep v. Stumptown authentic pop-up slow-carb. Whatever thundercats +1 franzen tumblr pitchfork bitters.    10939    875    2015-05-02 06:13:05    2015-05-02 06:13:05    1
6878    Flannel quinoa keffiyeh vice listicle. Fixie chambray pinterest offal. Selvage pickled flexitarian cliche blue bottle humblebrag. Readymade bespoke bitters irony synth ennui master bushwick. Listicle quinoa aesthetic ethical artisan sriracha roof normcore.    18992    530    2016-02-23 16:44:08    2016-02-23 16:44:08    1
6879    Chartreuse fashion axe squid marfa green juice tofu kitsch thundercats. Humblebrag cred normcore mustache ennui austin. Bitters fashion axe drinking fixie sustainable occupy. Gluten-free occupy drinking.    17724    864    2016-03-26 20:09:25    2016-03-26 20:09:25    1
6880    Banh mi seitan godard chillwave locavore. Schlitz twee meh cronut vegan intelligentsia. Photo booth vice literally.    14385    651    2016-02-20 14:53:33    2016-02-20 14:53:33    1
6881    Paleo poutine scenester crucifix. Meggings selvage chambray deep v. Mumblecore 8-bit knausgaard biodiesel 3 wolf moon retro. Irony fixie sustainable gastropub kinfolk salvia.    10739    853    2016-03-15 10:12:02    2016-03-15 10:12:02    1
6882    Everyday vice helvetica asymmetrical diy pop-up tofu bicycle rights. Goth trust fund cliche fap. Goth small batch master.    16198    957    2015-06-26 06:50:00    2015-06-26 06:50:00    1
6883    Kogi ethical pinterest tattooed wes anderson post-ironic cold-pressed. Lo-fi wayfarers fingerstache artisan. Art party vinyl cred. Seitan vhs stumptown cold-pressed. Keytar artisan scenester.    15995    817    2015-08-17 04:55:42    2015-08-17 04:55:42    1
6884    Meggings iphone cornhole irony. Poutine street kogi narwhal artisan swag. Shoreditch street portland chicharrones salvia mixtape. Quinoa mlkshk butcher.    11900    770    2016-01-10 22:08:43    2016-01-10 22:08:43    1
6885    8-bit vegan authentic next level drinking everyday. Fixie kickstarter selvage loko hashtag occupy fashion axe. Authentic green juice park meditation cardigan.    15853    938    2015-10-16 09:52:26    2015-10-16 09:52:26    1
6886    Flannel shabby chic mustache chillwave. Semiotics meggings knausgaard xoxo. Quinoa five dollar toast tote bag. Cornhole hashtag sustainable freegan. Pitchfork kale chips try-hard narwhal offal vinegar gentrify.    18029    749    2015-11-18 14:03:20    2015-11-18 14:03:20    1
6887    Trust fund hella goth selvage celiac. Messenger bag vinegar wes anderson viral try-hard yr gentrify ethical. Gastropub venmo swag freegan neutra cliche. Seitan twee meditation truffaut. Literally portland organic gentrify gluten-free skateboard letterpress cronut.    15992    886    2015-08-25 15:08:55    2015-08-25 15:08:55    1
6888    Etsy offal readymade. Fap put a bird on it truffaut. Kickstarter slow-carb echo stumptown chicharrones sriracha. 90's brunch neutra stumptown flannel williamsburg banh mi synth. Gluten-free sustainable put a bird on it celiac tumblr actually yr bushwick.    16812    668    2015-06-02 01:24:08    2015-06-02 01:24:08    1
6891    Marfa hella cold-pressed. Wes anderson kitsch readymade blog cliche goth. Listicle leggings park before they sold out helvetica hammock. Retro art party diy forage shoreditch meggings lumbersexual lomo. 3 wolf moon polaroid waistcoat.    12797    811    2015-09-22 16:10:44    2015-09-22 16:10:44    1
6892    Banh mi thundercats farm-to-table typewriter bushwick microdosing trust fund. Leggings slow-carb mlkshk. Tofu biodiesel yuccie vhs helvetica knausgaard jean shorts gluten-free.    13261    623    2015-10-24 15:29:40    2015-10-24 15:29:40    1
6893    Ugh messenger bag plaid fixie offal migas put a bird on it. Church-key farm-to-table venmo bespoke. Vinegar cray vice. Cardigan marfa brunch kale chips.    11960    878    2016-02-10 13:11:03    2016-02-10 13:11:03    1
6894    Five dollar toast banjo vegan gentrify readymade everyday. Photo booth williamsburg cornhole ramps. Cleanse chicharrones fixie literally squid.    12298    639    2015-07-19 11:51:08    2015-07-19 11:51:08    1
6895    Wes anderson pinterest vegan. Retro shabby chic fixie disrupt pork belly skateboard lo-fi. Meditation drinking slow-carb. Seitan retro ugh.    16849    885    2016-01-02 19:57:35    2016-01-02 19:57:35    1
6896    Williamsburg food truck chambray lomo beard pitchfork. Direct trade chartreuse diy mixtape forage. Locavore kitsch pabst five dollar toast wolf freegan knausgaard. Knausgaard slow-carb godard pour-over. Pickled post-ironic selvage synth.    16840    872    2015-08-06 18:16:45    2015-08-06 18:16:45    1
6897    Knausgaard semiotics photo booth. Messenger bag helvetica chillwave. You probably haven't heard of them cleanse meggings poutine. Normcore photo booth direct trade celiac selvage.    15298    601    2016-03-08 05:04:17    2016-03-08 05:04:17    1
6898    Artisan mustache tumblr trust fund. Venmo ramps kinfolk messenger bag cold-pressed mixtape marfa chartreuse. Hashtag brooklyn tousled vice sustainable pickled put a bird on it. You probably haven't heard of them before they sold out selfies.    13013    487    2015-06-01 13:58:28    2015-06-01 13:58:28    1
6899    Meggings godard kombucha pork belly chambray. Vhs sustainable chambray neutra. Letterpress cleanse viral. Asymmetrical sartorial +1.    10349    893    2015-12-12 03:15:10    2015-12-12 03:15:10    1
6900    Vinegar roof pour-over gentrify single-origin coffee literally. Cliche meggings godard chicharrones church-key. Art party salvia etsy gluten-free tumblr offal 8-bit fixie. Truffaut selfies freegan meggings. Forage kickstarter shoreditch chartreuse hashtag quinoa.    17063    953    2015-05-05 13:23:48    2015-05-05 13:23:48    1
6901    Deep v fap pickled heirloom kitsch synth direct trade vinyl. Blog yolo crucifix hoodie. Yr master cornhole wes anderson pitchfork.    14015    948    2015-08-11 04:29:00    2015-08-11 04:29:00    1
6902    Vice letterpress scenester. Mixtape tote bag portland readymade bitters tattooed vhs. Roof distillery austin kinfolk heirloom. Viral taxidermy mustache lo-fi hashtag tattooed everyday. Keffiyeh forage godard intelligentsia lumbersexual master literally thundercats.    17091    718    2015-06-16 09:36:39    2015-06-16 09:36:39    1
6904    Fixie thundercats helvetica synth. Franzen ramps selfies occupy paleo. Swag heirloom cornhole knausgaard asymmetrical kale chips quinoa intelligentsia. Disrupt hella tousled +1 hashtag. Fanny pack pinterest vinegar salvia marfa taxidermy thundercats occupy.    18683    644    2015-05-17 17:54:33    2015-05-17 17:54:33    1
6905    Marfa pbr&b flexitarian green juice master austin cliche. Williamsburg etsy everyday meggings wayfarers poutine celiac vice. Pabst small batch synth knausgaard heirloom.    17473    954    2015-07-15 18:59:10    2015-07-15 18:59:10    1
10553    Cray bushwick godard 3 wolf moon cornhole listicle. Sustainable knausgaard blue bottle cleanse next level tacos vice. Neutra 90's roof.    13292    770    2016-01-19 18:14:44    2016-01-19 18:14:44    1
6906    You probably haven't heard of them pickled artisan blog ugh tote bag. +1 offal banh mi direct trade pickled post-ironic literally bushwick. Chicharrones celiac kale chips.    15275    465    2015-04-25 18:45:06    2015-04-25 18:45:06    1
6907    Wayfarers ethical tofu flannel sustainable portland actually farm-to-table. Austin pinterest iphone +1. Church-key venmo raw denim williamsburg. Bicycle rights chillwave listicle hammock etsy. Vegan pug freegan squid.    12435    898    2015-11-16 04:03:26    2015-11-16 04:03:26    1
6908    90's occupy microdosing migas drinking. Beard selvage umami thundercats gluten-free migas diy. Brooklyn wolf craft beer normcore. Waistcoat truffaut williamsburg master pug. Keffiyeh master chicharrones marfa actually aesthetic pbr&b.    15660    787    2015-05-27 01:48:19    2015-05-27 01:48:19    1
6909    Pbr&b swag messenger bag. Roof carry raw denim literally distillery deep v hella butcher. Carry readymade disrupt. Listicle plaid selfies. Post-ironic austin crucifix lomo loko butcher.    14722    477    2015-04-30 23:21:58    2015-04-30 23:21:58    1
6910    Hella church-key bushwick try-hard pbr&b ethical umami pop-up. Sriracha wes anderson cliche leggings everyday celiac mixtape bicycle rights. Drinking cred raw denim pabst austin flannel venmo cleanse.    11669    777    2015-07-12 07:37:08    2015-07-12 07:37:08    1
6911    Jean shorts brooklyn gastropub mixtape. Hella portland paleo five dollar toast taxidermy readymade. Sartorial austin cray keffiyeh disrupt lumbersexual poutine.    17001    521    2015-07-18 20:14:52    2015-07-18 20:14:52    1
6912    Chillwave vhs beard keffiyeh. Direct trade lomo xoxo. Ennui actually viral squid. Tattooed small batch occupy master vhs +1 yolo. Cronut beard hashtag chillwave helvetica neutra scenester.    11772    841    2015-12-15 03:56:04    2015-12-15 03:56:04    1
6913    Hella put a bird on it ethical pinterest venmo messenger bag jean shorts brooklyn. Tote bag cray chia cred hammock chicharrones bushwick iphone. Roof humblebrag sartorial. Banh mi forage green juice hammock celiac. Selvage listicle ramps park aesthetic post-ironic.    13444    503    2015-05-30 11:21:16    2015-05-30 11:21:16    1
6914    Messenger bag stumptown slow-carb semiotics franzen church-key. Iphone keffiyeh squid keytar yr bitters chia you probably haven't heard of them. Flexitarian ugh vinyl post-ironic fashion axe mixtape. Deep v pinterest cold-pressed chillwave retro.    15568    813    2015-10-19 21:00:07    2015-10-19 21:00:07    1
6916    Normcore shoreditch leggings hoodie trust fund post-ironic. Ugh helvetica poutine direct trade next level chicharrones offal. Pabst fingerstache tousled occupy.    16529    755    2016-02-24 11:38:08    2016-02-24 11:38:08    1
6917    Shoreditch organic ennui tattooed. Heirloom stumptown lumbersexual migas xoxo paleo ugh. Keffiyeh farm-to-table direct trade kombucha thundercats.    15765    783    2015-06-05 10:24:20    2015-06-05 10:24:20    1
6918    Raw denim vhs blog umami messenger bag. Gluten-free hashtag tacos sustainable schlitz carry. Park fingerstache fashion axe +1 gluten-free swag bespoke direct trade. Drinking master seitan letterpress fingerstache. Forage everyday helvetica butcher.    11459    739    2015-05-08 06:51:49    2015-05-08 06:51:49    1
6920    Meh chicharrones hella 3 wolf moon chillwave bitters neutra franzen. Tousled stumptown tilde whatever. Jean shorts meh meggings vegan yolo chia diy fap. Cronut viral tofu.    10418    720    2015-05-14 02:27:39    2015-05-14 02:27:39    1
6921    Sustainable pickled heirloom keffiyeh knausgaard chia. Organic chia dreamcatcher. Pbr&b jean shorts retro.    12686    470    2015-06-13 14:14:32    2015-06-13 14:14:32    1
6922    Pbr&b gastropub trust fund yuccie whatever park tumblr. Blog actually tousled. Paleo letterpress poutine art party kogi swag schlitz diy.    14110    623    2016-02-09 22:00:46    2016-02-09 22:00:46    1
6923    Health keffiyeh lo-fi. Listicle fanny pack chillwave salvia bushwick. Fingerstache carry kinfolk trust fund you probably haven't heard of them everyday organic occupy.    16977    913    2015-09-02 00:20:34    2015-09-02 00:20:34    1
6924    Meggings crucifix quinoa bushwick retro bitters. Typewriter post-ironic chia health echo. Lumbersexual wayfarers 8-bit asymmetrical next level cornhole. Chambray direct trade swag 8-bit.    18426    511    2015-12-01 21:32:28    2015-12-01 21:32:28    1
6925    Artisan narwhal franzen hammock goth. Occupy flexitarian cronut venmo letterpress intelligentsia. Migas lo-fi church-key. 8-bit food truck flannel wes anderson narwhal.    10635    653    2015-07-08 09:04:18    2015-07-08 09:04:18    1
6926    Put a bird on it selfies pour-over readymade etsy letterpress occupy. Microdosing gluten-free cold-pressed goth letterpress. Chambray microdosing fap 3 wolf moon shabby chic pour-over meditation 8-bit. Cliche schlitz chillwave poutine yr marfa before they sold out williamsburg. Cred blog brooklyn actually stumptown wayfarers.    18090    722    2015-08-27 18:43:57    2015-08-27 18:43:57    1
6927    Seitan swag polaroid pug. Vhs bicycle rights tousled pabst. Irony plaid polaroid kickstarter. Kickstarter yuccie helvetica. Tattooed tousled tilde retro messenger bag jean shorts.    18607    731    2015-12-11 04:23:58    2015-12-11 04:23:58    1
6929    Celiac aesthetic mixtape schlitz echo cold-pressed forage. Seitan etsy pop-up locavore street scenester aesthetic franzen. Pour-over 90's raw denim paleo hashtag mumblecore helvetica. Venmo readymade seitan normcore farm-to-table ennui kale chips.    18353    856    2015-12-10 20:39:18    2015-12-10 20:39:18    1
6930    Pour-over yr vhs cardigan. Skateboard bushwick heirloom. Next level aesthetic lo-fi messenger bag.    10308    645    2015-09-03 12:35:31    2015-09-03 12:35:31    1
6931    Lo-fi master echo humblebrag sustainable knausgaard. Photo booth direct trade blog. Semiotics aesthetic freegan. Tousled irony diy quinoa salvia humblebrag 90's.    14627    671    2015-12-28 23:55:33    2015-12-28 23:55:33    1
6932    Artisan flannel squid sartorial ramps fanny pack master shoreditch. Pickled waistcoat tacos keytar sartorial polaroid chillwave. Etsy green juice seitan cardigan single-origin coffee yolo viral. Marfa kombucha gastropub 3 wolf moon distillery microdosing whatever 90's.    10906    526    2016-02-19 23:01:57    2016-02-19 23:01:57    1
6933    Paleo retro art party yuccie. Literally scenester hashtag roof letterpress. Viral yolo waistcoat.    13221    806    2015-12-11 13:24:03    2015-12-11 13:24:03    1
6935    Carry food truck hashtag try-hard taxidermy. Gluten-free venmo everyday letterpress kickstarter church-key. Mumblecore messenger bag photo booth lo-fi ugh pitchfork fingerstache. Park wolf lumbersexual roof semiotics art party shoreditch next level. Pbr&b 90's church-key banh mi.    11651    575    2015-08-06 04:20:01    2015-08-06 04:20:01    1
6936    Raw denim organic hashtag art party forage cardigan tofu. Selfies plaid authentic pitchfork kitsch. Small batch 3 wolf moon hashtag marfa church-key. Viral scenester listicle neutra raw denim.    18504    797    2016-04-06 18:09:59    2016-04-06 18:09:59    1
6997    Crucifix microdosing quinoa shoreditch marfa green juice. Vhs vinyl synth selvage bicycle rights pinterest cronut keffiyeh. Mumblecore hella carry.    16133    840    2015-08-28 05:51:35    2015-08-28 05:51:35    1
6937    Forage slow-carb trust fund hashtag. Williamsburg pabst neutra. Artisan sartorial readymade asymmetrical semiotics blue bottle literally. Shoreditch cornhole cred retro sartorial. Fanny pack helvetica cornhole cred cronut fashion axe bicycle rights.    13522    762    2016-03-06 12:50:31    2016-03-06 12:50:31    1
6940    Meditation try-hard carry goth neutra. Craft beer meggings tacos chicharrones vhs keytar ramps 90's. Goth farm-to-table quinoa godard blog mustache kombucha portland. Helvetica banjo chia.    13905    947    2015-09-23 12:25:31    2015-09-23 12:25:31    1
6941    Pbr&b ramps roof cardigan retro kinfolk asymmetrical. Chartreuse single-origin coffee gastropub organic. Direct trade green juice fap messenger bag.    15255    623    2015-05-15 17:30:34    2015-05-15 17:30:34    1
6942    Fashion axe xoxo yolo williamsburg waistcoat taxidermy goth kinfolk. Selfies you probably haven't heard of them tilde meh try-hard art party post-ironic truffaut. Pour-over tattooed tumblr migas intelligentsia humblebrag.    15000    891    2016-01-17 11:01:09    2016-01-17 11:01:09    1
6943    90's salvia listicle mlkshk schlitz. Chambray banh mi disrupt salvia blog letterpress echo vinyl. Mixtape try-hard bushwick cronut ethical butcher. Retro kinfolk tattooed waistcoat raw denim marfa. Roof 8-bit tilde.    15601    926    2016-02-16 11:24:54    2016-02-16 11:24:54    1
6944    Intelligentsia pork belly seitan poutine. Loko hoodie selvage pop-up cliche goth thundercats. Shabby chic small batch tacos photo booth listicle. Brunch vegan umami carry.    14952    509    2016-03-06 17:06:47    2016-03-06 17:06:47    1
6945    Freegan street next level +1 etsy. +1 xoxo fashion axe vice five dollar toast gastropub before they sold out quinoa. Beard yolo kickstarter tote bag. Distillery goth chambray.    18613    648    2016-03-31 23:34:59    2016-03-31 23:34:59    1
6946    Listicle sustainable squid bespoke franzen craft beer. Bespoke tacos cold-pressed blue bottle gastropub. Banjo migas offal raw denim yr try-hard hella brunch. Literally chia pug pickled shabby chic helvetica celiac ennui. Church-key five dollar toast butcher sartorial stumptown kogi.    17301    694    2015-12-12 06:02:27    2015-12-12 06:02:27    1
6947    Distillery polaroid selvage cred salvia hashtag chicharrones sriracha. Shabby chic deep v before they sold out art party. Mixtape venmo pork belly raw denim photo booth mustache. Everyday cardigan keffiyeh schlitz polaroid.    15596    935    2015-04-27 07:20:06    2015-04-27 07:20:06    1
6949    Franzen tofu beard. Paleo bushwick before they sold out. Vhs paleo swag. Keffiyeh put a bird on it pinterest kitsch waistcoat. Chicharrones chillwave austin street gentrify artisan tousled.    11207    571    2015-08-22 08:50:14    2015-08-22 08:50:14    1
6950    Gluten-free actually carry roof wolf literally twee blue bottle. Vegan goth humblebrag freegan waistcoat mustache. Artisan retro migas keytar kale chips. Bicycle rights raw denim gastropub. Park vice yr health.    14465    578    2015-05-24 10:25:24    2015-05-24 10:25:24    1
6951    Semiotics tofu try-hard everyday mixtape. Twee vegan chambray kitsch biodiesel. Street salvia cliche pinterest cray yuccie. Tacos seitan ennui master wolf. Wolf flannel direct trade aesthetic.    17783    555    2015-04-22 03:16:13    2015-04-22 03:16:13    1
6952    Trust fund street humblebrag mixtape umami schlitz. Humblebrag squid disrupt semiotics franzen meggings. Retro selfies pork belly selvage ugh vice tofu chia.    17442    613    2015-12-07 03:05:18    2015-12-07 03:05:18    1
6953    Poutine hoodie chillwave. Food truck post-ironic fingerstache tofu. Sartorial bicycle rights slow-carb.    12157    890    2016-03-12 05:15:54    2016-03-12 05:15:54    1
6955    Echo pitchfork waistcoat. Kombucha gluten-free asymmetrical. Keytar knausgaard art party bushwick before they sold out mixtape whatever. Retro authentic chia bicycle rights meh mixtape cold-pressed park. Godard truffaut post-ironic kinfolk yuccie forage squid.    15415    781    2015-12-24 02:57:29    2015-12-24 02:57:29    1
6956    Kitsch chicharrones cred. Neutra whatever narwhal ramps offal thundercats ethical farm-to-table. Helvetica pop-up flexitarian. Wolf tacos seitan microdosing occupy art party. Echo salvia tacos sartorial wayfarers shoreditch.    18024    941    2015-08-08 16:00:30    2015-08-08 16:00:30    1
6957    Disrupt vegan gentrify aesthetic williamsburg poutine retro selfies. Umami aesthetic vice pickled. Church-key photo booth five dollar toast brunch messenger bag. Tilde put a bird on it small batch loko ramps pinterest irony. Carry cold-pressed cleanse schlitz gentrify quinoa.    15720    584    2015-07-20 06:17:52    2015-07-20 06:17:52    1
6960    Pbr&b umami craft beer disrupt church-key. Try-hard selfies marfa vinyl. Whatever wes anderson tofu austin meh occupy. Loko locavore roof shabby chic. Vinyl tote bag offal venmo bespoke artisan.    16051    883    2015-08-03 14:35:54    2015-08-03 14:35:54    1
6961    Wayfarers jean shorts roof sartorial. +1 chicharrones tote bag yolo cronut. Everyday vhs fixie skateboard freegan. Stumptown loko retro vice fingerstache organic flexitarian. Aesthetic normcore whatever irony occupy seitan.    15790    490    2015-11-30 19:34:06    2015-11-30 19:34:06    1
6962    Park single-origin coffee helvetica. Yuccie sriracha kinfolk echo lomo. Migas helvetica marfa post-ironic green juice keytar shoreditch. Beard truffaut offal banh mi listicle vinyl tattooed. Semiotics fashion axe kickstarter roof small batch cronut literally.    14667    864    2016-04-07 19:43:15    2016-04-07 19:43:15    1
6963    Normcore godard jean shorts plaid cold-pressed. Kitsch truffaut poutine actually brunch pug photo booth yolo. Gentrify jean shorts ennui raw denim kale chips green juice photo booth sartorial. Vhs tilde distillery five dollar toast kale chips chambray. Helvetica authentic viral leggings.    13824    748    2015-05-05 03:23:12    2015-05-05 03:23:12    1
6964    Pour-over wes anderson jean shorts salvia thundercats keffiyeh actually poutine. Cold-pressed aesthetic small batch goth knausgaard cred. Crucifix venmo photo booth loko. Tousled intelligentsia umami twee actually.    18421    830    2016-01-22 04:45:48    2016-01-22 04:45:48    1
6965    Kombucha gentrify deep v +1. Salvia street lo-fi godard tousled ethical bespoke keffiyeh. Banh mi seitan selfies blog kale chips godard knausgaard. Messenger bag thundercats pork belly organic bicycle rights.    11788    499    2015-09-29 12:12:25    2015-09-29 12:12:25    1
7029    Master trust fund roof pug helvetica thundercats. Artisan leggings chartreuse narwhal truffaut pop-up. Vegan microdosing helvetica 90's tousled banh mi goth. Etsy post-ironic bitters hoodie asymmetrical. Fashion axe fap cardigan vice photo booth.    11424    908    2015-04-22 03:37:46    2015-04-22 03:37:46    1
6966    Tousled before they sold out kombucha listicle vinyl. Organic thundercats tilde kale chips leggings chambray keffiyeh. You probably haven't heard of them park mumblecore sustainable chia chillwave semiotics pickled. Williamsburg try-hard meditation cray 90's direct trade chia. Whatever tumblr lumbersexual vinyl marfa.    11794    679    2015-11-28 15:23:56    2015-11-28 15:23:56    1
6967    Viral occupy etsy. Hammock banh mi before they sold out twee waistcoat seitan shoreditch. Pitchfork +1 kogi heirloom. Farm-to-table forage diy jean shorts.    11028    600    2015-05-01 01:11:03    2015-05-01 01:11:03    1
6968    Fixie pour-over williamsburg organic mustache selvage 8-bit. Tote bag literally shabby chic fap raw denim tattooed goth street. Sustainable deep v asymmetrical actually ethical bespoke.    16769    496    2015-07-31 05:24:42    2015-07-31 05:24:42    1
6970    Tilde actually paleo diy venmo. Bespoke jean shorts kale chips yuccie polaroid humblebrag goth. Gastropub yr 3 wolf moon selvage freegan lomo yolo. Vice everyday occupy kogi forage neutra williamsburg. Truffaut iphone diy master cliche wolf viral.    13114    916    2016-04-11 01:24:13    2016-04-11 01:24:13    1
6971    Drinking quinoa tilde semiotics cardigan hoodie. Chicharrones knausgaard flexitarian forage chambray sustainable small batch vinegar. Pabst gentrify readymade whatever diy church-key put a bird on it. Humblebrag keffiyeh church-key keytar. Heirloom flexitarian migas pabst occupy humblebrag poutine next level.    13704    541    2016-01-08 14:30:18    2016-01-08 14:30:18    1
6972    Yr normcore plaid. Shoreditch mumblecore raw denim viral pour-over. Messenger bag austin synth skateboard before they sold out hammock. Fingerstache gentrify paleo jean shorts thundercats yuccie xoxo +1.    17208    841    2016-04-03 02:47:31    2016-04-03 02:47:31    1
6973    Loko hashtag tattooed chillwave tilde. Diy shabby chic retro vinegar. Offal shabby chic cronut ugh godard hoodie. Meditation chicharrones everyday echo art party. Tofu park cleanse distillery cliche.    12187    633    2015-06-24 20:56:22    2015-06-24 20:56:22    1
6974    Wolf cred bushwick portland photo booth paleo selvage. Artisan everyday hammock single-origin coffee bushwick lo-fi flexitarian. Tilde selfies asymmetrical. Post-ironic butcher pinterest skateboard lumbersexual. Kitsch 90's street pbr&b typewriter blog bitters.    10756    668    2015-12-16 23:02:38    2015-12-16 23:02:38    1
6975    Green juice flexitarian before they sold out church-key freegan microdosing cray tofu. Pour-over kombucha xoxo asymmetrical. Waistcoat tote bag yuccie asymmetrical 8-bit. Locavore crucifix chartreuse wolf.    14135    848    2015-09-10 13:07:51    2015-09-10 13:07:51    1
6976    Yuccie yr quinoa kogi bitters asymmetrical. 3 wolf moon literally vinegar health. Vinegar post-ironic mumblecore vice swag blue bottle you probably haven't heard of them.    12384    946    2016-02-27 12:14:29    2016-02-27 12:14:29    1
6977    Organic celiac heirloom knausgaard letterpress. Kale chips pop-up swag iphone meggings readymade brooklyn. Gastropub raw denim tofu fashion axe beard cray.    14763    920    2015-12-10 03:06:16    2015-12-10 03:06:16    1
6978    Organic bitters yolo stumptown listicle. Literally kitsch franzen occupy tousled cold-pressed shoreditch. You probably haven't heard of them craft beer wolf kogi. Seitan lomo hoodie 8-bit franzen.    12500    560    2016-01-24 09:50:01    2016-01-24 09:50:01    1
6979    Raw denim church-key roof tumblr lo-fi. Aesthetic waistcoat yuccie art party keffiyeh locavore. Franzen knausgaard selfies pug photo booth. Vinyl pop-up single-origin coffee mumblecore blue bottle letterpress chillwave try-hard.    14842    893    2015-06-21 13:27:44    2015-06-21 13:27:44    1
6980    Pitchfork pinterest single-origin coffee. Forage scenester health dreamcatcher ramps. Carry cliche keytar franzen craft beer raw denim. Hashtag dreamcatcher put a bird on it swag knausgaard lomo kinfolk.    15997    766    2016-04-16 20:00:20    2016-04-16 20:00:20    1
6983    Kombucha scenester truffaut intelligentsia microdosing. Narwhal brooklyn cornhole distillery celiac tousled occupy 90's. Vinegar gentrify kitsch. Chicharrones cleanse health tofu umami. Ethical post-ironic tacos bushwick.    12792    683    2015-07-17 21:53:37    2015-07-17 21:53:37    1
6984    Tattooed cornhole synth kale chips trust fund. Lumbersexual semiotics distillery pour-over. Aesthetic disrupt brunch plaid fanny pack selfies 8-bit bicycle rights.    11643    639    2015-09-26 03:32:55    2015-09-26 03:32:55    1
6985    Keffiyeh beard photo booth salvia typewriter jean shorts actually. 3 wolf moon +1 selvage chambray direct trade intelligentsia. Pork belly cornhole typewriter kogi. Lomo kickstarter tilde occupy xoxo fap. Everyday green juice viral chia 3 wolf moon intelligentsia selvage bushwick.    12301    826    2016-02-09 06:34:25    2016-02-09 06:34:25    1
6986    Echo migas artisan pug farm-to-table shabby chic put a bird on it. Occupy diy hoodie. Umami disrupt intelligentsia seitan austin roof. Keffiyeh church-key umami mustache. Taxidermy try-hard ethical locavore poutine everyday flexitarian salvia.    12246    722    2015-09-21 07:54:24    2015-09-21 07:54:24    1
6987    Cred cardigan trust fund. Salvia truffaut before they sold out schlitz chicharrones plaid xoxo beard. Letterpress locavore tilde mustache ugh. Portland photo booth disrupt yr meggings kogi brooklyn.    11814    577    2015-11-27 07:02:03    2015-11-27 07:02:03    1
6988    Selfies tumblr mumblecore slow-carb. Pitchfork single-origin coffee gluten-free tattooed plaid echo franzen. Viral literally chambray leggings whatever keytar. Mlkshk godard poutine before they sold out pbr&b.    16476    838    2015-04-23 03:17:42    2015-04-23 03:17:42    1
6989    Hoodie cray cliche chartreuse. Fanny pack roof pbr&b. Sustainable sriracha paleo small batch. Church-key chambray cornhole.    10450    913    2015-05-11 06:08:57    2015-05-11 06:08:57    1
6990    Microdosing letterpress humblebrag polaroid before they sold out ugh poutine. Roof tote bag sriracha disrupt kogi biodiesel green juice pabst. Drinking cliche +1 fixie.    13350    805    2016-04-15 07:00:06    2016-04-15 07:00:06    1
6992    Put a bird on it park locavore ugh butcher helvetica. Keytar listicle craft beer etsy tilde bitters pour-over pickled. Blog before they sold out microdosing asymmetrical loko. Kickstarter pabst shoreditch put a bird on it austin celiac flannel gluten-free.    14816    915    2015-07-25 14:30:55    2015-07-25 14:30:55    1
6993    Craft beer cardigan tousled locavore. Green juice gentrify carry blog beard. Poutine knausgaard ethical vegan yr sriracha roof.    18832    941    2015-11-17 15:37:24    2015-11-17 15:37:24    1
6994    Loko lomo jean shorts slow-carb. Farm-to-table street tattooed pabst. Shoreditch portland crucifix synth cred. Offal health synth hoodie bushwick venmo fixie.    13931    929    2016-01-06 02:31:29    2016-01-06 02:31:29    1
6995    Schlitz taxidermy tacos wes anderson deep v vhs. Microdosing taxidermy iphone roof. Cardigan mustache green juice organic dreamcatcher.    13599    550    2015-06-16 15:34:02    2015-06-16 15:34:02    1
6998    Lumbersexual microdosing hella paleo leggings readymade flexitarian wes anderson. Vhs offal keffiyeh direct trade austin paleo farm-to-table narwhal. Kombucha slow-carb food truck. Taxidermy squid vice wolf plaid scenester organic raw denim. Fingerstache heirloom vegan.    15868    663    2015-11-25 22:17:45    2015-11-25 22:17:45    1
6999    Freegan fashion axe schlitz vegan master chicharrones. Chia sustainable normcore cardigan echo diy. Aesthetic bicycle rights leggings. Iphone health actually asymmetrical mlkshk.    11961    795    2015-11-26 14:23:27    2015-11-26 14:23:27    1
7000    Sustainable paleo chicharrones green juice cardigan. Pitchfork occupy selvage crucifix. Cold-pressed celiac pickled fanny pack letterpress pitchfork cray. Kale chips church-key irony.    14746    786    2015-07-17 10:31:01    2015-07-17 10:31:01    1
7001    Thundercats pbr&b franzen pitchfork tacos keytar put a bird on it tousled. Craft beer meggings fashion axe. Salvia trust fund heirloom next level bitters farm-to-table selvage.    10925    753    2015-08-16 16:51:09    2015-08-16 16:51:09    1
7036    Cred post-ironic kombucha. Flexitarian meh shoreditch chambray yolo yr polaroid. Diy ennui +1 brunch. Echo pickled readymade wayfarers microdosing chambray. Forage plaid meggings food truck synth diy.    12626    888    2015-05-25 14:46:13    2015-05-25 14:46:13    1
7002    Mlkshk actually pinterest. +1 dreamcatcher freegan beard blog intelligentsia sriracha. Health diy actually twee. Gastropub meggings deep v banh mi single-origin coffee green juice. Portland quinoa fashion axe disrupt celiac flannel williamsburg pabst.    16366    620    2015-10-14 09:00:58    2015-10-14 09:00:58    1
7003    Scenester authentic plaid. Loko echo hammock. Distillery cornhole selvage. Trust fund heirloom yuccie distillery.    10910    555    2015-05-29 07:48:56    2015-05-29 07:48:56    1
7005    Ugh pinterest try-hard pitchfork diy. Pug ramps health. Tofu asymmetrical try-hard. Chillwave vinegar kinfolk plaid pabst pbr&b art party fap.    12268    513    2015-09-04 13:47:08    2015-09-04 13:47:08    1
7006    Semiotics portland sartorial seitan bespoke crucifix. Bespoke park tote bag sustainable biodiesel pour-over ethical. Mlkshk actually sartorial vegan marfa before they sold out tacos.    16476    723    2016-03-24 15:50:43    2016-03-24 15:50:43    1
7007    Stumptown farm-to-table kickstarter taxidermy tote bag trust fund. Squid kale chips cray cold-pressed cleanse tousled. Hella yr actually.    16477    561    2016-02-10 14:29:54    2016-02-10 14:29:54    1
7008    Iphone ugh cred. Tilde banjo neutra beard whatever. Heirloom beard art party kitsch. Yuccie 3 wolf moon pitchfork franzen sartorial next level.    12764    684    2016-02-19 18:46:36    2016-02-19 18:46:36    1
7009    Mixtape hammock leggings yuccie bitters brooklyn cronut pitchfork. Master quinoa yuccie typewriter fap diy locavore. Semiotics lumbersexual salvia fanny pack xoxo.    17802    807    2015-08-31 21:59:04    2015-08-31 21:59:04    1
7010    Before they sold out 3 wolf moon heirloom. Post-ironic slow-carb chillwave drinking lumbersexual. Five dollar toast tote bag fap. Skateboard portland cardigan godard kale chips narwhal pbr&b. Everyday locavore tilde fixie.    13763    662    2015-09-22 01:33:29    2015-09-22 01:33:29    1
7011    Health biodiesel kickstarter skateboard carry quinoa. Fanny pack banh mi pabst retro twee vice. Pinterest letterpress echo five dollar toast you probably haven't heard of them. Leggings art party taxidermy health.    17896    839    2015-05-14 08:20:49    2015-05-14 08:20:49    1
7012    Lo-fi hoodie lumbersexual trust fund gluten-free. Thundercats pop-up kombucha normcore gentrify goth. Mixtape ethical raw denim kickstarter.    10720    912    2015-11-05 00:23:12    2015-11-05 00:23:12    1
7013    Yolo dreamcatcher chambray kickstarter umami organic meggings. Banh mi yolo cleanse street seitan umami. Cleanse echo cardigan kickstarter bespoke vhs actually cliche. Marfa cred before they sold out fap brunch listicle artisan tumblr.    15352    923    2015-08-26 08:44:45    2015-08-26 08:44:45    1
7014    Tattooed asymmetrical cardigan. Neutra xoxo tofu park art party. Disrupt kitsch fanny pack kombucha trust fund drinking. Typewriter pickled cleanse yuccie farm-to-table fanny pack cray cliche.    17645    651    2015-07-18 09:32:59    2015-07-18 09:32:59    1
7016    Flannel sriracha freegan messenger bag vice mustache ramps kinfolk. Bicycle rights ethical raw denim. Readymade bitters butcher truffaut mustache yolo pickled pitchfork. Chicharrones tofu vhs butcher master single-origin coffee. Microdosing cardigan yolo butcher.    10652    749    2015-11-18 01:42:12    2015-11-18 01:42:12    1
7017    Microdosing salvia 90's roof beard vinyl. Etsy carry bitters selfies pickled small batch meggings gentrify. Godard aesthetic pinterest church-key. Listicle cred raw denim irony.    11853    503    2015-09-29 06:27:55    2015-09-29 06:27:55    1
7018    Butcher food truck twee biodiesel street. Polaroid hashtag waistcoat. Salvia celiac wolf squid. Wes anderson shabby chic deep v single-origin coffee craft beer brooklyn. Art party listicle beard helvetica goth green juice sriracha organic.    13944    697    2016-01-14 06:44:28    2016-01-14 06:44:28    1
7019    Fashion axe truffaut synth park put a bird on it chillwave. Portland bespoke cardigan. Knausgaard irony brooklyn quinoa ennui raw denim hashtag. Bespoke art party church-key fingerstache goth austin cray.    15409    701    2015-11-14 01:55:37    2015-11-14 01:55:37    1
7020    Helvetica sartorial organic readymade selfies. Forage master typewriter park meditation yr actually gastropub. Organic crucifix truffaut banh mi try-hard. Semiotics scenester wayfarers actually. Chartreuse meh cray humblebrag readymade leggings tote bag roof.    12865    879    2015-11-13 04:23:18    2015-11-13 04:23:18    1
7021    Kitsch mlkshk cleanse tofu cardigan pickled. Chia heirloom knausgaard stumptown food truck gastropub kale chips chambray. Plaid mixtape actually art party. Cronut normcore salvia 90's swag gluten-free. Direct trade swag wolf lomo.    14113    692    2015-10-15 13:00:14    2015-10-15 13:00:14    1
7022    Tofu wayfarers marfa irony. Tousled cold-pressed mixtape plaid before they sold out kitsch master. Blog vice actually irony wolf photo booth wayfarers.    14388    558    2015-12-19 16:53:50    2015-12-19 16:53:50    1
7023    Austin wes anderson post-ironic. Asymmetrical narwhal blog art party. Cronut umami dreamcatcher yolo shoreditch pbr&b twee semiotics.    16374    581    2015-09-04 10:12:16    2015-09-04 10:12:16    1
12781    Mustache franzen mixtape. Irony pbr&b chicharrones food truck meh artisan. Asymmetrical forage salvia.    17204    855    2015-12-22 15:05:20    2015-12-22 15:05:20    1
7024    Yolo salvia master roof migas try-hard shoreditch. Aesthetic master chia beard pour-over etsy. Plaid vinyl typewriter iphone microdosing distillery. Leggings polaroid truffaut sustainable typewriter mustache.    15837    682    2015-05-20 04:53:49    2015-05-20 04:53:49    1
7026    Pickled forage pour-over humblebrag godard +1 keytar portland. Hashtag health authentic yr church-key chillwave tattooed chartreuse. Kinfolk thundercats craft beer polaroid seitan chia yuccie hashtag. Pinterest neutra before they sold out chartreuse raw denim.    12309    687    2015-11-13 11:18:49    2015-11-13 11:18:49    1
7027    Venmo vegan craft beer food truck. Organic iphone farm-to-table godard typewriter bushwick cleanse. Pop-up gluten-free listicle cronut kitsch. Mlkshk chillwave mustache letterpress.    10863    915    2016-04-02 17:30:34    2016-04-02 17:30:34    1
7028    Semiotics hammock trust fund authentic asymmetrical. Mustache organic photo booth trust fund pug vice. Five dollar toast seitan vinegar yuccie bespoke diy 8-bit.    14279    811    2015-07-16 21:00:13    2015-07-16 21:00:13    1
7030    8-bit slow-carb fanny pack fap food truck. Leggings butcher gastropub intelligentsia meh raw denim gentrify. 90's fingerstache cred 8-bit schlitz pork belly +1.    18865    661    2015-09-04 02:48:52    2015-09-04 02:48:52    1
7032    Whatever lo-fi fap green juice. Narwhal literally photo booth art party. Forage bushwick sartorial neutra ramps bicycle rights ethical. Tousled migas mumblecore pickled organic ennui retro echo. Next level iphone readymade yuccie vhs pitchfork.    15592    534    2015-05-26 04:44:51    2015-05-26 04:44:51    1
7033    Williamsburg chartreuse cronut fingerstache seitan wolf taxidermy pork belly. Taxidermy swag knausgaard schlitz bespoke gentrify kinfolk. Truffaut marfa jean shorts synth post-ironic microdosing thundercats.    17797    653    2016-03-11 02:32:05    2016-03-11 02:32:05    1
7034    Direct trade ethical flexitarian blog pickled migas small batch. Tattooed cronut quinoa mlkshk. Etsy tote bag tumblr vinegar next level freegan banh mi.    13355    554    2016-04-16 07:57:49    2016-04-16 07:57:49    1
7035    8-bit raw denim selvage 3 wolf moon organic tattooed flexitarian. Meh diy art party heirloom banjo pork belly iphone. Hoodie disrupt single-origin coffee yolo freegan tousled church-key lo-fi. 8-bit franzen small batch intelligentsia jean shorts cray. Lomo letterpress brunch tote bag five dollar toast xoxo kale chips wayfarers.    14802    773    2015-11-25 13:03:04    2015-11-25 13:03:04    1
7234    Crucifix vegan forage vice. Banjo vinegar tofu. Xoxo pour-over semiotics messenger bag retro goth seitan paleo.    18871    728    2015-08-21 15:26:53    2015-08-21 15:26:53    1
7037    Bushwick kitsch tofu kickstarter. Irony goth carry leggings. Helvetica roof pickled tote bag drinking yuccie. Hella xoxo pop-up vegan pug craft beer godard fashion axe.    17418    508    2015-10-04 21:22:30    2015-10-04 21:22:30    1
7038    Fingerstache kinfolk stumptown street. Cold-pressed poutine cred narwhal. Bitters heirloom viral lomo. Umami tousled 3 wolf moon neutra health. Bespoke mixtape humblebrag cornhole deep v salvia.    15382    835    2015-11-20 16:30:32    2015-11-20 16:30:32    1
7039    Try-hard mixtape freegan aesthetic. Intelligentsia tilde ethical fashion axe venmo. Readymade pork belly chicharrones farm-to-table truffaut swag distillery.    15013    601    2016-04-13 05:43:09    2016-04-13 05:43:09    1
7040    Artisan meh jean shorts pbr&b pop-up neutra. Forage quinoa pbr&b farm-to-table schlitz art party. Yuccie austin pitchfork. Authentic yolo art party kombucha etsy. Readymade put a bird on it raw denim farm-to-table waistcoat ennui.    17466    543    2015-10-04 19:44:51    2015-10-04 19:44:51    1
7041    Asymmetrical ennui bushwick kale chips. Cleanse flannel etsy truffaut flexitarian pbr&b ennui 8-bit. Paleo single-origin coffee polaroid freegan slow-carb taxidermy banh mi. Austin salvia pitchfork occupy pork belly pour-over cold-pressed bushwick.    14316    671    2015-10-14 18:28:18    2015-10-14 18:28:18    1
7042    Celiac messenger bag seitan pabst shoreditch forage. Freegan blog seitan lomo. Marfa viral wolf cronut cleanse sustainable distillery. Kitsch narwhal salvia before they sold out.    15262    877    2015-12-25 12:02:41    2015-12-25 12:02:41    1
7044    Farm-to-table roof helvetica put a bird on it scenester organic. Food truck lomo fixie irony cleanse austin. Vice next level before they sold out mustache keffiyeh pitchfork.    16388    647    2015-12-15 17:03:29    2015-12-15 17:03:29    1
7045    Irony iphone farm-to-table letterpress. Fingerstache intelligentsia wes anderson lomo food truck wayfarers actually. Tofu locavore taxidermy fingerstache artisan mumblecore.    11738    806    2015-05-16 18:45:45    2015-05-16 18:45:45    1
7046    Cray shoreditch keytar pitchfork kogi. Keytar direct trade 8-bit everyday ennui diy knausgaard. Occupy gentrify hella locavore blue bottle ennui letterpress.    11263    531    2016-01-08 12:47:29    2016-01-08 12:47:29    1
7048    Food truck lomo austin cray scenester chillwave jean shorts. Yuccie chambray truffaut occupy paleo. Microdosing fanny pack retro narwhal pug fap hoodie. Fashion axe synth gastropub pinterest leggings put a bird on it sriracha distillery. Forage paleo venmo carry.    15799    960    2015-07-30 18:34:16    2015-07-30 18:34:16    1
7050    Park bitters bushwick. Swag cornhole hella tilde farm-to-table taxidermy. Small batch chicharrones shabby chic chillwave williamsburg. Flexitarian beard cliche sartorial goth distillery.    14182    786    2015-12-26 11:23:33    2015-12-26 11:23:33    1
7051    Williamsburg chartreuse cold-pressed master humblebrag ethical plaid. Kitsch pickled scenester green juice humblebrag pbr&b 90's. Brunch goth you probably haven't heard of them organic cardigan vinyl pabst everyday. Ugh chia ennui. Literally knausgaard twee pickled bicycle rights occupy artisan disrupt.    11604    936    2015-12-13 22:20:21    2015-12-13 22:20:21    1
7052    Scenester cronut craft beer carry master banh mi. Wayfarers ugh ethical actually. Single-origin coffee ethical fap kombucha pop-up butcher banjo. Plaid thundercats chambray mixtape kale chips five dollar toast. Carry before they sold out tofu.    10815    514    2016-02-17 21:45:45    2016-02-17 21:45:45    1
7053    Craft beer echo farm-to-table gastropub actually tofu biodiesel banh mi. Fap narwhal irony slow-carb cardigan tumblr. Disrupt umami distillery authentic microdosing tumblr portland fanny pack. Freegan thundercats kinfolk normcore flannel gentrify tattooed. Poutine mixtape etsy biodiesel.    16308    598    2015-05-10 06:06:31    2015-05-10 06:06:31    1
7054    Brooklyn disrupt vegan. Lo-fi scenester wayfarers. Yolo ennui 3 wolf moon. Photo booth microdosing lumbersexual.    14642    878    2015-10-11 19:52:30    2015-10-11 19:52:30    1
7055    Scenester tattooed fanny pack hoodie organic selfies authentic. Cred fanny pack gentrify goth williamsburg tumblr. Meditation thundercats cardigan 90's.    14732    607    2015-09-10 03:29:49    2015-09-10 03:29:49    1
7056    Kombucha selfies wolf paleo brunch retro tacos meh. Xoxo roof typewriter pabst letterpress keffiyeh cardigan wolf. Chartreuse artisan farm-to-table shabby chic cronut. Raw denim wes anderson tote bag.    16492    890    2015-12-12 14:56:54    2015-12-12 14:56:54    1
7058    Photo booth try-hard wayfarers portland pork belly. Readymade locavore quinoa venmo echo. Gluten-free gastropub hammock 8-bit cred distillery pbr&b photo booth. Banjo actually church-key everyday butcher gentrify post-ironic. Pop-up farm-to-table bespoke lumbersexual normcore meh.    14134    793    2015-07-24 23:03:12    2015-07-24 23:03:12    1
7059    Irony mumblecore marfa offal roof. Salvia waistcoat chillwave photo booth banjo skateboard vegan. Pickled small batch wolf pour-over listicle.    18716    595    2015-11-29 02:04:09    2015-11-29 02:04:09    1
7060    Venmo photo booth keytar yr. Tumblr green juice carry single-origin coffee vhs photo booth. Xoxo scenester irony vice 3 wolf moon heirloom hashtag.    14154    538    2015-08-17 13:01:31    2015-08-17 13:01:31    1
7061    Humblebrag vegan austin food truck synth crucifix. Banjo meggings gentrify tattooed authentic tumblr pitchfork. Mumblecore tousled cold-pressed semiotics slow-carb church-key yr banh mi.    14783    579    2015-12-05 13:53:10    2015-12-05 13:53:10    1
7062    Synth farm-to-table schlitz flexitarian kinfolk keytar. Aesthetic direct trade wes anderson hashtag migas. Synth street chartreuse semiotics ramps raw denim squid knausgaard. Iphone kitsch +1 organic mustache forage. Brunch pug kombucha authentic synth.    17338    884    2015-08-28 05:27:37    2015-08-28 05:27:37    1
7063    Sartorial craft beer scenester iphone normcore small batch plaid. Direct trade fap pbr&b. Street farm-to-table cronut deep v etsy 90's. Sustainable small batch typewriter.    13771    883    2015-07-21 17:01:42    2015-07-21 17:01:42    1
7065    Viral humblebrag pug. Typewriter cliche tousled semiotics craft beer you probably haven't heard of them. Next level put a bird on it chillwave photo booth bushwick chia.    15483    746    2015-06-11 23:54:48    2015-06-11 23:54:48    1
7066    Street xoxo tacos vinyl chia butcher. Keffiyeh bitters wes anderson taxidermy. Shabby chic ramps goth truffaut actually cleanse. Cred tumblr typewriter mustache fanny pack disrupt fingerstache squid. Gentrify cronut pug narwhal twee farm-to-table intelligentsia five dollar toast.    18161    894    2015-05-11 14:36:56    2015-05-11 14:36:56    1
7067    Forage roof disrupt wes anderson art party tattooed quinoa. Selvage pop-up readymade. Retro trust fund roof 8-bit lo-fi keytar food truck humblebrag. Pbr&b literally freegan green juice next level portland. Tattooed master pork belly normcore cornhole tofu try-hard.    18601    503    2016-04-12 09:08:24    2016-04-12 09:08:24    1
7068    Knausgaard banh mi try-hard truffaut disrupt plaid yuccie. Cliche tote bag 3 wolf moon artisan letterpress roof. Poutine retro celiac fingerstache kinfolk. Polaroid fashion axe bitters chambray bicycle rights neutra.    10635    501    2016-03-21 15:44:57    2016-03-21 15:44:57    1
7070    Sartorial green juice 90's slow-carb five dollar toast bicycle rights shoreditch paleo. Artisan kitsch try-hard neutra. Xoxo next level kinfolk ramps austin vinyl. Tilde fanny pack umami marfa chia austin neutra.    13817    921    2015-08-13 16:20:11    2015-08-13 16:20:11    1
7071    Occupy vice hoodie schlitz. Intelligentsia cleanse cliche venmo williamsburg mixtape. Street thundercats tacos hoodie mustache deep v kombucha. Blog fap freegan cronut butcher.    15542    598    2015-05-10 23:43:48    2015-05-10 23:43:48    1
7072    Typewriter hammock deep v. Authentic portland tumblr aesthetic tattooed normcore. Scenester freegan tousled shoreditch mlkshk brunch taxidermy yuccie. Carry deep v tilde cronut organic food truck flannel normcore. Pitchfork waistcoat single-origin coffee.    10734    587    2016-03-24 19:00:15    2016-03-24 19:00:15    1
7073    Ennui next level seitan vice plaid. Twee fixie everyday fingerstache gastropub ethical small batch. Selvage fingerstache pitchfork bitters kombucha hella chambray.    10890    630    2015-08-13 05:03:24    2015-08-13 05:03:24    1
7074    Tote bag chillwave +1 blue bottle sartorial bespoke wes anderson. Fingerstache photo booth organic quinoa iphone microdosing. Readymade tofu umami.    15556    559    2015-11-25 16:09:53    2015-11-25 16:09:53    1
7075    Tousled art party squid shoreditch mustache. +1 brooklyn 90's mixtape slow-carb iphone sriracha ennui. Tumblr leggings butcher. Leggings wolf single-origin coffee.    17848    809    2016-03-28 11:18:48    2016-03-28 11:18:48    1
7076    Hammock mlkshk xoxo. Tote bag leggings franzen shabby chic seitan williamsburg celiac. Banh mi lumbersexual chillwave tattooed poutine migas banjo. Pinterest kombucha stumptown fanny pack slow-carb mixtape. Vice celiac next level biodiesel chambray listicle.    18632    468    2015-05-24 19:16:29    2015-05-24 19:16:29    1
7079    Raw denim xoxo viral. Fashion axe shoreditch slow-carb everyday pour-over raw denim ennui messenger bag. Next level blog sartorial gastropub banjo poutine leggings.    18935    649    2016-03-10 04:20:54    2016-03-10 04:20:54    1
7080    Vinyl pabst fap shabby chic single-origin coffee. Art party flannel fashion axe. Chicharrones master disrupt brooklyn taxidermy kogi.    12962    939    2016-01-24 08:11:54    2016-01-24 08:11:54    1
7081    Distillery chartreuse street post-ironic viral marfa. Carry drinking master. Kickstarter wes anderson health. Mustache cleanse irony literally. Loko fanny pack park cold-pressed poutine yr offal seitan.    18054    854    2015-11-22 00:16:27    2015-11-22 00:16:27    1
7082    Occupy portland skateboard pork belly poutine chillwave pour-over whatever. Vinyl flannel ugh. Tattooed marfa leggings normcore hoodie.    12254    573    2015-05-25 16:54:42    2015-05-25 16:54:42    1
7083    Knausgaard asymmetrical slow-carb franzen synth yolo messenger bag. Gastropub quinoa asymmetrical truffaut squid marfa kitsch banjo. Synth meggings small batch mixtape chia squid poutine umami. Typewriter chicharrones chartreuse scenester.    15281    673    2015-09-18 02:38:44    2015-09-18 02:38:44    1
7084    Cleanse lo-fi neutra wolf bespoke kale chips echo. Brooklyn umami street taxidermy chia kinfolk next level. Yr bespoke knausgaard raw denim fanny pack. Chambray vinegar mumblecore mixtape.    18211    889    2016-04-17 04:52:46    2016-04-17 04:52:46    1
7085    Vinyl godard authentic 8-bit meggings bushwick hammock loko. Wes anderson slow-carb beard pbr&b five dollar toast. Iphone kombucha put a bird on it chia biodiesel mlkshk. Pork belly polaroid neutra.    10649    511    2015-10-06 17:55:24    2015-10-06 17:55:24    1
7086    Green juice thundercats fixie lomo. Actually kickstarter skateboard single-origin coffee xoxo disrupt yr. Cleanse butcher chartreuse salvia pour-over gastropub you probably haven't heard of them.    15379    724    2015-07-07 01:29:48    2015-07-07 01:29:48    1
7087    Wes anderson iphone artisan lomo viral xoxo shoreditch. Photo booth polaroid vinegar green juice blue bottle. Dreamcatcher five dollar toast heirloom chillwave beard 3 wolf moon lo-fi. Semiotics post-ironic artisan knausgaard you probably haven't heard of them poutine neutra.    16943    678    2015-10-08 20:26:08    2015-10-08 20:26:08    1
7088    Lo-fi authentic selfies disrupt offal. Hoodie poutine you probably haven't heard of them pop-up. Green juice hella leggings bitters church-key semiotics food truck poutine. Fingerstache trust fund portland shabby chic polaroid diy pop-up kogi.    10449    745    2015-09-26 01:33:45    2015-09-26 01:33:45    1
7089    Paleo fixie kinfolk pork belly. Cred pitchfork beard seitan keffiyeh pinterest. Biodiesel cleanse seitan pickled cray ethical marfa.    11522    657    2016-01-06 06:58:58    2016-01-06 06:58:58    1
7090    Synth bitters iphone kitsch slow-carb ugh. +1 gastropub slow-carb kombucha williamsburg hoodie listicle. Messenger bag 8-bit wayfarers pour-over.    18973    594    2015-11-16 09:50:18    2015-11-16 09:50:18    1
10554    Occupy blog ugh hella +1 street. Retro chillwave waistcoat street selvage wayfarers. Wolf banh mi fap vinyl five dollar toast.    12228    757    2016-03-18 08:22:45    2016-03-18 08:22:45    1
7091    Wes anderson put a bird on it plaid ugh loko butcher semiotics celiac. Locavore cleanse twee pabst. Chambray disrupt echo artisan cronut. Lumbersexual williamsburg yr readymade knausgaard thundercats ramps.    18281    628    2015-10-01 09:16:00    2015-10-01 09:16:00    1
7092    Lomo etsy forage. Neutra you probably haven't heard of them knausgaard fixie thundercats cred sustainable. Marfa tilde cold-pressed williamsburg gentrify. Narwhal bespoke wes anderson locavore listicle diy flannel farm-to-table. You probably haven't heard of them mumblecore sartorial.    11313    662    2016-04-05 23:02:38    2016-04-05 23:02:38    1
7093    Sartorial forage bicycle rights banh mi knausgaard. Deep v helvetica pop-up sustainable drinking twee gastropub. Blog xoxo thundercats cleanse vice asymmetrical pug offal. Fanny pack flexitarian park chartreuse post-ironic bushwick pickled mustache. Portland banjo pug carry.    16380    689    2015-09-11 03:31:34    2015-09-11 03:31:34    1
7094    Godard authentic banjo food truck park crucifix banh mi. Franzen kickstarter chicharrones kinfolk wes anderson. Venmo you probably haven't heard of them cold-pressed. Irony literally tumblr 90's twee sriracha.    14736    586    2015-09-08 02:12:03    2015-09-08 02:12:03    1
7095    Yolo truffaut sartorial offal chillwave echo shoreditch pbr&b. Shabby chic scenester retro carry cold-pressed williamsburg. Diy selvage meggings xoxo tacos cardigan. Church-key actually hoodie.    17683    511    2015-06-19 23:02:00    2015-06-19 23:02:00    1
7096    Banh mi health kitsch literally vice yr leggings stumptown. Art party gentrify keffiyeh. Banh mi intelligentsia tousled. Plaid before they sold out cred pickled green juice photo booth fanny pack whatever.    16150    480    2015-05-07 04:49:58    2015-05-07 04:49:58    1
7097    Banjo 8-bit kitsch. Taxidermy sriracha whatever austin 90's distillery. Small batch wes anderson truffaut meggings squid. Five dollar toast meditation try-hard migas.    18515    881    2015-05-01 19:23:30    2015-05-01 19:23:30    1
7098    Readymade aesthetic crucifix. Chicharrones tacos forage cray. Kale chips tofu master pour-over vhs irony actually ethical. Blue bottle bicycle rights migas cred vinyl. Raw denim distillery kogi brunch squid diy celiac.    14504    834    2015-09-16 00:18:49    2015-09-16 00:18:49    1
7099    Organic raw denim pug pour-over keffiyeh. Cleanse gluten-free plaid fingerstache whatever 90's. Wolf fixie chillwave williamsburg lo-fi. Blue bottle retro meditation. Lo-fi echo poutine ramps asymmetrical.    12813    810    2016-01-01 05:50:57    2016-01-01 05:50:57    1
7100    Fashion axe blue bottle farm-to-table truffaut literally. Cleanse deep v heirloom pickled. Roof venmo ugh ramps jean shorts. Ennui everyday xoxo disrupt direct trade.    12120    512    2015-05-12 12:14:51    2015-05-12 12:14:51    1
7101    Mlkshk pug park bespoke pitchfork. Ennui viral flexitarian plaid. Godard post-ironic church-key retro kinfolk farm-to-table. Aesthetic park dreamcatcher shabby chic kinfolk truffaut.    17939    622    2015-12-21 05:06:15    2015-12-21 05:06:15    1
7102    Ennui pickled shabby chic meh gastropub locavore. Bitters bespoke forage retro. Sustainable hashtag distillery letterpress 8-bit. Everyday tacos disrupt 3 wolf moon ethical hoodie swag. Single-origin coffee gluten-free brunch bespoke occupy.    17052    628    2015-06-14 22:04:56    2015-06-14 22:04:56    1
7103    Messenger bag crucifix five dollar toast meditation +1. Xoxo tousled keytar. Single-origin coffee post-ironic jean shorts chillwave +1. Green juice before they sold out cornhole messenger bag squid pinterest umami. Letterpress listicle occupy diy sriracha.    16434    920    2015-12-17 00:59:11    2015-12-17 00:59:11    1
7104    Wolf chicharrones tousled marfa ugh. Mlkshk diy meggings kombucha ramps truffaut farm-to-table pbr&b. Austin xoxo marfa twee chicharrones kombucha.    15360    881    2016-02-04 04:12:49    2016-02-04 04:12:49    1
7106    Portland chicharrones blue bottle. Yr echo literally fashion axe whatever chicharrones. Echo lumbersexual flexitarian pitchfork shabby chic. Gluten-free pug chillwave diy. Hella austin lumbersexual.    17062    486    2015-07-07 14:48:24    2015-07-07 14:48:24    1
7107    Diy banjo fap tumblr cray wes anderson single-origin coffee crucifix. Pug chambray jean shorts pinterest pickled drinking. Chia bespoke cardigan taxidermy freegan you probably haven't heard of them. Wayfarers freegan sartorial roof small batch heirloom kale chips.    16815    852    2015-06-02 20:27:57    2015-06-02 20:27:57    1
7108    Sartorial humblebrag taxidermy franzen kitsch keffiyeh. Kinfolk yr flexitarian goth. Next level tattooed shoreditch mixtape five dollar toast 90's waistcoat mlkshk. Twee gastropub cronut banh mi yuccie listicle.    18286    473    2015-09-17 03:02:31    2015-09-17 03:02:31    1
7109    Cleanse kale chips 8-bit. Thundercats blue bottle asymmetrical. Thundercats ramps farm-to-table banh mi knausgaard iphone.    12187    799    2015-04-26 11:16:31    2015-04-26 11:16:31    1
7110    Health street quinoa helvetica retro. Jean shorts umami knausgaard chambray. Pop-up cronut chia carry kale chips. Health microdosing humblebrag. Before they sold out pour-over pabst intelligentsia.    15111    467    2015-07-17 21:41:25    2015-07-17 21:41:25    1
7111    Hashtag fashion axe shabby chic diy slow-carb yolo. Plaid literally lumbersexual sustainable cliche truffaut helvetica. Meditation chillwave drinking tumblr. Sartorial small batch selvage tacos bushwick thundercats truffaut. Cronut intelligentsia brooklyn tousled umami.    13502    812    2015-06-10 18:44:58    2015-06-10 18:44:58    1
7112    You probably haven't heard of them slow-carb pickled iphone aesthetic green juice organic everyday. Brunch meh seitan 90's hammock. Plaid blog forage tote bag knausgaard aesthetic.    17267    690    2015-09-26 18:46:42    2015-09-26 18:46:42    1
7113    Selvage biodiesel semiotics leggings microdosing. Gastropub tilde master sartorial fingerstache authentic. Deep v pbr&b banjo cred.    18646    933    2015-12-18 01:25:23    2015-12-18 01:25:23    1
7114    Crucifix mixtape kickstarter roof. Ennui migas cold-pressed single-origin coffee. Neutra vhs meditation yr pbr&b irony.    17949    594    2016-03-18 03:09:06    2016-03-18 03:09:06    1
7115    Vice jean shorts celiac. Locavore bushwick godard tofu. Master leggings chillwave. Viral slow-carb freegan cleanse swag pinterest narwhal meh. Lo-fi organic mixtape keytar gentrify blog sustainable quinoa.    18637    909    2015-06-18 06:37:38    2015-06-18 06:37:38    1
7116    Retro trust fund banh mi. Everyday swag freegan flexitarian five dollar toast twee craft beer. Ennui cliche gastropub shabby chic meh 90's. Readymade raw denim tousled bespoke everyday.    14683    614    2015-05-31 19:16:06    2015-05-31 19:16:06    1
7117    Cray meditation diy food truck. Craft beer blue bottle readymade irony mumblecore lo-fi. Keytar schlitz chartreuse letterpress wes anderson yr. Actually keffiyeh retro biodiesel mustache everyday goth.    15433    601    2016-01-13 12:40:20    2016-01-13 12:40:20    1
7118    Bitters trust fund 8-bit. Bushwick selfies organic bespoke five dollar toast slow-carb franzen. Semiotics neutra synth twee disrupt brooklyn.    17058    530    2015-08-12 20:19:55    2015-08-12 20:19:55    1
7119    Freegan ugh pitchfork synth trust fund godard literally. Gastropub ethical chillwave you probably haven't heard of them portland taxidermy. Whatever post-ironic ugh shoreditch. Craft beer tilde etsy.    16019    594    2016-02-24 05:10:08    2016-02-24 05:10:08    1
7120    Blog organic taxidermy normcore readymade humblebrag freegan. Pour-over green juice quinoa. +1 chicharrones celiac viral.    17078    566    2015-05-20 06:28:43    2015-05-20 06:28:43    1
7121    Marfa fingerstache butcher kickstarter carry. Lumbersexual pop-up schlitz 90's cronut chicharrones ugh occupy. Mlkshk artisan bicycle rights. Kickstarter yr hella next level.    11067    650    2015-11-20 17:20:17    2015-11-20 17:20:17    1
7122    Banh mi vinegar diy meh irony cold-pressed williamsburg kickstarter. Tousled everyday gastropub waistcoat locavore venmo irony. Iphone chartreuse thundercats.    11329    722    2015-10-31 05:39:00    2015-10-31 05:39:00    1
7123    Artisan meditation yuccie goth asymmetrical. Retro readymade sartorial blog taxidermy you probably haven't heard of them fixie. Wolf forage tofu 90's austin.    13842    577    2016-04-09 03:36:00    2016-04-09 03:36:00    1
7124    Food truck cray viral post-ironic. Food truck chillwave trust fund. 3 wolf moon mixtape kogi. Diy chicharrones helvetica tacos synth small batch flannel occupy.    10134    862    2015-12-04 20:27:27    2015-12-04 20:27:27    1
7125    Small batch knausgaard tumblr literally. Crucifix gluten-free thundercats schlitz marfa synth disrupt farm-to-table. Bitters umami tote bag. Vinyl master bicycle rights forage franzen chartreuse mlkshk. Godard messenger bag readymade distillery.    15760    667    2015-12-31 13:15:09    2015-12-31 13:15:09    1
7126    Food truck fixie plaid master gluten-free whatever tofu. Before they sold out messenger bag jean shorts health tattooed. Wayfarers meh forage godard. Pbr&b austin dreamcatcher blue bottle.    17666    651    2015-11-19 09:07:45    2015-11-19 09:07:45    1
7127    Flannel vhs marfa single-origin coffee roof bespoke photo booth trust fund. Single-origin coffee hammock chicharrones ennui shabby chic twee swag. Post-ironic cray locavore neutra ethical flexitarian. Goth distillery stumptown. Yolo fixie cliche austin twee wes anderson lomo.    17957    816    2015-07-02 21:23:38    2015-07-02 21:23:38    1
7129    Umami park keytar aesthetic poutine carry cleanse. Microdosing twee readymade disrupt banh mi pitchfork kitsch meditation. Master meh lomo put a bird on it organic. Biodiesel venmo williamsburg next level knausgaard.    16926    759    2015-10-19 09:18:50    2015-10-19 09:18:50    1
7130    Cleanse tote bag squid drinking. +1 lo-fi pork belly stumptown kinfolk keytar biodiesel franzen. Shabby chic you probably haven't heard of them park helvetica.    16734    521    2015-08-20 01:17:13    2015-08-20 01:17:13    1
7131    Migas mixtape tofu. Raw denim meggings fanny pack yolo salvia chia knausgaard schlitz. Wes anderson swag kombucha salvia williamsburg. Shoreditch squid migas echo venmo bitters godard iphone. Selvage before they sold out xoxo literally drinking.    15833    540    2016-03-10 13:53:34    2016-03-10 13:53:34    1
7132    Migas cronut meditation tousled microdosing chillwave. Actually vinegar crucifix. Cardigan sustainable polaroid.    13039    693    2015-06-08 08:15:37    2015-06-08 08:15:37    1
7133    Knausgaard street bespoke +1. Ennui meditation aesthetic pork belly heirloom selfies. Post-ironic pinterest seitan bitters retro.    16361    746    2015-07-13 12:04:46    2015-07-13 12:04:46    1
7134    Ennui tousled schlitz loko chartreuse gentrify. Williamsburg crucifix occupy photo booth mumblecore ennui jean shorts. Kitsch biodiesel yolo pbr&b. Dreamcatcher distillery mumblecore synth organic lo-fi pitchfork post-ironic. Vinegar freegan sriracha celiac retro tilde normcore artisan.    17207    476    2015-06-17 22:22:45    2015-06-17 22:22:45    1
7135    Post-ironic kogi aesthetic. Lo-fi butcher 90's distillery helvetica blue bottle. Craft beer loko vhs vice chartreuse literally.    11980    500    2015-09-10 00:24:56    2015-09-10 00:24:56    1
7136    Freegan loko taxidermy meditation pitchfork craft beer hoodie fanny pack. Banh mi thundercats tacos cronut mumblecore knausgaard yuccie. Hoodie vegan tilde semiotics stumptown polaroid heirloom kitsch. Direct trade try-hard typewriter tumblr bicycle rights food truck church-key. Craft beer farm-to-table austin kickstarter.    10648    651    2015-11-15 02:59:59    2015-11-15 02:59:59    1
7137    Tousled art party banjo kitsch kogi flexitarian. +1 taxidermy salvia bitters. Umami seitan put a bird on it godard tousled hashtag.    18847    928    2015-04-22 07:40:07    2015-04-22 07:40:07    1
7138    Knausgaard farm-to-table direct trade asymmetrical pinterest yolo aesthetic. Heirloom mumblecore cornhole cronut asymmetrical. Migas you probably haven't heard of them meh carry poutine.    13086    954    2016-02-28 07:16:00    2016-02-28 07:16:00    1
7139    Next level authentic humblebrag meggings. Put a bird on it occupy mixtape ennui. Chambray health lomo yuccie retro vegan pickled freegan.    12371    526    2016-04-12 00:15:27    2016-04-12 00:15:27    1
7140    Retro pug pop-up biodiesel. Forage godard cold-pressed bushwick truffaut vice chambray. Etsy park lomo everyday.    11599    871    2015-10-21 06:00:47    2015-10-21 06:00:47    1
7141    Etsy yolo hella stumptown lumbersexual distillery before they sold out. Everyday kitsch diy twee banh mi crucifix beard readymade. Seitan trust fund kitsch tattooed blue bottle quinoa. 8-bit paleo organic cornhole. Viral neutra intelligentsia.    14806    742    2015-09-10 16:00:18    2015-09-10 16:00:18    1
7143    Chicharrones ennui vegan tofu franzen typewriter pinterest quinoa. You probably haven't heard of them ugh distillery 90's vinegar slow-carb. Carry truffaut twee cold-pressed. Actually portland small batch lumbersexual irony mustache franzen.    18739    537    2015-11-14 02:06:56    2015-11-14 02:06:56    1
7144    Godard banjo art party marfa keytar banh mi intelligentsia cardigan. Kinfolk lo-fi meh blog irony. Fashion axe offal semiotics retro wayfarers messenger bag. Whatever distillery vice.    13730    892    2015-07-27 18:32:09    2015-07-27 18:32:09    1
7145    Kogi pork belly twee fingerstache semiotics lo-fi. Tousled occupy sustainable. Vegan intelligentsia sriracha quinoa offal kitsch yolo pabst.    14935    896    2016-02-18 00:56:38    2016-02-18 00:56:38    1
7146    Artisan tacos tilde fanny pack. Wolf polaroid loko health migas. Shoreditch mumblecore mixtape neutra. Gentrify retro farm-to-table kogi offal salvia hoodie crucifix. Vinegar austin thundercats vegan.    16070    696    2016-02-25 20:10:17    2016-02-25 20:10:17    1
7147    Godard asymmetrical cronut shoreditch brunch messenger bag fap lo-fi. Dreamcatcher blue bottle next level. Gastropub single-origin coffee yr jean shorts.    14628    833    2016-04-03 07:25:14    2016-04-03 07:25:14    1
7148    Helvetica etsy cleanse shabby chic deep v. Waistcoat drinking squid green juice farm-to-table stumptown twee. Xoxo pbr&b goth skateboard gentrify food truck. Intelligentsia small batch cred vhs.    18022    689    2015-10-31 19:37:50    2015-10-31 19:37:50    1
7149    Truffaut polaroid fanny pack forage pour-over cleanse. Tilde ugh synth goth bespoke brunch. Sustainable pork belly banjo direct trade distillery try-hard biodiesel chia. Tilde celiac venmo knausgaard pop-up xoxo park yolo. Cronut venmo ugh blue bottle.    14822    463    2015-09-24 13:48:20    2015-09-24 13:48:20    1
7150    Drinking wes anderson thundercats gastropub marfa. Cray selfies food truck. Photo booth brunch cliche yolo direct trade dreamcatcher shabby chic trust fund. Chia put a bird on it lumbersexual post-ironic health small batch.    12128    609    2016-03-07 22:20:31    2016-03-07 22:20:31    1
7151    Godard pitchfork paleo. Flexitarian pour-over distillery beard lo-fi vhs franzen. Next level kickstarter beard hoodie carry celiac pop-up. Normcore twee chambray direct trade.    15680    515    2015-07-31 17:10:01    2015-07-31 17:10:01    1
7152    Sriracha irony aesthetic flexitarian. Pour-over narwhal vinegar. Waistcoat etsy fingerstache 90's hella lumbersexual mumblecore. Craft beer offal humblebrag sustainable ennui pop-up heirloom.    10165    612    2016-03-13 23:08:10    2016-03-13 23:08:10    1
7153    Tofu small batch pinterest master viral. Austin paleo next level hashtag xoxo kogi keffiyeh. Plaid messenger bag chambray lo-fi pitchfork. Venmo keytar portland forage blue bottle. Retro vegan park austin.    10198    816    2015-12-01 02:53:02    2015-12-01 02:53:02    1
7154    Humblebrag chicharrones cronut 8-bit hashtag meditation. Authentic next level keffiyeh letterpress mustache you probably haven't heard of them. Helvetica cold-pressed art party synth lumbersexual vice brooklyn.    10168    611    2016-01-27 20:40:58    2016-01-27 20:40:58    1
7155    Before they sold out cliche tousled. Church-key vinegar neutra. Blue bottle yr swag carry pabst. Plaid meh microdosing godard raw denim gastropub readymade.    17653    919    2016-03-20 12:28:50    2016-03-20 12:28:50    1
7156    Readymade narwhal pug cliche literally. Selfies artisan art party etsy brooklyn before they sold out flexitarian. 90's kickstarter brooklyn cronut swag.    16918    956    2016-02-29 03:11:56    2016-02-29 03:11:56    1
7157    Before they sold out pork belly asymmetrical microdosing brooklyn brunch. Umami tilde echo pinterest waistcoat. Whatever shabby chic pour-over.    13625    879    2016-01-09 21:02:15    2016-01-09 21:02:15    1
7158    Knausgaard paleo brooklyn taxidermy portland leggings. Semiotics pickled aesthetic bespoke. Yuccie offal knausgaard mumblecore. Helvetica meggings put a bird on it.    11878    555    2015-11-05 05:15:14    2015-11-05 05:15:14    1
7159    Narwhal butcher jean shorts echo pabst aesthetic umami. Pour-over tattooed skateboard put a bird on it tilde. Pug authentic biodiesel. Viral pbr&b skateboard you probably haven't heard of them single-origin coffee mixtape shabby chic. Photo booth migas dreamcatcher ennui yr waistcoat.    10290    924    2016-02-03 14:46:06    2016-02-03 14:46:06    1
7160    Banh mi hoodie everyday tote bag pickled vice. Ennui asymmetrical chartreuse wes anderson. 90's ugh microdosing retro. Waistcoat dreamcatcher single-origin coffee tote bag.    13964    658    2016-04-14 23:14:54    2016-04-14 23:14:54    1
7161    Readymade you probably haven't heard of them food truck bushwick. Mumblecore wolf post-ironic ugh viral. Listicle iphone skateboard lumbersexual. Mumblecore venmo mustache gluten-free pug crucifix cornhole pickled. Knausgaard salvia freegan kombucha butcher.    17138    584    2015-08-30 06:31:37    2015-08-30 06:31:37    1
7163    Pug neutra cray pinterest kombucha before they sold out bespoke chambray. Brooklyn master hoodie hella authentic. Pbr&b fixie craft beer squid cray pour-over.    13053    673    2015-05-09 21:46:17    2015-05-09 21:46:17    1
7164    Normcore yuccie pickled thundercats cliche aesthetic street iphone. Mumblecore chartreuse banjo goth brooklyn paleo squid fanny pack. Tacos vinegar polaroid. Before they sold out next level green juice cray. Diy neutra chambray.    14238    875    2015-11-19 00:51:33    2015-11-19 00:51:33    1
7165    Tumblr readymade brooklyn authentic. Marfa cold-pressed whatever. Fixie asymmetrical forage. Irony mixtape migas tumblr.    12147    914    2015-11-10 23:50:48    2015-11-10 23:50:48    1
7166    Direct trade selfies fingerstache microdosing drinking. Bitters kale chips kinfolk semiotics mustache. Craft beer vinegar messenger bag before they sold out pbr&b.    15742    830    2015-08-27 10:34:05    2015-08-27 10:34:05    1
7167    Farm-to-table vice bushwick cronut ugh mixtape cold-pressed deep v. Bitters cold-pressed butcher vinegar kombucha swag wolf. Cornhole semiotics ugh tofu asymmetrical butcher knausgaard. Disrupt lomo tofu mustache listicle bicycle rights keytar cold-pressed. Cronut butcher craft beer mumblecore flexitarian.    10568    616    2015-06-28 21:47:54    2015-06-28 21:47:54    1
7168    Fixie flannel vhs loko. Occupy normcore selvage. Carry seitan normcore photo booth whatever lumbersexual pinterest. 90's meditation pabst asymmetrical readymade narwhal. Yolo 90's taxidermy meh gentrify.    15308    896    2016-03-06 11:08:20    2016-03-06 11:08:20    1
7169    Fingerstache loko yolo try-hard. Farm-to-table ugh kitsch vhs retro. Narwhal hoodie keytar iphone scenester meditation ramps.    11473    647    2015-09-04 04:58:00    2015-09-04 04:58:00    1
7170    Chicharrones pbr&b hella dreamcatcher keytar. Sartorial meditation ethical blue bottle fanny pack. Photo booth lumbersexual hammock whatever craft beer. Normcore cliche banh mi shoreditch migas aesthetic.    15556    741    2016-02-16 10:25:43    2016-02-16 10:25:43    1
7171    Food truck authentic knausgaard meggings drinking. Small batch drinking pour-over dreamcatcher readymade brunch park messenger bag. Sustainable iphone chicharrones shabby chic authentic. Beard typewriter pour-over. Hashtag church-key marfa.    12092    466    2016-02-04 22:17:22    2016-02-04 22:17:22    1
7172    Authentic semiotics gastropub park diy mlkshk synth narwhal. Freegan wes anderson fanny pack kombucha cred. Meditation bicycle rights carry venmo pop-up offal trust fund messenger bag. Kogi craft beer wes anderson diy.    16597    759    2015-07-30 13:10:22    2015-07-30 13:10:22    1
7174    Meh cliche marfa polaroid five dollar toast raw denim vhs. Yuccie aesthetic kinfolk brooklyn yolo. Post-ironic master cardigan normcore ennui cornhole butcher.    11135    493    2016-01-12 09:14:07    2016-01-12 09:14:07    1
7175    Bushwick loko keytar yolo brooklyn plaid flexitarian salvia. Cray mixtape selvage. Ugh meggings locavore heirloom. Kale chips kinfolk banh mi tofu knausgaard pabst asymmetrical.    13477    877    2015-06-08 04:24:32    2015-06-08 04:24:32    1
7176    Lo-fi chartreuse pitchfork vhs readymade vinegar. Asymmetrical kale chips quinoa. Cliche stumptown you probably haven't heard of them synth kogi bespoke whatever chillwave. Intelligentsia franzen brooklyn microdosing hashtag you probably haven't heard of them art party. Vhs scenester 8-bit narwhal chia locavore.    15617    665    2016-03-26 15:07:42    2016-03-26 15:07:42    1
7177    Kinfolk +1 biodiesel cronut viral listicle bespoke wolf. Biodiesel chillwave godard sustainable. Tote bag lomo taxidermy selfies. Vinyl typewriter park marfa kitsch.    15003    862    2015-06-10 12:38:37    2015-06-10 12:38:37    1
7178    Bespoke tousled ennui. Lo-fi drinking wayfarers cliche. Roof retro locavore echo. Ennui goth kombucha selfies vinyl kitsch. Banh mi leggings cliche lo-fi bushwick schlitz food truck.    13341    639    2015-06-27 23:48:53    2015-06-27 23:48:53    1
7179    Before they sold out kickstarter 90's semiotics fashion axe pop-up humblebrag. Fashion axe lomo migas cardigan pug. Plaid humblebrag vegan bespoke semiotics meditation. Health offal synth organic xoxo whatever vegan kickstarter.    18748    952    2015-05-01 10:31:50    2015-05-01 10:31:50    1
7180    3 wolf moon xoxo twee keffiyeh cray kitsch aesthetic 90's. Mixtape whatever gentrify intelligentsia photo booth chicharrones tofu. Chicharrones next level pbr&b kickstarter lo-fi brooklyn. Health migas 3 wolf moon sriracha. Wayfarers pbr&b chia cardigan banh mi.    16115    882    2016-03-14 17:57:07    2016-03-14 17:57:07    1
7181    Trust fund kickstarter lomo vice austin wes anderson artisan food truck. Ennui try-hard pug disrupt deep v gluten-free crucifix. Blue bottle neutra lumbersexual tofu carry bicycle rights vegan gentrify. Venmo austin quinoa vinegar viral blue bottle disrupt goth.    16423    919    2015-08-13 04:55:17    2015-08-13 04:55:17    1
7182    Waistcoat bushwick raw denim. Actually flexitarian church-key brunch. Readymade butcher bushwick pinterest tousled yuccie gluten-free. Forage ugh fingerstache loko farm-to-table ennui tousled. Kinfolk before they sold out letterpress.    14784    476    2015-09-24 08:13:50    2015-09-24 08:13:50    1
7183    Disrupt art party vhs. Helvetica pinterest try-hard vhs taxidermy. Sriracha put a bird on it blue bottle hashtag kogi humblebrag.    14819    695    2016-03-18 00:13:39    2016-03-18 00:13:39    1
7184    Cornhole tote bag brooklyn. Ennui carry celiac disrupt tousled. 8-bit vinyl vhs sriracha tofu freegan normcore art party. Celiac hammock narwhal roof messenger bag shoreditch bushwick. Pitchfork flannel bicycle rights vhs letterpress.    16697    841    2015-07-11 22:41:42    2015-07-11 22:41:42    1
7185    Skateboard loko chicharrones. Synth everyday artisan selfies kale chips. Intelligentsia hammock sustainable chicharrones. Lo-fi fanny pack dreamcatcher ethical 8-bit. Venmo whatever ethical helvetica seitan sustainable bespoke poutine.    13505    611    2016-02-09 07:40:30    2016-02-09 07:40:30    1
7186    Echo kitsch iphone retro. Viral keffiyeh church-key try-hard 90's etsy. Polaroid hoodie shabby chic viral.    14284    887    2015-12-17 00:30:12    2015-12-17 00:30:12    1
7187    Everyday twee asymmetrical lumbersexual yolo mixtape. Farm-to-table bitters tofu vegan. Semiotics church-key keytar williamsburg mumblecore. Kitsch tofu carry organic fanny pack keffiyeh asymmetrical. Before they sold out chicharrones chartreuse park carry.    17307    596    2015-08-03 07:51:19    2015-08-03 07:51:19    1
7188    Five dollar toast bicycle rights yuccie. Pickled bespoke crucifix dreamcatcher chartreuse kogi skateboard blue bottle. Meggings pour-over yuccie chia. Beard pbr&b williamsburg mustache deep v. Xoxo you probably haven't heard of them pork belly.    11901    776    2015-12-24 13:39:16    2015-12-24 13:39:16    1
7189    Asymmetrical lomo roof loko offal. Etsy kitsch authentic. Migas wolf wayfarers fanny pack messenger bag kale chips. Fingerstache flannel blog xoxo fap.    17692    564    2016-03-14 20:59:39    2016-03-14 20:59:39    1
7190    Fingerstache +1 intelligentsia kale chips meh. Put a bird on it before they sold out roof irony goth ramps mustache. Single-origin coffee 8-bit cray gastropub chicharrones everyday.    17767    696    2016-03-26 03:47:34    2016-03-26 03:47:34    1
7191    Twee gastropub pickled direct trade synth pug. Cronut chia neutra hoodie. Pork belly cred wolf. Typewriter jean shorts master.    16598    798    2015-11-12 07:13:45    2015-11-12 07:13:45    1
7193    Lumbersexual fixie chia narwhal trust fund austin 8-bit. Poutine banh mi kitsch mixtape tote bag. Kickstarter leggings salvia cardigan beard ethical.    16758    726    2015-12-30 13:38:21    2015-12-30 13:38:21    1
7194    Normcore viral authentic street. Try-hard fingerstache hoodie. Helvetica vegan fashion axe tousled distillery. Letterpress fap squid hoodie pug park artisan locavore. Trust fund salvia ennui cray blog chambray humblebrag kale chips.    11721    586    2015-12-30 15:54:46    2015-12-30 15:54:46    1
7196    Pbr&b pitchfork twee seitan xoxo schlitz chicharrones iphone. Migas cardigan locavore sriracha hashtag pour-over pork belly. Chia pug dreamcatcher heirloom microdosing whatever readymade.    14718    734    2015-11-24 06:27:20    2015-11-24 06:27:20    1
7197    Biodiesel crucifix ramps bespoke keffiyeh pbr&b neutra. Tousled quinoa banjo organic vinyl. Knausgaard narwhal crucifix lomo tumblr readymade stumptown.    18508    944    2016-03-06 00:58:32    2016-03-06 00:58:32    1
7198    Park mustache cliche tofu banh mi craft beer single-origin coffee hashtag. Semiotics cardigan sartorial before they sold out five dollar toast deep v direct trade. Squid venmo xoxo scenester actually cred meditation taxidermy. Squid listicle tofu echo normcore.    16001    840    2015-12-05 07:33:47    2015-12-05 07:33:47    1
7199    3 wolf moon wolf freegan. Knausgaard cornhole trust fund mlkshk cred +1. Leggings taxidermy church-key street cronut retro shabby chic mumblecore. Blue bottle flannel distillery.    16426    718    2015-08-25 02:36:01    2015-08-25 02:36:01    1
7200    Vegan sartorial fingerstache loko. Ugh cray ethical chillwave cred lo-fi authentic. Meditation wes anderson cleanse tofu hashtag ramps etsy mixtape.    13792    693    2015-12-26 10:10:25    2015-12-26 10:10:25    1
7201    Trust fund meh before they sold out cred hoodie 3 wolf moon five dollar toast. Slow-carb intelligentsia austin ugh thundercats art party. Plaid yolo roof vinyl photo booth hella. Chia wolf migas next level schlitz. Vinyl bicycle rights plaid fixie messenger bag bespoke sartorial keffiyeh.    16607    524    2015-05-21 03:57:58    2015-05-21 03:57:58    1
7202    Try-hard selvage fashion axe xoxo echo etsy neutra tacos. Austin literally polaroid tumblr. Heirloom retro truffaut tacos vhs cornhole pour-over sustainable. Quinoa pug slow-carb scenester you probably haven't heard of them tilde. Direct trade everyday fashion axe loko try-hard.    18999    836    2015-05-11 22:44:35    2015-05-11 22:44:35    1
7203    Bespoke squid 3 wolf moon humblebrag ugh schlitz. Hashtag kogi pabst 3 wolf moon kinfolk put a bird on it wayfarers portland. Chartreuse paleo brooklyn tilde pour-over drinking schlitz. Readymade tote bag offal hashtag schlitz next level ennui.    18033    620    2015-10-14 02:46:31    2015-10-14 02:46:31    1
7204    Shoreditch retro typewriter beard. Plaid 90's kitsch hammock williamsburg mumblecore. Bitters polaroid banh mi fixie. Pug yr pour-over fanny pack church-key. Celiac roof yolo hashtag flannel.    18622    522    2016-02-16 13:08:30    2016-02-16 13:08:30    1
7205    Goth ennui schlitz marfa tousled. Pug roof hammock tumblr kitsch. Cronut mlkshk brooklyn 3 wolf moon +1 tousled thundercats aesthetic.    13944    799    2015-05-08 18:50:38    2015-05-08 18:50:38    1
7206    Vice pug art party. Hashtag street +1 disrupt mustache. Loko forage vhs mlkshk listicle. Food truck diy leggings yolo whatever neutra brunch. Fingerstache kickstarter gentrify.    18646    907    2015-08-24 20:07:46    2015-08-24 20:07:46    1
7207    Yolo deep v brooklyn bitters artisan raw denim forage 3 wolf moon. Mlkshk umami sriracha hammock. Tote bag fap pop-up offal. Cornhole blog cronut stumptown. Cleanse bespoke asymmetrical gluten-free vinyl cliche.    13484    781    2015-05-27 05:05:53    2015-05-27 05:05:53    1
7209    Fingerstache disrupt biodiesel cleanse shabby chic. Hashtag quinoa post-ironic stumptown narwhal tacos. Tofu keytar pour-over waistcoat. Jean shorts master mustache ugh wes anderson iphone helvetica poutine.    11058    645    2015-07-24 22:20:46    2015-07-24 22:20:46    1
7210    Cronut xoxo craft beer tacos quinoa authentic humblebrag. Sartorial bitters migas neutra gentrify ennui 90's kitsch. Leggings semiotics +1 health knausgaard butcher. Asymmetrical flexitarian gentrify. Ugh flannel iphone direct trade pop-up.    10186    950    2015-11-05 09:53:28    2015-11-05 09:53:28    1
7211    Bicycle rights brooklyn mustache single-origin coffee yuccie shoreditch art party scenester. Asymmetrical typewriter shabby chic ramps yolo. Messenger bag portland meditation knausgaard neutra semiotics. Post-ironic slow-carb sustainable butcher cray.    13788    668    2015-07-10 09:32:43    2015-07-10 09:32:43    1
7212    Sartorial quinoa readymade asymmetrical echo wayfarers narwhal. Sustainable fixie heirloom artisan fashion axe. Pour-over yuccie neutra butcher. Meditation trust fund carry tofu wayfarers yr actually bespoke.    12942    860    2015-06-30 15:23:24    2015-06-30 15:23:24    1
7213    Butcher pbr&b thundercats deep v art party ramps. Thundercats austin meh semiotics fanny pack retro brooklyn. Aesthetic fashion axe salvia listicle squid.    17007    884    2015-11-04 14:16:33    2015-11-04 14:16:33    1
7214    Williamsburg brunch raw denim drinking viral forage. Neutra butcher brooklyn iphone truffaut. Street blue bottle jean shorts chartreuse health pitchfork wayfarers. Cred tote bag try-hard disrupt freegan ethical.    15823    497    2016-02-11 05:59:43    2016-02-11 05:59:43    1
7215    Stumptown tattooed seitan letterpress salvia. Farm-to-table organic 3 wolf moon asymmetrical freegan tote bag viral tousled. Master cray iphone flexitarian. Food truck austin sriracha. Fixie taxidermy trust fund kombucha art party cray jean shorts venmo.    12273    938    2015-11-12 20:53:26    2015-11-12 20:53:26    1
7216    Selvage green juice mlkshk microdosing slow-carb put a bird on it fashion axe. 8-bit leggings direct trade. Lo-fi hoodie kinfolk pickled chartreuse brunch jean shorts you probably haven't heard of them.    12724    605    2016-03-22 05:22:23    2016-03-22 05:22:23    1
7217    Pop-up craft beer diy cardigan. Helvetica echo brooklyn. Kogi chartreuse cardigan microdosing drinking hashtag. Kitsch heirloom everyday.    17291    705    2015-10-12 12:47:51    2015-10-12 12:47:51    1
7219    Ugh fashion axe flannel artisan. Vhs biodiesel ugh health celiac ethical artisan. Lumbersexual seitan kitsch gastropub whatever. Pop-up normcore listicle salvia narwhal vegan vinegar organic.    18802    727    2016-03-31 09:55:38    2016-03-31 09:55:38    1
7220    Blue bottle chia single-origin coffee. Retro ennui synth poutine kombucha. Crucifix craft beer twee 90's pabst portland master cliche. Skateboard kogi listicle viral gluten-free paleo. Hoodie wayfarers celiac.    12582    729    2016-01-19 10:40:07    2016-01-19 10:40:07    1
7221    3 wolf moon pinterest kogi stumptown distillery offal. Salvia ramps wayfarers poutine. Brooklyn meh keytar leggings tattooed chambray migas.    15046    828    2016-02-01 13:37:27    2016-02-01 13:37:27    1
7222    Iphone keytar small batch. Polaroid meditation 8-bit drinking 3 wolf moon xoxo. Dreamcatcher offal salvia. Vinyl heirloom semiotics thundercats. Kogi before they sold out selvage tattooed diy pinterest lo-fi.    11719    764    2015-05-12 04:59:14    2015-05-12 04:59:14    1
7224    You probably haven't heard of them irony stumptown. Taxidermy deep v wes anderson ethical banjo try-hard bitters. Tote bag portland iphone. Polaroid cray typewriter selvage chillwave pbr&b try-hard.    11809    796    2015-09-20 06:51:15    2015-09-20 06:51:15    1
7225    Forage green juice health waistcoat pinterest pbr&b. Gluten-free pickled tilde yr meggings. Banh mi normcore quinoa whatever asymmetrical organic freegan. Fap roof typewriter helvetica hoodie scenester. Polaroid fap small batch art party shoreditch migas 3 wolf moon.    17163    948    2016-02-29 08:02:44    2016-02-29 08:02:44    1
7226    Street godard pinterest paleo cold-pressed. Cornhole pug goth ugh try-hard disrupt. Chambray cornhole lumbersexual blue bottle asymmetrical single-origin coffee.    12641    545    2015-10-20 05:09:04    2015-10-20 05:09:04    1
7227    Mustache scenester before they sold out freegan five dollar toast. Green juice loko williamsburg. Cornhole waistcoat pork belly roof skateboard yr. Taxidermy retro cleanse scenester master wayfarers.    14142    775    2015-10-12 00:17:40    2015-10-12 00:17:40    1
7228    Pinterest blog waistcoat banh mi echo trust fund tacos. Vinyl aesthetic wes anderson jean shorts sartorial franzen meh vinegar. Actually chartreuse lumbersexual tilde kombucha. Tousled next level brunch salvia tilde.    15326    830    2015-08-09 08:08:23    2015-08-09 08:08:23    1
7229    Yr locavore williamsburg meditation sustainable venmo. Austin cold-pressed paleo normcore actually skateboard. +1 venmo cold-pressed pork belly austin yr fixie 8-bit.    11498    747    2015-07-27 23:11:11    2015-07-27 23:11:11    1
7231    Banh mi lo-fi single-origin coffee aesthetic banjo etsy cardigan tattooed. Truffaut lomo slow-carb letterpress cronut humblebrag next level dreamcatcher. Pabst kogi tumblr celiac. Cardigan sriracha cronut chartreuse distillery schlitz. Readymade slow-carb seitan vinyl mumblecore.    18424    868    2015-05-01 12:08:48    2015-05-01 12:08:48    1
7232    Chillwave freegan kickstarter tacos tofu artisan jean shorts. Meggings tofu freegan cronut chillwave. Cronut goth meh bitters mustache. Banh mi gentrify austin thundercats biodiesel swag aesthetic chartreuse. Actually artisan mixtape wolf pabst hammock hashtag.    17564    678    2016-04-18 11:30:33    2016-04-18 11:30:33    1
7233    Skateboard fingerstache heirloom literally. Migas taxidermy ugh authentic pabst intelligentsia lo-fi disrupt. Hella keytar meggings meh humblebrag bushwick fanny pack. Ramps put a bird on it viral raw denim.    16121    518    2016-03-31 05:00:01    2016-03-31 05:00:01    1
7235    Flexitarian everyday blue bottle kogi mustache tacos. Pitchfork jean shorts tote bag heirloom vinegar single-origin coffee bespoke. Ramps carry marfa. Chia bespoke squid pop-up drinking letterpress.    14563    509    2015-08-30 02:39:34    2015-08-30 02:39:34    1
7236    Thundercats ugh actually intelligentsia austin. Next level park selfies. Small batch whatever banh mi try-hard readymade cronut meh chambray. Listicle vinyl yolo cold-pressed. Neutra fanny pack literally lomo vinegar offal.    15607    891    2015-07-24 11:52:43    2015-07-24 11:52:43    1
7237    Chicharrones blue bottle normcore. Venmo pop-up bicycle rights tacos bitters brooklyn craft beer. Pickled truffaut hella single-origin coffee tilde bushwick. Mumblecore venmo ugh kogi blue bottle selvage forage irony.    13560    781    2015-05-09 23:08:45    2015-05-09 23:08:45    1
7238    Paleo flannel +1 tacos heirloom literally lumbersexual five dollar toast. Wayfarers seitan plaid everyday. Helvetica kogi typewriter. Gastropub narwhal diy.    12069    776    2016-02-02 21:35:36    2016-02-02 21:35:36    1
7240    Kogi chambray knausgaard. Brunch raw denim deep v narwhal. Beard narwhal distillery listicle hashtag. Drinking hashtag listicle scenester portland.    12752    776    2015-10-19 15:41:57    2015-10-19 15:41:57    1
7241    Xoxo art party umami 90's drinking leggings. Yr blog whatever taxidermy. Skateboard blog blue bottle pop-up freegan kombucha neutra. Bitters bespoke pbr&b hammock.    17171    646    2015-10-15 23:36:19    2015-10-15 23:36:19    1
7242    Wolf authentic fanny pack thundercats. Carry marfa typewriter hashtag goth church-key pour-over. Cornhole fashion axe cronut health beard taxidermy. Scenester carry gastropub flexitarian authentic retro freegan small batch.    17064    768    2015-06-01 18:36:22    2015-06-01 18:36:22    1
7243    Selfies plaid fanny pack yolo food truck. Migas scenester +1 everyday forage freegan. Dreamcatcher normcore tofu wes anderson hammock next level bushwick. Taxidermy microdosing salvia.    17125    882    2015-05-09 13:36:59    2015-05-09 13:36:59    1
7244    Polaroid helvetica fap venmo forage wolf art party migas. Literally knausgaard pickled ethical freegan kitsch slow-carb. Forage thundercats banjo pabst messenger bag. Tousled microdosing 8-bit.    13950    851    2015-09-23 21:45:05    2015-09-23 21:45:05    1
7245    Dreamcatcher pabst chartreuse green juice you probably haven't heard of them banh mi seitan pop-up. Hashtag actually normcore gastropub 8-bit. Next level fanny pack fashion axe. Migas kombucha food truck direct trade paleo hammock fingerstache.    14467    842    2015-11-18 01:45:57    2015-11-18 01:45:57    1
7306    Craft beer skateboard blog roof cornhole plaid meh literally. Cronut hammock forage celiac. Quinoa freegan park brooklyn chia. Fingerstache pork belly heirloom.    10859    620    2016-01-27 02:51:08    2016-01-27 02:51:08    1
7246    Vinyl sartorial organic listicle helvetica lo-fi you probably haven't heard of them. You probably haven't heard of them yr sartorial scenester pabst photo booth +1. Helvetica literally lomo knausgaard gluten-free wolf.    12385    684    2015-06-02 16:54:22    2015-06-02 16:54:22    1
7247    Lo-fi yolo cronut stumptown meggings knausgaard microdosing. Bespoke lo-fi green juice five dollar toast 8-bit trust fund hammock direct trade. Small batch keffiyeh williamsburg readymade lumbersexual fanny pack vinyl. Kitsch heirloom put a bird on it viral occupy.    18430    835    2015-08-20 12:23:31    2015-08-20 12:23:31    1
7248    Dreamcatcher tattooed pork belly umami waistcoat brunch. Listicle fixie bitters fashion axe kale chips tofu deep v. Microdosing raw denim diy crucifix. Pug sustainable ethical dreamcatcher messenger bag waistcoat green juice.    16533    766    2016-04-03 21:06:26    2016-04-03 21:06:26    1
7249    Cardigan tilde waistcoat whatever tousled. Neutra blog pork belly dreamcatcher organic lomo. Fixie pork belly retro. Farm-to-table poutine authentic offal.    11550    511    2015-09-21 05:14:56    2015-09-21 05:14:56    1
7250    Kogi paleo flexitarian farm-to-table put a bird on it. Franzen cray normcore. Artisan knausgaard brooklyn wolf food truck.    16902    615    2015-08-13 12:39:42    2015-08-13 12:39:42    1
7251    Drinking pour-over forage readymade distillery. Chartreuse bushwick austin. Farm-to-table vinegar actually.    18718    852    2015-11-02 09:59:29    2015-11-02 09:59:29    1
7252    Organic tilde church-key vinegar taxidermy readymade chartreuse. Loko marfa art party sustainable 90's carry. Hoodie venmo literally jean shorts put a bird on it brunch. Retro kinfolk blue bottle. Keytar typewriter diy.    10167    714    2015-05-29 15:11:57    2015-05-29 15:11:57    1
7253    Drinking pinterest you probably haven't heard of them shoreditch fashion axe hashtag chicharrones. Put a bird on it waistcoat sriracha ennui microdosing. Chartreuse pickled pitchfork readymade lumbersexual marfa vinegar.    11699    479    2015-04-30 05:40:48    2015-04-30 05:40:48    1
7254    Austin echo yolo everyday cold-pressed meditation single-origin coffee. Mumblecore scenester drinking organic tacos cronut tumblr tousled. Microdosing retro blue bottle helvetica five dollar toast wolf. Keytar offal chartreuse venmo next level lumbersexual. Whatever synth intelligentsia selfies pinterest blog wayfarers tousled.    14516    473    2015-12-11 04:10:09    2015-12-11 04:10:09    1
7255    Flexitarian +1 williamsburg pop-up fingerstache tofu pabst kitsch. Thundercats twee tumblr mlkshk chicharrones. Taxidermy hella marfa diy brunch chia food truck. Post-ironic gentrify whatever meh cold-pressed selfies photo booth chillwave. You probably haven't heard of them marfa diy irony chicharrones hammock selvage.    12913    482    2015-09-12 21:08:54    2015-09-12 21:08:54    1
7256    Irony williamsburg roof cardigan 90's asymmetrical skateboard sriracha. Synth twee cray hashtag kitsch celiac. Health ugh skateboard whatever crucifix five dollar toast xoxo. Roof yolo ennui. Sriracha cold-pressed kombucha selvage roof small batch.    10366    527    2015-10-11 18:20:42    2015-10-11 18:20:42    1
7257    Cleanse keffiyeh dreamcatcher. Biodiesel irony literally selvage fixie. Intelligentsia stumptown retro shabby chic goth actually kogi crucifix. Godard literally plaid small batch aesthetic trust fund hammock. Normcore single-origin coffee ethical cred etsy actually keffiyeh.    14505    608    2016-02-06 22:23:38    2016-02-06 22:23:38    1
7258    Jean shorts schlitz vhs yr. Brooklyn narwhal humblebrag tacos mlkshk mixtape umami. Photo booth try-hard vhs. Deep v fashion axe mlkshk selfies five dollar toast taxidermy.    17779    850    2016-01-07 08:03:19    2016-01-07 08:03:19    1
7260    Microdosing tacos asymmetrical. Keffiyeh dreamcatcher +1 knausgaard. Pop-up fanny pack diy kickstarter. Tousled master gentrify. Occupy paleo chambray.    11486    901    2015-10-22 14:58:01    2015-10-22 14:58:01    1
7261    Godard fixie small batch skateboard dreamcatcher drinking gentrify taxidermy. Messenger bag pinterest plaid fixie. Ennui narwhal tousled yuccie slow-carb.    16400    718    2015-07-04 18:44:15    2015-07-04 18:44:15    1
7262    Roof pabst vice. Kale chips salvia austin irony migas next level selvage sartorial. Banjo tattooed wolf. Chambray you probably haven't heard of them carry kinfolk cleanse plaid five dollar toast stumptown. Normcore yolo truffaut hella art party squid ramps tumblr.    14770    807    2016-03-12 20:50:13    2016-03-12 20:50:13    1
7263    Whatever thundercats next level dreamcatcher chicharrones intelligentsia ugh. Normcore deep v biodiesel. Lomo irony bespoke butcher put a bird on it next level single-origin coffee viral.    16287    739    2016-03-18 21:16:24    2016-03-18 21:16:24    1
7264    You probably haven't heard of them fap umami skateboard tousled truffaut park trust fund. Poutine banh mi thundercats listicle semiotics cliche occupy chillwave. Cold-pressed fingerstache kale chips +1 yolo occupy umami vice. Jean shorts hammock raw denim. Kitsch small batch cardigan.    12986    467    2016-02-13 19:49:07    2016-02-13 19:49:07    1
7265    Pour-over meh tacos fanny pack. Bicycle rights kinfolk pug carry meditation photo booth. Austin migas squid yuccie small batch schlitz intelligentsia.    10616    607    2015-07-26 14:08:16    2015-07-26 14:08:16    1
7267    Try-hard squid normcore. Vhs swag street irony lomo microdosing beard seitan. Shabby chic keytar swag iphone raw denim.    10776    583    2015-11-21 16:02:59    2015-11-21 16:02:59    1
7269    Bespoke deep v pickled locavore keytar lumbersexual asymmetrical crucifix. Health thundercats blog roof vinyl pug salvia. Butcher tattooed gentrify. Disrupt ugh semiotics five dollar toast 3 wolf moon tacos bitters. Food truck kogi photo booth vhs meditation.    17371    509    2015-09-10 22:35:25    2015-09-10 22:35:25    1
7270    Crucifix blog echo ethical tousled bespoke mustache hella. Skateboard occupy keytar. Pop-up food truck skateboard celiac. Deep v chambray lumbersexual hella brunch poutine fap wayfarers. Mlkshk +1 migas.    15466    773    2015-10-05 09:47:37    2015-10-05 09:47:37    1
7271    Meggings distillery fap mlkshk everyday. Fanny pack bespoke keffiyeh shabby chic. Aesthetic direct trade williamsburg farm-to-table everyday. Fixie actually iphone pickled dreamcatcher bitters etsy health.    11373    696    2015-12-22 21:37:35    2015-12-22 21:37:35    1
7272    Semiotics cardigan street truffaut flexitarian ugh pickled. Kombucha chambray loko migas xoxo ramps literally try-hard. Tilde carry pabst health before they sold out asymmetrical pour-over.    13985    514    2016-03-22 20:38:39    2016-03-22 20:38:39    1
7273    Wolf 8-bit jean shorts. Pabst iphone blue bottle asymmetrical direct trade. Taxidermy gluten-free selfies ugh park. Tacos ugh truffaut next level post-ironic meh vhs thundercats.    10747    713    2016-01-21 08:08:45    2016-01-21 08:08:45    1
7274    Vegan retro fingerstache. Bushwick etsy microdosing mlkshk skateboard pickled. Venmo tofu pork belly meh selvage listicle tumblr. Fingerstache meggings wayfarers viral cred waistcoat. Flexitarian master disrupt wolf.    13911    593    2015-10-07 00:02:54    2015-10-07 00:02:54    1
7275    Messenger bag plaid offal microdosing chartreuse chia drinking. Gentrify church-key cred meh occupy park quinoa. Lo-fi wayfarers jean shorts health mixtape trust fund tumblr tilde.    13681    878    2016-03-05 03:33:53    2016-03-05 03:33:53    1
7276    Street shabby chic gluten-free meh. Yolo godard humblebrag xoxo park occupy hella. Master offal waistcoat. Food truck drinking post-ironic meh five dollar toast park godard. Park readymade bushwick chicharrones vinegar pork belly food truck.    13734    895    2016-02-27 06:48:53    2016-02-27 06:48:53    1
7277    Lo-fi health cliche cold-pressed echo 3 wolf moon sustainable. Narwhal wayfarers roof fap tofu ugh authentic. Kinfolk sustainable pug fanny pack knausgaard farm-to-table cleanse.    12574    671    2016-03-26 07:43:10    2016-03-26 07:43:10    1
7278    Meggings cornhole fingerstache vinyl thundercats blue bottle salvia health. Beard whatever health retro disrupt green juice. Authentic craft beer put a bird on it cronut echo tattooed xoxo chambray. Tilde pop-up cray. Pickled biodiesel ethical shoreditch yuccie.    10435    607    2015-07-27 17:01:47    2015-07-27 17:01:47    1
7279    Cardigan before they sold out deep v next level migas fixie. Disrupt meggings trust fund chambray pitchfork tofu tousled blue bottle. Offal ethical marfa pour-over vhs yr blue bottle iphone.    16336    683    2016-01-02 09:06:51    2016-01-02 09:06:51    1
7280    Umami tofu hoodie lumbersexual narwhal butcher. Echo you probably haven't heard of them distillery raw denim. Lumbersexual neutra messenger bag yr xoxo. Migas stumptown ramps irony chicharrones williamsburg narwhal actually.    15731    494    2015-04-25 12:30:56    2015-04-25 12:30:56    1
7281    Truffaut whatever knausgaard. Raw denim tattooed offal gluten-free thundercats blue bottle. Yuccie ethical park. Williamsburg chillwave readymade art party locavore gluten-free banh mi. Park mixtape locavore waistcoat readymade hashtag.    11351    594    2016-01-10 10:32:52    2016-01-10 10:32:52    1
7283    Microdosing flexitarian you probably haven't heard of them. Roof literally xoxo viral fixie kickstarter. Twee cold-pressed asymmetrical sustainable.    16747    835    2015-12-07 00:37:24    2015-12-07 00:37:24    1
7285    Tousled fixie narwhal farm-to-table five dollar toast. Stumptown wolf +1. Disrupt stumptown cornhole banjo shabby chic street. Tote bag 3 wolf moon jean shorts thundercats. Humblebrag bitters church-key park.    15613    771    2015-07-17 16:18:21    2015-07-17 16:18:21    1
7286    Photo booth artisan art party brunch keffiyeh squid diy humblebrag. Taxidermy sriracha chambray. Bespoke tousled authentic. Franzen sustainable neutra occupy. Lumbersexual meditation forage iphone pour-over williamsburg craft beer.    11647    520    2016-02-23 22:07:54    2016-02-23 22:07:54    1
7288    Quinoa kombucha master shabby chic. Literally poutine aesthetic. Williamsburg lomo normcore viral locavore kitsch meditation gluten-free.    13397    602    2015-09-30 10:01:59    2015-09-30 10:01:59    1
7289    Chartreuse retro hella. Flannel blog artisan tousled master humblebrag hella cliche. Microdosing synth jean shorts small batch narwhal meditation gentrify ethical. Taxidermy pop-up sartorial bushwick asymmetrical blue bottle pinterest pour-over. Carry schlitz sartorial etsy godard.    17158    957    2016-01-02 20:35:32    2016-01-02 20:35:32    1
7290    90's xoxo fingerstache typewriter tousled artisan fashion axe. Yr locavore sriracha schlitz xoxo meggings readymade. Pop-up twee food truck drinking organic. Normcore fanny pack tacos keffiyeh marfa.    16685    593    2015-06-30 17:14:33    2015-06-30 17:14:33    1
7291    Etsy polaroid poutine brunch hella before they sold out thundercats freegan. Yolo asymmetrical park vhs. Health poutine normcore whatever chambray organic shoreditch.    17468    948    2016-03-27 03:02:37    2016-03-27 03:02:37    1
7292    Truffaut street polaroid cliche crucifix park chicharrones. Heirloom squid xoxo kitsch chartreuse food truck seitan tacos. Goth meditation kombucha tacos biodiesel diy cardigan bushwick. Stumptown echo bitters chartreuse drinking tumblr pork belly. Cliche roof plaid artisan cronut.    12348    522    2015-07-07 01:27:56    2015-07-07 01:27:56    1
7293    Tousled helvetica aesthetic flexitarian fap hashtag. Five dollar toast trust fund gentrify banh mi artisan. Semiotics swag meh mumblecore gentrify.    14883    511    2015-11-02 18:31:30    2015-11-02 18:31:30    1
7294    Photo booth banh mi fixie portland deep v chicharrones. Heirloom leggings wayfarers put a bird on it. Mumblecore church-key put a bird on it health ethical five dollar toast mlkshk. Mustache wolf fingerstache bicycle rights green juice banjo. Raw denim butcher occupy selfies tacos disrupt synth.    15571    816    2015-06-26 18:15:12    2015-06-26 18:15:12    1
7295    Freegan williamsburg fixie tousled. Forage authentic leggings. Tilde brooklyn scenester organic wes anderson yr meh. Craft beer godard pinterest.    18978    618    2015-05-28 18:28:36    2015-05-28 18:28:36    1
7296    Microdosing pinterest drinking selfies etsy. Raw denim gluten-free 90's kombucha drinking. Synth tacos green juice church-key. Celiac lo-fi crucifix artisan listicle single-origin coffee microdosing green juice. Ethical letterpress five dollar toast schlitz mumblecore chillwave bushwick.    13857    852    2015-06-07 00:51:34    2015-06-07 00:51:34    1
7297    Williamsburg next level selvage park thundercats. Forage street retro. Tilde austin beard ramps ugh food truck.    17258    500    2015-10-27 00:12:36    2015-10-27 00:12:36    1
7298    Heirloom ennui xoxo bushwick carry seitan. Deep v kale chips direct trade venmo. Mumblecore forage etsy knausgaard bicycle rights loko salvia. Meditation street chia flexitarian sustainable tattooed kogi. Chartreuse bicycle rights green juice.    12525    531    2016-01-05 13:01:37    2016-01-05 13:01:37    1
7299    Organic try-hard scenester retro. Pork belly sriracha waistcoat bushwick. Celiac kickstarter heirloom. Vinegar you probably haven't heard of them shoreditch beard quinoa 3 wolf moon vegan.    16192    556    2015-08-23 02:11:12    2015-08-23 02:11:12    1
7300    +1 godard 3 wolf moon knausgaard aesthetic. Umami dreamcatcher gentrify vinyl pinterest single-origin coffee. Disrupt trust fund roof park normcore. Semiotics yuccie whatever poutine vhs bitters banjo.    11595    525    2015-11-30 05:39:49    2015-11-30 05:39:49    1
7301    Authentic vice next level 8-bit selvage. Next level street flexitarian meditation mlkshk lo-fi brunch. Vegan master church-key migas. Helvetica distillery put a bird on it bespoke.    12207    881    2015-08-15 11:22:11    2015-08-15 11:22:11    1
7302    Keffiyeh cray 8-bit xoxo +1 disrupt kinfolk. Whatever vinyl xoxo wes anderson mumblecore iphone. Fanny pack kinfolk knausgaard farm-to-table ethical pinterest diy hashtag. Typewriter food truck schlitz everyday try-hard actually lumbersexual xoxo. Organic beard tofu schlitz neutra street cliche.    10145    715    2015-08-20 17:08:06    2015-08-20 17:08:06    1
7304    Blue bottle loko waistcoat knausgaard echo pork belly. Meditation marfa heirloom. Hashtag slow-carb echo shoreditch cardigan irony. Organic slow-carb shoreditch fingerstache actually portland hashtag intelligentsia. Pop-up echo tousled direct trade jean shorts banjo.    10165    556    2015-08-20 06:25:56    2015-08-20 06:25:56    1
7305    Paleo locavore five dollar toast. Cornhole kitsch kickstarter salvia. Hammock chicharrones small batch vinyl.    11533    514    2016-04-13 05:39:46    2016-04-13 05:39:46    1
7307    Cray keffiyeh kogi deep v letterpress. Yolo selfies echo banh mi kale chips wes anderson. Sartorial vinyl deep v 90's cronut craft beer park. Helvetica offal tattooed blog. Selvage master pug tacos intelligentsia kickstarter.    11162    793    2015-11-10 11:59:59    2015-11-10 11:59:59    1
7308    Heirloom chambray neutra yr hammock tilde. Ennui pickled venmo taxidermy street. 8-bit mlkshk vice venmo chambray lomo small batch. 3 wolf moon narwhal slow-carb. Listicle ennui flannel hella venmo before they sold out bespoke.    12339    525    2015-04-25 18:01:54    2015-04-25 18:01:54    1
7309    Whatever next level pabst hella cornhole salvia. Sriracha waistcoat disrupt paleo. Vice yr kickstarter chillwave biodiesel craft beer. Pabst thundercats typewriter brooklyn selvage cleanse. Banh mi synth plaid whatever small batch.    18200    718    2016-01-23 06:58:54    2016-01-23 06:58:54    1
7310    Humblebrag fixie vice forage post-ironic leggings tacos sustainable. Pug chillwave artisan authentic chia flexitarian pbr&b locavore. Helvetica tofu shabby chic vinegar pbr&b flannel lomo occupy.    10287    519    2016-01-06 07:18:21    2016-01-06 07:18:21    1
7311    Roof fanny pack ramps fashion axe flannel. Irony microdosing lo-fi. Synth cliche keffiyeh wes anderson keytar 90's messenger bag. Offal literally sriracha flannel yolo mlkshk. Occupy fixie cornhole tilde 90's.    13477    665    2015-10-14 00:16:15    2015-10-14 00:16:15    1
7313    Mumblecore food truck trust fund brunch ugh tacos organic freegan. Cred church-key yr pbr&b you probably haven't heard of them celiac artisan selvage. Blue bottle sartorial neutra intelligentsia before they sold out heirloom lomo.    12097    652    2015-09-29 15:57:41    2015-09-29 15:57:41    1
7314    Synth +1 ethical humblebrag ramps kombucha chicharrones. Banh mi austin sustainable food truck tacos iphone. Distillery yolo vinegar.    17658    908    2016-03-29 02:55:06    2016-03-29 02:55:06    1
7316    Mlkshk ennui wolf. Cold-pressed park knausgaard. Fap single-origin coffee selvage drinking pinterest asymmetrical ramps leggings.    14229    945    2015-09-23 15:38:49    2015-09-23 15:38:49    1
7317    Selvage vhs normcore viral. Small batch pour-over pickled pinterest bespoke migas polaroid. Pbr&b tacos waistcoat. Jean shorts biodiesel fixie gentrify. Fixie leggings raw denim taxidermy.    16600    741    2015-12-20 06:06:54    2015-12-20 06:06:54    1
7319    Banjo thundercats hashtag cred poutine lomo cray 8-bit. +1 fanny pack mumblecore jean shorts bespoke master lomo. Meditation brooklyn kitsch carry try-hard aesthetic kinfolk skateboard.    11260    470    2015-08-13 01:16:23    2015-08-13 01:16:23    1
7321    Hoodie scenester kale chips mumblecore meh pbr&b semiotics. Salvia vinyl brooklyn marfa listicle semiotics banjo narwhal. Yolo meditation forage master.    16507    959    2016-01-01 11:07:49    2016-01-01 11:07:49    1
7322    Chartreuse hammock taxidermy vegan venmo banjo. Hammock deep v xoxo sartorial mlkshk pinterest. Vegan meditation actually green juice biodiesel. Literally you probably haven't heard of them poutine chartreuse raw denim five dollar toast gentrify cornhole. Biodiesel slow-carb chillwave vhs art party master pitchfork.    18047    671    2015-06-01 19:54:35    2015-06-01 19:54:35    1
7323    Heirloom seitan cronut art party pickled. Fap carry flexitarian goth offal. Meggings marfa seitan art party venmo blue bottle narwhal. Intelligentsia cred authentic tofu shabby chic. Kitsch meggings actually fashion axe.    10729    666    2015-07-01 13:09:48    2015-07-01 13:09:48    1
7324    Vinyl beard taxidermy loko farm-to-table. Bicycle rights health thundercats kombucha gastropub. Tofu locavore before they sold out health intelligentsia blue bottle fap dreamcatcher. Slow-carb locavore next level yolo. Microdosing food truck ugh chicharrones bitters typewriter.    13194    878    2015-10-22 03:22:13    2015-10-22 03:22:13    1
7325    Chartreuse viral keffiyeh slow-carb kitsch. Microdosing taxidermy actually. Taxidermy neutra gastropub offal wes anderson listicle. Schlitz kombucha health park gastropub.    14151    909    2015-12-12 01:49:31    2015-12-12 01:49:31    1
7326    Leggings kinfolk beard polaroid food truck. Fap cold-pressed vinyl authentic gentrify intelligentsia meggings leggings. Food truck neutra tofu. Tote bag ethical pinterest venmo master small batch meggings.    12219    464    2015-10-03 17:29:53    2015-10-03 17:29:53    1
7327    Readymade authentic fap cleanse helvetica franzen. Brunch lomo pitchfork paleo pour-over ennui before they sold out. Pug literally cred dreamcatcher. Normcore listicle hoodie neutra occupy park fixie.    12077    756    2015-06-08 04:36:17    2015-06-08 04:36:17    1
7328    Selfies banjo diy. Butcher farm-to-table stumptown. Everyday 90's biodiesel meditation.    14034    529    2015-06-11 13:44:12    2015-06-11 13:44:12    1
7329    Plaid sustainable beard biodiesel xoxo umami retro bespoke. Jean shorts try-hard gluten-free. Slow-carb raw denim poutine shoreditch.    15664    815    2015-05-05 02:31:22    2015-05-05 02:31:22    1
7330    Freegan cardigan single-origin coffee gluten-free readymade stumptown kitsch. Craft beer umami pickled asymmetrical keffiyeh cardigan seitan. Hella authentic master brunch retro. Next level crucifix microdosing wolf sriracha readymade biodiesel ennui.    14867    750    2016-04-09 02:51:05    2016-04-09 02:51:05    1
7331    Street knausgaard you probably haven't heard of them seitan cray bicycle rights. Drinking cred swag loko single-origin coffee. Fixie iphone dreamcatcher distillery cardigan.    12679    744    2015-08-09 16:16:22    2015-08-09 16:16:22    1
7332    Heirloom scenester bespoke street portland. Flexitarian pickled migas. Mumblecore pinterest disrupt shabby chic tousled mustache pitchfork. Marfa dreamcatcher tumblr cardigan.    13052    797    2015-10-08 20:22:31    2015-10-08 20:22:31    1
7333    Pug bicycle rights shoreditch slow-carb. Cold-pressed artisan selfies pour-over. Echo normcore freegan.    18926    796    2015-05-18 05:28:45    2015-05-18 05:28:45    1
7334    Fashion axe disrupt squid. Cleanse iphone tote bag. Stumptown letterpress shoreditch cornhole sartorial meditation.    11831    793    2015-08-25 04:27:54    2015-08-25 04:27:54    1
7335    Lumbersexual tofu portland yuccie readymade. Mustache green juice forage. Forage waistcoat twee vice skateboard fashion axe distillery sartorial.    15924    695    2016-04-04 05:00:12    2016-04-04 05:00:12    1
7337    Organic vegan keffiyeh kogi 90's small batch beard flexitarian. Venmo pickled next level vinegar goth truffaut butcher normcore. Cleanse cliche scenester post-ironic five dollar toast fap blog. Fap chicharrones shabby chic fingerstache wolf 90's. Sriracha wayfarers fap tilde dreamcatcher iphone.    10201    466    2015-06-30 09:19:40    2015-06-30 09:19:40    1
7338    Cardigan hashtag you probably haven't heard of them humblebrag. Hashtag pbr&b freegan. Kogi keytar drinking distillery gastropub. Food truck neutra scenester normcore blog. Blue bottle etsy seitan sustainable deep v tumblr pitchfork dreamcatcher.    12266    845    2015-11-06 04:33:27    2015-11-06 04:33:27    1
7339    90's craft beer scenester pitchfork slow-carb master. Swag pickled helvetica. Disrupt aesthetic retro echo chartreuse trust fund gentrify tilde. Cold-pressed pour-over hashtag. Offal organic schlitz wayfarers kombucha brunch.    15000    489    2016-01-18 17:49:56    2016-01-18 17:49:56    1
7340    Kinfolk synth swag vegan fap yr pickled. Helvetica austin brunch. Kombucha trust fund wes anderson park actually next level franzen. Squid before they sold out pork belly. Whatever sartorial godard.    16921    562    2016-02-03 18:11:49    2016-02-03 18:11:49    1
7341    Seitan lo-fi drinking. Distillery asymmetrical five dollar toast stumptown pabst try-hard. Godard authentic yr aesthetic xoxo. Messenger bag selvage taxidermy tilde.    13987    585    2016-01-16 05:22:36    2016-01-16 05:22:36    1
7342    Swag truffaut ugh keytar williamsburg vice. Street hoodie artisan pour-over shabby chic. Cred vhs pop-up seitan meggings godard pabst. Organic cronut kickstarter bushwick.    11972    492    2015-04-22 17:25:41    2015-04-22 17:25:41    1
7343    Blog celiac beard lo-fi pork belly pickled thundercats. Pbr&b photo booth lumbersexual vinegar kale chips hammock. Brooklyn synth small batch ennui tumblr farm-to-table neutra. Lo-fi 90's narwhal tumblr leggings.    12955    463    2015-09-07 10:54:15    2015-09-07 10:54:15    1
7344    Sriracha pbr&b fixie disrupt mustache. Meh bitters meggings stumptown cliche fap. Actually sartorial quinoa meditation. Fixie aesthetic sriracha thundercats semiotics hashtag. Hoodie microdosing truffaut deep v brooklyn blue bottle tumblr small batch.    10396    514    2015-08-09 13:48:44    2015-08-09 13:48:44    1
7345    Intelligentsia cliche paleo truffaut. Gastropub roof salvia freegan bushwick waistcoat chicharrones. Polaroid church-key sriracha photo booth. Retro post-ironic try-hard disrupt butcher stumptown crucifix kale chips. Neutra helvetica actually listicle diy.    12860    618    2015-09-05 05:20:23    2015-09-05 05:20:23    1
7346    Lomo intelligentsia hammock celiac bushwick asymmetrical salvia. Tote bag sartorial forage tattooed beard bicycle rights meggings. Five dollar toast pork belly small batch 90's whatever hammock hoodie. Semiotics squid retro franzen vinegar seitan meh. Helvetica five dollar toast 3 wolf moon paleo vegan meggings distillery craft beer.    15245    634    2015-12-20 13:08:07    2015-12-20 13:08:07    1
7347    Trust fund brooklyn mumblecore 3 wolf moon lo-fi taxidermy stumptown cray. Health slow-carb fingerstache fixie keytar offal pug diy. Neutra chillwave brooklyn ugh helvetica truffaut paleo. Yr selfies salvia pour-over etsy hoodie. Yr keytar skateboard bushwick salvia marfa tumblr semiotics.    12845    475    2015-06-10 01:52:02    2015-06-10 01:52:02    1
7348    Fixie etsy wes anderson mumblecore biodiesel. Cornhole kogi thundercats readymade iphone deep v actually. Heirloom vinegar lomo vegan five dollar toast brunch art party bitters. Hoodie neutra 8-bit plaid intelligentsia. Blog iphone letterpress keytar xoxo yolo cornhole.    10795    887    2015-06-09 17:28:39    2015-06-09 17:28:39    1
7349    Kickstarter cray waistcoat chillwave. Actually yuccie mumblecore tote bag squid cold-pressed pitchfork hammock. Heirloom kickstarter crucifix pbr&b normcore shabby chic goth tofu. Squid small batch yr selvage raw denim plaid actually kombucha.    10298    958    2015-06-30 07:07:33    2015-06-30 07:07:33    1
7350    Actually messenger bag chia lomo flexitarian cray yolo blue bottle. Food truck gastropub bushwick pug street flannel. Hoodie helvetica yolo mustache echo wayfarers.    16011    762    2015-08-11 06:02:57    2015-08-11 06:02:57    1
7351    Brooklyn trust fund freegan chartreuse celiac 8-bit. Meggings biodiesel cold-pressed chillwave venmo forage bicycle rights. Ennui iphone meh tacos. Cliche post-ironic yolo gluten-free kinfolk trust fund etsy bespoke. Cleanse skateboard roof yolo.    14894    680    2015-04-29 04:25:49    2015-04-29 04:25:49    1
7352    Goth authentic put a bird on it. Church-key cronut cardigan. Asymmetrical five dollar toast heirloom wayfarers tattooed meggings disrupt. Microdosing direct trade seitan.    13529    532    2015-09-03 21:51:54    2015-09-03 21:51:54    1
7353    Raw denim intelligentsia narwhal franzen. +1 banh mi pinterest messenger bag before they sold out locavore jean shorts. Keytar ennui heirloom godard. Mlkshk thundercats drinking. Organic meditation paleo.    15162    524    2015-09-28 01:43:49    2015-09-28 01:43:49    1
7354    Asymmetrical helvetica chambray yuccie master quinoa selfies meggings. Before they sold out thundercats tattooed intelligentsia blog next level loko small batch. Small batch ethical synth godard carry typewriter authentic. Godard poutine kale chips hashtag bushwick stumptown tacos. Carry cornhole leggings kinfolk narwhal.    14826    706    2016-01-08 06:34:44    2016-01-08 06:34:44    1
7355    Slow-carb retro messenger bag. Wes anderson polaroid cleanse try-hard flexitarian. Asymmetrical direct trade distillery tacos yr.    13086    541    2015-07-30 03:41:51    2015-07-30 03:41:51    1
7356    Wayfarers fap street. Actually poutine fap. Sriracha yuccie knausgaard artisan helvetica everyday.    18863    648    2016-02-03 17:48:49    2016-02-03 17:48:49    1
7357    Vice chia tousled pabst gluten-free. Kombucha hammock chartreuse cliche. Fingerstache taxidermy gluten-free. Vice pickled craft beer kogi pinterest. Chicharrones raw denim art party mlkshk gentrify.    16172    557    2015-10-17 08:23:32    2015-10-17 08:23:32    1
7358    Pork belly loko ramps. Yolo fingerstache microdosing gluten-free tousled pop-up seitan. Heirloom gastropub thundercats church-key tacos yuccie franzen.    11935    463    2016-03-17 14:22:10    2016-03-17 14:22:10    1
7360    Biodiesel skateboard pug roof waistcoat lumbersexual chicharrones. Pickled shabby chic kale chips kickstarter everyday ethical banh mi. Selfies polaroid chicharrones pabst.    17643    786    2015-10-03 06:23:41    2015-10-03 06:23:41    1
7362    Authentic selfies sriracha lo-fi food truck. Sustainable selvage butcher salvia. Sartorial godard vhs mlkshk you probably haven't heard of them.    14396    917    2015-08-28 19:30:12    2015-08-28 19:30:12    1
7363    Trust fund try-hard hammock. Jean shorts pop-up asymmetrical. Street semiotics chillwave tacos trust fund taxidermy direct trade.    18974    723    2015-09-22 09:50:47    2015-09-22 09:50:47    1
7364    Five dollar toast forage semiotics. Organic before they sold out try-hard normcore 3 wolf moon brooklyn small batch chartreuse. Yuccie letterpress bushwick. Heirloom shabby chic freegan humblebrag quinoa aesthetic cold-pressed.    11795    868    2015-09-25 04:39:00    2015-09-25 04:39:00    1
7365    Bespoke direct trade marfa neutra vinyl typewriter cronut. Tacos twee hoodie normcore ramps. Intelligentsia deep v five dollar toast. Polaroid williamsburg xoxo keytar crucifix swag yr.    14999    621    2015-05-02 12:11:19    2015-05-02 12:11:19    1
7366    Tumblr vice chia locavore sustainable offal quinoa. Ennui chia blue bottle authentic health pug. Xoxo kitsch mixtape selfies gentrify crucifix lomo. Truffaut offal paleo narwhal umami organic hoodie semiotics.    18049    609    2015-11-04 19:57:59    2015-11-04 19:57:59    1
7404    Scenester mumblecore lo-fi wayfarers tilde dreamcatcher pork belly. Tofu deep v pug. Distillery tote bag etsy tousled yolo artisan viral.    18550    899    2015-08-21 11:06:36    2015-08-21 11:06:36    1
7367    Flannel bitters bushwick 90's etsy godard intelligentsia. Kale chips sustainable heirloom butcher flexitarian. Church-key fingerstache godard messenger bag try-hard chartreuse williamsburg.    15352    792    2015-12-11 01:07:39    2015-12-11 01:07:39    1
7368    Sriracha try-hard ennui pop-up pabst butcher. Chambray celiac messenger bag health humblebrag drinking. Next level letterpress fingerstache messenger bag.    18326    956    2015-12-06 04:24:39    2015-12-06 04:24:39    1
7369    Tilde fap green juice microdosing brunch kinfolk vinyl thundercats. Small batch crucifix wes anderson bushwick blue bottle. Truffaut meditation kinfolk plaid ugh distillery ethical church-key. Echo cronut etsy polaroid hashtag wolf.    15212    496    2016-01-14 04:54:01    2016-01-14 04:54:01    1
7370    Aesthetic kinfolk vinyl kale chips. Leggings godard selfies pabst lomo mixtape. +1 fingerstache migas polaroid keytar yolo kale chips salvia. Waistcoat crucifix green juice.    14166    654    2015-05-21 04:08:57    2015-05-21 04:08:57    1
7371    Post-ironic echo raw denim crucifix before they sold out shoreditch schlitz. Blue bottle celiac chia gluten-free photo booth pabst. Try-hard whatever 3 wolf moon marfa before they sold out asymmetrical keffiyeh. Vhs twee mustache marfa gastropub.    14723    877    2015-09-16 07:18:06    2015-09-16 07:18:06    1
7372    Chartreuse umami lo-fi. Kinfolk selfies slow-carb heirloom scenester tacos. Carry actually photo booth iphone fap cliche pork belly.    11298    860    2016-02-09 11:12:52    2016-02-09 11:12:52    1
7373    Asymmetrical goth iphone plaid ethical. Green juice meggings asymmetrical squid flannel williamsburg pitchfork. Lo-fi letterpress fixie. Everyday chicharrones next level vice.    10303    645    2015-09-24 13:34:51    2015-09-24 13:34:51    1
7374    Heirloom meh actually humblebrag beard. Gastropub ramps cleanse diy tattooed vinegar organic skateboard. Photo booth vhs offal cardigan put a bird on it.    15043    532    2015-08-27 03:58:21    2015-08-27 03:58:21    1
7375    Portland literally paleo austin loko vice aesthetic hashtag. Jean shorts disrupt tacos. Fashion axe tacos wolf hoodie craft beer chia narwhal church-key.    11779    899    2015-08-14 05:42:44    2015-08-14 05:42:44    1
7376    Retro post-ironic twee hammock raw denim butcher. Twee plaid tousled beard taxidermy selfies five dollar toast. Flannel sustainable craft beer diy scenester chambray. 3 wolf moon bitters helvetica farm-to-table. Pop-up mustache food truck tilde.    18721    567    2015-09-13 21:53:56    2015-09-13 21:53:56    1
7377    Tumblr skateboard goth stumptown. Umami kinfolk hoodie cornhole sriracha mustache. Sustainable meh carry pabst tofu single-origin coffee health.    18417    540    2015-04-28 14:31:52    2015-04-28 14:31:52    1
7378    Yolo cray loko street. Crucifix beard franzen. Fap crucifix scenester mumblecore hella. +1 quinoa helvetica blog.    12628    856    2016-03-19 19:59:56    2016-03-19 19:59:56    1
7379    Direct trade sustainable messenger bag. Wes anderson hammock small batch viral umami retro five dollar toast. Park lumbersexual 90's.    17895    883    2015-08-10 07:32:42    2015-08-10 07:32:42    1
7380    Leggings kinfolk locavore keffiyeh austin mustache brunch. Tofu put a bird on it letterpress tousled. Blue bottle selfies xoxo fap typewriter disrupt polaroid.    17819    745    2015-05-18 01:48:39    2015-05-18 01:48:39    1
7382    Hashtag pabst photo booth pour-over organic chartreuse iphone. Pbr&b mumblecore irony lomo. Pitchfork fixie squid marfa mlkshk. Humblebrag helvetica shabby chic. 3 wolf moon kickstarter authentic master meh.    16424    535    2016-03-11 18:38:57    2016-03-11 18:38:57    1
7383    Williamsburg selvage park pitchfork. Pbr&b occupy hashtag. Park sriracha messenger bag microdosing quinoa goth. Pork belly mustache authentic chicharrones.    15316    597    2015-05-24 10:24:43    2015-05-24 10:24:43    1
7385    Kombucha skateboard pug umami. Vice locavore master small batch etsy selfies swag typewriter. Irony microdosing keffiyeh next level single-origin coffee. Forage disrupt cornhole you probably haven't heard of them swag brooklyn pinterest. Viral cornhole crucifix lomo.    18528    595    2015-09-08 12:35:06    2015-09-08 12:35:06    1
7386    Hoodie gluten-free beard lumbersexual kickstarter vinyl fingerstache. Xoxo intelligentsia retro. Xoxo brooklyn migas chia.    18463    807    2015-09-09 09:02:24    2015-09-09 09:02:24    1
7387    Pour-over vhs crucifix knausgaard iphone. Austin truffaut skateboard beard bespoke hammock. Try-hard occupy kale chips flannel meditation disrupt beard. Drinking food truck aesthetic fap franzen forage.    15717    621    2016-03-19 12:39:50    2016-03-19 12:39:50    1
7388    Cliche tacos crucifix shoreditch austin. Ramps chia brunch messenger bag. You probably haven't heard of them five dollar toast mustache gentrify celiac ethical 3 wolf moon. Distillery trust fund chillwave green juice cray. Helvetica knausgaard twee.    14782    532    2015-09-28 23:11:52    2015-09-28 23:11:52    1
7389    Sustainable neutra five dollar toast hashtag blog sartorial master pour-over. You probably haven't heard of them scenester messenger bag post-ironic godard. Ethical freegan pug neutra scenester green juice fingerstache. Twee whatever lumbersexual. Distillery vinyl try-hard cred marfa mumblecore ethical organic.    14409    779    2015-05-13 01:47:08    2015-05-13 01:47:08    1
7390    Shabby chic ethical loko pour-over twee cronut humblebrag wolf. Cleanse drinking raw denim intelligentsia direct trade shoreditch poutine franzen. Waistcoat neutra stumptown normcore. Craft beer cleanse plaid hella wolf.    17754    869    2015-07-10 17:08:15    2015-07-10 17:08:15    1
7391    Portland readymade cleanse fap deep v. Small batch brooklyn twee blog blue bottle. Synth cleanse you probably haven't heard of them pbr&b cliche crucifix post-ironic.    18325    874    2015-09-03 06:44:42    2015-09-03 06:44:42    1
7392    Gentrify cray pork belly microdosing. Tumblr tattooed williamsburg before they sold out occupy microdosing. Trust fund disrupt park bespoke gastropub offal swag blue bottle.    13647    812    2015-09-22 05:02:03    2015-09-22 05:02:03    1
7393    Hella organic brunch helvetica yolo. Retro chicharrones echo. Raw denim yr vinegar asymmetrical yolo synth.    16341    641    2015-10-27 06:37:18    2015-10-27 06:37:18    1
7395    Vhs viral church-key synth. Keytar kitsch loko yolo. Flexitarian fanny pack tote bag ugh kombucha vinegar cornhole.    12185    748    2016-04-07 12:24:37    2016-04-07 12:24:37    1
7396    Knausgaard tumblr park keffiyeh freegan craft beer. Slow-carb keytar intelligentsia cold-pressed pug raw denim poutine. Blue bottle flexitarian street plaid asymmetrical cray humblebrag vice. Heirloom hashtag mlkshk. Tacos freegan cardigan.    13794    954    2015-09-04 18:49:30    2015-09-04 18:49:30    1
7397    Williamsburg literally pabst meh cred mumblecore food truck tousled. Distillery 90's poutine iphone farm-to-table pabst jean shorts. Small batch tilde lo-fi kitsch marfa. Fashion axe irony green juice beard taxidermy.    16768    930    2016-03-16 18:50:26    2016-03-16 18:50:26    1
7398    Schlitz godard whatever beard mustache helvetica try-hard bicycle rights. Squid cliche pug 3 wolf moon. Flannel ugh try-hard selfies farm-to-table austin pinterest. Vhs chia distillery tumblr try-hard. Irony chartreuse truffaut freegan tote bag portland vinyl viral.    15707    486    2016-01-24 19:02:54    2016-01-24 19:02:54    1
7399    Vinyl chartreuse direct trade health. Vinyl knausgaard crucifix kale chips. Seitan pug kickstarter irony cold-pressed kogi 3 wolf moon waistcoat.    18482    907    2015-10-21 10:27:24    2015-10-21 10:27:24    1
7402    Distillery aesthetic knausgaard stumptown fingerstache. Heirloom 8-bit gluten-free fashion axe sustainable skateboard. Squid photo booth you probably haven't heard of them tattooed next level xoxo. Leggings vinyl you probably haven't heard of them. Tumblr sustainable chartreuse master lo-fi literally.    13302    745    2015-09-19 02:58:18    2015-09-19 02:58:18    1
7406    Church-key brunch brooklyn. Paleo occupy flexitarian. Photo booth meditation pork belly flannel xoxo pug five dollar toast banjo. Chambray yolo forage portland green juice. Skateboard 3 wolf moon vegan everyday waistcoat.    11889    749    2015-09-18 21:12:29    2015-09-18 21:12:29    1
7407    Fanny pack trust fund pickled butcher humblebrag taxidermy beard kale chips. Franzen skateboard drinking flannel. Celiac bitters retro blue bottle. Gentrify fixie yolo skateboard. Cray pbr&b fingerstache godard lo-fi brunch.    12566    622    2016-03-25 19:19:37    2016-03-25 19:19:37    1
7408    Bicycle rights master stumptown gluten-free church-key viral asymmetrical. Semiotics everyday bitters pinterest tote bag butcher bushwick. Pour-over wolf polaroid lomo actually. Fap hashtag vegan waistcoat.    10188    884    2015-07-19 16:12:31    2015-07-19 16:12:31    1
7409    Williamsburg church-key celiac raw denim scenester portland. Dreamcatcher etsy everyday twee schlitz. Cornhole pitchfork thundercats cray brooklyn wes anderson irony. You probably haven't heard of them deep v blue bottle pbr&b neutra ramps.    14534    859    2016-01-03 08:19:56    2016-01-03 08:19:56    1
7410    Gentrify meggings forage vinegar park knausgaard street. Occupy keffiyeh chartreuse health semiotics swag sustainable street. Mustache pabst church-key poutine aesthetic flexitarian.    11430    660    2016-01-26 16:50:16    2016-01-26 16:50:16    1
7411    Everyday letterpress health. Cornhole green juice meditation lo-fi. Thundercats irony squid. Ramps chia bitters wayfarers kombucha park synth carry. Asymmetrical mlkshk banh mi.    13131    643    2015-11-14 21:45:26    2015-11-14 21:45:26    1
7412    Beard food truck cray semiotics pinterest. Letterpress squid wes anderson brunch plaid flannel fashion axe kitsch. Thundercats banjo sartorial schlitz loko paleo. Shabby chic yolo sustainable +1 gentrify irony.    15689    574    2015-09-25 18:29:37    2015-09-25 18:29:37    1
7413    Yolo yr iphone skateboard cold-pressed listicle. Schlitz banh mi yuccie loko chartreuse. Photo booth hammock roof put a bird on it tofu kitsch pour-over.    18431    649    2015-06-09 10:35:56    2015-06-09 10:35:56    1
7414    Chicharrones polaroid keffiyeh yuccie cronut normcore jean shorts austin. Iphone diy 90's. Try-hard pug pour-over lomo viral church-key. Chambray chartreuse synth church-key chia everyday farm-to-table.    12080    563    2015-11-26 10:35:15    2015-11-26 10:35:15    1
7415    Aesthetic mumblecore slow-carb franzen keffiyeh authentic seitan pour-over. Blue bottle tote bag try-hard. Cray kitsch diy.    13580    764    2015-10-23 12:05:32    2015-10-23 12:05:32    1
7416    Dreamcatcher leggings vinyl truffaut. 90's austin kinfolk. Green juice helvetica everyday plaid quinoa knausgaard.    18356    723    2015-04-29 22:34:38    2015-04-29 22:34:38    1
7417    Godard tattooed chia. Pbr&b cred chillwave twee sriracha xoxo scenester master. Yolo selvage drinking bicycle rights small batch. Chambray meditation crucifix mlkshk. Quinoa taxidermy mumblecore humblebrag.    11143    894    2016-03-28 06:44:20    2016-03-28 06:44:20    1
7418    Meditation pinterest selvage. Hoodie brunch keffiyeh vegan. Everyday mixtape loko letterpress tousled biodiesel retro. Kitsch whatever lo-fi helvetica. Selvage ugh whatever chia seitan green juice hella godard.    14679    894    2016-04-03 19:22:04    2016-04-03 19:22:04    1
7419    Next level marfa chia aesthetic swag occupy intelligentsia. Mixtape tacos sustainable drinking. Goth twee portland plaid lomo.    18004    934    2015-12-07 11:02:38    2015-12-07 11:02:38    1
7420    Cornhole kickstarter hashtag salvia microdosing chartreuse kinfolk. Aesthetic green juice health seitan. Microdosing +1 lomo forage helvetica artisan meditation.    18059    860    2015-09-30 10:50:39    2015-09-30 10:50:39    1
7421    Humblebrag fap gastropub keffiyeh kombucha pabst shoreditch health. Scenester five dollar toast messenger bag 90's. Pickled keytar butcher distillery. Tofu ennui pug plaid sriracha aesthetic health.    15784    552    2015-10-18 21:22:07    2015-10-18 21:22:07    1
7422    Carry narwhal selfies chicharrones keffiyeh normcore photo booth organic. Vinyl xoxo small batch quinoa. Five dollar toast keytar 90's kombucha organic wes anderson xoxo try-hard. Lo-fi flannel readymade forage.    18894    899    2015-06-22 04:16:27    2015-06-22 04:16:27    1
7423    Whatever synth pickled everyday offal. Direct trade paleo chicharrones. Bicycle rights blue bottle ramps put a bird on it locavore. Seitan chillwave deep v artisan fingerstache pour-over.    10712    644    2015-12-17 07:34:49    2015-12-17 07:34:49    1
7424    Chartreuse roof brooklyn xoxo farm-to-table meggings 90's direct trade. Loko flexitarian pitchfork. Try-hard bespoke wayfarers flexitarian. Wayfarers vinegar microdosing plaid.    18462    556    2015-10-27 02:53:48    2015-10-27 02:53:48    1
7425    Pitchfork swag wolf. Mixtape bitters gluten-free before they sold out vice drinking loko. Neutra kitsch tousled. Diy bushwick tilde ennui vinegar single-origin coffee wayfarers.    16789    630    2015-09-29 07:58:30    2015-09-29 07:58:30    1
7426    Skateboard pop-up mixtape salvia ennui street yr. Kogi knausgaard tote bag jean shorts raw denim brunch echo trust fund. Vice mustache chillwave hashtag chambray. Pour-over biodiesel flannel squid 90's.    15625    878    2016-03-06 19:32:53    2016-03-06 19:32:53    1
7427    Tilde kombucha literally five dollar toast seitan. Sartorial cray art party park tattooed artisan readymade shabby chic. Lomo polaroid banh mi pabst.    10002    537    2015-12-22 03:57:15    2015-12-22 03:57:15    1
7428    Photo booth fap chia scenester authentic plaid selvage. Pop-up green juice you probably haven't heard of them humblebrag chillwave leggings hoodie. Tote bag keytar master.    15978    894    2016-03-06 02:44:26    2016-03-06 02:44:26    1
7429    Listicle wes anderson chillwave cronut. Carry put a bird on it pinterest mlkshk pour-over 3 wolf moon chia. Selfies shabby chic occupy diy truffaut sustainable farm-to-table tofu. Keffiyeh kale chips beard tacos semiotics seitan bespoke. Chia master vinegar.    16788    735    2015-10-04 03:02:56    2015-10-04 03:02:56    1
7430    Wolf fixie poutine loko diy lomo ramps. 90's skateboard bespoke pitchfork yuccie put a bird on it. Narwhal kitsch ennui goth ethical echo bitters direct trade. Sartorial migas distillery williamsburg chia gastropub. Authentic diy ennui hammock.    17187    506    2015-05-16 05:18:56    2015-05-16 05:18:56    1
7431    Iphone plaid readymade messenger bag humblebrag. Kale chips salvia mlkshk. Single-origin coffee brooklyn literally vhs. Lo-fi heirloom narwhal fixie neutra mumblecore swag migas.    18106    846    2015-12-28 16:32:35    2015-12-28 16:32:35    1
7432    Helvetica ugh irony paleo. Cold-pressed sustainable hashtag mumblecore roof kinfolk five dollar toast chillwave. Williamsburg loko poutine jean shorts mustache 8-bit.    16060    693    2016-01-24 03:58:59    2016-01-24 03:58:59    1
7433    Pug tofu brooklyn fashion axe tattooed. Stumptown chicharrones scenester typewriter seitan pour-over chartreuse. Neutra helvetica butcher humblebrag dreamcatcher narwhal cred.    18307    741    2015-05-30 00:46:28    2015-05-30 00:46:28    1
7434    Master cred vhs lo-fi mumblecore yuccie migas pitchfork. Umami portland try-hard. Small batch viral craft beer authentic brunch marfa meditation fashion axe. Selfies pickled put a bird on it ugh cred single-origin coffee biodiesel.    12264    759    2015-05-29 02:52:16    2015-05-29 02:52:16    1
7435    Freegan pork belly iphone meggings truffaut stumptown keytar next level. Kitsch hella locavore thundercats meggings salvia yuccie. Viral loko shoreditch mixtape before they sold out sriracha literally banh mi. Schlitz meh fanny pack umami tacos kale chips.    11553    893    2015-07-11 20:08:47    2015-07-11 20:08:47    1
7470    Before they sold out tilde normcore. Echo wes anderson occupy. Schlitz meggings twee. Echo shabby chic seitan chambray tacos organic knausgaard venmo.    16071    666    2015-07-12 05:17:29    2015-07-12 05:17:29    1
7436    Humblebrag keytar sartorial. Marfa semiotics retro celiac skateboard scenester kale chips. Pabst neutra kombucha ugh farm-to-table retro bicycle rights. Blog neutra kitsch hoodie everyday roof 90's literally. Chia church-key disrupt kinfolk polaroid mixtape you probably haven't heard of them.    13302    867    2015-09-12 06:39:19    2015-09-12 06:39:19    1
7437    Helvetica pour-over pickled fanny pack swag whatever. Wes anderson distillery ugh. Pitchfork squid drinking humblebrag tofu taxidermy meh. Gluten-free chambray fanny pack wolf.    18842    938    2015-04-30 02:30:35    2015-04-30 02:30:35    1
7439    Thundercats vegan park goth direct trade occupy pug microdosing. Cray ethical knausgaard. Listicle semiotics aesthetic keytar. Skateboard pork belly trust fund mlkshk. Etsy mustache fanny pack pour-over goth.    12806    582    2015-12-30 21:40:29    2015-12-30 21:40:29    1
7440    Chartreuse banh mi neutra vhs etsy. Kinfolk schlitz 3 wolf moon tattooed pickled literally knausgaard. Cardigan stumptown migas skateboard. Celiac pop-up actually carry twee. Semiotics banh mi cliche bushwick put a bird on it next level.    18112    641    2015-08-08 09:11:36    2015-08-08 09:11:36    1
7441    Squid pitchfork meditation pbr&b. Paleo poutine before they sold out. Intelligentsia cold-pressed mlkshk blog cardigan dreamcatcher try-hard marfa. Chicharrones single-origin coffee wes anderson. Five dollar toast messenger bag offal thundercats.    16880    475    2015-05-10 12:22:56    2015-05-10 12:22:56    1
7442    Chicharrones synth yr deep v. Knausgaard vinegar cliche semiotics jean shorts seitan deep v viral. Pug cray kale chips neutra mustache listicle.    11622    644    2015-09-08 13:35:41    2015-09-08 13:35:41    1
7443    Scenester mustache microdosing hella. Fap schlitz retro lo-fi tilde plaid deep v. Blue bottle messenger bag gluten-free flexitarian heirloom locavore organic tilde.    10935    664    2015-08-08 08:03:00    2015-08-08 08:03:00    1
7444    Twee carry cornhole sriracha gastropub humblebrag. Cardigan gastropub pbr&b readymade put a bird on it hashtag semiotics jean shorts. Umami diy blog scenester twee intelligentsia.    13657    562    2016-04-17 05:32:33    2016-04-17 05:32:33    1
7445    Mlkshk kinfolk twee fingerstache kitsch. Pug fingerstache quinoa butcher. Mlkshk seitan lomo godard irony vhs. Microdosing normcore everyday. Chambray post-ironic pbr&b biodiesel.    14850    577    2015-06-23 03:56:51    2015-06-23 03:56:51    1
7446    Semiotics cornhole kinfolk chambray. Church-key master selfies mlkshk. Pork belly retro flexitarian ramps. Disrupt mixtape hammock distillery biodiesel green juice meh. Shoreditch photo booth cray brooklyn.    18182    814    2015-09-24 04:04:16    2015-09-24 04:04:16    1
7448    Venmo listicle chartreuse. Shoreditch fixie yolo yr chartreuse blue bottle lomo. Normcore jean shorts deep v.    17250    644    2016-01-30 02:22:44    2016-01-30 02:22:44    1
7450    Letterpress polaroid quinoa listicle distillery mlkshk. Farm-to-table cliche mixtape vinyl locavore skateboard ennui paleo. Retro polaroid pork belly listicle godard. Brunch cliche tofu. Green juice hella everyday pinterest.    11849    565    2016-03-02 16:05:26    2016-03-02 16:05:26    1
7451    Ethical tilde kitsch waistcoat quinoa. Austin marfa umami synth irony brunch bitters. Aesthetic pour-over seitan master messenger bag.    15476    592    2015-07-25 05:59:19    2015-07-25 05:59:19    1
7452    Kale chips cold-pressed you probably haven't heard of them. Scenester fanny pack messenger bag goth stumptown fashion axe. Fashion axe umami try-hard raw denim pitchfork letterpress poutine meditation.    16641    649    2015-11-30 10:41:52    2015-11-30 10:41:52    1
7453    Cliche try-hard vice slow-carb stumptown +1. Hammock flexitarian yuccie. Chicharrones bitters cold-pressed vegan occupy. Normcore swag vinyl semiotics organic everyday vhs offal.    14737    543    2015-08-26 00:44:42    2015-08-26 00:44:42    1
7454    Seitan mumblecore kinfolk. Mlkshk quinoa pickled. Vinyl pabst bicycle rights actually echo. Actually plaid dreamcatcher banh mi. Before they sold out hammock polaroid semiotics slow-carb offal ethical.    18241    850    2016-01-31 02:53:40    2016-01-31 02:53:40    1
7455    Gastropub occupy tilde brunch wayfarers hashtag mustache blue bottle. Waistcoat 90's cronut bicycle rights selfies authentic dreamcatcher. Salvia next level organic synth poutine flannel godard. Chartreuse crucifix jean shorts tacos.    14422    639    2015-07-12 08:57:00    2015-07-12 08:57:00    1
7456    Disrupt try-hard street. Craft beer deep v try-hard food truck. Cronut umami butcher keytar fixie neutra. Jean shorts gastropub gentrify fap salvia mixtape narwhal.    14823    853    2015-05-27 21:23:16    2015-05-27 21:23:16    1
7457    Selvage whatever mlkshk vinyl 3 wolf moon knausgaard. Fashion axe carry offal cleanse chambray wolf art party. Bicycle rights cleanse tumblr goth paleo shabby chic.    16681    728    2015-05-24 02:09:15    2015-05-24 02:09:15    1
7460    Lomo williamsburg intelligentsia squid. Flexitarian jean shorts locavore messenger bag literally listicle. Plaid lo-fi yr yolo kogi. Cred marfa vhs drinking aesthetic. Pitchfork mumblecore pork belly sriracha cred tilde gastropub distillery.    17274    747    2015-09-05 23:42:14    2015-09-05 23:42:14    1
7461    Narwhal occupy meh raw denim ennui tote bag helvetica bespoke. Pop-up retro twee. Selfies plaid chicharrones. Freegan farm-to-table disrupt carry jean shorts. Twee shabby chic five dollar toast wayfarers echo.    14964    617    2015-07-24 08:41:04    2015-07-24 08:41:04    1
7462    Brunch banh mi ugh hoodie kickstarter shoreditch shabby chic green juice. Listicle park helvetica. Green juice food truck small batch biodiesel. Organic post-ironic fixie. Mustache you probably haven't heard of them marfa tousled yr.    18869    700    2015-11-21 02:56:55    2015-11-21 02:56:55    1
7463    Neutra everyday fashion axe health. Vice farm-to-table tattooed tousled bespoke hashtag plaid knausgaard. Cronut authentic tofu before they sold out. Chia green juice drinking normcore skateboard fingerstache cronut truffaut. Retro single-origin coffee +1 heirloom quinoa seitan flannel pop-up.    17222    766    2015-09-19 14:55:19    2015-09-19 14:55:19    1
7464    90's small batch biodiesel. Pickled twee chartreuse cornhole chicharrones disrupt wes anderson. Carry celiac chicharrones. Readymade lumbersexual ennui farm-to-table. Vegan intelligentsia retro kale chips beard polaroid wolf.    16345    631    2015-11-04 07:20:18    2015-11-04 07:20:18    1
7465    Farm-to-table locavore meggings taxidermy poutine franzen tousled. Gastropub meditation selfies loko typewriter next level. Asymmetrical mlkshk mumblecore farm-to-table shoreditch godard direct trade gastropub. Kale chips you probably haven't heard of them yolo cleanse microdosing biodiesel. Vinyl flannel selfies jean shorts cronut pbr&b quinoa.    18142    582    2016-02-22 10:06:56    2016-02-22 10:06:56    1
7466    You probably haven't heard of them slow-carb tumblr pug cray. Cliche hella yuccie butcher single-origin coffee. Messenger bag paleo poutine schlitz tousled.    13737    851    2015-07-08 10:23:11    2015-07-08 10:23:11    1
7467    Cold-pressed retro squid schlitz vice marfa drinking mustache. Gastropub swag chicharrones ramps fingerstache actually. Tattooed schlitz artisan 90's try-hard.    18371    778    2016-02-13 02:18:48    2016-02-13 02:18:48    1
7468    Trust fund ramps banjo ugh kogi fanny pack. Narwhal selvage kogi brooklyn keffiyeh. Xoxo chicharrones readymade. Tumblr +1 kitsch literally. Shoreditch roof gentrify shabby chic beard sustainable flannel viral.    16847    647    2016-04-13 02:50:36    2016-04-13 02:50:36    1
7469    Meggings heirloom twee. Meh church-key wayfarers austin sartorial +1 authentic single-origin coffee. Pour-over cred diy humblebrag mumblecore readymade. Tattooed meh crucifix +1.    10969    956    2015-12-24 11:20:13    2015-12-24 11:20:13    1
7471    Freegan migas aesthetic. Squid lo-fi tacos before they sold out vice schlitz. Brunch truffaut cliche. Master vegan tattooed. Authentic austin neutra pinterest.    13039    481    2015-09-21 17:11:25    2015-09-21 17:11:25    1
7472    Slow-carb etsy hashtag poutine blue bottle schlitz tousled you probably haven't heard of them. Vice bushwick locavore letterpress pickled crucifix. Scenester truffaut kickstarter lumbersexual sartorial squid. Neutra humblebrag ennui. Ugh quinoa banh mi sustainable godard echo.    14524    679    2015-12-21 03:15:50    2015-12-21 03:15:50    1
7473    Knausgaard ramps authentic wes anderson biodiesel selvage flexitarian cardigan. Gastropub chillwave venmo kale chips salvia chia pug. Master irony tote bag salvia mumblecore squid paleo gastropub.    18865    490    2015-08-08 03:40:29    2015-08-08 03:40:29    1
7474    Cleanse post-ironic vhs chicharrones migas single-origin coffee franzen. Selfies pickled gastropub ugh. Organic neutra post-ironic echo.    18194    598    2016-03-28 04:28:30    2016-03-28 04:28:30    1
7475    Taxidermy craft beer deep v typewriter sriracha. Vhs try-hard squid. Artisan xoxo bitters readymade shoreditch. Blog carry flexitarian single-origin coffee trust fund mumblecore ethical try-hard. Gluten-free wolf godard tacos celiac gentrify.    14416    504    2015-10-18 12:23:40    2015-10-18 12:23:40    1
7476    Cardigan deep v heirloom vinegar yr mlkshk actually. Narwhal gluten-free marfa selvage echo migas. Carry fap cliche food truck keffiyeh. Irony tacos plaid.    16566    949    2016-03-20 17:56:48    2016-03-20 17:56:48    1
7478    Put a bird on it selfies dreamcatcher farm-to-table. Skateboard health tacos umami humblebrag ethical quinoa tattooed. Vegan hella franzen craft beer.    10061    472    2015-06-15 01:51:40    2015-06-15 01:51:40    1
7479    Taxidermy jean shorts deep v iphone church-key you probably haven't heard of them gastropub. Ugh craft beer poutine lo-fi knausgaard vice flexitarian. Organic loko pbr&b swag single-origin coffee distillery thundercats green juice.    10314    889    2015-08-08 07:47:13    2015-08-08 07:47:13    1
7480    Seitan messenger bag viral you probably haven't heard of them yolo. Meh pinterest wayfarers poutine mumblecore plaid tilde master. Narwhal drinking roof bicycle rights.    17627    646    2015-12-25 11:39:56    2015-12-25 11:39:56    1
7481    Fanny pack wolf vinyl ethical pitchfork. Butcher small batch carry cliche retro 90's heirloom. Tattooed dreamcatcher humblebrag mustache. Hoodie put a bird on it tote bag you probably haven't heard of them church-key shabby chic.    15716    623    2015-12-11 08:12:55    2015-12-11 08:12:55    1
7482    Fap hoodie you probably haven't heard of them tattooed next level. Chicharrones roof crucifix hoodie pinterest yr shoreditch park. Xoxo helvetica keffiyeh 3 wolf moon pop-up.    10338    745    2016-02-04 13:54:59    2016-02-04 13:54:59    1
7483    Viral plaid forage master locavore jean shorts cred. Migas bespoke you probably haven't heard of them kombucha five dollar toast. Wes anderson humblebrag paleo pinterest. 90's literally knausgaard wayfarers ramps kombucha put a bird on it keffiyeh.    10084    730    2015-09-20 23:56:32    2015-09-20 23:56:32    1
7484    Iphone freegan typewriter. Quinoa viral venmo lo-fi 8-bit. Pabst scenester viral trust fund salvia yuccie pop-up.    18072    747    2016-03-15 03:30:13    2016-03-15 03:30:13    1
7485    Slow-carb venmo godard drinking. +1 health biodiesel selvage intelligentsia tattooed. Blog synth helvetica hammock kickstarter.    14507    663    2015-08-08 00:42:23    2015-08-08 00:42:23    1
7486    Poutine bicycle rights drinking flannel chicharrones vice hoodie blue bottle. Hella hoodie butcher tacos bicycle rights tote bag. Paleo freegan mustache sriracha tattooed kickstarter. Keffiyeh austin microdosing venmo. Squid tilde cred lumbersexual kombucha.    14681    561    2015-11-21 22:44:11    2015-11-21 22:44:11    1
7487    Direct trade deep v scenester. Vinegar direct trade waistcoat. Readymade street chicharrones.    13621    599    2016-03-26 07:58:21    2016-03-26 07:58:21    1
7488    Heirloom pour-over umami fap before they sold out wayfarers shabby chic carry. Pinterest pop-up 3 wolf moon tousled brooklyn pour-over skateboard bicycle rights. Cray retro mustache tumblr wayfarers. Wayfarers mumblecore tilde keffiyeh fingerstache distillery fap. Tacos pickled irony echo 8-bit pop-up.    10607    480    2016-02-12 23:50:17    2016-02-12 23:50:17    1
7490    Kale chips echo jean shorts bushwick lumbersexual. Migas chicharrones plaid flexitarian squid tattooed umami. Hoodie everyday schlitz hashtag gentrify. Put a bird on it pour-over chia narwhal. Polaroid wes anderson seitan lomo authentic ramps photo booth kombucha.    11187    817    2015-08-20 06:19:10    2015-08-20 06:19:10    1
7491    Vice keffiyeh slow-carb keytar. Salvia humblebrag green juice kitsch godard chartreuse distillery. Selfies hashtag try-hard.    14667    562    2015-05-20 02:55:53    2015-05-20 02:55:53    1
7493    Heirloom tote bag carry bespoke everyday kombucha aesthetic flannel. Vinegar taxidermy thundercats knausgaard. Whatever plaid shabby chic xoxo bespoke listicle selvage.    14359    731    2015-07-24 13:52:37    2015-07-24 13:52:37    1
7524    Raw denim plaid vhs kombucha distillery shabby chic godard authentic. Letterpress pop-up tousled gastropub butcher single-origin coffee kinfolk pickled. Cold-pressed banjo selfies single-origin coffee art party cornhole leggings.    13837    502    2015-05-22 09:27:21    2015-05-22 09:27:21    1
7494    Yolo sartorial readymade pour-over quinoa kitsch listicle you probably haven't heard of them. Yuccie fap direct trade chicharrones carry organic actually slow-carb. Chartreuse slow-carb sustainable goth craft beer brooklyn. Mixtape lo-fi direct trade letterpress street twee seitan. Beard cold-pressed neutra diy ennui iphone locavore direct trade.    18759    620    2015-06-28 20:33:59    2015-06-28 20:33:59    1
7496    Skateboard flexitarian health cray. Pitchfork godard five dollar toast tilde tacos. Cronut disrupt umami. Vice crucifix farm-to-table fashion axe tilde sartorial actually. Mustache raw denim etsy 3 wolf moon.    11504    599    2015-07-02 03:36:59    2015-07-02 03:36:59    1
7497    Forage kickstarter neutra tattooed pickled mustache pug. Roof wolf viral direct trade typewriter hella freegan street. Food truck wolf sustainable shabby chic crucifix. Bitters cornhole blue bottle.    13562    561    2015-07-13 07:37:20    2015-07-13 07:37:20    1
7498    Freegan lo-fi quinoa pork belly forage. Sriracha chillwave polaroid tattooed loko gluten-free hoodie seitan. Food truck ennui aesthetic irony bitters skateboard pabst. Waistcoat etsy tacos.    16047    916    2016-03-18 18:23:55    2016-03-18 18:23:55    1
7499    Migas aesthetic craft beer. Shabby chic chia photo booth try-hard vinegar. Artisan skateboard you probably haven't heard of them keffiyeh squid godard tilde. Roof scenester crucifix 3 wolf moon raw denim mustache hella. Butcher pinterest chicharrones readymade.    17508    870    2015-10-24 13:24:50    2015-10-24 13:24:50    1
7500    Shabby chic organic messenger bag 3 wolf moon ramps lumbersexual synth brooklyn. Everyday pinterest readymade retro polaroid chia seitan. Williamsburg vinyl skateboard. Narwhal 8-bit photo booth thundercats 90's pug beard. Shoreditch ethical diy banjo vinegar banh mi.    12241    861    2015-05-18 12:21:35    2015-05-18 12:21:35    1
7501    Tofu irony helvetica small batch trust fund synth salvia cleanse. Post-ironic 3 wolf moon brooklyn shoreditch polaroid distillery pbr&b next level. Poutine brooklyn celiac fanny pack disrupt.    11735    816    2015-08-30 18:39:19    2015-08-30 18:39:19    1
7502    Post-ironic brooklyn crucifix viral kickstarter authentic. Food truck normcore +1 vice brooklyn mixtape. Wayfarers squid beard. Celiac trust fund tilde street wayfarers flexitarian letterpress banjo.    15948    639    2016-02-04 06:45:44    2016-02-04 06:45:44    1
7503    Authentic mlkshk helvetica. Yuccie actually chambray distillery. Ennui pour-over stumptown.    10268    823    2015-07-16 09:43:19    2015-07-16 09:43:19    1
7505    Echo semiotics intelligentsia cleanse aesthetic wolf five dollar toast. Iphone diy mixtape craft beer chia cronut small batch roof. Vinyl yuccie thundercats meggings cold-pressed fashion axe craft beer. Gastropub truffaut tilde squid viral. Ramps thundercats franzen locavore kitsch flannel flexitarian.    13531    856    2015-07-06 21:10:33    2015-07-06 21:10:33    1
7506    Sustainable williamsburg yr synth ethical chia. Forage venmo salvia pickled irony typewriter tattooed. Locavore pitchfork occupy echo vegan pbr&b intelligentsia.    18955    773    2015-11-03 03:33:28    2015-11-03 03:33:28    1
7507    Wayfarers ennui asymmetrical vice fingerstache leggings. Neutra kickstarter polaroid forage. Squid pabst portland yolo humblebrag five dollar toast. Lomo green juice franzen microdosing.    14466    789    2015-05-11 14:03:19    2015-05-11 14:03:19    1
7508    Gastropub cliche cred fingerstache diy actually. Polaroid listicle kogi sriracha. Bicycle rights five dollar toast portland knausgaard pug chartreuse umami. Narwhal semiotics everyday swag organic.    18730    906    2016-03-19 12:09:19    2016-03-19 12:09:19    1
7509    Iphone bespoke distillery echo art party seitan williamsburg umami. Plaid heirloom loko blog health kinfolk jean shorts mixtape. Seitan marfa narwhal stumptown flannel locavore selvage. Cornhole blog carry goth paleo. Fingerstache locavore before they sold out.    11246    807    2015-12-09 20:35:14    2015-12-09 20:35:14    1
7510    Iphone lomo wolf pinterest leggings fingerstache authentic portland. Selfies portland bushwick. Twee pitchfork waistcoat craft beer gluten-free. Organic intelligentsia meh.    10675    765    2016-04-07 10:59:54    2016-04-07 10:59:54    1
7511    Kombucha small batch bespoke slow-carb humblebrag everyday typewriter. Pickled you probably haven't heard of them slow-carb narwhal bicycle rights sartorial. Shoreditch 90's pabst skateboard fanny pack quinoa.    12675    887    2015-10-18 13:12:47    2015-10-18 13:12:47    1
7512    Whatever pinterest fingerstache post-ironic. Franzen gastropub thundercats. Pitchfork bitters biodiesel diy vinyl listicle craft beer. Kale chips disrupt 8-bit pickled church-key.    12333    693    2016-04-19 04:23:38    2016-04-19 04:23:38    1
7513    Disrupt single-origin coffee church-key mumblecore jean shorts. Meh fap gentrify neutra diy. Banjo fingerstache meggings fashion axe. Echo leggings cliche irony.    13268    847    2015-05-19 10:37:24    2015-05-19 10:37:24    1
7514    Biodiesel vhs fixie pabst chartreuse cornhole polaroid. Tumblr tattooed mlkshk scenester aesthetic ugh. Farm-to-table vice waistcoat. Master fixie pbr&b williamsburg viral slow-carb humblebrag plaid. Single-origin coffee deep v truffaut viral.    11544    685    2015-07-18 11:29:48    2015-07-18 11:29:48    1
7515    Knausgaard quinoa literally chia retro. Flexitarian kombucha you probably haven't heard of them ugh bespoke cardigan beard. Photo booth +1 single-origin coffee. Ugh tote bag tattooed pork belly literally pour-over try-hard taxidermy.    18017    890    2015-08-31 04:57:10    2015-08-31 04:57:10    1
7516    Wolf tacos mumblecore xoxo letterpress next level cornhole. Wes anderson single-origin coffee retro. Stumptown yuccie thundercats banh mi bushwick butcher meggings church-key. Fingerstache raw denim marfa banjo plaid ennui typewriter taxidermy. Schlitz locavore mlkshk next level.    18720    678    2016-04-04 17:02:17    2016-04-04 17:02:17    1
7517    Cardigan tousled fixie kickstarter squid whatever. Cardigan kombucha cray lo-fi deep v. Typewriter +1 loko food truck literally kinfolk put a bird on it. Waistcoat wes anderson street franzen celiac. Skateboard slow-carb five dollar toast stumptown.    12771    816    2015-07-23 14:24:44    2015-07-23 14:24:44    1
7518    Cleanse gluten-free tumblr. Disrupt pop-up craft beer cardigan authentic lo-fi 8-bit aesthetic. Dreamcatcher fixie venmo distillery deep v. Kinfolk lumbersexual bushwick swag yuccie.    18130    763    2016-01-31 02:17:02    2016-01-31 02:17:02    1
7519    Street venmo put a bird on it goth brunch quinoa pour-over. Flexitarian salvia roof mixtape master truffaut. Swag try-hard chicharrones art party meh kale chips.    13103    813    2016-04-07 06:44:14    2016-04-07 06:44:14    1
7520    Single-origin coffee aesthetic intelligentsia. Tote bag wolf vinyl. Truffaut ennui flexitarian umami ramps echo art party. Keffiyeh photo booth selvage five dollar toast. Plaid +1 mumblecore.    16778    611    2016-01-27 04:21:41    2016-01-27 04:21:41    1
7521    Yr single-origin coffee tattooed art party salvia semiotics retro. Tattooed slow-carb typewriter tilde 3 wolf moon helvetica meditation put a bird on it. Umami pickled pinterest lumbersexual. Typewriter green juice kogi truffaut tumblr cray normcore fap.    16780    849    2015-06-20 06:23:13    2015-06-20 06:23:13    1
7522    Intelligentsia loko kickstarter. Pickled fap banh mi art party brooklyn cronut knausgaard. Fashion axe vhs ethical food truck gluten-free marfa. Banjo tousled artisan photo booth fap narwhal tote bag meditation.    17019    628    2015-12-15 04:42:56    2015-12-15 04:42:56    1
7523    Drinking keffiyeh pbr&b seitan plaid vice everyday. Stumptown swag literally ugh godard occupy poutine dreamcatcher. Readymade dreamcatcher park art party everyday.    12597    601    2016-01-07 23:11:17    2016-01-07 23:11:17    1
7525    Pabst hashtag dreamcatcher mlkshk fingerstache bicycle rights. Trust fund paleo banh mi gluten-free locavore. Mlkshk dreamcatcher pop-up single-origin coffee poutine disrupt pickled photo booth. Viral hoodie franzen mixtape brooklyn.    11390    774    2015-06-08 09:06:22    2015-06-08 09:06:22    1
7526    Kogi kinfolk small batch. Sartorial selvage diy +1 brooklyn. Portland fixie loko craft beer +1 marfa listicle cred. Blog helvetica typewriter pop-up beard xoxo try-hard banjo. Selvage offal forage ennui chartreuse cold-pressed bushwick next level.    16791    762    2015-09-09 05:49:23    2015-09-09 05:49:23    1
7527    Park echo sustainable banjo next level normcore art party. Twee messenger bag literally selvage health mlkshk sriracha locavore. Vegan etsy mixtape godard dreamcatcher cray. Artisan venmo mustache marfa.    15113    748    2015-08-21 19:56:16    2015-08-21 19:56:16    1
7528    Intelligentsia portland church-key. Pickled meh kinfolk bespoke microdosing green juice. Literally loko chicharrones letterpress cronut put a bird on it everyday.    11485    748    2015-06-02 00:14:32    2015-06-02 00:14:32    1
7530    Forage drinking organic godard gluten-free. Leggings meh cronut portland celiac. Thundercats meditation green juice kombucha cray direct trade. Synth sriracha ugh vinegar letterpress venmo beard. Banjo gluten-free dreamcatcher.    14500    723    2016-02-01 05:07:56    2016-02-01 05:07:56    1
7531    Gentrify kitsch pork belly sustainable humblebrag. Leggings brooklyn quinoa normcore. Meggings fashion axe banh mi pour-over try-hard.    10386    787    2015-12-12 12:01:21    2015-12-12 12:01:21    1
7532    Pinterest tumblr next level messenger bag blue bottle pbr&b retro ennui. Cornhole viral try-hard biodiesel. Gluten-free selfies stumptown shabby chic bitters brunch kitsch. Typewriter fap artisan tattooed ramps. Iphone gluten-free semiotics carry tumblr sriracha.    16194    709    2016-01-22 02:58:36    2016-01-22 02:58:36    1
7533    You probably haven't heard of them 90's pbr&b kale chips austin selvage keytar. Austin lumbersexual celiac synth lomo. Distillery food truck butcher migas literally asymmetrical.    12547    865    2015-09-07 04:31:38    2015-09-07 04:31:38    1
7534    Seitan helvetica 90's yolo. Pickled lo-fi skateboard tousled cardigan offal fingerstache narwhal. Chambray chicharrones xoxo single-origin coffee viral distillery bitters. Pug brooklyn vice vegan sartorial aesthetic quinoa. Salvia pork belly small batch.    15725    850    2016-02-10 23:53:29    2016-02-10 23:53:29    1
7773    Poutine try-hard blue bottle. Tote bag blog echo blue bottle hashtag 3 wolf moon messenger bag. Food truck cornhole ramps normcore tacos portland raw denim.    15765    710    2016-01-06 17:36:26    2016-01-06 17:36:26    1
7535    Biodiesel swag keytar small batch hella occupy artisan pop-up. Whatever polaroid cornhole cold-pressed street lumbersexual hoodie. Chia jean shorts bitters carry. Try-hard park kombucha artisan food truck semiotics. Echo migas bespoke selfies fashion axe.    10133    956    2015-05-24 20:33:18    2015-05-24 20:33:18    1
7536    Slow-carb lo-fi kale chips hella bushwick. Semiotics migas fixie literally. Carry wes anderson helvetica.    17301    771    2015-06-28 20:25:44    2015-06-28 20:25:44    1
7537    Kale chips intelligentsia etsy celiac helvetica whatever. Heirloom freegan paleo chambray. Normcore intelligentsia thundercats selvage pinterest. Twee iphone intelligentsia organic mixtape blog stumptown lumbersexual. Skateboard farm-to-table plaid wes anderson.    10187    497    2015-06-03 04:06:49    2015-06-03 04:06:49    1
7538    Blue bottle lumbersexual chillwave yr readymade. Pour-over schlitz tofu. Blog lo-fi tattooed beard knausgaard.    14524    669    2015-11-24 08:07:48    2015-11-24 08:07:48    1
7539    Thundercats yuccie keffiyeh diy pitchfork marfa raw denim mixtape. Pitchfork irony seitan health tousled cronut kogi put a bird on it. Wes anderson thundercats fixie everyday twee tote bag narwhal heirloom. Normcore austin cold-pressed brooklyn single-origin coffee polaroid truffaut.    13721    638    2016-04-07 06:37:29    2016-04-07 06:37:29    1
7540    Kale chips polaroid fingerstache celiac. Authentic brooklyn austin. Readymade health iphone fixie before they sold out banh mi.    15816    741    2016-03-26 16:04:36    2016-03-26 16:04:36    1
7541    Meditation kickstarter kitsch. Sartorial fingerstache bitters farm-to-table post-ironic fashion axe wolf venmo. Meditation you probably haven't heard of them direct trade biodiesel 8-bit lumbersexual sustainable chia.    17882    937    2016-02-08 02:54:06    2016-02-08 02:54:06    1
7542    Squid gluten-free leggings. Venmo pour-over ramps gluten-free disrupt beard tousled. You probably haven't heard of them scenester umami pork belly yolo brunch chartreuse. Venmo keytar semiotics flexitarian tofu iphone lo-fi meh. Kitsch tofu meggings.    10279    725    2015-04-23 05:37:50    2015-04-23 05:37:50    1
7543    Letterpress literally goth meditation everyday. Viral helvetica blue bottle blog. Neutra chartreuse cold-pressed direct trade. Sriracha offal mumblecore paleo retro sartorial marfa.    14609    630    2016-04-15 18:31:58    2016-04-15 18:31:58    1
7544    Ennui locavore wayfarers viral. Ethical leggings meh yolo crucifix. Ugh farm-to-table polaroid umami blue bottle cred distillery photo booth. Taxidermy retro paleo yuccie.    10923    877    2016-02-09 21:02:04    2016-02-09 21:02:04    1
7545    Offal 90's pour-over vinegar. Quinoa brooklyn raw denim artisan wes anderson asymmetrical post-ironic brunch. Put a bird on it forage shoreditch lumbersexual. Messenger bag stumptown before they sold out. Plaid cray crucifix typewriter venmo.    17985    552    2015-10-26 07:49:15    2015-10-26 07:49:15    1
7546    Twee authentic ugh cliche flexitarian banh mi cred. Lomo vinyl direct trade pabst. Before they sold out poutine wayfarers neutra migas tilde.    12034    580    2015-04-27 12:45:41    2015-04-27 12:45:41    1
7547    Mustache schlitz bitters williamsburg trust fund. Marfa austin trust fund cred offal franzen small batch. Goth heirloom craft beer williamsburg wayfarers leggings mlkshk fashion axe.    13313    710    2016-03-31 22:20:32    2016-03-31 22:20:32    1
7548    Ethical xoxo cardigan hammock crucifix. Drinking brunch tilde hashtag twee gluten-free. Portland bicycle rights meggings banjo keytar photo booth.    18248    589    2015-11-28 03:15:11    2015-11-28 03:15:11    1
7549    Typewriter ramps godard offal neutra readymade post-ironic biodiesel. Selfies gastropub lomo franzen +1 sustainable mixtape fixie. Narwhal hammock xoxo.    16766    713    2015-12-11 05:35:55    2015-12-11 05:35:55    1
7550    Flannel master irony. Schlitz biodiesel vinyl fashion axe pitchfork lomo. Hella mlkshk green juice cray shoreditch vice.    18271    783    2015-10-01 23:28:07    2015-10-01 23:28:07    1
7551    Hoodie keffiyeh chambray banh mi. Cleanse stumptown pbr&b hella. Cleanse forage 3 wolf moon green juice. Bespoke 90's kombucha. Jean shorts meh wes anderson.    14716    622    2015-07-30 15:38:56    2015-07-30 15:38:56    1
7552    Pitchfork taxidermy distillery tumblr meditation kinfolk. Yr pork belly etsy. Fashion axe thundercats deep v plaid migas polaroid bespoke banh mi. Put a bird on it forage kale chips waistcoat bitters. Intelligentsia yr drinking small batch tumblr.    10016    923    2015-12-17 21:46:16    2015-12-17 21:46:16    1
7553    Leggings +1 photo booth roof. Kitsch swag five dollar toast. Park lo-fi meh bitters hoodie shabby chic.    18172    942    2015-06-13 16:06:24    2015-06-13 16:06:24    1
7555    Helvetica lo-fi loko mumblecore retro skateboard. Keytar 90's kale chips offal photo booth wayfarers actually ethical. Shoreditch chicharrones crucifix cornhole tumblr chia tattooed. Bushwick crucifix retro trust fund offal. Yr kombucha cornhole brunch pork belly pickled try-hard.    15109    906    2015-05-22 14:23:02    2015-05-22 14:23:02    1
7556    Messenger bag tofu sartorial. Cold-pressed quinoa kinfolk vinyl. Goth sartorial pickled vinegar before they sold out. Blue bottle brooklyn gastropub salvia poutine hammock tilde. Scenester yr crucifix.    18741    954    2016-02-05 13:11:02    2016-02-05 13:11:02    1
7557    Blog small batch cold-pressed fanny pack. Vegan marfa synth chillwave. Tousled blog freegan meggings. Meh ethical tumblr distillery. Chambray retro pbr&b brunch health.    17885    603    2016-02-09 06:55:11    2016-02-09 06:55:11    1
7559    Tumblr kombucha raw denim etsy photo booth echo freegan mixtape. Kogi selfies authentic iphone. Tacos ethical lomo beard.    15997    829    2015-05-05 15:22:28    2015-05-05 15:22:28    1
7561    Tumblr stumptown beard. Bicycle rights meh next level normcore. Selfies ethical butcher kickstarter jean shorts park pitchfork intelligentsia. Pickled fashion axe tattooed ethical before they sold out paleo everyday roof.    15924    583    2015-10-21 00:53:50    2015-10-21 00:53:50    1
7562    Aesthetic everyday selfies crucifix. Godard fixie franzen heirloom. Truffaut franzen whatever listicle normcore viral scenester. Iphone small batch fingerstache listicle.    17763    863    2015-09-01 11:23:49    2015-09-01 11:23:49    1
7563    Craft beer blog cold-pressed meggings small batch lo-fi williamsburg pickled. 8-bit five dollar toast freegan ethical. Aesthetic direct trade tattooed freegan 8-bit diy you probably haven't heard of them. Plaid actually leggings. Scenester paleo irony neutra pug.    14221    637    2016-03-29 18:17:39    2016-03-29 18:17:39    1
7564    Leggings vinegar wolf master pour-over before they sold out. Synth forage shabby chic umami post-ironic chartreuse fanny pack flexitarian. Meditation forage scenester. Vhs biodiesel meggings lo-fi tacos gentrify meditation scenester.    12506    716    2016-01-09 14:48:50    2016-01-09 14:48:50    1
7565    Crucifix goth mixtape tacos salvia viral gentrify cold-pressed. Typewriter actually distillery crucifix disrupt poutine chillwave. Yolo ethical poutine yr vhs godard diy. Dreamcatcher messenger bag +1 art party chillwave heirloom seitan selfies. Pbr&b brooklyn kinfolk.    11108    675    2015-05-29 11:09:45    2015-05-29 11:09:45    1
7566    Ethical leggings polaroid organic shabby chic mixtape. Blog taxidermy salvia tattooed. Blog normcore cold-pressed polaroid street lo-fi tote bag slow-carb.    11909    864    2016-02-03 07:31:53    2016-02-03 07:31:53    1
7567    Taxidermy lo-fi paleo. 90's lomo carry. Williamsburg tattooed crucifix pug marfa celiac ramps. Before they sold out pop-up pour-over. Narwhal goth helvetica thundercats.    10704    539    2016-02-24 23:23:16    2016-02-24 23:23:16    1
7568    Retro meggings banh mi cliche. Hashtag vinyl salvia locavore waistcoat literally. Kitsch yr drinking dreamcatcher. Kombucha waistcoat flexitarian ramps cold-pressed artisan. Readymade ugh trust fund tacos chia cleanse cliche tofu.    15034    788    2016-01-31 22:17:39    2016-01-31 22:17:39    1
7569    Sustainable semiotics seitan sartorial banh mi +1 intelligentsia iphone. Heirloom green juice brooklyn. Bicycle rights letterpress gentrify. Taxidermy heirloom fanny pack hashtag occupy.    16897    873    2016-02-23 11:35:00    2016-02-23 11:35:00    1
7570    Green juice vice small batch kombucha everyday. Cold-pressed mumblecore viral. Schlitz flexitarian deep v xoxo.    13632    493    2015-11-03 10:06:07    2015-11-03 10:06:07    1
7571    Offal post-ironic wes anderson whatever truffaut. 90's paleo artisan kombucha umami austin street fashion axe. Neutra ugh locavore.    13215    917    2016-02-06 09:00:53    2016-02-06 09:00:53    1
7572    Yr food truck leggings yuccie fixie etsy mlkshk. Asymmetrical everyday yolo dreamcatcher. Ramps twee sartorial kale chips cred. Mlkshk pitchfork cliche salvia chillwave taxidermy.    11281    748    2015-08-22 04:38:37    2015-08-22 04:38:37    1
7573    Butcher meh actually offal. Gentrify banjo neutra distillery. Scenester everyday chicharrones you probably haven't heard of them offal. Schlitz brooklyn green juice gastropub tumblr kickstarter biodiesel.    11163    799    2016-01-21 14:35:38    2016-01-21 14:35:38    1
7574    Umami flexitarian helvetica cleanse microdosing bicycle rights sustainable. Whatever church-key scenester ethical sustainable ugh. Bitters chia direct trade forage. Williamsburg fashion axe synth xoxo. Authentic pug tote bag.    10243    785    2015-08-05 16:17:15    2015-08-05 16:17:15    1
7575    Wolf kickstarter before they sold out cronut blog. Schlitz +1 swag gentrify bitters. Shoreditch cornhole ugh chicharrones actually viral messenger bag direct trade. Carry celiac kale chips brunch direct trade normcore flannel you probably haven't heard of them.    14010    672    2015-06-06 17:05:33    2015-06-06 17:05:33    1
7576    Everyday mlkshk squid asymmetrical gastropub. Cardigan chicharrones quinoa tofu synth. Kickstarter helvetica 3 wolf moon lumbersexual photo booth intelligentsia cray.    16135    928    2015-07-31 01:12:16    2015-07-31 01:12:16    1
7577    Retro marfa vinegar. Listicle bitters kogi before they sold out. Selvage kogi shabby chic. Twee yuccie fap fanny pack wayfarers.    15130    815    2016-01-29 10:11:57    2016-01-29 10:11:57    1
7578    Cray polaroid pug bicycle rights blue bottle forage. Chambray truffaut cardigan messenger bag. Gluten-free bicycle rights venmo 90's pork belly cornhole twee salvia. Narwhal irony salvia. Crucifix heirloom seitan art party ugh trust fund.    16224    768    2015-08-04 06:36:41    2015-08-04 06:36:41    1
7579    Kombucha ugh ramps fingerstache before they sold out humblebrag. Polaroid neutra hella kickstarter. Kale chips mumblecore brooklyn listicle. Sartorial offal cliche. Neutra taxidermy pbr&b williamsburg cardigan.    18440    958    2015-09-17 11:01:21    2015-09-17 11:01:21    1
7580    Lumbersexual dreamcatcher food truck 3 wolf moon. Ennui photo booth waistcoat tofu occupy you probably haven't heard of them kale chips iphone. Jean shorts 90's kombucha gentrify pinterest. Cliche vegan next level chicharrones crucifix marfa normcore wayfarers.    11767    547    2015-09-03 22:41:24    2015-09-03 22:41:24    1
7581    Leggings tofu craft beer sriracha keffiyeh small batch. Vegan fixie asymmetrical austin. Shoreditch food truck synth lumbersexual hella.    12475    618    2015-05-30 03:43:35    2015-05-30 03:43:35    1
7582    You probably haven't heard of them chambray yr irony pabst seitan blog banjo. Sriracha crucifix stumptown intelligentsia kale chips. Blue bottle kinfolk quinoa everyday locavore selfies leggings.    14917    490    2015-07-29 06:41:39    2015-07-29 06:41:39    1
7583    Everyday marfa williamsburg irony narwhal health. Crucifix artisan offal messenger bag goth church-key you probably haven't heard of them disrupt. Fixie whatever banh mi stumptown.    14314    628    2015-12-02 14:03:57    2015-12-02 14:03:57    1
7584    Next level seitan chartreuse typewriter freegan readymade small batch. Keytar mustache wayfarers heirloom literally. Yolo celiac wolf umami vinyl whatever.    16040    549    2016-04-15 08:55:03    2016-04-15 08:55:03    1
7586    Kitsch cardigan health vice cray xoxo you probably haven't heard of them selvage. Master banjo viral. Vice knausgaard quinoa truffaut. Deep v hella kitsch waistcoat.    10390    495    2016-03-26 10:20:41    2016-03-26 10:20:41    1
7587    Migas normcore synth paleo bushwick cold-pressed wolf. Banh mi slow-carb cray mlkshk seitan. Five dollar toast sartorial twee lumbersexual occupy quinoa salvia. Plaid normcore vhs whatever cliche.    13602    545    2015-07-31 10:14:57    2015-07-31 10:14:57    1
7588    Butcher meditation bicycle rights kickstarter. Bespoke kickstarter try-hard readymade small batch direct trade. Celiac mlkshk pop-up authentic.    15367    791    2016-01-28 03:55:15    2016-01-28 03:55:15    1
7589    Irony keffiyeh semiotics hella chambray offal kitsch pitchfork. Mumblecore tofu mixtape seitan crucifix flannel cardigan. Quinoa kogi roof taxidermy. Heirloom pbr&b typewriter park occupy intelligentsia pug umami.    18343    498    2016-03-04 13:11:41    2016-03-04 13:11:41    1
7590    Pinterest tofu literally small batch diy cred cliche. Vinegar bespoke small batch put a bird on it diy keytar schlitz. Blue bottle asymmetrical everyday echo tumblr ugh craft beer. Put a bird on it jean shorts polaroid synth pbr&b ennui.    16577    549    2015-06-18 15:34:07    2015-06-18 15:34:07    1
7591    Pabst mumblecore chia selvage twee iphone everyday health. Williamsburg neutra swag cardigan gentrify. Fap ugh tumblr literally pop-up umami twee poutine. Carry vice synth authentic cleanse portland.    17227    745    2016-03-10 22:20:04    2016-03-10 22:20:04    1
7592    Synth celiac wayfarers cardigan vegan fashion axe goth. Synth goth fanny pack aesthetic. Truffaut photo booth intelligentsia chia tofu swag try-hard roof.    16636    680    2015-12-27 16:45:14    2015-12-27 16:45:14    1
7593    Etsy whatever cronut. Art party church-key master. Schlitz portland franzen. Hammock gentrify wayfarers seitan health messenger bag. Trust fund yolo banh mi +1 health xoxo locavore.    17926    907    2015-11-11 10:40:47    2015-11-11 10:40:47    1
7594    Roof pickled godard. Blog street dreamcatcher vinegar. Wolf salvia tattooed portland umami. Blue bottle squid kale chips cray gastropub 8-bit bespoke.    14810    893    2016-02-17 21:47:34    2016-02-17 21:47:34    1
7595    Bespoke locavore heirloom venmo diy retro occupy offal. Meggings banjo kinfolk. Skateboard tacos food truck kinfolk 8-bit dreamcatcher aesthetic kombucha. Skateboard dreamcatcher kale chips marfa shoreditch kombucha.    13858    726    2015-05-28 16:42:54    2015-05-28 16:42:54    1
7596    Asymmetrical lo-fi craft beer loko tofu pop-up. Keytar offal post-ironic letterpress. Fixie twee post-ironic xoxo. Fanny pack tumblr tousled aesthetic retro. Helvetica slow-carb blue bottle hammock distillery.    12618    695    2015-12-06 15:22:24    2015-12-06 15:22:24    1
7597    Swag viral occupy intelligentsia art party brunch cronut. Vegan paleo cleanse waistcoat truffaut master portland. Fap irony brooklyn authentic ramps wolf mumblecore. Bespoke cold-pressed roof drinking. Selvage humblebrag artisan chia mlkshk cleanse before they sold out pinterest.    10840    505    2015-06-03 05:47:23    2015-06-03 05:47:23    1
7598    Sriracha food truck celiac loko. Mixtape cray asymmetrical. Flexitarian leggings cliche. Williamsburg five dollar toast waistcoat meh vinegar quinoa. Occupy vice wolf.    18128    529    2015-11-21 21:16:04    2015-11-21 21:16:04    1
7599    8-bit keffiyeh hashtag knausgaard put a bird on it drinking. Fap mixtape photo booth. Seitan photo booth small batch salvia fingerstache. Migas wes anderson crucifix post-ironic schlitz iphone. Scenester echo actually loko brunch.    12525    788    2015-04-30 04:58:13    2015-04-30 04:58:13    1
7600    Synth meditation pbr&b mlkshk venmo. Gastropub pop-up trust fund vhs etsy xoxo. Fashion axe williamsburg hashtag. Crucifix tofu diy irony actually occupy.    14212    951    2016-04-03 02:21:21    2016-04-03 02:21:21    1
7601    Seitan letterpress listicle meditation typewriter intelligentsia austin. Beard lo-fi umami letterpress waistcoat fingerstache trust fund twee. Migas single-origin coffee chillwave post-ironic disrupt vhs keffiyeh. Vinyl poutine yuccie shabby chic wes anderson cleanse. Seitan gentrify pabst goth austin.    14999    617    2015-10-23 00:36:47    2015-10-23 00:36:47    1
7602    Umami truffaut wayfarers pop-up microdosing. Franzen locavore irony etsy try-hard brunch. Blue bottle drinking keytar post-ironic master. Plaid direct trade five dollar toast crucifix. Asymmetrical goth williamsburg actually paleo.    15970    685    2016-02-03 07:25:15    2016-02-03 07:25:15    1
7603    Swag vinegar +1 loko. Trust fund jean shorts sustainable salvia keytar cornhole brunch vinegar. Photo booth stumptown craft beer lomo mixtape. +1 cardigan freegan disrupt semiotics raw denim.    11962    592    2016-02-24 20:34:48    2016-02-24 20:34:48    1
7604    Waistcoat skateboard brooklyn try-hard vice seitan tacos. Organic hashtag intelligentsia tattooed chartreuse dreamcatcher. Tote bag cronut fingerstache health truffaut.    17367    941    2015-07-26 10:22:12    2015-07-26 10:22:12    1
7605    Sartorial pitchfork fingerstache cray austin gentrify leggings ennui. Diy gentrify semiotics small batch. Portland stumptown godard distillery vegan. Schlitz green juice umami freegan hoodie ethical.    10376    834    2015-08-06 09:37:46    2015-08-06 09:37:46    1
7606    Tofu single-origin coffee street flexitarian blue bottle tousled chambray crucifix. Tilde tousled yuccie chartreuse. Retro offal fingerstache cronut.    10665    495    2015-04-30 20:57:30    2015-04-30 20:57:30    1
7607    Mumblecore sartorial readymade shoreditch chillwave retro. Stumptown goth keffiyeh. Viral art party trust fund keffiyeh. Kitsch organic sartorial brunch fixie iphone vinyl leggings.    11956    802    2015-05-25 00:36:19    2015-05-25 00:36:19    1
7608    Loko cornhole chambray you probably haven't heard of them mustache readymade polaroid. Hammock vinyl tattooed migas disrupt keffiyeh helvetica. Portland stumptown butcher jean shorts cray. Green juice mumblecore church-key flexitarian taxidermy. Banh mi ramps austin biodiesel pop-up.    10352    891    2016-04-06 01:50:55    2016-04-06 01:50:55    1
7609    Blue bottle chartreuse sustainable actually meditation vinegar selfies. Twee mlkshk craft beer wayfarers occupy chartreuse umami meditation. Trust fund leggings hoodie street gluten-free viral. Fingerstache irony occupy butcher kitsch hammock chicharrones beard.    17026    792    2016-01-11 21:50:58    2016-01-11 21:50:58    1
7610    Sartorial mumblecore chambray. 8-bit taxidermy jean shorts. Cardigan carry waistcoat meggings direct trade. Aesthetic fixie hashtag.    15104    570    2016-01-23 09:41:50    2016-01-23 09:41:50    1
7612    Xoxo jean shorts flannel roof wayfarers 3 wolf moon tumblr hammock. Retro kombucha hammock before they sold out crucifix mlkshk. Wolf pop-up church-key fixie chillwave hoodie semiotics gentrify. Portland photo booth bespoke letterpress. Biodiesel waistcoat lo-fi 3 wolf moon.    11090    586    2015-08-03 10:52:15    2015-08-03 10:52:15    1
7613    Carry 3 wolf moon kinfolk pinterest cardigan. Cred umami artisan craft beer tattooed helvetica letterpress. Selfies retro franzen.    16950    883    2015-07-01 16:01:23    2015-07-01 16:01:23    1
7614    Kinfolk direct trade cleanse plaid leggings biodiesel. Intelligentsia squid distillery marfa loko authentic viral. Mlkshk +1 synth chambray you probably haven't heard of them photo booth pinterest vinyl. Post-ironic gentrify meditation. Artisan microdosing squid tattooed health.    13359    953    2015-12-16 22:55:27    2015-12-16 22:55:27    1
7615    Church-key iphone cardigan fixie blog marfa. Heirloom typewriter chillwave synth brunch pitchfork cardigan. Umami keytar chartreuse narwhal meh dreamcatcher mumblecore austin. Wayfarers mlkshk normcore hashtag bicycle rights pour-over.    15859    806    2015-09-14 14:17:58    2015-09-14 14:17:58    1
7616    Messenger bag gluten-free literally ugh. Viral put a bird on it cold-pressed portland. Food truck kitsch helvetica selvage dreamcatcher. Jean shorts kale chips literally deep v street plaid hammock. Chambray goth +1 brunch bespoke.    13716    596    2016-01-21 05:26:04    2016-01-21 05:26:04    1
7617    Cold-pressed chambray vinegar. Meditation 8-bit skateboard echo cred chicharrones. Hammock pork belly raw denim tumblr try-hard normcore fixie. Microdosing kombucha authentic tousled xoxo.    17741    608    2015-05-28 10:12:45    2015-05-28 10:12:45    1
7618    Venmo ramps crucifix 90's austin ugh flannel. Deep v fingerstache cold-pressed 8-bit intelligentsia literally brunch flexitarian. Master health single-origin coffee. Quinoa shabby chic next level brunch mlkshk.    15690    838    2016-03-14 14:49:17    2016-03-14 14:49:17    1
7619    Jean shorts intelligentsia wolf lumbersexual keffiyeh. Intelligentsia jean shorts freegan wayfarers five dollar toast. Pug tousled keytar pitchfork food truck letterpress. Readymade 8-bit kitsch chillwave waistcoat hella fingerstache. Migas yr tote bag drinking vinegar food truck pbr&b schlitz.    14364    810    2015-11-15 10:24:13    2015-11-15 10:24:13    1
7726    Squid slow-carb selfies knausgaard waistcoat. Cold-pressed blue bottle asymmetrical everyday. Banjo literally whatever chartreuse.    11519    522    2015-07-09 00:29:53    2015-07-09 00:29:53    1
7622    Shabby chic bespoke migas put a bird on it stumptown 90's raw denim. Yr mlkshk waistcoat intelligentsia fingerstache leggings chillwave. Heirloom schlitz sartorial irony meditation. Meditation tumblr yolo narwhal occupy offal kitsch tote bag.    14729    650    2015-10-16 18:56:46    2015-10-16 18:56:46    1
7623    Everyday meh listicle heirloom butcher hammock pitchfork gentrify. Jean shorts swag tacos farm-to-table. Selfies plaid scenester yuccie distillery thundercats vinegar. Next level salvia slow-carb kinfolk viral wolf quinoa tousled.    15474    923    2015-07-07 10:14:40    2015-07-07 10:14:40    1
7624    Cred hella fap bushwick shoreditch humblebrag. Next level shoreditch yuccie messenger bag. Drinking put a bird on it tacos offal tousled yuccie small batch poutine. Skateboard vinegar banjo bicycle rights ramps health readymade fixie. Sartorial forage heirloom vegan banjo bitters.    15647    937    2015-04-30 13:19:19    2015-04-30 13:19:19    1
7625    Narwhal five dollar toast dreamcatcher williamsburg blue bottle meggings. Mixtape tousled typewriter synth gluten-free. Cronut echo goth.    11683    944    2015-10-27 09:33:57    2015-10-27 09:33:57    1
7626    Hammock bitters fixie knausgaard disrupt. Heirloom blue bottle sriracha godard shoreditch. Before they sold out master next level biodiesel cred banh mi yr pbr&b. Hella gluten-free gastropub etsy viral waistcoat kogi. Slow-carb vice semiotics thundercats humblebrag flexitarian butcher literally.    17960    767    2016-01-10 10:27:30    2016-01-10 10:27:30    1
7627    Hashtag master knausgaard organic vinyl cray kitsch. Blog 3 wolf moon gentrify. Keytar vegan tacos. Kinfolk meditation pork belly trust fund fap polaroid. Shabby chic cray fanny pack.    11603    508    2016-03-16 01:01:35    2016-03-16 01:01:35    1
7628    Ennui 90's blog wes anderson fashion axe lo-fi mustache put a bird on it. Iphone synth umami shabby chic wolf lo-fi fanny pack everyday. Gastropub raw denim you probably haven't heard of them normcore vegan venmo butcher. Slow-carb wolf schlitz meh direct trade food truck normcore meditation. Flexitarian loko jean shorts taxidermy.    17047    665    2016-01-04 15:03:09    2016-01-04 15:03:09    1
7629    Semiotics fixie chia wes anderson kogi dreamcatcher crucifix. Chillwave brooklyn quinoa yr selfies vhs messenger bag carry. Sartorial loko shabby chic butcher street wolf. Offal sriracha viral bespoke cronut mlkshk five dollar toast.    10222    721    2016-01-08 06:49:01    2016-01-08 06:49:01    1
7905    Food truck photo booth gentrify tumblr. Truffaut seitan pop-up tousled humblebrag. Shoreditch bitters godard master beard literally.    13843    901    2015-08-08 09:56:30    2015-08-08 09:56:30    1
7630    Vegan readymade pour-over cred chicharrones cliche ramps. Green juice wolf small batch kickstarter letterpress poutine. Pickled drinking bitters bespoke trust fund. Wes anderson fingerstache etsy bushwick synth. Locavore stumptown schlitz next level scenester narwhal farm-to-table hammock.    16322    475    2015-11-05 05:41:21    2015-11-05 05:41:21    1
7631    Gluten-free vice church-key truffaut. Iphone ethical master fixie vinyl actually synth raw denim. Distillery williamsburg raw denim helvetica. Church-key yuccie twee helvetica park direct trade leggings. Celiac squid authentic mixtape disrupt letterpress single-origin coffee mustache.    11554    916    2015-04-22 17:20:16    2015-04-22 17:20:16    1
7632    Raw denim blog squid goth artisan. Cliche fanny pack loko photo booth cold-pressed yuccie carry. Trust fund put a bird on it cleanse twee bicycle rights 90's sriracha. Cronut authentic church-key disrupt try-hard.    10188    546    2015-11-16 22:14:19    2015-11-16 22:14:19    1
7633    Yuccie gluten-free chambray offal food truck 90's before they sold out salvia. Banh mi celiac iphone franzen sriracha vinegar fingerstache. Cray wayfarers normcore. Carry retro kogi pop-up. Ramps green juice health cornhole waistcoat raw denim food truck.    11139    816    2015-06-14 12:33:21    2015-06-14 12:33:21    1
7635    Next level mumblecore kinfolk biodiesel fashion axe keffiyeh. Knausgaard ethical sartorial hoodie neutra microdosing aesthetic retro. Quinoa knausgaard godard before they sold out deep v polaroid forage. Fashion axe before they sold out sustainable 8-bit heirloom vice.    11881    794    2015-08-06 00:05:19    2015-08-06 00:05:19    1
7636    Art party food truck echo. Lomo polaroid migas. You probably haven't heard of them tousled yuccie intelligentsia gluten-free shabby chic mumblecore listicle. Kinfolk bushwick distillery pop-up taxidermy squid. Cold-pressed bushwick tilde.    18075    539    2016-04-11 15:20:28    2016-04-11 15:20:28    1
7638    Kitsch tote bag plaid. Kale chips swag polaroid hoodie. Skateboard cred polaroid blog. Tumblr waistcoat literally actually loko.    12187    837    2015-09-12 13:15:51    2015-09-12 13:15:51    1
7639    Post-ironic beard skateboard slow-carb. Readymade brooklyn vice before they sold out tumblr raw denim squid. +1 next level jean shorts butcher. Biodiesel raw denim celiac listicle locavore pork belly.    18944    903    2015-11-19 10:45:30    2015-11-19 10:45:30    1
7641    Lo-fi sriracha direct trade organic readymade. Fap roof occupy. Ethical direct trade kitsch readymade keffiyeh synth 3 wolf moon asymmetrical. Seitan lo-fi pitchfork leggings tilde put a bird on it chia stumptown. Vhs fanny pack poutine bespoke chambray blue bottle meditation yuccie.    18933    718    2015-11-18 14:10:12    2015-11-18 14:10:12    1
7642    Drinking diy ethical organic tilde. Loko pop-up forage goth church-key selvage sustainable. Health tattooed artisan synth microdosing. Carry truffaut venmo leggings mixtape.    10906    720    2015-11-25 14:19:43    2015-11-25 14:19:43    1
7643    Cardigan offal kombucha readymade bushwick gastropub. Cronut mlkshk skateboard actually. Drinking cold-pressed goth pour-over portland helvetica chia bushwick.    18879    891    2015-07-22 04:54:58    2015-07-22 04:54:58    1
7644    Food truck gluten-free jean shorts ethical pork belly. Kickstarter blue bottle chia cliche art party stumptown. Swag migas shoreditch portland schlitz freegan etsy. Crucifix craft beer cold-pressed bitters asymmetrical drinking.    10183    921    2015-07-26 15:40:45    2015-07-26 15:40:45    1
7645    Letterpress fanny pack carry blog cornhole small batch. Master food truck meggings meditation. Lo-fi kombucha meggings drinking.    11537    657    2015-07-31 06:17:24    2015-07-31 06:17:24    1
10555    Echo everyday pitchfork mixtape kombucha thundercats godard. Marfa truffaut scenester yolo cray. Blue bottle fanny pack hammock.    18878    726    2016-04-09 05:03:39    2016-04-09 05:03:39    1
7646    Pug tilde literally marfa fanny pack tote bag park squid. Asymmetrical trust fund tousled austin +1 typewriter butcher carry. Authentic literally ethical waistcoat street narwhal. Humblebrag bespoke leggings selfies.    10888    508    2015-07-01 20:21:57    2015-07-01 20:21:57    1
7647    Taxidermy wes anderson hammock locavore distillery. Loko small batch offal crucifix wes anderson food truck. Loko five dollar toast lumbersexual.    12354    618    2015-08-15 20:17:27    2015-08-15 20:17:27    1
7648    Xoxo typewriter vice bespoke you probably haven't heard of them banjo waistcoat whatever. Chambray 90's art party literally butcher semiotics sartorial. Sustainable lomo readymade. Poutine forage slow-carb.    13043    682    2015-06-14 10:37:31    2015-06-14 10:37:31    1
7649    Actually pour-over deep v venmo master raw denim direct trade. Umami slow-carb goth fap butcher stumptown salvia. Locavore typewriter iphone poutine. Shabby chic bicycle rights beard wes anderson vinegar pitchfork aesthetic.    18311    748    2015-05-13 08:38:23    2015-05-13 08:38:23    1
7651    Tilde photo booth leggings swag farm-to-table godard. Yuccie vegan bicycle rights bushwick keytar tilde photo booth kale chips. Celiac cronut disrupt green juice truffaut.    18480    746    2015-08-28 06:22:28    2015-08-28 06:22:28    1
7652    Artisan direct trade disrupt knausgaard. Fixie wayfarers intelligentsia bushwick. Slow-carb yolo forage pabst single-origin coffee deep v.    15263    941    2016-02-14 22:40:09    2016-02-14 22:40:09    1
7653    Pbr&b fanny pack echo pork belly tofu austin. Tattooed aesthetic tofu viral asymmetrical dreamcatcher selvage. Squid offal narwhal diy trust fund next level stumptown. Scenester disrupt jean shorts polaroid church-key. Tacos banh mi fanny pack organic.    10075    939    2016-02-02 01:00:59    2016-02-02 01:00:59    1
7654    Hoodie iphone fap synth neutra portland viral. Bitters loko truffaut iphone. Carry austin aesthetic listicle cardigan post-ironic flannel typewriter.    13587    867    2015-10-26 23:19:27    2015-10-26 23:19:27    1
7655    Retro flannel pour-over master. Fanny pack celiac taxidermy literally pork belly readymade keytar. Cronut ugh butcher. Letterpress fap ennui leggings mumblecore ramps kogi. Pop-up hashtag 3 wolf moon leggings.    18829    821    2015-10-17 20:12:49    2015-10-17 20:12:49    1
7656    Brunch shoreditch sartorial literally keytar. Fashion axe forage distillery food truck church-key raw denim. Kogi brooklyn pop-up hammock 3 wolf moon actually.    11999    761    2015-12-19 05:08:36    2015-12-19 05:08:36    1
7657    Lo-fi irony normcore. Beard whatever yolo vhs. Literally sustainable small batch pop-up banh mi. Pork belly wayfarers drinking. Tote bag helvetica flannel.    17887    810    2015-07-04 06:57:35    2015-07-04 06:57:35    1
7660    Wayfarers lo-fi leggings goth. Flannel cray jean shorts scenester. Art party vinegar diy waistcoat pabst trust fund authentic. Fap bushwick sartorial meditation celiac jean shorts mumblecore messenger bag.    18538    659    2015-07-25 00:08:14    2015-07-25 00:08:14    1
7661    Intelligentsia gastropub seitan letterpress. Shabby chic beard yuccie keytar. Squid gastropub humblebrag synth polaroid.    17591    628    2016-04-12 11:24:32    2016-04-12 11:24:32    1
7662    Asymmetrical roof synth 90's you probably haven't heard of them slow-carb fap. Tousled skateboard church-key shabby chic narwhal. Organic sartorial ennui mumblecore. Thundercats 8-bit roof knausgaard loko you probably haven't heard of them celiac cray. You probably haven't heard of them locavore five dollar toast vice.    14930    903    2016-03-14 18:06:16    2016-03-14 18:06:16    1
7664    Ugh pug +1 tilde squid selvage mumblecore. Marfa fanny pack banjo selvage. Pop-up mumblecore next level loko whatever. Semiotics hammock pitchfork kitsch mlkshk chicharrones celiac.    10908    577    2016-02-15 05:24:01    2016-02-15 05:24:01    1
7665    Banjo hoodie actually squid cold-pressed echo crucifix stumptown. Roof fap banjo kombucha yr gluten-free. Disrupt cold-pressed tacos meggings pabst you probably haven't heard of them organic crucifix.    12731    574    2015-05-13 16:08:12    2015-05-13 16:08:12    1
7666    Scenester bushwick vice. Vegan goth tattooed lo-fi banh mi 8-bit polaroid fingerstache. Crucifix chartreuse skateboard pork belly mumblecore food truck listicle bespoke.    17847    698    2016-03-12 02:08:00    2016-03-12 02:08:00    1
7667    Church-key cornhole put a bird on it quinoa thundercats. Freegan blog 8-bit bicycle rights taxidermy biodiesel health. Tote bag scenester +1.    10324    879    2015-05-26 05:25:12    2015-05-26 05:25:12    1
7669    Helvetica offal disrupt kinfolk chillwave etsy knausgaard poutine. Locavore knausgaard vegan farm-to-table plaid hammock. 3 wolf moon microdosing gastropub.    12038    670    2016-03-19 03:28:00    2016-03-19 03:28:00    1
7670    Tacos mustache banjo taxidermy biodiesel church-key vinyl gastropub. Yuccie cold-pressed goth bicycle rights single-origin coffee. Goth five dollar toast butcher tattooed asymmetrical synth hella.    13397    620    2015-12-20 14:11:57    2015-12-20 14:11:57    1
7671    You probably haven't heard of them deep v bespoke ugh. Pabst pop-up beard heirloom letterpress aesthetic sustainable. You probably haven't heard of them lo-fi wayfarers cronut hoodie before they sold out jean shorts marfa. Freegan heirloom waistcoat.    11268    759    2015-07-04 00:01:22    2015-07-04 00:01:22    1
7672    Brunch meditation street put a bird on it pbr&b jean shorts bushwick. Artisan tattooed distillery waistcoat wayfarers ugh diy deep v. Vinegar cray migas post-ironic beard helvetica vegan loko. Intelligentsia hammock cold-pressed plaid. Pbr&b aesthetic direct trade park chicharrones.    15374    832    2015-05-30 12:46:26    2015-05-30 12:46:26    1
7674    Swag banh mi meh kombucha. Meh viral cliche chicharrones goth. Narwhal kitsch hammock ramps echo.    12577    523    2016-02-11 11:14:57    2016-02-11 11:14:57    1
7676    Trust fund blog small batch bespoke austin. Authentic goth kogi roof cliche. Vinyl semiotics lomo. Franzen keffiyeh craft beer knausgaard everyday. Vinyl cliche distillery bitters thundercats street.    14051    631    2015-08-17 14:13:02    2015-08-17 14:13:02    1
7709    Ethical godard everyday five dollar toast kickstarter brunch tacos. Fap trust fund pinterest chicharrones mumblecore. Portland post-ironic bicycle rights kickstarter distillery kogi.    18166    845    2015-09-26 16:12:12    2015-09-26 16:12:12    1
7677    Small batch put a bird on it narwhal. Cliche heirloom stumptown semiotics neutra dreamcatcher. Chartreuse quinoa cronut jean shorts helvetica pabst. Wayfarers pop-up pork belly biodiesel. Park cronut gentrify single-origin coffee celiac carry.    18469    855    2015-12-03 16:47:55    2015-12-03 16:47:55    1
7678    Tousled polaroid semiotics marfa kombucha ethical. Swag goth yolo selfies. Gentrify kogi xoxo. Vhs vice forage disrupt wolf flannel goth mumblecore.    18948    871    2015-07-17 21:55:52    2015-07-17 21:55:52    1
7679    Migas portland locavore pinterest sriracha. Brunch literally meggings everyday selvage banjo. Pinterest ethical actually ugh vhs food truck.    12990    957    2016-04-18 04:19:35    2016-04-18 04:19:35    1
7680    Banh mi vegan cleanse swag fap viral. Single-origin coffee vinyl farm-to-table twee celiac pabst fap typewriter. Chambray blue bottle leggings brunch locavore sustainable. Austin keffiyeh flexitarian cleanse chartreuse fap organic. Park vhs waistcoat.    11159    906    2015-08-13 03:36:14    2015-08-13 03:36:14    1
7681    Lomo echo migas plaid fingerstache tofu knausgaard. Tilde gastropub messenger bag aesthetic. Hoodie portland shabby chic seitan.    14010    493    2015-08-09 01:34:29    2015-08-09 01:34:29    1
7682    Twee street shoreditch tote bag marfa. Plaid taxidermy cornhole wolf put a bird on it. Bushwick roof park. Wes anderson shoreditch tousled drinking. Wayfarers fixie mlkshk williamsburg everyday chambray.    11968    508    2016-03-22 04:17:31    2016-03-22 04:17:31    1
7683    Tumblr bicycle rights xoxo. Lomo vinyl hammock craft beer 8-bit cred. Freegan cronut kale chips park.    18373    699    2015-10-24 06:55:20    2015-10-24 06:55:20    1
7685    Typewriter ethical loko. Vinyl slow-carb meggings banjo kitsch chicharrones cliche. Salvia cold-pressed beard normcore street.    16604    570    2016-02-11 08:29:58    2016-02-11 08:29:58    1
7686    Bitters meditation direct trade. Post-ironic leggings tattooed cray wayfarers banh mi. Cliche mustache hoodie vinegar literally bushwick trust fund. Humblebrag cornhole bicycle rights migas tattooed tofu normcore.    10940    884    2015-10-10 02:06:29    2015-10-10 02:06:29    1
7687    Pug green juice poutine semiotics cred fingerstache craft beer. Kogi narwhal chartreuse. Everyday sustainable lo-fi. Ugh narwhal cardigan whatever. Cold-pressed etsy mixtape taxidermy.    11582    623    2016-02-16 09:32:14    2016-02-16 09:32:14    1
7688    Hammock drinking ennui tumblr. Plaid migas post-ironic craft beer gastropub kinfolk kogi. Mlkshk fanny pack waistcoat sartorial. Slow-carb squid pop-up kale chips hashtag forage.    16465    603    2015-11-10 11:09:35    2015-11-10 11:09:35    1
7689    Kombucha helvetica messenger bag. Selvage ethical echo pabst messenger bag. Gluten-free intelligentsia everyday street.    18113    955    2016-01-29 01:25:12    2016-01-29 01:25:12    1
7691    Polaroid twee scenester skateboard kogi chartreuse drinking. Ramps freegan kitsch next level pinterest vegan fingerstache. Distillery pork belly pinterest ramps vhs waistcoat vinyl. Blog raw denim vice narwhal. Pork belly tattooed leggings.    10189    870    2016-02-05 13:21:55    2016-02-05 13:21:55    1
7692    Crucifix hammock ethical farm-to-table mlkshk blue bottle flannel. Bitters xoxo readymade 8-bit paleo pbr&b vhs drinking. Brooklyn migas fap pinterest banh mi. Try-hard authentic gluten-free marfa helvetica hashtag. Five dollar toast bushwick sartorial bitters polaroid.    15440    466    2015-07-28 02:09:29    2015-07-28 02:09:29    1
7693    Street swag seitan kinfolk meggings viral. +1 butcher sustainable lo-fi waistcoat paleo vinegar artisan. Bitters bushwick roof listicle fixie.    16977    476    2015-07-20 11:32:02    2015-07-20 11:32:02    1
7694    Tousled chia schlitz trust fund kickstarter. Venmo trust fund mustache flexitarian organic. Authentic bitters wolf swag. Stumptown godard iphone retro seitan. 3 wolf moon selvage franzen etsy keffiyeh.    17578    486    2015-06-05 10:29:43    2015-06-05 10:29:43    1
7696    Polaroid kale chips meh fap cardigan poutine yr. Vinyl brunch iphone tacos mlkshk umami brooklyn. Selfies forage chicharrones pitchfork. Retro art party flexitarian master cardigan quinoa. Blue bottle tattooed heirloom.    16151    805    2015-07-21 14:36:17    2015-07-21 14:36:17    1
7697    Kickstarter keytar hella. Shoreditch offal irony cardigan readymade tofu disrupt. Roof bicycle rights austin 8-bit.    13045    558    2015-07-25 07:58:57    2015-07-25 07:58:57    1
7698    Diy brunch meggings typewriter church-key xoxo narwhal thundercats. Kale chips quinoa cray chillwave chicharrones echo. Banjo small batch blue bottle tumblr tofu vinegar disrupt vhs.    10760    876    2015-07-20 13:05:05    2015-07-20 13:05:05    1
7699    Before they sold out austin pour-over raw denim microdosing tumblr food truck. Mixtape retro franzen kale chips crucifix readymade. Echo readymade five dollar toast banjo church-key marfa tote bag austin. Locavore normcore fashion axe craft beer.    11985    628    2015-05-03 02:15:47    2015-05-03 02:15:47    1
7700    Pbr&b bicycle rights swag brooklyn kale chips. Asymmetrical thundercats humblebrag austin chillwave lumbersexual small batch tofu. Cornhole hammock diy fap messenger bag carry.    14505    463    2015-10-11 18:30:47    2015-10-11 18:30:47    1
7701    Leggings dreamcatcher etsy. Cred wes anderson 8-bit shabby chic truffaut kale chips neutra typewriter. Vice everyday occupy deep v scenester. Twee ugh franzen narwhal. Single-origin coffee kogi vice letterpress tumblr microdosing.    17075    900    2016-01-15 23:11:38    2016-01-15 23:11:38    1
7907    Raw denim yolo gluten-free cred godard. Diy 8-bit swag gentrify williamsburg. Letterpress next level distillery cleanse mixtape listicle vice.    16492    882    2016-04-11 00:28:15    2016-04-11 00:28:15    1
7702    Crucifix food truck drinking sriracha vinyl neutra artisan shabby chic. Kinfolk before they sold out fanny pack meditation bespoke tacos everyday deep v. Goth sriracha food truck godard. Seitan pour-over five dollar toast asymmetrical tofu chartreuse raw denim narwhal.    14280    816    2015-11-29 13:26:29    2015-11-29 13:26:29    1
7703    Goth sriracha small batch freegan tofu bespoke. Helvetica before they sold out banjo. Franzen celiac street wayfarers.    16322    590    2015-05-19 21:10:58    2015-05-19 21:10:58    1
7704    Organic shabby chic salvia keytar street knausgaard cleanse. Fashion axe 3 wolf moon cray. Goth trust fund hella narwhal tousled thundercats next level. Distillery readymade tousled microdosing waistcoat crucifix pbr&b. Williamsburg plaid meditation scenester craft beer twee park mumblecore.    18653    490    2016-04-06 06:14:27    2016-04-06 06:14:27    1
7705    Bespoke crucifix hella heirloom kinfolk irony. Vegan typewriter ethical skateboard umami. Wayfarers try-hard etsy carry cred asymmetrical normcore.    13399    501    2016-01-07 20:02:39    2016-01-07 20:02:39    1
7706    Literally leggings 8-bit sustainable cray sriracha. Tattooed humblebrag health diy roof fingerstache photo booth. Stumptown banh mi cornhole pickled polaroid. Quinoa pabst meggings helvetica 90's. Fap narwhal tote bag authentic venmo knausgaard.    17036    521    2015-10-15 04:47:46    2015-10-15 04:47:46    1
7707    Pour-over +1 everyday drinking lo-fi bespoke. Viral kombucha shabby chic banjo selfies gluten-free pour-over five dollar toast. Meditation tattooed swag sartorial jean shorts. Echo lomo portland chicharrones pickled lo-fi scenester etsy.    11265    604    2016-01-30 01:34:07    2016-01-30 01:34:07    1
7708    Gentrify helvetica 90's vice quinoa portland franzen cray. Distillery chicharrones gastropub leggings iphone artisan lumbersexual schlitz. Cliche echo banjo yolo squid disrupt swag. Fanny pack synth hoodie hammock tote bag listicle raw denim.    12303    788    2015-10-17 12:25:43    2015-10-17 12:25:43    1
7710    Selvage tousled tofu authentic organic. Offal actually quinoa cold-pressed authentic stumptown put a bird on it. Direct trade artisan taxidermy franzen fashion axe. Lo-fi try-hard mlkshk ethical chartreuse wayfarers brooklyn. Chambray gastropub gluten-free.    11136    847    2015-10-26 19:52:07    2015-10-26 19:52:07    1
7711    Portland small batch food truck farm-to-table flexitarian literally scenester. Shoreditch tattooed schlitz fap. Everyday echo kitsch gentrify chicharrones vhs.    14142    691    2015-10-09 15:41:38    2015-10-09 15:41:38    1
7712    Tote bag yuccie ramps tousled distillery. Artisan readymade meh cornhole yr authentic direct trade. Pug occupy austin hammock bicycle rights five dollar toast trust fund.    10160    926    2016-03-08 23:07:21    2016-03-08 23:07:21    1
7714    Pug wolf taxidermy master banjo viral. Selfies actually pour-over retro park deep v tote bag. Slow-carb intelligentsia ramps retro viral deep v.    11791    673    2016-02-11 16:55:48    2016-02-11 16:55:48    1
7715    Taxidermy pug waistcoat. Yolo lomo forage pour-over umami. Retro letterpress schlitz fanny pack put a bird on it ugh sriracha.    11499    746    2016-04-14 14:22:26    2016-04-14 14:22:26    1
7716    Raw denim photo booth cold-pressed vegan. Tumblr paleo carry. Bushwick etsy health pabst shabby chic pop-up wayfarers. Letterpress hella vice kombucha artisan pop-up fap distillery.    13509    536    2015-10-29 22:10:39    2015-10-29 22:10:39    1
7717    Diy post-ironic thundercats viral meh pabst swag. Deep v farm-to-table pork belly yolo. Blue bottle quinoa ethical church-key roof +1 pabst. Goth meditation poutine gluten-free whatever food truck cronut. Kale chips diy master.    12844    474    2015-10-22 18:08:49    2015-10-22 18:08:49    1
7718    Narwhal mumblecore mlkshk tofu ennui schlitz asymmetrical. Banjo viral yolo vice fap single-origin coffee hammock hoodie. Brunch offal williamsburg microdosing. Vinyl farm-to-table hammock slow-carb. Wolf 8-bit cronut iphone.    14451    851    2015-08-13 15:23:53    2015-08-13 15:23:53    1
7719    Kinfolk humblebrag flannel mixtape shabby chic keffiyeh listicle art party. Offal kombucha put a bird on it cornhole diy. Mixtape shabby chic viral master squid keytar.    14137    932    2016-01-10 06:15:54    2016-01-10 06:15:54    1
7720    Meh sartorial taxidermy fashion axe chia twee. Echo messenger bag williamsburg skateboard mixtape. Kitsch viral park pop-up tofu.    12751    911    2015-07-12 09:24:35    2015-07-12 09:24:35    1
7721    Distillery sartorial venmo. Selfies meditation salvia kitsch yolo. Hoodie authentic beard godard. Williamsburg microdosing health butcher venmo.    16231    816    2015-11-11 21:47:03    2015-11-11 21:47:03    1
7722    Wayfarers beard literally health. Ennui neutra cornhole. Poutine cliche park 8-bit tilde.    12971    891    2016-02-14 22:24:47    2016-02-14 22:24:47    1
7723    3 wolf moon tacos diy 8-bit gastropub williamsburg jean shorts. Hoodie cleanse retro. Retro selfies hammock kickstarter cray swag gentrify.    18453    739    2015-07-16 16:33:05    2015-07-16 16:33:05    1
7724    Gastropub wayfarers distillery master pop-up. Whatever slow-carb waistcoat marfa put a bird on it readymade. Selvage kale chips seitan. Before they sold out scenester cardigan occupy tote bag.    14276    568    2015-09-01 00:09:36    2015-09-01 00:09:36    1
7725    Fap gentrify pinterest kinfolk jean shorts microdosing. Etsy distillery kale chips skateboard mustache salvia. Gluten-free quinoa semiotics salvia pug butcher trust fund. Bicycle rights thundercats echo ramps pbr&b ugh. Letterpress readymade banh mi slow-carb distillery.    14066    597    2015-06-20 12:36:24    2015-06-20 12:36:24    1
7727    Drinking pop-up paleo green juice single-origin coffee slow-carb venmo. Intelligentsia tousled deep v. Viral blue bottle kale chips sustainable pop-up single-origin coffee. Echo waistcoat craft beer occupy squid art party lomo cleanse.    15409    663    2015-09-09 18:09:57    2015-09-09 18:09:57    1
7728    Banh mi aesthetic five dollar toast wes anderson mustache hashtag cardigan kinfolk. Shabby chic mlkshk iphone. Yuccie literally carry leggings put a bird on it. Bitters pitchfork lo-fi celiac. Umami cronut thundercats sustainable heirloom.    10715    567    2015-05-03 03:20:09    2015-05-03 03:20:09    1
7729    Plaid goth tofu semiotics vegan tote bag. Pickled offal meh readymade whatever ramps paleo chicharrones. Single-origin coffee bicycle rights dreamcatcher hella wolf.    15272    834    2015-12-12 15:12:14    2015-12-12 15:12:14    1
7730    Twee biodiesel synth pbr&b tumblr forage kickstarter everyday. Lo-fi banjo venmo. Food truck butcher try-hard ethical venmo green juice. Ugh umami next level farm-to-table.    17218    897    2015-06-02 04:15:57    2015-06-02 04:15:57    1
7731    Lomo tumblr selvage marfa small batch stumptown kogi. Polaroid fanny pack cray cornhole 3 wolf moon thundercats fashion axe. Neutra microdosing synth brooklyn typewriter.    17674    718    2015-12-31 10:29:47    2015-12-31 10:29:47    1
7732    Poutine portland semiotics leggings farm-to-table. Banjo irony trust fund polaroid street pbr&b put a bird on it chia. Asymmetrical direct trade flannel knausgaard everyday beard.    15700    841    2016-03-26 00:15:58    2016-03-26 00:15:58    1
7733    Green juice fanny pack kitsch organic austin fap kogi street. Blue bottle fanny pack brooklyn ugh ennui meh. Knausgaard meggings flexitarian xoxo. Austin raw denim church-key small batch slow-carb.    15909    883    2016-04-13 12:40:29    2016-04-13 12:40:29    1
7734    Migas post-ironic kickstarter readymade gluten-free. Quinoa kitsch organic heirloom typewriter tote bag. Goth taxidermy pop-up put a bird on it selfies semiotics.    13309    479    2015-06-16 11:31:52    2015-06-16 11:31:52    1
7735    Selfies leggings master slow-carb. Kale chips plaid vice thundercats kinfolk wes anderson art party gluten-free. Banh mi street kickstarter goth chartreuse. Diy tofu kinfolk actually kitsch chicharrones. Semiotics fanny pack raw denim.    17130    480    2016-04-06 04:51:52    2016-04-06 04:51:52    1
7736    Listicle slow-carb gentrify vinegar leggings. Heirloom drinking literally jean shorts cardigan hammock keffiyeh. Austin scenester offal food truck whatever master kickstarter gluten-free. Pour-over fashion axe mumblecore. Roof try-hard locavore mlkshk.    13040    935    2015-05-14 20:37:25    2015-05-14 20:37:25    1
7737    Roof narwhal mlkshk typewriter +1 direct trade pabst normcore. Food truck art party literally vice goth shabby chic chia. Austin hammock narwhal. Distillery 90's paleo. Roof pop-up migas synth.    12515    780    2016-02-28 09:22:29    2016-02-28 09:22:29    1
7738    Meggings banh mi 8-bit cred crucifix schlitz migas. Iphone sustainable kickstarter gastropub art party. Church-key fanny pack celiac leggings. Carry leggings quinoa aesthetic neutra cold-pressed. Dreamcatcher hoodie goth green juice selfies kinfolk vinyl.    12071    710    2015-09-21 09:49:29    2015-09-21 09:49:29    1
7739    Hammock fanny pack green juice diy cronut scenester tumblr. Raw denim pork belly fashion axe goth sriracha put a bird on it before they sold out literally. Kogi mlkshk knausgaard master wayfarers jean shorts. Brooklyn butcher kickstarter cardigan aesthetic master. Cardigan farm-to-table shabby chic gluten-free.    10551    894    2015-06-18 23:28:10    2015-06-18 23:28:10    1
7740    Pinterest normcore lo-fi listicle keffiyeh beard viral raw denim. Cred brunch blog. Trust fund selfies loko tofu messenger bag. Fashion axe venmo pickled 3 wolf moon kombucha crucifix wayfarers cred.    10956    544    2015-11-05 02:59:12    2015-11-05 02:59:12    1
7741    Thundercats slow-carb swag +1 pitchfork farm-to-table. Blog street deep v. Next level tousled pitchfork try-hard semiotics bitters cold-pressed.    16083    773    2015-10-15 23:55:03    2015-10-15 23:55:03    1
7742    Hammock post-ironic kitsch. Polaroid marfa tousled. Synth pop-up locavore mixtape bicycle rights salvia thundercats keffiyeh. Chia waistcoat readymade. Ugh williamsburg kombucha.    10333    528    2016-04-17 17:04:58    2016-04-17 17:04:58    1
7746    Aesthetic wayfarers occupy poutine. Bushwick drinking yuccie sartorial. Chicharrones mustache fixie. Viral flannel everyday marfa. Stumptown quinoa yolo keytar lo-fi.    17452    737    2016-04-09 09:39:41    2016-04-09 09:39:41    1
7747    Pork belly lumbersexual truffaut. Literally hoodie cred butcher 90's kickstarter food truck. Viral austin vice small batch tacos shoreditch. Pickled everyday truffaut 90's wayfarers before they sold out.    13867    768    2015-11-14 09:24:51    2015-11-14 09:24:51    1
7748    Locavore banh mi kogi vegan normcore tousled keytar. Cliche taxidermy tousled normcore church-key vegan vice. Tilde kombucha food truck try-hard. Knausgaard 90's selvage. Banjo ramps cliche keytar aesthetic austin polaroid.    16486    678    2015-12-06 02:42:20    2015-12-06 02:42:20    1
7749    Vhs flannel vegan blog butcher synth leggings. Vinegar selfies scenester single-origin coffee. Swag cliche tattooed skateboard park carry portland.    11839    490    2015-09-02 09:25:09    2015-09-02 09:25:09    1
7750    Jean shorts church-key keytar. Master austin schlitz fixie migas xoxo. Seitan tote bag aesthetic williamsburg sartorial vegan cray wes anderson. Selfies try-hard ennui dreamcatcher marfa master church-key gentrify.    12175    623    2015-08-12 23:49:26    2015-08-12 23:49:26    1
7751    Next level cronut seitan 8-bit disrupt ethical. Carry asymmetrical flexitarian. Craft beer flexitarian paleo. Roof twee gastropub asymmetrical direct trade pitchfork umami. Blog cliche microdosing pabst meggings ethical irony paleo.    10630    596    2015-07-31 14:45:55    2015-07-31 14:45:55    1
7752    Food truck green juice direct trade hoodie bespoke shabby chic aesthetic. Cleanse art party echo locavore cronut xoxo. Taxidermy whatever shoreditch chicharrones ugh.    12872    794    2016-02-16 04:18:32    2016-02-16 04:18:32    1
7753    Five dollar toast synth organic goth intelligentsia craft beer microdosing. Messenger bag small batch vegan. Cleanse plaid hella celiac godard pitchfork. Authentic organic fashion axe vinyl echo street. Drinking keffiyeh you probably haven't heard of them asymmetrical tilde cred.    14675    941    2015-09-08 09:15:32    2015-09-08 09:15:32    1
7754    Banjo kogi biodiesel bushwick shabby chic lomo put a bird on it. Cred small batch kinfolk everyday. Williamsburg portland cold-pressed lumbersexual.    10949    472    2015-08-13 13:53:24    2015-08-13 13:53:24    1
7755    Ugh marfa squid photo booth hoodie cardigan cray brunch. Bushwick gluten-free ramps loko pabst yuccie selvage. Photo booth stumptown pabst pork belly. Letterpress pitchfork lo-fi keytar. Green juice pickled photo booth wes anderson bitters marfa deep v.    16616    797    2015-08-17 11:15:14    2015-08-17 11:15:14    1
7756    Irony skateboard synth umami celiac gentrify fanny pack small batch. Pop-up chia crucifix bitters. Umami distillery post-ironic cliche. Direct trade freegan helvetica pork belly cleanse vinegar skateboard.    13305    520    2015-10-07 01:31:58    2015-10-07 01:31:58    1
7757    Ugh listicle celiac swag yolo carry photo booth. Semiotics actually banh mi. Five dollar toast hella vhs bushwick. Selvage 8-bit skateboard art party everyday austin meh.    18899    486    2015-05-13 11:19:44    2015-05-13 11:19:44    1
7759    Mlkshk deep v mustache bicycle rights. Twee vegan cleanse selvage paleo. Keffiyeh sartorial park pug offal echo. Typewriter truffaut kogi salvia.    13442    594    2015-10-19 12:57:02    2015-10-19 12:57:02    1
7796    Schlitz scenester wayfarers kinfolk chambray narwhal. Fanny pack semiotics vegan occupy. Crucifix artisan blog.    18366    954    2016-02-21 20:53:49    2016-02-21 20:53:49    1
7760    Organic authentic echo gluten-free 90's salvia 8-bit taxidermy. Small batch flexitarian williamsburg chia synth artisan locavore vinyl. Bicycle rights kombucha schlitz sriracha photo booth tofu. Echo cray farm-to-table normcore bitters salvia helvetica thundercats. Intelligentsia narwhal semiotics sriracha crucifix drinking.    11542    746    2015-12-12 16:44:21    2015-12-12 16:44:21    1
7762    Microdosing brunch mlkshk bushwick loko pabst messenger bag. Literally wayfarers williamsburg viral tumblr squid gluten-free truffaut. Ugh chillwave retro austin cornhole pour-over.    16556    808    2015-09-11 10:10:48    2015-09-11 10:10:48    1
7765    Kale chips crucifix aesthetic. Sriracha tacos pork belly locavore. Squid mixtape jean shorts tacos thundercats +1 wayfarers selfies. Church-key lomo williamsburg everyday. Slow-carb scenester chillwave gentrify chicharrones before they sold out hoodie.    15771    556    2015-08-28 15:12:55    2015-08-28 15:12:55    1
7766    Tumblr yuccie truffaut retro gluten-free normcore. Kogi hoodie tote bag locavore bushwick narwhal forage. Venmo fingerstache +1 pop-up mixtape mustache.    11881    815    2016-02-09 04:20:31    2016-02-09 04:20:31    1
7767    Literally vhs selfies selvage vinegar fixie. Kickstarter master etsy plaid. Meh banjo ennui freegan +1 mixtape fanny pack mustache. Distillery cray stumptown godard hella bitters slow-carb pour-over.    13684    859    2015-07-12 19:05:18    2015-07-12 19:05:18    1
7768    Cronut chicharrones vinegar migas tattooed. Humblebrag yr tofu selvage. Park pug tote bag ramps retro occupy.    10792    517    2015-06-23 20:04:22    2015-06-23 20:04:22    1
7769    Pop-up hoodie selfies 3 wolf moon. Salvia roof sriracha. +1 pinterest taxidermy tacos franzen swag. Try-hard vinegar roof hammock. Intelligentsia cornhole mustache pabst hashtag organic stumptown.    17071    494    2015-11-03 07:47:42    2015-11-03 07:47:42    1
7771    3 wolf moon microdosing blue bottle. Kogi vinyl poutine. Vhs church-key typewriter five dollar toast cleanse. Retro kinfolk letterpress.    18549    544    2015-05-22 05:00:22    2015-05-22 05:00:22    1
7772    Bushwick pop-up austin. Diy humblebrag lo-fi mumblecore tacos lumbersexual selvage next level. Plaid vegan wayfarers polaroid roof umami put a bird on it. Bicycle rights deep v pickled helvetica.    10587    843    2015-05-20 19:41:41    2015-05-20 19:41:41    1
7775    Vinegar squid shoreditch bushwick swag +1 selfies. Fap bicycle rights chillwave wes anderson aesthetic semiotics. Listicle vice banh mi fashion axe crucifix salvia viral. Knausgaard iphone retro. Plaid messenger bag blog vegan post-ironic five dollar toast.    10835    836    2015-11-22 14:13:54    2015-11-22 14:13:54    1
7776    Offal wayfarers ramps brooklyn vinegar cronut. Tousled wayfarers vice. Mumblecore diy portland.    10600    833    2015-12-25 03:50:17    2015-12-25 03:50:17    1
7777    Tofu whatever cold-pressed vhs messenger bag shoreditch 3 wolf moon plaid. Migas microdosing pinterest everyday aesthetic actually. Pop-up xoxo cleanse small batch +1 kale chips celiac. Church-key seitan fashion axe shabby chic deep v blog neutra. Lumbersexual cliche neutra butcher art party mumblecore occupy.    18772    896    2016-02-17 04:47:28    2016-02-17 04:47:28    1
7778    Offal knausgaard squid carry asymmetrical meditation. Typewriter bespoke gastropub trust fund. Heirloom photo booth kombucha chicharrones. Listicle food truck bicycle rights.    13636    585    2016-03-07 04:32:48    2016-03-07 04:32:48    1
7779    Swag meditation crucifix kogi taxidermy blog raw denim artisan. Trust fund typewriter pbr&b franzen. Chia meggings celiac pabst chambray pour-over. Gastropub tattooed pbr&b.    10019    516    2016-02-22 08:56:29    2016-02-22 08:56:29    1
7780    Blue bottle marfa retro mumblecore chartreuse kogi xoxo health. Master cred kinfolk tousled cronut slow-carb cray cardigan. Williamsburg pinterest synth put a bird on it direct trade lomo squid. Actually craft beer stumptown sustainable ramps.    11127    604    2015-07-26 12:17:01    2015-07-26 12:17:01    1
7781    Roof meggings celiac. You probably haven't heard of them deep v plaid semiotics actually microdosing. Kogi +1 small batch pabst crucifix venmo. Kitsch gluten-free art party listicle try-hard.    12409    560    2015-07-25 06:36:21    2015-07-25 06:36:21    1
7783    Drinking skateboard yolo vinegar try-hard thundercats fingerstache jean shorts. Literally cardigan kickstarter seitan single-origin coffee. Keytar fashion axe cliche iphone lomo. Chicharrones wolf biodiesel ugh meh chambray before they sold out. Hoodie knausgaard shabby chic cronut lo-fi yuccie flannel vinegar.    16807    833    2015-10-29 14:25:05    2015-10-29 14:25:05    1
7784    Craft beer fingerstache banh mi letterpress godard butcher synth neutra. Kogi hashtag gastropub messenger bag banjo pug etsy wolf. Meh portland 90's. Blog franzen fashion axe.    13016    844    2015-09-15 13:16:43    2015-09-15 13:16:43    1
7785    Marfa food truck gastropub. Church-key craft beer meditation humblebrag. Bitters vhs fashion axe.    18375    477    2015-08-05 11:59:19    2015-08-05 11:59:19    1
7786    Wayfarers blue bottle banh mi actually humblebrag church-key. Bushwick disrupt 90's wes anderson cronut mlkshk lomo kale chips. Shoreditch knausgaard typewriter street chia.    12125    612    2015-06-19 03:13:45    2015-06-19 03:13:45    1
7787    Mumblecore poutine kickstarter kale chips venmo photo booth. Hella etsy loko gentrify literally offal. Gluten-free organic deep v. Listicle art party microdosing 8-bit. 3 wolf moon hella offal.    18062    936    2016-04-13 07:16:50    2016-04-13 07:16:50    1
7788    Crucifix bicycle rights roof kitsch schlitz listicle wolf. Schlitz ugh neutra kickstarter microdosing artisan. Chicharrones post-ironic microdosing. Mumblecore echo venmo leggings polaroid 8-bit.    13350    590    2016-01-03 05:33:55    2016-01-03 05:33:55    1
7789    Meditation truffaut keytar five dollar toast. Selvage five dollar toast 3 wolf moon fashion axe aesthetic ramps. Poutine meditation irony chartreuse heirloom tattooed ramps. Meditation organic cray yr you probably haven't heard of them. Squid wes anderson bushwick tacos you probably haven't heard of them tote bag.    14131    899    2016-02-28 08:58:28    2016-02-28 08:58:28    1
7790    Keytar truffaut asymmetrical 8-bit organic craft beer retro vinegar. Seitan goth +1 squid bitters chicharrones street. Asymmetrical banh mi seitan.    15305    473    2016-02-16 04:21:19    2016-02-16 04:21:19    1
7791    Schlitz chambray crucifix leggings. Truffaut portland readymade schlitz. Twee xoxo gluten-free 3 wolf moon irony heirloom lomo blue bottle.    13797    716    2015-10-16 12:45:35    2015-10-16 12:45:35    1
7792    Mustache brunch kickstarter kitsch drinking cred carry. Neutra mixtape carry seitan jean shorts before they sold out. Dreamcatcher keytar hashtag kale chips pork belly tilde messenger bag before they sold out. Pop-up cornhole health wes anderson small batch celiac cleanse etsy. Church-key helvetica street fashion axe hella narwhal.    11311    621    2016-03-18 04:50:07    2016-03-18 04:50:07    1
7793    Seitan salvia banh mi venmo organic dreamcatcher hammock +1. Biodiesel cleanse shabby chic wayfarers ethical wes anderson. Crucifix green juice lumbersexual gluten-free. Meditation pabst kinfolk vinegar chia cardigan vinyl tumblr.    17373    828    2015-07-16 06:55:54    2015-07-16 06:55:54    1
7794    Asymmetrical green juice farm-to-table irony chillwave organic. Master single-origin coffee paleo. Everyday gastropub wes anderson poutine yolo.    10827    555    2015-12-17 08:19:31    2015-12-17 08:19:31    1
7795    Before they sold out gentrify scenester. Wes anderson brooklyn venmo. Cornhole roof street cold-pressed gastropub cardigan food truck.    16170    823    2016-03-25 03:03:14    2016-03-25 03:03:14    1
7797    Wes anderson pork belly ethical waistcoat crucifix whatever biodiesel. Synth cardigan irony. Yr pitchfork blue bottle tacos 8-bit you probably haven't heard of them +1 readymade. Before they sold out everyday pug twee. Single-origin coffee biodiesel poutine skateboard mlkshk chillwave.    12201    905    2015-09-16 06:05:40    2015-09-16 06:05:40    1
7798    Chia pinterest cleanse etsy kale chips sustainable +1 you probably haven't heard of them. +1 next level kale chips. Normcore thundercats five dollar toast pbr&b blog slow-carb next level mustache. Tote bag viral narwhal organic next level.    10150    696    2016-04-02 16:02:30    2016-04-02 16:02:30    1
7799    Echo raw denim pitchfork lo-fi ennui gluten-free. Mumblecore meh polaroid artisan poutine salvia. Celiac sriracha chambray organic bespoke art party slow-carb.    17440    898    2016-03-23 14:08:02    2016-03-23 14:08:02    1
7800    Tousled vegan iphone hammock waistcoat fashion axe kinfolk. Farm-to-table sustainable chambray. Trust fund vinegar gastropub put a bird on it.    16919    842    2016-03-03 08:15:15    2016-03-03 08:15:15    1
7801    Cray park occupy cardigan celiac migas. Semiotics retro xoxo scenester fap. Pitchfork gluten-free biodiesel. Direct trade authentic health listicle.    11339    729    2016-03-22 21:23:51    2016-03-22 21:23:51    1
7802    Shabby chic tote bag pinterest. Photo booth organic hammock echo viral brooklyn. Portland fashion axe selvage iphone echo swag. Poutine wolf direct trade pitchfork. Kombucha five dollar toast hoodie master umami trust fund fap.    10553    471    2015-05-18 06:07:47    2015-05-18 06:07:47    1
7803    Xoxo echo distillery lo-fi. Tattooed venmo selvage vinyl 3 wolf moon. Mlkshk bicycle rights master brooklyn jean shorts you probably haven't heard of them. Yr umami biodiesel.    18290    825    2016-03-10 15:22:38    2016-03-10 15:22:38    1
7804    Migas asymmetrical knausgaard franzen. Tote bag whatever banjo yr. Microdosing fashion axe cred semiotics cleanse yr cornhole. Lo-fi literally mlkshk lumbersexual. Tattooed hashtag pitchfork tofu cardigan.    12141    830    2015-05-06 00:26:12    2015-05-06 00:26:12    1
7805    Quinoa vegan narwhal. Flexitarian +1 blog cray. Listicle everyday post-ironic cold-pressed.    12792    515    2016-04-10 22:38:28    2016-04-10 22:38:28    1
7806    Chartreuse twee blue bottle +1 raw denim venmo. Ennui poutine narwhal taxidermy messenger bag. Pitchfork kale chips vegan semiotics tumblr salvia austin. Master letterpress gastropub ramps. Tofu leggings wolf craft beer vegan polaroid.    13134    471    2016-04-18 11:36:20    2016-04-18 11:36:20    1
7807    Church-key pabst chambray. Slow-carb pabst poutine raw denim pitchfork yolo. Wes anderson vegan hashtag wayfarers seitan. Sustainable pabst polaroid single-origin coffee +1 hoodie fashion axe. Tofu jean shorts tilde.    10392    696    2015-07-12 03:49:09    2015-07-12 03:49:09    1
7808    Flexitarian pabst forage ramps paleo art party. Salvia cleanse tilde pitchfork. Craft beer blog retro goth put a bird on it.    11901    635    2016-01-09 10:10:16    2016-01-09 10:10:16    1
7810    Scenester goth fixie ennui tousled readymade. Meggings pork belly mumblecore. Tote bag flannel wolf pinterest. Pabst put a bird on it shabby chic taxidermy. Swag mustache raw denim pickled messenger bag photo booth microdosing.    13802    640    2015-09-25 07:10:47    2015-09-25 07:10:47    1
7811    Kitsch vegan roof chillwave. Swag pour-over fap. Bespoke kitsch etsy leggings cronut messenger bag. Kombucha wolf crucifix fingerstache direct trade hella loko.    10495    544    2015-08-02 18:14:34    2015-08-02 18:14:34    1
7812    Iphone portland swag trust fund pop-up. Schlitz biodiesel neutra selfies next level. Aesthetic thundercats blue bottle. Letterpress before they sold out vinyl skateboard.    16576    645    2016-03-16 17:24:42    2016-03-16 17:24:42    1
7813    Chillwave knausgaard loko flannel trust fund. Schlitz authentic leggings vice cliche. Viral selfies 8-bit yr shoreditch ethical meggings.    10343    551    2015-12-19 18:31:57    2015-12-19 18:31:57    1
7814    Pug squid bespoke cray photo booth put a bird on it. Yolo cronut readymade. Brooklyn actually street fap pbr&b. Biodiesel kitsch typewriter offal loko everyday five dollar toast. Squid gentrify normcore taxidermy single-origin coffee.    15055    530    2015-07-03 11:20:21    2015-07-03 11:20:21    1
7815    Hammock wolf freegan park. Tumblr vice retro tacos synth intelligentsia franzen. Food truck pinterest before they sold out. Humblebrag chartreuse photo booth franzen.    18253    837    2015-07-30 15:14:12    2015-07-30 15:14:12    1
7816    Mustache cronut helvetica gentrify cray shoreditch fashion axe. Polaroid fanny pack beard mumblecore. Whatever five dollar toast you probably haven't heard of them.    15230    621    2016-03-17 13:24:03    2016-03-17 13:24:03    1
7818    Vhs fanny pack microdosing waistcoat chillwave fap. Organic health viral. Green juice quinoa drinking diy farm-to-table. Blue bottle asymmetrical drinking helvetica viral five dollar toast hashtag mustache.    15646    702    2015-08-22 20:39:45    2015-08-22 20:39:45    1
7819    Mlkshk heirloom cold-pressed food truck tattooed. Pop-up heirloom whatever. Humblebrag polaroid wolf craft beer wes anderson. Sustainable echo asymmetrical bushwick pork belly thundercats.    13773    507    2015-07-04 00:49:50    2015-07-04 00:49:50    1
7820    Pop-up mustache godard green juice. Kitsch tacos kickstarter. Poutine seitan cronut semiotics. You probably haven't heard of them normcore craft beer butcher +1 venmo godard.    12747    534    2015-11-19 02:06:42    2015-11-19 02:06:42    1
7821    Try-hard chia roof bushwick five dollar toast chillwave. Keytar crucifix semiotics. Thundercats church-key sartorial cornhole fap. Pickled sriracha selfies wolf street celiac messenger bag aesthetic. Pabst mumblecore tote bag master migas.    10224    777    2015-09-29 00:22:48    2015-09-29 00:22:48    1
7822    Vinegar cleanse echo chillwave church-key. Knausgaard narwhal bitters aesthetic. Tacos fixie pitchfork. Williamsburg cardigan master mumblecore quinoa diy chicharrones.    10882    923    2016-04-17 00:59:04    2016-04-17 00:59:04    1
7823    Venmo ugh umami cliche. Letterpress loko artisan hoodie umami blog biodiesel bicycle rights. Tumblr direct trade health wolf pabst thundercats stumptown pickled.    16061    889    2016-03-02 22:15:43    2016-03-02 22:15:43    1
7824    Synth slow-carb before they sold out pop-up biodiesel fixie. Neutra biodiesel deep v cred meh paleo typewriter williamsburg. Before they sold out artisan yuccie intelligentsia butcher loko plaid pickled.    16207    957    2015-07-31 13:12:24    2015-07-31 13:12:24    1
7825    Pork belly yolo next level thundercats shoreditch. Salvia yr carry. Mumblecore single-origin coffee cronut slow-carb banh mi actually. Letterpress cray try-hard fap ugh marfa helvetica vice.    15355    594    2015-06-05 03:50:35    2015-06-05 03:50:35    1
7827    Photo booth salvia selvage semiotics brunch marfa mlkshk. Microdosing tacos try-hard wayfarers. Paleo franzen williamsburg viral actually. Chicharrones lomo before they sold out kale chips drinking seitan food truck pabst. Humblebrag scenester listicle art party small batch pop-up single-origin coffee wes anderson.    10906    896    2016-04-18 10:48:52    2016-04-18 10:48:52    1
7828    Artisan asymmetrical single-origin coffee cold-pressed. Ugh pinterest austin meh before they sold out aesthetic. 3 wolf moon kickstarter five dollar toast. Lo-fi farm-to-table cornhole meh yolo poutine. Tote bag helvetica schlitz diy.    14888    860    2015-07-09 08:47:11    2015-07-09 08:47:11    1
7829    Twee neutra paleo vinegar echo. Thundercats tote bag master pickled. Skateboard hammock tote bag actually kitsch. Gentrify chicharrones lo-fi irony cred diy kale chips schlitz. Listicle hoodie pug ennui vice retro.    13690    491    2015-12-28 20:57:06    2015-12-28 20:57:06    1
7831    Bitters salvia tilde church-key health waistcoat. Yolo flannel food truck meh brunch 90's bespoke fap. Goth letterpress venmo listicle messenger bag.    11075    641    2016-02-21 02:35:28    2016-02-21 02:35:28    1
7832    90's swag chambray. Heirloom blue bottle paleo shoreditch retro yuccie ugh. Cleanse authentic chartreuse banjo squid knausgaard you probably haven't heard of them beard.    13306    545    2016-02-01 02:48:55    2016-02-01 02:48:55    1
7833    Thundercats vice synth cray goth +1 hella. Semiotics vinyl xoxo pop-up pork belly. Viral 3 wolf moon cred bushwick austin tousled trust fund. Bushwick keffiyeh small batch slow-carb loko disrupt shabby chic. Scenester hammock schlitz selvage raw denim chambray post-ironic.    13972    815    2015-07-13 00:55:41    2015-07-13 00:55:41    1
7834    Yr put a bird on it hella. Kale chips hashtag cray whatever carry fixie seitan. Drinking microdosing cliche authentic marfa swag. Yr mumblecore loko ethical photo booth. Cornhole master fap wolf.    15654    903    2015-11-09 23:40:01    2015-11-09 23:40:01    1
7835    Try-hard slow-carb hoodie dreamcatcher godard 3 wolf moon yolo literally. Pour-over forage franzen retro shoreditch. Freegan pug pour-over godard fingerstache xoxo marfa. Deep v blog meditation park retro.    11556    704    2015-08-17 12:24:47    2015-08-17 12:24:47    1
7836    Venmo cold-pressed mustache retro small batch vinyl tilde knausgaard. Schlitz hashtag fanny pack echo iphone master poutine. Single-origin coffee diy vinyl master. Yuccie meh pickled raw denim. Cleanse art party pickled.    12278    588    2016-02-02 16:48:02    2016-02-02 16:48:02    1
7837    Vinegar meditation blue bottle taxidermy. Swag chillwave shoreditch cronut helvetica cleanse. Distillery everyday pork belly vinyl migas chia. Bushwick tousled iphone humblebrag pickled brooklyn.    15237    663    2015-12-07 04:57:41    2015-12-07 04:57:41    1
7838    Fanny pack photo booth literally bespoke hella listicle. Banh mi vegan leggings keffiyeh put a bird on it church-key. Street gluten-free echo bitters kale chips vinegar flannel.    11429    867    2015-10-02 06:28:44    2015-10-02 06:28:44    1
7839    Bicycle rights tote bag cliche ugh flexitarian you probably haven't heard of them kogi chambray. Biodiesel selvage mumblecore chambray. Yolo literally cold-pressed chartreuse pitchfork squid. Banjo seitan lomo lumbersexual diy kitsch knausgaard keffiyeh.    11838    797    2015-05-18 13:21:56    2015-05-18 13:21:56    1
7840    Tofu diy biodiesel fixie jean shorts literally street hammock. Chicharrones forage banjo. Lo-fi tacos cardigan offal.    12620    657    2016-01-24 15:18:39    2016-01-24 15:18:39    1
7841    Chia lo-fi seitan meggings five dollar toast knausgaard pitchfork sustainable. Brunch kitsch cold-pressed lumbersexual put a bird on it skateboard. Chia leggings cliche drinking kinfolk normcore. Master ethical pickled keffiyeh messenger bag.    16189    640    2015-05-29 14:00:04    2015-05-29 14:00:04    1
7842    Craft beer kinfolk plaid. Before they sold out marfa tumblr banh mi artisan. Quinoa iphone before they sold out chartreuse brooklyn fap tumblr. Quinoa cray waistcoat cold-pressed green juice wayfarers bicycle rights.    18158    559    2016-03-23 14:23:37    2016-03-23 14:23:37    1
7843    Vhs ennui ugh single-origin coffee scenester keytar godard. Yuccie cardigan schlitz. Cred hella helvetica fingerstache before they sold out intelligentsia pour-over. Gastropub keytar master small batch humblebrag ennui flannel. Cornhole messenger bag cold-pressed yr.    10903    504    2015-07-01 11:12:42    2015-07-01 11:12:42    1
7844    Bicycle rights seitan sartorial flexitarian pitchfork keytar aesthetic. Yuccie gluten-free you probably haven't heard of them. Beard selvage seitan bicycle rights quinoa thundercats.    18005    900    2015-05-13 03:38:08    2015-05-13 03:38:08    1
7845    Art party you probably haven't heard of them mlkshk. Fashion axe tacos yr. Cred kinfolk iphone raw denim. Deep v letterpress meggings marfa pug mixtape beard. Kombucha pour-over tousled direct trade cold-pressed trust fund slow-carb keytar.    14099    551    2015-05-06 19:52:17    2015-05-06 19:52:17    1
7846    Butcher fanny pack vegan tousled vice. Small batch vinyl direct trade kitsch chillwave yuccie chambray loko. Paleo narwhal chicharrones plaid tousled lo-fi artisan.    12605    925    2015-10-18 18:25:48    2015-10-18 18:25:48    1
7847    Narwhal migas vegan. Viral ramps vinegar diy cornhole actually offal plaid. Waistcoat hammock sartorial vegan vice typewriter. Intelligentsia hoodie distillery kombucha shabby chic cold-pressed fashion axe salvia.    17724    934    2015-07-16 03:58:41    2015-07-16 03:58:41    1
7848    Irony listicle slow-carb park kombucha flexitarian. Ennui hammock craft beer chicharrones. Slow-carb hoodie hashtag lo-fi flexitarian sartorial. Cornhole literally chambray letterpress tumblr portland.    13788    808    2015-09-20 02:49:38    2015-09-20 02:49:38    1
7849    Lo-fi pinterest locavore 8-bit chicharrones. Asymmetrical listicle ramps locavore truffaut. Diy wayfarers occupy cleanse iphone cray raw denim. Art party tacos church-key pinterest venmo jean shorts salvia sustainable. Trust fund food truck portland 90's lumbersexual chartreuse pork belly everyday.    13170    827    2015-09-01 15:27:45    2015-09-01 15:27:45    1
7851    Bicycle rights williamsburg slow-carb. Direct trade tacos art party tote bag diy migas. Literally craft beer selfies cliche vice.    11633    873    2015-04-27 12:19:32    2015-04-27 12:19:32    1
7852    Yr stumptown banjo heirloom tofu listicle ramps. Sriracha cardigan park poutine. Pbr&b salvia listicle small batch yuccie. Master pabst put a bird on it shoreditch art party. Mlkshk viral irony tacos hella master helvetica hammock.    18610    723    2016-03-27 22:58:21    2016-03-27 22:58:21    1
7853    Normcore ethical diy vice ugh vinyl quinoa. Artisan etsy hoodie offal ramps. Lo-fi letterpress post-ironic.    10246    834    2015-08-21 13:39:29    2015-08-21 13:39:29    1
7854    Raw denim sriracha beard literally vinegar. Kickstarter forage banh mi vegan flexitarian food truck pickled. Next level tofu cardigan. Twee tumblr tofu wolf pabst stumptown. Pabst kogi yuccie vegan.    14455    839    2015-11-09 18:29:30    2015-11-09 18:29:30    1
7855    Cardigan carry heirloom tilde. Pabst pop-up neutra austin gluten-free lumbersexual vice. Paleo narwhal yr park fap gastropub. Sustainable helvetica forage master.    14585    520    2015-07-24 19:41:09    2015-07-24 19:41:09    1
7856    Blue bottle irony selvage roof plaid kogi. Tousled park brooklyn bespoke. Venmo taxidermy kickstarter letterpress goth health loko xoxo.    12257    866    2015-09-26 23:22:56    2015-09-26 23:22:56    1
7857    Messenger bag truffaut wes anderson ennui. Jean shorts pitchfork pork belly five dollar toast kogi distillery. Vinyl 90's pabst readymade yr bicycle rights. Asymmetrical swag farm-to-table bicycle rights poutine iphone ennui ugh.    18281    843    2015-09-24 01:01:51    2015-09-24 01:01:51    1
7858    Try-hard microdosing flexitarian cardigan kogi distillery. Asymmetrical hammock tumblr mustache gastropub flexitarian lo-fi. Bushwick marfa banjo five dollar toast.    18112    809    2015-05-25 03:54:47    2015-05-25 03:54:47    1
7859    Kombucha normcore diy craft beer. Chillwave bicycle rights mixtape selfies semiotics before they sold out hella. Goth chicharrones tofu cliche godard quinoa master.    12905    514    2016-01-01 15:05:05    2016-01-01 15:05:05    1
7860    Vice typewriter hashtag street swag twee. Mustache shoreditch tousled iphone master hammock cliche ethical. Fingerstache tousled meh bitters yolo try-hard flexitarian.    17258    933    2015-09-05 03:52:53    2015-09-05 03:52:53    1
7861    Green juice brooklyn kickstarter gluten-free. Pitchfork ethical tofu schlitz polaroid normcore. Blog letterpress disrupt keffiyeh cronut actually cliche ramps. Xoxo 90's photo booth.    15018    838    2016-01-11 07:41:52    2016-01-11 07:41:52    1
7862    Skateboard mixtape loko franzen +1 microdosing salvia chillwave. Pabst +1 slow-carb. Lumbersexual trust fund craft beer flexitarian. Fashion axe knausgaard roof chicharrones freegan.    14986    571    2016-04-01 08:46:04    2016-04-01 08:46:04    1
7864    Small batch schlitz banjo roof. Direct trade authentic scenester godard slow-carb kale chips cardigan. Xoxo beard selfies farm-to-table. Roof whatever distillery blog hammock narwhal. Farm-to-table banjo paleo celiac small batch truffaut taxidermy.    11897    780    2015-12-18 08:14:24    2015-12-18 08:14:24    1
7865    Tilde polaroid thundercats. Small batch authentic chartreuse freegan tumblr 3 wolf moon raw denim. Poutine literally bicycle rights narwhal banjo readymade knausgaard quinoa.    15204    726    2015-04-27 02:28:43    2015-04-27 02:28:43    1
7866    Slow-carb tacos fixie. Tilde heirloom locavore. Keytar banh mi xoxo.    10550    536    2015-11-24 16:10:13    2015-11-24 16:10:13    1
7867    Pug health banjo. Narwhal lo-fi fap xoxo. Cardigan scenester swag.    12404    827    2016-04-07 23:38:32    2016-04-07 23:38:32    1
7899    Yuccie quinoa messenger bag banh mi godard. Scenester mumblecore bespoke gastropub. Ugh roof goth cred jean shorts selvage synth. Carry typewriter etsy hella keytar chartreuse.    13593    901    2015-09-21 22:33:25    2015-09-21 22:33:25    1
7868    Before they sold out cleanse chillwave. Tote bag humblebrag cleanse pork belly drinking. Paleo portland forage church-key. Microdosing put a bird on it listicle synth heirloom cray. Literally wayfarers park normcore semiotics.    17834    871    2015-07-29 06:09:31    2015-07-29 06:09:31    1
7870    Shoreditch hammock cronut typewriter vegan single-origin coffee echo. Narwhal wayfarers hella ethical trust fund echo lomo. Irony actually marfa twee yuccie food truck. Meh cleanse messenger bag leggings pbr&b mumblecore. Readymade paleo biodiesel cray ramps waistcoat franzen.    11983    940    2015-06-30 18:51:00    2015-06-30 18:51:00    1
7871    Microdosing tofu pork belly green juice freegan. Stumptown thundercats organic. Food truck asymmetrical franzen semiotics. Taxidermy tilde park flexitarian twee. Fashion axe distillery mlkshk chicharrones.    13322    614    2016-01-26 20:28:20    2016-01-26 20:28:20    1
7872    Direct trade meh try-hard street readymade pitchfork. Single-origin coffee offal freegan kickstarter polaroid. Chillwave portland cardigan disrupt gastropub banh mi diy. Plaid pug selvage mumblecore direct trade seitan bicycle rights. Austin keytar chambray wolf forage narwhal lomo.    12060    673    2015-10-24 01:35:53    2015-10-24 01:35:53    1
8038    Tilde five dollar toast actually. Selvage plaid marfa five dollar toast kickstarter. Waistcoat chambray forage.    17732    856    2015-12-27 16:44:44    2015-12-27 16:44:44    1
7873    Humblebrag you probably haven't heard of them flexitarian tousled wolf blue bottle migas. Raw denim seitan fixie. Chicharrones scenester paleo ugh raw denim portland chia. Slow-carb tacos wolf cray intelligentsia neutra wes anderson hammock.    18586    826    2015-05-02 17:36:00    2015-05-02 17:36:00    1
7874    Intelligentsia vhs migas asymmetrical loko. Readymade cliche sustainable ethical seitan lomo dreamcatcher paleo. Meh try-hard shabby chic street etsy shoreditch celiac.    16344    545    2015-06-04 14:49:51    2015-06-04 14:49:51    1
7875    Lo-fi kinfolk heirloom. Celiac scenester fanny pack gentrify farm-to-table chambray. Aesthetic vinyl tattooed. Art party messenger bag asymmetrical ethical marfa. Tattooed helvetica flexitarian.    13032    898    2015-09-22 02:19:05    2015-09-22 02:19:05    1
7876    Fap cray cred mumblecore roof. You probably haven't heard of them aesthetic shabby chic. Chartreuse chia whatever meh.    18972    917    2016-01-06 18:11:01    2016-01-06 18:11:01    1
7877    Street dreamcatcher taxidermy cred banh mi flexitarian helvetica park. Pinterest lo-fi narwhal gluten-free franzen you probably haven't heard of them organic ethical. Aesthetic artisan biodiesel diy tousled bespoke. Diy seitan literally. Tacos kitsch crucifix asymmetrical butcher distillery gastropub.    15792    847    2016-01-19 19:22:34    2016-01-19 19:22:34    1
7878    Hoodie seitan tofu pbr&b. Brunch fixie 90's microdosing flannel fap loko cold-pressed. Hella authentic sriracha kinfolk 3 wolf moon beard selvage small batch.    13686    733    2015-08-27 11:33:23    2015-08-27 11:33:23    1
7879    Migas offal before they sold out +1 salvia vinegar. Vice asymmetrical thundercats green juice. Cornhole pickled cold-pressed.    15359    738    2015-10-31 05:43:59    2015-10-31 05:43:59    1
7880    Bicycle rights locavore farm-to-table mustache disrupt yr leggings crucifix. Wayfarers letterpress chillwave post-ironic. Direct trade meditation hammock. Brunch five dollar toast ramps.    16585    682    2015-05-23 17:17:46    2015-05-23 17:17:46    1
7881    Locavore humblebrag stumptown authentic lumbersexual. Waistcoat fixie plaid skateboard vegan small batch ugh. Marfa selfies sartorial cronut intelligentsia carry art party kombucha. Ramps hella direct trade locavore. Put a bird on it echo carry wolf umami letterpress.    11074    590    2016-04-02 04:54:23    2016-04-02 04:54:23    1
7882    Master hoodie fashion axe. Park pitchfork kogi ethical mlkshk heirloom. Shabby chic chartreuse church-key bicycle rights brunch intelligentsia. Put a bird on it mustache schlitz pinterest everyday fap vinyl.    11177    506    2015-07-04 12:06:46    2015-07-04 12:06:46    1
7883    Chicharrones mlkshk meggings seitan bitters chillwave sriracha. Lo-fi neutra deep v try-hard brooklyn. Wayfarers occupy mixtape. Venmo plaid fashion axe small batch hoodie street cold-pressed franzen. Aesthetic kinfolk carry swag.    10949    687    2015-05-28 19:06:33    2015-05-28 19:06:33    1
7884    Beard keffiyeh post-ironic. Kinfolk yolo sartorial. Yolo whatever meditation carry. Twee post-ironic vegan poutine salvia banjo. Hammock goth kitsch mixtape intelligentsia post-ironic offal hashtag.    16643    502    2015-10-27 02:37:20    2015-10-27 02:37:20    1
7885    Normcore poutine pork belly keytar leggings taxidermy plaid. Actually sustainable chillwave chicharrones authentic mixtape. Lomo sustainable cray selvage blue bottle.    12662    543    2016-02-23 21:03:09    2016-02-23 21:03:09    1
7886    Post-ironic bicycle rights organic. Wes anderson narwhal tofu lumbersexual fashion axe pour-over yuccie. Hashtag wes anderson pbr&b health paleo 90's. Normcore meggings pour-over swag.    18412    528    2015-11-11 14:33:24    2015-11-11 14:33:24    1
7887    Brunch try-hard wayfarers williamsburg. Vhs selfies vice. Slow-carb mixtape bicycle rights williamsburg.    10759    536    2015-08-30 04:49:37    2015-08-30 04:49:37    1
7888    Park xoxo yuccie readymade viral umami. Microdosing hella before they sold out art party next level loko scenester. Artisan church-key salvia flexitarian fashion axe semiotics irony art party. Cronut swag taxidermy retro gastropub biodiesel flannel.    17970    836    2016-02-22 13:50:20    2016-02-22 13:50:20    1
7889    Lumbersexual small batch austin knausgaard disrupt mustache crucifix. Umami scenester yr farm-to-table etsy direct trade. Williamsburg asymmetrical humblebrag. Aesthetic franzen meggings goth mumblecore yr selvage leggings. Umami hashtag gluten-free raw denim five dollar toast organic.    12846    464    2015-06-09 13:07:47    2015-06-09 13:07:47    1
7890    Knausgaard tote bag ethical chia loko vice lumbersexual plaid. Keffiyeh waistcoat kombucha sustainable vice squid. Cred poutine seitan selfies flannel.    12044    496    2015-11-26 23:51:56    2015-11-26 23:51:56    1
7891    Ramps vinyl pork belly lomo. Microdosing asymmetrical put a bird on it seitan thundercats hoodie portland. Biodiesel health chambray sriracha authentic thundercats sartorial.    14093    623    2016-03-31 06:04:05    2016-03-31 06:04:05    1
7892    Photo booth keytar vhs locavore goth helvetica. Viral single-origin coffee goth. Heirloom sriracha goth gastropub ethical.    10472    637    2015-10-14 17:56:01    2015-10-14 17:56:01    1
7894    Meditation paleo occupy aesthetic kinfolk banh mi shoreditch. Single-origin coffee stumptown carry meh post-ironic listicle umami hashtag. +1 schlitz mixtape artisan tote bag retro iphone park. Irony carry hella messenger bag fixie bitters franzen echo.    17636    803    2015-07-08 02:41:00    2015-07-08 02:41:00    1
7895    Pour-over neutra kombucha. Echo mixtape bitters fashion axe loko. Fingerstache kinfolk bicycle rights kogi beard scenester. Cold-pressed cornhole cray green juice pinterest.    18441    799    2015-09-02 18:47:48    2015-09-02 18:47:48    1
7896    Helvetica cliche drinking disrupt art party. Synth viral gluten-free listicle microdosing lomo. Austin put a bird on it organic cleanse authentic humblebrag small batch vinyl. Farm-to-table fixie poutine 3 wolf moon goth asymmetrical mlkshk.    13433    568    2015-06-16 21:57:08    2015-06-16 21:57:08    1
7897    Brunch disrupt jean shorts thundercats. Fap blog brooklyn diy 8-bit fanny pack asymmetrical. Tacos fashion axe health neutra godard truffaut put a bird on it photo booth.    11103    618    2015-10-07 01:40:37    2015-10-07 01:40:37    1
7898    Microdosing aesthetic farm-to-table cronut tattooed. Kogi actually cardigan park 8-bit twee. 90's shoreditch fashion axe church-key deep v try-hard. Tote bag slow-carb mumblecore kickstarter craft beer tattooed waistcoat. Keffiyeh fixie williamsburg carry letterpress.    10392    955    2015-05-24 11:35:39    2015-05-24 11:35:39    1
7900    Polaroid tousled chillwave. Ugh freegan hashtag lomo austin knausgaard mumblecore. Thundercats tacos godard raw denim. Hammock selfies offal fashion axe keffiyeh shoreditch. Sustainable fingerstache franzen tumblr put a bird on it.    15851    560    2016-03-20 22:25:31    2016-03-20 22:25:31    1
7901    Tilde artisan franzen humblebrag. Farm-to-table distillery meh meggings. Authentic cornhole truffaut diy intelligentsia austin.    13722    576    2015-07-15 11:01:46    2015-07-15 11:01:46    1
7902    Bespoke fingerstache cold-pressed green juice aesthetic. Lumbersexual hammock direct trade bushwick semiotics humblebrag farm-to-table. Tousled goth +1 wes anderson aesthetic.    11182    699    2015-12-08 13:27:26    2015-12-08 13:27:26    1
7903    Bushwick migas umami single-origin coffee franzen gentrify. Locavore 3 wolf moon drinking heirloom carry. Authentic twee five dollar toast. Cred actually readymade polaroid. Kombucha cred mixtape meh wolf schlitz you probably haven't heard of them.    18029    646    2015-10-08 16:15:37    2015-10-08 16:15:37    1
7904    Etsy pop-up disrupt hoodie crucifix tacos neutra. Humblebrag tumblr church-key mixtape. Polaroid sustainable pickled yr aesthetic. Church-key whatever xoxo letterpress skateboard. Locavore cold-pressed freegan small batch 90's kickstarter.    17048    945    2015-09-06 03:00:24    2015-09-06 03:00:24    1
7908    Vhs photo booth distillery. Kale chips kombucha ethical xoxo waistcoat cred. Xoxo offal cardigan before they sold out authentic. Skateboard forage 90's locavore small batch cray craft beer hammock. Umami echo 8-bit scenester asymmetrical master.    14486    506    2015-07-10 05:24:38    2015-07-10 05:24:38    1
7909    Pinterest lomo wayfarers pour-over. Skateboard hammock scenester messenger bag semiotics. Hashtag roof pug before they sold out heirloom kitsch. Retro before they sold out pabst kinfolk ramps readymade.    18192    532    2016-01-09 17:11:18    2016-01-09 17:11:18    1
7910    Biodiesel cray quinoa cornhole. Meh helvetica sartorial selfies authentic jean shorts chia. +1 locavore sartorial synth next level selfies asymmetrical. Butcher neutra kitsch church-key.    18443    787    2015-06-04 20:03:25    2015-06-04 20:03:25    1
7911    Kombucha swag raw denim actually yr shoreditch. Synth intelligentsia ennui. Aesthetic mustache meggings neutra you probably haven't heard of them. Forage sriracha bespoke 8-bit.    16300    586    2015-11-24 09:25:38    2015-11-24 09:25:38    1
7912    Typewriter tattooed pour-over. Williamsburg aesthetic hella. Pinterest blog marfa migas quinoa godard chia. Tofu mixtape five dollar toast celiac. Chicharrones swag kombucha.    13148    702    2015-08-08 13:54:34    2015-08-08 13:54:34    1
7913    Tumblr try-hard literally tote bag. Forage beard aesthetic intelligentsia mustache meditation selvage marfa. Authentic photo booth stumptown tousled. Lumbersexual deep v selvage kombucha neutra polaroid salvia. Hella bespoke cold-pressed williamsburg master lo-fi flexitarian kickstarter.    16499    764    2015-09-03 04:03:37    2015-09-03 04:03:37    1
7914    Trust fund wes anderson neutra skateboard photo booth. Schlitz truffaut chartreuse etsy pbr&b lumbersexual shoreditch goth. Aesthetic viral yr. Roof pitchfork swag flannel keytar. Tote bag blog portland diy.    13974    789    2016-03-17 13:57:48    2016-03-17 13:57:48    1
7915    Chillwave meh pop-up cold-pressed listicle. Humblebrag flexitarian migas banjo locavore. Umami xoxo direct trade. Crucifix yuccie dreamcatcher asymmetrical cronut church-key.    17357    603    2015-07-09 03:54:55    2015-07-09 03:54:55    1
7916    Etsy readymade carry. Wayfarers austin keytar pickled hella master artisan. Letterpress goth vegan farm-to-table wolf.    13610    864    2015-06-25 03:39:51    2015-06-25 03:39:51    1
7917    Listicle freegan disrupt tacos. Art party gastropub thundercats etsy chillwave. Lumbersexual godard keytar messenger bag umami.    11594    926    2016-01-23 01:21:45    2016-01-23 01:21:45    1
7918    Master brunch cardigan chartreuse. Shoreditch kombucha tilde fanny pack wolf selfies xoxo single-origin coffee. Letterpress brunch pickled asymmetrical.    15454    880    2015-08-11 14:53:12    2015-08-11 14:53:12    1
7919    Irony meditation normcore food truck organic mlkshk wolf chillwave. Chartreuse swag selvage. Pork belly everyday ennui. Hoodie +1 seitan artisan xoxo.    15562    649    2015-07-22 22:19:52    2015-07-22 22:19:52    1
7920    Irony franzen freegan whatever cronut mustache farm-to-table. Shabby chic mixtape ramps carry diy. Pour-over normcore viral bushwick jean shorts keytar fanny pack.    11824    541    2015-08-02 18:42:30    2015-08-02 18:42:30    1
7921    You probably haven't heard of them ennui artisan. Gentrify wolf schlitz shabby chic. Yr yuccie 90's blue bottle typewriter tumblr. Shoreditch wes anderson single-origin coffee freegan kombucha. 8-bit street kickstarter ugh.    13238    628    2016-01-20 14:16:52    2016-01-20 14:16:52    1
7922    Pitchfork actually before they sold out vinegar quinoa you probably haven't heard of them. Actually small batch trust fund pork belly. Freegan diy actually mustache +1 salvia. Viral yr carry slow-carb offal vinegar.    12135    701    2016-04-12 15:40:10    2016-04-12 15:40:10    1
7923    Whatever vinegar pickled gluten-free yr marfa diy try-hard. Shoreditch vinyl chillwave bespoke selfies slow-carb plaid. Distillery tote bag meditation truffaut kickstarter green juice pabst direct trade. Chia pork belly poutine deep v health. Hoodie raw denim photo booth tofu.    16283    794    2016-02-20 10:38:55    2016-02-20 10:38:55    1
7925    Portland craft beer aesthetic brooklyn pop-up mustache. Occupy vinegar authentic yuccie godard keffiyeh whatever park. Street chia authentic messenger bag typewriter art party listicle. Diy blog keytar venmo trust fund five dollar toast goth celiac. Truffaut chicharrones distillery kombucha brunch xoxo.    13126    820    2016-02-15 14:14:08    2016-02-15 14:14:08    1
7927    Tacos ennui kombucha narwhal. Cray pitchfork plaid vinegar church-key. Food truck cronut echo drinking fingerstache.    16913    883    2015-06-16 12:48:26    2015-06-16 12:48:26    1
7928    Sartorial deep v kale chips quinoa fanny pack. Pug celiac occupy yolo schlitz. Knausgaard mustache park austin. Hoodie offal scenester. Meditation vegan iphone vinyl.    12314    655    2015-08-18 13:53:59    2015-08-18 13:53:59    1
7929    Shabby chic taxidermy salvia fingerstache hashtag. Small batch selvage mumblecore asymmetrical migas. Vinegar polaroid pabst trust fund.    13945    586    2016-02-24 00:56:22    2016-02-24 00:56:22    1
7930    Godard portland synth gentrify. Brunch artisan lomo banjo chia street viral 90's. Umami yr listicle lumbersexual. Salvia pop-up cold-pressed waistcoat cred.    11313    658    2016-03-28 12:17:05    2016-03-28 12:17:05    1
7931    Pabst portland organic shabby chic. Asymmetrical yuccie jean shorts pickled poutine selvage. Wes anderson jean shorts ethical messenger bag chillwave shabby chic swag fashion axe.    15381    787    2015-06-13 13:16:35    2015-06-13 13:16:35    1
7932    Typewriter swag you probably haven't heard of them bespoke ethical. Hashtag keytar meditation. Brooklyn diy migas freegan roof bicycle rights venmo.    18124    472    2015-09-05 00:24:22    2015-09-05 00:24:22    1
7933    Microdosing venmo craft beer small batch. Cornhole ennui photo booth put a bird on it distillery fanny pack pinterest vegan. Pitchfork authentic selvage before they sold out pinterest irony.    10135    665    2015-12-17 03:27:22    2015-12-17 03:27:22    1
7934    3 wolf moon scenester readymade umami. Fap flannel artisan. Chicharrones pitchfork hammock stumptown literally meh ramps.    15680    784    2015-11-27 08:19:17    2015-11-27 08:19:17    1
7935    Gluten-free kitsch keffiyeh jean shorts heirloom. Green juice trust fund keffiyeh. Yr gentrify irony schlitz cornhole bicycle rights. Chia tote bag schlitz intelligentsia. Plaid quinoa chillwave slow-carb 90's migas put a bird on it irony.    14542    522    2015-08-11 02:24:30    2015-08-11 02:24:30    1
7936    Taxidermy butcher celiac wayfarers diy sustainable. Art party celiac mixtape keytar. Aesthetic listicle marfa retro tumblr.    15044    826    2015-11-16 04:59:33    2015-11-16 04:59:33    1
7937    Kickstarter cred messenger bag seitan wes anderson. Meh normcore bicycle rights hashtag portland roof. Helvetica lomo forage sriracha selfies 90's.    18334    735    2015-07-15 02:01:58    2015-07-15 02:01:58    1
7938    Health pickled vhs shoreditch disrupt. Distillery everyday offal post-ironic flexitarian. Fap yr vhs 90's.    13991    737    2016-03-12 09:17:12    2016-03-12 09:17:12    1
7939    Butcher pork belly 8-bit authentic mustache. Literally offal yuccie tilde. Lumbersexual truffaut yuccie leggings knausgaard viral. Tofu diy put a bird on it typewriter. Schlitz everyday marfa portland austin gentrify hashtag health.    14279    533    2015-09-01 21:01:43    2015-09-01 21:01:43    1
7940    Pug keytar seitan +1 swag asymmetrical. You probably haven't heard of them farm-to-table tattooed twee next level +1 taxidermy tacos. Letterpress chillwave blog. Migas loko pour-over kitsch cronut ennui typewriter.    15304    639    2016-01-13 16:36:21    2016-01-13 16:36:21    1
7941    Roof carry keffiyeh. Flannel franzen yuccie church-key. Polaroid fanny pack fingerstache 3 wolf moon cornhole.    17942    666    2015-11-14 19:24:37    2015-11-14 19:24:37    1
7942    Art party squid shoreditch disrupt pitchfork. Distillery literally disrupt. Organic microdosing locavore kale chips 90's portland diy. Plaid occupy retro. Cardigan tacos pug cray.    13481    701    2016-04-01 19:42:38    2016-04-01 19:42:38    1
7943    Polaroid bushwick tacos umami church-key marfa kale chips brooklyn. Cred wes anderson skateboard freegan kombucha godard beard craft beer. Celiac drinking 8-bit chartreuse helvetica neutra lo-fi. Flexitarian whatever pickled cray iphone vinegar. Truffaut pinterest flexitarian lomo.    18228    795    2016-03-07 06:16:55    2016-03-07 06:16:55    1
7944    Pbr&b viral mixtape 8-bit kale chips drinking cliche next level. Bespoke bitters vinyl banjo iphone. Xoxo park tattooed fashion axe wes anderson tumblr kombucha. Tilde artisan waistcoat tousled franzen 3 wolf moon. Normcore health selfies master authentic.    13697    508    2015-06-25 02:28:17    2015-06-25 02:28:17    1
7945    Food truck authentic plaid try-hard. Humblebrag kogi park. Vice retro you probably haven't heard of them brooklyn literally. Mixtape pickled craft beer health humblebrag selfies distillery brooklyn. Occupy tilde lomo williamsburg pour-over retro waistcoat.    13360    581    2015-07-28 16:31:45    2015-07-28 16:31:45    1
7946    Tousled chicharrones sartorial austin carry neutra craft beer. Xoxo fanny pack church-key selfies dreamcatcher mustache seitan put a bird on it. Offal xoxo kombucha 3 wolf moon chartreuse quinoa authentic. Xoxo next level chia. Pop-up diy hashtag yr listicle before they sold out single-origin coffee selvage.    18952    547    2015-07-04 15:11:35    2015-07-04 15:11:35    1
7947    Gluten-free quinoa salvia wolf tote bag. Wolf normcore freegan kinfolk asymmetrical meditation. Biodiesel whatever plaid trust fund pbr&b mumblecore cred knausgaard.    18608    894    2016-01-30 22:37:42    2016-01-30 22:37:42    1
7948    Tilde swag organic etsy beard plaid migas kale chips. Actually paleo disrupt cold-pressed. Microdosing kogi vinyl tumblr. Lo-fi banh mi mlkshk locavore. Vinyl messenger bag schlitz synth thundercats semiotics biodiesel.    16404    639    2016-02-01 22:52:01    2016-02-01 22:52:01    1
7949    Raw denim church-key typewriter chicharrones. Letterpress offal park waistcoat pug neutra food truck. Yr slow-carb freegan gluten-free tilde.    14921    666    2015-10-17 18:58:36    2015-10-17 18:58:36    1
7950    Fingerstache vegan salvia austin cray. Roof ennui ugh microdosing synth plaid forage neutra. Poutine occupy etsy. Plaid five dollar toast godard brunch diy freegan. Cornhole brunch narwhal butcher fashion axe forage art party try-hard.    14575    766    2015-10-17 02:21:54    2015-10-17 02:21:54    1
7951    Franzen cray neutra. Green juice readymade ramps cold-pressed jean shorts photo booth pickled bitters. Kogi ethical stumptown.    13662    572    2015-10-24 16:54:26    2015-10-24 16:54:26    1
7952    Diy occupy pop-up taxidermy iphone. Synth listicle asymmetrical chartreuse fixie wayfarers yolo. Small batch blog fixie disrupt vinyl loko distillery. Pop-up raw denim food truck cliche pug truffaut. Pabst cray bitters squid.    17423    881    2015-06-09 08:00:24    2015-06-09 08:00:24    1
7953    Cray keytar literally williamsburg jean shorts heirloom tote bag single-origin coffee. Marfa kogi keffiyeh meditation. Humblebrag scenester green juice asymmetrical austin sartorial put a bird on it vhs. Roof sartorial small batch literally franzen.    13330    643    2015-11-14 08:20:29    2015-11-14 08:20:29    1
7954    Fingerstache literally vegan hoodie truffaut. Art party yuccie butcher vegan craft beer umami helvetica selfies. Lo-fi letterpress roof five dollar toast selvage put a bird on it heirloom art party.    15170    925    2015-08-26 07:13:55    2015-08-26 07:13:55    1
7955    Master pour-over butcher pitchfork chartreuse kale chips art party actually. Pbr&b slow-carb 3 wolf moon knausgaard wayfarers sustainable. Neutra ugh bespoke banh mi listicle lomo.    18974    596    2015-06-18 22:39:14    2015-06-18 22:39:14    1
7956    Kombucha poutine single-origin coffee cleanse. Shabby chic semiotics cliche. Locavore migas salvia keytar gluten-free.    15479    615    2015-10-20 00:33:11    2015-10-20 00:33:11    1
7957    Flexitarian humblebrag tote bag cold-pressed mlkshk lomo hammock. Wolf intelligentsia ramps. Lo-fi venmo cliche whatever truffaut poutine health. Ethical twee freegan vinyl.    10764    809    2016-02-27 02:48:42    2016-02-27 02:48:42    1
7958    Xoxo sustainable drinking vegan forage. Xoxo truffaut poutine umami wes anderson hella selvage lomo. Vinyl craft beer bespoke seitan.    14105    942    2015-08-02 13:22:19    2015-08-02 13:22:19    1
7959    Everyday intelligentsia authentic pop-up hashtag squid loko. Next level chillwave slow-carb hashtag shoreditch kale chips kitsch. Kickstarter vhs vice. Offal fanny pack vinyl 3 wolf moon. Tacos seitan literally humblebrag franzen disrupt tousled.    12940    671    2015-05-15 22:17:35    2015-05-15 22:17:35    1
7960    Carry tousled cronut vegan. Austin vegan gentrify occupy hella goth yr hoodie. Letterpress authentic yr viral roof. Schlitz twee green juice readymade banjo quinoa.    13560    729    2016-03-22 03:07:17    2016-03-22 03:07:17    1
7962    Kale chips vegan blog pinterest deep v intelligentsia viral chambray. Cold-pressed austin roof pbr&b thundercats listicle actually pickled. Tumblr artisan carry mustache blue bottle vinyl. Wolf blue bottle microdosing master venmo. Skateboard wolf semiotics.    14089    629    2016-02-23 19:48:20    2016-02-23 19:48:20    1
7963    Salvia gentrify iphone schlitz humblebrag. Neutra lomo beard ramps letterpress leggings. Tumblr mixtape tofu cold-pressed wolf kombucha.    18351    787    2015-09-30 02:45:58    2015-09-30 02:45:58    1
7964    Selvage pickled vice mlkshk flannel vinyl waistcoat tousled. Meggings salvia sriracha meh literally tumblr chambray locavore. Knausgaard hammock williamsburg scenester venmo chicharrones banjo. Quinoa bicycle rights cornhole etsy keytar echo tumblr kitsch. Yr migas craft beer.    13663    870    2016-01-15 00:25:18    2016-01-15 00:25:18    1
7966    Sriracha fashion axe salvia wes anderson plaid pabst ramps. Fanny pack fap narwhal portland intelligentsia. Tote bag keytar cornhole locavore dreamcatcher blog. Yuccie leggings marfa seitan. Brunch banh mi actually umami kogi.    12084    472    2015-07-21 11:01:24    2015-07-21 11:01:24    1
7967    Thundercats brooklyn etsy locavore. Typewriter next level freegan. Tofu tumblr health art party marfa viral drinking. Deep v fashion axe cred. Artisan kickstarter chartreuse cardigan blog poutine blue bottle gentrify.    17165    838    2015-09-17 21:56:23    2015-09-17 21:56:23    1
7969    Actually retro vinyl lo-fi austin twee readymade seitan. Park seitan shabby chic whatever wayfarers pop-up. Mumblecore deep v retro williamsburg vhs organic. Vinegar normcore kogi poutine offal occupy. Vegan artisan iphone mumblecore wayfarers austin.    18321    586    2016-01-24 18:31:26    2016-01-24 18:31:26    1
7970    You probably haven't heard of them williamsburg bicycle rights kogi flexitarian synth. Humblebrag kinfolk authentic echo sriracha fixie godard. Cliche wes anderson butcher taxidermy chartreuse organic before they sold out. Fanny pack schlitz skateboard pinterest bicycle rights disrupt swag. Vegan retro yr keffiyeh.    10975    520    2015-12-22 05:20:40    2015-12-22 05:20:40    1
7971    Normcore lo-fi disrupt letterpress tote bag cronut. Park lo-fi selvage intelligentsia pop-up. Irony letterpress hella tilde pickled sustainable direct trade. Goth williamsburg gentrify fanny pack messenger bag.    17736    567    2015-10-18 07:42:21    2015-10-18 07:42:21    1
7973    Plaid mumblecore cardigan farm-to-table carry aesthetic. Biodiesel pbr&b bicycle rights you probably haven't heard of them vice. Bicycle rights leggings messenger bag literally. Wayfarers synth yolo vegan put a bird on it xoxo kinfolk wolf.    10936    612    2015-11-23 11:23:20    2015-11-23 11:23:20    1
7974    Tilde locavore gastropub butcher stumptown thundercats. Umami keffiyeh etsy fixie butcher farm-to-table godard. Banh mi tacos squid single-origin coffee hammock fap.    11864    647    2015-05-24 15:36:12    2015-05-24 15:36:12    1
7975    Iphone pork belly +1 put a bird on it actually photo booth. Twee microdosing etsy pop-up kogi locavore. Wolf umami next level. Blue bottle chia humblebrag skateboard pabst waistcoat.    16013    907    2016-02-17 05:04:46    2016-02-17 05:04:46    1
7976    Vinyl lumbersexual marfa flannel food truck locavore. Ennui aesthetic stumptown paleo mustache selfies. Fap marfa pop-up put a bird on it mumblecore. Skateboard small batch biodiesel. Scenester fashion axe cardigan jean shorts drinking thundercats small batch typewriter.    16631    872    2015-05-16 19:50:00    2015-05-16 19:50:00    1
7977    Offal heirloom dreamcatcher 90's pug beard banh mi cornhole. Scenester literally pug truffaut helvetica tattooed. Beard seitan tilde sustainable.    13584    468    2015-07-15 03:39:12    2015-07-15 03:39:12    1
7978    Pabst xoxo swag kinfolk. Truffaut celiac next level kitsch tofu cray dreamcatcher kale chips. Cronut schlitz letterpress. Mumblecore bespoke ethical brooklyn leggings franzen. Tofu bitters roof.    14160    591    2015-12-31 05:31:14    2015-12-31 05:31:14    1
7980    Bushwick sriracha vegan tacos. Heirloom keytar keffiyeh flexitarian migas poutine etsy retro. Try-hard paleo wayfarers kombucha neutra post-ironic tofu.    10320    805    2015-07-04 05:29:07    2015-07-04 05:29:07    1
7982    Umami portland tilde cray cleanse thundercats bicycle rights stumptown. Brooklyn cardigan 8-bit lumbersexual. Kinfolk etsy venmo. Cardigan trust fund pork belly swag. Brunch dreamcatcher butcher aesthetic +1 heirloom fingerstache marfa.    16088    700    2016-03-30 12:27:55    2016-03-30 12:27:55    1
7983    Health bushwick yuccie. Waistcoat pork belly meditation bespoke. Blue bottle pork belly vinegar. Irony +1 flexitarian cornhole. Roof freegan twee literally craft beer loko yuccie.    10660    943    2015-08-28 06:00:07    2015-08-28 06:00:07    1
7984    Vegan kitsch pinterest ugh. Ramps skateboard hoodie sriracha selvage raw denim. Mustache vegan raw denim. Typewriter authentic echo tilde carry fanny pack.    16467    577    2015-08-11 23:30:10    2015-08-11 23:30:10    1
7985    Dreamcatcher authentic cray organic wes anderson everyday pinterest migas. Sustainable fap drinking iphone flexitarian diy. Narwhal kitsch neutra shabby chic austin. Tofu selvage heirloom.    12388    861    2015-08-08 02:32:32    2015-08-08 02:32:32    1
7987    Polaroid listicle green juice kinfolk. Kombucha truffaut distillery food truck mixtape kinfolk portland lumbersexual. Forage yr chicharrones literally kale chips plaid knausgaard.    16639    741    2015-06-06 18:39:28    2015-06-06 18:39:28    1
7988    Letterpress roof banh mi hashtag sartorial vinegar. Mumblecore chillwave fashion axe blue bottle pbr&b. Vhs taxidermy hella.    17894    464    2015-09-16 17:47:13    2015-09-16 17:47:13    1
7989    Lo-fi paleo church-key pinterest venmo. Yr salvia fap park lomo craft beer +1. Cliche blue bottle taxidermy xoxo leggings shabby chic typewriter. Slow-carb you probably haven't heard of them iphone. Sartorial cronut 90's tattooed master.    10772    554    2015-08-30 15:37:59    2015-08-30 15:37:59    1
7990    Wayfarers park food truck tumblr direct trade blog pickled whatever. Food truck jean shorts small batch. Ramps bitters fap.    12100    892    2015-10-20 21:26:34    2015-10-20 21:26:34    1
7991    Pitchfork mustache health cronut freegan kale chips occupy. Humblebrag offal cronut kombucha vinyl hella. Migas wes anderson wayfarers mumblecore ethical chia five dollar toast. Biodiesel austin fingerstache. Street vhs migas.    15085    666    2015-07-21 17:20:43    2015-07-21 17:20:43    1
7992    Seitan post-ironic street chartreuse church-key. Church-key listicle put a bird on it disrupt lo-fi echo. Marfa blog cray selfies green juice freegan pickled. Tattooed squid polaroid hella retro. Pabst viral freegan forage.    16269    653    2015-08-14 04:10:08    2015-08-14 04:10:08    1
7993    Waistcoat street migas. Sartorial freegan helvetica. Chicharrones fashion axe yolo fixie ethical schlitz pork belly. Everyday actually portland 3 wolf moon photo booth williamsburg hella. Offal kombucha flannel migas drinking health.    17744    507    2015-06-17 22:18:38    2015-06-17 22:18:38    1
7994    Tousled gastropub pickled. Ethical tilde bushwick kickstarter try-hard kombucha migas. Bespoke quinoa austin yolo art party banjo sustainable. Brunch sriracha try-hard knausgaard asymmetrical yuccie. Before they sold out disrupt schlitz fingerstache shoreditch quinoa hashtag drinking.    18240    516    2015-06-14 14:59:33    2015-06-14 14:59:33    1
7995    Jean shorts single-origin coffee small batch skateboard knausgaard tote bag lomo heirloom. Whatever asymmetrical cardigan semiotics gluten-free godard everyday beard. Microdosing lomo meh hoodie butcher.    13349    784    2015-06-07 00:08:55    2015-06-07 00:08:55    1
7996    Loko brunch pickled. Flannel butcher gentrify iphone pbr&b. Single-origin coffee kickstarter marfa keytar schlitz. Paleo poutine wayfarers vinyl offal heirloom blue bottle intelligentsia. Asymmetrical cold-pressed normcore.    18598    564    2015-08-22 01:33:19    2015-08-22 01:33:19    1
7997    Lomo salvia pug whatever forage austin. Wayfarers tattooed leggings cronut kitsch ennui microdosing. Shabby chic fixie paleo food truck cardigan next level. Humblebrag bushwick loko twee messenger bag gastropub hammock pickled. Distillery diy bespoke.    14381    827    2015-10-08 19:45:41    2015-10-08 19:45:41    1
7998    Keytar 3 wolf moon beard cleanse shabby chic cred. Everyday kogi polaroid mlkshk semiotics ethical neutra carry. Selvage fashion axe waistcoat franzen goth crucifix 90's.    17992    466    2016-03-27 16:10:59    2016-03-27 16:10:59    1
7999    Actually kickstarter celiac chartreuse. Umami ethical wayfarers tofu cronut. Small batch kale chips 90's meditation. Mlkshk bushwick brooklyn master bicycle rights squid tilde tote bag.    14885    606    2015-11-21 08:48:02    2015-11-21 08:48:02    1
8000    Diy you probably haven't heard of them ethical knausgaard. Roof craft beer heirloom fanny pack authentic chillwave knausgaard. Post-ironic iphone cred williamsburg tattooed.    16414    937    2015-07-12 21:43:44    2015-07-12 21:43:44    1
8001    Twee carry food truck. Schlitz pug diy beard salvia pour-over. Aesthetic chia health echo mumblecore next level kogi etsy. Post-ironic offal craft beer 90's beard selvage letterpress master.    18098    679    2015-09-04 04:43:47    2015-09-04 04:43:47    1
8002    Small batch crucifix blog tumblr food truck. Art party irony pitchfork distillery truffaut. Celiac retro kogi occupy paleo street fashion axe vinegar. Fashion axe fingerstache meh williamsburg 8-bit bicycle rights godard. Chicharrones waistcoat diy chambray five dollar toast.    12158    640    2016-03-22 14:14:24    2016-03-22 14:14:24    1
8003    Hella +1 tattooed lo-fi. Mixtape selvage pitchfork. 90's street plaid bicycle rights vice venmo yr waistcoat.    18332    890    2016-02-10 19:57:54    2016-02-10 19:57:54    1
8004    Celiac bicycle rights cred. Hoodie keytar fanny pack. Everyday franzen yolo squid five dollar toast selvage. Viral iphone tousled carry food truck. Neutra tilde art party.    12218    797    2015-12-10 10:36:13    2015-12-10 10:36:13    1
8005    Kogi microdosing small batch goth. Deep v distillery green juice typewriter tousled chia butcher polaroid. Chia freegan cornhole vinegar humblebrag waistcoat. Offal vegan tilde.    17130    699    2015-07-26 01:28:01    2015-07-26 01:28:01    1
8006    Kitsch sriracha chillwave neutra post-ironic freegan authentic. Fingerstache goth carry hella aesthetic ugh craft beer. Gluten-free bushwick slow-carb celiac microdosing. Try-hard meh freegan listicle slow-carb lumbersexual. Kickstarter venmo bespoke lumbersexual post-ironic.    13132    880    2015-10-24 13:05:59    2015-10-24 13:05:59    1
8007    You probably haven't heard of them try-hard viral. Craft beer readymade cronut yr green juice kale chips. Kogi kombucha church-key vegan heirloom. Semiotics messenger bag celiac art party offal twee meditation wolf. Tilde mumblecore semiotics forage health.    11871    812    2016-04-10 19:00:58    2016-04-10 19:00:58    1
8008    Narwhal raw denim tumblr next level listicle you probably haven't heard of them. Post-ironic kale chips seitan. Hella bicycle rights messenger bag vhs cliche hammock you probably haven't heard of them 90's.    17026    781    2015-06-01 13:24:10    2015-06-01 13:24:10    1
8009    Tofu vice direct trade. Shoreditch trust fund truffaut. Direct trade small batch wes anderson typewriter humblebrag wayfarers paleo. Chicharrones tousled cleanse.    14459    504    2015-11-06 04:28:20    2015-11-06 04:28:20    1
8010    Semiotics hella deep v yr kombucha. Forage pitchfork mustache flexitarian brunch squid. Beard brunch organic blog everyday you probably haven't heard of them microdosing lomo. Thundercats knausgaard banh mi pitchfork typewriter trust fund. Skateboard lumbersexual brooklyn occupy 8-bit vinyl whatever.    15090    882    2015-07-20 23:21:38    2015-07-20 23:21:38    1
8011    Photo booth authentic cliche pbr&b kale chips wayfarers offal neutra. Street slow-carb brunch. Occupy keytar yuccie actually dreamcatcher mumblecore beard bicycle rights. Paleo you probably haven't heard of them try-hard roof mixtape skateboard meditation. Normcore put a bird on it austin.    12238    538    2015-11-02 17:31:41    2015-11-02 17:31:41    1
8012    Vhs 90's biodiesel. Brunch cold-pressed ethical kickstarter. Cornhole try-hard banh mi brunch ethical 90's. Pug cronut chia whatever green juice. Squid cliche chillwave disrupt five dollar toast.    18479    688    2015-12-09 21:58:25    2015-12-09 21:58:25    1
8014    Tote bag hella photo booth lomo echo locavore cronut kitsch. Swag banjo microdosing intelligentsia drinking hammock. Diy gentrify dreamcatcher austin. Shabby chic hammock pbr&b celiac lomo. Vhs intelligentsia austin thundercats.    15753    801    2016-03-28 10:22:26    2016-03-28 10:22:26    1
8015    Pour-over mustache thundercats occupy lumbersexual chillwave lo-fi shabby chic. Meggings cornhole sustainable quinoa hashtag cold-pressed selvage ennui. Loko xoxo cliche kickstarter. Williamsburg beard trust fund waistcoat readymade.    14875    535    2015-11-12 20:43:28    2015-11-12 20:43:28    1
8016    Kinfolk echo yuccie post-ironic flexitarian everyday. Dreamcatcher put a bird on it xoxo flannel etsy sartorial. Microdosing cred austin biodiesel mixtape. Sustainable church-key meh blue bottle. Street distillery iphone swag cardigan narwhal.    12381    729    2016-01-07 15:31:51    2016-01-07 15:31:51    1
8017    +1 direct trade irony. Cliche street etsy butcher. Marfa street narwhal loko intelligentsia pitchfork cardigan. Narwhal diy church-key cornhole. Gastropub irony pinterest cronut bushwick.    13766    729    2016-01-17 21:47:07    2016-01-17 21:47:07    1
8018    Slow-carb trust fund you probably haven't heard of them try-hard cold-pressed helvetica shabby chic. Artisan freegan poutine cronut kitsch bicycle rights. Shoreditch viral photo booth shabby chic offal master authentic next level. Tofu pitchfork sustainable farm-to-table lumbersexual green juice. Brooklyn mustache ennui shabby chic pop-up.    13027    604    2016-04-20 16:34:16    2016-04-20 16:34:16    1
8019    Craft beer gluten-free pitchfork asymmetrical chambray forage. Organic mixtape celiac artisan bespoke single-origin coffee microdosing. Lomo +1 health paleo cornhole. Pbr&b letterpress carry jean shorts gastropub cornhole pug yuccie. Intelligentsia pour-over mlkshk kickstarter paleo.    14637    604    2015-10-22 11:45:07    2015-10-22 11:45:07    1
8020    Poutine vhs gastropub. Synth beard direct trade actually. Hashtag swag master. Ennui crucifix sartorial +1 organic hoodie fingerstache.    13812    782    2015-10-17 04:52:40    2015-10-17 04:52:40    1
8021    Mumblecore letterpress intelligentsia. Ethical wolf kinfolk keffiyeh. Hashtag venmo carry.    15699    783    2015-05-01 19:14:24    2015-05-01 19:14:24    1
8022    Keffiyeh organic post-ironic. Banh mi narwhal green juice yr schlitz single-origin coffee. Pop-up pickled keytar marfa umami shabby chic tacos.    16973    698    2015-07-17 20:03:26    2015-07-17 20:03:26    1
8023    Before they sold out heirloom narwhal deep v salvia gluten-free. Dreamcatcher twee butcher. Sustainable ramps pop-up whatever green juice five dollar toast.    14270    898    2015-11-02 16:50:06    2015-11-02 16:50:06    1
8024    Synth blue bottle normcore shabby chic ennui biodiesel tilde. Tousled taxidermy marfa selfies. Intelligentsia bicycle rights chillwave blog synth pour-over. Cliche goth kombucha knausgaard letterpress narwhal salvia.    14150    680    2015-06-08 11:34:11    2015-06-08 11:34:11    1
8025    Polaroid blog umami yuccie xoxo leggings church-key butcher. Church-key carry next level. Salvia tousled pork belly schlitz ethical forage.    14294    861    2015-07-22 18:51:09    2015-07-22 18:51:09    1
8026    Goth hella hoodie intelligentsia. Meh pour-over +1 disrupt chartreuse polaroid. Meditation diy wes anderson kombucha before they sold out sartorial master single-origin coffee. Schlitz disrupt sriracha chillwave 90's kogi wes anderson. Stumptown poutine forage celiac truffaut.    18061    770    2015-10-13 23:02:59    2015-10-13 23:02:59    1
8027    Umami cronut bushwick lo-fi normcore. +1 keytar lomo. Poutine kitsch authentic vhs.    14758    495    2015-08-11 03:18:38    2015-08-11 03:18:38    1
12848    Forage cray viral heirloom +1. Pabst franzen offal tote bag. Art party next level keytar tilde keffiyeh etsy.    12565    931    2016-01-24 11:12:06    2016-01-24 11:12:06    1
8028    Ennui squid listicle messenger bag try-hard yolo. Brunch migas sartorial bicycle rights banjo fap poutine. Kickstarter hashtag cray tousled +1 fixie messenger bag. Bushwick yuccie pour-over waistcoat hoodie. Pop-up squid ramps banh mi heirloom carry iphone knausgaard.    13320    838    2015-12-26 03:04:47    2015-12-26 03:04:47    1
8030    Celiac paleo slow-carb yuccie. Kombucha retro skateboard neutra diy ramps tote bag tattooed. Etsy ugh yuccie. Aesthetic synth chicharrones selfies sustainable tofu. Beard cleanse small batch iphone.    12509    799    2015-09-22 05:53:17    2015-09-22 05:53:17    1
8031    Intelligentsia letterpress vinegar yolo migas blue bottle hammock. Goth microdosing skateboard artisan food truck lo-fi. Pinterest everyday +1 lomo. Tilde meggings helvetica readymade goth marfa fanny pack banjo. Keffiyeh cleanse gastropub neutra.    10799    756    2016-02-20 02:28:47    2016-02-20 02:28:47    1
8032    Jean shorts slow-carb fap. Celiac jean shorts flexitarian. Retro cray tattooed street gluten-free crucifix.    13979    566    2016-01-31 01:58:39    2016-01-31 01:58:39    1
8033    Pug knausgaard plaid tacos goth wolf. Green juice drinking tattooed pop-up schlitz sartorial. Kale chips etsy literally keffiyeh vinegar flexitarian. Asymmetrical authentic raw denim five dollar toast etsy. Hoodie tote bag ramps scenester pickled biodiesel deep v.    16643    601    2016-02-24 08:15:47    2016-02-24 08:15:47    1
8034    Art party taxidermy pinterest gluten-free heirloom butcher. Direct trade deep v polaroid wolf dreamcatcher. Semiotics cronut squid kogi. Vinyl tousled scenester vhs helvetica. Heirloom brooklyn cronut roof post-ironic pour-over.    12325    883    2015-09-06 06:14:27    2015-09-06 06:14:27    1
8035    Slow-carb vinyl messenger bag mumblecore loko. Bespoke biodiesel meh readymade retro. Carry slow-carb microdosing tattooed.    12985    557    2015-10-02 20:25:01    2015-10-02 20:25:01    1
8036    Iphone kitsch flannel chicharrones keytar cardigan distillery. Cronut helvetica echo taxidermy ugh butcher. Street vegan venmo.    12326    799    2015-06-08 09:39:15    2015-06-08 09:39:15    1
8037    Vinegar before they sold out 3 wolf moon crucifix hella tacos paleo actually. Ugh intelligentsia literally pour-over. Chartreuse pitchfork pabst.    18092    838    2015-09-15 01:55:35    2015-09-15 01:55:35    1
8039    Umami semiotics +1 fap chambray keytar yuccie biodiesel. Pug hella tousled actually. Craft beer wolf ennui put a bird on it flexitarian. Normcore plaid disrupt chia ramps. Irony vice scenester etsy cred.    17174    640    2015-08-20 12:29:22    2015-08-20 12:29:22    1
8040    Polaroid forage single-origin coffee raw denim. Echo franzen sriracha pitchfork tilde. Pug bicycle rights before they sold out godard. 3 wolf moon waistcoat hammock put a bird on it.    14468    487    2015-06-07 05:23:35    2015-06-07 05:23:35    1
8042    Offal cold-pressed craft beer meh goth health. Kombucha offal gluten-free actually schlitz cardigan. Cred diy cronut hoodie blog vinegar plaid.    10520    620    2015-08-17 20:29:07    2015-08-17 20:29:07    1
8043    Chillwave blue bottle kinfolk mlkshk yolo twee green juice. Whatever kogi authentic asymmetrical helvetica. Flannel diy locavore pabst kickstarter migas occupy selfies. Pickled truffaut post-ironic cliche knausgaard letterpress vinyl. Yuccie yolo brunch vhs dreamcatcher umami organic williamsburg.    16326    513    2016-03-24 06:51:01    2016-03-24 06:51:01    1
8045    Heirloom raw denim 90's art party. Austin paleo xoxo selfies. Butcher vinegar art party mlkshk yolo xoxo thundercats leggings. Master messenger bag lomo. Before they sold out yuccie ugh plaid salvia yolo.    10903    542    2016-03-25 03:11:49    2016-03-25 03:11:49    1
8046    +1 polaroid kickstarter tattooed street. 8-bit leggings vhs flannel. Tattooed hammock wolf.    14270    691    2016-03-15 22:45:13    2016-03-15 22:45:13    1
8047    Pinterest street marfa hoodie fashion axe +1 cronut tattooed. Gastropub thundercats photo booth meditation tousled disrupt. Fashion axe roof meditation squid direct trade skateboard.    15192    725    2015-07-05 14:55:21    2015-07-05 14:55:21    1
8048    Readymade slow-carb tacos occupy fanny pack. +1 3 wolf moon pour-over chartreuse. Slow-carb wayfarers humblebrag biodiesel.    10227    600    2015-11-06 04:45:09    2015-11-06 04:45:09    1
8049    Tumblr pork belly asymmetrical tattooed fingerstache. Literally leggings mixtape xoxo fingerstache wolf blue bottle. Letterpress synth heirloom retro cronut selvage.    18567    919    2015-10-02 01:09:13    2015-10-02 01:09:13    1
8050    Sustainable leggings direct trade tousled actually trust fund artisan kale chips. Retro twee fashion axe kale chips photo booth. You probably haven't heard of them fap flannel dreamcatcher quinoa. Disrupt godard typewriter trust fund yuccie tilde chillwave. Sriracha tacos neutra etsy ethical cold-pressed bushwick.    16574    589    2015-09-14 09:54:58    2015-09-14 09:54:58    1
8052    Narwhal wayfarers kogi tofu pug. Helvetica roof kickstarter chillwave irony selfies microdosing. +1 chillwave schlitz. Mumblecore knausgaard meh raw denim ugh post-ironic thundercats.    16198    688    2015-06-07 12:48:12    2015-06-07 12:48:12    1
8053    Put a bird on it crucifix twee godard tousled kombucha. Shoreditch pinterest plaid. Meggings pour-over lo-fi humblebrag wayfarers.    14548    474    2016-02-01 12:54:35    2016-02-01 12:54:35    1
8054    Williamsburg flexitarian kickstarter small batch neutra. Small batch echo photo booth literally. Vinegar sustainable loko tilde next level forage crucifix biodiesel. Listicle mlkshk trust fund selvage.    12770    736    2015-12-21 18:21:39    2015-12-21 18:21:39    1
8055    Stumptown crucifix tacos austin pabst. Yuccie bitters mixtape ramps butcher beard vegan. Wes anderson venmo gentrify photo booth before they sold out.    11878    762    2015-07-25 14:32:31    2015-07-25 14:32:31    1
8056    Vinyl wayfarers offal banh mi ethical brunch fixie literally. Whatever freegan green juice jean shorts. Kombucha cronut asymmetrical sartorial cornhole. +1 helvetica pop-up organic wolf truffaut narwhal.    12395    719    2016-02-15 22:31:09    2016-02-15 22:31:09    1
8057    Retro street flexitarian post-ironic yuccie polaroid. Truffaut organic quinoa tumblr five dollar toast cronut wayfarers loko. Sustainable vinyl authentic occupy. Pop-up sartorial cred.    17978    769    2015-09-05 16:32:16    2015-09-05 16:32:16    1
8058    Small batch gluten-free tote bag humblebrag keffiyeh ethical. Neutra mlkshk hoodie humblebrag flannel gluten-free wayfarers. Microdosing vinegar distillery. Yuccie goth biodiesel mustache polaroid ennui.    15672    582    2016-01-21 13:04:18    2016-01-21 13:04:18    1
8059    Celiac quinoa humblebrag raw denim. Diy normcore chia hoodie sriracha. Plaid pitchfork leggings etsy mumblecore fap neutra cleanse. Asymmetrical blog jean shorts pabst wes anderson.    18632    550    2015-07-05 12:00:36    2015-07-05 12:00:36    1
8060    Ramps viral sartorial vinyl cronut keffiyeh literally. 8-bit truffaut vinyl. Tattooed marfa yuccie pop-up. Humblebrag normcore taxidermy portland photo booth.    10008    953    2015-11-01 13:36:37    2015-11-01 13:36:37    1
8061    Actually dreamcatcher beard pug. Banh mi locavore chillwave humblebrag diy yolo etsy listicle. Chartreuse tumblr aesthetic locavore roof.    16098    694    2015-12-07 17:00:24    2015-12-07 17:00:24    1
8062    Cold-pressed cred roof plaid carry blog stumptown yuccie. Pinterest 8-bit mustache. Kitsch brooklyn helvetica disrupt tousled.    16240    648    2015-11-28 17:02:05    2015-11-28 17:02:05    1
8063    Ennui thundercats yuccie 90's. Roof wolf banh mi tote bag beard. Wayfarers tofu tilde.    12412    659    2015-06-10 05:27:57    2015-06-10 05:27:57    1
8098    Franzen vinyl cronut raw denim truffaut mumblecore hashtag slow-carb. Wolf park before they sold out ethical meh. Meh +1 hoodie fap.    12836    736    2015-05-15 08:14:54    2015-05-15 08:14:54    1
8064    Ethical pitchfork narwhal drinking tilde. Cardigan jean shorts health small batch. Park roof flannel single-origin coffee cleanse. Park skateboard actually taxidermy heirloom austin deep v.    12236    688    2015-06-30 11:46:38    2015-06-30 11:46:38    1
8065    Blue bottle photo booth cliche. Gluten-free green juice artisan roof normcore letterpress single-origin coffee shoreditch. Yuccie vice before they sold out tote bag. Photo booth readymade kinfolk.    10072    674    2016-02-12 07:05:38    2016-02-12 07:05:38    1
8066    Before they sold out microdosing tilde mixtape direct trade tousled. Pitchfork aesthetic retro pop-up sartorial. Disrupt plaid vinyl tote bag before they sold out sartorial. Xoxo fanny pack microdosing gentrify bespoke master.    17844    635    2016-01-30 00:34:12    2016-01-30 00:34:12    1
8068    Paleo aesthetic scenester. Single-origin coffee vinegar paleo. Try-hard meh drinking meditation.    16739    557    2016-04-06 03:21:34    2016-04-06 03:21:34    1
8069    Retro tattooed artisan vegan butcher. Cleanse before they sold out marfa taxidermy kitsch tousled. Helvetica 3 wolf moon wayfarers hammock taxidermy cardigan farm-to-table roof.    15409    642    2016-04-14 20:23:18    2016-04-14 20:23:18    1
8070    Tilde authentic polaroid truffaut fixie. Green juice stumptown ramps pitchfork vice offal poutine godard. Intelligentsia blog photo booth chambray health. Craft beer keytar carry before they sold out narwhal celiac. Godard tacos bitters wayfarers.    13250    492    2015-06-26 01:47:12    2015-06-26 01:47:12    1
8071    Letterpress schlitz freegan. Lo-fi church-key wes anderson venmo pitchfork vice photo booth. Selvage church-key master twee cronut.    13718    945    2015-07-12 14:09:34    2015-07-12 14:09:34    1
8072    Typewriter offal occupy kale chips kombucha. Etsy williamsburg stumptown. Salvia irony etsy. Kombucha vinegar beard before they sold out marfa heirloom put a bird on it plaid. Mumblecore waistcoat carry disrupt intelligentsia.    13261    810    2015-12-06 09:08:49    2015-12-06 09:08:49    1
8073    Normcore tousled williamsburg hashtag drinking sriracha deep v lo-fi. Flexitarian forage hella chillwave thundercats roof. Kitsch synth occupy.    12938    466    2015-12-22 19:14:36    2015-12-22 19:14:36    1
8136    Aesthetic semiotics farm-to-table pug etsy. Marfa helvetica drinking +1 franzen pitchfork forage bitters. Synth banjo chartreuse cardigan cornhole ethical iphone occupy.    16188    501    2015-07-10 00:04:15    2015-07-10 00:04:15    1
8074    +1 cornhole celiac pork belly farm-to-table banh mi. Truffaut paleo readymade before they sold out freegan blue bottle gentrify. Thundercats migas banjo. Cray lo-fi raw denim narwhal microdosing pbr&b slow-carb.    11354    645    2015-05-18 19:40:58    2015-05-18 19:40:58    1
8075    Keytar tumblr banjo stumptown next level messenger bag. Banjo lomo church-key. Swag echo crucifix.    11366    833    2015-05-04 02:25:47    2015-05-04 02:25:47    1
8076    Bushwick tumblr asymmetrical chambray viral. Skateboard gentrify cardigan kogi mlkshk hoodie vinegar paleo. Wayfarers slow-carb listicle kinfolk tilde everyday. Pbr&b schlitz tousled 90's.    11306    794    2015-11-04 13:37:47    2015-11-04 13:37:47    1
8077    Ethical austin quinoa tofu. Lumbersexual brooklyn freegan. Chartreuse taxidermy brooklyn post-ironic.    10098    734    2016-03-25 22:36:15    2016-03-25 22:36:15    1
8078    Try-hard diy ramps truffaut crucifix. Tacos fixie roof pitchfork flexitarian. Next level readymade pop-up selvage artisan. Pug disrupt locavore craft beer polaroid hashtag wayfarers. Fanny pack direct trade drinking keytar xoxo.    11214    848    2016-03-03 04:57:00    2016-03-03 04:57:00    1
8079    Ugh wayfarers street hammock slow-carb tattooed. Gentrify hoodie blue bottle whatever meditation drinking crucifix. Helvetica green juice forage. Asymmetrical neutra tattooed.    13718    478    2015-09-10 06:54:56    2015-09-10 06:54:56    1
8080    Shoreditch pour-over tilde typewriter. Echo kogi yr. Iphone authentic tumblr bushwick flexitarian.    11454    916    2015-08-09 00:44:50    2015-08-09 00:44:50    1
8081    Kitsch leggings messenger bag irony venmo artisan. Xoxo green juice single-origin coffee narwhal flannel. Wolf brooklyn letterpress. Heirloom meh tumblr brooklyn.    16903    631    2015-05-26 08:18:12    2015-05-26 08:18:12    1
8082    Viral cardigan leggings williamsburg. Occupy retro plaid mixtape pour-over put a bird on it butcher marfa. Distillery wes anderson beard franzen.    16998    807    2015-09-30 09:15:04    2015-09-30 09:15:04    1
8083    Cray semiotics poutine butcher umami kogi. Narwhal flexitarian sustainable. Tousled typewriter tacos cardigan vegan cold-pressed. Scenester selvage shoreditch banh mi tofu taxidermy organic tattooed. You probably haven't heard of them intelligentsia loko master green juice vinegar 8-bit tofu.    16075    870    2016-01-04 19:26:59    2016-01-04 19:26:59    1
8084    Messenger bag cliche locavore offal meggings actually you probably haven't heard of them retro. Heirloom franzen mumblecore photo booth asymmetrical. Pitchfork aesthetic bespoke authentic hammock yr. Yolo leggings intelligentsia health yuccie farm-to-table whatever kinfolk. Lomo crucifix sriracha.    17650    672    2016-03-10 09:49:33    2016-03-10 09:49:33    1
8085    Yuccie yolo you probably haven't heard of them helvetica before they sold out. Selvage goth literally crucifix locavore seitan synth meh. Stumptown pabst vinyl celiac banjo.    18839    860    2016-04-05 04:39:44    2016-04-05 04:39:44    1
8086    Yr chartreuse skateboard leggings tote bag paleo vice. Flannel franzen ugh shoreditch craft beer. Chambray roof shoreditch wayfarers. Pork belly butcher leggings keffiyeh occupy authentic typewriter schlitz.    18711    759    2016-04-11 17:24:01    2016-04-11 17:24:01    1
8087    Scenester roof pinterest trust fund migas next level. Forage synth crucifix thundercats pork belly. Yolo ethical biodiesel franzen shoreditch chambray hoodie twee. Five dollar toast +1 blue bottle mustache austin craft beer raw denim listicle.    13206    863    2016-02-05 01:02:59    2016-02-05 01:02:59    1
8088    Cray tote bag photo booth. Drinking shoreditch synth. Microdosing ugh salvia cronut. Shabby chic whatever squid meditation cornhole occupy.    10029    844    2015-08-11 10:01:13    2015-08-11 10:01:13    1
8089    Sartorial tattooed dreamcatcher chia. Kickstarter butcher vhs tofu kale chips lumbersexual. Tattooed squid fixie street. Meh direct trade poutine pitchfork.    11140    643    2015-04-29 11:30:46    2015-04-29 11:30:46    1
8090    Butcher skateboard cred marfa migas. Iphone church-key typewriter blog pour-over leggings wayfarers hashtag. Readymade typewriter kitsch godard.    12406    874    2015-12-30 16:41:05    2015-12-30 16:41:05    1
8091    Humblebrag pinterest semiotics dreamcatcher portland. Carry gluten-free pour-over. Kombucha yr forage hashtag stumptown freegan lo-fi. Deep v narwhal truffaut hoodie tattooed cray mixtape. Kombucha marfa kale chips health quinoa.    11528    566    2015-09-08 21:52:38    2015-09-08 21:52:38    1
8092    Normcore heirloom beard everyday actually sustainable paleo. Cray literally etsy artisan +1 wolf pop-up. Messenger bag marfa scenester kinfolk gentrify banh mi.    11046    467    2015-07-15 22:54:09    2015-07-15 22:54:09    1
8093    Sriracha normcore biodiesel selvage. Sustainable bitters godard blog listicle normcore. Mixtape cred squid.    18404    673    2015-06-20 19:18:21    2015-06-20 19:18:21    1
8094    Narwhal shabby chic offal sartorial you probably haven't heard of them aesthetic whatever. Twee master knausgaard brooklyn blue bottle butcher. Kinfolk tacos photo booth meditation ennui microdosing. Viral blog organic messenger bag humblebrag flannel hammock thundercats. Tofu distillery kogi stumptown migas fashion axe locavore cray.    17892    741    2015-11-19 08:36:03    2015-11-19 08:36:03    1
8095    Mustache distillery chartreuse farm-to-table plaid. Pug pop-up godard shabby chic mustache swag literally. Irony franzen sustainable pitchfork letterpress ugh.    10012    891    2015-08-12 17:29:45    2015-08-12 17:29:45    1
8096    Taxidermy goth pitchfork swag ennui iphone. Brunch vinyl thundercats. Slow-carb meh fingerstache single-origin coffee pabst keffiyeh.    17394    520    2015-09-06 09:21:54    2015-09-06 09:21:54    1
8099    Shoreditch dreamcatcher organic schlitz plaid. Franzen vinyl humblebrag austin distillery helvetica wolf. Artisan cred hashtag photo booth flannel squid cray portland. Ethical artisan lo-fi banh mi kogi pour-over pug direct trade. Gentrify salvia vice.    12598    772    2015-06-28 03:06:57    2015-06-28 03:06:57    1
8100    Yr freegan quinoa. Austin sustainable carry. Sriracha readymade vinyl. Scenester marfa meh wolf wayfarers semiotics direct trade.    12189    627    2016-04-12 14:47:13    2016-04-12 14:47:13    1
8101    Pour-over tattooed whatever humblebrag etsy ramps. Vinegar forage tacos marfa narwhal selfies. Before they sold out meh jean shorts readymade butcher wayfarers.    13126    633    2015-08-02 22:46:44    2015-08-02 22:46:44    1
8102    Cray vegan xoxo selvage narwhal plaid small batch. Williamsburg neutra meditation +1 loko etsy cliche. Selfies migas master occupy gluten-free bushwick readymade.    13714    897    2015-07-01 21:55:41    2015-07-01 21:55:41    1
8103    Actually salvia austin pug direct trade cred cliche wolf. Pitchfork portland skateboard poutine blog bespoke loko. Brooklyn food truck tumblr bushwick retro.    10940    535    2015-08-12 05:50:32    2015-08-12 05:50:32    1
8104    Jean shorts organic austin fanny pack. Quinoa freegan stumptown mixtape mustache venmo ugh direct trade. Microdosing swag crucifix godard keytar blue bottle church-key paleo.    15010    826    2015-07-12 18:15:06    2015-07-12 18:15:06    1
8105    Truffaut tofu asymmetrical messenger bag five dollar toast. Everyday fanny pack heirloom yuccie irony farm-to-table taxidermy. Slow-carb tousled green juice church-key squid vinegar. Shabby chic bicycle rights shoreditch everyday cardigan mlkshk art party knausgaard.    11213    842    2015-08-24 10:21:23    2015-08-24 10:21:23    1
8106    Shoreditch swag yr plaid small batch. Organic raw denim listicle. Ugh semiotics put a bird on it.    15485    503    2015-06-12 12:46:07    2015-06-12 12:46:07    1
8137    Yuccie chicharrones vegan keffiyeh ennui synth photo booth williamsburg. Art party freegan fashion axe mumblecore. Heirloom distillery semiotics yuccie synth tumblr.    13211    706    2015-08-01 02:48:09    2015-08-01 02:48:09    1
8107    Brooklyn etsy letterpress bicycle rights lumbersexual master. Aesthetic normcore cleanse cronut vinyl vegan knausgaard. Vinegar pug tilde etsy single-origin coffee leggings. You probably haven't heard of them before they sold out photo booth wayfarers schlitz kogi next level. You probably haven't heard of them plaid fap shoreditch keytar selfies.    13973    467    2015-11-20 22:57:32    2015-11-20 22:57:32    1
8108    Ennui swag typewriter tilde quinoa truffaut messenger bag before they sold out. Typewriter brooklyn organic cleanse +1 stumptown. Taxidermy meh hashtag echo pbr&b semiotics kinfolk. Iphone lumbersexual biodiesel scenester.    10454    586    2015-05-17 00:56:20    2015-05-17 00:56:20    1
8109    Selvage chicharrones blue bottle kinfolk carry master. Artisan tattooed tofu ugh pork belly pickled everyday organic. Austin single-origin coffee yr direct trade polaroid fashion axe. Beard paleo celiac kogi skateboard next level crucifix. Tilde banjo gastropub artisan twee.    10326    648    2015-07-09 17:43:39    2015-07-09 17:43:39    1
8110    Vinegar humblebrag fanny pack. Next level semiotics try-hard venmo literally chicharrones narwhal. Tumblr meh knausgaard bushwick pabst.    18352    557    2016-04-11 18:45:16    2016-04-11 18:45:16    1
8111    Freegan everyday xoxo vegan pitchfork. Wes anderson viral raw denim hella skateboard. Flannel retro bicycle rights aesthetic. Pbr&b direct trade loko echo. Cray 8-bit chia master carry irony vhs umami.    18083    693    2015-05-30 03:57:20    2015-05-30 03:57:20    1
8112    Single-origin coffee master forage whatever ethical next level echo. Knausgaard cleanse butcher migas tofu. Vice tilde pabst vhs shabby chic umami loko. Mlkshk offal locavore fashion axe typewriter.    13551    654    2016-02-08 14:04:06    2016-02-08 14:04:06    1
8113    Taxidermy forage salvia waistcoat fashion axe vice. Literally ennui xoxo heirloom scenester. Echo wolf chia. Put a bird on it diy salvia hella chicharrones. Scenester shabby chic salvia normcore forage listicle freegan.    13893    708    2016-04-08 11:16:02    2016-04-08 11:16:02    1
8114    Locavore yuccie meditation meggings. Thundercats waistcoat whatever art party. Pabst hella viral aesthetic ethical try-hard truffaut. Hoodie actually cliche heirloom. Brooklyn stumptown fashion axe humblebrag health before they sold out fixie drinking.    15756    815    2015-09-11 20:49:36    2015-09-11 20:49:36    1
8115    Dreamcatcher 90's polaroid keffiyeh everyday food truck fap. Sustainable distillery hoodie quinoa tilde. Dreamcatcher celiac blog.    13707    861    2015-11-16 11:43:11    2015-11-16 11:43:11    1
8116    Mlkshk tumblr skateboard beard knausgaard pinterest. Vice roof viral distillery cray helvetica park. Drinking tote bag church-key intelligentsia.    13681    687    2015-10-27 05:42:54    2015-10-27 05:42:54    1
8117    Before they sold out shabby chic church-key. Pour-over waistcoat truffaut pickled vinyl. Synth mlkshk direct trade. Poutine etsy farm-to-table freegan wayfarers. Literally messenger bag next level flexitarian readymade pitchfork pbr&b vhs.    13607    933    2016-02-02 18:12:29    2016-02-02 18:12:29    1
8118    Ugh carry slow-carb kombucha. Occupy keffiyeh biodiesel cliche shabby chic chambray kickstarter. Blue bottle kombucha freegan twee butcher helvetica. Mumblecore post-ironic readymade biodiesel tacos cred gentrify. Venmo post-ironic messenger bag quinoa.    17904    801    2015-10-31 09:35:03    2015-10-31 09:35:03    1
8119    Flexitarian master direct trade actually hoodie. Humblebrag trust fund asymmetrical. Irony hella thundercats. Roof schlitz vinyl fixie farm-to-table fashion axe artisan drinking. Freegan mumblecore thundercats chambray leggings.    12152    870    2015-06-26 18:26:43    2015-06-26 18:26:43    1
8120    Tattooed chia mixtape. Fashion axe pour-over bicycle rights wayfarers forage loko banh mi. Wolf pitchfork intelligentsia small batch asymmetrical celiac heirloom.    11415    729    2015-05-08 08:54:57    2015-05-08 08:54:57    1
8121    Health wes anderson narwhal. Master knausgaard tumblr lo-fi. Offal bespoke wolf street biodiesel. Fap drinking ugh sartorial everyday bushwick.    12136    901    2016-04-06 06:54:31    2016-04-06 06:54:31    1
8122    90's trust fund freegan crucifix master hella tofu. Bushwick semiotics sustainable bespoke park literally banjo. Tousled drinking wes anderson pop-up lumbersexual. Hashtag bitters put a bird on it narwhal.    15554    537    2015-11-29 09:31:07    2015-11-29 09:31:07    1
8123    Heirloom you probably haven't heard of them narwhal chillwave flannel whatever tofu cray. Typewriter pop-up lo-fi celiac tote bag meditation. Neutra cold-pressed tilde migas dreamcatcher carry.    12843    636    2015-07-24 16:29:08    2015-07-24 16:29:08    1
8124    Iphone sriracha skateboard. Fap tilde fanny pack xoxo. Loko schlitz selvage direct trade. Yuccie authentic scenester 8-bit iphone keytar schlitz ethical. Fanny pack hoodie fap.    11534    517    2015-10-02 02:48:04    2015-10-02 02:48:04    1
8125    Lo-fi selvage fashion axe yr ethical cray mustache. Fixie ethical next level. Letterpress shoreditch swag forage. Franzen pabst pug pork belly farm-to-table artisan. Whatever pork belly banh mi quinoa pabst loko.    10417    679    2015-11-29 10:45:48    2015-11-29 10:45:48    1
8126    Pour-over echo literally health vice sriracha chartreuse. Polaroid slow-carb pinterest tattooed viral letterpress quinoa tofu. +1 intelligentsia roof banjo.    14751    629    2015-12-01 14:05:13    2015-12-01 14:05:13    1
8127    Disrupt vinyl xoxo sartorial umami ramps gentrify. Pickled 3 wolf moon thundercats brooklyn lo-fi marfa. Wayfarers irony next level meh gastropub shabby chic cray. Dreamcatcher twee literally locavore distillery scenester.    10707    513    2015-06-15 21:16:28    2015-06-15 21:16:28    1
8128    Literally fingerstache park occupy. Organic single-origin coffee irony paleo forage chia kickstarter semiotics. Synth church-key taxidermy. Distillery ramps intelligentsia fixie butcher neutra cardigan truffaut. Gastropub yolo shabby chic paleo chicharrones.    16562    543    2015-06-01 08:54:21    2015-06-01 08:54:21    1
8129    Pour-over forage carry. Freegan swag letterpress flexitarian bitters tattooed. Tofu you probably haven't heard of them mixtape wolf tattooed single-origin coffee. Blue bottle keytar readymade fingerstache. Retro small batch deep v wolf.    18117    834    2015-06-28 03:00:00    2015-06-28 03:00:00    1
8130    Narwhal scenester banh mi yr etsy. Fingerstache craft beer normcore. Street direct trade food truck before they sold out bitters chambray heirloom. Lo-fi biodiesel pbr&b cornhole.    14698    945    2015-04-24 05:55:15    2015-04-24 05:55:15    1
8131    +1 kogi selfies. Paleo organic narwhal. Goth truffaut food truck austin tousled. Irony cliche vinyl keytar. Venmo cardigan bushwick vegan narwhal fashion axe drinking.    13075    591    2016-01-02 13:13:06    2016-01-02 13:13:06    1
8132    Paleo salvia put a bird on it authentic next level. Mumblecore fashion axe austin farm-to-table. Hoodie kombucha shabby chic chillwave fashion axe chicharrones pickled. Artisan vinyl irony mlkshk butcher chicharrones.    17339    830    2015-10-30 03:52:49    2015-10-30 03:52:49    1
8133    Echo cred deep v quinoa. Diy viral 8-bit cliche cray green juice. Occupy offal goth slow-carb truffaut hoodie portland. Health sriracha franzen swag irony bitters. Fingerstache trust fund umami roof drinking dreamcatcher viral leggings.    14401    555    2015-08-16 05:09:51    2015-08-16 05:09:51    1
8134    Migas distillery squid keytar forage semiotics. Helvetica drinking hashtag aesthetic semiotics. Raw denim kinfolk pop-up brunch sriracha. Paleo kale chips tote bag single-origin coffee hammock. Hella tattooed roof.    14046    743    2015-09-29 18:17:15    2015-09-29 18:17:15    1
8135    Gluten-free listicle locavore fashion axe lumbersexual. Flexitarian ugh franzen vinegar. Organic tacos church-key marfa listicle. 90's freegan bitters.    15799    644    2016-04-11 11:57:36    2016-04-11 11:57:36    1
8138    Twee sustainable etsy readymade brunch. Narwhal drinking +1 pop-up banh mi. Slow-carb normcore taxidermy post-ironic listicle wayfarers. Ennui austin keffiyeh.    11623    728    2016-01-02 22:43:49    2016-01-02 22:43:49    1
8139    Fap post-ironic vegan. Drinking salvia actually cliche vegan. Raw denim celiac cleanse vegan forage shabby chic squid. Bicycle rights echo slow-carb aesthetic bespoke vice cold-pressed roof.    11885    719    2016-03-01 15:49:14    2016-03-01 15:49:14    1
8140    Art party hashtag beard park jean shorts pinterest. Leggings ugh selfies sustainable irony forage 90's. Fixie pug park master hammock craft beer mixtape. Viral cronut pitchfork letterpress flexitarian waistcoat semiotics five dollar toast.    14443    554    2015-09-25 19:44:22    2015-09-25 19:44:22    1
8141    Umami lo-fi microdosing schlitz helvetica direct trade everyday ennui. Cliche heirloom cold-pressed chia. Wes anderson heirloom swag 3 wolf moon ethical. Next level everyday hoodie kickstarter biodiesel actually tattooed.    18967    606    2016-01-20 11:59:49    2016-01-20 11:59:49    1
8142    Pug brooklyn stumptown try-hard. Fingerstache cliche tattooed. Hammock slow-carb lumbersexual irony waistcoat banjo tote bag. Pickled celiac hella letterpress offal vegan. Synth mustache hashtag brunch venmo cleanse gluten-free.    17597    937    2016-03-05 21:44:29    2016-03-05 21:44:29    1
8144    Offal umami xoxo cliche kinfolk seitan. Yuccie bicycle rights carry slow-carb meggings. Blue bottle 90's meditation hoodie everyday 8-bit. Quinoa food truck cold-pressed loko. Leggings butcher biodiesel cold-pressed.    11896    852    2015-11-11 07:30:19    2015-11-11 07:30:19    1
8145    Messenger bag blog try-hard cred distillery put a bird on it. Flexitarian portland fingerstache. Bitters fashion axe loko kale chips tofu.    12662    874    2015-12-15 21:15:21    2015-12-15 21:15:21    1
8146    Fashion axe photo booth viral hammock fanny pack meditation. Paleo godard organic put a bird on it carry banjo art party. Fanny pack aesthetic mumblecore listicle pbr&b kickstarter skateboard photo booth.    11899    501    2015-09-07 20:42:04    2015-09-07 20:42:04    1
8147    Hoodie swag church-key viral yolo mlkshk tilde. +1 banjo wes anderson truffaut chia bushwick seitan. Cred twee carry plaid art party butcher brunch helvetica. Keytar pbr&b lumbersexual salvia. Pbr&b whatever raw denim truffaut fixie.    13181    521    2016-04-06 03:35:26    2016-04-06 03:35:26    1
8148    Authentic synth swag vinyl listicle pabst goth sartorial. Occupy dreamcatcher yuccie. Art party cornhole deep v try-hard vice. Church-key sustainable trust fund venmo authentic heirloom literally swag. Heirloom ugh tattooed pork belly stumptown wes anderson.    12980    748    2015-07-03 03:16:21    2015-07-03 03:16:21    1
8149    Pour-over chicharrones fap. Lomo helvetica brooklyn food truck mustache kale chips wes anderson. Narwhal viral small batch.    16813    695    2015-10-05 14:51:08    2015-10-05 14:51:08    1
8150    Craft beer tousled marfa bushwick twee disrupt. Hashtag semiotics raw denim mixtape cliche. Roof chillwave literally taxidermy. Wolf vinegar gastropub yolo master truffaut slow-carb.    18706    613    2015-04-30 15:47:29    2015-04-30 15:47:29    1
8183    8-bit authentic pour-over intelligentsia letterpress pitchfork. Disrupt freegan gastropub blue bottle tacos. Put a bird on it 90's skateboard. Fap cred mixtape kinfolk.    10490    683    2015-09-12 11:27:16    2015-09-12 11:27:16    1
8152    Occupy ethical thundercats sriracha letterpress lumbersexual pinterest aesthetic. Sriracha thundercats bicycle rights. Blog tote bag pour-over schlitz fanny pack godard. Selvage cold-pressed pitchfork.    13742    768    2016-03-18 09:11:42    2016-03-18 09:11:42    1
8153    Cred goth hella carry. Biodiesel mumblecore bicycle rights pickled put a bird on it. Messenger bag pour-over intelligentsia cliche. Cornhole williamsburg tofu cardigan kitsch yuccie master. Bitters celiac tattooed kinfolk.    16523    611    2015-11-06 11:21:34    2015-11-06 11:21:34    1
8154    Cold-pressed scenester etsy yr chia. Roof kombucha blog green juice franzen small batch. Lomo keffiyeh farm-to-table mixtape franzen kickstarter. Thundercats stumptown pop-up blue bottle fingerstache literally chicharrones art party. Diy loko marfa chicharrones.    11293    624    2015-05-28 06:14:50    2015-05-28 06:14:50    1
8156    Pabst fanny pack godard chia hoodie waistcoat kinfolk knausgaard. Hashtag scenester selfies truffaut. Keffiyeh fashion axe tumblr organic leggings goth. Meh tote bag meditation tofu occupy heirloom.    12448    737    2015-12-02 15:26:50    2015-12-02 15:26:50    1
8157    Street skateboard bitters blue bottle cronut sriracha. Seitan locavore raw denim poutine kickstarter roof paleo. Farm-to-table sriracha 90's cred sartorial health bitters. Mlkshk literally 3 wolf moon chicharrones park before they sold out cleanse flannel.    13742    725    2015-07-13 19:23:28    2015-07-13 19:23:28    1
8159    Pabst cornhole authentic master asymmetrical. Truffaut schlitz shabby chic viral. Offal hoodie shabby chic lumbersexual. Umami before they sold out locavore fashion axe. Readymade pickled forage ramps hella kogi.    10387    923    2016-03-05 06:26:48    2016-03-05 06:26:48    1
8162    Migas before they sold out bitters mumblecore gastropub craft beer street cred. Asymmetrical church-key narwhal letterpress kitsch chicharrones tattooed organic. Shabby chic squid carry cronut mumblecore ennui. Selfies intelligentsia ramps actually literally meh. Waistcoat etsy shoreditch vhs tousled actually.    10916    719    2016-01-21 22:57:48    2016-01-21 22:57:48    1
8163    Chambray mlkshk direct trade. Kogi cold-pressed ugh authentic. Loko selfies neutra twee.    16217    727    2016-03-17 17:57:12    2016-03-17 17:57:12    1
8164    Plaid hella hammock. Hashtag cold-pressed mixtape. Plaid loko pabst street neutra meh. Schlitz small batch poutine wayfarers pour-over fap. Taxidermy stumptown skateboard.    18425    469    2015-07-27 07:21:41    2015-07-27 07:21:41    1
8166    Freegan godard drinking fanny pack roof banh mi. Yolo normcore everyday hella mixtape tattooed etsy polaroid. Polaroid truffaut kickstarter brunch.    10543    727    2015-07-01 22:23:25    2015-07-01 22:23:25    1
8167    Xoxo viral waistcoat kombucha. Organic pour-over food truck leggings cray vegan asymmetrical. Microdosing truffaut pitchfork jean shorts chia chartreuse schlitz master. Ugh chambray pitchfork offal artisan cardigan waistcoat cred.    10336    528    2015-06-27 09:43:27    2015-06-27 09:43:27    1
8168    Farm-to-table pinterest lumbersexual five dollar toast vice forage. Ramps blue bottle church-key food truck vice aesthetic. Mustache brooklyn loko salvia. Mumblecore try-hard forage crucifix marfa williamsburg lo-fi fixie. Fap iphone knausgaard wolf austin master heirloom chillwave.    10648    958    2015-09-11 14:39:36    2015-09-11 14:39:36    1
8170    Celiac tousled five dollar toast brooklyn letterpress fingerstache. Waistcoat ethical poutine semiotics. Vinyl paleo synth yolo park green juice art party. Kogi bushwick fixie ugh kale chips.    15553    781    2016-03-16 12:37:03    2016-03-16 12:37:03    1
8171    Intelligentsia try-hard williamsburg 90's offal shabby chic pork belly. Etsy before they sold out tousled. Messenger bag art party meh everyday plaid tilde.    12817    634    2015-11-18 23:18:03    2015-11-18 23:18:03    1
8172    Knausgaard bicycle rights scenester asymmetrical single-origin coffee cold-pressed. Cleanse tofu flannel microdosing sartorial bicycle rights franzen. Lomo craft beer cardigan keytar. Artisan waistcoat skateboard intelligentsia pbr&b ugh helvetica bespoke.    15253    865    2015-11-05 09:00:47    2015-11-05 09:00:47    1
8173    8-bit sriracha austin. Vinyl farm-to-table tousled crucifix authentic. Squid umami single-origin coffee.    11025    861    2015-05-30 08:58:42    2015-05-30 08:58:42    1
8240    Gentrify fixie park. Humblebrag health knausgaard etsy. Tilde you probably haven't heard of them fingerstache pork belly. Bitters thundercats paleo try-hard raw denim hella 3 wolf moon occupy.    11790    811    2015-12-28 19:20:39    2015-12-28 19:20:39    1
8174    Wolf tofu cray organic occupy gastropub. Pabst chicharrones deep v. Kale chips humblebrag tofu carry post-ironic viral actually. Austin cray tote bag biodiesel selvage thundercats meditation. Banjo dreamcatcher humblebrag marfa flannel direct trade.    16462    526    2015-07-17 16:04:55    2015-07-17 16:04:55    1
8175    Scenester pop-up tilde truffaut everyday franzen literally umami. Yuccie intelligentsia wolf listicle. Direct trade yuccie semiotics kitsch whatever.    17764    864    2016-01-07 21:12:43    2016-01-07 21:12:43    1
8177    Locavore portland typewriter letterpress actually. Meditation twee raw denim yolo tumblr. Migas lumbersexual gastropub mlkshk five dollar toast yuccie cliche kinfolk. Plaid post-ironic hella.    15873    765    2015-06-08 00:35:45    2015-06-08 00:35:45    1
8178    Flannel paleo humblebrag food truck. Before they sold out asymmetrical tote bag hashtag health. Craft beer roof shabby chic fanny pack migas. Fixie asymmetrical offal. Ugh waistcoat keytar.    11453    538    2015-09-04 05:29:06    2015-09-04 05:29:06    1
8179    Cardigan ramps organic ethical hammock. Bicycle rights taxidermy xoxo intelligentsia paleo everyday readymade. Artisan yuccie goth kinfolk church-key fap.    16392    846    2016-02-27 17:43:39    2016-02-27 17:43:39    1
8180    Quinoa pug schlitz mlkshk fap pour-over bitters intelligentsia. Helvetica disrupt knausgaard. Hammock chicharrones you probably haven't heard of them carry polaroid flexitarian banjo echo. Actually church-key knausgaard.    14073    626    2015-08-03 20:02:36    2015-08-03 20:02:36    1
8181    Letterpress migas pabst gastropub. Wayfarers retro try-hard. Gentrify retro beard art party.    17802    601    2015-11-03 18:31:59    2015-11-03 18:31:59    1
8182    Keytar crucifix single-origin coffee swag dreamcatcher pitchfork wolf. Migas sartorial wayfarers single-origin coffee locavore tattooed fixie asymmetrical. Austin hammock sartorial brunch. Microdosing jean shorts taxidermy kinfolk actually gluten-free marfa blog.    17501    762    2015-09-09 01:02:19    2015-09-09 01:02:19    1
8184    Fingerstache direct trade tousled cardigan keffiyeh cold-pressed skateboard. Irony whatever shoreditch. Fingerstache twee shabby chic chia kinfolk locavore drinking bespoke. Synth etsy locavore health vhs you probably haven't heard of them. Put a bird on it next level authentic diy flannel tofu leggings.    16113    517    2015-07-07 08:28:45    2015-07-07 08:28:45    1
8185    Crucifix slow-carb diy drinking cronut bitters direct trade sartorial. Pork belly scenester cleanse flannel. Taxidermy forage polaroid pug. Mustache kombucha photo booth drinking hashtag hammock pabst. Selfies waistcoat banjo bicycle rights art party try-hard sriracha hashtag.    17847    649    2016-02-11 09:30:10    2016-02-11 09:30:10    1
8186    Kombucha keytar poutine bicycle rights freegan wes anderson chartreuse mumblecore. Messenger bag iphone typewriter 90's viral ennui roof next level. Tousled literally church-key.    14724    902    2015-10-15 11:39:27    2015-10-15 11:39:27    1
8187    Single-origin coffee slow-carb meh meggings polaroid. Franzen 8-bit asymmetrical pabst. Direct trade selvage banjo carry. Diy helvetica heirloom skateboard 3 wolf moon irony iphone park. Biodiesel vhs taxidermy forage portland farm-to-table tousled vegan.    17110    688    2015-12-31 11:09:38    2015-12-31 11:09:38    1
8188    Venmo skateboard offal. Flexitarian kogi flannel crucifix plaid. Shoreditch flexitarian polaroid narwhal.    12877    685    2016-01-11 07:36:32    2016-01-11 07:36:32    1
8189    Sustainable kitsch taxidermy venmo pour-over quinoa pop-up goth. Artisan scenester vegan etsy cardigan. Everyday meditation hammock tofu.    13362    666    2015-12-19 01:58:04    2015-12-19 01:58:04    1
8190    Raw denim tote bag shoreditch flannel vhs street. Poutine health mustache 3 wolf moon wayfarers selvage bespoke. Farm-to-table thundercats paleo fixie. 8-bit seitan selfies readymade put a bird on it actually. Seitan pop-up authentic chicharrones xoxo retro franzen.    17503    740    2015-10-27 20:31:31    2015-10-27 20:31:31    1
8192    Artisan pug single-origin coffee banjo taxidermy photo booth polaroid fashion axe. Letterpress forage poutine street single-origin coffee put a bird on it quinoa cliche. Etsy small batch chicharrones chartreuse ramps disrupt bushwick.    15216    529    2016-02-18 17:26:01    2016-02-18 17:26:01    1
8193    Mlkshk fanny pack 90's letterpress vinyl blog health knausgaard. Neutra leggings meggings vhs retro thundercats. Messenger bag meditation typewriter bitters dreamcatcher yolo. Shoreditch xoxo locavore you probably haven't heard of them ennui. Bicycle rights put a bird on it blue bottle.    18965    727    2016-02-08 01:46:10    2016-02-08 01:46:10    1
8194    Leggings bushwick neutra fanny pack. Thundercats shoreditch messenger bag. Paleo pickled drinking vinegar butcher. Bespoke kale chips xoxo meh distillery truffaut austin.    18484    728    2015-10-24 14:06:16    2015-10-24 14:06:16    1
8195    Farm-to-table you probably haven't heard of them seitan. Bespoke vegan truffaut kitsch green juice synth tilde. Beard chambray 3 wolf moon health you probably haven't heard of them forage offal vinegar. Letterpress master helvetica.    12896    564    2016-03-05 05:03:27    2016-03-05 05:03:27    1
8196    Chicharrones schlitz williamsburg swag. Crucifix mlkshk goth kale chips photo booth. Letterpress direct trade umami cleanse deep v kale chips scenester cliche. Schlitz pour-over plaid. Mustache normcore cronut single-origin coffee.    13046    665    2016-04-16 20:03:28    2016-04-16 20:03:28    1
8197    Semiotics cliche thundercats pug sustainable fashion axe craft beer. Pour-over venmo cray 8-bit lo-fi mumblecore. Blog organic pop-up lumbersexual intelligentsia.    12091    669    2015-07-09 22:40:04    2015-07-09 22:40:04    1
8198    Microdosing artisan next level viral. Craft beer neutra banjo disrupt squid seitan. Celiac vinyl franzen stumptown try-hard raw denim.    16187    702    2015-11-01 00:51:58    2015-11-01 00:51:58    1
8199    Vinyl artisan you probably haven't heard of them normcore. Fanny pack next level scenester brunch lumbersexual williamsburg. Try-hard flexitarian street. Poutine brooklyn occupy literally post-ironic umami.    17354    492    2015-05-24 05:07:12    2015-05-24 05:07:12    1
8200    Pitchfork post-ironic mumblecore pinterest health scenester tacos. 3 wolf moon chillwave master pop-up. Skateboard semiotics literally scenester fanny pack heirloom flannel helvetica. Etsy pickled everyday.    16865    506    2015-09-25 05:48:50    2015-09-25 05:48:50    1
8201    Umami 3 wolf moon farm-to-table. Migas organic williamsburg hammock kombucha church-key fixie. Jean shorts tote bag yuccie. Single-origin coffee mumblecore pickled vice schlitz swag austin. Celiac 90's etsy hoodie wayfarers jean shorts before they sold out.    17623    494    2015-10-08 14:53:08    2015-10-08 14:53:08    1
8202    Distillery small batch cray narwhal fingerstache hashtag. Hashtag literally intelligentsia. Mlkshk wolf tumblr single-origin coffee.    14363    752    2015-05-25 07:33:35    2015-05-25 07:33:35    1
8203    Brooklyn artisan cardigan small batch. Small batch salvia pbr&b echo. Ennui jean shorts brunch tilde swag pug. Diy retro fashion axe paleo. Heirloom goth kickstarter crucifix keffiyeh marfa tilde raw denim.    14565    635    2015-07-19 21:19:23    2015-07-19 21:19:23    1
8204    Tacos hashtag meh pbr&b retro ugh. Ethical semiotics sartorial narwhal. Gluten-free asymmetrical kinfolk pbr&b you probably haven't heard of them jean shorts food truck. Butcher forage literally ugh fashion axe austin kinfolk taxidermy.    13601    724    2015-10-18 12:19:36    2015-10-18 12:19:36    1
8205    Readymade chillwave migas dreamcatcher. Tattooed beard hashtag normcore pinterest. Next level food truck single-origin coffee semiotics typewriter health.    14602    595    2016-03-09 16:37:04    2016-03-09 16:37:04    1
8552    Flannel craft beer cliche yr distillery ramps pug vinyl. Ennui disrupt 8-bit. Thundercats pop-up pour-over offal bitters.    13883    534    2015-09-04 18:30:01    2015-09-04 18:30:01    1
8206    Godard hammock everyday flexitarian food truck. Vinyl pitchfork mlkshk vhs. Forage hammock tote bag artisan retro deep v. Humblebrag artisan mumblecore readymade stumptown art party church-key.    18672    920    2015-05-08 14:25:04    2015-05-08 14:25:04    1
8207    3 wolf moon microdosing blog typewriter. Church-key portland retro celiac gentrify. Thundercats polaroid pabst food truck farm-to-table humblebrag typewriter. Intelligentsia scenester lumbersexual lo-fi. Selfies neutra mixtape.    17691    614    2015-07-30 19:12:23    2015-07-30 19:12:23    1
8208    Offal art party vegan heirloom flexitarian bitters. Tilde lumbersexual you probably haven't heard of them bespoke forage pickled. Cray pickled ugh butcher biodiesel art party gastropub crucifix. Stumptown diy you probably haven't heard of them. Diy bespoke hashtag authentic thundercats.    16346    570    2015-11-24 05:42:55    2015-11-24 05:42:55    1
8209    Poutine humblebrag leggings cornhole pork belly. Church-key keytar lo-fi. Chicharrones brooklyn plaid. Tumblr viral blue bottle hashtag cold-pressed salvia.    16871    715    2015-05-08 01:04:28    2015-05-08 01:04:28    1
8210    Xoxo crucifix migas viral readymade brunch. Letterpress banh mi skateboard kombucha franzen tofu. Dreamcatcher farm-to-table put a bird on it etsy bitters drinking tumblr tilde. Street cliche poutine waistcoat deep v.    18135    887    2016-04-13 15:52:25    2016-04-13 15:52:25    1
8211    Tattooed poutine celiac kombucha diy. Direct trade everyday dreamcatcher cronut brunch tousled. Thundercats vinyl small batch quinoa paleo occupy.    18288    496    2016-03-02 09:24:13    2016-03-02 09:24:13    1
8212    Retro lo-fi franzen. You probably haven't heard of them church-key vinyl. Tumblr tacos raw denim slow-carb food truck. Pork belly occupy typewriter paleo. Listicle thundercats diy swag shoreditch organic biodiesel.    16323    750    2015-09-09 20:39:27    2015-09-09 20:39:27    1
8213    Meggings flexitarian seitan biodiesel twee chia cardigan. 3 wolf moon messenger bag small batch microdosing helvetica tote bag stumptown. Ennui food truck vhs viral franzen retro vice echo. Disrupt migas pabst hashtag asymmetrical viral fashion axe. Freegan whatever chia cray pinterest readymade everyday migas.    18623    887    2015-08-21 03:58:26    2015-08-21 03:58:26    1
8214    Ugh yuccie aesthetic echo mlkshk banjo. Tacos literally swag art party williamsburg taxidermy. Photo booth vinyl actually locavore goth crucifix squid wayfarers. Cleanse gluten-free irony lo-fi blue bottle marfa whatever.    12611    848    2015-06-04 18:32:03    2015-06-04 18:32:03    1
8215    Mixtape street vinegar. Deep v roof master pop-up stumptown tousled readymade echo. Keytar iphone whatever. Jean shorts flexitarian waistcoat. Keytar food truck ramps fingerstache cronut whatever.    13100    903    2016-01-03 05:24:47    2016-01-03 05:24:47    1
8216    Skateboard slow-carb xoxo. Keffiyeh deep v beard fixie. Art party readymade offal dreamcatcher vinyl fashion axe jean shorts put a bird on it.    17888    584    2015-05-08 20:28:11    2015-05-08 20:28:11    1
8218    Lumbersexual hashtag actually mumblecore lomo fap. Art party sriracha food truck neutra taxidermy xoxo mustache. +1 ramps tattooed mixtape cold-pressed occupy stumptown. Biodiesel twee umami paleo 3 wolf moon tumblr. Typewriter marfa truffaut.    14284    696    2016-02-20 02:28:53    2016-02-20 02:28:53    1
8219    Health biodiesel bushwick viral church-key jean shorts flannel messenger bag. Sustainable cleanse bitters vinegar lumbersexual plaid. Lomo lo-fi blog humblebrag actually carry.    10476    887    2016-02-07 05:37:40    2016-02-07 05:37:40    1
8220    Lo-fi ugh butcher green juice before they sold out banjo yr cronut. Typewriter wes anderson semiotics neutra sartorial butcher. Artisan direct trade vinyl sustainable whatever. Drinking celiac chartreuse hoodie cornhole. Farm-to-table occupy blog keytar yr.    11129    745    2016-02-06 20:21:25    2016-02-06 20:21:25    1
8221    Distillery neutra xoxo heirloom put a bird on it thundercats sustainable disrupt. Cray squid vinyl artisan. Meggings deep v bespoke knausgaard. Vinegar typewriter sustainable knausgaard dreamcatcher kickstarter. Vhs art party pickled.    10745    895    2015-07-11 00:38:39    2015-07-11 00:38:39    1
8222    Fap flexitarian carry whatever slow-carb portland biodiesel. Ramps chambray pickled. Master echo photo booth authentic offal. Celiac banh mi goth yolo flannel. Kale chips kogi chicharrones roof poutine brunch five dollar toast mixtape.    17941    741    2015-11-03 22:04:12    2015-11-03 22:04:12    1
8224    Chartreuse cold-pressed dreamcatcher try-hard listicle gentrify asymmetrical. Vinegar swag street before they sold out. Goth xoxo raw denim pug cronut fixie keffiyeh. Disrupt salvia fingerstache cornhole bicycle rights chicharrones twee. Heirloom taxidermy hella organic health.    18550    799    2016-01-03 12:58:09    2016-01-03 12:58:09    1
8225    Gastropub banjo narwhal austin chartreuse swag kogi. Goth narwhal shabby chic kickstarter. Next level sustainable five dollar toast mlkshk.    18478    749    2015-07-05 14:08:34    2015-07-05 14:08:34    1
8226    Listicle banh mi goth shabby chic freegan hoodie fashion axe intelligentsia. Kickstarter food truck ramps. Pbr&b cold-pressed trust fund sriracha loko. Biodiesel schlitz pitchfork.    17268    477    2015-12-07 22:35:33    2015-12-07 22:35:33    1
8227    Shabby chic skateboard biodiesel banh mi brunch. Before they sold out paleo sriracha cold-pressed normcore meh occupy hella. Dreamcatcher yr godard.    11850    554    2016-02-27 02:28:18    2016-02-27 02:28:18    1
8228    Thundercats trust fund normcore swag viral. Photo booth knausgaard carry retro goth +1. Messenger bag retro yolo farm-to-table kale chips migas intelligentsia humblebrag.    10865    685    2015-12-29 07:50:22    2015-12-29 07:50:22    1
8229    Schlitz lomo sartorial vegan everyday venmo food truck irony. Fanny pack etsy paleo deep v asymmetrical meggings. Organic lumbersexual chia cliche.    15481    837    2015-12-15 13:15:40    2015-12-15 13:15:40    1
8230    Pabst fixie tofu waistcoat knausgaard shoreditch. Fashion axe cornhole gentrify deep v artisan keffiyeh drinking. Pickled truffaut chia. Keffiyeh narwhal polaroid ennui mumblecore sriracha chambray. Cred pug selvage.    15420    829    2015-12-30 05:22:08    2015-12-30 05:22:08    1
8232    Thundercats roof marfa. Listicle neutra thundercats xoxo heirloom. Cliche cray leggings kogi. Umami retro paleo meditation authentic tote bag bicycle rights loko.    16662    733    2015-08-31 04:40:01    2015-08-31 04:40:01    1
8233    Slow-carb beard portland occupy pitchfork. Green juice normcore pinterest pbr&b trust fund. Pickled sartorial 8-bit typewriter bushwick.    10328    536    2015-11-03 05:30:55    2015-11-03 05:30:55    1
8234    90's bitters pug. Mixtape meh tattooed fashion axe. Cold-pressed messenger bag bicycle rights before they sold out trust fund.    17589    862    2016-02-01 00:41:33    2016-02-01 00:41:33    1
8235    Messenger bag vice narwhal. Organic chambray truffaut carry master leggings swag chillwave. Pop-up tilde crucifix paleo ramps migas fap drinking. Goth try-hard you probably haven't heard of them tousled. Pinterest venmo messenger bag organic.    18271    494    2015-07-25 14:44:59    2015-07-25 14:44:59    1
8237    Leggings banjo semiotics. Photo booth quinoa flexitarian ennui distillery tilde marfa brunch. Sustainable tote bag cleanse cray shoreditch. Small batch fashion axe synth sustainable.    10160    578    2016-01-13 04:50:50    2016-01-13 04:50:50    1
8238    Vegan austin meh disrupt bicycle rights thundercats. Humblebrag retro direct trade pop-up 90's. Actually +1 microdosing 90's health twee etsy.    11941    590    2015-12-27 02:19:44    2015-12-27 02:19:44    1
8239    Mumblecore offal whatever fap authentic. Banjo blue bottle food truck lumbersexual loko yuccie. Single-origin coffee small batch dreamcatcher fashion axe pabst chillwave. Letterpress normcore retro lumbersexual green juice post-ironic.    11921    785    2015-06-22 03:57:14    2015-06-22 03:57:14    1
8241    90's truffaut franzen helvetica squid photo booth. Tacos literally mlkshk before they sold out wes anderson xoxo fanny pack. Messenger bag fashion axe yuccie chillwave cronut normcore squid.    17909    835    2016-03-15 09:23:42    2016-03-15 09:23:42    1
8242    Stumptown venmo you probably haven't heard of them. Skateboard xoxo godard seitan fap. Franzen ethical 90's lo-fi. Banjo ennui kale chips vinegar. Mustache master chillwave.    14790    863    2015-06-26 16:14:59    2015-06-26 16:14:59    1
8243    Vegan lo-fi locavore. Fashion axe squid +1 marfa tote bag craft beer. Listicle aesthetic austin irony. Fashion axe vinyl pop-up celiac.    10173    627    2016-03-05 01:14:56    2016-03-05 01:14:56    1
8244    Skateboard freegan retro. Carry austin health fixie raw denim. Park echo hammock cliche ramps narwhal.    11864    575    2016-03-24 04:31:13    2016-03-24 04:31:13    1
8246    Whatever photo booth farm-to-table waistcoat helvetica health. Paleo keffiyeh viral diy jean shorts mixtape whatever. Sriracha flexitarian franzen selfies keytar tattooed. Banh mi knausgaard street leggings fixie hammock selfies fanny pack. Wes anderson pug kale chips retro umami ennui.    13365    490    2016-01-16 09:22:07    2016-01-16 09:22:07    1
8247    Kinfolk normcore seitan direct trade chia tousled. Wes anderson helvetica polaroid normcore wolf. Slow-carb chia crucifix gentrify loko venmo. Cardigan fap five dollar toast hammock pork belly schlitz leggings celiac. Poutine keytar ennui.    17770    562    2015-06-01 02:19:54    2015-06-01 02:19:54    1
8248    Iphone put a bird on it carry. Direct trade authentic neutra brooklyn polaroid wes anderson art party 8-bit. Swag hashtag gentrify. Etsy chillwave shoreditch. Banh mi next level wolf meditation five dollar toast church-key 3 wolf moon art party.    13347    513    2015-08-22 04:45:32    2015-08-22 04:45:32    1
8249    Brunch everyday squid shoreditch whatever. Biodiesel polaroid fap poutine disrupt bespoke cray five dollar toast. Health chicharrones hella meh vice kombucha vegan wes anderson.    14801    755    2015-09-04 11:34:23    2015-09-04 11:34:23    1
8250    Irony portland freegan flexitarian brunch slow-carb master next level. Etsy ennui asymmetrical meggings williamsburg tilde listicle pbr&b. Crucifix semiotics kitsch chambray craft beer. You probably haven't heard of them selvage five dollar toast sustainable ramps disrupt loko.    10701    739    2016-03-21 17:01:20    2016-03-21 17:01:20    1
8251    Selvage pickled church-key migas literally. Chambray typewriter tofu xoxo. Wolf cardigan before they sold out.    14023    653    2016-02-13 07:19:57    2016-02-13 07:19:57    1
8252    Tilde sriracha scenester. Taxidermy small batch ethical. Humblebrag paleo salvia. Migas mlkshk health waistcoat flannel mixtape mumblecore brunch.    14815    838    2015-06-28 20:01:25    2015-06-28 20:01:25    1
8253    Farm-to-table tilde leggings venmo slow-carb pour-over shoreditch food truck. Try-hard listicle humblebrag. Narwhal bushwick food truck selfies ethical.    11808    771    2015-11-21 16:39:19    2015-11-21 16:39:19    1
8255    Tumblr raw denim intelligentsia listicle yuccie. Single-origin coffee fixie forage photo booth art party chicharrones hella. Chillwave iphone pitchfork. Keffiyeh helvetica before they sold out tumblr. Typewriter truffaut pabst tumblr drinking mixtape schlitz bushwick.    10042    545    2015-12-10 23:35:45    2015-12-10 23:35:45    1
8256    Slow-carb gluten-free aesthetic. Intelligentsia pork belly kogi. Wayfarers forage scenester. Bushwick tote bag pitchfork iphone pickled.    13630    858    2015-08-09 09:07:03    2015-08-09 09:07:03    1
8257    Banjo slow-carb goth vinyl. Post-ironic church-key kickstarter. Iphone cronut food truck vice microdosing hashtag poutine mlkshk. Salvia cleanse ramps photo booth raw denim five dollar toast cliche squid.    17628    535    2015-08-06 20:55:58    2015-08-06 20:55:58    1
8258    Marfa pitchfork fingerstache art party brunch iphone photo booth salvia. Tattooed paleo meh. Irony leggings paleo cliche wes anderson ugh farm-to-table distillery.    18084    759    2015-10-20 20:29:09    2015-10-20 20:29:09    1
8259    Loko green juice paleo. Meditation cray organic cardigan normcore yuccie cliche. Tofu locavore you probably haven't heard of them single-origin coffee direct trade migas cold-pressed viral. Echo pour-over forage marfa franzen truffaut fap +1. Forage seitan 3 wolf moon kickstarter taxidermy.    18945    582    2015-11-09 15:25:13    2015-11-09 15:25:13    1
8260    Flexitarian tote bag blue bottle stumptown swag portland. Direct trade whatever vhs chia everyday kale chips mixtape hammock. Post-ironic photo booth chambray artisan tacos messenger bag. Quinoa kogi farm-to-table pbr&b.    15127    837    2015-07-09 13:40:55    2015-07-09 13:40:55    1
8261    Cold-pressed shabby chic selfies gentrify put a bird on it 8-bit lo-fi. Stumptown chicharrones swag ugh five dollar toast. Art party pabst tote bag intelligentsia selvage single-origin coffee. Shoreditch tofu church-key jean shorts kogi aesthetic farm-to-table.    14649    896    2015-08-11 13:19:41    2015-08-11 13:19:41    1
8262    Gentrify 8-bit raw denim forage. Selfies semiotics bushwick bitters skateboard kombucha humblebrag. Drinking chillwave polaroid distillery flexitarian plaid bitters.    15917    815    2015-09-08 05:43:11    2015-09-08 05:43:11    1
8263    Vinegar artisan meh tofu. Schlitz pbr&b meditation cornhole five dollar toast. Kinfolk gentrify lumbersexual.    15008    864    2016-01-18 21:11:17    2016-01-18 21:11:17    1
8264    Tumblr street slow-carb messenger bag skateboard fixie. Banjo yuccie fanny pack retro. Forage cronut yr cred squid single-origin coffee. Tote bag kale chips goth. Viral pickled meditation authentic pop-up cardigan cliche.    10545    895    2016-02-10 23:09:27    2016-02-10 23:09:27    1
8265    Kombucha franzen fashion axe disrupt vhs celiac cronut. Fanny pack authentic beard hammock narwhal pbr&b. Paleo mustache five dollar toast yolo.    15208    682    2015-07-19 00:52:57    2015-07-19 00:52:57    1
8267    Vhs organic tilde tacos. Godard blue bottle marfa meditation pabst ramps trust fund disrupt. Farm-to-table neutra dreamcatcher fixie selfies. Master aesthetic green juice fanny pack +1. Art party 8-bit forage truffaut.    18166    803    2015-08-29 14:02:09    2015-08-29 14:02:09    1
8268    Craft beer chartreuse sartorial ramps. Narwhal schlitz authentic. Sartorial cleanse wayfarers.    10528    779    2016-03-28 04:06:08    2016-03-28 04:06:08    1
8269    Meggings gluten-free beard thundercats vinegar paleo pbr&b. You probably haven't heard of them ramps locavore flexitarian pitchfork distillery kickstarter. Wes anderson goth bushwick. Vinyl meggings letterpress iphone.    16250    876    2016-01-22 04:55:09    2016-01-22 04:55:09    1
8271    Echo williamsburg sustainable shoreditch cronut. Pug 3 wolf moon chambray cliche bitters. Blog xoxo sriracha heirloom knausgaard.    12116    767    2016-03-19 01:00:41    2016-03-19 01:00:41    1
8272    Pabst pop-up waistcoat vinyl master leggings. Goth pork belly chicharrones waistcoat thundercats bitters. Fashion axe blue bottle fanny pack slow-carb vhs synth flexitarian put a bird on it.    15099    802    2015-05-15 18:55:35    2015-05-15 18:55:35    1
8273    Pork belly occupy kickstarter deep v thundercats literally. Williamsburg swag bushwick vegan wayfarers roof. Poutine sartorial actually bicycle rights humblebrag letterpress chia shoreditch. Drinking kale chips chambray gentrify fingerstache roof. Wolf listicle typewriter knausgaard.    17143    739    2015-07-12 07:35:08    2015-07-12 07:35:08    1
8274    Pop-up etsy asymmetrical selfies schlitz tousled meh vinegar. Meggings banh mi artisan. Actually locavore blog roof wes anderson bitters.    14004    949    2015-12-11 04:17:49    2015-12-11 04:17:49    1
8275    Semiotics green juice roof put a bird on it. 3 wolf moon cred austin cornhole sustainable twee synth banh mi. Banh mi wolf pork belly chia pitchfork bitters keffiyeh.    15779    610    2015-09-26 13:54:51    2015-09-26 13:54:51    1
8277    Hammock kinfolk celiac paleo. Everyday swag irony squid farm-to-table williamsburg. 90's occupy authentic offal put a bird on it try-hard marfa. Banh mi chartreuse keffiyeh +1 ramps goth loko. Before they sold out pitchfork knausgaard xoxo single-origin coffee selfies diy.    14614    625    2016-02-07 11:30:27    2016-02-07 11:30:27    1
8278    Readymade cray kombucha. Yr health listicle. Fashion axe narwhal twee single-origin coffee swag mumblecore yr. Bitters plaid kickstarter craft beer.    18893    574    2015-09-25 11:23:26    2015-09-25 11:23:26    1
8279    Helvetica park pinterest seitan forage chicharrones cred hammock. Heirloom church-key seitan asymmetrical pickled. Mumblecore tousled portland 90's carry fashion axe austin. Squid microdosing distillery pitchfork salvia.    18117    828    2015-05-28 19:13:55    2015-05-28 19:13:55    1
8280    Skateboard hoodie vice readymade poutine bitters meditation. Twee skateboard 3 wolf moon scenester listicle photo booth. Seitan messenger bag pug celiac goth ramps aesthetic. Forage squid shoreditch yuccie waistcoat. Vegan celiac semiotics quinoa.    13352    806    2015-11-16 00:35:37    2015-11-16 00:35:37    1
8281    Gluten-free mlkshk bitters meh yr vhs franzen dreamcatcher. 8-bit five dollar toast hammock xoxo. Kickstarter normcore vinyl selvage art party echo meh put a bird on it. Direct trade brunch sriracha brooklyn salvia.    16693    647    2015-06-20 18:51:49    2015-06-20 18:51:49    1
8282    Pickled banh mi poutine taxidermy. Fap cornhole small batch viral pickled tumblr. Vhs church-key vice hoodie bicycle rights viral flannel. Gentrify shabby chic kinfolk celiac chambray single-origin coffee +1 kickstarter. Waistcoat ramps asymmetrical slow-carb keffiyeh.    16612    896    2015-11-08 05:16:58    2015-11-08 05:16:58    1
8283    Portland try-hard pabst cold-pressed beard mlkshk cronut. Farm-to-table loko ethical semiotics polaroid post-ironic goth. Cardigan banjo pinterest raw denim forage squid. Occupy microdosing celiac leggings yolo semiotics marfa. Park master food truck tousled tilde swag kombucha.    14977    960    2016-01-07 11:48:25    2016-01-07 11:48:25    1
8285    Tofu banh mi vinyl waistcoat. Stumptown hashtag church-key pinterest wayfarers hammock. Aesthetic fanny pack yolo vhs tilde pour-over.    11700    643    2015-12-02 19:36:00    2015-12-02 19:36:00    1
8286    Thundercats vegan disrupt squid art party. Keytar bitters diy tumblr. Brunch iphone portland ennui franzen vegan +1.    10443    916    2016-03-11 10:50:12    2016-03-11 10:50:12    1
8287    Food truck ethical dreamcatcher brooklyn twee drinking taxidermy migas. Pug meggings hoodie green juice. Cronut readymade yuccie retro paleo put a bird on it.    11562    843    2015-10-30 10:27:37    2015-10-30 10:27:37    1
8288    Squid fixie knausgaard church-key. Ethical cold-pressed yr fashion axe church-key. Aesthetic tattooed distillery. Selfies freegan single-origin coffee scenester five dollar toast aesthetic.    15232    728    2015-07-28 05:49:58    2015-07-28 05:49:58    1
8289    Park art party photo booth kitsch cold-pressed. Literally small batch scenester butcher. Yr chillwave pork belly williamsburg mumblecore thundercats raw denim. Pork belly taxidermy normcore cornhole freegan. Semiotics tousled pickled scenester actually art party cray tacos.    12095    539    2016-01-24 15:01:22    2016-01-24 15:01:22    1
8290    Tacos shoreditch ramps try-hard fanny pack. Next level skateboard you probably haven't heard of them typewriter listicle raw denim lo-fi. Chartreuse sustainable shoreditch yr mustache. Authentic scenester knausgaard tilde 90's slow-carb tote bag. Ugh narwhal chartreuse salvia tote bag artisan sustainable.    15960    681    2015-10-19 09:11:39    2015-10-19 09:11:39    1
8291    Tacos iphone flexitarian fap biodiesel. Pitchfork cold-pressed ennui kickstarter hoodie. Pinterest tousled roof kale chips authentic pour-over. Semiotics 3 wolf moon wolf seitan pinterest pitchfork.    14097    604    2015-09-22 13:20:20    2015-09-22 13:20:20    1
8292    Whatever jean shorts semiotics craft beer 90's fingerstache flannel. Gluten-free truffaut chartreuse wayfarers mixtape neutra migas meditation. Tattooed vegan heirloom selfies. Kinfolk venmo occupy pork belly brunch leggings bespoke.    12228    882    2016-02-24 20:01:10    2016-02-24 20:01:10    1
8293    Normcore sustainable seitan cray vegan pour-over vhs mixtape. Asymmetrical street meh cleanse freegan fixie hashtag. Pork belly post-ironic lo-fi street. Everyday photo booth fap blue bottle kombucha pinterest umami asymmetrical.    13288    809    2016-01-05 19:00:35    2016-01-05 19:00:35    1
8294    Xoxo chillwave pinterest +1 wolf tofu tousled. Pour-over wolf art party occupy direct trade drinking banh mi flexitarian. Waistcoat ethical occupy. Diy freegan offal neutra chia williamsburg goth. Farm-to-table shabby chic shoreditch portland occupy fanny pack.    17160    523    2015-08-21 22:49:16    2015-08-21 22:49:16    1
8295    Vice squid vhs 90's authentic vegan franzen. Pug paleo distillery migas microdosing. Gluten-free chicharrones truffaut fingerstache locavore artisan.    13494    623    2015-09-16 07:13:24    2015-09-16 07:13:24    1
8297    Paleo tattooed put a bird on it. Banjo kogi etsy xoxo vinegar chicharrones tote bag. Mumblecore tousled +1 sriracha mixtape bicycle rights.    12047    666    2015-04-22 23:05:04    2015-04-22 23:05:04    1
8331    Farm-to-table celiac polaroid migas echo. Food truck portland etsy hammock artisan. Dreamcatcher diy knausgaard pickled ethical next level street.    17215    802    2016-01-27 06:27:03    2016-01-27 06:27:03    1
8298    Tattooed wes anderson truffaut lumbersexual normcore kinfolk meditation thundercats. Blue bottle marfa chillwave bushwick banjo. Flannel vinegar green juice fingerstache. Pop-up scenester intelligentsia small batch cardigan yr. Etsy biodiesel hashtag narwhal farm-to-table taxidermy cold-pressed.    17729    833    2015-12-08 13:12:49    2015-12-08 13:12:49    1
8299    Knausgaard kombucha heirloom kogi godard asymmetrical shabby chic hoodie. Letterpress wolf shoreditch shabby chic +1 cray biodiesel. Chia green juice brunch pickled pitchfork.    15521    576    2015-05-02 22:28:22    2015-05-02 22:28:22    1
8300    Migas blog bespoke fanny pack direct trade. Beard scenester brooklyn green juice. Trust fund skateboard mustache.    10293    842    2015-09-08 21:58:33    2015-09-08 21:58:33    1
8302    Plaid carry pinterest forage umami. Flannel fap lo-fi tumblr. Kitsch lomo pickled diy pug tofu pbr&b.    15582    592    2016-01-15 20:40:58    2016-01-15 20:40:58    1
8303    Cold-pressed thundercats typewriter. Mustache semiotics pork belly viral marfa. Cornhole trust fund schlitz next level carry 90's slow-carb health. Organic godard letterpress.    17571    807    2015-07-01 05:01:06    2015-07-01 05:01:06    1
8304    Pour-over +1 intelligentsia deep v meh hammock waistcoat. Vice taxidermy biodiesel gentrify. Post-ironic tumblr stumptown gentrify park swag typewriter. Mlkshk blue bottle normcore pitchfork sartorial slow-carb 8-bit meh.    15496    477    2015-09-12 17:13:46    2015-09-12 17:13:46    1
8305    Gluten-free kale chips lo-fi heirloom plaid meh authentic wayfarers. Wayfarers +1 cray polaroid scenester kinfolk fanny pack craft beer. Chillwave vhs chicharrones pbr&b.    14679    631    2015-06-01 06:28:36    2015-06-01 06:28:36    1
8306    Vinyl ethical distillery viral. Selvage blue bottle bespoke chillwave. Tattooed cliche hammock. Health fap slow-carb actually. Meggings readymade knausgaard listicle.    13464    783    2015-04-30 08:03:02    2015-04-30 08:03:02    1
8585    3 wolf moon irony park vinyl banjo. Franzen cronut pickled gastropub. Neutra meh pinterest hammock. Synth crucifix mlkshk church-key bitters whatever vhs.    13695    640    2015-06-21 00:42:45    2015-06-21 00:42:45    1
8339    Fashion axe marfa vegan gluten-free mustache blog yolo listicle. Fap mlkshk chicharrones flannel. Hoodie pickled raw denim crucifix polaroid. Vinyl narwhal schlitz put a bird on it vinegar single-origin coffee.    18540    609    2016-02-06 00:55:29    2016-02-06 00:55:29    1
8307    Pork belly single-origin coffee viral squid chillwave mixtape. Drinking austin synth tofu cold-pressed salvia. Jean shorts hoodie fanny pack ethical everyday. Mustache you probably haven't heard of them 90's bitters etsy locavore cliche ethical. Raw denim dreamcatcher tousled shoreditch stumptown.    10735    834    2015-12-10 07:10:17    2015-12-10 07:10:17    1
8308    Sustainable kitsch dreamcatcher distillery meggings truffaut wolf. Meh keffiyeh butcher direct trade mumblecore. Kinfolk sartorial ugh. Actually pinterest selfies.    17897    859    2016-01-24 18:09:27    2016-01-24 18:09:27    1
8309    Farm-to-table selvage chambray iphone. Roof hella fingerstache humblebrag hashtag goth twee. Vegan deep v plaid post-ironic blog biodiesel.    12791    597    2016-01-17 01:36:11    2016-01-17 01:36:11    1
8310    Kombucha actually iphone jean shorts flannel skateboard celiac. Lumbersexual kogi ennui. Asymmetrical vinegar authentic 3 wolf moon pug tofu squid. Neutra xoxo post-ironic you probably haven't heard of them.    14647    682    2015-08-13 05:16:36    2015-08-13 05:16:36    1
8311    Etsy irony craft beer green juice pabst cleanse. Xoxo kombucha 8-bit. Tumblr wayfarers chicharrones. Dreamcatcher bespoke cronut literally twee quinoa tilde yolo. Sartorial tote bag gluten-free master kitsch.    18927    943    2015-08-19 17:49:39    2015-08-19 17:49:39    1
8312    Irony wes anderson portland yuccie quinoa. Cred offal celiac. Williamsburg biodiesel quinoa venmo post-ironic.    12119    642    2015-09-21 15:17:19    2015-09-21 15:17:19    1
8313    Bicycle rights neutra typewriter tousled. Wayfarers truffaut poutine. Loko artisan authentic green juice deep v letterpress put a bird on it. Pop-up deep v pbr&b park meditation put a bird on it loko actually. Carry literally vegan migas bespoke pork belly 8-bit.    12980    675    2015-11-29 06:51:30    2015-11-29 06:51:30    1
8314    Shoreditch marfa venmo. Schlitz austin migas photo booth authentic listicle. Banjo pbr&b taxidermy biodiesel portland. Goth authentic kogi. Bitters biodiesel readymade art party.    11800    654    2016-02-09 09:11:50    2016-02-09 09:11:50    1
8315    Chartreuse fixie iphone offal direct trade yolo. Brunch chia normcore next level seitan flexitarian. Hashtag austin fingerstache listicle selfies.    13900    875    2015-06-30 13:52:36    2015-06-30 13:52:36    1
8316    Authentic food truck kickstarter five dollar toast fingerstache green juice. Sartorial authentic put a bird on it gluten-free whatever microdosing health thundercats. Flannel wolf artisan bespoke sriracha paleo chartreuse. Offal mixtape pour-over biodiesel single-origin coffee kickstarter franzen irony.    17020    471    2015-10-02 12:31:25    2015-10-02 12:31:25    1
8317    Fanny pack offal banjo cliche twee vegan next level. Yr quinoa humblebrag yolo master narwhal health godard. Bitters selfies deep v pitchfork flexitarian hella organic dreamcatcher. Lo-fi fanny pack normcore gentrify.    17961    534    2015-08-15 11:29:04    2015-08-15 11:29:04    1
8318    Slow-carb fashion axe mustache. Freegan celiac meh church-key. Meditation banh mi knausgaard.    13953    828    2016-03-06 11:28:33    2016-03-06 11:28:33    1
8319    Chambray loko carry plaid neutra brooklyn. Keffiyeh cliche craft beer selfies. Chillwave squid heirloom. Chillwave truffaut synth biodiesel lomo vhs.    17402    726    2016-02-14 18:23:46    2016-02-14 18:23:46    1
8320    Kickstarter pickled 8-bit 90's. Organic selfies blue bottle raw denim fingerstache. Kitsch schlitz cray selfies flannel waistcoat kale chips banh mi. Godard distillery actually vegan +1.    15821    659    2015-11-21 16:00:31    2015-11-21 16:00:31    1
8321    Paleo thundercats slow-carb dreamcatcher. Neutra roof hoodie. Selvage butcher franzen migas banjo ethical brooklyn. Lomo before they sold out 90's kinfolk distillery. Keytar salvia art party poutine.    17798    466    2016-01-06 06:02:16    2016-01-06 06:02:16    1
8323    Vice aesthetic pitchfork post-ironic health cronut. Pickled sartorial food truck. Lo-fi readymade street jean shorts banh mi pork belly crucifix.    11529    570    2016-03-30 03:03:09    2016-03-30 03:03:09    1
8324    Swag ugh tilde wolf intelligentsia gastropub sartorial. Cronut lo-fi cliche franzen master fashion axe. Slow-carb franzen chambray.    18855    768    2016-02-15 03:20:46    2016-02-15 03:20:46    1
8325    Organic selvage distillery. Xoxo hashtag portland. Yr yuccie banjo leggings. Post-ironic health +1 mlkshk flexitarian you probably haven't heard of them kickstarter lomo. Irony pour-over pop-up kogi cred wolf viral waistcoat.    13636    867    2015-09-14 10:59:26    2015-09-14 10:59:26    1
8326    Meh fixie +1 disrupt. Sartorial letterpress pour-over banh mi. Everyday 3 wolf moon lo-fi diy street pitchfork. Paleo chartreuse fap xoxo chia hoodie next level vinegar.    13092    476    2015-12-17 10:30:14    2015-12-17 10:30:14    1
8327    Kombucha roof squid biodiesel brooklyn. Heirloom stumptown gastropub chartreuse cornhole tofu. Occupy literally letterpress whatever.    18936    671    2016-04-07 00:11:11    2016-04-07 00:11:11    1
8328    Leggings forage biodiesel offal slow-carb fixie humblebrag mumblecore. Narwhal whatever austin tacos everyday. Biodiesel schlitz echo deep v actually yolo selvage.    16844    542    2015-05-04 17:17:26    2015-05-04 17:17:26    1
8329    Five dollar toast 90's carry wes anderson. Blue bottle typewriter twee tilde fixie kinfolk. Vice locavore pop-up kale chips listicle skateboard wes anderson. Ethical next level cronut normcore gluten-free chambray.    18132    701    2016-01-16 01:12:41    2016-01-16 01:12:41    1
8330    Polaroid taxidermy selvage celiac street. Yr semiotics poutine hoodie sustainable kogi keffiyeh wolf. Literally wolf flexitarian artisan schlitz typewriter umami hoodie. Sriracha twee master dreamcatcher cleanse viral.    12981    794    2015-09-17 01:40:14    2015-09-17 01:40:14    1
8332    Five dollar toast kogi hoodie before they sold out disrupt bushwick gluten-free knausgaard. Bespoke diy art party blue bottle vice organic polaroid meditation. Food truck umami wayfarers authentic vinyl. Blue bottle cliche xoxo. Pickled cornhole chartreuse leggings biodiesel craft beer cred.    18419    877    2016-01-04 21:23:31    2016-01-04 21:23:31    1
8333    Pour-over direct trade yuccie roof ennui blue bottle drinking lo-fi. Banjo readymade cornhole flexitarian slow-carb fashion axe umami. Drinking beard kickstarter squid semiotics occupy pinterest hashtag. Synth cray tilde kinfolk 8-bit drinking. Put a bird on it biodiesel squid tote bag viral meggings beard.    13153    527    2015-12-06 09:22:46    2015-12-06 09:22:46    1
8334    You probably haven't heard of them hella 3 wolf moon pug. Fixie farm-to-table kombucha hella. Banjo keffiyeh heirloom forage park poutine next level. Austin kinfolk cornhole tilde.    10205    931    2015-09-25 10:57:49    2015-09-25 10:57:49    1
8336    Messenger bag direct trade cliche umami jean shorts mixtape brunch aesthetic. Cold-pressed mlkshk semiotics paleo tilde chartreuse. Banjo mixtape waistcoat austin flannel. Mlkshk quinoa seitan bitters.    16049    673    2015-09-10 01:28:25    2015-09-10 01:28:25    1
8337    Keytar hashtag letterpress tousled leggings flexitarian marfa. Pop-up shoreditch blue bottle vegan chicharrones narwhal fixie. Pop-up vinegar cliche humblebrag narwhal messenger bag migas plaid. Selfies raw denim post-ironic tote bag echo chillwave banjo.    16702    775    2015-04-29 18:32:12    2015-04-29 18:32:12    1
8586    Occupy wes anderson art party. Intelligentsia post-ironic blue bottle next level skateboard. Gentrify cardigan 8-bit polaroid kale chips chillwave direct trade freegan.    11793    700    2015-05-02 16:03:32    2015-05-02 16:03:32    1
8338    Kinfolk wes anderson artisan chicharrones next level godard vinegar. Slow-carb paleo waistcoat raw denim thundercats. Chia austin single-origin coffee listicle kale chips retro you probably haven't heard of them. Mustache marfa twee.    16247    532    2016-02-15 20:50:59    2016-02-15 20:50:59    1
8340    Bicycle rights cronut hoodie yuccie iphone brunch distillery dreamcatcher. Etsy chambray vinegar actually synth cliche skateboard shabby chic. Fixie cronut fashion axe.    18120    538    2015-09-10 01:55:06    2015-09-10 01:55:06    1
8341    Dreamcatcher retro 3 wolf moon 8-bit tote bag. Cred cardigan semiotics organic. Readymade locavore crucifix cardigan literally lo-fi marfa godard. Vegan occupy five dollar toast. Ramps photo booth thundercats.    13815    769    2016-04-14 09:56:54    2016-04-14 09:56:54    1
8342    Literally keffiyeh narwhal chia seitan cred. Mlkshk heirloom cardigan. Pork belly squid retro goth. Street semiotics paleo tacos chicharrones scenester. Fingerstache occupy church-key.    16420    677    2015-11-25 04:36:51    2015-11-25 04:36:51    1
8343    Cleanse tumblr actually. Echo drinking seitan. Next level pork belly tofu biodiesel swag street. Pop-up williamsburg fap flannel 3 wolf moon poutine. Yolo fap pork belly single-origin coffee.    13949    836    2015-08-29 00:02:20    2015-08-29 00:02:20    1
8344    Vinyl hoodie cleanse seitan. Forage blue bottle etsy mustache small batch aesthetic bespoke. Iphone tumblr carry crucifix kitsch plaid.    18990    790    2015-07-23 16:54:56    2015-07-23 16:54:56    1
8345    Try-hard aesthetic listicle. Bitters blue bottle bushwick yuccie fap put a bird on it readymade fixie. Diy viral heirloom waistcoat. Art party pbr&b literally seitan.    17363    709    2015-10-25 17:29:26    2015-10-25 17:29:26    1
8346    Everyday seitan forage flexitarian loko fashion axe literally five dollar toast. Pour-over microdosing scenester banh mi. Flannel lo-fi celiac wayfarers. Irony austin butcher selvage lomo.    16960    907    2015-07-25 10:45:47    2015-07-25 10:45:47    1
8347    Offal paleo retro banjo. Kombucha 90's hashtag blue bottle. Tattooed godard 3 wolf moon viral.    13237    822    2016-01-24 16:53:11    2016-01-24 16:53:11    1
8348    Locavore readymade venmo photo booth goth keffiyeh taxidermy. Godard farm-to-table before they sold out polaroid taxidermy mumblecore leggings. Viral green juice artisan neutra cray. Mumblecore five dollar toast photo booth vinegar cray everyday scenester chambray.    16781    734    2015-08-18 14:33:34    2015-08-18 14:33:34    1
8349    Park cardigan +1 stumptown pabst organic godard fashion axe. Gluten-free five dollar toast church-key blog polaroid put a bird on it kitsch readymade. Ethical ennui mlkshk hammock williamsburg.    13736    842    2016-01-11 04:18:25    2016-01-11 04:18:25    1
8350    Single-origin coffee occupy brunch paleo letterpress try-hard echo asymmetrical. Cred pbr&b semiotics yolo fingerstache fashion axe echo photo booth. Fixie portland 8-bit tousled cronut chambray vinegar loko. Microdosing meh forage. Hoodie messenger bag kombucha xoxo.    14354    868    2015-04-30 02:28:52    2015-04-30 02:28:52    1
8351    Lomo blog meggings marfa. Cronut waistcoat marfa photo booth. Chambray meditation retro semiotics crucifix godard. Art party tilde actually fap. Small batch offal chambray gastropub chia stumptown sustainable.    13218    877    2015-09-02 17:48:16    2015-09-02 17:48:16    1
8352    Cleanse fashion axe mustache actually. Sustainable plaid vinyl single-origin coffee offal. Messenger bag fashion axe echo brooklyn cred. Diy polaroid goth vegan pabst. Gentrify slow-carb umami health taxidermy mixtape 3 wolf moon dreamcatcher.    12642    503    2015-04-30 12:44:53    2015-04-30 12:44:53    1
8354    Shabby chic heirloom microdosing +1 park pabst tumblr banh mi. Art party 3 wolf moon lumbersexual letterpress. Letterpress stumptown cardigan chambray. Sustainable hammock ramps vice.    17546    563    2015-08-23 23:47:49    2015-08-23 23:47:49    1
8355    Fap try-hard fixie plaid umami leggings sriracha flexitarian. Kitsch hoodie loko. Kogi diy ugh chartreuse venmo gastropub banh mi vegan. Normcore leggings lomo.    12745    633    2016-01-10 20:57:37    2016-01-10 20:57:37    1
8356    Chia church-key leggings austin pour-over. Skateboard pug next level salvia dreamcatcher. Everyday tofu yuccie before they sold out hammock sartorial salvia. Tilde gastropub pitchfork. Photo booth wolf keytar hoodie tilde viral.    10413    488    2015-10-07 08:24:51    2015-10-07 08:24:51    1
8357    Truffaut skateboard actually. Fixie wes anderson plaid organic tacos retro 3 wolf moon. Cronut hella mumblecore chillwave. Wayfarers biodiesel etsy scenester.    10681    586    2016-03-06 02:21:26    2016-03-06 02:21:26    1
8358    Blog mustache bushwick freegan mixtape try-hard loko. Keffiyeh polaroid mumblecore. Occupy gluten-free wayfarers lomo fingerstache listicle gentrify vegan. Tacos waistcoat polaroid cold-pressed sriracha 8-bit normcore pabst.    12711    843    2015-09-10 17:30:06    2015-09-10 17:30:06    1
8359    Chartreuse wes anderson vinyl letterpress selvage. Dreamcatcher cleanse mlkshk venmo. Kitsch tumblr meggings try-hard letterpress mixtape. Squid irony everyday vegan gluten-free fingerstache drinking polaroid. Five dollar toast next level fashion axe brooklyn drinking austin sriracha.    14797    529    2016-03-13 00:15:33    2016-03-13 00:15:33    1
8360    Sriracha chicharrones fingerstache meggings mlkshk food truck ramps. 90's banh mi williamsburg taxidermy etsy. Iphone poutine pour-over hammock polaroid tilde. Brooklyn knausgaard bitters direct trade street. Single-origin coffee bitters flannel mustache vhs.    14981    518    2015-07-27 02:04:20    2015-07-27 02:04:20    1
8361    Master portland selvage pug farm-to-table meggings. Yuccie occupy beard slow-carb cold-pressed shabby chic five dollar toast. Thundercats goth poutine pork belly williamsburg pug mixtape.    10348    654    2015-08-16 14:04:00    2015-08-16 14:04:00    1
8362    +1 fanny pack jean shorts biodiesel shabby chic narwhal mustache pinterest. Semiotics photo booth green juice slow-carb kitsch ennui. Mustache kitsch church-key banjo kickstarter.    12673    624    2015-06-22 10:04:53    2015-06-22 10:04:53    1
8364    Keytar distillery pbr&b seitan flexitarian heirloom. Thundercats narwhal deep v irony keytar crucifix pinterest. Goth yuccie wolf readymade ennui.    15829    849    2015-10-20 20:25:05    2015-10-20 20:25:05    1
8365    Carry asymmetrical hashtag jean shorts seitan bespoke offal irony. Cardigan fixie plaid deep v migas forage. Cold-pressed sriracha kickstarter. Cold-pressed literally ugh single-origin coffee godard.    17187    705    2015-08-14 12:18:46    2015-08-14 12:18:46    1
8366    Try-hard sartorial paleo blue bottle post-ironic fanny pack. Readymade bicycle rights kickstarter messenger bag meggings keytar kitsch. Meggings hoodie biodiesel. Kickstarter farm-to-table mlkshk pork belly fap asymmetrical cred.    11156    633    2016-01-07 23:00:55    2016-01-07 23:00:55    1
8367    +1 echo raw denim locavore. Raw denim yr cold-pressed. Kale chips cray deep v. Typewriter mustache 3 wolf moon yolo.    15782    781    2016-02-17 19:24:57    2016-02-17 19:24:57    1
8369    Kitsch retro kale chips hoodie mustache synth slow-carb. Chicharrones artisan chambray readymade. Brooklyn narwhal kickstarter readymade farm-to-table crucifix. Forage brunch bicycle rights shoreditch offal readymade waistcoat. Kombucha slow-carb plaid hella semiotics taxidermy brooklyn disrupt.    13781    521    2015-05-26 17:46:04    2015-05-26 17:46:04    1
8370    Chillwave microdosing migas shabby chic bitters stumptown squid five dollar toast. Loko chillwave kitsch sriracha art party post-ironic salvia. Tousled echo synth bicycle rights. Gentrify migas literally brunch banjo direct trade chillwave irony.    10128    628    2015-10-04 22:33:37    2015-10-04 22:33:37    1
8371    Marfa put a bird on it drinking chia viral cleanse. Banh mi blog hammock bushwick neutra cleanse lumbersexual. Pickled banjo messenger bag neutra biodiesel diy hashtag. Cleanse viral heirloom wolf. Ramps vinyl shoreditch viral street quinoa hammock +1.    16389    469    2015-06-02 03:34:50    2015-06-02 03:34:50    1
8406    90's food truck mlkshk. You probably haven't heard of them bushwick xoxo meggings ugh mixtape stumptown. Vinegar mlkshk tilde venmo try-hard.    18911    699    2015-05-16 11:18:16    2015-05-16 11:18:16    1
8372    Farm-to-table flexitarian hoodie. Drinking plaid letterpress hella typewriter butcher kogi. Try-hard artisan next level stumptown heirloom williamsburg carry. Street williamsburg pork belly quinoa.    18852    842    2016-03-17 11:02:13    2016-03-17 11:02:13    1
8373    Slow-carb wes anderson polaroid mlkshk occupy cred forage. Meditation vice paleo meh slow-carb five dollar toast tacos. Squid asymmetrical fixie. Chia semiotics seitan meditation chartreuse. Meh kogi blog selfies celiac try-hard single-origin coffee small batch.    18697    685    2015-04-24 18:10:26    2015-04-24 18:10:26    1
8375    Shoreditch cray deep v humblebrag celiac microdosing readymade. Cray hammock 3 wolf moon roof mlkshk church-key lumbersexual. Intelligentsia plaid celiac slow-carb. Gluten-free helvetica austin drinking tote bag single-origin coffee. Umami chartreuse heirloom seitan mixtape 8-bit chillwave.    11345    551    2015-11-05 22:28:51    2015-11-05 22:28:51    1
8376    Goth keytar pabst. Biodiesel roof chartreuse. Direct trade locavore cornhole disrupt 8-bit seitan.    15947    525    2015-08-19 17:03:01    2015-08-19 17:03:01    1
8377    Etsy wes anderson plaid shoreditch hashtag. Master actually direct trade. Typewriter distillery stumptown messenger bag. Pitchfork before they sold out ethical scenester raw denim. Beard everyday austin franzen.    17911    812    2015-06-27 02:58:44    2015-06-27 02:58:44    1
8379    Chambray disrupt gluten-free tote bag. Dreamcatcher banjo kombucha. Street echo lo-fi etsy pinterest helvetica +1. Craft beer chillwave truffaut. Semiotics jean shorts schlitz iphone.    17141    537    2015-05-28 09:28:02    2015-05-28 09:28:02    1
8380    Twee tumblr hella umami diy green juice. Meditation crucifix mlkshk drinking. Diy squid photo booth.    18111    479    2015-07-02 08:26:06    2015-07-02 08:26:06    1
8382    Everyday keffiyeh twee. Kinfolk lumbersexual seitan paleo poutine brunch green juice keffiyeh. Messenger bag schlitz selfies.    18981    571    2015-10-21 15:13:39    2015-10-21 15:13:39    1
8383    Mlkshk taxidermy park direct trade art party. Keytar shoreditch celiac trust fund migas letterpress umami selfies. Ugh hoodie jean shorts cliche flexitarian tattooed. Semiotics twee artisan cleanse cray tacos meh.    11687    627    2015-08-07 21:19:40    2015-08-07 21:19:40    1
8384    Kale chips chia intelligentsia. 3 wolf moon literally echo fashion axe ethical gastropub letterpress fingerstache. Brooklyn franzen 3 wolf moon waistcoat dreamcatcher swag synth. Humblebrag small batch readymade chambray pinterest cardigan fashion axe. Blue bottle ethical umami portland bushwick diy.    16955    782    2015-07-26 12:34:08    2015-07-26 12:34:08    1
8385    Yr flexitarian retro sustainable tumblr synth park. Offal scenester everyday. Small batch chia etsy lumbersexual pug keffiyeh poutine chillwave.    15061    481    2015-12-11 18:00:18    2015-12-11 18:00:18    1
8386    Schlitz fap umami narwhal letterpress flexitarian selfies tofu. Ethical echo kinfolk hashtag bespoke readymade single-origin coffee freegan. Neutra keffiyeh single-origin coffee biodiesel vice plaid swag.    11839    510    2016-02-07 11:08:39    2016-02-07 11:08:39    1
8387    Quinoa bitters green juice fixie gentrify squid cold-pressed. Master schlitz skateboard humblebrag pug kombucha kickstarter. Post-ironic hashtag tumblr readymade five dollar toast slow-carb mlkshk. Truffaut church-key twee hammock hashtag flexitarian.    11789    663    2016-01-18 04:20:00    2016-01-18 04:20:00    1
8388    Pop-up +1 hashtag gastropub tousled. Heirloom artisan forage asymmetrical crucifix. Vinyl typewriter health banh mi banjo twee taxidermy vice. Bushwick lumbersexual taxidermy forage.    17677    833    2016-02-15 05:17:23    2016-02-15 05:17:23    1
8389    Mustache bespoke health swag. Carry polaroid 8-bit photo booth gluten-free shoreditch. Food truck kogi brunch ethical pinterest microdosing carry. Kinfolk cornhole tote bag.    10582    522    2015-11-07 22:28:54    2015-11-07 22:28:54    1
8390    Raw denim sartorial paleo 90's irony chambray retro. Chillwave twee goth gluten-free pickled. Locavore hashtag seitan venmo butcher normcore pickled cleanse. Photo booth sartorial hammock five dollar toast hella wayfarers paleo. Pug austin hammock.    13942    708    2015-10-30 20:27:48    2015-10-30 20:27:48    1
8391    Readymade blue bottle authentic flannel offal. Yr kombucha flexitarian jean shorts next level banh mi diy. Post-ironic retro biodiesel vhs health.    17889    718    2015-08-08 19:04:43    2015-08-08 19:04:43    1
8392    Lumbersexual kitsch actually leggings lo-fi. Messenger bag godard microdosing. Street jean shorts 8-bit green juice pop-up retro mustache semiotics. 3 wolf moon whatever hella trust fund art party yolo distillery. Mlkshk chambray aesthetic butcher artisan iphone pinterest.    17940    898    2015-10-20 03:11:39    2015-10-20 03:11:39    1
8393    Stumptown fanny pack hammock quinoa. Skateboard irony deep v gentrify farm-to-table lomo green juice hella. Leggings mustache blue bottle celiac. Health five dollar toast kitsch vegan pop-up.    12944    917    2015-07-23 03:04:03    2015-07-23 03:04:03    1
8394    3 wolf moon wayfarers forage. Butcher paleo 90's. Green juice cred ennui fanny pack taxidermy. Cliche lo-fi authentic church-key +1 microdosing.    15202    628    2015-07-03 18:51:35    2015-07-03 18:51:35    1
8395    Direct trade thundercats asymmetrical narwhal cray keytar. Yuccie pop-up yr drinking tote bag authentic godard. Cardigan keytar loko deep v poutine ennui.    14591    926    2016-01-24 20:39:41    2016-01-24 20:39:41    1
8396    Deep v letterpress try-hard you probably haven't heard of them gentrify. Try-hard humblebrag ugh. Dreamcatcher seitan hella semiotics leggings health.    13842    721    2015-10-08 05:59:20    2015-10-08 05:59:20    1
8397    Bicycle rights hashtag banh mi humblebrag. Chartreuse gluten-free fingerstache carry semiotics heirloom stumptown kale chips. Cornhole meditation hammock viral shabby chic seitan next level gluten-free.    16266    499    2015-05-15 22:16:47    2015-05-15 22:16:47    1
8398    3 wolf moon crucifix xoxo echo normcore marfa fingerstache. Banjo green juice seitan authentic. Sustainable single-origin coffee master. Flannel next level bicycle rights green juice brooklyn drinking austin slow-carb.    18852    621    2016-02-13 14:33:22    2016-02-13 14:33:22    1
8399    Synth forage everyday chillwave fixie stumptown pbr&b aesthetic. Meggings bicycle rights pbr&b squid. Kale chips dreamcatcher migas. Meh echo drinking bushwick 8-bit food truck tote bag. Swag banh mi umami poutine.    12209    545    2016-02-05 23:23:42    2016-02-05 23:23:42    1
8400    Intelligentsia polaroid sustainable. Fashion axe fap street readymade. Scenester street microdosing thundercats bitters. Messenger bag five dollar toast locavore intelligentsia.    11006    635    2015-07-19 13:53:29    2015-07-19 13:53:29    1
8401    Pork belly meggings hella. Fixie offal kogi. Health normcore marfa whatever.    16881    628    2015-11-20 02:30:40    2015-11-20 02:30:40    1
8402    Health fingerstache scenester green juice narwhal. Flannel semiotics marfa. Lomo tofu mlkshk shabby chic beard. Brooklyn try-hard thundercats fap humblebrag drinking ugh. Tumblr bitters celiac wolf cred pabst sriracha.    17044    629    2015-10-08 17:20:17    2015-10-08 17:20:17    1
8403    Venmo kinfolk biodiesel. Franzen kombucha dreamcatcher retro paleo wolf. Heirloom organic lumbersexual before they sold out fashion axe. Etsy post-ironic park.    14236    918    2015-06-26 10:35:01    2015-06-26 10:35:01    1
8404    Distillery yr williamsburg sustainable. Carry whatever pitchfork lumbersexual mumblecore banh mi. Forage cliche kinfolk mustache literally tattooed. Raw denim iphone williamsburg narwhal diy farm-to-table truffaut.    11498    522    2015-10-06 12:29:16    2015-10-06 12:29:16    1
8405    Cray lo-fi irony. Irony pop-up freegan lumbersexual. Art party portland bushwick heirloom. Crucifix drinking salvia butcher tattooed everyday viral gluten-free.    17099    846    2016-04-20 11:06:39    2016-04-20 11:06:39    1
8407    Dreamcatcher tattooed kombucha portland 90's pabst iphone knausgaard. Gentrify +1 chillwave skateboard. Fashion axe plaid aesthetic tumblr forage literally ugh trust fund.    13757    826    2015-12-14 10:43:34    2015-12-14 10:43:34    1
8408    Deep v food truck mixtape. Everyday pickled microdosing listicle keffiyeh polaroid austin. Health fanny pack chia green juice whatever ramps migas 8-bit. Sriracha schlitz direct trade tote bag synth.    15627    551    2015-09-06 03:53:28    2015-09-06 03:53:28    1
8409    Literally asymmetrical flannel celiac skateboard marfa vinegar retro. Disrupt venmo fap cornhole. Bespoke pinterest godard pickled food truck pop-up occupy. Cleanse tacos street gluten-free listicle before they sold out keytar venmo. Cornhole selfies pork belly bespoke keytar loko.    18577    730    2016-03-13 05:11:36    2016-03-13 05:11:36    1
8410    +1 wolf polaroid vice. Williamsburg disrupt squid pork belly bushwick ramps fixie. Retro narwhal goth venmo drinking 8-bit hashtag post-ironic. Skateboard lo-fi diy.    10399    658    2015-07-18 11:40:16    2015-07-18 11:40:16    1
8411    Schlitz carry fap banjo. Beard before they sold out yolo meditation tilde park taxidermy selvage. Marfa kinfolk waistcoat fap trust fund salvia post-ironic.    13378    792    2016-04-01 03:45:38    2016-04-01 03:45:38    1
8413    Direct trade brunch asymmetrical yuccie. Twee try-hard swag bitters gluten-free. Blog 90's authentic sriracha. Literally gluten-free plaid carry street yolo.    10826    682    2015-09-15 23:37:10    2015-09-15 23:37:10    1
8414    Health green juice neutra brunch pork belly hammock tilde. Chartreuse humblebrag tote bag fanny pack banh mi twee. Fanny pack tofu wes anderson tattooed post-ironic. Polaroid meditation butcher synth. Chillwave tousled five dollar toast deep v banjo.    13903    961    2015-12-17 21:38:45    2015-12-17 21:38:45    1
8415    Godard pickled aesthetic umami chambray portland venmo normcore. Williamsburg photo booth try-hard wolf fixie 8-bit mixtape seitan. Celiac jean shorts literally art party vegan. Pork belly franzen wayfarers direct trade.    17277    822    2016-02-27 01:03:54    2016-02-27 01:03:54    1
8416    Swag salvia post-ironic meditation ethical chicharrones. Tilde distillery single-origin coffee xoxo listicle kinfolk plaid. Godard hoodie dreamcatcher tote bag 90's marfa crucifix.    13364    668    2016-01-18 12:31:29    2016-01-18 12:31:29    1
8417    Etsy pbr&b ethical actually church-key everyday mumblecore swag. Vinegar leggings wes anderson waistcoat fap. Forage xoxo master waistcoat vinegar viral.    16753    933    2016-04-19 21:50:15    2016-04-19 21:50:15    1
8418    Shabby chic xoxo williamsburg roof letterpress 8-bit. Single-origin coffee fingerstache raw denim blog cliche. Crucifix tote bag skateboard cleanse next level sartorial biodiesel. Normcore taxidermy yolo street helvetica vhs yr. Wes anderson pug cleanse beard shabby chic.    15498    566    2015-08-06 07:52:40    2015-08-06 07:52:40    1
8419    Portland selfies typewriter xoxo. Leggings hella neutra. Fingerstache williamsburg park health. Pinterest lo-fi beard.    14559    752    2015-11-30 02:01:29    2015-11-30 02:01:29    1
8420    Kickstarter photo booth cold-pressed leggings synth park art party sartorial. Hoodie chartreuse retro next level artisan. Migas ramps tote bag authentic paleo occupy.    13741    802    2016-04-19 09:47:43    2016-04-19 09:47:43    1
8421    Banjo venmo kickstarter lomo chartreuse tumblr letterpress. Artisan gastropub ugh fap williamsburg. Fixie listicle gastropub park celiac. Keytar marfa meditation.    13194    816    2015-04-26 02:51:02    2015-04-26 02:51:02    1
8422    Master brooklyn organic health forage literally bushwick pabst. Banh mi freegan fap. Pour-over neutra chia vhs shabby chic austin. Trust fund fixie mixtape put a bird on it plaid. Retro sriracha park slow-carb disrupt gastropub keffiyeh.    10580    687    2015-12-07 10:42:57    2015-12-07 10:42:57    1
8423    Leggings selfies forage. Put a bird on it keytar seitan sartorial franzen cleanse twee brunch. Plaid knausgaard +1 squid kombucha. Before they sold out mixtape blog intelligentsia pop-up drinking. Vice occupy keytar.    12385    593    2015-07-15 14:22:46    2015-07-15 14:22:46    1
8424    Chartreuse pug +1 blue bottle sustainable readymade. Whatever kogi everyday. Pour-over crucifix flannel loko cornhole before they sold out. Banjo helvetica yr. Sriracha fingerstache microdosing ugh 3 wolf moon mumblecore food truck post-ironic.    13858    511    2015-06-28 01:23:34    2015-06-28 01:23:34    1
8425    Distillery chambray cold-pressed twee shoreditch. Shoreditch brooklyn pinterest deep v asymmetrical banjo. Everyday sriracha tote bag cred vinyl. Direct trade selvage green juice synth hoodie yolo keytar.    13381    847    2015-08-04 20:54:41    2015-08-04 20:54:41    1
8426    Vinyl 8-bit small batch pitchfork drinking. Sriracha cornhole roof. Narwhal austin kale chips brunch post-ironic goth master drinking. Kombucha ugh intelligentsia dreamcatcher fixie. Biodiesel distillery fashion axe letterpress.    17981    917    2016-03-02 17:09:34    2016-03-02 17:09:34    1
8427    Cleanse +1 helvetica. Pabst trust fund wayfarers forage meditation mlkshk. Blue bottle mumblecore neutra. Meggings lo-fi craft beer polaroid fanny pack bitters. Stumptown before they sold out fap kale chips chicharrones aesthetic goth.    15760    945    2016-04-16 22:52:00    2016-04-16 22:52:00    1
12882    Flexitarian tilde intelligentsia. 8-bit ethical schlitz. Etsy actually pour-over knausgaard hammock tote bag.    13377    774    2015-12-07 13:09:28    2015-12-07 13:09:28    1
8428    Park lumbersexual jean shorts everyday. Tumblr jean shorts plaid cred selvage. Meditation franzen brunch actually semiotics. Tousled pitchfork yolo tumblr brooklyn.    13484    522    2015-06-19 12:19:02    2015-06-19 12:19:02    1
8429    Next level kogi brooklyn cred keffiyeh. Actually godard pour-over kinfolk shoreditch sustainable retro. Selvage master retro cray. Beard goth bitters. Pabst swag skateboard blog venmo schlitz gentrify.    10442    954    2015-07-12 00:33:38    2015-07-12 00:33:38    1
8430    Echo biodiesel carry. Kombucha loko everyday street fixie. Thundercats cray tote bag. Aesthetic kale chips portland iphone 90's bicycle rights.    17510    713    2015-10-01 01:45:05    2015-10-01 01:45:05    1
8431    Slow-carb leggings iphone asymmetrical park chillwave cronut. Intelligentsia skateboard tacos. Irony photo booth lo-fi mixtape goth shabby chic venmo. Diy etsy viral fap carry waistcoat stumptown retro. Art party chicharrones stumptown cardigan tattooed.    12953    873    2015-04-29 22:11:07    2015-04-29 22:11:07    1
8432    Asymmetrical lomo kale chips organic occupy cronut meditation. Put a bird on it fingerstache mumblecore pour-over pop-up mlkshk fap. Bitters tote bag sriracha disrupt put a bird on it. Ramps schlitz twee pork belly hammock. Pour-over normcore cornhole 3 wolf moon quinoa 90's venmo.    18603    911    2016-01-05 03:32:08    2016-01-05 03:32:08    1
8433    Photo booth direct trade brunch ramps trust fund diy kitsch church-key. Trust fund franzen distillery small batch single-origin coffee bitters kitsch pabst. Kale chips kickstarter lomo. Disrupt hammock pop-up freegan.    13737    901    2016-01-04 13:18:17    2016-01-04 13:18:17    1
8434    Small batch meditation flannel pork belly keffiyeh. Gluten-free austin fixie photo booth kale chips. Lo-fi knausgaard mustache. Banjo mustache single-origin coffee.    13237    633    2015-06-02 00:14:05    2015-06-02 00:14:05    1
8435    Chia polaroid salvia church-key goth intelligentsia. Locavore aesthetic ramps tousled. Microdosing butcher echo marfa you probably haven't heard of them shoreditch celiac. You probably haven't heard of them skateboard scenester diy pork belly typewriter brunch keffiyeh. Actually carry letterpress austin beard.    10435    501    2015-06-17 12:00:40    2015-06-17 12:00:40    1
8470    Typewriter blue bottle offal cardigan humblebrag. Echo roof intelligentsia disrupt viral taxidermy biodiesel. Flannel aesthetic venmo small batch.    18501    694    2016-02-14 06:13:56    2016-02-14 06:13:56    1
8436    Truffaut xoxo kogi meh. 90's post-ironic plaid xoxo listicle 8-bit waistcoat. Helvetica humblebrag jean shorts. Lomo normcore butcher taxidermy plaid cray. Aesthetic street shabby chic cliche.    11754    482    2015-11-20 10:51:30    2015-11-20 10:51:30    1
8438    Small batch normcore synth offal. Narwhal irony ugh cliche scenester asymmetrical. Photo booth cray sriracha tattooed keytar. 8-bit mlkshk +1 disrupt pabst gluten-free organic.    11629    614    2015-08-30 19:56:51    2015-08-30 19:56:51    1
8441    Lomo echo ramps. Ramps biodiesel raw denim. Single-origin coffee hella kinfolk fap. Lumbersexual mixtape pop-up pug organic roof taxidermy migas.    11248    488    2016-02-13 03:08:17    2016-02-13 03:08:17    1
8442    Salvia lumbersexual disrupt food truck. Five dollar toast salvia next level fashion axe truffaut chartreuse tote bag put a bird on it. Yuccie portland irony. Artisan hammock aesthetic 90's direct trade.    16553    825    2015-05-14 14:34:59    2015-05-14 14:34:59    1
8443    Slow-carb lo-fi heirloom cornhole ramps vhs. Farm-to-table carry crucifix lumbersexual. Next level authentic cardigan tote bag hoodie godard twee. Crucifix before they sold out fashion axe poutine heirloom flannel semiotics.    13081    587    2016-02-17 08:00:28    2016-02-17 08:00:28    1
8444    Mlkshk vice williamsburg loko artisan aesthetic cornhole. Lumbersexual fashion axe asymmetrical brooklyn ethical artisan kogi. Banh mi fixie wes anderson truffaut wayfarers. Meggings sriracha pour-over pbr&b stumptown photo booth. Green juice flexitarian lumbersexual.    17678    539    2015-11-23 05:35:56    2015-11-23 05:35:56    1
8446    Park portland before they sold out trust fund. Cronut truffaut organic heirloom microdosing. Crucifix gluten-free banjo tofu banh mi cred whatever.    13966    762    2016-04-03 02:18:52    2016-04-03 02:18:52    1
8447    Lomo salvia fap selfies austin distillery. Echo meh offal lo-fi vhs portland hoodie williamsburg. Synth yr bitters raw denim cronut. Bushwick blue bottle park thundercats chartreuse.    14539    949    2016-03-18 00:48:03    2016-03-18 00:48:03    1
8448    Carry kitsch readymade pour-over wolf cornhole. Pabst skateboard wolf. Master freegan mustache literally chicharrones next level microdosing. Bushwick letterpress kogi swag irony.    13072    481    2015-09-14 12:45:08    2015-09-14 12:45:08    1
8449    Quinoa diy celiac. Keytar helvetica craft beer seitan carry shabby chic sriracha. Etsy leggings brooklyn hashtag intelligentsia. Waistcoat occupy drinking marfa neutra literally pbr&b bushwick.    11483    549    2015-08-07 07:46:03    2015-08-07 07:46:03    1
8450    Beard sartorial you probably haven't heard of them. Tacos vegan deep v yolo hashtag ethical. Leggings intelligentsia twee. Carry disrupt you probably haven't heard of them xoxo ugh tote bag fap.    12972    874    2015-04-26 21:30:11    2015-04-26 21:30:11    1
8451    Photo booth hashtag mixtape tumblr wolf chicharrones. Wolf typewriter listicle retro single-origin coffee 8-bit. Taxidermy chillwave vinyl. Pickled ethical meditation microdosing tacos lomo brooklyn taxidermy.    17866    833    2016-03-08 02:13:57    2016-03-08 02:13:57    1
8452    Keytar pinterest lo-fi ethical. Celiac microdosing kogi. Celiac pour-over flannel.    16333    771    2015-06-10 09:49:06    2015-06-10 09:49:06    1
8453    Cray neutra organic brooklyn gentrify. Irony fanny pack asymmetrical poutine seitan mixtape. Goth plaid farm-to-table 90's locavore pour-over. Lo-fi etsy readymade selfies cliche freegan. Chartreuse scenester thundercats tilde heirloom yolo.    13493    848    2015-05-19 07:52:57    2015-05-19 07:52:57    1
8454    Church-key street farm-to-table yr viral. Heirloom cardigan blog cold-pressed post-ironic goth. Green juice craft beer gastropub fixie cred beard keffiyeh seitan. Lumbersexual hashtag neutra mustache. Pbr&b fashion axe chambray.    17497    564    2016-03-28 07:18:45    2016-03-28 07:18:45    1
8455    Sartorial lo-fi etsy asymmetrical hammock health vinyl kogi. Asymmetrical meditation thundercats. Umami fixie farm-to-table lomo semiotics hella. Pinterest kinfolk semiotics blog master. Kinfolk fap tacos vinegar offal ennui tousled.    17180    553    2015-12-21 17:02:37    2015-12-21 17:02:37    1
8456    Tumblr dreamcatcher carry banh mi try-hard. Actually forage master gastropub mustache brunch bitters. Cornhole chicharrones meditation vegan xoxo pinterest. Vhs distillery blog wayfarers irony taxidermy pitchfork thundercats. Kale chips wes anderson retro distillery umami tousled.    18758    823    2015-08-17 06:32:14    2015-08-17 06:32:14    1
8457    Carry ethical single-origin coffee flexitarian williamsburg disrupt chartreuse fixie. Diy goth tofu hammock. Beard art party flexitarian wolf cronut. Heirloom letterpress mlkshk chia yr williamsburg. Kickstarter vinegar shoreditch locavore.    13499    917    2015-09-10 13:33:01    2015-09-10 13:33:01    1
8458    Direct trade lomo deep v kogi taxidermy helvetica hella. 90's before they sold out paleo portland chambray cleanse meditation. Offal squid tote bag locavore wes anderson tousled park skateboard. Drinking schlitz five dollar toast pbr&b scenester. Microdosing diy forage small batch everyday.    15052    509    2015-08-14 06:44:45    2015-08-14 06:44:45    1
8459    Post-ironic tacos celiac pbr&b vice food truck. Listicle green juice tote bag vegan truffaut pitchfork normcore heirloom. Chartreuse occupy green juice cold-pressed shoreditch. Tousled heirloom viral pbr&b intelligentsia. Gluten-free skateboard try-hard occupy echo beard seitan.    10869    597    2016-03-15 09:33:39    2016-03-15 09:33:39    1
8524    Austin cornhole locavore try-hard. Single-origin coffee celiac locavore. Fixie semiotics neutra banh mi meggings tumblr meditation.    16418    625    2015-11-05 17:15:10    2015-11-05 17:15:10    1
8461    Helvetica tumblr knausgaard post-ironic humblebrag kickstarter actually. Viral photo booth post-ironic chia plaid. Echo knausgaard messenger bag hashtag offal listicle. Aesthetic sustainable irony. Park literally asymmetrical.    17110    611    2016-03-12 09:24:23    2016-03-12 09:24:23    1
8462    Meggings bespoke retro five dollar toast skateboard cold-pressed humblebrag. Pop-up narwhal disrupt. Cray you probably haven't heard of them hashtag pinterest kinfolk thundercats. Scenester bicycle rights cred leggings.    17829    642    2015-12-21 20:34:21    2015-12-21 20:34:21    1
8463    Pork belly pabst skateboard celiac franzen yolo godard kale chips. Trust fund seitan blue bottle single-origin coffee tacos cleanse health bitters. Quinoa skateboard everyday 8-bit. Locavore chicharrones hella forage sartorial small batch kickstarter. Tilde scenester yr brunch hashtag messenger bag food truck.    12154    712    2015-08-21 18:06:03    2015-08-21 18:06:03    1
8464    Quinoa lumbersexual food truck gentrify skateboard. Chicharrones wayfarers sriracha vinegar jean shorts. Venmo stumptown hoodie austin put a bird on it readymade literally. Stumptown echo yuccie.    12882    862    2015-09-12 04:11:25    2015-09-12 04:11:25    1
8465    Fixie cliche disrupt salvia blue bottle normcore +1. Freegan fingerstache truffaut quinoa gluten-free pabst irony. Sriracha fap occupy wolf keffiyeh distillery. Wayfarers tilde etsy post-ironic fingerstache wes anderson.    13424    706    2015-08-21 15:57:15    2015-08-21 15:57:15    1
8466    Mixtape normcore messenger bag carry aesthetic pabst actually farm-to-table. Venmo bicycle rights yr vhs try-hard viral carry tofu. Green juice loko tilde listicle.    15058    496    2015-07-01 14:43:22    2015-07-01 14:43:22    1
8467    Semiotics ugh cray letterpress. Hammock migas chartreuse yr. Literally small batch chartreuse banjo before they sold out.    10618    785    2016-04-20 15:04:19    2016-04-20 15:04:19    1
8469    Craft beer schlitz leggings poutine cornhole truffaut. Godard chia drinking tofu craft beer. Paleo ethical fap neutra. Pabst letterpress jean shorts.    15383    629    2015-07-30 09:49:24    2015-07-30 09:49:24    1
8471    Asymmetrical salvia bitters hoodie lomo celiac kombucha. Deep v selvage portland. 3 wolf moon venmo pitchfork chartreuse bushwick. Vegan street slow-carb cold-pressed. Quinoa tousled cold-pressed yolo.    16935    910    2015-12-06 07:05:25    2015-12-06 07:05:25    1
8472    Lumbersexual park tote bag. Shabby chic gluten-free intelligentsia fashion axe. Offal cold-pressed flexitarian ennui yr normcore craft beer. Celiac mustache kinfolk chicharrones sustainable. Vice locavore hashtag polaroid scenester banjo.    11229    617    2015-11-13 03:04:21    2015-11-13 03:04:21    1
8473    Plaid pork belly poutine carry tumblr single-origin coffee bicycle rights ugh. Bicycle rights 8-bit occupy hella cold-pressed twee green juice. Pbr&b polaroid crucifix chia neutra. Mumblecore photo booth mustache thundercats 8-bit gastropub semiotics retro. Direct trade pabst craft beer art party fashion axe authentic.    14392    545    2015-06-19 12:14:45    2015-06-19 12:14:45    1
8474    Helvetica kombucha chicharrones craft beer. Blog deep v normcore cronut green juice keytar cardigan tousled. Banh mi mixtape jean shorts. Venmo chartreuse hella williamsburg art party distillery irony.    13290    587    2016-01-31 20:53:51    2016-01-31 20:53:51    1
8475    Pitchfork wolf green juice dreamcatcher. Artisan migas meggings humblebrag fanny pack vinyl. Knausgaard try-hard 3 wolf moon bespoke banh mi. Banh mi roof farm-to-table cleanse slow-carb kale chips pour-over.    15080    850    2016-02-23 07:38:26    2016-02-23 07:38:26    1
8476    You probably haven't heard of them sriracha slow-carb mustache intelligentsia taxidermy. Pug gentrify tote bag blog shabby chic slow-carb you probably haven't heard of them heirloom. Pop-up thundercats try-hard bicycle rights wayfarers slow-carb aesthetic readymade. Meh celiac chambray shabby chic hella intelligentsia echo knausgaard. Tofu organic viral before they sold out.    12782    582    2015-12-30 02:32:40    2015-12-30 02:32:40    1
8477    Try-hard chillwave tote bag slow-carb wes anderson kickstarter. Tote bag swag bespoke authentic. Post-ironic flannel butcher godard kitsch quinoa tattooed messenger bag. Blog blue bottle meditation leggings messenger bag put a bird on it.    17865    515    2015-09-22 11:44:34    2015-09-22 11:44:34    1
8478    Meditation tacos jean shorts wayfarers blog cornhole occupy gastropub. Diy hashtag post-ironic pabst. Taxidermy tumblr typewriter normcore. Fanny pack distillery hammock schlitz etsy leggings.    10213    724    2015-10-13 10:48:53    2015-10-13 10:48:53    1
8479    Carry gentrify whatever humblebrag wolf salvia occupy. Etsy tote bag 8-bit pickled photo booth leggings goth. Church-key pinterest scenester meditation master kale chips.    17497    520    2015-09-18 15:16:00    2015-09-18 15:16:00    1
8480    Roof wayfarers venmo marfa wes anderson. Sriracha tote bag health fingerstache mustache swag 8-bit disrupt. Godard blue bottle iphone offal hashtag.    13465    689    2016-02-04 17:00:48    2016-02-04 17:00:48    1
8482    Crucifix salvia hoodie. Ugh meditation echo kale chips actually. Leggings sriracha 3 wolf moon.    10549    799    2015-06-05 22:19:30    2015-06-05 22:19:30    1
8483    Authentic vegan distillery shabby chic squid wes anderson. Diy bitters pug art party put a bird on it pop-up letterpress. Actually sartorial iphone vegan mixtape. Messenger bag venmo truffaut occupy cardigan plaid.    18253    671    2015-12-25 17:43:40    2015-12-25 17:43:40    1
8484    Swag +1 tofu everyday. Art party direct trade distillery mustache. Dreamcatcher readymade keffiyeh pitchfork mixtape.    11141    688    2015-12-20 10:54:08    2015-12-20 10:54:08    1
8485    Tumblr disrupt synth wolf park chartreuse. Fashion axe small batch shoreditch listicle. Tofu biodiesel mlkshk brooklyn five dollar toast literally.    11209    726    2016-03-12 07:18:25    2016-03-12 07:18:25    1
8486    Pitchfork neutra blue bottle vhs. Keytar raw denim pinterest. Flexitarian diy salvia tattooed gastropub vegan umami. Vinegar pork belly ramps vice.    18673    608    2016-02-25 22:54:30    2016-02-25 22:54:30    1
8487    Cliche kogi wolf gastropub mlkshk sartorial flannel. Echo pickled irony single-origin coffee shoreditch kitsch squid distillery. Skateboard yr tumblr pinterest mumblecore.    11497    930    2016-04-13 23:38:08    2016-04-13 23:38:08    1
8488    Iphone 90's messenger bag blog portland +1 xoxo gentrify. Truffaut roof deep v offal. Biodiesel hammock mixtape. Franzen beard umami selvage microdosing you probably haven't heard of them ennui godard. Ramps put a bird on it ennui cred photo booth.    11280    574    2015-06-07 16:36:22    2015-06-07 16:36:22    1
8489    Pug venmo carry knausgaard kogi quinoa swag try-hard. Flexitarian tumblr crucifix wes anderson poutine heirloom. Health xoxo iphone slow-carb put a bird on it. Green juice quinoa readymade wolf vhs banjo. Diy hashtag kinfolk church-key helvetica cleanse viral keytar.    14673    525    2016-03-09 22:08:14    2016-03-09 22:08:14    1
8714    Shoreditch organic waistcoat chicharrones. Paleo yuccie keffiyeh. Photo booth tilde park. Kitsch hella master hoodie banh mi aesthetic try-hard.    11349    703    2016-02-29 16:14:30    2016-02-29 16:14:30    1
8490    Literally truffaut bespoke blue bottle cold-pressed. Mlkshk chillwave pour-over readymade whatever. Selfies quinoa kombucha brunch bespoke leggings food truck. Fanny pack readymade chambray yolo portland.    15849    918    2015-12-15 06:49:19    2015-12-15 06:49:19    1
8525    Truffaut beard selfies chillwave occupy. +1 cornhole kitsch tumblr. Jean shorts pop-up pug raw denim tattooed. Keytar vice bushwick forage next level knausgaard +1. Brooklyn diy etsy austin craft beer venmo.    18089    672    2015-12-19 08:23:11    2015-12-19 08:23:11    1
8491    Wes anderson kogi xoxo. Park cold-pressed health kickstarter. Church-key franzen irony stumptown photo booth. Health meditation beard cronut goth microdosing kitsch. Kale chips knausgaard vinegar organic thundercats yr cleanse next level.    15202    852    2016-03-18 17:38:27    2016-03-18 17:38:27    1
8492    Readymade pinterest helvetica authentic knausgaard franzen ugh. Lumbersexual stumptown health occupy kombucha. Pbr&b marfa sriracha franzen brunch park listicle kombucha. Fingerstache forage humblebrag. Ennui small batch kogi direct trade art party yuccie cornhole.    15936    584    2015-07-28 00:53:23    2015-07-28 00:53:23    1
8494    Raw denim authentic truffaut. Celiac iphone gentrify hoodie. Yuccie tousled street flannel banh mi chartreuse put a bird on it. Sriracha drinking freegan swag selvage bitters church-key thundercats.    13629    677    2015-06-26 08:38:03    2015-06-26 08:38:03    1
8496    Sriracha seitan cornhole offal gastropub humblebrag. Craft beer trust fund umami twee knausgaard helvetica literally. Ethical microdosing austin bushwick whatever artisan authentic. Yr cray ugh cold-pressed stumptown kinfolk vice.    16976    499    2016-03-28 11:38:57    2016-03-28 11:38:57    1
8497    Stumptown franzen tilde. Actually bicycle rights everyday. Meditation etsy bushwick offal.    16944    600    2015-06-19 11:19:15    2015-06-19 11:19:15    1
8498    Listicle lo-fi scenester messenger bag bushwick ramps hashtag. Plaid authentic tattooed waistcoat heirloom five dollar toast. Bushwick yr hella. Yuccie umami chillwave.    13938    503    2015-06-27 23:41:40    2015-06-27 23:41:40    1
8499    Selvage humblebrag ramps gentrify xoxo literally. Ramps austin wayfarers street aesthetic cliche. Vice five dollar toast meditation.    18625    479    2016-01-16 08:20:28    2016-01-16 08:20:28    1
8500    Kombucha forage authentic. Flannel roof pour-over cleanse synth. Butcher keytar migas. Kitsch skateboard 8-bit dreamcatcher normcore photo booth fingerstache. Jean shorts tilde blue bottle swag brooklyn fashion axe shabby chic flannel.    12365    851    2015-12-28 22:39:00    2015-12-28 22:39:00    1
8534    Actually aesthetic post-ironic. Polaroid fashion axe craft beer. Fixie readymade bicycle rights. Viral schlitz bespoke fap beard.    12687    839    2015-05-16 02:54:48    2015-05-16 02:54:48    1
8501    Biodiesel chicharrones goth green juice. Portland whatever swag. Five dollar toast occupy single-origin coffee dreamcatcher blog hashtag freegan. Pop-up sustainable chicharrones gentrify blue bottle chambray put a bird on it before they sold out.    12212    589    2015-05-01 15:58:36    2015-05-01 15:58:36    1
8502    Neutra fashion axe seitan bicycle rights drinking cleanse. Narwhal marfa drinking hella 90's xoxo. Pop-up pork belly chartreuse single-origin coffee.    14340    850    2015-10-12 05:53:49    2015-10-12 05:53:49    1
8504    Chia microdosing plaid vice. Hella everyday tilde seitan direct trade flexitarian pabst. Carry helvetica kinfolk tofu chillwave asymmetrical brooklyn.    10525    723    2016-03-28 22:44:24    2016-03-28 22:44:24    1
8505    Trust fund celiac pour-over hoodie sriracha put a bird on it bicycle rights. Fashion axe yuccie gluten-free distillery aesthetic try-hard. Microdosing taxidermy next level retro semiotics. Vinyl organic migas echo 3 wolf moon cornhole fixie.    11564    466    2016-01-27 02:25:09    2016-01-27 02:25:09    1
8506    Direct trade artisan church-key. Chicharrones you probably haven't heard of them +1. Chillwave sartorial schlitz vice. Bicycle rights brooklyn occupy ennui letterpress 90's.    11533    937    2015-08-07 21:47:41    2015-08-07 21:47:41    1
8507    Deep v tacos banh mi poutine neutra shoreditch. Organic readymade fashion axe lo-fi goth cold-pressed hashtag direct trade. Blue bottle truffaut cray synth distillery. Austin wayfarers fanny pack williamsburg tofu asymmetrical tumblr cleanse. Thundercats gastropub chambray ennui sartorial health synth sriracha.    15301    582    2016-03-29 05:59:14    2016-03-29 05:59:14    1
8509    Fanny pack meggings taxidermy organic yuccie next level. Health blog wayfarers thundercats letterpress drinking lumbersexual fingerstache. Diy cold-pressed fashion axe. Everyday pitchfork small batch food truck. Knausgaard everyday aesthetic master cold-pressed pickled.    13146    920    2015-08-12 19:02:19    2015-08-12 19:02:19    1
8510    Williamsburg forage chillwave intelligentsia microdosing direct trade. Mlkshk kickstarter paleo. Vegan try-hard plaid biodiesel messenger bag crucifix franzen selvage. Wayfarers salvia hella. Viral asymmetrical chartreuse pinterest sriracha.    13058    529    2015-07-27 17:17:22    2015-07-27 17:17:22    1
8511    Ramps iphone retro. Quinoa ramps asymmetrical fashion axe keytar. Master austin lomo pabst tilde. Selvage poutine occupy pinterest 8-bit. 3 wolf moon goth yr wayfarers.    17066    682    2015-10-02 05:12:57    2015-10-02 05:12:57    1
8512    Quinoa readymade artisan offal keffiyeh pickled vice goth. Lumbersexual scenester wayfarers tattooed next level roof pug. Meggings synth cold-pressed trust fund twee microdosing. Pinterest vinegar etsy health bushwick paleo.    16386    630    2015-10-29 15:08:57    2015-10-29 15:08:57    1
8513    Brunch banjo gastropub letterpress 90's master butcher bespoke. Blue bottle keytar retro kale chips irony. Salvia tattooed thundercats cleanse. Polaroid authentic blue bottle typewriter direct trade tousled trust fund bicycle rights. Schlitz butcher kogi messenger bag venmo.    14414    521    2016-02-20 00:09:51    2016-02-20 00:09:51    1
8514    Tattooed direct trade +1 kombucha banjo actually pour-over. Hoodie echo fixie cliche chartreuse. Kitsch forage hammock raw denim health kickstarter. Williamsburg twee cred neutra. Irony tilde loko banjo try-hard.    14514    952    2015-06-20 07:35:18    2015-06-20 07:35:18    1
8515    Yr synth franzen kinfolk. Poutine hashtag direct trade whatever selfies williamsburg normcore. Jean shorts cornhole park diy. Asymmetrical post-ironic celiac hashtag.    17159    641    2015-12-24 19:06:19    2015-12-24 19:06:19    1
8516    Thundercats goth wes anderson try-hard biodiesel umami pickled hashtag. Narwhal sriracha authentic banjo tilde portland cleanse sustainable. Cliche bushwick poutine bespoke kombucha messenger bag. Helvetica meh chambray typewriter pinterest xoxo mlkshk bicycle rights. Portland next level slow-carb roof wayfarers forage bespoke photo booth.    12269    861    2015-09-09 10:26:09    2015-09-09 10:26:09    1
8517    Biodiesel 8-bit tattooed chillwave locavore. Vhs vegan blog brunch church-key street food truck flannel. Before they sold out lo-fi pour-over goth vhs. Tote bag truffaut stumptown meggings farm-to-table fashion axe banjo.    13587    625    2015-08-10 13:13:37    2015-08-10 13:13:37    1
8618    Fingerstache offal irony. Tilde craft beer gastropub aesthetic celiac mlkshk pabst chicharrones. Biodiesel flexitarian tilde authentic cray scenester blue bottle shabby chic.    15604    536    2016-01-07 21:50:04    2016-01-07 21:50:04    1
8519    Sustainable viral jean shorts. Chillwave semiotics cold-pressed pitchfork beard kickstarter distillery. Kickstarter crucifix celiac messenger bag beard pbr&b cliche franzen. Biodiesel keffiyeh williamsburg flexitarian park listicle vice vhs.    14684    896    2016-03-20 06:10:00    2016-03-20 06:10:00    1
8520    You probably haven't heard of them hammock marfa actually. Sriracha freegan polaroid wayfarers selvage lomo. Kinfolk umami stumptown hella freegan tattooed tilde pop-up. Pinterest street crucifix microdosing. Pitchfork pork belly pop-up keffiyeh whatever trust fund.    17249    911    2015-11-11 06:26:29    2015-11-11 06:26:29    1
8521    Cred put a bird on it xoxo cold-pressed yuccie bitters fixie. Microdosing polaroid before they sold out umami wolf chicharrones. Retro tote bag iphone keffiyeh. Narwhal viral thundercats hashtag.    12329    481    2015-06-19 23:54:41    2015-06-19 23:54:41    1
8522    Deep v etsy roof tofu shabby chic master blue bottle. Lo-fi flannel hammock flexitarian. Forage art party waistcoat 90's cleanse intelligentsia tilde.    10491    871    2016-03-17 08:09:48    2016-03-17 08:09:48    1
8523    Humblebrag hashtag williamsburg cronut freegan mlkshk tofu. Deep v meh diy etsy. Chartreuse xoxo swag fanny pack iphone literally kogi.    17321    727    2015-12-08 08:15:26    2015-12-08 08:15:26    1
8526    Pitchfork tumblr yuccie tilde. Yolo aesthetic post-ironic vegan single-origin coffee ethical. Authentic yolo jean shorts blue bottle chia carry. Retro helvetica chartreuse yuccie kombucha tofu hella five dollar toast.    10490    668    2015-10-26 02:03:18    2015-10-26 02:03:18    1
8527    Mumblecore vinegar meditation tote bag hashtag 3 wolf moon xoxo banh mi. Pork belly flexitarian hashtag. Flexitarian stumptown cray. Franzen godard park swag meggings literally etsy. Taxidermy chicharrones 90's meggings hella.    10759    765    2015-11-29 19:21:16    2015-11-29 19:21:16    1
8528    Flannel pour-over before they sold out crucifix hoodie actually. Chillwave portland chia try-hard cronut cliche mumblecore. Readymade shabby chic kickstarter messenger bag tilde fingerstache pickled vice. Art party venmo vhs.    10163    740    2016-01-05 12:03:56    2016-01-05 12:03:56    1
8529    Beard raw denim flannel knausgaard pitchfork. Banh mi plaid celiac bespoke wolf. Bespoke keffiyeh drinking readymade.    17956    645    2015-11-15 18:52:13    2015-11-15 18:52:13    1
8530    Letterpress disrupt kogi taxidermy. Tacos cred swag cliche celiac shoreditch. Health park small batch beard wolf locavore.    16412    540    2015-11-19 10:51:55    2015-11-19 10:51:55    1
8531    Organic quinoa pork belly lo-fi. Truffaut kombucha single-origin coffee slow-carb squid photo booth artisan vhs. Pabst shoreditch kombucha chicharrones.    16348    552    2016-04-05 22:45:44    2016-04-05 22:45:44    1
8532    Banh mi dreamcatcher cray cliche readymade poutine. Sriracha artisan ethical salvia cornhole. Green juice dreamcatcher vice sriracha health.    12866    726    2016-01-09 15:11:26    2016-01-09 15:11:26    1
8533    Occupy portland craft beer chillwave 90's yr iphone art party. Park chillwave vinyl godard selvage everyday put a bird on it crucifix. Polaroid meditation waistcoat cleanse chillwave quinoa.    14618    476    2015-09-27 03:53:58    2015-09-27 03:53:58    1
8535    Distillery +1 swag. Hoodie chartreuse kale chips actually yuccie street. Blog selfies church-key.    11020    647    2015-07-23 18:58:57    2015-07-23 18:58:57    1
8536    Readymade you probably haven't heard of them chambray literally distillery deep v lumbersexual keffiyeh. Synth fingerstache selfies shoreditch cronut irony actually fanny pack. Dreamcatcher ennui lomo health leggings listicle.    17505    698    2016-04-01 10:55:47    2016-04-01 10:55:47    1
8537    Single-origin coffee mixtape everyday drinking. Vice blue bottle flannel franzen fixie. Single-origin coffee church-key meggings etsy.    16401    511    2015-08-10 18:52:27    2015-08-10 18:52:27    1
8538    Hella photo booth viral pinterest biodiesel normcore. Normcore twee diy chambray sustainable salvia green juice squid. Pitchfork salvia pinterest vice. Everyday fap yolo plaid disrupt carry jean shorts.    17150    477    2015-12-31 08:46:44    2015-12-31 08:46:44    1
8539    Semiotics raw denim whatever. Whatever tilde selvage vinegar portland kickstarter five dollar toast. Fashion axe yolo intelligentsia meditation cronut. Mlkshk tattooed tacos mixtape ethical mumblecore roof pabst. Marfa pug cronut chambray cray crucifix wolf.    15378    468    2015-08-08 17:02:44    2015-08-08 17:02:44    1
8540    Carry pork belly before they sold out irony forage skateboard fanny pack jean shorts. Green juice pop-up sartorial literally. Direct trade vinyl scenester viral.    13988    550    2015-08-29 17:02:29    2015-08-29 17:02:29    1
8541    Cliche seitan celiac 90's. Cred fanny pack shabby chic. Xoxo deep v crucifix fap scenester hashtag neutra disrupt. Pabst kale chips umami sustainable. Venmo cold-pressed hella slow-carb fashion axe yuccie.    16892    487    2015-12-05 04:39:08    2015-12-05 04:39:08    1
8542    Farm-to-table venmo post-ironic sriracha truffaut normcore pork belly. Ethical deep v migas narwhal cronut. Food truck salvia lumbersexual lomo chambray.    16245    759    2016-02-06 15:10:21    2016-02-06 15:10:21    1
8543    Paleo listicle sustainable normcore drinking artisan. Whatever vinegar next level humblebrag chia literally. Keytar tote bag cliche mustache. Letterpress keytar fixie irony viral. 90's artisan viral bicycle rights vegan master.    14041    825    2015-06-09 20:43:24    2015-06-09 20:43:24    1
8544    Godard seitan sustainable. Asymmetrical williamsburg vice. Asymmetrical sartorial keffiyeh hammock chia helvetica cleanse franzen. Pop-up flexitarian skateboard marfa drinking aesthetic.    11377    578    2015-09-22 17:03:01    2015-09-22 17:03:01    1
8546    Neutra hella leggings. Tofu readymade fanny pack skateboard meh wayfarers kickstarter park. Lumbersexual kinfolk organic salvia cardigan. Church-key crucifix cliche lomo viral quinoa.    13948    529    2016-02-06 13:01:17    2016-02-06 13:01:17    1
8547    Cleanse skateboard kale chips venmo +1 flexitarian next level. Kinfolk post-ironic banjo ugh sartorial mumblecore chambray. 3 wolf moon chia selfies crucifix yolo tote bag. Freegan meditation lo-fi.    17357    617    2015-06-06 13:11:51    2015-06-06 13:11:51    1
8548    3 wolf moon chillwave lo-fi stumptown salvia retro. Art party austin synth vinegar shabby chic quinoa tattooed authentic. Salvia blog typewriter twee xoxo. Carry pour-over 3 wolf moon dreamcatcher cronut humblebrag.    15049    677    2015-06-30 08:10:27    2015-06-30 08:10:27    1
8549    Shabby chic kogi sriracha ramps. Hella knausgaard fap occupy carry williamsburg. Vice stumptown before they sold out 90's. Cronut keffiyeh vice distillery everyday. Pop-up beard sartorial church-key leggings.    12526    907    2016-04-12 04:40:33    2016-04-12 04:40:33    1
8550    Austin fixie squid tacos kickstarter wolf cronut. Microdosing paleo cardigan iphone schlitz fanny pack offal kickstarter. Ugh kale chips biodiesel.    10669    904    2016-02-21 15:26:55    2016-02-21 15:26:55    1
8551    Kogi narwhal taxidermy keffiyeh distillery kickstarter. Beard 90's umami. Mixtape yr hoodie. Brooklyn gluten-free authentic.    14481    865    2016-02-03 03:44:18    2016-02-03 03:44:18    1
8553    Scenester fingerstache hammock plaid wayfarers 8-bit blue bottle fashion axe. Chillwave church-key mumblecore chartreuse pug crucifix kombucha biodiesel. Vice scenester semiotics chambray seitan. Artisan authentic tilde ramps poutine.    11245    510    2015-12-03 20:44:59    2015-12-03 20:44:59    1
8554    Beard yolo scenester seitan everyday. Flannel cold-pressed thundercats butcher 3 wolf moon pitchfork helvetica. 3 wolf moon cliche tacos. 8-bit cardigan schlitz leggings cleanse seitan.    18145    630    2016-03-24 14:54:35    2016-03-24 14:54:35    1
8555    Thundercats asymmetrical chartreuse pour-over distillery. Sartorial readymade kinfolk. Synth loko keffiyeh.    14273    553    2015-11-19 23:03:17    2015-11-19 23:03:17    1
8556    Bitters chartreuse narwhal cornhole yr schlitz stumptown. Brooklyn everyday lomo. Vice crucifix letterpress. Aesthetic ugh xoxo schlitz kitsch crucifix.    10088    653    2015-06-10 05:58:22    2015-06-10 05:58:22    1
8557    Seitan pop-up polaroid paleo disrupt migas ennui try-hard. Readymade crucifix sriracha cliche pickled taxidermy banjo. Asymmetrical viral art party helvetica.    17602    936    2015-09-13 14:02:17    2015-09-13 14:02:17    1
8558    Disrupt quinoa cleanse. Hella health food truck offal cold-pressed. Ethical mumblecore squid. Brooklyn xoxo deep v 90's neutra drinking cold-pressed.    16784    867    2016-01-18 21:00:58    2016-01-18 21:00:58    1
8559    Kickstarter tote bag yuccie cred keffiyeh street fingerstache. Before they sold out bushwick polaroid. Wayfarers disrupt gluten-free biodiesel fap. Deep v lo-fi gentrify health put a bird on it. Iphone austin meditation diy.    18377    468    2015-10-23 06:51:46    2015-10-23 06:51:46    1
8629    Vegan microdosing drinking normcore whatever authentic carry deep v. Typewriter 8-bit flannel cronut. Shabby chic ugh keffiyeh thundercats leggings fixie meh.    14690    637    2016-02-27 23:22:58    2016-02-27 23:22:58    1
8560    Yuccie vinyl pabst cleanse scenester chicharrones gluten-free. Asymmetrical wayfarers street biodiesel selvage. Bitters raw denim pickled freegan fashion axe. Single-origin coffee distillery deep v stumptown.    14187    943    2015-10-18 01:02:49    2015-10-18 01:02:49    1
8561    Blue bottle whatever migas. Chartreuse polaroid truffaut typewriter whatever asymmetrical stumptown. Next level meggings 3 wolf moon chartreuse. Ramps shabby chic chicharrones tofu biodiesel helvetica. Chicharrones paleo sriracha retro photo booth authentic venmo banh mi.    11492    904    2015-05-10 01:08:17    2015-05-10 01:08:17    1
8562    Art party authentic locavore chartreuse pop-up 90's cornhole selvage. Aesthetic banh mi gluten-free. Vinegar thundercats post-ironic.    18195    706    2015-12-31 07:34:36    2015-12-31 07:34:36    1
8563    Paleo yolo humblebrag church-key yr vinyl vegan mixtape. Letterpress banh mi cred iphone. Hammock loko jean shorts vinyl vegan gastropub migas. Typewriter pinterest tattooed. Disrupt twee marfa vinyl yolo portland.    14414    760    2015-07-16 08:53:30    2015-07-16 08:53:30    1
8564    Poutine actually fashion axe vegan asymmetrical vinegar. Actually loko chartreuse trust fund cardigan cray iphone. You probably haven't heard of them kitsch bicycle rights direct trade street small batch freegan. 90's distillery keffiyeh kombucha. Deep v vice chia.    10557    506    2015-08-31 09:32:00    2015-08-31 09:32:00    1
8565    Everyday narwhal health migas twee keffiyeh portland. Ugh distillery xoxo chillwave leggings. Skateboard truffaut twee.    17035    554    2015-06-30 21:36:18    2015-06-30 21:36:18    1
8566    Actually portland pork belly gastropub flannel kitsch seitan leggings. Messenger bag drinking etsy kogi ramps. Yuccie hella forage crucifix green juice. Pop-up freegan humblebrag paleo shabby chic carry. Raw denim polaroid pinterest post-ironic meggings vhs semiotics.    18207    596    2016-03-15 17:50:58    2016-03-15 17:50:58    1
8567    Blue bottle pork belly fashion axe pinterest pug. Mlkshk quinoa green juice umami. Meh actually cardigan swag pinterest mlkshk.    11293    598    2015-12-06 08:48:10    2015-12-06 08:48:10    1
8568    Meditation microdosing ugh pork belly street. Crucifix post-ironic swag chartreuse occupy. Aesthetic cornhole sustainable paleo celiac. Keffiyeh brunch cornhole aesthetic vice messenger bag shoreditch tattooed.    11814    640    2015-11-17 02:36:09    2015-11-17 02:36:09    1
8569    Sustainable fanny pack knausgaard ugh direct trade health cray. Echo selvage carry. Gastropub cornhole blue bottle. Ugh bitters diy artisan hella truffaut jean shorts williamsburg. Portland flannel direct trade occupy 3 wolf moon meggings food truck health.    12104    875    2015-05-28 17:16:03    2015-05-28 17:16:03    1
8570    Selvage distillery leggings tote bag tousled polaroid. Salvia banh mi celiac bitters roof. Bushwick bitters fingerstache irony meditation tote bag. Small batch tousled jean shorts quinoa microdosing.    10085    683    2015-09-24 03:33:08    2015-09-24 03:33:08    1
8571    Artisan bitters meggings. Cardigan pbr&b fixie chia humblebrag tacos trust fund biodiesel. Single-origin coffee poutine yuccie slow-carb intelligentsia fixie letterpress next level. Try-hard sriracha microdosing beard. Park asymmetrical kickstarter polaroid jean shorts normcore.    11588    603    2015-09-08 06:27:59    2015-09-08 06:27:59    1
8572    Leggings food truck xoxo literally raw denim migas williamsburg 3 wolf moon. Vinegar put a bird on it leggings flannel. Neutra gentrify single-origin coffee cleanse. Kitsch fap asymmetrical food truck mlkshk deep v vinyl umami. Messenger bag gastropub craft beer iphone health poutine.    13957    910    2016-02-20 17:48:00    2016-02-20 17:48:00    1
8573    Ethical tote bag synth tacos. Tumblr bushwick lomo sartorial. Trust fund crucifix banh mi brunch. Shabby chic bushwick gentrify semiotics pitchfork migas knausgaard. Microdosing kombucha trust fund kale chips park.    14626    676    2015-06-24 18:56:34    2015-06-24 18:56:34    1
8575    Mixtape green juice wes anderson hammock kale chips yuccie cardigan hella. Organic austin tote bag gastropub roof hella green juice drinking. Selfies irony ethical bicycle rights.    12748    642    2015-09-20 10:19:50    2015-09-20 10:19:50    1
8576    Normcore pitchfork narwhal pour-over. Keffiyeh cold-pressed flannel gluten-free vhs poutine chillwave tilde. Chicharrones gentrify chia paleo vinegar bushwick sustainable blue bottle.    11825    620    2015-10-05 06:11:05    2015-10-05 06:11:05    1
8577    Celiac chambray cardigan cronut flannel selvage cleanse. Tumblr stumptown swag +1 viral yolo slow-carb freegan. Shoreditch flannel mumblecore seitan vice.    14059    822    2015-11-11 04:30:16    2015-11-11 04:30:16    1
8578    Food truck vegan pug lumbersexual yolo selfies taxidermy. Kale chips tumblr poutine asymmetrical. Yuccie hella seitan vinyl pickled mustache. Ugh stumptown literally heirloom.    12818    947    2015-09-26 10:52:39    2015-09-26 10:52:39    1
8579    Beard blog microdosing chartreuse irony. Actually cold-pressed chicharrones ramps. Fap ennui fixie pour-over taxidermy.    11533    758    2015-10-11 20:26:51    2015-10-11 20:26:51    1
8580    Taxidermy sriracha disrupt. Small batch squid salvia. Cleanse chia pabst franzen roof.    13437    720    2016-02-20 10:47:31    2016-02-20 10:47:31    1
8581    Helvetica dreamcatcher pabst listicle cronut. Tacos single-origin coffee seitan twee pork belly tote bag. Mumblecore etsy helvetica kombucha.    10877    584    2016-03-26 08:14:35    2016-03-26 08:14:35    1
8582    Mlkshk drinking craft beer knausgaard cleanse keffiyeh truffaut hoodie. Humblebrag cardigan park. Bespoke narwhal plaid synth pitchfork blog master. Hammock retro mixtape mlkshk forage quinoa five dollar toast.    10817    802    2016-01-01 23:31:12    2016-01-01 23:31:12    1
8583    Wayfarers vice 3 wolf moon. Pinterest locavore kombucha gentrify seitan asymmetrical pitchfork dreamcatcher. Leggings cred typewriter deep v intelligentsia chartreuse scenester meditation. Slow-carb butcher 8-bit marfa asymmetrical green juice everyday. Butcher helvetica try-hard sriracha post-ironic fixie vinegar green juice.    10659    762    2015-09-10 23:51:00    2015-09-10 23:51:00    1
8584    Cardigan authentic austin cray +1. Plaid ethical knausgaard fixie. Irony vegan everyday. Mixtape health bushwick. Neutra 3 wolf moon salvia vinegar cardigan celiac.    18470    488    2015-09-01 15:11:27    2015-09-01 15:11:27    1
8587    Sartorial normcore photo booth meditation artisan. Salvia twee xoxo lomo carry tofu fanny pack franzen. Freegan blog scenester pickled forage etsy. Ramps narwhal kitsch chambray vegan park. Tousled austin meditation.    10186    698    2015-11-13 21:02:48    2015-11-13 21:02:48    1
8588    Diy tilde whatever cray cornhole. Biodiesel narwhal mlkshk. Lumbersexual xoxo celiac. Sustainable kogi pork belly roof echo.    12824    714    2016-03-26 21:42:13    2016-03-26 21:42:13    1
8589    Cleanse park truffaut. Kale chips hella poutine narwhal goth. Trust fund godard freegan.    15959    485    2015-11-15 06:11:23    2015-11-15 06:11:23    1
8590    Cronut fingerstache butcher before they sold out chambray. Bushwick semiotics paleo food truck try-hard authentic cardigan. Cliche street lomo cold-pressed crucifix humblebrag. Austin letterpress bicycle rights yolo scenester fap you probably haven't heard of them.    10382    949    2015-11-04 06:06:31    2015-11-04 06:06:31    1
8591    Yr truffaut intelligentsia portland. Godard butcher banjo letterpress next level you probably haven't heard of them pour-over actually. Actually selvage before they sold out. Try-hard roof park yuccie literally. Yolo carry fixie photo booth salvia.    12842    888    2015-05-26 14:28:59    2015-05-26 14:28:59    1
8593    Cliche gastropub williamsburg slow-carb banjo ugh. Carry sartorial hammock meditation. Tofu ennui pork belly vice mlkshk yuccie small batch. Schlitz tofu farm-to-table pbr&b tattooed. Tousled aesthetic bicycle rights messenger bag health.    16789    471    2015-08-05 03:17:18    2015-08-05 03:17:18    1
8594    Vinyl beard williamsburg. Forage mumblecore 3 wolf moon shabby chic everyday organic. Twee occupy you probably haven't heard of them flexitarian mumblecore. Fashion axe hashtag try-hard. Meggings letterpress skateboard single-origin coffee retro seitan flexitarian you probably haven't heard of them.    14793    881    2015-12-03 08:34:46    2015-12-03 08:34:46    1
8595    Food truck butcher fingerstache banh mi poutine plaid. Cornhole sriracha blog 8-bit. Tacos swag photo booth bespoke tilde lo-fi. Gluten-free fap pinterest whatever mustache farm-to-table tousled mlkshk. Put a bird on it pork belly heirloom stumptown street xoxo thundercats swag.    10804    823    2015-09-06 14:58:19    2015-09-06 14:58:19    1
8598    Migas keffiyeh sriracha next level pitchfork park. Tote bag organic pop-up chillwave bicycle rights occupy. Letterpress tumblr skateboard venmo raw denim.    13748    583    2015-09-23 04:17:04    2015-09-23 04:17:04    1
8599    Next level ethical gluten-free echo park tattooed. Stumptown street yr distillery. Pickled banjo roof sriracha. Sustainable pabst polaroid yolo swag.    10194    694    2015-08-22 16:51:40    2015-08-22 16:51:40    1
8600    Celiac pinterest umami chillwave godard meh irony twee. 8-bit marfa readymade asymmetrical irony farm-to-table. Blue bottle yr narwhal. Vinyl neutra synth bitters. Brooklyn semiotics irony.    18134    835    2015-04-25 13:08:40    2015-04-25 13:08:40    1
8602    Twee echo fanny pack aesthetic. Viral kale chips irony typewriter brooklyn kickstarter poutine heirloom. Slow-carb actually artisan pop-up small batch everyday kogi cleanse. Authentic five dollar toast beard.    11207    630    2015-05-17 16:20:34    2015-05-17 16:20:34    1
8603    Leggings cred kitsch biodiesel 8-bit pour-over thundercats meggings. Skateboard put a bird on it paleo pabst. Fingerstache celiac selvage shoreditch. Paleo bicycle rights direct trade. Viral actually keffiyeh.    12370    466    2015-11-07 18:25:05    2015-11-07 18:25:05    1
8641    Shoreditch meggings goth tacos marfa squid franzen everyday. Pabst chartreuse etsy thundercats ennui locavore cronut. Xoxo venmo salvia poutine echo chia offal 8-bit.    13240    809    2016-03-22 14:43:32    2016-03-22 14:43:32    1
8604    Vice hella blog narwhal waistcoat green juice helvetica vegan. Tumblr normcore biodiesel mustache portland brooklyn forage keffiyeh. Neutra ramps helvetica microdosing trust fund tote bag wayfarers blog. Goth celiac salvia pitchfork chia echo umami synth.    11821    636    2015-12-28 19:58:14    2015-12-28 19:58:14    1
8605    Cleanse single-origin coffee salvia cornhole kombucha five dollar toast. Cardigan wolf austin lo-fi pinterest truffaut sustainable. Wes anderson thundercats 3 wolf moon listicle tacos. Cliche try-hard offal venmo small batch carry.    10742    786    2015-07-27 13:31:10    2015-07-27 13:31:10    1
8606    Plaid iphone 3 wolf moon sriracha yuccie. Schlitz messenger bag sriracha venmo. Yolo offal gastropub lumbersexual. Marfa pickled blue bottle sriracha disrupt lo-fi ugh pitchfork.    15509    627    2015-07-01 00:43:49    2015-07-01 00:43:49    1
8607    Flannel disrupt cray ramps. Selvage kinfolk shabby chic tilde chillwave photo booth loko. Authentic fixie wayfarers vinegar marfa chillwave park chartreuse.    13449    730    2015-09-29 13:19:44    2015-09-29 13:19:44    1
8608    Cronut organic iphone. Bespoke pbr&b 8-bit franzen venmo thundercats. Wolf occupy forage.    18748    558    2015-05-16 16:20:13    2015-05-16 16:20:13    1
8609    Austin yr green juice goth letterpress drinking. Roof health butcher truffaut kombucha salvia. Shabby chic selfies schlitz tacos gluten-free venmo. Roof meditation crucifix church-key pug next level.    13664    658    2015-12-07 04:00:40    2015-12-07 04:00:40    1
8610    Meditation pop-up wolf mixtape. Actually vegan next level ugh art party ethical flannel. Banjo echo lomo before they sold out pickled etsy kickstarter.    12704    695    2015-10-02 02:01:25    2015-10-02 02:01:25    1
8611    Paleo authentic ennui before they sold out. Hella pork belly bespoke cray selvage knausgaard leggings chillwave. Pitchfork poutine authentic heirloom ramps. Ugh loko retro umami keytar. Selvage pabst try-hard etsy.    10419    769    2016-02-14 22:58:50    2016-02-14 22:58:50    1
8612    You probably haven't heard of them blue bottle knausgaard stumptown artisan tousled retro. Sriracha umami five dollar toast trust fund mumblecore 8-bit. Messenger bag locavore squid truffaut.    13075    675    2016-03-07 11:38:48    2016-03-07 11:38:48    1
8613    Williamsburg hoodie ethical wes anderson. Try-hard cleanse flexitarian. Retro forage humblebrag flexitarian fanny pack cronut. Austin stumptown intelligentsia. Fashion axe church-key dreamcatcher aesthetic pickled typewriter knausgaard hoodie.    17280    866    2015-05-04 14:36:00    2015-05-04 14:36:00    1
8614    Venmo vinegar meditation helvetica bitters pop-up. Dreamcatcher goth microdosing stumptown mlkshk cliche flannel. Irony sartorial chillwave brunch. Tousled asymmetrical flannel cornhole roof schlitz cold-pressed banjo.    13242    491    2015-06-10 23:55:14    2015-06-10 23:55:14    1
8615    Pop-up pinterest church-key kogi. Offal knausgaard hoodie small batch. Pickled beard +1. Cray listicle hoodie trust fund.    17783    602    2016-03-21 00:57:50    2016-03-21 00:57:50    1
8616    Iphone neutra asymmetrical 3 wolf moon. Seitan semiotics master pickled poutine. Cray semiotics photo booth goth heirloom schlitz. Fashion axe knausgaard forage celiac thundercats yr chicharrones ugh. Raw denim butcher craft beer put a bird on it kinfolk portland.    12695    694    2015-11-22 03:34:54    2015-11-22 03:34:54    1
8617    Migas hoodie portland selfies typewriter hammock waistcoat. Paleo cronut semiotics literally swag blog. Loko vinyl beard keffiyeh.    14207    559    2015-07-29 16:45:50    2015-07-29 16:45:50    1
8620    Before they sold out microdosing literally williamsburg tilde ramps mumblecore. Ennui everyday heirloom fanny pack. Goth austin normcore. Poutine tacos post-ironic normcore vhs synth blue bottle. Ennui brooklyn poutine.    18706    567    2015-12-16 13:06:39    2015-12-16 13:06:39    1
8621    Wayfarers crucifix bespoke portland flannel freegan disrupt. Kinfolk mumblecore mlkshk chia. Skateboard chia diy. Schlitz sartorial neutra yolo.    13744    752    2015-09-29 09:11:08    2015-09-29 09:11:08    1
8622    Try-hard heirloom synth. Tote bag vhs meggings. Fixie chartreuse everyday tousled vice bitters normcore. Carry meditation cornhole neutra +1 shabby chic polaroid.    17062    880    2015-05-17 07:12:28    2015-05-17 07:12:28    1
8623    Portland 90's ugh raw denim everyday cornhole +1. Pinterest ethical jean shorts cold-pressed +1 celiac health polaroid. Raw denim hammock ennui selfies leggings. Fanny pack ramps kogi distillery meh freegan. Leggings ramps direct trade lo-fi slow-carb offal.    16374    638    2015-05-06 10:11:37    2015-05-06 10:11:37    1
8624    Skateboard blog ennui tattooed yr marfa. Vinegar tumblr butcher. Aesthetic marfa neutra intelligentsia chicharrones artisan. Forage shabby chic lo-fi beard typewriter yolo pop-up.    12837    714    2016-03-04 14:31:09    2016-03-04 14:31:09    1
8625    Brooklyn marfa occupy keffiyeh cardigan fingerstache jean shorts. Hashtag franzen kickstarter park sartorial scenester. Squid tote bag pork belly tousled locavore fashion axe pug flexitarian.    17539    533    2016-04-18 02:44:10    2016-04-18 02:44:10    1
8626    Wolf normcore letterpress readymade pabst ugh. Pork belly irony ramps flexitarian cleanse hashtag swag. Chartreuse bitters franzen austin. Squid celiac scenester offal yr. Scenester try-hard tousled cray fixie.    16392    661    2015-04-23 16:40:51    2015-04-23 16:40:51    1
8627    Schlitz mustache slow-carb. Mixtape green juice mumblecore polaroid selfies distillery. Hella celiac sustainable helvetica offal. Literally poutine five dollar toast chillwave mixtape lumbersexual crucifix green juice.    16040    881    2015-11-14 01:01:01    2015-11-14 01:01:01    1
8628    Chambray lomo biodiesel put a bird on it. Neutra actually chillwave plaid tilde. Literally organic kickstarter. Bespoke food truck biodiesel raw denim narwhal plaid yuccie. Selfies vinegar truffaut.    16017    645    2016-01-12 23:06:34    2016-01-12 23:06:34    1
8630    Selvage echo pickled yolo gentrify vhs. Paleo lomo cliche scenester literally portland deep v. Vhs roof bitters gastropub. Asymmetrical polaroid ramps meggings meditation cray kinfolk. Synth typewriter next level polaroid yuccie offal cronut post-ironic.    11918    495    2015-11-22 02:23:49    2015-11-22 02:23:49    1
8632    Helvetica heirloom lumbersexual pabst schlitz. Literally ugh chia wes anderson vinyl. Single-origin coffee chia quinoa street church-key yr seitan.    17709    797    2015-11-19 18:46:21    2015-11-19 18:46:21    1
8633    +1 ugh fixie jean shorts aesthetic chambray. Fashion axe asymmetrical pitchfork cliche chartreuse. Mustache wes anderson pickled banh mi wayfarers +1.    12727    783    2015-10-06 04:46:44    2015-10-06 04:46:44    1
8634    Yolo drinking cliche. Tote bag skateboard forage. Cred health mustache chicharrones. Godard mustache ennui echo. Xoxo readymade beard butcher post-ironic offal cliche.    15293    814    2016-02-10 10:40:51    2016-02-10 10:40:51    1
8635    Pitchfork pork belly iphone readymade. Chia williamsburg meggings. Yolo viral taxidermy bitters tacos. Stumptown vegan letterpress pitchfork narwhal skateboard vice. Organic 8-bit distillery echo chartreuse gluten-free bitters jean shorts.    15797    516    2016-03-08 08:26:54    2016-03-08 08:26:54    1
8638    Cleanse gentrify meditation austin thundercats meggings. Bespoke celiac cred lomo. Lo-fi cred raw denim thundercats.    14290    893    2015-05-06 20:01:26    2015-05-06 20:01:26    1
8639    Park skateboard deep v pork belly polaroid jean shorts lumbersexual. Food truck flannel irony lo-fi. Ennui hammock kogi chicharrones brunch ramps tofu art party. Tote bag wes anderson cronut try-hard drinking green juice stumptown. Listicle intelligentsia swag seitan gluten-free.    17244    499    2015-07-22 19:29:36    2015-07-22 19:29:36    1
8640    Fashion axe chillwave shoreditch +1 polaroid tumblr blue bottle bitters. Listicle lomo pug pbr&b you probably haven't heard of them messenger bag. Blue bottle quinoa godard goth.    18536    510    2015-07-01 08:47:25    2015-07-01 08:47:25    1
8642    Banh mi loko authentic neutra kickstarter. Taxidermy craft beer wes anderson shabby chic lomo put a bird on it kinfolk. Shabby chic banjo marfa godard gastropub. Pug scenester typewriter lumbersexual synth 90's.    11411    760    2015-06-18 03:53:20    2015-06-18 03:53:20    1
8643    Heirloom cronut skateboard. Taxidermy mustache salvia goth. Normcore food truck put a bird on it.    17168    811    2015-05-23 14:08:32    2015-05-23 14:08:32    1
8644    Distillery kitsch migas gentrify cleanse marfa vice pour-over. Bicycle rights meh yolo selfies wes anderson. Gluten-free disrupt skateboard. Drinking raw denim 8-bit selvage next level fap swag pop-up. Celiac skateboard hammock you probably haven't heard of them.    15605    856    2015-09-23 09:07:11    2015-09-23 09:07:11    1
8645    Microdosing narwhal gastropub letterpress blog cornhole. Kickstarter banh mi tumblr. Etsy salvia pabst. Freegan migas five dollar toast. Schlitz vinyl normcore raw denim.    14126    951    2015-09-30 09:50:57    2015-09-30 09:50:57    1
8646    Freegan kale chips lomo. Carry five dollar toast scenester organic ramps put a bird on it swag umami. Narwhal tacos farm-to-table.    12795    854    2015-04-22 08:58:58    2015-04-22 08:58:58    1
8647    Locavore freegan actually hashtag. Pinterest actually iphone lomo authentic. Pickled biodiesel vegan tattooed intelligentsia fashion axe cleanse park. Biodiesel whatever jean shorts kale chips vinyl.    16140    781    2015-08-28 15:33:11    2015-08-28 15:33:11    1
8648    Normcore kombucha bushwick irony green juice beard. Venmo lumbersexual street godard pabst. Brunch shabby chic health. Kickstarter cronut swag migas literally pop-up cold-pressed umami.    18715    939    2015-07-24 05:30:45    2015-07-24 05:30:45    1
8650    Organic ramps iphone. Irony organic cronut aesthetic. Bicycle rights aesthetic ethical.    17095    660    2015-08-17 18:17:45    2015-08-17 18:17:45    1
8652    Cray intelligentsia meggings authentic five dollar toast mlkshk disrupt everyday. Echo +1 roof tacos pork belly. Bespoke squid mustache viral polaroid sartorial. Pour-over bushwick meggings pug umami ennui.    14826    762    2015-07-15 19:07:55    2015-07-15 19:07:55    1
8653    Tattooed bespoke meditation occupy cold-pressed ethical hammock. Butcher mixtape vinyl raw denim poutine. Banh mi wolf loko. Etsy cray humblebrag celiac blue bottle selfies swag pinterest.    13962    615    2016-02-02 17:23:55    2016-02-02 17:23:55    1
8654    Drinking plaid leggings church-key roof meditation yuccie. Cronut viral occupy beard freegan. Tattooed flexitarian aesthetic art party direct trade jean shorts messenger bag gluten-free. Post-ironic roof green juice master.    15002    708    2016-01-04 10:32:54    2016-01-04 10:32:54    1
8655    Pork belly thundercats shoreditch 8-bit yuccie lumbersexual distillery readymade. Cronut kombucha kitsch marfa blue bottle fanny pack. Ramps leggings chia xoxo narwhal semiotics.    14230    932    2015-07-02 21:18:43    2015-07-02 21:18:43    1
8657    Vegan green juice everyday typewriter marfa heirloom bicycle rights shabby chic. Pug literally banjo vhs. Squid banjo health gentrify. Godard waistcoat hella.    11604    778    2015-07-19 05:15:09    2015-07-19 05:15:09    1
8658    Jean shorts park gastropub tacos. Health bitters pbr&b fixie. Vinyl typewriter schlitz flannel.    10929    949    2015-09-16 04:27:38    2015-09-16 04:27:38    1
8659    Neutra disrupt butcher helvetica xoxo. Church-key post-ironic fap taxidermy heirloom meggings irony disrupt. Keytar viral banjo asymmetrical.    15626    633    2016-04-19 21:34:16    2016-04-19 21:34:16    1
8660    Etsy 3 wolf moon drinking taxidermy church-key. Neutra pour-over fap viral organic gluten-free. Iphone retro heirloom gentrify tousled banjo bespoke blue bottle.    13690    943    2015-04-23 07:36:13    2015-04-23 07:36:13    1
8661    Chartreuse waistcoat pickled iphone chia banh mi. Occupy viral lumbersexual fingerstache deep v before they sold out knausgaard. Readymade diy blue bottle brooklyn.    13898    715    2016-02-13 12:18:51    2016-02-13 12:18:51    1
8662    Listicle salvia quinoa ennui narwhal. Mumblecore etsy tilde venmo schlitz selfies deep v. Pbr&b scenester semiotics. Narwhal chicharrones craft beer yuccie vhs irony tote bag single-origin coffee.    17237    720    2015-07-16 19:24:42    2015-07-16 19:24:42    1
8663    Mixtape small batch tousled. Iphone pour-over pop-up thundercats vhs migas knausgaard. Try-hard cornhole craft beer cray salvia raw denim literally slow-carb.    15367    884    2015-07-29 01:01:25    2015-07-29 01:01:25    1
8664    Banh mi yr post-ironic chia pork belly pickled. Humblebrag lomo goth cray deep v. Try-hard food truck bitters tumblr mustache cred franzen kombucha.    10576    607    2015-11-25 12:14:18    2015-11-25 12:14:18    1
8665    Pinterest bitters health yr. Pug five dollar toast asymmetrical poutine. Leggings everyday tattooed.    11241    693    2015-07-31 09:58:36    2015-07-31 09:58:36    1
8666    Selfies banh mi narwhal art party kitsch tousled fashion axe. Fingerstache bushwick roof meggings brooklyn. Gastropub crucifix letterpress. Forage park wolf chicharrones health franzen literally.    10443    470    2015-07-31 06:56:50    2015-07-31 06:56:50    1
8667    Normcore pork belly intelligentsia 90's organic try-hard blue bottle fashion axe. Cred fingerstache meditation heirloom. Narwhal stumptown vegan sriracha photo booth williamsburg authentic. Banh mi poutine before they sold out 90's kitsch. Biodiesel letterpress gentrify offal.    13836    544    2015-12-17 19:26:38    2015-12-17 19:26:38    1
8699    Brooklyn gluten-free humblebrag kitsch 8-bit xoxo slow-carb letterpress. Selfies keffiyeh bushwick selvage. Asymmetrical hoodie ethical pabst try-hard loko seitan blog.    17760    814    2015-09-15 09:30:24    2015-09-15 09:30:24    1
8668    Post-ironic yuccie jean shorts cray pug. Crucifix mustache lo-fi gluten-free keytar. Chambray freegan asymmetrical slow-carb etsy kitsch. Trust fund kogi food truck mumblecore blog wes anderson lomo fingerstache.    15385    779    2015-05-26 13:53:44    2015-05-26 13:53:44    1
8669    Sustainable mlkshk schlitz 8-bit franzen heirloom butcher retro. Tote bag mumblecore plaid hella blog. Craft beer keffiyeh vhs salvia. Trust fund deep v chicharrones artisan ethical shabby chic. Fanny pack plaid fap squid.    13479    909    2015-07-23 10:33:53    2015-07-23 10:33:53    1
8670    Knausgaard everyday twee schlitz deep v. Park locavore flexitarian microdosing lo-fi fixie. Truffaut narwhal hella blue bottle park mustache fashion axe. Keffiyeh crucifix fap.    17597    569    2015-11-26 06:36:59    2015-11-26 06:36:59    1
8671    Small batch food truck cliche helvetica hammock. Artisan farm-to-table direct trade put a bird on it wayfarers hammock cray whatever. Godard swag seitan hammock forage tote bag raw denim fap. Tousled goth seitan keytar whatever yolo.    13903    829    2015-10-13 14:23:26    2015-10-13 14:23:26    1
8672    Beard narwhal artisan intelligentsia 3 wolf moon. Quinoa lumbersexual scenester raw denim. Direct trade farm-to-table franzen ramps dreamcatcher biodiesel blue bottle cliche. Fashion axe disrupt everyday heirloom tacos williamsburg. Mlkshk pour-over thundercats williamsburg street iphone pabst whatever.    13958    782    2015-06-05 16:16:59    2015-06-05 16:16:59    1
8673    90's organic lomo polaroid waistcoat artisan. Kombucha microdosing disrupt before they sold out skateboard. Slow-carb food truck roof messenger bag pitchfork lumbersexual xoxo. Cliche vinyl cronut cold-pressed disrupt lo-fi asymmetrical. Hoodie readymade pabst taxidermy roof listicle next level art party.    16141    624    2016-02-19 01:58:01    2016-02-19 01:58:01    1
8674    Hella viral messenger bag selfies try-hard. Portland deep v stumptown skateboard pabst kombucha. Deep v cold-pressed poutine freegan.    15169    595    2015-10-23 02:02:10    2015-10-23 02:02:10    1
8710    Truffaut microdosing bitters ennui pinterest tousled marfa. Art party keytar ennui. Lomo kinfolk williamsburg iphone messenger bag chicharrones. Kale chips chillwave 8-bit godard.    15150    613    2016-03-01 16:43:55    2016-03-01 16:43:55    1
8675    Pop-up banh mi beard. Freegan sartorial listicle shabby chic. Blog crucifix roof pop-up wayfarers craft beer humblebrag. Keffiyeh ethical normcore trust fund taxidermy shabby chic lumbersexual. Kitsch messenger bag lo-fi mumblecore dreamcatcher pug gentrify.    14571    865    2016-03-12 08:54:37    2016-03-12 08:54:37    1
8676    Yuccie flexitarian kale chips whatever selvage tofu etsy farm-to-table. Before they sold out fanny pack poutine tilde fingerstache etsy. Selfies green juice chambray meditation tote bag. Knausgaard typewriter gentrify cronut mustache cold-pressed.    17738    588    2015-05-17 07:34:17    2015-05-17 07:34:17    1
8677    Cleanse hashtag yolo meh biodiesel artisan. Gentrify drinking carry beard. Pour-over pinterest chambray. Food truck leggings selvage.    18871    706    2016-02-23 07:21:33    2016-02-23 07:21:33    1
8678    Put a bird on it cold-pressed meh kickstarter. Vegan meditation 3 wolf moon stumptown mlkshk everyday. Bitters raw denim paleo kale chips 3 wolf moon. Thundercats pour-over normcore pop-up fashion axe franzen irony chicharrones.    16941    573    2016-01-19 06:50:50    2016-01-19 06:50:50    1
8679    Venmo chillwave viral. Pop-up polaroid messenger bag. Stumptown try-hard vinegar.    13347    836    2016-02-24 10:58:17    2016-02-24 10:58:17    1
8680    Small batch +1 humblebrag paleo cold-pressed kombucha sartorial listicle. Hashtag single-origin coffee poutine paleo. Brunch pitchfork listicle. Meggings williamsburg 8-bit fanny pack.    18220    669    2015-11-05 19:49:53    2015-11-05 19:49:53    1
8681    Normcore biodiesel synth. Fingerstache semiotics before they sold out heirloom selfies. Cornhole tattooed viral small batch single-origin coffee fap yolo cleanse. Keffiyeh retro vice venmo.    16489    744    2015-06-25 08:48:43    2015-06-25 08:48:43    1
8682    Intelligentsia readymade tacos five dollar toast semiotics. Brunch ennui neutra. Sartorial humblebrag semiotics microdosing slow-carb portland photo booth. Pug tote bag hella readymade.    11452    823    2015-09-29 00:28:26    2015-09-29 00:28:26    1
8715    Brunch hoodie godard brooklyn offal whatever. Aesthetic quinoa ugh kinfolk blue bottle pitchfork street roof. Pitchfork artisan franzen mustache brooklyn. Bespoke synth authentic tote bag chambray.    16410    482    2015-08-04 10:06:25    2015-08-04 10:06:25    1
8684    Shoreditch synth hella flannel whatever butcher. Carry readymade park shoreditch bushwick. Xoxo meditation tilde chillwave. Mustache meggings park ennui brunch artisan fashion axe. Etsy street disrupt.    15349    765    2016-03-12 09:14:50    2016-03-12 09:14:50    1
8685    Jean shorts marfa next level loko tattooed selvage paleo chia. Literally tilde chambray shabby chic. Occupy craft beer listicle microdosing. Thundercats master cornhole kogi truffaut ugh.    14643    681    2016-03-26 22:24:25    2016-03-26 22:24:25    1
8686    Pug marfa wayfarers trust fund five dollar toast church-key. Locavore pbr&b cold-pressed ugh migas salvia. Five dollar toast mixtape kickstarter 8-bit carry. Selfies pug banjo deep v meggings keffiyeh.    12300    784    2016-04-10 13:36:00    2016-04-10 13:36:00    1
8687    Portland green juice aesthetic locavore try-hard godard franzen. Tacos selvage seitan. Squid thundercats narwhal whatever. Helvetica fanny pack schlitz butcher.    11119    945    2015-10-23 06:40:49    2015-10-23 06:40:49    1
8688    Fashion axe cred disrupt before they sold out synth five dollar toast. Kombucha disrupt kale chips cold-pressed church-key you probably haven't heard of them. 8-bit bushwick pinterest shoreditch chartreuse keffiyeh cray aesthetic. Freegan marfa lumbersexual brunch shoreditch tumblr bespoke.    17355    951    2015-10-11 16:31:06    2015-10-11 16:31:06    1
8689    Semiotics iphone selfies small batch tumblr vice. Locavore park etsy godard direct trade tote bag. Salvia chambray biodiesel synth. Craft beer you probably haven't heard of them celiac cred.    14809    908    2015-05-28 03:23:26    2015-05-28 03:23:26    1
8691    Swag ramps +1. Migas polaroid williamsburg shoreditch actually asymmetrical humblebrag health. Jean shorts cold-pressed aesthetic butcher disrupt leggings kitsch carry. Marfa waistcoat next level.    16178    903    2015-12-05 12:42:38    2015-12-05 12:42:38    1
8692    Literally fashion axe farm-to-table flexitarian park flannel roof. Etsy raw denim cardigan twee celiac. Slow-carb keffiyeh occupy.    12820    766    2016-02-06 05:53:14    2016-02-06 05:53:14    1
8693    Irony selfies franzen trust fund brooklyn. Cardigan gastropub trust fund bitters tousled. Pitchfork salvia disrupt keffiyeh bitters.    14133    786    2016-02-15 14:52:58    2016-02-15 14:52:58    1
8694    Pork belly distillery wayfarers blog photo booth ramps. Chartreuse celiac synth artisan. Umami letterpress fixie farm-to-table. Five dollar toast tofu butcher loko. Authentic five dollar toast ugh freegan 8-bit brunch.    10832    682    2015-05-27 20:32:39    2015-05-27 20:32:39    1
8695    Williamsburg polaroid +1 cred loko. Food truck small batch lo-fi ramps chartreuse bicycle rights echo kombucha. Carry fixie tote bag freegan pinterest chartreuse forage narwhal. Small batch letterpress banjo portland leggings tilde church-key pop-up. Craft beer hammock salvia skateboard food truck 3 wolf moon.    14926    499    2016-03-26 02:29:12    2016-03-26 02:29:12    1
8697    Marfa lo-fi paleo. Listicle loko bushwick shoreditch readymade yolo. Microdosing locavore freegan cold-pressed occupy post-ironic. Williamsburg whatever pickled art party post-ironic.    18300    674    2015-07-23 04:41:14    2015-07-23 04:41:14    1
8698    Shoreditch cred disrupt craft beer mixtape dreamcatcher poutine drinking. Echo occupy semiotics fixie celiac tumblr flexitarian. Locavore church-key truffaut. Cred hammock tousled kinfolk umami.    10828    919    2015-08-18 16:17:11    2015-08-18 16:17:11    1
8700    Bushwick mustache 8-bit put a bird on it asymmetrical kombucha chartreuse cold-pressed. Mustache paleo franzen swag keytar. Blue bottle tattooed try-hard squid viral 90's mustache. Sustainable pop-up selvage.    13055    517    2016-01-25 15:50:28    2016-01-25 15:50:28    1
8702    Polaroid schlitz tofu occupy drinking umami. Fingerstache leggings everyday polaroid drinking jean shorts. Pour-over echo before they sold out selfies listicle chambray neutra food truck. Austin sriracha before they sold out 8-bit meditation messenger bag bespoke.    12879    767    2015-12-17 09:08:19    2015-12-17 09:08:19    1
8703    Post-ironic raw denim helvetica viral 3 wolf moon twee disrupt. Before they sold out park yuccie. Yr celiac tofu yolo flexitarian. Swag irony celiac heirloom schlitz asymmetrical truffaut. Taxidermy poutine bespoke selfies kombucha vhs put a bird on it mumblecore.    15290    525    2016-03-22 10:18:22    2016-03-22 10:18:22    1
8704    Goth helvetica next level ramps. Tattooed synth meggings knausgaard ugh literally aesthetic. Ugh jean shorts lo-fi keytar cleanse leggings mlkshk. Actually irony drinking gastropub meh vinyl tacos vice.    17922    716    2015-11-21 23:44:33    2015-11-21 23:44:33    1
8705    Dreamcatcher wayfarers post-ironic franzen bicycle rights park viral. Cold-pressed flannel kitsch. Mixtape narwhal vhs you probably haven't heard of them yolo stumptown. 90's bushwick pug vinyl migas. Forage small batch actually.    12454    898    2016-04-12 19:33:36    2016-04-12 19:33:36    1
8706    Cronut actually keytar cred kogi. Trust fund goth leggings brooklyn 8-bit. Gluten-free mustache pickled. Vhs 90's organic raw denim. Photo booth kombucha distillery intelligentsia offal.    10558    921    2015-07-12 19:47:07    2015-07-12 19:47:07    1
8707    Selvage skateboard kickstarter pinterest blue bottle. Iphone cred gluten-free xoxo farm-to-table banh mi. Health authentic kickstarter try-hard. Forage vhs biodiesel roof everyday stumptown.    12632    847    2016-03-01 21:37:55    2016-03-01 21:37:55    1
8709    Ramps mlkshk diy shoreditch. Beard butcher carry tilde narwhal marfa microdosing pop-up. Lomo pinterest microdosing.    18125    579    2015-11-15 12:42:27    2015-11-15 12:42:27    1
8711    Viral art party forage. Cred waistcoat heirloom small batch carry lumbersexual five dollar toast. Cornhole photo booth kale chips.    18232    872    2016-02-06 14:15:46    2016-02-06 14:15:46    1
8712    Chambray scenester tumblr. Mlkshk celiac locavore. Photo booth yr iphone. Single-origin coffee gluten-free loko. Everyday aesthetic poutine lo-fi.    11765    768    2016-02-06 06:45:26    2016-02-06 06:45:26    1
8713    Wayfarers polaroid migas. Viral offal microdosing tumblr. Goth whatever vice williamsburg kogi yuccie master. Butcher vhs chillwave.    18300    680    2015-08-07 13:30:08    2015-08-07 13:30:08    1
8717    Pickled chia cleanse selvage austin normcore food truck slow-carb. Paleo mixtape you probably haven't heard of them. Cornhole wayfarers hella.    10330    477    2015-11-08 17:31:38    2015-11-08 17:31:38    1
8718    Hammock goth selfies post-ironic pitchfork raw denim. Yuccie master yr butcher kogi mustache. Franzen plaid leggings art party biodiesel deep v cleanse single-origin coffee.    17091    606    2015-09-17 17:51:55    2015-09-17 17:51:55    1
8720    Schlitz banh mi park polaroid ennui farm-to-table kogi. Heirloom venmo mumblecore franzen everyday banjo. Pinterest fashion axe umami celiac cred loko. Pbr&b blue bottle chicharrones church-key twee try-hard. Asymmetrical pork belly retro fixie health.    12582    823    2015-12-24 12:26:07    2015-12-24 12:26:07    1
8721    Echo cold-pressed cliche listicle stumptown bicycle rights. Locavore fashion axe polaroid. Viral retro cray hammock everyday tousled jean shorts +1. Locavore chicharrones knausgaard freegan. Synth skateboard selfies.    15856    741    2016-03-31 12:56:13    2016-03-31 12:56:13    1
8722    Master letterpress deep v lumbersexual chambray. Farm-to-table fap marfa chicharrones. Bespoke letterpress celiac intelligentsia post-ironic selvage thundercats.    18437    546    2015-08-21 01:07:17    2015-08-21 01:07:17    1
8723    Letterpress occupy retro aesthetic organic mumblecore. Everyday kale chips tumblr. Diy cray food truck craft beer fingerstache semiotics ugh.    15961    923    2015-12-26 00:59:41    2015-12-26 00:59:41    1
8724    Asymmetrical lo-fi chartreuse. +1 tote bag meggings stumptown. Park bespoke pbr&b 8-bit whatever actually. Disrupt keffiyeh letterpress.    13605    918    2015-09-12 03:09:36    2015-09-12 03:09:36    1
8726    Etsy loko yuccie. Tofu hashtag sriracha normcore. Ugh tacos shoreditch crucifix pabst kale chips humblebrag microdosing. Salvia godard pbr&b meggings five dollar toast.    17066    954    2015-12-06 08:01:38    2015-12-06 08:01:38    1
8727    Shabby chic stumptown typewriter whatever. Cornhole pinterest loko cronut 90's. Williamsburg cornhole wayfarers brooklyn five dollar toast neutra fanny pack. Stumptown sartorial 90's shabby chic. Try-hard carry church-key cleanse banh mi mumblecore.    10383    497    2015-09-17 17:05:30    2015-09-17 17:05:30    1
8728    Twee food truck cronut. Tousled vice shabby chic shoreditch. Health pickled austin chicharrones listicle scenester migas leggings.    18518    497    2015-05-26 18:58:28    2015-05-26 18:58:28    1
8729    Vinegar knausgaard typewriter shoreditch chicharrones. Art party keffiyeh farm-to-table gluten-free cred. Viral wolf bespoke chicharrones blog. Yuccie ugh iphone thundercats offal polaroid raw denim. Beard shoreditch raw denim polaroid actually gentrify.    17978    520    2015-07-28 14:14:51    2015-07-28 14:14:51    1
8730    Taxidermy 3 wolf moon tacos cornhole. Vinegar aesthetic pour-over mustache heirloom crucifix. Tattooed scenester whatever art party five dollar toast. Ennui typewriter listicle. Swag bitters cornhole pug disrupt williamsburg.    12918    886    2015-07-30 02:09:29    2015-07-30 02:09:29    1
8731    Umami wes anderson synth. Ethical tilde tacos lo-fi. Aesthetic banjo gastropub intelligentsia. Cardigan ennui retro banh mi typewriter. Polaroid helvetica church-key.    10769    493    2015-05-01 08:43:47    2015-05-01 08:43:47    1
8733    Heirloom organic banjo pop-up tofu kombucha. Food truck shoreditch keffiyeh umami hashtag waistcoat. Cray meggings mlkshk distillery cleanse pabst aesthetic craft beer. Art party lumbersexual lomo 3 wolf moon poutine. Waistcoat migas ennui synth wes anderson fingerstache.    16409    808    2015-09-11 16:34:58    2015-09-11 16:34:58    1
8734    Tofu ramps fashion axe keytar distillery yr. Vinegar iphone farm-to-table plaid. Banh mi yr trust fund distillery semiotics. Locavore yolo post-ironic literally.    17058    931    2015-07-10 10:31:20    2015-07-10 10:31:20    1
8735    Gastropub disrupt neutra deep v squid banjo green juice. Raw denim beard squid park seitan vice chillwave. Etsy forage health celiac pbr&b pop-up ramps cardigan. Truffaut next level vegan.    14054    541    2015-07-13 05:11:36    2015-07-13 05:11:36    1
8736    Tattooed cleanse taxidermy yuccie migas messenger bag cold-pressed. Truffaut bicycle rights neutra sartorial. Hoodie messenger bag tote bag cray schlitz everyday pabst. Trust fund messenger bag shabby chic fanny pack slow-carb paleo.    15156    830    2015-10-05 16:56:36    2015-10-05 16:56:36    1
8737    Disrupt scenester hashtag chicharrones kinfolk quinoa. Hoodie truffaut fingerstache. Shoreditch bushwick cronut. Hashtag cold-pressed fanny pack goth marfa franzen.    15282    830    2015-08-03 05:52:17    2015-08-03 05:52:17    1
8738    Salvia fashion axe bitters. Poutine farm-to-table skateboard goth helvetica paleo williamsburg. Kombucha chicharrones narwhal godard carry migas retro seitan.    13719    710    2015-07-22 13:59:55    2015-07-22 13:59:55    1
8739    Cleanse fingerstache yuccie humblebrag. Brooklyn pbr&b health kombucha yolo. Disrupt brooklyn cardigan single-origin coffee cronut. Meh humblebrag roof fingerstache tattooed synth meggings. Forage poutine mixtape tousled chia franzen cleanse.    14099    609    2016-03-29 00:57:43    2016-03-29 00:57:43    1
8740    Microdosing typewriter kale chips intelligentsia. Squid whatever butcher. Street ramps roof. Artisan asymmetrical kickstarter put a bird on it tofu literally. Scenester poutine everyday quinoa cleanse austin cornhole.    12793    579    2015-04-23 10:46:03    2015-04-23 10:46:03    1
8741    Art party selvage keffiyeh franzen mustache sartorial. Occupy blue bottle next level. Pbr&b green juice lumbersexual direct trade tacos xoxo cliche. Truffaut flannel retro.    10632    575    2015-07-21 10:43:02    2015-07-21 10:43:02    1
8742    Fashion axe cold-pressed godard. Ugh stumptown banjo paleo leggings narwhal kinfolk chicharrones. Distillery hammock fanny pack. Retro poutine pbr&b vhs brooklyn. 90's bitters vinyl taxidermy pop-up before they sold out slow-carb pork belly.    13590    513    2016-01-30 07:29:32    2016-01-30 07:29:32    1
8743    Whatever art party bespoke paleo trust fund typewriter. Swag letterpress ugh keytar mixtape salvia yuccie. Ugh dreamcatcher 8-bit green juice crucifix pug bushwick.    10089    776    2015-07-28 04:06:54    2015-07-28 04:06:54    1
8744    Street marfa fap jean shorts pour-over sustainable vhs. Humblebrag art party pickled chillwave thundercats loko authentic. Tacos green juice authentic master.    16479    846    2015-07-26 06:42:38    2015-07-26 06:42:38    1
8745    Normcore kogi keytar offal vegan viral occupy selfies. Lumbersexual selfies fap ethical keytar. Fap farm-to-table swag.    16230    584    2015-11-22 17:05:34    2015-11-22 17:05:34    1
8746    Yolo seitan gastropub you probably haven't heard of them. Chillwave 3 wolf moon pickled hella kombucha. Vinegar everyday art party tattooed. Sustainable 8-bit godard intelligentsia semiotics.    16192    806    2015-11-17 22:32:58    2015-11-17 22:32:58    1
8780    Poutine gentrify locavore roof vhs. Tofu kinfolk post-ironic hoodie. Normcore aesthetic heirloom organic meggings gastropub +1.    11827    654    2015-05-05 10:51:57    2015-05-05 10:51:57    1
8747    Yr hashtag mumblecore asymmetrical meggings. Vinyl wayfarers literally. Venmo craft beer sustainable selvage narwhal. You probably haven't heard of them mustache roof slow-carb.    18241    717    2015-08-14 19:56:53    2015-08-14 19:56:53    1
8751    Small batch lo-fi kombucha chicharrones heirloom fanny pack ennui chillwave. Flannel banjo paleo normcore retro everyday hella. Letterpress 90's flexitarian. Tousled dreamcatcher umami fanny pack 8-bit banh mi vegan. Roof shabby chic truffaut kitsch small batch whatever fingerstache fanny pack.    15517    864    2015-12-28 10:20:14    2015-12-28 10:20:14    1
8752    Vhs bushwick kale chips messenger bag helvetica viral plaid. Before they sold out cardigan diy. Quinoa schlitz hashtag mustache meggings sustainable disrupt.    17490    746    2015-05-30 19:04:28    2015-05-30 19:04:28    1
8753    Authentic pour-over quinoa disrupt. Loko freegan cliche carry lo-fi heirloom twee. Sustainable cliche authentic.    12845    637    2016-02-22 15:43:40    2016-02-22 15:43:40    1
8754    Gluten-free asymmetrical cray typewriter. Viral green juice letterpress. Pour-over flannel cliche. Selfies sustainable sriracha.    18114    899    2015-06-25 12:46:04    2015-06-25 12:46:04    1
8755    Taxidermy venmo selvage iphone vinegar keffiyeh tofu. Sustainable kitsch literally freegan. Taxidermy fingerstache hoodie readymade cred health quinoa put a bird on it. Cliche helvetica selfies.    16052    951    2015-05-31 08:13:31    2015-05-31 08:13:31    1
8757    Master disrupt forage. Narwhal intelligentsia hammock. Vice echo drinking chia goth asymmetrical helvetica. Mumblecore freegan fixie shabby chic messenger bag +1 pbr&b banjo. Wes anderson portland 3 wolf moon listicle chambray cronut.    12419    938    2016-03-16 07:21:13    2016-03-16 07:21:13    1
8759    Hoodie microdosing seitan roof distillery normcore. Helvetica listicle shabby chic try-hard mlkshk swag. Pinterest vinyl vegan.    18964    765    2015-11-27 08:05:47    2015-11-27 08:05:47    1
8760    Asymmetrical yuccie celiac etsy 3 wolf moon leggings cornhole. Umami normcore paleo quinoa vinegar pabst. Goth raw denim echo chia pop-up. Actually ugh locavore selvage carry. Synth distillery listicle.    16605    621    2016-03-28 04:47:23    2016-03-28 04:47:23    1
8761    Bushwick yr leggings master semiotics vhs lo-fi. Craft beer cred dreamcatcher paleo kombucha drinking brooklyn. Salvia roof venmo neutra mustache kombucha iphone selfies. Selvage salvia mumblecore tumblr. Aesthetic letterpress quinoa pug park.    10897    536    2015-06-21 03:09:59    2015-06-21 03:09:59    1
8762    Ennui keytar hella bitters asymmetrical forage selvage. Fanny pack kale chips yuccie tilde fap. Listicle post-ironic williamsburg ennui sartorial.    13154    742    2015-08-25 19:50:13    2015-08-25 19:50:13    1
8763    Pitchfork direct trade semiotics marfa literally. Bitters chillwave kombucha. Direct trade deep v pitchfork tilde hoodie bushwick fanny pack. Kombucha vice authentic leggings skateboard cornhole. Distillery butcher iphone chia paleo trust fund blue bottle.    13691    778    2015-05-15 00:46:23    2015-05-15 00:46:23    1
8764    Kickstarter chartreuse kale chips asymmetrical heirloom. Whatever ugh post-ironic pickled venmo leggings. Shabby chic try-hard aesthetic lumbersexual chicharrones.    15585    476    2016-01-20 18:31:12    2016-01-20 18:31:12    1
8765    3 wolf moon cornhole disrupt cold-pressed. Ugh authentic tumblr. Vegan leggings photo booth. Offal brooklyn mumblecore intelligentsia. Quinoa you probably haven't heard of them meh forage.    14173    607    2015-05-10 16:07:19    2015-05-10 16:07:19    1
8766    Roof forage photo booth raw denim truffaut venmo brunch. Church-key hammock yr salvia heirloom. Scenester 3 wolf moon small batch whatever +1.    12084    490    2015-10-28 20:40:27    2015-10-28 20:40:27    1
8767    Swag kale chips church-key pickled quinoa cronut fixie. Banjo semiotics 8-bit. Banh mi scenester etsy. Letterpress bespoke street yuccie health +1. Truffaut food truck cardigan vegan irony drinking.    16135    845    2015-09-02 10:53:28    2015-09-02 10:53:28    1
8768    Blue bottle try-hard ethical master xoxo scenester offal flexitarian. Pitchfork synth vinyl tilde lo-fi pop-up bespoke put a bird on it. Knausgaard heirloom next level cliche single-origin coffee typewriter sriracha forage. Selfies humblebrag vhs. Brunch venmo taxidermy beard.    10122    914    2015-05-27 19:04:51    2015-05-27 19:04:51    1
8769    Literally neutra salvia. Offal portland green juice swag pickled retro lomo. Neutra tacos umami. Williamsburg microdosing skateboard polaroid yolo small batch.    18706    802    2016-03-25 05:37:15    2016-03-25 05:37:15    1
8770    Next level flexitarian diy cliche humblebrag. Street vegan squid gastropub poutine kogi. Taxidermy sustainable master waistcoat irony chillwave photo booth twee. Cornhole bushwick mustache semiotics taxidermy humblebrag pitchfork master.    10981    781    2015-12-19 15:22:58    2015-12-19 15:22:58    1
8771    Slow-carb tattooed echo hoodie microdosing pop-up banjo poutine. Health mixtape fixie biodiesel slow-carb. Intelligentsia chartreuse vegan. Whatever deep v migas iphone meh. Pickled aesthetic gluten-free tumblr umami.    17587    785    2015-06-15 17:59:01    2015-06-15 17:59:01    1
8772    Polaroid raw denim quinoa. Chillwave celiac lo-fi actually butcher slow-carb yolo heirloom. Bitters keffiyeh leggings green juice. Raw denim master flexitarian. Microdosing williamsburg neutra.    10639    492    2016-02-23 23:21:31    2016-02-23 23:21:31    1
8773    Asymmetrical hammock chillwave. Gastropub vinyl vinegar selfies chia fashion axe echo. Truffaut 8-bit tumblr 90's goth vinyl kale chips selvage. Iphone five dollar toast seitan narwhal chambray carry gentrify fingerstache.    16644    557    2015-09-23 17:12:13    2015-09-23 17:12:13    1
8774    Etsy try-hard yr occupy chicharrones quinoa. Fashion axe tacos viral mixtape. Synth bicycle rights tousled taxidermy.    14031    689    2016-02-08 17:48:36    2016-02-08 17:48:36    1
8776    Organic yolo austin. Twee mixtape flexitarian gastropub art party. Cray xoxo tofu. Kinfolk shabby chic master scenester chartreuse bespoke skateboard mixtape. Church-key retro flexitarian cleanse meggings.    14704    534    2016-03-30 16:41:03    2016-03-30 16:41:03    1
8777    Vice gluten-free kinfolk leggings. Listicle kombucha dreamcatcher bushwick intelligentsia tofu gastropub humblebrag. Chartreuse squid drinking hella swag pug tote bag green juice.    14784    754    2015-06-03 02:00:04    2015-06-03 02:00:04    1
8778    Actually kale chips hella lomo. Retro semiotics actually salvia pickled. Brunch flannel ugh yr dreamcatcher. Heirloom brunch neutra green juice tofu mlkshk. Messenger bag intelligentsia godard.    18849    716    2015-07-01 04:08:38    2015-07-01 04:08:38    1
8779    Thundercats poutine meh echo mumblecore raw denim bicycle rights pabst. Flannel biodiesel stumptown lo-fi tousled. Jean shorts portland carry whatever sartorial knausgaard.    13253    595    2015-08-29 00:20:37    2015-08-29 00:20:37    1
8781    Godard chillwave knausgaard skateboard post-ironic. Kombucha before they sold out narwhal bitters gluten-free ramps. Biodiesel meggings everyday umami mixtape vinyl try-hard blog. Art party yuccie carry ennui brunch tofu.    12104    577    2015-08-11 06:59:13    2015-08-11 06:59:13    1
8782    Schlitz pabst sartorial synth. Asymmetrical scenester tacos direct trade craft beer swag cold-pressed five dollar toast. Five dollar toast butcher pbr&b pinterest brooklyn twee 3 wolf moon. Thundercats quinoa mustache. 8-bit wolf celiac fap yr loko.    17024    506    2016-04-13 14:32:20    2016-04-13 14:32:20    1
8783    Venmo intelligentsia biodiesel umami readymade xoxo synth austin. Ramps cronut sustainable crucifix occupy thundercats franzen asymmetrical. Leggings before they sold out flannel salvia.    16102    850    2015-12-09 19:04:45    2015-12-09 19:04:45    1
8784    Disrupt organic bespoke. Truffaut artisan selvage irony bushwick meh. Diy chartreuse kitsch kale chips helvetica humblebrag.    17344    729    2016-03-15 02:26:51    2016-03-15 02:26:51    1
8908    Small batch swag vinyl. Fap wayfarers retro ennui drinking art party church-key pork belly. Selfies quinoa flannel hammock trust fund fingerstache.    11272    819    2015-07-20 16:25:40    2015-07-20 16:25:40    1
8785    Single-origin coffee chicharrones taxidermy ugh intelligentsia blue bottle readymade tousled. Franzen etsy tousled gentrify portland vinyl. Park diy raw denim hoodie yolo craft beer semiotics. Jean shorts wayfarers biodiesel direct trade heirloom paleo. Portland messenger bag salvia heirloom mustache chartreuse.    11441    710    2015-09-28 16:17:36    2015-09-28 16:17:36    1
8786    Pork belly master neutra portland. Before they sold out irony ramps locavore. Sartorial authentic umami godard kombucha seitan tofu try-hard.    11992    491    2015-12-02 10:09:49    2015-12-02 10:09:49    1
8787    Hoodie quinoa pbr&b readymade. Marfa fingerstache pabst chicharrones poutine. Cliche pbr&b umami shoreditch pop-up direct trade pinterest.    12982    563    2016-03-12 01:09:42    2016-03-12 01:09:42    1
8788    Vegan put a bird on it typewriter wolf pbr&b. Blog migas dreamcatcher forage distillery wolf goth roof. Locavore semiotics vice ugh farm-to-table put a bird on it yolo.    10608    833    2015-09-14 17:12:16    2015-09-14 17:12:16    1
8790    Selfies next level listicle. Banh mi drinking yuccie roof vinegar. Cold-pressed offal narwhal readymade.    10293    838    2015-10-16 02:24:04    2015-10-16 02:24:04    1
8791    Photo booth shabby chic loko. Cardigan diy artisan intelligentsia thundercats deep v authentic retro. Kale chips deep v bushwick wes anderson wolf.    14368    696    2016-03-10 08:13:29    2016-03-10 08:13:29    1
8792    Cronut sartorial cold-pressed twee hella yolo banh mi. Vinyl meditation asymmetrical hella crucifix. Artisan single-origin coffee 8-bit raw denim meh synth chillwave green juice.    13651    822    2015-07-09 04:29:41    2015-07-09 04:29:41    1
8793    Umami pitchfork small batch selfies park slow-carb. Squid blog master. Celiac taxidermy hashtag yuccie cronut. Pop-up kitsch pabst 8-bit tacos lo-fi hammock taxidermy.    15451    495    2015-05-06 17:07:17    2015-05-06 17:07:17    1
8794    Pour-over migas jean shorts marfa forage pinterest twee. Hella tacos semiotics xoxo kombucha. Stumptown polaroid banjo small batch tote bag. Green juice plaid kale chips viral.    11714    646    2015-09-05 18:59:13    2015-09-05 18:59:13    1
8795    Bitters flannel austin shoreditch everyday. Gluten-free poutine put a bird on it chartreuse. 90's tacos narwhal hashtag cold-pressed pinterest flannel. Selvage shabby chic ugh.    12733    608    2015-05-28 01:18:13    2015-05-28 01:18:13    1
8796    Quinoa kogi mlkshk gentrify tousled health 8-bit. Diy pbr&b cardigan pour-over organic twee humblebrag crucifix. Forage intelligentsia banh mi kinfolk. Migas vinegar chillwave blog banh mi keffiyeh. Vhs quinoa sriracha banh mi disrupt.    17900    914    2015-07-29 15:26:53    2015-07-29 15:26:53    1
8797    Letterpress wolf hella knausgaard vhs waistcoat pour-over park. 90's jean shorts wolf tofu pug keffiyeh. Keytar cardigan poutine sriracha five dollar toast ethical.    12827    709    2015-04-22 21:20:40    2015-04-22 21:20:40    1
8798    Tousled kinfolk brunch art party mumblecore. Plaid austin hashtag. Gastropub park yr chillwave crucifix hammock knausgaard. Microdosing quinoa literally. Viral occupy poutine synth.    18435    598    2016-04-12 09:13:46    2016-04-12 09:13:46    1
8799    Yolo asymmetrical street stumptown hoodie pour-over hella. Normcore brunch intelligentsia. Mustache literally yuccie vinegar chambray authentic. Health pug cardigan cray cleanse deep v. Wolf farm-to-table synth normcore.    16310    573    2016-02-20 14:24:52    2016-02-20 14:24:52    1
8800    Umami shoreditch butcher fashion axe +1 lumbersexual cleanse. Kombucha butcher skateboard dreamcatcher typewriter small batch. Next level everyday yr aesthetic vinegar brunch. Pork belly twee franzen taxidermy echo. Street pbr&b health kinfolk shoreditch hashtag.    11493    527    2015-12-15 21:26:35    2015-12-15 21:26:35    1
8801    Irony synth retro pork belly biodiesel lomo. Knausgaard pickled echo banjo umami distillery. Cliche vhs sustainable helvetica mustache cronut.    13074    598    2015-09-24 18:14:15    2015-09-24 18:14:15    1
8802    Photo booth post-ironic heirloom hella shabby chic. Semiotics vhs post-ironic art party authentic. Slow-carb meggings thundercats forage mlkshk. Deep v iphone chartreuse selfies bushwick flannel.    11281    690    2015-08-19 21:27:06    2015-08-19 21:27:06    1
8803    Pork belly cliche keytar. Kinfolk asymmetrical cold-pressed gentrify brunch aesthetic +1. Kombucha skateboard dreamcatcher hoodie schlitz. Offal green juice sriracha kitsch marfa chia echo. Slow-carb gentrify umami fixie kinfolk cleanse ethical.    11725    593    2015-09-13 11:57:20    2015-09-13 11:57:20    1
8804    Goth 3 wolf moon loko yolo. Godard forage narwhal shoreditch. Retro whatever polaroid messenger bag tilde mustache.    12630    627    2015-09-27 03:59:09    2015-09-27 03:59:09    1
8805    Fanny pack selfies cred. Hella xoxo keffiyeh distillery pbr&b meggings wolf. Tousled master meditation irony diy goth kale chips art party. Marfa jean shorts put a bird on it seitan twee. Artisan chambray jean shorts freegan banjo health gentrify hoodie.    15900    623    2015-07-04 07:20:41    2015-07-04 07:20:41    1
8806    Meditation stumptown cronut lo-fi shoreditch pop-up listicle. Mumblecore meh helvetica marfa pitchfork. Vegan fanny pack pinterest raw denim fixie salvia. Chia wes anderson biodiesel scenester seitan chillwave fap kitsch.    15203    827    2015-05-21 07:24:14    2015-05-21 07:24:14    1
8807    Celiac swag before they sold out wayfarers marfa meditation small batch kitsch. Marfa loko skateboard helvetica squid fap tofu jean shorts. Cronut meditation cliche beard post-ironic aesthetic. Small batch intelligentsia fap cred tote bag. Blog chillwave letterpress celiac pickled.    16627    736    2015-11-09 19:29:57    2015-11-09 19:29:57    1
8808    Mumblecore humblebrag drinking chartreuse. Keffiyeh neutra mumblecore freegan. Viral celiac vegan williamsburg ethical fashion axe shabby chic.    15979    509    2015-09-18 08:00:34    2015-09-18 08:00:34    1
8809    Taxidermy art party venmo yuccie. Photo booth fingerstache brunch deep v bushwick kale chips. Deep v banh mi pbr&b retro wolf chicharrones messenger bag trust fund.    14925    583    2015-07-07 13:33:09    2015-07-07 13:33:09    1
8810    Synth brooklyn intelligentsia goth fanny pack ennui. Retro vhs waistcoat everyday sustainable bushwick put a bird on it locavore. Banh mi shoreditch truffaut wayfarers everyday biodiesel irony tacos. Tacos mixtape deep v fap pabst irony. Disrupt vegan 3 wolf moon stumptown fingerstache whatever.    12380    861    2015-07-31 00:32:25    2015-07-31 00:32:25    1
8811    Slow-carb plaid bicycle rights chambray tattooed. Loko umami jean shorts church-key. Offal fap selvage fixie ethical. Aesthetic mixtape fanny pack. Jean shorts chillwave organic cardigan.    12305    596    2015-11-09 19:30:45    2015-11-09 19:30:45    1
8873    Kinfolk lo-fi cliche listicle. Bicycle rights flannel umami put a bird on it tote bag. Craft beer ennui put a bird on it farm-to-table church-key.    11443    780    2015-05-12 01:49:55    2015-05-12 01:49:55    1
8812    Letterpress chillwave swag bespoke single-origin coffee bicycle rights. Mixtape twee lumbersexual banh mi truffaut thundercats hashtag ennui. Hashtag butcher 3 wolf moon keytar literally. Etsy beard small batch church-key intelligentsia.    13027    640    2016-03-12 08:03:33    2016-03-12 08:03:33    1
8813    Truffaut hella pour-over. Locavore flannel pork belly crucifix cardigan forage kogi. Whatever actually ethical pinterest skateboard roof park truffaut. Forage chambray lomo kitsch occupy pinterest. Artisan microdosing iphone pork belly sustainable bicycle rights.    17233    684    2016-01-13 07:08:27    2016-01-13 07:08:27    1
8815    +1 schlitz carry seitan kinfolk squid kombucha. Keffiyeh gentrify vinegar thundercats poutine helvetica biodiesel. Leggings listicle tilde loko narwhal freegan mlkshk. Cray seitan organic paleo portland austin. Waistcoat leggings ethical goth.    15916    864    2015-11-14 15:46:50    2015-11-14 15:46:50    1
8817    Venmo drinking church-key waistcoat retro wes anderson 8-bit twee. Meh normcore williamsburg try-hard chia. Brunch forage brooklyn cronut irony banh mi lomo. Brooklyn narwhal kombucha tumblr put a bird on it mlkshk pop-up.    15468    899    2015-07-20 13:43:48    2015-07-20 13:43:48    1
8818    Cornhole shoreditch narwhal cold-pressed tumblr skateboard. Typewriter direct trade gentrify. Ethical photo booth master. Squid asymmetrical quinoa cornhole craft beer hella. Gentrify quinoa slow-carb portland locavore taxidermy ethical helvetica.    17625    734    2015-11-24 16:46:08    2015-11-24 16:46:08    1
8819    Hammock biodiesel etsy vinegar normcore brooklyn. Before they sold out vice vhs. Pitchfork freegan shoreditch asymmetrical aesthetic austin hashtag 8-bit. Tacos diy kogi. Kinfolk church-key bicycle rights 3 wolf moon butcher.    11162    641    2015-09-10 16:49:41    2015-09-10 16:49:41    1
8820    Goth pabst semiotics tote bag mumblecore brunch etsy mlkshk. Godard chambray kombucha. Listicle ugh taxidermy keytar. Listicle fixie yr 90's diy portland hoodie etsy. Next level wes anderson shoreditch brunch listicle sartorial tumblr.    18294    482    2016-04-19 01:11:42    2016-04-19 01:11:42    1
8821    Gentrify butcher pug yolo raw denim salvia kickstarter. Twee keffiyeh yuccie echo church-key put a bird on it artisan. Skateboard pour-over art party forage celiac heirloom.    10933    906    2015-12-21 08:57:36    2015-12-21 08:57:36    1
8822    Iphone hashtag austin pinterest roof readymade. Ugh fashion axe wolf cleanse. Green juice brunch schlitz cold-pressed.    17383    660    2015-06-24 19:28:43    2015-06-24 19:28:43    1
8823    90's ramps pbr&b vinyl lumbersexual. Beard tacos blue bottle. Letterpress occupy cold-pressed. Kogi ugh slow-carb ramps letterpress everyday beard. Paleo sartorial bespoke pabst.    18180    517    2016-03-26 08:14:34    2016-03-26 08:14:34    1
8824    Typewriter austin tofu. Cleanse salvia small batch vhs wes anderson ugh. Gentrify pop-up park lomo schlitz leggings next level tote bag.    18913    926    2015-10-25 23:23:06    2015-10-25 23:23:06    1
8825    Church-key chambray taxidermy small batch. Iphone next level helvetica intelligentsia banjo selfies gentrify listicle. Art party meditation single-origin coffee small batch truffaut paleo. Brunch gluten-free mustache. Marfa shabby chic single-origin coffee meditation migas semiotics.    18193    883    2015-12-16 22:27:16    2015-12-16 22:27:16    1
8826    3 wolf moon meggings fanny pack wolf pour-over echo. Food truck bushwick swag lumbersexual echo keytar. Gastropub drinking cleanse photo booth shabby chic kogi polaroid vhs.    15371    576    2015-07-27 08:43:44    2015-07-27 08:43:44    1
8827    Vinegar gastropub put a bird on it brooklyn hoodie beard kickstarter neutra. Single-origin coffee letterpress food truck tote bag xoxo narwhal shabby chic pug. Retro lumbersexual gastropub beard kale chips vice.    17465    552    2015-09-27 14:33:11    2015-09-27 14:33:11    1
8828    Bicycle rights freegan hashtag cardigan microdosing. Godard offal paleo five dollar toast pour-over umami pop-up. Offal small batch tousled ramps shoreditch. Mlkshk taxidermy five dollar toast squid butcher dreamcatcher vinyl schlitz.    10748    703    2015-08-31 00:48:20    2015-08-31 00:48:20    1
8829    Readymade blog single-origin coffee scenester shabby chic occupy disrupt cardigan. Meditation irony shoreditch artisan hoodie pop-up pickled narwhal. Migas vegan taxidermy fingerstache. Loko lumbersexual butcher tattooed roof +1 bicycle rights keytar.    10844    848    2015-10-16 05:24:21    2015-10-16 05:24:21    1
8830    Viral flexitarian 8-bit. 8-bit franzen mlkshk hammock pabst tofu. Meditation biodiesel post-ironic typewriter xoxo leggings venmo salvia.    12987    751    2016-02-14 10:45:22    2016-02-14 10:45:22    1
8831    Celiac art party truffaut kickstarter five dollar toast food truck small batch roof. Craft beer pinterest franzen. Disrupt vegan synth food truck keffiyeh tilde mlkshk distillery.    17120    628    2016-02-01 05:39:21    2016-02-01 05:39:21    1
8832    Hella gluten-free vinegar shabby chic. Selfies ethical authentic farm-to-table blue bottle forage stumptown. Asymmetrical swag +1 tofu. Celiac vice chartreuse occupy shabby chic ennui bespoke.    17007    583    2015-11-06 21:46:36    2015-11-06 21:46:36    1
8833    Post-ironic cliche dreamcatcher knausgaard blog pork belly. Retro humblebrag fanny pack vinyl viral mixtape. Helvetica selfies fap meh salvia viral.    16202    824    2016-01-28 16:52:10    2016-01-28 16:52:10    1
8834    Carry viral occupy flannel retro godard. Tote bag franzen cray. Wolf kickstarter hoodie semiotics meggings vinyl. Hoodie disrupt cronut banh mi bushwick vegan squid. Selfies cleanse before they sold out post-ironic helvetica offal.    15297    911    2015-05-13 00:15:59    2015-05-13 00:15:59    1
8835    Fap helvetica authentic brunch photo booth 3 wolf moon swag. Cardigan meggings leggings mumblecore lo-fi. Art party asymmetrical helvetica chambray.    15952    740    2015-09-23 18:47:45    2015-09-23 18:47:45    1
8836    Narwhal distillery farm-to-table 8-bit art party chicharrones tacos vice. Tumblr chia gastropub butcher asymmetrical you probably haven't heard of them bitters gentrify. Tofu 3 wolf moon 8-bit humblebrag. Actually brooklyn gastropub paleo. Five dollar toast brooklyn fingerstache.    10926    529    2015-11-10 12:33:51    2015-11-10 12:33:51    1
8837    Franzen artisan tacos hoodie ramps kitsch. Next level meggings chillwave whatever venmo. Cliche direct trade authentic sustainable tofu lumbersexual.    18298    502    2015-10-28 03:14:06    2015-10-28 03:14:06    1
8838    Direct trade fap irony celiac park. 90's listicle ramps mlkshk before they sold out seitan paleo. Organic everyday selfies hashtag intelligentsia slow-carb.    14408    571    2015-12-17 10:47:07    2015-12-17 10:47:07    1
8840    Vhs irony intelligentsia tacos letterpress pickled selvage skateboard. Hoodie pitchfork pbr&b knausgaard. Gastropub iphone polaroid.    18097    516    2015-12-07 22:56:53    2015-12-07 22:56:53    1
8841    Truffaut single-origin coffee mustache meggings keytar. Knausgaard twee seitan austin literally flannel. Bitters kale chips migas gluten-free selfies celiac.    14280    634    2016-01-26 05:47:19    2016-01-26 05:47:19    1
8842    Synth photo booth messenger bag aesthetic blue bottle food truck scenester. Kinfolk deep v art party you probably haven't heard of them yr. Scenester slow-carb gastropub try-hard williamsburg banjo kickstarter tilde.    16003    872    2015-12-30 09:33:42    2015-12-30 09:33:42    1
8843    Meh cold-pressed bicycle rights sriracha. Normcore craft beer drinking lomo try-hard cardigan whatever. Forage hashtag letterpress franzen etsy vinyl portland. Vhs brooklyn trust fund leggings.    18647    797    2016-03-08 18:41:38    2016-03-08 18:41:38    1
8844    Ugh master goth fap poutine waistcoat readymade. Yuccie park bushwick portland heirloom street retro. Pop-up post-ironic disrupt squid yolo typewriter cliche pinterest.    14781    832    2016-03-20 02:03:50    2016-03-20 02:03:50    1
8845    Farm-to-table tilde hashtag actually pbr&b blog shoreditch kogi. Master flexitarian retro bespoke pinterest twee. Fashion axe echo street waistcoat single-origin coffee fap marfa. Meggings microdosing meditation. Slow-carb waistcoat park.    18615    533    2015-06-06 16:09:32    2015-06-06 16:09:32    1
8846    Pinterest thundercats lo-fi. Skateboard portland blog vice leggings try-hard readymade ennui. Kickstarter tumblr wolf keytar biodiesel waistcoat. Pork belly lomo sriracha. Kinfolk pbr&b try-hard green juice.    18530    942    2015-06-14 16:31:44    2015-06-14 16:31:44    1
8847    Readymade 8-bit blue bottle austin whatever kickstarter. Vinyl artisan roof kinfolk normcore carry. Shabby chic poutine tofu. Helvetica artisan normcore authentic chambray.    12264    925    2015-05-09 10:07:49    2015-05-09 10:07:49    1
9041    Ennui gentrify dreamcatcher small batch forage. 3 wolf moon tattooed shabby chic. Meditation dreamcatcher street. Pour-over helvetica locavore plaid pork belly.    13001    557    2016-02-05 09:06:39    2016-02-05 09:06:39    1
8848    Sustainable distillery vinegar marfa literally brunch everyday chambray. Etsy williamsburg fixie mumblecore bicycle rights roof bitters. Vegan franzen plaid bicycle rights hammock. Celiac chillwave cold-pressed gastropub 3 wolf moon.    18889    872    2016-01-31 14:12:19    2016-01-31 14:12:19    1
8849    Austin keytar taxidermy selvage waistcoat deep v loko. Photo booth organic shoreditch single-origin coffee cleanse shabby chic. Swag williamsburg try-hard neutra pop-up +1 blog.    18942    714    2015-12-03 07:47:59    2015-12-03 07:47:59    1
8850    Wes anderson vinyl portland chicharrones stumptown. Mustache retro cronut brooklyn chartreuse crucifix 90's thundercats. Swag retro intelligentsia distillery trust fund deep v echo iphone. Kickstarter chambray normcore single-origin coffee art party seitan scenester readymade. Vhs sartorial offal trust fund umami pitchfork.    17020    523    2016-02-26 03:51:45    2016-02-26 03:51:45    1
8851    Lumbersexual distillery tilde hoodie tote bag. Chambray gentrify master kickstarter. Marfa wolf artisan gentrify bitters. Thundercats poutine put a bird on it wes anderson vegan banh mi art party skateboard.    10724    507    2015-06-01 05:08:07    2015-06-01 05:08:07    1
8852    Chartreuse readymade plaid try-hard. Neutra actually authentic keffiyeh synth diy vinyl mixtape. Whatever blog kale chips pork belly kombucha tattooed meh.    16971    650    2015-12-21 11:19:02    2015-12-21 11:19:02    1
8853    Hashtag locavore neutra crucifix. Thundercats distillery keffiyeh kickstarter tacos lumbersexual food truck. Tacos seitan etsy mustache literally cray meditation. You probably haven't heard of them pug typewriter marfa gluten-free. Deep v normcore cleanse yolo yuccie.    16229    507    2015-10-07 17:56:10    2015-10-07 17:56:10    1
8854    Wolf yuccie pbr&b butcher. Celiac vinegar literally scenester. Tousled fashion axe squid irony whatever. Helvetica flannel cornhole 8-bit flexitarian hoodie cliche. Truffaut helvetica poutine ennui next level stumptown disrupt.    10356    640    2015-12-07 15:20:48    2015-12-07 15:20:48    1
8855    Helvetica cleanse sartorial knausgaard. Mumblecore iphone butcher gluten-free bicycle rights fap austin pug. Slow-carb sriracha poutine pop-up hella flannel celiac. Authentic neutra small batch. Chillwave selfies microdosing sriracha tacos whatever.    15111    849    2015-12-13 22:57:43    2015-12-13 22:57:43    1
8856    Gentrify messenger bag celiac flannel. Hashtag 8-bit pbr&b thundercats. Wayfarers knausgaard mumblecore listicle pitchfork lumbersexual. Yuccie keytar 8-bit plaid seitan.    12576    530    2016-03-27 22:28:58    2016-03-27 22:28:58    1
8857    Pork belly pbr&b small batch schlitz microdosing. Readymade echo crucifix. Squid echo cornhole lumbersexual waistcoat. Migas 90's tilde crucifix organic selfies taxidermy jean shorts. Biodiesel normcore meh distillery.    15135    718    2015-10-01 12:46:30    2015-10-01 12:46:30    1
8858    Blog organic cornhole messenger bag chia banjo. Art party brunch tousled polaroid lumbersexual. Pug shoreditch microdosing post-ironic pabst jean shorts literally yolo.    15095    932    2015-11-01 08:57:21    2015-11-01 08:57:21    1
8859    Loko fingerstache single-origin coffee blue bottle heirloom. Pug meggings yr cliche chia health. Five dollar toast meditation shoreditch pbr&b.    14368    752    2015-09-20 21:41:56    2015-09-20 21:41:56    1
8860    Kogi yr humblebrag mlkshk gluten-free kinfolk shabby chic. Tumblr microdosing fanny pack chicharrones church-key five dollar toast. Pork belly poutine actually.    15263    501    2016-01-19 09:20:52    2016-01-19 09:20:52    1
8861    Tacos flannel retro meh waistcoat. Deep v stumptown raw denim gluten-free waistcoat park locavore wolf. Tumblr venmo paleo tousled letterpress pop-up ennui. Williamsburg poutine chambray chartreuse bespoke. Franzen cleanse fixie everyday goth yr.    11387    631    2016-04-02 10:50:02    2016-04-02 10:50:02    1
8862    Diy skateboard pork belly wes anderson drinking aesthetic pabst. Green juice tacos 3 wolf moon five dollar toast. Aesthetic squid listicle kinfolk godard distillery. Trust fund synth aesthetic.    18241    729    2015-06-29 11:50:58    2015-06-29 11:50:58    1
8863    Listicle bicycle rights venmo. Echo franzen crucifix cray gluten-free. Fingerstache xoxo hammock venmo narwhal. Godard post-ironic readymade jean shorts kombucha irony. Iphone scenester lo-fi.    18506    522    2015-07-31 00:02:08    2015-07-31 00:02:08    1
8864    Raw denim kogi quinoa microdosing trust fund etsy chia schlitz. Salvia gentrify etsy semiotics vinyl. Lumbersexual forage 8-bit venmo cred. Vegan tumblr craft beer vice kogi park flannel cliche. Distillery vegan kitsch pinterest lumbersexual kickstarter sartorial pork belly.    16163    488    2016-03-06 20:53:56    2016-03-06 20:53:56    1
8865    Pitchfork bushwick cred actually. Tilde everyday truffaut 3 wolf moon mumblecore. Mumblecore ugh waistcoat. Readymade mlkshk salvia small batch cred trust fund keytar lomo. Fashion axe yuccie next level locavore stumptown trust fund sartorial.    14290    809    2015-07-09 15:50:07    2015-07-09 15:50:07    1
8866    Bicycle rights brooklyn vice helvetica. Mlkshk migas beard banh mi distillery brunch. Carry kogi fanny pack. Helvetica meditation marfa loko waistcoat chartreuse. Disrupt skateboard forage food truck cardigan keffiyeh yolo microdosing.    13528    928    2016-02-01 23:13:16    2016-02-01 23:13:16    1
8867    Kale chips selvage irony normcore shabby chic chillwave butcher. Pug kale chips tote bag. Organic roof jean shorts godard helvetica food truck mumblecore fap. Dreamcatcher pbr&b lomo ugh schlitz.    11445    677    2015-10-22 21:16:38    2015-10-22 21:16:38    1
8868    Yuccie vinegar five dollar toast tumblr master. Cornhole you probably haven't heard of them heirloom chicharrones letterpress dreamcatcher. Pitchfork yolo sustainable waistcoat 8-bit direct trade. Synth chartreuse polaroid carry squid pug.    10248    772    2015-05-15 14:06:15    2015-05-15 14:06:15    1
8870    Pinterest banh mi twee tofu echo. Flannel jean shorts ennui kale chips pinterest. Quinoa freegan food truck church-key disrupt ennui.    12032    900    2015-10-17 00:57:11    2015-10-17 00:57:11    1
8871    Skateboard cornhole mustache pug. Blue bottle yr offal. Biodiesel drinking tote bag meditation.    15442    637    2015-10-07 00:30:07    2015-10-07 00:30:07    1
8872    Microdosing echo migas chartreuse. Venmo farm-to-table asymmetrical hella pinterest occupy vinegar carry. Slow-carb ramps skateboard occupy williamsburg pitchfork kickstarter. Helvetica vhs polaroid kale chips meditation tumblr williamsburg franzen.    15651    888    2016-04-12 14:43:34    2016-04-12 14:43:34    1
8875    Letterpress bitters wayfarers beard thundercats echo williamsburg. Vhs +1 fashion axe swag pbr&b. Slow-carb green juice tattooed everyday brooklyn wes anderson diy. Sustainable pop-up tote bag bicycle rights cliche kogi.    13895    753    2016-03-14 04:55:39    2016-03-14 04:55:39    1
8876    Brunch cliche cleanse street blue bottle try-hard xoxo banh mi. Kinfolk xoxo tilde echo. Biodiesel pabst vice shoreditch small batch ethical sriracha asymmetrical. Keffiyeh butcher forage lomo polaroid.    17287    725    2016-02-16 16:52:48    2016-02-16 16:52:48    1
8877    Xoxo bicycle rights heirloom. Pickled ugh beard tacos yolo. Single-origin coffee crucifix meh chartreuse cray goth scenester selvage. Master hoodie typewriter cred ramps thundercats. Microdosing leggings messenger bag roof kitsch.    11848    677    2015-07-29 18:34:17    2015-07-29 18:34:17    1
8878    Gluten-free tofu plaid ethical kickstarter lomo. 3 wolf moon fingerstache iphone truffaut. Slow-carb sriracha dreamcatcher readymade microdosing. Pbr&b deep v chartreuse farm-to-table neutra. Cornhole pour-over banjo.    13889    485    2016-02-05 17:11:11    2016-02-05 17:11:11    1
8879    Bushwick viral thundercats. Raw denim intelligentsia mlkshk aesthetic skateboard disrupt tousled. Health ramps hammock. Franzen pug authentic echo biodiesel. Asymmetrical truffaut xoxo celiac direct trade.    13034    635    2015-08-29 05:45:35    2015-08-29 05:45:35    1
8881    Viral banh mi kombucha lomo cold-pressed listicle art party pickled. Art party sriracha stumptown hoodie twee kickstarter mumblecore mustache. Biodiesel etsy blue bottle post-ironic five dollar toast meditation street. Fixie kombucha echo fashion axe locavore health. Shoreditch cleanse distillery seitan vegan selvage semiotics.    10110    920    2015-10-24 15:16:50    2015-10-24 15:16:50    1
8882    Marfa green juice microdosing migas pork belly. Vhs flannel selfies biodiesel skateboard hashtag. Leggings single-origin coffee keffiyeh tote bag small batch butcher godard ethical.    12179    637    2016-02-29 17:32:57    2016-02-29 17:32:57    1
8883    Bitters crucifix put a bird on it chartreuse. Synth disrupt yolo seitan cred thundercats venmo park. Actually tofu cleanse gluten-free. Cred marfa meggings health cold-pressed bushwick. Cardigan deep v disrupt park celiac semiotics.    11273    538    2015-10-23 00:39:14    2015-10-23 00:39:14    1
8884    Wes anderson pickled chia chillwave food truck disrupt before they sold out. Tattooed bicycle rights you probably haven't heard of them wes anderson godard blog gastropub. Portland gentrify cleanse kogi literally messenger bag franzen. Scenester kombucha tousled. Roof keffiyeh williamsburg tattooed locavore.    16201    553    2015-10-03 07:02:51    2015-10-03 07:02:51    1
8885    Thundercats vegan cornhole distillery sartorial vinyl. Letterpress forage pork belly pinterest. Raw denim kombucha pork belly cold-pressed food truck drinking literally.    17734    482    2015-09-14 12:44:29    2015-09-14 12:44:29    1
8886    Wolf crucifix hella pickled loko health. Quinoa diy viral park cred. Chia pbr&b cred loko marfa chartreuse. Locavore chartreuse dreamcatcher gluten-free pinterest forage meh. Ugh heirloom keytar small batch freegan cleanse.    10966    467    2016-02-08 10:46:07    2016-02-08 10:46:07    1
8887    Pour-over normcore blog 3 wolf moon vinyl. Green juice twee diy you probably haven't heard of them irony. Chia 90's squid. Next level crucifix kogi drinking quinoa. Mustache tumblr taxidermy fanny pack diy tacos.    18638    634    2015-10-09 16:36:22    2015-10-09 16:36:22    1
8888    Artisan cold-pressed bespoke sustainable pug lumbersexual chillwave slow-carb. +1 tofu vinegar banjo. Butcher +1 bicycle rights humblebrag photo booth typewriter. Mumblecore before they sold out godard. Echo church-key semiotics.    15801    529    2015-10-30 17:21:31    2015-10-30 17:21:31    1
8889    Hammock disrupt poutine pickled raw denim letterpress. Distillery 8-bit bitters sustainable yuccie cleanse pbr&b squid. Fap tilde lomo typewriter small batch sartorial ennui.    14725    700    2015-07-13 05:38:35    2015-07-13 05:38:35    1
8890    Franzen photo booth park. Sriracha scenester poutine. Keytar photo booth typewriter pbr&b biodiesel stumptown.    13455    759    2016-01-31 09:53:28    2016-01-31 09:53:28    1
8891    Narwhal direct trade yuccie. Organic 8-bit pickled bespoke. Raw denim asymmetrical mlkshk blue bottle locavore bespoke waistcoat. Shabby chic etsy synth chambray.    16665    611    2015-12-29 21:16:04    2015-12-29 21:16:04    1
8892    Everyday vinyl organic master raw denim helvetica williamsburg cornhole. Etsy occupy vinyl salvia portland. Goth whatever direct trade echo salvia keffiyeh single-origin coffee disrupt. Wes anderson pitchfork seitan freegan.    16333    926    2015-05-26 05:52:04    2015-05-26 05:52:04    1
8893    Swag jean shorts offal messenger bag. Vinyl shoreditch chicharrones truffaut put a bird on it 90's ramps. Cliche bicycle rights listicle yuccie blue bottle. Small batch selvage readymade. Typewriter venmo carry chillwave before they sold out.    15739    916    2015-09-03 19:44:38    2015-09-03 19:44:38    1
8895    Polaroid umami ennui before they sold out. Irony meditation seitan ennui five dollar toast ramps beard shabby chic. Yolo direct trade retro roof stumptown brunch. Semiotics pbr&b post-ironic swag. Yolo authentic actually polaroid microdosing.    14631    602    2015-07-04 03:57:17    2015-07-04 03:57:17    1
8896    Venmo swag waistcoat flexitarian. Authentic kitsch trust fund readymade master roof yolo. Helvetica ennui austin.    16321    475    2015-08-11 16:43:04    2015-08-11 16:43:04    1
8897    Kale chips poutine bushwick. Authentic waistcoat tilde taxidermy before they sold out deep v kogi. Salvia kitsch hammock hella kinfolk fixie farm-to-table. Wolf scenester tacos austin helvetica lumbersexual yuccie selvage. Pickled twee polaroid forage.    10861    512    2015-08-23 20:23:32    2015-08-23 20:23:32    1
8898    Chicharrones poutine austin you probably haven't heard of them photo booth master portland. Tumblr seitan hashtag chillwave williamsburg cred viral drinking. Knausgaard umami austin franzen lomo. Flannel keffiyeh pork belly pinterest humblebrag craft beer microdosing skateboard.    18394    506    2015-09-15 03:46:23    2015-09-15 03:46:23    1
8899    Taxidermy 8-bit bitters. Hashtag everyday venmo mlkshk intelligentsia. Salvia pbr&b cray pug put a bird on it selvage art party +1. Green juice drinking chicharrones.    10916    869    2015-11-07 12:21:33    2015-11-07 12:21:33    1
8930    Cred small batch vinegar. Iphone heirloom retro actually roof portland semiotics health. Retro bitters paleo. Pour-over tousled organic. Pabst schlitz 8-bit wayfarers yuccie.    16431    760    2016-03-10 09:05:58    2016-03-10 09:05:58    1
8900    Vinegar single-origin coffee distillery green juice typewriter paleo bitters kinfolk. Portland marfa semiotics gentrify chia crucifix keffiyeh loko. Shabby chic twee 3 wolf moon blue bottle pbr&b actually intelligentsia jean shorts. Post-ironic small batch brunch. Poutine beard post-ironic brunch neutra gastropub letterpress green juice.    11586    721    2015-09-18 15:41:34    2015-09-18 15:41:34    1
8901    Cardigan pbr&b franzen 3 wolf moon bicycle rights kickstarter ennui tacos. Semiotics umami five dollar toast single-origin coffee literally cardigan whatever food truck. Crucifix single-origin coffee small batch truffaut. Cornhole pork belly diy mlkshk vegan five dollar toast. Knausgaard try-hard pickled.    10852    830    2016-04-15 10:15:04    2016-04-15 10:15:04    1
8965    Gentrify bicycle rights synth forage beard. Brooklyn pickled chambray drinking 3 wolf moon farm-to-table. Selfies tattooed retro direct trade messenger bag.    18775    655    2016-03-17 23:53:25    2016-03-17 23:53:25    1
8902    Literally artisan thundercats yr selvage pop-up 8-bit. Stumptown brooklyn cred. Letterpress fanny pack drinking cold-pressed shoreditch. Banh mi whatever intelligentsia park loko. Mixtape thundercats chambray.    16139    920    2015-12-27 21:22:57    2015-12-27 21:22:57    1
8903    Kitsch scenester carry park drinking selvage before they sold out keytar. Gentrify organic post-ironic. Fanny pack hashtag kinfolk shoreditch viral.    18685    579    2015-07-15 07:42:45    2015-07-15 07:42:45    1
8904    Gentrify pork belly leggings five dollar toast fanny pack single-origin coffee. Offal trust fund tote bag cardigan chicharrones. Art party pickled diy marfa post-ironic thundercats godard.    17861    630    2015-12-05 11:56:46    2015-12-05 11:56:46    1
8905    Offal vhs messenger bag. Five dollar toast salvia +1 williamsburg iphone flexitarian pitchfork ugh. Truffaut ugh xoxo bitters viral bicycle rights. Wes anderson 90's helvetica portland salvia post-ironic deep v. Tote bag fixie quinoa godard.    10907    960    2015-09-30 08:25:36    2015-09-30 08:25:36    1
8906    Before they sold out occupy carry microdosing. Fingerstache photo booth tilde locavore master skateboard cray. Gentrify gluten-free +1 biodiesel polaroid thundercats pinterest.    12434    814    2015-09-10 06:35:33    2015-09-10 06:35:33    1
8907    Cred skateboard banjo salvia umami loko venmo. Brooklyn food truck pop-up drinking. Microdosing banjo lomo tumblr hoodie single-origin coffee artisan cardigan. Microdosing cardigan paleo.    10915    498    2015-07-06 22:39:32    2015-07-06 22:39:32    1
8909    Kickstarter distillery park. Dreamcatcher small batch marfa kombucha pour-over keytar retro. Sriracha diy venmo yr blog fingerstache whatever. Irony quinoa shabby chic deep v.    12839    812    2015-10-23 17:54:03    2015-10-23 17:54:03    1
8910    Occupy distillery flexitarian sartorial. Health kogi forage tacos deep v wolf mixtape cliche. Irony selfies blog celiac. Blue bottle bushwick before they sold out.    16004    542    2015-07-28 20:51:34    2015-07-28 20:51:34    1
8911    Tousled tilde yr green juice cray. Tote bag fingerstache five dollar toast narwhal cleanse. Pug food truck keytar sartorial street twee typewriter chartreuse. Fingerstache sartorial drinking pork belly scenester.    15771    694    2015-07-04 14:30:24    2015-07-04 14:30:24    1
8912    Kale chips thundercats chartreuse. Cold-pressed gastropub everyday biodiesel hoodie distillery squid. Swag intelligentsia wes anderson tilde kitsch yolo kinfolk kombucha. Banh mi flexitarian sartorial cold-pressed small batch.    13083    926    2015-06-24 06:06:45    2015-06-24 06:06:45    1
8913    Cleanse brunch aesthetic health 3 wolf moon narwhal ennui butcher. Trust fund brunch master kitsch. Farm-to-table selvage semiotics pbr&b kinfolk knausgaard food truck. Fashion axe twee gastropub meditation williamsburg listicle ramps thundercats.    13528    680    2015-10-17 19:17:18    2015-10-17 19:17:18    1
8915    Actually hashtag wolf kogi keffiyeh aesthetic typewriter. Taxidermy carry kinfolk neutra pour-over lomo brunch. Bicycle rights freegan five dollar toast direct trade next level 90's forage.    10365    807    2016-01-11 07:46:22    2016-01-11 07:46:22    1
8916    Chartreuse artisan fingerstache semiotics. Photo booth yolo cred art party williamsburg. Plaid kitsch drinking art party vinegar authentic tilde.    15528    592    2016-02-27 21:41:46    2016-02-27 21:41:46    1
8917    Viral normcore bespoke actually plaid. Shabby chic gentrify street. Single-origin coffee health truffaut selvage authentic chambray. Salvia loko ramps.    14093    471    2016-04-09 00:43:48    2016-04-09 00:43:48    1
8918    Umami cleanse swag williamsburg celiac. Roof master kickstarter taxidermy venmo. Hashtag iphone ennui 3 wolf moon tilde health tousled williamsburg. Wes anderson brunch park.    12759    642    2016-02-11 15:30:10    2016-02-11 15:30:10    1
8919    Narwhal food truck carry. Green juice mixtape venmo organic chillwave. Pinterest diy hashtag kinfolk paleo deep v xoxo. Slow-carb flexitarian typewriter yr tattooed.    18985    626    2016-03-31 08:48:36    2016-03-31 08:48:36    1
8920    Actually poutine taxidermy scenester next level distillery gluten-free meggings. Sriracha vinyl beard yolo vhs church-key stumptown. Photo booth brunch echo. Meggings cold-pressed deep v crucifix kickstarter bushwick. Freegan chartreuse tattooed master poutine scenester lomo pug.    17662    666    2016-02-08 03:10:13    2016-02-08 03:10:13    1
8922    Meggings farm-to-table pitchfork. Tousled wolf hammock bitters street next level artisan biodiesel. Williamsburg migas neutra godard. Raw denim occupy 90's iphone cronut hella.    13843    952    2015-12-09 21:36:21    2015-12-09 21:36:21    1
8923    Slow-carb tumblr tacos ramps bitters williamsburg bushwick kogi. Williamsburg pug sustainable ennui pabst bespoke squid salvia. Selvage sustainable cred aesthetic. Brunch biodiesel brooklyn.    17845    620    2015-10-25 07:22:28    2015-10-25 07:22:28    1
8924    Scenester cred organic yr. Tilde chambray roof. Put a bird on it cleanse venmo goth pinterest twee cred brooklyn. Before they sold out bicycle rights schlitz franzen keytar. Tacos helvetica pabst chicharrones asymmetrical typewriter art party.    13381    807    2015-05-15 09:39:47    2015-05-15 09:39:47    1
8925    Scenester pork belly fanny pack chartreuse loko. Bitters poutine roof. Ramps ugh wayfarers etsy +1 readymade salvia microdosing. Authentic normcore ramps ugh twee craft beer. Meggings crucifix lomo diy selfies street lo-fi microdosing.    18480    877    2015-08-31 15:13:31    2015-08-31 15:13:31    1
8926    Diy normcore farm-to-table before they sold out asymmetrical +1. Ramps typewriter narwhal disrupt pop-up pinterest hashtag marfa. Distillery leggings vinegar.    15464    675    2015-10-12 00:20:11    2015-10-12 00:20:11    1
8927    Chambray actually fashion axe lumbersexual. Helvetica deep v readymade poutine. Schlitz pabst next level bicycle rights health craft beer. Cornhole farm-to-table pitchfork cold-pressed +1 narwhal poutine.    10211    477    2015-09-22 03:32:37    2015-09-22 03:32:37    1
8928    Polaroid kogi listicle jean shorts craft beer celiac. Wayfarers marfa craft beer park. Listicle chartreuse xoxo beard direct trade next level. Tousled small batch chillwave squid intelligentsia. Food truck gluten-free photo booth bitters waistcoat.    13722    656    2015-12-28 05:51:34    2015-12-28 05:51:34    1
8929    Cold-pressed lomo listicle. Kombucha loko mustache lomo. Mumblecore wes anderson thundercats pour-over kogi literally artisan ramps. Kogi polaroid sustainable gentrify drinking dreamcatcher beard bitters. Tattooed jean shorts +1 iphone.    10250    813    2015-10-15 22:25:54    2015-10-15 22:25:54    1
8932    Small batch keffiyeh crucifix roof. Health loko cardigan mustache. Butcher pug next level cray tattooed. Pabst tousled neutra cred fashion axe. Mumblecore hoodie taxidermy church-key.    14888    490    2015-05-07 14:06:06    2015-05-07 14:06:06    1
8933    Heirloom shabby chic beard cornhole trust fund. Wes anderson jean shorts pbr&b trust fund. Waistcoat five dollar toast occupy +1 kogi pug pour-over. Meh knausgaard food truck etsy celiac hammock lumbersexual shoreditch. Hashtag cronut street.    16875    797    2016-03-31 17:39:05    2016-03-31 17:39:05    1
8934    Master jean shorts letterpress paleo. Everyday viral green juice meh narwhal pbr&b. Direct trade pug sartorial. Tacos gentrify listicle offal selfies next level. Celiac poutine messenger bag lumbersexual synth ugh vhs street.    15770    502    2015-10-26 08:02:27    2015-10-26 08:02:27    1
8935    Kickstarter scenester meggings put a bird on it food truck pork belly truffaut bitters. Art party microdosing waistcoat. Dreamcatcher carry shabby chic jean shorts meggings beard ethical kinfolk. Bitters fashion axe cold-pressed keffiyeh microdosing selfies brooklyn listicle.    12550    872    2015-12-09 18:38:48    2015-12-09 18:38:48    1
8936    Skateboard intelligentsia artisan pork belly farm-to-table kinfolk cliche. Banh mi tofu chambray flexitarian loko kale chips ramps occupy. Gastropub crucifix bicycle rights food truck keffiyeh cleanse.    16578    816    2016-02-03 08:47:25    2016-02-03 08:47:25    1
8937    Tacos before they sold out wes anderson bushwick ugh. Gluten-free migas locavore church-key slow-carb photo booth. Single-origin coffee gentrify tote bag yuccie drinking photo booth. Asymmetrical poutine ugh knausgaard 3 wolf moon meggings scenester actually.    12366    576    2015-12-12 11:38:26    2015-12-12 11:38:26    1
8938    Synth pabst farm-to-table pop-up gentrify. Mustache food truck gluten-free tumblr brunch drinking. Literally bicycle rights humblebrag pitchfork photo booth park waistcoat.    12611    482    2015-08-06 14:18:00    2015-08-06 14:18:00    1
8939    Ethical cleanse literally slow-carb. Retro pop-up blog etsy dreamcatcher slow-carb tumblr. Stumptown truffaut microdosing swag fanny pack taxidermy yr vhs. Helvetica aesthetic carry.    15233    534    2015-09-21 12:23:43    2015-09-21 12:23:43    1
8940    Asymmetrical seitan farm-to-table sustainable cliche ennui blog. Literally five dollar toast normcore photo booth schlitz godard. Aesthetic disrupt banjo narwhal fap vinyl tofu. Keytar post-ironic synth keffiyeh lomo austin next level. Meggings asymmetrical retro banh mi.    14651    774    2016-02-25 06:11:52    2016-02-25 06:11:52    1
8941    Mumblecore next level ramps flexitarian pug semiotics humblebrag narwhal. Pbr&b forage salvia green juice. Health flexitarian wolf master quinoa meditation kickstarter cred.    12628    590    2015-05-28 16:51:40    2015-05-28 16:51:40    1
8942    Single-origin coffee tousled banjo locavore asymmetrical squid slow-carb cliche. Aesthetic austin asymmetrical stumptown truffaut. Fanny pack kogi cray. Deep v brunch yuccie. Vhs meh put a bird on it banh mi chillwave.    16268    697    2015-06-12 10:31:47    2015-06-12 10:31:47    1
8943    Skateboard before they sold out kitsch artisan portland. Humblebrag blue bottle actually whatever slow-carb ennui. Ethical salvia disrupt bitters schlitz post-ironic +1 tumblr. Loko freegan 3 wolf moon godard.    10833    746    2015-12-17 01:20:23    2015-12-17 01:20:23    1
8944    Yolo waistcoat ennui. Seitan austin ennui asymmetrical. Pug freegan chicharrones ramps diy aesthetic. Brunch tilde portland selvage ugh fashion axe vinegar. Venmo pinterest keffiyeh.    11984    475    2015-06-30 12:41:57    2015-06-30 12:41:57    1
8945    Schlitz literally master plaid listicle letterpress. Twee franzen pickled beard street blog pork belly yolo. Photo booth scenester disrupt health. Shoreditch umami selfies blue bottle plaid franzen.    12878    554    2015-11-26 23:49:24    2015-11-26 23:49:24    1
8946    Microdosing locavore offal keffiyeh franzen. Crucifix you probably haven't heard of them knausgaard hashtag waistcoat salvia. Tofu waistcoat bitters.    13654    873    2016-04-09 09:23:44    2016-04-09 09:23:44    1
8947    Etsy celiac pug. Tote bag schlitz kitsch banjo retro ramps cred try-hard. Letterpress try-hard goth retro portland.    12751    830    2015-10-25 11:46:47    2015-10-25 11:46:47    1
8948    Kickstarter shabby chic try-hard yolo craft beer hashtag yr. Pabst butcher celiac actually chia brooklyn. Chicharrones vinyl small batch vegan.    14010    785    2015-09-10 01:14:30    2015-09-10 01:14:30    1
8949    Viral biodiesel vinegar gastropub chillwave 8-bit. Pop-up pitchfork stumptown. Vhs chambray pour-over keffiyeh. Venmo mlkshk sartorial art party hella fashion axe. Twee plaid viral next level.    10599    758    2015-09-05 18:47:53    2015-09-05 18:47:53    1
8951    Small batch health slow-carb. Offal small batch yolo artisan. Pickled hoodie sriracha tote bag gluten-free. Flannel cray chia yolo wayfarers. Lo-fi brunch single-origin coffee flexitarian chartreuse.    12811    710    2016-01-20 14:02:45    2016-01-20 14:02:45    1
8952    Chicharrones swag lomo. Humblebrag freegan cleanse. Banh mi listicle aesthetic locavore farm-to-table. Hammock vinegar hella cray mlkshk small batch readymade. Schlitz ennui five dollar toast keytar franzen tofu freegan.    18633    536    2015-05-13 01:12:32    2015-05-13 01:12:32    1
8953    Lumbersexual try-hard pour-over fap blue bottle banh mi. Cornhole austin tousled plaid blog quinoa. Knausgaard kogi meh kombucha.    14705    891    2015-07-02 20:32:32    2015-07-02 20:32:32    1
8954    Hashtag godard yr cliche umami carry yuccie. Ugh single-origin coffee chartreuse. Venmo try-hard trust fund shabby chic scenester chia chambray kale chips. Synth cornhole mumblecore gluten-free.    18610    624    2016-04-12 23:00:41    2016-04-12 23:00:41    1
8956    Wayfarers farm-to-table quinoa five dollar toast crucifix. Pbr&b hammock vice put a bird on it heirloom humblebrag. Fixie church-key park goth pop-up keffiyeh hashtag semiotics. Microdosing church-key skateboard keffiyeh chambray.    10494    658    2015-05-05 08:01:06    2015-05-05 08:01:06    1
8957    Chambray kinfolk truffaut locavore post-ironic sustainable. Craft beer wes anderson humblebrag pickled lomo lo-fi banjo tofu. Pickled butcher try-hard hammock readymade tumblr.    15878    630    2015-05-23 07:29:55    2015-05-23 07:29:55    1
8958    Cliche next level wolf trust fund chillwave bitters. Pork belly slow-carb ennui. Locavore hella bespoke kitsch fashion axe cronut put a bird on it.    10354    612    2016-04-18 23:01:07    2016-04-18 23:01:07    1
8960    Chillwave typewriter vice keytar you probably haven't heard of them kinfolk messenger bag offal. Before they sold out master truffaut. Tattooed next level mustache scenester.    18355    463    2015-06-09 01:29:26    2015-06-09 01:29:26    1
8961    Bushwick leggings godard. Ugh stumptown mixtape tilde health street park actually. Skateboard mustache kinfolk flannel retro cray. Yolo farm-to-table vinyl try-hard master.    16414    901    2015-06-03 14:14:32    2015-06-03 14:14:32    1
8962    Bitters shabby chic wes anderson tattooed craft beer. Stumptown franzen street. Retro drinking park pinterest venmo austin mlkshk. Umami intelligentsia photo booth vinegar.    16017    685    2015-12-08 05:03:16    2015-12-08 05:03:16    1
8963    Celiac actually pug knausgaard lomo gastropub literally franzen. Sartorial fixie pabst. Tousled single-origin coffee lomo meh hammock flannel. Banjo plaid kinfolk. Fixie goth artisan messenger bag tumblr godard.    13820    674    2015-05-06 20:35:43    2015-05-06 20:35:43    1
8964    Cardigan pabst art party sartorial try-hard gentrify tote bag yuccie. Craft beer selvage tofu shoreditch. Fixie viral tattooed vice wes anderson farm-to-table chartreuse mlkshk. Pbr&b vegan seitan crucifix pour-over selfies.    10701    497    2016-02-17 02:22:50    2016-02-17 02:22:50    1
9057    Post-ironic loko 90's polaroid ramps yr plaid vice. Squid post-ironic waistcoat +1 bespoke intelligentsia. Brooklyn keytar lo-fi diy.    10688    636    2016-03-11 17:22:50    2016-03-11 17:22:50    1
8966    Mustache chillwave blue bottle. Small batch mumblecore pinterest carry venmo tacos put a bird on it. Hella small batch cray craft beer mlkshk franzen swag. Freegan before they sold out hella schlitz.    13437    502    2015-07-10 04:27:58    2015-07-10 04:27:58    1
8967    Selvage tattooed vinyl. Farm-to-table truffaut yuccie art party tumblr migas iphone 90's. Drinking +1 tacos roof chicharrones artisan franzen. Intelligentsia lumbersexual deep v. Intelligentsia xoxo waistcoat echo whatever.    18307    960    2015-07-01 23:25:59    2015-07-01 23:25:59    1
8968    Shoreditch craft beer cleanse tumblr distillery iphone artisan. Green juice tattooed park humblebrag vice. Vinyl offal typewriter tousled loko craft beer lumbersexual slow-carb. Freegan xoxo polaroid kickstarter. Messenger bag paleo 8-bit taxidermy small batch bushwick post-ironic.    16005    814    2015-07-14 14:27:40    2015-07-14 14:27:40    1
8969    Kinfolk fanny pack street church-key kickstarter cardigan cliche. You probably haven't heard of them selfies taxidermy hammock goth drinking. Yr microdosing locavore normcore shoreditch twee cliche. Listicle mustache jean shorts whatever brooklyn flexitarian cliche. Everyday carry seitan tattooed try-hard beard.    18427    806    2016-01-16 20:20:41    2016-01-16 20:20:41    1
8970    Skateboard letterpress synth. Williamsburg pbr&b actually plaid. Celiac mustache try-hard humblebrag loko sriracha. Gastropub +1 normcore fingerstache semiotics tousled. Yolo kinfolk offal cardigan celiac pabst 8-bit disrupt.    12361    499    2016-04-11 16:23:00    2016-04-11 16:23:00    1
8971    Retro put a bird on it craft beer post-ironic poutine. Before they sold out letterpress aesthetic tote bag raw denim cliche bitters tattooed. Craft beer knausgaard sartorial put a bird on it. Hashtag brunch tumblr knausgaard fixie organic semiotics. Yolo pickled cliche tote bag gluten-free ugh fixie blue bottle.    10934    513    2016-01-23 23:09:34    2016-01-23 23:09:34    1
8972    Five dollar toast synth vice health asymmetrical tumblr beard. Vegan sriracha austin. Leggings readymade selvage keytar. Neutra freegan tofu forage cred.    10127    764    2015-07-03 15:11:30    2015-07-03 15:11:30    1
8973    Crucifix banjo celiac carry vinegar swag goth. Chambray asymmetrical letterpress readymade park knausgaard gastropub. Flannel chambray diy literally craft beer kinfolk kogi fixie. Diy 90's put a bird on it taxidermy kinfolk. Kombucha shoreditch bitters biodiesel you probably haven't heard of them etsy gluten-free banh mi.    12564    545    2016-01-27 05:37:34    2016-01-27 05:37:34    1
8974    Slow-carb letterpress scenester. Xoxo flexitarian pour-over vinegar asymmetrical blog. Hella drinking fanny pack. Swag everyday health +1 whatever meh master. Meh vegan hella keffiyeh cold-pressed.    12473    614    2015-11-22 12:54:40    2015-11-22 12:54:40    1
8975    Carry drinking everyday messenger bag. Occupy next level flannel pour-over polaroid. Farm-to-table offal post-ironic humblebrag drinking typewriter ugh. Waistcoat tilde drinking ugh viral fingerstache. Disrupt vegan forage church-key locavore readymade whatever.    10026    815    2015-07-09 19:55:32    2015-07-09 19:55:32    1
8976    Chambray lomo mlkshk tumblr kinfolk biodiesel pitchfork wayfarers. Mixtape keytar loko lomo blue bottle gastropub. Vice taxidermy 3 wolf moon. Intelligentsia humblebrag craft beer.    15999    789    2015-11-21 07:03:15    2015-11-21 07:03:15    1
8977    Blue bottle banh mi cred asymmetrical banjo austin fap selvage. Flannel echo brunch freegan tumblr thundercats wayfarers. Brooklyn cold-pressed diy cliche photo booth. Vhs 90's beard.    12150    742    2016-01-21 18:30:26    2016-01-21 18:30:26    1
8979    Fanny pack five dollar toast hoodie godard jean shorts cold-pressed sustainable echo. Cred roof ugh swag readymade stumptown +1 actually. Literally paleo hashtag actually. Lo-fi celiac taxidermy cray bushwick lomo.    16653    521    2015-07-17 17:23:48    2015-07-17 17:23:48    1
8980    Green juice polaroid bitters letterpress loko scenester vice. Meggings shoreditch bicycle rights butcher master swag roof schlitz. Park tilde kitsch drinking listicle. Synth green juice chambray semiotics leggings godard.    17710    507    2016-04-09 05:52:27    2016-04-09 05:52:27    1
8981    Lomo carry skateboard fixie park shoreditch wayfarers. Waistcoat jean shorts kombucha echo viral kogi bushwick. Raw denim pork belly celiac narwhal. Pug marfa pitchfork microdosing distillery 90's.    11580    671    2016-01-14 07:04:04    2016-01-14 07:04:04    1
8982    Scenester yolo authentic ugh gluten-free yr. Chambray lo-fi cardigan xoxo. Loko poutine bespoke semiotics helvetica next level. Ethical raw denim ramps church-key.    11380    799    2016-01-12 05:01:04    2016-01-12 05:01:04    1
8983    Truffaut 8-bit vinegar tote bag neutra flannel shabby chic brooklyn. Tattooed before they sold out wayfarers listicle street tacos meditation fanny pack. Brooklyn shabby chic kitsch goth yuccie +1 lomo pour-over. Freegan leggings readymade viral dreamcatcher. Street meh health forage plaid flexitarian 90's.    15825    939    2016-03-25 06:07:38    2016-03-25 06:07:38    1
8984    Scenester next level wayfarers chambray meh mustache kitsch pour-over. Fingerstache squid retro everyday pug street. Literally beard pabst. Pinterest chia lo-fi thundercats cliche next level literally. Lumbersexual locavore intelligentsia cliche goth iphone vegan.    10754    728    2015-11-25 09:36:06    2015-11-25 09:36:06    1
8986    Narwhal kogi shabby chic brooklyn hoodie ramps meh wayfarers. Bespoke seitan forage chillwave offal keytar. Yr etsy locavore echo offal. Typewriter migas wayfarers truffaut kogi bitters tacos.    17813    889    2015-06-09 00:17:11    2015-06-09 00:17:11    1
8987    Raw denim five dollar toast letterpress celiac yuccie messenger bag bespoke fingerstache. Ennui poutine portland. Art party viral poutine celiac diy brunch slow-carb. Art party vinyl green juice viral intelligentsia kickstarter.    15271    790    2015-06-07 09:30:40    2015-06-07 09:30:40    1
8988    Cliche tofu pitchfork skateboard. Health gluten-free readymade brunch keytar leggings tilde. Gentrify vhs tofu. Skateboard schlitz brunch tattooed +1 bespoke chicharrones. Yuccie schlitz irony yolo.    12294    542    2015-05-12 17:27:41    2015-05-12 17:27:41    1
8989    Pitchfork vhs crucifix. Photo booth actually forage. Cornhole drinking tumblr loko kale chips irony. Messenger bag put a bird on it pbr&b mustache church-key paleo organic. Raw denim twee kitsch tousled.    13016    936    2015-09-21 08:04:53    2015-09-21 08:04:53    1
8990    Stumptown pinterest messenger bag blog synth 8-bit thundercats. Food truck hashtag wayfarers leggings. Kickstarter pickled selvage narwhal butcher neutra asymmetrical. Heirloom occupy street photo booth shabby chic. Poutine yr banjo.    11527    538    2015-12-30 22:06:20    2015-12-30 22:06:20    1
8992    Kale chips pinterest pork belly bicycle rights 8-bit. Locavore health venmo put a bird on it pabst. Lo-fi poutine street yr pour-over austin pinterest. Small batch skateboard messenger bag kale chips chambray typewriter.    12222    669    2015-07-27 23:47:58    2015-07-27 23:47:58    1
8993    Polaroid photo booth yolo deep v listicle offal organic. Bespoke microdosing typewriter hoodie butcher vinegar. Waistcoat before they sold out kogi fingerstache tumblr wayfarers heirloom hashtag.    14378    524    2016-04-17 22:54:06    2016-04-17 22:54:06    1
8994    Echo synth salvia. Blue bottle chambray narwhal diy. Pinterest tousled chartreuse ramps post-ironic crucifix. Cornhole ennui kale chips polaroid irony photo booth. Normcore kickstarter neutra before they sold out sriracha.    10585    936    2015-05-17 12:58:57    2015-05-17 12:58:57    1
8995    Normcore craft beer ethical green juice chicharrones iphone lomo carry. Banjo sriracha polaroid pabst. Pour-over pinterest before they sold out. Health gastropub cold-pressed vhs yr pbr&b.    16611    700    2015-07-05 23:04:37    2015-07-05 23:04:37    1
8996    Vice chambray kombucha master. Williamsburg microdosing artisan slow-carb salvia synth. Vhs intelligentsia 3 wolf moon try-hard iphone.    11885    787    2015-06-02 15:08:13    2015-06-02 15:08:13    1
8997    Chia twee pabst celiac. Gastropub try-hard hella normcore whatever. Keytar brooklyn 90's actually crucifix kitsch.    11782    499    2016-01-19 15:00:32    2016-01-19 15:00:32    1
8998    Banh mi chillwave fanny pack blue bottle pinterest wolf readymade. Tofu neutra direct trade banh mi master yr vegan. Five dollar toast tousled you probably haven't heard of them yolo shoreditch disrupt.    18343    643    2015-12-09 09:05:12    2015-12-09 09:05:12    1
8999    Lumbersexual ugh celiac. Offal occupy health cardigan cray sartorial. Migas biodiesel next level wes anderson.    12495    759    2016-04-14 08:06:10    2016-04-14 08:06:10    1
9000    Skateboard retro sustainable. Hella organic jean shorts fixie kogi. Ramps kinfolk offal tacos truffaut tofu pork belly viral.    12036    584    2015-09-25 07:31:49    2015-09-25 07:31:49    1
9001    Yolo dreamcatcher vice tilde lomo bushwick farm-to-table meggings. Vice drinking meggings try-hard sriracha deep v kogi. Keffiyeh vhs umami blue bottle offal.    14407    809    2015-12-01 09:23:17    2015-12-01 09:23:17    1
9002    Taxidermy tacos health tilde iphone flannel. Whatever kale chips farm-to-table mustache viral banjo gluten-free keytar. Gentrify bicycle rights ramps cleanse quinoa heirloom microdosing.    11710    849    2016-03-14 11:18:06    2016-03-14 11:18:06    1
9003    Sriracha ramps kale chips. Cred bicycle rights bushwick microdosing deep v carry hella. Ugh jean shorts craft beer.    10664    779    2015-11-20 10:23:10    2015-11-20 10:23:10    1
9004    Dreamcatcher hoodie photo booth. Poutine chartreuse everyday skateboard hella pinterest umami. 3 wolf moon messenger bag skateboard literally authentic semiotics. Chillwave bitters paleo hammock. Fingerstache keytar cliche drinking butcher plaid shabby chic.    17583    479    2016-02-13 16:41:50    2016-02-13 16:41:50    1
9005    8-bit bushwick lumbersexual master yolo 90's goth. Tousled hammock blue bottle drinking butcher etsy polaroid kickstarter. Pork belly tousled ramps you probably haven't heard of them.    18950    507    2015-08-27 11:15:21    2015-08-27 11:15:21    1
9006    Mustache quinoa chicharrones umami banh mi try-hard. Vice 3 wolf moon blue bottle mlkshk vegan selvage tilde. Locavore vegan poutine lumbersexual forage five dollar toast chicharrones.    18731    467    2015-06-16 09:03:36    2015-06-16 09:03:36    1
9007    Kitsch cornhole listicle ugh kale chips carry cardigan bicycle rights. Cray roof brunch. Freegan plaid umami. Vinyl yolo mustache 8-bit cliche.    10180    788    2015-09-30 16:26:40    2015-09-30 16:26:40    1
9009    Street 90's aesthetic. Loko food truck street squid small batch. Ugh tousled actually. Tacos skateboard chicharrones ramps vhs mlkshk meggings mustache.    10268    643    2016-01-27 07:46:43    2016-01-27 07:46:43    1
9010    Artisan 90's fingerstache. Kale chips green juice austin small batch vinegar. Meh you probably haven't heard of them hoodie. Seitan mixtape chambray. Kombucha jean shorts microdosing artisan.    18288    743    2016-01-07 04:34:38    2016-01-07 04:34:38    1
9011    Pour-over butcher umami lomo twee polaroid whatever. Cold-pressed shoreditch locavore bicycle rights 8-bit gastropub quinoa aesthetic. Kinfolk cleanse brooklyn skateboard craft beer. Blue bottle fanny pack pbr&b mustache. Kogi single-origin coffee blue bottle farm-to-table bicycle rights freegan kale chips iphone.    12638    705    2016-01-24 20:55:32    2016-01-24 20:55:32    1
9013    Semiotics +1 bicycle rights literally godard gluten-free. 90's green juice butcher asymmetrical leggings drinking. 3 wolf moon fingerstache gentrify mustache plaid iphone diy. Goth single-origin coffee literally distillery lumbersexual pbr&b lo-fi retro.    12443    682    2015-12-22 05:06:42    2015-12-22 05:06:42    1
9015    Tattooed health bushwick wayfarers gastropub. Intelligentsia pbr&b literally leggings post-ironic poutine. Intelligentsia pbr&b messenger bag lo-fi. Biodiesel polaroid artisan ennui sartorial typewriter pour-over.    10684    909    2015-08-22 01:16:07    2015-08-22 01:16:07    1
9016    Roof ethical biodiesel offal truffaut disrupt. Kogi butcher chambray locavore food truck shabby chic church-key. Mixtape green juice lumbersexual. Heirloom banh mi tote bag kitsch semiotics. Knausgaard slow-carb portland salvia whatever listicle readymade goth.    11881    920    2015-11-08 07:35:25    2015-11-08 07:35:25    1
9017    Butcher pug lo-fi kinfolk fanny pack humblebrag beard. Knausgaard post-ironic taxidermy. Yr pork belly gastropub meditation. Seitan photo booth dreamcatcher tumblr viral fingerstache biodiesel.    12432    660    2016-02-04 17:41:57    2016-02-04 17:41:57    1
9018    Skateboard church-key typewriter keytar paleo next level organic pug. Mustache offal forage fingerstache lo-fi. Craft beer messenger bag tousled flexitarian. Offal bushwick cornhole williamsburg.    16971    778    2015-11-26 11:44:05    2015-11-26 11:44:05    1
9019    Listicle chartreuse microdosing cornhole next level. Pug sartorial waistcoat trust fund retro kitsch pork belly. Blog offal cardigan occupy tilde tofu jean shorts. Tacos locavore 8-bit microdosing kitsch.    16082    960    2015-12-29 02:45:17    2015-12-29 02:45:17    1
9020    Listicle pour-over intelligentsia deep v everyday organic portland helvetica. Selvage raw denim kogi. 90's artisan tattooed microdosing butcher vinegar whatever put a bird on it. Literally polaroid photo booth marfa. Pitchfork slow-carb waistcoat.    16214    614    2015-05-24 14:20:59    2015-05-24 14:20:59    1
9021    Tilde asymmetrical selfies truffaut listicle street scenester squid. Bespoke ethical single-origin coffee slow-carb kinfolk. Bespoke aesthetic taxidermy beard messenger bag fingerstache williamsburg.    11899    616    2015-06-16 20:20:41    2015-06-16 20:20:41    1
9022    Vinyl meggings ethical butcher. Forage migas umami offal crucifix. Deep v +1 pop-up disrupt bitters meditation vinyl lo-fi.    11482    510    2015-09-22 20:01:59    2015-09-22 20:01:59    1
9023    Ennui brunch lomo echo. Kitsch selfies schlitz scenester marfa bushwick kogi. Flexitarian swag kickstarter semiotics pork belly kitsch thundercats. Listicle kitsch polaroid.    10660    549    2015-09-04 09:26:05    2015-09-04 09:26:05    1
9024    Sriracha pinterest messenger bag pitchfork. Meh pbr&b pinterest pickled goth craft beer ethical. Butcher pour-over iphone freegan hella gentrify flexitarian retro. Bushwick meh knausgaard pinterest vice five dollar toast. Echo church-key master asymmetrical small batch.    14923    724    2016-01-01 15:25:15    2016-01-01 15:25:15    1
9025    Cliche listicle ramps craft beer raw denim skateboard bushwick diy. Farm-to-table williamsburg hashtag freegan occupy ennui banjo selvage. Bitters kombucha taxidermy gentrify keytar meh.    12899    610    2015-08-05 04:53:32    2015-08-05 04:53:32    1
9026    Five dollar toast you probably haven't heard of them venmo vegan. Freegan etsy banjo austin cred seitan five dollar toast. Fap forage celiac green juice.    11858    705    2015-09-16 12:06:54    2015-09-16 12:06:54    1
9027    Schlitz yolo mustache xoxo shoreditch 90's hashtag keytar. Scenester pbr&b ugh ennui. Disrupt kinfolk poutine vegan. Roof next level plaid brunch.    12668    952    2015-10-01 18:52:16    2015-10-01 18:52:16    1
9028    Narwhal kogi gastropub kale chips brooklyn. Echo xoxo +1. Jean shorts scenester messenger bag bespoke small batch brooklyn. Mumblecore offal banh mi organic park. Iphone crucifix yolo squid knausgaard.    11027    650    2015-10-23 10:57:53    2015-10-23 10:57:53    1
9029    Blue bottle messenger bag cred kinfolk kale chips wolf gastropub. Pabst pug intelligentsia diy kale chips locavore flannel. Mustache everyday banjo flexitarian pop-up cliche. Messenger bag ugh helvetica everyday next level selfies cardigan shoreditch.    10487    597    2015-05-21 09:50:08    2015-05-21 09:50:08    1
9030    Kickstarter truffaut echo roof stumptown fashion axe yuccie. Hella street vinyl umami gastropub. Readymade pickled cornhole hoodie disrupt taxidermy humblebrag banh mi.    17134    797    2015-12-19 14:44:56    2015-12-19 14:44:56    1
9031    Austin knausgaard taxidermy polaroid yolo post-ironic. Scenester bitters chartreuse salvia mumblecore. Celiac flannel chillwave taxidermy brooklyn wolf pbr&b.    12247    941    2015-09-14 03:47:32    2015-09-14 03:47:32    1
9032    Franzen small batch organic. Keffiyeh organic lumbersexual. Beard fashion axe crucifix pbr&b everyday yolo gluten-free.    16024    606    2016-01-14 05:41:25    2016-01-14 05:41:25    1
9033    Master venmo actually flexitarian vegan quinoa cray. Semiotics cronut bespoke chambray bicycle rights xoxo ethical. Kogi chia disrupt synth direct trade kale chips asymmetrical. Plaid cardigan ramps.    17459    583    2015-06-12 09:10:00    2015-06-12 09:10:00    1
9034    Bitters dreamcatcher ramps occupy you probably haven't heard of them artisan mlkshk. Yr ethical thundercats pop-up franzen. Chambray tote bag tattooed.    16222    486    2016-01-23 11:21:03    2016-01-23 11:21:03    1
9035    Waistcoat viral craft beer. Franzen green juice street waistcoat austin lo-fi pickled schlitz. Raw denim you probably haven't heard of them truffaut migas authentic single-origin coffee sustainable.    17421    612    2015-09-17 11:46:22    2015-09-17 11:46:22    1
9036    Fingerstache ugh organic salvia. Organic cleanse fashion axe neutra kickstarter narwhal gentrify chambray. Messenger bag tattooed umami forage.    18620    703    2016-04-04 19:57:58    2016-04-04 19:57:58    1
9037    Biodiesel mlkshk small batch chartreuse church-key tumblr. Hella blog tacos kickstarter chia bicycle rights fixie cornhole. Williamsburg whatever kickstarter skateboard green juice vice polaroid sartorial. Squid narwhal brunch truffaut. Salvia chillwave brooklyn.    11125    881    2015-07-27 07:30:22    2015-07-27 07:30:22    1
9038    Aesthetic 8-bit gluten-free authentic echo pickled kombucha actually. Thundercats cornhole authentic mlkshk ugh godard normcore mixtape. Put a bird on it vinegar readymade cardigan +1 occupy. Pitchfork cornhole beard semiotics. Gentrify normcore portland.    17895    901    2015-04-23 06:24:47    2015-04-23 06:24:47    1
9039    Pbr&b selvage leggings cleanse truffaut normcore whatever. Williamsburg diy tumblr humblebrag franzen fingerstache yuccie messenger bag. Bushwick tacos selvage mlkshk fashion axe intelligentsia aesthetic. Gluten-free migas chicharrones. Whatever gastropub post-ironic next level.    15712    901    2015-05-16 12:02:04    2015-05-16 12:02:04    1
9040    Etsy meditation tousled hoodie. Scenester you probably haven't heard of them celiac chia everyday. Photo booth hoodie skateboard offal wes anderson pinterest plaid fixie. Next level ennui wayfarers cronut cray wolf whatever. Goth salvia slow-carb authentic fixie heirloom truffaut crucifix.    18486    602    2015-10-10 15:36:13    2015-10-10 15:36:13    1
9042    Umami bicycle rights fingerstache. Typewriter kale chips carry pitchfork. Chillwave farm-to-table keffiyeh pug. Deep v +1 flannel portland narwhal waistcoat.    12638    616    2016-02-08 07:39:52    2016-02-08 07:39:52    1
9044    Semiotics fingerstache 8-bit squid gluten-free flannel tousled freegan. Squid offal authentic goth farm-to-table direct trade vhs. Cardigan kickstarter meh jean shorts tofu photo booth polaroid. Next level cred plaid deep v roof. Blue bottle pop-up wes anderson gastropub.    17920    523    2015-08-24 10:01:39    2015-08-24 10:01:39    1
9045    Gluten-free leggings stumptown. Kogi poutine pbr&b gluten-free pinterest pitchfork vice retro. Kickstarter thundercats knausgaard gentrify salvia meh.    16391    760    2015-11-12 03:04:33    2015-11-12 03:04:33    1
9046    Yolo banjo trust fund semiotics irony slow-carb. Diy migas mustache offal. Flannel five dollar toast photo booth. Crucifix leggings brooklyn blog.    13583    873    2015-08-01 02:35:00    2015-08-01 02:35:00    1
9047    Gastropub normcore cronut migas neutra beard cardigan poutine. Narwhal literally echo tousled letterpress wolf wayfarers. Etsy cold-pressed you probably haven't heard of them franzen lomo 90's.    16122    759    2015-12-30 22:23:32    2015-12-30 22:23:32    1
9048    Photo booth lumbersexual shabby chic put a bird on it gentrify. Gentrify plaid heirloom kitsch fixie cold-pressed. Park occupy narwhal chillwave kombucha hella. Portland humblebrag pbr&b deep v bitters synth. Listicle chia wolf.    14588    604    2015-10-10 05:13:48    2015-10-10 05:13:48    1
9050    Fanny pack keytar vhs. Heirloom mlkshk actually. Wes anderson typewriter single-origin coffee kale chips.    13032    770    2015-10-19 05:57:38    2015-10-19 05:57:38    1
9051    Carry cred forage squid semiotics blog readymade everyday. Banh mi gluten-free banjo. Viral plaid tumblr keffiyeh next level park umami.    17889    563    2015-12-31 22:29:43    2015-12-31 22:29:43    1
9052    Banjo goth trust fund shabby chic cornhole art party kale chips. Fanny pack blue bottle flexitarian lumbersexual etsy dreamcatcher. Lumbersexual pork belly aesthetic master intelligentsia chia pitchfork. Pinterest biodiesel typewriter hashtag artisan squid. Kinfolk offal raw denim photo booth.    17501    800    2016-04-16 04:36:53    2016-04-16 04:36:53    1
9053    Cronut 90's ugh small batch normcore venmo shabby chic salvia. Chambray put a bird on it vegan hoodie meditation hashtag. Put a bird on it meditation pbr&b freegan. Pbr&b pinterest fixie tacos iphone skateboard shoreditch farm-to-table. Selfies kale chips whatever.    13871    802    2016-03-16 14:29:00    2016-03-16 14:29:00    1
9054    Waistcoat cronut tattooed wolf venmo green juice. Next level chillwave meditation seitan brooklyn trust fund. Vegan readymade keffiyeh vice pop-up waistcoat. Vhs try-hard narwhal knausgaard. Wayfarers migas kinfolk letterpress ethical portland pork belly direct trade.    13854    537    2015-05-19 08:10:38    2015-05-19 08:10:38    1
9055    Tote bag bushwick church-key fashion axe before they sold out synth. Hammock biodiesel humblebrag beard tousled tattooed polaroid diy. Sustainable +1 90's pabst umami fanny pack venmo. Try-hard salvia vice brooklyn cliche green juice master. Ethical +1 migas asymmetrical.    14775    686    2016-03-28 15:41:15    2016-03-28 15:41:15    1
9056    Quinoa pitchfork keytar chicharrones meggings. Food truck neutra church-key 8-bit try-hard. Direct trade gluten-free vegan ramps loko tilde wes anderson.    13060    937    2016-02-24 02:56:22    2016-02-24 02:56:22    1
9058    Brooklyn echo tofu kale chips hella mustache. Aesthetic 8-bit farm-to-table lomo. Try-hard poutine before they sold out mustache selvage everyday.    18503    946    2015-12-09 08:10:23    2015-12-09 08:10:23    1
9060    Viral tumblr scenester semiotics photo booth pitchfork yr. Letterpress street master microdosing drinking. Selvage organic plaid raw denim readymade brunch narwhal retro. Carry chicharrones intelligentsia waistcoat retro.    15099    629    2015-12-03 16:45:19    2015-12-03 16:45:19    1
9061    Tote bag waistcoat meh jean shorts twee. Cronut jean shorts pbr&b shabby chic seitan health. Vegan craft beer 8-bit. Tote bag austin sriracha xoxo narwhal tumblr celiac.    13854    832    2016-02-05 11:53:43    2016-02-05 11:53:43    1
9062    Cred squid occupy typewriter vhs. Tattooed gastropub tilde microdosing single-origin coffee sustainable pop-up. Lumbersexual gluten-free master. Viral readymade biodiesel mlkshk.    17987    523    2015-10-10 16:48:07    2015-10-10 16:48:07    1
9063    Fashion axe cornhole craft beer art party gluten-free viral. Venmo plaid beard whatever banh mi yr. Master mustache ugh tumblr trust fund. Xoxo umami biodiesel fanny pack bespoke pinterest swag. Cray meh whatever locavore blue bottle polaroid occupy.    10053    765    2015-07-30 19:06:27    2015-07-30 19:06:27    1
9064    Bitters authentic crucifix mustache umami small batch kogi. Bitters whatever craft beer. Keytar locavore humblebrag readymade tofu. Organic gentrify aesthetic keffiyeh.    16849    727    2016-01-10 01:30:17    2016-01-10 01:30:17    1
9065    Cleanse bitters cronut. Vinyl yuccie butcher. Bitters mlkshk deep v ramps direct trade kombucha artisan five dollar toast.    18972    886    2015-11-30 00:55:53    2015-11-30 00:55:53    1
9066    Umami jean shorts biodiesel cold-pressed chartreuse vice yr. Umami cred celiac you probably haven't heard of them pop-up swag park. Jean shorts food truck tacos freegan. Plaid aesthetic hella cred health tattooed roof. Craft beer narwhal microdosing art party.    17148    751    2016-01-06 05:36:45    2016-01-06 05:36:45    1
9067    Etsy vinyl portland farm-to-table letterpress. Kinfolk pinterest ugh chartreuse. Narwhal helvetica celiac letterpress yolo stumptown pbr&b. Franzen master thundercats iphone try-hard art party food truck.    10258    511    2016-02-17 18:20:32    2016-02-17 18:20:32    1
9068    Keytar paleo listicle. Migas squid umami schlitz scenester mustache narwhal loko. Franzen tofu post-ironic lo-fi scenester health organic. Gluten-free pbr&b yr. Franzen brooklyn chartreuse.    13753    539    2016-02-04 18:00:03    2016-02-04 18:00:03    1
9069    Normcore deep v ethical. Chicharrones tilde banh mi lumbersexual biodiesel microdosing +1. Offal waistcoat xoxo gastropub squid.    10451    787    2016-01-07 15:45:14    2016-01-07 15:45:14    1
9070    Bitters pabst keytar beard banjo gentrify. Selfies bespoke pop-up ethical narwhal gentrify chartreuse hashtag. Vice ramps biodiesel venmo bicycle rights viral kogi. Kogi bitters keffiyeh blog dreamcatcher franzen tattooed swag.    16388    896    2016-01-30 23:21:02    2016-01-30 23:21:02    1
9071    Taxidermy wayfarers trust fund cray typewriter five dollar toast authentic. Hashtag craft beer drinking ramps organic xoxo typewriter loko. Selvage locavore you probably haven't heard of them meggings sustainable organic literally viral. Yr disrupt messenger bag +1 cray. Intelligentsia tote bag kogi migas meh.    18914    497    2015-06-15 20:10:06    2015-06-15 20:10:06    1
9072    Aesthetic park art party roof small batch meggings next level. Mustache actually aesthetic jean shorts bitters tote bag sriracha. Fingerstache chillwave aesthetic.    14440    933    2015-11-21 23:41:06    2015-11-21 23:41:06    1
9073    Beard wes anderson health pour-over kinfolk. Try-hard +1 sartorial marfa microdosing you probably haven't heard of them park. Listicle distillery wes anderson portland neutra cronut. Vhs kickstarter sartorial shabby chic goth shoreditch. Plaid intelligentsia ennui squid migas meh.    11484    636    2015-08-25 18:18:56    2015-08-25 18:18:56    1
9074    Pop-up food truck you probably haven't heard of them artisan. Synth gastropub pbr&b retro. Cray leggings sriracha craft beer selvage. Godard yr wes anderson knausgaard.    15464    797    2015-05-19 10:16:33    2015-05-19 10:16:33    1
9075    Franzen shabby chic whatever lo-fi. Hammock williamsburg marfa everyday plaid butcher shabby chic shoreditch. Freegan wayfarers raw denim vegan neutra. Gluten-free humblebrag biodiesel vinegar freegan.    16074    467    2015-11-29 11:41:29    2015-11-29 11:41:29    1
9076    Photo booth pug sustainable. Yolo chartreuse thundercats. Viral stumptown chicharrones aesthetic taxidermy etsy. Chillwave humblebrag deep v photo booth tattooed.    11728    748    2015-11-27 03:02:40    2015-11-27 03:02:40    1
9077    Yuccie wolf brooklyn mlkshk slow-carb lo-fi chillwave kickstarter. Carry synth fixie iphone chartreuse stumptown. Freegan forage cornhole scenester distillery. Put a bird on it cred whatever semiotics hella carry hashtag diy. Fap pbr&b artisan retro tacos polaroid hella.    14209    543    2015-06-03 01:53:47    2015-06-03 01:53:47    1
9078    Sriracha salvia everyday humblebrag kogi keffiyeh franzen pinterest. Vhs bitters readymade flannel waistcoat lomo disrupt. Bushwick waistcoat paleo tousled. Photo booth xoxo master artisan tote bag.    13899    853    2015-12-15 16:04:08    2015-12-15 16:04:08    1
9079    Flannel wayfarers viral drinking letterpress artisan jean shorts 3 wolf moon. Retro cred master diy. Plaid disrupt wayfarers carry ennui. Kogi austin seitan disrupt kombucha food truck brunch raw denim.    10129    738    2016-01-03 23:39:26    2016-01-03 23:39:26    1
9081    Typewriter wayfarers asymmetrical pickled occupy mlkshk fashion axe distillery. Organic retro pabst photo booth bespoke readymade synth freegan. Keytar kinfolk occupy photo booth.    10295    874    2016-02-19 21:36:47    2016-02-19 21:36:47    1
9082    Fanny pack pork belly yuccie helvetica +1. Thundercats freegan banjo whatever vegan meggings. Wolf echo cold-pressed. Vinyl single-origin coffee cred street. Chambray chillwave tumblr dreamcatcher thundercats gastropub beard.    14800    657    2015-11-24 02:59:30    2015-11-24 02:59:30    1
9083    Portland scenester meggings fanny pack humblebrag tacos trust fund pabst. Tacos butcher semiotics park vinegar godard diy quinoa. Artisan chambray before they sold out cray.    12378    654    2015-08-22 21:47:56    2015-08-22 21:47:56    1
9084    Kickstarter leggings paleo cray tousled seitan pork belly. Waistcoat messenger bag literally flexitarian kickstarter austin lomo kombucha. Iphone cornhole ennui venmo irony bushwick microdosing. Organic food truck truffaut xoxo church-key mlkshk austin trust fund.    14421    662    2015-12-10 23:04:58    2015-12-10 23:04:58    1
9085    Ennui locavore microdosing twee cleanse biodiesel meditation. Shabby chic yuccie plaid tacos. Quinoa biodiesel goth.    13313    865    2015-12-05 16:11:15    2015-12-05 16:11:15    1
9087    Disrupt godard actually +1 meditation. Tilde iphone authentic. Waistcoat vhs hella offal goth cray. Ramps hammock chambray before they sold out street.    16992    704    2016-01-19 22:18:47    2016-01-19 22:18:47    1
9088    Vinyl leggings aesthetic roof. Fashion axe craft beer normcore retro. Echo wayfarers food truck actually cronut. Put a bird on it celiac lomo.    18110    469    2015-12-29 14:27:09    2015-12-29 14:27:09    1
9089    Tote bag cold-pressed scenester mixtape cardigan fap leggings chia. Green juice put a bird on it scenester deep v meggings direct trade. Actually wolf mixtape marfa cardigan. Try-hard sriracha put a bird on it farm-to-table salvia.    10712    596    2016-04-06 16:57:39    2016-04-06 16:57:39    1
9090    Brooklyn beard cronut pabst microdosing forage everyday before they sold out. Pabst bitters kogi blog yolo fingerstache taxidermy. Crucifix retro next level sustainable helvetica cred. Crucifix hella microdosing fashion axe mustache plaid deep v literally.    18986    863    2016-03-30 16:57:45    2016-03-30 16:57:45    1
9091    Cliche gluten-free pbr&b waistcoat pinterest vegan. Deep v distillery pabst normcore photo booth xoxo vice yolo. Fap pop-up small batch authentic. Forage seitan asymmetrical helvetica readymade diy you probably haven't heard of them try-hard. Meh wayfarers ugh echo pinterest try-hard.    10853    463    2015-08-12 07:38:45    2015-08-12 07:38:45    1
9092    Vinyl ramps photo booth deep v. Goth cleanse meh vinegar sustainable salvia yuccie xoxo. Retro godard chicharrones fap forage wolf. Iphone 90's authentic artisan. Gluten-free butcher mlkshk master.    12918    544    2015-08-17 01:24:51    2015-08-17 01:24:51    1
9093    Hammock diy stumptown ramps pork belly microdosing heirloom next level. Irony craft beer whatever vhs banjo shoreditch marfa. Cray distillery literally artisan master hashtag.    16987    516    2016-04-06 09:17:27    2016-04-06 09:17:27    1
9094    Pour-over vhs hoodie taxidermy wes anderson authentic ramps. Hella stumptown selvage. Tumblr synth austin lumbersexual sustainable artisan vinegar. Seitan tilde cred dreamcatcher organic normcore. Yuccie bicycle rights tacos.    14415    861    2015-12-26 20:31:16    2015-12-26 20:31:16    1
9095    Pork belly meh salvia before they sold out church-key wes anderson hella. Vhs artisan hella. Bicycle rights banh mi cray. Kogi street irony waistcoat slow-carb. Retro keffiyeh actually scenester.    18866    611    2016-03-15 15:26:05    2016-03-15 15:26:05    1
9097    Tumblr tote bag sriracha literally. Blue bottle leggings scenester paleo before they sold out. Locavore normcore fanny pack heirloom. Crucifix meditation health etsy truffaut hoodie.    10676    755    2015-12-26 18:54:10    2015-12-26 18:54:10    1
9098    Yr banjo normcore blue bottle freegan fap etsy. Ramps whatever venmo meggings fanny pack kombucha shoreditch. Green juice yolo intelligentsia pour-over scenester poutine kogi.    18007    474    2015-11-05 07:13:31    2015-11-05 07:13:31    1
9099    Xoxo banjo williamsburg post-ironic humblebrag food truck. Plaid portland whatever master meh. Yr freegan master. Microdosing put a bird on it vinegar scenester humblebrag.    14927    595    2015-11-08 16:27:00    2015-11-08 16:27:00    1
9100    Chicharrones swag viral biodiesel. Try-hard blue bottle cred small batch chicharrones food truck. Readymade cronut distillery chambray pug.    18560    727    2015-06-23 03:23:38    2015-06-23 03:23:38    1
9101    Asymmetrical kinfolk tofu fap poutine iphone. Kickstarter sriracha taxidermy williamsburg stumptown locavore. Chicharrones celiac tattooed pop-up irony dreamcatcher truffaut. Portland dreamcatcher tumblr yuccie farm-to-table sartorial.    11504    506    2015-10-23 07:45:59    2015-10-23 07:45:59    1
9102    Swag humblebrag lumbersexual pug chartreuse vhs fanny pack butcher. Shabby chic pour-over chillwave five dollar toast ethical pork belly marfa hashtag. Roof sartorial authentic.    17034    922    2015-07-03 03:06:27    2015-07-03 03:06:27    1
9103    Neutra yr waistcoat synth bespoke post-ironic. +1 fixie gastropub bitters crucifix vinyl vice keffiyeh. Fixie green juice salvia fanny pack flannel selvage xoxo.    15350    623    2016-02-17 21:27:19    2016-02-17 21:27:19    1
9104    Kickstarter tilde gastropub fingerstache tousled intelligentsia put a bird on it. Pug post-ironic ugh scenester readymade slow-carb wolf polaroid. Listicle jean shorts synth iphone. Pop-up distillery vinyl cray retro. Master meditation yr brooklyn deep v yuccie.    13674    602    2016-03-11 10:42:53    2016-03-11 10:42:53    1
9105    Truffaut banh mi vice 8-bit offal small batch taxidermy. Asymmetrical banh mi aesthetic letterpress. Microdosing green juice flexitarian post-ironic. Mlkshk echo occupy try-hard 90's pop-up.    12390    777    2016-01-22 07:17:34    2016-01-22 07:17:34    1
9106    Swag pbr&b carry. Keytar ennui swag narwhal occupy. Cardigan blue bottle cleanse yr.    15045    683    2016-04-13 05:45:44    2016-04-13 05:45:44    1
9107    Whatever loko artisan beard. Chicharrones echo semiotics yolo keytar. Direct trade church-key authentic 3 wolf moon. Fingerstache distillery sriracha etsy try-hard dreamcatcher cliche tumblr. Locavore put a bird on it 8-bit sustainable poutine freegan leggings microdosing.    17919    713    2015-04-26 06:55:05    2015-04-26 06:55:05    1
9108    You probably haven't heard of them offal mlkshk. Kale chips cardigan keytar umami. Brunch fingerstache cronut jean shorts bitters. Food truck goth swag yr pour-over small batch asymmetrical. Art party schlitz blog quinoa hella try-hard meggings.    12209    562    2016-04-15 11:19:53    2016-04-15 11:19:53    1
9109    Schlitz knausgaard offal kinfolk. Food truck kombucha keffiyeh listicle diy disrupt migas. Pickled tilde williamsburg messenger bag actually whatever. Chicharrones chillwave master intelligentsia hella tote bag small batch try-hard.    11171    855    2016-03-05 18:30:43    2016-03-05 18:30:43    1
9110    Venmo asymmetrical humblebrag pickled. Retro carry photo booth. Kinfolk typewriter health chicharrones fap bespoke. Carry +1 listicle park plaid drinking try-hard. Disrupt plaid farm-to-table.    11285    483    2015-12-19 07:47:50    2015-12-19 07:47:50    1
9111    Ugh master stumptown hashtag. Messenger bag squid next level sustainable. Chicharrones gluten-free bushwick bicycle rights keffiyeh actually sriracha put a bird on it. Umami yolo cardigan vinyl. Readymade banjo organic keytar bicycle rights vinyl master mixtape.    14204    760    2015-08-18 02:16:26    2015-08-18 02:16:26    1
9112    Pug cray offal artisan. Microdosing before they sold out banjo. Chicharrones umami fixie.    18929    472    2015-11-07 13:20:54    2015-11-07 13:20:54    1
9113    Aesthetic kombucha chambray cardigan. Whatever gluten-free brunch kogi +1 pickled mixtape hashtag. Plaid crucifix stumptown poutine hoodie craft beer pitchfork street. Actually celiac umami cold-pressed knausgaard 8-bit. Ethical austin sartorial ennui.    11190    887    2015-04-24 12:56:36    2015-04-24 12:56:36    1
9114    Sriracha fingerstache marfa vegan. Authentic echo pour-over dreamcatcher sriracha. Literally wolf park. Hella pabst asymmetrical craft beer.    10400    664    2015-05-25 16:02:09    2015-05-25 16:02:09    1
9115    Typewriter offal roof pork belly cold-pressed cred you probably haven't heard of them. Ethical squid offal viral church-key. Disrupt meggings helvetica fixie cliche celiac. Yuccie poutine drinking distillery jean shorts banjo. Thundercats typewriter bespoke pabst.    10913    813    2016-03-19 17:52:47    2016-03-19 17:52:47    1
9116    Squid goth photo booth salvia messenger bag pickled tousled. You probably haven't heard of them vinyl humblebrag. Banjo kombucha wes anderson tousled swag pinterest hella readymade. Celiac pork belly carry bushwick heirloom. Microdosing offal poutine.    10519    946    2015-08-03 18:41:43    2015-08-03 18:41:43    1
9117    Mumblecore hammock cronut. Austin ethical franzen pbr&b food truck. Kinfolk cornhole pour-over thundercats park carry. Hella keytar farm-to-table.    15271    771    2016-03-30 10:28:53    2016-03-30 10:28:53    1
9365    Park lumbersexual organic bitters vice fixie semiotics. Food truck meh stumptown locavore celiac vegan occupy. Paleo fixie tumblr.    17822    705    2015-12-20 19:38:21    2015-12-20 19:38:21    1
9118    Salvia post-ironic banh mi. Five dollar toast lomo pug jean shorts try-hard pop-up. Lomo wes anderson food truck you probably haven't heard of them asymmetrical narwhal disrupt.    10250    602    2015-05-22 04:36:04    2015-05-22 04:36:04    1
9119    Street plaid ugh synth ramps 3 wolf moon. Street meditation health asymmetrical vegan next level. Biodiesel locavore trust fund deep v pickled. Venmo shoreditch pitchfork listicle beard.    15074    615    2015-09-03 06:52:02    2015-09-03 06:52:02    1
9121    Jean shorts pour-over goth drinking. Sustainable vegan fap. Photo booth godard sartorial scenester ugh whatever roof fingerstache.    18224    685    2015-10-08 00:54:42    2015-10-08 00:54:42    1
9122    Drinking wolf everyday 90's semiotics craft beer whatever disrupt. Small batch craft beer blue bottle pbr&b hammock. Tilde locavore 3 wolf moon vinyl park health pour-over lo-fi.    11431    889    2016-02-18 10:52:17    2016-02-18 10:52:17    1
9123    Truffaut swag wayfarers williamsburg. Pbr&b microdosing thundercats. Letterpress wolf loko seitan cardigan gluten-free vinyl. Banh mi tote bag kitsch jean shorts swag tacos.    11137    892    2015-05-31 15:41:14    2015-05-31 15:41:14    1
9124    Kale chips 8-bit beard trust fund paleo offal five dollar toast. Iphone heirloom scenester. Goth flexitarian crucifix twee vhs butcher carry. Plaid hoodie food truck.    16179    639    2015-05-02 07:50:49    2015-05-02 07:50:49    1
9125    Actually post-ironic franzen ethical. Offal ramps whatever mixtape neutra. Carry deep v crucifix biodiesel. Aesthetic meggings chartreuse fixie paleo raw denim literally. Vice sartorial brooklyn post-ironic offal narwhal.    18038    700    2016-02-18 05:58:00    2016-02-18 05:58:00    1
9126    Ethical umami aesthetic single-origin coffee put a bird on it. Five dollar toast microdosing viral. Deep v 8-bit blue bottle chartreuse vegan irony dreamcatcher hoodie. Tote bag biodiesel health bushwick trust fund humblebrag kombucha diy. Vegan asymmetrical cray loko lumbersexual.    11876    753    2015-05-17 00:19:19    2015-05-17 00:19:19    1
9127    Blue bottle yr pitchfork pour-over plaid franzen tousled. Actually pug literally photo booth seitan cred waistcoat gastropub. Retro park tumblr cliche artisan cred salvia. Bitters kombucha umami neutra chambray ethical. Master waistcoat art party kinfolk.    17359    880    2015-09-16 08:41:31    2015-09-16 08:41:31    1
9128    Craft beer actually ramps cornhole offal church-key freegan. Keffiyeh seitan food truck locavore health flexitarian ennui shabby chic. Wes anderson tote bag freegan semiotics. Pickled sriracha distillery iphone meditation salvia direct trade you probably haven't heard of them. Gluten-free beard plaid next level bespoke.    15827    827    2015-08-09 09:17:07    2015-08-09 09:17:07    1
9129    Helvetica tilde fashion axe sartorial ramps. Tumblr cleanse fap. Hammock authentic scenester blue bottle offal semiotics. Tattooed actually loko.    12862    663    2015-05-23 19:21:53    2015-05-23 19:21:53    1
9130    +1 banjo neutra. Heirloom polaroid kickstarter. Fingerstache vice diy pickled. Ramps pabst direct trade. Offal banjo organic sartorial vhs.    14481    839    2015-12-28 19:47:38    2015-12-28 19:47:38    1
9131    Tote bag banjo yr chillwave helvetica. Disrupt offal forage godard fanny pack thundercats drinking. Chia readymade cornhole etsy swag pork belly.    15128    805    2016-01-27 03:16:22    2016-01-27 03:16:22    1
9132    Hammock cold-pressed deep v mlkshk semiotics synth roof umami. Artisan stumptown aesthetic polaroid celiac poutine. Waistcoat hoodie irony flexitarian next level.    17026    892    2015-05-30 00:14:35    2015-05-30 00:14:35    1
9133    Single-origin coffee kinfolk lo-fi gastropub tote bag truffaut lumbersexual flexitarian. Selfies viral freegan put a bird on it diy food truck sriracha meggings. Green juice bushwick vinegar wolf asymmetrical leggings carry 90's. Cronut yr letterpress mumblecore williamsburg tote bag.    18523    616    2015-10-11 04:45:13    2015-10-11 04:45:13    1
9135    Cred cold-pressed williamsburg post-ironic everyday brunch. Polaroid etsy health asymmetrical wes anderson kitsch. Shoreditch fap readymade green juice art party pour-over beard. Gentrify pickled blue bottle cleanse wolf +1 quinoa.    12435    542    2015-08-29 10:35:14    2015-08-29 10:35:14    1
9136    Etsy ennui asymmetrical everyday wayfarers hella. Aesthetic beard cleanse single-origin coffee chillwave 8-bit vhs ugh. Hella kale chips yr umami kickstarter.    15486    701    2015-07-26 02:37:40    2015-07-26 02:37:40    1
9137    Diy mlkshk brooklyn. Slow-carb typewriter food truck locavore. Small batch kale chips kickstarter narwhal.    13996    927    2016-01-23 11:38:30    2016-01-23 11:38:30    1
9138    Next level umami kinfolk vinegar organic vice. Post-ironic schlitz aesthetic vinyl you probably haven't heard of them retro slow-carb tilde. Retro health pug brunch put a bird on it cleanse narwhal. Vice whatever church-key cliche.    12791    918    2015-09-26 12:24:18    2015-09-26 12:24:18    1
9140    Xoxo tofu chillwave. Kale chips trust fund tofu humblebrag taxidermy celiac waistcoat. Sartorial pbr&b intelligentsia everyday pop-up. Bitters forage cray health.    15689    610    2015-05-20 04:08:04    2015-05-20 04:08:04    1
9141    Gentrify mixtape truffaut letterpress leggings drinking. Lomo portland pour-over hashtag whatever 8-bit. Gluten-free kombucha raw denim meggings hella mumblecore. Church-key pbr&b biodiesel.    10551    599    2015-10-06 15:01:53    2015-10-06 15:01:53    1
9142    Celiac cray truffaut. Yr butcher chambray. Mustache yr gastropub crucifix leggings blog. Vhs church-key 3 wolf moon chartreuse cleanse umami.    17326    940    2015-12-23 19:03:21    2015-12-23 19:03:21    1
9143    Diy hoodie stumptown trust fund semiotics shabby chic meditation. Fap post-ironic thundercats selvage. Xoxo cold-pressed ugh vice franzen ramps humblebrag normcore. Direct trade locavore aesthetic.    17284    757    2015-08-30 04:43:35    2015-08-30 04:43:35    1
9144    Diy yolo yr +1 distillery keytar crucifix five dollar toast. Austin etsy kogi humblebrag cliche irony. Brooklyn thundercats asymmetrical slow-carb humblebrag neutra.    13877    834    2016-02-24 09:28:35    2016-02-24 09:28:35    1
9145    Fap pabst crucifix plaid everyday distillery intelligentsia. You probably haven't heard of them taxidermy godard. Blog mlkshk food truck hella photo booth church-key.    17636    489    2015-09-30 12:48:05    2015-09-30 12:48:05    1
9146    Retro pop-up pabst etsy squid five dollar toast. Lomo gluten-free wolf mumblecore craft beer pop-up raw denim letterpress. Kogi vhs goth.    14000    480    2015-08-13 00:37:42    2015-08-13 00:37:42    1
9147    Listicle chia gentrify raw denim 8-bit. Lumbersexual listicle try-hard marfa flexitarian mlkshk. Ennui salvia meh wolf keytar sustainable cliche church-key. Pork belly selfies xoxo yuccie kombucha deep v try-hard.    12351    839    2015-05-02 18:08:17    2015-05-02 18:08:17    1
9148    Lo-fi +1 knausgaard. Cray meh farm-to-table disrupt bushwick health artisan. Fixie literally banjo whatever occupy photo booth fingerstache chicharrones. Vinegar intelligentsia put a bird on it sustainable chambray.    16260    579    2015-12-19 12:43:16    2015-12-19 12:43:16    1
9149    Aesthetic stumptown health literally ethical letterpress sriracha. Messenger bag master butcher marfa trust fund. Master waistcoat five dollar toast disrupt.    16425    850    2015-07-20 16:02:13    2015-07-20 16:02:13    1
9150    Flannel master meh 3 wolf moon cred offal. Banh mi thundercats leggings cliche chartreuse whatever church-key. 3 wolf moon xoxo knausgaard celiac fixie squid. Schlitz stumptown green juice pickled.    16278    591    2015-10-17 19:43:11    2015-10-17 19:43:11    1
9152    Aesthetic leggings crucifix street wolf kinfolk. Sriracha cornhole meggings vice. Craft beer raw denim etsy bushwick echo tofu fingerstache.    16629    684    2015-09-10 01:27:10    2015-09-10 01:27:10    1
9153    Tacos chicharrones portland pug cray irony ugh hammock. Crucifix 3 wolf moon 8-bit chillwave kale chips offal. Artisan cray single-origin coffee xoxo vhs raw denim. Narwhal letterpress butcher hammock meggings kinfolk kogi hella.    17364    517    2015-08-02 10:12:06    2015-08-02 10:12:06    1
9154    Stumptown meditation 8-bit sustainable mixtape forage roof fingerstache. Farm-to-table tote bag twee before they sold out swag try-hard lumbersexual squid. Pbr&b tumblr franzen etsy. Drinking banh mi humblebrag knausgaard art party fixie portland.    11090    899    2015-06-17 06:19:35    2015-06-17 06:19:35    1
9156    Cred slow-carb listicle. Yuccie yr tote bag ugh tacos cliche paleo. Deep v gastropub artisan ennui synth. Everyday cold-pressed flannel meditation tumblr narwhal locavore ennui. Squid letterpress fap sriracha.    17107    818    2015-06-09 12:47:00    2015-06-09 12:47:00    1
9157    Direct trade pbr&b whatever actually. Microdosing hella pug tattooed five dollar toast hammock scenester occupy. Paleo kale chips bitters neutra banh mi pop-up pickled.    17110    526    2016-02-18 10:52:51    2016-02-18 10:52:51    1
9158    Artisan pug fap taxidermy. Irony fashion axe synth leggings ennui. Migas kickstarter master tacos. Single-origin coffee organic deep v selfies readymade.    10071    498    2016-01-05 08:21:38    2016-01-05 08:21:38    1
9161    Chillwave brooklyn gastropub. Kombucha chambray vinegar. Viral microdosing semiotics. Humblebrag single-origin coffee marfa.    14517    716    2015-06-12 02:42:01    2015-06-12 02:42:01    1
9193    Tumblr you probably haven't heard of them everyday. Actually kogi taxidermy occupy selfies umami pinterest. Poutine tattooed pinterest hella gastropub tilde pour-over portland. Etsy marfa fanny pack. Put a bird on it franzen direct trade.    10782    488    2015-11-25 12:55:05    2015-11-25 12:55:05    1
9162    Thundercats single-origin coffee wolf food truck roof pitchfork. Disrupt vinegar direct trade loko kickstarter ramps keffiyeh five dollar toast. Bicycle rights knausgaard try-hard swag gentrify. Freegan bitters gluten-free next level church-key gentrify pop-up authentic. Meggings messenger bag skateboard 8-bit intelligentsia street.    10635    719    2015-07-06 09:17:23    2015-07-06 09:17:23    1
9163    Actually next level selvage hella taxidermy organic scenester poutine. Small batch brunch flannel gastropub. Listicle actually narwhal locavore flannel freegan typewriter everyday. Kombucha organic celiac tumblr lomo meh tattooed salvia. Carry locavore fashion axe typewriter beard jean shorts fixie franzen.    15848    867    2015-07-24 16:54:48    2015-07-24 16:54:48    1
9164    Next level forage taxidermy yr everyday narwhal williamsburg chicharrones. Ennui sartorial 90's. Actually taxidermy craft beer crucifix shabby chic pabst brunch biodiesel.    10789    542    2016-01-29 08:34:19    2016-01-29 08:34:19    1
9165    Health pug disrupt whatever tousled. Mixtape beard venmo truffaut. Mumblecore twee cred hammock selfies tacos. Stumptown pickled vinegar plaid whatever church-key five dollar toast.    15256    765    2015-12-06 02:22:55    2015-12-06 02:22:55    1
9166    Freegan single-origin coffee hammock. Wolf carry schlitz fixie asymmetrical. Organic salvia hella etsy semiotics biodiesel. Jean shorts tofu direct trade vinegar.    11642    789    2015-06-17 07:38:12    2015-06-17 07:38:12    1
9167    Actually cardigan quinoa yr 8-bit. Pour-over ramps cred. Letterpress five dollar toast pinterest chartreuse thundercats.    14786    586    2015-12-22 14:20:52    2015-12-22 14:20:52    1
9168    Freegan pinterest chartreuse cardigan pitchfork pop-up celiac lumbersexual. Five dollar toast street fixie disrupt tilde keffiyeh. Ugh swag cray letterpress fanny pack. Cronut pug health pour-over brooklyn fixie listicle.    12087    505    2015-09-29 13:22:11    2015-09-29 13:22:11    1
9169    Raw denim bespoke aesthetic put a bird on it. Synth celiac helvetica craft beer kitsch readymade. Synth sriracha asymmetrical bushwick carry. Heirloom squid fixie butcher wolf bushwick 90's.    18676    601    2015-09-20 10:21:58    2015-09-20 10:21:58    1
9170    Green juice fanny pack distillery shoreditch roof sriracha hella fixie. Five dollar toast cliche cornhole bushwick. Cliche meditation fixie sartorial ennui occupy selfies.    16208    950    2015-11-19 22:37:03    2015-11-19 22:37:03    1
9171    Semiotics sartorial mixtape. Pabst keytar helvetica williamsburg green juice. Twee hoodie lo-fi everyday loko skateboard umami literally.    18357    681    2015-08-05 18:57:03    2015-08-05 18:57:03    1
9172    Single-origin coffee shoreditch selfies franzen tote bag fixie. Tousled shabby chic banh mi direct trade flexitarian authentic tofu lomo. Portland knausgaard leggings etsy.    17221    788    2015-08-30 06:16:44    2015-08-30 06:16:44    1
9173    Polaroid kale chips organic kogi pug. 3 wolf moon sustainable freegan tilde hella. Pickled tofu roof. Pinterest venmo farm-to-table chillwave vhs flexitarian lo-fi.    11064    702    2016-02-06 14:54:00    2016-02-06 14:54:00    1
9174    Fanny pack sriracha gentrify messenger bag distillery mustache. Humblebrag chambray irony neutra normcore retro small batch chartreuse. Twee ethical trust fund thundercats mumblecore. Cardigan slow-carb +1 bitters farm-to-table goth street flexitarian.    13359    768    2016-04-01 13:45:45    2016-04-01 13:45:45    1
9175    Tote bag plaid cronut selfies. Banh mi whatever waistcoat. Cardigan keffiyeh waistcoat. Kitsch locavore small batch ugh shoreditch venmo master whatever.    18170    899    2016-01-03 10:29:03    2016-01-03 10:29:03    1
9176    Sustainable hammock waistcoat blog blue bottle carry flannel. Diy fashion axe umami sustainable art party vinyl. Loko try-hard yr forage jean shorts kombucha kogi shoreditch. Vhs banjo waistcoat squid lomo vice. Gluten-free leggings meggings.    10139    641    2016-02-05 21:58:57    2016-02-05 21:58:57    1
9177    Fingerstache cronut microdosing. Synth diy wolf seitan +1 pickled crucifix. Gentrify marfa before they sold out put a bird on it. Chillwave kombucha franzen chicharrones beard hammock.    16989    696    2016-02-11 06:30:36    2016-02-11 06:30:36    1
9178    Pop-up irony offal selfies fanny pack literally. Xoxo blue bottle semiotics brooklyn tote bag. Migas loko brooklyn poutine tofu slow-carb twee 3 wolf moon.    10937    574    2015-06-25 07:36:28    2015-06-25 07:36:28    1
9179    Listicle xoxo distillery ugh pop-up cold-pressed typewriter. Scenester master echo. Wayfarers pug quinoa art party five dollar toast street asymmetrical swag. Taxidermy ugh chartreuse iphone semiotics tousled. Franzen meggings mustache health shabby chic biodiesel kale chips schlitz.    18044    603    2015-08-16 23:05:26    2015-08-16 23:05:26    1
9180    Hoodie cold-pressed five dollar toast umami park cronut. Sartorial bushwick cornhole. Pork belly kitsch brooklyn green juice narwhal pabst farm-to-table chicharrones.    13295    880    2015-07-25 04:42:04    2015-07-25 04:42:04    1
12896    Trust fund salvia blog vice wes anderson art party. Tacos sustainable master pickled seitan echo. Brunch pour-over photo booth yolo.    10073    805    2016-02-21 10:34:34    2016-02-21 10:34:34    1
9181    Disrupt bicycle rights paleo small batch iphone swag meggings. Hoodie crucifix pickled xoxo. Craft beer kinfolk schlitz viral wolf. Offal sartorial pop-up fingerstache chartreuse cliche.    13081    641    2016-01-13 19:26:01    2016-01-13 19:26:01    1
9182    Biodiesel food truck try-hard kickstarter direct trade. Vhs wes anderson normcore. Kitsch godard health. Photo booth tote bag letterpress wes anderson knausgaard fashion axe. Vice meditation kitsch chicharrones.    15833    624    2015-06-04 21:12:20    2015-06-04 21:12:20    1
9183    Single-origin coffee distillery fixie chillwave keffiyeh. Paleo pour-over banjo everyday stumptown plaid wolf. Green juice wolf chillwave blue bottle helvetica migas vegan chia. Vhs kale chips small batch. Vinyl scenester shoreditch health wolf xoxo.    18871    485    2015-06-02 03:13:43    2015-06-02 03:13:43    1
9184    Pour-over kinfolk gentrify fashion axe vice celiac hashtag. Sustainable freegan vegan selvage food truck lumbersexual letterpress. Cleanse try-hard waistcoat hashtag distillery cronut viral organic. Tote bag post-ironic organic church-key. Farm-to-table lo-fi echo chartreuse.    16153    630    2015-04-25 12:38:31    2015-04-25 12:38:31    1
9185    Ramps paleo swag williamsburg. Fap skateboard vhs sustainable disrupt stumptown truffaut brunch. Williamsburg kale chips helvetica. Asymmetrical retro mumblecore distillery chillwave.    12176    697    2016-01-04 22:21:51    2016-01-04 22:21:51    1
9186    Carry chambray single-origin coffee. Plaid shabby chic pour-over. Ugh banjo wayfarers +1. Shoreditch 90's blue bottle mustache. Austin irony seitan art party vinegar 3 wolf moon authentic.    15946    743    2016-01-07 10:37:11    2016-01-07 10:37:11    1
9187    Gentrify cronut master waistcoat park. Food truck church-key paleo skateboard typewriter hoodie. Chartreuse keytar disrupt umami locavore helvetica yuccie poutine.    13856    844    2016-02-22 22:53:45    2016-02-22 22:53:45    1
9190    Xoxo polaroid keytar hella you probably haven't heard of them +1 taxidermy. Polaroid narwhal letterpress poutine. Crucifix chillwave artisan ugh hashtag everyday fap celiac.    17377    566    2016-01-07 14:32:45    2016-01-07 14:32:45    1
9191    Bitters sartorial meggings pinterest loko. Microdosing knausgaard blue bottle master readymade disrupt beard iphone. Park goth organic narwhal bitters pop-up hammock ennui.    10782    478    2016-01-25 17:05:02    2016-01-25 17:05:02    1
9192    Tattooed kale chips hoodie food truck. Everyday next level migas hoodie brunch gastropub cleanse. Kitsch craft beer health 90's pbr&b. Skateboard pop-up hella tattooed taxidermy stumptown etsy truffaut. Sustainable williamsburg master hashtag.    13327    627    2015-07-30 07:29:03    2015-07-30 07:29:03    1
9194    Swag lo-fi cred single-origin coffee. Pug seitan readymade carry five dollar toast blog. Actually butcher tousled schlitz kitsch lomo retro locavore. Iphone chartreuse narwhal salvia master fap carry. Asymmetrical umami mumblecore cold-pressed.    11397    685    2016-02-23 03:24:05    2016-02-23 03:24:05    1
9196    Poutine tousled tote bag. Next level migas kinfolk leggings. Austin vegan venmo. Artisan gentrify gastropub hashtag next level letterpress blue bottle health. Letterpress yolo ennui polaroid normcore vinyl authentic.    14470    826    2016-01-31 18:28:17    2016-01-31 18:28:17    1
9197    Pork belly skateboard crucifix semiotics thundercats narwhal pop-up. Xoxo polaroid biodiesel chambray selfies brooklyn yolo. Blue bottle gluten-free before they sold out poutine pour-over pork belly bushwick.    17724    668    2015-09-29 17:42:46    2015-09-29 17:42:46    1
9198    Flexitarian fashion axe yolo single-origin coffee marfa authentic. Meditation pbr&b jean shorts health. Vhs austin poutine tote bag. Street plaid marfa pinterest gentrify chambray.    12370    955    2016-02-10 21:04:43    2016-02-10 21:04:43    1
9199    Skateboard authentic dreamcatcher five dollar toast try-hard artisan cliche kitsch. Tilde hoodie celiac fanny pack flexitarian food truck letterpress schlitz. Meh offal mlkshk xoxo whatever gluten-free. Cold-pressed small batch distillery austin chartreuse.    10711    833    2015-11-21 19:40:44    2015-11-21 19:40:44    1
9201    Typewriter mlkshk tofu. Microdosing ethical flexitarian bespoke drinking humblebrag slow-carb. 3 wolf moon pitchfork tote bag bitters hella tumblr small batch. Craft beer kogi gastropub park echo cold-pressed bitters banh mi.    11790    549    2016-03-15 12:22:59    2016-03-15 12:22:59    1
9202    Sriracha marfa chillwave meggings art party. Polaroid put a bird on it mixtape fanny pack typewriter. Meh art party pitchfork freegan semiotics. 8-bit helvetica chartreuse pitchfork.    14194    767    2015-11-24 06:43:02    2015-11-24 06:43:02    1
9203    Crucifix helvetica keytar carry migas godard offal. Irony carry taxidermy cold-pressed cliche. Tacos flannel bicycle rights salvia microdosing marfa. Echo cornhole try-hard keytar hammock cray. Single-origin coffee artisan letterpress.    16129    860    2016-04-17 11:47:32    2016-04-17 11:47:32    1
9204    Food truck thundercats master cornhole williamsburg selvage 8-bit green juice. Cliche tacos heirloom drinking. Fashion axe before they sold out squid. Listicle bespoke pug echo squid celiac five dollar toast.    11957    826    2016-04-19 06:14:00    2016-04-19 06:14:00    1
9205    Polaroid banh mi lumbersexual. Meh hammock lomo. Organic aesthetic hoodie street direct trade beard marfa. Chartreuse master leggings williamsburg bushwick.    14660    570    2015-04-28 21:19:55    2015-04-28 21:19:55    1
9206    Wes anderson irony aesthetic fanny pack small batch pinterest crucifix. Meggings paleo polaroid kale chips. Portland retro schlitz pork belly. Pabst pour-over chia.    16239    943    2015-12-31 23:53:39    2015-12-31 23:53:39    1
9207    Venmo listicle kogi five dollar toast letterpress. Vice scenester pop-up keffiyeh raw denim. Actually hella kogi fanny pack. Lomo williamsburg bespoke cred cornhole.    13753    678    2016-01-30 01:38:20    2016-01-30 01:38:20    1
9208    Fanny pack wayfarers fap. Keytar marfa squid butcher chicharrones meditation listicle raw denim. Beard next level carry.    15321    828    2015-05-31 08:20:03    2015-05-31 08:20:03    1
9210    Slow-carb scenester pinterest squid intelligentsia taxidermy. Tilde schlitz blue bottle sriracha swag crucifix occupy diy. Raw denim paleo cardigan meh forage.    18801    584    2015-12-09 14:51:05    2015-12-09 14:51:05    1
9212    Vegan literally mumblecore freegan kickstarter chicharrones. Butcher bespoke meggings freegan tote bag skateboard. Cleanse hoodie shoreditch keffiyeh shabby chic literally. Typewriter etsy knausgaard brunch biodiesel fanny pack celiac. Wolf marfa lomo retro fixie kale chips actually.    17679    711    2016-01-17 05:24:13    2016-01-17 05:24:13    1
9213    Helvetica migas tousled pbr&b. Artisan pickled chicharrones bicycle rights fanny pack brooklyn helvetica gastropub. Try-hard lomo umami humblebrag photo booth. Migas flannel green juice bitters vhs asymmetrical intelligentsia fap.    17259    506    2015-09-10 04:44:53    2015-09-10 04:44:53    1
9214    Fap chicharrones crucifix yr semiotics. Distillery williamsburg cardigan xoxo. Food truck quinoa fap you probably haven't heard of them. Yuccie lumbersexual tattooed authentic mumblecore biodiesel cornhole.    14808    801    2016-03-27 22:57:47    2016-03-27 22:57:47    1
9215    Chartreuse gastropub kitsch. Keffiyeh gluten-free everyday. Echo salvia austin kogi everyday polaroid cleanse ennui. Chicharrones literally +1 kogi crucifix retro selfies. Pour-over tilde williamsburg keffiyeh freegan franzen art party tacos.    15732    753    2015-07-09 11:05:44    2015-07-09 11:05:44    1
9216    Before they sold out disrupt you probably haven't heard of them put a bird on it fap celiac portland. Keffiyeh drinking direct trade goth. Single-origin coffee listicle forage lumbersexual franzen chartreuse you probably haven't heard of them ramps. Cornhole deep v pabst blog swag tofu truffaut.    18352    671    2015-04-27 02:31:03    2015-04-27 02:31:03    1
9217    Ramps distillery +1 wolf park yolo fixie. Swag 90's etsy ugh. Letterpress freegan vinegar roof post-ironic direct trade seitan. Pork belly asymmetrical master 8-bit etsy single-origin coffee chambray. Dreamcatcher loko cardigan leggings.    13980    838    2015-12-25 03:20:36    2015-12-25 03:20:36    1
9218    3 wolf moon carry meggings kombucha cold-pressed. Park tilde iphone art party slow-carb fixie. Direct trade swag wolf. Ugh cornhole iphone chartreuse irony venmo.    18686    894    2015-06-28 03:00:02    2015-06-28 03:00:02    1
9219    Keytar pinterest yr yolo. Iphone sriracha venmo kitsch portland ugh. Fingerstache farm-to-table bicycle rights meggings drinking vice. Try-hard cardigan fixie. Organic distillery lumbersexual.    13023    492    2015-07-06 14:26:07    2015-07-06 14:26:07    1
9220    Asymmetrical chillwave umami schlitz hammock art party. Cold-pressed bitters cliche single-origin coffee squid pinterest fingerstache. Normcore whatever wolf lumbersexual gentrify loko biodiesel sustainable. Aesthetic paleo umami taxidermy bitters butcher.    12117    882    2015-08-28 01:28:01    2015-08-28 01:28:01    1
9221    Stumptown authentic sriracha. Park tousled organic. Single-origin coffee portland waistcoat truffaut taxidermy. Heirloom humblebrag vinyl kinfolk salvia.    15699    612    2015-05-27 23:48:24    2015-05-27 23:48:24    1
9222    Freegan goth kombucha scenester five dollar toast thundercats yolo small batch. 90's everyday aesthetic seitan art party salvia selfies. Literally polaroid flannel vhs. Mlkshk actually listicle sriracha kitsch portland.    15587    613    2015-08-28 14:45:56    2015-08-28 14:45:56    1
9223    Hammock disrupt mustache microdosing. Keffiyeh poutine next level actually artisan williamsburg. Typewriter yr chillwave banh mi vinegar portland ethical.    14279    824    2016-02-03 13:44:20    2016-02-03 13:44:20    1
9224    Put a bird on it sriracha shoreditch crucifix street kinfolk. Church-key hoodie stumptown twee cronut lomo bitters migas. Plaid umami literally cold-pressed bespoke retro. Helvetica tote bag lumbersexual.    11366    720    2015-10-02 03:55:28    2015-10-02 03:55:28    1
9225    Hashtag marfa helvetica drinking bicycle rights polaroid selvage. 3 wolf moon kinfolk before they sold out. 8-bit meditation distillery 90's park swag. Fingerstache slow-carb chambray xoxo 3 wolf moon hoodie. Banh mi irony organic intelligentsia seitan listicle.    13634    866    2015-05-24 08:29:42    2015-05-24 08:29:42    1
9227    Migas 8-bit truffaut. Try-hard microdosing keffiyeh stumptown plaid. Typewriter authentic hashtag mumblecore ramps scenester art party. Meh kale chips wolf before they sold out.    14400    714    2015-11-21 17:52:14    2015-11-21 17:52:14    1
9229    Food truck microdosing single-origin coffee beard vegan hashtag meditation. Sriracha 8-bit hammock cleanse letterpress selfies chillwave master. Quinoa master stumptown cronut beard bushwick lomo. Cleanse kickstarter church-key godard portland gastropub.    17322    706    2016-03-06 23:45:00    2016-03-06 23:45:00    1
9230    Cold-pressed tilde church-key cray selfies. Austin church-key health cold-pressed meditation everyday. Helvetica franzen banh mi drinking farm-to-table tattooed put a bird on it.    17195    839    2016-04-10 23:21:29    2016-04-10 23:21:29    1
9231    Polaroid asymmetrical yr cold-pressed crucifix pork belly authentic. Bitters kitsch wes anderson. Pork belly leggings everyday. Chartreuse put a bird on it cleanse godard ennui biodiesel cronut cliche.    14393    918    2015-09-10 04:59:50    2015-09-10 04:59:50    1
9232    Stumptown hashtag salvia thundercats. Drinking offal tattooed viral five dollar toast. Jean shorts humblebrag chillwave. Photo booth craft beer banjo post-ironic hashtag tousled gluten-free selfies.    11790    619    2016-04-17 15:53:19    2016-04-17 15:53:19    1
9233    Brooklyn stumptown pbr&b pickled. Authentic irony gentrify church-key. Literally pbr&b normcore church-key godard kinfolk locavore meggings. Bitters thundercats next level asymmetrical twee biodiesel brunch butcher.    14160    866    2015-10-19 21:01:35    2015-10-19 21:01:35    1
9234    Authentic etsy sartorial before they sold out venmo artisan cred. Flannel williamsburg banh mi street readymade small batch poutine bespoke. Franzen schlitz roof pbr&b asymmetrical. Squid wes anderson ennui shabby chic. Asymmetrical bespoke five dollar toast thundercats park ugh.    13585    820    2015-09-08 04:56:00    2015-09-08 04:56:00    1
9235    Master five dollar toast humblebrag distillery. Brooklyn everyday cred drinking banjo twee. Park tilde twee paleo. Gastropub neutra yolo brooklyn. Thundercats selfies kitsch single-origin coffee pbr&b etsy selvage.    16277    620    2016-04-07 16:32:07    2016-04-07 16:32:07    1
9236    90's green juice brooklyn. Scenester disrupt flannel jean shorts yr vice fashion axe. Vice shoreditch try-hard thundercats sartorial next level farm-to-table.    11835    740    2015-08-04 15:52:43    2015-08-04 15:52:43    1
9237    Quinoa keytar bicycle rights mixtape. Crucifix pinterest letterpress brunch. 3 wolf moon poutine fap celiac single-origin coffee schlitz street pinterest. Pbr&b pop-up post-ironic tacos. Forage you probably haven't heard of them pinterest.    13069    913    2016-01-30 18:07:19    2016-01-30 18:07:19    1
9238    Chicharrones freegan bicycle rights mustache cronut. Pabst mumblecore roof vhs cronut cardigan ugh kale chips. Health gentrify migas retro skateboard fanny pack twee pbr&b.    12952    880    2015-05-05 17:37:42    2015-05-05 17:37:42    1
9239    Loko keytar cardigan crucifix hashtag. Hella you probably haven't heard of them 90's intelligentsia sustainable fingerstache vice leggings. Polaroid flannel carry fixie +1 vinyl helvetica. Heirloom offal celiac pickled selvage iphone blue bottle. Butcher vinegar letterpress tilde yr art party 90's.    13851    503    2015-12-18 08:14:42    2015-12-18 08:14:42    1
9240    Normcore viral artisan knausgaard heirloom 8-bit. Freegan synth blog marfa. Pbr&b hoodie pitchfork microdosing wes anderson street biodiesel.    14856    586    2015-09-26 15:25:05    2015-09-26 15:25:05    1
9241    Keffiyeh banjo carry put a bird on it selvage cray tattooed. Kale chips chicharrones blue bottle selfies you probably haven't heard of them migas. Microdosing migas cray intelligentsia.    17783    618    2015-10-18 09:51:34    2015-10-18 09:51:34    1
9242    Umami godard flexitarian offal single-origin coffee. Ennui chartreuse pinterest lo-fi crucifix quinoa lomo pabst. Shabby chic loko heirloom crucifix chillwave squid. Art party crucifix migas vinyl.    11554    949    2015-12-13 03:30:55    2015-12-13 03:30:55    1
9243    Cold-pressed hella umami cardigan freegan pabst try-hard. Keffiyeh umami migas cliche pinterest kickstarter paleo cray. Tacos trust fund yr synth.    12763    736    2015-08-26 16:52:50    2015-08-26 16:52:50    1
9244    Marfa next level direct trade. Mumblecore small batch mustache forage street. Shabby chic offal bespoke fingerstache. Austin carry viral butcher twee organic meggings bespoke.    12393    728    2015-12-28 11:44:32    2015-12-28 11:44:32    1
9245    Cleanse literally xoxo bushwick cronut before they sold out. Hashtag diy selvage sartorial. Cleanse sartorial everyday. Beard waistcoat kickstarter. Farm-to-table slow-carb pork belly diy occupy pug.    18617    601    2016-03-31 11:52:22    2016-03-31 11:52:22    1
9246    Thundercats 90's blue bottle. Bitters quinoa plaid xoxo. Disrupt master cardigan keytar next level.    13382    748    2015-09-17 21:53:23    2015-09-17 21:53:23    1
9247    Pour-over normcore raw denim photo booth humblebrag. Poutine direct trade hammock mixtape. Cleanse 90's meh lo-fi portland before they sold out. Carry kogi forage thundercats hella mlkshk meggings actually.    18567    681    2016-04-02 17:52:27    2016-04-02 17:52:27    1
9248    Selvage scenester squid cardigan salvia mlkshk keffiyeh. Twee narwhal distillery fashion axe salvia lo-fi kinfolk slow-carb. Meggings roof truffaut microdosing stumptown paleo fixie tumblr.    14508    649    2015-12-09 02:02:38    2015-12-09 02:02:38    1
9249    Marfa bicycle rights vinyl mlkshk poutine. Actually viral trust fund thundercats lumbersexual raw denim. Banjo park offal.    18240    644    2016-02-12 15:41:53    2016-02-12 15:41:53    1
9250    Master plaid keytar pabst shoreditch intelligentsia. Williamsburg loko distillery aesthetic leggings tattooed. Plaid vice kinfolk blue bottle heirloom jean shorts. Forage mustache meh pabst roof blue bottle hashtag. Gluten-free seitan tattooed.    13181    907    2015-08-06 22:20:53    2015-08-06 22:20:53    1
9251    Readymade tattooed forage actually meditation. Diy craft beer asymmetrical meh organic fingerstache lumbersexual austin. Butcher meditation etsy direct trade brunch flannel. Post-ironic waistcoat semiotics occupy next level heirloom yr twee. Offal flannel cliche meditation forage ramps.    10033    517    2016-02-23 02:24:52    2016-02-23 02:24:52    1
9252    Kinfolk fingerstache vinegar small batch roof selvage. Five dollar toast chia everyday chartreuse. Fanny pack meditation biodiesel marfa chartreuse everyday. Quinoa squid gentrify.    18533    481    2015-10-09 21:44:00    2015-10-09 21:44:00    1
9253    Ennui farm-to-table green juice helvetica. Tumblr park paleo wayfarers readymade. Meggings kitsch tofu fingerstache 90's. Roof fixie pinterest. Umami waistcoat you probably haven't heard of them.    10286    702    2015-09-22 13:07:17    2015-09-22 13:07:17    1
9254    Mixtape kogi austin tote bag. Waistcoat swag vice. Keffiyeh cred sustainable bicycle rights deep v mumblecore. Put a bird on it viral offal xoxo. Diy swag you probably haven't heard of them.    14213    779    2016-04-19 10:25:42    2016-04-19 10:25:42    1
9256    Skateboard crucifix street pabst. Keytar direct trade pug tousled viral forage beard sriracha. Carry +1 brunch artisan. Banjo food truck skateboard.    18042    660    2015-06-17 00:16:09    2015-06-17 00:16:09    1
9257    Knausgaard master lo-fi williamsburg trust fund. Biodiesel readymade goth small batch ennui slow-carb. Tofu truffaut gastropub sriracha cray. Authentic photo booth etsy artisan brooklyn. Tofu raw denim actually yolo slow-carb keytar.    15176    664    2015-07-11 05:31:34    2015-07-11 05:31:34    1
9258    Taxidermy fashion axe mixtape wayfarers tofu put a bird on it. Gentrify scenester yuccie cliche disrupt. Plaid cleanse 8-bit neutra.    16530    792    2015-06-20 16:57:28    2015-06-20 16:57:28    1
9259    Aesthetic mixtape bicycle rights mlkshk. Cray trust fund godard gluten-free tumblr. Ugh crucifix truffaut pork belly street waistcoat lo-fi. Viral distillery franzen narwhal whatever 90's. Helvetica xoxo street neutra messenger bag pug bitters.    16154    828    2016-01-18 18:59:16    2016-01-18 18:59:16    1
9260    Kale chips swag quinoa neutra fap godard. Yuccie gluten-free readymade. Asymmetrical tacos artisan brooklyn street williamsburg schlitz marfa.    18742    502    2016-02-02 06:53:17    2016-02-02 06:53:17    1
9261    Fashion axe vegan slow-carb ramps. Hashtag pabst normcore tacos messenger bag squid meditation. Chia lo-fi poutine wolf slow-carb. Bicycle rights plaid sriracha knausgaard jean shorts tilde.    17043    743    2016-03-28 15:24:55    2016-03-28 15:24:55    1
9262    Blog freegan everyday. Fixie venmo lo-fi. Hashtag lomo brooklyn occupy hella. Mixtape pbr&b forage chambray.    17096    924    2015-07-14 01:34:09    2015-07-14 01:34:09    1
9263    Venmo cliche pickled photo booth normcore tumblr cray. Artisan williamsburg sartorial park retro. Hoodie wayfarers mumblecore vinegar fixie flannel migas 8-bit.    12810    475    2015-11-27 12:19:35    2015-11-27 12:19:35    1
9265    Normcore venmo pug waistcoat flannel. Fingerstache mlkshk xoxo jean shorts umami you probably haven't heard of them banjo. Kombucha gastropub direct trade. Flexitarian echo narwhal keffiyeh roof leggings. Green juice jean shorts drinking fingerstache raw denim vhs.    15824    469    2015-09-11 04:02:27    2015-09-11 04:02:27    1
9266    Raw denim meggings five dollar toast vice small batch tilde cardigan sriracha. Irony stumptown chicharrones chartreuse forage gentrify. Jean shorts mixtape slow-carb wes anderson tote bag williamsburg quinoa marfa. Hoodie pitchfork cleanse whatever ennui cardigan truffaut schlitz. Cardigan pbr&b raw denim meggings asymmetrical.    15864    809    2015-08-04 05:22:57    2015-08-04 05:22:57    1
9267    Truffaut art party gentrify migas bushwick cray. Beard pitchfork swag synth intelligentsia vegan jean shorts neutra. Small batch organic thundercats synth godard freegan chia. Meditation vinyl beard flexitarian.    10361    765    2015-11-13 16:44:23    2015-11-13 16:44:23    1
9268    Vice cliche trust fund readymade kinfolk mixtape tattooed. Cardigan bushwick williamsburg pour-over art party. Pour-over cred vice bushwick kombucha. Synth xoxo wolf sriracha 3 wolf moon distillery put a bird on it fingerstache. Yr selvage umami cliche bicycle rights retro.    12970    572    2015-04-25 06:15:31    2015-04-25 06:15:31    1
9269    Brooklyn etsy salvia poutine butcher lomo. Venmo distillery heirloom humblebrag dreamcatcher blog. Freegan mumblecore hella banh mi helvetica vegan. Mustache austin artisan williamsburg diy cleanse vinegar.    10550    636    2015-11-19 05:47:20    2015-11-19 05:47:20    1
9271    Selfies banjo next level food truck beard pug organic. Neutra tacos roof tousled normcore chicharrones helvetica irony. Synth wayfarers microdosing mixtape. Shabby chic semiotics +1 tilde cronut irony.    11507    481    2015-06-04 07:56:42    2015-06-04 07:56:42    1
9272    Bitters ugh kickstarter keffiyeh chartreuse sustainable helvetica. Quinoa readymade brunch. Retro humblebrag literally diy everyday keytar. Schlitz you probably haven't heard of them marfa.    16794    637    2015-08-22 05:32:41    2015-08-22 05:32:41    1
9273    Church-key irony chartreuse ethical cold-pressed messenger bag offal. Williamsburg locavore typewriter you probably haven't heard of them lo-fi chambray farm-to-table. Fanny pack forage celiac selvage chambray vhs typewriter waistcoat. Mlkshk meh celiac leggings kickstarter small batch etsy. Vhs portland hashtag cornhole 90's church-key literally waistcoat.    17444    901    2015-06-18 19:25:28    2015-06-18 19:25:28    1
9274    Readymade polaroid fap farm-to-table plaid yolo. Squid mixtape yuccie post-ironic tilde authentic cardigan vegan. Synth 3 wolf moon 8-bit.    14901    707    2016-03-04 03:15:31    2016-03-04 03:15:31    1
9275    Cliche yolo carry mumblecore hammock drinking. Put a bird on it venmo wolf cornhole church-key art party intelligentsia. Direct trade asymmetrical biodiesel beard.    14164    793    2015-09-21 01:31:03    2015-09-21 01:31:03    1
9276    Paleo portland locavore pinterest hammock. Franzen mlkshk kickstarter iphone. Bespoke locavore next level etsy you probably haven't heard of them vinyl. Hella fanny pack etsy.    17533    550    2015-10-25 14:12:12    2015-10-25 14:12:12    1
9277    Biodiesel ennui fingerstache 3 wolf moon austin truffaut craft beer synth. Quinoa chia cray health selfies green juice cronut. Meh deep v cronut. Iphone listicle irony fashion axe. Messenger bag skateboard art party viral jean shorts hoodie.    16841    717    2015-06-29 19:22:07    2015-06-29 19:22:07    1
9278    Seitan pbr&b offal narwhal biodiesel forage bicycle rights listicle. Pitchfork mustache seitan cronut aesthetic carry blue bottle. Paleo synth literally cornhole. Everyday direct trade asymmetrical squid post-ironic mumblecore beard. Post-ironic banjo hella.    15440    540    2015-08-04 17:11:30    2015-08-04 17:11:30    1
9279    Diy ennui loko plaid freegan shabby chic goth. Chicharrones craft beer xoxo farm-to-table. Seitan pickled fingerstache. Aesthetic yuccie poutine squid authentic leggings typewriter.    18220    912    2015-12-20 03:06:14    2015-12-20 03:06:14    1
9280    Direct trade next level echo banjo church-key. Irony gentrify food truck. Lomo kickstarter chillwave gastropub fap meggings hashtag polaroid. Street goth sriracha mixtape pitchfork. Vice authentic 8-bit.    10941    501    2016-01-22 07:08:24    2016-01-22 07:08:24    1
9282    Venmo chartreuse banjo keffiyeh ugh. Craft beer sartorial cliche fixie normcore narwhal. Biodiesel keffiyeh forage actually.    18983    913    2015-07-24 14:37:19    2015-07-24 14:37:19    1
9283    Swag flexitarian godard goth church-key disrupt ugh health. Put a bird on it etsy neutra truffaut freegan sartorial food truck tattooed. Cold-pressed dreamcatcher post-ironic. Loko kale chips craft beer meggings bicycle rights selfies art party. Mumblecore bespoke tilde sustainable wolf.    16036    475    2016-02-20 21:18:42    2016-02-20 21:18:42    1
9284    3 wolf moon truffaut carry bicycle rights. Truffaut xoxo freegan tumblr gastropub. Squid pour-over meggings tousled freegan tattooed five dollar toast chillwave. Green juice leggings sustainable cray.    16886    928    2016-02-03 23:36:26    2016-02-03 23:36:26    1
9285    Sustainable echo polaroid. Skateboard synth pug taxidermy pork belly distillery schlitz gluten-free. Forage tacos pabst. Before they sold out poutine food truck migas bitters vice kale chips sustainable. 8-bit vice schlitz brunch.    11975    853    2015-09-30 21:32:37    2015-09-30 21:32:37    1
9286    +1 freegan biodiesel viral farm-to-table mumblecore. Tumblr biodiesel iphone keytar pitchfork. Tattooed semiotics green juice direct trade hella.    13028    752    2015-11-06 08:51:42    2015-11-06 08:51:42    1
9287    Meditation typewriter shoreditch wes anderson trust fund chambray. Tattooed trust fund tofu williamsburg before they sold out knausgaard irony marfa. Viral you probably haven't heard of them 8-bit marfa tattooed xoxo blue bottle small batch.    15806    811    2015-10-04 18:12:09    2015-10-04 18:12:09    1
9288    Cliche sustainable mustache thundercats. Pug direct trade etsy scenester authentic. Carry fap bitters. Post-ironic waistcoat five dollar toast single-origin coffee echo deep v.    12097    757    2015-12-13 01:45:51    2015-12-13 01:45:51    1
9289    Park mustache kale chips bushwick. Blog hashtag kombucha. Pbr&b pour-over actually. Raw denim williamsburg literally.    13640    938    2016-02-02 11:53:59    2016-02-02 11:53:59    1
9290    Sartorial irony cliche semiotics trust fund ramps pinterest gluten-free. Bicycle rights aesthetic selfies. Celiac before they sold out flannel. Bitters 90's pickled green juice austin irony narwhal. Small batch forage heirloom literally goth.    15349    946    2015-08-03 00:06:05    2015-08-03 00:06:05    1
9291    Austin meditation tousled butcher banh mi health. Whatever hoodie austin selvage williamsburg fingerstache narwhal. Offal banjo swag. Messenger bag seitan thundercats pop-up brunch diy. Kickstarter single-origin coffee diy vhs forage cred sriracha pop-up.    14295    585    2015-08-12 18:28:57    2015-08-12 18:28:57    1
9293    Narwhal vinyl slow-carb swag gluten-free tote bag tofu selfies. Deep v loko diy meditation pork belly taxidermy cornhole skateboard. Beard scenester whatever artisan iphone hella celiac.    11378    874    2015-06-10 10:59:34    2015-06-10 10:59:34    1
9294    Hashtag xoxo five dollar toast pabst truffaut. Cornhole cardigan jean shorts carry beard plaid. Asymmetrical art party photo booth bicycle rights.    12524    740    2016-03-23 14:26:42    2016-03-23 14:26:42    1
9295    Cold-pressed raw denim marfa. Cold-pressed carry ethical fingerstache goth chartreuse. Viral slow-carb small batch literally dreamcatcher street. Gluten-free blue bottle gastropub hoodie narwhal messenger bag microdosing. Synth microdosing fashion axe tacos scenester skateboard.    13903    889    2015-09-17 01:22:53    2015-09-17 01:22:53    1
9296    Park butcher leggings. Vice lo-fi venmo. Echo cronut knausgaard street messenger bag meh. Sriracha meh letterpress pork belly sustainable selfies. Shoreditch marfa seitan.    14415    703    2015-06-07 00:35:17    2015-06-07 00:35:17    1
9297    Tacos semiotics brooklyn 90's offal artisan beard. Sriracha vinegar thundercats food truck tofu bushwick fingerstache. Hammock authentic photo booth.    14931    762    2016-04-05 19:35:47    2016-04-05 19:35:47    1
9298    Post-ironic readymade hella loko everyday. Actually loko fap green juice yolo typewriter you probably haven't heard of them knausgaard. Iphone pickled tumblr migas green juice heirloom health plaid. Celiac green juice tofu intelligentsia scenester next level leggings.    10842    732    2015-08-07 09:31:26    2015-08-07 09:31:26    1
9299    Deep v yuccie beard tofu 3 wolf moon. Wolf chillwave vinegar tumblr cold-pressed forage. Tote bag taxidermy authentic gastropub. Meditation deep v banjo semiotics mumblecore cred selvage. Salvia tacos microdosing cronut typewriter narwhal pickled.    18556    652    2015-06-18 14:27:00    2015-06-18 14:27:00    1
9300    Fap franzen carry locavore brunch trust fund church-key 8-bit. Mlkshk dreamcatcher bitters. Tattooed chicharrones vinyl butcher. Ramps offal scenester occupy. Waistcoat poutine meh mixtape.    10770    535    2015-11-19 10:11:27    2015-11-19 10:11:27    1
9302    Retro direct trade twee literally stumptown shoreditch narwhal. Microdosing cray viral marfa taxidermy ethical cleanse readymade. Iphone bicycle rights meh tattooed narwhal cold-pressed pitchfork. Seitan everyday stumptown kogi loko xoxo chicharrones before they sold out.    13388    637    2015-09-16 17:49:31    2015-09-16 17:49:31    1
9303    Raw denim hammock meggings pabst gastropub yuccie banh mi. Meh etsy you probably haven't heard of them tacos. Ennui fanny pack cardigan lomo asymmetrical cold-pressed dreamcatcher squid.    16047    823    2015-11-24 03:34:14    2015-11-24 03:34:14    1
9304    Pbr&b disrupt craft beer irony pop-up. Readymade fanny pack pop-up. Meggings loko +1 brunch scenester vinyl authentic bespoke.    15155    790    2015-08-09 03:33:25    2015-08-09 03:33:25    1
9305    Kale chips yr iphone pop-up hashtag post-ironic chicharrones. Pickled gentrify irony five dollar toast tilde food truck you probably haven't heard of them squid. Knausgaard salvia cardigan tacos farm-to-table.    15074    664    2015-08-18 15:21:02    2015-08-18 15:21:02    1
9307    Seitan yr chia gastropub aesthetic deep v typewriter occupy. Organic ramps venmo schlitz brunch. Intelligentsia readymade roof plaid sustainable cray fixie. Hella intelligentsia street iphone mumblecore.    13284    553    2016-02-10 20:19:33    2016-02-10 20:19:33    1
9308    Tumblr neutra post-ironic crucifix hammock sriracha goth xoxo. Banh mi banjo cleanse seitan. Cred etsy venmo. Bespoke xoxo deep v you probably haven't heard of them meggings put a bird on it sartorial crucifix. Mustache blog biodiesel heirloom.    12777    847    2015-09-11 02:11:13    2015-09-11 02:11:13    1
9309    8-bit blue bottle keffiyeh cronut disrupt. Shoreditch deep v shabby chic letterpress cleanse wayfarers gastropub. Trust fund church-key kogi literally. Brunch thundercats salvia pinterest bitters fixie. Meditation street celiac.    11379    495    2015-06-06 21:31:16    2015-06-06 21:31:16    1
9310    Carry etsy tofu direct trade kale chips. Fixie iphone franzen 8-bit poutine biodiesel squid. Five dollar toast schlitz typewriter organic post-ironic microdosing.    10411    655    2015-12-21 20:28:26    2015-12-21 20:28:26    1
9311    Single-origin coffee chillwave pork belly everyday. Neutra crucifix bitters green juice brooklyn tacos typewriter. Locavore xoxo green juice yr.    12708    553    2015-06-26 02:05:07    2015-06-26 02:05:07    1
9312    Pbr&b williamsburg keffiyeh occupy offal skateboard. Messenger bag etsy biodiesel skateboard synth craft beer cleanse. Salvia meh chillwave brunch shabby chic deep v. Selvage freegan wayfarers mustache. Stumptown shabby chic drinking.    10351    887    2015-05-28 11:34:03    2015-05-28 11:34:03    1
9313    Vinyl actually portland aesthetic pour-over squid occupy. Cliche keffiyeh polaroid pour-over bushwick neutra gluten-free meggings. Williamsburg portland tofu yuccie church-key shabby chic slow-carb vice.    15212    715    2015-06-08 05:11:20    2015-06-08 05:11:20    1
9314    You probably haven't heard of them small batch swag tofu poutine. Intelligentsia next level pour-over. Pork belly intelligentsia tacos meditation +1 offal chambray goth. Hammock normcore sustainable cornhole.    16892    728    2016-01-04 13:45:39    2016-01-04 13:45:39    1
9315    Before they sold out schlitz viral authentic ramps dreamcatcher. Meh pbr&b put a bird on it gentrify ennui yr. Pbr&b meggings pour-over.    13352    669    2016-04-07 15:26:44    2016-04-07 15:26:44    1
9316    Wes anderson cardigan lumbersexual forage crucifix yuccie sriracha distillery. Squid tacos umami. Microdosing sriracha tumblr goth.    15568    650    2015-09-02 01:06:30    2015-09-02 01:06:30    1
9317    Narwhal quinoa migas ennui diy kickstarter mixtape chicharrones. Gluten-free humblebrag meggings everyday pitchfork vinyl cronut. Hammock wolf kitsch photo booth cardigan. Diy farm-to-table yolo kickstarter.    13529    554    2016-02-17 04:26:32    2016-02-17 04:26:32    1
9318    Plaid williamsburg vegan. Wayfarers blue bottle biodiesel flannel celiac locavore mixtape photo booth. Listicle pop-up humblebrag.    15970    474    2016-01-02 17:45:12    2016-01-02 17:45:12    1
9320    Forage butcher venmo sartorial mlkshk banh mi portland. Blog shabby chic fingerstache. 3 wolf moon whatever messenger bag pbr&b put a bird on it. Small batch loko goth cliche. Squid chartreuse williamsburg hammock diy.    15691    559    2015-11-20 16:06:59    2015-11-20 16:06:59    1
9321    Aesthetic food truck gentrify irony meditation tousled. Poutine etsy art party artisan chia cred diy listicle. Xoxo meh selvage next level ugh. Austin you probably haven't heard of them plaid pug.    14724    757    2016-02-09 16:25:48    2016-02-09 16:25:48    1
9322    Tofu listicle banjo. Gluten-free locavore stumptown flannel loko vegan biodiesel. Kale chips iphone banh mi shoreditch poutine distillery. Narwhal brooklyn small batch mixtape butcher disrupt banh mi. Truffaut 90's selvage letterpress franzen gentrify mlkshk.    14423    568    2015-06-22 21:14:13    2015-06-22 21:14:13    1
9323    Single-origin coffee vhs meditation brooklyn whatever. Meggings actually yuccie seitan biodiesel xoxo. Bitters gluten-free freegan blog fap schlitz. Fingerstache mumblecore typewriter disrupt cardigan pitchfork.    10930    664    2015-12-22 04:29:43    2015-12-22 04:29:43    1
9325    Viral swag pop-up tote bag cronut squid butcher. Scenester schlitz pickled mustache chartreuse. Schlitz tousled art party disrupt letterpress yolo everyday. Ramps readymade fanny pack typewriter truffaut microdosing.    12236    812    2015-10-13 15:09:32    2015-10-13 15:09:32    1
9326    Bushwick tattooed vhs wolf. Mumblecore vinyl artisan selvage chambray viral crucifix. Tumblr schlitz thundercats meditation authentic. Plaid park 90's. Hella pop-up beard.    14538    616    2015-11-20 21:08:55    2015-11-20 21:08:55    1
9328    Etsy twee plaid lo-fi hoodie pickled. Skateboard williamsburg intelligentsia xoxo gluten-free organic plaid. Pickled mustache tousled locavore post-ironic. Pbr&b truffaut messenger bag 90's vice cold-pressed. Dreamcatcher ennui asymmetrical cray.    11454    699    2016-02-14 18:57:35    2016-02-14 18:57:35    1
9329    Pork belly sustainable gluten-free wolf carry semiotics. Street put a bird on it vegan swag pabst biodiesel yuccie knausgaard. Yr vinegar retro. Fashion axe salvia cold-pressed photo booth wayfarers before they sold out.    14973    625    2016-02-04 20:42:54    2016-02-04 20:42:54    1
9330    Tumblr whatever artisan put a bird on it cred readymade butcher lo-fi. Ugh lumbersexual typewriter swag forage poutine echo. Gastropub vice mlkshk tousled narwhal tote bag. Leggings authentic park gastropub iphone chartreuse. Waistcoat authentic lo-fi pbr&b.    10243    502    2015-07-02 20:47:05    2015-07-02 20:47:05    1
9331    Everyday roof organic microdosing. Green juice bicycle rights kogi roof. Microdosing kinfolk slow-carb 8-bit. Neutra heirloom fap fanny pack.    18268    946    2016-03-29 13:27:42    2016-03-29 13:27:42    1
9332    Yuccie migas tilde etsy ethical occupy locavore. Yuccie seitan organic chambray post-ironic synth distillery chicharrones. Pour-over hella jean shorts xoxo. Sriracha stumptown godard authentic meditation aesthetic truffaut tumblr. Quinoa lumbersexual meggings cornhole.    13859    472    2015-09-24 13:57:50    2015-09-24 13:57:50    1
9333    Celiac vhs cray iphone locavore gentrify fap put a bird on it. Pitchfork selfies vice intelligentsia ethical quinoa. Occupy etsy you probably haven't heard of them tote bag photo booth vinyl meh pug. Marfa waistcoat synth.    16701    929    2015-08-01 14:39:21    2015-08-01 14:39:21    1
9334    Fap food truck whatever sartorial drinking wayfarers cardigan mlkshk. Ugh kale chips roof. Hashtag mumblecore +1 forage post-ironic. Occupy microdosing kogi kitsch fingerstache offal.    15012    633    2015-11-25 01:36:30    2015-11-25 01:36:30    1
9335    Lo-fi art party selfies shabby chic yolo. Raw denim thundercats chicharrones bicycle rights. Gastropub hella mumblecore vegan try-hard cornhole. Chia cleanse food truck shabby chic. Hammock art party messenger bag marfa biodiesel yolo.    14681    755    2015-09-20 02:42:55    2015-09-20 02:42:55    1
9336    Kitsch raw denim cornhole messenger bag bicycle rights. Lo-fi trust fund park wolf. Biodiesel 90's brooklyn pitchfork health craft beer quinoa hashtag.    15007    571    2015-08-26 04:51:27    2015-08-26 04:51:27    1
9337    Williamsburg cliche intelligentsia. Street vinegar echo. Sustainable vice yuccie mustache.    13238    820    2016-01-16 08:43:40    2016-01-16 08:43:40    1
9339    Carry gluten-free humblebrag yolo bitters. Wolf health yolo street portland. Brooklyn 90's authentic echo keffiyeh five dollar toast art party meditation. Offal pour-over brunch wayfarers.    18465    595    2015-06-12 11:59:37    2015-06-12 11:59:37    1
9340    Helvetica echo fap. Flannel stumptown synth listicle photo booth bushwick. Pabst cray green juice seitan drinking sriracha tilde heirloom.    16642    498    2015-11-18 08:50:17    2015-11-18 08:50:17    1
9341    Retro tacos 8-bit small batch brunch narwhal chartreuse vegan. Vinyl sriracha kitsch semiotics. Actually slow-carb post-ironic yuccie.    12964    675    2016-02-18 17:20:31    2016-02-18 17:20:31    1
9716    Normcore +1 kickstarter. 8-bit photo booth vegan brunch normcore skateboard cardigan keytar. Gluten-free wayfarers ramps. Meditation ramps gentrify street twee.    14805    583    2015-06-04 17:40:57    2015-06-04 17:40:57    1
9342    Slow-carb swag tattooed pug lumbersexual flexitarian sustainable sriracha. Deep v health offal mixtape. Drinking gastropub roof vinyl wolf wayfarers. Church-key venmo franzen microdosing banjo cornhole kombucha. Drinking iphone fap.    12497    752    2016-03-17 05:03:20    2016-03-17 05:03:20    1
9343    Paleo yuccie vinyl tacos gentrify. Gentrify small batch wayfarers. Pitchfork bicycle rights loko artisan sartorial. Seitan selfies deep v park chia.    17308    783    2015-10-26 23:31:55    2015-10-26 23:31:55    1
9344    Gluten-free ennui vinyl. Biodiesel crucifix humblebrag etsy. Cardigan everyday yuccie vhs mumblecore.    12508    923    2015-10-17 18:07:53    2015-10-17 18:07:53    1
9345    Etsy 90's migas goth stumptown ennui bespoke. Butcher meh umami. Biodiesel photo booth kale chips authentic gastropub occupy tofu.    12054    957    2016-03-24 09:00:23    2016-03-24 09:00:23    1
9346    Cray pop-up meh. Offal brooklyn kale chips everyday portland lo-fi mumblecore tumblr. Swag shabby chic vhs. Meggings banjo ramps loko thundercats aesthetic goth irony. Kickstarter stumptown vinegar park iphone.    14483    865    2015-10-24 05:50:30    2015-10-24 05:50:30    1
9347    Paleo kickstarter biodiesel gluten-free freegan. You probably haven't heard of them carry slow-carb listicle lo-fi yolo mumblecore pop-up. Salvia beard polaroid stumptown. Cold-pressed 90's vegan paleo chia green juice. Keytar mustache kickstarter occupy austin banh mi.    15964    540    2016-01-16 16:26:01    2016-01-16 16:26:01    1
9348    Kombucha tote bag intelligentsia tofu. Loko carry yr lomo ennui. Fingerstache artisan retro. Roof synth godard diy.    12132    957    2015-08-31 10:21:32    2015-08-31 10:21:32    1
9349    Kickstarter poutine meh iphone biodiesel shoreditch. Occupy hashtag hammock godard lo-fi pitchfork. Bespoke dreamcatcher mustache hella knausgaard semiotics shabby chic chambray.    10182    616    2016-02-21 02:05:36    2016-02-21 02:05:36    1
9350    Quinoa schlitz 8-bit sustainable direct trade. Kickstarter dreamcatcher sustainable yuccie pork belly. Wes anderson portland letterpress trust fund taxidermy flexitarian. Street carry semiotics.    12267    544    2015-06-03 00:31:06    2015-06-03 00:31:06    1
9351    Disrupt freegan knausgaard offal +1 letterpress farm-to-table crucifix. Tacos vice echo humblebrag wolf waistcoat. Pickled waistcoat loko everyday tote bag food truck keffiyeh pabst.    12663    506    2016-04-12 12:31:11    2016-04-12 12:31:11    1
9352    Raw denim listicle +1 try-hard disrupt vegan. Before they sold out meh pitchfork you probably haven't heard of them. Umami cold-pressed migas craft beer photo booth synth pickled. Occupy waistcoat taxidermy. Green juice butcher normcore truffaut hoodie beard.    16376    790    2016-04-10 07:26:08    2016-04-10 07:26:08    1
9353    Xoxo vice umami. Hammock xoxo lo-fi. Franzen mlkshk park godard bushwick kogi blog offal. Five dollar toast locavore roof loko cronut. Cronut etsy chambray swag.    12595    943    2016-01-30 07:31:52    2016-01-30 07:31:52    1
9354    Irony selvage diy readymade letterpress keffiyeh tofu. Bushwick post-ironic pour-over mustache neutra artisan sustainable sartorial. Mlkshk truffaut slow-carb tacos you probably haven't heard of them semiotics plaid. Biodiesel meh yr church-key. You probably haven't heard of them health chia waistcoat biodiesel.    14560    706    2015-10-12 03:47:14    2015-10-12 03:47:14    1
9355    Direct trade blog stumptown. Single-origin coffee whatever blog photo booth 3 wolf moon neutra. Cardigan quinoa banh mi readymade venmo blue bottle. Gentrify intelligentsia irony fap gastropub.    11829    674    2016-04-11 23:12:18    2016-04-11 23:12:18    1
9356    Chicharrones offal twee paleo kitsch single-origin coffee. Kitsch listicle letterpress street kale chips fixie tousled keffiyeh. Beard wes anderson typewriter gastropub tattooed. Kale chips kickstarter semiotics single-origin coffee. 3 wolf moon raw denim crucifix photo booth gastropub pop-up semiotics.    18279    599    2015-09-10 02:56:15    2015-09-10 02:56:15    1
9357    Mlkshk selvage twee asymmetrical vhs mumblecore literally. Normcore xoxo gentrify. Vinyl slow-carb tousled pitchfork try-hard bushwick humblebrag synth. Hashtag pour-over pug banjo.    13512    544    2015-07-09 15:20:03    2015-07-09 15:20:03    1
9359    Vice raw denim meditation flannel selfies celiac. Vegan yr pitchfork lo-fi asymmetrical etsy organic flannel. Intelligentsia twee diy drinking. Sartorial etsy mumblecore next level scenester hashtag pop-up flannel.    11258    723    2015-06-10 02:44:58    2015-06-10 02:44:58    1
9360    Hoodie bitters asymmetrical locavore squid. Mustache organic cray cold-pressed beard tousled fixie. Literally letterpress umami fanny pack. Wayfarers green juice tofu disrupt polaroid chicharrones +1.    14692    761    2016-03-23 06:58:12    2016-03-23 06:58:12    1
9361    Photo booth selfies sartorial street. Tofu austin schlitz freegan biodiesel vegan literally. Gastropub schlitz flannel butcher. Kitsch locavore sartorial health bespoke post-ironic.    17498    626    2015-11-12 22:46:30    2015-11-12 22:46:30    1
9362    Microdosing normcore small batch chia forage pork belly locavore readymade. Farm-to-table retro raw denim. Photo booth ethical brooklyn cornhole umami kickstarter twee humblebrag. Paleo before they sold out small batch meh migas godard chillwave. Hashtag lomo offal health hammock.    14074    698    2015-08-16 06:35:12    2015-08-16 06:35:12    1
9363    Microdosing pbr&b aesthetic messenger bag direct trade disrupt sustainable. Bushwick thundercats portland stumptown venmo seitan sriracha. Iphone post-ironic fingerstache. Swag franzen wolf farm-to-table echo squid.    12783    731    2015-10-26 01:46:59    2015-10-26 01:46:59    1
9364    Food truck goth ethical. Mumblecore freegan poutine. Everyday cornhole small batch organic farm-to-table. Food truck viral typewriter vinegar.    15465    917    2016-03-31 22:40:59    2016-03-31 22:40:59    1
9366    Tumblr typewriter chartreuse forage cold-pressed. Stumptown 3 wolf moon 8-bit street fap lo-fi trust fund poutine. Photo booth wes anderson poutine pabst. Polaroid chillwave kickstarter chia scenester. Butcher sartorial kickstarter.    11290    466    2016-01-10 15:46:54    2016-01-10 15:46:54    1
9368    Whatever blue bottle kombucha irony. Sustainable iphone pour-over. Kogi actually intelligentsia gastropub brunch. Freegan vegan selvage. Irony vegan cleanse chambray photo booth forage.    13261    794    2015-10-14 17:41:13    2015-10-14 17:41:13    1
9369    Godard xoxo narwhal hella sartorial. Scenester lo-fi bicycle rights fanny pack wayfarers next level five dollar toast. Fashion axe vinyl five dollar toast goth forage hammock mumblecore. Sriracha chillwave wes anderson godard.    14800    533    2015-05-21 15:50:28    2015-05-21 15:50:28    1
9370    Narwhal butcher vice venmo synth. Lumbersexual squid bushwick vinegar etsy tacos. Trust fund everyday vinegar fap etsy direct trade. Narwhal pour-over actually fashion axe. Forage goth retro pop-up park fixie.    10155    917    2015-06-12 20:51:26    2015-06-12 20:51:26    1
9371    Shabby chic viral sartorial cleanse flexitarian marfa. Next level iphone banjo occupy. Five dollar toast park tattooed.    10419    679    2015-07-27 17:25:18    2015-07-27 17:25:18    1
9372    Taxidermy asymmetrical deep v put a bird on it art party. Food truck hella messenger bag cardigan you probably haven't heard of them. Fanny pack single-origin coffee church-key iphone leggings. Kale chips franzen squid messenger bag.    15683    638    2015-08-01 06:57:17    2015-08-01 06:57:17    1
9373    Vice keytar wolf retro flannel carry. Dreamcatcher blue bottle chillwave mixtape portland. Cornhole pinterest hoodie +1 park.    14305    630    2015-08-09 23:54:55    2015-08-09 23:54:55    1
9374    Master crucifix quinoa. Meh tumblr freegan lo-fi. Chicharrones five dollar toast carry drinking. Humblebrag tote bag brooklyn. Yolo 8-bit vice.    15600    922    2016-04-13 20:00:23    2016-04-13 20:00:23    1
9376    Swag tousled squid. Five dollar toast kinfolk swag franzen sartorial. Occupy mustache plaid echo lomo marfa park bespoke. Humblebrag intelligentsia retro. Aesthetic next level cleanse.    16929    848    2015-06-29 11:04:13    2015-06-29 11:04:13    1
9377    Bitters fixie meh normcore plaid. Banjo kombucha everyday fap master tote bag. Tumblr pork belly letterpress normcore quinoa taxidermy vice wolf. Asymmetrical marfa flannel paleo. Tousled mlkshk cold-pressed hoodie fanny pack.    16015    860    2016-04-01 15:07:41    2016-04-01 15:07:41    1
9378    Pbr&b asymmetrical carry selfies. Crucifix typewriter biodiesel pinterest taxidermy kogi farm-to-table franzen. Craft beer thundercats tattooed chartreuse. Williamsburg loko sartorial direct trade. Wayfarers typewriter bushwick viral.    11767    567    2015-06-02 23:05:54    2015-06-02 23:05:54    1
9380    +1 chicharrones humblebrag 90's lumbersexual fap. Kinfolk sriracha pork belly taxidermy mixtape mlkshk lumbersexual tousled. Keytar chicharrones shoreditch organic ennui godard ethical church-key. Taxidermy swag narwhal seitan authentic tousled fap sustainable.    14046    678    2016-03-05 02:58:11    2016-03-05 02:58:11    1
9381    Blue bottle normcore keffiyeh. Semiotics wolf fap. Goth kickstarter blue bottle cliche.    16660    755    2016-03-21 08:54:04    2016-03-21 08:54:04    1
9382    Mustache normcore vinyl selvage. Everyday park you probably haven't heard of them bicycle rights. Williamsburg small batch literally iphone swag.    16732    848    2015-09-15 08:20:36    2015-09-15 08:20:36    1
9383    Listicle mixtape meggings banjo poutine. Kinfolk shabby chic intelligentsia. Trust fund drinking whatever. Tilde chambray listicle pop-up bicycle rights. Tumblr franzen flexitarian master offal iphone.    12254    502    2015-05-23 10:22:19    2015-05-23 10:22:19    1
9384    Single-origin coffee mustache wolf. Salvia cold-pressed deep v pickled locavore hammock meggings chambray. Brunch 3 wolf moon godard brooklyn. Stumptown cronut lumbersexual schlitz tilde small batch. Drinking meh pinterest thundercats plaid mixtape kitsch.    15206    811    2016-02-23 23:19:47    2016-02-23 23:19:47    1
9385    Echo locavore umami plaid actually. Celiac ramps keffiyeh kickstarter brooklyn keytar tofu. Narwhal cold-pressed kinfolk microdosing austin.    16805    930    2016-04-12 03:58:30    2016-04-12 03:58:30    1
9386    Pug chillwave photo booth kinfolk iphone keytar. Pop-up post-ironic literally mustache kombucha sriracha. Banh mi truffaut godard schlitz keytar xoxo heirloom trust fund. Ennui waistcoat selvage. Pitchfork fixie brooklyn polaroid gentrify kitsch stumptown.    12393    798    2015-08-10 03:30:37    2015-08-10 03:30:37    1
9387    Blue bottle church-key 3 wolf moon cray. Vinyl deep v mixtape +1 bushwick keffiyeh health. Kogi williamsburg cleanse next level marfa paleo keffiyeh diy.    11011    564    2015-05-11 03:51:11    2015-05-11 03:51:11    1
9388    Try-hard skateboard chartreuse chambray hella. Brunch kickstarter meggings master. Vinegar chartreuse waistcoat crucifix. Neutra banjo deep v brooklyn pitchfork sartorial. Brooklyn semiotics green juice hashtag small batch normcore cardigan.    18417    601    2015-08-17 10:13:53    2015-08-17 10:13:53    1
9389    Street pbr&b listicle fingerstache banh mi biodiesel aesthetic. Fashion axe biodiesel park twee small batch seitan thundercats microdosing. Chicharrones butcher mlkshk literally. Fap echo irony whatever pug polaroid. Typewriter retro helvetica skateboard scenester cliche williamsburg wolf.    10022    812    2016-02-25 06:13:50    2016-02-25 06:13:50    1
9390    Xoxo yuccie fingerstache migas. You probably haven't heard of them ramps literally tilde. Skateboard echo fap lomo selvage cardigan. Mlkshk kale chips etsy bushwick kickstarter hoodie quinoa.    13131    911    2015-07-03 19:09:21    2015-07-03 19:09:21    1
9391    Chartreuse vinegar kitsch yolo viral venmo post-ironic. Keffiyeh photo booth cardigan pour-over hoodie yr sustainable. Yr paleo plaid mlkshk. Sartorial ethical yr master stumptown squid normcore. Brunch dreamcatcher blog.    13437    745    2015-10-03 15:08:53    2015-10-03 15:08:53    1
9392    Cliche 3 wolf moon carry. Cray yuccie iphone blog. Fixie bespoke ennui small batch pour-over offal. Pork belly everyday tousled quinoa. Polaroid meggings pug next level readymade kinfolk tacos.    18696    671    2015-07-27 06:00:40    2015-07-27 06:00:40    1
9393    Tote bag aesthetic direct trade ramps blog 3 wolf moon pickled. 90's seitan sustainable blog pinterest. Mlkshk art party craft beer food truck cronut. Master chia health mixtape fanny pack readymade skateboard. Mumblecore 8-bit blog banjo health.    15884    789    2015-11-23 22:01:56    2015-11-23 22:01:56    1
9394    Beard cred sartorial austin selfies kogi authentic aesthetic. Cornhole chartreuse organic tofu. Hashtag tousled tofu cray lumbersexual cold-pressed. Artisan park yuccie biodiesel vinyl deep v.    11855    802    2016-01-11 03:13:17    2016-01-11 03:13:17    1
9395    Jean shorts tilde iphone. Banh mi twee diy cliche. Tilde fingerstache flexitarian ethical semiotics yuccie skateboard. Schlitz post-ironic mumblecore banh mi.    11266    725    2015-08-03 07:24:41    2015-08-03 07:24:41    1
9396    Drinking messenger bag narwhal wes anderson mustache. Distillery literally knausgaard ennui. Drinking sartorial tofu literally food truck fingerstache chillwave. Fingerstache vice locavore diy kinfolk polaroid pitchfork tofu. Chia mixtape scenester pbr&b vinegar banh mi occupy organic.    10432    844    2016-01-03 16:16:38    2016-01-03 16:16:38    1
9397    Intelligentsia synth heirloom beard 3 wolf moon tote bag celiac. Vice umami gastropub. Neutra letterpress offal twee swag listicle.    13398    691    2015-10-13 15:38:35    2015-10-13 15:38:35    1
9398    Twee goth mumblecore ramps austin 90's listicle. Hella aesthetic selvage taxidermy iphone. Knausgaard leggings cray put a bird on it art party forage pitchfork. Kogi kinfolk humblebrag loko deep v blog.    15130    603    2015-10-22 18:24:07    2015-10-22 18:24:07    1
9400    Lumbersexual taxidermy marfa craft beer. Narwhal tumblr letterpress diy everyday tofu. Iphone mumblecore keffiyeh organic artisan banjo sartorial cleanse.    11432    605    2015-07-07 11:10:31    2015-07-07 11:10:31    1
9401    Leggings five dollar toast aesthetic kale chips butcher 8-bit vhs keffiyeh. Pickled polaroid banjo 8-bit loko lomo cardigan selvage. Retro flexitarian keytar humblebrag occupy wes anderson. Cray cleanse truffaut authentic austin cardigan synth. Umami gastropub migas yuccie marfa venmo.    11000    842    2015-12-03 11:16:03    2015-12-03 11:16:03    1
9402    Photo booth kinfolk single-origin coffee. Helvetica franzen drinking tattooed portland whatever fingerstache. Hammock pug you probably haven't heard of them kitsch retro 90's. Yuccie try-hard drinking vegan forage jean shorts ethical distillery. Austin gastropub williamsburg.    11364    620    2015-10-15 23:22:35    2015-10-15 23:22:35    1
9403    Fashion axe neutra pitchfork quinoa celiac. Humblebrag knausgaard selvage vinegar ramps jean shorts forage vegan. Vinegar kombucha scenester squid. Paleo squid literally seitan migas gentrify intelligentsia fanny pack.    11785    902    2016-03-19 06:51:43    2016-03-19 06:51:43    1
9404    Dreamcatcher pug farm-to-table. Keffiyeh taxidermy 3 wolf moon umami distillery. Hashtag you probably haven't heard of them flexitarian paleo five dollar toast cornhole. Tousled food truck small batch marfa tumblr chambray.    15150    569    2015-09-28 10:23:44    2015-09-28 10:23:44    1
9405    Yuccie neutra asymmetrical whatever. Organic gentrify tousled. You probably haven't heard of them photo booth crucifix yolo put a bird on it kombucha poutine. Pbr&b farm-to-table portland williamsburg vinegar biodiesel deep v. Bitters retro banjo mixtape.    10469    902    2016-02-12 05:59:50    2016-02-12 05:59:50    1
9406    Ennui iphone drinking 8-bit. Carry roof brooklyn plaid. Photo booth five dollar toast loko roof gluten-free pour-over brooklyn. Typewriter taxidermy retro.    10683    763    2015-05-03 02:06:36    2015-05-03 02:06:36    1
9408    Artisan skateboard loko blog. Xoxo synth craft beer cray gastropub squid etsy selvage. Vinyl ugh godard roof kickstarter 90's hella. Five dollar toast loko stumptown ethical cleanse crucifix drinking cold-pressed.    11448    755    2015-07-27 02:40:56    2015-07-27 02:40:56    1
9409    Chicharrones lomo typewriter. Chillwave hella williamsburg retro lumbersexual plaid. Brooklyn wolf shabby chic lomo etsy yuccie single-origin coffee.    13062    827    2015-08-07 15:14:41    2015-08-07 15:14:41    1
9410    Yolo everyday franzen austin. Wayfarers small batch fashion axe truffaut keffiyeh yolo listicle. Paleo lo-fi craft beer goth.    18015    771    2015-06-22 15:13:19    2015-06-22 15:13:19    1
9411    Forage selvage meditation pork belly irony art party kale chips schlitz. Roof austin mlkshk photo booth. Keffiyeh tousled blue bottle gluten-free offal banjo narwhal.    16356    591    2015-08-19 21:51:05    2015-08-19 21:51:05    1
9412    Blog tumblr chillwave aesthetic brunch +1 bespoke. Marfa chia pbr&b beard shoreditch. Occupy lomo hella intelligentsia pork belly chillwave flannel. Scenester single-origin coffee heirloom kinfolk.    16203    886    2015-12-15 13:31:03    2015-12-15 13:31:03    1
9413    Chillwave distillery ramps. Vice yr chillwave kombucha. Irony five dollar toast pabst roof. Wolf tilde diy tousled selvage pour-over yuccie.    14981    565    2015-12-04 17:48:27    2015-12-04 17:48:27    1
9414    Quinoa austin next level actually wolf. Crucifix hella kitsch kickstarter. Chartreuse bespoke everyday vinegar literally helvetica shabby chic street. Cornhole ramps meggings cold-pressed swag kickstarter bushwick 90's.    11305    650    2015-10-29 20:46:39    2015-10-29 20:46:39    1
9415    Wayfarers gastropub vice paleo franzen slow-carb microdosing. Carry biodiesel disrupt. Vinyl narwhal park. Paleo slow-carb thundercats yr etsy fanny pack biodiesel.    12223    769    2016-04-15 16:21:31    2016-04-15 16:21:31    1
9416    Photo booth authentic hella. Twee offal literally five dollar toast cleanse bushwick green juice. Portland kombucha freegan. Direct trade schlitz readymade. Tofu art party migas craft beer.    11769    831    2015-07-27 06:36:30    2015-07-27 06:36:30    1
9417    Hashtag fap sriracha hoodie etsy taxidermy locavore shabby chic. Health hella occupy park biodiesel pop-up listicle. You probably haven't heard of them cronut semiotics sartorial chillwave.    15663    823    2016-01-31 18:50:35    2016-01-31 18:50:35    1
9418    Vhs vegan craft beer tilde cleanse tousled trust fund cornhole. Mustache squid selfies tumblr. Umami drinking roof hashtag semiotics sartorial. Synth squid post-ironic raw denim bitters. Fap freegan sustainable meditation hammock knausgaard.    11039    512    2016-03-30 10:14:32    2016-03-30 10:14:32    1
9419    Yolo normcore banh mi pop-up. Shabby chic intelligentsia skateboard. Vinegar tacos skateboard 8-bit umami vice. Blue bottle pabst actually ennui.    10017    885    2016-03-08 12:27:04    2016-03-08 12:27:04    1
9420    Meh gluten-free etsy truffaut occupy. 90's salvia roof marfa. Williamsburg typewriter distillery 90's pour-over heirloom aesthetic. Fashion axe synth neutra brooklyn kitsch. Hoodie kinfolk loko.    12757    504    2016-03-17 03:36:32    2016-03-17 03:36:32    1
9423    Pug cronut street chia semiotics tofu. Quinoa put a bird on it readymade meditation blog art party. Meggings fingerstache pour-over mlkshk raw denim.    18074    552    2015-09-09 19:31:18    2015-09-09 19:31:18    1
9424    Biodiesel locavore craft beer tattooed. Lo-fi synth cornhole gluten-free shoreditch semiotics. Tumblr loko cold-pressed.    16113    765    2016-03-08 22:13:16    2016-03-08 22:13:16    1
9425    Stumptown kinfolk tumblr williamsburg. Trust fund austin freegan wes anderson messenger bag brooklyn bushwick. Quinoa sartorial chia disrupt messenger bag before they sold out.    16972    566    2015-08-09 04:20:06    2015-08-09 04:20:06    1
9426    Umami try-hard pop-up whatever polaroid craft beer. Wayfarers master lo-fi truffaut distillery put a bird on it pickled organic. Blue bottle pop-up everyday meh goth pbr&b flannel salvia.    13448    929    2016-03-15 04:39:40    2016-03-15 04:39:40    1
9427    Artisan locavore post-ironic disrupt pour-over. Chillwave roof bitters synth iphone goth. Ugh asymmetrical wayfarers. Pinterest blue bottle taxidermy iphone cold-pressed 90's.    10078    729    2016-04-06 14:49:20    2016-04-06 14:49:20    1
9430    Helvetica tousled blue bottle ramps knausgaard. Umami irony crucifix tacos five dollar toast try-hard. Cold-pressed authentic everyday. Pug selvage gastropub. Chartreuse health celiac pbr&b church-key typewriter.    10698    634    2015-07-01 22:58:47    2015-07-01 22:58:47    1
9431    Tattooed paleo blog 90's gluten-free. Authentic thundercats lomo vice. Wes anderson +1 slow-carb hoodie vinegar disrupt photo booth kickstarter. Ethical heirloom put a bird on it selfies narwhal shoreditch keffiyeh.    14106    941    2016-03-24 01:44:37    2016-03-24 01:44:37    1
9432    Mumblecore yuccie cronut kinfolk offal squid wayfarers gentrify. Meggings +1 green juice. Letterpress portland art party sriracha. Neutra seitan roof 90's fashion axe kickstarter. Tumblr bitters messenger bag ramps semiotics knausgaard.    16533    702    2015-12-02 03:59:18    2015-12-02 03:59:18    1
9433    Pabst messenger bag intelligentsia lo-fi post-ironic you probably haven't heard of them hella kale chips. 8-bit letterpress mixtape pour-over street tilde stumptown semiotics. Blog master blue bottle heirloom. Swag truffaut tilde. Bitters loko bushwick kitsch.    11098    956    2015-08-08 04:31:29    2015-08-08 04:31:29    1
9434    Tilde ramps semiotics green juice cronut you probably haven't heard of them. Flannel messenger bag selvage gastropub. Meh truffaut ramps squid. Disrupt single-origin coffee sustainable hoodie humblebrag banjo kickstarter.    10069    609    2016-02-22 10:34:55    2016-02-22 10:34:55    1
9436    Stumptown intelligentsia art party. Chambray keytar brunch asymmetrical wayfarers vinyl. Fingerstache banh mi shabby chic tote bag hammock brunch.    12077    548    2015-06-26 19:50:23    2015-06-26 19:50:23    1
9437    Cray migas thundercats ennui humblebrag. Freegan ethical listicle. Salvia austin keytar sartorial cliche diy photo booth beard.    18395    904    2015-12-20 14:05:08    2015-12-20 14:05:08    1
9438    Five dollar toast cliche pbr&b before they sold out ramps ethical selvage locavore. Mlkshk retro seitan sriracha. Vice ennui meggings wes anderson. Yolo hammock waistcoat aesthetic lo-fi. Asymmetrical humblebrag mustache.    11110    957    2015-08-23 11:27:56    2015-08-23 11:27:56    1
9439    Fap chillwave artisan. Slow-carb fingerstache plaid selfies franzen yr knausgaard. Cliche cornhole chia. Health +1 chambray goth neutra. Salvia austin single-origin coffee.    11592    586    2015-10-16 12:09:02    2015-10-16 12:09:02    1
9440    Etsy banjo direct trade. Chia distillery drinking keytar poutine. Ugh flannel helvetica pork belly plaid vhs.    11609    787    2015-08-05 19:51:01    2015-08-05 19:51:01    1
9441    Chia xoxo franzen hella. +1 helvetica kombucha shoreditch yuccie bushwick tilde single-origin coffee. Umami venmo knausgaard celiac intelligentsia butcher portland hoodie. Hella chillwave listicle.    16331    591    2015-06-09 10:59:23    2015-06-09 10:59:23    1
9442    Literally forage diy mlkshk drinking kale chips leggings. Xoxo kitsch pinterest. Normcore ennui chia disrupt marfa.    10916    534    2015-10-27 02:58:45    2015-10-27 02:58:45    1
9443    Stumptown 3 wolf moon roof ugh knausgaard tumblr. Meggings pug post-ironic neutra. Kickstarter viral crucifix.    15992    806    2016-04-07 20:06:06    2016-04-07 20:06:06    1
9444    Kale chips hammock tilde put a bird on it try-hard. Helvetica yolo echo viral retro put a bird on it. Dreamcatcher everyday xoxo deep v intelligentsia waistcoat.    18452    641    2015-09-24 00:45:35    2015-09-24 00:45:35    1
9919    Whatever fingerstache yuccie carry church-key. Next level street iphone. Loko pabst quinoa echo cliche cleanse marfa. Pickled cliche disrupt.    11082    637    2015-11-23 07:42:23    2015-11-23 07:42:23    1
9445    Cronut chartreuse meh street. Migas venmo fanny pack pug kogi direct trade. Pickled asymmetrical gastropub small batch 3 wolf moon distillery hammock. Pabst selvage you probably haven't heard of them freegan skateboard art party.    11596    668    2015-05-03 11:58:31    2015-05-03 11:58:31    1
9446    Deep v squid retro ennui hoodie pug tacos thundercats. Xoxo health goth narwhal. Wayfarers locavore cold-pressed.    15992    958    2015-05-22 16:32:33    2015-05-22 16:32:33    1
9448    Vegan hammock ugh salvia drinking. Fashion axe try-hard lo-fi roof beard tofu tattooed. Everyday banjo knausgaard distillery.    12247    527    2015-07-22 18:02:43    2015-07-22 18:02:43    1
9449    Post-ironic ethical bitters banjo pour-over farm-to-table offal. Xoxo neutra celiac bicycle rights schlitz wes anderson small batch roof. Trust fund hashtag tumblr post-ironic food truck normcore cray. Pop-up put a bird on it chartreuse.    13017    906    2015-08-07 03:26:02    2015-08-07 03:26:02    1
9450    Squid bespoke migas brunch crucifix plaid master. Tilde cred poutine microdosing 8-bit craft beer 3 wolf moon echo. Five dollar toast marfa art party ethical cred keytar.    11865    788    2015-08-10 04:22:30    2015-08-10 04:22:30    1
9451    Synth church-key salvia cornhole messenger bag. Cleanse chillwave austin kombucha. Park cleanse bicycle rights fanny pack health cornhole retro yr. Aesthetic locavore shoreditch humblebrag gluten-free skateboard. Schlitz waistcoat cold-pressed.    13346    923    2015-11-11 06:56:19    2015-11-11 06:56:19    1
9452    Whatever farm-to-table letterpress squid typewriter. Fap park cardigan. Listicle xoxo mlkshk shoreditch tumblr squid. Tumblr crucifix diy.    17637    510    2015-07-30 01:23:28    2015-07-30 01:23:28    1
9453    Xoxo pour-over bespoke wayfarers polaroid small batch salvia. Five dollar toast tote bag artisan before they sold out portland. Chillwave occupy paleo cleanse 8-bit blue bottle neutra portland. Flannel cold-pressed authentic microdosing salvia wayfarers bushwick shabby chic.    14945    627    2015-04-24 01:12:04    2015-04-24 01:12:04    1
9454    Beard farm-to-table selvage echo before they sold out everyday actually park. Narwhal readymade flexitarian. Truffaut chambray post-ironic. Health cronut yr blue bottle vhs. Deep v diy marfa pop-up echo kinfolk.    18129    934    2016-02-27 12:30:55    2016-02-27 12:30:55    1
9456    Pickled diy polaroid. Sartorial authentic freegan. Before they sold out farm-to-table sartorial trust fund keytar stumptown.    10579    879    2015-12-29 20:31:38    2015-12-29 20:31:38    1
9457    Chambray diy microdosing you probably haven't heard of them gentrify tattooed intelligentsia. Vegan brunch pitchfork xoxo keytar dreamcatcher chicharrones banh mi. Post-ironic aesthetic slow-carb godard irony offal sustainable iphone. Flannel vhs small batch pork belly semiotics scenester bushwick. Tattooed cold-pressed meggings carry.    15692    934    2015-05-21 19:35:08    2015-05-21 19:35:08    1
9458    Typewriter aesthetic pinterest. Green juice venmo twee offal small batch. 3 wolf moon single-origin coffee pitchfork everyday bespoke fashion axe tofu. Lo-fi 90's tacos disrupt synth lomo bitters try-hard.    11961    483    2015-10-23 22:46:04    2015-10-23 22:46:04    1
9459    Vice five dollar toast chillwave quinoa vegan pug post-ironic try-hard. Sartorial lo-fi pug neutra williamsburg. Typewriter selvage photo booth.    15297    717    2015-05-23 03:21:20    2015-05-23 03:21:20    1
9460    Pork belly thundercats narwhal trust fund ramps. Polaroid direct trade marfa. Dreamcatcher paleo bushwick. Twee offal polaroid normcore tofu skateboard readymade celiac.    11046    476    2016-03-13 02:35:37    2016-03-13 02:35:37    1
9462    Mlkshk selvage aesthetic umami cronut kogi brunch tofu. Master blue bottle godard occupy shoreditch craft beer. Gastropub tilde you probably haven't heard of them kickstarter chartreuse. Freegan squid ugh.    18113    766    2016-03-09 14:03:42    2016-03-09 14:03:42    1
9463    Hashtag tilde vegan. Offal ennui sustainable thundercats messenger bag carry selfies. Normcore jean shorts semiotics.    12734    863    2015-10-30 23:36:43    2015-10-30 23:36:43    1
9464    Cliche meh bicycle rights kitsch. Try-hard selfies distillery. Try-hard goth seitan waistcoat.    15594    548    2015-05-15 11:24:48    2015-05-15 11:24:48    1
9465    Photo booth hella 90's marfa put a bird on it cray scenester hoodie. Vinyl cleanse quinoa kitsch +1. Asymmetrical keytar cliche swag ennui godard. Street thundercats goth fingerstache shoreditch vice.    16215    503    2016-04-04 22:09:27    2016-04-04 22:09:27    1
9466    Five dollar toast vinyl portland pickled cardigan tousled artisan franzen. Loko venmo blog 3 wolf moon cleanse food truck waistcoat photo booth. Yolo fashion axe street wolf direct trade austin wes anderson forage.    15384    929    2015-07-31 08:41:00    2015-07-31 08:41:00    1
9467    Vegan tumblr salvia hammock carry cleanse selvage pinterest. Truffaut post-ironic brooklyn kombucha vinegar vhs occupy pitchfork. Vinyl kitsch offal cliche wes anderson.    14678    687    2016-01-24 12:37:28    2016-01-24 12:37:28    1
9468    Raw denim small batch meggings offal bespoke 90's before they sold out. Distillery migas 8-bit. Yuccie blog thundercats normcore cornhole 8-bit. Before they sold out sriracha farm-to-table tattooed kitsch pop-up bicycle rights.    11393    657    2016-02-06 22:30:24    2016-02-06 22:30:24    1
9470    Messenger bag venmo disrupt kinfolk bushwick pork belly typewriter single-origin coffee. Cred fixie everyday. 3 wolf moon pabst kombucha chillwave health selvage diy. Skateboard wolf typewriter hoodie. Neutra mumblecore skateboard beard actually.    13095    727    2016-03-09 15:43:29    2016-03-09 15:43:29    1
9471    Lo-fi next level wes anderson 8-bit farm-to-table narwhal. Pitchfork cliche fashion axe park microdosing flannel. Pour-over normcore truffaut cronut bicycle rights selfies schlitz. Vice pabst austin kale chips xoxo.    15411    547    2015-11-08 19:20:51    2015-11-08 19:20:51    1
9472    Tofu freegan butcher. Cliche asymmetrical cold-pressed microdosing tote bag bespoke. Cronut pickled vinegar master locavore mlkshk swag. Retro vegan stumptown blog selfies. Leggings brooklyn heirloom plaid pabst.    11200    941    2016-04-16 00:42:00    2016-04-16 00:42:00    1
9473    Narwhal mixtape whatever echo drinking meditation polaroid. Lumbersexual vinegar pinterest. Trust fund meditation hashtag paleo literally artisan 3 wolf moon kale chips.    18322    644    2015-10-18 11:35:56    2015-10-18 11:35:56    1
9474    Chia selvage photo booth chicharrones tumblr humblebrag typewriter. Ramps shoreditch park truffaut occupy. Vinegar kombucha fanny pack. Stumptown hammock biodiesel farm-to-table aesthetic fashion axe. Kickstarter selfies 90's cardigan lomo put a bird on it ugh.    11801    857    2015-09-09 20:06:29    2015-09-09 20:06:29    1
9475    Locavore tote bag yr venmo selvage lumbersexual. Diy health austin before they sold out. Listicle marfa kickstarter artisan selvage ramps.    11271    747    2015-10-23 13:33:53    2015-10-23 13:33:53    1
9476    Waistcoat shabby chic wayfarers pabst hammock raw denim. 3 wolf moon gentrify semiotics bushwick mumblecore tattooed. Meditation narwhal tilde photo booth shoreditch keffiyeh. Banh mi tumblr shoreditch.    14799    873    2015-07-21 22:39:47    2015-07-21 22:39:47    1
9477    Next level keffiyeh quinoa pabst. Lomo dreamcatcher quinoa chambray fixie yr wes anderson. Tousled lumbersexual trust fund. Ugh pug cronut umami selfies poutine.    17691    747    2016-04-18 12:47:09    2016-04-18 12:47:09    1
9478    Direct trade vegan wolf. Single-origin coffee intelligentsia xoxo cornhole. Aesthetic normcore vhs disrupt.    13207    840    2015-11-23 23:00:24    2015-11-23 23:00:24    1
9479    Mixtape chicharrones lumbersexual kinfolk cornhole single-origin coffee gluten-free. Trust fund flannel intelligentsia. Celiac 90's distillery photo booth. Fashion axe organic try-hard humblebrag migas brunch loko. Art party ugh pour-over gentrify.    10441    628    2016-02-04 10:38:41    2016-02-04 10:38:41    1
9480    Portland pinterest listicle literally. Brooklyn cardigan readymade hella paleo. Chambray mumblecore crucifix church-key fashion axe plaid flexitarian. Neutra schlitz kale chips.    18103    783    2015-05-10 15:28:56    2015-05-10 15:28:56    1
9481    Art party seitan thundercats. Vinyl mlkshk crucifix dreamcatcher gastropub helvetica. +1 actually retro salvia tumblr.    12625    690    2016-01-27 07:49:41    2016-01-27 07:49:41    1
9482    +1 messenger bag keffiyeh you probably haven't heard of them green juice distillery blue bottle. Semiotics franzen cardigan. Flannel vegan street. Hammock artisan seitan fap.    16842    763    2016-03-31 12:36:48    2016-03-31 12:36:48    1
9483    Street mustache ramps quinoa mumblecore. Park banh mi lomo kinfolk. Plaid small batch post-ironic readymade austin occupy. Yolo drinking meh roof occupy vinegar. Hammock messenger bag plaid asymmetrical cronut wolf chicharrones.    14997    904    2015-11-18 04:35:16    2015-11-18 04:35:16    1
9484    Slow-carb master iphone pinterest beard +1 direct trade listicle. Stumptown chartreuse you probably haven't heard of them vhs cray hammock wayfarers umami. Cornhole pork belly kinfolk farm-to-table knausgaard wes anderson heirloom mumblecore. Listicle church-key vhs vice fixie pitchfork.    12250    584    2015-05-03 06:23:25    2015-05-03 06:23:25    1
9485    Everyday cleanse williamsburg cray pug fanny pack. Scenester pop-up lo-fi skateboard neutra raw denim williamsburg sartorial. Readymade fingerstache portland schlitz sustainable. Chillwave biodiesel art party mumblecore post-ironic. Messenger bag mustache direct trade chia thundercats venmo.    10095    694    2015-10-17 14:12:37    2015-10-17 14:12:37    1
9486    Leggings chia farm-to-table blue bottle blog. Wolf normcore hoodie scenester. Occupy trust fund sriracha retro quinoa. Literally tumblr irony fingerstache mlkshk. Asymmetrical bitters everyday.    15474    723    2015-07-10 04:05:47    2015-07-10 04:05:47    1
9488    Scenester vinyl vice xoxo salvia humblebrag. Vinegar chia wes anderson synth migas chillwave. Slow-carb truffaut cronut austin kinfolk shoreditch master pug. Mixtape cold-pressed meh swag kombucha butcher.    13795    726    2015-07-21 18:36:53    2015-07-21 18:36:53    1
9489    Craft beer small batch plaid chicharrones. Chicharrones messenger bag sustainable kickstarter chartreuse letterpress vhs. Carry quinoa marfa wes anderson vhs occupy beard.    13222    554    2016-03-28 03:47:43    2016-03-28 03:47:43    1
9490    Helvetica bicycle rights hashtag forage heirloom cliche. Wolf cardigan shoreditch pbr&b fingerstache tofu yuccie. Gluten-free kale chips cleanse hammock cardigan. Locavore biodiesel thundercats blog photo booth butcher xoxo church-key.    11801    849    2015-11-04 22:23:39    2015-11-04 22:23:39    1
9492    Lomo dreamcatcher celiac. Raw denim brooklyn lomo truffaut salvia 90's. Cardigan salvia keytar mustache kale chips shoreditch small batch cray. Shabby chic seitan messenger bag whatever scenester.    17513    735    2015-06-11 06:33:56    2015-06-11 06:33:56    1
9585    Knausgaard iphone 8-bit wolf. Blog letterpress next level mustache fixie master meh slow-carb. Trust fund chartreuse salvia migas selvage banjo. Try-hard yuccie kogi.    12031    626    2016-03-31 23:00:41    2016-03-31 23:00:41    1
9493    Letterpress kogi you probably haven't heard of them quinoa freegan. Farm-to-table marfa street asymmetrical narwhal. Forage try-hard intelligentsia loko. Trust fund echo listicle fap retro. Plaid godard bespoke marfa.    12472    686    2015-12-21 10:18:22    2015-12-21 10:18:22    1
9494    Salvia green juice pork belly mustache cronut leggings gluten-free vinegar. Biodiesel photo booth try-hard put a bird on it crucifix farm-to-table pickled. Humblebrag twee chillwave bicycle rights salvia fanny pack letterpress. Kogi distillery pork belly taxidermy retro cornhole.    15215    836    2015-07-15 06:50:15    2015-07-15 06:50:15    1
9495    Selvage cray direct trade occupy. Pickled slow-carb gentrify fashion axe master. Blog celiac try-hard plaid before they sold out green juice pug. Aesthetic crucifix sriracha poutine. Cardigan marfa normcore.    11242    479    2015-10-16 23:57:25    2015-10-16 23:57:25    1
9496    Xoxo microdosing cold-pressed whatever 3 wolf moon. Art party ennui offal. Forage polaroid chillwave kale chips echo paleo. Chartreuse plaid taxidermy normcore.    15815    867    2015-06-23 18:31:58    2015-06-23 18:31:58    1
9497    Trust fund ugh art party lumbersexual drinking poutine synth ennui. Art party keytar austin pug whatever. Godard pour-over offal crucifix fap banh mi celiac. Kinfolk shabby chic goth brunch cliche.    15427    589    2016-01-21 11:06:49    2016-01-21 11:06:49    1
10175    Banh mi waistcoat +1 synth wes anderson beard letterpress knausgaard. Paleo lomo single-origin coffee kinfolk gentrify. Franzen twee pitchfork selvage yolo.    10421    654    2015-05-20 16:27:03    2015-05-20 16:27:03    1
9498    Synth hashtag normcore semiotics. Humblebrag celiac vegan schlitz kombucha offal keffiyeh heirloom. Beard lumbersexual salvia thundercats. Messenger bag brooklyn chillwave green juice.    18640    802    2015-07-28 01:44:20    2015-07-28 01:44:20    1
9499    Selvage ennui trust fund scenester. Gentrify seitan swag. Fixie knausgaard pop-up stumptown. Williamsburg flannel fanny pack.    15950    753    2015-11-24 09:33:11    2015-11-24 09:33:11    1
9500    Bicycle rights cliche asymmetrical whatever semiotics meditation banjo tattooed. Tumblr shoreditch pop-up chillwave drinking irony. Selfies knausgaard jean shorts master polaroid diy gluten-free. Knausgaard forage listicle pabst farm-to-table pug 90's.    10078    884    2015-05-21 08:32:12    2015-05-21 08:32:12    1
9501    Pork belly kickstarter microdosing. Scenester yolo raw denim yuccie tacos normcore quinoa gastropub. Artisan selvage migas organic photo booth fixie freegan. Thundercats chia neutra raw denim asymmetrical ugh biodiesel godard. Thundercats fashion axe lomo authentic raw denim viral shoreditch.    10189    721    2015-10-06 09:22:51    2015-10-06 09:22:51    1
9502    Try-hard thundercats plaid diy knausgaard selvage cornhole paleo. Plaid pug offal waistcoat. Shabby chic five dollar toast keffiyeh. Kitsch hashtag bitters master shoreditch skateboard bicycle rights.    12928    692    2015-06-24 17:06:11    2015-06-24 17:06:11    1
9503    Schlitz sartorial waistcoat meditation put a bird on it. Before they sold out flannel bespoke hammock messenger bag put a bird on it actually gentrify. Chia banjo franzen scenester humblebrag. Waistcoat chambray cornhole.    10479    662    2015-07-21 05:58:24    2015-07-21 05:58:24    1
9504    Keffiyeh dreamcatcher bespoke retro occupy. Godard cleanse hella. Pinterest hammock cleanse 90's.    11437    878    2015-08-23 11:32:42    2015-08-23 11:32:42    1
9505    Xoxo yolo meditation small batch flannel sartorial. Pour-over chambray farm-to-table craft beer cleanse carry. Freegan fashion axe gastropub typewriter. Etsy umami bicycle rights tilde loko mumblecore.    18710    859    2015-06-13 12:53:07    2015-06-13 12:53:07    1
9506    Taxidermy ramps yr cred five dollar toast. Tattooed locavore pabst yr narwhal drinking mixtape semiotics. Pickled meh vegan gentrify art party xoxo.    15766    586    2015-12-13 15:15:44    2015-12-13 15:15:44    1
9507    Ennui meggings craft beer literally small batch flannel biodiesel. Wes anderson readymade literally. Lo-fi ramps goth humblebrag keytar williamsburg paleo. Skateboard quinoa occupy vice pug hammock. Viral chicharrones skateboard tilde.    14496    758    2015-11-26 21:51:57    2015-11-26 21:51:57    1
9509    Swag park pour-over literally celiac taxidermy. Kinfolk slow-carb vinyl lomo street health iphone leggings. Small batch sriracha pug.    18391    766    2015-06-23 15:20:10    2015-06-23 15:20:10    1
9510    Tousled tumblr chicharrones biodiesel photo booth raw denim. Chambray pitchfork tousled. Sriracha viral austin fingerstache kombucha schlitz. Quinoa beard celiac bushwick.    10925    536    2015-04-30 02:40:36    2015-04-30 02:40:36    1
9511    Xoxo polaroid vinegar pour-over flexitarian. Fixie diy chicharrones direct trade paleo. Food truck yr selfies. 90's mlkshk kitsch hashtag kogi pug bushwick tattooed. Pour-over photo booth mlkshk kogi park chillwave blog brooklyn.    14544    743    2015-05-04 22:56:39    2015-05-04 22:56:39    1
9512    Whatever try-hard wayfarers. Master goth pinterest banjo iphone bespoke leggings crucifix. Kitsch tumblr vegan brunch vinegar.    15079    656    2016-03-22 19:04:05    2016-03-22 19:04:05    1
9513    Carry single-origin coffee godard viral butcher. Squid knausgaard trust fund hammock pork belly ennui iphone. Xoxo hella cred direct trade disrupt. Fanny pack vice meditation occupy actually narwhal blue bottle.    18201    671    2015-06-01 16:31:34    2015-06-01 16:31:34    1
9514    Readymade organic godard pug. Tousled selvage microdosing literally chartreuse pork belly yuccie. Street hoodie kale chips yr. Lomo semiotics hashtag messenger bag fixie.    16323    577    2016-02-19 23:22:35    2016-02-19 23:22:35    1
9515    Bushwick shoreditch beard drinking freegan. You probably haven't heard of them fanny pack cleanse viral portland hoodie intelligentsia hashtag. Bushwick biodiesel tousled wayfarers vinegar pabst keffiyeh. Quinoa squid waistcoat iphone 3 wolf moon five dollar toast.    11255    579    2015-07-16 03:02:43    2015-07-16 03:02:43    1
9516    Hella everyday lumbersexual fanny pack kombucha knausgaard craft beer. Put a bird on it pickled craft beer tofu. 3 wolf moon quinoa disrupt williamsburg meditation yolo.    12699    940    2015-09-06 19:46:36    2015-09-06 19:46:36    1
9517    Asymmetrical bushwick distillery. Banh mi vhs craft beer scenester. Skateboard pug locavore heirloom leggings.    16138    497    2015-08-13 08:58:19    2015-08-13 08:58:19    1
9518    Sustainable fanny pack fixie. Literally cornhole cray skateboard chicharrones celiac. Kogi loko twee authentic cold-pressed. Post-ironic xoxo vegan master mlkshk cold-pressed cornhole tousled. Tumblr taxidermy poutine echo cronut.    10432    839    2015-07-14 13:01:33    2015-07-14 13:01:33    1
9519    Brunch artisan neutra. Tousled paleo schlitz kitsch knausgaard. Tote bag food truck artisan actually chambray fashion axe.    16270    769    2015-12-09 06:05:35    2015-12-09 06:05:35    1
9520    Farm-to-table fingerstache chillwave. Lomo 3 wolf moon artisan readymade cold-pressed. Umami neutra direct trade gastropub banh mi.    10479    623    2016-01-09 16:40:59    2016-01-09 16:40:59    1
9522    Taxidermy actually lo-fi venmo synth migas marfa wes anderson. Austin narwhal salvia 8-bit pop-up knausgaard venmo. Shoreditch carry kickstarter gastropub mixtape fap scenester pinterest. Slow-carb chillwave bicycle rights mumblecore polaroid.    15057    539    2015-07-10 03:12:20    2015-07-10 03:12:20    1
9523    Flexitarian neutra brunch tilde diy cardigan yr dreamcatcher. Brunch kickstarter hoodie wayfarers meggings. Austin everyday yolo. Messenger bag beard twee. Chartreuse hoodie jean shorts meh ramps craft beer.    18703    958    2016-01-01 01:50:13    2016-01-01 01:50:13    1
9554    Selfies echo bushwick biodiesel salvia. Synth cronut pickled. Plaid beard banh mi street. Biodiesel sustainable swag raw denim venmo. Church-key crucifix mixtape salvia butcher selfies scenester.    10196    501    2015-09-12 18:11:46    2015-09-12 18:11:46    1
9524    Narwhal butcher selvage normcore hoodie taxidermy vice. Ennui church-key keytar you probably haven't heard of them sartorial tote bag. Keffiyeh cronut authentic master locavore roof. Narwhal actually leggings dreamcatcher shoreditch.    11416    930    2015-09-20 03:36:33    2015-09-20 03:36:33    1
9525    Locavore shabby chic trust fund. Viral jean shorts marfa vinyl leggings fingerstache. Fap quinoa whatever park ennui yr.    10285    743    2015-05-20 23:33:29    2015-05-20 23:33:29    1
9526    Leggings waistcoat lumbersexual vhs xoxo lomo. Keffiyeh tumblr carry sartorial crucifix. Actually crucifix stumptown ramps intelligentsia. Swag freegan everyday. Pug messenger bag fingerstache mustache godard.    17653    938    2016-04-10 12:30:14    2016-04-10 12:30:14    1
9527    Organic seitan messenger bag tattooed art party. Xoxo five dollar toast brunch goth hoodie ugh gluten-free. Ramps selfies park migas keffiyeh knausgaard. Mlkshk banh mi vhs you probably haven't heard of them pickled lo-fi.    18472    933    2015-11-08 02:45:09    2015-11-08 02:45:09    1
9528    Biodiesel kickstarter tilde. Lomo twee actually neutra wolf before they sold out polaroid chia. Salvia chicharrones slow-carb disrupt keytar biodiesel beard polaroid. Beard slow-carb williamsburg synth goth irony. Thundercats hammock cleanse.    11581    555    2015-12-09 02:40:53    2015-12-09 02:40:53    1
9529    Direct trade organic keffiyeh pinterest meggings synth before they sold out. Whatever narwhal cray leggings mixtape banh mi. Seitan flexitarian austin offal helvetica pinterest.    14215    845    2015-11-16 21:23:10    2015-11-16 21:23:10    1
9530    Flexitarian franzen park celiac marfa austin neutra quinoa. Gluten-free lomo mustache food truck echo tumblr. Messenger bag fap synth freegan. Lomo thundercats lo-fi cronut. Whatever chia tofu bespoke lo-fi williamsburg cardigan locavore.    10670    609    2016-03-27 21:49:32    2016-03-27 21:49:32    1
9532    Single-origin coffee microdosing dreamcatcher ethical fanny pack hammock pabst. Chambray viral banh mi carry distillery kombucha yuccie direct trade. Before they sold out carry wayfarers authentic.    10780    844    2016-04-04 05:11:02    2016-04-04 05:11:02    1
9533    Blog chambray 90's tacos kinfolk meh scenester. Pop-up street paleo pork belly. Tilde farm-to-table food truck yolo distillery. Bicycle rights yolo wolf pour-over fixie locavore swag.    13602    534    2015-08-20 12:09:07    2015-08-20 12:09:07    1
9534    Bespoke street echo diy pour-over cliche church-key fap. Chambray viral pour-over trust fund tofu williamsburg. Kitsch banjo portland crucifix whatever bespoke listicle fixie. Photo booth chartreuse brooklyn distillery retro.    11424    813    2016-03-08 11:21:45    2016-03-08 11:21:45    1
9535    Humblebrag venmo mustache yr cronut salvia. Messenger bag migas literally ennui put a bird on it slow-carb sustainable. Small batch intelligentsia franzen park bicycle rights biodiesel pbr&b 8-bit.    14689    714    2015-12-16 09:09:06    2015-12-16 09:09:06    1
9536    Butcher literally food truck listicle hashtag austin kogi. Viral master everyday ethical portland crucifix letterpress yr. Ugh neutra cliche ramps.    12711    892    2016-02-27 21:21:16    2016-02-27 21:21:16    1
9537    Tofu gluten-free kinfolk yolo tousled disrupt migas try-hard. Farm-to-table polaroid heirloom kickstarter meh mixtape crucifix. Shoreditch meggings loko freegan narwhal. Salvia single-origin coffee gluten-free bicycle rights etsy everyday synth. Gluten-free health hoodie brunch artisan.    11562    702    2016-01-29 10:49:43    2016-01-29 10:49:43    1
9539    Heirloom master intelligentsia cardigan tattooed kale chips letterpress. Slow-carb narwhal celiac stumptown. Fanny pack marfa master butcher. Pork belly taxidermy marfa hashtag gluten-free stumptown portland photo booth. Before they sold out selvage mixtape jean shorts godard yuccie bitters intelligentsia.    10533    482    2016-03-31 18:37:18    2016-03-31 18:37:18    1
9540    Brooklyn vinegar gluten-free. Kitsch letterpress craft beer neutra ugh. Organic tofu dreamcatcher selfies pitchfork hashtag twee distillery.    18828    532    2016-03-31 21:44:58    2016-03-31 21:44:58    1
9541    Yuccie kale chips bicycle rights celiac sriracha heirloom kitsch. Yr hammock xoxo. Cardigan freegan salvia semiotics. 8-bit mixtape vinyl franzen echo messenger bag gentrify poutine.    16383    697    2016-02-23 16:44:46    2016-02-23 16:44:46    1
9542    Iphone waistcoat fashion axe post-ironic williamsburg gastropub. Pop-up poutine typewriter flannel paleo flexitarian kale chips lo-fi. Truffaut normcore intelligentsia butcher sustainable franzen neutra cold-pressed. Fashion axe cardigan freegan schlitz kombucha.    10674    558    2016-03-06 00:16:25    2016-03-06 00:16:25    1
9543    Goth keffiyeh small batch. Goth pabst quinoa sustainable. Disrupt irony tacos. Gentrify photo booth cardigan tote bag meh everyday freegan. Meditation food truck tilde beard chillwave.    18530    687    2015-09-07 16:35:56    2015-09-07 16:35:56    1
9544    Vinyl meh brunch yolo vegan. Taxidermy yr you probably haven't heard of them. Stumptown hammock portland.    16223    512    2015-09-20 09:16:58    2015-09-20 09:16:58    1
9545    Humblebrag kombucha stumptown cray readymade fixie church-key. Migas pop-up cold-pressed. Biodiesel normcore pabst retro crucifix chambray celiac.    18633    491    2015-09-07 00:40:19    2015-09-07 00:40:19    1
9546    Vinegar yr irony echo 90's microdosing. Seitan mumblecore leggings. Tote bag beard pitchfork sriracha pinterest deep v listicle shoreditch. Franzen chicharrones literally +1. Twee pitchfork skateboard next level crucifix selvage cray kickstarter.    12230    688    2016-03-13 01:09:36    2016-03-13 01:09:36    1
9548    Distillery fanny pack vhs craft beer cleanse lo-fi farm-to-table. Cred tote bag pabst green juice everyday aesthetic. Swag banh mi heirloom gluten-free street brooklyn everyday tilde. Bespoke hoodie actually. Kickstarter marfa echo schlitz.    17527    604    2015-11-09 08:33:24    2015-11-09 08:33:24    1
9549    Lomo stumptown street helvetica bushwick iphone before they sold out. Bitters lomo brooklyn. Tacos forage lomo.    15104    836    2015-12-14 05:50:44    2015-12-14 05:50:44    1
9550    Blue bottle brunch echo messenger bag mlkshk church-key yolo. Gentrify 3 wolf moon knausgaard. Ethical offal health. Goth mixtape shabby chic whatever echo. Stumptown cray post-ironic ethical wes anderson quinoa craft beer.    16454    697    2016-02-26 23:21:06    2016-02-26 23:21:06    1
9551    Five dollar toast try-hard keytar plaid farm-to-table direct trade. Chartreuse yolo austin pickled gluten-free stumptown disrupt. Wes anderson meditation mumblecore vinyl hella mixtape kogi sartorial. Actually master crucifix direct trade pug listicle typewriter wolf.    18937    877    2016-02-16 21:54:59    2016-02-16 21:54:59    1
9552    Deep v cray green juice kombucha synth kickstarter mumblecore fanny pack. Thundercats forage butcher. Polaroid hammock bushwick messenger bag.    13084    606    2015-06-19 21:23:43    2015-06-19 21:23:43    1
9553    Mixtape mustache retro fap pbr&b ramps pitchfork quinoa. Ennui tilde pug brooklyn selfies microdosing disrupt migas. Pickled mixtape chia drinking austin migas. Street knausgaard cold-pressed tumblr disrupt. Small batch gluten-free plaid.    17262    858    2015-06-02 14:48:13    2015-06-02 14:48:13    1
9555    Health echo stumptown austin fixie jean shorts. Direct trade franzen celiac yr kale chips. Truffaut 3 wolf moon vegan thundercats. Single-origin coffee kombucha narwhal intelligentsia heirloom iphone.    13995    956    2015-08-04 05:38:26    2015-08-04 05:38:26    1
9556    Park farm-to-table try-hard narwhal portland stumptown brunch. Meggings you probably haven't heard of them sustainable biodiesel distillery 3 wolf moon farm-to-table forage. Freegan helvetica meggings.    16629    540    2015-07-02 16:18:32    2015-07-02 16:18:32    1
9559    Loko small batch tacos roof echo. 8-bit flexitarian tousled. Leggings everyday crucifix. Forage neutra bicycle rights before they sold out master goth butcher.    17688    542    2015-12-21 07:27:06    2015-12-21 07:27:06    1
9560    Truffaut knausgaard disrupt letterpress. Pour-over chicharrones direct trade hella. Health freegan tumblr pour-over direct trade kickstarter squid humblebrag. Bushwick swag fap knausgaard +1. Pickled neutra hammock bespoke wayfarers.    13427    700    2015-11-29 19:40:38    2015-11-29 19:40:38    1
9561    Bespoke cleanse five dollar toast banh mi thundercats forage. Before they sold out tilde swag pop-up messenger bag pinterest cred. Waistcoat narwhal carry iphone. Godard shabby chic cronut. Shabby chic bitters vice yr williamsburg keytar before they sold out squid.    17021    942    2015-07-15 06:03:48    2015-07-15 06:03:48    1
9562    Ugh venmo mumblecore kickstarter direct trade. Diy single-origin coffee stumptown fingerstache fixie chambray salvia meh. Xoxo sustainable pinterest master poutine occupy. Waistcoat farm-to-table locavore. Organic listicle poutine tote bag carry.    10535    529    2015-05-07 22:56:29    2015-05-07 22:56:29    1
9563    Viral dreamcatcher literally diy keytar carry leggings cold-pressed. Everyday jean shorts gentrify crucifix keytar pug five dollar toast bicycle rights. Roof blue bottle ennui celiac. Master plaid lo-fi marfa gluten-free beard. Polaroid iphone asymmetrical.    16725    657    2015-05-09 08:34:28    2015-05-09 08:34:28    1
9564    Carry yr kogi kickstarter sustainable diy banh mi. 8-bit tilde viral five dollar toast. Pork belly heirloom forage yuccie. Marfa tousled cronut knausgaard butcher. Carry microdosing xoxo intelligentsia food truck.    13856    581    2015-08-30 21:59:32    2015-08-30 21:59:32    1
9565    Etsy pour-over taxidermy direct trade readymade normcore yuccie. Asymmetrical echo fap thundercats hella xoxo vinegar. Fixie fanny pack heirloom echo. Green juice bushwick raw denim freegan banh mi wes anderson.    15936    799    2016-01-31 13:16:01    2016-01-31 13:16:01    1
9566    Next level microdosing pug. Diy poutine kombucha hella. Bushwick taxidermy truffaut.    15449    947    2015-05-23 12:00:23    2015-05-23 12:00:23    1
9567    Park everyday carry ennui kale chips. Shabby chic paleo tumblr blog. Chartreuse banjo kogi listicle yolo vegan. Wolf asymmetrical hoodie tumblr microdosing deep v offal keytar. Hammock quinoa pabst bitters meggings aesthetic salvia sartorial.    14457    697    2015-11-05 17:46:41    2015-11-05 17:46:41    1
9568    Lo-fi iphone flannel kickstarter chambray. Tacos scenester echo selvage tofu. 8-bit literally tacos portland messenger bag yuccie fanny pack. Migas offal meh carry chartreuse. Cardigan etsy disrupt.    11982    945    2015-11-14 11:21:27    2015-11-14 11:21:27    1
9570    90's hella put a bird on it master celiac banh mi. Polaroid freegan whatever banjo banh mi. Meh heirloom plaid butcher kinfolk freegan locavore park. Literally diy raw denim vice bitters. Readymade before they sold out normcore crucifix actually kitsch.    14788    669    2015-12-12 17:20:13    2015-12-12 17:20:13    1
9571    Tumblr kickstarter pug biodiesel next level. Twee meggings tousled bitters whatever fingerstache intelligentsia. Brunch fingerstache sartorial kogi shoreditch diy disrupt ennui.    12659    582    2015-05-23 07:31:20    2015-05-23 07:31:20    1
9573    Kitsch meditation migas green juice pabst asymmetrical biodiesel cleanse. Cred small batch everyday. Pabst cold-pressed hammock brunch kickstarter. Kinfolk 3 wolf moon organic. Artisan bicycle rights keytar knausgaard thundercats actually cronut.    12967    494    2015-12-25 00:58:18    2015-12-25 00:58:18    1
9575    Art party health park waistcoat godard aesthetic. Put a bird on it chambray waistcoat vegan listicle. Hammock kinfolk pug meggings.    12666    957    2015-09-16 10:59:40    2015-09-16 10:59:40    1
9576    Pork belly fixie fingerstache ethical. Pork belly salvia selfies pop-up carry schlitz. Tousled seitan vhs pug. 90's ugh tofu mlkshk heirloom single-origin coffee butcher wolf. Vinegar brooklyn 8-bit dreamcatcher pabst kinfolk.    12470    892    2016-03-16 23:22:40    2016-03-16 23:22:40    1
9577    Typewriter yolo photo booth asymmetrical pickled marfa semiotics readymade. Seitan hammock disrupt tacos deep v keytar heirloom. Poutine ennui mixtape etsy godard street fap. Pour-over 8-bit single-origin coffee flannel offal.    12218    480    2015-10-19 04:54:15    2015-10-19 04:54:15    1
9578    Locavore salvia cornhole vinyl lumbersexual pop-up kale chips. Gentrify waistcoat meditation sartorial gluten-free cliche fanny pack brunch. Kombucha mixtape iphone ramps kickstarter selfies polaroid photo booth. Shoreditch fanny pack hammock gastropub normcore distillery. Leggings marfa pbr&b polaroid salvia helvetica paleo.    13503    736    2015-08-05 03:17:47    2015-08-05 03:17:47    1
9579    Banjo cardigan yolo literally butcher. Helvetica cleanse hoodie wayfarers narwhal cliche. Sriracha waistcoat mustache bicycle rights craft beer xoxo williamsburg. Fixie raw denim farm-to-table messenger bag kombucha chambray park.    16055    677    2016-04-10 22:24:49    2016-04-10 22:24:49    1
9580    Cliche occupy knausgaard lumbersexual. Meh bespoke tousled farm-to-table tattooed plaid freegan schlitz. Cornhole literally tousled direct trade loko schlitz biodiesel cronut. Wayfarers vhs health tote bag scenester single-origin coffee chillwave forage. Hella franzen synth lo-fi put a bird on it tote bag truffaut slow-carb.    13330    483    2016-02-29 06:13:11    2016-02-29 06:13:11    1
9581    Umami neutra mixtape chillwave bespoke. Kogi leggings skateboard. Fixie selfies freegan occupy 8-bit shabby chic green juice ennui. Art party listicle hoodie raw denim disrupt.    16532    468    2016-03-29 11:43:46    2016-03-29 11:43:46    1
9583    Selvage vice quinoa jean shorts salvia. Paleo direct trade vhs tilde. Cold-pressed offal kogi austin freegan goth microdosing.    10294    827    2016-01-23 20:28:08    2016-01-23 20:28:08    1
9584    Actually cold-pressed five dollar toast. Sustainable blue bottle deep v organic tattooed beard park fingerstache. Pug brunch williamsburg tacos.    15057    516    2016-04-10 06:27:08    2016-04-10 06:27:08    1
9587    Neutra humblebrag vice goth health locavore wayfarers tofu. Goth freegan five dollar toast organic. Typewriter retro hoodie 8-bit. Forage occupy shabby chic jean shorts trust fund raw denim.    18644    481    2015-08-31 13:42:20    2015-08-31 13:42:20    1
9588    Tofu flexitarian aesthetic 8-bit celiac banh mi. Vegan leggings polaroid williamsburg tilde hella goth. Pickled butcher occupy try-hard humblebrag yuccie everyday.    10134    836    2016-03-21 03:28:28    2016-03-21 03:28:28    1
9589    Disrupt church-key pinterest retro godard. Occupy tote bag loko godard intelligentsia. Pop-up hammock bushwick.    13750    865    2015-06-29 13:35:57    2015-06-29 13:35:57    1
9590    Diy banjo tacos crucifix vegan disrupt sriracha. Green juice tacos next level cold-pressed selfies 3 wolf moon. Lomo fashion axe blog 3 wolf moon cred.    12643    822    2016-01-02 10:05:04    2016-01-02 10:05:04    1
9591    Irony cronut actually shabby chic yr. Single-origin coffee tofu bespoke crucifix vice yuccie organic. Post-ironic ramps synth helvetica lo-fi 90's freegan.    11711    671    2016-01-01 21:48:48    2016-01-01 21:48:48    1
9592    Pabst offal kogi normcore before they sold out irony skateboard godard. Letterpress tumblr migas lo-fi leggings humblebrag. Park schlitz trust fund etsy pitchfork paleo yr. Freegan carry pabst asymmetrical mumblecore.    15814    553    2016-03-11 11:20:49    2016-03-11 11:20:49    1
9593    Blue bottle plaid fixie 90's vice. Hoodie offal paleo vhs put a bird on it 8-bit kale chips. Ennui salvia slow-carb.    12399    612    2015-08-24 04:32:47    2015-08-24 04:32:47    1
9595    Ramps hashtag pbr&b xoxo selfies wayfarers. Occupy park tilde letterpress. Pour-over normcore plaid yr meditation semiotics poutine tattooed. Tattooed trust fund etsy heirloom.    10524    776    2016-01-30 14:28:15    2016-01-30 14:28:15    1
9596    Cleanse before they sold out carry single-origin coffee kale chips street gentrify. Banh mi truffaut keytar chicharrones roof street pop-up. Bitters bespoke bushwick bicycle rights vinegar heirloom food truck paleo. Synth before they sold out chartreuse +1.    11950    595    2015-10-13 08:06:14    2015-10-13 08:06:14    1
9597    Irony bicycle rights messenger bag occupy. Tacos aesthetic carry loko kogi kickstarter neutra. Disrupt gastropub bushwick hella asymmetrical deep v cronut.    16227    558    2015-05-26 04:02:18    2015-05-26 04:02:18    1
9598    Leggings selvage kinfolk diy. Aesthetic jean shorts green juice yr. Salvia readymade helvetica plaid.    11386    951    2015-10-28 19:30:11    2015-10-28 19:30:11    1
9599    Pug wayfarers +1 humblebrag keffiyeh tousled. Slow-carb venmo blog meggings try-hard cray readymade. Chia five dollar toast bitters fap brooklyn. Swag occupy pabst cold-pressed. Chicharrones chia yolo bicycle rights kombucha.    11016    512    2016-02-10 01:21:07    2016-02-10 01:21:07    1
9600    Quinoa tilde whatever pork belly sriracha raw denim. Umami chia bicycle rights marfa poutine. Cleanse neutra hammock fashion axe fap.    17386    824    2015-06-03 13:08:04    2015-06-03 13:08:04    1
9602    Bitters try-hard cred kale chips poutine kinfolk gentrify drinking. Dreamcatcher pour-over vegan vinyl. You probably haven't heard of them godard xoxo vice wes anderson. Blog tofu narwhal. Forage austin food truck schlitz selvage sustainable organic.    11867    907    2015-10-02 09:37:16    2015-10-02 09:37:16    1
9604    Iphone chia master yolo venmo cronut. Crucifix pug synth mumblecore mlkshk. Synth salvia cornhole viral fanny pack letterpress kale chips chartreuse.    15227    720    2015-06-19 23:58:13    2015-06-19 23:58:13    1
9606    Godard diy park narwhal meggings. Thundercats skateboard master letterpress fashion axe carry quinoa. Hoodie lo-fi letterpress vinyl put a bird on it slow-carb. Vice small batch schlitz skateboard narwhal swag tumblr. Jean shorts whatever artisan biodiesel.    18439    948    2016-03-08 03:44:49    2016-03-08 03:44:49    1
9607    Organic lomo fixie tilde. Tote bag pop-up brunch selvage kombucha venmo vinegar beard. Banjo try-hard banh mi kale chips direct trade trust fund wolf tilde. Poutine leggings quinoa. Yolo letterpress shoreditch tumblr you probably haven't heard of them carry.    12936    958    2016-01-23 05:47:51    2016-01-23 05:47:51    1
9608    Franzen messenger bag gentrify everyday waistcoat. Leggings loko literally disrupt. Pour-over diy food truck mumblecore typewriter banjo actually quinoa. Thundercats fashion axe blog. Brooklyn etsy forage tattooed flexitarian synth.    11775    565    2015-06-25 16:48:43    2015-06-25 16:48:43    1
9609    Pour-over waistcoat narwhal retro fixie. Yuccie pug pinterest. Kogi butcher whatever cornhole roof salvia.    14959    843    2016-03-28 03:26:42    2016-03-28 03:26:42    1
9610    Brooklyn dreamcatcher sartorial. 90's meggings kale chips tilde art party tote bag park. Brunch meh etsy sustainable. Twee blog lo-fi park schlitz freegan cred.    13035    916    2015-09-20 00:52:45    2015-09-20 00:52:45    1
9612    Gentrify artisan small batch quinoa etsy sartorial hoodie wayfarers. Viral meggings messenger bag stumptown craft beer offal. Church-key kinfolk post-ironic vinyl. Retro biodiesel helvetica offal meh etsy photo booth.    14207    647    2015-12-11 23:07:14    2015-12-11 23:07:14    1
9613    Art party carry schlitz kale chips. 90's blog tousled cray chia vegan direct trade. Readymade tousled single-origin coffee letterpress mlkshk yolo kale chips photo booth. Everyday shoreditch asymmetrical sustainable.    16254    664    2015-05-06 00:45:36    2015-05-06 00:45:36    1
9614    Blue bottle raw denim you probably haven't heard of them pug squid literally. Polaroid distillery wolf. Roof dreamcatcher wayfarers.    18333    480    2015-10-20 08:27:58    2015-10-20 08:27:58    1
9615    Trust fund tattooed food truck biodiesel. Sriracha kickstarter authentic 90's meggings put a bird on it. Fingerstache church-key hammock sriracha leggings brunch roof street.    17754    781    2015-11-13 07:15:20    2015-11-13 07:15:20    1
9616    Letterpress fap cliche keytar intelligentsia meditation disrupt bespoke. Wolf seitan ethical fingerstache. Pabst chia letterpress brooklyn butcher. Vinyl ethical meggings kickstarter offal occupy.    12323    632    2015-08-13 13:18:42    2015-08-13 13:18:42    1
9617    Banjo keffiyeh xoxo normcore franzen. Occupy etsy diy. Helvetica mumblecore stumptown migas bitters butcher. Wes anderson franzen tilde schlitz tattooed helvetica tofu.    17235    483    2016-03-29 02:06:06    2016-03-29 02:06:06    1
9618    Hella knausgaard slow-carb flexitarian. Portland tousled mixtape tattooed knausgaard. Xoxo portland wayfarers crucifix ramps.    15127    851    2015-05-14 22:39:55    2015-05-14 22:39:55    1
9619    Freegan kogi deep v flannel. 90's gluten-free gentrify pabst selfies. Poutine crucifix vice squid banjo tilde iphone. Shoreditch wayfarers kickstarter flexitarian tumblr hoodie hashtag.    17568    535    2015-10-25 20:50:32    2015-10-25 20:50:32    1
9620    Letterpress post-ironic cleanse aesthetic tilde meh everyday. Helvetica freegan photo booth tacos forage chia taxidermy mixtape. Distillery swag cronut deep v pop-up ennui blue bottle keffiyeh.    17206    550    2015-12-17 04:11:49    2015-12-17 04:11:49    1
9621    Green juice beard meggings keffiyeh cliche single-origin coffee chillwave seitan. Lumbersexual keffiyeh quinoa pop-up locavore trust fund austin bicycle rights. Meh before they sold out you probably haven't heard of them portland kickstarter cray tumblr kitsch.    14003    842    2015-07-19 04:48:07    2015-07-19 04:48:07    1
9622    Austin shabby chic aesthetic banh mi chartreuse carry. Quinoa tousled 90's carry. Truffaut meditation tousled kinfolk church-key. Sustainable helvetica master portland tumblr franzen keytar echo.    15348    956    2015-09-22 12:21:04    2015-09-22 12:21:04    1
9623    Tofu vinyl truffaut craft beer messenger bag pitchfork roof. Messenger bag cleanse church-key. Fanny pack whatever ennui cliche schlitz forage pabst taxidermy.    14200    694    2015-10-04 02:19:27    2015-10-04 02:19:27    1
9624    Salvia you probably haven't heard of them kombucha park messenger bag shabby chic. Authentic carry goth messenger bag. Yolo aesthetic 90's cronut cred tofu.    14758    710    2015-06-28 15:39:35    2015-06-28 15:39:35    1
9625    Helvetica vegan farm-to-table tote bag 3 wolf moon. Xoxo disrupt pabst put a bird on it. Cliche bicycle rights echo godard ethical whatever. Cliche tumblr tilde gluten-free. Marfa +1 bitters 90's blog offal pitchfork.    14676    774    2015-12-30 13:37:55    2015-12-30 13:37:55    1
9626    Portland brooklyn hella next level single-origin coffee twee pour-over. Taxidermy hella kickstarter put a bird on it wolf asymmetrical whatever austin. Health wolf squid trust fund whatever franzen. Mlkshk neutra put a bird on it selfies everyday typewriter cleanse.    14140    910    2015-11-15 07:24:44    2015-11-15 07:24:44    1
9627    Tote bag green juice locavore selvage street lumbersexual offal. Ugh intelligentsia tote bag polaroid letterpress dreamcatcher meditation. Fixie aesthetic cardigan wolf vinegar stumptown artisan portland. Ramps kale chips heirloom pug.    10322    505    2016-01-11 12:37:31    2016-01-11 12:37:31    1
9628    Synth gastropub cronut pour-over. Vinegar schlitz artisan yolo hella freegan pour-over tote bag. Aesthetic lo-fi blog 90's hella pabst.    14703    937    2016-01-27 13:55:54    2016-01-27 13:55:54    1
9630    Disrupt cliche knausgaard vinyl lomo mlkshk vegan tumblr. Swag letterpress freegan irony gastropub cardigan hella. Pug squid synth flexitarian chambray.    10709    771    2015-08-13 03:07:08    2015-08-13 03:07:08    1
9631    Freegan poutine helvetica 90's literally gentrify diy bespoke. Typewriter marfa kickstarter pickled paleo wayfarers blog. Keytar wayfarers taxidermy hammock next level fashion axe everyday portland. Five dollar toast ethical fingerstache. Plaid readymade wolf intelligentsia forage.    16728    850    2015-07-23 12:52:19    2015-07-23 12:52:19    1
9632    Yolo normcore wayfarers ugh cleanse chillwave +1. Schlitz quinoa 90's stumptown salvia +1. Organic quinoa cornhole gluten-free. Cred chillwave mlkshk umami chartreuse. Cornhole intelligentsia normcore hoodie truffaut.    16376    919    2016-02-05 21:22:56    2016-02-05 21:22:56    1
9633    Meggings iphone retro. Master occupy you probably haven't heard of them dreamcatcher. Blog thundercats meggings fanny pack godard vinyl.    12023    691    2015-11-17 05:15:17    2015-11-17 05:15:17    1
9634    Irony whatever wayfarers before they sold out tote bag. Banh mi shoreditch drinking keytar. Austin chia meggings fixie. Godard etsy gastropub master blog beard distillery plaid. Paleo tattooed fingerstache hella distillery letterpress iphone.    18002    803    2015-06-18 16:05:11    2015-06-18 16:05:11    1
9635    Blog shoreditch 8-bit roof selfies kombucha fap. Yuccie blue bottle microdosing. Gentrify disrupt organic tilde slow-carb schlitz post-ironic wes anderson. Venmo pbr&b synth salvia meh.    17121    784    2015-06-14 00:19:39    2015-06-14 00:19:39    1
9636    Umami pug portland chartreuse. Echo plaid hashtag fap before they sold out. Deep v fingerstache direct trade narwhal. Brooklyn meggings hashtag craft beer park vegan.    14033    958    2015-07-18 04:25:30    2015-07-18 04:25:30    1
9637    Blog slow-carb etsy wes anderson. Readymade biodiesel kickstarter cleanse narwhal butcher. Bitters iphone pour-over paleo meh. Butcher polaroid paleo dreamcatcher swag.    16064    837    2016-01-03 05:23:17    2016-01-03 05:23:17    1
10273    Marfa forage slow-carb deep v cleanse schlitz tote bag. Pork belly etsy scenester try-hard. Vhs park kitsch meditation.    16894    654    2015-11-26 02:33:42    2015-11-26 02:33:42    1
9639    Retro distillery cliche quinoa neutra chartreuse church-key. Mixtape bitters skateboard vice pour-over neutra freegan heirloom. Keffiyeh raw denim vinegar umami chillwave lumbersexual pop-up waistcoat.    13909    901    2016-03-20 15:46:02    2016-03-20 15:46:02    1
9640    Trust fund letterpress pinterest cred park biodiesel distillery. Whatever leggings yr forage godard jean shorts. Yolo jean shorts direct trade next level banh mi lumbersexual. Occupy microdosing goth taxidermy trust fund 3 wolf moon helvetica meditation. Tumblr raw denim hoodie iphone distillery ethical disrupt.    15358    852    2015-06-13 19:25:18    2015-06-13 19:25:18    1
9641    Slow-carb raw denim heirloom tote bag. Normcore butcher polaroid celiac try-hard diy shoreditch whatever. Marfa bushwick sustainable. Keffiyeh iphone tacos gastropub.    15077    826    2015-06-14 15:09:08    2015-06-14 15:09:08    1
9642    Tilde deep v vinyl master tattooed polaroid. Squid wes anderson actually salvia before they sold out flannel plaid. Lo-fi plaid ennui letterpress pickled single-origin coffee. Keffiyeh tumblr brunch offal godard kale chips before they sold out stumptown. 8-bit yr single-origin coffee jean shorts hella artisan tacos.    11531    951    2016-01-09 01:54:55    2016-01-09 01:54:55    1
9643    Semiotics cred williamsburg disrupt irony tumblr. Whatever listicle heirloom 8-bit. Xoxo iphone sartorial try-hard post-ironic.    11614    549    2016-02-11 02:58:58    2016-02-11 02:58:58    1
9644    Fanny pack microdosing meditation venmo. Flannel meditation selfies fap selvage marfa bespoke occupy. Leggings brooklyn hashtag schlitz ennui. Echo blue bottle meditation flexitarian helvetica chia neutra tacos. Pabst hoodie tumblr poutine slow-carb gentrify irony.    15308    537    2016-03-11 16:23:07    2016-03-11 16:23:07    1
9645    Bushwick fap authentic vinyl flannel freegan. Tofu ramps ennui iphone knausgaard mustache. Shoreditch migas typewriter art party street flexitarian park. Yuccie austin ugh waistcoat celiac sartorial. Meditation pug vinyl meggings retro williamsburg yolo.    10179    694    2015-11-25 12:19:02    2015-11-25 12:19:02    1
9646    Celiac poutine yuccie. Jean shorts vinegar irony synth. Beard synth freegan bushwick umami heirloom.    12799    609    2016-03-23 20:36:53    2016-03-23 20:36:53    1
9647    90's blog tofu knausgaard. Normcore put a bird on it lumbersexual kickstarter microdosing. Irony polaroid tumblr stumptown mumblecore.    11963    954    2015-05-28 08:13:06    2015-05-28 08:13:06    1
9648    Cardigan fanny pack tousled banjo before they sold out polaroid austin kale chips. Umami williamsburg etsy. Disrupt ramps carry +1 etsy aesthetic organic swag. Austin kickstarter viral meditation craft beer humblebrag slow-carb.    12289    747    2015-06-30 16:24:49    2015-06-30 16:24:49    1
9649    Hoodie selfies wolf cliche franzen bespoke mustache actually. Humblebrag kitsch ennui post-ironic squid. Kickstarter selfies actually letterpress bicycle rights. Tote bag lumbersexual keffiyeh photo booth kickstarter bushwick.    17574    901    2015-06-25 05:02:09    2015-06-25 05:02:09    1
9650    Butcher hella lumbersexual. Try-hard shoreditch street everyday meditation keytar. Hashtag ennui typewriter neutra. Chicharrones aesthetic put a bird on it bitters kickstarter. Chartreuse chicharrones quinoa.    13295    676    2016-03-26 11:59:05    2016-03-26 11:59:05    1
9651    Occupy godard everyday mumblecore. Wayfarers flexitarian fingerstache lomo kogi photo booth tousled meh. Crucifix wayfarers next level artisan 90's.    11357    769    2015-10-28 07:43:13    2015-10-28 07:43:13    1
9653    Meditation jean shorts shabby chic health narwhal irony. Vhs flexitarian 8-bit green juice thundercats typewriter master. Iphone drinking hashtag flexitarian viral heirloom chambray. Intelligentsia shabby chic vegan poutine brooklyn.    15211    703    2015-05-30 14:03:28    2015-05-30 14:03:28    1
9654    Flexitarian sartorial authentic single-origin coffee bicycle rights. Literally narwhal goth swag street biodiesel. Letterpress swag wayfarers taxidermy ethical beard. Mustache blog polaroid mumblecore cronut cred.    15752    682    2015-11-29 04:25:06    2015-11-29 04:25:06    1
9655    Franzen cronut health kickstarter gluten-free street. Hashtag cleanse leggings green juice wayfarers small batch. Wayfarers waistcoat blue bottle kogi hella mustache etsy paleo.    13898    770    2015-07-03 04:32:58    2015-07-03 04:32:58    1
9656    Roof meh hella street yolo tumblr. Farm-to-table pabst etsy drinking twee crucifix. Cronut distillery try-hard messenger bag intelligentsia cred knausgaard. Tofu pickled yuccie photo booth cred bicycle rights salvia hashtag.    11891    602    2015-12-12 09:09:56    2015-12-12 09:09:56    1
9657    Brooklyn bespoke kitsch you probably haven't heard of them. Bitters 3 wolf moon pbr&b meh gastropub next level green juice chia. Cliche brooklyn 3 wolf moon health meditation butcher meh polaroid.    11575    872    2015-04-28 05:23:45    2015-04-28 05:23:45    1
9658    Gentrify ugh typewriter migas yuccie farm-to-table. Kombucha lo-fi fashion axe pitchfork mlkshk vhs. Selfies cray 90's diy brunch you probably haven't heard of them.    18240    545    2015-05-20 01:07:21    2015-05-20 01:07:21    1
9659    Semiotics viral post-ironic swag venmo franzen slow-carb. Five dollar toast godard taxidermy gentrify narwhal raw denim mumblecore photo booth. Knausgaard hella typewriter paleo kickstarter distillery celiac cray. Readymade kitsch normcore. Tote bag yuccie park banjo.    15791    651    2016-02-10 00:48:13    2016-02-10 00:48:13    1
9661    Waistcoat banh mi sartorial fixie bushwick microdosing celiac. Lo-fi bicycle rights viral artisan paleo leggings. Craft beer wayfarers mustache thundercats. Freegan retro whatever irony locavore vice wes anderson. Dreamcatcher small batch migas art party cardigan messenger bag hella.    10084    479    2016-03-23 15:23:49    2016-03-23 15:23:49    1
9663    Bushwick butcher chartreuse tousled blog street occupy small batch. Organic gluten-free kinfolk bushwick chambray. Swag 3 wolf moon five dollar toast asymmetrical freegan mustache biodiesel marfa.    18055    942    2016-03-07 13:48:03    2016-03-07 13:48:03    1
9664    Taxidermy pickled tousled twee aesthetic tattooed actually. Ramps yolo master pickled quinoa thundercats meh. Before they sold out wolf occupy fixie chicharrones artisan cray.    17837    760    2015-05-19 23:25:15    2015-05-19 23:25:15    1
9666    Microdosing kitsch food truck knausgaard. Green juice thundercats ugh flannel asymmetrical. Venmo occupy vhs you probably haven't heard of them food truck swag post-ironic. Authentic franzen pinterest pork belly. Viral tilde cray narwhal fap kickstarter gastropub yr.    17254    605    2015-08-04 02:34:23    2015-08-04 02:34:23    1
9667    Forage put a bird on it kickstarter whatever stumptown messenger bag wayfarers blog. Irony organic paleo you probably haven't heard of them seitan carry franzen. Butcher fanny pack franzen yr green juice brunch disrupt.    11939    832    2015-08-04 09:10:46    2015-08-04 09:10:46    1
9668    Kinfolk tofu franzen cliche taxidermy. Cronut try-hard roof selfies skateboard cleanse fap. Cold-pressed tote bag freegan.    10002    809    2015-11-27 08:39:58    2015-11-27 08:39:58    1
9669    Pop-up pork belly polaroid xoxo truffaut bespoke. Tofu next level street cray pug banh mi. Photo booth salvia gentrify. Put a bird on it squid retro craft beer. Semiotics leggings 90's intelligentsia helvetica.    18985    709    2015-11-06 00:36:23    2015-11-06 00:36:23    1
9670    Wayfarers mustache xoxo. Street meh pinterest cardigan diy paleo mustache. Slow-carb bicycle rights synth.    10477    811    2016-01-26 17:49:35    2016-01-26 17:49:35    1
9671    3 wolf moon bicycle rights carry wes anderson retro street park craft beer. Chillwave vegan park. Offal scenester chillwave yolo slow-carb. Everyday green juice deep v hella locavore aesthetic. Semiotics hashtag cliche.    13121    756    2016-02-15 19:52:06    2016-02-15 19:52:06    1
9672    Stumptown waistcoat post-ironic sartorial kinfolk retro sustainable park. Stumptown polaroid neutra leggings. Vegan cronut lumbersexual heirloom. Asymmetrical taxidermy hella shabby chic austin. Vinegar single-origin coffee keytar dreamcatcher vhs aesthetic offal.    16865    922    2015-11-26 05:00:47    2015-11-26 05:00:47    1
9673    Ennui chartreuse keytar pug swag health irony banh mi. Everyday try-hard selfies keffiyeh cleanse. Craft beer asymmetrical brooklyn kogi. Next level letterpress chillwave tacos selfies knausgaard portland direct trade. Migas aesthetic humblebrag raw denim post-ironic pork belly.    10368    743    2016-03-21 19:25:29    2016-03-21 19:25:29    1
9674    Try-hard poutine wes anderson. Taxidermy bespoke tilde ennui. Viral narwhal lomo plaid.    18831    553    2016-03-10 00:01:19    2016-03-10 00:01:19    1
9675    Flannel crucifix diy readymade bushwick asymmetrical dreamcatcher. Polaroid gentrify migas fingerstache offal. 3 wolf moon sriracha distillery.    13372    940    2016-04-06 03:07:03    2016-04-06 03:07:03    1
9676    Iphone twee shabby chic gastropub blue bottle heirloom crucifix gentrify. Offal try-hard lomo chia sustainable williamsburg tacos. Leggings craft beer celiac direct trade bespoke hella. Plaid hashtag locavore yuccie pinterest aesthetic banh mi.    11305    939    2016-01-05 23:50:32    2016-01-05 23:50:32    1
9677    3 wolf moon brooklyn keffiyeh echo fap celiac mumblecore chartreuse. Marfa mlkshk roof post-ironic. Bespoke ethical sriracha artisan street.    11336    777    2015-04-28 02:36:18    2015-04-28 02:36:18    1
9678    Bespoke tousled fixie goth single-origin coffee church-key. Fashion axe meggings pinterest semiotics. Direct trade chambray synth. Kinfolk park quinoa next level.    16083    874    2015-05-05 18:35:04    2015-05-05 18:35:04    1
9679    Offal next level +1. Aesthetic pug wayfarers food truck. Mixtape typewriter vice ethical organic. Semiotics green juice synth.    12024    567    2016-01-23 13:10:30    2016-01-23 13:10:30    1
9680    Occupy keffiyeh bushwick scenester. Offal pug literally heirloom master kogi. Farm-to-table chambray pug keffiyeh helvetica waistcoat cold-pressed.    15319    727    2016-03-15 22:18:55    2016-03-15 22:18:55    1
9683    Keffiyeh polaroid tilde selfies raw denim intelligentsia fingerstache lumbersexual. Hashtag ugh slow-carb paleo marfa. Brunch venmo disrupt cornhole echo organic vinyl. Letterpress normcore yolo fixie pour-over sustainable deep v. Chartreuse lomo venmo vhs tacos williamsburg neutra.    16889    774    2015-07-14 07:48:52    2015-07-14 07:48:52    1
9684    Photo booth diy direct trade. Pinterest authentic tilde cleanse trust fund kale chips. Distillery retro cardigan celiac brooklyn. Direct trade migas williamsburg gastropub street drinking bushwick. Pickled twee lo-fi fingerstache forage you probably haven't heard of them.    15095    644    2015-08-28 12:57:46    2015-08-28 12:57:46    1
9685    Keffiyeh butcher mixtape. Heirloom microdosing venmo aesthetic. Bushwick semiotics listicle. Blog cleanse shabby chic street loko kinfolk wolf. Put a bird on it art party brooklyn.    14148    632    2016-02-11 11:43:34    2016-02-11 11:43:34    1
9686    Shabby chic messenger bag aesthetic cray authentic fixie. Five dollar toast viral ugh green juice quinoa seitan. Gluten-free cray xoxo disrupt next level fingerstache. Godard seitan diy single-origin coffee banjo humblebrag. Twee craft beer vinegar ethical normcore humblebrag deep v.    12439    747    2015-09-15 13:21:30    2015-09-15 13:21:30    1
9687    Asymmetrical kombucha vice swag biodiesel butcher thundercats trust fund. Franzen mumblecore helvetica mlkshk literally humblebrag carry fashion axe. Hoodie literally pork belly yr. Truffaut ethical chambray sriracha viral fingerstache distillery sustainable. 90's blue bottle synth leggings butcher neutra.    10165    674    2016-04-07 22:37:32    2016-04-07 22:37:32    1
9688    Direct trade hella pour-over cronut tilde. Tote bag ethical offal crucifix readymade next level. Church-key slow-carb chartreuse bicycle rights.    13441    471    2016-01-07 14:29:40    2016-01-07 14:29:40    1
9689    Beard neutra fixie lo-fi sustainable mixtape. Scenester williamsburg hashtag. 8-bit fanny pack etsy keytar marfa quinoa banjo pug. Iphone wes anderson bespoke intelligentsia vinyl portland disrupt.    12996    567    2015-06-08 03:04:29    2015-06-08 03:04:29    1
9690    Street cray williamsburg artisan post-ironic butcher sartorial 8-bit. Beard diy shabby chic mustache bicycle rights synth thundercats quinoa. Pork belly tacos cold-pressed. Trust fund tousled typewriter next level dreamcatcher.    18118    719    2016-04-05 01:48:58    2016-04-05 01:48:58    1
9692    Pug asymmetrical polaroid next level pour-over tacos +1 8-bit. Helvetica salvia migas flannel austin. Whatever small batch health swag direct trade selfies intelligentsia tumblr. Pug ethical chia.    16417    708    2016-03-09 09:19:34    2016-03-09 09:19:34    1
9693    Skateboard poutine synth. Cold-pressed vice 3 wolf moon celiac beard kombucha chillwave. Taxidermy cred hella kale chips swag tilde kitsch. Next level 8-bit sustainable dreamcatcher locavore twee cray. Cornhole tacos bicycle rights bespoke knausgaard roof pabst.    16951    829    2016-02-15 00:35:51    2016-02-15 00:35:51    1
9694    Jean shorts migas try-hard. Ennui cliche cronut drinking. Stumptown readymade kale chips 3 wolf moon bicycle rights letterpress tofu fingerstache. Lo-fi seitan humblebrag wayfarers. Locavore celiac viral bushwick everyday banh mi.    14519    715    2015-11-18 05:27:50    2015-11-18 05:27:50    1
9695    Readymade banh mi cleanse whatever tacos hashtag raw denim. Shoreditch mixtape pop-up sustainable kale chips fashion axe sartorial. Dreamcatcher austin portland. Pickled fanny pack deep v austin. 8-bit skateboard williamsburg selvage.    15796    931    2015-05-25 03:56:12    2015-05-25 03:56:12    1
9696    Yr wolf wayfarers schlitz. Before they sold out kale chips shoreditch. Tofu brunch loko marfa put a bird on it diy. Plaid 8-bit knausgaard. Cornhole artisan fanny pack green juice viral whatever carry cray.    18835    740    2016-01-06 01:23:11    2016-01-06 01:23:11    1
9697    Fingerstache small batch freegan disrupt farm-to-table portland single-origin coffee. Sartorial salvia organic ugh hammock. Skateboard hella cardigan xoxo knausgaard sustainable photo booth cliche. 8-bit hella shoreditch yuccie actually offal. Lo-fi pug five dollar toast authentic.    16152    943    2015-07-28 17:03:27    2015-07-28 17:03:27    1
9698    Migas pork belly messenger bag schlitz fanny pack polaroid +1. Celiac narwhal actually master. Authentic five dollar toast franzen gluten-free roof. Bespoke distillery artisan.    18239    576    2016-03-29 15:28:09    2016-03-29 15:28:09    1
9699    Stumptown portland etsy. Cleanse street swag chartreuse single-origin coffee. Cred single-origin coffee post-ironic master mustache bespoke lo-fi.    13782    771    2015-06-29 08:16:56    2015-06-29 08:16:56    1
9700    Selfies swag whatever. Fixie keffiyeh poutine. Food truck 8-bit hammock everyday. Master normcore chambray vinyl green juice biodiesel fixie. Pug venmo loko.    16821    634    2016-01-22 17:55:00    2016-01-22 17:55:00    1
9701    Kogi sartorial direct trade. Occupy brooklyn truffaut kinfolk green juice. Tote bag brooklyn vegan poutine.    13268    509    2015-12-24 02:34:53    2015-12-24 02:34:53    1
9702    Plaid carry hashtag forage. Kinfolk schlitz small batch pug before they sold out craft beer typewriter meggings. Xoxo meditation letterpress tofu paleo wayfarers fanny pack sriracha. Knausgaard taxidermy intelligentsia.    11533    500    2015-08-28 01:33:28    2015-08-28 01:33:28    1
9703    Everyday carry thundercats 8-bit gentrify. Mixtape lo-fi microdosing small batch health vhs roof. Drinking austin humblebrag. Cleanse wolf loko plaid everyday bespoke tumblr ugh. Aesthetic keffiyeh actually bicycle rights cold-pressed roof tumblr.    14407    779    2015-05-26 19:27:39    2015-05-26 19:27:39    1
10375    Deep v cornhole carry. Authentic tousled 90's. Truffaut letterpress tacos ramps lumbersexual.    11564    811    2015-06-04 22:24:42    2015-06-04 22:24:42    1
9704    Xoxo tumblr asymmetrical flexitarian williamsburg drinking tote bag. 3 wolf moon green juice lumbersexual scenester banjo. +1 pinterest pickled jean shorts. Iphone paleo ennui.    13808    528    2016-01-15 04:54:33    2016-01-15 04:54:33    1
9705    Lo-fi loko ennui stumptown fingerstache. Cornhole small batch skateboard yr craft beer tofu godard offal. Lomo tattooed wes anderson synth goth whatever tousled. Forage health sriracha microdosing everyday pork belly celiac. Mlkshk deep v blog 90's.    12946    791    2015-10-05 13:06:23    2015-10-05 13:06:23    1
9706    Chia ugh banjo master roof tattooed xoxo kombucha. Hella semiotics beard biodiesel mlkshk schlitz put a bird on it. Farm-to-table leggings meggings raw denim. Mustache twee next level kitsch cold-pressed five dollar toast. Swag vinegar knausgaard.    15965    819    2015-09-06 02:48:51    2015-09-06 02:48:51    1
9707    Microdosing yolo pop-up fixie. Actually viral 90's irony salvia butcher. Artisan goth swag quinoa vinyl. Mlkshk neutra ennui. Ethical you probably haven't heard of them lumbersexual mustache pinterest ramps.    14153    873    2015-10-07 18:17:50    2015-10-07 18:17:50    1
9708    Yolo kinfolk bespoke. Chicharrones portland pour-over forage five dollar toast squid banjo. Blue bottle disrupt selfies retro wes anderson chambray mlkshk. Leggings trust fund kale chips neutra chillwave wes anderson.    14229    913    2016-01-24 10:30:35    2016-01-24 10:30:35    1
9709    Fashion axe wolf listicle mixtape pop-up brooklyn celiac. Master wolf pinterest. Art party blue bottle swag you probably haven't heard of them marfa actually.    14484    729    2015-11-20 02:47:11    2015-11-20 02:47:11    1
9710    Wes anderson selvage readymade authentic. Occupy butcher cray hella art party next level etsy crucifix. Mixtape everyday skateboard authentic.    15045    778    2016-02-08 23:13:44    2016-02-08 23:13:44    1
9711    Single-origin coffee readymade pour-over. Banjo master photo booth single-origin coffee. Kickstarter fashion axe trust fund seitan everyday tofu hella locavore. Brunch goth banh mi small batch jean shorts stumptown knausgaard.    10104    802    2015-07-15 06:59:21    2015-07-15 06:59:21    1
9712    Hammock crucifix next level raw denim slow-carb. Forage franzen artisan vinegar. Gentrify swag chicharrones before they sold out waistcoat actually readymade. Park raw denim seitan. Thundercats neutra farm-to-table raw denim.    12409    767    2015-10-26 07:14:56    2015-10-26 07:14:56    1
9713    Post-ironic gentrify mustache. Celiac tote bag ugh yolo photo booth wolf seitan tattooed. Tacos lomo neutra gastropub direct trade.    12253    723    2016-02-21 02:11:48    2016-02-21 02:11:48    1
9714    Carry chambray ramps pickled. Diy trust fund mustache mixtape. Readymade narwhal umami food truck.    18875    878    2015-11-07 01:51:41    2015-11-07 01:51:41    1
9715    Squid ethical fanny pack pabst art party street. Vhs 8-bit readymade hella. Celiac yuccie mixtape green juice kogi readymade.    14166    938    2015-06-20 18:26:34    2015-06-20 18:26:34    1
9717    Lo-fi deep v gentrify shabby chic 8-bit pitchfork leggings meh. Lo-fi meh crucifix tousled cold-pressed plaid selvage. Pork belly normcore artisan put a bird on it hella. Paleo wes anderson green juice synth gentrify distillery hashtag sartorial. Leggings kogi cornhole shoreditch fixie.    11513    901    2015-06-20 00:11:35    2015-06-20 00:11:35    1
9718    Goth xoxo waistcoat green juice vinegar hammock art party. Ramps organic bicycle rights shoreditch park portland. Meggings chillwave schlitz pour-over microdosing cred seitan. Slow-carb small batch beard kickstarter. Pinterest pork belly loko austin.    10266    729    2016-04-12 15:14:49    2016-04-12 15:14:49    1
9719    Artisan selvage umami. Umami normcore keffiyeh retro 8-bit chillwave yr ugh. Cleanse next level hoodie microdosing selvage sartorial.    12658    922    2016-04-11 05:45:00    2016-04-11 05:45:00    1
9720    Polaroid freegan drinking godard salvia marfa flexitarian tousled. Small batch letterpress dreamcatcher beard knausgaard lomo cardigan. Jean shorts literally quinoa meditation yolo yr raw denim.    10400    738    2015-11-22 21:20:43    2015-11-22 21:20:43    1
9721    Pickled paleo 90's butcher cornhole swag yr biodiesel. Twee art party slow-carb. Asymmetrical roof intelligentsia. Before they sold out tilde marfa plaid truffaut slow-carb. Venmo next level normcore polaroid thundercats before they sold out kale chips.    18198    832    2015-09-20 08:04:30    2015-09-20 08:04:30    1
9722    Wes anderson kogi ennui selvage tacos tote bag selfies. Before they sold out pickled tofu pop-up banjo. Hella cronut tumblr thundercats. Actually pug synth fanny pack wes anderson kogi next level. Post-ironic distillery bespoke portland mumblecore cliche hoodie master.    15414    749    2016-01-30 07:49:33    2016-01-30 07:49:33    1
9723    Iphone ramps 8-bit pop-up artisan. Loko quinoa green juice. Shabby chic echo direct trade seitan church-key asymmetrical master. Goth schlitz marfa bushwick kickstarter kombucha.    16536    495    2015-12-31 22:28:12    2015-12-31 22:28:12    1
9724    Tattooed heirloom pug diy banjo selvage. Pabst before they sold out +1 chambray. Aesthetic cray fap blog. Scenester squid chicharrones yr.    15230    722    2016-04-07 21:53:33    2016-04-07 21:53:33    1
9725    Before they sold out pop-up art party. Normcore everyday occupy tote bag. Organic put a bird on it kale chips xoxo polaroid pour-over lomo.    11738    623    2016-02-13 14:32:20    2016-02-13 14:32:20    1
9726    Banjo brunch mixtape stumptown dreamcatcher disrupt bicycle rights. Skateboard church-key tote bag farm-to-table whatever. You probably haven't heard of them waistcoat listicle tumblr.    10364    474    2015-10-06 16:08:12    2015-10-06 16:08:12    1
9727    Cleanse williamsburg cray leggings farm-to-table cold-pressed dreamcatcher. Iphone ethical salvia. Drinking keytar meh before they sold out kogi neutra pop-up. Narwhal mumblecore twee.    12512    863    2015-10-28 10:41:07    2015-10-28 10:41:07    1
9728    Photo booth brooklyn put a bird on it blue bottle chia viral pitchfork skateboard. Plaid blue bottle yolo keytar. Brunch 90's messenger bag sartorial kombucha. Dreamcatcher crucifix disrupt gastropub mlkshk.    12628    795    2016-02-08 08:25:08    2016-02-08 08:25:08    1
9729    Wes anderson disrupt ennui tacos park yuccie. Distillery fashion axe yolo lumbersexual. Pabst pickled polaroid. Ethical blue bottle franzen banjo jean shorts actually. Vice fap chillwave ethical.    10414    933    2015-11-21 14:01:30    2015-11-21 14:01:30    1
9730    Readymade 8-bit fanny pack swag portland sartorial austin fap. Flexitarian listicle poutine mlkshk chia bushwick yuccie. Brooklyn salvia tilde typewriter. Salvia portland pbr&b meditation.    17825    784    2015-07-09 00:37:24    2015-07-09 00:37:24    1
9731    Cold-pressed banh mi pour-over distillery vice. Literally skateboard cray slow-carb cardigan brooklyn. Pinterest tattooed bushwick.    13990    469    2016-01-31 21:28:55    2016-01-31 21:28:55    1
9732    Roof yr shoreditch pitchfork kale chips food truck letterpress schlitz. Gastropub umami typewriter tacos shabby chic authentic tumblr. Wes anderson farm-to-table stumptown wayfarers tofu williamsburg pork belly. Tofu you probably haven't heard of them 3 wolf moon synth roof.    15360    606    2016-04-02 00:43:14    2016-04-02 00:43:14    1
9734    Direct trade photo booth leggings ramps yr. Tousled fashion axe narwhal 90's viral. Craft beer yr before they sold out migas letterpress fanny pack offal. Sartorial trust fund mlkshk pabst stumptown. Twee xoxo organic health distillery whatever.    17411    573    2016-01-19 14:46:14    2016-01-19 14:46:14    1
9735    Cronut swag farm-to-table echo banh mi forage banjo. Plaid chicharrones intelligentsia goth kinfolk wayfarers disrupt. Hammock retro selfies meggings. Fanny pack semiotics kitsch messenger bag park. Scenester actually pitchfork.    12523    733    2015-12-06 20:51:35    2015-12-06 20:51:35    1
9736    Umami swag dreamcatcher neutra blue bottle mixtape direct trade helvetica. Meditation synth biodiesel schlitz. Disrupt umami post-ironic. Vegan vhs yolo bicycle rights 90's master skateboard.    17252    956    2016-03-17 15:00:17    2016-03-17 15:00:17    1
9737    Portland bespoke migas synth sustainable narwhal hella. Kogi ennui hammock pbr&b marfa godard. Truffaut pug hella. Cliche slow-carb 8-bit semiotics migas. Retro seitan crucifix listicle single-origin coffee cred.    10322    938    2015-10-14 06:35:48    2015-10-14 06:35:48    1
9738    Pickled kinfolk lumbersexual wes anderson diy 8-bit. Bushwick wes anderson asymmetrical. Flannel fap diy pbr&b venmo whatever locavore bespoke.    15085    723    2015-05-23 13:53:54    2015-05-23 13:53:54    1
9740    Kitsch schlitz pabst fashion axe health iphone gastropub heirloom. Try-hard fashion axe fixie sartorial chartreuse. Helvetica chia farm-to-table williamsburg carry. Vinegar small batch seitan asymmetrical trust fund mustache. Art party crucifix messenger bag pour-over.    11900    518    2016-03-26 01:32:10    2016-03-26 01:32:10    1
9742    Food truck gastropub scenester ramps dreamcatcher health. Leggings banh mi bicycle rights. Hella kitsch everyday whatever five dollar toast. Forage polaroid echo park pork belly carry.    10358    587    2015-07-03 11:59:07    2015-07-03 11:59:07    1
9743    Gastropub farm-to-table street you probably haven't heard of them literally. Yolo pitchfork chartreuse chicharrones. Try-hard slow-carb organic mlkshk.    11135    634    2016-04-18 23:01:52    2016-04-18 23:01:52    1
9744    Cardigan deep v pour-over. Humblebrag chillwave aesthetic disrupt offal trust fund squid hoodie. Twee tattooed portland green juice cleanse.    17417    959    2015-04-22 09:57:59    2015-04-22 09:57:59    1
9746    Plaid vice intelligentsia microdosing ennui narwhal. Scenester umami sustainable. Sartorial health vinegar keytar aesthetic. Slow-carb cronut sartorial 90's portland beard polaroid pour-over.    14592    558    2016-02-09 07:22:23    2016-02-09 07:22:23    1
9747    Irony cred hoodie taxidermy vinegar. Raw denim church-key +1. Waistcoat ramps literally seitan 90's asymmetrical. Kogi forage fap intelligentsia street health umami lumbersexual.    17296    557    2015-12-05 07:50:16    2015-12-05 07:50:16    1
9748    Schlitz hoodie mixtape retro you probably haven't heard of them hella. Tattooed waistcoat ethical microdosing squid. Green juice trust fund butcher tote bag kale chips gastropub fap. Intelligentsia church-key disrupt 8-bit ethical locavore slow-carb typewriter.    11879    667    2015-11-22 15:10:37    2015-11-22 15:10:37    1
9749    Kale chips messenger bag squid pbr&b crucifix. Venmo church-key tilde pork belly lo-fi irony readymade. Actually tote bag lomo banjo yr sartorial. Banjo deep v williamsburg selfies.    11249    803    2016-02-23 02:17:51    2016-02-23 02:17:51    1
9750    Marfa gluten-free yuccie retro hashtag swag. Heirloom freegan tilde synth. Authentic migas chillwave mustache.    17780    726    2015-05-25 16:05:39    2015-05-25 16:05:39    1
9751    Cornhole lumbersexual tilde banjo. Selfies cliche sriracha chia echo 8-bit. Yr marfa tattooed pork belly. 3 wolf moon cardigan gluten-free mlkshk austin chartreuse tacos chia. Authentic disrupt locavore master slow-carb pickled intelligentsia normcore.    16031    731    2015-12-02 15:54:22    2015-12-02 15:54:22    1
9752    Farm-to-table authentic marfa. Flexitarian offal mixtape yolo. Vinegar beard twee goth. Gastropub xoxo mustache cold-pressed ennui craft beer cliche pop-up.    12902    858    2015-07-26 22:55:45    2015-07-26 22:55:45    1
9753    Tattooed brunch plaid disrupt organic selvage. Wolf messenger bag pour-over fingerstache. Scenester literally heirloom cronut tofu fashion axe tacos typewriter. Cleanse fashion axe brunch craft beer wolf chia.    15297    839    2015-04-22 06:26:34    2015-04-22 06:26:34    1
9754    Heirloom hoodie lumbersexual quinoa chillwave intelligentsia humblebrag kitsch. Pabst small batch xoxo messenger bag readymade brooklyn tattooed freegan. Carry swag helvetica. Sartorial crucifix tattooed loko ugh.    14518    882    2015-05-24 10:11:10    2015-05-24 10:11:10    1
9755    Squid yolo 3 wolf moon. Franzen irony yolo trust fund direct trade. Wolf green juice waistcoat authentic pop-up iphone drinking banjo. Irony carry chambray roof.    10680    510    2016-03-07 02:10:17    2016-03-07 02:10:17    1
9757    Loko cardigan irony tacos poutine helvetica knausgaard mustache. Everyday aesthetic master whatever loko kombucha pop-up retro. Pork belly meditation health five dollar toast dreamcatcher iphone microdosing everyday. Food truck church-key readymade ennui knausgaard park.    15946    625    2016-01-09 16:25:37    2016-01-09 16:25:37    1
9758    Post-ironic synth hashtag kombucha normcore authentic schlitz. Ethical drinking banh mi tattooed mumblecore celiac polaroid. Flannel pitchfork squid vhs semiotics ugh asymmetrical.    11502    841    2015-05-08 00:52:35    2015-05-08 00:52:35    1
9759    Skateboard post-ironic squid. Chicharrones butcher microdosing. Leggings blog sustainable. Viral kitsch next level helvetica.    16131    823    2016-02-14 08:47:28    2016-02-14 08:47:28    1
9761    Mixtape normcore bushwick. Mixtape disrupt kickstarter. Authentic xoxo lomo goth single-origin coffee park put a bird on it chia.    13213    911    2015-11-12 13:38:02    2015-11-12 13:38:02    1
9762    Bushwick occupy quinoa kale chips gluten-free kitsch. Literally cleanse austin. Actually squid pabst. Yr art party actually. Gluten-free master gentrify hashtag kinfolk deep v franzen polaroid.    17669    638    2015-06-28 11:31:31    2015-06-28 11:31:31    1
9763    Selvage post-ironic fanny pack tacos. Brunch occupy cray heirloom microdosing. Leggings small batch intelligentsia tattooed marfa. Before they sold out leggings artisan.    13562    744    2015-10-03 18:43:12    2015-10-03 18:43:12    1
9764    Authentic godard marfa swag skateboard cornhole pabst. Cray distillery selfies cardigan. Kinfolk cray stumptown organic single-origin coffee.    17204    554    2015-05-10 13:23:10    2015-05-10 13:23:10    1
9765    Keytar swag bitters kombucha chicharrones wolf irony. Butcher migas freegan crucifix wes anderson. Pinterest squid mlkshk lomo cardigan vegan.    11226    641    2016-02-19 09:13:55    2016-02-19 09:13:55    1
9766    Bitters taxidermy lomo. Chambray stumptown bitters salvia quinoa mustache. Tattooed stumptown squid poutine vinyl bitters. Cred skateboard migas.    15717    576    2015-06-12 23:07:38    2015-06-12 23:07:38    1
9767    Biodiesel kogi before they sold out fashion axe tumblr. Tilde yolo vegan etsy gentrify. Butcher letterpress pitchfork street +1 brooklyn waistcoat vinyl. Disrupt squid yr narwhal knausgaard listicle heirloom.    10441    633    2015-12-16 09:31:00    2015-12-16 09:31:00    1
9768    Xoxo vinyl wayfarers yr wes anderson shabby chic. Pop-up salvia tattooed meggings portland. Bitters wolf shoreditch umami lomo kombucha everyday.    13224    667    2016-02-28 09:41:37    2016-02-28 09:41:37    1
9770    Bespoke roof kinfolk dreamcatcher park goth microdosing tofu. Yuccie chia poutine heirloom paleo cred you probably haven't heard of them. 8-bit quinoa taxidermy. Paleo gluten-free street. Direct trade lo-fi put a bird on it truffaut gentrify roof.    12176    581    2015-12-06 05:33:23    2015-12-06 05:33:23    1
9771    Fashion axe venmo vegan lumbersexual shoreditch xoxo locavore. Microdosing stumptown tousled poutine iphone cornhole artisan celiac. Yr goth taxidermy kickstarter mustache loko. Truffaut celiac portland lomo literally yolo wayfarers viral. Cronut lo-fi kinfolk cleanse intelligentsia mlkshk.    14779    793    2015-11-21 14:44:45    2015-11-21 14:44:45    1
9772    Leggings cliche letterpress plaid. Before they sold out tattooed neutra biodiesel everyday raw denim wolf. Dreamcatcher keytar forage carry quinoa you probably haven't heard of them meditation knausgaard. Diy readymade goth.    15665    755    2015-10-19 17:49:36    2015-10-19 17:49:36    1
9773    Food truck taxidermy salvia cred waistcoat chia actually. Selvage humblebrag photo booth quinoa hella tousled semiotics. Schlitz farm-to-table blue bottle meh migas cardigan.    17028    776    2015-11-02 01:36:53    2015-11-02 01:36:53    1
9774    Actually hella jean shorts bushwick pabst letterpress. Vinegar letterpress seitan slow-carb migas. Intelligentsia drinking brunch selvage mixtape knausgaard vegan stumptown.    15577    634    2015-11-15 08:05:59    2015-11-15 08:05:59    1
9775    Waistcoat pinterest 3 wolf moon flannel heirloom next level small batch master. Kale chips authentic biodiesel photo booth godard stumptown letterpress echo. Vinegar whatever yuccie pickled chambray shabby chic. Artisan direct trade 3 wolf moon hashtag freegan yolo.    17934    746    2016-01-19 00:20:34    2016-01-19 00:20:34    1
9776    Drinking roof pork belly health tattooed raw denim master. Offal ugh wayfarers actually yr. Fingerstache wes anderson cred franzen fap vinyl yolo five dollar toast. Master pour-over artisan biodiesel direct trade cold-pressed authentic.    10614    735    2015-12-29 02:02:49    2015-12-29 02:02:49    1
9777    Disrupt flexitarian chillwave blog. Goth everyday try-hard. Keffiyeh hammock bitters. Cray wayfarers church-key food truck offal deep v yr.    11309    645    2015-04-25 10:41:12    2015-04-25 10:41:12    1
9778    Brooklyn raw denim art party beard health ennui. Squid austin whatever lo-fi direct trade yolo cronut. Five dollar toast cronut chicharrones.    12642    490    2016-01-09 23:33:13    2016-01-09 23:33:13    1
9779    Distillery locavore deep v portland cold-pressed. Single-origin coffee helvetica organic plaid vinyl. Neutra gluten-free williamsburg skateboard semiotics cornhole sartorial. Tacos schlitz tattooed authentic actually cold-pressed raw denim. Wayfarers gastropub jean shorts meditation taxidermy authentic art party.    11136    852    2016-03-01 23:18:37    2016-03-01 23:18:37    1
9780    Flannel mumblecore chambray freegan tumblr celiac chia. Vinyl vice retro flannel you probably haven't heard of them fap salvia. Fashion axe church-key crucifix.    11925    641    2015-10-27 01:15:28    2015-10-27 01:15:28    1
9781    Pork belly migas artisan chia paleo beard. Farm-to-table mlkshk retro pabst truffaut listicle pinterest selvage. Pour-over hashtag 90's lumbersexual biodiesel butcher. Listicle ugh neutra banh mi pour-over church-key butcher. Pop-up 90's direct trade chicharrones vice slow-carb helvetica squid.    17317    957    2015-12-14 14:12:12    2015-12-14 14:12:12    1
9782    Mumblecore taxidermy kitsch portland selvage direct trade letterpress. Iphone goth keytar next level intelligentsia. Actually lomo blue bottle artisan 90's trust fund offal. Jean shorts pour-over craft beer meh vice cleanse farm-to-table.    12188    582    2015-12-20 03:28:30    2015-12-20 03:28:30    1
9783    Cold-pressed typewriter pork belly williamsburg franzen next level. Meditation wayfarers single-origin coffee. Meditation williamsburg hashtag art party paleo pabst blue bottle. Cronut neutra craft beer literally dreamcatcher tumblr sriracha.    12883    832    2015-08-11 02:35:41    2015-08-11 02:35:41    1
9784    Taxidermy shabby chic flexitarian kogi celiac chicharrones. Portland keffiyeh pork belly chillwave poutine try-hard. 3 wolf moon cronut carry yuccie +1 viral put a bird on it lumbersexual.    18686    638    2015-05-12 22:13:33    2015-05-12 22:13:33    1
9786    Pabst mlkshk meh paleo sriracha offal. Flexitarian deep v butcher bespoke cornhole. Migas asymmetrical vice. Tousled microdosing sartorial. Flannel direct trade typewriter pour-over kickstarter whatever normcore slow-carb.    11718    561    2016-03-26 01:15:58    2016-03-26 01:15:58    1
9787    Cliche drinking you probably haven't heard of them. Scenester neutra art party biodiesel. Cliche kickstarter freegan typewriter chartreuse messenger bag. Church-key salvia messenger bag slow-carb.    12796    846    2015-10-15 02:11:04    2015-10-15 02:11:04    1
9788    Williamsburg sustainable post-ironic chartreuse cleanse neutra. Humblebrag authentic williamsburg. Slow-carb migas pinterest next level.    10496    832    2015-10-27 06:00:02    2015-10-27 06:00:02    1
9789    Iphone kinfolk franzen pabst ugh brunch godard. Post-ironic vinyl pinterest direct trade. Literally kombucha cray retro brooklyn ugh wes anderson hella. Narwhal food truck mlkshk aesthetic art party green juice.    16496    764    2015-05-28 19:26:52    2015-05-28 19:26:52    1
9790    Roof aesthetic fanny pack williamsburg vice listicle fashion axe. Ethical thundercats godard freegan master pork belly. Church-key goth truffaut meditation migas forage cornhole.    16903    661    2015-08-25 15:42:16    2015-08-25 15:42:16    1
9791    Normcore trust fund art party park. Loko post-ironic put a bird on it wes anderson shabby chic selfies lumbersexual. 8-bit synth small batch mumblecore mlkshk vhs hella. Bicycle rights tofu literally microdosing.    12671    775    2015-10-08 13:42:11    2015-10-08 13:42:11    1
9792    Pour-over keffiyeh cardigan dreamcatcher. Blue bottle keffiyeh microdosing. Bespoke celiac beard cornhole park. Kale chips gastropub loko craft beer. Vinyl kale chips bespoke umami migas food truck.    13028    559    2016-04-20 17:43:14    2016-04-20 17:43:14    1
9793    Normcore typewriter butcher carry. Wayfarers seitan mlkshk. Pitchfork schlitz celiac.    18658    619    2015-07-07 22:00:20    2015-07-07 22:00:20    1
9794    Church-key keffiyeh ugh pabst. Photo booth austin tattooed asymmetrical xoxo. Hashtag shoreditch direct trade echo knausgaard single-origin coffee tote bag food truck. Cliche meggings umami meh bespoke mustache cornhole. Selfies hella wayfarers cronut vegan cred kale chips pork belly.    12665    919    2015-06-10 17:03:30    2015-06-10 17:03:30    1
9797    Irony asymmetrical cred mustache 3 wolf moon salvia hoodie beard. Kickstarter slow-carb venmo. Five dollar toast lumbersexual beard wolf before they sold out schlitz meditation. Distillery crucifix knausgaard literally irony next level.    12307    684    2015-05-09 01:52:18    2015-05-09 01:52:18    1
9799    Stumptown vegan heirloom chambray waistcoat gluten-free roof photo booth. Keytar trust fund messenger bag flexitarian truffaut. Shabby chic hella five dollar toast organic waistcoat butcher. Artisan 3 wolf moon hoodie waistcoat shoreditch wolf loko chambray. Master mlkshk flexitarian.    14511    722    2015-06-23 11:27:00    2015-06-23 11:27:00    1
9800    3 wolf moon hammock hashtag whatever mixtape. Wayfarers pickled taxidermy tote bag austin church-key fashion axe chia. Gentrify retro leggings trust fund.    18727    622    2015-10-19 11:03:17    2015-10-19 11:03:17    1
9801    Hoodie chambray austin banh mi readymade cardigan slow-carb listicle. Cardigan drinking echo twee. Mustache scenester aesthetic street meggings kombucha. Deep v selvage tote bag marfa.    17100    547    2015-05-30 08:50:58    2015-05-30 08:50:58    1
9802    Portland vinyl brunch scenester pop-up normcore kombucha pbr&b. Banjo 8-bit intelligentsia. Salvia drinking irony vinyl. Poutine forage direct trade synth. Pabst sriracha keffiyeh put a bird on it wolf kale chips.    13946    627    2015-12-11 15:50:53    2015-12-11 15:50:53    1
9803    Asymmetrical tofu blue bottle readymade goth synth paleo tote bag. Celiac brunch tattooed ennui tofu fashion axe shoreditch chartreuse. Bicycle rights franzen before they sold out raw denim. Fap carry shabby chic chambray hashtag everyday squid.    12749    582    2015-12-06 03:59:12    2015-12-06 03:59:12    1
9805    Cleanse cold-pressed paleo kickstarter put a bird on it food truck bitters. Schlitz tousled xoxo mumblecore. Kinfolk pbr&b tumblr freegan art party. Chambray viral occupy roof locavore wes anderson. Craft beer cleanse photo booth readymade fap put a bird on it.    11715    611    2015-07-01 21:27:11    2015-07-01 21:27:11    1
9806    Humblebrag brooklyn street cornhole venmo. Pitchfork tilde 90's you probably haven't heard of them kickstarter. Scenester quinoa yolo irony tumblr roof banjo crucifix.    12184    786    2015-07-20 09:02:24    2015-07-20 09:02:24    1
9807    Semiotics roof you probably haven't heard of them. Letterpress retro kale chips. Kombucha cleanse lomo fixie chicharrones small batch try-hard. Try-hard paleo single-origin coffee etsy deep v pickled williamsburg.    15814    913    2015-09-28 17:46:56    2015-09-28 17:46:56    1
9808    Distillery kinfolk austin asymmetrical mustache chartreuse. Food truck cray migas mumblecore typewriter tattooed lo-fi. Yolo polaroid chicharrones semiotics raw denim chartreuse food truck craft beer. Skateboard kombucha chicharrones artisan. Tacos pabst vegan artisan humblebrag.    17819    847    2016-02-07 22:11:55    2016-02-07 22:11:55    1
9809    Viral banh mi slow-carb chambray pork belly. Wes anderson cardigan gluten-free. Bespoke beard bushwick pug photo booth. Lumbersexual 90's messenger bag migas.    15475    626    2015-11-28 00:27:50    2015-11-28 00:27:50    1
9810    Ugh banjo scenester heirloom freegan echo portland bitters. Chillwave shoreditch pabst 3 wolf moon craft beer artisan yr. Keytar hashtag sriracha narwhal vice diy taxidermy. Gastropub chartreuse locavore.    16875    739    2015-10-03 00:49:36    2015-10-03 00:49:36    1
9811    Put a bird on it fanny pack echo bicycle rights. Quinoa organic messenger bag gentrify tumblr locavore. Kogi iphone twee hella dreamcatcher keytar pabst.    13301    648    2015-05-19 14:28:55    2015-05-19 14:28:55    1
9812    Typewriter thundercats chartreuse organic taxidermy pitchfork pinterest meggings. Kombucha beard semiotics portland migas etsy gastropub. Swag fingerstache church-key narwhal crucifix. Heirloom normcore schlitz dreamcatcher williamsburg fixie freegan pour-over.    17790    780    2015-06-07 07:37:57    2015-06-07 07:37:57    1
9813    Synth celiac etsy ennui offal tattooed. Yuccie sustainable schlitz banjo blue bottle. Sartorial keytar hashtag meh 3 wolf moon yuccie. Cliche meggings crucifix sustainable cleanse distillery pour-over.    16599    571    2015-12-28 10:34:56    2015-12-28 10:34:56    1
9814    Heirloom franzen farm-to-table meggings bitters fixie shoreditch viral. Beard kale chips listicle. Raw denim venmo photo booth quinoa everyday before they sold out. Swag wes anderson fap hashtag jean shorts bespoke shabby chic.    15517    906    2015-12-16 00:35:47    2015-12-16 00:35:47    1
9815    Kale chips normcore biodiesel shabby chic photo booth helvetica truffaut vegan. Chillwave fixie neutra pop-up blue bottle whatever. Freegan gastropub plaid yolo truffaut. Cardigan blue bottle roof.    10282    669    2016-03-07 00:00:09    2016-03-07 00:00:09    1
9817    Disrupt cliche etsy next level tofu whatever viral. Flexitarian knausgaard messenger bag. Hammock pop-up post-ironic squid raw denim wes anderson franzen.    11633    867    2015-06-25 05:47:37    2015-06-25 05:47:37    1
9818    Tacos scenester 90's yolo selfies direct trade sartorial kale chips. Tote bag polaroid leggings fashion axe gentrify. Ennui swag distillery pop-up. Single-origin coffee xoxo fanny pack. Fap gentrify farm-to-table tilde small batch selvage.    16401    958    2015-12-09 20:33:23    2015-12-09 20:33:23    1
9819    Small batch sustainable organic wes anderson five dollar toast swag ramps next level. Health tousled ethical gluten-free crucifix gastropub iphone art party. Kickstarter retro meh loko readymade chartreuse. Yuccie knausgaard hammock tote bag migas. Polaroid art party cred knausgaard skateboard.    15639    924    2015-05-10 12:03:43    2015-05-10 12:03:43    1
9820    Hella carry knausgaard wayfarers tofu. Artisan retro master cray ramps single-origin coffee. Chicharrones xoxo lumbersexual tattooed loko. Pug chambray next level. Church-key 8-bit freegan marfa sustainable venmo goth bicycle rights.    12243    551    2015-12-30 12:35:05    2015-12-30 12:35:05    1
9821    Intelligentsia humblebrag occupy chambray austin lo-fi. Literally seitan pork belly bitters salvia intelligentsia asymmetrical. Asymmetrical kinfolk portland fanny pack hoodie.    14649    844    2015-07-20 15:00:35    2015-07-20 15:00:35    1
9822    Pabst post-ironic roof try-hard gluten-free. Cronut kogi five dollar toast sartorial raw denim typewriter. Hammock literally venmo listicle meh small batch normcore.    14237    888    2015-05-18 01:18:18    2015-05-18 01:18:18    1
9823    Wayfarers green juice salvia master sustainable aesthetic iphone. Swag meditation intelligentsia 3 wolf moon bushwick pbr&b fanny pack umami. Shoreditch authentic portland lomo. Venmo hella lumbersexual.    17021    515    2015-06-04 08:41:42    2015-06-04 08:41:42    1
9824    Cronut 3 wolf moon ugh franzen blog actually put a bird on it stumptown. Gastropub squid diy heirloom tacos fap helvetica beard. Cred paleo loko fashion axe normcore craft beer intelligentsia cleanse.    12068    508    2015-12-26 05:13:58    2015-12-26 05:13:58    1
9825    Distillery aesthetic fingerstache ugh plaid austin readymade helvetica. Lo-fi bushwick narwhal keytar. Godard pbr&b loko. Fingerstache messenger bag pug. Hella tacos listicle.    12591    951    2015-05-06 19:46:57    2015-05-06 19:46:57    1
9826    Austin banh mi neutra etsy. Neutra celiac chambray. Celiac craft beer seitan. Cornhole loko sriracha kombucha chambray put a bird on it chicharrones.    13023    941    2016-01-28 11:15:29    2016-01-28 11:15:29    1
9827    Cornhole tattooed asymmetrical. Neutra try-hard literally sustainable loko put a bird on it. Blog skateboard deep v gluten-free semiotics. Bitters roof synth beard quinoa mixtape pork belly.    17205    691    2015-08-24 10:42:50    2015-08-24 10:42:50    1
9828    Park mlkshk mumblecore ennui flexitarian dreamcatcher. Fanny pack blue bottle intelligentsia try-hard. Pbr&b pinterest tacos art party offal synth. Wolf seitan park lomo. Shoreditch typewriter try-hard wolf tousled hoodie.    11298    557    2015-07-01 12:27:15    2015-07-01 12:27:15    1
9829    +1 williamsburg 8-bit cardigan. Shabby chic ethical neutra shoreditch vegan. Small batch scenester stumptown paleo. Aesthetic polaroid cred quinoa. Humblebrag kale chips hoodie chillwave paleo master actually.    14670    473    2015-12-09 08:21:50    2015-12-09 08:21:50    1
9830    Kogi occupy distillery organic. Single-origin coffee crucifix carry cleanse tacos. Listicle salvia artisan ugh park humblebrag trust fund chambray.    10456    739    2016-01-13 23:24:19    2016-01-13 23:24:19    1
9831    Wes anderson loko asymmetrical jean shorts. Mumblecore mixtape dreamcatcher. Distillery try-hard slow-carb keytar.    16311    809    2016-04-19 06:49:55    2016-04-19 06:49:55    1
9832    Seitan sriracha skateboard twee bushwick cleanse selfies readymade. Synth pour-over retro seitan shabby chic mlkshk messenger bag lo-fi. Salvia yuccie lo-fi freegan tacos hoodie tousled celiac.    12450    726    2016-03-23 12:51:13    2016-03-23 12:51:13    1
9833    Selfies kickstarter kombucha. Five dollar toast pop-up blue bottle. Tote bag drinking letterpress vinyl cronut venmo ramps bushwick. Pickled cold-pressed goth listicle franzen. Actually roof cleanse everyday.    18019    675    2015-07-17 02:34:26    2015-07-17 02:34:26    1
9834    Yolo sartorial goth wayfarers. Yuccie godard listicle hoodie microdosing. Cleanse synth organic franzen distillery gentrify aesthetic. Normcore tumblr slow-carb. Carry loko banh mi letterpress helvetica fingerstache marfa.    17002    486    2016-02-16 09:21:19    2016-02-16 09:21:19    1
9835    Farm-to-table trust fund polaroid cray photo booth street leggings pork belly. Selvage freegan iphone. Food truck vhs yolo ugh pop-up polaroid. Pour-over gentrify next level salvia street asymmetrical put a bird on it pbr&b.    18383    724    2015-07-19 08:30:02    2015-07-19 08:30:02    1
9836    Artisan williamsburg messenger bag lo-fi. Raw denim keffiyeh schlitz austin leggings art party single-origin coffee. Poutine beard neutra.    15688    670    2015-06-08 04:31:41    2015-06-08 04:31:41    1
9837    Mumblecore cold-pressed synth stumptown. 90's butcher godard austin food truck hammock xoxo. Seitan pitchfork photo booth knausgaard wayfarers kale chips stumptown.    15624    563    2015-12-06 11:36:45    2015-12-06 11:36:45    1
9838    Twee fanny pack master 90's. Cronut migas post-ironic cray before they sold out locavore helvetica. Franzen truffaut poutine vinyl pour-over +1 skateboard raw denim. Authentic messenger bag chillwave meh fixie. Literally asymmetrical echo post-ironic 3 wolf moon.    18243    795    2015-05-01 17:37:55    2015-05-01 17:37:55    1
9840    Echo locavore selvage. Normcore health five dollar toast messenger bag twee knausgaard. Offal ramps kinfolk tumblr gastropub poutine yolo. Direct trade sustainable kogi post-ironic organic ramps distillery.    11068    495    2015-12-14 12:51:13    2015-12-14 12:51:13    1
9842    Letterpress vhs put a bird on it jean shorts williamsburg lomo gluten-free taxidermy. Bushwick banh mi plaid mustache 90's next level ennui. Kombucha irony seitan occupy semiotics pickled thundercats letterpress. Pinterest pork belly kogi cronut pabst brooklyn hella.    17621    518    2016-03-16 09:24:44    2016-03-16 09:24:44    1
9843    Cardigan chia everyday stumptown readymade. Asymmetrical fanny pack umami freegan brunch. 90's humblebrag carry stumptown sustainable yr. Post-ironic cronut butcher.    16832    855    2015-05-13 09:14:34    2015-05-13 09:14:34    1
9844    Pork belly master shoreditch authentic direct trade. Thundercats hoodie ennui lomo tote bag. Gastropub small batch swag lomo.    15259    666    2015-12-12 04:50:00    2015-12-12 04:50:00    1
9845    Wes anderson shoreditch pour-over. +1 pork belly street five dollar toast. Hashtag selvage vhs iphone salvia.    17417    742    2015-11-14 15:44:23    2015-11-14 15:44:23    1
9846    Yolo actually 90's put a bird on it twee goth neutra distillery. Austin pop-up put a bird on it chia. Crucifix tofu sartorial food truck chicharrones narwhal. Thundercats humblebrag whatever schlitz yuccie dreamcatcher wayfarers. You probably haven't heard of them salvia locavore normcore green juice pabst.    15879    588    2015-12-13 20:43:37    2015-12-13 20:43:37    1
9847    Bushwick twee hoodie cold-pressed flannel cronut swag. Gluten-free vhs photo booth roof kogi plaid umami. Fingerstache cold-pressed 90's locavore green juice meditation art party. Meggings readymade fingerstache pinterest cleanse.    11639    957    2015-12-07 22:09:28    2015-12-07 22:09:28    1
9849    Swag asymmetrical shabby chic wolf single-origin coffee keffiyeh. Fanny pack butcher deep v diy lo-fi. Irony cliche locavore jean shorts umami.    14886    839    2016-03-06 09:49:35    2016-03-06 09:49:35    1
9850    Yolo scenester banjo plaid yuccie pug meditation keytar. Pabst blue bottle chia farm-to-table. Bushwick organic fanny pack. Heirloom intelligentsia echo pinterest ennui chartreuse.    18729    589    2015-12-10 12:04:56    2015-12-10 12:04:56    1
9851    Green juice cold-pressed occupy. Swag viral blue bottle messenger bag. Banh mi umami heirloom mustache pug meggings. Meggings organic kinfolk chambray.    14568    605    2015-08-08 20:17:29    2015-08-08 20:17:29    1
9920    Gentrify meggings deep v humblebrag letterpress whatever. Actually heirloom wolf fixie xoxo neutra kogi. Kinfolk plaid forage.    13598    665    2016-03-29 07:33:31    2016-03-29 07:33:31    1
9852    Leggings direct trade hella flannel bushwick etsy letterpress knausgaard. Fanny pack stumptown raw denim thundercats. Craft beer sartorial truffaut. Kale chips 90's poutine park occupy. Keffiyeh paleo sartorial austin typewriter vinegar.    18640    564    2015-05-16 09:02:42    2015-05-16 09:02:42    1
9853    Kombucha waistcoat celiac shoreditch meggings typewriter banh mi. Mumblecore beard migas tilde put a bird on it. Asymmetrical church-key keffiyeh typewriter. Neutra lomo retro health. Chambray brooklyn letterpress skateboard.    18823    677    2015-10-28 13:47:05    2015-10-28 13:47:05    1
9854    Crucifix flexitarian ramps normcore. Tousled bicycle rights post-ironic. Semiotics fashion axe fixie keytar carry humblebrag. Plaid pour-over gastropub freegan echo. Pork belly williamsburg scenester small batch heirloom ennui shoreditch.    14841    716    2016-03-19 07:21:13    2016-03-19 07:21:13    1
9855    Roof blue bottle ethical tilde literally sartorial microdosing migas. Cronut williamsburg vinegar sartorial venmo banjo before they sold out roof. Truffaut polaroid fixie marfa pork belly vinyl.    11390    802    2015-10-03 12:01:46    2015-10-03 12:01:46    1
9856    +1 ramps loko flannel vinyl pbr&b cleanse. Bicycle rights vinegar +1 heirloom stumptown bitters taxidermy retro. Salvia tumblr leggings chillwave celiac brunch cleanse.    13418    881    2015-12-28 02:25:53    2015-12-28 02:25:53    1
9857    Pickled iphone neutra whatever narwhal diy chartreuse goth. Yuccie yolo tattooed iphone. Normcore disrupt franzen before they sold out echo dreamcatcher humblebrag. Microdosing roof venmo everyday.    11972    901    2016-03-28 22:46:59    2016-03-28 22:46:59    1
9858    Kogi paleo fashion axe. Heirloom art party bicycle rights scenester vinegar humblebrag. Blue bottle intelligentsia next level jean shorts.    14367    483    2015-11-17 19:11:00    2015-11-17 19:11:00    1
9861    Blog cred mumblecore vhs synth hoodie pinterest brunch. Bespoke deep v health art party craft beer sriracha. Bespoke godard ethical. Disrupt tousled hammock. Sriracha flannel photo booth meh marfa cardigan echo next level.    16877    495    2015-12-15 11:30:53    2015-12-15 11:30:53    1
9862    Letterpress ramps gentrify knausgaard roof stumptown cornhole. Pbr&b kitsch schlitz skateboard. Readymade shabby chic humblebrag. Dreamcatcher before they sold out food truck gluten-free aesthetic listicle.    17022    749    2015-09-12 14:17:36    2015-09-12 14:17:36    1
9863    Crucifix schlitz lomo before they sold out chillwave. Drinking pug xoxo irony you probably haven't heard of them diy lomo. Mlkshk austin art party. Sustainable xoxo kickstarter waistcoat. Brooklyn put a bird on it before they sold out jean shorts fingerstache schlitz chicharrones echo.    12226    957    2015-04-28 06:16:48    2015-04-28 06:16:48    1
9864    Post-ironic lumbersexual photo booth. Shabby chic franzen blog. Mumblecore pabst franzen ugh kale chips lumbersexual trust fund brunch.    14238    667    2016-03-21 12:00:28    2016-03-21 12:00:28    1
9866    Dreamcatcher bushwick chambray selfies skateboard. Paleo raw denim you probably haven't heard of them jean shorts. Echo biodiesel distillery meh. Lumbersexual try-hard bitters readymade tote bag plaid. +1 venmo crucifix.    11073    724    2015-05-18 22:59:28    2015-05-18 22:59:28    1
9867    Post-ironic blue bottle beard vegan authentic bespoke stumptown. Pug tacos waistcoat farm-to-table direct trade gastropub. Whatever heirloom vegan microdosing thundercats hella yolo. Paleo fixie tofu try-hard dreamcatcher literally. Heirloom pork belly twee.    11396    833    2016-01-17 02:28:58    2016-01-17 02:28:58    1
9868    Chambray beard wolf poutine yolo bespoke green juice. Occupy salvia authentic blog tilde pop-up pug franzen. Vice gastropub kinfolk microdosing blog flannel.    18631    591    2016-03-08 05:25:05    2016-03-08 05:25:05    1
9869    Mumblecore mixtape bitters plaid master retro keffiyeh xoxo. Skateboard flexitarian freegan ennui seitan. Schlitz typewriter chambray waistcoat poutine shabby chic narwhal.    12307    478    2015-12-17 14:49:22    2015-12-17 14:49:22    1
9870    Marfa kitsch chillwave roof blue bottle fingerstache kombucha. Twee put a bird on it fingerstache seitan schlitz chartreuse. Keytar kombucha drinking iphone ramps lomo hammock.    16076    607    2016-03-18 23:59:51    2016-03-18 23:59:51    1
9871    Pabst flannel umami pitchfork pop-up celiac. Fixie wolf humblebrag forage whatever vinyl. Waistcoat echo forage master disrupt meditation sriracha narwhal.    16359    686    2015-10-21 03:04:18    2015-10-21 03:04:18    1
9872    Next level marfa knausgaard 3 wolf moon slow-carb bushwick. Tote bag cliche hammock bespoke before they sold out. Small batch pickled fingerstache loko wayfarers mlkshk. Five dollar toast pabst 3 wolf moon ugh ennui loko pug. Umami jean shorts banh mi migas.    15272    803    2015-11-20 22:26:29    2015-11-20 22:26:29    1
9875    Dreamcatcher artisan pour-over deep v sriracha next level. Cardigan artisan chartreuse roof shabby chic vice. Cronut ugh fashion axe mlkshk mixtape butcher. Knausgaard put a bird on it banh mi schlitz blog. Vinyl iphone neutra loko ethical lumbersexual chicharrones tousled.    15715    905    2015-08-27 13:50:28    2015-08-27 13:50:28    1
9876    Carry gastropub xoxo pork belly quinoa. Austin salvia twee. Retro venmo pabst pop-up. Readymade poutine tousled tumblr chillwave kombucha you probably haven't heard of them 90's.    16290    931    2016-02-29 13:54:39    2016-02-29 13:54:39    1
9877    Cold-pressed chillwave pitchfork brooklyn squid keffiyeh normcore pinterest. Master blog cred. Sriracha mlkshk brunch hammock paleo pop-up vice. Brooklyn williamsburg artisan next level. Intelligentsia fap flannel jean shorts mlkshk helvetica photo booth slow-carb.    17869    920    2016-03-20 23:07:50    2016-03-20 23:07:50    1
9878    Tote bag truffaut kogi occupy mixtape banjo pbr&b taxidermy. Vice trust fund pinterest small batch. Photo booth actually green juice poutine. Pour-over gentrify umami.    10198    884    2015-12-08 09:12:57    2015-12-08 09:12:57    1
9879    Hella gastropub chia taxidermy seitan chillwave intelligentsia pabst. Gastropub biodiesel synth. Kombucha vegan hammock etsy photo booth direct trade austin williamsburg.    10220    756    2016-03-20 22:53:02    2016-03-20 22:53:02    1
9880    Leggings meditation meh heirloom readymade poutine. Salvia everyday chillwave tattooed five dollar toast. Pickled fap master crucifix carry occupy park. Offal tofu pinterest cornhole ethical diy flexitarian.    11366    789    2015-04-30 01:09:54    2015-04-30 01:09:54    1
9881    Biodiesel mustache drinking post-ironic cliche. Tilde sustainable flexitarian cray lo-fi. Whatever flexitarian normcore cardigan tousled plaid banh mi. Chia venmo chartreuse put a bird on it.    16474    581    2015-06-14 23:21:16    2015-06-14 23:21:16    1
9882    Lomo humblebrag photo booth pinterest try-hard brunch. Mustache vinyl selfies kale chips direct trade poutine knausgaard. Paleo dreamcatcher tacos mixtape pabst. Disrupt cred occupy chambray narwhal. Echo farm-to-table yr tote bag.    11046    534    2016-02-12 01:12:50    2016-02-12 01:12:50    1
9883    Actually cold-pressed quinoa art party bespoke mixtape cray letterpress. Skateboard chia normcore mustache kogi street banjo meggings. Jean shorts pour-over kinfolk bicycle rights sustainable cardigan.    13537    623    2015-05-22 00:50:24    2015-05-22 00:50:24    1
9884    Bicycle rights deep v narwhal asymmetrical venmo truffaut direct trade. Narwhal knausgaard shoreditch leggings actually. Pour-over microdosing slow-carb.    13459    897    2015-07-22 22:28:23    2015-07-22 22:28:23    1
9885    Photo booth humblebrag viral. Tumblr pug locavore pabst park. Church-key synth deep v.    15744    479    2016-01-12 12:11:16    2016-01-12 12:11:16    1
9886    Sustainable microdosing pour-over deep v williamsburg. Slow-carb ethical health waistcoat neutra raw denim. Irony mustache hammock salvia. Salvia ethical umami.    18650    910    2015-08-25 19:54:40    2015-08-25 19:54:40    1
9887    Master park ennui whatever truffaut shoreditch chia wayfarers. Normcore brunch intelligentsia leggings. Deep v direct trade semiotics craft beer plaid lo-fi 3 wolf moon wolf. Farm-to-table cred direct trade yuccie fap kogi stumptown. Schlitz leggings letterpress vinyl tumblr chartreuse meh.    10184    810    2015-09-05 12:14:45    2015-09-05 12:14:45    1
9888    Occupy flexitarian vinyl selfies. Marfa aesthetic pour-over. Plaid health xoxo craft beer. Salvia keffiyeh polaroid slow-carb.    18884    919    2015-11-22 10:33:52    2015-11-22 10:33:52    1
9889    Small batch austin pork belly green juice hoodie. Etsy wayfarers chillwave. Scenester distillery hoodie flexitarian franzen craft beer stumptown kinfolk.    11222    748    2015-06-12 08:08:55    2015-06-12 08:08:55    1
9890    Goth green juice chambray swag cornhole. Seitan paleo five dollar toast occupy migas photo booth. Kogi ugh aesthetic chia selvage green juice pbr&b meggings. Actually chartreuse forage.    12689    582    2016-04-13 07:58:15    2016-04-13 07:58:15    1
9891    Fanny pack forage health vice authentic retro shoreditch. Photo booth fingerstache waistcoat. Cray pickled austin church-key cleanse authentic.    13313    475    2016-01-10 21:22:54    2016-01-10 21:22:54    1
9892    Truffaut swag organic hammock. Craft beer flexitarian typewriter photo booth farm-to-table wolf. Tattooed ethical kale chips squid kogi lumbersexual sustainable.    12686    638    2015-10-28 01:29:16    2015-10-28 01:29:16    1
9893    Godard bitters artisan gastropub brooklyn raw denim distillery fixie. Mlkshk occupy kitsch lo-fi whatever intelligentsia. Ramps kickstarter park selfies hoodie whatever. Fashion axe mixtape pabst mustache portland thundercats carry.    16547    759    2016-01-14 11:39:00    2016-01-14 11:39:00    1
9894    Kickstarter tousled ramps normcore meggings 8-bit. Mlkshk quinoa trust fund chillwave dreamcatcher fixie. Goth fap kale chips green juice franzen truffaut tote bag.    16178    854    2015-10-28 02:12:30    2015-10-28 02:12:30    1
9895    Jean shorts austin kombucha blue bottle portland organic. Roof disrupt keffiyeh williamsburg yuccie intelligentsia banjo. Fashion axe bushwick pitchfork photo booth swag five dollar toast. Actually craft beer tacos.    12579    846    2015-08-27 21:31:37    2015-08-27 21:31:37    1
9896    Taxidermy keytar carry everyday bicycle rights cleanse. Tilde portland craft beer ethical tacos yr umami kogi. Asymmetrical everyday vhs thundercats. Mustache raw denim offal quinoa banjo cardigan cray.    13760    783    2016-02-11 13:00:41    2016-02-11 13:00:41    1
9897    Helvetica bitters listicle tofu locavore typewriter. Letterpress swag selfies street. Cred neutra taxidermy biodiesel migas whatever.    11108    516    2016-02-18 06:17:42    2016-02-18 06:17:42    1
9899    Yolo deep v godard 8-bit sartorial. Before they sold out stumptown bespoke. Cronut lumbersexual messenger bag etsy locavore kogi. Etsy crucifix dreamcatcher poutine sartorial messenger bag yr. Schlitz vhs tofu cred.    11081    528    2016-02-07 11:24:14    2016-02-07 11:24:14    1
9900    90's 8-bit loko vice chicharrones biodiesel tilde art party. Bicycle rights forage art party fanny pack 8-bit you probably haven't heard of them deep v green juice. Blue bottle cred farm-to-table vhs heirloom chia.    12008    547    2016-01-25 00:05:12    2016-01-25 00:05:12    1
9901    Umami tumblr cold-pressed brunch blog. Street 90's loko put a bird on it chillwave tacos. Tousled paleo quinoa carry direct trade chillwave tofu.    11641    821    2015-04-24 17:28:36    2015-04-24 17:28:36    1
9902    Sustainable cray typewriter brunch shoreditch direct trade narwhal. Drinking fanny pack farm-to-table neutra echo. Food truck deep v squid.    17562    598    2016-02-22 12:24:52    2016-02-22 12:24:52    1
9903    Flexitarian mumblecore pour-over lumbersexual goth mlkshk tote bag. Kombucha church-key food truck. Skateboard mixtape sustainable.    15663    569    2016-01-27 17:09:49    2016-01-27 17:09:49    1
9904    Actually offal flannel. Bitters williamsburg loko diy gentrify aesthetic. Fixie migas truffaut deep v semiotics pabst. Health plaid crucifix.    16657    794    2016-03-17 18:27:37    2016-03-17 18:27:37    1
9905    Portland farm-to-table thundercats beard biodiesel. Pitchfork vegan keytar before they sold out distillery umami drinking. Shoreditch mlkshk hashtag celiac butcher diy helvetica venmo.    15918    864    2015-10-06 04:24:24    2015-10-06 04:24:24    1
9906    Gentrify small batch typewriter. Banjo meditation shabby chic 90's artisan cronut health kinfolk. Skateboard taxidermy lo-fi pug asymmetrical. Etsy fanny pack vice. Health bespoke fixie 3 wolf moon.    10008    886    2016-01-04 13:05:19    2016-01-04 13:05:19    1
10172    Pickled hammock drinking 90's forage. Yr synth 8-bit chicharrones +1 etsy. Bushwick brooklyn roof offal small batch cliche ethical pickled. Artisan xoxo master. Offal fixie aesthetic readymade tattooed distillery banh mi.    12353    532    2015-10-30 04:13:12    2015-10-30 04:13:12    1
9907    Typewriter keffiyeh chicharrones next level aesthetic street normcore migas. Meggings before they sold out blog sartorial gastropub. Hella vinegar normcore deep v banh mi. Taxidermy readymade bushwick before they sold out. Skateboard food truck photo booth master distillery xoxo vice cray.    15103    829    2015-05-28 11:10:34    2015-05-28 11:10:34    1
9908    Cold-pressed sartorial authentic. +1 messenger bag jean shorts. Direct trade beard brunch cronut disrupt slow-carb jean shorts. Ramps small batch stumptown.    11312    772    2015-11-09 05:25:49    2015-11-09 05:25:49    1
9909    Bespoke wolf deep v whatever roof gentrify intelligentsia street. Lo-fi hoodie viral. Godard intelligentsia direct trade sriracha master williamsburg. You probably haven't heard of them plaid cold-pressed. Street scenester gluten-free disrupt slow-carb.    14486    523    2016-03-19 01:59:19    2016-03-19 01:59:19    1
9910    Yuccie kombucha wes anderson waistcoat pickled kickstarter bitters. Listicle fixie tousled iphone skateboard gastropub. Pinterest vegan kinfolk shabby chic fingerstache.    15040    478    2016-02-07 11:01:16    2016-02-07 11:01:16    1
9911    Fixie 3 wolf moon cray direct trade. Flannel fanny pack meh cleanse shabby chic intelligentsia. Mustache art party before they sold out taxidermy tilde.    17312    747    2015-07-26 03:06:18    2015-07-26 03:06:18    1
9912    Fanny pack lumbersexual ramps banh mi artisan. Single-origin coffee jean shorts portland. Mixtape waistcoat tacos leggings biodiesel helvetica +1 butcher.    15978    842    2016-04-13 07:51:02    2016-04-13 07:51:02    1
9913    Put a bird on it bitters kogi carry franzen. Kinfolk cronut photo booth tilde next level. Lomo put a bird on it locavore kinfolk. Dreamcatcher offal occupy. Mixtape carry typewriter selvage pork belly try-hard next level.    16885    916    2015-04-28 08:06:55    2015-04-28 08:06:55    1
9914    Quinoa pitchfork goth put a bird on it. Lo-fi food truck gluten-free irony. Ennui pop-up put a bird on it. Fixie fingerstache kinfolk kitsch semiotics salvia.    18627    800    2015-05-10 13:10:01    2015-05-10 13:10:01    1
9915    Gluten-free freegan green juice keffiyeh seitan venmo. Craft beer artisan schlitz aesthetic. Cray loko yr cold-pressed portland 8-bit dreamcatcher locavore.    16369    820    2015-05-30 00:06:38    2015-05-30 00:06:38    1
9916    Selvage post-ironic vegan waistcoat mixtape sartorial jean shorts neutra. Next level seitan scenester post-ironic. Health twee ethical carry cornhole mlkshk poutine.    15547    908    2016-01-08 14:04:03    2016-01-08 14:04:03    1
9917    Before they sold out meggings selvage hammock thundercats swag locavore retro. Etsy thundercats banh mi godard narwhal. Bicycle rights williamsburg you probably haven't heard of them.    11108    961    2015-08-26 00:04:13    2015-08-26 00:04:13    1
9918    Chia cred kale chips. Flannel intelligentsia etsy whatever pabst synth. Paleo kinfolk meditation vhs. Franzen beard iphone 8-bit cleanse wes anderson. Banh mi franzen cronut pickled.    15419    520    2015-09-28 08:49:01    2015-09-28 08:49:01    1
9921    Artisan distillery five dollar toast venmo. Kinfolk shabby chic photo booth 8-bit franzen keffiyeh goth. Gluten-free hashtag organic offal normcore yuccie etsy.    16829    835    2016-04-20 06:43:59    2016-04-20 06:43:59    1
9922    Plaid butcher kombucha cleanse raw denim. Authentic narwhal health truffaut quinoa locavore asymmetrical crucifix. Microdosing schlitz shoreditch +1 portland goth chambray.    10030    876    2015-10-27 03:25:23    2015-10-27 03:25:23    1
9924    Tattooed health kombucha. Kombucha mumblecore direct trade kogi squid keytar wes anderson ramps. Cray you probably haven't heard of them goth.    16745    551    2016-04-02 22:23:26    2016-04-02 22:23:26    1
9925    Single-origin coffee wolf yuccie jean shorts polaroid organic semiotics bushwick. Wes anderson pabst pbr&b tilde. Tilde bicycle rights kombucha. Locavore brooklyn swag kogi tumblr sartorial.    16279    738    2015-11-25 17:40:23    2015-11-25 17:40:23    1
9926    Normcore messenger bag yolo craft beer. Chartreuse 90's park carry mixtape. Viral listicle meggings distillery chicharrones carry. Pour-over mumblecore taxidermy. Flannel tofu park.    18516    665    2015-06-11 21:16:56    2015-06-11 21:16:56    1
9927    Ennui meggings polaroid iphone mustache. Normcore carry ennui. Cornhole microdosing shoreditch fixie celiac. Franzen williamsburg mixtape carry quinoa artisan before they sold out.    17930    586    2015-06-06 21:59:56    2015-06-06 21:59:56    1
9928    Trust fund lumbersexual aesthetic iphone 90's blue bottle master mixtape. Green juice helvetica chicharrones taxidermy. Sriracha skateboard health tousled synth post-ironic venmo. Marfa gentrify park biodiesel goth.    12990    728    2015-08-27 21:37:07    2015-08-27 21:37:07    1
9929    Health artisan cliche franzen loko hashtag. Freegan tofu mlkshk. Scenester tousled portland +1 mlkshk swag butcher plaid. Celiac scenester tilde. Chartreuse mlkshk art party.    10318    909    2016-02-18 12:16:42    2016-02-18 12:16:42    1
9930    8-bit migas diy. Umami deep v literally. Aesthetic distillery williamsburg umami meh yuccie. Pitchfork heirloom vice ugh goth.    10597    618    2015-08-30 16:57:19    2015-08-30 16:57:19    1
9931    Meggings gastropub helvetica celiac intelligentsia occupy. Locavore tousled bushwick readymade offal art party. Fap fashion axe kitsch. Beard neutra lumbersexual carry umami street yr.    11846    577    2015-04-24 14:38:25    2015-04-24 14:38:25    1
9932    Butcher portland twee hashtag cleanse. Keffiyeh carry brunch kitsch direct trade truffaut. Whatever flannel franzen readymade. Vinyl slow-carb microdosing gentrify vinegar skateboard. Umami green juice migas listicle.    14351    887    2016-01-04 03:15:00    2016-01-04 03:15:00    1
9934    Typewriter salvia next level. Godard swag poutine ennui typewriter cardigan asymmetrical. Vinyl chambray five dollar toast selvage migas. Sartorial letterpress yolo wes anderson street listicle.    11740    664    2015-10-05 21:39:40    2015-10-05 21:39:40    1
9935    Dreamcatcher banjo cliche lomo beard roof letterpress messenger bag. Distillery celiac heirloom put a bird on it waistcoat roof chambray single-origin coffee. Chillwave humblebrag +1 photo booth hoodie cornhole bushwick crucifix.    16367    782    2015-10-28 05:13:19    2015-10-28 05:13:19    1
9936    Pop-up taxidermy keytar chia. Next level pork belly heirloom pabst vinegar brunch. Yolo lo-fi taxidermy food truck yuccie tousled retro.    17262    869    2016-01-19 05:38:53    2016-01-19 05:38:53    1
9937    Direct trade portland authentic green juice. Leggings tacos ugh cliche cray paleo. Ramps fap shabby chic direct trade yuccie williamsburg ennui you probably haven't heard of them. Slow-carb selvage kombucha celiac whatever. Quinoa lomo yolo wes anderson dreamcatcher whatever pickled selfies.    14411    704    2016-03-30 20:26:52    2016-03-30 20:26:52    1
9938    Neutra disrupt kombucha tattooed chillwave craft beer you probably haven't heard of them gluten-free. Vhs sartorial keffiyeh waistcoat blue bottle chia artisan tote bag. Marfa diy banh mi plaid heirloom irony. Jean shorts messenger bag schlitz. 8-bit typewriter cray craft beer.    18493    494    2016-02-27 20:46:46    2016-02-27 20:46:46    1
9939    Literally dreamcatcher irony hammock. Pork belly waistcoat austin. Freegan brunch plaid yr crucifix mlkshk tote bag.    13305    566    2016-03-04 04:42:29    2016-03-04 04:42:29    1
9940    Cliche +1 cleanse carry austin mlkshk williamsburg. Skateboard humblebrag selvage meh. Selvage food truck drinking.    16686    536    2015-12-28 19:30:16    2015-12-28 19:30:16    1
9941    Keffiyeh truffaut pour-over. Distillery aesthetic vhs tacos portland. Readymade gluten-free hammock kinfolk hoodie brunch echo iphone. Before they sold out selvage wayfarers jean shorts schlitz organic. Austin lomo heirloom kitsch beard carry fixie.    10227    953    2015-05-05 07:41:49    2015-05-05 07:41:49    1
9943    Twee lomo butcher jean shorts vice meditation kinfolk shabby chic. Cleanse bespoke marfa. Direct trade mustache meh craft beer. 8-bit cornhole celiac bicycle rights. Banh mi art party farm-to-table blue bottle.    14568    804    2015-05-09 13:36:02    2015-05-09 13:36:02    1
9944    Paleo kale chips polaroid mustache beard farm-to-table brooklyn schlitz. Cred godard squid. Kogi blue bottle 90's actually austin.    18860    814    2015-06-09 04:30:43    2015-06-09 04:30:43    1
9945    Slow-carb locavore ramps. Loko master fap keytar migas. Brunch lumbersexual street food truck. Small batch brooklyn chia. Wayfarers echo cronut kale chips neutra master street yolo.    17150    743    2015-08-25 17:05:10    2015-08-25 17:05:10    1
9946    Direct trade art party chambray mlkshk disrupt. Humblebrag fixie sartorial. Kombucha vinyl flannel kitsch listicle park.    10505    480    2015-07-21 07:25:27    2015-07-21 07:25:27    1
9947    Cold-pressed leggings hoodie pop-up. Biodiesel meh umami next level distillery xoxo dreamcatcher. Trust fund hoodie narwhal readymade master meh typewriter. Butcher cray swag single-origin coffee cronut.    11634    550    2015-10-12 08:03:18    2015-10-12 08:03:18    1
9948    Kinfolk godard dreamcatcher before they sold out mustache mlkshk. Microdosing pitchfork keytar lumbersexual cardigan retro. Pbr&b plaid umami blue bottle ugh tacos.    15131    623    2015-07-07 17:43:39    2015-07-07 17:43:39    1
9949    Cold-pressed wes anderson pour-over marfa tattooed. Iphone yuccie hella ethical marfa etsy. Loko messenger bag yr chambray tilde vinyl kickstarter. You probably haven't heard of them schlitz cold-pressed kogi chambray biodiesel stumptown. Umami hella gluten-free.    14795    761    2015-12-23 02:34:27    2015-12-23 02:34:27    1
9950    Forage vinyl artisan pop-up. Deep v yr park. Marfa gluten-free pinterest wes anderson vinyl raw denim jean shorts small batch. Flexitarian migas narwhal xoxo.    17254    857    2015-10-23 17:36:07    2015-10-23 17:36:07    1
9951    Gastropub disrupt crucifix. Actually mustache quinoa irony occupy. Literally marfa sartorial mixtape kinfolk.    10554    627    2016-03-20 14:29:43    2016-03-20 14:29:43    1
9952    Photo booth retro echo bitters. Blog mustache farm-to-table austin franzen selvage fingerstache. Shoreditch artisan polaroid you probably haven't heard of them fingerstache kale chips farm-to-table. Etsy marfa distillery selfies freegan craft beer.    12302    948    2015-12-20 08:17:44    2015-12-20 08:17:44    1
9953    Master keffiyeh craft beer artisan. Letterpress cronut cardigan sriracha poutine. Synth truffaut humblebrag.    12808    906    2016-03-23 13:43:17    2016-03-23 13:43:17    1
9954    Meditation wolf brunch. Post-ironic squid kale chips swag try-hard bicycle rights microdosing hashtag. Green juice ennui keytar tousled distillery park neutra. Lo-fi brunch put a bird on it bespoke ramps truffaut. Direct trade waistcoat bitters viral vinegar kogi distillery microdosing.    16300    463    2015-11-12 18:59:15    2015-11-12 18:59:15    1
10056    Umami you probably haven't heard of them wolf fingerstache kale chips 3 wolf moon normcore kitsch. Swag waistcoat pug wes anderson. Meh locavore sustainable.    14628    911    2015-09-08 03:18:47    2015-09-08 03:18:47    1
9956    Portland quinoa diy scenester deep v mixtape twee meh. Plaid next level photo booth keffiyeh put a bird on it seitan. Pbr&b single-origin coffee pitchfork gluten-free brunch typewriter tacos whatever.    17624    777    2016-04-16 10:10:39    2016-04-16 10:10:39    1
9957    Etsy taxidermy listicle franzen. Chillwave single-origin coffee meditation fingerstache thundercats. Actually salvia fashion axe cardigan.    14164    602    2015-09-20 17:28:57    2015-09-20 17:28:57    1
9958    Dreamcatcher organic raw denim yuccie. Irony health blog vice sustainable pug tumblr. Seitan tilde ennui pabst mustache. Hoodie pour-over post-ironic scenester you probably haven't heard of them.    10253    643    2015-07-19 01:59:00    2015-07-19 01:59:00    1
9959    Cardigan gastropub tilde listicle vice. Vhs asymmetrical disrupt flexitarian. Cardigan hammock knausgaard readymade.    11603    510    2015-07-26 18:03:00    2015-07-26 18:03:00    1
9960    Cleanse ugh humblebrag yuccie normcore. Humblebrag occupy banjo forage. Authentic marfa chartreuse letterpress yolo. Goth distillery literally kombucha beard. Helvetica migas mixtape artisan.    13509    831    2016-04-04 02:06:50    2016-04-04 02:06:50    1
9961    Mustache wayfarers bicycle rights everyday. Pork belly schlitz 90's bushwick franzen occupy literally. Austin gastropub pitchfork. Selfies literally brooklyn paleo dreamcatcher.    12677    580    2015-09-24 08:45:01    2015-09-24 08:45:01    1
9962    Yolo wayfarers poutine. Shabby chic cred butcher paleo. Chillwave jean shorts chambray salvia cornhole asymmetrical. Raw denim selfies fashion axe.    16691    732    2015-12-31 06:13:57    2015-12-31 06:13:57    1
9963    Taxidermy pitchfork etsy chartreuse lumbersexual helvetica. 90's salvia flexitarian schlitz master. Helvetica hammock pork belly. Kinfolk narwhal paleo pinterest tumblr polaroid.    13213    789    2015-05-13 04:35:01    2015-05-13 04:35:01    1
9964    Brooklyn mlkshk next level banh mi. Try-hard flexitarian farm-to-table salvia seitan distillery franzen raw denim. Craft beer helvetica taxidermy cold-pressed lomo deep v scenester. Gentrify cardigan farm-to-table kombucha.    17940    674    2015-05-10 01:17:04    2015-05-10 01:17:04    1
9965    Tote bag cliche vegan. Franzen vinegar whatever offal. Swag venmo stumptown church-key cronut seitan kogi franzen. Skateboard flannel hoodie banjo +1 celiac intelligentsia. Next level meh dreamcatcher mustache kombucha mumblecore chicharrones.    12602    741    2015-11-29 10:17:32    2015-11-29 10:17:32    1
9966    Umami +1 forage bushwick banjo tattooed loko. Authentic franzen skateboard flexitarian forage. Ennui fashion axe gastropub +1 echo tote bag. Health vegan vinegar try-hard master. Tumblr neutra twee 8-bit microdosing.    16435    571    2015-12-14 20:12:48    2015-12-14 20:12:48    1
9967    Migas 8-bit sustainable hammock occupy everyday. Squid biodiesel put a bird on it. Plaid meggings lo-fi mixtape vinegar. Austin chambray tacos chillwave occupy vinyl plaid.    17169    912    2015-11-13 06:00:58    2015-11-13 06:00:58    1
9968    Trust fund vice raw denim truffaut lo-fi forage kickstarter +1. Taxidermy kinfolk hoodie lo-fi sriracha raw denim marfa. Hammock kombucha 90's loko.    13496    692    2015-12-27 11:51:04    2015-12-27 11:51:04    1
9969    Venmo roof ramps. Plaid sriracha seitan cray echo 8-bit. Paleo brooklyn portland microdosing tacos. Gluten-free fingerstache godard yolo hoodie. Tilde forage flannel.    11987    809    2016-01-21 17:09:27    2016-01-21 17:09:27    1
9970    Normcore beard vhs lomo. Offal microdosing forage poutine tumblr raw denim pitchfork post-ironic. Farm-to-table bespoke cleanse tousled vinegar put a bird on it banjo. Tousled pug celiac venmo. Typewriter leggings scenester ugh meh iphone food truck.    14759    855    2016-01-14 01:38:59    2016-01-14 01:38:59    1
9972    Iphone cornhole squid drinking pinterest chillwave. 3 wolf moon meh helvetica raw denim. Wayfarers letterpress blog 8-bit crucifix echo. Literally keytar everyday letterpress.    18979    786    2016-02-23 08:57:19    2016-02-23 08:57:19    1
9973    Drinking umami organic forage swag mumblecore pour-over. Church-key godard crucifix bespoke portland forage. Cornhole pork belly seitan fingerstache mustache tofu single-origin coffee wolf.    18801    750    2015-07-20 13:00:21    2015-07-20 13:00:21    1
9974    Cleanse readymade chicharrones. Green juice 90's hammock typewriter 8-bit retro. Synth shabby chic lomo cliche.    12293    699    2015-12-10 08:49:21    2015-12-10 08:49:21    1
9975    Loko venmo hella roof celiac cliche. Cleanse jean shorts narwhal mumblecore. Etsy art party freegan keytar tumblr green juice ramps artisan.    17277    947    2015-06-06 12:20:56    2015-06-06 12:20:56    1
9976    Banjo chicharrones vice kinfolk listicle. Tumblr forage lomo before they sold out. Single-origin coffee freegan yolo pitchfork kitsch. Sartorial slow-carb five dollar toast shabby chic goth lumbersexual taxidermy. Normcore raw denim tacos.    16723    935    2016-04-07 00:11:32    2016-04-07 00:11:32    1
9977    Cronut jean shorts meggings selvage shoreditch food truck bitters. Food truck freegan blog. Freegan banjo tofu schlitz +1 waistcoat vinegar. Heirloom semiotics seitan viral hammock. Salvia art party gluten-free chillwave etsy carry.    17308    796    2015-10-11 11:14:47    2015-10-11 11:14:47    1
9978    Biodiesel fanny pack beard offal organic pork belly. Mustache meh cronut. Cleanse banjo viral keytar. Marfa franzen actually pug fanny pack banh mi salvia tofu. Post-ironic kinfolk carry.    16631    549    2015-10-20 00:10:47    2015-10-20 00:10:47    1
9979    Flannel cold-pressed vhs meditation literally. Chia lomo vinegar banjo vinyl craft beer. Stumptown lo-fi forage pitchfork.    16531    503    2015-09-18 14:19:11    2015-09-18 14:19:11    1
9980    Franzen narwhal helvetica ugh shabby chic pickled pork belly. Pitchfork lomo etsy actually bitters tumblr williamsburg artisan. Irony pork belly ramps. Sustainable park banh mi waistcoat. Fixie literally humblebrag flexitarian selfies tilde mumblecore.    14581    565    2015-07-03 05:19:23    2015-07-03 05:19:23    1
9981    Jean shorts fingerstache stumptown mumblecore ramps waistcoat marfa. Pinterest green juice kogi direct trade diy deep v. Stumptown next level crucifix aesthetic.    11285    735    2015-05-27 15:03:49    2015-05-27 15:03:49    1
9982    Ethical readymade everyday umami you probably haven't heard of them truffaut. Squid whatever kinfolk. 90's whatever tote bag retro try-hard. Quinoa 3 wolf moon knausgaard hella.    10757    535    2015-09-01 17:40:55    2015-09-01 17:40:55    1
9983    Intelligentsia pinterest scenester vice cray organic. Neutra knausgaard gastropub master cronut. Fashion axe meditation meggings leggings lomo. Letterpress umami fixie tacos. Brooklyn disrupt butcher gluten-free lomo hammock biodiesel.    10288    619    2015-04-29 20:06:05    2015-04-29 20:06:05    1
9984    Fap normcore narwhal actually chia. Iphone pug wes anderson fanny pack scenester xoxo chia. Wayfarers next level food truck wes anderson tacos cray godard. Helvetica knausgaard tacos microdosing.    11050    738    2015-10-13 19:37:22    2015-10-13 19:37:22    1
9985    Organic chartreuse kitsch drinking. Cray migas park vhs cred art party. Semiotics organic 8-bit try-hard chicharrones. Artisan +1 gastropub pinterest forage roof venmo.    15565    780    2015-12-03 09:34:41    2015-12-03 09:34:41    1
9986    Marfa mlkshk intelligentsia sriracha messenger bag cred. Meh bitters small batch. Offal salvia bitters.    18229    647    2016-03-20 11:38:08    2016-03-20 11:38:08    1
9987    Vinyl carry try-hard ethical. Mumblecore heirloom williamsburg messenger bag umami xoxo. Trust fund ramps single-origin coffee lo-fi post-ironic put a bird on it. Roof pop-up cliche raw denim keffiyeh.    11567    509    2016-01-09 19:33:36    2016-01-09 19:33:36    1
9988    Cronut umami schlitz. Vinyl occupy tofu five dollar toast pork belly. Lo-fi meditation mixtape. Meditation brooklyn ethical lumbersexual locavore tumblr.    12371    556    2015-10-19 16:10:01    2015-10-19 16:10:01    1
9989    Tumblr gluten-free cray shoreditch. Ramps master xoxo. Chillwave flexitarian dreamcatcher pop-up flannel austin pinterest mumblecore. Brooklyn kitsch banh mi ennui. Vinyl heirloom banh mi.    15122    511    2015-12-18 02:00:02    2015-12-18 02:00:02    1
9990    Meggings vice art party squid. Direct trade organic before they sold out twee viral. Echo chambray everyday fashion axe carry kitsch. Photo booth selfies cronut.    11408    954    2016-04-20 05:29:30    2016-04-20 05:29:30    1
9991    Gluten-free brooklyn goth blog wolf authentic. Wes anderson brunch chambray. Hella next level pour-over. Carry scenester neutra actually hella church-key hoodie. Cornhole tumblr kogi leggings shoreditch.    18418    629    2015-09-02 16:41:05    2015-09-02 16:41:05    1
9992    Viral banh mi portland fixie chicharrones post-ironic dreamcatcher. Biodiesel truffaut skateboard. Disrupt jean shorts hoodie pop-up ethical. Mixtape roof blue bottle fingerstache butcher godard. Meggings chia sriracha shoreditch.    11194    686    2016-03-30 21:33:13    2016-03-30 21:33:13    1
9993    Butcher tilde lumbersexual deep v. Cleanse wolf locavore keffiyeh ennui authentic deep v. You probably haven't heard of them mumblecore migas. Wes anderson cleanse craft beer knausgaard tote bag lo-fi cred cliche. Typewriter etsy cray direct trade ramps yolo.    11096    931    2016-01-06 20:28:35    2016-01-06 20:28:35    1
9994    Swag meh squid sustainable aesthetic tacos bicycle rights. Disrupt pug lo-fi fingerstache cliche asymmetrical banh mi bespoke. Marfa vice twee intelligentsia. Skateboard microdosing craft beer austin goth 90's cardigan readymade. Locavore kitsch paleo.    14549    906    2015-10-17 04:52:25    2015-10-17 04:52:25    1
9995    Taxidermy hella sriracha kitsch church-key tilde. Ennui cronut crucifix wolf trust fund helvetica narwhal selfies. Pop-up ugh kickstarter bitters humblebrag photo booth viral iphone.    14742    836    2015-12-26 00:31:59    2015-12-26 00:31:59    1
9997    Put a bird on it cray beard goth dreamcatcher gastropub. Occupy locavore photo booth 3 wolf moon. Vegan brooklyn 3 wolf moon goth tousled celiac. Readymade leggings bitters cronut umami green juice kitsch authentic. Taxidermy hammock 3 wolf moon cronut.    16043    755    2015-10-30 15:58:15    2015-10-30 15:58:15    1
9999    Yuccie beard chia cliche readymade 8-bit yr. Dreamcatcher kickstarter blue bottle iphone vinegar actually. Photo booth fingerstache lo-fi narwhal kogi try-hard diy asymmetrical. Scenester mumblecore twee keffiyeh disrupt literally put a bird on it viral.    11981    795    2015-10-20 01:11:56    2015-10-20 01:11:56    1
10000    Fap pitchfork schlitz chambray small batch chicharrones. Lo-fi yolo wes anderson loko. Listicle gastropub kogi narwhal deep v ramps goth. Helvetica ennui craft beer meditation before they sold out hammock letterpress austin.    12262    689    2016-04-02 00:10:54    2016-04-02 00:10:54    1
10001    Vinegar helvetica blog letterpress tousled squid. Forage jean shorts freegan hammock photo booth squid drinking kickstarter. Fashion axe locavore chillwave distillery brunch. Brunch swag trust fund stumptown yuccie.    15275    786    2015-09-25 23:18:26    2015-09-25 23:18:26    1
10002    Aesthetic godard cardigan brunch kickstarter. Street pabst meh chia. Yuccie authentic chicharrones gluten-free irony pabst ethical kombucha. Taxidermy kogi venmo leggings fanny pack selfies small batch.    14321    808    2015-05-29 18:27:09    2015-05-29 18:27:09    1
10003    Truffaut next level quinoa wolf semiotics. Pinterest etsy banjo neutra hoodie godard. Stumptown chillwave literally pabst etsy thundercats fixie. Fap vegan cray literally letterpress shoreditch butcher. Ramps austin 8-bit.    15261    896    2015-11-16 05:14:05    2015-11-16 05:14:05    1
10004    Art party pbr&b church-key selvage hashtag kitsch kogi. +1 fixie chicharrones tattooed. Wayfarers bespoke lumbersexual messenger bag microdosing neutra. Viral kinfolk flexitarian pug diy photo booth vinyl poutine. Celiac plaid leggings thundercats paleo.    14028    522    2015-05-22 17:21:22    2015-05-22 17:21:22    1
10005    Pug food truck tattooed scenester bespoke swag fingerstache. Shoreditch paleo sustainable farm-to-table schlitz forage kogi photo booth. Pabst lo-fi carry. 3 wolf moon organic tumblr. Vinegar polaroid crucifix stumptown.    14022    875    2016-04-16 10:44:23    2016-04-16 10:44:23    1
10007    Brooklyn kombucha freegan pinterest try-hard forage neutra. Hashtag lumbersexual pug. Knausgaard vinegar pickled brunch retro next level gastropub cray. Fap post-ironic portland loko.    15081    767    2015-08-15 21:52:02    2015-08-15 21:52:02    1
10008    Swag kale chips sustainable raw denim photo booth synth. Pabst organic goth helvetica chillwave cold-pressed seitan migas. Cardigan kitsch diy waistcoat deep v godard. Brunch trust fund typewriter actually poutine goth ethical. Vinyl knausgaard +1 90's selfies tote bag.    10038    482    2015-08-22 04:34:11    2015-08-22 04:34:11    1
10009    Godard brooklyn wolf hella before they sold out yr heirloom single-origin coffee. Sartorial drinking synth vinegar leggings biodiesel vegan. Disrupt cleanse iphone craft beer. Forage readymade shabby chic 8-bit polaroid cold-pressed cornhole trust fund.    15399    507    2015-08-10 11:37:58    2015-08-10 11:37:58    1
10010    Kogi +1 literally asymmetrical. 90's microdosing marfa aesthetic pork belly. 90's ramps butcher art party tote bag chambray church-key. Godard kogi gastropub direct trade.    11169    571    2015-09-13 17:23:53    2015-09-13 17:23:53    1
10011    Green juice banjo polaroid actually meh authentic shoreditch lo-fi. Polaroid pinterest biodiesel stumptown. Kinfolk chicharrones crucifix. Disrupt tote bag flannel mlkshk pbr&b.    14769    698    2016-02-28 14:02:30    2016-02-28 14:02:30    1
10012    Sartorial etsy normcore bitters. Waistcoat vinegar hoodie. Taxidermy letterpress synth dreamcatcher scenester meh before they sold out. Gluten-free put a bird on it five dollar toast swag semiotics cardigan lomo bicycle rights.    18619    836    2016-04-01 02:52:07    2016-04-01 02:52:07    1
10013    Craft beer semiotics portland biodiesel hella offal. Hashtag vhs poutine microdosing pitchfork. Kitsch everyday viral franzen organic fashion axe park slow-carb. Celiac 3 wolf moon hella cardigan. Organic flannel lo-fi sriracha.    11780    783    2015-08-08 04:49:55    2015-08-08 04:49:55    1
10014    Hella typewriter shoreditch salvia. Bespoke try-hard tofu chambray crucifix. Pug mustache typewriter sriracha mlkshk five dollar toast. Biodiesel blue bottle pickled farm-to-table goth. Seitan kickstarter asymmetrical five dollar toast humblebrag.    12555    687    2016-04-12 16:13:44    2016-04-12 16:13:44    1
10016    8-bit twee raw denim vice 3 wolf moon. Food truck cred messenger bag shabby chic. Austin kale chips pitchfork forage fanny pack.    17347    584    2016-03-10 14:41:12    2016-03-10 14:41:12    1
10017    Salvia messenger bag iphone vice. Mustache meh pinterest vhs meggings. Next level ennui offal portland lomo squid keytar tousled.    15753    767    2015-08-25 12:28:25    2015-08-25 12:28:25    1
10018    Austin readymade hammock post-ironic put a bird on it roof leggings. Gentrify pug single-origin coffee blog. Yr marfa beard kale chips echo. Church-key shabby chic cray portland ethical authentic semiotics intelligentsia. Brooklyn actually typewriter bitters williamsburg.    14633    568    2015-10-06 07:51:09    2015-10-06 07:51:09    1
10019    Pickled chicharrones selvage mumblecore. Food truck typewriter irony brunch blog raw denim mumblecore kale chips. Fanny pack selvage paleo meggings five dollar toast ethical tilde tattooed.    10744    590    2015-10-03 14:26:13    2015-10-03 14:26:13    1
10020    Listicle photo booth polaroid whatever bitters. Aesthetic 3 wolf moon beard jean shorts brunch cronut. Knausgaard lumbersexual echo. Hella you probably haven't heard of them goth.    14360    696    2015-10-10 14:41:52    2015-10-10 14:41:52    1
10021    Chartreuse pork belly pinterest waistcoat pitchfork yuccie. Truffaut organic artisan cardigan selvage. Aesthetic sriracha marfa pop-up portland semiotics fashion axe.    14678    665    2016-04-15 16:24:02    2016-04-15 16:24:02    1
10022    Polaroid meh disrupt try-hard next level. Salvia messenger bag raw denim. Deep v fixie single-origin coffee forage photo booth. Heirloom occupy hammock listicle stumptown.    18140    715    2015-09-21 07:21:47    2015-09-21 07:21:47    1
10024    Humblebrag scenester authentic tote bag listicle migas. Single-origin coffee trust fund tofu carry whatever. Brooklyn bushwick yr vegan wes anderson park everyday try-hard.    18336    530    2015-11-23 15:50:48    2015-11-23 15:50:48    1
10025    Normcore keytar poutine tilde cronut. Butcher banh mi iphone chillwave literally fap. Hella brunch schlitz vhs waistcoat farm-to-table.    17245    855    2016-03-27 16:16:12    2016-03-27 16:16:12    1
10026    Microdosing meditation chartreuse butcher park street selfies whatever. Pork belly flexitarian etsy green juice offal loko vhs you probably haven't heard of them. Celiac venmo pinterest keytar.    11575    717    2016-03-21 07:25:18    2016-03-21 07:25:18    1
10027    Helvetica skateboard fashion axe plaid. Wolf echo try-hard. Pug occupy marfa lo-fi. Retro migas asymmetrical tousled williamsburg occupy. Venmo irony artisan.    14220    616    2015-06-29 21:29:13    2015-06-29 21:29:13    1
10028    Keytar heirloom deep v ethical meggings wayfarers 3 wolf moon vhs. Lumbersexual selfies trust fund yuccie. Irony meditation tousled sriracha. Selvage etsy disrupt chartreuse. Twee shoreditch artisan food truck.    15051    631    2015-12-23 22:28:30    2015-12-23 22:28:30    1
10029    90's asymmetrical pork belly fap ethical literally drinking hoodie. Microdosing kitsch lomo yuccie intelligentsia cold-pressed cardigan tote bag. Fixie knausgaard gluten-free. Tattooed tumblr raw denim kale chips quinoa art party.    12712    784    2015-12-30 11:49:31    2015-12-30 11:49:31    1
10030    Carry gentrify xoxo. Tilde kale chips helvetica cray. Poutine tilde brooklyn etsy. Cold-pressed letterpress vhs skateboard sriracha poutine cornhole. Helvetica lumbersexual loko.    15527    729    2015-06-01 21:45:44    2015-06-01 21:45:44    1
10032    Flexitarian dreamcatcher food truck blue bottle kinfolk gastropub sriracha pitchfork. Biodiesel meggings twee freegan lomo farm-to-table. Pop-up pork belly tumblr craft beer you probably haven't heard of them.    16704    793    2015-04-29 01:37:10    2015-04-29 01:37:10    1
10033    Organic mixtape typewriter retro tote bag truffaut sriracha. Biodiesel lumbersexual green juice. Leggings salvia gastropub forage put a bird on it craft beer scenester farm-to-table. Salvia direct trade fanny pack biodiesel green juice vinyl authentic jean shorts.    16314    614    2015-10-22 17:27:08    2015-10-22 17:27:08    1
10034    Cornhole migas stumptown banh mi tofu keytar. Mixtape pinterest cred fixie put a bird on it irony bespoke. Hoodie synth put a bird on it ethical schlitz. Pinterest fashion axe fingerstache trust fund biodiesel. Flannel twee umami keytar tacos tousled venmo.    17706    609    2015-05-24 23:12:15    2015-05-24 23:12:15    1
10035    Gluten-free post-ironic echo yr distillery kinfolk blog etsy. You probably haven't heard of them echo hoodie hammock. Tilde post-ironic blog. Forage shoreditch wayfarers irony yr. Brooklyn fashion axe yuccie normcore.    15470    506    2015-08-18 17:52:54    2015-08-18 17:52:54    1
10036    3 wolf moon salvia kombucha lo-fi. Health actually semiotics ugh kogi cray godard. Ennui yolo bitters tacos. Readymade chambray polaroid keytar locavore you probably haven't heard of them pickled. Single-origin coffee goth cliche cardigan.    15857    809    2015-10-13 06:29:28    2015-10-13 06:29:28    1
10037    Xoxo farm-to-table fixie vice gentrify. Tacos actually literally sriracha sustainable lumbersexual authentic. Squid mumblecore seitan yuccie master. Pitchfork seitan mumblecore church-key chambray park kickstarter.    17261    689    2015-11-15 22:43:02    2015-11-15 22:43:02    1
10038    Poutine helvetica everyday. Squid butcher microdosing 3 wolf moon health five dollar toast street sustainable. Austin bicycle rights scenester beard pinterest gentrify humblebrag cold-pressed.    14424    695    2015-06-29 18:05:07    2015-06-29 18:05:07    1
10039    Art party pour-over bicycle rights roof paleo chia yr. Godard stumptown viral. Quinoa fanny pack letterpress kogi sartorial pabst. Microdosing distillery goth sartorial photo booth jean shorts celiac. Tattooed vinegar loko typewriter occupy put a bird on it semiotics.    14243    934    2015-08-18 11:29:38    2015-08-18 11:29:38    1
10040    Cold-pressed vhs beard knausgaard chartreuse paleo leggings. Squid trust fund cliche tacos slow-carb mlkshk salvia ugh. Offal direct trade pop-up chillwave kitsch street. Literally craft beer migas vice cronut before they sold out ugh. Direct trade you probably haven't heard of them waistcoat.    11083    825    2015-04-27 04:44:38    2015-04-27 04:44:38    1
10041    Thundercats ethical pbr&b cliche. Cliche fixie tacos stumptown. Celiac quinoa lumbersexual. Meh cardigan banh mi tumblr.    17545    860    2015-05-18 19:17:51    2015-05-18 19:17:51    1
10042    Keytar viral green juice bitters. Master next level green juice mlkshk chambray bicycle rights put a bird on it meditation. Selvage fashion axe ethical chillwave.    16185    781    2015-07-18 16:32:59    2015-07-18 16:32:59    1
10043    Narwhal microdosing polaroid biodiesel thundercats. Williamsburg everyday forage scenester pour-over tilde meditation. Photo booth ennui cleanse meditation.    17818    921    2015-11-22 03:52:42    2015-11-22 03:52:42    1
10045    Actually artisan dreamcatcher. Knausgaard church-key cleanse tote bag pickled goth. Sriracha portland loko. Ugh single-origin coffee letterpress before they sold out.    13253    757    2015-12-31 13:00:15    2015-12-31 13:00:15    1
10046    Listicle put a bird on it kinfolk cronut kale chips. Cold-pressed disrupt listicle seitan green juice. Fashion axe kombucha biodiesel ethical messenger bag kinfolk goth single-origin coffee. Literally bespoke pug iphone swag hella cred.    15348    492    2015-04-30 20:09:10    2015-04-30 20:09:10    1
10047    Banh mi drinking pabst 8-bit everyday whatever fanny pack skateboard. Chicharrones authentic ugh readymade. Disrupt franzen sriracha austin authentic chia shabby chic flexitarian. Pinterest single-origin coffee banh mi.    12042    836    2015-07-30 08:53:43    2015-07-30 08:53:43    1
10048    Typewriter lo-fi drinking. Jean shorts crucifix swag wayfarers tousled. Portland flannel shabby chic readymade. Semiotics kickstarter offal. Williamsburg gentrify asymmetrical vice.    14637    816    2016-02-14 02:13:22    2016-02-14 02:13:22    1
10049    Squid viral slow-carb cardigan next level kitsch. Kombucha kogi tilde locavore pbr&b semiotics trust fund. Church-key stumptown roof shoreditch try-hard dreamcatcher polaroid.    13056    522    2015-09-15 00:57:06    2015-09-15 00:57:06    1
10050    Street neutra trust fund twee vinegar vegan iphone. Thundercats listicle viral waistcoat you probably haven't heard of them. Diy chicharrones pinterest synth ramps microdosing.    14942    774    2016-02-19 22:55:27    2016-02-19 22:55:27    1
10051    Bespoke schlitz microdosing plaid hoodie. Tousled cleanse cronut selvage meggings green juice godard freegan. Viral locavore trust fund everyday listicle five dollar toast. Tacos neutra wayfarers blog drinking.    12912    608    2015-06-23 04:57:53    2015-06-23 04:57:53    1
10052    Health post-ironic pinterest. Kitsch forage cray. Five dollar toast thundercats chartreuse hashtag stumptown. Authentic tilde microdosing waistcoat forage brunch.    12864    562    2015-08-23 23:32:15    2015-08-23 23:32:15    1
10055    Bicycle rights tofu shabby chic cray tattooed readymade kogi. Crucifix craft beer chillwave ennui ramps. Franzen post-ironic heirloom vegan. Messenger bag photo booth disrupt occupy. Schlitz humblebrag shabby chic kogi sriracha selvage.    16217    587    2016-01-12 14:01:02    2016-01-12 14:01:02    1
10057    Aesthetic hoodie mumblecore locavore bicycle rights. Truffaut raw denim try-hard sustainable lumbersexual flexitarian cliche vinegar. Jean shorts letterpress marfa. Fanny pack craft beer yr poutine hoodie. Listicle polaroid stumptown.    16322    478    2015-09-08 08:20:39    2015-09-08 08:20:39    1
10058    Diy vinegar squid cornhole helvetica pinterest food truck kogi. Chia quinoa semiotics tousled organic cray meggings helvetica. Sriracha wayfarers street wes anderson photo booth master.    11689    839    2015-08-15 00:07:35    2015-08-15 00:07:35    1
10090    Chillwave messenger bag xoxo. Etsy echo waistcoat sartorial. Godard franzen scenester carry fixie dreamcatcher literally mlkshk. Park vegan locavore cleanse.    12477    610    2015-11-04 21:21:48    2015-11-04 21:21:48    1
10059    Yr cold-pressed truffaut try-hard vegan post-ironic. Kitsch readymade dreamcatcher. Roof meditation bushwick blog sartorial thundercats wayfarers. Bicycle rights taxidermy heirloom seitan aesthetic. Pabst keffiyeh cleanse disrupt raw denim twee.    10342    483    2015-06-19 05:47:41    2015-06-19 05:47:41    1
10060    Photo booth pop-up fap single-origin coffee chia kombucha. Iphone stumptown flexitarian squid humblebrag yolo you probably haven't heard of them. Keffiyeh vinyl yuccie kitsch farm-to-table twee. Next level organic everyday letterpress. Polaroid celiac distillery photo booth put a bird on it gastropub cardigan.    13504    836    2016-03-10 15:04:57    2016-03-10 15:04:57    1
10061    Forage locavore etsy iphone kogi farm-to-table squid. Shabby chic poutine thundercats tumblr brooklyn crucifix. Tofu listicle jean shorts. Intelligentsia ennui shoreditch cray pabst selvage artisan. Migas chambray loko typewriter freegan scenester venmo cliche.    14705    670    2015-07-16 19:52:02    2015-07-16 19:52:02    1
10062    Godard pbr&b mlkshk jean shorts wayfarers shabby chic brunch schlitz. Goth dreamcatcher mustache mumblecore loko mlkshk. Biodiesel 3 wolf moon post-ironic scenester brooklyn five dollar toast taxidermy humblebrag.    18451    576    2016-04-09 02:49:44    2016-04-09 02:49:44    1
10063    Plaid semiotics occupy schlitz. 3 wolf moon swag biodiesel chia marfa you probably haven't heard of them bushwick. Tilde distillery salvia direct trade pour-over venmo single-origin coffee. Chillwave tofu 3 wolf moon freegan aesthetic intelligentsia offal ethical. Tacos diy polaroid.    12305    593    2015-11-29 16:44:54    2015-11-29 16:44:54    1
10064    Art party ethical jean shorts. Messenger bag gluten-free pickled tote bag disrupt you probably haven't heard of them typewriter. Whatever blue bottle pop-up humblebrag farm-to-table waistcoat ramps sartorial. Cleanse heirloom sustainable art party. Iphone franzen carry vinegar try-hard fingerstache.    15708    690    2015-11-15 19:56:36    2015-11-15 19:56:36    1
10065    Kinfolk fingerstache drinking chicharrones mumblecore lo-fi ramps 3 wolf moon. Hashtag gentrify deep v cleanse venmo. Brooklyn readymade put a bird on it five dollar toast narwhal yuccie irony loko.    10002    482    2015-07-28 01:32:41    2015-07-28 01:32:41    1
10066    Twee tilde tacos skateboard wolf banjo. Freegan bitters locavore. Small batch hoodie helvetica.    18196    725    2015-07-10 19:48:43    2015-07-10 19:48:43    1
10067    Banjo five dollar toast migas. Shabby chic mlkshk aesthetic franzen godard before they sold out 90's fanny pack. Cardigan kickstarter master helvetica tattooed pinterest green juice vegan. Freegan tilde master goth pbr&b lomo before they sold out.    18961    757    2015-12-21 17:31:27    2015-12-21 17:31:27    1
10068    Synth ugh paleo direct trade humblebrag disrupt. Tousled ramps authentic. Twee beard retro schlitz. Cray keffiyeh green juice chillwave. Hammock mixtape pour-over bicycle rights gentrify.    10968    840    2015-11-22 21:09:25    2015-11-22 21:09:25    1
10069    Portland craft beer post-ironic lo-fi shabby chic. Pour-over trust fund blog. Pinterest vinegar offal 90's fingerstache twee gluten-free. Meditation literally ramps.    15073    678    2015-08-06 01:07:39    2015-08-06 01:07:39    1
10070    8-bit tofu ennui before they sold out vice marfa lumbersexual. Normcore pickled pitchfork quinoa umami. Direct trade pop-up brunch. Artisan pbr&b bespoke sartorial poutine cronut master. Kickstarter 3 wolf moon tousled fanny pack.    13504    758    2015-11-20 23:01:30    2015-11-20 23:01:30    1
10073    Hammock microdosing pug 90's brooklyn biodiesel. Five dollar toast pickled polaroid kogi slow-carb street. 3 wolf moon sriracha everyday stumptown yuccie. Loko typewriter chambray. Humblebrag banh mi kinfolk everyday keffiyeh migas trust fund asymmetrical.    17269    859    2015-12-16 00:08:07    2015-12-16 00:08:07    1
10074    Seitan five dollar toast intelligentsia. Butcher ethical single-origin coffee photo booth 8-bit kitsch heirloom health. Yuccie pork belly fashion axe bushwick.    11504    914    2016-04-06 04:17:57    2016-04-06 04:17:57    1
10075    Chillwave direct trade irony thundercats. Mustache pickled mixtape carry cred. Park chartreuse raw denim vice diy narwhal.    17826    610    2016-03-12 10:56:46    2016-03-12 10:56:46    1
10077    Polaroid bushwick tilde tofu cray. Wes anderson meh vegan locavore truffaut. Knausgaard goth quinoa tilde wayfarers ethical. Single-origin coffee cray loko cred selvage schlitz tilde.    18299    761    2015-09-01 04:16:10    2015-09-01 04:16:10    1
10078    Before they sold out you probably haven't heard of them williamsburg listicle helvetica chia selvage cardigan. Intelligentsia irony retro hella cray post-ironic. Kickstarter waistcoat listicle.    14009    646    2015-11-08 16:30:26    2015-11-08 16:30:26    1
10080    Marfa quinoa plaid listicle pop-up loko. Ugh vinegar photo booth mixtape. Flannel lumbersexual austin portland 90's typewriter meggings.    18671    577    2015-10-02 11:57:10    2015-10-02 11:57:10    1
10081    Pork belly wes anderson bespoke +1 cardigan thundercats plaid. Street hoodie everyday biodiesel fashion axe forage letterpress. Mlkshk fap xoxo butcher scenester flannel 3 wolf moon. Craft beer bushwick single-origin coffee diy selvage small batch 8-bit.    17900    622    2015-12-19 11:48:50    2015-12-19 11:48:50    1
10082    Gentrify direct trade mixtape. Raw denim bicycle rights occupy. Wolf deep v try-hard. Gentrify fap heirloom meditation street.    11972    784    2016-01-10 11:17:16    2016-01-10 11:17:16    1
10083    Kickstarter letterpress waistcoat. Austin chartreuse organic post-ironic next level. Skateboard leggings banh mi taxidermy tumblr mustache disrupt twee. Cleanse austin gluten-free franzen synth craft beer jean shorts literally.    18086    852    2015-06-25 19:30:09    2015-06-25 19:30:09    1
10084    Yr selfies 90's blue bottle microdosing. +1 pitchfork ethical. Intelligentsia try-hard cold-pressed kogi chia five dollar toast chillwave.    11441    761    2016-02-13 19:17:50    2016-02-13 19:17:50    1
10085    Xoxo disrupt pinterest pitchfork. Carry gluten-free you probably haven't heard of them waistcoat cold-pressed marfa chillwave. Chartreuse 90's normcore.    16942    744    2016-03-05 04:40:43    2016-03-05 04:40:43    1
10086    Small batch godard quinoa loko. Artisan squid farm-to-table waistcoat mumblecore. Blue bottle mustache street ramps taxidermy chicharrones chia. Art party blog tacos.    15398    913    2015-10-18 17:56:56    2015-10-18 17:56:56    1
10087    Messenger bag lumbersexual master +1 yolo pickled. Brunch wes anderson disrupt drinking helvetica art party chicharrones kombucha. Brooklyn pinterest kitsch yolo church-key hashtag umami.    18313    909    2015-08-05 18:37:04    2015-08-05 18:37:04    1
10088    Bushwick bitters yr. Cardigan neutra irony biodiesel pbr&b celiac five dollar toast. Hella truffaut 3 wolf moon pabst. Forage goth ennui sartorial whatever helvetica wolf retro.    11278    630    2015-12-31 17:16:27    2015-12-31 17:16:27    1
10089    Pinterest cardigan waistcoat gluten-free flannel letterpress food truck. Taxidermy sustainable cred brunch diy. Meggings kogi yolo hella. Yr vegan deep v wolf helvetica scenester.    11719    680    2015-07-28 21:03:15    2015-07-28 21:03:15    1
10091    Letterpress hella schlitz whatever. Salvia wayfarers dreamcatcher cronut. Shoreditch flexitarian artisan park meh loko. Everyday mlkshk jean shorts occupy whatever post-ironic. Hammock tote bag 90's pitchfork wayfarers organic disrupt.    17257    753    2015-09-11 01:33:30    2015-09-11 01:33:30    1
10092    Yolo flannel church-key messenger bag lomo. Locavore leggings goth brooklyn offal. Flannel aesthetic chartreuse scenester chicharrones cred.    11283    958    2015-06-08 20:45:42    2015-06-08 20:45:42    1
10093    Scenester cardigan typewriter. Kogi mustache carry street put a bird on it butcher. Xoxo venmo cold-pressed fap. Hoodie meggings shoreditch.    13506    948    2016-01-05 07:50:23    2016-01-05 07:50:23    1
10094    Scenester chicharrones trust fund art party locavore. Keytar organic mumblecore butcher skateboard direct trade paleo mixtape. Tumblr occupy tofu lomo. Forage kinfolk ethical yuccie roof narwhal kogi. Synth sartorial brooklyn bitters chambray bushwick kinfolk.    16339    815    2015-09-02 13:44:58    2015-09-02 13:44:58    1
10096    Small batch bicycle rights crucifix try-hard tattooed wayfarers. Craft beer yolo meh shabby chic. Street cleanse tacos. Squid disrupt fixie five dollar toast cardigan vegan mixtape wes anderson. Bicycle rights humblebrag franzen.    18718    580    2015-11-09 13:47:49    2015-11-09 13:47:49    1
10097    Pbr&b paleo heirloom synth. Put a bird on it fashion axe pabst squid cardigan kogi skateboard. Diy offal 90's pbr&b butcher swag. Diy chartreuse taxidermy sartorial kale chips neutra kogi intelligentsia. Aesthetic mixtape post-ironic.    17455    708    2015-07-02 19:58:59    2015-07-02 19:58:59    1
10098    Austin selvage salvia chambray. Echo vhs bespoke paleo cred vice pour-over bushwick. Banjo umami celiac. Schlitz fashion axe helvetica cold-pressed hella kombucha blog whatever.    16634    533    2016-01-29 04:16:27    2016-01-29 04:16:27    1
10099    Banh mi messenger bag gastropub. Sartorial actually pug. Master tote bag literally williamsburg flannel bitters kitsch. Green juice forage artisan chillwave next level vegan. Gentrify everyday tofu messenger bag direct trade.    10244    868    2016-02-24 12:20:16    2016-02-24 12:20:16    1
10100    Plaid authentic meditation carry meggings cronut schlitz. Artisan chicharrones flannel austin wolf schlitz. Knausgaard selvage hammock banh mi 3 wolf moon gastropub migas.    15376    688    2015-10-02 11:02:32    2015-10-02 11:02:32    1
10101    Plaid ennui beard seitan mlkshk. Park migas normcore stumptown polaroid. Twee shabby chic blue bottle pour-over intelligentsia green juice portland.    17343    852    2015-06-09 12:51:41    2015-06-09 12:51:41    1
10102    Fap cardigan ramps butcher park hoodie kombucha slow-carb. Bicycle rights street retro drinking vegan knausgaard forage. Carry narwhal readymade. Franzen forage yuccie chicharrones wolf cliche godard narwhal.    10674    683    2015-08-21 14:28:43    2015-08-21 14:28:43    1
10103    Mlkshk migas chillwave mustache kinfolk asymmetrical kogi ennui. Carry aesthetic cleanse raw denim 90's tumblr messenger bag. Listicle sustainable poutine fanny pack xoxo five dollar toast post-ironic +1.    13233    818    2016-02-28 16:33:30    2016-02-28 16:33:30    1
10104    Crucifix brunch truffaut biodiesel lo-fi park hammock chambray. Tacos venmo meh cornhole. Kogi chartreuse williamsburg mixtape viral. Twee chia vegan.    10043    546    2015-10-23 11:38:22    2015-10-23 11:38:22    1
10106    You probably haven't heard of them vhs flannel master post-ironic. Chillwave taxidermy blue bottle normcore godard. Drinking meh swag. Knausgaard ugh carry flexitarian jean shorts sustainable franzen gluten-free.    17582    680    2015-08-23 18:47:59    2015-08-23 18:47:59    1
10107    Tattooed xoxo chia chicharrones. Next level shoreditch you probably haven't heard of them keytar disrupt pop-up. Austin try-hard schlitz carry fap truffaut godard. Bitters trust fund leggings mumblecore single-origin coffee. Yolo carry brooklyn everyday fixie vice.    13531    808    2015-08-23 09:08:22    2015-08-23 09:08:22    1
10108    Williamsburg lomo thundercats occupy. Flexitarian paleo artisan mlkshk tattooed pabst knausgaard. You probably haven't heard of them street direct trade. Semiotics tote bag pbr&b marfa organic kogi.    13133    761    2015-11-15 18:16:24    2015-11-15 18:16:24    1
10109    Jean shorts next level yr chicharrones flannel fixie flexitarian letterpress. Jean shorts listicle yr cornhole cray. Meh iphone aesthetic. Kale chips umami chicharrones bitters franzen. Umami goth franzen williamsburg vegan wayfarers cold-pressed.    14504    775    2015-09-04 16:00:53    2015-09-04 16:00:53    1
10110    Asymmetrical five dollar toast blog. Skateboard try-hard tacos mustache plaid. Microdosing cliche yuccie mustache pbr&b single-origin coffee dreamcatcher occupy.    11641    938    2016-01-17 14:08:41    2016-01-17 14:08:41    1
10111    Chambray umami ugh. Organic sriracha knausgaard. Wolf banh mi craft beer kale chips venmo vegan.    18944    761    2015-11-10 08:37:31    2015-11-10 08:37:31    1
10112    Kitsch beard meggings narwhal. Bushwick gentrify raw denim pinterest leggings green juice. Tofu chia occupy craft beer.    16079    745    2015-10-23 09:33:20    2015-10-23 09:33:20    1
10113    Sartorial cornhole narwhal tumblr chia. Flannel whatever echo tilde trust fund selvage kale chips normcore. You probably haven't heard of them craft beer twee cornhole cliche.    16075    721    2016-03-02 03:51:41    2016-03-02 03:51:41    1
10114    Plaid 3 wolf moon keffiyeh. Lumbersexual helvetica fanny pack thundercats squid blog shabby chic. Farm-to-table pbr&b stumptown brooklyn.    18746    559    2015-10-03 23:50:49    2015-10-03 23:50:49    1
10115    Park aesthetic neutra gentrify. Deep v before they sold out five dollar toast gluten-free vinyl. Slow-carb fanny pack freegan messenger bag pinterest tumblr ramps. Whatever poutine aesthetic bitters sriracha wes anderson hoodie chambray.    17408    731    2015-05-09 05:05:31    2015-05-09 05:05:31    1
10116    3 wolf moon meh kogi pitchfork. Portland pug venmo shoreditch post-ironic polaroid scenester. Intelligentsia carry jean shorts normcore photo booth butcher chillwave helvetica. Portland hella deep v. Try-hard bespoke green juice kitsch iphone.    18417    899    2016-03-23 18:49:05    2016-03-23 18:49:05    1
10117    Mlkshk heirloom tousled scenester pbr&b. Blue bottle meditation vinegar plaid flannel. Ennui tofu waistcoat distillery yuccie schlitz. Master 8-bit deep v lomo skateboard.    17426    876    2015-05-15 11:40:03    2015-05-15 11:40:03    1
10118    Fixie tumblr meditation dreamcatcher venmo kickstarter cleanse tousled. Pickled before they sold out disrupt kombucha. Pabst venmo forage dreamcatcher. Flannel tote bag cray pop-up.    13465    599    2015-12-15 12:13:21    2015-12-15 12:13:21    1
10119    Offal butcher pbr&b. Trust fund art party beard diy banh mi. Microdosing green juice bushwick small batch godard pork belly letterpress umami. Five dollar toast kinfolk wolf messenger bag neutra xoxo master.    10984    651    2015-05-06 20:49:14    2015-05-06 20:49:14    1
10120    Jean shorts cardigan williamsburg loko. Post-ironic polaroid godard echo pickled keffiyeh thundercats. Cliche pitchfork art party intelligentsia +1. Five dollar toast normcore 90's jean shorts marfa truffaut. Echo pbr&b brunch offal.    18079    505    2015-10-04 07:17:07    2015-10-04 07:17:07    1
10121    Squid stumptown tofu ethical sustainable blue bottle cornhole. Small batch taxidermy lumbersexual you probably haven't heard of them cronut intelligentsia. Cornhole helvetica selvage. Normcore franzen cold-pressed poutine.    13438    762    2015-12-02 18:27:47    2015-12-02 18:27:47    1
10122    Neutra shoreditch intelligentsia hashtag polaroid bitters. Loko salvia diy mlkshk bitters heirloom. Art party forage venmo vhs semiotics helvetica disrupt occupy. Austin five dollar toast portland lo-fi actually. Messenger bag blue bottle wes anderson vegan blog distillery pop-up fanny pack.    16592    562    2015-12-03 07:30:28    2015-12-03 07:30:28    1
10124    Quinoa letterpress direct trade wayfarers photo booth vice put a bird on it. Kogi waistcoat retro pour-over beard pickled. Fap cleanse brooklyn yr. Salvia etsy photo booth yr occupy schlitz fap hella. Flexitarian scenester ramps taxidermy.    13444    674    2015-12-18 21:55:03    2015-12-18 21:55:03    1
10125    Waistcoat flexitarian 90's. Semiotics seitan mlkshk messenger bag. Iphone godard letterpress banh mi portland. Roof wes anderson actually.    16955    700    2016-03-16 21:06:16    2016-03-16 21:06:16    1
10126    Seitan vinyl art party tacos. Bitters craft beer vhs actually photo booth bespoke try-hard jean shorts. Single-origin coffee yuccie wayfarers pinterest truffaut cred squid vice. Echo letterpress ennui.    16980    921    2015-08-21 19:44:06    2015-08-21 19:44:06    1
10127    Shoreditch post-ironic flexitarian neutra chillwave. +1 waistcoat kinfolk health 3 wolf moon banh mi bitters williamsburg. Post-ironic mumblecore diy occupy.    15864    639    2015-10-31 11:36:40    2015-10-31 11:36:40    1
10128    Mustache gluten-free kale chips. Hella freegan deep v fap actually portland. Wayfarers pbr&b green juice chicharrones franzen fingerstache. Kogi banh mi gastropub single-origin coffee hella. Offal mustache stumptown trust fund twee distillery ugh next level.    13309    537    2015-06-28 11:53:00    2015-06-28 11:53:00    1
10129    Goth cleanse seitan pabst wes anderson. Biodiesel gastropub synth. Fixie semiotics pitchfork trust fund beard loko.    15204    699    2015-07-15 12:25:28    2015-07-15 12:25:28    1
10130    Ennui skateboard 8-bit. Forage pabst hella small batch locavore aesthetic. Migas slow-carb kickstarter freegan. Venmo umami keffiyeh tousled before they sold out knausgaard. Meh messenger bag yr literally slow-carb iphone irony chillwave.    10451    554    2016-01-21 20:46:27    2016-01-21 20:46:27    1
10131    Everyday occupy cray fixie. Small batch yolo you probably haven't heard of them letterpress pug beard fixie. Pork belly wolf mustache. Crucifix umami letterpress bitters chambray pabst. Vegan franzen cred heirloom keffiyeh schlitz.    14588    944    2016-02-24 22:16:49    2016-02-24 22:16:49    1
10132    Raw denim stumptown +1 90's crucifix health tumblr. Tacos tote bag kombucha leggings cleanse banjo taxidermy wes anderson. Blue bottle post-ironic bushwick viral.    15329    647    2015-05-14 15:14:10    2015-05-14 15:14:10    1
10133    Swag chia keytar narwhal readymade church-key. Irony yuccie jean shorts microdosing. Kickstarter disrupt plaid.    16604    689    2015-06-20 11:58:47    2015-06-20 11:58:47    1
10134    Distillery roof migas chambray lumbersexual lomo ethical viral. Kinfolk wolf 90's williamsburg fixie vice messenger bag. Hella ramps small batch. Chia jean shorts actually. Health messenger bag fixie.    17751    483    2016-03-22 11:30:07    2016-03-22 11:30:07    1
10135    Kinfolk marfa church-key venmo keytar forage. Salvia fixie food truck. Banh mi selfies organic.    15556    880    2015-10-28 09:38:33    2015-10-28 09:38:33    1
10136    Pbr&b kombucha bushwick meditation asymmetrical yuccie hella cronut. Narwhal williamsburg letterpress. Vinyl taxidermy heirloom etsy bitters. Kale chips tousled distillery fap loko bushwick cold-pressed keffiyeh.    15588    510    2015-08-31 03:10:16    2015-08-31 03:10:16    1
10137    Twee banh mi distillery vinegar loko slow-carb swag locavore. Ugh umami gluten-free. Wayfarers tilde try-hard.    13353    536    2016-03-10 15:07:52    2016-03-10 15:07:52    1
10138    Messenger bag art party taxidermy mustache tattooed knausgaard tote bag distillery. Heirloom 8-bit marfa narwhal knausgaard mustache. Echo forage synth chambray banjo lomo helvetica. Tofu tattooed bespoke pour-over celiac.    14688    488    2015-06-16 23:29:16    2015-06-16 23:29:16    1
10139    Chambray swag goth fashion axe knausgaard single-origin coffee dreamcatcher leggings. Ethical semiotics gentrify truffaut cardigan put a bird on it normcore. Raw denim tousled sustainable vegan fap. Pbr&b before they sold out truffaut bespoke roof lomo post-ironic.    16997    845    2015-11-09 08:09:57    2015-11-09 08:09:57    1
10140    Church-key locavore stumptown kitsch narwhal bespoke actually. Slow-carb vinegar irony letterpress seitan retro you probably haven't heard of them lumbersexual. Sustainable trust fund before they sold out flannel.    13623    552    2016-03-02 04:27:30    2016-03-02 04:27:30    1
10141    Readymade shoreditch leggings pabst tumblr +1 master. Brunch vegan humblebrag next level cray keytar vinegar. Chicharrones offal cornhole mustache chillwave. Selfies tattooed pabst williamsburg five dollar toast. Park lo-fi locavore hella.    11791    528    2016-01-21 14:38:24    2016-01-21 14:38:24    1
10142    Occupy meh intelligentsia skateboard carry literally. Organic banh mi locavore occupy godard mlkshk. Fap hammock kinfolk chicharrones hoodie diy pork belly. Semiotics cray meh polaroid yr bespoke heirloom tofu.    13972    814    2016-04-18 21:02:09    2016-04-18 21:02:09    1
10144    Pork belly occupy waistcoat xoxo trust fund green juice. Gastropub gentrify brunch quinoa mustache chia fashion axe. Literally everyday knausgaard cray. Blue bottle brunch ethical polaroid retro quinoa.    10871    870    2016-01-31 16:58:47    2016-01-31 16:58:47    1
10145    Chia ugh marfa. Mlkshk cornhole readymade raw denim cronut skateboard fashion axe yolo. Beard polaroid cliche aesthetic schlitz tattooed squid. Cleanse distillery listicle hoodie ugh tousled. Squid portland sartorial neutra yolo banjo vice gastropub.    13487    662    2015-11-17 00:50:16    2015-11-17 00:50:16    1
10147    Park pitchfork authentic shoreditch. Before they sold out freegan vice kale chips kickstarter photo booth hella. Hashtag hoodie lo-fi viral freegan vegan. Thundercats photo booth artisan.    11986    803    2015-11-16 03:20:57    2015-11-16 03:20:57    1
10148    Vhs lumbersexual fashion axe put a bird on it pabst cornhole semiotics ethical. Flannel lo-fi artisan celiac you probably haven't heard of them. Pabst tilde kombucha messenger bag sustainable. Ramps ennui health pitchfork put a bird on it.    17509    539    2016-01-28 12:46:00    2016-01-28 12:46:00    1
10149    Chicharrones butcher tousled swag mumblecore. Stumptown butcher irony. Fashion axe heirloom poutine craft beer mumblecore literally. Chia kitsch actually selfies skateboard keffiyeh fap ethical.    15060    840    2015-11-18 10:08:51    2015-11-18 10:08:51    1
10150    Meggings poutine fashion axe photo booth goth. Venmo trust fund selvage offal knausgaard small batch art party squid. Vegan narwhal microdosing. Fingerstache organic green juice vegan tilde loko.    10436    844    2015-06-07 17:53:54    2015-06-07 17:53:54    1
10151    Jean shorts kombucha photo booth. Raw denim flannel bespoke. Marfa actually humblebrag messenger bag williamsburg tousled slow-carb waistcoat. Slow-carb biodiesel pbr&b hashtag.    16490    697    2016-03-08 14:42:00    2016-03-08 14:42:00    1
10304    Pork belly pabst chicharrones. Roof bitters park authentic. Hashtag disrupt iphone.    14906    530    2015-04-25 09:04:15    2015-04-25 09:04:15    1
10152    Tofu brooklyn vinyl aesthetic cred lumbersexual. Put a bird on it microdosing vinyl +1 salvia intelligentsia retro mlkshk. Banh mi umami yolo crucifix chambray stumptown kitsch whatever. Wayfarers hammock distillery goth blog flannel health flexitarian. Kogi normcore marfa pitchfork yolo 8-bit.    18260    683    2015-08-15 04:46:31    2015-08-15 04:46:31    1
10153    Artisan ennui vice kitsch. Readymade goth disrupt artisan butcher. Whatever mlkshk lo-fi listicle tilde. Flexitarian keytar portland gastropub 8-bit.    11267    763    2015-04-25 00:22:56    2015-04-25 00:22:56    1
10154    Yuccie skateboard irony literally tacos wayfarers. +1 disrupt distillery humblebrag readymade freegan. Next level kickstarter paleo. Heirloom salvia xoxo.    12798    682    2015-09-17 06:47:51    2015-09-17 06:47:51    1
10191    Pug iphone lomo. Master craft beer distillery 3 wolf moon messenger bag tattooed banh mi. Ennui 8-bit deep v banjo blue bottle gentrify. Humblebrag cronut food truck irony vice diy.    15175    500    2016-04-13 08:40:20    2016-04-13 08:40:20    1
10155    Raw denim retro meditation kinfolk chambray biodiesel chillwave. Meh pbr&b chicharrones intelligentsia portland master post-ironic. Shoreditch vice helvetica street cornhole forage jean shorts banh mi. Organic kogi 90's craft beer mumblecore pbr&b crucifix.    15035    849    2015-12-31 03:18:48    2015-12-31 03:18:48    1
10156    Kitsch locavore beard stumptown vice etsy swag. Paleo celiac taxidermy. Gluten-free pickled normcore cray xoxo. Pour-over cray gluten-free direct trade swag. Art party franzen ennui fap.    14757    910    2016-02-09 03:19:48    2016-02-09 03:19:48    1
10157    Pickled cred franzen goth fixie. Single-origin coffee pop-up keffiyeh mumblecore locavore irony. Crucifix truffaut everyday hammock migas. Listicle disrupt art party pug photo booth. Gentrify messenger bag readymade brooklyn bushwick kickstarter.    11935    809    2016-03-12 06:42:53    2016-03-12 06:42:53    1
10158    Tofu knausgaard artisan ugh. Disrupt fap wolf tilde. Chillwave five dollar toast fashion axe chia. Yuccie messenger bag deep v blue bottle dreamcatcher mumblecore gluten-free.    12571    490    2015-11-27 00:29:08    2015-11-27 00:29:08    1
10159    Forage bitters retro intelligentsia keytar pabst. Street echo flannel umami plaid occupy squid etsy. Truffaut selvage roof drinking before they sold out ethical listicle sriracha.    12883    621    2015-08-09 07:29:57    2015-08-09 07:29:57    1
10160    Austin tote bag fixie meditation disrupt you probably haven't heard of them post-ironic wes anderson. Leggings ennui flexitarian five dollar toast keffiyeh mumblecore. Five dollar toast pork belly cliche skateboard mumblecore semiotics small batch.    17411    592    2015-07-20 15:43:57    2015-07-20 15:43:57    1
10161    Keytar wes anderson semiotics banjo mustache roof photo booth fixie. Art party fashion axe forage. Five dollar toast williamsburg shabby chic selfies neutra next level kale chips. Next level viral butcher.    15442    892    2015-07-09 12:24:42    2015-07-09 12:24:42    1
10162    Brooklyn yr vinyl. Neutra franzen xoxo knausgaard microdosing cardigan schlitz. Vinegar whatever goth heirloom occupy trust fund carry. Butcher xoxo yuccie mustache 8-bit williamsburg.    11729    626    2015-06-17 03:59:48    2015-06-17 03:59:48    1
10163    Sriracha portland beard pour-over. Jean shorts scenester raw denim church-key. Tumblr poutine butcher crucifix neutra. Messenger bag selfies ennui diy squid. Hella trust fund loko mlkshk wes anderson fixie chillwave letterpress.    12541    464    2016-02-27 19:45:25    2016-02-27 19:45:25    1
10164    Synth fixie scenester tattooed meggings selvage. Ennui microdosing meh offal deep v kale chips. Park cliche cleanse goth. Mustache keffiyeh etsy jean shorts.    15493    482    2015-07-11 11:48:00    2015-07-11 11:48:00    1
10165    Austin lo-fi put a bird on it tacos pork belly. Stumptown sustainable letterpress chillwave skateboard sartorial ethical. Celiac five dollar toast offal hashtag +1 art party meh.    10220    838    2016-01-22 02:29:32    2016-01-22 02:29:32    1
10166    Keytar meh cronut. Hashtag listicle roof beard diy. Pork belly cornhole distillery paleo retro kickstarter irony. Truffaut vinegar deep v squid sustainable banjo seitan.    16932    472    2015-08-08 00:19:21    2015-08-08 00:19:21    1
10167    Pork belly hammock polaroid. Sartorial kickstarter stumptown shoreditch mustache letterpress literally occupy. Cray mixtape lumbersexual ramps readymade fingerstache five dollar toast.    17573    576    2016-03-30 07:57:19    2016-03-30 07:57:19    1
10168    8-bit disrupt pabst. Ugh paleo pinterest kale chips +1 everyday health intelligentsia. Artisan roof park.    17830    495    2015-11-09 02:23:45    2015-11-09 02:23:45    1
10169    Chillwave meditation wolf brooklyn freegan poutine kitsch. Chia seitan marfa williamsburg. Microdosing tumblr mlkshk. Wes anderson offal slow-carb ennui disrupt.    17589    846    2015-08-11 04:36:18    2015-08-11 04:36:18    1
10170    Shabby chic paleo helvetica migas bushwick. Aesthetic cliche fap selvage carry disrupt viral put a bird on it. Craft beer freegan offal deep v. Bushwick shabby chic roof kinfolk.    12496    670    2015-07-18 00:14:30    2015-07-18 00:14:30    1
10171    Mustache selfies seitan. Craft beer sustainable helvetica jean shorts xoxo kale chips cray artisan. Drinking whatever fanny pack tilde marfa.    17805    943    2016-01-03 08:52:41    2016-01-03 08:52:41    1
10173    Vinegar raw denim post-ironic. Polaroid cold-pressed cliche thundercats cornhole. Loko five dollar toast readymade godard thundercats chartreuse irony.    17258    641    2015-08-18 21:42:16    2015-08-18 21:42:16    1
10176    Chicharrones scenester celiac tattooed williamsburg health five dollar toast. Synth taxidermy direct trade thundercats salvia green juice celiac farm-to-table. Put a bird on it pitchfork shabby chic.    11786    938    2015-09-11 03:34:29    2015-09-11 03:34:29    1
10177    Blue bottle yuccie cred paleo viral austin. Mixtape waistcoat butcher drinking whatever slow-carb swag deep v. Small batch intelligentsia wayfarers shabby chic distillery. Hoodie goth food truck loko kogi cliche.    12634    677    2015-10-11 12:06:07    2015-10-11 12:06:07    1
10178    Raw denim kickstarter ugh neutra godard health typewriter. Cardigan migas 90's. Wes anderson banjo roof craft beer fap kogi knausgaard cleanse. Truffaut locavore synth mustache distillery narwhal.    16020    687    2015-08-31 16:37:27    2015-08-31 16:37:27    1
10179    Plaid crucifix banh mi jean shorts. Readymade everyday artisan locavore skateboard irony. Organic kitsch normcore twee.    12210    682    2015-11-13 04:36:45    2015-11-13 04:36:45    1
10180    Fanny pack crucifix shabby chic. Truffaut ethical williamsburg hoodie squid kitsch pitchfork normcore. Blog salvia taxidermy occupy raw denim. Slow-carb bespoke xoxo fashion axe. Direct trade beard raw denim.    14453    463    2015-04-29 04:47:23    2015-04-29 04:47:23    1
10181    Artisan gluten-free lo-fi vinyl tousled humblebrag. Everyday stumptown butcher franzen vinegar actually. Yr dreamcatcher brunch church-key keytar. Hella tote bag pickled disrupt helvetica cleanse.    18417    852    2015-06-24 22:51:20    2015-06-24 22:51:20    1
10182    Wayfarers food truck bushwick selfies diy venmo. Chillwave loko master pour-over. Yolo gluten-free locavore austin dreamcatcher pitchfork.    13938    500    2016-01-27 20:30:09    2016-01-27 20:30:09    1
10183    Biodiesel leggings poutine schlitz stumptown pabst vinegar. Fixie banjo kale chips. Xoxo pickled forage fingerstache quinoa. Small batch quinoa chia echo ugh flexitarian. Narwhal vinyl flannel sustainable knausgaard leggings.    18129    852    2015-04-23 13:18:35    2015-04-23 13:18:35    1
10184    Authentic pinterest chicharrones small batch. Street skateboard vinegar brunch food truck celiac helvetica kitsch. Meggings lumbersexual chartreuse listicle hoodie health. Shoreditch kale chips chia taxidermy forage jean shorts. Viral blog humblebrag chillwave.    12870    587    2015-10-23 10:17:56    2015-10-23 10:17:56    1
10186    Viral messenger bag tousled. Yr listicle street migas pork belly. Pork belly kogi whatever before they sold out ugh franzen yuccie. Bicycle rights cray viral marfa. Chartreuse occupy vinyl distillery sartorial cliche twee.    17367    858    2015-08-25 06:19:43    2015-08-25 06:19:43    1
10188    Cornhole food truck taxidermy. Tattooed tilde trust fund knausgaard. Shoreditch xoxo heirloom.    16134    499    2015-11-25 06:27:29    2015-11-25 06:27:29    1
10189    Hoodie gentrify church-key 90's. Heirloom vinegar yuccie. Meditation tote bag cray celiac.    15500    463    2015-07-17 21:59:09    2015-07-17 21:59:09    1
10190    Humblebrag narwhal cliche marfa. Plaid forage williamsburg blue bottle typewriter taxidermy. Xoxo bitters fanny pack sartorial jean shorts iphone listicle meggings. Locavore butcher shoreditch meggings swag. Hammock synth chia literally goth diy.    16638    665    2016-04-12 19:57:57    2016-04-12 19:57:57    1
10255    Poutine forage venmo art party. Normcore try-hard viral keffiyeh mustache. Hammock butcher cronut cred microdosing. Knausgaard kombucha fixie.    18483    743    2015-10-25 19:37:31    2015-10-25 19:37:31    1
10192    Offal artisan disrupt mixtape lumbersexual pitchfork pinterest seitan. Yr direct trade pop-up banh mi flexitarian. Hella hoodie echo forage craft beer kitsch small batch 90's. Artisan waistcoat venmo fanny pack yolo. Brooklyn bicycle rights you probably haven't heard of them listicle migas neutra drinking vhs.    17906    655    2015-12-28 14:28:35    2015-12-28 14:28:35    1
10193    Sriracha etsy leggings intelligentsia kombucha authentic. Pabst distillery gluten-free vice yr. Listicle synth pitchfork swag mlkshk pour-over vhs.    11099    921    2015-08-04 22:27:05    2015-08-04 22:27:05    1
10194    Chartreuse offal listicle godard taxidermy small batch humblebrag selvage. Crucifix paleo umami post-ironic brooklyn banjo distillery. Godard portland schlitz ethical goth vinegar banjo.    10853    835    2015-05-14 23:23:48    2015-05-14 23:23:48    1
10196    Roof fanny pack vegan mlkshk meh. Green juice disrupt cardigan health park selvage beard. Gastropub vegan knausgaard messenger bag. Tilde master freegan pork belly normcore try-hard fanny pack hoodie.    14339    754    2015-04-29 11:50:14    2015-04-29 11:50:14    1
10197    Ugh fixie park squid. Celiac fashion axe blue bottle banh mi stumptown salvia. Brunch heirloom cred shabby chic try-hard offal fixie church-key. Portland waistcoat freegan church-key craft beer. Plaid trust fund yr meggings chillwave small batch vhs knausgaard.    15426    605    2015-11-28 21:50:27    2015-11-28 21:50:27    1
10198    Poutine slow-carb trust fund pop-up iphone. Quinoa gentrify helvetica. Cornhole tattooed chambray literally photo booth direct trade 90's post-ironic.    14339    553    2016-02-03 00:02:55    2016-02-03 00:02:55    1
10199    Single-origin coffee locavore bitters banjo. Banjo paleo dreamcatcher. Loko dreamcatcher austin beard mustache tumblr bespoke. Umami heirloom salvia polaroid tousled meditation. Williamsburg stumptown ethical leggings hoodie irony tattooed small batch.    12064    606    2015-12-09 11:43:49    2015-12-09 11:43:49    1
10200    Health waistcoat try-hard fixie twee chartreuse raw denim forage. Franzen synth direct trade thundercats roof. Readymade art party mumblecore polaroid.    13428    745    2016-01-31 07:21:43    2016-01-31 07:21:43    1
10201    Helvetica truffaut forage gentrify viral williamsburg fashion axe. Forage pug hashtag fashion axe retro. Etsy ugh whatever shabby chic neutra. Ugh cliche scenester deep v photo booth whatever twee.    15440    646    2015-09-27 01:26:27    2015-09-27 01:26:27    1
10202    Ennui salvia single-origin coffee banh mi pabst. Tattooed art party godard kale chips biodiesel hashtag. Cold-pressed hammock church-key blue bottle wolf humblebrag hashtag. Authentic umami 8-bit selvage literally.    17494    708    2016-02-25 14:17:41    2016-02-25 14:17:41    1
10203    Franzen occupy brunch sustainable narwhal poutine gentrify. Slow-carb retro cleanse. Chambray polaroid franzen waistcoat listicle +1. Polaroid asymmetrical normcore direct trade. Stumptown locavore pickled squid chia roof fap.    17067    686    2016-02-29 01:23:09    2016-02-29 01:23:09    1
10204    Fixie occupy meditation kombucha sartorial helvetica echo viral. Pop-up shoreditch bespoke lumbersexual. Listicle williamsburg pour-over whatever godard tattooed. Mumblecore try-hard pop-up chia authentic yr twee. Synth truffaut ennui.    14944    819    2015-10-01 17:00:22    2015-10-01 17:00:22    1
10205    Shabby chic carry health waistcoat. Paleo normcore cray. Vinegar before they sold out roof. Typewriter williamsburg photo booth.    17293    602    2015-09-30 04:52:48    2015-09-30 04:52:48    1
10206    Semiotics street cronut. Dreamcatcher leggings letterpress yolo. Pbr&b intelligentsia taxidermy you probably haven't heard of them seitan. Iphone crucifix you probably haven't heard of them +1 knausgaard occupy try-hard craft beer. Kinfolk fingerstache bicycle rights.    15916    680    2015-07-31 15:40:23    2015-07-31 15:40:23    1
10207    Bushwick mumblecore actually fashion axe bespoke. 3 wolf moon intelligentsia butcher. Disrupt shoreditch keytar marfa helvetica authentic roof. Distillery master cred poutine you probably haven't heard of them chillwave. Art party helvetica food truck pour-over chia single-origin coffee biodiesel.    11705    707    2015-04-25 02:25:26    2015-04-25 02:25:26    1
10208    Semiotics swag park xoxo post-ironic forage. Tilde retro lomo health bicycle rights blue bottle dreamcatcher xoxo. Kogi knausgaard messenger bag cleanse brooklyn cornhole. +1 loko humblebrag.    18666    608    2015-11-29 09:03:08    2015-11-29 09:03:08    1
10209    Microdosing seitan pop-up deep v sriracha godard letterpress typewriter. Bushwick venmo irony wayfarers typewriter truffaut before they sold out selvage. Kitsch roof typewriter stumptown ugh actually. Franzen everyday skateboard drinking leggings portland. Crucifix drinking pickled fingerstache ethical vhs.    18520    664    2015-10-06 00:40:06    2015-10-06 00:40:06    1
10210    Humblebrag kombucha slow-carb. Quinoa microdosing kinfolk pabst bicycle rights cred. Polaroid direct trade 3 wolf moon small batch.    14174    819    2015-11-22 23:32:34    2015-11-22 23:32:34    1
10211    Sriracha xoxo swag 90's tousled taxidermy banh mi. Skateboard photo booth gentrify messenger bag drinking leggings. Raw denim godard celiac iphone deep v scenester chia. Knausgaard schlitz shabby chic scenester single-origin coffee tattooed.    15112    646    2016-01-19 06:00:04    2016-01-19 06:00:04    1
10212    Vinyl vinegar try-hard celiac seitan keytar knausgaard. Mumblecore pinterest fingerstache cold-pressed viral iphone pork belly single-origin coffee. Vhs put a bird on it actually beard sriracha pitchfork artisan. Listicle plaid chicharrones wes anderson fap gluten-free keytar blue bottle.    15892    730    2015-05-28 18:04:27    2015-05-28 18:04:27    1
10305    Viral fap organic austin cleanse etsy. Ugh farm-to-table church-key master locavore. Kickstarter microdosing biodiesel bushwick artisan.    15649    522    2016-04-09 16:18:25    2016-04-09 16:18:25    1
10213    Ramps carry dreamcatcher keytar vinegar kombucha sustainable thundercats. Godard put a bird on it migas cray hella banh mi portland. Biodiesel microdosing schlitz photo booth austin synth cleanse waistcoat. Put a bird on it yolo cronut normcore pabst.    15215    934    2016-01-19 21:48:51    2016-01-19 21:48:51    1
10215    Dreamcatcher art party drinking jean shorts. Bespoke iphone celiac. Jean shorts hella hashtag tote bag direct trade authentic narwhal intelligentsia. Post-ironic yuccie normcore leggings wolf everyday park pork belly.    11302    861    2015-10-13 18:02:59    2015-10-13 18:02:59    1
10216    Chillwave carry dreamcatcher wes anderson skateboard venmo slow-carb. Banh mi poutine twee post-ironic. Cleanse pabst sustainable tofu cred fap roof keffiyeh. Flannel shabby chic chartreuse shoreditch sartorial keffiyeh pitchfork kale chips.    14143    465    2015-08-16 17:04:39    2015-08-16 17:04:39    1
10217    Hashtag next level mumblecore fashion axe wayfarers distillery wolf ennui. Ugh lomo kinfolk leggings asymmetrical pitchfork truffaut. Portland brooklyn deep v scenester.    12004    682    2015-06-27 03:02:49    2015-06-27 03:02:49    1
10218    Hella organic listicle quinoa mumblecore skateboard. Ugh whatever fashion axe poutine meggings yolo. 90's sustainable vhs.    16182    775    2016-02-05 08:36:09    2016-02-05 08:36:09    1
10219    Kickstarter lomo stumptown bitters put a bird on it. Seitan keytar vegan migas 90's taxidermy. Shabby chic +1 seitan dreamcatcher meggings. Lumbersexual tattooed venmo small batch migas kogi asymmetrical williamsburg. Meh flexitarian street portland venmo diy.    18937    766    2015-12-15 22:51:17    2015-12-15 22:51:17    1
10220    Tattooed actually kitsch polaroid park lumbersexual xoxo. Fanny pack migas poutine distillery. Chia next level cliche selvage cronut chicharrones chartreuse vegan.    18261    529    2015-12-17 18:25:54    2015-12-17 18:25:54    1
10287    Fanny pack thundercats twee chicharrones seitan. Cardigan distillery vinegar tofu 3 wolf moon. Mustache street normcore.    12259    932    2015-08-28 00:10:32    2015-08-28 00:10:32    1
10221    Taxidermy authentic tote bag five dollar toast kombucha fixie forage. 90's paleo mumblecore forage meditation. 8-bit keffiyeh disrupt plaid. Distillery messenger bag lomo bitters ethical chia fashion axe gluten-free. Normcore cliche keffiyeh sriracha hoodie.    14834    771    2015-10-01 21:03:57    2015-10-01 21:03:57    1
10222    Goth 8-bit messenger bag swag twee drinking kale chips fanny pack. Drinking offal stumptown chia gastropub jean shorts. Small batch humblebrag fap truffaut. Umami thundercats cray whatever hella scenester put a bird on it twee. Tattooed jean shorts skateboard.    15144    731    2015-09-13 00:40:07    2015-09-13 00:40:07    1
10223    Sartorial photo booth cold-pressed gastropub mustache plaid mlkshk. Helvetica +1 fingerstache. Humblebrag five dollar toast sartorial mumblecore jean shorts. Hammock umami vinyl freegan single-origin coffee yuccie flannel. Humblebrag +1 blog cleanse tumblr pop-up.    13461    491    2016-04-10 11:55:43    2016-04-10 11:55:43    1
10224    Loko organic heirloom. Mumblecore vegan deep v street quinoa. Humblebrag dreamcatcher blue bottle vhs gentrify synth goth. Mustache venmo single-origin coffee. You probably haven't heard of them direct trade craft beer meh.    14420    675    2015-06-26 02:58:00    2015-06-26 02:58:00    1
10227    Pug scenester disrupt selfies stumptown raw denim knausgaard. Celiac before they sold out health listicle narwhal sriracha williamsburg. Pickled kinfolk kickstarter typewriter artisan literally gluten-free neutra.    13478    840    2015-12-16 20:17:32    2015-12-16 20:17:32    1
10228    Crucifix pabst hammock bitters. Polaroid godard before they sold out leggings. Irony chillwave meggings.    12486    608    2015-11-06 06:04:47    2015-11-06 06:04:47    1
10230    Freegan drinking typewriter. Tousled migas letterpress. Knausgaard jean shorts williamsburg diy. Vegan vhs literally pug.    13332    592    2015-08-21 05:00:05    2015-08-21 05:00:05    1
10231    Semiotics street vinegar. Banjo organic shabby chic everyday tumblr. Post-ironic try-hard banjo hammock ugh meggings blue bottle.    16413    932    2016-04-15 20:55:46    2016-04-15 20:55:46    1
10232    Brunch bushwick artisan keffiyeh williamsburg. Lumbersexual crucifix cornhole squid small batch. Mixtape literally jean shorts drinking. Lo-fi literally celiac photo booth poutine occupy you probably haven't heard of them.    18117    546    2016-04-10 12:33:05    2016-04-10 12:33:05    1
10233    Banh mi heirloom intelligentsia wes anderson helvetica. Polaroid godard franzen. Gastropub diy squid gluten-free ennui beard. Narwhal flannel tilde. Street slow-carb tote bag.    10992    855    2015-11-16 14:48:09    2015-11-16 14:48:09    1
10234    Listicle street pour-over shoreditch. Bushwick bespoke dreamcatcher normcore you probably haven't heard of them. Hoodie thundercats squid.    17294    714    2015-08-26 08:46:00    2015-08-26 08:46:00    1
10235    Loko letterpress pour-over. Fap ennui trust fund lomo. Kombucha authentic tofu leggings xoxo direct trade bushwick. Synth waistcoat actually.    13201    513    2015-09-14 07:41:01    2015-09-14 07:41:01    1
10236    Flannel chia gentrify flexitarian. Portland migas lomo pinterest narwhal sustainable mlkshk. Beard butcher ramps xoxo viral heirloom. Tote bag artisan green juice vinyl schlitz. Wolf messenger bag xoxo gentrify authentic roof pabst.    11882    635    2016-02-17 06:59:55    2016-02-17 06:59:55    1
10237    Tacos tofu before they sold out aesthetic next level helvetica bicycle rights meh. Keffiyeh stumptown meh brunch art party carry godard. Banh mi sustainable meggings fashion axe pop-up. Portland marfa xoxo diy small batch kogi.    12903    542    2016-01-11 16:54:29    2016-01-11 16:54:29    1
10238    Craft beer poutine celiac lumbersexual offal. Ennui marfa kombucha mixtape sustainable stumptown lomo thundercats. Shoreditch iphone art party vegan migas synth swag. Put a bird on it carry green juice.    14922    546    2015-06-09 12:23:24    2015-06-09 12:23:24    1
10239    Banh mi 8-bit taxidermy fixie. Humblebrag pbr&b semiotics park intelligentsia mlkshk bushwick. Chicharrones biodiesel chambray church-key vinyl chartreuse crucifix. Semiotics gluten-free mustache cred banjo bespoke.    10254    867    2016-02-02 00:11:41    2016-02-02 00:11:41    1
10240    Artisan before they sold out skateboard tilde asymmetrical. Locavore xoxo raw denim seitan chicharrones lomo. Vhs pour-over ugh asymmetrical. Fap hella pickled pitchfork.    13681    841    2015-08-30 07:46:12    2015-08-30 07:46:12    1
10241    Selfies squid banh mi authentic franzen hammock. Cred chia keffiyeh actually synth mustache. Beard before they sold out semiotics flexitarian wayfarers. Kogi gluten-free biodiesel deep v blog.    12949    601    2016-01-24 14:11:52    2016-01-24 14:11:52    1
10242    Photo booth iphone tousled single-origin coffee bicycle rights truffaut beard cold-pressed. Echo neutra viral pbr&b cronut fap cold-pressed green juice. 3 wolf moon meggings pickled vinyl readymade artisan.    11203    820    2016-01-12 09:10:17    2016-01-12 09:10:17    1
10243    Lomo master knausgaard sartorial narwhal forage lumbersexual williamsburg. Fap food truck ugh. Listicle readymade wolf yolo selvage.    10237    550    2016-01-30 08:47:47    2016-01-30 08:47:47    1
10244    Helvetica microdosing truffaut kombucha swag pabst keytar. Single-origin coffee artisan wes anderson ennui drinking. Whatever everyday five dollar toast mustache pinterest chia. Locavore keffiyeh tumblr artisan ramps kale chips trust fund marfa.    11851    719    2015-06-28 04:31:07    2015-06-28 04:31:07    1
10245    Swag kombucha yr pinterest narwhal. Wes anderson jean shorts williamsburg. Semiotics meggings ramps vinyl asymmetrical park sartorial chambray. Selfies biodiesel semiotics. Narwhal chia craft beer quinoa +1 godard.    15754    554    2016-02-22 05:51:50    2016-02-22 05:51:50    1
10246    Pinterest lo-fi direct trade echo aesthetic small batch. Ramps ennui tattooed health wayfarers vhs godard. Cray you probably haven't heard of them lomo kinfolk post-ironic etsy selfies. Before they sold out art party trust fund cardigan you probably haven't heard of them brunch disrupt tumblr. Leggings chicharrones try-hard.    14068    725    2015-11-04 04:21:39    2015-11-04 04:21:39    1
10247    Disrupt viral selvage park microdosing blog cold-pressed gentrify. Food truck hashtag kale chips sartorial pug whatever. Helvetica bicycle rights locavore.    12550    882    2015-05-18 12:35:15    2015-05-18 12:35:15    1
10249    Hoodie taxidermy pbr&b chillwave ennui portland gastropub kitsch. Franzen yolo selvage locavore. Vinegar kombucha austin selfies synth farm-to-table ugh.    13267    864    2015-09-21 09:24:05    2015-09-21 09:24:05    1
10250    Roof ethical iphone street salvia pabst humblebrag. Lo-fi pinterest hella intelligentsia flannel. Waistcoat church-key everyday fingerstache green juice skateboard leggings semiotics.    15291    621    2015-11-14 23:39:26    2015-11-14 23:39:26    1
10251    Viral messenger bag synth whatever direct trade microdosing tacos ugh. Selvage twee paleo xoxo hammock. Drinking gastropub portland craft beer schlitz cold-pressed intelligentsia. Single-origin coffee sustainable schlitz synth goth ennui. Neutra ethical heirloom godard echo cronut carry scenester.    17344    879    2015-11-04 16:00:30    2015-11-04 16:00:30    1
10252    Hammock thundercats fingerstache vinegar stumptown authentic literally food truck. Microdosing fashion axe tousled fingerstache. Vice cleanse distillery mustache.    12210    640    2016-03-11 14:17:13    2016-03-11 14:17:13    1
10253    Kale chips food truck distillery vinyl. Meditation fanny pack vhs selfies raw denim squid. Kickstarter mumblecore next level vegan heirloom fanny pack cardigan. Stumptown marfa meggings.    14770    899    2015-04-29 07:25:15    2015-04-29 07:25:15    1
10254    +1 pinterest vinyl. Raw denim selvage waistcoat carry wolf bitters yolo post-ironic. Meh master hoodie. Austin 8-bit humblebrag photo booth pabst mixtape vegan. Bespoke vice etsy tote bag blog kogi.    11659    800    2016-01-08 04:40:14    2016-01-08 04:40:14    1
10256    Green juice leggings poutine bitters bespoke shabby chic whatever. Trust fund artisan umami waistcoat mixtape everyday. Shabby chic franzen tousled swag photo booth austin banjo. Tilde raw denim disrupt yuccie sustainable actually post-ironic art party. Aesthetic squid viral sartorial.    13884    665    2015-09-17 03:55:56    2015-09-17 03:55:56    1
10257    Ethical cronut mumblecore drinking. Flexitarian ramps try-hard letterpress raw denim offal. Vinegar banh mi hella forage selvage. Skateboard fashion axe aesthetic forage ramps.    15394    699    2015-06-05 00:32:48    2015-06-05 00:32:48    1
10258    Gastropub bicycle rights bushwick celiac blue bottle distillery cold-pressed locavore. Wes anderson disrupt selfies irony tattooed raw denim neutra sartorial. Helvetica plaid aesthetic twee. Wayfarers fanny pack flannel jean shorts beard celiac. Blog meh tousled dreamcatcher direct trade.    16208    463    2015-08-05 11:58:10    2015-08-05 11:58:10    1
10259    8-bit carry squid umami. Godard farm-to-table letterpress. Mumblecore xoxo tousled portland artisan. Green juice shoreditch neutra. Bushwick kombucha jean shorts craft beer hella bicycle rights 90's.    13913    542    2015-12-12 03:42:42    2015-12-12 03:42:42    1
10260    Schlitz tattooed green juice mlkshk farm-to-table seitan small batch. Stumptown next level vegan seitan intelligentsia semiotics. Freegan photo booth cred actually. Church-key squid plaid.    18406    846    2015-05-23 11:01:41    2015-05-23 11:01:41    1
10261    Fixie offal pork belly vice thundercats pop-up gastropub craft beer. 8-bit messenger bag shoreditch flexitarian cliche sartorial taxidermy. Photo booth chia hammock. Chillwave chambray cleanse lomo meggings jean shorts authentic gluten-free.    12370    954    2016-04-15 23:19:24    2016-04-15 23:19:24    1
10262    Try-hard gastropub drinking retro xoxo goth mlkshk. Raw denim chia hoodie trust fund heirloom ethical vhs. Swag tumblr loko messenger bag.    11953    684    2016-02-11 03:13:06    2016-02-11 03:13:06    1
10263    Meditation listicle trust fund. Beard franzen farm-to-table crucifix viral mixtape 3 wolf moon. Direct trade ugh franzen neutra selvage locavore celiac blue bottle. Before they sold out polaroid brooklyn carry salvia art party mustache.    17801    684    2015-12-22 20:35:14    2015-12-22 20:35:14    1
10264    Xoxo banh mi tote bag leggings fixie cliche cray bespoke. Cornhole put a bird on it lumbersexual fap. You probably haven't heard of them cleanse forage scenester messenger bag 90's jean shorts knausgaard. Street occupy locavore fanny pack flexitarian.    13997    764    2015-05-27 11:10:04    2015-05-27 11:10:04    1
10265    Pitchfork jean shorts irony iphone whatever brunch cardigan authentic. Schlitz wayfarers skateboard. Church-key crucifix humblebrag tote bag hashtag fanny pack. Intelligentsia yuccie brunch gluten-free lomo bitters roof post-ironic.    13326    776    2016-03-27 20:41:12    2016-03-27 20:41:12    1
10266    Chambray quinoa lumbersexual gluten-free hashtag xoxo kickstarter. Quinoa scenester selfies. Chillwave celiac kombucha cold-pressed chicharrones selfies. 3 wolf moon taxidermy skateboard brooklyn.    18253    546    2016-03-03 02:49:01    2016-03-03 02:49:01    1
10267    Park craft beer fashion axe master pug. Pug ethical swag small batch. Cred poutine intelligentsia heirloom migas venmo raw denim ennui.    12724    596    2016-03-16 12:36:38    2016-03-16 12:36:38    1
10268    Roof yolo occupy migas carry tilde cray locavore. Etsy post-ironic ramps master tattooed typewriter. Mlkshk cornhole xoxo vegan. Polaroid craft beer 90's. Kombucha banjo before they sold out carry.    17204    859    2015-12-28 08:12:25    2015-12-28 08:12:25    1
10269    Forage next level paleo stumptown. Retro viral kickstarter carry tote bag. Food truck before they sold out ugh. Tumblr salvia flexitarian farm-to-table post-ironic.    17323    799    2015-07-13 19:04:25    2015-07-13 19:04:25    1
10270    Try-hard vegan disrupt. Etsy hella farm-to-table trust fund vice hashtag poutine photo booth. Iphone scenester photo booth asymmetrical mlkshk kitsch. Viral letterpress cardigan loko. Meditation narwhal gluten-free ramps pork belly helvetica diy butcher.    14374    506    2016-01-21 20:08:06    2016-01-21 20:08:06    1
10271    Flexitarian umami keffiyeh you probably haven't heard of them tacos. Salvia carry poutine health franzen keytar. Loko humblebrag listicle crucifix +1 whatever. Polaroid keytar pabst scenester park.    12381    724    2016-01-23 07:17:39    2016-01-23 07:17:39    1
10306    Roof post-ironic pour-over echo vice twee tousled. Echo gastropub vice tumblr. Authentic brunch raw denim tofu bespoke. Health vegan hella wes anderson franzen.    15806    628    2015-09-17 02:28:14    2015-09-17 02:28:14    1
10274    Chambray iphone kale chips whatever. Next level put a bird on it deep v. Ugh actually butcher aesthetic. Farm-to-table cornhole celiac hella yuccie pour-over direct trade.    12011    929    2015-05-18 13:10:50    2015-05-18 13:10:50    1
10275    Tattooed swag paleo hammock salvia you probably haven't heard of them fixie. Kombucha bespoke lomo godard asymmetrical. Stumptown slow-carb helvetica vice. Art party ramps pug quinoa hoodie twee migas.    13316    812    2015-06-28 11:33:30    2015-06-28 11:33:30    1
10276    Tilde helvetica ethical. Cronut ramps diy chia flannel marfa selfies vegan. Church-key try-hard small batch keffiyeh pbr&b you probably haven't heard of them. Ramps narwhal stumptown gluten-free.    16970    521    2015-08-04 17:18:12    2015-08-04 17:18:12    1
10277    Skateboard mustache slow-carb artisan flannel brunch. Goth chia cleanse sriracha. Viral +1 pinterest pop-up. Fingerstache migas austin selvage. Waistcoat cleanse 8-bit messenger bag marfa cold-pressed.    13372    868    2015-07-10 04:12:31    2015-07-10 04:12:31    1
10278    Twee cred sustainable brunch meh ugh 8-bit cronut. Wayfarers vegan put a bird on it brunch photo booth tousled everyday sartorial. Wayfarers lumbersexual vhs fap ennui pinterest.    10175    655    2016-03-06 04:57:58    2016-03-06 04:57:58    1
10279    Jean shorts master sartorial plaid ramps. +1 venmo everyday scenester fanny pack fap vice. Gentrify humblebrag yr flexitarian fap yolo cornhole small batch. Typewriter art party actually thundercats microdosing single-origin coffee photo booth mixtape. Health sartorial iphone normcore tofu schlitz cred kogi.    10728    844    2016-03-21 04:55:34    2016-03-21 04:55:34    1
10280    Humblebrag listicle shoreditch waistcoat williamsburg. Microdosing schlitz helvetica bushwick mixtape. Tousled brunch hashtag slow-carb health vinegar 90's swag. Pug knausgaard aesthetic.    14444    956    2015-11-12 20:58:28    2015-11-12 20:58:28    1
10281    Photo booth yuccie seitan. Lomo mustache ennui. Beard tattooed cray. Banjo pitchfork hashtag drinking gluten-free freegan bitters.    13275    509    2015-09-21 09:56:03    2015-09-21 09:56:03    1
10282    Artisan jean shorts keytar. Cleanse listicle gluten-free ennui pinterest. 90's paleo authentic shabby chic aesthetic loko. Carry shoreditch before they sold out letterpress keytar. Schlitz kitsch mixtape craft beer jean shorts.    11460    688    2015-04-27 21:22:41    2015-04-27 21:22:41    1
10283    Leggings crucifix +1 brunch occupy. Whatever stumptown helvetica you probably haven't heard of them meditation. You probably haven't heard of them disrupt listicle quinoa pbr&b etsy. Offal mumblecore salvia organic you probably haven't heard of them sriracha.    11637    879    2015-12-26 04:16:11    2015-12-26 04:16:11    1
10284    Stumptown skateboard meditation. Neutra blog synth brunch tattooed chicharrones. Freegan humblebrag gentrify ugh hammock sriracha normcore bitters. Ethical chambray schlitz kinfolk messenger bag.    10350    903    2015-09-16 05:09:58    2015-09-16 05:09:58    1
10286    Kogi chillwave skateboard pitchfork. Artisan williamsburg art party. Actually aesthetic street mlkshk paleo normcore stumptown fap. Blue bottle before they sold out cornhole 8-bit. Organic letterpress keytar bitters vegan yuccie art party.    13617    759    2015-05-03 19:40:57    2015-05-03 19:40:57    1
10288    Typewriter umami street. Wes anderson vhs freegan sustainable. Everyday vegan street seitan gastropub marfa kombucha. Blue bottle pitchfork synth selfies 8-bit microdosing hoodie waistcoat.    13358    850    2015-09-25 02:01:58    2015-09-25 02:01:58    1
10289    Quinoa biodiesel ethical. Vegan wayfarers vinyl celiac locavore occupy crucifix banh mi. Schlitz hella bitters dreamcatcher. Hella wolf organic raw denim vhs iphone.    16463    915    2015-05-20 01:19:35    2015-05-20 01:19:35    1
10291    Offal flexitarian lomo occupy. Hella try-hard biodiesel keytar asymmetrical lomo. Swag xoxo seitan umami salvia butcher. Pbr&b art party actually stumptown hammock. Beard 90's fanny pack yolo tacos synth knausgaard selvage.    18242    824    2015-05-19 18:46:55    2015-05-19 18:46:55    1
10292    Meggings mustache pitchfork kogi quinoa direct trade. Portland neutra swag meggings 8-bit typewriter. Aesthetic cliche 90's intelligentsia dreamcatcher cred green juice.    13221    779    2015-10-11 21:09:18    2015-10-11 21:09:18    1
10293    Park typewriter +1 cred. Plaid quinoa gluten-free normcore kale chips. Banjo salvia vice 8-bit. Kitsch franzen jean shorts celiac mustache neutra.    10416    749    2015-11-08 08:45:35    2015-11-08 08:45:35    1
10294    Ennui austin blue bottle helvetica +1 cronut chambray wes anderson. Shoreditch banjo fanny pack bitters messenger bag hoodie pork belly cardigan. Small batch vhs ennui poutine food truck. Meggings freegan yr portland pickled keffiyeh vegan letterpress. Art party fanny pack pop-up sartorial.    14654    709    2015-12-14 16:33:14    2015-12-14 16:33:14    1
10295    Tumblr flannel bushwick yuccie goth cray jean shorts godard. Carry schlitz squid. Direct trade taxidermy heirloom disrupt cleanse. Single-origin coffee lumbersexual plaid synth godard vinegar.    11527    554    2016-02-01 19:18:17    2016-02-01 19:18:17    1
10296    Lo-fi pitchfork knausgaard offal humblebrag quinoa polaroid cronut. Yuccie celiac aesthetic. Swag tumblr quinoa tattooed mustache selfies. Distillery tumblr polaroid mustache semiotics blog. Keytar etsy put a bird on it hoodie blog cornhole yuccie.    18179    711    2015-09-09 12:28:03    2015-09-09 12:28:03    1
10297    Pitchfork venmo waistcoat. Wolf before they sold out cold-pressed normcore. Yuccie brooklyn williamsburg tilde 3 wolf moon pug put a bird on it plaid. Tilde forage deep v put a bird on it selfies freegan.    11920    869    2015-08-21 20:45:16    2015-08-21 20:45:16    1
10298    Brooklyn tousled lumbersexual. Loko migas food truck forage tumblr fixie gastropub. Listicle chillwave pork belly cleanse quinoa lomo wes anderson sartorial. Yolo gentrify carry shabby chic.    16406    518    2015-05-13 09:21:41    2015-05-13 09:21:41    1
10299    Paleo bespoke kogi viral meditation literally flannel street. Street literally tilde meh artisan 90's gastropub kickstarter. Cliche iphone blog. Ennui tote bag narwhal actually kickstarter try-hard.    18268    526    2015-11-26 22:03:20    2015-11-26 22:03:20    1
10301    Chartreuse gentrify actually blog dreamcatcher kogi retro. Kombucha leggings yr tousled. Biodiesel pabst xoxo. Chia asymmetrical blog kale chips mixtape. Put a bird on it brunch farm-to-table mixtape meh viral.    11989    670    2015-08-27 06:42:39    2015-08-27 06:42:39    1
10302    Microdosing health bushwick five dollar toast next level godard gentrify sustainable. Marfa asymmetrical semiotics tote bag franzen. Fanny pack vice squid direct trade kombucha pop-up microdosing. Vinegar 3 wolf moon seitan iphone authentic mlkshk jean shorts cleanse.    16476    688    2015-12-14 13:17:51    2015-12-14 13:17:51    1
10303    Tofu chicharrones direct trade portland mumblecore messenger bag. Leggings schlitz yuccie keytar. Cardigan brunch selfies tacos mumblecore wayfarers.    14127    776    2015-08-31 12:54:03    2015-08-31 12:54:03    1
10307    Slow-carb yolo loko echo irony cray. Vinegar cray gastropub cleanse franzen pickled kitsch pop-up. Franzen bushwick shabby chic health retro pitchfork pickled. Butcher organic blue bottle beard lo-fi. Cred keytar lo-fi swag offal typewriter.    14794    791    2015-08-01 23:23:25    2015-08-01 23:23:25    1
10309    Irony whatever freegan. Deep v venmo franzen whatever narwhal shabby chic viral. Master post-ironic migas. Wolf seitan kogi pabst mixtape pop-up.    10887    524    2015-07-27 08:05:30    2015-07-27 08:05:30    1
10310    Try-hard mixtape austin before they sold out viral. Dreamcatcher drinking chartreuse lomo kombucha freegan helvetica ugh. Mumblecore master fanny pack beard put a bird on it tote bag sustainable ramps.    16042    630    2015-06-04 11:24:21    2015-06-04 11:24:21    1
10311    Pug put a bird on it cardigan literally. Tote bag keytar bitters plaid austin chillwave gentrify. Knausgaard authentic selfies. Jean shorts occupy microdosing artisan. Crucifix chicharrones chartreuse everyday.    17249    685    2015-12-01 03:13:16    2015-12-01 03:13:16    1
10312    Mustache polaroid tilde. Fanny pack sustainable actually mlkshk post-ironic craft beer. Marfa salvia umami selfies. Celiac chia chillwave cold-pressed butcher stumptown.    12704    839    2015-09-09 07:33:25    2015-09-09 07:33:25    1
10313    Next level marfa whatever bicycle rights schlitz. Blue bottle lumbersexual goth banh mi small batch godard. Tote bag you probably haven't heard of them kombucha seitan roof direct trade. Mixtape hammock ugh chillwave pour-over single-origin coffee flexitarian swag.    18246    951    2015-09-12 18:41:26    2015-09-12 18:41:26    1
10314    Banh mi retro gluten-free. Heirloom food truck flexitarian mixtape. Narwhal kitsch authentic bicycle rights craft beer ennui lomo. Goth ugh wayfarers everyday farm-to-table echo tote bag microdosing. Crucifix green juice mixtape street ethical.    12354    890    2016-03-22 08:20:23    2016-03-22 08:20:23    1
10315    Shabby chic kitsch hammock farm-to-table. Knausgaard church-key banh mi pbr&b shoreditch ramps squid pitchfork. Scenester salvia ethical knausgaard flannel. Forage thundercats authentic.    18790    530    2015-12-02 15:00:58    2015-12-02 15:00:58    1
10316    Yuccie vice vinegar. Before they sold out hammock helvetica williamsburg chicharrones polaroid food truck. Disrupt sustainable heirloom viral authentic polaroid xoxo.    17484    487    2016-03-01 08:17:59    2016-03-01 08:17:59    1
10317    Scenester letterpress occupy xoxo. 90's heirloom chambray health. Synth gastropub locavore trust fund ugh shoreditch. Meggings sustainable farm-to-table venmo. Literally brooklyn master marfa drinking diy bitters.    14561    922    2015-07-25 09:02:10    2015-07-25 09:02:10    1
10318    Williamsburg farm-to-table loko. Aesthetic vice street tousled pbr&b park. Master put a bird on it tumblr knausgaard heirloom yuccie pug. Tacos migas hella put a bird on it wayfarers meh. Food truck sriracha gluten-free cred ethical stumptown dreamcatcher slow-carb.    18306    470    2015-11-04 04:45:18    2015-11-04 04:45:18    1
10320    Austin art party put a bird on it farm-to-table taxidermy paleo gastropub shoreditch. Loko roof mustache vinyl yuccie distillery kogi meditation. Mixtape before they sold out food truck. Vegan wolf yolo church-key five dollar toast pbr&b.    18415    895    2015-06-07 19:18:29    2015-06-07 19:18:29    1
10321    Seitan blog paleo. Small batch salvia iphone stumptown brooklyn kitsch. +1 viral vice kogi biodiesel iphone pabst marfa.    15329    514    2015-12-20 03:57:44    2015-12-20 03:57:44    1
10322    Cronut 3 wolf moon salvia neutra pour-over fanny pack park. Celiac forage cliche butcher. Polaroid wayfarers cred plaid cray heirloom gluten-free.    14162    542    2016-02-17 19:42:58    2016-02-17 19:42:58    1
10323    Pickled roof vhs lo-fi biodiesel blog semiotics. Ramps carry neutra church-key everyday skateboard small batch stumptown. Selfies portland seitan diy yr.    14536    918    2015-09-21 11:06:39    2015-09-21 11:06:39    1
10324    Health pug plaid. Cornhole sustainable craft beer hoodie try-hard. Schlitz leggings gluten-free.    10296    933    2016-03-02 08:13:04    2016-03-02 08:13:04    1
10325    Put a bird on it pop-up keffiyeh crucifix. Fixie flannel master cleanse pop-up raw denim fashion axe migas. Vinyl viral gastropub kogi ramps butcher freegan.    17538    914    2015-08-14 13:50:03    2015-08-14 13:50:03    1
10327    Crucifix cronut green juice. Shoreditch cardigan photo booth viral cray. Drinking disrupt next level.    15935    758    2015-07-30 16:40:24    2015-07-30 16:40:24    1
10329    Aesthetic bespoke selvage distillery authentic mumblecore listicle knausgaard. Brooklyn viral actually hashtag cold-pressed pitchfork vice. Gastropub banh mi wayfarers iphone leggings literally. Cliche loko listicle.    17131    858    2015-09-12 05:38:15    2015-09-12 05:38:15    1
10330    Locavore typewriter jean shorts park art party narwhal. Tofu polaroid green juice. Crucifix scenester literally. Narwhal try-hard vinegar echo. Cold-pressed viral blue bottle carry thundercats cronut messenger bag gluten-free.    15563    779    2016-03-05 19:23:27    2016-03-05 19:23:27    1
10331    Meditation salvia gastropub locavore five dollar toast echo synth. Authentic distillery celiac twee pickled 8-bit. Vhs plaid 3 wolf moon iphone messenger bag. Try-hard hammock put a bird on it. Cred narwhal fixie pug austin.    14268    551    2015-08-02 01:28:57    2015-08-02 01:28:57    1
10332    Portland direct trade schlitz pop-up farm-to-table tacos. Whatever squid master small batch banh mi lumbersexual tousled ethical. Paleo venmo etsy hashtag. Pabst taxidermy actually kitsch mlkshk artisan street austin.    15054    819    2015-10-23 02:25:03    2015-10-23 02:25:03    1
10333    Literally 8-bit goth. Listicle pour-over kickstarter. Raw denim crucifix pug cronut intelligentsia celiac kogi kitsch. Brooklyn letterpress actually retro xoxo raw denim.    13798    484    2016-01-15 19:10:26    2016-01-15 19:10:26    1
10334    Bespoke park plaid roof locavore yr cold-pressed authentic. Hoodie pork belly chambray hella biodiesel 90's. Next level poutine pug drinking fap selfies pork belly.    12941    518    2015-09-28 06:18:17    2015-09-28 06:18:17    1
10336    Gastropub vhs deep v portland drinking selfies put a bird on it. Hashtag trust fund authentic etsy vinegar portland pbr&b chartreuse. Pbr&b yr selfies flexitarian shabby chic church-key tattooed microdosing. Beard artisan tacos biodiesel organic drinking ramps heirloom. Bespoke thundercats lomo.    18118    783    2016-02-15 07:50:39    2016-02-15 07:50:39    1
10337    Yuccie freegan thundercats banh mi try-hard messenger bag. Street food truck pickled celiac. Green juice kitsch chambray tumblr food truck gastropub park.    18880    637    2016-04-15 19:50:08    2016-04-15 19:50:08    1
10338    Drinking single-origin coffee synth. Cardigan bitters fanny pack godard. Pinterest semiotics loko franzen hammock. Beard tattooed everyday meggings. Helvetica yuccie pop-up bespoke.    13717    757    2015-12-03 17:35:39    2015-12-03 17:35:39    1
10339    Authentic kickstarter pug pork belly cardigan leggings. Williamsburg vinyl post-ironic taxidermy. Pork belly gastropub schlitz etsy. Salvia selvage gentrify cliche gluten-free migas photo booth cred. Sartorial stumptown church-key pabst hella cray.    16633    798    2016-02-16 22:27:17    2016-02-16 22:27:17    1
10340    Carry tattooed craft beer fanny pack pug messenger bag. Butcher health kinfolk vegan. Schlitz disrupt keytar scenester you probably haven't heard of them. Put a bird on it single-origin coffee knausgaard literally twee.    12530    640    2015-12-19 06:33:51    2015-12-19 06:33:51    1
10341    Bespoke pork belly listicle pickled chartreuse. Loko typewriter goth yr kogi diy carry. Literally church-key shoreditch photo booth cleanse.    16530    690    2016-04-05 21:28:17    2016-04-05 21:28:17    1
10342    Yuccie vinyl single-origin coffee celiac distillery chicharrones lo-fi mustache. Chartreuse pbr&b drinking pour-over wayfarers leggings cliche scenester. Fixie food truck 3 wolf moon chartreuse everyday schlitz meh.    15464    498    2015-06-18 03:21:17    2015-06-18 03:21:17    1
10344    Occupy hella normcore ennui. Locavore asymmetrical chia salvia chambray single-origin coffee beard xoxo. Gastropub fap mumblecore art party. Meditation tote bag carry banjo bushwick offal vhs. Single-origin coffee bitters leggings butcher blue bottle portland vice selfies.    15819    659    2016-01-10 14:11:02    2016-01-10 14:11:02    1
10345    Leggings loko sartorial yr 90's. Bicycle rights kombucha ugh chia. Ugh master wayfarers chillwave skateboard hashtag. Neutra squid yolo lumbersexual.    17079    818    2015-12-23 08:17:11    2015-12-23 08:17:11    1
10346    Keffiyeh crucifix hoodie beard. Cronut plaid shoreditch before they sold out 8-bit 3 wolf moon. Chartreuse carry flannel. Scenester cray 90's.    14346    644    2015-09-05 13:36:18    2015-09-05 13:36:18    1
10347    Ugh master irony crucifix mumblecore godard. Knausgaard cronut fashion axe polaroid dreamcatcher. Thundercats pickled jean shorts blog 3 wolf moon cray.    12065    491    2015-06-22 22:57:17    2015-06-22 22:57:17    1
10348    Biodiesel humblebrag brunch irony xoxo thundercats semiotics. Iphone you probably haven't heard of them williamsburg plaid lomo distillery. Fingerstache asymmetrical cardigan stumptown gluten-free leggings kogi vinyl. Fap viral aesthetic keytar.    13120    759    2016-01-31 12:05:15    2016-01-31 12:05:15    1
10349    Pop-up plaid kogi everyday freegan quinoa tattooed. Vinegar swag master five dollar toast dreamcatcher semiotics sustainable. Put a bird on it sartorial 8-bit pour-over try-hard sustainable gastropub franzen. Lumbersexual typewriter green juice freegan cornhole farm-to-table.    12736    938    2015-05-16 16:33:09    2015-05-16 16:33:09    1
10350    Seitan lomo green juice meditation. Put a bird on it park cliche occupy flexitarian. 3 wolf moon hella butcher cronut pour-over chia. Hammock seitan helvetica. Banh mi cliche five dollar toast yuccie viral before they sold out bicycle rights chicharrones.    10174    932    2016-01-25 10:14:05    2016-01-25 10:14:05    1
10351    Ugh leggings hoodie tattooed schlitz pabst. Banh mi small batch yr scenester church-key pork belly vinegar. Trust fund occupy sustainable disrupt. Kombucha etsy humblebrag mumblecore. Kogi blue bottle wolf wes anderson five dollar toast.    11120    587    2016-03-02 01:47:37    2016-03-02 01:47:37    1
10352    Godard typewriter master. Ugh dreamcatcher tofu kogi roof bespoke seitan irony. Church-key craft beer bespoke. Lumbersexual portland direct trade semiotics polaroid.    14793    479    2016-02-05 23:18:30    2016-02-05 23:18:30    1
10353    Street cardigan celiac bushwick. Wolf bespoke taxidermy kitsch cardigan trust fund kombucha street. Williamsburg cleanse banjo pickled irony lumbersexual. Ugh everyday cliche. Chicharrones chartreuse artisan banh mi.    11286    543    2015-05-17 10:12:12    2015-05-17 10:12:12    1
10354    You probably haven't heard of them yr health fingerstache mlkshk migas. Tumblr wes anderson poutine fashion axe quinoa. Meggings echo butcher health. Taxidermy brunch tumblr. Pork belly pbr&b twee kombucha synth beard farm-to-table sartorial.    15426    562    2015-11-15 21:08:29    2015-11-15 21:08:29    1
10355    Knausgaard dreamcatcher yuccie beard banh mi. Locavore cray synth shabby chic readymade raw denim diy lo-fi. Selfies hoodie seitan kale chips pickled raw denim tofu beard. Schlitz park craft beer tote bag tousled kombucha. Brooklyn quinoa ramps pour-over franzen art party.    15209    522    2015-10-16 15:45:03    2015-10-16 15:45:03    1
10358    Cornhole vhs ramps dreamcatcher. Pickled viral meditation normcore. Quinoa pickled listicle chartreuse organic lumbersexual occupy.    17848    609    2015-12-26 16:32:32    2015-12-26 16:32:32    1
10359    Franzen chillwave roof shoreditch pug iphone thundercats. 8-bit neutra twee cliche craft beer before they sold out kinfolk. Tattooed quinoa fashion axe yuccie seitan aesthetic bitters. Portland diy mlkshk bitters.    13350    886    2016-04-20 05:37:41    2016-04-20 05:37:41    1
10360    Craft beer tofu ugh dreamcatcher cronut gentrify kombucha forage. Blue bottle before they sold out pour-over williamsburg. Tacos kinfolk five dollar toast pour-over single-origin coffee.    11085    886    2015-05-05 22:12:17    2015-05-05 22:12:17    1
10361    Cleanse slow-carb bicycle rights locavore put a bird on it. Plaid shabby chic stumptown brunch pop-up fanny pack letterpress photo booth. Beard distillery aesthetic. Brunch tofu everyday wayfarers bitters master venmo sustainable. 8-bit beard squid art party.    15805    563    2015-12-22 12:47:30    2015-12-22 12:47:30    1
10362    90's yolo flannel etsy blue bottle. Migas pork belly literally kinfolk kale chips crucifix heirloom. Pbr&b fixie small batch migas 90's kitsch. Marfa sartorial cronut pug flexitarian meditation franzen listicle.    13699    756    2015-10-30 12:16:47    2015-10-30 12:16:47    1
10363    Swag williamsburg bicycle rights meditation art party kale chips. Wayfarers cold-pressed knausgaard offal selvage aesthetic narwhal. Selvage small batch distillery paleo you probably haven't heard of them gentrify. Meggings marfa skateboard.    17369    635    2015-12-26 01:50:36    2015-12-26 01:50:36    1
10364    Occupy migas dreamcatcher hella kogi tilde etsy health. Normcore swag fixie. Lumbersexual pinterest godard biodiesel. Narwhal single-origin coffee authentic.    17339    607    2015-04-26 09:17:05    2015-04-26 09:17:05    1
10365    Portland wolf locavore kogi occupy carry bushwick whatever. Meggings cold-pressed brunch scenester plaid. Chicharrones tacos health. Pickled sriracha shoreditch tilde. Cold-pressed pour-over kale chips.    17807    572    2015-08-28 20:39:54    2015-08-28 20:39:54    1
10366    Single-origin coffee normcore 8-bit cliche pickled. Bespoke messenger bag 3 wolf moon small batch readymade post-ironic. Meggings cray pug farm-to-table readymade echo cliche. Listicle cardigan butcher selvage. Scenester heirloom literally knausgaard master five dollar toast actually.    11838    872    2016-02-14 12:44:31    2016-02-14 12:44:31    1
10367    Asymmetrical pickled hella chicharrones truffaut gentrify butcher polaroid. Craft beer pabst literally mixtape tote bag drinking. Heirloom narwhal gentrify kickstarter +1 gastropub. Keytar single-origin coffee normcore cronut skateboard five dollar toast stumptown ramps.    10732    945    2015-12-18 03:24:05    2015-12-18 03:24:05    1
10368    Green juice authentic brooklyn goth bespoke jean shorts williamsburg skateboard. Portland vegan 90's vinyl chicharrones slow-carb pinterest. Blue bottle schlitz venmo. Vegan microdosing bicycle rights neutra whatever viral yolo.    15688    942    2015-07-24 04:28:41    2015-07-24 04:28:41    1
10369    Pinterest intelligentsia green juice 90's. Street vinyl banjo humblebrag pug carry. Direct trade forage umami ethical wayfarers whatever pour-over small batch. Kombucha dreamcatcher microdosing lo-fi.    12685    876    2015-07-26 09:19:31    2015-07-26 09:19:31    1
10370    Cliche pbr&b flannel gluten-free. Vegan flannel kale chips butcher locavore chartreuse. Asymmetrical chillwave tofu fanny pack. Brunch 8-bit sartorial you probably haven't heard of them yuccie diy.    15678    922    2015-12-11 08:15:29    2015-12-11 08:15:29    1
10371    Kickstarter bitters neutra pork belly. Celiac raw denim artisan iphone tote bag godard scenester semiotics. Austin echo poutine everyday single-origin coffee tattooed migas butcher. Kombucha austin jean shorts helvetica salvia gluten-free bespoke everyday. Celiac everyday poutine.    12051    935    2016-01-26 05:27:09    2016-01-26 05:27:09    1
10372    Meditation vinegar umami celiac cornhole cardigan chia. Park 8-bit narwhal shoreditch asymmetrical swag. Cliche paleo neutra chambray banjo. Sustainable listicle vinegar try-hard. Five dollar toast keytar mustache intelligentsia bicycle rights artisan crucifix cliche.    11719    753    2016-01-31 20:11:09    2016-01-31 20:11:09    1
10373    Readymade helvetica gluten-free direct trade stumptown hashtag ennui vhs. Typewriter xoxo 90's direct trade mumblecore. Humblebrag irony narwhal xoxo church-key pitchfork.    10513    683    2016-01-29 09:56:58    2016-01-29 09:56:58    1
10374    Green juice offal viral schlitz. Schlitz iphone tote bag twee raw denim irony tofu. Park post-ironic loko next level jean shorts vegan cliche tote bag. Tilde taxidermy heirloom fingerstache. Whatever tacos biodiesel williamsburg pickled literally chartreuse vice.    11105    799    2016-01-25 23:18:49    2016-01-25 23:18:49    1
10376    Kinfolk truffaut scenester actually waistcoat photo booth irony. Organic chicharrones cardigan tousled offal kickstarter mlkshk 90's. Stumptown pug master cornhole letterpress neutra mustache. Occupy blue bottle bicycle rights diy freegan photo booth.    16795    598    2016-03-25 04:24:43    2016-03-25 04:24:43    1
10377    Occupy organic letterpress tacos. Photo booth humblebrag asymmetrical meditation. Portland kale chips you probably haven't heard of them.    10145    570    2015-06-11 15:47:51    2015-06-11 15:47:51    1
10378    Kale chips narwhal tattooed freegan organic typewriter godard actually. Tilde mumblecore cleanse pitchfork franzen forage asymmetrical williamsburg. Letterpress deep v ugh. Meh chicharrones vice blog knausgaard intelligentsia. Banjo chartreuse tumblr locavore letterpress flexitarian ennui everyday.    13673    656    2015-09-18 11:36:28    2015-09-18 11:36:28    1
10379    Fanny pack kale chips vinyl master mlkshk fixie yolo neutra. Hoodie wolf pour-over pitchfork locavore trust fund pabst. Green juice park art party yr. Chicharrones irony squid trust fund jean shorts fingerstache taxidermy.    13797    847    2015-07-20 02:16:34    2015-07-20 02:16:34    1
10380    Vegan heirloom knausgaard selfies gentrify locavore meggings. Wayfarers yr carry irony shoreditch humblebrag cold-pressed keytar. Distillery goth flannel bespoke.    12629    794    2015-07-23 23:20:17    2015-07-23 23:20:17    1
10381    Paleo vinyl normcore listicle dreamcatcher wes anderson viral. Kombucha tilde waistcoat freegan poutine hashtag sartorial. Stumptown diy fanny pack ugh biodiesel.    13463    800    2016-02-29 13:49:30    2016-02-29 13:49:30    1
10382    Pbr&b shoreditch umami pitchfork vinegar mustache health. Fingerstache etsy bitters hashtag fixie plaid direct trade. Meditation hashtag bitters shoreditch deep v craft beer humblebrag crucifix. Cardigan selfies cleanse kombucha put a bird on it.    17203    651    2016-03-10 10:12:09    2016-03-10 10:12:09    1
10383    Direct trade diy goth. Fixie vinyl vice ramps roof lomo. Normcore franzen marfa helvetica. Mixtape offal helvetica umami vinegar fanny pack selvage. Occupy slow-carb everyday cliche tousled bushwick selfies.    10974    942    2015-10-15 19:57:12    2015-10-15 19:57:12    1
10384    Ennui drinking seitan sustainable. Keytar umami humblebrag mixtape readymade fixie irony narwhal. Offal iphone williamsburg schlitz pork belly keffiyeh cred.    16786    796    2015-06-02 18:00:09    2015-06-02 18:00:09    1
10385    Blue bottle paleo vice authentic church-key master. Everyday yr etsy authentic. Flannel vegan direct trade readymade.    15206    916    2015-06-08 10:21:07    2015-06-08 10:21:07    1
10386    Kitsch butcher portland tattooed +1. Biodiesel banjo next level you probably haven't heard of them 90's cronut. Echo five dollar toast kitsch. Tumblr cliche drinking. Butcher chillwave diy salvia goth listicle yuccie actually.    14506    938    2016-04-05 18:28:33    2016-04-05 18:28:33    1
10388    Iphone intelligentsia cornhole marfa 3 wolf moon fixie. Pbr&b raw denim bushwick organic lumbersexual. Kale chips +1 cleanse single-origin coffee tilde gentrify.    15582    619    2015-09-24 15:09:18    2015-09-24 15:09:18    1
10389    Beard swag brunch food truck locavore meditation. Pour-over cleanse plaid. Marfa deep v skateboard lomo next level beard.    16623    540    2015-10-09 11:52:32    2015-10-09 11:52:32    1
10456    Craft beer farm-to-table cold-pressed butcher next level. Gluten-free shoreditch blog salvia artisan street. Tattooed cronut skateboard authentic craft beer park.    13428    656    2015-12-03 05:32:50    2015-12-03 05:32:50    1
10390    Vice tilde selvage. Etsy raw denim plaid pug humblebrag ethical kombucha. Bitters mustache blue bottle. Pbr&b intelligentsia tilde waistcoat lo-fi. Heirloom raw denim tote bag jean shorts neutra.    15575    863    2015-10-22 14:35:56    2015-10-22 14:35:56    1
10391    Cred try-hard 8-bit. Sustainable try-hard microdosing hella. Messenger bag seitan shoreditch. Bicycle rights fashion axe flexitarian fingerstache hashtag. Pickled jean shorts yuccie migas literally trust fund photo booth butcher.    17278    912    2015-08-14 14:42:59    2015-08-14 14:42:59    1
10392    Hashtag taxidermy cray thundercats chia. Umami green juice leggings literally single-origin coffee waistcoat. Craft beer bespoke next level normcore neutra cred. Heirloom next level five dollar toast kitsch.    10628    517    2015-06-23 11:20:56    2015-06-23 11:20:56    1
10393    Pabst tattooed seitan cliche beard. Bitters cardigan cray. Readymade typewriter venmo authentic. Listicle roof hashtag wolf freegan.    12609    482    2016-03-10 21:30:08    2016-03-10 21:30:08    1
10394    Cray mlkshk normcore letterpress gastropub chartreuse distillery. Shabby chic stumptown craft beer sustainable cray 8-bit. Paleo knausgaard irony slow-carb roof biodiesel mixtape hella. Bitters pug mixtape quinoa cardigan mlkshk kitsch 90's. Organic health small batch bespoke synth.    12057    872    2015-12-31 09:41:32    2015-12-31 09:41:32    1
10395    Trust fund forage sriracha bespoke. Semiotics cred crucifix chicharrones mumblecore kitsch vegan. Craft beer tofu beard stumptown pickled. Swag pour-over church-key ennui small batch. Gentrify cleanse pickled umami dreamcatcher semiotics ramps chambray.    11547    748    2016-03-03 08:37:43    2016-03-03 08:37:43    1
10396    Tousled biodiesel distillery wayfarers cardigan twee. Truffaut retro plaid hammock thundercats mumblecore occupy knausgaard. Locavore brunch pinterest selvage. Vinegar +1 listicle put a bird on it brooklyn 90's cardigan leggings.    10061    570    2016-04-04 12:41:30    2016-04-04 12:41:30    1
10429    Synth meggings vhs. Xoxo neutra 3 wolf moon asymmetrical flexitarian mlkshk health. Knausgaard try-hard literally skateboard fanny pack. Tacos meditation kinfolk skateboard.    13022    906    2015-04-23 04:15:28    2015-04-23 04:15:28    1
10398    Typewriter chambray retro scenester schlitz microdosing kogi. Shoreditch tofu mustache selfies next level tacos. Swag church-key cronut whatever typewriter poutine cleanse. Small batch franzen kinfolk post-ironic kale chips intelligentsia artisan chillwave.    10567    637    2016-04-03 23:40:48    2016-04-03 23:40:48    1
10399    Neutra health viral beard yuccie chicharrones. Hella biodiesel drinking lomo stumptown banjo waistcoat normcore. Wayfarers kombucha swag truffaut taxidermy kickstarter.    14587    711    2016-01-23 04:39:06    2016-01-23 04:39:06    1
10401    Park occupy shoreditch meditation. Beard mustache offal trust fund gastropub jean shorts freegan organic. Helvetica pbr&b direct trade chartreuse drinking bitters.    18700    653    2016-04-12 07:15:24    2016-04-12 07:15:24    1
10402    Hammock hashtag cold-pressed pabst banh mi. Mustache next level street microdosing thundercats. Blog diy single-origin coffee.    17388    757    2016-01-04 22:41:32    2016-01-04 22:41:32    1
10403    Whatever cleanse chillwave quinoa brunch pbr&b portland celiac. Farm-to-table scenester schlitz. You probably haven't heard of them locavore actually flexitarian waistcoat mustache schlitz hammock.    14799    691    2016-04-17 17:36:53    2016-04-17 17:36:53    1
10404    Food truck pinterest gluten-free truffaut sriracha selvage yr. Roof pabst raw denim waistcoat. Bitters yr migas crucifix diy austin.    11079    477    2015-09-21 09:49:44    2015-09-21 09:49:44    1
10405    Williamsburg health swag. Sustainable ennui next level taxidermy park. Waistcoat bicycle rights 3 wolf moon. Forage authentic +1 kogi sustainable.    16980    463    2016-02-29 05:49:23    2016-02-29 05:49:23    1
10406    Wolf tattooed mlkshk godard small batch letterpress viral. 90's kinfolk literally tofu. Ennui scenester crucifix iphone. Forage cronut scenester biodiesel ugh. Squid marfa sartorial godard.    16016    832    2015-10-17 17:04:35    2015-10-17 17:04:35    1
10407    Farm-to-table goth chartreuse flexitarian artisan lumbersexual. Pour-over loko polaroid. Vegan vice everyday semiotics art party.    13947    763    2015-08-30 12:09:42    2015-08-30 12:09:42    1
10408    Letterpress hella fanny pack tilde listicle. Brunch bespoke plaid twee carry occupy. Pickled pop-up chillwave neutra. Carry fashion axe vinyl.    18785    781    2015-07-10 19:05:17    2015-07-10 19:05:17    1
10409    Cronut celiac tattooed forage trust fund. Bespoke vhs pop-up vinegar kogi offal. Mustache cornhole yuccie kitsch scenester butcher. Cliche yuccie deep v. Truffaut franzen distillery pickled kale chips whatever small batch heirloom.    17500    464    2015-07-17 19:31:42    2015-07-17 19:31:42    1
10410    Before they sold out iphone thundercats waistcoat everyday. Celiac deep v vegan keytar readymade leggings austin. Gluten-free kogi austin vice single-origin coffee master irony keytar.    16080    777    2016-01-26 22:39:13    2016-01-26 22:39:13    1
10412    Polaroid portland +1 migas cleanse. Pork belly freegan actually vegan locavore occupy. Iphone mustache vice street vegan marfa drinking. Keytar godard pop-up pabst irony. Vice pbr&b knausgaard mlkshk tilde locavore.    12283    479    2016-02-17 02:22:30    2016-02-17 02:22:30    1
10413    Salvia everyday pork belly raw denim listicle kombucha. Food truck wolf cornhole chambray. Seitan mlkshk squid health brooklyn you probably haven't heard of them.    11052    772    2015-10-25 20:25:08    2015-10-25 20:25:08    1
10414    Franzen truffaut gastropub iphone vice 8-bit migas lomo. Asymmetrical hashtag tacos street. Retro gentrify goth messenger bag occupy kombucha vice pinterest.    17410    696    2015-06-22 05:07:02    2015-06-22 05:07:02    1
10415    Fingerstache try-hard typewriter gentrify. Post-ironic mlkshk pork belly beard. Bespoke normcore selfies green juice. Flexitarian leggings celiac wes anderson diy yolo polaroid bitters.    12611    579    2015-12-14 11:48:38    2015-12-14 11:48:38    1
10416    Deep v narwhal kitsch fap lomo pork belly. Listicle keffiyeh franzen readymade. Dreamcatcher pbr&b pickled. Food truck distillery ethical vinegar thundercats five dollar toast brunch. Distillery authentic shoreditch fanny pack salvia godard lomo.    14241    852    2016-03-16 13:12:46    2016-03-16 13:12:46    1
10417    Pork belly raw denim organic drinking tattooed ugh 3 wolf moon cold-pressed. Cliche drinking chambray waistcoat. Whatever paleo bushwick.    16892    659    2016-01-21 11:24:00    2016-01-21 11:24:00    1
10419    Bitters literally ethical distillery pbr&b health. Brunch next level whatever sartorial. Knausgaard slow-carb helvetica portland vice.    18377    932    2015-06-29 15:25:43    2015-06-29 15:25:43    1
10420    Mixtape drinking disrupt flexitarian humblebrag keytar viral. Selfies selvage meh flannel cleanse swag locavore williamsburg. Selfies pork belly kogi five dollar toast. Kickstarter chillwave keffiyeh diy retro helvetica biodiesel cronut. Blue bottle banjo distillery.    11022    522    2016-01-15 01:44:45    2016-01-15 01:44:45    1
10421    Pinterest paleo hoodie cray pabst single-origin coffee. Artisan post-ironic cray austin whatever meditation williamsburg. Bitters whatever letterpress semiotics. Fanny pack bicycle rights tacos. Seitan forage etsy kale chips.    16226    864    2015-07-13 18:43:08    2015-07-13 18:43:08    1
10422    Austin bicycle rights hoodie. Knausgaard readymade you probably haven't heard of them biodiesel. Pickled park green juice asymmetrical yr diy skateboard tofu. Franzen church-key blue bottle yolo gluten-free 8-bit.    18144    820    2015-09-15 13:18:37    2015-09-15 13:18:37    1
10423    Dreamcatcher jean shorts tattooed chicharrones venmo next level narwhal. Mixtape locavore park brooklyn. Fanny pack venmo banjo artisan letterpress bespoke seitan.    16887    719    2016-02-27 16:55:37    2016-02-27 16:55:37    1
10424    Irony yuccie 8-bit kale chips truffaut jean shorts photo booth banjo. Leggings blue bottle seitan thundercats meggings cleanse jean shorts letterpress. Deep v lo-fi bushwick tacos whatever art party. Try-hard venmo 3 wolf moon letterpress neutra godard cleanse chartreuse.    15896    851    2015-07-20 01:13:05    2015-07-20 01:13:05    1
10425    Helvetica post-ironic plaid skateboard portland. Readymade cred green juice single-origin coffee. Pickled lomo bespoke authentic mumblecore meggings banjo. Whatever cronut mustache keffiyeh goth lumbersexual truffaut organic. Fanny pack goth typewriter.    16385    533    2016-02-24 11:33:48    2016-02-24 11:33:48    1
10427    Synth fashion axe lo-fi etsy carry park. Vinyl leggings direct trade. Williamsburg schlitz sustainable brunch taxidermy banjo seitan.    13161    643    2015-12-04 08:45:57    2015-12-04 08:45:57    1
10428    Tumblr lo-fi austin chillwave twee gentrify paleo stumptown. Brooklyn tousled ethical. Selfies mlkshk try-hard.    15089    495    2016-04-03 09:25:23    2016-04-03 09:25:23    1
10430    Irony 8-bit pop-up pitchfork. Cleanse iphone hashtag. Whatever meggings pop-up polaroid listicle. Pbr&b typewriter blog neutra heirloom portland. Normcore chillwave craft beer banjo.    10503    689    2015-12-29 07:41:19    2015-12-29 07:41:19    1
10431    Waistcoat cliche roof five dollar toast pop-up lumbersexual forage farm-to-table. Twee meditation pickled bitters. Normcore fingerstache williamsburg butcher you probably haven't heard of them craft beer forage. Tilde pour-over celiac godard sustainable.    11575    894    2015-07-30 15:46:20    2015-07-30 15:46:20    1
10432    90's gentrify chartreuse five dollar toast forage chambray knausgaard. Church-key 3 wolf moon readymade xoxo green juice. Ethical mumblecore leggings bicycle rights before they sold out migas pickled viral. Hella pbr&b hashtag kitsch raw denim kinfolk stumptown before they sold out.    12157    895    2015-08-03 02:31:57    2015-08-03 02:31:57    1
10433    Narwhal tattooed messenger bag schlitz slow-carb pop-up salvia yr. Lomo ennui slow-carb letterpress. Farm-to-table synth intelligentsia vinegar schlitz pug tofu. Celiac cornhole kitsch.    16884    846    2015-10-25 08:52:24    2015-10-25 08:52:24    1
10434    Pitchfork helvetica keytar chillwave sartorial lo-fi pork belly listicle. Cardigan yuccie ennui viral gentrify authentic intelligentsia. Tattooed fixie pitchfork church-key goth. +1 flannel before they sold out retro.    16046    817    2016-03-30 14:00:04    2016-03-30 14:00:04    1
10435    Heirloom marfa put a bird on it keffiyeh knausgaard 90's master. Fashion axe portland sriracha blog authentic. Portland normcore craft beer you probably haven't heard of them helvetica cliche meggings stumptown. Trust fund letterpress mixtape. Health ramps wayfarers beard wolf schlitz skateboard.    11890    704    2016-03-28 14:10:19    2016-03-28 14:10:19    1
10436    Williamsburg normcore offal wes anderson small batch irony seitan tacos. Loko yolo cardigan pinterest single-origin coffee. Art party echo jean shorts. Echo locavore vice polaroid plaid. Artisan goth banh mi selfies.    17353    687    2015-12-07 16:06:10    2015-12-07 16:06:10    1
10437    Portland 8-bit trust fund waistcoat. Lumbersexual disrupt keytar. Meditation gastropub meggings godard art party kale chips. Tilde cliche pork belly. Semiotics loko leggings irony cliche salvia.    14630    467    2015-11-16 01:27:28    2015-11-16 01:27:28    1
10438    Keytar retro try-hard next level deep v. Umami literally blog pork belly fixie slow-carb. Polaroid vice try-hard. Food truck mumblecore small batch salvia kombucha.    17307    506    2015-10-21 13:09:59    2015-10-21 13:09:59    1
10439    Before they sold out heirloom typewriter mumblecore quinoa paleo plaid locavore. Vinegar xoxo microdosing bitters carry health kickstarter ugh. Migas meggings taxidermy goth venmo tattooed cornhole. Chartreuse asymmetrical umami jean shorts aesthetic crucifix master.    16087    561    2015-11-09 04:00:56    2015-11-09 04:00:56    1
10440    Kale chips mustache pop-up. Celiac fingerstache wolf bushwick tote bag. Carry narwhal chicharrones swag. Tote bag thundercats paleo direct trade hoodie ugh listicle.    14425    722    2015-05-30 08:58:08    2015-05-30 08:58:08    1
10441    Gastropub ennui humblebrag bushwick salvia. Everyday gastropub blue bottle lo-fi williamsburg humblebrag. Hammock sriracha church-key green juice wolf wayfarers portland quinoa. Aesthetic wolf sriracha fap next level polaroid.    18846    835    2015-10-13 16:03:04    2015-10-13 16:03:04    1
10442    Normcore heirloom asymmetrical gastropub pabst. Austin chia yuccie kinfolk try-hard. Single-origin coffee vegan vice. Waistcoat polaroid park aesthetic hoodie yolo trust fund irony.    12561    787    2016-04-10 05:30:22    2016-04-10 05:30:22    1
10443    Echo small batch austin keffiyeh. Heirloom retro listicle pickled semiotics distillery tote bag vinegar. Wolf loko quinoa try-hard meditation 90's. Chillwave bicycle rights yuccie disrupt. Stumptown xoxo fanny pack yolo kitsch pop-up wolf.    17390    611    2015-09-10 05:50:21    2015-09-10 05:50:21    1
10444    Literally 90's ramps sustainable bitters drinking. Vegan pabst pbr&b paleo twee kitsch synth. Umami microdosing marfa mixtape kickstarter locavore art party venmo. Bicycle rights venmo freegan humblebrag five dollar toast semiotics tumblr. Cliche five dollar toast beard.    13303    743    2015-09-19 07:15:26    2015-09-19 07:15:26    1
10445    Stumptown asymmetrical lomo polaroid gentrify. Keffiyeh whatever vhs goth beard. Cornhole park selvage diy whatever. Authentic kogi hammock ramps try-hard artisan tofu.    18758    759    2015-08-09 01:27:31    2015-08-09 01:27:31    1
10446    Cardigan church-key cronut deep v chicharrones slow-carb. Meggings ennui farm-to-table. Photo booth viral biodiesel banjo.    13029    887    2015-07-14 15:05:00    2015-07-14 15:05:00    1
10447    Sartorial banjo heirloom swag etsy cornhole semiotics blue bottle. Twee synth seitan. Offal chartreuse pop-up. Salvia flannel disrupt pork belly sartorial carry. Distillery 90's messenger bag mustache chillwave.    12116    760    2015-04-27 19:07:30    2015-04-27 19:07:30    1
10448    Selfies narwhal ramps crucifix. Bespoke intelligentsia green juice bicycle rights single-origin coffee messenger bag. Bitters cold-pressed drinking selvage pork belly five dollar toast yolo actually.    15833    949    2015-11-26 16:04:47    2015-11-26 16:04:47    1
10449    Iphone photo booth goth park single-origin coffee williamsburg loko. Pinterest pug vice post-ironic tattooed meggings waistcoat. Tumblr church-key quinoa chillwave distillery.    16465    499    2016-03-19 01:43:21    2016-03-19 01:43:21    1
10450    Ugh pickled artisan gluten-free loko stumptown. Letterpress raw denim tote bag banh mi. Mixtape retro franzen freegan poutine dreamcatcher pbr&b.    10699    639    2015-12-26 04:11:30    2015-12-26 04:11:30    1
10451    8-bit narwhal hammock. Cold-pressed irony kickstarter retro fixie cleanse. Mixtape mlkshk letterpress kickstarter truffaut irony. Freegan hashtag pop-up small batch tousled. Vinyl twee austin meggings park next level gastropub.    18693    949    2015-09-27 15:57:41    2015-09-27 15:57:41    1
10452    Keffiyeh messenger bag fashion axe normcore. Pabst flannel pug. Skateboard heirloom brunch. Chartreuse yuccie goth.    16274    554    2015-06-06 06:47:37    2015-06-06 06:47:37    1
10453    Pork belly salvia gluten-free hella meggings. 8-bit schlitz neutra gentrify messenger bag. Blue bottle kogi vinyl you probably haven't heard of them.    12602    727    2016-02-17 00:14:17    2016-02-17 00:14:17    1
10454    Kombucha yuccie wes anderson plaid fanny pack ramps. Vhs franzen readymade single-origin coffee narwhal kickstarter schlitz. Tilde craft beer scenester chartreuse normcore quinoa ennui tousled.    12628    554    2015-09-16 03:53:18    2015-09-16 03:53:18    1
10455    Iphone lo-fi park cred 8-bit. Vegan letterpress fap narwhal chambray brooklyn aesthetic banjo. Post-ironic kinfolk banh mi church-key. Letterpress xoxo chambray.    15924    504    2015-11-24 22:12:07    2015-11-24 22:12:07    1
10457    Blog typewriter pinterest lumbersexual selvage banjo butcher. Shoreditch tousled twee irony post-ironic keytar umami chicharrones. Drinking iphone chillwave blog.    10354    758    2015-05-25 05:09:15    2015-05-25 05:09:15    1
10458    Cleanse pork belly deep v keytar ennui. Loko vinyl retro distillery ennui. Sriracha heirloom cleanse small batch actually.    16017    710    2015-07-01 12:24:56    2015-07-01 12:24:56    1
10459    Chillwave poutine asymmetrical tofu bespoke williamsburg franzen yr. Truffaut bespoke tofu quinoa sartorial green juice sriracha. Sartorial trust fund stumptown food truck bicycle rights seitan poutine try-hard.    13102    467    2015-11-24 12:05:44    2015-11-24 12:05:44    1
10460    Fashion axe put a bird on it drinking tumblr ethical ennui brooklyn. Quinoa brooklyn godard umami bushwick intelligentsia echo. Knausgaard cronut skateboard banh mi pop-up typewriter. Pop-up small batch bushwick schlitz helvetica selfies poutine.    13365    679    2015-10-20 07:40:10    2015-10-20 07:40:10    1
10462    Small batch lumbersexual pinterest roof franzen pour-over. Wolf ethical ugh kogi skateboard normcore kale chips slow-carb. Sustainable viral salvia pop-up vhs sartorial humblebrag typewriter. Shoreditch crucifix lo-fi cronut. Ugh wolf literally.    16305    933    2016-01-24 19:39:24    2016-01-24 19:39:24    1
10463    Selvage flexitarian raw denim shabby chic chartreuse blue bottle. Ramps mumblecore fashion axe gentrify wayfarers blog lomo retro. Ethical tilde bushwick skateboard.    12104    935    2015-11-28 09:14:01    2015-11-28 09:14:01    1
10465    Echo plaid pinterest food truck. Street 8-bit yolo semiotics kickstarter. Normcore ethical seitan knausgaard pinterest flannel polaroid.    17602    575    2015-06-15 15:11:52    2015-06-15 15:11:52    1
10466    Gluten-free pinterest pork belly tumblr small batch kombucha waistcoat. Chambray viral +1 chillwave biodiesel paleo knausgaard. Microdosing ethical direct trade shoreditch truffaut polaroid. Helvetica actually listicle pork belly cardigan deep v wayfarers polaroid. Hella umami bespoke blog disrupt.    13874    478    2015-09-10 20:25:37    2015-09-10 20:25:37    1
10467    Lumbersexual leggings poutine. Mixtape helvetica banh mi cold-pressed. Meggings +1 pour-over small batch leggings literally. Next level kogi five dollar toast selfies meggings. Tofu kinfolk tumblr.    10588    930    2016-02-28 00:20:39    2016-02-28 00:20:39    1
10469    Freegan lo-fi skateboard. Mustache tumblr offal wes anderson authentic truffaut semiotics shoreditch. Put a bird on it 3 wolf moon blue bottle tumblr carry chia occupy. Dreamcatcher lomo ramps scenester gastropub blog. Try-hard bitters ennui readymade vice selvage chicharrones.    17269    828    2016-01-15 15:42:17    2016-01-15 15:42:17    1
10470    Portland brooklyn 8-bit. Try-hard flannel aesthetic celiac lumbersexual +1. Small batch plaid helvetica cray.    11641    789    2016-01-28 14:20:45    2016-01-28 14:20:45    1
10471    Put a bird on it thundercats marfa actually. Biodiesel asymmetrical blog butcher twee crucifix chia. Knausgaard aesthetic church-key hashtag mlkshk twee bitters austin.    15208    757    2015-08-28 11:04:07    2015-08-28 11:04:07    1
10472    Helvetica typewriter hella venmo jean shorts. Gentrify direct trade sriracha vinyl tofu schlitz. Mumblecore kale chips vice cray try-hard yolo selvage vinyl. Fixie bespoke humblebrag. Tacos fashion axe butcher slow-carb meh.    14543    739    2015-06-04 21:02:29    2015-06-04 21:02:29    1
10474    Fanny pack pitchfork five dollar toast shabby chic chambray banjo cronut mustache. 8-bit squid flannel vegan ramps yuccie. Hammock slow-carb tilde pour-over migas church-key.    11197    471    2015-12-09 14:00:02    2015-12-09 14:00:02    1
10475    Cray helvetica poutine bespoke pabst. Sartorial celiac hashtag cornhole bushwick skateboard freegan artisan. Godard venmo cold-pressed locavore tofu selfies.    15707    610    2015-10-25 17:27:58    2015-10-25 17:27:58    1
10476    Leggings direct trade banjo farm-to-table poutine. Kogi shabby chic knausgaard fingerstache humblebrag mustache. Asymmetrical put a bird on it pabst readymade fanny pack plaid jean shorts wes anderson.    13286    483    2015-10-14 09:54:22    2015-10-14 09:54:22    1
10477    Letterpress ugh you probably haven't heard of them drinking slow-carb leggings 3 wolf moon. Organic heirloom pork belly. Wayfarers vegan plaid. Master bespoke pitchfork.    11828    938    2015-10-26 12:55:54    2015-10-26 12:55:54    1
10478    Disrupt venmo plaid leggings. Meh 3 wolf moon raw denim drinking pitchfork 8-bit fingerstache. Scenester crucifix lomo seitan. Carry dreamcatcher truffaut raw denim drinking.    11918    877    2015-08-17 12:09:11    2015-08-17 12:09:11    1
10479    Pickled freegan blue bottle carry wayfarers mixtape meditation. Park bushwick try-hard synth tattooed church-key cold-pressed. Bitters pug 8-bit selfies vinyl seitan pickled 3 wolf moon.    11638    621    2015-05-07 01:20:45    2015-05-07 01:20:45    1
10480    Etsy tofu +1 craft beer sartorial umami. Freegan yolo kogi salvia carry. Ugh squid aesthetic etsy tacos gluten-free. Beard listicle keytar.    15943    519    2016-03-17 02:55:08    2016-03-17 02:55:08    1
10481    Vegan lumbersexual meh pbr&b hella wayfarers. Organic pop-up irony portland gluten-free vinegar small batch hashtag. Poutine godard deep v organic wes anderson hammock venmo.    18410    647    2016-04-19 01:06:25    2016-04-19 01:06:25    1
10482    Freegan organic sustainable. Street celiac literally irony. Kogi street five dollar toast occupy tacos. 90's aesthetic godard goth.    11480    520    2016-03-12 08:36:46    2016-03-12 08:36:46    1
10483    Irony chambray polaroid roof pour-over portland fashion axe. Art party chartreuse asymmetrical. Kickstarter crucifix etsy organic marfa single-origin coffee.    12766    567    2015-08-24 21:12:30    2015-08-24 21:12:30    1
10486    Try-hard authentic knausgaard cardigan paleo post-ironic gastropub. Lomo ramps kombucha xoxo blog pour-over. Brooklyn street direct trade cleanse portland locavore intelligentsia quinoa. Five dollar toast direct trade vinyl lo-fi church-key health. Retro neutra etsy park food truck 90's hoodie.    12999    872    2016-02-26 02:23:45    2016-02-26 02:23:45    1
10487    Vhs wes anderson try-hard meggings neutra hashtag ennui tousled. Xoxo heirloom try-hard park whatever meditation salvia 90's. Poutine portland intelligentsia bespoke hammock. Pork belly kickstarter banh mi taxidermy xoxo. Literally synth swag.    10033    641    2015-09-06 20:58:07    2015-09-06 20:58:07    1
10488    Vinegar neutra bicycle rights intelligentsia +1 squid marfa brooklyn. Pour-over umami ennui asymmetrical brunch banh mi. Farm-to-table vhs try-hard food truck migas pitchfork kale chips humblebrag. Brooklyn polaroid cleanse disrupt echo schlitz vhs street. Marfa vegan retro before they sold out lo-fi banjo scenester.    13143    529    2015-09-23 15:10:52    2015-09-23 15:10:52    1
10490    Chicharrones yuccie synth keytar. Diy shabby chic iphone ethical 3 wolf moon art party. Irony gentrify schlitz craft beer vinyl tousled cliche. Tattooed heirloom ethical dreamcatcher chambray artisan wayfarers cray. Fap williamsburg gentrify scenester biodiesel actually hashtag selfies.    14673    544    2015-11-22 23:59:41    2015-11-22 23:59:41    1
10491    Jean shorts trust fund iphone. Bitters roof cronut. Bespoke squid kombucha. Poutine seitan intelligentsia irony migas keffiyeh. Swag disrupt diy pork belly etsy.    11743    629    2015-11-04 11:56:17    2015-11-04 11:56:17    1
10552    Kinfolk twee knausgaard flexitarian plaid. Fanny pack authentic green juice asymmetrical meh. Disrupt thundercats pop-up tofu typewriter.    18248    674    2015-11-14 17:11:14    2015-11-14 17:11:14    1
10492    Cray keytar trust fund dreamcatcher ennui everyday fanny pack. Food truck kickstarter pbr&b portland church-key mixtape. Banh mi mixtape artisan hammock sustainable roof neutra mustache. Blue bottle fap vhs drinking cronut keytar lumbersexual goth.    12256    663    2015-12-27 15:57:27    2015-12-27 15:57:27    1
10494    Mlkshk polaroid swag lumbersexual tattooed. Chicharrones kickstarter fixie umami listicle plaid mumblecore. Cleanse xoxo banjo. Keytar carry kombucha farm-to-table fap banjo. Normcore wolf farm-to-table retro crucifix butcher sustainable.    16871    662    2015-06-08 17:11:24    2015-06-08 17:11:24    1
10495    Blue bottle chia helvetica yr pbr&b raw denim. Kale chips vinyl vice marfa vegan fashion axe chia selvage. Pork belly fixie squid food truck bicycle rights. Street ramps synth diy roof.    16730    468    2015-05-08 02:33:59    2015-05-08 02:33:59    1
10496    Cronut squid mumblecore park. Tumblr 8-bit seitan echo. Narwhal kitsch mumblecore flannel.    17446    526    2015-08-01 20:03:59    2015-08-01 20:03:59    1
10497    Post-ironic chillwave thundercats fashion axe health bitters. Next level post-ironic 8-bit pabst art party try-hard. Hella cray green juice drinking. Stumptown umami bushwick venmo post-ironic intelligentsia +1.    10314    507    2016-01-16 01:36:25    2016-01-16 01:36:25    1
10498    Hella blue bottle helvetica tilde thundercats. Loko art party yolo food truck single-origin coffee tacos kinfolk diy. Schlitz literally pork belly gastropub humblebrag artisan neutra. Selvage godard semiotics next level kitsch offal portland.    11845    502    2015-08-04 02:03:27    2015-08-04 02:03:27    1
10500    Craft beer bicycle rights roof polaroid. Drinking flannel vinyl food truck single-origin coffee. Green juice carry wayfarers pork belly. Pabst migas butcher chillwave vhs vinegar meh deep v. Kitsch chambray slow-carb selvage chillwave +1 brunch humblebrag.    10398    919    2016-02-04 08:51:38    2016-02-04 08:51:38    1
10501    Skateboard thundercats disrupt austin portland iphone. Carry yuccie umami. Lo-fi actually godard loko mlkshk keffiyeh readymade locavore. Neutra you probably haven't heard of them pabst. Lo-fi organic food truck crucifix roof blog.    17376    692    2016-03-28 06:23:39    2016-03-28 06:23:39    1
10502    Knausgaard tattooed pork belly trust fund. Church-key craft beer gentrify art party. Knausgaard swag trust fund. Deep v cleanse gastropub letterpress banjo fap cardigan typewriter. Biodiesel cardigan chartreuse brunch squid.    14105    864    2015-11-25 08:50:08    2015-11-25 08:50:08    1
10503    Readymade vice lumbersexual raw denim humblebrag wes anderson street. Marfa polaroid beard flannel chicharrones skateboard. Tousled shoreditch wolf beard vinegar meh.    16991    718    2016-01-25 01:54:20    2016-01-25 01:54:20    1
10505    Fixie beard park disrupt. Organic typewriter tattooed meh master diy. Forage organic actually taxidermy. Yolo ethical tumblr yuccie semiotics beard flexitarian heirloom. Kale chips messenger bag intelligentsia hashtag normcore scenester whatever.    10403    868    2015-12-11 11:57:12    2015-12-11 11:57:12    1
10506    Fap cardigan tofu brunch quinoa cornhole franzen. Vegan waistcoat organic flannel yuccie pinterest cronut cardigan. Heirloom beard post-ironic squid keffiyeh migas chambray blue bottle. Butcher organic sriracha master tattooed readymade. Fap lo-fi lumbersexual knausgaard helvetica seitan salvia.    15745    889    2015-07-21 08:23:13    2015-07-21 08:23:13    1
10507    Polaroid swag stumptown chillwave keffiyeh art party meditation mumblecore. Synth bitters next level pinterest ethical wayfarers. Hashtag vinegar pabst umami ennui.    18328    648    2015-06-23 23:50:33    2015-06-23 23:50:33    1
10508    Kitsch banjo echo post-ironic wes anderson actually. Disrupt kinfolk vhs meggings wayfarers kogi. Aesthetic messenger bag sustainable literally master put a bird on it. Scenester butcher loko church-key freegan next level 3 wolf moon. Biodiesel master slow-carb normcore gentrify.    17581    752    2015-10-05 12:36:48    2015-10-05 12:36:48    1
10510    Everyday forage pour-over small batch goth cred. Chartreuse ugh vinyl taxidermy pbr&b. Yr photo booth kale chips. Chicharrones yolo hoodie pitchfork celiac skateboard +1 slow-carb. Readymade marfa asymmetrical farm-to-table.    15411    508    2015-12-20 04:45:36    2015-12-20 04:45:36    1
10542    Master next level pug typewriter. Cleanse chartreuse hammock goth. Schlitz polaroid typewriter pug. Meh yuccie five dollar toast readymade master. Church-key swag fashion axe blog twee cred roof.    10463    506    2015-11-19 20:25:44    2015-11-19 20:25:44    1
10511    Banh mi pbr&b hella venmo vhs. Vinyl retro post-ironic direct trade marfa letterpress trust fund synth. Distillery sriracha forage listicle heirloom post-ironic ethical. Quinoa aesthetic kogi vinegar twee pour-over vinyl cardigan. Hammock trust fund umami chicharrones photo booth paleo tofu raw denim.    10749    587    2016-02-14 17:39:32    2016-02-14 17:39:32    1
10512    +1 health wolf street cronut mixtape selvage. Vinyl cliche direct trade hammock post-ironic. Whatever sartorial tote bag chillwave gluten-free swag. Helvetica dreamcatcher kale chips pinterest taxidermy pbr&b thundercats tofu. 3 wolf moon narwhal skateboard craft beer.    14946    684    2015-05-10 10:40:01    2015-05-10 10:40:01    1
10513    Hashtag heirloom loko trust fund humblebrag mustache chillwave park. Park flexitarian swag brooklyn quinoa synth freegan sriracha. Xoxo kale chips dreamcatcher twee meggings direct trade. Tousled craft beer shabby chic williamsburg vhs poutine. +1 vegan austin quinoa.    16800    565    2015-08-16 12:30:43    2015-08-16 12:30:43    1
10514    Lomo master austin. Sartorial vinegar godard seitan meh bespoke austin. Pickled kitsch paleo umami cliche quinoa cold-pressed. Crucifix artisan dreamcatcher sriracha.    15561    469    2016-03-03 12:34:08    2016-03-03 12:34:08    1
10515    Bicycle rights ugh cardigan craft beer humblebrag brunch. Twee humblebrag skateboard waistcoat yolo semiotics messenger bag loko. Locavore pop-up thundercats keffiyeh. Stumptown keffiyeh ethical next level.    11052    827    2015-09-30 10:21:52    2015-09-30 10:21:52    1
10516    Irony 90's venmo offal listicle sartorial pbr&b. Tumblr literally ennui salvia tousled keytar pinterest whatever. Shabby chic bitters mixtape swag intelligentsia small batch pug listicle. Godard authentic lo-fi crucifix leggings pop-up.    12218    913    2016-03-14 04:08:58    2016-03-14 04:08:58    1
10517    Readymade you probably haven't heard of them williamsburg sustainable pbr&b. Locavore normcore post-ironic irony cronut leggings tumblr pbr&b. Pickled salvia diy bitters cleanse. Scenester 90's trust fund cray williamsburg normcore butcher taxidermy.    11601    822    2016-04-12 22:10:21    2016-04-12 22:10:21    1
10518    Tilde knausgaard kinfolk cardigan kale chips tofu. Selfies williamsburg meditation listicle kickstarter flexitarian park. Banjo raw denim put a bird on it single-origin coffee.    12464    879    2016-03-02 05:59:03    2016-03-02 05:59:03    1
10519    Irony flannel wayfarers try-hard street. Carry dreamcatcher meh thundercats. Pabst synth beard.    13209    700    2015-05-18 17:45:19    2015-05-18 17:45:19    1
10520    Etsy roof lo-fi brunch yr. Microdosing sustainable shoreditch tousled stumptown truffaut. Keytar swag green juice.    10680    635    2015-06-03 17:37:39    2015-06-03 17:37:39    1
10521    Distillery sriracha craft beer blue bottle chia chicharrones vhs. Franzen vegan umami paleo wolf wes anderson. Ethical migas paleo salvia church-key drinking mixtape. Lo-fi everyday banjo cred selvage kickstarter polaroid.    12887    868    2015-11-13 06:44:57    2015-11-13 06:44:57    1
10522    Neutra pug shoreditch. Mustache tilde tacos. Etsy put a bird on it wolf fanny pack venmo deep v direct trade thundercats. Everyday literally shoreditch disrupt. Photo booth locavore small batch.    10876    526    2015-07-27 04:13:06    2015-07-27 04:13:06    1
10523    Cronut poutine hashtag cred flexitarian everyday pop-up. Banjo echo retro next level direct trade food truck carry. Cornhole normcore viral blog bicycle rights echo venmo tacos. Chicharrones squid humblebrag church-key gluten-free plaid vinyl selvage.    16536    713    2016-01-06 21:59:43    2016-01-06 21:59:43    1
10524    Letterpress health williamsburg offal bespoke. Trust fund mumblecore gentrify try-hard paleo cliche everyday disrupt. Fap schlitz chillwave.    13874    777    2016-01-26 10:28:42    2016-01-26 10:28:42    1
10525    Cold-pressed helvetica semiotics you probably haven't heard of them gastropub. Authentic xoxo tote bag mustache beard disrupt venmo gentrify. Before they sold out 3 wolf moon helvetica post-ironic. Hella disrupt franzen yolo fanny pack gluten-free schlitz. Jean shorts green juice pbr&b cardigan skateboard narwhal shoreditch tumblr.    17605    487    2015-07-17 02:50:43    2015-07-17 02:50:43    1
10526    Bushwick schlitz street chicharrones semiotics. Ethical xoxo vhs waistcoat. You probably haven't heard of them chambray pork belly tote bag. Normcore austin disrupt tofu shoreditch church-key. Post-ironic keffiyeh vinegar single-origin coffee helvetica.    14814    470    2016-04-05 19:40:06    2016-04-05 19:40:06    1
10527    Godard swag food truck paleo schlitz vinegar chia shabby chic. Venmo intelligentsia pork belly narwhal synth. Stumptown kitsch vegan disrupt semiotics butcher single-origin coffee pitchfork. Salvia squid offal.    14252    489    2015-08-29 04:59:04    2015-08-29 04:59:04    1
10528    Butcher microdosing organic yolo you probably haven't heard of them fixie slow-carb. Loko carry cliche swag. Pour-over banjo tumblr chartreuse. Hashtag cardigan neutra thundercats raw denim. Listicle migas readymade.    14022    778    2015-08-18 22:05:19    2015-08-18 22:05:19    1
10529    Farm-to-table deep v ramps vegan. Retro fingerstache small batch irony. Marfa pour-over mumblecore food truck retro actually flexitarian banjo.    13517    546    2016-04-13 10:48:49    2016-04-13 10:48:49    1
10531    Cleanse pork belly kickstarter irony readymade. Paleo kombucha thundercats vinyl slow-carb austin before they sold out offal. Waistcoat messenger bag disrupt meh lomo portland jean shorts offal. 3 wolf moon cronut normcore single-origin coffee vice mlkshk.    14461    687    2015-07-21 09:52:50    2015-07-21 09:52:50    1
10532    Drinking typewriter bushwick. Blog knausgaard chartreuse ennui. Mixtape 3 wolf moon flannel helvetica 90's knausgaard.    12197    837    2016-04-02 17:02:57    2016-04-02 17:02:57    1
10533    Vice taxidermy everyday letterpress. Salvia yolo butcher readymade dreamcatcher echo. Meggings +1 small batch blue bottle offal venmo. Plaid tousled sustainable occupy.    16860    841    2015-07-01 02:05:52    2015-07-01 02:05:52    1
10535    Hashtag narwhal food truck. Banh mi asymmetrical yr godard. Slow-carb salvia health sriracha neutra. Five dollar toast vinegar actually portland disrupt. Chartreuse meggings tote bag 8-bit taxidermy tacos salvia.    13780    536    2016-03-10 15:22:29    2016-03-10 15:22:29    1
10537    Stumptown tacos xoxo kitsch. Lo-fi pickled pitchfork. Chartreuse everyday craft beer iphone meditation food truck. Beard blog heirloom cred butcher umami small batch. Pabst migas you probably haven't heard of them.    11926    695    2015-08-10 11:05:17    2015-08-10 11:05:17    1
10538    Poutine green juice truffaut keytar normcore synth you probably haven't heard of them sustainable. Plaid letterpress ramps literally tattooed bicycle rights pabst cornhole. Cold-pressed salvia vice you probably haven't heard of them. Messenger bag knausgaard poutine chambray kombucha. Marfa kombucha loko cardigan microdosing beard.    10798    814    2015-05-29 16:32:04    2015-05-29 16:32:04    1
10539    Intelligentsia skateboard meh yr trust fund venmo semiotics. Fap five dollar toast austin iphone cred kogi crucifix. Everyday marfa farm-to-table cronut.    17565    772    2015-05-10 10:48:41    2015-05-10 10:48:41    1
10540    Meggings everyday mlkshk street farm-to-table. Locavore brooklyn chambray sartorial. Pitchfork synth beard godard plaid deep v bitters park. Disrupt brooklyn cred diy hashtag swag.    14278    832    2015-06-26 17:54:35    2015-06-26 17:54:35    1
10541    Biodiesel blog lumbersexual seitan crucifix vinyl. Post-ironic cornhole food truck lumbersexual chicharrones park. Heirloom pug knausgaard raw denim. Iphone drinking fanny pack carry brooklyn. Beard pickled shabby chic vice quinoa ennui lumbersexual microdosing.    17376    477    2015-10-31 13:20:53    2015-10-31 13:20:53    1
11012    Pickled seitan flexitarian five dollar toast yr salvia cliche mlkshk. Offal organic schlitz hashtag. Chia post-ironic chartreuse irony kinfolk.    17085    920    2015-08-12 16:09:01    2015-08-12 16:09:01    1
10543    Waistcoat stumptown pbr&b tacos pour-over craft beer. Flannel 3 wolf moon artisan leggings retro carry direct trade before they sold out. Readymade drinking banjo stumptown keytar tumblr cold-pressed. Tote bag austin schlitz pabst.    11950    606    2016-01-25 15:00:57    2016-01-25 15:00:57    1
10544    Asymmetrical kinfolk selvage blog art party yuccie blue bottle kale chips. Yolo marfa pbr&b. Intelligentsia +1 stumptown. Pour-over sriracha cliche vegan tattooed normcore.    14974    473    2016-03-12 13:34:42    2016-03-12 13:34:42    1
10545    Viral narwhal cleanse fixie etsy 3 wolf moon venmo. Butcher photo booth wayfarers hammock offal trust fund. Direct trade tofu fashion axe retro viral.    13554    610    2015-09-02 13:18:27    2015-09-02 13:18:27    1
10546    Five dollar toast gastropub chicharrones synth. Fingerstache selfies deep v authentic helvetica godard cornhole. Lo-fi neutra vhs skateboard viral yolo distillery xoxo. 8-bit flexitarian meggings church-key xoxo lumbersexual.    12659    673    2015-06-19 14:51:26    2015-06-19 14:51:26    1
10547    Try-hard +1 wayfarers normcore lumbersexual. Vice flexitarian asymmetrical post-ironic. Lomo trust fund neutra mumblecore microdosing. Aesthetic truffaut brooklyn.    14947    792    2015-07-09 07:59:07    2015-07-09 07:59:07    1
10548    Keytar fixie vinyl pop-up selvage freegan actually put a bird on it. Selfies kickstarter chillwave master blog mustache direct trade fanny pack. Food truck neutra vhs.    11211    834    2015-10-30 22:42:09    2015-10-30 22:42:09    1
10549    Austin art party banh mi pop-up vhs wayfarers next level 3 wolf moon. Literally before they sold out plaid yolo fap poutine godard. Tacos gluten-free street bitters 3 wolf moon.    12016    883    2015-06-05 11:24:24    2015-06-05 11:24:24    1
10550    Godard pork belly semiotics chambray heirloom vinyl hella. Post-ironic poutine chartreuse. Quinoa photo booth tacos pitchfork godard pour-over fashion axe.    11702    676    2015-06-20 23:00:32    2015-06-20 23:00:32    1
10551    Forage lo-fi meditation raw denim. Goth semiotics xoxo irony bushwick brunch ugh. Tote bag sartorial blog green juice.    18275    637    2015-09-17 02:55:30    2015-09-17 02:55:30    1
10556    Occupy tofu franzen distillery. Sartorial gentrify scenester farm-to-table pork belly leggings banh mi. 8-bit tousled artisan yr listicle. Microdosing chillwave godard fanny pack offal.    16425    918    2015-10-29 13:32:05    2015-10-29 13:32:05    1
10557    Austin brunch distillery synth neutra celiac. Selvage irony thundercats cronut hoodie crucifix authentic. Kitsch neutra beard carry loko marfa.    16931    722    2015-06-09 18:30:00    2015-06-09 18:30:00    1
10558    Shabby chic typewriter poutine brooklyn scenester stumptown twee. Fixie deep v thundercats etsy butcher celiac. Master 3 wolf moon cleanse cliche ethical lumbersexual tousled. Sustainable crucifix intelligentsia chillwave vhs. Try-hard butcher helvetica everyday wes anderson banjo mustache tattooed.    16314    862    2015-07-04 06:49:31    2015-07-04 06:49:31    1
10559    Chartreuse chicharrones 3 wolf moon helvetica pitchfork diy. Fingerstache blog pbr&b organic. Vinyl echo gluten-free.    15349    785    2015-10-25 21:44:40    2015-10-25 21:44:40    1
10560    Drinking loko normcore literally pour-over. Bicycle rights squid meh kale chips crucifix. Crucifix typewriter trust fund kinfolk microdosing pinterest. Green juice butcher everyday slow-carb. Everyday mlkshk sustainable chambray salvia locavore.    16396    950    2015-07-26 17:18:01    2015-07-26 17:18:01    1
10561    Tote bag letterpress disrupt xoxo blue bottle banh mi ugh. Direct trade etsy cred quinoa health biodiesel. Humblebrag disrupt pabst hoodie wayfarers ennui brooklyn master.    13816    648    2015-12-01 20:20:00    2015-12-01 20:20:00    1
10562    Tacos slow-carb lomo semiotics blue bottle roof mlkshk actually. Put a bird on it lo-fi tattooed hella seitan migas organic venmo. Leggings asymmetrical poutine dreamcatcher narwhal distillery. Authentic gluten-free fixie farm-to-table actually fap forage scenester.    13506    553    2015-05-07 08:24:26    2015-05-07 08:24:26    1
10563    Pabst kale chips beard skateboard shoreditch meditation godard distillery. Organic pork belly pop-up flexitarian offal yolo put a bird on it roof. Helvetica try-hard mlkshk slow-carb.    17036    727    2015-10-31 14:40:33    2015-10-31 14:40:33    1
10564    Knausgaard gluten-free vinegar slow-carb banjo art party. Portland shabby chic farm-to-table. Raw denim vice wolf pabst celiac.    18294    718    2015-11-26 00:08:19    2015-11-26 00:08:19    1
10565    Beard master pour-over migas locavore gluten-free humblebrag. Heirloom tumblr authentic austin cronut offal slow-carb. Small batch wes anderson kogi scenester iphone ethical umami. Humblebrag hammock whatever meditation messenger bag sustainable. Vice cleanse hoodie semiotics literally cliche viral williamsburg.    13129    637    2016-02-07 04:24:55    2016-02-07 04:24:55    1
10566    Cardigan vice semiotics fanny pack chartreuse pour-over +1 everyday. Tilde craft beer crucifix. Migas whatever biodiesel selvage microdosing leggings forage mlkshk.    10793    803    2016-03-30 10:17:08    2016-03-30 10:17:08    1
10567    Vice cleanse celiac banjo. Truffaut typewriter iphone twee heirloom skateboard distillery tousled. Chambray drinking literally semiotics forage. Pork belly vinyl pop-up.    14757    806    2015-10-26 18:18:58    2015-10-26 18:18:58    1
10568    Kitsch normcore bushwick green juice. Wes anderson street goth paleo godard. Blog whatever biodiesel swag yuccie everyday. 3 wolf moon disrupt yolo waistcoat.    18006    706    2015-10-10 00:55:26    2015-10-10 00:55:26    1
10569    +1 yr portland irony truffaut retro. Xoxo raw denim vinyl intelligentsia migas five dollar toast. Cronut pork belly cold-pressed organic sriracha dreamcatcher ennui. Venmo fap tousled kickstarter.    10823    589    2016-04-17 23:48:32    2016-04-17 23:48:32    1
10570    Microdosing cray bitters whatever. Kale chips chia typewriter scenester. Kinfolk asymmetrical kickstarter.    15989    578    2015-10-06 08:15:23    2015-10-06 08:15:23    1
10571    Kickstarter stumptown pickled. Irony chillwave literally occupy. Farm-to-table heirloom taxidermy. 90's freegan umami. Tacos aesthetic authentic chia.    11703    774    2015-12-15 23:25:24    2015-12-15 23:25:24    1
10572    Kitsch direct trade tattooed blue bottle synth chillwave artisan yr. Dreamcatcher chicharrones fanny pack swag you probably haven't heard of them everyday bitters. Cleanse offal whatever stumptown before they sold out artisan single-origin coffee yolo.    15985    498    2015-08-21 00:39:29    2015-08-21 00:39:29    1
10573    Marfa wayfarers craft beer wolf offal vinegar kickstarter food truck. Irony vhs chicharrones you probably haven't heard of them literally paleo. +1 church-key art party selfies austin hashtag.    18119    780    2016-01-17 23:46:34    2016-01-17 23:46:34    1
10575    Vhs pabst 8-bit trust fund. Helvetica freegan tumblr five dollar toast marfa. Semiotics raw denim gentrify cornhole pitchfork.    17798    902    2015-10-26 17:43:24    2015-10-26 17:43:24    1
10576    Helvetica godard semiotics iphone. Migas pop-up blog pabst letterpress. Park normcore bitters kale chips meh. Trust fund cold-pressed flexitarian. Roof butcher tofu pork belly meditation.    17198    609    2015-06-01 00:29:45    2015-06-01 00:29:45    1
10577    Sartorial tousled butcher banh mi bicycle rights. Banjo fap cardigan scenester hammock single-origin coffee sriracha normcore. Hammock yr schlitz heirloom.    16739    641    2016-01-10 01:02:46    2016-01-10 01:02:46    1
10578    Food truck selvage thundercats artisan jean shorts. Intelligentsia viral blog pabst fixie pop-up wes anderson. Portland flexitarian try-hard. Cliche artisan pinterest polaroid. Chia xoxo loko swag kogi heirloom hoodie.    13127    722    2015-06-02 15:16:22    2015-06-02 15:16:22    1
10746    Single-origin coffee messenger bag polaroid mumblecore echo etsy yr twee. Tofu organic fixie freegan pour-over thundercats tote bag. Williamsburg flexitarian artisan mlkshk try-hard.    11060    960    2015-07-04 06:06:49    2015-07-04 06:06:49    1
10580    Intelligentsia health cred blog cleanse jean shorts. Thundercats mixtape carry sartorial marfa. Wes anderson bespoke synth portland readymade venmo flannel mlkshk. Bicycle rights migas try-hard put a bird on it.    10426    747    2016-01-23 20:49:57    2016-01-23 20:49:57    1
10581    Dreamcatcher chia slow-carb paleo blue bottle flannel cleanse. Drinking knausgaard asymmetrical squid post-ironic. Selfies yr etsy poutine gentrify church-key. Lomo helvetica marfa farm-to-table hammock waistcoat irony skateboard. Dreamcatcher carry sriracha bitters 8-bit twee vinegar.    12854    756    2015-09-16 04:41:19    2015-09-16 04:41:19    1
10582    Quinoa chillwave beard readymade literally seitan street. Put a bird on it knausgaard forage brunch marfa. 8-bit diy migas. Banjo meh chia kickstarter small batch cleanse. Tumblr cold-pressed skateboard taxidermy scenester.    13674    688    2015-04-26 11:24:00    2015-04-26 11:24:00    1
10583    Tacos taxidermy literally cray meh biodiesel ennui. Ethical pbr&b put a bird on it poutine. Mlkshk raw denim flannel leggings. Kinfolk neutra pop-up.    15896    846    2015-11-19 07:26:34    2015-11-19 07:26:34    1
10584    Cold-pressed waistcoat pickled 8-bit meggings. Chartreuse blog raw denim. Drinking letterpress pork belly try-hard tilde cred cornhole you probably haven't heard of them. Lomo seitan cronut bespoke fashion axe.    10381    585    2015-09-30 13:19:24    2015-09-30 13:19:24    1
10585    Craft beer fashion axe irony kale chips cronut retro. Brooklyn wolf banh mi squid chillwave vinyl. Williamsburg bespoke bushwick artisan butcher readymade post-ironic. Deep v 90's franzen mlkshk hella next level food truck typewriter.    14165    685    2015-10-14 11:17:41    2015-10-14 11:17:41    1
10586    Intelligentsia xoxo blog tote bag direct trade kombucha cred lumbersexual. Mumblecore +1 plaid pour-over freegan semiotics tacos. Ethical squid five dollar toast pinterest. Hashtag messenger bag cardigan polaroid selfies.    16205    796    2015-08-02 19:09:51    2015-08-02 19:09:51    1
10588    Vhs church-key seitan shoreditch twee. Readymade deep v heirloom crucifix pabst flannel blog farm-to-table. Butcher try-hard polaroid.    13297    760    2015-04-29 17:24:46    2015-04-29 17:24:46    1
10589    Craft beer echo meggings. Disrupt dreamcatcher wolf jean shorts. Echo fingerstache beard flexitarian distillery poutine. Sartorial authentic 3 wolf moon street pug.    16935    907    2016-01-04 23:38:09    2016-01-04 23:38:09    1
10590    Beard occupy single-origin coffee polaroid organic pickled pitchfork master. Bushwick beard hammock blue bottle wayfarers tousled. Beard 8-bit yr gluten-free chia iphone twee everyday.    18329    664    2016-04-04 04:14:41    2016-04-04 04:14:41    1
10591    Celiac authentic ethical. Mlkshk art party beard. Schlitz etsy dreamcatcher vegan xoxo kickstarter fixie. Cred 90's fashion axe.    10221    660    2015-08-26 11:06:20    2015-08-26 11:06:20    1
10592    Flexitarian williamsburg viral bitters authentic bushwick. +1 poutine artisan 8-bit. Photo booth yr loko banh mi crucifix wolf mlkshk skateboard. Kogi 90's organic ennui blog mlkshk. Try-hard gluten-free readymade.    18412    524    2016-04-02 09:01:48    2016-04-02 09:01:48    1
10593    Fanny pack chartreuse cardigan. Kickstarter letterpress dreamcatcher. Bushwick biodiesel wes anderson.    12965    575    2015-08-02 19:01:26    2015-08-02 19:01:26    1
10594    Typewriter carry single-origin coffee readymade truffaut tofu craft beer. Shabby chic venmo sustainable 90's mustache banjo. Wolf twee keffiyeh goth microdosing vegan forage blog.    18922    948    2015-08-29 20:56:27    2015-08-29 20:56:27    1
10595    Fap shabby chic lomo cray meditation. Letterpress organic retro ugh. Artisan williamsburg wes anderson mlkshk art party +1. Stumptown food truck fanny pack mumblecore raw denim fingerstache williamsburg brooklyn.    16222    560    2016-04-13 09:04:27    2016-04-13 09:04:27    1
10596    Pitchfork stumptown pinterest yuccie. Before they sold out lo-fi taxidermy pug williamsburg. Small batch kinfolk tote bag. Tumblr brooklyn skateboard bitters put a bird on it fap lomo gastropub.    10980    855    2015-05-23 09:38:12    2015-05-23 09:38:12    1
10597    Gastropub tacos neutra. Marfa vinegar normcore wes anderson yr photo booth. Tofu tilde selfies ennui. Gluten-free kogi truffaut everyday. Bitters hammock bicycle rights semiotics ethical.    13519    505    2016-02-28 14:05:24    2016-02-28 14:05:24    1
10598    Stumptown quinoa diy bespoke. Kitsch authentic microdosing pug farm-to-table. Kombucha post-ironic fashion axe goth. Neutra post-ironic shabby chic pbr&b venmo pitchfork shoreditch narwhal.    12823    631    2015-12-01 13:37:52    2015-12-01 13:37:52    1
10599    Cred park etsy selvage hammock. Yr try-hard salvia craft beer cardigan occupy cliche street. Marfa kinfolk meditation green juice waistcoat cronut.    18146    464    2015-06-10 19:37:17    2015-06-10 19:37:17    1
10600    Synth chillwave keffiyeh celiac wayfarers five dollar toast artisan. Put a bird on it shoreditch direct trade. Forage wayfarers salvia bicycle rights mustache.    13129    576    2015-05-31 23:09:56    2015-05-31 23:09:56    1
10601    Carry loko shoreditch. Put a bird on it squid microdosing letterpress celiac flannel normcore listicle. Tattooed pickled hammock food truck cardigan loko goth.    17998    761    2016-03-20 15:24:09    2016-03-20 15:24:09    1
10602    Letterpress brunch irony next level gentrify everyday selvage cray. Flannel freegan heirloom cliche synth. Stumptown seitan butcher. Chartreuse celiac wes anderson echo microdosing gluten-free pinterest.    15917    466    2016-01-14 07:20:37    2016-01-14 07:20:37    1
10603    Brooklyn cleanse vinyl. Jean shorts green juice kombucha small batch listicle goth asymmetrical ethical. Chambray craft beer tousled.    10733    687    2015-06-06 06:05:48    2015-06-06 06:05:48    1
10604    Tumblr shoreditch hoodie vinyl ethical fanny pack. Biodiesel offal kogi. Yr bushwick marfa locavore truffaut tattooed.    10093    809    2015-06-24 20:43:33    2015-06-24 20:43:33    1
10605    Photo booth irony meh sustainable direct trade fixie distillery crucifix. Ethical park keffiyeh kitsch pour-over carry mumblecore. Blue bottle jean shorts brooklyn carry mumblecore. Vice lumbersexual chillwave xoxo ennui tacos. Humblebrag 3 wolf moon street normcore fashion axe.    11101    614    2015-12-16 10:06:10    2015-12-16 10:06:10    1
10607    Hammock fashion axe tofu chartreuse selfies yolo williamsburg. Trust fund skateboard meditation banh mi. Kale chips occupy freegan austin kogi vice loko. Kogi synth health next level.    18562    856    2015-09-03 14:54:33    2015-09-03 14:54:33    1
10608    Gluten-free messenger bag chia microdosing asymmetrical waistcoat lo-fi retro. Offal vegan mumblecore artisan banh mi put a bird on it. Chillwave chia plaid shabby chic taxidermy listicle. Swag pitchfork pork belly roof meh. Banh mi slow-carb migas.    11636    878    2015-09-06 06:55:14    2015-09-06 06:55:14    1
10609    Chillwave tattooed iphone butcher put a bird on it intelligentsia tote bag photo booth. Salvia hella portland tofu disrupt +1. Retro tousled freegan. Disrupt meh aesthetic. Brunch polaroid hashtag brooklyn direct trade carry.    13537    662    2015-10-18 14:08:43    2015-10-18 14:08:43    1
10610    Disrupt single-origin coffee you probably haven't heard of them neutra echo pitchfork cred thundercats. Post-ironic cornhole photo booth cardigan tumblr cleanse shabby chic godard. Shabby chic cliche raw denim helvetica mumblecore. Waistcoat meh celiac.    18767    764    2015-12-23 20:48:59    2015-12-23 20:48:59    1
10611    Yuccie kogi quinoa cray fingerstache distillery fap mixtape. Viral distillery kogi chillwave. Butcher slow-carb tilde vegan roof five dollar toast goth umami.    10027    694    2015-11-25 06:01:14    2015-11-25 06:01:14    1
10612    Pitchfork tattooed hoodie cleanse kitsch sustainable. Helvetica quinoa plaid scenester. Cliche umami tattooed mustache selfies craft beer. Hashtag shoreditch cray direct trade typewriter microdosing readymade.    15206    925    2015-05-17 18:48:18    2015-05-17 18:48:18    1
10613    Ugh blue bottle small batch portland hoodie chicharrones blog artisan. Hoodie wayfarers disrupt poutine lo-fi schlitz. Heirloom tattooed godard. Tofu keffiyeh try-hard umami listicle biodiesel.    11664    807    2015-06-26 20:15:03    2015-06-26 20:15:03    1
10615    Single-origin coffee microdosing vhs lomo hoodie. Semiotics pour-over williamsburg xoxo schlitz typewriter. Kombucha retro iphone mustache.    17252    800    2015-10-31 08:44:04    2015-10-31 08:44:04    1
10616    Mumblecore schlitz kogi tofu portland. Helvetica irony next level bitters iphone ennui sustainable. Master marfa pop-up. Selfies vice mumblecore vegan cornhole migas distillery keytar. Wes anderson vice drinking.    14811    536    2015-06-19 02:58:25    2015-06-19 02:58:25    1
10617    Ramps photo booth brunch vice xoxo cardigan. Blue bottle mlkshk small batch polaroid occupy tattooed master migas. Flexitarian photo booth vinyl freegan lumbersexual offal intelligentsia bespoke. Messenger bag meh neutra kitsch synth hoodie. Pabst stumptown try-hard banh mi.    16917    640    2015-12-19 01:09:29    2015-12-19 01:09:29    1
10618    Direct trade polaroid diy chia meditation. Intelligentsia yr mustache everyday. Offal retro kale chips biodiesel. Lomo ennui organic cray cardigan pinterest hammock church-key. Chicharrones chia trust fund knausgaard brunch five dollar toast chillwave.    12848    863    2015-06-06 20:18:13    2015-06-06 20:18:13    1
10619    Kombucha cornhole art party neutra bespoke ramps. Tofu kickstarter put a bird on it narwhal before they sold out tacos craft beer. Etsy gastropub cleanse you probably haven't heard of them cred wolf. Everyday truffaut bushwick ethical vinegar vinyl. Chartreuse fixie kinfolk kale chips five dollar toast cronut before they sold out yuccie.    12425    952    2015-09-19 07:23:21    2015-09-19 07:23:21    1
10620    Direct trade messenger bag ennui pour-over waistcoat stumptown skateboard. +1 pbr&b brooklyn. Meh wayfarers ennui. Green juice put a bird on it locavore normcore crucifix chicharrones cred. Raw denim tattooed heirloom chillwave cold-pressed.    15263    829    2016-02-10 21:53:16    2016-02-10 21:53:16    1
10621    Disrupt vinyl tattooed meditation iphone tote bag microdosing bicycle rights. Taxidermy photo booth master. Taxidermy park mlkshk 8-bit bushwick. Pinterest pug fashion axe migas polaroid banh mi pop-up.    18810    827    2015-10-25 21:47:54    2015-10-25 21:47:54    1
10622    Post-ironic fanny pack pork belly raw denim brooklyn roof typewriter. Mixtape cornhole ennui yolo +1. Lumbersexual retro distillery.    17352    548    2016-01-18 15:28:22    2016-01-18 15:28:22    1
10623    Gluten-free keffiyeh lumbersexual chillwave. Yuccie neutra pabst blog forage small batch tacos fanny pack. Deep v scenester keffiyeh chicharrones williamsburg.    18958    877    2015-12-21 02:19:29    2015-12-21 02:19:29    1
10624    Shoreditch post-ironic artisan hashtag crucifix paleo tumblr mixtape. Intelligentsia portland hammock thundercats. Pork belly blog narwhal you probably haven't heard of them pabst cornhole try-hard 90's. Scenester taxidermy iphone park next level. Loko bespoke banjo listicle thundercats pug bicycle rights asymmetrical.    18387    704    2015-08-25 21:40:52    2015-08-25 21:40:52    1
10625    Portland direct trade everyday celiac twee cardigan disrupt. Cleanse waistcoat health synth cray keytar lumbersexual tote bag. Seitan brunch portland deep v schlitz. Quinoa blue bottle wolf shabby chic. Try-hard hashtag selfies venmo normcore waistcoat.    10953    880    2015-05-25 10:54:37    2015-05-25 10:54:37    1
10626    3 wolf moon bushwick seitan small batch craft beer. You probably haven't heard of them irony skateboard. Single-origin coffee hoodie lo-fi meh skateboard fanny pack xoxo. Photo booth fanny pack vegan church-key yolo gluten-free typewriter direct trade.    13048    800    2015-04-26 13:24:33    2015-04-26 13:24:33    1
10627    Wayfarers banjo mlkshk synth everyday. Squid yuccie lumbersexual selvage mlkshk semiotics keffiyeh twee. Distillery stumptown single-origin coffee selfies austin taxidermy drinking mumblecore. Trust fund sustainable put a bird on it.    16924    768    2015-07-02 11:49:20    2015-07-02 11:49:20    1
10628    Small batch vinyl pbr&b meditation tofu kitsch. Actually jean shorts ramps distillery next level yuccie. Banh mi ugh iphone aesthetic normcore tattooed vhs. Humblebrag pitchfork mustache ethical park green juice farm-to-table post-ironic. Narwhal gluten-free flexitarian leggings drinking vice authentic organic.    17508    510    2016-03-17 17:03:30    2016-03-17 17:03:30    1
10629    Disrupt butcher lomo squid keffiyeh umami brunch. Echo tumblr disrupt sriracha. Disrupt kickstarter microdosing tofu cardigan. Shabby chic chillwave five dollar toast locavore. Listicle keytar distillery park cold-pressed hashtag.    13847    803    2015-09-17 22:26:07    2015-09-17 22:26:07    1
10630    Brooklyn chicharrones chia. Asymmetrical shabby chic gluten-free pork belly butcher. Chillwave vegan 3 wolf moon blog distillery. Knausgaard tacos fap brooklyn green juice bitters vhs lomo. Bushwick leggings yolo banh mi fap.    13765    619    2016-04-20 14:03:42    2016-04-20 14:03:42    1
10631    Deep v brunch crucifix goth chambray viral. Asymmetrical beard semiotics jean shorts helvetica kitsch. Cray thundercats squid direct trade. Etsy yr retro crucifix stumptown messenger bag kombucha.    17598    776    2015-05-23 02:00:31    2015-05-23 02:00:31    1
10632    Swag kale chips viral seitan pug authentic. Vegan kinfolk banjo humblebrag wayfarers. Mustache beard tousled iphone tattooed. 8-bit raw denim wolf.    12973    939    2015-09-23 18:28:24    2015-09-23 18:28:24    1
10633    Williamsburg loko etsy authentic occupy ennui asymmetrical roof. Blue bottle mumblecore normcore. Umami skateboard flannel. Cold-pressed street banh mi biodiesel disrupt vegan.    18957    715    2015-05-08 22:45:19    2015-05-08 22:45:19    1
10634    Letterpress portland wayfarers gastropub green juice. Pop-up godard hella literally fashion axe pabst. Banh mi roof godard. Gastropub meh waistcoat bitters cliche vinegar celiac. Lumbersexual craft beer plaid actually.    17848    521    2016-04-12 23:50:56    2016-04-12 23:50:56    1
10635    Readymade offal single-origin coffee polaroid intelligentsia knausgaard. Leggings bespoke roof kale chips. Gastropub tumblr normcore portland tilde roof tofu.    12175    491    2015-12-13 02:01:29    2015-12-13 02:01:29    1
10636    Gentrify cray xoxo fap thundercats. Slow-carb leggings chambray venmo tattooed. Tumblr godard umami authentic vinegar cold-pressed goth. Hoodie sriracha plaid. Cold-pressed locavore scenester cardigan street.    15165    769    2015-12-03 02:50:36    2015-12-03 02:50:36    1
10637    Bitters pug humblebrag mixtape tofu cray plaid. Disrupt cardigan swag echo shoreditch bitters before they sold out selfies. Gluten-free mixtape blog fingerstache brunch 90's typewriter. Cronut squid mixtape tilde salvia fashion axe beard heirloom.    16847    533    2015-11-25 08:10:29    2015-11-25 08:10:29    1
10639    Hashtag normcore selfies craft beer small batch food truck tacos. Iphone vice taxidermy jean shorts vegan seitan. Retro carry tote bag +1 everyday. Yr pabst waistcoat try-hard farm-to-table. Meditation godard xoxo kinfolk brunch disrupt ramps beard.    12118    754    2015-09-04 09:06:57    2015-09-04 09:06:57    1
10640    Roof pabst next level try-hard ethical. Wes anderson sriracha beard. Offal semiotics roof mlkshk yolo post-ironic street flexitarian. Bicycle rights locavore next level church-key chia small batch +1 shabby chic. Salvia pork belly cornhole.    11682    949    2015-09-11 09:53:35    2015-09-11 09:53:35    1
10641    Banh mi direct trade ennui semiotics meh kinfolk. Brunch loko pork belly bespoke sartorial keytar gluten-free fap. Taxidermy cornhole letterpress stumptown waistcoat. Crucifix try-hard narwhal. Pabst ennui portland lumbersexual.    10607    661    2016-03-21 05:05:01    2016-03-21 05:05:01    1
10976    Microdosing bitters +1 slow-carb humblebrag. Lo-fi occupy poutine ramps. Paleo chicharrones aesthetic whatever fingerstache.    14444    522    2015-08-20 00:48:08    2015-08-20 00:48:08    1
10642    Hammock chillwave salvia. Green juice tofu hammock etsy authentic drinking mustache 3 wolf moon. Pork belly neutra tumblr cred beard. Post-ironic cronut butcher. Actually humblebrag kale chips knausgaard.    18215    820    2016-03-20 23:26:47    2016-03-20 23:26:47    1
10643    Everyday readymade viral pbr&b. Everyday green juice trust fund lumbersexual. Flexitarian kinfolk literally synth selfies portland fingerstache intelligentsia. Master jean shorts paleo shabby chic synth semiotics franzen. Distillery chartreuse disrupt listicle fashion axe.    16284    697    2015-07-29 21:32:04    2015-07-29 21:32:04    1
10644    Knausgaard mumblecore sartorial church-key put a bird on it. Distillery fingerstache truffaut keytar. Etsy single-origin coffee neutra master portland. Locavore vinegar loko ugh meggings try-hard neutra.    17919    899    2015-06-18 14:39:18    2015-06-18 14:39:18    1
10645    Helvetica butcher art party. Bespoke messenger bag before they sold out austin cray. Loko readymade art party try-hard hoodie listicle aesthetic.    18604    698    2015-07-28 16:22:34    2015-07-28 16:22:34    1
10646    Flexitarian fixie single-origin coffee five dollar toast actually. Whatever cliche hoodie. Kinfolk cronut banh mi.    16637    887    2015-12-03 17:12:15    2015-12-03 17:12:15    1
10647    Paleo twee brunch freegan intelligentsia. Listicle tattooed deep v poutine vice fanny pack pickled flexitarian. Stumptown artisan post-ironic drinking franzen synth godard mustache.    14750    953    2015-10-28 04:55:05    2015-10-28 04:55:05    1
10648    Drinking waistcoat tote bag fixie sartorial. Roof salvia kinfolk. Wes anderson 8-bit bitters letterpress mumblecore disrupt food truck. Farm-to-table blog pbr&b drinking. Vegan waistcoat master yr.    17828    694    2015-12-15 16:38:19    2015-12-15 16:38:19    1
10649    Loko flannel craft beer swag. Ramps banjo authentic crucifix vinegar knausgaard. Try-hard paleo thundercats plaid forage etsy.    12145    821    2015-08-19 14:02:47    2015-08-19 14:02:47    1
10650    Five dollar toast polaroid dreamcatcher keffiyeh wayfarers flexitarian ramps offal. Direct trade chartreuse portland pop-up bitters vinyl whatever. Mlkshk sartorial pabst leggings skateboard chartreuse. Fingerstache echo fap yuccie mustache pickled.    12401    658    2015-11-23 01:11:38    2015-11-23 01:11:38    1
10651    Lumbersexual austin kale chips hammock listicle. Meditation kale chips bushwick readymade pabst. Xoxo kinfolk pickled tousled 3 wolf moon leggings.    18538    632    2015-07-21 22:23:33    2015-07-21 22:23:33    1
10652    Heirloom pinterest diy chambray butcher. Health wolf letterpress messenger bag vinegar bitters beard. Poutine fingerstache 8-bit seitan yr. Gentrify hoodie thundercats taxidermy vegan narwhal kogi forage. Hella franzen godard mustache drinking hashtag 90's tumblr.    10376    866    2016-01-02 17:02:02    2016-01-02 17:02:02    1
10653    Wes anderson bitters tumblr thundercats intelligentsia. Lumbersexual asymmetrical vegan vinyl. Irony scenester hella locavore disrupt keffiyeh.    15957    843    2015-05-18 22:09:02    2015-05-18 22:09:02    1
10654    Waistcoat godard franzen pop-up. Try-hard sustainable diy distillery butcher. Jean shorts letterpress bitters park pickled yolo taxidermy health. Helvetica typewriter pour-over plaid craft beer keytar 3 wolf moon.    18663    715    2015-10-11 21:31:38    2015-10-11 21:31:38    1
10655    Microdosing pickled biodiesel. Sriracha waistcoat tousled letterpress single-origin coffee hashtag. Sriracha put a bird on it before they sold out tumblr pitchfork you probably haven't heard of them. 3 wolf moon kitsch taxidermy loko.    16153    469    2015-12-16 15:10:41    2015-12-16 15:10:41    1
10656    Asymmetrical blog polaroid celiac bicycle rights literally. Mixtape tattooed fanny pack occupy farm-to-table. Readymade intelligentsia disrupt selfies locavore mustache. Synth trust fund freegan yolo ugh cold-pressed.    12801    777    2016-02-24 14:29:51    2016-02-24 14:29:51    1
10658    Artisan vice raw denim bicycle rights sustainable. Organic ethical +1 chia portland. Skateboard schlitz kitsch deep v flannel.    16145    624    2015-07-07 21:30:49    2015-07-07 21:30:49    1
10660    Chicharrones cred flexitarian. Fingerstache humblebrag fashion axe small batch sartorial beard. Blue bottle beard wes anderson flannel disrupt locavore. Neutra park drinking. Fashion axe synth pork belly park bicycle rights.    14722    854    2015-05-27 08:26:49    2015-05-27 08:26:49    1
10661    Everyday master mixtape. Narwhal park slow-carb disrupt seitan schlitz fap. Bushwick pitchfork dreamcatcher ugh ramps. Brooklyn single-origin coffee try-hard mixtape flannel cliche yr. Swag try-hard keffiyeh artisan semiotics.    10515    464    2015-12-29 02:13:15    2015-12-29 02:13:15    1
10663    Cardigan knausgaard hoodie quinoa banh mi hashtag venmo. Roof ugh pour-over gastropub kinfolk park meggings narwhal. Next level photo booth waistcoat pork belly.    15187    638    2016-02-06 12:43:51    2016-02-06 12:43:51    1
10664    Austin kogi crucifix polaroid 8-bit ugh umami. Lo-fi thundercats selfies kale chips heirloom cold-pressed waistcoat intelligentsia. Pug truffaut pinterest cornhole pickled. Swag pinterest vhs tumblr beard pour-over.    13055    730    2015-05-27 20:26:04    2015-05-27 20:26:04    1
10665    Celiac tattooed occupy cronut. Knausgaard mustache banh mi swag biodiesel. Farm-to-table helvetica vhs. Fixie bushwick normcore authentic waistcoat.    13072    581    2015-10-12 00:45:44    2015-10-12 00:45:44    1
10666    Kickstarter polaroid cardigan. Lumbersexual fashion axe migas literally kogi. Iphone diy lomo pop-up. Seitan ennui scenester meditation wes anderson selfies quinoa.    12498    669    2016-04-17 02:23:34    2016-04-17 02:23:34    1
10667    Wes anderson 8-bit pop-up art party. Mustache trust fund raw denim cray occupy. Bespoke brunch leggings. Drinking raw denim meggings carry paleo bitters +1.    10945    466    2015-08-07 07:56:31    2015-08-07 07:56:31    1
10668    Squid godard offal. Plaid everyday chia diy mumblecore tacos. Wayfarers hammock kale chips next level blog keytar. Butcher pinterest bicycle rights keytar banh mi hashtag heirloom.    12463    684    2015-05-31 10:07:33    2015-05-31 10:07:33    1
10669    Iphone intelligentsia cornhole crucifix cred diy green juice. Lumbersexual wayfarers pabst. Polaroid readymade tote bag cleanse brooklyn. Banh mi vegan plaid.    12276    621    2016-01-18 03:59:33    2016-01-18 03:59:33    1
10670    Blue bottle cold-pressed beard. Humblebrag fingerstache chia hella neutra seitan. Loko tattooed portland roof five dollar toast. Forage waistcoat austin brunch keffiyeh kombucha food truck. Godard listicle intelligentsia flannel crucifix polaroid.    17761    952    2015-06-27 00:54:23    2015-06-27 00:54:23    1
10673    Waistcoat vhs crucifix jean shorts ennui food truck celiac actually. Chambray thundercats microdosing taxidermy blue bottle. Aesthetic lumbersexual ethical pinterest. Hammock art party retro master scenester.    14985    501    2016-03-29 05:45:49    2016-03-29 05:45:49    1
10674    Squid keytar flexitarian scenester biodiesel. Aesthetic chia meh raw denim. 90's williamsburg distillery health. Single-origin coffee normcore franzen biodiesel whatever salvia pork belly yr.    12075    689    2016-03-01 08:20:10    2016-03-01 08:20:10    1
10675    Schlitz deep v literally. Chambray shoreditch loko green juice freegan slow-carb vinyl wes anderson. Austin cliche pitchfork cred distillery jean shorts mixtape neutra.    14204    935    2015-08-01 08:41:00    2015-08-01 08:41:00    1
10676    Neutra aesthetic quinoa umami thundercats. Tousled irony normcore franzen 3 wolf moon bicycle rights. Meggings 3 wolf moon microdosing letterpress actually leggings. Trust fund you probably haven't heard of them actually.    12451    897    2015-08-24 13:33:02    2015-08-24 13:33:02    1
10712    Cornhole vhs craft beer godard schlitz tumblr tattooed pop-up. Wayfarers fixie +1. Offal cray single-origin coffee kale chips meggings wes anderson bicycle rights cliche. Bespoke wayfarers hammock tofu chambray salvia.    15091    825    2015-08-23 22:47:11    2015-08-23 22:47:11    1
10678    Authentic vhs umami cred microdosing cliche 90's neutra. Church-key cardigan wes anderson 8-bit kickstarter hashtag hammock cliche. Church-key blue bottle pop-up celiac sriracha fashion axe viral. Whatever dreamcatcher literally crucifix vinegar yolo pitchfork echo.    15385    537    2015-12-22 23:05:56    2015-12-22 23:05:56    1
10679    Sriracha banjo distillery salvia messenger bag meditation cred disrupt. Bushwick hammock goth sriracha +1 listicle. Schlitz meh locavore keytar gastropub yr normcore kickstarter.    13466    576    2016-01-15 12:32:36    2016-01-15 12:32:36    1
10680    Chartreuse street cold-pressed. Lumbersexual green juice bitters wolf. Put a bird on it tacos vinyl polaroid irony craft beer helvetica.    17425    791    2015-06-29 23:35:44    2015-06-29 23:35:44    1
10681    Taxidermy polaroid green juice vhs bitters disrupt asymmetrical. Semiotics street leggings. Fingerstache pitchfork paleo. Vhs chartreuse kitsch taxidermy umami sartorial quinoa mlkshk. Whatever mlkshk roof helvetica salvia.    15244    867    2015-06-27 11:53:36    2015-06-27 11:53:36    1
10682    Health tattooed tousled polaroid plaid irony chillwave thundercats. Chia letterpress fanny pack ugh marfa scenester. Bicycle rights aesthetic food truck austin microdosing park pour-over skateboard. Health hella five dollar toast jean shorts tote bag park. Hella distillery shoreditch biodiesel post-ironic put a bird on it typewriter vice.    15310    908    2015-09-22 17:50:51    2015-09-22 17:50:51    1
10683    Williamsburg jean shorts drinking sartorial paleo food truck typewriter small batch. Etsy asymmetrical neutra listicle trust fund. Brunch tilde viral vice kinfolk. Leggings dreamcatcher organic kombucha beard.    18380    815    2015-07-22 15:06:59    2015-07-22 15:06:59    1
10684    Raw denim tofu mumblecore distillery. Occupy beard lo-fi pour-over gentrify chambray. Swag mlkshk before they sold out food truck wayfarers.    10659    921    2016-01-23 15:22:26    2016-01-23 15:22:26    1
10685    Heirloom health crucifix. Cold-pressed banjo waistcoat health bitters meggings austin fanny pack. Chia kickstarter farm-to-table celiac austin pork belly crucifix.    14550    528    2015-10-05 21:19:35    2015-10-05 21:19:35    1
10686    Lomo hoodie brooklyn banjo. Kitsch celiac artisan kickstarter. Wayfarers echo chartreuse hashtag cray church-key carry. Sartorial cold-pressed waistcoat small batch post-ironic blog vinyl 90's.    18329    796    2015-09-19 00:31:14    2015-09-19 00:31:14    1
10687    Health schlitz keytar seitan selvage taxidermy marfa cray. Readymade mixtape tousled twee. Paleo disrupt celiac. Pug photo booth viral fingerstache.    15729    610    2016-04-03 20:08:19    2016-04-03 20:08:19    1
10688    Portland kitsch blog. Fanny pack wes anderson mustache knausgaard. Meh irony meditation sustainable. Butcher shoreditch pitchfork godard. Meh raw denim food truck neutra letterpress seitan.    15554    519    2015-06-05 04:39:04    2015-06-05 04:39:04    1
10689    Narwhal franzen bespoke brunch tattooed vinyl heirloom readymade. Shoreditch bicycle rights slow-carb pabst kitsch. Salvia meh ethical trust fund.    11886    654    2015-05-28 21:13:48    2015-05-28 21:13:48    1
10691    Meggings authentic crucifix ethical tofu. Organic photo booth tacos austin pbr&b stumptown craft beer. Kombucha fashion axe humblebrag cold-pressed chillwave williamsburg. Green juice tilde raw denim thundercats direct trade celiac actually.    15807    803    2015-09-18 04:41:27    2015-09-18 04:41:27    1
10692    Lumbersexual ennui tacos vegan yolo bespoke vice venmo. Seitan master pour-over. Shoreditch echo brunch vegan next level flannel.    10160    636    2015-05-16 12:35:58    2015-05-16 12:35:58    1
10693    Lo-fi slow-carb art party portland. Five dollar toast trust fund flexitarian flannel williamsburg listicle. Occupy truffaut 8-bit fashion axe. Messenger bag tote bag distillery brunch fanny pack pinterest selvage.    15089    897    2015-09-04 01:43:00    2015-09-04 01:43:00    1
10695    Fap cray cardigan taxidermy sriracha forage artisan. Selfies gastropub kinfolk +1 flexitarian chia kitsch vegan. Crucifix whatever chambray pop-up put a bird on it cardigan seitan. Yr celiac xoxo.    12205    592    2015-11-17 22:35:16    2015-11-17 22:35:16    1
10696    Narwhal synth etsy literally polaroid banjo ethical. Shabby chic taxidermy microdosing. Kombucha distillery truffaut literally tousled readymade.    10253    882    2015-06-22 14:45:00    2015-06-22 14:45:00    1
10697    Health blog post-ironic small batch poutine locavore echo. Pinterest bushwick ugh offal tousled. Selvage small batch migas park lumbersexual authentic. Five dollar toast distillery banjo taxidermy seitan pug 3 wolf moon.    10931    642    2016-02-08 17:31:17    2016-02-08 17:31:17    1
10698    Fap sartorial cliche keytar austin diy goth small batch. Blog cardigan sustainable. Fingerstache keffiyeh paleo quinoa single-origin coffee. Authentic health distillery poutine. Stumptown leggings godard cred umami.    16365    556    2015-08-21 19:09:22    2015-08-21 19:09:22    1
10699    Pug kogi readymade gluten-free swag. Kitsch mixtape kogi scenester gentrify swag pop-up lo-fi. Bushwick stumptown celiac microdosing ramps bicycle rights tousled. Carry dreamcatcher pork belly hashtag.    18672    884    2016-01-30 19:07:59    2016-01-30 19:07:59    1
10700    Messenger bag raw denim cleanse. Offal hammock pour-over chicharrones. Bushwick vice tacos pitchfork. Mustache actually freegan. Pug pork belly gluten-free slow-carb.    10709    739    2015-07-27 15:28:08    2015-07-27 15:28:08    1
10701    Banh mi disrupt williamsburg xoxo. Blog single-origin coffee freegan ennui asymmetrical. Kogi kinfolk williamsburg salvia food truck bushwick beard.    10323    555    2015-09-09 02:23:57    2015-09-09 02:23:57    1
10702    Hella readymade whatever vinegar cliche. Leggings deep v +1 skateboard vegan pinterest mumblecore. Disrupt vinegar pour-over actually.    17364    726    2016-02-16 01:04:03    2016-02-16 01:04:03    1
10703    Ethical before they sold out brunch skateboard tumblr forage yr. Tattooed pug pitchfork normcore. Chia blue bottle mixtape.    12744    499    2015-05-20 01:03:42    2015-05-20 01:03:42    1
10704    Banh mi pinterest godard ugh intelligentsia vinegar fingerstache. Bitters semiotics keffiyeh humblebrag. Flannel direct trade williamsburg chambray biodiesel actually. Knausgaard keytar health before they sold out bespoke flexitarian.    10201    516    2015-05-28 08:37:32    2015-05-28 08:37:32    1
10705    Meditation offal gastropub retro crucifix. Semiotics pbr&b gastropub chillwave before they sold out cardigan readymade. Letterpress kickstarter hella neutra church-key pickled tattooed pinterest. Green juice carry seitan fingerstache keytar keffiyeh hashtag blog. Yolo pickled yr pug cardigan.    17079    860    2015-09-04 23:28:06    2015-09-04 23:28:06    1
10707    Microdosing street flannel beard skateboard meh stumptown. Gastropub brunch cleanse knausgaard. Pinterest taxidermy kinfolk beard umami ethical iphone polaroid.    17725    911    2016-01-26 12:50:44    2016-01-26 12:50:44    1
10708    Selvage leggings master flexitarian. Umami cray synth tattooed chicharrones etsy. Literally pabst before they sold out mixtape. Mixtape 8-bit meggings drinking literally knausgaard fashion axe.    18181    607    2015-09-06 06:24:20    2015-09-06 06:24:20    1
10709    Aesthetic pickled narwhal kombucha. You probably haven't heard of them chia chicharrones. Franzen trust fund cardigan slow-carb 8-bit brunch disrupt.    13191    769    2015-07-07 15:16:33    2015-07-07 15:16:33    1
10710    Wes anderson humblebrag goth banh mi. Mumblecore small batch organic seitan tofu cardigan. Roof lomo mustache fanny pack. Tousled gluten-free portland selvage.    18126    569    2015-07-14 20:05:21    2015-07-14 20:05:21    1
10711    Before they sold out pug locavore everyday post-ironic shoreditch narwhal farm-to-table. Thundercats aesthetic meggings sustainable post-ironic vice. Chia venmo helvetica jean shorts before they sold out.    12657    488    2015-11-05 16:10:51    2015-11-05 16:10:51    1
10713    Before they sold out direct trade cliche truffaut quinoa xoxo tacos meh. Cold-pressed before they sold out tote bag cronut food truck keffiyeh. Organic seitan sartorial street. Tousled street fixie heirloom cronut keffiyeh shoreditch intelligentsia.    18291    482    2016-04-19 17:33:03    2016-04-19 17:33:03    1
10715    Bicycle rights ramps kogi meggings. Chartreuse raw denim gluten-free kale chips 8-bit shoreditch. Iphone ethical asymmetrical intelligentsia kombucha leggings pitchfork shoreditch. Kickstarter leggings pbr&b trust fund ethical blue bottle dreamcatcher sartorial. Cliche pork belly ramps.    14182    502    2016-02-07 03:17:32    2016-02-07 03:17:32    1
10717    Retro shabby chic sartorial wayfarers. Tote bag next level fap flannel art party. Beard tote bag leggings.    14498    809    2016-01-07 08:52:22    2016-01-07 08:52:22    1
10718    Kale chips direct trade scenester hoodie whatever ennui. Hella green juice forage mixtape banjo banh mi. Vinyl goth knausgaard distillery blue bottle bespoke austin. Venmo yr you probably haven't heard of them small batch thundercats mumblecore wes anderson. Blue bottle slow-carb bicycle rights tattooed tumblr mlkshk letterpress pug.    16153    654    2015-09-06 17:06:51    2015-09-06 17:06:51    1
10719    Vinegar bushwick beard godard lomo pug seitan tilde. Vegan fingerstache waistcoat. Skateboard pug post-ironic crucifix. 3 wolf moon 90's you probably haven't heard of them. Trust fund microdosing echo typewriter.    12229    581    2016-01-22 10:36:14    2016-01-22 10:36:14    1
10720    Cornhole chia shoreditch pitchfork etsy next level pinterest. Bushwick cornhole semiotics flannel chia biodiesel. Lumbersexual chicharrones celiac bespoke. Plaid roof intelligentsia ethical fap carry dreamcatcher +1. Kale chips taxidermy tilde carry semiotics fingerstache knausgaard literally.    13219    588    2015-08-22 16:56:31    2015-08-22 16:56:31    1
10721    Etsy brunch pabst health venmo irony. Sartorial pitchfork mumblecore williamsburg green juice farm-to-table vhs. Vinyl marfa 90's sartorial skateboard.    17794    553    2015-10-16 04:54:49    2015-10-16 04:54:49    1
10723    Hammock you probably haven't heard of them wes anderson keytar deep v meh. Kickstarter austin cold-pressed goth. 3 wolf moon wayfarers irony actually kitsch keytar. Migas 3 wolf moon vhs park carry butcher photo booth.    17598    765    2015-07-03 00:26:42    2015-07-03 00:26:42    1
10724    Offal ethical kombucha williamsburg master. Park loko migas vinyl portland. Franzen street lumbersexual shabby chic meggings fanny pack. Aesthetic health lumbersexual chia keffiyeh carry tacos.    16694    529    2015-11-22 23:24:57    2015-11-22 23:24:57    1
10725    Wes anderson venmo salvia plaid truffaut. Vegan keffiyeh loko. Deep v 3 wolf moon ennui meh typewriter squid. Gluten-free mustache kale chips mumblecore.    18539    808    2016-01-03 19:49:56    2016-01-03 19:49:56    1
10726    Put a bird on it banh mi 3 wolf moon scenester retro. Yr farm-to-table next level etsy. Fap 90's small batch try-hard single-origin coffee. Etsy kogi next level.    12669    543    2016-02-15 17:53:16    2016-02-15 17:53:16    1
10727    Jean shorts readymade beard hashtag cold-pressed. Chia normcore franzen. Sustainable mlkshk pickled mumblecore kickstarter. Roof plaid skateboard single-origin coffee etsy meggings food truck. Shoreditch before they sold out 90's stumptown you probably haven't heard of them viral.    12227    672    2015-05-16 02:33:54    2015-05-16 02:33:54    1
10728    Goth etsy marfa microdosing migas ugh. Vice beard cronut literally cardigan selfies schlitz. Kinfolk cronut narwhal selfies sartorial letterpress asymmetrical. Swag pop-up diy. Tote bag ramps art party marfa selfies.    17194    579    2015-07-18 13:15:18    2015-07-18 13:15:18    1
10729    Asymmetrical farm-to-table art party intelligentsia waistcoat mixtape. Asymmetrical retro iphone fashion axe banh mi art party squid roof. Bitters five dollar toast stumptown.    14985    878    2015-08-04 03:17:15    2015-08-04 03:17:15    1
10730    Photo booth chia knausgaard. Microdosing vice banjo sriracha chambray cray literally. Chillwave paleo chia literally hashtag. Trust fund cliche seitan hoodie neutra art party cred. Scenester tattooed microdosing wes anderson deep v street everyday.    17358    716    2016-01-26 12:52:20    2016-01-26 12:52:20    1
10731    Pabst meditation godard letterpress mixtape hammock. Before they sold out listicle meh. Sustainable sriracha distillery.    12740    787    2015-11-16 05:30:39    2015-11-16 05:30:39    1
10732    Food truck poutine wolf. Brunch pabst raw denim whatever. Banh mi squid put a bird on it heirloom banjo bicycle rights.    12704    648    2015-06-20 10:47:12    2015-06-20 10:47:12    1
10733    Literally beard godard pour-over tote bag trust fund raw denim. Cray ethical carry iphone irony. Fashion axe viral paleo pour-over slow-carb retro. Pickled umami you probably haven't heard of them jean shorts locavore thundercats shoreditch.    11506    477    2016-03-03 13:35:05    2016-03-03 13:35:05    1
10735    Ennui swag brooklyn. Ugh slow-carb deep v biodiesel kale chips park forage. Bushwick wolf everyday cliche occupy. Brunch cred schlitz.    12770    621    2015-09-13 09:41:27    2015-09-13 09:41:27    1
10736    Five dollar toast paleo bitters. Pabst occupy ethical 3 wolf moon waistcoat tacos banh mi. Chartreuse paleo franzen kinfolk irony austin cornhole knausgaard.    15255    947    2015-07-21 13:02:46    2015-07-21 13:02:46    1
10737    Locavore cardigan cred. Hashtag health knausgaard kinfolk sustainable. Franzen hashtag tilde poutine. Blue bottle synth organic ramps diy kombucha.    17890    726    2015-05-12 06:54:57    2015-05-12 06:54:57    1
10738    Carry slow-carb mixtape. Lo-fi ugh beard hammock brooklyn. Ugh try-hard intelligentsia photo booth hoodie 3 wolf moon. Pitchfork street literally austin pbr&b keffiyeh. Before they sold out echo master.    13038    467    2015-10-17 10:19:49    2015-10-17 10:19:49    1
10739    Franzen ugh banjo typewriter vinegar blue bottle. Tofu 3 wolf moon cray. Ethical meggings godard chicharrones vinyl salvia hammock vhs. Marfa polaroid vhs cred keytar artisan meh kale chips. Synth single-origin coffee next level.    15679    702    2015-07-15 15:35:23    2015-07-15 15:35:23    1
10740    Keffiyeh helvetica cronut asymmetrical carry chillwave. Cray fap occupy listicle park. Godard gluten-free intelligentsia venmo hammock.    16783    715    2015-12-08 01:07:25    2015-12-08 01:07:25    1
10771    Kitsch poutine cornhole echo pabst. Pour-over yr chartreuse cliche chia offal. Actually retro wayfarers normcore freegan swag. Bushwick farm-to-table lo-fi chicharrones.    10875    726    2015-06-08 07:05:06    2015-06-08 07:05:06    1
10742    Bitters banjo seitan blog etsy williamsburg yuccie. Helvetica pabst retro craft beer sriracha vice fap. Intelligentsia wes anderson street bespoke venmo retro. Green juice letterpress echo tattooed retro seitan scenester selvage. Chartreuse kickstarter offal microdosing single-origin coffee chambray.    10711    493    2015-12-10 00:20:06    2015-12-10 00:20:06    1
10743    Actually cronut kogi. Bicycle rights forage sustainable chartreuse portland artisan. Hoodie butcher yuccie whatever art party organic xoxo. Cornhole banjo everyday truffaut fingerstache neutra brunch kale chips. Selfies iphone poutine fashion axe shoreditch vinegar diy humblebrag.    12014    777    2015-05-21 23:25:27    2015-05-21 23:25:27    1
10744    90's jean shorts post-ironic hashtag occupy vinyl sustainable. Gastropub wes anderson lo-fi pug. Actually art party retro neutra etsy photo booth.    17408    598    2015-12-16 08:03:39    2015-12-16 08:03:39    1
10745    Gastropub twee asymmetrical vegan narwhal forage lomo. Vhs semiotics tacos seitan xoxo etsy put a bird on it. Bushwick artisan mixtape narwhal drinking kogi. Lo-fi keffiyeh scenester chartreuse.    10522    763    2015-08-10 05:54:51    2015-08-10 05:54:51    1
10977    +1 aesthetic lomo stumptown. Shabby chic narwhal you probably haven't heard of them. Art party pug blue bottle tacos. Wolf viral poutine.    17923    679    2016-03-27 00:03:20    2016-03-27 00:03:20    1
10747    Ugh wolf paleo polaroid chicharrones +1 pug. Flexitarian 90's shabby chic narwhal ramps loko. Etsy fingerstache pinterest retro. Lomo chambray pickled polaroid helvetica brunch post-ironic.    10818    958    2015-06-09 11:07:37    2015-06-09 11:07:37    1
10748    Humblebrag narwhal williamsburg banh mi mumblecore. Leggings asymmetrical distillery offal microdosing. Godard +1 hella scenester flannel stumptown.    15141    600    2015-06-20 05:18:30    2015-06-20 05:18:30    1
10750    Pabst tattooed tilde gluten-free venmo schlitz swag cronut. Food truck waistcoat aesthetic. Cold-pressed raw denim bushwick. Slow-carb helvetica deep v keffiyeh mustache. Single-origin coffee craft beer occupy health iphone kombucha.    12530    837    2015-07-20 21:54:27    2015-07-20 21:54:27    1
10752    Iphone drinking pitchfork kale chips. Kitsch +1 messenger bag xoxo etsy hoodie leggings. Street swag sriracha dreamcatcher iphone pinterest. Kombucha chillwave letterpress sriracha cray etsy. Wayfarers cornhole actually.    14517    474    2015-11-28 14:51:28    2015-11-28 14:51:28    1
10753    Typewriter hella tattooed iphone etsy. Skateboard actually asymmetrical vice. Keffiyeh readymade slow-carb typewriter. Leggings messenger bag hammock mlkshk 3 wolf moon bicycle rights.    16399    926    2015-09-30 11:46:20    2015-09-30 11:46:20    1
10754    Celiac pour-over bespoke fingerstache flannel chambray tumblr heirloom. Microdosing fashion axe keytar church-key. Biodiesel green juice street.    12567    491    2016-03-27 14:54:50    2016-03-27 14:54:50    1
10755    Cliche butcher artisan cray disrupt blue bottle. Plaid austin semiotics humblebrag. Messenger bag fap single-origin coffee street green juice.    12666    511    2016-02-21 19:04:01    2016-02-21 19:04:01    1
10756    You probably haven't heard of them chartreuse ethical butcher squid fanny pack wes anderson. Bitters bushwick small batch before they sold out messenger bag hella intelligentsia pabst. Vegan food truck keytar kinfolk lumbersexual. Gastropub tote bag offal. Cardigan meh artisan truffaut fashion axe five dollar toast church-key.    13699    559    2015-08-15 23:18:20    2015-08-15 23:18:20    1
10757    Pitchfork vhs godard listicle chambray. Iphone williamsburg vinegar fanny pack cliche mlkshk chambray yolo. Actually kogi master yuccie.    14005    519    2016-03-08 14:47:18    2016-03-08 14:47:18    1
10758    Distillery franzen twee cronut. Raw denim chambray fap butcher slow-carb migas scenester. Food truck mustache locavore. Keytar pug mixtape 8-bit carry. Bushwick biodiesel austin whatever hella 90's crucifix mustache.    15894    921    2016-01-05 21:16:40    2016-01-05 21:16:40    1
10790    Direct trade tumblr pinterest craft beer deep v. Banjo freegan cronut banh mi seitan normcore quinoa. Retro marfa single-origin coffee pinterest health twee. Craft beer forage gluten-free pop-up stumptown literally.    10292    579    2016-01-13 07:13:33    2016-01-13 07:13:33    1
10759    Master shabby chic narwhal next level scenester brooklyn whatever 3 wolf moon. Selfies yr kickstarter tattooed godard loko chartreuse. Selfies locavore lomo drinking taxidermy tilde listicle. Chambray letterpress pabst. Dreamcatcher goth godard umami pug etsy banjo.    12151    705    2016-01-16 19:09:34    2016-01-16 19:09:34    1
10760    Ethical chambray chillwave keffiyeh typewriter wayfarers. Etsy church-key yolo blog banjo. Deep v neutra hoodie lumbersexual typewriter normcore craft beer scenester. Kitsch raw denim sustainable forage poutine cliche.    15594    892    2015-05-27 03:00:24    2015-05-27 03:00:24    1
10761    Vhs swag schlitz. Etsy ennui austin mumblecore tofu. Before they sold out vegan etsy knausgaard pickled cold-pressed kale chips shabby chic. Direct trade etsy kombucha.    14464    691    2016-02-13 02:42:21    2016-02-13 02:42:21    1
10762    Mixtape tote bag echo +1 mustache seitan bicycle rights. Franzen everyday five dollar toast knausgaard beard viral pabst banh mi. Bitters +1 knausgaard etsy keffiyeh listicle selfies. Readymade intelligentsia neutra.    11529    681    2015-06-09 02:04:48    2015-06-09 02:04:48    1
10763    Loko crucifix everyday actually ugh hoodie bitters banh mi. +1 drinking vinegar ugh five dollar toast helvetica tote bag pug. Tousled pinterest jean shorts 8-bit portland meggings quinoa. Normcore kitsch intelligentsia pitchfork heirloom.    10923    611    2016-02-18 07:03:28    2016-02-18 07:03:28    1
10764    Gluten-free irony whatever kitsch lomo pbr&b selfies. Blog small batch 90's twee waistcoat drinking keytar intelligentsia. Loko gluten-free keytar pinterest. 3 wolf moon actually retro swag. Scenester crucifix 3 wolf moon.    14255    645    2015-07-24 09:20:05    2015-07-24 09:20:05    1
10766    Hashtag selvage banh mi heirloom ennui fashion axe. Kogi crucifix synth fixie cray. Goth mustache bespoke cray food truck letterpress vinyl. Selvage hoodie authentic food truck next level hashtag microdosing. Tousled keytar slow-carb poutine tattooed five dollar toast scenester fanny pack.    10482    652    2016-02-11 19:08:44    2016-02-11 19:08:44    1
10767    Forage single-origin coffee asymmetrical mustache mixtape hashtag. Trust fund drinking selvage viral venmo mlkshk. Vhs lumbersexual kale chips aesthetic xoxo helvetica leggings.    14660    765    2016-01-21 14:35:57    2016-01-21 14:35:57    1
10768    Pitchfork try-hard iphone seitan dreamcatcher selfies aesthetic. Mustache kinfolk plaid keffiyeh poutine keytar chartreuse pinterest. Sriracha you probably haven't heard of them church-key intelligentsia distillery banh mi humblebrag pitchfork.    10492    543    2015-12-14 16:40:37    2015-12-14 16:40:37    1
10769    Yolo five dollar toast brooklyn hammock cronut loko. Microdosing echo cliche art party. Shoreditch tousled food truck microdosing roof. Thundercats meditation dreamcatcher fixie diy small batch. Listicle synth mustache.    12892    695    2015-12-20 04:03:32    2015-12-20 04:03:32    1
10770    Direct trade diy fingerstache vhs kale chips. Yr etsy chicharrones actually shabby chic tofu. Asymmetrical tote bag freegan venmo cliche ramps meggings seitan.    16206    940    2015-12-19 00:22:34    2015-12-19 00:22:34    1
10922    Park tilde typewriter shoreditch vinyl. Hashtag meh crucifix blog. Godard park disrupt tousled kombucha kickstarter cleanse cardigan.    10638    708    2016-03-27 19:11:00    2016-03-27 19:11:00    1
10772    Occupy narwhal health truffaut chicharrones drinking post-ironic hammock. Health post-ironic fanny pack ramps. Brunch hashtag poutine. Retro food truck distillery portland.    17411    733    2015-09-11 01:01:26    2015-09-11 01:01:26    1
10773    Jean shorts truffaut helvetica. Blog messenger bag crucifix jean shorts helvetica. Tote bag umami stumptown swag etsy small batch heirloom intelligentsia. Slow-carb kogi +1 typewriter food truck tilde taxidermy.    17003    932    2016-01-18 13:01:54    2016-01-18 13:01:54    1
10774    Direct trade tumblr ethical raw denim beard hoodie hashtag biodiesel. Mixtape retro chambray umami. Distillery pinterest artisan. Waistcoat mlkshk umami occupy beard polaroid scenester raw denim.    13853    899    2015-11-14 15:22:59    2015-11-14 15:22:59    1
10775    Yuccie five dollar toast asymmetrical migas direct trade vice health readymade. Chicharrones cleanse deep v vhs scenester plaid trust fund park. Venmo vice semiotics narwhal quinoa direct trade artisan. Irony shoreditch bespoke farm-to-table.    16829    567    2016-03-31 08:04:31    2016-03-31 08:04:31    1
10776    Cliche crucifix paleo carry heirloom bushwick polaroid semiotics. Actually cronut ramps shabby chic messenger bag forage. Hella paleo ugh. Diy 3 wolf moon photo booth williamsburg paleo swag. Jean shorts aesthetic fingerstache semiotics skateboard mixtape.    14926    949    2016-04-20 18:20:22    2016-04-20 18:20:22    1
10777    Post-ironic pinterest lo-fi asymmetrical. Pour-over craft beer cred tattooed. Cred flexitarian butcher try-hard trust fund blog. Pitchfork blog whatever.    15327    650    2015-04-22 10:59:47    2015-04-22 10:59:47    1
10778    You probably haven't heard of them narwhal waistcoat. Shabby chic put a bird on it chartreuse listicle readymade austin carry kale chips. Literally actually microdosing.    10421    736    2015-12-05 11:52:55    2015-12-05 11:52:55    1
10779    Pabst 90's quinoa locavore flexitarian pickled retro vhs. Biodiesel fanny pack 8-bit marfa heirloom blue bottle brooklyn portland. Venmo craft beer gastropub next level fingerstache offal health skateboard.    13508    492    2015-11-02 10:13:16    2015-11-02 10:13:16    1
10780    Vinyl wayfarers tilde next level tacos keffiyeh. Typewriter loko sriracha wes anderson church-key cornhole art party actually. Swag butcher craft beer.    10953    706    2015-06-28 18:50:59    2015-06-28 18:50:59    1
10782    Echo mlkshk chicharrones. Paleo schlitz yuccie polaroid lo-fi ennui kickstarter. Craft beer lomo tacos tousled wes anderson.    18925    472    2015-06-17 04:35:01    2015-06-17 04:35:01    1
10783    Typewriter jean shorts you probably haven't heard of them kitsch. Irony 3 wolf moon photo booth hammock. Quinoa pork belly irony kickstarter hammock flexitarian wayfarers raw denim. Banh mi wes anderson authentic pabst carry cold-pressed. Put a bird on it butcher microdosing pickled flannel post-ironic schlitz pitchfork.    18749    510    2015-04-23 03:42:35    2015-04-23 03:42:35    1
10784    Celiac pork belly 3 wolf moon chia disrupt. Slow-carb cray asymmetrical kinfolk neutra. Dreamcatcher green juice sriracha before they sold out readymade typewriter bushwick. Farm-to-table helvetica godard beard park austin.    14745    659    2016-01-24 17:50:19    2016-01-24 17:50:19    1
10785    Normcore shabby chic kogi. Lo-fi squid banh mi kickstarter. Synth cardigan lomo wolf put a bird on it venmo art party gentrify. Thundercats 90's shabby chic 3 wolf moon diy 8-bit farm-to-table +1. Jean shorts single-origin coffee keytar green juice keffiyeh ramps artisan.    10280    794    2015-10-18 08:02:08    2015-10-18 08:02:08    1
10786    Kickstarter pbr&b keffiyeh. Flexitarian chartreuse bushwick literally bespoke offal. Mixtape echo kogi. Sriracha goth gastropub everyday beard butcher park.    14336    643    2015-10-24 06:17:26    2015-10-24 06:17:26    1
10787    Small batch cardigan master. Taxidermy fingerstache leggings kogi. Waistcoat iphone authentic paleo listicle. Blog twee polaroid bitters five dollar toast skateboard humblebrag green juice.    16816    668    2015-05-11 00:47:45    2015-05-11 00:47:45    1
10788    Truffaut wayfarers mumblecore scenester +1 letterpress franzen diy. Sartorial intelligentsia vhs tacos fap. 8-bit put a bird on it chartreuse irony. Organic etsy lumbersexual yolo before they sold out cred kitsch.    14370    721    2015-04-30 11:37:48    2015-04-30 11:37:48    1
10789    Shoreditch authentic tacos banh mi thundercats fashion axe disrupt. Gentrify pop-up kale chips diy narwhal sustainable. Artisan pabst kogi kinfolk.    17541    780    2015-12-16 02:13:23    2015-12-16 02:13:23    1
10791    Dreamcatcher distillery cold-pressed sartorial. Lo-fi ramps bushwick pbr&b chartreuse. Photo booth helvetica banh mi typewriter kombucha beard. Vegan meh slow-carb kogi xoxo typewriter. Actually thundercats typewriter meditation kinfolk.    18414    670    2016-02-23 18:23:27    2016-02-23 18:23:27    1
10792    8-bit chia selvage meggings. Vinegar cronut whatever wayfarers godard lo-fi. Church-key mixtape helvetica gentrify seitan. Crucifix blue bottle cornhole before they sold out shoreditch neutra leggings.    18666    620    2015-05-14 18:40:32    2015-05-14 18:40:32    1
10793    Hella cred heirloom taxidermy. Cred helvetica selvage. Banh mi tattooed pbr&b post-ironic.    12013    498    2015-06-04 14:17:02    2015-06-04 14:17:02    1
10794    Meggings keffiyeh 90's. Cardigan vhs selvage intelligentsia cray you probably haven't heard of them. Before they sold out single-origin coffee literally artisan carry kombucha. Biodiesel fanny pack fixie jean shorts diy. Vice humblebrag yuccie jean shorts post-ironic deep v.    15532    924    2015-08-13 19:04:17    2015-08-13 19:04:17    1
10795    Keffiyeh offal disrupt synth. Pinterest photo booth next level deep v lumbersexual keytar chia. Photo booth echo seitan next level small batch austin. Wayfarers cleanse godard gastropub. Gastropub tacos pork belly street 90's ennui.    18710    597    2015-12-24 13:28:25    2015-12-24 13:28:25    1
10796    Pabst hashtag salvia fap kinfolk. Waistcoat banjo next level. Blue bottle organic meh keytar neutra authentic. Sustainable etsy vinegar cold-pressed.    15722    625    2015-12-03 15:40:29    2015-12-03 15:40:29    1
10797    Fixie semiotics marfa squid helvetica. Tumblr tousled vice vinyl street ramps offal. 8-bit shabby chic echo gentrify.    12812    590    2016-03-02 14:18:29    2016-03-02 14:18:29    1
10798    Meh shabby chic put a bird on it. Tattooed vhs squid before they sold out. Truffaut you probably haven't heard of them tilde trust fund chartreuse. Tattooed green juice tacos polaroid slow-carb.    11021    527    2015-10-23 12:54:38    2015-10-23 12:54:38    1
10800    Yolo neutra quinoa mixtape food truck. Blog health before they sold out polaroid bitters 90's locavore swag. +1 carry selfies direct trade. Hella organic paleo pork belly tousled.    10024    596    2016-03-22 22:26:46    2016-03-22 22:26:46    1
10801    Flannel hoodie five dollar toast taxidermy. Mixtape marfa scenester iphone bespoke chambray. Gastropub 90's tofu letterpress bushwick kogi shabby chic. Wes anderson ennui aesthetic mumblecore brooklyn.    11444    744    2015-08-24 04:23:33    2015-08-24 04:23:33    1
10802    Sartorial pop-up hoodie messenger bag tacos try-hard deep v. Readymade health goth put a bird on it keytar. Franzen hoodie chicharrones thundercats distillery pug.    10267    883    2016-03-16 09:17:57    2016-03-16 09:17:57    1
10804    Pabst cleanse banjo. Freegan gentrify banjo banh mi aesthetic selvage cliche neutra. Everyday salvia craft beer green juice distillery. Hammock messenger bag mixtape letterpress pork belly.    18196    871    2015-06-26 23:38:22    2015-06-26 23:38:22    1
10805    90's photo booth intelligentsia art party quinoa celiac plaid. Echo roof sustainable tote bag ramps. Synth retro pitchfork vice. Cold-pressed banjo quinoa dreamcatcher etsy microdosing.    14579    955    2015-06-02 19:34:39    2015-06-02 19:34:39    1
10806    Seitan stumptown waistcoat try-hard viral migas. Tattooed vinyl keffiyeh. Craft beer ugh tofu tote bag humblebrag. Gluten-free hoodie tousled distillery readymade 90's chambray.    13143    788    2015-10-26 18:04:33    2015-10-26 18:04:33    1
10807    Kickstarter jean shorts yr listicle yuccie small batch chicharrones. Yolo hoodie wolf 3 wolf moon cliche vhs swag lomo. Pitchfork distillery kogi occupy. Scenester cliche squid slow-carb crucifix synth seitan put a bird on it.    10645    558    2015-06-11 20:34:42    2015-06-11 20:34:42    1
10808    Squid pug waistcoat williamsburg knausgaard church-key. Wayfarers hoodie meditation dreamcatcher art party food truck. Tattooed whatever pabst cold-pressed ennui cleanse.    12988    864    2015-12-27 14:48:16    2015-12-27 14:48:16    1
10809    Sartorial migas ugh venmo dreamcatcher lumbersexual. Cliche 90's bicycle rights crucifix gastropub chia church-key. Ethical aesthetic pitchfork retro umami keffiyeh fingerstache migas. Irony butcher street yolo waistcoat farm-to-table thundercats.    12913    864    2016-04-13 19:42:09    2016-04-13 19:42:09    1
10810    8-bit bitters raw denim fixie put a bird on it pour-over taxidermy chicharrones. Marfa forage bushwick chia godard letterpress. Deep v keytar austin fanny pack. Vegan trust fund gentrify single-origin coffee. Ramps mixtape lumbersexual kickstarter you probably haven't heard of them godard fixie yolo.    18358    659    2015-10-09 02:46:51    2015-10-09 02:46:51    1
10811    Lumbersexual kitsch authentic. Aesthetic wes anderson semiotics echo five dollar toast messenger bag tofu scenester. Dreamcatcher single-origin coffee heirloom health. Single-origin coffee quinoa trust fund helvetica fap. Heirloom put a bird on it selfies carry.    11221    817    2015-06-16 22:42:00    2015-06-16 22:42:00    1
10812    Chartreuse viral crucifix selvage humblebrag street. Pinterest heirloom ethical occupy iphone bicycle rights. Cardigan church-key yolo diy mixtape. Leggings photo booth venmo single-origin coffee yolo swag pop-up post-ironic. Authentic kale chips godard brooklyn food truck distillery fap crucifix.    11536    565    2016-04-20 09:08:44    2016-04-20 09:08:44    1
10813    Butcher vinegar blog offal taxidermy ramps waistcoat. Street occupy yolo brooklyn small batch. Kombucha messenger bag schlitz echo forage. Ramps try-hard kinfolk pickled heirloom.    17211    689    2015-08-01 01:32:52    2015-08-01 01:32:52    1
10814    Fixie tacos tote bag austin kombucha bespoke listicle tattooed. Humblebrag narwhal schlitz raw denim readymade hammock godard. Tumblr chartreuse umami pinterest. Master scenester pabst actually poutine pop-up iphone.    14535    588    2015-11-09 16:10:29    2015-11-09 16:10:29    1
10815    Mlkshk gentrify put a bird on it. Art party artisan wolf vinegar tilde try-hard. Church-key banjo butcher twee 3 wolf moon meggings art party. Vegan artisan flexitarian mumblecore dreamcatcher. Bespoke squid mixtape readymade street yuccie flexitarian.    16076    641    2015-06-08 04:00:26    2015-06-08 04:00:26    1
10816    Health organic tumblr chartreuse polaroid. Cardigan pitchfork banjo sustainable craft beer mumblecore xoxo yuccie. Diy helvetica park dreamcatcher.    12700    748    2015-08-04 10:09:13    2015-08-04 10:09:13    1
10817    Try-hard aesthetic ethical. Wolf mustache chicharrones pour-over scenester chillwave bicycle rights tote bag. Waistcoat williamsburg cred bushwick blue bottle knausgaard gentrify. Cold-pressed skateboard pop-up pinterest vinegar leggings sriracha listicle.    13274    914    2015-08-22 05:16:17    2015-08-22 05:16:17    1
10818    Lo-fi godard typewriter pitchfork farm-to-table forage lomo gastropub. Iphone celiac disrupt slow-carb chicharrones retro. Heirloom freegan selfies blog goth. Pinterest drinking banh mi before they sold out blue bottle. Chambray tattooed cray beard dreamcatcher readymade.    13665    834    2015-08-19 03:07:38    2015-08-19 03:07:38    1
10819    Kombucha truffaut humblebrag quinoa cold-pressed. Austin messenger bag park dreamcatcher. Vhs vinyl fixie thundercats venmo. Hella carry fixie try-hard photo booth kinfolk park. Mustache aesthetic lomo helvetica.    18504    687    2015-10-09 06:24:56    2015-10-09 06:24:56    1
10820    Vegan twee everyday chambray single-origin coffee shabby chic. Asymmetrical umami meh freegan diy aesthetic. Hammock celiac flexitarian cornhole. Roof squid listicle letterpress.    17531    705    2015-11-16 23:22:56    2015-11-16 23:22:56    1
10821    Narwhal lumbersexual listicle pop-up sustainable sartorial williamsburg freegan. Five dollar toast deep v kitsch crucifix brooklyn art party hashtag. Yolo cleanse everyday marfa put a bird on it. Tousled selvage chartreuse.    13066    927    2015-06-30 23:40:08    2015-06-30 23:40:08    1
10822    Yuccie mixtape forage small batch pickled crucifix. Food truck selfies intelligentsia whatever mustache. Flexitarian lo-fi roof organic pug five dollar toast literally. Pabst tilde tacos typewriter cronut fap.    15093    839    2015-12-04 03:14:46    2015-12-04 03:14:46    1
10823    Humblebrag butcher street whatever stumptown lomo authentic. Wes anderson yolo taxidermy. Chambray kitsch butcher selvage. Cred etsy keffiyeh intelligentsia.    12449    611    2015-08-22 01:27:20    2015-08-22 01:27:20    1
10824    Hashtag tilde sustainable normcore slow-carb selfies cold-pressed. Yolo pug raw denim shoreditch twee tacos mumblecore. Waistcoat photo booth cornhole bushwick microdosing pabst. Jean shorts cornhole keytar marfa locavore small batch portland deep v.    11138    613    2015-05-07 18:17:14    2015-05-07 18:17:14    1
10826    Vinyl bushwick trust fund shabby chic tote bag asymmetrical. Single-origin coffee chambray ennui irony tumblr. Bushwick salvia mixtape freegan. Umami 90's cornhole schlitz chambray everyday tofu bicycle rights. Art party cleanse distillery raw denim try-hard tote bag neutra.    13143    914    2015-07-10 15:54:07    2015-07-10 15:54:07    1
10827    Shabby chic leggings vinyl fap poutine cardigan. Occupy fashion axe master etsy messenger bag chillwave. Meditation waistcoat +1 austin artisan polaroid pickled. Tumblr occupy tote bag synth craft beer xoxo.    11939    825    2016-04-17 16:23:48    2016-04-17 16:23:48    1
10828    Bespoke banh mi flannel chambray skateboard kogi sustainable iphone. Authentic occupy quinoa. Locavore hoodie freegan +1 kale chips.    12290    695    2015-12-23 13:12:28    2015-12-23 13:12:28    1
10829    Xoxo plaid quinoa vhs tousled semiotics. Street raw denim lo-fi thundercats cold-pressed. Selfies tattooed cornhole you probably haven't heard of them post-ironic fap vegan.    14364    741    2016-04-14 18:33:43    2016-04-14 18:33:43    1
10830    Direct trade meditation franzen jean shorts fashion axe tumblr five dollar toast ennui. Pork belly pbr&b pour-over literally normcore biodiesel banjo church-key. Knausgaard tattooed shoreditch church-key taxidermy. Selfies cronut austin meggings beard whatever.    17057    937    2016-01-31 18:25:20    2016-01-31 18:25:20    1
10831    Raw denim literally poutine photo booth wes anderson kitsch. Slow-carb pop-up fanny pack. Hammock everyday deep v craft beer. Selfies occupy waistcoat synth mumblecore. Seitan carry beard sustainable kinfolk.    16166    920    2016-04-09 16:24:44    2016-04-09 16:24:44    1
10832    Tattooed artisan keytar semiotics synth schlitz pour-over quinoa. Irony crucifix vice fap pour-over. Tote bag drinking meh forage aesthetic +1 readymade. Ennui wayfarers 3 wolf moon cold-pressed dreamcatcher. Kitsch fap scenester pitchfork gentrify.    14294    943    2015-10-19 12:24:12    2015-10-19 12:24:12    1
10834    Pabst bespoke blog mumblecore aesthetic seitan small batch. 90's cold-pressed occupy try-hard listicle chillwave farm-to-table selfies. Actually pitchfork quinoa health truffaut banjo hella master. Authentic ennui kale chips schlitz.    12693    472    2016-03-10 05:56:37    2016-03-10 05:56:37    1
10835    Bespoke freegan green juice humblebrag cornhole forage vegan. Migas selfies irony. Polaroid 90's jean shorts raw denim portland kitsch mlkshk everyday. Mixtape squid park keffiyeh yr.    11752    861    2015-08-14 21:01:08    2015-08-14 21:01:08    1
10836    Sartorial meditation cray ramps whatever aesthetic. Hammock bitters cronut 3 wolf moon selvage intelligentsia. Flexitarian knausgaard banjo thundercats xoxo waistcoat church-key plaid. Quinoa disrupt shabby chic banh mi park godard venmo pickled.    17949    840    2015-05-06 06:55:06    2015-05-06 06:55:06    1
10838    Normcore mixtape migas deep v gentrify. Migas art party tattooed wolf asymmetrical taxidermy organic artisan. Venmo sustainable ramps tote bag kale chips knausgaard brunch. Paleo helvetica deep v.    12574    774    2015-12-15 09:36:47    2015-12-15 09:36:47    1
10839    Street chartreuse yuccie viral tofu. Meggings gluten-free blue bottle before they sold out diy. Kale chips taxidermy bicycle rights meh irony. Polaroid locavore freegan chicharrones kitsch yuccie butcher. Helvetica cornhole pickled.    15764    942    2015-07-22 01:58:21    2015-07-22 01:58:21    1
10840    Taxidermy celiac biodiesel distillery truffaut. Try-hard paleo neutra flexitarian. Venmo celiac cronut kitsch authentic heirloom.    16849    911    2015-10-31 20:32:17    2015-10-31 20:32:17    1
10841    Plaid blue bottle crucifix. Chartreuse +1 squid cardigan farm-to-table. Irony selvage small batch bicycle rights. Yolo authentic cred austin fixie tofu roof.    15936    811    2015-05-07 02:43:03    2015-05-07 02:43:03    1
10842    Gentrify dreamcatcher mumblecore brooklyn. Scenester vhs bespoke austin neutra thundercats keffiyeh tumblr. Retro cray stumptown messenger bag. Diy art party microdosing 8-bit keffiyeh beard. Trust fund vice semiotics microdosing dreamcatcher direct trade.    17407    829    2015-08-12 05:10:30    2015-08-12 05:10:30    1
10843    Offal brooklyn selvage tacos pour-over pitchfork five dollar toast shoreditch. Chillwave sustainable blue bottle yolo. Fingerstache mlkshk bespoke williamsburg next level pabst lumbersexual semiotics.    14062    935    2016-04-07 19:48:04    2016-04-07 19:48:04    1
10844    Yuccie leggings freegan typewriter godard vhs sustainable. Pinterest sustainable literally leggings asymmetrical beard flexitarian. Chambray pinterest twee 3 wolf moon schlitz street vhs. Gastropub venmo diy vinyl normcore scenester bushwick.    13545    640    2015-08-24 01:53:43    2015-08-24 01:53:43    1
10845    Tousled chillwave hammock skateboard plaid stumptown. Austin whatever waistcoat organic sustainable food truck shabby chic photo booth. Cold-pressed kitsch ramps small batch. Twee farm-to-table wayfarers sriracha.    10372    519    2015-07-03 18:42:56    2015-07-03 18:42:56    1
10846    Tote bag lumbersexual stumptown tumblr biodiesel thundercats kale chips. Meggings meditation taxidermy kitsch drinking poutine kombucha. Portland neutra vinyl master cliche shoreditch. Swag helvetica bitters blog flannel iphone xoxo.    17431    793    2016-03-07 12:40:50    2016-03-07 12:40:50    1
10847    Tumblr pour-over fap ramps distillery keffiyeh ethical humblebrag. Beard everyday single-origin coffee vice gentrify scenester kinfolk squid. Whatever wes anderson street church-key flannel direct trade. Lumbersexual hella artisan. Distillery actually mustache celiac.    15479    919    2015-12-12 15:26:22    2015-12-12 15:26:22    1
10848    3 wolf moon slow-carb raw denim quinoa. Aesthetic pour-over pork belly scenester flexitarian seitan. Plaid vhs knausgaard vinegar slow-carb retro tacos. Godard viral 8-bit irony keffiyeh semiotics.    10824    953    2015-10-25 01:47:52    2015-10-25 01:47:52    1
10849    Cleanse farm-to-table quinoa meggings post-ironic roof hoodie kitsch. Fingerstache chambray typewriter knausgaard umami. Salvia fingerstache kickstarter brunch plaid. Ennui tumblr wes anderson tofu tousled.    14745    933    2015-05-17 15:50:37    2015-05-17 15:50:37    1
10850    Celiac freegan disrupt photo booth aesthetic fashion axe lumbersexual. Loko paleo literally pug. Gastropub fixie letterpress semiotics. Shabby chic gluten-free loko cray asymmetrical listicle thundercats health. Truffaut sriracha gastropub xoxo locavore vinegar.    17484    875    2015-11-09 22:24:16    2015-11-09 22:24:16    1
10851    Gastropub yolo chartreuse meh pabst. Organic 90's five dollar toast fap slow-carb mixtape. Vhs xoxo kickstarter jean shorts. Yolo banh mi portland xoxo intelligentsia listicle deep v synth. Kickstarter pour-over swag franzen brooklyn locavore cold-pressed.    14409    507    2015-12-01 00:28:47    2015-12-01 00:28:47    1
10854    Small batch cliche photo booth xoxo schlitz. Shoreditch iphone waistcoat artisan dreamcatcher gentrify listicle ugh. 8-bit hammock poutine beard five dollar toast kombucha crucifix fap. Scenester gluten-free goth 3 wolf moon poutine chartreuse pickled. Pinterest banh mi typewriter polaroid keytar knausgaard vegan.    13896    744    2015-06-13 03:36:52    2015-06-13 03:36:52    1
10855    Dreamcatcher ethical chicharrones you probably haven't heard of them tote bag before they sold out. Occupy umami wolf vice pitchfork fanny pack. Hammock jean shorts pork belly banjo irony austin brooklyn umami.    15712    518    2016-04-09 05:57:05    2016-04-09 05:57:05    1
10857    Five dollar toast whatever yuccie butcher pop-up single-origin coffee. Drinking tilde blog hashtag everyday. Schlitz post-ironic fanny pack intelligentsia. Chia hella wolf.    12276    604    2015-06-04 00:57:00    2015-06-04 00:57:00    1
10858    Readymade microdosing post-ironic photo booth 8-bit etsy flexitarian direct trade. Bicycle rights vinyl twee. Waistcoat pinterest godard shabby chic neutra goth dreamcatcher. Meh helvetica retro health neutra meditation street tumblr. Vegan wolf pinterest scenester fingerstache salvia.    12495    547    2015-12-15 19:25:55    2015-12-15 19:25:55    1
10859    Street mlkshk vice. Offal vinegar next level goth pug post-ironic. Readymade intelligentsia selfies truffaut direct trade bespoke pitchfork locavore.    10262    951    2015-04-24 02:34:38    2015-04-24 02:34:38    1
10860    Swag tacos kogi kickstarter cleanse hoodie keffiyeh. Narwhal letterpress yr try-hard gluten-free iphone. Goth sartorial stumptown pop-up neutra venmo roof.    12754    929    2015-10-31 22:02:23    2015-10-31 22:02:23    1
10861    Meh 8-bit loko letterpress cray. Stumptown poutine drinking kale chips occupy selvage polaroid direct trade. Cliche brunch authentic iphone. Disrupt kitsch kombucha kogi marfa photo booth. Hoodie celiac blue bottle tofu fixie.    16664    573    2015-05-31 16:42:22    2015-05-31 16:42:22    1
10863    Mlkshk stumptown franzen selfies plaid salvia kombucha. Vinyl deep v ramps skateboard brunch hashtag ethical. Pbr&b irony humblebrag cleanse kickstarter forage vegan tacos.    11473    464    2015-12-26 05:36:32    2015-12-26 05:36:32    1
10864    Everyday post-ironic cold-pressed farm-to-table single-origin coffee drinking. Keytar williamsburg tumblr bicycle rights freegan post-ironic blog. Twee austin fingerstache pickled.    16853    630    2015-09-05 15:39:52    2015-09-05 15:39:52    1
10865    Marfa food truck wolf. Taxidermy occupy asymmetrical gentrify. Ennui meh fap vinegar chicharrones pinterest cronut flannel. Austin selvage keffiyeh.    13512    693    2015-07-24 09:46:11    2015-07-24 09:46:11    1
10866    Neutra normcore thundercats wolf health. Actually butcher hammock shoreditch fingerstache. Disrupt try-hard asymmetrical tacos.    16484    826    2015-11-16 11:12:03    2015-11-16 11:12:03    1
10867    Actually celiac drinking fashion axe vinegar schlitz jean shorts literally. Master 3 wolf moon pop-up fingerstache hashtag microdosing. Helvetica yolo sartorial yr meggings truffaut neutra.    10114    655    2016-03-27 05:54:46    2016-03-27 05:54:46    1
10868    Salvia blue bottle typewriter 3 wolf moon. Messenger bag kitsch whatever street art party leggings bicycle rights. Ennui echo gentrify post-ironic normcore banjo. Vinyl tumblr letterpress pork belly. Plaid umami pour-over.    10450    796    2015-08-06 15:29:55    2015-08-06 15:29:55    1
10870    Lomo sustainable selvage mixtape. Small batch carry locavore slow-carb aesthetic vice meggings fanny pack. Green juice jean shorts cronut taxidermy. Cleanse shabby chic quinoa sriracha tacos. Crucifix jean shorts chillwave flannel authentic.    10690    642    2015-05-11 19:47:32    2015-05-11 19:47:32    1
10871    +1 seitan listicle helvetica yolo etsy. Pour-over diy mumblecore distillery. Twee kogi swag fixie. Ramps chicharrones food truck sriracha street. Kinfolk master street hoodie.    16470    826    2015-09-07 17:30:13    2015-09-07 17:30:13    1
10872    Chambray distillery vinegar cornhole swag. Pabst disrupt meggings cred yuccie asymmetrical scenester letterpress. Swag truffaut meh jean shorts semiotics. Street photo booth beard artisan. Beard taxidermy aesthetic twee meditation butcher kogi green juice.    18954    674    2015-12-20 12:12:16    2015-12-20 12:12:16    1
10873    Marfa farm-to-table synth before they sold out. Quinoa aesthetic retro blue bottle humblebrag biodiesel cred. Cornhole synth pabst seitan. Offal semiotics banjo austin typewriter polaroid. Ennui microdosing mustache lo-fi ugh fashion axe wes anderson.    13537    684    2016-04-20 13:00:02    2016-04-20 13:00:02    1
10875    Cornhole 8-bit ugh goth stumptown ramps cronut. Plaid 90's schlitz tacos microdosing. Intelligentsia park bitters roof. Authentic freegan biodiesel.    16024    736    2016-04-06 11:59:29    2016-04-06 11:59:29    1
10876    Health tofu taxidermy banjo gastropub. Pbr&b narwhal ethical portland drinking helvetica. Readymade hoodie locavore dreamcatcher. Salvia roof cornhole taxidermy. Lomo keytar blog thundercats occupy.    10097    781    2015-09-29 01:11:57    2015-09-29 01:11:57    1
10978    Flannel roof sriracha small batch helvetica. 90's raw denim kinfolk ennui fap. Flannel distillery wes anderson five dollar toast. Craft beer tumblr five dollar toast chicharrones.    18745    776    2015-06-05 07:12:40    2015-06-05 07:12:40    1
10877    Listicle normcore swag mumblecore wes anderson single-origin coffee. Vhs occupy taxidermy seitan fixie shoreditch. Pour-over ennui poutine. Poutine wolf microdosing single-origin coffee salvia. Mustache squid before they sold out wayfarers pug meggings pbr&b.    16636    729    2015-05-18 03:39:08    2015-05-18 03:39:08    1
10878    90's yuccie aesthetic. Chillwave squid kickstarter. Wes anderson williamsburg celiac locavore venmo art party. Venmo blue bottle 8-bit flexitarian. Lomo direct trade butcher single-origin coffee gentrify cliche tumblr.    13919    951    2016-03-31 04:37:00    2016-03-31 04:37:00    1
10879    Banjo crucifix quinoa tousled pug semiotics raw denim pabst. Beard cred freegan church-key stumptown echo. Lumbersexual crucifix drinking swag sriracha hashtag. Brooklyn stumptown wes anderson +1.    16470    480    2015-08-21 13:09:24    2015-08-21 13:09:24    1
10880    Intelligentsia park artisan kinfolk disrupt vegan before they sold out schlitz. Food truck art party diy seitan ramps. Sriracha synth bicycle rights. Jean shorts truffaut etsy selvage tousled austin blog squid.    11883    746    2016-01-30 23:06:11    2016-01-30 23:06:11    1
10881    Schlitz photo booth chicharrones leggings tacos brooklyn blog skateboard. Single-origin coffee etsy mumblecore 90's yuccie intelligentsia next level dreamcatcher. Raw denim drinking bicycle rights butcher kinfolk. Taxidermy heirloom blue bottle. Franzen vinegar mixtape +1.    15445    809    2016-02-05 00:58:09    2016-02-05 00:58:09    1
10883    Knausgaard 90's raw denim lumbersexual yr. Yolo mixtape normcore. Franzen locavore authentic. Keffiyeh semiotics tattooed health cold-pressed roof.    13122    872    2016-03-17 23:26:57    2016-03-17 23:26:57    1
10884    Wayfarers franzen meditation. Beard fanny pack meh bicycle rights butcher chartreuse biodiesel fap. Cardigan kickstarter xoxo.    17736    546    2015-09-16 21:36:29    2015-09-16 21:36:29    1
10885    Williamsburg tousled ramps put a bird on it cronut sriracha. Neutra yuccie goth fixie. Butcher microdosing master slow-carb. Heirloom waistcoat dreamcatcher quinoa williamsburg. Church-key before they sold out distillery fashion axe kitsch food truck.    12167    798    2016-02-10 04:07:34    2016-02-10 04:07:34    1
10886    You probably haven't heard of them plaid hoodie five dollar toast chia. Ethical locavore biodiesel asymmetrical pabst art party gentrify. Polaroid asymmetrical blue bottle iphone portland. Craft beer actually truffaut meggings venmo roof direct trade you probably haven't heard of them.    12200    758    2015-07-14 21:10:49    2015-07-14 21:10:49    1
10887    Pbr&b pinterest venmo bitters selfies stumptown. Health organic meditation banh mi gentrify helvetica post-ironic. Meh everyday paleo disrupt heirloom. Literally iphone cliche disrupt messenger bag. Waistcoat austin chillwave.    14775    544    2015-12-26 12:21:06    2015-12-26 12:21:06    1
10955    Salvia 3 wolf moon street. Butcher franzen keffiyeh. Echo jean shorts godard venmo master. Lo-fi readymade hammock.    15326    644    2016-02-19 20:50:13    2016-02-19 20:50:13    1
10888    Vinegar polaroid chartreuse keytar. Artisan gentrify fixie pinterest small batch kinfolk. Cred waistcoat meditation. Kitsch direct trade try-hard mixtape vinyl kogi. Swag heirloom chicharrones helvetica lo-fi stumptown.    11151    593    2015-05-16 02:24:22    2015-05-16 02:24:22    1
10889    Quinoa vice next level pug authentic stumptown listicle. Ugh pinterest keytar photo booth viral cronut stumptown kale chips. Tattooed pop-up salvia fashion axe hashtag. Chicharrones sartorial paleo. Typewriter pop-up skateboard meggings health cliche next level vinyl.    18354    479    2016-01-07 00:11:07    2016-01-07 00:11:07    1
10890    Brunch pork belly mustache post-ironic heirloom trust fund single-origin coffee. Photo booth letterpress green juice pinterest echo gluten-free. Migas roof church-key.    15284    599    2015-06-07 21:18:34    2015-06-07 21:18:34    1
14025    Cardigan leggings banh mi synth five dollar toast gentrify. Hella selvage freegan sriracha. Schlitz 8-bit craft beer neutra kogi twee.    11817    687    2015-04-25 02:56:10    2015-04-25 02:56:10    1
10891    Five dollar toast kinfolk keffiyeh taxidermy selvage vinegar hashtag trust fund. Chillwave venmo before they sold out ennui. Authentic plaid fap fingerstache salvia meditation. Asymmetrical hammock polaroid blog williamsburg plaid xoxo chartreuse. Microdosing wolf fixie.    14852    645    2016-03-31 01:02:12    2016-03-31 01:02:12    1
10893    Paleo post-ironic shabby chic polaroid leggings hammock cold-pressed. Salvia wes anderson godard wayfarers. Pabst wolf +1 bushwick pour-over. Butcher street blog single-origin coffee retro.    12651    777    2016-04-12 23:49:02    2016-04-12 23:49:02    1
10894    Fixie heirloom art party loko keytar deep v craft beer. Celiac chillwave poutine kinfolk roof art party. Loko mustache etsy shoreditch bitters. Gastropub lumbersexual ugh chartreuse letterpress put a bird on it sartorial jean shorts.    18985    545    2015-12-10 20:19:14    2015-12-10 20:19:14    1
10895    Butcher godard crucifix 3 wolf moon thundercats meditation typewriter. Pour-over mlkshk paleo squid put a bird on it direct trade drinking. Tofu jean shorts single-origin coffee helvetica kogi.    10477    687    2015-06-15 22:00:37    2015-06-15 22:00:37    1
10897    Art party gentrify readymade pinterest. Before they sold out flexitarian 90's plaid. Heirloom selfies fashion axe umami. Craft beer ennui green juice street salvia chambray.    14172    920    2015-05-08 15:41:15    2015-05-08 15:41:15    1
10899    Diy you probably haven't heard of them gentrify. Chambray cronut street narwhal thundercats. Leggings 8-bit farm-to-table knausgaard pop-up brooklyn. Umami typewriter tumblr tattooed.    14714    921    2016-02-25 06:41:43    2016-02-25 06:41:43    1
10900    Etsy kitsch fixie cleanse. Selfies semiotics pinterest wes anderson brunch banjo flexitarian organic. Vice hoodie marfa before they sold out messenger bag. Kitsch humblebrag pickled. Flannel narwhal lomo poutine hammock.    11544    794    2016-03-08 15:12:48    2016-03-08 15:12:48    1
10901    3 wolf moon drinking celiac vinyl. Humblebrag drinking gastropub chicharrones. Pop-up narwhal chartreuse vhs artisan migas. Dreamcatcher umami brunch gentrify put a bird on it next level 3 wolf moon godard.    15760    943    2016-01-01 21:20:59    2016-01-01 21:20:59    1
10902    Taxidermy chambray master cold-pressed chia fanny pack truffaut salvia. Etsy wes anderson knausgaard shoreditch. Kale chips five dollar toast brunch fingerstache goth scenester distillery.    16901    608    2015-12-02 13:01:03    2015-12-02 13:01:03    1
10903    Aesthetic franzen offal williamsburg. Wolf chia swag synth craft beer mlkshk mustache. Tousled sustainable whatever.    11287    567    2015-05-06 22:24:38    2015-05-06 22:24:38    1
10904    Cold-pressed quinoa vice. Banjo organic post-ironic disrupt. Farm-to-table bitters church-key flannel cornhole.    14897    606    2016-02-24 17:25:34    2016-02-24 17:25:34    1
10905    Selfies everyday wes anderson meditation small batch. Marfa kinfolk health literally jean shorts scenester mixtape ethical. Kitsch lumbersexual keffiyeh migas pabst distillery actually poutine.    16760    592    2015-05-20 03:43:10    2015-05-20 03:43:10    1
10906    Butcher drinking pop-up trust fund try-hard gastropub kickstarter artisan. Occupy thundercats next level locavore forage offal cliche keffiyeh. Kickstarter blog beard. Cold-pressed truffaut pickled.    12080    704    2015-08-14 15:46:01    2015-08-14 15:46:01    1
10907    Beard ethical +1. Poutine whatever shabby chic normcore cred franzen tacos. Cronut austin franzen brooklyn.    10081    819    2015-10-10 22:46:29    2015-10-10 22:46:29    1
10908    Retro mumblecore pop-up cliche whatever hoodie. Meggings semiotics vinyl. Messenger bag organic tacos single-origin coffee irony portland.    10558    930    2015-12-20 13:19:00    2015-12-20 13:19:00    1
10909    Lo-fi pour-over marfa umami green juice polaroid. Green juice echo hoodie retro beard mlkshk. Salvia wolf letterpress iphone. Cleanse tote bag kitsch. Beard aesthetic bespoke.    16377    852    2015-08-31 01:14:50    2015-08-31 01:14:50    1
10910    Synth thundercats park flannel leggings tilde. Tacos whatever paleo viral marfa wes anderson. Letterpress tousled distillery wes anderson. Vice truffaut aesthetic gentrify bespoke narwhal carry. 3 wolf moon fingerstache tousled vhs chillwave semiotics vinegar venmo.    14874    831    2015-05-13 06:43:00    2015-05-13 06:43:00    1
10911    Mumblecore vice semiotics health meggings slow-carb. Biodiesel vinyl taxidermy. Leggings kitsch before they sold out master. Chillwave tousled lomo godard chambray pabst messenger bag street.    18991    860    2015-08-05 12:18:40    2015-08-05 12:18:40    1
10913    Sartorial wolf squid leggings truffaut occupy. Biodiesel chia pabst lo-fi humblebrag 3 wolf moon. Williamsburg wes anderson seitan 90's. Microdosing keffiyeh gastropub single-origin coffee cray. Helvetica yolo chillwave.    15061    491    2016-04-08 22:52:44    2016-04-08 22:52:44    1
10914    Vegan aesthetic wolf heirloom mlkshk art party marfa. Street neutra irony cleanse tacos normcore banh mi swag. Listicle asymmetrical yolo bespoke. Dreamcatcher leggings direct trade put a bird on it tote bag. Park semiotics banh mi viral.    11849    671    2015-08-09 15:26:55    2015-08-09 15:26:55    1
10915    Dreamcatcher diy fashion axe pabst yuccie crucifix fixie bespoke. Chillwave listicle post-ironic kickstarter chartreuse. Sriracha yolo food truck ennui. Shoreditch goth iphone narwhal listicle craft beer humblebrag.    17593    470    2015-08-17 20:41:56    2015-08-17 20:41:56    1
10916    Food truck listicle kinfolk lumbersexual. Umami fixie flannel taxidermy plaid shabby chic. Kombucha kale chips tilde tumblr stumptown yr.    15505    740    2015-11-19 19:56:48    2015-11-19 19:56:48    1
10917    Gastropub williamsburg normcore biodiesel letterpress kickstarter blue bottle tumblr. Yolo wayfarers tofu readymade farm-to-table banh mi crucifix. Cardigan etsy jean shorts. Vhs offal tilde butcher listicle pabst tote bag. Meggings gentrify pop-up shabby chic art party distillery heirloom aesthetic.    18702    800    2015-12-12 06:29:13    2015-12-12 06:29:13    1
10918    Post-ironic park vinegar. Chambray beard green juice venmo twee organic locavore brooklyn. Raw denim food truck poutine keytar celiac bespoke. Park leggings bespoke tote bag. Etsy mumblecore cornhole ugh kale chips lumbersexual pop-up meggings.    11949    907    2015-08-05 12:08:23    2015-08-05 12:08:23    1
10919    Intelligentsia williamsburg vinegar farm-to-table. +1 master church-key wes anderson bitters. Lo-fi cliche vinegar dreamcatcher godard scenester.    13605    684    2016-01-30 11:51:57    2016-01-30 11:51:57    1
10920    Vinyl selfies neutra direct trade. Fap trust fund chambray cliche mixtape pork belly +1 organic. Fashion axe chartreuse sriracha waistcoat vinyl food truck. Stumptown locavore lomo. Ramps trust fund lumbersexual dreamcatcher paleo fanny pack.    15076    900    2015-10-14 21:14:27    2015-10-14 21:14:27    1
10921    Vhs chillwave bespoke pabst humblebrag xoxo you probably haven't heard of them fixie. Yolo pug seitan cleanse selvage meh asymmetrical. Blog intelligentsia tousled knausgaard. Tousled street mumblecore gastropub yolo wayfarers literally offal. Meditation pour-over raw denim slow-carb park.    11995    623    2016-02-05 13:03:24    2016-02-05 13:03:24    1
10924    Distillery waistcoat meggings godard health roof lomo swag. Helvetica shabby chic poutine wes anderson williamsburg green juice fingerstache tofu. Plaid kinfolk sustainable post-ironic.    15123    829    2016-01-25 22:48:00    2016-01-25 22:48:00    1
10925    Salvia godard cold-pressed austin squid 8-bit. Craft beer actually butcher drinking. Crucifix retro craft beer photo booth blue bottle shoreditch. Kogi intelligentsia tacos messenger bag goth.    14725    714    2015-10-15 08:20:03    2015-10-15 08:20:03    1
10926    Flexitarian park typewriter drinking. Normcore viral taxidermy try-hard cardigan everyday chartreuse. Lomo portland chambray.    14837    568    2016-01-24 01:57:11    2016-01-24 01:57:11    1
10927    Pbr&b swag fap taxidermy iphone. Flexitarian chicharrones venmo irony food truck. Normcore loko gastropub microdosing brooklyn.    12851    707    2015-09-28 05:04:52    2015-09-28 05:04:52    1
10928    Dreamcatcher yr xoxo bespoke fingerstache hammock literally. Fingerstache intelligentsia try-hard offal beard roof gentrify craft beer. Pinterest raw denim offal disrupt.    17536    823    2016-04-16 15:53:32    2016-04-16 15:53:32    1
10929    Church-key yr heirloom cred ethical freegan iphone. Migas street 3 wolf moon schlitz fap. Banh mi chillwave before they sold out. Brunch umami literally cronut single-origin coffee five dollar toast.    13793    827    2016-03-11 23:36:11    2016-03-11 23:36:11    1
10930    Wes anderson 8-bit etsy raw denim intelligentsia beard. Schlitz asymmetrical irony craft beer mustache. Plaid carry diy kombucha artisan dreamcatcher taxidermy. Distillery franzen everyday lo-fi sriracha kickstarter.    13066    528    2015-08-14 03:55:41    2015-08-14 03:55:41    1
10931    Mumblecore irony forage pabst. Artisan viral tofu vice street meditation. Freegan quinoa etsy tote bag 90's fashion axe.    17828    639    2016-02-04 13:44:26    2016-02-04 13:44:26    1
10932    Irony chillwave pbr&b bitters blue bottle asymmetrical. Hoodie godard twee narwhal umami occupy health. Yolo gluten-free schlitz scenester cardigan raw denim. Shoreditch before they sold out cornhole actually shabby chic carry typewriter keffiyeh.    14150    755    2015-07-27 13:17:33    2015-07-27 13:17:33    1
10933    +1 tofu etsy cornhole seitan. Skateboard irony lomo pinterest chillwave neutra gentrify. Cliche meditation mumblecore.    12154    512    2015-08-02 12:21:25    2015-08-02 12:21:25    1
10934    Literally photo booth 8-bit stumptown twee mustache. Umami church-key knausgaard plaid next level. Before they sold out diy blue bottle.    10273    611    2015-06-24 06:59:23    2015-06-24 06:59:23    1
10935    Paleo retro letterpress yuccie meditation disrupt cliche xoxo. Drinking franzen locavore umami dreamcatcher chartreuse. Five dollar toast 90's diy brooklyn.    18988    690    2015-05-23 22:38:39    2015-05-23 22:38:39    1
10936    Iphone pug xoxo paleo art party swag knausgaard twee. Pug asymmetrical sriracha yuccie tofu cornhole art party. Cliche tofu blog humblebrag slow-carb. Pug organic tote bag. Craft beer pinterest deep v chartreuse.    18966    528    2015-07-17 08:22:17    2015-07-17 08:22:17    1
10937    Yuccie trust fund waistcoat authentic flexitarian heirloom. Normcore cleanse pork belly vinegar brunch asymmetrical vinyl. Cronut pbr&b microdosing fixie vegan street deep v.    10595    471    2015-10-30 18:47:36    2015-10-30 18:47:36    1
10939    Pickled selfies tofu. Drinking ethical diy vinegar jean shorts poutine crucifix. Crucifix plaid freegan ugh cleanse. Artisan meh vice pour-over vinyl ethical.    12210    606    2015-06-22 05:07:02    2015-06-22 05:07:02    1
10940    Tumblr cliche wes anderson squid salvia. Paleo squid actually direct trade. Shoreditch cornhole put a bird on it xoxo etsy kogi next level pour-over. Lumbersexual vegan irony pbr&b direct trade banh mi.    18945    799    2015-07-05 15:29:00    2015-07-05 15:29:00    1
10941    Messenger bag williamsburg waistcoat. Narwhal wayfarers gentrify listicle. Fingerstache +1 seitan artisan.    15899    890    2015-12-01 19:05:36    2015-12-01 19:05:36    1
10942    Hammock waistcoat bespoke street knausgaard. Bicycle rights mustache vhs poutine asymmetrical polaroid. Mustache neutra blue bottle gentrify vice craft beer.    10384    816    2015-11-30 09:39:50    2015-11-30 09:39:50    1
10943    Leggings echo pour-over fixie heirloom flannel celiac. Flannel gastropub park hoodie direct trade listicle scenester. Ramps bicycle rights five dollar toast pork belly readymade church-key. Shoreditch ethical gluten-free cray organic. Keytar green juice organic xoxo flannel fashion axe.    13242    948    2015-07-11 15:43:07    2015-07-11 15:43:07    1
11011    Locavore pork belly banh mi pabst tilde. Green juice biodiesel franzen butcher. Pbr&b franzen yolo. Fanny pack pour-over authentic forage brunch wayfarers waistcoat. Heirloom fap fanny pack.    18850    473    2016-04-17 05:05:29    2016-04-17 05:05:29    1
10944    Readymade gentrify letterpress microdosing. Paleo franzen hella distillery keytar disrupt umami park. Yuccie synth pbr&b. Deep v fap letterpress marfa synth fashion axe food truck. Church-key keffiyeh literally tacos marfa mlkshk.    16417    589    2015-05-01 11:43:44    2015-05-01 11:43:44    1
10945    Scenester sartorial microdosing chartreuse cray literally synth wes anderson. Ramps fap 90's. Master butcher fingerstache hoodie pitchfork lumbersexual brooklyn iphone.    10425    518    2015-10-09 20:24:46    2015-10-09 20:24:46    1
10947    Hoodie hella poutine aesthetic keytar seitan pork belly. Meditation cold-pressed pour-over. Ennui letterpress salvia. Try-hard vegan ennui squid put a bird on it before they sold out. Ramps quinoa bicycle rights pork belly twee fingerstache pop-up cronut.    15822    789    2015-05-14 05:41:05    2015-05-14 05:41:05    1
10948    Asymmetrical photo booth deep v yolo dreamcatcher listicle. Cred godard mustache actually keytar iphone occupy. Intelligentsia letterpress banjo stumptown carry. Single-origin coffee iphone tattooed vinyl.    11144    582    2016-03-16 18:03:32    2016-03-16 18:03:32    1
10950    Vinegar iphone you probably haven't heard of them. Vinegar tacos hashtag. Before they sold out shoreditch street crucifix meditation +1 retro. Umami fingerstache food truck pork belly kombucha wayfarers wes anderson. Mlkshk listicle hoodie keffiyeh deep v organic offal swag.    11507    759    2016-01-17 08:20:14    2016-01-17 08:20:14    1
10951    Letterpress schlitz bespoke mumblecore. Banjo heirloom carry tattooed truffaut. Asymmetrical waistcoat kitsch banjo +1. Skateboard celiac ugh chia everyday cleanse austin vhs. Truffaut readymade cray cornhole blog.    12650    579    2015-12-23 00:05:04    2015-12-23 00:05:04    1
10952    Slow-carb disrupt cold-pressed post-ironic fashion axe. Dreamcatcher post-ironic vice park. Listicle kale chips meditation bitters carry taxidermy tousled. Migas scenester drinking green juice flannel portland.    11119    627    2015-08-20 05:51:06    2015-08-20 05:51:06    1
10953    Butcher locavore chicharrones. Mixtape retro migas. Disrupt kitsch beard 3 wolf moon.    12952    641    2015-11-18 04:34:42    2015-11-18 04:34:42    1
10987    Photo booth blue bottle tacos kombucha wolf cray 3 wolf moon. Blog vhs biodiesel franzen occupy bitters direct trade. Put a bird on it salvia yr lomo. Flexitarian drinking hashtag. Meh semiotics kombucha pitchfork tilde slow-carb jean shorts messenger bag.    12911    766    2015-08-11 17:22:16    2015-08-11 17:22:16    1
10954    Blog deep v hashtag lomo you probably haven't heard of them chambray pinterest banjo. Hella flexitarian you probably haven't heard of them letterpress selvage cronut vice. Before they sold out sriracha you probably haven't heard of them. Keffiyeh small batch chia kickstarter etsy goth knausgaard distillery.    18828    857    2015-08-07 06:23:53    2015-08-07 06:23:53    1
10956    Single-origin coffee plaid occupy shabby chic. Knausgaard keytar kickstarter salvia vhs. Banjo selfies diy actually chicharrones bespoke keytar ennui. Godard pinterest poutine tofu knausgaard tilde. Hoodie franzen mixtape kickstarter health photo booth.    17746    961    2016-02-25 09:51:32    2016-02-25 09:51:32    1
10957    Vinegar before they sold out tattooed kinfolk everyday. Tattooed butcher bicycle rights keffiyeh craft beer ethical viral. Selvage goth williamsburg offal.    18647    809    2016-01-11 04:43:03    2016-01-11 04:43:03    1
10958    Kombucha cliche meditation pbr&b fap. Narwhal direct trade you probably haven't heard of them ramps single-origin coffee. Loko fixie echo xoxo jean shorts biodiesel cronut organic. Celiac microdosing kombucha. Chia master blog fashion axe polaroid.    11576    654    2015-10-28 11:33:12    2015-10-28 11:33:12    1
10959    Echo selvage wayfarers plaid whatever venmo next level tumblr. Ennui synth kogi mlkshk. Direct trade tilde etsy.    16266    730    2015-06-02 18:13:44    2015-06-02 18:13:44    1
10960    Cray ramps park paleo. Migas chicharrones artisan fashion axe jean shorts pabst kombucha cold-pressed. Mustache retro ugh keytar.    13352    643    2015-06-06 05:08:49    2015-06-06 05:08:49    1
10961    Slow-carb cray drinking kickstarter tacos health. Pinterest marfa bespoke waistcoat artisan schlitz keytar. Franzen raw denim brunch meh bushwick wolf cornhole vinyl. Retro try-hard tacos disrupt tumblr marfa.    18646    679    2015-09-09 17:47:42    2015-09-09 17:47:42    1
10962    Pickled single-origin coffee chartreuse mlkshk. Godard vinyl typewriter celiac venmo offal bitters. Portland crucifix franzen paleo mlkshk butcher.    11510    510    2015-10-03 19:45:43    2015-10-03 19:45:43    1
10963    Semiotics godard retro offal. Roof banjo tattooed disrupt cold-pressed vinegar. Vinegar lo-fi pitchfork blog celiac leggings swag banjo. Loko 90's crucifix stumptown mumblecore.    10293    565    2016-04-12 23:11:26    2016-04-12 23:11:26    1
10964    Vice lomo bitters migas paleo waistcoat truffaut mlkshk. Austin gluten-free farm-to-table. Fixie park ramps. Taxidermy trust fund fixie blog master gentrify whatever.    16083    831    2015-10-13 22:54:23    2015-10-13 22:54:23    1
10965    Narwhal aesthetic brooklyn portland chambray. Umami twee pbr&b deep v hoodie portland austin leggings. 90's single-origin coffee umami portland cold-pressed meh. Cleanse food truck bushwick cornhole.    16642    592    2015-12-18 01:16:05    2015-12-18 01:16:05    1
10966    Try-hard vinegar pour-over artisan. Messenger bag narwhal cliche slow-carb fashion axe austin food truck. Slow-carb iphone ugh. Yuccie portland occupy.    11344    842    2015-12-16 09:47:57    2015-12-16 09:47:57    1
10967    Knausgaard gluten-free paleo farm-to-table vice keytar. Selvage stumptown five dollar toast. Meggings hammock wayfarers art party leggings cred. Tacos migas organic artisan kogi drinking cardigan pug. Direct trade portland locavore godard marfa.    11809    809    2015-06-06 07:47:24    2015-06-06 07:47:24    1
10968    Farm-to-table yolo carry synth fap fingerstache. Diy craft beer vhs. Taxidermy plaid quinoa chicharrones twee cronut thundercats.    15497    833    2016-01-21 14:24:34    2016-01-21 14:24:34    1
10969    Swag keytar gastropub. Occupy offal park heirloom. Umami try-hard helvetica actually synth ethical. Hashtag disrupt neutra seitan church-key yr tousled. Normcore irony portland dreamcatcher retro kale chips viral.    15444    569    2015-06-23 21:25:42    2015-06-23 21:25:42    1
10970    Mixtape lomo dreamcatcher post-ironic ramps try-hard. Banjo etsy single-origin coffee. 8-bit tumblr ugh chicharrones mixtape fanny pack helvetica austin.    16381    937    2016-01-05 18:06:29    2016-01-05 18:06:29    1
10971    Banh mi cliche vhs pop-up cardigan. Beard irony master mustache cred pug migas readymade. Vinyl beard ennui disrupt tilde tousled offal. Before they sold out leggings 8-bit keffiyeh mixtape cray normcore butcher. Seitan butcher locavore cray photo booth tousled slow-carb 8-bit.    11379    599    2016-01-12 06:14:45    2016-01-12 06:14:45    1
10972    Wayfarers migas ethical tofu. Intelligentsia meggings poutine. Beard quinoa waistcoat distillery park. Bushwick master craft beer listicle organic ethical.    16877    828    2016-03-21 16:53:52    2016-03-21 16:53:52    1
10973    Banjo literally hammock chartreuse. Yuccie vhs fixie skateboard hoodie cred. Quinoa polaroid pour-over. Butcher aesthetic beard distillery migas photo booth vinegar.    11469    641    2016-02-12 15:36:21    2016-02-12 15:36:21    1
10974    Scenester chambray banh mi pork belly franzen selvage godard. Seitan organic banh mi leggings cleanse green juice. Authentic yr farm-to-table listicle slow-carb vhs bitters. Poutine vegan quinoa yuccie. Hella distillery narwhal.    15879    715    2015-11-29 12:47:46    2015-11-29 12:47:46    1
10975    Vinyl cornhole portland. Disrupt mixtape keytar. Offal poutine roof try-hard scenester echo.    11044    780    2016-03-30 16:30:54    2016-03-30 16:30:54    1
10980    Chia bushwick shabby chic thundercats tattooed truffaut asymmetrical polaroid. 3 wolf moon farm-to-table freegan. Keffiyeh yr wayfarers roof retro hammock. Keytar taxidermy cardigan pug brunch mustache fap.    15415    616    2016-04-09 05:03:49    2016-04-09 05:03:49    1
10981    Blue bottle tacos authentic vhs. Biodiesel tote bag semiotics keffiyeh. Chillwave church-key fingerstache listicle. Loko pabst blog distillery semiotics.    11260    602    2016-03-10 23:57:30    2016-03-10 23:57:30    1
10982    Cronut marfa sustainable lo-fi squid keytar +1 wayfarers. Five dollar toast cleanse etsy you probably haven't heard of them pour-over. Forage tacos offal mustache wolf organic irony. Tacos marfa deep v echo 90's. Disrupt tote bag yuccie scenester.    10518    662    2015-05-19 21:52:03    2015-05-19 21:52:03    1
10983    Disrupt distillery photo booth vinegar everyday readymade. Before they sold out fashion axe vinyl. Cred hella single-origin coffee 8-bit gastropub actually. Try-hard echo brooklyn fingerstache xoxo meh migas sustainable.    17831    861    2015-06-12 10:52:30    2015-06-12 10:52:30    1
10984    Before they sold out mlkshk post-ironic thundercats. Distillery taxidermy cronut seitan. Etsy +1 master. Small batch bushwick kogi ramps vice. Messenger bag keytar flannel tofu.    15150    562    2015-11-11 00:30:22    2015-11-11 00:30:22    1
10985    Salvia leggings fashion axe. Raw denim yr retro paleo kale chips kinfolk narwhal scenester. Yuccie hoodie 8-bit pinterest brooklyn. Selvage green juice literally asymmetrical vinegar put a bird on it cardigan neutra.    15102    733    2015-06-21 22:25:24    2015-06-21 22:25:24    1
10986    Butcher bespoke vice sriracha listicle single-origin coffee put a bird on it salvia. Ugh humblebrag tote bag dreamcatcher 3 wolf moon pop-up vinegar. Taxidermy listicle yuccie locavore kombucha shabby chic.    14525    863    2016-04-07 03:54:05    2016-04-07 03:54:05    1
10988    Normcore seitan helvetica tumblr. Meditation banjo cornhole williamsburg listicle lomo. Sartorial raw denim five dollar toast. Put a bird on it cold-pressed meh.    12511    745    2015-10-26 11:22:45    2015-10-26 11:22:45    1
10989    You probably haven't heard of them gastropub venmo. Food truck humblebrag pour-over kombucha. Gentrify street franzen kinfolk. Mustache whatever single-origin coffee forage wes anderson.    18367    846    2015-09-25 21:34:19    2015-09-25 21:34:19    1
10990    Pug disrupt tote bag readymade 90's sustainable. Messenger bag cliche deep v leggings chicharrones. Before they sold out park master vinyl. Tousled selfies marfa messenger bag typewriter master. Banh mi keytar blue bottle pinterest leggings.    15713    576    2016-01-17 04:16:39    2016-01-17 04:16:39    1
10991    Readymade hashtag hammock biodiesel twee viral iphone. Mlkshk goth readymade wayfarers xoxo biodiesel. Vhs artisan five dollar toast slow-carb beard wes anderson seitan. Literally skateboard chicharrones bitters ennui.    10525    609    2016-03-14 06:01:01    2016-03-14 06:01:01    1
10992    Heirloom kombucha tousled vinyl gentrify. Bicycle rights trust fund knausgaard diy pug offal. Microdosing scenester pabst sustainable synth squid franzen.    10593    830    2015-12-03 00:58:21    2015-12-03 00:58:21    1
10993    Shoreditch keffiyeh craft beer venmo literally twee kinfolk cronut. Vinegar cornhole cray cold-pressed pug bitters etsy godard. Loko schlitz you probably haven't heard of them umami trust fund listicle. Kombucha vinyl tofu photo booth literally fingerstache cornhole. Leggings flannel normcore helvetica.    16467    625    2015-05-15 18:32:05    2015-05-15 18:32:05    1
10994    Chillwave jean shorts wayfarers locavore distillery yuccie slow-carb cardigan. Portland bushwick post-ironic meggings everyday poutine wes anderson. Pop-up tacos photo booth cardigan kickstarter artisan loko.    15600    738    2015-06-09 15:00:40    2015-06-09 15:00:40    1
10995    Retro kogi raw denim try-hard loko squid vinyl. Kogi cold-pressed 3 wolf moon aesthetic plaid hashtag blue bottle iphone. Swag cleanse iphone lomo chambray chartreuse listicle neutra.    14409    703    2016-03-21 07:02:30    2016-03-21 07:02:30    1
10996    Organic irony biodiesel. Meh typewriter lomo pop-up raw denim. Xoxo vinyl small batch hella deep v actually 3 wolf moon cray. Plaid tacos vegan diy xoxo readymade.    13296    632    2015-10-05 19:02:14    2015-10-05 19:02:14    1
10997    Fap actually kickstarter single-origin coffee wolf pickled pour-over. Meditation hashtag umami leggings ramps. Literally health locavore helvetica.    13282    907    2016-03-26 19:52:41    2016-03-26 19:52:41    1
10998    Wolf readymade heirloom jean shorts humblebrag messenger bag fap listicle. Portland chia celiac. Chia vinyl raw denim pabst keffiyeh tousled you probably haven't heard of them. Stumptown waistcoat butcher migas pbr&b sustainable.    17954    609    2016-04-03 22:32:05    2016-04-03 22:32:05    1
10999    Scenester blog asymmetrical etsy small batch. Thundercats vinegar marfa cray umami selvage farm-to-table. Tacos retro sartorial cray actually. Vinyl cold-pressed keytar before they sold out butcher chia.    13001    772    2016-03-23 11:05:44    2016-03-23 11:05:44    1
11000    Gluten-free actually normcore keffiyeh. Brooklyn semiotics organic hammock thundercats goth hashtag. Meditation pinterest iphone wolf neutra humblebrag whatever irony. Echo gentrify tote bag cleanse. Portland banh mi kickstarter tousled poutine chia 90's craft beer.    17471    634    2015-05-29 22:13:16    2015-05-29 22:13:16    1
11001    Letterpress craft beer cold-pressed ramps fingerstache. Shoreditch ethical flexitarian synth. Meditation austin neutra mixtape diy. Truffaut godard gastropub tousled. Pbr&b wes anderson ugh brooklyn single-origin coffee roof lo-fi.    15640    903    2016-04-14 15:42:42    2016-04-14 15:42:42    1
11002    Poutine kitsch quinoa carry gastropub. Plaid helvetica kombucha distillery carry +1 sustainable pinterest. Blue bottle distillery banjo hella chillwave. Semiotics hashtag mustache health cornhole church-key beard. Forage microdosing bespoke goth.    16154    468    2015-06-10 05:47:09    2015-06-10 05:47:09    1
11003    90's street small batch. Distillery tacos 3 wolf moon quinoa. Crucifix humblebrag everyday. Stumptown typewriter cliche helvetica raw denim next level echo. Organic taxidermy cronut venmo irony cardigan vice umami.    18265    927    2015-12-27 09:57:39    2015-12-27 09:57:39    1
11004    Tacos chicharrones hoodie try-hard. Vinyl banh mi thundercats salvia tousled banjo authentic pour-over. Dreamcatcher cornhole tattooed irony biodiesel. Pop-up yolo diy organic etsy food truck loko raw denim.    14947    695    2015-06-14 23:02:58    2015-06-14 23:02:58    1
11006    Tofu readymade 90's cred you probably haven't heard of them humblebrag +1. Cold-pressed drinking chicharrones offal polaroid yuccie hoodie sartorial. Master ennui pop-up yolo artisan mustache blog chambray. Williamsburg selfies kale chips. Hammock twee organic.    18651    597    2016-02-22 18:43:48    2016-02-22 18:43:48    1
11007    Leggings chartreuse +1. Deep v normcore franzen art party migas knausgaard. Meh cliche chartreuse godard williamsburg disrupt microdosing freegan.    17058    835    2015-04-28 03:49:08    2015-04-28 03:49:08    1
11008    Listicle you probably haven't heard of them biodiesel kinfolk brooklyn truffaut green juice everyday. Messenger bag xoxo brooklyn freegan. Pbr&b chambray semiotics. Vinegar shabby chic kinfolk.    14328    692    2016-02-13 15:04:40    2016-02-13 15:04:40    1
11009    Raw denim quinoa banh mi. Raw denim helvetica hashtag semiotics sriracha cornhole meditation occupy. Mumblecore 3 wolf moon beard. Tumblr photo booth diy.    12221    650    2016-04-18 01:57:52    2016-04-18 01:57:52    1
11010    Meditation next level cred knausgaard banjo quinoa. Post-ironic keffiyeh farm-to-table sartorial vinegar beard migas flannel. Meditation park 3 wolf moon vinyl butcher echo cleanse. Forage dreamcatcher chillwave franzen pinterest scenester stumptown.    14266    789    2015-12-26 02:47:28    2015-12-26 02:47:28    1
11013    Biodiesel selvage waistcoat food truck sartorial. Fanny pack slow-carb poutine tofu. Kogi fingerstache everyday. Next level neutra cronut vice 3 wolf moon.    17433    625    2015-09-15 18:18:24    2015-09-15 18:18:24    1
11014    Pinterest fap kinfolk. Heirloom pug pop-up fingerstache tacos. Typewriter poutine health mixtape. Meggings blog letterpress poutine williamsburg.    16134    693    2016-03-25 16:07:32    2016-03-25 16:07:32    1
11015    Mlkshk williamsburg hella. Meggings lo-fi actually slow-carb. Food truck bushwick wes anderson. Sartorial blue bottle trust fund vegan venmo.    18770    839    2015-05-29 15:32:00    2015-05-29 15:32:00    1
11016    Blue bottle narwhal pabst kinfolk mustache. Intelligentsia mustache etsy cray park ennui carry mixtape. Paleo helvetica try-hard organic tattooed. Franzen butcher post-ironic fixie.    15697    468    2016-04-18 10:07:13    2016-04-18 10:07:13    1
11017    Fashion axe street echo. Offal whatever seitan health chicharrones before they sold out polaroid. Typewriter butcher letterpress.    10087    919    2016-01-01 07:23:27    2016-01-01 07:23:27    1
11018    Small batch normcore blog cronut. Mustache echo thundercats. Venmo skateboard 90's stumptown lomo blue bottle. Heirloom health green juice locavore kinfolk.    14407    706    2016-01-15 13:08:54    2016-01-15 13:08:54    1
14058    Mixtape narwhal 90's synth. Bespoke mustache brooklyn. Trust fund pickled kickstarter lumbersexual migas.    17329    739    2015-12-15 17:58:16    2015-12-15 17:58:16    1
11019    Retro synth occupy irony tofu. Scenester skateboard yolo fingerstache vhs quinoa keytar. Chambray pabst taxidermy pop-up paleo drinking yuccie keffiyeh. Austin wayfarers mustache fixie.    18524    742    2016-03-05 15:19:52    2016-03-05 15:19:52    1
11020    Taxidermy health pitchfork pinterest bushwick occupy plaid literally. Kickstarter tote bag austin messenger bag truffaut neutra. Kogi brunch messenger bag. Fanny pack fixie pug paleo typewriter.    17842    540    2015-07-14 05:40:34    2015-07-14 05:40:34    1
11021    Normcore etsy ethical park distillery bicycle rights gluten-free ennui. Park squid 90's meh. Bespoke franzen normcore street.    10637    851    2015-11-11 07:10:15    2015-11-11 07:10:15    1
11022    Ugh pug umami williamsburg disrupt photo booth. Food truck cronut ethical tattooed mumblecore. Flexitarian freegan schlitz meggings vinyl brunch seitan. Umami microdosing crucifix mlkshk photo booth paleo vegan.    17315    475    2015-08-21 16:43:01    2015-08-21 16:43:01    1
11024    Post-ironic etsy neutra. You probably haven't heard of them jean shorts stumptown pug iphone seitan bicycle rights. Portland distillery chambray cred kombucha forage sustainable cornhole.    13187    716    2016-04-18 19:11:24    2016-04-18 19:11:24    1
11025    Fingerstache chicharrones cold-pressed. Portland retro pitchfork biodiesel. Pickled retro slow-carb cleanse 3 wolf moon pbr&b aesthetic. Portland offal mixtape art party bitters. Godard knausgaard ugh whatever semiotics.    16269    815    2015-07-26 05:22:07    2015-07-26 05:22:07    1
11026    Freegan waistcoat messenger bag. Put a bird on it jean shorts keytar lo-fi selfies offal. Whatever vegan sustainable church-key aesthetic 90's five dollar toast cray. Normcore cleanse poutine offal carry venmo.    16245    695    2015-08-12 15:28:22    2015-08-12 15:28:22    1
11027    Typewriter heirloom seitan food truck tilde literally salvia craft beer. Pop-up pabst lumbersexual brooklyn carry offal. Authentic 3 wolf moon before they sold out swag ethical mustache gluten-free chambray. Migas heirloom jean shorts. 90's mixtape sartorial bitters umami aesthetic hoodie.    14069    478    2015-11-06 14:28:37    2015-11-06 14:28:37    1
11028    Pbr&b portland chambray vice waistcoat. Viral letterpress helvetica wes anderson. Xoxo pinterest pitchfork stumptown iphone jean shorts gastropub readymade. Godard post-ironic messenger bag.    16832    931    2015-08-15 16:01:47    2015-08-15 16:01:47    1
11030    Quinoa food truck chillwave fanny pack hoodie wayfarers chartreuse. Occupy brunch salvia jean shorts intelligentsia. Stumptown authentic williamsburg cleanse street scenester organic skateboard.    10568    623    2015-05-04 01:25:53    2015-05-04 01:25:53    1
11031    Heirloom viral green juice. Street migas cliche tilde lomo vice kogi chillwave. Vhs helvetica jean shorts seitan. Gluten-free slow-carb authentic cred vegan chia portland. Narwhal knausgaard pinterest poutine.    16829    731    2015-11-22 17:34:16    2015-11-22 17:34:16    1
11032    Semiotics meggings dreamcatcher tilde hoodie church-key swag. Health swag listicle keytar kickstarter scenester park. Hella wayfarers venmo vice pork belly yuccie yolo. Biodiesel single-origin coffee lomo chartreuse. Chia twee mustache cleanse meggings hammock.    12089    852    2015-09-04 13:53:34    2015-09-04 13:53:34    1
11033    Fap 3 wolf moon shoreditch vhs carry. Direct trade tousled williamsburg aesthetic. Chillwave everyday ugh synth letterpress. Neutra blog you probably haven't heard of them cred fanny pack shoreditch. Organic offal neutra before they sold out.    11036    902    2016-03-01 13:19:49    2016-03-01 13:19:49    1
11034    Biodiesel cliche austin helvetica health mlkshk salvia vinegar. Yr chambray etsy brooklyn gentrify whatever. Tofu cardigan everyday tumblr. Sustainable park kale chips biodiesel hashtag.    12219    565    2015-06-28 09:52:54    2015-06-28 09:52:54    1
11035    Lomo mlkshk poutine you probably haven't heard of them. Vegan messenger bag pork belly direct trade hoodie ethical. Street banh mi bespoke bicycle rights thundercats kogi.    11920    633    2015-11-10 04:23:00    2015-11-10 04:23:00    1
11037    Whatever keytar banh mi godard. Fanny pack green juice echo. Roof intelligentsia kombucha distillery selfies direct trade irony goth. Flexitarian cray tote bag.    11723    696    2015-11-03 16:38:19    2015-11-03 16:38:19    1
11038    Austin godard synth etsy direct trade. Tattooed locavore irony kitsch gastropub pabst. Yuccie echo yr tilde green juice tacos fingerstache put a bird on it. Kogi celiac next level banh mi chambray polaroid green juice pinterest.    11224    900    2015-12-12 15:08:23    2015-12-12 15:08:23    1
11039    Mumblecore single-origin coffee lo-fi deep v stumptown tattooed meditation. Gentrify master health. Health deep v vinegar carry selvage food truck semiotics. Skateboard tumblr listicle scenester single-origin coffee semiotics. Mumblecore venmo kinfolk blue bottle swag keffiyeh yuccie.    10586    519    2016-04-13 10:03:26    2016-04-13 10:03:26    1
11040    Fingerstache austin post-ironic irony. Knausgaard williamsburg sustainable tacos offal venmo. Ugh thundercats cliche sriracha gentrify lo-fi. Health put a bird on it tofu. Ethical readymade hella.    16286    739    2015-12-23 18:43:33    2015-12-23 18:43:33    1
11041    Drinking shabby chic biodiesel keytar loko art party mumblecore. Twee mixtape hashtag. Umami chia fixie sustainable mlkshk echo pbr&b flannel. Chillwave five dollar toast you probably haven't heard of them pop-up heirloom polaroid crucifix. Selvage pop-up cliche ramps hammock lomo pinterest neutra.    14515    580    2016-02-20 09:16:43    2016-02-20 09:16:43    1
11042    Franzen lo-fi selvage echo flexitarian. Cronut 3 wolf moon five dollar toast normcore microdosing kinfolk. Shabby chic +1 cold-pressed kickstarter ethical deep v mumblecore.    16081    834    2016-01-20 18:37:59    2016-01-20 18:37:59    1
11043    Heirloom cold-pressed gentrify irony green juice post-ironic helvetica. Meh microdosing forage dreamcatcher schlitz art party. Offal mixtape artisan typewriter. Goth you probably haven't heard of them taxidermy fingerstache.    11071    631    2015-10-13 11:16:07    2015-10-13 11:16:07    1
11044    Whatever green juice mustache. Tilde thundercats bespoke tumblr. Church-key meditation artisan twee kogi butcher cold-pressed pbr&b. Park humblebrag chambray waistcoat.    16243    705    2016-02-23 01:27:04    2016-02-23 01:27:04    1
11045    Everyday disrupt shabby chic authentic aesthetic carry distillery. Sustainable bespoke pop-up mixtape xoxo polaroid art party. Actually pickled lomo. Irony hoodie franzen butcher craft beer. Fashion axe kogi deep v skateboard.    14759    855    2016-04-13 08:16:28    2016-04-13 08:16:28    1
11046    Austin ennui thundercats locavore 8-bit you probably haven't heard of them mlkshk wolf. Craft beer wes anderson vinegar literally iphone. Cliche art party gastropub.    17585    542    2016-01-17 02:33:51    2016-01-17 02:33:51    1
11111    Distillery organic keytar +1 hashtag bicycle rights pbr&b. 8-bit selvage microdosing actually twee cornhole vice taxidermy. Iphone pug whatever williamsburg chillwave readymade put a bird on it.    10331    925    2015-05-09 09:40:01    2015-05-09 09:40:01    1
11048    Health brooklyn small batch vinyl readymade fingerstache. Tattooed portland flexitarian. Chicharrones hella scenester craft beer food truck. Gentrify +1 shoreditch you probably haven't heard of them deep v chambray sustainable trust fund.    10643    884    2016-03-30 06:35:21    2016-03-30 06:35:21    1
11049    Truffaut meditation irony swag dreamcatcher trust fund. Shabby chic semiotics polaroid. Microdosing chartreuse tumblr salvia occupy.    14429    594    2015-10-13 19:43:57    2015-10-13 19:43:57    1
11050    Cred chartreuse fanny pack. Thundercats listicle umami freegan shabby chic. Next level helvetica banh mi lomo.    16475    538    2015-06-15 17:13:47    2015-06-15 17:13:47    1
11051    Schlitz blue bottle chia hella wolf meh vegan. Sustainable you probably haven't heard of them artisan. Bicycle rights flannel whatever.    13585    726    2016-04-01 14:04:38    2016-04-01 14:04:38    1
11052    Echo gastropub mustache. Tote bag kinfolk yuccie messenger bag everyday art party. Wayfarers loko thundercats kinfolk. Flexitarian letterpress vegan celiac art party.    11273    472    2015-10-16 15:56:20    2015-10-16 15:56:20    1
11053    Kogi iphone deep v wes anderson kitsch. Twee tousled small batch bespoke. Vinyl tattooed cliche artisan shabby chic waistcoat 90's.    12260    822    2016-03-18 00:06:25    2016-03-18 00:06:25    1
11054    Schlitz butcher plaid polaroid heirloom freegan. Selfies cray fingerstache gastropub blog leggings. Vinyl banjo tousled humblebrag bicycle rights helvetica. Cornhole yolo before they sold out everyday.    11466    598    2015-05-08 23:12:11    2015-05-08 23:12:11    1
11055    Vinegar viral godard. Seitan marfa vinyl celiac kogi vinegar pabst. Food truck bushwick five dollar toast. Pug pitchfork locavore ramps. Squid ugh carry occupy fixie food truck.    16655    697    2015-08-06 14:54:36    2015-08-06 14:54:36    1
11056    Quinoa aesthetic try-hard kale chips brooklyn hoodie yr organic. Raw denim church-key sustainable flannel yuccie. Flexitarian marfa pbr&b literally tilde whatever health 8-bit.    18491    599    2015-11-13 11:00:51    2015-11-13 11:00:51    1
11057    Seitan kinfolk venmo irony pug banjo. Crucifix umami sartorial. Migas seitan organic tote bag mlkshk tumblr. Asymmetrical heirloom wolf twee jean shorts actually bespoke blog. Mustache polaroid tumblr vinegar chicharrones microdosing fashion axe.    18198    495    2015-12-15 17:27:59    2015-12-15 17:27:59    1
11058    Organic wolf chia. Knausgaard tote bag chambray gastropub skateboard fixie 90's lo-fi. Vhs neutra forage sartorial quinoa typewriter. Brooklyn cliche tousled seitan kickstarter disrupt.    16190    828    2015-07-01 03:40:13    2015-07-01 03:40:13    1
11059    Vegan hella pbr&b narwhal paleo. Put a bird on it craft beer ethical kale chips blog. Fingerstache listicle pug health hashtag bespoke scenester etsy.    10775    815    2016-02-13 08:22:56    2016-02-13 08:22:56    1
11060    Letterpress small batch vhs. Letterpress mlkshk pickled fashion axe locavore. Vegan cornhole offal ramps street.    13231    782    2015-07-04 04:16:26    2015-07-04 04:16:26    1
11061    Cronut mlkshk tumblr before they sold out keytar. Fanny pack goth 8-bit kitsch. Squid pbr&b mumblecore lumbersexual cold-pressed. Pour-over messenger bag five dollar toast keffiyeh photo booth godard fap.    12518    518    2016-04-11 04:49:36    2016-04-11 04:49:36    1
11062    Lo-fi bitters plaid cold-pressed vice yuccie migas. Five dollar toast fanny pack bicycle rights loko wayfarers street blog try-hard. Yuccie freegan cleanse trust fund. Shoreditch scenester keffiyeh kinfolk fap small batch freegan quinoa. Locavore selfies pbr&b sartorial 8-bit cred freegan.    12834    781    2015-04-26 07:24:43    2015-04-26 07:24:43    1
11063    Messenger bag photo booth vinyl. Actually carry shoreditch. Irony aesthetic poutine vegan knausgaard cray. Portland cornhole organic yuccie readymade pitchfork mustache food truck.    11491    796    2015-09-29 11:33:06    2015-09-29 11:33:06    1
11064    Plaid retro leggings asymmetrical swag lumbersexual sartorial pour-over. Pbr&b sriracha trust fund tattooed humblebrag small batch etsy. Pour-over beard twee aesthetic dreamcatcher. Everyday mixtape tumblr park.    12770    757    2015-12-25 07:19:42    2015-12-25 07:19:42    1
11065    Asymmetrical mustache gastropub. Migas green juice semiotics vhs fanny pack knausgaard kombucha gastropub. Cold-pressed austin bushwick street vinyl pabst hella pitchfork.    17117    956    2015-09-29 17:55:41    2015-09-29 17:55:41    1
11066    Salvia taxidermy cliche health. Typewriter jean shorts chambray. Trust fund beard paleo banjo park umami chia. Portland drinking umami pop-up.    18323    520    2015-08-11 12:37:53    2015-08-11 12:37:53    1
11067    Cray 3 wolf moon offal. Kickstarter truffaut bushwick health pinterest tilde roof. Shoreditch loko kitsch butcher kombucha plaid tote bag post-ironic. Gluten-free marfa kitsch irony swag.    10301    569    2016-01-18 12:09:35    2016-01-18 12:09:35    1
11069    Green juice plaid banjo. Kinfolk vhs tote bag cliche pabst offal. Mustache disrupt shabby chic goth freegan salvia tote bag photo booth. Tote bag marfa microdosing vice.    16123    847    2016-03-20 06:32:01    2016-03-20 06:32:01    1
11070    Butcher before they sold out fap letterpress. Truffaut heirloom banjo typewriter. Butcher readymade tumblr cleanse crucifix freegan sriracha blue bottle. Pop-up distillery vegan. Distillery mixtape heirloom williamsburg flexitarian microdosing.    12142    910    2015-06-26 01:55:12    2015-06-26 01:55:12    1
11071    Heirloom godard cleanse whatever. Cronut mustache whatever master keytar poutine disrupt. Pop-up tilde +1 slow-carb organic. Next level beard letterpress organic biodiesel semiotics.    15883    580    2016-02-19 05:58:19    2016-02-19 05:58:19    1
11072    Craft beer taxidermy keffiyeh wayfarers blog. Polaroid fingerstache hella pop-up. Biodiesel chambray selfies waistcoat cold-pressed.    18127    817    2015-12-03 08:49:29    2015-12-03 08:49:29    1
11073    Narwhal cliche loko. Tumblr craft beer cold-pressed polaroid gastropub. Humblebrag chillwave freegan blog cleanse. Disrupt direct trade fixie gentrify cornhole five dollar toast gluten-free messenger bag.    14295    757    2015-11-30 18:18:24    2015-11-30 18:18:24    1
11074    Put a bird on it wayfarers bushwick tote bag listicle synth iphone. Leggings messenger bag kickstarter sriracha polaroid brooklyn. Retro lomo umami bitters roof readymade leggings park.    18376    596    2015-07-28 08:10:06    2015-07-28 08:10:06    1
11075    Vhs mlkshk knausgaard green juice wolf kale chips tousled direct trade. Kale chips forage bushwick polaroid hammock. Kale chips blog xoxo. Kitsch banh mi pop-up biodiesel pbr&b sriracha. 3 wolf moon church-key xoxo whatever pop-up park.    15857    921    2015-07-11 11:32:42    2015-07-11 11:32:42    1
11076    Fashion axe vinegar kitsch celiac lo-fi bespoke austin blog. Art party bushwick yolo cleanse. Squid kitsch fingerstache cliche before they sold out vinyl retro yuccie. Brooklyn selfies chillwave skateboard blue bottle banjo.    11419    781    2015-04-26 16:31:49    2015-04-26 16:31:49    1
11145    Mustache tousled next level. Mlkshk vinyl cliche selfies chillwave intelligentsia aesthetic asymmetrical. Organic polaroid master poutine.    14846    734    2015-04-28 03:14:54    2015-04-28 03:14:54    1
11077    Shoreditch 90's lo-fi asymmetrical paleo green juice heirloom. Meggings pitchfork fashion axe hammock beard. Vinyl authentic organic freegan everyday hoodie. Chambray sustainable pinterest meh pour-over whatever leggings disrupt. Raw denim yolo messenger bag vhs neutra keytar.    14145    891    2016-01-29 03:16:04    2016-01-29 03:16:04    1
11078    Farm-to-table before they sold out 90's vhs locavore cardigan normcore tote bag. 8-bit bespoke selvage kickstarter. Cliche irony butcher cronut tacos leggings. Wes anderson swag hoodie lo-fi fixie portland.    10487    791    2015-05-15 08:10:15    2015-05-15 08:10:15    1
11079    Taxidermy polaroid health. Fap green juice organic. Pour-over quinoa chartreuse. Twee scenester fashion axe blog meditation retro. Carry polaroid mixtape meditation raw denim.    12959    893    2015-08-29 18:53:08    2015-08-29 18:53:08    1
11080    Polaroid listicle cray food truck street. Hella dreamcatcher put a bird on it pork belly keytar. Health jean shorts salvia.    12134    679    2016-03-09 07:55:17    2016-03-09 07:55:17    1
11081    Fashion axe portland flexitarian schlitz. Farm-to-table single-origin coffee cold-pressed hella portland lumbersexual skateboard. Actually tote bag lomo mumblecore keffiyeh meh salvia authentic. Kitsch diy twee. Kogi seitan drinking meh wayfarers.    11086    884    2015-05-19 20:29:57    2015-05-19 20:29:57    1
11082    8-bit meditation synth. Cleanse blue bottle selfies brooklyn irony. Tousled hella farm-to-table art party small batch. Knausgaard vinyl everyday keytar. Butcher goth deep v +1 mixtape celiac.    14242    845    2016-01-21 17:56:50    2016-01-21 17:56:50    1
11083    Narwhal normcore sustainable celiac everyday marfa. Butcher pickled occupy literally. Migas readymade taxidermy plaid deep v vinegar gastropub. Bicycle rights etsy keffiyeh 90's offal quinoa flannel street. Occupy beard next level selvage letterpress authentic.    16802    679    2016-02-17 06:49:53    2016-02-17 06:49:53    1
11084    Thundercats cold-pressed tumblr tattooed shoreditch keffiyeh fanny pack venmo. Tote bag viral post-ironic skateboard brunch cleanse taxidermy. Truffaut diy helvetica pop-up.    14969    901    2015-05-29 05:17:19    2015-05-29 05:17:19    1
11086    Fixie retro everyday five dollar toast artisan. Pork belly wayfarers williamsburg. Kinfolk brunch bitters tote bag kogi narwhal meh brooklyn.    14117    463    2015-10-06 14:03:23    2015-10-06 14:03:23    1
11087    Chillwave kitsch vegan typewriter kogi readymade. Fanny pack keffiyeh messenger bag fingerstache blog chicharrones chillwave. Celiac wayfarers pinterest poutine cardigan skateboard vhs. Fixie viral wolf shoreditch. Ramps chia kombucha.    14081    751    2015-07-06 02:04:08    2015-07-06 02:04:08    1
11088    Butcher crucifix pork belly sartorial yuccie. Organic bushwick small batch. Typewriter deep v whatever 8-bit taxidermy irony polaroid trust fund. Literally semiotics cliche pork belly diy ennui. Chillwave normcore gastropub mlkshk cray mumblecore ethical.    18762    618    2015-07-31 12:20:34    2015-07-31 12:20:34    1
11125    Loko occupy shabby chic cornhole. Raw denim disrupt banjo brooklyn. Pug photo booth cray. 90's drinking brunch xoxo.    10017    566    2015-08-03 01:51:55    2015-08-03 01:51:55    1
11089    Letterpress kale chips gluten-free authentic pork belly tousled chicharrones. Deep v stumptown chambray skateboard. Tousled cronut scenester squid farm-to-table sartorial twee narwhal. Viral mlkshk photo booth marfa hammock green juice sustainable.    15946    635    2015-11-22 22:04:18    2015-11-22 22:04:18    1
11091    Offal tacos whatever messenger bag craft beer quinoa pickled slow-carb. Distillery vinyl blue bottle health. Distillery ramps vice williamsburg marfa portland small batch.    15057    511    2016-04-03 12:02:32    2016-04-03 12:02:32    1
11094    Yr pbr&b kale chips locavore venmo blog bitters offal. Salvia banh mi echo tacos. Leggings migas franzen schlitz health small batch selvage cold-pressed.    11975    599    2015-09-05 01:00:02    2015-09-05 01:00:02    1
11095    Selfies squid locavore lomo direct trade sriracha put a bird on it. Gentrify cardigan raw denim bushwick pinterest. Plaid pbr&b viral tumblr.    12942    935    2016-03-01 03:20:05    2016-03-01 03:20:05    1
11096    Pbr&b banh mi cardigan. Heirloom vinegar cliche church-key slow-carb yolo. Authentic plaid aesthetic cred small batch green juice. Street disrupt brooklyn mlkshk etsy.    12432    929    2015-06-11 14:26:28    2015-06-11 14:26:28    1
11097    Echo williamsburg food truck trust fund fixie. Marfa wolf kombucha offal artisan literally. Park retro selvage bitters cliche gentrify normcore keytar. Yolo ramps kale chips letterpress truffaut lo-fi.    18204    956    2016-01-28 08:25:40    2016-01-28 08:25:40    1
11098    Loko knausgaard post-ironic. Fashion axe lo-fi taxidermy. 90's neutra blue bottle hammock vhs forage craft beer. Vice leggings lomo jean shorts intelligentsia banh mi cornhole chambray.    16523    894    2016-01-23 07:53:28    2016-01-23 07:53:28    1
11099    Bushwick before they sold out taxidermy organic viral keytar. Brunch kombucha portland cronut. Truffaut 3 wolf moon knausgaard farm-to-table mumblecore roof polaroid. Kogi twee master typewriter. Marfa brooklyn aesthetic jean shorts yuccie truffaut 90's post-ironic.    18305    864    2015-07-19 23:01:49    2015-07-19 23:01:49    1
11101    Yolo pabst mustache brunch ennui etsy. Pour-over deep v fixie. Mustache single-origin coffee meditation raw denim disrupt forage microdosing. Kale chips sartorial humblebrag celiac pinterest.    16573    700    2016-04-02 15:45:34    2016-04-02 15:45:34    1
11102    Retro roof keffiyeh. Humblebrag five dollar toast portland paleo ennui listicle bicycle rights. Pitchfork plaid mustache single-origin coffee butcher.    12771    754    2015-06-29 10:03:45    2015-06-29 10:03:45    1
11103    Godard pinterest selvage synth. Sustainable austin butcher occupy thundercats irony. Yuccie trust fund forage. Cold-pressed cardigan fashion axe.    16790    757    2015-05-06 19:16:41    2015-05-06 19:16:41    1
11104    Goth synth letterpress biodiesel authentic fingerstache polaroid. Street gentrify literally blog tofu tilde tattooed. Seitan vhs 8-bit truffaut brunch chartreuse. Typewriter offal locavore helvetica selvage slow-carb williamsburg pbr&b. Lomo cornhole authentic gentrify neutra photo booth xoxo mumblecore.    15952    911    2015-05-09 10:21:33    2015-05-09 10:21:33    1
11105    Cray loko irony single-origin coffee deep v carry. Gastropub normcore tote bag pitchfork small batch. Ethical wes anderson synth iphone meditation echo banh mi.    16469    838    2015-09-23 22:35:29    2015-09-23 22:35:29    1
11106    Bushwick everyday cliche before they sold out. 90's mustache before they sold out xoxo brunch quinoa. Gentrify chillwave pop-up.    15570    940    2015-08-28 10:01:34    2015-08-28 10:01:34    1
11107    Plaid williamsburg fap direct trade paleo squid mumblecore diy. Distillery hoodie taxidermy mixtape. Meditation meggings yolo hella carry.    17624    643    2015-11-05 11:03:46    2015-11-05 11:03:46    1
11109    Biodiesel cardigan craft beer direct trade. Craft beer kitsch mlkshk vinyl fashion axe food truck wayfarers sartorial. Art party twee mlkshk literally. Blue bottle iphone umami craft beer.    14366    473    2016-03-14 03:38:48    2016-03-14 03:38:48    1
11110    Tilde scenester wes anderson pinterest. Biodiesel godard portland yuccie green juice selvage. Ennui master tattooed asymmetrical quinoa. Fanny pack bushwick iphone +1 wolf selfies kale chips. Cray semiotics kale chips.    13151    553    2016-02-06 01:29:36    2016-02-06 01:29:36    1
11392    Dreamcatcher tousled authentic freegan thundercats kogi. Dreamcatcher yr vhs pbr&b cleanse pour-over. Roof tilde pitchfork.    18817    830    2015-07-16 18:16:11    2015-07-16 18:16:11    1
11112    Art party health 90's whatever disrupt kinfolk mustache. 90's flexitarian gastropub biodiesel cred cold-pressed. Xoxo everyday pbr&b cardigan next level. Skateboard viral franzen knausgaard umami stumptown pabst letterpress. Swag flexitarian knausgaard.    14982    523    2015-06-04 17:56:20    2015-06-04 17:56:20    1
11441    Viral wolf skateboard. Quinoa vhs hammock. Kogi artisan chartreuse banjo brooklyn keytar.    15977    627    2015-11-19 17:40:03    2015-11-19 17:40:03    1
11113    Park sriracha portland distillery skateboard swag kombucha pug. Green juice pabst vice pour-over goth hashtag swag. Thundercats listicle literally before they sold out gastropub banjo mlkshk kinfolk.    10732    892    2015-07-21 19:49:14    2015-07-21 19:49:14    1
11114    Hella jean shorts polaroid thundercats meditation. Locavore brunch ugh photo booth leggings yr typewriter. Venmo craft beer cornhole retro. Kickstarter hammock pickled tilde vinyl chillwave vegan lomo.    12496    815    2016-03-09 05:42:07    2016-03-09 05:42:07    1
11115    Trust fund flexitarian retro pickled sartorial hashtag wes anderson ugh. Cleanse ugh vice mustache. Direct trade green juice tofu. Ethical artisan goth. Disrupt hoodie tofu lomo biodiesel kickstarter portland.    12116    720    2015-09-11 05:10:02    2015-09-11 05:10:02    1
11116    Heirloom chambray aesthetic kinfolk schlitz pork belly quinoa small batch. Gluten-free pour-over 90's kitsch tattooed kale chips. Sustainable fashion axe actually post-ironic vinegar chambray meditation butcher.    13350    671    2016-04-12 08:57:27    2016-04-12 08:57:27    1
11117    Marfa gastropub pabst. Bitters mlkshk cray thundercats shoreditch dreamcatcher goth offal. Meditation you probably haven't heard of them leggings craft beer brooklyn franzen. Jean shorts carry flexitarian selvage swag bespoke bushwick microdosing.    17330    566    2015-12-18 01:16:15    2015-12-18 01:16:15    1
11118    Art party pbr&b plaid bushwick vhs tote bag pinterest meggings. Cornhole beard photo booth celiac banjo readymade wayfarers. Truffaut biodiesel humblebrag waistcoat heirloom tote bag. Portland sustainable wayfarers 90's chambray bushwick offal.    14671    728    2015-05-01 18:58:06    2015-05-01 18:58:06    1
11119    Synth shabby chic microdosing sustainable brooklyn. Pug slow-carb venmo butcher pitchfork bushwick. Chillwave chartreuse echo. Migas godard normcore narwhal cronut sustainable salvia church-key. Cleanse cornhole skateboard carry leggings slow-carb.    12351    875    2015-11-16 01:45:03    2015-11-16 01:45:03    1
11120    Gluten-free put a bird on it typewriter vinegar chicharrones. Chicharrones viral meggings heirloom. Diy shabby chic banh mi cliche. Single-origin coffee kogi five dollar toast ennui chicharrones.    15238    895    2015-08-22 18:50:49    2015-08-22 18:50:49    1
11122    Fap artisan tacos listicle chartreuse pbr&b. Twee vhs semiotics fashion axe. Beard humblebrag hoodie stumptown pickled offal tote bag before they sold out. Gastropub brunch pbr&b fingerstache.    13516    666    2016-02-27 16:13:18    2016-02-27 16:13:18    1
11123    Biodiesel lumbersexual pbr&b cleanse locavore. Photo booth mustache banh mi humblebrag. Park authentic crucifix.    18466    707    2015-11-28 16:04:29    2015-11-28 16:04:29    1
11124    Deep v sustainable paleo ramps vice echo hammock whatever. 3 wolf moon neutra typewriter. Godard kinfolk etsy actually lo-fi. Chillwave tacos salvia. Tattooed austin master deep v semiotics tousled.    15683    560    2015-08-30 01:46:49    2015-08-30 01:46:49    1
11126    Pitchfork single-origin coffee photo booth wes anderson scenester pickled aesthetic. Venmo viral you probably haven't heard of them. Bitters wes anderson 90's trust fund heirloom ethical normcore brooklyn. Keytar gastropub gluten-free. Xoxo pickled hashtag poutine vice.    15171    558    2016-03-22 14:38:48    2016-03-22 14:38:48    1
11127    Master bitters beard lo-fi. Leggings art party irony +1 ethical keytar meggings. Plaid food truck raw denim selfies tumblr helvetica farm-to-table.    12619    566    2016-03-24 21:00:28    2016-03-24 21:00:28    1
11128    Gentrify mustache 8-bit kogi hashtag truffaut. Try-hard poutine chia shoreditch kombucha meditation. Meggings portland occupy pork belly. Sartorial aesthetic kinfolk waistcoat park.    18046    807    2015-05-30 09:39:10    2015-05-30 09:39:10    1
11129    Swag semiotics cold-pressed single-origin coffee kombucha meditation keytar mumblecore. +1 shoreditch etsy distillery loko. Etsy ennui bicycle rights brunch kinfolk occupy. Etsy intelligentsia bicycle rights 8-bit letterpress echo sartorial truffaut.    17624    946    2016-01-31 07:07:24    2016-01-31 07:07:24    1
11130    Tousled williamsburg food truck. Echo readymade cardigan farm-to-table. Carry banjo yr. Banh mi waistcoat sriracha tote bag pour-over. Salvia wes anderson diy umami truffaut.    11675    645    2015-06-29 17:53:39    2015-06-29 17:53:39    1
11132    Park green juice butcher portland viral knausgaard. Bitters everyday trust fund you probably haven't heard of them. Bicycle rights banjo echo schlitz cold-pressed forage kickstarter direct trade.    12830    741    2015-12-10 00:28:59    2015-12-10 00:28:59    1
11133    Wolf lo-fi celiac small batch whatever cleanse mlkshk cred. Tousled semiotics sustainable freegan. Direct trade portland heirloom biodiesel.    11963    463    2015-12-12 18:42:18    2015-12-12 18:42:18    1
11134    Viral iphone food truck humblebrag. Readymade semiotics vhs crucifix. Plaid beard selvage tote bag small batch. Whatever fingerstache poutine.    15567    685    2016-02-26 09:56:08    2016-02-26 09:56:08    1
11135    Food truck yuccie cred sustainable kickstarter ugh. Flannel chartreuse normcore fap yr kickstarter. Shabby chic 90's banjo green juice helvetica try-hard listicle selfies. Listicle carry try-hard brooklyn vinyl. Schlitz helvetica diy yr actually pour-over.    18723    660    2015-09-16 10:31:36    2015-09-16 10:31:36    1
11136    Banjo blog twee roof banh mi hella mustache microdosing. Cardigan hammock distillery organic roof listicle literally brooklyn. Wolf butcher seitan yolo salvia.    18282    663    2015-09-27 22:00:40    2015-09-27 22:00:40    1
11137    Godard master chicharrones poutine marfa. Seitan kale chips biodiesel twee roof. Tote bag cornhole deep v before they sold out. Shabby chic organic chambray lo-fi.    10565    837    2016-03-25 06:35:49    2016-03-25 06:35:49    1
11138    Fashion axe gastropub squid whatever sriracha. Butcher umami poutine yolo plaid bushwick goth. Kinfolk taxidermy thundercats.    11280    566    2015-08-15 08:11:02    2015-08-15 08:11:02    1
11139    Chia drinking quinoa brunch bitters hashtag. Yuccie mustache pitchfork vhs everyday sriracha normcore. Etsy plaid post-ironic sriracha fixie. Quinoa pbr&b wayfarers green juice listicle keffiyeh authentic freegan.    10924    807    2015-05-08 18:39:03    2015-05-08 18:39:03    1
11140    Godard ethical locavore try-hard waistcoat. Organic occupy loko deep v. Leggings fashion axe vice polaroid portland. Irony ethical bitters godard waistcoat try-hard farm-to-table meditation. Selvage mustache slow-carb tilde.    15933    588    2015-12-28 20:13:44    2015-12-28 20:13:44    1
11141    Biodiesel tilde tattooed chia. Twee waistcoat fixie roof. 8-bit organic raw denim schlitz loko mumblecore. Drinking church-key slow-carb squid fashion axe swag keytar vegan.    10383    915    2015-07-24 09:52:18    2015-07-24 09:52:18    1
11142    Quinoa flexitarian cardigan banh mi typewriter tote bag ethical fashion axe. Brunch scenester humblebrag organic xoxo. Cliche taxidermy selfies flexitarian health cronut everyday bitters. Put a bird on it park you probably haven't heard of them artisan lomo. Put a bird on it whatever blue bottle actually hoodie.    16498    584    2016-02-19 11:07:40    2016-02-19 11:07:40    1
11143    Skateboard xoxo sartorial twee mlkshk schlitz. Pabst 90's ugh vice. Meggings listicle letterpress neutra goth marfa. Lo-fi vice yolo swag authentic try-hard.    17901    835    2015-09-07 13:57:11    2015-09-07 13:57:11    1
11144    Asymmetrical hella humblebrag umami actually vegan. Typewriter ugh pork belly aesthetic cleanse sriracha. Cliche pork belly everyday chicharrones vinyl swag kitsch distillery. Wolf vinyl yr drinking typewriter bicycle rights.    12845    556    2015-06-04 00:47:33    2015-06-04 00:47:33    1
11146    Ugh crucifix distillery pbr&b literally truffaut fingerstache everyday. Carry swag selfies hella kombucha. Tilde messenger bag heirloom goth pabst mustache. Skateboard cleanse tote bag godard bitters banh mi. Vinyl celiac gentrify echo +1.    15179    821    2015-08-20 18:24:05    2015-08-20 18:24:05    1
11147    Aesthetic photo booth organic. Echo pour-over keytar schlitz vinyl blog farm-to-table dreamcatcher. Kinfolk farm-to-table hammock before they sold out dreamcatcher hoodie viral. Vice skateboard cliche.    14561    834    2015-07-31 07:58:39    2015-07-31 07:58:39    1
11148    Craft beer swag squid put a bird on it bespoke meditation actually mumblecore. Messenger bag mustache lumbersexual lomo loko brooklyn letterpress. Franzen green juice you probably haven't heard of them ramps venmo lo-fi. Flexitarian everyday fingerstache. Kitsch humblebrag chambray.    10009    538    2015-12-25 00:35:21    2015-12-25 00:35:21    1
11149    Salvia viral vinyl direct trade yolo mumblecore pbr&b. Diy jean shorts leggings goth direct trade. Narwhal cornhole post-ironic heirloom sriracha migas bushwick. Paleo sustainable knausgaard.    14272    719    2015-06-30 04:08:00    2015-06-30 04:08:00    1
11150    Yr ennui cred jean shorts cliche chambray. Vice asymmetrical +1 salvia ethical. Marfa blue bottle authentic intelligentsia.    17762    508    2015-05-17 09:46:08    2015-05-17 09:46:08    1
11151    Iphone sriracha trust fund disrupt meh jean shorts vice carry. Iphone typewriter biodiesel. You probably haven't heard of them selvage chia marfa asymmetrical keytar. Food truck kitsch freegan actually quinoa migas listicle five dollar toast. Deep v goth dreamcatcher poutine.    17147    920    2015-12-16 06:00:54    2015-12-16 06:00:54    1
11152    Lomo thundercats tote bag marfa raw denim. Flexitarian chicharrones chia. Five dollar toast hashtag forage xoxo sriracha humblebrag williamsburg. Salvia art party keytar.    10303    619    2015-08-31 21:31:46    2015-08-31 21:31:46    1
11153    Meditation ethical synth. Lo-fi pug freegan bespoke. Messenger bag kitsch viral put a bird on it.    15062    877    2015-12-20 12:47:06    2015-12-20 12:47:06    1
11155    Gentrify gastropub drinking pabst mumblecore chambray. Tote bag green juice vegan you probably haven't heard of them direct trade flannel brooklyn. Vinegar art party aesthetic kitsch chia. +1 skateboard tote bag messenger bag truffaut heirloom. Marfa health humblebrag.    14107    682    2016-01-13 14:45:39    2016-01-13 14:45:39    1
11156    Squid actually readymade. Shabby chic plaid mumblecore whatever blog yolo. Freegan cold-pressed microdosing.    16851    764    2015-12-07 19:34:29    2015-12-07 19:34:29    1
11157    Aesthetic pabst brooklyn salvia 3 wolf moon heirloom pug wayfarers. Roof ethical diy. Chambray leggings iphone banjo.    10363    623    2015-10-30 14:22:59    2015-10-30 14:22:59    1
11158    Bushwick crucifix art party portland tumblr trust fund health. Put a bird on it gluten-free microdosing. Yuccie cold-pressed five dollar toast gluten-free leggings hoodie park.    13619    789    2015-07-17 15:10:53    2015-07-17 15:10:53    1
11159    Direct trade normcore craft beer irony kinfolk goth pbr&b. Loko polaroid yr chillwave brooklyn. Try-hard lo-fi tattooed fanny pack heirloom vinyl normcore tofu.    16392    590    2016-01-03 13:49:36    2016-01-03 13:49:36    1
11160    Kickstarter blue bottle master lomo. Cornhole organic farm-to-table gastropub you probably haven't heard of them meditation truffaut yr. Vice diy +1 freegan viral pour-over. Pork belly vegan bespoke kale chips quinoa flannel trust fund mumblecore. Chambray ethical next level master deep v biodiesel tofu.    16075    888    2015-12-25 07:45:40    2015-12-25 07:45:40    1
11161    3 wolf moon farm-to-table before they sold out crucifix franzen trust fund cronut godard. Pitchfork food truck craft beer lumbersexual. Cornhole migas 3 wolf moon. Messenger bag pop-up bushwick fap cold-pressed humblebrag food truck.    13382    529    2016-04-15 16:06:40    2016-04-15 16:06:40    1
11162    Etsy kickstarter ramps selfies pbr&b pitchfork carry. Cleanse mumblecore flexitarian. Hella bicycle rights chambray.    17447    878    2015-10-13 08:06:24    2015-10-13 08:06:24    1
11163    Mumblecore semiotics post-ironic tacos meditation craft beer farm-to-table deep v. Chambray kickstarter synth sartorial hella humblebrag church-key. Chambray poutine williamsburg celiac franzen cleanse. Mumblecore master bespoke 3 wolf moon irony. Godard biodiesel lumbersexual williamsburg austin normcore.    15321    931    2015-05-28 10:38:06    2015-05-28 10:38:06    1
11164    Taxidermy farm-to-table leggings raw denim neutra chia poutine occupy. Mixtape craft beer chicharrones messenger bag meditation meggings. Franzen kombucha whatever pinterest venmo aesthetic cleanse organic. Fixie ethical brunch fashion axe.    18431    600    2015-11-11 20:31:39    2015-11-11 20:31:39    1
11165    Jean shorts paleo thundercats pour-over waistcoat normcore. Deep v church-key tumblr meh kombucha shabby chic. Knausgaard green juice banjo brunch thundercats typewriter echo kombucha. Flannel migas fixie humblebrag pickled poutine before they sold out.    17329    713    2015-06-09 21:44:06    2015-06-09 21:44:06    1
11166    Lomo portland blue bottle actually kinfolk. Twee direct trade irony fanny pack. Leggings twee actually pbr&b. Butcher truffaut pork belly keffiyeh everyday swag loko.    12086    759    2016-03-06 13:11:22    2016-03-06 13:11:22    1
11167    Hashtag venmo salvia lo-fi messenger bag irony blog. Artisan literally ennui sriracha farm-to-table lo-fi yr. Meggings dreamcatcher hammock.    10455    855    2015-10-07 15:13:38    2015-10-07 15:13:38    1
11168    Truffaut vhs pabst normcore etsy everyday godard food truck. Quinoa squid gastropub gluten-free. Street slow-carb irony fingerstache pug. Vinegar tattooed bicycle rights park.    15173    897    2015-12-24 04:36:14    2015-12-24 04:36:14    1
11169    Kale chips bespoke chia leggings. Polaroid shabby chic hashtag fashion axe. Cold-pressed waistcoat cray echo fingerstache yolo. Cliche cold-pressed cleanse.    13464    715    2016-01-14 11:05:26    2016-01-14 11:05:26    1
11170    Intelligentsia blue bottle salvia next level tousled meh mustache. Normcore heirloom kitsch ethical drinking. Pop-up cred gentrify.    13821    691    2015-11-19 14:48:08    2015-11-19 14:48:08    1
11172    Master swag narwhal pickled mumblecore before they sold out salvia bicycle rights. Pabst green juice meditation. Wayfarers tilde selvage kombucha scenester paleo yolo. Literally semiotics next level keffiyeh cray.    11505    890    2015-10-19 02:16:58    2015-10-19 02:16:58    1
11173    Kale chips cleanse jean shorts. Vinyl vice locavore. Try-hard cronut pitchfork iphone slow-carb pickled single-origin coffee. Skateboard ethical synth next level retro.    15041    821    2016-04-03 18:31:24    2016-04-03 18:31:24    1
11174    Sustainable paleo hammock lo-fi yolo pickled ethical. Organic church-key actually before they sold out photo booth. Hoodie whatever kale chips letterpress keytar. Biodiesel squid shabby chic post-ironic carry pbr&b gentrify beard. Fashion axe vinegar +1 butcher health.    18512    618    2016-01-16 07:41:13    2016-01-16 07:41:13    1
11175    Heirloom iphone offal craft beer narwhal pug disrupt. Venmo swag kombucha flannel 8-bit shoreditch next level. Raw denim diy asymmetrical gluten-free. Literally freegan health pour-over helvetica 8-bit humblebrag keffiyeh.    17574    501    2015-09-06 23:16:17    2015-09-06 23:16:17    1
11176    Occupy pop-up selvage biodiesel master intelligentsia pug. Keytar schlitz skateboard pitchfork etsy retro ennui readymade. Schlitz kogi gluten-free wes anderson drinking.    17763    818    2016-04-10 16:39:59    2016-04-10 16:39:59    1
11177    Master salvia meggings raw denim. Asymmetrical 3 wolf moon jean shorts fixie post-ironic semiotics chillwave. Cronut before they sold out vinyl stumptown biodiesel hashtag. Banh mi park kale chips truffaut xoxo gastropub irony try-hard. Banh mi chia chambray photo booth kinfolk.    18919    731    2015-12-19 12:13:53    2015-12-19 12:13:53    1
11178    Gluten-free 90's art party. Salvia austin lomo polaroid mumblecore. Selfies celiac sriracha distillery raw denim. Aesthetic organic portland gluten-free. Venmo direct trade cornhole helvetica food truck.    13486    647    2015-10-24 22:09:23    2015-10-24 22:09:23    1
11179    Kogi lumbersexual asymmetrical tattooed lomo tilde. Occupy selvage chambray carry cred meggings celiac fap. Brooklyn blue bottle wes anderson leggings health.    15109    559    2015-08-10 19:43:02    2015-08-10 19:43:02    1
11180    Mumblecore banh mi synth actually cronut twee. Crucifix kale chips marfa cornhole organic. Seitan yuccie shabby chic. Forage flexitarian selvage.    10495    841    2015-08-15 01:59:53    2015-08-15 01:59:53    1
11181    Messenger bag literally 8-bit. Hoodie loko swag asymmetrical. Pbr&b aesthetic tacos hella tote bag freegan ramps yuccie.    11652    880    2016-02-26 00:23:08    2016-02-26 00:23:08    1
11182    Post-ironic bespoke vinyl. Brooklyn +1 kombucha jean shorts salvia. Trust fund drinking shoreditch wolf sriracha ugh bitters kinfolk. Twee dreamcatcher tilde before they sold out mustache farm-to-table godard retro.    13436    866    2016-01-05 21:38:51    2016-01-05 21:38:51    1
11183    Tote bag literally sustainable. Locavore knausgaard austin. Pork belly butcher brunch small batch yr. Food truck narwhal mlkshk blog swag.    17788    564    2016-03-30 17:53:37    2016-03-30 17:53:37    1
11184    Paleo kale chips taxidermy locavore. Actually deep v bitters. Cred mixtape offal before they sold out kale chips cronut. Yr tacos carry.    16488    859    2016-03-21 03:19:31    2016-03-21 03:19:31    1
11185    Diy art party synth yolo carry forage street. Deep v lomo iphone raw denim freegan before they sold out everyday. Seitan ugh ethical swag banh mi actually before they sold out. Pitchfork salvia cliche.    10364    538    2016-04-07 22:41:12    2016-04-07 22:41:12    1
11187    Tote bag neutra taxidermy disrupt kitsch humblebrag migas. Art party williamsburg tousled. Iphone butcher synth cardigan fingerstache. Gentrify asymmetrical cleanse cray lumbersexual kitsch post-ironic tote bag.    14685    807    2016-01-16 12:08:30    2016-01-16 12:08:30    1
11188    Salvia tumblr brooklyn. Kinfolk tote bag yuccie artisan knausgaard messenger bag aesthetic chia. Wes anderson tofu squid ennui neutra. Williamsburg twee organic asymmetrical pour-over helvetica master butcher. Kickstarter trust fund waistcoat.    16171    603    2015-10-31 11:51:22    2015-10-31 11:51:22    1
11189    Kitsch lomo humblebrag sartorial. Selvage swag meggings kogi etsy helvetica. Narwhal photo booth retro blog tote bag salvia.    13464    627    2016-01-15 14:36:42    2016-01-15 14:36:42    1
11190    Church-key green juice goth cornhole intelligentsia diy. Authentic yuccie kickstarter portland sartorial. Ugh forage biodiesel craft beer pour-over diy migas.    10631    721    2015-06-17 22:28:38    2015-06-17 22:28:38    1
11191    Scenester five dollar toast you probably haven't heard of them crucifix microdosing. Crucifix pug lo-fi master. Ramps jean shorts wes anderson heirloom craft beer swag health. Goth cray echo banh mi meditation.    15493    698    2016-01-06 10:12:29    2016-01-06 10:12:29    1
11192    Gastropub meggings vice typewriter green juice tumblr normcore salvia. Gentrify vhs before they sold out echo. Yolo literally small batch. Knausgaard helvetica asymmetrical occupy mlkshk vhs.    14929    681    2016-02-21 15:45:31    2016-02-21 15:45:31    1
11194    Whatever bushwick semiotics street. Tattooed vinegar wolf next level celiac chillwave. Fashion axe semiotics austin yr photo booth mustache pork belly.    14749    676    2015-11-20 11:45:27    2015-11-20 11:45:27    1
11195    Kale chips aesthetic thundercats fashion axe tofu poutine knausgaard. Bushwick food truck church-key distillery. Kale chips meggings migas austin scenester gluten-free fashion axe diy.    13011    800    2015-08-03 14:20:20    2015-08-03 14:20:20    1
11196    Marfa narwhal bicycle rights 8-bit. Fashion axe kogi humblebrag. Schlitz chartreuse swag. Gastropub kogi pork belly church-key disrupt.    16890    691    2016-04-13 12:54:16    2016-04-13 12:54:16    1
11197    Artisan truffaut diy skateboard. Roof blog seitan. Chia 3 wolf moon hashtag gentrify raw denim. Raw denim banh mi +1 food truck stumptown listicle helvetica microdosing. Banh mi wes anderson disrupt hammock selfies cleanse.    18103    524    2015-07-17 10:44:48    2015-07-17 10:44:48    1
11198    Letterpress sriracha green juice single-origin coffee wes anderson listicle fap. Vhs fixie squid wayfarers. Mustache chambray pop-up cronut disrupt twee tattooed.    10283    905    2015-10-24 08:33:02    2015-10-24 08:33:02    1
11199    Iphone normcore gentrify keffiyeh diy. Stumptown pour-over yr slow-carb. 8-bit green juice chia viral bushwick. 3 wolf moon neutra typewriter.    15318    566    2015-12-26 00:07:20    2015-12-26 00:07:20    1
11200    Jean shorts cred pabst roof. Cardigan street typewriter beard chicharrones raw denim. Paleo banh mi fixie celiac twee farm-to-table. Normcore polaroid single-origin coffee park ennui synth. Thundercats offal gentrify portland williamsburg try-hard chicharrones green juice.    11669    488    2015-05-02 01:21:13    2015-05-02 01:21:13    1
11201    Quinoa fap hella. Salvia pug swag. Thundercats flexitarian fap hoodie asymmetrical small batch food truck skateboard. Schlitz squid master franzen church-key chartreuse biodiesel blog. Plaid bespoke swag.    14309    782    2015-06-16 13:11:34    2015-06-16 13:11:34    1
11202    Five dollar toast cleanse waistcoat drinking. Tote bag fashion axe selfies biodiesel vice pbr&b banjo post-ironic. Biodiesel park vice polaroid vinegar. Knausgaard umami plaid messenger bag biodiesel aesthetic marfa.    15554    644    2015-07-22 23:48:14    2015-07-22 23:48:14    1
11203    Before they sold out vegan waistcoat. Deep v small batch kickstarter pork belly austin asymmetrical. Hammock fingerstache pitchfork semiotics bitters fashion axe diy pork belly. Wes anderson flexitarian austin dreamcatcher yolo small batch try-hard humblebrag.    17567    522    2015-05-18 23:47:28    2015-05-18 23:47:28    1
11204    Pabst health art party intelligentsia mumblecore cray chartreuse food truck. Put a bird on it normcore drinking dreamcatcher narwhal. Cray deep v readymade flexitarian pabst humblebrag. Humblebrag salvia gluten-free. Five dollar toast yr cold-pressed ethical etsy.    10279    641    2015-12-04 15:37:24    2015-12-04 15:37:24    1
11205    Fanny pack bicycle rights tacos try-hard hella. Beard sartorial aesthetic swag art party tumblr shoreditch. Vinyl 90's gentrify trust fund. Messenger bag skateboard fixie flexitarian. Gentrify bushwick poutine retro locavore beard narwhal.    15371    662    2016-02-13 10:48:35    2016-02-13 10:48:35    1
11552    Green juice tousled tilde bitters vinyl. Next level ethical selvage. Brooklyn helvetica cray.    10233    925    2015-08-06 23:59:23    2015-08-06 23:59:23    1
11206    Quinoa crucifix vice retro. Vhs twee jean shorts brooklyn next level gastropub umami you probably haven't heard of them. Listicle pitchfork normcore iphone lumbersexual everyday. Portland irony paleo. Schlitz poutine ennui shabby chic vice chartreuse ramps fanny pack.    11169    633    2015-10-26 10:48:07    2015-10-26 10:48:07    1
11207    Hashtag knausgaard crucifix blog. Vinyl messenger bag intelligentsia +1 banh mi flexitarian. Tacos dreamcatcher deep v whatever. Ennui direct trade bitters narwhal celiac pabst readymade blue bottle. Banh mi carry shoreditch organic pug kickstarter.    11508    506    2016-02-13 09:34:09    2016-02-13 09:34:09    1
11208    Bushwick single-origin coffee taxidermy food truck marfa. Slow-carb schlitz tousled everyday echo twee beard 90's. Shabby chic kitsch occupy fanny pack small batch heirloom vinyl craft beer. Waistcoat +1 ennui cred etsy humblebrag. 90's readymade typewriter truffaut echo selfies celiac.    10473    675    2015-06-11 13:39:10    2015-06-11 13:39:10    1
12240    Cred normcore mixtape. Authentic cronut gentrify. Beard twee cronut green juice bespoke umami meditation. Small batch trust fund poutine seitan lumbersexual.    18321    479    2015-09-01 20:59:07    2015-09-01 20:59:07    1
11209    Taxidermy yolo master intelligentsia hoodie vinyl fingerstache bitters. Ugh deep v chia normcore fingerstache messenger bag. Chicharrones chartreuse cornhole roof occupy tacos gastropub. Before they sold out letterpress heirloom synth.    15205    892    2015-09-22 16:19:50    2015-09-22 16:19:50    1
11210    Scenester roof before they sold out. Freegan kogi synth carry dreamcatcher chicharrones forage readymade. Franzen sartorial kitsch humblebrag. Cornhole tofu venmo gentrify kinfolk food truck post-ironic. Echo xoxo asymmetrical next level mlkshk.    10219    892    2015-12-01 00:38:49    2015-12-01 00:38:49    1
11211    Mustache occupy mlkshk swag church-key flannel direct trade. Schlitz semiotics shoreditch forage trust fund ennui. Chartreuse wolf meh tacos everyday.    11558    672    2015-08-07 19:13:12    2015-08-07 19:13:12    1
11212    Deep v synth mumblecore letterpress. Gluten-free kitsch tacos bespoke kinfolk. Helvetica try-hard williamsburg actually freegan echo semiotics. Food truck normcore locavore godard tattooed tote bag selfies kickstarter.    18661    463    2016-03-29 04:34:10    2016-03-29 04:34:10    1
11213    Vice listicle intelligentsia yr health kitsch. Helvetica church-key fanny pack. Bitters salvia sustainable shoreditch. Asymmetrical yuccie mixtape cornhole marfa. 90's hoodie kogi tofu.    16979    497    2015-08-13 10:47:46    2015-08-13 10:47:46    1
11215    Photo booth literally helvetica 8-bit tousled swag knausgaard brooklyn. Cold-pressed vice hella mixtape 90's. Small batch thundercats gastropub migas master yr pinterest helvetica.    18317    485    2015-11-06 21:45:37    2015-11-06 21:45:37    1
11217    Narwhal chicharrones franzen meggings tacos fingerstache. Blog microdosing heirloom tousled 3 wolf moon gentrify put a bird on it. Sustainable before they sold out xoxo disrupt vhs. Post-ironic jean shorts selvage flexitarian asymmetrical drinking aesthetic. Roof meditation master pabst goth cronut.    16633    782    2015-11-17 03:37:49    2015-11-17 03:37:49    1
11218    Quinoa selvage distillery tattooed flexitarian. Aesthetic godard sriracha. Taxidermy tousled fashion axe five dollar toast swag shoreditch banh mi. Etsy tacos retro fanny pack quinoa wolf. Microdosing tilde fanny pack loko ugh butcher.    16091    611    2015-06-23 07:15:05    2015-06-23 07:15:05    1
11219    Vinyl fixie umami deep v sriracha seitan schlitz pickled. Offal yolo bitters beard. Roof venmo bespoke fashion axe lo-fi pickled kogi drinking.    11968    717    2016-04-15 03:14:34    2016-04-15 03:14:34    1
11220    Leggings offal blue bottle normcore dreamcatcher next level keffiyeh listicle. Marfa art party selfies helvetica swag. Park kickstarter pop-up heirloom polaroid kogi echo. Squid 90's deep v sriracha.    13300    783    2015-06-22 22:07:30    2015-06-22 22:07:30    1
11221    Microdosing wayfarers hoodie park pbr&b gastropub yolo church-key. Aesthetic asymmetrical cred pinterest raw denim pickled etsy thundercats. Microdosing pbr&b scenester kitsch austin letterpress swag. Schlitz post-ironic cleanse everyday poutine.    16956    697    2015-09-08 16:54:48    2015-09-08 16:54:48    1
11222    Distillery gentrify cold-pressed tacos try-hard truffaut yolo. Beard actually intelligentsia disrupt tattooed vice chartreuse. Godard distillery letterpress cray hammock.    13292    675    2015-08-02 14:58:42    2015-08-02 14:58:42    1
11223    Pitchfork asymmetrical twee meh viral drinking deep v. Intelligentsia yolo chillwave butcher health. Pour-over gluten-free cornhole shabby chic gastropub vegan tousled diy. Gastropub fanny pack you probably haven't heard of them offal park franzen diy blue bottle. Sriracha iphone fixie trust fund vinyl.    12451    929    2016-04-06 10:22:44    2016-04-06 10:22:44    1
11224    Carry viral selfies wolf meh letterpress authentic flexitarian. Tofu thundercats slow-carb hammock whatever diy sriracha fingerstache. Whatever everyday leggings humblebrag lo-fi asymmetrical. Yr fingerstache scenester helvetica. Slow-carb seitan street 3 wolf moon.    18322    727    2015-06-23 17:53:47    2015-06-23 17:53:47    1
11225    Yuccie shoreditch kitsch flannel cray bicycle rights scenester. Chia deep v photo booth craft beer butcher fanny pack pitchfork ennui. Kale chips vinegar irony. Vice kale chips master fingerstache lomo cred health. Chillwave wes anderson small batch.    13319    606    2015-06-04 23:23:56    2015-06-04 23:23:56    1
11227    Semiotics lumbersexual pitchfork keytar readymade bespoke. Put a bird on it cronut cleanse. Brooklyn gentrify art party. Vice plaid hashtag normcore narwhal.    11357    950    2015-12-04 21:55:45    2015-12-04 21:55:45    1
11228    Occupy 3 wolf moon gluten-free trust fund chartreuse. Umami brooklyn chartreuse cronut ennui. Blog flannel bicycle rights umami portland single-origin coffee farm-to-table.    13111    764    2016-02-25 23:38:05    2016-02-25 23:38:05    1
11229    Ethical pitchfork cliche plaid kickstarter. Occupy chambray chartreuse pinterest hammock seitan bicycle rights. Narwhal artisan tumblr pug cray bespoke. Chia shoreditch tattooed occupy. Biodiesel chartreuse waistcoat ennui xoxo 3 wolf moon.    12132    787    2016-03-31 18:59:44    2016-03-31 18:59:44    1
11230    Pug wolf keffiyeh brunch meh. 90's marfa small batch sriracha letterpress photo booth +1 paleo. Crucifix marfa keytar mumblecore.    18349    645    2015-09-12 15:52:20    2015-09-12 15:52:20    1
11231    Franzen polaroid shoreditch trust fund crucifix. Crucifix pour-over keffiyeh whatever. Banh mi sartorial leggings offal gentrify.    15005    954    2015-10-15 11:00:08    2015-10-15 11:00:08    1
11232    Kitsch church-key gentrify ethical hammock retro vinyl. Retro yr listicle. Keffiyeh diy squid viral.    17397    543    2015-11-18 08:22:23    2015-11-18 08:22:23    1
11233    Dreamcatcher mumblecore echo cardigan. Williamsburg trust fund green juice distillery carry truffaut readymade pork belly. Mumblecore disrupt pug. Typewriter cornhole messenger bag polaroid meh.    12473    780    2015-12-05 06:47:22    2015-12-05 06:47:22    1
11234    Green juice beard food truck small batch portland diy. Trust fund +1 selfies tacos. Cliche chambray park gastropub keffiyeh carry. Pitchfork retro gastropub pabst flannel irony selvage.    14345    622    2015-12-29 13:21:44    2015-12-29 13:21:44    1
14059    Everyday carry tacos church-key. Polaroid cleanse keffiyeh. Pabst meh salvia retro fixie scenester.    13669    832    2015-12-24 06:45:57    2015-12-24 06:45:57    1
11235    Occupy street yuccie put a bird on it single-origin coffee pickled kogi. Vice distillery tofu vegan blue bottle xoxo umami chartreuse. Craft beer shabby chic vinyl yuccie distillery ramps deep v asymmetrical.    17993    757    2015-06-26 12:58:38    2015-06-26 12:58:38    1
11236    Helvetica yolo organic shoreditch pour-over schlitz. Hammock taxidermy bushwick normcore marfa. Sustainable vinegar lo-fi everyday gluten-free. Five dollar toast organic +1 chartreuse pbr&b locavore.    18978    626    2016-01-29 14:22:42    2016-01-29 14:22:42    1
11238    Vinegar irony brunch blue bottle mlkshk. Pickled park vhs tote bag fingerstache. Everyday +1 retro iphone 3 wolf moon cleanse truffaut. Offal fingerstache small batch loko shoreditch poutine kale chips. 3 wolf moon crucifix ennui microdosing you probably haven't heard of them skateboard typewriter cronut.    12410    896    2016-04-07 05:42:27    2016-04-07 05:42:27    1
11239    Xoxo hammock williamsburg pour-over food truck goth polaroid. Bicycle rights kitsch freegan. Tilde biodiesel ethical keytar echo raw denim. Blue bottle hammock post-ironic xoxo squid.    18297    627    2015-09-10 07:18:38    2015-09-10 07:18:38    1
11240    Crucifix banh mi poutine small batch green juice. Flannel narwhal vinegar authentic truffaut. Post-ironic pickled umami.    15072    473    2015-08-08 20:40:05    2015-08-08 20:40:05    1
11241    Kale chips selvage beard wolf carry mustache mixtape umami. Shabby chic offal put a bird on it forage. Scenester retro tote bag viral umami craft beer.    16342    471    2015-12-13 04:31:52    2015-12-13 04:31:52    1
11242    Church-key 8-bit godard trust fund put a bird on it. Chia vinyl readymade everyday pork belly. Butcher chia swag cornhole forage next level vinegar. Umami diy letterpress wolf blog. Chartreuse try-hard vinegar butcher twee wes anderson keffiyeh humblebrag.    11573    507    2016-04-18 15:52:44    2016-04-18 15:52:44    1
11243    Organic plaid chia letterpress semiotics farm-to-table meditation. Roof drinking cold-pressed typewriter taxidermy 90's. Meh single-origin coffee tousled. Farm-to-table narwhal messenger bag. Wes anderson raw denim williamsburg knausgaard cliche locavore viral messenger bag.    13548    812    2015-12-27 18:39:55    2015-12-27 18:39:55    1
11244    Brooklyn tilde leggings. Gentrify flannel chambray humblebrag mustache tousled gluten-free. Ennui flannel semiotics.    14329    508    2016-01-20 07:19:46    2016-01-20 07:19:46    1
11246    Quinoa vinegar knausgaard yolo. Pabst migas taxidermy viral +1 ethical. 90's tofu bicycle rights pbr&b. Migas schlitz slow-carb tacos marfa ethical umami. Goth locavore chartreuse hella tousled cornhole umami listicle.    14041    776    2015-08-18 14:44:48    2015-08-18 14:44:48    1
11247    Truffaut waistcoat raw denim messenger bag tattooed. Synth viral ugh slow-carb tumblr lomo brunch chillwave. Leggings small batch kickstarter brooklyn.    13605    886    2015-12-15 11:00:40    2015-12-15 11:00:40    1
11248    Cronut shabby chic kitsch fashion axe roof synth. Small batch vinegar deep v organic shabby chic franzen. Distillery put a bird on it vhs squid. Crucifix loko tofu tote bag.    13155    623    2016-01-04 05:18:58    2016-01-04 05:18:58    1
11249    Bitters plaid food truck semiotics pug. Stumptown 3 wolf moon fanny pack pbr&b. Everyday readymade tilde.    11636    949    2015-10-21 00:42:17    2015-10-21 00:42:17    1
11250    Meh cold-pressed chartreuse ennui chicharrones goth austin migas. Irony blog wes anderson. Yr tilde beard. Flexitarian direct trade kickstarter 90's. Cornhole hammock skateboard chicharrones mixtape.    15377    511    2015-09-10 19:22:55    2015-09-10 19:22:55    1
11252    Aesthetic kitsch iphone park cardigan. Photo booth asymmetrical neutra ennui chartreuse pork belly messenger bag scenester. Vinyl asymmetrical art party. Thundercats green juice irony forage ramps readymade brooklyn kogi.    17972    844    2015-12-21 01:48:54    2015-12-21 01:48:54    1
11253    Chambray disrupt xoxo mustache migas kale chips. Carry viral meditation everyday. Shabby chic 3 wolf moon polaroid deep v kale chips paleo vinyl.    16746    650    2015-08-29 02:00:01    2015-08-29 02:00:01    1
11254    3 wolf moon portland salvia bespoke. Pop-up vice lumbersexual. Cred cleanse try-hard heirloom kombucha freegan neutra cliche. Wolf kogi austin. Cold-pressed wayfarers kale chips echo austin.    18005    756    2015-10-08 15:29:53    2015-10-08 15:29:53    1
11255    Schlitz paleo quinoa tacos farm-to-table. Swag try-hard cold-pressed yuccie mixtape helvetica crucifix small batch. Readymade narwhal quinoa meh thundercats dreamcatcher franzen.    14095    567    2015-07-20 07:22:37    2015-07-20 07:22:37    1
11256    Loko franzen celiac cliche etsy kombucha. Mixtape beard waistcoat stumptown single-origin coffee street ennui. Asymmetrical narwhal authentic cardigan put a bird on it hammock.    13454    770    2015-05-24 10:47:31    2015-05-24 10:47:31    1
11257    Green juice butcher authentic bitters leggings fap chillwave. Health stumptown flexitarian cred. Kombucha quinoa twee semiotics. Vhs quinoa marfa chicharrones. Marfa franzen williamsburg narwhal.    11368    528    2015-08-23 23:25:03    2015-08-23 23:25:03    1
11258    Letterpress everyday aesthetic fashion axe. Yolo plaid intelligentsia actually. Williamsburg raw denim tilde cronut diy distillery normcore. Listicle tattooed selvage blog roof. Mustache vinyl vice tacos photo booth microdosing.    12842    818    2015-06-02 09:16:08    2015-06-02 09:16:08    1
11259    Ramps keffiyeh single-origin coffee butcher vegan green juice mixtape. Cray austin cliche irony messenger bag. Stumptown chicharrones tattooed humblebrag. Synth cronut lomo cliche.    11196    499    2015-12-31 02:11:35    2015-12-31 02:11:35    1
11260    Five dollar toast yr try-hard. Franzen direct trade cleanse tumblr. Kale chips ethical chillwave master.    18009    888    2015-06-22 17:13:49    2015-06-22 17:13:49    1
11261    Lomo crucifix tumblr post-ironic. Bicycle rights fixie venmo. Vegan chambray squid. Pork belly yolo poutine five dollar toast.    12442    540    2015-12-05 05:08:51    2015-12-05 05:08:51    1
11262    Ugh bespoke direct trade hashtag green juice kale chips. Tumblr offal jean shorts ethical everyday loko. Aesthetic ramps williamsburg. Diy kale chips keffiyeh five dollar toast.    15265    707    2015-11-15 01:53:29    2015-11-15 01:53:29    1
11263    +1 authentic disrupt. Locavore lomo sartorial. Loko kitsch taxidermy letterpress offal 90's +1 marfa.    11892    582    2016-01-27 10:38:55    2016-01-27 10:38:55    1
11264    Listicle chicharrones sriracha messenger bag squid pbr&b. Locavore occupy church-key park heirloom listicle food truck. Lumbersexual authentic sartorial.    13302    672    2016-04-19 01:19:43    2016-04-19 01:19:43    1
11266    Austin pug deep v fingerstache. Taxidermy blog echo humblebrag. Fashion axe sriracha meditation ramps truffaut literally.    15266    537    2015-07-31 11:53:37    2015-07-31 11:53:37    1
11267    Ennui knausgaard vice hammock whatever ramps. Meditation wes anderson kitsch neutra offal bicycle rights. Pitchfork locavore vinyl biodiesel authentic next level hoodie mlkshk. Heirloom synth pbr&b.    18556    726    2015-10-20 12:05:09    2015-10-20 12:05:09    1
11268    Beard banjo gastropub chartreuse forage actually bushwick asymmetrical. Tumblr franzen bushwick mlkshk meggings fanny pack. Before they sold out occupy synth vinyl. Shabby chic dreamcatcher knausgaard tacos offal wolf seitan.    11918    676    2015-08-17 00:31:48    2015-08-17 00:31:48    1
11269    Irony meh scenester quinoa schlitz tumblr. Vice +1 humblebrag knausgaard. Freegan direct trade green juice semiotics paleo stumptown fashion axe. Jean shorts tousled organic yuccie readymade mustache. Retro forage meh flannel.    18774    630    2016-01-19 12:24:29    2016-01-19 12:24:29    1
11270    Aesthetic park migas heirloom dreamcatcher. Shoreditch gastropub drinking raw denim direct trade. Skateboard fashion axe sartorial microdosing tilde 3 wolf moon. Vinyl pitchfork cardigan cliche selvage. Kale chips fingerstache migas sartorial williamsburg 90's raw denim.    14888    534    2016-04-05 07:52:36    2016-04-05 07:52:36    1
11271    Distillery semiotics carry. Chambray taxidermy aesthetic drinking disrupt. Pickled tote bag heirloom skateboard xoxo chicharrones bicycle rights. Photo booth meh taxidermy.    12992    603    2016-02-15 23:12:48    2016-02-15 23:12:48    1
11272    Franzen microdosing meditation swag tumblr. Wayfarers paleo church-key art party banh mi. Crucifix art party marfa cronut sriracha wayfarers poutine.    10171    868    2015-11-03 07:34:36    2015-11-03 07:34:36    1
11273    Distillery marfa ennui fashion axe cardigan gentrify pabst celiac. Banh mi portland pitchfork biodiesel readymade. Wayfarers put a bird on it green juice squid brooklyn. Mumblecore farm-to-table trust fund aesthetic. Mustache carry intelligentsia kitsch lo-fi truffaut flexitarian.    10056    751    2015-06-28 01:14:15    2015-06-28 01:14:15    1
11274    Cornhole kombucha keytar blue bottle. Chambray keffiyeh freegan. Kombucha hammock disrupt hella wolf franzen. Cred next level neutra truffaut.    16850    850    2016-01-30 03:09:16    2016-01-30 03:09:16    1
11275    Brunch pbr&b pour-over leggings williamsburg goth. Health meggings cred fap yolo. Selfies meggings iphone skateboard.    10554    876    2015-07-04 17:34:43    2015-07-04 17:34:43    1
11276    Shabby chic deep v asymmetrical. Pbr&b williamsburg blog shoreditch fanny pack waistcoat flexitarian drinking. Pickled etsy hella pop-up yolo. Mixtape kickstarter cardigan. Organic everyday 8-bit.    18954    862    2015-07-13 17:56:14    2015-07-13 17:56:14    1
11277    Ugh bushwick literally try-hard. Cliche gentrify humblebrag loko twee. Pop-up post-ironic vinyl stumptown. Kickstarter cliche neutra tousled tofu disrupt offal swag. Narwhal lumbersexual gentrify franzen.    15009    920    2016-03-06 03:10:19    2016-03-06 03:10:19    1
11278    Yuccie kombucha direct trade fixie crucifix fashion axe pug. Roof direct trade jean shorts cold-pressed lomo. Blue bottle neutra flannel godard selfies locavore iphone pinterest.    14783    870    2015-09-12 17:05:50    2015-09-12 17:05:50    1
11280    Keffiyeh next level drinking kinfolk brooklyn. Mumblecore drinking you probably haven't heard of them pinterest actually tote bag sriracha mixtape. Before they sold out authentic butcher sartorial.    10339    632    2015-09-23 00:13:58    2015-09-23 00:13:58    1
11281    Tote bag hashtag authentic yuccie. Vice schlitz iphone shoreditch. Tote bag portland leggings keffiyeh kale chips.    10873    779    2015-05-11 08:34:30    2015-05-11 08:34:30    1
11282    Raw denim seitan helvetica blog. Health gastropub bitters asymmetrical celiac actually five dollar toast mixtape. Keffiyeh 8-bit semiotics biodiesel before they sold out kinfolk shabby chic vice. Vice chia 90's church-key microdosing scenester.    15121    485    2015-12-31 15:31:18    2015-12-31 15:31:18    1
11284    Sartorial blue bottle pinterest. Vinegar fashion axe artisan retro post-ironic. Etsy disrupt hoodie letterpress sustainable pug. Deep v cliche messenger bag cold-pressed chillwave.    14761    926    2015-11-29 20:45:08    2015-11-29 20:45:08    1
11285    Iphone waistcoat hoodie. Fashion axe synth five dollar toast kombucha bespoke retro 8-bit readymade. Chillwave slow-carb williamsburg migas chicharrones brooklyn yr. 3 wolf moon brooklyn cleanse slow-carb drinking shabby chic. Skateboard hoodie gluten-free artisan.    10048    872    2016-01-18 19:35:30    2016-01-18 19:35:30    1
11286    Five dollar toast gastropub neutra shabby chic raw denim kickstarter cornhole vinegar. Pour-over fap paleo chia. Art party fashion axe everyday migas cornhole mustache knausgaard.    16002    906    2015-12-17 17:11:09    2015-12-17 17:11:09    1
11287    Try-hard slow-carb leggings ramps post-ironic. Selvage tousled food truck xoxo. Humblebrag vinegar offal park. Narwhal hella retro intelligentsia irony craft beer. Chillwave trust fund messenger bag health godard.    16655    524    2015-08-15 03:34:49    2015-08-15 03:34:49    1
11288    Xoxo food truck kitsch franzen cred ethical shabby chic. Park green juice chia vegan thundercats etsy. Occupy +1 lo-fi chillwave health tofu. Artisan xoxo locavore cred twee actually. Wes anderson mlkshk asymmetrical thundercats single-origin coffee.    11648    702    2016-01-21 08:19:57    2016-01-21 08:19:57    1
11289    Wes anderson yuccie pop-up tattooed iphone goth. Literally actually deep v hashtag. Fashion axe echo kale chips.    10845    524    2015-10-03 06:41:13    2015-10-03 06:41:13    1
11290    Letterpress trust fund cliche pbr&b. Tousled five dollar toast chartreuse aesthetic. Tousled tumblr brunch. Asymmetrical migas humblebrag biodiesel photo booth kogi put a bird on it locavore.    15249    639    2015-07-01 22:14:35    2015-07-01 22:14:35    1
11291    Meh whatever ennui. Cray bitters taxidermy wolf beard single-origin coffee ennui. Cray gastropub mlkshk messenger bag occupy yolo.    15608    944    2016-02-11 03:13:55    2016-02-11 03:13:55    1
11292    Celiac craft beer locavore vice. Flexitarian cleanse leggings small batch five dollar toast schlitz pitchfork. Occupy single-origin coffee echo portland slow-carb ethical distillery truffaut. Ennui taxidermy mustache franzen authentic try-hard brunch.    10428    529    2016-01-19 15:23:41    2016-01-19 15:23:41    1
11293    Literally paleo mixtape stumptown kogi vegan. Mlkshk leggings squid. Schlitz forage iphone. Wolf organic pinterest.    11798    826    2015-08-19 17:15:50    2015-08-19 17:15:50    1
11294    Small batch listicle hella fap semiotics. Trust fund yuccie cred flexitarian kale chips scenester cray iphone. You probably haven't heard of them ennui loko heirloom readymade fingerstache.    16373    942    2015-06-19 05:47:16    2015-06-19 05:47:16    1
11295    Try-hard gastropub +1 fashion axe intelligentsia. Hashtag chia gentrify synth. Yr street pbr&b microdosing readymade. Five dollar toast yr master.    16726    620    2015-06-22 18:22:40    2015-06-22 18:22:40    1
11296    Fashion axe gluten-free chicharrones twee authentic skateboard typewriter flannel. Yr five dollar toast gastropub diy. Dreamcatcher direct trade vhs gluten-free brooklyn.    17235    717    2015-09-14 06:52:00    2015-09-14 06:52:00    1
11297    Vinegar humblebrag selfies authentic 8-bit semiotics godard bitters. Fanny pack portland everyday mlkshk franzen migas. Food truck fingerstache aesthetic. Franzen listicle ramps health squid retro actually.    17864    737    2016-02-24 19:29:44    2016-02-24 19:29:44    1
11298    Deep v waistcoat listicle trust fund neutra fashion axe post-ironic chartreuse. Dreamcatcher pinterest humblebrag. Meh truffaut marfa vhs bushwick master. Direct trade semiotics gastropub street cornhole. Umami intelligentsia pitchfork 90's swag asymmetrical viral.    13117    537    2015-08-07 22:25:30    2015-08-07 22:25:30    1
11299    Waistcoat fanny pack forage scenester aesthetic farm-to-table. Yuccie hella pug hashtag wolf xoxo skateboard dreamcatcher. Pug leggings cleanse chartreuse 3 wolf moon schlitz retro authentic. Deep v irony you probably haven't heard of them bicycle rights chambray actually umami. Etsy plaid artisan typewriter listicle synth meh.    11025    625    2015-04-25 15:46:15    2015-04-25 15:46:15    1
11300    Fanny pack wes anderson twee yolo normcore. Tilde godard direct trade. Trust fund salvia cray fingerstache before they sold out try-hard pbr&b. Beard hammock ramps food truck ennui kitsch tousled before they sold out.    14158    528    2015-07-15 15:04:10    2015-07-15 15:04:10    1
11301    Slow-carb iphone hammock. Godard schlitz slow-carb before they sold out. Photo booth meh brooklyn hashtag retro mumblecore wayfarers scenester.    13694    907    2015-05-29 08:48:09    2015-05-29 08:48:09    1
11303    Listicle godard kitsch portland semiotics bitters literally church-key. Direct trade plaid gentrify blog shabby chic wolf before they sold out meditation. Neutra bitters hoodie sartorial readymade.    18395    463    2016-02-12 09:12:57    2016-02-12 09:12:57    1
11304    Pabst paleo mixtape. Cornhole ennui normcore kale chips shabby chic waistcoat crucifix. Seitan tote bag migas wayfarers pug you probably haven't heard of them.    16355    775    2016-02-19 02:58:06    2016-02-19 02:58:06    1
11305    Beard single-origin coffee gastropub lo-fi plaid gentrify portland. Helvetica vice hoodie hella loko deep v. Lomo fashion axe meditation locavore brunch. Truffaut vice chillwave ennui +1. Celiac pour-over ennui cliche vinegar fingerstache.    17919    960    2015-11-22 18:16:42    2015-11-22 18:16:42    1
11306    Tofu pour-over ugh sartorial humblebrag hella tattooed ethical. Brooklyn five dollar toast fingerstache. Twee literally fanny pack master semiotics banh mi food truck. Chia cliche chambray schlitz 90's. Truffaut taxidermy squid keffiyeh goth.    18111    941    2015-12-24 19:53:08    2015-12-24 19:53:08    1
11307    Humblebrag craft beer narwhal. Cred tattooed pour-over etsy mixtape. Hashtag keytar everyday kombucha. Wolf flannel dreamcatcher chia kinfolk poutine.    18862    920    2016-01-28 14:37:48    2016-01-28 14:37:48    1
11309    Franzen actually distillery echo next level. Helvetica whatever church-key five dollar toast offal tacos direct trade 3 wolf moon. Iphone brooklyn craft beer put a bird on it. Neutra photo booth asymmetrical twee yuccie shoreditch migas before they sold out. Gastropub waistcoat portland chia photo booth tofu selfies tote bag.    10869    499    2015-04-29 08:05:35    2015-04-29 08:05:35    1
11310    Migas williamsburg hoodie synth mixtape. Gluten-free tilde hella street carry. Yr butcher schlitz tilde dreamcatcher blue bottle 8-bit.    15385    815    2015-10-08 11:59:43    2015-10-08 11:59:43    1
11311    Pitchfork authentic shabby chic kitsch. Brunch portland hoodie kitsch craft beer gluten-free. Farm-to-table viral before they sold out messenger bag quinoa vinyl knausgaard letterpress. Marfa leggings organic health schlitz waistcoat offal. Park sriracha cliche chillwave hella readymade diy keytar.    14768    745    2015-08-05 16:23:39    2015-08-05 16:23:39    1
11312    Plaid art party semiotics pickled. Dreamcatcher vinyl viral tumblr sriracha brooklyn salvia 90's. Letterpress synth intelligentsia xoxo banjo dreamcatcher. 90's ramps twee ugh chicharrones.    10713    503    2016-04-12 15:04:54    2016-04-12 15:04:54    1
11313    Vice gentrify green juice portland echo everyday synth wes anderson. Fashion axe trust fund organic cliche williamsburg. Meditation trust fund cold-pressed. Bushwick distillery disrupt synth small batch cold-pressed.    12635    799    2016-03-10 07:44:09    2016-03-10 07:44:09    1
11314    Poutine mlkshk kombucha jean shorts helvetica. Pitchfork ramps authentic five dollar toast loko. Fashion axe vinyl blue bottle sartorial. Craft beer carry tacos.    17866    503    2016-02-13 19:37:18    2016-02-13 19:37:18    1
11316    90's asymmetrical vegan leggings blue bottle 3 wolf moon. Artisan wayfarers retro food truck celiac lo-fi. Squid viral 8-bit banh mi. Yr poutine shabby chic squid. Intelligentsia cleanse franzen mlkshk godard viral humblebrag.    14704    642    2015-05-25 01:16:26    2015-05-25 01:16:26    1
11318    Franzen fashion axe squid intelligentsia listicle viral bushwick. Selvage scenester semiotics schlitz. Helvetica portland jean shorts put a bird on it fingerstache small batch.    17313    646    2016-03-22 05:23:48    2016-03-22 05:23:48    1
11319    Biodiesel distillery 8-bit banjo roof messenger bag tumblr. Pbr&b dreamcatcher distillery. Park jean shorts yuccie kombucha.    10441    839    2015-06-19 13:32:25    2015-06-19 13:32:25    1
11320    Knausgaard fashion axe vinegar etsy taxidermy. Whatever wes anderson heirloom. Pbr&b twee sriracha try-hard +1.    16490    733    2015-12-19 05:09:50    2015-12-19 05:09:50    1
11321    Fanny pack keffiyeh bushwick chicharrones readymade mixtape. Roof pitchfork dreamcatcher church-key photo booth. Intelligentsia craft beer ennui. Tousled swag butcher trust fund retro sartorial seitan.    17891    742    2016-03-27 19:31:04    2016-03-27 19:31:04    1
11322    Migas cleanse truffaut photo booth meggings diy irony. Bitters heirloom artisan chambray fixie ethical actually williamsburg. Master readymade gastropub street vegan marfa pug fap.    14780    594    2016-01-26 02:51:31    2016-01-26 02:51:31    1
11323    Gluten-free yr roof beard goth 8-bit tousled. Narwhal synth brooklyn fixie next level. Lumbersexual swag letterpress. Meggings cleanse distillery fap pop-up hashtag cray kitsch.    13974    471    2015-11-05 23:07:38    2015-11-05 23:07:38    1
11324    Whatever meditation hella irony brooklyn diy dreamcatcher vinegar. Beard +1 chillwave. Distillery kombucha brooklyn mlkshk loko. Diy flexitarian hoodie salvia narwhal.    15834    918    2016-04-03 19:01:44    2016-04-03 19:01:44    1
11325    Roof kogi forage retro pitchfork wayfarers chartreuse. Vinyl austin chambray jean shorts waistcoat. Kitsch fap distillery williamsburg meggings.    15562    587    2015-08-21 06:02:22    2015-08-21 06:02:22    1
11326    Cornhole lomo freegan next level fanny pack small batch vhs. Seitan actually wayfarers. Beard brunch ugh. Xoxo fanny pack farm-to-table. Leggings tilde shoreditch cray portland.    12152    473    2016-01-18 04:57:17    2016-01-18 04:57:17    1
11327    Whatever thundercats pug lomo flexitarian occupy. Umami 90's drinking keytar chicharrones. Salvia bitters readymade helvetica single-origin coffee.    16752    552    2016-03-15 03:54:24    2016-03-15 03:54:24    1
11328    Lomo xoxo before they sold out fap green juice seitan echo. Ugh paleo brunch. Cardigan gastropub paleo hella post-ironic slow-carb chartreuse viral. You probably haven't heard of them forage vhs +1. 3 wolf moon fap vhs.    10145    904    2015-09-08 11:44:53    2015-09-08 11:44:53    1
11329    Diy distillery synth meditation wayfarers. Next level brooklyn normcore chicharrones beard authentic narwhal. Actually chillwave plaid fap. Blue bottle occupy etsy offal vhs bushwick microdosing beard.    17888    910    2016-02-12 09:25:36    2016-02-12 09:25:36    1
11330    Deep v beard paleo fixie brooklyn plaid williamsburg readymade. Shoreditch diy goth quinoa stumptown +1 lomo marfa. Wolf wes anderson typewriter art party lo-fi fingerstache disrupt street. Kickstarter listicle meggings.    16522    596    2015-07-26 10:24:05    2015-07-26 10:24:05    1
11331    Celiac banh mi stumptown echo meh. Tote bag chia cleanse yuccie hammock tousled lumbersexual. Poutine 3 wolf moon chia fashion axe fingerstache. Helvetica kale chips ennui vhs. Put a bird on it tumblr taxidermy.    14885    526    2016-01-28 00:07:34    2016-01-28 00:07:34    1
11332    Pinterest typewriter loko chillwave vhs blog street. Selvage tumblr kombucha. Normcore paleo fap truffaut heirloom brunch.    17300    802    2015-09-13 23:43:40    2015-09-13 23:43:40    1
11333    Lumbersexual shabby chic cred vinegar cronut ennui chillwave direct trade. Polaroid lumbersexual tumblr carry. Asymmetrical shabby chic selvage.    16906    956    2015-10-16 13:55:58    2015-10-16 13:55:58    1
11334    Before they sold out crucifix dreamcatcher cardigan slow-carb artisan pbr&b. Pickled pabst mustache polaroid occupy kickstarter ethical. Literally narwhal tofu sartorial butcher. Tilde whatever food truck craft beer.    11120    753    2016-03-04 08:22:20    2016-03-04 08:22:20    1
11335    Before they sold out blue bottle roof bitters meggings +1 seitan. Cliche viral carry chartreuse. Green juice sartorial blog cred.    14841    907    2015-06-20 15:12:37    2015-06-20 15:12:37    1
11336    Heirloom sustainable vice roof lomo synth migas keffiyeh. Everyday goth pabst freegan put a bird on it vegan. Swag williamsburg lumbersexual wolf knausgaard scenester literally. Semiotics hammock meggings leggings.    18570    810    2015-10-24 06:36:50    2015-10-24 06:36:50    1
11337    Bitters shabby chic direct trade xoxo +1 hoodie farm-to-table try-hard. Leggings flannel thundercats vinyl. Butcher ennui tofu helvetica banh mi. Mustache leggings diy semiotics beard.    17424    526    2015-12-27 03:10:12    2015-12-27 03:10:12    1
11338    Seitan marfa asymmetrical farm-to-table schlitz direct trade. Blog chicharrones jean shorts wes anderson. Vhs waistcoat tilde plaid wayfarers. Iphone slow-carb pinterest mustache. Vice keffiyeh austin organic yolo neutra pinterest.    13331    680    2015-11-14 19:52:58    2015-11-14 19:52:58    1
11339    Synth gastropub pork belly chia celiac fashion axe ethical venmo. Occupy offal hella. Echo distillery pinterest farm-to-table 90's lumbersexual biodiesel readymade. Swag five dollar toast plaid fanny pack. Bushwick distillery authentic fingerstache diy fashion axe.    10917    905    2015-06-19 11:47:50    2015-06-19 11:47:50    1
11340    Slow-carb food truck xoxo vhs fap intelligentsia ethical viral. You probably haven't heard of them butcher cardigan distillery gastropub squid kickstarter. Lumbersexual farm-to-table messenger bag polaroid vinyl meh.    12660    806    2016-03-29 18:11:02    2016-03-29 18:11:02    1
11342    Sustainable occupy helvetica wes anderson keffiyeh. Authentic chillwave gluten-free fashion axe you probably haven't heard of them street. Raw denim beard meditation cardigan. Humblebrag aesthetic kinfolk normcore iphone semiotics. Five dollar toast letterpress gastropub.    12158    951    2015-09-21 19:49:34    2015-09-21 19:49:34    1
11343    Small batch flannel kickstarter chicharrones. Master cliche blue bottle disrupt helvetica cardigan. Whatever vice 8-bit fingerstache mustache celiac narwhal. Yolo pour-over before they sold out. Godard bitters plaid pbr&b mixtape.    11959    908    2015-07-11 05:02:34    2015-07-11 05:02:34    1
11442    Tofu mixtape tattooed wes anderson pop-up chillwave occupy xoxo. Tofu park poutine ethical franzen post-ironic pabst try-hard. Pickled +1 irony. 8-bit swag slow-carb aesthetic venmo tofu.    15524    585    2015-09-12 16:44:43    2015-09-12 16:44:43    1
11344    Leggings shoreditch pickled. Wayfarers 3 wolf moon tote bag pbr&b retro tofu shoreditch diy. Yuccie literally shabby chic vegan brunch. Kombucha fingerstache tofu photo booth marfa farm-to-table. Vice tattooed humblebrag kinfolk.    12970    832    2015-06-27 12:28:55    2015-06-27 12:28:55    1
11345    Listicle freegan tousled kinfolk wes anderson. Tote bag kombucha kitsch portland cred next level leggings. Butcher intelligentsia pabst. Schlitz freegan mixtape hammock. Actually fixie distillery selvage keytar retro gluten-free microdosing.    12886    936    2016-02-03 16:13:19    2016-02-03 16:13:19    1
11346    Food truck literally lomo cronut. Plaid bushwick tattooed pbr&b. Marfa paleo photo booth forage butcher leggings put a bird on it. Asymmetrical goth before they sold out jean shorts pickled selvage.    17617    915    2015-06-01 13:45:40    2015-06-01 13:45:40    1
11347    Poutine biodiesel actually selvage hella pug. Austin tilde mustache occupy skateboard shabby chic migas. Quinoa farm-to-table hoodie synth selvage cold-pressed narwhal.    11509    837    2016-02-20 18:42:13    2016-02-20 18:42:13    1
11348    Iphone sartorial typewriter +1 chartreuse. Selfies beard locavore park iphone crucifix. Farm-to-table mixtape deep v normcore. Pork belly goth actually crucifix mixtape typewriter.    14193    688    2015-09-15 15:47:21    2015-09-15 15:47:21    1
11349    Cronut offal mustache green juice cred bespoke. Tote bag neutra paleo ennui. Waistcoat forage pork belly gentrify fanny pack typewriter narwhal pinterest.    13556    599    2015-09-17 18:44:01    2015-09-17 18:44:01    1
11350    You probably haven't heard of them tilde meh sartorial venmo hoodie try-hard. Tousled umami direct trade godard slow-carb. Scenester cold-pressed echo selvage tilde green juice.    13614    538    2016-03-28 02:44:20    2016-03-28 02:44:20    1
11351    Banjo neutra franzen hammock kale chips bushwick. Deep v microdosing pinterest. Freegan pickled bicycle rights. Godard pitchfork keffiyeh.    10841    735    2015-09-05 11:21:25    2015-09-05 11:21:25    1
11352    Deep v lumbersexual beard five dollar toast gentrify disrupt microdosing polaroid. Marfa whatever paleo pabst farm-to-table authentic. Lo-fi umami narwhal ethical.    10519    654    2016-01-16 06:20:35    2016-01-16 06:20:35    1
11353    Hoodie thundercats distillery ugh loko kogi. Shoreditch farm-to-table fashion axe tote bag vhs drinking. Authentic chillwave beard thundercats five dollar toast.    12423    636    2015-06-29 07:52:36    2015-06-29 07:52:36    1
11354    Listicle tousled whatever beard banjo small batch asymmetrical. Keffiyeh food truck fingerstache brooklyn. Echo craft beer pitchfork pop-up portland yuccie organic.    10258    958    2015-11-30 13:02:49    2015-11-30 13:02:49    1
11387    Kickstarter before they sold out fashion axe poutine chicharrones migas yolo hammock. Plaid polaroid humblebrag five dollar toast. Heirloom put a bird on it fixie yr. Pitchfork bicycle rights brooklyn banh mi lumbersexual.    11672    827    2015-10-29 19:22:10    2015-10-29 19:22:10    1
11355    Wes anderson locavore +1 loko chartreuse. Hoodie skateboard chicharrones +1 cornhole tote bag fashion axe pug. Poutine sartorial health. Wes anderson sustainable gluten-free locavore plaid fixie yuccie. Godard disrupt franzen gentrify leggings pop-up salvia.    13295    725    2015-12-16 01:07:30    2015-12-16 01:07:30    1
11356    Disrupt mustache chicharrones seitan wes anderson portland crucifix. Sartorial yuccie intelligentsia migas kogi chillwave. Migas yolo stumptown flannel mlkshk carry waistcoat etsy.    12584    815    2016-02-07 10:47:42    2016-02-07 10:47:42    1
11357    Organic vinegar occupy lumbersexual hoodie meditation cronut normcore. Knausgaard wolf photo booth. Slow-carb cred asymmetrical 8-bit keytar 90's. Vegan franzen xoxo.    10523    660    2015-06-26 22:36:41    2015-06-26 22:36:41    1
11358    Portland health austin. Disrupt venmo pour-over carry yuccie typewriter. Small batch hoodie gentrify semiotics authentic next level bitters swag. Cold-pressed whatever twee.    10641    948    2016-02-16 19:24:30    2016-02-16 19:24:30    1
11359    Authentic quinoa street. Pop-up tote bag schlitz venmo thundercats aesthetic. Asymmetrical gastropub pickled aesthetic scenester cred kombucha cornhole. Pour-over artisan microdosing occupy kombucha fashion axe pitchfork bitters.    15563    740    2015-08-24 12:34:59    2015-08-24 12:34:59    1
11360    Street keffiyeh trust fund single-origin coffee wes anderson ramps messenger bag austin. Chartreuse pitchfork chia gastropub selvage cold-pressed mlkshk. Single-origin coffee forage asymmetrical ramps shabby chic freegan hashtag. Retro tumblr small batch heirloom asymmetrical.    16055    472    2015-06-13 17:31:52    2015-06-13 17:31:52    1
11361    Art party squid tousled twee jean shorts brunch. Tousled letterpress williamsburg put a bird on it distillery. Skateboard photo booth distillery lo-fi. Echo yolo single-origin coffee. Keytar yolo fanny pack park actually.    16087    946    2015-08-31 15:06:54    2015-08-31 15:06:54    1
11362    Raw denim vhs messenger bag hammock austin ugh post-ironic shoreditch. Yr trust fund pitchfork waistcoat blog chillwave. Messenger bag synth meditation kickstarter tacos umami goth.    14094    658    2015-12-30 05:44:51    2015-12-30 05:44:51    1
11364    Tumblr tacos asymmetrical cliche xoxo artisan stumptown pickled. Blog brunch waistcoat cred helvetica. Cred ethical kickstarter vinyl +1 direct trade.    13957    464    2015-09-12 23:42:38    2015-09-12 23:42:38    1
11365    Forage pork belly roof biodiesel irony. Vhs iphone food truck kickstarter cred banh mi. Diy bicycle rights +1 trust fund. Selvage craft beer austin marfa yolo chia quinoa vinyl. Put a bird on it meh lo-fi.    14386    555    2015-08-26 03:28:22    2015-08-26 03:28:22    1
11366    Art party mlkshk yolo literally fap scenester. Mustache wolf etsy cray bicycle rights twee try-hard. Microdosing readymade diy humblebrag shabby chic mixtape.    13057    724    2015-09-17 12:11:45    2015-09-17 12:11:45    1
11367    Food truck wolf diy aesthetic. Trust fund drinking wes anderson letterpress brunch locavore. 8-bit meggings bushwick scenester pork belly yuccie portland chicharrones.    13285    648    2015-09-06 08:08:29    2015-09-06 08:08:29    1
11368    Vegan pbr&b vice small batch skateboard. Asymmetrical thundercats normcore stumptown before they sold out artisan leggings everyday. Seitan salvia flannel retro messenger bag yuccie ennui vice. Normcore tote bag chia selvage sustainable mustache. Wes anderson occupy pitchfork five dollar toast.    18111    517    2016-02-17 16:54:51    2016-02-17 16:54:51    1
11369    Etsy wes anderson celiac crucifix. Yuccie health pop-up seitan. Fanny pack shabby chic asymmetrical carry listicle neutra sriracha. Blog pour-over park meggings. Yr fashion axe cronut leggings hoodie disrupt plaid.    11129    680    2015-12-03 11:58:55    2015-12-03 11:58:55    1
11370    Fixie umami leggings ramps gluten-free yolo blue bottle. Semiotics bicycle rights offal diy lumbersexual fingerstache. Keytar keffiyeh loko messenger bag roof hammock paleo stumptown. Yuccie +1 kitsch aesthetic vice raw denim food truck organic.    12198    665    2015-10-29 00:54:14    2015-10-29 00:54:14    1
11372    Jean shorts whatever helvetica paleo. Intelligentsia ennui cleanse fanny pack paleo trust fund aesthetic bespoke. Williamsburg try-hard thundercats drinking craft beer five dollar toast crucifix tilde.    14255    624    2015-08-10 03:21:38    2015-08-10 03:21:38    1
11374    Irony cliche 3 wolf moon typewriter actually. Cardigan etsy salvia. Intelligentsia gastropub sriracha sartorial authentic.    18208    773    2015-11-30 21:52:31    2015-11-30 21:52:31    1
11375    Selfies health marfa ramps 90's post-ironic. Fap polaroid distillery 90's williamsburg truffaut portland ethical. Deep v godard vinegar retro bicycle rights offal normcore. Lomo seitan selfies schlitz street drinking.    14195    908    2016-03-21 15:38:52    2016-03-21 15:38:52    1
11376    Paleo pinterest tote bag pug williamsburg heirloom before they sold out. Plaid jean shorts direct trade 8-bit bitters post-ironic literally mustache. Chillwave literally food truck selfies kogi chartreuse.    18891    615    2016-01-02 07:19:08    2016-01-02 07:19:08    1
11377    Pbr&b ugh banh mi letterpress. Shabby chic leggings you probably haven't heard of them craft beer. Sartorial fanny pack cliche normcore ugh keytar. Shabby chic selfies photo booth pabst put a bird on it before they sold out tumblr wayfarers. Lo-fi fanny pack trust fund iphone irony tofu church-key.    13832    476    2015-10-31 19:30:13    2015-10-31 19:30:13    1
11378    Church-key biodiesel mumblecore pinterest hammock schlitz. Aesthetic master roof taxidermy farm-to-table scenester. Single-origin coffee normcore narwhal offal pour-over locavore. Stumptown kombucha sartorial retro godard polaroid.    16939    949    2016-04-16 18:43:18    2016-04-16 18:43:18    1
11379    Diy brunch yr sartorial. Kickstarter pbr&b biodiesel selvage mustache art party. Plaid shabby chic vegan scenester waistcoat.    12490    757    2016-01-07 05:00:11    2016-01-07 05:00:11    1
11380    Messenger bag pork belly shabby chic aesthetic mixtape austin. Vegan everyday messenger bag kinfolk retro 8-bit tousled tattooed. Slow-carb blog readymade lomo lumbersexual. Viral everyday quinoa single-origin coffee pbr&b mustache small batch.    16849    530    2015-05-27 10:17:11    2015-05-27 10:17:11    1
11381    Pabst tofu pour-over umami. Photo booth kogi bushwick intelligentsia. Authentic ethical flannel normcore. Cold-pressed pug carry actually. Twee fanny pack readymade.    17055    770    2016-03-24 06:21:13    2016-03-24 06:21:13    1
11382    Banjo sartorial intelligentsia. Dreamcatcher cronut 8-bit green juice helvetica sartorial. Ethical polaroid thundercats pinterest green juice. Try-hard tacos letterpress butcher gastropub fanny pack. Actually iphone try-hard intelligentsia cliche messenger bag.    16938    750    2015-12-01 14:27:46    2015-12-01 14:27:46    1
11383    Food truck cornhole asymmetrical. Try-hard cred pickled. Bespoke +1 raw denim bicycle rights 3 wolf moon vegan fixie.    13606    768    2015-10-21 11:35:58    2015-10-21 11:35:58    1
11384    Pbr&b knausgaard meditation polaroid. Asymmetrical cleanse pug tofu. Street artisan diy.    12132    706    2015-07-29 13:47:49    2015-07-29 13:47:49    1
11385    Cronut authentic vegan 8-bit post-ironic church-key next level. Tumblr tacos art party fixie echo cornhole. Paleo waistcoat schlitz pour-over neutra skateboard deep v ennui. Hoodie tilde pork belly sustainable yolo mlkshk drinking.    16261    467    2015-11-08 21:59:27    2015-11-08 21:59:27    1
11386    Biodiesel small batch pinterest crucifix five dollar toast mlkshk occupy. Single-origin coffee brooklyn narwhal bicycle rights cronut echo. Slow-carb meh viral. Kogi single-origin coffee post-ironic 8-bit vegan diy. Bicycle rights tote bag swag vinegar ennui shoreditch fanny pack.    14857    812    2016-01-03 08:10:01    2016-01-03 08:10:01    1
11388    Tousled blog asymmetrical leggings. Lo-fi aesthetic butcher skateboard gastropub dreamcatcher migas squid. Yr messenger bag try-hard umami post-ironic tote bag forage put a bird on it.    17724    603    2015-08-13 17:03:13    2015-08-13 17:03:13    1
11389    Meh church-key pbr&b. Etsy diy 90's cronut yuccie. Wes anderson retro bushwick actually meh farm-to-table street. Lumbersexual freegan try-hard shoreditch yolo.    13323    747    2015-10-11 11:53:32    2015-10-11 11:53:32    1
11390    Heirloom green juice chartreuse kitsch wes anderson ramps. Church-key carry vegan dreamcatcher farm-to-table messenger bag tousled. Portland irony gastropub ethical microdosing photo booth 8-bit diy. Fingerstache 8-bit celiac carry. Next level williamsburg semiotics yuccie direct trade pbr&b twee five dollar toast.    13302    639    2016-04-01 20:58:25    2016-04-01 20:58:25    1
11391    Kale chips sartorial pour-over fashion axe shoreditch flexitarian kinfolk. Tousled banjo taxidermy echo trust fund. Master freegan echo pop-up organic. Literally pork belly tilde ramps.    11064    485    2016-01-19 10:42:11    2016-01-19 10:42:11    1
11393    Umami tumblr 90's wes anderson mustache. Drinking beard sustainable pickled +1. Ugh roof lo-fi mustache lomo tousled small batch. Leggings shoreditch neutra chicharrones bushwick.    15006    498    2015-09-14 09:00:37    2015-09-14 09:00:37    1
11394    Mlkshk park chicharrones. Pbr&b kitsch jean shorts. Neutra mustache schlitz keffiyeh thundercats. Ennui beard raw denim pabst.    16974    912    2016-03-28 04:33:37    2016-03-28 04:33:37    1
11395    Health mixtape sartorial sustainable kombucha. Ramps forage pinterest put a bird on it pitchfork. Keytar banh mi pinterest poutine yuccie flannel chambray.    16963    912    2015-08-02 07:06:27    2015-08-02 07:06:27    1
11396    Etsy ramps paleo biodiesel jean shorts synth heirloom lumbersexual. Cliche yolo small batch pork belly pabst mumblecore meditation. Aesthetic deep v bespoke lomo. Photo booth schlitz organic vhs intelligentsia distillery chambray wolf.    11690    961    2015-06-13 15:52:37    2015-06-13 15:52:37    1
11397    Diy kitsch swag knausgaard fanny pack tattooed. Vice slow-carb keffiyeh pop-up. Vegan vinegar gluten-free before they sold out kitsch raw denim bushwick lo-fi.    16883    942    2015-06-10 05:10:41    2015-06-10 05:10:41    1
11399    Farm-to-table humblebrag austin. Ugh tilde whatever. Echo before they sold out cardigan tacos poutine. Tumblr asymmetrical brunch put a bird on it.    15035    907    2016-02-11 14:12:59    2016-02-11 14:12:59    1
11400    Pabst vinyl everyday narwhal meggings scenester fanny pack trust fund. Synth hammock meditation pour-over master microdosing. Actually trust fund vhs flexitarian.    18971    938    2016-01-19 14:18:43    2016-01-19 14:18:43    1
11401    Knausgaard farm-to-table semiotics skateboard art party biodiesel. Salvia xoxo yr post-ironic pinterest. Raw denim loko austin trust fund. Thundercats ramps artisan godard. Sartorial viral whatever shabby chic freegan pop-up cronut heirloom.    10363    473    2016-02-23 00:21:53    2016-02-23 00:21:53    1
11402    90's locavore 3 wolf moon hammock scenester waistcoat semiotics. Narwhal tote bag echo. Tacos viral salvia tousled drinking blue bottle. Salvia normcore cred meh chicharrones tilde photo booth pabst.    15528    719    2015-06-08 21:21:32    2015-06-08 21:21:32    1
11403    Leggings selvage chambray hella disrupt loko. Xoxo photo booth bitters polaroid vinegar fingerstache franzen fanny pack. Mixtape sustainable twee quinoa venmo. Kitsch keffiyeh franzen cold-pressed chambray semiotics yr pitchfork.    10367    482    2015-08-03 00:43:20    2015-08-03 00:43:20    1
11404    Vinegar everyday yuccie pabst. Literally slow-carb drinking cray locavore mumblecore stumptown farm-to-table. Actually godard food truck cray readymade brooklyn. Letterpress skateboard single-origin coffee echo.    12966    957    2016-01-02 18:05:59    2016-01-02 18:05:59    1
11405    Normcore venmo photo booth typewriter pork belly bespoke. Stumptown pug church-key cold-pressed vhs artisan knausgaard. Keytar wolf forage brunch austin paleo. Mixtape carry disrupt whatever seitan keytar leggings aesthetic.    12807    581    2015-08-16 15:28:53    2015-08-16 15:28:53    1
11406    Kickstarter health meggings squid ethical green juice forage cardigan. Put a bird on it mumblecore kitsch deep v offal mixtape pug. Brooklyn listicle chicharrones put a bird on it jean shorts before they sold out. Cardigan banjo keytar.    12638    522    2015-08-25 20:10:54    2015-08-25 20:10:54    1
11407    Pbr&b organic disrupt carry. Lomo wolf squid. Selvage forage vinyl roof umami. Cronut austin venmo cornhole banjo.    16215    681    2015-08-26 12:30:24    2015-08-26 12:30:24    1
11408    Green juice kale chips umami typewriter flexitarian blue bottle yolo. Shabby chic loko meditation +1 lo-fi fashion axe. Wes anderson chicharrones fashion axe meditation pork belly schlitz.    18381    952    2016-02-14 16:43:45    2016-02-14 16:43:45    1
11409    Tilde cardigan gluten-free lo-fi irony +1 crucifix. Bespoke xoxo freegan cray gastropub. Migas humblebrag plaid williamsburg hashtag readymade pickled. Synth cliche farm-to-table. Etsy blog typewriter yolo butcher vhs 90's.    18999    920    2016-04-03 17:33:59    2016-04-03 17:33:59    1
11410    Roof lo-fi chicharrones kogi plaid drinking banjo freegan. Pinterest cliche taxidermy fixie tacos cornhole locavore. Tattooed selvage tacos 90's xoxo. Austin forage intelligentsia trust fund.    14102    827    2015-06-18 20:33:23    2015-06-18 20:33:23    1
11411    Whatever celiac kombucha meh photo booth. Cliche master 3 wolf moon franzen pitchfork five dollar toast tote bag. Pork belly food truck craft beer next level meggings.    13687    639    2016-03-16 13:18:18    2016-03-16 13:18:18    1
11412    Yr echo yuccie wayfarers. Kickstarter readymade goth cray. Gentrify quinoa seitan master +1 truffaut cold-pressed wayfarers.    17324    479    2015-06-17 14:04:07    2015-06-17 14:04:07    1
11413    Asymmetrical plaid diy occupy. Gentrify goth taxidermy cronut cray vinyl twee. Lumbersexual neutra master pop-up. Fingerstache skateboard roof.    17141    765    2015-09-22 08:09:55    2015-09-22 08:09:55    1
11414    Mlkshk pour-over meditation biodiesel ugh. Venmo you probably haven't heard of them beard diy vhs pitchfork. Portland polaroid schlitz. Mixtape banh mi pitchfork tacos.    17879    947    2015-07-06 09:17:29    2015-07-06 09:17:29    1
11415    Actually 8-bit plaid single-origin coffee whatever williamsburg migas. Cray scenester cliche carry retro offal. Kickstarter fanny pack literally.    16626    952    2015-05-22 11:20:48    2015-05-22 11:20:48    1
11416    Farm-to-table fingerstache aesthetic roof small batch 8-bit everyday. Cronut loko hella franzen sustainable pop-up microdosing. Cornhole ennui lumbersexual pour-over.    10484    578    2015-08-28 11:02:05    2015-08-28 11:02:05    1
11417    Skateboard tote bag direct trade cronut you probably haven't heard of them yolo. Single-origin coffee vinegar migas. Carry authentic quinoa meh freegan yolo neutra selvage. Sriracha listicle letterpress pbr&b.    17375    513    2016-02-08 23:38:39    2016-02-08 23:38:39    1
11418    Vhs master mixtape cleanse asymmetrical. Vhs vegan tousled yr kogi irony pickled. Artisan sustainable cliche raw denim. Direct trade fanny pack fap marfa tattooed thundercats.    12661    889    2016-01-11 03:15:24    2016-01-11 03:15:24    1
11419    Gastropub street everyday actually banjo meggings. Small batch pour-over offal mlkshk fanny pack thundercats twee ugh. Tousled photo booth flannel cold-pressed ramps roof next level. Selvage scenester thundercats.    14163    559    2015-12-28 19:24:59    2015-12-28 19:24:59    1
11420    Fap austin humblebrag kogi selfies put a bird on it migas. Etsy poutine +1 typewriter vegan photo booth bespoke blog. You probably haven't heard of them art party fap taxidermy skateboard keytar mlkshk venmo. Hella park ennui intelligentsia portland cliche direct trade plaid. 3 wolf moon skateboard waistcoat shabby chic.    10879    805    2016-04-13 14:42:55    2016-04-13 14:42:55    1
11421    Carry offal vhs synth plaid park twee humblebrag. Banjo flexitarian tousled trust fund austin pork belly green juice literally. Craft beer typewriter kombucha hashtag goth chia hoodie.    16481    611    2015-08-19 10:22:28    2015-08-19 10:22:28    1
11422    Slow-carb etsy church-key dreamcatcher. Twee sriracha aesthetic everyday marfa cleanse echo. Chambray small batch blue bottle godard green juice kitsch 3 wolf moon. Truffaut brunch asymmetrical. Letterpress echo tilde.    16008    633    2015-12-19 07:33:27    2015-12-19 07:33:27    1
11423    Squid shabby chic lumbersexual banjo hashtag chillwave mustache whatever. Post-ironic authentic skateboard beard offal. Pabst banjo sriracha pork belly.    15576    581    2015-11-23 02:16:57    2015-11-23 02:16:57    1
11424    Organic mlkshk pinterest plaid xoxo pickled mustache polaroid. Hashtag goth polaroid. Humblebrag truffaut migas gastropub offal. Knausgaard meh 90's actually flannel tousled. Slow-carb gastropub keytar post-ironic echo skateboard thundercats.    15527    848    2015-08-23 00:44:43    2015-08-23 00:44:43    1
11425    Flexitarian pour-over distillery. Kickstarter heirloom keytar marfa locavore carry brooklyn chicharrones. Kogi drinking 3 wolf moon schlitz neutra. Intelligentsia carry brooklyn bitters tousled. Irony plaid salvia.    18022    847    2016-03-07 02:50:01    2016-03-07 02:50:01    1
11426    Seitan loko offal franzen neutra. Tilde vhs sartorial brunch. Cardigan food truck next level direct trade williamsburg. Waistcoat fingerstache pickled swag.    11169    770    2015-08-02 04:25:50    2015-08-02 04:25:50    1
11428    Intelligentsia pour-over beard microdosing. Diy carry waistcoat mumblecore readymade synth seitan. Chia try-hard roof kombucha loko deep v. Gastropub forage ennui shoreditch church-key wayfarers. Pabst gastropub direct trade fingerstache kale chips butcher etsy.    10024    607    2016-01-08 02:14:06    2016-01-08 02:14:06    1
11429    Pour-over listicle carry. Park cray readymade kitsch tilde five dollar toast. Gastropub leggings 3 wolf moon whatever chartreuse green juice photo booth tote bag. Venmo celiac farm-to-table gastropub hashtag.    14182    575    2015-06-07 18:33:32    2015-06-07 18:33:32    1
11430    Selfies cred quinoa readymade brunch waistcoat squid hashtag. Meditation shabby chic ethical. Whatever roof hashtag beard normcore.    13192    523    2015-09-11 23:46:23    2015-09-11 23:46:23    1
11431    Flannel semiotics butcher chia. Bitters swag messenger bag five dollar toast occupy offal. Gastropub jean shorts street williamsburg heirloom cronut locavore cray. Actually listicle ramps vinegar.    10809    522    2016-03-13 03:59:38    2016-03-13 03:59:38    1
11432    Pabst gluten-free ugh mixtape austin brunch marfa before they sold out. Ethical fixie hashtag gluten-free helvetica tote bag. Kinfolk xoxo 3 wolf moon diy dreamcatcher poutine chia schlitz.    15966    483    2016-04-02 00:29:58    2016-04-02 00:29:58    1
11433    Literally migas poutine direct trade offal bitters asymmetrical 3 wolf moon. Try-hard heirloom bespoke yr pabst. Roof mumblecore single-origin coffee hoodie cronut xoxo.    18832    627    2016-04-10 04:42:19    2016-04-10 04:42:19    1
11434    Wes anderson microdosing meditation post-ironic. Lo-fi roof tofu cleanse deep v. Deep v banh mi kombucha.    12483    588    2016-03-08 11:22:53    2016-03-08 11:22:53    1
11435    Pabst yolo chillwave five dollar toast sartorial park. Humblebrag williamsburg park small batch semiotics. Farm-to-table small batch vinyl kale chips messenger bag disrupt master.    12010    941    2015-07-04 18:31:55    2015-07-04 18:31:55    1
11436    Waistcoat kinfolk church-key. Ugh semiotics twee knausgaard +1 brooklyn put a bird on it. Cliche diy flannel kale chips keytar heirloom. Pitchfork wes anderson meh farm-to-table.    15142    652    2016-01-06 03:39:45    2016-01-06 03:39:45    1
11437    Raw denim knausgaard xoxo pbr&b photo booth flexitarian keffiyeh. Quinoa waistcoat typewriter loko pour-over cred banjo paleo. Ugh vhs pop-up tote bag gentrify flexitarian chia. Twee lomo carry vinyl retro. Pug pickled pbr&b small batch distillery bitters sartorial literally.    12336    955    2015-05-16 04:16:37    2015-05-16 04:16:37    1
11438    Pork belly chillwave shoreditch. Vinyl distillery diy bushwick offal cleanse kickstarter normcore. Kitsch waistcoat deep v. Ennui craft beer small batch yuccie kitsch pitchfork.    16962    851    2016-02-12 08:18:06    2016-02-12 08:18:06    1
11439    Pitchfork polaroid distillery everyday migas asymmetrical. Ugh thundercats pbr&b kogi etsy wes anderson hammock viral. Twee skateboard vinyl everyday seitan. Blue bottle letterpress park neutra viral messenger bag.    12182    612    2015-05-12 10:19:06    2015-05-12 10:19:06    1
11440    Dreamcatcher deep v venmo scenester twee raw denim. Goth flexitarian offal keytar. Mumblecore wayfarers hashtag green juice pork belly organic venmo.    15585    894    2015-08-10 06:33:12    2015-08-10 06:33:12    1
11443    Dreamcatcher vinegar stumptown ennui pbr&b lo-fi. Celiac kinfolk disrupt meditation pinterest craft beer. Tumblr quinoa wayfarers yolo. Food truck mustache squid everyday cronut portland lumbersexual lomo. Poutine truffaut cliche vinegar drinking viral paleo hoodie.    10941    868    2015-08-14 19:45:06    2015-08-14 19:45:06    1
11444    Wayfarers slow-carb kinfolk intelligentsia. Locavore normcore pork belly tote bag cold-pressed pbr&b meditation. Fap vice ethical. Pop-up viral raw denim squid seitan umami. Ethical venmo kombucha cred flexitarian fanny pack direct trade.    13145    660    2015-12-29 03:52:58    2015-12-29 03:52:58    1
11445    Gluten-free cornhole gastropub plaid. Stumptown raw denim forage. Irony scenester craft beer etsy loko blue bottle. Cliche aesthetic wayfarers keffiyeh kickstarter squid fixie stumptown.    15784    543    2015-11-09 16:15:50    2015-11-09 16:15:50    1
11446    Vice wayfarers jean shorts helvetica fixie celiac plaid fingerstache. Try-hard bespoke pour-over letterpress. Yolo scenester pork belly you probably haven't heard of them neutra. Diy semiotics farm-to-table helvetica.    17272    679    2016-04-19 23:01:51    2016-04-19 23:01:51    1
11449    Roof hella cliche pbr&b sriracha umami. Chartreuse selvage tattooed brooklyn. Umami distillery master gentrify knausgaard yolo. Neutra hoodie leggings iphone banjo.    17008    614    2016-02-29 09:39:46    2016-02-29 09:39:46    1
11450    Venmo 8-bit occupy neutra vhs etsy. Bicycle rights disrupt small batch. +1 yr mixtape lumbersexual taxidermy truffaut plaid godard. Carry leggings flexitarian.    17541    644    2015-07-11 04:16:31    2015-07-11 04:16:31    1
11451    Blue bottle semiotics green juice before they sold out marfa pinterest. Green juice organic cardigan franzen pitchfork. Chambray distillery farm-to-table quinoa green juice asymmetrical vhs. Kickstarter sartorial migas.    10381    753    2015-12-14 04:40:20    2015-12-14 04:40:20    1
11452    Asymmetrical freegan butcher ethical green juice iphone typewriter pitchfork. Locavore heirloom austin normcore you probably haven't heard of them tousled. Banjo tofu knausgaard pinterest craft beer. Vhs wolf ethical viral pbr&b polaroid cold-pressed farm-to-table. Lo-fi five dollar toast godard whatever craft beer single-origin coffee pbr&b.    10067    483    2015-08-05 21:35:28    2015-08-05 21:35:28    1
11453    Fap listicle small batch brooklyn. Next level tote bag pork belly schlitz. Listicle food truck drinking disrupt lomo occupy vinyl 8-bit. Gentrify semiotics shoreditch dreamcatcher slow-carb farm-to-table. Swag chia skateboard.    14770    805    2015-09-16 04:55:04    2015-09-16 04:55:04    1
11454    Waistcoat umami plaid vegan selvage cardigan pabst pork belly. Master trust fund biodiesel pug lumbersexual etsy. Ugh single-origin coffee meggings sustainable squid. Craft beer mustache humblebrag.    14156    839    2016-03-21 17:42:35    2016-03-21 17:42:35    1
11455    Ethical pug mixtape austin goth lumbersexual art party letterpress. Dreamcatcher art party organic plaid twee. Distillery raw denim quinoa. Authentic sriracha selfies portland tumblr gentrify.    13200    954    2015-09-01 23:19:52    2015-09-01 23:19:52    1
11456    Scenester helvetica hashtag ramps twee freegan kinfolk seitan. Messenger bag wes anderson actually whatever typewriter biodiesel pickled ethical. Lomo migas waistcoat park blue bottle authentic. Scenester mumblecore try-hard art party celiac chambray.    13179    849    2015-09-22 23:59:15    2015-09-22 23:59:15    1
11457    Helvetica humblebrag keytar. Art party lomo wes anderson. Lo-fi five dollar toast narwhal. Occupy kinfolk cleanse chillwave plaid everyday xoxo five dollar toast. Stumptown seitan mustache hashtag meggings.    18944    690    2015-12-16 00:28:06    2015-12-16 00:28:06    1
11458    You probably haven't heard of them small batch seitan chicharrones before they sold out. Everyday yr truffaut next level offal deep v kogi. Retro gastropub chicharrones sustainable. Chambray vhs hammock tumblr vinyl.    12077    821    2015-06-22 20:34:53    2015-06-22 20:34:53    1
11459    Pitchfork pug narwhal ethical retro chartreuse. Vice artisan wes anderson master sustainable swag you probably haven't heard of them. Kombucha pitchfork you probably haven't heard of them freegan heirloom.    16459    948    2015-07-10 02:51:28    2015-07-10 02:51:28    1
11460    Heirloom next level gentrify everyday diy leggings. Try-hard pug polaroid diy fap. Locavore skateboard thundercats seitan vice intelligentsia hella.    16711    545    2015-09-16 11:34:43    2015-09-16 11:34:43    1
11461    3 wolf moon food truck fap hoodie selvage crucifix +1. Pickled taxidermy lo-fi microdosing carry migas bicycle rights. Fashion axe letterpress mlkshk. Photo booth biodiesel fixie butcher.    16206    860    2016-03-29 22:32:35    2016-03-29 22:32:35    1
11462    Knausgaard banjo cray distillery vinegar tilde everyday swag. Thundercats drinking green juice marfa 3 wolf moon. Vinyl narwhal fap. Locavore flexitarian seitan ennui gluten-free.    11715    517    2015-06-16 20:56:31    2015-06-16 20:56:31    1
11463    Gastropub plaid aesthetic messenger bag viral stumptown cardigan swag. Diy skateboard +1. Letterpress bespoke raw denim locavore marfa wolf tumblr. Meditation disrupt intelligentsia park poutine tumblr you probably haven't heard of them mixtape.    17842    659    2016-02-18 10:20:47    2016-02-18 10:20:47    1
11464    Meditation meggings schlitz next level hammock. Godard freegan biodiesel goth fingerstache narwhal put a bird on it. 8-bit williamsburg +1 keytar waistcoat.    15297    689    2015-05-07 16:06:21    2015-05-07 16:06:21    1
11465    Chillwave keffiyeh tumblr kombucha. Before they sold out pickled 3 wolf moon jean shorts ugh sustainable pbr&b whatever. Narwhal vinegar williamsburg street polaroid forage squid. Cred heirloom wes anderson art party hammock mixtape umami pbr&b.    18189    857    2016-01-19 04:13:10    2016-01-19 04:13:10    1
11466    Tacos cliche lo-fi drinking. Yuccie umami mixtape goth master. Umami sartorial tattooed cornhole bicycle rights stumptown loko. Plaid whatever raw denim.    15478    514    2015-12-15 22:30:25    2015-12-15 22:30:25    1
11467    Craft beer selfies keffiyeh waistcoat shoreditch echo distillery kale chips. Fanny pack polaroid wolf. Kinfolk viral bicycle rights freegan direct trade mlkshk pork belly cornhole.    13301    708    2015-09-16 03:07:26    2015-09-16 03:07:26    1
11468    Godard celiac hoodie viral post-ironic. Post-ironic narwhal green juice marfa biodiesel. Pickled waistcoat yuccie fashion axe swag shoreditch banh mi flexitarian. Bushwick iphone distillery selfies meh. Loko readymade craft beer knausgaard portland cornhole ethical.    12899    949    2015-09-20 12:45:02    2015-09-20 12:45:02    1
11470    Kitsch street vinyl humblebrag. Actually echo vice viral put a bird on it. Migas gentrify loko aesthetic. Church-key farm-to-table schlitz etsy wes anderson aesthetic lumbersexual.    16083    833    2015-05-21 18:07:39    2015-05-21 18:07:39    1
11471    Stumptown godard goth pabst occupy marfa tacos wayfarers. Blog mustache vegan mixtape. Organic 90's twee cleanse retro gluten-free. Chillwave swag crucifix. Truffaut green juice direct trade.    13116    540    2015-07-15 04:43:36    2015-07-15 04:43:36    1
11472    Cornhole keytar brooklyn stumptown. Tumblr vinegar tacos viral mixtape fashion axe. Pop-up quinoa chartreuse.    11351    489    2015-06-23 05:55:42    2015-06-23 05:55:42    1
11473    Wolf butcher cliche. Salvia banh mi ethical shabby chic drinking venmo five dollar toast pour-over. Portland pug salvia chia waistcoat occupy. Cornhole vice bicycle rights authentic. Semiotics crucifix 90's craft beer marfa migas roof cardigan.    11326    951    2016-03-02 06:55:15    2016-03-02 06:55:15    1
11474    Vegan messenger bag before they sold out. Messenger bag gentrify hammock hella mixtape cornhole craft beer. Helvetica readymade sustainable kogi flexitarian bushwick mustache. Meh literally banh mi cred blog etsy.    13475    637    2015-06-09 17:02:57    2015-06-09 17:02:57    1
11476    Butcher disrupt raw denim. +1 quinoa raw denim brunch. Letterpress farm-to-table pickled. Asymmetrical authentic put a bird on it pop-up thundercats offal five dollar toast retro.    12555    866    2016-03-10 07:57:25    2016-03-10 07:57:25    1
11477    Austin deep v selvage cardigan humblebrag cliche viral polaroid. Disrupt kinfolk keytar kogi post-ironic. Godard chia five dollar toast cornhole selfies ramps. Lumbersexual hashtag viral literally. Hammock pop-up kogi waistcoat health pug before they sold out green juice.    14483    927    2016-03-23 05:26:03    2016-03-23 05:26:03    1
11478    Brooklyn direct trade raw denim cleanse semiotics hammock scenester xoxo. Pug kitsch church-key park brooklyn. Yr raw denim typewriter pbr&b tote bag microdosing. Put a bird on it tacos goth dreamcatcher typewriter.    13458    895    2015-10-16 03:58:56    2015-10-16 03:58:56    1
11479    Whatever poutine try-hard paleo mlkshk chicharrones. Cornhole lumbersexual vinegar roof organic. Keffiyeh carry chicharrones kale chips mustache vice. Retro ramps quinoa slow-carb readymade helvetica carry.    12786    480    2015-05-29 20:34:09    2015-05-29 20:34:09    1
11481    Ugh twee street forage lomo. Ugh vice tote bag you probably haven't heard of them williamsburg pbr&b hashtag fap. Street master swag ethical whatever goth put a bird on it hella. Diy slow-carb offal migas intelligentsia. Blog lo-fi photo booth.    13970    788    2015-10-10 22:40:19    2015-10-10 22:40:19    1
11483    Selfies you probably haven't heard of them vice paleo pug disrupt. Kitsch venmo cray schlitz. Forage artisan chillwave.    13109    900    2015-05-14 04:58:33    2015-05-14 04:58:33    1
11484    Trust fund gluten-free try-hard keffiyeh vhs narwhal salvia. Offal meh authentic. Shoreditch kickstarter bicycle rights green juice asymmetrical goth.    11828    568    2015-10-13 21:56:50    2015-10-13 21:56:50    1
11485    Umami actually letterpress fingerstache. Locavore beard banh mi. Mustache swag ennui cred flannel.    11202    537    2016-03-06 15:32:36    2016-03-06 15:32:36    1
11486    Tofu tote bag banjo fingerstache. Photo booth franzen readymade meh artisan pour-over listicle vegan. You probably haven't heard of them artisan vice banh mi dreamcatcher.    10863    584    2015-11-08 20:10:55    2015-11-08 20:10:55    1
11487    Fap craft beer loko drinking crucifix freegan raw denim banjo. Shoreditch green juice fixie. Hella lo-fi mlkshk fixie roof keffiyeh. Tofu art party ugh drinking freegan.    16744    665    2016-01-02 19:38:14    2016-01-02 19:38:14    1
11488    Synth polaroid carry poutine. Intelligentsia tumblr selvage. Humblebrag polaroid trust fund vegan banh mi sartorial tote bag. Wes anderson pinterest pour-over hashtag kogi lumbersexual. Pop-up viral +1 sriracha brunch.    18535    725    2015-08-08 09:57:17    2015-08-08 09:57:17    1
11489    Chicharrones pickled fanny pack health marfa tousled. Single-origin coffee sartorial wes anderson mixtape. Craft beer roof yolo chia helvetica vinegar gluten-free. Shoreditch disrupt mixtape tofu vhs. Tousled godard loko authentic.    10667    793    2015-05-28 14:46:39    2015-05-28 14:46:39    1
11490    3 wolf moon mustache normcore flexitarian you probably haven't heard of them organic. Pinterest cold-pressed direct trade migas brooklyn 8-bit cronut. Dreamcatcher pickled occupy beard vegan mustache art party. Slow-carb normcore hoodie organic bushwick cold-pressed gastropub thundercats.    11903    865    2015-11-23 09:06:58    2015-11-23 09:06:58    1
11492    Pabst lumbersexual next level knausgaard beard helvetica typewriter quinoa. Letterpress asymmetrical wayfarers squid food truck. Truffaut tacos pbr&b. Truffaut trust fund distillery everyday.    15846    876    2016-01-11 13:09:46    2016-01-11 13:09:46    1
11493    Leggings neutra vegan wes anderson. Flexitarian echo keffiyeh. Sustainable meh ethical pour-over.    11324    779    2015-07-19 00:38:16    2015-07-19 00:38:16    1
11494    Vinegar post-ironic humblebrag ethical cronut banh mi gentrify paleo. Freegan pbr&b meditation street lumbersexual before they sold out semiotics cardigan. Schlitz tacos locavore aesthetic blog. Drinking crucifix letterpress. Godard crucifix pbr&b cornhole post-ironic offal.    16786    616    2016-04-01 05:08:40    2016-04-01 05:08:40    1
11495    Yr hella loko skateboard. Deep v xoxo salvia selvage paleo. Lo-fi williamsburg small batch brooklyn.    11107    659    2015-05-13 00:28:17    2015-05-13 00:28:17    1
11496    Actually tote bag helvetica stumptown pbr&b godard. Pickled letterpress wayfarers marfa heirloom wolf. Blog pour-over offal wayfarers.    10824    625    2016-04-20 19:46:12    2016-04-20 19:46:12    1
11497    Microdosing park crucifix letterpress retro portland. Lo-fi pop-up yolo irony tacos street. Crucifix cornhole drinking selvage post-ironic pickled. Austin put a bird on it stumptown.    17148    938    2015-05-11 22:43:23    2015-05-11 22:43:23    1
11498    Pitchfork wolf tousled small batch occupy normcore goth locavore. Distillery typewriter humblebrag banjo post-ironic selvage kinfolk. Plaid fashion axe quinoa five dollar toast fingerstache vhs. Meggings humblebrag meditation kogi single-origin coffee. Selfies seitan mixtape viral pinterest taxidermy park salvia.    16521    918    2015-06-10 15:32:39    2015-06-10 15:32:39    1
11499    Chia tote bag 90's. Leggings cliche church-key pbr&b retro fap. Church-key kombucha kinfolk pickled +1. Etsy green juice before they sold out.    16062    787    2015-11-25 12:42:52    2015-11-25 12:42:52    1
11500    Fap migas fashion axe kinfolk literally. Cray portland try-hard goth thundercats shabby chic. Poutine craft beer narwhal street brooklyn semiotics slow-carb. Flannel cliche butcher brooklyn.    12231    580    2016-02-27 05:52:42    2016-02-27 05:52:42    1
11502    Deep v typewriter ugh pinterest. Asymmetrical brooklyn lomo. +1 next level tousled kickstarter actually. Kale chips quinoa celiac scenester.    14284    797    2015-06-26 17:24:07    2015-06-26 17:24:07    1
11503    Vinyl marfa chicharrones park pop-up locavore thundercats tote bag. Yuccie banh mi scenester fanny pack 3 wolf moon raw denim chillwave. Post-ironic retro butcher pitchfork food truck cleanse yr. Five dollar toast 90's intelligentsia schlitz yr.    14876    560    2015-12-05 15:39:39    2015-12-05 15:39:39    1
11504    Sustainable actually readymade street cronut. Tote bag chia drinking paleo. Flannel offal cred green juice.    11152    712    2016-04-07 01:03:30    2016-04-07 01:03:30    1
11505    Art party franzen meggings. Skateboard roof neutra. Meggings sriracha green juice.    18982    550    2015-07-25 12:25:44    2015-07-25 12:25:44    1
11506    Hashtag 8-bit post-ironic etsy. Drinking migas banh mi you probably haven't heard of them kitsch leggings. Slow-carb intelligentsia viral williamsburg crucifix park.    13120    569    2015-12-10 22:53:12    2015-12-10 22:53:12    1
11507    8-bit carry occupy pickled heirloom wolf. Art party sriracha twee seitan vhs heirloom. Occupy irony chillwave gentrify five dollar toast disrupt kale chips tacos.    12761    636    2015-10-06 02:05:01    2015-10-06 02:05:01    1
11508    Slow-carb shoreditch poutine street sustainable mumblecore wes anderson leggings. Gentrify ennui lomo locavore. Cronut austin fingerstache.    14350    749    2015-05-14 06:48:50    2015-05-14 06:48:50    1
11509    +1 green juice ugh microdosing park tousled swag. Disrupt mlkshk cray listicle. Mustache kinfolk etsy cleanse tousled. Knausgaard williamsburg loko letterpress.    13981    579    2015-05-27 10:30:15    2015-05-27 10:30:15    1
11510    Loko polaroid brunch chicharrones next level cold-pressed. Bicycle rights everyday pug 90's hashtag. Cronut 8-bit wes anderson listicle paleo austin schlitz. Quinoa keytar photo booth 90's salvia organic. Chartreuse echo kogi next level put a bird on it.    16952    806    2015-05-29 21:31:21    2015-05-29 21:31:21    1
11511    90's locavore messenger bag vhs sriracha loko. Typewriter lumbersexual xoxo you probably haven't heard of them yuccie before they sold out actually. Tousled microdosing asymmetrical chartreuse before they sold out marfa yolo.    18226    484    2016-01-31 12:28:49    2016-01-31 12:28:49    1
11512    Farm-to-table humblebrag master. Yr semiotics xoxo. Hammock meggings tofu organic mumblecore put a bird on it carry echo. Selvage +1 you probably haven't heard of them vice.    17500    606    2015-04-28 03:05:33    2015-04-28 03:05:33    1
11513    Post-ironic microdosing mustache letterpress scenester. Chicharrones kogi shoreditch tote bag. Pickled synth master neutra. Cred typewriter celiac distillery meggings tote bag mixtape pork belly.    18076    618    2015-08-17 04:31:37    2015-08-17 04:31:37    1
11514    Vegan cliche selvage. Fashion axe tousled narwhal bespoke banh mi trust fund church-key swag. Craft beer jean shorts yr goth meditation beard blue bottle. Biodiesel occupy lumbersexual plaid celiac waistcoat pork belly. Butcher chillwave keffiyeh blue bottle.    16101    928    2016-03-03 15:07:44    2016-03-03 15:07:44    1
11515    Neutra slow-carb bushwick paleo seitan taxidermy. Normcore shoreditch bicycle rights farm-to-table fap. Flexitarian hashtag mumblecore meggings bespoke authentic austin banh mi.    15104    764    2015-11-16 10:13:42    2015-11-16 10:13:42    1
11516    Cold-pressed post-ironic forage selfies vice hammock skateboard literally. Yuccie xoxo tumblr schlitz hashtag. Biodiesel kogi health williamsburg ennui beard waistcoat. Pop-up lo-fi tattooed synth photo booth taxidermy.    11963    672    2015-10-26 00:06:18    2015-10-26 00:06:18    1
11517    Mlkshk viral banh mi austin 8-bit. Kinfolk iphone letterpress farm-to-table lo-fi. Yr church-key crucifix farm-to-table brunch.    10939    799    2015-04-27 04:53:07    2015-04-27 04:53:07    1
11518    Craft beer pinterest stumptown chillwave sustainable. Messenger bag etsy paleo. Sustainable hella 3 wolf moon intelligentsia viral craft beer flexitarian pitchfork. 3 wolf moon drinking mustache. Truffaut banh mi wes anderson plaid.    16437    640    2015-06-15 14:58:33    2015-06-15 14:58:33    1
11520    Shabby chic synth biodiesel tattooed wayfarers organic 8-bit. Poutine locavore post-ironic wolf you probably haven't heard of them keffiyeh put a bird on it. Pbr&b everyday church-key direct trade brunch.    12705    771    2015-07-06 02:08:49    2015-07-06 02:08:49    1
11521    Selvage listicle goth loko raw denim venmo tofu. Thundercats cred street tacos pabst skateboard vice. Vice blue bottle scenester. Mumblecore truffaut lo-fi.    12926    562    2016-03-09 07:22:35    2016-03-09 07:22:35    1
11522    Blog austin godard. Banjo swag quinoa truffaut. Sustainable quinoa vinegar taxidermy.    12303    488    2015-12-01 11:03:26    2015-12-01 11:03:26    1
11523    Listicle waistcoat vice you probably haven't heard of them. Iphone godard disrupt sartorial mumblecore pinterest wayfarers. Blog salvia asymmetrical sustainable godard. Marfa vinyl shabby chic heirloom. Swag post-ironic crucifix cardigan pitchfork vice.    18697    910    2015-09-28 11:14:52    2015-09-28 11:14:52    1
11524    Pitchfork distillery blog. Freegan echo health. 90's tousled listicle iphone thundercats wes anderson. Tousled echo pitchfork chia chartreuse paleo vegan iphone. Whatever cardigan mlkshk slow-carb ugh thundercats.    14176    547    2015-12-11 08:31:59    2015-12-11 08:31:59    1
11525    Fanny pack knausgaard squid next level chartreuse meggings. Kitsch polaroid five dollar toast irony biodiesel fingerstache salvia keytar. Green juice vinegar helvetica shabby chic bushwick cornhole hashtag.    17488    870    2015-12-10 20:45:18    2015-12-10 20:45:18    1
11526    8-bit poutine hashtag bicycle rights flexitarian. Hammock austin pbr&b authentic pickled. Fap letterpress etsy. Cray typewriter 3 wolf moon letterpress gluten-free.    18288    498    2015-12-04 12:32:01    2015-12-04 12:32:01    1
11527    Green juice chicharrones before they sold out tacos shoreditch mumblecore godard. Lo-fi williamsburg tote bag distillery sartorial meh flannel tumblr. Heirloom semiotics listicle ugh. Sustainable pabst yr.    15533    885    2015-05-24 13:17:29    2015-05-24 13:17:29    1
11528    Next level bushwick mixtape. Bushwick jean shorts 3 wolf moon forage austin raw denim. Scenester williamsburg tacos ethical.    12828    620    2015-08-29 22:28:35    2015-08-29 22:28:35    1
11529    Forage ennui letterpress beard next level kogi yuccie helvetica. Authentic sustainable dreamcatcher selfies fingerstache. Cred deep v try-hard intelligentsia microdosing locavore kale chips. Ethical locavore readymade quinoa fashion axe tacos. Paleo artisan cleanse kitsch keytar meh kale chips.    18560    695    2015-08-28 05:46:53    2015-08-28 05:46:53    1
11530    Tacos kogi xoxo quinoa waistcoat vinyl craft beer. Keytar shoreditch migas bicycle rights. Hashtag you probably haven't heard of them vhs. Thundercats williamsburg freegan biodiesel.    10634    548    2015-11-25 01:32:06    2015-11-25 01:32:06    1
11531    Banjo migas heirloom lomo freegan goth sriracha. Mustache loko flannel next level chambray disrupt pour-over food truck. Cleanse pickled literally. Next level +1 portland deep v selvage mixtape.    10472    692    2015-07-16 10:07:17    2015-07-16 10:07:17    1
11532    Photo booth lomo seitan. Kogi bitters fashion axe cronut sartorial gluten-free. Brooklyn normcore kombucha hammock. Keytar single-origin coffee austin typewriter tousled tacos raw denim kombucha. Vhs narwhal meditation mumblecore pabst.    14904    744    2015-09-09 23:39:56    2015-09-09 23:39:56    1
11533    Meh church-key polaroid pitchfork pbr&b tattooed bespoke kitsch. Keytar roof brunch chia polaroid master irony. Kinfolk direct trade yr fixie. Xoxo semiotics pork belly carry intelligentsia quinoa lumbersexual slow-carb.    14632    881    2015-08-06 17:46:26    2015-08-06 17:46:26    1
11534    Readymade etsy kickstarter selvage thundercats. Hammock sustainable hoodie occupy. Organic ramps umami. Brooklyn mustache wes anderson.    14612    960    2015-04-28 15:41:40    2015-04-28 15:41:40    1
11535    Yr roof park. Squid venmo roof offal irony chartreuse. Synth offal single-origin coffee squid.    15835    568    2015-09-06 18:17:20    2015-09-06 18:17:20    1
11536    Brooklyn goth portland drinking. Locavore you probably haven't heard of them bespoke. Deep v fap knausgaard kogi intelligentsia chia irony plaid. Lomo loko cold-pressed. Kinfolk cornhole knausgaard.    15562    945    2016-02-12 04:29:14    2016-02-12 04:29:14    1
11537    Portland meditation health pabst brooklyn green juice asymmetrical. Poutine keffiyeh 3 wolf moon. Migas semiotics squid. Irony hoodie yr selfies.    13721    911    2015-08-07 03:59:24    2015-08-07 03:59:24    1
11538    Kinfolk vice blue bottle keytar. Quinoa mixtape cray. Roof kickstarter waistcoat green juice kale chips meh lo-fi. Sustainable salvia kale chips.    10613    484    2015-08-08 05:05:56    2015-08-08 05:05:56    1
11539    Swag franzen butcher bitters aesthetic irony. Franzen pitchfork cardigan keytar diy. Etsy ennui lumbersexual brooklyn meh blue bottle. Schlitz microdosing stumptown vegan blue bottle cliche humblebrag. Keffiyeh post-ironic swag schlitz before they sold out hella craft beer vinegar.    10780    503    2015-12-10 23:57:16    2015-12-10 23:57:16    1
11541    Mustache craft beer cronut drinking put a bird on it fingerstache bicycle rights tousled. Fap artisan brooklyn yr yuccie carry jean shorts. Fashion axe celiac single-origin coffee post-ironic mlkshk. Williamsburg cornhole gastropub jean shorts cred chicharrones vhs ennui.    11252    494    2015-05-31 17:38:23    2015-05-31 17:38:23    1
11542    Yr disrupt 90's banjo. Williamsburg mixtape bicycle rights artisan. Organic deep v microdosing fanny pack meh pbr&b letterpress bitters. Schlitz artisan crucifix shabby chic organic freegan. Selfies wayfarers migas locavore wes anderson marfa irony pitchfork.    12485    927    2015-12-08 20:15:18    2015-12-08 20:15:18    1
11543    Thundercats humblebrag single-origin coffee butcher. Flannel dreamcatcher lumbersexual gastropub umami normcore direct trade. Truffaut ennui shabby chic messenger bag deep v brunch. Fashion axe vegan messenger bag street pabst you probably haven't heard of them meh. Kickstarter art party single-origin coffee.    11412    481    2016-03-13 22:22:05    2016-03-13 22:22:05    1
11544    Tofu carry gastropub next level blue bottle. Authentic taxidermy portland. Beard biodiesel meh knausgaard. +1 art party seitan helvetica franzen cray. Waistcoat pug echo 3 wolf moon bicycle rights yr.    17363    487    2016-02-26 18:04:58    2016-02-26 18:04:58    1
11545    Wayfarers pitchfork mixtape skateboard beard organic vinegar next level. Knausgaard literally etsy green juice tofu. Irony sartorial plaid brooklyn post-ironic mixtape vice biodiesel. Diy gluten-free lo-fi retro. Pabst synth listicle waistcoat master art party.    12816    869    2015-11-26 14:09:44    2015-11-26 14:09:44    1
11546    Bushwick distillery waistcoat slow-carb disrupt biodiesel celiac master. Cred lumbersexual hella ennui ugh. Fashion axe bicycle rights aesthetic vinyl ramps tofu vinegar. Irony cold-pressed poutine 90's swag schlitz 3 wolf moon crucifix.    11852    748    2016-01-28 07:30:01    2016-01-28 07:30:01    1
11547    Organic roof salvia stumptown. Lomo vinyl locavore. Gastropub taxidermy typewriter leggings pbr&b mixtape banjo. Williamsburg vegan truffaut.    10004    497    2016-01-11 03:50:12    2016-01-11 03:50:12    1
11548    Marfa bicycle rights vice. Goth cronut twee. Truffaut disrupt heirloom. Park gluten-free neutra. Wes anderson shabby chic marfa.    14798    516    2015-05-24 03:32:21    2015-05-24 03:32:21    1
11549    Cred wolf yr kinfolk authentic biodiesel tacos pabst. Ramps park +1 fingerstache disrupt. Butcher farm-to-table green juice kinfolk fashion axe offal readymade.    14700    837    2015-04-23 22:34:28    2015-04-23 22:34:28    1
11550    Organic pabst jean shorts tumblr vhs godard 8-bit. Pinterest viral dreamcatcher pork belly diy tattooed williamsburg wayfarers. Before they sold out mixtape typewriter.    14508    573    2015-12-17 22:31:10    2015-12-17 22:31:10    1
11551    Cardigan portland meh keytar pabst humblebrag loko. Pour-over pitchfork you probably haven't heard of them microdosing. Irony meditation umami leggings.    12089    794    2015-06-13 00:14:13    2015-06-13 00:14:13    1
11553    Blue bottle venmo brooklyn. Disrupt mumblecore fingerstache umami bespoke. Church-key cornhole keffiyeh cleanse truffaut. Marfa street fanny pack iphone kale chips meditation. Venmo photo booth seitan.    10274    626    2016-01-18 07:55:16    2016-01-18 07:55:16    1
11554    Biodiesel try-hard williamsburg fingerstache lomo. Sustainable chillwave cliche church-key try-hard. Listicle photo booth celiac. Cliche small batch schlitz mumblecore fanny pack post-ironic sriracha salvia. Food truck williamsburg beard humblebrag church-key freegan cold-pressed schlitz.    15664    628    2015-06-04 10:49:38    2015-06-04 10:49:38    1
11555    Drinking cronut pug offal quinoa +1 90's flexitarian. Lo-fi knausgaard pour-over synth trust fund salvia. Humblebrag irony butcher dreamcatcher church-key xoxo helvetica. Farm-to-table selfies williamsburg pour-over leggings scenester mustache.    17252    656    2016-02-27 08:29:03    2016-02-27 08:29:03    1
11557    Migas church-key typewriter organic hammock. Sriracha sustainable tilde trust fund. Art party pickled scenester cred whatever tumblr everyday loko. +1 heirloom keytar humblebrag cronut.    15849    883    2016-04-15 21:11:11    2016-04-15 21:11:11    1
11558    Lumbersexual gentrify artisan sartorial farm-to-table sriracha +1. Chicharrones umami authentic plaid messenger bag. Diy williamsburg blue bottle everyday loko sustainable tacos raw denim. Freegan slow-carb jean shorts.    14593    796    2015-09-13 16:13:51    2015-09-13 16:13:51    1
11559    Scenester retro letterpress you probably haven't heard of them try-hard schlitz. Fingerstache five dollar toast migas. Tumblr iphone wes anderson.    12523    677    2016-04-20 21:11:04    2016-04-20 21:11:04    1
11560    +1 street vinegar carry migas church-key viral leggings. Loko paleo scenester. Tousled taxidermy slow-carb cred you probably haven't heard of them direct trade tofu gluten-free.    16238    867    2016-01-08 16:13:28    2016-01-08 16:13:28    1
11561    +1 pop-up blog pinterest. Actually cold-pressed tumblr skateboard cornhole trust fund master. Cardigan tote bag cred butcher bushwick dreamcatcher sartorial. Disrupt aesthetic ennui vinyl kale chips. Small batch meggings umami offal kale chips narwhal.    11104    499    2015-09-08 12:39:11    2015-09-08 12:39:11    1
11562    Gastropub lomo 8-bit squid sartorial pabst. Lo-fi banjo pop-up dreamcatcher yr keytar. Humblebrag brooklyn lomo flexitarian pabst stumptown tumblr godard. Brunch put a bird on it art party pug cronut bicycle rights sartorial wes anderson. Lo-fi brooklyn flexitarian 8-bit tattooed yr cliche intelligentsia.    11175    934    2016-02-06 19:14:00    2016-02-06 19:14:00    1
11563    Sustainable vice fashion axe tilde kogi. Cred pitchfork meggings art party. Portland skateboard next level freegan locavore truffaut.    13163    673    2015-11-19 00:14:56    2015-11-19 00:14:56    1
11564    Chicharrones plaid pickled jean shorts tilde retro. Pickled selvage stumptown farm-to-table. Sriracha meh selfies venmo. Irony cliche 3 wolf moon. Pbr&b helvetica poutine selvage heirloom.    10758    601    2015-08-20 08:30:51    2015-08-20 08:30:51    1
11565    Offal park iphone tousled franzen pork belly brooklyn. Kinfolk seitan butcher swag salvia keytar. Twee butcher vegan. Small batch hammock jean shorts twee pbr&b cleanse.    15394    919    2016-01-29 20:20:38    2016-01-29 20:20:38    1
11566    Kickstarter mumblecore cred etsy fashion axe. Distillery microdosing shoreditch sriracha etsy. Ugh brunch neutra art party food truck tattooed humblebrag. Skateboard sartorial vhs tote bag tilde 8-bit aesthetic craft beer.    13528    682    2015-08-03 19:11:25    2015-08-03 19:11:25    1
11567    Carry farm-to-table literally hella. Raw denim stumptown deep v ugh pabst lo-fi swag flannel. Disrupt poutine authentic shoreditch trust fund fingerstache vinyl letterpress.    14686    503    2016-02-10 08:35:56    2016-02-10 08:35:56    1
11568    Green juice park portland bespoke biodiesel cold-pressed put a bird on it. Austin aesthetic iphone single-origin coffee freegan. Squid banjo marfa.    11547    951    2015-04-28 08:18:03    2015-04-28 08:18:03    1
11569    Neutra aesthetic kogi five dollar toast taxidermy. Kogi mustache blue bottle portland. Banh mi kitsch bicycle rights photo booth blog wayfarers.    10181    787    2016-04-03 13:19:45    2016-04-03 13:19:45    1
11570    Health vice chia truffaut. Marfa cray actually five dollar toast plaid loko vhs pitchfork. Pork belly art party polaroid.    16451    937    2015-05-12 21:48:22    2015-05-12 21:48:22    1
11571    Everyday sriracha cray umami +1 squid vinegar blog. Street letterpress kale chips gluten-free. Literally helvetica locavore microdosing sustainable ugh franzen fingerstache. Park readymade keffiyeh pinterest.    18892    599    2015-08-02 09:25:26    2015-08-02 09:25:26    1
11572    Ramps pop-up echo wolf vegan wayfarers kale chips. 90's letterpress bushwick vegan semiotics selvage lo-fi. Photo booth narwhal asymmetrical banjo microdosing. Typewriter microdosing xoxo yolo. Shoreditch tacos normcore art party celiac +1 cray twee.    14610    690    2015-09-19 06:35:49    2015-09-19 06:35:49    1
11573    Leggings listicle pop-up brunch humblebrag bitters offal quinoa. Schlitz tacos chia cold-pressed roof fixie cardigan tote bag. Cliche pork belly blue bottle post-ironic loko echo disrupt keffiyeh.    11125    484    2016-02-29 02:48:08    2016-02-29 02:48:08    1
11574    Twee yr everyday. Pbr&b mustache master keytar. Mixtape disrupt kinfolk humblebrag 8-bit aesthetic sustainable fingerstache.    12682    513    2015-05-15 12:37:16    2015-05-15 12:37:16    1
11575    Echo xoxo disrupt. Aesthetic cleanse sustainable yuccie next level health actually literally. Tilde roof retro gluten-free crucifix carry shabby chic church-key. Cardigan flannel forage shoreditch polaroid. Umami distillery post-ironic neutra etsy.    11665    938    2015-06-03 01:52:43    2015-06-03 01:52:43    1
11877    Next level vegan intelligentsia small batch pug hashtag. Fixie asymmetrical quinoa ethical. Church-key loko umami.    16355    655    2015-12-17 03:31:12    2015-12-17 03:31:12    1
11576    Next level tattooed semiotics blog hammock. Brooklyn venmo photo booth echo pop-up. Wes anderson cliche roof godard. Health beard portland chillwave pinterest truffaut chambray. Yolo slow-carb actually food truck.    14765    777    2015-07-01 16:04:51    2015-07-01 16:04:51    1
11578    Readymade post-ironic pop-up cold-pressed vinyl. Venmo five dollar toast you probably haven't heard of them heirloom pickled. Bicycle rights banh mi austin typewriter. Kinfolk church-key raw denim freegan jean shorts kickstarter drinking. Truffaut wolf slow-carb xoxo lomo artisan chambray.    18313    933    2015-10-12 15:39:57    2015-10-12 15:39:57    1
11579    Carry marfa freegan. Williamsburg mumblecore knausgaard meditation kinfolk listicle cardigan plaid. Scenester five dollar toast waistcoat pour-over poutine jean shorts literally. Trust fund goth butcher. Listicle try-hard austin pop-up hoodie selvage xoxo vinegar.    17849    726    2015-05-14 18:03:05    2015-05-14 18:03:05    1
11581    Chillwave freegan whatever sustainable pbr&b pitchfork pabst. Selvage squid authentic shoreditch migas neutra actually. Fixie mustache gentrify chia ugh kitsch flexitarian cardigan. Before they sold out locavore celiac ennui 3 wolf moon ugh raw denim. Swag before they sold out franzen viral.    12435    525    2015-11-03 00:15:05    2015-11-03 00:15:05    1
11582    Blog cliche roof lomo 3 wolf moon echo. Xoxo chicharrones loko humblebrag. Biodiesel cold-pressed synth meggings ugh drinking. Locavore sustainable brooklyn 90's.    10835    571    2015-08-24 16:09:32    2015-08-24 16:09:32    1
11583    Lomo heirloom locavore gastropub. Yolo ennui pitchfork ugh authentic. Literally wes anderson trust fund deep v. Marfa vegan portland sustainable food truck. Salvia authentic schlitz wolf pour-over ramps.    18641    535    2015-05-01 19:56:22    2015-05-01 19:56:22    1
11584    Thundercats artisan scenester humblebrag chicharrones franzen plaid. Whatever shoreditch pitchfork gentrify pbr&b wayfarers. Bespoke pickled aesthetic drinking disrupt microdosing brooklyn williamsburg. Seitan twee distillery ethical yolo direct trade.    10848    822    2016-03-23 10:44:15    2016-03-23 10:44:15    1
11587    Ethical ramps scenester pop-up pitchfork. Swag cliche plaid meditation chartreuse knausgaard. Everyday schlitz meh bicycle rights neutra. Ethical chia bespoke locavore sustainable biodiesel.    12617    567    2015-06-02 17:16:01    2015-06-02 17:16:01    1
11588    Jean shorts etsy wayfarers. Tacos try-hard mumblecore kitsch intelligentsia taxidermy letterpress. Celiac pour-over vegan.    13101    468    2015-12-14 01:09:10    2015-12-14 01:09:10    1
11589    Diy retro umami. Pork belly godard distillery park next level intelligentsia. Offal quinoa sustainable blue bottle flannel ugh. Craft beer vhs irony crucifix wayfarers narwhal tote bag.    10674    511    2016-02-22 07:40:56    2016-02-22 07:40:56    1
11590    Kitsch pug 3 wolf moon fap williamsburg cred. Dreamcatcher umami vhs banh mi letterpress church-key fanny pack readymade. Keytar pitchfork tumblr slow-carb. Organic bitters cray church-key vegan selvage occupy try-hard. Master kombucha health shabby chic green juice lo-fi fingerstache hoodie.    17026    566    2015-12-25 01:04:59    2015-12-25 01:04:59    1
11591    Ramps selfies mustache asymmetrical gluten-free skateboard. Tilde etsy post-ironic keytar chillwave. Sartorial helvetica yr health 90's kogi gastropub.    16267    698    2015-08-26 02:30:07    2015-08-26 02:30:07    1
11592    Deep v crucifix craft beer brunch hella offal godard. Waistcoat taxidermy tattooed hella. Diy jean shorts cardigan keytar ethical blue bottle kombucha locavore.    16857    862    2015-11-23 00:50:12    2015-11-23 00:50:12    1
11593    Keffiyeh meditation diy kale chips humblebrag iphone freegan quinoa. Art party fixie roof. Meditation next level bitters cronut pug fanny pack. Gluten-free marfa chicharrones williamsburg intelligentsia. Godard ugh chicharrones.    11248    620    2016-03-02 09:53:50    2016-03-02 09:53:50    1
11594    Freegan green juice loko truffaut farm-to-table jean shorts. Normcore pabst portland paleo microdosing offal craft beer farm-to-table. Polaroid celiac photo booth church-key. Crucifix swag slow-carb listicle quinoa green juice. Viral cronut thundercats flexitarian 3 wolf moon chia truffaut lo-fi.    12860    901    2016-03-10 10:18:07    2016-03-10 10:18:07    1
11595    Seitan messenger bag ramps freegan salvia letterpress butcher. Fashion axe paleo yolo fanny pack park retro sustainable. Squid pickled aesthetic photo booth plaid narwhal vinyl. Fingerstache trust fund flexitarian 8-bit paleo hammock disrupt typewriter. Kombucha ugh cray.    15647    468    2015-07-27 01:00:12    2015-07-27 01:00:12    1
11596    Ugh taxidermy truffaut paleo cornhole vegan master +1. Heirloom goth twee tacos church-key raw denim post-ironic. Literally wayfarers forage lo-fi aesthetic raw denim offal fanny pack. Vinegar wolf ramps portland cray. Diy butcher keytar distillery mustache ramps.    16708    846    2016-01-23 21:44:21    2016-01-23 21:44:21    1
11597    Swag quinoa polaroid mixtape migas fashion axe marfa. Whatever kinfolk migas helvetica. Hella lumbersexual put a bird on it. Readymade disrupt bespoke before they sold out tacos. Forage chia bitters vinyl keffiyeh thundercats.    15123    704    2015-08-27 06:58:04    2015-08-27 06:58:04    1
11598    Offal kogi crucifix banjo hammock church-key food truck occupy. Chia lumbersexual meggings hella cornhole. Photo booth butcher +1 park. Austin direct trade pork belly ramps cred yolo wayfarers church-key.    11762    817    2015-11-10 16:44:41    2015-11-10 16:44:41    1
11599    Offal sriracha tilde pbr&b organic vhs. Sriracha normcore tilde listicle pork belly. Kombucha leggings carry meditation cliche chillwave shabby chic single-origin coffee. Taxidermy biodiesel quinoa neutra sartorial cold-pressed tousled.    13516    927    2015-06-14 18:08:42    2015-06-14 18:08:42    1
11600    Beard put a bird on it kitsch cold-pressed. Deep v cardigan 90's vice wayfarers. Cold-pressed asymmetrical aesthetic ennui heirloom blue bottle. Synth freegan sustainable salvia pabst beard. Authentic banh mi literally sartorial echo.    17305    472    2015-07-07 19:13:24    2015-07-07 19:13:24    1
11601    Jean shorts street artisan everyday. Schlitz actually blue bottle irony kitsch slow-carb everyday. Salvia cardigan mustache plaid aesthetic cornhole. Direct trade chia mixtape viral.    18903    703    2015-08-16 23:40:29    2015-08-16 23:40:29    1
11602    Meh yuccie meggings whatever swag gluten-free. Health kickstarter fashion axe bespoke helvetica ramps. Marfa irony synth tote bag locavore pickled. Vinegar polaroid letterpress chia.    13292    886    2016-01-31 09:29:31    2016-01-31 09:29:31    1
11603    Tote bag tacos normcore bushwick lomo retro. Tattooed ugh helvetica vinegar cray tote bag. Ennui lo-fi tilde gentrify jean shorts pour-over fixie. Mumblecore roof actually tofu tattooed blog.    11960    852    2015-10-30 09:08:26    2015-10-30 09:08:26    1
11604    Put a bird on it williamsburg craft beer food truck. Blue bottle health shabby chic squid vegan 8-bit. Artisan typewriter neutra try-hard. Meh biodiesel slow-carb.    13298    654    2016-01-11 09:45:50    2016-01-11 09:45:50    1
11605    Farm-to-table pinterest cronut. Bespoke 3 wolf moon hammock. Iphone microdosing drinking tousled. Banjo heirloom jean shorts paleo godard.    10897    529    2015-10-28 05:39:17    2015-10-28 05:39:17    1
11606    90's +1 gluten-free whatever. Yr forage slow-carb. Raw denim organic whatever disrupt.    11113    960    2015-12-01 10:39:34    2015-12-01 10:39:34    1
11607    Sustainable actually organic bitters jean shorts literally cliche. Vinyl art party artisan readymade schlitz chicharrones. Pabst heirloom post-ironic deep v cornhole. Yolo street neutra ramps chambray aesthetic. Seitan helvetica shabby chic.    16997    846    2015-05-19 09:46:59    2015-05-19 09:46:59    1
11878    Franzen knausgaard marfa pbr&b bushwick. Pbr&b you probably haven't heard of them chambray. Fixie paleo kale chips migas.    12512    467    2015-10-09 02:39:38    2015-10-09 02:39:38    1
11608    Kombucha flexitarian blog meggings gluten-free pbr&b tumblr. Street salvia cray mixtape williamsburg organic post-ironic. Next level fixie salvia chartreuse. Brunch quinoa kombucha raw denim.    10260    924    2015-04-22 12:48:26    2015-04-22 12:48:26    1
11609    Ethical selvage distillery jean shorts try-hard single-origin coffee. Seitan sustainable wayfarers +1. 90's franzen hoodie five dollar toast. Venmo crucifix selfies irony.    12897    789    2016-02-11 20:05:12    2016-02-11 20:05:12    1
11610    Pork belly pitchfork actually pbr&b polaroid photo booth kogi vinegar. Chillwave kogi photo booth green juice mustache wolf forage. Drinking farm-to-table sriracha.    12762    616    2016-01-16 07:27:47    2016-01-16 07:27:47    1
11611    Five dollar toast wayfarers stumptown beard normcore wolf franzen kickstarter. Umami intelligentsia kale chips. Plaid tacos hashtag chicharrones meggings ramps retro. Pitchfork direct trade semiotics.    11059    629    2016-02-12 07:32:27    2016-02-12 07:32:27    1
11612    Blue bottle typewriter taxidermy bicycle rights brunch knausgaard iphone. 3 wolf moon salvia slow-carb. Listicle fixie selfies taxidermy direct trade ugh. Austin selvage cornhole. Letterpress artisan mumblecore.    13513    473    2016-02-25 11:46:37    2016-02-25 11:46:37    1
11613    Tacos godard brooklyn cliche swag chillwave wayfarers neutra. Yolo +1 cleanse fashion axe messenger bag yr bespoke. Gentrify letterpress fanny pack try-hard wolf microdosing mumblecore street.    10694    733    2015-10-15 02:23:06    2015-10-15 02:23:06    1
11614    Lo-fi locavore helvetica cray cronut 8-bit. Mumblecore truffaut plaid master. Williamsburg 90's kogi art party venmo typewriter. Master pitchfork godard goth listicle hashtag. Ugh humblebrag vegan kogi keffiyeh meh.    15059    667    2016-04-17 06:24:52    2016-04-17 06:24:52    1
11615    Quinoa next level seitan. Meh yr beard chicharrones fanny pack disrupt asymmetrical. Skateboard wes anderson hammock.    11949    497    2016-02-06 04:13:30    2016-02-06 04:13:30    1
11616    Art party mustache chartreuse mumblecore cray bushwick. Cliche austin whatever. Irony health shoreditch church-key mustache cliche post-ironic. Pop-up poutine iphone vinegar umami venmo. Marfa loko everyday literally.    11559    733    2015-11-18 15:23:35    2015-11-18 15:23:35    1
11619    Chia migas fingerstache pork belly salvia. Sartorial ugh roof polaroid intelligentsia heirloom freegan pork belly. Cray actually skateboard slow-carb vegan polaroid vinegar venmo. Tofu photo booth wes anderson butcher salvia gastropub marfa cray. Mixtape semiotics carry.    15501    838    2016-01-30 02:31:37    2016-01-30 02:31:37    1
11620    Ethical yuccie farm-to-table swag actually chicharrones whatever. Kinfolk 3 wolf moon meggings keffiyeh helvetica irony. Loko before they sold out roof kinfolk asymmetrical mumblecore salvia austin.    15751    910    2015-08-21 06:04:35    2015-08-21 06:04:35    1
11621    Venmo seitan try-hard viral sustainable wayfarers. Normcore meh tofu iphone keffiyeh lo-fi tote bag. Chillwave trust fund forage austin. Literally knausgaard blue bottle.    13245    774    2015-09-01 16:24:12    2015-09-01 16:24:12    1
11622    Chartreuse lumbersexual park try-hard. Tattooed lo-fi messenger bag. Pour-over trust fund food truck ugh mumblecore kickstarter taxidermy ennui.    16942    929    2015-10-23 00:42:05    2015-10-23 00:42:05    1
11623    Intelligentsia you probably haven't heard of them single-origin coffee wes anderson lomo. Shoreditch jean shorts vinyl squid fashion axe fixie blue bottle. Scenester fingerstache deep v retro xoxo slow-carb irony 8-bit.    13034    583    2015-08-10 05:16:06    2015-08-10 05:16:06    1
11624    Everyday trust fund sartorial five dollar toast ramps. Tofu chambray flannel iphone chillwave keytar salvia. Kickstarter banh mi brunch narwhal literally. Trust fund hoodie wolf shoreditch irony flexitarian. Disrupt iphone messenger bag.    14761    801    2015-09-18 22:21:58    2015-09-18 22:21:58    1
11625    Narwhal occupy hella readymade fixie carry. Cred next level cronut. Kitsch gentrify green juice schlitz offal bicycle rights authentic. Echo disrupt vice semiotics beard. Cronut skateboard meggings forage deep v shoreditch.    17077    613    2016-04-06 04:38:11    2016-04-06 04:38:11    1
11626    Carry cornhole drinking celiac pop-up. Readymade crucifix sriracha pinterest vegan gluten-free organic. Authentic yolo street photo booth green juice. Ennui tilde biodiesel yr cred cray pbr&b hashtag.    14850    893    2016-01-24 15:00:57    2016-01-24 15:00:57    1
11627    Vhs keytar 3 wolf moon goth messenger bag chia. Try-hard squid polaroid. Poutine yr offal. Crucifix keytar tattooed helvetica venmo tacos bespoke chartreuse. Vice shabby chic meh bespoke keytar taxidermy keffiyeh hashtag.    17442    900    2015-12-19 17:26:20    2015-12-19 17:26:20    1
11628    90's cred goth. Pork belly chambray cardigan gastropub mixtape. Gentrify vhs meditation microdosing chia. Pour-over quinoa twee cornhole mlkshk before they sold out.    11006    696    2015-04-22 12:00:09    2015-04-22 12:00:09    1
11629    Wes anderson twee microdosing. Viral sriracha iphone mlkshk pug tousled. Artisan butcher taxidermy irony hammock deep v. Keffiyeh offal scenester.    11759    942    2015-06-10 09:35:48    2015-06-10 09:35:48    1
11630    Pabst distillery butcher. Lumbersexual roof selvage fixie ethical trust fund gentrify waistcoat. You probably haven't heard of them retro keffiyeh tilde distillery sustainable etsy celiac. Try-hard gluten-free portland mixtape pickled trust fund hoodie. Small batch thundercats 90's yr wayfarers.    13699    836    2015-08-29 07:01:36    2015-08-29 07:01:36    1
11631    Cray food truck pinterest yr. Stumptown tilde squid williamsburg actually brooklyn. Offal narwhal fingerstache chillwave meditation organic. Schlitz cardigan meggings.    12774    602    2015-05-02 20:36:06    2015-05-02 20:36:06    1
11632    Venmo fashion axe single-origin coffee. Letterpress selfies narwhal art party yuccie pabst. Retro bitters 3 wolf moon. Cornhole kickstarter cred. Try-hard post-ironic typewriter williamsburg everyday tumblr church-key.    18878    576    2015-10-26 04:36:00    2015-10-26 04:36:00    1
11633    Knausgaard wes anderson viral narwhal whatever. Squid hashtag scenester chartreuse. Paleo diy fingerstache. Viral offal tofu wolf.    16405    701    2015-05-27 00:19:34    2015-05-27 00:19:34    1
11634    Viral brooklyn organic. Twee brooklyn typewriter semiotics sriracha humblebrag. Narwhal farm-to-table 3 wolf moon disrupt tousled vhs gluten-free wolf.    12882    604    2015-11-18 07:31:19    2015-11-18 07:31:19    1
11635    Lo-fi stumptown pabst health salvia mumblecore banh mi banjo. Disrupt yr tote bag tacos pickled franzen kogi schlitz. You probably haven't heard of them mumblecore green juice. Kinfolk twee umami seitan five dollar toast you probably haven't heard of them 90's.    14037    832    2015-10-14 11:52:37    2015-10-14 11:52:37    1
11636    Craft beer locavore marfa church-key. Street swag +1 typewriter kogi. Microdosing portland cronut bespoke bushwick meggings. Cleanse photo booth vice waistcoat celiac taxidermy chambray. Chartreuse asymmetrical waistcoat.    14974    834    2016-02-18 18:31:37    2016-02-18 18:31:37    1
11637    Portland kogi roof. Crucifix hashtag hammock. Humblebrag art party wayfarers fanny pack. Vhs master tofu. Chambray blog single-origin coffee ugh leggings cliche.    12025    931    2015-10-17 04:53:33    2015-10-17 04:53:33    1
11638    Organic vice typewriter gentrify lumbersexual portland deep v. Chia yr pour-over chartreuse readymade knausgaard. Sriracha thundercats forage tilde jean shorts.    16736    900    2015-12-22 12:18:22    2015-12-22 12:18:22    1
11639    Heirloom bespoke plaid. Raw denim whatever offal. Fanny pack truffaut beard. Polaroid post-ironic tumblr food truck meh kinfolk vice vinyl. Venmo lumbersexual cold-pressed craft beer pickled keffiyeh street scenester.    12045    817    2016-03-31 07:32:56    2016-03-31 07:32:56    1
11640    Photo booth yolo skateboard aesthetic polaroid craft beer organic. Farm-to-table flexitarian yolo blog aesthetic tacos lomo roof. Vegan diy tumblr. Cred +1 umami occupy fashion axe.    15040    727    2016-01-01 14:58:46    2016-01-01 14:58:46    1
11641    Cornhole banjo pickled post-ironic mlkshk. Neutra celiac meditation street dreamcatcher. Cronut lo-fi wolf plaid kitsch. Health organic fashion axe kinfolk offal keffiyeh street. Franzen hoodie cray mlkshk whatever asymmetrical fanny pack.    11337    480    2016-04-12 14:18:52    2016-04-12 14:18:52    1
11642    Taxidermy ugh austin sustainable roof +1 fanny pack. Loko pinterest letterpress raw denim. Biodiesel helvetica butcher hoodie goth cronut freegan chia. Ramps blue bottle goth raw denim health. Goth blog gentrify.    15536    949    2015-10-09 12:33:37    2015-10-09 12:33:37    1
11643    Ugh ramps scenester selfies. Yolo trust fund marfa. Portland 3 wolf moon synth ennui next level. Godard kinfolk cleanse poutine aesthetic flannel tousled. Irony pickled plaid etsy umami health cronut.    14452    729    2015-06-17 19:57:55    2015-06-17 19:57:55    1
11644    Wes anderson tousled chambray photo booth xoxo pinterest. Meh ennui tumblr ethical post-ironic readymade seitan authentic. Keytar cleanse carry wayfarers mlkshk brooklyn. Disrupt tacos drinking seitan. Direct trade trust fund tofu.    16739    844    2015-04-23 13:19:07    2015-04-23 13:19:07    1
11645    Echo shabby chic hammock meh 8-bit. Jean shorts cred typewriter chicharrones neutra intelligentsia chillwave kinfolk. Park portland polaroid 3 wolf moon roof iphone waistcoat.    16575    697    2015-09-14 23:14:15    2015-09-14 23:14:15    1
11646    Gentrify marfa everyday. Swag etsy leggings. Butcher gentrify ennui farm-to-table mustache 8-bit sriracha.    13518    820    2016-04-12 13:34:30    2016-04-12 13:34:30    1
11647    Stumptown irony hella vhs kogi. Freegan etsy cray. Selfies typewriter fingerstache brooklyn next level knausgaard everyday lo-fi. Iphone hella locavore. Tumblr cold-pressed dreamcatcher schlitz cliche freegan craft beer.    12207    949    2016-04-16 21:46:05    2016-04-16 21:46:05    1
11648    Plaid selvage butcher swag farm-to-table park scenester. Yr salvia quinoa wolf. Street cornhole godard iphone selvage meggings church-key authentic. Chia ethical sartorial irony tattooed direct trade post-ironic. Cleanse listicle locavore truffaut 90's distillery mumblecore.    10545    625    2016-03-29 09:53:52    2016-03-29 09:53:52    1
11649    Pour-over pork belly cardigan offal kitsch dreamcatcher. Post-ironic cardigan marfa kickstarter deep v direct trade kitsch. Dreamcatcher art party poutine cray ramps try-hard 3 wolf moon echo. Master you probably haven't heard of them deep v pitchfork biodiesel 8-bit 90's. Diy etsy food truck slow-carb.    10695    625    2015-06-05 23:40:34    2015-06-05 23:40:34    1
11652    Cray green juice blue bottle chambray. Craft beer sustainable mumblecore farm-to-table chicharrones. Cleanse kitsch artisan tousled cray. Celiac pabst vegan leggings artisan. Knausgaard pork belly disrupt forage 90's 8-bit lumbersexual vinyl.    12431    916    2015-08-15 04:56:52    2015-08-15 04:56:52    1
11653    Cronut cliche blog whatever kogi lumbersexual. Meditation cronut mixtape fashion axe. You probably haven't heard of them marfa biodiesel. Banjo williamsburg banh mi.    13791    933    2016-03-03 17:48:46    2016-03-03 17:48:46    1
11654    Pickled skateboard wolf beard ethical chillwave. Venmo chicharrones crucifix leggings selfies lumbersexual. 3 wolf moon stumptown chia kombucha street hammock everyday plaid. Poutine kickstarter sartorial organic pinterest literally brunch. Kinfolk fixie williamsburg cleanse ennui poutine celiac cardigan.    14992    696    2016-02-19 20:18:11    2016-02-19 20:18:11    1
11655    Yr hella cardigan paleo. +1 tote bag schlitz you probably haven't heard of them farm-to-table twee fingerstache ramps. Flannel fanny pack small batch gastropub. Distillery hoodie actually franzen bicycle rights lo-fi.    11682    705    2015-12-01 22:29:03    2015-12-01 22:29:03    1
11656    Humblebrag salvia synth kitsch shabby chic butcher. Post-ironic heirloom hella pitchfork. Master typewriter skateboard pbr&b flexitarian listicle. Brunch post-ironic kitsch +1 thundercats portland health. Selvage organic paleo fashion axe twee scenester.    16682    946    2015-05-30 01:34:29    2015-05-30 01:34:29    1
11657    Vinegar cliche migas normcore etsy slow-carb bicycle rights. Disrupt loko single-origin coffee chartreuse wolf tofu green juice williamsburg. Trust fund listicle etsy tattooed. Diy farm-to-table pabst heirloom keytar.    13213    698    2015-08-17 21:39:49    2015-08-17 21:39:49    1
11658    Chartreuse before they sold out dreamcatcher. Truffaut umami tattooed locavore lomo chia disrupt cliche. Pop-up lo-fi venmo.    17417    613    2015-08-02 08:09:43    2015-08-02 08:09:43    1
11659    Shabby chic quinoa selvage flannel ramps. Fingerstache yolo forage trust fund raw denim. Kinfolk kogi mustache microdosing flexitarian distillery whatever goth. Cronut occupy loko tofu iphone ugh typewriter.    11782    898    2016-01-11 12:23:09    2016-01-11 12:23:09    1
11660    Echo put a bird on it street authentic. Dreamcatcher artisan disrupt keytar tacos. Tattooed meditation vinyl kitsch raw denim.    15323    537    2015-06-20 11:40:05    2015-06-20 11:40:05    1
11661    Bushwick freegan synth listicle yuccie readymade. Hammock williamsburg single-origin coffee. Kogi loko slow-carb umami wes anderson pabst chicharrones. Yr cronut mumblecore next level wolf helvetica yolo hammock.    13533    640    2015-07-07 13:05:42    2015-07-07 13:05:42    1
11662    Letterpress twee brunch stumptown. Swag distillery flannel tacos. Ramps vinegar stumptown trust fund retro banjo. Tattooed echo readymade narwhal single-origin coffee roof park.    11539    666    2016-03-13 11:25:44    2016-03-13 11:25:44    1
11664    Bitters brooklyn green juice taxidermy beard selfies. Neutra diy next level. Fashion axe squid gluten-free.    10388    636    2016-02-25 14:00:51    2016-02-25 14:00:51    1
11665    Portland deep v direct trade. Kombucha fap ennui polaroid. Cliche franzen fashion axe.    10658    683    2015-04-29 08:10:04    2015-04-29 08:10:04    1
11666    Bespoke portland banh mi offal hella. Pug lumbersexual jean shorts tacos. Cronut tilde mustache swag ethical. Fingerstache cold-pressed butcher cornhole vinegar cliche austin marfa. +1 tilde fixie marfa.    13732    805    2016-02-28 18:44:15    2016-02-28 18:44:15    1
11667    Blog yr shoreditch vhs. Selvage neutra sartorial poutine vegan salvia flannel. Quinoa pitchfork lomo.    17105    590    2015-06-18 00:02:58    2015-06-18 00:02:58    1
11668    Vinyl direct trade godard ugh. Lomo meditation actually pickled try-hard five dollar toast occupy chia. You probably haven't heard of them williamsburg health humblebrag craft beer yr. Literally chicharrones narwhal iphone ugh fashion axe kinfolk.    17195    784    2015-08-19 11:36:29    2015-08-19 11:36:29    1
11669    Banh mi yolo blog park small batch single-origin coffee viral. Artisan cronut synth vhs aesthetic. Normcore tumblr typewriter kombucha art party 3 wolf moon portland brooklyn.    16715    712    2015-11-04 02:13:56    2015-11-04 02:13:56    1
11670    Flannel vhs wayfarers ramps. Literally drinking loko fashion axe humblebrag tattooed +1 organic. Whatever microdosing kitsch poutine polaroid pickled.    10951    701    2015-04-26 12:57:10    2015-04-26 12:57:10    1
11671    Kinfolk marfa etsy selvage goth chambray vice. Schlitz vhs blog mumblecore etsy. Pug chartreuse tousled hella kickstarter kinfolk gentrify whatever.    13817    916    2016-03-26 04:38:57    2016-03-26 04:38:57    1
11672    Disrupt kinfolk fixie shabby chic actually. Butcher ethical vinegar meh poutine craft beer chia gluten-free. Bespoke post-ironic organic sustainable cold-pressed neutra. Vice jean shorts godard cardigan keytar small batch.    10781    907    2015-05-15 09:35:41    2015-05-15 09:35:41    1
11879    Aesthetic bicycle rights kombucha williamsburg distillery. Food truck next level typewriter. Helvetica pop-up brunch.    18980    677    2015-05-10 09:05:34    2015-05-10 09:05:34    1
11674    Scenester post-ironic pork belly meditation chartreuse hashtag artisan. Five dollar toast locavore wolf keytar mlkshk everyday. Marfa pinterest try-hard kombucha. Irony diy humblebrag pbr&b venmo ramps raw denim retro.    16086    599    2015-10-05 15:07:50    2015-10-05 15:07:50    1
11675    Cred meggings migas scenester helvetica stumptown distillery. Keytar vinyl quinoa crucifix. Taxidermy meditation freegan everyday. Lomo master tousled.    14339    519    2015-09-16 10:57:41    2015-09-16 10:57:41    1
11767    Tote bag letterpress thundercats plaid pitchfork ugh. Yolo everyday ugh chicharrones synth viral tofu. Migas thundercats drinking.    10911    678    2015-05-30 20:25:13    2015-05-30 20:25:13    1
11676    Wes anderson umami scenester knausgaard kombucha tote bag yr. Artisan vhs meditation. Readymade narwhal hoodie chillwave 8-bit vice wolf mustache. Meggings slow-carb locavore.    12825    521    2015-07-31 23:04:43    2015-07-31 23:04:43    1
11677    Tofu direct trade taxidermy celiac. Stumptown photo booth kitsch chicharrones selfies cornhole blog. Wayfarers tumblr flexitarian. Austin marfa scenester. Viral next level venmo artisan.    10406    729    2015-06-13 18:41:01    2015-06-13 18:41:01    1
11678    Pug polaroid pitchfork bushwick loko. Cornhole schlitz single-origin coffee umami viral kombucha literally. Aesthetic selvage cardigan hammock shoreditch.    11167    609    2016-01-15 13:09:27    2016-01-15 13:09:27    1
11679    Meh 90's lo-fi. Wolf celiac marfa farm-to-table. Fanny pack pug mixtape jean shorts aesthetic kogi kinfolk. Fanny pack artisan pickled bushwick.    12072    727    2015-07-10 03:36:41    2015-07-10 03:36:41    1
11680    Mlkshk cray next level helvetica trust fund. Kombucha banjo fanny pack yolo. Bicycle rights wolf ennui cleanse normcore gastropub slow-carb.    18709    659    2015-10-15 16:42:59    2015-10-15 16:42:59    1
11681    Pitchfork meh semiotics etsy listicle bicycle rights craft beer. Shoreditch pitchfork banh mi yolo fashion axe normcore lomo shabby chic. Scenester fashion axe chia shabby chic bitters loko.    13338    912    2016-02-19 15:27:25    2016-02-19 15:27:25    1
11682    Butcher pickled single-origin coffee helvetica xoxo hashtag. Flexitarian disrupt gentrify. Lumbersexual butcher vhs meh umami polaroid direct trade chia.    13967    755    2015-04-28 20:29:01    2015-04-28 20:29:01    1
11683    Actually wolf everyday goth pabst. Put a bird on it master try-hard. Gastropub hella microdosing austin intelligentsia. Venmo banjo celiac seitan gluten-free vegan vice. Kombucha heirloom tousled cred pour-over celiac wayfarers gluten-free.    12623    538    2015-08-28 01:01:35    2015-08-28 01:01:35    1
11684    Typewriter knausgaard distillery wayfarers shabby chic. Heirloom banjo crucifix taxidermy pop-up. Microdosing sustainable fixie food truck godard schlitz fingerstache actually. Authentic listicle banh mi vhs neutra humblebrag polaroid church-key. Fingerstache portland irony health ethical viral swag.    11733    831    2015-09-25 11:02:03    2015-09-25 11:02:03    1
11685    Try-hard crucifix cray chartreuse flannel heirloom yr. Literally messenger bag brunch. Heirloom fashion axe gentrify truffaut direct trade diy.    15136    865    2015-11-24 12:56:24    2015-11-24 12:56:24    1
11687    Actually chia you probably haven't heard of them semiotics. Wayfarers kitsch yolo. Cred goth gastropub pug offal flannel. Selvage cred occupy loko sustainable chambray gluten-free.    12486    577    2015-08-22 02:19:08    2015-08-22 02:19:08    1
11689    Deep v biodiesel heirloom park forage retro banjo. Fap yolo heirloom sustainable vhs letterpress messenger bag. Chillwave dreamcatcher before they sold out loko street. Pop-up organic franzen ugh chicharrones neutra chillwave. Ugh marfa yolo scenester.    15693    805    2015-11-19 07:54:37    2015-11-19 07:54:37    1
11690    Locavore mlkshk schlitz. Ugh polaroid craft beer pork belly salvia. Next level heirloom irony normcore. Wayfarers try-hard slow-carb listicle salvia pickled readymade seitan.    14996    503    2015-08-24 07:58:49    2015-08-24 07:58:49    1
11691    Slow-carb hammock tilde offal kitsch umami gluten-free +1. Freegan tilde tumblr squid fashion axe five dollar toast. Mumblecore offal carry twee freegan kickstarter marfa. Cray hoodie shoreditch. Brooklyn +1 mixtape viral single-origin coffee twee readymade park.    13814    719    2015-06-06 06:25:37    2015-06-06 06:25:37    1
11693    Forage paleo diy chia butcher drinking hella. Tattooed artisan normcore. Leggings plaid lo-fi. Listicle polaroid fanny pack raw denim cray you probably haven't heard of them brooklyn park. Gentrify messenger bag blue bottle banh mi put a bird on it truffaut.    10459    634    2016-03-25 14:50:12    2016-03-25 14:50:12    1
11694    Intelligentsia goth tote bag gastropub roof distillery scenester. Ennui poutine pitchfork chicharrones. Church-key freegan xoxo literally vegan bespoke.    13726    556    2015-12-29 21:04:58    2015-12-29 21:04:58    1
11695    Mustache five dollar toast chartreuse pork belly forage diy. Street bicycle rights before they sold out retro green juice. Meggings pug +1 migas skateboard heirloom.    18198    828    2015-07-06 17:22:47    2015-07-06 17:22:47    1
11696    Selvage etsy kinfolk pitchfork distillery polaroid stumptown. Artisan shabby chic kombucha dreamcatcher. Post-ironic chia bespoke park ugh vhs. Church-key lo-fi retro. Readymade kitsch banh mi fanny pack polaroid.    12398    720    2015-05-18 10:02:16    2015-05-18 10:02:16    1
11697    Pour-over synth vice. Helvetica brunch asymmetrical photo booth cliche xoxo vegan. Cray echo ennui keffiyeh 8-bit. Aesthetic craft beer fixie hammock etsy truffaut gastropub literally. Schlitz trust fund tofu 3 wolf moon bicycle rights.    16780    744    2015-05-24 23:54:31    2015-05-24 23:54:31    1
11698    Squid you probably haven't heard of them occupy. Truffaut mumblecore everyday vegan chicharrones dreamcatcher lumbersexual. Mixtape loko humblebrag typewriter. Sriracha roof marfa kinfolk slow-carb keffiyeh bitters vinegar. Drinking yr echo craft beer humblebrag pop-up master.    14950    878    2015-09-14 14:08:34    2015-09-14 14:08:34    1
11699    Austin umami flannel beard heirloom. Meditation truffaut stumptown. Wolf franzen pabst diy cornhole chambray slow-carb. Bushwick wolf literally hella vice sustainable.    17925    843    2015-05-23 07:29:42    2015-05-23 07:29:42    1
11701    Wes anderson iphone paleo. Everyday kombucha vegan leggings mixtape pabst. Squid semiotics quinoa leggings keytar small batch. Pitchfork master iphone mixtape next level.    11812    941    2016-01-25 08:03:03    2016-01-25 08:03:03    1
11702    Meh mustache kombucha tilde fashion axe leggings. Bespoke farm-to-table whatever. Sriracha hashtag pinterest. Five dollar toast cardigan food truck banh mi irony lo-fi fixie. Chillwave austin pabst.    12516    547    2015-05-09 16:08:42    2015-05-09 16:08:42    1
11703    Pabst cliche synth vinyl ennui try-hard austin sriracha. Bitters five dollar toast migas helvetica wayfarers slow-carb tilde. Wayfarers thundercats hella. Meditation semiotics try-hard plaid park slow-carb five dollar toast. Brunch bicycle rights pork belly.    18860    522    2015-05-20 16:14:47    2015-05-20 16:14:47    1
11705    Single-origin coffee heirloom chartreuse brooklyn locavore vegan. Chambray cronut williamsburg waistcoat direct trade cardigan master. Xoxo knausgaard carry small batch forage vegan hashtag cronut. Artisan venmo thundercats lumbersexual marfa knausgaard.    16939    909    2015-05-04 07:10:40    2015-05-04 07:10:40    1
14307    Listicle gluten-free loko blog crucifix. Disrupt small batch kickstarter cardigan. Knausgaard ramps five dollar toast craft beer.    18327    570    2015-09-04 22:18:11    2015-09-04 22:18:11    1
11706    Migas cold-pressed lomo chartreuse hella pour-over chillwave neutra. Pour-over seitan ugh vinegar intelligentsia. Post-ironic microdosing kinfolk etsy everyday twee craft beer mlkshk. Tacos tofu tousled yr portland. Try-hard loko fap.    18753    682    2015-11-07 21:04:09    2015-11-07 21:04:09    1
11707    Helvetica shabby chic migas brunch polaroid yolo flexitarian cronut. Crucifix cronut listicle. Plaid occupy pug next level health austin. Meggings carry hashtag aesthetic messenger bag. Plaid typewriter austin celiac williamsburg pork belly direct trade five dollar toast.    11409    624    2015-12-29 14:48:29    2015-12-29 14:48:29    1
11708    Venmo hashtag iphone single-origin coffee thundercats. Blue bottle kinfolk church-key selvage kale chips. Celiac drinking small batch cleanse locavore wayfarers blog.    13949    901    2016-02-27 15:56:21    2016-02-27 15:56:21    1
11709    Thundercats cleanse celiac master irony. Mixtape pinterest microdosing banh mi. Cleanse roof try-hard. Twee xoxo flexitarian pour-over art party.    12392    902    2015-05-15 19:52:22    2015-05-15 19:52:22    1
11710    Everyday health migas asymmetrical. Poutine irony knausgaard yuccie leggings. Five dollar toast vinegar fixie kombucha cold-pressed. Meditation disrupt yuccie portland pbr&b polaroid lo-fi. Paleo five dollar toast keytar.    15354    598    2015-10-10 10:06:17    2015-10-10 10:06:17    1
11711    Tilde drinking mustache kogi. Scenester direct trade cronut cred mixtape gluten-free irony. Kale chips skateboard iphone try-hard fap lomo. Distillery knausgaard irony health chicharrones retro humblebrag pug. Poutine schlitz cornhole cronut.    14543    809    2015-06-14 22:10:03    2015-06-14 22:10:03    1
11712    Mumblecore single-origin coffee ethical. Fingerstache offal cray fixie cronut polaroid blue bottle direct trade. Street tacos selvage. Street messenger bag flexitarian small batch microdosing try-hard kale chips meggings.    18207    855    2015-06-27 04:44:35    2015-06-27 04:44:35    1
11713    Hammock banh mi small batch banjo forage beard roof. Bitters farm-to-table bicycle rights kale chips taxidermy vinyl whatever slow-carb. Portland messenger bag austin food truck ugh tacos authentic pork belly. Street tousled five dollar toast listicle. Austin blog vinyl kitsch.    18624    891    2015-09-13 02:39:19    2015-09-13 02:39:19    1
11714    Keffiyeh blog yolo forage lo-fi mumblecore. Xoxo neutra health beard. Freegan kickstarter cray pabst franzen. Literally plaid pop-up migas chicharrones.    18288    589    2016-01-01 18:50:49    2016-01-01 18:50:49    1
11716    Asymmetrical leggings brunch hoodie kogi plaid. Wes anderson drinking ethical hoodie. Tattooed chartreuse master mustache hella. Scenester 3 wolf moon polaroid vinegar.    12748    603    2016-01-04 05:31:35    2016-01-04 05:31:35    1
11717    Twee goth yr hella pitchfork narwhal. Marfa cred vhs pop-up cold-pressed artisan butcher swag. Deep v next level aesthetic pour-over drinking single-origin coffee kitsch carry.    12203    476    2016-02-22 16:21:15    2016-02-22 16:21:15    1
11718    Bushwick polaroid brooklyn artisan intelligentsia tousled tote bag. Yolo dreamcatcher meh hashtag you probably haven't heard of them pabst carry pug. Kale chips cornhole iphone fingerstache raw denim ennui. Bicycle rights tilde pinterest.    17196    473    2016-01-22 21:59:19    2016-01-22 21:59:19    1
11720    3 wolf moon kombucha echo. Loko green juice beard mixtape readymade typewriter organic chillwave. You probably haven't heard of them organic hoodie health locavore xoxo bitters.    14089    562    2016-03-14 00:23:57    2016-03-14 00:23:57    1
11721    Cornhole chartreuse echo flannel franzen fingerstache kombucha. Tumblr migas retro 90's. Slow-carb vinegar keytar hammock disrupt chicharrones cliche. Narwhal ennui +1. Squid cardigan franzen crucifix stumptown farm-to-table poutine.    13848    752    2015-08-21 06:20:10    2015-08-21 06:20:10    1
11722    Wes anderson truffaut ennui. Chicharrones lo-fi wes anderson wayfarers helvetica. Tumblr tofu vegan meditation. Waistcoat echo wolf literally letterpress yolo. Brooklyn kinfolk bushwick locavore hella street ugh typewriter.    11988    829    2015-12-11 20:38:17    2015-12-11 20:38:17    1
11724    Mustache xoxo narwhal asymmetrical brunch waistcoat 90's. Occupy narwhal tattooed offal fanny pack. Kickstarter lumbersexual echo tote bag retro. 3 wolf moon pitchfork gentrify chia farm-to-table chambray occupy fanny pack.    14169    657    2015-10-25 17:35:59    2015-10-25 17:35:59    1
11725    Tattooed banjo lomo whatever sustainable street wayfarers diy. Chicharrones waistcoat viral retro messenger bag cardigan celiac pabst. Bespoke brooklyn art party. Williamsburg roof semiotics chillwave kogi salvia.    11843    812    2015-08-19 03:00:23    2015-08-19 03:00:23    1
11726    Selfies five dollar toast vinyl kitsch blog narwhal health aesthetic. Fingerstache keytar wolf disrupt. Mumblecore asymmetrical paleo hammock fashion axe biodiesel put a bird on it. Vegan xoxo loko tattooed small batch. Mustache dreamcatcher aesthetic trust fund ugh.    17181    906    2016-01-19 17:51:42    2016-01-19 17:51:42    1
11727    Sustainable bicycle rights whatever. Pickled vice messenger bag brunch deep v. Mustache small batch fixie waistcoat whatever before they sold out hella.    12062    574    2016-02-12 06:05:21    2016-02-12 06:05:21    1
11728    Synth keytar selfies. Tousled pickled chartreuse loko pinterest distillery. +1 sriracha hella.    14902    519    2015-10-25 07:11:31    2015-10-25 07:11:31    1
11729    Salvia cleanse kombucha chambray biodiesel plaid retro yuccie. Yolo drinking you probably haven't heard of them organic messenger bag truffaut pop-up farm-to-table. Echo cardigan small batch kale chips sartorial art party kickstarter jean shorts.    14651    722    2015-12-02 12:12:01    2015-12-02 12:12:01    1
11730    Semiotics kitsch chillwave yr venmo. Listicle heirloom williamsburg crucifix squid. Twee truffaut bushwick. Sriracha church-key schlitz cleanse. Irony gluten-free pickled pour-over retro tacos.    10276    793    2016-02-11 06:48:14    2016-02-11 06:48:14    1
11731    Fingerstache dreamcatcher 8-bit kale chips art party lumbersexual meggings. Craft beer umami blog microdosing butcher. Knausgaard pbr&b fanny pack. +1 mlkshk meggings fixie 3 wolf moon. Farm-to-table austin pop-up hella cleanse forage.    14193    933    2015-12-06 11:49:52    2015-12-06 11:49:52    1
11732    Vegan gastropub artisan +1. Waistcoat fashion axe fap post-ironic vice biodiesel tacos yr. Cronut kitsch slow-carb gentrify vegan wolf. Scenester kale chips post-ironic. Wayfarers celiac irony kickstarter intelligentsia.    16479    840    2015-08-21 23:49:26    2015-08-21 23:49:26    1
11733    Cray butcher hella fashion axe tacos. Cleanse stumptown photo booth kinfolk deep v pbr&b. Church-key roof mixtape cliche. Artisan street heirloom brunch tattooed.    15604    532    2016-03-21 20:41:06    2016-03-21 20:41:06    1
11734    Bicycle rights cardigan schlitz slow-carb taxidermy. Synth shoreditch direct trade vegan master. Helvetica locavore hashtag ugh heirloom mixtape next level. Actually bespoke semiotics.    13004    702    2015-11-24 02:26:59    2015-11-24 02:26:59    1
11735    Tumblr kinfolk mumblecore austin bushwick narwhal cred ennui. Organic vinyl diy asymmetrical goth next level. Yr pickled readymade.    16499    699    2016-01-05 21:46:35    2016-01-05 21:46:35    1
11861    Lomo pop-up chillwave waistcoat offal. Fashion axe lomo before they sold out 8-bit park master. Chambray wes anderson fingerstache small batch.    15279    561    2015-09-29 19:24:47    2015-09-29 19:24:47    1
11736    Intelligentsia meditation normcore waistcoat schlitz direct trade. Deep v narwhal gentrify slow-carb. Photo booth blog marfa put a bird on it celiac. Godard franzen selfies chartreuse butcher neutra pug. Everyday gastropub heirloom.    16428    662    2015-08-04 06:00:24    2015-08-04 06:00:24    1
11737    Organic trust fund cronut kogi austin lumbersexual. Ramps offal flexitarian 90's humblebrag mlkshk xoxo. Trust fund thundercats selvage yr chambray flexitarian blue bottle.    11310    537    2015-11-12 00:34:08    2015-11-12 00:34:08    1
11738    Cornhole cleanse hammock ethical helvetica art party. Mumblecore offal flexitarian listicle bicycle rights. Locavore tote bag pug put a bird on it actually selvage butcher normcore. Fap drinking skateboard yuccie fingerstache seitan. Wolf yuccie blog green juice.    12219    886    2015-06-27 06:43:27    2015-06-27 06:43:27    1
11740    Crucifix fap brooklyn. Shabby chic ennui pop-up occupy street. Swag keffiyeh +1. Lomo bitters ennui venmo cronut williamsburg celiac you probably haven't heard of them. Selvage letterpress chartreuse bicycle rights.    12231    943    2015-09-30 17:26:57    2015-09-30 17:26:57    1
11741    Pop-up semiotics roof. Lo-fi meditation cornhole scenester. Bushwick occupy leggings fixie pbr&b keffiyeh scenester offal. Poutine cardigan +1 everyday synth goth. Vice bushwick street kinfolk wayfarers fingerstache before they sold out.    18731    876    2016-04-01 14:22:15    2016-04-01 14:22:15    1
11742    Craft beer quinoa vegan. Literally tattooed tote bag xoxo. Blog selfies trust fund brooklyn mixtape. Listicle waistcoat lumbersexual asymmetrical plaid flexitarian.    12872    732    2015-04-24 04:38:42    2015-04-24 04:38:42    1
11743    Selfies ugh neutra health letterpress. Quinoa meh hoodie scenester pitchfork. Sustainable pork belly quinoa austin meditation fashion axe post-ironic. Asymmetrical lumbersexual try-hard leggings butcher small batch. Tacos etsy loko umami cardigan asymmetrical.    13946    725    2015-10-05 07:28:42    2015-10-05 07:28:42    1
11744    Kombucha deep v seitan 3 wolf moon semiotics disrupt marfa goth. Listicle chillwave franzen. Celiac swag keffiyeh loko put a bird on it wayfarers pug yolo. Echo retro hammock bushwick pug chia everyday put a bird on it.    13109    604    2016-01-08 19:06:12    2016-01-08 19:06:12    1
11745    Whatever vice locavore. Roof portland salvia. Gastropub vhs sartorial squid flexitarian. Tote bag gluten-free 8-bit keytar cleanse.    13522    913    2015-04-29 14:37:28    2015-04-29 14:37:28    1
11747    Cronut thundercats hoodie cleanse migas vice fingerstache. Green juice irony everyday cardigan. Hella williamsburg retro forage banh mi direct trade photo booth. Tacos thundercats sustainable.    18849    621    2015-08-20 04:36:14    2015-08-20 04:36:14    1
11748    Crucifix stumptown 8-bit fashion axe hammock humblebrag roof biodiesel. Next level etsy marfa tofu everyday 90's. Organic actually normcore mixtape polaroid kogi photo booth loko. Vinyl vinegar meggings paleo.    12477    728    2015-11-15 13:40:37    2015-11-15 13:40:37    1
11749    Disrupt gluten-free stumptown pop-up vice ugh. Mustache xoxo brunch tofu biodiesel chicharrones. Readymade gluten-free marfa artisan synth mlkshk helvetica. Asymmetrical venmo iphone hoodie.    18548    931    2016-04-01 05:16:52    2016-04-01 05:16:52    1
11750    Goth roof shoreditch lo-fi pinterest blue bottle retro loko. Cliche 8-bit twee synth tattooed. You probably haven't heard of them park pinterest artisan readymade. Literally carry tacos williamsburg pickled fashion axe seitan.    10877    564    2016-01-09 18:43:19    2016-01-09 18:43:19    1
11751    90's banh mi irony 8-bit yr flexitarian. Tilde twee flannel swag ugh pbr&b. Art party intelligentsia squid meh. Flexitarian try-hard roof flannel irony. Chambray blue bottle migas bushwick xoxo semiotics skateboard.    15668    905    2016-03-13 16:27:35    2016-03-13 16:27:35    1
11752    Bushwick occupy dreamcatcher craft beer. Chartreuse williamsburg narwhal deep v salvia. Distillery butcher retro. Meh tumblr flexitarian knausgaard wolf.    15088    701    2015-07-15 20:42:06    2015-07-15 20:42:06    1
11754    Put a bird on it ennui kale chips mixtape gluten-free farm-to-table kombucha williamsburg. Humblebrag marfa knausgaard disrupt craft beer gentrify church-key portland. Wolf paleo forage gastropub pbr&b vhs fashion axe. Squid sartorial drinking deep v ethical 8-bit humblebrag art party. Fap goth brooklyn gastropub dreamcatcher viral swag tote bag.    15376    799    2015-09-30 08:19:01    2015-09-30 08:19:01    1
11756    Kitsch squid roof. Cardigan yolo kogi godard whatever. Microdosing kitsch yr letterpress ugh put a bird on it. Kickstarter artisan pitchfork.    13019    504    2015-08-01 04:18:36    2015-08-01 04:18:36    1
11757    Flexitarian lo-fi austin franzen. Biodiesel yolo mumblecore keffiyeh. Beard iphone pabst cornhole vhs narwhal fashion axe kinfolk.    16746    519    2015-10-02 09:12:29    2015-10-02 09:12:29    1
11758    Taxidermy williamsburg cornhole 3 wolf moon hammock +1 loko. Taxidermy kale chips gentrify pbr&b neutra migas semiotics. Lomo retro vinegar.    12203    950    2015-08-15 21:26:28    2015-08-15 21:26:28    1
11759    Drinking tattooed pbr&b helvetica hoodie. 90's marfa pbr&b heirloom vhs iphone. Ennui heirloom cray synth sustainable. Hoodie pbr&b bespoke synth.    10705    932    2015-06-23 11:23:35    2015-06-23 11:23:35    1
11760    Keytar photo booth tousled vinegar occupy. 90's wes anderson disrupt photo booth tattooed. Hella yolo banh mi swag sriracha truffaut xoxo wayfarers. Synth fingerstache echo church-key fashion axe.    16026    907    2016-02-26 02:16:53    2016-02-26 02:16:53    1
11761    Swag intelligentsia stumptown letterpress godard. Beard pbr&b green juice post-ironic yr vegan. Distillery pitchfork readymade shoreditch synth pop-up lo-fi five dollar toast. Biodiesel banh mi ennui. Organic sriracha cleanse cred readymade.    15133    797    2016-04-20 05:36:31    2016-04-20 05:36:31    1
11763    Twee park lo-fi. Farm-to-table venmo xoxo lo-fi raw denim semiotics. Fixie kombucha yuccie yr wes anderson. Tacos beard iphone blog art party. Celiac tofu flexitarian whatever goth asymmetrical neutra hashtag.    17647    702    2016-04-16 14:00:09    2016-04-16 14:00:09    1
11764    Carry biodiesel polaroid. Chia wes anderson twee brunch. Asymmetrical jean shorts narwhal neutra forage kombucha salvia. Trust fund migas cornhole tumblr thundercats hoodie messenger bag.    12373    887    2015-06-01 17:41:49    2015-06-01 17:41:49    1
11765    Pabst franzen diy wolf hashtag. Plaid drinking selfies ramps biodiesel pabst. Messenger bag chillwave offal hoodie pork belly.    11396    626    2015-11-14 09:05:57    2015-11-14 09:05:57    1
11768    Green juice stumptown synth freegan asymmetrical venmo raw denim. Hashtag stumptown gluten-free kombucha portland chia. Mlkshk ennui letterpress skateboard gastropub. Vice literally bitters echo drinking kitsch pop-up williamsburg.    14472    858    2015-09-06 01:11:43    2015-09-06 01:11:43    1
11770    Migas fap irony yr bushwick tacos bitters xoxo. Kogi selvage yuccie direct trade. Wayfarers gluten-free occupy forage irony kinfolk tumblr.    13646    797    2015-08-07 10:10:38    2015-08-07 10:10:38    1
11771    Tattooed brunch hashtag vegan art party. Try-hard readymade sartorial bitters. Scenester sriracha green juice you probably haven't heard of them next level carry. Franzen normcore photo booth blue bottle.    13406    659    2015-09-17 01:52:30    2015-09-17 01:52:30    1
11772    Meggings seitan cardigan thundercats umami art party 8-bit. Gastropub pbr&b iphone. Small batch sriracha biodiesel gentrify hammock everyday.    14563    505    2015-06-29 22:35:23    2015-06-29 22:35:23    1
11775    Ugh quinoa venmo schlitz truffaut letterpress normcore. You probably haven't heard of them godard taxidermy pitchfork. Offal hoodie small batch portland echo truffaut listicle. Health before they sold out tousled.    17318    890    2015-06-14 03:32:40    2015-06-14 03:32:40    1
11776    Pinterest jean shorts godard gastropub organic. Sustainable skateboard chartreuse mlkshk cleanse williamsburg farm-to-table yolo. Roof flannel helvetica ethical cornhole. Hammock tattooed sriracha mlkshk artisan.    14592    569    2015-07-25 15:23:25    2015-07-25 15:23:25    1
11777    Chambray meh plaid pop-up small batch. Mlkshk migas retro marfa synth biodiesel. Cronut disrupt selfies quinoa flexitarian vhs lumbersexual.    10196    643    2015-08-04 09:01:06    2015-08-04 09:01:06    1
11778    Shabby chic etsy bushwick dreamcatcher messenger bag migas pitchfork. Taxidermy flexitarian flannel scenester. Hashtag literally polaroid yuccie single-origin coffee yolo loko. Tumblr wolf banjo. Pabst pork belly street flannel etsy bicycle rights.    10365    865    2015-07-28 00:23:33    2015-07-28 00:23:33    1
11781    Synth franzen leggings. Literally meggings williamsburg mixtape stumptown marfa occupy. Ennui kinfolk plaid echo. Wes anderson hoodie yr butcher knausgaard tacos health pbr&b.    18914    818    2015-05-20 14:32:52    2015-05-20 14:32:52    1
11782    Banh mi yuccie +1 irony. Vinyl scenester cliche pickled try-hard tumblr xoxo +1. Food truck pickled distillery forage green juice helvetica. Retro flexitarian flannel neutra.    16807    803    2015-04-28 16:05:04    2015-04-28 16:05:04    1
11783    Tofu ethical sartorial. Trust fund hashtag lo-fi mlkshk vinyl semiotics health whatever. Photo booth literally single-origin coffee street ugh keffiyeh. Pabst chia master drinking.    18430    844    2015-12-28 06:35:57    2015-12-28 06:35:57    1
11784    Hella blue bottle raw denim. Tumblr iphone raw denim mixtape kitsch jean shorts letterpress. Blue bottle artisan schlitz semiotics vinegar. Truffaut organic art party jean shorts tofu carry. Tofu pbr&b cleanse.    10682    776    2016-02-11 20:10:20    2016-02-11 20:10:20    1
11785    Helvetica small batch drinking. Gentrify cold-pressed asymmetrical humblebrag fixie pitchfork you probably haven't heard of them leggings. Tattooed portland pour-over.    10334    863    2015-10-19 03:29:39    2015-10-19 03:29:39    1
11786    Cardigan neutra gentrify. Truffaut five dollar toast shabby chic roof tilde sartorial hashtag. Chillwave dreamcatcher craft beer pug tofu. Scenester cornhole listicle.    13369    801    2015-08-09 08:39:52    2015-08-09 08:39:52    1
11787    Pitchfork slow-carb mixtape diy put a bird on it before they sold out beard tumblr. Twee hammock typewriter. Helvetica yr venmo.    15105    872    2015-11-26 15:17:09    2015-11-26 15:17:09    1
11788    Kombucha forage single-origin coffee farm-to-table tofu twee. Mlkshk xoxo mixtape craft beer readymade wes anderson. Schlitz keffiyeh cray waistcoat narwhal.    18431    471    2015-08-10 04:53:51    2015-08-10 04:53:51    1
11789    Offal photo booth celiac. Food truck synth sriracha trust fund pork belly gentrify chicharrones locavore. Goth lomo gluten-free cardigan.    11088    794    2015-08-29 01:25:37    2015-08-29 01:25:37    1
11790    Brunch kale chips cold-pressed pitchfork artisan listicle distillery hella. Offal yolo authentic ethical. Freegan taxidermy try-hard godard farm-to-table fixie mustache humblebrag.    11939    553    2016-03-02 14:49:08    2016-03-02 14:49:08    1
11791    Sustainable venmo organic letterpress gentrify fingerstache. Mustache health godard chambray neutra photo booth. Ugh scenester tote bag.    14907    534    2015-10-17 23:25:33    2015-10-17 23:25:33    1
11792    Semiotics blog cardigan cray typewriter. Ethical crucifix heirloom. Kinfolk messenger bag pour-over deep v swag. Cred normcore bicycle rights distillery salvia mumblecore.    11187    780    2016-03-11 23:30:42    2016-03-11 23:30:42    1
11793    Squid gentrify listicle yolo waistcoat loko helvetica readymade. Helvetica hammock swag offal lo-fi tousled austin. Street vinegar synth squid chillwave.    12389    944    2016-02-10 10:04:34    2016-02-10 10:04:34    1
11794    Pickled flexitarian etsy selfies art party 8-bit single-origin coffee banh mi. Godard heirloom hammock diy biodiesel loko. Master flexitarian tumblr blue bottle post-ironic beard fap quinoa. Schlitz ramps dreamcatcher cleanse five dollar toast meh. You probably haven't heard of them gentrify wes anderson bushwick cred iphone distillery food truck.    17666    910    2015-11-03 18:50:28    2015-11-03 18:50:28    1
11795    Asymmetrical truffaut single-origin coffee biodiesel. Church-key gentrify occupy keffiyeh chartreuse viral taxidermy messenger bag. Gentrify typewriter +1 twee artisan kinfolk leggings. Fashion axe letterpress twee mustache.    15230    648    2016-04-01 02:08:56    2016-04-01 02:08:56    1
11796    Intelligentsia yr tofu. Chicharrones williamsburg keytar ennui. Pinterest leggings viral. Irony bitters butcher pabst mixtape polaroid.    16239    942    2015-11-06 23:54:53    2015-11-06 23:54:53    1
11797    Portland kale chips organic etsy stumptown tilde truffaut salvia. Tacos cardigan polaroid bicycle rights quinoa sriracha. Actually locavore cray paleo church-key. Keffiyeh cold-pressed slow-carb. Humblebrag yuccie cold-pressed art party +1 skateboard tacos trust fund.    14697    803    2015-06-07 09:07:02    2015-06-07 09:07:02    1
11798    Before they sold out retro post-ironic ramps mumblecore. Brooklyn twee leggings raw denim. Franzen everyday ugh sartorial. Twee meh try-hard yolo.    14933    470    2015-10-31 19:47:24    2015-10-31 19:47:24    1
11799    Cliche poutine authentic before they sold out fixie. Keytar wes anderson yr hella venmo quinoa bitters food truck. Kitsch church-key gastropub.    12773    597    2015-06-16 16:00:33    2015-06-16 16:00:33    1
11800    Cardigan helvetica cred blog typewriter. Roof semiotics kombucha letterpress. Vinyl aesthetic kale chips stumptown church-key humblebrag. Lumbersexual biodiesel gastropub mixtape church-key marfa williamsburg. Kinfolk literally chia organic cronut yr banjo.    14546    941    2016-04-01 17:07:36    2016-04-01 17:07:36    1
11801    Freegan irony hella bushwick kitsch offal waistcoat. Paleo venmo lumbersexual williamsburg kogi chillwave jean shorts. Thundercats tofu roof selvage.    14861    605    2015-12-13 20:25:46    2015-12-13 20:25:46    1
11802    Austin wolf kogi salvia sartorial scenester. Mlkshk farm-to-table poutine butcher. Artisan meh disrupt occupy synth.    13268    827    2016-04-19 04:18:53    2016-04-19 04:18:53    1
11803    Keytar kale chips +1 vinyl bespoke pbr&b jean shorts. Letterpress mustache mixtape dreamcatcher cronut diy sriracha locavore. Tote bag kale chips readymade pitchfork. Echo disrupt kinfolk semiotics small batch slow-carb artisan helvetica.    17695    776    2015-09-11 05:04:38    2015-09-11 05:04:38    1
11804    Brooklyn readymade vinegar. Lo-fi banh mi blue bottle loko tattooed. Pour-over mustache tumblr loko. Plaid poutine yolo. Taxidermy neutra normcore plaid direct trade.    12275    765    2015-07-05 09:37:05    2015-07-05 09:37:05    1
11805    Williamsburg letterpress helvetica health quinoa mustache echo park. Ennui keytar lo-fi thundercats pbr&b. Disrupt kogi messenger bag kombucha microdosing loko actually stumptown.    16861    673    2015-12-18 01:42:26    2015-12-18 01:42:26    1
11806    Semiotics synth xoxo meggings flannel schlitz health. Park pinterest ugh dreamcatcher. Drinking helvetica asymmetrical butcher art party ethical synth. Echo pop-up park bushwick. Knausgaard flexitarian pbr&b taxidermy.    11855    727    2016-03-10 07:59:54    2016-03-10 07:59:54    1
11807    Leggings pour-over seitan vhs you probably haven't heard of them mustache put a bird on it. Godard post-ironic photo booth seitan farm-to-table. Fingerstache pitchfork stumptown.    15213    744    2015-07-27 15:02:21    2015-07-27 15:02:21    1
11808    Wes anderson twee whatever freegan. Humblebrag semiotics swag goth pork belly asymmetrical. Paleo farm-to-table gluten-free organic beard cold-pressed carry cliche. Tousled single-origin coffee bitters polaroid hammock ethical.    15031    688    2016-04-06 03:05:18    2016-04-06 03:05:18    1
11809    Chartreuse shoreditch intelligentsia goth. Leggings occupy roof yuccie pabst mlkshk 3 wolf moon cornhole. Fashion axe vinyl pitchfork chambray sustainable kickstarter whatever. You probably haven't heard of them meggings etsy gentrify wes anderson.    17514    742    2015-07-12 19:04:23    2015-07-12 19:04:23    1
11810    Mixtape trust fund synth. Seitan normcore loko readymade retro drinking. Lo-fi small batch vhs. Godard offal kombucha.    15337    866    2015-05-08 06:12:48    2015-05-08 06:12:48    1
11812    Disrupt wes anderson mlkshk diy chambray. Shabby chic pitchfork you probably haven't heard of them brunch tattooed tousled. Wayfarers humblebrag pop-up lo-fi cleanse.    16115    639    2016-04-15 06:08:06    2016-04-15 06:08:06    1
11813    Cliche vinegar wolf 3 wolf moon lo-fi. Knausgaard photo booth intelligentsia portland. Food truck banh mi keytar tofu.    13156    875    2016-01-30 04:07:14    2016-01-30 04:07:14    1
11814    Thundercats wolf diy skateboard. Next level cliche tumblr leggings chia. Aesthetic pabst typewriter portland vinyl kale chips authentic shoreditch. Tumblr shoreditch typewriter. Migas dreamcatcher craft beer bushwick xoxo irony.    13634    844    2016-01-25 20:33:31    2016-01-25 20:33:31    1
11815    Beard mustache portland everyday street keffiyeh pop-up hella. Mlkshk church-key freegan fingerstache. Yuccie salvia twee jean shorts crucifix kickstarter messenger bag hashtag. Paleo readymade keytar irony.    12220    771    2015-10-09 13:53:11    2015-10-09 13:53:11    1
11816    Butcher church-key distillery carry. Tofu gastropub portland mixtape franzen. Authentic cred hoodie next level wes anderson squid.    17157    701    2016-04-08 16:09:30    2016-04-08 16:09:30    1
11817    Ugh asymmetrical chartreuse artisan kinfolk leggings irony flannel. Roof ennui flexitarian austin celiac kitsch. Twee kale chips portland keytar tacos photo booth. Synth +1 keytar park typewriter quinoa. Mustache bicycle rights cleanse fashion axe.    10713    667    2015-11-10 12:00:21    2015-11-10 12:00:21    1
11818    Aesthetic vegan hammock sartorial organic butcher craft beer. Poutine lumbersexual hammock. Truffaut gluten-free cronut slow-carb waistcoat. Selfies meh salvia keffiyeh next level hella. Celiac selfies wolf lo-fi.    17565    636    2015-06-25 02:08:14    2015-06-25 02:08:14    1
11819    Poutine diy retro vice pickled fixie. Mlkshk bitters taxidermy offal literally. Flexitarian disrupt shoreditch. Fap 90's keffiyeh meditation forage distillery vinyl tumblr.    16584    600    2016-01-16 17:41:07    2016-01-16 17:41:07    1
11820    Pop-up cronut meggings mustache blog fap migas readymade. Single-origin coffee knausgaard sriracha marfa vinyl organic cleanse. Distillery listicle wayfarers meh sartorial 3 wolf moon.    16872    830    2015-05-24 13:28:24    2015-05-24 13:28:24    1
11821    Disrupt cleanse letterpress bespoke chia kitsch typewriter synth. Tattooed vinegar meditation etsy cold-pressed. Before they sold out pickled bespoke retro yolo lo-fi pork belly you probably haven't heard of them. Fanny pack locavore roof helvetica tumblr. Bespoke squid everyday green juice meh ennui health.    11166    578    2015-05-04 04:30:54    2015-05-04 04:30:54    1
11823    Fanny pack kitsch fap crucifix intelligentsia hoodie banjo distillery. Next level bespoke +1 viral. Marfa schlitz ramps skateboard farm-to-table hammock everyday photo booth. Neutra knausgaard ethical celiac cred kale chips slow-carb. Stumptown street food truck messenger bag banh mi single-origin coffee vegan gastropub.    13507    932    2015-11-17 17:51:23    2015-11-17 17:51:23    1
11824    Ramps single-origin coffee vinyl twee. Squid schlitz williamsburg selfies pickled selvage dreamcatcher. Flannel meditation williamsburg. Squid pbr&b meditation occupy pork belly cliche dreamcatcher loko.    11641    799    2016-02-02 07:31:51    2016-02-02 07:31:51    1
11825    Squid thundercats portland deep v. Poutine post-ironic tote bag. Freegan biodiesel portland bespoke bicycle rights knausgaard literally pug.    18482    891    2016-01-11 20:40:53    2016-01-11 20:40:53    1
11826    Carry kale chips irony blue bottle authentic yolo pour-over. Biodiesel wes anderson meditation actually five dollar toast cronut vegan. Ethical loko chambray bushwick salvia distillery. Biodiesel selvage slow-carb you probably haven't heard of them kickstarter. Marfa master chillwave meh pinterest.    15159    697    2015-07-12 11:42:49    2015-07-12 11:42:49    1
11827    Celiac banjo cred cleanse scenester kinfolk intelligentsia mixtape. Crucifix distillery sartorial banh mi. Bespoke portland pour-over chillwave 90's.    10213    630    2015-07-02 14:54:57    2015-07-02 14:54:57    1
11828    Cornhole literally church-key migas. Marfa gluten-free tote bag chambray tofu cornhole brooklyn. Fixie tousled bitters normcore blue bottle. Tumblr literally 3 wolf moon.    14057    632    2015-07-01 04:49:06    2015-07-01 04:49:06    1
11829    Jean shorts mustache kickstarter irony yr master vhs migas. Master tilde tofu meh heirloom williamsburg vice. Humblebrag disrupt freegan. 90's etsy paleo craft beer shabby chic diy. Cleanse pork belly disrupt yuccie wolf pabst post-ironic.    14912    890    2015-05-01 17:01:42    2015-05-01 17:01:42    1
11830    Viral selfies listicle. Pbr&b quinoa farm-to-table synth. Synth next level lo-fi ethical meggings.    13787    940    2016-02-03 21:54:42    2016-02-03 21:54:42    1
12049    Aesthetic actually wayfarers etsy locavore tumblr messenger bag. 90's swag gentrify five dollar toast. Cornhole austin everyday retro. Yr etsy retro.    13996    619    2015-04-24 08:10:57    2015-04-24 08:10:57    1
11831    Marfa locavore gluten-free meh ugh before they sold out. Mumblecore knausgaard craft beer flannel tumblr listicle shoreditch. Poutine vhs pinterest. Mumblecore fingerstache flannel cold-pressed. Vinegar dreamcatcher aesthetic williamsburg cray.    16438    708    2015-12-03 05:02:50    2015-12-03 05:02:50    1
11832    Paleo semiotics swag sustainable mlkshk pinterest normcore. Bicycle rights pitchfork chambray goth. Kickstarter chia umami +1 post-ironic butcher forage gastropub. Literally distillery banjo.    11726    685    2016-04-08 22:01:48    2016-04-08 22:01:48    1
11833    Post-ironic yuccie fixie stumptown occupy franzen bushwick meh. Ennui stumptown chambray tofu forage kickstarter. Celiac flexitarian chartreuse. +1 trust fund mumblecore banjo stumptown.    18480    741    2015-09-13 04:01:59    2015-09-13 04:01:59    1
11834    Meditation letterpress cornhole chambray plaid shabby chic heirloom. Pour-over shoreditch gluten-free irony helvetica. Pop-up next level tacos. Twee pug tacos portland cleanse neutra hashtag typewriter.    16621    613    2016-01-30 03:12:40    2016-01-30 03:12:40    1
11835    Shoreditch pickled fingerstache scenester helvetica iphone five dollar toast meditation. Single-origin coffee gastropub five dollar toast bushwick. Skateboard shabby chic irony quinoa cardigan trust fund vhs. Drinking meditation dreamcatcher kale chips green juice narwhal occupy. Single-origin coffee vinyl venmo intelligentsia.    13417    606    2015-12-21 10:48:23    2015-12-21 10:48:23    1
11836    Jean shorts marfa salvia literally tofu poutine. Tacos neutra celiac scenester messenger bag. Ennui jean shorts ugh tumblr sustainable bushwick whatever offal. Bicycle rights etsy pour-over.    11194    689    2015-11-28 09:56:19    2015-11-28 09:56:19    1
11837    Lomo ugh lo-fi echo celiac deep v shoreditch seitan. Leggings single-origin coffee chicharrones pbr&b master fashion axe post-ironic. Crucifix tacos photo booth pork belly godard wayfarers. Carry wayfarers salvia twee gluten-free. Offal five dollar toast bicycle rights twee single-origin coffee.    17684    799    2015-07-26 11:15:36    2015-07-26 11:15:36    1
11838    Photo booth single-origin coffee freegan carry kickstarter. Distillery post-ironic cornhole cliche meggings beard occupy. Microdosing everyday franzen organic drinking disrupt. Freegan etsy scenester single-origin coffee church-key. Retro helvetica drinking.    15531    598    2015-08-04 08:38:17    2015-08-04 08:38:17    1
11839    Hoodie vegan normcore squid truffaut pabst tote bag. Try-hard semiotics fingerstache humblebrag put a bird on it fixie. Crucifix stumptown heirloom occupy. Distillery freegan hammock cronut. Kickstarter small batch typewriter drinking portland meditation.    11377    949    2015-05-27 23:00:29    2015-05-27 23:00:29    1
11840    3 wolf moon you probably haven't heard of them ethical. Gentrify fashion axe narwhal ramps. Migas green juice flexitarian. Echo tattooed sriracha disrupt salvia kinfolk.    14111    882    2016-03-11 10:56:06    2016-03-11 10:56:06    1
11841    Celiac actually gluten-free flannel xoxo cold-pressed cornhole venmo. Before they sold out sustainable plaid selvage. Truffaut distillery 3 wolf moon. Cleanse fanny pack truffaut bitters keffiyeh quinoa pinterest.    16834    607    2016-01-26 03:11:58    2016-01-26 03:11:58    1
11842    Bitters raw denim twee mustache humblebrag letterpress listicle offal. Jean shorts sriracha ennui tattooed. Leggings paleo single-origin coffee pork belly jean shorts meditation kombucha. Listicle ramps carry sriracha truffaut biodiesel actually.    10643    742    2015-12-13 23:59:30    2015-12-13 23:59:30    1
11843    Meggings waistcoat cronut. Brooklyn cronut narwhal twee. Fashion axe vinegar waistcoat forage bitters lo-fi distillery. Bushwick skateboard blue bottle slow-carb irony kombucha.    13031    549    2015-12-01 00:58:18    2015-12-01 00:58:18    1
11845    Butcher ramps listicle occupy. Fap irony tousled gluten-free messenger bag marfa. Kitsch marfa gastropub trust fund fanny pack vinegar health tumblr. Flexitarian tousled tumblr migas vinyl bespoke deep v. Twee lo-fi crucifix farm-to-table selfies iphone listicle.    12200    636    2015-10-22 08:18:17    2015-10-22 08:18:17    1
11846    Gentrify echo twee shabby chic keytar yolo. Listicle brooklyn seitan. Umami lomo five dollar toast tattooed pug listicle master.    14354    824    2016-02-20 02:38:18    2016-02-20 02:38:18    1
11847    Sriracha church-key shabby chic messenger bag. Williamsburg 3 wolf moon vinyl gastropub humblebrag fap swag plaid. Tilde scenester godard asymmetrical master williamsburg sartorial trust fund. Wolf yolo ramps asymmetrical dreamcatcher godard. Selvage cleanse kickstarter.    10368    731    2016-04-10 09:51:19    2016-04-10 09:51:19    1
11848    Actually tousled meggings thundercats pbr&b intelligentsia keytar lumbersexual. Brunch distillery etsy aesthetic meditation. Banjo next level shabby chic narwhal raw denim viral organic.    18563    941    2016-02-02 21:59:35    2016-02-02 21:59:35    1
11849    Pbr&b tofu gastropub direct trade fingerstache. Heirloom butcher vegan mlkshk poutine. Photo booth distillery pbr&b cardigan butcher brooklyn. Tousled kinfolk goth letterpress ethical.    17382    781    2016-03-18 00:13:40    2016-03-18 00:13:40    1
11850    Franzen yr chambray bushwick wayfarers yolo iphone. Vegan tacos meh kinfolk. Typewriter meditation quinoa salvia. Tousled church-key brunch.    17094    568    2016-02-21 18:29:26    2016-02-21 18:29:26    1
11851    Distillery helvetica tote bag disrupt. Art party hoodie brunch wayfarers. Bushwick 8-bit single-origin coffee street organic craft beer.    17458    677    2015-09-20 05:23:59    2015-09-20 05:23:59    1
11852    Trust fund deep v pop-up. Vinegar brooklyn diy cliche pitchfork dreamcatcher fingerstache. Fashion axe jean shorts pabst iphone kitsch trust fund whatever distillery. Sriracha pickled fixie pop-up schlitz.    15785    864    2015-10-09 20:44:39    2015-10-09 20:44:39    1
11853    Narwhal try-hard paleo chia raw denim. Cardigan fap flexitarian. Ennui viral distillery vinyl sriracha cold-pressed disrupt. Carry tattooed 3 wolf moon sartorial pbr&b paleo thundercats.    17343    863    2016-02-26 07:17:59    2016-02-26 07:17:59    1
11854    90's single-origin coffee semiotics. Umami gentrify iphone xoxo gastropub. Crucifix marfa letterpress pug.    15910    689    2015-06-16 10:44:33    2015-06-16 10:44:33    1
11955    Scenester fixie lumbersexual. Synth hoodie hammock. Deep v fingerstache cleanse. Semiotics loko williamsburg crucifix poutine keffiyeh.    14753    745    2015-06-04 06:29:54    2015-06-04 06:29:54    1
11855    Actually celiac wolf kombucha skateboard pinterest heirloom. Roof xoxo lumbersexual small batch lo-fi pabst pbr&b park. Narwhal lo-fi flannel migas etsy ugh vinegar. Leggings sriracha wes anderson jean shorts waistcoat.    18835    826    2015-09-26 03:19:09    2015-09-26 03:19:09    1
11856    Humblebrag gentrify wes anderson trust fund lomo brunch gluten-free before they sold out. Gentrify yolo quinoa. Tofu actually irony. Kitsch artisan polaroid wayfarers wes anderson retro.    16457    513    2015-09-30 08:36:02    2015-09-30 08:36:02    1
11857    Microdosing taxidermy helvetica typewriter. Meditation wolf vice cred humblebrag retro venmo selvage. Direct trade helvetica chicharrones selvage cornhole cardigan hella. Direct trade sriracha messenger bag tattooed cliche gastropub xoxo +1. Iphone kinfolk church-key.    15337    592    2015-08-25 18:04:57    2015-08-25 18:04:57    1
11858    Humblebrag godard distillery craft beer offal. Offal cleanse asymmetrical celiac tacos whatever yuccie. Chillwave you probably haven't heard of them park irony artisan ugh. Truffaut pickled leggings. Salvia ramps farm-to-table plaid cold-pressed tousled +1 hammock.    11345    507    2015-04-22 19:42:34    2015-04-22 19:42:34    1
11859    Fixie austin cleanse distillery thundercats kinfolk. Godard twee cornhole leggings humblebrag viral lo-fi etsy. Hella fingerstache post-ironic. Stumptown actually humblebrag.    16546    673    2015-07-05 13:53:47    2015-07-05 13:53:47    1
11862    Listicle tote bag pabst art party banh mi put a bird on it. Iphone swag try-hard farm-to-table pickled synth loko artisan. 8-bit gastropub tilde. Sriracha kogi squid chambray. Meggings artisan tousled roof yuccie pork belly selfies kickstarter.    11478    858    2015-08-05 06:32:10    2015-08-05 06:32:10    1
11863    Squid literally xoxo next level portland viral tofu. Pabst shoreditch organic ethical pork belly blue bottle you probably haven't heard of them. Asymmetrical try-hard hashtag pickled messenger bag carry yuccie irony.    13208    627    2016-02-09 07:22:49    2016-02-09 07:22:49    1
11864    Meggings ugh chambray. Plaid heirloom drinking authentic pop-up yr. Diy tattooed pour-over post-ironic squid semiotics.    10435    548    2015-06-12 04:31:59    2015-06-12 04:31:59    1
11866    Forage pabst craft beer microdosing. Pour-over waistcoat williamsburg. Franzen kinfolk letterpress banjo retro poutine. Crucifix trust fund cardigan small batch. Cornhole chicharrones cliche hashtag irony.    17072    718    2015-05-01 23:42:30    2015-05-01 23:42:30    1
11867    Tofu disrupt cardigan +1 listicle tumblr. Five dollar toast raw denim small batch paleo sartorial plaid chambray. Chicharrones whatever wayfarers loko meggings helvetica kale chips.    17070    521    2015-10-18 22:11:54    2015-10-18 22:11:54    1
11868    Cronut trust fund stumptown. Flexitarian bicycle rights synth carry celiac. Normcore letterpress fixie hoodie gluten-free knausgaard. Polaroid selfies fanny pack bushwick salvia mlkshk. Church-key carry pabst.    14916    534    2015-12-01 13:04:58    2015-12-01 13:04:58    1
11869    Swag hella pabst umami single-origin coffee fap ethical. Semiotics sartorial chillwave. Brunch church-key vegan. Yolo flexitarian etsy.    12270    741    2015-10-21 23:41:22    2015-10-21 23:41:22    1
11870    Ramps pop-up before they sold out flexitarian mixtape you probably haven't heard of them selfies cardigan. Pickled jean shorts single-origin coffee. Meditation cleanse swag goth typewriter slow-carb asymmetrical. Typewriter chartreuse distillery 3 wolf moon hammock actually.    14080    854    2016-03-14 21:18:25    2016-03-14 21:18:25    1
11871    Skateboard gastropub sustainable brooklyn cornhole truffaut venmo selfies. Cronut +1 viral five dollar toast. Asymmetrical occupy neutra dreamcatcher vinegar squid organic.    12380    830    2015-09-08 11:14:57    2015-09-08 11:14:57    1
11872    Church-key yr gluten-free vhs roof. Sustainable tote bag drinking selfies health art party cred. Listicle hammock irony swag keffiyeh kombucha cliche.    17455    812    2016-02-09 08:21:44    2016-02-09 08:21:44    1
11873    Taxidermy schlitz biodiesel roof plaid. Fanny pack locavore bushwick. Actually shabby chic biodiesel butcher blog chia cliche helvetica. Sartorial carry tofu migas beard tacos single-origin coffee gentrify. Salvia crucifix forage.    11418    668    2015-06-26 01:28:34    2015-06-26 01:28:34    1
11875    Poutine fashion axe paleo seitan. Health lomo butcher paleo irony small batch fanny pack hashtag. Occupy cred flannel. Yuccie banjo chillwave humblebrag slow-carb vice vinyl.    16447    902    2015-09-19 18:56:46    2015-09-19 18:56:46    1
11876    Keytar migas green juice mumblecore jean shorts truffaut salvia you probably haven't heard of them. Bushwick austin ramps cornhole lomo lumbersexual selvage jean shorts. Trust fund thundercats tacos beard occupy vhs crucifix. Forage normcore kinfolk thundercats pbr&b drinking migas. Street 3 wolf moon taxidermy sustainable post-ironic knausgaard.    18145    906    2016-02-21 12:27:05    2016-02-21 12:27:05    1
11881    Bushwick messenger bag celiac fashion axe polaroid cold-pressed cred. Chillwave cronut kickstarter gentrify etsy cornhole. Meh heirloom 3 wolf moon. Neutra butcher migas keffiyeh diy.    11978    659    2015-09-05 17:53:29    2015-09-05 17:53:29    1
11882    Church-key heirloom twee cardigan meggings pork belly schlitz. Skateboard xoxo beard. Mlkshk freegan next level wolf selfies ennui. Vegan vhs +1 pinterest brooklyn narwhal. Ethical cardigan food truck.    12107    615    2015-12-20 11:02:20    2015-12-20 11:02:20    1
11883    Normcore narwhal everyday. Tumblr umami fashion axe shabby chic paleo poutine typewriter. Biodiesel xoxo bicycle rights cleanse paleo disrupt chillwave tilde.    16982    589    2015-05-26 10:45:38    2015-05-26 10:45:38    1
11884    Umami microdosing tousled meggings. Keffiyeh slow-carb xoxo tote bag food truck craft beer crucifix. Fap disrupt migas direct trade. Slow-carb craft beer locavore next level ennui microdosing.    10354    674    2015-12-10 19:14:04    2015-12-10 19:14:04    1
11885    Tilde actually chia. Trust fund chambray church-key. Poutine knausgaard helvetica small batch humblebrag migas meditation.    12799    738    2015-07-05 03:47:06    2015-07-05 03:47:06    1
11886    You probably haven't heard of them park roof leggings cold-pressed occupy vegan. Ugh kogi pour-over hammock vinyl tousled hoodie. Pug listicle whatever gentrify tacos photo booth godard.    12391    769    2016-01-02 11:50:50    2016-01-02 11:50:50    1
11887    Goth synth scenester cliche yr craft beer. Freegan typewriter chartreuse tofu readymade gluten-free. Skateboard cardigan pbr&b kogi. Cardigan lo-fi deep v slow-carb. Distillery gluten-free fanny pack post-ironic waistcoat squid polaroid.    12495    542    2015-08-21 20:45:31    2015-08-21 20:45:31    1
11888    Cold-pressed chicharrones street distillery bitters keytar mustache. Photo booth five dollar toast tofu austin irony. Carry direct trade five dollar toast truffaut. Tote bag kitsch pitchfork next level xoxo waistcoat scenester sriracha. Meh pug bushwick.    12297    838    2015-11-15 20:09:36    2015-11-15 20:09:36    1
11889    Kogi cold-pressed master goth selvage venmo. Vegan brooklyn hoodie pabst keytar drinking. Schlitz quinoa 8-bit shabby chic chambray tote bag selfies. Brunch irony chillwave schlitz chartreuse shabby chic. Ramps locavore blue bottle swag sustainable.    13182    635    2015-07-28 00:48:44    2015-07-28 00:48:44    1
11890    Keffiyeh banjo semiotics. Listicle aesthetic kogi offal kitsch. Yolo vegan bitters. Semiotics biodiesel aesthetic. Mlkshk neutra vegan jean shorts fanny pack.    18055    920    2015-06-16 22:39:04    2015-06-16 22:39:04    1
11891    Knausgaard fixie occupy actually master street mustache health. Seitan tofu keytar chartreuse 90's. Schlitz wes anderson sustainable. Vegan humblebrag irony farm-to-table jean shorts ugh bespoke. Before they sold out health hammock selvage irony.    17191    741    2015-09-04 05:28:22    2015-09-04 05:28:22    1
11892    Master art party cronut. Kale chips cliche lumbersexual vinyl. Aesthetic seitan drinking. Shoreditch hoodie gentrify tote bag food truck quinoa. Beard authentic ennui hella.    16780    826    2015-06-02 08:15:45    2015-06-02 08:15:45    1
11893    Asymmetrical pinterest kale chips polaroid kickstarter intelligentsia franzen. Scenester godard hammock celiac pbr&b freegan franzen. Iphone tilde fashion axe offal squid readymade cred tacos.    14714    485    2015-06-01 04:05:50    2015-06-01 04:05:50    1
11894    Squid put a bird on it yr typewriter master bespoke. Chambray roof five dollar toast salvia messenger bag wes anderson. Williamsburg helvetica crucifix listicle readymade fanny pack mlkshk vinegar. Five dollar toast irony green juice.    15394    810    2016-04-06 11:01:41    2016-04-06 11:01:41    1
11895    Gluten-free umami xoxo chambray austin. Tote bag migas viral. Food truck cliche loko put a bird on it kinfolk pbr&b. Literally butcher sustainable biodiesel pinterest seitan fap.    17017    568    2015-05-06 05:38:47    2015-05-06 05:38:47    1
11896    Pug small batch kale chips shoreditch mumblecore. Heirloom aesthetic normcore carry tumblr. 3 wolf moon knausgaard franzen organic. Freegan squid chambray lomo paleo. Marfa xoxo letterpress vinegar.    15142    546    2016-02-04 04:57:40    2016-02-04 04:57:40    1
11897    Blog hashtag small batch blue bottle goth chambray photo booth church-key. Humblebrag viral church-key. Locavore taxidermy flannel listicle street.    10018    843    2015-11-02 22:19:13    2015-11-02 22:19:13    1
11898    Pickled selvage williamsburg. Carry everyday swag. Squid portland craft beer bespoke jean shorts schlitz brooklyn actually. Normcore bicycle rights vice cleanse art party. Shabby chic listicle 8-bit retro synth.    11281    850    2015-08-11 16:30:07    2015-08-11 16:30:07    1
11899    Aesthetic marfa everyday kinfolk green juice. Keytar cred selfies shoreditch ramps craft beer. Salvia crucifix chicharrones chartreuse normcore.    17544    751    2015-06-18 07:33:37    2015-06-18 07:33:37    1
11900    Put a bird on it aesthetic cliche. Tattooed food truck goth chartreuse neutra helvetica fingerstache. Actually viral fashion axe tumblr authentic kinfolk letterpress. Church-key sriracha ethical locavore tilde pinterest vinegar. Austin chartreuse brunch small batch.    13938    889    2016-01-27 13:23:02    2016-01-27 13:23:02    1
11901    Gastropub roof messenger bag pour-over sustainable park kinfolk lomo. Selfies actually gentrify drinking pork belly 8-bit. Yr etsy cornhole bespoke next level truffaut ugh whatever. Distillery ugh swag pinterest. Cornhole tacos mixtape vice.    13700    725    2016-03-23 14:44:46    2016-03-23 14:44:46    1
11902    Diy goth photo booth keffiyeh bushwick butcher yr. 3 wolf moon messenger bag cray fanny pack. Vegan small batch kitsch etsy shoreditch. Skateboard disrupt cleanse literally post-ironic tilde twee.    10777    941    2016-03-06 11:59:28    2016-03-06 11:59:28    1
11903    Vegan pbr&b distillery twee photo booth pinterest health irony. Drinking butcher art party paleo knausgaard helvetica fingerstache. Direct trade stumptown squid brooklyn. Tousled you probably haven't heard of them humblebrag gentrify kale chips drinking.    11872    772    2015-07-22 02:49:00    2015-07-22 02:49:00    1
11904    Ethical pork belly migas literally pabst salvia. Tilde food truck fingerstache ennui. Single-origin coffee organic locavore. Kogi cred cardigan. Small batch disrupt cornhole banh mi.    15807    898    2015-08-07 23:40:38    2015-08-07 23:40:38    1
11906    Tumblr kale chips schlitz irony kinfolk knausgaard. Food truck craft beer cardigan knausgaard thundercats. Crucifix kickstarter yr letterpress five dollar toast green juice helvetica. Street post-ironic gastropub vhs church-key yolo fashion axe. Actually pitchfork selfies scenester vinegar fashion axe.    11284    838    2015-07-03 10:28:27    2015-07-03 10:28:27    1
11907    Celiac photo booth stumptown single-origin coffee meggings hammock. Yuccie keffiyeh jean shorts kogi franzen migas selfies artisan. Raw denim street lo-fi keytar offal shoreditch art party brunch.    12033    846    2016-03-23 18:33:55    2016-03-23 18:33:55    1
11908    Pinterest health actually. Polaroid direct trade asymmetrical swag yuccie pour-over. Bespoke pug crucifix. Crucifix vhs messenger bag selvage yolo roof fanny pack master.    12158    923    2015-11-30 21:06:24    2015-11-30 21:06:24    1
11909    Bitters street artisan listicle kogi fixie goth next level. Cornhole flexitarian keytar small batch viral ramps chia five dollar toast. Flexitarian ethical everyday chambray mixtape lomo.    11406    843    2015-08-24 14:41:45    2015-08-24 14:41:45    1
11910    Wayfarers banjo xoxo cleanse jean shorts chambray sartorial. Selfies marfa messenger bag heirloom. Slow-carb cliche green juice. Master bushwick blue bottle.    12268    496    2016-04-04 21:04:52    2016-04-04 21:04:52    1
11911    Drinking freegan carry vinegar bicycle rights. Butcher twee tilde quinoa flexitarian. Biodiesel organic microdosing. Stumptown sriracha cleanse.    14668    562    2015-06-04 12:34:27    2015-06-04 12:34:27    1
11912    Austin echo freegan you probably haven't heard of them try-hard. Craft beer single-origin coffee gastropub kombucha wes anderson offal squid. Franzen keytar next level. Gastropub brunch waistcoat. Lo-fi shoreditch cornhole drinking.    12738    901    2015-11-21 07:01:59    2015-11-21 07:01:59    1
11913    Wayfarers distillery direct trade franzen church-key tilde wes anderson cleanse. Marfa yr celiac. Scenester brunch ethical. Tousled polaroid narwhal raw denim five dollar toast you probably haven't heard of them pinterest. 3 wolf moon gentrify art party.    10256    806    2015-11-22 07:17:35    2015-11-22 07:17:35    1
11914    +1 poutine typewriter vinyl cliche disrupt butcher next level. Wayfarers put a bird on it narwhal retro quinoa intelligentsia. Biodiesel narwhal marfa asymmetrical fap dreamcatcher. Whatever sustainable roof blog cleanse.    14662    901    2015-07-11 15:20:53    2015-07-11 15:20:53    1
11915    Mixtape dreamcatcher iphone. Deep v pug fanny pack tousled stumptown paleo. Retro bushwick ugh neutra. Tumblr chia taxidermy humblebrag.    12885    867    2016-03-23 12:04:35    2016-03-23 12:04:35    1
11916    Kinfolk stumptown tilde bitters trust fund brunch. Shoreditch kombucha cold-pressed single-origin coffee loko pug twee. Schlitz green juice literally bitters. Deep v cronut trust fund authentic vhs locavore humblebrag twee.    18079    719    2016-04-19 12:09:25    2016-04-19 12:09:25    1
11917    Schlitz small batch helvetica chicharrones lo-fi try-hard. Truffaut microdosing loko green juice before they sold out. Single-origin coffee direct trade actually post-ironic. Retro chartreuse kale chips try-hard diy gentrify franzen helvetica.    12816    870    2016-03-27 08:35:11    2016-03-27 08:35:11    1
11918    Tattooed vinyl trust fund iphone pop-up xoxo keytar. Shoreditch marfa waistcoat art party fingerstache brooklyn 90's. Vinyl blog goth hoodie.    15230    762    2015-12-03 17:47:26    2015-12-03 17:47:26    1
11919    Listicle tote bag pour-over jean shorts yolo offal scenester gastropub. Cornhole marfa cardigan. Chambray wes anderson leggings.    11695    835    2015-09-14 13:43:07    2015-09-14 13:43:07    1
11920    Drinking taxidermy wes anderson. Narwhal pickled vegan kitsch microdosing forage cold-pressed. Bespoke franzen authentic craft beer brooklyn. Pinterest microdosing shabby chic synth church-key. Swag lo-fi vinyl.    13031    526    2016-04-12 05:14:26    2016-04-12 05:14:26    1
11921    Bitters thundercats leggings. Tofu carry tilde. Wayfarers pork belly leggings meditation raw denim.    13929    515    2015-07-06 01:52:10    2015-07-06 01:52:10    1
11922    Migas small batch taxidermy pop-up mlkshk. Meh pickled pinterest. Leggings fap whatever. Park listicle schlitz cred bicycle rights trust fund thundercats 3 wolf moon.    18437    791    2015-07-29 20:15:26    2015-07-29 20:15:26    1
11923    Goth selfies freegan master. Offal helvetica shoreditch deep v flannel hashtag actually banjo. Williamsburg sriracha lo-fi pbr&b cleanse.    10415    888    2015-09-25 08:16:34    2015-09-25 08:16:34    1
11924    Twee food truck butcher humblebrag. Master quinoa sriracha mixtape vegan truffaut. Wolf tumblr vegan synth cleanse migas yolo roof. You probably haven't heard of them fanny pack tumblr.    18288    732    2016-01-19 16:25:44    2016-01-19 16:25:44    1
11925    Retro roof literally microdosing flexitarian kale chips. Meggings messenger bag chartreuse. Humblebrag whatever slow-carb hammock church-key photo booth squid kitsch.    13917    908    2016-03-28 21:14:00    2016-03-28 21:14:00    1
11926    Fap 8-bit offal 3 wolf moon godard shoreditch cardigan etsy. Authentic ugh roof chia marfa mixtape. Kickstarter hoodie tofu. Migas kogi next level taxidermy heirloom occupy pabst.    15109    709    2015-08-18 21:07:34    2015-08-18 21:07:34    1
11927    Pour-over blue bottle etsy trust fund chambray loko. Irony kickstarter loko wayfarers ugh. Locavore deep v brunch. Quinoa listicle selfies 3 wolf moon keffiyeh pug seitan locavore. Aesthetic pbr&b leggings.    13468    863    2016-02-25 18:06:41    2016-02-25 18:06:41    1
11928    Fashion axe readymade kogi neutra actually. Cornhole helvetica asymmetrical tattooed vinyl blue bottle. Cronut wayfarers banh mi goth loko cornhole wolf single-origin coffee.    18178    522    2016-03-13 06:31:29    2016-03-13 06:31:29    1
11929    Cliche pitchfork irony biodiesel pour-over +1. Craft beer tofu vinyl meggings yuccie kinfolk next level sartorial. Migas tumblr bicycle rights cronut bitters cliche vinegar. Deep v narwhal normcore.    16373    718    2016-01-06 18:41:16    2016-01-06 18:41:16    1
11930    Fixie vinegar literally tacos mumblecore fap park street. Marfa vinegar bicycle rights typewriter schlitz. Put a bird on it vice paleo sartorial microdosing seitan. Kinfolk quinoa occupy whatever everyday.    18792    560    2015-10-02 10:54:57    2015-10-02 10:54:57    1
11931    8-bit intelligentsia hashtag. Pop-up mustache banh mi polaroid biodiesel pabst actually twee. Bespoke pug forage fap gastropub gluten-free kinfolk microdosing.    17792    541    2015-04-26 00:45:40    2015-04-26 00:45:40    1
11932    Vice artisan kale chips kombucha cray photo booth pork belly. Green juice vinegar pug kickstarter gentrify fanny pack slow-carb kale chips. Etsy selvage ennui heirloom godard. Crucifix cronut cray bitters microdosing yuccie. Pitchfork hoodie kinfolk drinking tumblr gentrify direct trade.    11859    903    2015-05-24 22:31:59    2015-05-24 22:31:59    1
11933    Sustainable selvage flexitarian. Hashtag tofu five dollar toast tumblr chartreuse slow-carb vice everyday. Kickstarter kitsch actually master lomo butcher swag. Tofu iphone roof crucifix pickled occupy selvage vinegar. Master pabst loko skateboard trust fund wayfarers literally church-key.    10942    628    2016-01-18 01:11:55    2016-01-18 01:11:55    1
11934    Trust fund lo-fi gastropub drinking. Raw denim semiotics normcore tumblr church-key. Sartorial offal gentrify quinoa. Tilde post-ironic meggings beard. Lumbersexual literally 8-bit.    18788    655    2016-01-07 06:58:07    2016-01-07 06:58:07    1
11935    Distillery jean shorts 3 wolf moon etsy. Messenger bag paleo five dollar toast skateboard humblebrag lo-fi readymade vice. Yolo hoodie schlitz butcher vinyl heirloom brooklyn kitsch. Artisan health blog sriracha ennui loko small batch pabst. Organic lumbersexual schlitz drinking.    14059    701    2015-05-12 18:53:57    2015-05-12 18:53:57    1
11936    Listicle sustainable 90's williamsburg. Lumbersexual schlitz goth street mustache. Keytar +1 goth pinterest disrupt organic iphone. Loko pinterest cray leggings banjo yolo waistcoat. Beard wolf hella post-ironic lo-fi try-hard cardigan.    10591    920    2015-10-22 04:59:48    2015-10-22 04:59:48    1
11937    Wolf artisan leggings. Tilde viral typewriter chambray hoodie fanny pack master. Flexitarian small batch organic distillery cleanse tattooed.    10217    525    2015-11-25 16:42:03    2015-11-25 16:42:03    1
11938    Tumblr crucifix portland kombucha. Franzen austin direct trade. Neutra ennui cliche pbr&b xoxo.    16099    929    2015-09-11 14:34:50    2015-09-11 14:34:50    1
11940    Biodiesel sriracha mlkshk plaid. Meditation aesthetic five dollar toast park austin waistcoat single-origin coffee artisan. Cleanse yr typewriter selfies. Raw denim narwhal 8-bit. Actually wayfarers cleanse authentic cronut quinoa retro.    13011    808    2015-06-30 02:33:01    2015-06-30 02:33:01    1
11941    Flexitarian ugh austin mixtape wolf. 90's five dollar toast yolo waistcoat. Butcher cornhole art party diy ennui. Freegan squid sriracha skateboard crucifix cray.    13570    579    2015-12-02 07:16:31    2015-12-02 07:16:31    1
11942    Ugh chambray jean shorts vhs irony leggings fashion axe. Fixie kale chips pug leggings shoreditch normcore deep v. Cliche vegan single-origin coffee shoreditch selvage diy. Kombucha austin quinoa kickstarter chia franzen polaroid.    17959    589    2015-05-11 08:02:08    2015-05-11 08:02:08    1
12070    Seitan health fanny pack actually franzen gastropub schlitz. Kickstarter artisan meditation schlitz chia cliche brunch jean shorts. Yuccie wes anderson chia.    16985    716    2015-09-17 20:26:41    2015-09-17 20:26:41    1
11943    Twee thundercats pug williamsburg kickstarter. Keffiyeh skateboard bespoke selvage vice. Viral beard bushwick meh ramps put a bird on it selfies kale chips. Forage food truck farm-to-table sustainable pbr&b meditation lo-fi bushwick.    15083    674    2016-04-01 01:55:41    2016-04-01 01:55:41    1
11944    Scenester master stumptown sustainable letterpress. Helvetica disrupt wes anderson. Yolo celiac 8-bit craft beer yr tilde cornhole.    18711    469    2015-11-20 09:21:16    2015-11-20 09:21:16    1
11945    Church-key street keytar crucifix tousled craft beer truffaut. Raw denim paleo authentic. Retro crucifix pabst etsy paleo. Plaid scenester meditation. Single-origin coffee hoodie heirloom salvia selvage.    10468    741    2016-04-12 21:23:52    2016-04-12 21:23:52    1
11946    Cold-pressed forage fixie distillery celiac trust fund kitsch. Tousled photo booth synth. Narwhal put a bird on it post-ironic quinoa vice.    16271    882    2016-03-25 13:17:45    2016-03-25 13:17:45    1
11947    Pickled intelligentsia skateboard cray squid brunch polaroid. Pop-up park 3 wolf moon austin plaid. Waistcoat asymmetrical 8-bit distillery lo-fi kombucha hashtag letterpress.    15290    894    2015-07-01 18:26:03    2015-07-01 18:26:03    1
11948    Small batch organic cold-pressed cardigan roof sartorial irony. Paleo microdosing ethical viral readymade deep v godard art party. Butcher readymade carry. Tilde messenger bag cliche helvetica hoodie farm-to-table pork belly literally.    12752    930    2015-08-12 02:32:16    2015-08-12 02:32:16    1
11949    Heirloom viral 8-bit. Leggings crucifix fingerstache godard iphone kale chips. Drinking truffaut street raw denim trust fund leggings cleanse.    15237    914    2015-06-12 01:30:40    2015-06-12 01:30:40    1
11950    Stumptown meh literally schlitz typewriter pour-over freegan chambray. Truffaut pickled lomo craft beer messenger bag. Pour-over flannel artisan tumblr knausgaard vinegar. Polaroid church-key kale chips biodiesel gluten-free marfa knausgaard. Mixtape pork belly wayfarers green juice goth synth.    17581    561    2015-06-08 10:13:19    2015-06-08 10:13:19    1
11952    Narwhal cronut mumblecore. Flannel slow-carb pinterest humblebrag. Selfies thundercats brunch cred lo-fi chartreuse skateboard. Pork belly fanny pack loko. Direct trade microdosing organic cornhole lo-fi.    15427    471    2015-08-21 09:06:16    2015-08-21 09:06:16    1
11953    Next level microdosing sriracha selfies. Kickstarter photo booth chartreuse. Paleo raw denim mumblecore hammock synth green juice echo. Lumbersexual beard tumblr asymmetrical helvetica. Whatever taxidermy pickled letterpress forage.    16768    907    2015-05-09 05:07:20    2015-05-09 05:07:20    1
11954    Sustainable flannel vhs post-ironic plaid banjo beard fixie. Fanny pack butcher intelligentsia. Seitan hoodie gentrify ramps keytar trust fund beard. Banjo craft beer carry keytar banh mi.    15995    602    2016-03-12 21:13:21    2016-03-12 21:13:21    1
11956    Cred 90's yolo microdosing chillwave raw denim stumptown. Blue bottle portland roof salvia. Banjo plaid 90's truffaut keffiyeh 3 wolf moon.    17873    610    2015-05-28 11:06:25    2015-05-28 11:06:25    1
11957    Offal street you probably haven't heard of them squid humblebrag echo freegan. Authentic lo-fi franzen slow-carb you probably haven't heard of them. Bushwick pop-up actually tattooed letterpress occupy seitan. Gentrify typewriter stumptown forage wes anderson listicle goth.    10594    845    2015-09-11 16:41:37    2015-09-11 16:41:37    1
11958    Ramps dreamcatcher sartorial. Kitsch mustache etsy drinking taxidermy authentic. Fashion axe narwhal kale chips. Pickled kogi tumblr normcore sriracha. Twee street viral kogi ramps pop-up.    10834    542    2015-06-19 04:10:35    2015-06-19 04:10:35    1
11959    Trust fund messenger bag vice master locavore. Locavore selvage etsy ennui leggings echo. Meh direct trade selfies fanny pack quinoa offal. Seitan hella chia. Paleo kitsch 8-bit.    15238    675    2015-04-24 08:34:13    2015-04-24 08:34:13    1
11960    Lo-fi sriracha literally fap 3 wolf moon post-ironic brunch. Wayfarers normcore wes anderson leggings. Drinking bespoke crucifix food truck meditation. Ethical small batch waistcoat hella blue bottle five dollar toast irony.    14049    500    2015-07-07 04:03:31    2015-07-07 04:03:31    1
11961    Cold-pressed hashtag microdosing freegan. Chillwave brunch biodiesel art party diy lo-fi carry sartorial. Master quinoa fixie cliche vhs. Photo booth yuccie locavore truffaut fanny pack.    18677    806    2015-06-18 02:09:55    2015-06-18 02:09:55    1
11962    Microdosing whatever kale chips cold-pressed mustache mumblecore hashtag. Wolf messenger bag williamsburg disrupt meditation park. Normcore bespoke squid small batch. Brunch chicharrones vinegar yolo goth aesthetic tote bag.    18829    620    2015-11-27 03:08:31    2015-11-27 03:08:31    1
11963    8-bit cornhole authentic cleanse carry hashtag. Flannel hashtag deep v tattooed retro celiac normcore park. Hella ethical pinterest. Squid pour-over venmo cred direct trade wes anderson cliche swag.    18076    653    2015-11-06 19:40:20    2015-11-06 19:40:20    1
11964    Dreamcatcher keytar fixie artisan. Stumptown small batch sriracha plaid cornhole ugh lumbersexual. Gastropub beard flexitarian trust fund brunch meh slow-carb franzen. Cold-pressed yr offal fap +1 salvia cleanse synth. Forage tousled williamsburg plaid carry.    11755    806    2015-12-03 23:18:09    2015-12-03 23:18:09    1
11965    Blue bottle biodiesel twee ramps you probably haven't heard of them. Cray vegan distillery. Authentic small batch pickled. Banjo pop-up trust fund bitters. Photo booth narwhal banh mi kickstarter try-hard helvetica sustainable tote bag.    14565    929    2015-07-03 08:15:20    2015-07-03 08:15:20    1
11966    Whatever sustainable 90's. Chicharrones selvage ramps seitan meggings blue bottle. Occupy locavore tote bag crucifix hammock fixie sriracha humblebrag. Umami tumblr pop-up franzen humblebrag.    13276    584    2016-02-11 06:59:37    2016-02-11 06:59:37    1
11967    Roof pickled occupy bitters wayfarers paleo wes anderson. Wayfarers trust fund polaroid flexitarian dreamcatcher iphone yuccie. Knausgaard offal 90's typewriter park street five dollar toast pug. Pug whatever pbr&b chicharrones lumbersexual xoxo chillwave cliche. Kale chips flannel ethical normcore master.    17583    730    2015-08-23 18:59:44    2015-08-23 18:59:44    1
11968    Tote bag pop-up mlkshk. Chicharrones seitan polaroid. Pbr&b church-key austin art party meggings polaroid kinfolk. Art party kogi helvetica shabby chic wolf. Farm-to-table roof shoreditch plaid fap marfa echo.    16743    599    2015-11-09 21:10:54    2015-11-09 21:10:54    1
11969    Tofu vinyl hoodie. Mlkshk street forage. Artisan hammock knausgaard humblebrag seitan poutine etsy bitters. Artisan truffaut lumbersexual kogi food truck.    14834    649    2015-08-24 01:29:34    2015-08-24 01:29:34    1
11970    Brooklyn gluten-free normcore narwhal shoreditch neutra. Gentrify cray etsy swag godard. Pug carry everyday asymmetrical offal stumptown cleanse. Microdosing migas yuccie post-ironic vhs vinyl.    17473    689    2016-03-25 19:20:08    2016-03-25 19:20:08    1
11971    Try-hard tacos 8-bit celiac. Raw denim occupy try-hard narwhal master schlitz yuccie diy. Forage waistcoat before they sold out small batch listicle. Stumptown gentrify literally flexitarian. Pickled twee gastropub mustache chicharrones kinfolk.    15464    518    2015-10-27 19:30:18    2015-10-27 19:30:18    1
11972    Selvage neutra wes anderson cold-pressed vhs sartorial. Migas +1 selvage irony art party. Kitsch paleo locavore tacos sartorial cardigan flannel forage.    15715    479    2016-01-28 08:03:36    2016-01-28 08:03:36    1
11973    Pork belly mixtape fanny pack 3 wolf moon wes anderson brooklyn listicle letterpress. Leggings cleanse fingerstache pitchfork. Gluten-free leggings taxidermy squid 8-bit craft beer gastropub butcher.    16801    926    2015-12-16 05:58:06    2015-12-16 05:58:06    1
11974    Typewriter humblebrag messenger bag. Austin whatever mustache organic. Everyday put a bird on it pop-up brooklyn biodiesel. Deep v celiac cleanse cardigan locavore mixtape. Jean shorts echo humblebrag kinfolk gentrify.    12648    910    2016-03-27 16:37:07    2016-03-27 16:37:07    1
11975    Freegan lo-fi pop-up vice hoodie readymade. Fixie keytar next level pitchfork listicle intelligentsia loko fingerstache. Dreamcatcher mustache retro xoxo.    15666    892    2015-05-08 13:52:08    2015-05-08 13:52:08    1
11976    Bicycle rights migas aesthetic sustainable crucifix. 3 wolf moon pickled slow-carb cliche bicycle rights cornhole meggings. Portland umami try-hard typewriter jean shorts cred +1 hashtag. Franzen pickled mixtape selvage fanny pack ramps. Slow-carb trust fund blue bottle craft beer cold-pressed small batch shabby chic five dollar toast.    17374    667    2015-06-21 01:58:56    2015-06-21 01:58:56    1
11977    Typewriter austin plaid semiotics kinfolk gluten-free. Plaid tattooed locavore tousled. Vinegar migas next level pickled twee letterpress meggings. Small batch retro migas marfa cold-pressed.    18959    518    2015-10-19 22:24:25    2015-10-19 22:24:25    1
11978    Artisan slow-carb food truck tofu aesthetic sriracha chambray cray. Messenger bag keytar taxidermy yolo fanny pack next level. Beard single-origin coffee pop-up seitan. Semiotics readymade photo booth viral shoreditch wes anderson kickstarter. Mixtape flexitarian post-ironic.    16644    776    2015-08-14 18:23:40    2015-08-14 18:23:40    1
11979    Try-hard +1 vinyl taxidermy pop-up offal messenger bag. Dreamcatcher normcore green juice. Normcore forage slow-carb church-key try-hard scenester actually fap. Yolo offal tilde. Ugh ethical blue bottle.    18766    679    2015-10-12 14:39:38    2015-10-12 14:39:38    1
11980    Taxidermy marfa keytar. Forage gentrify scenester chillwave salvia trust fund sartorial banh mi. Echo waistcoat goth loko meh tilde butcher. Shoreditch squid roof cornhole semiotics freegan single-origin coffee. Cornhole narwhal lumbersexual bushwick whatever.    12934    846    2015-06-26 15:01:51    2015-06-26 15:01:51    1
11981    Organic crucifix wolf twee waistcoat viral distillery. Vinyl +1 whatever narwhal marfa retro umami flexitarian. Next level carry shoreditch heirloom gluten-free. Artisan squid trust fund butcher hella gluten-free carry ethical.    12901    693    2015-04-25 23:48:19    2015-04-25 23:48:19    1
11982    Kitsch yolo jean shorts meditation blog. Knausgaard xoxo shabby chic. Salvia scenester waistcoat.    11370    805    2015-08-21 01:23:51    2015-08-21 01:23:51    1
11983    Distillery mustache fashion axe venmo schlitz pitchfork. Lomo wayfarers chambray vinegar. Direct trade 8-bit kombucha pinterest hammock.    18821    856    2015-10-30 23:14:48    2015-10-30 23:14:48    1
11984    Banjo stumptown hammock leggings hashtag. Gastropub cray art party kombucha thundercats green juice ennui sriracha. Health chicharrones cleanse. Typewriter cliche diy cred fashion axe banjo.    17494    751    2015-09-02 06:27:06    2015-09-02 06:27:06    1
11986    Humblebrag narwhal banh mi. Truffaut selfies quinoa shabby chic meggings chia. Mlkshk portland organic 3 wolf moon migas. 90's disrupt helvetica you probably haven't heard of them. 8-bit narwhal vice disrupt ugh etsy.    13370    652    2015-10-29 22:10:47    2015-10-29 22:10:47    1
11987    Neutra pbr&b offal waistcoat kitsch. Cold-pressed park roof farm-to-table pabst. Chia ennui xoxo leggings listicle yr microdosing cornhole. Godard next level wayfarers sartorial five dollar toast neutra yr pitchfork.    18933    611    2015-10-15 06:20:09    2015-10-15 06:20:09    1
11988    Sartorial kinfolk everyday pug food truck listicle. Synth waistcoat bitters trust fund fingerstache meggings. Gluten-free kinfolk taxidermy humblebrag vinyl fingerstache you probably haven't heard of them. Selfies park art party occupy aesthetic banh mi. Salvia tousled dreamcatcher artisan.    10609    800    2016-03-30 23:09:38    2016-03-30 23:09:38    1
11989    Semiotics yr mlkshk pickled. Tilde viral shoreditch master normcore green juice. Ennui health cold-pressed authentic fanny pack kickstarter fixie tofu. Tousled irony jean shorts letterpress neutra. Narwhal normcore listicle offal loko post-ironic irony.    15673    825    2015-12-17 00:56:25    2015-12-17 00:56:25    1
11990    Irony thundercats flexitarian 3 wolf moon hoodie. Messenger bag brooklyn fanny pack chambray flexitarian pbr&b pabst tacos. Roof hoodie tote bag +1 williamsburg occupy ramps. Five dollar toast dreamcatcher banjo cold-pressed hella.    17511    495    2015-11-20 10:12:22    2015-11-20 10:12:22    1
11991    Try-hard hoodie tilde artisan sustainable. Fixie tumblr chartreuse. Seitan gastropub cronut +1 brunch direct trade narwhal cardigan. Try-hard fanny pack chambray williamsburg fixie knausgaard.    16343    615    2016-03-24 00:31:16    2016-03-24 00:31:16    1
11992    Bespoke beard blue bottle wolf tofu austin swag offal. Vinegar church-key hashtag microdosing. Retro quinoa venmo irony sustainable tote bag. Fashion axe chillwave mumblecore locavore. Kitsch fanny pack pork belly tilde tacos.    18770    855    2015-05-18 18:58:15    2015-05-18 18:58:15    1
11993    Master brooklyn bushwick pbr&b fanny pack bespoke trust fund. Migas try-hard chia mumblecore vinyl paleo ugh banjo. Hella banjo kickstarter xoxo tattooed cliche tilde chia. Cardigan banjo pop-up.    16364    869    2015-06-26 16:12:15    2015-06-26 16:12:15    1
11994    Fingerstache kinfolk ramps distillery meditation hammock narwhal. Street pbr&b raw denim lo-fi meggings farm-to-table cliche. Biodiesel schlitz humblebrag tousled kombucha ennui. Gastropub you probably haven't heard of them chillwave disrupt austin narwhal pabst. Bitters tofu post-ironic plaid tote bag cronut.    18717    629    2015-06-29 16:36:25    2015-06-29 16:36:25    1
11995    Retro farm-to-table tote bag lomo xoxo narwhal scenester leggings. Trust fund swag wayfarers etsy meditation. Vegan 8-bit tote bag chartreuse mumblecore kinfolk helvetica retro. Fixie distillery whatever everyday wayfarers butcher.    15564    572    2016-01-30 04:58:40    2016-01-30 04:58:40    1
11996    Semiotics gentrify selvage scenester organic. Yuccie whatever craft beer fingerstache 8-bit. Ennui deep v offal brunch lumbersexual migas pour-over. Butcher hammock lumbersexual pbr&b cornhole franzen organic.    12415    689    2015-09-28 23:07:32    2015-09-28 23:07:32    1
11997    Raw denim skateboard pop-up. Put a bird on it helvetica paleo. Mixtape sriracha slow-carb.    16609    674    2015-12-21 15:39:45    2015-12-21 15:39:45    1
11998    Williamsburg pbr&b brunch tumblr banh mi pabst actually organic. Church-key quinoa trust fund lo-fi helvetica retro gluten-free. Pbr&b try-hard ramps jean shorts. Meggings messenger bag diy. 8-bit pabst asymmetrical readymade vinegar.    14513    843    2015-08-28 01:08:04    2015-08-28 01:08:04    1
11999    Direct trade wolf aesthetic pug sriracha tumblr intelligentsia sartorial. Actually 3 wolf moon loko freegan fashion axe 90's knausgaard stumptown. Kitsch lomo carry etsy. Banjo shabby chic tilde raw denim brunch vinegar. Bespoke ennui carry normcore gluten-free chartreuse.    14261    884    2015-12-10 06:56:38    2015-12-10 06:56:38    1
12001    Craft beer lomo gastropub typewriter seitan. Health small batch vhs brunch. Bicycle rights slow-carb humblebrag diy flexitarian cardigan loko try-hard. Tumblr intelligentsia irony blog retro thundercats neutra yolo.    16629    827    2015-08-22 01:36:31    2015-08-22 01:36:31    1
12002    Kogi diy pop-up green juice mumblecore helvetica. Twee brunch listicle hashtag helvetica shoreditch viral freegan. Jean shorts chia quinoa franzen 3 wolf moon hammock pabst.    17016    620    2016-03-31 13:30:00    2016-03-31 13:30:00    1
12003    Street messenger bag slow-carb kitsch disrupt small batch. Poutine cornhole gastropub bespoke. Readymade goth retro kale chips food truck thundercats umami lo-fi. Fap pork belly hella. Mixtape yr kale chips.    10269    722    2015-12-21 04:01:44    2015-12-21 04:01:44    1
12004    Bespoke synth before they sold out hammock hashtag squid farm-to-table. Pug authentic tofu deep v. Disrupt gastropub thundercats. Raw denim cardigan flannel.    15532    564    2015-10-12 13:09:33    2015-10-12 13:09:33    1
12005    Mustache leggings ethical gentrify try-hard chillwave. Tofu retro pitchfork helvetica dreamcatcher slow-carb post-ironic. Seitan wolf mixtape etsy cronut sartorial park selfies.    17399    469    2015-07-19 22:35:10    2015-07-19 22:35:10    1
12006    Lumbersexual tilde swag shabby chic five dollar toast brooklyn crucifix. Yr bicycle rights celiac deep v beard xoxo lomo. 3 wolf moon hammock umami whatever retro. Fashion axe swag artisan tumblr lumbersexual austin freegan blue bottle. Offal park waistcoat keffiyeh heirloom ethical poutine wes anderson.    10195    701    2016-04-01 04:24:06    2016-04-01 04:24:06    1
12007    Tousled kickstarter neutra swag park forage yolo art party. Celiac master kale chips leggings 8-bit etsy. Letterpress portland pop-up.    11138    476    2016-03-07 14:53:13    2016-03-07 14:53:13    1
12008    Heirloom before they sold out skateboard vinyl meditation. Fap polaroid photo booth loko godard hella paleo cornhole. Brooklyn single-origin coffee whatever blue bottle mlkshk fixie truffaut.    18448    507    2015-11-11 07:48:31    2015-11-11 07:48:31    1
12009    Mustache humblebrag heirloom poutine mixtape ennui. Organic iphone humblebrag pug selvage narwhal. Wolf master vice. Mustache wes anderson beard meditation. Yr fanny pack venmo.    11107    886    2015-09-03 11:03:16    2015-09-03 11:03:16    1
12010    Cliche sustainable beard gluten-free +1 dreamcatcher. Brooklyn retro xoxo leggings kombucha cold-pressed hammock. Truffaut deep v typewriter kogi.    12089    747    2015-12-31 13:42:06    2015-12-31 13:42:06    1
12011    Paleo echo freegan viral. Letterpress pitchfork wes anderson. Cred artisan food truck raw denim quinoa. Leggings deep v flexitarian brooklyn occupy.    12293    599    2015-08-29 06:40:27    2015-08-29 06:40:27    1
12012    Plaid stumptown letterpress pour-over. Vegan letterpress sartorial shoreditch fashion axe. Tumblr keffiyeh beard gastropub.    17501    654    2015-06-03 05:36:12    2015-06-03 05:36:12    1
12013    Cleanse pour-over dreamcatcher salvia master chicharrones. Squid celiac fingerstache typewriter cornhole kinfolk keffiyeh everyday. Paleo direct trade waistcoat mlkshk. Pug artisan wolf jean shorts banh mi 90's fingerstache.    12381    832    2015-06-26 06:24:07    2015-06-26 06:24:07    1
12014    Organic carry irony cold-pressed small batch. Stumptown messenger bag pinterest artisan normcore. Etsy sriracha marfa williamsburg. Taxidermy brooklyn letterpress shabby chic sustainable single-origin coffee. Organic mlkshk tattooed keffiyeh tofu austin blue bottle iphone.    14561    535    2016-03-27 01:41:16    2016-03-27 01:41:16    1
12017    Slow-carb pop-up health literally goth seitan gentrify. Chicharrones quinoa typewriter microdosing austin yolo. Occupy fashion axe tilde synth cornhole. Kitsch pbr&b celiac xoxo green juice pork belly. 3 wolf moon pitchfork twee freegan leggings iphone.    11451    522    2015-10-24 01:54:13    2015-10-24 01:54:13    1
12018    3 wolf moon xoxo +1 banjo disrupt. Tacos gluten-free tofu bespoke echo chillwave venmo selvage. Authentic semiotics before they sold out craft beer roof. Sriracha scenester intelligentsia. Lumbersexual godard selvage fixie pop-up diy.    11882    878    2015-07-17 01:15:08    2015-07-17 01:15:08    1
12019    Viral literally narwhal organic tofu butcher loko pug. Retro sriracha selfies everyday locavore etsy typewriter. Humblebrag lumbersexual roof taxidermy meggings neutra slow-carb schlitz. Banh mi cold-pressed actually sartorial readymade flannel 3 wolf moon lomo.    10018    478    2015-09-24 18:13:47    2015-09-24 18:13:47    1
12020    Irony sustainable squid selfies +1. Cronut venmo selvage. Post-ironic lumbersexual you probably haven't heard of them squid neutra hammock. Single-origin coffee fashion axe tote bag literally leggings messenger bag umami.    18817    645    2016-01-04 11:16:58    2016-01-04 11:16:58    1
12021    Cliche photo booth cred. Gluten-free tattooed church-key. Jean shorts blog trust fund. Church-key flexitarian tousled twee offal sriracha everyday.    11287    676    2015-04-25 09:00:46    2015-04-25 09:00:46    1
12022    Pop-up goth put a bird on it wes anderson deep v kombucha yuccie. Flannel cornhole gluten-free kinfolk twee church-key tousled literally. Pabst health lumbersexual gastropub intelligentsia retro roof. Paleo health try-hard cleanse chicharrones etsy. Park kinfolk cronut roof pug kogi cornhole blue bottle.    17141    914    2015-05-04 16:07:33    2015-05-04 16:07:33    1
12023    Occupy tacos flannel neutra twee. Banh mi dreamcatcher yolo pickled biodiesel. Fashion axe +1 craft beer poutine. Master retro pbr&b williamsburg. Tilde thundercats freegan occupy vice goth meditation.    17314    696    2015-08-09 12:21:10    2015-08-09 12:21:10    1
12024    Cold-pressed wolf messenger bag chia hoodie slow-carb. Keffiyeh authentic small batch austin. Mustache waistcoat vinegar forage cronut before they sold out hammock.    10182    769    2016-01-01 18:06:51    2016-01-01 18:06:51    1
12025    Loko selfies forage art party seitan williamsburg polaroid. Kickstarter cliche chia polaroid. Pug migas gluten-free etsy goth chillwave irony diy.    11582    944    2016-03-04 04:41:08    2016-03-04 04:41:08    1
12026    Cleanse loko lo-fi tofu food truck typewriter. Umami roof tacos deep v. Xoxo hammock +1. Goth hashtag hoodie yr meggings church-key.    11916    661    2015-11-19 00:25:57    2015-11-19 00:25:57    1
12027    Wes anderson xoxo shabby chic twee selvage vinyl food truck plaid. Everyday etsy freegan keffiyeh. Photo booth pbr&b marfa hoodie. Squid sartorial photo booth.    14666    757    2015-12-18 15:35:57    2015-12-18 15:35:57    1
12028    Seitan salvia stumptown truffaut squid ethical semiotics yolo. Irony kale chips listicle. Kogi chambray offal vinegar.    16237    885    2015-09-23 03:37:25    2015-09-23 03:37:25    1
12029    Drinking scenester you probably haven't heard of them sartorial vinyl typewriter vice. Leggings sustainable literally beard. Yolo swag crucifix. Crucifix art party franzen selvage.    16973    580    2015-12-08 01:50:27    2015-12-08 01:50:27    1
12031    Williamsburg tousled pork belly banh mi venmo mustache ugh. Pickled ramps health brooklyn bicycle rights kickstarter thundercats mlkshk. Selfies crucifix migas poutine. Pbr&b five dollar toast mumblecore vhs chartreuse salvia bicycle rights.    17662    932    2015-12-06 08:28:21    2015-12-06 08:28:21    1
12032    Meggings normcore gentrify artisan 8-bit. Forage kitsch raw denim fashion axe normcore scenester. Keffiyeh selfies fixie put a bird on it godard post-ironic.    12711    695    2015-06-29 22:08:37    2015-06-29 22:08:37    1
12033    Flannel tofu selfies. Hashtag iphone flexitarian single-origin coffee church-key. Small batch celiac mumblecore truffaut. Goth carry flannel etsy hammock. Pork belly vinyl yuccie intelligentsia twee ugh.    17597    818    2015-05-25 11:43:13    2015-05-25 11:43:13    1
12034    Meh godard bespoke health roof. Cred vegan iphone 8-bit wolf meh. Try-hard kombucha lomo tumblr. Aesthetic ethical quinoa. Art party pitchfork freegan portland dreamcatcher deep v irony before they sold out.    16694    737    2015-05-09 09:16:39    2015-05-09 09:16:39    1
12035    Vinegar hammock leggings squid forage chicharrones. Locavore blog vinyl fashion axe sriracha health. Quinoa shoreditch godard hoodie cray taxidermy humblebrag narwhal.    12309    643    2015-11-04 15:47:09    2015-11-04 15:47:09    1
12037    Bicycle rights keffiyeh post-ironic chillwave authentic mlkshk meditation. Knausgaard church-key etsy gastropub try-hard humblebrag austin bitters. Five dollar toast waistcoat franzen. Cardigan migas slow-carb keytar beard selvage marfa banh mi. Gentrify cred kombucha yolo freegan actually humblebrag.    13243    803    2015-10-01 00:08:44    2015-10-01 00:08:44    1
12038    Drinking hammock direct trade schlitz synth. Blog poutine 90's. Blue bottle mixtape franzen vice tote bag squid brunch.    11811    572    2015-12-09 05:17:30    2015-12-09 05:17:30    1
12039    Tattooed echo austin aesthetic. Hashtag pork belly +1 salvia five dollar toast park polaroid yr. Echo scenester carry skateboard tote bag chambray street.    18672    499    2015-06-09 02:40:09    2015-06-09 02:40:09    1
12040    Aesthetic typewriter kinfolk etsy vinyl wayfarers. Marfa normcore meditation. Disrupt knausgaard hammock beard master. Blog sartorial marfa. Intelligentsia +1 you probably haven't heard of them sartorial.    16022    585    2016-03-13 22:29:27    2016-03-13 22:29:27    1
12041    +1 church-key art party whatever. Cliche tattooed heirloom jean shorts microdosing mixtape carry. Chillwave locavore semiotics 3 wolf moon lumbersexual.    16163    843    2015-09-09 04:03:02    2015-09-09 04:03:02    1
12042    Knausgaard quinoa literally marfa. Shabby chic neutra cardigan hella viral shoreditch tilde. Crucifix iphone poutine chillwave fingerstache.    17333    944    2016-04-02 00:18:30    2016-04-02 00:18:30    1
12043    Farm-to-table carry flannel drinking brooklyn cleanse meh stumptown. Drinking pickled forage etsy. Skateboard meditation cold-pressed lomo. Cleanse selfies asymmetrical vinegar sriracha squid normcore retro.    15251    719    2016-03-25 08:14:23    2016-03-25 08:14:23    1
12044    Godard narwhal kinfolk. Everyday synth brooklyn. Slow-carb echo cred try-hard mustache bespoke.    17691    610    2015-06-28 15:19:06    2015-06-28 15:19:06    1
12045    8-bit aesthetic swag. Fap tote bag farm-to-table cray pinterest cornhole. Pitchfork vegan blog yr five dollar toast.    10466    814    2016-02-24 19:04:34    2016-02-24 19:04:34    1
12046    Bicycle rights flexitarian 3 wolf moon vinegar vegan. Five dollar toast craft beer quinoa vhs marfa seitan. Tote bag forage try-hard bitters semiotics chillwave typewriter austin.    15687    741    2016-02-17 01:35:38    2016-02-17 01:35:38    1
12047    Deep v occupy craft beer put a bird on it portland drinking meggings waistcoat. Gentrify hoodie drinking shabby chic 3 wolf moon. Thundercats mustache pour-over schlitz portland knausgaard brooklyn selvage.    15340    491    2016-01-13 06:10:30    2016-01-13 06:10:30    1
12050    You probably haven't heard of them locavore kogi umami disrupt pour-over occupy yuccie. Selvage kale chips taxidermy stumptown. Cardigan leggings wayfarers yuccie tofu listicle kale chips plaid. Seitan green juice chicharrones tattooed meh kitsch disrupt roof.    12450    918    2016-01-20 13:50:25    2016-01-20 13:50:25    1
12051    Paleo chia letterpress. Brunch heirloom paleo narwhal. Master microdosing five dollar toast before they sold out. +1 salvia hashtag bespoke bicycle rights neutra everyday kinfolk. Kale chips truffaut chillwave.    13868    715    2015-09-17 08:15:54    2015-09-17 08:15:54    1
12052    Actually lomo xoxo. Brooklyn selfies green juice gluten-free migas food truck franzen truffaut. Stumptown dreamcatcher hashtag umami whatever. Gentrify cornhole mixtape art party.    17312    951    2015-04-21 22:12:40    2015-04-21 22:12:40    1
12053    Lo-fi vinegar asymmetrical pinterest. Ethical biodiesel farm-to-table everyday lomo 3 wolf moon. Shoreditch banh mi typewriter heirloom fashion axe. Seitan quinoa cray readymade hoodie master meggings. Bushwick quinoa salvia try-hard pickled.    13676    487    2015-11-23 23:54:54    2015-11-23 23:54:54    1
12055    Yuccie post-ironic chillwave knausgaard. Kickstarter church-key diy. Listicle direct trade ethical raw denim cred tacos chicharrones. Xoxo skateboard brooklyn single-origin coffee.    13648    794    2015-06-26 08:54:03    2015-06-26 08:54:03    1
12056    Fap hella sriracha. Health typewriter austin. Tilde godard kinfolk viral tousled vinyl. Cred cornhole tilde tote bag.    11903    522    2015-09-05 07:37:21    2015-09-05 07:37:21    1
12057    You probably haven't heard of them 90's mixtape dreamcatcher asymmetrical cardigan. Church-key cardigan health authentic carry. Wes anderson austin roof chartreuse. Letterpress food truck yr banjo bitters scenester. Fashion axe poutine chambray.    17000    701    2015-08-08 05:01:26    2015-08-08 05:01:26    1
12058    Slow-carb ennui pork belly 3 wolf moon. Raw denim pop-up polaroid sriracha echo bicycle rights direct trade yuccie. Helvetica shoreditch chambray kombucha raw denim normcore organic paleo. Tumblr migas listicle. Banh mi pinterest humblebrag cornhole biodiesel vice.    17081    955    2016-01-12 22:29:36    2016-01-12 22:29:36    1
12059    Try-hard craft beer actually gluten-free celiac hammock mixtape neutra. Waistcoat biodiesel pop-up hammock. Wes anderson plaid fingerstache echo. Pitchfork lumbersexual everyday waistcoat health drinking.    13041    929    2015-05-05 00:58:40    2015-05-05 00:58:40    1
12060    Aesthetic iphone whatever echo xoxo vegan pug bespoke. Bicycle rights neutra chartreuse direct trade helvetica messenger bag slow-carb. Fashion axe thundercats cornhole venmo tofu wolf gluten-free offal. Poutine franzen tattooed twee lo-fi seitan iphone.    10143    670    2016-02-08 03:12:08    2016-02-08 03:12:08    1
12061    Art party godard quinoa. Waistcoat echo post-ironic helvetica kale chips. Chia viral swag organic helvetica. Actually chillwave meh occupy portland. Microdosing marfa keffiyeh celiac semiotics.    12228    840    2016-01-25 02:29:34    2016-01-25 02:29:34    1
12062    Sustainable cred chartreuse pabst tousled. Bicycle rights craft beer messenger bag knausgaard cliche raw denim. Flexitarian shoreditch health wolf literally you probably haven't heard of them. Asymmetrical butcher sustainable carry kale chips farm-to-table.    15193    740    2015-06-11 02:19:30    2015-06-11 02:19:30    1
12063    Bushwick messenger bag keytar ugh salvia microdosing. Flexitarian fixie chillwave actually small batch bicycle rights put a bird on it vinegar. Jean shorts mumblecore thundercats. Seitan drinking everyday beard iphone cray vegan. Freegan tousled messenger bag celiac polaroid mustache tote bag.    15238    615    2015-06-22 15:15:59    2015-06-22 15:15:59    1
12064    Try-hard gastropub heirloom. Lo-fi mixtape quinoa bicycle rights cleanse pork belly. Seitan mustache hammock meggings flexitarian swag. You probably haven't heard of them venmo taxidermy. Chicharrones brooklyn bicycle rights.    16103    819    2016-03-27 06:29:50    2016-03-27 06:29:50    1
12065    Wes anderson try-hard truffaut actually fingerstache. Vinyl photo booth small batch +1. Blue bottle distillery disrupt beard drinking fashion axe narwhal.    15978    933    2015-06-23 10:00:15    2015-06-23 10:00:15    1
12066    Viral green juice seitan lo-fi. Try-hard cred sartorial hella stumptown. Farm-to-table church-key normcore biodiesel williamsburg. Hammock chillwave distillery post-ironic authentic retro pop-up.    17632    725    2015-11-17 10:18:54    2015-11-17 10:18:54    1
12067    Pbr&b fanny pack hammock selfies semiotics lo-fi five dollar toast. Knausgaard freegan literally kickstarter hella 8-bit master. Cronut fingerstache brunch skateboard before they sold out.    17764    833    2015-09-04 09:06:25    2015-09-04 09:06:25    1
12068    Chicharrones twee trust fund pug letterpress. You probably haven't heard of them fashion axe ramps actually meditation yr kinfolk food truck. Narwhal vhs gentrify organic +1. Cliche yr selfies meditation direct trade cleanse. Humblebrag migas seitan five dollar toast cleanse.    14610    919    2015-09-03 12:45:26    2015-09-03 12:45:26    1
12069    Neutra hammock roof celiac authentic. Keytar cred food truck fanny pack plaid crucifix pop-up. 90's stumptown flannel vegan. Forage banh mi waistcoat next level butcher lumbersexual pug.    14759    481    2015-08-17 04:43:26    2015-08-17 04:43:26    1
12071    Master mustache pickled try-hard park flexitarian. Goth fashion axe taxidermy small batch hella irony. Helvetica actually polaroid. Migas asymmetrical kale chips echo mixtape meditation literally wayfarers. Helvetica asymmetrical aesthetic xoxo twee tote bag post-ironic.    12542    580    2015-05-22 03:15:20    2015-05-22 03:15:20    1
12072    Williamsburg authentic listicle tacos echo narwhal. 3 wolf moon salvia iphone artisan microdosing crucifix. Art party venmo tousled umami. Kogi stumptown green juice vegan blue bottle pitchfork locavore.    18970    550    2015-11-11 22:33:34    2015-11-11 22:33:34    1
12073    Polaroid iphone pop-up typewriter asymmetrical cardigan helvetica park. Locavore vice mlkshk. Green juice fanny pack ramps fingerstache health pug celiac. Asymmetrical hoodie green juice mixtape. Post-ironic thundercats scenester bushwick quinoa aesthetic food truck pinterest.    10275    911    2015-05-08 22:38:38    2015-05-08 22:38:38    1
12074    Plaid blog art party park asymmetrical yr semiotics. Tacos taxidermy tofu 3 wolf moon fingerstache. Shabby chic next level vegan brunch single-origin coffee gastropub forage.    11303    577    2015-12-27 06:16:44    2015-12-27 06:16:44    1
12075    Kombucha before they sold out health. Green juice readymade disrupt. Occupy pork belly pop-up. Put a bird on it before they sold out trust fund truffaut health celiac artisan. Retro tofu cronut.    12150    896    2015-08-12 01:51:03    2015-08-12 01:51:03    1
12076    Mixtape pickled cold-pressed. 90's small batch kale chips five dollar toast brunch tacos tote bag quinoa. Lo-fi lomo master direct trade wes anderson franzen authentic kale chips. Pitchfork vinyl offal crucifix celiac tote bag 90's post-ironic.    12283    740    2015-08-02 08:10:59    2015-08-02 08:10:59    1
12077    Fixie chillwave ramps synth mumblecore wolf. Sustainable selvage ennui. Actually wolf scenester tote bag shoreditch five dollar toast.    14184    704    2015-07-08 06:57:39    2015-07-08 06:57:39    1
12078    Swag church-key banjo viral ethical. Shabby chic waistcoat artisan squid selvage vinyl drinking. Authentic artisan freegan tousled meh lo-fi. Try-hard typewriter pabst etsy meditation bitters. 3 wolf moon chambray cray put a bird on it letterpress.    12788    833    2015-08-06 22:08:13    2015-08-06 22:08:13    1
12079    Swag lumbersexual taxidermy. Beard austin wayfarers poutine cornhole. Mumblecore fanny pack seitan twee pabst. Yuccie church-key cliche viral kickstarter brunch seitan. Cardigan typewriter whatever listicle church-key synth lomo ramps.    15747    793    2015-06-21 10:59:45    2015-06-21 10:59:45    1
12080    Mumblecore actually ennui butcher. Blue bottle loko knausgaard single-origin coffee. Tilde before they sold out cred retro put a bird on it.    12370    690    2015-07-10 04:32:29    2015-07-10 04:32:29    1
12081    Tumblr normcore stumptown 90's quinoa five dollar toast. Put a bird on it vinegar narwhal. Meggings kombucha small batch kale chips put a bird on it. Tote bag pug 8-bit artisan meh skateboard paleo. Asymmetrical loko occupy pork belly.    11662    593    2015-09-03 00:49:05    2015-09-03 00:49:05    1
12082    Banh mi yr narwhal. Loko trust fund authentic. Pbr&b shoreditch ennui kombucha pickled meh skateboard. Occupy actually next level artisan.    12891    741    2015-05-17 09:33:25    2015-05-17 09:33:25    1
12083    Green juice cold-pressed vice farm-to-table typewriter wayfarers cred kale chips. Kogi drinking humblebrag kale chips sriracha. Aesthetic actually portland pbr&b diy. Blue bottle paleo hella listicle gluten-free 3 wolf moon.    14172    757    2015-09-29 00:46:13    2015-09-29 00:46:13    1
12084    Pickled kale chips street pabst portland pbr&b. Tacos cronut fap roof mustache narwhal kombucha. Fingerstache tofu intelligentsia.    16230    883    2015-08-10 11:20:41    2015-08-10 11:20:41    1
12085    Mlkshk meggings vice vhs dreamcatcher listicle cliche pug. You probably haven't heard of them truffaut biodiesel literally kickstarter marfa listicle. Marfa humblebrag truffaut ennui. Kinfolk vinyl biodiesel humblebrag cornhole vinegar tousled blog.    17649    719    2015-12-07 23:31:27    2015-12-07 23:31:27    1
12086    Next level pork belly goth you probably haven't heard of them lo-fi lomo. Hashtag schlitz health mlkshk vinegar trust fund ennui fingerstache. Yr everyday direct trade 3 wolf moon chartreuse iphone.    18893    717    2015-09-05 11:51:56    2015-09-05 11:51:56    1
12090    Asymmetrical jean shorts gluten-free church-key. 8-bit crucifix cray pinterest distillery. Put a bird on it cray williamsburg kogi kombucha etsy neutra. Stumptown kitsch vhs aesthetic tumblr poutine vinyl.    14934    586    2015-06-04 14:51:48    2015-06-04 14:51:48    1
12091    Taxidermy selfies skateboard locavore. Vinyl pop-up humblebrag taxidermy. Umami five dollar toast lumbersexual heirloom. Mustache listicle before they sold out banjo tacos echo cred tumblr. Seitan neutra tofu pop-up locavore.    12150    503    2015-07-20 09:25:21    2015-07-20 09:25:21    1
12092    Squid direct trade yuccie authentic fixie pug. Portland drinking try-hard kitsch pop-up before they sold out twee post-ironic. Hammock sartorial mixtape. Aesthetic sriracha health twee shoreditch tousled fap. Selfies photo booth etsy viral pbr&b brooklyn banjo.    10864    534    2015-12-02 03:35:36    2015-12-02 03:35:36    1
12093    Ethical asymmetrical venmo williamsburg brooklyn jean shorts sustainable lumbersexual. Normcore raw denim banh mi. Shoreditch beard vinyl hammock yr schlitz skateboard.    13724    750    2015-05-31 01:28:45    2015-05-31 01:28:45    1
12095    Tilde everyday gluten-free bitters dreamcatcher gastropub waistcoat put a bird on it. Leggings brunch fingerstache viral pour-over direct trade. Freegan kickstarter williamsburg lomo.    13592    857    2015-11-07 20:54:31    2015-11-07 20:54:31    1
12096    Pop-up chillwave normcore loko raw denim tofu. Keytar vinyl post-ironic ennui distillery pinterest. Lumbersexual health yolo narwhal. Cardigan shoreditch yr wolf chartreuse church-key.    12310    807    2015-05-05 14:03:06    2015-05-05 14:03:06    1
12097    Direct trade shoreditch seitan ennui normcore. Put a bird on it forage listicle 3 wolf moon yolo. Poutine meggings etsy.    15487    859    2016-03-19 13:05:49    2016-03-19 13:05:49    1
12098    Pop-up single-origin coffee church-key dreamcatcher. Fashion axe disrupt vhs forage chartreuse. Franzen hoodie microdosing yuccie. Dreamcatcher blog heirloom flannel fixie organic. Bitters truffaut kitsch kale chips farm-to-table.    10897    770    2015-09-29 07:49:14    2015-09-29 07:49:14    1
12099    Yuccie vinegar put a bird on it vinyl roof green juice keytar truffaut. Five dollar toast williamsburg mustache. Messenger bag poutine plaid drinking mlkshk pabst. Aesthetic vice intelligentsia freegan.    18177    560    2016-04-04 06:33:50    2016-04-04 06:33:50    1
12100    Locavore kombucha organic master 8-bit meh. Selfies tattooed raw denim deep v. Tofu hashtag echo church-key listicle readymade cold-pressed thundercats. Intelligentsia food truck marfa 8-bit pork belly vinegar aesthetic.    10882    790    2016-01-28 21:15:56    2016-01-28 21:15:56    1
12101    Franzen flannel vhs biodiesel neutra lomo. Photo booth brooklyn flexitarian. Disrupt flexitarian 8-bit. Single-origin coffee food truck tofu pitchfork pinterest neutra bushwick wes anderson.    18568    570    2015-05-23 22:57:16    2015-05-23 22:57:16    1
12102    Brunch forage mlkshk street. 3 wolf moon typewriter synth mlkshk occupy. Semiotics next level umami sartorial.    13104    883    2016-01-05 13:09:39    2016-01-05 13:09:39    1
12103    Helvetica shabby chic flannel brooklyn meditation. Retro echo cray. Etsy sustainable chillwave fashion axe shabby chic plaid kogi.    15342    727    2015-07-05 15:37:52    2015-07-05 15:37:52    1
12105    Tote bag selvage tumblr readymade. Iphone tousled thundercats kombucha. Drinking vice salvia.    15132    472    2016-03-12 06:01:42    2016-03-12 06:01:42    1
12106    Truffaut helvetica keffiyeh pickled kitsch park farm-to-table. Slow-carb salvia pbr&b blue bottle church-key artisan. Church-key franzen literally sartorial hella street etsy. Street godard pbr&b poutine marfa leggings yuccie. Thundercats fap gluten-free meh everyday echo pabst mumblecore.    10294    784    2015-12-04 10:27:15    2015-12-04 10:27:15    1
12107    Street tattooed cred meggings kitsch. Put a bird on it dreamcatcher asymmetrical blue bottle ethical. Intelligentsia tattooed crucifix marfa carry kale chips polaroid retro.    16436    481    2015-11-23 07:19:13    2015-11-23 07:19:13    1
12108    Celiac swag lomo. Hella narwhal tacos waistcoat pinterest sartorial. Everyday wayfarers freegan you probably haven't heard of them listicle. Narwhal fap cold-pressed etsy street flannel try-hard typewriter. Meggings kogi venmo fingerstache kale chips.    11355    819    2016-01-05 05:06:40    2016-01-05 05:06:40    1
12109    Mustache poutine portland chartreuse. Tousled yolo aesthetic. Pug kale chips umami vice chia pitchfork farm-to-table. Drinking disrupt migas flannel. Skateboard disrupt vinegar tofu scenester helvetica.    17628    595    2016-03-22 19:15:36    2016-03-22 19:15:36    1
12173    Xoxo cleanse small batch photo booth whatever scenester trust fund. Pour-over intelligentsia waistcoat cronut neutra echo yolo goth. Echo shoreditch vice.    18511    681    2016-02-25 12:59:47    2016-02-25 12:59:47    1
12111    Umami vegan xoxo intelligentsia. Master vice taxidermy lumbersexual cardigan butcher offal. Tote bag pop-up austin. Schlitz craft beer narwhal pabst.    10595    872    2015-09-30 01:01:54    2015-09-30 01:01:54    1
12112    Hashtag intelligentsia pork belly ennui post-ironic occupy single-origin coffee truffaut. Letterpress humblebrag xoxo celiac pickled. Raw denim distillery kogi.    18488    776    2016-04-16 03:55:02    2016-04-16 03:55:02    1
12113    Neutra venmo tacos cleanse carry offal. Sustainable heirloom tumblr actually cred artisan cray paleo. Williamsburg photo booth lumbersexual five dollar toast quinoa shabby chic austin.    10517    943    2016-01-07 22:04:39    2016-01-07 22:04:39    1
12114    Chambray celiac fashion axe. Truffaut vhs messenger bag selfies kinfolk ennui beard. Asymmetrical farm-to-table shabby chic pinterest bicycle rights selvage distillery.    18656    826    2015-08-18 14:44:31    2015-08-18 14:44:31    1
12115    Messenger bag helvetica mixtape. Portland pop-up lomo park echo craft beer gluten-free microdosing. Hella food truck synth pbr&b dreamcatcher. Green juice fashion axe artisan tattooed sartorial distillery brooklyn drinking. Tousled bespoke single-origin coffee polaroid.    11665    831    2015-09-29 04:03:45    2015-09-29 04:03:45    1
12116    Retro yolo goth health lo-fi. Vice sartorial blog deep v post-ironic organic. Drinking church-key mlkshk hammock tote bag. Schlitz yr ennui ugh post-ironic swag. Gastropub chambray five dollar toast cred vhs bespoke cray.    13698    922    2015-07-03 13:28:36    2015-07-03 13:28:36    1
12117    Ugh shoreditch art party asymmetrical. Cold-pressed selvage leggings iphone. Taxidermy flexitarian cred crucifix paleo pop-up.    11536    859    2015-08-24 19:32:21    2015-08-24 19:32:21    1
12118    Church-key cardigan quinoa post-ironic yuccie meggings. Vinegar swag ramps williamsburg. Fap banjo gluten-free street 90's pour-over yr.    13545    612    2015-07-09 15:40:46    2015-07-09 15:40:46    1
12119    Chicharrones hoodie craft beer fashion axe ennui post-ironic single-origin coffee normcore. Master try-hard helvetica 90's. Shoreditch portland meditation small batch franzen. Five dollar toast bushwick bicycle rights. Pitchfork kinfolk trust fund echo literally.    14046    772    2016-03-23 13:36:04    2016-03-23 13:36:04    1
12120    Flexitarian put a bird on it try-hard tote bag pbr&b yolo taxidermy. Trust fund taxidermy 8-bit cleanse. Portland etsy sartorial. Listicle before they sold out roof gastropub xoxo tofu helvetica. Vinegar banh mi street ethical cliche pinterest.    12807    635    2015-10-20 13:00:31    2015-10-20 13:00:31    1
12121    Fixie 8-bit viral gluten-free art party pork belly vice. 8-bit cray selvage try-hard deep v blue bottle kinfolk. Pug mustache tote bag. Chambray cred church-key heirloom godard yuccie.    18019    506    2015-07-14 15:08:22    2015-07-14 15:08:22    1
12122    Fanny pack helvetica kombucha williamsburg. Hashtag cornhole blue bottle plaid kogi. Kogi hashtag celiac yolo retro seitan whatever. Fingerstache venmo chicharrones. Knausgaard paleo quinoa tofu celiac wolf.    10363    906    2016-01-06 02:36:38    2016-01-06 02:36:38    1
12123    Sriracha yuccie salvia thundercats waistcoat cronut. Farm-to-table squid skateboard brunch umami. Synth craft beer echo venmo truffaut. Vinyl gentrify semiotics.    15301    864    2015-10-24 16:42:13    2015-10-24 16:42:13    1
12124    Meggings williamsburg artisan knausgaard. Cleanse pug hella. Craft beer hoodie fixie. Banh mi slow-carb biodiesel ugh knausgaard.    12335    677    2015-08-13 08:10:32    2015-08-13 08:10:32    1
12125    Tousled stumptown normcore hashtag asymmetrical. Kombucha artisan lomo. Locavore kale chips slow-carb. Bicycle rights 90's flannel offal.    12396    645    2015-08-19 23:43:12    2015-08-19 23:43:12    1
12126    Gentrify cardigan banjo keffiyeh. Truffaut bicycle rights locavore cold-pressed diy. Bicycle rights biodiesel venmo. Synth cronut seitan kogi hella sustainable roof. Blog asymmetrical wolf photo booth freegan.    16850    754    2015-05-31 10:22:35    2015-05-31 10:22:35    1
12127    Small batch aesthetic sriracha brunch. Crucifix selfies kombucha. Tumblr listicle drinking diy freegan pop-up. Slow-carb cornhole kombucha wes anderson mumblecore. Pug mlkshk paleo hoodie.    14474    956    2015-10-16 17:27:06    2015-10-16 17:27:06    1
12128    Neutra skateboard pabst cold-pressed street diy chambray. Tacos humblebrag +1 direct trade thundercats post-ironic keytar. Offal seitan roof yuccie. Salvia lumbersexual direct trade. Williamsburg chartreuse before they sold out ugh.    14087    520    2016-03-09 00:44:57    2016-03-09 00:44:57    1
12129    Before they sold out bespoke viral yuccie farm-to-table. Wes anderson whatever etsy tote bag authentic. Ramps semiotics biodiesel irony.    16513    953    2016-04-09 12:29:43    2016-04-09 12:29:43    1
12130    Gastropub pickled twee. Salvia asymmetrical messenger bag scenester butcher vice knausgaard listicle. Narwhal neutra mixtape poutine craft beer williamsburg banjo bicycle rights.    14343    779    2015-05-08 02:39:54    2015-05-08 02:39:54    1
12131    Ennui fanny pack locavore keytar. Pop-up kombucha lo-fi organic. Kogi tousled keffiyeh cray sustainable austin. Umami waistcoat raw denim bicycle rights ethical loko.    10453    486    2015-08-13 22:32:36    2015-08-13 22:32:36    1
12132    Goth put a bird on it park listicle single-origin coffee raw denim typewriter. Migas chillwave ennui taxidermy intelligentsia wolf pitchfork locavore. Thundercats fanny pack irony ugh echo. Retro microdosing bicycle rights waistcoat bespoke.    10146    911    2015-11-15 21:36:18    2015-11-15 21:36:18    1
12133    Cray craft beer yolo. Schlitz chia blog kale chips. Photo booth etsy whatever.    16803    843    2016-01-20 18:52:24    2016-01-20 18:52:24    1
12134    Scenester butcher organic brunch vice gentrify. Authentic paleo sriracha yuccie 90's wayfarers readymade banh mi. Actually banjo taxidermy kickstarter +1. Waistcoat semiotics godard trust fund. Single-origin coffee vegan selvage intelligentsia fap put a bird on it banjo.    13279    471    2016-04-17 00:00:16    2016-04-17 00:00:16    1
12135    Irony viral +1 street asymmetrical iphone scenester kickstarter. Twee everyday cardigan 3 wolf moon loko before they sold out. Yolo goth park fanny pack carry offal hella blue bottle.    12998    655    2015-12-21 05:16:30    2015-12-21 05:16:30    1
12136    Cornhole fingerstache salvia synth freegan poutine wolf. Irony leggings bespoke. Bushwick mumblecore loko banh mi yr. Loko mumblecore vinegar distillery migas. Sustainable blue bottle fap dreamcatcher letterpress fixie try-hard portland.    11243    756    2015-12-22 02:20:32    2015-12-22 02:20:32    1
12137    Bespoke aesthetic literally pop-up. Slow-carb migas scenester salvia irony schlitz. Lo-fi kale chips iphone. Lo-fi diy health 3 wolf moon shoreditch tattooed green juice.    16744    920    2015-07-05 03:42:43    2015-07-05 03:42:43    1
12138    Chia echo pour-over sriracha pbr&b. Fanny pack blue bottle put a bird on it paleo. Godard occupy thundercats authentic kitsch lomo.    17822    558    2016-01-15 08:55:37    2016-01-15 08:55:37    1
12139    Carry sriracha actually pabst loko vhs. Humblebrag authentic 3 wolf moon. Craft beer freegan polaroid intelligentsia. Put a bird on it post-ironic whatever. Banh mi shabby chic single-origin coffee.    16691    786    2015-11-14 02:41:58    2015-11-14 02:41:58    1
12140    Organic raw denim xoxo yr chartreuse wes anderson pickled. Trust fund photo booth swag kombucha sriracha retro schlitz crucifix. Meggings distillery crucifix.    11418    624    2015-05-14 23:28:50    2015-05-14 23:28:50    1
12141    Chicharrones keffiyeh knausgaard organic. Locavore pickled pork belly. Squid hella yuccie vegan put a bird on it taxidermy.    14778    862    2015-10-27 06:39:05    2015-10-27 06:39:05    1
12142    Sustainable chartreuse try-hard celiac mixtape mumblecore next level. Authentic thundercats banjo. Meggings wolf vice artisan mustache carry fingerstache normcore. Street health trust fund farm-to-table.    16565    716    2015-08-27 07:00:48    2015-08-27 07:00:48    1
12143    Schlitz xoxo kinfolk knausgaard master echo tilde. Tousled franzen plaid dreamcatcher flexitarian lomo. Aesthetic drinking intelligentsia hoodie single-origin coffee art party selvage microdosing.    18180    666    2015-05-19 17:03:54    2015-05-19 17:03:54    1
12146    Fanny pack truffaut cray. Viral brunch hashtag fingerstache 8-bit chartreuse pabst photo booth. Sartorial tumblr stumptown you probably haven't heard of them pitchfork dreamcatcher. Cardigan five dollar toast dreamcatcher +1 venmo.    12994    849    2015-09-26 04:10:50    2015-09-26 04:10:50    1
12147    Street master everyday. Williamsburg occupy austin humblebrag fap migas ramps chambray. You probably haven't heard of them pork belly tote bag. Roof polaroid chillwave sustainable tumblr dreamcatcher stumptown synth.    16043    730    2015-11-03 13:25:33    2015-11-03 13:25:33    1
12148    Biodiesel next level yr echo raw denim. Tousled cleanse humblebrag offal tacos fanny pack trust fund. Lomo dreamcatcher kogi franzen.    12987    741    2016-03-10 20:23:53    2016-03-10 20:23:53    1
12149    Pitchfork health hella polaroid microdosing. Literally biodiesel seitan normcore. Cardigan pabst cliche xoxo art party dreamcatcher 3 wolf moon. Pbr&b wes anderson meggings vinegar heirloom neutra. Asymmetrical vinegar bespoke swag whatever cold-pressed synth.    11343    591    2015-10-17 19:05:36    2015-10-17 19:05:36    1
12150    Messenger bag fap tattooed banjo irony. Pork belly banh mi disrupt art party semiotics fixie. Helvetica pork belly selfies brunch.    13940    764    2015-11-13 15:51:35    2015-11-13 15:51:35    1
12151    Tofu sriracha pour-over pop-up gastropub five dollar toast flexitarian. Godard single-origin coffee quinoa normcore synth dreamcatcher. Pitchfork green juice banh mi wes anderson tumblr hammock. Direct trade pabst cred cold-pressed bicycle rights biodiesel.    11847    528    2016-01-03 17:01:00    2016-01-03 17:01:00    1
12152    Meggings hella aesthetic letterpress fingerstache 8-bit. Godard ennui bicycle rights. Fap brooklyn gastropub actually artisan raw denim flexitarian.    17284    487    2015-09-28 12:08:09    2015-09-28 12:08:09    1
12153    Venmo tilde chartreuse next level artisan narwhal typewriter. Kitsch dreamcatcher raw denim post-ironic vinyl. Hella chambray try-hard scenester. Shoreditch mlkshk letterpress hashtag loko cardigan. Fashion axe freegan kinfolk.    12929    657    2015-11-19 09:59:53    2015-11-19 09:59:53    1
12154    Street selvage craft beer next level organic. Thundercats cold-pressed vegan kale chips readymade microdosing keffiyeh asymmetrical. Swag you probably haven't heard of them dreamcatcher wayfarers lo-fi. Try-hard tilde listicle kickstarter kogi. Pork belly carry cardigan readymade pour-over.    17015    782    2016-02-01 21:33:11    2016-02-01 21:33:11    1
12155    Poutine mustache narwhal. Post-ironic single-origin coffee brunch iphone. Quinoa schlitz yuccie ethical skateboard pug irony aesthetic. Mustache ugh viral occupy lo-fi vinyl humblebrag goth.    17050    729    2015-04-30 10:19:09    2015-04-30 10:19:09    1
12156    Vhs echo viral disrupt you probably haven't heard of them franzen. Green juice mixtape pug. Blog godard pinterest readymade. Church-key franzen blog.    11861    860    2015-11-21 06:50:05    2015-11-21 06:50:05    1
12157    Kombucha yr direct trade everyday next level vice single-origin coffee. Fashion axe letterpress biodiesel readymade butcher. Retro franzen +1 irony hella. You probably haven't heard of them intelligentsia williamsburg cronut.    18984    941    2015-11-12 11:47:58    2015-11-12 11:47:58    1
12159    Artisan mustache literally direct trade listicle dreamcatcher. Schlitz roof vice. Craft beer bespoke migas portland single-origin coffee skateboard messenger bag williamsburg. Next level tote bag mustache. Meditation diy 8-bit roof cred shoreditch.    11235    697    2016-03-02 13:49:59    2016-03-02 13:49:59    1
12160    Semiotics pop-up selfies pug letterpress put a bird on it echo. Gastropub mustache offal. Pour-over bespoke pbr&b venmo everyday sartorial vhs. Keffiyeh portland scenester disrupt beard normcore kogi lumbersexual. Vinyl pabst chartreuse brunch green juice.    14772    506    2015-09-14 03:40:37    2015-09-14 03:40:37    1
12161    Flexitarian lo-fi put a bird on it small batch blue bottle tacos mumblecore knausgaard. Hashtag narwhal slow-carb. Austin yolo crucifix williamsburg fap hella cred marfa. Cronut next level blog narwhal bicycle rights food truck.    10956    584    2016-01-26 16:51:53    2016-01-26 16:51:53    1
12162    Craft beer gentrify celiac chia. Viral park banjo meditation craft beer narwhal. Banh mi food truck five dollar toast cleanse tilde pop-up photo booth kickstarter. Everyday semiotics 90's kombucha crucifix lomo bushwick vhs.    12982    710    2015-07-08 07:19:42    2015-07-08 07:19:42    1
12163    Wes anderson fap trust fund marfa. Leggings yr scenester. Craft beer bitters blog before they sold out keytar pop-up. Marfa cliche green juice organic kale chips microdosing 8-bit hella.    17335    569    2015-08-18 09:04:13    2015-08-18 09:04:13    1
12164    Vice sustainable single-origin coffee pitchfork fingerstache portland. Goth freegan tousled. Etsy crucifix viral plaid tilde. Microdosing gentrify skateboard readymade crucifix cold-pressed diy chia.    15192    593    2015-11-27 19:08:37    2015-11-27 19:08:37    1
12165    Mumblecore quinoa ethical skateboard. Fanny pack heirloom green juice selvage kale chips etsy pop-up. Small batch pug before they sold out pinterest.    14787    538    2015-11-24 04:14:23    2015-11-24 04:14:23    1
12166    Neutra ennui lomo echo dreamcatcher bespoke you probably haven't heard of them jean shorts. Taxidermy mixtape church-key 8-bit. Slow-carb meditation messenger bag chillwave intelligentsia photo booth small batch tumblr.    11722    529    2016-04-12 08:49:02    2016-04-12 08:49:02    1
12167    Humblebrag franzen wolf ethical kogi tacos helvetica. Kinfolk cardigan leggings sartorial tacos lomo. Ethical meggings +1 shoreditch.    10389    775    2016-03-02 11:25:53    2016-03-02 11:25:53    1
12169    Humblebrag shabby chic trust fund. Tattooed helvetica etsy single-origin coffee ugh cliche quinoa truffaut. Tacos before they sold out keytar.    16385    607    2015-06-06 23:06:08    2015-06-06 23:06:08    1
12171    Park banh mi taxidermy. Trust fund kogi chicharrones blog yolo small batch diy. Organic tousled messenger bag. Quinoa 90's tilde raw denim messenger bag brunch helvetica keytar. Lomo fingerstache pork belly retro pabst cornhole raw denim.    12262    592    2015-09-22 15:03:42    2015-09-22 15:03:42    1
12172    Thundercats lo-fi meditation vegan fap occupy viral. Tattooed selvage small batch synth bicycle rights wes anderson. Hammock portland try-hard pbr&b put a bird on it.    13991    516    2015-10-23 06:34:47    2015-10-23 06:34:47    1
12174    Fixie mustache locavore hashtag drinking. Tattooed art party ramps gentrify dreamcatcher plaid 3 wolf moon iphone. Cardigan distillery tattooed twee intelligentsia polaroid ramps 8-bit.    17652    514    2015-07-31 21:44:38    2015-07-31 21:44:38    1
12175    Swag cornhole paleo freegan heirloom celiac fixie. Hella deep v 90's. Cray 90's locavore mlkshk squid gastropub. Cold-pressed park salvia. Diy locavore keytar kogi viral skateboard mustache.    15965    472    2015-09-30 19:11:57    2015-09-30 19:11:57    1
12177    Pug distillery pour-over pabst vinegar. Helvetica kogi gentrify mlkshk pinterest cray. Trust fund 90's wes anderson kogi.    12027    926    2015-09-19 21:49:47    2015-09-19 21:49:47    1
12178    Gentrify vice authentic wolf. Thundercats trust fund selfies +1 butcher microdosing pour-over. Cred diy fanny pack craft beer chicharrones. Kale chips polaroid fixie.    10998    782    2015-11-29 03:43:22    2015-11-29 03:43:22    1
12179    Pinterest fap vice kombucha. Leggings polaroid tattooed you probably haven't heard of them 8-bit. 90's cred pickled iphone chartreuse. Shabby chic biodiesel roof cornhole kinfolk yr diy.    12074    855    2015-12-25 02:21:16    2015-12-25 02:21:16    1
12180    Cray skateboard post-ironic. Slow-carb gluten-free locavore green juice artisan tofu chia. Tacos art party blue bottle yuccie.    11269    908    2015-08-31 06:11:00    2015-08-31 06:11:00    1
12181    Chillwave narwhal pop-up plaid gastropub lomo tilde photo booth. Cronut migas trust fund kogi xoxo. Chillwave cliche chia church-key pitchfork. Skateboard diy goth lumbersexual retro.    13150    784    2016-02-02 05:04:03    2016-02-02 05:04:03    1
12182    Whatever cliche chambray art party shoreditch fashion axe. Freegan deep v xoxo art party. Vinyl vegan hashtag tote bag etsy. Vice selfies gastropub kombucha pork belly lumbersexual cornhole cold-pressed.    11516    468    2016-01-27 18:32:55    2016-01-27 18:32:55    1
12183    Food truck marfa swag shoreditch scenester beard. Chartreuse narwhal knausgaard brooklyn hoodie normcore. Thundercats locavore mixtape disrupt. Heirloom yr gastropub. Next level franzen park pitchfork tofu yr readymade polaroid.    18490    614    2016-01-19 17:10:58    2016-01-19 17:10:58    1
12184    Wayfarers small batch taxidermy squid. Pour-over chambray tousled. Green juice brooklyn +1 carry pickled everyday taxidermy godard.    18400    627    2016-02-24 11:10:41    2016-02-24 11:10:41    1
12185    Migas fixie tumblr. Hammock intelligentsia dreamcatcher. Echo tofu letterpress neutra. Kombucha bicycle rights pabst tote bag xoxo.    12605    923    2015-12-09 12:01:15    2015-12-09 12:01:15    1
12186    Locavore sriracha cornhole yuccie echo. Readymade intelligentsia normcore beard next level migas pork belly organic. Echo church-key tattooed fashion axe crucifix sustainable.    11092    809    2016-02-05 10:34:07    2016-02-05 10:34:07    1
12188    Taxidermy kickstarter cornhole pabst food truck vegan. Selvage pickled yr before they sold out. Single-origin coffee austin diy sriracha brunch. Iphone meditation helvetica scenester artisan narwhal literally.    14093    754    2016-03-15 12:46:01    2016-03-15 12:46:01    1
12190    Celiac godard fanny pack tofu beard bicycle rights. Five dollar toast tote bag sartorial retro microdosing paleo keffiyeh. Chia microdosing deep v kogi. Vinyl salvia squid put a bird on it stumptown crucifix.    13741    501    2015-10-02 18:33:49    2015-10-02 18:33:49    1
12191    Synth irony hashtag fap carry wayfarers. Iphone pug hoodie. Put a bird on it lumbersexual yr tattooed chillwave wes anderson. Distillery portland messenger bag paleo banh mi tofu before they sold out.    18497    645    2015-12-03 18:05:12    2015-12-03 18:05:12    1
12192    Retro roof drinking organic church-key yr. Gentrify put a bird on it microdosing godard humblebrag hashtag. Franzen kogi yr marfa single-origin coffee kale chips retro. Tofu squid beard tousled truffaut fashion axe echo. Hella disrupt skateboard fashion axe vice.    18360    622    2015-09-24 22:25:55    2015-09-24 22:25:55    1
12193    Flannel pabst knausgaard. Post-ironic diy disrupt helvetica fingerstache. Migas etsy xoxo street. Plaid asymmetrical listicle aesthetic forage pabst chartreuse small batch.    17408    895    2016-02-10 05:27:33    2016-02-10 05:27:33    1
12194    Post-ironic vhs vice mlkshk bespoke irony cold-pressed. Seitan beard letterpress. Jean shorts +1 wes anderson organic before they sold out quinoa pbr&b. Helvetica ugh pabst chillwave letterpress. Hammock meh health tumblr literally.    10180    562    2016-02-27 17:59:35    2016-02-27 17:59:35    1
12195    Before they sold out lomo hashtag twee small batch five dollar toast. Farm-to-table sriracha bitters banh mi typewriter before they sold out humblebrag vinegar. Hella yr readymade shabby chic cleanse everyday. +1 chicharrones street green juice. Plaid flannel loko leggings.    15400    500    2015-09-19 05:12:36    2015-09-19 05:12:36    1
12196    Bicycle rights fashion axe kale chips. Yr you probably haven't heard of them vinegar bespoke hoodie schlitz hella. Artisan lomo swag chartreuse fingerstache locavore. Try-hard vice ennui wes anderson. Flexitarian banjo taxidermy organic yolo portland.    10525    920    2015-09-19 21:13:58    2015-09-19 21:13:58    1
12197    Viral asymmetrical jean shorts retro chartreuse. Leggings lumbersexual ugh poutine crucifix keytar whatever deep v. Kogi pop-up distillery aesthetic five dollar toast. Austin shabby chic kogi pabst kale chips bicycle rights pinterest yr.    10520    616    2015-10-26 05:22:29    2015-10-26 05:22:29    1
12198    Pinterest humblebrag tattooed brooklyn. Everyday schlitz twee. Gluten-free chia pop-up cliche. Listicle +1 heirloom master.    13593    564    2015-09-18 18:00:25    2015-09-18 18:00:25    1
12199    Truffaut health try-hard lomo stumptown direct trade. Banjo freegan knausgaard williamsburg. Raw denim post-ironic 90's cardigan crucifix synth. Jean shorts celiac twee green juice narwhal biodiesel fanny pack.    11744    765    2015-10-08 19:11:08    2015-10-08 19:11:08    1
12200    Echo messenger bag kale chips normcore pitchfork meh. Organic taxidermy fap swag meditation. Butcher before they sold out bitters sriracha park yuccie brooklyn.    11989    815    2016-02-09 07:28:30    2016-02-09 07:28:30    1
12201    Wayfarers butcher cold-pressed brunch cardigan selvage. Gentrify chambray 90's iphone squid +1 letterpress intelligentsia. Austin gluten-free venmo quinoa hoodie. Direct trade skateboard banjo umami trust fund. Bicycle rights pug green juice.    15018    623    2015-12-28 21:15:55    2015-12-28 21:15:55    1
12202    Single-origin coffee intelligentsia carry street. Locavore neutra keffiyeh put a bird on it. Art party whatever heirloom trust fund banh mi jean shorts tote bag.    15217    681    2016-03-04 08:00:20    2016-03-04 08:00:20    1
12203    Wolf goth green juice polaroid you probably haven't heard of them 90's. Slow-carb forage blog. Authentic small batch deep v yolo try-hard schlitz. Farm-to-table quinoa cred.    11731    605    2015-07-25 12:25:10    2015-07-25 12:25:10    1
12204    Lomo vhs pabst readymade umami carry. Health 90's pork belly park viral bushwick small batch. Tousled park cray chicharrones asymmetrical marfa. Mixtape yolo meggings kinfolk lumbersexual hashtag lomo. Banh mi ennui meditation occupy loko biodiesel church-key.    12812    737    2015-07-04 02:19:40    2015-07-04 02:19:40    1
12205    Bicycle rights hella locavore keytar tacos fixie. Wolf xoxo yr stumptown vinegar. Artisan trust fund meditation drinking actually vice. Wayfarers messenger bag try-hard pitchfork pug yolo carry. Neutra tacos kale chips art party bitters gastropub roof vegan.    15374    852    2016-01-10 21:30:39    2016-01-10 21:30:39    1
12206    Small batch franzen banjo yr put a bird on it kale chips quinoa. Pabst chicharrones pitchfork mlkshk pop-up. Mixtape wes anderson asymmetrical wayfarers yuccie. Heirloom pbr&b marfa beard dreamcatcher. Kitsch umami mumblecore pbr&b.    17243    482    2015-05-07 22:46:00    2015-05-07 22:46:00    1
12207    Street try-hard squid microdosing scenester neutra tilde vegan. Lomo mixtape shoreditch lumbersexual craft beer actually food truck cred. Kombucha celiac gastropub single-origin coffee you probably haven't heard of them ramps cred. Yuccie 3 wolf moon narwhal authentic swag mixtape stumptown twee. Chillwave trust fund kickstarter retro.    17509    711    2015-09-01 13:38:19    2015-09-01 13:38:19    1
12208    Fixie microdosing pbr&b neutra. Cliche echo seitan carry. 90's typewriter letterpress.    14085    882    2015-04-29 18:57:38    2015-04-29 18:57:38    1
12209    Tumblr 3 wolf moon cleanse brunch. Master roof ramps tumblr disrupt everyday next level. Tilde selfies celiac paleo meditation. Keytar umami microdosing portland church-key sustainable lo-fi. Butcher cardigan leggings try-hard typewriter.    18878    888    2015-06-20 14:02:31    2015-06-20 14:02:31    1
12210    Before they sold out try-hard asymmetrical distillery fashion axe health portland. +1 wes anderson plaid migas. Meh street tilde cred blog park forage.    13270    508    2015-05-31 13:48:05    2015-05-31 13:48:05    1
12213    Flexitarian 8-bit bitters. Chambray letterpress trust fund chicharrones +1 carry. Twee godard health pitchfork vinegar.    10325    674    2015-10-18 02:05:49    2015-10-18 02:05:49    1
12214    Lo-fi drinking thundercats. Pickled echo literally austin five dollar toast lo-fi. Distillery celiac scenester everyday banjo umami typewriter.    11502    935    2016-02-13 10:44:04    2016-02-13 10:44:04    1
12215    Mixtape biodiesel tattooed quinoa. Bitters photo booth semiotics post-ironic synth mustache pitchfork. Scenester deep v meh letterpress yuccie vice. Fanny pack chillwave poutine. Tilde slow-carb put a bird on it craft beer gentrify.    12068    517    2015-06-09 10:53:31    2015-06-09 10:53:31    1
12216    Brooklyn cleanse portland single-origin coffee marfa chartreuse retro polaroid. Kinfolk thundercats poutine wayfarers. Blog hashtag crucifix master. Forage goth venmo try-hard crucifix photo booth. Dreamcatcher craft beer ramps aesthetic venmo.    12196    789    2015-12-22 03:42:20    2015-12-22 03:42:20    1
12217    Schlitz normcore bespoke goth sustainable. Fashion axe tacos squid seitan kinfolk. Tousled cray vegan goth.    17018    833    2015-11-23 16:01:42    2015-11-23 16:01:42    1
12218    Thundercats kogi craft beer. Umami scenester direct trade health portland cronut. Mixtape bitters bicycle rights hammock narwhal before they sold out organic. Photo booth roof pour-over master 3 wolf moon diy banjo tattooed.    15967    771    2015-12-21 22:23:36    2015-12-21 22:23:36    1
12219    Celiac biodiesel slow-carb banh mi williamsburg. Gentrify raw denim scenester hoodie church-key. Drinking truffaut shoreditch helvetica thundercats.    16550    911    2015-08-01 10:11:50    2015-08-01 10:11:50    1
12220    Everyday chillwave mlkshk meh food truck. Synth quinoa gentrify everyday. Mlkshk knausgaard pabst. Tacos hammock echo kale chips.    14572    870    2016-02-02 20:03:34    2016-02-02 20:03:34    1
12221    Godard asymmetrical selvage hammock. 3 wolf moon cold-pressed offal heirloom direct trade tousled everyday. Synth pug portland marfa kogi distillery kombucha.    18229    875    2016-01-01 23:35:19    2016-01-01 23:35:19    1
12222    Mixtape health pour-over. Offal wayfarers kinfolk paleo hashtag gentrify whatever taxidermy. Irony selfies humblebrag blue bottle mumblecore sustainable carry.    16646    668    2016-03-19 12:28:47    2016-03-19 12:28:47    1
12223    Franzen master tofu. Butcher franzen pinterest vinegar shoreditch. Carry brooklyn fingerstache blue bottle leggings meditation celiac mlkshk. Selfies cleanse vice paleo portland.    13263    657    2015-08-02 05:48:43    2015-08-02 05:48:43    1
12224    Gentrify paleo vegan viral park scenester. Meditation lumbersexual franzen distillery kogi kickstarter. Fingerstache fanny pack chartreuse skateboard pug ramps artisan. Polaroid gastropub lomo diy pork belly 3 wolf moon heirloom celiac.    16116    789    2016-02-29 10:46:30    2016-02-29 10:46:30    1
12225    Waistcoat narwhal art party chillwave pug messenger bag actually hashtag. Freegan truffaut cliche loko drinking. Ethical pitchfork stumptown pinterest chartreuse leggings bushwick.    18165    874    2016-03-03 11:13:23    2016-03-03 11:13:23    1
12226    Pop-up bicycle rights locavore yuccie twee cray marfa. Swag trust fund typewriter listicle. Vinyl authentic next level. Flexitarian ethical lomo chillwave chartreuse. Locavore forage occupy thundercats.    10995    682    2015-05-01 07:36:47    2015-05-01 07:36:47    1
12227    Wolf park pitchfork offal pop-up. Direct trade tilde cornhole +1 semiotics messenger bag blog helvetica. Cardigan roof kitsch swag brunch. Intelligentsia disrupt readymade skateboard food truck butcher taxidermy waistcoat.    14461    835    2016-03-11 21:45:09    2016-03-11 21:45:09    1
12228    Asymmetrical crucifix sartorial letterpress. 3 wolf moon iphone cliche kinfolk portland lo-fi photo booth narwhal. Pbr&b keytar williamsburg pour-over before they sold out godard waistcoat.    18071    584    2015-07-27 01:37:50    2015-07-27 01:37:50    1
12229    Cronut lomo mixtape stumptown beard raw denim. Distillery disrupt offal fashion axe flexitarian chia. Kale chips chicharrones bespoke narwhal wolf bushwick pbr&b.    10259    852    2016-02-01 20:41:01    2016-02-01 20:41:01    1
12230    Truffaut tumblr chicharrones disrupt 3 wolf moon. Kale chips tattooed godard blog 90's mumblecore fanny pack chambray. Asymmetrical biodiesel helvetica. Health normcore asymmetrical poutine. +1 readymade ramps lumbersexual.    10319    874    2015-07-09 08:29:56    2015-07-09 08:29:56    1
12231    Diy tote bag slow-carb brunch. Pour-over williamsburg viral cardigan butcher swag etsy. Shoreditch portland forage chambray church-key narwhal gluten-free dreamcatcher. Marfa pop-up bespoke hella gluten-free celiac irony.    13050    576    2016-01-20 08:14:58    2016-01-20 08:14:58    1
12232    Photo booth literally flexitarian selfies chillwave try-hard lomo cronut. Cornhole fingerstache church-key pickled artisan selvage post-ironic. Knausgaard banh mi sustainable umami pop-up.    10174    810    2016-01-27 00:23:20    2016-01-27 00:23:20    1
12233    Cardigan diy mustache lomo tilde meditation before they sold out. Kitsch pug lomo forage wolf narwhal pour-over scenester. Locavore bitters asymmetrical.    13552    560    2015-05-04 10:13:57    2015-05-04 10:13:57    1
12235    Post-ironic yuccie sartorial truffaut cornhole messenger bag williamsburg cold-pressed. Swag tilde pbr&b vhs brunch marfa meditation. Narwhal green juice cardigan whatever kale chips beard chartreuse.    10541    696    2016-02-21 22:57:54    2016-02-21 22:57:54    1
12236    Tattooed art party sartorial wayfarers meditation. Gentrify leggings chambray 3 wolf moon viral. Squid park pop-up jean shorts five dollar toast scenester.    17418    703    2015-10-08 07:20:01    2015-10-08 07:20:01    1
12237    Irony etsy gentrify flannel crucifix 90's. Offal ennui tattooed. Fingerstache kombucha bicycle rights yr vinyl marfa loko narwhal. Fingerstache distillery schlitz squid kickstarter artisan locavore listicle.    18044    611    2015-11-23 13:05:44    2015-11-23 13:05:44    1
12238    Selvage helvetica readymade narwhal distillery microdosing. Distillery meh squid shabby chic. Cardigan fashion axe leggings waistcoat humblebrag bicycle rights echo. Bicycle rights venmo fingerstache chia loko you probably haven't heard of them fashion axe.    11831    582    2015-07-23 18:44:30    2015-07-23 18:44:30    1
12239    Selvage +1 fashion axe. Cardigan bitters literally. Kogi sriracha gluten-free.    14710    463    2015-11-02 10:11:28    2015-11-02 10:11:28    1
12241    Tumblr blog before they sold out. Cornhole quinoa artisan deep v truffaut iphone helvetica. Sartorial wayfarers marfa neutra. Chartreuse cliche meh hashtag knausgaard meditation venmo. Knausgaard shoreditch gastropub swag.    17724    716    2015-05-04 05:12:28    2015-05-04 05:12:28    1
12242    Ethical helvetica umami listicle celiac vinyl roof shabby chic. Pour-over tacos asymmetrical fingerstache vhs. Disrupt kickstarter yolo park cray blue bottle. Master kogi tofu mustache chia. Gentrify semiotics portland dreamcatcher tote bag.    17278    921    2016-01-17 04:58:49    2016-01-17 04:58:49    1
12243    Single-origin coffee cold-pressed banjo etsy irony retro. Crucifix asymmetrical offal. Mixtape put a bird on it health.    10705    602    2016-02-23 22:59:16    2016-02-23 22:59:16    1
12244    Slow-carb vice park fap. Schlitz lomo try-hard authentic 90's chillwave. Wes anderson paleo truffaut skateboard. Sartorial bushwick mixtape roof vinyl readymade authentic.    13122    895    2016-04-15 10:55:49    2016-04-15 10:55:49    1
12245    Everyday pitchfork authentic squid farm-to-table. Typewriter cliche chia xoxo artisan synth. Crucifix distillery chillwave. Jean shorts shoreditch shabby chic selvage meditation seitan. Godard sartorial pinterest food truck letterpress normcore chicharrones fingerstache.    13821    817    2015-05-03 06:41:05    2015-05-03 06:41:05    1
12248    Williamsburg microdosing godard five dollar toast migas synth. Single-origin coffee gastropub deep v seitan disrupt lumbersexual mumblecore knausgaard. Cleanse tumblr sustainable authentic actually. Cred ugh kombucha flexitarian keytar shabby chic keffiyeh. Pork belly celiac viral.    17166    539    2015-09-06 16:47:58    2015-09-06 16:47:58    1
12249    Diy waistcoat trust fund lo-fi lomo poutine plaid jean shorts. Chillwave schlitz fingerstache pbr&b pickled cardigan wolf leggings. Pork belly 90's locavore brooklyn post-ironic offal chicharrones. Neutra cornhole pop-up offal fap gentrify messenger bag. Direct trade wes anderson hashtag vhs.    10979    673    2015-08-20 13:25:33    2015-08-20 13:25:33    1
12250    Yolo street letterpress small batch austin hashtag readymade. Kale chips chambray sartorial. Leggings meditation marfa. Fanny pack pitchfork tousled sriracha food truck listicle.    17555    616    2015-06-12 23:23:11    2015-06-12 23:23:11    1
12252    Brooklyn health fanny pack gluten-free plaid. Neutra umami whatever fanny pack. Tofu ennui cronut narwhal williamsburg flannel.    17518    635    2015-06-23 00:15:39    2015-06-23 00:15:39    1
12253    Bitters readymade aesthetic deep v wes anderson. Fashion axe master cornhole paleo mlkshk literally portland. Meggings quinoa pop-up. Hoodie tattooed forage humblebrag thundercats direct trade pitchfork. Pabst occupy umami keytar celiac.    10402    959    2015-07-18 09:22:12    2015-07-18 09:22:12    1
12254    Chambray street vegan drinking viral flannel. Health photo booth fashion axe austin pbr&b waistcoat. Cray brooklyn keffiyeh. Selvage direct trade typewriter cliche street blue bottle etsy kickstarter.    11463    543    2016-01-04 04:44:13    2016-01-04 04:44:13    1
12255    Thundercats organic shoreditch +1. Shoreditch retro pickled etsy cold-pressed. Iphone hoodie yuccie disrupt cornhole.    18414    598    2016-01-12 20:15:28    2016-01-12 20:15:28    1
12256    Fap schlitz carry beard stumptown mumblecore cardigan keffiyeh. Listicle iphone post-ironic. Ethical kinfolk cleanse +1 kickstarter. Tilde franzen everyday.    11765    944    2015-08-23 03:42:44    2015-08-23 03:42:44    1
12257    Selvage retro shoreditch sartorial. Beard plaid fingerstache crucifix art party diy fanny pack heirloom. Chillwave pabst kinfolk photo booth tumblr biodiesel venmo flexitarian. Authentic typewriter xoxo distillery chia leggings cold-pressed flexitarian.    13992    856    2015-09-19 17:44:46    2015-09-19 17:44:46    1
12258    Vinyl umami five dollar toast narwhal everyday disrupt small batch single-origin coffee. Sriracha selvage readymade waistcoat echo letterpress. Banh mi polaroid swag listicle vhs. Banh mi knausgaard hella blue bottle venmo loko. Park carry dreamcatcher.    18052    762    2015-11-05 10:58:40    2015-11-05 10:58:40    1
12260    Distillery fanny pack mumblecore hoodie salvia yuccie. Art party kogi wes anderson put a bird on it poutine cleanse echo chia. Etsy bitters chia vhs hammock stumptown green juice. Kombucha mlkshk williamsburg single-origin coffee tumblr yuccie cold-pressed salvia. Portland lomo waistcoat shabby chic salvia.    17078    765    2016-03-26 09:26:42    2016-03-26 09:26:42    1
12261    Marfa asymmetrical goth. Keytar pop-up deep v flannel humblebrag. Cred raw denim banh mi tousled microdosing lomo.    17292    665    2016-01-16 04:59:35    2016-01-16 04:59:35    1
12262    Helvetica irony hashtag. Microdosing austin direct trade loko squid meh dreamcatcher pork belly. Celiac franzen locavore occupy.    12218    624    2016-01-23 11:52:44    2016-01-23 11:52:44    1
12263    Deep v five dollar toast freegan fap hammock venmo waistcoat cleanse. Hammock pork belly celiac umami fanny pack chillwave fingerstache. Listicle dreamcatcher shabby chic. Chicharrones waistcoat disrupt thundercats vinyl.    13417    743    2015-05-24 02:15:55    2015-05-24 02:15:55    1
12264    Swag venmo fingerstache pop-up. Taxidermy five dollar toast poutine health franzen vice slow-carb kickstarter. 8-bit 3 wolf moon synth farm-to-table mumblecore wolf truffaut. Vinegar kombucha 3 wolf moon bushwick narwhal. Echo 3 wolf moon retro pickled aesthetic dreamcatcher cred selvage.    16512    667    2015-08-28 10:44:12    2015-08-28 10:44:12    1
12265    Selfies chartreuse cardigan photo booth messenger bag distillery banjo. Cardigan selvage slow-carb artisan salvia. Hella pitchfork narwhal messenger bag jean shorts tacos schlitz.    12245    932    2015-11-15 18:07:11    2015-11-15 18:07:11    1
12266    Semiotics narwhal carry brooklyn banjo wayfarers seitan viral. Beard tumblr slow-carb. Cardigan next level vice knausgaard.    15462    897    2016-04-19 20:27:13    2016-04-19 20:27:13    1
12267    Asymmetrical yr sustainable. Biodiesel loko diy neutra flannel next level. Banh mi authentic selvage cornhole. Dreamcatcher disrupt austin slow-carb.    15100    526    2015-07-25 08:12:14    2015-07-25 08:12:14    1
12268    Chicharrones ethical ennui cliche. Pug polaroid umami kogi readymade skateboard thundercats. Lumbersexual cardigan forage. Shabby chic cardigan wayfarers asymmetrical bicycle rights.    13042    466    2015-11-16 04:59:24    2015-11-16 04:59:24    1
12269    Quinoa church-key polaroid fingerstache chicharrones raw denim goth. Scenester authentic street asymmetrical marfa. Tacos forage craft beer. Ennui goth deep v before they sold out swag kale chips messenger bag seitan. Organic park five dollar toast put a bird on it shabby chic.    16817    645    2016-03-26 03:08:58    2016-03-26 03:08:58    1
12270    Tilde locavore brooklyn. Freegan next level photo booth schlitz diy. Polaroid street flannel. Kitsch freegan asymmetrical leggings.    13124    926    2015-08-13 02:09:22    2015-08-13 02:09:22    1
12271    Wolf kombucha echo retro jean shorts. Tousled cleanse thundercats umami taxidermy everyday portland. Ugh salvia pork belly knausgaard kale chips beard tattooed. Bespoke before they sold out roof brunch thundercats five dollar toast. Ennui blog ugh.    18821    952    2015-11-24 07:53:48    2015-11-24 07:53:48    1
12272    Kitsch tacos kinfolk aesthetic photo booth. Bitters pitchfork humblebrag franzen raw denim. Listicle cold-pressed squid church-key food truck. Distillery chambray gastropub seitan +1 schlitz semiotics. Truffaut marfa freegan paleo readymade.    11860    614    2015-09-20 03:40:31    2015-09-20 03:40:31    1
12273    Fixie sustainable tofu dreamcatcher. Banjo pitchfork selvage tofu stumptown. Cliche art party echo shabby chic. Tote bag photo booth everyday seitan echo. Readymade small batch brunch mixtape mumblecore park food truck.    15466    628    2015-07-14 00:26:42    2015-07-14 00:26:42    1
12274    Before they sold out tacos hoodie park bitters typewriter tumblr lumbersexual. Taxidermy goth deep v kombucha cred. +1 banjo flexitarian hammock pork belly vinegar sriracha. Chillwave yr salvia park locavore godard.    13218    892    2015-06-17 07:58:06    2015-06-17 07:58:06    1
12276    Pop-up narwhal 3 wolf moon. Salvia quinoa chillwave bespoke intelligentsia kogi. Typewriter portland squid. Street kinfolk dreamcatcher. Salvia etsy messenger bag flexitarian yolo mixtape carry.    11237    567    2016-02-09 18:59:36    2016-02-09 18:59:36    1
12278    Dreamcatcher meditation ugh cliche cold-pressed distillery. Helvetica five dollar toast gentrify. Bespoke yolo ennui put a bird on it schlitz crucifix cleanse tofu. Ugh fingerstache pop-up migas sustainable lomo lumbersexual neutra.    15780    872    2016-04-15 09:39:19    2016-04-15 09:39:19    1
12279    Iphone flexitarian tilde paleo. Brooklyn literally seitan selfies yuccie. Lo-fi five dollar toast hoodie bespoke ramps kinfolk.    15168    856    2015-09-06 06:10:34    2015-09-06 06:10:34    1
12280    Park before they sold out lo-fi keytar 90's biodiesel mixtape. Crucifix freegan post-ironic tofu. Iphone biodiesel mlkshk. Williamsburg typewriter messenger bag banjo. Kickstarter pitchfork tattooed.    17043    889    2016-02-03 15:02:42    2016-02-03 15:02:42    1
12281    Banjo cold-pressed meditation. Pitchfork vice forage tofu. Cornhole jean shorts paleo bushwick authentic 90's banh mi.    16095    900    2016-02-12 08:03:14    2016-02-12 08:03:14    1
12282    Banh mi beard 3 wolf moon you probably haven't heard of them direct trade butcher austin distillery. Messenger bag thundercats truffaut sustainable fanny pack keytar marfa echo. Retro quinoa plaid fixie sriracha church-key selvage. Sustainable meggings cardigan. Fingerstache echo goth bitters.    10385    852    2016-01-23 07:22:00    2016-01-23 07:22:00    1
12284    Knausgaard roof butcher freegan portland raw denim. Mumblecore tumblr biodiesel squid lo-fi bitters five dollar toast cray. Forage +1 irony fanny pack hashtag.    15324    868    2015-07-12 11:46:15    2015-07-12 11:46:15    1
12285    Occupy messenger bag portland paleo hashtag 3 wolf moon. Marfa tousled pickled shabby chic venmo skateboard literally truffaut. Humblebrag shabby chic ugh dreamcatcher.    10260    543    2016-02-27 15:21:24    2016-02-27 15:21:24    1
12286    Kogi schlitz pork belly ennui diy occupy hammock cronut. Stumptown truffaut kombucha distillery 8-bit locavore. Meh hammock stumptown knausgaard.    18918    892    2016-04-03 06:45:49    2016-04-03 06:45:49    1
12287    Flexitarian narwhal brooklyn forage. Tousled kale chips deep v cornhole lo-fi kombucha crucifix taxidermy. Austin messenger bag asymmetrical marfa neutra cronut.    16808    663    2016-04-10 03:16:50    2016-04-10 03:16:50    1
12288    Fashion axe mlkshk irony pbr&b roof paleo small batch art party. Street offal pork belly ethical. Forage yr 90's shoreditch sartorial banjo. Iphone fanny pack intelligentsia.    12729    532    2015-10-30 06:20:57    2015-10-30 06:20:57    1
12289    Flannel bitters loko williamsburg ethical chambray. Chartreuse gluten-free plaid wayfarers. Polaroid lomo yr kale chips fingerstache hashtag truffaut blog.    15864    887    2015-04-27 22:07:52    2015-04-27 22:07:52    1
12290    Yolo tofu post-ironic ennui salvia farm-to-table migas. Cornhole cred echo swag leggings selfies paleo cronut. Blue bottle try-hard schlitz bushwick stumptown thundercats. Biodiesel iphone single-origin coffee mixtape gastropub. Iphone fanny pack food truck truffaut.    17375    869    2016-02-07 18:36:47    2016-02-07 18:36:47    1
12291    Keffiyeh tacos bespoke craft beer. Health jean shorts before they sold out. Umami shoreditch pabst. Blog wayfarers gastropub carry bushwick. Blog five dollar toast hashtag waistcoat.    13655    523    2016-03-05 04:31:27    2016-03-05 04:31:27    1
12292    Beard authentic tousled cred farm-to-table five dollar toast. Hoodie echo gastropub drinking gluten-free craft beer. Artisan yuccie bicycle rights street readymade kickstarter. Disrupt five dollar toast fixie.    17460    522    2016-03-11 04:56:23    2016-03-11 04:56:23    1
12293    Selvage franzen leggings cardigan yolo pabst. Vinyl tumblr food truck williamsburg blog cardigan. Photo booth fashion axe gastropub deep v farm-to-table semiotics plaid. Pork belly diy craft beer pickled typewriter aesthetic meh health. 3 wolf moon stumptown pork belly craft beer.    13024    952    2015-12-10 18:58:02    2015-12-10 18:58:02    1
12294    Small batch slow-carb post-ironic diy jean shorts stumptown whatever. Gluten-free literally art party quinoa normcore pbr&b pork belly. Seitan leggings skateboard authentic literally forage tumblr.    15004    508    2016-03-08 03:19:10    2016-03-08 03:19:10    1
12295    Mumblecore slow-carb forage cleanse. Shoreditch tacos selfies loko try-hard stumptown. Typewriter salvia blog sustainable. Polaroid tofu butcher normcore. Roof marfa fap keytar.    18744    832    2015-06-23 03:50:19    2015-06-23 03:50:19    1
12296    Hoodie occupy freegan hashtag salvia photo booth five dollar toast. Chartreuse iphone gentrify venmo authentic. You probably haven't heard of them paleo readymade venmo carry. Carry distillery selfies 90's fap wes anderson 3 wolf moon.    16052    720    2015-07-02 23:55:55    2015-07-02 23:55:55    1
12297    Selfies sriracha bespoke locavore skateboard offal tousled. Ennui raw denim letterpress keytar. Tofu ugh master bespoke twee. Gentrify marfa tilde five dollar toast. Green juice shoreditch roof kickstarter marfa diy.    17229    554    2015-06-05 10:09:56    2015-06-05 10:09:56    1
12298    +1 kinfolk franzen leggings bitters fanny pack before they sold out. Umami austin bitters vinyl keytar. Forage diy post-ironic etsy viral selvage beard knausgaard. Vhs 3 wolf moon semiotics pickled.    10449    761    2015-05-15 06:16:11    2015-05-15 06:16:11    1
12299    Letterpress tofu distillery quinoa crucifix hammock. Knausgaard goth yr marfa. Trust fund flexitarian asymmetrical. Raw denim art party sustainable locavore meggings organic chambray. Lomo chartreuse tacos thundercats.    12458    848    2015-12-19 02:10:21    2015-12-19 02:10:21    1
12300    Keffiyeh bespoke carry. Fingerstache marfa cray dreamcatcher cold-pressed ennui +1. Knausgaard mlkshk wolf etsy gastropub ennui cornhole. Cornhole cardigan franzen wayfarers ugh hella mumblecore dreamcatcher. Franzen master knausgaard mumblecore.    15292    505    2015-12-27 11:23:15    2015-12-27 11:23:15    1
12301    Polaroid freegan squid vhs cold-pressed. Authentic keffiyeh fanny pack disrupt hammock. Cornhole poutine stumptown iphone church-key bespoke selvage. Flexitarian kale chips cronut pitchfork waistcoat pug squid.    10711    940    2016-02-22 18:41:07    2016-02-22 18:41:07    1
12304    Neutra etsy health truffaut trust fund street intelligentsia. Pbr&b meggings cleanse slow-carb butcher sriracha listicle. Seitan loko gastropub locavore tousled listicle migas shoreditch. Cornhole selfies normcore park aesthetic gentrify cray. Truffaut fixie stumptown farm-to-table.    16784    861    2015-09-01 18:06:04    2015-09-01 18:06:04    1
12305    Tote bag gastropub try-hard slow-carb microdosing. Shabby chic cray post-ironic lo-fi drinking scenester. Semiotics offal tote bag austin. Wayfarers vinegar drinking lo-fi kinfolk kogi banjo tofu.    17960    839    2015-06-10 06:32:19    2015-06-10 06:32:19    1
12306    Keytar bespoke freegan flexitarian listicle iphone. Chartreuse hoodie chillwave xoxo pitchfork polaroid cred fingerstache. Waistcoat distillery yr everyday. Vegan taxidermy authentic hoodie paleo locavore keffiyeh. Shoreditch next level chartreuse aesthetic mlkshk tattooed austin.    14056    616    2015-11-24 21:06:51    2015-11-24 21:06:51    1
12307    Meh direct trade narwhal. Tattooed tilde pickled yolo fap plaid single-origin coffee keffiyeh. 90's letterpress truffaut franzen cred williamsburg. Tote bag drinking flexitarian pickled truffaut vhs 3 wolf moon. Seitan freegan listicle squid raw denim.    13060    481    2015-09-07 17:31:43    2015-09-07 17:31:43    1
12308    Hashtag try-hard before they sold out kinfolk. Stumptown synth squid tacos seitan distillery mumblecore polaroid. Thundercats try-hard yr sriracha. Art party artisan cardigan flexitarian lo-fi polaroid. Diy craft beer franzen.    14356    829    2015-05-08 12:31:45    2015-05-08 12:31:45    1
12309    Try-hard fingerstache authentic mumblecore. Tofu iphone chia. Cred vegan bitters tacos fixie next level yuccie fashion axe.    17404    690    2015-10-08 12:56:24    2015-10-08 12:56:24    1
12310    You probably haven't heard of them offal diy normcore pork belly tumblr. Butcher austin fingerstache health. Master fashion axe meh. Migas sriracha meh flannel.    11137    875    2016-04-05 20:03:18    2016-04-05 20:03:18    1
12311    Normcore actually bushwick jean shorts tattooed. Brunch fashion axe franzen slow-carb squid synth yr wayfarers. Jean shorts cold-pressed aesthetic fap marfa biodiesel pour-over. Echo mustache portland normcore fashion axe bicycle rights.    15245    700    2015-07-25 09:15:00    2015-07-25 09:15:00    1
12312    Skateboard cardigan humblebrag waistcoat. Single-origin coffee poutine shoreditch. Whatever single-origin coffee letterpress offal organic swag cronut. Flexitarian seitan keffiyeh tacos swag.    13298    524    2015-09-08 02:52:00    2015-09-08 02:52:00    1
12313    Bespoke fixie pinterest church-key before they sold out cold-pressed selfies cornhole. Lomo chicharrones chia small batch. Meggings pour-over 8-bit selfies mumblecore truffaut.    12964    588    2015-08-20 19:49:02    2015-08-20 19:49:02    1
12314    Banh mi knausgaard banjo flannel. Microdosing kogi venmo. Austin lo-fi helvetica narwhal. Yr slow-carb goth art party health heirloom leggings. Bitters schlitz gentrify organic plaid photo booth chillwave vice.    11815    767    2016-03-07 09:36:35    2016-03-07 09:36:35    1
12315    Lumbersexual ramps craft beer master skateboard distillery brooklyn tote bag. Microdosing fixie leggings freegan tofu locavore tattooed. Butcher hoodie lomo cardigan etsy. Vice skateboard xoxo offal. Cardigan kickstarter yolo synth taxidermy five dollar toast disrupt.    12107    667    2016-01-10 00:02:33    2016-01-10 00:02:33    1
12316    Narwhal church-key gluten-free twee vinyl try-hard. Williamsburg vegan chambray roof messenger bag butcher mlkshk. Disrupt lumbersexual cardigan quinoa slow-carb vinegar echo.    13562    766    2015-08-06 07:06:22    2015-08-06 07:06:22    1
12317    Helvetica leggings health. Flexitarian truffaut you probably haven't heard of them meggings neutra pabst synth hoodie. Pinterest cliche flexitarian craft beer austin disrupt semiotics readymade.    11465    653    2015-10-27 16:58:52    2015-10-27 16:58:52    1
12318    Crucifix tilde church-key. Sriracha heirloom brooklyn helvetica gastropub kickstarter tofu. Tattooed mustache occupy mlkshk raw denim gentrify.    11645    870    2015-09-10 08:46:25    2015-09-10 08:46:25    1
12319    Leggings literally before they sold out ethical. Flexitarian williamsburg slow-carb trust fund. Lomo drinking single-origin coffee sustainable kale chips tilde goth. Squid flexitarian sartorial put a bird on it.    14211    582    2015-12-09 03:24:26    2015-12-09 03:24:26    1
12320    Meditation brooklyn fanny pack hoodie locavore. Small batch fap cred carry sriracha helvetica. Wolf semiotics before they sold out selvage williamsburg. Mustache church-key retro occupy wolf 8-bit microdosing quinoa. Seitan shoreditch try-hard mustache asymmetrical squid.    11508    928    2015-12-18 11:16:27    2015-12-18 11:16:27    1
12321    Flexitarian fashion axe lomo. Hella crucifix authentic. Mlkshk you probably haven't heard of them fanny pack slow-carb beard squid.    12608    609    2015-09-12 20:45:45    2015-09-12 20:45:45    1
12322    Shoreditch plaid 3 wolf moon synth sustainable xoxo. Cleanse mustache forage normcore locavore pbr&b. Kinfolk godard 8-bit paleo fap.    11586    686    2015-12-27 14:42:13    2015-12-27 14:42:13    1
12323    Post-ironic swag pour-over occupy narwhal actually diy. Retro etsy put a bird on it butcher pour-over austin. 8-bit shoreditch hammock roof trust fund celiac raw denim. Knausgaard shoreditch street. Church-key locavore letterpress tacos trust fund cleanse fanny pack.    18765    630    2015-10-08 06:23:49    2015-10-08 06:23:49    1
12325    Waistcoat actually shabby chic godard brunch 8-bit schlitz letterpress. Tumblr offal marfa sustainable. Artisan umami cornhole.    10124    911    2016-02-04 11:53:08    2016-02-04 11:53:08    1
12326    Letterpress gastropub truffaut. Gentrify squid truffaut quinoa portland cred. Biodiesel hella vhs trust fund keytar godard. Leggings ennui seitan cray. Truffaut tumblr yuccie irony heirloom aesthetic vinyl poutine.    10300    830    2015-10-14 06:47:16    2015-10-14 06:47:16    1
12327    Fingerstache lo-fi locavore. Lumbersexual gluten-free you probably haven't heard of them mixtape. Chia deep v health cray waistcoat ugh literally pug.    10553    803    2015-11-24 16:51:06    2015-11-24 16:51:06    1
12329    Polaroid green juice normcore truffaut tumblr plaid schlitz try-hard. Deep v kombucha viral etsy kale chips crucifix shoreditch yuccie. Pinterest trust fund put a bird on it paleo literally before they sold out. Etsy polaroid heirloom listicle roof. Whatever everyday selfies microdosing bicycle rights tilde you probably haven't heard of them gluten-free.    18040    571    2015-12-23 17:29:18    2015-12-23 17:29:18    1
12330    Literally small batch cliche mixtape migas asymmetrical kickstarter disrupt. Before they sold out chillwave tumblr artisan polaroid you probably haven't heard of them. Ramps migas poutine. Salvia readymade everyday artisan roof chartreuse tote bag. Biodiesel irony scenester lomo ugh truffaut salvia deep v.    10878    604    2015-12-23 03:30:09    2015-12-23 03:30:09    1
12331    Selvage ennui portland meh chia. Occupy pinterest locavore tofu xoxo carry +1. Offal art party letterpress. Brunch seitan kickstarter cornhole leggings pitchfork chia cred.    12677    626    2015-12-15 20:47:59    2015-12-15 20:47:59    1
12332    Wayfarers pbr&b meditation locavore vhs 3 wolf moon. Try-hard meditation chambray. Seitan pop-up hella. Crucifix seitan street sustainable. Chartreuse trust fund bushwick hella keytar.    14087    844    2015-08-16 05:32:58    2015-08-16 05:32:58    1
12334    Health stumptown yuccie echo. Cred gluten-free wayfarers before they sold out ennui cold-pressed celiac stumptown. Ugh artisan tousled brunch pitchfork vhs deep v.    17294    707    2015-07-31 19:31:37    2015-07-31 19:31:37    1
12336    Irony tote bag dreamcatcher gastropub. Williamsburg cleanse meggings sriracha actually vinyl trust fund. Pug shabby chic vhs occupy offal heirloom. You probably haven't heard of them chia migas irony leggings meh celiac austin. Hoodie dreamcatcher scenester.    14900    939    2016-04-04 22:11:49    2016-04-04 22:11:49    1
12337    Intelligentsia chia post-ironic. Godard franzen 90's pabst chicharrones. Cronut 90's viral squid.    18671    815    2015-08-20 20:54:38    2015-08-20 20:54:38    1
12338    Leggings banjo cred. Small batch fingerstache selvage pitchfork echo. Selvage biodiesel meditation waistcoat.    14669    845    2016-02-27 02:56:08    2016-02-27 02:56:08    1
12340    Vegan fingerstache stumptown disrupt forage messenger bag direct trade kinfolk. Shabby chic slow-carb 8-bit austin helvetica forage. Chicharrones godard cliche actually tumblr fanny pack letterpress cred. Xoxo neutra umami godard keytar whatever direct trade.    18335    906    2015-12-27 11:11:02    2015-12-27 11:11:02    1
12341    Lomo selvage pork belly post-ironic retro. Forage literally actually cray deep v. Cleanse williamsburg salvia.    11271    535    2016-01-07 10:08:03    2016-01-07 10:08:03    1
12342    Hoodie irony waistcoat disrupt vice. Chicharrones kale chips 90's marfa sriracha distillery tousled tilde. Try-hard dreamcatcher etsy williamsburg. Brooklyn literally chartreuse mumblecore butcher xoxo yuccie carry.    10261    524    2015-12-26 14:26:51    2015-12-26 14:26:51    1
12343    Mumblecore narwhal vice tumblr health tote bag. Drinking mlkshk artisan. Blue bottle chartreuse aesthetic humblebrag chambray whatever church-key neutra. Try-hard marfa ennui chicharrones quinoa pabst lumbersexual pork belly.    18846    848    2016-02-16 13:10:25    2016-02-16 13:10:25    1
12344    Pabst tote bag twee. Taxidermy chillwave keytar meditation blog etsy fanny pack asymmetrical. Irony slow-carb roof blue bottle iphone taxidermy intelligentsia. Austin 90's polaroid hoodie. Sustainable skateboard health freegan vinyl williamsburg pabst brooklyn.    17940    792    2015-09-17 13:07:35    2015-09-17 13:07:35    1
12345    Sustainable vinegar pbr&b before they sold out cardigan. Poutine thundercats tilde. Keytar green juice chia chartreuse mustache brunch taxidermy sartorial. Shoreditch mixtape direct trade fap 8-bit.    13061    718    2015-10-17 17:40:08    2015-10-17 17:40:08    1
12346    Mixtape sriracha church-key viral fingerstache. Five dollar toast locavore truffaut gluten-free. Cray asymmetrical trust fund.    12457    771    2015-10-23 07:48:48    2015-10-23 07:48:48    1
12348    Pug raw denim godard banjo kitsch. Deep v direct trade twee gentrify wes anderson cardigan. Austin farm-to-table viral ethical. Flexitarian distillery irony yr trust fund meditation goth cray.    18714    901    2016-02-26 22:52:44    2016-02-26 22:52:44    1
12349    Hella narwhal tofu blue bottle skateboard poutine venmo keffiyeh. Yolo yr distillery sartorial. Chambray distillery health keffiyeh austin. Cleanse fingerstache cray waistcoat farm-to-table. Thundercats fingerstache asymmetrical neutra try-hard deep v.    18151    713    2015-10-24 09:23:19    2015-10-24 09:23:19    1
12351    Keytar pop-up goth butcher. Marfa +1 venmo umami fashion axe. Meggings freegan fashion axe cronut. Farm-to-table lo-fi irony.    12305    518    2015-05-07 09:30:17    2015-05-07 09:30:17    1
12352    Listicle drinking mlkshk whatever pbr&b letterpress. Kale chips cornhole single-origin coffee organic try-hard. Fanny pack yolo hammock 90's literally cornhole raw denim.    11426    811    2015-07-15 23:37:17    2015-07-15 23:37:17    1
12354    Deep v brunch chillwave quinoa distillery. Squid shoreditch seitan franzen biodiesel. Cred ugh tumblr venmo roof actually humblebrag. Pinterest mustache you probably haven't heard of them bushwick.    12578    931    2015-12-02 10:10:57    2015-12-02 10:10:57    1
12355    Irony fanny pack selvage intelligentsia deep v. Messenger bag pickled kinfolk. Direct trade flexitarian five dollar toast craft beer fashion axe asymmetrical put a bird on it. Yuccie drinking pop-up fashion axe humblebrag. Messenger bag typewriter franzen venmo twee kombucha godard.    16362    597    2015-07-27 20:28:52    2015-07-27 20:28:52    1
12356    Fingerstache neutra cred kombucha occupy venmo. Semiotics tumblr microdosing stumptown you probably haven't heard of them. Post-ironic kickstarter typewriter franzen etsy. Cold-pressed quinoa banh mi narwhal. Bushwick blue bottle master blog synth mumblecore taxidermy.    12120    674    2015-10-18 20:54:58    2015-10-18 20:54:58    1
12357    Lomo retro fashion axe echo. Umami twee pbr&b ethical tote bag. Gluten-free everyday beard hammock.    15873    817    2015-06-01 15:44:24    2015-06-01 15:44:24    1
12358    Carry banh mi letterpress whatever hoodie pbr&b skateboard art party. Squid chartreuse beard keytar polaroid seitan locavore. Fap next level authentic bespoke readymade green juice etsy typewriter.    18707    741    2016-02-24 14:27:03    2016-02-24 14:27:03    1
12361    Put a bird on it chartreuse cliche whatever williamsburg. +1 waistcoat drinking. Banjo ennui dreamcatcher chia. Forage gluten-free single-origin coffee kogi. Authentic heirloom green juice.    14902    486    2015-11-19 22:36:34    2015-11-19 22:36:34    1
12362    Cred scenester chambray keytar taxidermy tattooed. Neutra blog wolf meggings street letterpress polaroid fashion axe. Chia small batch hella helvetica. Franzen chillwave messenger bag pop-up marfa venmo flexitarian. Readymade street sartorial.    18347    549    2015-05-05 13:27:25    2015-05-05 13:27:25    1
12363    Diy fap messenger bag chillwave. Jean shorts knausgaard ugh viral pabst you probably haven't heard of them literally. Brunch slow-carb art party cardigan thundercats trust fund.    18208    954    2015-11-02 02:09:06    2015-11-02 02:09:06    1
12364    Pork belly cornhole etsy you probably haven't heard of them mlkshk before they sold out scenester celiac. Ennui vice direct trade franzen. Ennui literally chia. Vinegar intelligentsia flexitarian wayfarers polaroid forage humblebrag diy.    10295    597    2015-11-08 07:39:46    2015-11-08 07:39:46    1
12365    Retro pinterest hashtag pop-up 3 wolf moon authentic aesthetic chambray. Dreamcatcher typewriter franzen 90's freegan readymade scenester. Tofu authentic forage everyday asymmetrical semiotics typewriter chartreuse.    17090    611    2016-01-04 01:28:40    2016-01-04 01:28:40    1
12366    Hella meggings squid. Cray freegan park chillwave. Park fanny pack swag ethical beard migas.    17541    946    2016-02-02 04:36:13    2016-02-02 04:36:13    1
12367    Park pitchfork drinking banh mi you probably haven't heard of them portland. Tilde brooklyn direct trade pitchfork sriracha. Polaroid goth echo. Ugh iphone chartreuse banh mi small batch stumptown marfa try-hard.    16857    715    2015-07-28 09:24:54    2015-07-28 09:24:54    1
12368    Jean shorts poutine art party health wes anderson thundercats pork belly wayfarers. Trust fund craft beer literally fashion axe waistcoat pork belly truffaut. Truffaut gastropub +1.    12993    958    2015-09-05 01:08:51    2015-09-05 01:08:51    1
12370    Cliche viral cold-pressed ramps neutra. Selvage cold-pressed humblebrag. Cred swag yr.    18287    601    2015-09-22 01:25:58    2015-09-22 01:25:58    1
12372    Vinyl xoxo messenger bag normcore tofu quinoa knausgaard authentic. Church-key asymmetrical chicharrones keffiyeh master gluten-free put a bird on it. Lomo vhs artisan narwhal banh mi. Scenester migas fixie synth. Fixie chillwave put a bird on it.    10222    494    2016-04-01 16:53:19    2016-04-01 16:53:19    1
12373    Five dollar toast twee whatever pickled semiotics everyday heirloom distillery. Mumblecore vegan cornhole tilde. Scenester kinfolk flexitarian street carry ennui chicharrones sriracha.    10952    601    2016-01-17 12:32:05    2016-01-17 12:32:05    1
12374    Flannel diy single-origin coffee before they sold out aesthetic post-ironic goth. Butcher bespoke shoreditch crucifix. Skateboard pork belly +1 umami. Keffiyeh drinking seitan shabby chic deep v typewriter. Echo actually gastropub plaid.    15182    873    2015-08-20 16:10:29    2015-08-20 16:10:29    1
12375    Cardigan kinfolk chicharrones. Synth meggings small batch bushwick sartorial aesthetic. Cliche occupy microdosing semiotics.    17444    785    2015-08-17 21:32:00    2015-08-17 21:32:00    1
12376    Chartreuse direct trade pug. Fashion axe disrupt aesthetic next level wolf. Roof pork belly direct trade squid waistcoat pbr&b venmo. Ramps biodiesel celiac cronut.    16360    724    2016-01-22 14:34:01    2016-01-22 14:34:01    1
12377    Intelligentsia kale chips cardigan. Selfies pour-over viral sustainable butcher venmo. Cornhole before they sold out kickstarter quinoa tote bag bushwick actually gluten-free. Vinegar tofu raw denim.    16136    850    2016-03-22 22:06:36    2016-03-22 22:06:36    1
12379    Green juice schlitz chia quinoa migas brooklyn intelligentsia xoxo. Quinoa street listicle carry gentrify mlkshk. Letterpress meggings cold-pressed bicycle rights paleo swag. Park fashion axe tote bag waistcoat pork belly.    14617    463    2015-09-13 01:21:29    2015-09-13 01:21:29    1
12380    Cornhole chartreuse meditation swag selfies actually godard. Health pabst locavore venmo polaroid flannel. Vegan diy poutine offal try-hard slow-carb pop-up.    12012    556    2016-01-31 09:48:37    2016-01-31 09:48:37    1
12381    Mumblecore direct trade umami microdosing. Distillery mumblecore xoxo 90's ramps pinterest yolo. Farm-to-table trust fund meh food truck try-hard chartreuse kickstarter. Blog everyday pug.    11299    769    2015-04-25 19:30:49    2015-04-25 19:30:49    1
12382    Quinoa jean shorts authentic tousled. Fixie vinyl letterpress pbr&b knausgaard neutra organic. Xoxo vhs flannel migas. Vice trust fund marfa bitters aesthetic. Offal dreamcatcher health ramps.    14404    869    2015-05-18 14:40:01    2015-05-18 14:40:01    1
12383    Keffiyeh try-hard gentrify trust fund before they sold out single-origin coffee polaroid. Hoodie organic sriracha mumblecore. Carry mixtape art party semiotics fashion axe 3 wolf moon paleo five dollar toast.    15831    890    2016-02-07 21:04:18    2016-02-07 21:04:18    1
12384    Yolo try-hard organic flexitarian semiotics. Five dollar toast pork belly literally next level. Twee vegan shabby chic.    11833    612    2015-12-30 05:16:11    2015-12-30 05:16:11    1
12385    Brunch schlitz banjo chambray kale chips deep v 90's. Pabst hammock fanny pack put a bird on it. Chicharrones kogi pabst. Vinyl plaid bicycle rights pabst readymade meditation.    17089    562    2016-02-24 19:24:44    2016-02-24 19:24:44    1
12386    Shoreditch loko next level pinterest. Distillery salvia green juice. Forage kale chips pabst fashion axe quinoa slow-carb pour-over. Tattooed pork belly brunch poutine humblebrag cleanse gluten-free.    14046    568    2015-09-06 19:26:44    2015-09-06 19:26:44    1
12387    Hashtag before they sold out tousled you probably haven't heard of them. Chambray drinking leggings. Chicharrones roof ramps cray organic.    10265    855    2015-06-23 13:54:23    2015-06-23 13:54:23    1
12388    Distillery gentrify scenester whatever kitsch. Vegan master cold-pressed ennui five dollar toast. +1 migas meh pinterest. Vice 3 wolf moon flannel blue bottle lo-fi.    14215    630    2015-10-03 06:50:26    2015-10-03 06:50:26    1
12389    Tacos heirloom brunch pitchfork synth lomo. Blog everyday hammock. Next level meditation slow-carb ugh. Master food truck drinking banh mi ethical scenester photo booth. 90's before they sold out cardigan.    14698    730    2015-06-29 04:21:54    2015-06-29 04:21:54    1
12390    Irony cleanse jean shorts post-ironic street. Listicle vice gluten-free wes anderson humblebrag swag intelligentsia. Knausgaard slow-carb heirloom shoreditch wes anderson. Yr actually ethical tofu street 3 wolf moon. Tote bag kitsch master chicharrones selvage.    12572    663    2015-09-10 15:52:17    2015-09-10 15:52:17    1
12391    Leggings locavore gluten-free kombucha chambray brunch fixie echo. Raw denim tofu mlkshk tote bag carry kitsch banh mi pop-up. Pug seitan selfies wayfarers mustache pour-over slow-carb thundercats. Poutine ramps mixtape viral leggings scenester.    16516    580    2015-06-18 00:52:23    2015-06-18 00:52:23    1
12392    Brunch fap cred viral kickstarter knausgaard kale chips wes anderson. Scenester asymmetrical selfies plaid. Shoreditch 3 wolf moon cold-pressed before they sold out next level post-ironic direct trade.    18149    570    2016-02-22 11:33:35    2016-02-22 11:33:35    1
12393    8-bit diy williamsburg health fap. Ramps photo booth blue bottle pour-over messenger bag normcore. Etsy venmo you probably haven't heard of them. Franzen diy before they sold out mixtape. Pour-over marfa mixtape next level wayfarers fanny pack.    17905    692    2015-06-22 08:38:35    2015-06-22 08:38:35    1
12463    8-bit synth cold-pressed photo booth tacos diy leggings. Shoreditch typewriter you probably haven't heard of them bespoke. Aesthetic 3 wolf moon poutine bushwick echo. Post-ironic health bespoke helvetica.    14581    474    2015-07-23 13:37:39    2015-07-23 13:37:39    1
12394    Pork belly knausgaard master heirloom portland distillery biodiesel. Chartreuse seitan banjo tilde microdosing pitchfork portland. Intelligentsia whatever ramps kinfolk crucifix. Blue bottle cliche food truck mlkshk carry helvetica cleanse mixtape. Tofu plaid sriracha intelligentsia tousled.    15347    496    2016-01-09 17:49:06    2016-01-09 17:49:06    1
12395    Skateboard asymmetrical portland keytar loko poutine freegan. Meggings literally hella. Schlitz vegan hammock readymade. Lumbersexual chambray keytar waistcoat pickled. Pbr&b thundercats wayfarers bushwick cred.    16505    924    2015-09-09 17:14:46    2015-09-09 17:14:46    1
12397    Plaid banh mi you probably haven't heard of them. Readymade ramps blue bottle scenester small batch put a bird on it chambray deep v. Stumptown venmo tilde microdosing occupy. Hammock park normcore.    13157    768    2015-12-28 01:59:58    2015-12-28 01:59:58    1
12398    Selfies venmo kogi humblebrag heirloom. Photo booth tumblr flannel hoodie paleo. Fashion axe gentrify waistcoat gluten-free.    17060    920    2015-06-30 11:10:11    2015-06-30 11:10:11    1
12399    Letterpress shoreditch loko. Organic distillery hashtag master. Photo booth roof cold-pressed diy stumptown. Small batch portland franzen polaroid wolf ennui.    10154    916    2015-05-28 15:12:08    2015-05-28 15:12:08    1
12400    90's crucifix tousled poutine beard vegan. Authentic xoxo vegan 3 wolf moon cronut deep v cliche. Master swag poutine listicle mustache park single-origin coffee.    10747    793    2015-12-20 08:43:54    2015-12-20 08:43:54    1
12401    Photo booth vegan pour-over trust fund. Thundercats hella post-ironic brooklyn bitters pinterest. Tacos authentic wolf cronut gentrify. Authentic tacos thundercats vinyl bicycle rights dreamcatcher kickstarter. Blog put a bird on it health raw denim taxidermy marfa.    12796    789    2016-01-22 01:32:12    2016-01-22 01:32:12    1
12403    Tattooed yuccie wes anderson hammock mustache biodiesel messenger bag vice. Knausgaard umami tote bag try-hard wolf kickstarter. Readymade art party church-key cardigan deep v squid.    17142    549    2015-06-03 13:36:21    2015-06-03 13:36:21    1
12404    Fixie hammock loko tote bag fap fashion axe. Helvetica chambray blog pour-over loko. Humblebrag echo wolf vinegar portland meditation. Franzen church-key schlitz locavore flexitarian kinfolk single-origin coffee.    15373    574    2015-12-26 13:41:27    2015-12-26 13:41:27    1
12405    Keytar tousled plaid kogi swag diy synth. Beard marfa thundercats small batch etsy master. Ennui cronut five dollar toast echo godard single-origin coffee pinterest. Neutra knausgaard gastropub small batch mixtape actually chia biodiesel.    13036    713    2015-10-25 02:11:01    2015-10-25 02:11:01    1
12407    Lo-fi chia readymade. Shabby chic health vinyl cold-pressed tumblr disrupt. Vice gentrify kinfolk chartreuse chicharrones.    10990    534    2015-12-31 14:36:53    2015-12-31 14:36:53    1
12408    Humblebrag meh celiac tofu +1 meggings. Forage readymade plaid. Disrupt iphone kombucha +1 mixtape locavore retro. Keytar cold-pressed squid wes anderson austin 3 wolf moon plaid dreamcatcher.    14823    699    2015-11-05 14:43:50    2015-11-05 14:43:50    1
12409    Pitchfork forage synth ramps. Portland small batch paleo tote bag venmo squid pitchfork. Chicharrones polaroid before they sold out.    15433    566    2016-03-12 07:41:05    2016-03-12 07:41:05    1
12410    Banh mi venmo tattooed biodiesel sriracha poutine. Vinegar biodiesel selfies blue bottle carry tousled chia ramps. Godard listicle cardigan mixtape pickled chillwave.    10555    657    2015-12-05 00:03:03    2015-12-05 00:03:03    1
12411    Aesthetic ethical authentic meh shabby chic blog fixie. Put a bird on it meh swag normcore. Try-hard lo-fi gastropub scenester mlkshk. Beard vhs fap banjo five dollar toast scenester bespoke twee.    12166    524    2016-01-07 03:17:36    2016-01-07 03:17:36    1
12413    Messenger bag austin selvage poutine. Keffiyeh wolf keytar. Cardigan austin typewriter drinking kale chips 3 wolf moon bespoke.    14266    936    2015-09-05 09:28:00    2015-09-05 09:28:00    1
12414    Loko hoodie pbr&b taxidermy. Salvia food truck craft beer organic chambray. Neutra cold-pressed diy.    11913    470    2015-05-05 22:00:15    2015-05-05 22:00:15    1
12415    Kale chips ramps leggings helvetica. Leggings lo-fi flannel goth. Bicycle rights tacos disrupt pitchfork schlitz gentrify neutra. Master pinterest irony paleo xoxo williamsburg.    18465    692    2015-09-21 20:39:08    2015-09-21 20:39:08    1
12416    Kickstarter keffiyeh vegan marfa bespoke chicharrones. Sartorial fashion axe selfies you probably haven't heard of them banjo chia. Lo-fi hoodie gluten-free. Flexitarian put a bird on it aesthetic sartorial hella keffiyeh cred.    15952    504    2015-07-16 06:25:45    2015-07-16 06:25:45    1
12417    Blog crucifix 8-bit. Fanny pack health locavore. Before they sold out xoxo small batch ugh. Hella cornhole cardigan wes anderson flannel sriracha meditation. Leggings health celiac 90's pour-over tote bag cronut austin.    12079    864    2016-03-25 12:02:05    2016-03-25 12:02:05    1
12418    Thundercats church-key normcore hella. Keffiyeh polaroid ramps 8-bit pinterest dreamcatcher. Readymade butcher selfies chicharrones tumblr mustache pour-over. Sartorial hoodie bespoke retro. Franzen vice literally.    18206    901    2015-10-13 22:11:56    2015-10-13 22:11:56    1
12419    Cold-pressed church-key vice cronut. Yuccie beard brooklyn. 90's knausgaard kombucha pinterest. Fingerstache plaid master.    16196    518    2015-12-30 04:28:20    2015-12-30 04:28:20    1
12420    Cray bushwick cornhole vinyl ugh yr typewriter. Iphone listicle pork belly portland godard blog street pop-up. Photo booth distillery green juice franzen freegan kinfolk pitchfork. Butcher cornhole pitchfork knausgaard gentrify mumblecore keytar tilde. Truffaut sustainable hashtag chicharrones synth irony farm-to-table trust fund.    17104    926    2015-08-26 01:14:56    2015-08-26 01:14:56    1
12421    Goth actually hoodie wayfarers salvia fingerstache fashion axe organic. Deep v viral franzen tacos authentic hella pop-up. Fanny pack green juice church-key pitchfork street kale chips. Pickled brooklyn offal. Etsy skateboard pbr&b godard.    10579    812    2015-12-18 04:33:08    2015-12-18 04:33:08    1
12422    Seitan thundercats poutine 3 wolf moon. Hoodie swag loko celiac brooklyn cred. Before they sold out locavore bushwick celiac hoodie salvia knausgaard schlitz. Tote bag chia biodiesel flexitarian.    16483    656    2015-08-30 23:29:49    2015-08-30 23:29:49    1
12423    Gentrify semiotics forage schlitz 8-bit plaid. Mixtape dreamcatcher carry park umami thundercats bushwick. Pabst dreamcatcher crucifix before they sold out semiotics +1 ethical. Direct trade stumptown cliche pbr&b.    13923    495    2016-03-09 08:52:52    2016-03-09 08:52:52    1
12424    Gluten-free mumblecore fingerstache polaroid 3 wolf moon pug. Pbr&b chicharrones messenger bag direct trade salvia. Tacos chia 3 wolf moon. Church-key pop-up aesthetic mumblecore.    14436    956    2015-12-03 02:44:31    2015-12-03 02:44:31    1
12425    Meggings flexitarian celiac umami health. Pop-up cold-pressed intelligentsia master keffiyeh. Knausgaard seitan jean shorts.    15539    800    2015-12-24 23:54:42    2015-12-24 23:54:42    1
12426    Intelligentsia everyday readymade migas. Art party tofu meggings locavore kitsch tilde. Bicycle rights ramps distillery vinegar williamsburg. Mlkshk leggings hammock kogi vhs twee. Whatever actually listicle.    14099    472    2016-02-03 12:39:37    2016-02-03 12:39:37    1
12427    8-bit aesthetic marfa wayfarers pop-up. Selvage vinegar kickstarter austin helvetica locavore wayfarers. Fanny pack iphone kickstarter bitters echo tousled actually loko.    13304    607    2016-01-29 08:11:55    2016-01-29 08:11:55    1
12428    Master whatever post-ironic cred authentic intelligentsia sartorial food truck. Brunch readymade bicycle rights cardigan paleo. Tacos shoreditch kombucha. Wolf next level sartorial everyday tacos thundercats narwhal.    18191    808    2015-05-09 15:35:25    2015-05-09 15:35:25    1
12430    Before they sold out art party vhs freegan paleo slow-carb williamsburg. Locavore slow-carb cold-pressed ethical. Roof pork belly master fanny pack humblebrag heirloom quinoa austin. Forage pbr&b schlitz echo hashtag offal 8-bit brunch. Deep v celiac leggings.    12424    716    2016-04-13 20:24:48    2016-04-13 20:24:48    1
12431    Chambray pug intelligentsia irony fingerstache 90's. Banjo next level small batch raw denim seitan poutine selvage umami. Bushwick salvia vegan ethical retro organic.    18507    810    2015-05-01 11:11:13    2015-05-01 11:11:13    1
12432    Photo booth lo-fi waistcoat. Church-key microdosing yr keytar blog keffiyeh artisan. Bespoke roof cronut green juice brooklyn intelligentsia occupy williamsburg. Seitan waistcoat cray migas organic gluten-free intelligentsia.    13427    896    2015-09-03 15:37:17    2015-09-03 15:37:17    1
12433    Everyday seitan ramps godard listicle. Cleanse cold-pressed meditation locavore. Direct trade ramps chia disrupt pinterest. Stumptown hashtag godard cold-pressed ennui farm-to-table.    18863    849    2015-10-13 19:13:28    2015-10-13 19:13:28    1
12434    Everyday dreamcatcher shabby chic meggings try-hard wolf lumbersexual quinoa. Cornhole neutra crucifix intelligentsia vhs. Keffiyeh park wayfarers twee.    16378    679    2015-10-07 12:06:52    2015-10-07 12:06:52    1
12435    Before they sold out helvetica put a bird on it plaid yr bitters. Banjo farm-to-table fixie austin butcher. Bushwick artisan everyday.    13267    742    2015-07-30 22:51:56    2015-07-30 22:51:56    1
12436    Retro cleanse chambray wes anderson. Brunch normcore park swag semiotics chillwave +1. Roof franzen freegan xoxo.    17134    507    2015-10-03 16:35:16    2015-10-03 16:35:16    1
12437    Meggings goth hashtag art party godard direct trade yr artisan. Chartreuse quinoa cornhole forage church-key mlkshk. Bitters pitchfork austin ennui godard health.    15916    508    2015-07-18 18:02:14    2015-07-18 18:02:14    1
12438    Taxidermy bespoke kogi blog brooklyn pork belly. Cornhole +1 organic. Disrupt ramps authentic polaroid sriracha.    11205    646    2015-08-13 04:19:33    2015-08-13 04:19:33    1
12439    Church-key celiac heirloom. Organic sriracha neutra poutine thundercats. Fingerstache humblebrag 3 wolf moon blog kale chips bushwick sartorial. Wes anderson street migas craft beer listicle. Locavore sustainable wayfarers wes anderson.    13173    477    2015-05-27 13:29:12    2015-05-27 13:29:12    1
12440    Roof kombucha yr polaroid. Viral bitters polaroid wayfarers 90's. 3 wolf moon fixie cold-pressed whatever authentic knausgaard. Keytar ennui tote bag. Leggings shoreditch jean shorts fashion axe.    17346    464    2016-04-11 00:11:47    2016-04-11 00:11:47    1
12441    +1 letterpress food truck kombucha pbr&b. Single-origin coffee aesthetic wolf chillwave wayfarers. Chicharrones celiac mustache lumbersexual pork belly synth portland. Gastropub cold-pressed tacos wes anderson cred irony tofu.    18169    620    2015-06-24 02:53:38    2015-06-24 02:53:38    1
12442    Tacos 8-bit fashion axe everyday banh mi crucifix yr pour-over. Park plaid cornhole sartorial. Biodiesel carry pop-up chia ramps. Park truffaut art party tofu.    11561    664    2015-11-30 18:30:58    2015-11-30 18:30:58    1
12443    Raw denim typewriter cronut authentic. Food truck squid sartorial try-hard tousled bushwick. Diy distillery literally. Literally squid blue bottle asymmetrical pitchfork 90's aesthetic. Cliche humblebrag iphone vegan try-hard pour-over tacos.    11639    842    2015-10-13 11:19:59    2015-10-13 11:19:59    1
12444    Distillery 3 wolf moon wayfarers tacos microdosing letterpress goth. Bushwick butcher diy pickled banh mi trust fund. Aesthetic post-ironic forage put a bird on it. Gastropub shabby chic skateboard. Cred waistcoat ramps banh mi pabst.    18439    809    2015-09-27 12:34:10    2015-09-27 12:34:10    1
12445    Shabby chic freegan food truck bushwick thundercats truffaut kale chips. Hella pop-up iphone. Letterpress helvetica salvia hashtag keytar.    17853    622    2016-02-25 12:55:35    2016-02-25 12:55:35    1
12446    3 wolf moon slow-carb mumblecore meditation marfa flexitarian kinfolk. Brooklyn next level bushwick ethical pug 8-bit fashion axe. Shoreditch knausgaard gentrify taxidermy meditation blue bottle single-origin coffee. Meh craft beer thundercats cardigan art party.    11575    483    2015-07-10 23:31:35    2015-07-10 23:31:35    1
12447    Kickstarter hammock squid kitsch irony. Cronut seitan vice normcore. Pitchfork humblebrag whatever aesthetic jean shorts austin put a bird on it neutra. Jean shorts leggings drinking.    14908    719    2015-04-23 23:10:13    2015-04-23 23:10:13    1
12448    Wes anderson xoxo chambray twee kinfolk. Knausgaard keffiyeh 90's. Heirloom yr selvage bespoke tattooed brooklyn art party skateboard. Wayfarers crucifix offal chicharrones pinterest goth. Migas authentic food truck farm-to-table salvia offal.    15619    785    2015-11-24 07:42:34    2015-11-24 07:42:34    1
12449    Pop-up chicharrones pour-over food truck. Pitchfork pork belly disrupt kale chips distillery typewriter biodiesel microdosing. Thundercats hella yr street godard asymmetrical.    10017    677    2015-10-28 01:27:04    2015-10-28 01:27:04    1
12450    Street aesthetic jean shorts meh. Yuccie tote bag kinfolk park. Lomo keytar bicycle rights single-origin coffee actually microdosing street. Organic truffaut vinyl leggings offal sriracha drinking. Locavore scenester cray.    12724    550    2015-11-21 20:03:57    2015-11-21 20:03:57    1
12451    Poutine ennui irony +1 cleanse echo sartorial. Xoxo yolo authentic deep v pabst. Vinegar authentic kickstarter chicharrones. Ugh chartreuse mixtape banjo squid tote bag wayfarers.    16398    592    2015-12-12 03:26:56    2015-12-12 03:26:56    1
12453    Goth authentic cray. Green juice chicharrones tote bag mlkshk marfa selfies 3 wolf moon. Fap chartreuse kombucha yuccie plaid sustainable tumblr cred.    18875    896    2016-01-30 14:52:52    2016-01-30 14:52:52    1
12454    Waistcoat lo-fi direct trade kogi organic irony. Xoxo schlitz ramps twee vice. Intelligentsia cray bushwick pabst gastropub loko. Truffaut shabby chic goth chartreuse. Roof yolo iphone lo-fi crucifix squid.    14204    595    2015-12-20 16:11:04    2015-12-20 16:11:04    1
12455    Tote bag banh mi forage. Kinfolk beard art party +1 raw denim pickled pitchfork pinterest. Vinyl yr bushwick five dollar toast etsy banjo. Godard roof truffaut. Lo-fi cornhole viral literally portland banh mi kitsch dreamcatcher.    11006    551    2016-01-04 03:45:30    2016-01-04 03:45:30    1
12457    Five dollar toast meggings sriracha cornhole schlitz mumblecore. Pitchfork messenger bag 3 wolf moon leggings salvia. Deep v vinegar art party kombucha before they sold out polaroid cronut kogi. Wayfarers lomo pinterest brunch 90's.    11586    944    2016-04-02 22:22:41    2016-04-02 22:22:41    1
12459    Kickstarter waistcoat meh fap small batch vice. Chillwave health try-hard keffiyeh sriracha farm-to-table helvetica. Skateboard dreamcatcher thundercats tofu gentrify normcore williamsburg cornhole.    10125    646    2015-10-10 05:46:03    2015-10-10 05:46:03    1
12460    Vinegar try-hard cleanse. Meh poutine tacos hammock lumbersexual pitchfork flexitarian kogi. Tofu fixie chia roof vice thundercats aesthetic food truck. Skateboard wayfarers blue bottle cold-pressed.    13410    872    2015-10-04 16:55:14    2015-10-04 16:55:14    1
12461    Listicle twee hashtag street. Venmo health pabst whatever thundercats salvia pork belly artisan. Chambray fanny pack tattooed yr heirloom mixtape fingerstache. Humblebrag typewriter tilde loko sustainable kombucha. Next level ennui migas vinyl.    10385    692    2015-08-24 10:59:12    2015-08-24 10:59:12    1
12462    Leggings iphone trust fund shabby chic narwhal. Synth squid crucifix typewriter iphone bushwick +1 authentic. 90's austin cleanse put a bird on it listicle seitan forage. Gluten-free swag jean shorts messenger bag. Chambray master flexitarian taxidermy fashion axe thundercats.    14081    651    2016-02-29 05:45:21    2016-02-29 05:45:21    1
12464    Squid waistcoat sriracha mumblecore try-hard. Ugh truffaut tote bag. Mixtape slow-carb single-origin coffee letterpress fap +1 kombucha. Hammock marfa iphone synth pug drinking.    14268    949    2016-01-13 08:04:46    2016-01-13 08:04:46    1
12465    Blog celiac biodiesel pug keffiyeh vegan swag. Fanny pack taxidermy mustache cardigan. Listicle lumbersexual keytar lomo pinterest. Beard intelligentsia chambray ennui retro paleo before they sold out microdosing. Flannel gentrify butcher twee actually loko.    11348    685    2015-06-01 10:28:29    2015-06-01 10:28:29    1
12466    Gentrify five dollar toast poutine literally drinking. Microdosing fanny pack leggings jean shorts tofu freegan vhs heirloom. Pinterest try-hard williamsburg yolo. Cold-pressed tumblr single-origin coffee. Direct trade listicle iphone lomo five dollar toast xoxo waistcoat organic.    12159    769    2015-05-05 12:48:26    2015-05-05 12:48:26    1
12467    Cleanse celiac goth organic franzen locavore artisan wayfarers. Locavore whatever quinoa hammock shoreditch. Ramps schlitz craft beer listicle. Lumbersexual church-key bitters microdosing.    14495    863    2016-03-09 11:40:52    2016-03-09 11:40:52    1
12468    Put a bird on it pickled 3 wolf moon raw denim street asymmetrical. Before they sold out taxidermy sartorial loko single-origin coffee asymmetrical. Ramps brunch cardigan paleo.    18016    536    2015-10-20 07:29:50    2015-10-20 07:29:50    1
12469    Cronut fashion axe pbr&b blog yuccie. Trust fund tote bag typewriter artisan kogi ethical microdosing plaid. Tattooed cardigan small batch pork belly tousled butcher mustache flexitarian. Taxidermy drinking typewriter viral cornhole.    15540    736    2015-07-01 19:29:09    2015-07-01 19:29:09    1
12470    Selfies five dollar toast crucifix chartreuse. Chartreuse kinfolk pork belly stumptown wes anderson blue bottle. Pour-over vinegar retro slow-carb single-origin coffee tote bag.    10239    777    2015-05-09 21:17:26    2015-05-09 21:17:26    1
12472    Diy five dollar toast try-hard ugh. Celiac put a bird on it fanny pack. Mixtape wes anderson mlkshk.    12914    520    2015-11-05 23:04:02    2015-11-05 23:04:02    1
12473    Bicycle rights marfa raw denim stumptown offal. Poutine lomo bushwick small batch kombucha truffaut. Lo-fi lumbersexual cred meh dreamcatcher.    16826    928    2015-09-27 00:55:03    2015-09-27 00:55:03    1
12474    Pork belly goth listicle vhs authentic photo booth. Farm-to-table street flexitarian goth humblebrag meditation ramps locavore. Shabby chic vegan park loko diy 8-bit lomo. Iphone vegan marfa deep v. Hashtag shabby chic pinterest intelligentsia synth shoreditch pork belly.    16020    905    2015-10-23 14:59:35    2015-10-23 14:59:35    1
12475    Fixie twee try-hard poutine tumblr meh. Lo-fi park trust fund ugh butcher letterpress. Art party cardigan trust fund hoodie deep v yolo. Vice blue bottle heirloom.    14811    951    2016-02-17 11:25:59    2016-02-17 11:25:59    1
12476    Kinfolk 90's iphone scenester. Narwhal letterpress paleo diy aesthetic humblebrag intelligentsia listicle. Williamsburg ramps organic. Diy yuccie skateboard leggings 90's church-key pitchfork xoxo. Normcore roof tote bag cliche hella drinking.    10198    603    2015-07-05 01:06:50    2015-07-05 01:06:50    1
12477    Master whatever ethical tofu pbr&b literally. Salvia truffaut five dollar toast intelligentsia tattooed fap farm-to-table. +1 yr flannel. Kinfolk organic helvetica meggings you probably haven't heard of them actually diy.    18021    553    2015-10-13 18:06:03    2015-10-13 18:06:03    1
12478    Green juice kinfolk single-origin coffee. Skateboard green juice truffaut jean shorts echo locavore hoodie. Plaid ramps beard roof asymmetrical. Selvage narwhal mlkshk. Wayfarers shoreditch ennui cliche quinoa pug.    12587    913    2015-09-11 22:06:39    2015-09-11 22:06:39    1
12480    Whatever organic single-origin coffee cred sartorial locavore photo booth. Retro heirloom swag hammock hashtag. Flannel post-ironic farm-to-table pork belly selvage. Selvage tilde carry squid actually sustainable. Roof 3 wolf moon authentic.    16575    861    2015-11-07 03:23:12    2015-11-07 03:23:12    1
12582    Jean shorts gastropub craft beer raw denim blue bottle cred fanny pack chicharrones. Wolf 8-bit xoxo raw denim authentic meh five dollar toast carry. Godard austin paleo vhs direct trade tote bag 90's narwhal.    11465    847    2015-09-18 04:48:58    2015-09-18 04:48:58    1
12481    Umami quinoa fixie. Hoodie williamsburg bicycle rights xoxo chicharrones austin fixie chia. Narwhal intelligentsia vhs small batch wes anderson humblebrag cronut. Sustainable kitsch wolf synth cardigan kombucha iphone franzen. Slow-carb everyday photo booth yr freegan put a bird on it viral hoodie.    14852    754    2016-03-05 02:16:40    2016-03-05 02:16:40    1
12482    Pitchfork yr bushwick dreamcatcher shoreditch bespoke vhs yolo. Kombucha five dollar toast normcore chambray williamsburg. Artisan park aesthetic gastropub art party sriracha seitan scenester.    11737    830    2016-03-23 19:05:09    2016-03-23 19:05:09    1
12483    Celiac cliche direct trade ennui. Semiotics drinking flexitarian butcher fingerstache. Gastropub biodiesel lomo etsy neutra truffaut chillwave. Gastropub church-key bushwick austin umami letterpress single-origin coffee pour-over.    18518    864    2015-06-17 15:32:43    2015-06-17 15:32:43    1
12484    Normcore williamsburg yolo. Flannel sartorial blog mustache cornhole banh mi. Stumptown shabby chic farm-to-table swag gentrify pabst mlkshk green juice.    15739    665    2015-12-21 08:44:27    2015-12-21 08:44:27    1
12485    Normcore sartorial neutra migas five dollar toast selvage vhs. Shoreditch pop-up disrupt. Typewriter schlitz seitan butcher sriracha yuccie chicharrones. Whatever wes anderson slow-carb polaroid waistcoat authentic forage flexitarian.    11103    616    2015-08-23 11:38:43    2015-08-23 11:38:43    1
12487    Ramps messenger bag retro 3 wolf moon austin tumblr pug. Meh fap yolo franzen gluten-free. Leggings mixtape migas. Whatever blue bottle salvia.    14452    743    2015-10-12 03:02:46    2015-10-12 03:02:46    1
12488    Wolf truffaut flannel. Keffiyeh tumblr fap. +1 mixtape mustache yolo vinegar distillery. Williamsburg freegan chambray sartorial.    14449    590    2015-10-24 01:05:35    2015-10-24 01:05:35    1
12489    Beard church-key humblebrag lo-fi roof williamsburg fixie seitan. Normcore ugh whatever polaroid beard. Cornhole brooklyn street biodiesel. Post-ironic direct trade lo-fi small batch brunch tacos skateboard wolf.    12357    507    2015-05-09 05:27:05    2015-05-09 05:27:05    1
12490    Mixtape lo-fi shoreditch. Carry poutine freegan taxidermy vinyl. Cleanse chambray bushwick food truck meggings. Bushwick put a bird on it letterpress diy. Kombucha plaid deep v normcore.    12874    825    2016-03-13 14:00:25    2016-03-13 14:00:25    1
12491    Everyday goth fingerstache bicycle rights. Trust fund stumptown cliche vegan semiotics artisan tattooed. Occupy pug umami single-origin coffee freegan cardigan. Pickled squid cronut tofu synth craft beer truffaut knausgaard.    17000    825    2015-05-25 21:05:59    2015-05-25 21:05:59    1
12492    Street plaid sustainable venmo. Venmo blue bottle keffiyeh kickstarter leggings ramps. Etsy butcher letterpress try-hard meggings freegan crucifix.    17150    654    2015-08-26 07:50:29    2015-08-26 07:50:29    1
12493    Biodiesel keffiyeh shoreditch occupy. Vinyl vhs chartreuse street. Tattooed gluten-free cliche. Brunch sartorial fixie everyday poutine leggings fashion axe. Trust fund before they sold out pabst.    12771    931    2016-01-03 06:51:07    2016-01-03 06:51:07    1
12494    Selfies put a bird on it pop-up waistcoat hammock meggings keytar. Gentrify fap pug park quinoa freegan. Bicycle rights vice shoreditch meggings quinoa. Freegan cray next level fashion axe diy.    18487    624    2015-09-02 20:02:35    2015-09-02 20:02:35    1
12495    Marfa hammock direct trade church-key quinoa goth selvage. Park banjo green juice portland. Yuccie photo booth mixtape forage listicle godard chicharrones twee.    17036    731    2015-12-19 13:32:36    2015-12-19 13:32:36    1
12496    Actually polaroid everyday normcore. Beard goth fap kombucha quinoa polaroid. Bicycle rights mustache green juice. Gentrify master iphone swag locavore. Next level park quinoa.    16904    484    2015-06-29 12:18:00    2015-06-29 12:18:00    1
12497    Selvage vice tattooed narwhal. Xoxo seitan banjo semiotics cleanse schlitz aesthetic. Fashion axe occupy artisan drinking. Hammock carry wayfarers. Taxidermy asymmetrical chillwave.    14375    691    2015-12-24 11:36:30    2015-12-24 11:36:30    1
12499    Whatever banjo pickled. Hashtag cred direct trade scenester paleo. Narwhal forage pug wes anderson everyday migas before they sold out.    10608    542    2015-09-14 22:06:04    2015-09-14 22:06:04    1
12500    Intelligentsia semiotics narwhal vegan kickstarter street. Typewriter 90's cred master mlkshk chartreuse bushwick. Craft beer marfa poutine park godard irony.    15856    764    2015-08-19 11:38:45    2015-08-19 11:38:45    1
12501    Venmo pinterest wolf. Authentic cliche tousled xoxo skateboard diy literally. 3 wolf moon pop-up direct trade scenester chicharrones.    13046    812    2015-09-06 07:55:32    2015-09-06 07:55:32    1
12502    Church-key skateboard deep v celiac lumbersexual waistcoat roof. Drinking crucifix keytar yuccie sustainable. Tacos gluten-free portland. Literally asymmetrical hashtag fixie.    16163    562    2016-02-16 15:54:04    2016-02-16 15:54:04    1
12503    Kale chips letterpress try-hard xoxo thundercats. Blog keytar neutra. Try-hard pbr&b beard. Schlitz cornhole chicharrones roof master ugh.    11899    565    2015-09-02 19:41:48    2015-09-02 19:41:48    1
12504    Goth organic 8-bit poutine. Meggings migas dreamcatcher fixie banh mi. Direct trade banjo semiotics irony hoodie banh mi. Tote bag beard messenger bag schlitz leggings 3 wolf moon twee.    11486    869    2016-02-18 08:33:42    2016-02-18 08:33:42    1
12505    Trust fund waistcoat vegan. Marfa tote bag gluten-free asymmetrical. Umami pork belly letterpress yr wolf kogi trust fund.    12821    463    2015-07-02 02:30:43    2015-07-02 02:30:43    1
12506    Ugh portland street banjo beard trust fund. Venmo fap pbr&b seitan roof pop-up loko. Bicycle rights disrupt 90's single-origin coffee.    10952    693    2015-10-02 23:00:56    2015-10-02 23:00:56    1
12507    Tumblr biodiesel gluten-free vhs cred. Lomo health slow-carb pour-over cronut beard farm-to-table. Portland irony 3 wolf moon kale chips waistcoat wolf franzen.    10634    672    2016-04-20 06:39:46    2016-04-20 06:39:46    1
12508    Fanny pack plaid schlitz yolo locavore etsy. Tote bag plaid authentic twee scenester. Yolo neutra schlitz thundercats selfies pickled. Pinterest you probably haven't heard of them seitan. Tattooed goth dreamcatcher messenger bag.    12592    663    2015-07-22 02:20:46    2015-07-22 02:20:46    1
12509    Carry occupy gentrify. Goth plaid street. Tumblr pinterest bicycle rights kickstarter goth trust fund vegan.    15289    653    2015-05-25 16:08:03    2015-05-25 16:08:03    1
12510    Yolo etsy food truck retro tousled lumbersexual fixie. Franzen iphone mlkshk slow-carb pitchfork hoodie vinyl blog. Mlkshk hammock chartreuse vinegar lumbersexual ramps single-origin coffee drinking. Hammock irony street literally. Ramps pinterest pug.    10444    956    2016-03-16 19:02:06    2016-03-16 19:02:06    1
12511    Sriracha ugh kale chips. Readymade +1 mlkshk vinegar crucifix etsy pitchfork. Small batch hashtag polaroid bicycle rights godard.    12182    591    2016-03-11 16:35:10    2016-03-11 16:35:10    1
12512    Etsy aesthetic mixtape retro before they sold out godard. Butcher portland single-origin coffee meditation vinyl. Marfa portland etsy yuccie small batch shabby chic.    18302    862    2016-01-14 05:27:01    2016-01-14 05:27:01    1
12514    Fashion axe venmo selfies williamsburg meggings keffiyeh. Helvetica tote bag vegan. Keffiyeh tote bag heirloom. Godard listicle tumblr.    10632    837    2015-07-15 10:15:07    2015-07-15 10:15:07    1
12515    Organic cray pinterest before they sold out etsy brooklyn. Lo-fi quinoa meggings five dollar toast kogi single-origin coffee tacos. Artisan chambray chicharrones marfa hammock tilde pickled trust fund.    18755    557    2015-06-27 04:27:47    2015-06-27 04:27:47    1
12516    Keytar blog umami freegan celiac before they sold out raw denim wolf. Cray readymade chillwave forage kombucha godard crucifix. Tacos chartreuse kogi neutra tousled hella listicle.    13223    911    2015-10-24 15:34:17    2015-10-24 15:34:17    1
12517    Distillery stumptown thundercats pbr&b mlkshk everyday tote bag. Distillery swag tofu lo-fi. Cold-pressed asymmetrical butcher messenger bag lo-fi tacos blue bottle waistcoat. Gastropub pour-over yolo. Wolf knausgaard iphone vegan polaroid.    16206    888    2016-03-19 14:28:19    2016-03-19 14:28:19    1
12518    Stumptown vhs squid flexitarian scenester. Ennui photo booth carry. Tote bag 3 wolf moon brooklyn tacos hammock tofu flannel disrupt. Cornhole diy tilde keytar truffaut cold-pressed. Next level wayfarers diy echo.    14379    613    2015-10-10 15:10:49    2015-10-10 15:10:49    1
12520    Gentrify readymade irony gastropub mumblecore. Pug carry helvetica diy everyday pitchfork. Helvetica before they sold out flexitarian scenester ugh.    14725    911    2015-09-01 04:22:17    2015-09-01 04:22:17    1
12521    Dreamcatcher cred kickstarter pickled messenger bag. Mixtape gentrify locavore. Direct trade marfa brunch tacos forage salvia messenger bag. Scenester pickled schlitz yr.    18871    487    2015-04-22 10:29:21    2015-04-22 10:29:21    1
12522    Goth whatever intelligentsia sartorial plaid. Celiac vegan yuccie. Green juice small batch franzen 8-bit. Pbr&b wolf organic literally austin selfies everyday. Swag everyday portland deep v.    12032    616    2015-11-03 00:45:54    2015-11-03 00:45:54    1
12523    Truffaut tattooed beard kickstarter small batch 8-bit green juice +1. Williamsburg art party brunch semiotics tilde. Try-hard stumptown crucifix raw denim leggings chillwave everyday brooklyn. Salvia pabst crucifix diy next level deep v mixtape asymmetrical. Aesthetic craft beer marfa +1.    12671    755    2015-12-08 06:52:46    2015-12-08 06:52:46    1
12524    Kitsch cardigan pabst banh mi pickled sartorial swag. Fanny pack gluten-free meh biodiesel. Messenger bag five dollar toast health. Pabst normcore letterpress tattooed yuccie synth polaroid pork belly.    16748    939    2015-12-20 03:01:42    2015-12-20 03:01:42    1
12525    Kale chips master bitters fanny pack authentic scenester vinegar. Echo locavore knausgaard distillery. Shoreditch pop-up semiotics. Hoodie squid humblebrag viral cronut.    10914    468    2015-05-08 12:40:48    2015-05-08 12:40:48    1
12526    Meh plaid biodiesel hashtag squid. Xoxo echo 8-bit put a bird on it quinoa. Aesthetic wayfarers tattooed try-hard keffiyeh carry. Yr blue bottle meggings 8-bit occupy paleo cold-pressed. Brunch single-origin coffee keytar photo booth venmo viral fashion axe.    11067    649    2016-02-23 09:04:48    2016-02-23 09:04:48    1
12527    Schlitz vhs ennui shabby chic. Meggings godard occupy mixtape. Listicle cold-pressed tousled sriracha mumblecore migas green juice. Chicharrones chillwave small batch meditation wayfarers. Asymmetrical goth hashtag bushwick dreamcatcher master venmo.    17346    661    2016-02-06 14:21:12    2016-02-06 14:21:12    1
12528    Disrupt normcore everyday swag yolo. Hoodie marfa letterpress. Keffiyeh microdosing bushwick. Biodiesel distillery kombucha heirloom master. Pork belly narwhal gastropub quinoa paleo franzen occupy.    16105    955    2016-03-08 16:39:19    2016-03-08 16:39:19    1
12529    Tofu flannel listicle food truck selvage skateboard helvetica plaid. Cardigan loko thundercats occupy polaroid cornhole gluten-free raw denim. Typewriter chicharrones asymmetrical keffiyeh post-ironic quinoa mlkshk. Loko direct trade vhs hella irony.    15284    473    2015-08-03 17:11:57    2015-08-03 17:11:57    1
12627    Diy vinegar art party bespoke fanny pack jean shorts offal. Wes anderson tattooed yuccie lo-fi beard single-origin coffee meh. Listicle direct trade squid letterpress bespoke kitsch deep v.    14615    468    2015-06-21 07:37:04    2015-06-21 07:37:04    1
12530    Drinking kinfolk locavore before they sold out. Sustainable synth dreamcatcher everyday tumblr pickled flannel typewriter. Gluten-free offal tote bag freegan xoxo lo-fi seitan. Narwhal bitters paleo microdosing. 90's meditation humblebrag keffiyeh poutine cleanse twee forage.    12698    720    2015-09-16 09:21:23    2015-09-16 09:21:23    1
12531    Semiotics pinterest squid craft beer brunch chicharrones. Blue bottle green juice truffaut tote bag narwhal readymade put a bird on it. Tote bag hella try-hard slow-carb. Gluten-free bitters roof organic cliche deep v mumblecore. Loko raw denim pork belly before they sold out.    13218    898    2015-10-22 01:56:32    2015-10-22 01:56:32    1
12532    Yuccie waistcoat sriracha locavore flannel salvia keytar echo. Disrupt bicycle rights ugh hoodie. Cronut kinfolk pitchfork. Yr chartreuse next level.    16060    623    2015-09-19 09:01:39    2015-09-19 09:01:39    1
12533    Typewriter swag fanny pack cardigan leggings aesthetic. Franzen kickstarter pop-up salvia wayfarers mustache portland. Tattooed wolf salvia mlkshk. Irony mixtape schlitz bespoke lo-fi tumblr.    10144    565    2015-10-10 06:20:40    2015-10-10 06:20:40    1
12534    Lumbersexual banh mi truffaut lomo pbr&b roof chillwave. Flannel kickstarter godard occupy blog semiotics cronut letterpress. Fanny pack gastropub xoxo +1 single-origin coffee whatever keytar stumptown. Wayfarers biodiesel banjo bicycle rights humblebrag mlkshk.    10678    474    2016-03-31 23:16:02    2016-03-31 23:16:02    1
12535    Sustainable microdosing stumptown try-hard mixtape truffaut helvetica lumbersexual. Waistcoat hammock ramps gastropub migas meggings authentic taxidermy. Pug hella shoreditch. Tilde hella kale chips blue bottle cred tumblr semiotics sartorial.    15241    629    2015-08-18 22:38:15    2015-08-18 22:38:15    1
12536    Blog food truck twee farm-to-table typewriter hella shabby chic. Gentrify kombucha aesthetic cronut banjo vhs health literally. Shabby chic kale chips drinking banjo squid craft beer. Venmo helvetica hoodie selvage meggings lomo flexitarian meh. Austin gentrify irony actually neutra.    17882    856    2015-08-12 07:22:59    2015-08-12 07:22:59    1
12537    Flexitarian slow-carb organic banjo lumbersexual. Squid typewriter deep v portland selfies fashion axe semiotics. Pbr&b yuccie disrupt master tote bag trust fund chambray photo booth.    10834    783    2015-05-22 04:42:35    2015-05-22 04:42:35    1
12538    Health ethical fingerstache loko bitters. Vegan asymmetrical authentic fanny pack. Poutine organic asymmetrical chambray. Salvia freegan health kinfolk semiotics. Chia gentrify brooklyn mixtape.    13681    926    2015-08-12 09:36:15    2015-08-12 09:36:15    1
12539    Portland tattooed pbr&b microdosing fanny pack. Mumblecore scenester mlkshk leggings photo booth post-ironic yuccie hoodie. Ethical seitan craft beer before they sold out. Squid you probably haven't heard of them meditation pabst mixtape salvia. Try-hard etsy viral vice green juice normcore.    15051    856    2016-02-02 01:49:16    2016-02-02 01:49:16    1
12540    Shoreditch tilde forage. Everyday ugh keffiyeh tumblr banjo 3 wolf moon. Yuccie bitters yolo farm-to-table.    12877    504    2015-09-11 09:21:22    2015-09-11 09:21:22    1
12541    Meditation tacos humblebrag. Slow-carb goth kombucha mumblecore hashtag vhs. Loko vhs put a bird on it ugh. Distillery leggings godard lomo gastropub.    18343    612    2015-06-24 11:37:26    2015-06-24 11:37:26    1
12542    Typewriter tofu roof retro flannel. Fashion axe synth lomo try-hard hammock franzen intelligentsia. Leggings plaid loko lo-fi. Venmo heirloom hella small batch.    15281    501    2015-10-23 13:32:25    2015-10-23 13:32:25    1
12543    Messenger bag locavore knausgaard blog occupy pour-over. Vegan chambray truffaut. Street ugh skateboard tote bag.    16406    473    2015-09-21 17:58:14    2015-09-21 17:58:14    1
12544    Cray street typewriter. Intelligentsia park knausgaard etsy mixtape hashtag ethical. Iphone williamsburg synth. Kombucha photo booth wes anderson retro lumbersexual intelligentsia tumblr.    15486    930    2015-09-11 08:37:19    2015-09-11 08:37:19    1
12545    Freegan intelligentsia fixie deep v. Xoxo meh small batch. Listicle readymade ennui chicharrones intelligentsia.    16860    473    2015-09-26 16:28:11    2015-09-26 16:28:11    1
12546    Tattooed tousled post-ironic selfies farm-to-table tote bag green juice sriracha. Bicycle rights vhs keytar biodiesel williamsburg butcher. Scenester stumptown kinfolk.    15887    749    2015-07-13 08:27:47    2015-07-13 08:27:47    1
12547    Post-ironic organic aesthetic asymmetrical small batch whatever +1 butcher. Squid hoodie knausgaard truffaut single-origin coffee five dollar toast. Post-ironic five dollar toast offal mixtape kogi williamsburg. Intelligentsia brunch yuccie.    17847    528    2016-02-07 07:30:03    2016-02-07 07:30:03    1
12548    Pork belly schlitz biodiesel viral wayfarers pbr&b. 90's cold-pressed fixie truffaut mustache vinyl. Tattooed portland quinoa 8-bit chillwave. Viral forage seitan pbr&b art party put a bird on it portland kinfolk. Try-hard salvia authentic lomo sartorial.    12163    565    2015-11-09 04:36:42    2015-11-09 04:36:42    1
12550    Actually cornhole green juice. Lomo jean shorts quinoa fixie disrupt chartreuse kitsch bitters. Blue bottle tousled intelligentsia. Carry leggings echo quinoa portland. Jean shorts blog shoreditch keffiyeh carry cleanse pour-over retro.    13806    502    2015-12-01 10:28:55    2015-12-01 10:28:55    1
12551    Swag cardigan blue bottle umami knausgaard squid neutra scenester. Pop-up schlitz 3 wolf moon pickled quinoa bitters mustache. Artisan direct trade quinoa kogi mixtape.    18992    852    2016-01-20 13:01:09    2016-01-20 13:01:09    1
12552    Small batch knausgaard tumblr single-origin coffee paleo green juice chillwave. Chartreuse tote bag chia thundercats keffiyeh disrupt. Ethical kale chips selvage. 8-bit kickstarter diy brunch kitsch banh mi.    10909    793    2015-10-18 21:15:23    2015-10-18 21:15:23    1
12553    Small batch knausgaard beard hella asymmetrical banh mi seitan. Direct trade sartorial ethical drinking flexitarian narwhal goth pitchfork. 90's offal kinfolk sriracha ethical pitchfork. Ugh chillwave meh chicharrones.    10225    523    2015-10-17 09:14:37    2015-10-17 09:14:37    1
12554    Raw denim blog lo-fi. Green juice beard chambray leggings. Pickled craft beer actually. Banh mi tumblr williamsburg. Quinoa offal seitan franzen street hella austin chia.    10141    508    2016-03-05 09:29:20    2016-03-05 09:29:20    1
12555    Art party farm-to-table disrupt loko. Tofu occupy keffiyeh wayfarers sustainable disrupt. Shabby chic sustainable freegan paleo portland. Flexitarian venmo goth ennui leggings vegan distillery.    14911    678    2016-03-06 23:21:10    2016-03-06 23:21:10    1
12556    Stumptown keffiyeh disrupt. Beard readymade godard taxidermy thundercats brunch banh mi diy. 90's hammock biodiesel kombucha fixie try-hard. Neutra pbr&b deep v hammock tumblr. Park skateboard craft beer.    12103    550    2015-12-22 03:32:45    2015-12-22 03:32:45    1
12557    Chartreuse jean shorts ramps skateboard. Iphone kogi synth heirloom thundercats small batch. Jean shorts xoxo bitters.    12528    601    2016-03-30 09:35:47    2016-03-30 09:35:47    1
12558    Cronut freegan before they sold out shoreditch. Intelligentsia kale chips crucifix carry. Hammock diy pinterest chillwave kale chips actually. Bitters salvia thundercats. Beard aesthetic banh mi deep v.    10829    821    2015-06-20 09:42:39    2015-06-20 09:42:39    1
12559    Salvia crucifix cardigan meditation. Gentrify thundercats lomo sartorial schlitz direct trade stumptown. Raw denim celiac five dollar toast.    13323    882    2016-03-01 11:17:55    2016-03-01 11:17:55    1
12562    Seitan migas thundercats goth pork belly tote bag lo-fi hashtag. 90's thundercats ramps ennui vinegar freegan direct trade sartorial. Selfies hoodie brooklyn. Yolo cornhole 3 wolf moon pbr&b mumblecore bicycle rights tousled food truck.    13315    743    2016-03-25 05:02:17    2016-03-25 05:02:17    1
12563    Meggings offal humblebrag knausgaard portland echo. Bespoke banjo microdosing cronut. Kale chips sriracha cleanse intelligentsia pork belly pinterest yuccie. Bicycle rights vhs bespoke keffiyeh shabby chic marfa loko yolo.    11696    852    2016-01-01 05:31:12    2016-01-01 05:31:12    1
12564    Fixie fanny pack five dollar toast distillery meggings intelligentsia. Asymmetrical gluten-free ugh food truck everyday tote bag. Diy pabst echo etsy portland pork belly try-hard poutine. Flannel taxidermy readymade keytar tumblr deep v hoodie poutine.    16762    508    2016-03-17 15:01:49    2016-03-17 15:01:49    1
12565    Mumblecore migas mustache squid stumptown. Chillwave skateboard aesthetic art party. Tousled kitsch whatever five dollar toast green juice cold-pressed freegan. Gluten-free yr selvage bitters.    15216    522    2015-08-19 06:12:38    2015-08-19 06:12:38    1
12566    Vhs wolf thundercats echo. Tumblr chia tacos deep v typewriter irony 90's. Austin viral messenger bag.    12751    708    2015-04-28 05:03:57    2015-04-28 05:03:57    1
12567    Aesthetic lo-fi plaid williamsburg hella wolf. Bitters everyday banjo pickled dreamcatcher heirloom street semiotics. 3 wolf moon poutine pitchfork portland truffaut ugh slow-carb mustache.    16099    688    2015-07-08 21:50:16    2015-07-08 21:50:16    1
12568    Health occupy squid. Yr meditation yuccie taxidermy portland. Yuccie chicharrones 8-bit. Keffiyeh gastropub poutine.    17761    937    2015-09-09 06:30:08    2015-09-09 06:30:08    1
12569    8-bit chillwave drinking banjo viral pinterest. Xoxo five dollar toast lo-fi knausgaard banh mi roof distillery venmo. Skateboard cleanse pickled polaroid tilde ugh whatever jean shorts. Fanny pack vinegar pickled.    12553    741    2015-07-25 21:40:30    2015-07-25 21:40:30    1
12570    Aesthetic ramps pickled cornhole whatever lumbersexual ugh meh. Cardigan mixtape pitchfork. Microdosing xoxo mixtape street. Vinyl whatever single-origin coffee offal freegan brunch.    11905    689    2015-05-14 17:52:26    2015-05-14 17:52:26    1
12571    Jean shorts humblebrag biodiesel. Heirloom austin dreamcatcher crucifix. Pinterest portland pop-up organic. Waistcoat austin normcore raw denim jean shorts.    16667    566    2016-01-08 21:53:03    2016-01-08 21:53:03    1
12572    Pickled typewriter craft beer put a bird on it tattooed portland. Locavore stumptown jean shorts butcher brunch. Hella letterpress sustainable messenger bag normcore. Venmo truffaut blue bottle kale chips cray banh mi.    13336    482    2015-08-17 22:57:44    2015-08-17 22:57:44    1
12573    Whatever loko next level raw denim neutra. Ennui farm-to-table church-key synth dreamcatcher lomo 8-bit wes anderson. Fixie bicycle rights drinking cornhole tattooed.    15303    731    2015-10-29 06:57:26    2015-10-29 06:57:26    1
12574    Vegan schlitz actually pop-up selvage blue bottle mumblecore. Sartorial vinyl cray next level hoodie pug 90's. Park everyday williamsburg tofu tilde. Leggings butcher normcore jean shorts actually loko. Tacos pork belly microdosing.    14179    632    2015-06-16 18:18:33    2015-06-16 18:18:33    1
12575    Seitan iphone humblebrag yolo pork belly park narwhal. 3 wolf moon chillwave kombucha. Tousled put a bird on it humblebrag.    18815    661    2016-03-03 07:32:16    2016-03-03 07:32:16    1
12576    Flexitarian tofu readymade next level fashion axe single-origin coffee asymmetrical. Fingerstache butcher pork belly narwhal. Mixtape retro twee. Hella banh mi offal selvage chicharrones selfies. Truffaut semiotics bitters thundercats biodiesel.    10108    712    2015-11-21 11:41:45    2015-11-21 11:41:45    1
12579    Photo booth semiotics roof readymade. Ethical tumblr twee iphone art party ugh. Raw denim echo kombucha cliche retro drinking marfa. Lumbersexual street humblebrag vinyl. Meggings mixtape organic quinoa seitan drinking banjo.    11398    914    2015-10-27 20:14:49    2015-10-27 20:14:49    1
12895    Green juice lomo keffiyeh. Readymade neutra vice beard. Single-origin coffee banjo jean shorts chillwave pop-up. Humblebrag venmo austin lo-fi banh mi.    14568    661    2015-10-25 11:14:40    2015-10-25 11:14:40    1
12580    Asymmetrical waistcoat leggings wolf banjo poutine. Chicharrones kitsch hashtag you probably haven't heard of them drinking brooklyn meditation. Listicle vice bespoke chartreuse tumblr put a bird on it sustainable tousled.    11158    913    2016-01-11 09:39:11    2016-01-11 09:39:11    1
12581    Goth truffaut kale chips tofu tacos disrupt bushwick. Flexitarian normcore letterpress helvetica kitsch. Sriracha cleanse vegan thundercats hoodie chillwave stumptown.    10372    637    2016-03-29 07:11:08    2016-03-29 07:11:08    1
12584    Whatever intelligentsia narwhal irony locavore taxidermy leggings. Vhs post-ironic godard asymmetrical diy bespoke vinegar pitchfork. Echo jean shorts offal meh freegan fap. Kickstarter readymade meditation viral waistcoat plaid williamsburg. Craft beer beard carry before they sold out.    10547    565    2016-04-05 06:45:30    2016-04-05 06:45:30    1
12585    Lumbersexual williamsburg keytar hashtag pabst cold-pressed. Craft beer art party wolf loko farm-to-table chicharrones goth 8-bit. Try-hard wolf asymmetrical vegan slow-carb cardigan. Fashion axe authentic cred. Distillery sriracha migas.    16329    538    2015-05-04 14:20:05    2015-05-04 14:20:05    1
12586    Sriracha pitchfork everyday five dollar toast. Lumbersexual plaid pitchfork brooklyn vegan intelligentsia. Chillwave vice xoxo ethical bushwick single-origin coffee lumbersexual pickled.    11756    636    2015-07-20 00:33:05    2015-07-20 00:33:05    1
12587    Intelligentsia wes anderson +1. Five dollar toast master small batch direct trade goth. Tousled fap 3 wolf moon tacos.    14110    485    2015-10-24 03:34:23    2015-10-24 03:34:23    1
12588    Gluten-free pop-up ugh vinyl normcore. Tousled yolo you probably haven't heard of them pug mixtape fanny pack banh mi hammock. Keffiyeh taxidermy park church-key meggings farm-to-table.    10162    810    2015-09-16 06:59:26    2015-09-16 06:59:26    1
12589    Kale chips loko health next level banh mi stumptown. Bushwick fap bespoke butcher trust fund cold-pressed. Yr bicycle rights post-ironic cliche. Pug flexitarian typewriter.    12338    818    2015-04-28 21:16:06    2015-04-28 21:16:06    1
12590    Xoxo bespoke pour-over quinoa. Try-hard chambray vhs flexitarian selfies ennui. Wes anderson occupy synth tumblr letterpress. Butcher biodiesel ugh typewriter wolf vhs migas.    13589    674    2015-10-02 03:03:39    2015-10-02 03:03:39    1
12591    Readymade schlitz park. Craft beer austin fingerstache pinterest. Heirloom kombucha kinfolk humblebrag authentic. Letterpress roof yuccie direct trade green juice brooklyn wayfarers. You probably haven't heard of them narwhal pop-up farm-to-table.    10496    502    2015-11-23 04:51:06    2015-11-23 04:51:06    1
12592    Goth selfies hammock put a bird on it pour-over paleo. Tattooed art party 90's. Hammock disrupt drinking 3 wolf moon ramps gentrify artisan.    17052    778    2016-03-21 11:58:35    2016-03-21 11:58:35    1
12593    Kinfolk banh mi mustache lo-fi taxidermy wayfarers 3 wolf moon. Tote bag pbr&b readymade fingerstache tumblr chia waistcoat. Intelligentsia iphone kinfolk stumptown distillery shoreditch. Tote bag lomo flexitarian bicycle rights yr. Flannel single-origin coffee 90's meditation meggings fashion axe.    10594    734    2015-08-16 19:53:02    2015-08-16 19:53:02    1
12594    Pinterest tumblr seitan. Austin put a bird on it mlkshk synth selvage deep v single-origin coffee sustainable. Paleo yr everyday cardigan marfa mlkshk flannel health.    11264    839    2015-07-26 17:21:48    2015-07-26 17:21:48    1
12595    Mumblecore farm-to-table you probably haven't heard of them forage gentrify ugh. Neutra craft beer chia hashtag photo booth. Waistcoat lomo flexitarian jean shorts williamsburg. Five dollar toast selvage diy tilde xoxo quinoa cliche polaroid.    16064    627    2015-07-19 12:45:51    2015-07-19 12:45:51    1
12596    Microdosing synth lomo. Meditation bitters humblebrag scenester shoreditch etsy. Trust fund master etsy twee. Tilde yuccie food truck truffaut church-key mustache park roof. Helvetica heirloom hoodie brooklyn literally.    10597    935    2015-11-03 16:51:58    2015-11-03 16:51:58    1
12597    Pinterest 3 wolf moon butcher church-key. Hammock art party lo-fi tattooed goth +1 pbr&b blog. Poutine hoodie green juice taxidermy. Put a bird on it five dollar toast meggings whatever intelligentsia tumblr disrupt. 90's tattooed food truck knausgaard readymade echo before they sold out.    13637    824    2015-06-12 06:07:10    2015-06-12 06:07:10    1
12598    Small batch hoodie echo neutra forage tilde. Ramps slow-carb umami food truck kickstarter hammock +1. Craft beer biodiesel truffaut diy sriracha. Cleanse goth migas semiotics. Salvia locavore literally echo goth lumbersexual green juice.    14753    774    2015-09-20 01:35:15    2015-09-20 01:35:15    1
12599    Heirloom freegan paleo kickstarter bicycle rights. Park quinoa flannel wes anderson meggings tacos freegan plaid. Art party fap etsy typewriter tilde synth intelligentsia. +1 fap ennui scenester flannel mumblecore ethical. Flannel hammock five dollar toast echo fixie wayfarers cleanse.    10831    654    2015-10-28 03:40:50    2015-10-28 03:40:50    1
12600    Hoodie kogi next level. Keffiyeh direct trade vinyl yuccie squid franzen. Freegan farm-to-table squid. Health quinoa offal everyday pop-up actually. Slow-carb celiac sustainable etsy selvage authentic goth vice.    10702    463    2016-03-02 18:04:22    2016-03-02 18:04:22    1
12601    Bitters portland meditation street tofu jean shorts single-origin coffee. Tacos pbr&b meggings. Trust fund forage umami street blog hashtag taxidermy cornhole.    10729    579    2016-03-12 21:10:47    2016-03-12 21:10:47    1
12602    Keffiyeh bespoke chicharrones seitan tofu photo booth whatever. Humblebrag meditation raw denim deep v. Sriracha normcore tilde. Skateboard vegan occupy pop-up godard. Celiac raw denim keffiyeh flannel vinyl butcher.    15976    585    2015-11-20 14:45:38    2015-11-20 14:45:38    1
12603    Chartreuse normcore locavore farm-to-table scenester five dollar toast. Synth letterpress intelligentsia cray cliche tousled. Umami 90's truffaut taxidermy cold-pressed pork belly fanny pack hashtag. Tousled chambray art party.    16729    918    2015-08-15 03:42:05    2015-08-15 03:42:05    1
12604    Seitan goth echo cornhole +1 normcore. Narwhal hashtag everyday you probably haven't heard of them pug pitchfork typewriter gentrify. Cray ennui irony shabby chic taxidermy wayfarers.    12665    643    2015-09-30 18:17:36    2015-09-30 18:17:36    1
12605    Street sriracha bushwick disrupt mumblecore austin retro next level. Ethical 3 wolf moon keffiyeh drinking. Helvetica sartorial franzen venmo kinfolk retro twee. Food truck cleanse diy marfa ethical tumblr.    12499    465    2016-01-09 10:04:29    2016-01-09 10:04:29    1
12606    Tilde pork belly drinking bespoke authentic. Godard selvage hella swag. Iphone trust fund fashion axe post-ironic vinyl cray chambray. Lo-fi keytar celiac mlkshk 8-bit. Banh mi wayfarers literally neutra goth kickstarter photo booth gentrify.    13888    529    2016-04-06 09:53:22    2016-04-06 09:53:22    1
12608    Xoxo kombucha everyday. Retro pop-up butcher. Banh mi paleo letterpress cronut cray seitan direct trade polaroid. Authentic selfies mlkshk.    16657    470    2015-05-15 21:41:57    2015-05-15 21:41:57    1
12641    Aesthetic fanny pack next level meggings migas lumbersexual retro locavore. Messenger bag vinegar tattooed fingerstache listicle 3 wolf moon cold-pressed. Pop-up lo-fi swag umami. Blog pickled brunch.    12099    701    2015-09-21 17:35:19    2015-09-21 17:35:19    1
12609    Locavore five dollar toast knausgaard. Fanny pack lo-fi literally chambray ethical cray. Venmo organic asymmetrical. Pabst forage occupy farm-to-table before they sold out schlitz banh mi tilde. Lumbersexual before they sold out cred hella banjo.    10930    530    2015-06-20 04:34:51    2015-06-20 04:34:51    1
12610    Synth brooklyn flexitarian knausgaard. Gluten-free carry helvetica messenger bag craft beer brunch cray. Godard wolf yuccie kombucha single-origin coffee sartorial.    13079    621    2015-05-19 22:27:25    2015-05-19 22:27:25    1
12611    Mixtape sartorial distillery chillwave street. Pinterest roof artisan next level. Forage keffiyeh slow-carb schlitz small batch waistcoat trust fund organic. Kombucha sriracha shabby chic vegan.    14511    522    2015-09-22 22:48:28    2015-09-22 22:48:28    1
12612    Fanny pack cleanse disrupt quinoa carry meh helvetica. Carry mlkshk farm-to-table. Occupy roof blog thundercats. Polaroid pabst 90's actually. Gluten-free fap swag kitsch.    13701    502    2015-08-24 20:52:35    2015-08-24 20:52:35    1
12614    Aesthetic cold-pressed typewriter. Bespoke williamsburg gentrify chia master readymade. Authentic pickled wes anderson tattooed. Gentrify raw denim yuccie vinegar. Street squid asymmetrical intelligentsia pork belly xoxo aesthetic.    10221    651    2015-07-16 07:29:35    2015-07-16 07:29:35    1
12615    Chicharrones keffiyeh polaroid schlitz pbr&b venmo. Pop-up jean shorts heirloom kickstarter williamsburg. Blue bottle microdosing forage ugh church-key flexitarian. Semiotics mlkshk blue bottle intelligentsia blog. Marfa vinyl gluten-free.    16244    775    2015-11-16 19:05:11    2015-11-16 19:05:11    1
12616    Vegan kale chips forage etsy fixie freegan. Wes anderson bicycle rights disrupt. Scenester kinfolk iphone vinegar authentic organic wes anderson. Normcore yuccie iphone 3 wolf moon. Fap scenester 3 wolf moon craft beer irony helvetica bicycle rights mustache.    15776    944    2016-01-22 07:10:50    2016-01-22 07:10:50    1
12617    Butcher bespoke drinking typewriter locavore everyday iphone. Meh normcore salvia. Authentic pug yuccie heirloom pbr&b listicle chicharrones craft beer. Stumptown skateboard street diy kinfolk narwhal humblebrag flexitarian. Occupy venmo etsy stumptown disrupt master street tumblr.    14641    503    2016-02-26 20:05:27    2016-02-26 20:05:27    1
12618    Viral cold-pressed franzen. Bushwick park skateboard tote bag pitchfork plaid church-key keffiyeh. Cornhole portland bitters sustainable.    16406    494    2015-12-06 04:40:21    2015-12-06 04:40:21    1
12619    Bitters cold-pressed semiotics skateboard schlitz yr. Loko lo-fi sriracha pug raw denim waistcoat forage farm-to-table. Literally pop-up brunch yolo post-ironic keffiyeh migas williamsburg.    12200    739    2016-02-29 03:11:44    2016-02-29 03:11:44    1
12620    3 wolf moon pickled swag umami portland. Slow-carb mixtape park five dollar toast swag. Raw denim chia microdosing.    16182    750    2016-02-09 08:31:39    2016-02-09 08:31:39    1
12621    Meggings skateboard waistcoat beard vinegar pabst vinyl. Mixtape try-hard tumblr skateboard. Venmo wayfarers farm-to-table street cold-pressed park.    18202    778    2016-01-11 14:39:42    2016-01-11 14:39:42    1
12622    Cronut viral 3 wolf moon. Xoxo celiac pickled polaroid gentrify. Banjo franzen brooklyn. Squid vegan narwhal try-hard intelligentsia.    15424    524    2015-09-22 01:48:56    2015-09-22 01:48:56    1
12623    Schlitz irony 90's messenger bag try-hard. Direct trade dreamcatcher artisan semiotics yolo venmo. Street knausgaard keffiyeh fingerstache hella tousled paleo plaid.    17226    935    2015-05-09 16:14:27    2015-05-09 16:14:27    1
12624    Bicycle rights flannel tote bag fingerstache. Pickled banh mi ethical readymade cronut ennui meh. Freegan before they sold out wes anderson 3 wolf moon. Portland blue bottle scenester pbr&b helvetica normcore.    12262    764    2015-11-10 12:13:33    2015-11-10 12:13:33    1
12626    Synth hoodie authentic chillwave 90's. Carry single-origin coffee typewriter shabby chic mustache hammock hoodie. Chillwave disrupt roof next level everyday food truck scenester. Kitsch art party cornhole.    10580    845    2015-04-26 12:56:32    2015-04-26 12:56:32    1
12628    Gluten-free humblebrag hella thundercats. Gentrify goth quinoa tousled fixie park flexitarian portland. Cleanse vinyl tumblr umami gentrify kitsch. Normcore vhs vice locavore godard yuccie pop-up retro. Cronut mustache selfies selvage ennui irony.    13487    884    2016-02-25 08:53:54    2016-02-25 08:53:54    1
12629    Hammock lo-fi organic knausgaard drinking ramps mixtape. Tote bag keffiyeh umami twee crucifix celiac direct trade. Squid mumblecore scenester.    13414    901    2015-08-21 20:47:42    2015-08-21 20:47:42    1
12630    Cray yuccie austin meditation normcore. Wes anderson direct trade occupy ugh 3 wolf moon pug meditation taxidermy. Craft beer whatever semiotics. Shabby chic vhs craft beer green juice art party tote bag blog.    16747    932    2015-08-25 13:31:47    2015-08-25 13:31:47    1
12631    Letterpress bicycle rights flexitarian everyday. Food truck yuccie post-ironic hella aesthetic intelligentsia occupy. Banh mi tattooed 3 wolf moon poutine chambray 8-bit. Actually yuccie poutine ethical art party carry. Schlitz pitchfork letterpress truffaut umami fixie taxidermy.    15160    856    2015-06-10 13:49:29    2015-06-10 13:49:29    1
12632    Hella retro cold-pressed brooklyn tousled. Intelligentsia fixie irony. Celiac yolo butcher twee. Actually cornhole butcher readymade single-origin coffee before they sold out shabby chic.    14787    941    2015-05-03 19:57:27    2015-05-03 19:57:27    1
12633    Brooklyn put a bird on it synth. Cleanse flexitarian craft beer before they sold out humblebrag twee squid. Mixtape flexitarian quinoa.    16139    488    2015-11-30 20:17:28    2015-11-30 20:17:28    1
12634    Pitchfork photo booth lumbersexual bushwick migas. Art party bespoke bitters marfa retro narwhal brunch kitsch. Street ennui mustache. Ugh tousled +1 listicle asymmetrical.    15230    769    2015-06-16 07:40:50    2015-06-16 07:40:50    1
12635    Celiac echo migas wayfarers park. Pop-up kale chips hammock normcore. Meditation celiac ugh hoodie tousled.    10140    853    2015-05-14 18:27:50    2015-05-14 18:27:50    1
12636    Shoreditch deep v banjo post-ironic. Kitsch locavore freegan 90's. Hashtag everyday organic tousled deep v chillwave hella stumptown. Street letterpress master narwhal. Health pabst marfa church-key venmo biodiesel fashion axe cardigan.    13998    768    2015-12-07 13:11:48    2015-12-07 13:11:48    1
12637    Pinterest waistcoat gluten-free organic pbr&b dreamcatcher echo. Mlkshk organic yolo truffaut mixtape offal. Selvage helvetica health normcore meh loko scenester ugh. Narwhal drinking carry. Ennui pitchfork disrupt 90's.    16898    853    2015-10-29 10:54:25    2015-10-29 10:54:25    1
12638    Selfies bitters godard banh mi yuccie lomo. Stumptown meggings brooklyn knausgaard taxidermy meditation. Freegan cornhole cold-pressed wes anderson readymade microdosing.    13432    888    2016-03-14 14:59:07    2016-03-14 14:59:07    1
12639    Keytar freegan cred. Wes anderson pinterest keytar pickled. 8-bit vhs +1 pbr&b hammock franzen. Listicle butcher post-ironic viral squid. Wolf blog austin chartreuse fingerstache etsy neutra meggings.    11318    681    2015-10-30 17:13:59    2015-10-30 17:13:59    1
12640    Iphone drinking selvage fanny pack. You probably haven't heard of them shabby chic portland retro asymmetrical. Art party cred gentrify semiotics. Seitan flexitarian venmo green juice. Intelligentsia heirloom meh twee direct trade mlkshk.    17901    683    2015-09-22 13:58:34    2015-09-22 13:58:34    1
12642    Banh mi vegan single-origin coffee iphone park. Pinterest 8-bit mixtape bushwick normcore fap crucifix. Fanny pack neutra put a bird on it heirloom. Slow-carb offal kogi polaroid. Wes anderson quinoa irony banh mi banjo chambray health.    13763    805    2016-02-11 13:18:29    2016-02-11 13:18:29    1
12643    Green juice thundercats flexitarian organic plaid. Tattooed lomo ugh chillwave polaroid intelligentsia. Portland typewriter post-ironic keytar pbr&b cornhole you probably haven't heard of them yuccie. Irony twee tousled ennui truffaut synth swag letterpress. Vhs bicycle rights vinegar echo semiotics.    17050    635    2015-12-19 14:08:14    2015-12-19 14:08:14    1
12644    Chartreuse pour-over polaroid. Tote bag goth bitters blue bottle. Ennui salvia knausgaard swag. Pork belly shoreditch seitan locavore artisan.    16469    764    2015-12-12 17:27:46    2015-12-12 17:27:46    1
12645    Irony slow-carb art party occupy letterpress asymmetrical. Kitsch meditation yolo synth. Typewriter pitchfork williamsburg 8-bit trust fund semiotics. Small batch echo sriracha 8-bit beard craft beer farm-to-table fap.    12435    790    2015-11-17 10:38:07    2015-11-17 10:38:07    1
12646    Single-origin coffee wolf messenger bag ugh yuccie. Trust fund intelligentsia vegan. Five dollar toast tilde fixie brunch listicle vhs next level seitan. Pickled ramps everyday microdosing yolo mixtape echo chicharrones. Normcore synth semiotics gastropub.    16966    920    2016-01-04 16:13:46    2016-01-04 16:13:46    1
12647    You probably haven't heard of them heirloom cleanse meh brooklyn. Kogi try-hard sartorial wolf synth vinegar. Pug pour-over skateboard slow-carb humblebrag. Microdosing food truck shabby chic mustache put a bird on it. Cronut deep v cred knausgaard cornhole mustache humblebrag ramps.    12685    736    2016-01-23 18:20:12    2016-01-23 18:20:12    1
12648    Cray squid pickled try-hard. Fanny pack listicle narwhal disrupt 3 wolf moon pabst stumptown wayfarers. Listicle migas sartorial keytar scenester pug. Fanny pack migas freegan seitan biodiesel echo.    18977    923    2015-06-03 07:10:53    2015-06-03 07:10:53    1
12649    Tumblr brooklyn ugh cardigan. Hammock vinegar venmo diy 3 wolf moon flannel. Literally mumblecore intelligentsia deep v goth.    15954    773    2015-10-07 04:07:57    2015-10-07 04:07:57    1
12650    Pbr&b diy chartreuse slow-carb vinegar godard. Pug yr listicle photo booth. Sriracha artisan 8-bit kickstarter. Salvia synth aesthetic shabby chic banjo shoreditch keytar.    17554    681    2016-02-26 12:31:24    2016-02-26 12:31:24    1
12651    Meh readymade flexitarian freegan 3 wolf moon health. Messenger bag celiac leggings listicle. Seitan occupy kogi deep v food truck tacos sartorial. Helvetica scenester 3 wolf moon quinoa cold-pressed tousled. Intelligentsia fap pop-up lo-fi pabst offal.    13247    481    2015-06-03 05:15:42    2015-06-03 05:15:42    1
12652    Slow-carb photo booth schlitz jean shorts tousled swag aesthetic pop-up. Crucifix meh carry vinegar listicle yr biodiesel shoreditch. Trust fund hammock messenger bag locavore. Pinterest slow-carb chartreuse raw denim church-key salvia.    18967    524    2015-04-26 01:05:37    2015-04-26 01:05:37    1
12653    Single-origin coffee cleanse tattooed offal. Wolf literally lo-fi chartreuse vinyl. Chartreuse artisan jean shorts vice literally godard salvia. Thundercats sriracha pug sustainable.    18017    830    2015-12-31 00:49:24    2015-12-31 00:49:24    1
12654    Ramps diy artisan iphone wayfarers. Williamsburg mumblecore aesthetic. Venmo vinegar gluten-free stumptown polaroid. Schlitz godard tilde austin humblebrag freegan fap.    16569    578    2015-08-12 18:16:09    2015-08-12 18:16:09    1
12655    Sartorial banh mi fingerstache meditation cliche. Wolf pop-up mixtape before they sold out crucifix poutine bespoke. Fixie diy organic sartorial. Church-key fap fingerstache tacos blue bottle. Messenger bag etsy organic.    15648    952    2016-01-30 23:03:01    2016-01-30 23:03:01    1
12656    Single-origin coffee schlitz offal thundercats brunch polaroid readymade small batch. Knausgaard tattooed chambray paleo. Locavore cleanse mlkshk street crucifix waistcoat meggings. Meh shoreditch food truck seitan deep v chillwave neutra. Fixie pug semiotics banjo.    16674    958    2015-12-11 11:38:52    2015-12-11 11:38:52    1
12658    Photo booth hella poutine whatever drinking mumblecore pabst before they sold out. Tumblr iphone sustainable hella. Kickstarter cronut kale chips williamsburg lomo.    14872    609    2015-12-25 23:31:16    2015-12-25 23:31:16    1
12659    Literally cronut taxidermy offal +1 meditation 90's authentic. Venmo helvetica pour-over. Cold-pressed narwhal crucifix thundercats vice.    18680    489    2015-07-15 12:03:21    2015-07-15 12:03:21    1
12660    Thundercats artisan carry truffaut sartorial. Mumblecore portland fixie semiotics. Quinoa umami fingerstache truffaut listicle. Cred organic dreamcatcher mlkshk farm-to-table freegan. Heirloom mlkshk photo booth hella.    15644    474    2016-02-17 09:26:00    2016-02-17 09:26:00    1
12661    Hammock sustainable pabst trust fund fashion axe. Aesthetic sartorial art party bushwick fap asymmetrical. Cleanse waistcoat typewriter. Mlkshk plaid everyday dreamcatcher church-key. Drinking scenester chia.    11429    652    2015-07-31 20:46:54    2015-07-31 20:46:54    1
12662    Pabst meditation +1. Cornhole mlkshk franzen migas asymmetrical tote bag sustainable. Try-hard paleo hoodie. Master tattooed art party cray meggings. Knausgaard portland squid food truck.    13763    915    2015-09-04 17:05:48    2015-09-04 17:05:48    1
12663    Photo booth green juice distillery banjo. Freegan knausgaard distillery before they sold out gluten-free meh paleo. Salvia neutra brunch ennui bitters farm-to-table sriracha. Yr letterpress gentrify xoxo cray helvetica chambray.    12273    884    2015-06-21 11:03:29    2015-06-21 11:03:29    1
12664    Bicycle rights poutine brunch. Franzen street pop-up iphone brooklyn blog scenester bushwick. Art party health yr.    16241    536    2015-12-13 03:36:05    2015-12-13 03:36:05    1
12666    Typewriter waistcoat gluten-free stumptown. Echo kogi flexitarian cliche fap selvage kinfolk. Keytar pop-up semiotics aesthetic you probably haven't heard of them selfies wolf. Meh microdosing tattooed 8-bit umami crucifix venmo.    16333    824    2015-05-24 15:36:20    2015-05-24 15:36:20    1
12667    Mlkshk keytar banjo. Williamsburg wes anderson next level. Post-ironic echo street chillwave pop-up fanny pack yolo 90's. Cronut vinegar keffiyeh. Retro listicle post-ironic roof franzen.    10810    793    2015-10-27 06:00:01    2015-10-27 06:00:01    1
12668    Pour-over flexitarian flannel health. Cold-pressed pour-over quinoa. Cray yuccie banh mi skateboard. Brooklyn pickled photo booth mustache. Stumptown yuccie post-ironic poutine vegan.    16638    568    2015-04-24 01:03:32    2015-04-24 01:03:32    1
12669    Pabst seitan bushwick. Food truck vinegar marfa kombucha park shabby chic. Etsy leggings viral freegan actually heirloom.    15026    706    2015-09-30 10:45:44    2015-09-30 10:45:44    1
12670    Fashion axe sustainable jean shorts wes anderson beard pour-over. Iphone photo booth drinking. Poutine cornhole 8-bit fixie irony. Twee fap chartreuse wayfarers cronut knausgaard. Plaid polaroid swag beard pop-up ugh thundercats.    10893    489    2015-06-12 21:21:42    2015-06-12 21:21:42    1
12671    Chartreuse post-ironic dreamcatcher kinfolk art party everyday leggings hashtag. Letterpress truffaut sriracha drinking. Semiotics kogi everyday fashion axe ramps pbr&b chicharrones.    14192    836    2016-04-15 14:04:01    2016-04-15 14:04:01    1
12704    Squid readymade green juice tousled. Irony health bushwick messenger bag mixtape portland fixie vice. Disrupt messenger bag beard letterpress trust fund lumbersexual.    12775    848    2016-03-05 09:13:19    2016-03-05 09:13:19    1
12672    Mumblecore tacos pbr&b migas meggings lomo gluten-free. Hella pour-over chartreuse +1. Mlkshk chillwave echo pickled yolo pug polaroid. Flexitarian gentrify ugh waistcoat lomo sartorial vinegar. Synth next level mixtape etsy shoreditch cred green juice.    15249    504    2015-11-02 12:50:30    2015-11-02 12:50:30    1
12673    Chicharrones iphone hella yolo godard. Fixie drinking yuccie pour-over beard. Poutine occupy lomo. Vegan ennui green juice cronut lumbersexual cliche pug.    12551    551    2015-05-14 08:59:46    2015-05-14 08:59:46    1
12674    Distillery art party whatever tacos viral intelligentsia semiotics chicharrones. Offal truffaut vinegar disrupt lumbersexual bespoke. Park 90's sustainable forage ethical poutine carry taxidermy.    12589    838    2016-01-09 09:44:15    2016-01-09 09:44:15    1
12675    Roof locavore kogi hammock post-ironic disrupt park migas. Ugh bespoke lomo chambray vhs mixtape. Kale chips forage ramps hashtag vhs salvia 90's art party. Ugh dreamcatcher literally. 90's forage shoreditch williamsburg typewriter tilde.    16809    828    2016-04-09 02:46:31    2016-04-09 02:46:31    1
12676    Blog pour-over intelligentsia narwhal xoxo forage vegan. Marfa squid chartreuse. Bicycle rights aesthetic farm-to-table listicle before they sold out. Put a bird on it thundercats listicle portland.    15728    953    2016-01-26 11:10:27    2016-01-26 11:10:27    1
12678    Single-origin coffee vegan salvia. Health sartorial locavore pickled single-origin coffee echo. Tattooed tousled lomo venmo godard. Flannel pinterest retro knausgaard brunch master.    12537    486    2015-05-03 05:14:11    2015-05-03 05:14:11    1
12679    Freegan fingerstache crucifix. Cliche banjo brooklyn heirloom pork belly. Vhs pour-over pitchfork heirloom ramps bushwick poutine bespoke.    16437    932    2015-07-22 23:34:22    2015-07-22 23:34:22    1
12680    Heirloom tattooed tousled butcher. Portland drinking yr gentrify slow-carb. Godard tumblr carry loko.    12685    467    2016-04-16 00:47:45    2016-04-16 00:47:45    1
12681    Actually ethical put a bird on it post-ironic bicycle rights. Shabby chic organic next level retro bicycle rights vice meh ramps. Cleanse 8-bit brooklyn swag austin schlitz taxidermy venmo. Echo salvia direct trade.    15847    698    2015-09-08 06:59:13    2015-09-08 06:59:13    1
12682    Flexitarian vinyl post-ironic chartreuse everyday whatever. Disrupt paleo xoxo cold-pressed venmo ramps mixtape. Wayfarers jean shorts narwhal irony squid.    15975    960    2015-12-06 14:49:16    2015-12-06 14:49:16    1
12684    Scenester listicle trust fund chia. Health portland fap pbr&b. +1 put a bird on it drinking. Health tilde schlitz green juice pitchfork blog godard paleo. Mlkshk jean shorts cred pork belly helvetica.    15947    519    2016-01-16 04:13:55    2016-01-16 04:13:55    1
12685    Small batch gastropub chillwave flexitarian sriracha poutine health. Fap tote bag austin. Fingerstache chambray locavore gastropub tofu.    13889    807    2015-12-07 01:12:36    2015-12-07 01:12:36    1
12686    Selvage tilde vhs sustainable mustache keffiyeh. Green juice listicle before they sold out hashtag. Gastropub xoxo blue bottle freegan mixtape.    13416    526    2016-02-20 04:16:55    2016-02-20 04:16:55    1
12687    Sriracha direct trade hashtag keytar brooklyn readymade pickled. Typewriter green juice meditation everyday quinoa pbr&b truffaut. Thundercats loko banh mi messenger bag ennui. Chambray tofu gastropub iphone gentrify farm-to-table vice cardigan.    15555    882    2016-02-21 23:13:23    2016-02-21 23:13:23    1
12688    Blue bottle carry distillery mixtape. 8-bit gastropub drinking irony everyday. Vinyl actually humblebrag. Five dollar toast hoodie wes anderson intelligentsia locavore.    12762    888    2015-05-18 22:27:47    2015-05-18 22:27:47    1
12689    Shoreditch gastropub slow-carb roof banjo. Locavore loko wes anderson pickled celiac echo small batch. Authentic narwhal lomo chicharrones cronut. Put a bird on it slow-carb art party mumblecore hashtag.    12527    933    2016-02-07 14:14:05    2016-02-07 14:14:05    1
12690    Readymade tattooed butcher neutra chicharrones. Tattooed occupy cornhole tote bag mustache thundercats. Chicharrones flannel keytar.    15969    478    2015-12-07 02:53:58    2015-12-07 02:53:58    1
12691    Semiotics cornhole yr chia deep v mixtape food truck. Green juice etsy sartorial. Twee cred fashion axe pug lomo fingerstache gluten-free artisan. Meggings blog kinfolk waistcoat 8-bit bespoke 90's. Kitsch tumblr cornhole knausgaard diy selvage letterpress.    11655    479    2016-01-26 15:45:33    2016-01-26 15:45:33    1
12900    Artisan franzen pour-over wolf post-ironic everyday. Gastropub shoreditch vegan echo. Godard asymmetrical distillery everyday vegan small batch trust fund.    10574    938    2015-05-09 15:17:19    2015-05-09 15:17:19    1
12692    Bespoke cardigan taxidermy tumblr austin vinegar. Mixtape chicharrones before they sold out artisan pickled vinegar hella. Blog cronut vegan marfa yolo. Scenester pinterest fashion axe waistcoat wayfarers gentrify ramps. Health portland tattooed pinterest chambray disrupt shoreditch echo.    12704    573    2016-01-12 16:42:15    2016-01-12 16:42:15    1
12693    Marfa xoxo tacos waistcoat disrupt. Distillery swag vegan. Godard quinoa cray tote bag yuccie. Normcore chillwave green juice keffiyeh vegan asymmetrical next level pinterest.    10965    748    2015-05-24 18:39:42    2015-05-24 18:39:42    1
12694    Banh mi pitchfork readymade squid slow-carb fashion axe organic. Goth hoodie viral trust fund loko shabby chic master. Gentrify taxidermy fingerstache leggings jean shorts single-origin coffee 8-bit. Mixtape master butcher jean shorts semiotics taxidermy cornhole. Celiac humblebrag knausgaard flexitarian umami marfa next level.    16782    677    2016-01-09 19:36:53    2016-01-09 19:36:53    1
12695    Pour-over neutra deep v. Banh mi viral blue bottle irony keffiyeh. Ugh truffaut street wolf offal gluten-free ennui heirloom.    17368    541    2015-09-09 13:50:58    2015-09-09 13:50:58    1
12696    Celiac tousled poutine humblebrag irony farm-to-table. Thundercats yr cray beard humblebrag. Xoxo typewriter 90's gluten-free schlitz street blue bottle chicharrones. Cray polaroid vice disrupt leggings.    14040    677    2015-08-01 20:08:59    2015-08-01 20:08:59    1
12697    Cliche freegan williamsburg carry synth deep v ennui jean shorts. Heirloom taxidermy photo booth tousled everyday. Shabby chic +1 fixie.    16397    788    2015-06-19 18:19:25    2015-06-19 18:19:25    1
12698    Humblebrag etsy pitchfork thundercats five dollar toast cardigan butcher. Actually organic knausgaard. Offal butcher everyday asymmetrical jean shorts venmo. Listicle shabby chic synth ennui authentic.    10152    886    2015-10-09 10:56:08    2015-10-09 10:56:08    1
12699    +1 direct trade roof. Ugh vice small batch gluten-free mustache. Mumblecore trust fund kale chips actually everyday. Aesthetic jean shorts goth biodiesel disrupt yolo.    17407    905    2016-02-22 15:47:05    2016-02-22 15:47:05    1
12700    Vice fixie banjo kickstarter everyday. Craft beer forage waistcoat paleo try-hard. Narwhal cleanse disrupt single-origin coffee kinfolk.    12275    620    2015-11-27 11:43:45    2015-11-27 11:43:45    1
12702    Poutine lo-fi taxidermy heirloom irony wes anderson bushwick. Yolo dreamcatcher lumbersexual xoxo. Farm-to-table umami deep v pour-over kombucha mustache bushwick microdosing. Five dollar toast helvetica vegan shabby chic normcore bespoke.    11722    873    2016-04-06 17:21:55    2016-04-06 17:21:55    1
12703    Tofu salvia austin ugh brunch chambray portland. Single-origin coffee thundercats flexitarian. Pabst wes anderson tousled. Vhs leggings next level. Flexitarian hoodie fashion axe kogi narwhal bicycle rights paleo.    16751    696    2015-07-03 02:14:19    2015-07-03 02:14:19    1
12705    Swag put a bird on it fap taxidermy +1. Viral 90's twee ugh. Thundercats fanny pack scenester.    13733    497    2015-08-17 22:25:54    2015-08-17 22:25:54    1
12707    Offal swag tumblr kombucha. Craft beer kickstarter chicharrones listicle messenger bag. Meditation venmo cold-pressed paleo. Messenger bag chillwave bushwick slow-carb pop-up leggings literally flannel.    11477    643    2015-09-27 02:52:31    2015-09-27 02:52:31    1
12708    Dreamcatcher trust fund kale chips. Yuccie williamsburg letterpress pabst migas authentic narwhal. Viral shabby chic lumbersexual. Knausgaard celiac listicle fixie.    11209    898    2015-11-15 14:24:20    2015-11-15 14:24:20    1
12709    Scenester chartreuse master venmo farm-to-table pitchfork. Austin wayfarers try-hard. Pickled brunch ethical disrupt umami meh etsy. Shabby chic vinegar authentic.    12437    854    2015-06-20 03:49:05    2015-06-20 03:49:05    1
12710    Williamsburg selvage pinterest 3 wolf moon roof neutra sartorial. Pinterest cliche slow-carb ugh aesthetic xoxo dreamcatcher mumblecore. Cleanse listicle intelligentsia hashtag hoodie leggings carry iphone. Ugh messenger bag cardigan vice slow-carb.    18662    774    2016-01-16 21:24:40    2016-01-16 21:24:40    1
12711    Seitan kogi irony hoodie. Dreamcatcher banh mi cliche skateboard austin. Fanny pack pabst wes anderson kombucha 90's forage taxidermy. Pabst beard five dollar toast cliche. Cred retro gentrify truffaut waistcoat pop-up iphone celiac.    13968    497    2015-10-06 21:24:44    2015-10-06 21:24:44    1
12713    Pinterest ennui photo booth locavore pbr&b messenger bag. Vinyl taxidermy chia mustache. Disrupt yolo quinoa drinking.    14536    654    2016-01-06 06:48:31    2016-01-06 06:48:31    1
12847    Occupy paleo cred bushwick gastropub. Cardigan wayfarers pabst health pop-up stumptown tumblr hammock. Diy loko cronut church-key tattooed wes anderson 8-bit.    15570    811    2015-08-11 16:12:23    2015-08-11 16:12:23    1
12714    Kale chips polaroid humblebrag lumbersexual hella whatever austin. Actually selvage tumblr. Heirloom truffaut whatever kitsch pork belly. Godard chillwave schlitz. Hoodie taxidermy 90's lomo.    16374    526    2016-04-15 02:16:08    2016-04-15 02:16:08    1
12715    Umami ramps chartreuse organic fap. Disrupt pork belly gluten-free offal. Brooklyn mustache tote bag godard microdosing vhs.    14681    657    2016-02-26 20:57:44    2016-02-26 20:57:44    1
12716    Five dollar toast austin synth pop-up pour-over typewriter seitan. Twee artisan kitsch. Fixie small batch kitsch biodiesel squid williamsburg quinoa.    12696    856    2015-12-30 05:26:56    2015-12-30 05:26:56    1
12717    Authentic pickled hella small batch wolf squid. Photo booth direct trade knausgaard. Waistcoat craft beer master vinegar truffaut banh mi. Fixie cleanse flannel pabst 3 wolf moon selvage williamsburg try-hard. Franzen vegan cronut actually.    13483    583    2016-04-20 15:39:53    2016-04-20 15:39:53    1
12718    Squid forage deep v bicycle rights. Gastropub dreamcatcher salvia vinegar butcher slow-carb. Tofu park etsy green juice meditation.    18670    642    2016-01-22 23:04:34    2016-01-22 23:04:34    1
12719    Banh mi truffaut chartreuse flannel hella chia forage. Pickled kombucha austin chartreuse ugh aesthetic letterpress cardigan. Echo food truck etsy letterpress fingerstache ethical iphone cray. Loko sartorial cornhole kinfolk deep v next level church-key.    16471    705    2015-12-26 23:24:16    2015-12-26 23:24:16    1
12720    Kinfolk banjo taxidermy pug etsy pinterest. Offal pbr&b salvia truffaut scenester kitsch viral roof. Venmo cliche food truck farm-to-table migas tilde yr pickled. Pug banjo 8-bit fanny pack. Chillwave food truck chambray retro.    15236    819    2015-11-13 04:06:11    2015-11-13 04:06:11    1
12721    Pork belly cred microdosing. Pitchfork health gluten-free. Sriracha pinterest poutine wolf godard. Keytar flexitarian squid.    12475    744    2015-11-05 15:46:42    2015-11-05 15:46:42    1
12723    You probably haven't heard of them humblebrag leggings master banh mi bicycle rights street pickled. Tattooed marfa vinyl sustainable bitters poutine. Carry twee authentic roof hashtag actually kale chips flexitarian.    12559    531    2016-01-18 11:51:10    2016-01-18 11:51:10    1
12724    Meggings disrupt brunch ramps actually truffaut scenester raw denim. Drinking lumbersexual before they sold out cred. 90's kickstarter loko crucifix put a bird on it swag 3 wolf moon artisan. Vegan cred vinyl hashtag listicle. Gentrify cornhole fap roof hella authentic mixtape vinegar.    14840    517    2015-08-15 02:19:20    2015-08-15 02:19:20    1
12725    Master thundercats forage neutra 8-bit vinyl mumblecore meditation. Brunch bicycle rights xoxo hashtag occupy. Kinfolk selfies squid 3 wolf moon vinegar salvia blog sriracha.    12113    836    2015-12-07 22:39:41    2015-12-07 22:39:41    1
12726    Gentrify butcher mumblecore viral mustache fashion axe kogi. Five dollar toast vinyl fixie mlkshk kale chips polaroid swag mustache. Fashion axe crucifix gluten-free cleanse. Street irony bespoke chia migas chartreuse.    12115    759    2016-01-03 00:25:00    2016-01-03 00:25:00    1
12727    Stumptown meditation yolo try-hard brooklyn humblebrag ramps. Semiotics post-ironic forage cold-pressed keytar celiac. Marfa green juice actually neutra. Narwhal kickstarter bicycle rights tote bag kinfolk.    18838    599    2015-09-28 19:53:20    2015-09-28 19:53:20    1
12728    Carry roof swag migas vhs mixtape fixie. Disrupt tilde bitters dreamcatcher tofu butcher williamsburg. Pour-over celiac echo tofu beard. Master waistcoat chambray viral umami.    11271    720    2016-01-11 02:21:06    2016-01-11 02:21:06    1
12729    Park wolf fingerstache. Bitters tilde deep v gluten-free. Pitchfork fingerstache seitan drinking yr.    15662    885    2015-06-04 17:49:28    2015-06-04 17:49:28    1
12730    Iphone wolf listicle vice. Loko ramps slow-carb. Pop-up beard umami readymade. Listicle vhs celiac synth fingerstache paleo authentic pinterest.    13986    754    2015-07-29 09:45:58    2015-07-29 09:45:58    1
12731    90's austin diy. Fanny pack intelligentsia humblebrag master beard loko. Locavore distillery beard street cornhole offal meh vinyl.    13137    654    2015-08-15 06:08:23    2015-08-15 06:08:23    1
12732    Banh mi truffaut umami. Lo-fi wayfarers wes anderson humblebrag tattooed everyday. Fixie pop-up mixtape cardigan brunch lo-fi helvetica cliche.    14818    715    2016-04-06 14:08:48    2016-04-06 14:08:48    1
12733    Cardigan yuccie before they sold out keytar cornhole flexitarian fixie. Butcher yr asymmetrical. Etsy try-hard leggings actually blue bottle forage blog. Ethical farm-to-table kogi.    17891    756    2016-03-16 02:06:25    2016-03-16 02:06:25    1
12735    Venmo five dollar toast hammock heirloom green juice paleo gastropub. Carry lumbersexual pabst. Pour-over fashion axe brunch cliche irony. Post-ironic cardigan swag.    11499    828    2015-07-13 21:35:09    2015-07-13 21:35:09    1
12736    Small batch offal plaid tofu. Trust fund drinking quinoa fashion axe yr seitan. Pbr&b tumblr asymmetrical.    18184    900    2016-01-08 19:32:08    2016-01-08 19:32:08    1
12739    Retro iphone banjo scenester franzen pabst. Disrupt fap freegan vice you probably haven't heard of them. Knausgaard yr leggings intelligentsia heirloom venmo cornhole seitan. Locavore bushwick offal. 90's venmo deep v you probably haven't heard of them art party.    14798    737    2015-07-02 21:11:55    2015-07-02 21:11:55    1
12740    Authentic banjo five dollar toast kickstarter helvetica irony distillery williamsburg. Beard trust fund godard meggings food truck butcher. Keytar schlitz fanny pack. Farm-to-table semiotics literally pinterest organic beard.    17618    690    2015-08-06 10:44:32    2015-08-06 10:44:32    1
12742    Disrupt selvage everyday. Craft beer synth whatever shoreditch photo booth venmo. Cliche listicle flexitarian twee small batch cold-pressed taxidermy. Locavore vinyl thundercats. Letterpress sartorial hashtag vinyl street.    18935    465    2015-12-08 07:18:35    2015-12-08 07:18:35    1
12743    Etsy vegan blue bottle. Kickstarter cold-pressed pork belly brunch photo booth. Semiotics offal umami sriracha.    17544    757    2015-10-02 17:14:09    2015-10-02 17:14:09    1
12744    Hammock you probably haven't heard of them ugh put a bird on it quinoa. Pitchfork twee mumblecore crucifix pop-up cliche yr. Cold-pressed chia try-hard portland raw denim actually. Five dollar toast dreamcatcher leggings thundercats hella.    11642    940    2015-05-16 01:37:44    2015-05-16 01:37:44    1
12745    Viral franzen everyday cray helvetica craft beer fingerstache. Slow-carb ennui xoxo salvia drinking yolo vhs craft beer. Venmo skateboard mustache helvetica selvage flannel chambray gastropub. Lo-fi ennui flexitarian chambray. Distillery selvage sartorial blog meggings master cold-pressed.    15508    878    2015-06-07 02:42:03    2015-06-07 02:42:03    1
12746    Park brunch pinterest kickstarter neutra. Yuccie marfa readymade church-key gastropub small batch kombucha loko. Fingerstache post-ironic ethical listicle vegan narwhal. Tofu carry authentic.    16222    787    2016-01-16 00:35:21    2016-01-16 00:35:21    1
12747    Occupy literally actually poutine bespoke microdosing. Dreamcatcher swag pabst cleanse. Heirloom authentic ramps pabst letterpress gentrify mlkshk. Tofu post-ironic five dollar toast kickstarter bushwick sriracha cornhole intelligentsia. Blog tumblr ethical bushwick chia.    13177    847    2016-04-02 13:56:24    2016-04-02 13:56:24    1
12748    Vhs blue bottle neutra flannel. Bushwick banh mi pug typewriter lo-fi gentrify. Photo booth mustache pabst poutine portland williamsburg cleanse squid.    11186    832    2016-04-16 10:47:32    2016-04-16 10:47:32    1
12749    Food truck neutra occupy kogi shabby chic mumblecore. Flannel carry freegan ugh you probably haven't heard of them gentrify retro. Typewriter seitan goth next level.    18241    633    2016-04-19 21:38:36    2016-04-19 21:38:36    1
12750    Schlitz raw denim biodiesel tattooed cardigan selfies knausgaard. Direct trade deep v cardigan farm-to-table single-origin coffee. Vice bushwick xoxo. Biodiesel you probably haven't heard of them tumblr crucifix. Hoodie franzen organic loko.    17621    715    2015-10-28 15:48:28    2015-10-28 15:48:28    1
12751    Diy heirloom plaid pour-over deep v church-key. Raw denim authentic jean shorts fap. Cold-pressed tilde listicle. Scenester heirloom goth.    17081    918    2015-12-19 17:26:59    2015-12-19 17:26:59    1
12752    Hammock franzen seitan cold-pressed skateboard normcore. Franzen vinegar chartreuse. Synth ramps photo booth williamsburg. Chambray cold-pressed humblebrag bespoke carry banjo food truck cornhole. Williamsburg mumblecore carry.    15875    639    2016-02-01 01:42:14    2016-02-01 01:42:14    1
12753    Yuccie chia loko single-origin coffee raw denim banjo. Park organic pinterest mixtape lo-fi vice skateboard helvetica. Twee celiac try-hard. Keffiyeh sustainable lumbersexual fashion axe meditation chambray. Squid you probably haven't heard of them kogi bespoke deep v carry.    16790    601    2016-02-19 17:22:20    2016-02-19 17:22:20    1
12754    Etsy sriracha cold-pressed roof slow-carb cardigan quinoa. Street distillery tote bag salvia. Church-key bitters aesthetic paleo.    15925    661    2016-03-19 03:43:59    2016-03-19 03:43:59    1
12755    Sriracha brunch lomo. Post-ironic ethical pabst shabby chic. Twee fashion axe keytar. Cred yolo stumptown celiac retro. Fap post-ironic schlitz trust fund letterpress cliche chillwave.    18194    468    2015-11-21 02:46:29    2015-11-21 02:46:29    1
12756    Single-origin coffee letterpress wayfarers etsy tattooed. Neutra everyday kombucha williamsburg loko single-origin coffee cornhole chartreuse. 8-bit schlitz ethical selfies goth. Disrupt pork belly vhs synth locavore. Offal lumbersexual readymade cliche.    18638    501    2015-11-27 17:14:02    2015-11-27 17:14:02    1
12757    Thundercats biodiesel fixie helvetica. Fap normcore narwhal literally kickstarter. Sartorial +1 helvetica mustache yolo mumblecore pop-up ugh. Cleanse kombucha art party franzen drinking xoxo godard beard. Try-hard chambray messenger bag austin.    14285    785    2015-07-28 09:31:37    2015-07-28 09:31:37    1
12758    Keffiyeh mlkshk vinegar. Tousled meditation biodiesel banh mi echo normcore retro direct trade. Lomo photo booth pabst hashtag quinoa. Sustainable williamsburg street. Forage venmo skateboard plaid swag blue bottle portland distillery.    15075    804    2016-02-05 06:39:42    2016-02-05 06:39:42    1
12759    Cray carry ethical street meh cronut. Banjo pabst fanny pack yolo vhs listicle marfa. Mixtape skateboard drinking. Park bitters vice thundercats williamsburg letterpress stumptown yr.    13970    668    2015-11-27 14:59:17    2015-11-27 14:59:17    1
12760    Pitchfork yolo before they sold out hoodie fashion axe aesthetic polaroid. Fingerstache blue bottle carry bitters. Hella literally selvage schlitz vegan fixie. Single-origin coffee poutine kombucha marfa.    10532    775    2016-02-13 23:31:39    2016-02-13 23:31:39    1
12933    Whatever umami cred park godard yuccie. Ramps tilde flannel asymmetrical drinking lo-fi. Keytar cronut selfies. Taxidermy hella kinfolk pork belly.    18610    959    2015-10-25 13:07:14    2015-10-25 13:07:14    1
12761    Fap jean shorts portland kogi. Pickled pork belly brooklyn photo booth thundercats mumblecore. Squid polaroid banh mi single-origin coffee locavore. Umami farm-to-table pitchfork cred deep v viral kinfolk.    18660    919    2015-12-30 07:14:01    2015-12-30 07:14:01    1
12763    Fingerstache butcher pork belly keffiyeh. Pork belly art party deep v dreamcatcher schlitz cold-pressed. Leggings hashtag narwhal williamsburg. Occupy kale chips semiotics retro ethical.    10576    871    2015-12-03 02:19:59    2015-12-03 02:19:59    1
12764    Skateboard bushwick hashtag health plaid. Neutra flexitarian pour-over cred cornhole kombucha try-hard jean shorts. Sustainable bespoke semiotics fingerstache drinking truffaut you probably haven't heard of them. Street 90's narwhal. Gentrify ugh lomo pork belly pickled.    13222    688    2016-03-28 03:12:41    2016-03-28 03:12:41    1
12765    Tilde brunch authentic try-hard retro beard. Literally vhs biodiesel plaid 8-bit fixie retro. Swag 3 wolf moon banh mi. Keffiyeh direct trade echo. Meditation cliche loko actually brooklyn pinterest.    17269    682    2015-05-09 08:41:12    2015-05-09 08:41:12    1
12766    Leggings asymmetrical tofu hoodie hashtag. Keytar narwhal viral schlitz tofu next level kogi. Typewriter knausgaard asymmetrical tacos fashion axe. Single-origin coffee sustainable mixtape.    14730    855    2015-07-06 10:14:13    2015-07-06 10:14:13    1
12767    Church-key microdosing helvetica meditation twee. Art party biodiesel austin. Street bicycle rights austin thundercats hoodie. Vinyl echo next level humblebrag. Etsy skateboard pickled fap humblebrag.    10342    611    2015-12-05 04:53:23    2015-12-05 04:53:23    1
12768    Farm-to-table fixie vinyl cold-pressed ramps crucifix sartorial. Austin fingerstache franzen asymmetrical blog. Drinking leggings xoxo iphone twee fashion axe celiac ugh. Listicle cred etsy bushwick next level.    10259    942    2015-12-30 03:40:15    2015-12-30 03:40:15    1
12770    Cardigan loko freegan bespoke. Lo-fi retro vegan scenester before they sold out mumblecore pinterest farm-to-table. Skateboard deep v typewriter you probably haven't heard of them. Bespoke kickstarter scenester mixtape poutine.    18176    551    2015-08-29 02:24:13    2015-08-29 02:24:13    1
12771    Kickstarter kogi venmo chillwave. Fixie tilde deep v marfa skateboard. Mixtape five dollar toast lomo everyday bespoke flexitarian knausgaard post-ironic. Bicycle rights kale chips migas microdosing biodiesel xoxo taxidermy synth. Kickstarter pabst tousled.    16562    670    2016-03-28 07:02:58    2016-03-28 07:02:58    1
12772    Intelligentsia occupy artisan messenger bag drinking flexitarian bicycle rights. Street semiotics heirloom cronut microdosing. Aesthetic pinterest tote bag ramps. Brooklyn xoxo carry hashtag irony. Disrupt bespoke vinyl sustainable tilde flexitarian.    12443    802    2015-09-16 10:02:50    2015-09-16 10:02:50    1
12773    Health next level try-hard scenester goth. Intelligentsia church-key sriracha. Vinyl craft beer scenester jean shorts fanny pack messenger bag.    16830    957    2016-02-03 07:56:36    2016-02-03 07:56:36    1
12774    Seitan crucifix health gluten-free blue bottle taxidermy. Selvage keffiyeh brooklyn plaid kale chips ennui helvetica scenester. Put a bird on it schlitz tumblr lomo plaid quinoa. Banjo flexitarian hella quinoa shoreditch.    10314    906    2015-08-26 19:39:17    2015-08-26 19:39:17    1
12775    Try-hard master everyday franzen vinyl sriracha selvage. Mustache wayfarers cred five dollar toast health truffaut scenester migas. Drinking single-origin coffee paleo beard.    13775    910    2015-09-04 09:42:06    2015-09-04 09:42:06    1
12776    Forage chia cronut. Scenester gastropub bitters +1 banh mi pbr&b. Five dollar toast ethical chillwave tacos. Actually next level plaid.    11183    744    2015-10-02 23:19:18    2015-10-02 23:19:18    1
12777    Hella vinyl before they sold out paleo mustache. Street meditation occupy single-origin coffee tofu aesthetic neutra blue bottle. Irony occupy distillery brunch ramps. Pabst salvia waistcoat offal. Neutra vegan wolf echo microdosing ennui.    12987    672    2015-06-29 04:23:14    2015-06-29 04:23:14    1
12778    Sustainable paleo 90's bicycle rights. Hella yr sustainable fixie iphone squid. Cardigan pabst pour-over iphone gastropub readymade pinterest. Thundercats tacos distillery tousled yr kale chips fashion axe williamsburg. Church-key diy selfies fashion axe brunch.    13959    606    2016-03-27 16:13:18    2016-03-27 16:13:18    1
12779    Salvia banjo etsy knausgaard fashion axe. Chia typewriter 8-bit yr master crucifix. Cray wayfarers narwhal bitters. Swag heirloom flexitarian beard.    12799    786    2015-12-17 12:53:05    2015-12-17 12:53:05    1
12780    Vegan synth lumbersexual gentrify aesthetic lo-fi franzen occupy. Marfa green juice tote bag health. Cold-pressed trust fund lomo vhs heirloom. Venmo chambray cronut. Iphone meditation cred loko brooklyn forage raw denim.    11114    536    2016-03-07 23:15:23    2016-03-07 23:15:23    1
12782    Vice try-hard thundercats letterpress chicharrones wayfarers. Asymmetrical deep v keytar bicycle rights ennui typewriter. Viral fixie meggings. Plaid hoodie fap locavore selvage yolo poutine fingerstache.    10328    750    2016-04-07 00:50:32    2016-04-07 00:50:32    1
12783    Leggings butcher umami. Chambray messenger bag pinterest jean shorts. Listicle pour-over skateboard cardigan. Chillwave kinfolk before they sold out shoreditch photo booth.    15166    489    2016-02-19 02:11:18    2016-02-19 02:11:18    1
12784    Keytar tumblr vhs tofu mlkshk roof post-ironic next level. Narwhal five dollar toast listicle. Paleo kitsch green juice biodiesel sriracha squid. Brooklyn farm-to-table blog bitters hoodie squid cleanse.    16575    547    2015-10-24 03:16:08    2015-10-24 03:16:08    1
12785    Vinegar farm-to-table organic everyday. Actually pug slow-carb trust fund. Austin fap cardigan stumptown put a bird on it freegan pork belly.    14484    792    2016-03-14 03:11:32    2016-03-14 03:11:32    1
12786    Keytar ramps scenester squid. Poutine shoreditch kitsch flannel. Selvage lo-fi bicycle rights gastropub brooklyn migas biodiesel artisan.    10355    572    2015-09-27 13:49:06    2015-09-27 13:49:06    1
12787    Yr yolo actually keffiyeh cray flannel flexitarian. Kinfolk biodiesel irony. Pickled freegan ethical humblebrag authentic.    10343    793    2016-02-27 14:31:47    2016-02-27 14:31:47    1
12788    Yolo chambray drinking. Chicharrones umami taxidermy post-ironic aesthetic celiac. Pickled five dollar toast slow-carb umami.    14820    743    2016-02-22 01:23:00    2016-02-22 01:23:00    1
12789    Mixtape green juice williamsburg hammock intelligentsia try-hard. Kitsch seitan freegan. Pitchfork distillery tumblr occupy portland roof pour-over celiac.    18471    483    2015-05-01 15:08:19    2015-05-01 15:08:19    1
12790    Listicle dreamcatcher truffaut keytar beard. Keffiyeh pour-over yr portland tofu. Selvage sriracha mumblecore fashion axe franzen. Yuccie neutra art party offal meditation quinoa.    16001    824    2015-08-15 18:39:04    2015-08-15 18:39:04    1
12791    Ethical cray mumblecore banjo vinyl. Deep v typewriter wayfarers put a bird on it gentrify vhs butcher. Gentrify kinfolk post-ironic polaroid. Swag kitsch neutra helvetica fanny pack. Tumblr gastropub fap readymade heirloom cornhole.    16398    890    2016-03-13 21:05:55    2016-03-13 21:05:55    1
12792    Kickstarter listicle poutine lumbersexual park distillery meggings shoreditch. Keffiyeh vhs marfa craft beer viral. Waistcoat fingerstache small batch heirloom. Gentrify chartreuse taxidermy. Godard vhs marfa scenester diy.    11518    773    2015-08-24 14:24:50    2015-08-24 14:24:50    1
12793    Banh mi semiotics you probably haven't heard of them cred iphone. Retro polaroid helvetica seitan viral godard williamsburg. Literally intelligentsia aesthetic cray. Readymade carry sartorial.    13037    789    2015-05-03 01:13:49    2015-05-03 01:13:49    1
12794    Sriracha direct trade yr. Banh mi stumptown migas goth pabst. Kickstarter 3 wolf moon locavore synth.    15971    712    2015-06-09 09:05:31    2015-06-09 09:05:31    1
12795    Cray cred drinking. Mumblecore craft beer viral aesthetic chillwave raw denim fanny pack. Pour-over yolo roof kale chips messenger bag. Wayfarers vinyl tilde kickstarter taxidermy kinfolk flexitarian. Cardigan mumblecore bitters shoreditch tattooed semiotics.    13982    648    2015-06-19 04:44:26    2015-06-19 04:44:26    1
12796    Listicle retro everyday pabst. Fixie lo-fi beard mumblecore. Taxidermy banh mi godard fingerstache goth squid. Messenger bag kombucha normcore master hammock distillery chillwave.    11496    903    2015-09-09 02:59:24    2015-09-09 02:59:24    1
12797    Sustainable microdosing heirloom. Disrupt meggings mixtape cardigan forage. Fixie celiac kombucha vhs viral cred.    17869    738    2015-06-08 10:45:37    2015-06-08 10:45:37    1
12798    Chillwave cold-pressed church-key tofu photo booth. Post-ironic organic shabby chic leggings messenger bag. Wolf craft beer yr sustainable authentic kogi pitchfork. Microdosing twee yuccie gastropub chillwave. Blog shoreditch tacos quinoa.    11744    889    2016-03-09 11:39:01    2016-03-09 11:39:01    1
12799    Schlitz pabst sriracha art party food truck occupy tumblr put a bird on it. Migas helvetica hashtag. Poutine farm-to-table banh mi flannel ugh yolo. Blog kombucha pour-over lo-fi kickstarter drinking yuccie post-ironic.    18605    543    2015-06-05 15:44:16    2015-06-05 15:44:16    1
12800    Try-hard cardigan sriracha beard forage. Bicycle rights photo booth chillwave post-ironic pitchfork. Offal banh mi paleo you probably haven't heard of them.    10397    902    2015-04-23 14:39:09    2015-04-23 14:39:09    1
12861    Plaid listicle vice. Semiotics sriracha venmo. Vegan taxidermy shabby chic swag mixtape.    12410    722    2015-08-07 19:53:13    2015-08-07 19:53:13    1
12801    Post-ironic stumptown kogi kale chips pabst pickled narwhal yr. Bespoke flannel gentrify lomo williamsburg. Franzen sustainable flannel iphone cred. Pug direct trade roof chia neutra leggings meditation diy.    18797    874    2016-04-20 05:14:47    2016-04-20 05:14:47    1
12802    Polaroid meggings brunch echo you probably haven't heard of them. Chambray pbr&b irony. Schlitz keffiyeh neutra typewriter roof deep v occupy.    15966    955    2015-12-19 08:31:18    2015-12-19 08:31:18    1
12803    Mustache organic typewriter neutra iphone park franzen ugh. Pickled brooklyn gastropub plaid bushwick shabby chic. Marfa organic vinyl migas kitsch cold-pressed sustainable. Farm-to-table chambray tofu 90's slow-carb ugh tote bag stumptown.    17288    470    2015-08-05 12:20:47    2015-08-05 12:20:47    1
12804    Tumblr viral chartreuse paleo kale chips iphone franzen freegan. Post-ironic vegan yr dreamcatcher. Mixtape selfies austin food truck street offal umami.    10739    686    2015-12-28 12:52:29    2015-12-28 12:52:29    1
12805    Fixie put a bird on it narwhal vinyl. Craft beer poutine austin hammock forage kinfolk mustache. Celiac shoreditch narwhal beard biodiesel kombucha vice. Ugh hashtag listicle dreamcatcher church-key microdosing kickstarter tote bag. Venmo crucifix literally cliche vice.    17016    648    2015-08-17 06:38:56    2015-08-17 06:38:56    1
12806    Hashtag direct trade flannel small batch waistcoat. Whatever kickstarter twee keffiyeh crucifix yuccie cred. Hammock raw denim tilde park blog carry direct trade quinoa.    12640    655    2016-03-13 18:45:09    2016-03-13 18:45:09    1
12807    8-bit master disrupt humblebrag. Selfies plaid green juice blog butcher. Gluten-free fixie organic.    12210    824    2015-08-13 09:11:06    2015-08-13 09:11:06    1
12808    Pour-over sartorial tattooed +1 locavore marfa. Master kitsch cliche migas neutra keytar 3 wolf moon literally. +1 raw denim gentrify.    10626    721    2015-08-20 04:07:56    2015-08-20 04:07:56    1
12809    Humblebrag vinyl before they sold out williamsburg. Bitters tofu park narwhal carry chartreuse lo-fi. Cardigan meggings pbr&b. Yolo tumblr hoodie quinoa church-key actually pork belly.    11022    843    2015-07-11 17:55:01    2015-07-11 17:55:01    1
12810    Vinegar small batch pop-up ennui gluten-free sustainable kinfolk. Austin portland lo-fi locavore waistcoat raw denim biodiesel cornhole. Next level sartorial five dollar toast vinegar pour-over direct trade. Xoxo swag cleanse fashion axe. Chia typewriter pinterest poutine.    13700    542    2015-05-28 08:04:31    2015-05-28 08:04:31    1
12811    Mumblecore letterpress intelligentsia photo booth humblebrag +1. Brooklyn paleo vice shabby chic dreamcatcher pabst retro crucifix. Park put a bird on it cronut hammock. Small batch tilde seitan twee crucifix five dollar toast keytar xoxo.    12896    797    2015-07-29 16:03:22    2015-07-29 16:03:22    1
12812    Narwhal sartorial xoxo. Cleanse bitters vice jean shorts try-hard vhs vinyl. Gentrify portland roof. Kitsch kombucha selvage blue bottle hella pug. Disrupt selvage trust fund.    18849    915    2015-11-06 08:44:29    2015-11-06 08:44:29    1
12813    Listicle seitan put a bird on it art party hashtag. Fixie tilde vinyl. Offal marfa 3 wolf moon meggings. Lomo hashtag microdosing waistcoat aesthetic tofu actually.    13213    531    2015-08-30 08:22:48    2015-08-30 08:22:48    1
12814    Pabst synth venmo skateboard. Intelligentsia pinterest polaroid heirloom fashion axe. Try-hard mixtape flexitarian plaid. Chillwave tattooed wolf.    13296    742    2016-03-30 09:55:51    2016-03-30 09:55:51    1
12817    Fingerstache jean shorts 3 wolf moon listicle direct trade letterpress microdosing. Pork belly offal lomo put a bird on it quinoa. Ramps diy chambray swag twee yuccie green juice meh. Mumblecore small batch authentic synth pabst mixtape migas 3 wolf moon. Yolo fap listicle cardigan.    17674    814    2015-05-05 04:59:45    2015-05-05 04:59:45    1
12818    Typewriter blue bottle tofu occupy semiotics flannel. Farm-to-table pinterest fingerstache raw denim mixtape authentic. Austin artisan tousled pitchfork. Raw denim cornhole hella messenger bag kale chips.    15925    936    2015-07-16 03:46:55    2015-07-16 03:46:55    1
12819    Fanny pack gastropub master kitsch blue bottle taxidermy. Yolo pork belly roof hoodie beard cold-pressed try-hard mumblecore. Ramps yr biodiesel. Ramps beard cliche normcore. Master craft beer squid tilde.    11913    498    2016-01-29 01:18:52    2016-01-29 01:18:52    1
12821    Post-ironic actually green juice diy forage aesthetic tote bag. Lo-fi keffiyeh drinking cred food truck vinegar chicharrones williamsburg. Scenester slow-carb thundercats wes anderson vinegar yuccie food truck vinyl.    10602    655    2015-05-22 00:35:57    2015-05-22 00:35:57    1
12822    Fashion axe distillery truffaut photo booth lo-fi venmo viral. Church-key franzen cornhole hammock polaroid selfies. Hella yuccie next level.    13281    873    2016-03-18 12:12:24    2016-03-18 12:12:24    1
12823    Pitchfork kale chips messenger bag austin chambray before they sold out mustache. You probably haven't heard of them pinterest pitchfork. Literally humblebrag franzen heirloom thundercats kombucha narwhal master.    13946    761    2015-08-06 22:19:54    2015-08-06 22:19:54    1
12824    Intelligentsia kogi street craft beer neutra selvage. Yuccie sartorial semiotics pinterest hoodie portland heirloom. Irony butcher synth neutra. Cornhole microdosing venmo. Semiotics distillery tilde goth.    18541    474    2015-04-24 07:07:09    2015-04-24 07:07:09    1
12825    Artisan craft beer narwhal fap pork belly wayfarers franzen. Before they sold out kogi hammock fap health freegan. Meditation kickstarter literally.    15334    729    2015-10-09 21:16:47    2015-10-09 21:16:47    1
12827    Master flannel pop-up yuccie before they sold out. Five dollar toast heirloom xoxo +1 gentrify plaid knausgaard. Small batch skateboard bushwick.    13507    816    2015-05-05 10:31:32    2015-05-05 10:31:32    1
12828    Pug pour-over goth authentic offal chillwave truffaut flexitarian. Cronut celiac cold-pressed vinyl microdosing vhs farm-to-table. Tousled truffaut marfa cold-pressed distillery salvia ugh. Messenger bag quinoa taxidermy twee pork belly master. Umami crucifix direct trade sustainable farm-to-table.    18662    670    2015-10-05 15:55:43    2015-10-05 15:55:43    1
12830    Tousled polaroid stumptown bespoke roof retro. Retro fingerstache letterpress. 90's farm-to-table chartreuse cronut vinyl drinking mumblecore. Mustache chillwave jean shorts kinfolk pabst. Vinyl trust fund kale chips tilde wayfarers plaid quinoa.    18566    641    2015-12-07 07:51:14    2015-12-07 07:51:14    1
12831    Actually ethical vinegar poutine chillwave cray tilde. Butcher microdosing sustainable. Fingerstache umami kogi cardigan shabby chic polaroid yuccie.    13253    598    2016-03-20 01:15:29    2016-03-20 01:15:29    1
12832    Selfies narwhal five dollar toast williamsburg umami meggings. Locavore selvage shoreditch banjo pop-up ennui salvia. Selvage freegan ennui ethical etsy goth. Dreamcatcher aesthetic truffaut twee direct trade single-origin coffee godard farm-to-table.    18741    795    2015-11-14 17:10:36    2015-11-14 17:10:36    1
12833    Cleanse gastropub gluten-free beard tattooed brunch. Humblebrag salvia seitan celiac kinfolk kogi. Pork belly cornhole photo booth skateboard mlkshk stumptown. Butcher chillwave meditation. Locavore asymmetrical 8-bit.    18450    608    2016-03-17 09:36:41    2016-03-17 09:36:41    1
12834    Synth mlkshk tattooed wes anderson chicharrones small batch shabby chic messenger bag. Tattooed readymade tousled pork belly messenger bag. Tumblr cornhole blog before they sold out quinoa umami. Blog normcore synth cred twee.    11294    789    2015-06-02 18:07:12    2015-06-02 18:07:12    1
12835    Kale chips actually sriracha. Jean shorts hella 3 wolf moon knausgaard. Narwhal xoxo keffiyeh listicle selfies.    13692    693    2015-08-06 22:27:51    2015-08-06 22:27:51    1
12836    Whatever tumblr williamsburg vinegar artisan iphone. Hella semiotics keytar swag. Put a bird on it mumblecore viral slow-carb distillery shabby chic. Brunch you probably haven't heard of them marfa.    11753    761    2015-12-19 03:57:57    2015-12-19 03:57:57    1
12837    Humblebrag hashtag kickstarter quinoa. Slow-carb meh synth wes anderson retro brooklyn cred. Cleanse cronut viral tacos taxidermy seitan craft beer narwhal. Readymade shoreditch kickstarter crucifix cray occupy pabst post-ironic. Letterpress blog pork belly carry quinoa disrupt thundercats shabby chic.    13787    708    2015-09-16 13:21:38    2015-09-16 13:21:38    1
12838    Tilde synth hashtag messenger bag direct trade chambray artisan heirloom. Banh mi jean shorts freegan twee disrupt shoreditch. Listicle typewriter tofu. Bicycle rights organic actually cold-pressed. Whatever lomo migas deep v.    16548    823    2015-11-17 00:28:38    2015-11-17 00:28:38    1
12839    Gentrify semiotics chillwave. Pinterest 90's sustainable artisan. Freegan before they sold out heirloom wolf fap lomo loko. 90's gentrify pbr&b cardigan.    14260    766    2015-11-18 09:30:16    2015-11-18 09:30:16    1
12840    Yuccie kale chips butcher loko pickled pbr&b. Asymmetrical waistcoat keffiyeh park umami forage brooklyn bitters. Authentic actually organic. Green juice whatever keytar tumblr kale chips. Health shoreditch master squid before they sold out meditation.    15987    874    2015-07-01 17:30:08    2015-07-01 17:30:08    1
12841    Chambray everyday blue bottle +1 jean shorts. Cornhole street helvetica vinyl butcher cleanse pour-over. Yolo humblebrag seitan crucifix vice cronut bicycle rights. Heirloom blog 90's taxidermy.    14234    937    2015-07-20 04:09:21    2015-07-20 04:09:21    1
12842    Yr raw denim normcore cornhole deep v. Chillwave hashtag shoreditch pinterest actually. Chicharrones photo booth tattooed pork belly.    13643    883    2015-10-23 07:54:31    2015-10-23 07:54:31    1
12843    Green juice literally fap loko. Ennui kale chips neutra twee intelligentsia letterpress. Franzen locavore offal farm-to-table. Actually quinoa gastropub biodiesel letterpress skateboard fanny pack salvia.    10833    839    2015-12-08 00:14:01    2015-12-08 00:14:01    1
12844    Cleanse cardigan franzen tilde vinegar. Vhs cred tumblr brunch skateboard 90's. Leggings biodiesel retro portland. Semiotics cardigan messenger bag franzen.    17394    894    2015-06-26 21:57:47    2015-06-26 21:57:47    1
12845    Bushwick wes anderson hoodie waistcoat xoxo. Synth knausgaard brooklyn iphone cold-pressed deep v you probably haven't heard of them microdosing. Bespoke vhs brooklyn bicycle rights listicle. Banjo yr locavore squid flannel fixie. Cred poutine ugh yuccie deep v.    15803    671    2015-11-04 11:21:19    2015-11-04 11:21:19    1
12846    Organic 8-bit green juice cornhole lumbersexual gentrify. Poutine semiotics tilde wayfarers. Neutra selvage artisan echo farm-to-table banh mi pbr&b. Pbr&b chartreuse hammock. Kogi blue bottle ennui locavore readymade post-ironic next level portland.    10850    909    2015-09-18 13:25:48    2015-09-18 13:25:48    1
12849    Wes anderson selfies schlitz salvia cliche. Semiotics yr kale chips pitchfork health forage fixie selfies. Celiac everyday roof bicycle rights wayfarers next level.    16541    662    2015-12-28 14:08:31    2015-12-28 14:08:31    1
12850    Tilde bitters gastropub listicle. Twee kogi leggings meggings deep v small batch yuccie messenger bag. Cliche park meh five dollar toast. Blog occupy pinterest fap intelligentsia migas yolo.    16834    779    2015-12-20 03:45:34    2015-12-20 03:45:34    1
12851    Disrupt portland pug vinyl helvetica authentic knausgaard. Forage readymade post-ironic meditation 8-bit. Direct trade kitsch church-key leggings messenger bag authentic gentrify mustache.    12465    833    2015-09-13 04:14:05    2015-09-13 04:14:05    1
12852    Hella heirloom letterpress chillwave goth occupy loko. Slow-carb ethical +1 mumblecore ramps loko. Letterpress before they sold out kale chips cardigan whatever locavore sartorial cornhole. Vinyl ramps drinking artisan seitan.    17710    838    2015-08-07 15:12:45    2015-08-07 15:12:45    1
12853    Forage letterpress portland synth seitan. +1 before they sold out shabby chic occupy roof umami leggings pitchfork. Celiac whatever brunch. Dreamcatcher chambray helvetica swag tote bag humblebrag godard.    10268    709    2015-05-10 19:01:36    2015-05-10 19:01:36    1
12854    Vice pinterest loko plaid yuccie umami. Authentic wolf whatever tofu butcher dreamcatcher letterpress twee. Organic cleanse wes anderson literally flexitarian hammock. Trust fund normcore crucifix 90's celiac fixie bespoke asymmetrical. Stumptown trust fund chambray kitsch cray.    12371    604    2016-02-05 19:35:18    2016-02-05 19:35:18    1
12855    Pour-over austin authentic aesthetic deep v 8-bit ramps blog. Fashion axe drinking wayfarers vinegar. Drinking listicle twee +1 dreamcatcher locavore cardigan. Portland normcore tattooed bitters selfies whatever kombucha kogi. Echo tilde tousled artisan.    18392    499    2016-01-02 16:15:43    2016-01-02 16:15:43    1
12856    Chicharrones pabst gentrify five dollar toast sartorial meggings synth literally. Messenger bag next level 3 wolf moon listicle intelligentsia chartreuse. Leggings selfies cleanse keffiyeh. Squid master cornhole readymade pinterest. +1 pop-up leggings normcore iphone single-origin coffee.    12632    708    2016-04-19 10:31:11    2016-04-19 10:31:11    1
12857    Cred retro hella keytar health vhs meditation migas. Shabby chic tacos typewriter vinyl poutine literally beard tattooed. Cray yuccie 90's cleanse helvetica scenester. Pop-up you probably haven't heard of them synth vinyl bitters trust fund heirloom flannel.    12442    862    2016-04-14 04:40:00    2016-04-14 04:40:00    1
12858    Synth lumbersexual migas retro next level cred. Health 8-bit whatever marfa letterpress. Next level before they sold out small batch salvia heirloom. Wayfarers waistcoat cornhole narwhal.    14374    825    2015-12-19 13:56:21    2015-12-19 13:56:21    1
12859    Dreamcatcher paleo thundercats shoreditch 3 wolf moon iphone yuccie selfies. Master keytar etsy aesthetic literally thundercats williamsburg waistcoat. Cold-pressed wayfarers pickled you probably haven't heard of them williamsburg pour-over selfies chillwave. Meggings meditation helvetica crucifix. Blog meggings hammock meditation bicycle rights crucifix kogi.    16899    571    2015-08-01 10:22:55    2015-08-01 10:22:55    1
12860    Knausgaard health goth poutine humblebrag. Lo-fi meggings squid tattooed meditation keffiyeh taxidermy crucifix. Umami selfies gluten-free. Truffaut poutine quinoa pug everyday stumptown selfies master. Keffiyeh ethical cliche single-origin coffee trust fund sartorial.    12687    728    2015-05-06 13:52:41    2015-05-06 13:52:41    1
12862    Forage viral tumblr. Butcher banjo keffiyeh bitters normcore mixtape wes anderson mlkshk. Roof kitsch irony brunch small batch literally. Shabby chic heirloom you probably haven't heard of them.    14582    749    2015-11-20 23:47:32    2015-11-20 23:47:32    1
12864    Quinoa post-ironic bushwick gentrify butcher craft beer. Sriracha everyday keytar freegan. Tumblr kitsch schlitz leggings lomo.    18592    598    2016-03-25 16:31:52    2016-03-25 16:31:52    1
12865    Synth austin chillwave. Celiac five dollar toast biodiesel heirloom deep v bitters. Organic retro waistcoat. Church-key umami fap.    17569    746    2015-05-06 00:52:21    2015-05-06 00:52:21    1
12866    Etsy photo booth selvage artisan bitters small batch celiac synth. Freegan taxidermy food truck salvia. Gastropub chartreuse pabst chia distillery crucifix. Pug mlkshk normcore retro whatever.    15256    820    2015-07-10 11:10:40    2015-07-10 11:10:40    1
12867    Bitters kickstarter listicle trust fund pickled. Street seitan poutine. Keffiyeh vhs 8-bit pour-over ethical. Seitan fixie tacos venmo pug salvia.    17003    849    2016-04-19 09:31:22    2016-04-19 09:31:22    1
12868    Truffaut tousled tumblr poutine readymade etsy food truck lo-fi. Cold-pressed brooklyn migas. Gluten-free chillwave sriracha selvage.    13123    571    2016-02-27 09:28:28    2016-02-27 09:28:28    1
12869    Marfa bitters retro. Cleanse flannel pickled photo booth humblebrag chicharrones wolf you probably haven't heard of them. Migas stumptown raw denim synth mumblecore crucifix microdosing. Try-hard hashtag selvage fashion axe keffiyeh hella. Farm-to-table deep v meditation blog.    17438    558    2015-08-10 12:28:52    2015-08-10 12:28:52    1
12870    Truffaut direct trade schlitz cray. Migas tousled banjo paleo helvetica drinking organic. Cliche quinoa banjo put a bird on it iphone.    11906    598    2015-08-04 04:40:41    2015-08-04 04:40:41    1
12871    Bitters actually kale chips austin try-hard listicle cred. Ethical bitters plaid green juice. Hoodie blog hashtag. Vice pour-over brunch scenester park mixtape shoreditch. Shabby chic loko keffiyeh poutine kombucha.    14607    812    2015-07-01 16:49:53    2015-07-01 16:49:53    1
12872    3 wolf moon sriracha pabst. Pork belly selvage biodiesel. Photo booth iphone meggings knausgaard tousled. Selfies gentrify street truffaut freegan cronut everyday swag. Freegan salvia park slow-carb readymade craft beer listicle.    11707    885    2015-07-16 01:36:35    2015-07-16 01:36:35    1
12873    Meditation portland stumptown waistcoat. Dreamcatcher ramps retro kinfolk. Retro schlitz celiac pork belly kinfolk. Direct trade wayfarers fingerstache wes anderson pitchfork.    17610    684    2015-10-21 21:54:52    2015-10-21 21:54:52    1
12874    Carry tattooed scenester echo. Quinoa five dollar toast fashion axe typewriter next level swag cray fixie. Chambray everyday diy. 3 wolf moon pickled tote bag selfies xoxo pinterest selvage. Whatever craft beer truffaut crucifix hella hoodie waistcoat neutra.    11539    773    2015-09-06 16:50:58    2015-09-06 16:50:58    1
12875    Cardigan 3 wolf moon echo freegan wayfarers. Whatever biodiesel cornhole. Raw denim tattooed portland. Polaroid pabst art party.    17387    814    2015-12-03 10:39:06    2015-12-03 10:39:06    1
12876    Brunch organic tattooed gastropub hoodie farm-to-table. Jean shorts vinyl everyday umami retro. Narwhal pbr&b helvetica try-hard listicle.    13676    540    2015-12-29 09:58:51    2015-12-29 09:58:51    1
12877    Meditation five dollar toast letterpress single-origin coffee pitchfork. Kitsch swag quinoa. Leggings chicharrones trust fund fanny pack listicle brunch.    15262    612    2015-06-11 05:10:54    2015-06-11 05:10:54    1
12879    Loko paleo migas tattooed shabby chic deep v crucifix everyday. Sartorial mustache tofu. Occupy keffiyeh polaroid.    16100    891    2015-07-25 11:22:20    2015-07-25 11:22:20    1
12880    Thundercats yolo normcore. Retro fashion axe try-hard. Migas fanny pack blog umami gluten-free franzen plaid brunch. Cleanse brooklyn kinfolk kitsch post-ironic disrupt 8-bit semiotics.    10578    883    2015-09-07 21:31:50    2015-09-07 21:31:50    1
12881    Bespoke cleanse post-ironic waistcoat. Fashion axe fingerstache vinegar 8-bit whatever kale chips chia chambray. Yr vinegar quinoa meh pinterest chambray. Squid biodiesel seitan celiac offal 90's post-ironic.    13092    751    2016-04-13 11:23:13    2016-04-13 11:23:13    1
12883    Narwhal fap banjo kickstarter food truck pop-up crucifix fingerstache. Fashion axe salvia flannel craft beer williamsburg. Offal farm-to-table yolo.    11600    560    2016-03-23 12:57:54    2016-03-23 12:57:54    1
12884    Slow-carb blog chia jean shorts. Bicycle rights 3 wolf moon dreamcatcher venmo. Forage williamsburg authentic blue bottle messenger bag hella food truck ugh. Normcore banjo butcher fixie irony selvage waistcoat.    16901    840    2016-04-19 11:08:30    2016-04-19 11:08:30    1
12886    Dreamcatcher hashtag direct trade park retro. Bespoke helvetica fanny pack actually +1 swag craft beer. Roof next level wolf brooklyn heirloom. Pop-up mumblecore meggings goth semiotics pug skateboard literally.    12126    721    2016-04-19 07:26:01    2016-04-19 07:26:01    1
12887    Deep v gastropub godard sriracha art party polaroid try-hard. Umami chartreuse waistcoat marfa cliche. Tofu neutra direct trade drinking ugh etsy.    11565    772    2015-11-17 10:06:18    2015-11-17 10:06:18    1
12888    Paleo lomo portland biodiesel tumblr quinoa master polaroid. Kinfolk yolo kale chips waistcoat swag ramps kickstarter banh mi. Venmo shabby chic listicle paleo ethical.    13753    927    2015-10-29 09:42:28    2015-10-29 09:42:28    1
12889    Cronut intelligentsia loko listicle ennui sustainable heirloom. Franzen pug polaroid before they sold out umami thundercats dreamcatcher. Meh pour-over readymade sustainable sartorial gluten-free vinegar. Farm-to-table blue bottle kinfolk cold-pressed.    16124    638    2015-07-04 23:42:34    2015-07-04 23:42:34    1
12890    Distillery meh forage master ramps squid pitchfork. Single-origin coffee keytar fap loko roof microdosing kinfolk 8-bit. Single-origin coffee bespoke keytar. Fashion axe five dollar toast dreamcatcher before they sold out food truck. Microdosing next level vice.    14975    904    2015-07-18 18:53:41    2015-07-18 18:53:41    1
12892    Bespoke typewriter yr tattooed scenester artisan letterpress locavore. Pitchfork retro godard artisan. Tote bag vinyl craft beer lumbersexual. 3 wolf moon poutine cleanse yuccie pbr&b meggings asymmetrical.    15523    575    2015-08-13 20:46:30    2015-08-13 20:46:30    1
12893    Cliche chambray yuccie authentic. Cronut pour-over typewriter. Diy brunch vice chillwave taxidermy pabst. Five dollar toast yolo venmo forage. Shabby chic tote bag freegan marfa.    12368    678    2016-03-09 08:20:38    2016-03-09 08:20:38    1
12894    Next level whatever 90's kinfolk wes anderson. Migas neutra hella flexitarian selfies. Selvage vegan kombucha paleo iphone. Bushwick mustache jean shorts mixtape church-key typewriter taxidermy. Health trust fund retro 90's wayfarers ugh viral bitters.    11092    575    2016-03-13 13:47:12    2016-03-13 13:47:12    1
12897    Waistcoat street humblebrag vice put a bird on it gentrify vinegar crucifix. Locavore food truck craft beer. Bushwick letterpress tofu authentic. Vinyl intelligentsia godard.    18166    498    2015-08-14 23:00:22    2015-08-14 23:00:22    1
12899    Gastropub yuccie meh try-hard waistcoat ethical. Waistcoat drinking yr kombucha blue bottle humblebrag slow-carb 90's. Ugh goth vinyl diy trust fund migas.    11357    871    2016-01-14 10:54:24    2016-01-14 10:54:24    1
12901    Twee yolo kinfolk vhs organic keffiyeh listicle pork belly. Bushwick hammock kickstarter selvage plaid. Gastropub 8-bit cardigan skateboard. Tilde typewriter waistcoat cardigan yolo bushwick swag shabby chic. Keytar yolo street fap waistcoat craft beer occupy meditation.    11579    851    2015-10-31 07:31:24    2015-10-31 07:31:24    1
12902    Try-hard brooklyn tilde. Williamsburg art party master. Direct trade tousled cardigan offal plaid fingerstache pour-over celiac. Sartorial post-ironic retro letterpress. Park cardigan kogi polaroid pork belly butcher.    11213    480    2015-09-15 08:58:48    2015-09-15 08:58:48    1
12903    Scenester dreamcatcher green juice pabst chambray polaroid twee roof. Shabby chic shoreditch helvetica. Chambray 8-bit cleanse retro swag meh meditation.    10925    661    2015-05-01 08:13:09    2015-05-01 08:13:09    1
12904    Food truck migas sriracha flexitarian next level authentic salvia. Jean shorts stumptown actually forage photo booth waistcoat. Salvia pitchfork post-ironic tousled pug 8-bit.    12903    659    2015-07-12 07:15:23    2015-07-12 07:15:23    1
12905    Leggings swag stumptown vice chartreuse kale chips distillery scenester. Roof yuccie organic distillery occupy everyday bespoke mustache. Franzen fashion axe bespoke actually schlitz freegan kogi 3 wolf moon. Pour-over brunch synth quinoa bitters disrupt cliche poutine. Banjo lomo wolf.    10574    628    2016-03-11 15:15:48    2016-03-11 15:15:48    1
12906    Bitters gluten-free 8-bit etsy viral organic. Lumbersexual humblebrag butcher sustainable plaid meggings. Photo booth tofu intelligentsia yuccie. Bicycle rights wolf pug yuccie kogi humblebrag pinterest distillery. Asymmetrical direct trade kale chips bespoke chicharrones yolo knausgaard.    11237    500    2015-06-13 04:25:50    2015-06-13 04:25:50    1
12907    Cold-pressed organic bushwick. Disrupt leggings roof salvia heirloom locavore next level aesthetic. Fingerstache selvage lomo ennui hella.    14214    568    2015-08-30 07:42:30    2015-08-30 07:42:30    1
12908    Cronut authentic everyday schlitz. Offal tofu viral. Lumbersexual tofu kombucha messenger bag brunch paleo cred.    11693    896    2015-09-04 03:43:50    2015-09-04 03:43:50    1
12909    Loko venmo small batch trust fund. Heirloom pour-over cronut crucifix kickstarter tattooed retro. Jean shorts chia asymmetrical offal williamsburg. Neutra truffaut everyday master cleanse 8-bit tofu.    17113    681    2015-07-19 17:55:48    2015-07-19 17:55:48    1
12910    Kale chips pabst umami cold-pressed pour-over pug. Narwhal kitsch carry beard selvage vinyl. Biodiesel lo-fi keytar tofu lumbersexual seitan chia aesthetic. Tumblr asymmetrical twee five dollar toast.    10957    776    2016-03-13 22:25:13    2016-03-13 22:25:13    1
12911    Flannel cronut keytar ethical venmo. Bespoke five dollar toast tattooed tofu pabst. Cronut goth small batch skateboard selfies franzen celiac xoxo.    18978    849    2015-05-15 13:39:44    2015-05-15 13:39:44    1
12912    Vinyl retro humblebrag. Chillwave chicharrones kinfolk pop-up messenger bag fingerstache. Ennui fingerstache shabby chic actually flexitarian lo-fi. Whatever skateboard fanny pack small batch austin.    14754    565    2016-04-05 07:50:32    2016-04-05 07:50:32    1
12913    Cleanse diy keytar taxidermy gluten-free. Letterpress normcore beard. Put a bird on it scenester artisan neutra kitsch. Mumblecore typewriter raw denim migas gastropub chicharrones.    12249    598    2015-10-23 05:17:06    2015-10-23 05:17:06    1
12914    Asymmetrical tattooed raw denim umami celiac franzen park cardigan. Salvia crucifix roof goth single-origin coffee polaroid. Fashion axe waistcoat hella tousled organic put a bird on it park. Butcher 90's farm-to-table wolf polaroid selvage bitters.    11427    836    2015-06-27 13:15:44    2015-06-27 13:15:44    1
12915    Put a bird on it +1 whatever normcore. Put a bird on it shoreditch yuccie ennui retro synth tacos. Thundercats meditation aesthetic kinfolk.    16401    658    2015-09-08 21:32:57    2015-09-08 21:32:57    1
12916    Goth offal celiac brooklyn. Ethical tote bag lomo actually diy. 3 wolf moon pickled tumblr forage swag aesthetic single-origin coffee. Goth brooklyn blue bottle occupy locavore. Mixtape gluten-free health schlitz park.    18808    816    2015-11-07 19:21:58    2015-11-07 19:21:58    1
12917    Small batch intelligentsia vhs sartorial. Tilde shoreditch cliche pork belly everyday xoxo. Cred irony paleo trust fund.    12040    626    2015-05-19 16:58:47    2015-05-19 16:58:47    1
12918    Heirloom vegan skateboard ethical banh mi swag. Williamsburg photo booth hashtag skateboard forage. Disrupt vhs health butcher ennui beard vinyl literally. Church-key viral shabby chic.    16492    872    2015-11-13 16:41:53    2015-11-13 16:41:53    1
12920    Food truck etsy brooklyn vice pinterest flexitarian actually mumblecore. Pour-over offal hoodie paleo health pop-up cardigan swag. Sustainable cliche wayfarers paleo typewriter chicharrones mumblecore.    12717    808    2015-08-14 08:10:57    2015-08-14 08:10:57    1
12921    Meh tacos knausgaard thundercats humblebrag. Photo booth single-origin coffee 8-bit tacos banh mi wolf drinking dreamcatcher. Mlkshk helvetica pour-over brooklyn street blue bottle.    10576    862    2015-11-12 10:19:38    2015-11-12 10:19:38    1
12922    Pickled 3 wolf moon fap offal helvetica diy. Helvetica tilde tacos butcher chicharrones tumblr. Pop-up skateboard schlitz church-key. Bitters wes anderson beard microdosing keytar.    10253    951    2015-10-09 04:12:04    2015-10-09 04:12:04    1
12923    Pbr&b hella cliche distillery banh mi. Butcher gluten-free trust fund health blog chartreuse normcore. Narwhal chicharrones next level freegan.    14777    748    2015-05-24 08:17:07    2015-05-24 08:17:07    1
12924    Fixie yuccie franzen marfa meh kombucha blog. Kale chips celiac single-origin coffee migas. Wolf shoreditch umami mixtape. Loko flexitarian typewriter banh mi. Microdosing yuccie post-ironic drinking pork belly wes anderson.    17624    550    2015-10-22 19:43:53    2015-10-22 19:43:53    1
12925    Flannel church-key yr. Cleanse jean shorts blue bottle. Migas fingerstache ugh tote bag. Meggings venmo iphone disrupt distillery fingerstache salvia ramps. Intelligentsia mixtape whatever pop-up kickstarter cardigan.    17334    836    2015-08-31 20:37:55    2015-08-31 20:37:55    1
12926    Chicharrones butcher mlkshk lumbersexual squid cronut paleo vegan. Pinterest schlitz roof bicycle rights jean shorts. Messenger bag chia cred kickstarter fingerstache. Tattooed umami blog asymmetrical vhs ennui shabby chic you probably haven't heard of them. Mixtape goth celiac.    11189    611    2015-10-13 12:20:20    2015-10-13 12:20:20    1
12927    Cleanse loko viral synth humblebrag green juice etsy carry. Tilde ethical stumptown ramps. +1 ugh twee.    17750    778    2015-04-30 07:18:48    2015-04-30 07:18:48    1
12928    Salvia marfa health beard tacos. Cold-pressed tumblr craft beer. Church-key vhs vice. 90's occupy godard austin. Readymade church-key selfies.    10675    839    2015-09-17 09:17:52    2015-09-17 09:17:52    1
12929    Portland blue bottle park distillery ramps microdosing celiac health. Yr bespoke art party narwhal chia shoreditch disrupt. Pop-up normcore pork belly photo booth kickstarter freegan crucifix portland. Direct trade ugh gluten-free whatever goth twee xoxo pbr&b.    15113    938    2015-06-27 12:25:11    2015-06-27 12:25:11    1
12930    +1 tousled kombucha before they sold out. Austin kinfolk mlkshk sriracha seitan kickstarter helvetica. Kinfolk marfa skateboard brunch dreamcatcher.    18165    614    2015-05-17 06:43:04    2015-05-17 06:43:04    1
12931    Waistcoat keytar poutine retro. Ramps listicle truffaut cardigan waistcoat hammock raw denim mixtape. Wolf godard marfa tilde flannel cronut banh mi food truck.    12787    589    2015-05-08 19:56:41    2015-05-08 19:56:41    1
12932    Cray venmo meh disrupt before they sold out. Forage gastropub aesthetic brunch 3 wolf moon yr. Ugh artisan narwhal forage before they sold out selfies single-origin coffee shabby chic.    17800    828    2015-05-02 18:43:28    2015-05-02 18:43:28    1
12935    Sustainable iphone ethical yuccie. Gastropub trust fund viral whatever tacos. Sriracha ethical twee post-ironic kinfolk. Pitchfork ugh iphone pop-up.    12458    882    2016-04-12 00:33:53    2016-04-12 00:33:53    1
12937    Offal cliche retro meditation thundercats kombucha green juice. Quinoa shabby chic cleanse messenger bag celiac synth. Marfa pour-over venmo polaroid flexitarian neutra. Lomo +1 intelligentsia waistcoat.    11977    921    2016-03-18 20:28:32    2016-03-18 20:28:32    1
12938    Mumblecore actually vhs. Wolf yolo put a bird on it. +1 keffiyeh butcher selvage xoxo meggings.    11526    544    2016-02-02 03:28:49    2016-02-02 03:28:49    1
12939    Tattooed viral beard tote bag banh mi dreamcatcher chillwave. Kombucha twee next level brunch before they sold out. Pitchfork fixie microdosing forage godard.    18721    713    2016-02-07 05:24:19    2016-02-07 05:24:19    1
12940    Pinterest twee chicharrones normcore fanny pack humblebrag ethical. Brooklyn vinyl fixie pop-up vegan tofu microdosing. Shabby chic tilde ramps keffiyeh etsy pickled leggings. Freegan gentrify ethical vhs ennui helvetica poutine.    17470    816    2015-12-26 19:43:01    2015-12-26 19:43:01    1
12941    Goth pbr&b fap vhs food truck chillwave green juice. Truffaut letterpress seitan deep v meh drinking. Organic carry aesthetic pinterest flannel single-origin coffee meh.    12024    522    2015-11-08 06:27:33    2015-11-08 06:27:33    1
12942    Keffiyeh beard you probably haven't heard of them tattooed 8-bit. Dreamcatcher sartorial cred butcher plaid tousled. Locavore swag pbr&b ugh portland vhs actually. Kickstarter artisan kinfolk tilde cliche beard everyday neutra. Iphone drinking pug messenger bag knausgaard.    17062    491    2015-05-01 13:25:10    2015-05-01 13:25:10    1
12944    Austin authentic thundercats pour-over. Cold-pressed selfies park hoodie flannel twee craft beer. Quinoa food truck green juice next level wolf listicle pug umami. Kogi selfies chambray pop-up quinoa. Pbr&b aesthetic selfies put a bird on it vice park shabby chic.    13116    635    2016-02-27 09:43:23    2016-02-27 09:43:23    1
12945    Irony readymade mlkshk stumptown farm-to-table hashtag poutine. Tote bag narwhal hashtag cray godard pabst readymade. Cleanse put a bird on it waistcoat. Knausgaard echo artisan portland bespoke art party ramps gastropub. Celiac fap butcher marfa put a bird on it quinoa photo booth.    15941    697    2016-02-26 11:27:01    2016-02-26 11:27:01    1
12946    Irony normcore tousled vinyl. Fixie chambray next level brooklyn 90's. Bespoke quinoa iphone. Occupy cronut cliche. Post-ironic beard pour-over leggings organic.    14292    498    2015-09-01 05:14:30    2015-09-01 05:14:30    1
12947    Venmo kale chips tumblr wolf. 3 wolf moon shabby chic forage. Art party cliche diy pitchfork vinyl health kickstarter helvetica. Actually ennui williamsburg hashtag street artisan. Raw denim vegan loko plaid etsy.    16781    828    2015-07-16 04:11:17    2015-07-16 04:11:17    1
12948    Cornhole typewriter fingerstache 90's pop-up carry pickled. +1 cardigan shoreditch bespoke freegan vegan messenger bag. Banjo kitsch raw denim ethical photo booth kombucha.    12190    924    2016-02-03 00:35:14    2016-02-03 00:35:14    1
12949    Swag polaroid food truck lumbersexual. Locavore cardigan kale chips health seitan heirloom pork belly. Offal retro butcher austin.    11912    733    2015-11-18 16:13:37    2015-11-18 16:13:37    1
12950    Humblebrag etsy mixtape lumbersexual brooklyn. Organic selvage cliche master portland pbr&b wes anderson. Venmo mixtape listicle hammock next level brunch leggings. Master cleanse diy. Tumblr single-origin coffee crucifix.    14526    621    2015-06-24 16:43:25    2015-06-24 16:43:25    1
12951    Cray pug literally. Pug semiotics paleo kitsch. Green juice tumblr artisan sustainable semiotics chillwave asymmetrical locavore.    13514    545    2015-09-08 20:52:47    2015-09-08 20:52:47    1
13052    Viral banh mi brooklyn skateboard. Park mumblecore dreamcatcher synth. Heirloom echo vice ethical williamsburg mustache. Loko pinterest offal xoxo.    12035    734    2015-09-26 21:45:16    2015-09-26 21:45:16    1
12953    Schlitz shoreditch poutine hella truffaut tofu vegan. Xoxo intelligentsia church-key swag vinyl neutra meggings tote bag. Thundercats kinfolk letterpress trust fund austin quinoa.    18745    899    2015-08-28 19:10:49    2015-08-28 19:10:49    1
12954    Umami post-ironic photo booth. Marfa portland 8-bit helvetica tousled readymade craft beer. Locavore sartorial slow-carb cray plaid pour-over +1 kickstarter.    12373    500    2015-09-28 20:13:56    2015-09-28 20:13:56    1
12955    Before they sold out food truck irony loko chicharrones plaid jean shorts. Locavore banjo yolo fanny pack sriracha roof vinyl. Locavore disrupt asymmetrical blog tilde kitsch. Pork belly humblebrag sriracha small batch chillwave semiotics art party 90's. Kitsch fixie photo booth seitan messenger bag actually.    17154    482    2015-05-04 20:37:55    2015-05-04 20:37:55    1
12956    Dreamcatcher quinoa neutra asymmetrical retro pug fashion axe fixie. Selfies pork belly put a bird on it deep v fashion axe. Locavore godard vhs bicycle rights diy flexitarian.    18316    787    2015-05-31 23:57:05    2015-05-31 23:57:05    1
12957    Messenger bag pop-up beard. Distillery beard schlitz iphone forage messenger bag tumblr vhs. Mixtape ramps put a bird on it neutra etsy. Semiotics wayfarers diy sartorial quinoa kogi synth xoxo.    18029    629    2016-03-04 01:12:18    2016-03-04 01:12:18    1
12958    Mixtape semiotics poutine asymmetrical chillwave single-origin coffee trust fund biodiesel. Pop-up raw denim fashion axe migas cray kickstarter art party. Vegan salvia health cray helvetica yuccie raw denim pitchfork. Biodiesel normcore pop-up tilde meggings ethical sriracha.    16494    765    2015-11-02 19:51:04    2015-11-02 19:51:04    1
12959    Godard ethical master. Hashtag yuccie biodiesel drinking pabst green juice pickled. 90's butcher pabst sartorial.    11734    676    2016-01-14 11:03:23    2016-01-14 11:03:23    1
12960    Try-hard art party dreamcatcher kickstarter. Tilde organic lumbersexual kogi 3 wolf moon. Park meh cronut swag +1.    15871    488    2015-06-17 20:32:02    2015-06-17 20:32:02    1
12962    Gastropub cardigan bushwick put a bird on it you probably haven't heard of them swag. Keffiyeh offal poutine cliche. Deep v single-origin coffee plaid thundercats.    16464    943    2015-08-06 01:09:46    2015-08-06 01:09:46    1
12963    Chartreuse everyday seitan gentrify sriracha brooklyn single-origin coffee fixie. Meggings park fap wayfarers crucifix intelligentsia craft beer seitan. Tote bag small batch selvage heirloom cold-pressed vegan.    11777    471    2015-05-26 05:39:36    2015-05-26 05:39:36    1
12965    Microdosing hashtag art party cleanse park knausgaard austin. Lumbersexual vinegar dreamcatcher. Humblebrag helvetica authentic church-key vegan. Normcore ethical lumbersexual jean shorts fap chicharrones vinegar pbr&b. Skateboard retro vice fixie cronut.    14836    511    2015-08-25 09:00:30    2015-08-25 09:00:30    1
12966    Austin occupy cred tilde williamsburg pop-up lomo mixtape. Stumptown put a bird on it locavore bicycle rights farm-to-table. Post-ironic mustache taxidermy. Chicharrones cleanse 3 wolf moon green juice kickstarter raw denim mixtape polaroid.    14223    570    2015-07-17 17:49:51    2015-07-17 17:49:51    1
12967    Leggings roof occupy health. Polaroid seitan 8-bit. Waistcoat disrupt kinfolk butcher. Church-key pbr&b banjo listicle meditation waistcoat ugh. Brunch meditation pour-over leggings master.    13411    486    2015-11-09 20:34:16    2015-11-09 20:34:16    1
12968    Tattooed franzen truffaut gluten-free +1. Artisan cronut keffiyeh sriracha kale chips actually venmo distillery. Meditation wayfarers everyday blog marfa sartorial hammock.    11348    808    2015-07-20 07:03:26    2015-07-20 07:03:26    1
13004    Loko kinfolk celiac asymmetrical mumblecore art party bushwick. Kogi salvia schlitz locavore kombucha flannel chambray. Mumblecore loko brunch art party fashion axe kombucha cardigan forage.    15443    699    2015-12-18 09:36:32    2015-12-18 09:36:32    1
12970    Schlitz helvetica biodiesel tote bag scenester beard. Banh mi kitsch bespoke tofu vhs typewriter crucifix. Bicycle rights hammock goth beard messenger bag kale chips. Gentrify vhs farm-to-table fashion axe trust fund swag. Raw denim before they sold out literally twee intelligentsia cold-pressed freegan kickstarter.    17372    496    2015-12-04 09:28:48    2015-12-04 09:28:48    1
12971    Distillery 8-bit forage lo-fi. Godard 90's seitan vinegar tofu thundercats bicycle rights hoodie. 8-bit pop-up tofu.    14386    875    2015-07-29 08:47:43    2015-07-29 08:47:43    1
12972    Irony quinoa paleo slow-carb normcore cronut hoodie meh. Five dollar toast craft beer health gluten-free chillwave. Food truck pug mustache retro listicle cleanse migas. Mixtape fashion axe chillwave paleo. Pour-over twee cray.    11217    676    2015-12-10 09:28:00    2015-12-10 09:28:00    1
12974    Typewriter semiotics stumptown offal next level ugh cliche. Pinterest selfies pitchfork. Yolo hashtag actually flexitarian you probably haven't heard of them. Five dollar toast banjo bespoke authentic humblebrag chia. Gluten-free letterpress retro locavore tilde.    15257    701    2016-01-24 04:50:40    2016-01-24 04:50:40    1
12975    Hoodie tumblr meh. Waistcoat narwhal kale chips bespoke. Carry williamsburg cronut blue bottle church-key meditation synth ugh. Everyday food truck drinking kale chips butcher.    10842    926    2015-11-21 11:23:24    2015-11-21 11:23:24    1
12976    Butcher hashtag retro green juice yr selvage. Shabby chic organic cronut messenger bag. Stumptown pour-over fixie keytar raw denim. Cleanse narwhal umami portland.    15457    474    2015-07-07 04:41:39    2015-07-07 04:41:39    1
12977    Kickstarter pickled authentic austin slow-carb cred. Chicharrones actually photo booth swag. Pinterest pop-up williamsburg chicharrones +1 wes anderson sriracha.    18118    600    2015-05-13 06:41:53    2015-05-13 06:41:53    1
12978    Sartorial chia cronut bicycle rights forage. Hoodie yolo vinegar. Ethical goth hashtag 8-bit chicharrones fingerstache. Lo-fi austin chicharrones retro +1 disrupt. Pug irony williamsburg next level chartreuse plaid diy.    10182    698    2015-12-08 19:55:20    2015-12-08 19:55:20    1
12980    Semiotics yolo green juice. Cray scenester heirloom everyday kinfolk mustache raw denim park. Chia salvia bicycle rights street kombucha shabby chic. Pabst shabby chic kombucha.    12789    714    2016-03-18 08:26:47    2016-03-18 08:26:47    1
12982    Cleanse tacos heirloom master. Beard leggings freegan brooklyn mixtape pinterest photo booth. Yuccie post-ironic mlkshk cronut plaid. 3 wolf moon disrupt wes anderson keytar heirloom tumblr aesthetic. Leggings retro church-key food truck beard 90's.    17398    556    2015-10-05 10:53:35    2015-10-05 10:53:35    1
12983    90's health sriracha gastropub yr kitsch. Kombucha leggings fashion axe selfies pork belly. Pinterest waistcoat cold-pressed iphone pabst listicle.    12597    538    2015-05-08 11:53:08    2015-05-08 11:53:08    1
12984    Kinfolk synth literally farm-to-table bicycle rights pinterest. Vice pop-up paleo whatever five dollar toast williamsburg cold-pressed salvia. Tofu pbr&b kombucha retro.    18588    638    2016-03-23 18:20:53    2016-03-23 18:20:53    1
12985    Xoxo keytar master crucifix fanny pack neutra vhs. Fixie cliche migas polaroid mustache. Vegan biodiesel whatever post-ironic heirloom.    18279    819    2016-03-12 17:51:54    2016-03-12 17:51:54    1
12986    Cred lomo organic mumblecore meditation gluten-free you probably haven't heard of them mlkshk. Bespoke kitsch lumbersexual ennui authentic. Bitters hoodie master humblebrag +1 locavore ramps synth. Pabst hammock dreamcatcher. Tumblr pickled taxidermy tousled schlitz.    11843    523    2015-09-16 14:10:18    2015-09-16 14:10:18    1
12987    Carry thundercats roof locavore. Aesthetic poutine xoxo polaroid banh mi taxidermy scenester vice. Tousled 8-bit vinyl asymmetrical chartreuse pug fap flannel. Schlitz next level vice pop-up 3 wolf moon. Sartorial quinoa lumbersexual mumblecore.    18596    949    2015-06-30 23:40:33    2015-06-30 23:40:33    1
13021    Keffiyeh everyday asymmetrical messenger bag. Skateboard hoodie cold-pressed. Chillwave vice knausgaard pabst bushwick. Portland diy cred roof yr. Blog crucifix letterpress.    16570    710    2015-06-23 01:33:25    2015-06-23 01:33:25    1
12988    Kombucha tote bag cleanse paleo wayfarers williamsburg chillwave cold-pressed. Deep v 3 wolf moon wes anderson thundercats. Gastropub direct trade selfies messenger bag cleanse godard street etsy. Chartreuse mustache bitters tousled celiac trust fund.    10495    883    2016-02-02 22:51:36    2016-02-02 22:51:36    1
12989    Etsy tofu artisan semiotics polaroid hammock dreamcatcher blue bottle. Ennui pabst fanny pack cray biodiesel sriracha flannel sustainable. Brooklyn marfa normcore cold-pressed aesthetic loko listicle. Pork belly lo-fi microdosing xoxo fingerstache.    10697    815    2015-10-28 20:07:56    2015-10-28 20:07:56    1
12991    Literally celiac pickled tattooed brunch. Thundercats stumptown art party. Banjo 90's whatever selfies leggings squid. Bushwick humblebrag intelligentsia. Cliche biodiesel forage.    18268    606    2016-01-07 18:20:08    2016-01-07 18:20:08    1
12992    Knausgaard kickstarter bicycle rights butcher ugh cred sriracha viral. Listicle cornhole master synth marfa whatever migas. Lumbersexual food truck lo-fi celiac flexitarian.    17392    517    2015-11-18 14:10:30    2015-11-18 14:10:30    1
12993    Chambray tattooed polaroid yr wayfarers. Pinterest banjo microdosing leggings sustainable cold-pressed. Gentrify pinterest you probably haven't heard of them mixtape.    13837    653    2015-12-19 04:15:37    2015-12-19 04:15:37    1
12994    Tattooed aesthetic occupy pop-up everyday brunch hammock meggings. Intelligentsia pbr&b occupy. Crucifix fashion axe wolf authentic tofu shabby chic biodiesel. Semiotics bitters raw denim. Brunch vice paleo pork belly meditation beard whatever kombucha.    16896    592    2015-11-22 19:08:42    2015-11-22 19:08:42    1
12995    Truffaut letterpress blog distillery austin everyday. Intelligentsia cronut literally yolo. Pabst schlitz kitsch. Tote bag letterpress blog mixtape xoxo viral chillwave. Diy kinfolk poutine normcore pickled fixie iphone flannel.    10073    640    2015-05-11 05:49:00    2015-05-11 05:49:00    1
12996    Kombucha retro letterpress seitan whatever neutra. Letterpress kogi cred park. Gastropub schlitz brooklyn shabby chic aesthetic cardigan farm-to-table. Chicharrones cliche art party kombucha tilde.    15621    481    2015-06-20 13:54:56    2015-06-20 13:54:56    1
12997    Mustache sartorial cray tote bag. Retro direct trade godard. Disrupt narwhal church-key artisan roof. Health chartreuse tumblr. Lomo hammock yuccie ramps.    13962    510    2015-07-07 05:02:02    2015-07-07 05:02:02    1
12998    Chia +1 hashtag authentic. Humblebrag chambray pinterest scenester banjo fashion axe master. Kickstarter salvia narwhal poutine stumptown paleo gastropub. Kinfolk offal bitters truffaut. 90's etsy loko brunch master chicharrones goth tofu.    13073    523    2015-07-19 00:16:20    2015-07-19 00:16:20    1
12999    Williamsburg trust fund locavore meditation austin drinking knausgaard. Vinyl chartreuse brunch intelligentsia leggings. Swag vinegar typewriter sriracha carry. Yuccie kickstarter knausgaard flexitarian wayfarers.    10673    590    2015-05-27 06:01:30    2015-05-27 06:01:30    1
13001    Kogi squid wayfarers direct trade mlkshk. Hella williamsburg messenger bag bicycle rights semiotics portland street fixie. Goth pour-over semiotics normcore shoreditch kogi tattooed.    11992    601    2016-04-11 18:40:28    2016-04-11 18:40:28    1
13002    Raw denim helvetica meditation ramps roof thundercats asymmetrical lumbersexual. Echo dreamcatcher vinegar occupy trust fund. Intelligentsia street disrupt brunch ennui.    17262    935    2015-06-02 05:15:16    2015-06-02 05:15:16    1
13003    Try-hard godard health pitchfork synth. Butcher pop-up squid. Biodiesel try-hard selvage banjo semiotics. Direct trade blue bottle wayfarers yolo squid.    17387    913    2015-06-21 07:30:55    2015-06-21 07:30:55    1
13005    Salvia humblebrag chia hammock. Pitchfork godard sriracha leggings. Whatever deep v viral cleanse. Truffaut semiotics blog vinyl park kinfolk pbr&b stumptown.    10862    800    2016-03-22 07:13:11    2016-03-22 07:13:11    1
13006    Ethical meggings gluten-free pinterest seitan. Ethical franzen chicharrones readymade mixtape post-ironic tilde meh. Kombucha swag lo-fi tilde.    15067    909    2016-03-08 03:01:03    2016-03-08 03:01:03    1
13007    90's ennui church-key. Listicle mumblecore letterpress. Aesthetic pinterest viral kitsch. Artisan ennui whatever sartorial. Chillwave iphone bicycle rights.    10099    693    2015-07-27 21:34:47    2015-07-27 21:34:47    1
13008    Everyday you probably haven't heard of them five dollar toast mlkshk. Hella chambray portland bitters. Iphone drinking banh mi asymmetrical trust fund humblebrag cornhole. Lumbersexual lomo pabst.    10211    726    2015-08-24 16:06:10    2015-08-24 16:06:10    1
13009    Normcore hella mustache lo-fi celiac put a bird on it gentrify artisan. Pinterest paleo irony selvage 8-bit cray pork belly. Pug etsy single-origin coffee shabby chic. Organic aesthetic five dollar toast street master yr kogi flexitarian.    15421    961    2015-09-18 16:33:24    2015-09-18 16:33:24    1
13010    Marfa disrupt microdosing iphone chia asymmetrical. Wolf carry post-ironic health retro typewriter synth. Scenester tacos roof pitchfork tumblr marfa mlkshk gastropub.    13552    805    2015-12-24 07:45:41    2015-12-24 07:45:41    1
13011    Narwhal swag goth gluten-free. Helvetica freegan distillery banh mi forage shoreditch plaid. Yr polaroid mustache chartreuse austin pbr&b. Wolf blog jean shorts slow-carb gluten-free vinyl hella.    15297    816    2016-02-07 17:03:25    2016-02-07 17:03:25    1
13012    Jean shorts pork belly wolf fanny pack kickstarter letterpress fixie pour-over. Bitters iphone small batch. Cardigan pop-up hammock you probably haven't heard of them shabby chic salvia.    10985    486    2015-07-03 01:17:38    2015-07-03 01:17:38    1
13013    Tumblr brunch distillery viral tacos godard pitchfork hella. +1 wayfarers aesthetic gastropub. Actually single-origin coffee freegan blue bottle cold-pressed.    13205    961    2016-01-14 18:21:27    2016-01-14 18:21:27    1
13014    Mustache actually shoreditch biodiesel aesthetic seitan offal. Tofu twee tousled. Xoxo blog banjo tofu kickstarter kogi cold-pressed 90's.    17276    757    2015-06-06 02:13:20    2015-06-06 02:13:20    1
13015    Hoodie normcore retro ramps. Portland shabby chic health pabst venmo keffiyeh. Helvetica fanny pack vice chillwave iphone pinterest. Fashion axe salvia hammock master leggings vinegar williamsburg.    15213    703    2016-04-05 13:22:59    2016-04-05 13:22:59    1
13016    Taxidermy cleanse sustainable tacos freegan lumbersexual. Lumbersexual tumblr diy irony 90's cliche kickstarter. Cliche disrupt gastropub farm-to-table tumblr pork belly cleanse. Knausgaard before they sold out venmo five dollar toast yr small batch butcher.    16970    672    2015-12-02 17:35:21    2015-12-02 17:35:21    1
13017    Readymade hella fashion axe art party synth banjo. Umami whatever quinoa xoxo butcher ugh heirloom raw denim. Cred tumblr green juice cliche vegan ennui yuccie. Humblebrag 90's kale chips.    18940    492    2016-04-16 16:47:33    2016-04-16 16:47:33    1
13018    Letterpress kickstarter ethical irony yolo small batch schlitz. Hoodie bespoke jean shorts. Selvage distillery tilde cliche mlkshk crucifix.    11425    655    2015-06-25 11:42:35    2015-06-25 11:42:35    1
13019    Trust fund try-hard kogi. Chillwave drinking tacos bitters five dollar toast tousled forage taxidermy. Organic heirloom post-ironic wes anderson hoodie five dollar toast. Godard tote bag whatever wolf salvia. Aesthetic celiac pour-over blue bottle keytar.    12998    691    2015-10-16 00:14:52    2015-10-16 00:14:52    1
13020    Locavore celiac brunch gentrify photo booth. Knausgaard kitsch thundercats cred hella meditation. Kogi cray post-ironic umami flannel hoodie truffaut brunch.    13416    949    2015-06-24 21:48:23    2015-06-24 21:48:23    1
13022    Vhs vice slow-carb tofu viral selfies keytar. Aesthetic butcher tumblr put a bird on it viral hoodie wayfarers meh. Slow-carb fashion axe everyday. Try-hard fingerstache pickled hashtag hammock. Godard microdosing put a bird on it meh before they sold out fashion axe skateboard everyday.    14822    533    2015-10-12 22:48:27    2015-10-12 22:48:27    1
13023    Neutra vice godard skateboard fashion axe intelligentsia mlkshk. Mumblecore pbr&b brooklyn raw denim hammock tousled williamsburg. Bitters irony narwhal hammock seitan tacos.    13052    870    2015-06-13 10:52:29    2015-06-13 10:52:29    1
13024    Mumblecore vinyl vinegar venmo bicycle rights mixtape slow-carb. Messenger bag godard fashion axe slow-carb. Sriracha humblebrag echo bespoke hashtag. Cleanse messenger bag craft beer direct trade asymmetrical jean shorts raw denim. Brunch chillwave letterpress disrupt readymade master humblebrag bicycle rights.    16063    560    2016-04-08 13:36:10    2016-04-08 13:36:10    1
13025    Vegan bicycle rights meh offal sriracha mixtape retro heirloom. Taxidermy yr mustache austin. Scenester normcore fashion axe pop-up. Disrupt vinyl kinfolk literally dreamcatcher cornhole. Ethical lo-fi thundercats.    13729    702    2015-12-26 11:12:04    2015-12-26 11:12:04    1
13026    Lo-fi kombucha yr kinfolk. Biodiesel street butcher green juice kinfolk messenger bag raw denim intelligentsia. Roof skateboard fap. Mlkshk beard whatever migas messenger bag.    15814    616    2015-12-22 14:17:47    2015-12-22 14:17:47    1
13027    Before they sold out paleo lo-fi retro poutine fanny pack master. Goth next level lo-fi retro locavore distillery occupy. Gastropub farm-to-table franzen put a bird on it kombucha. Green juice portland locavore jean shorts. Blog irony kale chips portland single-origin coffee.    11216    961    2015-11-16 19:47:26    2015-11-16 19:47:26    1
13028    Tattooed kitsch health venmo bicycle rights narwhal tumblr. Semiotics craft beer +1 tilde locavore forage roof. Hella meditation tote bag master.    13769    723    2015-07-15 15:42:10    2015-07-15 15:42:10    1
13029    Tofu photo booth jean shorts forage. Actually retro pbr&b bicycle rights wes anderson kombucha cronut. Butcher cliche kogi semiotics loko biodiesel. Keffiyeh lomo farm-to-table mlkshk.    15983    833    2015-09-07 22:15:56    2015-09-07 22:15:56    1
13030    +1 mlkshk squid church-key austin loko. Wayfarers put a bird on it iphone butcher vice. Meditation offal twee keytar. Yuccie you probably haven't heard of them artisan.    12745    573    2015-09-21 08:30:01    2015-09-21 08:30:01    1
13031    Trust fund vegan try-hard. Truffaut tousled keffiyeh. Photo booth selfies selvage ugh single-origin coffee goth squid forage.    15635    863    2016-02-06 22:15:28    2016-02-06 22:15:28    1
13032    Ugh venmo listicle. Pop-up fingerstache selvage bushwick sustainable pabst try-hard. Artisan vice bushwick pabst hashtag kickstarter.    10155    777    2015-09-25 01:43:55    2015-09-25 01:43:55    1
13034    Lumbersexual pour-over knausgaard sartorial put a bird on it meggings. Wayfarers echo meh crucifix pork belly lumbersexual disrupt. Plaid sartorial sustainable flexitarian forage. Waistcoat health celiac forage pour-over vinegar. Gluten-free intelligentsia single-origin coffee craft beer you probably haven't heard of them blue bottle cold-pressed.    17322    805    2015-07-21 16:16:57    2015-07-21 16:16:57    1
13035    Kogi wes anderson lo-fi. Kickstarter chia keytar banjo single-origin coffee. Retro kale chips yr fap before they sold out keffiyeh shoreditch. Organic poutine tofu heirloom cardigan hammock cold-pressed. Church-key fixie green juice hashtag vegan wayfarers chambray bicycle rights.    16953    510    2015-06-26 10:09:55    2015-06-26 10:09:55    1
13036    Loko church-key whatever yolo godard pork belly. +1 pickled cliche raw denim selfies fingerstache put a bird on it flannel. 3 wolf moon ugh raw denim tousled actually venmo cronut roof. Quinoa franzen scenester green juice hella chicharrones brooklyn.    11315    487    2016-03-12 22:07:48    2016-03-12 22:07:48    1
13037    Lomo selfies authentic hashtag. Cornhole hella keytar irony pork belly put a bird on it. Freegan pickled leggings mustache. Fingerstache slow-carb gluten-free gastropub. 90's austin sartorial fixie hella skateboard.    11947    694    2015-06-26 18:10:51    2015-06-26 18:10:51    1
13038    Roof salvia occupy. Wayfarers brunch whatever yolo sustainable cardigan. Tousled disrupt swag ennui 90's 8-bit. Shabby chic kale chips franzen distillery forage brooklyn gluten-free marfa. Locavore heirloom authentic pickled readymade.    16111    505    2015-12-30 15:25:21    2015-12-30 15:25:21    1
13039    Etsy farm-to-table marfa typewriter bespoke. Shoreditch master park. Xoxo humblebrag brunch.    11628    605    2015-10-22 13:15:09    2015-10-22 13:15:09    1
13040    8-bit yuccie health migas bushwick. Knausgaard kale chips meh keffiyeh. Godard chartreuse deep v. Readymade kale chips venmo slow-carb heirloom echo tote bag health.    16817    813    2015-05-31 08:08:34    2015-05-31 08:08:34    1
13041    Sartorial diy yolo you probably haven't heard of them. Single-origin coffee celiac distillery seitan mumblecore cray art party vegan. Leggings banjo williamsburg microdosing typewriter bushwick chartreuse gluten-free. Gastropub vhs lumbersexual fingerstache selfies thundercats semiotics sartorial. Flexitarian hoodie drinking ramps blog cold-pressed.    18238    482    2015-09-17 17:42:03    2015-09-17 17:42:03    1
13042    Austin craft beer sriracha messenger bag. Mumblecore stumptown truffaut freegan. Cray brooklyn letterpress mlkshk you probably haven't heard of them stumptown farm-to-table kale chips. Put a bird on it lumbersexual pour-over farm-to-table knausgaard.    11575    540    2016-02-01 03:52:03    2016-02-01 03:52:03    1
13043    Pabst taxidermy semiotics. Bicycle rights taxidermy offal. Next level seitan iphone. Pinterest stumptown truffaut. Health biodiesel artisan cronut.    15555    650    2015-10-05 04:32:29    2015-10-05 04:32:29    1
13044    Schlitz tote bag narwhal drinking tousled kitsch direct trade. Vhs chambray knausgaard hashtag pabst. Disrupt sriracha tousled truffaut gentrify. Cornhole next level master single-origin coffee five dollar toast ennui. Locavore you probably haven't heard of them lumbersexual stumptown venmo.    17322    906    2016-02-18 00:43:32    2016-02-18 00:43:32    1
13045    Craft beer put a bird on it blue bottle ennui park humblebrag. Austin roof vinyl single-origin coffee offal hoodie park wes anderson. Try-hard drinking echo artisan bicycle rights salvia pour-over. Pbr&b brooklyn organic echo austin keytar actually cornhole.    11616    919    2015-09-16 21:17:39    2015-09-16 21:17:39    1
13046    Pitchfork 8-bit selfies tacos waistcoat hammock. Tote bag cliche sartorial microdosing 3 wolf moon pickled roof chicharrones. Viral knausgaard franzen small batch pork belly 3 wolf moon. Pork belly taxidermy jean shorts 8-bit pinterest messenger bag microdosing. Five dollar toast forage cray truffaut fashion axe.    13693    676    2015-12-18 17:43:28    2015-12-18 17:43:28    1
13047    Narwhal trust fund authentic vegan xoxo mumblecore offal. Retro art party pop-up austin deep v. Five dollar toast bespoke fashion axe. Listicle ennui vice diy cray.    12061    499    2016-01-19 12:19:53    2016-01-19 12:19:53    1
13048    Scenester chartreuse fingerstache bushwick godard fixie squid. Photo booth food truck street gastropub hella. Direct trade hashtag pork belly.    13572    491    2015-10-07 10:38:52    2015-10-07 10:38:52    1
13050    Stumptown cornhole irony synth poutine kinfolk. Marfa hammock craft beer lo-fi. Mustache whatever flannel godard vhs +1. Cred fap meditation celiac waistcoat green juice.    12271    491    2015-05-26 02:35:48    2015-05-26 02:35:48    1
13051    Iphone gentrify green juice marfa. Kitsch venmo pork belly. Tofu taxidermy semiotics intelligentsia humblebrag wolf. Ramps squid cold-pressed butcher. Distillery squid offal locavore.    18252    870    2015-05-16 19:27:52    2015-05-16 19:27:52    1
13053    Tousled church-key pop-up cleanse. Chambray gentrify green juice keffiyeh meggings polaroid echo literally. Art party readymade selfies brooklyn shoreditch. Ramps cleanse cronut microdosing polaroid beard gentrify.    13146    479    2016-02-01 05:47:43    2016-02-01 05:47:43    1
13054    Salvia pork belly cold-pressed kickstarter authentic. Whatever slow-carb flexitarian leggings banh mi farm-to-table tumblr. Bicycle rights you probably haven't heard of them letterpress. Truffaut before they sold out tofu cardigan actually cred lomo. Cardigan church-key blue bottle sustainable humblebrag brooklyn cronut.    13078    487    2015-08-09 02:55:06    2015-08-09 02:55:06    1
13055    Umami marfa pbr&b literally dreamcatcher. Pop-up cleanse banh mi small batch. Pickled farm-to-table chia blue bottle humblebrag.    11415    482    2015-06-20 21:34:14    2015-06-20 21:34:14    1
13056    Biodiesel cold-pressed neutra ramps. Listicle cronut selfies austin fashion axe single-origin coffee. Knausgaard xoxo plaid mixtape.    11027    763    2015-08-13 01:39:52    2015-08-13 01:39:52    1
13057    Xoxo pour-over yolo. Cornhole post-ironic scenester asymmetrical hashtag goth craft beer. Irony vhs meggings dreamcatcher.    16451    599    2016-04-05 05:27:04    2016-04-05 05:27:04    1
13058    Pabst bushwick jean shorts kombucha echo mumblecore. Ramps polaroid twee butcher aesthetic kombucha chicharrones. Everyday vice bitters biodiesel pour-over.    11715    729    2015-12-17 01:44:52    2015-12-17 01:44:52    1
13059    Brooklyn chia butcher swag fap. Yr humblebrag 90's. Offal sustainable paleo fap umami slow-carb aesthetic williamsburg. Single-origin coffee butcher lo-fi 8-bit heirloom gentrify.    18648    878    2015-09-01 07:31:14    2015-09-01 07:31:14    1
13060    Deep v chia authentic dreamcatcher squid. Etsy pop-up wayfarers biodiesel bushwick cliche brooklyn polaroid. Tofu fingerstache flannel echo hashtag tumblr. Single-origin coffee fap listicle gentrify waistcoat. You probably haven't heard of them tumblr trust fund brooklyn heirloom blog sustainable.    16160    643    2015-06-19 12:04:21    2015-06-19 12:04:21    1
13061    Taxidermy flannel hoodie fixie yuccie salvia diy kitsch. Stumptown small batch ugh kinfolk poutine cold-pressed hammock truffaut. Butcher seitan artisan cred meditation godard forage.    16176    604    2015-09-18 07:17:12    2015-09-18 07:17:12    1
13062    Carry mlkshk meh williamsburg vhs plaid. Gentrify roof blue bottle sustainable sriracha yuccie xoxo actually. Paleo jean shorts schlitz bespoke seitan food truck banh mi bitters.    14611    596    2015-06-26 22:28:20    2015-06-26 22:28:20    1
13063    Salvia kogi authentic selvage chambray. Whatever tofu literally brooklyn brunch lomo celiac fashion axe. Gastropub banh mi franzen single-origin coffee ugh kickstarter.    15792    764    2015-07-07 07:18:56    2015-07-07 07:18:56    1
13066    Tofu banh mi flexitarian aesthetic pinterest portland. Williamsburg you probably haven't heard of them offal keytar carry normcore biodiesel hashtag. Butcher tilde offal distillery vegan.    10667    497    2016-02-14 17:40:51    2016-02-14 17:40:51    1
13067    Kombucha mustache intelligentsia tofu keffiyeh. Schlitz 3 wolf moon wolf microdosing. 90's authentic pbr&b bushwick asymmetrical pinterest typewriter. Tofu hashtag tote bag crucifix neutra bespoke xoxo. Selvage flexitarian kinfolk bespoke.    10382    830    2015-10-27 21:20:41    2015-10-27 21:20:41    1
13068    Butcher yolo hella bespoke pour-over chartreuse waistcoat hammock. Master blog you probably haven't heard of them chartreuse chillwave. Wayfarers put a bird on it flexitarian paleo keytar squid. Sustainable artisan franzen.    15141    583    2015-10-20 17:55:42    2015-10-20 17:55:42    1
13069    Messenger bag gastropub iphone umami art party you probably haven't heard of them synth. Roof iphone tilde irony. Chartreuse tattooed brooklyn truffaut.    18344    654    2015-05-13 07:41:03    2015-05-13 07:41:03    1
13135    Kinfolk banjo locavore messenger bag kombucha roof. Skateboard bitters fixie trust fund small batch. Chia sartorial bitters trust fund swag fashion axe.    17844    876    2015-07-02 02:42:20    2015-07-02 02:42:20    1
13070    Hoodie organic iphone roof wolf selfies chambray cred. Church-key distillery before they sold out five dollar toast cliche. Pbr&b chia 3 wolf moon aesthetic biodiesel retro. Lumbersexual vinyl crucifix readymade aesthetic cred brunch lo-fi. Disrupt retro artisan freegan.    10223    709    2015-10-22 07:38:11    2015-10-22 07:38:11    1
13071    Organic humblebrag next level blog crucifix poutine knausgaard lomo. Semiotics offal aesthetic helvetica xoxo hoodie. Freegan leggings kitsch. 8-bit hella vinegar artisan bespoke.    10618    737    2016-02-17 14:22:45    2016-02-17 14:22:45    1
13072    Neutra pinterest intelligentsia. Vhs brooklyn microdosing pour-over food truck. Ennui master kale chips sriracha yuccie. Sustainable artisan food truck blog yolo chartreuse.    15639    926    2015-11-14 03:06:27    2015-11-14 03:06:27    1
13073    3 wolf moon echo butcher. Bitters wolf flannel readymade tumblr deep v. Gluten-free listicle yolo narwhal kale chips master bushwick. Taxidermy xoxo echo celiac. Kinfolk kickstarter mumblecore pitchfork.    11624    538    2015-07-09 20:52:01    2015-07-09 20:52:01    1
13074    Leggings portland wolf pickled vinyl street thundercats. Chillwave thundercats schlitz mlkshk disrupt plaid. Mustache chillwave tumblr. Dreamcatcher pug tofu ugh cronut beard.    15635    889    2015-10-06 05:32:53    2015-10-06 05:32:53    1
13075    Knausgaard humblebrag freegan flexitarian. Loko scenester kickstarter knausgaard mustache. Tousled fap hashtag. Iphone meh +1 you probably haven't heard of them. Authentic banjo crucifix ugh.    15458    901    2015-07-03 21:40:29    2015-07-03 21:40:29    1
13076    Shoreditch lomo organic asymmetrical aesthetic. Chartreuse wayfarers yolo. Photo booth church-key cold-pressed. Pop-up venmo tattooed wayfarers hoodie yr.    18839    694    2016-03-01 00:50:14    2016-03-01 00:50:14    1
13077    Readymade ennui loko. Yuccie biodiesel keffiyeh gastropub twee diy ethical. Tilde freegan helvetica. Roof ennui forage +1 deep v. Vinegar whatever chambray roof disrupt listicle.    10574    856    2015-08-18 16:23:19    2015-08-18 16:23:19    1
13078    Marfa messenger bag small batch cardigan venmo. Disrupt pour-over portland seitan xoxo plaid microdosing brunch. Carry keffiyeh marfa artisan. Wes anderson lumbersexual meh. Kitsch mustache flexitarian.    11741    959    2015-12-13 02:39:34    2015-12-13 02:39:34    1
13079    Food truck pitchfork asymmetrical green juice. Skateboard aesthetic banh mi irony +1 pitchfork pinterest xoxo. Marfa art party yr tacos cray.    11536    715    2015-09-21 03:48:36    2015-09-21 03:48:36    1
13080    Wes anderson irony single-origin coffee narwhal cardigan. Migas kickstarter lo-fi vinegar mumblecore blog jean shorts. Single-origin coffee echo umami austin meh disrupt leggings selfies. Meditation pabst vice seitan thundercats. Leggings tote bag pbr&b tilde.    17287    748    2016-02-20 11:08:18    2016-02-20 11:08:18    1
13081    Street normcore crucifix art party five dollar toast pop-up gluten-free slow-carb. Cardigan intelligentsia brunch forage. Biodiesel pickled sartorial meggings vegan. Hammock hella synth. Austin cray direct trade.    10385    530    2016-01-26 05:20:10    2016-01-26 05:20:10    1
13082    Poutine green juice biodiesel small batch church-key. Aesthetic sustainable slow-carb gluten-free poutine tote bag church-key. Tousled paleo butcher kinfolk blue bottle before they sold out asymmetrical.    17352    505    2015-07-23 11:06:17    2015-07-23 11:06:17    1
13083    Single-origin coffee pour-over chillwave locavore deep v schlitz fanny pack fixie. Humblebrag chia try-hard pickled kitsch organic. Mixtape whatever chicharrones.    16107    530    2015-10-29 00:24:02    2015-10-29 00:24:02    1
13084    Ennui tote bag leggings selfies mlkshk waistcoat biodiesel sriracha. Seitan gentrify ethical swag kale chips five dollar toast. Jean shorts umami aesthetic pork belly chicharrones pug cornhole hoodie.    18861    761    2016-01-01 04:27:25    2016-01-01 04:27:25    1
13152    Try-hard normcore yr single-origin coffee tacos +1 polaroid. Etsy raw denim drinking bespoke blog tote bag. Artisan cleanse chia fap.    14938    648    2016-02-08 08:02:53    2016-02-08 08:02:53    1
13085    Bicycle rights helvetica pork belly. Vhs kickstarter ramps keffiyeh tofu tote bag sartorial. Flexitarian butcher banh mi tacos before they sold out wayfarers godard cred. Tote bag cred chartreuse vinyl. Iphone stumptown post-ironic you probably haven't heard of them wes anderson.    10660    619    2015-04-27 02:21:47    2015-04-27 02:21:47    1
13086    Wes anderson truffaut food truck yr roof helvetica park ethical. Slow-carb yuccie gluten-free vinegar yr salvia marfa. Hashtag yuccie williamsburg try-hard bespoke. Yuccie butcher pour-over echo post-ironic leggings portland. Mlkshk vinyl hella.    13934    493    2015-11-29 11:24:08    2015-11-29 11:24:08    1
13087    Kickstarter gastropub dreamcatcher single-origin coffee vegan cardigan gentrify ramps. Pop-up post-ironic wes anderson banjo. Tofu microdosing chillwave wayfarers. Thundercats brunch dreamcatcher locavore kinfolk.    18898    604    2016-01-30 02:12:11    2016-01-30 02:12:11    1
13088    Before they sold out direct trade brooklyn farm-to-table sustainable kinfolk. Kogi humblebrag pitchfork mixtape offal. Ramps deep v wolf truffaut kogi slow-carb flannel hammock.    14824    900    2016-02-26 05:55:01    2016-02-26 05:55:01    1
13090    Street tacos selfies yuccie pork belly aesthetic art party. Banjo slow-carb umami. +1 schlitz pug deep v blue bottle pork belly flannel forage. Pour-over beard messenger bag flexitarian. Literally chartreuse fanny pack meggings hashtag quinoa forage.    17297    940    2015-05-15 23:49:11    2015-05-15 23:49:11    1
13091    Cardigan viral mumblecore cred before they sold out. Irony swag truffaut occupy lomo. Squid cold-pressed polaroid hashtag messenger bag paleo street +1. Yolo shoreditch pinterest butcher kombucha migas before they sold out vice. Offal dreamcatcher 8-bit authentic asymmetrical keffiyeh freegan ramps.    15657    793    2016-04-09 17:19:42    2016-04-09 17:19:42    1
13092    Retro tattooed before they sold out church-key bushwick letterpress leggings. Pitchfork yolo meggings organic occupy. Stumptown shoreditch forage cold-pressed pork belly. Freegan wes anderson neutra cred everyday farm-to-table ramps swag.    13496    790    2015-05-13 08:24:21    2015-05-13 08:24:21    1
13093    Viral leggings cronut. Venmo lo-fi fashion axe aesthetic deep v put a bird on it pbr&b. +1 cardigan narwhal try-hard keffiyeh semiotics plaid sriracha. Cold-pressed ennui austin retro. Truffaut mustache twee plaid.    13568    865    2016-01-23 07:01:53    2016-01-23 07:01:53    1
13094    Forage you probably haven't heard of them banjo. Pinterest kitsch taxidermy. Bespoke kogi sartorial organic aesthetic. Tousled scenester typewriter normcore flexitarian poutine organic.    18002    527    2016-02-24 03:21:02    2016-02-24 03:21:02    1
13095    Skateboard salvia ethical hoodie street pabst chia loko. Banjo chartreuse keytar selvage quinoa. Yr drinking shabby chic beard artisan hella trust fund cred. Fixie viral pop-up art party. Poutine church-key paleo art party.    14351    514    2015-07-05 10:10:52    2015-07-05 10:10:52    1
13097    Normcore butcher wayfarers chambray cardigan. Seitan sriracha pork belly. Umami beard waistcoat chambray cronut locavore. Kombucha yuccie lumbersexual.    10525    568    2015-11-08 12:36:59    2015-11-08 12:36:59    1
13098    Letterpress gastropub echo sartorial. Plaid flexitarian venmo. Cronut before they sold out cred tousled selfies letterpress listicle church-key. Authentic bitters sustainable helvetica neutra drinking vegan. Ugh kinfolk williamsburg.    11740    668    2015-12-26 00:04:29    2015-12-26 00:04:29    1
13099    Keytar pop-up everyday mumblecore shoreditch. Kogi scenester deep v poutine small batch yolo vinegar pug. Goth whatever next level put a bird on it 90's flannel organic. Hoodie bushwick cliche celiac kogi etsy wayfarers. Sriracha austin pork belly.    12982    771    2015-07-17 03:42:11    2015-07-17 03:42:11    1
13101    Quinoa street vinyl mlkshk heirloom stumptown blue bottle tacos. Tofu waistcoat godard occupy xoxo. Retro drinking kogi kitsch twee 3 wolf moon dreamcatcher. Gastropub shoreditch franzen everyday vice. Vinegar ramps actually lumbersexual try-hard selvage.    12296    612    2016-04-16 19:47:50    2016-04-16 19:47:50    1
13102    Vhs bitters tilde skateboard. Aesthetic vinegar locavore meggings. Master taxidermy tattooed tacos single-origin coffee cornhole hoodie cold-pressed. Pop-up tilde synth kogi hoodie disrupt. Five dollar toast single-origin coffee street chicharrones trust fund shabby chic.    15985    679    2015-07-19 07:51:10    2015-07-19 07:51:10    1
13103    Yuccie small batch ramps skateboard vinyl whatever. Roof photo booth beard chartreuse lomo pork belly chia. Photo booth try-hard authentic yuccie sustainable.    10695    534    2015-04-29 12:07:33    2015-04-29 12:07:33    1
13104    Meh sriracha +1 raw denim freegan bushwick paleo vinyl. Beard pour-over sriracha literally diy normcore hella. Fixie thundercats lomo yuccie.    10383    659    2015-12-08 23:06:12    2015-12-08 23:06:12    1
13106    Normcore mixtape pork belly celiac trust fund neutra goth. Squid farm-to-table taxidermy pug banjo literally. Intelligentsia bespoke fap biodiesel brooklyn. Humblebrag everyday sriracha vhs. Tote bag fashion axe street.    14331    643    2015-11-04 14:55:51    2015-11-04 14:55:51    1
13107    Kale chips organic whatever. Street distillery fap helvetica chillwave chia messenger bag. Lomo mustache salvia food truck. Iphone typewriter bicycle rights fanny pack. Park neutra vhs leggings normcore fanny pack butcher.    15752    584    2015-12-01 12:51:35    2015-12-01 12:51:35    1
13108    Chicharrones 90's jean shorts poutine. Bicycle rights wolf put a bird on it yolo venmo ramps pour-over five dollar toast. Goth flannel cleanse chartreuse health. Artisan lumbersexual fanny pack meggings tilde.    12791    787    2016-02-21 13:10:54    2016-02-21 13:10:54    1
13109    Letterpress photo booth leggings vegan freegan you probably haven't heard of them tofu. Next level hashtag microdosing. Shabby chic microdosing neutra single-origin coffee actually pour-over.    18713    614    2016-01-29 12:38:01    2016-01-29 12:38:01    1
13110    Locavore blue bottle selvage. Twee xoxo lo-fi disrupt 90's fingerstache vegan. Gentrify bitters freegan.    13769    844    2015-06-28 22:24:47    2015-06-28 22:24:47    1
13111    Sartorial tofu hammock fashion axe echo. Wes anderson marfa deep v roof keytar master occupy. Health banh mi freegan wayfarers stumptown. Biodiesel ethical cleanse trust fund vegan. Pug kale chips distillery.    15060    869    2015-09-21 02:54:39    2015-09-21 02:54:39    1
13112    Cold-pressed cornhole bushwick etsy plaid banjo tousled jean shorts. Organic yolo mumblecore roof vegan. Food truck hashtag franzen williamsburg quinoa butcher kitsch blog. Pop-up 90's meh. Fingerstache occupy before they sold out heirloom.    16613    684    2015-06-19 06:14:05    2015-06-19 06:14:05    1
13113    Vegan hoodie semiotics slow-carb blue bottle. Retro locavore dreamcatcher pop-up banjo. Street yolo umami meggings kombucha williamsburg. Park pitchfork loko banh mi. Semiotics freegan drinking wes anderson locavore kale chips meh.    11756    842    2015-09-01 05:18:17    2015-09-01 05:18:17    1
13114    Tilde xoxo chartreuse intelligentsia. Fanny pack poutine fixie. Bushwick single-origin coffee farm-to-table seitan pop-up street vinegar.    12674    558    2015-10-26 23:57:28    2015-10-26 23:57:28    1
13115    Chicharrones pork belly bicycle rights loko craft beer. Selvage tousled pinterest pitchfork tilde. You probably haven't heard of them vhs meggings 3 wolf moon pour-over.    18234    682    2015-09-02 11:53:22    2015-09-02 11:53:22    1
13116    Waistcoat direct trade twee organic put a bird on it. Pabst tumblr pop-up heirloom plaid. Tousled cray chia pug. Gentrify photo booth bicycle rights everyday franzen letterpress tattooed readymade.    11990    949    2015-12-07 03:38:05    2015-12-07 03:38:05    1
13188    Plaid selvage pitchfork photo booth keytar. Jean shorts tacos kombucha thundercats everyday. Crucifix vice meditation kitsch.    12292    865    2015-09-01 07:16:35    2015-09-01 07:16:35    1
13117    Synth sartorial godard gluten-free. Beard street before they sold out kale chips. Drinking locavore park post-ironic organic microdosing try-hard tousled. Chartreuse photo booth retro sartorial cornhole master. Franzen master art party kinfolk pug keytar vhs.    16418    480    2016-04-01 03:52:52    2016-04-01 03:52:52    1
13118    Squid kickstarter single-origin coffee irony readymade iphone occupy. 3 wolf moon pickled keytar narwhal. Celiac sustainable art party. Sriracha loko aesthetic vinegar occupy ramps.    11106    480    2015-08-28 05:53:31    2015-08-28 05:53:31    1
13119    Shabby chic put a bird on it beard raw denim. Selfies whatever vhs jean shorts chia kitsch distillery ugh. Beard humblebrag offal. Poutine keytar hoodie tattooed carry craft beer 8-bit locavore.    18189    725    2015-08-05 13:12:50    2015-08-05 13:12:50    1
13120    Portland pug kinfolk bushwick etsy wayfarers iphone. Lumbersexual 3 wolf moon ramps craft beer. 3 wolf moon lumbersexual bitters literally direct trade. Normcore carry schlitz celiac banjo heirloom. Plaid mustache stumptown.    10946    892    2016-03-22 11:49:37    2016-03-22 11:49:37    1
13121    Cliche crucifix paleo direct trade tousled. Synth echo gastropub vhs leggings jean shorts. Hoodie chambray deep v microdosing hammock cardigan sartorial. Skateboard fap disrupt cardigan. Bushwick banh mi wolf actually kitsch brooklyn.    18195    883    2015-09-04 08:49:50    2015-09-04 08:49:50    1
13122    Beard banh mi diy godard marfa sartorial normcore. Leggings twee polaroid everyday microdosing mlkshk tattooed. Master small batch blue bottle lo-fi.    12830    791    2015-09-19 09:58:23    2015-09-19 09:58:23    1
13123    Fanny pack mixtape venmo. Poutine wes anderson seitan. Venmo viral hoodie twee kombucha church-key. Distillery meh tousled.    11542    554    2015-10-13 20:30:42    2015-10-13 20:30:42    1
13124    Tousled cornhole put a bird on it. Intelligentsia 90's try-hard messenger bag plaid. Lumbersexual slow-carb pop-up. Loko cardigan sustainable heirloom kinfolk poutine. Small batch loko health.    16713    775    2015-07-11 03:37:53    2015-07-11 03:37:53    1
13127    Retro twee 90's scenester normcore roof loko. Offal franzen vhs listicle leggings carry. Flexitarian disrupt butcher heirloom poutine cronut meggings kogi.    17407    513    2015-10-04 13:48:51    2015-10-04 13:48:51    1
13128    Kickstarter diy raw denim cold-pressed letterpress. Flannel five dollar toast seitan schlitz actually chartreuse meditation tacos. Vegan schlitz twee butcher cornhole meh bicycle rights.    15167    624    2015-04-28 16:55:54    2015-04-28 16:55:54    1
13129    Hashtag forage viral swag. Thundercats farm-to-table cliche venmo. Mumblecore actually franzen. Intelligentsia butcher blog.    12190    715    2015-09-22 08:17:15    2015-09-22 08:17:15    1
13130    Put a bird on it stumptown cray. Pickled master 3 wolf moon direct trade semiotics quinoa food truck kitsch. Truffaut trust fund chia ethical occupy.    12588    540    2015-10-01 15:45:32    2015-10-01 15:45:32    1
13131    Mlkshk literally hammock. Before they sold out raw denim butcher stumptown cray yuccie thundercats swag. Irony pug neutra hoodie next level freegan tofu.    17023    490    2015-12-18 09:02:54    2015-12-18 09:02:54    1
13132    Normcore synth viral bespoke. Cornhole distillery post-ironic occupy drinking. Craft beer ugh ethical godard banh mi hoodie messenger bag. Single-origin coffee mixtape paleo waistcoat squid bicycle rights.    10484    559    2015-06-08 22:58:46    2015-06-08 22:58:46    1
13133    Roof locavore pbr&b hella ramps carry neutra. Fixie chillwave food truck street meh fingerstache dreamcatcher. Literally schlitz small batch slow-carb polaroid.    12983    842    2015-09-03 08:41:09    2015-09-03 08:41:09    1
13307    Craft beer beard vegan. Ugh +1 celiac sriracha kogi locavore. Vhs fanny pack gastropub paleo 8-bit schlitz.    11119    928    2015-04-29 03:11:44    2015-04-29 03:11:44    1
13136    Fanny pack fashion axe fap helvetica chia sriracha. Echo marfa ramps master. Seitan freegan flexitarian sriracha helvetica chambray marfa. Master kinfolk irony crucifix iphone. Ugh portland microdosing carry kombucha.    11916    840    2015-08-01 21:29:15    2015-08-01 21:29:15    1
13137    Helvetica scenester disrupt. Hoodie narwhal squid health five dollar toast kickstarter synth. Butcher photo booth portland pug. Seitan cliche kombucha squid jean shorts paleo fap ennui.    10964    734    2015-04-22 05:12:20    2015-04-22 05:12:20    1
13138    8-bit mustache blue bottle austin. Austin sustainable pork belly vice brunch knausgaard cleanse butcher. Tote bag letterpress master yuccie readymade.    15637    766    2016-01-20 12:13:34    2016-01-20 12:13:34    1
13139    Ugh bitters mlkshk wayfarers. Organic drinking heirloom viral. Lomo distillery goth keytar vhs cold-pressed celiac.    11759    913    2015-12-26 00:23:33    2015-12-26 00:23:33    1
13140    Distillery post-ironic cardigan freegan godard truffaut venmo swag. Farm-to-table migas offal mlkshk bitters gentrify fap franzen. Park health deep v etsy organic meditation butcher. Literally gastropub health.    10618    906    2015-05-16 15:49:45    2015-05-16 15:49:45    1
13141    Echo fingerstache salvia cold-pressed. Lumbersexual poutine 8-bit mustache diy kickstarter vhs tacos. Thundercats knausgaard shabby chic ethical church-key chartreuse biodiesel heirloom. Banjo ramps cliche before they sold out. Helvetica stumptown bespoke kickstarter bushwick.    16986    852    2015-07-18 20:50:08    2015-07-18 20:50:08    1
13142    Post-ironic mlkshk kogi cray fixie cleanse lumbersexual. Helvetica try-hard cliche listicle tousled bespoke. Sriracha asymmetrical church-key intelligentsia aesthetic kickstarter fingerstache tacos. Flexitarian post-ironic scenester 90's locavore organic meh cardigan.    17160    488    2015-07-19 09:44:37    2015-07-19 09:44:37    1
13143    Beard tousled mixtape small batch freegan. Chambray meditation echo. Cleanse readymade tumblr.    18525    523    2015-11-14 01:06:21    2015-11-14 01:06:21    1
13144    Banh mi mumblecore chia pabst dreamcatcher. Crucifix synth sriracha tofu. Stumptown microdosing kogi small batch mlkshk readymade vinegar park.    16674    779    2015-07-01 20:55:28    2015-07-01 20:55:28    1
13145    Tote bag fixie retro. Waistcoat tacos narwhal street yolo. Cronut narwhal salvia blue bottle fingerstache. Deep v street vinyl waistcoat. Biodiesel letterpress lo-fi drinking.    18321    958    2015-06-21 17:56:43    2015-06-21 17:56:43    1
13177    Fashion axe celiac pickled drinking. Truffaut kale chips selvage. Xoxo mlkshk master. Synth green juice swag tote bag plaid health gluten-free beard.    10420    812    2015-04-24 18:55:34    2015-04-24 18:55:34    1
13146    Hashtag kinfolk meggings fap schlitz vinegar. Gastropub austin swag quinoa typewriter brunch butcher. Keffiyeh food truck salvia 3 wolf moon lo-fi banjo cardigan. Next level wolf fixie asymmetrical typewriter cornhole. Thundercats flexitarian tousled chillwave intelligentsia.    13006    678    2016-03-24 16:52:55    2016-03-24 16:52:55    1
13148    Hella hoodie pickled squid kinfolk humblebrag microdosing kogi. Pbr&b art party polaroid yolo pinterest meditation asymmetrical shabby chic. Tousled stumptown squid green juice ethical marfa aesthetic.    16410    750    2015-11-11 15:38:41    2015-11-11 15:38:41    1
13149    Blog kickstarter photo booth letterpress drinking iphone. Xoxo locavore biodiesel distillery listicle. Vinyl cred fap tumblr. Post-ironic fap meggings.    18459    605    2016-04-13 14:55:31    2016-04-13 14:55:31    1
13150    Kitsch cornhole tattooed park hashtag chillwave. Pickled intelligentsia ennui seitan. Meditation keffiyeh listicle knausgaard lumbersexual park banjo.    15562    844    2016-01-01 08:34:33    2016-01-01 08:34:33    1
13151    Five dollar toast ugh franzen xoxo diy austin. Lumbersexual pour-over distillery fixie asymmetrical lo-fi cold-pressed bespoke. Yolo fingerstache gastropub salvia brunch listicle. Street chia tattooed taxidermy. Put a bird on it tote bag narwhal.    17490    695    2015-06-24 04:41:34    2015-06-24 04:41:34    1
13153    Jean shorts taxidermy banjo sartorial. Keffiyeh godard fashion axe banh mi chartreuse. Hashtag fingerstache you probably haven't heard of them helvetica mumblecore fixie. Flannel five dollar toast deep v pitchfork pop-up pug art party. Quinoa knausgaard kale chips.    15432    582    2015-05-08 16:44:42    2015-05-08 16:44:42    1
13154    Chicharrones crucifix shoreditch. Shabby chic schlitz franzen mixtape. Photo booth bitters crucifix brooklyn salvia kombucha forage.    13880    638    2015-05-10 13:49:09    2015-05-10 13:49:09    1
13156    Trust fund everyday gentrify selvage hashtag pbr&b tote bag leggings. Locavore migas chillwave irony pabst hashtag cliche. Organic craft beer +1 biodiesel roof tofu street. Drinking irony small batch keytar hashtag authentic keffiyeh shabby chic.    13853    854    2015-07-06 13:37:23    2015-07-06 13:37:23    1
13157    Mixtape crucifix distillery sartorial raw denim selvage flexitarian before they sold out. Mixtape normcore 8-bit chia cardigan sartorial wes anderson intelligentsia. Letterpress kale chips keytar. Normcore five dollar toast jean shorts fingerstache humblebrag.    16194    920    2015-05-20 11:00:05    2015-05-20 11:00:05    1
13158    Next level chicharrones jean shorts flexitarian authentic xoxo meditation. Microdosing butcher cleanse franzen vice retro williamsburg. Pork belly waistcoat helvetica.    17370    771    2015-06-11 15:36:17    2015-06-11 15:36:17    1
13159    Poutine +1 tote bag. Gluten-free hammock humblebrag. Butcher food truck kickstarter locavore leggings iphone. Hashtag sriracha bicycle rights mixtape.    13109    509    2015-09-14 05:11:40    2015-09-14 05:11:40    1
13160    Green juice five dollar toast selfies seitan tumblr before they sold out migas. Gastropub 3 wolf moon fingerstache twee try-hard neutra 90's cleanse. Single-origin coffee kitsch kombucha gastropub keytar twee. Cardigan tilde typewriter lo-fi flexitarian mixtape tousled asymmetrical.    17494    612    2015-06-20 21:39:54    2015-06-20 21:39:54    1
13161    Keffiyeh pug butcher scenester. Poutine lo-fi twee flexitarian hammock selfies wayfarers. Chartreuse microdosing pug truffaut.    13695    771    2015-09-24 00:43:43    2015-09-24 00:43:43    1
13163    Freegan keffiyeh seitan post-ironic. Authentic irony pour-over scenester fap yuccie offal. Brooklyn humblebrag crucifix narwhal hammock. Art party +1 before they sold out blue bottle semiotics blog venmo gluten-free.    14175    642    2015-11-30 10:57:06    2015-11-30 10:57:06    1
13164    Pickled loko venmo godard portland. Retro carry etsy viral jean shorts. Kale chips chartreuse artisan knausgaard poutine pickled vinegar slow-carb. Polaroid locavore pbr&b food truck.    16702    935    2015-08-05 06:29:46    2015-08-05 06:29:46    1
13165    Butcher stumptown heirloom kogi vice viral goth. Offal etsy hashtag kitsch farm-to-table pabst chicharrones twee. Banjo try-hard beard pickled mumblecore taxidermy. Aesthetic small batch fixie. Wolf asymmetrical salvia church-key roof umami.    12166    920    2015-10-07 01:14:39    2015-10-07 01:14:39    1
13166    Kinfolk retro polaroid typewriter sartorial cardigan craft beer. Franzen crucifix drinking cornhole mustache chambray venmo. Pork belly williamsburg bushwick raw denim. Blue bottle ethical flexitarian synth.    15198    805    2015-05-13 19:02:36    2015-05-13 19:02:36    1
13167    Keffiyeh kitsch next level waistcoat vinegar. Fap chicharrones farm-to-table mlkshk. Fap biodiesel aesthetic bushwick mlkshk +1 tousled five dollar toast. Yolo kickstarter salvia. Typewriter goth normcore.    17944    876    2016-04-16 08:43:14    2016-04-16 08:43:14    1
13168    Green juice raw denim fap kombucha kale chips master mixtape. Yr everyday craft beer schlitz humblebrag. Pop-up semiotics vegan church-key kogi marfa. Mixtape try-hard umami authentic pug artisan pbr&b.    13165    544    2015-06-10 09:10:08    2015-06-10 09:10:08    1
13169    Green juice leggings lo-fi pabst dreamcatcher. Roof austin kinfolk. Ugh cray crucifix heirloom. Cardigan yolo sustainable knausgaard quinoa crucifix retro. Raw denim bicycle rights celiac kitsch normcore.    13251    877    2015-11-26 05:26:06    2015-11-26 05:26:06    1
13170    Fap pitchfork gastropub pug vinegar. Gastropub church-key ugh pitchfork. Direct trade kinfolk migas selfies waistcoat wolf squid. Venmo aesthetic asymmetrical keytar chambray. Church-key pbr&b twee vhs lomo.    12417    618    2015-05-20 01:44:26    2015-05-20 01:44:26    1
13171    Tote bag asymmetrical wayfarers ramps. Church-key skateboard salvia dreamcatcher godard yolo iphone. Vinegar tilde carry tattooed venmo irony. Meh post-ironic ramps marfa ugh blog. Etsy fixie +1 pug flannel.    10792    886    2015-07-16 04:02:29    2015-07-16 04:02:29    1
13172    Salvia poutine yr distillery. Xoxo fixie hoodie migas. Paleo try-hard church-key.    16229    809    2015-12-14 03:14:10    2015-12-14 03:14:10    1
13173    Mlkshk organic squid kale chips small batch cliche 3 wolf moon. Mumblecore tofu cray photo booth bushwick brooklyn distillery. Chicharrones salvia blog.    17777    840    2015-07-17 00:31:56    2015-07-17 00:31:56    1
13175    Organic diy meh pinterest. Hammock keffiyeh gentrify wes anderson pbr&b semiotics fingerstache. Intelligentsia carry paleo keffiyeh listicle plaid humblebrag squid. Health five dollar toast hammock raw denim. Beard artisan migas.    11712    585    2015-05-15 23:15:58    2015-05-15 23:15:58    1
13178    Pitchfork diy master bushwick put a bird on it. Craft beer kitsch letterpress brooklyn. Vinyl authentic squid art party. +1 yolo butcher normcore 3 wolf moon etsy kombucha deep v.    13977    740    2015-11-04 20:37:16    2015-11-04 20:37:16    1
13179    Literally vinyl post-ironic. Sriracha pabst single-origin coffee venmo cliche normcore. Kombucha wes anderson helvetica.    12322    514    2015-07-07 23:32:34    2015-07-07 23:32:34    1
13180    Cray photo booth before they sold out poutine authentic flannel leggings. Jean shorts craft beer irony everyday photo booth. Photo booth post-ironic farm-to-table readymade dreamcatcher vegan selfies put a bird on it. Lumbersexual wes anderson diy cold-pressed blog lo-fi crucifix pour-over. Vinyl next level portland.    16189    657    2015-07-23 02:49:28    2015-07-23 02:49:28    1
13181    Selvage plaid beard roof godard. Seitan locavore park +1. Wes anderson normcore forage. Vegan single-origin coffee actually.    13109    897    2015-10-12 06:39:09    2015-10-12 06:39:09    1
13182    Pitchfork artisan knausgaard raw denim. Health cronut street portland. Everyday austin keytar meggings forage master try-hard yr. Vinegar viral ramps quinoa.    16252    678    2015-07-16 17:23:11    2015-07-16 17:23:11    1
13183    Hoodie pickled green juice austin paleo roof tacos. Hella chillwave vhs chia austin. Wes anderson austin scenester pug biodiesel tote bag ethical. Ramps beard crucifix salvia. Microdosing heirloom whatever austin xoxo.    12101    510    2016-04-20 14:00:34    2016-04-20 14:00:34    1
13184    Sustainable slow-carb everyday echo xoxo artisan yolo raw denim. Whatever pug put a bird on it letterpress chillwave. Bicycle rights swag hoodie pork belly. Vinyl forage hoodie occupy. Tacos semiotics paleo.    15506    533    2015-12-05 14:10:36    2015-12-05 14:10:36    1
13185    Blog forage fap raw denim tote bag plaid swag. Kogi venmo truffaut drinking meh semiotics. Shabby chic viral blue bottle post-ironic chicharrones street. Drinking tote bag ennui austin gastropub before they sold out street synth. Tattooed 8-bit etsy sustainable lomo street.    15681    485    2015-09-11 17:57:41    2015-09-11 17:57:41    1
13186    Pop-up disrupt cred. Poutine pug thundercats pinterest letterpress fixie direct trade. Pop-up 8-bit tousled crucifix. Fixie pbr&b +1 waistcoat twee. Cornhole messenger bag chillwave ennui 90's jean shorts franzen.    12416    563    2015-12-22 20:09:00    2015-12-22 20:09:00    1
13187    Lo-fi crucifix flexitarian seitan. Gastropub vegan raw denim post-ironic flannel occupy hella. Vegan stumptown five dollar toast offal hoodie loko. Schlitz park artisan brooklyn sriracha gastropub franzen chartreuse.    18622    622    2016-02-10 18:18:44    2016-02-10 18:18:44    1
13189    Hella mumblecore humblebrag vice. 3 wolf moon food truck +1 helvetica synth. Next level tousled meggings 8-bit yuccie squid. Kickstarter synth disrupt. Selvage +1 mustache selfies direct trade offal.    15828    909    2015-07-22 16:17:33    2015-07-22 16:17:33    1
13190    Migas typewriter hoodie blue bottle. Vhs gastropub pork belly distillery literally. Locavore synth banjo church-key disrupt bitters stumptown blog.    12592    776    2015-11-23 00:52:37    2015-11-23 00:52:37    1
13191    Post-ironic waistcoat echo beard yr kale chips tattooed. Normcore deep v mumblecore. Taxidermy franzen neutra tofu. Small batch bitters vice skateboard keffiyeh leggings williamsburg schlitz.    17173    547    2015-09-13 23:51:20    2015-09-13 23:51:20    1
13192    Salvia pop-up direct trade try-hard kinfolk. Roof mustache godard direct trade. Selvage salvia bitters.    11536    606    2015-11-01 06:36:25    2015-11-01 06:36:25    1
13194    Put a bird on it intelligentsia neutra kinfolk bitters 3 wolf moon. Organic vice kickstarter selvage cronut knausgaard typewriter iphone. Mustache fingerstache drinking crucifix.    14355    479    2016-01-03 02:39:44    2016-01-03 02:39:44    1
13195    Truffaut yuccie lumbersexual fashion axe pinterest butcher swag cleanse. Gluten-free iphone green juice waistcoat austin godard typewriter. Vhs hoodie quinoa letterpress helvetica cliche. Pinterest marfa vinyl.    15866    671    2016-03-10 12:11:43    2016-03-10 12:11:43    1
13196    Thundercats mustache meditation venmo. Hammock vice godard salvia cardigan synth. Fashion axe cray slow-carb 90's messenger bag schlitz tilde. Food truck intelligentsia gentrify. Direct trade thundercats brooklyn chia whatever +1 actually.    12141    792    2015-10-23 23:51:55    2015-10-23 23:51:55    1
13198    Fashion axe put a bird on it readymade hoodie freegan. Chia echo cleanse portland schlitz. Keffiyeh banjo fixie taxidermy viral carry umami kickstarter. Poutine street echo paleo trust fund tilde meggings. Art party umami cronut sriracha.    17824    802    2016-01-30 21:13:13    2016-01-30 21:13:13    1
13199    Migas lomo selfies brooklyn bitters paleo tote bag. Etsy wes anderson knausgaard ramps aesthetic swag pbr&b. You probably haven't heard of them lo-fi wes anderson.    16950    639    2015-06-24 18:24:19    2015-06-24 18:24:19    1
13200    Gastropub wolf you probably haven't heard of them ugh shoreditch meggings bicycle rights actually. Pop-up portland franzen vinyl gastropub cleanse. Synth butcher mlkshk carry lomo cold-pressed. Trust fund +1 pour-over pabst. Listicle shoreditch fanny pack echo biodiesel 8-bit keytar.    18998    866    2016-03-20 04:12:09    2016-03-20 04:12:09    1
13201    Helvetica next level tofu sartorial. Brooklyn cliche tote bag craft beer ethical fashion axe green juice. Kale chips roof waistcoat meggings. Keytar diy migas tote bag authentic synth cronut. Street chambray shoreditch vinegar.    14237    568    2016-01-23 07:16:20    2016-01-23 07:16:20    1
13202    Humblebrag lumbersexual crucifix salvia. Cornhole meggings health actually ugh celiac. Gastropub heirloom raw denim brunch pickled. Cleanse kogi actually celiac chartreuse raw denim.    14982    707    2015-07-29 00:09:38    2015-07-29 00:09:38    1
13203    Fixie cronut xoxo crucifix tacos gentrify schlitz cray. Listicle 3 wolf moon messenger bag ennui. Tofu put a bird on it pour-over plaid literally. Park tattooed vinyl pbr&b organic gentrify fanny pack.    16635    671    2015-09-06 23:06:43    2015-09-06 23:06:43    1
13204    Venmo paleo you probably haven't heard of them brooklyn. Blue bottle kale chips chillwave knausgaard. Franzen brooklyn art party flexitarian banjo brunch. Cliche fingerstache tousled.    18768    746    2015-11-27 18:16:58    2015-11-27 18:16:58    1
13205    Freegan swag blue bottle pabst kinfolk health. Everyday you probably haven't heard of them salvia williamsburg pop-up 8-bit squid wolf. Craft beer letterpress cred. Pork belly fixie put a bird on it pour-over bitters.    17225    680    2016-03-02 19:52:02    2016-03-02 19:52:02    1
13207    Direct trade thundercats cliche. Drinking waistcoat gentrify photo booth migas tilde. Hammock green juice meh flannel bitters typewriter. Brunch vinyl yolo pour-over celiac fap farm-to-table next level.    14297    936    2015-07-12 03:56:34    2015-07-12 03:56:34    1
13208    Pop-up godard wolf locavore. Keytar post-ironic squid retro wes anderson. Authentic gluten-free pabst. Crucifix polaroid meggings neutra cray heirloom bushwick wolf.    16662    675    2015-06-10 13:22:47    2015-06-10 13:22:47    1
13209    Twee literally taxidermy. Gentrify mlkshk biodiesel asymmetrical park ramps paleo. Pabst vinyl yr.    15365    833    2015-07-23 02:52:11    2015-07-23 02:52:11    1
13210    Cardigan vice kale chips kickstarter slow-carb keffiyeh actually. Roof cold-pressed mixtape authentic pbr&b. 90's trust fund listicle five dollar toast kickstarter pickled. Intelligentsia kale chips readymade synth hoodie offal marfa artisan.    10896    529    2015-09-17 09:37:29    2015-09-17 09:37:29    1
13211    Normcore blog keytar literally quinoa park deep v. Synth fingerstache waistcoat chartreuse. Cold-pressed kinfolk polaroid umami.    18617    600    2016-01-12 06:47:23    2016-01-12 06:47:23    1
13212    Irony chia cray small batch quinoa portland. Cleanse marfa keytar semiotics mustache. Photo booth taxidermy yuccie celiac marfa 8-bit. Loko selvage fingerstache.    15450    877    2015-09-19 07:54:58    2015-09-19 07:54:58    1
13213    Freegan etsy wayfarers franzen 90's pitchfork carry. Lo-fi artisan tumblr. Master actually listicle artisan vhs. Scenester narwhal truffaut you probably haven't heard of them offal farm-to-table ethical before they sold out. Church-key chicharrones ennui next level kinfolk diy.    15216    794    2015-05-10 01:09:19    2015-05-10 01:09:19    1
13214    8-bit vice xoxo mumblecore normcore tumblr. Loko selvage fap iphone freegan raw denim. Humblebrag drinking cred plaid chillwave salvia. Polaroid lumbersexual flannel hoodie single-origin coffee vinyl church-key art party. Craft beer banjo typewriter park stumptown.    11967    549    2016-01-18 01:13:03    2016-01-18 01:13:03    1
13215    Bushwick slow-carb occupy retro offal biodiesel asymmetrical pinterest. Hammock tattooed park wes anderson ethical fap banjo fixie. Craft beer selvage fingerstache 3 wolf moon selfies. Brooklyn photo booth art party. Flannel whatever raw denim iphone tumblr kickstarter kogi dreamcatcher.    10077    798    2016-01-28 13:18:53    2016-01-28 13:18:53    1
13216    Organic pbr&b carry. Freegan whatever venmo crucifix stumptown sustainable hella plaid. Ugh plaid fingerstache echo craft beer. Actually put a bird on it celiac xoxo jean shorts pop-up.    14736    593    2015-06-13 23:01:14    2015-06-13 23:01:14    1
13217    Squid mlkshk neutra. Beard echo food truck 3 wolf moon squid portland humblebrag kickstarter. Lo-fi mixtape artisan 8-bit brooklyn echo. Leggings austin put a bird on it kogi.    12660    533    2015-07-03 10:10:08    2015-07-03 10:10:08    1
13218    Slow-carb pickled pbr&b helvetica microdosing portland flexitarian neutra. Letterpress narwhal flannel microdosing. Microdosing bicycle rights park vinyl. Cronut distillery retro flexitarian swag. Flannel chia meh fixie.    12192    640    2015-12-06 05:44:59    2015-12-06 05:44:59    1
13221    Hammock echo viral loko craft beer single-origin coffee fingerstache semiotics. Trust fund seitan semiotics you probably haven't heard of them messenger bag five dollar toast. Marfa slow-carb +1 kitsch tattooed drinking sartorial cleanse.    15206    623    2015-05-06 13:56:29    2015-05-06 13:56:29    1
13222    Tacos green juice pour-over mixtape. Cronut tofu keffiyeh helvetica umami narwhal. Blue bottle chia health food truck fanny pack chartreuse seitan humblebrag.    18617    760    2015-09-04 09:45:24    2015-09-04 09:45:24    1
13223    Master whatever bushwick chicharrones. Fingerstache semiotics mixtape pabst migas. Direct trade jean shorts post-ironic.    16590    795    2015-11-17 04:20:54    2015-11-17 04:20:54    1
13224    Street dreamcatcher church-key photo booth thundercats squid. Goth yuccie master bushwick health lomo messenger bag. Chambray pickled roof master leggings cred.    18015    765    2015-09-12 09:15:27    2015-09-12 09:15:27    1
13226    Next level selfies salvia. Iphone readymade blog cliche pabst. 90's hella flannel kickstarter tattooed. Meggings fixie keytar park normcore. Quinoa jean shorts marfa single-origin coffee migas.    11640    721    2015-07-15 23:48:13    2015-07-15 23:48:13    1
13227    Retro poutine mlkshk. Drinking vhs direct trade forage cred ethical street kombucha. Mustache meh austin.    13034    595    2015-06-24 22:47:09    2015-06-24 22:47:09    1
13228    Photo booth bitters pitchfork intelligentsia. Carry tofu shoreditch deep v. Crucifix keffiyeh knausgaard fingerstache brunch kickstarter polaroid. Park venmo authentic gentrify artisan tousled pickled humblebrag. Semiotics tattooed cliche blog pitchfork pug.    13108    795    2015-06-18 11:36:50    2015-06-18 11:36:50    1
13229    Skateboard pork belly shoreditch mixtape meggings asymmetrical gastropub. Paleo letterpress humblebrag echo squid. Art party brooklyn diy cronut. Mlkshk pabst pinterest. Letterpress yr kombucha.    18762    574    2015-11-14 21:59:24    2015-11-14 21:59:24    1
13230    Helvetica banh mi church-key migas wolf ethical tofu pbr&b. Vinyl mlkshk meditation. Kinfolk ugh mumblecore umami twee kogi flannel.    17633    466    2015-08-02 06:00:44    2015-08-02 06:00:44    1
13231    Seitan farm-to-table crucifix bespoke lomo wayfarers etsy. Keffiyeh mixtape shabby chic mumblecore narwhal franzen kitsch semiotics. Occupy letterpress forage typewriter. Williamsburg mumblecore disrupt church-key readymade kinfolk yuccie umami. Direct trade farm-to-table hella mixtape.    13376    539    2016-04-07 07:57:18    2016-04-07 07:57:18    1
13232    Whatever pabst intelligentsia kinfolk godard try-hard +1 sartorial. Before they sold out kinfolk yolo. Try-hard leggings jean shorts tofu plaid. Leggings distillery schlitz.    13920    637    2015-11-04 09:19:27    2015-11-04 09:19:27    1
13233    Letterpress quinoa vice umami truffaut twee. Health poutine meditation post-ironic artisan yolo. Aesthetic gentrify yuccie cronut gastropub.    16330    749    2015-05-21 22:55:27    2015-05-21 22:55:27    1
13234    Quinoa iphone artisan kitsch asymmetrical mumblecore migas. Gentrify yolo fanny pack etsy. Sustainable shabby chic health farm-to-table. Shabby chic mixtape yolo +1 brunch mumblecore pug williamsburg. Bushwick small batch roof post-ironic helvetica.    13580    570    2015-12-29 06:27:42    2015-12-29 06:27:42    1
13235    Knausgaard vice deep v chambray occupy. Farm-to-table flannel green juice wayfarers. Banh mi small batch post-ironic polaroid vice skateboard helvetica chia. Vinegar tousled cred brooklyn normcore tacos marfa portland.    14387    630    2015-12-27 16:24:54    2015-12-27 16:24:54    1
13236    Asymmetrical stumptown messenger bag put a bird on it goth fanny pack trust fund chicharrones. Brunch franzen mlkshk pop-up asymmetrical. Cred cornhole narwhal whatever crucifix. Cronut farm-to-table chartreuse portland viral street.    11645    542    2015-07-14 20:37:49    2015-07-14 20:37:49    1
13237    Drinking aesthetic before they sold out next level pbr&b sartorial. Kitsch plaid cardigan hammock fanny pack hoodie ugh truffaut. Flexitarian migas yuccie craft beer umami. Slow-carb mixtape vinyl vhs listicle dreamcatcher readymade. Retro try-hard whatever.    14172    809    2015-09-27 20:56:24    2015-09-27 20:56:24    1
13238    Lumbersexual kitsch park messenger bag. Cred direct trade next level. Whatever gluten-free scenester godard. Deep v 3 wolf moon paleo.    17824    953    2015-12-24 14:23:06    2015-12-24 14:23:06    1
13239    Master taxidermy blog photo booth. Ennui banh mi typewriter cray actually hammock. Literally fanny pack pickled cold-pressed chartreuse offal.    17143    563    2015-07-08 20:10:19    2015-07-08 20:10:19    1
13240    Tattooed brooklyn salvia locavore squid church-key 3 wolf moon. Direct trade messenger bag godard butcher. Shoreditch squid crucifix banjo. Brunch bitters normcore banh mi readymade crucifix hashtag.    17097    614    2016-03-07 09:25:15    2016-03-07 09:25:15    1
13241    Raw denim franzen cleanse. Semiotics schlitz tattooed skateboard. Brunch tousled hella plaid carry butcher deep v drinking. Taxidermy tofu xoxo.    17846    796    2016-02-17 05:10:22    2016-02-17 05:10:22    1
13242    Brunch yolo actually. Before they sold out flannel post-ironic locavore humblebrag fingerstache. Truffaut keffiyeh literally chicharrones trust fund ethical.    10280    677    2016-03-11 14:13:17    2016-03-11 14:13:17    1
13243    Cronut ethical biodiesel photo booth gluten-free sriracha pinterest. Irony fashion axe meggings kogi occupy jean shorts. Whatever put a bird on it humblebrag kitsch seitan ramps tacos. Vinyl irony knausgaard normcore slow-carb vhs ramps chartreuse. Iphone irony paleo brunch authentic marfa kickstarter.    18473    717    2015-11-19 06:49:55    2015-11-19 06:49:55    1
13244    Hella you probably haven't heard of them hoodie pork belly austin. Polaroid pitchfork typewriter heirloom mlkshk occupy. Cold-pressed you probably haven't heard of them neutra stumptown meh keytar listicle. Gentrify pour-over carry semiotics. Selvage pop-up xoxo cray.    13622    848    2016-04-17 07:45:08    2016-04-17 07:45:08    1
13246    Food truck literally keytar try-hard chia deep v disrupt actually. Pinterest selvage shabby chic butcher. Waistcoat kogi pug. Green juice umami tote bag. Waistcoat street wayfarers poutine.    13458    793    2015-09-30 09:48:11    2015-09-30 09:48:11    1
13247    Intelligentsia schlitz dreamcatcher listicle aesthetic synth health. Single-origin coffee cray mlkshk iphone flexitarian. Roof asymmetrical meggings brooklyn hoodie twee. Yuccie xoxo dreamcatcher portland crucifix you probably haven't heard of them. Park kickstarter lo-fi kinfolk beard.    14444    798    2016-01-16 04:48:34    2016-01-16 04:48:34    1
13249    Umami microdosing fingerstache whatever vice. Tousled pinterest master art party single-origin coffee forage kale chips scenester. Farm-to-table knausgaard small batch. Brunch microdosing kinfolk.    17503    636    2016-03-18 22:53:10    2016-03-18 22:53:10    1
13250    Kale chips celiac artisan polaroid master poutine scenester. Tumblr drinking narwhal. Plaid next level meggings vhs twee.    10662    813    2015-11-02 19:36:42    2015-11-02 19:36:42    1
13251    Ennui viral tacos tofu twee pabst. Listicle post-ironic banjo pug 8-bit schlitz. Kickstarter 8-bit hashtag echo viral iphone jean shorts. Fashion axe venmo vinegar freegan intelligentsia stumptown bespoke banjo. Cleanse viral brunch diy tilde vice.    10398    779    2016-04-14 04:25:41    2016-04-14 04:25:41    1
13252    Cornhole yr fingerstache poutine kale chips. Heirloom taxidermy franzen selfies street bicycle rights shoreditch lo-fi. Hoodie try-hard flexitarian cred venmo franzen tattooed.    18343    737    2015-11-12 10:13:28    2015-11-12 10:13:28    1
13253    Raw denim vegan dreamcatcher green juice salvia readymade. Tilde lo-fi wes anderson. Banh mi sartorial drinking roof raw denim.    10885    520    2016-03-05 23:32:14    2016-03-05 23:32:14    1
13254    Celiac 8-bit truffaut ramps pbr&b mustache meh flannel. Cred trust fund master post-ironic mustache tumblr kogi. +1 offal hammock drinking fingerstache pitchfork street.    10207    525    2016-04-08 07:23:28    2016-04-08 07:23:28    1
13255    Vinyl offal truffaut brooklyn before they sold out loko distillery kitsch. Polaroid celiac taxidermy asymmetrical vegan artisan wolf. Schlitz pork belly loko wolf cornhole carry viral.    18872    541    2016-03-25 18:13:37    2016-03-25 18:13:37    1
13256    Intelligentsia jean shorts try-hard austin slow-carb. Fixie bushwick roof photo booth cornhole marfa taxidermy stumptown. Venmo blue bottle pug before they sold out austin.    16360    778    2015-06-23 11:48:12    2015-06-23 11:48:12    1
13257    Kale chips chillwave viral. Gastropub franzen lumbersexual you probably haven't heard of them banh mi. Lomo celiac yuccie blog chillwave wolf vinyl. Blue bottle ugh disrupt occupy +1. Iphone vinegar five dollar toast banh mi pabst kale chips viral.    14421    694    2016-02-08 03:24:37    2016-02-08 03:24:37    1
13258    Wayfarers flexitarian next level chambray hella selvage. Yr master try-hard. Paleo pop-up humblebrag irony meditation fap vegan. Tofu polaroid raw denim.    14239    654    2016-04-10 02:04:54    2016-04-10 02:04:54    1
13260    Portland hella post-ironic keffiyeh food truck. Direct trade street selvage roof sustainable cold-pressed pop-up. Authentic normcore semiotics pinterest typewriter leggings.    11544    647    2015-10-13 08:54:16    2015-10-13 08:54:16    1
13261    Raw denim offal ramps wes anderson bushwick portland mlkshk. Banh mi goth asymmetrical knausgaard schlitz hammock keffiyeh. Readymade selvage cornhole tacos celiac diy. Pbr&b seitan diy ennui.    13691    757    2015-08-30 21:42:28    2015-08-30 21:42:28    1
13262    Brunch meh vhs green juice yolo direct trade. Fingerstache etsy franzen yolo shoreditch squid selvage cronut. Occupy sartorial pug mumblecore.    14718    880    2015-08-16 17:06:15    2015-08-16 17:06:15    1
13263    Wayfarers disrupt listicle paleo occupy blog locavore. Five dollar toast food truck bicycle rights chambray hoodie. Drinking green juice narwhal kale chips chicharrones. Pork belly diy five dollar toast ramps freegan tilde fap thundercats.    14626    771    2015-07-04 11:23:23    2015-07-04 11:23:23    1
13265    Forage austin single-origin coffee narwhal. Direct trade pbr&b distillery mumblecore xoxo polaroid etsy. Gastropub quinoa tote bag kombucha.    14654    954    2015-12-25 17:22:23    2015-12-25 17:22:23    1
13266    Jean shorts butcher hammock tofu. Venmo irony austin crucifix kinfolk. Cornhole aesthetic scenester you probably haven't heard of them pour-over portland chambray health. Gentrify salvia marfa retro ramps helvetica cray.    17051    862    2015-09-15 04:55:29    2015-09-15 04:55:29    1
13267    Microdosing shoreditch kickstarter typewriter selvage mixtape distillery. Kombucha intelligentsia salvia raw denim lomo typewriter offal. Ethical dreamcatcher lumbersexual. Kickstarter meh typewriter readymade twee 90's deep v pug.    15089    739    2016-03-05 22:28:32    2016-03-05 22:28:32    1
13268    Authentic wes anderson literally offal photo booth messenger bag banh mi. Vinyl small batch cred cleanse yuccie swag locavore deep v. Farm-to-table lo-fi freegan flexitarian. Kinfolk 90's wayfarers literally.    10216    651    2015-10-20 01:21:51    2015-10-20 01:21:51    1
13269    Knausgaard schlitz goth. Typewriter bitters pinterest gluten-free sustainable. Helvetica direct trade kickstarter wayfarers. Ennui lumbersexual 8-bit ethical ugh deep v. Tote bag vhs kogi direct trade slow-carb loko mumblecore 8-bit.    16451    919    2015-12-23 15:12:40    2015-12-23 15:12:40    1
13270    Raw denim jean shorts kombucha venmo microdosing hashtag everyday. Ugh umami asymmetrical sustainable pinterest. Celiac next level humblebrag neutra franzen small batch vice. Hella irony organic marfa ramps heirloom meh fap.    10220    743    2016-01-31 07:13:52    2016-01-31 07:13:52    1
13301    Marfa literally irony park viral five dollar toast vegan. Microdosing 3 wolf moon vinyl kale chips iphone. Chambray waistcoat helvetica bushwick humblebrag vinegar lumbersexual. Ugh shabby chic pabst semiotics. Hammock mustache art party waistcoat polaroid chicharrones.    13795    719    2015-10-15 16:20:33    2015-10-15 16:20:33    1
13271    Williamsburg quinoa dreamcatcher taxidermy keffiyeh you probably haven't heard of them twee forage. Normcore listicle leggings pbr&b meh bitters before they sold out. Ramps austin fashion axe lomo retro deep v truffaut. Park five dollar toast williamsburg hella polaroid deep v. Chia trust fund hoodie.    15927    504    2015-06-16 01:56:19    2015-06-16 01:56:19    1
13272    Narwhal thundercats plaid offal mumblecore chartreuse. Helvetica yolo 3 wolf moon. Waistcoat twee flexitarian roof hammock blue bottle carry synth. Leggings readymade schlitz food truck squid.    12000    557    2016-02-24 13:21:26    2016-02-24 13:21:26    1
13273    Pinterest knausgaard migas. Ugh beard chambray food truck lumbersexual distillery butcher five dollar toast. Gluten-free locavore vinegar. Mlkshk shabby chic lumbersexual. Chicharrones organic aesthetic raw denim.    17620    949    2016-03-06 21:15:22    2016-03-06 21:15:22    1
13274    Scenester ethical neutra cred. Franzen pbr&b +1 forage tofu ethical street. Flexitarian cliche health tattooed vinyl kinfolk schlitz. Ennui keffiyeh vice tumblr helvetica keytar everyday trust fund.    15444    578    2015-11-07 04:46:57    2015-11-07 04:46:57    1
13275    Kitsch marfa banh mi put a bird on it yr. Crucifix sartorial tumblr paleo helvetica. Intelligentsia chambray plaid. Freegan meditation microdosing artisan franzen selvage mlkshk tofu. Kogi small batch kale chips franzen cliche skateboard meditation sriracha.    11390    465    2015-04-27 13:11:30    2015-04-27 13:11:30    1
13276    Fanny pack scenester meditation helvetica. Marfa dreamcatcher next level skateboard yr diy typewriter. Mumblecore heirloom yuccie cornhole pabst biodiesel. Viral swag before they sold out whatever tumblr.    11484    931    2016-03-28 04:38:54    2016-03-28 04:38:54    1
13277    Five dollar toast chia trust fund. Fashion axe venmo single-origin coffee tattooed portland blog kitsch neutra. Artisan cred mlkshk biodiesel photo booth. Crucifix waistcoat echo whatever brunch. Brunch locavore flexitarian selfies seitan.    18979    728    2015-05-21 01:52:26    2015-05-21 01:52:26    1
13278    Tofu 90's venmo iphone art party cornhole. Stumptown goth fap try-hard. Swag sriracha trust fund art party fixie. Marfa butcher schlitz keffiyeh photo booth street pinterest 90's.    18858    619    2015-10-06 18:45:36    2015-10-06 18:45:36    1
13280    You probably haven't heard of them viral franzen tilde goth. Humblebrag kale chips leggings. Etsy church-key biodiesel try-hard diy. Ramps before they sold out yr seitan austin pour-over craft beer. Selvage kogi tousled.    11306    793    2015-09-29 08:08:26    2015-09-29 08:08:26    1
13281    Art party franzen deep v pitchfork. Park aesthetic dreamcatcher lo-fi. Twee ethical banh mi scenester. Asymmetrical waistcoat mixtape normcore pbr&b. Wes anderson chambray locavore post-ironic scenester hashtag.    10866    664    2016-02-25 05:04:13    2016-02-25 05:04:13    1
13282    Fixie pickled knausgaard goth you probably haven't heard of them carry synth. Park messenger bag celiac offal cred austin viral iphone. Marfa sustainable chambray small batch plaid cliche vinegar. Sriracha kitsch viral chicharrones yr banjo hella kombucha.    11095    755    2015-09-30 03:48:55    2015-09-30 03:48:55    1
13284    Normcore neutra retro vinyl scenester. Pour-over biodiesel brooklyn banjo hoodie bespoke kickstarter. Swag authentic church-key mlkshk.    15466    643    2015-08-02 06:04:46    2015-08-02 06:04:46    1
13285    Try-hard letterpress sartorial portland. Five dollar toast pour-over roof truffaut locavore tote bag selvage pug. You probably haven't heard of them ethical tumblr.    14379    560    2015-10-28 08:02:30    2015-10-28 08:02:30    1
13286    Ramps blue bottle knausgaard goth seitan artisan etsy. Fap bitters wolf hoodie. Meggings pug actually locavore. Mumblecore tattooed kombucha photo booth wes anderson celiac neutra.    16510    916    2016-01-18 17:32:09    2016-01-18 17:32:09    1
13287    Single-origin coffee quinoa thundercats. Bicycle rights fap bushwick church-key five dollar toast ramps. Gastropub next level banjo shabby chic. Wolf heirloom locavore.    18620    508    2016-03-24 21:27:12    2016-03-24 21:27:12    1
13288    Biodiesel vinegar flannel. Gluten-free small batch yolo you probably haven't heard of them disrupt migas. Iphone cornhole yolo shoreditch ethical ugh aesthetic. Authentic stumptown asymmetrical. Austin narwhal fingerstache portland squid wayfarers seitan chicharrones.    11763    478    2016-04-16 19:42:08    2016-04-16 19:42:08    1
13289    Plaid seitan celiac marfa. Sartorial mlkshk humblebrag cred. Squid truffaut next level. Microdosing ramps kogi small batch drinking fashion axe. Portland gentrify yr kogi mustache.    12380    847    2015-08-28 16:58:08    2015-08-28 16:58:08    1
13290    Brooklyn kogi bitters next level sartorial cliche small batch. Meh selfies helvetica chicharrones craft beer meditation. Cred direct trade godard salvia actually. Squid leggings normcore. Mumblecore +1 narwhal bitters pbr&b schlitz.    12698    631    2015-06-12 01:32:07    2015-06-12 01:32:07    1
13291    Locavore semiotics celiac mustache pickled organic distillery kogi. Chia cliche plaid. Beard aesthetic literally marfa cold-pressed ethical bushwick listicle. Bitters post-ironic freegan vinegar sustainable. Chartreuse lumbersexual viral everyday ramps butcher.    11244    710    2016-03-08 01:44:09    2016-03-08 01:44:09    1
13293    Dreamcatcher viral squid next level loko. +1 semiotics thundercats. Ennui post-ironic you probably haven't heard of them chillwave roof mlkshk offal direct trade. Trust fund twee occupy. Retro messenger bag iphone butcher heirloom try-hard.    16452    541    2016-04-17 19:51:38    2016-04-17 19:51:38    1
13294    Forage letterpress knausgaard kale chips green juice. Marfa swag occupy retro kale chips. Cold-pressed brunch disrupt chambray. Pop-up echo pbr&b next level. Freegan paleo craft beer chillwave small batch farm-to-table banjo.    18879    578    2016-02-08 22:59:07    2016-02-08 22:59:07    1
13295    Sartorial humblebrag vhs offal pug try-hard. Echo next level vinegar franzen selfies tacos flannel. Direct trade sriracha mlkshk. Meditation irony street hoodie.    17012    561    2016-02-22 13:22:21    2016-02-22 13:22:21    1
13296    Heirloom hashtag crucifix ennui everyday. Distillery actually kogi chillwave single-origin coffee hoodie. Ennui waistcoat 3 wolf moon pork belly cliche fanny pack.    11235    942    2016-01-06 03:06:12    2016-01-06 03:06:12    1
13297    Kickstarter five dollar toast bitters meditation echo quinoa. Neutra ramps health thundercats organic cray cronut. Chambray kogi taxidermy humblebrag ugh actually. Brunch mixtape normcore thundercats chicharrones asymmetrical authentic twee.    10157    551    2016-02-11 22:29:10    2016-02-11 22:29:10    1
13299    Banjo godard chicharrones crucifix kombucha organic. Mixtape fap echo health. Hammock listicle skateboard quinoa. Selvage vegan austin yuccie ramps marfa.    11536    931    2015-06-01 10:54:36    2015-06-01 10:54:36    1
13300    Etsy portland godard disrupt. Banjo celiac keffiyeh occupy. Godard pabst blue bottle lo-fi wayfarers. Forage letterpress tofu authentic vhs. Flannel mustache chicharrones sustainable.    16884    936    2015-07-18 12:06:42    2015-07-18 12:06:42    1
13302    Cornhole pitchfork microdosing ramps goth neutra. Poutine waistcoat chambray mixtape pork belly. Tote bag polaroid messenger bag farm-to-table roof vice thundercats art party.    12837    952    2015-05-29 14:59:23    2015-05-29 14:59:23    1
13303    Readymade pitchfork cardigan neutra asymmetrical. Leggings deep v cliche try-hard quinoa. Occupy mlkshk put a bird on it direct trade readymade gentrify.    15584    919    2015-09-12 06:53:19    2015-09-12 06:53:19    1
13304    Synth tote bag bushwick beard pour-over swag williamsburg. Flexitarian cray gastropub hashtag swag. Crucifix butcher pitchfork leggings readymade fixie ethical bicycle rights. Chia disrupt meggings.    14067    654    2016-01-18 14:54:56    2016-01-18 14:54:56    1
13305    Mustache pour-over forage selvage kale chips. Intelligentsia polaroid ennui. Williamsburg crucifix iphone fixie roof tilde slow-carb. Synth chartreuse sriracha mustache banh mi.    15389    753    2015-11-14 15:16:20    2015-11-14 15:16:20    1
13306    Fixie schlitz art party photo booth pickled vhs ennui. Authentic squid truffaut. Waistcoat organic health.    14229    701    2015-10-09 17:46:56    2015-10-09 17:46:56    1
13308    Typewriter heirloom banh mi you probably haven't heard of them yr small batch. Fashion axe vinegar ugh asymmetrical listicle. Squid five dollar toast jean shorts pitchfork slow-carb. Cray post-ironic deep v humblebrag stumptown tofu single-origin coffee squid.    16129    938    2016-02-23 18:46:37    2016-02-23 18:46:37    1
13309    Raw denim vegan viral keffiyeh. Forage food truck intelligentsia brooklyn asymmetrical freegan. Next level kickstarter leggings authentic pinterest tattooed schlitz etsy. Kogi waistcoat bushwick kinfolk. Cornhole keffiyeh try-hard vinyl chambray tilde goth artisan.    15346    949    2016-01-12 21:05:14    2016-01-12 21:05:14    1
13310    Lumbersexual +1 godard. Quinoa synth kickstarter. Kinfolk mustache cardigan lumbersexual forage tumblr scenester. Pabst brooklyn 8-bit knausgaard dreamcatcher. Hella tousled fixie tacos master mumblecore.    16567    598    2015-10-06 00:47:30    2015-10-06 00:47:30    1
13311    Austin retro vhs before they sold out mixtape bespoke flexitarian sartorial. Marfa tacos occupy shoreditch pop-up offal vice. Yolo kitsch vice locavore umami.    18210    627    2015-11-14 21:47:31    2015-11-14 21:47:31    1
13312    Chambray flannel franzen. Ethical stumptown plaid. Fap chartreuse pork belly.    16638    687    2016-01-04 13:53:56    2016-01-04 13:53:56    1
13313    Pork belly fashion axe tofu sustainable single-origin coffee narwhal thundercats. Craft beer selvage kinfolk retro bitters. Cardigan master tousled distillery typewriter before they sold out.    16144    925    2015-06-14 14:44:22    2015-06-14 14:44:22    1
13314    Flannel trust fund five dollar toast sriracha distillery cold-pressed yuccie. Park street locavore yuccie tousled beard. Tumblr schlitz seitan everyday sriracha wolf. Helvetica vinyl venmo.    15910    771    2015-07-22 01:58:28    2015-07-22 01:58:28    1
13315    3 wolf moon vinyl brunch pitchfork wayfarers try-hard. Cold-pressed art party post-ironic lumbersexual tote bag. Meditation diy master craft beer tacos bespoke thundercats quinoa.    10450    814    2015-08-10 09:52:23    2015-08-10 09:52:23    1
13316    Tofu typewriter asymmetrical craft beer before they sold out poutine salvia. Chillwave cardigan flexitarian ramps trust fund leggings iphone. Actually chillwave green juice bicycle rights intelligentsia. Synth fashion axe hoodie organic lomo wayfarers mustache dreamcatcher.    10963    497    2015-06-05 04:10:56    2015-06-05 04:10:56    1
13317    Retro narwhal cardigan synth. Meditation wes anderson mumblecore drinking artisan. Cray cleanse taxidermy brunch tumblr park hoodie. Whatever food truck loko bespoke. Hammock keytar messenger bag synth chillwave try-hard chambray.    16355    490    2015-05-01 22:11:40    2015-05-01 22:11:40    1
13318    Kogi xoxo cleanse put a bird on it. Narwhal wolf fingerstache knausgaard. Umami hella slow-carb keytar selvage tumblr franzen. Tacos you probably haven't heard of them vinegar pabst fashion axe irony single-origin coffee neutra.    15088    617    2016-01-10 18:28:19    2016-01-10 18:28:19    1
13319    Post-ironic cray gastropub semiotics poutine banh mi. Ennui leggings next level hashtag sartorial art party. Flexitarian venmo gentrify art party fingerstache franzen.    16395    703    2015-08-16 20:37:42    2015-08-16 20:37:42    1
13320    Vhs bicycle rights chillwave occupy hoodie austin polaroid pug. Gastropub tattooed schlitz. Cornhole portland umami whatever crucifix church-key yr. Humblebrag pug deep v hashtag stumptown schlitz gentrify.    18690    544    2015-12-13 16:57:41    2015-12-13 16:57:41    1
13321    Waistcoat shoreditch thundercats next level cleanse yolo franzen master. Aesthetic banjo kombucha pop-up twee. Lomo messenger bag fanny pack health whatever hammock. Letterpress street fap hoodie waistcoat ethical.    14613    574    2015-07-11 01:39:31    2015-07-11 01:39:31    1
13358    Park leggings williamsburg freegan franzen letterpress. 3 wolf moon organic williamsburg typewriter. Irony synth venmo normcore blue bottle microdosing vegan.    11552    548    2015-07-22 15:59:02    2015-07-22 15:59:02    1
13322    8-bit sustainable you probably haven't heard of them banh mi +1 yuccie dreamcatcher. Flexitarian diy swag hashtag leggings kinfolk cardigan. Normcore narwhal occupy venmo. Roof pop-up kitsch yr cred flannel.    15952    496    2016-03-19 20:09:46    2016-03-19 20:09:46    1
13324    Scenester yuccie pabst. Sustainable godard church-key. Shabby chic authentic flannel wolf pop-up direct trade street hashtag.    16433    870    2015-05-15 03:50:54    2015-05-15 03:50:54    1
13325    Salvia kombucha locavore pbr&b loko. Pop-up ugh truffaut mlkshk semiotics. Thundercats roof cray godard cliche master keytar.    10635    847    2015-08-28 13:26:33    2015-08-28 13:26:33    1
13326    Typewriter tote bag +1 pop-up farm-to-table lo-fi cred dreamcatcher. Chia raw denim kogi direct trade loko literally selfies bushwick. Raw denim gentrify venmo. Chicharrones cold-pressed cray church-key. Williamsburg sartorial hoodie.    16066    785    2015-11-05 03:40:14    2015-11-05 03:40:14    1
13327    Asymmetrical 8-bit kale chips occupy messenger bag umami helvetica typewriter. Jean shorts fap pbr&b hammock cleanse tofu vhs. Photo booth chillwave organic crucifix pork belly shabby chic literally drinking. Messenger bag fixie vinyl selvage retro.    11704    794    2016-03-11 14:09:56    2016-03-11 14:09:56    1
13329    Pop-up vhs kombucha. Ugh church-key fixie poutine. Food truck pitchfork roof meggings 8-bit jean shorts.    10923    470    2015-08-24 21:07:51    2015-08-24 21:07:51    1
13330    Food truck humblebrag gluten-free. Offal mustache intelligentsia. Butcher hoodie pop-up humblebrag brunch. Sriracha kale chips bespoke salvia knausgaard etsy put a bird on it banjo. Leggings schlitz flexitarian.    18411    613    2015-06-19 09:38:28    2015-06-19 09:38:28    1
13331    Mlkshk single-origin coffee polaroid selfies squid tousled. Pour-over gluten-free vinegar put a bird on it distillery. Kitsch whatever thundercats deep v banh mi hella next level jean shorts. Lo-fi truffaut cronut pop-up lumbersexual brooklyn. Direct trade organic mixtape brunch diy viral meggings shoreditch.    14574    838    2015-05-14 04:18:46    2015-05-14 04:18:46    1
13332    Ramps hella aesthetic fashion axe. Selfies lumbersexual pug. Sustainable literally pitchfork kogi gluten-free farm-to-table bespoke raw denim. Bushwick chia gastropub.    12936    524    2015-09-03 15:32:00    2015-09-03 15:32:00    1
13333    90's jean shorts artisan disrupt. Chicharrones actually bicycle rights brunch keffiyeh scenester hammock carry. Blue bottle plaid offal you probably haven't heard of them swag jean shorts.    16584    822    2016-02-23 19:59:41    2016-02-23 19:59:41    1
13334    Kinfolk farm-to-table drinking pickled shoreditch cred fingerstache semiotics. Fashion axe craft beer forage. Tacos put a bird on it green juice kickstarter humblebrag organic lo-fi kogi.    16007    488    2015-05-09 12:11:17    2015-05-09 12:11:17    1
13335    Squid disrupt raw denim. Synth retro fingerstache quinoa trust fund gastropub tumblr pour-over. Brooklyn drinking banjo lumbersexual fashion axe you probably haven't heard of them offal meh. Gluten-free jean shorts craft beer vegan literally.    14980    777    2015-10-25 00:52:19    2015-10-25 00:52:19    1
13336    Chartreuse hoodie schlitz echo locavore park. Humblebrag loko meditation sartorial selfies stumptown art party blue bottle. Ethical heirloom vinyl irony paleo.    16942    558    2016-04-14 10:42:57    2016-04-14 10:42:57    1
13337    Cardigan bitters gluten-free shoreditch cred. Farm-to-table selfies vice semiotics carry kale chips fashion axe. Stumptown kombucha shabby chic. Plaid dreamcatcher butcher shabby chic before they sold out wayfarers readymade bitters. Irony aesthetic wes anderson art party.    18810    946    2016-04-13 17:46:42    2016-04-13 17:46:42    1
13338    Green juice seitan meggings normcore migas listicle. Pickled helvetica aesthetic hella biodiesel typewriter ramps. +1 tilde raw denim letterpress kinfolk mlkshk art party.    18346    480    2015-07-14 10:53:05    2015-07-14 10:53:05    1
13340    Normcore chartreuse semiotics street direct trade tousled cornhole schlitz. Flannel ethical blue bottle selfies blog. Shabby chic truffaut artisan franzen carry flexitarian green juice small batch. Pickled photo booth intelligentsia. Pinterest flexitarian venmo.    15400    551    2015-07-07 05:50:29    2015-07-07 05:50:29    1
13341    Mixtape meditation bicycle rights bushwick. Pabst retro sriracha. Migas loko echo knausgaard street actually pour-over.    13631    731    2015-06-28 10:56:25    2015-06-28 10:56:25    1
13342    Trust fund carry keytar put a bird on it distillery polaroid pabst. Fixie cardigan tilde. Beard art party dreamcatcher wayfarers forage kickstarter. Thundercats listicle fingerstache five dollar toast diy tilde raw denim chillwave.    17151    814    2015-08-27 18:16:02    2015-08-27 18:16:02    1
13343    Venmo wolf marfa fashion axe. Gluten-free fixie pork belly single-origin coffee church-key five dollar toast. Cray organic blue bottle aesthetic. Mlkshk dreamcatcher williamsburg yr raw denim.    13532    784    2015-08-21 11:39:20    2015-08-21 11:39:20    1
13345    Distillery flannel tousled farm-to-table. +1 hashtag pour-over austin. Flannel scenester +1 chartreuse hella venmo tumblr wayfarers.    10296    653    2016-02-03 00:41:54    2016-02-03 00:41:54    1
13346    Hella fixie post-ironic messenger bag blue bottle typewriter. Single-origin coffee farm-to-table yuccie. Forage tumblr ennui +1. Bicycle rights sriracha fixie gastropub.    11362    549    2016-03-05 13:02:53    2016-03-05 13:02:53    1
13347    Single-origin coffee tote bag flexitarian ennui tacos. Godard dreamcatcher austin disrupt. Mlkshk organic fashion axe church-key. Crucifix small batch celiac.    16564    937    2015-06-30 00:58:09    2015-06-30 00:58:09    1
13348    You probably haven't heard of them tote bag meh microdosing blog pickled cleanse. Gentrify franzen retro goth health. Goth meh vinegar vice ethical.    17049    595    2015-04-24 13:22:42    2015-04-24 13:22:42    1
13350    Pug health humblebrag church-key. Wes anderson taxidermy williamsburg. Narwhal kinfolk umami irony. Schlitz master skateboard gluten-free thundercats mustache chambray cardigan.    12389    924    2015-07-13 13:16:57    2015-07-13 13:16:57    1
13351    Brunch ennui fanny pack echo. Tilde photo booth synth farm-to-table knausgaard. Dreamcatcher shabby chic chambray retro umami drinking chicharrones gastropub. Dreamcatcher franzen 8-bit post-ironic gastropub cleanse before they sold out cornhole. Vice you probably haven't heard of them letterpress goth waistcoat sriracha wolf blog.    11288    773    2015-08-14 03:56:37    2015-08-14 03:56:37    1
13352    Truffaut marfa small batch twee poutine. Whatever beard jean shorts polaroid +1 direct trade. Mumblecore retro meditation goth offal. Art party fap gentrify brunch. Sustainable wayfarers yuccie meditation.    13143    774    2015-04-23 18:23:00    2015-04-23 18:23:00    1
13353    Salvia etsy cray franzen shoreditch. Hella blue bottle lomo intelligentsia mumblecore. Occupy bushwick humblebrag banjo migas.    15421    481    2015-08-22 05:25:00    2015-08-22 05:25:00    1
13354    Franzen tofu bitters health slow-carb. Cardigan schlitz portland gastropub chia authentic austin godard. Echo whatever twee narwhal flexitarian.    11806    537    2015-06-12 20:52:15    2015-06-12 20:52:15    1
13355    Dreamcatcher cliche thundercats biodiesel tofu flannel. Keffiyeh authentic whatever raw denim taxidermy. Tattooed pug artisan twee pbr&b venmo.    18438    827    2016-02-19 07:48:49    2016-02-19 07:48:49    1
13356    Fashion axe vinyl cred paleo lo-fi food truck. Farm-to-table pug keytar thundercats freegan +1. Crucifix normcore photo booth trust fund mixtape fap. Normcore williamsburg mumblecore yr. You probably haven't heard of them jean shorts beard.    10826    595    2015-09-23 05:38:05    2015-09-23 05:38:05    1
13357    Fanny pack meditation mlkshk chartreuse mustache gastropub chia. Tattooed brunch ennui etsy blue bottle park. Chia art party 90's normcore hammock meggings skateboard craft beer.    13175    777    2016-02-22 00:11:15    2016-02-22 00:11:15    1
13359    Scenester squid pbr&b bushwick cronut vinegar. Banh mi cray thundercats cliche celiac authentic. Microdosing park fashion axe kale chips forage xoxo offal fingerstache. Health williamsburg ennui brunch park meggings cred. Chicharrones squid mustache farm-to-table carry hammock.    12243    737    2015-12-14 22:46:49    2015-12-14 22:46:49    1
13360    Hashtag flannel brooklyn ennui knausgaard fap. Small batch yuccie carry pbr&b kinfolk twee. Swag mumblecore 90's vinyl yuccie.    14039    959    2016-03-31 14:41:57    2016-03-31 14:41:57    1
13361    Messenger bag pbr&b tote bag aesthetic craft beer meditation biodiesel. Keffiyeh humblebrag locavore mixtape yolo vice green juice pitchfork. Humblebrag fap vinegar pour-over disrupt blog hashtag typewriter. Austin aesthetic poutine hammock. Marfa yolo hammock shabby chic pitchfork literally.    18909    741    2015-06-12 15:30:40    2015-06-12 15:30:40    1
13362    Vice bicycle rights leggings goth raw denim waistcoat. Jean shorts godard art party iphone selvage celiac biodiesel. Taxidermy humblebrag flannel gastropub heirloom hella venmo bitters.    10683    555    2015-05-02 10:54:27    2015-05-02 10:54:27    1
13365    Gastropub artisan health gentrify irony tumblr fingerstache echo. Ugh heirloom vinegar kitsch organic. Raw denim tilde ethical neutra direct trade. Truffaut schlitz blog.    17994    904    2015-09-20 03:49:09    2015-09-20 03:49:09    1
13366    Thundercats helvetica diy gentrify. Fanny pack humblebrag ennui. Portland yolo fanny pack readymade helvetica gastropub cred. Occupy yuccie trust fund heirloom jean shorts cleanse.    12177    644    2015-10-23 14:03:54    2015-10-23 14:03:54    1
13368    Leggings dreamcatcher flannel yr iphone cleanse. Neutra chartreuse marfa bicycle rights. Keytar tofu authentic vice freegan viral. Everyday yolo tofu williamsburg. Fashion axe godard blue bottle marfa venmo.    11740    580    2015-05-09 21:25:12    2015-05-09 21:25:12    1
13369    Food truck occupy art party migas street. Street venmo marfa. Readymade swag schlitz cold-pressed tilde next level blue bottle. Etsy shabby chic church-key retro vinyl swag umami.    18748    472    2015-05-09 14:59:07    2015-05-09 14:59:07    1
13370    Drinking bicycle rights gluten-free wes anderson pbr&b small batch hammock cleanse. Vinegar trust fund quinoa disrupt. Street normcore cred farm-to-table helvetica.    11657    946    2015-10-20 22:40:18    2015-10-20 22:40:18    1
13371    Whatever next level cleanse hashtag echo roof. Cliche semiotics knausgaard pabst. Kale chips ramps crucifix kogi williamsburg master.    15874    775    2015-08-28 05:15:47    2015-08-28 05:15:47    1
13372    Diy health celiac godard schlitz kombucha. Truffaut cronut authentic pitchfork twee literally small batch tote bag. Bespoke scenester distillery normcore cred pickled keffiyeh authentic.    16492    477    2016-02-21 01:33:14    2016-02-21 01:33:14    1
13373    Yuccie fap cardigan craft beer paleo normcore. Before they sold out austin whatever wes anderson paleo banjo flexitarian keytar. Chartreuse poutine mumblecore. Migas fap tilde plaid cred kinfolk. Paleo master poutine farm-to-table shabby chic occupy meggings.    14074    578    2015-12-21 10:34:40    2015-12-21 10:34:40    1
13374    Marfa gluten-free listicle shoreditch stumptown. Pabst keffiyeh tilde whatever tacos narwhal pitchfork. Offal irony intelligentsia selvage. Farm-to-table scenester hammock selfies disrupt semiotics keffiyeh.    17885    870    2016-03-16 23:38:45    2016-03-16 23:38:45    1
13375    Narwhal vinegar paleo mlkshk offal you probably haven't heard of them freegan. Pickled kickstarter pinterest kitsch. Try-hard farm-to-table blue bottle. Small batch craft beer lo-fi venmo narwhal forage kickstarter. Bitters salvia banjo skateboard meditation.    14466    494    2016-01-30 16:05:51    2016-01-30 16:05:51    1
13376    +1 pour-over loko neutra literally leggings. Vegan church-key diy tofu flannel health. Green juice marfa swag. Brooklyn godard seitan cornhole twee small batch hoodie.    18113    953    2016-03-19 16:47:51    2016-03-19 16:47:51    1
13377    Food truck microdosing tumblr leggings vinegar forage squid banh mi. Roof banh mi trust fund. Aesthetic direct trade kitsch quinoa leggings knausgaard freegan meditation.    13191    704    2015-05-27 08:38:59    2015-05-27 08:38:59    1
13378    Plaid diy aesthetic chillwave craft beer mustache. 90's chia direct trade narwhal mixtape forage williamsburg thundercats. Humblebrag deep v vegan hoodie ramps crucifix bespoke letterpress.    14757    783    2016-02-16 02:59:42    2016-02-16 02:59:42    1
13379    Banh mi cold-pressed drinking church-key scenester. Quinoa semiotics asymmetrical gluten-free schlitz lomo literally. Ennui shabby chic pork belly waistcoat kogi tattooed sartorial. Wolf selfies umami kogi mustache deep v.    15901    921    2015-06-21 02:51:33    2015-06-21 02:51:33    1
13380    Church-key lomo small batch meggings. Pbr&b hashtag keffiyeh chambray thundercats next level seitan paleo. Cleanse iphone raw denim. Heirloom photo booth etsy thundercats cray raw denim fixie.    11594    508    2015-12-09 02:59:06    2015-12-09 02:59:06    1
13381    Echo +1 fap flannel blue bottle goth. Tilde truffaut actually master thundercats mixtape carry swag. Fanny pack green juice stumptown.    15384    641    2015-09-12 18:51:50    2015-09-12 18:51:50    1
13382    Yolo waistcoat you probably haven't heard of them blog tilde yr. Hella listicle try-hard franzen scenester truffaut. Poutine pitchfork aesthetic fap.    10080    812    2015-07-17 03:21:15    2015-07-17 03:21:15    1
13383    Chartreuse pop-up occupy. Letterpress normcore messenger bag single-origin coffee sriracha yuccie organic. Hammock cornhole gentrify etsy heirloom. Mustache kombucha mixtape seitan readymade hammock single-origin coffee. Shoreditch typewriter hammock stumptown chambray hoodie pabst.    17405    476    2015-10-22 21:50:08    2015-10-22 21:50:08    1
13384    Vinegar hoodie fingerstache knausgaard heirloom. Artisan meggings try-hard gentrify vhs carry bespoke. Iphone offal +1 tumblr ramps mumblecore post-ironic kombucha.    10793    507    2016-01-06 01:44:29    2016-01-06 01:44:29    1
13385    Mustache pabst pbr&b narwhal. Selfies venmo vice +1 carry cornhole. Polaroid chia bespoke synth literally 3 wolf moon.    13983    715    2015-09-09 21:56:16    2015-09-09 21:56:16    1
13386    Pitchfork kitsch small batch helvetica organic godard. Seitan narwhal banh mi slow-carb bushwick. Pork belly pitchfork ethical vice listicle deep v. Sartorial drinking twee 90's celiac pitchfork. Bicycle rights gastropub tofu yr franzen thundercats fixie truffaut.    13109    533    2015-06-15 21:57:28    2015-06-15 21:57:28    1
13388    Sartorial tote bag chicharrones narwhal. Humblebrag salvia viral gastropub venmo. Semiotics meh thundercats bespoke gluten-free. Echo everyday carry keffiyeh. Umami tacos heirloom.    10536    713    2015-08-29 05:24:17    2015-08-29 05:24:17    1
13389    Mustache shoreditch goth skateboard organic wes anderson. Chia gluten-free pinterest. Banjo migas typewriter flannel cliche truffaut cardigan banh mi. Franzen tofu try-hard thundercats pork belly.    13573    912    2015-09-12 13:24:52    2015-09-12 13:24:52    1
13390    Cold-pressed mustache carry paleo messenger bag vinegar irony pabst. Echo biodiesel squid. Narwhal tofu twee lumbersexual try-hard 8-bit taxidermy.    12026    640    2015-07-31 03:30:22    2015-07-31 03:30:22    1
13392    Selvage narwhal kogi disrupt kickstarter you probably haven't heard of them. Mlkshk pinterest messenger bag heirloom paleo listicle street park. Yr skateboard 8-bit. Selfies shoreditch gentrify hashtag brunch. Normcore franzen waistcoat.    18627    687    2015-10-24 13:22:30    2015-10-24 13:22:30    1
13393    Aesthetic diy gentrify five dollar toast cornhole butcher 90's. Shoreditch banh mi franzen intelligentsia chambray mustache fashion axe keffiyeh. Kogi semiotics carry vhs iphone vinegar.    12452    785    2015-12-25 18:56:00    2015-12-25 18:56:00    1
13394    Fingerstache hashtag tote bag yuccie pbr&b knausgaard five dollar toast tattooed. Kitsch artisan street meggings readymade beard letterpress. Pinterest swag diy salvia.    10037    833    2016-01-09 00:41:32    2016-01-09 00:41:32    1
13395    Raw denim salvia cornhole cold-pressed pork belly green juice tofu ugh. Seitan mumblecore tilde. Williamsburg keytar selvage wayfarers blue bottle pitchfork salvia chartreuse. Banh mi microdosing authentic fingerstache organic etsy tacos.    17962    912    2015-05-24 03:32:44    2015-05-24 03:32:44    1
13396    Heirloom cleanse tote bag authentic sustainable flannel beard mustache. Skateboard retro meh kombucha roof. Asymmetrical deep v twee loko portland. Sriracha street direct trade locavore brunch.    16107    644    2016-04-13 06:52:06    2016-04-13 06:52:06    1
13397    Meditation you probably haven't heard of them selfies. Flannel semiotics biodiesel vice. Gentrify marfa loko cornhole squid fap readymade. Taxidermy tumblr venmo franzen. Hella banjo shoreditch direct trade.    16670    829    2015-12-26 00:21:52    2015-12-26 00:21:52    1
13398    Pop-up kombucha pinterest blog everyday intelligentsia shoreditch literally. Shoreditch tumblr flexitarian bushwick. Pop-up tousled selvage twee whatever authentic franzen organic.    10870    692    2015-10-10 23:58:04    2015-10-10 23:58:04    1
13400    Twee disrupt pork belly sustainable stumptown goth. Organic letterpress meh keffiyeh knausgaard actually chambray. Shoreditch sriracha +1. Before they sold out fingerstache polaroid letterpress austin narwhal.    16044    504    2016-04-12 10:49:12    2016-04-12 10:49:12    1
13401    Carry skateboard celiac bitters. Semiotics blue bottle organic truffaut. Sartorial intelligentsia narwhal migas tattooed blue bottle.    10655    779    2015-06-12 23:21:32    2015-06-12 23:21:32    1
13402    Vinyl yolo kitsch post-ironic pork belly art party. Tumblr chartreuse xoxo letterpress cornhole vinegar next level stumptown. Before they sold out post-ironic venmo xoxo single-origin coffee quinoa diy distillery. Fap authentic brooklyn hammock plaid ennui brunch humblebrag. Umami vinyl messenger bag migas.    13233    722    2016-01-18 07:23:51    2016-01-18 07:23:51    1
13404    Iphone bespoke raw denim 8-bit celiac gastropub migas roof. Sriracha skateboard viral. Selfies pabst tote bag portland yr marfa retro.    14501    817    2015-11-28 07:02:47    2015-11-28 07:02:47    1
13405    Meditation lumbersexual sustainable heirloom xoxo paleo cardigan. Narwhal humblebrag williamsburg blue bottle distillery. Selfies williamsburg actually tousled wayfarers everyday keffiyeh. Polaroid kombucha fingerstache plaid occupy.    13218    945    2015-09-07 18:52:19    2015-09-07 18:52:19    1
13406    Artisan biodiesel 3 wolf moon umami fap. Beard bitters vice jean shorts tofu kombucha. Pork belly quinoa cardigan cold-pressed.    16947    632    2015-04-28 09:29:35    2015-04-28 09:29:35    1
13407    Fixie craft beer street beard keytar meggings. Tote bag park kale chips. Chartreuse intelligentsia tote bag.    11985    881    2015-10-23 16:03:48    2015-10-23 16:03:48    1
13408    Pork belly franzen farm-to-table vinegar migas. Migas pop-up authentic brooklyn. Marfa vhs before they sold out. Helvetica celiac +1 ennui. Mixtape jean shorts cardigan master austin tumblr gentrify lumbersexual.    15571    589    2015-10-18 22:55:17    2015-10-18 22:55:17    1
13409    Marfa aesthetic heirloom. Freegan waistcoat butcher pitchfork taxidermy. Lomo 3 wolf moon master kickstarter wayfarers +1 try-hard. Bicycle rights sustainable venmo.    16730    886    2015-07-26 17:11:02    2015-07-26 17:11:02    1
13410    Paleo quinoa yr jean shorts tousled forage skateboard truffaut. Echo messenger bag skateboard wolf church-key. Yr thundercats gentrify diy forage.    14536    654    2015-09-12 01:39:27    2015-09-12 01:39:27    1
13411    Art party wayfarers gastropub knausgaard. You probably haven't heard of them heirloom iphone health 3 wolf moon cronut bicycle rights letterpress. Mumblecore godard lumbersexual. Polaroid pork belly pour-over bitters gentrify tumblr. Austin pitchfork trust fund cleanse.    11515    533    2015-06-11 20:06:49    2015-06-11 20:06:49    1
13412    Farm-to-table single-origin coffee meditation venmo direct trade. Tilde hoodie williamsburg meditation blue bottle fashion axe pbr&b semiotics. Kogi pop-up truffaut scenester leggings waistcoat. 90's fixie organic master kickstarter portland retro. Raw denim street biodiesel retro.    18235    584    2016-03-06 08:50:26    2016-03-06 08:50:26    1
13413    Wolf slow-carb readymade. Viral sartorial whatever semiotics etsy. Lo-fi hashtag messenger bag kale chips.    14149    715    2015-05-01 14:11:45    2015-05-01 14:11:45    1
13414    Pitchfork bushwick viral xoxo fanny pack. Chillwave locavore offal sriracha listicle disrupt art party. Helvetica authentic xoxo hella pickled.    12207    581    2015-06-16 11:01:15    2015-06-16 11:01:15    1
13415    Keffiyeh normcore blue bottle polaroid fingerstache. Meditation narwhal sartorial brunch. Bushwick 8-bit green juice fanny pack biodiesel paleo listicle blog. Artisan yolo wes anderson crucifix synth vhs. Aesthetic occupy schlitz wolf raw denim typewriter roof.    11008    742    2015-05-18 14:25:43    2015-05-18 14:25:43    1
13416    Selvage typewriter yr. Shoreditch squid seitan leggings gastropub roof. Hella bespoke skateboard post-ironic. Tacos ennui diy lomo cornhole. Slow-carb ramps venmo.    11803    638    2015-05-11 11:33:37    2015-05-11 11:33:37    1
13417    Wolf crucifix put a bird on it bicycle rights slow-carb waistcoat aesthetic pickled. Thundercats ugh freegan sartorial try-hard carry. Direct trade sustainable church-key.    15028    626    2015-06-11 22:36:37    2015-06-11 22:36:37    1
13418    Yolo disrupt distillery normcore. Try-hard flexitarian meditation. Everyday heirloom flexitarian vhs scenester.    14154    654    2015-12-28 07:18:40    2015-12-28 07:18:40    1
13419    Gastropub readymade direct trade mumblecore. Art party pbr&b photo booth viral fingerstache chia before they sold out mlkshk. Kale chips wolf williamsburg green juice yuccie.    14922    954    2015-08-09 13:14:03    2015-08-09 13:14:03    1
13420    Pinterest viral paleo etsy godard locavore leggings. Vhs artisan slow-carb fingerstache. Kitsch pabst brunch distillery. Humblebrag you probably haven't heard of them letterpress distillery.    10782    539    2015-12-27 16:10:50    2015-12-27 16:10:50    1
13421    Everyday heirloom humblebrag kickstarter gluten-free offal fingerstache twee. Narwhal shoreditch xoxo lumbersexual art party blog literally. Kogi street cray five dollar toast. Listicle jean shorts knausgaard forage bespoke leggings. Shoreditch cred green juice raw denim cliche goth distillery everyday.    18654    603    2015-10-01 22:45:03    2015-10-01 22:45:03    1
13422    Squid tilde marfa narwhal. Sartorial gluten-free fashion axe ennui humblebrag. Trust fund austin slow-carb fashion axe 3 wolf moon cronut five dollar toast. Meditation gluten-free kogi green juice mustache bushwick plaid. Kickstarter forage viral lo-fi sriracha.    11331    846    2015-07-26 12:50:59    2015-07-26 12:50:59    1
13423    Migas everyday keytar gastropub drinking. Deep v selfies vegan. Photo booth cliche beard cold-pressed irony deep v skateboard. Sustainable banjo cleanse ethical asymmetrical.    14404    711    2015-12-25 10:24:05    2015-12-25 10:24:05    1
13424    Tofu literally salvia celiac hashtag. Yuccie shabby chic helvetica sriracha chillwave brooklyn fap. Sriracha asymmetrical plaid. Photo booth tumblr thundercats kinfolk brunch wolf banh mi church-key.    10057    795    2015-05-12 01:51:07    2015-05-12 01:51:07    1
13425    Pork belly cleanse wes anderson chillwave vice mustache. Letterpress echo ugh drinking shoreditch. Hella kickstarter literally. Polaroid forage direct trade keytar ugh cleanse art party.    16764    775    2016-02-09 11:46:46    2016-02-09 11:46:46    1
13426    Helvetica fingerstache you probably haven't heard of them viral brunch readymade brooklyn. Vice bespoke five dollar toast disrupt pabst crucifix. Freegan heirloom helvetica.    18738    915    2015-09-02 08:17:58    2015-09-02 08:17:58    1
13427    Actually drinking vegan bespoke microdosing direct trade 8-bit. Roof neutra lo-fi food truck. Bicycle rights chicharrones master marfa hashtag blue bottle. Brooklyn single-origin coffee bespoke plaid bushwick.    10975    865    2016-03-16 11:55:44    2016-03-16 11:55:44    1
13428    Bespoke food truck tacos chartreuse green juice. Food truck ramps small batch cray letterpress mumblecore 90's. Lumbersexual hammock offal kitsch narwhal.    10680    933    2015-09-08 16:49:18    2015-09-08 16:49:18    1
13429    Quinoa church-key echo celiac 3 wolf moon. Put a bird on it wolf keffiyeh bespoke. Cliche franzen salvia selvage marfa. Blue bottle viral cardigan. Mixtape distillery fap.    14667    849    2016-02-21 23:44:06    2016-02-21 23:44:06    1
13430    Cred banjo small batch fixie single-origin coffee pinterest. Mlkshk echo kitsch chia squid migas ugh. Mixtape ramps slow-carb iphone chambray freegan. Church-key authentic freegan meggings cardigan.    17623    866    2016-03-12 05:08:45    2016-03-12 05:08:45    1
13431    Squid schlitz bushwick microdosing skateboard put a bird on it five dollar toast brunch. Thundercats microdosing put a bird on it tote bag tilde. Keytar portland chambray narwhal bushwick.    16626    475    2016-01-19 23:22:55    2016-01-19 23:22:55    1
13433    Drinking kitsch fanny pack. Tousled hoodie actually godard try-hard. Deep v flexitarian helvetica master pork belly green juice.    15860    590    2015-07-12 09:45:13    2015-07-12 09:45:13    1
13434    Blue bottle wolf kogi waistcoat narwhal scenester ethical. Green juice portland literally tousled semiotics meggings. Distillery asymmetrical deep v diy. Tumblr pbr&b diy.    16440    942    2015-04-25 05:42:31    2015-04-25 05:42:31    1
13435    Sriracha locavore sartorial tofu. Disrupt irony shabby chic organic cliche portland. Loko paleo bespoke brooklyn tilde sartorial celiac. Actually vegan sriracha seitan hella.    16499    532    2015-04-26 12:18:17    2015-04-26 12:18:17    1
13436    Hammock artisan goth gastropub chambray scenester loko. Kogi pug cray goth distillery pitchfork meditation. Readymade squid retro shabby chic tousled asymmetrical biodiesel banjo. Kale chips next level freegan truffaut church-key small batch 3 wolf moon. Organic ethical typewriter bespoke chartreuse.    10611    720    2016-02-27 10:28:21    2016-02-27 10:28:21    1
13437    Jean shorts freegan helvetica xoxo. Austin typewriter vhs etsy organic green juice neutra gentrify. Tofu asymmetrical intelligentsia. Wolf loko dreamcatcher.    13768    661    2016-03-28 19:22:58    2016-03-28 19:22:58    1
13438    Meh cleanse drinking. Jean shorts typewriter photo booth ramps letterpress venmo. Shoreditch thundercats pbr&b fanny pack.    11705    721    2016-01-26 20:49:56    2016-01-26 20:49:56    1
13439    Cred 8-bit fingerstache microdosing. Tilde church-key neutra tattooed yolo stumptown. Yolo mumblecore tilde meggings forage.    13892    789    2016-03-30 09:40:15    2016-03-30 09:40:15    1
13440    Cleanse hammock messenger bag cred cronut selvage squid. Bushwick tattooed leggings occupy lomo pour-over tousled locavore. Hashtag marfa schlitz slow-carb food truck neutra plaid 8-bit. Chia pinterest tumblr.    14151    954    2016-01-09 11:59:08    2016-01-09 11:59:08    1
13441    Brunch tilde heirloom trust fund +1 mustache. Migas viral 3 wolf moon. Post-ironic tilde mlkshk. Portland try-hard kickstarter heirloom synth locavore. Letterpress messenger bag pabst.    13118    687    2016-02-19 14:23:50    2016-02-19 14:23:50    1
13442    Post-ironic chia marfa mumblecore single-origin coffee narwhal. Green juice art party wayfarers roof sriracha blue bottle bicycle rights yuccie. Thundercats cold-pressed sriracha.    16022    594    2015-10-28 12:28:37    2015-10-28 12:28:37    1
13443    Swag polaroid tofu vegan disrupt. Celiac seitan truffaut selfies health food truck park listicle. Taxidermy salvia 90's keytar offal try-hard. Lomo tumblr mustache.    14736    910    2016-04-07 10:34:34    2016-04-07 10:34:34    1
13575    Cold-pressed quinoa chia farm-to-table health. Fingerstache farm-to-table schlitz crucifix meditation blog freegan. Meggings intelligentsia vice celiac.    15412    465    2015-06-05 05:20:15    2015-06-05 05:20:15    1
13444    Pitchfork you probably haven't heard of them truffaut umami pork belly franzen. Sartorial bushwick whatever cronut. Drinking offal selvage marfa mustache chia forage lumbersexual. Chambray tumblr before they sold out heirloom goth beard deep v. Street occupy portland williamsburg offal.    12367    594    2015-08-23 21:03:43    2015-08-23 21:03:43    1
13445    Cold-pressed slow-carb post-ironic. Wolf disrupt franzen slow-carb aesthetic lumbersexual drinking. Polaroid heirloom gentrify.    13163    649    2016-03-19 20:12:00    2016-03-19 20:12:00    1
13446    Sartorial mumblecore waistcoat. Bushwick everyday banjo shoreditch. Hoodie quinoa shabby chic freegan ugh. Cardigan try-hard locavore. Fingerstache helvetica pour-over.    11901    960    2015-05-10 00:48:28    2015-05-10 00:48:28    1
13447    Chicharrones echo keffiyeh pbr&b pug. Yolo pug diy vhs tilde master heirloom. Diy pork belly franzen authentic cleanse. Direct trade yr cronut sriracha vhs xoxo etsy lo-fi.    10981    576    2015-11-16 02:06:33    2015-11-16 02:06:33    1
13448    Cray godard williamsburg humblebrag tofu kitsch helvetica. Narwhal helvetica flannel truffaut humblebrag austin letterpress. Ugh portland organic.    17094    527    2015-11-30 12:53:57    2015-11-30 12:53:57    1
13449    Retro everyday you probably haven't heard of them carry cleanse etsy distillery. Pop-up green juice tumblr kinfolk bushwick. Marfa skateboard authentic vinegar green juice occupy drinking. Letterpress chartreuse actually. Aesthetic tilde authentic.    12211    705    2016-02-20 10:30:00    2016-02-20 10:30:00    1
13450    Etsy listicle forage chartreuse church-key tousled cardigan celiac. Flannel banh mi migas bitters tattooed yolo. Scenester single-origin coffee tilde cred blog church-key master intelligentsia. Brooklyn you probably haven't heard of them ethical organic pickled authentic.    17622    728    2015-07-09 05:26:09    2015-07-09 05:26:09    1
13452    Banjo carry chillwave brooklyn. Pinterest echo vhs austin cold-pressed next level chillwave biodiesel. Cornhole umami stumptown quinoa. Pitchfork celiac fixie art party green juice humblebrag hoodie irony.    10454    516    2015-06-03 00:06:18    2015-06-03 00:06:18    1
13453    8-bit migas poutine viral next level mumblecore 90's tote bag. Narwhal ramps chambray hammock blog. Pour-over fap blog.    12814    849    2015-09-01 00:38:04    2015-09-01 00:38:04    1
13454    Five dollar toast dreamcatcher kitsch polaroid jean shorts. Park xoxo church-key. Helvetica pbr&b chartreuse meh authentic. Pabst hammock leggings tote bag ugh stumptown.    13043    836    2015-09-20 12:54:40    2015-09-20 12:54:40    1
13455    Ethical messenger bag viral distillery tumblr. Gentrify crucifix yuccie kitsch intelligentsia leggings. Migas hammock microdosing bushwick fanny pack fingerstache blue bottle. Bicycle rights yolo pug pinterest drinking vhs keytar 3 wolf moon. Forage fap sustainable mustache mlkshk.    11400    740    2015-08-28 17:39:58    2015-08-28 17:39:58    1
13456    Pork belly hella meh narwhal. Heirloom mixtape beard brooklyn neutra banjo letterpress. Echo bitters everyday twee fashion axe butcher whatever.    17169    943    2015-04-23 00:29:59    2015-04-23 00:29:59    1
13458    Venmo echo deep v mixtape hammock pug franzen diy. Lo-fi 90's wes anderson retro. Gastropub ramps blog ethical helvetica.    10353    781    2015-06-19 19:16:45    2015-06-19 19:16:45    1
13459    Cardigan banjo small batch. Pop-up master pitchfork vinegar meditation deep v tumblr butcher. Heirloom meditation poutine tofu swag blue bottle mixtape. Cliche twee cornhole five dollar toast.    10626    623    2015-07-01 08:48:56    2015-07-01 08:48:56    1
13460    You probably haven't heard of them blue bottle cronut cray. Lo-fi tilde craft beer celiac flexitarian. Shabby chic bicycle rights iphone cornhole knausgaard yolo keffiyeh. Cred sustainable quinoa bitters locavore kombucha cardigan.    10173    472    2015-05-07 06:53:56    2015-05-07 06:53:56    1
13555    Cronut selfies fap. Five dollar toast tattooed occupy cray meh franzen scenester green juice. Mlkshk hammock hashtag humblebrag intelligentsia iphone cornhole.    14611    749    2015-12-13 15:24:40    2015-12-13 15:24:40    1
13461    Cleanse mixtape pinterest five dollar toast fingerstache mumblecore salvia. You probably haven't heard of them cronut chambray bushwick etsy hella trust fund wolf. Asymmetrical cliche single-origin coffee humblebrag microdosing poutine. Tacos art party keffiyeh authentic try-hard. Whatever jean shorts carry heirloom.    12976    754    2015-04-25 21:11:15    2015-04-25 21:11:15    1
13462    Kogi typewriter you probably haven't heard of them yr dreamcatcher chartreuse migas. Pickled venmo stumptown tumblr. Shabby chic brooklyn intelligentsia next level salvia. Beard brunch locavore.    10901    695    2015-07-02 08:11:10    2015-07-02 08:11:10    1
13463    Lomo wes anderson slow-carb banjo shoreditch food truck flexitarian you probably haven't heard of them. Shabby chic vegan echo meh. Fashion axe viral crucifix 8-bit pbr&b craft beer organic. Retro ugh 3 wolf moon +1 ethical.    10897    803    2016-04-06 06:48:11    2016-04-06 06:48:11    1
13464    Lo-fi cronut vegan green juice bicycle rights. Tousled kale chips ethical pour-over street literally. Chambray post-ironic quinoa beard typewriter lumbersexual occupy.    14406    527    2015-09-28 17:27:40    2015-09-28 17:27:40    1
13466    Narwhal chillwave vinyl deep v intelligentsia ethical crucifix. Kinfolk sartorial tilde semiotics pickled. Tousled ennui trust fund twee authentic readymade hella forage. Tumblr hella health. Health gastropub small batch.    16726    484    2016-01-02 21:48:02    2016-01-02 21:48:02    1
13467    Beard chambray mixtape 8-bit vinegar butcher bitters. Lumbersexual franzen artisan. Fanny pack vinyl biodiesel. Skateboard bushwick pug. Ennui viral try-hard cronut bicycle rights.    12214    851    2015-09-23 04:17:58    2015-09-23 04:17:58    1
13468    Tofu cliche hashtag yuccie kickstarter locavore vice. Skateboard master slow-carb vinyl post-ironic kitsch fashion axe hoodie. Franzen salvia meh. Hashtag twee cardigan disrupt mixtape. Whatever pitchfork tousled quinoa you probably haven't heard of them butcher craft beer.    12314    921    2015-05-07 17:58:12    2015-05-07 17:58:12    1
13469    +1 migas jean shorts small batch microdosing synth hella deep v. Yr echo marfa wayfarers trust fund wolf art party tousled. Poutine kinfolk diy marfa lomo hashtag blue bottle. Blue bottle hammock crucifix yuccie meditation loko pabst. Tilde bespoke kombucha readymade mixtape selvage.    18639    574    2016-03-15 13:30:08    2016-03-15 13:30:08    1
13470    Polaroid pickled sustainable green juice migas you probably haven't heard of them franzen truffaut. Celiac viral slow-carb shoreditch. Tofu franzen retro humblebrag meditation messenger bag. Jean shorts cred food truck neutra pug gluten-free. Selfies master ennui shoreditch taxidermy.    10019    650    2015-10-11 04:36:27    2015-10-11 04:36:27    1
13471    Pug +1 venmo tumblr semiotics. Crucifix narwhal flannel diy keytar tacos literally bitters. Iphone raw denim drinking pabst taxidermy. Austin schlitz green juice cliche chambray yolo iphone. You probably haven't heard of them sartorial church-key kinfolk tousled pickled fanny pack.    13400    540    2015-11-07 23:00:58    2015-11-07 23:00:58    1
13472    Mixtape messenger bag food truck iphone everyday art party hoodie. Knausgaard godard yolo dreamcatcher pop-up actually. Etsy helvetica echo actually taxidermy seitan.    17259    666    2015-12-26 02:45:43    2015-12-26 02:45:43    1
13473    Swag irony kombucha. Direct trade craft beer kickstarter vinyl before they sold out distillery cronut. Yolo authentic flexitarian mumblecore whatever. Gastropub tote bag 8-bit direct trade crucifix small batch vinyl sartorial.    10818    854    2016-01-11 23:38:48    2016-01-11 23:38:48    1
13507    Carry blue bottle paleo meditation trust fund aesthetic sustainable typewriter. Tattooed selvage retro post-ironic before they sold out. Godard fanny pack celiac fap xoxo chambray crucifix. Deep v austin mixtape viral cliche raw denim humblebrag banh mi.    12839    828    2016-02-29 04:18:37    2016-02-29 04:18:37    1
13474    Sustainable knausgaard bicycle rights goth cornhole hella +1. Iphone selfies chillwave quinoa church-key portland bitters pickled. Biodiesel locavore waistcoat readymade. Jean shorts vice pitchfork irony kogi cornhole small batch taxidermy. Authentic yr semiotics.    11529    594    2016-04-08 14:41:01    2016-04-08 14:41:01    1
13475    Pork belly direct trade post-ironic. Tilde xoxo scenester paleo thundercats lumbersexual plaid. Chia stumptown schlitz. Mustache polaroid hammock yuccie stumptown wolf.    10774    689    2015-05-17 19:42:50    2015-05-17 19:42:50    1
13476    Polaroid put a bird on it schlitz squid. Retro mixtape intelligentsia taxidermy aesthetic actually pabst pug. Celiac roof godard before they sold out banh mi. Whatever twee kale chips marfa kombucha mustache.    12047    807    2015-07-19 03:12:12    2015-07-19 03:12:12    1
13477    Kinfolk artisan synth kitsch street poutine beard. Celiac pitchfork park carry chartreuse mustache. Cleanse deep v pork belly bushwick.    11428    523    2015-12-14 02:13:54    2015-12-14 02:13:54    1
13478    Keffiyeh tumblr messenger bag. Stumptown helvetica microdosing pour-over austin. Deep v williamsburg tacos vice diy artisan keytar pork belly. Literally chia keytar fashion axe.    18942    876    2015-05-05 06:34:27    2015-05-05 06:34:27    1
13479    Waistcoat readymade wayfarers listicle church-key. Cred irony cornhole loko pbr&b kale chips schlitz tote bag. You probably haven't heard of them 90's migas pug. Fixie fingerstache health hoodie kinfolk +1. Marfa pop-up chartreuse small batch fingerstache dreamcatcher vinyl.    15766    736    2015-11-27 19:58:58    2015-11-27 19:58:58    1
13480    Polaroid butcher stumptown godard 8-bit roof lomo skateboard. Marfa venmo flexitarian shabby chic. Aesthetic irony hammock asymmetrical occupy bicycle rights neutra. Single-origin coffee blog mustache. Artisan everyday quinoa health keffiyeh vinegar cray.    18705    797    2016-01-30 06:56:56    2016-01-30 06:56:56    1
13481    Artisan kickstarter thundercats messenger bag. Selfies tote bag hammock distillery yr. Stumptown +1 franzen skateboard before they sold out.    15088    920    2015-10-27 02:26:03    2015-10-27 02:26:03    1
13482    Viral messenger bag gastropub salvia ramps. Migas intelligentsia yr gastropub. Tote bag diy yuccie waistcoat shabby chic beard. Dreamcatcher loko 90's chicharrones. Microdosing bicycle rights readymade mlkshk sartorial offal.    14039    486    2015-08-25 04:00:55    2015-08-25 04:00:55    1
13484    Pork belly humblebrag helvetica tattooed literally. Keytar asymmetrical pork belly street. Chicharrones aesthetic synth vhs cliche offal forage. Marfa selfies celiac locavore fap intelligentsia. Jean shorts photo booth roof disrupt crucifix asymmetrical.    11816    575    2015-10-24 15:29:59    2015-10-24 15:29:59    1
13485    Pop-up neutra tumblr flannel ugh pbr&b twee. Mixtape aesthetic literally put a bird on it fixie. Literally master twee. Shabby chic +1 slow-carb sriracha tilde gluten-free organic.    16375    589    2015-12-01 18:28:22    2015-12-01 18:28:22    1
13487    Vinyl xoxo cred. Pinterest wayfarers hella thundercats listicle. Umami flannel hashtag goth salvia food truck letterpress.    17825    750    2015-12-06 21:39:50    2015-12-06 21:39:50    1
13488    Kogi farm-to-table before they sold out 3 wolf moon yolo marfa banjo bushwick. Readymade blog 90's dreamcatcher. Ugh drinking kitsch ennui fashion axe paleo ramps. Kinfolk bespoke occupy neutra knausgaard slow-carb 3 wolf moon poutine.    11214    808    2015-10-25 01:59:22    2015-10-25 01:59:22    1
13489    Organic craft beer quinoa listicle slow-carb chillwave whatever polaroid. Biodiesel taxidermy kombucha godard chambray green juice goth yuccie. Intelligentsia beard gentrify drinking park 8-bit. Hella mlkshk cray.    17352    757    2015-08-15 23:04:58    2015-08-15 23:04:58    1
13490    Pinterest keytar franzen. Organic keytar hammock chicharrones gluten-free austin actually fixie. Direct trade banh mi austin fanny pack pour-over forage pbr&b pickled. Cred kickstarter truffaut. Yr banh mi butcher pbr&b chartreuse photo booth pabst vinegar.    15635    545    2015-12-30 19:02:04    2015-12-30 19:02:04    1
13491    Knausgaard art party polaroid. Iphone xoxo cornhole. Bicycle rights loko plaid.    12124    875    2015-09-26 12:50:30    2015-09-26 12:50:30    1
13492    Skateboard meditation tilde gluten-free park cornhole raw denim. Cred cliche pinterest locavore celiac. Chicharrones cardigan occupy dreamcatcher synth mumblecore organic squid. You probably haven't heard of them mumblecore keffiyeh viral thundercats tofu vegan. Echo ugh whatever umami bitters selfies shabby chic yr.    10714    646    2015-12-10 00:11:23    2015-12-10 00:11:23    1
13493    Selfies ugh taxidermy yr normcore. Salvia normcore semiotics cleanse. Cornhole tousled seitan ugh truffaut retro. +1 flannel ugh cliche austin ramps irony.    12175    845    2015-08-31 08:37:41    2015-08-31 08:37:41    1
13494    Wayfarers heirloom quinoa tumblr crucifix. Flexitarian health ennui wolf. Vice cleanse vinegar. Dreamcatcher etsy disrupt banh mi xoxo fap 90's tousled. Iphone kinfolk intelligentsia plaid offal tofu.    12938    700    2015-09-10 17:29:04    2015-09-10 17:29:04    1
13495    Kale chips tofu yr 8-bit crucifix whatever photo booth diy. Skateboard scenester lumbersexual williamsburg biodiesel 90's blog. Banh mi marfa raw denim crucifix park post-ironic. Raw denim wolf post-ironic brooklyn +1 fingerstache mixtape. Food truck typewriter forage pug mustache.    12434    925    2015-08-28 01:50:43    2015-08-28 01:50:43    1
13496    Godard food truck whatever synth. Butcher fixie vegan leggings schlitz tumblr franzen cardigan. Brooklyn dreamcatcher chicharrones ramps leggings. Cray literally post-ironic banh mi. Try-hard butcher beard.    10414    495    2015-07-23 04:30:36    2015-07-23 04:30:36    1
13497    Green juice goth vhs cornhole bespoke cred jean shorts slow-carb. Retro trust fund hoodie. Drinking scenester brooklyn.    16385    573    2016-01-31 19:07:47    2016-01-31 19:07:47    1
13498    Cleanse fixie vegan banjo carry schlitz. Cliche truffaut bicycle rights bespoke. Echo bicycle rights selvage.    14486    940    2015-12-22 20:50:55    2015-12-22 20:50:55    1
13499    Deep v microdosing asymmetrical gluten-free. Wayfarers pitchfork truffaut brunch. Humblebrag try-hard cray.    18747    634    2016-01-11 00:14:05    2016-01-11 00:14:05    1
13500    Tofu williamsburg craft beer scenester schlitz. Literally dreamcatcher cleanse meggings biodiesel bespoke. Bushwick diy sartorial retro schlitz keytar flexitarian hella. Kale chips lomo sustainable.    17672    930    2015-05-20 23:09:53    2015-05-20 23:09:53    1
13501    You probably haven't heard of them helvetica seitan beard put a bird on it dreamcatcher. Goth keffiyeh venmo austin umami pbr&b. Brunch salvia celiac pop-up microdosing crucifix.    15827    549    2015-06-04 02:42:47    2015-06-04 02:42:47    1
13502    Slow-carb diy readymade migas before they sold out. Loko food truck cronut. Retro gluten-free offal 90's umami plaid williamsburg. Hammock offal sartorial humblebrag normcore.    15796    484    2015-05-21 01:36:56    2015-05-21 01:36:56    1
13503    Gluten-free ethical park pickled. Tofu banh mi pork belly beard cornhole selfies helvetica typewriter. Cred godard small batch you probably haven't heard of them leggings.    14449    616    2015-08-25 10:51:55    2015-08-25 10:51:55    1
13505    Selvage cleanse +1 flannel salvia street neutra. Ennui intelligentsia tote bag fap truffaut franzen bushwick yolo. Locavore banjo chartreuse scenester kale chips umami.    15546    811    2015-04-27 23:05:27    2015-04-27 23:05:27    1
13506    Fashion axe dreamcatcher mustache offal cardigan. Carry normcore salvia franzen lomo stumptown typewriter. Fashion axe pug portland chambray ethical photo booth gentrify street. Kogi pickled cleanse.    16757    807    2016-04-01 04:33:10    2016-04-01 04:33:10    1
13574    Cleanse seitan 90's pabst vice tattooed listicle biodiesel. Master narwhal tousled locavore. Gastropub vhs intelligentsia. Humblebrag typewriter pour-over.    14173    857    2015-05-15 06:13:06    2015-05-15 06:13:06    1
13508    Crucifix ennui humblebrag seitan pug chia photo booth. Cliche 8-bit squid pbr&b dreamcatcher godard you probably haven't heard of them. Craft beer vinegar occupy venmo salvia pour-over cleanse. Photo booth lumbersexual humblebrag.    10237    901    2015-05-03 13:51:37    2015-05-03 13:51:37    1
13509    Brunch thundercats selfies. Tacos pour-over mlkshk ugh. Wolf bicycle rights art party. Marfa food truck flexitarian master locavore cred post-ironic. Hammock biodiesel drinking.    14727    864    2015-05-13 02:04:53    2015-05-13 02:04:53    1
13510    Green juice keffiyeh bushwick portland marfa next level. Street chambray listicle yuccie ennui blog flexitarian williamsburg. Hashtag plaid twee poutine goth.    15423    902    2015-08-02 10:26:29    2015-08-02 10:26:29    1
13511    Street brooklyn keffiyeh tofu tacos pabst forage. Taxidermy flannel lomo cleanse brooklyn. Disrupt umami truffaut cray schlitz.    10740    671    2016-02-09 15:32:49    2016-02-09 15:32:49    1
13512    Leggings forage fanny pack meditation irony butcher occupy. Schlitz literally hella lumbersexual letterpress pour-over polaroid. Trust fund +1 fap food truck helvetica raw denim.    13265    647    2015-12-29 05:12:36    2015-12-29 05:12:36    1
13513    Yolo small batch fanny pack disrupt. Quinoa fanny pack meggings kombucha hoodie. Cold-pressed master ramps messenger bag. Kinfolk chillwave brooklyn plaid iphone readymade blue bottle chicharrones.    13515    767    2016-04-06 08:13:34    2016-04-06 08:13:34    1
13514    Pickled pop-up tattooed sartorial. Echo aesthetic chartreuse kickstarter marfa narwhal hammock art party. Art party etsy cronut listicle mlkshk street. Farm-to-table five dollar toast kale chips dreamcatcher pabst echo locavore.    15743    599    2015-08-21 16:35:48    2015-08-21 16:35:48    1
13515    Narwhal keffiyeh flexitarian. Ugh try-hard wes anderson yuccie leggings chambray. Tilde disrupt shoreditch brooklyn intelligentsia. Before they sold out fashion axe bitters tote bag waistcoat salvia yr.    12723    552    2015-12-27 21:03:57    2015-12-27 21:03:57    1
13516    Readymade pitchfork five dollar toast. Hella forage meh park cleanse cardigan chambray schlitz. Bitters pbr&b slow-carb brunch chicharrones kogi squid. Sriracha kale chips selfies xoxo. Sustainable kickstarter 90's put a bird on it neutra viral chicharrones meggings.    18496    851    2015-12-28 17:24:42    2015-12-28 17:24:42    1
13517    Asymmetrical etsy gentrify listicle fap hammock ethical health. Before they sold out wayfarers bushwick bespoke chillwave swag synth health. Put a bird on it post-ironic franzen goth park beard you probably haven't heard of them paleo.    18851    691    2016-02-27 14:44:46    2016-02-27 14:44:46    1
13518    Vice sriracha wayfarers food truck mixtape chillwave normcore. Vinegar selvage fashion axe tofu poutine. Cornhole 90's sriracha try-hard. Echo bicycle rights try-hard gastropub hella hashtag forage polaroid.    12459    834    2015-05-27 07:48:15    2015-05-27 07:48:15    1
13519    Cornhole farm-to-table 8-bit next level bespoke brooklyn. Shabby chic cold-pressed pitchfork green juice pabst next level. Post-ironic echo roof next level mustache kinfolk literally disrupt. Yr kitsch cleanse distillery meditation crucifix lo-fi cornhole. Narwhal sriracha quinoa hashtag listicle banjo salvia butcher.    18800    594    2015-05-06 06:05:40    2015-05-06 06:05:40    1
13520    Farm-to-table crucifix food truck locavore kale chips green juice kinfolk gluten-free. Farm-to-table cray brooklyn. Vice wes anderson polaroid chartreuse vinyl. Skateboard wes anderson ethical single-origin coffee cred cronut readymade. Fap waistcoat tilde gastropub ennui cliche listicle before they sold out.    10995    806    2016-03-06 08:26:22    2016-03-06 08:26:22    1
13521    Five dollar toast jean shorts flexitarian cronut tumblr hashtag hammock food truck. Mixtape etsy beard kale chips bushwick portland. Kale chips asymmetrical plaid. Viral meh actually. Food truck pitchfork whatever carry dreamcatcher.    12350    732    2015-08-29 01:24:11    2015-08-29 01:24:11    1
13766    Thundercats goth locavore gluten-free shabby chic carry austin whatever. Gentrify celiac lomo. Beard sartorial locavore.    15076    850    2016-03-30 11:29:54    2016-03-30 11:29:54    1
13522    Waistcoat distillery occupy letterpress whatever kombucha fingerstache chia. Stumptown craft beer fap tilde +1. Dreamcatcher portland brunch street cray wolf. Ugh flexitarian polaroid vice street.    10519    592    2016-02-22 17:15:05    2016-02-22 17:15:05    1
13523    Keffiyeh offal asymmetrical semiotics. Narwhal carry chia ennui. Vegan put a bird on it lo-fi cardigan. Austin lumbersexual try-hard small batch yuccie gentrify.    14980    769    2016-03-29 23:13:45    2016-03-29 23:13:45    1
13524    Taxidermy lumbersexual williamsburg. Quinoa freegan literally post-ironic yuccie iphone. Tumblr vhs locavore tilde. Franzen gentrify brunch lumbersexual venmo. Thundercats swag meggings bespoke banjo whatever plaid.    13006    948    2015-12-16 20:04:55    2015-12-16 20:04:55    1
13525    Pork belly lomo selvage 90's flannel photo booth freegan brunch. Beard craft beer hella leggings flannel tacos. Hoodie vegan 3 wolf moon roof cray ramps lumbersexual shabby chic. Health thundercats mustache tote bag microdosing. Retro cold-pressed banh mi meh scenester cronut lumbersexual occupy.    13626    906    2015-11-01 00:58:14    2015-11-01 00:58:14    1
13526    Marfa mustache typewriter church-key loko bespoke. Knausgaard church-key pickled etsy kinfolk plaid synth chillwave. Five dollar toast quinoa listicle street beard tumblr. Selvage umami kombucha fap thundercats shabby chic.    10105    883    2015-07-06 18:00:47    2015-07-06 18:00:47    1
13527    Schlitz trust fund farm-to-table 90's. Pinterest literally fap small batch bitters roof migas. Sustainable cray small batch irony goth mustache.    14509    580    2016-03-13 03:17:30    2016-03-13 03:17:30    1
13528    Messenger bag carry drinking tofu chicharrones thundercats kogi. Microdosing health offal vice paleo meditation cray skateboard. Ugh gentrify banh mi dreamcatcher. Wayfarers tumblr ethical knausgaard seitan vhs chillwave.    12397    769    2016-04-04 00:30:14    2016-04-04 00:30:14    1
13530    Vice readymade portland shabby chic cold-pressed pickled kombucha cliche. Butcher mumblecore lo-fi locavore cold-pressed yr pop-up knausgaard. Drinking locavore trust fund chambray. Crucifix umami dreamcatcher. Wes anderson master ramps echo whatever.    14416    945    2015-10-24 05:32:35    2015-10-24 05:32:35    1
13531    Bicycle rights shoreditch 3 wolf moon. Godard photo booth mixtape cliche migas retro. Mustache pabst flannel literally.    10786    856    2015-08-04 21:18:04    2015-08-04 21:18:04    1
13532    Taxidermy 8-bit you probably haven't heard of them meditation put a bird on it normcore venmo. Craft beer master messenger bag. Cleanse celiac lo-fi.    15213    772    2016-03-25 11:46:54    2016-03-25 11:46:54    1
13533    Small batch humblebrag marfa beard brooklyn organic ugh direct trade. Gastropub kombucha narwhal art party cornhole truffaut. Goth gastropub health occupy aesthetic gluten-free. Cardigan pbr&b franzen post-ironic. Fap swag kinfolk pour-over tousled.    15939    493    2015-08-10 07:01:20    2015-08-10 07:01:20    1
13534    Jean shorts gentrify banh mi loko diy. Xoxo plaid occupy. Tilde umami church-key cray williamsburg pork belly organic carry. Blog freegan chartreuse five dollar toast kale chips post-ironic. Brunch cleanse kitsch.    15481    591    2015-09-14 17:24:05    2015-09-14 17:24:05    1
13536    Diy wayfarers polaroid. Put a bird on it gentrify migas organic church-key crucifix tilde photo booth. Craft beer distillery meh tofu.    12338    910    2015-10-30 18:22:27    2015-10-30 18:22:27    1
13537    Single-origin coffee freegan tilde umami +1 before they sold out. Next level thundercats you probably haven't heard of them hella gluten-free. Authentic ramps ugh.    14888    795    2015-09-04 19:37:26    2015-09-04 19:37:26    1
13538    Cardigan venmo umami hammock. Banjo franzen kogi irony 90's migas flexitarian disrupt. Vice try-hard forage williamsburg bicycle rights messenger bag. Marfa fingerstache everyday slow-carb kale chips vice cred loko. Health pug actually fixie.    15205    689    2015-09-27 15:01:22    2015-09-27 15:01:22    1
13539    Chillwave keffiyeh blog direct trade street shabby chic. Letterpress pork belly pinterest fap beard vinyl wes anderson thundercats. Fanny pack authentic street cray dreamcatcher photo booth. Swag vhs post-ironic carry.    12150    468    2015-07-13 19:52:18    2015-07-13 19:52:18    1
13540    Ethical try-hard bitters chillwave art party authentic. Listicle deep v direct trade ugh poutine hashtag banh mi. Next level direct trade crucifix ramps.    15484    542    2016-04-01 10:35:11    2016-04-01 10:35:11    1
13541    Disrupt viral meggings neutra semiotics vice offal iphone. Heirloom authentic readymade xoxo disrupt pitchfork godard. Before they sold out readymade cronut bushwick normcore dreamcatcher. Celiac raw denim tacos mlkshk. Pabst keytar jean shorts ugh messenger bag mumblecore yolo.    12055    706    2015-09-07 01:08:18    2015-09-07 01:08:18    1
13542    Gluten-free waistcoat ennui hashtag taxidermy shabby chic. Tumblr biodiesel sustainable locavore. Knausgaard fashion axe post-ironic vinegar neutra. Vhs chartreuse cardigan scenester lo-fi carry.    13345    545    2016-01-03 15:11:45    2016-01-03 15:11:45    1
13543    Meh ethical polaroid whatever disrupt waistcoat. Ugh lumbersexual single-origin coffee post-ironic microdosing. Stumptown tattooed literally lomo wolf iphone mlkshk. Readymade yuccie shoreditch cronut.    18309    747    2015-11-13 10:45:56    2015-11-13 10:45:56    1
13544    Fingerstache meditation gluten-free farm-to-table put a bird on it. Raw denim farm-to-table pug. Scenester master fashion axe truffaut plaid normcore. Flannel lumbersexual kinfolk small batch.    10418    625    2015-09-14 07:02:53    2015-09-14 07:02:53    1
13546    Listicle pug chambray +1 pour-over next level fixie. Cornhole franzen microdosing sustainable. Carry fap plaid literally hashtag messenger bag pinterest. Locavore keffiyeh tacos cred vegan shoreditch hoodie meditation. Craft beer distillery fanny pack kickstarter.    17022    622    2016-03-24 10:03:32    2016-03-24 10:03:32    1
13547    Beard pitchfork chia 90's mumblecore bitters. +1 meh paleo godard. Freegan stumptown synth authentic. Sartorial fingerstache deep v flannel.    17493    727    2016-01-26 06:36:28    2016-01-26 06:36:28    1
13548    Umami yolo mixtape carry knausgaard franzen butcher celiac. Shabby chic cornhole slow-carb stumptown etsy. Carry literally park next level vhs photo booth knausgaard offal. Selvage keffiyeh cold-pressed. Viral hashtag forage raw denim.    13937    711    2016-01-19 22:32:22    2016-01-19 22:32:22    1
13549    Pinterest messenger bag tofu photo booth kinfolk bicycle rights. Before they sold out squid food truck chillwave microdosing normcore green juice trust fund. Roof pug hoodie small batch. Butcher tattooed narwhal typewriter polaroid carry +1.    12433    527    2015-12-02 07:55:45    2015-12-02 07:55:45    1
13551    Occupy mumblecore photo booth food truck yuccie. Dreamcatcher ethical ugh pour-over farm-to-table five dollar toast waistcoat shoreditch. Meditation keytar marfa pour-over xoxo pickled. Leggings fingerstache hoodie.    13907    682    2015-11-05 07:15:23    2015-11-05 07:15:23    1
13552    Tofu trust fund blue bottle microdosing tousled. Single-origin coffee actually meditation diy deep v kinfolk cleanse artisan. Lumbersexual shoreditch portland. Vinyl selfies schlitz. Mixtape umami farm-to-table whatever flexitarian tofu butcher crucifix.    17426    645    2015-05-04 16:31:44    2015-05-04 16:31:44    1
13553    Readymade hammock xoxo hoodie helvetica. Shabby chic stumptown bitters vice polaroid gastropub organic. Freegan cliche meh selfies banh mi sustainable.    18332    700    2015-08-29 10:30:17    2015-08-29 10:30:17    1
13554    Waistcoat roof chartreuse artisan fap pabst flexitarian taxidermy. 90's drinking scenester synth put a bird on it. 90's pbr&b keffiyeh artisan forage bushwick cardigan cronut. Kinfolk kickstarter synth.    18591    588    2016-02-24 09:21:28    2016-02-24 09:21:28    1
13556    Meggings 3 wolf moon organic intelligentsia normcore craft beer authentic taxidermy. Blue bottle park flexitarian venmo. Mumblecore hammock truffaut diy plaid. Sartorial bespoke chartreuse authentic.    14871    841    2015-09-30 04:54:25    2015-09-30 04:54:25    1
13557    Umami shabby chic listicle pbr&b keffiyeh ethical austin try-hard. Kitsch deep v tofu leggings taxidermy pickled. Chicharrones photo booth pug listicle schlitz wayfarers farm-to-table you probably haven't heard of them.    11373    780    2015-05-21 06:44:13    2015-05-21 06:44:13    1
13559    Marfa gentrify asymmetrical austin brunch pickled. Bicycle rights you probably haven't heard of them quinoa chillwave. Vegan pug neutra waistcoat fixie.    18277    603    2016-01-10 21:37:08    2016-01-10 21:37:08    1
13560    Sustainable irony pinterest. Diy polaroid raw denim helvetica distillery photo booth yolo. Yr marfa ramps kombucha. Leggings sriracha gastropub.    14119    754    2015-05-19 01:01:22    2015-05-19 01:01:22    1
13561    Pinterest irony pbr&b brooklyn vinyl williamsburg. Raw denim etsy neutra deep v. Slow-carb cleanse trust fund twee mixtape gentrify. Bushwick artisan xoxo portland photo booth forage.    18083    718    2015-11-13 04:20:44    2015-11-13 04:20:44    1
13562    Yr roof leggings everyday schlitz. Flexitarian kinfolk sustainable. 90's blue bottle sartorial stumptown organic dreamcatcher yolo cliche. Asymmetrical gentrify artisan cardigan stumptown heirloom kinfolk sartorial.    13047    703    2015-11-21 02:46:56    2015-11-21 02:46:56    1
13563    Mixtape pop-up waistcoat normcore trust fund. Roof cliche readymade tofu freegan. Vice bespoke knausgaard. Messenger bag fingerstache hammock bespoke franzen.    12261    463    2016-04-07 11:50:19    2016-04-07 11:50:19    1
13564    Waistcoat brunch microdosing schlitz yr typewriter hammock fashion axe. Narwhal heirloom hoodie skateboard butcher shoreditch actually. Keytar you probably haven't heard of them blue bottle viral occupy kitsch.    10228    727    2015-10-11 19:07:12    2015-10-11 19:07:12    1
13567    Hammock brooklyn chillwave keffiyeh flexitarian. You probably haven't heard of them chillwave ethical single-origin coffee fashion axe keytar. Mumblecore readymade intelligentsia waistcoat shoreditch small batch cornhole selvage. Iphone readymade chartreuse semiotics.    17834    474    2015-08-19 21:17:51    2015-08-19 21:17:51    1
13569    Gentrify normcore five dollar toast messenger bag photo booth before they sold out fashion axe sriracha. Austin hashtag echo slow-carb messenger bag. Authentic wolf you probably haven't heard of them 90's leggings flannel. Etsy kinfolk flannel ethical lomo. Shabby chic chia tacos thundercats retro chillwave.    17138    934    2015-07-24 22:34:18    2015-07-24 22:34:18    1
13570    Park mlkshk kinfolk drinking wolf flexitarian polaroid. Pbr&b austin tumblr selfies banjo pickled. Carry portland kale chips direct trade post-ironic cold-pressed. Dreamcatcher fanny pack tofu pug brooklyn drinking tacos hella. Tofu shoreditch swag pinterest.    15551    682    2015-10-18 13:29:13    2015-10-18 13:29:13    1
13571    Typewriter neutra whatever farm-to-table pitchfork carry church-key. Distillery roof xoxo church-key lo-fi migas. Small batch irony fap neutra. Tofu sriracha ugh offal godard roof schlitz.    18358    811    2015-09-14 02:39:14    2015-09-14 02:39:14    1
13572    Franzen thundercats narwhal small batch before they sold out. Lumbersexual 3 wolf moon freegan bushwick schlitz kogi. Sriracha austin microdosing. Portland gluten-free skateboard migas freegan polaroid wes anderson fashion axe. Small batch chia viral sriracha.    14303    894    2016-03-04 11:35:00    2016-03-04 11:35:00    1
13576    Mlkshk stumptown yr kogi raw denim. Ennui godard messenger bag keytar mixtape vinegar. Flannel blue bottle aesthetic wolf hella. Chia thundercats next level mlkshk disrupt franzen plaid.    18073    642    2015-07-29 09:52:39    2015-07-29 09:52:39    1
13578    Yolo franzen quinoa organic pour-over migas. Gluten-free selvage narwhal diy. Yolo tote bag twee chillwave direct trade biodiesel cleanse bicycle rights. Polaroid five dollar toast blog forage.    18319    819    2015-05-31 06:37:11    2015-05-31 06:37:11    1
13579    Gastropub narwhal neutra 90's fap. Wayfarers tousled you probably haven't heard of them locavore. Health literally cray trust fund chambray tacos.    16272    651    2016-03-06 03:36:17    2016-03-06 03:36:17    1
13581    Green juice cold-pressed banjo deep v polaroid. Pug fap literally vinegar occupy. Biodiesel fashion axe pickled. Cardigan typewriter gentrify. Meggings meh aesthetic gastropub butcher paleo.    16226    738    2015-09-24 20:55:28    2015-09-24 20:55:28    1
13582    Whatever occupy artisan 3 wolf moon twee loko. Pbr&b tacos ramps kickstarter carry farm-to-table microdosing stumptown. Street tilde brunch letterpress.    11532    807    2016-04-11 12:26:22    2016-04-11 12:26:22    1
13583    Gentrify portland crucifix. Slow-carb cardigan seitan flexitarian marfa typewriter bespoke aesthetic. Dreamcatcher twee irony semiotics cred cliche occupy carry. Chambray fap wes anderson fixie listicle. Sriracha church-key yr beard xoxo whatever pinterest you probably haven't heard of them.    16262    842    2016-02-03 14:55:57    2016-02-03 14:55:57    1
13584    Sriracha twee wolf bushwick. Kogi +1 listicle distillery. Distillery cornhole kale chips vegan pour-over. Pop-up kickstarter austin five dollar toast flannel blue bottle.    13243    900    2015-07-18 05:18:39    2015-07-18 05:18:39    1
13585    Cronut cleanse williamsburg wolf pabst forage keffiyeh craft beer. Tacos listicle craft beer migas raw denim cleanse paleo chambray. Hoodie occupy before they sold out art party everyday. Yolo gastropub heirloom. Williamsburg farm-to-table bicycle rights meggings semiotics.    12200    957    2015-05-23 12:31:55    2015-05-23 12:31:55    1
13586    Shabby chic synth brunch hashtag fanny pack. Food truck you probably haven't heard of them yolo organic lo-fi lomo poutine. Blue bottle williamsburg helvetica raw denim.    12462    855    2015-05-15 02:01:39    2015-05-15 02:01:39    1
13587    Etsy next level crucifix swag pickled green juice trust fund poutine. Street brunch viral plaid selvage polaroid. Cronut umami whatever food truck bicycle rights. Normcore yolo tumblr pinterest. 90's drinking butcher.    10060    750    2015-12-28 10:27:54    2015-12-28 10:27:54    1
13588    Ennui mixtape celiac. Diy kombucha pork belly 8-bit scenester taxidermy selfies hashtag. Chillwave vhs skateboard hashtag plaid marfa cliche.    17279    760    2015-06-08 02:36:05    2015-06-08 02:36:05    1
13589    Etsy vinegar lomo mlkshk flexitarian. Pork belly kale chips squid microdosing salvia paleo xoxo stumptown. Wayfarers wolf try-hard.    12937    662    2016-02-14 12:13:05    2016-02-14 12:13:05    1
13590    Kickstarter single-origin coffee fanny pack art party. Chicharrones cleanse quinoa yr vhs. Pug diy twee ethical tote bag seitan.    15804    575    2015-07-15 10:48:01    2015-07-15 10:48:01    1
13592    Goth keytar listicle mixtape. Wes anderson trust fund paleo mumblecore helvetica. Twee yr narwhal tacos asymmetrical poutine. Forage fashion axe meggings ugh. Organic meh gentrify paleo locavore.    18248    679    2015-10-14 06:06:07    2015-10-14 06:06:07    1
13594    Cred kinfolk bicycle rights meditation bitters freegan flexitarian thundercats. Etsy literally banh mi dreamcatcher viral hashtag pickled letterpress. Raw denim slow-carb disrupt. Try-hard next level tote bag.    10698    863    2015-09-19 12:22:03    2015-09-19 12:22:03    1
13595    Vice fashion axe five dollar toast shoreditch. Meggings authentic jean shorts tumblr you probably haven't heard of them retro. Hella venmo bushwick irony pbr&b.    16509    960    2015-05-04 02:14:42    2015-05-04 02:14:42    1
13596    Butcher craft beer bitters raw denim polaroid sustainable skateboard keffiyeh. Artisan pop-up cleanse portland. Actually umami drinking.    13684    946    2016-01-18 22:57:33    2016-01-18 22:57:33    1
13597    Celiac dreamcatcher 8-bit portland franzen flexitarian. Pop-up ethical chambray selfies pickled. Hashtag fingerstache williamsburg direct trade aesthetic twee kombucha. Vhs godard schlitz hashtag.    13645    811    2016-04-01 07:57:20    2016-04-01 07:57:20    1
13598    Pinterest wes anderson dreamcatcher tattooed butcher pickled master. Kombucha fap stumptown sriracha xoxo jean shorts pickled. Godard meggings flexitarian. Authentic goth fashion axe banh mi cred. Asymmetrical chia carry tote bag williamsburg helvetica.    12681    812    2015-12-19 13:46:24    2015-12-19 13:46:24    1
13599    Godard vhs +1 plaid humblebrag. Green juice wes anderson marfa wolf thundercats vice poutine craft beer. Thundercats polaroid small batch art party paleo.    18129    799    2015-10-14 09:13:06    2015-10-14 09:13:06    1
13600    Raw denim neutra five dollar toast twee vinegar butcher 90's letterpress. Celiac thundercats fixie master. Typewriter 3 wolf moon sustainable portland offal direct trade humblebrag craft beer.    17530    898    2016-01-18 20:28:20    2016-01-18 20:28:20    1
13601    Pour-over whatever cray plaid tacos migas. Kinfolk austin bicycle rights chillwave small batch banh mi keffiyeh swag. Direct trade pabst loko etsy stumptown asymmetrical post-ironic.    17304    833    2015-12-17 16:51:30    2015-12-17 16:51:30    1
13602    Retro health banjo blog. Whatever sartorial +1 quinoa neutra diy. Sartorial pickled church-key slow-carb park pour-over keffiyeh austin.    13969    641    2015-07-25 19:45:53    2015-07-25 19:45:53    1
13603    Yolo keytar vinyl. Polaroid vinyl flannel mustache echo. Semiotics bicycle rights before they sold out diy drinking pork belly you probably haven't heard of them.    16694    588    2015-08-13 16:34:10    2015-08-13 16:34:10    1
13604    Taxidermy forage try-hard ugh mustache blue bottle. Cred waistcoat knausgaard roof brooklyn hoodie deep v twee. Polaroid vinegar paleo brunch pour-over forage freegan bespoke. Distillery vice vinyl flexitarian cliche neutra. Mlkshk craft beer park shabby chic.    14526    820    2015-11-11 08:05:45    2015-11-11 08:05:45    1
13605    Direct trade umami marfa kinfolk literally kogi. Franzen try-hard mlkshk letterpress semiotics chambray next level lo-fi. Authentic swag street ugh. Cronut offal schlitz sartorial irony kale chips portland.    16029    667    2015-10-06 20:19:53    2015-10-06 20:19:53    1
13606    Tilde cleanse cronut farm-to-table. Church-key farm-to-table chambray. Brooklyn brunch iphone wes anderson post-ironic chicharrones. Fixie raw denim etsy tousled direct trade tattooed chartreuse biodiesel.    17381    714    2015-09-15 09:32:14    2015-09-15 09:32:14    1
13607    Pickled jean shorts normcore organic. Marfa occupy slow-carb cleanse taxidermy squid +1 cold-pressed. Pbr&b goth stumptown health. Lo-fi polaroid shabby chic lumbersexual. You probably haven't heard of them meggings kogi franzen.    18765    673    2016-01-13 20:59:31    2016-01-13 20:59:31    1
13608    Stumptown craft beer vinyl tumblr. Photo booth waistcoat sriracha ugh salvia kogi. Williamsburg art party occupy farm-to-table ugh everyday. Viral post-ironic flannel meh yr next level leggings.    10826    953    2015-09-30 14:03:39    2015-09-30 14:03:39    1
13609    Yuccie tote bag craft beer next level vhs. Tacos pbr&b freegan. Thundercats squid chartreuse listicle hoodie. Meh chia quinoa marfa shoreditch celiac etsy bicycle rights.    10818    713    2015-11-01 03:15:05    2015-11-01 03:15:05    1
13612    Letterpress tousled direct trade banjo. Umami dreamcatcher kale chips messenger bag put a bird on it mixtape franzen photo booth. Raw denim craft beer next level loko bitters waistcoat offal.    17897    820    2015-08-31 01:16:32    2015-08-31 01:16:32    1
13613    Hashtag cronut stumptown chartreuse knausgaard aesthetic. Actually 90's health meh. 8-bit chia blog deep v everyday xoxo. Pop-up slow-carb forage. Flexitarian goth viral austin normcore godard post-ironic shoreditch.    18157    483    2015-05-18 07:57:14    2015-05-18 07:57:14    1
13614    Listicle park keytar mixtape crucifix goth 90's. Yr waistcoat kickstarter semiotics. Asymmetrical artisan umami blog keytar literally mixtape lumbersexual.    13146    661    2015-10-03 08:31:49    2015-10-03 08:31:49    1
13615    Polaroid squid raw denim pickled. Brunch migas selfies chicharrones sartorial. Stumptown hoodie dreamcatcher gluten-free freegan offal cray. Kombucha five dollar toast cliche cold-pressed green juice tilde drinking.    13161    493    2016-03-05 19:53:13    2016-03-05 19:53:13    1
13616    Butcher cleanse godard echo kogi pickled. Church-key farm-to-table chillwave mumblecore umami irony skateboard. Art party +1 kinfolk. Deep v chia humblebrag.    11829    555    2015-05-05 20:31:54    2015-05-05 20:31:54    1
13617    Cold-pressed cardigan xoxo goth iphone leggings tacos fap. Brooklyn thundercats disrupt actually salvia. Crucifix marfa asymmetrical. Crucifix leggings meggings tilde. Craft beer pour-over direct trade.    13626    554    2015-09-25 14:12:50    2015-09-25 14:12:50    1
13618    Church-key yolo keytar food truck lo-fi vinegar. Waistcoat migas single-origin coffee venmo. Post-ironic slow-carb butcher. Sartorial mumblecore flexitarian ennui blue bottle.    17064    750    2015-08-08 23:22:46    2015-08-08 23:22:46    1
13619    Sriracha chambray vinegar cronut. Xoxo keytar selfies. Retro mustache austin taxidermy vinyl twee. 8-bit vice butcher dreamcatcher. Gentrify selfies bicycle rights.    12913    915    2016-02-06 02:08:36    2016-02-06 02:08:36    1
13620    Hammock before they sold out keffiyeh pork belly health. Quinoa health poutine everyday. Ugh carry park butcher.    16872    956    2016-04-09 12:07:44    2016-04-09 12:07:44    1
13621    Knausgaard bespoke listicle brooklyn dreamcatcher mixtape deep v cornhole. Retro actually hella gluten-free kale chips viral marfa small batch. Literally trust fund seitan +1 hashtag messenger bag. Ethical craft beer iphone helvetica mustache tousled 3 wolf moon heirloom.    11099    853    2016-01-25 04:44:51    2016-01-25 04:44:51    1
13622    Crucifix fingerstache try-hard. Austin gentrify biodiesel mlkshk. Put a bird on it echo thundercats umami polaroid truffaut. Whatever blue bottle artisan 90's. Kinfolk narwhal truffaut listicle mustache fingerstache.    11975    849    2015-04-30 04:14:46    2015-04-30 04:14:46    1
13623    Microdosing knausgaard small batch asymmetrical aesthetic food truck. Trust fund kinfolk seitan try-hard flannel. Ramps skateboard synth pinterest. Leggings post-ironic hashtag flexitarian vinyl. Before they sold out squid pop-up truffaut humblebrag forage bicycle rights austin.    18189    676    2015-09-21 02:39:37    2015-09-21 02:39:37    1
13624    Meggings polaroid gastropub park occupy disrupt godard. Sriracha chambray knausgaard vegan. Knausgaard messenger bag yuccie shabby chic. Small batch semiotics sartorial literally. Viral wolf mustache master hammock you probably haven't heard of them shoreditch.    10245    838    2015-08-08 18:08:02    2015-08-08 18:08:02    1
13625    Heirloom cred normcore before they sold out. 8-bit dreamcatcher vice put a bird on it before they sold out. Mustache offal stumptown photo booth roof. Blue bottle swag cray.    17101    573    2015-07-03 20:08:34    2015-07-03 20:08:34    1
13626    Godard sustainable green juice semiotics. Raw denim williamsburg chia yuccie kombucha fap. Sartorial park master gentrify tofu fixie. Neutra literally hella gastropub.    17766    751    2016-02-14 18:54:47    2016-02-14 18:54:47    1
13627    3 wolf moon sriracha distillery. Vinyl shabby chic pabst cray occupy actually venmo. Whatever carry venmo direct trade occupy pour-over keffiyeh freegan.    18356    833    2015-06-26 01:13:48    2015-06-26 01:13:48    1
13628    Wayfarers roof brunch direct trade typewriter portland stumptown. Locavore single-origin coffee pinterest carry. Austin loko health flannel cleanse cornhole chia.    12017    644    2016-01-13 07:21:19    2016-01-13 07:21:19    1
13629    Meggings chicharrones everyday beard. Swag try-hard beard pabst butcher twee disrupt church-key. Cliche whatever lomo microdosing kinfolk viral portland occupy.    12695    790    2016-01-08 02:32:28    2016-01-08 02:32:28    1
13630    Thundercats pinterest try-hard. Viral tote bag kickstarter. Diy yr bitters cronut street cold-pressed.    18687    893    2016-04-05 16:30:05    2016-04-05 16:30:05    1
13631    Poutine locavore goth leggings diy carry 3 wolf moon. Shoreditch echo pickled. +1 90's lumbersexual cleanse vegan before they sold out yr literally.    11323    849    2015-06-23 16:50:50    2015-06-23 16:50:50    1
13632    Normcore williamsburg kale chips kogi mustache polaroid. Drinking chillwave next level wolf occupy retro echo readymade. Church-key shoreditch salvia craft beer cold-pressed neutra literally.    14534    480    2015-05-05 09:22:49    2015-05-05 09:22:49    1
13633    Hashtag pour-over synth raw denim cray brooklyn microdosing artisan. Mumblecore meditation swag celiac portland hoodie blog. Squid poutine blue bottle next level flexitarian chartreuse stumptown.    17111    728    2015-08-01 18:56:38    2015-08-01 18:56:38    1
13634    Shoreditch banh mi bicycle rights fap. Polaroid butcher venmo distillery intelligentsia schlitz lumbersexual. Poutine swag echo polaroid kitsch fixie typewriter tumblr. Intelligentsia pickled bespoke kinfolk ugh.    16659    760    2015-11-14 05:29:58    2015-11-14 05:29:58    1
13635    Semiotics +1 normcore. Next level single-origin coffee authentic aesthetic polaroid normcore fanny pack ethical. Skateboard aesthetic pabst ennui. Distillery knausgaard occupy. Readymade craft beer lomo lo-fi kinfolk godard gentrify.    10828    579    2016-01-21 09:41:45    2016-01-21 09:41:45    1
13636    Cray twee yr etsy offal. Pug dreamcatcher whatever hella goth. Art party williamsburg portland tote bag green juice. Freegan goth skateboard plaid semiotics. Williamsburg pitchfork stumptown drinking viral aesthetic sartorial.    13166    515    2016-02-08 09:01:10    2016-02-08 09:01:10    1
13637    Kickstarter cliche skateboard waistcoat organic yr photo booth. Put a bird on it 3 wolf moon irony. Poutine pour-over semiotics humblebrag. Heirloom gentrify freegan food truck slow-carb fashion axe banh mi drinking.    12725    701    2016-04-08 22:18:16    2016-04-08 22:18:16    1
13638    Hoodie godard austin 8-bit vegan normcore master. Gastropub tote bag before they sold out goth literally etsy drinking. Sartorial messenger bag narwhal tofu. Bespoke scenester chia polaroid.    13141    883    2015-10-24 20:33:53    2015-10-24 20:33:53    1
13639    Lomo tousled schlitz keytar cleanse tumblr loko banh mi. Crucifix slow-carb polaroid thundercats ethical. Cred trust fund dreamcatcher pabst chicharrones butcher farm-to-table sustainable.    11999    859    2016-01-09 21:52:30    2016-01-09 21:52:30    1
13640    Banjo butcher chillwave tacos. Park selvage meh roof single-origin coffee blog everyday. Keytar drinking hashtag sartorial street shabby chic cray. Master mlkshk occupy banjo cleanse pinterest. Flexitarian 8-bit xoxo kickstarter gluten-free tumblr.    10379    588    2015-07-23 07:20:34    2015-07-23 07:20:34    1
13641    Bicycle rights portland trust fund semiotics intelligentsia. You probably haven't heard of them polaroid church-key hella. Hella readymade listicle pork belly schlitz put a bird on it beard 90's. Tofu hashtag chia park offal ugh kitsch microdosing.    15973    750    2015-09-18 05:58:12    2015-09-18 05:58:12    1
13642    Crucifix helvetica tofu gentrify shabby chic retro twee. Ramps kombucha letterpress. Vinyl hashtag ethical meggings. Chicharrones kitsch selvage messenger bag carry. Microdosing taxidermy wolf godard xoxo raw denim vegan.    13876    885    2015-11-19 03:28:06    2015-11-19 03:28:06    1
13644    Kogi gentrify cornhole meggings organic. Pour-over twee bicycle rights pinterest franzen brunch tote bag. Pop-up 90's church-key occupy retro pitchfork semiotics banjo.    11685    571    2015-12-26 20:53:49    2015-12-26 20:53:49    1
13708    Tilde tattooed cliche twee blue bottle tousled umami deep v. Deep v farm-to-table cold-pressed beard distillery. Blog narwhal kogi.    14930    655    2015-12-25 09:16:53    2015-12-25 09:16:53    1
13645    Yr yolo bespoke. Pabst vice street beard leggings forage. Hashtag +1 crucifix street goth asymmetrical jean shorts sartorial. Pabst locavore brooklyn goth green juice portland xoxo sartorial. Forage aesthetic hella tumblr fashion axe kinfolk pour-over hashtag.    17583    939    2015-12-25 18:53:50    2015-12-25 18:53:50    1
13646    8-bit ramps tote bag bitters swag wolf art party flexitarian. Shoreditch forage hoodie schlitz humblebrag mlkshk selvage. Tilde shoreditch tacos truffaut fingerstache. Tacos kitsch sustainable.    12506    825    2015-07-27 18:58:10    2015-07-27 18:58:10    1
13647    Kombucha pickled try-hard humblebrag lomo xoxo gluten-free. +1 kitsch park farm-to-table beard. Shoreditch sartorial gastropub portland gluten-free hoodie hammock. Artisan everyday swag knausgaard migas lumbersexual ennui kickstarter. 8-bit tofu carry wolf offal single-origin coffee authentic distillery.    16691    548    2015-06-03 22:30:03    2015-06-03 22:30:03    1
13648    Locavore whatever before they sold out keytar. Biodiesel 3 wolf moon kale chips fingerstache. Vice fap mustache brooklyn cliche. Waistcoat skateboard vinegar lumbersexual wayfarers craft beer kitsch.    16040    492    2016-03-27 15:52:52    2016-03-27 15:52:52    1
13649    Kinfolk swag narwhal intelligentsia raw denim. Single-origin coffee distillery chillwave selfies chicharrones meditation poutine pbr&b. Master twee skateboard authentic.    18708    872    2015-06-08 03:20:23    2015-06-08 03:20:23    1
13651    Single-origin coffee vegan goth 8-bit waistcoat ethical diy sriracha. 8-bit pop-up taxidermy yolo whatever polaroid narwhal. Vhs before they sold out try-hard messenger bag tote bag hashtag.    12293    486    2015-09-19 05:03:18    2015-09-19 05:03:18    1
13652    Single-origin coffee normcore art party farm-to-table tacos. Iphone readymade schlitz jean shorts swag chicharrones kitsch. Pinterest stumptown blue bottle food truck seitan lumbersexual. Heirloom microdosing fixie echo.    13136    644    2015-06-15 02:09:21    2015-06-15 02:09:21    1
13653    Goth mumblecore diy. Brooklyn artisan cliche. Skateboard readymade mixtape cleanse pitchfork. Butcher poutine you probably haven't heard of them cred readymade.    17944    775    2015-11-26 19:40:45    2015-11-26 19:40:45    1
13654    Food truck plaid authentic squid disrupt cred polaroid. Godard chambray narwhal. Freegan chambray cold-pressed. Kitsch green juice kombucha listicle echo selvage knausgaard banjo.    12417    814    2015-09-29 00:32:54    2015-09-29 00:32:54    1
13655    Marfa chambray fashion axe mixtape irony. Green juice bushwick readymade chia asymmetrical. Leggings cred migas tousled jean shorts yolo gluten-free offal. Mixtape poutine pork belly.    17969    566    2016-01-14 17:14:49    2016-01-14 17:14:49    1
13656    Etsy sriracha ethical try-hard craft beer blog jean shorts. Deep v schlitz chartreuse yr typewriter leggings. Cleanse sriracha kitsch vice mumblecore marfa. Blog lumbersexual ramps thundercats cornhole microdosing authentic. Vinegar green juice locavore williamsburg pop-up farm-to-table bushwick thundercats.    11263    585    2015-07-02 11:13:55    2015-07-02 11:13:55    1
13657    Cred intelligentsia franzen pop-up swag fingerstache seitan wayfarers. Fanny pack umami banjo ramps. Pickled cronut pabst fanny pack occupy goth.    14284    894    2015-12-12 18:10:37    2015-12-12 18:10:37    1
13658    Roof church-key put a bird on it hella 3 wolf moon. Fap cardigan 90's try-hard. Beard lomo truffaut chillwave pinterest tilde wolf. Blue bottle iphone kinfolk sustainable tofu.    17734    710    2016-01-28 16:18:47    2016-01-28 16:18:47    1
13659    Skateboard tousled cleanse. Diy literally kogi asymmetrical lo-fi. Hoodie church-key letterpress. Flexitarian banjo slow-carb austin lo-fi offal.    17808    747    2015-10-19 01:56:15    2015-10-19 01:56:15    1
13660    Organic umami sartorial normcore polaroid. Lumbersexual microdosing tumblr. Normcore green juice diy forage. Viral pinterest seitan.    18609    620    2016-02-29 16:35:58    2016-02-29 16:35:58    1
13662    Bitters actually mlkshk paleo pork belly irony. Polaroid venmo yr slow-carb artisan actually. Dreamcatcher kale chips butcher sustainable taxidermy. You probably haven't heard of them listicle hella single-origin coffee iphone gentrify 3 wolf moon authentic. Tote bag kombucha meh church-key bitters.    14521    518    2015-10-24 19:10:05    2015-10-24 19:10:05    1
13664    Single-origin coffee godard cronut intelligentsia tilde try-hard. Carry meggings slow-carb small batch pitchfork. Tofu viral kale chips.    18169    695    2015-05-19 05:41:03    2015-05-19 05:41:03    1
13665    Iphone selvage disrupt chartreuse xoxo cred. Direct trade marfa whatever. Diy kickstarter next level dreamcatcher literally. Bitters pop-up dreamcatcher tilde artisan 8-bit. Blue bottle flannel health.    15809    746    2015-11-02 01:13:51    2015-11-02 01:13:51    1
13666    Green juice 90's tumblr church-key crucifix fingerstache drinking direct trade. Park kitsch celiac 8-bit helvetica meditation. Stumptown irony narwhal butcher marfa microdosing try-hard craft beer.    17604    602    2016-03-27 03:07:45    2016-03-27 03:07:45    1
13667    Wolf squid taxidermy artisan sustainable. Taxidermy tofu biodiesel you probably haven't heard of them. Freegan crucifix chambray pour-over pug messenger bag kitsch.    13894    892    2015-07-13 22:22:18    2015-07-13 22:22:18    1
13668    Lomo schlitz brunch semiotics trust fund austin yr. Irony wayfarers cliche. Put a bird on it bushwick brooklyn tilde 8-bit. Before they sold out brunch cold-pressed tilde.    10687    587    2015-05-01 05:35:41    2015-05-01 05:35:41    1
13669    Occupy diy selvage park ramps wayfarers mlkshk you probably haven't heard of them. Offal cliche chia synth gentrify heirloom yolo lomo. Vice ramps celiac.    14584    549    2015-12-24 11:12:20    2015-12-24 11:12:20    1
13671    Mixtape asymmetrical venmo tote bag brooklyn 8-bit williamsburg cardigan. Umami ugh flexitarian kinfolk fap stumptown offal. Shabby chic goth tumblr health.    11496    903    2016-02-12 17:51:15    2016-02-12 17:51:15    1
13672    Chambray post-ironic humblebrag 3 wolf moon. Green juice trust fund leggings literally. Hammock echo occupy.    15002    917    2015-07-08 04:33:09    2015-07-08 04:33:09    1
13673    Tilde scenester leggings deep v 8-bit. Brunch fap mumblecore. Neutra cliche semiotics dreamcatcher.    10281    487    2015-08-12 11:10:11    2015-08-12 11:10:11    1
13674    Lo-fi tofu humblebrag shabby chic pbr&b. Letterpress keffiyeh vinyl vinegar. Meditation master pinterest.    14963    661    2016-04-19 02:55:54    2016-04-19 02:55:54    1
13675    Williamsburg occupy food truck scenester lo-fi blog meggings. Actually mixtape semiotics paleo kitsch pickled. Keffiyeh occupy kickstarter post-ironic kale chips. Small batch twee letterpress craft beer. Kitsch pinterest distillery.    12348    898    2015-11-06 18:18:29    2015-11-06 18:18:29    1
13804    Typewriter put a bird on it ugh leggings. Park tumblr beard mumblecore taxidermy trust fund. Street bitters vinyl.    12063    670    2016-02-27 04:02:44    2016-02-27 04:02:44    1
13676    Fashion axe authentic xoxo forage sartorial. Next level messenger bag squid schlitz paleo 8-bit. Cliche cold-pressed pour-over pabst polaroid. Tumblr ennui roof tacos plaid. Bespoke organic five dollar toast.    14756    801    2015-10-07 01:42:13    2015-10-07 01:42:13    1
13677    Blog normcore wes anderson. Brooklyn fanny pack helvetica pbr&b. Pitchfork neutra green juice microdosing mlkshk. Salvia schlitz aesthetic.    14214    550    2015-12-04 05:54:37    2015-12-04 05:54:37    1
13678    Church-key pbr&b organic bicycle rights semiotics xoxo green juice helvetica. Poutine umami loko. Migas cronut microdosing pitchfork ethical bespoke dreamcatcher. Green juice actually mlkshk etsy pour-over forage try-hard. Vinegar ennui fashion axe taxidermy.    14277    471    2015-12-02 10:15:33    2015-12-02 10:15:33    1
13679    Helvetica pork belly selfies chambray. Polaroid hammock stumptown occupy try-hard small batch. Chillwave keffiyeh everyday tattooed park chicharrones direct trade. Dreamcatcher pop-up whatever pug yr hashtag. Vhs kale chips meh sartorial.    17297    483    2015-09-20 22:39:16    2015-09-20 22:39:16    1
13680    Williamsburg migas kogi. Cliche narwhal mumblecore pitchfork pinterest. Marfa carry brooklyn. Cliche kogi hashtag portland.    10758    545    2016-01-12 17:32:36    2016-01-12 17:32:36    1
13681    Ennui bushwick tacos salvia. Tattooed listicle raw denim. Cray fingerstache 8-bit goth distillery sustainable semiotics taxidermy. Viral raw denim flannel selfies irony truffaut blue bottle master.    18303    692    2016-04-19 03:31:28    2016-04-19 03:31:28    1
13683    Disrupt bicycle rights mixtape flexitarian pbr&b meditation intelligentsia bitters. Williamsburg hammock chicharrones tilde truffaut. Irony bicycle rights kogi whatever leggings 8-bit stumptown. Salvia everyday pour-over twee polaroid.    12507    740    2015-08-26 12:24:03    2015-08-26 12:24:03    1
13684    Jean shorts retro forage taxidermy authentic marfa pour-over post-ironic. Chartreuse organic everyday keffiyeh. Quinoa selfies chicharrones irony keytar.    14291    664    2015-09-05 04:02:14    2015-09-05 04:02:14    1
13685    Vice beard austin cray flannel pabst. Health next level church-key. Slow-carb seitan asymmetrical retro listicle tumblr.    14070    696    2016-02-11 21:43:50    2016-02-11 21:43:50    1
13686    Vegan keffiyeh heirloom lumbersexual seitan flannel ramps gluten-free. Gluten-free lomo small batch humblebrag vinegar kombucha. Dreamcatcher cred shabby chic vinegar park cornhole next level. Freegan beard goth literally before they sold out humblebrag.    14478    746    2015-12-14 05:33:51    2015-12-14 05:33:51    1
13687    Chambray letterpress freegan. Messenger bag truffaut try-hard marfa. Shoreditch heirloom plaid wayfarers.    15950    935    2015-10-18 04:16:34    2015-10-18 04:16:34    1
13688    Lumbersexual banh mi kinfolk fanny pack chambray. Gastropub pitchfork blog whatever fingerstache pork belly. Pour-over yuccie heirloom banjo small batch swag. Chicharrones brunch pug vhs.    17362    959    2015-09-26 15:01:43    2015-09-26 15:01:43    1
13689    Dreamcatcher kale chips paleo sriracha twee. Dreamcatcher gentrify whatever kale chips selfies. Kale chips single-origin coffee pabst pinterest. Helvetica sustainable street. Brooklyn marfa disrupt migas normcore.    13691    675    2015-08-08 17:14:47    2015-08-08 17:14:47    1
13690    Wolf photo booth xoxo artisan farm-to-table. Wolf gastropub leggings. Chicharrones cardigan kitsch. Tacos locavore cleanse 90's.    16312    745    2015-11-03 09:09:04    2015-11-03 09:09:04    1
13691    Narwhal banh mi 8-bit pinterest listicle synth. Authentic letterpress yolo semiotics cold-pressed wayfarers. Leggings swag tattooed humblebrag tousled.    17751    750    2015-05-27 07:59:22    2015-05-27 07:59:22    1
13692    Artisan put a bird on it 3 wolf moon. Godard marfa goth kale chips tilde cray. Skateboard artisan viral thundercats retro chambray authentic distillery. Ugh normcore craft beer before they sold out 8-bit. Cardigan twee goth quinoa mlkshk.    16388    927    2015-08-26 11:25:22    2015-08-26 11:25:22    1
13693    Kinfolk master fixie franzen hashtag. Gentrify viral ethical selfies single-origin coffee cliche master hammock. Viral kale chips mixtape heirloom sartorial bushwick. Migas neutra disrupt.    17886    930    2016-04-18 09:50:44    2016-04-18 09:50:44    1
13694    Try-hard skateboard bitters listicle fap semiotics. Pinterest readymade fashion axe chia beard dreamcatcher heirloom viral. Trust fund meh cardigan. Church-key ethical master gluten-free.    16763    579    2015-12-13 19:40:11    2015-12-13 19:40:11    1
13695    Listicle fingerstache try-hard roof pop-up. Pickled messenger bag church-key put a bird on it. Mumblecore offal umami small batch. Biodiesel truffaut williamsburg offal. Tumblr slow-carb neutra normcore gentrify.    15008    799    2016-03-25 13:29:44    2016-03-25 13:29:44    1
13696    Keffiyeh kickstarter cliche forage. Forage gluten-free meditation dreamcatcher. Sartorial green juice cliche. Green juice biodiesel put a bird on it locavore skateboard bushwick.    15636    753    2015-09-15 22:53:52    2015-09-15 22:53:52    1
13697    Street pop-up cardigan 3 wolf moon beard. Occupy yuccie stumptown cardigan carry ramps before they sold out. Diy occupy taxidermy.    16091    949    2015-04-28 21:06:20    2015-04-28 21:06:20    1
13698    Celiac sriracha tilde knausgaard thundercats. Listicle squid scenester sriracha narwhal lo-fi. Squid yuccie shoreditch selfies. Flannel echo kale chips vegan.    15049    524    2016-01-11 09:11:43    2016-01-11 09:11:43    1
13699    Gastropub vinyl craft beer locavore marfa thundercats banh mi meditation. Umami intelligentsia kickstarter. Church-key chillwave put a bird on it lumbersexual umami. Tacos flannel actually. Keffiyeh mlkshk crucifix selfies.    18806    724    2015-04-29 02:44:54    2015-04-29 02:44:54    1
13700    Yr kombucha austin park kogi. Chartreuse waistcoat single-origin coffee poutine gluten-free tofu chia. Kogi everyday distillery. Quinoa gentrify fashion axe you probably haven't heard of them semiotics roof tacos neutra.    11723    961    2016-01-21 15:18:41    2016-01-21 15:18:41    1
13701    Selvage yr deep v pitchfork schlitz pabst knausgaard crucifix. Meh viral loko leggings banjo. Mustache thundercats slow-carb. Fixie vice umami kitsch ethical semiotics selfies.    14744    663    2016-03-19 20:32:32    2016-03-19 20:32:32    1
13704    Shoreditch twee gentrify. Cronut microdosing xoxo shabby chic put a bird on it raw denim truffaut. Swag slow-carb franzen thundercats synth carry. Plaid vice organic narwhal trust fund echo selfies.    11689    729    2016-01-14 06:17:33    2016-01-14 06:17:33    1
13705    Literally plaid skateboard craft beer yolo occupy small batch wayfarers. Typewriter lumbersexual gastropub hashtag kinfolk. Vegan hammock fixie literally everyday pickled marfa you probably haven't heard of them. +1 gentrify pabst taxidermy banjo aesthetic. Chicharrones artisan echo schlitz helvetica etsy authentic.    13563    815    2015-09-18 02:17:55    2015-09-18 02:17:55    1
13706    Organic cred pop-up aesthetic plaid loko. Everyday retro green juice master salvia twee. Lo-fi butcher kinfolk swag raw denim health yolo. Farm-to-table tilde normcore selfies meditation cray polaroid pork belly.    14332    698    2015-09-11 22:20:00    2015-09-11 22:20:00    1
13707    3 wolf moon vinegar street before they sold out five dollar toast yr cray. Gluten-free butcher hella wayfarers sartorial offal. Wolf hoodie kogi irony. Neutra loko salvia. Everyday letterpress roof.    13047    859    2016-02-10 17:38:14    2016-02-10 17:38:14    1
13709    Art party polaroid yr marfa jean shorts. Narwhal portland wolf street pop-up. Selvage pork belly raw denim trust fund tote bag sriracha chicharrones. Authentic trust fund pabst gentrify everyday lo-fi leggings.    15260    492    2015-12-29 07:39:30    2015-12-29 07:39:30    1
13710    Forage readymade five dollar toast wayfarers direct trade. Retro raw denim gentrify truffaut. Ennui bushwick wolf pop-up. Hoodie trust fund pug fashion axe. Authentic brooklyn yr portland semiotics kitsch street.    16397    471    2015-11-11 17:32:47    2015-11-11 17:32:47    1
13712    Normcore fap next level godard everyday chia. Beard sustainable semiotics distillery street. Roof tilde trust fund park shabby chic lo-fi 8-bit scenester. Raw denim mumblecore direct trade farm-to-table brooklyn scenester disrupt venmo. Keytar venmo yuccie organic austin wes anderson.    14473    764    2015-04-22 05:32:44    2015-04-22 05:32:44    1
13713    Listicle 8-bit raw denim pork belly stumptown normcore brunch. Occupy humblebrag pitchfork crucifix synth. Lo-fi park kombucha. Put a bird on it heirloom church-key pug.    18040    570    2015-12-26 02:15:00    2015-12-26 02:15:00    1
13715    Asymmetrical flannel craft beer wes anderson mlkshk pbr&b. Mumblecore kitsch bicycle rights intelligentsia chia keffiyeh. Direct trade viral pour-over intelligentsia farm-to-table art party pitchfork. Ethical normcore yuccie mixtape raw denim brunch distillery semiotics. Single-origin coffee helvetica meggings +1 8-bit.    13677    954    2016-01-28 13:10:46    2016-01-28 13:10:46    1
13716    Cred wayfarers green juice. Artisan chia art party pop-up gastropub. Hella austin portland.    15502    776    2015-10-15 15:25:37    2015-10-15 15:25:37    1
13717    Banjo williamsburg fingerstache beard austin gluten-free. Pbr&b slow-carb keytar blue bottle schlitz master raw denim blog. Fashion axe narwhal gentrify. Cliche selvage marfa.    14938    844    2015-05-13 13:58:40    2015-05-13 13:58:40    1
13718    Chartreuse pbr&b hella. Tousled listicle austin. +1 diy celiac paleo. Marfa lo-fi waistcoat kinfolk shabby chic polaroid.    15827    915    2016-04-14 15:22:55    2016-04-14 15:22:55    1
13719    Poutine bitters carry. Art party mixtape cronut vice austin mustache bespoke. Flannel venmo gluten-free pour-over meggings blue bottle. Lomo chillwave umami. Ennui forage etsy cliche mlkshk wolf messenger bag.    14116    581    2015-10-02 18:32:12    2015-10-02 18:32:12    1
13720    Park thundercats food truck bitters freegan kitsch. Drinking banjo goth loko selfies dreamcatcher. Cleanse beard whatever migas 90's.    17689    897    2015-07-08 15:28:49    2015-07-08 15:28:49    1
13721    Cleanse shabby chic tumblr squid. Irony umami tumblr mustache trust fund gluten-free hella pinterest. Portland beard meditation banjo aesthetic five dollar toast. Cray knausgaard yolo pug fixie. Art party franzen chambray.    18171    755    2015-10-21 16:32:32    2015-10-21 16:32:32    1
13722    Leggings health banjo migas listicle tattooed artisan carry. Ugh retro lumbersexual fap pop-up authentic helvetica health. Humblebrag vegan locavore five dollar toast.    18214    934    2015-06-28 19:01:14    2015-06-28 19:01:14    1
13723    Vegan park listicle blog deep v brooklyn gluten-free. Organic hella cronut listicle pbr&b. Microdosing chambray tumblr readymade chia flannel wolf. Vhs mumblecore echo brooklyn.    14768    624    2016-01-08 15:57:58    2016-01-08 15:57:58    1
13724    Carry organic typewriter. Ugh lomo chia flexitarian organic shoreditch aesthetic kitsch. Yuccie butcher readymade narwhal pinterest retro austin kombucha.    12173    876    2015-10-13 01:24:32    2015-10-13 01:24:32    1
13725    Before they sold out microdosing shabby chic keytar gastropub polaroid. Heirloom pabst jean shorts paleo marfa stumptown. Jean shorts schlitz chia wes anderson bushwick diy cold-pressed cronut. Pitchfork brunch church-key hammock.    15717    695    2015-11-27 15:09:15    2015-11-27 15:09:15    1
13726    Green juice readymade artisan scenester. Beard mumblecore organic vice direct trade tote bag. Migas keytar chia deep v everyday. Next level tote bag taxidermy echo fixie mustache brunch truffaut.    15414    743    2015-11-09 01:19:59    2015-11-09 01:19:59    1
13727    Quinoa cray tilde hella. Cardigan truffaut fingerstache tousled artisan fanny pack. Trust fund cronut hashtag health brunch actually. Vice tattooed tofu chia franzen trust fund master celiac. Actually put a bird on it church-key typewriter.    10542    530    2015-11-27 04:16:08    2015-11-27 04:16:08    1
13728    Vinyl organic disrupt iphone selfies. Cold-pressed single-origin coffee shoreditch sartorial organic. Bushwick biodiesel cray. Keytar organic trust fund put a bird on it venmo.    18945    716    2015-10-17 14:30:58    2015-10-17 14:30:58    1
13729    Forage hammock humblebrag before they sold out flexitarian yolo. Loko cleanse messenger bag goth tousled lumbersexual. Sriracha intelligentsia knausgaard irony keffiyeh. Post-ironic trust fund thundercats 90's mumblecore +1. Thundercats banjo plaid.    10237    733    2016-03-10 10:09:05    2016-03-10 10:09:05    1
13730    Thundercats meditation vegan everyday fanny pack wolf you probably haven't heard of them. Franzen cornhole tofu pbr&b kale chips. Microdosing meh vegan meditation umami kogi chicharrones green juice. Pour-over selfies vice.    11105    655    2015-12-20 10:42:34    2015-12-20 10:42:34    1
13731    Keffiyeh +1 microdosing pour-over celiac plaid shoreditch. Thundercats artisan fashion axe wes anderson semiotics intelligentsia crucifix try-hard. Artisan letterpress chicharrones stumptown truffaut echo five dollar toast readymade. Single-origin coffee trust fund banjo slow-carb craft beer. Salvia banh mi heirloom cred.    16236    681    2016-03-28 05:26:13    2016-03-28 05:26:13    1
13732    Umami next level kogi artisan kale chips. Tote bag you probably haven't heard of them skateboard pbr&b. Lumbersexual tousled williamsburg ramps retro tote bag synth banjo. Tattooed pork belly migas everyday. Tattooed celiac roof schlitz beard five dollar toast swag twee.    10008    716    2015-10-26 10:35:28    2015-10-26 10:35:28    1
13733    Cray squid yolo salvia schlitz pitchfork iphone butcher. Roof literally chia meditation craft beer blue bottle. Fingerstache pitchfork shabby chic pbr&b. Tofu hella blue bottle kinfolk cred pork belly semiotics post-ironic.    17705    838    2015-08-01 16:53:50    2015-08-01 16:53:50    1
13736    Next level slow-carb before they sold out carry artisan bitters bushwick. Narwhal polaroid tacos shabby chic vice everyday. Trust fund bicycle rights neutra quinoa intelligentsia ennui gastropub. Craft beer neutra stumptown knausgaard cold-pressed.    17190    915    2015-07-20 21:13:14    2015-07-20 21:13:14    1
13737    Gentrify tote bag meditation diy hoodie direct trade. Disrupt pour-over whatever mixtape. Direct trade whatever vegan +1 trust fund chillwave kogi.    17253    940    2015-09-29 23:26:11    2015-09-29 23:26:11    1
13738    Diy humblebrag cleanse quinoa synth. Truffaut cliche salvia meggings pop-up keytar letterpress flexitarian. Salvia keffiyeh offal vegan cold-pressed tattooed heirloom hoodie. Literally vinyl hella viral food truck fixie etsy 90's.    17142    563    2016-02-27 05:48:34    2016-02-27 05:48:34    1
13805    Cornhole sriracha 3 wolf moon intelligentsia echo. Chillwave green juice neutra. Pinterest banh mi yr. Pork belly mlkshk tilde.    17084    561    2016-04-03 11:29:09    2016-04-03 11:29:09    1
13739    Mustache cliche lomo chillwave. Waistcoat pork belly banjo shoreditch. Brooklyn wes anderson chartreuse meggings vegan typewriter. Chia church-key microdosing. Echo polaroid pour-over try-hard kogi retro shoreditch.    13955    594    2015-09-09 12:23:10    2015-09-09 12:23:10    1
13740    Cold-pressed selfies authentic try-hard godard kitsch fap actually. Echo mixtape cliche wolf. Bitters before they sold out microdosing. Kitsch whatever 90's mlkshk master tumblr keytar.    10784    737    2015-10-10 01:43:59    2015-10-10 01:43:59    1
13741    Echo biodiesel try-hard bicycle rights. Blue bottle shabby chic craft beer. Kombucha intelligentsia pbr&b.    10983    642    2015-09-06 10:19:14    2015-09-06 10:19:14    1
13742    Typewriter keffiyeh brunch bicycle rights migas tattooed. Intelligentsia truffaut ramps. Trust fund typewriter post-ironic jean shorts tacos kickstarter yolo. Tumblr kickstarter direct trade cred cray quinoa brunch flexitarian. Mumblecore synth knausgaard truffaut typewriter irony.    12907    751    2015-07-18 11:51:46    2015-07-18 11:51:46    1
13743    Tattooed keffiyeh food truck truffaut dreamcatcher 90's crucifix banh mi. Flannel shoreditch single-origin coffee blue bottle loko marfa. Irony pbr&b humblebrag hashtag sriracha brooklyn letterpress lomo.    14188    819    2015-07-23 04:38:54    2015-07-23 04:38:54    1
13783    Sustainable kombucha tousled before they sold out semiotics. Before they sold out waistcoat pinterest. Single-origin coffee butcher you probably haven't heard of them.    12558    802    2016-03-27 05:04:05    2016-03-27 05:04:05    1
13744    Drinking kinfolk wayfarers flexitarian food truck. Cliche chillwave artisan. Beard vinyl banh mi pbr&b kombucha forage. Meditation cornhole synth letterpress sriracha cray before they sold out try-hard. Five dollar toast yuccie church-key put a bird on it pour-over marfa.    13504    876    2016-03-25 12:11:33    2016-03-25 12:11:33    1
13745    Try-hard vhs church-key. Iphone leggings tousled pinterest kogi. Viral wayfarers kombucha messenger bag. Tilde farm-to-table disrupt letterpress whatever retro locavore.    18930    594    2016-01-19 09:26:46    2016-01-19 09:26:46    1
13748    8-bit hoodie yolo gentrify hashtag. Thundercats kickstarter authentic hella organic. Literally marfa helvetica. Green juice master street swag actually.    12012    746    2015-12-03 18:22:27    2015-12-03 18:22:27    1
13750    Ugh messenger bag kombucha mustache tattooed flexitarian health pinterest. Cred kogi photo booth actually single-origin coffee lo-fi locavore. Scenester craft beer flannel fanny pack synth ramps pabst.    17430    823    2015-09-24 04:20:51    2015-09-24 04:20:51    1
13751    Gastropub you probably haven't heard of them ethical pour-over five dollar toast gentrify. Lo-fi sustainable stumptown plaid chia +1 migas literally. Gentrify 3 wolf moon small batch xoxo.    15970    470    2016-02-17 03:05:01    2016-02-17 03:05:01    1
13752    Next level chambray fanny pack twee kitsch poutine bitters readymade. Tacos poutine pabst occupy. Vegan put a bird on it master ethical photo booth brooklyn.    14563    906    2015-09-25 15:02:13    2015-09-25 15:02:13    1
13753    Keffiyeh pinterest meh franzen hoodie. Taxidermy twee chillwave. Neutra yolo readymade. Pork belly hammock chillwave actually chambray vhs wayfarers poutine.    11283    692    2015-09-30 22:13:43    2015-09-30 22:13:43    1
13754    Kombucha hoodie cred. Bespoke williamsburg ethical cardigan cold-pressed street. Readymade disrupt celiac.    16267    869    2015-06-23 06:09:03    2015-06-23 06:09:03    1
13755    Tacos bicycle rights thundercats marfa taxidermy blue bottle pbr&b trust fund. Meh distillery street pabst. Readymade lo-fi authentic scenester meh chia cleanse knausgaard. Chicharrones direct trade gentrify thundercats.    17900    672    2015-12-16 01:37:48    2015-12-16 01:37:48    1
13756    Lomo messenger bag bicycle rights. Ramps lo-fi pop-up tacos 8-bit green juice wolf venmo. Vinyl chambray marfa shabby chic slow-carb.    14816    603    2016-02-06 20:45:10    2016-02-06 20:45:10    1
13757    Pork belly marfa neutra occupy tumblr pbr&b selvage. Leggings hashtag cold-pressed cliche wolf. Kombucha brunch paleo raw denim.    11821    931    2015-05-21 09:45:09    2015-05-21 09:45:09    1
13758    Flannel brunch selvage pour-over. Pork belly whatever marfa pabst. Ugh shoreditch keytar hammock. Cray schlitz aesthetic truffaut scenester lomo narwhal. Irony ramps bicycle rights vice five dollar toast chillwave hammock brooklyn.    15745    888    2015-08-15 13:46:33    2015-08-15 13:46:33    1
13759    Everyday semiotics forage 3 wolf moon crucifix chia umami green juice. Stumptown cred bitters. Umami sriracha locavore master kogi actually iphone williamsburg. Celiac pabst neutra asymmetrical vinyl cornhole. Scenester vegan cornhole whatever pinterest flannel pop-up.    18004    738    2015-11-27 12:18:00    2015-11-27 12:18:00    1
13760    Whatever authentic pug shoreditch seitan selvage messenger bag. Drinking cornhole williamsburg street. Kickstarter thundercats cornhole pork belly bespoke organic literally. Truffaut blue bottle vegan. Kale chips ethical paleo church-key try-hard brooklyn 8-bit.    15906    739    2016-02-05 06:15:56    2016-02-05 06:15:56    1
13762    Intelligentsia goth celiac swag photo booth twee vice squid. Hella post-ironic vice portland next level street health. Shabby chic next level synth knausgaard cardigan hashtag.    14985    697    2015-06-12 17:40:35    2015-06-12 17:40:35    1
13763    Photo booth kombucha locavore pop-up yolo heirloom truffaut. Brunch echo banjo yr dreamcatcher. Ramps artisan everyday. Diy authentic shabby chic.    18144    665    2015-10-18 03:16:07    2015-10-18 03:16:07    1
13764    Literally bitters blue bottle swag humblebrag tacos wes anderson shabby chic. Meggings kickstarter godard. Readymade taxidermy kombucha pinterest vinegar quinoa sriracha selvage. Beard yolo normcore art party yuccie salvia. Keffiyeh 8-bit hoodie schlitz paleo put a bird on it crucifix pinterest.    10968    516    2015-09-11 13:44:15    2015-09-11 13:44:15    1
13767    Salvia selfies neutra chartreuse. Direct trade photo booth irony thundercats iphone chartreuse cardigan. Readymade xoxo paleo +1 raw denim. Art party waistcoat vinegar. Lumbersexual thundercats gluten-free.    18036    898    2016-04-14 15:24:00    2016-04-14 15:24:00    1
13768    Cornhole wes anderson small batch. Chicharrones blog chillwave diy truffaut craft beer. Selvage etsy next level retro. Food truck ramps thundercats heirloom.    13053    698    2016-01-14 17:00:06    2016-01-14 17:00:06    1
13769    Squid gluten-free cornhole street brunch goth. Stumptown pitchfork truffaut pug waistcoat artisan. Freegan squid mixtape actually quinoa forage.    17313    687    2015-05-03 11:57:04    2015-05-03 11:57:04    1
13770    Selvage cray yolo yuccie. Fashion axe actually meh listicle literally shoreditch mustache. Stumptown sustainable dreamcatcher cold-pressed +1 neutra. Vinegar mumblecore migas pitchfork fashion axe keffiyeh.    10646    746    2015-10-06 21:43:39    2015-10-06 21:43:39    1
13771    Everyday ramps synth carry banjo. Keffiyeh fingerstache truffaut taxidermy ugh goth etsy williamsburg. Banjo brunch narwhal iphone 3 wolf moon blue bottle vhs whatever. Cornhole xoxo hoodie sartorial pour-over. Pour-over occupy ennui tumblr pork belly seitan.    18335    470    2015-12-26 12:26:09    2015-12-26 12:26:09    1
13772    Ethical heirloom chillwave. Kogi bitters williamsburg you probably haven't heard of them sriracha. Retro scenester iphone raw denim crucifix mixtape +1. Yr fashion axe semiotics. Godard banjo put a bird on it bushwick.    13403    528    2015-10-18 07:43:13    2015-10-18 07:43:13    1
13773    Carry artisan retro pour-over knausgaard migas seitan banjo. Before they sold out ugh bicycle rights hashtag gentrify. Banh mi bushwick ugh.    12864    499    2016-04-14 17:56:12    2016-04-14 17:56:12    1
13774    Try-hard vinyl kogi forage cardigan wes anderson. Next level shoreditch schlitz carry hammock ethical. Mustache leggings church-key meditation.    16967    589    2015-07-23 19:06:24    2015-07-23 19:06:24    1
13775    Stumptown kale chips forage locavore cleanse vinegar. Cleanse portland pop-up tilde fanny pack polaroid 8-bit. Chia swag yr brooklyn.    15807    796    2015-09-12 13:28:08    2015-09-12 13:28:08    1
13776    Shabby chic beard listicle iphone meditation butcher. Viral organic mlkshk plaid readymade fanny pack health. Artisan goth cliche seitan.    11015    684    2015-10-21 01:14:00    2015-10-21 01:14:00    1
13777    Farm-to-table cronut 8-bit roof goth jean shorts yolo. Brooklyn pour-over quinoa chartreuse tumblr celiac raw denim. Chambray put a bird on it brunch trust fund keytar lumbersexual vinyl poutine.    18124    861    2015-11-29 10:16:46    2015-11-29 10:16:46    1
13778    Iphone meggings letterpress freegan ramps. 90's freegan iphone try-hard post-ironic. Leggings mlkshk slow-carb migas. Wolf trust fund pug.    17655    718    2015-08-14 04:21:13    2015-08-14 04:21:13    1
13780    Narwhal butcher umami. Forage vhs meh tattooed bicycle rights. Narwhal trust fund slow-carb hammock. Shabby chic lumbersexual offal.    11955    936    2015-06-24 01:32:40    2015-06-24 01:32:40    1
13781    Hammock pitchfork squid swag microdosing whatever messenger bag vinyl. Tacos salvia readymade occupy. Listicle forage taxidermy scenester farm-to-table actually tacos. Pork belly actually banjo forage vhs.    15157    684    2016-04-06 20:46:41    2016-04-06 20:46:41    1
13782    Wayfarers migas fanny pack heirloom lo-fi. Williamsburg brooklyn literally fixie selfies. Paleo vinyl venmo synth fingerstache post-ironic sartorial yolo. Pitchfork pbr&b offal 8-bit franzen kombucha.    17611    478    2016-03-15 04:15:55    2016-03-15 04:15:55    1
13786    Wolf flannel jean shorts. Beard thundercats banjo blue bottle retro wayfarers portland. Everyday flexitarian celiac roof. Narwhal letterpress banh mi austin ugh chambray.    10820    763    2015-09-04 14:52:19    2015-09-04 14:52:19    1
13787    Trust fund kitsch knausgaard art party salvia asymmetrical venmo lo-fi. Everyday heirloom tousled wayfarers pop-up cleanse pitchfork blue bottle. Chicharrones pabst aesthetic.    14773    842    2016-01-06 03:01:35    2016-01-06 03:01:35    1
13788    8-bit semiotics brooklyn readymade butcher meh. Bushwick pbr&b umami leggings. Selvage chambray vegan keytar fashion axe diy small batch. Aesthetic waistcoat try-hard neutra crucifix. Wolf pabst farm-to-table swag pug selvage.    14514    759    2016-03-06 20:24:09    2016-03-06 20:24:09    1
13789    Meh ennui pinterest fingerstache synth flexitarian yolo you probably haven't heard of them. Listicle master green juice portland tilde. Actually chillwave chambray disrupt retro green juice. Echo bitters 8-bit plaid diy narwhal meh. Truffaut chillwave park kogi artisan.    15639    715    2015-07-09 05:29:07    2015-07-09 05:29:07    1
13790    Kitsch pour-over chambray everyday shoreditch portland keytar meggings. Asymmetrical occupy beard. Lomo diy cornhole flannel 90's semiotics. Leggings swag single-origin coffee.    18567    563    2016-03-21 00:58:04    2016-03-21 00:58:04    1
13791    Tousled shabby chic iphone asymmetrical keffiyeh celiac. Banh mi drinking chartreuse cold-pressed. Vinegar authentic chartreuse.    10498    908    2015-12-03 21:48:28    2015-12-03 21:48:28    1
13792    Etsy synth waistcoat meditation. Cronut polaroid mumblecore post-ironic cleanse schlitz. Wes anderson kinfolk viral knausgaard loko letterpress sriracha.    10950    629    2015-06-04 16:22:01    2015-06-04 16:22:01    1
13793    8-bit five dollar toast venmo. Carry church-key ramps mustache semiotics franzen chartreuse hashtag. Irony 8-bit tumblr portland kickstarter locavore distillery. Portland helvetica synth hella selfies aesthetic food truck.    14287    467    2016-03-13 14:39:37    2016-03-13 14:39:37    1
13794    Viral meggings shabby chic helvetica artisan fixie xoxo ethical. Kickstarter venmo schlitz vegan meggings. Brooklyn green juice photo booth cardigan. Iphone squid hella seitan.    11753    517    2016-02-04 09:22:21    2016-02-04 09:22:21    1
13795    Blue bottle echo migas truffaut skateboard meditation williamsburg. Tote bag sartorial selvage. Semiotics dreamcatcher post-ironic chillwave tattooed locavore cold-pressed. Hella asymmetrical deep v aesthetic taxidermy synth truffaut hashtag.    12061    611    2015-10-28 12:12:48    2015-10-28 12:12:48    1
13796    Iphone pbr&b cold-pressed carry paleo tumblr. Drinking put a bird on it cronut dreamcatcher cray normcore. Cliche austin plaid put a bird on it shabby chic tacos ennui. Shoreditch whatever chambray migas waistcoat narwhal fixie.    16947    528    2016-03-29 14:42:37    2016-03-29 14:42:37    1
13797    Actually keffiyeh deep v normcore leggings. Intelligentsia pbr&b literally. Typewriter master meditation squid vinyl. Chicharrones artisan pitchfork everyday. Shoreditch gentrify beard five dollar toast 8-bit photo booth humblebrag.    16809    467    2015-04-22 13:26:37    2015-04-22 13:26:37    1
13798    Marfa forage yuccie food truck cardigan selfies keytar. Tacos organic godard. Kale chips helvetica neutra sustainable street ennui pabst pork belly. Vinegar pop-up irony franzen kombucha raw denim.    10406    501    2015-07-22 23:55:29    2015-07-22 23:55:29    1
13799    Chambray shoreditch ethical mixtape butcher cliche. Lo-fi ennui tofu. Green juice waistcoat pork belly hammock kickstarter viral. Letterpress hella gentrify yolo banjo deep v literally vinegar.    11103    666    2016-03-24 08:42:59    2016-03-24 08:42:59    1
13801    Lumbersexual mixtape readymade. Freegan paleo actually chambray. Kickstarter street tumblr pour-over squid trust fund etsy. Yuccie vice jean shorts pop-up mustache.    17675    736    2015-10-20 03:31:43    2015-10-20 03:31:43    1
14085    Retro poutine goth pinterest yolo. Park 8-bit godard. Seitan cornhole 8-bit pinterest tote bag leggings.    18563    833    2015-05-29 09:45:29    2015-05-29 09:45:29    1
13802    Stumptown tacos etsy migas mixtape shabby chic. Sustainable knausgaard lo-fi leggings 8-bit. Authentic organic hashtag pitchfork celiac freegan poutine cold-pressed. Semiotics pinterest asymmetrical wayfarers vegan pabst microdosing brooklyn.    18699    865    2015-11-18 23:10:25    2015-11-18 23:10:25    1
13806    Hashtag quinoa thundercats pabst neutra. Pork belly kombucha skateboard trust fund. Farm-to-table cronut photo booth 8-bit meditation scenester. 90's retro banh mi ugh bushwick photo booth cardigan. Ramps bushwick iphone poutine.    17016    489    2015-11-12 13:24:24    2015-11-12 13:24:24    1
13807    Hammock yr gentrify sustainable post-ironic. Hella marfa austin letterpress gastropub. Meditation pitchfork austin flexitarian health kale chips tumblr pour-over.    14515    530    2016-04-07 07:05:33    2016-04-07 07:05:33    1
13809    Brunch wolf microdosing meh tousled semiotics letterpress helvetica. Pork belly heirloom pour-over hoodie. Mlkshk everyday +1 retro 8-bit raw denim. Echo wayfarers lo-fi locavore forage. Pbr&b pug etsy flannel messenger bag food truck locavore.    14803    961    2015-07-08 21:31:31    2015-07-08 21:31:31    1
13810    Church-key schlitz pbr&b tattooed craft beer. Distillery master before they sold out mixtape kinfolk quinoa etsy slow-carb. Pitchfork fingerstache gastropub lumbersexual craft beer vegan tote bag cold-pressed.    17682    527    2015-12-08 13:51:24    2015-12-08 13:51:24    1
13811    Etsy try-hard slow-carb irony street. Skateboard intelligentsia trust fund pbr&b master listicle pinterest pickled. +1 leggings hashtag xoxo tousled. Deep v 3 wolf moon cray green juice.    14742    879    2016-02-01 09:03:59    2016-02-01 09:03:59    1
13812    Lomo messenger bag chillwave pork belly heirloom. Five dollar toast try-hard tofu raw denim synth 8-bit. Poutine cardigan cronut chambray vinyl lumbersexual pinterest xoxo. Hella fashion axe 90's asymmetrical brooklyn pbr&b authentic goth. Direct trade lomo wolf waistcoat organic.    15781    766    2015-11-26 20:38:23    2015-11-26 20:38:23    1
13813    Fap mustache street roof mlkshk wayfarers. Cred austin plaid cardigan direct trade thundercats. Pbr&b occupy yolo leggings freegan ennui truffaut try-hard.    15908    668    2015-09-23 01:57:02    2015-09-23 01:57:02    1
13814    Chartreuse williamsburg retro synth. Flannel letterpress offal. Scenester 90's taxidermy bushwick meggings mustache. Cred pug cliche tofu.    16522    635    2015-10-06 13:40:52    2015-10-06 13:40:52    1
13815    Wolf portland single-origin coffee. Yuccie vinegar austin flannel. Aesthetic waistcoat tote bag.    11689    902    2015-09-20 23:48:01    2015-09-20 23:48:01    1
13816    Tilde yuccie goth brooklyn microdosing flexitarian kickstarter aesthetic. Yuccie ramps retro swag cold-pressed kombucha leggings. Keffiyeh disrupt fashion axe. Blog art party food truck authentic lumbersexual butcher tilde.    16713    935    2015-07-06 12:12:40    2015-07-06 12:12:40    1
13817    90's meditation mlkshk street. Hella blue bottle iphone chartreuse. Tousled selfies mixtape semiotics 3 wolf moon roof. Hoodie letterpress sartorial next level.    14810    872    2015-08-12 16:21:13    2015-08-12 16:21:13    1
13818    Pork belly mustache quinoa bitters shabby chic. Farm-to-table butcher master paleo letterpress try-hard. Normcore actually pabst park tumblr. Mumblecore flexitarian pour-over wayfarers cornhole squid freegan.    18724    918    2015-05-18 19:19:17    2015-05-18 19:19:17    1
13819    Taxidermy austin you probably haven't heard of them put a bird on it bitters letterpress asymmetrical. Ethical butcher small batch hammock everyday microdosing kombucha banh mi. Tote bag artisan jean shorts gastropub echo +1. Etsy portland kale chips. Lo-fi tilde bitters hella kinfolk wayfarers yuccie slow-carb.    13386    813    2015-05-01 00:35:56    2015-05-01 00:35:56    1
13820    Drinking lumbersexual microdosing pinterest tumblr skateboard. Iphone gluten-free chambray art party letterpress schlitz. Occupy trust fund beard selvage knausgaard vinyl drinking.    12600    670    2015-07-30 16:38:21    2015-07-30 16:38:21    1
13822    Diy swag vice literally hashtag waistcoat authentic. Letterpress next level gluten-free 8-bit pug artisan vinegar. Leggings kale chips vice brunch. You probably haven't heard of them blue bottle gentrify 90's pickled microdosing literally stumptown.    10989    744    2015-12-23 11:22:25    2015-12-23 11:22:25    1
13823    Pitchfork kombucha godard umami. Portland try-hard organic knausgaard pinterest post-ironic cliche. Blue bottle irony cleanse kinfolk health fap.    17345    555    2016-04-08 17:08:50    2016-04-08 17:08:50    1
13824    Selvage cornhole ramps. Stumptown occupy dreamcatcher sustainable fap leggings shabby chic. Chartreuse pinterest venmo. Salvia echo shoreditch banh mi bitters banjo tilde.    11939    608    2015-12-02 16:01:00    2015-12-02 16:01:00    1
13825    Locavore pabst gentrify. Photo booth gastropub listicle schlitz. Mustache chia viral mixtape neutra vice pork belly. Semiotics tilde listicle.    15731    891    2015-10-13 15:50:18    2015-10-13 15:50:18    1
13827    Flexitarian artisan hammock scenester yuccie messenger bag you probably haven't heard of them. Forage kitsch bushwick xoxo organic bitters meh literally. Chicharrones narwhal lo-fi goth.    12286    619    2015-08-14 22:46:14    2015-08-14 22:46:14    1
13828    Chillwave offal pickled meggings small batch austin loko tumblr. Biodiesel pitchfork street. Brooklyn slow-carb mlkshk. Sartorial salvia banjo.    13277    700    2016-01-15 13:15:51    2016-01-15 13:15:51    1
13829    Raw denim post-ironic literally. Flannel sriracha jean shorts plaid carry vhs. Put a bird on it distillery occupy keffiyeh echo pug whatever fap.    15513    885    2016-03-24 06:26:29    2016-03-24 06:26:29    1
13830    Leggings messenger bag art party butcher lumbersexual. 90's asymmetrical kitsch salvia. Heirloom wolf tacos cliche. Before they sold out literally 3 wolf moon venmo pop-up kinfolk.    13514    581    2015-08-25 17:46:30    2015-08-25 17:46:30    1
13831    +1 fashion axe microdosing synth cleanse mixtape ugh tousled. Selfies vinyl normcore schlitz pour-over. Photo booth sartorial flexitarian occupy tofu pork belly. Echo biodiesel fashion axe tote bag cred chartreuse tofu.    13244    556    2015-07-31 21:28:22    2015-07-31 21:28:22    1
13832    Lumbersexual normcore direct trade mlkshk pork belly. Flexitarian pitchfork mustache. Fanny pack lo-fi wayfarers crucifix. Xoxo fingerstache aesthetic church-key normcore.    16753    489    2016-01-26 05:14:11    2016-01-26 05:14:11    1
13833    Migas meggings put a bird on it fingerstache lumbersexual beard wayfarers. Wayfarers post-ironic lo-fi locavore helvetica yr fap. Normcore vice echo stumptown. Microdosing marfa pbr&b street goth. Meditation marfa chillwave stumptown pbr&b fashion axe synth.    12424    864    2015-07-17 13:17:48    2015-07-17 13:17:48    1
13834    Disrupt wayfarers distillery chia blue bottle. Church-key migas meh flexitarian. Polaroid pinterest master meggings normcore kombucha.    16390    513    2015-08-20 14:39:50    2015-08-20 14:39:50    1
13835    Goth occupy vinegar 90's. Yuccie squid 90's paleo slow-carb tumblr forage. Meggings wayfarers small batch chillwave yuccie.    18158    832    2015-09-13 21:57:55    2015-09-13 21:57:55    1
13836    Tote bag quinoa kickstarter church-key tacos yolo salvia post-ironic. Chicharrones seitan meh pop-up sartorial godard kombucha mlkshk. Portland fap knausgaard +1 hammock hashtag pickled.    12271    556    2015-07-30 17:53:33    2015-07-30 17:53:33    1
13837    Venmo flannel squid echo health. Jean shorts blue bottle gentrify cliche disrupt. Raw denim fashion axe carry art party +1 williamsburg flexitarian try-hard.    15831    521    2015-08-10 21:25:44    2015-08-10 21:25:44    1
13839    Organic cardigan echo celiac. Ennui sustainable beard schlitz vinyl. Seitan semiotics intelligentsia trust fund goth.    13490    791    2016-03-06 19:01:22    2016-03-06 19:01:22    1
13840    Jean shorts letterpress next level slow-carb authentic pop-up neutra post-ironic. Hella literally goth bitters austin roof. Kale chips gluten-free polaroid selvage. Wayfarers pug poutine wolf. Freegan fanny pack pop-up farm-to-table skateboard park tofu art party.    13828    485    2015-05-15 02:56:43    2015-05-15 02:56:43    1
13841    Normcore blue bottle try-hard locavore bicycle rights authentic. Everyday 8-bit hammock fanny pack pork belly banjo austin cardigan. Fap single-origin coffee hoodie bushwick cold-pressed swag normcore. Migas iphone craft beer helvetica vinyl literally. Intelligentsia franzen yr quinoa dreamcatcher master.    17115    601    2015-10-01 17:06:30    2015-10-01 17:06:30    1
13842    Blog poutine wolf. Keffiyeh whatever thundercats lumbersexual. Fixie mixtape vice franzen green juice. Flexitarian freegan post-ironic chia. Schlitz cardigan 90's microdosing cronut pitchfork tacos twee.    16447    468    2015-08-30 00:40:52    2015-08-30 00:40:52    1
13843    Migas retro church-key pinterest. Williamsburg franzen squid kogi yolo crucifix authentic heirloom. Helvetica food truck poutine trust fund.    18068    606    2015-07-21 23:25:11    2015-07-21 23:25:11    1
13844    Lomo echo kogi. Distillery freegan marfa +1 pbr&b cray. Meggings paleo trust fund.    14355    804    2016-04-13 09:15:18    2016-04-13 09:15:18    1
13845    Meditation paleo selvage keytar cray lomo. Viral fanny pack thundercats tote bag roof drinking bitters. Mlkshk neutra pbr&b authentic farm-to-table. Vegan cronut godard diy dreamcatcher pop-up mumblecore humblebrag. Brunch vinegar pop-up austin.    11449    701    2015-05-07 14:45:27    2015-05-07 14:45:27    1
13849    Yr kogi microdosing cardigan bushwick humblebrag. Gentrify normcore salvia franzen bitters tousled quinoa trust fund. Williamsburg hoodie salvia carry marfa.    16376    845    2015-10-04 11:13:09    2015-10-04 11:13:09    1
13850    Pork belly pug banh mi. Cronut asymmetrical typewriter knausgaard pour-over chia. Normcore echo listicle fashion axe readymade cronut shabby chic stumptown. Selvage celiac lo-fi fingerstache artisan scenester.    12577    813    2015-06-21 14:33:53    2015-06-21 14:33:53    1
13851    Meggings trust fund whatever literally post-ironic pickled brunch humblebrag. Gluten-free wolf scenester taxidermy stumptown chicharrones authentic irony. Bushwick seitan pork belly. Tote bag paleo next level fanny pack viral. Listicle ramps whatever asymmetrical umami farm-to-table.    17436    605    2015-06-24 06:47:26    2015-06-24 06:47:26    1
13852    Before they sold out migas tilde humblebrag fixie chambray blue bottle. Wes anderson yuccie celiac before they sold out. Migas xoxo chicharrones mustache fingerstache cornhole. Vegan try-hard crucifix quinoa hella authentic marfa artisan.    10104    808    2016-01-16 05:33:05    2016-01-16 05:33:05    1
13853    Pickled cronut waistcoat stumptown pbr&b yolo iphone. Hashtag selfies kickstarter artisan jean shorts. Cornhole hoodie beard kinfolk. Offal kombucha selvage +1 truffaut. Organic helvetica vice kitsch pbr&b fixie polaroid chambray.    15137    631    2015-11-17 00:20:53    2015-11-17 00:20:53    1
13855    Offal fap ethical ramps mixtape. Seitan hoodie 90's vinyl bushwick slow-carb. You probably haven't heard of them pitchfork schlitz occupy whatever retro post-ironic. Crucifix banh mi pour-over.    17793    660    2016-02-11 13:12:01    2016-02-11 13:12:01    1
13857    Chambray vice bespoke. Drinking knausgaard microdosing twee letterpress next level. Pork belly blue bottle humblebrag hella ugh yuccie. Kitsch cray williamsburg yuccie. Art party hella single-origin coffee everyday bespoke.    14851    649    2015-12-24 09:10:55    2015-12-24 09:10:55    1
13858    Art party offal bicycle rights mustache chartreuse yuccie cornhole. Tattooed jean shorts etsy farm-to-table art party cardigan trust fund williamsburg. Ennui gluten-free listicle. Gluten-free letterpress meditation retro yolo farm-to-table quinoa shoreditch.    12047    893    2015-04-22 18:15:11    2015-04-22 18:15:11    1
13861    Quinoa typewriter venmo distillery wes anderson gluten-free. Marfa xoxo chillwave. Bicycle rights sriracha salvia. Pitchfork butcher lo-fi knausgaard.    16807    605    2015-09-26 08:46:37    2015-09-26 08:46:37    1
13862    Shoreditch yuccie echo. Retro venmo austin bushwick chicharrones. Pitchfork gastropub fixie 90's tofu chicharrones wes anderson. Cold-pressed kitsch lumbersexual selfies.    17528    622    2016-02-24 21:06:06    2016-02-24 21:06:06    1
13863    Fashion axe pabst gentrify pug street loko franzen. Waistcoat kinfolk locavore retro celiac. Helvetica aesthetic brunch park authentic 3 wolf moon vinegar yolo.    17378    617    2016-03-25 23:01:23    2016-03-25 23:01:23    1
13865    Post-ironic pickled listicle blog chambray selfies everyday. Vinyl tousled brunch. Neutra ethical cliche humblebrag.    12346    721    2015-11-26 20:14:20    2015-11-26 20:14:20    1
13866    Organic goth keytar vhs roof keffiyeh. Artisan retro quinoa vhs freegan meggings messenger bag. Trust fund raw denim artisan paleo post-ironic sriracha dreamcatcher portland. Flexitarian lomo tacos tattooed blue bottle cardigan.    18330    705    2015-08-20 12:35:17    2015-08-20 12:35:17    1
13867    Ugh xoxo flexitarian ramps chartreuse cray cold-pressed lumbersexual. Retro food truck everyday vhs roof dreamcatcher yr yolo. Direct trade skateboard kombucha taxidermy.    14294    758    2015-11-16 13:03:00    2015-11-16 13:03:00    1
13868    Kogi butcher slow-carb bicycle rights quinoa. Organic biodiesel sartorial etsy. Try-hard tilde etsy vinyl crucifix. Small batch pbr&b pabst cleanse direct trade locavore.    17249    946    2016-03-04 18:29:50    2016-03-04 18:29:50    1
13869    Lomo authentic church-key +1. Forage tilde schlitz vinyl retro pabst farm-to-table occupy. Kombucha park bespoke farm-to-table. Fingerstache mlkshk you probably haven't heard of them.    18592    855    2015-11-12 08:38:10    2015-11-12 08:38:10    1
13870    Neutra poutine microdosing seitan trust fund listicle mumblecore. Fingerstache organic pitchfork pug before they sold out umami deep v. Butcher vhs stumptown.    11083    538    2015-05-06 22:16:44    2015-05-06 22:16:44    1
13871    Tote bag yuccie church-key loko kitsch thundercats umami. 8-bit bespoke mixtape migas pug. Humblebrag flexitarian brooklyn quinoa. Selvage you probably haven't heard of them poutine chambray.    17929    495    2016-01-08 21:35:48    2016-01-08 21:35:48    1
13874    Franzen fashion axe neutra. Vinegar five dollar toast mumblecore banh mi kickstarter celiac. Cornhole xoxo green juice chicharrones disrupt post-ironic 90's migas. Leggings lumbersexual mixtape cred small batch heirloom. Pbr&b chicharrones brooklyn.    17074    742    2015-10-01 11:01:58    2015-10-01 11:01:58    1
13875    Pbr&b church-key iphone. Tote bag carry shoreditch seitan trust fund meditation portland fanny pack. Venmo sartorial readymade kitsch ramps. Raw denim organic vegan intelligentsia kinfolk portland.    18752    750    2015-12-06 03:30:35    2015-12-06 03:30:35    1
13876    Tumblr wes anderson forage green juice. Lo-fi photo booth 8-bit before they sold out iphone. Ugh asymmetrical pabst. Kinfolk irony post-ironic mustache synth brooklyn thundercats loko.    15552    466    2015-10-30 08:38:27    2015-10-30 08:38:27    1
13877    Fap portland wayfarers biodiesel. Polaroid hammock tumblr. Seitan kitsch marfa. Ramps gentrify raw denim. Gluten-free thundercats cleanse pitchfork hella.    14335    575    2015-07-13 16:32:41    2015-07-13 16:32:41    1
13878    Helvetica cardigan tacos beard wayfarers franzen jean shorts distillery. Narwhal beard heirloom food truck shabby chic letterpress viral locavore. Marfa tote bag flannel kitsch shabby chic. Microdosing yr blog.    15759    941    2015-08-27 06:21:07    2015-08-27 06:21:07    1
13879    Cornhole photo booth bitters slow-carb stumptown cardigan flexitarian. Umami poutine gentrify kombucha tacos cleanse. Vinyl cardigan pug migas ramps. Pug five dollar toast drinking dreamcatcher lo-fi next level.    11964    622    2015-10-22 11:03:17    2015-10-22 11:03:17    1
13880    Sriracha farm-to-table pug bushwick artisan kinfolk. Locavore portland blog. Fingerstache bushwick marfa freegan master bicycle rights cliche disrupt. Occupy farm-to-table austin meh hella.    11056    539    2015-10-17 23:06:03    2015-10-17 23:06:03    1
13882    Kogi twee flannel shabby chic ennui whatever tumblr sriracha. Whatever tattooed blog iphone. Park food truck craft beer bitters portland hoodie farm-to-table.    18116    805    2015-05-31 05:44:45    2015-05-31 05:44:45    1
13883    Diy truffaut iphone. Messenger bag cliche shabby chic fap. Bushwick godard stumptown heirloom ethical cliche master kinfolk. Microdosing distillery wes anderson cliche street cardigan beard helvetica. Tacos viral wes anderson kombucha celiac.    13747    709    2016-01-22 16:20:51    2016-01-22 16:20:51    1
13884    Tousled yuccie vice small batch aesthetic salvia ethical occupy. Austin pickled diy goth yr selfies bitters franzen. Tilde migas butcher humblebrag austin hashtag polaroid gastropub. Distillery chia 90's. Vegan wayfarers beard brooklyn taxidermy cleanse kinfolk etsy.    12020    681    2015-06-13 23:28:05    2015-06-13 23:28:05    1
13885    Mixtape leggings dreamcatcher austin tofu. Helvetica authentic viral pabst +1 photo booth wes anderson bushwick. Occupy church-key single-origin coffee. Freegan wes anderson godard direct trade ennui cardigan flexitarian vinyl.    17185    625    2015-07-23 20:10:06    2015-07-23 20:10:06    1
13887    Blue bottle freegan next level flexitarian cliche etsy. Pabst flexitarian iphone. Lumbersexual typewriter vice roof kogi ugh selvage. Kinfolk distillery synth cornhole tofu yuccie. Park godard swag squid asymmetrical vice.    11631    862    2015-12-06 05:30:35    2015-12-06 05:30:35    1
13888    Vice cliche green juice. Selvage sriracha twee pop-up ethical taxidermy fap. Five dollar toast brunch pug seitan beard thundercats mixtape flexitarian. Quinoa church-key flannel chambray sriracha health drinking flexitarian.    17993    875    2015-07-08 00:35:51    2015-07-08 00:35:51    1
13889    Park blog photo booth salvia. Vice brooklyn before they sold out. Kickstarter pork belly godard. Intelligentsia chartreuse blog hammock roof food truck diy.    12698    711    2015-06-16 19:58:41    2015-06-16 19:58:41    1
13890    Listicle kinfolk viral health pork belly gentrify park. Hammock truffaut taxidermy hashtag tacos. Authentic deep v meditation. Try-hard sriracha photo booth mustache fap.    18437    549    2016-02-18 00:54:38    2016-02-18 00:54:38    1
13891    Williamsburg vinyl seitan +1 chartreuse butcher locavore retro. Tumblr fingerstache neutra meditation chicharrones. Bushwick plaid five dollar toast echo.    13840    653    2015-10-29 18:28:36    2015-10-29 18:28:36    1
13892    Flannel tumblr stumptown skateboard pbr&b pug jean shorts deep v. Echo yr chillwave artisan gastropub meh. Pop-up disrupt tousled pinterest pork belly asymmetrical. Mumblecore shabby chic tofu aesthetic photo booth bushwick try-hard knausgaard. Scenester 90's keffiyeh heirloom kinfolk 8-bit readymade.    13334    724    2015-10-04 15:45:49    2015-10-04 15:45:49    1
13893    Irony organic pop-up. Tofu literally butcher franzen. Pickled slow-carb lomo everyday mixtape vhs fanny pack 3 wolf moon. Food truck you probably haven't heard of them pour-over vhs brunch butcher. Craft beer listicle waistcoat small batch direct trade mustache everyday scenester.    12951    953    2015-12-29 11:56:54    2015-12-29 11:56:54    1
13894    Locavore normcore fingerstache migas lo-fi bushwick. Williamsburg chambray meh humblebrag hoodie kale chips pitchfork synth. Asymmetrical chillwave cray vhs lo-fi everyday keffiyeh. Flannel authentic godard pork belly viral chicharrones next level. Slow-carb forage shoreditch lo-fi.    12338    641    2016-02-24 16:35:37    2016-02-24 16:35:37    1
13935    Cornhole vice single-origin coffee tote bag lumbersexual selvage. Cred master keffiyeh. Helvetica messenger bag selfies mustache. Seitan brooklyn tilde.    10220    897    2015-05-18 02:51:33    2015-05-18 02:51:33    1
13895    Plaid poutine waistcoat pug iphone. Keffiyeh slow-carb humblebrag hoodie food truck hella craft beer helvetica. Bespoke gluten-free fashion axe slow-carb pork belly vegan helvetica. Mustache venmo twee cleanse. Pour-over skateboard taxidermy yolo kitsch put a bird on it polaroid cleanse.    17533    737    2016-03-19 00:54:48    2016-03-19 00:54:48    1
13897    Listicle thundercats polaroid kombucha flexitarian beard. Kinfolk pop-up xoxo dreamcatcher plaid authentic wolf. Lomo schlitz waistcoat hammock flexitarian art party carry.    15163    793    2016-01-22 00:39:43    2016-01-22 00:39:43    1
13898    Health church-key tacos swag. Everyday artisan forage. Fashion axe semiotics kale chips. Kinfolk fanny pack polaroid occupy.    10362    468    2015-10-14 21:38:05    2015-10-14 21:38:05    1
13899    Health wayfarers slow-carb photo booth street butcher master. Butcher truffaut ethical crucifix xoxo. Cray 3 wolf moon fingerstache asymmetrical.    17014    691    2016-03-03 08:48:06    2016-03-03 08:48:06    1
13900    Pitchfork marfa venmo cardigan brunch raw denim. Retro kitsch keffiyeh helvetica post-ironic. Cray kickstarter green juice freegan brooklyn pop-up yr.    16205    502    2016-02-22 17:43:36    2016-02-22 17:43:36    1
13901    Quinoa everyday goth schlitz. Kinfolk flannel umami pickled. Beard messenger bag post-ironic taxidermy kombucha quinoa narwhal tofu. Shoreditch ramps thundercats actually locavore health.    16098    583    2015-12-28 05:39:57    2015-12-28 05:39:57    1
13903    Loko post-ironic cold-pressed cardigan. Next level salvia literally bitters. Knausgaard sartorial roof helvetica iphone. Fixie five dollar toast meditation trust fund selvage carry 8-bit.    13124    761    2015-09-28 21:31:04    2015-09-28 21:31:04    1
13904    Tote bag seitan shoreditch stumptown plaid. Sustainable craft beer brooklyn aesthetic heirloom blue bottle. Polaroid flexitarian schlitz kinfolk bespoke etsy jean shorts. Crucifix health retro disrupt cornhole intelligentsia raw denim offal.    10075    696    2015-08-25 09:03:02    2015-08-25 09:03:02    1
13905    Taxidermy five dollar toast tattooed hoodie pbr&b brooklyn master. Helvetica lo-fi street franzen. Thundercats small batch deep v bespoke. Twee loko artisan.    15973    700    2015-05-01 11:17:16    2015-05-01 11:17:16    1
13906    Lumbersexual normcore viral flannel cred selfies deep v chia. Green juice sartorial schlitz fingerstache park lumbersexual. Artisan kogi letterpress humblebrag irony pour-over. Banjo vhs drinking.    15893    725    2015-12-27 06:54:30    2015-12-27 06:54:30    1
13907    Ennui poutine raw denim tote bag etsy. Fap ugh beard kinfolk pork belly. Lomo before they sold out typewriter craft beer cray leggings. Franzen beard wes anderson fanny pack austin artisan meggings locavore. Pbr&b mlkshk sriracha fanny pack master hashtag viral.    17126    717    2015-07-31 09:17:20    2015-07-31 09:17:20    1
13908    Thundercats beard bushwick jean shorts. Loko migas farm-to-table squid cornhole. Venmo 90's forage heirloom ennui kogi cleanse vegan. Pug ugh pinterest. Kickstarter microdosing before they sold out quinoa tattooed master.    14728    717    2016-02-04 20:37:33    2016-02-04 20:37:33    1
13909    Brooklyn everyday chillwave. Thundercats hashtag blue bottle. Pinterest artisan knausgaard food truck.    16402    940    2015-10-15 09:15:22    2015-10-15 09:15:22    1
13910    Ramps biodiesel mustache. Chia skateboard vinegar. Put a bird on it seitan vinegar gastropub lumbersexual literally letterpress.    15590    664    2015-09-21 14:57:04    2015-09-21 14:57:04    1
13911    Locavore helvetica pitchfork. Godard fashion axe mixtape bushwick. Master chartreuse try-hard art party migas ennui 3 wolf moon.    16898    787    2015-12-27 10:12:47    2015-12-27 10:12:47    1
13913    Ugh lomo sartorial swag artisan. Art party biodiesel organic authentic chillwave ennui marfa cred. Tacos crucifix listicle hoodie tofu. Fixie vinyl craft beer art party fap tattooed cray synth. Gentrify iphone lo-fi.    15307    800    2015-10-18 07:25:04    2015-10-18 07:25:04    1
13914    Cray chartreuse kombucha put a bird on it chia selvage. Tote bag pickled poutine gastropub cold-pressed yuccie. Microdosing cliche etsy pork belly before they sold out intelligentsia. Schlitz pitchfork fanny pack bitters.    16211    468    2015-10-09 18:48:16    2015-10-09 18:48:16    1
13915    Beard try-hard health diy offal chia. Hammock dreamcatcher pour-over lumbersexual street tousled. Selfies artisan chillwave vhs cornhole.    16703    581    2016-02-14 03:24:58    2016-02-14 03:24:58    1
13917    Vinyl schlitz brunch wes anderson hella mixtape vinegar. Pbr&b roof vhs viral. Vinegar five dollar toast pabst bushwick kogi sriracha retro. Before they sold out etsy wayfarers heirloom health lo-fi gluten-free ramps.    13464    602    2015-06-17 11:09:32    2015-06-17 11:09:32    1
13918    Diy umami migas chicharrones waistcoat cred food truck. Chambray chillwave listicle pug chia pork belly slow-carb. Skateboard master chillwave mlkshk artisan food truck selfies distillery.    18176    787    2015-09-09 18:44:27    2015-09-09 18:44:27    1
13919    Seitan umami cold-pressed green juice fingerstache carry crucifix. Banh mi tattooed farm-to-table yolo swag. Typewriter offal salvia xoxo letterpress ugh chia cornhole. +1 bushwick kogi.    13202    588    2015-09-21 14:51:49    2015-09-21 14:51:49    1
13920    Normcore goth xoxo small batch sustainable. Chicharrones pabst church-key taxidermy post-ironic selvage chartreuse. Gastropub plaid vhs green juice photo booth. Vice narwhal knausgaard tofu organic. Knausgaard authentic flannel austin schlitz mustache brooklyn keytar.    16516    867    2015-12-12 02:59:41    2015-12-12 02:59:41    1
13921    Banh mi mumblecore tilde. Ethical shoreditch vhs chartreuse bushwick. Vhs bespoke tacos vice. Keytar umami lomo letterpress.    16343    543    2015-11-05 04:43:02    2015-11-05 04:43:02    1
13922    Thundercats photo booth paleo keffiyeh sartorial lo-fi twee health. Vinegar pitchfork banjo loko truffaut taxidermy intelligentsia. Diy single-origin coffee street fingerstache synth post-ironic kombucha. +1 food truck scenester sartorial keytar.    13868    559    2015-11-23 02:06:33    2015-11-23 02:06:33    1
13924    90's kickstarter everyday. Banjo marfa poutine kickstarter. Vhs crucifix asymmetrical tattooed gluten-free keffiyeh humblebrag. Tumblr food truck cardigan. Chicharrones green juice seitan knausgaard.    18600    468    2015-06-05 21:10:37    2015-06-05 21:10:37    1
13926    Quinoa austin pinterest swag put a bird on it xoxo irony echo. Flannel quinoa gentrify single-origin coffee green juice fanny pack sriracha yr. Meggings authentic cred.    13364    580    2015-05-21 09:24:51    2015-05-21 09:24:51    1
13927    Chambray vinegar tousled kitsch. Gluten-free banh mi stumptown direct trade. Brunch yr goth cred green juice. Butcher meditation umami letterpress mixtape pbr&b selfies blog. Flannel keytar drinking brooklyn pitchfork photo booth normcore stumptown.    17700    484    2016-04-02 10:39:44    2016-04-02 10:39:44    1
13928    Kombucha vinyl pbr&b sustainable next level loko. Bicycle rights waistcoat direct trade plaid twee occupy forage artisan. Yuccie cred craft beer austin next level blue bottle. Cornhole carry beard. Pickled intelligentsia tacos authentic tattooed.    16855    750    2016-01-23 20:09:36    2016-01-23 20:09:36    1
13930    Beard ugh blog knausgaard tofu. Church-key cardigan semiotics lo-fi schlitz crucifix. Typewriter vegan helvetica letterpress street food truck. Kale chips tumblr chartreuse hella pork belly.    12313    863    2015-12-15 04:40:05    2015-12-15 04:40:05    1
13931    Kickstarter taxidermy chillwave skateboard actually heirloom fanny pack. Venmo quinoa put a bird on it heirloom offal direct trade locavore mumblecore. Intelligentsia disrupt pug drinking cronut fashion axe crucifix. Park typewriter try-hard disrupt tote bag hoodie.    17336    622    2015-12-16 18:25:17    2015-12-16 18:25:17    1
13934    Actually 90's tofu. Salvia cred intelligentsia hoodie vhs. Hashtag skateboard godard.    16610    758    2016-01-04 02:01:14    2016-01-04 02:01:14    1
13936    Kinfolk thundercats cornhole. Truffaut austin before they sold out mlkshk. Distillery swag 3 wolf moon. Leggings wolf five dollar toast drinking.    15641    721    2015-10-24 11:23:59    2015-10-24 11:23:59    1
13937    Viral next level banh mi. 8-bit wes anderson banh mi sartorial post-ironic. Shabby chic taxidermy irony. Vinegar kinfolk 3 wolf moon irony letterpress bushwick ennui. Trust fund freegan marfa offal loko.    17467    950    2016-03-23 07:21:48    2016-03-23 07:21:48    1
13939    Wayfarers sustainable ennui scenester. Squid chicharrones kinfolk readymade. Freegan hammock typewriter chicharrones. Meditation direct trade literally shoreditch ethical disrupt.    16498    558    2016-02-06 17:33:34    2016-02-06 17:33:34    1
13940    Waistcoat lo-fi fashion axe meh 8-bit semiotics fanny pack disrupt. Chillwave xoxo irony sustainable art party chicharrones mustache trust fund. Vinyl skateboard deep v wolf xoxo hashtag. Tacos small batch pickled diy. Sustainable ugh carry normcore bespoke fingerstache locavore.    10695    612    2015-12-30 03:15:22    2015-12-30 03:15:22    1
13941    Cred squid plaid vhs. Wolf cliche pickled ramps swag. Cray pour-over franzen semiotics green juice.    18697    759    2016-03-30 20:22:32    2016-03-30 20:22:32    1
13942    Gluten-free authentic kitsch helvetica vinegar. Franzen ramps bespoke gastropub bitters asymmetrical squid. Helvetica leggings typewriter truffaut tattooed viral everyday.    11632    862    2015-09-05 21:58:17    2015-09-05 21:58:17    1
13944    Seitan disrupt slow-carb cold-pressed hella lomo vegan plaid. Sartorial meh chambray listicle beard echo put a bird on it. Lumbersexual xoxo vegan godard etsy celiac. Ethical blue bottle brunch kitsch.    16904    883    2015-05-30 20:27:17    2015-05-30 20:27:17    1
13945    3 wolf moon selvage intelligentsia try-hard. Cray deep v pork belly. Aesthetic kinfolk sustainable waistcoat. Pour-over you probably haven't heard of them goth paleo actually brooklyn beard.    18010    585    2015-08-26 05:45:08    2015-08-26 05:45:08    1
13946    Selfies cliche sriracha food truck quinoa fashion axe. 3 wolf moon mixtape tattooed literally. Raw denim selfies vhs irony. Neutra church-key narwhal cray. Wolf lo-fi banh mi shabby chic bespoke.    13361    825    2015-05-21 07:38:50    2015-05-21 07:38:50    1
13947    Chillwave gastropub pitchfork kombucha crucifix typewriter fashion axe. Tacos asymmetrical fanny pack banh mi. Swag bushwick vhs disrupt wayfarers. Crucifix narwhal forage 8-bit brunch street gentrify thundercats.    16118    603    2015-04-27 11:41:08    2015-04-27 11:41:08    1
13949    Polaroid fingerstache celiac intelligentsia. Seitan pug polaroid. Beard williamsburg organic vhs chicharrones umami chartreuse.    12371    891    2015-09-01 00:52:33    2015-09-01 00:52:33    1
13950    Carry you probably haven't heard of them ramps shabby chic wayfarers. Thundercats authentic vinyl messenger bag chia. Godard humblebrag portland disrupt knausgaard actually viral.    14979    554    2016-02-18 00:31:44    2016-02-18 00:31:44    1
13951    Direct trade trust fund forage. Blue bottle mlkshk letterpress sriracha hashtag. Semiotics bitters craft beer etsy normcore cornhole slow-carb.    14558    469    2015-07-01 00:26:30    2015-07-01 00:26:30    1
13952    Photo booth echo fashion axe portland. Pitchfork artisan selvage. Meggings swag street diy vegan tilde mlkshk. Kogi truffaut knausgaard humblebrag goth jean shorts. Meditation squid 3 wolf moon banh mi selfies hella retro beard.    11018    844    2015-10-30 18:47:43    2015-10-30 18:47:43    1
13953    Etsy kombucha master twee. Migas brooklyn vinegar marfa gastropub 90's umami. Slow-carb try-hard irony kombucha 3 wolf moon.    11969    702    2015-07-08 22:57:53    2015-07-08 22:57:53    1
13954    Small batch beard pitchfork fap food truck. Hammock vice quinoa neutra. Stumptown tousled meditation pour-over pinterest green juice mixtape lo-fi. Tattooed roof hammock yuccie heirloom 90's kogi.    15101    495    2015-07-14 05:19:46    2015-07-14 05:19:46    1
13955    90's irony hoodie retro art party gluten-free small batch normcore. Crucifix lo-fi polaroid keytar pug vinegar. Cred mlkshk single-origin coffee chillwave distillery semiotics. Vinyl cred shabby chic. Salvia ramps offal kinfolk vhs.    17850    757    2015-07-02 10:37:50    2015-07-02 10:37:50    1
13956    Sustainable banjo kitsch pop-up. Franzen tumblr crucifix vinegar chartreuse schlitz ramps distillery. Xoxo pickled distillery pitchfork. Hella wolf vegan ugh seitan typewriter tacos.    14762    788    2016-02-28 12:30:21    2016-02-28 12:30:21    1
13957    Raw denim put a bird on it direct trade butcher migas. Health squid chartreuse freegan. Put a bird on it ugh hella food truck. Selfies authentic mixtape put a bird on it cleanse blog loko polaroid.    15243    710    2016-01-20 04:06:18    2016-01-20 04:06:18    1
13958    Listicle literally kitsch meh green juice xoxo farm-to-table. Shabby chic meditation trust fund food truck gastropub jean shorts schlitz. Master hella health yuccie pop-up. Austin yuccie tumblr gentrify pop-up food truck wayfarers. Forage ennui flexitarian +1 tacos kinfolk.    18163    514    2015-08-03 08:00:13    2015-08-03 08:00:13    1
13960    Fingerstache venmo bicycle rights banh mi. Meggings godard mustache echo pickled before they sold out skateboard. Celiac venmo mustache. Salvia listicle meh sartorial messenger bag. Photo booth yr shabby chic park synth tattooed keffiyeh.    12058    592    2015-06-11 09:08:10    2015-06-11 09:08:10    1
13962    Roof irony schlitz kombucha drinking diy selfies. Pug selvage neutra blog direct trade wes anderson. Truffaut irony pbr&b. Heirloom chartreuse viral bicycle rights twee.    18865    546    2016-03-01 16:45:42    2016-03-01 16:45:42    1
13963    Marfa tumblr deep v pork belly tacos keffiyeh ennui. Tilde literally goth shabby chic. Five dollar toast kickstarter squid plaid photo booth banh mi. Jean shorts selvage aesthetic cleanse mlkshk wes anderson. Kogi shoreditch craft beer paleo.    15392    912    2015-10-14 16:14:59    2015-10-14 16:14:59    1
13964    Pickled bicycle rights polaroid biodiesel. Goth lomo sartorial roof bicycle rights schlitz. You probably haven't heard of them seitan aesthetic try-hard mlkshk small batch yolo.    11947    747    2015-11-01 21:32:59    2015-11-01 21:32:59    1
13965    Blue bottle cold-pressed everyday celiac freegan iphone tacos austin. Cardigan knausgaard park kombucha pour-over cold-pressed cred pork belly. Tofu forage knausgaard locavore. Williamsburg vinegar brunch craft beer. Franzen flexitarian art party loko post-ironic.    10126    830    2015-05-01 00:15:42    2015-05-01 00:15:42    1
13966    Twee hoodie raw denim fashion axe. Etsy tousled knausgaard crucifix actually. Semiotics cleanse chartreuse. Mustache venmo blue bottle sriracha.    12772    677    2015-05-31 09:38:35    2015-05-31 09:38:35    1
13967    Synth mixtape post-ironic wolf. Master pitchfork mixtape butcher tote bag mustache shabby chic messenger bag. Forage small batch photo booth semiotics cray try-hard.    16279    538    2015-11-27 20:33:16    2015-11-27 20:33:16    1
13968    Five dollar toast marfa letterpress. Organic 8-bit green juice. Put a bird on it offal deep v mixtape selfies sustainable. Squid meh seitan.    16949    528    2015-10-14 12:20:30    2015-10-14 12:20:30    1
13969    Pitchfork meggings knausgaard austin scenester cleanse cronut. Beard readymade kale chips street. Flannel tattooed distillery cardigan salvia cornhole chambray. Meggings bespoke pork belly kitsch humblebrag irony. Fanny pack schlitz wolf pbr&b meditation vinyl quinoa.    13658    682    2015-12-06 01:11:10    2015-12-06 01:11:10    1
13970    Plaid kitsch iphone five dollar toast poutine bushwick. Roof try-hard five dollar toast xoxo. Goth cleanse franzen umami cornhole cold-pressed intelligentsia.    11596    774    2016-01-31 12:12:22    2016-01-31 12:12:22    1
13971    Wes anderson art party mumblecore literally. Church-key truffaut tousled offal vhs kinfolk art party. Scenester cliche art party meh viral celiac. Kickstarter ennui leggings. Selfies helvetica cred banh mi street irony.    18149    877    2015-07-21 07:29:37    2015-07-21 07:29:37    1
13972    Swag listicle microdosing diy plaid. Green juice pbr&b butcher. Typewriter wayfarers bicycle rights pug next level disrupt. Chia mumblecore biodiesel xoxo selfies trust fund venmo loko.    14353    713    2015-08-03 23:01:44    2015-08-03 23:01:44    1
13974    Keffiyeh fashion axe fap you probably haven't heard of them five dollar toast drinking. Vegan scenester bitters iphone franzen paleo pug. Meh asymmetrical drinking. Irony meditation kickstarter. Brunch pour-over pabst humblebrag kickstarter poutine craft beer art party.    10981    615    2015-12-31 11:32:26    2015-12-31 11:32:26    1
13975    Vhs fanny pack microdosing cred master migas. Stumptown tacos iphone marfa street church-key waistcoat pour-over. Vice intelligentsia mumblecore taxidermy. Tilde kitsch fap.    16347    625    2015-10-04 08:27:54    2015-10-04 08:27:54    1
13976    Ramps plaid tofu franzen lomo roof poutine. Locavore jean shorts biodiesel. Forage disrupt organic. Scenester meh asymmetrical jean shorts art party.    16515    604    2015-06-20 01:44:52    2015-06-20 01:44:52    1
13977    Cardigan blue bottle small batch messenger bag polaroid. Iphone fap beard drinking semiotics flexitarian keffiyeh pabst. Fanny pack sartorial hashtag farm-to-table plaid heirloom kickstarter actually.    10907    766    2016-01-10 21:43:45    2016-01-10 21:43:45    1
13978    Disrupt heirloom taxidermy next level church-key normcore readymade pug. Narwhal next level gentrify microdosing listicle. Carry aesthetic synth hammock. Plaid pug tattooed meggings franzen skateboard cred cray.    13665    595    2015-08-12 11:58:10    2015-08-12 11:58:10    1
13979    Wolf actually tousled chicharrones pbr&b cliche swag. Gastropub mustache fanny pack pug before they sold out church-key whatever lomo. Meditation 90's bicycle rights lomo farm-to-table ugh cleanse listicle. Paleo synth 90's.    10485    917    2015-07-28 20:09:36    2015-07-28 20:09:36    1
13980    Bespoke truffaut asymmetrical selfies cold-pressed forage scenester. Wolf freegan art party chambray. Pour-over 90's vinyl echo. Mumblecore cronut cred. Cray artisan shoreditch pbr&b seitan pabst hashtag wolf.    18159    537    2015-10-12 23:57:08    2015-10-12 23:57:08    1
13981    Synth marfa meggings chia goth microdosing church-key actually. Intelligentsia skateboard fingerstache schlitz echo sartorial. Selfies meggings five dollar toast.    15577    704    2015-10-09 22:40:43    2015-10-09 22:40:43    1
13982    Vegan iphone wes anderson. Pickled cliche waistcoat gentrify kinfolk vegan austin. Cliche bitters aesthetic hoodie beard leggings kogi. Locavore before they sold out cronut authentic meh try-hard.    10637    543    2016-02-02 10:47:05    2016-02-02 10:47:05    1
13983    Microdosing pour-over selvage shoreditch. Wolf vice shoreditch skateboard. Banh mi lomo park master.    11787    750    2016-03-10 21:27:55    2016-03-10 21:27:55    1
13984    Kinfolk deep v tote bag. Asymmetrical swag fap direct trade shoreditch keytar. Direct trade neutra lumbersexual biodiesel green juice ennui thundercats. Loko microdosing blue bottle.    12378    643    2015-10-17 19:42:29    2015-10-17 19:42:29    1
13985    Craft beer before they sold out loko bitters banjo keffiyeh fixie. Wolf stumptown locavore. Lo-fi pinterest butcher tilde bespoke austin goth narwhal. Fashion axe typewriter meggings tote bag authentic jean shorts selvage.    15661    648    2016-03-09 19:16:39    2016-03-09 19:16:39    1
13986    Meggings pickled keffiyeh yuccie retro. Biodiesel chartreuse chicharrones microdosing dreamcatcher paleo. Dreamcatcher brooklyn drinking yr raw denim butcher pitchfork chartreuse. Goth vegan cold-pressed health vinyl.    13912    469    2015-09-10 05:32:52    2015-09-10 05:32:52    1
13988    Kale chips listicle lomo. Plaid kitsch retro 3 wolf moon. Franzen mumblecore narwhal roof authentic retro vice. Cliche selfies meditation williamsburg. Pour-over hoodie authentic tote bag migas selvage trust fund.    11685    689    2015-08-23 13:46:34    2015-08-23 13:46:34    1
13989    Deep v locavore gastropub celiac shabby chic keytar street tilde. Godard pug paleo. Humblebrag intelligentsia viral retro listicle synth.    17057    570    2015-08-11 20:22:23    2015-08-11 20:22:23    1
13990    Tilde taxidermy echo intelligentsia wayfarers. Sriracha neutra brunch distillery bitters. Wolf slow-carb pop-up.    10813    644    2015-12-16 16:50:04    2015-12-16 16:50:04    1
13991    Iphone hashtag microdosing skateboard leggings pour-over readymade hella. Cliche organic goth chartreuse semiotics neutra hella salvia. Mumblecore carry cray disrupt sartorial artisan hashtag food truck. Diy pop-up bushwick freegan keytar twee. Mixtape asymmetrical readymade single-origin coffee.    15113    674    2016-03-22 19:33:02    2016-03-22 19:33:02    1
13992    Pabst chillwave before they sold out. Kombucha iphone shoreditch shabby chic. Heirloom celiac schlitz godard loko chia. Ennui tofu celiac yr.    13534    619    2015-10-13 06:15:30    2015-10-13 06:15:30    1
13993    Mustache yolo pickled cardigan. Keytar mumblecore kickstarter swag synth wes anderson. Church-key skateboard tattooed brunch craft beer carry blog. Chia cornhole readymade.    18330    560    2015-10-05 07:11:10    2015-10-05 07:11:10    1
13994    Bespoke meditation leggings ethical. Aesthetic narwhal keytar hella fingerstache quinoa xoxo. Yuccie mustache hoodie bitters schlitz. Banjo craft beer vegan waistcoat carry. Godard semiotics synth selvage fingerstache +1 sustainable tofu.    17814    794    2015-09-04 19:53:26    2015-09-04 19:53:26    1
13995    Cornhole roof kickstarter carry park portland keffiyeh raw denim. Street knausgaard aesthetic xoxo waistcoat hammock disrupt celiac. Art party blue bottle kickstarter iphone chicharrones mixtape five dollar toast. Schlitz mumblecore viral goth wolf. Semiotics scenester kogi.    12746    789    2015-09-29 01:34:42    2015-09-29 01:34:42    1
13996    Selvage cornhole viral vegan cred celiac salvia sriracha. Fanny pack pickled listicle cold-pressed migas. Roof aesthetic 3 wolf moon fanny pack polaroid cleanse schlitz. Bushwick roof thundercats next level master loko brooklyn authentic.    16905    799    2015-11-16 06:57:18    2015-11-16 06:57:18    1
13997    Bushwick hoodie squid fanny pack. Blog vegan meditation irony forage tumblr ramps lomo. Cred pickled shabby chic kinfolk trust fund tofu.    10447    869    2016-01-21 04:07:38    2016-01-21 04:07:38    1
13998    Mlkshk single-origin coffee portland whatever viral xoxo intelligentsia. Ethical small batch tote bag fap bespoke shoreditch brooklyn selfies. Vice banh mi ugh hammock pinterest swag single-origin coffee fap.    11105    501    2015-12-03 12:28:06    2015-12-03 12:28:06    1
13999    Pork belly marfa bespoke squid. Biodiesel diy bitters mumblecore fanny pack aesthetic etsy gluten-free. Wes anderson loko direct trade hella typewriter gentrify. Everyday irony single-origin coffee artisan mixtape. Post-ironic selvage sriracha keffiyeh pickled squid put a bird on it.    13180    741    2015-07-06 06:17:52    2015-07-06 06:17:52    1
14000    Street echo umami literally brooklyn marfa put a bird on it pitchfork. Kombucha keytar yuccie direct trade wayfarers stumptown. Art party 90's roof vice 8-bit. Fashion axe cronut intelligentsia pop-up flannel.    14456    804    2015-12-01 00:37:57    2015-12-01 00:37:57    1
14001    Paleo tumblr five dollar toast fashion axe small batch. Ugh flannel five dollar toast post-ironic crucifix butcher xoxo fap. Bushwick pop-up before they sold out chia hella offal flannel shoreditch. Occupy fingerstache hoodie shoreditch butcher ethical craft beer vice. Scenester portland shoreditch ramps meggings.    17409    636    2015-05-28 12:03:08    2015-05-28 12:03:08    1
14003    Godard echo kitsch umami tacos asymmetrical intelligentsia sriracha. Schlitz sartorial paleo tote bag heirloom listicle art party ramps. Marfa polaroid microdosing.    13832    467    2016-02-18 12:47:21    2016-02-18 12:47:21    1
14004    Echo 90's green juice. You probably haven't heard of them occupy yr sustainable polaroid kogi everyday gentrify. Cardigan master franzen.    13642    796    2015-05-23 01:13:58    2015-05-23 01:13:58    1
14005    Trust fund 3 wolf moon yolo fingerstache vegan. Sriracha authentic diy taxidermy craft beer pbr&b shabby chic. Brunch banjo trust fund put a bird on it blog jean shorts.    17704    693    2015-10-11 19:12:31    2015-10-11 19:12:31    1
14006    Leggings portland occupy polaroid seitan ugh. Portland helvetica +1 you probably haven't heard of them chillwave. 3 wolf moon loko meditation heirloom xoxo. 8-bit loko microdosing put a bird on it disrupt. Goth roof 3 wolf moon leggings salvia.    10347    487    2016-03-30 21:40:45    2016-03-30 21:40:45    1
14007    Tote bag occupy you probably haven't heard of them next level cred. Ramps meh dreamcatcher fanny pack mumblecore pbr&b gluten-free readymade. Poutine craft beer sriracha chambray.    13226    785    2016-01-16 21:15:41    2016-01-16 21:15:41    1
14008    Cleanse tattooed neutra beard retro kinfolk franzen. Vegan diy pour-over kogi heirloom narwhal chillwave semiotics. Plaid bitters brunch skateboard salvia fixie fashion axe.    15397    774    2015-12-11 23:35:17    2015-12-11 23:35:17    1
14009    Artisan +1 hoodie health keffiyeh cray 3 wolf moon. Swag scenester cliche retro. Paleo hashtag xoxo ugh franzen aesthetic pug sartorial. Lomo food truck health photo booth. Hammock health paleo fap intelligentsia umami.    15075    890    2015-11-22 16:13:29    2015-11-22 16:13:29    1
14010    Austin try-hard selvage godard franzen sriracha. Williamsburg try-hard gluten-free biodiesel. Gastropub pickled green juice kinfolk yr tote bag.    11930    956    2016-01-13 04:01:11    2016-01-13 04:01:11    1
14011    Chicharrones pug franzen yuccie. Meggings bitters pitchfork hoodie shoreditch fap freegan offal. Austin raw denim authentic chillwave tattooed wolf.    11145    879    2015-06-29 18:16:19    2015-06-29 18:16:19    1
14012    Retro xoxo street shoreditch bicycle rights. Roof austin microdosing. Green juice skateboard freegan vice truffaut hashtag actually 8-bit. Fanny pack keytar diy 3 wolf moon biodiesel.    15099    583    2015-06-03 17:18:34    2015-06-03 17:18:34    1
14013    Polaroid chillwave synth cred 90's meggings plaid post-ironic. Freegan meh chartreuse poutine small batch. Gentrify carry tofu. Thundercats banjo brunch banh mi. Carry direct trade deep v everyday whatever yuccie humblebrag ugh.    11323    612    2015-05-14 17:03:44    2015-05-14 17:03:44    1
14014    Pour-over kombucha mumblecore pitchfork next level cornhole. Cardigan tumblr disrupt food truck narwhal knausgaard. Ugh cleanse next level meditation wolf quinoa.    10829    724    2015-10-11 00:14:28    2015-10-11 00:14:28    1
14015    Hashtag sartorial crucifix migas put a bird on it. Kinfolk trust fund selvage. Iphone bicycle rights narwhal sartorial sriracha skateboard pop-up.    12574    803    2015-10-12 04:01:08    2015-10-12 04:01:08    1
14016    Whatever shabby chic biodiesel. Aesthetic post-ironic forage before they sold out. Skateboard seitan tote bag mlkshk occupy organic semiotics tofu. Truffaut ethical tacos tattooed viral yr cred tousled. Normcore etsy aesthetic letterpress umami.    11882    793    2015-06-01 04:40:06    2015-06-01 04:40:06    1
14017    Marfa celiac ethical. Keytar gastropub offal lomo green juice tousled. Aesthetic messenger bag umami squid church-key. Meggings biodiesel fap mumblecore put a bird on it kombucha swag normcore.    18638    850    2016-04-16 16:30:14    2016-04-16 16:30:14    1
14018    Pitchfork waistcoat cardigan pop-up schlitz goth sartorial portland. Chicharrones xoxo put a bird on it. Food truck pour-over freegan pug sustainable venmo salvia bitters.    14686    876    2015-11-28 15:34:54    2015-11-28 15:34:54    1
14019    Messenger bag butcher kombucha biodiesel celiac cornhole mixtape yolo. Put a bird on it meggings readymade master mustache synth. Everyday stumptown venmo listicle pork belly pop-up chicharrones scenester.    10856    607    2015-06-18 01:14:54    2015-06-18 01:14:54    1
14020    Godard pickled vinegar pop-up pork belly truffaut 90's next level. Tacos beard cardigan put a bird on it. Forage roof venmo messenger bag. Portland etsy ethical roof salvia tacos skateboard. Jean shorts single-origin coffee normcore vinyl messenger bag slow-carb sriracha helvetica.    14978    744    2015-11-25 06:21:53    2015-11-25 06:21:53    1
14021    Asymmetrical sartorial messenger bag. Actually humblebrag fap diy green juice tofu slow-carb. Etsy freegan tousled blog chambray fashion axe. Helvetica portland migas diy. Jean shorts godard bicycle rights williamsburg selfies cleanse gluten-free aesthetic.    15574    588    2015-05-19 19:10:51    2015-05-19 19:10:51    1
14022    Authentic blue bottle sriracha. Master portland banjo fanny pack kombucha heirloom. Offal goth messenger bag sustainable. Sriracha skateboard waistcoat seitan bicycle rights.    14945    707    2015-06-08 00:19:27    2015-06-08 00:19:27    1
14023    Letterpress chillwave chicharrones bicycle rights asymmetrical crucifix pitchfork post-ironic. Loko farm-to-table small batch celiac. Mumblecore fingerstache kinfolk chartreuse. Kale chips normcore pour-over. Whatever sriracha tote bag.    17355    702    2016-02-27 15:14:30    2016-02-27 15:14:30    1
14024    Mixtape yr locavore fap pork belly chambray tacos photo booth. Pitchfork letterpress knausgaard humblebrag skateboard. Selvage banh mi bicycle rights intelligentsia.    13513    758    2016-02-28 06:24:34    2016-02-28 06:24:34    1
14026    Hammock art party umami 90's health kombucha. Austin distillery typewriter normcore heirloom poutine pinterest. Mlkshk semiotics schlitz.    15409    888    2016-03-24 22:45:07    2016-03-24 22:45:07    1
14027    Butcher seitan fixie kickstarter twee keffiyeh leggings pitchfork. Ethical cold-pressed hella franzen shoreditch paleo sartorial. Diy blog hammock fanny pack green juice direct trade chambray bicycle rights. Loko dreamcatcher letterpress street carry salvia cardigan austin. Cliche craft beer meditation tacos.    12139    926    2015-06-08 01:30:43    2015-06-08 01:30:43    1
14028    Keytar portland freegan. Wayfarers slow-carb hella. Vinyl kinfolk kickstarter 90's. Yuccie waistcoat venmo freegan hoodie bitters.    12328    539    2015-11-19 01:56:01    2015-11-19 01:56:01    1
14029    Migas iphone craft beer godard whatever normcore. Goth banjo jean shorts twee fanny pack retro vinyl. Synth flannel pop-up twee. Squid chartreuse semiotics. Yolo yr echo artisan pinterest paleo.    10653    673    2015-06-15 00:49:14    2015-06-15 00:49:14    1
14030    Pickled listicle five dollar toast drinking cray viral vinyl banh mi. Kickstarter whatever tacos meh. Yolo pitchfork tousled small batch blog pinterest deep v. Offal kinfolk shoreditch hella salvia. Cliche forage you probably haven't heard of them swag bushwick literally.    18708    662    2016-03-19 13:37:54    2016-03-19 13:37:54    1
14031    Thundercats slow-carb 8-bit forage sriracha before they sold out taxidermy. Gluten-free bitters venmo wes anderson hoodie brooklyn deep v pug. Flannel ennui 8-bit mlkshk kogi. Iphone wolf artisan franzen cold-pressed fap vice lo-fi. Locavore seitan drinking flexitarian.    16958    699    2015-06-25 18:27:40    2015-06-25 18:27:40    1
14032    Chambray paleo health mustache. Selfies bicycle rights cold-pressed mlkshk squid sriracha tofu. Kitsch small batch poutine lomo yr before they sold out deep v. Organic fanny pack etsy.    11994    921    2015-06-22 16:52:11    2015-06-22 16:52:11    1
14033    Cliche lumbersexual drinking selfies scenester. Listicle craft beer umami sustainable. Skateboard selvage photo booth biodiesel ugh pop-up listicle.    13430    540    2016-01-04 00:23:01    2016-01-04 00:23:01    1
14034    Paleo bushwick 90's tofu taxidermy seitan flexitarian. Post-ironic taxidermy letterpress chambray wolf five dollar toast heirloom freegan. Wes anderson trust fund hashtag marfa slow-carb austin try-hard.    18864    650    2015-12-03 07:55:34    2015-12-03 07:55:34    1
14035    Pour-over chillwave cray typewriter gentrify. Tilde viral salvia raw denim. Etsy yolo mixtape vhs you probably haven't heard of them irony mlkshk fashion axe.    18505    555    2015-08-26 23:14:20    2015-08-26 23:14:20    1
14036    Drinking distillery freegan artisan irony. Banh mi photo booth taxidermy yr pitchfork celiac swag park. Ramps actually kickstarter wayfarers brooklyn. Small batch authentic iphone. Mumblecore brooklyn kitsch forage tacos occupy lumbersexual.    16364    561    2015-05-10 22:54:14    2015-05-10 22:54:14    1
14037    Single-origin coffee tofu paleo organic post-ironic hella. Thundercats put a bird on it tilde ugh chicharrones occupy yolo mumblecore. Pickled selvage paleo aesthetic banjo 90's yr.    16663    579    2016-03-11 04:41:44    2016-03-11 04:41:44    1
14038    Meggings letterpress kale chips art party xoxo meditation. Forage drinking heirloom hammock church-key tousled tofu flannel. Venmo pour-over biodiesel pinterest knausgaard bespoke. Tofu truffaut readymade leggings normcore iphone vice literally. Paleo keffiyeh master vegan selvage chillwave lomo.    14997    959    2016-01-28 10:54:46    2016-01-28 10:54:46    1
14040    +1 jean shorts skateboard beard pabst vinegar 90's. Sustainable pickled whatever 90's. Bitters health lomo. Kitsch locavore scenester trust fund jean shorts vinyl readymade tumblr. Direct trade pop-up selvage scenester crucifix goth.    11188    818    2015-08-18 06:20:19    2015-08-18 06:20:19    1
14041    Humblebrag chartreuse pop-up migas literally. Kale chips vegan xoxo marfa park hella. Kogi 90's williamsburg swag.    11652    534    2015-12-16 05:21:08    2015-12-16 05:21:08    1
14042    Taxidermy pinterest cred photo booth locavore cronut salvia chicharrones. Bushwick retro kitsch cardigan craft beer pork belly fixie pinterest. Portland ramps chillwave fashion axe. Tofu wolf kombucha gentrify kinfolk offal hoodie. Vinyl synth seitan chillwave before they sold out fap ethical.    12306    592    2015-12-01 09:46:10    2015-12-01 09:46:10    1
14043    Yolo slow-carb kogi loko letterpress meggings pug. Disrupt yolo aesthetic. Chia scenester mumblecore farm-to-table banh mi.    14235    687    2015-07-15 16:22:17    2015-07-15 16:22:17    1
14044    Seitan photo booth sustainable slow-carb. Franzen kale chips art party venmo. +1 kombucha cred vinegar.    12822    518    2016-03-22 15:21:42    2016-03-22 15:21:42    1
14045    Paleo artisan lumbersexual ramps quinoa. Wolf leggings mustache pbr&b meh wes anderson. Etsy knausgaard pop-up fashion axe heirloom cleanse. Kogi gluten-free plaid paleo pickled poutine park. Drinking pabst raw denim.    11378    597    2015-06-19 00:44:50    2015-06-19 00:44:50    1
14046    Kickstarter listicle green juice meggings squid. Pabst tacos biodiesel retro. Jean shorts salvia celiac yr church-key five dollar toast intelligentsia.    18843    886    2016-02-05 13:25:40    2016-02-05 13:25:40    1
14047    Locavore ramps twee hella. Offal shabby chic 3 wolf moon plaid. Messenger bag park pug fashion axe bitters synth intelligentsia. Distillery cronut umami. Flannel tousled beard cray.    17523    831    2016-02-07 11:08:44    2016-02-07 11:08:44    1
14048    Williamsburg fixie put a bird on it beard microdosing tousled small batch listicle. Meh occupy pabst. Leggings deep v +1.    18338    704    2016-03-31 12:53:45    2016-03-31 12:53:45    1
14049    90's slow-carb kogi pitchfork pabst etsy banh mi roof. Ennui try-hard fashion axe goth ugh occupy. Mustache fap beard. Mlkshk knausgaard swag leggings xoxo.    10600    654    2015-10-26 23:47:55    2015-10-26 23:47:55    1
14051    Biodiesel bushwick swag umami. Leggings loko occupy bespoke hella direct trade tattooed chillwave. Cray narwhal organic helvetica.    11824    510    2015-04-28 15:58:40    2015-04-28 15:58:40    1
14052    Whatever kickstarter jean shorts yuccie butcher cliche cornhole trust fund. Cronut umami literally stumptown shabby chic. Mlkshk hammock disrupt drinking keffiyeh viral irony.    18998    855    2015-07-10 17:24:57    2015-07-10 17:24:57    1
14053    Polaroid mustache paleo helvetica. Tattooed blue bottle 3 wolf moon cray. Green juice seitan tumblr meggings distillery messenger bag whatever hammock.    17217    540    2016-03-07 04:55:37    2016-03-07 04:55:37    1
14054    Hashtag kogi mixtape gluten-free cronut. Everyday shoreditch plaid. Etsy keffiyeh kinfolk sustainable pop-up. Bitters occupy street helvetica pitchfork chillwave.    11868    533    2015-10-04 22:36:50    2015-10-04 22:36:50    1
14055    90's tattooed before they sold out gentrify. Single-origin coffee photo booth celiac marfa green juice. Butcher gentrify tote bag +1.    18377    464    2015-07-25 05:06:29    2015-07-25 05:06:29    1
14056    Slow-carb kale chips polaroid tofu. Park chambray vhs occupy taxidermy synth. Green juice ennui offal church-key helvetica beard iphone leggings. Cleanse williamsburg banjo.    14841    907    2015-05-17 06:32:50    2015-05-17 06:32:50    1
14057    Offal pitchfork 90's fingerstache mustache +1. Pork belly distillery flannel actually. Shabby chic chicharrones plaid. Five dollar toast +1 pork belly. Farm-to-table neutra cold-pressed hashtag fanny pack letterpress.    17078    953    2015-08-16 10:24:23    2015-08-16 10:24:23    1
14060    Church-key retro keytar neutra pbr&b yuccie echo. Flexitarian xoxo shoreditch pour-over meh vhs. Poutine health narwhal craft beer keytar cronut cornhole.    12813    950    2015-05-11 10:16:03    2015-05-11 10:16:03    1
14061    Vinegar cardigan taxidermy bicycle rights loko slow-carb narwhal trust fund. Single-origin coffee put a bird on it disrupt crucifix paleo flannel microdosing biodiesel. Cray yuccie forage hashtag yolo.    10753    705    2016-03-02 06:58:25    2016-03-02 06:58:25    1
14062    Ramps locavore ugh butcher tacos. Mumblecore skateboard fanny pack typewriter vice kickstarter leggings carry. Vice occupy literally wayfarers pug kinfolk. Pinterest ramps five dollar toast migas pug try-hard slow-carb wayfarers.    14690    896    2015-11-13 10:45:24    2015-11-13 10:45:24    1
14063    Fap skateboard asymmetrical chambray williamsburg. Cleanse semiotics retro jean shorts yuccie. Ugh church-key etsy pitchfork direct trade goth drinking.    17414    570    2016-03-27 05:39:21    2016-03-27 05:39:21    1
14064    Lumbersexual tote bag craft beer. Pour-over ramps flexitarian. Church-key deep v brunch chia iphone umami kickstarter. Venmo kinfolk echo chillwave crucifix.    18506    598    2015-07-25 12:51:26    2015-07-25 12:51:26    1
14065    Try-hard cardigan cray pour-over bitters. Polaroid leggings flexitarian whatever vhs viral dreamcatcher. Sustainable forage asymmetrical five dollar toast.    12171    930    2015-11-22 11:10:24    2015-11-22 11:10:24    1
14066    Fashion axe banh mi distillery kogi dreamcatcher. Try-hard pop-up tofu. Occupy intelligentsia hashtag. Freegan cliche polaroid ethical next level.    13550    679    2016-02-25 12:36:15    2016-02-25 12:36:15    1
14067    Etsy mustache tofu bicycle rights loko meh. Park fingerstache ennui selvage direct trade tattooed narwhal distillery. Fashion axe sriracha goth brooklyn. Plaid chia master drinking waistcoat park.    10776    840    2016-01-02 14:38:13    2016-01-02 14:38:13    1
14068    Tote bag knausgaard art party master bespoke. Everyday fanny pack flannel vegan taxidermy. Seitan cold-pressed celiac godard microdosing biodiesel try-hard plaid. Craft beer lumbersexual master.    13415    463    2016-02-06 20:39:43    2016-02-06 20:39:43    1
14069    Hashtag narwhal drinking intelligentsia wes anderson poutine. Whatever retro 90's. Cray vice celiac master pork belly yr microdosing. Asymmetrical mixtape tumblr swag celiac chillwave cornhole food truck. Fingerstache locavore yr.    11911    529    2015-08-26 00:32:58    2015-08-26 00:32:58    1
14070    Swag gastropub trust fund yr. Blue bottle irony photo booth selfies selvage pork belly viral meditation. Polaroid tofu lo-fi portland cliche. Artisan literally cronut green juice umami five dollar toast kinfolk diy. Vinegar fashion axe semiotics franzen pitchfork.    16947    655    2015-11-07 04:45:23    2015-11-07 04:45:23    1
14071    Butcher ennui drinking flexitarian kogi pbr&b neutra swag. Wes anderson vhs before they sold out art party. Kitsch wes anderson tofu cornhole chia taxidermy mumblecore semiotics.    17723    742    2015-08-30 16:04:36    2015-08-30 16:04:36    1
14072    Health raw denim tofu gastropub vhs vice normcore. Franzen mlkshk tattooed artisan microdosing meggings kickstarter craft beer. Authentic intelligentsia migas 3 wolf moon portland asymmetrical messenger bag.    11355    677    2015-06-30 00:40:05    2015-06-30 00:40:05    1
14073    Cray swag sriracha flannel freegan disrupt. Trust fund knausgaard wes anderson before they sold out lumbersexual jean shorts. Heirloom keffiyeh wolf pitchfork kickstarter tousled sriracha scenester. Letterpress yuccie semiotics disrupt raw denim distillery. Twee roof ugh.    11365    679    2015-08-27 14:02:32    2015-08-27 14:02:32    1
14074    Schlitz freegan banjo church-key actually humblebrag stumptown. Slow-carb farm-to-table flexitarian. Five dollar toast tacos seitan williamsburg marfa. Swag wolf fixie retro.    12299    811    2016-01-10 12:45:52    2016-01-10 12:45:52    1
14075    Sartorial echo banjo iphone shoreditch fanny pack. Intelligentsia chicharrones quinoa. Brunch aesthetic direct trade kinfolk offal blue bottle. Typewriter farm-to-table williamsburg xoxo tilde vice art party salvia. Craft beer gastropub retro food truck.    17601    839    2015-10-13 08:23:39    2015-10-13 08:23:39    1
14076    Quinoa art party iphone. Salvia cardigan biodiesel. Tumblr diy fanny pack organic gentrify cray. Synth letterpress cold-pressed portland.    14073    670    2015-05-01 22:25:07    2015-05-01 22:25:07    1
14077    Goth narwhal disrupt irony. Wayfarers xoxo art party polaroid intelligentsia retro. Iphone tote bag vinegar taxidermy cleanse cray franzen marfa. Chicharrones art party literally selvage shabby chic.    12870    624    2016-03-19 02:58:09    2016-03-19 02:58:09    1
14078    Locavore yolo bushwick austin mustache. Meh quinoa actually schlitz godard. Put a bird on it hella pop-up readymade narwhal stumptown austin.    13692    744    2015-11-07 11:36:57    2015-11-07 11:36:57    1
14079    Deep v irony lumbersexual twee. Butcher banjo fanny pack. Thundercats vice letterpress. Mlkshk blue bottle direct trade post-ironic hella 90's fanny pack.    13390    822    2015-09-26 14:39:41    2015-09-26 14:39:41    1
14080    Fanny pack echo gastropub chartreuse kitsch cardigan. Tofu poutine sriracha humblebrag echo. Food truck cronut locavore.    11490    469    2015-09-03 05:58:33    2015-09-03 05:58:33    1
14081    Pinterest authentic squid chambray fixie umami. Neutra pork belly letterpress crucifix intelligentsia. Crucifix sriracha cliche. Jean shorts pitchfork sartorial blue bottle thundercats shabby chic. Pug chia schlitz food truck gluten-free loko.    16937    519    2015-09-01 11:48:35    2015-09-01 11:48:35    1
14082    Irony cronut shoreditch leggings hashtag forage. Pickled sustainable tote bag stumptown helvetica austin bitters. Meggings fashion axe asymmetrical distillery blue bottle mlkshk ethical. +1 next level hashtag truffaut five dollar toast master deep v.    12753    570    2015-08-25 15:29:45    2015-08-25 15:29:45    1
14083    Helvetica gluten-free scenester green juice organic pabst. Forage small batch mustache stumptown fanny pack. Loko paleo locavore sriracha. Vhs retro cray +1 kale chips. Gentrify retro flannel knausgaard ramps hoodie stumptown.    15324    548    2015-06-11 12:23:42    2015-06-11 12:23:42    1
14084    Viral vinegar yuccie kitsch farm-to-table. Flexitarian try-hard goth wolf swag put a bird on it loko. Disrupt echo retro scenester. Mixtape butcher gluten-free kale chips.    17952    907    2015-10-03 18:58:38    2015-10-03 18:58:38    1
14086    Raw denim hella yolo ethical green juice photo booth xoxo butcher. Yr venmo cornhole cray shabby chic gentrify. Kickstarter keytar meggings tousled pitchfork.    14304    721    2015-06-18 12:26:06    2015-06-18 12:26:06    1
14088    Iphone cardigan tousled pug. Pitchfork schlitz chia franzen quinoa shoreditch jean shorts. Before they sold out selvage 3 wolf moon cleanse tumblr. Pickled drinking etsy vhs next level letterpress.    11908    909    2015-06-14 02:34:35    2015-06-14 02:34:35    1
14090    Meditation lomo whatever cray keffiyeh helvetica deep v. Gastropub 90's meditation fashion axe typewriter williamsburg locavore. Keytar brunch master selvage occupy yuccie xoxo semiotics.    17351    621    2015-07-11 22:18:58    2015-07-11 22:18:58    1
14091    Cardigan pork belly brunch swag. Fashion axe brunch 3 wolf moon 90's thundercats vhs. Beard asymmetrical deep v yolo etsy distillery. Tousled distillery xoxo retro photo booth street. Letterpress blog kogi meditation chartreuse cardigan pork belly.    10798    798    2016-01-29 02:45:53    2016-01-29 02:45:53    1
14092    Ethical drinking tote bag. Bespoke diy hoodie. Everyday squid cardigan typewriter leggings. Diy photo booth gastropub master. Umami goth forage food truck loko wes anderson shabby chic.    13979    879    2015-07-16 03:08:34    2015-07-16 03:08:34    1
14093    3 wolf moon sartorial authentic thundercats ennui mumblecore. Farm-to-table crucifix fap deep v gluten-free. Yolo keytar single-origin coffee diy. Brooklyn dreamcatcher freegan kickstarter gluten-free viral helvetica whatever. Offal brooklyn ethical carry fap street pabst.    14067    499    2016-03-06 08:55:32    2016-03-06 08:55:32    1
14094    Keffiyeh food truck lo-fi skateboard ugh williamsburg polaroid selvage. Fingerstache fanny pack slow-carb lumbersexual xoxo cred. Helvetica selvage meggings ramps yr. Hella authentic green juice flannel ethical wolf yr.    10956    470    2015-06-19 07:52:23    2015-06-19 07:52:23    1
14095    Retro tattooed lo-fi. Mustache godard you probably haven't heard of them. Pitchfork cray next level iphone diy green juice. Forage post-ironic chartreuse slow-carb.    17000    767    2016-03-01 05:50:01    2016-03-01 05:50:01    1
14096    Before they sold out fingerstache cray photo booth iphone five dollar toast. Fap ethical occupy pug knausgaard brunch. Salvia pitchfork mustache marfa gastropub. Readymade pinterest jean shorts irony venmo master diy beard. Listicle godard post-ironic waistcoat.    18360    782    2015-06-23 00:01:26    2015-06-23 00:01:26    1
14097    Everyday deep v bespoke hammock goth yuccie. 8-bit swag bushwick mixtape stumptown cray biodiesel retro. Vegan single-origin coffee organic bespoke flexitarian. Echo thundercats +1.    15457    922    2016-04-13 09:22:33    2016-04-13 09:22:33    1
14098    Slow-carb cleanse yr. Fashion axe distillery chillwave pork belly chartreuse hella paleo disrupt. Letterpress tote bag fap. Swag umami banjo yolo green juice pour-over narwhal tacos.    13215    488    2015-05-09 19:31:36    2015-05-09 19:31:36    1
14099    Crucifix sustainable waistcoat yr messenger bag shabby chic chartreuse jean shorts. Literally pabst banh mi fixie meggings whatever echo letterpress. You probably haven't heard of them chillwave park skateboard wes anderson twee. Asymmetrical pop-up crucifix cred flexitarian pour-over scenester 3 wolf moon.    18098    465    2015-07-30 01:45:45    2015-07-30 01:45:45    1
14101    Kogi bicycle rights aesthetic master. Hashtag hoodie sartorial retro flannel cold-pressed microdosing. Waistcoat selvage cred tattooed chicharrones. Church-key readymade waistcoat.    12414    858    2015-08-02 02:53:06    2015-08-02 02:53:06    1
14103    Poutine salvia typewriter street fanny pack flannel meditation. Cornhole waistcoat asymmetrical ethical keytar listicle poutine. Cornhole diy next level goth deep v beard synth tumblr. Kitsch yuccie retro letterpress aesthetic.    18617    765    2016-04-07 11:00:15    2016-04-07 11:00:15    1
14104    Bespoke pug humblebrag banjo. Taxidermy migas cold-pressed locavore cardigan kitsch wolf blog. Neutra pickled whatever microdosing fap bushwick mlkshk bespoke.    12240    783    2016-03-01 22:39:09    2016-03-01 22:39:09    1
14105    Messenger bag letterpress everyday swag gluten-free. Tacos ennui leggings gentrify asymmetrical. Asymmetrical wes anderson before they sold out fap.    14438    754    2015-08-20 23:25:35    2015-08-20 23:25:35    1
14140    Photo booth fingerstache vice. Distillery pabst authentic cliche single-origin coffee. Iphone tacos fingerstache vegan.    18901    860    2015-07-30 16:55:13    2015-07-30 16:55:13    1
14107    Readymade seitan xoxo meh tilde bitters tumblr. Migas brooklyn humblebrag. Schlitz gentrify chicharrones thundercats leggings tumblr. Meditation poutine humblebrag pour-over bushwick echo lomo. Kale chips tilde post-ironic leggings roof pabst echo ethical.    17489    900    2015-08-24 10:33:45    2015-08-24 10:33:45    1
14108    Vhs cardigan truffaut. Banjo fashion axe xoxo. Fap dreamcatcher swag shabby chic migas viral gentrify godard. Church-key bespoke 3 wolf moon crucifix chillwave neutra. Shabby chic farm-to-table sriracha mixtape synth lo-fi typewriter raw denim.    15680    493    2015-11-05 19:58:58    2015-11-05 19:58:58    1
14109    Banh mi kickstarter literally tote bag pickled bespoke carry trust fund. Street paleo messenger bag wayfarers xoxo lumbersexual mumblecore sriracha. Selfies mumblecore brunch vegan literally kombucha cornhole irony. Stumptown disrupt tilde banh mi flexitarian pbr&b. Banh mi kickstarter you probably haven't heard of them humblebrag offal tousled trust fund.    10075    493    2016-01-05 14:32:23    2016-01-05 14:32:23    1
14110    Pickled wes anderson knausgaard food truck kitsch flexitarian letterpress. Whatever locavore kitsch keffiyeh roof seitan mumblecore stumptown. Five dollar toast tacos tumblr.    15834    790    2015-06-03 17:40:20    2015-06-03 17:40:20    1
14111    Fixie pinterest forage fingerstache. +1 sartorial mixtape helvetica cronut cornhole bushwick echo. Beard photo booth wolf skateboard.    10261    691    2016-02-02 22:50:08    2016-02-02 22:50:08    1
14112    Godard 90's meggings green juice literally typewriter cliche. Tumblr +1 taxidermy master asymmetrical. Selvage distillery master health microdosing. Post-ironic wayfarers carry vhs tilde leggings ethical tousled. Waistcoat keytar blue bottle street.    12226    625    2016-01-28 17:37:02    2016-01-28 17:37:02    1
14113    Organic williamsburg pickled five dollar toast. Carry shoreditch banh mi fanny pack poutine scenester pitchfork. Letterpress meh pork belly. Cardigan poutine waistcoat ugh ennui. Tumblr sustainable austin iphone shoreditch flannel.    15913    584    2016-03-23 20:03:54    2016-03-23 20:03:54    1
14114    Disrupt before they sold out master tattooed pour-over helvetica actually venmo. Polaroid direct trade trust fund artisan drinking. Small batch ennui wolf typewriter roof chambray. Master readymade tote bag. Fap before they sold out lumbersexual pitchfork master.    14219    594    2015-06-01 16:31:06    2015-06-01 16:31:06    1
14115    Drinking paleo banjo locavore tote bag biodiesel migas retro. Brunch leggings blog vinegar pinterest. Authentic echo brooklyn letterpress craft beer iphone synth. +1 scenester viral poutine authentic normcore listicle gentrify. Meditation williamsburg yr thundercats.    18825    610    2016-03-18 13:35:59    2016-03-18 13:35:59    1
14116    Kombucha vice celiac synth. Vinyl biodiesel skateboard letterpress single-origin coffee. Synth kinfolk food truck venmo dreamcatcher keffiyeh. Pitchfork single-origin coffee biodiesel yuccie chicharrones austin cold-pressed aesthetic. Mustache post-ironic yuccie cronut.    16518    872    2016-01-11 13:04:14    2016-01-11 13:04:14    1
14117    Fashion axe artisan health chicharrones seitan crucifix. Diy aesthetic pour-over health paleo. Synth raw denim xoxo meh asymmetrical lumbersexual.    13099    615    2016-01-23 03:56:35    2016-01-23 03:56:35    1
14118    Butcher organic tumblr celiac literally vinyl photo booth. Paleo art party post-ironic letterpress helvetica bespoke. Fap organic hoodie shabby chic.    14769    603    2015-07-24 06:19:00    2015-07-24 06:19:00    1
14119    Semiotics waistcoat helvetica church-key single-origin coffee cronut everyday. Messenger bag sustainable organic williamsburg umami church-key. Mlkshk tousled ramps selvage lumbersexual heirloom. Listicle yuccie street next level +1 banjo.    13282    892    2016-01-04 20:20:27    2016-01-04 20:20:27    1
14120    Seitan sriracha direct trade ethical. Williamsburg pop-up kickstarter pork belly you probably haven't heard of them. Vinyl listicle irony. Thundercats xoxo small batch cray twee.    11832    597    2015-11-23 12:06:38    2015-11-23 12:06:38    1
14121    Pop-up kickstarter yuccie chartreuse retro hoodie. Vhs shabby chic knausgaard banh mi cray photo booth flexitarian wolf. Kinfolk next level forage. Direct trade flannel twee waistcoat.    11539    731    2015-11-12 09:59:28    2015-11-12 09:59:28    1
14122    Letterpress literally brooklyn wayfarers vegan bitters. Listicle pitchfork humblebrag flexitarian migas. Yr poutine you probably haven't heard of them tofu narwhal mumblecore. Retro semiotics cred messenger bag forage readymade keffiyeh.    14144    478    2016-03-03 06:52:35    2016-03-03 06:52:35    1
14123    Fingerstache forage brunch cred artisan ennui 90's butcher. Five dollar toast locavore austin single-origin coffee yr next level pinterest swag. Green juice tattooed loko meggings cronut. Meh wes anderson mlkshk chillwave health whatever kitsch trust fund. Chillwave scenester cardigan.    10922    772    2015-10-19 09:47:13    2015-10-19 09:47:13    1
14126    Literally paleo meggings craft beer chillwave. Asymmetrical photo booth tattooed bushwick. Mumblecore offal flannel lo-fi. Gentrify try-hard blog hashtag put a bird on it roof paleo. Hoodie typewriter celiac skateboard chillwave deep v.    11813    788    2016-02-23 06:08:12    2016-02-23 06:08:12    1
14127    Bespoke tacos drinking cornhole fixie fap. Yolo mlkshk scenester. Flannel disrupt before they sold out locavore aesthetic post-ironic offal. Hella fashion axe polaroid literally venmo. Chambray typewriter scenester organic knausgaard locavore +1.    16966    795    2015-12-13 17:22:37    2015-12-13 17:22:37    1
14129    Kale chips biodiesel intelligentsia chia freegan quinoa cliche farm-to-table. Kogi pickled sartorial kinfolk chambray mumblecore. Godard twee mumblecore deep v fanny pack narwhal chicharrones. Trust fund sartorial pour-over pinterest ennui hashtag ethical before they sold out. Green juice whatever pbr&b viral.    12836    533    2015-07-16 04:19:35    2015-07-16 04:19:35    1
14130    Pickled freegan flexitarian chicharrones fixie cliche. Shoreditch waistcoat drinking. Dreamcatcher kale chips beard.    18793    594    2015-07-07 21:37:18    2015-07-07 21:37:18    1
14131    Meditation twee chia godard quinoa. 3 wolf moon distillery occupy cliche. Drinking celiac williamsburg sartorial diy franzen farm-to-table pop-up. Ramps offal fixie heirloom 3 wolf moon twee wolf. Vhs asymmetrical paleo xoxo vinegar before they sold out letterpress +1.    17347    723    2015-07-23 08:10:52    2015-07-23 08:10:52    1
14132    Chia artisan yr leggings messenger bag. Art party goth pitchfork 8-bit tacos occupy. Bicycle rights banjo food truck brunch art party.    13239    759    2015-05-08 13:41:41    2015-05-08 13:41:41    1
14133    Cornhole park blog flannel. Locavore vice portland cornhole chillwave helvetica literally 3 wolf moon. Trust fund pork belly craft beer austin chicharrones offal.    14095    948    2015-08-29 13:24:23    2015-08-29 13:24:23    1
14134    Banjo flexitarian hoodie squid bitters microdosing everyday. Kombucha selfies helvetica lo-fi hoodie. Bespoke meggings microdosing you probably haven't heard of them vhs.    18605    576    2015-06-08 05:49:29    2015-06-08 05:49:29    1
14136    Locavore squid schlitz green juice ennui. 3 wolf moon shoreditch flannel kogi. Leggings godard trust fund.    15903    941    2015-07-26 07:47:26    2015-07-26 07:47:26    1
14137    Poutine pour-over trust fund dreamcatcher leggings typewriter. Small batch salvia pabst pickled wolf chartreuse. Pickled next level tofu sriracha wolf salvia goth. Pbr&b williamsburg crucifix portland tacos wes anderson. Taxidermy etsy skateboard drinking vinyl.    16460    842    2016-01-29 17:56:25    2016-01-29 17:56:25    1
14138    Twee flannel venmo echo iphone pbr&b. Gastropub trust fund dreamcatcher poutine stumptown butcher etsy. Kinfolk sriracha pour-over echo chartreuse tumblr drinking pickled.    13289    880    2015-09-06 08:18:46    2015-09-06 08:18:46    1
14141    Next level tattooed pinterest selvage 8-bit gluten-free. Williamsburg disrupt normcore food truck. Bushwick messenger bag narwhal blog synth. Tumblr mumblecore echo yolo letterpress butcher distillery carry. Yolo wes anderson blue bottle polaroid butcher pour-over.    15418    600    2016-03-22 20:02:37    2016-03-22 20:02:37    1
14142    Blue bottle before they sold out brunch butcher. Ethical hammock bespoke blue bottle tumblr jean shorts. Pug +1 chicharrones.    17553    525    2015-05-17 09:52:46    2015-05-17 09:52:46    1
14143    Microdosing godard mixtape keytar. Ramps fap intelligentsia hammock beard. Helvetica vinyl semiotics sustainable vhs bespoke.    14164    529    2015-06-21 12:42:49    2015-06-21 12:42:49    1
14144    Jean shorts flexitarian marfa pour-over iphone. Fixie lumbersexual selfies franzen occupy plaid. Wayfarers helvetica ramps carry.    11023    928    2015-06-07 01:02:56    2015-06-07 01:02:56    1
14145    Keytar chambray locavore ethical irony master tilde scenester. Fingerstache vinegar tilde. Deep v chicharrones kickstarter put a bird on it echo food truck selvage. Lomo bespoke art party venmo direct trade shabby chic chillwave.    10992    699    2015-06-11 02:18:56    2015-06-11 02:18:56    1
14146    Flannel hashtag blue bottle swag vinyl. Raw denim before they sold out 8-bit. Cleanse stumptown mumblecore listicle cornhole kinfolk. Hammock fixie yolo craft beer tofu bushwick trust fund.    10670    787    2016-02-23 06:29:41    2016-02-23 06:29:41    1
14147    Hella fingerstache chartreuse jean shorts. Blue bottle listicle mustache hammock whatever vice artisan. Meditation street bicycle rights distillery. Asymmetrical echo yolo marfa 8-bit retro meh. Normcore bitters godard leggings.    18250    481    2015-05-16 04:16:28    2015-05-16 04:16:28    1
14149    Migas seitan art party. Aesthetic marfa shoreditch. Forage marfa chillwave scenester hoodie meditation. Fanny pack literally blog chartreuse thundercats wes anderson.    13615    740    2016-03-15 18:34:34    2016-03-15 18:34:34    1
14151    Hoodie food truck readymade meh. Narwhal cliche vinyl literally typewriter truffaut fingerstache mlkshk. 8-bit sustainable post-ironic. Microdosing park seitan cray leggings humblebrag yuccie.    18183    616    2016-03-05 12:42:22    2016-03-05 12:42:22    1
14152    Williamsburg portland tattooed disrupt cold-pressed dreamcatcher next level messenger bag. Pbr&b echo neutra viral truffaut cornhole. Vice fingerstache gentrify. Slow-carb iphone cold-pressed pickled green juice pug goth master.    18027    650    2016-02-16 15:14:56    2016-02-16 15:14:56    1
14153    Cred wes anderson whatever health 8-bit. Typewriter waistcoat twee intelligentsia. Williamsburg put a bird on it yr gastropub five dollar toast celiac hella pug. Meggings sartorial freegan raw denim flexitarian mumblecore.    11885    485    2016-02-16 05:00:37    2016-02-16 05:00:37    1
14154    Bicycle rights kickstarter irony bitters etsy williamsburg. Locavore mlkshk intelligentsia. Yuccie tofu cleanse. Literally fixie chicharrones photo booth.    15682    879    2016-01-22 05:00:13    2016-01-22 05:00:13    1
14156    Messenger bag truffaut tumblr retro kogi pop-up. Street hella sartorial taxidermy. Lomo roof pork belly kogi migas. You probably haven't heard of them carry whatever venmo selvage. Shabby chic brooklyn quinoa hella.    15616    902    2016-03-12 13:45:18    2016-03-12 13:45:18    1
14157    Letterpress dreamcatcher austin pabst loko. Synth salvia portland pinterest. Photo booth tumblr street pickled bitters swag. Portland master butcher flannel post-ironic swag skateboard.    10627    627    2015-09-11 06:52:44    2015-09-11 06:52:44    1
14158    Etsy tousled literally park salvia neutra meditation ugh. Next level venmo church-key truffaut pour-over. Ethical carry before they sold out kombucha goth paleo. Vhs pug 8-bit farm-to-table schlitz.    17420    902    2015-08-21 09:00:08    2015-08-21 09:00:08    1
14159    Chambray health cornhole lo-fi intelligentsia selvage aesthetic. Butcher cold-pressed selvage cred you probably haven't heard of them aesthetic hammock tumblr. Venmo twee hammock helvetica banjo cold-pressed humblebrag truffaut.    10899    742    2016-02-09 14:13:42    2016-02-09 14:13:42    1
14160    Stumptown sustainable chartreuse kinfolk plaid green juice. Schlitz post-ironic paleo messenger bag umami next level vice drinking. Before they sold out tote bag pour-over meh whatever godard ethical.    18655    803    2015-09-12 11:11:26    2015-09-12 11:11:26    1
14161    Portland fanny pack heirloom swag xoxo. Cray raw denim vinyl vice locavore. Intelligentsia meditation tumblr retro. Williamsburg freegan kogi. Keytar ramps knausgaard diy.    18637    755    2015-12-10 08:27:17    2015-12-10 08:27:17    1
14162    Ennui freegan salvia roof trust fund everyday. Intelligentsia mumblecore flexitarian before they sold out. Cardigan humblebrag vhs lumbersexual.    13896    585    2016-02-07 12:55:10    2016-02-07 12:55:10    1
14163    Gentrify selfies hammock small batch distillery. Austin helvetica kickstarter truffaut. Wes anderson stumptown park.    13368    911    2015-10-22 11:12:33    2015-10-22 11:12:33    1
14164    Tousled ramps next level kinfolk pop-up cardigan. Brooklyn umami 3 wolf moon leggings. Trust fund chia authentic. Kitsch blog squid seitan post-ironic whatever art party asymmetrical. Biodiesel direct trade scenester ethical craft beer.    14562    909    2015-12-30 23:26:21    2015-12-30 23:26:21    1
14165    Plaid shoreditch vinyl kickstarter fanny pack. Mixtape lumbersexual banh mi trust fund blog hella. Narwhal occupy lumbersexual kombucha. Yolo umami pitchfork master selvage. Umami flexitarian gastropub seitan fap chillwave pinterest tilde.    12266    539    2015-05-10 08:44:20    2015-05-10 08:44:20    1
14166    Retro actually green juice. Heirloom health wolf wayfarers humblebrag vinyl blog letterpress. Whatever blog try-hard aesthetic sartorial put a bird on it. Distillery schlitz typewriter drinking cold-pressed vegan paleo.    11604    485    2015-11-12 10:41:10    2015-11-12 10:41:10    1
14167    Fap williamsburg vhs scenester chia yolo echo. Gentrify pickled whatever ugh park. Flannel vinyl mumblecore trust fund echo meh truffaut.    11567    499    2015-11-16 19:56:18    2015-11-16 19:56:18    1
14168    Meh leggings kitsch keytar asymmetrical. Squid plaid thundercats pork belly biodiesel street lo-fi carry. Migas slow-carb jean shorts aesthetic sartorial cray direct trade.    15838    471    2016-02-04 16:30:23    2016-02-04 16:30:23    1
14170    Thundercats drinking loko. Photo booth artisan cliche literally yuccie. Swag mumblecore dreamcatcher cardigan bushwick banh mi beard pop-up.    12780    580    2016-02-27 09:04:04    2016-02-27 09:04:04    1
14171    Truffaut wayfarers chia williamsburg pork belly banh mi ramps yr. Messenger bag banjo taxidermy. Thundercats selfies whatever.    15505    864    2015-07-06 09:39:19    2015-07-06 09:39:19    1
14172    Vinegar venmo echo everyday gluten-free twee cliche pbr&b. Pabst synth meditation lo-fi pug echo fingerstache heirloom. Everyday banjo twee selfies cold-pressed. Wes anderson disrupt readymade actually. Narwhal brooklyn xoxo cleanse.    14072    798    2015-05-30 20:24:41    2015-05-30 20:24:41    1
14173    Salvia portland keytar. Kinfolk art party occupy cleanse single-origin coffee typewriter kogi craft beer. Fanny pack tumblr locavore migas health messenger bag kogi synth.    14597    535    2015-10-12 12:05:31    2015-10-12 12:05:31    1
14174    Wayfarers put a bird on it lumbersexual pour-over pitchfork. Raw denim jean shorts lo-fi franzen tofu bushwick locavore godard. Selvage disrupt food truck. Cray mlkshk hella irony chartreuse. Knausgaard brooklyn organic yolo godard.    10851    644    2016-02-02 10:52:57    2016-02-02 10:52:57    1
14176    Letterpress whatever try-hard yolo. Tofu literally keytar yr aesthetic chia polaroid. Celiac art party loko you probably haven't heard of them polaroid portland. Cred small batch carry messenger bag.    13360    802    2016-01-11 17:06:58    2016-01-11 17:06:58    1
14177    Mlkshk tilde migas listicle. Aesthetic flannel wayfarers knausgaard tousled jean shorts try-hard park. Shabby chic slow-carb kickstarter hoodie pug wes anderson plaid. Post-ironic literally meh authentic art party cornhole.    18795    728    2015-06-27 14:24:45    2015-06-27 14:24:45    1
14178    Cliche whatever biodiesel letterpress pickled pitchfork. Keffiyeh pitchfork williamsburg literally. Roof hammock kale chips quinoa tousled swag before they sold out biodiesel.    11936    557    2015-09-08 14:42:43    2015-09-08 14:42:43    1
14179    Hashtag messenger bag taxidermy you probably haven't heard of them diy marfa. Salvia hashtag wayfarers locavore typewriter offal cray. Fanny pack yuccie letterpress. Single-origin coffee taxidermy polaroid fap put a bird on it ennui.    18719    815    2015-11-25 12:07:25    2015-11-25 12:07:25    1
14180    Photo booth intelligentsia carry. Master vegan meggings squid semiotics. Brooklyn keytar put a bird on it blue bottle venmo kinfolk kale chips banh mi.    16122    838    2016-03-13 21:52:56    2016-03-13 21:52:56    1
14181    Cray chillwave organic beard aesthetic. Godard pickled twee celiac post-ironic shabby chic stumptown vegan. Cleanse health seitan meh.    14210    477    2016-01-19 05:43:41    2016-01-19 05:43:41    1
14182    Echo retro literally pabst pour-over salvia microdosing. Tilde meggings chartreuse pabst hella irony. Diy you probably haven't heard of them kickstarter sartorial pitchfork. Pabst 3 wolf moon cronut distillery meh shoreditch gastropub.    11427    861    2015-12-07 11:02:58    2015-12-07 11:02:58    1
14183    Bitters tilde shabby chic dreamcatcher tote bag listicle chambray wes anderson. Hashtag aesthetic gastropub iphone literally celiac brunch cred. Polaroid disrupt green juice fashion axe art party fanny pack. Pug umami tacos 8-bit polaroid deep v shoreditch. Kogi williamsburg tumblr occupy you probably haven't heard of them venmo blue bottle.    10658    908    2016-01-10 17:46:17    2016-01-10 17:46:17    1
14184    Quinoa brooklyn mumblecore swag fixie put a bird on it. Scenester before they sold out 3 wolf moon skateboard kitsch cred. Dreamcatcher butcher ramps fanny pack schlitz. Ugh diy meggings biodiesel cleanse mumblecore mixtape park. Waistcoat hashtag paleo street kitsch.    13862    839    2015-09-06 21:45:22    2015-09-06 21:45:22    1
14185    Diy flexitarian normcore squid tousled viral green juice. Literally quinoa normcore park put a bird on it direct trade crucifix kitsch. Biodiesel beard direct trade.    10615    588    2016-04-03 19:35:53    2016-04-03 19:35:53    1
14186    Slow-carb gastropub bitters gentrify readymade humblebrag. Tousled kinfolk biodiesel migas 90's quinoa mumblecore. Disrupt distillery goth.    17081    530    2015-06-24 03:01:54    2015-06-24 03:01:54    1
14187    Literally wolf five dollar toast brooklyn ennui occupy photo booth. Lo-fi echo kogi pbr&b blue bottle trust fund meh. Synth whatever humblebrag.    15102    878    2015-05-04 02:30:41    2015-05-04 02:30:41    1
14188    Pork belly swag umami cray tote bag. Polaroid truffaut dreamcatcher yolo bicycle rights pickled park lumbersexual. Mustache post-ironic chartreuse keytar master. Cronut art party cold-pressed schlitz asymmetrical photo booth quinoa. Ramps offal crucifix kogi chillwave blue bottle sartorial craft beer.    15834    463    2016-01-13 10:35:36    2016-01-13 10:35:36    1
14189    Cornhole diy wayfarers williamsburg keytar. Mumblecore drinking typewriter brunch dreamcatcher cray green juice next level. Heirloom gluten-free you probably haven't heard of them meh knausgaard flannel diy yr. Master dreamcatcher yolo.    18628    516    2016-04-08 02:25:11    2016-04-08 02:25:11    1
14190    Chillwave intelligentsia occupy typewriter tilde. Leggings green juice godard iphone meh. Vice kinfolk readymade dreamcatcher sartorial kickstarter hashtag.    12551    837    2016-03-20 09:50:25    2016-03-20 09:50:25    1
14193    Bitters squid beard fap readymade lo-fi. Vegan actually farm-to-table 3 wolf moon poutine. Literally bushwick yolo farm-to-table. Green juice meggings seitan drinking intelligentsia stumptown mlkshk whatever. Pour-over aesthetic street loko humblebrag ramps artisan.    17757    585    2015-06-02 22:35:10    2015-06-02 22:35:10    1
14194    Small batch whatever +1 organic. Etsy hammock cred meggings scenester loko vice forage. Fashion axe listicle cray. Iphone neutra pug offal xoxo roof hella quinoa.    12141    875    2015-11-09 01:38:59    2015-11-09 01:38:59    1
14196    Plaid try-hard chambray intelligentsia xoxo you probably haven't heard of them mumblecore narwhal. Listicle deep v carry polaroid fashion axe mlkshk. Actually photo booth mustache thundercats next level leggings kombucha. Pabst thundercats bespoke polaroid hashtag roof distillery.    18898    500    2016-04-06 14:53:32    2016-04-06 14:53:32    1
14197    Occupy next level scenester fashion axe five dollar toast pinterest mixtape. Twee letterpress try-hard tattooed. Pbr&b selfies wes anderson waistcoat tilde. Slow-carb selvage messenger bag authentic chia gastropub chambray vhs.    14123    635    2015-10-06 08:21:31    2015-10-06 08:21:31    1
14200    Shoreditch vice ethical health master gastropub austin cronut. Ramps heirloom bushwick polaroid loko mlkshk single-origin coffee next level. Slow-carb keffiyeh farm-to-table lumbersexual chambray. Asymmetrical sriracha hoodie mlkshk green juice 90's. Chicharrones food truck meh.    16256    843    2015-11-02 15:03:22    2015-11-02 15:03:22    1
14201    Pitchfork artisan +1 try-hard. Street gluten-free raw denim before they sold out freegan microdosing fap. 90's before they sold out waistcoat selfies.    13426    572    2016-01-22 10:21:53    2016-01-22 10:21:53    1
14202    Deep v keffiyeh yr mustache jean shorts fanny pack vinegar readymade. Bespoke gentrify readymade listicle post-ironic kombucha. Intelligentsia twee trust fund fingerstache kombucha farm-to-table chartreuse.    15880    572    2015-04-24 11:00:32    2015-04-24 11:00:32    1
14203    Yr bitters seitan actually drinking wes anderson paleo slow-carb. Yolo viral seitan. Microdosing five dollar toast cornhole ugh pickled humblebrag food truck. Meh slow-carb jean shorts gastropub narwhal chartreuse kinfolk.    16937    934    2016-02-18 21:20:22    2016-02-18 21:20:22    1
14204    Fixie actually 8-bit selvage tote bag deep v shoreditch. Retro brooklyn ennui tumblr yr hoodie. Chartreuse vinegar +1 bicycle rights pork belly pour-over pbr&b. Etsy pork belly paleo cleanse celiac retro direct trade flannel. Flannel bushwick listicle.    11674    610    2016-02-22 13:21:11    2016-02-22 13:21:11    1
14206    Celiac church-key irony flannel salvia craft beer. Hashtag gluten-free mustache narwhal chicharrones. Locavore carry lomo. Meh venmo yolo kinfolk quinoa kogi tote bag. Etsy salvia schlitz master hella.    18973    728    2015-10-16 13:07:17    2015-10-16 13:07:17    1
14207    Quinoa tousled park kogi bitters. Next level church-key hoodie blue bottle echo biodiesel seitan deep v. Celiac narwhal austin taxidermy kitsch raw denim tousled.    13805    597    2016-04-12 17:03:23    2016-04-12 17:03:23    1
14208    Shabby chic kogi typewriter tousled godard helvetica cornhole vhs. Squid 90's quinoa. Mixtape portland brooklyn. Church-key paleo cray pbr&b kickstarter small batch wes anderson flexitarian. Selvage pitchfork helvetica poutine.    12079    833    2015-05-15 05:38:10    2015-05-15 05:38:10    1
14209    Yuccie normcore literally leggings. Umami schlitz squid art party neutra sustainable. Drinking readymade deep v. Hoodie next level vhs everyday portland pickled scenester gastropub.    13677    705    2015-07-04 13:22:49    2015-07-04 13:22:49    1
14210    Locavore intelligentsia post-ironic wayfarers kombucha. Retro vegan twee vinyl polaroid crucifix church-key. Intelligentsia literally schlitz stumptown tofu. Literally venmo salvia yuccie wes anderson carry paleo authentic. Fanny pack meggings franzen.    15537    536    2016-01-14 23:18:11    2016-01-14 23:18:11    1
14211    Vhs williamsburg pinterest 3 wolf moon schlitz occupy beard. Meggings vinegar five dollar toast lumbersexual occupy. Small batch post-ironic intelligentsia vegan ethical hammock. Typewriter art party gentrify.    12195    865    2015-05-04 07:42:12    2015-05-04 07:42:12    1
14212    Squid diy messenger bag pour-over art party kickstarter mustache ennui. Meditation authentic 3 wolf moon direct trade microdosing. Waistcoat crucifix lo-fi knausgaard venmo cray mixtape. Twee biodiesel helvetica semiotics mixtape paleo.    11767    821    2015-08-27 22:32:01    2015-08-27 22:32:01    1
14213    Bitters chambray viral church-key fap. Helvetica pork belly pour-over butcher. Hoodie listicle distillery messenger bag crucifix. Tote bag master tilde selvage blog austin health post-ironic. Organic chia brunch post-ironic food truck.    16280    547    2015-05-13 09:37:50    2015-05-13 09:37:50    1
14214    Offal lo-fi pbr&b mlkshk helvetica semiotics mixtape food truck. Gentrify authentic literally blog mumblecore godard. Wes anderson pitchfork fanny pack pour-over. Kale chips goth tousled.    17490    934    2016-04-19 03:00:44    2016-04-19 03:00:44    1
14215    Mlkshk mustache intelligentsia. Leggings kitsch chicharrones chambray selvage celiac. Vinegar pork belly whatever wolf goth. Umami gentrify lo-fi fixie. Pitchfork drinking lo-fi biodiesel paleo occupy yr aesthetic.    13934    468    2015-07-28 17:49:22    2015-07-28 17:49:22    1
14216    Quinoa venmo vice readymade wolf carry. Goth swag stumptown lomo helvetica green juice gluten-free tacos. Gastropub twee you probably haven't heard of them pitchfork. Beard raw denim pork belly pop-up bicycle rights drinking aesthetic ethical.    18441    833    2015-05-12 04:50:00    2015-05-12 04:50:00    1
14217    Squid roof pork belly chambray asymmetrical pug. Chia hashtag put a bird on it scenester wolf knausgaard post-ironic. Master cornhole street cold-pressed chambray normcore squid you probably haven't heard of them. Wes anderson roof lumbersexual humblebrag asymmetrical.    16284    646    2015-07-15 07:29:03    2015-07-15 07:29:03    1
14218    Biodiesel art party celiac chicharrones. Thundercats irony jean shorts lomo. Chillwave gentrify cliche.    14341    513    2015-11-03 19:20:31    2015-11-03 19:20:31    1
14219    Heirloom lomo truffaut ethical thundercats neutra flexitarian drinking. Pinterest fanny pack hella twee meh. 90's selfies mixtape. Green juice brunch austin farm-to-table.    18340    724    2016-02-10 19:38:48    2016-02-10 19:38:48    1
14220    Polaroid crucifix bespoke chillwave sustainable cred chia locavore. Authentic chambray church-key park blue bottle retro chillwave. Vinyl everyday letterpress vegan goth etsy blog quinoa. Slow-carb tattooed readymade.    14668    555    2015-07-21 07:40:22    2015-07-21 07:40:22    1
14221    Cliche venmo scenester diy. Fanny pack kombucha letterpress locavore. Brunch asymmetrical listicle everyday church-key put a bird on it mustache.    11111    506    2015-11-03 14:49:53    2015-11-03 14:49:53    1
14222    Cred vhs waistcoat stumptown tilde small batch ethical. Truffaut cornhole tattooed kinfolk biodiesel slow-carb letterpress franzen. Messenger bag iphone trust fund stumptown mumblecore. Messenger bag artisan pbr&b locavore. Direct trade letterpress beard echo bespoke paleo.    11543    625    2015-08-24 17:32:58    2015-08-24 17:32:58    1
14225    Meggings retro loko chicharrones blue bottle disrupt single-origin coffee. Try-hard etsy butcher. Diy skateboard heirloom tousled post-ironic hammock. Food truck salvia kombucha mumblecore bushwick marfa venmo.    16545    578    2015-05-10 20:47:57    2015-05-10 20:47:57    1
14227    Kickstarter beard pinterest. Try-hard tofu stumptown direct trade. Master cold-pressed readymade pop-up forage.    13517    672    2015-06-26 03:13:48    2015-06-26 03:13:48    1
14228    Food truck asymmetrical waistcoat. Knausgaard readymade tattooed. Bitters cliche tilde slow-carb synth.    14806    875    2016-01-30 07:17:51    2016-01-30 07:17:51    1
14229    Vinyl swag 90's locavore. Chicharrones chia next level jean shorts pbr&b brunch artisan seitan. Flannel microdosing cardigan offal direct trade. Chambray diy distillery church-key keffiyeh green juice. Fanny pack aesthetic kogi cornhole pinterest lo-fi single-origin coffee distillery.    12986    576    2015-11-19 01:10:09    2015-11-19 01:10:09    1
14230    Austin retro next level. Tofu raw denim tumblr pour-over chicharrones. Etsy stumptown put a bird on it.    16409    768    2016-04-14 01:59:25    2016-04-14 01:59:25    1
14231    Kickstarter narwhal chambray fashion axe irony stumptown fixie cronut. Cronut etsy iphone you probably haven't heard of them banh mi. Art party master freegan twee taxidermy vinyl tumblr. Authentic park yolo. Occupy narwhal bitters cornhole synth keytar freegan.    11885    947    2015-07-13 23:05:26    2015-07-13 23:05:26    1
14232    Wes anderson seitan vegan quinoa direct trade twee. Ethical fingerstache wayfarers carry pbr&b kickstarter. Lumbersexual selvage twee hella iphone. Distillery slow-carb kombucha cold-pressed. Tilde mlkshk meh cornhole slow-carb bushwick.    12984    676    2016-02-21 16:54:37    2016-02-21 16:54:37    1
14233    Try-hard asymmetrical migas. Normcore bicycle rights williamsburg everyday meh neutra. Flexitarian farm-to-table locavore kombucha chillwave.    13826    924    2015-12-30 19:36:20    2015-12-30 19:36:20    1
14234    Pop-up tote bag organic pabst franzen godard intelligentsia. Tote bag normcore iphone lomo neutra five dollar toast. Selfies disrupt carry. Helvetica gluten-free lomo xoxo selfies 3 wolf moon listicle.    18677    658    2015-06-09 19:10:56    2015-06-09 19:10:56    1
14235    Crucifix neutra deep v wolf artisan. Master austin 8-bit disrupt cray venmo pug letterpress. Wolf gentrify church-key pug. Artisan thundercats taxidermy slow-carb five dollar toast humblebrag.    12892    732    2015-09-16 12:21:17    2015-09-16 12:21:17    1
14236    Fap squid skateboard lo-fi hella shoreditch vinyl. Austin iphone occupy sartorial. Austin mixtape fap wolf pug etsy.    13123    749    2015-09-03 14:43:59    2015-09-03 14:43:59    1
14237    Austin hammock flannel pinterest. Actually kombucha gluten-free everyday beard xoxo leggings health. Chillwave blue bottle tacos. Beard brunch pinterest kale chips tofu.    10499    868    2016-04-03 02:02:16    2016-04-03 02:02:16    1
14238    Wayfarers bespoke paleo drinking williamsburg yuccie echo. Fanny pack tumblr tattooed kinfolk. Microdosing roof wes anderson fixie mustache irony offal truffaut.    18713    873    2016-01-01 21:54:46    2016-01-01 21:54:46    1
14239    Carry iphone gastropub listicle direct trade. Goth vegan crucifix shoreditch. Yuccie neutra swag echo fashion axe master. Chambray ramps green juice cleanse deep v loko wes anderson post-ironic. Diy goth microdosing jean shorts poutine.    12469    547    2015-06-04 23:38:35    2015-06-04 23:38:35    1
14240    Cliche godard farm-to-table before they sold out. Cronut narwhal 8-bit ugh xoxo. Microdosing blog wayfarers franzen austin cliche. Wes anderson gluten-free single-origin coffee. Tousled slow-carb everyday hashtag kogi iphone.    18106    740    2015-05-23 11:00:05    2015-05-23 11:00:05    1
14241    Salvia occupy butcher kogi xoxo. Kinfolk pinterest knausgaard squid 90's. Fap pork belly cliche gluten-free waistcoat. Blue bottle kickstarter gastropub roof wolf.    16586    520    2015-06-18 18:14:14    2015-06-18 18:14:14    1
14243    Loko vice tousled brooklyn gastropub jean shorts semiotics narwhal. Deep v farm-to-table yuccie. Neutra retro butcher gluten-free franzen. Godard chillwave selvage truffaut ramps. Thundercats freegan readymade.    18012    620    2016-02-07 05:11:22    2016-02-07 05:11:22    1
14244    Selvage typewriter raw denim +1 yolo. Leggings church-key vice irony waistcoat paleo. Street beard sriracha vice mumblecore. Hella tote bag church-key bitters umami fanny pack. Chillwave polaroid salvia tote bag chia occupy chartreuse.    13963    874    2016-02-13 12:39:11    2016-02-13 12:39:11    1
14245    Bicycle rights actually letterpress green juice brunch. Seitan retro diy slow-carb. Kickstarter pabst vice beard. Artisan drinking polaroid vegan vhs irony. 90's semiotics mumblecore chia kogi blog.    10098    841    2016-03-19 19:16:08    2016-03-19 19:16:08    1
14246    Heirloom biodiesel brooklyn. Cleanse chartreuse kogi gastropub jean shorts wolf. Tacos portland pinterest. Butcher fap whatever photo booth humblebrag five dollar toast mumblecore kombucha. Flannel occupy gluten-free distillery.    14247    785    2015-10-31 13:32:24    2015-10-31 13:32:24    1
14247    Biodiesel celiac park kombucha locavore chartreuse pork belly tilde. Cliche chillwave synth. Kogi umami yr.    11168    942    2015-11-09 18:51:55    2015-11-09 18:51:55    1
14248    Cred roof street marfa godard. Slow-carb selvage put a bird on it. Banjo williamsburg tote bag.    14320    845    2015-09-29 05:39:48    2015-09-29 05:39:48    1
14250    Mustache migas pitchfork kitsch kickstarter. Fap quinoa bitters slow-carb narwhal irony cornhole drinking. Fixie schlitz trust fund umami street tacos cronut. Asymmetrical 90's authentic migas. Vice flannel bitters.    16604    876    2015-11-29 09:05:23    2015-11-29 09:05:23    1
14251    Viral knausgaard yr tousled post-ironic stumptown master cold-pressed. Kogi hoodie fingerstache pbr&b hashtag distillery. Swag roof artisan literally authentic.    13775    566    2015-05-18 19:33:59    2015-05-18 19:33:59    1
14252    Offal seitan knausgaard tousled put a bird on it skateboard swag. Locavore mumblecore keytar kinfolk organic direct trade. Five dollar toast godard franzen meditation loko retro direct trade. Dreamcatcher williamsburg pbr&b truffaut quinoa. Craft beer photo booth distillery xoxo.    14992    820    2015-10-20 22:01:59    2015-10-20 22:01:59    1
14253    Gastropub neutra bitters celiac leggings butcher. Tumblr raw denim schlitz vegan bushwick gentrify pitchfork. Tousled kombucha intelligentsia thundercats vinegar artisan everyday kogi.    16207    769    2015-10-06 11:21:49    2015-10-06 11:21:49    1
14254    Twee paleo keytar try-hard selvage pour-over helvetica swag. Fanny pack cold-pressed offal single-origin coffee xoxo blog you probably haven't heard of them hashtag. Skateboard diy health echo bitters.    11850    476    2015-06-03 22:43:44    2015-06-03 22:43:44    1
14255    Tousled brooklyn cold-pressed gastropub. Leggings neutra normcore cliche plaid. Gastropub blog freegan xoxo williamsburg stumptown fingerstache. Pabst direct trade fixie wolf microdosing yolo. Gentrify portland cardigan trust fund.    13227    547    2015-10-25 14:14:54    2015-10-25 14:14:54    1
14256    Raw denim semiotics synth crucifix. Etsy kinfolk kickstarter skateboard. Kombucha kitsch humblebrag pug. Forage pork belly retro brunch chambray fashion axe truffaut.    10894    556    2015-11-04 00:32:13    2015-11-04 00:32:13    1
14257    Brooklyn disrupt wayfarers tofu vinegar. Venmo polaroid hella roof. Post-ironic sriracha helvetica jean shorts twee squid. Williamsburg bushwick cornhole farm-to-table.    13979    566    2015-09-04 09:13:25    2015-09-04 09:13:25    1
14258    Tumblr fashion axe stumptown street dreamcatcher. Umami selvage vegan helvetica chartreuse brunch raw denim. Squid migas scenester yolo.    10826    668    2015-10-26 09:31:25    2015-10-26 09:31:25    1
14259    Etsy tousled vinyl readymade. Bushwick chia thundercats. Celiac aesthetic street wolf. Messenger bag leggings crucifix. Ethical yolo austin.    16453    730    2015-12-14 20:29:04    2015-12-14 20:29:04    1
14260    Ugh cronut pabst salvia. Meggings cold-pressed cliche gluten-free goth ramps. Hashtag chartreuse readymade thundercats hella goth master irony.    13375    789    2016-03-24 21:20:14    2016-03-24 21:20:14    1
14261    Blog migas meggings keytar scenester. Scenester chambray kickstarter lumbersexual iphone. Etsy scenester small batch letterpress.    16989    718    2016-03-10 05:48:45    2016-03-10 05:48:45    1
14262    Farm-to-table microdosing celiac pinterest. Crucifix williamsburg slow-carb bushwick ugh humblebrag cronut shabby chic. Food truck umami twee. Blue bottle paleo farm-to-table normcore.    15913    502    2015-11-20 16:23:20    2015-11-20 16:23:20    1
14263    Letterpress tumblr pour-over beard 8-bit readymade. Kickstarter before they sold out deep v letterpress try-hard wes anderson. Mumblecore quinoa 90's jean shorts chartreuse post-ironic gentrify. Art party salvia poutine hoodie tote bag. Fanny pack shabby chic salvia franzen fingerstache umami mustache.    12716    751    2015-09-06 17:14:49    2015-09-06 17:14:49    1
14264    Goth chambray letterpress wes anderson. Narwhal vinyl poutine. Pbr&b helvetica umami occupy. Mlkshk brooklyn craft beer cold-pressed kickstarter. Offal bicycle rights thundercats.    13575    670    2015-05-26 00:17:39    2015-05-26 00:17:39    1
14265    Kombucha direct trade ethical crucifix. Meditation pork belly xoxo flannel brooklyn post-ironic mlkshk put a bird on it. Yolo quinoa hammock letterpress echo pug waistcoat. Sartorial hoodie cred. Bitters fixie loko yuccie mixtape beard hella.    18393    712    2015-12-26 04:17:28    2015-12-26 04:17:28    1
14266    Godard pork belly migas. Poutine kombucha gentrify. Portland vegan iphone organic. Letterpress schlitz lomo blog sartorial vice vinegar. Meggings tote bag helvetica.    16027    798    2015-12-03 22:10:12    2015-12-03 22:10:12    1
14267    Leggings kale chips hammock yuccie celiac irony. You probably haven't heard of them vegan next level chia distillery. Disrupt post-ironic salvia deep v five dollar toast meh 3 wolf moon you probably haven't heard of them. Ramps whatever cronut vice before they sold out kitsch.    10733    630    2016-02-01 04:42:46    2016-02-01 04:42:46    1
14268    Cold-pressed beard pug single-origin coffee. Organic brunch waistcoat pinterest church-key tote bag xoxo 3 wolf moon. Vhs meditation deep v cardigan lo-fi.    18008    874    2016-02-24 03:26:49    2016-02-24 03:26:49    1
14269    Stumptown keytar fanny pack migas +1 kogi. Green juice squid church-key park cleanse pickled cold-pressed. Direct trade put a bird on it waistcoat brunch pickled locavore schlitz. Photo booth next level chillwave. Umami fanny pack gluten-free cliche pour-over salvia.    12971    501    2015-07-18 23:52:53    2015-07-18 23:52:53    1
14270    Swag celiac hammock bitters next level cronut semiotics chia. Vhs selfies whatever tacos cornhole cardigan distillery. Sriracha pork belly venmo quinoa.    17902    523    2016-03-02 21:19:51    2016-03-02 21:19:51    1
14271    Godard mixtape mlkshk loko distillery chillwave yuccie xoxo. Yolo godard +1 knausgaard tumblr paleo. Pickled cray wes anderson quinoa tousled gentrify etsy. Photo booth waistcoat selvage intelligentsia artisan cray.    10847    720    2015-07-06 04:34:41    2015-07-06 04:34:41    1
14272    Kitsch yolo slow-carb synth hammock narwhal banjo five dollar toast. Aesthetic banjo chartreuse. Readymade mumblecore cronut flexitarian 90's distillery freegan dreamcatcher. Keytar green juice sriracha disrupt wolf fanny pack pour-over gluten-free.    13988    767    2015-05-19 09:55:21    2015-05-19 09:55:21    1
14273    Artisan gastropub chambray yolo wayfarers. Locavore yr whatever. Kickstarter carry migas fashion axe everyday. Retro butcher pork belly venmo etsy shoreditch humblebrag tumblr. Austin everyday locavore meh tousled kale chips.    12910    487    2016-01-29 12:14:28    2016-01-29 12:14:28    1
14274    Cleanse hella skateboard occupy irony. Bespoke synth roof sriracha irony chartreuse. Master franzen bitters hammock fixie skateboard leggings shoreditch. Bitters truffaut hella semiotics keffiyeh cray literally etsy. Goth slow-carb fixie chillwave chicharrones hoodie.    12472    913    2015-10-09 19:48:11    2015-10-09 19:48:11    1
14275    Fap ramps pug artisan. Meditation bicycle rights goth shabby chic semiotics sartorial drinking green juice. Franzen 3 wolf moon wayfarers trust fund taxidermy hammock. Ennui direct trade humblebrag fap. Crucifix cardigan gluten-free lomo offal farm-to-table truffaut.    15843    883    2015-12-30 19:06:05    2015-12-30 19:06:05    1
14276    Bitters humblebrag twee tofu tote bag. Seitan street locavore typewriter godard. Fap sustainable quinoa pabst plaid 8-bit. Cornhole fashion axe put a bird on it actually blue bottle.    16358    799    2016-03-12 23:38:59    2016-03-12 23:38:59    1
14277    Letterpress lo-fi mumblecore biodiesel tofu hashtag poutine. Vice organic tacos quinoa umami letterpress taxidermy +1. Selfies vice fap. Authentic pbr&b migas park.    15100    817    2015-10-28 21:24:33    2015-10-28 21:24:33    1
14278    Put a bird on it vegan post-ironic. Roof chartreuse hashtag 3 wolf moon intelligentsia. Gentrify health fingerstache kitsch.    16036    464    2015-09-13 20:41:43    2015-09-13 20:41:43    1
14279    Aesthetic knausgaard organic tote bag +1 farm-to-table paleo. Thundercats mustache sriracha scenester flannel iphone pinterest xoxo. Vegan meditation biodiesel 3 wolf moon microdosing franzen migas wayfarers. Fashion axe five dollar toast taxidermy portland goth.    17627    686    2016-01-02 06:16:30    2016-01-02 06:16:30    1
14280    Deep v yuccie sartorial next level quinoa cray flexitarian pinterest. Yuccie tousled flannel. Ramps banh mi ethical venmo. Pop-up flexitarian health bicycle rights mixtape pug.    15691    501    2015-06-24 08:57:34    2015-06-24 08:57:34    1
14282    Cronut truffaut narwhal bitters. Chambray schlitz tousled bushwick. You probably haven't heard of them squid occupy cronut street. Sriracha +1 viral hammock selvage lo-fi.    10307    948    2015-09-29 14:17:58    2015-09-29 14:17:58    1
14283    Poutine blog keffiyeh trust fund shoreditch keytar ethical. Wolf humblebrag freegan aesthetic knausgaard chillwave wes anderson park. Street health bespoke hella microdosing loko. Freegan waistcoat slow-carb irony. Banh mi salvia artisan loko chillwave pabst kogi.    18687    678    2015-04-23 01:46:35    2015-04-23 01:46:35    1
14284    Flexitarian art party squid skateboard sriracha banh mi master heirloom. Crucifix art party meh swag vhs semiotics green juice. Art party sustainable street butcher whatever gentrify trust fund skateboard. Cronut kitsch pitchfork single-origin coffee 8-bit. Cliche jean shorts salvia fap farm-to-table chia kinfolk loko.    10599    619    2015-06-18 22:20:13    2015-06-18 22:20:13    1
14285    Irony health marfa food truck beard. Messenger bag banh mi mustache. Godard jean shorts cliche. Sartorial master venmo.    11692    582    2016-02-10 16:16:58    2016-02-10 16:16:58    1
14286    Paleo pop-up you probably haven't heard of them lumbersexual brunch. Pork belly venmo letterpress. Truffaut irony literally cleanse tattooed drinking schlitz crucifix. Viral blue bottle keffiyeh artisan messenger bag jean shorts.    12050    926    2016-02-29 07:27:11    2016-02-29 07:27:11    1
14287    Swag bitters ethical chartreuse. Mixtape 3 wolf moon sartorial. Austin helvetica meh yr stumptown occupy.    11399    877    2015-08-07 06:53:14    2015-08-07 06:53:14    1
14288    Goth twee single-origin coffee cleanse dreamcatcher readymade. Cornhole fashion axe occupy neutra raw denim. Kombucha semiotics narwhal next level pug. Actually tilde typewriter asymmetrical cred.    14482    573    2015-12-13 03:29:16    2015-12-13 03:29:16    1
14289    Xoxo flannel tacos kombucha artisan next level. Authentic vegan post-ironic crucifix tofu. Heirloom pbr&b wes anderson organic etsy. Chambray street lo-fi tacos.    17872    578    2015-09-20 03:00:42    2015-09-20 03:00:42    1
14290    Scenester trust fund leggings single-origin coffee irony. Twee hoodie occupy franzen yuccie tacos keffiyeh try-hard. Lo-fi cleanse xoxo celiac.    16314    652    2015-07-05 16:52:40    2015-07-05 16:52:40    1
14291    Taxidermy church-key cardigan. Quinoa typewriter banjo tumblr sartorial salvia meh. Pinterest shabby chic occupy. Tacos freegan distillery roof 90's pop-up.    17636    693    2016-04-17 23:08:39    2016-04-17 23:08:39    1
14292    Scenester kinfolk seitan heirloom biodiesel. Art party food truck ramps kale chips +1 shabby chic fanny pack. Five dollar toast actually franzen pickled church-key echo whatever disrupt. Mlkshk pabst bushwick literally. Flannel before they sold out cleanse ramps.    18180    642    2016-02-20 11:51:17    2016-02-20 11:51:17    1
14293    Austin wolf cardigan ugh marfa chillwave post-ironic cold-pressed. Trust fund marfa viral butcher irony mixtape. Echo brunch leggings fashion axe mlkshk. Schlitz aesthetic jean shorts kale chips.    15864    697    2016-04-03 11:25:12    2016-04-03 11:25:12    1
14294    Mixtape try-hard slow-carb health yolo marfa shoreditch gentrify. Kitsch celiac scenester. Vinegar ethical humblebrag yolo banh mi letterpress shoreditch. You probably haven't heard of them health typewriter ennui etsy artisan pug cleanse. Crucifix meh schlitz street.    12707    613    2015-06-13 12:15:36    2015-06-13 12:15:36    1
14295    Fixie vinegar xoxo taxidermy umami whatever. Cold-pressed carry flexitarian stumptown health meh. Gastropub polaroid twee kogi before they sold out neutra.    14805    782    2015-11-01 14:18:17    2015-11-01 14:18:17    1
14296    Viral occupy retro put a bird on it. Neutra pickled vinegar bushwick biodiesel. Hoodie tofu narwhal paleo farm-to-table yr. Kogi beard listicle.    18401    716    2016-02-06 13:32:17    2016-02-06 13:32:17    1
14297    Cold-pressed wolf occupy goth master asymmetrical. Mustache hella craft beer. Quinoa bicycle rights cleanse fashion axe brunch church-key tousled. Lumbersexual gentrify asymmetrical narwhal vinegar. Kombucha neutra street kitsch.    16354    717    2015-07-18 06:00:48    2015-07-18 06:00:48    1
14298    Wolf readymade freegan heirloom vice vinyl. Sustainable heirloom seitan kitsch vinyl fingerstache blog. Locavore viral lo-fi kombucha thundercats. Humblebrag dreamcatcher williamsburg street beard yolo ugh raw denim. Tilde master 90's disrupt.    14440    534    2016-01-21 08:46:37    2016-01-21 08:46:37    1
14299    Waistcoat humblebrag celiac. Mustache food truck +1. Single-origin coffee knausgaard fanny pack hella tacos swag.    15287    622    2015-06-18 22:46:49    2015-06-18 22:46:49    1
14300    Banh mi asymmetrical chambray mumblecore. Tumblr vinegar franzen tacos. Iphone knausgaard post-ironic schlitz. Pour-over forage kale chips loko blue bottle everyday goth taxidermy.    13581    747    2015-10-23 12:37:50    2015-10-23 12:37:50    1
14301    Next level roof portland swag blog. Skateboard craft beer viral. Skateboard put a bird on it actually umami park church-key. Tote bag goth austin gentrify meh bicycle rights.    15536    625    2016-01-25 03:30:57    2016-01-25 03:30:57    1
14302    Food truck ethical trust fund lumbersexual pbr&b carry. Shoreditch blog etsy meggings tacos. Retro helvetica authentic blue bottle hella biodiesel bushwick.    17395    686    2015-07-26 17:09:26    2015-07-26 17:09:26    1
14303    Loko wes anderson chia. Vegan normcore chicharrones paleo migas sriracha master. Fashion axe church-key ramps trust fund. Lomo migas fingerstache jean shorts selfies. Wes anderson blog jean shorts post-ironic aesthetic lomo kitsch dreamcatcher.    14798    519    2015-06-15 03:44:39    2015-06-15 03:44:39    1
14304    Lomo pug pickled aesthetic chillwave swag taxidermy. Mlkshk park salvia diy shoreditch ramps banjo offal. Fingerstache craft beer you probably haven't heard of them tilde asymmetrical authentic mumblecore bicycle rights. Fixie diy seitan you probably haven't heard of them helvetica. Tousled iphone intelligentsia yuccie godard portland normcore.    14192    701    2015-09-12 10:47:30    2015-09-12 10:47:30    1
14305    Typewriter microdosing authentic slow-carb fanny pack seitan. Aesthetic cold-pressed listicle. Pour-over art party gentrify.    14549    771    2015-10-27 17:31:23    2015-10-27 17:31:23    1
14308    Viral pinterest disrupt organic asymmetrical paleo portland ennui. Xoxo scenester fixie bicycle rights. Poutine fingerstache viral cray yr gentrify. Cleanse lomo tacos twee. Brooklyn chicharrones cardigan.    14668    756    2015-05-05 11:50:19    2015-05-05 11:50:19    1
14309    Wayfarers cray goth flannel. Fixie kale chips cray venmo chicharrones. Everyday pitchfork master.    17109    486    2015-10-09 16:26:35    2015-10-09 16:26:35    1
14310    Gentrify put a bird on it authentic ugh xoxo sartorial venmo. Helvetica shabby chic synth. Post-ironic 8-bit pabst. Pickled stumptown seitan viral pug fanny pack. Before they sold out chia wolf williamsburg.    16960    835    2015-07-06 10:55:32    2015-07-06 10:55:32    1
14311    Drinking photo booth swag knausgaard distillery yolo irony skateboard. Listicle pbr&b thundercats pug helvetica tacos fanny pack. Disrupt paleo wayfarers ramps. Slow-carb godard jean shorts venmo actually kickstarter cronut street. Waistcoat sriracha franzen park vice health.    12908    770    2015-11-03 06:49:00    2015-11-03 06:49:00    1
14312    Green juice cold-pressed neutra austin mlkshk hoodie kinfolk leggings. Try-hard pitchfork brooklyn letterpress meditation. Cold-pressed heirloom wes anderson.    16915    875    2015-05-16 12:06:05    2015-05-16 12:06:05    1
14313    Wayfarers whatever austin try-hard food truck literally 3 wolf moon. Fingerstache austin cornhole twee you probably haven't heard of them hashtag direct trade offal. Schlitz dreamcatcher jean shorts letterpress plaid mumblecore bicycle rights art party. Wolf forage schlitz fixie pork belly before they sold out.    11810    815    2016-04-17 17:24:34    2016-04-17 17:24:34    1
14315    Offal synth leggings craft beer ramps narwhal taxidermy. Next level try-hard organic bushwick cray neutra fap cardigan. Fingerstache meditation yuccie tattooed.    13922    752    2015-10-08 03:10:48    2015-10-08 03:10:48    1
14316    Quinoa loko celiac deep v yuccie forage wes anderson truffaut. Wes anderson aesthetic whatever pitchfork ramps lumbersexual roof. Park tumblr +1 beard microdosing everyday deep v.    18879    623    2015-07-28 05:20:59    2015-07-28 05:20:59    1
14317    Tumblr art party cray kale chips. Sustainable bicycle rights 8-bit listicle. Bespoke narwhal blue bottle heirloom squid.    14877    669    2015-11-27 14:19:11    2015-11-27 14:19:11    1
14318    Hashtag gluten-free pbr&b schlitz. Cred blog thundercats fixie twee whatever xoxo bitters. Tousled meh tote bag art party kale chips keytar williamsburg direct trade. Pitchfork swag semiotics kitsch blue bottle. Lo-fi biodiesel marfa mustache brooklyn salvia master.    10571    803    2016-02-07 08:19:15    2016-02-07 08:19:15    1
14319    Ramps goth tilde sustainable. Mustache flannel trust fund tousled park bicycle rights. Fingerstache pinterest brunch mumblecore etsy whatever.    15205    842    2016-01-13 00:18:58    2016-01-13 00:18:58    1
14320    Fixie cold-pressed occupy five dollar toast yr keffiyeh direct trade. Bicycle rights +1 bushwick fingerstache fap waistcoat humblebrag. Austin chia disrupt park beard selfies chambray. Pbr&b chillwave paleo mixtape kinfolk tattooed roof butcher.    18978    540    2016-02-21 19:10:01    2016-02-21 19:10:01    1
14322    Flexitarian kombucha loko thundercats. Drinking art party dreamcatcher chillwave shabby chic vinyl flexitarian. Shoreditch hoodie forage tilde tofu. Dreamcatcher seitan kinfolk salvia. Twee pour-over disrupt.    12095    738    2015-09-09 05:06:03    2015-09-09 05:06:03    1
14325    Art party selvage chia. Flannel kickstarter normcore. Pitchfork austin meh whatever narwhal distillery mustache deep v. Bicycle rights mlkshk hammock health ramps gentrify you probably haven't heard of them.    14318    588    2016-01-18 01:36:42    2016-01-18 01:36:42    1
14364    Pop-up lo-fi humblebrag mumblecore crucifix. Vinyl biodiesel photo booth helvetica lo-fi leggings blog. Schlitz try-hard iphone you probably haven't heard of them venmo. Literally selfies etsy heirloom ethical diy hammock blog.    13722    886    2015-10-23 19:03:16    2015-10-23 19:03:16    1
14326    You probably haven't heard of them chillwave lo-fi typewriter fingerstache kogi photo booth. Pitchfork artisan direct trade gastropub plaid. Ethical austin dreamcatcher cardigan mustache fingerstache mlkshk lomo. You probably haven't heard of them irony marfa humblebrag meditation beard. Retro master blog umami jean shorts ennui pug.    13961    900    2015-05-26 07:44:11    2015-05-26 07:44:11    1
14327    Marfa art party xoxo occupy listicle celiac. Sustainable stumptown forage organic kitsch microdosing normcore put a bird on it. Scenester deep v flannel sriracha cleanse plaid.    17366    837    2015-12-25 04:41:08    2015-12-25 04:41:08    1
14328    Banh mi yr ethical. Ugh actually cray heirloom hammock. Jean shorts brooklyn cardigan keffiyeh typewriter lumbersexual blue bottle.    14854    835    2015-06-30 16:54:20    2015-06-30 16:54:20    1
14330    Diy vice quinoa pabst salvia sartorial cray. Kinfolk flexitarian austin cornhole kogi. Vinegar health readymade ugh semiotics master distillery. Mustache tacos jean shorts swag disrupt hashtag poutine cred. Venmo mixtape neutra yuccie.    11002    647    2016-02-20 19:08:36    2016-02-20 19:08:36    1
14331    Narwhal cliche pug freegan shoreditch chia cornhole portland. Marfa echo chicharrones cold-pressed. Roof flannel fingerstache.    13516    512    2016-01-22 17:09:20    2016-01-22 17:09:20    1
14332    Celiac williamsburg single-origin coffee street. Authentic yr flannel salvia ramps pug brunch. Whatever godard 3 wolf moon vinyl celiac brooklyn. Cray gastropub viral deep v vinyl thundercats fap hammock. 3 wolf moon blog banjo kogi.    15243    764    2016-02-09 20:34:55    2016-02-09 20:34:55    1
14333    Five dollar toast pitchfork banh mi next level polaroid microdosing before they sold out master. Poutine normcore umami wolf celiac tousled hoodie. Pitchfork ethical vhs street humblebrag put a bird on it art party neutra. 90's selfies salvia thundercats keytar viral.    10732    622    2015-08-25 09:14:36    2015-08-25 09:14:36    1
14334    Crucifix microdosing locavore chillwave pickled occupy 3 wolf moon tilde. Yuccie whatever letterpress. Semiotics polaroid stumptown helvetica. Banjo jean shorts cardigan mustache flannel. Lo-fi chicharrones bitters williamsburg narwhal.    10649    691    2015-08-21 13:56:17    2015-08-21 13:56:17    1
14335    Lo-fi ugh neutra truffaut readymade echo post-ironic. Raw denim forage deep v chicharrones kale chips ramps gentrify. Poutine locavore hoodie kogi actually. Kombucha fashion axe next level street tofu skateboard.    16588    588    2015-11-09 02:05:22    2015-11-09 02:05:22    1
14400    Taxidermy ugh cleanse. Biodiesel venmo tacos chillwave art party banh mi artisan. Hoodie tacos dreamcatcher portland roof. Ramps migas pop-up chartreuse keffiyeh.    10602    748    2015-07-06 23:19:40    2015-07-06 23:19:40    1
14337    Brooklyn next level yolo typewriter keytar yr biodiesel 3 wolf moon. Plaid post-ironic lo-fi pitchfork. Lumbersexual shabby chic banjo forage blog butcher plaid tote bag. Celiac hashtag food truck. Letterpress scenester photo booth.    14404    736    2015-05-11 12:10:33    2015-05-11 12:10:33    1
14338    Sriracha truffaut mustache yolo chambray bespoke chicharrones. Synth crucifix mixtape. Letterpress cronut pork belly put a bird on it humblebrag meh twee disrupt. Occupy kogi paleo church-key street.    11190    770    2016-01-21 03:03:46    2016-01-21 03:03:46    1
14340    Farm-to-table cornhole quinoa migas brunch asymmetrical mlkshk park. Bushwick trust fund xoxo brooklyn. Hammock chillwave loko. Hashtag kogi austin try-hard letterpress.    10183    878    2015-04-26 07:39:53    2015-04-26 07:39:53    1
14344    Cold-pressed cronut ennui lomo. Ramps iphone vinegar freegan sustainable lomo ennui. Bespoke tousled keffiyeh kogi you probably haven't heard of them tilde vinegar echo. Hella offal xoxo selvage. Drinking poutine biodiesel.    14166    767    2015-11-04 15:02:38    2015-11-04 15:02:38    1
14345    Ugh lomo locavore swag carry food truck. Selfies post-ironic seitan pinterest craft beer try-hard truffaut church-key. Everyday viral bespoke fixie. Bicycle rights fanny pack yuccie chambray pabst 8-bit small batch flannel.    12235    903    2015-08-19 04:42:45    2015-08-19 04:42:45    1
14346    Ugh chia skateboard fap iphone meditation dreamcatcher. Tacos bushwick vinyl meggings vhs franzen. Diy tote bag brunch dreamcatcher pour-over.    10057    640    2015-11-03 23:10:12    2015-11-03 23:10:12    1
14348    Photo booth vinegar mlkshk gluten-free raw denim forage. Readymade cold-pressed franzen seitan raw denim. Tumblr meggings meditation pinterest yolo.    14902    852    2015-04-26 13:05:38    2015-04-26 13:05:38    1
14349    Normcore literally iphone knausgaard austin scenester marfa cred. Post-ironic offal fanny pack. Hella locavore green juice hammock typewriter iphone park plaid.    13459    584    2016-04-01 14:55:44    2016-04-01 14:55:44    1
14350    Try-hard meditation schlitz. Pork belly blue bottle plaid brooklyn pickled. Art party kombucha 8-bit hammock asymmetrical ennui tote bag.    10454    579    2015-10-24 01:02:24    2015-10-24 01:02:24    1
14352    3 wolf moon trust fund wes anderson. Poutine stumptown vhs banh mi try-hard dreamcatcher. Pour-over sriracha pbr&b plaid jean shorts try-hard everyday whatever. Aesthetic marfa green juice chillwave listicle.    11665    768    2015-12-25 16:14:18    2015-12-25 16:14:18    1
14353    Fanny pack truffaut synth kitsch williamsburg neutra vinyl. Roof retro twee. Skateboard street jean shorts gentrify flannel butcher.    11169    623    2015-09-28 16:51:26    2015-09-28 16:51:26    1
14354    Retro dreamcatcher pork belly. Selfies plaid farm-to-table forage aesthetic. Small batch franzen distillery pork belly messenger bag.    15703    783    2015-10-17 09:48:34    2015-10-17 09:48:34    1
14356    Pbr&b messenger bag brunch bitters. Master heirloom schlitz fanny pack put a bird on it brooklyn kitsch post-ironic. Distillery fixie gentrify helvetica goth. Craft beer echo butcher gentrify health cleanse vinyl.    13577    524    2015-12-08 03:34:24    2015-12-08 03:34:24    1
14357    Narwhal yolo meditation iphone franzen slow-carb austin pinterest. Keytar carry twee selvage brooklyn. Small batch knausgaard mustache banh mi echo selfies.    15918    893    2015-06-27 11:31:18    2015-06-27 11:31:18    1
14358    Put a bird on it etsy cray. Blue bottle loko semiotics cray thundercats. Vinegar pbr&b knausgaard truffaut street cornhole polaroid tumblr. Helvetica selfies bushwick flannel crucifix.    11427    712    2016-03-02 00:40:24    2016-03-02 00:40:24    1
14360    Chambray iphone flexitarian echo shoreditch twee. Brooklyn salvia seitan pabst keytar ennui kinfolk gentrify. Dreamcatcher trust fund food truck. Hella yr direct trade fixie photo booth williamsburg selfies.    16544    945    2016-04-04 06:08:09    2016-04-04 06:08:09    1
14361    Cardigan lumbersexual cold-pressed health migas kale chips church-key pork belly. Roof synth helvetica. Hella five dollar toast authentic park green juice try-hard photo booth. Bitters ethical irony. +1 meh gastropub brunch helvetica occupy.    11891    891    2016-02-03 12:13:40    2016-02-03 12:13:40    1
14362    Intelligentsia 8-bit blue bottle polaroid helvetica butcher squid. Iphone vinyl everyday cronut. Trust fund vinegar health farm-to-table pinterest before they sold out banjo butcher. Austin kogi pour-over chartreuse squid everyday cliche. Lo-fi vice tacos.    16323    634    2016-01-05 10:34:55    2016-01-05 10:34:55    1
14363    Retro neutra celiac master church-key wayfarers quinoa lumbersexual. Cred crucifix distillery hammock chillwave waistcoat typewriter kale chips. Master pickled sriracha. Chartreuse listicle kitsch aesthetic. Carry readymade kinfolk tofu kickstarter actually farm-to-table.    14045    660    2015-05-18 08:22:09    2015-05-18 08:22:09    1
14366    Chia pitchfork freegan pour-over street try-hard. Bicycle rights vice asymmetrical truffaut butcher stumptown distillery. Irony brooklyn sartorial everyday beard. Messenger bag umami cleanse kombucha next level try-hard.    14273    465    2015-08-10 11:53:37    2015-08-10 11:53:37    1
14367    Sustainable pork belly pop-up plaid. Cray hammock schlitz mlkshk park keytar put a bird on it. Lumbersexual portland butcher vinegar loko semiotics williamsburg banjo. Goth chicharrones 3 wolf moon.    14197    507    2015-05-26 06:19:42    2015-05-26 06:19:42    1
14368    Pickled distillery church-key aesthetic. Schlitz fap readymade swag church-key paleo dreamcatcher. Stumptown brooklyn normcore wolf. Biodiesel butcher deep v swag cold-pressed. Squid farm-to-table vinyl street skateboard.    10885    768    2016-03-18 14:00:57    2016-03-18 14:00:57    1
14369    Thundercats ethical pickled 3 wolf moon post-ironic normcore polaroid keytar. Before they sold out mustache hella selvage sartorial swag vegan ennui. 3 wolf moon yolo chia authentic scenester tattooed shoreditch.    11050    544    2016-04-06 15:41:13    2016-04-06 15:41:13    1
14370    Loko tumblr cray actually plaid street vinegar ethical. Franzen sustainable polaroid tumblr xoxo kinfolk. Single-origin coffee swag knausgaard kickstarter 3 wolf moon aesthetic 90's kitsch.    12527    734    2016-01-31 10:24:22    2016-01-31 10:24:22    1
14371    Before they sold out five dollar toast sustainable. Pork belly tousled park sartorial. Irony flannel shabby chic swag. Loko ugh next level keytar messenger bag hashtag fanny pack.    18384    866    2015-10-28 20:25:58    2015-10-28 20:25:58    1
14372    Next level etsy leggings park plaid flannel single-origin coffee thundercats. Lomo iphone poutine umami portland church-key. Pickled banjo dreamcatcher poutine distillery. Scenester bespoke neutra.    17917    722    2016-03-14 21:52:34    2016-03-14 21:52:34    1
14373    Iphone pop-up cold-pressed gluten-free typewriter trust fund. Whatever cleanse loko. Blue bottle hashtag austin chillwave organic freegan lumbersexual. Hella wayfarers brunch taxidermy lo-fi freegan etsy. Seitan cornhole single-origin coffee kitsch.    10607    710    2015-08-14 01:21:41    2015-08-14 01:21:41    1
14374    Waistcoat cliche irony hella 3 wolf moon cray tilde letterpress. Distillery helvetica banjo ramps cred. Whatever ennui beard. Flannel tousled banjo. Tattooed pbr&b gentrify lumbersexual +1.    14007    669    2016-01-07 06:21:24    2016-01-07 06:21:24    1
14375    Cardigan fap artisan. Bitters green juice neutra cardigan kickstarter banh mi. Slow-carb lumbersexual church-key selfies pork belly. You probably haven't heard of them squid marfa polaroid godard drinking blue bottle trust fund. Five dollar toast iphone brooklyn occupy tacos.    18046    581    2016-03-06 01:52:15    2016-03-06 01:52:15    1
14376    Sriracha try-hard hammock freegan gentrify keffiyeh yolo portland. Kickstarter heirloom bushwick letterpress skateboard chicharrones. Roof selvage park bespoke vinegar whatever yr. Actually next level flannel. Waistcoat pork belly goth austin biodiesel listicle wolf selvage.    17430    833    2015-07-30 06:45:40    2015-07-30 06:45:40    1
14378    Franzen park vinegar flannel ugh. Yolo cold-pressed twee flexitarian goth direct trade organic tote bag. Pickled mumblecore pitchfork small batch xoxo bicycle rights narwhal farm-to-table. Polaroid hella sriracha five dollar toast direct trade selfies plaid post-ironic.    12072    550    2016-02-09 10:33:30    2016-02-09 10:33:30    1
14379    Whatever loko fanny pack hammock listicle master cliche. Williamsburg pop-up readymade. Portland blog meggings. Readymade ennui you probably haven't heard of them pour-over.    18008    627    2016-01-26 16:00:44    2016-01-26 16:00:44    1
14380    Thundercats master franzen wayfarers pug fap narwhal. Direct trade cliche portland lumbersexual goth pinterest. Yolo cold-pressed locavore.    14966    627    2015-05-22 14:28:21    2015-05-22 14:28:21    1
14381    Brunch ennui salvia. Chia celiac pabst post-ironic aesthetic. Umami vhs slow-carb typewriter pour-over fingerstache blog. Shabby chic pabst tousled.    17300    513    2016-02-29 20:48:31    2016-02-29 20:48:31    1
14382    Tumblr schlitz kombucha. Hella banh mi single-origin coffee organic photo booth fap. Celiac food truck 90's. Direct trade fanny pack pinterest slow-carb green juice vinyl.    14416    814    2015-12-05 12:13:26    2015-12-05 12:13:26    1
14383    Keffiyeh cardigan intelligentsia helvetica tacos. Green juice sartorial gastropub vinegar whatever umami waistcoat actually. Hammock flexitarian kinfolk deep v.    14069    815    2016-01-05 01:14:54    2016-01-05 01:14:54    1
14384    Chia echo 3 wolf moon. Carry iphone polaroid small batch vinegar. Lumbersexual fixie leggings kickstarter messenger bag narwhal xoxo. Ramps cronut blog mixtape intelligentsia cred.    18263    787    2015-11-16 12:22:55    2015-11-16 12:22:55    1
14385    Food truck 90's chicharrones goth authentic. Taxidermy hashtag actually williamsburg flannel. Stumptown chicharrones selfies church-key chillwave blue bottle iphone.    17003    829    2015-07-04 23:38:34    2015-07-04 23:38:34    1
14386    Skateboard offal vice lumbersexual. Shabby chic lo-fi deep v xoxo pour-over roof. Retro mumblecore knausgaard iphone try-hard. Actually yuccie viral chambray fingerstache bespoke ugh. Artisan cold-pressed celiac.    10490    786    2015-06-30 09:32:12    2015-06-30 09:32:12    1
14387    Iphone cliche slow-carb polaroid messenger bag tattooed bitters cold-pressed. Intelligentsia franzen portland flexitarian thundercats. Crucifix fixie ugh blog venmo bicycle rights biodiesel.    16508    666    2015-08-19 05:12:22    2015-08-19 05:12:22    1
14388    Whatever jean shorts tacos. Listicle heirloom 8-bit put a bird on it fingerstache authentic. Beard bicycle rights whatever scenester. Put a bird on it literally photo booth. Tote bag cornhole before they sold out readymade schlitz tattooed try-hard quinoa.    12614    861    2015-04-26 09:53:33    2015-04-26 09:53:33    1
14389    Try-hard biodiesel street diy bespoke bicycle rights. Retro stumptown 8-bit. Single-origin coffee goth kitsch. Normcore shoreditch literally viral. Asymmetrical vinegar truffaut try-hard tousled.    14556    828    2015-11-27 03:15:24    2015-11-27 03:15:24    1
14390    Pitchfork godard chillwave kogi sriracha intelligentsia schlitz. Yuccie hella flannel yr gentrify gastropub etsy. Heirloom pickled franzen.    10928    744    2015-08-01 23:46:17    2015-08-01 23:46:17    1
14391    Quinoa synth cred vegan gastropub. Deep v portland tumblr pour-over +1 mlkshk. Ethical helvetica lo-fi.    16945    539    2015-10-05 00:02:26    2015-10-05 00:02:26    1
14392    Organic knausgaard humblebrag cornhole neutra typewriter. Raw denim 8-bit knausgaard biodiesel park chillwave listicle. Small batch listicle hoodie.    13036    730    2015-11-07 12:54:50    2015-11-07 12:54:50    1
14393    Wes anderson humblebrag umami cronut offal keffiyeh. Lomo vhs cleanse vice. Chicharrones cleanse shabby chic forage skateboard chillwave health umami. Bicycle rights venmo selvage shoreditch drinking pop-up. Echo bicycle rights hella poutine literally biodiesel.    17133    827    2015-12-19 12:03:39    2015-12-19 12:03:39    1
14394    Helvetica whatever fap tumblr vhs food truck. Scenester kale chips irony. Wolf before they sold out plaid tofu lomo knausgaard literally. Disrupt hashtag locavore fap gluten-free etsy flannel. Drinking banh mi vinyl.    14577    828    2015-11-17 19:05:27    2015-11-17 19:05:27    1
14395    Cleanse meditation cray freegan trust fund synth. Messenger bag chartreuse hammock selvage gentrify helvetica. Single-origin coffee helvetica selvage pop-up flexitarian blog whatever. Wolf 3 wolf moon sartorial neutra salvia chillwave sustainable.    16006    522    2015-05-08 11:47:11    2015-05-08 11:47:11    1
14396    Shoreditch chicharrones hella salvia. Tilde wolf kale chips tacos 8-bit austin hammock. Keytar chia vice health cray. Ethical pop-up seitan. Direct trade readymade pug tofu portland seitan williamsburg.    16667    790    2016-02-14 03:59:43    2016-02-14 03:59:43    1
14397    Church-key loko ennui iphone pug pitchfork. Truffaut fashion axe meggings williamsburg offal. Normcore plaid paleo actually cleanse flexitarian fingerstache photo booth. Knausgaard pinterest godard church-key.    11385    701    2015-06-05 08:31:13    2015-06-05 08:31:13    1
14399    Tousled cred you probably haven't heard of them. Single-origin coffee mixtape pickled park sustainable. Semiotics plaid 3 wolf moon flexitarian blue bottle helvetica twee. Tofu blog fap.    16665    690    2016-02-25 23:43:54    2016-02-25 23:43:54    1
14401    Listicle messenger bag master cred sustainable food truck. Jean shorts narwhal diy craft beer. Meditation park mixtape carry tote bag occupy kitsch. Biodiesel wolf literally.    15033    845    2015-06-21 07:52:04    2015-06-21 07:52:04    1
14402    Seitan typewriter etsy ramps sartorial single-origin coffee narwhal irony. Umami offal fingerstache beard. Church-key blog put a bird on it aesthetic. Bitters letterpress flannel portland deep v.    10246    609    2015-08-26 15:50:20    2015-08-26 15:50:20    1
14403    Drinking +1 tumblr messenger bag next level biodiesel aesthetic. Shabby chic artisan meditation. Flannel swag selvage meggings keytar messenger bag.    14616    594    2015-12-15 14:21:05    2015-12-15 14:21:05    1
14404    Next level keffiyeh chia pickled bicycle rights. Migas heirloom sustainable fanny pack cold-pressed try-hard. Ugh swag narwhal lo-fi. 3 wolf moon hella truffaut.    11824    945    2015-04-30 11:58:23    2015-04-30 11:58:23    1
14405    Bicycle rights artisan schlitz chicharrones. Selfies meh irony humblebrag fingerstache meggings. Carry fanny pack pug everyday umami tattooed listicle vhs. 3 wolf moon listicle lomo blue bottle sriracha leggings wolf.    15421    828    2015-12-23 09:37:24    2015-12-23 09:37:24    1
14406    Tacos blue bottle stumptown heirloom. Leggings schlitz farm-to-table lo-fi portland locavore knausgaard lomo. Kitsch dreamcatcher plaid gluten-free street mumblecore trust fund. Quinoa asymmetrical sustainable. Vinyl goth yolo butcher chambray.    10452    873    2015-07-18 20:40:38    2015-07-18 20:40:38    1
14407    Viral kogi tilde cred crucifix marfa twee. Direct trade pour-over distillery hammock pickled chambray. Post-ironic typewriter hashtag actually deep v.    11622    907    2015-06-17 17:17:18    2015-06-17 17:17:18    1
14408    Photo booth viral pop-up kinfolk. Flexitarian humblebrag deep v. Disrupt vinyl freegan. Swag locavore paleo.    16007    719    2015-10-19 17:08:28    2015-10-19 17:08:28    1
14409    Forage schlitz hella asymmetrical. Whatever flannel cronut freegan. Bushwick hashtag chartreuse small batch drinking goth.    16678    934    2015-10-12 20:48:24    2015-10-12 20:48:24    1
14410    Celiac craft beer ethical biodiesel chartreuse. Normcore tumblr vinegar kinfolk. Twee mustache vinegar scenester hoodie crucifix seitan.    12761    504    2015-09-13 16:57:18    2015-09-13 16:57:18    1
14411    Slow-carb scenester blue bottle freegan. Small batch pour-over messenger bag. Street tote bag humblebrag.    12176    806    2016-04-19 07:05:44    2016-04-19 07:05:44    1
14412    Green juice schlitz goth sustainable ethical asymmetrical cardigan. Yuccie distillery disrupt tumblr lo-fi cronut echo. Keffiyeh brooklyn gentrify wolf schlitz.    18638    463    2015-09-19 10:47:27    2015-09-19 10:47:27    1
14413    Five dollar toast keytar brunch. Austin microdosing tilde stumptown echo wes anderson. Brunch direct trade meggings selfies you probably haven't heard of them chillwave portland bespoke. Pour-over squid mlkshk cray.    14340    693    2016-03-02 22:38:40    2016-03-02 22:38:40    1
14414    Goth butcher chia knausgaard forage. Vinegar fingerstache pork belly portland disrupt offal. Gastropub poutine fixie readymade yolo forage vhs. Food truck everyday forage pug narwhal post-ironic offal. Drinking butcher cold-pressed kombucha.    15836    540    2015-11-14 19:33:02    2015-11-14 19:33:02    1
14415    Quinoa cornhole yr pickled celiac. Biodiesel vice vegan meditation bespoke vinegar semiotics lomo. 3 wolf moon meh hammock schlitz deep v. Put a bird on it raw denim kickstarter. Xoxo distillery hoodie tote bag knausgaard bitters master freegan.    18162    667    2015-05-23 05:10:13    2015-05-23 05:10:13    1
14416    Crucifix sriracha iphone humblebrag austin selvage readymade. Biodiesel salvia before they sold out mustache venmo vice tote bag marfa. Trust fund try-hard tote bag. Aesthetic vegan church-key synth.    16871    526    2016-02-04 12:21:31    2016-02-04 12:21:31    1
14417    Master meh hella literally wes anderson. Single-origin coffee chartreuse paleo offal normcore. Ennui pork belly chicharrones taxidermy food truck umami raw denim.    16564    709    2016-03-17 02:03:36    2016-03-17 02:03:36    1
14419    Food truck squid pbr&b crucifix. Blue bottle you probably haven't heard of them seitan. Keffiyeh raw denim blog poutine. Meggings tote bag twee listicle xoxo street.    13405    939    2016-02-08 14:55:04    2016-02-08 14:55:04    1
14420    Shabby chic intelligentsia biodiesel sustainable single-origin coffee mustache flexitarian. Microdosing poutine kinfolk echo sustainable umami. Migas authentic pour-over literally master shabby chic diy. Gastropub squid typewriter single-origin coffee meggings ethical. Slow-carb raw denim chillwave sartorial.    18150    951    2015-07-22 00:07:34    2015-07-22 00:07:34    1
14421    Kogi irony artisan cred kale chips. Tofu semiotics portland biodiesel. Art party try-hard helvetica park ramps truffaut cronut bitters.    10414    918    2016-04-02 11:38:09    2016-04-02 11:38:09    1
14422    Kogi put a bird on it vinegar authentic trust fund 90's lo-fi. Pop-up you probably haven't heard of them chillwave quinoa pickled street irony. Cold-pressed stumptown umami meh messenger bag squid.    11132    683    2015-08-22 19:13:27    2015-08-22 19:13:27    1
14423    Deep v kale chips tote bag dreamcatcher 90's kitsch. 90's meditation dreamcatcher taxidermy artisan organic yuccie blue bottle. Kinfolk loko jean shorts locavore vinyl xoxo mlkshk.    10062    838    2016-03-01 13:23:15    2016-03-01 13:23:15    1
14424    Chambray diy literally microdosing knausgaard. Slow-carb semiotics pitchfork seitan vice knausgaard photo booth. Diy biodiesel try-hard gluten-free street mustache ramps. Trust fund pop-up cray listicle. Photo booth taxidermy deep v celiac.    16667    780    2015-08-11 03:07:55    2015-08-11 03:07:55    1
14425    Sustainable paleo scenester carry vinegar retro tumblr. Franzen occupy chia. Goth dreamcatcher vegan pug synth literally. Skateboard shoreditch pbr&b readymade typewriter salvia loko. Pug beard locavore xoxo street chartreuse godard salvia.    10529    518    2015-10-21 02:46:46    2015-10-21 02:46:46    1
14426    Yr small batch godard kombucha mumblecore. Polaroid blue bottle thundercats keffiyeh franzen post-ironic venmo ugh. Post-ironic farm-to-table vegan artisan mumblecore.    10906    637    2015-09-28 12:55:09    2015-09-28 12:55:09    1
14427    Messenger bag five dollar toast hoodie pinterest swag bitters. Shabby chic five dollar toast meggings pug viral gluten-free. Goth brooklyn leggings farm-to-table fingerstache dreamcatcher master. Fingerstache ennui blue bottle neutra. Stumptown photo booth banjo franzen organic umami kale chips.    11924    872    2016-04-04 03:37:32    2016-04-04 03:37:32    1
14428    Umami hella intelligentsia cronut. Photo booth chicharrones put a bird on it squid hella vinegar. Butcher tattooed church-key cray bushwick food truck plaid. Truffaut next level slow-carb carry goth bushwick farm-to-table.    18172    866    2015-07-12 02:36:13    2015-07-12 02:36:13    1
14429    Hoodie gentrify marfa tote bag seitan. Stumptown trust fund flexitarian. Kogi single-origin coffee waistcoat. Listicle everyday kogi food truck kitsch post-ironic. Ugh waistcoat mumblecore flannel pabst art party park photo booth.    18090    917    2015-05-02 17:50:14    2015-05-02 17:50:14    1
14430    Retro gluten-free photo booth single-origin coffee shoreditch beard kinfolk. Neutra disrupt direct trade poutine 8-bit small batch master. Tilde artisan slow-carb asymmetrical.    17923    527    2015-09-10 12:07:17    2015-09-10 12:07:17    1
14431    Bespoke locavore loko lomo post-ironic. Umami gluten-free fap salvia austin twee. Swag seitan pinterest irony park squid pickled. Cray thundercats single-origin coffee yr everyday church-key craft beer knausgaard. Put a bird on it umami gentrify vinyl offal.    15610    463    2015-11-07 05:49:05    2015-11-07 05:49:05    1
14432    Twee put a bird on it tote bag tousled cray tacos hoodie. Green juice readymade viral cleanse. Before they sold out wayfarers cliche retro helvetica. Portland cornhole next level.    11902    942    2016-02-21 15:06:42    2016-02-21 15:06:42    1
14433    Cornhole ramps +1 paleo readymade health raw denim poutine. Mustache offal kombucha. Lo-fi typewriter try-hard next level carry mustache master pop-up. Bespoke marfa pinterest.    17356    495    2015-05-18 14:22:37    2015-05-18 14:22:37    1
14434    Cardigan viral diy chillwave banjo readymade. Craft beer master seitan asymmetrical skateboard flannel five dollar toast. Keffiyeh you probably haven't heard of them helvetica bitters sartorial migas. Selfies tote bag seitan hoodie.    12470    782    2015-10-16 22:40:49    2015-10-16 22:40:49    1
14435    Helvetica mlkshk ugh 90's cardigan austin. Meggings street knausgaard before they sold out pug pabst drinking helvetica. Messenger bag 90's selvage 3 wolf moon asymmetrical readymade before they sold out.    17231    892    2015-09-30 08:43:21    2015-09-30 08:43:21    1
14436    Park poutine plaid stumptown yolo. Salvia cred pabst. Etsy leggings meh intelligentsia. Knausgaard cred tacos flannel umami thundercats. Carry forage twee ennui cleanse xoxo drinking fashion axe.    16110    759    2015-07-08 16:04:19    2015-07-08 16:04:19    1
14437    Artisan flannel literally aesthetic. Blog crucifix forage five dollar toast polaroid 8-bit. Ramps keytar bitters blue bottle. Yr celiac pug hammock sartorial. Neutra schlitz forage godard blue bottle vegan tattooed 8-bit.    11072    854    2016-01-15 09:30:22    2016-01-15 09:30:22    1
14438    Slow-carb blog knausgaard pitchfork. Fingerstache hoodie readymade forage. Vinegar cronut kinfolk. 3 wolf moon vice direct trade put a bird on it cronut vhs tilde. Etsy jean shorts chartreuse kickstarter master.    10327    770    2016-03-21 13:53:51    2016-03-21 13:53:51    1
14439    Humblebrag gentrify shabby chic trust fund heirloom bespoke swag. Tacos twee chia salvia. Banjo readymade vinegar. Schlitz vegan quinoa kale chips. Farm-to-table truffaut taxidermy helvetica williamsburg.    18391    835    2015-09-20 16:20:30    2015-09-20 16:20:30    1
14440    Cred roof occupy ethical butcher master scenester vinyl. Microdosing readymade neutra shabby chic hella. Letterpress tattooed vegan. Meggings williamsburg lomo. Bicycle rights five dollar toast shabby chic tote bag flexitarian swag.    16646    877    2015-11-10 00:20:20    2015-11-10 00:20:20    1
14441    Lumbersexual before they sold out messenger bag meggings gastropub polaroid sriracha. Pork belly asymmetrical heirloom. Portland pour-over meggings.    13013    733    2015-05-13 05:27:46    2015-05-13 05:27:46    1
14442    Readymade post-ironic tattooed normcore pop-up taxidermy hoodie. Distillery microdosing venmo flannel chia blog organic. Pug stumptown food truck meditation whatever next level.    13408    788    2015-11-15 00:58:23    2015-11-15 00:58:23    1
14443    Artisan cronut vice pbr&b microdosing pinterest pabst post-ironic. Leggings sriracha brooklyn schlitz bitters tilde selvage stumptown. Salvia sartorial taxidermy occupy narwhal neutra distillery.    17077    534    2015-06-05 13:58:07    2015-06-05 13:58:07    1
14444    Mumblecore flexitarian cornhole gluten-free flannel godard. Single-origin coffee health viral park umami cliche swag beard. Stumptown truffaut bushwick craft beer slow-carb ethical occupy lomo.    10492    916    2015-05-14 22:35:20    2015-05-14 22:35:20    1
14445    Cold-pressed keffiyeh plaid chia heirloom lomo bicycle rights knausgaard. Typewriter occupy chia five dollar toast bicycle rights letterpress. Locavore try-hard kitsch loko seitan. Poutine squid hammock.    10794    673    2015-07-07 03:43:56    2015-07-07 03:43:56    1
14446    Yuccie fingerstache beard. Marfa franzen tofu pinterest salvia sartorial truffaut farm-to-table. Lomo brooklyn loko vegan kickstarter bushwick meditation locavore.    13558    647    2015-09-29 07:44:40    2015-09-29 07:44:40    1
14447    Kale chips celiac messenger bag irony meh fingerstache chia. Wayfarers butcher normcore. Hashtag hella keytar gastropub. Blog direct trade kickstarter cold-pressed vinegar chicharrones iphone skateboard.    13334    855    2015-07-23 02:28:02    2015-07-23 02:28:02    1
14448    Cardigan fashion axe migas. Vegan asymmetrical carry chambray yr. Messenger bag intelligentsia next level. Portland blog 8-bit shabby chic whatever cold-pressed intelligentsia. Mumblecore health bicycle rights.    13111    518    2015-08-05 09:25:02    2015-08-05 09:25:02    1
14450    Ethical pop-up small batch humblebrag tacos. Keytar pabst small batch kombucha squid. Roof kombucha 3 wolf moon aesthetic bespoke pop-up. Mixtape banjo normcore gastropub.    17510    615    2016-02-06 12:14:19    2016-02-06 12:14:19    1
14451    Green juice you probably haven't heard of them knausgaard kickstarter viral distillery celiac. Disrupt banh mi helvetica actually etsy farm-to-table pickled. 8-bit sartorial yuccie tousled distillery.    16248    786    2016-02-27 07:45:03    2016-02-27 07:45:03    1
14452    Brunch tattooed skateboard. Thundercats cold-pressed ugh. Vice lomo synth. Jean shorts sustainable cold-pressed craft beer shoreditch bitters. Brunch letterpress listicle bushwick thundercats kitsch sartorial.    12821    705    2016-03-06 16:35:22    2016-03-06 16:35:22    1
14453    Photo booth kinfolk knausgaard yuccie cleanse selfies butcher kale chips. Kitsch celiac before they sold out park godard kogi. Helvetica intelligentsia brunch knausgaard iphone everyday mixtape chia. Humblebrag gentrify chillwave brooklyn distillery beard sartorial. Lomo kombucha beard echo waistcoat.    11799    948    2015-08-28 09:36:46    2015-08-28 09:36:46    1
14454    Actually 8-bit kitsch squid. Fanny pack chambray banjo ugh. Skateboard raw denim crucifix vice.    16182    735    2015-05-14 16:37:00    2015-05-14 16:37:00    1
14455    Actually roof everyday. Biodiesel beard try-hard readymade tattooed cred. Pabst +1 distillery. Migas diy literally. Put a bird on it vinyl crucifix single-origin coffee chambray biodiesel truffaut kombucha.    11536    601    2015-10-03 07:11:12    2015-10-03 07:11:12    1
14456    Messenger bag typewriter 3 wolf moon 90's meh jean shorts squid trust fund. Kitsch bespoke cardigan blog put a bird on it scenester waistcoat. Gluten-free brooklyn messenger bag flexitarian plaid heirloom asymmetrical.    17202    890    2015-08-07 22:27:24    2015-08-07 22:27:24    1
14457    Kombucha seitan organic tilde. Park pbr&b whatever. Thundercats meggings direct trade vhs forage. Chambray asymmetrical literally venmo.    16542    932    2015-12-06 12:31:30    2015-12-06 12:31:30    1
14458    Mlkshk chicharrones vinegar 90's. Seitan offal lomo. Cold-pressed ugh loko listicle. Authentic +1 messenger bag letterpress cornhole semiotics scenester. +1 scenester paleo vinyl pitchfork whatever literally.    14477    658    2015-08-18 09:23:44    2015-08-18 09:23:44    1
14459    Vhs twee farm-to-table organic. Slow-carb street normcore austin farm-to-table polaroid green juice. Art party readymade seitan mustache biodiesel venmo vinyl. Occupy keytar vinegar. Gluten-free franzen vinegar chambray roof before they sold out godard.    14536    734    2015-07-29 13:26:22    2015-07-29 13:26:22    1
14460    90's selfies listicle cronut tousled. Normcore thundercats seitan chambray shabby chic cornhole scenester hella. Vinegar pop-up lo-fi narwhal.    10704    598    2015-05-19 09:44:19    2015-05-19 09:44:19    1
14461    Franzen small batch brooklyn keytar. Organic pug artisan quinoa pitchfork authentic. Humblebrag disrupt letterpress ethical taxidermy. Yuccie portland try-hard occupy fingerstache xoxo.    18477    799    2016-03-07 01:45:10    2016-03-07 01:45:10    1
14462    Narwhal cred tote bag pop-up echo kitsch taxidermy food truck. Trust fund diy pabst chicharrones mumblecore. Vegan locavore forage portland kombucha cardigan.    13506    659    2015-06-13 03:00:12    2015-06-13 03:00:12    1
14463    Godard before they sold out chillwave. Kombucha art party keffiyeh franzen pbr&b farm-to-table cornhole typewriter. Marfa tacos banjo etsy sustainable kombucha offal.    17853    899    2015-12-18 00:24:08    2015-12-18 00:24:08    1
14466    Cliche yuccie keffiyeh ethical occupy five dollar toast bespoke next level. Before they sold out meditation pickled chartreuse park. Taxidermy viral plaid literally. 90's dreamcatcher shabby chic. Pop-up pug wayfarers skateboard.    15270    814    2015-05-01 13:57:31    2015-05-01 13:57:31    1
14468    Cardigan tote bag church-key deep v bicycle rights pour-over. Letterpress franzen microdosing leggings. Pug williamsburg letterpress humblebrag.    18263    645    2015-04-23 14:24:07    2015-04-23 14:24:07    1
14469    Celiac kickstarter try-hard tilde master. Cleanse jean shorts lumbersexual twee. Keffiyeh mumblecore humblebrag carry church-key. Gluten-free ethical photo booth.    13636    742    2015-08-17 08:38:14    2015-08-17 08:38:14    1
14470    Ugh selvage loko post-ironic food truck chambray heirloom. Polaroid wes anderson roof loko kale chips mixtape. Bitters knausgaard pork belly you probably haven't heard of them freegan hammock messenger bag. Pickled vice readymade hella 8-bit organic.    15285    770    2016-03-16 07:28:14    2016-03-16 07:28:14    1
14471    Pbr&b vinegar chartreuse hella dreamcatcher meggings before they sold out plaid. Kitsch pitchfork health fap. Shabby chic before they sold out leggings. Meggings shoreditch fap squid brunch selvage migas 90's.    11921    902    2016-03-21 17:55:10    2016-03-21 17:55:10    1
14472    Green juice health cleanse disrupt chartreuse bespoke. Thundercats lumbersexual brunch. Pour-over salvia austin squid normcore tote bag ramps.    13139    751    2015-12-30 18:22:38    2015-12-30 18:22:38    1
14473    Pop-up cred franzen put a bird on it dreamcatcher before they sold out listicle pork belly. Umami typewriter pop-up. Small batch farm-to-table sustainable flexitarian lo-fi kombucha yuccie. Cred literally yolo try-hard pinterest everyday.    10531    536    2015-04-24 17:19:42    2015-04-24 17:19:42    1
14474    Cred paleo church-key salvia +1 diy craft beer ethical. Meggings pickled heirloom ugh meditation ennui pinterest. Banh mi banjo listicle crucifix small batch direct trade dreamcatcher authentic. Taxidermy crucifix pbr&b mumblecore. Truffaut banjo pork belly semiotics hashtag roof.    15908    908    2015-06-25 11:30:07    2015-06-25 11:30:07    1
14475    Selvage quinoa selfies. Hella pinterest austin paleo neutra selfies readymade fingerstache. Bushwick kinfolk microdosing cleanse photo booth narwhal green juice.    16177    706    2015-07-09 06:17:37    2015-07-09 06:17:37    1
14477    Sriracha flannel swag food truck literally narwhal sustainable. Neutra kombucha salvia tote bag thundercats everyday park. Xoxo +1 pork belly viral you probably haven't heard of them portland. Keffiyeh taxidermy bushwick artisan drinking microdosing food truck flexitarian.    12999    499    2015-05-14 14:32:49    2015-05-14 14:32:49    1
14478    Cardigan lumbersexual chartreuse. Whatever cornhole tote bag leggings health. Post-ironic lomo leggings small batch diy salvia meggings pug. Stumptown polaroid salvia semiotics.    11859    891    2016-02-03 17:46:35    2016-02-03 17:46:35    1
14479    Portland five dollar toast tousled messenger bag. Freegan pickled umami ramps pug portland. Hashtag freegan forage vinyl.    15567    745    2015-06-28 21:23:55    2015-06-28 21:23:55    1
14480    Artisan hashtag goth banjo. Godard flexitarian wolf cardigan retro cornhole wes anderson. Butcher tote bag tilde letterpress blue bottle you probably haven't heard of them forage. Leggings literally kombucha pug kickstarter mixtape. Freegan pop-up shoreditch vice scenester next level you probably haven't heard of them.    18887    546    2016-01-23 06:00:50    2016-01-23 06:00:50    1
14481    Viral waistcoat bushwick umami. Single-origin coffee normcore tattooed biodiesel. Venmo offal waistcoat normcore chartreuse gastropub church-key twee.    13213    920    2015-07-06 20:09:22    2015-07-06 20:09:22    1
14482    Church-key poutine taxidermy semiotics ennui quinoa chartreuse readymade. Tumblr cray carry distillery. Cornhole quinoa hashtag chicharrones food truck mustache seitan.    13804    751    2016-01-06 22:32:43    2016-01-06 22:32:43    1
14483    Hoodie keffiyeh lo-fi biodiesel vinegar. Squid forage 90's meh. Banh mi fixie 3 wolf moon. Microdosing pop-up diy tacos vice pinterest small batch blue bottle. Iphone shabby chic +1.    16813    562    2015-04-23 16:13:13    2015-04-23 16:13:13    1
14484    Austin narwhal yolo before they sold out. Vhs pork belly vinegar disrupt whatever. Typewriter knausgaard celiac vice actually etsy. Banjo master vinyl cronut knausgaard gentrify tumblr pork belly. Beard godard polaroid leggings viral biodiesel goth.    17772    925    2016-02-06 00:49:44    2016-02-06 00:49:44    1
14485    Cold-pressed street green juice aesthetic blue bottle franzen. Chillwave pop-up raw denim flannel gentrify ramps. Diy kale chips dreamcatcher forage vinegar portland bespoke.    11029    641    2016-01-24 03:20:04    2016-01-24 03:20:04    1
14486    Cronut shoreditch pour-over forage trust fund polaroid synth. Kinfolk migas butcher. Hoodie bespoke venmo. Whatever authentic direct trade bitters butcher mumblecore.    16791    551    2015-12-22 17:45:35    2015-12-22 17:45:35    1
14487    Tote bag dreamcatcher mumblecore. Deep v mustache meggings roof beard single-origin coffee scenester marfa. Readymade yr cornhole vinegar locavore next level. Everyday retro squid. Butcher everyday thundercats franzen bushwick occupy xoxo chicharrones.    16839    563    2016-04-19 00:43:32    2016-04-19 00:43:32    1
14488    Art party marfa celiac mlkshk sustainable. Pug cold-pressed disrupt. Thundercats vhs master normcore taxidermy. Wolf tumblr street. Kale chips portland direct trade wolf.    14339    607    2016-02-21 01:15:27    2016-02-21 01:15:27    1
14489    Bicycle rights letterpress artisan cleanse chia shabby chic sartorial. Wes anderson tacos etsy typewriter gentrify. Small batch before they sold out iphone squid tofu tacos. Flexitarian church-key meh semiotics cred forage. Hoodie irony kitsch chia.    10359    642    2016-01-28 13:49:43    2016-01-28 13:49:43    1
14490    Single-origin coffee ramps truffaut pour-over. Selvage post-ironic schlitz blue bottle +1 banjo. Listicle beard direct trade. Small batch chartreuse chia put a bird on it letterpress next level. Selvage distillery food truck raw denim locavore.    10474    841    2015-10-06 13:59:31    2015-10-06 13:59:31    1
14491    Single-origin coffee food truck try-hard semiotics. Letterpress pour-over selvage. Pour-over semiotics sustainable pbr&b organic leggings. Offal mustache kickstarter distillery. Butcher fingerstache migas quinoa locavore sustainable intelligentsia gastropub.    13768    547    2015-12-15 00:42:39    2015-12-15 00:42:39    1
14492    Ramps bespoke knausgaard hammock mustache. Organic thundercats wayfarers bushwick intelligentsia offal whatever mustache. Readymade hammock chillwave iphone keytar pop-up bespoke humblebrag. Microdosing aesthetic 3 wolf moon retro brooklyn.    18030    538    2016-03-26 00:14:21    2016-03-26 00:14:21    1
14493    Meh organic fanny pack helvetica hashtag migas. Hammock +1 paleo marfa wayfarers tofu. Stumptown pitchfork kitsch truffaut cred.    16670    872    2015-06-11 21:12:00    2015-06-11 21:12:00    1
14494    Listicle pug mlkshk. Cray aesthetic jean shorts pickled cronut. Sartorial venmo letterpress butcher.    17782    650    2015-09-15 13:11:48    2015-09-15 13:11:48    1
14495    Small batch pinterest vegan roof bushwick everyday letterpress beard. Distillery hella viral irony drinking. Street listicle pickled knausgaard austin. Knausgaard tilde yolo.    16333    595    2016-01-28 00:32:48    2016-01-28 00:32:48    1
14496    Intelligentsia portland 3 wolf moon fanny pack. Irony pitchfork vinegar messenger bag farm-to-table bitters. Mumblecore raw denim locavore green juice gentrify put a bird on it. Umami dreamcatcher chartreuse.    16636    821    2015-12-23 12:16:58    2015-12-23 12:16:58    1
14497    Biodiesel tofu quinoa scenester williamsburg helvetica. Godard vice slow-carb thundercats literally microdosing. Authentic carry tote bag mumblecore craft beer. Keffiyeh bespoke ramps hoodie church-key cronut disrupt. Pour-over raw denim church-key knausgaard jean shorts pitchfork scenester diy.    12804    804    2015-12-29 22:29:57    2015-12-29 22:29:57    1
14498    Cornhole viral drinking messenger bag pickled cleanse. Pbr&b diy beard slow-carb lo-fi distillery kale chips tumblr. Vinegar try-hard mustache art party church-key mumblecore biodiesel. Single-origin coffee five dollar toast mlkshk mustache irony. Synth selvage banh mi lumbersexual migas locavore pabst.    12416    668    2015-06-06 02:32:18    2015-06-06 02:32:18    1
14499    Messenger bag chicharrones mustache. Cred shabby chic yr street put a bird on it tacos hoodie. Tousled kinfolk five dollar toast ramps. Street squid neutra yuccie. Beard microdosing franzen.    16216    509    2015-08-28 22:10:53    2015-08-28 22:10:53    1
14500    Wayfarers truffaut tumblr mumblecore ugh brooklyn cleanse. Yr hashtag thundercats selfies gentrify photo booth viral. Raw denim pickled lumbersexual umami master chartreuse skateboard.    15799    696    2016-02-03 14:11:33    2016-02-03 14:11:33    1
14501    Food truck meditation humblebrag yr cardigan ramps. Vinyl yolo selfies. Occupy you probably haven't heard of them intelligentsia yr single-origin coffee tacos polaroid tofu. Chicharrones swag park craft beer chia narwhal kombucha.    12702    949    2016-01-01 06:12:26    2016-01-01 06:12:26    1
14502    8-bit keffiyeh slow-carb mustache vinegar beard trust fund. Slow-carb typewriter sustainable. Typewriter pbr&b cliche. Try-hard intelligentsia bitters typewriter. Blue bottle bitters beard authentic.    10099    954    2016-02-19 22:03:29    2016-02-19 22:03:29    1
14503    Migas bicycle rights occupy church-key vinyl flexitarian tote bag franzen. +1 selfies actually pug echo. Sustainable post-ironic keffiyeh meggings. Five dollar toast artisan roof kickstarter shoreditch heirloom. Blue bottle plaid 8-bit typewriter tousled +1 migas twee.    13668    713    2015-06-21 11:39:55    2015-06-21 11:39:55    1
14504    Diy master you probably haven't heard of them roof before they sold out lomo cornhole tote bag. Carry ramps drinking. Mustache photo booth xoxo ethical.    14734    829    2015-08-29 02:57:57    2015-08-29 02:57:57    1
14505    Humblebrag biodiesel knausgaard microdosing. Meh next level distillery photo booth quinoa listicle. Normcore tattooed pug gentrify umami street quinoa etsy.    18626    504    2015-11-30 18:46:47    2015-11-30 18:46:47    1
14506    Forage before they sold out poutine twee deep v flannel food truck yuccie. Meditation iphone mlkshk 3 wolf moon blog chartreuse meh tofu. Pug yolo scenester. Messenger bag shoreditch pop-up marfa ugh tumblr lumbersexual.    17177    877    2015-08-03 08:04:49    2015-08-03 08:04:49    1
14508    Poutine keffiyeh single-origin coffee tote bag iphone slow-carb green juice quinoa. Squid waistcoat kinfolk pinterest fap. Pinterest viral aesthetic pitchfork gastropub leggings. Distillery mustache viral cardigan fingerstache before they sold out echo gentrify. Yuccie distillery etsy heirloom microdosing yr.    17590    607    2016-01-05 19:03:42    2016-01-05 19:03:42    1
14509    Actually plaid you probably haven't heard of them paleo. Scenester austin dreamcatcher put a bird on it occupy wes anderson. Tote bag plaid bespoke street ugh mlkshk carry heirloom. Celiac 90's salvia lumbersexual street carry artisan. Gluten-free marfa tote bag before they sold out.    14332    610    2016-03-04 06:41:47    2016-03-04 06:41:47    1
14511    Tumblr wes anderson tacos bushwick shabby chic pour-over pabst roof. Farm-to-table direct trade typewriter pork belly fingerstache kombucha chia art party. Tumblr ramps hoodie pbr&b lomo plaid irony meditation. Pitchfork fingerstache keffiyeh paleo.    18830    699    2015-10-20 00:46:27    2015-10-20 00:46:27    1
14513    Authentic venmo lumbersexual pour-over shabby chic. Trust fund hashtag ugh scenester. Fingerstache truffaut next level locavore kale chips pabst meditation. Selvage truffaut butcher hashtag shabby chic migas farm-to-table.    17322    924    2015-05-21 18:01:15    2015-05-21 18:01:15    1
14514    Pug twee chartreuse crucifix mumblecore. Single-origin coffee blog kickstarter vegan sartorial wes anderson bitters readymade. Pickled roof shabby chic lo-fi occupy.    16672    550    2015-12-05 06:27:50    2015-12-05 06:27:50    1
14515    Synth venmo bicycle rights. Forage cardigan blog gentrify pickled 8-bit portland. Bushwick blue bottle kogi meggings venmo slow-carb banjo. Single-origin coffee twee scenester pour-over.    13547    918    2015-06-12 03:12:31    2015-06-12 03:12:31    1
14516    Cronut austin street dreamcatcher. Selvage chicharrones diy. Before they sold out thundercats single-origin coffee cleanse neutra wayfarers master. Cardigan put a bird on it +1 narwhal slow-carb.    11075    941    2015-10-06 20:00:13    2015-10-06 20:00:13    1
14517    Williamsburg selfies butcher tilde godard umami single-origin coffee cardigan. Beard mustache literally pop-up lomo bespoke. Migas freegan cliche. Yolo migas shabby chic single-origin coffee.    14610    870    2015-10-02 08:32:07    2015-10-02 08:32:07    1
14518    Artisan yuccie lumbersexual brooklyn cred forage listicle. Ennui xoxo fap slow-carb brunch. Cronut mustache pickled 8-bit etsy narwhal stumptown ramps. Gentrify cliche photo booth ethical.    18952    509    2015-07-19 20:58:20    2015-07-19 20:58:20    1
14519    Chartreuse mlkshk hoodie banh mi skateboard hashtag. Narwhal chambray organic. Slow-carb microdosing church-key messenger bag single-origin coffee. Jean shorts lomo 3 wolf moon fashion axe.    13097    811    2015-06-12 20:23:58    2015-06-12 20:23:58    1
14520    Salvia franzen raw denim tumblr green juice post-ironic. Intelligentsia mumblecore venmo green juice. Kombucha echo locavore. Paleo beard messenger bag vinegar portland.    12358    791    2015-12-18 03:26:06    2015-12-18 03:26:06    1
14521    Gluten-free meggings echo meh craft beer everyday. Neutra meditation five dollar toast cardigan. Knausgaard lo-fi tofu viral. Etsy gluten-free sartorial before they sold out cred meh asymmetrical.    18072    791    2016-04-19 10:15:25    2016-04-19 10:15:25    1
14522    Gentrify authentic next level forage direct trade. Quinoa butcher organic green juice portland flannel franzen gentrify. Street fanny pack knausgaard. Paleo williamsburg dreamcatcher shoreditch. You probably haven't heard of them kinfolk crucifix cronut distillery green juice.    15679    783    2015-06-09 14:07:35    2015-06-09 14:07:35    1
14523    3 wolf moon 90's viral cleanse cliche kale chips. Carry tilde pabst you probably haven't heard of them tote bag photo booth. Marfa sustainable food truck church-key aesthetic venmo roof.    14608    766    2015-07-28 23:02:17    2015-07-28 23:02:17    1
14525    Shoreditch knausgaard hashtag drinking keytar typewriter. Forage pbr&b kinfolk. Kogi cliche cleanse organic portland +1 heirloom. Cold-pressed austin helvetica. Paleo green juice echo tumblr hashtag.    12788    543    2016-02-11 14:55:03    2016-02-11 14:55:03    1
14526    Bicycle rights kale chips goth mumblecore before they sold out tacos meh. Mustache locavore cardigan deep v. Thundercats vhs pork belly church-key cred. Lo-fi meggings hella occupy vhs ethical. Tacos heirloom cliche vegan put a bird on it waistcoat scenester vhs.    17526    529    2015-12-03 17:41:00    2015-12-03 17:41:00    1
14527    Cred roof marfa ramps. Slow-carb godard selvage church-key migas chillwave. Williamsburg sartorial irony sriracha craft beer fanny pack. Intelligentsia thundercats photo booth 3 wolf moon master. Aesthetic pour-over vinegar shabby chic drinking butcher.    13276    721    2016-04-04 07:11:27    2016-04-04 07:11:27    1
14528    Vhs cold-pressed kale chips tousled chambray fixie shoreditch everyday. Fingerstache austin asymmetrical semiotics bespoke selvage pop-up flannel. Meh kogi heirloom cardigan thundercats venmo. Cold-pressed synth twee portland typewriter retro trust fund goth. Chia salvia twee ramps heirloom bitters try-hard franzen.    12194    856    2016-02-10 09:29:14    2016-02-10 09:29:14    1
14529    Hoodie microdosing kombucha listicle 90's. Diy umami intelligentsia. Irony brooklyn diy wayfarers helvetica. Fanny pack wayfarers cronut irony blue bottle migas cred. Chambray selfies bushwick beard photo booth cliche.    18465    639    2015-10-09 13:31:53    2015-10-09 13:31:53    1
14531    Hella ugh brunch. Kickstarter franzen pop-up lomo. Gluten-free gentrify pinterest vice cred quinoa 90's. Master franzen venmo.    10494    824    2015-04-25 15:04:59    2015-04-25 15:04:59    1
14532    Keytar viral bespoke organic shoreditch blog cold-pressed. Knausgaard green juice pork belly chillwave single-origin coffee. Viral health etsy pour-over five dollar toast semiotics. Biodiesel try-hard banjo humblebrag offal.    15896    954    2015-09-25 02:46:19    2015-09-25 02:46:19    1
14533    Brunch goth flexitarian sriracha bespoke loko pabst chartreuse. Occupy locavore post-ironic pug banjo. Cray wolf shabby chic selfies raw denim paleo readymade. Whatever umami poutine.    12972    525    2015-06-11 03:04:33    2015-06-11 03:04:33    1
14534    Intelligentsia ugh meditation umami vice pinterest kale chips mustache. Flannel kogi kombucha occupy craft beer migas xoxo ethical. Fixie fap hammock.    15465    499    2015-05-03 19:55:27    2015-05-03 19:55:27    1
14535    Post-ironic stumptown five dollar toast banh mi slow-carb health. Banh mi crucifix chillwave wes anderson tumblr yr banjo microdosing. Beard asymmetrical chillwave farm-to-table venmo.    13686    937    2016-02-07 10:09:55    2016-02-07 10:09:55    1
14536    Goth carry tacos aesthetic. Hashtag brooklyn wayfarers flannel loko five dollar toast distillery. Pickled fingerstache schlitz single-origin coffee keffiyeh chicharrones lumbersexual occupy. Literally heirloom blue bottle squid vegan photo booth readymade.    10731    897    2015-10-22 05:51:59    2015-10-22 05:51:59    1
14538    Yolo freegan bitters tattooed. Fap intelligentsia mustache umami pbr&b vhs yuccie. Skateboard kale chips echo truffaut keffiyeh craft beer wes anderson meggings.    11443    689    2016-02-06 20:53:10    2016-02-06 20:53:10    1
14539    Iphone literally sriracha diy cred. Blog echo umami 90's yolo biodiesel hammock gluten-free. Pitchfork +1 fashion axe. Street polaroid sartorial.    14016    835    2015-06-05 08:22:00    2015-06-05 08:22:00    1
14540    Waistcoat direct trade salvia franzen irony wes anderson selvage. Scenester stumptown fixie slow-carb distillery cleanse health 3 wolf moon. Migas pour-over blog flexitarian meggings banjo gluten-free. Cardigan intelligentsia bushwick drinking farm-to-table portland iphone. Semiotics marfa biodiesel leggings five dollar toast.    14872    491    2016-04-14 21:38:56    2016-04-14 21:38:56    1
14541    Crucifix shabby chic beard stumptown shoreditch before they sold out. Crucifix hashtag retro organic. Irony fashion axe taxidermy sartorial bitters. Cliche mlkshk thundercats xoxo hashtag dreamcatcher viral paleo.    15318    518    2016-04-17 10:36:46    2016-04-17 10:36:46    1
14542    Listicle post-ironic chartreuse pour-over austin literally blog. Put a bird on it butcher bicycle rights. Pinterest everyday iphone aesthetic pbr&b banh mi cliche humblebrag. Master mustache pabst sriracha selfies. Cold-pressed fingerstache health.    15025    805    2016-03-09 21:34:08    2016-03-09 21:34:08    1
14543    Actually xoxo ugh farm-to-table bespoke microdosing cray synth. Thundercats ennui tousled kale chips lo-fi crucifix vegan church-key. Meggings post-ironic portland wes anderson ethical kitsch mustache.    17649    709    2015-08-19 15:20:09    2015-08-19 15:20:09    1
14544    Wes anderson seitan listicle fanny pack. Mlkshk seitan franzen shabby chic portland kinfolk schlitz fashion axe. Carry asymmetrical plaid kinfolk lomo pickled try-hard.    10530    736    2016-02-29 00:42:49    2016-02-29 00:42:49    1
14545    Sriracha roof poutine deep v pork belly mustache taxidermy. Brooklyn microdosing meh iphone messenger bag occupy kogi craft beer. 8-bit keffiyeh photo booth kinfolk fashion axe occupy chillwave chia. Poutine yolo gentrify goth plaid portland photo booth.    12627    697    2016-02-22 23:51:25    2016-02-22 23:51:25    1
14547    Sustainable intelligentsia biodiesel typewriter. Kale chips knausgaard health synth. Five dollar toast lumbersexual flannel artisan franzen actually organic listicle. Ethical you probably haven't heard of them artisan bespoke pop-up beard.    17707    514    2015-12-21 19:37:40    2015-12-21 19:37:40    1
14548    Lo-fi listicle food truck carry locavore meggings. Cardigan sartorial occupy truffaut kitsch vinegar selfies. Tattooed chicharrones art party marfa whatever. Park selvage shoreditch portland 8-bit.    14370    690    2016-03-02 00:33:14    2016-03-02 00:33:14    1
14549    Meggings celiac kitsch typewriter yuccie hashtag hoodie. Knausgaard chambray helvetica street sriracha waistcoat. Polaroid shoreditch occupy. Heirloom irony poutine.    17131    785    2015-05-16 22:14:27    2015-05-16 22:14:27    1
14550    3 wolf moon ethical hammock tumblr quinoa put a bird on it viral. Tofu pug cray flexitarian pabst goth offal chartreuse. Beard schlitz meditation cornhole messenger bag umami.    17947    808    2015-08-30 03:14:09    2015-08-30 03:14:09    1
14551    Kombucha austin scenester kogi deep v williamsburg. Kale chips mumblecore readymade yr craft beer. Wes anderson pickled banh mi. Salvia bicycle rights letterpress kogi wes anderson ramps microdosing five dollar toast.    12733    569    2016-03-04 22:19:38    2016-03-04 22:19:38    1
14552    Gentrify readymade cliche. Lo-fi vinyl green juice pork belly microdosing cardigan dreamcatcher vinegar. Biodiesel goth helvetica tote bag. Poutine cardigan farm-to-table neutra humblebrag forage meditation.    16307    927    2016-02-28 14:49:52    2016-02-28 14:49:52    1
14554    Listicle helvetica ugh chambray. Umami bushwick kale chips cred small batch +1. Banjo typewriter etsy yr next level fingerstache kombucha meditation. Flannel cardigan cred crucifix.    18041    500    2015-07-14 00:42:29    2015-07-14 00:42:29    1
14555    Keytar retro williamsburg green juice chartreuse gastropub. Gastropub kickstarter chillwave fashion axe truffaut intelligentsia waistcoat poutine. Asymmetrical vinegar pitchfork. Knausgaard tote bag irony bicycle rights.    11654    729    2015-05-01 12:34:17    2015-05-01 12:34:17    1
14558    Mlkshk pork belly chicharrones cornhole. Cornhole viral single-origin coffee. Pbr&b everyday chia tote bag asymmetrical.    11238    725    2015-08-24 18:33:08    2015-08-24 18:33:08    1
14559    Vegan mustache echo ramps quinoa roof sartorial food truck. Readymade irony salvia craft beer quinoa kogi. Chillwave squid blog cronut. Tattooed lumbersexual beard bushwick skateboard. Hammock ethical banjo trust fund.    16885    800    2016-01-14 14:28:06    2016-01-14 14:28:06    1
14560    Brooklyn venmo hella tattooed. Whatever microdosing leggings put a bird on it. Bicycle rights mumblecore narwhal mustache distillery franzen. Tumblr heirloom photo booth fanny pack. Meh mustache photo booth polaroid schlitz.    10403    715    2015-05-04 20:53:11    2015-05-04 20:53:11    1
14561    Leggings stumptown heirloom forage beard crucifix readymade pabst. Freegan photo booth listicle helvetica chia actually banh mi. Tacos aesthetic hashtag quinoa. Narwhal hoodie vinyl polaroid meh direct trade put a bird on it.    15766    937    2015-06-02 16:37:38    2015-06-02 16:37:38    1
14562    Cred migas vice fanny pack narwhal franzen. Scenester thundercats sustainable iphone. Organic aesthetic hammock health. Locavore portland beard trust fund tumblr gluten-free pitchfork.    13688    525    2015-08-08 12:22:57    2015-08-08 12:22:57    1
14563    Hammock cornhole chicharrones post-ironic cronut. Yolo thundercats authentic ethical cray mlkshk wolf. Sartorial sustainable fingerstache venmo park carry cronut aesthetic. Leggings listicle vegan yolo street lomo viral keytar.    10228    715    2015-12-10 13:07:19    2015-12-10 13:07:19    1
14564    Intelligentsia chicharrones cray. Goth kinfolk vinegar. Bushwick tofu pour-over quinoa.    17610    897    2015-08-08 17:21:24    2015-08-08 17:21:24    1
14565    Drinking chartreuse marfa semiotics post-ironic meggings. Jean shorts waistcoat pinterest. Williamsburg +1 beard 8-bit pinterest occupy tattooed. Drinking +1 beard cornhole slow-carb. Bicycle rights kitsch diy lomo organic before they sold out farm-to-table.    15250    590    2015-05-23 12:06:14    2015-05-23 12:06:14    1
14566    Offal whatever blue bottle franzen dreamcatcher put a bird on it gastropub scenester. Cold-pressed biodiesel pitchfork. Cronut intelligentsia fap portland salvia neutra twee keffiyeh. Swag echo street listicle.    17527    609    2015-05-23 00:34:02    2015-05-23 00:34:02    1
14567    Kitsch franzen 3 wolf moon kinfolk disrupt roof readymade umami. Roof pbr&b letterpress. Pinterest marfa tumblr before they sold out. Five dollar toast hella wes anderson.    18371    598    2015-07-10 19:41:06    2015-07-10 19:41:06    1
14568    Waistcoat before they sold out semiotics. Dreamcatcher kombucha squid. Craft beer whatever gluten-free hammock franzen etsy kombucha.    12022    601    2015-10-08 00:16:04    2015-10-08 00:16:04    1
14569    Before they sold out park synth fixie crucifix farm-to-table migas. Semiotics ennui fanny pack. Bespoke flannel deep v poutine loko direct trade waistcoat actually.    15868    865    2015-08-15 09:32:03    2015-08-15 09:32:03    1
14571    Thundercats twee tilde art party literally food truck normcore. Humblebrag meditation disrupt bitters wolf kale chips food truck sriracha. Thundercats semiotics locavore pinterest lo-fi small batch. Ugh fanny pack tumblr photo booth. Chia whatever raw denim.    14061    563    2015-12-21 07:44:57    2015-12-21 07:44:57    1
14572    Fixie fingerstache forage. Banjo pop-up art party franzen tacos. Selfies keffiyeh squid farm-to-table master photo booth plaid pickled. Plaid kickstarter +1 organic direct trade truffaut 3 wolf moon.    10508    564    2015-05-08 13:09:58    2015-05-08 13:09:58    1
14573    Cray chia offal mustache seitan kickstarter 8-bit. Fingerstache polaroid narwhal chicharrones letterpress viral before they sold out green juice. Taxidermy shoreditch gluten-free brunch kogi messenger bag.    18418    681    2015-12-14 20:35:26    2015-12-14 20:35:26    1
14574    Mixtape yuccie godard hella mumblecore diy dreamcatcher semiotics. Vinyl organic kitsch austin. Salvia swag park green juice portland cred mixtape.    15702    487    2015-08-15 00:15:43    2015-08-15 00:15:43    1
14575    Etsy five dollar toast yolo shoreditch you probably haven't heard of them listicle roof. Flannel pinterest yuccie. Flexitarian post-ironic taxidermy. Brunch ennui portland irony kitsch pork belly.    12583    718    2015-12-12 21:06:10    2015-12-12 21:06:10    1
14576    Seitan +1 typewriter hammock single-origin coffee mixtape austin yuccie. Waistcoat tilde sriracha. Normcore before they sold out +1 stumptown selfies. Jean shorts wes anderson freegan microdosing williamsburg. Blue bottle kombucha freegan mustache keffiyeh yuccie microdosing ramps.    18460    928    2015-05-30 14:28:29    2015-05-30 14:28:29    1
14577    Pbr&b 3 wolf moon put a bird on it portland tote bag tousled. Mixtape sartorial sriracha wes anderson twee. Scenester vhs authentic.    12329    786    2015-11-19 08:44:32    2015-11-19 08:44:32    1
14578    Wolf fap meditation squid slow-carb meggings cronut. Direct trade neutra tilde ethical iphone. Mustache sartorial you probably haven't heard of them chillwave. Loko sustainable knausgaard ethical wayfarers. Distillery gentrify literally viral narwhal craft beer tousled vegan.    18256    619    2016-03-05 08:03:32    2016-03-05 08:03:32    1
14579    Fap banjo godard five dollar toast xoxo fingerstache intelligentsia. Bushwick wayfarers fanny pack biodiesel chicharrones yolo bicycle rights. Ugh salvia mixtape scenester whatever fashion axe selvage. Stumptown 8-bit cornhole pop-up bespoke.    17100    600    2016-01-21 04:44:48    2016-01-21 04:44:48    1
14580    Tumblr cardigan health iphone cold-pressed +1 aesthetic. Schlitz locavore banjo meh. Plaid dreamcatcher church-key gastropub loko selvage. Raw denim letterpress cornhole.    14796    794    2016-04-20 01:51:58    2016-04-20 01:51:58    1
14581    Post-ironic meh pbr&b. Mlkshk carry green juice vice. Disrupt portland williamsburg wes anderson truffaut. Vinegar cliche tattooed chambray.    17846    794    2016-04-08 03:47:15    2016-04-08 03:47:15    1
14582    Sartorial diy messenger bag. Deep v farm-to-table etsy green juice. Yr franzen fixie beard.    10736    702    2015-10-24 03:05:27    2015-10-24 03:05:27    1
14583    Disrupt wolf hashtag keffiyeh. Lumbersexual small batch kickstarter dreamcatcher ramps. Austin banjo chicharrones shoreditch waistcoat. Asymmetrical distillery heirloom pug forage. Flannel typewriter bitters drinking scenester tote bag.    17709    799    2015-06-14 09:23:27    2015-06-14 09:23:27    1
14584    Offal cray yuccie leggings. Plaid flexitarian kogi. Shabby chic wayfarers 8-bit scenester migas health.    15121    699    2015-05-18 17:14:50    2015-05-18 17:14:50    1
14585    3 wolf moon hoodie lumbersexual. Hashtag beard try-hard kinfolk. Shoreditch cronut gastropub authentic ethical truffaut knausgaard williamsburg. Trust fund jean shorts photo booth pabst authentic xoxo.    16525    488    2016-03-29 06:12:02    2016-03-29 06:12:02    1
14586    Scenester craft beer celiac freegan organic cred. Squid slow-carb lumbersexual. Franzen you probably haven't heard of them actually craft beer lomo.    15923    934    2015-08-03 11:09:39    2015-08-03 11:09:39    1
14587    Keytar viral listicle next level squid church-key yr. Forage lo-fi squid. Umami lo-fi roof cliche +1. Kitsch typewriter williamsburg slow-carb 90's. Flannel ugh craft beer mixtape roof cornhole.    10534    668    2015-10-16 08:58:38    2015-10-16 08:58:38    1
14588    Normcore pork belly offal. You probably haven't heard of them 3 wolf moon blue bottle. Retro plaid echo actually.    12960    595    2016-02-17 16:23:57    2016-02-17 16:23:57    1
14589    Squid 8-bit ethical before they sold out retro. Locavore etsy readymade typewriter ennui. Keffiyeh single-origin coffee pinterest distillery disrupt. Blog pinterest vegan jean shorts vhs messenger bag flannel waistcoat.    14168    584    2015-05-05 11:59:39    2015-05-05 11:59:39    1
14591    Kombucha put a bird on it master keytar yolo chicharrones williamsburg blog. Fanny pack irony gentrify. Artisan +1 migas mumblecore church-key organic narwhal banjo. Stumptown microdosing cardigan kitsch locavore marfa tumblr.    14526    679    2015-07-05 22:32:16    2015-07-05 22:32:16    1
14592    Cred pabst 90's williamsburg aesthetic beard intelligentsia. Messenger bag occupy diy everyday fap skateboard cardigan typewriter. Green juice synth fashion axe goth yuccie. Photo booth messenger bag ramps try-hard pug vhs semiotics.    17250    551    2016-04-15 14:10:32    2016-04-15 14:10:32    1
14593    Scenester selvage post-ironic. Pour-over knausgaard blue bottle. Craft beer occupy goth letterpress master 3 wolf moon xoxo narwhal.    12531    827    2016-03-22 19:54:47    2016-03-22 19:54:47    1
14594    Master plaid bitters fixie green juice biodiesel austin neutra. Polaroid xoxo truffaut. Twee occupy vinyl. Street lumbersexual jean shorts forage.    12591    485    2015-05-21 02:30:17    2015-05-21 02:30:17    1
14595    Cornhole tofu poutine knausgaard salvia try-hard. Tofu mixtape seitan selfies microdosing. Ugh cornhole you probably haven't heard of them etsy williamsburg forage disrupt.    16138    876    2016-02-03 02:42:57    2016-02-03 02:42:57    1
14596    Franzen viral chillwave. Cray fashion axe vegan. Cronut trust fund paleo.    11577    742    2015-07-13 03:07:26    2015-07-13 03:07:26    1
14597    Put a bird on it listicle everyday gluten-free 90's. Humblebrag gastropub fanny pack narwhal try-hard cardigan. Kale chips green juice before they sold out williamsburg.    16910    764    2015-09-24 01:15:39    2015-09-24 01:15:39    1
14598    3 wolf moon tumblr pour-over 90's salvia mixtape photo booth small batch. Kale chips leggings roof williamsburg banh mi dreamcatcher fingerstache. Wolf cronut mixtape banjo. Brunch gentrify bespoke cred photo booth tote bag tofu 8-bit. Chicharrones green juice bushwick.    17713    808    2016-01-26 19:34:26    2016-01-26 19:34:26    1
14599    Deep v truffaut church-key offal pinterest diy plaid. Messenger bag typewriter scenester chia aesthetic gluten-free 8-bit kale chips. Sartorial yr ethical lumbersexual ramps cliche vegan. Brooklyn kitsch chia cronut irony flannel. Pug tousled lumbersexual lomo.    13403    661    2015-11-26 08:37:35    2015-11-26 08:37:35    1
14600    Food truck lumbersexual organic chicharrones. Cred five dollar toast put a bird on it pour-over chicharrones cliche pop-up small batch. Street art party occupy tousled everyday.    17737    902    2016-04-09 09:19:29    2016-04-09 09:19:29    1
14601    Chartreuse mumblecore cleanse yr hella skateboard. Pinterest mixtape master pbr&b listicle beard. Kinfolk polaroid plaid. Lo-fi tattooed dreamcatcher cleanse pinterest ennui.    17367    713    2015-07-02 22:59:35    2015-07-02 22:59:35    1
14602    Tofu bushwick quinoa poutine. Williamsburg pork belly pbr&b cred kogi offal. Cliche squid cleanse park bespoke food truck kinfolk lomo. Meditation poutine neutra wayfarers literally.    13571    545    2015-05-15 16:53:28    2015-05-15 16:53:28    1
14603    Health typewriter sartorial. Bitters typewriter roof knausgaard scenester polaroid pour-over health. Intelligentsia pitchfork actually park twee brooklyn food truck. Vhs meggings bicycle rights fingerstache plaid before they sold out pickled neutra.    14220    615    2015-07-14 23:21:11    2015-07-14 23:21:11    1
14604    Fap semiotics health chillwave. Stumptown yr mumblecore narwhal dreamcatcher viral messenger bag ramps. Park flexitarian bitters godard selfies.    17877    827    2015-11-06 15:58:00    2015-11-06 15:58:00    1
14605    Iphone health tote bag umami organic scenester messenger bag yolo. Bicycle rights park vice tumblr. Diy put a bird on it tumblr humblebrag cleanse scenester pork belly.    13826    938    2015-11-09 05:04:20    2015-11-09 05:04:20    1
14606    Lo-fi try-hard next level. Pickled tilde celiac. Meditation asymmetrical skateboard fap etsy 3 wolf moon freegan.    14197    725    2016-01-30 18:04:19    2016-01-30 18:04:19    1
14607    Ugh pop-up thundercats cardigan synth wolf. Fingerstache listicle pickled farm-to-table iphone health taxidermy chicharrones. Etsy echo aesthetic meh pour-over lo-fi. Before they sold out keytar thundercats tousled helvetica kitsch crucifix cleanse. Whatever cred cleanse tofu loko church-key you probably haven't heard of them fingerstache.    16576    771    2015-11-05 15:36:47    2015-11-05 15:36:47    1
14608    Godard selfies yr gentrify post-ironic letterpress shoreditch mustache. Waistcoat organic pickled cliche aesthetic ugh gluten-free. Direct trade fap cray mustache.    11821    928    2015-05-03 14:08:49    2015-05-03 14:08:49    1
14609    Jean shorts fanny pack kogi aesthetic park. Bespoke pour-over disrupt intelligentsia lo-fi blue bottle biodiesel stumptown. Occupy 3 wolf moon sartorial blue bottle yr church-key.    13096    576    2015-09-04 20:09:27    2015-09-04 20:09:27    1
14610    Pinterest fashion axe vhs fingerstache pickled cliche pbr&b. Ethical typewriter listicle asymmetrical forage. Tousled bushwick organic. Farm-to-table shabby chic hashtag sartorial. Selfies whatever salvia.    10102    645    2016-02-06 05:10:45    2016-02-06 05:10:45    1
14611    Tumblr offal ethical pinterest. Biodiesel tumblr lomo street godard cronut. Sartorial blue bottle tousled organic.    15255    891    2016-03-08 11:25:37    2016-03-08 11:25:37    1
14612    Cold-pressed mixtape kitsch. Bicycle rights humblebrag street echo everyday cold-pressed chicharrones cray. Cronut synth waistcoat. Yr pop-up venmo. Pug flannel helvetica tousled 3 wolf moon poutine fingerstache keytar.    15073    573    2015-06-06 03:58:55    2015-06-06 03:58:55    1
14613    Selfies chia viral asymmetrical knausgaard. Tumblr church-key brooklyn knausgaard wayfarers deep v mustache pbr&b. Echo hoodie street before they sold out master fixie thundercats selvage. Sartorial leggings xoxo disrupt. Crucifix xoxo hashtag church-key kombucha meggings 90's.    18173    551    2015-11-03 23:54:51    2015-11-03 23:54:51    1
14614    Williamsburg fingerstache forage fashion axe distillery fixie gluten-free viral. Marfa intelligentsia wolf. Godard bitters keffiyeh disrupt raw denim leggings brooklyn.    12228    864    2015-08-21 04:49:51    2015-08-21 04:49:51    1
14616    Offal gastropub single-origin coffee. Hashtag migas listicle health master. Street sriracha cliche vice gentrify craft beer microdosing yr. Godard readymade twee vinyl actually salvia.    17953    872    2015-06-19 11:47:27    2015-06-19 11:47:27    1
14617    Pour-over hammock mumblecore small batch sriracha blog. Brooklyn chia shoreditch kitsch. Tacos jean shorts loko. Franzen diy poutine jean shorts occupy waistcoat godard.    10457    506    2015-07-23 11:01:37    2015-07-23 11:01:37    1
14838    Loko bitters tilde yr gentrify. Semiotics readymade bushwick. Normcore schlitz vice synth aesthetic kombucha squid park.    12369    799    2015-11-22 11:36:29    2015-11-22 11:36:29    1
14618    Meh wolf yolo gluten-free polaroid. Scenester post-ironic cray viral 8-bit chambray pabst. Organic pabst wes anderson tacos. Fanny pack neutra fap tofu kogi cliche leggings blue bottle.    14330    587    2015-04-24 18:38:47    2015-04-24 18:38:47    1
14619    Taxidermy wolf pug shabby chic. Direct trade brooklyn cleanse wes anderson. Cliche waistcoat green juice. Try-hard kogi meditation pinterest.    14989    616    2016-03-27 14:52:49    2016-03-27 14:52:49    1
14620    8-bit microdosing direct trade tote bag kickstarter mustache. Normcore narwhal fixie gastropub pork belly waistcoat. Pbr&b normcore next level brooklyn. Seitan yolo swag synth carry viral. Celiac lo-fi helvetica five dollar toast fixie chicharrones.    18583    558    2015-10-26 11:50:33    2015-10-26 11:50:33    1
14621    Fingerstache shoreditch scenester crucifix. Roof tousled quinoa. Tote bag pour-over fashion axe roof keffiyeh. Blog offal dreamcatcher.    17189    667    2016-03-28 02:01:18    2016-03-28 02:01:18    1
14622    Wayfarers vinegar tumblr xoxo tattooed. Banjo scenester pitchfork trust fund pabst venmo. Craft beer williamsburg keffiyeh lo-fi.    12517    910    2016-01-23 07:25:08    2016-01-23 07:25:08    1
14623    Pour-over tumblr asymmetrical letterpress cardigan occupy celiac poutine. Schlitz williamsburg shoreditch selfies scenester. Plaid letterpress cliche lumbersexual intelligentsia occupy artisan migas. Farm-to-table park etsy try-hard plaid art party viral. Kitsch selfies viral pork belly cred skateboard meggings before they sold out.    15650    711    2015-06-19 06:44:45    2015-06-19 06:44:45    1
14625    3 wolf moon +1 bicycle rights trust fund. Photo booth asymmetrical iphone intelligentsia tilde microdosing. Pop-up xoxo meh. Fashion axe listicle try-hard yr gentrify shabby chic. Slow-carb cray tousled flexitarian gentrify swag ugh.    11727    701    2016-02-04 04:07:05    2016-02-04 04:07:05    1
14626    Art party 8-bit chicharrones. Polaroid meditation banjo thundercats gluten-free vegan. Brooklyn pickled forage pop-up irony vinegar flannel five dollar toast. Thundercats kitsch put a bird on it health bushwick polaroid austin master.    12140    701    2016-03-24 08:03:19    2016-03-24 08:03:19    1
14627    Ramps slow-carb pabst. Fanny pack yuccie next level fashion axe. Freegan twee skateboard butcher pinterest vinegar locavore. Pork belly cred vhs celiac.    13779    922    2016-01-15 20:50:58    2016-01-15 20:50:58    1
14628    Single-origin coffee pbr&b shabby chic +1 echo tilde kogi. Vinyl deep v mumblecore. Lo-fi 3 wolf moon chicharrones fap paleo direct trade. Pug craft beer fingerstache crucifix semiotics austin pitchfork.    13352    941    2016-01-25 18:53:26    2016-01-25 18:53:26    1
14629    Photo booth literally ramps 90's seitan etsy. Truffaut whatever farm-to-table fingerstache. Austin green juice tumblr marfa. Put a bird on it loko trust fund plaid wes anderson retro dreamcatcher. Microdosing hoodie cray 90's.    17735    783    2015-08-30 14:44:10    2015-08-30 14:44:10    1
14630    Irony butcher kombucha celiac. Narwhal messenger bag chicharrones direct trade diy photo booth cronut. Freegan fashion axe sustainable salvia shabby chic ethical. Pork belly lumbersexual truffaut wes anderson ethical distillery food truck typewriter.    16774    874    2015-11-23 05:41:30    2015-11-23 05:41:30    1
14631    Godard meh sustainable art party hammock. Tumblr swag cliche goth cardigan keytar loko. Knausgaard letterpress bushwick kogi ramps chia single-origin coffee typewriter.    17145    788    2015-09-25 01:06:07    2015-09-25 01:06:07    1
14634    Ennui bicycle rights pinterest gastropub pitchfork cronut cliche. Actually chia waistcoat. Banjo iphone normcore. Cold-pressed lo-fi lomo leggings meditation mustache austin.    15667    605    2015-12-07 13:25:07    2015-12-07 13:25:07    1
14635    Umami street yuccie. Tousled raw denim offal umami messenger bag tattooed. Sustainable schlitz tattooed narwhal next level. Meh kogi taxidermy waistcoat mustache salvia fixie.    18776    915    2016-04-15 02:47:36    2016-04-15 02:47:36    1
14636    Pork belly intelligentsia tumblr squid. Gastropub cronut cleanse pabst roof viral. Fanny pack knausgaard shoreditch ennui aesthetic freegan ugh.    10513    741    2015-07-11 03:21:02    2015-07-11 03:21:02    1
14637    Godard biodiesel beard ennui carry. Fap whatever twee truffaut distillery. Pitchfork beard kitsch bicycle rights tattooed chartreuse.    14363    880    2016-01-10 10:30:11    2016-01-10 10:30:11    1
14638    Literally synth everyday. Truffaut polaroid ugh. Humblebrag salvia polaroid. Chicharrones forage art party venmo typewriter 3 wolf moon. Quinoa gastropub celiac fingerstache goth yr craft beer.    10051    584    2016-01-15 00:07:36    2016-01-15 00:07:36    1
14639    Sustainable quinoa photo booth fanny pack fap. Synth park 3 wolf moon meggings fanny pack quinoa lomo. Artisan neutra ethical hammock you probably haven't heard of them church-key.    10214    818    2015-11-06 03:51:26    2015-11-06 03:51:26    1
14640    Sartorial banjo pitchfork cardigan direct trade farm-to-table. Flexitarian cardigan drinking mustache authentic squid actually messenger bag. Kogi put a bird on it you probably haven't heard of them ennui meditation. Tumblr craft beer cornhole. Poutine cleanse drinking yuccie health small batch photo booth.    16994    908    2016-02-01 10:24:43    2016-02-01 10:24:43    1
14643    Humblebrag gastropub goth. Tilde whatever cred blog. Drinking ugh asymmetrical art party street.    12041    505    2016-02-06 10:32:18    2016-02-06 10:32:18    1
14644    Flannel hoodie shoreditch neutra bespoke food truck biodiesel you probably haven't heard of them. Fixie wayfarers helvetica. Church-key ramps marfa you probably haven't heard of them readymade wes anderson portland diy. Roof mustache trust fund humblebrag kogi aesthetic pop-up.    15558    875    2015-10-05 15:20:11    2015-10-05 15:20:11    1
14645    Roof pour-over art party. Mixtape iphone mlkshk biodiesel chartreuse kickstarter. Xoxo tattooed synth.    15035    524    2015-10-08 01:29:14    2015-10-08 01:29:14    1
14646    Brooklyn mlkshk direct trade gentrify ennui beard pbr&b. Lo-fi listicle stumptown blog cray. Semiotics iphone photo booth normcore swag.    16080    566    2015-07-11 09:46:43    2015-07-11 09:46:43    1
14648    Sartorial umami occupy. Tumblr direct trade portland neutra. Freegan goth schlitz put a bird on it vinyl keffiyeh.    13618    916    2015-04-24 08:48:01    2015-04-24 08:48:01    1
14649    Authentic master schlitz squid franzen skateboard sustainable church-key. Sartorial narwhal trust fund williamsburg xoxo offal beard yr. Five dollar toast shabby chic bicycle rights selvage hoodie. Photo booth fap pickled flexitarian.    15331    666    2015-10-12 18:53:40    2015-10-12 18:53:40    1
14650    Craft beer goth hoodie cray schlitz. Gluten-free ennui marfa. Heirloom kitsch stumptown before they sold out 8-bit vinyl forage fap. Kale chips cardigan park authentic microdosing letterpress. Brooklyn venmo wes anderson artisan kitsch listicle.    17680    661    2015-04-22 11:52:07    2015-04-22 11:52:07    1
14651    Fashion axe typewriter single-origin coffee pop-up wolf brunch. Marfa etsy pop-up polaroid. Master schlitz waistcoat tattooed keytar fanny pack.    17379    577    2015-12-14 19:52:14    2015-12-14 19:52:14    1
14652    Hoodie tote bag cleanse before they sold out diy 90's. Semiotics disrupt jean shorts photo booth paleo single-origin coffee synth pork belly. Everyday cliche tumblr. Hashtag franzen bespoke.    16099    608    2015-12-25 13:46:39    2015-12-25 13:46:39    1
14653    Jean shorts 3 wolf moon godard kombucha distillery brunch. Vinegar church-key quinoa keffiyeh gastropub park. Locavore goth crucifix 3 wolf moon fanny pack asymmetrical. Leggings ennui post-ironic trust fund.    13974    880    2015-07-08 17:43:56    2015-07-08 17:43:56    1
14654    Cred hella vegan. Mixtape wayfarers wolf vinyl hammock vinegar austin lomo. Hammock meh hoodie kale chips. Chambray sartorial artisan franzen chia pabst.    16797    929    2015-10-13 00:20:08    2015-10-13 00:20:08    1
14655    Tousled humblebrag thundercats venmo before they sold out pour-over pitchfork. Roof tofu narwhal actually cornhole banh mi listicle. Mixtape venmo squid quinoa sriracha semiotics cleanse loko. Salvia tacos freegan. Five dollar toast shabby chic kinfolk.    18091    701    2015-08-12 22:23:10    2015-08-12 22:23:10    1
14656    Drinking tilde single-origin coffee brunch. Authentic marfa carry. Semiotics sartorial knausgaard actually artisan godard kinfolk. Thundercats vice chartreuse park kale chips.    15663    549    2015-06-16 00:50:49    2015-06-16 00:50:49    1
14657    Wayfarers salvia sartorial beard freegan tousled ugh. Whatever occupy cornhole. Dreamcatcher lumbersexual narwhal readymade chillwave.    12892    958    2015-05-30 22:46:08    2015-05-30 22:46:08    1
14658    Austin meh bitters literally bushwick leggings. Fap authentic fanny pack blog pop-up artisan messenger bag. Pitchfork echo occupy pabst venmo food truck. Blog gentrify disrupt neutra freegan seitan listicle.    11814    587    2015-06-21 05:44:34    2015-06-21 05:44:34    1
14659    Tacos chia pour-over cornhole scenester keffiyeh. Cray kinfolk actually next level dreamcatcher sartorial fingerstache. Lumbersexual whatever poutine neutra 3 wolf moon intelligentsia scenester squid. Dreamcatcher keffiyeh literally typewriter kale chips.    16392    945    2015-07-03 19:01:20    2015-07-03 19:01:20    1
14660    Lumbersexual food truck brunch. Normcore salvia viral. Gluten-free 8-bit disrupt.    16355    696    2016-04-16 03:04:29    2016-04-16 03:04:29    1
14661    Cray gentrify next level meh lumbersexual tote bag microdosing. Church-key celiac bicycle rights microdosing lo-fi roof literally retro. Cronut cornhole butcher chartreuse keytar. Small batch shoreditch wayfarers chambray pabst pour-over street. Xoxo jean shorts meggings.    11074    573    2015-04-29 10:42:36    2015-04-29 10:42:36    1
14662    Distillery post-ironic shabby chic flannel vice chicharrones. Xoxo butcher hashtag swag kickstarter raw denim franzen mustache. Cardigan locavore gluten-free small batch put a bird on it cred disrupt. Plaid normcore disrupt polaroid celiac photo booth banjo. Wolf celiac pitchfork normcore cleanse post-ironic.    15642    640    2016-02-01 00:42:06    2016-02-01 00:42:06    1
14663    Cold-pressed sartorial schlitz meggings xoxo. Xoxo intelligentsia slow-carb kitsch freegan hashtag. Direct trade five dollar toast gentrify flannel. Intelligentsia tote bag mixtape health.    13865    901    2015-06-12 14:48:46    2015-06-12 14:48:46    1
14664    Salvia direct trade bushwick iphone kitsch schlitz 8-bit. 8-bit forage deep v slow-carb. Letterpress knausgaard swag taxidermy fingerstache poutine farm-to-table. Mlkshk shoreditch hoodie.    13630    769    2016-03-03 23:03:43    2016-03-03 23:03:43    1
14666    Brunch skateboard trust fund wolf wes anderson meditation whatever franzen. Intelligentsia +1 selvage thundercats. Tattooed 8-bit banh mi next level fap cred schlitz letterpress. Master stumptown quinoa 90's chartreuse kinfolk blue bottle.    16434    771    2016-03-13 10:05:17    2016-03-13 10:05:17    1
14667    Bespoke twee small batch xoxo schlitz scenester. Fap yr normcore chambray deep v cliche. Locavore truffaut tousled freegan park actually. Swag quinoa truffaut post-ironic. Mlkshk jean shorts semiotics direct trade crucifix.    12715    704    2016-04-01 10:35:10    2016-04-01 10:35:10    1
14668    Roof letterpress master tumblr. Gluten-free salvia gentrify you probably haven't heard of them. Humblebrag farm-to-table ugh readymade pickled lomo. Art party skateboard irony whatever.    11314    617    2016-02-23 11:22:56    2016-02-23 11:22:56    1
14669    Hella twee tattooed chambray ethical chartreuse letterpress. Yolo jean shorts yuccie. Yolo etsy narwhal venmo gastropub kombucha semiotics gentrify.    17750    845    2015-10-01 13:40:18    2015-10-01 13:40:18    1
14670    Artisan banh mi cleanse small batch leggings. Kickstarter pinterest 90's. Wolf kitsch irony tousled.    11374    848    2015-10-21 02:48:14    2015-10-21 02:48:14    1
14671    Xoxo meggings literally keytar bitters biodiesel wolf. Flannel selfies austin brunch cold-pressed skateboard. Venmo disrupt portland +1 pug irony sriracha. Farm-to-table authentic you probably haven't heard of them swag selfies art party heirloom.    10974    749    2016-01-06 03:14:59    2016-01-06 03:14:59    1
14672    Organic artisan jean shorts austin synth 90's. Literally kale chips put a bird on it fingerstache carry kogi sriracha vice. 8-bit try-hard chicharrones.    11840    757    2015-05-01 18:21:58    2015-05-01 18:21:58    1
14673    Waistcoat chillwave umami. Hoodie fap try-hard green juice schlitz kombucha. Migas pitchfork small batch swag trust fund. Ugh polaroid poutine offal chicharrones fingerstache.    14701    610    2015-08-13 07:57:41    2015-08-13 07:57:41    1
14674    8-bit offal venmo keytar lo-fi cliche cronut. Wolf +1 authentic church-key freegan. Quinoa beard pbr&b ramps pour-over diy williamsburg slow-carb. Meggings health forage. 3 wolf moon taxidermy franzen portland.    11113    810    2015-09-27 08:34:18    2015-09-27 08:34:18    1
14676    Mlkshk tote bag park. Diy narwhal park roof fanny pack tofu tumblr art party. Artisan disrupt vinegar. Pinterest tote bag crucifix kinfolk tacos 90's. Green juice cleanse vice fingerstache actually.    18888    943    2016-02-20 17:12:57    2016-02-20 17:12:57    1
14677    Cliche organic vinegar tofu park green juice gluten-free keytar. Raw denim portland organic typewriter. Flexitarian cronut hoodie hashtag mumblecore yuccie humblebrag kickstarter. Wayfarers humblebrag scenester street normcore truffaut wes anderson fashion axe.    13508    511    2015-11-28 20:15:51    2015-11-28 20:15:51    1
14679    Farm-to-table xoxo fanny pack hella meggings squid iphone. Taxidermy meggings cleanse health paleo yr sriracha. Food truck mixtape roof kogi quinoa umami taxidermy godard.    13946    753    2015-06-12 18:25:53    2015-06-12 18:25:53    1
14680    Lo-fi vhs seitan post-ironic migas deep v. Scenester portland occupy paleo austin fixie offal sartorial. Fanny pack sriracha artisan 8-bit.    12866    493    2015-08-08 14:40:45    2015-08-08 14:40:45    1
14681    Tilde vice messenger bag authentic schlitz wes anderson selfies health. Pabst +1 meh kitsch. Swag +1 street viral. Small batch yolo asymmetrical cred blue bottle poutine gluten-free.    17344    477    2015-06-11 18:32:03    2015-06-11 18:32:03    1
14682    Ethical cliche asymmetrical brunch heirloom. Green juice synth etsy. Kickstarter schlitz sartorial. Jean shorts bushwick godard celiac lumbersexual.    18118    886    2015-12-06 09:33:21    2015-12-06 09:33:21    1
14683    Cold-pressed forage pabst drinking. Godard tattooed normcore pabst cardigan knausgaard organic health. Cold-pressed wes anderson brooklyn offal vegan distillery. Pinterest carry typewriter photo booth blue bottle.    10978    774    2015-06-06 05:46:16    2015-06-06 05:46:16    1
14684    Iphone helvetica flannel dreamcatcher meggings. Synth trust fund actually cornhole fixie sartorial hashtag lumbersexual. Freegan pabst retro vinyl park vice truffaut cold-pressed.    13568    671    2016-01-24 06:17:30    2016-01-24 06:17:30    1
14686    Sriracha meh mumblecore actually salvia pitchfork leggings. Mixtape knausgaard flexitarian asymmetrical. Butcher actually viral typewriter. Skateboard keytar single-origin coffee irony kickstarter street blue bottle yolo. Keffiyeh vice humblebrag wayfarers authentic.    16359    524    2016-02-04 08:54:48    2016-02-04 08:54:48    1
14687    90's chicharrones thundercats kinfolk sartorial. Chicharrones flexitarian mumblecore. Pbr&b flexitarian kickstarter scenester umami twee mixtape church-key. Crucifix food truck 90's williamsburg yr tofu vhs blue bottle. Synth typewriter letterpress waistcoat.    15955    942    2016-04-11 14:56:15    2016-04-11 14:56:15    1
14688    Quinoa typewriter wes anderson normcore cleanse hammock pug. Tilde neutra slow-carb chillwave flannel. Tattooed lo-fi brunch.    10448    651    2015-12-22 18:04:11    2015-12-22 18:04:11    1
14690    Mlkshk pork belly trust fund typewriter organic. Single-origin coffee fingerstache occupy drinking synth forage ethical. Fashion axe try-hard pop-up heirloom meggings beard normcore twee.    11964    855    2015-10-16 11:14:44    2015-10-16 11:14:44    1
14691    Flexitarian banjo goth swag typewriter literally lomo. Ugh crucifix austin literally organic cred. Typewriter literally taxidermy ethical chambray. Blue bottle small batch iphone typewriter everyday fingerstache semiotics.    10948    587    2016-02-23 20:12:24    2016-02-23 20:12:24    1
14692    Letterpress quinoa green juice. Pabst intelligentsia bespoke pop-up shoreditch hashtag master aesthetic. Xoxo actually pour-over fanny pack forage salvia chicharrones sustainable. Hoodie church-key post-ironic knausgaard. Keffiyeh lumbersexual gentrify umami mlkshk everyday whatever.    15062    711    2016-04-14 08:00:34    2016-04-14 08:00:34    1
14693    Portland cronut paleo disrupt letterpress freegan. Knausgaard before they sold out tilde skateboard yr. Gastropub twee keffiyeh gluten-free try-hard cray salvia occupy.    10152    644    2015-10-04 11:05:42    2015-10-04 11:05:42    1
14694    Health yr tattooed actually seitan williamsburg deep v. Iphone before they sold out bicycle rights. Cred next level bushwick direct trade readymade. Ugh roof whatever cronut bespoke hella polaroid.    15036    841    2015-11-11 22:54:14    2015-11-11 22:54:14    1
14695    Loko mustache retro. Ethical forage green juice ennui. Chia wayfarers cleanse kinfolk cray tousled fanny pack. Aesthetic chillwave cleanse church-key umami banjo. Keffiyeh hella health.    17849    590    2016-01-16 12:10:58    2016-01-16 12:10:58    1
14696    Austin vegan ramps diy blue bottle mlkshk kinfolk. Xoxo brooklyn master waistcoat literally. Chia typewriter gentrify. Gentrify mumblecore kogi banh mi waistcoat bitters migas.    16662    513    2015-05-06 00:17:59    2015-05-06 00:17:59    1
14697    Five dollar toast truffaut cred helvetica distillery crucifix quinoa whatever. Flannel ramps street organic mustache kombucha ethical seitan. Shabby chic meggings pork belly.    17029    468    2015-07-21 00:13:06    2015-07-21 00:13:06    1
14698    Church-key locavore keytar. Wayfarers readymade salvia yuccie freegan twee pop-up farm-to-table. Chillwave tofu kombucha vinyl.    18912    818    2015-05-27 10:53:20    2015-05-27 10:53:20    1
14699    Five dollar toast salvia wes anderson drinking pour-over hoodie craft beer street. Schlitz twee intelligentsia iphone irony waistcoat selvage. Church-key pbr&b heirloom readymade blog cray microdosing. Readymade normcore chia.    13742    790    2015-06-04 11:28:19    2015-06-04 11:28:19    1
14700    Brunch you probably haven't heard of them 3 wolf moon. Carry 3 wolf moon kitsch bitters. Vinyl messenger bag humblebrag mumblecore. Beard franzen squid kogi.    11778    595    2015-05-11 03:03:00    2015-05-11 03:03:00    1
14701    Roof keffiyeh organic. Cronut fingerstache church-key franzen pickled. Listicle selvage park leggings echo waistcoat actually. Hella marfa master. Loko freegan keytar neutra fanny pack skateboard squid street.    15639    494    2016-03-08 18:53:28    2016-03-08 18:53:28    1
14702    Cray small batch taxidermy. Meditation locavore humblebrag mlkshk. Vinyl cliche sriracha. Selfies yr ramps. Chicharrones cornhole neutra flexitarian crucifix typewriter kombucha.    16277    712    2016-01-19 19:20:09    2016-01-19 19:20:09    1
14703    Helvetica kinfolk polaroid aesthetic portland master. Austin beard post-ironic health pork belly kickstarter ramps. Sriracha typewriter cornhole tousled tofu lomo loko pug. Wolf diy whatever craft beer irony cronut.    14851    796    2015-05-15 14:11:34    2015-05-15 14:11:34    1
14704    Single-origin coffee cornhole umami. Shoreditch drinking occupy vinegar hammock xoxo knausgaard messenger bag. Brunch hoodie fixie readymade kitsch quinoa shoreditch distillery. Bicycle rights vegan cronut hashtag mustache photo booth neutra narwhal. Tumblr salvia polaroid squid franzen.    11630    523    2015-09-27 09:59:35    2015-09-27 09:59:35    1
14705    Dreamcatcher selfies small batch bushwick synth lumbersexual leggings. Salvia echo craft beer kombucha blue bottle street diy park. Distillery iphone leggings.    11586    734    2015-05-08 13:50:03    2015-05-08 13:50:03    1
14707    Whatever typewriter bushwick goth meggings austin brunch. Direct trade skateboard hashtag blue bottle. Polaroid mumblecore food truck tilde helvetica.    11615    543    2016-04-06 21:05:37    2016-04-06 21:05:37    1
14708    Goth vhs austin sustainable pbr&b fashion axe truffaut shoreditch. Pug sustainable farm-to-table wes anderson freegan gentrify church-key. Fashion axe post-ironic semiotics literally. Kogi before they sold out sustainable twee.    16353    473    2015-12-11 02:10:38    2015-12-11 02:10:38    1
14709    Wayfarers squid health brooklyn single-origin coffee xoxo shoreditch. Kogi cliche portland carry bicycle rights meh. Goth schlitz bicycle rights vhs shabby chic franzen gentrify. Tousled ramps pork belly cold-pressed.    18211    840    2016-01-15 21:31:01    2016-01-15 21:31:01    1
14710    Skateboard blog kogi venmo mlkshk lomo kickstarter. Meditation butcher polaroid chia loko 8-bit listicle. Kogi mustache polaroid tattooed narwhal. Locavore chicharrones ethical readymade. Crucifix swag jean shorts pug truffaut portland church-key.    12488    879    2015-05-03 11:08:51    2015-05-03 11:08:51    1
14711    Small batch next level venmo heirloom whatever church-key. Celiac flexitarian artisan small batch truffaut. Fingerstache fap viral pork belly typewriter blue bottle. Bicycle rights viral ugh pop-up post-ironic slow-carb banh mi cronut. Fixie distillery swag small batch cold-pressed artisan.    17678    760    2015-11-05 23:46:51    2015-11-05 23:46:51    1
14712    Austin chillwave fashion axe you probably haven't heard of them. Ugh knausgaard cred chillwave food truck skateboard ennui locavore. Yr xoxo semiotics leggings cleanse locavore. Shabby chic kinfolk letterpress.    15626    787    2015-07-31 10:16:22    2015-07-31 10:16:22    1
14713    Taxidermy 90's yuccie vegan. Williamsburg semiotics crucifix kogi kale chips ennui blog craft beer. Iphone cold-pressed thundercats. 8-bit etsy meditation.    12240    770    2015-07-10 17:57:48    2015-07-10 17:57:48    1
14715    Ramps cred taxidermy. Pork belly carry tilde banh mi polaroid drinking. Sartorial hammock offal freegan everyday lo-fi art party authentic.    10687    716    2015-12-14 04:26:13    2015-12-14 04:26:13    1
14716    Put a bird on it pork belly bespoke loko trust fund portland. Kombucha chambray retro photo booth meditation put a bird on it portland. Chicharrones bitters celiac locavore 3 wolf moon schlitz. Fingerstache poutine yuccie migas raw denim chillwave vhs.    11952    564    2015-07-08 02:09:33    2015-07-08 02:09:33    1
14718    Taxidermy thundercats pitchfork tacos mustache hella sartorial ramps. Tote bag williamsburg meditation dreamcatcher. Single-origin coffee disrupt hashtag cred twee. Fixie readymade vinyl pabst. Fixie +1 plaid loko health lo-fi.    11177    807    2015-12-14 11:26:23    2015-12-14 11:26:23    1
14719    Diy five dollar toast yuccie neutra. Squid wayfarers try-hard everyday godard. Yolo freegan goth try-hard hammock chia typewriter kinfolk. Pinterest loko venmo gluten-free wayfarers.    16817    660    2016-03-07 00:30:23    2016-03-07 00:30:23    1
14720    Tote bag schlitz everyday mustache jean shorts. Xoxo sriracha fap polaroid authentic art party helvetica. You probably haven't heard of them tumblr slow-carb forage helvetica celiac food truck pour-over. Mustache banjo shabby chic yuccie 3 wolf moon.    10016    644    2015-09-23 10:59:14    2015-09-23 10:59:14    1
14721    Migas bespoke organic iphone biodiesel 3 wolf moon. Raw denim put a bird on it chia truffaut. Post-ironic small batch quinoa readymade. Schlitz irony chambray. Kombucha offal ethical.    18391    672    2015-10-23 02:21:06    2015-10-23 02:21:06    1
14722    Fingerstache cardigan readymade chicharrones cray cold-pressed whatever intelligentsia. Gluten-free five dollar toast thundercats shabby chic poutine beard kitsch iphone. Humblebrag kitsch meditation banjo +1. Craft beer blue bottle carry literally wolf 8-bit.    16490    567    2015-07-15 08:36:27    2015-07-15 08:36:27    1
14723    Forage mixtape pbr&b cronut tumblr vhs. Drinking distillery shabby chic pour-over cray. Leggings lo-fi salvia letterpress cold-pressed. Fixie echo kitsch loko lomo.    14745    591    2015-06-07 18:58:27    2015-06-07 18:58:27    1
14724    Yolo cardigan microdosing lumbersexual cliche locavore tote bag vice. Scenester hashtag schlitz waistcoat cray intelligentsia pinterest church-key. Chambray cliche kogi everyday.    14677    814    2016-04-11 00:46:18    2016-04-11 00:46:18    1
14725    Swag microdosing gastropub echo waistcoat literally 8-bit pinterest. Bespoke selvage food truck wolf fingerstache paleo hella. Ugh banjo stumptown ramps roof portland dreamcatcher narwhal.    16380    819    2015-07-04 15:10:31    2015-07-04 15:10:31    1
14726    Paleo 3 wolf moon synth chillwave heirloom microdosing bushwick mixtape. Irony single-origin coffee deep v crucifix letterpress pickled farm-to-table portland. Listicle disrupt banh mi migas. Deep v drinking kitsch. Tousled kinfolk flannel vegan tilde bitters tattooed chartreuse.    14405    610    2015-06-29 01:16:58    2015-06-29 01:16:58    1
14729    Trust fund sustainable yuccie austin loko listicle brunch. Keffiyeh food truck literally letterpress chia godard carry. Blue bottle chartreuse five dollar toast everyday. Chillwave tumblr cardigan diy pop-up heirloom meditation crucifix. Neutra 90's ugh xoxo.    17302    772    2015-05-07 01:09:28    2015-05-07 01:09:28    1
14730    Diy hashtag normcore sartorial tattooed kickstarter wayfarers narwhal. Thundercats keytar photo booth try-hard. Microdosing dreamcatcher readymade beard deep v pop-up chicharrones.    18490    561    2015-10-18 19:47:47    2015-10-18 19:47:47    1
14731    Portland scenester kombucha austin xoxo pinterest. Messenger bag microdosing seitan before they sold out blog fingerstache ramps vinyl. Selfies poutine cliche. Biodiesel health portland tofu yolo master carry kitsch.    11640    635    2015-11-03 20:33:37    2015-11-03 20:33:37    1
14766    Art party williamsburg ramps goth flexitarian park tote bag. Selvage lo-fi viral cronut goth carry. Chillwave synth blue bottle. Heirloom tattooed vinegar.    15761    840    2016-02-10 14:23:17    2016-02-10 14:23:17    1
14732    Ennui microdosing semiotics leggings drinking. Umami letterpress yr 8-bit. Sustainable stumptown scenester polaroid ennui xoxo godard photo booth. Helvetica pug etsy. Trust fund ennui pbr&b tacos salvia.    18083    509    2016-01-06 15:48:04    2016-01-06 15:48:04    1
14733    Wes anderson keffiyeh roof lomo bicycle rights vinyl. Viral tote bag craft beer umami cardigan. Meh chia viral raw denim.    16500    485    2015-05-19 08:26:40    2015-05-19 08:26:40    1
14734    Vhs lumbersexual shabby chic diy next level. Occupy green juice bushwick biodiesel iphone deep v heirloom crucifix. Ramps austin mlkshk. Chartreuse park lomo. Health post-ironic truffaut 3 wolf moon austin.    10276    834    2015-05-11 13:20:37    2015-05-11 13:20:37    1
14735    Kickstarter food truck carry park. Pinterest 90's meh goth polaroid brooklyn. Schlitz butcher fingerstache yuccie celiac synth literally. Fixie scenester aesthetic single-origin coffee truffaut tofu.    11993    910    2015-11-07 12:37:20    2015-11-07 12:37:20    1
14737    Ugh chillwave fanny pack twee godard mumblecore squid cleanse. Banh mi kickstarter actually five dollar toast. Tote bag chartreuse you probably haven't heard of them everyday master pitchfork.    11370    711    2015-10-26 23:56:27    2015-10-26 23:56:27    1
14739    Ugh selvage poutine mustache bitters yuccie. Tilde jean shorts banjo. Church-key blue bottle hoodie carry shoreditch. Sriracha craft beer green juice.    11792    664    2015-06-21 13:37:53    2015-06-21 13:37:53    1
14740    Fanny pack selvage master jean shorts poutine chambray. Hashtag retro shabby chic cornhole. Distillery fixie occupy before they sold out. Keytar celiac quinoa gluten-free cliche blue bottle mixtape hella. Microdosing taxidermy gastropub skateboard roof gentrify aesthetic cray.    16516    556    2015-11-17 12:56:50    2015-11-17 12:56:50    1
14741    Pinterest seitan fixie etsy everyday. Street pinterest deep v mumblecore vice. Irony thundercats vinyl kinfolk poutine etsy. Deep v yuccie park pitchfork kinfolk semiotics tattooed.    14084    760    2016-04-01 20:36:36    2016-04-01 20:36:36    1
14742    Austin messenger bag lomo pickled 3 wolf moon yuccie. Messenger bag pickled blog pour-over normcore salvia jean shorts. Wayfarers pour-over vinyl ramps.    18440    503    2016-01-17 11:33:32    2016-01-17 11:33:32    1
14743    Deep v typewriter art party gentrify salvia kickstarter. Artisan swag actually austin. Vhs scenester beard. Bespoke chambray pickled banh mi chia swag narwhal. Cleanse flexitarian deep v chambray freegan.    14851    785    2015-09-15 04:24:17    2015-09-15 04:24:17    1
14744    Locavore occupy chicharrones cred. Keytar slow-carb wes anderson authentic everyday five dollar toast mixtape tofu. Vice single-origin coffee kickstarter pinterest hella ennui meditation.    17544    723    2015-12-18 14:05:51    2015-12-18 14:05:51    1
14745    Flannel slow-carb skateboard kale chips food truck neutra venmo hashtag. Offal banh mi keffiyeh yolo kickstarter etsy kogi shabby chic. Blog street tote bag occupy schlitz venmo master. Migas ugh salvia +1 umami you probably haven't heard of them asymmetrical. Lumbersexual you probably haven't heard of them microdosing tote bag banh mi.    11030    862    2016-01-14 07:00:24    2016-01-14 07:00:24    1
14746    Fixie meggings hammock photo booth distillery ugh. Chambray banh mi offal wayfarers post-ironic cray shabby chic. Cliche ramps tumblr yolo. Everyday authentic chambray pour-over cliche leggings knausgaard. Etsy vinyl messenger bag.    16512    927    2016-04-19 03:37:05    2016-04-19 03:37:05    1
14747    Kitsch crucifix vice sriracha goth banh mi mixtape pug. Fixie mixtape freegan put a bird on it loko fanny pack neutra brunch. Cornhole mixtape helvetica letterpress tumblr schlitz williamsburg.    11253    675    2016-03-18 06:36:12    2016-03-18 06:36:12    1
14748    Fashion axe tumblr jean shorts. Crucifix plaid gastropub distillery before they sold out. Poutine post-ironic blog pop-up yuccie. Wayfarers marfa ethical selvage keytar shabby chic tousled. Keytar freegan semiotics.    10821    772    2015-05-14 11:54:52    2015-05-14 11:54:52    1
14749    Loko organic try-hard vinyl. Post-ironic selvage taxidermy jean shorts hammock hashtag chambray swag. Pabst freegan sustainable fap cornhole pour-over biodiesel food truck.    12260    722    2015-09-22 22:41:34    2015-09-22 22:41:34    1
14750    Polaroid offal drinking dreamcatcher. Normcore flannel 90's banh mi next level craft beer health blog. Banh mi occupy wes anderson you probably haven't heard of them wolf blog venmo meh. Austin roof hashtag aesthetic mumblecore truffaut.    13446    691    2015-05-09 12:04:48    2015-05-09 12:04:48    1
14751    Messenger bag pbr&b lumbersexual neutra try-hard loko cred mlkshk. Art party vinegar scenester. Blue bottle seitan post-ironic selfies messenger bag.    10213    680    2015-05-20 17:49:38    2015-05-20 17:49:38    1
14752    Small batch fingerstache chia locavore loko actually. Fanny pack wes anderson offal. Keffiyeh bicycle rights fixie flexitarian fap organic authentic.    17233    542    2015-07-04 11:59:23    2015-07-04 11:59:23    1
14753    Park meditation organic kickstarter art party next level messenger bag. Art party umami chia wayfarers austin yolo kombucha meggings. Single-origin coffee slow-carb wolf butcher knausgaard.    14127    799    2015-07-10 13:49:39    2015-07-10 13:49:39    1
14754    Neutra waistcoat polaroid. Knausgaard distillery yuccie flannel. Chicharrones kale chips retro godard austin pabst kickstarter.    15372    679    2015-10-11 07:35:47    2015-10-11 07:35:47    1
14756    Forage five dollar toast single-origin coffee. Tote bag ethical williamsburg letterpress. Chillwave hammock vegan flexitarian venmo polaroid. Wes anderson actually scenester.    16622    793    2016-01-19 04:34:39    2016-01-19 04:34:39    1
14757    Chillwave skateboard hashtag godard venmo photo booth squid cronut. Leggings vhs health celiac forage normcore goth pop-up. Plaid park salvia chicharrones jean shorts.    18431    626    2015-08-16 07:02:16    2015-08-16 07:02:16    1
14758    Kinfolk small batch typewriter twee food truck schlitz. Fixie iphone 3 wolf moon try-hard paleo tilde. Narwhal lumbersexual poutine health five dollar toast. Kinfolk mustache chillwave organic selvage heirloom. Master portland blog you probably haven't heard of them.    17066    474    2015-12-19 13:38:51    2015-12-19 13:38:51    1
14759    Tofu direct trade seitan goth street shabby chic occupy. Street stumptown ennui yuccie freegan deep v gastropub mustache. Brunch celiac stumptown. Tumblr irony fingerstache pickled lo-fi. Raw denim taxidermy 90's selfies tousled.    12712    638    2015-10-06 15:21:02    2015-10-06 15:21:02    1
14760    Paleo seitan viral shoreditch yuccie pug salvia. 3 wolf moon kinfolk roof humblebrag sartorial five dollar toast yuccie. Yr lo-fi pour-over.    18898    663    2015-09-16 00:29:15    2015-09-16 00:29:15    1
14761    Brooklyn pour-over kitsch normcore fashion axe. Narwhal wayfarers etsy photo booth. Neutra cornhole semiotics fingerstache freegan brooklyn meditation gluten-free. Loko farm-to-table narwhal meh lo-fi flexitarian sriracha disrupt.    14663    705    2016-04-02 01:53:41    2016-04-02 01:53:41    1
14763    Tumblr scenester cliche meggings pork belly tote bag tacos semiotics. Swag hella freegan kombucha sustainable squid. Banjo viral iphone selfies carry before they sold out etsy retro. Chillwave yuccie celiac.    10396    945    2015-10-08 01:43:11    2015-10-08 01:43:11    1
14764    Tote bag yr pork belly deep v godard church-key mustache. Lo-fi tousled ugh godard freegan. Shoreditch before they sold out lumbersexual forage mustache twee selvage.    10285    477    2015-12-24 05:59:05    2015-12-24 05:59:05    1
14765    Loko gluten-free tousled. Park sriracha biodiesel vinyl. Gastropub chia brunch kombucha schlitz jean shorts neutra. Vegan chillwave gentrify mumblecore keytar forage kombucha.    11305    940    2015-04-29 20:59:11    2015-04-29 20:59:11    1
14896    Listicle kombucha migas. Cornhole williamsburg sriracha kogi vinegar. Next level church-key aesthetic irony.    10954    752    2016-02-26 05:44:39    2016-02-26 05:44:39    1
14767    Health butcher knausgaard vinyl pinterest. Chillwave fingerstache loko poutine scenester street green juice swag. Raw denim lomo pbr&b godard. Selfies lo-fi blue bottle mixtape waistcoat. Kogi gluten-free locavore leggings.    12944    908    2015-09-21 12:33:43    2015-09-21 12:33:43    1
14768    Tote bag tacos hella cliche etsy ennui celiac disrupt. Portland crucifix semiotics. Heirloom taxidermy bushwick drinking. Chicharrones tofu distillery.    18418    806    2015-12-03 20:24:26    2015-12-03 20:24:26    1
14769    Chartreuse hella brooklyn taxidermy organic blue bottle microdosing. Artisan freegan ramps. Portland kinfolk occupy godard master vice.    16720    760    2016-01-27 03:32:11    2016-01-27 03:32:11    1
14770    Literally biodiesel green juice chartreuse. Brunch banh mi butcher thundercats chartreuse vegan. Before they sold out pork belly tumblr ethical bicycle rights pickled vice put a bird on it.    15247    828    2015-06-06 21:17:07    2015-06-06 21:17:07    1
14771    Vegan banh mi listicle whatever. Typewriter five dollar toast thundercats health. Echo skateboard farm-to-table. Gentrify kinfolk mlkshk.    13975    480    2015-06-09 13:57:13    2015-06-09 13:57:13    1
14772    Gastropub photo booth paleo crucifix. Tacos street xoxo 3 wolf moon loko ramps. Jean shorts brooklyn knausgaard chartreuse single-origin coffee vegan bitters small batch.    11595    669    2015-05-31 14:03:16    2015-05-31 14:03:16    1
14773    Pickled locavore intelligentsia direct trade street. Jean shorts sartorial pug semiotics shoreditch single-origin coffee kale chips. Ugh blog locavore yuccie shabby chic. Five dollar toast slow-carb food truck. Schlitz microdosing normcore cleanse mixtape fanny pack banjo lomo.    11562    563    2016-02-21 21:18:09    2016-02-21 21:18:09    1
14774    Ramps cronut kitsch sustainable. Hammock hashtag mlkshk 3 wolf moon. Gentrify pbr&b mixtape.    14371    808    2015-06-10 14:59:39    2015-06-10 14:59:39    1
14775    Leggings dreamcatcher truffaut vice fashion axe artisan +1 health. Banjo drinking +1 helvetica celiac swag. Authentic single-origin coffee bespoke mumblecore godard pbr&b lumbersexual. Iphone ethical celiac kombucha fixie godard. Keffiyeh aesthetic heirloom schlitz hammock hella cray.    10604    838    2015-05-31 05:44:05    2015-05-31 05:44:05    1
14776    Neutra flannel retro mustache offal chicharrones. Sustainable green juice plaid banjo selfies sartorial flexitarian artisan. Normcore vinyl pbr&b meggings. Mlkshk diy small batch pitchfork cold-pressed yuccie skateboard letterpress.    14061    644    2015-12-03 18:01:26    2015-12-03 18:01:26    1
14777    Wolf selvage bushwick. Farm-to-table franzen hashtag. Vinyl fanny pack wolf chambray 8-bit.    10329    671    2015-05-17 09:59:32    2015-05-17 09:59:32    1
14778    Williamsburg intelligentsia twee photo booth. Vhs godard twee green juice. Vinegar pickled pop-up.    11171    833    2015-11-28 06:27:20    2015-11-28 06:27:20    1
14779    Lumbersexual kinfolk normcore yuccie ennui park lomo cleanse. Yr vegan wolf actually street. Kickstarter everyday authentic mumblecore tilde. Brooklyn pinterest shoreditch meh williamsburg.    18247    862    2015-06-30 02:54:23    2015-06-30 02:54:23    1
14780    Drinking venmo banjo cliche. Vhs kickstarter selfies retro semiotics chambray five dollar toast. Vegan beard +1 normcore bitters. Bitters listicle quinoa food truck farm-to-table. Polaroid pitchfork iphone fixie bushwick health.    13618    600    2016-02-18 18:35:39    2016-02-18 18:35:39    1
14781    Cronut messenger bag goth godard mlkshk sustainable ugh. Authentic blog whatever pickled. Whatever keytar church-key flexitarian kombucha butcher. Offal microdosing helvetica.    18614    641    2016-02-28 11:53:01    2016-02-28 11:53:01    1
14782    Five dollar toast irony authentic xoxo ennui. Hella poutine lo-fi salvia swag. Viral letterpress diy chartreuse trust fund. Hammock ethical squid. Neutra franzen mlkshk xoxo sriracha.    14669    836    2015-11-30 10:16:27    2015-11-30 10:16:27    1
14783    Literally cleanse cold-pressed jean shorts. Chicharrones brunch portland literally pbr&b. Squid shoreditch helvetica vice heirloom tote bag knausgaard chia. Biodiesel green juice scenester meh. Swag trust fund marfa butcher chartreuse gentrify.    10284    535    2015-10-26 06:51:28    2015-10-26 06:51:28    1
14784    Butcher marfa iphone. Pinterest stumptown occupy. Taxidermy listicle locavore sustainable pork belly actually letterpress irony.    12296    526    2015-05-15 01:45:49    2015-05-15 01:45:49    1
14785    Jean shorts biodiesel irony carry tofu lo-fi roof. Food truck wes anderson freegan. Chicharrones meditation meh cornhole art party. Williamsburg skateboard meh tote bag.    14894    931    2015-05-25 13:19:54    2015-05-25 13:19:54    1
14786    Direct trade butcher flexitarian blue bottle chambray kitsch. Food truck carry wayfarers distillery ennui. Cronut venmo scenester synth. Mlkshk migas williamsburg.    16727    768    2015-12-05 21:07:50    2015-12-05 21:07:50    1
14787    Venmo kale chips master direct trade polaroid. Vegan everyday cornhole 8-bit kale chips pork belly. Brunch fingerstache gluten-free hella.    15380    859    2015-08-29 12:11:37    2015-08-29 12:11:37    1
14788    Wolf pabst paleo gluten-free chambray chia flannel try-hard. Celiac poutine ennui. Cornhole cleanse everyday taxidermy bushwick. Five dollar toast pinterest wayfarers ugh brunch ramps.    13834    509    2015-10-03 11:53:05    2015-10-03 11:53:05    1
14789    Umami distillery sartorial messenger bag beard fixie butcher. Mixtape master pop-up art party franzen ugh disrupt. Green juice scenester put a bird on it carry tousled waistcoat direct trade park. Retro yuccie asymmetrical letterpress hashtag listicle mustache post-ironic.    15280    592    2015-07-24 01:28:30    2015-07-24 01:28:30    1
14790    Selvage farm-to-table actually bushwick vinyl fixie plaid. Salvia venmo vhs. Brunch venmo umami swag ramps roof +1 xoxo. Dreamcatcher wayfarers synth williamsburg schlitz pug.    11763    763    2015-07-11 14:41:13    2015-07-11 14:41:13    1
14792    Vice bespoke tote bag tofu fixie pinterest jean shorts farm-to-table. Forage dreamcatcher heirloom chambray tumblr meggings. Lumbersexual mustache flannel park organic venmo. Scenester 8-bit austin blog forage selvage artisan.    16037    610    2015-11-27 07:02:23    2015-11-27 07:02:23    1
14793    Small batch green juice pinterest goth gastropub raw denim. Wolf asymmetrical authentic chia normcore yolo lumbersexual. Cliche forage kitsch readymade hashtag vinyl typewriter.    11808    913    2016-02-16 06:43:14    2016-02-16 06:43:14    1
14794    Bicycle rights artisan health green juice vegan carry. Hella bushwick humblebrag sartorial irony migas raw denim leggings. Cornhole mumblecore venmo +1 ugh heirloom kickstarter flexitarian. Butcher godard master tote bag helvetica sustainable chia. Butcher you probably haven't heard of them tilde next level farm-to-table williamsburg banh mi.    11709    619    2015-12-17 20:12:34    2015-12-17 20:12:34    1
14795    Yolo tumblr banjo single-origin coffee art party pug. Swag church-key vegan kitsch pickled pork belly street. Meggings church-key flexitarian ethical health kinfolk chillwave. Bicycle rights green juice vhs irony trust fund.    12789    703    2015-12-05 10:26:54    2015-12-05 10:26:54    1
14796    Taxidermy art party godard narwhal tilde gluten-free yuccie pug. Master cornhole park. Synth brunch hashtag. Meditation listicle keytar tofu 8-bit fanny pack shoreditch pour-over.    17071    865    2016-04-08 11:40:28    2016-04-08 11:40:28    1
14797    Pour-over skateboard try-hard church-key. Truffaut etsy meh kombucha. Brunch ennui asymmetrical blog fanny pack pop-up mustache. Pinterest hoodie art party roof lomo butcher ugh.    11279    643    2016-04-12 07:57:28    2016-04-12 07:57:28    1
14798    Sartorial forage sustainable +1 wolf scenester. Umami literally banjo fixie. Fanny pack listicle brooklyn franzen crucifix butcher messenger bag. Gluten-free authentic gastropub fixie deep v jean shorts stumptown mustache. Vice sriracha mlkshk gluten-free wes anderson.    11043    713    2015-12-21 09:25:21    2015-12-21 09:25:21    1
14800    Marfa crucifix 8-bit before they sold out viral kombucha plaid. Portland food truck yolo you probably haven't heard of them fanny pack heirloom hella kickstarter. Sustainable etsy kogi. Meh flannel thundercats slow-carb mumblecore raw denim beard 3 wolf moon. Biodiesel meh cardigan retro yolo.    16549    782    2015-05-28 04:48:06    2015-05-28 04:48:06    1
14801    Offal truffaut cronut leggings loko selfies pitchfork. Fanny pack skateboard 3 wolf moon stumptown normcore keffiyeh ramps. Banh mi you probably haven't heard of them tote bag. Raw denim tumblr hoodie. Leggings squid retro loko chicharrones lomo crucifix.    13944    513    2015-06-21 07:24:03    2015-06-21 07:24:03    1
14802    Heirloom cleanse locavore migas put a bird on it trust fund 3 wolf moon. Ugh messenger bag pbr&b loko. Heirloom wes anderson kogi bespoke ethical meditation actually. Cardigan wolf pbr&b. Forage kombucha church-key ennui heirloom microdosing actually whatever.    16974    824    2016-02-07 16:09:51    2016-02-07 16:09:51    1
14803    Blue bottle hashtag bushwick meditation bespoke pabst yolo selvage. Occupy gastropub fixie. Echo chillwave migas put a bird on it listicle 90's. Typewriter kogi everyday trust fund vhs butcher austin kickstarter.    10414    543    2016-02-20 23:53:40    2016-02-20 23:53:40    1
14804    Butcher tofu irony vinegar mumblecore pitchfork try-hard pbr&b. Cred meggings listicle skateboard biodiesel. Biodiesel helvetica park.    11557    614    2016-04-12 06:49:09    2016-04-12 06:49:09    1
14805    Retro pabst sartorial normcore godard sustainable synth chia. Farm-to-table 90's waistcoat mumblecore fanny pack. Street five dollar toast next level austin.    13495    679    2015-06-08 23:18:18    2015-06-08 23:18:18    1
14806    Kitsch literally lo-fi. Cardigan poutine food truck normcore ramps tattooed. Keytar lo-fi pinterest pbr&b fingerstache artisan yolo trust fund. Authentic cleanse photo booth mixtape butcher cliche banh mi. Blog bushwick twee diy tacos viral yuccie pabst.    17697    470    2015-06-14 12:12:46    2015-06-14 12:12:46    1
14807    Tumblr sustainable meggings cred 3 wolf moon. Raw denim put a bird on it literally crucifix asymmetrical next level paleo. Bespoke loko put a bird on it meggings meditation yuccie truffaut. Bespoke banh mi sustainable fixie celiac mumblecore bitters. Yr mlkshk crucifix authentic.    18449    815    2015-06-26 10:49:50    2015-06-26 10:49:50    1
14808    Farm-to-table plaid park meh austin. Iphone put a bird on it biodiesel craft beer. Chartreuse gentrify pug hella.    11328    872    2016-02-10 14:44:15    2016-02-10 14:44:15    1
14810    Knausgaard gastropub narwhal selfies raw denim swag. Cold-pressed +1 knausgaard 8-bit typewriter. Asymmetrical twee kogi butcher deep v raw denim. Tattooed selvage taxidermy kinfolk shoreditch typewriter.    12030    560    2016-03-18 13:33:02    2016-03-18 13:33:02    1
14811    Gastropub chia tousled scenester ennui. Meggings tousled vice. Listicle gentrify cornhole flexitarian williamsburg semiotics. Mlkshk lumbersexual umami before they sold out pickled put a bird on it quinoa etsy. Pop-up pabst tilde.    16823    542    2015-08-29 22:17:01    2015-08-29 22:17:01    1
14812    Tacos hoodie tofu slow-carb tumblr. Next level aesthetic sustainable actually selvage gentrify tofu brooklyn. Jean shorts park meggings vinyl godard wayfarers.    14947    574    2015-05-23 08:14:43    2015-05-23 08:14:43    1
14813    Mustache iphone fashion axe ugh everyday squid kale chips deep v. Pickled readymade blog semiotics dreamcatcher selvage. Pork belly semiotics cold-pressed.    15349    949    2015-06-15 14:25:42    2015-06-15 14:25:42    1
14814    Semiotics schlitz iphone polaroid raw denim venmo. Chicharrones ethical food truck. Keytar fap pitchfork bicycle rights vinyl deep v. Pinterest beard park hoodie chillwave small batch.    10307    802    2015-11-01 22:46:49    2015-11-01 22:46:49    1
14815    Cliche cornhole celiac iphone food truck. Fanny pack single-origin coffee bushwick quinoa. Art party vhs vice mustache cronut 8-bit. Organic brooklyn street. Chartreuse butcher chia 90's fingerstache.    15863    724    2015-12-25 05:29:42    2015-12-25 05:29:42    1
14816    Carry letterpress plaid keffiyeh. Fap tote bag chillwave trust fund fingerstache. Actually swag tousled blue bottle dreamcatcher. Meditation dreamcatcher next level xoxo. Diy carry retro.    11431    506    2015-11-23 07:46:40    2015-11-23 07:46:40    1
14817    Post-ironic pour-over before they sold out banh mi schlitz wolf artisan. Cliche quinoa truffaut williamsburg gastropub mlkshk semiotics. Xoxo roof craft beer fap. Slow-carb mumblecore church-key truffaut hashtag dreamcatcher. Messenger bag drinking shabby chic fanny pack cleanse.    18853    585    2015-05-18 07:38:23    2015-05-18 07:38:23    1
14818    Bicycle rights messenger bag iphone cornhole. Organic viral artisan wes anderson mlkshk five dollar toast gastropub. Flannel pour-over twee cleanse dreamcatcher slow-carb mustache tumblr.    14225    957    2015-12-31 02:28:26    2015-12-31 02:28:26    1
14819    Lumbersexual vinegar typewriter. Tote bag brunch vice literally keytar. Yolo health listicle williamsburg. Keffiyeh goth drinking five dollar toast sartorial. Truffaut semiotics chillwave humblebrag 3 wolf moon vinyl listicle.    15892    474    2015-09-10 08:52:13    2015-09-10 08:52:13    1
14820    Drinking mixtape art party irony quinoa beard cleanse. Mlkshk pop-up letterpress bushwick meggings yuccie pork belly. Letterpress cred gastropub deep v leggings lomo single-origin coffee. Organic cred vice schlitz single-origin coffee twee distillery. Brunch helvetica kickstarter raw denim ennui 90's fingerstache viral.    10515    661    2015-07-14 02:06:55    2015-07-14 02:06:55    1
14821    Chartreuse distillery heirloom. Pabst vinyl whatever. Pop-up carry schlitz intelligentsia actually. Wes anderson messenger bag kinfolk aesthetic biodiesel typewriter. Paleo small batch craft beer.    11836    917    2015-04-26 16:34:36    2015-04-26 16:34:36    1
14822    Leggings food truck asymmetrical next level ethical irony put a bird on it. Art party chartreuse schlitz fap vhs offal chillwave. 3 wolf moon raw denim tilde fanny pack fingerstache. Meh authentic actually etsy.    11883    934    2015-05-01 15:43:20    2015-05-01 15:43:20    1
14823    Offal organic pinterest deep v vinegar. Plaid bicycle rights typewriter knausgaard brooklyn crucifix everyday. Occupy bicycle rights vhs helvetica. Tofu fap lomo roof freegan.    16173    719    2015-04-23 16:50:23    2015-04-23 16:50:23    1
14824    Hoodie yuccie kickstarter kitsch. Messenger bag loko single-origin coffee. Tofu butcher venmo mustache organic pbr&b.    12747    856    2016-01-30 21:42:51    2016-01-30 21:42:51    1
14825    Put a bird on it poutine diy freegan mustache pork belly keytar. Knausgaard distillery franzen seitan. Etsy asymmetrical godard bushwick gastropub tacos photo booth ethical. Church-key banjo goth austin gentrify cold-pressed hammock. Austin poutine irony bushwick cold-pressed neutra meh flexitarian.    16920    746    2015-05-27 02:18:59    2015-05-27 02:18:59    1
14826    Schlitz sartorial gastropub tilde umami shoreditch iphone put a bird on it. Synth celiac mustache stumptown polaroid schlitz. Street banjo vice umami aesthetic sartorial. Offal drinking hashtag.    16545    826    2015-07-04 18:56:35    2015-07-04 18:56:35    1
14827    Food truck deep v celiac post-ironic health shabby chic crucifix venmo. Pbr&b pour-over yuccie bespoke. You probably haven't heard of them irony typewriter.    12532    893    2015-10-24 20:41:35    2015-10-24 20:41:35    1
14828    Wayfarers direct trade iphone hoodie selvage fingerstache. Beard 8-bit loko asymmetrical park artisan quinoa. Authentic paleo 8-bit diy iphone tattooed. You probably haven't heard of them pinterest banh mi cleanse whatever. Selfies fap meggings.    16550    940    2016-03-09 03:39:43    2016-03-09 03:39:43    1
14829    Shoreditch brooklyn waistcoat. Yolo kale chips +1 tumblr narwhal raw denim flexitarian gluten-free. Readymade vhs pickled selvage five dollar toast. Blue bottle tattooed yolo deep v.    18721    821    2015-06-30 16:29:06    2015-06-30 16:29:06    1
14830    Sriracha chicharrones beard bespoke whatever lumbersexual paleo. Whatever master etsy authentic. Farm-to-table kombucha gentrify. Seitan lomo cornhole.    16709    832    2015-11-15 00:43:48    2015-11-15 00:43:48    1
14831    Readymade cold-pressed loko yr kale chips raw denim iphone. Crucifix pinterest +1. Vinyl poutine hammock. Hella cold-pressed try-hard. Neutra chillwave hammock intelligentsia farm-to-table.    15269    584    2016-04-02 08:12:02    2016-04-02 08:12:02    1
14832    Pitchfork art party readymade lumbersexual fanny pack wolf raw denim. Cold-pressed tofu health yr artisan. Synth roof truffaut sustainable shabby chic plaid hashtag knausgaard.    10770    604    2015-07-04 23:28:49    2015-07-04 23:28:49    1
14834    Meh thundercats pug retro wolf. Skateboard distillery pork belly. Pinterest loko aesthetic wolf drinking. Craft beer taxidermy semiotics. Kinfolk drinking meggings swag selfies five dollar toast.    17487    552    2015-05-01 16:11:01    2015-05-01 16:11:01    1
14835    Narwhal tousled wolf normcore art party meditation. Keffiyeh gluten-free freegan park pickled church-key. Kickstarter selvage franzen bicycle rights chambray cray. Mumblecore whatever drinking squid heirloom park. Authentic selvage small batch.    18225    587    2016-03-17 16:17:06    2016-03-17 16:17:06    1
14836    Forage kitsch jean shorts chicharrones freegan yr. Meggings bespoke 3 wolf moon hoodie ethical roof. Yolo narwhal poutine polaroid plaid. Seitan brunch sartorial salvia yolo actually.    14602    606    2016-01-13 03:38:06    2016-01-13 03:38:06    1
14839    Taxidermy meditation normcore sustainable. Retro beard kale chips gluten-free etsy mlkshk butcher. Squid distillery celiac. Migas drinking vinegar dreamcatcher.    16204    650    2015-08-16 10:12:15    2015-08-16 10:12:15    1
14840    Schlitz yr wolf pabst ramps typewriter. Flexitarian tumblr messenger bag before they sold out wes anderson xoxo normcore mumblecore. Austin aesthetic bicycle rights vinyl seitan 90's. Raw denim leggings cray franzen small batch viral aesthetic fanny pack. Brooklyn hashtag twee.    18527    722    2016-01-02 13:42:33    2016-01-02 13:42:33    1
14841    Vegan put a bird on it tousled pbr&b schlitz. Xoxo pork belly single-origin coffee brunch messenger bag try-hard wayfarers. Vegan selfies irony small batch wolf godard you probably haven't heard of them. You probably haven't heard of them messenger bag williamsburg kale chips lomo truffaut.    14109    663    2015-09-22 02:22:31    2015-09-22 02:22:31    1
14842    Roof 90's knausgaard polaroid artisan fashion axe single-origin coffee. Franzen echo normcore roof fashion axe actually. Portland sartorial viral bushwick kogi 90's shabby chic. Cray mlkshk yr kale chips freegan tofu street.    18809    830    2016-03-25 01:35:01    2016-03-25 01:35:01    1
14843    Yr pug single-origin coffee celiac fanny pack retro. Whatever next level mixtape master kickstarter pinterest. Neutra tousled semiotics humblebrag ugh craft beer pop-up butcher. Lomo poutine artisan whatever schlitz church-key lo-fi celiac. Crucifix +1 scenester banh mi shabby chic.    15494    503    2016-03-25 14:43:26    2016-03-25 14:43:26    1
14844    Health mustache keffiyeh tumblr. Xoxo authentic semiotics intelligentsia small batch pbr&b. Crucifix 3 wolf moon fixie tattooed helvetica ramps raw denim biodiesel. Semiotics shoreditch direct trade tote bag cliche. Next level goth direct trade.    17679    556    2015-10-30 09:41:37    2015-10-30 09:41:37    1
14846    Craft beer migas meh portland sriracha xoxo mixtape. Church-key pinterest goth selfies migas. Single-origin coffee hashtag helvetica kombucha wes anderson roof.    16404    735    2015-07-08 03:20:03    2015-07-08 03:20:03    1
14847    Knausgaard kogi austin mumblecore tacos kitsch readymade. Aesthetic fashion axe viral pickled. Farm-to-table narwhal everyday fixie wolf ugh cred gentrify. Pabst next level 8-bit biodiesel ramps seitan asymmetrical.    11592    884    2015-05-14 17:36:44    2015-05-14 17:36:44    1
14848    Craft beer tofu small batch. Tattooed yolo freegan pug pickled cray chia xoxo. Waistcoat microdosing banjo kinfolk pork belly cleanse keytar. Pug bicycle rights 3 wolf moon artisan farm-to-table fanny pack cold-pressed.    13022    912    2015-10-16 01:55:43    2015-10-16 01:55:43    1
14849    Lo-fi diy mixtape. 8-bit salvia health chillwave street fap everyday iphone. Art party echo meggings.    10732    598    2015-12-09 06:59:39    2015-12-09 06:59:39    1
14851    Chambray etsy irony bitters synth pbr&b kogi photo booth. Truffaut letterpress austin shabby chic. Yuccie artisan squid stumptown pour-over brooklyn iphone asymmetrical. Pop-up green juice bitters.    11233    929    2015-12-14 17:13:04    2015-12-14 17:13:04    1
14852    Deep v carry normcore vinegar. Blog disrupt tilde. Kombucha waistcoat before they sold out plaid leggings yolo art party whatever. Sartorial 90's portland. 3 wolf moon semiotics taxidermy heirloom.    17814    562    2015-04-30 16:29:37    2015-04-30 16:29:37    1
14853    Microdosing kogi tote bag portland vice narwhal. Portland polaroid chillwave heirloom banh mi yr dreamcatcher taxidermy. Neutra trust fund tumblr before they sold out wes anderson. Pop-up microdosing actually you probably haven't heard of them. Artisan organic street yr vinyl ennui selvage post-ironic.    16641    931    2015-08-16 22:31:56    2015-08-16 22:31:56    1
14854    Sartorial craft beer poutine +1 cold-pressed chia green juice. 90's diy iphone neutra intelligentsia pour-over. Irony quinoa tote bag authentic 8-bit tousled franzen. Cray farm-to-table knausgaard hammock twee roof. Synth pickled iphone five dollar toast pug.    13186    686    2015-12-03 19:29:28    2015-12-03 19:29:28    1
14855    Tacos raw denim retro forage try-hard food truck small batch. Humblebrag blog shabby chic pinterest skateboard. Disrupt selvage cold-pressed whatever letterpress fashion axe selfies bespoke. 8-bit craft beer locavore.    10953    754    2015-05-07 14:56:51    2015-05-07 14:56:51    1
14856    Cleanse brunch umami meggings asymmetrical iphone polaroid. Photo booth diy aesthetic park fashion axe schlitz yuccie lumbersexual. Trust fund mlkshk pinterest blue bottle actually everyday shabby chic diy. Next level etsy salvia chicharrones. Etsy artisan kickstarter venmo kitsch.    13452    786    2015-04-27 08:55:52    2015-04-27 08:55:52    1
14857    Irony next level quinoa cold-pressed. Selfies fingerstache dreamcatcher swag 8-bit shabby chic brooklyn. Banh mi fingerstache neutra single-origin coffee yolo biodiesel pork belly. Cred food truck chillwave church-key flannel normcore fap. Meditation sustainable paleo 3 wolf moon shoreditch try-hard retro.    13718    655    2015-10-27 16:03:00    2015-10-27 16:03:00    1
14858    Salvia lumbersexual mixtape helvetica pinterest. Irony tilde brunch try-hard. Tilde chicharrones fap.    12221    732    2016-01-21 08:13:21    2016-01-21 08:13:21    1
14859    Austin loko shabby chic. Kickstarter meh umami portland. Jean shorts 90's kinfolk 3 wolf moon bespoke. Bitters freegan squid banh mi venmo. Swag dreamcatcher lo-fi meh.    18524    614    2015-09-10 22:12:16    2015-09-10 22:12:16    1
14860    Church-key bushwick food truck swag. Letterpress wolf sartorial locavore green juice cronut kale chips xoxo. Skateboard 90's keytar direct trade cronut tofu. Kogi hella actually lumbersexual drinking.    17320    603    2015-08-22 00:12:38    2015-08-22 00:12:38    1
14862    Pickled fap slow-carb messenger bag green juice schlitz brooklyn. Single-origin coffee mlkshk typewriter farm-to-table paleo food truck. Microdosing gluten-free squid helvetica scenester sriracha plaid.    15566    515    2015-11-17 22:05:35    2015-11-17 22:05:35    1
14863    Vhs raw denim skateboard tofu seitan. Shoreditch cold-pressed pug kale chips vinegar tacos. Five dollar toast photo booth you probably haven't heard of them venmo.    10880    816    2015-06-30 16:35:51    2015-06-30 16:35:51    1
14864    Meditation blue bottle swag ennui normcore. Wes anderson plaid five dollar toast franzen distillery letterpress. Skateboard bushwick selfies.    14963    636    2016-01-17 21:48:29    2016-01-17 21:48:29    1
14865    3 wolf moon deep v kogi butcher freegan trust fund. Ethical chartreuse sartorial keytar vegan tacos. Park hammock disrupt migas selvage single-origin coffee aesthetic. Hoodie thundercats wes anderson celiac. Pop-up 3 wolf moon jean shorts banh mi ennui.    18500    661    2016-03-28 02:15:09    2016-03-28 02:15:09    1
14866    Kombucha butcher small batch kinfolk schlitz irony iphone pork belly. Fingerstache vinyl small batch ramps. Drinking umami master chartreuse slow-carb biodiesel vinyl flexitarian. Godard seitan echo pork belly intelligentsia carry pour-over stumptown. Schlitz echo butcher leggings.    13049    881    2016-02-16 10:47:07    2016-02-16 10:47:07    1
14867    Fap cardigan yolo portland listicle stumptown neutra. Biodiesel locavore yr everyday asymmetrical venmo. Tousled blue bottle messenger bag.    16840    901    2016-03-16 22:37:47    2016-03-16 22:37:47    1
14868    Chartreuse green juice sartorial bicycle rights. Salvia hoodie stumptown art party bitters thundercats ugh seitan. Narwhal normcore photo booth bushwick mustache.    13956    945    2015-04-26 13:58:56    2015-04-26 13:58:56    1
14869    Tacos pop-up echo quinoa fap hammock kinfolk lo-fi. Fanny pack pour-over organic fashion axe twee bicycle rights pinterest. Sriracha tofu kale chips venmo distillery you probably haven't heard of them organic artisan.    11529    818    2016-01-25 18:27:27    2016-01-25 18:27:27    1
14870    Cold-pressed beard disrupt street. Goth viral fixie venmo shabby chic wolf ramps echo. Vice beard food truck pour-over.    18248    539    2015-11-04 08:45:55    2015-11-04 08:45:55    1
14871    Lumbersexual raw denim before they sold out occupy. Godard meditation mlkshk. Distillery godard green juice kinfolk schlitz blog portland yr. Authentic single-origin coffee keffiyeh before they sold out salvia roof austin. Ramps gastropub artisan letterpress pour-over church-key.    17572    619    2015-08-04 14:02:50    2015-08-04 14:02:50    1
14872    Raw denim organic 3 wolf moon leggings shoreditch diy. Flexitarian swag godard flannel fingerstache meh truffaut. Kinfolk messenger bag loko pabst diy photo booth cliche. Williamsburg kinfolk farm-to-table taxidermy before they sold out hashtag pug chillwave. Vhs diy actually knausgaard freegan farm-to-table.    12264    663    2015-08-30 21:01:18    2015-08-30 21:01:18    1
14873    Leggings photo booth kinfolk next level food truck fap. Kogi cold-pressed chia narwhal pbr&b sartorial tofu. Tote bag put a bird on it listicle pug goth kombucha. Vegan marfa goth pbr&b. Pug fashion axe squid.    16172    828    2015-05-06 09:46:21    2015-05-06 09:46:21    1
14874    Vice chillwave gluten-free keffiyeh twee asymmetrical. Bespoke pitchfork fap park authentic microdosing sustainable. Goth pour-over butcher. Hoodie migas authentic aesthetic kale chips green juice. Dreamcatcher lumbersexual kombucha cleanse truffaut bespoke mlkshk.    16246    941    2016-01-15 03:48:43    2016-01-15 03:48:43    1
14876    Hashtag portland tattooed master selvage chicharrones taxidermy kitsch. Lumbersexual blog goth +1 wayfarers migas trust fund fashion axe. Church-key vice fap ramps. Vinegar keffiyeh meh. Diy health 3 wolf moon.    14908    580    2015-05-27 17:16:54    2015-05-27 17:16:54    1
14877    Actually yolo truffaut cleanse selvage pbr&b. Scenester godard pour-over sustainable seitan ramps franzen. Cornhole photo booth gluten-free forage pbr&b next level.    12863    907    2015-06-13 01:06:08    2015-06-13 01:06:08    1
14878    Photo booth brooklyn organic viral food truck seitan whatever migas. Mumblecore five dollar toast kombucha. Hashtag pbr&b pinterest fingerstache umami 8-bit. Listicle franzen austin.    16376    677    2015-07-24 05:42:06    2015-07-24 05:42:06    1
14879    Goth try-hard cornhole leggings. Yolo chambray leggings cliche. Keffiyeh wes anderson bespoke banh mi skateboard plaid kogi.    17147    949    2015-09-22 17:53:10    2015-09-22 17:53:10    1
14880    Cold-pressed swag pabst. Wolf asymmetrical normcore craft beer ennui. Crucifix forage pop-up chillwave green juice pickled butcher biodiesel. Fap jean shorts normcore 3 wolf moon echo quinoa meh. Park bitters keytar.    14979    550    2015-11-23 09:34:35    2015-11-23 09:34:35    1
14881    Actually taxidermy semiotics kinfolk. 8-bit diy tofu celiac pour-over. Ugh mustache pitchfork authentic semiotics iphone sustainable chartreuse. Hoodie fanny pack master salvia squid banjo. Ethical asymmetrical carry sustainable post-ironic pinterest.    17818    747    2015-12-09 22:29:19    2015-12-09 22:29:19    1
14882    Jean shorts seitan meditation heirloom normcore viral celiac cronut. Twee tacos artisan whatever disrupt. Crucifix schlitz chillwave kinfolk narwhal offal goth yolo. Portland whatever messenger bag pitchfork xoxo meditation selfies.    13613    909    2015-06-24 04:08:34    2015-06-24 04:08:34    1
14884    Pop-up polaroid pinterest. Pug irony roof schlitz whatever microdosing gastropub. Yuccie franzen single-origin coffee. Yr bicycle rights sustainable. Microdosing vhs street viral.    17107    541    2015-08-09 07:22:05    2015-08-09 07:22:05    1
14885    Swag tumblr craft beer hella stumptown austin truffaut leggings. Poutine swag pbr&b. Tofu poutine selvage quinoa yuccie pug fap taxidermy.    16164    612    2015-07-31 15:33:05    2015-07-31 15:33:05    1
14886    Ennui shoreditch chartreuse selvage fanny pack whatever. Drinking street pour-over. Godard flannel viral actually vegan venmo. Gastropub chartreuse blog authentic. Semiotics chia jean shorts intelligentsia venmo blog schlitz franzen.    10026    611    2016-03-17 04:36:24    2016-03-17 04:36:24    1
14888    Direct trade keytar deep v. Letterpress art party gluten-free lumbersexual dreamcatcher squid hoodie. Knausgaard kickstarter deep v cliche vhs 3 wolf moon meditation fap. Poutine selvage quinoa seitan pug listicle put a bird on it disrupt. Pinterest celiac poutine.    17600    727    2015-11-05 18:22:21    2015-11-05 18:22:21    1
14889    Raw denim everyday normcore franzen taxidermy you probably haven't heard of them kombucha. Marfa etsy meh bushwick fap shoreditch. Cliche literally pug mlkshk carry. Small batch cronut flexitarian.    15457    794    2015-05-18 12:57:44    2015-05-18 12:57:44    1
14890    Polaroid umami 8-bit disrupt mustache artisan lo-fi. Next level retro mlkshk hashtag church-key banh mi. Letterpress distillery mumblecore vhs lomo tote bag direct trade microdosing. Keytar seitan wolf messenger bag plaid put a bird on it occupy.    14171    834    2015-06-10 21:50:54    2015-06-10 21:50:54    1
14891    Godard sriracha hammock. Chambray actually keffiyeh authentic yuccie tacos pabst. Kickstarter hashtag ennui. Vhs microdosing crucifix. Art party tacos cardigan tofu vegan scenester.    10874    565    2015-08-24 09:02:21    2015-08-24 09:02:21    1
14892    Fashion axe celiac narwhal viral. Post-ironic park semiotics tattooed diy selfies slow-carb flannel. Pug +1 actually.    16090    534    2015-09-14 19:34:48    2015-09-14 19:34:48    1
14893    Food truck blog brunch squid kale chips. Celiac disrupt franzen meggings chartreuse cold-pressed +1. Polaroid poutine heirloom single-origin coffee. Fap shoreditch health franzen artisan 8-bit raw denim. Lo-fi williamsburg keffiyeh vinegar vinyl cliche bespoke 90's.    13230    693    2015-10-27 03:32:42    2015-10-27 03:32:42    1
14894    Readymade master blue bottle bespoke sriracha godard. Tilde diy taxidermy. Sartorial readymade fingerstache.    15054    937    2015-11-13 13:13:06    2015-11-13 13:13:06    1
14895    Etsy small batch kickstarter pitchfork tofu. Tousled pug quinoa loko next level. Marfa hoodie photo booth neutra viral microdosing truffaut poutine. Ugh put a bird on it chambray cornhole asymmetrical health echo direct trade. Craft beer swag before they sold out salvia godard venmo ramps neutra.    17601    725    2015-07-13 01:54:49    2015-07-13 01:54:49    1
14898    Plaid pour-over drinking 90's diy sriracha. Kinfolk chartreuse mustache blue bottle xoxo pinterest. Disrupt cray art party godard pop-up. Bitters chartreuse mumblecore. Ramps small batch you probably haven't heard of them try-hard keffiyeh banjo pickled freegan.    15112    831    2015-10-15 18:37:37    2015-10-15 18:37:37    1
14899    Viral franzen chillwave. Beard art party poutine +1 vinyl. Kale chips umami brunch ugh kinfolk 90's fanny pack. Semiotics mustache vhs.    15933    519    2015-11-25 13:23:44    2015-11-25 13:23:44    1
14900    Ethical vinyl truffaut food truck leggings mlkshk. Kickstarter vinegar williamsburg tattooed swag loko. Direct trade heirloom cardigan ugh health 90's.    10906    540    2016-02-07 06:24:34    2016-02-07 06:24:34    1
14901    Helvetica small batch cred godard. Mlkshk marfa photo booth wes anderson. Roof kogi vhs scenester wes anderson meh freegan.    11167    859    2015-05-22 03:46:22    2015-05-22 03:46:22    1
14902    +1 vhs actually sustainable chia pork belly craft beer blue bottle. Seitan viral leggings humblebrag selfies heirloom. Ugh direct trade pinterest hella vinyl put a bird on it chia yuccie. Venmo keffiyeh tacos gluten-free goth.    10957    836    2015-09-13 20:56:40    2015-09-13 20:56:40    1
14903    Chicharrones pinterest offal. Mustache humblebrag heirloom keytar franzen listicle truffaut. Synth cornhole carry fingerstache.    17226    819    2016-03-30 01:03:32    2016-03-30 01:03:32    1
14906    Tofu green juice craft beer swag semiotics. Farm-to-table beard cleanse park. Whatever direct trade craft beer kinfolk franzen. Leggings flannel cred forage etsy +1 normcore hammock.    18429    873    2016-01-08 05:20:09    2016-01-08 05:20:09    1
14907    Biodiesel godard aesthetic tote bag schlitz paleo church-key dreamcatcher. Distillery irony cronut plaid stumptown ugh neutra. Small batch pbr&b chicharrones hashtag drinking. Pickled freegan neutra beard organic.    15519    942    2015-09-08 23:31:36    2015-09-08 23:31:36    1
14908    Twee small batch mumblecore etsy master austin. Dreamcatcher wayfarers direct trade. Tousled austin vinyl brunch. Irony umami raw denim freegan gastropub keytar single-origin coffee jean shorts. Single-origin coffee 8-bit carry.    10608    928    2015-09-12 16:40:17    2015-09-12 16:40:17    1
14909    Synth direct trade mustache next level godard. Microdosing pickled loko vinyl cold-pressed. Offal 90's locavore viral vice knausgaard marfa. Sriracha franzen gentrify narwhal whatever.    16108    950    2015-12-28 02:54:26    2015-12-28 02:54:26    1
14910    Ennui yr skateboard knausgaard selfies hella diy. Literally tacos yr poutine tote bag paleo. Pabst retro wolf plaid narwhal tofu literally. Tattooed cornhole blog selvage. Farm-to-table lumbersexual post-ironic.    16044    800    2016-01-21 14:29:13    2016-01-21 14:29:13    1
14911    Skateboard pour-over flexitarian mlkshk. Roof vhs synth austin distillery leggings tumblr chia. Freegan organic intelligentsia fixie cold-pressed.    15478    875    2015-05-22 11:34:01    2015-05-22 11:34:01    1
14912    Celiac messenger bag five dollar toast heirloom kombucha. Food truck chambray pop-up deep v portland. Portland keytar slow-carb church-key. Kitsch vice dreamcatcher seitan plaid tofu. Kitsch fixie cray freegan.    15264    884    2015-10-12 13:38:33    2015-10-12 13:38:33    1
14913    Bushwick flannel poutine offal godard single-origin coffee waistcoat. Iphone celiac echo wayfarers brooklyn thundercats flexitarian. Fanny pack echo post-ironic. Fanny pack pork belly wayfarers kinfolk meditation letterpress marfa. Chillwave blue bottle etsy tacos tumblr artisan taxidermy diy.    17526    701    2015-12-05 14:22:48    2015-12-05 14:22:48    1
14914    Salvia vinyl pop-up waistcoat gentrify pork belly. Narwhal chambray put a bird on it. Crucifix wes anderson goth etsy chia offal keytar five dollar toast.    10607    515    2016-04-04 14:17:57    2016-04-04 14:17:57    1
14915    Five dollar toast dreamcatcher blog cardigan stumptown. Tumblr polaroid roof xoxo scenester cray umami. Retro salvia twee street echo flannel. Truffaut bitters pbr&b iphone ethical pop-up cronut kickstarter. Ramps kinfolk five dollar toast kitsch.    16548    521    2015-09-12 23:33:25    2015-09-12 23:33:25    1
14916    You probably haven't heard of them pug fashion axe chillwave mustache normcore. Ugh letterpress pork belly skateboard kale chips. Keffiyeh hammock post-ironic. Street hoodie ugh vice.    16244    719    2015-10-29 19:14:51    2015-10-29 19:14:51    1
14917    Pour-over gluten-free vice skateboard kinfolk. Migas wayfarers brooklyn pop-up wes anderson farm-to-table keytar. Umami meditation pickled fixie ramps vice occupy. Keffiyeh squid actually pop-up bespoke biodiesel. Trust fund kale chips pickled actually occupy plaid paleo shabby chic.    11403    656    2015-05-23 13:31:55    2015-05-23 13:31:55    1
14918    Cred cronut vice deep v typewriter fingerstache freegan hammock. Truffaut blog post-ironic. Retro taxidermy +1. Fashion axe synth cardigan authentic umami poutine brunch fingerstache. Dreamcatcher farm-to-table whatever brooklyn biodiesel pabst letterpress vinyl.    11795    929    2015-08-27 16:28:22    2015-08-27 16:28:22    1
14919    Blue bottle kickstarter chicharrones. Brunch tilde keytar selvage vegan slow-carb. Celiac 3 wolf moon try-hard umami messenger bag pickled. Slow-carb chicharrones heirloom bespoke beard loko green juice forage. Keytar squid drinking slow-carb banjo park forage ramps.    10662    513    2016-03-18 22:07:49    2016-03-18 22:07:49    1
14920    +1 craft beer keytar. Cold-pressed venmo viral. Tilde schlitz squid sustainable gluten-free migas. Fixie fap celiac keytar pork belly. Pitchfork hoodie kinfolk pabst food truck.    14229    696    2015-12-02 16:00:04    2015-12-02 16:00:04    1
14922    Typewriter roof photo booth cleanse. Tattooed yuccie food truck fanny pack. Sriracha park helvetica street distillery kickstarter vegan brooklyn. Everyday paleo portland schlitz readymade quinoa wolf poutine.    13246    631    2015-06-23 22:08:14    2015-06-23 22:08:14    1
14923    Hella knausgaard bicycle rights tumblr hashtag migas. Cornhole pabst cray tattooed pop-up. Kale chips before they sold out vinyl plaid meggings put a bird on it. Pabst flexitarian aesthetic.    17722    635    2015-05-30 18:15:49    2015-05-30 18:15:49    1
14924    Helvetica post-ironic chillwave. Fashion axe banjo before they sold out kickstarter neutra. Goth cred photo booth asymmetrical iphone celiac cronut mustache. Carry microdosing gastropub offal irony 3 wolf moon. Tote bag leggings master typewriter hashtag mumblecore photo booth diy.    12234    648    2015-11-06 23:36:30    2015-11-06 23:36:30    1
14925    Microdosing brooklyn yolo pbr&b kitsch. Health hammock ugh 3 wolf moon. Yolo five dollar toast vhs retro thundercats.    16374    578    2016-01-19 03:34:18    2016-01-19 03:34:18    1
14926    Pinterest roof xoxo banh mi paleo slow-carb meditation. Meh vhs leggings farm-to-table kinfolk williamsburg fixie 3 wolf moon. Intelligentsia waistcoat irony single-origin coffee lumbersexual sustainable neutra.    15353    901    2016-04-07 05:55:25    2016-04-07 05:55:25    1
14927    Heirloom mixtape scenester shabby chic microdosing humblebrag vinegar. Tilde 90's shabby chic mixtape fap. Portland iphone swag occupy skateboard normcore try-hard. Retro deep v cornhole chillwave tilde selfies. Farm-to-table bicycle rights fap asymmetrical before they sold out yuccie portland.    12450    583    2015-09-12 23:21:08    2015-09-12 23:21:08    1
14928    Fingerstache 3 wolf moon brunch. Park literally flannel put a bird on it yolo deep v offal trust fund. Twee gastropub photo booth ramps meditation biodiesel. Meh hoodie wayfarers venmo meditation. Diy kombucha heirloom pickled franzen drinking pbr&b.    18565    951    2016-04-20 11:38:00    2016-04-20 11:38:00    1
14929    Bespoke kale chips seitan fanny pack salvia chambray diy bushwick. Fashion axe mlkshk raw denim organic brunch bitters authentic 90's. Quinoa bushwick disrupt master xoxo wolf tilde. Polaroid 8-bit brunch wolf tilde ethical flannel.    17207    774    2016-01-23 02:59:53    2016-01-23 02:59:53    1
14930    Semiotics kinfolk xoxo quinoa meggings shabby chic cold-pressed. Pabst knausgaard austin lumbersexual. Vice aesthetic kinfolk health artisan.    10608    952    2015-08-03 06:44:35    2015-08-03 06:44:35    1
14931    Ennui readymade deep v vegan next level quinoa tilde. Pitchfork seitan kale chips freegan 3 wolf moon direct trade street you probably haven't heard of them. Cray artisan tote bag. Chambray chicharrones selfies keffiyeh marfa wayfarers craft beer.    15563    579    2015-11-01 13:15:48    2015-11-01 13:15:48    1
14932    Keytar schlitz gastropub put a bird on it bitters viral tilde cliche. Plaid raw denim swag waistcoat tote bag mlkshk skateboard. Listicle intelligentsia vhs kitsch brooklyn. Hoodie williamsburg cardigan asymmetrical irony. Yuccie squid thundercats.    13297    769    2016-03-16 06:48:42    2016-03-16 06:48:42    1
14933    Austin fanny pack normcore. Distillery cardigan goth locavore. Skateboard slow-carb blog hella. Gastropub whatever crucifix hoodie selvage schlitz. Pitchfork street brooklyn locavore trust fund lumbersexual.    12078    582    2016-04-14 23:09:54    2016-04-14 23:09:54    1
14934    +1 aesthetic skateboard biodiesel polaroid beard. Leggings artisan cold-pressed. Fingerstache schlitz knausgaard selfies etsy butcher. +1 seitan yolo try-hard street before they sold out kale chips helvetica. Trust fund semiotics cred ugh actually gluten-free seitan fixie.    17452    743    2015-09-28 18:02:40    2015-09-28 18:02:40    1
14935    Migas ennui seitan cliche five dollar toast cray meditation. Bespoke photo booth butcher distillery farm-to-table normcore pinterest raw denim. Tilde tacos fingerstache lomo chicharrones sriracha. Chartreuse health chia typewriter.    18270    629    2016-01-02 21:43:10    2016-01-02 21:43:10    1
14936    Master plaid next level celiac vice. Loko diy knausgaard gluten-free asymmetrical. Migas blog mlkshk pickled meh.    14529    708    2015-06-05 03:56:44    2015-06-05 03:56:44    1
14937    Polaroid everyday kickstarter yuccie 8-bit mlkshk sartorial. Occupy shoreditch yolo jean shorts chartreuse try-hard. Venmo lo-fi craft beer wes anderson selvage echo. Vegan ugh kogi viral. Tattooed twee banh mi.    11695    911    2015-08-10 05:36:17    2015-08-10 05:36:17    1
14938    Banjo narwhal forage fap. Brooklyn chartreuse chillwave lumbersexual. Ennui knausgaard twee park. Fixie xoxo lumbersexual. Thundercats umami freegan stumptown deep v.    18113    624    2015-09-23 20:33:03    2015-09-23 20:33:03    1
14939    Bitters bespoke echo cronut. Kinfolk banh mi listicle vhs flexitarian chillwave +1. Wolf hella typewriter hammock cornhole butcher.    17666    834    2015-09-06 18:52:21    2015-09-06 18:52:21    1
14940    Pop-up wes anderson pour-over swag gentrify. Drinking cliche plaid typewriter gluten-free. Organic tacos normcore. Messenger bag truffaut vinegar leggings swag schlitz. Squid waistcoat pinterest iphone.    15938    849    2015-10-18 04:19:35    2015-10-18 04:19:35    1
14941    Master venmo hashtag etsy. Cronut pug synth truffaut hammock iphone brooklyn offal. Raw denim bespoke thundercats.    12755    834    2015-06-05 07:11:08    2015-06-05 07:11:08    1
14942    Mlkshk food truck wolf heirloom kale chips 3 wolf moon. Chicharrones craft beer intelligentsia letterpress sartorial flexitarian five dollar toast seitan. Pour-over ugh microdosing. Franzen dreamcatcher fingerstache chartreuse vinyl viral.    17619    915    2015-04-28 07:36:43    2015-04-28 07:36:43    1
14943    Austin portland kogi pour-over tofu tote bag chicharrones. Humblebrag keytar quinoa kickstarter echo. Ramps chambray pickled literally raw denim microdosing. Butcher tofu salvia.    11593    842    2015-07-31 04:35:11    2015-07-31 04:35:11    1
14944    3 wolf moon you probably haven't heard of them waistcoat marfa lomo. Jean shorts helvetica austin bitters echo yr microdosing cold-pressed. Normcore 3 wolf moon kogi. Readymade chambray chartreuse pbr&b messenger bag humblebrag artisan. Listicle normcore cray 3 wolf moon truffaut.    18449    961    2015-05-28 04:19:37    2015-05-28 04:19:37    1
14945    Tattooed cred kogi letterpress tote bag wayfarers microdosing health. Pickled viral green juice chicharrones ennui. Humblebrag tumblr offal.    14168    919    2015-07-03 00:14:34    2015-07-03 00:14:34    1
14946    Carry hella food truck vinyl you probably haven't heard of them hoodie banh mi. Fashion axe mlkshk artisan tousled vegan intelligentsia. Health wayfarers try-hard chambray gluten-free goth twee. Cleanse fashion axe crucifix migas +1 try-hard freegan. Celiac venmo iphone tumblr xoxo gastropub roof yuccie.    14678    510    2015-08-15 20:38:51    2015-08-15 20:38:51    1
14947    Deep v pabst skateboard shoreditch tousled 3 wolf moon. Tattooed gentrify plaid banh mi. Before they sold out lumbersexual banh mi church-key.    18047    747    2015-06-19 22:26:37    2015-06-19 22:26:37    1
14948    Sriracha truffaut readymade cronut squid crucifix selvage. Hella franzen selvage. Intelligentsia chicharrones skateboard blog roof. Disrupt celiac master pitchfork forage. Butcher brunch quinoa kitsch pinterest green juice.    17138    939    2015-09-13 06:48:22    2015-09-13 06:48:22    1
14949    Jean shorts normcore butcher fixie pop-up green juice hoodie. Kinfolk tote bag venmo tacos flannel. Chambray before they sold out crucifix migas fixie single-origin coffee polaroid.    18065    641    2016-02-25 03:05:11    2016-02-25 03:05:11    1
14950    Loko heirloom franzen. Ennui banjo polaroid marfa beard meh. Pug ethical retro offal bespoke swag +1. Slow-carb freegan tumblr chillwave. Hoodie chambray sartorial yolo retro.    13328    627    2016-03-12 18:43:01    2016-03-12 18:43:01    1
14951    3 wolf moon pbr&b blue bottle. Leggings migas wes anderson readymade. Before they sold out slow-carb food truck tousled fanny pack 3 wolf moon gluten-free microdosing.    18536    669    2015-11-16 07:09:52    2015-11-16 07:09:52    1
14952    Sustainable bespoke deep v tattooed migas humblebrag polaroid ethical. Vice artisan bushwick readymade godard polaroid tousled whatever. Banjo letterpress trust fund franzen cliche green juice wes anderson.    10654    716    2016-03-24 04:51:33    2016-03-24 04:51:33    1
14956    Squid single-origin coffee tofu hella pop-up master sriracha. Flannel pour-over humblebrag chambray. Kinfolk roof vinyl 90's yr yuccie. Occupy offal wayfarers migas yolo.    16672    740    2016-01-01 18:59:39    2016-01-01 18:59:39    1
14957    Master whatever vinegar. Meditation mumblecore typewriter gastropub chillwave intelligentsia put a bird on it. Pickled cliche 90's sustainable salvia.    16526    804    2015-07-20 00:53:33    2015-07-20 00:53:33    1
14958    Polaroid migas narwhal you probably haven't heard of them tilde loko. Everyday photo booth hoodie before they sold out lumbersexual cardigan. Freegan sriracha scenester carry bitters blue bottle franzen iphone.    17767    844    2015-10-04 16:06:29    2015-10-04 16:06:29    1
14959    Freegan viral pbr&b church-key. Pickled chia yuccie bicycle rights. Synth godard literally try-hard. Lomo next level williamsburg chia meggings sustainable cliche.    10033    778    2015-12-18 19:34:29    2015-12-18 19:34:29    1
14960    Occupy taxidermy sriracha. Banh mi kinfolk vice meditation migas. Small batch cronut stumptown.    15896    815    2015-10-31 00:05:43    2015-10-31 00:05:43    1
14961    Knausgaard yolo five dollar toast plaid try-hard actually polaroid. Vinegar hashtag iphone scenester pbr&b next level pour-over. Tofu dreamcatcher distillery. Kitsch vinegar flannel raw denim wes anderson small batch flexitarian echo. Trust fund cronut bespoke skateboard.    18943    510    2015-07-25 04:58:29    2015-07-25 04:58:29    1
14962    Shabby chic meh vice kogi tofu. Biodiesel lumbersexual pitchfork. Chambray food truck kale chips celiac flexitarian mustache. Messenger bag hashtag street.    18306    950    2015-08-31 19:25:51    2015-08-31 19:25:51    1
14963    Shoreditch brooklyn venmo crucifix fixie kogi tumblr butcher. Aesthetic semiotics 90's pbr&b tattooed. Brunch selvage venmo yr bitters pop-up pinterest.    10874    580    2015-12-24 08:49:29    2015-12-24 08:49:29    1
14964    90's mumblecore you probably haven't heard of them actually forage gluten-free banjo. Ethical asymmetrical schlitz. Slow-carb iphone franzen master deep v next level. Artisan single-origin coffee slow-carb. Kombucha brunch chicharrones keffiyeh crucifix blue bottle.    10936    554    2016-02-27 04:26:12    2016-02-27 04:26:12    1
14965    Vice meditation fap cornhole. Viral twee meggings. Readymade farm-to-table literally lo-fi viral. Waistcoat meggings artisan hella. Sriracha sustainable church-key gastropub.    14786    873    2016-03-24 18:44:23    2016-03-24 18:44:23    1
14966    Pug 8-bit everyday cleanse knausgaard kombucha kickstarter. Cold-pressed ugh direct trade tumblr fixie 3 wolf moon paleo. Trust fund mixtape plaid post-ironic sustainable gentrify tote bag. Cray offal vhs tofu retro cleanse heirloom. Waistcoat jean shorts vinegar quinoa synth diy bespoke.    12557    859    2015-06-22 06:06:49    2015-06-22 06:06:49    1
14967    Authentic bespoke vinegar. Locavore kogi single-origin coffee migas meggings heirloom lo-fi typewriter. Freegan pabst waistcoat chartreuse 8-bit. Whatever artisan mixtape kitsch meh fingerstache viral +1. Fingerstache ramps seitan pickled beard sartorial viral.    15725    500    2015-11-19 19:33:25    2015-11-19 19:33:25    1
14968    Drinking keffiyeh squid mustache cray literally. Waistcoat raw denim scenester health photo booth readymade normcore pickled. Organic austin normcore loko chartreuse cleanse ugh. Vice brooklyn migas typewriter mustache pug skateboard.    17641    562    2015-11-12 21:10:32    2015-11-12 21:10:32    1
14970    Semiotics meggings shabby chic loko cornhole farm-to-table selvage try-hard. Single-origin coffee gastropub asymmetrical. Listicle green juice street neutra everyday etsy. Meh vice goth kickstarter normcore pour-over.    18840    728    2015-05-02 02:34:56    2015-05-02 02:34:56    1
14971    Vinyl mustache wes anderson distillery tofu. Whatever blue bottle mixtape messenger bag. Chillwave pitchfork jean shorts austin skateboard.    18186    727    2015-12-15 07:11:57    2015-12-15 07:11:57    1
14972    Microdosing chicharrones kale chips sartorial. Disrupt quinoa cold-pressed cornhole hella. Venmo you probably haven't heard of them put a bird on it artisan chartreuse. Lomo poutine actually scenester church-key yolo.    13488    826    2015-10-15 18:41:01    2015-10-15 18:41:01    1
14973    Butcher gastropub pinterest meggings whatever godard meh. Loko bitters lo-fi keytar kogi. Wes anderson trust fund hella.    14937    653    2016-04-17 07:53:26    2016-04-17 07:53:26    1
14974    Goth lomo gentrify raw denim kombucha wayfarers next level. Plaid before they sold out locavore listicle disrupt pinterest cold-pressed drinking. Chartreuse umami taxidermy hella tote bag.    10804    592    2015-09-23 10:08:59    2015-09-23 10:08:59    1
14975    Offal keytar listicle narwhal blue bottle. Austin pabst humblebrag. Pop-up cred street yr celiac meditation truffaut. Brooklyn narwhal drinking squid art party portland pabst. Echo semiotics yr taxidermy squid vinegar cornhole wes anderson.    17654    517    2015-07-09 13:16:00    2015-07-09 13:16:00    1
14976    Flannel kinfolk umami sustainable post-ironic master. Fap meditation gastropub sartorial. Vinegar kickstarter banh mi. Pork belly food truck 90's loko goth cronut distillery 3 wolf moon.    17345    902    2016-02-07 16:53:38    2016-02-07 16:53:38    1
14977    Letterpress you probably haven't heard of them 3 wolf moon plaid locavore occupy. Lumbersexual food truck wes anderson 90's quinoa franzen. Fixie quinoa health. Cornhole chambray raw denim heirloom chillwave yr.    13119    857    2015-08-21 02:48:29    2015-08-21 02:48:29    1
14978    Fanny pack cornhole sriracha lumbersexual knausgaard xoxo pabst keytar. Selvage meggings aesthetic mlkshk synth freegan gentrify everyday. Fingerstache ramps retro squid meggings. Vhs actually neutra kogi biodiesel messenger bag.    13585    659    2015-09-22 20:30:57    2015-09-22 20:30:57    1
14979    Vinyl hella celiac yolo lumbersexual microdosing crucifix. Pop-up vhs art party yr pour-over vinegar jean shorts listicle. Drinking pickled 3 wolf moon aesthetic etsy actually diy selvage. Ennui 90's street. Everyday synth banjo vinegar.    15842    553    2015-12-08 21:57:34    2015-12-08 21:57:34    1
14980    Chambray wayfarers chillwave. Brooklyn viral locavore kale chips venmo portland. Hammock blue bottle swag cleanse shoreditch thundercats. Taxidermy pug photo booth shabby chic wolf fixie master tumblr. Yr forage master quinoa.    13175    506    2016-04-08 18:12:05    2016-04-08 18:12:05    1
14981    Humblebrag disrupt biodiesel ugh raw denim. Farm-to-table cronut master butcher ugh post-ironic tousled. Sustainable beard intelligentsia messenger bag. Fingerstache readymade selvage letterpress literally pinterest.    10900    909    2015-11-01 12:35:16    2015-11-01 12:35:16    1
14983    Artisan carry chillwave. Chambray next level pop-up hoodie seitan before they sold out typewriter waistcoat. Organic aesthetic ugh mumblecore pabst helvetica gastropub. Typewriter whatever five dollar toast.    18079    585    2016-02-13 00:06:38    2016-02-13 00:06:38    1
14984    Cold-pressed roof hashtag beard pork belly normcore. Godard tote bag distillery knausgaard put a bird on it forage. Before they sold out roof vinyl semiotics aesthetic. Brooklyn drinking tumblr fashion axe vice try-hard. Pug carry put a bird on it banh mi lo-fi.    18158    896    2015-10-23 16:15:02    2015-10-23 16:15:02    1
14985    Selvage fashion axe farm-to-table carry chambray sustainable salvia retro. Mlkshk xoxo tousled. Cold-pressed 3 wolf moon cray vice raw denim pug.    15161    595    2015-12-25 03:23:54    2015-12-25 03:23:54    1
14987    Irony fanny pack lo-fi truffaut ethical viral. Selfies you probably haven't heard of them celiac tilde. Sartorial godard iphone yolo offal sustainable.    13703    520    2016-03-04 11:35:37    2016-03-04 11:35:37    1
14988    Freegan wes anderson echo. Deep v keffiyeh viral roof cleanse poutine normcore. Pork belly polaroid artisan ramps iphone godard.    12981    467    2015-06-10 03:29:56    2015-06-10 03:29:56    1
14989    Retro post-ironic listicle. Next level flexitarian vinyl lumbersexual pabst chia fap readymade. Brooklyn neutra bespoke.    14141    509    2016-02-01 23:52:23    2016-02-01 23:52:23    1
14990    Butcher farm-to-table mustache. Roof organic pour-over. Sartorial skateboard tousled photo booth marfa kale chips.    13370    717    2015-07-31 15:37:57    2015-07-31 15:37:57    1
14991    Art party master jean shorts chia fashion axe put a bird on it vinyl. Actually mumblecore marfa fashion axe. Cardigan heirloom loko asymmetrical banjo sartorial everyday. Vinegar microdosing iphone chambray pitchfork kombucha. Craft beer put a bird on it locavore banh mi cred fap pinterest hammock.    12364    680    2015-12-27 08:57:03    2015-12-27 08:57:03    1
14992    You probably haven't heard of them helvetica tilde twee normcore vinyl fixie. Chambray tofu banjo knausgaard pitchfork selvage wolf. Cornhole ramps gastropub. Cred kogi echo.    13532    583    2015-10-20 08:30:24    2015-10-20 08:30:24    1
14993    Kinfolk everyday taxidermy synth hella readymade meggings. Yr sartorial sriracha ramps art party. Roof vegan umami mixtape. Gastropub flexitarian stumptown bushwick. Yuccie kombucha williamsburg ethical loko tumblr fanny pack.    15346    889    2015-12-24 23:04:02    2015-12-24 23:04:02    1
14994    Tacos art party twee tofu godard. Vice shabby chic try-hard mumblecore chillwave franzen scenester church-key. Chartreuse selvage listicle occupy crucifix yuccie single-origin coffee. Trust fund intelligentsia street keffiyeh butcher kale chips.    12419    961    2016-04-04 03:32:19    2016-04-04 03:32:19    1
14995    You probably haven't heard of them biodiesel readymade tousled farm-to-table quinoa vegan. Cornhole tilde yolo. Twee post-ironic cornhole normcore lomo stumptown raw denim roof.    11530    612    2015-11-21 09:28:46    2015-11-21 09:28:46    1
14996    Kitsch kinfolk beard vinegar blog trust fund heirloom tumblr. Yuccie vegan forage plaid viral. Fashion axe slow-carb vinegar mlkshk banh mi.    16787    617    2015-04-30 06:05:21    2015-04-30 06:05:21    1
14997    Typewriter post-ironic gentrify. Austin street stumptown craft beer narwhal blue bottle. Food truck asymmetrical bicycle rights wolf iphone artisan marfa. Green juice umami brooklyn humblebrag kinfolk.    10759    522    2015-11-13 16:38:16    2015-11-13 16:38:16    1
14998    Master church-key sartorial offal hoodie fingerstache. Xoxo single-origin coffee chartreuse leggings goth. You probably haven't heard of them intelligentsia drinking helvetica. Narwhal beard fap keffiyeh listicle.    17541    797    2015-11-13 07:25:35    2015-11-13 07:25:35    1
14999    Readymade heirloom trust fund keffiyeh selfies. Iphone authentic direct trade typewriter. Selvage banjo pop-up helvetica.    10318    707    2015-06-13 02:59:47    2015-06-13 02:59:47    1
15000    Mumblecore five dollar toast fashion axe master kitsch blog tousled. Pbr&b flexitarian franzen leggings. Migas goth helvetica green juice kogi yolo. Retro brooklyn before they sold out truffaut small batch banh mi. Jean shorts migas yuccie iphone.    15875    521    2016-01-04 01:40:33    2016-01-04 01:40:33    1
\.


--
-- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.countries (id, name) FROM stdin;
1    USA
2    UK
3    New Zealand
4    Italy
5    Spain
6    West Germany
7    Germany
8    Australia
9    Japan
10    Brazil
11    France
12    Poland
13    Hong Kong
14    South Korea
15    Iran
16    Denmark
17    Sweden
18    India
19    Austria
20    Ireland
21    Canada
22    Mexico
23    Lebanon
24    Libya
25    Kuwait
26    Morocco
27    Argentina
28    South Africa
29    Taiwan
30    Soviet Union
31    Switzerland
32    Algeria
33    China
34    United Arab Emirates
35    Greece
36    Turkey
37    Russia
\.


--
-- Data for Name: countries_movies; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.countries_movies (movie_id, country_id) FROM stdin;
463    1
464    1
465    1
466    1
466    2
467    1
468    1
469    1
470    1
470    3
471    4
471    5
471    6
471    1
472    1
472    7
473    3
473    1
474    1
475    1
476    1
476    2
477    1
477    3
478    1
479    1
480    1
480    8
481    9
482    1
483    10
483    11
484    1
485    1
486    1
487    1
487    7
488    4
489    11
490    4
490    1
490    5
491    9
492    1
493    1
493    2
494    1
495    1
496    1
497    1
498    1
499    1
540    2
540    1
500    11
501    1
502    1
503    1
503    11
504    11
504    12
504    7
504    2
505    1
505    13
506    1
507    1
508    1
508    2
509    1
510    1
511    1
511    2
512    1
512    2
513    1
514    1
515    1
515    2
516    1
517    7
518    4
518    11
519    1
520    1
520    2
521    1
521    6
522    9
523    1
524    1
524    2
525    1
526    2
526    1
527    9
528    14
529    1
530    1
531    4
531    1
532    6
533    1
534    1
535    1
536    1
537    11
537    7
538    1
539    1
586    1
541    1
542    1
543    1
544    1
545    2
546    1
547    2
547    1
548    1
548    11
549    1
550    1
550    2
551    4
552    1
553    2
553    1
554    1
555    2
577    1
556    1
556    7
557    1
558    1
559    4
559    5
559    6
560    9
561    1
578    1
562    1
563    1
564    15
565    1
566    7
567    9
568    1
569    1
569    2
570    1
571    16
571    17
572    18
573    1
574    2
575    1
576    1
731    1
579    7
579    19
579    4
580    1
581    1
582    1
583    20
583    21
584    1
585    1
587    5
587    22
587    1
588    1
588    21
589    9
590    23
590    24
590    25
590    26
590    2
591    1
592    1
593    9
594    9
594    11
595    2
595    1
596    1
597    1
598    17
599    27
599    5
600    1
600    13
600    2
699    9
601    2
602    17
603    1
604    9
605    1
605    11
606    1
606    2
614    21
614    11
607    1
608    1
609    1
609    2
609    7
610    1
611    1
612    1
612    7
613    1
613    2
732    2
615    2
615    1
616    1
617    1
618    1
618    2
619    2
620    1
621    1
652    1
622    1
623    1
624    1
625    1
626    1
627    1
628    8
629    1
630    1
631    1
632    2
632    7
632    1
633    2
634    2
634    1
634    4
634    28
634    21
635    1
636    1
637    2
637    1
638    8
638    1
639    1
639    21
640    11
640    4
641    1
642    1
643    1
643    13
643    29
643    21
644    11
645    1
646    1
647    20
647    2
647    1
648    17
649    1
649    2
650    1
650    7
650    2
651    22
653    1
654    1
655    1
656    27
656    5
657    1
658    1
659    1
659    2
660    9
661    30
662    1
663    11
664    2
664    18
665    1
665    7
666    4
666    11
667    1
667    19
667    31
668    1
834    1
669    1
670    14
671    1
672    1
673    1
674    2
674    1
675    1
676    1
677    1
678    1
678    2
679    1
680    1
681    13
682    1
683    11
684    4
684    32
685    2
685    1
685    20
686    1
686    2
687    1
688    1
689    17
689    11
689    6
690    13
690    33
691    2
691    1
692    1
693    1
694    2
694    1
694    8
695    1
695    18
695    34
696    4
696    5
696    6
697    1
697    2
698    1
698    21
700    9
701    1
702    1
703    11
704    1
705    13
705    33
706    1
713    2
707    1
708    1
709    9
710    14
710    7
711    4
711    11
712    2
712    1
714    1
715    1
716    1
717    1
718    1
718    2
719    1
720    1
721    1
722    2
722    1
723    2
724    1
725    1
726    1
727    1
728    1
729    12
729    6
730    2
733    9
734    18
735    18
736    9
737    1
737    2
738    2
738    1
738    5
738    7
738    35
738    21
739    1
740    2
741    9
742    9
743    1
744    1
745    2
746    6
747    1
748    1
749    1
750    1
862    2
751    2
752    1
753    1
754    1
755    2
756    2
756    1
757    2
758    1
759    2
760    9
761    1
762    1
763    2
764    9
765    1
766    1
808    9
767    1
767    21
768    2
769    1
770    1
771    1
772    1
773    1
774    2
775    1
776    9
777    1
778    1
779    1
779    21
780    1
781    1
782    1
833    1
783    1
784    1
785    9
786    2
787    1
788    1
789    1
790    1
791    1
792    21
793    2
794    2
795    9
796    2
797    2
798    1
799    9
800    2
800    21
801    1
802    1
803    2
804    2
805    1
806    1
807    2
809    2
810    9
811    1
812    1
813    1
813    2
814    1
815    1
816    1
878    18
817    1
818    1
819    2
820    1
821    1
822    1
823    9
824    1
825    1
826    1
827    2
828    9
829    9
830    1
831    1
832    1
835    1
835    7
836    1
837    1
838    1
839    1
840    1
841    1
842    2
843    1
843    2
844    36
845    9
846    2
847    1
848    2
849    9
851    1
852    1
853    17
853    16
853    7
854    1
855    1
856    2
857    2
858    2
859    4
859    2
860    2
861    20
861    21
863    1
864    2
865    1
865    2
866    1
867    4
868    9
869    1
870    2
871    9
872    1
873    1
874    1
875    1
876    1
876    2
876    11
877    1
879    9
880    1
881    36
882    36
883    1
884    1
885    1
885    2
886    2
887    37
888    9
889    1
890    1
891    17
892    2
893    36
894    8
895    2
896    1
897    2
898    1
899    2
899    21
900    8
901    7
902    2
902    1
903    1
904    2
905    9
906    21
907    2
908    1
908    7
909    9
910    1
911    1
912    2
913    16
914    2
915    1
916    2
917    1
918    1
918    9
919    2
919    1
920    1
921    1
922    1
923    1
924    1
925    1
925    21
926    1
927    2
927    1
928    1
929    1
947    9
930    1
931    2
932    1
933    1
934    1
935    9
936    1
936    21
937    1
937    7
938    1
939    1
940    21
940    6
940    1
941    2
941    1
942    1
943    21
944    2
945    9
946    2
946    1
948    1
949    2
950    2
951    1
952    1
953    1
953    21
954    1
955    2
956    2
957    1
958    1
959    1
960    21
961    1
961    7
961    11
750    17
748    36
952    22
952    18
955    18
588    10
\.


--
-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.customers (id, firstname, lastname, email, stripe_id, country, city, street_address, zip_code, state, created_at, updated_at, encrypted_password, reset_password_token, reset_password_sent_at, remember_created_at, sign_in_count, current_sign_in_at, last_sign_in_at, current_sign_in_ip, last_sign_in_ip, gender) FROM stdin;
15370    Newton    Stracke    jordyn@stroman.info    \N    Spain    North Marc    2284 Amira Mount    13052    Arizona    2016-09-21 08:36:04.342171    2016-10-14 13:02:24.266214        \N    \N    \N    0    \N    \N    \N    \N    female
19590    Greta    Beer    gregg_harris@faheydickens.name    \N    Sao Tome and Principe    New Anaisview    744 Madison Mount    77458-1291    Maine    2016-08-03 14:15:34.125986    2016-10-14 13:02:24.270855        \N    \N    \N    0    \N    \N    \N    \N    male
19591    Elroy    Harber    abigale_borer@mcdermott.org    \N    Slovakia (Slovak Republic)    Kaylinhaven    2321 Kimberly Manor    17092-3989    Maine    2016-07-29 03:36:07.115611    2016-10-14 13:02:24.27467        \N    \N    \N    0    \N    \N    \N    \N    female
19592    Trey    Bashirian    paolo@weinat.info    \N    Djibouti    South Delilahshire    108 Donald Springs    38010    North Carolina    2016-09-18 12:23:19.440643    2016-10-14 13:02:24.278228        \N    \N    \N    0    \N    \N    \N    \N    male
19593    Gracie    Dietrich    blake_treutel@littel.biz    \N    Mayotte    North Kyla    82561 Homenick Valley    15383    Massachusetts    2016-07-28 19:50:44.710108    2016-10-14 13:02:24.281742        \N    \N    \N    0    \N    \N    \N    \N    male
19594    Rosella    Vandervort    trea.hilpert@kihn.info    \N    Puerto Rico    North Earlene    1657 Hansen Shoal    62177-3589    California    2016-08-15 10:35:47.50282    2016-10-14 13:02:24.285229        \N    \N    \N    0    \N    \N    \N    \N    female
19595    Juston    Satterfield    ewald@gleichner.info    \N    Togo    Lake Quinnberg    368 Natalia Summit    87659-1739    Ohio    2016-06-24 08:24:52.968825    2016-10-14 13:02:24.288885        \N    \N    \N    0    \N    \N    \N    \N    female
19596    Dina    Harris    emily.vonrueden@padberg.com    \N    Armenia    New Gay    69857 Aufderhar Manor    80024    New Mexico    2016-07-17 17:40:17.319196    2016-10-14 13:02:24.292294        \N    \N    \N    0    \N    \N    \N    \N    female
19597    Keon    Baumbach    annette.schuppe@yost.co    \N    Uzbekistan    Runolfssonview    3263 Mavis Highway    38648    Connecticut    2016-07-21 21:09:44.738449    2016-10-14 13:02:24.295408        \N    \N    \N    0    \N    \N    \N    \N    female
19598    Phyllis    Boyer    te@lakindurgan.com    \N    Mexico    Gudrunmouth    70459 Margarita Pike    58608    North Dakota    2016-08-22 15:56:54.352199    2016-10-14 13:02:24.298711        \N    \N    \N    0    \N    \N    \N    \N    female
19599    Concepcion    Nolan    clement@hoeger.name    \N    Eritrea    Eichmanntown    58017 Earline Parks    99910    South Carolina    2016-08-04 10:27:05.454448    2016-10-14 13:02:24.302229        \N    \N    \N    0    \N    \N    \N    \N    female
19600    Shanon    Casper    jaqueline_sawayn@marquardterdman.org    \N    Cook Islands    Runolfsdottirmouth    61292 Clara Expressway    79699    Oregon    2016-08-08 09:14:52.733447    2016-10-14 13:02:24.30555        \N    \N    \N    0    \N    \N    \N    \N    male
19601    Willis    Lockman    kaya@osinski.name    \N    Tonga    Lake Juliaborough    97349 Lamont Ville    72173    Oregon    2016-07-05 09:53:34.092202    2016-10-14 13:02:24.308627        \N    \N    \N    0    \N    \N    \N    \N    female
10241    Eladio    Dach    hailee_nader@hermistonkrajcik.io    \N    Bermuda    Lake Adolph    8521 Stoltenberg Heights    96396-8684    Alabama    2016-06-27 18:18:09.006524    2016-10-14 13:02:24.572065        \N    \N    \N    0    \N    \N    \N    \N    female
10288    Reese    Pagac    lilliana_jones@tremblay.co    \N    Colombia    New Bonitabury    2583 Jerald Fall    37871    Colorado    2016-09-22 07:09:28.264054    2016-10-14 13:02:24.740938        \N    \N    \N    0    \N    \N    \N    \N    male
10339    Benton    Bernier    claudie@jaskolski.name    \N    Kenya    North Cole    76354 Liliane Mount    13724    Arizona    2016-07-02 19:06:45.734724    2016-10-14 13:02:24.893579        \N    \N    \N    0    \N    \N    \N    \N    male
10383    Cade    Gorczany    bell_haag@hilllfunk.co    \N    United States of America    Anaisshire    11122 Herta Pass    91207    Wisconsin    2016-07-11 03:31:17.139216    2016-10-14 13:02:25.041903        \N    \N    \N    0    \N    \N    \N    \N    female
10477    Lorenza    Hickle    sonya@mcculloughwest.co    \N    Afghanistan    South Kenya    74324 Breitenberg Route    45183    Maryland    2016-08-26 06:24:01.810021    2016-10-14 13:02:25.349086        \N    \N    \N    0    \N    \N    \N    \N    female
10578    Emery    Wehner    josephine@dare.net    \N    Iraq    New Tiana    20068 Christian Spring    58063    Colorado    2016-09-06 11:47:50.976885    2016-10-14 13:02:25.711154        \N    \N    \N    0    \N    \N    \N    \N    male
10627    Bo    Cronin    columbus.mertz@crooksdeckow.net    \N    Chile    New Emelyburgh    592 Cole Path    28574    Hawaii    2016-06-30 12:59:18.561202    2016-10-14 13:02:25.93038        \N    \N    \N    0    \N    \N    \N    \N    female
10450    Travis    Harvey    emery@johns.name    \N    Germany    Lake Misael    73077 America Isle    61192    Kansas    2016-07-28 04:41:51.627822    2016-10-14 13:02:26.202258        \N    \N    \N    0    \N    \N    \N    \N    male
10725    Harmon    Mayer    elsie@corkery.biz    \N    Netherlands    Haagmouth    627 Shanahan Fall    41353    Arkansas    2016-08-21 23:55:04.162328    2016-10-14 13:02:26.312101        \N    \N    \N    0    \N    \N    \N    \N    female
10726    Ila    Mitchell    hadley@parisian.org    \N    Cote d'Ivoire    Chayaview    76992 Javier Lodge    28467    Nebraska    2016-08-20 13:12:39.868216    2016-10-14 13:02:26.315783        \N    \N    \N    0    \N    \N    \N    \N    male
11065    Manuel    Bode    ashton_denesik@kihn.io    \N    Jamaica    Hectorbury    66687 Devin Road    41966-8898    Pennsylvania    2016-09-15 19:11:10.372638    2016-10-14 13:02:27.637641        \N    \N    \N    0    \N    \N    \N    \N    female
39522    Julian    Batz    maximus@stanton.net    \N    Bermuda    Chasitymouth    953 Harris Roads    43378-3224    California    2017-11-12 22:00:35.402124    2017-11-12 22:00:35.402124    $2a$10$NjWVs5t1fBcTXqDyHqNiHeGaC1JCtXWbQLuolrV8RYtbf1atMk9Vu    \N    \N    \N    0    \N    \N    \N    \N    male
39523    Noe    Schmitt    lois.hyatt@harrisleuschke.name    \N    Sierra Leone    Alanchester    38673 Lysanne Manors    78570    Ohio    2017-11-12 22:00:35.564855    2017-11-12 22:00:35.564855    $2a$10$QGjhhHqdo8bqlDBUzFDD0e9dIUyZlm2Bo41HQre5gb1ybF9IKQYM.    \N    \N    \N    0    \N    \N    \N    \N    male
39524    Izabella    Schiller    jeika@pacocha.org    \N    Australia    East Lukasberg    98320 Marlen Mall    49063-5073    Arkansas    2017-11-12 22:00:35.682457    2017-11-12 22:00:35.682457    $2a$10$aydPNnZ5PZy9ZKxH78iLJeI/J8X9e3rD/TZIsu9Ikws9KGLnuWcAW    \N    \N    \N    0    \N    \N    \N    \N    female
39525    Westley    Wehner    eden.schaefer@senger.co    \N    Zimbabwe    Ellenburgh    981 Rodriguez Fords    88060    Washington    2017-11-12 22:00:35.800694    2017-11-12 22:00:35.800694    $2a$10$X0Vl3s.s/l/Qg.79oF0TEeixs5B48VwmQwgcW689AEZgWS.pmsawK    \N    \N    \N    0    \N    \N    \N    \N    male
39526    Carolanne    Skiles    lupe.zboncak@vandervort.name    \N    Djibouti    South Martineside    96710 Maximo Squares    53333    Massachusetts    2017-11-12 22:00:35.923535    2017-11-12 22:00:35.923535    $2a$10$/LPXRJ7ve9b.9l6gOVN3m.hP.9c9F0BB.lXN9SiQG3XOuT.jp8WNa    \N    \N    \N    0    \N    \N    \N    \N    female
39527    Dagmar    Mills    arnoldo_franecki@ratke.org    \N    Cape Verde    Lake Perryport    8796 Jalen Skyway    73452    Idaho    2017-11-12 22:00:36.043128    2017-11-12 22:00:36.043128    $2a$10$UuduFABRjVTiWMYK98wLpO6V2ZEyATFtpgfQjjHlVsjtbx1T0.Scm    \N    \N    \N    0    \N    \N    \N    \N    male
39528    Katherine    Abernathy    elfrieda.bogisich@lebsack.name    \N    Papua New Guinea    West Milanmouth    823 Senger Meadows    73819-3019    Nebraska    2017-11-12 22:00:36.167359    2017-11-12 22:00:36.167359    $2a$10$TaHbTIQnPpFwZhN9PHFMkuKH3n82wPXMGEgerZfxokn9jmUy7YSua    \N    \N    \N    0    \N    \N    \N    \N    male
39529    Assunta    Kemmer    garett@bahringerkutch.org    \N    Bermuda    Ritchieberg    85656 Howell Lights    34895    Oklahoma    2017-11-12 22:00:36.294817    2017-11-12 22:00:36.294817    $2a$10$fwblXJYEOD0.4MADFooImu48HlHLC66dIlCIMx18evlpBhilph2vC    \N    \N    \N    0    \N    \N    \N    \N    female
39530    Freddie    Reichel    davin.carroll@hauckrutherford.org    \N    United Kingdom    Nayelistad    85891 Carmella Spring    94102    Missouri    2017-11-12 22:00:36.421269    2017-11-12 22:00:36.421269    $2a$10$XVXdcwwLdShzUntNjXICV.7VqeT5t5vT/o9UeUMpWxOW1W.py32ga    \N    \N    \N    0    \N    \N    \N    \N    male
39531    Junius    Mann    rosie@schneidernader.name    \N    Chad    Feilland    868 Bins Pike    65071    Wyoming    2017-11-12 22:00:36.557067    2017-11-12 22:00:36.557067    $2a$10$KflECMPOKWd3WMdQf1EucOpl2A1hfDZY/GYVnIeKqTrAPvDcgVR9G    \N    \N    \N    0    \N    \N    \N    \N    male
39532    Beau    Adams    janiya@keeling.name    \N    Comoros    West Leannemouth    2239 Ellis Views    53516    California    2017-11-12 22:00:36.675373    2017-11-12 22:00:36.675373    $2a$10$j0p912ooyRmUrb2mFxcDB.UqH08UP7feFsAaePb9x39nPbSAGZYna    \N    \N    \N    0    \N    \N    \N    \N    male
39533    Maybell    Hessel    devan@koepp.info    \N    Tunisia    Denesikfurt    31673 Kris Run    82750    Washington    2017-11-12 22:00:36.798158    2017-11-12 22:00:36.798158    $2a$10$7nJCdmIGqZLsaJiISh3SeO7AHhCbY0aHJWvuUzju/scdxJFR6/V8S    \N    \N    \N    0    \N    \N    \N    \N    female
39534    Sim    Green    idell@boscobotsford.biz    \N    Japan    Quintenside    5268 Montana Drive    92628    North Dakota    2017-11-12 22:00:36.913418    2017-11-12 22:00:36.913418    $2a$10$1F1sRT1TMJQgvJQ78Fo3kuFdW8veNQ/GnNpRTs.6l0nfrkITR66ae    \N    \N    \N    0    \N    \N    \N    \N    male
39535    Isai    Mitchell    robert_lemke@kiehnsimonis.co    \N    Timor-Leste    Yundttown    1748 Alysha Vista    56521    North Dakota    2017-11-12 22:00:37.02876    2017-11-12 22:00:37.02876    $2a$10$.n2O8Jl5qSQE3nUCf8904uqcTVKoRk4cWro/8dhMceLP3AEgWmXfu    \N    \N    \N    0    \N    \N    \N    \N    male
39536    Sherwood    Swift    pablo@stoltenberghudson.co    \N    Montenegro    West Junius    704 Kris Stream    65477-4854    Florida    2017-11-12 22:00:37.143384    2017-11-12 22:00:37.143384    $2a$10$r28Js2iNYlsxsDU4aL4uVOnPz3lBKMnR5ZD2WDtzW0pBQp23m6gGi    \N    \N    \N    0    \N    \N    \N    \N    female
39537    Kristofer    O'Keefe    francisca.altenwerth@doyle.co    \N    Guinea    Jenaville    88428 Grant Skyway    17242-9772    Washington    2017-11-12 22:00:37.275411    2017-11-12 22:00:37.275411    $2a$10$Zb3XJ9hbZAH6NoMaGSyh8ec2cxtBaD6UYWn9746w8S5PX2RZfw3JG    \N    \N    \N    0    \N    \N    \N    \N    female
12855    Lee    Kertzmann    alaina@ferry.biz    \N    Libyan Arab Jamahiriya    Fernfurt    87014 Jared Trace    63611    Delaware    2016-09-08 05:23:13.700241    2016-10-14 13:02:36.413687        \N    \N    \N    0    \N    \N    \N    \N    male
39538    Agustina    Heidenreich    lyla@gorczanymurphy.com    \N    Albania    West Rupert    1488 Jeramy Trace    83794-2508    Mississippi    2017-11-12 22:00:37.39358    2017-11-12 22:00:37.39358    $2a$10$OdOLwYfbcAnTr1rmD.a31eKe/LPmZFzhOSzXKBCnGvR01A9KVIaPG    \N    \N    \N    0    \N    \N    \N    \N    female
39539    Murl    Beier    kayley@leffler.info    \N    Malaysia    West Shayleeshire    4484 Hermann Rapid    55913    South Carolina    2017-11-12 22:00:37.527687    2017-11-12 22:00:37.527687    $2a$10$84tem..UqsN5sfElQG2viub3LAxerxYLHyyEkLQ/SNYO961s.FGfK    \N    \N    \N    0    \N    \N    \N    \N    male
39540    Kaia    Hills    ernestine.frami@beier.net    \N    Japan    West Francistown    262 Amaya Parks    98272    South Dakota    2017-11-12 22:00:37.64442    2017-11-12 22:00:37.64442    $2a$10$eDApkjDtdKXQcWM0K6GBRe/kl9pAOWoCQSgohiZGuo/H3/zOaWuOO    \N    \N    \N    0    \N    \N    \N    \N    male
39541    Ivy    Mraz    neva@ferry.net    \N    Reunion    West Marlen    114 Muhammad River    13363-9257    Michigan    2017-11-12 22:00:37.762144    2017-11-12 22:00:37.762144    $2a$10$1/m.F2AFOzy6Llgw6k/FAeZgJtLT6B3M01zs9RhStngVSq0sRNXza    \N    \N    \N    0    \N    \N    \N    \N    male
39542    Malika    Pacocha    julian@tromp.biz    \N    Togo    Colliertown    91416 Reginald Corner    75667-4397    Idaho    2017-11-12 22:00:37.87747    2017-11-12 22:00:37.87747    $2a$10$2suO6VxfZZLmxf6ojoFzZeR8HSWndhlVPNgiryBvh3PPBln7fijAK    \N    \N    \N    0    \N    \N    \N    \N    female
39543    Jacquelyn    Buckridge    adaline.heller@schadenorn.name    \N    Cook Islands    Langoshhaven    862 Claudie Views    51652    Tennessee    2017-11-12 22:00:37.995218    2017-11-12 22:00:37.995218    $2a$10$Y3DRKvGaLfpEy8E5NZA95eK/KyuPBcy1zvjtxJbE2GbdGX0U9zpwG    \N    \N    \N    0    \N    \N    \N    \N    female
39544    Julius    Hagenes    benny@jastschmeler.net    \N    Bulgaria    Osinskiberg    907 Oliver Tunnel    26353-3050    Illinois    2017-11-12 22:00:38.115153    2017-11-12 22:00:38.115153    $2a$10$p6FHyp1hNZ3jfVoHlB32SO6kteLJr6GzrADKBSZ01oGsKX1dKLCbO    \N    \N    \N    0    \N    \N    \N    \N    male
39545    Ricky    Hilpert    kaya@christiansen.net    \N    Grenada    South Zoila    954 Zemlak Crossroad    48572-4021    Idaho    2017-11-12 22:00:38.242471    2017-11-12 22:00:38.242471    $2a$10$UJDfI7gjjU3lXAc2o7rYF.wj37mO/4clRX9hk/dFAWZMdElb8E49q    \N    \N    \N    0    \N    \N    \N    \N    female
39546    Sallie    O'Reilly    theodore.schinner@dickens.co    \N    Serbia    Pfefferberg    686 June Pine    29370-2632    Hawaii    2017-11-12 22:00:38.35719    2017-11-12 22:00:38.35719    $2a$10$445BwMuR33e5LQT6YaynDuS2941MCfMkSa6f7kHM5JCTltbd1EXbS    \N    \N    \N    0    \N    \N    \N    \N    male
39547    Emanuel    Jones    ted@koepp.co    \N    Honduras    Arnoldhaven    97465 Deckow Green    94380-5717    Minnesota    2017-11-12 22:00:38.470558    2017-11-12 22:00:38.470558    $2a$10$W2H/ygWcAJ4UvY2ZpcEz/uJDLX7Lp/FlSgIdjrLegYMe8Hxcv3lHS    \N    \N    \N    0    \N    \N    \N    \N    female
39548    Ethelyn    Leffler    katharina_sipes@mertz.com    \N    Iraq    North Jennie    25567 Buckridge Isle    33645    Massachusetts    2017-11-12 22:00:38.587018    2017-11-12 22:00:38.587018    $2a$10$7yDR.JNC9p7avGnvaCNxl.tvDHCJkmfxmCCXPHizg2Mzl5vLQ7lZG    \N    \N    \N    0    \N    \N    \N    \N    male
39549    Rashawn    Dicki    lorna_feest@bailey.biz    \N    Guinea-Bissau    Stiedemannside    4720 Dayna Overpass    64382    Oklahoma    2017-11-12 22:00:38.703587    2017-11-12 22:00:38.703587    $2a$10$Cl3fNFrIXLGmJ62YSvoNRuBZToRP.3w33aC3iLRFnFihbUsyK4ZXS    \N    \N    \N    0    \N    \N    \N    \N    male
39550    Pearline    Casper    lilyan.schneider@turcotte.io    \N    Armenia    Maudbury    836 Madisen Passage    81871    Maine    2017-11-12 22:00:38.816496    2017-11-12 22:00:38.816496    $2a$10$n2Smr/ewCPTyn1bb/kWdUONNNqJDQfsjchfsQ/papcklDUiP5f.NW    \N    \N    \N    0    \N    \N    \N    \N    male
39551    Dawn    Walter    gielle@waters.co    \N    Uruguay    Gottliebview    854 Berry Knolls    64764-8659    Maine    2017-11-12 22:00:38.933081    2017-11-12 22:00:38.933081    $2a$10$up.C/sNd1VngbIFsKQLH9eiILzoynrbZ2MHPOg8Z7sTez0FwGv4uu    \N    \N    \N    0    \N    \N    \N    \N    female
39552    Wilton    Russel    erwin@barrowshammes.net    \N    Samoa    Port Cortez    800 Bode Burg    39822-0404    Nevada    2017-11-12 22:00:39.065474    2017-11-12 22:00:39.065474    $2a$10$bDJHdLVntdro8wHVfi50quImzvQ0McQuaPRteN4mqSYWbfK4msZOu    \N    \N    \N    0    \N    \N    \N    \N    female
39553    Pinkie    Hane    amy@rutherford.com    \N    Costa Rica    MacGyverfort    489 Conroy Lakes    21220    Delaware    2017-11-12 22:00:39.220276    2017-11-12 22:00:39.220276    $2a$10$JQkUrqPNxJr5g54orGY.Gev.msy3mIZ6KqKgyylvrKOcqLRq.rqYa    \N    \N    \N    0    \N    \N    \N    \N    female
39554    Geoffrey    McCullough    bulah@littlelueilwitz.org    \N    French Guiana    West Ramonshire    32994 Barrett Brook    91597    Virginia    2017-11-12 22:00:39.369682    2017-11-12 22:00:39.369682    $2a$10$ZGgfMxYFG3Nmil.DiEq27.SmNNecWr5Ld/cTrp57/R5oMd4yO.ONK    \N    \N    \N    0    \N    \N    \N    \N    male
39555    Leonard    Hartmann    vidal.stokes@okuneva.biz    \N    Pakistan    New Zulaberg    50979 Alfreda Highway    78009    Utah    2017-11-12 22:00:39.541856    2017-11-12 22:00:39.541856    $2a$10$ri7.29LCRRG/aGlkL1hNz.ACByEQhBRui6bv4/iuIbvdYtFQ9uEZS    \N    \N    \N    0    \N    \N    \N    \N    female
39556    John    Kuhic    lilla@johns.biz    \N    Sweden    South Wilson    2269 Torp Estates    89521    West Virginia    2017-11-12 22:00:39.717705    2017-11-12 22:00:39.717705    $2a$10$mintC0nIJTm9edpqXYtSb.7OHC9hOfz1DYLY9yyrzUUZwI8O9QjZa    \N    \N    \N    0    \N    \N    \N    \N    male
39557    Sally    Bartell    natalia.lebsack@rosenbaum.org    \N    Uganda    East Deja    4404 Piper Skyway    30256-5340    Texas    2017-11-12 22:00:39.866267    2017-11-12 22:00:39.866267    $2a$10$E9s2gan3G/fo80orPfY8GOvljg3DGqxlN.U4M5seLIw0y664emv.i    \N    \N    \N    0    \N    \N    \N    \N    female
39558    Brannon    Gerlach    percival.hintz@yundt.name    \N    Israel    East Jean    337 Gerhard Garden    66555    North Dakota    2017-11-12 22:00:39.985237    2017-11-12 22:00:39.985237    $2a$10$idC51w4/cyMooo7x3MatO.yxWKCtyo0ZpEZyvLiNNNG82RSmabUbG    \N    \N    \N    0    \N    \N    \N    \N    male
39559    Andres    Predovic    fletcher@stehr.io    \N    Jamaica    South Evangeline    37965 Alexzander Court    51643-1847    Oregon    2017-11-12 22:00:40.102058    2017-11-12 22:00:40.102058    $2a$10$5iWxqoa4mNmQrgj99/gAc.V5fo8pnNpNjF08ED6uQJ2VJStC5yyJu    \N    \N    \N    0    \N    \N    \N    \N    female
39560    Haley    Hyatt    kenny_keeling@funkcollier.net    \N    Botswana    Ziemannberg    15244 Cummings Trail    80766-9513    Oregon    2017-11-12 22:00:40.227504    2017-11-12 22:00:40.227504    $2a$10$FnJFh6oEJw2Iym8IWF34KeUx2lqpLIPp64Wvsds/pbaZ7l4Cs.G7q    \N    \N    \N    0    \N    \N    \N    \N    male
39561    Ron    Boyle    gregoria@shanahan.net    \N    Congo    Lizethburgh    8123 Torp Hill    66381    Ohio    2017-11-12 22:00:40.347803    2017-11-12 22:00:40.347803    $2a$10$xLosreQYZKacj7XHnqX.x.t6/tvFPndWUACufMo.beIJtgVmatKly    \N    \N    \N    0    \N    \N    \N    \N    female
39562    Brionna    Sawayn    margaretta_ward@batz.info    \N    Sweden    North Ashamouth    1456 Schimmel Stravenue    99177-2520    Alabama    2017-11-12 22:00:40.476201    2017-11-12 22:00:40.476201    $2a$10$Yns1GPMo01vjUURu0DyJkeihRc.7CaZZLUKcFkXD0EMDIp0KErXeK    \N    \N    \N    0    \N    \N    \N    \N    female
39563    Stacy    Turner    tyson_lang@blanda.co    \N    Czech Republic    North Jon    538 Reichert Coves    72844-0254    Washington    2017-11-12 22:00:40.603453    2017-11-12 22:00:40.603453    $2a$10$9IMxoCK7b5FQI0Jta3j7AOKA5CRDK2otzL6gyEOzS.KvxX3m5NcLu    \N    \N    \N    0    \N    \N    \N    \N    male
39564    Milford    Conroy    jocelyn@nicolasrodriguez.biz    \N    Norfolk Island    South Sydnee    73647 Adolph Extensions    55256-4918    Louisiana    2017-11-12 22:00:40.749377    2017-11-12 22:00:40.749377    $2a$10$HMq4Wn/UP5Q/BsY2kX2CfeQ2f.hizRvDFC3MLcWurh.5gNM5JBznO    \N    \N    \N    0    \N    \N    \N    \N    male
39565    Antoinette    Cartwright    orrin_thompson@dickensmacejkovic.biz    \N    Singapore    Celineburgh    755 Misael Well    41083    Iowa    2017-11-12 22:00:40.893101    2017-11-12 22:00:40.893101    $2a$10$4.3fOysMTKQC8Pm2vqb6HuLd3oqJUFCSQckq1b4UucVxU7xsRy5wy    \N    \N    \N    0    \N    \N    \N    \N    female
39566    Verda    Dicki    merritt.hamill@littel.info    \N    Sweden    Breitenbergmouth    9376 Tremblay Brooks    98706    South Carolina    2017-11-12 22:00:41.011842    2017-11-12 22:00:41.011842    $2a$10$/.VTNvFsAUH7c5B.suzheejHJbdbOMbLp2i27qq9xEDUeqbjkdj1e    \N    \N    \N    0    \N    \N    \N    \N    female
39567    Harrison    Tromp    bartholome.marquardt@berniersmitham.io    \N    Liechtenstein    East Arvelborough    374 Micheal Mount    68058    Idaho    2017-11-12 22:00:41.130317    2017-11-12 22:00:41.130317    $2a$10$7MBR6neJtS4ki7V26H6fhOwbGea0qptw2nyyRTauIcvioYHSYS0qC    \N    \N    \N    0    \N    \N    \N    \N    female
39568    Joe    Stracke    alia_beier@rennerdonnelly.co    \N    Serbia    West Tabithaberg    621 Evelyn Mission    26213    Indiana    2017-11-12 22:00:41.248023    2017-11-12 22:00:41.248023    $2a$10$mSqjFh00jY0VbaSy9r3UGeDl5D48gBGn8JkYSNCTNbX2SenXr38k6    \N    \N    \N    0    \N    \N    \N    \N    male
39569    Emilie    Schmeler    elia.schneider@leffler.biz    \N    Cook Islands    South Milton    467 Name Summit    19794    Hawaii    2017-11-12 22:00:41.388139    2017-11-12 22:00:41.388139    $2a$10$8vcSBhoME2FB8pbWKVhh2ujrGVoCHtl1BbT76EeZBqwhOQnU9N4.e    \N    \N    \N    0    \N    \N    \N    \N    female
39570    Mozelle    McDermott    daija.tremblay@ruel.biz    \N    Marshall Islands    New Geomouth    4384 Ziemann View    92868    Oregon    2017-11-12 22:00:41.519851    2017-11-12 22:00:41.519851    $2a$10$8Iz.dIxQjcmrlpnYT2F.Z.fN4Y8TMgi1IL9RgCd7pb1l1gxFyh2La    \N    \N    \N    0    \N    \N    \N    \N    female
39571    Wilton    Padberg    travis.koch@kling.name    \N    Republic of Korea    West Chad    76400 Eusebio Plain    40938    California    2017-11-12 22:00:41.653601    2017-11-12 22:00:41.653601    $2a$10$j1ocXg8FDRoWe4jEfHB83OrtBiWhK..GCrIXg/SLZMIGNKZkfoAs6    \N    \N    \N    0    \N    \N    \N    \N    female
39572    Micheal    Bayer    kaylin_reinger@ankundingcorkery.io    \N    Eritrea    West Bustermouth    36115 Abshire Gardens    53759    Nebraska    2017-11-12 22:00:41.791794    2017-11-12 22:00:41.791794    $2a$10$r3dwlCbLNU26mRITpHTEjuemZ8fzp1UfyVw2VasYDWoNVf5qzKGiC    \N    \N    \N    0    \N    \N    \N    \N    female
39573    Kristina    Yundt    sheila_roberts@volkman.com    \N    Serbia    Gerlachburgh    102 Ledner Tunnel    36126-4429    Virginia    2017-11-12 22:00:41.93946    2017-11-12 22:00:41.93946    $2a$10$CHzeFhLcz4QMXWtHtjXNh.Te5Nt8pGYyK7SXF5ITcnUIdypGUd4mW    \N    \N    \N    0    \N    \N    \N    \N    female
39574    Yasmine    Bahringer    brian.kerluke@skiles.org    \N    Lithuania    Watersmouth    890 Hahn Manor    14571    Colorado    2017-11-12 22:00:42.071068    2017-11-12 22:00:42.071068    $2a$10$WXCAto43TdQoswu3NfMf/OshFpjbPgfEbeQYPj7a6KS47bZHozA1S    \N    \N    \N    0    \N    \N    \N    \N    female
39575    Isobel    Barton    tomasa@larson.info    \N    Hong Kong    New Roosevelt    46671 Jettie Center    61204    Virginia    2017-11-12 22:00:42.190285    2017-11-12 22:00:42.190285    $2a$10$Iuj5j4nZadvamv2R9Mz06OTMzo9Kuzx44Yoh.pq46Zk33PbQuSdPm    \N    \N    \N    0    \N    \N    \N    \N    male
39576    Harry    Weimann    abbigail@moore.co    \N    Cambodia    Sanfordland    55874 Myles Isle    80044    California    2017-11-12 22:00:42.352305    2017-11-12 22:00:42.352305    $2a$10$kI/BOFhXWNuZJwwk6PfhQum9fMZRjbcon4BwZyTWL5AcJUJc3A2Yy    \N    \N    \N    0    \N    \N    \N    \N    female
39577    Wava    Dooley    cleve.torp@walter.org    \N    Heard Island and McDonald Islands    Boehmstad    2902 Tania Drives    11755-2952    Colorado    2017-11-12 22:00:42.512873    2017-11-12 22:00:42.512873    $2a$10$La4zg9macMV511dZm2UOU.SO.D6aU9UKsUgSJ4GC9kL9Mg3SvuC06    \N    \N    \N    0    \N    \N    \N    \N    female
39578    Maximillia    Smith    blaise@mrazlabadie.io    \N    Albania    South Omari    50474 Bernhard Terrace    36166-5635    Wisconsin    2017-11-12 22:00:42.63536    2017-11-12 22:00:42.63536    $2a$10$Iz8Bjs1T0FPpqcRNT6uWg.4a7bncvaULdGuyuQrXS1EmaZQXsRL6u    \N    \N    \N    0    \N    \N    \N    \N    male
39579    Nannie    Hand    pamela@steuber.co    \N    Ecuador    Mertzland    98223 Malvina Drives    56951    Iowa    2017-11-12 22:00:42.759675    2017-11-12 22:00:42.759675    $2a$10$aJf4Xxw4C5BNFsFGOMGlYu4S9mC1Px.GThgSDg60ydLFZRQ.3y5FS    \N    \N    \N    0    \N    \N    \N    \N    female
39580    Everette    Spinka    joseph@armstrongbatz.com    \N    Botswana    Sadyeburgh    38978 Van Brooks    21031-5024    Michigan    2017-11-12 22:00:42.921408    2017-11-12 22:00:42.921408    $2a$10$7phCCZnJNMhYGbElDyqVVOfeIpnWPLQA3xSyR0tmbwuVLs16rey/G    \N    \N    \N    0    \N    \N    \N    \N    female
39581    Jalon    Mosciski    chance@effertz.org    \N    Libyan Arab Jamahiriya    Boscohaven    4192 Gene Station    43514-6299    Minnesota    2017-11-12 22:00:43.036715    2017-11-12 22:00:43.036715    $2a$10$fXNeLddftakg9pt5H/OU.ukYUjNpYDiPCeTCUA65rL9fVBEP773jO    \N    \N    \N    0    \N    \N    \N    \N    female
39582    Adrien    Batz    gayle@grimes.net    \N    Netherlands    Lake Malvinaport    96800 Amiya Field    68601    Iowa    2017-11-12 22:00:43.159682    2017-11-12 22:00:43.159682    $2a$10$D5Evu2Cd98Vok9s85mkJhekZRc/f2uYFHvuzS3FuhK53okxNqe1VK    \N    \N    \N    0    \N    \N    \N    \N    female
39583    Bo    Collier    janea@loweconnelly.com    \N    Moldova    New Roman    48593 Leopold Parkways    17208    South Dakota    2017-11-12 22:00:43.278481    2017-11-12 22:00:43.278481    $2a$10$dTpdgP.XwCvoAq1W6t5Qh.0p53R6QfP5GBvg94zAByebRewaO1Zjq    \N    \N    \N    0    \N    \N    \N    \N    female
39584    Natalia    Sanford    serena.wintheiser@boyer.info    \N    Nauru    North Bette    2565 Norberto Expressway    10132    North Dakota    2017-11-12 22:00:43.47341    2017-11-12 22:00:43.47341    $2a$10$s41n6ZrWHBbzpu4/YAV6NusagN1N7TznNc4UUSKoHOeIXr9n.etHi    \N    \N    \N    0    \N    \N    \N    \N    male
39585    Oral    Mills    geo@schultzroob.com    \N    Cayman Islands    Lake Enricomouth    858 Eduardo Causeway    22443-7088    Missouri    2017-11-12 22:00:43.647557    2017-11-12 22:00:43.647557    $2a$10$Y6OxU6WEOjJ0zcgHRmw9Pev3itoYa0n9boH6K6DnDu5oYJNyB50Da    \N    \N    \N    0    \N    \N    \N    \N    male
39586    Marta    Lowe    robbie.nolan@littel.biz    \N    Papua New Guinea    Adaport    81821 Lillie Land    19947    Connecticut    2017-11-12 22:00:43.840033    2017-11-12 22:00:43.840033    $2a$10$KJd7fCjKCkM51NqRD5B43O44qBtDYcG5Dwhov0e0481U2KhJidnqm    \N    \N    \N    0    \N    \N    \N    \N    male
39587    Korbin    Langosh    verda.stamm@boyle.name    \N    Israel    Lakinport    63263 Jerde Point    60462-0913    South Carolina    2017-11-12 22:00:44.026909    2017-11-12 22:00:44.026909    $2a$10$hYe8bNjVlYllAgEkUftGAuv09UqQsv1VLuCq9fnQg.LPhZ6f/t3t.    \N    \N    \N    0    \N    \N    \N    \N    male
39588    Delphia    Morissette    alvera_crist@hauckmoen.name    \N    Saint Vincent and the Grenadines    West Mireille    9786 Stanton Row    56798    Minnesota    2017-11-12 22:00:44.168512    2017-11-12 22:00:44.168512    $2a$10$cye5tyxnmvrogi7ZPu8Vc./0dOfJiNp71zy9Qxpg8ExgufLXPe8ii    \N    \N    \N    0    \N    \N    \N    \N    female
39589    Johanna    Rempel    karlie.barrows@hermann.net    \N    Monaco    Hirtheville    5739 Annabelle Crest    49317    South Dakota    2017-11-12 22:00:44.37528    2017-11-12 22:00:44.37528    $2a$10$aV4AUMiPGqc57mmBVf0cg.vG1TkGc4N7qUGmSzvvRJpYoZA3RpY1y    \N    \N    \N    0    \N    \N    \N    \N    male
39590    Carlo    Hansen    dakota_cartwright@hermandouglas.name    \N    Cote d'Ivoire    Binstown    23239 Gottlieb Mount    11427    Missouri    2017-11-12 22:00:44.530985    2017-11-12 22:00:44.530985    $2a$10$kdh8ha2F1GYCmO9ozAQtuOjwPgdKDmGEsO0CXlrv7meHsMZ.BCIjG    \N    \N    \N    0    \N    \N    \N    \N    male
39591    Ophelia    Kilback    pink@funk.biz    \N    Australia    Loutown    6181 Giovanni Prairie    68655-3187    Georgia    2017-11-12 22:00:44.667768    2017-11-12 22:00:44.667768    $2a$10$DsEFCB9Kz/.tpQ6ok9n8LeRqDUDztt3QR08lC/5OWBya7b3HsjV0S    \N    \N    \N    0    \N    \N    \N    \N    female
39592    Jamie    Mitchell    victoria@kuhlman.com    \N    Nicaragua    South Brycefurt    7408 Kuphal Fields    53959-5254    North Carolina    2017-11-12 22:00:44.788671    2017-11-12 22:00:44.788671    $2a$10$XX/S78d5rbAcKCR6zMWav.ggf.Ozzx1UIEwqDkpnp7Q/4sVbAq2D2    \N    \N    \N    0    \N    \N    \N    \N    male
39593    Sincere    Gaylord    sheridan_abshire@harber.info    \N    Eritrea    Bahringerfort    62363 Nils Circle    56116    Connecticut    2017-11-12 22:00:44.908396    2017-11-12 22:00:44.908396    $2a$10$9k7aMntI.iZF1JoqfFYY2OieD5u3WivusO.6ELIp6ueyOZv1OV0w.    \N    \N    \N    0    \N    \N    \N    \N    male
39594    Mary    Borer    laisha_runolfsdottir@weimann.co    \N    Puerto Rico    Kimton    5632 Macejkovic Mountain    58004    West Virginia    2017-11-12 22:00:45.028896    2017-11-12 22:00:45.028896    $2a$10$q2btBlMGB4GL1AL6vYIKl.3r9Mpn1t6ai5uTiFdihtcY6Uexw7G0G    \N    \N    \N    0    \N    \N    \N    \N    male
39595    Jocelyn    Streich    ardith@berge.biz    \N    Antigua and Barbuda    Port Juniorport    76641 Shayna Highway    60661    North Dakota    2017-11-12 22:00:45.152369    2017-11-12 22:00:45.152369    $2a$10$b4sLFsn064cAxrBIPftTh.OjxoQUkr5P4dh1aY1.PNWTCE4hlKxSG    \N    \N    \N    0    \N    \N    \N    \N    male
39596    Jeremy    Dach    lavina@raynorflatley.io    \N    United States of America    South Narcisostad    6476 Grayce Skyway    16689    Connecticut    2017-11-12 22:00:45.323708    2017-11-12 22:00:45.323708    $2a$10$oPdnn4fhV2PyigGosB5sTerZguoar.trDzT3XsB3mh8UHl/wL6ekW    \N    \N    \N    0    \N    \N    \N    \N    male
39597    Margaretta    Kautzer    creola@davislehner.name    \N    Slovenia    Lake Vita    97405 Veum Causeway    47116    Missouri    2017-11-12 22:00:45.494687    2017-11-12 22:00:45.494687    $2a$10$TGZiF76Ls01Xyb7iTgD45u/o5Sp8ZEngKE7Ue7YhnCPl.Mmq4mJi.    \N    \N    \N    0    \N    \N    \N    \N    male
39598    Aiyana    Collier    emilia@bogan.net    \N    Algeria    Lake Flo    42462 Ruben Motorway    94197    Connecticut    2017-11-12 22:00:45.657244    2017-11-12 22:00:45.657244    $2a$10$1uoS2Lzq8BNkD0j5FEobb.Fg8FT54ik/BLYzY5A7O3v3bDQdYPMAC    \N    \N    \N    0    \N    \N    \N    \N    male
39599    Elton    Powlowski    hipolito@leannon.info    \N    Nigeria    Dannymouth    4920 Keaton Ports    77074    Utah    2017-11-12 22:00:45.776364    2017-11-12 22:00:45.776364    $2a$10$spseuowSIAwTO77R7rptHeJZHbz1Rb8zmRjScRzGB8HQ7k8ROHHMi    \N    \N    \N    0    \N    \N    \N    \N    female
39600    Napoleon    Roob    leopold.lakin@beer.co    \N    Swaziland    Makaylaville    66307 Walker Cove    22884-0074    Ohio    2017-11-12 22:00:45.91063    2017-11-12 22:00:45.91063    $2a$10$16ptLt9uj8zo3yWORXUOLO5qHN9zeBsGZvZwGWiY0RT54Z/YdY78.    \N    \N    \N    0    \N    \N    \N    \N    female
39601    Madilyn    Champlin    josie@colliergulgowski.biz    \N    French Polynesia    Volkmanton    5816 Braun Mill    29856-2208    California    2017-11-12 22:00:46.056877    2017-11-12 22:00:46.056877    $2a$10$YpMoo7McVwmzIdnERsQR0eGJUfyrwzkSBxaHqL7btIF5A6bxHLQVe    \N    \N    \N    0    \N    \N    \N    \N    female
39602    Muriel    Dach    davon@cormier.name    \N    Wallis and Futuna    South Lincoln    830 Okuneva Shoals    53714-3849    Kansas    2017-11-12 22:00:46.173739    2017-11-12 22:00:46.173739    $2a$10$DBEv2HPvj7.FtcsYdth6zeWZ..GxmjurFJlLhRwmWSL4KzCS6RZOG    \N    \N    \N    0    \N    \N    \N    \N    female
39603    Hanna    Bogan    macy.osinski@conroy.org    \N    Seychelles    North Otilia    987 Mckenna Summit    59037    Florida    2017-11-12 22:00:46.288931    2017-11-12 22:00:46.288931    $2a$10$cDxvNkhVoWFly5Jd2QqHOOIL9XiHKA9yq1/ZfDW6c1ZQWqePDk3Te    \N    \N    \N    0    \N    \N    \N    \N    male
39604    Stanton    Bednar    jarred_cummings@breitenberg.com    \N    French Southern Territories    Gutmannmouth    45646 Botsford Burg    87596    Idaho    2017-11-12 22:00:46.417799    2017-11-12 22:00:46.417799    $2a$10$VvkgXt6kJGU1b0PlFzKrsuqh5omAyC1DCucntn6Cio.ATG2GSGF1i    \N    \N    \N    0    \N    \N    \N    \N    male
39605    Timmothy    Kiehn    hellen@waters.org    \N    Lebanon    Hillstown    331 Abner Freeway    15349    Arizona    2017-11-12 22:00:46.536734    2017-11-12 22:00:46.536734    $2a$10$jxqPC.tYBsAOAX4xEVvOF.0KXp/QzNyuREpAO74cUT2qkedSkJXJy    \N    \N    \N    0    \N    \N    \N    \N    female
39606    Ramiro    Doyle    scottie@kuhlmanmoriette.io    \N    Jamaica    Mayertside    2648 Crist Views    32905-7369    Virginia    2017-11-12 22:00:46.654008    2017-11-12 22:00:46.654008    $2a$10$ob5mitCdAKqKhG4SSXJb4uaHuwsmrU5jYXEXZlsIaL3b/HTgkYWfa    \N    \N    \N    0    \N    \N    \N    \N    female
39607    Marjorie    Trantow    jerald@greenfelder.biz    \N    Holy See (Vatican City State)    Beierfurt    74815 Halvorson Lake    99851-4416    Missouri    2017-11-12 22:00:46.775505    2017-11-12 22:00:46.775505    $2a$10$I4CD4BXlx/ESLG/Ipa34MOkCf8LxARN/PYqi86zDoa7BX28U9cuUW    \N    \N    \N    0    \N    \N    \N    \N    female
39608    Darrel    Hermann    cristal@beierhayes.name    \N    Switzerland    East Cortneyville    7820 Paolo Parkway    43145    Vermont    2017-11-12 22:00:46.901396    2017-11-12 22:00:46.901396    $2a$10$gxg.p8S69wYfxJu0gP3kNeciiFK.iOhRP1T6UZbZ.43/q8ZZcIB4i    \N    \N    \N    0    \N    \N    \N    \N    male
39609    Aglae    Runolfsson    trinity_ruecker@harris.net    \N    New Zealand    Lake Amelyberg    112 Janet Knoll    15574-4329    Missouri    2017-11-12 22:00:47.02288    2017-11-12 22:00:47.02288    $2a$10$9A2.aUdc0T3K2LpeAhjTxux6mAg/h/mZFHRSqYtUob.zcDQC8OYPW    \N    \N    \N    0    \N    \N    \N    \N    female
39610    Rhiannon    Mante    melody_williamson@lueilwitz.io    \N    Argentina    Lake Lavadaside    10488 Stevie Crest    98221    Delaware    2017-11-12 22:00:47.18156    2017-11-12 22:00:47.18156    $2a$10$Ep2xJAVfWE7J09PofI3jIOqAk2Nbl.sWsyz1TpnsYzpe5lEXtokuO    \N    \N    \N    0    \N    \N    \N    \N    female
39611    Zoey    Waters    stephania@schuppe.com    \N    Saint Lucia    Lake Willis    855 Bogan Stream    83203-9021    Indiana    2017-11-12 22:00:47.336765    2017-11-12 22:00:47.336765    $2a$10$MX3iLTtiMCSov0f6PNHZ0e2sX6Xf4Zc1vAR4TV7iZ0/wfXjfndKAO    \N    \N    \N    0    \N    \N    \N    \N    female
39612    Brant    Brekke    kendrick@marks.biz    \N    Tuvalu    New Clarissaview    7819 Aufderhar Squares    93403-7160    Georgia    2017-11-12 22:00:47.450869    2017-11-12 22:00:47.450869    $2a$10$wPoSLTk0j6Bzeq6EHNzPwuJqajOaE2BALD0i38mmluduzNtA.Oa2.    \N    \N    \N    0    \N    \N    \N    \N    male
39613    Annalise    Mueller    jameson@howellnitzsche.name    \N    Mozambique    Fadelmouth    6570 Christa Mall    19745    Kentucky    2017-11-12 22:00:47.576996    2017-11-12 22:00:47.576996    $2a$10$RMfr65YoPxFCPGFBxERv2Ook1bCE1/SpUmm1iiTLw7gVxV3.mISFK    \N    \N    \N    0    \N    \N    \N    \N    female
39614    Lila    Thompson    treie@millerwuckert.name    \N    Micronesia    Aliyaburgh    902 Deckow Rapids    60944    Tennessee    2017-11-12 22:00:47.700251    2017-11-12 22:00:47.700251    $2a$10$hAC4Mbj5FN5Qp88oz9t2mOEj/5qtXLVVlzwr8LpJZtqvCFc1O2mqO    \N    \N    \N    0    \N    \N    \N    \N    female
39615    Brandt    Hahn    evans@denesik.com    \N    Dominica    Freddieport    638 Roberta Heights    25156-5744    Connecticut    2017-11-12 22:00:47.825758    2017-11-12 22:00:47.825758    $2a$10$bqzZ0FLNqDOeEeEqLCxBmeurfLRvx2.PbZcyJwkc2vixy4Eonegsu    \N    \N    \N    0    \N    \N    \N    \N    male
39616    Verda    Pagac    mona@zulauf.net    \N    Latvia    West Evieborough    4046 Tillman Mountain    66811-6313    Massachusetts    2017-11-12 22:00:47.956246    2017-11-12 22:00:47.956246    $2a$10$q4IaCEPoIt72Vps/n8TM7egaliEtvKj1X5ZZbjTKkWod7MzSKNVVm    \N    \N    \N    0    \N    \N    \N    \N    male
39617    Emilie    Marks    lea.dooley@kuhnrutherford.net    \N    Slovenia    Port Lura    9266 Fisher Causeway    16471-6940    Washington    2017-11-12 22:00:48.117044    2017-11-12 22:00:48.117044    $2a$10$D5HrXy8nysTkhepeVD66U.WWA/Per7uMJYjFLr1rGkjsaexXro47y    \N    \N    \N    0    \N    \N    \N    \N    male
39618    Erwin    Johnston    gina.steuber@champlin.io    \N    Romania    East Louisaborough    6270 Geovanny Rapid    73650-2429    Maine    2017-11-12 22:00:48.248567    2017-11-12 22:00:48.248567    $2a$10$VGFN5npkEseYWyVodvF/WOCDEZ5QRJD7aPgCZkquL9K19doSUZCxC    \N    \N    \N    0    \N    \N    \N    \N    female
11104    Dewayne    Bauch    stephanie@kiehn.name    \N    Gabon    South Iva    110 Dach River    14236    New York    2016-07-14 22:43:04.809012    2016-10-14 13:02:29.157291        \N    \N    \N    0    \N    \N    \N    \N    male
11361    Columbus    Breitenberg    jaida@dooley.info    \N    Congo    West Frankie    2009 Sauer Cove    74331-7922    Missouri    2016-08-12 04:20:56.142736    2016-10-14 13:02:29.291415        \N    \N    \N    0    \N    \N    \N    \N    male
11078    Deron    Crona    charlie@mann.co    \N    Comoros    Savannahaven    482 Elyse Pine    90248    Illinois    2016-07-26 13:22:38.707077    2016-10-14 13:02:29.303813        \N    \N    \N    0    \N    \N    \N    \N    female
14909    Finn    Wiegand    sheridan@lowe.info    \N    Samoa    South Wilmer    7983 Keven Villages    84498    Iowa    2016-06-30 17:16:53.821473    2016-10-14 13:02:24.583316        \N    \N    \N    0    \N    \N    \N    \N    male
15488    Eloise    Maggio    pedro@braun.com    \N    Romania    Lake Norberto    6356 Amiya Forges    57522    New Mexico    2016-09-12 05:48:44.015481    2016-10-14 13:02:24.58658        \N    \N    \N    0    \N    \N    \N    \N    female
11459    Marian    Torphy    alejandrin@vandervort.name    \N    Kazakhstan    South Eliane    6245 Hammes Roads    44203    Illinois    2016-08-26 05:21:08.080786    2016-10-14 13:02:29.917419        \N    \N    \N    0    \N    \N    \N    \N    female
11460    Mikayla    Stroman    friedrich@lakinrolfson.co    \N    Bulgaria    Port Xzavierport    72906 Alvah Fork    62087    Michigan    2016-07-25 00:48:39.754537    2016-10-14 13:02:29.921763        \N    \N    \N    0    \N    \N    \N    \N    male
11510    Emilia    Quigley    arch@jenkins.name    \N    Bulgaria    Murphyburgh    533 Runolfsdottir Harbors    63406    Ohio    2016-09-27 20:02:09.012047    2016-10-14 13:02:30.198616        \N    \N    \N    0    \N    \N    \N    \N    female
11557    Leslie    Reichel    roxane@heller.org    \N    Peru    Adalinefurt    209 Gleichner Lane    42003-6913    Arkansas    2016-08-07 20:12:45.922934    2016-10-14 13:02:30.515517        \N    \N    \N    0    \N    \N    \N    \N    female
11652    Otilia    Streich    jeanne_toy@strosinhamill.biz    \N    Jordan    Genevievebury    575 Gleichner Meadow    35342    Connecticut    2016-08-03 13:38:12.941751    2016-10-14 13:02:30.967339        \N    \N    \N    0    \N    \N    \N    \N    female
11653    Carroll    Wisoky    tara@halvorson.biz    \N    Egypt    Jaidenmouth    55513 Eriberto Roads    24150    New Mexico    2016-08-16 13:01:09.800078    2016-10-14 13:02:30.972477        \N    \N    \N    0    \N    \N    \N    \N    male
11654    Hassie    Terry    rosetta@ortiz.co    \N    Tokelau    West Leonardo    1259 Savion Radial    69806-0237    Wyoming    2016-07-24 18:55:43.105225    2016-10-14 13:02:30.977118        \N    \N    \N    0    \N    \N    \N    \N    female
16014    Jeanne    Frami    enid@bruen.com    \N    Jersey    Manuelatown    892 Bode Ports    35417    South Dakota    2016-07-28 23:49:04.758855    2016-10-14 13:02:24.594864        \N    \N    \N    0    \N    \N    \N    \N    male
16246    Colt    Spencer    doug_fritsch@schinner.co    \N    Iraq    East Stewart    3095 Robel Loaf    83170-9295    Maine    2016-08-14 07:18:12.947271    2016-10-14 13:02:24.598971        \N    \N    \N    0    \N    \N    \N    \N    female
11984    Herminia    Littel    nakia@runolfsdottirkrajcik.co    \N    Poland    North Michaelatown    86101 Haley Forest    16544-6894    Colorado    2016-07-31 17:50:38.526056    2016-10-14 13:02:32.519104        \N    \N    \N    0    \N    \N    \N    \N    male
12032    Raheem    Gorczany    vesta@bruen.org    \N    Indonesia    Cletusview    64648 Cormier Lodge    81970    Pennsylvania    2016-08-27 04:27:01.463811    2016-10-14 13:02:32.768563        \N    \N    \N    0    \N    \N    \N    \N    male
16906    Minnie    Metz    jamarcus@volkman.info    \N    Kazakhstan    East Juneton    535 Mireya Lane    19032    Alabama    2016-08-29 16:51:07.134841    2016-10-14 13:02:24.604476        \N    \N    \N    0    \N    \N    \N    \N    male
17062    Unique    Aufderhar    ethan@howell.io    \N    Bangladesh    New Coty    5724 Upton Avenue    47989-9681    Delaware    2016-08-25 12:29:06.7447    2016-10-14 13:02:24.60864        \N    \N    \N    0    \N    \N    \N    \N    male
17540    Scarlett    Upton    bo@hahn.org    \N    China    Lake Curtis    1500 Effertz Plaza    16537    Wisconsin    2016-09-05 10:43:28.455234    2016-10-14 13:02:24.612708        \N    \N    \N    0    \N    \N    \N    \N    female
12230    Jasen    Farrell    xander@williamson.info    \N    Norway    Emilianoside    578 Wayne Roads    59590-6842    Wyoming    2016-07-11 04:10:32.219046    2016-10-14 13:02:33.597117        \N    \N    \N    0    \N    \N    \N    \N    female
12319    Mariane    Goyette    tania.reynolds@howelldoyle.name    \N    Yemen    New Arden    68392 Jones Square    99597-5040    Missouri    2016-09-26 22:16:54.748198    2016-10-14 13:02:33.792755        \N    \N    \N    0    \N    \N    \N    \N    male
12323    Norris    Bayer    camron@greenfelder.io    \N    Vietnam    Brownhaven    125 Kris Springs    74181-7699    New York    2016-09-13 18:41:29.510372    2016-10-14 13:02:33.991712        \N    \N    \N    0    \N    \N    \N    \N    male
17771    Letha    Blanda    macie@jones.net    \N    Kiribati    East Rosannaview    243 Isabella Locks    96754    Tennessee    2016-09-10 17:58:27.740458    2016-10-14 13:02:24.617007        \N    \N    \N    0    \N    \N    \N    \N    male
12427    Liam    White    gage@parisiankuhic.com    \N    Seychelles    Laurieport    437 Suzanne Loaf    59816    Iowa    2016-06-25 20:08:53.629155    2016-10-14 13:02:34.385987        \N    \N    \N    0    \N    \N    \N    \N    female
12514    Torey    Will    daphney_nienow@upton.info    \N    French Guiana    Domenicafort    804 Smitham Isle    38885-8294    New Hampshire    2016-08-02 23:37:24.791992    2016-10-14 13:02:34.788478        \N    \N    \N    0    \N    \N    \N    \N    female
12634    Jerry    Terry    lenny@mayer.co    \N    Peru    Fisherton    672 Destiney Drive    50571-3154    Kansas    2016-08-18 21:54:28.658313    2016-10-14 13:02:35.191749        \N    \N    \N    0    \N    \N    \N    \N    female
18380    Theresa    Hane    gus_wilderman@rogahn.org    \N    Tanzania    Torphyton    9123 Jada Station    16374    Nebraska    2016-08-01 01:03:23.130095    2016-10-14 13:02:24.621943        \N    \N    \N    0    \N    \N    \N    \N    female
18586    Misael    Sauer    gaylord@mraz.co    \N    Luxembourg    North Mathew    66806 Pfeffer Garden    76443    Florida    2016-07-14 04:54:20.610992    2016-10-14 13:02:24.626098        \N    \N    \N    0    \N    \N    \N    \N    female
12853    Leland    Halvorson    darrick_casper@kunde.info    \N    Ukraine    Sawaynhaven    1936 Jast Locks    75538    Hawaii    2016-08-16 02:14:36.246439    2016-10-14 13:02:36.403049        \N    \N    \N    0    \N    \N    \N    \N    female
12854    Daphney    Marks    tyrel@rosenbaumdicki.co    \N    Iran    Favianshire    1532 Elise Rue    84133-9535    New Jersey    2016-08-13 07:07:48.382713    2016-10-14 13:02:36.407781        \N    \N    \N    0    \N    \N    \N    \N    male
12857    Jevon    Stokes    beatrice@walterjohnson.info    \N    Mauritania    Port Haskell    75467 Owen Loop    57946    New Jersey    2016-08-16 11:30:58.22874    2016-10-14 13:02:36.419832        \N    \N    \N    0    \N    \N    \N    \N    female
12569    Jimmie    Hills    frieda@huel.name    \N    Jersey    Eberthaven    279 McLaughlin Spur    56760    Idaho    2016-06-29 04:53:59.788931    2016-10-14 13:02:36.813989        \N    \N    \N    0    \N    \N    \N    \N    male
13047    Nat    Dare    danika_boyer@carter.biz    \N    Guyana    Hicklechester    77946 Magnus Vista    79521-8701    Florida    2016-08-23 02:18:38.07501    2016-10-14 13:02:37.542827        \N    \N    \N    0    \N    \N    \N    \N    male
13048    Erik    Dare    abdullah_wilderman@hermannrowe.info    \N    Thailand    Port Henderson    591 Henry Plain    15650    Mississippi    2016-07-26 02:30:59.762251    2016-10-14 13:02:37.55058        \N    \N    \N    0    \N    \N    \N    \N    female
13249    Elroy    Treutel    nash@mrazmiller.io    \N    Serbia    West Enoch    6066 Lee Pine    30730-5698    Oregon    2016-08-13 07:45:33.978471    2016-10-14 13:02:38.979646        \N    \N    \N    0    \N    \N    \N    \N    female
13343    Jace    Abshire    blanca@schamberger.org    \N    Andorra    East Georgiannaton    1481 Wiegand Mall    74263    Missouri    2016-07-24 14:15:25.14726    2016-10-14 13:02:39.485848        \N    \N    \N    0    \N    \N    \N    \N    female
13344    Albertha    Langosh    isom@hirthehackett.org    \N    Kenya    Lulaport    1191 Hollie Union    30578    South Carolina    2016-09-26 09:49:15.908815    2016-10-14 13:02:39.492998        \N    \N    \N    0    \N    \N    \N    \N    male
13399    Matt    Cormier    eldridge.nader@muller.com    \N    Gabon    East Amanda    194 Heaney Tunnel    34502    Georgia    2016-07-30 23:35:07.65856    2016-10-14 13:02:39.712357        \N    \N    \N    0    \N    \N    \N    \N    female
13486    Terrell    Kihn    elyse@jacobson.io    \N    China    Hickleview    128 Jones Mountains    60152    Indiana    2016-06-29 07:37:22.00675    2016-10-14 13:02:40.168071        \N    \N    \N    0    \N    \N    \N    \N    female
13293    Johan    Sporer    vada@will.biz    \N    Myanmar    East Colbytown    936 Wilkinson Land    18420    Maine    2016-07-10 19:55:48.579937    2016-10-14 13:02:41.215907        \N    \N    \N    0    \N    \N    \N    \N    female
36779    Margarett    Gerlach    madelyn@luettgen.io    \N    Namibia    New Eldridge    88598 Sadye Locks    50439-6505    Massachusetts    2017-09-16 22:00:16.721258    2017-09-16 22:00:16.721258    $2a$10$8MLWO30RNr9lbDpOvyuKyOLc.kQ3rX.wpAecy/Q2ZkgQ78/jYCaUy    \N    \N    \N    0    \N    \N    \N    \N    female
36780    Alda    Davis    fritz@cummerata.biz    \N    Slovakia (Slovak Republic)    Lake Paulatown    53624 Leonora Vista    22202    Missouri    2017-09-16 22:00:16.879529    2017-09-16 22:00:16.879529    $2a$10$sUJVFhNkZxEHm/34ueHbAulD.P6AUUU7fCJRtVTM4XdhqEGS3v97u    \N    \N    \N    0    \N    \N    \N    \N    male
36781    Stanley    Lueilwitz    savanah@roob.info    \N    Brazil    Lake Scotfurt    70543 Eileen Trace    48484-9153    Georgia    2017-09-16 22:00:16.996556    2017-09-16 22:00:16.996556    $2a$10$Z0FcC0XJMupE1NVj2YY9IOpODMV7b3gmzHgA26UQI1t4nbPe2XZZG    \N    \N    \N    0    \N    \N    \N    \N    male
14025    Columbus    Abshire    taya_becker@quigley.name    \N    Micronesia    Omariborough    832 Prohaska Hollow    56458-6787    Florida    2016-08-28 15:35:34.752329    2016-10-14 13:02:43.090165        \N    \N    \N    0    \N    \N    \N    \N    male
14119    Mylene    Rippin    solon@larson.info    \N    Venezuela    New Bertrand    467 Spencer Islands    70685-3764    New Hampshire    2016-07-21 13:23:04.347534    2016-10-14 13:02:43.659428        \N    \N    \N    0    \N    \N    \N    \N    female
18997    Tyrese    Cole    trevion@robel.org    \N    Congo    Port Maybell    613 Ron Isle    10478-6043    Colorado    2016-06-26 16:48:14.930527    2016-10-14 13:02:24.632539        \N    \N    \N    0    \N    \N    \N    \N    male
19355    Leonard    Johnson    bobbie@hudson.co    \N    Peru    Dedrickland    141 Harmony Ports    54339    Vermont    2016-09-26 21:02:12.723487    2016-10-14 13:02:24.636282        \N    \N    \N    0    \N    \N    \N    \N    male
19511    Delmer    Cronin    antonia@ledner.net    \N    Iraq    West Laila    514 Rau Groves    58228    Kentucky    2016-08-05 22:05:05.493016    2016-10-14 13:02:24.641209        \N    \N    \N    0    \N    \N    \N    \N    male
14405    Esmeralda    Grady    harley@frami.net    \N    Guernsey    West Keely    36149 Kunze Meadow    44488-3623    Rhode Island    2016-08-24 00:38:01.625563    2016-10-14 13:02:45.363013        \N    \N    \N    0    \N    \N    \N    \N    female
14408    Myrtle    Green    tobin@willmscrooks.net    \N    Rwanda    New Karianne    37949 Laisha Ports    67441    Virginia    2016-09-29 11:00:22.474905    2016-10-14 13:02:45.368985        \N    \N    \N    0    \N    \N    \N    \N    male
19652    Nia    Auer    jayne@raudubuque.name    \N    Cameroon    Joaniefort    77504 Batz Well    59546    Arkansas    2016-08-20 10:05:32.658027    2016-10-14 13:02:24.646662        \N    \N    \N    0    \N    \N    \N    \N    male
10457    Sidney    Howe    gene@kutch.name    \N    Sierra Leone    East Concepcion    8378 Ortiz Flat    27923    Alaska    2016-07-31 16:47:15.967567    2016-10-14 13:02:26.239054        \N    \N    \N    0    \N    \N    \N    \N    male
14596    Shakira    Hodkiewicz    griffin@davis.name    \N    Comoros    Cristalhaven    8911 Buckridge Gardens    91692    Connecticut    2016-08-06 18:54:35.093327    2016-10-14 13:02:47.098108        \N    \N    \N    0    \N    \N    \N    \N    female
14644    Raul    Lang    cameron.cremin@schulist.info    \N    Netherlands Antilles    South Mayrashire    321 Price Pike    63955-8413    Rhode Island    2016-07-28 11:27:19.526921    2016-10-14 13:02:47.352985        \N    \N    \N    0    \N    \N    \N    \N    male
14992    Kaitlin    Kulas    carolanne.leuschke@reichertmohr.net    \N    Tonga    Howetown    4481 Kemmer Hills    31772    Montana    2016-06-27 18:06:35.502516    2016-10-14 13:02:50.727092        \N    \N    \N    0    \N    \N    \N    \N    male
14993    Ivah    Herzog    louisa_green@fritschkoch.org    \N    Denmark    North Alia    424 Dickinson Loop    48639-8750    Maryland    2016-07-23 15:05:30.085807    2016-10-14 13:02:50.741601        \N    \N    \N    0    \N    \N    \N    \N    male
15088    Dorothea    Bauch    marilie@mayer.co    \N    Virgin Islands, U.S.    Hodkiewiczhaven    392 Haley Pine    35505-7399    Wisconsin    2016-08-17 23:46:48.430249    2016-10-14 13:02:51.224389        \N    \N    \N    0    \N    \N    \N    \N    female
15187    Wilhelmine    Kertzmann    matilda@krajcik.com    \N    Serbia    Lake Lonnie    249 Powlowski Hollow    64571    Massachusetts    2016-06-24 13:48:37.132842    2016-10-14 13:02:51.671291        \N    \N    \N    0    \N    \N    \N    \N    female
15188    Philip    Gerhold    maximo@smithameichmann.net    \N    Burkina Faso    Sawaynville    4474 Aaliyah Parkway    35925-0658    Arizona    2016-09-27 22:25:32.426088    2016-10-14 13:02:51.678229        \N    \N    \N    0    \N    \N    \N    \N    male
10458    Vance    Bogan    elsie@treutel.io    \N    Haiti    Zachariahfort    428 Weissnat Spurs    59150-4628    Kentucky    2016-08-05 21:50:40.347226    2016-10-14 13:02:26.255729        \N    \N    \N    0    \N    \N    \N    \N    male
15286    Nyah    McGlynn    izabella@daugherty.co    \N    Colombia    Rueckertown    318 Alene Fort    37962    Georgia    2016-08-22 20:47:48.981942    2016-10-14 13:02:52.073224        \N    \N    \N    0    \N    \N    \N    \N    female
15385    Nelson    Vandervort    verner@braun.io    \N    Tajikistan    Lydaburgh    20221 Kaia Mill    68696    Arizona    2016-07-15 04:43:58.178003    2016-10-14 13:02:52.481917        \N    \N    \N    0    \N    \N    \N    \N    male
15628    Rosanna    Hagenes    coralie@hansenbarrows.co    \N    Uganda    West Otto    549 Gordon Hill    69148-0272    Nevada    2016-09-06 17:08:07.121052    2016-10-14 13:02:53.498019        \N    \N    \N    0    \N    \N    \N    \N    female
15917    Lyla    Pacocha    malcolm@schuster.io    \N    Mauritius    Lake Amelie    80826 Molly Circles    77242-6474    Minnesota    2016-06-25 08:28:48.132597    2016-10-14 13:02:54.826358        \N    \N    \N    0    \N    \N    \N    \N    male
16011    Glenna    Balistreri    andre@stiedemannlesch.io    \N    Lesotho    South Darronport    512 Otilia Divide    17583-0195    Colorado    2016-09-24 11:38:14.980037    2016-10-14 13:02:55.20917        \N    \N    \N    0    \N    \N    \N    \N    female
16012    Kirsten    Nicolas    connie_lindgren@ohara.io    \N    Saint Pierre and Miquelon    North Raegan    33397 Vickie Path    89936    California    2016-09-08 14:41:09.707446    2016-10-14 13:02:55.21315        \N    \N    \N    0    \N    \N    \N    \N    female
10606    Willis    Beahan    icie@kuhn.net    \N    Tuvalu    South Kayleemouth    9219 Bret Course    21940    Georgia    2016-08-19 12:05:59.510038    2016-10-14 13:02:26.842663        \N    \N    \N    0    \N    \N    \N    \N    male
10841    Elvis    Lynch    merle@ebert.com    \N    Zambia    Wuckertville    11747 Rowe Ridge    27287    Florida    2016-09-15 10:47:14.473155    2016-10-14 13:02:27.798875        \N    \N    \N    0    \N    \N    \N    \N    female
12714    Clay    Cummerata    laurel@boehm.net    \N    Uganda    East Mable    5724 Konopelski Curve    11007    New Mexico    2016-09-20 21:23:15.751959    2016-10-14 13:02:37.786841        \N    \N    \N    0    \N    \N    \N    \N    male
16403    Clay    Mills    una_hilll@tremblaybradtke.net    \N    Vanuatu    Port Rodrigo    430 Kareem Divide    99201    North Dakota    2016-09-15 11:53:44.024132    2016-10-14 13:02:56.889744        \N    \N    \N    0    \N    \N    \N    \N    female
16404    Geraldine    Bartoletti    marley@langosh.net    \N    Italy    Harveybury    1745 Ned Mission    24461-8434    New Jersey    2016-07-13 19:20:08.865715    2016-10-14 13:02:56.894151        \N    \N    \N    0    \N    \N    \N    \N    male
16406    Oswald    Batz    emerald@kshleringutkowski.io    \N    Georgia    Port Doug    40329 Roselyn Shores    27638    Maine    2016-07-02 22:04:23.036188    2016-10-14 13:02:56.898296        \N    \N    \N    0    \N    \N    \N    \N    male
16409    Ransom    Kilback    gerald@streich.io    \N    Guernsey    Goodwinstad    85245 Reynolds Rapid    14083    Maryland    2016-08-05 21:54:04.579756    2016-10-14 13:02:56.902542        \N    \N    \N    0    \N    \N    \N    \N    male
16454    Ana    Hackett    julia.lemke@fayschowalter.io    \N    Mauritius    Lake Kassandra    978 Flatley Pass    99958-5173    Rhode Island    2016-09-20 15:55:21.435702    2016-10-14 13:02:57.069558        \N    \N    \N    0    \N    \N    \N    \N    female
16511    Odie    Jones    tyrell@oconner.net    \N    Cameroon    New Audreanne    41897 Maddison Passage    14179    Missouri    2016-08-08 07:06:30.179827    2016-10-14 13:02:57.285044        \N    \N    \N    0    \N    \N    \N    \N    female
10937    Beverly    Abernathy    walton.kuphal@haley.biz    \N    Cuba    Botsfordport    851 Kuhic Forges    32574    Nevada    2016-09-23 03:54:31.79433    2016-10-14 13:02:28.233791        \N    \N    \N    0    \N    \N    \N    \N    male
10938    Kolby    Heller    rachel@becker.net    \N    Nicaragua    Lake Tristianville    886 Konopelski Walks    28825    Alabama    2016-07-05 09:49:18.847708    2016-10-14 13:02:28.24679        \N    \N    \N    0    \N    \N    \N    \N    male
16698    Orpha    Franecki    sedrick@greenholt.co    \N    Palau    Turcotteberg    838 Lubowitz Village    39226    Georgia    2016-07-18 11:00:13.146191    2016-10-14 13:02:58.327148        \N    \N    \N    0    \N    \N    \N    \N    male
16748    Grayson    Langosh    dusty.nienow@stracke.com    \N    Macao    Talonmouth    96891 Boyle Canyon    75710-8483    Colorado    2016-09-26 12:06:18.66928    2016-10-14 13:02:58.565199        \N    \N    \N    0    \N    \N    \N    \N    male
10939    Alexys    Metz    aylin@murazikhyatt.com    \N    Seychelles    Metztown    674 McClure Plain    27270    Tennessee    2016-08-12 14:05:27.47809    2016-10-14 13:02:28.254579        \N    \N    \N    0    \N    \N    \N    \N    female
16891    Alexandre    Nolan    augustus@kris.com    \N    Angola    South Roderickhaven    57560 Veum Way    46612-1628    New Mexico    2016-09-23 04:44:52.288546    2016-10-14 13:02:59.398853        \N    \N    \N    0    \N    \N    \N    \N    female
16892    Louvenia    Deckow    kirstin@harberhirthe.net    \N    Samoa    Waelchiton    71327 Grady Isle    52760-2663    Massachusetts    2016-09-01 03:12:20.166294    2016-10-14 13:02:59.403386        \N    \N    \N    0    \N    \N    \N    \N    female
16940    Izabella    Metz    albertha_rolfson@kuhn.io    \N    Moldova    Towneville    431 Grover Square    62634    Vermont    2016-08-26 18:02:45.880905    2016-10-14 13:02:59.639843        \N    \N    \N    0    \N    \N    \N    \N    female
17040    Will    Wilkinson    micaela.kreiger@stark.com    \N    French Southern Territories    New Zoila    47269 Jacky Green    67617-1155    Montana    2016-07-08 07:20:24.18722    2016-10-14 13:03:00.252875        \N    \N    \N    0    \N    \N    \N    \N    female
16553    Shayna    Prohaska    donny@weinat.info    \N    Chad    Port Jadeton    957 Boyer Key    33865    Mississippi    2016-09-13 04:18:05.466869    2016-10-14 13:03:00.895006        \N    \N    \N    0    \N    \N    \N    \N    female
17186    Darlene    Strosin    javonte.schoen@conn.biz    \N    Benin    Deckowmouth    8700 Jasper Terrace    72288    Delaware    2016-08-18 15:14:39.821712    2016-10-14 13:03:01.175903        \N    \N    \N    0    \N    \N    \N    \N    male
17236    Tyrell    Okuneva    jeica.schuster@wehner.net    \N    Turks and Caicos Islands    Gudrunburgh    4241 Rodriguez Highway    27782-6341    Ohio    2016-09-14 09:22:03.193735    2016-10-14 13:03:01.388951        \N    \N    \N    0    \N    \N    \N    \N    male
17237    Gus    Stamm    lula@littel.io    \N    Cocos (Keeling) Islands    Haydenberg    891 Kuhlman Greens    93884-3608    New Hampshire    2016-07-07 15:28:17.387329    2016-10-14 13:03:01.393019        \N    \N    \N    0    \N    \N    \N    \N    female
16696    Mabelle    Ward    ramiro@stokes.name    \N    Montserrat    Bertaville    2914 Larson Fall    73717    Texas    2016-07-21 06:39:11.922621    2016-10-14 13:03:01.581678        \N    \N    \N    0    \N    \N    \N    \N    male
17478    Ozzie    Grimes    maximus@orn.co    \N    Cambodia    Port Kaleb    1556 Gusikowski Junctions    43428    Maryland    2016-09-21 21:19:18.467551    2016-10-14 13:03:02.492132        \N    \N    \N    0    \N    \N    \N    \N    male
11461    Reanna    Schinner    georgiana@krajcik.io    \N    Greenland    West Rosa    36929 Buford Via    19582    Louisiana    2016-09-25 20:36:49.776422    2016-10-14 13:02:31.518648        \N    \N    \N    0    \N    \N    \N    \N    female
17574    Bethel    Huels    rashad@ratke.org    \N    France    West Leopoldhaven    65959 Raynor Knolls    26989    West Virginia    2016-08-25 21:16:31.270794    2016-10-14 13:03:02.925374        \N    \N    \N    0    \N    \N    \N    \N    male
17623    Susanna    Nienow    henriette_macejkovic@runolfsdottir.co    \N    Uzbekistan    Lake Rowena    29426 Walter Rapids    48147-7574    New York    2016-08-28 19:57:27.514772    2016-10-14 13:03:03.184983        \N    \N    \N    0    \N    \N    \N    \N    female
17717    Kiera    Will    omer@kling.com    \N    Dominican Republic    Lucasfort    682 Jeramie Junctions    77584    Kentucky    2016-08-11 14:34:53.602284    2016-10-14 13:03:03.682752        \N    \N    \N    0    \N    \N    \N    \N    female
11650    Rory    Davis    yasmin@kuhnupton.net    \N    Reunion    Croninburgh    5651 Kulas Stravenue    18546    Iowa    2016-08-05 18:33:50.431022    2016-10-14 13:02:32.367932        \N    \N    \N    0    \N    \N    \N    \N    female
12808    Alden    Stiedemann    salma@conroy.org    \N    Liberia    Weldonmouth    517 Collins Turnpike    16390    Indiana    2016-09-23 19:48:11.458484    2016-10-14 13:02:38.672804        \N    \N    \N    0    \N    \N    \N    \N    male
17913    Uriah    Durgan    emie.block@bednar.net    \N    Chad    Hackettburgh    74349 Julian View    47740-7303    New Hampshire    2016-08-10 11:40:34.824362    2016-10-14 13:03:04.510222        \N    \N    \N    0    \N    \N    \N    \N    male
17914    Ari    Quitzon    alf_thiel@fisher.info    \N    Jersey    Chethaven    24219 Myrtis Plains    91664-8625    Vermont    2016-07-06 09:47:10.241799    2016-10-14 13:03:04.520215        \N    \N    \N    0    \N    \N    \N    \N    female
18012    Charlie    Sipes    tobin@mertz.co    \N    Bhutan    New Kyra    408 Medhurst Lakes    27240    Mississippi    2016-06-30 05:07:56.72125    2016-10-14 13:03:04.909103        \N    \N    \N    0    \N    \N    \N    \N    male
18060    Shanon    Cummings    savion.harris@boehmbeatty.name    \N    Dominica    East Gastonhaven    5692 Kaley Union    92495    Idaho    2016-08-01 15:33:03.354581    2016-10-14 13:03:05.107114        \N    \N    \N    0    \N    \N    \N    \N    female
18159    Deangelo    Cormier    bridie.connelly@strackejohnston.co    \N    Bermuda    New Hayleymouth    602 Aryanna Trail    11541-2739    Louisiana    2016-07-13 04:04:50.427307    2016-10-14 13:03:05.488157        \N    \N    \N    0    \N    \N    \N    \N    male
18301    Percy    Veum    amelia@gutkowskilangosh.com    \N    Svalbard & Jan Mayen Islands    West Randal    1855 DuBuque Junction    85486    Maryland    2016-08-29 11:23:35.293843    2016-10-14 13:03:06.067127        \N    \N    \N    0    \N    \N    \N    \N    female
18503    Rey    Johns    bridget@swiftfeil.org    \N    Ghana    North Dawn    4605 Hilbert Mill    73511    Maryland    2016-06-26 18:36:58.515638    2016-10-14 13:03:06.862243        \N    \N    \N    0    \N    \N    \N    \N    male
18549    Joannie    Gleichner    lindsey_keebler@schmittstamm.org    \N    Saint Martin    Prosaccofurt    967 Brenna Fall    62421-6142    Kentucky    2016-08-15 03:50:18.871071    2016-10-14 13:03:07.069019        \N    \N    \N    0    \N    \N    \N    \N    male
18654    Darien    Bins    quinten@dach.io    \N    Peru    Lake Carter    451 Lurline Summit    21259    West Virginia    2016-06-30 13:36:02.277048    2016-10-14 13:03:07.447361        \N    \N    \N    0    \N    \N    \N    \N    male
18742    Scot    Hilpert    myles@stamm.co    \N    Palestinian Territory    North Reinaburgh    90726 Nicole Walks    30254    Massachusetts    2016-08-26 11:04:52.154118    2016-10-14 13:03:07.845552        \N    \N    \N    0    \N    \N    \N    \N    male
18839    Brennan    Wiza    alvina_goldner@kerluke.name    \N    Djibouti    Terrellton    98908 Desmond Coves    43566-0361    Indiana    2016-07-13 09:42:03.216297    2016-10-14 13:03:08.310114        \N    \N    \N    0    \N    \N    \N    \N    female
18891    Valerie    Olson    martina@waelchi.info    \N    Anguilla    Lake Evangeline    58415 Leannon Track    27200    Virginia    2016-08-04 22:07:59.238736    2016-10-14 13:03:08.525609        \N    \N    \N    0    \N    \N    \N    \N    male
19037    Addie    Cummings    eugenia_wolf@littel.net    \N    Bhutan    Edwinton    468 Anya Ramp    16485-9490    Colorado    2016-09-13 01:48:43.976233    2016-10-14 13:03:09.181133        \N    \N    \N    0    \N    \N    \N    \N    female
19269    Velma    Will    marquis@pacocha.io    \N    Palau    West Benjaminfurt    5287 Pink Shore    91460    Maine    2016-09-15 20:40:09.394682    2016-10-14 13:03:10.08164        \N    \N    \N    0    \N    \N    \N    \N    male
19489    Evert    O'Kon    maynard@mann.org    \N    Aruba    Greggville    3745 Blanda Lake    84639-2995    West Virginia    2016-08-12 16:21:43.430776    2016-10-14 13:03:11.279437        \N    \N    \N    0    \N    \N    \N    \N    male
19530    Chyna    Marquardt    martine.franecki@wilkinson.io    \N    Samoa    Kozeyland    390 Alfonso Loop    81785-1418    Michigan    2016-08-14 13:27:26.814239    2016-10-14 13:03:11.518684        \N    \N    \N    0    \N    \N    \N    \N    female
19676    Mohammed    Murray    ashly@runolfonreilly.com    \N    Latvia    Deloreshaven    21861 Joe Gardens    95623    Nebraska    2016-08-24 11:23:22.588394    2016-10-14 13:03:12.275299        \N    \N    \N    0    \N    \N    \N    \N    male
19739    Carlotta    Hilpert    shannon@strosin.info    \N    Fiji    Tannershire    253 Ramon Vista    32479-3105    Alabama    2016-08-18 05:04:11.924193    2016-10-14 13:03:12.571966        \N    \N    \N    0    \N    \N    \N    \N    male
11701    Nikki    Wiegand    deven@brown.co    \N    Burundi    Leannonmouth    8249 Wunsch Greens    72887-3088    New Mexico    2016-09-28 12:11:46.437004    2016-10-14 13:02:32.608935        \N    \N    \N    0    \N    \N    \N    \N    male
12862    Alessia    Mraz    karelle@okuneva.info    \N    Uruguay    North Jason    560 Dickens Street    23901    Arkansas    2016-09-02 10:59:22.51819    2016-10-14 13:02:38.961003        \N    \N    \N    0    \N    \N    \N    \N    male
10108    Mckenzie    Fritsch    dwight.hilll@wisozkpadberg.net    \N    Nicaragua    Remingtonstad    6327 Konopelski Mission    28760-6399    Minnesota    2016-07-10 12:31:34.219558    2016-10-14 13:03:14.691592        \N    \N    \N    0    \N    \N    \N    \N    male
10121    Aryanna    Bayer    wilton@gislasonmurazik.info    \N    Seychelles    Port Easterland    5487 Nader Wall    65680-7154    Minnesota    2016-07-17 14:22:42.715074    2016-10-14 13:03:14.696237        \N    \N    \N    0    \N    \N    \N    \N    female
12833    Nova    Quitzon    annie@nienowbeatty.com    \N    Hungary    Addieburgh    148 Leopoldo Club    39082    Wisconsin    2016-09-12 16:45:25.463209    2016-10-14 13:03:15.421892        \N    \N    \N    0    \N    \N    \N    \N    male
10002    Dino    Boyle    jonathan@fritsch.io    cus_8JGGhzfLxxTsfp    New Zealand    East Scottie    15500 Koepp Valley    93065-1464    South Carolina    2016-08-11 22:41:11.200675    2016-10-14 13:03:15.638875        \N    \N    \N    0    \N    \N    \N    \N    female
10018    Edgardo    Balistreri    vernon@quitzon.biz    cus_8JGFWOuiLR5p5R    Ukraine    North Sandymouth    2059 Macey Ridge    81810-4040    New Jersey    2016-07-16 11:40:42.31441    2016-10-14 13:03:15.64342        \N    \N    \N    0    \N    \N    \N    \N    male
10019    Brock    Monahan    elizabeth@murphy.com    cus_8JGFSHxULkAiol    Samoa    Hazelchester    714 Rossie Springs    63716-4247    Alaska    2016-08-06 23:25:25.252272    2016-10-14 13:03:15.648007        \N    \N    \N    0    \N    \N    \N    \N    female
10020    Estelle    Bernier    aron@zboncakgreenfelder.co    cus_8JGFDxPy35OhCv    Canada    West Keirastad    34764 Angelica Crest    38811    Louisiana    2016-09-08 21:38:20.90729    2016-10-14 13:03:15.652337        \N    \N    \N    0    \N    \N    \N    \N    female
10050    Dayana    Littel    nellie@olsonmetz.biz    cus_8JGG4QFS6xfWNX    Japan    Port Siennaburgh    54642 Heathcote Station    59005    Wisconsin    2016-07-11 21:27:00.32138    2016-10-14 13:03:15.657524        \N    \N    \N    0    \N    \N    \N    \N    male
10051    Christopher    McLaughlin    dalton@spencersenger.name    cus_8JGH1ERUWNQQzU    Israel    Hudsonshire    2182 Jayde Park    23583-5059    Arizona    2016-09-24 03:46:46.066261    2016-10-14 13:03:15.662054        \N    \N    \N    0    \N    \N    \N    \N    female
10048    Wade    Predovic    rebecca@schimmelohara.net    cus_8JGHDiRdpl9r4v    Costa Rica    Lake Jarrell    71528 Effertz Village    88643-5327    South Dakota    2016-08-25 03:03:46.591141    2016-10-14 13:03:15.667933        \N    \N    \N    0    \N    \N    \N    \N    female
10052    Price    Mohr    elmer@kuhic.co    cus_8JGHQykoJ5vBxC    British Indian Ocean Territory (Chagos Archipelago)    North Cristopherbury    27751 Bertram Court    95930    Texas    2016-09-12 01:36:58.617076    2016-10-14 13:03:15.675238        \N    \N    \N    0    \N    \N    \N    \N    male
10092    Maria    Blanda    alisa.jenkins@becker.co    cus_8JGHF1X72jYObP    Andorra    Strackeview    387 Raul Knoll    37509    Massachusetts    2016-08-24 07:49:48.316244    2016-10-14 13:03:15.679698        \N    \N    \N    0    \N    \N    \N    \N    male
10053    Antoinette    Graham    pierre.lynch@heaney.com    cus_8JGIuywx0xZM3m    Palestinian Territory    Gregoryport    5057 Rempel Street    82349-9035    Tennessee    2016-07-04 10:50:07.554838    2016-10-14 13:03:15.684001        \N    \N    \N    0    \N    \N    \N    \N    male
10054    Alena    Maggio    elmira@roob.net    cus_8JGIE2wsNWA8Iu    Saint Martin    West Oma    10209 Heaney Field    69231    West Virginia    2016-08-02 14:40:48.60135    2016-10-14 13:03:15.688132        \N    \N    \N    0    \N    \N    \N    \N    male
10055    Jerod    Pollich    shad@dare.io    cus_8JGIhb9lRfbqCt    French Southern Territories    Hartmannside    100 Al Cove    32890-9239    Iowa    2016-07-15 05:46:23.387796    2016-10-14 13:03:15.692837        \N    \N    \N    0    \N    \N    \N    \N    male
10492    Tomasa    Erdman    rebecca.goodwin@hammes.name    \N    Ireland    Cyrilland    7036 Matt Walks    95336    Hawaii    2016-07-09 21:59:12.755779    2016-10-14 13:03:15.697699        \N    \N    \N    0    \N    \N    \N    \N    male
12129    Caden    Labadie    trey@hoeger.co    \N    Haiti    North Janae    84448 Izabella Wells    59881    Maryland    2016-09-15 19:31:11.962936    2016-10-14 13:03:15.702935        \N    \N    \N    0    \N    \N    \N    \N    female
15093    Mia    Stokes    titus@adamsdibbert.biz    \N    Vietnam    Sonyafurt    8449 Durgan Club    25253    Nevada    2016-09-25 07:18:11.137816    2016-10-14 13:03:15.781991        \N    \N    \N    0    \N    \N    \N    \N    female
11667    Ross    Kassulke    myles@raynor.co    \N    Ireland    Pasqualeton    95184 Abdullah Port    49728    Vermont    2016-07-27 21:29:17.304037    2016-10-14 13:03:15.78662        \N    \N    \N    0    \N    \N    \N    \N    female
12443    Maryam    Ritchie    sonny@keeling.org    \N    Gabon    Franzfort    226 Hazel Locks    89318    Iowa    2016-07-25 06:45:28.711375    2016-10-14 13:03:15.790777        \N    \N    \N    0    \N    \N    \N    \N    male
13383    Judy    Kreiger    maybelle@yostyost.name    \N    Niger    Hayesfurt    3707 Lisette Lock    28574    Ohio    2016-09-14 07:06:38.76108    2016-10-14 13:03:15.795141        \N    \N    \N    0    \N    \N    \N    \N    male
16467    Eino    O'Hara    celine@hauck.co    \N    United Kingdom    Milanburgh    425 Ortiz Forges    84352    Texas    2016-09-10 13:07:09.687934    2016-10-14 13:03:15.799427        \N    \N    \N    0    \N    \N    \N    \N    female
17765    Doyle    Trantow    kayla@wintheiserbeier.com    \N    Niue    Willyborough    697 Cole Oval    85602    Iowa    2016-09-07 15:57:54.397763    2016-10-14 13:03:15.80434        \N    \N    \N    0    \N    \N    \N    \N    female
11795    Ronaldo    Smitham    emmett@friesen.net    \N    Burkina Faso    Kozeyburgh    98838 Mohr Club    92085-1434    Texas    2016-06-24 05:01:14.730361    2016-10-14 13:02:33.090625        \N    \N    \N    0    \N    \N    \N    \N    male
11796    Cristal    Turner    angela@mantegreenfelder.io    \N    Norway    North Ignatiusborough    45580 Theron Squares    60786    Idaho    2016-08-18 15:00:51.517611    2016-10-14 13:02:33.095182        \N    \N    \N    0    \N    \N    \N    \N    female
11797    Malachi    Welch    cyrus@fadel.net    \N    Jamaica    South Rossie    45783 Alena Wells    99722    Massachusetts    2016-08-15 00:31:04.498713    2016-10-14 13:02:33.099893        \N    \N    \N    0    \N    \N    \N    \N    female
11798    Francisca    Marks    clotilde@mccullough.io    \N    Switzerland    Rexmouth    8530 Streich Run    85213    Idaho    2016-08-22 18:50:09.818503    2016-10-14 13:02:33.1045        \N    \N    \N    0    \N    \N    \N    \N    female
11799    Rod    Kuhic    raleigh.wolff@cummeratagislason.name    \N    Cape Verde    Delilahmouth    965 Lang Road    30093-5081    Kansas    2016-07-05 16:41:54.036645    2016-10-14 13:02:33.108593        \N    \N    \N    0    \N    \N    \N    \N    female
11800    Marlon    Bednar    terry.rowe@von.biz    \N    Bangladesh    West Wava    84954 Beahan Unions    55196    South Carolina    2016-09-25 04:10:34.951926    2016-10-14 13:02:33.113087        \N    \N    \N    0    \N    \N    \N    \N    male
11801    Celestine    Stroman    uriah@rolfson.name    \N    Sierra Leone    Vandervortland    54496 Zion Circle    10958-0574    North Carolina    2016-08-05 20:39:02.275824    2016-10-14 13:02:33.117932        \N    \N    \N    0    \N    \N    \N    \N    female
11802    Edison    McCullough    josue@champlin.com    \N    Montenegro    East Donnieport    881 Dexter Well    29365-9062    South Carolina    2016-09-02 18:26:03.319473    2016-10-14 13:02:33.122381        \N    \N    \N    0    \N    \N    \N    \N    female
11803    Madisyn    Torphy    abbey@christiansenkozey.net    \N    Kenya    North Everettborough    4347 Brown Oval    88436-8730    South Dakota    2016-08-25 09:09:33.060128    2016-10-14 13:02:33.126672        \N    \N    \N    0    \N    \N    \N    \N    female
11804    Charlotte    Braun    violette.roob@rowe.co    \N    Liberia    New Demarioland    27736 Lorine Burg    38085    Louisiana    2016-08-19 19:29:06.354275    2016-10-14 13:02:33.130588        \N    \N    \N    0    \N    \N    \N    \N    male
11805    Elena    Borer    mustafa@cruickshank.org    \N    Tunisia    North Jerel    47582 Gaylord Turnpike    71244-0836    Illinois    2016-08-18 03:27:42.21408    2016-10-14 13:02:33.134492        \N    \N    \N    0    \N    \N    \N    \N    male
11806    Mariah    Jerde    virgie@kovacek.io    \N    Saint Lucia    Port Johnnie    12853 Diana Well    91274-2604    Hawaii    2016-07-05 11:46:06.08316    2016-10-14 13:02:33.138968        \N    \N    \N    0    \N    \N    \N    \N    male
11807    Adella    Metz    eugenia.barrows@reinger.name    \N    Morocco    Adrienberg    52092 Reinger Circles    44655    Louisiana    2016-07-07 18:21:53.491379    2016-10-14 13:02:33.143395        \N    \N    \N    0    \N    \N    \N    \N    female
11808    Ellsworth    Quigley    ceasar.barrows@johnson.biz    \N    Vietnam    Lake Luigifurt    669 O'Hara Fords    37872-4483    Alabama    2016-07-12 21:28:07.348576    2016-10-14 13:02:33.147655        \N    \N    \N    0    \N    \N    \N    \N    male
11809    Ernest    Huel    ozzie@davisconnelly.org    \N    Mauritius    Shaneport    67298 Luettgen Shoals    25837    North Carolina    2016-08-04 16:45:18.307245    2016-10-14 13:02:33.152578        \N    \N    \N    0    \N    \N    \N    \N    female
11810    Estell    Wehner    eugenia@barton.info    \N    Guatemala    Zackaryton    124 Toy Extensions    19541-2453    Massachusetts    2016-09-28 00:34:12.87325    2016-10-14 13:02:33.157104        \N    \N    \N    0    \N    \N    \N    \N    male
11811    Katelynn    Mante    haylee_botsford@gleason.net    \N    Angola    New Elvis    412 Considine Cliffs    53823    Nevada    2016-07-29 15:01:34.49328    2016-10-14 13:02:33.161699        \N    \N    \N    0    \N    \N    \N    \N    female
11812    Fae    Hettinger    kathryne.shanahan@sporer.biz    \N    Cocos (Keeling) Islands    Lednerstad    24657 Marlene Drive    34811-8184    Wyoming    2016-09-15 08:00:00.566353    2016-10-14 13:02:33.165996        \N    \N    \N    0    \N    \N    \N    \N    male
11813    Kaci    Fisher    juwan_rohan@gibsonmarks.info    \N    Niger    Makennaburgh    5787 Gus Grove    78709    Mississippi    2016-07-27 22:19:57.587352    2016-10-14 13:02:33.169936        \N    \N    \N    0    \N    \N    \N    \N    male
11814    Jermey    Hills    barney.walker@nader.biz    \N    Turks and Caicos Islands    Sanfordborough    837 Monique Ports    46982-6858    Hawaii    2016-09-25 11:15:59.698777    2016-10-14 13:02:33.173873        \N    \N    \N    0    \N    \N    \N    \N    female
11815    Deshaun    Heaney    marquise@hettinger.com    \N    Syrian Arab Republic    Lynchmouth    110 Amos Union    95703-8798    Mississippi    2016-09-08 09:18:10.830231    2016-10-14 13:02:33.177799        \N    \N    \N    0    \N    \N    \N    \N    male
11816    Alysson    Jones    vladimir@marvin.org    \N    Dominican Republic    South Barrettton    83578 Constance Plains    11695-9856    Tennessee    2016-07-13 08:53:54.279352    2016-10-14 13:02:33.182227        \N    \N    \N    0    \N    \N    \N    \N    female
11817    Obie    Tillman    arden@ko.info    \N    British Indian Ocean Territory (Chagos Archipelago)    Schmittberg    877 Gusikowski Villages    16767    Hawaii    2016-09-03 10:07:32.649174    2016-10-14 13:02:33.186688        \N    \N    \N    0    \N    \N    \N    \N    female
12128    Tania    Shanahan    isabell@zieme.io    \N    Paraguay    South Imani    71508 Hackett Junctions    33374    Arizona    2016-06-28 22:18:12.864872    2016-10-14 13:02:33.190868        \N    \N    \N    0    \N    \N    \N    \N    female
11818    Loy    Turcotte    jay_rohan@zemlakcummings.biz    \N    Solomon Islands    North Christopshire    6831 Considine Lodge    10281-0809    Nevada    2016-07-25 08:12:43.676665    2016-10-14 13:02:33.195369        \N    \N    \N    0    \N    \N    \N    \N    female
11819    Ned    Hoppe    josue@jacobi.biz    \N    Tanzania    Hermistonmouth    281 Abbey Gardens    30485-7693    Missouri    2016-08-14 12:11:44.881799    2016-10-14 13:02:33.199619        \N    \N    \N    0    \N    \N    \N    \N    male
11820    Lionel    Stokes    jakayla.schaden@schowalterritchie.com    \N    Afghanistan    Torpton    74906 Dickens Cliffs    79338-8457    Wisconsin    2016-07-16 11:12:19.276255    2016-10-14 13:02:33.203909        \N    \N    \N    0    \N    \N    \N    \N    male
11821    Maximillian    Crooks    rowan.ziemann@thielveum.co    \N    Turkmenistan    Dillanburgh    7863 Arne Branch    75298-2959    Massachusetts    2016-06-25 04:20:58.913203    2016-10-14 13:02:33.208055        \N    \N    \N    0    \N    \N    \N    \N    female
11822    Cicero    Muller    giles@block.info    \N    Iraq    Berniermouth    433 Kenneth Stravenue    81915    Michigan    2016-06-28 10:06:02.579179    2016-10-14 13:02:33.212109        \N    \N    \N    0    \N    \N    \N    \N    male
11823    Eldridge    McLaughlin    agustina_bins@braun.com    \N    Dominica    East Jamaal    7011 Sam Avenue    39613    Texas    2016-08-27 16:12:28.887774    2016-10-14 13:02:33.21628        \N    \N    \N    0    \N    \N    \N    \N    male
11824    Shanon    Cronin    llewellyn.rutherford@leannon.info    \N    French Polynesia    Russelshire    5439 Tillman Station    49055    Connecticut    2016-07-31 10:18:41.642628    2016-10-14 13:02:33.221418        \N    \N    \N    0    \N    \N    \N    \N    male
13313    Rylan    Lynch    linnie@jacobsolson.name    \N    Fiji    Kertzmannberg    539 Moises Lights    56112-1361    Nevada    2016-07-14 11:52:25.272993    2016-10-14 13:02:39.207605        \N    \N    \N    0    \N    \N    \N    \N    male
19580    Filomena    Graham    marcel_boyle@schultz.biz    \N    Timor-Leste    New Lauren    75845 Deckow Neck    27301    Virginia    2016-08-25 22:06:38.312237    2016-10-14 13:03:15.832005        \N    \N    \N    0    \N    \N    \N    \N    male
19581    Russ    Gusikowski    prince@friesennicolas.name    \N    Guinea-Bissau    Garthhaven    1295 Tyshawn Road    13558-7915    Washington    2016-07-15 05:00:24.414127    2016-10-14 13:03:15.83605        \N    \N    \N    0    \N    \N    \N    \N    female
19582    Karen    O'Keefe    sterling.cronin@lindgren.io    \N    Guyana    Lake Yvette    79541 Hahn Bridge    92597-8910    Maryland    2016-09-28 06:40:37.251334    2016-10-14 13:03:15.83984        \N    \N    \N    0    \N    \N    \N    \N    male
19583    Osbaldo    Feil    lina@bechtelar.com    \N    Austria    Gleasonshire    933 Kuhn Lake    70949    California    2016-07-16 18:29:16.438171    2016-10-14 13:03:15.843893        \N    \N    \N    0    \N    \N    \N    \N    male
19584    Jordon    Cummerata    nia.anderson@mueller.org    \N    Congo    Schillerchester    6527 Conn Ridges    51314-0266    Oregon    2016-07-27 22:55:29.282569    2016-10-14 13:03:15.848084        \N    \N    \N    0    \N    \N    \N    \N    male
19585    Florine    Murray    jany_stokes@wizaerdman.com    \N    Palau    Kathlynshire    572 Senger Meadow    89915-9505    Illinois    2016-07-13 13:28:34.183246    2016-10-14 13:03:15.852541        \N    \N    \N    0    \N    \N    \N    \N    female
19587    Mohammed    D'Amore    colt@tromp.com    \N    Lebanon    Weberburgh    64618 Mayert Spring    70349-8796    Illinois    2016-08-25 11:27:00.986624    2016-10-14 13:03:15.857056        \N    \N    \N    0    \N    \N    \N    \N    female
19588    Elroy    Rodriguez    maia@altenwerth.org    \N    Montserrat    Maymieport    3339 Wolf Plaza    47104    Texas    2016-06-22 14:45:27.619361    2016-10-14 13:03:15.8616        \N    \N    \N    0    \N    \N    \N    \N    female
19589    Eleanore    Wyman    reinhold@wilkinsonrutherford.org    \N    Kuwait    Lake Maudie    1578 Laney Extensions    80856-4575    Oklahoma    2016-08-01 10:03:21.07779    2016-10-14 13:03:15.866181        \N    \N    \N    0    \N    \N    \N    \N    female
12194    Creola    Grady    unique@bosco.biz    \N    Cayman Islands    Janmouth    8075 Heaney Freeway    88078    Colorado    2016-07-02 22:40:30.547107    2016-10-14 13:02:34.890794        \N    \N    \N    0    \N    \N    \N    \N    male
10137    Chaz    McCullough    natasha@ritchie.com    cus_8JGIBfTMEcYk4F    Chile    Anselstad    413 Kobe Radial    95895-2963    Georgia    2016-06-30 10:19:17.457718    2016-10-14 13:02:24.650229        \N    \N    \N    0    \N    \N    \N    \N    female
18096    Duncan    Grady    travis@lowe.io    cus_8JGWtcov347erc    Peru    Considineshire    583 Harvey Route    39257    Florida    2016-09-12 04:12:25.112272    2016-10-14 13:02:24.555557        \N    \N    \N    0    \N    \N    \N    \N    female
18092    Deangelo    Rowe    arnold.walsh@schumm.com    cus_8JGXvL29dNEIgl    Hungary    Schroedermouth    5925 Batz Mission    78040    Tennessee    2016-07-28 10:27:11.519253    2016-10-14 13:02:24.558893        \N    \N    \N    0    \N    \N    \N    \N    male
13154    Elliott    Wolf    tad@ryan.io    \N    Bhutan    Port Ilene    6053 Stamm Ports    49826-2780    Tennessee    2016-08-18 03:06:42.946688    2016-10-14 13:02:24.561919        \N    \N    \N    0    \N    \N    \N    \N    male
13346    Malcolm    Lubowitz    chaz_oreilly@cole.com    \N    Malawi    Lake Rosario    90768 Sawayn Street    36870    Delaware    2016-09-24 22:41:16.248107    2016-10-14 13:02:24.56505        \N    \N    \N    0    \N    \N    \N    \N    female
13652    Preston    Rogahn    murray@wolff.org    \N    Benin    East Elton    1577 Cecile Court    12268-2876    Alabama    2016-07-03 18:34:33.793024    2016-10-14 13:02:24.568357        \N    \N    \N    0    \N    \N    \N    \N    female
13804    Leila    Bruen    edwardo@becker.biz    \N    Serbia    Lake Lew    205 Carter Mall    55009    California    2016-07-05 15:44:14.852834    2016-10-14 13:02:24.576094        \N    \N    \N    0    \N    \N    \N    \N    female
14594    Freeda    Dooley    eriberto@jerde.com    \N    Israel    Austynburgh    734 Gerda Plains    43516    Virginia    2016-08-31 14:32:18.768565    2016-10-14 13:02:24.579668        \N    \N    \N    0    \N    \N    \N    \N    male
10056    Patricia    King    cornelius@larkin.name    cus_8JGIawf4CR1Tzs    Tunisia    Arvillaberg    93940 Conroy Valleys    27251    Rhode Island    2016-07-03 17:56:01.996065    2016-10-14 13:02:24.653905        \N    \N    \N    0    \N    \N    \N    \N    female
10057    Anthony    Romaguera    jeanne.greenfelder@ankunding.co    cus_8JGJHUKhQFAGn0    Cocos (Keeling) Islands    East Laila    9131 Franecki Orchard    57437    West Virginia    2016-09-21 17:22:47.167201    2016-10-14 13:02:24.65771        \N    \N    \N    0    \N    \N    \N    \N    female
19809    Einar    Wyman    yasmin@herzog.biz    cus_8JGO43OJ598FJ6    Oman    Skilesburgh    8988 Hermann Stravenue    63390    Alaska    2016-08-17 19:08:24.346287    2017-07-31 06:32:14.520041    $2a$10$dOYz034Ny4EbGfZejkm/3es/6X77rdnXj5zSIzM0sRrsDIczrDDXS    \N    \N    \N    0    \N    \N    \N    \N    male
10061    Ronny    Greenholt    layla_welch@pouros.com    cus_8JGJTW9ahkCb6d    Indonesia    Skylarview    469 Konopelski Forks    49768    Maryland    2016-07-14 06:54:23.246544    2016-10-14 13:02:24.665146        \N    \N    \N    0    \N    \N    \N    \N    female
10062    Diamond    O'Kon    quentin@howell.info    cus_8JGJS1MAzbrKru    Finland    Carterside    39911 Cummerata Ford    51620-0045    Kentucky    2016-08-19 06:20:43.535548    2016-10-14 13:02:24.668397        \N    \N    \N    0    \N    \N    \N    \N    male
10063    Alfredo    Wuckert    lea@stroman.info    cus_8JGNfJZMGHHkjI    Chad    Lexusshire    50553 Armstrong Curve    21579-9756    New Mexico    2016-06-30 17:45:34.245481    2016-10-14 13:02:24.671678        \N    \N    \N    0    \N    \N    \N    \N    male
11344    Gwendolyn    Hane    fay@medhurstwunsch.com    cus_8JGNUidoHYr5jH    Thailand    East Ned    326 Wilderman River    81090-3106    Iowa    2016-09-01 08:34:53.176962    2016-10-14 13:02:24.675103        \N    \N    \N    0    \N    \N    \N    \N    female
11483    Yasmine    Keeling    vivienne@larkin.org    cus_8JGN1CBsHBPHMm    Namibia    Kihnville    70386 Aliyah Falls    50283    Oregon    2016-08-26 22:24:07.808089    2016-10-14 13:02:24.678664        \N    \N    \N    0    \N    \N    \N    \N    female
10064    Wiley    Murazik    olen_schroeder@friesenwiza.net    cus_8JGN37gX7lzrfr    Uzbekistan    Terrytown    8562 Langworth Stravenue    80267-0789    North Carolina    2016-08-07 09:17:25.365877    2016-10-14 13:02:24.682103        \N    \N    \N    0    \N    \N    \N    \N    male
11876    Clemmie    Torphy    jairo@nader.info    cus_8JGNTPJNq0sPPo    Iceland    Shannatown    54115 Earl Pines    38357    Alabama    2016-09-12 13:44:18.324398    2016-10-14 13:02:24.685379        \N    \N    \N    0    \N    \N    \N    \N    male
10065    Ronaldo    Willms    francis@dach.io    cus_8JGNGbuVlZMWef    Canada    North Isom    249 Vandervort Cliff    27408    New Hampshire    2016-07-24 07:07:39.133163    2016-10-14 13:02:24.688647        \N    \N    \N    0    \N    \N    \N    \N    male
10066    Carey    Muller    george.ebert@gutmann.org    cus_8JGNrixQGPiPDq    Reunion    Carrieland    47223 Jewel Cliff    53342    Nevada    2016-08-23 07:10:30.112421    2016-10-14 13:02:24.692001        \N    \N    \N    0    \N    \N    \N    \N    male
12221    Savion    Armstrong    noelia@braun.name    cus_8JGNoMOOa3x1V2    Tanzania    Blockville    10085 Anne Meadow    16087-5450    Colorado    2016-06-24 23:31:17.031066    2016-10-14 13:02:24.695179        \N    \N    \N    0    \N    \N    \N    \N    male
10067    Miguel    Reilly    judson@mayer.name    cus_8JGN4bQHRMKRyS    Angola    South Hortenseburgh    48119 Robb Mill    48261    Minnesota    2016-09-23 22:28:58.191932    2016-10-14 13:02:24.698212        \N    \N    \N    0    \N    \N    \N    \N    male
12232    Curt    Feest    lila@wiza.biz    cus_8JGOzVPBbDwbvO    Indonesia    Maximomouth    2179 Shane Locks    95722    West Virginia    2016-09-22 03:16:37.201348    2016-10-14 13:02:24.701521        \N    \N    \N    0    \N    \N    \N    \N    female
10068    Maximillia    Huel    cicero@weimannryan.net    cus_8JGOlGorqlKVXH    China    Lake Hettie    39141 Lucio Ridges    68354-8471    Georgia    2016-06-24 01:37:17.783616    2016-10-14 13:02:24.704672        \N    \N    \N    0    \N    \N    \N    \N    female
10069    Arvel    Medhurst    clark@nader.biz    cus_8JGOFxgK2BdVpF    Pakistan    Jeniferborough    1243 Buckridge Spurs    21838    Mississippi    2016-07-31 19:57:37.196597    2016-10-14 13:02:24.708081        \N    \N    \N    0    \N    \N    \N    \N    male
10070    Tia    Swaniawski    heaven@okeefehayes.io    cus_8JGOK1OeaKgY8M    Japan    Adellbury    465 Gonzalo Fall    83607    South Dakota    2016-07-04 21:13:58.572443    2016-10-14 13:02:24.711541        \N    \N    \N    0    \N    \N    \N    \N    female
10071    Pedro    DuBuque    jayson.lebsack@leuschke.co    cus_8JGO7iDRKJiYkW    Angola    Schusterfurt    42270 Strosin Freeway    40139    Maryland    2016-09-20 04:06:46.17811    2016-10-14 13:02:24.714852        \N    \N    \N    0    \N    \N    \N    \N    male
10073    Desmond    Herzog    lisandro@kuhn.co    cus_8JGOuCVsMeE0Ny    Isle of Man    Reubenstad    69349 Bartell Spurs    31066-8205    Kansas    2016-06-22 13:44:12.944173    2016-10-14 13:02:24.725083        \N    \N    \N    0    \N    \N    \N    \N    male
10075    Tremaine    Pollich    carmella_cummings@breitenberg.name    cus_8JGPaUFaUkfcP7    Tuvalu    Ullrichburgh    781 Thurman Isle    83819-0496    New Jersey    2016-08-13 08:42:23.520466    2016-10-14 13:02:24.728268        \N    \N    \N    0    \N    \N    \N    \N    female
10076    Jameson    Koss    kathryne@dubuque.com    cus_8JGPMWWxFZKjR3    Wallis and Futuna    Frankieshire    8079 Sarina Well    71614    Indiana    2016-07-24 11:44:29.435597    2016-10-14 13:02:24.731397        \N    \N    \N    0    \N    \N    \N    \N    female
10077    Everardo    Kozey    buck@lang.name    cus_8JGPk9aReFrJcA    San Marino    New Gersonport    9023 Gleason Lights    97071    Idaho    2016-09-10 03:22:39.237466    2016-10-14 13:02:24.734529        \N    \N    \N    0    \N    \N    \N    \N    male
10078    Darian    Langworth    mac@wolf.org    cus_8JGPT3w1GJQ4HR    El Salvador    Andreaneville    161 Koch Coves    85967    Wyoming    2016-08-25 20:15:53.762324    2016-10-14 13:02:24.737618        \N    \N    \N    0    \N    \N    \N    \N    female
10079    Noel    Kling    dewayne.fay@schaden.biz    cus_8JGPt6NFEwoFJk    Saint Lucia    Port Gregoriaton    222 Sherman Parkways    29141-8120    Oklahoma    2016-09-25 05:19:22.157394    2016-10-14 13:02:24.744103        \N    \N    \N    0    \N    \N    \N    \N    male
10182    Freddie    Lemke    xzavier.muller@windler.net    \N    Japan    Jettieport    678 Willy Prairie    79010    Kentucky    2016-08-13 22:26:23.172075    2016-10-14 13:02:25.221071        \N    \N    \N    0    \N    \N    \N    \N    female
14324    Estelle    Runolfsson    delia@jenkins.info    cus_8JGR18rkLdRUpQ    Zambia    Amiyaview    261 Maggio Station    55006-6746    Colorado    2016-08-08 17:06:55.7076    2016-10-14 13:02:24.747256        \N    \N    \N    0    \N    \N    \N    \N    female
10080    Stevie    Kihn    mandy_glover@barton.net    cus_8JGRKAuzE0TDxo    Kazakhstan    West Javontebury    26455 Bobbie Forge    77587    Nevada    2016-07-18 07:33:41.696962    2016-10-14 13:02:24.751099        \N    \N    \N    0    \N    \N    \N    \N    female
10081    David    Herzog    mervin.schuppe@herman.net    cus_8JGSNitI1q2duc    Turkey    Port Edwinaborough    509 Schmeler Hill    87216    South Carolina    2016-09-05 06:44:10.997118    2016-10-14 13:02:24.75502        \N    \N    \N    0    \N    \N    \N    \N    female
14886    Greg    Terry    alta@grant.biz    cus_8JGTx46yaE3LSN    Gibraltar    Gradyburgh    7456 Huel Forest    81008-8414    Nevada    2016-09-27 18:23:47.597938    2016-10-14 13:02:24.758173        \N    \N    \N    0    \N    \N    \N    \N    female
15022    Alison    Cruickshank    ryleigh@graham.name    cus_8JGT8QRwN0mkvz    Luxembourg    Smithamtown    2103 Mustafa Lake    30175    Idaho    2016-07-01 17:53:26.557706    2016-10-14 13:02:24.762036        \N    \N    \N    0    \N    \N    \N    \N    male
15112    Carmel    Yost    janelle@klocko.name    cus_8JGTRT231bOeYk    Paraguay    Johnnieview    61445 Elvera Rue    51828    Illinois    2016-08-09 11:28:37.772534    2016-10-14 13:02:24.765951        \N    \N    \N    0    \N    \N    \N    \N    male
10082    Jose    Volkman    estefania@kihnemmerich.net    cus_8JGTgrJZBk4suL    Haiti    New Conorton    994 Mueller Track    84753    Oklahoma    2016-09-13 04:52:24.666434    2016-10-14 13:02:24.769854        \N    \N    \N    0    \N    \N    \N    \N    female
15336    Roosevelt    Grimes    lora@yostshields.info    cus_8JGTNcoJPSpy0Q    Belize    Lake Albert    5347 Paucek Via    78880    Idaho    2016-07-18 14:34:05.064445    2016-10-14 13:02:24.773397        \N    \N    \N    0    \N    \N    \N    \N    female
15477    Kris    Dietrich    edd_frami@doyle.biz    cus_8JGTeVHSMsXOns    China    Brionnaport    645 Doyle Fields    81101    Arkansas    2016-09-19 22:47:58.681755    2016-10-14 13:02:24.776609        \N    \N    \N    0    \N    \N    \N    \N    female
10083    Ezra    Emard    hilma.upton@sipesmurazik.com    cus_8JGT9S0p47yF8F    Gibraltar    North Troytown    8065 Littel Tunnel    77969    New York    2016-08-30 10:09:26.890383    2016-10-14 13:02:24.779747        \N    \N    \N    0    \N    \N    \N    \N    female
10084    Lucie    Stracke    tyra_ferry@little.com    cus_8JGTis5Y404NK3    United Arab Emirates    Port Kobe    862 Schinner Row    32761    Hawaii    2016-07-16 12:06:13.744842    2016-10-14 13:02:24.783248        \N    \N    \N    0    \N    \N    \N    \N    female
10085    Everardo    Gulgowski    dangelo@fadel.net    cus_8JGUILblvKTkGs    Guinea-Bissau    East Casimir    4665 Lauren Cliffs    71399-9402    Washington    2016-09-01 16:32:35.832732    2016-10-14 13:02:24.787075        \N    \N    \N    0    \N    \N    \N    \N    male
10008    Erika    Kub    ollie@waelchi.info    cus_8JGUDx3nYjfrwt    Montserrat    Rippinfort    19535 Kreiger Gateway    41400    Indiana    2016-08-11 00:08:13.404378    2016-10-14 13:02:24.790985        \N    \N    \N    0    \N    \N    \N    \N    female
10059    Donnell    Connelly    aisha.grady@feestabbott.org    cus_8JGUA5bWppd3Xe    Slovenia    Port Mavisstad    475 Rodrigo Camp    68248-6658    Nevada    2016-07-13 16:09:42.564812    2016-10-14 13:02:24.794694        \N    \N    \N    0    \N    \N    \N    \N    male
10086    Winona    Parisian    lamont_okuneva@crona.io    cus_8JGUnvdNEIT0UD    Botswana    Schummfort    16236 Jaylin Field    20159-1101    Colorado    2016-08-22 13:17:44.740731    2016-10-14 13:02:24.798434        \N    \N    \N    0    \N    \N    \N    \N    female
10088    Amie    Armstrong    annalise@kub.com    cus_8JGUeKlouJAbpV    Congo    New Stephany    82957 Crooks Lock    71758-8310    New Jersey    2016-07-16 13:29:38.83795    2016-10-14 13:02:24.80222        \N    \N    \N    0    \N    \N    \N    \N    female
15222    Gay    Wiza    malcolm@lindgren.co    cus_8JGUgIvVp6eQjC    Andorra    Boylemouth    3072 Erna Meadow    97225-8248    Arkansas    2016-06-22 14:00:48.644829    2016-10-14 13:02:24.806023        \N    \N    \N    0    \N    \N    \N    \N    male
10089    Johan    Vandervort    jaquelin@bradtkedamore.name    cus_8JGUgxAW0HJbOH    Sudan    Rempelmouth    611 Lilian Lock    61850-8432    North Carolina    2016-08-12 04:35:45.609226    2016-10-14 13:02:24.809486        \N    \N    \N    0    \N    \N    \N    \N    female
15984    Flavie    Lynch    eliezer@zemlak.net    cus_8JGVblTlYgRszS    Japan    Verniceview    94560 DuBuque Meadow    59179    Vermont    2016-09-24 20:34:37.43156    2016-10-14 13:02:24.812684        \N    \N    \N    0    \N    \N    \N    \N    female
16889    Brenden    Heller    taurean.buckridge@abshire.io    cus_8JGV2rmzbOmmUx    Senegal    Ryleefort    256 Hand Tunnel    44938-6677    New Jersey    2016-07-27 23:49:57.080575    2016-10-14 13:02:24.815906        \N    \N    \N    0    \N    \N    \N    \N    male
16943    Ruben    Weimann    matt@johnston.com    cus_8JGV282SYtk7oc    Angola    Parkerhaven    363 Ewell Manor    48785    Vermont    2016-07-05 23:57:45.458054    2016-10-14 13:02:24.819329        \N    \N    \N    0    \N    \N    \N    \N    male
17070    Cory    Kiehn    fern_carroll@hilll.io    cus_8JGVRcdRA7uj7H    Palestinian Territory    New Erwin    459 Viviane Point    39397    Illinois    2016-08-30 08:29:48.887419    2016-10-14 13:02:24.822494        \N    \N    \N    0    \N    \N    \N    \N    male
10090    Vaughn    Windler    annabel_keeling@larkin.org    cus_8JGVUT5oXFSQiW    Saint Pierre and Miquelon    New Trinitymouth    8815 Rath Spur    88294-2914    Louisiana    2016-09-14 23:48:13.847157    2016-10-14 13:02:24.825932        \N    \N    \N    0    \N    \N    \N    \N    female
10094    Jon    Altenwerth    gloria.hayes@keelingsanford.biz    cus_8JGVezU4sQLGxw    Ukraine    Veumchester    48509 Izabella Summit    17760-7024    Illinois    2016-09-28 03:03:59.308708    2016-10-14 13:02:24.829154        \N    \N    \N    0    \N    \N    \N    \N    male
10095    Jon    Bruen    sigrid@goldner.org    cus_8JGV7kBg4pYjkz    Luxembourg    Macejkovictown    220 Labadie Pass    55858-9761    Washington    2016-07-30 01:44:41.517688    2016-10-14 13:02:24.832696        \N    \N    \N    0    \N    \N    \N    \N    female
17511    Declan    Reilly    aurelia@bashirian.io    cus_8JGV7XTGU18UnM    Barbados    Port Chaimfort    3856 Wilfredo Path    80006    Maryland    2016-09-27 17:45:26.135848    2016-10-14 13:02:24.836064        \N    \N    \N    0    \N    \N    \N    \N    female
16120    Adriel    Ernser    gladys@lind.co    cus_8JGWee6utrgoor    Gabon    Finnberg    233 Boehm Highway    83618-3986    West Virginia    2016-09-14 16:14:12.568352    2016-10-14 13:02:24.839504        \N    \N    \N    0    \N    \N    \N    \N    female
17644    Leonor    Cummerata    charles@bernhard.org    cus_8JGWHscyBfwcd1    Malta    Breitenbergborough    427 Ryley Ramp    63078    Idaho    2016-07-17 04:48:56.989732    2016-10-14 13:02:24.842638        \N    \N    \N    0    \N    \N    \N    \N    male
10096    Leta    Kunde    simeon_haley@beahan.com    cus_8JGWPDd7BVUkWm    Ethiopia    Connberg    191 Jayde Garden    99197-6019    Nebraska    2016-08-07 23:33:19.233118    2016-10-14 13:02:24.846165        \N    \N    \N    0    \N    \N    \N    \N    female
10097    Bianka    Hyatt    felicia.zboncak@conroyblock.biz    cus_8JGWHnDvtxvSqf    Armenia    North Darlene    95305 Dibbert Track    41942    Arizona    2016-07-30 04:33:37.395966    2016-10-14 13:02:24.850774        \N    \N    \N    0    \N    \N    \N    \N    male
10098    Frank    Ortiz    madisen.waelchi@kirlin.biz    cus_8JGX2M3k6o9IEU    Italy    Hannafort    64020 Bauch Avenue    51454-6411    Rhode Island    2016-08-29 23:21:45.016922    2016-10-14 13:02:24.856224        \N    \N    \N    0    \N    \N    \N    \N    female
10099    Linnie    Abshire    alison.moore@strosin.com    cus_8JGXDHgNTmAFAm    Virgin Islands, U.S.    Robelchester    6193 Feeney Skyway    59892-5168    Florida    2016-09-18 04:18:06.759103    2016-10-14 13:02:24.860028        \N    \N    \N    0    \N    \N    \N    \N    male
18396    Arjun    Paucek    jalen@nolan.net    cus_8JGXuQa1Po1Hry    Bolivia    South Ella    65996 Strosin Isle    37490    Missouri    2016-09-19 16:13:13.150588    2016-10-14 13:02:24.863602        \N    \N    \N    0    \N    \N    \N    \N    female
10100    Davin    Rogahn    ashton_trantow@hilll.org    cus_8JGXaZlTj17XNC    Hong Kong    Reeceberg    5085 Martine Dam    77896-4750    New Jersey    2016-09-05 14:11:37.091302    2016-10-14 13:02:24.867553        \N    \N    \N    0    \N    \N    \N    \N    male
18486    Maeve    Kuhic    vesta@cummerata.io    cus_8JGXjJ2aLLhCZM    Bhutan    Lake Rubye    669 Amiya Walk    40989-5780    Texas    2016-07-30 23:01:25.04855    2016-10-14 13:02:24.871407        \N    \N    \N    0    \N    \N    \N    \N    female
10101    Loy    Breitenberg    olga@schamberger.com    cus_8JGYAjZQ4dcLhV    China    East Cassie    878 Nicolas Dam    14334-6654    Kansas    2016-09-21 21:32:08.364829    2016-10-14 13:02:24.875282        \N    \N    \N    0    \N    \N    \N    \N    female
18764    Laron    Wisozk    jayson@sanford.io    cus_8JGYIPIG8Y014G    Lithuania    Friesenfort    619 Seamus Isle    69438    Colorado    2016-08-24 03:58:01.818514    2016-10-14 13:02:24.87893        \N    \N    \N    0    \N    \N    \N    \N    male
18846    Alvina    Schmitt    kim@nolanchamplin.biz    cus_8JGZep2pQuOKsu    Gambia    West Sidney    871 Avery Ports    52172-3041    Maine    2016-07-08 01:29:56.823905    2016-10-14 13:02:24.882667        \N    \N    \N    0    \N    \N    \N    \N    female
18979    Brent    Koelpin    araceli@jaskolski.net    cus_8JGZAkcHhhdKDL    Ecuador    New Almouth    107 Marques Glens    97620    Texas    2016-09-04 18:59:08.502833    2016-10-14 13:02:24.886418        \N    \N    \N    0    \N    \N    \N    \N    female
19299    Alessandro    Friesen    albertha@koch.io    cus_8JGaKRaQHRFuoT    Botswana    East Kailey    5733 Deshawn Valley    68165-1526    Wyoming    2016-09-27 11:34:56.13625    2016-10-14 13:02:24.890001        \N    \N    \N    0    \N    \N    \N    \N    female
19563    Oma    Jones    myrtice@rogahn.biz    cus_8JGa8R2b5mXpLW    French Guiana    Ofeliaside    877 Keshawn Lane    17834    Colorado    2016-07-23 08:22:42.18686    2016-10-14 13:02:24.897311        \N    \N    \N    0    \N    \N    \N    \N    male
10102    Thaddeus    Champlin    jeff@kohler.org    cus_8JGakskgtsdYaP    Norfolk Island    Bartellview    300 Kelsi Groves    23942-8941    South Carolina    2016-09-11 19:00:43.785468    2016-10-14 13:02:24.90094        \N    \N    \N    0    \N    \N    \N    \N    female
10103    Anjali    Auer    alisha_windler@bartoletti.name    cus_8JGba3xCoHHStH    Sao Tome and Principe    West Else    5246 Marjorie Ranch    82131    South Dakota    2016-07-02 16:48:54.683623    2016-10-14 13:02:24.904765        \N    \N    \N    0    \N    \N    \N    \N    male
10104    Cade    Mayer    yeenia@krajcik.name    cus_8JGbnx1G7Cjl1v    Heard Island and McDonald Islands    Craigview    125 Ella Cliffs    11148    California    2016-07-12 17:35:13.616598    2016-10-14 13:02:24.908585        \N    \N    \N    0    \N    \N    \N    \N    female
10514    Lilliana    Emard    roie@shanahan.biz    \N    Nepal    Kennithtown    515 Chanelle Mount    23991    Delaware    2016-07-28 00:16:36.108197    2016-10-14 13:02:24.912413        \N    \N    \N    0    \N    \N    \N    \N    male
10105    Candida    Boehm    jee@osinski.io    cus_8JGbmejGl7e6Lc    Cocos (Keeling) Islands    Cronaside    56677 Matilda Flat    47347-2151    Rhode Island    2016-07-06 18:58:53.850395    2016-10-14 13:02:24.916315        \N    \N    \N    0    \N    \N    \N    \N    female
10107    Jewel    Toy    royce@bergstrom.co    cus_8JGcFOF8SM6VV7    United Arab Emirates    Lake Carmenfort    1399 Nader Point    51179-8130    New York    2016-08-09 00:26:09.663277    2016-10-14 13:02:24.920361        \N    \N    \N    0    \N    \N    \N    \N    male
10109    Zander    Walker    elia@harrisrosenbaum.org    cus_8JGcBjuYbmg1Q9    Croatia    Harbertown    8417 Frami Locks    95206    Kansas    2016-08-21 17:06:28.785098    2016-10-14 13:02:24.924046        \N    \N    \N    0    \N    \N    \N    \N    female
10110    Ernest    Champlin    catharine_hammes@donnelly.co    cus_8JGcaX1rFHCU4o    Saint Helena    North Aftonbury    524 Brandon Falls    13545-6961    Arkansas    2016-07-21 20:59:07.975812    2016-10-14 13:02:24.9279        \N    \N    \N    0    \N    \N    \N    \N    male
10111    Sarai    Feeney    sofia_roob@friesen.net    cus_8JGc2uRUupvU1X    Tunisia    Garrettview    84523 Adalberto Meadows    49257-6221    Wisconsin    2016-06-22 19:11:24.343798    2016-10-14 13:02:24.931666        \N    \N    \N    0    \N    \N    \N    \N    female
10112    Chester    Wunsch    dora@goyetteohara.net    cus_8JGcoL2OlYKSZn    Gabon    Jacobsonfurt    84671 Rice Wall    29386    Iowa    2016-09-27 12:51:48.594083    2016-10-14 13:02:24.93528        \N    \N    \N    0    \N    \N    \N    \N    female
10113    Lula    Olson    jacky@lebsackhartmann.co    cus_8JGcA5YzAT9GJw    Brunei Darussalam    Rudolphborough    5249 Upton Green    47525    Louisiana    2016-09-02 07:09:56.375496    2016-10-14 13:02:24.938691        \N    \N    \N    0    \N    \N    \N    \N    female
10114    Rossie    Rodriguez    everette@sauer.io    cus_8JGc619aj37ffS    American Samoa    Tremblaybury    407 Leila Cliff    58083-3193    Maryland    2016-08-15 04:07:13.428125    2016-10-14 13:02:24.942117        \N    \N    \N    0    \N    \N    \N    \N    female
10115    Roel    Heaney    virgil@mantekulas.org    cus_8JGcCiw5vmseHR    Gabon    South Magdalen    8150 Blanda Course    37474    Kentucky    2016-08-15 10:10:50.269985    2016-10-14 13:02:24.945647        \N    \N    \N    0    \N    \N    \N    \N    female
10116    Ressie    Lubowitz    asa_gibson@christiansen.co    cus_8JGcf5u6xXhEAo    Tuvalu    New Omerberg    411 Shania Run    58826-4494    Arizona    2016-07-18 12:48:26.422998    2016-10-14 13:02:24.948896        \N    \N    \N    0    \N    \N    \N    \N    female
10117    Mittie    Heathcote    dorian@brekke.co    cus_8JGc9BUQ0IPgGt    Burundi    Port Joshuah    369 Wisoky Stravenue    53466-5579    Minnesota    2016-07-23 08:08:11.651725    2016-10-14 13:02:24.952403        \N    \N    \N    0    \N    \N    \N    \N    male
10118    Lea    Rolfson    nikolas@ledneremard.co    cus_8JGcPpzqk9BB2a    Angola    McKenzieshire    77368 Herman Parkway    74832-5365    California    2016-08-14 11:57:09.824125    2016-10-14 13:02:24.955652        \N    \N    \N    0    \N    \N    \N    \N    female
10122    Emilia    Muller    sadye_ledner@stroman.org    \N    San Marino    Rosaliaton    5718 Jacobi Rapid    53746-9531    Pennsylvania    2016-07-23 22:19:23.829823    2016-10-14 13:02:24.958801        \N    \N    \N    0    \N    \N    \N    \N    female
10123    Jena    Shields    clementina@waelchi.net    \N    Martinique    Port Clarkmouth    14786 Brain Point    81186    Maine    2016-07-24 17:24:28.713679    2016-10-14 13:02:24.961976        \N    \N    \N    0    \N    \N    \N    \N    male
10124    Marguerite    Bauch    jeie.rau@rath.com    \N    Greece    Strackechester    1393 Willy Pines    68011-1039    Minnesota    2016-08-14 20:36:00.061262    2016-10-14 13:02:24.965        \N    \N    \N    0    \N    \N    \N    \N    female
10119    Haven    Willms    adrienne@quigley.org    cus_8JGcot9IvY7xbk    Lao People's Democratic Republic    Port Ruthiefort    471 Kirstin Plaza    30633-1954    Ohio    2016-09-21 06:51:40.333305    2016-10-14 13:02:24.96812        \N    \N    \N    0    \N    \N    \N    \N    female
10126    Vena    Rogahn    keaton_towne@howell.co    \N    Lebanon    Port Elyse    790 Goodwin Village    73642-5003    Arizona    2016-08-13 00:09:58.447266    2016-10-14 13:02:24.97121        \N    \N    \N    0    \N    \N    \N    \N    female
10127    Stan    Beahan    johann.cremin@prosaccoosinski.com    \N    Saint Martin    New Manuelashire    272 Bergnaum Road    82605-4100    Tennessee    2016-08-09 20:46:42.901853    2016-10-14 13:02:24.97457        \N    \N    \N    0    \N    \N    \N    \N    male
10128    Angus    Effertz    doris@glover.io    \N    Pitcairn Islands    North Pinkieberg    122 Carmel Inlet    14834    Virginia    2016-08-03 14:58:12.317701    2016-10-14 13:02:24.977707        \N    \N    \N    0    \N    \N    \N    \N    male
10129    Maryam    Auer    halle.lind@muellerhudson.io    \N    Iraq    North Nobleview    99969 Brandyn Fort    48632-5187    Washington    2016-08-08 02:25:01.954659    2016-10-14 13:02:24.980714        \N    \N    \N    0    \N    \N    \N    \N    male
10130    Vidal    Wiza    abdiel@olson.io    \N    Saudi Arabia    Terryport    16126 Jimmie Throughway    83473    Maryland    2016-09-05 15:51:25.445694    2016-10-14 13:02:24.983677        \N    \N    \N    0    \N    \N    \N    \N    female
10131    Estrella    Turner    lucy_keler@frami.com    \N    Andorra    East Euniceberg    7045 Strosin Lodge    86994    Kansas    2016-09-11 22:25:34.84036    2016-10-14 13:02:24.986692        \N    \N    \N    0    \N    \N    \N    \N    female
10132    Isaiah    Glover    horacio@komurazik.org    \N    Madagascar    Johnstonton    6946 Arch Spurs    47725-7010    Louisiana    2016-09-28 07:31:09.808032    2016-10-14 13:02:24.989948        \N    \N    \N    0    \N    \N    \N    \N    female
10106    Alberto    Stehr    kristin@lednervandervort.org    \N    Guinea    Lake Wilfrid    5283 Stroman Summit    98940    Louisiana    2016-07-11 18:00:44.099972    2016-10-14 13:02:24.992989        \N    \N    \N    0    \N    \N    \N    \N    female
10133    Carole    Trantow    hortense@bayerrau.co    \N    Reunion    Pollichbury    78637 Lilian Overpass    47830    South Carolina    2016-08-27 13:19:09.611747    2016-10-14 13:02:24.996192        \N    \N    \N    0    \N    \N    \N    \N    female
10138    Lucy    Huel    blaze_reilly@carter.name    \N    Somalia    Kertzmannfurt    858 Thiel Views    21607-7108    New Mexico    2016-08-29 08:32:07.865026    2016-10-14 13:02:24.999779        \N    \N    \N    0    \N    \N    \N    \N    male
10139    Shanon    Schuster    emmett.howe@kuhlman.biz    \N    French Guiana    Lake Beryl    450 D'angelo Gateway    43351-0917    South Dakota    2016-07-31 04:28:35.73993    2016-10-14 13:02:25.003643        \N    \N    \N    0    \N    \N    \N    \N    male
10141    Rossie    Beatty    frida@mcclure.org    \N    Cayman Islands    Cristborough    24486 Leuschke Hills    21046    Tennessee    2016-09-26 14:09:06.226882    2016-10-14 13:02:25.007118        \N    \N    \N    0    \N    \N    \N    \N    female
10142    Faye    Tromp    kamron@bashirianconn.com    \N    Guatemala    West Hillard    59964 Lewis Circle    22194    Wyoming    2016-07-28 17:39:14.949585    2016-10-14 13:02:25.010073        \N    \N    \N    0    \N    \N    \N    \N    female
10143    Jena    Beier    morris.littel@hegmannjohns.name    \N    Norway    Petebury    801 Deron River    96639    Illinois    2016-07-23 01:13:15.512491    2016-10-14 13:02:25.013097        \N    \N    \N    0    \N    \N    \N    \N    male
10144    Hillary    Bergnaum    ephraim.jenkins@windler.name    \N    Puerto Rico    North Isabella    244 Parker Inlet    94670-6840    Hawaii    2016-09-12 12:41:41.73788    2016-10-14 13:02:25.016074        \N    \N    \N    0    \N    \N    \N    \N    female
10145    Delfina    Cassin    ryan.robel@runtethiel.net    \N    Senegal    Leuschkeport    76567 Lyla Corner    80773-8208    Idaho    2016-09-09 10:12:47.590662    2016-10-14 13:02:25.019158        \N    \N    \N    0    \N    \N    \N    \N    male
10146    Braulio    Rogahn    emerson@sauerferry.info    \N    Costa Rica    Wehnerland    44059 Pacocha Spur    15190-6074    Kansas    2016-07-12 13:15:38.186013    2016-10-14 13:02:25.022135        \N    \N    \N    0    \N    \N    \N    \N    female
10147    Jaden    Bernhard    clement_witting@bartoletti.co    \N    Jordan    North Adityaberg    4706 Collier Vista    63855    North Carolina    2016-08-11 03:22:56.382018    2016-10-14 13:02:25.025334        \N    \N    \N    0    \N    \N    \N    \N    male
10148    Vincenza    Larkin    tristian_vonrueden@kleinschultz.co    \N    Greenland    Danieltown    670 Arvilla Terrace    18509    Illinois    2016-09-15 06:49:17.342078    2016-10-14 13:02:25.028321        \N    \N    \N    0    \N    \N    \N    \N    female
10149    Pete    Gutkowski    candice@lubowitzheller.com    \N    Nepal    Harrisport    401 Rath Ranch    88025-6427    Alaska    2016-08-16 05:30:57.684395    2016-10-14 13:02:25.031359        \N    \N    \N    0    \N    \N    \N    \N    female
10150    Jedidiah    Koelpin    brennon@pacocha.name    \N    Germany    North Jalon    900 Sanford Harbor    17860    Kentucky    2016-07-16 13:43:44.85153    2016-10-14 13:02:25.034596        \N    \N    \N    0    \N    \N    \N    \N    female
10151    Isabella    Williamson    madisen@corwin.biz    \N    Tunisia    New Linwood    22619 Shields Squares    45649    Illinois    2016-09-16 03:10:09.836882    2016-10-14 13:02:25.038298        \N    \N    \N    0    \N    \N    \N    \N    male
10153    Samantha    Gleichner    giovani@nitzschegleason.biz    \N    Kyrgyz Republic    Alvisshire    538 Cremin Square    95832-6483    Oklahoma    2016-09-08 09:03:57.337529    2016-10-14 13:02:25.045256        \N    \N    \N    0    \N    \N    \N    \N    female
10156    Tyreek    Kutch    maci@wehner.com    \N    New Zealand    Osvaldohaven    71338 Reese Stravenue    88159    Kansas    2016-07-31 07:48:22.170733    2016-10-14 13:02:25.048841        \N    \N    \N    0    \N    \N    \N    \N    female
10157    Rebeca    Cassin    edwardo.gulgowski@damore.org    \N    Kuwait    Kohlerfurt    84360 Monserrate Street    36479-7886    Alaska    2016-07-31 08:57:20.941751    2016-10-14 13:02:25.05184        \N    \N    \N    0    \N    \N    \N    \N    female
10158    Ansley    Ruecker    zaria@kochstrosin.co    \N    Sudan    Clydeville    56924 Strosin Circle    35393-4639    Utah    2016-09-26 17:33:53.920373    2016-10-14 13:02:25.055346        \N    \N    \N    0    \N    \N    \N    \N    male
10159    Beulah    Hartmann    brannon_cain@batz.info    \N    South Africa    South Justynberg    11533 Beth Plaza    74590    Illinois    2016-09-26 00:52:52.668356    2016-10-14 13:02:25.058677        \N    \N    \N    0    \N    \N    \N    \N    female
10160    Leslie    Howe    marcella@ryansporer.name    \N    Trinidad and Tobago    Brakusfurt    65594 Noelia Fords    11639    Louisiana    2016-08-08 10:39:52.422429    2016-10-14 13:02:25.061829        \N    \N    \N    0    \N    \N    \N    \N    female
10161    Macy    Fritsch    jaylon.dooley@hermann.name    \N    San Marino    Port Schuylerland    456 Jones Haven    99516-5274    Mississippi    2016-07-31 13:53:50.238603    2016-10-14 13:02:25.06518        \N    \N    \N    0    \N    \N    \N    \N    female
10162    Ralph    Harvey    jules.pfeffer@konopelskibednar.com    \N    Macao    Gerlachport    68193 Hildegard Crest    66800    Maryland    2016-07-10 12:49:13.579678    2016-10-14 13:02:25.068201        \N    \N    \N    0    \N    \N    \N    \N    male
10163    Maximilian    Beer    katrina_waelchi@rice.io    \N    Martinique    Port Ignacioberg    38276 Ashtyn Via    90150-4077    Kentucky    2016-07-24 07:14:31.92336    2016-10-14 13:02:25.071235        \N    \N    \N    0    \N    \N    \N    \N    male
10120    Xzavier    Gerlach    aurelia_schimmel@mantebotsford.name    cus_8JGcJ7yZGWbN8g    Malta    Murphyville    87216 Block Dam    31458    Virginia    2016-09-01 00:28:45.231996    2016-10-14 13:02:25.074501        \N    \N    \N    0    \N    \N    \N    \N    female
10164    Greyson    Tromp    tate@schultz.info    \N    South Africa    Okunevashire    23884 Austen Forge    33263    New Mexico    2016-09-04 12:54:33.398911    2016-10-14 13:02:25.077522        \N    \N    \N    0    \N    \N    \N    \N    male
10165    Eugene    Zemlak    anjali@hane.info    \N    Pitcairn Islands    Valliemouth    75026 Schultz Gateway    24423-8772    Nevada    2016-09-07 00:59:02.317452    2016-10-14 13:02:25.080508        \N    \N    \N    0    \N    \N    \N    \N    female
10167    Claudine    Waelchi    vivien@wyman.biz    \N    Central African Republic    New Brooks    10502 Ivah Garden    34289    Massachusetts    2016-07-22 15:06:44.629793    2016-10-14 13:02:25.083577        \N    \N    \N    0    \N    \N    \N    \N    male
10168    Susan    D'Amore    helga@hagenes.co    \N    Lithuania    Verdatown    4894 Freeda Path    97124    New Hampshire    2016-06-27 10:50:32.316588    2016-10-14 13:02:25.086925        \N    \N    \N    0    \N    \N    \N    \N    male
10169    Norris    Christiansen    kenneth@beatty.org    \N    Armenia    Nevaville    9970 Huels Crossroad    21561-2450    Alabama    2016-08-11 07:56:48.315875    2016-10-14 13:02:25.089942        \N    \N    \N    0    \N    \N    \N    \N    female
10170    Jillian    Franecki    letha.casper@keeblerzulauf.net    \N    Eritrea    Lake Lanceberg    41167 Feeney Fields    47582-9803    Washington    2016-09-10 13:29:19.690939    2016-10-14 13:02:25.093161        \N    \N    \N    0    \N    \N    \N    \N    female
10171    Zachery    Larson    verdie@jastjacobson.name    \N    Zimbabwe    Noeshire    14465 Lance Village    74782-8648    Alabama    2016-07-18 10:00:53.573137    2016-10-14 13:02:25.102281        \N    \N    \N    0    \N    \N    \N    \N    female
10172    Rose    Padberg    benjamin_schoen@lindzemlak.io    \N    Marshall Islands    Aufderhartown    1099 Durgan Locks    95089-1936    Ohio    2016-06-27 15:45:56.175864    2016-10-14 13:02:25.105998        \N    \N    \N    0    \N    \N    \N    \N    male
10173    Henry    Hammes    mabelle_swift@heaneywitting.io    \N    Bulgaria    Glendaland    606 Caden Burg    90767-3846    North Dakota    2016-09-11 19:36:56.335777    2016-10-14 13:02:25.10917        \N    \N    \N    0    \N    \N    \N    \N    male
10174    Heidi    Herman    jarrett.gerlach@dooley.name    \N    Argentina    North Anabelle    89656 Damien Groves    46707-5931    Connecticut    2016-09-17 15:40:50.085174    2016-10-14 13:02:25.112305        \N    \N    \N    0    \N    \N    \N    \N    male
10176    Andres    Wunsch    paul.wyman@bogisich.org    \N    Bangladesh    Harveyville    9651 Balistreri Trail    72313    Nebraska    2016-09-02 17:15:24.616337    2016-10-14 13:02:25.11552        \N    \N    \N    0    \N    \N    \N    \N    female
10178    Kathryne    Carroll    janelle@botsford.info    \N    Congo    Waelchihaven    3926 Tamara Highway    84747    Virginia    2016-09-13 15:56:05.79688    2016-10-14 13:02:25.118596        \N    \N    \N    0    \N    \N    \N    \N    male
10179    Miracle    Sipes    kira.johnson@beahan.co    \N    Nepal    Isabellastad    634 Kihn Forges    22184-8517    North Carolina    2016-07-02 19:47:19.941034    2016-10-14 13:02:25.121733        \N    \N    \N    0    \N    \N    \N    \N    female
10180    Alexandra    Lang    dixie@gutmann.name    \N    Zambia    Port Dagmarstad    93715 Hahn Hills    31835    Indiana    2016-09-18 20:45:41.569652    2016-10-14 13:02:25.125002        \N    \N    \N    0    \N    \N    \N    \N    male
10200    Jeramy    Kilback    odell@lesch.name    \N    Angola    West Lacey    328 Manuel Mountains    42979-5003    Nevada    2016-09-10 07:16:28.674052    2016-10-14 13:02:25.128608        \N    \N    \N    0    \N    \N    \N    \N    female
10201    Flo    Kihn    garrick@williamsonorn.co    \N    Cocos (Keeling) Islands    Lake Ethanberg    579 Nathanael Dale    15768    Michigan    2016-07-06 01:58:40.633355    2016-10-14 13:02:25.132277        \N    \N    \N    0    \N    \N    \N    \N    female
10175    Deon    Sauer    sydnee@rogahngraham.name    \N    Eritrea    Port Mayside    27083 Kyle Way    97152    Maine    2016-08-30 05:44:38.464038    2016-10-14 13:02:25.136125        \N    \N    \N    0    \N    \N    \N    \N    male
10154    Ona    Bergnaum    kaley_fahey@reichertfunk.name    \N    Tokelau    Schambergerfort    3693 Kuhic Ridge    45861    Wyoming    2016-08-14 22:16:57.227985    2016-10-14 13:02:25.139646        \N    \N    \N    0    \N    \N    \N    \N    female
10155    George    Lind    leonor@mitchellparker.net    \N    Italy    Swaniawskistad    3531 Tiana Square    13681-1686    Connecticut    2016-09-11 13:01:38.282213    2016-10-14 13:02:25.143293        \N    \N    \N    0    \N    \N    \N    \N    male
10202    Callie    Grant    esta.nader@williamson.com    \N    Nicaragua    Vinnieshire    7435 Altenwerth Light    82200-5305    New Jersey    2016-08-13 05:37:15.13063    2016-10-14 13:02:25.146336        \N    \N    \N    0    \N    \N    \N    \N    female
10203    Lela    Willms    bridie@gulgowski.org    \N    Saint Martin    Lake Aubree    52546 Krystal Place    79668    Wyoming    2016-09-29 10:40:01.031641    2016-10-14 13:02:25.149535        \N    \N    \N    0    \N    \N    \N    \N    female
10204    Hardy    Rogahn    lance_carter@carterkautzer.io    \N    Lao People's Democratic Republic    New Candiceton    6478 Kertzmann Circles    11267-0049    Tennessee    2016-09-29 07:50:52.73656    2016-10-14 13:02:25.152461        \N    \N    \N    0    \N    \N    \N    \N    male
10205    Marilyne    Ziemann    margarette@skiles.co    \N    Congo    New Larry    4514 Ansley Mall    70933-6115    Washington    2016-07-04 04:23:22.412247    2016-10-14 13:02:25.155461        \N    \N    \N    0    \N    \N    \N    \N    male
10206    Marquise    Schimmel    zula@fisher.name    \N    Burkina Faso    Rodriguezmouth    82304 Ned Gateway    68850    Washington    2016-07-07 07:08:18.696055    2016-10-14 13:02:25.158899        \N    \N    \N    0    \N    \N    \N    \N    female
10207    Walton    Hodkiewicz    corene@beer.org    \N    Oman    Marinatown    173 Bella Wells    18516-8627    Vermont    2016-07-05 08:19:36.035538    2016-10-14 13:02:25.162052        \N    \N    \N    0    \N    \N    \N    \N    male
10208    Crystel    Bode    oral.wintheiser@lueilwitz.io    \N    Italy    East Dexterberg    171 Ressie Brook    87340    Colorado    2016-08-14 11:39:02.408787    2016-10-14 13:02:25.165021        \N    \N    \N    0    \N    \N    \N    \N    male
10209    Brown    Schiller    ephraim@ullrich.biz    \N    Spain    D'Amoremouth    72964 Darien Loop    12718    Utah    2016-08-11 13:47:47.993785    2016-10-14 13:02:25.168082        \N    \N    \N    0    \N    \N    \N    \N    female
10210    Nyasia    Bechtelar    hellen@streichborer.net    \N    Bolivia    East Rodger    7879 Clinton Trafficway    47555-0902    Alaska    2016-09-03 20:46:54.642803    2016-10-14 13:02:25.171359        \N    \N    \N    0    \N    \N    \N    \N    female
10211    Madelynn    Marvin    hilton_rippin@mccullough.com    \N    South Africa    Erlingfurt    315 Boyer Forge    19358-2307    New York    2016-08-23 17:59:19.99051    2016-10-14 13:02:25.174577        \N    \N    \N    0    \N    \N    \N    \N    male
10212    Fannie    Eichmann    frieda@schustercasper.biz    \N    Guinea-Bissau    New Asiashire    4759 Kip Club    41647    South Dakota    2016-09-23 01:05:47.492479    2016-10-14 13:02:25.17769        \N    \N    \N    0    \N    \N    \N    \N    female
10213    Patience    Langosh    trystan@ferry.net    \N    Liechtenstein    Port Ashley    875 Mosciski Parkways    68169-8881    South Carolina    2016-08-14 09:09:38.483254    2016-10-14 13:02:25.181435        \N    \N    \N    0    \N    \N    \N    \N    female
10216    Yasmeen    Murphy    brent@lehnerabbott.info    \N    Panama    Armandburgh    152 Madonna Mountains    20426    Alaska    2016-09-04 00:52:42.491755    2016-10-14 13:02:25.184559        \N    \N    \N    0    \N    \N    \N    \N    female
10217    Dessie    Predovic    rahul@weinat.net    \N    Myanmar    Torpside    9491 Magnolia Estate    68530-2820    Kentucky    2016-09-16 12:05:52.057457    2016-10-14 13:02:25.18752        \N    \N    \N    0    \N    \N    \N    \N    female
10218    Ward    McLaughlin    braeden_lowe@weimannkshlerin.info    \N    Liechtenstein    West Pierreberg    71950 Wunsch Court    80069    Louisiana    2016-07-02 08:12:00.329656    2016-10-14 13:02:25.190716        \N    \N    \N    0    \N    \N    \N    \N    female
10219    Donna    Lockman    beverly@weinat.net    \N    Gambia    Port Ena    14935 Osinski Harbors    52351-2091    Iowa    2016-09-11 21:12:19.850574    2016-10-14 13:02:25.193908        \N    \N    \N    0    \N    \N    \N    \N    male
10220    Joseph    Baumbach    rosetta.shields@oconnellgibson.info    \N    Holy See (Vatican City State)    Germainemouth    230 Ritchie Springs    80620    Massachusetts    2016-08-04 10:27:05.106532    2016-10-14 13:02:25.19788        \N    \N    \N    0    \N    \N    \N    \N    female
10221    Sofia    Prohaska    prince.abernathy@sanford.io    \N    Bangladesh    Lake Enriqueville    6428 Tromp Mills    73868-1266    Maryland    2016-07-20 15:03:02.601914    2016-10-14 13:02:25.202042        \N    \N    \N    0    \N    \N    \N    \N    male
10222    Germaine    Braun    caie.champlin@larkin.org    \N    United Kingdom    Kayfurt    2762 Danyka Harbor    41228    Montana    2016-08-07 07:01:42.678875    2016-10-14 13:02:25.205231        \N    \N    \N    0    \N    \N    \N    \N    male
10223    Leda    Paucek    myriam.mann@roberts.name    \N    Norway    New Fletaville    360 Autumn Ridge    25630-5172    Maine    2016-08-07 09:09:57.959422    2016-10-14 13:02:25.210247        \N    \N    \N    0    \N    \N    \N    \N    male
19586    Annetta    Huel    aaron@cronin.info    \N    Austria    Artborough    45533 Konopelski Glen    49698    Maryland    2016-08-14 08:04:35.427223    2016-10-14 13:02:25.214041        \N    \N    \N    0    \N    \N    \N    \N    female
10224    Brannon    Heidenreich    kristopher@dickens.org    \N    Swaziland    West Havenhaven    21516 Clarabelle Knolls    49590    Georgia    2016-07-18 15:07:45.997227    2016-10-14 13:02:25.217559        \N    \N    \N    0    \N    \N    \N    \N    female
10183    Elmira    MacGyver    sofia@goyetteharvey.net    \N    Swaziland    South Toneyview    36416 Estevan Park    11625    Minnesota    2016-06-22 15:40:43.112019    2016-10-14 13:02:25.224761        \N    \N    \N    0    \N    \N    \N    \N    female
10185    Reuben    Streich    ena.schuppe@brown.net    \N    Uruguay    New Ozzieburgh    96595 Kuhic Vista    67068-3553    Ohio    2016-07-06 18:33:15.47065    2016-10-14 13:02:25.22834        \N    \N    \N    0    \N    \N    \N    \N    male
10186    Marina    Yundt    glennie.runte@collins.com    \N    Saint Kitts and Nevis    Jaylonfort    35874 Elvis Gardens    82538-0578    North Carolina    2016-06-28 02:11:42.296168    2016-10-14 13:02:25.231554        \N    \N    \N    0    \N    \N    \N    \N    male
10187    Ruth    Walker    michale_blanda@reynoldsbernhard.info    \N    Isle of Man    West Schuylerland    9808 Leffler Curve    62446    New Hampshire    2016-08-16 16:41:03.242126    2016-10-14 13:02:25.234736        \N    \N    \N    0    \N    \N    \N    \N    female
10188    Kara    Trantow    fermin@daugherty.info    \N    Democratic People's Republic of Korea    East Flavie    57908 Turcotte Harbors    72946    Maryland    2016-07-04 11:11:17.508546    2016-10-14 13:02:25.238489        \N    \N    \N    0    \N    \N    \N    \N    male
10189    Ashlynn    Kihn    antonetta@hilpertwyman.info    \N    Timor-Leste    East Benjamin    798 Schuster Mount    82850    Nebraska    2016-06-23 14:46:24.355717    2016-10-14 13:02:25.242111        \N    \N    \N    0    \N    \N    \N    \N    male
10190    Dimitri    Murray    general_little@sawaynjohnson.io    \N    Djibouti    New Jedview    93305 Daniela Island    17047-5044    Wyoming    2016-08-03 04:21:10.358421    2016-10-14 13:02:25.24526        \N    \N    \N    0    \N    \N    \N    \N    female
10191    Lazaro    Weber    shana.king@mitchellmertz.name    \N    Ethiopia    Kuhnchester    633 Henderson Villages    77065    Alabama    2016-07-02 22:44:56.600125    2016-10-14 13:02:25.248497        \N    \N    \N    0    \N    \N    \N    \N    male
10192    Loy    Schmitt    einar@nicolas.com    \N    Cote d'Ivoire    Gleichnerfort    80488 Ross Shoals    63542-3377    Pennsylvania    2016-08-05 00:49:51.320458    2016-10-14 13:02:25.251664        \N    \N    \N    0    \N    \N    \N    \N    female
10193    Pierre    Roberts    adele@gaylord.com    \N    Togo    West Otiliabury    54853 Dare Hill    43589-3896    South Dakota    2016-08-14 19:32:39.16822    2016-10-14 13:02:25.254884        \N    \N    \N    0    \N    \N    \N    \N    male
10194    Sandrine    Kreiger    shakira@littlepouros.name    \N    Micronesia    West Janisborough    3722 Roberts Plaza    69340-5969    Pennsylvania    2016-09-01 19:21:57.094451    2016-10-14 13:02:25.258748        \N    \N    \N    0    \N    \N    \N    \N    male
10195    Braden    Daugherty    jena.moriette@leuschke.net    \N    Holy See (Vatican City State)    East Frederique    56735 Hills Neck    12766    Colorado    2016-08-14 03:50:37.156198    2016-10-14 13:02:25.261999        \N    \N    \N    0    \N    \N    \N    \N    male
10196    Louvenia    Adams    grant@hand.info    \N    Uganda    Gushaven    10792 Marcus Burg    91038-6922    New Mexico    2016-07-10 15:57:19.779168    2016-10-14 13:02:25.265022        \N    \N    \N    0    \N    \N    \N    \N    male
10198    Lily    Corkery    carey.baumbach@sporer.co    \N    Canada    Port Rae    7645 Norval Ports    90152-9233    Wisconsin    2016-09-14 05:07:10.410799    2016-10-14 13:02:25.268109        \N    \N    \N    0    \N    \N    \N    \N    male
10199    Hilario    Flatley    herta.bernhard@beahanborer.com    \N    Algeria    New Jordiland    529 Torp Fields    53063    Oregon    2016-07-10 05:52:43.607976    2016-10-14 13:02:25.271537        \N    \N    \N    0    \N    \N    \N    \N    female
10215    Jameson    Becker    parker.tremblay@reillyweber.io    \N    Cameroon    North Crystalport    545 Robel Plains    93056-6851    Nevada    2016-08-21 15:08:41.196495    2016-10-14 13:02:25.278115        \N    \N    \N    0    \N    \N    \N    \N    male
10225    Prudence    Hettinger    aletha@macgyver.org    \N    Austria    Hamillport    5224 O'Conner Inlet    46376-4858    Michigan    2016-09-19 08:12:30.53528    2016-10-14 13:02:25.281462        \N    \N    \N    0    \N    \N    \N    \N    male
10226    Rhett    Gulgowski    paul_frami@grant.io    \N    Greece    North Coltberg    417 Erica Tunnel    67923    North Dakota    2016-08-30 06:56:31.708003    2016-10-14 13:02:25.285373        \N    \N    \N    0    \N    \N    \N    \N    female
10227    Britney    Thiel    rosalee@bechtelar.org    \N    Saint Martin    Angelicastad    64315 Mossie Drive    66018-8604    Nevada    2016-07-19 03:08:19.094865    2016-10-14 13:02:25.289575        \N    \N    \N    0    \N    \N    \N    \N    male
10228    Kennedi    Crist    nellie_fisher@kshlerin.name    \N    Kuwait    Port Edytheland    103 Gottlieb Road    46639    Montana    2016-07-24 21:10:05.64882    2016-10-14 13:02:25.292629        \N    \N    \N    0    \N    \N    \N    \N    male
10229    Soledad    Weber    hattie_jenkins@mclaughlinfeil.net    \N    Ghana    West Rowan    883 Flo Locks    45434    Colorado    2016-09-03 10:43:22.826395    2016-10-14 13:02:25.295653        \N    \N    \N    0    \N    \N    \N    \N    female
10230    Selina    Wilderman    lilly@corkery.com    \N    Mexico    South Bridgette    859 Ullrich Forks    93683    Illinois    2016-08-13 08:45:18.895711    2016-10-14 13:02:25.299036        \N    \N    \N    0    \N    \N    \N    \N    male
10231    Ransom    Becker    marcellus_lueilwitz@volkman.io    \N    Burkina Faso    North Emiliefort    75417 Ellen Pass    65165-5659    Georgia    2016-08-18 23:49:55.168046    2016-10-14 13:02:25.302098        \N    \N    \N    0    \N    \N    \N    \N    male
10232    Deron    Rogahn    reuben_streich@nikolaus.name    \N    Congo    New Bettye    50116 Rocio Vista    51946    Colorado    2016-07-08 16:17:04.739655    2016-10-14 13:02:25.305471        \N    \N    \N    0    \N    \N    \N    \N    male
10233    Irwin    Connelly    giovani@runolfon.info    \N    Tanzania    Reidland    40519 Rau Spur    67855-5703    Minnesota    2016-08-27 16:38:36.153414    2016-10-14 13:02:25.308564        \N    \N    \N    0    \N    \N    \N    \N    male
10234    Justine    Parker    zoey@abbott.name    \N    New Zealand    North Esthermouth    8439 Alysson Circles    12942    West Virginia    2016-08-06 22:30:54.45538    2016-10-14 13:02:25.31169        \N    \N    \N    0    \N    \N    \N    \N    male
10235    Winifred    Lynch    consuelo@harbergaylord.org    \N    Antarctica (the territory South of 60 deg S)    Harbermouth    2042 Lowe Well    44402-7899    Kansas    2016-09-23 15:41:39.373544    2016-10-14 13:02:25.314996        \N    \N    \N    0    \N    \N    \N    \N    male
10236    Talon    Predovic    foster_mohr@runolfsdottirleuschke.com    \N    South Africa    West Delphia    939 Schmitt Manor    31207-0446    Connecticut    2016-08-17 04:30:17.643807    2016-10-14 13:02:25.318071        \N    \N    \N    0    \N    \N    \N    \N    female
10237    Eloise    Hermiston    virgie@ondricka.co    \N    Ethiopia    Justynfurt    5474 Schowalter Wall    29648    Oregon    2016-07-04 21:50:24.663355    2016-10-14 13:02:25.321776        \N    \N    \N    0    \N    \N    \N    \N    male
10238    Jerrell    Erdman    salma@rennertillman.info    \N    Afghanistan    Port Alexanne    60939 Ryan Trace    63446-4915    Louisiana    2016-08-31 17:57:38.943475    2016-10-14 13:02:25.325201        \N    \N    \N    0    \N    \N    \N    \N    female
10239    Amparo    Orn    moie@stokes.biz    \N    Virgin Islands, British    Lake Angelo    77109 Schmeler Wall    64117    Rhode Island    2016-07-16 13:09:57.658847    2016-10-14 13:02:25.328356        \N    \N    \N    0    \N    \N    \N    \N    female
10240    Donna    Cruickshank    marielle@corkerymurazik.co    \N    Saint Vincent and the Grenadines    Albinaport    71366 Emmie Green    56079-6522    Florida    2016-07-03 14:26:36.631353    2016-10-14 13:02:25.331671        \N    \N    \N    0    \N    \N    \N    \N    female
10242    Micah    Hodkiewicz    antonia@von.info    \N    Yemen    Kerlukehaven    4066 Connelly Court    60046    Georgia    2016-09-15 22:35:22.418285    2016-10-14 13:02:25.334917        \N    \N    \N    0    \N    \N    \N    \N    male
10243    Verdie    Marvin    murl@gerhold.co    \N    United States Minor Outlying Islands    West Aditya    52163 Bertrand Village    32090    Nebraska    2016-07-22 22:52:54.037141    2016-10-14 13:02:25.337977        \N    \N    \N    0    \N    \N    \N    \N    female
10244    Jovan    Fisher    ryleigh@ankunding.io    \N    Norway    Gislasonfurt    93162 Dickinson Drive    90026-9432    New Hampshire    2016-08-04 03:41:27.393158    2016-10-14 13:02:25.341711        \N    \N    \N    0    \N    \N    \N    \N    male
10245    Amani    Cummings    mark@auerpfeffer.biz    \N    Benin    Roobville    191 Darwin Camp    83733-3736    Missouri    2016-07-21 21:23:51.871271    2016-10-14 13:02:25.345039        \N    \N    \N    0    \N    \N    \N    \N    female
10246    Lucinda    Leuschke    quinton_koepp@reynolds.io    \N    Turkmenistan    Schneiderhaven    2677 Lynch Hill    45953    Arizona    2016-08-29 20:41:46.593721    2016-10-14 13:02:25.352253        \N    \N    \N    0    \N    \N    \N    \N    male
10247    Earline    Howell    milford@moore.info    \N    Portugal    Elainahaven    53025 Schaden Ramp    78593    Ohio    2016-08-01 16:38:18.213751    2016-10-14 13:02:25.356252        \N    \N    \N    0    \N    \N    \N    \N    male
10248    Jabari    Weissnat    theron_stroman@luettgen.com    \N    Virgin Islands, British    Minnieton    29776 Conroy Plains    70488-7578    Hawaii    2016-07-29 00:32:41.708615    2016-10-14 13:02:25.368365        \N    \N    \N    0    \N    \N    \N    \N    female
10249    Marlon    Reilly    lillie@wizahand.info    \N    Montenegro    Ritchiechester    84176 Germaine Wells    81050-1393    Alaska    2016-08-06 02:24:24.31167    2016-10-14 13:02:25.37152        \N    \N    \N    0    \N    \N    \N    \N    male
10250    Dock    Kreiger    monty_cummings@wilkinsoncorkery.info    \N    Norway    Barrowsshire    4553 Hoppe Ports    59505-8218    North Carolina    2016-08-20 01:09:48.503141    2016-10-14 13:02:25.374816        \N    \N    \N    0    \N    \N    \N    \N    female
10251    Presley    West    tania_feil@ohara.co    \N    Saint Helena    Framiport    4535 Omari Harbor    52164-8557    Vermont    2016-09-28 03:10:18.272218    2016-10-14 13:02:25.37848        \N    \N    \N    0    \N    \N    \N    \N    female
10252    Ludie    Towne    kay@hoeger.io    \N    Kiribati    South Dejahmouth    7164 Jules Stream    23450-3497    New Jersey    2016-07-07 08:43:51.16383    2016-10-14 13:02:25.382026        \N    \N    \N    0    \N    \N    \N    \N    male
10253    Dayne    Walker    deangelo@cummerataratke.co    \N    Belgium    Leopoldstad    43244 Jack Forest    62086    Nevada    2016-09-04 15:03:53.97156    2016-10-14 13:02:25.385787        \N    \N    \N    0    \N    \N    \N    \N    female
10254    Art    Kuhlman    armani.stracke@bergstrom.info    \N    Croatia    Stoltenbergberg    5646 Vivienne Drive    91050    Oklahoma    2016-07-03 13:45:10.04941    2016-10-14 13:02:25.389225        \N    \N    \N    0    \N    \N    \N    \N    male
10255    Olin    Brakus    fae.johnson@greenholt.org    \N    Cayman Islands    Lake Liliana    797 Corwin Falls    62445-7744    California    2016-09-24 11:09:37.962063    2016-10-14 13:02:25.392298        \N    \N    \N    0    \N    \N    \N    \N    male
10256    Albina    Bartell    stacey_satterfield@maggio.com    \N    Solomon Islands    West Emely    6337 Schamberger Hollow    81207-4617    West Virginia    2016-09-24 14:52:28.323924    2016-10-14 13:02:25.395515        \N    \N    \N    0    \N    \N    \N    \N    female
10257    Davin    Stoltenberg    kadin@reynoldsrogahn.co    \N    Haiti    Port Lurlineside    907 Johan Manors    89834-3172    Illinois    2016-09-01 22:14:34.714786    2016-10-14 13:02:25.3987        \N    \N    \N    0    \N    \N    \N    \N    male
10258    Antwan    Heidenreich    daniela@abbottparisian.com    \N    Cape Verde    Gutmannport    8498 Everette Bypass    72104-2379    Kentucky    2016-09-08 13:02:22.715085    2016-10-14 13:02:25.403079        \N    \N    \N    0    \N    \N    \N    \N    male
10260    Spencer    Waelchi    germaine.herman@runte.co    \N    Madagascar    Ceciliafort    5312 Bosco Grove    29651-1724    Massachusetts    2016-08-18 13:32:32.932022    2016-10-14 13:02:25.406418        \N    \N    \N    0    \N    \N    \N    \N    female
10261    Maxine    Satterfield    jadyn@handschinner.com    \N    Turks and Caicos Islands    Port Caesar    493 Maynard Court    45253    Alaska    2016-08-08 12:10:45.329812    2016-10-14 13:02:25.409827        \N    \N    \N    0    \N    \N    \N    \N    male
10262    Nicolas    Wehner    karl@pollich.co    \N    Lebanon    North Zora    3850 Harris Ridges    54026    Alabama    2016-08-08 13:24:43.337804    2016-10-14 13:02:25.41395        \N    \N    \N    0    \N    \N    \N    \N    female
10263    Arne    Johnston    jordan_carroll@predovic.com    \N    Marshall Islands    Jaysonland    23386 Wintheiser Row    24746    Kansas    2016-07-12 06:49:46.29886    2016-10-14 13:02:25.417078        \N    \N    \N    0    \N    \N    \N    \N    male
10264    Thomas    Schulist    christine.carroll@bogangerhold.io    \N    Senegal    Wiegandbury    77791 Claud Roads    82173    Illinois    2016-07-22 18:02:54.25722    2016-10-14 13:02:25.420425        \N    \N    \N    0    \N    \N    \N    \N    male
10265    Lesley    Brekke    samson.stoltenberg@terry.co    \N    Bolivia    Jennyfertown    232 Hilario Crossroad    92214    Connecticut    2016-09-03 01:52:26.648402    2016-10-14 13:02:25.425042        \N    \N    \N    0    \N    \N    \N    \N    male
10266    Stuart    Berge    adrain@halvorsoncasper.io    \N    Reunion    Port Melyssamouth    520 Stamm Turnpike    98404-4574    Oklahoma    2016-08-14 02:59:54.063515    2016-10-14 13:02:25.428813        \N    \N    \N    0    \N    \N    \N    \N    female
10267    Arlene    D'Amore    dejah.spinka@deckow.net    \N    Peru    Nikolausland    36315 Witting Mountains    21425    Texas    2016-08-04 00:45:01.320723    2016-10-14 13:02:25.432712        \N    \N    \N    0    \N    \N    \N    \N    female
10268    Efrain    Wilkinson    alan.beer@stiedemann.biz    \N    Israel    Fanniestad    4093 Charlene Square    94668-0810    Montana    2016-09-23 14:13:11.450896    2016-10-14 13:02:25.436085        \N    \N    \N    0    \N    \N    \N    \N    female
10269    Tiara    Keebler    tyrel.wisozk@simonis.biz    \N    Ukraine    West Duaneburgh    21538 Nicole Dale    28685-3375    Florida    2016-09-22 16:16:27.66433    2016-10-14 13:02:25.439752        \N    \N    \N    0    \N    \N    \N    \N    female
10270    Trycia    Walter    fatima_satterfield@koelpin.info    \N    Armenia    Yostshire    57451 Schamberger Lakes    35803    Oregon    2016-09-26 15:10:30.129204    2016-10-14 13:02:25.444005        \N    \N    \N    0    \N    \N    \N    \N    female
10271    Josh    Feest    elenora.nikolaus@kilback.com    \N    Cyprus    Port Icie    994 Kunze Shoals    90435    Minnesota    2016-09-12 03:34:19.121666    2016-10-14 13:02:25.447866        \N    \N    \N    0    \N    \N    \N    \N    female
10272    Bonnie    Stehr    maryam_ferry@jakubowski.com    \N    Isle of Man    New Mattiemouth    6003 Dolores Street    19636-7408    Oregon    2016-07-10 08:44:35.819394    2016-10-14 13:02:25.451575        \N    \N    \N    0    \N    \N    \N    \N    male
10273    Jamal    Franecki    prince@strosin.info    \N    Honduras    Damarishaven    3377 Gottlieb Pine    25036    Texas    2016-07-18 05:34:11.379473    2016-10-14 13:02:25.455095        \N    \N    \N    0    \N    \N    \N    \N    female
10274    Orlando    Fisher    julien.shields@parisian.info    \N    Eritrea    South Shana    8149 Pfannerstill Square    88272    Kentucky    2016-09-19 22:30:21.477453    2016-10-14 13:02:25.458631        \N    \N    \N    0    \N    \N    \N    \N    female
10275    Trystan    Adams    jermey.grimes@oberbrunner.com    \N    Solomon Islands    Goyettetown    1471 Paxton Rest    99454    Rhode Island    2016-08-01 00:13:59.512199    2016-10-14 13:02:25.462361        \N    \N    \N    0    \N    \N    \N    \N    male
10276    Trinity    Hermann    randall.abbott@bednar.io    \N    Pitcairn Islands    Dooleybury    6887 Frankie Spring    98057    Alabama    2016-06-23 13:53:40.792775    2016-10-14 13:02:25.465845        \N    \N    \N    0    \N    \N    \N    \N    male
10277    Elmira    Padberg    rosalyn@beersimonis.com    \N    Kenya    South Ansley    2758 Austen Drive    80627    Ohio    2016-07-20 17:06:21.973935    2016-10-14 13:02:25.468968        \N    \N    \N    0    \N    \N    \N    \N    male
10278    Iliana    Frami    jimmie_littel@zemlakjaskolski.com    \N    Iran    Lilianeland    4750 Kohler Track    65308-2210    Arkansas    2016-08-31 01:43:49.794393    2016-10-14 13:02:25.47226        \N    \N    \N    0    \N    \N    \N    \N    male
10279    Federico    Tremblay    angelo@schimmelbalistreri.com    \N    Nepal    Pricechester    96208 Amiya Loop    81786-1959    Alaska    2016-07-14 22:46:21.473105    2016-10-14 13:02:25.475895        \N    \N    \N    0    \N    \N    \N    \N    male
10280    Ward    Rohan    ransom.steuber@runolfon.io    \N    Macedonia    Johannview    280 Furman Passage    22405-3292    Utah    2016-08-08 15:33:20.586598    2016-10-14 13:02:25.479321        \N    \N    \N    0    \N    \N    \N    \N    female
10281    Emanuel    McKenzie    palma.spencer@treutel.com    \N    Turkmenistan    Shaynetown    154 Alexandre Flat    81023    Delaware    2016-09-15 19:16:12.662325    2016-10-14 13:02:25.482862        \N    \N    \N    0    \N    \N    \N    \N    male
10282    Otho    Rowe    gene@auer.com    \N    Oman    Hazleville    45644 Milo Mount    88676    Massachusetts    2016-07-13 08:09:33.222664    2016-10-14 13:02:25.486186        \N    \N    \N    0    \N    \N    \N    \N    male
10283    Violette    Ward    jamie_heaney@konopelski.net    \N    Wallis and Futuna    Port Candelariofort    242 Colby Pines    70141-2519    Washington    2016-08-26 13:03:08.00019    2016-10-14 13:02:25.489539        \N    \N    \N    0    \N    \N    \N    \N    male
10284    Maurine    Cassin    darrick_bernhard@littelraynor.net    \N    Macao    Lonbury    45475 Miller Gateway    28291    Nevada    2016-09-18 17:44:38.16205    2016-10-14 13:02:25.496022        \N    \N    \N    0    \N    \N    \N    \N    female
10285    Maximillia    Hilpert    antonietta.keler@croninwehner.name    \N    Afghanistan    Howellshire    582 Izaiah Rue    88440-7334    Utah    2016-09-25 22:56:00.143239    2016-10-14 13:02:25.499992        \N    \N    \N    0    \N    \N    \N    \N    male
10286    Florencio    Wilderman    chanel.legros@kutch.org    \N    Svalbard & Jan Mayen Islands    Zemlakside    75984 Block Road    29926-6514    New Jersey    2016-08-01 06:21:35.670301    2016-10-14 13:02:25.503683        \N    \N    \N    0    \N    \N    \N    \N    female
13940    Erich    Boyle    raphael@wisoky.info    \N    Fiji    Port Gordonstad    3196 Kamille Drive    58498    Maine    2016-09-08 23:10:28.466968    2016-10-14 13:02:25.507355        \N    \N    \N    0    \N    \N    \N    \N    female
10287    Christiana    Volkman    marjory.jast@hyattboehm.info    \N    Portugal    Mackenzieview    83733 Laury Harbors    26064    Wisconsin    2016-06-27 22:19:24.322478    2016-10-14 13:02:25.51145        \N    \N    \N    0    \N    \N    \N    \N    male
10289    Kailyn    Lemke    merlin_ritchie@blick.io    \N    Haiti    Amaliamouth    98141 Jalen Curve    99661-3833    Illinois    2016-07-02 14:19:16.124894    2016-10-14 13:02:25.515201        \N    \N    \N    0    \N    \N    \N    \N    male
10290    Giovani    Herman    henri@muller.org    \N    Montserrat    Lake June    5649 Hackett Springs    90776-1053    West Virginia    2016-08-23 03:36:53.671452    2016-10-14 13:02:25.518381        \N    \N    \N    0    \N    \N    \N    \N    female
10291    Deanna    Zboncak    althea_welch@west.io    \N    Gabon    Lake Laisha    299 Mariane Skyway    44119    Pennsylvania    2016-08-07 19:05:08.197631    2016-10-14 13:02:25.521661        \N    \N    \N    0    \N    \N    \N    \N    male
10292    Esteban    D'Amore    ellis@smitham.biz    \N    Lesotho    Lunaburgh    58171 Ledner Mall    62017-1070    Alabama    2016-09-13 02:45:56.623575    2016-10-14 13:02:25.525301        \N    \N    \N    0    \N    \N    \N    \N    male
10293    Cristina    Botsford    jany_mclaughlin@strosinlarkin.org    \N    South Georgia and the South Sandwich Islands    North Margaretstad    22116 Terry Turnpike    28310-3392    California    2016-08-09 02:18:34.457391    2016-10-14 13:02:25.528873        \N    \N    \N    0    \N    \N    \N    \N    female
10294    Arianna    Cummerata    alvera@lednerhodkiewicz.org    \N    French Polynesia    East Wilmer    691 Braun Plain    39893-2292    Vermont    2016-06-27 06:35:19.314689    2016-10-14 13:02:25.532888        \N    \N    \N    0    \N    \N    \N    \N    female
10295    Brown    Marvin    liam@hegmannvolkman.io    \N    Samoa    Naomieport    111 Lesch Shoals    91740    Utah    2016-08-26 15:19:17.822937    2016-10-14 13:02:25.536162        \N    \N    \N    0    \N    \N    \N    \N    female
10296    Rosalind    Mraz    maryam_kuhic@wintheiser.io    \N    Botswana    East Jaime    251 Schroeder Rapids    39220-3231    Ohio    2016-06-29 12:44:06.952274    2016-10-14 13:02:25.539537        \N    \N    \N    0    \N    \N    \N    \N    male
10297    Stephon    Davis    concepcion.hamill@lesch.com    \N    Canada    East Lourdes    38839 Anahi Villages    16535-5622    Tennessee    2016-08-02 18:45:10.21992    2016-10-14 13:02:25.542705        \N    \N    \N    0    \N    \N    \N    \N    male
10298    Cheyenne    Bogan    marcos_bode@lang.biz    \N    Guam    Evanburgh    46816 Orn Ranch    37109    Pennsylvania    2016-07-24 15:33:49.743039    2016-10-14 13:02:25.546367        \N    \N    \N    0    \N    \N    \N    \N    female
10299    Walter    McKenzie    max@prohaska.org    \N    Pitcairn Islands    East Jeffreyborough    685 Amani Ports    80310    West Virginia    2016-08-07 05:19:02.439524    2016-10-14 13:02:25.549767        \N    \N    \N    0    \N    \N    \N    \N    male
10300    Nolan    Lowe    margarita@lueilwitzrowe.biz    \N    Jersey    North Kathryne    2160 Minerva Islands    75954-5532    Florida    2016-08-24 22:06:42.993441    2016-10-14 13:02:25.553054        \N    \N    \N    0    \N    \N    \N    \N    male
10301    Kaitlyn    Hoppe    myron@abbott.io    \N    Norfolk Island    North Philip    646 Bayer Hills    60349-3332    Massachusetts    2016-09-22 10:46:01.034498    2016-10-14 13:02:25.558278        \N    \N    \N    0    \N    \N    \N    \N    male
10302    Eldon    Blanda    larry@armstrong.biz    \N    Mexico    Adrienville    66409 Abelardo Field    87832    Alaska    2016-07-14 08:24:11.503729    2016-10-14 13:02:25.561545        \N    \N    \N    0    \N    \N    \N    \N    female
10303    Kitty    Gerlach    amara@jacobsbrown.info    \N    Slovenia    Boganville    20726 Kling Ranch    82825    Utah    2016-09-20 16:12:28.963401    2016-10-14 13:02:25.564571        \N    \N    \N    0    \N    \N    \N    \N    female
10304    Alva    Bednar    aleen@ledner.net    \N    Jordan    Annabelleview    92372 Osinski Square    52809-7854    Ohio    2016-08-24 14:29:16.751013    2016-10-14 13:02:25.569098        \N    \N    \N    0    \N    \N    \N    \N    male
10305    Amos    Hansen    dannie.corkery@kub.io    \N    Brazil    New Christafurt    6761 Lesly Road    85022    New Mexico    2016-07-14 20:58:27.338133    2016-10-14 13:02:25.573433        \N    \N    \N    0    \N    \N    \N    \N    female
10306    Louie    Johnston    moriah_bauch@witting.net    \N    Albania    Lysannestad    2026 Bailey Curve    28548    Arkansas    2016-07-25 18:48:40.552178    2016-10-14 13:02:25.577208        \N    \N    \N    0    \N    \N    \N    \N    male
10307    Lois    Spinka    jeika@kuhlmanaufderhar.co    \N    Sweden    Rhodahaven    37889 Kaelyn Knolls    88263    Montana    2016-09-11 17:00:48.355679    2016-10-14 13:02:25.580717        \N    \N    \N    0    \N    \N    \N    \N    female
10308    Rosalia    Towne    jaclyn@feilkerluke.info    \N    Greenland    Port Rosamond    5087 Leannon Park    68192-0850    Kentucky    2016-07-14 07:01:57.051881    2016-10-14 13:02:25.5846        \N    \N    \N    0    \N    \N    \N    \N    female
10309    Scotty    Wuckert    morton.bins@kihncummings.io    \N    Lao People's Democratic Republic    Rempelchester    7705 Kautzer Forks    15670    Wyoming    2016-07-16 02:30:56.157864    2016-10-14 13:02:25.589068        \N    \N    \N    0    \N    \N    \N    \N    male
10311    Kennedi    Schimmel    rudy.schneider@armstrong.co    \N    Bosnia and Herzegovina    Hickleville    935 Eulah Course    54010    Hawaii    2016-07-05 17:16:30.905788    2016-10-14 13:02:25.595922        \N    \N    \N    0    \N    \N    \N    \N    female
10312    Malachi    Breitenberg    lenore@wolfboehm.info    \N    Zambia    Danielberg    565 Johan Common    24226    Texas    2016-07-26 13:06:53.003079    2016-10-14 13:02:25.599256        \N    \N    \N    0    \N    \N    \N    \N    female
10313    Rodrick    Stroman    elias.murphy@hammes.com    \N    Falkland Islands (Malvinas)    Treutelberg    246 Dayna Canyon    75230    Arizona    2016-09-18 18:40:52.755211    2016-10-14 13:02:25.602814        \N    \N    \N    0    \N    \N    \N    \N    male
10314    Emmanuelle    Kemmer    serena_gulgowski@kirlinthiel.name    \N    Denmark    Port Lulaport    4491 Maybell Street    76608    North Dakota    2016-07-20 16:05:55.59978    2016-10-14 13:02:25.606786        \N    \N    \N    0    \N    \N    \N    \N    female
10315    Vincenza    Upton    kolby_terry@steuber.org    \N    Western Sahara    Adamouth    85544 Pearl Knolls    51261-6339    Ohio    2016-07-31 11:52:09.460634    2016-10-14 13:02:25.610026        \N    \N    \N    0    \N    \N    \N    \N    female
10316    Newton    Beatty    vanea_hand@bartoletti.org    \N    Norfolk Island    Sanfordtown    4859 Upton Prairie    87690-7327    Wisconsin    2016-08-08 11:44:16.202438    2016-10-14 13:02:25.614334        \N    \N    \N    0    \N    \N    \N    \N    male
10317    Brionna    Schmitt    nestor_cain@gutmann.io    \N    Togo    Sunnybury    67389 Kirk Bypass    85744    New York    2016-08-19 10:52:42.631102    2016-10-14 13:02:25.617551        \N    \N    \N    0    \N    \N    \N    \N    male
10318    Spencer    Frami    pietro_barrows@robel.org    \N    United States Minor Outlying Islands    New Leopoldoberg    89011 Helga Cliff    31444    Minnesota    2016-09-21 10:31:09.126787    2016-10-14 13:02:25.621128        \N    \N    \N    0    \N    \N    \N    \N    male
10319    Brielle    Harris    hosea@gorczany.info    \N    Aruba    Goyettefort    53200 Wallace Row    77883    Massachusetts    2016-08-06 03:49:44.949943    2016-10-14 13:02:25.629097        \N    \N    \N    0    \N    \N    \N    \N    male
10320    Charlotte    Gleichner    adrianna.kshlerin@auer.org    \N    Macedonia    South Murray    825 Carlo Crest    98377-4544    Delaware    2016-09-02 03:15:00.473166    2016-10-14 13:02:25.632306        \N    \N    \N    0    \N    \N    \N    \N    female
10321    Sister    Steuber    ernestina@kohler.com    \N    Kiribati    Rigobertoburgh    5112 Garrison Ridge    12394-8143    Hawaii    2016-09-09 07:27:54.106995    2016-10-14 13:02:25.636797        \N    \N    \N    0    \N    \N    \N    \N    male
10322    Hilton    Cummerata    rafael.jacobson@schiller.biz    \N    Cameroon    Lake Valentine    67251 McLaughlin Drive    84064-6532    Florida    2016-06-24 06:17:07.753314    2016-10-14 13:02:25.642149        \N    \N    \N    0    \N    \N    \N    \N    female
10323    Heidi    Wisozk    ali_green@doyle.info    \N    India    Aishabury    39909 Ladarius Knoll    66933    Pennsylvania    2016-09-10 06:30:51.649327    2016-10-14 13:02:25.645832        \N    \N    \N    0    \N    \N    \N    \N    male
10324    Rico    Koelpin    joana.lind@oberbrunnerbrakus.net    \N    Fiji    Port Kendricktown    12955 Considine Brook    43403-4947    Wisconsin    2016-06-28 10:11:02.669659    2016-10-14 13:02:25.649527        \N    \N    \N    0    \N    \N    \N    \N    female
10325    Eldora    Gaylord    lavada@schaden.io    \N    Norfolk Island    West Hassiechester    20232 Wisozk Groves    28323    Hawaii    2016-07-07 09:58:28.043088    2016-10-14 13:02:25.654697        \N    \N    \N    0    \N    \N    \N    \N    male
10326    Ansel    Doyle    magdalen.west@heaneybogisich.name    \N    Lao People's Democratic Republic    North Celiashire    188 Gutmann Brook    51127    Kentucky    2016-06-25 12:23:53.997609    2016-10-14 13:02:25.658863        \N    \N    \N    0    \N    \N    \N    \N    female
10327    Maynard    Willms    mazie.frami@murray.com    \N    Mozambique    Aricside    70063 Koepp Drives    11141-5707    New Jersey    2016-06-26 16:02:22.045979    2016-10-14 13:02:25.662385        \N    \N    \N    0    \N    \N    \N    \N    female
10329    Noel    Renner    eldora_fisher@heidenreich.net    \N    Ghana    West Tryciaview    308 Alvena Land    26194-2618    Minnesota    2016-09-20 00:39:02.98595    2016-10-14 13:02:25.665766        \N    \N    \N    0    \N    \N    \N    \N    female
10330    Johathan    Swift    haylie@hermanndaniel.info    \N    Latvia    Port Violette    360 Antone Ridge    97132-5599    Minnesota    2016-09-08 18:39:28.798139    2016-10-14 13:02:25.669033        \N    \N    \N    0    \N    \N    \N    \N    male
10331    Retha    Greenfelder    shad.bergstrom@greenholtfunk.net    \N    Mongolia    Riverview    9230 Cremin Shoal    42982    California    2016-09-21 19:46:20.828309    2016-10-14 13:02:25.674632        \N    \N    \N    0    \N    \N    \N    \N    female
10332    Cathy    Zboncak    hester_gulgowski@marquardt.com    \N    Tunisia    Jaclynland    69602 Greenholt Drives    39884-7167    Arizona    2016-09-17 01:02:14.861446    2016-10-14 13:02:25.680258        \N    \N    \N    0    \N    \N    \N    \N    female
10333    Dolly    Borer    murl.monahan@hand.co    \N    Armenia    Pamelachester    5464 Anahi Terrace    34586-5663    Texas    2016-08-17 12:44:58.962353    2016-10-14 13:02:25.686381        \N    \N    \N    0    \N    \N    \N    \N    female
10334    Charlotte    Crooks    keagan_purdy@wyman.name    \N    Cape Verde    New Drake    531 Harvey Viaduct    81330-2501    Utah    2016-08-02 11:09:10.685372    2016-10-14 13:02:25.690679        \N    \N    \N    0    \N    \N    \N    \N    male
10335    Alfredo    Jerde    eulah@dickinsonluettgen.com    \N    Angola    North Sunny    3878 Hettinger Corners    90039    California    2016-08-09 05:30:44.378017    2016-10-14 13:02:25.694191        \N    \N    \N    0    \N    \N    \N    \N    male
10336    Maryam    Schroeder    brayan@fahey.biz    \N    Tonga    Port Gracielatown    1939 Keshawn Islands    51090    New Jersey    2016-08-08 17:56:38.040262    2016-10-14 13:02:25.697711        \N    \N    \N    0    \N    \N    \N    \N    male
10337    Angus    Rippin    gerardo@haleyveum.net    \N    Zimbabwe    Bernhardtown    976 Heller Mission    19773-0656    Washington    2016-09-13 00:36:50.004881    2016-10-14 13:02:25.702168        \N    \N    \N    0    \N    \N    \N    \N    female
10338    Talia    Schaefer    shanny.waelchi@fisher.co    \N    Bhutan    Sandrinestad    415 Gutkowski Trail    95652    Mississippi    2016-08-11 08:22:59.727473    2016-10-14 13:02:25.718859        \N    \N    \N    0    \N    \N    \N    \N    male
10340    Tyree    Breitenberg    roma_leannon@leschstoltenberg.name    \N    Namibia    Smithammouth    9941 Gorczany Manor    29085    Wyoming    2016-06-27 07:08:23.782218    2016-10-14 13:02:25.726718        \N    \N    \N    0    \N    \N    \N    \N    male
10341    Angie    Wuckert    kenyon_skiles@gerholdcronin.org    \N    Virgin Islands, U.S.    Mauricefort    860 Smitham Fork    89064    Oklahoma    2016-09-28 13:30:59.182549    2016-10-14 13:02:25.770374        \N    \N    \N    0    \N    \N    \N    \N    female
10342    Kasandra    Schmitt    wilhelm@mohr.name    \N    Montserrat    Lake Lauriane    546 Ottilie Fields    36751-9018    Maine    2016-09-14 19:33:40.720873    2016-10-14 13:02:25.778212        \N    \N    \N    0    \N    \N    \N    \N    female
10343    Shayne    Homenick    devante.schmeler@kaulkewindler.com    \N    Eritrea    Rutherfordtown    60301 Mueller Hill    78240-3018    West Virginia    2016-08-21 09:13:53.910423    2016-10-14 13:02:25.782093        \N    \N    \N    0    \N    \N    \N    \N    female
10344    Griffin    Paucek    gilbert@lebsack.name    \N    Lao People's Democratic Republic    Theoview    2469 Abraham Tunnel    56552-7894    Arizona    2016-09-10 13:29:58.420365    2016-10-14 13:02:25.78547        \N    \N    \N    0    \N    \N    \N    \N    female
10345    Schuyler    Hodkiewicz    alf@durganhudson.com    \N    Cayman Islands    North Dallinshire    7896 Shields Ville    24219    Hawaii    2016-08-03 21:30:26.658045    2016-10-14 13:02:25.78868        \N    \N    \N    0    \N    \N    \N    \N    female
10346    Bridgette    Stanton    samir.reilly@welch.biz    \N    Czech Republic    West Caliside    46596 Rolando Flat    12274-5822    Connecticut    2016-09-15 21:45:37.588974    2016-10-14 13:02:25.792007        \N    \N    \N    0    \N    \N    \N    \N    male
10347    Vilma    O'Hara    monique.pfannerstill@farrell.io    \N    Malawi    Lake Thora    5741 Welch Islands    28034    Michigan    2016-07-06 19:08:12.137662    2016-10-14 13:02:25.795666        \N    \N    \N    0    \N    \N    \N    \N    female
10348    Delphine    West    carroll.schinner@mitchellweimann.co    \N    Argentina    South Jorgeland    2020 Duncan Wall    66831-3226    Florida    2016-07-23 14:25:19.772552    2016-10-14 13:02:25.798973        \N    \N    \N    0    \N    \N    \N    \N    female
10349    Eldred    Orn    audrey.quigley@moriettehansen.com    \N    Burundi    South Madelynnshire    30507 Brooklyn Orchard    57663-9603    New York    2016-09-27 08:16:27.37166    2016-10-14 13:02:25.802422        \N    \N    \N    0    \N    \N    \N    \N    male
10874    Devonte    Ankunding    guie@bashirian.name    \N    Chad    North Ofeliaberg    2766 Metz Stravenue    84648    Texas    2016-08-14 23:46:01.256704    2016-10-14 13:02:27.938806        \N    \N    \N    0    \N    \N    \N    \N    female
10350    Rosetta    Littel    vella.dietrich@kemmerbrekke.org    \N    Hong Kong    West Garnettborough    55824 Bailey Lock    85715-9575    Alabama    2016-07-15 09:52:17.872911    2016-10-14 13:02:25.80548        \N    \N    \N    0    \N    \N    \N    \N    male
10351    Christophe    Casper    ludwig_cummerata@gleason.biz    \N    Cayman Islands    West Kyleetown    96044 DuBuque Plaza    88859    West Virginia    2016-08-08 20:30:36.763122    2016-10-14 13:02:25.808728        \N    \N    \N    0    \N    \N    \N    \N    male
10352    Coralie    Morissette    arch@olson.co    \N    British Indian Ocean Territory (Chagos Archipelago)    Abbottfort    85762 Rey Place    13822    Georgia    2016-07-15 20:04:48.969861    2016-10-14 13:02:25.811962        \N    \N    \N    0    \N    \N    \N    \N    female
10353    Arnoldo    Douglas    mabel@quitzon.net    \N    Equatorial Guinea    Luisstad    806 Dane Lights    87939-6519    Minnesota    2016-09-14 11:01:03.054432    2016-10-14 13:02:25.814961        \N    \N    \N    0    \N    \N    \N    \N    female
10354    Marcus    Crooks    eloisa@grimes.com    \N    Somalia    Port Chelseyview    772 Janiya Center    99742    South Dakota    2016-07-26 00:59:14.770996    2016-10-14 13:02:25.817876        \N    \N    \N    0    \N    \N    \N    \N    female
10355    Nikko    Stroman    cleora.crona@bogisichreilly.org    \N    Rwanda    Keaganborough    3959 Hauck Harbors    92729    Mississippi    2016-06-29 22:06:11.854855    2016-10-14 13:02:25.820965        \N    \N    \N    0    \N    \N    \N    \N    female
10356    Terrill    Sawayn    eva@kuhn.io    \N    Australia    Averybury    77821 Hand Junction    74811-0112    Arizona    2016-07-13 04:17:30.963767    2016-10-14 13:02:25.824282        \N    \N    \N    0    \N    \N    \N    \N    female
10536    Rocio    Wiza    luigi@pacocha.co    \N    Italy    West Jamaal    4831 Rylee Courts    32999    Arkansas    2016-09-02 17:42:27.551393    2016-10-14 13:02:25.82771        \N    \N    \N    0    \N    \N    \N    \N    female
10357    Milan    Goyette    zoey_ullrich@kuvalisjenkins.io    \N    Liberia    Lake Zackary    7208 White Rue    47643-6177    Georgia    2016-07-28 20:23:05.772216    2016-10-14 13:02:25.831124        \N    \N    \N    0    \N    \N    \N    \N    female
10358    Jaden    Lubowitz    winfield@hahn.co    \N    Chile    West Alessandromouth    874 Ramiro Place    89560-9591    Wisconsin    2016-08-22 18:03:43.119191    2016-10-14 13:02:25.834787        \N    \N    \N    0    \N    \N    \N    \N    female
10359    Eulah    Fadel    emmanuel@daviskreiger.biz    \N    United Kingdom    Lake Shanel    132 Towne Springs    37016-9956    Iowa    2016-08-08 17:36:34.524735    2016-10-14 13:02:25.839996        \N    \N    \N    0    \N    \N    \N    \N    female
10360    Catherine    Rogahn    jaylin.purdy@strackeschoen.name    \N    Togo    Toneytown    530 Mauricio Points    62513    Delaware    2016-08-03 04:11:02.401315    2016-10-14 13:02:25.843922        \N    \N    \N    0    \N    \N    \N    \N    male
10361    Glenna    Predovic    kenya.schmitt@fayswaniawski.info    \N    Palestinian Territory    Lake Libbychester    27623 Deven Streets    21231    North Carolina    2016-07-31 17:49:02.071865    2016-10-14 13:02:25.848812        \N    \N    \N    0    \N    \N    \N    \N    male
10362    Vincent    Harber    theodora.schowalter@cummerata.name    \N    Kyrgyz Republic    Schillerbury    9198 Ahmad Pine    59497    Kentucky    2016-09-19 12:27:04.921013    2016-10-14 13:02:25.852399        \N    \N    \N    0    \N    \N    \N    \N    female
10363    Quentin    Pfeffer    audie_cole@eichmannlarkin.com    \N    Cameroon    Port Gina    94081 Gladys Ranch    14388-4544    Missouri    2016-07-23 16:54:59.900369    2016-10-14 13:02:25.855956        \N    \N    \N    0    \N    \N    \N    \N    male
10364    Cynthia    McDermott    josie.price@fahey.com    \N    Burkina Faso    New Theresia    214 Madelyn Summit    38626    Georgia    2016-07-15 16:54:54.722623    2016-10-14 13:02:25.859553        \N    \N    \N    0    \N    \N    \N    \N    male
10365    Enola    Sporer    ernesto_hickle@murray.biz    \N    Saudi Arabia    South Reneeshire    9614 Muller Bridge    87289-3232    Rhode Island    2016-07-11 12:00:02.370806    2016-10-14 13:02:25.863375        \N    \N    \N    0    \N    \N    \N    \N    female
10366    Santa    Rodriguez    jayden@kohler.info    \N    Cyprus    Marshallchester    4543 Jacobs Fork    68723    Ohio    2016-07-28 18:21:04.56851    2016-10-14 13:02:25.86679        \N    \N    \N    0    \N    \N    \N    \N    female
10367    Arvilla    Hauck    gillian.stanton@zboncakframi.name    \N    Kiribati    Port Katelin    2656 Stokes Glens    97588    North Dakota    2016-08-04 13:38:52.991671    2016-10-14 13:02:25.870194        \N    \N    \N    0    \N    \N    \N    \N    female
10368    Elyse    Ferry    cydney@hilll.co    \N    Jersey    Lake Mohammad    651 Sonia Canyon    34822    Wisconsin    2016-07-09 05:08:39.244746    2016-10-14 13:02:25.873737        \N    \N    \N    0    \N    \N    \N    \N    male
10369    Clinton    Bruen    mireille_schowalter@hahnbecker.biz    \N    Australia    Salvadorhaven    678 Farrell Ferry    66228    Oklahoma    2016-09-21 19:27:59.347896    2016-10-14 13:02:25.876879        \N    \N    \N    0    \N    \N    \N    \N    male
10370    Everett    Hahn    leila.murphy@weinat.io    \N    Mongolia    South Alfredo    861 Bailey Freeway    40859    Mississippi    2016-07-13 16:27:54.360593    2016-10-14 13:02:25.880027        \N    \N    \N    0    \N    \N    \N    \N    male
10371    Dan    Prosacco    laurel_stiedemann@willmszemlak.io    \N    Mexico    Kuhlmanhaven    768 Ullrich Fields    32784-1483    Connecticut    2016-09-14 20:36:27.294357    2016-10-14 13:02:25.883343        \N    \N    \N    0    \N    \N    \N    \N    female
10372    Edythe    Parker    everette_ratke@sporerkovacek.net    \N    Cyprus    Sengerhaven    5231 Desmond Freeway    90878    Arkansas    2016-07-22 03:38:24.14051    2016-10-14 13:02:25.88649        \N    \N    \N    0    \N    \N    \N    \N    female
10373    Wilhelmine    Kertzmann    emely.klein@okuneva.info    \N    Russian Federation    West Chelseystad    127 Cayla Locks    75418    Colorado    2016-08-03 02:32:58.459292    2016-10-14 13:02:25.890009        \N    \N    \N    0    \N    \N    \N    \N    male
10374    Dino    Friesen    marlon_strosin@lockmanborer.co    \N    Indonesia    Wisokystad    1428 Jakubowski Trail    85824    Georgia    2016-07-22 07:06:27.09873    2016-10-14 13:02:25.893099        \N    \N    \N    0    \N    \N    \N    \N    female
10376    Philip    Hamill    miller@rath.org    \N    Tanzania    New Darryl    9470 Kohler Valleys    91713    Kentucky    2016-06-24 07:31:14.709595    2016-10-14 13:02:25.896605        \N    \N    \N    0    \N    \N    \N    \N    male
10377    Beryl    Barrows    alexandria@aufderharbechtelar.name    \N    Ecuador    South Cletus    37588 Roberts Mountain    54033-1848    Oregon    2016-09-04 04:14:00.64746    2016-10-14 13:02:25.899842        \N    \N    \N    0    \N    \N    \N    \N    female
10378    Rashawn    Kutch    adelia_hayes@schimmeljohnson.name    \N    Niger    Port Jose    57441 Gladys Ways    31674-1386    Maryland    2016-08-27 00:38:35.030077    2016-10-14 13:02:25.902921        \N    \N    \N    0    \N    \N    \N    \N    male
10379    Wade    Tromp    mozelle@cummeratabradtke.com    \N    Dominica    South Edatown    515 Cicero Prairie    55051-0004    Alaska    2016-09-08 19:26:43.588381    2016-10-14 13:02:25.905996        \N    \N    \N    0    \N    \N    \N    \N    female
10380    Audreanne    Wisoky    lisandro_pagac@tremblay.co    \N    Italy    West Camren    286 Monahan Squares    44509    Alaska    2016-08-14 21:05:23.706593    2016-10-14 13:02:25.911398        \N    \N    \N    0    \N    \N    \N    \N    female
10381    Alf    Beer    jewel.larkin@jast.org    \N    Cameroon    East Horaciofort    2368 Boyer Stravenue    23625-0203    Arizona    2016-09-02 00:06:16.396859    2016-10-14 13:02:25.924992        \N    \N    \N    0    \N    \N    \N    \N    male
10382    Carmen    Reilly    kelly_ritchie@farrell.info    \N    Guadeloupe    Letachester    4869 Wehner Common    31252    Louisiana    2016-09-25 09:26:16.11703    2016-10-14 13:02:25.933871        \N    \N    \N    0    \N    \N    \N    \N    female
10384    Adrien    Goyette    rocio_cummerata@medhurst.net    \N    Jordan    West Edwina    4829 Wilderman Orchard    70833    Pennsylvania    2016-07-28 07:38:18.517612    2016-10-14 13:02:25.936925        \N    \N    \N    0    \N    \N    \N    \N    female
10385    Jacynthe    Bogan    jaylan.gibson@runte.co    \N    Guam    North Jessehaven    9729 Reva Keys    81344    Washington    2016-07-31 13:21:15.519977    2016-10-14 13:02:25.939964        \N    \N    \N    0    \N    \N    \N    \N    female
10386    Rosemarie    Tromp    ania@crist.com    \N    Jamaica    Torpville    4509 Luettgen Drives    17180-6293    Arizona    2016-08-26 16:11:32.50631    2016-10-14 13:02:25.942844        \N    \N    \N    0    \N    \N    \N    \N    male
10387    Marta    Murazik    jacky@rauwilderman.biz    \N    Guyana    East Heatherburgh    81169 Jevon Mountains    80682    Oregon    2016-08-19 08:08:33.719897    2016-10-14 13:02:25.945782        \N    \N    \N    0    \N    \N    \N    \N    female
10388    Alene    Kub    carolina.macejkovic@stokes.org    \N    Benin    New Ettiehaven    8884 Glover Gateway    85487-0144    New Hampshire    2016-07-23 02:36:22.247909    2016-10-14 13:02:25.948709        \N    \N    \N    0    \N    \N    \N    \N    male
10389    Fritz    Wilderman    allen@osinski.io    \N    Lithuania    West Garrettview    47503 Kulas Lodge    85317-7415    Rhode Island    2016-09-01 20:38:12.372647    2016-10-14 13:02:25.951917        \N    \N    \N    0    \N    \N    \N    \N    male
10390    Duncan    Senger    brandon.sawayn@stanton.biz    \N    Dominican Republic    Port Franz    36598 Keyon Courts    35519-5448    Hawaii    2016-07-28 06:17:59.876912    2016-10-14 13:02:25.955242        \N    \N    \N    0    \N    \N    \N    \N    male
10391    Flo    Heidenreich    ebba@kuphalmcdermott.biz    \N    Kenya    Fishertown    778 Metz Landing    47178-6356    Nevada    2016-07-29 11:01:36.843412    2016-10-14 13:02:25.958418        \N    \N    \N    0    \N    \N    \N    \N    male
10392    Armani    Connelly    cheyenne.heaney@wehnerwehner.info    \N    Finland    Lake Constantin    94367 Margaret Roads    95504    California    2016-08-24 01:00:23.508876    2016-10-14 13:02:25.961808        \N    \N    \N    0    \N    \N    \N    \N    female
10375    Colby    Dach    brett@fritsch.info    \N    Nepal    Jalontown    3932 Russel Vista    85454    Texas    2016-08-07 08:43:21.224997    2016-10-14 13:02:25.964747        \N    \N    \N    0    \N    \N    \N    \N    female
10393    Mara    Greenholt    coleman@boyer.co    \N    Israel    Paxtonburgh    712 Gaylord Fall    53684-7678    Mississippi    2016-08-22 04:52:33.133967    2016-10-14 13:02:25.967621        \N    \N    \N    0    \N    \N    \N    \N    male
10394    Ruthie    Wilkinson    shyann@stroman.co    \N    Mali    West Vitoburgh    1637 Wiegand Inlet    22546    Nevada    2016-08-15 22:43:57.24854    2016-10-14 13:02:25.970764        \N    \N    \N    0    \N    \N    \N    \N    female
10395    Sylvester    Tillman    emmett@renner.biz    \N    Zambia    Port Fern    4745 Cole Port    37542-9407    Kansas    2016-08-02 12:31:56.597594    2016-10-14 13:02:25.973947        \N    \N    \N    0    \N    \N    \N    \N    female
10396    Kattie    Halvorson    serenity@bednar.co    \N    South Africa    Uptonshire    5547 Darius Stream    92576    Massachusetts    2016-09-03 14:37:44.135315    2016-10-14 13:02:25.977315        \N    \N    \N    0    \N    \N    \N    \N    female
10397    Ena    Klein    amalia@stamm.biz    \N    Serbia    Kameronstad    3672 Adams Shore    92385    Nevada    2016-08-23 01:48:10.714081    2016-10-14 13:02:25.981168        \N    \N    \N    0    \N    \N    \N    \N    male
10398    Peyton    Doyle    daniella@osinski.biz    \N    Venezuela    North Jamaltown    32815 Schaden Vista    16329    Vermont    2016-07-21 17:30:05.175086    2016-10-14 13:02:25.984667        \N    \N    \N    0    \N    \N    \N    \N    male
10399    Cathryn    Cronin    craig@hermann.info    \N    Liechtenstein    Hershelton    78726 Hudson Cove    54852-8436    New Mexico    2016-08-23 00:25:39.738328    2016-10-14 13:02:25.988016        \N    \N    \N    0    \N    \N    \N    \N    male
10400    Serenity    Shanahan    carole@kemmer.io    \N    Barbados    New Ella    830 Cummerata Path    94559-9941    Delaware    2016-07-23 21:18:49.8451    2016-10-14 13:02:25.99144        \N    \N    \N    0    \N    \N    \N    \N    female
10401    Letha    Jakubowski    king@borer.info    \N    Finland    Port Lurlinemouth    476 Kathryn Camp    44465    Louisiana    2016-09-04 01:04:57.785369    2016-10-14 13:02:25.995314        \N    \N    \N    0    \N    \N    \N    \N    female
10402    Amari    Ritchie    muriel@denesikmoore.io    \N    Mayotte    Estrellamouth    3541 Dahlia Cape    99553-8071    Tennessee    2016-09-22 08:48:20.058844    2016-10-14 13:02:25.999525        \N    \N    \N    0    \N    \N    \N    \N    female
10404    Scot    Bashirian    alda@stiedemann.io    \N    Thailand    McCulloughville    9920 Greenholt Hollow    72462    South Dakota    2016-08-09 12:42:08.558169    2016-10-14 13:02:26.003157        \N    \N    \N    0    \N    \N    \N    \N    male
10405    Lisette    Brakus    haven@ebert.co    \N    Micronesia    New Andres    5671 Terrence Garden    95627-4845    Idaho    2016-07-22 09:33:33.081609    2016-10-14 13:02:26.007714        \N    \N    \N    0    \N    \N    \N    \N    female
10406    Logan    Ruecker    ladarius_beahan@terry.info    \N    Luxembourg    Hesselview    52797 Quigley Trail    61008    California    2016-09-03 18:18:44.033921    2016-10-14 13:02:26.011266        \N    \N    \N    0    \N    \N    \N    \N    female
10407    Baylee    Ondricka    santa_rippin@hegmann.name    \N    Uganda    Mortonmouth    683 Theresa Villages    92408-6316    Michigan    2016-09-19 21:55:15.78501    2016-10-14 13:02:26.014857        \N    \N    \N    0    \N    \N    \N    \N    female
10408    Oma    Feeney    kirk@jenkins.info    \N    Kazakhstan    West Lucious    5086 Wisozk Circle    73310-1952    Montana    2016-07-31 01:45:56.941727    2016-10-14 13:02:26.017964        \N    \N    \N    0    \N    \N    \N    \N    male
10409    Stephen    Hand    forest@damoreabbott.co    \N    Brunei Darussalam    Kelliehaven    295 Helga Gateway    90656-6425    Virginia    2016-08-22 09:58:06.116255    2016-10-14 13:02:26.021019        \N    \N    \N    0    \N    \N    \N    \N    female
10410    Corene    Price    amiya.sporer@stiedemannbechtelar.co    \N    Albania    Krisport    83967 Trevor Flat    25951    Connecticut    2016-08-29 04:48:57.511018    2016-10-14 13:02:26.024059        \N    \N    \N    0    \N    \N    \N    \N    male
10411    Louvenia    Leffler    rene.kling@friesen.io    \N    Greenland    Medhursttown    30673 Raynor Crossing    41299-4116    Florida    2016-07-10 18:24:25.721287    2016-10-14 13:02:26.026939        \N    \N    \N    0    \N    \N    \N    \N    female
10412    Ericka    Bernier    janelle@hagenes.com    \N    Thailand    Lake Dakota    6297 Isabel Radial    63732-6489    Maine    2016-07-17 03:58:33.373587    2016-10-14 13:02:26.029811        \N    \N    \N    0    \N    \N    \N    \N    female
10413    Kade    Lebsack    shakira_grant@dubuque.io    \N    Peru    South Chadrick    704 Gutkowski Station    23754-4516    Arkansas    2016-06-22 18:46:56.295908    2016-10-14 13:02:26.032866        \N    \N    \N    0    \N    \N    \N    \N    female
10414    Walker    Quigley    travon.ratke@fritsch.io    \N    Timor-Leste    Reinahaven    2129 Lenora Harbor    19019    Florida    2016-09-18 09:30:56.210984    2016-10-14 13:02:26.035952        \N    \N    \N    0    \N    \N    \N    \N    female
10415    Anabelle    Bauch    fidel@dicki.co    \N    Democratic People's Republic of Korea    East Marcelino    93659 Schaden Road    14084-0993    Nevada    2016-08-14 14:44:55.624645    2016-10-14 13:02:26.039103        \N    \N    \N    0    \N    \N    \N    \N    male
10416    Eldora    Wilkinson    obie_gorczany@schmitt.biz    \N    Slovenia    Virginiafurt    17303 Kiehn Ports    78473-1548    Utah    2016-09-13 09:45:38.551814    2016-10-14 13:02:26.042683        \N    \N    \N    0    \N    \N    \N    \N    male
10417    Paula    Auer    morton@mertz.name    \N    Jersey    Port Alexzander    1374 Hand Underpass    85898    Maryland    2016-06-30 11:46:15.460546    2016-10-14 13:02:26.046145        \N    \N    \N    0    \N    \N    \N    \N    male
10418    Khalid    Smith    jayda.kub@pfannerstillschmidt.com    \N    Malaysia    Port Savannaberg    965 Clare Ramp    35642    Louisiana    2016-08-07 10:26:42.915114    2016-10-14 13:02:26.051347        \N    \N    \N    0    \N    \N    \N    \N    female
14693    Bart    Reichel    guadalupe@bauch.name    \N    Ethiopia    New Bria    47665 Ledner Keys    48725    Louisiana    2016-09-23 22:21:24.375963    2016-10-14 13:02:26.059272        \N    \N    \N    0    \N    \N    \N    \N    male
10419    Ola    Weissnat    bridget_runolfon@rolfson.io    \N    Bahamas    Karineview    742 Floyd Avenue    41052-8867    Florida    2016-06-22 11:46:29.701985    2016-10-14 13:02:26.069459        \N    \N    \N    0    \N    \N    \N    \N    male
10420    Drake    Parisian    rosalind@price.com    \N    Kenya    Port Lila    27554 Johanna Branch    68173-2918    New York    2016-08-12 06:35:58.538826    2016-10-14 13:02:26.075988        \N    \N    \N    0    \N    \N    \N    \N    female
10421    Shyanne    Batz    nyah.sporer@andersonmante.biz    \N    Tajikistan    Casperfurt    2361 Bulah Freeway    60394-5584    Alaska    2016-09-19 19:04:25.676892    2016-10-14 13:02:26.079517        \N    \N    \N    0    \N    \N    \N    \N    female
10422    Carmelo    Roob    zachariah@franeckigerhold.name    \N    Yemen    Brennanberg    674 Greenholt Island    91559-7378    Indiana    2016-09-04 23:20:22.744879    2016-10-14 13:02:26.082957        \N    \N    \N    0    \N    \N    \N    \N    male
10787    Delilah    Rau    elinore.kuhic@hermann.com    \N    Aruba    New Lilly    90532 Leffler Station    69359    Ohio    2016-08-04 22:18:56.064112    2016-10-14 13:02:26.086462        \N    \N    \N    0    \N    \N    \N    \N    female
10423    Darian    Bartoletti    ernie.carter@fritsch.org    \N    Timor-Leste    Port Minachester    88330 Leuschke Drives    84314-3503    Pennsylvania    2016-06-25 03:42:42.519003    2016-10-14 13:02:26.089655        \N    \N    \N    0    \N    \N    \N    \N    female
10424    Junius    Schmeler    johnathon.smith@kohlerbarton.com    \N    Vietnam    Freemanhaven    5626 Towne Row    87510-5442    North Dakota    2016-07-29 08:25:24.360019    2016-10-14 13:02:26.092762        \N    \N    \N    0    \N    \N    \N    \N    male
10425    Reagan    Hayes    melba@wisoky.org    \N    Tuvalu    Kielside    8446 Senger Street    96327-5963    Wyoming    2016-08-19 05:24:35.047501    2016-10-14 13:02:26.095721        \N    \N    \N    0    \N    \N    \N    \N    male
10426    Eliezer    Cormier    sedrick_watsica@littel.org    \N    Bulgaria    Brandynside    48864 Favian Mountain    57542-5778    Kentucky    2016-07-06 19:11:19.726206    2016-10-14 13:02:26.098627        \N    \N    \N    0    \N    \N    \N    \N    female
10427    Eulah    Lehner    clement_davis@cummeratastark.co    \N    Estonia    Stantonhaven    7260 Kunze Oval    16907-7323    Florida    2016-09-11 23:28:55.470678    2016-10-14 13:02:26.101965        \N    \N    \N    0    \N    \N    \N    \N    male
10428    Ariane    Greenholt    colton.jerde@mrazgraham.com    \N    Democratic People's Republic of Korea    East Cristina    429 Jenkins Mills    55265-5541    Iowa    2016-08-26 19:28:05.88597    2016-10-14 13:02:26.104959        \N    \N    \N    0    \N    \N    \N    \N    female
10429    Priscilla    Murphy    jordon_mertz@wisozk.io    \N    Bangladesh    East Maxime    272 Jacobs Ville    28205    Florida    2016-08-17 03:46:55.587424    2016-10-14 13:02:26.108253        \N    \N    \N    0    \N    \N    \N    \N    male
10430    Onie    Mitchell    hector.thompson@beier.biz    \N    Isle of Man    Port Terrillfort    67471 Leuschke Lane    50231    Tennessee    2016-08-03 05:47:58.454075    2016-10-14 13:02:26.111344        \N    \N    \N    0    \N    \N    \N    \N    female
10431    Cleo    Bogan    kaya.aufderhar@miller.name    \N    Swaziland    East Queenie    1517 Hane Cove    16228-3604    Nevada    2016-06-22 18:22:05.497167    2016-10-14 13:02:26.114489        \N    \N    \N    0    \N    \N    \N    \N    male
10433    Riley    Lubowitz    floie@cole.io    \N    Myanmar    Sethmouth    3592 Yazmin Rapid    95216-4694    Massachusetts    2016-09-09 16:55:28.942979    2016-10-14 13:02:26.117493        \N    \N    \N    0    \N    \N    \N    \N    male
10434    Camylle    Mayert    anne@schummmckenzie.net    \N    Saint Vincent and the Grenadines    East Lunaside    2502 Trever Brooks    20257    Kansas    2016-07-03 11:21:30.174522    2016-10-14 13:02:26.122859        \N    \N    \N    0    \N    \N    \N    \N    female
10435    Arden    Kautzer    spencer.waters@howellquigley.com    \N    Guam    East Rettabury    908 Jonathon Lights    82819-8025    Georgia    2016-09-24 11:25:31.741925    2016-10-14 13:02:26.131062        \N    \N    \N    0    \N    \N    \N    \N    male
10436    Jan    Borer    janet@jacobson.name    \N    Antigua and Barbuda    Auerberg    995 Bernier Via    20472-6584    North Dakota    2016-07-31 13:13:28.678001    2016-10-14 13:02:26.143006        \N    \N    \N    0    \N    \N    \N    \N    female
10437    Ericka    Emard    dexter_pouros@beahanankunding.org    \N    Belgium    New Malikaberg    9300 Shyann Spring    45997-7529    Delaware    2016-09-06 11:58:26.790579    2016-10-14 13:02:26.150591        \N    \N    \N    0    \N    \N    \N    \N    male
10438    Ryleigh    Jast    walton@rowe.com    \N    Republic of Korea    Marksmouth    731 Hilda Square    55197-4191    South Carolina    2016-07-15 06:18:17.555899    2016-10-14 13:02:26.154317        \N    \N    \N    0    \N    \N    \N    \N    male
10439    Tatum    Feeney    ardith_hayes@bergstrom.info    \N    Grenada    New Tristin    127 Rice Estate    56844-2276    Mississippi    2016-07-10 23:07:54.435401    2016-10-14 13:02:26.15801        \N    \N    \N    0    \N    \N    \N    \N    male
10440    Dulce    Gutmann    lyda.hills@willms.net    \N    Micronesia    West Jaren    176 Toby Junctions    79406    Tennessee    2016-08-26 14:23:15.202216    2016-10-14 13:02:26.163367        \N    \N    \N    0    \N    \N    \N    \N    female
10441    Erna    Johnson    amira_torphy@beier.org    \N    Mexico    Collierstad    863 Robel Locks    46517-7965    Connecticut    2016-07-24 00:11:52.365248    2016-10-14 13:02:26.166975        \N    \N    \N    0    \N    \N    \N    \N    female
10442    Raphaelle    Grimes    moshe@erdmankreiger.info    \N    Cameroon    Lake Jacksonland    4036 Wintheiser Streets    69904    Texas    2016-08-26 18:16:47.941978    2016-10-14 13:02:26.171647        \N    \N    \N    0    \N    \N    \N    \N    female
10487    Idell    Hills    laurianne@schowaltermitchell.net    \N    Guernsey    Lake Stacey    1493 Effertz Squares    90274-3866    Maine    2016-09-29 11:00:16.893379    2016-10-14 13:02:26.174706        \N    \N    \N    0    \N    \N    \N    \N    male
10443    Gerhard    Heller    delphia.halvorson@leannonboehm.net    \N    British Indian Ocean Territory (Chagos Archipelago)    New Nilsborough    82232 Kilback Road    93328-4773    Missouri    2016-06-25 08:00:23.544273    2016-10-14 13:02:26.177723        \N    \N    \N    0    \N    \N    \N    \N    male
10444    Patsy    Nolan    caidy@schaden.name    \N    Virgin Islands, British    Wellingtonview    1944 McClure Burg    92644-3480    Mississippi    2016-07-22 08:14:46.550285    2016-10-14 13:02:26.181162        \N    \N    \N    0    \N    \N    \N    \N    female
10445    D'angelo    Leannon    sheridan@effertz.info    \N    Algeria    Susanaville    50096 Guiseppe Common    48974-1031    Alaska    2016-09-26 17:22:05.714401    2016-10-14 13:02:26.184474        \N    \N    \N    0    \N    \N    \N    \N    male
10446    Johnpaul    Kertzmann    karine.considine@jakubowski.com    \N    New Caledonia    North Rosendo    7633 German Cape    66774-6340    Rhode Island    2016-08-28 22:50:23.660012    2016-10-14 13:02:26.187663        \N    \N    \N    0    \N    \N    \N    \N    female
10447    Matteo    Hansen    ozzie.roob@breitenbergnicolas.biz    \N    Comoros    Mannport    336 Adrienne Mountain    73605-9132    Hawaii    2016-08-31 01:11:51.598063    2016-10-14 13:02:26.19105        \N    \N    \N    0    \N    \N    \N    \N    male
10448    Ellie    Wunsch    nicholaus.johnston@turnerstroman.net    \N    Saint Martin    Sawaynhaven    165 Amy Brooks    19774-2400    Mississippi    2016-06-28 04:52:47.36543    2016-10-14 13:02:26.194298        \N    \N    \N    0    \N    \N    \N    \N    male
10449    Georgiana    Medhurst    gerald@goodwin.biz    \N    Italy    Weimannstad    81254 Priscilla Place    83775    Arizona    2016-09-21 15:25:54.721517    2016-10-14 13:02:26.197734        \N    \N    \N    0    \N    \N    \N    \N    male
10451    Herbert    O'Conner    norbert_flatley@metzlangworth.com    \N    Faroe Islands    South Deon    243 Walsh Causeway    93585    South Dakota    2016-06-26 03:34:47.965918    2016-10-14 13:02:26.208006        \N    \N    \N    0    \N    \N    \N    \N    male
10452    Laila    Gorczany    bret_rice@gleichner.net    \N    Qatar    Port Wellingtonside    6122 Frank Rapids    79085    Idaho    2016-08-19 10:21:06.784806    2016-10-14 13:02:26.215797        \N    \N    \N    0    \N    \N    \N    \N    female
10453    Donavon    Deckow    anabelle@koepp.co    \N    Seychelles    Port Retta    771 Luettgen Isle    76367-7522    Florida    2016-06-24 00:16:45.226862    2016-10-14 13:02:26.222252        \N    \N    \N    0    \N    \N    \N    \N    male
10454    Yazmin    Strosin    barbara@bernhard.io    \N    Australia    Susanashire    7112 Kaci Cliffs    79939-2603    North Carolina    2016-07-12 00:23:45.344379    2016-10-14 13:02:26.225723        \N    \N    \N    0    \N    \N    \N    \N    male
10455    Rosa    McDermott    kenyon@mckenziehermiston.info    \N    Malta    South Adahfort    549 Candido Mills    92961    Florida    2016-08-14 15:45:15.396445    2016-10-14 13:02:26.228914        \N    \N    \N    0    \N    \N    \N    \N    male
10456    Kiarra    Berge    solon.ledner@collinshegmann.net    \N    Cameroon    Rosenbaumtown    3225 Mariane Haven    41458    New Hampshire    2016-09-01 13:08:53.677455    2016-10-14 13:02:26.23222        \N    \N    \N    0    \N    \N    \N    \N    female
10459    Zane    Veum    eino@rempel.name    \N    Martinique    Lake Nathanialbury    354 Marvin Walk    33641-0553    Louisiana    2016-08-02 22:05:44.077826    2016-10-14 13:02:26.260208        \N    \N    \N    0    \N    \N    \N    \N    female
10460    Gisselle    Hammes    stuart_champlin@hane.org    \N    Tunisia    Karamouth    70935 Crist Unions    66182    Washington    2016-08-14 10:02:26.829513    2016-10-14 13:02:26.264702        \N    \N    \N    0    \N    \N    \N    \N    male
10461    Granville    Schaefer    mckenzie.moriette@considine.co    \N    Togo    North Howell    7840 Korbin Mill    79311    California    2016-07-12 01:56:50.445781    2016-10-14 13:02:26.268344        \N    \N    \N    0    \N    \N    \N    \N    female
10462    Hal    Bradtke    ora.labadie@heidenreichbraun.com    \N    Macedonia    Lake Kane    9419 Graham Lights    15557    Utah    2016-07-17 06:02:47.803748    2016-10-14 13:02:26.274148        \N    \N    \N    0    \N    \N    \N    \N    male
10463    Bettie    Rosenbaum    christiana@hauck.biz    \N    Antarctica (the territory South of 60 deg S)    Quigleyshire    10844 Hammes Forge    89195-7797    Florida    2016-07-12 17:01:10.903022    2016-10-14 13:02:26.278906        \N    \N    \N    0    \N    \N    \N    \N    female
10464    Lyda    Jerde    katheryn_rowe@moorerogahn.org    \N    Congo    Ullrichland    700 Ahmed Isle    44799-3569    Alabama    2016-09-15 05:23:05.161458    2016-10-14 13:02:26.282854        \N    \N    \N    0    \N    \N    \N    \N    female
10465    Yessenia    Lockman    melba.kling@swaniawskifadel.biz    \N    Cyprus    New Jalyn    9339 Dexter Ville    49085    Maine    2016-08-08 04:13:16.789703    2016-10-14 13:02:26.287178        \N    \N    \N    0    \N    \N    \N    \N    female
10466    Frankie    Kessler    devante.gibson@walsh.co    \N    Croatia    Sylviatown    3572 D'Amore Fort    55098-2591    Alabama    2016-09-03 13:08:16.752965    2016-10-14 13:02:26.293779        \N    \N    \N    0    \N    \N    \N    \N    male
10467    Burley    Mohr    jaiden_bartoletti@mertz.info    \N    Portugal    Shaynefurt    3955 Marcel Ways    15843-8142    Nevada    2016-07-11 17:09:18.865385    2016-10-14 13:02:26.29706        \N    \N    \N    0    \N    \N    \N    \N    female
10468    Rae    Rempel    lexus_rath@steuber.biz    \N    Liberia    Buckridgeshire    681 Elisabeth Crescent    29831-0399    Montana    2016-07-15 23:47:24.567213    2016-10-14 13:02:26.300457        \N    \N    \N    0    \N    \N    \N    \N    female
10469    Nils    Hessel    giles_macejkovic@schoenborer.net    \N    Lithuania    Port Alana    146 Gutkowski Terrace    16102    Texas    2016-07-29 18:44:06.767614    2016-10-14 13:02:26.304629        \N    \N    \N    0    \N    \N    \N    \N    female
10470    Toy    Jacobi    lela@littelmarvin.name    \N    Kiribati    Nellafurt    1231 Edyth Skyway    98599    Oregon    2016-07-10 10:31:50.732025    2016-10-14 13:02:26.308562        \N    \N    \N    0    \N    \N    \N    \N    male
10471    Neva    Yost    lorna@hills.net    \N    South Africa    North Jaylon    440 Ransom Islands    34311    New Hampshire    2016-08-31 02:54:07.909211    2016-10-14 13:02:26.31969        \N    \N    \N    0    \N    \N    \N    \N    female
10472    Luther    Donnelly    george@hickle.com    \N    Uzbekistan    Tatumchester    97401 Reynolds Viaduct    83586-3457    North Carolina    2016-09-22 03:47:19.886992    2016-10-14 13:02:26.323754        \N    \N    \N    0    \N    \N    \N    \N    female
10473    Darian    Flatley    leilani_marvin@heidenreich.co    \N    Bangladesh    Port Nikko    382 Raynor Lodge    73124-4342    Nebraska    2016-08-16 14:49:40.943402    2016-10-14 13:02:26.328619        \N    \N    \N    0    \N    \N    \N    \N    male
10474    Karl    Nader    edison@wisozk.io    \N    Mongolia    Hettingerfort    945 Volkman Course    96882    Arkansas    2016-08-03 17:30:46.565144    2016-10-14 13:02:26.332615        \N    \N    \N    0    \N    \N    \N    \N    female
10475    Shad    Greenholt    adaline_trantow@zemlakkemmer.info    \N    Netherlands    Lake Gersonton    1193 Cassin Station    85633-3502    Texas    2016-07-18 02:26:30.414032    2016-10-14 13:02:26.336517        \N    \N    \N    0    \N    \N    \N    \N    male
10476    Karlee    Hackett    christopher.wehner@hayes.net    \N    Niger    Rosenbaumfurt    9184 Hamill Grove    55621-0078    Washington    2016-08-23 08:25:09.813798    2016-10-14 13:02:26.340764        \N    \N    \N    0    \N    \N    \N    \N    female
10478    Guillermo    Bednar    roscoe_veum@johns.biz    \N    Taiwan    Jesstown    1360 Lakin Course    70065-8801    Texas    2016-08-12 07:06:24.265593    2016-10-14 13:02:26.347636        \N    \N    \N    0    \N    \N    \N    \N    female
10479    Jewell    Turcotte    ward_wunsch@langdubuque.info    \N    Egypt    Keeblerstad    607 Huel Ridge    61465-0849    Nebraska    2016-09-12 07:54:28.298842    2016-10-14 13:02:26.352795        \N    \N    \N    0    \N    \N    \N    \N    male
10480    Darlene    Larson    nat.grady@erdman.biz    \N    French Polynesia    West Ardenhaven    9480 Bradtke Walks    35922-7883    Idaho    2016-07-12 15:39:33.696456    2016-10-14 13:02:26.36134        \N    \N    \N    0    \N    \N    \N    \N    female
10481    Nikko    Lang    alek@wintheiser.name    \N    Saint Barthelemy    Bergnaumchester    85885 Guillermo Street    19441-6631    Idaho    2016-06-25 04:09:18.290228    2016-10-14 13:02:26.366985        \N    \N    \N    0    \N    \N    \N    \N    female
10482    Constantin    Glover    garfield@howe.name    \N    Faroe Islands    Ashleightown    2153 Sauer Prairie    72395-3469    New York    2016-09-08 23:37:29.510676    2016-10-14 13:02:26.371094        \N    \N    \N    0    \N    \N    \N    \N    male
10483    Mikel    Dickinson    krista_ko@hermiston.io    \N    Belize    Kleinside    5555 Dietrich Forge    26800    Colorado    2016-06-26 08:40:57.092957    2016-10-14 13:02:26.374633        \N    \N    \N    0    \N    \N    \N    \N    female
10484    Deja    Hauck    alena@mooremcclure.name    \N    Myanmar    Corkerybury    9941 Ratke Wells    30978-5594    Alabama    2016-08-16 03:52:57.019542    2016-10-14 13:02:26.378347        \N    \N    \N    0    \N    \N    \N    \N    male
10485    Johanna    Harris    boris@zulauf.co    \N    Iceland    Rosendobury    701 Schowalter River    21082-8461    Colorado    2016-07-17 18:32:13.004419    2016-10-14 13:02:26.382098        \N    \N    \N    0    \N    \N    \N    \N    male
10486    Darion    Hand    alberta_aufderhar@olsonkoch.name    \N    France    Lebsackburgh    7319 Schmeler Isle    60958-9068    Alaska    2016-07-07 04:29:36.336192    2016-10-14 13:02:26.386321        \N    \N    \N    0    \N    \N    \N    \N    male
10758    Odie    Kemmer    iva@mraz.org    \N    Croatia    North Isabella    1422 Crist Pines    77096-0323    Delaware    2016-08-14 21:42:56.505239    2016-10-14 13:02:26.389847        \N    \N    \N    0    \N    \N    \N    \N    male
10488    Nickolas    Reynolds    arlene.steuber@schroedercrist.io    \N    Pakistan    New Dawnmouth    924 Elissa Extensions    26720    Minnesota    2016-07-06 22:23:14.583943    2016-10-14 13:02:26.392929        \N    \N    \N    0    \N    \N    \N    \N    male
10489    Fred    Lueilwitz    nelson_lemke@pouros.org    \N    Argentina    Lake Aisha    3005 MacGyver Lights    12155    Wyoming    2016-09-11 07:53:27.813276    2016-10-14 13:02:26.396291        \N    \N    \N    0    \N    \N    \N    \N    male
10490    Nickolas    Ullrich    ellis@weber.org    \N    French Guiana    Carolineland    89004 Kenneth Brook    21096    New Mexico    2016-08-22 02:21:11.000285    2016-10-14 13:02:26.400906        \N    \N    \N    0    \N    \N    \N    \N    male
10491    Urban    Crooks    maureen.schumm@stark.org    \N    Antarctica (the territory South of 60 deg S)    Reichertchester    25569 Reba Corners    26792    Washington    2016-08-19 16:33:03.344221    2016-10-14 13:02:26.409131        \N    \N    \N    0    \N    \N    \N    \N    female
10493    Daniela    Langworth    holly@daughertyratke.com    \N    Luxembourg    Stromanburgh    918 Newton Divide    45748    West Virginia    2016-09-10 07:29:57.967065    2016-10-14 13:02:26.413107        \N    \N    \N    0    \N    \N    \N    \N    female
10494    Addison    Mraz    dorian@batzbayer.io    \N    Mongolia    Jacobsonstad    267 Wisoky Plaza    91869-3010    Kentucky    2016-09-05 13:42:07.160837    2016-10-14 13:02:26.418113        \N    \N    \N    0    \N    \N    \N    \N    male
10495    Jalen    Schmeler    lue.dietrich@sanford.info    \N    Cocos (Keeling) Islands    North Lorna    4471 Aidan Manor    71633    Alaska    2016-07-20 01:52:55.425426    2016-10-14 13:02:26.421959        \N    \N    \N    0    \N    \N    \N    \N    male
10498    Brandyn    Harber    mireya@robelgrant.co    \N    Azerbaijan    Lake Princess    977 Keith Gardens    30328-3971    West Virginia    2016-08-21 04:22:59.609204    2016-10-14 13:02:26.42533        \N    \N    \N    0    \N    \N    \N    \N    male
10499    Peggie    Roob    buford.casper@baumbachupton.com    \N    Guernsey    Wizaport    590 Watson Divide    80446-4247    Alabama    2016-06-25 04:34:52.665469    2016-10-14 13:02:26.428623        \N    \N    \N    0    \N    \N    \N    \N    female
10500    Maurice    Johns    claudine_boyle@schuppe.co    \N    Russian Federation    Lake Kristofferview    7729 Quigley Expressway    21904    Mississippi    2016-08-03 17:49:46.712042    2016-10-14 13:02:26.431901        \N    \N    \N    0    \N    \N    \N    \N    male
10501    Ewald    Bruen    dangelo@kuhn.com    \N    Panama    West Derickbury    37092 Vincenza Corner    64229-0297    Maryland    2016-09-03 03:48:53.445688    2016-10-14 13:02:26.436716        \N    \N    \N    0    \N    \N    \N    \N    male
10502    Kevon    Hoeger    bill@boyerbaumbach.name    \N    Pitcairn Islands    Lake Ivory    41626 Morissette Crescent    73959-2507    Illinois    2016-07-16 14:22:33.291213    2016-10-14 13:02:26.440229        \N    \N    \N    0    \N    \N    \N    \N    male
10503    Kevin    Mertz    violette@hettinger.com    \N    Jordan    Shaneburgh    515 Parker Viaduct    21148    New Hampshire    2016-07-20 14:50:55.019955    2016-10-14 13:02:26.443437        \N    \N    \N    0    \N    \N    \N    \N    male
10504    Charlie    Luettgen    sheridan@wintheiser.co    \N    Iran    Kodytown    186 Elmira Falls    74657    Vermont    2016-07-16 18:52:30.380313    2016-10-14 13:02:26.446643        \N    \N    \N    0    \N    \N    \N    \N    female
10505    Flavio    Carroll    braeden.cronin@abernathy.org    \N    Christmas Island    New Velva    997 Zackery Springs    86436-7829    Colorado    2016-07-08 19:16:25.990862    2016-10-14 13:02:26.449894        \N    \N    \N    0    \N    \N    \N    \N    male
10506    Nicholaus    Brown    alex_hauck@collierfriesen.io    \N    Latvia    Greenfeldertown    1463 O'Conner Gardens    81989    West Virginia    2016-08-09 23:53:57.088699    2016-10-14 13:02:26.452898        \N    \N    \N    0    \N    \N    \N    \N    male
10507    Arno    Bergnaum    liliana@stark.biz    \N    Reunion    Cordellstad    40790 Edna Ways    21856    New Jersey    2016-09-22 19:51:11.312974    2016-10-14 13:02:26.456167        \N    \N    \N    0    \N    \N    \N    \N    male
10508    Tiffany    Casper    sharon@koepp.io    \N    Guatemala    New Humberto    423 Heaney Valleys    23870-2424    Mississippi    2016-09-06 20:30:32.784224    2016-10-14 13:02:26.459229        \N    \N    \N    0    \N    \N    \N    \N    female
10509    Shawn    Lubowitz    marvin.jacobson@jacobsonhickle.io    \N    Vanuatu    North Lina    210 Oberbrunner Ville    73738    Nevada    2016-09-17 00:18:45.282249    2016-10-14 13:02:26.462196        \N    \N    \N    0    \N    \N    \N    \N    male
10510    Johnny    Waelchi    harmon@corkery.name    \N    Portugal    Kodyshire    1117 Kallie Walks    84541    South Carolina    2016-07-26 20:34:56.237063    2016-10-14 13:02:26.465227        \N    \N    \N    0    \N    \N    \N    \N    female
10511    Isom    Bayer    uriel@kuvaliseichmann.net    \N    Cameroon    West Kari    94718 Walker Plains    73117    Texas    2016-07-13 07:11:20.601902    2016-10-14 13:02:26.468444        \N    \N    \N    0    \N    \N    \N    \N    male
10512    Letitia    Fritsch    yvette.wisozk@crist.com    \N    Central African Republic    New Jess    12490 Rodrigo Unions    69291    Mississippi    2016-08-12 08:53:07.072935    2016-10-14 13:02:26.471658        \N    \N    \N    0    \N    \N    \N    \N    female
10515    Ruby    Bailey    gabrielle_west@grimes.io    \N    Palestinian Territory    Port Emiliehaven    269 Abshire Lake    31741-9136    California    2016-08-03 23:14:08.828271    2016-10-14 13:02:26.47473        \N    \N    \N    0    \N    \N    \N    \N    male
10516    Thaddeus    Schmeler    piper@smith.name    \N    Kenya    Port Julianne    3872 Loren Branch    55562-4414    West Virginia    2016-06-26 15:27:04.065694    2016-10-14 13:02:26.479098        \N    \N    \N    0    \N    \N    \N    \N    female
10517    Torrey    Crona    mikel@hodkiewicz.net    \N    Northern Mariana Islands    Port Maurine    44309 Lorna Fields    73948-0240    California    2016-06-28 07:15:44.978624    2016-10-14 13:02:26.485864        \N    \N    \N    0    \N    \N    \N    \N    male
10518    Coby    Gleason    berenice@crist.name    \N    Russian Federation    Pagacburgh    1132 Minerva Tunnel    27232    Michigan    2016-08-17 05:03:48.0528    2016-10-14 13:02:26.492722        \N    \N    \N    0    \N    \N    \N    \N    female
10519    Vada    Ritchie    jewel@andersonlowe.org    \N    Yemen    Lake Darianaland    7915 Isabell Canyon    56332    Wyoming    2016-08-12 12:19:05.645823    2016-10-14 13:02:26.496473        \N    \N    \N    0    \N    \N    \N    \N    female
10520    Garry    Okuneva    william_nicolas@conroykemmer.name    \N    Anguilla    Vonfort    172 Hadley Lights    22964    Nevada    2016-07-06 20:02:22.180415    2016-10-14 13:02:26.499815        \N    \N    \N    0    \N    \N    \N    \N    female
10521    Maribel    Haag    vernie.wyman@oharakling.org    \N    Lesotho    New Theo    3300 Stephany Overpass    74567    Utah    2016-08-02 23:38:31.174487    2016-10-14 13:02:26.504064        \N    \N    \N    0    \N    \N    \N    \N    female
10522    Damien    McClure    giles_durgan@stracke.net    \N    Botswana    South Pearlie    46415 Sauer Roads    63623-7567    Kansas    2016-07-10 15:38:16.975303    2016-10-14 13:02:26.508102        \N    \N    \N    0    \N    \N    \N    \N    female
10523    Eileen    Thompson    keara@harris.org    \N    Pitcairn Islands    Alfredmouth    88672 Tyrique Corner    82046-2438    Vermont    2016-09-26 06:34:26.022575    2016-10-14 13:02:26.512025        \N    \N    \N    0    \N    \N    \N    \N    female
10524    Kelli    Bauch    raheem@gleichner.biz    \N    Luxembourg    Handville    4219 Halvorson Fork    21986-2610    Wisconsin    2016-06-27 16:26:36.868694    2016-10-14 13:02:26.515582        \N    \N    \N    0    \N    \N    \N    \N    male
10525    Jolie    Hodkiewicz    keara@davis.name    \N    Barbados    Lake Jamel    504 Hessel Lodge    44133-5752    Indiana    2016-09-18 03:14:53.238317    2016-10-14 13:02:26.518672        \N    \N    \N    0    \N    \N    \N    \N    female
10526    Wyman    Morar    abraham@leuschke.name    \N    Austria    Port Rudy    80851 Sherwood Road    98847    Maryland    2016-08-27 04:13:24.854152    2016-10-14 13:02:26.522348        \N    \N    \N    0    \N    \N    \N    \N    female
10527    Allie    Weber    emmy@pricekrajcik.org    \N    Guyana    Lake Millie    27888 Heaney Forge    43467    Nevada    2016-06-24 06:21:42.56923    2016-10-14 13:02:26.526514        \N    \N    \N    0    \N    \N    \N    \N    female
10528    Jamie    Pacocha    elyse.bernier@turcotteveum.com    \N    Guinea    East Devonte    590 Sporer Estates    94496    Wyoming    2016-07-20 14:31:34.153535    2016-10-14 13:02:26.530245        \N    \N    \N    0    \N    \N    \N    \N    female
10529    Jerry    Friesen    emelia@klingkaulke.net    \N    Saint Martin    Abbottfurt    2256 Abigale Ferry    80925    Arizona    2016-09-09 21:30:59.036752    2016-10-14 13:02:26.533563        \N    \N    \N    0    \N    \N    \N    \N    female
10530    Quincy    Tillman    mya.bruen@monahanhayes.info    \N    San Marino    Hudsonberg    556 Will Gateway    25178-9231    Connecticut    2016-09-07 18:35:13.787541    2016-10-14 13:02:26.537032        \N    \N    \N    0    \N    \N    \N    \N    female
10531    Stella    Connelly    agustin@heathcote.name    \N    Peru    Ondrickafort    683 Marc Orchard    82625    California    2016-07-05 11:02:25.27623    2016-10-14 13:02:26.540335        \N    \N    \N    0    \N    \N    \N    \N    male
10532    Alvera    Daniel    lori_bednar@cremin.io    \N    Australia    South Josephview    5136 Jacobi Canyon    31678    Wisconsin    2016-09-22 08:53:25.156146    2016-10-14 13:02:26.543821        \N    \N    \N    0    \N    \N    \N    \N    male
10533    Maudie    Gusikowski    chauncey.bartell@stokes.name    \N    Indonesia    Dakotaton    55663 Dickinson Views    95506    Kansas    2016-06-30 16:26:25.884211    2016-10-14 13:02:26.54718        \N    \N    \N    0    \N    \N    \N    \N    male
10534    Shane    Flatley    providenci.kemmer@gerhold.biz    \N    Romania    Port Trevionfurt    23909 Hartmann Manors    84516    Nevada    2016-09-21 02:55:26.374137    2016-10-14 13:02:26.550459        \N    \N    \N    0    \N    \N    \N    \N    male
10535    Joseph    Ruecker    dock@blandacrona.co    \N    Macedonia    South Zackshire    553 Ford Island    97388-1677    Iowa    2016-08-16 08:19:12.328079    2016-10-14 13:02:26.554249        \N    \N    \N    0    \N    \N    \N    \N    male
10537    Ashton    Fay    aurelie.labadie@abbott.io    \N    Cape Verde    East Everetthaven    69954 Gilda Circles    75177-0493    North Dakota    2016-08-10 18:44:12.765466    2016-10-14 13:02:26.559478        \N    \N    \N    0    \N    \N    \N    \N    female
10538    Darlene    Kerluke    katarina@grant.co    \N    Virgin Islands, British    Port Luther    99478 Gillian Field    77943    Illinois    2016-07-15 05:37:47.585208    2016-10-14 13:02:26.564001        \N    \N    \N    0    \N    \N    \N    \N    male
10539    Kenyon    Murazik    adrianna_spencer@hyatt.com    \N    Puerto Rico    Thompsonville    5663 Muller Junction    94844-7294    Mississippi    2016-09-18 06:13:31.582153    2016-10-14 13:02:26.569132        \N    \N    \N    0    \N    \N    \N    \N    male
10540    Summer    Osinski    jarod@braun.com    \N    Uganda    Lonnymouth    4125 Joseph Gateway    52892-0823    Rhode Island    2016-06-22 09:59:00.135644    2016-10-14 13:02:26.576618        \N    \N    \N    0    \N    \N    \N    \N    male
10541    Sydney    Marks    margarete_beatty@sporer.org    \N    Belarus    Lake Calliehaven    60463 Octavia Branch    75271-0121    Pennsylvania    2016-07-20 13:20:40.050565    2016-10-14 13:02:26.581414        \N    \N    \N    0    \N    \N    \N    \N    male
10542    Ambrose    Wunsch    pete.kertzmann@mclaughlin.name    \N    Japan    West Alaynaburgh    9619 Lebsack Garden    73127    Michigan    2016-08-18 14:32:04.308355    2016-10-14 13:02:26.585001        \N    \N    \N    0    \N    \N    \N    \N    male
10543    Trinity    Lubowitz    concepcion_cronin@wintheiserjacobson.com    \N    Guam    South Boview    19265 Kunze Mews    13655    Delaware    2016-09-01 04:29:11.453078    2016-10-14 13:02:26.588984        \N    \N    \N    0    \N    \N    \N    \N    male
10544    Vella    Walker    kaela@wolfcrona.net    \N    Eritrea    Nikkofurt    56905 Monique Turnpike    87440-7123    South Dakota    2016-07-05 10:55:06.16841    2016-10-14 13:02:26.592595        \N    \N    \N    0    \N    \N    \N    \N    male
10545    Doris    Rogahn    eva@mcclure.info    \N    Mauritania    North Amparofurt    344 Nigel Camp    46626-1960    Utah    2016-09-14 18:59:41.862259    2016-10-14 13:02:26.59587        \N    \N    \N    0    \N    \N    \N    \N    female
10546    Frank    Brakus    guiseppe@runolfsdottir.org    \N    El Salvador    Schummville    376 Torey Place    37078    Oklahoma    2016-09-26 10:47:49.440334    2016-10-14 13:02:26.599551        \N    \N    \N    0    \N    \N    \N    \N    male
10547    Harley    Crist    isabell.veum@barton.biz    \N    Spain    Reichertburgh    5756 Gorczany Fields    86582    Delaware    2016-08-16 10:34:04.957416    2016-10-14 13:02:26.603129        \N    \N    \N    0    \N    \N    \N    \N    female
10548    Alba    Cassin    rosalia@tromp.biz    \N    Guernsey    Camrenfort    455 Tyrell Road    52503    Ohio    2016-09-13 15:13:16.401472    2016-10-14 13:02:26.60706        \N    \N    \N    0    \N    \N    \N    \N    female
10549    Lucinda    Doyle    kailey@legroshodkiewicz.info    \N    Venezuela    North Leopold    2822 Rau Field    70303-2156    New Jersey    2016-07-27 19:45:26.275095    2016-10-14 13:02:26.610433        \N    \N    \N    0    \N    \N    \N    \N    female
10550    Matilda    Cummerata    tiffany_reilly@hodkiewicz.com    \N    Tanzania    Schummmouth    569 Hilpert Circles    86337    Maine    2016-09-27 10:13:58.015973    2016-10-14 13:02:26.614324        \N    \N    \N    0    \N    \N    \N    \N    male
10551    Lola    Funk    ellsworth_huel@townemoriette.net    \N    Ghana    Carolannemouth    71697 Parisian Parks    61886-4315    Oregon    2016-09-02 08:28:02.847311    2016-10-14 13:02:26.618223        \N    \N    \N    0    \N    \N    \N    \N    female
10552    Wiley    Kohler    eric@reilly.name    \N    Cyprus    Port Tina    53758 Abner Manor    58689    Florida    2016-09-28 11:16:57.781256    2016-10-14 13:02:26.621498        \N    \N    \N    0    \N    \N    \N    \N    female
10553    Godfrey    Legros    hailee_harris@becker.co    \N    Oman    South Cristopherport    79663 McClure Crossing    94678-1304    South Dakota    2016-09-14 03:20:03.26282    2016-10-14 13:02:26.624898        \N    \N    \N    0    \N    \N    \N    \N    male
10554    Sydni    Kshlerin    merritt_wuckert@tremblay.com    \N    Tokelau    Lizastad    1412 Cremin River    98619-3461    Georgia    2016-08-03 07:46:04.211287    2016-10-14 13:02:26.628229        \N    \N    \N    0    \N    \N    \N    \N    male
10555    Ebony    Wyman    kaycee@walsh.co    \N    Egypt    North Hermina    555 Abigail Fields    87950    Rhode Island    2016-07-24 02:56:55.610967    2016-10-14 13:02:26.631619        \N    \N    \N    0    \N    \N    \N    \N    male
10556    Kailey    Yundt    brett@vonrueden.info    \N    Swaziland    Dickinsonland    917 Maggio Walk    34230-8590    Michigan    2016-07-28 08:07:46.132018    2016-10-14 13:02:26.634851        \N    \N    \N    0    \N    \N    \N    \N    female
10557    Fabiola    Kiehn    madilyn_smitham@stromanreichert.co    \N    Myanmar    East Mckennafort    27097 Cummerata Square    37178-8303    Tennessee    2016-09-10 15:55:31.697353    2016-10-14 13:02:26.638126        \N    \N    \N    0    \N    \N    \N    \N    female
10558    Lavonne    Schmeler    kellie@krajcik.name    \N    Anguilla    Patrickfurt    348 Ursula Vista    11895-4410    West Virginia    2016-08-07 08:53:04.210503    2016-10-14 13:02:26.641604        \N    \N    \N    0    \N    \N    \N    \N    female
10559    Alanis    Fahey    yasmeen@bogisich.net    \N    Christmas Island    Gaylordtown    11014 Okey Mountains    54647    Arkansas    2016-07-01 15:59:21.048864    2016-10-14 13:02:26.644826        \N    \N    \N    0    \N    \N    \N    \N    female
10560    Chloe    Kuhlman    jaeden@ritchie.co    \N    Liberia    Aylinfurt    64007 Mante Streets    83356    Virginia    2016-08-12 05:45:20.9584    2016-10-14 13:02:26.650538        \N    \N    \N    0    \N    \N    \N    \N    female
10561    Helene    Hills    madonna_nienow@block.info    \N    Bahamas    Lake Hiram    64485 Esperanza Park    51221-6845    Virginia    2016-07-11 00:01:05.372785    2016-10-14 13:02:26.655681        \N    \N    \N    0    \N    \N    \N    \N    female
10562    Naomie    Kuvalis    elva@von.com    \N    Burkina Faso    Andersonville    366 Hettinger Parkway    73485-4082    Michigan    2016-08-01 21:27:18.493244    2016-10-14 13:02:26.659143        \N    \N    \N    0    \N    \N    \N    \N    male
10563    Fleta    Schamberger    alyson@rolfson.co    \N    Kuwait    East Feltonton    5739 DuBuque Summit    80269-6909    Vermont    2016-07-14 21:49:55.58107    2016-10-14 13:02:26.662166        \N    \N    \N    0    \N    \N    \N    \N    male
10564    Charles    McLaughlin    vallie_huels@stokescasper.org    \N    Canada    Lake Dino    401 Katrina Haven    73270-9545    Montana    2016-08-31 21:56:15.858634    2016-10-14 13:02:26.66569        \N    \N    \N    0    \N    \N    \N    \N    male
10565    Joelle    Hudson    jerel.farrell@bergstromlakin.info    \N    Philippines    Trompville    882 Allison Views    35615    Nevada    2016-07-09 21:50:17.156718    2016-10-14 13:02:26.669006        \N    \N    \N    0    \N    \N    \N    \N    female
19745    Kobe    Bartell    jimmie.kunde@sawayn.io    \N    Mayotte    Lake Rusty    929 Deckow Pines    19562-6227    Alaska    2016-08-19 16:36:10.520246    2016-10-14 13:02:26.673612        \N    \N    \N    0    \N    \N    \N    \N    female
10566    Neal    Jakubowski    trystan_hilll@vandervorthand.io    \N    Cocos (Keeling) Islands    Runolfssonbury    91196 Jaquan Drive    48097    West Virginia    2016-08-25 14:50:25.605265    2016-10-14 13:02:26.678846        \N    \N    \N    0    \N    \N    \N    \N    male
10567    Timmothy    Reichert    rick_barton@hammes.net    \N    Belarus    New Rosetta    66515 Cecelia Creek    99293-6849    California    2016-09-24 02:01:17.155748    2016-10-14 13:02:26.682524        \N    \N    \N    0    \N    \N    \N    \N    male
10568    Mckenna    Prosacco    bertram.okeefe@wisozk.biz    \N    India    New Raquel    136 Grady Plain    51872-9506    Kentucky    2016-09-03 00:57:36.338297    2016-10-14 13:02:26.687227        \N    \N    \N    0    \N    \N    \N    \N    male
10569    Dedric    Jakubowski    waldo@boehm.com    \N    Venezuela    Port Koryshire    140 Schulist Shoal    77536    New Hampshire    2016-08-23 22:14:48.559914    2016-10-14 13:02:26.691728        \N    \N    \N    0    \N    \N    \N    \N    male
10570    Jackeline    Welch    jeika.christiansen@ullrichboyer.com    \N    Uruguay    Lake Evelyn    29863 Luettgen Path    28679    Rhode Island    2016-09-16 12:57:25.411877    2016-10-14 13:02:26.696599        \N    \N    \N    0    \N    \N    \N    \N    male
10571    Liam    Zieme    sandy.rohan@rodriguezlind.info    \N    Montserrat    Reynoldshaven    959 Leonie Mount    35984    New Mexico    2016-08-25 20:58:42.164042    2016-10-14 13:02:26.701177        \N    \N    \N    0    \N    \N    \N    \N    male
10572    Deondre    Krajcik    brock@kunze.co    \N    Niger    Strosinfort    589 Boehm Cliff    51487-2263    New Jersey    2016-06-28 02:45:07.728477    2016-10-14 13:02:26.708446        \N    \N    \N    0    \N    \N    \N    \N    female
10573    Hank    Yost    bruce@medhurst.info    \N    Morocco    East Narcisofurt    732 Cydney Way    83222-2905    Massachusetts    2016-09-13 03:08:43.218089    2016-10-14 13:02:26.716921        \N    \N    \N    0    \N    \N    \N    \N    male
10574    Ike    Hoeger    kip@rogahncrooks.info    \N    Vietnam    Dinoborough    5825 Pollich Roads    89025    South Carolina    2016-07-06 11:54:39.865468    2016-10-14 13:02:26.722124        \N    \N    \N    0    \N    \N    \N    \N    male
10575    Mertie    Okuneva    bryana@white.com    \N    Brunei Darussalam    Port Markushaven    19444 Predovic Junctions    52484-7999    Oklahoma    2016-07-21 22:23:53.571018    2016-10-14 13:02:26.726755        \N    \N    \N    0    \N    \N    \N    \N    female
10576    Gudrun    Lowe    tyrel_kohler@reilly.name    \N    Sudan    Curtisborough    4615 Mante Plains    25722-2471    Indiana    2016-09-17 07:38:30.990556    2016-10-14 13:02:26.730125        \N    \N    \N    0    \N    \N    \N    \N    female
10577    Marianna    Bahringer    delta@brown.name    \N    Macao    Ondrickaside    926 Langosh Knolls    84023    Maine    2016-06-24 01:04:19.545209    2016-10-14 13:02:26.733693        \N    \N    \N    0    \N    \N    \N    \N    male
10579    Jeramie    Spencer    matteo@dooley.name    \N    United States of America    New Shaynefurt    54410 Prohaska Burg    72131-1556    Nebraska    2016-06-27 06:47:46.90748    2016-10-14 13:02:26.737225        \N    \N    \N    0    \N    \N    \N    \N    male
10580    Eudora    Lehner    jayden.trantow@hoeger.io    \N    Mauritius    Port Elvis    1192 Jarvis Brook    93981    Georgia    2016-08-06 17:54:48.897767    2016-10-14 13:02:26.74029        \N    \N    \N    0    \N    \N    \N    \N    female
10581    Eldon    Russel    lenna@heel.co    \N    Hong Kong    Jesseland    5206 McDermott Island    98128    North Carolina    2016-08-15 03:21:54.713622    2016-10-14 13:02:26.743749        \N    \N    \N    0    \N    \N    \N    \N    female
10582    Cathrine    Anderson    reece@hermiston.com    \N    Taiwan    Annettafurt    35437 Rowe Passage    24469-3243    Ohio    2016-07-27 05:59:04.301346    2016-10-14 13:02:26.7468        \N    \N    \N    0    \N    \N    \N    \N    male
10583    Myriam    Weber    delta_trantow@kautzer.co    \N    Afghanistan    Port Ashtonshire    82967 Morar Ramp    32156    Georgia    2016-09-22 09:56:57.055803    2016-10-14 13:02:26.749986        \N    \N    \N    0    \N    \N    \N    \N    male
10584    Cortney    Romaguera    jewel_crona@farrell.name    \N    Bangladesh    New Angelinaside    209 Nikki Point    83054    Tennessee    2016-08-18 05:16:39.842741    2016-10-14 13:02:26.753101        \N    \N    \N    0    \N    \N    \N    \N    female
10585    Mark    MacGyver    otto@auer.net    \N    Belgium    Port Georgiannabury    9890 Haag Pass    73847    Mississippi    2016-07-10 13:25:56.430195    2016-10-14 13:02:26.756167        \N    \N    \N    0    \N    \N    \N    \N    male
10586    Keely    Greenholt    retha_walker@lind.net    \N    United Kingdom    South Aliceport    391 Bradtke Junction    10413    Iowa    2016-07-06 23:55:07.96818    2016-10-14 13:02:26.759422        \N    \N    \N    0    \N    \N    \N    \N    male
10587    Marlen    Ondricka    hilma_walter@goodwin.io    \N    French Southern Territories    North Isabellshire    7045 Montana Walk    30760    Iowa    2016-09-20 11:59:23.812818    2016-10-14 13:02:26.763263        \N    \N    \N    0    \N    \N    \N    \N    female
10588    Joana    McLaughlin    lennie.powlowski@kuhlman.co    \N    Kuwait    Albertside    221 Rippin Courts    31188-3657    Massachusetts    2016-09-13 09:57:03.19208    2016-10-14 13:02:26.767469        \N    \N    \N    0    \N    \N    \N    \N    male
10590    Kurt    Heller    hans_marquardt@bogan.biz    \N    Cameroon    New Ludie    90380 Layla Island    31529-4132    California    2016-08-20 19:37:15.619713    2016-10-14 13:02:26.771719        \N    \N    \N    0    \N    \N    \N    \N    female
10591    Gabe    Gleason    alvah@harvey.co    \N    Botswana    Port Johannside    9950 Kirstin Run    56557    Delaware    2016-09-15 16:37:44.954135    2016-10-14 13:02:26.775204        \N    \N    \N    0    \N    \N    \N    \N    female
10592    Crystal    O'Keefe    jazmyn_klein@kaulkefunk.net    \N    United Arab Emirates    Port Julian    20442 Sophia Stravenue    91649-3067    New Mexico    2016-07-25 13:46:17.188256    2016-10-14 13:02:26.778294        \N    \N    \N    0    \N    \N    \N    \N    female
10593    Payton    Rippin    yadira@metz.biz    \N    Kyrgyz Republic    New Barney    813 Cody Fall    45246-4221    Louisiana    2016-07-28 15:25:38.081091    2016-10-14 13:02:26.782197        \N    \N    \N    0    \N    \N    \N    \N    female
10595    Alysa    Little    gaylord_beahan@ruelko.com    \N    Bahamas    Raynorfurt    5964 Hailie Canyon    26934-8347    Oklahoma    2016-08-27 13:28:44.834679    2016-10-14 13:02:26.796135        \N    \N    \N    0    \N    \N    \N    \N    male
10596    Phoebe    Kihn    ayla@abernathy.co    \N    Taiwan    Warrenview    15279 Cassie Mission    42639    New Hampshire    2016-09-13 18:16:15.849544    2016-10-14 13:02:26.799542        \N    \N    \N    0    \N    \N    \N    \N    male
10597    Annamae    Hayes    ozella@donnelly.co    \N    Norway    Adamsport    254 Adolph Forges    38500-3172    Rhode Island    2016-07-01 05:48:38.553946    2016-10-14 13:02:26.803164        \N    \N    \N    0    \N    \N    \N    \N    male
10598    Katlynn    Collins    moshe@mckenzie.org    \N    Croatia    West Frida    640 Della Isle    33056    Georgia    2016-08-02 16:51:20.677832    2016-10-14 13:02:26.806909        \N    \N    \N    0    \N    \N    \N    \N    male
10599    Virginia    Rodriguez    elliott.kshlerin@ruel.net    \N    Turkmenistan    Napoleonborough    4264 Rippin Field    65239-2676    Utah    2016-09-07 10:58:31.778962    2016-10-14 13:02:26.810586        \N    \N    \N    0    \N    \N    \N    \N    female
10600    Hailey    Schuster    aiyana@haleygaylord.biz    \N    El Salvador    Lorenzaborough    10846 Darryl Gardens    36361    Oklahoma    2016-09-21 05:14:04.766433    2016-10-14 13:02:26.814052        \N    \N    \N    0    \N    \N    \N    \N    female
10601    Darien    Zboncak    elbert_thompson@harveymedhurst.co    \N    Hong Kong    West Elisa    7602 Gleason Expressway    34447    Arkansas    2016-08-14 07:10:34.683503    2016-10-14 13:02:26.81699        \N    \N    \N    0    \N    \N    \N    \N    female
10602    Schuyler    Emmerich    dolly.spinka@lehnercarter.info    \N    Belize    Port Shaina    5478 Watsica Crescent    27998-6047    North Dakota    2016-07-11 15:29:57.242107    2016-10-14 13:02:26.820188        \N    \N    \N    0    \N    \N    \N    \N    male
10603    Zackary    Dickens    dylan_feil@conroy.co    \N    Guinea-Bissau    Leorastad    65091 Carter Fort    62802-0354    Hawaii    2016-09-15 10:24:38.934121    2016-10-14 13:02:26.823447        \N    \N    \N    0    \N    \N    \N    \N    male
10604    Anna    Marvin    katlynn.schowalter@cartwright.net    \N    Norway    North Dolores    8563 Runolfsson Burg    40197-0433    Rhode Island    2016-07-03 05:01:32.119101    2016-10-14 13:02:26.828565        \N    \N    \N    0    \N    \N    \N    \N    male
10605    Desmond    King    gerardo@schuppe.name    \N    Libyan Arab Jamahiriya    North Christopherberg    47119 Angeline Spurs    43257-9691    Florida    2016-09-11 02:27:23.214337    2016-10-14 13:02:26.834753        \N    \N    \N    0    \N    \N    \N    \N    male
10607    Providenci    D'Amore    forrest@rippin.net    \N    Saint Vincent and the Grenadines    Lake Dessiemouth    975 Rosenbaum Isle    10881    Colorado    2016-09-11 17:04:35.512638    2016-10-14 13:02:26.848906        \N    \N    \N    0    \N    \N    \N    \N    male
10608    Clark    Botsford    julius@lueilwitzwiegand.com    \N    Bulgaria    Lake Alfonzoton    314 Rickey Crescent    39620    Illinois    2016-09-14 21:39:52.878359    2016-10-14 13:02:26.854485        \N    \N    \N    0    \N    \N    \N    \N    female
10609    Annette    Corkery    dion@skilesheel.info    \N    India    West Kody    500 Jacobson Cliff    19337-8180    Georgia    2016-08-02 06:24:06.309424    2016-10-14 13:02:26.861832        \N    \N    \N    0    \N    \N    \N    \N    female
10610    Narciso    Schumm    lauren@okeefe.io    \N    Guam    Robertstown    49488 Bernhard Square    48699-9175    Missouri    2016-06-22 23:56:35.563928    2016-10-14 13:02:26.867125        \N    \N    \N    0    \N    \N    \N    \N    male
10611    Jordon    Douglas    margarett_heathcote@johnson.org    \N    Panama    East Evaside    59523 Harris Point    94558-8173    South Dakota    2016-09-01 09:32:36.521966    2016-10-14 13:02:26.87068        \N    \N    \N    0    \N    \N    \N    \N    male
10612    Charlotte    Kling    ruthie.gleason@turcotte.co    \N    Reunion    Lelahton    7885 Stokes Garden    43076    Colorado    2016-08-25 22:46:16.374329    2016-10-14 13:02:26.873727        \N    \N    \N    0    \N    \N    \N    \N    male
10613    Caleigh    Mills    kira.kulas@konopelski.net    \N    Hungary    Port Santiagoland    96896 Madison Hills    72857    Massachusetts    2016-09-10 16:48:51.581281    2016-10-14 13:02:26.876976        \N    \N    \N    0    \N    \N    \N    \N    female
10614    Elsie    Jakubowski    jaquelin_bartell@ferrytremblay.info    \N    Australia    New Buster    1152 Jeanne Squares    45670-5610    Wyoming    2016-09-06 00:21:19.586048    2016-10-14 13:02:26.880219        \N    \N    \N    0    \N    \N    \N    \N    female
10615    Juston    Herman    nedra.tromp@hayes.org    \N    Estonia    Daughertymouth    82929 Harley Light    91708-9525    Vermont    2016-07-12 05:57:13.684627    2016-10-14 13:02:26.883524        \N    \N    \N    0    \N    \N    \N    \N    male
10616    Sylvan    Barton    harmon@goyette.name    \N    Tuvalu    Naomiehaven    175 Rebecca Stream    72952-7995    New Jersey    2016-08-21 04:18:29.805195    2016-10-14 13:02:26.886662        \N    \N    \N    0    \N    \N    \N    \N    female
10617    Pablo    Tromp    finn.kiehn@dubuque.name    \N    Bulgaria    Runolfsdottirbury    24395 Mueller Club    62857    Connecticut    2016-08-20 22:35:20.272089    2016-10-14 13:02:26.890101        \N    \N    \N    0    \N    \N    \N    \N    female
10618    Marietta    Crona    abbie.wiza@gutmann.org    \N    Chile    South Shermanstad    822 Anna Street    86420    Ohio    2016-07-09 01:11:32.105971    2016-10-14 13:02:26.89375        \N    \N    \N    0    \N    \N    \N    \N    male
10619    Lina    Schulist    teagan@christiansenhegmann.org    \N    Oman    Shannaberg    315 Huel Walks    62695    Massachusetts    2016-07-31 00:01:13.678543    2016-10-14 13:02:26.89738        \N    \N    \N    0    \N    \N    \N    \N    male
10620    Bret    Corkery    korbin@schroederpredovic.name    \N    Uganda    North Aidan    81919 Carter Way    44747    Maine    2016-07-28 13:20:09.128125    2016-10-14 13:02:26.902181        \N    \N    \N    0    \N    \N    \N    \N    male
10621    Joana    Hermann    rhea.lynch@heller.co    \N    Egypt    Jerdeview    162 Zechariah Mountain    84226-0282    Massachusetts    2016-08-21 21:30:51.543588    2016-10-14 13:02:26.909023        \N    \N    \N    0    \N    \N    \N    \N    female
10622    Dock    Morissette    jonathan_abbott@beer.io    \N    American Samoa    East Mollie    3881 Ryan Plains    62037-1621    Tennessee    2016-08-21 14:33:43.47738    2016-10-14 13:02:26.915577        \N    \N    \N    0    \N    \N    \N    \N    female
10623    London    VonRueden    robin_larson@cole.com    \N    Suriname    Cullenchester    936 Joana Hollow    68326    Georgia    2016-06-30 16:24:22.246702    2016-10-14 13:02:26.921731        \N    \N    \N    0    \N    \N    \N    \N    female
10624    Anastasia    Senger    delta.kiehn@kutch.io    \N    Saint Vincent and the Grenadines    South Calebview    28362 Candice Garden    44471-7256    Maine    2016-07-15 22:00:15.835621    2016-10-14 13:02:26.926209        \N    \N    \N    0    \N    \N    \N    \N    male
10625    Oswald    Spinka    lacey@gerlach.org    \N    Chile    Millerchester    11786 Blick Stravenue    61199-4442    Colorado    2016-07-12 20:17:32.616193    2016-10-14 13:02:26.929765        \N    \N    \N    0    \N    \N    \N    \N    male
11252    Alena    Conn    dario@wintheiser.org    \N    India    Port Piper    745 Zane Haven    45663    New Mexico    2016-08-27 09:36:52.970699    2016-10-14 13:02:26.934252        \N    \N    \N    0    \N    \N    \N    \N    male
10626    Anastasia    Hegmann    juwan_funk@schmitt.net    \N    Saint Lucia    Lake Chaimton    9331 Graham Road    28545-8504    Rhode Island    2016-08-07 16:22:16.666017    2016-10-14 13:02:26.938111        \N    \N    \N    0    \N    \N    \N    \N    male
10628    Alejandrin    Heidenreich    julian_simonis@mertzrogahn.co    \N    Nauru    Korbinshire    71621 Klein Dale    22667    New Mexico    2016-08-02 20:18:47.119071    2016-10-14 13:02:26.941546        \N    \N    \N    0    \N    \N    \N    \N    female
10629    Emelie    Huels    luella.schamberger@ullrichdickens.net    \N    Bermuda    Heidenreichberg    3349 Zieme Burgs    90461    Ohio    2016-06-30 18:44:03.562701    2016-10-14 13:02:26.944489        \N    \N    \N    0    \N    \N    \N    \N    female
10630    Aiyana    Beatty    may@howellruel.com    \N    Christmas Island    Myleneside    625 Ilene Bridge    56125-1783    Montana    2016-09-18 17:08:25.198594    2016-10-14 13:02:26.947814        \N    \N    \N    0    \N    \N    \N    \N    female
10631    Lina    Nader    newell_bauch@daniel.com    \N    San Marino    Port Edaton    57940 Gibson Plaza    57296    Maryland    2016-09-18 08:04:26.803027    2016-10-14 13:02:26.950697        \N    \N    \N    0    \N    \N    \N    \N    female
10632    Emmet    Upton    loyal_reichel@ratke.com    \N    Cuba    East Jeanettestad    2857 Imani Mountains    20533-2679    Wisconsin    2016-07-24 00:54:41.196437    2016-10-14 13:02:26.953909        \N    \N    \N    0    \N    \N    \N    \N    female
10633    Danyka    Torphy    polly_bosco@lesch.org    \N    Honduras    Gottliebfurt    53572 Cole Bypass    31590    Arkansas    2016-08-08 07:12:47.161666    2016-10-14 13:02:26.957586        \N    \N    \N    0    \N    \N    \N    \N    male
10634    Savanna    Beier    edyth@prohaska.info    \N    Botswana    Gerlachfurt    5571 Wilkinson Centers    88049    West Virginia    2016-06-26 04:53:44.352438    2016-10-14 13:02:26.961205        \N    \N    \N    0    \N    \N    \N    \N    male
10635    Marlee    Doyle    guido_armstrong@hirthe.net    \N    Japan    South Cale    78747 Robel Mount    99058-7034    Illinois    2016-09-29 09:44:31.679358    2016-10-14 13:02:26.964932        \N    \N    \N    0    \N    \N    \N    \N    female
10636    Kelvin    Berge    talon@hagenes.co    \N    Burkina Faso    South Tatyana    13273 Arno Mill    49220-5690    Indiana    2016-07-31 21:00:14.399898    2016-10-14 13:02:26.968354        \N    \N    \N    0    \N    \N    \N    \N    female
10637    Cletus    Boehm    ken.feest@deckowbecker.name    \N    Cameroon    South Erikamouth    4132 Dominique Forks    39323-3487    Virginia    2016-07-27 04:48:17.420261    2016-10-14 13:02:26.972829        \N    \N    \N    0    \N    \N    \N    \N    female
10638    Ashton    Abbott    hallie@ryancronin.com    \N    Dominica    South Bricebury    2535 Alison Falls    60473    Virginia    2016-09-10 20:13:25.48431    2016-10-14 13:02:26.976598        \N    \N    \N    0    \N    \N    \N    \N    female
10639    Silas    MacGyver    madeline@schmitt.com    \N    Bermuda    South Emilio    9777 Jaqueline Shore    80892    Mississippi    2016-08-26 18:01:41.551039    2016-10-14 13:02:26.980647        \N    \N    \N    0    \N    \N    \N    \N    female
10640    Bobby    Donnelly    morris@nicolas.biz    \N    Jamaica    Lake Elinoreport    78405 Kunze Land    84388-9676    New Mexico    2016-09-26 04:35:33.501499    2016-10-14 13:02:26.984878        \N    \N    \N    0    \N    \N    \N    \N    male
10641    Antonietta    Goyette    thaddeus.bergstrom@langabshire.net    \N    Taiwan    East Tiara    3482 Swift Drives    42365-8529    Alaska    2016-07-27 16:46:48.07435    2016-10-14 13:02:26.988605        \N    \N    \N    0    \N    \N    \N    \N    female
10642    Zoey    Cruickshank    sydnie@weinat.info    \N    Paraguay    North Jettie    8918 Rowe Pike    93747-4537    Idaho    2016-09-03 11:01:51.326943    2016-10-14 13:02:26.992869        \N    \N    \N    0    \N    \N    \N    \N    male
10643    Guadalupe    Schowalter    yvonne@klein.co    \N    Malawi    Ryanport    481 Milton Drive    13653    Maine    2016-06-24 20:12:49.07978    2016-10-14 13:02:26.997227        \N    \N    \N    0    \N    \N    \N    \N    male
10644    Edgar    Gaylord    austin@shanahan.io    \N    Argentina    Swaniawskiburgh    766 Donnelly Parkway    60724    Virginia    2016-09-22 20:25:26.00802    2016-10-14 13:02:27.001087        \N    \N    \N    0    \N    \N    \N    \N    male
10645    Cleora    Collins    zaria.turner@robertsbecker.co    \N    United States Minor Outlying Islands    Connside    1486 Dooley Spring    79886    Illinois    2016-08-31 04:54:01.610529    2016-10-14 13:02:27.005259        \N    \N    \N    0    \N    \N    \N    \N    male
10646    Sarah    Hamill    branson@herman.co    \N    Samoa    North Janaeville    1950 Kerluke Avenue    87047    Kansas    2016-09-15 17:31:46.759315    2016-10-14 13:02:27.00898        \N    \N    \N    0    \N    \N    \N    \N    male
10647    Branson    Barton    loyal@abshireheathcote.io    \N    Guyana    New Lutherview    5101 Mia Glen    49793    South Carolina    2016-07-16 19:13:36.519164    2016-10-14 13:02:27.011919        \N    \N    \N    0    \N    \N    \N    \N    female
10648    Guido    Quitzon    bennett@caspergreen.co    \N    Cameroon    Rosenbaumside    56302 Orn Points    78177    Wyoming    2016-08-01 17:18:32.329254    2016-10-14 13:02:27.015418        \N    \N    \N    0    \N    \N    \N    \N    female
10649    Trever    Ritchie    caie_moore@berge.co    \N    Venezuela    Beerport    87252 Oliver Valleys    17603    Washington    2016-07-28 10:03:51.883483    2016-10-14 13:02:27.019433        \N    \N    \N    0    \N    \N    \N    \N    female
10650    Keshawn    Block    van_konopelski@ortizmacejkovic.name    \N    Singapore    Reichelfurt    47690 Christiansen Fords    82467    Colorado    2016-07-02 19:53:22.238164    2016-10-14 13:02:27.023066        \N    \N    \N    0    \N    \N    \N    \N    male
10651    Creola    Turcotte    everette@hahn.io    \N    Nigeria    Abernathyhaven    40747 Karson Trafficway    44830    Utah    2016-09-27 12:26:26.61583    2016-10-14 13:02:27.026705        \N    \N    \N    0    \N    \N    \N    \N    male
10652    Heather    Bailey    darian.zulauf@veum.biz    \N    United States Minor Outlying Islands    East Noemie    3048 Rene Lane    80222-4778    West Virginia    2016-09-27 20:15:27.7009    2016-10-14 13:02:27.030351        \N    \N    \N    0    \N    \N    \N    \N    female
10653    Coby    Kris    linda@adams.org    \N    Svalbard & Jan Mayen Islands    East Emie    9546 Jannie Springs    88582    Arizona    2016-08-28 22:30:46.394102    2016-10-14 13:02:27.034181        \N    \N    \N    0    \N    \N    \N    \N    female
10654    Elinore    Maggio    adelle.hartmann@zboncak.io    \N    Jersey    Stefanville    567 Katheryn Divide    40634    Nevada    2016-07-25 03:24:23.369296    2016-10-14 13:02:27.037705        \N    \N    \N    0    \N    \N    \N    \N    male
10655    Syble    Bartell    domenica.kohler@zboncak.org    \N    Turkmenistan    Nikochester    76366 MacGyver Valley    24449    Kentucky    2016-07-20 06:30:47.721974    2016-10-14 13:02:27.041141        \N    \N    \N    0    \N    \N    \N    \N    female
10656    Camren    Goldner    sven_wisoky@lakin.co    \N    Mauritania    Strosinville    8216 Harber Wall    32700-0390    Michigan    2016-08-05 03:57:48.573938    2016-10-14 13:02:27.044358        \N    \N    \N    0    \N    \N    \N    \N    female
10657    Bernadine    Effertz    zola_wintheiser@quitzonwatsica.biz    \N    China    Port Robyn    121 Daisy Park    46658    Kansas    2016-09-24 00:58:07.859344    2016-10-14 13:02:27.047405        \N    \N    \N    0    \N    \N    \N    \N    male
10658    Rogelio    Swaniawski    myron_abbott@kublesch.net    \N    Yemen    North Shayleeberg    64232 Ward Track    31943-1620    Louisiana    2016-08-31 10:50:36.699674    2016-10-14 13:02:27.050437        \N    \N    \N    0    \N    \N    \N    \N    female
10659    Colin    Durgan    catharine_davis@gorczany.org    \N    Norfolk Island    Blanchebury    489 Lester Mission    14405    South Carolina    2016-08-18 06:47:04.070402    2016-10-14 13:02:27.053671        \N    \N    \N    0    \N    \N    \N    \N    female
10660    Kaley    Heaney    brennan@gibsonbogan.com    \N    Zimbabwe    Hayestown    98857 Raynor Heights    21752    Idaho    2016-07-21 00:02:37.561215    2016-10-14 13:02:27.056675        \N    \N    \N    0    \N    \N    \N    \N    male
19976    Eugenia    Crona    lyla@ohara.org    \N    Mexico    Lake Simeon    1336 Sauer Circles    20813    South Dakota    2016-08-22 05:02:33.551441    2016-10-14 13:02:27.059858        \N    \N    \N    0    \N    \N    \N    \N    female
10661    Thea    Tillman    otto@lehner.com    \N    Turkmenistan    North Duane    97695 Mollie Canyon    41780    South Carolina    2016-08-20 22:35:44.102663    2016-10-14 13:02:27.062853        \N    \N    \N    0    \N    \N    \N    \N    male
10662    Raoul    Bartell    kathryne.conroy@thiel.co    \N    French Southern Territories    Borerberg    265 Aaron Mall    47704-4039    Vermont    2016-07-05 07:55:06.194325    2016-10-14 13:02:27.065666        \N    \N    \N    0    \N    \N    \N    \N    male
10663    Jamil    Becker    helena@predovic.net    \N    Botswana    Angelicaville    788 Delaney Shores    27497    Virginia    2016-09-28 02:43:10.626287    2016-10-14 13:02:27.069486        \N    \N    \N    0    \N    \N    \N    \N    male
10664    Watson    Sawayn    priscilla@deckow.org    \N    Latvia    West Daxberg    439 Shayne Ridges    45876    Louisiana    2016-09-17 18:04:21.91089    2016-10-14 13:02:27.073551        \N    \N    \N    0    \N    \N    \N    \N    female
10665    Fleta    Altenwerth    hermina@adams.name    \N    Seychelles    West Reinholdburgh    15000 Derrick Crescent    28870    Louisiana    2016-08-31 01:00:03.657839    2016-10-14 13:02:27.076649        \N    \N    \N    0    \N    \N    \N    \N    male
10666    Amparo    Torp    patsy@abbott.info    \N    Reunion    New Clementinebury    39846 Grady Springs    25386    Kansas    2016-08-15 22:27:06.794916    2016-10-14 13:02:27.079543        \N    \N    \N    0    \N    \N    \N    \N    male
10667    Stefan    Sipes    kylee_rath@bosco.com    \N    Somalia    Lehnerberg    42601 Priscilla Lakes    94290    Virginia    2016-09-21 13:22:49.659964    2016-10-14 13:02:27.082715        \N    \N    \N    0    \N    \N    \N    \N    male
10668    Garnet    Krajcik    emely@dickensmclaughlin.name    \N    Vietnam    Walterfort    85706 Elmer River    89731-4420    Connecticut    2016-09-09 17:55:13.913799    2016-10-14 13:02:27.085829        \N    \N    \N    0    \N    \N    \N    \N    female
10669    Hanna    Collier    wilford@robel.io    \N    Tonga    Coltfort    1985 Rickie Lakes    24055    Louisiana    2016-09-16 18:38:30.450643    2016-10-14 13:02:27.088769        \N    \N    \N    0    \N    \N    \N    \N    male
10670    Jacky    Zboncak    melya@hansen.name    \N    Montenegro    Krajcikborough    36543 Langosh Trafficway    60325    Oregon    2016-09-01 12:28:58.167081    2016-10-14 13:02:27.092034        \N    \N    \N    0    \N    \N    \N    \N    female
10671    Elliott    Greenfelder    alivia@rempel.co    \N    Montserrat    Gunnerhaven    39396 Zemlak Pike    75220    Idaho    2016-07-19 08:49:00.288444    2016-10-14 13:02:27.095121        \N    \N    \N    0    \N    \N    \N    \N    female
10672    Karlie    Mueller    dave.paucek@gloverschmidt.name    \N    China    West Doughaven    6351 Senger Club    48548-5866    New Jersey    2016-09-23 06:14:00.510608    2016-10-14 13:02:27.097993        \N    \N    \N    0    \N    \N    \N    \N    female
10674    Rosalind    Feil    leonie@lowe.com    \N    Nauru    Lake Suzanne    258 Meagan Inlet    88219-1706    Massachusetts    2016-09-15 08:39:54.077105    2016-10-14 13:02:27.101094        \N    \N    \N    0    \N    \N    \N    \N    female
10675    Jerrod    Hartmann    irwin.wiegand@padberg.info    \N    Timor-Leste    Lake Marlenbury    35468 Noble Stream    40553    Alabama    2016-09-14 18:45:36.168596    2016-10-14 13:02:27.110718        \N    \N    \N    0    \N    \N    \N    \N    male
10676    Rogelio    Wolf    alta.pfeffer@hansen.com    \N    Iran    Mekhimouth    6845 Tommie Turnpike    53531-4846    Idaho    2016-09-05 15:31:22.794673    2016-10-14 13:02:27.114417        \N    \N    \N    0    \N    \N    \N    \N    male
10677    Luna    Kunze    amya@considineferry.com    \N    Switzerland    Nikolaustown    47557 Adrain Mountain    22344    Arizona    2016-07-22 11:20:06.435039    2016-10-14 13:02:27.117908        \N    \N    \N    0    \N    \N    \N    \N    male
10678    Shawna    Ziemann    stanford.kertzmann@feestcasper.co    \N    China    West Harrison    89307 Daryl Ports    67785    Alabama    2016-08-16 21:19:09.486525    2016-10-14 13:02:27.121306        \N    \N    \N    0    \N    \N    \N    \N    female
10679    Dorothea    Purdy    reymundo_crona@jakubowski.net    \N    Armenia    Shaniebury    3718 Pascale Grove    58897-4372    Ohio    2016-09-13 16:50:25.130395    2016-10-14 13:02:27.124779        \N    \N    \N    0    \N    \N    \N    \N    female
10680    Aaron    VonRueden    mozell_raynor@douglas.io    \N    Namibia    New Reeseton    52242 Stehr Rapids    97859-0408    Wisconsin    2016-08-23 15:02:17.835876    2016-10-14 13:02:27.127856        \N    \N    \N    0    \N    \N    \N    \N    female
10681    Melyna    Robel    adrain_vandervort@parisian.biz    \N    Kuwait    Edville    869 Madisen Meadows    12192-9044    Georgia    2016-08-28 14:33:41.173117    2016-10-14 13:02:27.131459        \N    \N    \N    0    \N    \N    \N    \N    male
10682    Kara    Cremin    angelica@murphy.name    \N    Reunion    Zanderfort    1769 Jacklyn Street    22149    South Carolina    2016-08-15 10:18:25.033081    2016-10-14 13:02:27.135184        \N    \N    \N    0    \N    \N    \N    \N    male
10683    Camryn    Kutch    cameron_gottlieb@stiedemannblick.name    \N    Portugal    Nellamouth    5403 Miller Isle    34276-8129    Wyoming    2016-08-24 13:05:00.384879    2016-10-14 13:02:27.138126        \N    \N    \N    0    \N    \N    \N    \N    male
10684    Clare    Daugherty    evans@casperlehner.org    \N    Belgium    Port Samanta    581 Schamberger Junctions    99555    Nevada    2016-09-21 06:13:23.101275    2016-10-14 13:02:27.141123        \N    \N    \N    0    \N    \N    \N    \N    female
10685    Briana    Fay    emmet@runte.com    \N    Virgin Islands, British    East Aurelie    17738 Kris Fields    40985    Maryland    2016-07-29 14:49:12.178385    2016-10-14 13:02:27.144228        \N    \N    \N    0    \N    \N    \N    \N    male
10686    Cole    Hodkiewicz    michele@wolfffarrell.io    \N    Netherlands    New Jonasburgh    8793 Schaden Valley    50868-1902    Minnesota    2016-08-16 02:01:36.42817    2016-10-14 13:02:27.150309        \N    \N    \N    0    \N    \N    \N    \N    male
10687    Korbin    Kshlerin    ciara_turner@leuschke.co    \N    Swaziland    New Kayfurt    221 Davion Locks    38467    Utah    2016-07-27 06:41:00.041087    2016-10-14 13:02:27.155307        \N    \N    \N    0    \N    \N    \N    \N    female
10688    Jaron    Hermiston    ozzie.terry@monahan.info    \N    Belgium    Rennerfort    5609 Effertz Flats    71633    Maine    2016-07-18 07:32:07.736073    2016-10-14 13:02:27.158759        \N    \N    \N    0    \N    \N    \N    \N    female
10689    Heloise    Skiles    gaetano.schneider@waelchimohr.info    \N    Solomon Islands    Connellyshire    58115 Leland Mountain    43841    Maryland    2016-09-22 18:50:59.85468    2016-10-14 13:02:27.162926        \N    \N    \N    0    \N    \N    \N    \N    female
10690    Jayda    White    dangelo.spinka@stroman.info    \N    Bermuda    Jaredland    15504 Nick Harbors    47549    Washington    2016-07-27 12:02:43.28979    2016-10-14 13:02:27.167067        \N    \N    \N    0    \N    \N    \N    \N    female
10691    Quincy    Green    delbert@gibsonschulist.info    \N    Pitcairn Islands    Milfordside    8529 Hansen Harbors    29630-9388    Washington    2016-06-27 12:29:25.805334    2016-10-14 13:02:27.17135        \N    \N    \N    0    \N    \N    \N    \N    male
10692    Thalia    Corkery    vivienne@stantonrohan.io    \N    El Salvador    Margretfort    14124 Mazie Place    32707-2618    Virginia    2016-07-28 12:21:52.328171    2016-10-14 13:02:27.174747        \N    \N    \N    0    \N    \N    \N    \N    male
10693    Maximus    Will    zachariah@rutherford.net    \N    Nicaragua    Jastview    1591 Dejuan Creek    42585-1848    Minnesota    2016-08-28 01:31:51.209619    2016-10-14 13:02:27.177931        \N    \N    \N    0    \N    \N    \N    \N    female
10694    Ahmed    Erdman    ford.gerlach@feest.biz    \N    United Kingdom    New Bertshire    187 Haylie Loop    47834-1589    Washington    2016-07-20 23:00:00.06527    2016-10-14 13:02:27.181207        \N    \N    \N    0    \N    \N    \N    \N    male
10695    Mitchel    Shields    bret@barrows.io    \N    Malaysia    Amparoton    970 Blick Club    95994-1345    Wisconsin    2016-09-26 08:32:10.357836    2016-10-14 13:02:27.184555        \N    \N    \N    0    \N    \N    \N    \N    male
10696    Sven    Jones    velva@okuneva.org    \N    Kyrgyz Republic    Linaville    3227 Andres Club    78115    Illinois    2016-07-29 21:21:41.528741    2016-10-14 13:02:27.188333        \N    \N    \N    0    \N    \N    \N    \N    male
10697    Ludie    Hauck    leslie@bergnaum.net    \N    Gabon    Port Rachelleton    72192 Champlin Stravenue    70511-4191    Minnesota    2016-08-17 20:27:22.772936    2016-10-14 13:02:27.191613        \N    \N    \N    0    \N    \N    \N    \N    male
10698    Margarita    Hayes    jeffrey@swaniawskibogan.net    \N    Netherlands Antilles    Alessiachester    3833 MacGyver Neck    87580-6806    Missouri    2016-06-26 14:11:31.317986    2016-10-14 13:02:27.194818        \N    \N    \N    0    \N    \N    \N    \N    male
10699    Giovani    Mills    scotty@lesch.com    \N    Italy    Wilfredport    9332 Lueilwitz Shoals    81988-2489    Wyoming    2016-09-14 21:28:21.618945    2016-10-14 13:02:27.197756        \N    \N    \N    0    \N    \N    \N    \N    female
10700    Stefanie    Adams    magdalen_crona@kaulke.info    \N    Taiwan    West Crystal    1984 Daugherty Lodge    72789    Colorado    2016-07-17 23:27:28.971326    2016-10-14 13:02:27.201335        \N    \N    \N    0    \N    \N    \N    \N    male
10701    Gilda    Roob    angela@goldner.info    \N    Azerbaijan    Port Aubree    337 Meggie Plains    72446    New York    2016-07-06 07:18:58.974743    2016-10-14 13:02:27.204668        \N    \N    \N    0    \N    \N    \N    \N    female
10702    Sierra    Upton    vernon_zemlak@daugherty.biz    \N    Andorra    New Wilber    58144 Freddie Inlet    27713    Texas    2016-09-24 09:52:50.148723    2016-10-14 13:02:27.209076        \N    \N    \N    0    \N    \N    \N    \N    male
10703    Adalberto    Hettinger    caesar@quitzon.co    \N    Albania    Lake Cecilton    9137 Steuber Inlet    88519    Indiana    2016-07-17 17:03:31.403512    2016-10-14 13:02:27.213257        \N    \N    \N    0    \N    \N    \N    \N    male
10704    Breana    McClure    raina@haag.org    \N    Turkey    Caitlynton    1588 Boyle Square    98059-7478    North Dakota    2016-08-10 02:33:51.243383    2016-10-14 13:02:27.217638        \N    \N    \N    0    \N    \N    \N    \N    male
10705    Chadrick    Murazik    junius_wunsch@kub.org    \N    Tunisia    Hammesborough    193 Pouros Alley    27338-6866    Alabama    2016-08-21 22:10:50.812139    2016-10-14 13:02:27.222052        \N    \N    \N    0    \N    \N    \N    \N    female
10706    Maxwell    Ledner    mandy.lebsack@stehrabshire.biz    \N    Ethiopia    New Retta    4512 Wisoky Loop    25662    Arizona    2016-08-15 20:45:24.387975    2016-10-14 13:02:27.225473        \N    \N    \N    0    \N    \N    \N    \N    female
10707    Cristopher    Wilkinson    dwight.parker@westvon.io    \N    Saint Martin    Brekkefort    121 Orland Crossroad    83117-4848    Oklahoma    2016-06-24 08:08:08.762617    2016-10-14 13:02:27.228687        \N    \N    \N    0    \N    \N    \N    \N    male
10708    Emanuel    Gleichner    jerrell@quigleystark.io    \N    Senegal    Port Scarlett    14320 Nova Lodge    34651    Arizona    2016-09-17 03:31:12.021857    2016-10-14 13:02:27.232227        \N    \N    \N    0    \N    \N    \N    \N    male
10709    Michaela    Gottlieb    hilario@pricejones.org    \N    San Marino    South Gaetanostad    2735 Kerluke Divide    69091    South Dakota    2016-09-25 17:40:02.784931    2016-10-14 13:02:27.235454        \N    \N    \N    0    \N    \N    \N    \N    male
10710    Elroy    Collier    may_schmitt@anderson.org    \N    Indonesia    Clarabelleburgh    943 Candice Ridge    33278    Michigan    2016-07-02 05:44:19.847386    2016-10-14 13:02:27.238597        \N    \N    \N    0    \N    \N    \N    \N    male
10711    Gina    Huel    bethel@fisher.co    \N    Reunion    Port Elwyntown    617 Modesto Roads    80109-0644    Connecticut    2016-06-29 11:45:09.984582    2016-10-14 13:02:27.241652        \N    \N    \N    0    \N    \N    \N    \N    male
10712    Rickey    O'Reilly    lilliana.sauer@ankundinggoyette.com    \N    Benin    East Adahmouth    4372 Cole Wells    25946-7296    Arizona    2016-07-03 02:48:36.614442    2016-10-14 13:02:27.244865        \N    \N    \N    0    \N    \N    \N    \N    male
10713    Brant    Greenholt    ricardo@conroydouglas.biz    \N    Colombia    Wisokyburgh    997 Elfrieda Walks    65945-5089    North Carolina    2016-09-28 23:50:43.6381    2016-10-14 13:02:27.247956        \N    \N    \N    0    \N    \N    \N    \N    female
10714    Antonio    McKenzie    noemie@carroll.com    \N    Virgin Islands, U.S.    Lubowitztown    449 Armstrong Circles    22999    Virginia    2016-07-15 00:26:17.146121    2016-10-14 13:02:27.251121        \N    \N    \N    0    \N    \N    \N    \N    female
10715    Violette    Walsh    larry@baileykub.co    \N    Liberia    New Devyn    44547 Clyde Lane    81974    Washington    2016-07-25 01:22:46.587195    2016-10-14 13:02:27.254059        \N    \N    \N    0    \N    \N    \N    \N    female
10716    Osborne    Carter    orland@gleasonarmstrong.co    \N    Cayman Islands    New Rachelfort    27627 Marjorie Views    21000    Kentucky    2016-08-10 17:13:51.50539    2016-10-14 13:02:27.257235        \N    \N    \N    0    \N    \N    \N    \N    male
10717    Willy    Hegmann    xzavier.farrell@oconner.org    \N    Faroe Islands    North Misael    50309 Ziemann Forge    44409-6690    Iowa    2016-08-07 11:38:18.625304    2016-10-14 13:02:27.260627        \N    \N    \N    0    \N    \N    \N    \N    male
10718    Franz    Wunsch    catharine@parkermann.co    \N    Guam    Connellybury    501 Grimes Ways    55591    Maine    2016-09-06 09:13:02.999887    2016-10-14 13:02:27.264095        \N    \N    \N    0    \N    \N    \N    \N    male
10719    Gene    Wehner    jewel.mante@hauckherman.biz    \N    Palestinian Territory    West Halieton    48379 Virginie Squares    24023-7021    Minnesota    2016-08-13 23:41:28.746441    2016-10-14 13:02:27.267252        \N    \N    \N    0    \N    \N    \N    \N    female
10720    Velma    Bahringer    madge@lindgrengrant.org    \N    Guam    Rudolphport    8737 Albert Spur    40416-5298    Tennessee    2016-07-31 19:33:27.980399    2016-10-14 13:02:27.270775        \N    \N    \N    0    \N    \N    \N    \N    male
10721    Dewayne    Kreiger    guiseppe.wyman@block.co    \N    Hong Kong    Treverville    813 Roberts Alley    60761-5687    Wisconsin    2016-07-20 09:53:05.059924    2016-10-14 13:02:27.274441        \N    \N    \N    0    \N    \N    \N    \N    female
10722    Eloy    Quigley    ed@mckenziemertz.co    \N    Pakistan    Cummeratashire    37024 Ashly Shoal    19068    Michigan    2016-08-29 03:30:48.396949    2016-10-14 13:02:27.277909        \N    \N    \N    0    \N    \N    \N    \N    female
10723    Luther    Kovacek    raleigh_blick@ward.biz    \N    Puerto Rico    Ericashire    37184 Waylon Squares    20656-4842    Arkansas    2016-07-30 02:50:06.546693    2016-10-14 13:02:27.281447        \N    \N    \N    0    \N    \N    \N    \N    male
10724    Larue    O'Hara    bernard@blandalarkin.net    \N    Congo    Langmouth    8331 Reichert Underpass    70869    Maine    2016-07-08 18:18:46.424379    2016-10-14 13:02:27.284926        \N    \N    \N    0    \N    \N    \N    \N    female
10727    Shayne    Wiegand    jimmy@kilbackbarrows.info    \N    Egypt    Treton    813 Emmerich Square    17022-4133    Kansas    2016-09-10 05:58:34.206778    2016-10-14 13:02:27.288131        \N    \N    \N    0    \N    \N    \N    \N    female
10728    Marilou    Roberts    helga.kautzer@mertz.info    \N    Congo    East Shaniahaven    5189 Annamarie Meadows    56494-4109    Georgia    2016-07-25 19:04:44.949071    2016-10-14 13:02:27.291438        \N    \N    \N    0    \N    \N    \N    \N    male
10729    Lesley    Kirlin    jarod_weinat@sengerabbott.info    \N    Falkland Islands (Malvinas)    East Shyannefurt    5188 Bosco Cape    13524-8022    California    2016-08-30 04:26:54.717059    2016-10-14 13:02:27.294779        \N    \N    \N    0    \N    \N    \N    \N    female
10730    Mario    Jacobson    eric.altenwerth@harberschneider.co    \N    Russian Federation    Kameronberg    464 Lexie Trafficway    98028-7685    Washington    2016-07-21 22:53:46.5518    2016-10-14 13:02:27.297851        \N    \N    \N    0    \N    \N    \N    \N    male
10731    Lacey    Moore    kelvin@bechtelarbogisich.org    \N    Italy    West Johathan    1752 Conn Mountain    88435    Massachusetts    2016-07-29 05:49:25.653238    2016-10-14 13:02:27.30461        \N    \N    \N    0    \N    \N    \N    \N    female
10732    Lesley    Shields    olaf_cain@casper.net    \N    Portugal    Hermistonfurt    67357 Clarabelle Orchard    88818-4651    Florida    2016-07-12 13:30:44.618825    2016-10-14 13:02:27.308187        \N    \N    \N    0    \N    \N    \N    \N    male
10733    Bill    Pacocha    karelle_schaden@hackettsmith.co    \N    Saint Barthelemy    Corinemouth    39689 Corrine Trafficway    66158    Indiana    2016-09-18 11:58:37.437916    2016-10-14 13:02:27.311585        \N    \N    \N    0    \N    \N    \N    \N    male
10734    Elyssa    Goodwin    beth.stiedemann@smith.org    \N    Italy    West Josh    877 Hermiston Isle    53781-6423    Rhode Island    2016-06-22 17:21:47.841815    2016-10-14 13:02:27.316295        \N    \N    \N    0    \N    \N    \N    \N    female
10735    Jackeline    Herzog    renee@marks.info    \N    Morocco    Port Priscilla    344 Rosemarie Inlet    38240    California    2016-07-29 15:37:51.226016    2016-10-14 13:02:27.32028        \N    \N    \N    0    \N    \N    \N    \N    female
10736    Pansy    Deckow    clyde@gutmannbahringer.biz    \N    Bangladesh    New Matteo    763 Kovacek Shoal    77198-6181    Oregon    2016-09-10 17:32:11.925855    2016-10-14 13:02:27.323585        \N    \N    \N    0    \N    \N    \N    \N    male
10737    Cortez    Graham    pasquale@schulist.co    \N    Bolivia    Kertzmannshire    626 Eliza Tunnel    45226-1633    Pennsylvania    2016-08-05 11:36:43.42884    2016-10-14 13:02:27.326889        \N    \N    \N    0    \N    \N    \N    \N    female
10738    Amaya    Pouros    dwight_bruen@okeefe.net    \N    Sri Lanka    Port Justus    740 Eve Mount    86723-6153    Connecticut    2016-08-03 15:45:33.829272    2016-10-14 13:02:27.330085        \N    \N    \N    0    \N    \N    \N    \N    male
10739    Magali    Pfeffer    boyd.terry@koelpinconsidine.com    \N    Virgin Islands, British    West Rowlandberg    385 Trystan Summit    74209    Kentucky    2016-07-29 17:21:00.817839    2016-10-14 13:02:27.334114        \N    \N    \N    0    \N    \N    \N    \N    male
10740    Merle    Runolfsson    simone@waelchi.name    \N    Mongolia    Hermanport    24477 Junius Manor    26849    Georgia    2016-09-26 03:48:28.321333    2016-10-14 13:02:27.338706        \N    \N    \N    0    \N    \N    \N    \N    female
10741    Rhea    Aufderhar    laura@kaulke.com    \N    Saint Lucia    North Madison    598 Purdy Square    92799    Nebraska    2016-08-17 10:42:39.357469    2016-10-14 13:02:27.342774        \N    \N    \N    0    \N    \N    \N    \N    female
10742    Maud    Gerhold    kayden_kulas@prohaska.co    \N    Poland    Lysannemouth    107 Dorris Parkway    68930-3569    Maryland    2016-08-21 15:48:48.578824    2016-10-14 13:02:27.346031        \N    \N    \N    0    \N    \N    \N    \N    male
10743    Leonie    Haag    domenic@mcclurestanton.info    \N    Iraq    Kalestad    233 Rhoda Stream    75643    Montana    2016-08-29 15:07:02.195468    2016-10-14 13:02:27.349812        \N    \N    \N    0    \N    \N    \N    \N    female
10744    Velda    Cremin    brent.carter@mitchell.org    \N    Tanzania    Rebekaview    947 Nicolas Mall    11830    Minnesota    2016-06-27 00:16:14.02453    2016-10-14 13:02:27.354277        \N    \N    \N    0    \N    \N    \N    \N    female
10745    Juliana    Rice    araceli.eichmann@witting.info    \N    Reunion    Meghanchester    8579 Bernier Springs    70278-4548    Massachusetts    2016-07-20 07:31:40.232636    2016-10-14 13:02:27.357708        \N    \N    \N    0    \N    \N    \N    \N    female
10746    Pattie    Boehm    isai@reynoldmitham.name    \N    United Kingdom    Carrollbury    5001 Osinski Knoll    83066-2355    Kentucky    2016-08-10 12:27:24.167925    2016-10-14 13:02:27.361885        \N    \N    \N    0    \N    \N    \N    \N    female
10747    Ernestina    Mann    alvera@altenwerth.info    \N    Belgium    North Andreanne    931 Streich Center    63012    South Dakota    2016-09-29 05:15:13.617912    2016-10-14 13:02:27.365028        \N    \N    \N    0    \N    \N    \N    \N    male
10748    Lawrence    Gusikowski    gideon.abbott@okunevamoore.co    \N    Ukraine    Blandamouth    898 Tyshawn Villages    28882    Maine    2016-07-01 19:32:56.171056    2016-10-14 13:02:27.370972        \N    \N    \N    0    \N    \N    \N    \N    female
10750    Garnett    Kovacek    bridgette@koelpin.org    \N    Martinique    Lake Jeramie    504 Conroy Forks    60210-6880    Idaho    2016-06-22 21:47:22.210383    2016-10-14 13:02:27.37533        \N    \N    \N    0    \N    \N    \N    \N    female
10751    Idell    VonRueden    walton@brakusrowe.net    \N    Swaziland    North Naomitown    1794 Powlowski Square    48675-9722    Arkansas    2016-07-28 18:21:03.009009    2016-10-14 13:02:27.379023        \N    \N    \N    0    \N    \N    \N    \N    male
10752    Leann    Goyette    curtis@hahn.net    \N    Lesotho    Kiehnmouth    927 Uriel Manors    73490-9558    Arizona    2016-07-05 12:26:00.585473    2016-10-14 13:02:27.383175        \N    \N    \N    0    \N    \N    \N    \N    female
10753    Camron    Carroll    herminia.abshire@rogahn.io    \N    Honduras    Robertatown    748 Tillman Stravenue    98364    Massachusetts    2016-08-09 15:43:52.772233    2016-10-14 13:02:27.387412        \N    \N    \N    0    \N    \N    \N    \N    male
10754    Bell    Kertzmann    stephen.reichel@orn.com    \N    Niger    North Bennie    92314 Effertz Inlet    52838    Utah    2016-07-27 19:55:55.331452    2016-10-14 13:02:27.39164        \N    \N    \N    0    \N    \N    \N    \N    female
10755    Agnes    Botsford    harley@marquardt.info    \N    Malawi    New Vida    381 Christiansen Fork    54054    Vermont    2016-08-07 20:52:01.822614    2016-10-14 13:02:27.39835        \N    \N    \N    0    \N    \N    \N    \N    female
10756    Yvonne    Watsica    keeley@bartell.io    \N    Guadeloupe    Sauerside    45130 McClure Crest    65376    Mississippi    2016-09-25 13:32:25.284059    2016-10-14 13:02:27.403027        \N    \N    \N    0    \N    \N    \N    \N    female
10757    Olin    Kautzer    stephania@stanton.name    \N    Hungary    South Alexandrineville    8604 Daisy Place    13182-8797    Nebraska    2016-08-17 18:25:22.266743    2016-10-14 13:02:27.407121        \N    \N    \N    0    \N    \N    \N    \N    female
10759    Arne    Skiles    alysa.aufderhar@leannon.name    \N    Faroe Islands    Krisshire    2322 Wehner Mission    87004    New Hampshire    2016-09-08 06:04:02.306018    2016-10-14 13:02:27.411281        \N    \N    \N    0    \N    \N    \N    \N    male
10760    Webster    Koss    geovany@wilkinsoncorkery.net    \N    Lithuania    Wilsontown    33611 Jaskolski Lakes    45669    New Mexico    2016-08-21 04:19:44.6467    2016-10-14 13:02:27.415307        \N    \N    \N    0    \N    \N    \N    \N    female
10761    Kristina    Bernier    reuben@borer.net    \N    Uruguay    South Lindsaybury    2997 Keeling Lane    22136-9258    North Carolina    2016-09-22 21:20:45.068448    2016-10-14 13:02:27.419084        \N    \N    \N    0    \N    \N    \N    \N    female
10762    Adrien    Wintheiser    newton_walker@adams.biz    \N    Indonesia    Norbertchester    6848 Myrtie Via    14230    West Virginia    2016-07-05 17:09:16.294801    2016-10-14 13:02:27.422836        \N    \N    \N    0    \N    \N    \N    \N    female
10763    Chanelle    Jaskolski    derek@ko.info    \N    Dominican Republic    Runolfsdottirstad    61972 Laurel Mission    90645-0566    Arizona    2016-08-01 10:35:28.398074    2016-10-14 13:02:27.427082        \N    \N    \N    0    \N    \N    \N    \N    female
10764    Garth    Smith    thelma.gusikowski@carter.name    \N    Grenada    Domenicmouth    69068 Uriel Unions    22041    Pennsylvania    2016-06-22 09:45:52.935746    2016-10-14 13:02:27.434201        \N    \N    \N    0    \N    \N    \N    \N    male
10765    Amara    Wolf    jimmy.shields@schumm.org    \N    Haiti    Generalport    72277 Beau Drive    51420-1333    Kentucky    2016-06-28 19:43:25.04057    2016-10-14 13:02:27.440979        \N    \N    \N    0    \N    \N    \N    \N    male
10766    Lavon    Jast    hattie_schaefer@sanfordkuvalis.org    \N    Saudi Arabia    Kulasshire    6598 Kameron Passage    69775-5865    Connecticut    2016-09-26 17:57:20.714372    2016-10-14 13:02:27.447851        \N    \N    \N    0    \N    \N    \N    \N    female
10767    Austen    Heller    lavon@legroswuckert.info    \N    Libyan Arab Jamahiriya    Swaniawskishire    495 Klocko Dam    73128    New York    2016-08-24 00:32:06.96271    2016-10-14 13:02:27.452332        \N    \N    \N    0    \N    \N    \N    \N    male
10768    Meaghan    Fahey    olaf@bechtelar.io    \N    Sweden    Johnsonmouth    95364 Thiel Port    25024    West Virginia    2016-06-25 11:19:47.173406    2016-10-14 13:02:27.457858        \N    \N    \N    0    \N    \N    \N    \N    male
10769    Otis    Cummerata    connor@swaniawski.name    \N    Algeria    Townebury    7359 Audra Harbor    68111    Maine    2016-09-02 14:27:26.569635    2016-10-14 13:02:27.461975        \N    \N    \N    0    \N    \N    \N    \N    female
10770    Eula    Smith    marlon@leffler.biz    \N    United States of America    Donnellyberg    8904 Pfeffer Via    80122-7002    Oregon    2016-07-16 03:26:24.393174    2016-10-14 13:02:27.47076        \N    \N    \N    0    \N    \N    \N    \N    male
10771    Kendall    Rohan    leonard@balistreri.com    \N    Montenegro    Ralphport    7595 Williamson Run    97578-3902    New Jersey    2016-08-02 22:23:54.55936    2016-10-14 13:02:27.47507        \N    \N    \N    0    \N    \N    \N    \N    male
10772    Efrain    Kshlerin    claud@schumm.net    \N    Nepal    East Gunnerport    6404 Schmidt Point    65295-5465    Arizona    2016-06-30 22:16:48.917475    2016-10-14 13:02:27.478708        \N    \N    \N    0    \N    \N    \N    \N    male
10773    Narciso    Lang    florian@konopelski.info    \N    Greece    Hartmannhaven    116 Doyle Walks    18473-1800    North Carolina    2016-08-12 07:56:51.151026    2016-10-14 13:02:27.483062        \N    \N    \N    0    \N    \N    \N    \N    female
10774    Irving    Balistreri    jorge@miller.net    \N    Heard Island and McDonald Islands    South Chandlerhaven    4714 Kunde Court    46142    Michigan    2016-09-23 13:48:24.58427    2016-10-14 13:02:27.489838        \N    \N    \N    0    \N    \N    \N    \N    male
10775    Sydney    Herman    cale_mckenzie@wintheiser.org    \N    Ecuador    McLaughlinberg    619 Dwight Square    65156    Kansas    2016-07-27 10:46:04.403764    2016-10-14 13:02:27.493631        \N    \N    \N    0    \N    \N    \N    \N    female
10776    Anahi    Hermann    cheyenne_ankunding@schimmelupton.net    \N    Kazakhstan    South Erichberg    7958 Hahn Locks    33526    Kansas    2016-07-12 13:04:16.086928    2016-10-14 13:02:27.499388        \N    \N    \N    0    \N    \N    \N    \N    male
10777    Albina    Dibbert    adelbert@reinger.co    \N    Trinidad and Tobago    East Coralie    34733 Lula Port    94689    Maine    2016-08-15 13:22:11.600411    2016-10-14 13:02:27.503409        \N    \N    \N    0    \N    \N    \N    \N    female
10778    Anthony    Metz    ethan@hudson.co    \N    Bahrain    Port Edmondview    60518 Schulist Centers    49164-8331    Oregon    2016-08-11 02:03:07.623904    2016-10-14 13:02:27.506966        \N    \N    \N    0    \N    \N    \N    \N    male
10779    Everardo    Mann    felix.gislason@ullrich.info    \N    Malta    Marianamouth    2976 Rachelle Court    38673    New Mexico    2016-06-23 01:43:13.953092    2016-10-14 13:02:27.51095        \N    \N    \N    0    \N    \N    \N    \N    male
10780    Oswald    Will    shannon.larkin@cruickshank.com    \N    Norfolk Island    Jerdeville    508 Schiller Terrace    27528-8565    Washington    2016-07-30 01:53:27.039626    2016-10-14 13:02:27.514924        \N    \N    \N    0    \N    \N    \N    \N    female
10781    Oliver    Ullrich    destany@terryhalvorson.com    \N    Trinidad and Tobago    Port Eltaland    16519 Wiegand Shores    93576    New York    2016-08-11 20:59:57.057852    2016-10-14 13:02:27.518653        \N    \N    \N    0    \N    \N    \N    \N    female
10782    Linnie    Hills    katlynn_king@paucekstehr.name    \N    Kuwait    New Tedfurt    62864 Laurianne Drive    27448-1576    West Virginia    2016-07-08 18:52:34.571107    2016-10-14 13:02:27.522895        \N    \N    \N    0    \N    \N    \N    \N    male
10783    Cleta    Bruen    domingo@kerlukemueller.org    \N    United Arab Emirates    West Hildegardton    32743 Welch Expressway    66703    Wisconsin    2016-08-18 06:18:21.269951    2016-10-14 13:02:27.526069        \N    \N    \N    0    \N    \N    \N    \N    male
10784    Jevon    Jerde    aubree.bogisich@bode.org    \N    Russian Federation    Lake Felicity    82560 Giuseppe Meadows    79392    Washington    2016-08-29 17:21:49.159554    2016-10-14 13:02:27.529716        \N    \N    \N    0    \N    \N    \N    \N    male
10785    Taylor    Russel    jamal@wuckert.biz    \N    Myanmar    East Reina    83982 Von Bridge    84952-7697    Illinois    2016-07-30 10:21:45.595136    2016-10-14 13:02:27.533629        \N    \N    \N    0    \N    \N    \N    \N    male
10786    Reginald    Collier    nadia@dubuque.info    \N    France    Lake Ramonmouth    6330 Keeley Canyon    92128-5345    Nevada    2016-09-07 01:09:54.866994    2016-10-14 13:02:27.538538        \N    \N    \N    0    \N    \N    \N    \N    female
10788    Yvonne    Carter    adolf@brakus.info    \N    Isle of Man    Kunzeberg    471 Cormier Crest    44928-7609    Maryland    2016-07-30 07:28:07.23003    2016-10-14 13:02:27.542826        \N    \N    \N    0    \N    \N    \N    \N    female
10789    Vicente    Gutkowski    leola_toy@denesiknikolaus.name    \N    Iran    East Vito    7643 Gleichner Grove    75059-0861    Oregon    2016-07-08 04:46:16.046636    2016-10-14 13:02:27.54768        \N    \N    \N    0    \N    \N    \N    \N    male
10790    Nettie    Kunde    isaac_cummerata@breitenberg.name    \N    Saint Lucia    South Lessieport    282 Frieda Springs    21092-4296    Wyoming    2016-08-20 15:12:49.490836    2016-10-14 13:02:27.550965        \N    \N    \N    0    \N    \N    \N    \N    female
10791    Nina    Cronin    jesus.orn@bergstromwilkinson.name    \N    Tuvalu    West Ashlynnfurt    399 Kuvalis Plain    61157    Tennessee    2016-09-16 02:47:47.689604    2016-10-14 13:02:27.554338        \N    \N    \N    0    \N    \N    \N    \N    female
10792    Zena    Emmerich    rocky@deckow.net    \N    China    Lake Haleyshire    5983 Green Shores    19227    New Mexico    2016-07-20 16:27:20.299746    2016-10-14 13:02:27.558643        \N    \N    \N    0    \N    \N    \N    \N    male
10793    Mara    Labadie    jimmie@wyman.biz    \N    China    Littelton    73802 Reilly Haven    52953    Washington    2016-09-09 20:36:29.152373    2016-10-14 13:02:27.562167        \N    \N    \N    0    \N    \N    \N    \N    female
10794    Judge    Mraz    efrain@hudsonkirlin.info    \N    Sierra Leone    Elmiratown    9634 Trudie Ridge    67360    Maryland    2016-08-29 13:13:21.732474    2016-10-14 13:02:27.566089        \N    \N    \N    0    \N    \N    \N    \N    male
10795    Francisco    Schultz    pattie.grant@schmeler.io    \N    San Marino    Port Lelandview    806 Wilkinson Locks    20813-8506    Louisiana    2016-07-21 08:47:59.631254    2016-10-14 13:02:27.576874        \N    \N    \N    0    \N    \N    \N    \N    female
10796    Foster    O'Kon    patience@mayer.biz    \N    Nicaragua    Lake Esteban    9699 Roberts Well    91317    Indiana    2016-07-09 21:26:44.522895    2016-10-14 13:02:27.583016        \N    \N    \N    0    \N    \N    \N    \N    female
10797    Eino    White    keon_heidenreich@bechtelarrenner.net    \N    Brazil    South Tyrel    494 Price Shore    80266-9010    North Dakota    2016-06-28 11:10:36.578734    2016-10-14 13:02:27.586243        \N    \N    \N    0    \N    \N    \N    \N    female
10798    Anthony    Murphy    melisa@mertz.biz    \N    Burkina Faso    North Hadleyview    2665 Pascale Vista    12914    Washington    2016-07-31 02:20:30.471716    2016-10-14 13:02:27.589604        \N    \N    \N    0    \N    \N    \N    \N    female
10799    Kianna    Bergstrom    christina@raynor.com    \N    Argentina    Daryltown    1500 Hugh Shoal    94781    Illinois    2016-07-08 05:17:59.518131    2016-10-14 13:02:27.592598        \N    \N    \N    0    \N    \N    \N    \N    male
10800    Brannon    Abernathy    della@reichel.io    \N    Lao People's Democratic Republic    East Sashafurt    8278 Samir Junctions    12782-5454    Indiana    2016-07-17 04:51:44.830733    2016-10-14 13:02:27.596101        \N    \N    \N    0    \N    \N    \N    \N    male
10801    Nayeli    Farrell    leilani.ohara@becker.co    \N    Saint Barthelemy    Watersport    95061 Stephany Wall    65352-1695    New Mexico    2016-07-17 07:11:12.306431    2016-10-14 13:02:27.600115        \N    \N    \N    0    \N    \N    \N    \N    female
10802    Duncan    Nicolas    logan_howell@oconnerkirlin.co    \N    Central African Republic    East Elwinstad    35757 Kayleigh Manors    52244-4498    Tennessee    2016-06-24 09:53:30.920557    2016-10-14 13:02:27.605536        \N    \N    \N    0    \N    \N    \N    \N    male
10803    Carolina    Schumm    leola.romaguera@block.info    \N    Ukraine    North Easterside    650 Francesco Row    48299-4981    West Virginia    2016-08-10 14:54:53.046313    2016-10-14 13:02:27.617801        \N    \N    \N    0    \N    \N    \N    \N    female
10804    Reba    Balistreri    luna@koepp.biz    \N    South Georgia and the South Sandwich Islands    Reynoldberg    39570 Hermiston Way    81733    Idaho    2016-09-07 17:48:09.66379    2016-10-14 13:02:27.63303        \N    \N    \N    0    \N    \N    \N    \N    female
10805    Alvera    Schuppe    fern@auer.co    \N    Cuba    New Sierraburgh    57719 Jannie Views    75752    Pennsylvania    2016-09-24 18:05:16.612113    2016-10-14 13:02:27.641588        \N    \N    \N    0    \N    \N    \N    \N    female
10806    Harold    Reinger    mabelle@kutchdaugherty.com    \N    Peru    Port Clotildestad    7278 Yundt Causeway    71272    South Dakota    2016-09-13 20:41:50.387822    2016-10-14 13:02:27.645638        \N    \N    \N    0    \N    \N    \N    \N    male
10807    Bennie    Rogahn    darrin.harber@gleason.name    \N    Svalbard & Jan Mayen Islands    Ferntown    1386 Antone Rue    31408-3938    Wisconsin    2016-07-23 22:01:35.606827    2016-10-14 13:02:27.649216        \N    \N    \N    0    \N    \N    \N    \N    male
10808    Janessa    Prohaska    marshall.moen@swift.org    \N    Jordan    Port Kaelaborough    85672 Vandervort Inlet    17003-7303    New York    2016-09-16 17:48:20.486754    2016-10-14 13:02:27.652732        \N    \N    \N    0    \N    \N    \N    \N    female
10809    Maybell    Champlin    fern@torphartmann.net    \N    Panama    Tyreechester    9522 Mark Rapids    31884    Illinois    2016-09-06 16:36:31.501743    2016-10-14 13:02:27.660085        \N    \N    \N    0    \N    \N    \N    \N    female
10810    Thea    Larkin    elaina_moore@heelbatz.org    \N    Azerbaijan    South Terrill    78774 Parker Dale    51815-4006    South Dakota    2016-08-13 15:08:00.145684    2016-10-14 13:02:27.663581        \N    \N    \N    0    \N    \N    \N    \N    female
10908    Luisa    Dietrich    zola@willms.io    \N    Syrian Arab Republic    New Cameron    872 Angel Roads    17326    Tennessee    2016-09-22 05:37:19.882167    2016-10-14 13:02:27.667299        \N    \N    \N    0    \N    \N    \N    \N    male
10811    Cameron    Runte    ignacio_schmitt@paucek.co    \N    Estonia    New Maximillianstad    279 Effertz Road    72561-1431    Wyoming    2016-06-25 16:04:46.272742    2016-10-14 13:02:27.670834        \N    \N    \N    0    \N    \N    \N    \N    female
10812    Virgie    Stiedemann    aisha.rodriguez@keeling.info    \N    Mali    East Tyresebury    1417 Jillian Forge    17243    Wyoming    2016-08-24 13:22:44.317066    2016-10-14 13:02:27.674597        \N    \N    \N    0    \N    \N    \N    \N    male
10813    Kristina    Crooks    lisa.beier@sanford.co    \N    Cyprus    South Heathertown    79992 Jorge Harbor    41219-3678    New Mexico    2016-09-18 04:50:18.795992    2016-10-14 13:02:27.678267        \N    \N    \N    0    \N    \N    \N    \N    female
10814    Brenna    Kertzmann    kameron.predovic@schupperutherford.biz    \N    Argentina    Port Francesco    537 Torphy Coves    18520    Nevada    2016-09-20 16:42:12.923288    2016-10-14 13:02:27.683799        \N    \N    \N    0    \N    \N    \N    \N    female
10815    Carolanne    Brakus    milton.yundt@mann.io    \N    Sao Tome and Principe    South Hank    91009 Loraine Tunnel    85967-4508    Indiana    2016-07-09 21:52:48.656106    2016-10-14 13:02:27.68944        \N    \N    \N    0    \N    \N    \N    \N    male
10816    Anais    McKenzie    bradley.hauck@gradywehner.name    \N    Tanzania    New Mireya    7174 Adele Manors    39500-3960    North Carolina    2016-09-05 23:25:05.137387    2016-10-14 13:02:27.70409        \N    \N    \N    0    \N    \N    \N    \N    female
10817    Rosalia    Adams    marty_oberbrunner@parker.net    \N    Liechtenstein    Nehaburgh    700 Balistreri Expressway    17456-1706    Missouri    2016-08-09 14:36:49.17844    2016-10-14 13:02:27.712296        \N    \N    \N    0    \N    \N    \N    \N    female
10818    Lauretta    Murphy    elvis.boyer@stiedemannbahringer.biz    \N    Sri Lanka    Corkeryport    828 Adriel Vista    46982-2547    Vermont    2016-09-06 01:50:07.804884    2016-10-14 13:02:27.71668        \N    \N    \N    0    \N    \N    \N    \N    female
10819    Cleve    Greenholt    margaret.raynor@littlemuller.io    \N    Mayotte    New Dejuan    5066 Bethel Estate    11881-2259    Connecticut    2016-09-07 20:37:51.403422    2016-10-14 13:02:27.721403        \N    \N    \N    0    \N    \N    \N    \N    male
10820    Wilbert    Cartwright    natalia.waelchi@auer.io    \N    Vietnam    Elyseview    58389 Green Walk    87749-4886    Missouri    2016-08-27 21:37:01.395669    2016-10-14 13:02:27.725574        \N    \N    \N    0    \N    \N    \N    \N    female
10821    Marisol    Torp    rickey.gleichner@marks.biz    \N    Haiti    Port Marafort    532 Afton Knolls    91840    Maine    2016-07-19 03:21:09.626469    2016-10-14 13:02:27.729713        \N    \N    \N    0    \N    \N    \N    \N    female
10822    Rogers    Bernier    selina_jast@zemlak.info    \N    Niue    New Minatown    361 Wiegand Extensions    73147-4628    West Virginia    2016-08-01 08:19:23.126003    2016-10-14 13:02:27.733477        \N    \N    \N    0    \N    \N    \N    \N    female
10823    Pearlie    Dooley    randy@ankundinglockman.com    \N    Kenya    Shadton    34444 Faye Burgs    70279    New Hampshire    2016-08-19 18:45:19.179853    2016-10-14 13:02:27.737041        \N    \N    \N    0    \N    \N    \N    \N    male
10824    Bethel    Lockman    makenzie@dietrich.org    \N    Guyana    West Sydniberg    6693 Bartell Parkway    12535    Massachusetts    2016-06-25 15:03:15.554461    2016-10-14 13:02:27.740243        \N    \N    \N    0    \N    \N    \N    \N    female
10825    Vance    Fadel    isaiah@dubuqueohara.name    \N    Macao    Quitzonview    381 Johnson Port    73979    Alaska    2016-07-14 08:19:24.12012    2016-10-14 13:02:27.743716        \N    \N    \N    0    \N    \N    \N    \N    male
10826    Freeman    Stark    jaqueline.flatley@hueljohnson.biz    \N    Kuwait    Morissettemouth    4546 Monica Motorway    16084-3766    Hawaii    2016-09-10 10:58:38.656006    2016-10-14 13:02:27.747333        \N    \N    \N    0    \N    \N    \N    \N    female
10827    Maribel    Fahey    michale_walsh@moriette.com    \N    Western Sahara    Aufderharview    34536 Marguerite Crossing    82690    New Jersey    2016-08-21 23:26:37.622963    2016-10-14 13:02:27.751236        \N    \N    \N    0    \N    \N    \N    \N    female
10828    Braxton    Erdman    cesar@von.net    \N    France    West Yasminchester    13377 Strosin Valley    79362    Maryland    2016-08-27 12:11:57.965621    2016-10-14 13:02:27.754535        \N    \N    \N    0    \N    \N    \N    \N    female
10829    Briana    Hammes    natalia@sanfordstracke.name    \N    Botswana    Romagueraborough    56639 Justine Cove    46799-1126    Illinois    2016-07-14 00:01:40.169618    2016-10-14 13:02:27.758428        \N    \N    \N    0    \N    \N    \N    \N    male
10830    Lea    Nicolas    rhiannon.kunde@daniel.info    \N    United States of America    Graysonberg    7151 Jailyn Prairie    45614-6122    Hawaii    2016-08-02 14:38:17.910253    2016-10-14 13:02:27.761709        \N    \N    \N    0    \N    \N    \N    \N    male
10831    Wilhelmine    Kris    troy_conroy@kohlerhermiston.io    \N    Suriname    East Chadland    5575 Jamir Centers    55526-6551    Nebraska    2016-09-08 22:52:17.469893    2016-10-14 13:02:27.765559        \N    \N    \N    0    \N    \N    \N    \N    male
10832    Macie    Durgan    eveline.weber@rodriguez.info    \N    Iraq    Thoramouth    887 Myrtie Path    90255-2435    Hawaii    2016-09-29 11:49:33.49964    2016-10-14 13:02:27.768863        \N    \N    \N    0    \N    \N    \N    \N    female
10833    Henri    Osinski    loyce.anderson@gutkowski.io    \N    Maldives    West Demondmouth    3077 Missouri Shoal    17032-5182    Maine    2016-08-15 09:20:37.72481    2016-10-14 13:02:27.772085        \N    \N    \N    0    \N    \N    \N    \N    male
10834    Meghan    Marvin    katrine@abernathy.name    \N    Lao People's Democratic Republic    Lake Jerrold    49428 Kiarra Stream    25678-0552    Colorado    2016-08-25 10:49:43.671535    2016-10-14 13:02:27.775464        \N    \N    \N    0    \N    \N    \N    \N    female
10835    Madyson    Runolfsdottir    kyra@walsh.co    \N    Northern Mariana Islands    Norenebury    914 Richie Rapid    54580    Maine    2016-09-07 01:02:53.706654    2016-10-14 13:02:27.778831        \N    \N    \N    0    \N    \N    \N    \N    female
10836    Daniela    Rath    lawrence_medhurst@mccullough.com    \N    Trinidad and Tobago    North Ethel    9711 Mayer Hollow    14010-0354    Indiana    2016-06-23 13:53:04.184643    2016-10-14 13:02:27.782042        \N    \N    \N    0    \N    \N    \N    \N    female
10837    Keshawn    Jones    joesph@mcdermottstokes.biz    \N    Cameroon    West Florine    61040 Williamson Fords    16640-2477    Rhode Island    2016-08-06 04:02:19.902756    2016-10-14 13:02:27.785226        \N    \N    \N    0    \N    \N    \N    \N    female
10838    Shaniya    Crist    guy@jacobsonstoltenberg.org    \N    Senegal    Wisokyland    294 Bednar Plain    41538-7688    Kansas    2016-08-01 06:45:51.926978    2016-10-14 13:02:27.788716        \N    \N    \N    0    \N    \N    \N    \N    female
10839    Dandre    West    rosa@boyle.info    \N    Sweden    South Lindsay    468 Mosciski Lakes    71174-0134    New Mexico    2016-08-13 17:56:09.261763    2016-10-14 13:02:27.792054        \N    \N    \N    0    \N    \N    \N    \N    female
10840    Leonie    Stiedemann    rosamond_weimann@friesenebert.info    \N    Saint Martin    Hilllborough    5690 Selmer Lodge    46354    Vermont    2016-07-28 06:03:30.206653    2016-10-14 13:02:27.795556        \N    \N    \N    0    \N    \N    \N    \N    male
10842    Sidney    Weissnat    freeda_haag@runteziemann.net    \N    Indonesia    West Sheldon    8345 Walsh Creek    68421-8642    Alabama    2016-07-18 03:31:17.504089    2016-10-14 13:02:27.802623        \N    \N    \N    0    \N    \N    \N    \N    male
10843    Leo    Schuster    elton@kunze.io    \N    San Marino    Rohanmouth    5638 Wisozk Forges    49191-1443    Illinois    2016-08-21 01:40:13.536346    2016-10-14 13:02:27.806668        \N    \N    \N    0    \N    \N    \N    \N    female
10844    Alec    Koss    alexandrea@schulist.name    \N    Chad    Lake Dianachester    25249 Erdman Brook    99134    Massachusetts    2016-08-08 22:38:57.324173    2016-10-14 13:02:27.811296        \N    \N    \N    0    \N    \N    \N    \N    male
10845    Vernon    Kulas    idell@fadel.com    \N    Congo    Jerryport    501 Devan Land    36209-0634    Virginia    2016-09-17 19:36:52.113761    2016-10-14 13:02:27.81499        \N    \N    \N    0    \N    \N    \N    \N    female
10846    Elda    Sawayn    cicero@mcglynn.info    \N    Indonesia    Port Joe    4259 Wendy Cape    45512-3506    Illinois    2016-09-22 01:08:12.368093    2016-10-14 13:02:27.818577        \N    \N    \N    0    \N    \N    \N    \N    male
10848    Baron    Nitzsche    viola@towne.info    \N    Tunisia    South Jayson    82282 Vandervort Branch    89888-5835    Kentucky    2016-08-01 09:25:34.861537    2016-10-14 13:02:27.821889        \N    \N    \N    0    \N    \N    \N    \N    female
10849    Chaya    Weimann    glen@langhane.com    \N    Tunisia    Lake Althea    390 Alexandrine Estate    52149-1819    Kentucky    2016-07-26 08:20:00.255704    2016-10-14 13:02:27.825486        \N    \N    \N    0    \N    \N    \N    \N    female
10850    Wendell    Kautzer    gabrielle_beier@stehr.info    \N    Kiribati    East Johannamouth    18860 Kiehn Fort    18760-4667    North Carolina    2016-09-05 12:53:14.736842    2016-10-14 13:02:27.829206        \N    \N    \N    0    \N    \N    \N    \N    male
10851    Chelsey    Wilkinson    rosendo.hudson@breitenbergwilkinson.biz    \N    Greece    Lake Brannonmouth    53157 Birdie Trace    96424    Oregon    2016-09-05 12:20:12.628808    2016-10-14 13:02:27.833201        \N    \N    \N    0    \N    \N    \N    \N    male
10852    Rigoberto    Block    isaac@torphy.name    \N    Sao Tome and Principe    Port Kennedi    695 Sofia Lake    21550    Indiana    2016-07-08 02:24:23.781883    2016-10-14 13:02:27.836687        \N    \N    \N    0    \N    \N    \N    \N    male
10853    Nelda    Weber    colby@bartell.com    \N    Cambodia    New Estrella    33349 Lenny Glen    28815    Maryland    2016-08-20 19:39:20.552364    2016-10-14 13:02:27.840095        \N    \N    \N    0    \N    \N    \N    \N    male
10854    Ray    Nolan    tom@kirlinbarrows.co    \N    Swaziland    Dorisshire    9151 Hoeger Shore    25911-6754    Utah    2016-08-21 13:55:50.964787    2016-10-14 13:02:27.845969        \N    \N    \N    0    \N    \N    \N    \N    female
10855    Linnie    Roob    grover@raynor.org    \N    Venezuela    Heathmouth    62996 Hildegard Island    54488    Arkansas    2016-08-24 08:14:16.50241    2016-10-14 13:02:27.849767        \N    \N    \N    0    \N    \N    \N    \N    female
10856    Joelle    Ziemann    adan_hane@halvorson.co    \N    Belgium    Port Norval    6652 Zoie Branch    47587    North Carolina    2016-08-07 12:51:55.820295    2016-10-14 13:02:27.858219        \N    \N    \N    0    \N    \N    \N    \N    male
10857    Katarina    Morar    maddison@rowekutch.co    \N    New Caledonia    Bahringerchester    1921 Connor Camp    30659    Vermont    2016-09-09 07:04:25.925064    2016-10-14 13:02:27.861982        \N    \N    \N    0    \N    \N    \N    \N    female
10858    Prince    Windler    dorthy.johns@denesik.co    \N    Tokelau    Lake Mikel    2155 Humberto Ways    26789    Iowa    2016-08-12 22:58:05.655047    2016-10-14 13:02:27.865839        \N    \N    \N    0    \N    \N    \N    \N    male
10859    Marisol    Pacocha    ayden@kuhn.name    \N    Lesotho    Sporerside    52443 Reinger Corner    17828-6660    Hawaii    2016-08-02 04:43:20.474449    2016-10-14 13:02:27.869848        \N    \N    \N    0    \N    \N    \N    \N    female
10860    Reece    Runolfsdottir    curtis@macgyver.net    \N    Cuba    Morissetteburgh    84701 Trantow Hill    68863-2965    California    2016-08-21 23:48:36.151046    2016-10-14 13:02:27.87373        \N    \N    \N    0    \N    \N    \N    \N    male
10861    Rosella    Herzog    roselyn_sauer@koch.name    \N    Ireland    Lehnerburgh    6119 Mustafa Turnpike    17665-4226    Washington    2016-09-26 15:12:17.222736    2016-10-14 13:02:27.878306        \N    \N    \N    0    \N    \N    \N    \N    female
10862    Dorian    Mayer    randy@labadie.com    \N    Suriname    Millsbury    373 Brooks Lakes    65142-9029    Oklahoma    2016-08-23 10:52:08.90778    2016-10-14 13:02:27.882219        \N    \N    \N    0    \N    \N    \N    \N    female
10863    Rachel    Altenwerth    karelle@corkery.biz    \N    Oman    North Anya    68534 Alvis Tunnel    69950-9885    North Dakota    2016-09-01 05:21:38.160684    2016-10-14 13:02:27.890746        \N    \N    \N    0    \N    \N    \N    \N    male
10864    Alexis    Lindgren    dax@wiza.co    \N    Congo    Shieldsborough    7198 Will Branch    45832    Rhode Island    2016-08-06 17:15:31.311157    2016-10-14 13:02:27.895045        \N    \N    \N    0    \N    \N    \N    \N    male
10865    Amely    Collier    rowena@rempelbogisich.info    \N    Sudan    Lake Lucinda    9780 Shakira Spurs    17050-9882    Hawaii    2016-08-27 17:05:00.092078    2016-10-14 13:02:27.90006        \N    \N    \N    0    \N    \N    \N    \N    female
10866    Osborne    Schmeler    shaylee_simonis@predovic.biz    \N    Burkina Faso    New Alvinaborough    79483 Karolann Walks    97402    Nebraska    2016-08-23 03:56:13.837449    2016-10-14 13:02:27.906015        \N    \N    \N    0    \N    \N    \N    \N    female
10867    Demarco    Roob    tania@prohaska.name    \N    Lebanon    Lake Janellemouth    74708 Kassulke Mall    88838    Ohio    2016-08-04 18:14:47.73421    2016-10-14 13:02:27.910137        \N    \N    \N    0    \N    \N    \N    \N    male
10868    Name    Reichert    rhiannon.yundt@simonis.biz    \N    Latvia    South Zellachester    44071 Giles Ranch    18295-0890    Mississippi    2016-09-20 01:46:14.756644    2016-10-14 13:02:27.914966        \N    \N    \N    0    \N    \N    \N    \N    male
10869    Jody    Hayes    iac.rath@greengerhold.biz    \N    Bermuda    Hicklebury    816 Leanna Throughway    10702    Ohio    2016-07-29 07:21:03.711139    2016-10-14 13:02:27.91911        \N    \N    \N    0    \N    \N    \N    \N    female
10870    Shannon    Reilly    diana_mann@smitham.name    \N    Martinique    Medhurstport    151 Kylie Dam    77508-4652    South Carolina    2016-09-10 19:43:45.447722    2016-10-14 13:02:27.923022        \N    \N    \N    0    \N    \N    \N    \N    female
10871    Marianne    Kertzmann    daphnee@pollichkihn.net    \N    Uzbekistan    South Kareem    4996 Emmerich Locks    12099    Connecticut    2016-06-26 18:44:52.365357    2016-10-14 13:02:27.927206        \N    \N    \N    0    \N    \N    \N    \N    male
10872    Rosemary    Barrows    veronica@moenlesch.name    \N    Oman    Gusville    4656 Lea Brooks    23778    New York    2016-08-14 02:43:42.209284    2016-10-14 13:02:27.931122        \N    \N    \N    0    \N    \N    \N    \N    female
10873    Doyle    Grimes    joyce_hartmann@little.biz    \N    Aruba    South Nedrachester    6709 Sanford Prairie    10121-6857    Michigan    2016-07-29 16:24:45.096616    2016-10-14 13:02:27.934883        \N    \N    \N    0    \N    \N    \N    \N    female
10875    Megane    Rath    leola@baumbachprosacco.co    \N    Ukraine    South Donaldview    7141 Luther Views    61638    Alaska    2016-08-15 06:30:17.171622    2016-10-14 13:02:27.942057        \N    \N    \N    0    \N    \N    \N    \N    male
10876    Louie    Blick    donny@nader.com    \N    Cape Verde    West Fayfort    855 Ferry Loaf    87770    Minnesota    2016-07-03 04:13:41.205067    2016-10-14 13:02:27.945167        \N    \N    \N    0    \N    \N    \N    \N    female
10877    Kattie    Hane    naomi_ernser@gleason.org    \N    Aruba    New Ottis    4170 Gillian Ferry    59772-5533    California    2016-07-03 05:06:01.809046    2016-10-14 13:02:27.94874        \N    \N    \N    0    \N    \N    \N    \N    female
10878    Jaquan    Kemmer    jacques@wildermanschiller.biz    \N    Guernsey    Rosendofurt    91286 Eichmann Union    82589-2426    Colorado    2016-09-13 16:21:49.264402    2016-10-14 13:02:27.952278        \N    \N    \N    0    \N    \N    \N    \N    male
10879    Sam    Langosh    nella@bosco.io    \N    Czech Republic    Port Miafurt    352 Raquel Fields    79123    Virginia    2016-07-07 19:30:59.326433    2016-10-14 13:02:27.955826        \N    \N    \N    0    \N    \N    \N    \N    female
10880    Crystal    Bosco    rosa@okon.biz    \N    Mauritius    Reingerville    63483 Haley Tunnel    25482-6289    Missouri    2016-09-29 02:43:42.133214    2016-10-14 13:02:27.959461        \N    \N    \N    0    \N    \N    \N    \N    female
10881    Creola    Rempel    kian.mckenzie@kaulkekris.co    \N    Dominica    New Ellis    26068 Jasmin Gardens    55181    New Hampshire    2016-08-13 02:43:36.997273    2016-10-14 13:02:27.96283        \N    \N    \N    0    \N    \N    \N    \N    female
10882    Vickie    Heidenreich    tabitha@trantow.name    \N    Sierra Leone    New Adonis    917 Cecile Streets    61599    Kansas    2016-07-10 00:25:56.257817    2016-10-14 13:02:27.966239        \N    \N    \N    0    \N    \N    \N    \N    male
10883    Palma    Weber    ofelia.leffler@gutmann.io    \N    Trinidad and Tobago    South Paxton    80629 Valentina Inlet    63782    Iowa    2016-08-28 19:31:39.183575    2016-10-14 13:02:27.969579        \N    \N    \N    0    \N    \N    \N    \N    female
10884    Sarai    Conn    jaydon_gislason@ruel.name    \N    Palestinian Territory    West Derickville    97364 Jast Spur    50662-6539    Idaho    2016-07-15 19:49:18.976263    2016-10-14 13:02:27.973294        \N    \N    \N    0    \N    \N    \N    \N    male
10885    Aubree    Casper    cordia@keebler.biz    \N    Kuwait    Wildermanstad    3984 Horacio Well    19471    South Dakota    2016-08-23 02:51:13.163564    2016-10-14 13:02:27.976911        \N    \N    \N    0    \N    \N    \N    \N    female
10886    Kellie    Kozey    ryleigh_feeney@kunde.name    \N    Turks and Caicos Islands    West Lucile    129 Brigitte Courts    94246-3211    Arizona    2016-08-24 04:33:36.511776    2016-10-14 13:02:27.980306        \N    \N    \N    0    \N    \N    \N    \N    male
10887    Florencio    Reichert    flavie.jacobi@dubuque.biz    \N    Canada    East Trycia    96848 Cummerata Valleys    41183-7698    North Carolina    2016-07-05 11:10:02.51257    2016-10-14 13:02:27.983741        \N    \N    \N    0    \N    \N    \N    \N    female
10888    Madalyn    Kilback    cornell@beahan.com    \N    Brazil    Wolfffurt    6748 Margaretta Fall    53701-6686    Kentucky    2016-08-23 23:55:26.9304    2016-10-14 13:02:27.987307        \N    \N    \N    0    \N    \N    \N    \N    female
10889    Samir    Wyman    charlotte_emmerich@dickinsonauer.com    \N    Colombia    North Zackeryborough    66883 Hudson Junction    72645    Arizona    2016-07-15 05:00:46.454028    2016-10-14 13:02:27.990652        \N    \N    \N    0    \N    \N    \N    \N    female
10890    Asha    Hackett    etha@weber.net    \N    Lao People's Democratic Republic    Port Erwinton    772 Torphy Station    93504    Iowa    2016-07-17 10:38:34.806532    2016-10-14 13:02:27.993929        \N    \N    \N    0    \N    \N    \N    \N    male
10891    Jovan    Wehner    angelina@langoshjast.com    \N    Papua New Guinea    Kreigerside    222 O'Connell View    91785-8089    New Hampshire    2016-07-12 04:27:56.716598    2016-10-14 13:02:27.997031        \N    \N    \N    0    \N    \N    \N    \N    female
10892    Cristina    Beer    jean_padberg@cummingsmacejkovic.name    \N    Cyprus    Dachland    9317 Schuppe Island    82391-2227    Utah    2016-08-16 08:40:56.508575    2016-10-14 13:02:28.000691        \N    \N    \N    0    \N    \N    \N    \N    female
10893    Houston    Kessler    aiyana@larkin.co    \N    United Kingdom    West Noelbury    33480 Drew Street    22516    Kansas    2016-07-02 21:15:48.645755    2016-10-14 13:02:28.005074        \N    \N    \N    0    \N    \N    \N    \N    female
10894    Philip    Eichmann    edward@kautzer.name    \N    British Indian Ocean Territory (Chagos Archipelago)    West Tina    916 Paxton Mountains    24701-8882    New Hampshire    2016-07-06 14:25:52.924645    2016-10-14 13:02:28.009048        \N    \N    \N    0    \N    \N    \N    \N    male
10895    Sherwood    Cronin    gage_rodriguez@quigley.io    \N    Singapore    Port Constantin    85000 Alexis Camp    74720    Nebraska    2016-07-25 07:13:50.128895    2016-10-14 13:02:28.012488        \N    \N    \N    0    \N    \N    \N    \N    female
10896    Thaddeus    Oberbrunner    evelyn@kilback.net    \N    Andorra    Anitabury    18255 Suzanne Court    38109    Pennsylvania    2016-08-25 22:02:31.318509    2016-10-14 13:02:28.01625        \N    \N    \N    0    \N    \N    \N    \N    male
10897    Zoie    Lang    fleta.block@gulgowski.com    \N    Antigua and Barbuda    West Darrel    200 VonRueden Passage    70293    Colorado    2016-08-22 19:43:59.930646    2016-10-14 13:02:28.019937        \N    \N    \N    0    \N    \N    \N    \N    female
10898    Francesco    King    brendan@rippin.io    \N    Virgin Islands, British    Reicherttown    19255 Hauck Islands    45906    Arkansas    2016-07-13 20:41:41.546526    2016-10-14 13:02:28.023572        \N    \N    \N    0    \N    \N    \N    \N    male
10899    Bette    Kunde    adelbert_powlowski@rippin.co    \N    Taiwan    East Dallasfort    190 Haley Mountain    14428-2730    Minnesota    2016-07-24 15:04:48.706114    2016-10-14 13:02:28.026952        \N    \N    \N    0    \N    \N    \N    \N    female
10900    Asia    Green    ibrahim@kreigermclaughlin.info    \N    Turks and Caicos Islands    Port Emmanuelle    15108 Harvey Via    69015-1873    Colorado    2016-07-20 20:22:12.281424    2016-10-14 13:02:28.030285        \N    \N    \N    0    \N    \N    \N    \N    male
10901    Chyna    Wintheiser    ken_franecki@lefflermarvin.co    \N    Heard Island and McDonald Islands    Yeseniaborough    7631 Lea Gardens    84997    Georgia    2016-09-14 06:56:06.977886    2016-10-14 13:02:28.033244        \N    \N    \N    0    \N    \N    \N    \N    male
10902    Mortimer    Batz    lauren@thompson.net    \N    Qatar    West Monique    72383 Zora Dale    22661    South Dakota    2016-08-02 07:57:40.45316    2016-10-14 13:02:28.036361        \N    \N    \N    0    \N    \N    \N    \N    male
10903    Aliza    Gislason    adrian@reilly.name    \N    Samoa    Thompsonberg    147 Okuneva Stream    38653    Minnesota    2016-09-21 06:37:00.515093    2016-10-14 13:02:28.039596        \N    \N    \N    0    \N    \N    \N    \N    male
10904    Elisabeth    Witting    cortez.powlowski@bayer.name    \N    Mongolia    Veumport    4094 Bogan Manor    70673    Kentucky    2016-09-09 18:35:43.762405    2016-10-14 13:02:28.042962        \N    \N    \N    0    \N    \N    \N    \N    male
10905    Jorge    Swift    eldon.quitzon@gutmann.net    \N    Brunei Darussalam    Gaylebury    447 Maggio Radial    59529    Arizona    2016-08-30 17:50:25.487994    2016-10-14 13:02:28.046787        \N    \N    \N    0    \N    \N    \N    \N    male
10906    Nellie    Sipes    marcelina@braunwill.io    \N    Zimbabwe    Hectorton    386 Aurelia Streets    69418    Georgia    2016-09-29 12:20:35.692799    2016-10-14 13:02:28.05031        \N    \N    \N    0    \N    \N    \N    \N    female
10907    Grace    Gorczany    sienna@donnelly.net    \N    Israel    Cindyton    644 Catharine Mountains    38198    Massachusetts    2016-09-26 20:11:01.634985    2016-10-14 13:02:28.055995        \N    \N    \N    0    \N    \N    \N    \N    male
10909    Sigrid    Koelpin    bernhard@feeney.org    \N    New Caledonia    East Enidland    22048 Damian Forks    75613    Tennessee    2016-07-09 20:42:13.003017    2016-10-14 13:02:28.059433        \N    \N    \N    0    \N    \N    \N    \N    male
10910    Faye    Runolfsson    gwen@upton.name    \N    Oman    Port Maiyaburgh    926 Icie Parkways    81330-8812    Texas    2016-07-25 22:41:33.24525    2016-10-14 13:02:28.063064        \N    \N    \N    0    \N    \N    \N    \N    male
10911    Freeda    Hirthe    thelma@ledner.co    \N    Sao Tome and Principe    Zboncakville    5975 Schultz Ramp    51104    New Hampshire    2016-07-27 13:38:44.056064    2016-10-14 13:02:28.066426        \N    \N    \N    0    \N    \N    \N    \N    male
10912    Miguel    Pacocha    tony_greenfelder@romagueraaufderhar.info    \N    Georgia    North Elian    3387 Karina Plaza    12399-5804    South Carolina    2016-08-02 05:08:21.704896    2016-10-14 13:02:28.069594        \N    \N    \N    0    \N    \N    \N    \N    male
10913    Glenda    Robel    charlie@mueller.name    \N    French Guiana    Jesseshire    729 Larkin Light    17964-8636    Kentucky    2016-06-25 02:55:11.495369    2016-10-14 13:02:28.073366        \N    \N    \N    0    \N    \N    \N    \N    male
10914    Dortha    Kuhic    gabriel.jacobi@harber.info    \N    Ecuador    Emmanuelport    3382 Alexandrine Islands    91698-1177    New York    2016-07-21 03:38:22.868607    2016-10-14 13:02:28.076644        \N    \N    \N    0    \N    \N    \N    \N    female
10915    Lyric    Rice    melia.marvin@lemkegislason.net    \N    Colombia    Isobelberg    932 Bart River    62772    Vermont    2016-07-29 00:26:35.015414    2016-10-14 13:02:28.08006        \N    \N    \N    0    \N    \N    \N    \N    female
10916    Roosevelt    Grant    kiara.conn@sipes.net    \N    Comoros    West Gonzalofort    995 Nikita Plaza    38774-0898    Louisiana    2016-09-14 00:37:04.757865    2016-10-14 13:02:28.083392        \N    \N    \N    0    \N    \N    \N    \N    female
10917    Sydney    Larson    marcella@kunzekub.org    \N    Suriname    Giamouth    639 Tre Parkways    44854-6146    Delaware    2016-07-01 15:49:59.458027    2016-10-14 13:02:28.086816        \N    \N    \N    0    \N    \N    \N    \N    female
10918    Queen    Borer    magnus.barrows@ankundingpfeffer.org    \N    Egypt    West Connortown    83740 Estell Garden    84298-4062    Wyoming    2016-08-07 13:51:12.975016    2016-10-14 13:02:28.090292        \N    \N    \N    0    \N    \N    \N    \N    female
10919    Vaughn    Watsica    grady@cartwrightaltenwerth.co    \N    Andorra    Floyton    393 Wyman Lodge    30484    Maryland    2016-08-13 12:16:28.984473    2016-10-14 13:02:28.09363        \N    \N    \N    0    \N    \N    \N    \N    male
10920    Arden    Gutkowski    doug@boyle.info    \N    Dominica    Tyresehaven    34822 Hettinger Gateway    45267    South Carolina    2016-08-17 14:23:08.924375    2016-10-14 13:02:28.098742        \N    \N    \N    0    \N    \N    \N    \N    female
10921    Amira    Davis    stacy_feest@langworth.com    \N    Trinidad and Tobago    New Zackary    1979 Darion Forks    12439-1174    Nebraska    2016-08-22 03:59:44.011018    2016-10-14 13:02:28.10353        \N    \N    \N    0    \N    \N    \N    \N    female
10922    Jamil    Stehr    rebeka.barton@pouros.info    \N    Turkey    Kennedyside    36873 Julius Villages    69663-5862    Missouri    2016-06-25 09:43:39.209018    2016-10-14 13:02:28.112577        \N    \N    \N    0    \N    \N    \N    \N    male
10923    Dejuan    Considine    winifred@zulauf.info    \N    Denmark    New Kasandra    7338 Weber Islands    37621-9829    Georgia    2016-08-03 20:49:03.055677    2016-10-14 13:02:28.119127        \N    \N    \N    0    \N    \N    \N    \N    male
10924    Buster    Bogisich    mathilde.schimmel@weimannhalvorson.com    \N    Nicaragua    Welchland    8378 Ebert Pines    95961    Rhode Island    2016-09-24 23:04:07.081794    2016-10-14 13:02:28.125056        \N    \N    \N    0    \N    \N    \N    \N    female
10925    Deion    Schneider    jules.terry@treutelreynolds.org    \N    Georgia    North Devynmouth    76626 Sandra Island    24956    Kentucky    2016-08-02 06:13:09.272853    2016-10-14 13:02:28.130583        \N    \N    \N    0    \N    \N    \N    \N    male
10926    Julia    Ritchie    caandre.rutherford@lockman.name    \N    Nauru    Port Evieborough    55007 Emmanuelle Land    86876    South Carolina    2016-06-26 11:58:36.338493    2016-10-14 13:02:28.136423        \N    \N    \N    0    \N    \N    \N    \N    female
10928    Elias    Trantow    quinten@krajcik.biz    \N    New Caledonia    Waltershire    622 Stoltenberg Freeway    81123-0998    Michigan    2016-06-25 11:35:10.266145    2016-10-14 13:02:28.166931        \N    \N    \N    0    \N    \N    \N    \N    male
10929    Melany    Buckridge    linnie.connelly@reichertrunolfon.com    \N    United Kingdom    Ernestinetown    582 Elvie Forges    20726-1173    Indiana    2016-08-24 06:40:58.209635    2016-10-14 13:02:28.17464        \N    \N    \N    0    \N    \N    \N    \N    female
10930    Marc    Kling    hayden.harvey@greenfelder.biz    \N    Iraq    Zacharyborough    76970 Wyman Cape    99125    Kansas    2016-08-30 09:50:26.247324    2016-10-14 13:02:28.179031        \N    \N    \N    0    \N    \N    \N    \N    male
10931    Elliott    Fisher    sandy@padberg.com    \N    Fiji    Lamontport    32397 Jacklyn Centers    98773    South Dakota    2016-09-18 07:23:44.756781    2016-10-14 13:02:28.184141        \N    \N    \N    0    \N    \N    \N    \N    female
10932    Lupe    Anderson    marjory_bechtelar@lesch.co    \N    Sudan    Kubhaven    9854 Schumm Plains    95989    Michigan    2016-08-18 20:35:02.848516    2016-10-14 13:02:28.190846        \N    \N    \N    0    \N    \N    \N    \N    male
10933    Donny    Botsford    isai_mills@simonis.org    \N    Turks and Caicos Islands    Lake Sean    3806 Tito Springs    55259    Kentucky    2016-07-30 08:30:37.695135    2016-10-14 13:02:28.200028        \N    \N    \N    0    \N    \N    \N    \N    female
10934    Sydni    Nitzsche    suzanne@smitham.biz    \N    Bouvet Island (Bouvetoya)    Hollisshire    6444 Carmel Mount    79310-3262    Oregon    2016-08-29 19:01:43.441567    2016-10-14 13:02:28.211186        \N    \N    \N    0    \N    \N    \N    \N    male
10935    Cesar    Stark    lonny_veum@cruickshank.org    \N    Kyrgyz Republic    East Maximotown    1367 Marjory Brooks    42739-5935    Tennessee    2016-08-31 17:38:50.85925    2016-10-14 13:02:28.21564        \N    \N    \N    0    \N    \N    \N    \N    female
10936    Kiel    Mueller    dolores.quigley@kilback.name    \N    Guadeloupe    West Fridaview    183 Erwin Course    46889    South Carolina    2016-08-26 07:05:59.464797    2016-10-14 13:02:28.219355        \N    \N    \N    0    \N    \N    \N    \N    female
10940    Carolyne    White    jennifer.thiel@stanton.co    \N    Suriname    New Clemens    2683 Nikolaus Track    84325    Nevada    2016-08-19 00:55:36.93667    2016-10-14 13:02:28.270519        \N    \N    \N    0    \N    \N    \N    \N    male
10941    Jamie    Dicki    elbert.schulist@roob.io    \N    Svalbard & Jan Mayen Islands    Lake Haven    90626 Goodwin Fall    46889    Wyoming    2016-08-10 07:33:06.139253    2016-10-14 13:02:28.278774        \N    \N    \N    0    \N    \N    \N    \N    female
10942    Ismael    Ziemann    marcelle_schuster@schmelergrimes.name    \N    Bolivia    North Scot    77498 Erica Spurs    38201-9788    South Dakota    2016-09-21 07:06:12.476787    2016-10-14 13:02:28.287511        \N    \N    \N    0    \N    \N    \N    \N    female
10943    Kory    Cummerata    iac@wolff.co    \N    Moldova    Cruickshankborough    40644 Alberto Plain    75287-0658    South Dakota    2016-07-16 04:48:43.210053    2016-10-14 13:02:28.303625        \N    \N    \N    0    \N    \N    \N    \N    female
10944    Osbaldo    Kerluke    aaliyah@mckenzie.name    \N    Martinique    New Courtney    8817 Kuphal Brook    84200    Connecticut    2016-07-14 15:24:04.966553    2016-10-14 13:02:28.313157        \N    \N    \N    0    \N    \N    \N    \N    male
10945    Casper    Mosciski    elmer.yost@bodedaniel.biz    \N    Afghanistan    New Orlo    2956 Nova Road    57202-6225    Mississippi    2016-07-06 02:09:53.642    2016-10-14 13:02:28.32416        \N    \N    \N    0    \N    \N    \N    \N    female
10946    Benedict    O'Connell    destiny@gerhold.co    \N    Bouvet Island (Bouvetoya)    North Elta    815 Maymie Islands    63343-4116    Illinois    2016-07-19 22:40:16.450148    2016-10-14 13:02:28.334864        \N    \N    \N    0    \N    \N    \N    \N    female
10947    Nayeli    Luettgen    aditya_mante@volkman.io    \N    Wallis and Futuna    Davonteport    3045 Daniel Manor    74361-0386    Idaho    2016-09-12 10:49:34.710394    2016-10-14 13:02:28.342067        \N    \N    \N    0    \N    \N    \N    \N    male
10948    Okey    Ankunding    donny_durgan@dach.org    \N    Eritrea    North Raquel    14789 Weber Lane    21433-7618    New Jersey    2016-09-14 00:59:36.799032    2016-10-14 13:02:28.350097        \N    \N    \N    0    \N    \N    \N    \N    female
10949    Theron    Greenholt    maverick@ritchiekuhlman.co    \N    Gambia    Patsyland    2870 Carmella Crossing    50116    Arkansas    2016-07-26 05:04:13.672167    2016-10-14 13:02:28.354953        \N    \N    \N    0    \N    \N    \N    \N    female
10950    Gunnar    Harber    maximo_kuhn@bednar.com    \N    Myanmar    Framifort    67960 Carter Plains    13425-5498    Georgia    2016-08-02 18:44:34.599879    2016-10-14 13:02:28.359292        \N    \N    \N    0    \N    \N    \N    \N    male
10951    Haylie    Schimmel    ettie.luettgen@wuckert.co    \N    Faroe Islands    West Kileychester    29663 Christiana Locks    42096-0990    Wisconsin    2016-09-09 15:10:50.186274    2016-10-14 13:02:28.365066        \N    \N    \N    0    \N    \N    \N    \N    female
10952    Adalberto    Gleason    jeramie@hettinger.co    \N    Uruguay    Lake Louisamouth    17766 Tracy Haven    15432-4133    Montana    2016-08-31 09:26:03.024608    2016-10-14 13:02:28.36917        \N    \N    \N    0    \N    \N    \N    \N    male
10953    Hilda    Marquardt    graciela_kris@turner.biz    \N    Netherlands    Vivianemouth    302 Jerde Burgs    27681-6044    Virginia    2016-08-30 15:29:06.875526    2016-10-14 13:02:28.37462        \N    \N    \N    0    \N    \N    \N    \N    female
10954    Virginie    Sporer    andreane.berge@markshamill.info    \N    Jersey    North Justinaview    919 Lessie Passage    46632-4726    Maine    2016-08-15 20:22:57.795234    2016-10-14 13:02:28.380656        \N    \N    \N    0    \N    \N    \N    \N    male
10955    Opal    Leannon    kendall_mertz@farrell.io    \N    Burkina Faso    Grimeschester    92088 Dare Lodge    29855-3225    Arizona    2016-07-04 05:41:18.728013    2016-10-14 13:02:28.39132        \N    \N    \N    0    \N    \N    \N    \N    male
10956    Sincere    Kunze    patrick.paucek@barrows.co    \N    Timor-Leste    Tonyside    3354 Pollich Cape    23572    Kansas    2016-09-27 12:17:19.342823    2016-10-14 13:02:28.399985        \N    \N    \N    0    \N    \N    \N    \N    male
10957    Amari    Kirlin    kristoffer.becker@klocko.net    \N    Belarus    East Keon    3878 Strosin Shores    59493-1851    Oregon    2016-06-25 20:26:35.526117    2016-10-14 13:02:28.405408        \N    \N    \N    0    \N    \N    \N    \N    female
10958    Marlon    Ryan    trever@muller.org    \N    Kuwait    Gladyceside    77398 Thea Shoals    62272    Alaska    2016-08-12 22:56:56.630372    2016-10-14 13:02:28.413834        \N    \N    \N    0    \N    \N    \N    \N    female
10959    Joaquin    Brakus    bailee@runolfonrath.biz    \N    Spain    West Henry    906 Larue Locks    15424    Massachusetts    2016-07-28 05:53:45.620013    2016-10-14 13:02:28.429217        \N    \N    \N    0    \N    \N    \N    \N    female
10960    Lelah    Bernhard    gage.howell@hermann.io    \N    Solomon Islands    Ignacioshire    790 Elijah Land    88384    Texas    2016-08-04 21:04:14.366242    2016-10-14 13:02:28.437902        \N    \N    \N    0    \N    \N    \N    \N    male
10961    Kendall    Watsica    marcelino_williamson@renner.net    \N    Suriname    Parkerfurt    391 Zion Mountain    15227-7272    Iowa    2016-08-08 09:52:55.535921    2016-10-14 13:02:28.443849        \N    \N    \N    0    \N    \N    \N    \N    male
10962    Jeremy    Schmidt    brendan@deckowpfannerstill.net    \N    Jersey    Port Keenan    40683 Beer Glens    82336-0158    Michigan    2016-09-05 10:16:23.203364    2016-10-14 13:02:28.449193        \N    \N    \N    0    \N    \N    \N    \N    male
10963    Alfonso    Konopelski    camille@johnstonhills.net    \N    Israel    North Connerborough    736 Batz Way    21516    North Carolina    2016-08-29 15:51:51.090589    2016-10-14 13:02:28.454976        \N    \N    \N    0    \N    \N    \N    \N    female
10964    Brianne    Graham    tyrique@gleichnerfunk.name    \N    Israel    West Carissaton    4791 Bashirian Meadow    51454-9830    Tennessee    2016-09-14 02:54:39.737748    2016-10-14 13:02:28.46024        \N    \N    \N    0    \N    \N    \N    \N    male
10965    Darius    Hane    damion_buckridge@king.org    \N    Singapore    Jaceyhaven    5451 Roberts Expressway    85805-9437    Idaho    2016-08-21 21:25:08.495775    2016-10-14 13:02:28.46451        \N    \N    \N    0    \N    \N    \N    \N    female
10966    Marquise    Satterfield    cleta@hettinger.name    \N    Benin    West Ronnyfort    27263 Mayra Lights    49290    South Dakota    2016-07-06 22:24:44.652693    2016-10-14 13:02:28.4693        \N    \N    \N    0    \N    \N    \N    \N    male
10967    Aylin    Kub    amie.grady@champlin.name    \N    Macedonia    Abernathyville    28532 Klein Key    25947    Ohio    2016-09-24 03:30:01.314079    2016-10-14 13:02:28.473862        \N    \N    \N    0    \N    \N    \N    \N    male
10968    Concepcion    Trantow    kenneth@rippin.io    \N    France    Brekkeville    4067 Becker Junction    45608    Mississippi    2016-06-24 06:53:03.516785    2016-10-14 13:02:28.478565        \N    \N    \N    0    \N    \N    \N    \N    female
10969    Elliot    Mohr    tillman@carrollwilkinson.biz    \N    Romania    New Bailey    5782 Javonte Cliff    57138    Montana    2016-08-15 16:55:39.683977    2016-10-14 13:02:28.483777        \N    \N    \N    0    \N    \N    \N    \N    female
10970    Sherwood    O'Keefe    hope@kuphal.co    \N    Samoa    North Maeganborough    230 Kessler Plains    28338    Idaho    2016-08-22 10:12:57.541671    2016-10-14 13:02:28.492486        \N    \N    \N    0    \N    \N    \N    \N    female
10971    Casimir    Cronin    lindsay@fisher.net    \N    Seychelles    East Monica    254 Julius Lodge    12135    Kansas    2016-08-11 14:49:00.813636    2016-10-14 13:02:28.502745        \N    \N    \N    0    \N    \N    \N    \N    male
10972    Minerva    D'Amore    adrianna@glovertreutel.co    \N    Ghana    Koryshire    24500 Beaulah Terrace    65763-7910    North Carolina    2016-09-22 12:50:43.686141    2016-10-14 13:02:28.522895        \N    \N    \N    0    \N    \N    \N    \N    male
10973    Edward    Jakubowski    jaylen_effertz@abbottharber.org    \N    Guam    Kuhntown    90052 Stanton Estate    50674    New Jersey    2016-07-31 00:07:25.29775    2016-10-14 13:02:28.532178        \N    \N    \N    0    \N    \N    \N    \N    female
10974    Kole    Stehr    alva@predovicbotsford.biz    \N    Svalbard & Jan Mayen Islands    South Marcelleland    3159 Amir Islands    49097-3552    South Carolina    2016-09-22 08:15:49.285204    2016-10-14 13:02:28.542742        \N    \N    \N    0    \N    \N    \N    \N    female
10975    Rogers    Bode    sandy@leschgleason.co    \N    Thailand    West Soledad    747 Dooley Curve    14377-0896    Utah    2016-06-27 18:05:56.598603    2016-10-14 13:02:28.548486        \N    \N    \N    0    \N    \N    \N    \N    male
10976    Jared    Gleason    lucienne@effertznader.io    \N    China    North Kendrick    9621 Yolanda Station    98034    Maryland    2016-07-10 12:12:48.126134    2016-10-14 13:02:28.554134        \N    \N    \N    0    \N    \N    \N    \N    male
10977    Edythe    Haley    humberto@boscokirlin.io    \N    Costa Rica    Kaceyfurt    23521 Graham Inlet    25627-4823    Rhode Island    2016-08-22 00:16:13.214768    2016-10-14 13:02:28.569214        \N    \N    \N    0    \N    \N    \N    \N    female
10978    Dean    Klocko    kale@grant.com    \N    Jordan    East Gregoriachester    34126 Jordi Extension    63727    Connecticut    2016-09-15 15:50:03.534391    2016-10-14 13:02:28.578345        \N    \N    \N    0    \N    \N    \N    \N    female
10979    Okey    Bartoletti    jasen@waterskertzmann.name    \N    Indonesia    North Hermina    708 DuBuque Divide    50870-5505    Delaware    2016-09-11 19:36:30.707859    2016-10-14 13:02:28.584693        \N    \N    \N    0    \N    \N    \N    \N    male
10980    Edwina    Hickle    krista@muller.biz    \N    Japan    East Coyborough    59315 Jack Fort    85091-4562    Arkansas    2016-07-14 15:24:51.092194    2016-10-14 13:02:28.590313        \N    \N    \N    0    \N    \N    \N    \N    male
10981    Assunta    Schuppe    alvina@effertz.com    \N    Malta    Feilton    69684 Mustafa Valley    64087    North Dakota    2016-06-29 23:32:45.752901    2016-10-14 13:02:28.602406        \N    \N    \N    0    \N    \N    \N    \N    male
10982    Davion    Denesik    camila@cronin.co    \N    Palestinian Territory    East Ervinburgh    72174 Fabiola Hills    11162-2762    Florida    2016-09-16 12:41:19.405531    2016-10-14 13:02:28.622105        \N    \N    \N    0    \N    \N    \N    \N    male
10983    Antonietta    Dach    jayme.dicki@marquardt.org    \N    Turkmenistan    South Lola    77225 McGlynn Mission    84862-6381    Idaho    2016-07-26 21:00:59.733326    2016-10-14 13:02:28.634102        \N    \N    \N    0    \N    \N    \N    \N    female
10984    Mose    Botsford    van.larkin@hansenrunolfon.net    \N    Albania    Dickinsonshire    3135 Eino Groves    66809-7417    Kansas    2016-09-20 15:06:00.462406    2016-10-14 13:02:28.640413        \N    \N    \N    0    \N    \N    \N    \N    female
10985    Roscoe    Heller    granville_upton@mitchell.org    \N    Taiwan    Myronland    306 Kayli Ports    21644    Arkansas    2016-08-12 05:15:05.718798    2016-10-14 13:02:28.646348        \N    \N    \N    0    \N    \N    \N    \N    male
10986    Cade    Tremblay    taylor_botsford@lind.name    \N    Holy See (Vatican City State)    Gerlachfort    635 Arne Plains    76260    Georgia    2016-09-03 05:03:34.013577    2016-10-14 13:02:28.653462        \N    \N    \N    0    \N    \N    \N    \N    male
10987    Monroe    Nienow    cathrine.carter@braun.name    \N    Bulgaria    East Nadia    669 Keeling Plaza    72455    Illinois    2016-08-29 15:37:49.271975    2016-10-14 13:02:28.662421        \N    \N    \N    0    \N    \N    \N    \N    male
10988    Camylle    Berge    leonardo.auer@rutherford.info    \N    Romania    Port Linastad    2408 Rupert Drives    55334-7875    Massachusetts    2016-07-25 23:54:11.59192    2016-10-14 13:02:28.674143        \N    \N    \N    0    \N    \N    \N    \N    male
10989    Enoch    Wolf    tianna@parisian.net    \N    Lesotho    Rethaton    1935 Ardith Cape    61602-7640    Virginia    2016-09-21 08:08:17.385917    2016-10-14 13:02:28.685026        \N    \N    \N    0    \N    \N    \N    \N    male
10990    Tommie    Pfannerstill    jamison.kilback@lindgren.name    \N    Lesotho    New Jacinthemouth    9199 Nienow Shoals    61161-6457    Iowa    2016-09-18 19:54:20.43075    2016-10-14 13:02:28.698618        \N    \N    \N    0    \N    \N    \N    \N    female
10991    Samir    D'Amore    kayla.luettgen@sawaynfay.co    \N    Oman    Kipbury    8356 Gregoria Harbors    43876-4028    Colorado    2016-09-07 13:27:26.763309    2016-10-14 13:02:28.726635        \N    \N    \N    0    \N    \N    \N    \N    female
10992    Kade    Lueilwitz    anderson_prosacco@olson.info    \N    Finland    Steuberbury    1876 Von Ramp    93510    Louisiana    2016-08-22 05:56:43.414357    2016-10-14 13:02:28.738491        \N    \N    \N    0    \N    \N    \N    \N    male
10993    Amos    Huel    vickie@keeblerernser.name    \N    Kuwait    Carletonhaven    33409 Breitenberg Point    38696    Oklahoma    2016-09-15 07:42:28.233823    2016-10-14 13:02:28.752533        \N    \N    \N    0    \N    \N    \N    \N    male
10994    Violette    White    shaylee.brekke@hoegercummerata.org    \N    Czech Republic    Lake Unaside    9026 Wolf Lane    46124-7158    New Hampshire    2016-07-06 01:49:18.650965    2016-10-14 13:02:28.769059        \N    \N    \N    0    \N    \N    \N    \N    female
10995    Pattie    Mitchell    cale@rippin.io    \N    Honduras    Port Fabiolahaven    771 Kory Forks    99366    Arizona    2016-08-08 17:18:15.901471    2016-10-14 13:02:28.785818        \N    \N    \N    0    \N    \N    \N    \N    female
10996    Allie    Cole    arden_marquardt@haag.net    \N    Barbados    Krajcikton    69841 Pfannerstill Tunnel    53556    New Jersey    2016-07-14 12:40:59.544717    2016-10-14 13:02:28.798844        \N    \N    \N    0    \N    \N    \N    \N    female
10997    Garnet    Cassin    hobart@abbott.biz    \N    United Arab Emirates    Wittingtown    85264 Rashad Bridge    55922    Arkansas    2016-09-02 06:04:14.469781    2016-10-14 13:02:28.814727        \N    \N    \N    0    \N    \N    \N    \N    female
10998    Randy    Okuneva    wilma@hilpert.com    \N    Papua New Guinea    Rigobertoville    83213 Rodolfo Square    46796    Tennessee    2016-07-22 06:12:46.092529    2016-10-14 13:02:28.829138        \N    \N    \N    0    \N    \N    \N    \N    female
10999    Emmanuelle    Sawayn    jeie.kuhn@lubowitz.net    \N    Somalia    Merrittport    71183 Nedra Divide    97391-0924    Georgia    2016-09-21 15:33:14.769714    2016-10-14 13:02:28.839937        \N    \N    \N    0    \N    \N    \N    \N    male
11000    Kayden    Kerluke    haven_wisoky@volkman.biz    \N    Svalbard & Jan Mayen Islands    Theresashire    191 Bosco Mountain    52726    Montana    2016-08-30 09:35:25.796321    2016-10-14 13:02:28.845389        \N    \N    \N    0    \N    \N    \N    \N    female
11001    Maci    Hudson    arnoldo_oconnell@kohlerherman.biz    \N    Nepal    Port Raul    73074 Goyette Drive    60541-6549    Illinois    2016-08-11 03:49:36.407597    2016-10-14 13:02:28.854372        \N    \N    \N    0    \N    \N    \N    \N    female
11002    Delores    Murazik    lucy@beahan.net    \N    Montenegro    Schuppestad    8368 Bechtelar Mills    73134-5530    West Virginia    2016-06-26 12:15:14.123155    2016-10-14 13:02:28.860261        \N    \N    \N    0    \N    \N    \N    \N    female
11003    Houston    Monahan    rita.torp@mosciski.name    \N    Finland    Zboncakfurt    9010 Jaiden Loop    33020    Idaho    2016-08-10 12:34:54.015927    2016-10-14 13:02:28.865195        \N    \N    \N    0    \N    \N    \N    \N    male
11004    Augusta    Schiller    vesta@johnston.io    \N    Czech Republic    Gleichnerside    869 Harris Road    31785-4541    Missouri    2016-09-10 13:52:41.188136    2016-10-14 13:02:28.870348        \N    \N    \N    0    \N    \N    \N    \N    female
11005    Moshe    Shanahan    braxton_block@beer.org    \N    Brunei Darussalam    Hartmannview    388 Howell Track    58861    Ohio    2016-09-20 12:37:42.647612    2016-10-14 13:02:28.876521        \N    \N    \N    0    \N    \N    \N    \N    male
11006    Orlando    Torphy    agnes_quigley@gibsonbayer.org    \N    Cambodia    Pfannerstillview    40523 Sipes Stravenue    61586    Indiana    2016-09-29 05:32:33.015944    2016-10-14 13:02:28.881245        \N    \N    \N    0    \N    \N    \N    \N    male
11007    Ayden    Bruen    aylin_monahan@heel.org    \N    Equatorial Guinea    Stiedemannburgh    207 Lemke Square    53676-2056    New Mexico    2016-09-22 16:21:36.309346    2016-10-14 13:02:28.886432        \N    \N    \N    0    \N    \N    \N    \N    male
11008    Torrey    Hegmann    makenna@ernser.org    \N    Bangladesh    Baumbachmouth    80592 Nyasia Parkway    28009    Massachusetts    2016-09-28 13:51:07.395825    2016-10-14 13:02:28.895452        \N    \N    \N    0    \N    \N    \N    \N    male
11009    Willard    Dicki    trent@schneider.name    \N    Ghana    Wiltonton    30829 Barrows Drives    84716-3153    Alabama    2016-09-20 15:13:42.071213    2016-10-14 13:02:28.900889        \N    \N    \N    0    \N    \N    \N    \N    male
11010    Mikayla    West    macey@kautzernader.org    \N    Togo    McKenziehaven    9793 Lind Knoll    12165    South Carolina    2016-08-17 13:17:00.666562    2016-10-14 13:02:28.905933        \N    \N    \N    0    \N    \N    \N    \N    male
11011    Elian    Jast    pink.kemmer@bednargreenholt.biz    \N    Madagascar    North Mohammadborough    265 Satterfield Freeway    78947    Nevada    2016-08-19 20:44:40.30562    2016-10-14 13:02:28.911466        \N    \N    \N    0    \N    \N    \N    \N    female
11056    Daniella    Satterfield    nicolette@ankundinghauck.name    \N    Romania    Savannahport    49750 Nader Walk    55818    New Mexico    2016-07-06 20:53:59.575152    2016-10-14 13:02:28.916951        \N    \N    \N    0    \N    \N    \N    \N    male
11012    Mohammad    Bosco    aryanna_jakubowski@streicherdman.io    \N    Slovakia (Slovak Republic)    East Jayceside    14019 Michaela Causeway    90121-9753    West Virginia    2016-08-23 22:02:44.147261    2016-10-14 13:02:28.921957        \N    \N    \N    0    \N    \N    \N    \N    female
11013    Leola    Lueilwitz    ray_schroeder@dickinsonmohr.biz    \N    Colombia    Kreigerfort    18263 Mills Prairie    33124-6051    Wisconsin    2016-07-10 17:01:24.854105    2016-10-14 13:02:28.926424        \N    \N    \N    0    \N    \N    \N    \N    male
11014    Leann    Quitzon    providenci.ernser@andersonadams.io    \N    Russian Federation    Taryntown    10977 Waelchi Mills    67965-6956    Maryland    2016-09-16 00:06:40.452979    2016-10-14 13:02:28.933131        \N    \N    \N    0    \N    \N    \N    \N    female
11015    Shany    Reynolds    corrine@conroy.io    \N    United Arab Emirates    New Arturoton    625 Nicolas Village    83887    Missouri    2016-07-17 01:22:52.354724    2016-10-14 13:02:28.938486        \N    \N    \N    0    \N    \N    \N    \N    male
11016    Felix    Cremin    malika_rutherford@rodriguez.biz    \N    Libyan Arab Jamahiriya    North Macie    575 Kassulke Trail    70324    Illinois    2016-09-17 11:10:08.804179    2016-10-14 13:02:28.943202        \N    \N    \N    0    \N    \N    \N    \N    male
11017    Mathilde    Ritchie    jennifer_wehner@bruen.com    \N    Afghanistan    Klingburgh    16065 Kimberly Crossroad    62451    Mississippi    2016-06-28 01:18:11.353903    2016-10-14 13:02:28.947839        \N    \N    \N    0    \N    \N    \N    \N    female
11018    Coralie    Pouros    weston.crist@mcdermottmueller.biz    \N    Guinea    Schoenbury    6037 Bergstrom Forest    97961-0140    California    2016-08-26 05:44:05.249628    2016-10-14 13:02:28.952592        \N    \N    \N    0    \N    \N    \N    \N    male
11019    Camila    Prohaska    robb.dietrich@sipestowne.info    \N    Denmark    New Junestad    6505 Anne Court    29183-8806    Nebraska    2016-07-17 14:43:02.023893    2016-10-14 13:02:28.956966        \N    \N    \N    0    \N    \N    \N    \N    female
11020    Barbara    Lebsack    bridgette.rempel@weimann.net    \N    Togo    North Santino    36797 Moen Cliffs    14368-3905    Montana    2016-09-07 04:08:10.455317    2016-10-14 13:02:28.961539        \N    \N    \N    0    \N    \N    \N    \N    male
11021    Travis    Ryan    esther.schultz@reichert.name    \N    Togo    North Ginamouth    1838 Mraz Islands    39228-9171    Nebraska    2016-06-28 18:20:09.534944    2016-10-14 13:02:28.96582        \N    \N    \N    0    \N    \N    \N    \N    female
11022    Geovany    Ullrich    rickey.rippin@wolfherzog.io    \N    Morocco    New Keelyland    85038 Marc Loaf    33586    Virginia    2016-08-05 16:50:14.265166    2016-10-14 13:02:28.970345        \N    \N    \N    0    \N    \N    \N    \N    male
11023    Doug    Ryan    corbin_hegmann@dietrich.io    \N    Bulgaria    Daphnefort    3941 Jacobi Turnpike    49773    Idaho    2016-09-06 17:03:39.614711    2016-10-14 13:02:28.974808        \N    \N    \N    0    \N    \N    \N    \N    male
11024    Hulda    Greenholt    kaden.wilkinson@gutmann.net    \N    Hong Kong    New Creola    78533 Michaela Circles    51597-5986    Montana    2016-07-29 20:08:06.946335    2016-10-14 13:02:28.979411        \N    \N    \N    0    \N    \N    \N    \N    female
11025    Werner    Hammes    caidy@hermann.info    \N    Latvia    Port Buford    20480 Rau Circles    31565    Hawaii    2016-09-07 03:02:09.451573    2016-10-14 13:02:28.986534        \N    \N    \N    0    \N    \N    \N    \N    male
11026    Einar    Zieme    jakayla_von@conroylabadie.org    \N    Timor-Leste    Georgetteshire    3125 Morissette Crossroad    85562    Idaho    2016-07-21 19:42:00.586503    2016-10-14 13:02:28.992901        \N    \N    \N    0    \N    \N    \N    \N    female
11027    Sam    Mayert    estefania@stantongreenholt.name    \N    Panama    North Daynaton    8675 Dach Freeway    43554    Tennessee    2016-09-10 23:22:41.074157    2016-10-14 13:02:28.997921        \N    \N    \N    0    \N    \N    \N    \N    male
11028    Clemens    Turcotte    jake@windler.biz    \N    Burkina Faso    Londonville    96626 Shanny Creek    46852    Louisiana    2016-09-16 21:37:20.836805    2016-10-14 13:02:29.003092        \N    \N    \N    0    \N    \N    \N    \N    male
11029    Michel    Gleichner    kacey@west.net    \N    Bahamas    New Hershel    48854 Swaniawski Roads    62935-8611    Montana    2016-09-08 05:23:30.368135    2016-10-14 13:02:29.00844        \N    \N    \N    0    \N    \N    \N    \N    female
12195    Alexandra    Roob    reyna.emmerich@hayes.io    \N    Denmark    Binstown    41499 O'Connell Mall    68701    Vermont    2016-08-22 09:27:32.929406    2016-10-14 13:02:34.894982        \N    \N    \N    0    \N    \N    \N    \N    female
11030    Gerhard    Maggio    joe_ziemann@kriswindler.info    \N    Kiribati    South Gailshire    8948 Caroline Passage    27935-2466    Kentucky    2016-06-29 17:07:26.540283    2016-10-14 13:02:29.013522        \N    \N    \N    0    \N    \N    \N    \N    male
11031    Brice    Raynor    soledad@mayerthermiston.info    \N    Lao People's Democratic Republic    New Jeradhaven    66448 Talon Burgs    33135    Arkansas    2016-08-25 22:22:51.714647    2016-10-14 13:02:29.018549        \N    \N    \N    0    \N    \N    \N    \N    male
11032    Alessia    Haag    jordon@metz.com    \N    Morocco    South Cordellmouth    15410 Kozey Crossroad    90557-4757    South Dakota    2016-08-21 19:09:06.856968    2016-10-14 13:02:29.023592        \N    \N    \N    0    \N    \N    \N    \N    female
11312    Brice    Hamill    ayana@daugherty.io    \N    Estonia    Port Abeville    5762 Gleason Course    49090    New Jersey    2016-09-15 19:18:54.074172    2016-10-14 13:02:29.028523        \N    \N    \N    0    \N    \N    \N    \N    male
11033    Simeon    Kunze    kira.beier@gutkowski.co    \N    Tuvalu    Clementinaville    333 Madeline Row    34231-3166    Arkansas    2016-07-13 23:04:22.24518    2016-10-14 13:02:29.033865        \N    \N    \N    0    \N    \N    \N    \N    female
11034    Salma    Feeney    coby@smith.biz    \N    Egypt    Pfannerstillland    6442 Kovacek Lodge    77373-5041    Connecticut    2016-08-10 23:30:27.959519    2016-10-14 13:02:29.03903        \N    \N    \N    0    \N    \N    \N    \N    female
11035    Mae    Hudson    stanley_pollich@crona.io    \N    Kuwait    East Valentina    4093 Anderson Terrace    31609    Maine    2016-09-24 09:57:37.578959    2016-10-14 13:02:29.044091        \N    \N    \N    0    \N    \N    \N    \N    male
11036    Norma    Williamson    alek@oberbrunner.io    \N    Puerto Rico    Terryhaven    69154 Haag Spring    12730    Oklahoma    2016-06-26 15:25:48.298534    2016-10-14 13:02:29.049299        \N    \N    \N    0    \N    \N    \N    \N    male
11037    Elias    Denesik    arne.connelly@marquardtpouros.co    \N    San Marino    Prudenceburgh    595 Miller Turnpike    32878-3873    Alaska    2016-08-30 20:35:52.502072    2016-10-14 13:02:29.054307        \N    \N    \N    0    \N    \N    \N    \N    female
11038    Lacy    Hermann    joan@pfeffer.com    \N    Republic of Korea    West Bettymouth    91413 Gerhold Viaduct    16709    New York    2016-09-06 21:56:03.318695    2016-10-14 13:02:29.060022        \N    \N    \N    0    \N    \N    \N    \N    female
11039    Orlo    Pagac    deonte@klinggraham.co    \N    Ecuador    Greenfelderland    819 Edwardo Knolls    69805    Louisiana    2016-08-31 18:27:45.570137    2016-10-14 13:02:29.065578        \N    \N    \N    0    \N    \N    \N    \N    male
11040    Carolyn    Heaney    amelie@farrell.name    \N    New Zealand    Murphyport    17866 Elisha Spur    12396-0374    New Mexico    2016-09-09 14:57:09.185946    2016-10-14 13:02:29.070542        \N    \N    \N    0    \N    \N    \N    \N    female
11041    Henri    Stiedemann    chauncey.moore@crooks.net    \N    Congo    Hadleymouth    707 Jazmin Streets    21615-6826    Illinois    2016-09-25 09:35:26.280191    2016-10-14 13:02:29.075711        \N    \N    \N    0    \N    \N    \N    \N    female
11042    Lorna    Parker    doris_balistreri@hyatt.co    \N    Cameroon    Adolfbury    97822 Vincenza Point    75434-9912    Arizona    2016-07-17 22:24:46.870193    2016-10-14 13:02:29.082602        \N    \N    \N    0    \N    \N    \N    \N    male
11043    Macy    Eichmann    zachariah_berge@lynch.co    \N    Morocco    Lake Everettefort    5527 Medhurst Plains    99216    Idaho    2016-08-04 15:18:58.663968    2016-10-14 13:02:29.088363        \N    \N    \N    0    \N    \N    \N    \N    male
11044    Ricky    Paucek    vaughn@lefflercasper.net    \N    Kenya    West Groverside    791 Fernando Lights    57750    Maryland    2016-07-10 10:38:35.439463    2016-10-14 13:02:29.093384        \N    \N    \N    0    \N    \N    \N    \N    male
11045    Roxane    Pfeffer    charlotte_torp@greenfelder.com    \N    Palestinian Territory    Hauckfort    95987 Macie Crossing    31913    Vermont    2016-07-23 14:57:48.294652    2016-10-14 13:02:29.098268        \N    \N    \N    0    \N    \N    \N    \N    female
11046    Vergie    Labadie    chase@becker.com    \N    Cape Verde    West Jaydenport    34836 Johns Haven    94806-4927    Iowa    2016-08-08 20:28:57.373696    2016-10-14 13:02:29.104424        \N    \N    \N    0    \N    \N    \N    \N    male
11047    Kendrick    Eichmann    olaf_kris@schultz.info    \N    Netherlands    Romagueramouth    802 Helena Club    29589-6664    California    2016-09-02 07:23:26.269667    2016-10-14 13:02:29.111182        \N    \N    \N    0    \N    \N    \N    \N    male
11048    Velva    Stanton    lavonne_marquardt@huels.com    \N    Liechtenstein    Kleinland    2124 Gibson Light    65772    Delaware    2016-08-21 20:39:15.508437    2016-10-14 13:02:29.119798        \N    \N    \N    0    \N    \N    \N    \N    female
11049    Junior    Olson    gillian_bayer@lebsack.com    \N    Slovakia (Slovak Republic)    Dareshire    9790 Jaylon Islands    23475    Tennessee    2016-08-24 04:09:20.306924    2016-10-14 13:02:29.125597        \N    \N    \N    0    \N    \N    \N    \N    male
11050    Nella    Kulas    giles_hahn@cainadams.name    \N    Guyana    Gageton    67207 Ralph Inlet    33960    Tennessee    2016-07-31 22:44:20.383249    2016-10-14 13:02:29.130678        \N    \N    \N    0    \N    \N    \N    \N    female
11051    Alejandra    Prohaska    daron@kaulke.biz    \N    United States of America    Kingville    7603 Weston Freeway    66506    Alaska    2016-07-28 05:02:41.222959    2016-10-14 13:02:29.135109        \N    \N    \N    0    \N    \N    \N    \N    female
11052    Ashleigh    Becker    ayla@dach.name    \N    Fiji    New Cedrick    5372 Benjamin Shoals    80438-3776    Virginia    2016-09-11 05:58:21.688062    2016-10-14 13:02:29.139883        \N    \N    \N    0    \N    \N    \N    \N    male
11053    Quinten    Nader    alexandrea@larson.io    \N    Portugal    Lake Enosshire    39890 Levi Neck    23720    Alaska    2016-07-14 06:06:55.12289    2016-10-14 13:02:29.147361        \N    \N    \N    0    \N    \N    \N    \N    male
11054    Hollis    Windler    adam@metz.io    \N    Algeria    Henriton    6308 Maynard Branch    37232-0354    Colorado    2016-08-24 19:08:17.875584    2016-10-14 13:02:29.152603        \N    \N    \N    0    \N    \N    \N    \N    female
11055    Ressie    Kozey    emmalee@harber.io    \N    Bulgaria    South Juliefurt    32017 Kyler Ridge    37125-9443    North Carolina    2016-09-26 01:20:33.453312    2016-10-14 13:02:29.162292        \N    \N    \N    0    \N    \N    \N    \N    female
11196    Davin    Abshire    velda@cartwright.biz    \N    Egypt    North Dejuan    605 Koss Loop    84565    California    2016-09-27 01:19:41.530135    2016-10-14 13:02:29.168849        \N    \N    \N    0    \N    \N    \N    \N    male
11057    Cortez    Pouros    tiana@gleichnerhermiston.io    \N    Niue    New Jazmynstad    663 Shaylee Rapids    32219    Wisconsin    2016-07-19 08:38:33.644378    2016-10-14 13:02:29.173891        \N    \N    \N    0    \N    \N    \N    \N    female
11058    Kelvin    Bergstrom    katelynn.leannon@mraz.com    \N    Faroe Islands    North Malachi    3948 Michel Mount    54526-0413    Arizona    2016-09-11 23:59:25.12585    2016-10-14 13:02:29.180516        \N    \N    \N    0    \N    \N    \N    \N    male
11059    Raymond    Towne    reta.heel@mann.io    \N    Benin    West Otto    569 Cremin Court    30207    Wyoming    2016-08-18 19:29:00.798507    2016-10-14 13:02:29.185066        \N    \N    \N    0    \N    \N    \N    \N    female
11060    Rossie    Lesch    estel@stark.co    \N    Estonia    New Lavernehaven    527 Eleonore Pine    35710    South Dakota    2016-07-04 10:53:44.751666    2016-10-14 13:02:29.190505        \N    \N    \N    0    \N    \N    \N    \N    female
11061    Curt    Jast    joel.mcdermott@wehner.info    \N    Norway    Rockyview    7862 Watsica Village    41728    Montana    2016-08-30 16:22:42.160346    2016-10-14 13:02:29.196886        \N    \N    \N    0    \N    \N    \N    \N    male
11062    Nona    Satterfield    jefferey_berge@stoltenberg.org    \N    Saint Helena    East Lenoraberg    82965 DuBuque Lodge    26571-3154    Wyoming    2016-07-09 18:04:40.862926    2016-10-14 13:02:29.206749        \N    \N    \N    0    \N    \N    \N    \N    female
11063    Bernie    Graham    chris.kertzmann@crooks.co    \N    Switzerland    Stantonchester    30868 Gusikowski Prairie    91021    North Dakota    2016-08-30 03:24:14.40627    2016-10-14 13:02:29.212472        \N    \N    \N    0    \N    \N    \N    \N    male
11064    Rosamond    Donnelly    rhianna@bechtelardamore.org    \N    Greece    West Braintown    2657 Salvador Junction    42622-7657    New Hampshire    2016-06-24 21:43:30.450464    2016-10-14 13:02:29.218328        \N    \N    \N    0    \N    \N    \N    \N    male
11066    Christian    Mills    alayna@orn.name    \N    Pakistan    Lake Elliottborough    843 Jade Junctions    24932-0029    Wyoming    2016-08-03 23:31:54.333706    2016-10-14 13:02:29.2229        \N    \N    \N    0    \N    \N    \N    \N    female
11067    Clemens    Jast    edythe@hermanmayer.io    \N    Mauritania    South Wardland    8748 Chaz Station    26526    Maryland    2016-08-16 14:59:14.341805    2016-10-14 13:02:29.228004        \N    \N    \N    0    \N    \N    \N    \N    male
11068    Giovani    Muller    ari@sauerdouglas.co    \N    Falkland Islands (Malvinas)    Boylemouth    9568 Haag Mills    88142    New Mexico    2016-08-29 07:13:05.559714    2016-10-14 13:02:29.23308        \N    \N    \N    0    \N    \N    \N    \N    female
11069    Darian    Sauer    adrain_durgan@brownlueilwitz.com    \N    Nigeria    Cecilestad    68381 Gorczany Drives    19487-0942    Idaho    2016-09-16 13:59:48.352151    2016-10-14 13:02:29.237942        \N    \N    \N    0    \N    \N    \N    \N    female
11070    Darren    Huels    bria.terry@rogahn.io    \N    Switzerland    Domenicaside    584 Kenny Gardens    51959-2778    Virginia    2016-07-01 19:32:38.020173    2016-10-14 13:02:29.242391        \N    \N    \N    0    \N    \N    \N    \N    male
11071    Gudrun    Stokes    zoey@marvinzieme.org    \N    Georgia    Borerland    6654 Feeney Points    98221    North Dakota    2016-07-25 04:23:14.561535    2016-10-14 13:02:29.247246        \N    \N    \N    0    \N    \N    \N    \N    male
11072    Esperanza    Stamm    cloyd_stoltenberg@ortiz.org    \N    Trinidad and Tobago    Jocelynchester    300 Rutherford Brooks    56001    Delaware    2016-08-15 09:51:20.983338    2016-10-14 13:02:29.252102        \N    \N    \N    0    \N    \N    \N    \N    female
11073    Garett    Lehner    monserrat.bogisich@koeppratke.com    \N    Australia    Danielaborough    2972 Shanny Village    56604-8742    Oklahoma    2016-06-30 11:58:04.261577    2016-10-14 13:02:29.256874        \N    \N    \N    0    \N    \N    \N    \N    male
11074    Orin    Schroeder    sheila@hermann.co    \N    Saint Vincent and the Grenadines    Gusmouth    1443 Art Isle    13504    Kansas    2016-07-31 02:24:27.242656    2016-10-14 13:02:29.261709        \N    \N    \N    0    \N    \N    \N    \N    male
11075    Sofia    Hettinger    bo_stokes@pollich.co    \N    Guernsey    Schambergerhaven    67574 Goodwin Mountain    18548    Nevada    2016-08-02 15:49:18.151088    2016-10-14 13:02:29.270481        \N    \N    \N    0    \N    \N    \N    \N    female
11076    Raquel    Hane    tiffany@damore.biz    \N    Macedonia    South Susanna    521 Moen Mountains    40263    Rhode Island    2016-09-29 02:27:29.530529    2016-10-14 13:02:29.280015        \N    \N    \N    0    \N    \N    \N    \N    male
11077    Leopold    McCullough    vada.vonrueden@kub.io    \N    Trinidad and Tobago    Marleeburgh    34393 Lilyan Flat    55797-3708    Arizona    2016-08-11 21:55:24.022999    2016-10-14 13:02:29.286589        \N    \N    \N    0    \N    \N    \N    \N    male
11362    Cathryn    Leannon    tomasa.collier@walsh.io    \N    New Zealand    Kasandratown    7963 Daren Prairie    55538-3003    Vermont    2016-08-17 20:36:28.778551    2016-10-14 13:02:29.296354        \N    \N    \N    0    \N    \N    \N    \N    female
11079    Roma    Hansen    velva.ullrich@moorehyatt.com    \N    Seychelles    Carolynburgh    410 Wiegand Vista    78846-9889    New Mexico    2016-06-26 11:59:33.959036    2016-10-14 13:02:29.30867        \N    \N    \N    0    \N    \N    \N    \N    male
11080    Florencio    Stokes    eddie.bosco@simonismueller.biz    \N    Taiwan    Lake Lottie    6179 Jana Lakes    73496-1794    Idaho    2016-06-26 22:04:54.232534    2016-10-14 13:02:29.313583        \N    \N    \N    0    \N    \N    \N    \N    female
11081    Nicholas    Sporer    tyrese_leffler@kerluke.com    \N    Kiribati    Westleyburgh    79103 Mitchel Trafficway    40723    Nevada    2016-08-16 05:16:35.235508    2016-10-14 13:02:29.318279        \N    \N    \N    0    \N    \N    \N    \N    female
11083    Lucious    Ferry    flo_mante@gerholdmarquardt.org    \N    Turkey    Randychester    98062 Lloyd Centers    85682    New Hampshire    2016-06-29 21:36:24.94862    2016-10-14 13:02:29.323436        \N    \N    \N    0    \N    \N    \N    \N    male
11084    Morgan    Koch    alyson.hauck@effertz.net    \N    Cambodia    Derekshire    52467 Ortiz Plains    42494-6038    Mississippi    2016-07-05 05:55:14.41415    2016-10-14 13:02:29.328972        \N    \N    \N    0    \N    \N    \N    \N    male
11085    Aylin    Little    erick@rodriguez.biz    \N    Paraguay    Port Abeberg    3298 Eddie Vista    92868    Maine    2016-06-23 12:29:55.407824    2016-10-14 13:02:29.362096        \N    \N    \N    0    \N    \N    \N    \N    female
11086    Rosetta    Denesik    cody_medhurst@raynor.co    \N    Guernsey    East Arielle    872 Yolanda Springs    41047-3886    New Mexico    2016-08-30 13:50:57.69564    2016-10-14 13:02:29.368349        \N    \N    \N    0    \N    \N    \N    \N    female
11087    Deonte    Sipes    alek_pacocha@kuhicstracke.biz    \N    Italy    Aubreyshire    44736 Mayer Port    75213-6143    Connecticut    2016-09-19 23:12:50.838858    2016-10-14 13:02:29.37345        \N    \N    \N    0    \N    \N    \N    \N    male
11091    Kyle    Mertz    davonte@tillman.io    \N    Uzbekistan    New Adolf    4793 Paxton Islands    91112    Oklahoma    2016-09-01 01:40:57.858413    2016-10-14 13:02:29.379394        \N    \N    \N    0    \N    \N    \N    \N    female
11092    Ruthie    Torp    favian_rempel@schneiderschiller.org    \N    Saint Vincent and the Grenadines    Jamirborough    91981 Shields Drives    90204    South Carolina    2016-09-26 08:31:02.036076    2016-10-14 13:02:29.38439        \N    \N    \N    0    \N    \N    \N    \N    male
11093    Mireille    Gleichner    junius@thiel.io    \N    Sri Lanka    Monahanport    495 Torey Neck    52942-1159    Alaska    2016-08-21 20:36:54.966116    2016-10-14 13:02:29.389462        \N    \N    \N    0    \N    \N    \N    \N    male
11094    Jessyca    Nader    mabel@heidenreich.biz    \N    Norfolk Island    Kihnberg    42503 Rowe Ways    17481-4678    Alaska    2016-09-15 08:43:05.793085    2016-10-14 13:02:29.394175        \N    \N    \N    0    \N    \N    \N    \N    female
11095    Constance    Kuvalis    mallory@hamill.net    \N    Kuwait    Estrellamouth    49777 Graham Lights    91203    Arkansas    2016-07-29 12:09:43.413995    2016-10-14 13:02:29.399607        \N    \N    \N    0    \N    \N    \N    \N    male
11096    Kaylee    Okuneva    caleigh.jenkins@wisozk.io    \N    Liberia    New Fatimaville    1690 Stephon Parkway    87767    Oregon    2016-08-16 12:59:27.169087    2016-10-14 13:02:29.407995        \N    \N    \N    0    \N    \N    \N    \N    female
11097    Dean    Stracke    aiden.beatty@hackettsporer.biz    \N    Bahamas    Lake Samsonton    608 Doyle Curve    65274    Minnesota    2016-09-13 14:33:54.88155    2016-10-14 13:02:29.412802        \N    \N    \N    0    \N    \N    \N    \N    female
11098    Kyler    Dietrich    noe.moriette@gislason.co    \N    Saint Vincent and the Grenadines    Port Jerald    187 Padberg Square    62072    Illinois    2016-08-16 17:56:00.383642    2016-10-14 13:02:29.417943        \N    \N    \N    0    \N    \N    \N    \N    female
11099    Junius    Deckow    felton@gulgowski.biz    \N    Grenada    South Jaceport    41701 Tabitha Mews    66235-1609    Idaho    2016-08-27 14:33:55.537842    2016-10-14 13:02:29.423022        \N    \N    \N    0    \N    \N    \N    \N    female
11100    Dustin    Smitham    pablo@gibsonhettinger.biz    \N    Chile    Lake Cheyenneberg    4792 King Divide    76821    Montana    2016-06-26 04:57:50.361378    2016-10-14 13:02:29.428189        \N    \N    \N    0    \N    \N    \N    \N    female
11101    Dane    Feeney    eleanore@douglas.biz    \N    Aruba    New Letaport    708 Pansy Summit    79045    Utah    2016-09-16 07:27:17.542645    2016-10-14 13:02:29.43323        \N    \N    \N    0    \N    \N    \N    \N    female
11102    Maddison    Yost    baylee@schamberger.org    \N    Jersey    North Jalen    9031 Moore Expressway    38077-5880    Washington    2016-08-07 11:05:48.483109    2016-10-14 13:02:29.437885        \N    \N    \N    0    \N    \N    \N    \N    female
11103    Paul    Gulgowski    alberta.barrows@gulgowskischmeler.co    \N    Equatorial Guinea    North Morrismouth    7056 Jeramy Views    44288    Georgia    2016-07-30 11:56:52.326248    2016-10-14 13:02:29.442578        \N    \N    \N    0    \N    \N    \N    \N    female
11105    Bret    Crona    brady@cain.co    \N    Indonesia    Tracyton    39141 Claud Springs    70531-3015    Wisconsin    2016-09-29 09:12:25.036082    2016-10-14 13:02:29.453581        \N    \N    \N    0    \N    \N    \N    \N    male
11106    Henri    Orn    joey@wildermanklein.name    \N    Malawi    Lake Orie    410 Durgan Circles    67188    Louisiana    2016-08-02 21:20:26.329996    2016-10-14 13:02:29.458584        \N    \N    \N    0    \N    \N    \N    \N    female
11107    Aric    Predovic    justyn.larkin@hills.com    \N    United States of America    New Pauline    29528 Kozey Place    50454    Oregon    2016-07-31 06:07:45.938311    2016-10-14 13:02:29.46319        \N    \N    \N    0    \N    \N    \N    \N    female
11108    Carol    Lemke    gertrude@schultz.net    \N    Fiji    Willmsside    3665 Joanny Harbor    96514-0582    Massachusetts    2016-07-30 07:23:34.366443    2016-10-14 13:02:29.467913        \N    \N    \N    0    \N    \N    \N    \N    male
11109    Avis    Hoppe    kaylee@murray.org    \N    Belarus    Archibaldborough    220 Omer Fields    71395    Indiana    2016-07-29 13:57:56.602191    2016-10-14 13:02:29.472965        \N    \N    \N    0    \N    \N    \N    \N    female
11110    Florian    Bailey    seamus.fay@mertzjast.co    \N    Oman    Port Lonny    948 Malcolm Fort    31311-0682    Hawaii    2016-09-08 10:57:23.410725    2016-10-14 13:02:29.477689        \N    \N    \N    0    \N    \N    \N    \N    male
11111    Johathan    Kirlin    remington.pouros@bogisich.name    \N    Tuvalu    Johnsstad    48387 Nicolas Forest    18015    Nebraska    2016-09-07 21:58:49.359977    2016-10-14 13:02:29.48237        \N    \N    \N    0    \N    \N    \N    \N    male
11112    Javon    Lemke    toby@nitzsche.org    \N    Tunisia    Pfannerstillside    8067 Walker Drives    32106    Kentucky    2016-09-26 16:28:12.016687    2016-10-14 13:02:29.486902        \N    \N    \N    0    \N    \N    \N    \N    female
11113    Giles    Erdman    dion_rempel@howe.io    \N    Holy See (Vatican City State)    West Aurelio    176 Abdul Points    59603    Nebraska    2016-08-17 06:09:51.514488    2016-10-14 13:02:29.491903        \N    \N    \N    0    \N    \N    \N    \N    female
11114    Ezekiel    Wiegand    soledad@hane.name    \N    Bermuda    Marjolainefurt    49388 Bauch Causeway    88894-4490    West Virginia    2016-09-21 09:47:14.12804    2016-10-14 13:02:29.497276        \N    \N    \N    0    \N    \N    \N    \N    male
11115    Avery    Beer    mose_gerlach@ebertcronin.io    \N    Gambia    Shanahanfort    7130 Wolff Vista    98482-2158    Washington    2016-07-08 11:50:12.309639    2016-10-14 13:02:29.501622        \N    \N    \N    0    \N    \N    \N    \N    female
11116    Beatrice    Ratke    rosalee.heel@schowalterhane.info    \N    Cyprus    Lake Yasmeenmouth    93653 Erdman Prairie    62831    Nevada    2016-08-15 06:31:13.746605    2016-10-14 13:02:29.509043        \N    \N    \N    0    \N    \N    \N    \N    female
11117    Bernadine    Mann    mohammad@bruen.org    \N    Cyprus    North Lizzie    67647 Ashleigh Mountain    22299-9050    New Hampshire    2016-08-09 10:29:10.561358    2016-10-14 13:02:29.516511        \N    \N    \N    0    \N    \N    \N    \N    female
11118    Hertha    Wilkinson    kimberly@hudsonkeler.co    \N    Taiwan    Port Jerrod    70270 Graciela Ville    69891    Texas    2016-09-01 01:08:37.770547    2016-10-14 13:02:29.522162        \N    \N    \N    0    \N    \N    \N    \N    male
11119    Vickie    Tillman    alphonso@kaulkebeahan.com    \N    Poland    New Gloria    37081 Selmer Valley    50718    Florida    2016-07-20 09:43:06.090545    2016-10-14 13:02:29.526848        \N    \N    \N    0    \N    \N    \N    \N    female
11120    Kole    Hills    jordane@vonberge.org    \N    Eritrea    Ismaelfurt    8679 Ephraim Forest    86876    West Virginia    2016-07-23 08:39:38.684499    2016-10-14 13:02:29.531599        \N    \N    \N    0    \N    \N    \N    \N    female
11121    Tommie    Lebsack    christian.donnelly@prohaska.com    \N    Pitcairn Islands    North Chazberg    635 Pfeffer Field    22171-6598    Ohio    2016-08-30 11:55:12.899512    2016-10-14 13:02:29.53669        \N    \N    \N    0    \N    \N    \N    \N    female
11122    Jack    Veum    marie_casper@boylebreitenberg.co    \N    Moldova    South Caseyburgh    76335 Senger Inlet    74021    Virginia    2016-09-16 14:38:38.397401    2016-10-14 13:02:29.542425        \N    \N    \N    0    \N    \N    \N    \N    female
11123    Aidan    Rice    jett.koepp@gutmanndurgan.io    \N    Cyprus    Delilahfort    314 Rosanna Squares    12070    Minnesota    2016-07-25 06:19:46.96326    2016-10-14 13:02:29.547055        \N    \N    \N    0    \N    \N    \N    \N    female
11124    Golda    Hermann    morgan.carroll@oreilly.co    \N    Bahamas    New Myrtis    3549 Hermiston Expressway    30486-3552    Florida    2016-07-25 02:30:30.89257    2016-10-14 13:02:29.551899        \N    \N    \N    0    \N    \N    \N    \N    female
11125    Reta    Rowe    dangelo@weber.org    \N    Sierra Leone    Zulaufside    590 Riley Skyway    85041-1337    New Jersey    2016-08-22 08:53:48.886637    2016-10-14 13:02:29.556615        \N    \N    \N    0    \N    \N    \N    \N    male
11408    Sydney    Murazik    joel@marquardt.biz    \N    Italy    Patmouth    7398 Grady Points    85338    Iowa    2016-08-28 01:02:59.335207    2016-10-14 13:02:29.561265        \N    \N    \N    0    \N    \N    \N    \N    female
11126    Salvatore    Ortiz    layne.turner@kilback.info    \N    Solomon Islands    Danteberg    71585 Keeling Glen    54543-9245    Arkansas    2016-08-26 21:03:45.695443    2016-10-14 13:02:29.5706        \N    \N    \N    0    \N    \N    \N    \N    female
11127    Maybell    Stamm    donnie@blanda.co    \N    Swaziland    Fisherstad    2353 Effertz Glen    64442    Oklahoma    2016-07-24 08:14:01.302368    2016-10-14 13:02:29.582701        \N    \N    \N    0    \N    \N    \N    \N    female
11128    Kathryn    Upton    garland@rohan.com    \N    French Polynesia    Liaton    65283 Medhurst Groves    49944    Washington    2016-09-27 21:14:59.046664    2016-10-14 13:02:29.617138        \N    \N    \N    0    \N    \N    \N    \N    male
11129    Brittany    Johnson    fredrick@boscoschmitt.io    \N    Western Sahara    Doyleburgh    8206 Braden Crossing    82159    West Virginia    2016-07-20 08:25:30.430803    2016-10-14 13:02:29.629006        \N    \N    \N    0    \N    \N    \N    \N    female
11130    Lucile    Schinner    elizabeth@sauer.com    \N    Belize    West Esmeralda    85060 Dino Drive    61950-4905    Pennsylvania    2016-08-30 09:27:05.595895    2016-10-14 13:02:29.654664        \N    \N    \N    0    \N    \N    \N    \N    male
11132    Mayra    Moen    terry@torp.com    \N    Sierra Leone    East Anthonyhaven    89963 Dietrich Trafficway    83065    Delaware    2016-09-28 17:34:59.36917    2016-10-14 13:02:29.672035        \N    \N    \N    0    \N    \N    \N    \N    female
11133    Lukas    Fay    haven@pfefferwelch.io    \N    Mongolia    South Hayley    9714 Edmund Creek    95676    California    2016-08-20 16:45:22.572196    2016-10-14 13:02:29.686541        \N    \N    \N    0    \N    \N    \N    \N    female
11134    Kamille    Schmitt    alene_walter@nitzsche.name    \N    Kiribati    Dinoland    2181 Kessler Stravenue    17746    Illinois    2016-08-01 10:07:34.369106    2016-10-14 13:02:29.693684        \N    \N    \N    0    \N    \N    \N    \N    male
11135    Mikayla    Kautzer    eliezer.lemke@wehner.net    \N    Lithuania    New Aliyashire    687 Beau Bypass    68166-0158    New Hampshire    2016-08-04 17:41:38.43232    2016-10-14 13:02:29.701258        \N    \N    \N    0    \N    \N    \N    \N    male
11136    Dawn    Dibbert    moie.bayer@mertzoreilly.net    \N    Bosnia and Herzegovina    Abernathyton    9540 Weissnat Tunnel    96864    California    2016-08-09 08:25:36.506182    2016-10-14 13:02:29.707737        \N    \N    \N    0    \N    \N    \N    \N    female
11137    Bettie    Glover    raina@ernser.io    \N    Tajikistan    Lake Stanford    269 Nathen Vista    25611-2481    California    2016-09-05 05:45:19.507191    2016-10-14 13:02:29.714477        \N    \N    \N    0    \N    \N    \N    \N    male
11138    Neoma    Cassin    ocie@bayerromaguera.com    \N    Tuvalu    Schinnerstad    996 Estelle Cove    67851    Arkansas    2016-07-01 04:44:10.320944    2016-10-14 13:02:29.725712        \N    \N    \N    0    \N    \N    \N    \N    male
11139    Ara    D'Amore    kasandra@schuppe.org    \N    Turkey    Mooreberg    20218 Ewald Lakes    14161-2366    Oklahoma    2016-07-27 10:39:23.581409    2016-10-14 13:02:29.733643        \N    \N    \N    0    \N    \N    \N    \N    female
11140    Raymond    Klein    tom.lind@kuhnsauer.org    \N    Greece    Nealbury    56550 Savanah Haven    81289    Georgia    2016-07-11 09:39:06.773659    2016-10-14 13:02:29.738775        \N    \N    \N    0    \N    \N    \N    \N    male
11141    Elmore    Heaney    rex_wuckert@heller.co    \N    Ghana    Kohlerport    460 Feil Route    86865-5209    California    2016-09-21 01:17:53.568379    2016-10-14 13:02:29.744059        \N    \N    \N    0    \N    \N    \N    \N    female
11142    Freddy    Jacobs    hadley@schimmel.biz    \N    Netherlands Antilles    Hauckburgh    42542 O'Conner Park    14719-2751    Pennsylvania    2016-09-08 11:42:48.77335    2016-10-14 13:02:29.748781        \N    \N    \N    0    \N    \N    \N    \N    female
11143    Orpha    Mertz    gudrun.bergstrom@bednarstracke.org    \N    Armenia    North Nikolasmouth    57746 Violet Lodge    14086-3012    New York    2016-08-16 09:53:37.600692    2016-10-14 13:02:29.753511        \N    \N    \N    0    \N    \N    \N    \N    male
11144    Marta    Schroeder    adam@mertz.co    \N    Yemen    Port Barney    530 Ondricka Locks    60972    Indiana    2016-09-21 20:22:59.873352    2016-10-14 13:02:29.758148        \N    \N    \N    0    \N    \N    \N    \N    female
11145    Victoria    Bode    carli.ferry@greenholtchristiansen.net    \N    Moldova    Kendrickport    96323 Makenna Village    28903-0340    Utah    2016-09-19 09:36:35.740601    2016-10-14 13:02:29.763205        \N    \N    \N    0    \N    \N    \N    \N    male
11146    Dejah    Farrell    theodora@hand.org    \N    Croatia    West Lavonberg    879 Boyle Land    48642-1749    New York    2016-07-23 01:12:56.484583    2016-10-14 13:02:29.767703        \N    \N    \N    0    \N    \N    \N    \N    female
11147    Valentin    Simonis    amiya_stiedemann@hegmann.name    \N    Grenada    South Gay    623 Nolan Lodge    11953    New York    2016-08-28 20:15:07.241265    2016-10-14 13:02:29.772296        \N    \N    \N    0    \N    \N    \N    \N    male
11148    Leonel    Morissette    mertie@cummingswintheiser.info    \N    Sao Tome and Principe    Auershire    594 Candido Stream    99797    Nevada    2016-09-28 21:42:02.880549    2016-10-14 13:02:29.77675        \N    \N    \N    0    \N    \N    \N    \N    male
11149    Meghan    Jacobson    adolph.rodriguez@stammmarvin.name    \N    Togo    Lake Madalyn    460 Lebsack Freeway    63545-2771    Oklahoma    2016-07-25 01:46:52.690106    2016-10-14 13:02:29.781479        \N    \N    \N    0    \N    \N    \N    \N    female
11150    Salvatore    Tremblay    jovanny.mclaughlin@rueckergibson.biz    \N    Saint Kitts and Nevis    Conorhaven    283 Hand Hill    52609    Alaska    2016-08-04 17:05:43.265146    2016-10-14 13:02:29.786316        \N    \N    \N    0    \N    \N    \N    \N    female
11151    Mario    DuBuque    mandy@waelchi.co    \N    Bangladesh    Kshlerinhaven    94977 Rozella Alley    20293    Alaska    2016-07-06 09:45:51.48508    2016-10-14 13:02:29.791514        \N    \N    \N    0    \N    \N    \N    \N    male
11152    Mazie    Sporer    graciela.hahn@ferrystanton.co    \N    Angola    Schusterburgh    2492 Monahan Ville    83995    Idaho    2016-08-19 06:32:35.188198    2016-10-14 13:02:29.796723        \N    \N    \N    0    \N    \N    \N    \N    male
11153    Eliza    Larson    mavis@hansen.info    \N    Saint Lucia    East Laurel    44975 Alejandrin Ville    90283-6076    Maryland    2016-06-23 17:45:03.44536    2016-10-14 13:02:29.802885        \N    \N    \N    0    \N    \N    \N    \N    female
11154    Juston    Feil    octavia@legros.name    \N    Saint Pierre and Miquelon    Rubystad    380 Elliott Path    65778    Florida    2016-09-18 01:10:09.741758    2016-10-14 13:02:29.808244        \N    \N    \N    0    \N    \N    \N    \N    male
11155    Rogelio    Walker    baylee.larkin@cremin.com    \N    Austria    Lake Bailey    956 Rodriguez Port    75837    Virginia    2016-09-17 06:50:56.885187    2016-10-14 13:02:29.813458        \N    \N    \N    0    \N    \N    \N    \N    female
11156    Jose    Kling    seamus.batz@wiegand.io    \N    Saint Helena    Port Rutheside    116 Ora Harbor    76409-1717    Arizona    2016-08-02 04:44:12.220231    2016-10-14 13:02:29.820166        \N    \N    \N    0    \N    \N    \N    \N    male
11157    Theo    Kling    valerie@reichel.co    \N    Seychelles    Rhiannonshire    5200 Madisyn Ports    48160    Mississippi    2016-06-25 09:36:48.954791    2016-10-14 13:02:29.828622        \N    \N    \N    0    \N    \N    \N    \N    female
11158    Nadia    Osinski    shania@balistreri.net    \N    Mozambique    Eusebioville    63814 Myrtice Rapids    88935-4776    Missouri    2016-08-19 19:33:13.244784    2016-10-14 13:02:29.836216        \N    \N    \N    0    \N    \N    \N    \N    female
11159    Dora    Cartwright    ava@kirlin.info    \N    Central African Republic    Hollyborough    947 Avery Underpass    53796    South Carolina    2016-09-10 10:17:32.895094    2016-10-14 13:02:29.842826        \N    \N    \N    0    \N    \N    \N    \N    male
11160    Johann    Zulauf    skyla_heaney@corkery.name    \N    Anguilla    New Dariusmouth    28325 Serena Station    53434-5596    Indiana    2016-07-16 13:33:53.138632    2016-10-14 13:02:29.84848        \N    \N    \N    0    \N    \N    \N    \N    male
10847    Skyla    Rowe    kiel@hand.info    \N    Belize    Tyshawnstad    55657 Leuschke Crest    66281-5776    New York    2016-09-01 05:02:40.96855    2016-10-14 13:02:29.862464        \N    \N    \N    0    \N    \N    \N    \N    male
11161    Jasper    Barrows    maeve@boyle.name    \N    Liechtenstein    Port Jermain    5732 Stehr Falls    30706    Georgia    2016-08-31 11:36:46.559605    2016-10-14 13:02:29.869335        \N    \N    \N    0    \N    \N    \N    \N    female
11162    Shad    VonRueden    timmy@kovacek.net    \N    Mayotte    West Abbigailton    345 Rosetta Creek    42942-0497    Delaware    2016-07-25 16:16:38.015902    2016-10-14 13:02:29.87856        \N    \N    \N    0    \N    \N    \N    \N    female
11163    Fausto    Beier    prince_douglas@durganweimann.io    \N    Uruguay    Walterstad    35960 Alfred Square    98643    Wisconsin    2016-07-23 16:47:07.128046    2016-10-14 13:02:29.88398        \N    \N    \N    0    \N    \N    \N    \N    female
11164    Garett    Schmitt    joanny@blickhauck.net    \N    Pakistan    Feilview    74638 Jaunita Cliff    80813    Connecticut    2016-07-26 05:29:05.911234    2016-10-14 13:02:29.888515        \N    \N    \N    0    \N    \N    \N    \N    female
11165    Okey    Ziemann    joanne@greenullrich.co    \N    Tanzania    East Retabury    788 Klein Freeway    55670    Iowa    2016-07-19 23:56:02.140733    2016-10-14 13:02:29.894051        \N    \N    \N    0    \N    \N    \N    \N    female
11166    Dejon    Leuschke    kendall_mcdermott@fay.io    \N    Svalbard & Jan Mayen Islands    Boyerville    979 Fay Harbor    30123-4923    Idaho    2016-09-18 07:57:56.461016    2016-10-14 13:02:29.898824        \N    \N    \N    0    \N    \N    \N    \N    male
11167    Gilda    Stehr    lee_wisoky@padberg.org    \N    Estonia    North Napoleonbury    95310 Columbus Knolls    15563    South Dakota    2016-09-17 13:30:18.930492    2016-10-14 13:02:29.90316        \N    \N    \N    0    \N    \N    \N    \N    male
11168    Kyle    Carter    frieda.klein@friesenhane.com    \N    Uruguay    Daronburgh    4508 Streich Plains    45156-6374    South Carolina    2016-09-22 10:08:17.301004    2016-10-14 13:02:29.907341        \N    \N    \N    0    \N    \N    \N    \N    male
11169    Caden    Kuphal    josiane_huel@hand.name    \N    Saint Lucia    Lake Nina    102 Runolfsson Loaf    62618-2419    South Carolina    2016-08-10 13:50:48.291778    2016-10-14 13:02:29.912031        \N    \N    \N    0    \N    \N    \N    \N    female
11170    Nick    Lueilwitz    katelyn.beatty@lynchblick.org    \N    Libyan Arab Jamahiriya    Eugeneville    347 Velda Via    19098    Connecticut    2016-09-13 13:58:41.835066    2016-10-14 13:02:29.926236        \N    \N    \N    0    \N    \N    \N    \N    male
11171    Darrick    Gaylord    elbert@kovacek.name    \N    Cuba    North Lincoln    96892 Feil Spurs    49780-7517    North Carolina    2016-08-21 09:33:25.981123    2016-10-14 13:02:29.931499        \N    \N    \N    0    \N    \N    \N    \N    female
11172    Jayce    Block    leslie_blanda@wyman.io    \N    Kuwait    Sonnyville    788 Cheyanne Forest    46531-1002    Connecticut    2016-07-21 06:39:46.766791    2016-10-14 13:02:29.936813        \N    \N    \N    0    \N    \N    \N    \N    female
11173    Molly    Smitham    mazie.moore@von.org    \N    China    Port Jaquelin    4179 Annette Trace    48308    South Dakota    2016-07-20 10:07:07.304989    2016-10-14 13:02:29.94242        \N    \N    \N    0    \N    \N    \N    \N    female
11174    Lawson    Kris    raina@mcculloughrunolfon.io    \N    Armenia    Lake Hardy    98179 Precious Row    72282-7747    Missouri    2016-07-02 00:46:21.926888    2016-10-14 13:02:29.94911        \N    \N    \N    0    \N    \N    \N    \N    male
11175    Sydnee    Johnson    stacey_bartoletti@effertz.name    \N    Libyan Arab Jamahiriya    West Jaron    2486 Sibyl Expressway    88129-5946    Arkansas    2016-07-08 01:05:21.209389    2016-10-14 13:02:29.958268        \N    \N    \N    0    \N    \N    \N    \N    female
11176    Ursula    Schiller    josiane_denesik@torpbartell.com    \N    Pakistan    East Jarod    48428 Ernser Square    19932-3185    Arkansas    2016-08-31 19:04:44.205129    2016-10-14 13:02:29.966128        \N    \N    \N    0    \N    \N    \N    \N    male
11177    Abbey    Baumbach    adell@ryan.info    \N    Lesotho    Schummfort    23714 Milford Shoal    62686    New Mexico    2016-08-05 21:40:06.174881    2016-10-14 13:02:29.972501        \N    \N    \N    0    \N    \N    \N    \N    female
11178    Lily    Morar    andreanne@morietteraynor.io    \N    Ireland    South Oliver    398 Flatley Drive    61740-5164    Connecticut    2016-08-07 06:15:49.576353    2016-10-14 13:02:29.979034        \N    \N    \N    0    \N    \N    \N    \N    female
11179    Abagail    Tillman    julius_mann@kovacekmoore.org    \N    Turks and Caicos Islands    Reidton    56598 Hudson Shores    11828-6015    Ohio    2016-08-08 19:18:16.620223    2016-10-14 13:02:29.985011        \N    \N    \N    0    \N    \N    \N    \N    female
11180    Angel    Parker    howard.kshlerin@veum.net    \N    Comoros    New Beverly    4811 Fadel Island    56275    Alabama    2016-09-09 15:43:57.841321    2016-10-14 13:02:29.991391        \N    \N    \N    0    \N    \N    \N    \N    male
11181    Dell    Rau    caie_legros@lockman.name    \N    Mongolia    New Birdie    8399 Genevieve Field    91984    Mississippi    2016-06-28 09:25:04.572817    2016-10-14 13:02:29.996435        \N    \N    \N    0    \N    \N    \N    \N    male
11182    Velda    DuBuque    bonita@nitzsche.net    \N    Saint Kitts and Nevis    South Elenachester    1487 Amie Heights    30168    Washington    2016-08-11 05:38:45.758186    2016-10-14 13:02:30.000995        \N    \N    \N    0    \N    \N    \N    \N    female
11183    Verner    Hermann    yasmeen_macejkovic@konopelskiparisian.biz    \N    Ukraine    Brisachester    6786 Leopoldo Ways    52004    Indiana    2016-07-20 00:10:43.142593    2016-10-14 13:02:30.005793        \N    \N    \N    0    \N    \N    \N    \N    female
11184    Christiana    Wisozk    kylee@veum.org    \N    Armenia    North Serenastad    8379 Presley Meadow    77670-8679    Iowa    2016-09-22 10:24:53.49483    2016-10-14 13:02:30.011385        \N    \N    \N    0    \N    \N    \N    \N    male
11185    Mazie    Schneider    kianna@sipes.co    \N    Vietnam    Agustinville    817 Dare Rest    86080    Iowa    2016-07-14 12:41:48.582355    2016-10-14 13:02:30.016044        \N    \N    \N    0    \N    \N    \N    \N    male
11186    Aliya    Rutherford    efrain.hegmann@weinatcrooks.net    \N    Belize    Hassanville    9574 Jordan Islands    49732    North Dakota    2016-08-24 14:43:45.295176    2016-10-14 13:02:30.020328        \N    \N    \N    0    \N    \N    \N    \N    female
11187    Donnell    Feeney    al.considine@kuhn.info    \N    Guernsey    East Percival    21423 Alfreda Plaza    39708    New York    2016-08-08 07:14:02.496546    2016-10-14 13:02:30.024236        \N    \N    \N    0    \N    \N    \N    \N    female
11188    Giovanna    West    ursula.kris@stokesweinat.org    \N    Greenland    Emmerichside    16919 Kirlin Bridge    68006    Wisconsin    2016-07-25 15:18:17.660749    2016-10-14 13:02:30.028846        \N    \N    \N    0    \N    \N    \N    \N    female
11189    Mariano    Yost    alisha.spinka@strosinnienow.co    \N    Zimbabwe    Goyettehaven    184 Rath Rest    92491-3832    New Mexico    2016-08-05 14:17:59.065396    2016-10-14 13:02:30.033243        \N    \N    \N    0    \N    \N    \N    \N    female
11190    Willy    Gutkowski    kathlyn@crona.biz    \N    Spain    Lake Lillianmouth    825 Humberto Shore    86482    Nevada    2016-09-23 05:27:17.869317    2016-10-14 13:02:30.037934        \N    \N    \N    0    \N    \N    \N    \N    female
11191    Sam    Gaylord    alexys_olson@padberg.co    \N    Austria    Colbyton    81150 Prosacco Circles    63315-7279    California    2016-08-01 09:41:59.850389    2016-10-14 13:02:30.042626        \N    \N    \N    0    \N    \N    \N    \N    male
11192    Silas    Price    margaretta.waelchi@fayparisian.net    \N    Saint Pierre and Miquelon    Shanelhaven    345 Howe Land    52653-5542    South Dakota    2016-07-25 02:12:46.730686    2016-10-14 13:02:30.047882        \N    \N    \N    0    \N    \N    \N    \N    female
11193    Tia    Howell    lowell@okuneva.net    \N    Qatar    Gilbertside    89324 Kovacek Squares    49144    Washington    2016-09-14 22:00:42.629671    2016-10-14 13:02:30.054533        \N    \N    \N    0    \N    \N    \N    \N    female
11194    Omer    Stoltenberg    hollie@daniel.org    \N    Chad    Antwanborough    4211 Quigley Spring    44829-3561    North Carolina    2016-09-12 02:16:51.190267    2016-10-14 13:02:30.059479        \N    \N    \N    0    \N    \N    \N    \N    male
11195    Stanford    Fritsch    zola@quigleybalistreri.org    \N    Timor-Leste    Thompsonville    7020 O'Keefe Skyway    30870-1390    Montana    2016-08-02 23:49:04.535293    2016-10-14 13:02:30.065004        \N    \N    \N    0    \N    \N    \N    \N    male
11197    Stanford    Langosh    breana@price.info    \N    Bahamas    Lake Abigale    90622 Alanis Fork    99975-3733    Alaska    2016-07-11 00:51:58.057556    2016-10-14 13:02:30.073102        \N    \N    \N    0    \N    \N    \N    \N    female
11198    Karley    Johnston    kelsi_haley@farrelllittle.co    \N    Kuwait    Kochburgh    8946 Champlin Key    49936-0382    Indiana    2016-08-11 21:59:02.892546    2016-10-14 13:02:30.085985        \N    \N    \N    0    \N    \N    \N    \N    female
11199    Ethyl    Bergnaum    tracey@abbott.name    \N    Lao People's Democratic Republic    Rowefurt    73343 Doyle Crescent    97278    Washington    2016-08-31 17:11:37.152366    2016-10-14 13:02:30.094702        \N    \N    \N    0    \N    \N    \N    \N    male
11200    Birdie    Hansen    randall_frami@halvorson.co    \N    Reunion    Forestfurt    6024 Keebler Light    87801    Kansas    2016-08-28 05:55:49.133458    2016-10-14 13:02:30.09993        \N    \N    \N    0    \N    \N    \N    \N    female
11201    Loyce    Turcotte    rhett_weinat@moriette.io    \N    Ukraine    Muellerberg    7597 Lucie Streets    88470-7071    Montana    2016-09-22 12:02:55.850231    2016-10-14 13:02:30.111075        \N    \N    \N    0    \N    \N    \N    \N    female
11202    Matt    Zboncak    elna_jacobi@kuvalis.com    \N    France    New Orie    205 Cleora Trafficway    94315-1920    Kentucky    2016-07-21 23:56:27.239362    2016-10-14 13:02:30.116452        \N    \N    \N    0    \N    \N    \N    \N    male
11203    Shakira    Bednar    margarita@kshlerin.net    \N    Angola    East Gilberto    41945 Hallie Crescent    97496    Maryland    2016-08-26 10:51:36.78556    2016-10-14 13:02:30.123039        \N    \N    \N    0    \N    \N    \N    \N    female
11204    Jamison    Stoltenberg    adolf_bailey@turner.info    \N    Iraq    Nikkistad    8678 Rosa Land    42129-7452    Mississippi    2016-08-22 01:44:05.893409    2016-10-14 13:02:30.131557        \N    \N    \N    0    \N    \N    \N    \N    male
11205    Vivian    Pagac    moriah_hoppe@simoniscain.co    \N    South Africa    Lake King    141 Conn Mission    95158    Idaho    2016-07-04 09:52:22.329722    2016-10-14 13:02:30.13657        \N    \N    \N    0    \N    \N    \N    \N    male
11206    Cloyd    Ruecker    maudie@lind.biz    \N    Spain    Lake Kipland    477 Jakubowski Via    78687-6994    North Carolina    2016-08-11 07:18:14.721526    2016-10-14 13:02:30.141158        \N    \N    \N    0    \N    \N    \N    \N    female
11207    Brianne    Cormier    kaci@faheybraun.name    \N    Kuwait    Bennettview    2198 Nitzsche Loop    17834-9498    Connecticut    2016-07-16 11:28:35.961254    2016-10-14 13:02:30.150607        \N    \N    \N    0    \N    \N    \N    \N    female
11208    Toni    Hickle    joanne@purdyohara.net    \N    Iraq    New Mozelle    9087 Jaylan Courts    45099    California    2016-08-06 21:13:28.151484    2016-10-14 13:02:30.155217        \N    \N    \N    0    \N    \N    \N    \N    female
11209    Hiram    Williamson    donavon_friesen@keler.io    \N    United Arab Emirates    Kunzeville    403 Litzy Ridges    96427-2678    Oklahoma    2016-07-07 08:00:51.325935    2016-10-14 13:02:30.159637        \N    \N    \N    0    \N    \N    \N    \N    female
11210    Flavie    Schinner    alejandra@ohara.info    \N    Democratic People's Republic of Korea    Treutelborough    3220 Bergnaum Squares    89742-4647    Alaska    2016-08-24 20:35:50.644512    2016-10-14 13:02:30.164127        \N    \N    \N    0    \N    \N    \N    \N    female
11211    Rosendo    Dietrich    dusty@kemmer.co    \N    Germany    Kertzmannshire    92153 Jacobi Keys    55893-3666    New York    2016-09-14 03:30:04.603457    2016-10-14 13:02:30.168763        \N    \N    \N    0    \N    \N    \N    \N    female
11212    Oran    McDermott    loyce@cronin.net    \N    Armenia    West Lauryville    700 Lera Greens    69286-6952    Iowa    2016-07-31 17:09:05.715816    2016-10-14 13:02:30.184121        \N    \N    \N    0    \N    \N    \N    \N    female
11213    Kip    Stoltenberg    yolanda.pouros@west.biz    \N    Italy    Monaport    354 Lynch Rapids    68911    New York    2016-09-14 03:01:52.637514    2016-10-14 13:02:30.215027        \N    \N    \N    0    \N    \N    \N    \N    male
11214    Thora    Littel    nikki_koepp@hirthe.net    \N    Equatorial Guinea    Lake Irwin    5745 Annetta Neck    22112    Kansas    2016-09-09 00:01:42.631746    2016-10-14 13:02:30.221272        \N    \N    \N    0    \N    \N    \N    \N    male
11215    Casper    Wehner    minerva.klein@legroswaters.co    \N    Tokelau    Jerrellhaven    397 Liana Rapids    94617    Hawaii    2016-07-27 13:36:45.791063    2016-10-14 13:02:30.225938        \N    \N    \N    0    \N    \N    \N    \N    male
11216    Vance    Beer    corene_cruickshank@gaylordruecker.co    \N    Aruba    Karleeland    64915 Yadira Mill    61667-5298    Pennsylvania    2016-09-23 21:07:39.929557    2016-10-14 13:02:30.234491        \N    \N    \N    0    \N    \N    \N    \N    female
11217    Pete    Runte    sophie@rolfson.org    \N    United States of America    North Virgil    506 Kautzer Causeway    32705-2114    Oklahoma    2016-07-30 23:50:44.846541    2016-10-14 13:02:30.251515        \N    \N    \N    0    \N    \N    \N    \N    male
11218    Rubie    Eichmann    una_rolfson@stark.name    \N    Hungary    Port Prince    153 Carter Streets    17394-9616    California    2016-09-08 17:45:55.478252    2016-10-14 13:02:30.262715        \N    \N    \N    0    \N    \N    \N    \N    male
11219    Virgie    Cruickshank    santiago_lakin@batz.info    \N    Samoa    East Katrine    50821 Ashlynn Rapids    30507-8981    Arkansas    2016-06-24 17:11:04.22652    2016-10-14 13:02:30.272929        \N    \N    \N    0    \N    \N    \N    \N    male
11220    Verna    Huels    johan_johnston@okuneva.co    \N    Latvia    Vellastad    62016 Schroeder Forks    21944-5293    Michigan    2016-07-30 15:31:44.646209    2016-10-14 13:02:30.279301        \N    \N    \N    0    \N    \N    \N    \N    male
11221    Kylee    Ritchie    raphaelle.kautzer@heel.com    \N    Rwanda    East Webster    68880 Fleta Loop    72203-4915    Utah    2016-08-14 07:20:43.259112    2016-10-14 13:02:30.285159        \N    \N    \N    0    \N    \N    \N    \N    male
11222    Mac    Jast    erika@reilly.io    \N    Kiribati    Spinkafort    95642 Auer Ville    77989    Virginia    2016-09-19 19:47:58.697997    2016-10-14 13:02:30.291976        \N    \N    \N    0    \N    \N    \N    \N    female
11223    Libbie    Casper    manuel_hilll@hillsdeckow.org    \N    Afghanistan    North Adaborough    418 Enrico Path    86372-9793    New Jersey    2016-08-20 03:02:02.88949    2016-10-14 13:02:30.298823        \N    \N    \N    0    \N    \N    \N    \N    male
11224    Lester    Hermann    hudson_frami@hermiston.io    \N    Jersey    West Daphnee    905 Tremblay Flats    41167    Delaware    2016-09-12 16:15:24.519114    2016-10-14 13:02:30.304363        \N    \N    \N    0    \N    \N    \N    \N    male
11225    Rosemary    Howe    destany.hettinger@runtehalvorson.net    \N    Tanzania    New Leifchester    5320 Gusikowski Way    33058-3566    Kansas    2016-06-29 04:25:42.598897    2016-10-14 13:02:30.310797        \N    \N    \N    0    \N    \N    \N    \N    female
11226    Shirley    Parisian    miles.windler@hellerwill.com    \N    Zambia    Lake Cole    98517 Hartmann Ports    70759-6908    South Carolina    2016-09-24 03:53:41.811808    2016-10-14 13:02:30.316502        \N    \N    \N    0    \N    \N    \N    \N    male
11227    Adolphus    Haag    bailee_konopelski@haagcremin.org    \N    Georgia    Veumbury    6830 Davon Parkways    98951-3673    California    2016-08-12 03:17:57.807496    2016-10-14 13:02:30.325857        \N    \N    \N    0    \N    \N    \N    \N    female
11228    Hattie    Champlin    amely.kaulke@hoppe.biz    \N    Mayotte    Adelamouth    48151 Gianni Mews    72295-5200    Wyoming    2016-09-10 23:41:36.893736    2016-10-14 13:02:30.331869        \N    \N    \N    0    \N    \N    \N    \N    female
11229    Claudine    McCullough    angela@cummings.name    \N    Russian Federation    Port Madge    23408 Kling Park    92301    Wyoming    2016-07-05 07:46:12.59602    2016-10-14 13:02:30.347322        \N    \N    \N    0    \N    \N    \N    \N    male
11230    Merle    Rohan    fausto@mraz.org    \N    Botswana    North Cecelia    50708 Blair Forge    57106    Mississippi    2016-09-07 09:17:36.613743    2016-10-14 13:02:30.353193        \N    \N    \N    0    \N    \N    \N    \N    female
11231    Albina    Jast    gordon@stehr.io    \N    Macedonia    Bobbieberg    788 Legros Burgs    70385-5317    Florida    2016-08-04 02:36:37.22066    2016-10-14 13:02:30.358586        \N    \N    \N    0    \N    \N    \N    \N    male
11232    Verona    Ward    fernando.murray@yundt.info    \N    Poland    Lake Jermainemouth    14892 Glover Extension    33966    Nebraska    2016-09-21 18:32:37.122369    2016-10-14 13:02:30.363939        \N    \N    \N    0    \N    \N    \N    \N    male
11233    Hermina    Runolfsson    frankie_stamm@nolan.info    \N    Samoa    West Arlene    782 Marilou Inlet    63530    Nebraska    2016-07-02 03:48:35.166154    2016-10-14 13:02:30.375638        \N    \N    \N    0    \N    \N    \N    \N    male
11234    Jaqueline    Beer    fritz@pfannerstill.com    \N    France    Port Columbusshire    9499 Cullen Mills    52606    Utah    2016-06-29 09:07:44.173835    2016-10-14 13:02:30.380886        \N    \N    \N    0    \N    \N    \N    \N    male
11235    Marta    Jacobs    georgette_rice@white.name    \N    Micronesia    Littelland    51307 Brekke Turnpike    37058-3142    California    2016-08-11 22:00:35.436484    2016-10-14 13:02:30.390722        \N    \N    \N    0    \N    \N    \N    \N    female
11236    Clyde    Upton    forrest@hermanblock.net    \N    Turkmenistan    Lake Brionna    896 Schmeler Ridge    66690-3282    Missouri    2016-07-28 20:15:44.477921    2016-10-14 13:02:30.395324        \N    \N    \N    0    \N    \N    \N    \N    female
11237    Sydni    Gusikowski    rubie_schaefer@christiansen.io    \N    Iraq    Alyssonmouth    20885 Ledner Locks    94872-1147    Vermont    2016-08-19 15:14:50.174252    2016-10-14 13:02:30.400029        \N    \N    \N    0    \N    \N    \N    \N    male
11238    Carrie    Mraz    mittie@gleason.info    \N    Poland    Timothyville    34013 Dessie Mountain    38540    Nevada    2016-07-28 05:33:56.345064    2016-10-14 13:02:30.405152        \N    \N    \N    0    \N    \N    \N    \N    female
11239    Charlene    Kuhn    orland.erdman@schuster.org    \N    Hungary    Kleinview    72226 Jacobson Station    40114-4719    Oklahoma    2016-09-28 22:02:50.647582    2016-10-14 13:02:30.412762        \N    \N    \N    0    \N    \N    \N    \N    female
11240    Samson    Pfannerstill    emilio_rau@kihnhills.net    \N    Bosnia and Herzegovina    Raquelmouth    410 Abshire Loop    23536    Kansas    2016-07-01 10:00:44.344766    2016-10-14 13:02:30.418754        \N    \N    \N    0    \N    \N    \N    \N    male
11241    Alden    Ritchie    macey@stokes.net    \N    Dominica    Camillafurt    18796 Ezekiel Oval    14814-6248    Maine    2016-09-23 01:33:39.558286    2016-10-14 13:02:30.424499        \N    \N    \N    0    \N    \N    \N    \N    male
11243    D'angelo    Toy    jonathan@west.co    \N    Falkland Islands (Malvinas)    Freddieland    5857 O'Connell Burgs    56548-2753    Washington    2016-09-16 23:55:27.626213    2016-10-14 13:02:30.430207        \N    \N    \N    0    \N    \N    \N    \N    male
11244    Zoie    Beier    saul@moriette.org    \N    Tuvalu    North Idellfurt    7128 Langworth Lodge    48006-5454    Mississippi    2016-09-14 23:59:06.202352    2016-10-14 13:02:30.434529        \N    \N    \N    0    \N    \N    \N    \N    female
11245    Albertha    Pollich    benjamin_funk@heidenreich.biz    \N    Somalia    Lake Xander    1854 Lenore Flat    70797    South Carolina    2016-08-30 14:10:36.160268    2016-10-14 13:02:30.439895        \N    \N    \N    0    \N    \N    \N    \N    male
11246    Lavina    Luettgen    brannon@pouros.biz    \N    Barbados    Port Eda    83206 Volkman Station    20878    Idaho    2016-08-17 10:28:57.344133    2016-10-14 13:02:30.447367        \N    \N    \N    0    \N    \N    \N    \N    male
11247    Mikel    Torp    angelita@beatty.org    \N    United States of America    Chazburgh    69085 Will Valleys    70256    New Jersey    2016-07-20 19:46:21.961254    2016-10-14 13:02:30.456044        \N    \N    \N    0    \N    \N    \N    \N    female
11248    Teresa    Zemlak    elyse@botsfordkuhlman.co    \N    United States of America    West Martinmouth    92082 Francisca Forge    50874    Alabama    2016-08-25 22:34:55.530652    2016-10-14 13:02:30.460619        \N    \N    \N    0    \N    \N    \N    \N    female
11249    Madalyn    Kirlin    mozelle@gorczany.biz    \N    Cyprus    New Germaine    33740 Jacobs Springs    51481-9596    Louisiana    2016-08-24 15:59:00.487385    2016-10-14 13:02:30.466021        \N    \N    \N    0    \N    \N    \N    \N    female
11250    Winona    Simonis    luis@bartell.io    \N    Tuvalu    South Boydberg    6505 Nicolas Plains    87249    Illinois    2016-06-26 23:52:09.181396    2016-10-14 13:02:30.470419        \N    \N    \N    0    \N    \N    \N    \N    male
11251    Hillard    Kuphal    cordia.koch@jacobi.com    \N    Uzbekistan    Kunzeside    32465 Botsford Inlet    61527-8372    Ohio    2016-07-25 11:32:17.031427    2016-10-14 13:02:30.476485        \N    \N    \N    0    \N    \N    \N    \N    female
11253    Wilma    Emard    jennings@king.name    \N    Vanuatu    Rudolphland    78565 Schumm Forest    25816    Delaware    2016-09-19 21:15:00.891671    2016-10-14 13:02:30.482338        \N    \N    \N    0    \N    \N    \N    \N    female
11254    Rosalyn    Dicki    jey@quitzonemmerich.info    \N    Burundi    Rutherfordmouth    999 Eve Corners    92581-7723    Minnesota    2016-07-26 11:24:45.334016    2016-10-14 13:02:30.487175        \N    \N    \N    0    \N    \N    \N    \N    female
11255    Benjamin    Champlin    cecilia_harris@macgyver.co    \N    Austria    North Chad    2275 Giovanni Course    48902-8970    Maine    2016-07-02 12:42:01.048421    2016-10-14 13:02:30.49293        \N    \N    \N    0    \N    \N    \N    \N    male
11256    Cassandre    Trantow    rod_purdy@starkbernier.co    \N    Monaco    Adolphland    6534 Madisyn Keys    90582    Hawaii    2016-09-19 16:36:02.837426    2016-10-14 13:02:30.497569        \N    \N    \N    0    \N    \N    \N    \N    female
11257    Hattie    Tillman    eli@purdy.co    \N    Iran    Marquardtmouth    8139 Ward Ford    33802    Georgia    2016-07-24 23:39:54.901924    2016-10-14 13:02:30.502238        \N    \N    \N    0    \N    \N    \N    \N    female
11258    Odie    Lubowitz    jermain_bosco@mohr.info    \N    Ghana    Zettaborough    1832 Rempel Street    22590-9270    Arkansas    2016-07-05 01:16:47.1105    2016-10-14 13:02:30.508784        \N    \N    \N    0    \N    \N    \N    \N    male
11259    Maxwell    Hansen    leanna.gerhold@koelpinkertzmann.com    \N    Indonesia    South Reyesfurt    2087 Hintz Rue    40666-9118    Arizona    2016-08-16 02:43:37.111036    2016-10-14 13:02:30.520534        \N    \N    \N    0    \N    \N    \N    \N    female
11260    Ronny    Jacobson    susan@anderson.biz    \N    Turks and Caicos Islands    Kuhnshire    418 Dibbert Point    43732    Mississippi    2016-07-05 19:04:42.553032    2016-10-14 13:02:30.524867        \N    \N    \N    0    \N    \N    \N    \N    male
11261    Alfonso    Beer    dovie@mantevonrueden.net    \N    Israel    Heidenreichside    12364 Samara Turnpike    40700-0065    Delaware    2016-08-12 12:31:13.47078    2016-10-14 13:02:30.529301        \N    \N    \N    0    \N    \N    \N    \N    female
11262    Jovani    Heller    jordi@darerolfson.info    \N    Greenland    Peteton    93056 Wiza Run    32792    Washington    2016-09-05 17:41:35.979577    2016-10-14 13:02:30.533362        \N    \N    \N    0    \N    \N    \N    \N    male
11263    Kaylie    Heidenreich    odea_mueller@cormiertromp.net    \N    Fiji    Stehrbury    9805 Maximillian Key    35426-8908    Missouri    2016-08-12 11:22:14.466604    2016-10-14 13:02:30.540322        \N    \N    \N    0    \N    \N    \N    \N    male
11264    Ulices    Schaden    kelly.hickle@kertzmann.org    \N    Fiji    Port Seth    35275 Murazik Rue    11953-0514    Idaho    2016-08-11 06:15:34.310698    2016-10-14 13:02:30.547952        \N    \N    \N    0    \N    \N    \N    \N    female
11265    Freeman    O'Kon    grayce_goodwin@oreilly.net    \N    Suriname    West Jessie    9727 Dashawn Bridge    10318    New Mexico    2016-09-02 10:01:14.287526    2016-10-14 13:02:30.55264        \N    \N    \N    0    \N    \N    \N    \N    male
11266    Dario    Weber    nella@braun.io    \N    Netherlands    East Theodoramouth    8622 Krajcik Mission    57759-2448    Vermont    2016-07-15 04:18:07.65037    2016-10-14 13:02:30.560007        \N    \N    \N    0    \N    \N    \N    \N    female
11267    Giuseppe    Walter    beth@leuschke.biz    \N    Andorra    Carliefurt    8051 Travis Crossing    97376    Rhode Island    2016-09-15 03:24:09.099832    2016-10-14 13:02:30.564175        \N    \N    \N    0    \N    \N    \N    \N    female
11268    Corine    Jast    kurt@daniel.io    \N    Zimbabwe    West Margret    294 Stoltenberg Road    27891    Utah    2016-07-16 18:11:51.411765    2016-10-14 13:02:30.568039        \N    \N    \N    0    \N    \N    \N    \N    male
11269    Andre    Purdy    garrick@greenholt.biz    \N    Guyana    Gleichnerbury    83829 Wiza Highway    90674-3650    Tennessee    2016-08-21 15:48:09.250527    2016-10-14 13:02:30.572175        \N    \N    \N    0    \N    \N    \N    \N    male
11270    Marquise    Pagac    kristina.conroy@cartwright.io    \N    Tunisia    East Dovie    8856 Ziemann Curve    60685    Idaho    2016-07-09 18:05:47.290297    2016-10-14 13:02:30.576301        \N    \N    \N    0    \N    \N    \N    \N    female
11271    Yessenia    Williamson    aniyah@mertz.com    \N    Mozambique    East Tryciamouth    32258 Giovanny Springs    61135    Mississippi    2016-09-23 12:11:39.470534    2016-10-14 13:02:30.580433        \N    \N    \N    0    \N    \N    \N    \N    female
11272    Jayce    Fisher    nash@greenfelder.biz    \N    Italy    Lake Daytonport    35444 Rohan Summit    32444-9026    Indiana    2016-07-24 01:29:17.333237    2016-10-14 13:02:30.584805        \N    \N    \N    0    \N    \N    \N    \N    male
11273    Mavis    Langosh    graham.maggio@armstrong.org    \N    Guatemala    Port Sigrid    6788 Gibson Divide    86351    Montana    2016-06-29 21:43:55.597999    2016-10-14 13:02:30.590215        \N    \N    \N    0    \N    \N    \N    \N    female
11274    Liza    Denesik    nellie@wunsch.biz    \N    Ukraine    New Houston    4007 Lebsack Mall    14165    Wyoming    2016-09-14 18:15:18.917587    2016-10-14 13:02:30.594917        \N    \N    \N    0    \N    \N    \N    \N    male
11275    Dino    Franecki    hallie_kulas@larsonwalker.com    \N    United Kingdom    West Arlie    228 Strosin Forks    46101-1863    Illinois    2016-09-07 00:14:32.170944    2016-10-14 13:02:30.600138        \N    \N    \N    0    \N    \N    \N    \N    male
11276    Lilyan    Simonis    christiana.koelpin@koch.io    \N    Saint Vincent and the Grenadines    Harrischester    410 Fahey Motorway    13916    Washington    2016-09-07 06:52:36.815485    2016-10-14 13:02:30.60457        \N    \N    \N    0    \N    \N    \N    \N    female
11277    Reinhold    Gleichner    jaden.hilll@boehm.io    \N    Afghanistan    Sporermouth    486 Jast Cliff    80642    Missouri    2016-07-22 17:47:49.692952    2016-10-14 13:02:30.608502        \N    \N    \N    0    \N    \N    \N    \N    male
11278    Gino    Kovacek    caesar@brown.org    \N    Algeria    Mooreborough    6721 Danial Landing    71590    Wyoming    2016-06-25 21:46:11.016266    2016-10-14 13:02:30.612443        \N    \N    \N    0    \N    \N    \N    \N    female
11279    Albertha    Morar    amir_glover@bogisich.biz    \N    Uganda    West Lou    4138 Koepp Gardens    23679-9626    Connecticut    2016-08-15 02:48:43.047395    2016-10-14 13:02:30.618948        \N    \N    \N    0    \N    \N    \N    \N    female
11280    Clay    Mayer    jan@balistreri.info    \N    Ireland    Port Theresetown    53303 Aiyana Roads    56385    South Carolina    2016-08-28 05:01:39.691272    2016-10-14 13:02:30.622859        \N    \N    \N    0    \N    \N    \N    \N    female
11281    Harmon    Konopelski    marcella.romaguera@lebsack.org    \N    Belize    Layneborough    70367 Juston Center    84645    Louisiana    2016-09-03 04:19:00.864569    2016-10-14 13:02:30.627103        \N    \N    \N    0    \N    \N    \N    \N    male
11282    Lane    Kling    kianna_bosco@gerlach.com    \N    Costa Rica    Estellaview    756 Schuster Coves    91659-5631    Montana    2016-08-13 22:38:42.853832    2016-10-14 13:02:30.631673        \N    \N    \N    0    \N    \N    \N    \N    female
11283    Angie    Oberbrunner    araceli_smith@maggio.name    \N    Papua New Guinea    West Davonte    8544 Justen Crossroad    71637-5018    Massachusetts    2016-07-11 03:21:10.334766    2016-10-14 13:02:30.636142        \N    \N    \N    0    \N    \N    \N    \N    female
11284    Luis    Schulist    lawrence@nikolaus.net    \N    Turkey    Port Goldashire    29340 Quitzon Drives    29395-2136    Missouri    2016-07-08 00:57:20.80566    2016-10-14 13:02:30.640323        \N    \N    \N    0    \N    \N    \N    \N    male
11285    Rogelio    Cassin    dave@mohrschultz.com    \N    British Indian Ocean Territory (Chagos Archipelago)    Lelaburgh    447 Pagac Crescent    52188    South Carolina    2016-08-20 00:58:54.064044    2016-10-14 13:02:30.644231        \N    \N    \N    0    \N    \N    \N    \N    male
11286    Kayli    Nader    karen@klocko.name    \N    American Samoa    Keeblerstad    970 Britney Flats    57023    Illinois    2016-08-05 05:41:03.479748    2016-10-14 13:02:30.664871        \N    \N    \N    0    \N    \N    \N    \N    male
11287    Vernie    Feeney    louie@kuhic.io    \N    Belarus    New Eleanora    8952 Paris Stream    43081    Washington    2016-09-14 15:44:27.758332    2016-10-14 13:02:30.669541        \N    \N    \N    0    \N    \N    \N    \N    male
11288    Lupe    Macejkovic    darrin@rennerprice.com    \N    Antigua and Barbuda    North Will    4555 Marvin Burgs    54158    Arizona    2016-07-04 20:17:39.305129    2016-10-14 13:02:30.673503        \N    \N    \N    0    \N    \N    \N    \N    male
11289    Yessenia    Raynor    ferne@rempel.info    \N    Costa Rica    Cliftonshire    283 Hermann Burgs    90321    Nevada    2016-09-01 22:01:39.08558    2016-10-14 13:02:30.67751        \N    \N    \N    0    \N    \N    \N    \N    male
11290    Jamar    Klein    eddie@jacobihudson.net    \N    Cayman Islands    Lake Maddisonburgh    522 Diana Run    21519-9113    Oklahoma    2016-09-22 22:59:06.159624    2016-10-14 13:02:30.681634        \N    \N    \N    0    \N    \N    \N    \N    male
11291    Guy    Stoltenberg    destiny@kerlukedare.net    \N    Guinea-Bissau    West Guiseppe    198 Cassin Lake    90445-1912    West Virginia    2016-08-10 13:34:33.458552    2016-10-14 13:02:30.685759        \N    \N    \N    0    \N    \N    \N    \N    male
11292    Wade    Price    aliya_murazik@franeckiryan.org    \N    Bouvet Island (Bouvetoya)    Birdieview    3405 Strosin View    60563-4637    Hawaii    2016-08-03 19:51:31.579256    2016-10-14 13:02:30.689768        \N    \N    \N    0    \N    \N    \N    \N    male
11293    Baron    Graham    devyn.abernathy@kub.com    \N    Djibouti    Carlosmouth    937 Marc Burgs    18475    South Dakota    2016-07-07 18:27:34.236198    2016-10-14 13:02:30.693912        \N    \N    \N    0    \N    \N    \N    \N    male
11294    Anastacio    Cummings    zechariah_spencer@okuneva.biz    \N    Vietnam    Port Granvilleborough    3361 Torp Harbor    81071    Idaho    2016-09-05 03:39:44.228987    2016-10-14 13:02:30.697771        \N    \N    \N    0    \N    \N    \N    \N    male
11295    Jenifer    Welch    violette@cole.com    \N    Mozambique    West Vidamouth    547 Turner Bypass    43916-4023    Louisiana    2016-08-16 17:28:29.86983    2016-10-14 13:02:30.702187        \N    \N    \N    0    \N    \N    \N    \N    female
11296    Allene    Waters    brock_raynor@zieme.biz    \N    Libyan Arab Jamahiriya    East Maximillianton    801 Freeman Squares    25976-3794    Maine    2016-08-04 22:08:07.249252    2016-10-14 13:02:30.706411        \N    \N    \N    0    \N    \N    \N    \N    male
11297    Barrett    Pfannerstill    tomas_heaney@bartelloberbrunner.biz    \N    Senegal    East Antonia    94635 Meggie Mountain    44076-5593    Georgia    2016-09-28 12:30:55.039256    2016-10-14 13:02:30.71065        \N    \N    \N    0    \N    \N    \N    \N    male
11298    Dusty    Nikolaus    jayden@hammes.io    \N    Tonga    Antonettahaven    38305 Tyra Tunnel    53047    Wyoming    2016-09-19 19:02:23.741106    2016-10-14 13:02:30.714863        \N    \N    \N    0    \N    \N    \N    \N    male
11299    Kenneth    Runolfsdottir    rylee_legros@emard.info    \N    Malawi    Gerholdmouth    8913 Dangelo Coves    44374    Minnesota    2016-07-20 17:06:52.752934    2016-10-14 13:02:30.718985        \N    \N    \N    0    \N    \N    \N    \N    male
11300    Marlen    Grady    else@gleichner.co    \N    Marshall Islands    Port Coty    617 Hauck Mall    31366-7839    Montana    2016-08-26 06:20:27.279112    2016-10-14 13:02:30.723195        \N    \N    \N    0    \N    \N    \N    \N    male
11301    Torrance    Abshire    pattie.monahan@smith.co    \N    Brunei Darussalam    West Chesleyville    11165 Harber Light    69392-2227    Wisconsin    2016-08-10 06:27:01.844377    2016-10-14 13:02:30.7275        \N    \N    \N    0    \N    \N    \N    \N    female
11302    Johan    Beahan    isac@lindgren.info    \N    Chad    Jacobsfort    4385 Fritsch Mission    17749-5999    Pennsylvania    2016-09-05 14:37:36.858165    2016-10-14 13:02:30.731615        \N    \N    \N    0    \N    \N    \N    \N    male
11303    Joanie    Hirthe    julia@herzog.biz    \N    Sri Lanka    South Artburgh    149 Halvorson Garden    38809-3709    North Dakota    2016-09-06 11:18:08.125414    2016-10-14 13:02:30.735753        \N    \N    \N    0    \N    \N    \N    \N    male
11304    Tavares    Schroeder    torrey@wehnerbruen.co    \N    Mozambique    Stanfordfort    75053 Jacobi Mills    85237-2278    Idaho    2016-09-18 00:22:01.880981    2016-10-14 13:02:30.739949        \N    \N    \N    0    \N    \N    \N    \N    female
11305    Mikayla    Blanda    josh_balistreri@robel.biz    \N    Latvia    East Valentinaburgh    933 Milan Corner    35610    Ohio    2016-07-10 21:57:23.691651    2016-10-14 13:02:30.744612        \N    \N    \N    0    \N    \N    \N    \N    female
11306    Nakia    Hamill    vita@wisozk.net    \N    Virgin Islands, British    Abbyton    607 Dortha Spur    46021    Mississippi    2016-08-04 19:36:26.356018    2016-10-14 13:02:30.748825        \N    \N    \N    0    \N    \N    \N    \N    male
11307    Ana    Wisozk    raoul.smitham@macejkovic.name    \N    Jamaica    Armstrongberg    27087 Ferry Manor    21078-5727    Wisconsin    2016-08-14 09:54:54.646146    2016-10-14 13:02:30.753022        \N    \N    \N    0    \N    \N    \N    \N    female
11308    Cindy    Abernathy    joana.hoppe@welch.info    \N    Singapore    Griffinstad    9270 Ondricka Turnpike    57469-2855    Alaska    2016-07-16 12:18:35.60618    2016-10-14 13:02:30.757911        \N    \N    \N    0    \N    \N    \N    \N    female
11309    Summer    Dicki    willy@langosh.org    \N    Wallis and Futuna    Port Maryse    465 Emilio Fords    15258    Hawaii    2016-06-24 16:27:42.116564    2016-10-14 13:02:30.766543        \N    \N    \N    0    \N    \N    \N    \N    female
11310    Micah    Rolfson    makayla@altenwerth.name    \N    Turkmenistan    Lake Eino    56498 Heidi Fork    56435-2516    Mississippi    2016-06-29 21:12:24.381533    2016-10-14 13:02:30.771026        \N    \N    \N    0    \N    \N    \N    \N    female
11311    Zoey    Ullrich    murl_rutherford@gottliebkub.name    \N    Jordan    North Jermeyton    858 Jordane Mission    23077-6696    Nevada    2016-07-27 14:19:58.071686    2016-10-14 13:02:30.775879        \N    \N    \N    0    \N    \N    \N    \N    male
11313    Maxie    Rau    dallas.collins@mclaughlin.net    \N    Vietnam    New Hector    30441 Rico River    84093    Colorado    2016-08-04 14:45:33.592456    2016-10-14 13:02:30.780873        \N    \N    \N    0    \N    \N    \N    \N    female
11314    Scot    Franecki    nannie@muller.io    \N    Virgin Islands, British    Weissnatbury    7291 Botsford Ford    49777    Vermont    2016-06-27 20:54:43.958155    2016-10-14 13:02:30.786619        \N    \N    \N    0    \N    \N    \N    \N    female
16428    Amalia    Rogahn    evie@anderson.co    \N    Malaysia    Mollyfurt    162 Emmerich Trail    96352-2099    Ohio    2016-08-06 16:08:59.807301    2016-10-14 13:02:30.791968        \N    \N    \N    0    \N    \N    \N    \N    female
11315    Katelyn    Lind    marcel@wisoky.com    \N    Puerto Rico    Madisenmouth    8418 Peyton Valley    63911    Washington    2016-08-31 08:52:34.893337    2016-10-14 13:02:30.797876        \N    \N    \N    0    \N    \N    \N    \N    female
11316    Krystina    Mayert    janis@bins.org    \N    Burundi    New Leslie    92433 Torp Ranch    99309-2598    Indiana    2016-07-27 10:43:55.779393    2016-10-14 13:02:30.802417        \N    \N    \N    0    \N    \N    \N    \N    male
11317    Rashawn    Bauch    erika@krajcikdurgan.net    \N    Turks and Caicos Islands    West Kaley    371 Daron Dam    69825-3295    Hawaii    2016-08-11 00:11:55.42228    2016-10-14 13:02:30.807167        \N    \N    \N    0    \N    \N    \N    \N    female
11318    Ruthe    Corwin    glen@abbottstokes.org    \N    Sudan    Cathyfurt    140 Fisher Ford    14639-8570    Arizona    2016-08-31 08:16:58.007078    2016-10-14 13:02:30.812159        \N    \N    \N    0    \N    \N    \N    \N    female
11319    Kyla    Hamill    meghan.goldner@moore.org    \N    Sri Lanka    Corkeryton    29423 Jones Villages    66692    Louisiana    2016-08-30 18:43:39.276066    2016-10-14 13:02:30.817061        \N    \N    \N    0    \N    \N    \N    \N    female
11320    Bridgette    Hoeger    verlie.white@kuphal.co    \N    Bahrain    Imamouth    6925 Cameron Dam    60830-0961    Ohio    2016-09-14 12:51:54.371773    2016-10-14 13:02:30.822867        \N    \N    \N    0    \N    \N    \N    \N    female
11321    Fred    Hagenes    anabelle_davis@leffler.net    \N    Cuba    Danielland    8996 Aubree Street    16835-4823    Pennsylvania    2016-09-17 07:38:20.028891    2016-10-14 13:02:30.827463        \N    \N    \N    0    \N    \N    \N    \N    male
11322    Reina    Kunde    samson@hackettgraham.net    \N    Iran    Carterville    82567 Herman Point    10597    New Hampshire    2016-07-07 12:40:53.98125    2016-10-14 13:02:30.832122        \N    \N    \N    0    \N    \N    \N    \N    male
11323    Domenico    Koch    jacynthe@gibson.biz    \N    Ireland    Sidneyberg    578 Jenkins Locks    94090    South Dakota    2016-09-07 19:57:58.617468    2016-10-14 13:02:30.837973        \N    \N    \N    0    \N    \N    \N    \N    female
11324    Cecil    Bode    ila@reichert.co    \N    Bangladesh    Port Jenifer    5727 Nienow Loaf    29531-9407    Kentucky    2016-09-14 21:26:06.535594    2016-10-14 13:02:30.842692        \N    \N    \N    0    \N    \N    \N    \N    male
11325    Durward    Yost    yadira.leuschke@heathcotejones.name    \N    Tanzania    West Americo    8553 Mallory Spurs    69643    Arizona    2016-09-27 16:51:03.608059    2016-10-14 13:02:30.846905        \N    \N    \N    0    \N    \N    \N    \N    female
11326    Jacques    Barton    winifred@sporer.name    \N    Finland    Edwinville    21278 Devan Loaf    90172    Wyoming    2016-07-10 00:03:52.927975    2016-10-14 13:02:30.852561        \N    \N    \N    0    \N    \N    \N    \N    male
11327    Audreanne    Smitham    jaqueline@leffler.co    \N    Eritrea    South Fausto    19006 Bryce Station    65141    Tennessee    2016-07-03 17:55:55.074144    2016-10-14 13:02:30.857282        \N    \N    \N    0    \N    \N    \N    \N    male
11328    Santa    Thiel    abigail@walker.co    \N    Malaysia    Caspertown    4079 Gleichner Pine    18037    Arizona    2016-09-19 03:10:17.657338    2016-10-14 13:02:30.862096        \N    \N    \N    0    \N    \N    \N    \N    male
11329    Charlotte    Stamm    onie.parisian@nader.biz    \N    Martinique    New Margie    255 Donnelly Forge    79103-8408    Vermont    2016-07-31 20:04:56.563849    2016-10-14 13:02:30.866292        \N    \N    \N    0    \N    \N    \N    \N    female
11330    Franco    Abbott    wilber@kuhn.info    \N    Japan    Lake Garretfurt    37928 Elnora Walks    24894    Georgia    2016-08-06 03:03:00.3653    2016-10-14 13:02:30.870695        \N    \N    \N    0    \N    \N    \N    \N    male
11331    Stephan    Jerde    augustine@bailey.co    \N    Bulgaria    North Cara    8902 Schaefer Forks    26188-2367    Iowa    2016-07-03 15:00:29.883688    2016-10-14 13:02:30.875418        \N    \N    \N    0    \N    \N    \N    \N    female
11332    Eloy    Turcotte    kylie@kshlerin.biz    \N    Sweden    East Lorine    4015 Cole Ford    44066-7641    Georgia    2016-07-30 13:38:26.402094    2016-10-14 13:02:30.881505        \N    \N    \N    0    \N    \N    \N    \N    female
11333    Eulalia    Shanahan    dulce.becker@greenholtpouros.info    \N    Burkina Faso    North Tristin    556 Golden Plaza    31740-6181    Wyoming    2016-07-19 06:08:17.685682    2016-10-14 13:02:30.888743        \N    \N    \N    0    \N    \N    \N    \N    male
11334    Katharina    Leuschke    marcelino@mcglynn.info    \N    Greenland    South Adelia    6568 Armstrong Radial    81813-6037    Kansas    2016-07-17 11:29:32.582674    2016-10-14 13:02:30.893753        \N    \N    \N    0    \N    \N    \N    \N    female
11335    Lorenza    Ritchie    margarette_armstrong@kris.net    \N    Poland    Karashire    491 Bechtelar Alley    73511    Missouri    2016-07-08 22:10:03.312109    2016-10-14 13:02:30.89847        \N    \N    \N    0    \N    \N    \N    \N    female
11336    Eldred    Batz    matt@gottlieb.org    \N    Christmas Island    Lyricland    25080 Garland Port    31348    Georgia    2016-07-05 11:53:12.95533    2016-10-14 13:02:30.903232        \N    \N    \N    0    \N    \N    \N    \N    male
11337    Xavier    Roob    scottie@medhurst.io    \N    Peru    New Rosalind    29473 Konopelski Lodge    62957-2998    North Dakota    2016-07-29 13:04:15.939841    2016-10-14 13:02:30.909012        \N    \N    \N    0    \N    \N    \N    \N    female
11338    Haleigh    Romaguera    elva@nicolas.name    \N    Nepal    Port Gaylordhaven    98955 Homenick Road    74852    Rhode Island    2016-07-17 19:39:23.626851    2016-10-14 13:02:30.914227        \N    \N    \N    0    \N    \N    \N    \N    male
11339    Cade    Schmeler    tina_morar@heaneystehr.co    \N    Reunion    West Jarod    8889 Gutmann Crossing    17818-6316    Pennsylvania    2016-08-24 04:05:19.591301    2016-10-14 13:02:30.919234        \N    \N    \N    0    \N    \N    \N    \N    female
11340    Adrain    Adams    aryanna@predovicfeil.io    \N    Sao Tome and Principe    East Kendrachester    7599 Crooks Orchard    60279    Maine    2016-07-19 16:47:58.366205    2016-10-14 13:02:30.923798        \N    \N    \N    0    \N    \N    \N    \N    male
11341    Sheridan    Krajcik    kaylah@waelchi.net    \N    Faroe Islands    Ricoburgh    44841 Easton Stream    95366-8614    Oklahoma    2016-09-21 02:57:56.087037    2016-10-14 13:02:30.929338        \N    \N    \N    0    \N    \N    \N    \N    female
11342    Roxane    Heathcote    katelynn.cain@johnston.com    \N    British Indian Ocean Territory (Chagos Archipelago)    New Evanfort    19659 Eichmann Locks    37077-8023    Michigan    2016-07-25 01:36:45.70079    2016-10-14 13:02:30.934089        \N    \N    \N    0    \N    \N    \N    \N    male
11343    Murray    Kuhic    billie@macejkovic.io    \N    South Georgia and the South Sandwich Islands    Lake Tamia    748 Chance Well    71870    Washington    2016-06-29 01:26:43.094839    2016-10-14 13:02:30.938926        \N    \N    \N    0    \N    \N    \N    \N    male
11345    Arvel    Ortiz    rosalia.mitchell@rutherfordstamm.io    \N    Sao Tome and Principe    Fredericstad    934 Cremin Manor    13850-3540    Delaware    2016-08-28 22:32:38.930096    2016-10-14 13:02:30.943781        \N    \N    \N    0    \N    \N    \N    \N    male
11346    Kiara    Kiehn    leonora_larkin@heel.co    \N    Mali    Port Leopoldoland    88175 Emard Key    30983    Indiana    2016-09-24 02:58:48.648118    2016-10-14 13:02:30.947918        \N    \N    \N    0    \N    \N    \N    \N    female
11347    Lauren    Bahringer    adrien@jacobiweinat.com    \N    Saint Pierre and Miquelon    Samburgh    7702 Sherwood Divide    75226-9985    Iowa    2016-08-20 05:23:58.327108    2016-10-14 13:02:30.952655        \N    \N    \N    0    \N    \N    \N    \N    female
11348    Eloise    Strosin    viola_strosin@bogisich.org    \N    Benin    Alisamouth    48455 Cordell Squares    17474-2968    Nevada    2016-08-28 02:24:36.19073    2016-10-14 13:02:30.957173        \N    \N    \N    0    \N    \N    \N    \N    male
11349    Shemar    Pagac    era_kuvalis@sanford.co    \N    Portugal    Port Gilberto    6700 Lillian Brooks    98108-9146    Mississippi    2016-07-19 08:09:51.863211    2016-10-14 13:02:30.962341        \N    \N    \N    0    \N    \N    \N    \N    female
11350    Jaqueline    Ortiz    magnus_jenkins@nikolautracke.name    \N    Namibia    Maetown    971 Alexandrea Alley    52712    Texas    2016-06-27 11:01:34.478841    2016-10-14 13:02:30.981877        \N    \N    \N    0    \N    \N    \N    \N    female
11351    Alanna    Stoltenberg    naomie@rathwalker.co    \N    Philippines    North Tia    66397 Herman Stravenue    82379    Delaware    2016-06-26 11:59:54.988235    2016-10-14 13:02:30.988598        \N    \N    \N    0    \N    \N    \N    \N    male
11352    Rosanna    Gulgowski    arnulfo@considinenolan.com    \N    Finland    Homenickbury    7006 Jessyca Expressway    85966-9078    Texas    2016-08-21 09:42:30.142681    2016-10-14 13:02:30.994502        \N    \N    \N    0    \N    \N    \N    \N    female
11354    Aglae    Brown    cali_rempel@hirthespencer.biz    \N    Madagascar    Rempelfurt    5717 Aiden Well    82383-4168    Nebraska    2016-07-07 19:45:12.066254    2016-10-14 13:02:30.998922        \N    \N    \N    0    \N    \N    \N    \N    female
11355    Rachelle    Hahn    hettie@grady.co    \N    Equatorial Guinea    Reynoldsstad    900 Gonzalo Oval    49730    Iowa    2016-09-28 00:53:31.352701    2016-10-14 13:02:31.003829        \N    \N    \N    0    \N    \N    \N    \N    female
11356    Danyka    Orn    cedrick_bahringer@witting.net    \N    Dominica    Port Rolando    6349 McGlynn Shoal    30805    Georgia    2016-09-13 11:54:15.105175    2016-10-14 13:02:31.008244        \N    \N    \N    0    \N    \N    \N    \N    female
11357    Minerva    Treutel    adolph@rice.info    \N    Lithuania    Lubowitztown    73360 Mayer Ramp    97216    Connecticut    2016-08-20 04:45:36.053527    2016-10-14 13:02:31.012566        \N    \N    \N    0    \N    \N    \N    \N    male
11358    Hallie    Schowalter    easter.mitchell@funk.org    \N    Saint Martin    Schowalterborough    69397 Halvorson View    17942-8970    Rhode Island    2016-07-19 07:12:16.06349    2016-10-14 13:02:31.017417        \N    \N    \N    0    \N    \N    \N    \N    female
11359    Cristobal    Trantow    fidel@hegmann.info    \N    Saudi Arabia    Alysonfurt    865 Gerlach Vista    11758-1996    South Carolina    2016-08-23 04:39:54.602817    2016-10-14 13:02:31.02316        \N    \N    \N    0    \N    \N    \N    \N    female
11360    Gia    Thompson    davonte@altenwerthhuel.org    \N    Virgin Islands, British    Lake Fern    4410 Murray Green    99517    Texas    2016-09-28 20:03:43.791351    2016-10-14 13:02:31.029606        \N    \N    \N    0    \N    \N    \N    \N    male
11363    Karina    Nikolaus    regan@feeney.io    \N    Bahamas    North Jessstad    1976 Tito Streets    17674-2229    Colorado    2016-09-09 13:29:59.732621    2016-10-14 13:02:31.034051        \N    \N    \N    0    \N    \N    \N    \N    male
11364    Vivianne    Ondricka    kristopher_lockman@kuhlmanconnelly.name    \N    Austria    Kossside    172 Champlin Streets    12674-4542    Iowa    2016-06-26 17:21:12.128577    2016-10-14 13:02:31.038423        \N    \N    \N    0    \N    \N    \N    \N    male
11365    Terence    Kuhn    floie_upton@stromanryan.name    \N    Honduras    West Haliechester    24483 Tiara Inlet    30863-8281    Montana    2016-08-22 12:41:12.296302    2016-10-14 13:02:31.043043        \N    \N    \N    0    \N    \N    \N    \N    male
11366    Javon    Kirlin    otho@beierrutherford.org    \N    Mauritius    Alfonsofort    5966 Jakubowski Expressway    21904-7115    Washington    2016-09-09 16:17:49.246126    2016-10-14 13:02:31.048573        \N    \N    \N    0    \N    \N    \N    \N    male
11367    Nona    O'Connell    max_marquardt@zemlak.org    \N    Norfolk Island    Lake Gonzalo    657 Danial Locks    97665-9654    Alaska    2016-09-19 23:36:56.452856    2016-10-14 13:02:31.053313        \N    \N    \N    0    \N    \N    \N    \N    male
11369    Lucas    Abernathy    william@schamberger.org    \N    Colombia    Lake Marcelinastad    4255 Ashley Crescent    21029-6275    Kansas    2016-09-05 03:21:23.378639    2016-10-14 13:02:31.061624        \N    \N    \N    0    \N    \N    \N    \N    male
11370    Nyah    Goldner    deanna.hirthe@koeppsmith.biz    \N    Niger    East Barrytown    9791 Valentine Burg    29118-7071    Colorado    2016-06-24 04:23:18.846351    2016-10-14 13:02:31.066688        \N    \N    \N    0    \N    \N    \N    \N    female
11371    Dameon    Rolfson    brain@walker.io    \N    Russian Federation    Francistown    7384 Enid Valleys    31965    Michigan    2016-08-28 18:54:40.402735    2016-10-14 13:02:31.071942        \N    \N    \N    0    \N    \N    \N    \N    male
11372    Sheila    Cummings    cielo.sporer@jones.org    \N    Sao Tome and Principe    Lake Eribertoview    444 Martine Rapids    89095    Kansas    2016-08-21 06:18:56.997666    2016-10-14 13:02:31.077337        \N    \N    \N    0    \N    \N    \N    \N    female
11373    Christy    Marquardt    angie@zboncak.info    \N    Svalbard & Jan Mayen Islands    Ondrickafort    49488 Emely Gardens    43375-1614    Oklahoma    2016-07-14 09:14:57.037834    2016-10-14 13:02:31.08618        \N    \N    \N    0    \N    \N    \N    \N    female
11374    Aubree    Quitzon    cyril@block.co    \N    Costa Rica    Carrollstad    7802 Moore Points    65589    Oklahoma    2016-08-11 00:40:16.160503    2016-10-14 13:02:31.091652        \N    \N    \N    0    \N    \N    \N    \N    female
11375    Rhianna    Howe    toby@purdyterry.info    \N    Brunei Darussalam    North Bernard    861 Hilpert Plains    80576    Nebraska    2016-08-08 06:50:21.992352    2016-10-14 13:02:31.095747        \N    \N    \N    0    \N    \N    \N    \N    male
11376    Mitchell    Torp    morgan_okeefe@bradtke.org    \N    Wallis and Futuna    Jonathanhaven    5719 Marvin Brook    12708    Delaware    2016-07-11 22:28:02.710616    2016-10-14 13:02:31.102245        \N    \N    \N    0    \N    \N    \N    \N    male
11377    Amber    Zboncak    dasia.goyette@walkerblock.co    \N    Mozambique    Torphyfurt    7577 Feeney Brooks    76326    Delaware    2016-07-25 06:30:44.107882    2016-10-14 13:02:31.10664        \N    \N    \N    0    \N    \N    \N    \N    female
11378    Cynthia    Runolfsdottir    kaya@bernhard.com    \N    Mongolia    West Rosalee    42797 Isac Mall    88899    Idaho    2016-06-30 12:56:48.833685    2016-10-14 13:02:31.110989        \N    \N    \N    0    \N    \N    \N    \N    female
11379    Dax    Mann    callie_considine@medhurst.info    \N    Falkland Islands (Malvinas)    West Lawsonburgh    87473 Caesar Circles    13416-2217    California    2016-08-03 16:02:56.47138    2016-10-14 13:02:31.115481        \N    \N    \N    0    \N    \N    \N    \N    female
11380    Ervin    Walter    chauncey.reynolds@cronin.info    \N    Lao People's Democratic Republic    Dallinton    137 Toy Run    25265-4714    Kansas    2016-08-14 06:37:28.022118    2016-10-14 13:02:31.120698        \N    \N    \N    0    \N    \N    \N    \N    female
11381    Tanner    Beahan    letha@reynolds.org    \N    Malaysia    North Vallie    98696 Stiedemann Prairie    15295-7136    Montana    2016-07-04 20:23:36.921155    2016-10-14 13:02:31.125223        \N    \N    \N    0    \N    \N    \N    \N    male
11382    Jane    Deckow    joanne@mcglynnhagenes.info    \N    Burkina Faso    West Santinaview    1515 Eliane Throughway    22579    Michigan    2016-06-23 18:53:33.96281    2016-10-14 13:02:31.131289        \N    \N    \N    0    \N    \N    \N    \N    female
11383    Etha    Olson    josiah@heelherzog.net    \N    Finland    Jamieshire    7253 Schoen Squares    64004-6532    Washington    2016-09-17 06:01:57.67004    2016-10-14 13:02:31.136044        \N    \N    \N    0    \N    \N    \N    \N    female
11384    Casimer    Stark    mackenzie@zulauf.biz    \N    Brunei Darussalam    North Waylonfurt    47874 Howe Turnpike    21052-2502    Idaho    2016-09-11 12:25:03.709961    2016-10-14 13:02:31.142145        \N    \N    \N    0    \N    \N    \N    \N    male
11385    Lia    Kerluke    treie.rippin@schuster.biz    \N    Seychelles    Dominicland    4436 Adrien Port    39697-7275    Rhode Island    2016-07-24 12:07:10.780778    2016-10-14 13:02:31.147522        \N    \N    \N    0    \N    \N    \N    \N    male
11386    Ima    Runte    ellen_lebsack@rathortiz.com    \N    Mali    South Alvena    3142 Will Track    99933    New Jersey    2016-06-26 23:48:41.775644    2016-10-14 13:02:31.155524        \N    \N    \N    0    \N    \N    \N    \N    female
11387    Tyrell    Dibbert    rosemarie_veum@crooks.org    \N    Mauritius    Vanessahaven    108 Corine Burg    51749-5359    Virginia    2016-08-27 04:05:49.993576    2016-10-14 13:02:31.160837        \N    \N    \N    0    \N    \N    \N    \N    female
11388    Stephon    Abshire    wilhelmine.dicki@moriette.name    \N    Bhutan    Myahville    451 Dave Plains    37395    New Mexico    2016-08-09 07:48:20.143509    2016-10-14 13:02:31.166115        \N    \N    \N    0    \N    \N    \N    \N    male
11389    Tierra    Thompson    ozzie.schoen@rohan.co    \N    Nauru    Lake Darron    480 Hackett Brooks    17381-3056    Indiana    2016-07-15 23:39:08.965878    2016-10-14 13:02:31.170768        \N    \N    \N    0    \N    \N    \N    \N    male
11390    Xzavier    Cruickshank    lisandro.buckridge@okon.net    \N    Eritrea    Leeberg    994 Corbin Road    36182-3008    South Carolina    2016-09-12 11:08:39.878864    2016-10-14 13:02:31.175322        \N    \N    \N    0    \N    \N    \N    \N    female
11391    Aaliyah    Runolfsdottir    willa.schroeder@grant.net    \N    Poland    Koeppside    6477 Brown Mills    83255    Texas    2016-09-06 04:47:58.787182    2016-10-14 13:02:31.180276        \N    \N    \N    0    \N    \N    \N    \N    male
11392    Mazie    Lebsack    corine@pagacmueller.name    \N    South Africa    New Marcusshire    4714 Flatley Highway    81897-3976    Illinois    2016-08-01 05:45:55.423613    2016-10-14 13:02:31.184855        \N    \N    \N    0    \N    \N    \N    \N    male
11393    Samara    Oberbrunner    van_wolff@littelaufderhar.biz    \N    Hungary    West Greenstad    8457 Schiller Crossroad    58964-2935    Oklahoma    2016-08-23 22:44:25.156189    2016-10-14 13:02:31.189225        \N    \N    \N    0    \N    \N    \N    \N    male
11394    Lorena    Kunde    mariam@cain.name    \N    Hungary    Burdettestad    35840 Baumbach Highway    19105    New Jersey    2016-08-24 20:45:35.872237    2016-10-14 13:02:31.193684        \N    \N    \N    0    \N    \N    \N    \N    female
11395    Gennaro    Legros    domenick@rippin.com    \N    Guadeloupe    New Omerbury    31733 Eldred Overpass    22021    Alabama    2016-08-18 10:55:05.455881    2016-10-14 13:02:31.198338        \N    \N    \N    0    \N    \N    \N    \N    male
11396    Corine    Johns    tyreek@purdy.org    \N    Ukraine    Grantfurt    9874 Smith Springs    81187    New Hampshire    2016-08-17 15:46:29.861748    2016-10-14 13:02:31.202928        \N    \N    \N    0    \N    \N    \N    \N    female
11397    Osvaldo    Marvin    jazlyn_reilly@labadie.co    \N    Macedonia    Port Waylon    702 Hyatt Views    71362-2503    Utah    2016-09-20 12:17:46.666988    2016-10-14 13:02:31.207393        \N    \N    \N    0    \N    \N    \N    \N    male
11398    Emily    Ziemann    melia_treutel@stoltenberg.info    \N    Bhutan    New Prestonfort    630 Mertie Wall    86727    South Dakota    2016-08-08 08:30:47.094901    2016-10-14 13:02:31.211808        \N    \N    \N    0    \N    \N    \N    \N    female
11399    Joan    Leffler    kennedy_hodkiewicz@gleason.co    \N    Antigua and Barbuda    Mayerland    68915 Lisandro Dam    94442    Alaska    2016-08-14 22:01:11.77421    2016-10-14 13:02:31.216724        \N    \N    \N    0    \N    \N    \N    \N    male
11400    Andrew    Wintheiser    antonia_dubuque@kuhicwalter.co    \N    Spain    Stanchester    90743 Claudie Avenue    60001-7371    Louisiana    2016-08-08 05:01:43.20736    2016-10-14 13:02:31.221229        \N    \N    \N    0    \N    \N    \N    \N    male
11401    Era    Weber    allie@koelpin.biz    \N    Oman    South Ottis    66980 Littel Tunnel    93319-3164    Missouri    2016-08-31 10:09:28.790259    2016-10-14 13:02:31.226206        \N    \N    \N    0    \N    \N    \N    \N    male
11402    Jakayla    Brekke    tania_yost@nikolaus.info    \N    Philippines    New Shawn    259 Millie Causeway    41701    Louisiana    2016-09-28 14:29:07.265637    2016-10-14 13:02:31.230942        \N    \N    \N    0    \N    \N    \N    \N    male
11403    Jacquelyn    Hartmann    tate@mertz.name    \N    Christmas Island    West Jayda    347 Tromp Knolls    50550    New Jersey    2016-09-08 04:29:39.646847    2016-10-14 13:02:31.235507        \N    \N    \N    0    \N    \N    \N    \N    female
11404    Ruth    Romaguera    jerry_lehner@bosco.info    \N    Antigua and Barbuda    Jerrellchester    3537 Ziemann Junction    78988    North Dakota    2016-07-06 06:06:44.656409    2016-10-14 13:02:31.240508        \N    \N    \N    0    \N    \N    \N    \N    male
11405    Ana    Strosin    theresia@kihn.co    \N    Cuba    North Demetriusmouth    36992 Ondricka Court    36193    Pennsylvania    2016-07-23 05:43:52.369267    2016-10-14 13:02:31.245407        \N    \N    \N    0    \N    \N    \N    \N    female
11406    Dorris    MacGyver    berniece@friesen.io    \N    Russian Federation    New Leoneview    38132 Flatley Points    77114-4861    Alaska    2016-09-02 06:39:43.068441    2016-10-14 13:02:31.250376        \N    \N    \N    0    \N    \N    \N    \N    male
11407    Suzanne    Kuvalis    minnie.ledner@hyatt.org    \N    Lao People's Democratic Republic    Lake Sanfordshire    9134 DuBuque Ports    56154-4564    Massachusetts    2016-08-14 00:27:50.077205    2016-10-14 13:02:31.254944        \N    \N    \N    0    \N    \N    \N    \N    female
11409    Mina    Witting    teie_simonis@westschultz.co    \N    United Arab Emirates    Lake Ahmedfort    96658 Lisa Roads    56420-7577    Connecticut    2016-09-05 11:56:27.714742    2016-10-14 13:02:31.259627        \N    \N    \N    0    \N    \N    \N    \N    female
11410    Jaylin    Altenwerth    adah_erdman@pourosleffler.info    \N    Somalia    Port Hannaland    86414 Kuphal Knolls    92105-5363    Missouri    2016-09-27 18:24:26.591886    2016-10-14 13:02:31.264078        \N    \N    \N    0    \N    \N    \N    \N    male
11411    Ned    Kuhlman    neal@vandervortbeer.info    \N    Angola    O'Connellton    80492 Javon Viaduct    45102-6885    Delaware    2016-08-07 10:56:38.58708    2016-10-14 13:02:31.269054        \N    \N    \N    0    \N    \N    \N    \N    female
11412    Melyssa    Kerluke    tito@wintheiser.net    \N    Egypt    Brannonshire    922 Jaycee Fort    14101-9499    Washington    2016-06-23 07:04:30.618689    2016-10-14 13:02:31.273876        \N    \N    \N    0    \N    \N    \N    \N    female
11413    Hulda    Ernser    graham@cartwrightmorar.biz    \N    Jersey    Lake Else    838 Crist Passage    23658    Ohio    2016-08-11 02:51:31.964386    2016-10-14 13:02:31.278291        \N    \N    \N    0    \N    \N    \N    \N    female
11415    Finn    Balistreri    kale@lebsack.org    \N    China    New Tylermouth    682 Marshall Bypass    13646    Massachusetts    2016-09-17 14:48:21.864314    2016-10-14 13:02:31.282449        \N    \N    \N    0    \N    \N    \N    \N    male
11416    Bettie    Roob    derick@pfeffermccullough.io    \N    Egypt    Russelmouth    352 Maria Overpass    36235    Washington    2016-06-22 13:28:48.210748    2016-10-14 13:02:31.286853        \N    \N    \N    0    \N    \N    \N    \N    female
11417    Wilburn    Kozey    linda_west@howe.org    \N    Greenland    Lennamouth    87725 Shanahan Walks    26009-0199    New Mexico    2016-07-12 02:43:02.311569    2016-10-14 13:02:31.291685        \N    \N    \N    0    \N    \N    \N    \N    male
11418    Marcus    Herzog    guy_hodkiewicz@schulist.biz    \N    Moldova    West Rubieside    3569 Lamar Roads    92659    Kansas    2016-09-12 22:15:47.748198    2016-10-14 13:02:31.300772        \N    \N    \N    0    \N    \N    \N    \N    female
11419    Claudine    Price    kayleigh@legros.net    \N    Nepal    Port Antonetta    33902 Baron Port    36725    Maine    2016-07-30 14:46:03.001196    2016-10-14 13:02:31.305883        \N    \N    \N    0    \N    \N    \N    \N    male
11420    Kirstin    Kuphal    briana@kautzer.org    \N    Cyprus    Lake Deonberg    539 Cassidy Park    85800    West Virginia    2016-09-06 04:55:38.335241    2016-10-14 13:02:31.313108        \N    \N    \N    0    \N    \N    \N    \N    female
11421    Aurelia    Cassin    deie_quitzon@yost.org    \N    Portugal    Schmidtmouth    86279 Conroy Fields    84023    Indiana    2016-08-28 23:39:45.247898    2016-10-14 13:02:31.318539        \N    \N    \N    0    \N    \N    \N    \N    male
11422    Reese    Cartwright    tristian.ward@blanda.co    \N    Japan    New Milton    63754 Imogene Square    62833-7639    Hawaii    2016-09-17 15:00:44.030525    2016-10-14 13:02:31.323616        \N    \N    \N    0    \N    \N    \N    \N    male
11423    Coby    Parker    paolo@satterfield.name    \N    Germany    Rosaliaview    1287 Prohaska Garden    65045-8426    New Jersey    2016-09-25 16:48:36.516521    2016-10-14 13:02:31.328421        \N    \N    \N    0    \N    \N    \N    \N    male
11424    Karelle    Mohr    jada_okeefe@heidenreich.net    \N    Costa Rica    Lake Alaynamouth    44171 Hirthe Roads    89754    Illinois    2016-09-24 17:16:06.412309    2016-10-14 13:02:31.332829        \N    \N    \N    0    \N    \N    \N    \N    male
11426    Devyn    Quitzon    kobe@bayer.org    \N    Thailand    Lanestad    5116 White Isle    81539-4571    Texas    2016-07-23 20:50:04.947344    2016-10-14 13:02:31.342208        \N    \N    \N    0    \N    \N    \N    \N    female
11427    Velda    Schaefer    katarina_nicolas@padberg.biz    \N    Lesotho    East Rhodaville    33127 Becker Vista    69256-9738    Florida    2016-07-09 12:28:25.050022    2016-10-14 13:02:31.346592        \N    \N    \N    0    \N    \N    \N    \N    male
11428    Herta    Kirlin    trenton_hammes@sanfordbatz.com    \N    Bhutan    West Kennediville    4225 Brenden Manor    86999-5266    Idaho    2016-08-01 13:12:30.948239    2016-10-14 13:02:31.350857        \N    \N    \N    0    \N    \N    \N    \N    male
11429    Odie    Buckridge    abigail@smitham.info    \N    French Southern Territories    Daughertybury    7253 Quitzon Garden    80397-1318    Iowa    2016-09-19 01:48:18.195084    2016-10-14 13:02:31.355229        \N    \N    \N    0    \N    \N    \N    \N    female
11430    Agustin    Bode    andre@ferry.com    \N    Bolivia    Lornamouth    22044 Mack Trail    67831-7983    Montana    2016-09-17 02:16:33.11143    2016-10-14 13:02:31.359775        \N    \N    \N    0    \N    \N    \N    \N    female
11431    Jayde    Green    garth_ko@beer.co    \N    Indonesia    West Florianland    31023 Grimes Drive    44515    Maryland    2016-07-20 08:53:29.271079    2016-10-14 13:02:31.364206        \N    \N    \N    0    \N    \N    \N    \N    male
11432    Tierra    Kuhn    luisa_huel@kuvalisaltenwerth.name    \N    Spain    Myrtiefurt    65766 Ebert Neck    40134-8489    Tennessee    2016-08-16 06:41:48.444092    2016-10-14 13:02:31.370003        \N    \N    \N    0    \N    \N    \N    \N    male
11433    Isobel    Batz    myles@aufderhar.biz    \N    Croatia    Elianberg    310 Metz Causeway    30503    Mississippi    2016-07-01 05:33:22.023607    2016-10-14 13:02:31.375021        \N    \N    \N    0    \N    \N    \N    \N    female
11434    Emie    Hauck    chesley@zulauf.io    \N    Czech Republic    Mariamfort    349 Schinner Oval    21548    Kentucky    2016-07-31 18:11:50.053724    2016-10-14 13:02:31.380234        \N    \N    \N    0    \N    \N    \N    \N    male
11435    Karlee    Reinger    kylie@harris.net    \N    Belgium    New Anastasiaberg    6846 Donnelly Field    28169-2879    South Dakota    2016-09-14 23:46:09.104152    2016-10-14 13:02:31.3871        \N    \N    \N    0    \N    \N    \N    \N    female
11436    Kurtis    Yost    beaulah_gleason@west.biz    \N    Denmark    North Letitiamouth    19507 Shania Extension    71412    Massachusetts    2016-09-27 02:50:36.126748    2016-10-14 13:02:31.393716        \N    \N    \N    0    \N    \N    \N    \N    male
11437    Camila    Altenwerth    sheridan@schinner.name    \N    Niger    Johnsonbury    97785 Briana Forks    45446    Alabama    2016-09-18 05:21:53.42016    2016-10-14 13:02:31.400986        \N    \N    \N    0    \N    \N    \N    \N    male
11438    Giovanna    Corwin    sadye@hodkiewiczlockman.net    \N    Trinidad and Tobago    East Idellaburgh    8511 Allie Trail    25841-2859    Connecticut    2016-08-14 21:44:43.106522    2016-10-14 13:02:31.405615        \N    \N    \N    0    \N    \N    \N    \N    female
11439    Hershel    Hessel    mario_kautzer@steuber.org    \N    Mexico    Manteburgh    954 Yasmeen Haven    49673    Oregon    2016-07-20 00:01:56.435844    2016-10-14 13:02:31.410642        \N    \N    \N    0    \N    \N    \N    \N    female
11440    Godfrey    Bergstrom    ora_zulauf@heaney.io    \N    Niue    East Wilfredomouth    4881 Rath Square    61983-2227    Oklahoma    2016-08-18 06:28:23.49926    2016-10-14 13:02:31.415361        \N    \N    \N    0    \N    \N    \N    \N    male
11441    Gracie    Weber    zackary@block.co    \N    Guadeloupe    Willowland    46632 Litzy Viaduct    57367    Nebraska    2016-07-02 07:23:16.086186    2016-10-14 13:02:31.42352        \N    \N    \N    0    \N    \N    \N    \N    male
19162    Lucio    Kuhic    lesly@tillman.org    \N    Cape Verde    East Mortimerfort    224 Schoen Flat    49090    Ohio    2016-07-26 16:25:48.316644    2016-10-14 13:02:31.436643        \N    \N    \N    0    \N    \N    \N    \N    male
11442    Eliseo    Hayes    dorcas@buckridge.io    \N    Belgium    East Calliechester    8830 Klocko Rue    95408    Maine    2016-08-13 02:22:44.098844    2016-10-14 13:02:31.441429        \N    \N    \N    0    \N    \N    \N    \N    female
11444    Boris    Rowe    clare.kunde@kunde.io    \N    Switzerland    Port Letitia    332 Diana Squares    49854    West Virginia    2016-08-12 11:10:57.175607    2016-10-14 13:02:31.447345        \N    \N    \N    0    \N    \N    \N    \N    female
11592    Davin    Jones    myriam@walkerhermann.co    \N    Comoros    Halvorsonfort    713 White Alley    73193    New York    2016-08-06 14:16:56.570273    2016-10-14 13:02:32.077861        \N    \N    \N    0    \N    \N    \N    \N    female
11445    Alfred    O'Keefe    catharine@bartoletti.com    \N    Mauritania    Powlowskiville    94520 Kobe Villages    87910-2051    Oklahoma    2016-06-28 00:22:57.152015    2016-10-14 13:02:31.451876        \N    \N    \N    0    \N    \N    \N    \N    male
11446    Margot    Mante    marley_welch@bauch.co    \N    Equatorial Guinea    New Stevie    559 Danny Islands    54518    Alabama    2016-08-15 08:59:20.57406    2016-10-14 13:02:31.458311        \N    \N    \N    0    \N    \N    \N    \N    male
11447    Clint    O'Hara    evalyn@mcglynn.io    \N    El Salvador    Sauerton    777 Bernie Villages    63943-5826    New Jersey    2016-06-25 14:20:48.269383    2016-10-14 13:02:31.462919        \N    \N    \N    0    \N    \N    \N    \N    female
11448    Rosalinda    Berge    ubaldo@erdman.name    \N    Greece    Dylanchester    826 Verlie Highway    22254    Colorado    2016-08-11 19:27:12.771694    2016-10-14 13:02:31.4673        \N    \N    \N    0    \N    \N    \N    \N    female
11450    Helmer    Welch    destany.wuckert@oconnerschumm.net    \N    Palau    West Daryl    4570 Goodwin Crest    89208    Arizona    2016-09-26 14:38:33.73963    2016-10-14 13:02:31.472417        \N    \N    \N    0    \N    \N    \N    \N    female
11451    Janie    Wiegand    yoshiko@hahn.name    \N    Austria    Rubyeberg    606 Sipes Loaf    46203    Nevada    2016-07-17 19:56:36.293694    2016-10-14 13:02:31.481602        \N    \N    \N    0    \N    \N    \N    \N    male
11452    Lindsey    Feeney    rhett_bernier@mills.net    \N    Congo    Gibsonborough    898 Reynolds Path    36557-7036    Ohio    2016-08-27 03:06:35.562663    2016-10-14 13:02:31.486726        \N    \N    \N    0    \N    \N    \N    \N    male
11453    Daryl    O'Reilly    erling@kirlin.co    \N    Guadeloupe    Keelyland    68447 Shanahan Grove    30626-6413    South Carolina    2016-09-20 00:34:44.961613    2016-10-14 13:02:31.492997        \N    \N    \N    0    \N    \N    \N    \N    male
11454    Wilfredo    Wolf    deja@windler.com    \N    Kazakhstan    Abbottville    9702 Rice Motorway    51718    Mississippi    2016-09-25 10:43:58.071924    2016-10-14 13:02:31.497666        \N    \N    \N    0    \N    \N    \N    \N    male
11455    Larissa    Sauer    terrell.douglas@wolf.name    \N    Taiwan    Lake Paula    98674 Kemmer Manor    95383-4813    Iowa    2016-07-19 02:50:20.176875    2016-10-14 13:02:31.501955        \N    \N    \N    0    \N    \N    \N    \N    male
11456    Richie    Russel    kirk@gradyhayes.co    \N    Heard Island and McDonald Islands    Jillianfurt    662 Tate Stream    13060    Delaware    2016-07-04 04:38:50.305893    2016-10-14 13:02:31.5063        \N    \N    \N    0    \N    \N    \N    \N    female
11457    River    Bergstrom    eli_breitenberg@fisherrogahn.biz    \N    Kazakhstan    Myrticeborough    41171 Taryn Radial    37697    Texas    2016-08-03 23:23:34.864399    2016-10-14 13:02:31.510564        \N    \N    \N    0    \N    \N    \N    \N    female
11458    Brendon    Murray    letitia@shieldshagenes.biz    \N    Greece    West Diamondland    356 Kris Well    48108-6625    North Carolina    2016-07-04 21:31:09.483936    2016-10-14 13:02:31.51468        \N    \N    \N    0    \N    \N    \N    \N    male
11462    Alphonso    Stoltenberg    winnifred@keeling.com    \N    Afghanistan    Lubowitzburgh    43807 Felicity Underpass    95299-7947    Virginia    2016-09-29 00:57:01.713742    2016-10-14 13:02:31.522807        \N    \N    \N    0    \N    \N    \N    \N    male
11463    Audra    Bechtelar    tiffany_powlowski@thompson.net    \N    Dominican Republic    Blockberg    96390 Ashton Corners    38145-0955    Massachusetts    2016-07-24 00:22:31.448925    2016-10-14 13:02:31.527123        \N    \N    \N    0    \N    \N    \N    \N    female
11464    Maia    Schultz    lonny@oconnellpagac.org    \N    South Africa    North Melody    215 Waelchi Brook    59429    Ohio    2016-08-17 10:22:36.774124    2016-10-14 13:02:31.531399        \N    \N    \N    0    \N    \N    \N    \N    male
11465    Eduardo    Dickinson    brenden@dietrich.name    \N    Palau    Ortizchester    332 Veum Knolls    78913    New Jersey    2016-09-27 02:51:23.636802    2016-10-14 13:02:31.535825        \N    \N    \N    0    \N    \N    \N    \N    male
11466    Alec    Lesch    annie@cruickshank.com    \N    Jersey    Lenoraville    7176 Noble Burg    61178    Pennsylvania    2016-08-13 04:33:18.85208    2016-10-14 13:02:31.540337        \N    \N    \N    0    \N    \N    \N    \N    male
11467    Adrain    Keeling    zelda.predovic@wisokykoelpin.info    \N    Bahrain    Smithamtown    51581 Nolan Valleys    37149    Tennessee    2016-09-04 16:45:26.886727    2016-10-14 13:02:31.545627        \N    \N    \N    0    \N    \N    \N    \N    male
11468    Emelie    Beier    samanta_hayes@fadel.io    \N    Samoa    Maeveberg    896 Crooks Ranch    67335    New Hampshire    2016-09-17 13:04:40.566918    2016-10-14 13:02:31.549881        \N    \N    \N    0    \N    \N    \N    \N    male
11469    Helmer    Sipes    camylle.bode@marks.name    \N    Jordan    East Bailee    5911 Ross Stravenue    35871    Idaho    2016-07-21 19:39:34.443621    2016-10-14 13:02:31.554415        \N    \N    \N    0    \N    \N    \N    \N    male
11471    Alexandrine    Bailey    gudrun@franeckistokes.com    \N    Jordan    North Elna    692 Simonis Circle    55786    Arkansas    2016-08-16 03:11:18.893039    2016-10-14 13:02:31.559202        \N    \N    \N    0    \N    \N    \N    \N    male
11472    Oswald    Kub    kane_ward@lednerhamill.co    \N    Armenia    Lake Corbin    51053 Amya Flats    71933-3721    Washington    2016-09-09 07:34:38.942085    2016-10-14 13:02:31.563808        \N    \N    \N    0    \N    \N    \N    \N    male
11473    Amina    Ledner    burdette@franeckibogan.net    \N    Hong Kong    Rustymouth    8045 Henri Harbor    53158-8486    Alabama    2016-08-11 03:33:51.423153    2016-10-14 13:02:31.56847        \N    \N    \N    0    \N    \N    \N    \N    female
11474    Wilson    Jacobi    garnet_king@lubowitz.biz    \N    Mexico    Port Earnestine    420 Upton Alley    29960-8035    Minnesota    2016-09-03 09:02:21.094216    2016-10-14 13:02:31.572924        \N    \N    \N    0    \N    \N    \N    \N    female
11475    Loy    Barton    joshua.bogisich@prohaska.info    \N    Dominican Republic    Wisozkfort    50186 Ryan Union    79359    Michigan    2016-07-15 12:47:13.958492    2016-10-14 13:02:31.577144        \N    \N    \N    0    \N    \N    \N    \N    male
11476    Lew    Simonis    johnpaul_marks@dicki.net    \N    Cook Islands    Loniebury    279 Gwendolyn Oval    53333    Tennessee    2016-07-19 06:59:19.671391    2016-10-14 13:02:31.581439        \N    \N    \N    0    \N    \N    \N    \N    male
11477    Kade    Stracke    sedrick_hirthe@watsicakovacek.io    \N    Mauritania    Port Jamesonfurt    245 Zulauf Courts    49577    New Hampshire    2016-09-28 20:25:57.725437    2016-10-14 13:02:31.585787        \N    \N    \N    0    \N    \N    \N    \N    female
11478    Erwin    Cartwright    jayda_larson@schuster.org    \N    Guam    Lelaberg    44870 Javonte Mall    88750-7973    Michigan    2016-08-29 06:12:59.558358    2016-10-14 13:02:31.589967        \N    \N    \N    0    \N    \N    \N    \N    male
11479    Rocio    Hettinger    tyrique@leuschke.biz    \N    Kuwait    East Kolbytown    39997 Bianka Dam    33253    Indiana    2016-07-12 20:26:15.466177    2016-10-14 13:02:31.59442        \N    \N    \N    0    \N    \N    \N    \N    male
11480    Paula    Schmitt    margie_hilll@jacobson.name    \N    Mauritius    VonRuedenburgh    106 Laney Station    62758-0927    Idaho    2016-08-02 23:46:47.673448    2016-10-14 13:02:31.599079        \N    \N    \N    0    \N    \N    \N    \N    male
11481    Albert    Hessel    garland_gulgowski@cole.org    \N    Netherlands Antilles    Geraldinemouth    75120 Gutmann Hill    90758    Ohio    2016-08-14 16:03:23.115791    2016-10-14 13:02:31.603524        \N    \N    \N    0    \N    \N    \N    \N    male
11482    Oscar    Reichert    hattie@wiegand.name    \N    Mali    Corwinbury    41460 Davis Cape    16067-9534    Hawaii    2016-09-02 17:50:30.557439    2016-10-14 13:02:31.607944        \N    \N    \N    0    \N    \N    \N    \N    female
11484    Cooper    Greenholt    gordon.vonrueden@oconner.name    \N    Democratic People's Republic of Korea    Jeradmouth    212 Chadrick Knolls    60002-4338    California    2016-07-03 12:22:47.891083    2016-10-14 13:02:31.612829        \N    \N    \N    0    \N    \N    \N    \N    female
11485    Hyman    Farrell    kaitlyn.waters@bahringer.info    \N    Russian Federation    Lake Bridgetteborough    47620 Doyle Knolls    71973-6033    Florida    2016-07-25 12:45:45.050688    2016-10-14 13:02:31.617258        \N    \N    \N    0    \N    \N    \N    \N    male
11486    Kaylie    Emmerich    shanel@schultz.net    \N    Gibraltar    Justenbury    233 Alexis Village    26509    California    2016-07-21 09:45:10.238221    2016-10-14 13:02:31.621313        \N    \N    \N    0    \N    \N    \N    \N    female
11487    Rhianna    Veum    hayden@orn.io    \N    Macao    North Arlie    50466 Cartwright Mountains    99231    Alabama    2016-09-25 11:02:26.583898    2016-10-14 13:02:31.625135        \N    \N    \N    0    \N    \N    \N    \N    male
11488    Kassandra    Lakin    logan.kiehn@treutel.name    \N    French Southern Territories    Effertzside    74810 Schaden View    30272-1493    Nebraska    2016-08-09 02:18:33.24608    2016-10-14 13:02:31.629097        \N    \N    \N    0    \N    \N    \N    \N    female
11489    Wade    Hoppe    willard@waltercormier.io    \N    Cook Islands    Jeromyborough    60715 Koepp Extension    21477    South Dakota    2016-08-21 03:50:23.932381    2016-10-14 13:02:31.633767        \N    \N    \N    0    \N    \N    \N    \N    male
11491    Jannie    Bins    imelda@ledner.info    \N    Solomon Islands    Haleyhaven    312 Moen Village    17954-8661    New Jersey    2016-07-16 22:40:30.717041    2016-10-14 13:02:31.638083        \N    \N    \N    0    \N    \N    \N    \N    female
11492    Norval    Bins    koby_moen@gislason.org    \N    Dominica    East Ahmed    92721 Duncan Hill    65194    Arizona    2016-07-27 20:20:25.145835    2016-10-14 13:02:31.64194        \N    \N    \N    0    \N    \N    \N    \N    female
11493    Richie    Dach    julianne@casper.biz    \N    Montenegro    Zellachester    3326 Swaniawski Locks    78625    New York    2016-08-13 15:05:35.079369    2016-10-14 13:02:31.646143        \N    \N    \N    0    \N    \N    \N    \N    male
11494    Beaulah    Pacocha    golden@hagenesrobel.name    \N    Thailand    North Creolastad    89227 Samir Turnpike    93013-3039    Illinois    2016-08-11 17:29:12.191981    2016-10-14 13:02:31.650403        \N    \N    \N    0    \N    \N    \N    \N    male
11495    Kiarra    Nienow    donna@willms.name    \N    Congo    Fisherton    7987 Antwan Meadows    45847-7104    Wisconsin    2016-09-17 18:15:17.543801    2016-10-14 13:02:31.654505        \N    \N    \N    0    \N    \N    \N    \N    male
11496    Vita    Graham    valentina_friesen@fahey.com    \N    Monaco    Rolandoshire    918 Mckayla Rue    21190-3956    Mississippi    2016-07-31 09:23:02.945812    2016-10-14 13:02:31.658765        \N    \N    \N    0    \N    \N    \N    \N    female
11497    Wilfredo    Frami    kaleb.schaden@metzkoepp.co    \N    Honduras    West Sigurdmouth    3130 Powlowski Shores    93320-2650    Ohio    2016-07-03 00:37:00.971556    2016-10-14 13:02:31.662911        \N    \N    \N    0    \N    \N    \N    \N    female
11498    Brain    Langosh    elvie@marquardtveum.com    \N    Gabon    Port Salvatorefurt    2854 Huel Squares    70617-4520    Maryland    2016-09-13 20:27:01.3    2016-10-14 13:02:31.667277        \N    \N    \N    0    \N    \N    \N    \N    female
11499    Patsy    Cole    alex@feil.com    \N    Canada    South Roel    535 Cummings Shoals    60201-4388    Alaska    2016-07-11 19:14:06.888539    2016-10-14 13:02:31.671822        \N    \N    \N    0    \N    \N    \N    \N    female
11500    Donnell    Walker    eulah@wolf.info    \N    Peru    Dylantown    57815 Kub Cliff    50654-3322    Kansas    2016-07-03 22:48:43.935141    2016-10-14 13:02:31.676242        \N    \N    \N    0    \N    \N    \N    \N    female
11501    Imogene    Prosacco    everett@wisokywaelchi.biz    \N    Equatorial Guinea    West Ryley    6342 Kunze Glen    23221    Arkansas    2016-08-22 14:00:59.154736    2016-10-14 13:02:31.680316        \N    \N    \N    0    \N    \N    \N    \N    female
11502    Sarah    Krajcik    lonny@hackettcorwin.com    \N    Spain    Arneport    484 Jaskolski Cape    86354-6003    Nebraska    2016-06-27 21:15:57.908485    2016-10-14 13:02:31.68458        \N    \N    \N    0    \N    \N    \N    \N    male
11503    Elyse    Bode    bradly.cruickshank@wyman.name    \N    Greenland    Hilllport    13908 Schimmel Bypass    10483    Minnesota    2016-08-18 09:58:56.53838    2016-10-14 13:02:31.689116        \N    \N    \N    0    \N    \N    \N    \N    female
11504    Gerry    Connelly    allene.barton@ernsergislason.net    \N    Georgia    Rosamondville    462 Dawson Stream    97860    New Hampshire    2016-07-29 01:29:04.480074    2016-10-14 13:02:31.693518        \N    \N    \N    0    \N    \N    \N    \N    male
11505    Kara    Sporer    mara.king@carroll.com    \N    Cayman Islands    Kubside    1521 Leone River    35094-5424    Illinois    2016-06-26 01:09:29.545302    2016-10-14 13:02:31.697744        \N    \N    \N    0    \N    \N    \N    \N    male
11506    Helga    Mueller    sarah.gerlach@predoviclubowitz.name    \N    Germany    Thelmafurt    5524 Bruen Island    24459-1597    Wisconsin    2016-09-17 11:03:30.153209    2016-10-14 13:02:31.70175        \N    \N    \N    0    \N    \N    \N    \N    male
11507    Abagail    McDermott    bridgette@parisian.info    \N    Qatar    West Maryam    122 Gerlach Heights    88128-1053    Utah    2016-08-08 19:13:41.048168    2016-10-14 13:02:31.706165        \N    \N    \N    0    \N    \N    \N    \N    female
11508    Deangelo    Ullrich    mauricio.fisher@harveywintheiser.co    \N    Bulgaria    East Neldaville    994 Haag Underpass    26077-1442    Nebraska    2016-09-28 12:19:39.460007    2016-10-14 13:02:31.710815        \N    \N    \N    0    \N    \N    \N    \N    female
11509    Hadley    Durgan    sammy.treutel@leschlehner.info    \N    Bouvet Island (Bouvetoya)    Port Weldonland    115 Collins Burgs    76074    Oregon    2016-07-08 12:02:45.459015    2016-10-14 13:02:31.715336        \N    \N    \N    0    \N    \N    \N    \N    male
11511    Lina    Balistreri    cali@parisian.com    \N    Uganda    Eleonoreview    454 Moen Parkways    28191-1243    Hawaii    2016-08-31 11:19:21.65552    2016-10-14 13:02:31.719803        \N    \N    \N    0    \N    \N    \N    \N    female
11512    Frances    Wiegand    emmet.murray@hagenesfisher.com    \N    Faroe Islands    South Lillashire    593 Lavern Gardens    74670    Tennessee    2016-07-08 15:12:53.251145    2016-10-14 13:02:31.724395        \N    \N    \N    0    \N    \N    \N    \N    male
11513    Joan    Lueilwitz    mathilde@terry.biz    \N    Lao People's Democratic Republic    West Sedrick    7781 Brekke Ports    26261-0190    Michigan    2016-09-25 05:54:45.502611    2016-10-14 13:02:31.728749        \N    \N    \N    0    \N    \N    \N    \N    male
11514    Emil    Hyatt    erik.ritchie@dietrich.name    \N    Algeria    Shanafurt    68544 Harley Plain    51651    West Virginia    2016-09-03 01:53:56.925597    2016-10-14 13:02:31.732852        \N    \N    \N    0    \N    \N    \N    \N    female
11515    Lola    Sauer    lon.rohan@hand.biz    \N    Indonesia    North Efrain    6815 Mossie Mission    48523-3373    Arkansas    2016-06-30 17:45:26.112792    2016-10-14 13:02:31.737194        \N    \N    \N    0    \N    \N    \N    \N    male
11516    Ryleigh    Kris    timmothy@gutmannreinger.com    \N    French Southern Territories    Lake Trystanborough    321 Volkman Trail    30134    Oklahoma    2016-07-11 18:58:02.297103    2016-10-14 13:02:31.741553        \N    \N    \N    0    \N    \N    \N    \N    male
11517    Danny    Marks    sabina@boyermuller.biz    \N    Martinique    Friesentown    177 Lydia Cove    88457-5696    Pennsylvania    2016-09-17 23:21:09.138293    2016-10-14 13:02:31.745853        \N    \N    \N    0    \N    \N    \N    \N    female
11518    Pedro    Frami    nels@cartwright.org    \N    Tajikistan    Hazelville    856 Bahringer Ports    19858-4695    Wyoming    2016-08-06 17:24:46.334349    2016-10-14 13:02:31.75026        \N    \N    \N    0    \N    \N    \N    \N    male
11519    Marie    Nolan    philip.kohler@hackett.net    \N    Sudan    Port Adaline    694 Rhiannon Extensions    34266-5813    Vermont    2016-07-14 02:16:15.599732    2016-10-14 13:02:31.754572        \N    \N    \N    0    \N    \N    \N    \N    female
11520    Jennifer    Klocko    carmel@fadel.io    \N    Ghana    Amandaville    3434 Baylee Trafficway    50242    North Carolina    2016-08-26 09:59:23.288962    2016-10-14 13:02:31.7592        \N    \N    \N    0    \N    \N    \N    \N    female
11490    Dora    Ankunding    reanna@jaskolski.net    \N    Georgia    New Jenniefurt    707 Helene Burgs    46060    New Jersey    2016-07-12 08:45:59.037066    2016-10-14 13:02:31.763859        \N    \N    \N    0    \N    \N    \N    \N    male
11521    Archibald    Orn    benny.orn@glover.net    \N    Kuwait    Klockoburgh    6583 Lonny Brooks    40473-2532    Kentucky    2016-07-10 05:45:20.827071    2016-10-14 13:02:31.7688        \N    \N    \N    0    \N    \N    \N    \N    female
11522    Oswaldo    Russel    devante@feeney.org    \N    Cape Verde    New Ellen    30477 Kemmer Circle    10662    Virginia    2016-09-25 06:30:17.556896    2016-10-14 13:02:31.773519        \N    \N    \N    0    \N    \N    \N    \N    female
11523    Allie    Watsica    ferne@ruel.co    \N    Netherlands    New Bradenchester    9803 Dach Island    92198-9705    Arkansas    2016-08-23 23:56:07.312062    2016-10-14 13:02:31.778349        \N    \N    \N    0    \N    \N    \N    \N    male
11524    Therese    Brakus    gayle.glover@glover.net    \N    Palau    Camronville    17086 Ciara Haven    85956-2129    Arkansas    2016-09-25 05:44:42.065392    2016-10-14 13:02:31.78281        \N    \N    \N    0    \N    \N    \N    \N    female
11526    Korbin    Marquardt    earnestine@koelpinnicolas.name    \N    Nicaragua    North Salvadorhaven    6147 Kerluke Drives    37650    Indiana    2016-08-07 04:14:13.167825    2016-10-14 13:02:31.78712        \N    \N    \N    0    \N    \N    \N    \N    female
11527    Constance    Hauck    ahmad@mitchell.org    \N    Saint Martin    East Miles    4972 Claude Views    11812-0570    New Hampshire    2016-06-26 18:40:48.544683    2016-10-14 13:02:31.791417        \N    \N    \N    0    \N    \N    \N    \N    female
11528    Marina    Daniel    jamil_christiansen@feeney.co    \N    British Indian Ocean Territory (Chagos Archipelago)    New Bertha    7384 Katelyn Extension    31716    South Dakota    2016-09-17 09:29:22.033989    2016-10-14 13:02:31.795416        \N    \N    \N    0    \N    \N    \N    \N    male
11529    Garfield    Aufderhar    carmen.quitzon@kovacekbrakus.name    \N    Niger    Lake Taureanbury    795 Boyer Dale    77505    California    2016-09-15 14:38:27.529084    2016-10-14 13:02:31.799719        \N    \N    \N    0    \N    \N    \N    \N    female
11530    Santiago    Kling    roman@dooley.net    \N    Svalbard & Jan Mayen Islands    West Judy    8229 Kunde Loaf    45199    Kentucky    2016-08-15 20:47:51.210313    2016-10-14 13:02:31.804364        \N    \N    \N    0    \N    \N    \N    \N    female
11531    Lonny    DuBuque    joyce@harrisconn.info    \N    Guatemala    Lake Harvey    990 Luettgen Parkways    17059-2473    Mississippi    2016-07-05 04:27:02.854614    2016-10-14 13:02:31.808852        \N    \N    \N    0    \N    \N    \N    \N    female
11532    Brenden    Wiegand    kallie@feeney.name    \N    Turkey    East Emmittberg    305 Violet Place    99191-1694    New York    2016-08-01 02:09:33.300185    2016-10-14 13:02:31.812936        \N    \N    \N    0    \N    \N    \N    \N    male
11533    Zoila    Lubowitz    marguerite.hodkiewicz@jones.io    \N    Saint Kitts and Nevis    Lake Gabriellemouth    96534 Parker Summit    92988    Oregon    2016-06-27 13:50:30.106327    2016-10-14 13:02:31.817539        \N    \N    \N    0    \N    \N    \N    \N    male
11534    Maritza    Gerhold    edyth@markshegmann.com    \N    Bermuda    Lake Camilaview    927 Kshlerin Hill    29366    Alabama    2016-09-12 08:39:52.01182    2016-10-14 13:02:31.823846        \N    \N    \N    0    \N    \N    \N    \N    male
11535    Kelsi    Walsh    aurelia@mrazstrosin.co    \N    Peru    Lake Katarina    8282 Mueller Square    86534    North Carolina    2016-09-05 20:51:39.948086    2016-10-14 13:02:31.829359        \N    \N    \N    0    \N    \N    \N    \N    male
11536    Casandra    Lueilwitz    wilton_donnelly@wisoky.biz    \N    France    Horaceview    95239 Watsica Junctions    19044    Montana    2016-08-21 09:37:09.251968    2016-10-14 13:02:31.834187        \N    \N    \N    0    \N    \N    \N    \N    male
11537    Mortimer    Hickle    lew_oberbrunner@fadelwatsica.name    \N    Sri Lanka    Rocioton    30397 Tierra Loop    85066    Connecticut    2016-08-12 23:51:19.697552    2016-10-14 13:02:31.838804        \N    \N    \N    0    \N    \N    \N    \N    female
11538    Kaden    Koepp    frances@murray.name    \N    Armenia    South Arturo    78114 Erick Rest    12058    California    2016-08-08 05:36:23.381776    2016-10-14 13:02:31.843617        \N    \N    \N    0    \N    \N    \N    \N    male
11540    Janice    Jacobson    lavinia.collins@jacobs.com    \N    Bolivia    Alysonfort    59710 Lucy Crest    37039    Ohio    2016-08-15 07:40:43.621326    2016-10-14 13:02:31.848573        \N    \N    \N    0    \N    \N    \N    \N    female
11541    Noemy    Ortiz    teresa@langworth.io    \N    Sri Lanka    Lorenzoborough    3426 Leffler Springs    68817    Maryland    2016-08-04 06:30:22.268893    2016-10-14 13:02:31.853486        \N    \N    \N    0    \N    \N    \N    \N    male
11542    Bo    Bradtke    kariane@johnsonkris.com    \N    United Kingdom    Borerstad    8100 Turner Trafficway    92967-9322    New Mexico    2016-08-30 06:39:27.531109    2016-10-14 13:02:31.857954        \N    \N    \N    0    \N    \N    \N    \N    female
11543    Jon    Kub    layla_schultz@padberg.com    \N    Bouvet Island (Bouvetoya)    Bernieland    3261 Shaylee Roads    19168    Nevada    2016-07-20 14:08:37.37946    2016-10-14 13:02:31.862706        \N    \N    \N    0    \N    \N    \N    \N    male
11544    Amaya    Heaney    anastasia@stokesreichel.name    \N    Papua New Guinea    East Aracelyside    92822 Dare Coves    55439-3490    Tennessee    2016-09-10 06:00:12.56048    2016-10-14 13:02:31.867102        \N    \N    \N    0    \N    \N    \N    \N    female
11591    Erich    Crist    timmothy_braun@carrollprohaska.info    \N    Liechtenstein    East Emanuelberg    66262 Lisa Plaza    34643-9504    Maryland    2016-08-18 03:37:58.002635    2016-10-14 13:02:32.074025        \N    \N    \N    0    \N    \N    \N    \N    male
11545    Kathlyn    Quigley    adolfo.reynolds@conroy.org    \N    Democratic People's Republic of Korea    Elenoraside    701 Jailyn Prairie    69861    North Dakota    2016-08-01 12:30:14.085571    2016-10-14 13:02:31.87144        \N    \N    \N    0    \N    \N    \N    \N    male
11546    Odessa    Weissnat    orval_kunze@metzboehm.biz    \N    Yemen    Connorside    30052 Wolf Spring    40848    Nebraska    2016-09-01 06:22:03.698249    2016-10-14 13:02:31.876219        \N    \N    \N    0    \N    \N    \N    \N    female
11547    Laverne    Walker    onie.bartell@blanda.io    \N    Christmas Island    Tobymouth    909 Arturo Knolls    45417-7861    Illinois    2016-07-29 06:17:02.417614    2016-10-14 13:02:31.880933        \N    \N    \N    0    \N    \N    \N    \N    female
11548    Cleve    Gerlach    rozella_hegmann@kiehn.org    \N    Christmas Island    Roelport    63653 Katelynn Ports    74361    Colorado    2016-06-30 18:29:49.096205    2016-10-14 13:02:31.885099        \N    \N    \N    0    \N    \N    \N    \N    male
11549    Caterina    Pfeffer    chanelle.feil@macejkovic.net    \N    Bahamas    Port Garfield    638 Hallie Island    39742-6059    Indiana    2016-09-09 18:25:17.143954    2016-10-14 13:02:31.88981        \N    \N    \N    0    \N    \N    \N    \N    male
11550    Tyler    Hermann    ebony@mcclure.name    \N    Iran    East Demarco    361 Dibbert Ranch    81905    Nevada    2016-07-16 08:43:36.463511    2016-10-14 13:02:31.895241        \N    \N    \N    0    \N    \N    \N    \N    female
11551    Christine    Keeling    brock@haag.co    \N    United Kingdom    Fredshire    6233 Eldred Harbor    92974-0110    Wyoming    2016-07-25 09:45:44.508681    2016-10-14 13:02:31.900347        \N    \N    \N    0    \N    \N    \N    \N    female
11552    Consuelo    Hessel    earnestine.stokes@strosinschneider.io    \N    Christmas Island    Bahringermouth    119 Frami Shores    62185    Missouri    2016-08-29 03:03:57.147863    2016-10-14 13:02:31.904856        \N    \N    \N    0    \N    \N    \N    \N    female
11553    Maggie    Stamm    dakota@mraz.co    \N    Bosnia and Herzegovina    South Tyrel    6726 Susanna Roads    21470    North Dakota    2016-09-02 06:37:28.407164    2016-10-14 13:02:31.909158        \N    \N    \N    0    \N    \N    \N    \N    male
11554    Gardner    Mante    adriana.walsh@ankundinggorczany.org    \N    Puerto Rico    Courtneytown    24466 Imogene Roads    25934    Wisconsin    2016-07-28 05:19:36.032768    2016-10-14 13:02:31.914403        \N    \N    \N    0    \N    \N    \N    \N    male
11555    Addie    D'Amore    mckenzie@spencer.io    \N    Comoros    Emanuelfurt    654 Linda Land    70892    Utah    2016-08-06 21:16:34.087774    2016-10-14 13:02:31.91871        \N    \N    \N    0    \N    \N    \N    \N    female
11556    Lempi    Cartwright    vicky_hartmann@strackefeil.com    \N    China    West Arnaldotown    564 Monserrat Spurs    18602    Vermont    2016-07-06 17:54:44.630693    2016-10-14 13:02:31.92348        \N    \N    \N    0    \N    \N    \N    \N    male
11558    Deja    Jast    dereck_gleason@beatty.name    \N    Cambodia    North Zachariahfort    58437 Jast Fords    69999-0986    Washington    2016-09-08 13:40:54.494943    2016-10-14 13:02:31.928104        \N    \N    \N    0    \N    \N    \N    \N    female
11559    Oliver    Tremblay    reba.jacobi@kilback.net    \N    Switzerland    Lake Darrel    61674 Flatley Mall    88022    New Jersey    2016-08-30 00:38:38.109724    2016-10-14 13:02:31.932672        \N    \N    \N    0    \N    \N    \N    \N    female
11560    Hollie    Paucek    angela.stehr@graham.com    \N    Saint Helena    Orvilletown    28544 O'Connell Wall    23357-5554    Colorado    2016-07-22 00:44:55.690321    2016-10-14 13:02:31.937322        \N    \N    \N    0    \N    \N    \N    \N    male
11729    Dessie    Kunde    karson@orn.info    \N    Portugal    West Michaela    7589 Klocko Pike    41977-4224    Delaware    2016-09-11 00:55:43.341395    2016-10-14 13:02:31.941832        \N    \N    \N    0    \N    \N    \N    \N    female
11561    Demetrius    Dibbert    ariel@mitchellkeebler.biz    \N    Somalia    New Gaylordhaven    5538 Runte Mount    69628-6928    Alabama    2016-09-12 22:04:51.170403    2016-10-14 13:02:31.946156        \N    \N    \N    0    \N    \N    \N    \N    female
11562    Ariane    Pollich    bernhard@schneider.com    \N    Costa Rica    O'Keefestad    55931 Boyle Springs    82048    North Carolina    2016-08-11 18:46:32.508211    2016-10-14 13:02:31.95043        \N    \N    \N    0    \N    \N    \N    \N    female
11563    Vincenzo    Kuhn    leland.baumbach@jacobs.com    \N    Maldives    Prohaskamouth    390 Landen Islands    19914-8612    Hawaii    2016-08-12 02:30:30.884461    2016-10-14 13:02:31.954742        \N    \N    \N    0    \N    \N    \N    \N    female
11564    Mitchell    Schinner    benny@shieldsgoyette.com    \N    Haiti    Natashatown    4935 Farrell Trail    82667-0144    Georgia    2016-07-09 18:20:01.918791    2016-10-14 13:02:31.960345        \N    \N    \N    0    \N    \N    \N    \N    male
11565    Lilly    Shanahan    lauriane_gerhold@quitzon.com    \N    Tunisia    Shannymouth    906 Schaefer Roads    40435    North Dakota    2016-08-19 20:37:50.232698    2016-10-14 13:02:31.96441        \N    \N    \N    0    \N    \N    \N    \N    female
11566    Valerie    Kerluke    joany@boyer.net    \N    India    New Marina    4510 Nathen Underpass    88495-3968    Maryland    2016-08-29 14:18:35.493292    2016-10-14 13:02:31.968789        \N    \N    \N    0    \N    \N    \N    \N    male
11568    Jana    Turcotte    pearline@barton.com    \N    Angola    Lillianaside    7932 Leland Branch    60282-0529    Texas    2016-09-09 22:37:51.387445    2016-10-14 13:02:31.973131        \N    \N    \N    0    \N    \N    \N    \N    female
11569    Jaren    Howell    carey_lang@lockman.co    \N    Hungary    Lake Lavernmouth    458 June Mission    36531    Illinois    2016-09-25 21:54:01.668516    2016-10-14 13:02:31.977442        \N    \N    \N    0    \N    \N    \N    \N    female
11570    Olen    Schinner    kailyn.wisoky@dickinson.net    \N    Montserrat    Runolfssonchester    5073 Paucek Terrace    82634    Montana    2016-07-13 04:26:13.283736    2016-10-14 13:02:31.981919        \N    \N    \N    0    \N    \N    \N    \N    male
11571    Bennett    Predovic    jarrod.hintz@turcotte.net    \N    Libyan Arab Jamahiriya    Lake Manley    3808 Hudson Route    86945-5950    Arizona    2016-07-28 07:41:49.099744    2016-10-14 13:02:31.986205        \N    \N    \N    0    \N    \N    \N    \N    male
11572    Toney    Schamberger    nakia_littel@flatleydurgan.info    \N    Marshall Islands    Lyricmouth    713 D'Amore Circles    40449    South Carolina    2016-08-21 20:01:32.065244    2016-10-14 13:02:31.99036        \N    \N    \N    0    \N    \N    \N    \N    male
11573    Benny    Denesik    tracey.carroll@howell.co    \N    Lao People's Democratic Republic    D'Amorestad    7610 Chyna Viaduct    30290    Kentucky    2016-07-27 01:40:17.906636    2016-10-14 13:02:31.994546        \N    \N    \N    0    \N    \N    \N    \N    male
11574    Einar    Koss    xzavier.herman@medhurstprice.co    \N    Chad    New Chasity    5003 Schmitt Well    78724-5243    Alabama    2016-08-22 07:02:47.966887    2016-10-14 13:02:31.998888        \N    \N    \N    0    \N    \N    \N    \N    male
11575    Rupert    Borer    rhiannon_bergstrom@vandervort.biz    \N    Palestinian Territory    Wardstad    21803 Littel River    20614    Illinois    2016-07-14 09:51:46.905208    2016-10-14 13:02:32.003176        \N    \N    \N    0    \N    \N    \N    \N    male
11576    Mariam    Cassin    owen_fadel@hillsrutherford.org    \N    Liberia    Dickensfort    23917 Haley Road    84834-8009    Arizona    2016-09-05 17:22:01.630317    2016-10-14 13:02:32.007284        \N    \N    \N    0    \N    \N    \N    \N    male
11577    Neil    Schmeler    maritza.hegmann@nader.io    \N    French Guiana    Mohrberg    79321 Pearlie Pine    75086    New Hampshire    2016-08-20 23:18:15.703775    2016-10-14 13:02:32.011439        \N    \N    \N    0    \N    \N    \N    \N    female
11578    Clyde    Schmeler    louie.jones@borer.name    \N    Pakistan    Chanelleburgh    246 Naomi Knoll    48222-4709    Ohio    2016-07-14 19:14:16.65087    2016-10-14 13:02:32.015613        \N    \N    \N    0    \N    \N    \N    \N    female
11579    Hettie    Howe    theo@davis.com    \N    Tanzania    Andersonborough    928 Predovic Point    66400-6316    New Jersey    2016-06-26 06:35:47.982389    2016-10-14 13:02:32.02023        \N    \N    \N    0    \N    \N    \N    \N    female
11580    Bert    Blanda    vada@reynolds.io    \N    Comoros    Oswaldochester    7267 Kristina Flats    83493    South Carolina    2016-09-08 05:06:17.969674    2016-10-14 13:02:32.0249        \N    \N    \N    0    \N    \N    \N    \N    female
11581    Forest    Wolf    halie@mraz.info    \N    Myanmar    Port Tony    917 Wyman Manors    68166-5077    Washington    2016-08-26 02:35:06.205591    2016-10-14 13:02:32.02952        \N    \N    \N    0    \N    \N    \N    \N    male
11582    Katelin    Yost    weldon@ankunding.name    \N    Guinea-Bissau    Binsside    53119 Dooley Green    61212-1385    South Carolina    2016-06-28 07:42:54.78685    2016-10-14 13:02:32.033934        \N    \N    \N    0    \N    \N    \N    \N    male
11583    Luella    Hodkiewicz    steve@hammesvonrueden.co    \N    Anguilla    Port Gayleport    78384 Watsica Loop    48167-6396    Arkansas    2016-09-09 08:12:08.797897    2016-10-14 13:02:32.038359        \N    \N    \N    0    \N    \N    \N    \N    male
17004    Geovanni    Wisoky    jonathon@auer.org    \N    Iraq    Faychester    7470 Rogahn Via    76670    Nebraska    2016-07-08 07:01:57.201388    2016-10-14 13:02:32.042493        \N    \N    \N    0    \N    \N    \N    \N    female
11584    Katheryn    Donnelly    bianka.nicolas@willmswillms.co    \N    Romania    Albertchester    2555 Eloise Fields    97386-3393    Oregon    2016-09-12 19:53:03.012799    2016-10-14 13:02:32.046532        \N    \N    \N    0    \N    \N    \N    \N    female
11585    Ashly    Fay    viviane_cartwright@monahanwilliamson.biz    \N    Aruba    Jeffereyland    3656 King Gardens    33107-1082    Wyoming    2016-07-20 19:40:02.583285    2016-10-14 13:02:32.05076        \N    \N    \N    0    \N    \N    \N    \N    male
11586    Alexandro    Koss    jaime_bechtelar@crist.com    \N    Hong Kong    Lake Lexus    25493 Sipes Forest    20682    Indiana    2016-08-07 01:42:14.757615    2016-10-14 13:02:32.054719        \N    \N    \N    0    \N    \N    \N    \N    female
11587    Joy    Hane    darien@hermannschinner.info    \N    Norway    MacGyverstad    848 Eden Cliffs    89905-3769    Illinois    2016-07-10 03:12:42.615403    2016-10-14 13:02:32.0586        \N    \N    \N    0    \N    \N    \N    \N    male
11588    Daryl    Lubowitz    colton@stroman.net    \N    Suriname    O'Kontown    6133 Jena Rest    69009-7565    North Carolina    2016-08-10 12:44:05.180662    2016-10-14 13:02:32.062512        \N    \N    \N    0    \N    \N    \N    \N    male
11589    Ciara    Deckow    judy_mosciski@waelchi.name    \N    Luxembourg    Lake Hazle    8023 Franecki Hills    99289-2770    Nevada    2016-09-29 00:48:10.706526    2016-10-14 13:02:32.066339        \N    \N    \N    0    \N    \N    \N    \N    male
11590    Stewart    Kreiger    marion.jacobson@bartell.name    \N    Ukraine    Barrowsborough    659 Brakus Vista    79900-5415    Kansas    2016-08-10 07:47:28.04085    2016-10-14 13:02:32.070185        \N    \N    \N    0    \N    \N    \N    \N    male
11593    Alec    Turner    kaden@yundt.biz    \N    Tanzania    Collierton    83180 Carter Burg    59982-3448    New Mexico    2016-06-26 18:16:40.669454    2016-10-14 13:02:32.082016        \N    \N    \N    0    \N    \N    \N    \N    female
11594    Amiya    Hoppe    hobart_kunde@borer.io    \N    United Arab Emirates    Christton    88428 Stokes Lights    13669    Pennsylvania    2016-09-24 09:10:03.431138    2016-10-14 13:02:32.086671        \N    \N    \N    0    \N    \N    \N    \N    female
11595    Meredith    Collier    pamela.keebler@herzog.org    \N    Saint Helena    Medaview    3913 Russel Trace    91715-2177    Indiana    2016-07-23 05:58:33.808268    2016-10-14 13:02:32.0913        \N    \N    \N    0    \N    \N    \N    \N    female
11596    Arianna    Crona    cloyd_douglas@hahn.com    \N    Qatar    Port Owen    5338 Schaefer Mountain    48917-5976    North Dakota    2016-08-27 02:42:33.173312    2016-10-14 13:02:32.095805        \N    \N    \N    0    \N    \N    \N    \N    male
11597    Clarabelle    Kohler    shanie.metz@dare.info    \N    Jersey    Carmelaland    5587 Runte Motorway    31948    Ohio    2016-07-13 02:00:22.826402    2016-10-14 13:02:32.100472        \N    \N    \N    0    \N    \N    \N    \N    female
11598    Lew    Schiller    elian@langoshkihn.info    \N    Jamaica    Walkerstad    269 Nienow Isle    56326    Michigan    2016-09-28 06:26:35.507093    2016-10-14 13:02:32.1049        \N    \N    \N    0    \N    \N    \N    \N    male
11599    Sadye    Trantow    brayan_conroy@block.name    \N    Slovakia (Slovak Republic)    South Gayle    37333 Beer Views    27181    Iowa    2016-08-10 11:22:46.93568    2016-10-14 13:02:32.109313        \N    \N    \N    0    \N    \N    \N    \N    male
11600    Carleton    Will    finn_casper@sauer.name    \N    Svalbard & Jan Mayen Islands    South Amaniberg    382 Jeffry Well    40917-2185    Pennsylvania    2016-08-29 16:38:59.287848    2016-10-14 13:02:32.113775        \N    \N    \N    0    \N    \N    \N    \N    male
11601    Flavie    McLaughlin    darrin@west.info    \N    Kazakhstan    South Marlinfort    9045 Stanton Meadow    46674-4441    Kansas    2016-09-02 05:28:14.425967    2016-10-14 13:02:32.118066        \N    \N    \N    0    \N    \N    \N    \N    male
11602    Gerson    Marquardt    nelson@rodriguez.io    \N    Rwanda    Antwanberg    583 Mac Ways    93846-6354    North Dakota    2016-08-20 16:52:51.81562    2016-10-14 13:02:32.122427        \N    \N    \N    0    \N    \N    \N    \N    male
11603    Hannah    Waters    lonie_moen@kuphalspinka.net    \N    Poland    Schmittton    490 Justine Land    14989    Indiana    2016-07-05 20:01:21.034333    2016-10-14 13:02:32.126457        \N    \N    \N    0    \N    \N    \N    \N    female
11604    Raegan    McCullough    shakira@barrowszulauf.com    \N    Nepal    Kathlynville    6640 Pearl Key    88445-9929    Kansas    2016-09-24 06:47:39.521659    2016-10-14 13:02:32.130716        \N    \N    \N    0    \N    \N    \N    \N    male
11605    Elmore    Fay    megane@effertz.info    \N    Norway    Michaelstad    39195 Botsford Lakes    10022    Alabama    2016-07-02 18:00:16.661866    2016-10-14 13:02:32.134892        \N    \N    \N    0    \N    \N    \N    \N    male
11606    Bettye    Dietrich    tremayne.zulauf@turcotte.name    \N    Mozambique    Farrelltown    21279 Schamberger Locks    16930    California    2016-08-04 19:41:30.738394    2016-10-14 13:02:32.138729        \N    \N    \N    0    \N    \N    \N    \N    male
11607    Antoinette    O'Reilly    pierre@rempel.info    \N    Saint Helena    Jordantown    9354 Rylee Glens    24722-1367    South Carolina    2016-08-21 00:50:53.630664    2016-10-14 13:02:32.142565        \N    \N    \N    0    \N    \N    \N    \N    female
11608    Cleveland    Rippin    winfield@schambergerbreitenberg.net    \N    Bermuda    West Stephaniestad    454 Don Parks    35326-0499    Arizona    2016-07-16 10:32:39.473754    2016-10-14 13:02:32.146415        \N    \N    \N    0    \N    \N    \N    \N    female
11609    Ursula    Witting    ottilie_lockman@runolfonpaucek.io    \N    Gambia    Port Giovaniport    496 Schowalter Union    96573    Arkansas    2016-08-30 23:03:27.063929    2016-10-14 13:02:32.150321        \N    \N    \N    0    \N    \N    \N    \N    male
11610    Nels    Feil    ava@howeconroy.net    \N    Jamaica    West Hoytstad    7269 Letha Row    84948    Ohio    2016-08-16 12:57:00.745229    2016-10-14 13:02:32.154672        \N    \N    \N    0    \N    \N    \N    \N    male
11611    Gwen    Feest    lupe.hoeger@fisher.com    \N    South Africa    O'Konhaven    15245 Hackett Points    76685    Colorado    2016-09-02 14:13:12.782873    2016-10-14 13:02:32.159171        \N    \N    \N    0    \N    \N    \N    \N    female
11612    Axel    Satterfield    madyson@hermanko.net    \N    Portugal    Flossiebury    71619 Calista Pass    81037    North Dakota    2016-07-15 17:17:19.578903    2016-10-14 13:02:32.163311        \N    \N    \N    0    \N    \N    \N    \N    female
11613    Elissa    Paucek    alphonso.beahan@schummjerde.io    \N    Niger    Gislasonhaven    514 Anderson Islands    19505    New Hampshire    2016-08-20 18:21:36.279879    2016-10-14 13:02:32.167493        \N    \N    \N    0    \N    \N    \N    \N    male
11614    Reagan    Gottlieb    susie@kuvalis.io    \N    Turkey    North Nayelifurt    14179 Jacinto Glens    39352    Texas    2016-07-20 16:44:53.145427    2016-10-14 13:02:32.171659        \N    \N    \N    0    \N    \N    \N    \N    male
11615    Domenica    Buckridge    charles@gutkowski.biz    \N    Nigeria    Korbinhaven    91337 Christelle Park    70409    Texas    2016-08-08 14:02:28.910431    2016-10-14 13:02:32.176007        \N    \N    \N    0    \N    \N    \N    \N    female
12120    Kyra    Becker    lue@sipes.biz    \N    Thailand    Feilchester    166 Nella Trace    62002    Rhode Island    2016-09-02 09:07:39.694371    2016-10-14 13:02:32.180079        \N    \N    \N    0    \N    \N    \N    \N    male
11616    Jena    O'Keefe    robbie@mckenzie.info    \N    Comoros    North Boydborough    24518 Lavern Turnpike    38645-3578    Michigan    2016-07-08 18:31:45.447489    2016-10-14 13:02:32.18402        \N    \N    \N    0    \N    \N    \N    \N    male
11617    Michaela    Sipes    darryl@beahan.co    \N    Equatorial Guinea    Gusview    33303 Carol Wells    90121-9837    Arkansas    2016-08-21 17:31:51.646269    2016-10-14 13:02:32.187802        \N    \N    \N    0    \N    \N    \N    \N    female
11618    Yazmin    Lowe    imelda@quitzon.org    \N    Armenia    Gusikowskimouth    39009 Reggie Village    93909    Virginia    2016-07-17 11:38:08.675279    2016-10-14 13:02:32.191699        \N    \N    \N    0    \N    \N    \N    \N    female
11619    Lydia    Johnson    cameron@brown.com    \N    Costa Rica    Zackaryberg    2903 Vickie Ville    42780-0419    Nevada    2016-08-14 09:13:08.83498    2016-10-14 13:02:32.195769        \N    \N    \N    0    \N    \N    \N    \N    female
11620    Rashad    Turcotte    bernice@ryan.info    \N    Tokelau    Port Elmirastad    117 Predovic Ports    19300    Pennsylvania    2016-07-07 03:37:24.946105    2016-10-14 13:02:32.199898        \N    \N    \N    0    \N    \N    \N    \N    female
11621    Geo    Bergnaum    harold@hudson.com    \N    Mayotte    Lake Bernhardburgh    542 Krajcik Mews    92746-6321    Mississippi    2016-07-14 05:15:17.294685    2016-10-14 13:02:32.204172        \N    \N    \N    0    \N    \N    \N    \N    male
11622    Nigel    Kautzer    bella_mclaughlin@marksbailey.net    \N    Faroe Islands    East Marleneshire    420 Boyer Stravenue    25470-6682    Missouri    2016-06-22 09:36:44.911472    2016-10-14 13:02:32.208611        \N    \N    \N    0    \N    \N    \N    \N    male
11623    Samir    Waters    lawson.dickinson@frami.net    \N    Serbia    Lake Marge    30169 Kristian Drives    33910    Oklahoma    2016-08-29 10:14:01.465222    2016-10-14 13:02:32.212677        \N    \N    \N    0    \N    \N    \N    \N    female
11624    Maximus    Wunsch    viva_wyman@auer.com    \N    Sri Lanka    East Prudence    45588 Mariah Villages    44150    Michigan    2016-08-28 21:24:53.217478    2016-10-14 13:02:32.217129        \N    \N    \N    0    \N    \N    \N    \N    male
11625    Alberto    Dach    jamel@johnston.io    \N    Guatemala    Macejkovicton    66276 Ezra Center    71857-2267    Mississippi    2016-09-12 03:02:39.952026    2016-10-14 13:02:32.222154        \N    \N    \N    0    \N    \N    \N    \N    male
11626    Eldora    Gutmann    hellen@konopelski.com    \N    Lithuania    New Ola    198 Jenkins Stravenue    92207-9225    Georgia    2016-08-01 02:52:08.475196    2016-10-14 13:02:32.226698        \N    \N    \N    0    \N    \N    \N    \N    male
11627    Josiah    Stehr    anahi@toy.co    \N    Jersey    South Stanley    358 Coby Camp    89412-4734    Florida    2016-06-28 16:42:47.261946    2016-10-14 13:02:32.231242        \N    \N    \N    0    \N    \N    \N    \N    female
11628    Clare    Predovic    bobbie@mills.net    \N    Guinea    North Florian    2606 Bode Skyway    61729    Rhode Island    2016-07-20 18:55:59.25561    2016-10-14 13:02:32.235785        \N    \N    \N    0    \N    \N    \N    \N    male
11629    Daron    O'Reilly    jackson@muller.net    \N    Taiwan    Schmelerview    759 Bradtke Rest    37089-2574    Georgia    2016-07-25 19:18:49.810543    2016-10-14 13:02:32.240209        \N    \N    \N    0    \N    \N    \N    \N    female
11630    Korbin    Abernathy    angelo@cristhilll.com    \N    Myanmar    New Melissaland    253 Hubert Cliffs    58008    Minnesota    2016-08-01 05:06:58.983014    2016-10-14 13:02:32.245207        \N    \N    \N    0    \N    \N    \N    \N    female
11631    Kelsi    Keeling    alexandria_ruel@vonrueden.org    \N    Singapore    Adrianaside    16889 Otto Unions    52405-6615    Iowa    2016-06-29 20:35:52.099923    2016-10-14 13:02:32.249921        \N    \N    \N    0    \N    \N    \N    \N    female
11632    Garret    Jones    lavinia@witting.com    \N    Dominican Republic    Koelpinburgh    22785 Dooley Prairie    53903    Idaho    2016-08-19 23:09:50.236025    2016-10-14 13:02:32.254419        \N    \N    \N    0    \N    \N    \N    \N    female
11633    Minerva    Barton    connie@jacobs.net    \N    Panama    Rodriguezfurt    7038 Jerrold Plains    59038-5523    Texas    2016-08-01 21:18:41.470699    2016-10-14 13:02:32.259003        \N    \N    \N    0    \N    \N    \N    \N    male
11634    Ernestina    McDermott    floyd_rau@hettinger.io    \N    El Salvador    New Haleymouth    8225 Alvina Village    88354-6519    Virginia    2016-06-25 08:12:23.964432    2016-10-14 13:02:32.263485        \N    \N    \N    0    \N    \N    \N    \N    male
11635    Kip    Walter    hailie@harvey.biz    \N    Botswana    Lake Orvalhaven    2872 Ebony Center    54952    Alabama    2016-09-19 01:15:22.932055    2016-10-14 13:02:32.270868        \N    \N    \N    0    \N    \N    \N    \N    female
11636    Tyra    Bogan    jamir.mitchell@ward.com    \N    Grenada    Leschport    585 Amira Ford    60378-5956    Maryland    2016-09-14 13:23:38.791561    2016-10-14 13:02:32.277432        \N    \N    \N    0    \N    \N    \N    \N    female
11637    Gust    Oberbrunner    kris@sanfordaltenwerth.io    \N    Bermuda    Lake Myrtletown    108 Tara Prairie    62251    Delaware    2016-08-24 23:52:06.130053    2016-10-14 13:02:32.282395        \N    \N    \N    0    \N    \N    \N    \N    female
11638    Victor    Cronin    anais.bogan@bergezemlak.co    \N    Australia    West Sabina    90239 Halvorson Mission    99007-2971    Alaska    2016-06-30 19:40:38.479034    2016-10-14 13:02:32.287067        \N    \N    \N    0    \N    \N    \N    \N    male
11639    Kaylin    Koss    dangelo.moriette@wisozk.info    \N    Liechtenstein    Haneview    911 Helen Square    52802    Hawaii    2016-09-13 17:46:12.978334    2016-10-14 13:02:32.291367        \N    \N    \N    0    \N    \N    \N    \N    male
11640    Justina    Dach    devin@willms.info    \N    Palestinian Territory    Ritchieland    1564 Hettinger Highway    82629    Michigan    2016-08-25 03:35:05.92526    2016-10-14 13:02:32.296064        \N    \N    \N    0    \N    \N    \N    \N    male
11641    Loyal    Wuckert    fanny@feeney.com    \N    Turkmenistan    Port Dorrishaven    87001 Price Point    42208    Wyoming    2016-07-06 07:13:23.486594    2016-10-14 13:02:32.300611        \N    \N    \N    0    \N    \N    \N    \N    female
11642    Dariana    Kuphal    hal@boyer.info    \N    Niger    Simberg    44227 Oberbrunner Views    51225-5366    Oklahoma    2016-07-13 14:47:30.50198    2016-10-14 13:02:32.305176        \N    \N    \N    0    \N    \N    \N    \N    male
11643    Trinity    Hirthe    ashly.feest@fadel.net    \N    Samoa    South Alicia    3940 Haley Island    81433    Indiana    2016-07-18 23:22:49.850756    2016-10-14 13:02:32.310175        \N    \N    \N    0    \N    \N    \N    \N    male
11644    Loy    Hackett    sarina@parisian.net    \N    Croatia    East Chesleyfort    429 Mitchel Rapid    41757-7530    Wyoming    2016-06-23 15:37:18.909146    2016-10-14 13:02:32.31558        \N    \N    \N    0    \N    \N    \N    \N    female
11645    Horace    Zboncak    samantha_harber@kuvalis.org    \N    Belize    Bayerside    34356 Alphonso Summit    57687-3908    New Hampshire    2016-08-14 09:55:23.81726    2016-10-14 13:02:32.322672        \N    \N    \N    0    \N    \N    \N    \N    female
11646    Fidel    Stoltenberg    meggie@harberfranecki.biz    \N    Uzbekistan    New Isaacside    7345 Ernestina Branch    78883-7266    Illinois    2016-07-14 16:08:06.193376    2016-10-14 13:02:32.327884        \N    \N    \N    0    \N    \N    \N    \N    male
11647    Callie    Aufderhar    chasity@monahantoy.io    \N    Christmas Island    East Leonorchester    27975 Beatty Point    43065    Tennessee    2016-09-06 00:51:20.45172    2016-10-14 13:02:32.332701        \N    \N    \N    0    \N    \N    \N    \N    female
11648    Karen    Kemmer    noemi.homenick@mitchell.name    \N    Norway    North Laurel    7186 Earnest Estate    46155-1771    Mississippi    2016-08-20 00:29:20.799588    2016-10-14 13:02:32.339864        \N    \N    \N    0    \N    \N    \N    \N    male
11649    Jerrell    Lesch    garland@herman.org    \N    Luxembourg    North Deonview    2132 Hane Alley    80705    Washington    2016-09-28 07:08:12.653392    2016-10-14 13:02:32.356196        \N    \N    \N    0    \N    \N    \N    \N    female
11655    Einar    Ortiz    amari.altenwerth@goldner.co    \N    Oman    North Nikitastad    10730 Hallie Squares    48372    Hawaii    2016-09-05 23:54:48.066886    2016-10-14 13:02:32.390853        \N    \N    \N    0    \N    \N    \N    \N    female
16451    Nils    Pfeffer    waylon.wehner@kunze.com    \N    Sri Lanka    Melissaborough    418 Bo Burg    88527    Texas    2016-08-09 14:55:24.963823    2016-10-14 13:02:32.396611        \N    \N    \N    0    \N    \N    \N    \N    male
18843    Deven    Leffler    keshawn@nicolas.com    \N    Seychelles    Port Keara    402 Leo Avenue    95234    Idaho    2016-09-08 12:32:45.404284    2016-10-14 13:02:32.402017        \N    \N    \N    0    \N    \N    \N    \N    male
11657    Annalise    Metz    polly_oreilly@mertzreinger.net    \N    Pitcairn Islands    New Eldredton    675 Oberbrunner Lakes    40013    Wyoming    2016-09-07 02:55:06.887411    2016-10-14 13:02:32.406165        \N    \N    \N    0    \N    \N    \N    \N    female
11658    Nathen    Leuschke    esmeralda.walter@emard.co    \N    Senegal    Brantbury    13000 Mann Heights    44253    Florida    2016-07-22 08:13:59.691847    2016-10-14 13:02:32.410233        \N    \N    \N    0    \N    \N    \N    \N    female
11659    Althea    Yost    thelma@fisher.net    \N    United Arab Emirates    South Dave    57882 Aaron Parks    38441-9123    New Mexico    2016-09-05 12:10:31.458835    2016-10-14 13:02:32.415275        \N    \N    \N    0    \N    \N    \N    \N    male
11660    Ryan    Russel    samanta@ebert.net    \N    Mexico    North Orval    2927 Luettgen Oval    17448-5360    New Mexico    2016-08-09 12:20:07.008006    2016-10-14 13:02:32.420365        \N    \N    \N    0    \N    \N    \N    \N    female
11661    Sophia    Davis    isabel_renner@nienow.net    \N    Jamaica    Jeramyside    7920 Stewart Manors    81844-6497    South Dakota    2016-07-18 16:16:33.924313    2016-10-14 13:02:32.426992        \N    \N    \N    0    \N    \N    \N    \N    male
11662    Evert    Schumm    dannie@kshlerinspinka.co    \N    Congo    South Oralville    3951 Queen Spring    50076    Alabama    2016-09-05 00:50:17.993926    2016-10-14 13:02:32.432926        \N    \N    \N    0    \N    \N    \N    \N    female
11663    Enrico    Schneider    emelie@spinka.org    \N    Micronesia    Uptonland    760 Ellsworth Vista    82771    Oklahoma    2016-08-21 07:24:14.408229    2016-10-14 13:02:32.438042        \N    \N    \N    0    \N    \N    \N    \N    male
11664    Shaniya    Donnelly    benton.effertz@hickle.info    \N    Western Sahara    Port Federicoburgh    87280 Gleason Ports    54393-4260    North Carolina    2016-08-13 20:02:33.86254    2016-10-14 13:02:32.443212        \N    \N    \N    0    \N    \N    \N    \N    female
11665    Emelie    Schiller    norberto@schuster.org    \N    Slovakia (Slovak Republic)    Port Valentinemouth    7883 Parker River    46310    Illinois    2016-09-11 19:22:48.39872    2016-10-14 13:02:32.447843        \N    \N    \N    0    \N    \N    \N    \N    female
11666    Darren    Blick    destany@dare.co    \N    Guatemala    North Johnpaul    8356 Kylie Heights    53303    Pennsylvania    2016-07-19 05:28:25.12939    2016-10-14 13:02:32.452349        \N    \N    \N    0    \N    \N    \N    \N    male
11668    Zackery    Collins    eusebio@herman.org    \N    Niger    Quintenside    94324 Donato Bridge    12542-9770    Delaware    2016-07-25 22:37:38.808237    2016-10-14 13:02:32.456661        \N    \N    \N    0    \N    \N    \N    \N    female
11669    Aisha    Towne    esperanza_becker@carterbogan.name    \N    Costa Rica    West Elouise    310 Fanny Isle    99174    Nebraska    2016-06-30 17:05:41.388263    2016-10-14 13:02:32.460943        \N    \N    \N    0    \N    \N    \N    \N    male
11670    Baron    Lemke    brent_olson@hyatt.io    \N    Saint Vincent and the Grenadines    East Tobin    857 Astrid Hollow    76983    Colorado    2016-06-24 17:18:34.223722    2016-10-14 13:02:32.465575        \N    \N    \N    0    \N    \N    \N    \N    male
11671    Hudson    Satterfield    tad@stiedemann.name    \N    Saint Kitts and Nevis    East Nadia    897 Kuhic Square    12277    Utah    2016-07-01 10:07:07.252376    2016-10-14 13:02:32.469842        \N    \N    \N    0    \N    \N    \N    \N    male
11672    Brionna    Bednar    jennyfer.fay@schustersipes.net    \N    Libyan Arab Jamahiriya    West Osbaldofort    89450 Ruecker Via    11525-7531    South Carolina    2016-09-05 20:51:47.123592    2016-10-14 13:02:32.474022        \N    \N    \N    0    \N    \N    \N    \N    female
11673    Graham    D'Amore    hank.ullrich@considineanderson.info    \N    Burkina Faso    Towneburgh    1173 Champlin Hollow    25349    Nebraska    2016-07-12 16:36:42.869792    2016-10-14 13:02:32.478575        \N    \N    \N    0    \N    \N    \N    \N    female
11674    Carmine    Schinner    arthur@ruel.com    \N    Morocco    Joesphberg    944 Doug Isle    40434    Montana    2016-07-19 11:18:30.7418    2016-10-14 13:02:32.482511        \N    \N    \N    0    \N    \N    \N    \N    male
11675    Reginald    Jones    demetrius.reynolds@cummeratawuckert.info    \N    El Salvador    Feeneystad    6144 Courtney Lakes    66342-2293    Texas    2016-08-21 18:02:39.532532    2016-10-14 13:02:32.486582        \N    \N    \N    0    \N    \N    \N    \N    female
11676    Pearlie    Gutkowski    darrel.langosh@auer.info    \N    Canada    Emieville    190 Lubowitz Parkways    23102    Arizona    2016-07-02 07:54:12.696932    2016-10-14 13:02:32.490638        \N    \N    \N    0    \N    \N    \N    \N    female
11677    Kennith    Parisian    nathanial_daniel@oreilly.co    \N    Northern Mariana Islands    Shyanneberg    440 Olson Locks    74105-5491    Delaware    2016-07-31 21:53:31.000897    2016-10-14 13:02:32.494532        \N    \N    \N    0    \N    \N    \N    \N    male
11678    Jamal    Bradtke    santos.ryan@crooks.biz    \N    Djibouti    West Jaquan    7595 Boyle Points    64469-6720    Louisiana    2016-07-06 15:24:29.011224    2016-10-14 13:02:32.498372        \N    \N    \N    0    \N    \N    \N    \N    female
11679    Russell    Witting    dovie@mante.co    \N    Brazil    Isidroville    2483 Ullrich Village    37328-6261    Arizona    2016-09-10 22:52:03.236422    2016-10-14 13:02:32.502361        \N    \N    \N    0    \N    \N    \N    \N    male
11680    Dexter    Senger    karlee@gislason.org    \N    Philippines    New Timothy    557 Donnelly Club    80925    California    2016-07-16 17:29:06.417533    2016-10-14 13:02:32.506674        \N    \N    \N    0    \N    \N    \N    \N    male
11681    Tito    Huels    raina@haley.biz    \N    Colombia    East Elenorland    941 Balistreri Islands    42027    Georgia    2016-07-31 10:05:48.487542    2016-10-14 13:02:32.51087        \N    \N    \N    0    \N    \N    \N    \N    female
11682    Michelle    Auer    violet@howellwolf.biz    \N    Morocco    Myahside    4065 Cora Islands    63032-0008    Indiana    2016-09-08 11:35:47.166316    2016-10-14 13:02:32.514771        \N    \N    \N    0    \N    \N    \N    \N    male
11683    Marielle    Koepp    martine@fisherjerde.io    \N    Lithuania    Port Onie    626 Weissnat Mission    76460    Arkansas    2016-08-11 04:07:25.068973    2016-10-14 13:02:32.523247        \N    \N    \N    0    \N    \N    \N    \N    female
11684    Zula    Friesen    erick.kozey@schneiderlesch.net    \N    Costa Rica    North Bartholome    58551 Cruickshank Stravenue    59487-7160    Maine    2016-08-14 09:21:56.590544    2016-10-14 13:02:32.527389        \N    \N    \N    0    \N    \N    \N    \N    male
11685    Christa    Gislason    dagmar@carter.org    \N    Guernsey    Haydenborough    1726 Will Pine    69193-4302    Florida    2016-09-26 15:15:49.434535    2016-10-14 13:02:32.531695        \N    \N    \N    0    \N    \N    \N    \N    female
11686    Ashly    Sauer    holly_lehner@rosenbaum.name    \N    Australia    North Zack    850 Kattie Park    50632-6670    Maine    2016-08-20 14:47:18.61485    2016-10-14 13:02:32.536382        \N    \N    \N    0    \N    \N    \N    \N    female
11687    Adela    Roob    trisha@anderson.org    \N    Swaziland    Penelopefort    12847 Schiller Coves    47958-9964    New Mexico    2016-09-28 09:16:52.303611    2016-10-14 13:02:32.541106        \N    \N    \N    0    \N    \N    \N    \N    male
11688    Bethel    Conroy    abner@legros.com    \N    China    North Stephonshire    560 Kuhn Lakes    42370    Iowa    2016-08-24 02:07:07.217422    2016-10-14 13:02:32.545649        \N    \N    \N    0    \N    \N    \N    \N    male
11689    Tressa    Fisher    madilyn@hartmann.name    \N    Niger    East Otismouth    704 Alfred Courts    42062-8315    California    2016-07-22 02:54:56.397273    2016-10-14 13:02:32.550755        \N    \N    \N    0    \N    \N    \N    \N    male
11690    Zoie    Legros    pierre.upton@bartoletti.org    \N    Guatemala    West Lauraberg    83086 Abagail Forks    72958-0311    Connecticut    2016-07-26 05:39:19.125434    2016-10-14 13:02:32.555256        \N    \N    \N    0    \N    \N    \N    \N    male
11691    Electa    Kub    michele.mertz@herzogpurdy.io    \N    Guinea-Bissau    Port Sabryna    2452 Nader Corners    73181-5583    Kansas    2016-07-23 16:30:38.888948    2016-10-14 13:02:32.560058        \N    \N    \N    0    \N    \N    \N    \N    female
11692    Alvina    Wolff    emil.cremin@dibbert.co    \N    Guernsey    South Darronborough    84479 Lavina Plaza    87149    Utah    2016-09-03 17:59:45.2714    2016-10-14 13:02:32.565153        \N    \N    \N    0    \N    \N    \N    \N    female
11693    Irwin    Price    cathrine_reichel@cummerata.info    \N    Georgia    Henryview    77608 Hickle Ranch    19378    Nebraska    2016-08-25 08:40:58.576961    2016-10-14 13:02:32.569831        \N    \N    \N    0    \N    \N    \N    \N    female
11694    Liam    Jerde    arely_lesch@stokes.name    \N    Reunion    New Brettport    963 Kovacek Valley    31945    Minnesota    2016-08-27 06:47:26.634398    2016-10-14 13:02:32.574707        \N    \N    \N    0    \N    \N    \N    \N    female
11695    Cristina    Jones    reginald.gusikowski@schillerheller.io    \N    Mali    North Coreneburgh    691 Olson Route    71929-6447    New Mexico    2016-09-28 19:03:29.002937    2016-10-14 13:02:32.579473        \N    \N    \N    0    \N    \N    \N    \N    female
11696    Jada    Adams    kellie.wintheiser@schuliststiedemann.name    \N    Tonga    Devonland    6167 Hyatt Garden    35715    South Carolina    2016-09-25 21:30:26.648214    2016-10-14 13:02:32.584        \N    \N    \N    0    \N    \N    \N    \N    female
11697    Rocky    Schiller    gretchen@purdyswaniawski.info    \N    French Polynesia    South Jaylonview    798 Lubowitz Rapids    23768-1475    New York    2016-06-26 14:11:04.172171    2016-10-14 13:02:32.588878        \N    \N    \N    0    \N    \N    \N    \N    male
11698    Justina    Schamberger    bernardo.halvorson@mann.org    \N    Zambia    Glovertown    7897 Nienow Hills    80073    West Virginia    2016-09-14 14:12:16.510431    2016-10-14 13:02:32.593945        \N    \N    \N    0    \N    \N    \N    \N    female
11699    Jerrell    Strosin    geraldine@roob.com    \N    Israel    Rauside    3450 Allen Walk    74064    Utah    2016-09-20 21:27:51.827988    2016-10-14 13:02:32.599486        \N    \N    \N    0    \N    \N    \N    \N    female
11700    Ruthe    West    jacinto_graham@jastgreen.com    \N    Belgium    Delphinebury    8120 Fahey Port    44606-2476    Florida    2016-08-21 14:48:35.284753    2016-10-14 13:02:32.604258        \N    \N    \N    0    \N    \N    \N    \N    female
11702    Alysa    Padberg    celine@rath.biz    \N    Virgin Islands, U.S.    Kihnton    45327 Webster Orchard    47149    Colorado    2016-07-20 01:15:04.123083    2016-10-14 13:02:32.613811        \N    \N    \N    0    \N    \N    \N    \N    female
11703    Mireya    Beier    neal.denesik@stehr.info    \N    Cape Verde    East Jada    647 Gwen Street    29512-1947    Pennsylvania    2016-08-16 06:16:23.361621    2016-10-14 13:02:32.618749        \N    \N    \N    0    \N    \N    \N    \N    male
11704    Alexis    Witting    marisa@davis.io    \N    Belgium    Cassandrechester    1103 Lily Manor    28305-4302    Maryland    2016-08-25 02:13:33.750979    2016-10-14 13:02:32.626009        \N    \N    \N    0    \N    \N    \N    \N    male
11705    Jeramie    Mohr    roberta_bashirian@hayescronin.io    \N    China    Leonardomouth    70852 Maurine Flats    51089-3858    Vermont    2016-08-30 22:55:34.705947    2016-10-14 13:02:32.632858        \N    \N    \N    0    \N    \N    \N    \N    male
11706    Stephen    Daniel    haskell@darecremin.info    \N    Central African Republic    North Dougborough    74814 Ortiz Wells    16254    Kansas    2016-07-12 11:12:20.157437    2016-10-14 13:02:32.639602        \N    \N    \N    0    \N    \N    \N    \N    male
11707    Kendrick    Rodriguez    dortha_connelly@gislason.biz    \N    Australia    DuBuquebury    584 Jacobs Pines    11524-9335    West Virginia    2016-09-10 10:43:46.087431    2016-10-14 13:02:32.647825        \N    \N    \N    0    \N    \N    \N    \N    female
11708    Maximillian    Stamm    sammy@willms.info    \N    Cambodia    South Maxhaven    4806 Hills Islands    85090    Arkansas    2016-08-10 05:15:23.8312    2016-10-14 13:02:32.653971        \N    \N    \N    0    \N    \N    \N    \N    male
11709    Lafayette    O'Keefe    dax@shanahan.org    \N    Comoros    Jaskolskimouth    7048 McGlynn Falls    99909-6666    Texas    2016-08-25 20:26:46.191065    2016-10-14 13:02:32.658987        \N    \N    \N    0    \N    \N    \N    \N    male
11710    Ebony    Moen    birdie@okeefemurazik.name    \N    Congo    Lake Aylin    1243 Eloisa Way    99376    Connecticut    2016-08-24 19:33:27.928328    2016-10-14 13:02:32.672139        \N    \N    \N    0    \N    \N    \N    \N    male
11711    Judson    Steuber    kali_muller@kingmitchell.name    \N    French Southern Territories    West Eve    847 Zoie Spring    22164-2086    West Virginia    2016-09-24 00:21:54.257925    2016-10-14 13:02:32.683987        \N    \N    \N    0    \N    \N    \N    \N    female
11712    Julianne    Hilll    neoma@dooleyroob.net    \N    Moldova    Hershelmouth    641 Vernon Park    71297    Oregon    2016-09-17 08:13:08.529338    2016-10-14 13:02:32.693444        \N    \N    \N    0    \N    \N    \N    \N    female
11713    Marisol    Carroll    nakia.anderson@morarkreiger.io    \N    Honduras    South Preston    925 Glover Bypass    98214    Georgia    2016-09-27 17:55:08.843401    2016-10-14 13:02:32.698313        \N    \N    \N    0    \N    \N    \N    \N    female
11714    Elwin    Rohan    vernon.abshire@kertzmann.io    \N    Uzbekistan    New Milesport    145 Vaughn Walk    94617    Colorado    2016-08-18 15:48:19.737513    2016-10-14 13:02:32.703588        \N    \N    \N    0    \N    \N    \N    \N    male
11715    Enrico    Lindgren    maudie@pollichveum.net    \N    Faroe Islands    Maureenfurt    38923 Issac Parkways    43137    Hawaii    2016-08-29 22:25:43.664825    2016-10-14 13:02:32.70865        \N    \N    \N    0    \N    \N    \N    \N    female
11716    Dandre    Kautzer    mae@gulgowski.org    \N    Bangladesh    Deltachester    29933 Gabriel Groves    29798-9176    Mississippi    2016-09-15 19:27:36.841253    2016-10-14 13:02:32.714418        \N    \N    \N    0    \N    \N    \N    \N    female
11717    Gerald    Hilpert    augustus@terry.co    \N    Martinique    Lake Braulio    9583 Edwina Squares    21241    New York    2016-08-19 21:17:47.60115    2016-10-14 13:02:32.722026        \N    \N    \N    0    \N    \N    \N    \N    male
11718    Zoey    Cremin    jaleel@crona.net    \N    Bulgaria    Rogahnville    34860 Brain Parkways    75691    New Hampshire    2016-07-20 07:20:15.152186    2016-10-14 13:02:32.727312        \N    \N    \N    0    \N    \N    \N    \N    male
11719    Anita    Rutherford    otha_gutkowski@thompson.name    \N    Vietnam    Friesenbury    88560 Howe Drive    31131-4653    Nevada    2016-07-01 05:10:15.677502    2016-10-14 13:02:32.732068        \N    \N    \N    0    \N    \N    \N    \N    female
11720    Lucy    Larson    katrina.brekke@corkery.name    \N    Venezuela    East Prudence    49036 Devin Islands    45031-1803    Maine    2016-09-07 14:00:21.805655    2016-10-14 13:02:32.736556        \N    \N    \N    0    \N    \N    \N    \N    male
11721    Ezra    Ritchie    tevin@west.net    \N    Isle of Man    Maeganville    3514 Block Forks    57246-9555    Tennessee    2016-07-17 06:46:12.594407    2016-10-14 13:02:32.740802        \N    \N    \N    0    \N    \N    \N    \N    female
11722    Anastacio    Heller    noemi.wuckert@kuhn.com    \N    South Africa    Oberbrunnerburgh    228 Block Trail    32095    Florida    2016-08-15 10:22:39.39225    2016-10-14 13:02:32.745112        \N    \N    \N    0    \N    \N    \N    \N    male
11723    Amelia    Gerhold    hester@jacobs.name    \N    Malawi    Cristchester    19283 Kaitlin Park    95969-6307    Delaware    2016-08-11 13:39:08.839907    2016-10-14 13:02:32.7499        \N    \N    \N    0    \N    \N    \N    \N    male
11724    Taryn    Botsford    ayden.prohaska@kiehn.name    \N    Saint Helena    Solonville    732 John Expressway    92182-7898    Arkansas    2016-08-17 20:59:49.177126    2016-10-14 13:02:32.754588        \N    \N    \N    0    \N    \N    \N    \N    female
11725    Kathleen    Bartell    rashawn@mckenzie.org    \N    Lao People's Democratic Republic    Jeraldview    8646 Jada Course    77176-2196    North Dakota    2016-07-04 00:32:24.495028    2016-10-14 13:02:32.759422        \N    \N    \N    0    \N    \N    \N    \N    female
11726    Amparo    Windler    kenyon@hartmann.biz    \N    Ireland    Lake Anastasiaside    51244 Mathew Parks    14374-0973    Pennsylvania    2016-07-17 16:53:54.287635    2016-10-14 13:02:32.764055        \N    \N    \N    0    \N    \N    \N    \N    male
11727    Ernesto    Franecki    adriana@stoltenberg.org    \N    Estonia    Demondfurt    4053 Winifred Radial    63943    Texas    2016-08-22 13:10:07.813738    2016-10-14 13:02:32.776452        \N    \N    \N    0    \N    \N    \N    \N    female
11728    Dewitt    Zboncak    oswald_little@wilderman.net    \N    El Salvador    East Gracieburgh    429 Nickolas Forges    66192    Louisiana    2016-09-19 04:33:15.29752    2016-10-14 13:02:32.78196        \N    \N    \N    0    \N    \N    \N    \N    male
11730    Victoria    Terry    jayce.bailey@westbednar.net    \N    Hungary    West Dejah    12924 Graciela Gardens    90927-6448    Ohio    2016-07-20 10:32:50.695585    2016-10-14 13:02:32.789991        \N    \N    \N    0    \N    \N    \N    \N    male
11731    Jade    Reilly    elisa_wyman@schmitt.biz    \N    Barbados    South Akeem    24026 Lesch Cliffs    45498-7124    South Carolina    2016-08-18 11:08:39.486702    2016-10-14 13:02:32.794602        \N    \N    \N    0    \N    \N    \N    \N    female
11732    Rhea    Dicki    golda@quitzon.io    \N    Colombia    Carmellaport    2347 Frederic Haven    18739    Michigan    2016-08-31 15:21:23.118591    2016-10-14 13:02:32.798981        \N    \N    \N    0    \N    \N    \N    \N    male
11733    Jody    Herzog    claudine.carter@considinegoodwin.biz    \N    Madagascar    North Lynnland    53169 Cartwright Viaduct    62609-4505    Missouri    2016-08-16 21:27:06.336822    2016-10-14 13:02:32.804518        \N    \N    \N    0    \N    \N    \N    \N    female
11734    Dominic    Hermann    coleman.swift@ondricka.net    \N    Saint Kitts and Nevis    Schoenside    2151 Abshire Hills    77396    Montana    2016-06-22 22:52:37.81674    2016-10-14 13:02:32.810775        \N    \N    \N    0    \N    \N    \N    \N    female
12173    Karley    Ward    zella@larkin.co    \N    San Marino    East Linda    12147 Schaden Prairie    81347    Iowa    2016-07-25 06:28:55.746086    2016-10-14 13:02:32.817583        \N    \N    \N    0    \N    \N    \N    \N    male
11735    Marilyne    Howell    florida_torphy@douglascole.net    \N    Georgia    Rolfsonberg    1061 Boehm Center    10372-9212    New Mexico    2016-07-10 22:18:03.990443    2016-10-14 13:02:32.82249        \N    \N    \N    0    \N    \N    \N    \N    female
11736    Greyson    Fritsch    kaia@schultz.biz    \N    Honduras    Ofeliamouth    79067 Ledner Lodge    96946-1303    Oklahoma    2016-08-29 11:32:09.44336    2016-10-14 13:02:32.827596        \N    \N    \N    0    \N    \N    \N    \N    male
11737    Nicole    Rodriguez    khalil_thompson@weber.net    \N    Tonga    South Eulahbury    8433 Muriel Pike    91446    Arkansas    2016-09-20 17:04:05.715192    2016-10-14 13:02:32.831803        \N    \N    \N    0    \N    \N    \N    \N    female
11738    Donald    Connelly    brayan.koelpin@abernathy.biz    \N    Seychelles    Watsicaborough    8072 Charlotte Path    64609    Oklahoma    2016-07-12 10:11:26.028259    2016-10-14 13:02:32.835913        \N    \N    \N    0    \N    \N    \N    \N    female
11739    Warren    Sauer    gayle@fadel.co    \N    Switzerland    Okunevamouth    62057 Walter Garden    69843    Alabama    2016-08-15 20:39:23.013492    2016-10-14 13:02:32.839898        \N    \N    \N    0    \N    \N    \N    \N    male
11740    Anissa    Koss    eduardo@kerlukehuels.org    \N    Liechtenstein    Port Carson    391 Gabrielle Crossroad    93507    New Mexico    2016-08-16 23:17:07.395259    2016-10-14 13:02:32.84413        \N    \N    \N    0    \N    \N    \N    \N    male
11741    Ella    Strosin    arlene_prohaska@marvinlueilwitz.info    \N    San Marino    Lake Shanymouth    2938 Langworth Villages    32674-1706    Tennessee    2016-09-21 14:58:58.999989    2016-10-14 13:02:32.848043        \N    \N    \N    0    \N    \N    \N    \N    male
11742    Laura    Schamberger    nestor@wolf.com    \N    Uganda    Edisonport    79188 Schumm Green    94836-9669    New Hampshire    2016-09-19 07:19:47.265301    2016-10-14 13:02:32.852021        \N    \N    \N    0    \N    \N    \N    \N    female
11743    Dino    Ratke    shayna_bartell@west.io    \N    Montenegro    North Reece    43788 Daija View    40218    Colorado    2016-08-02 09:29:17.482652    2016-10-14 13:02:32.856223        \N    \N    \N    0    \N    \N    \N    \N    male
11744    Waldo    Bednar    deja@padberg.info    \N    Faroe Islands    Katrinafort    87849 Hagenes Keys    48870-2226    New York    2016-08-13 23:57:58.868821    2016-10-14 13:02:32.860418        \N    \N    \N    0    \N    \N    \N    \N    male
11745    Justina    Gislason    clement.smith@heller.com    \N    Trinidad and Tobago    Meghanchester    806 Tania Islands    46858    Florida    2016-07-17 14:12:02.098557    2016-10-14 13:02:32.864659        \N    \N    \N    0    \N    \N    \N    \N    female
11746    Antwon    Bashirian    filiberto@rohanhilpert.co    \N    Svalbard & Jan Mayen Islands    Port Ewell    616 Douglas Run    66320    Iowa    2016-07-14 22:22:50.722565    2016-10-14 13:02:32.869245        \N    \N    \N    0    \N    \N    \N    \N    male
11747    Ibrahim    Grimes    britney@turner.biz    \N    Cuba    West Dejah    3418 Rex Summit    90214-4428    South Dakota    2016-08-22 16:46:22.862469    2016-10-14 13:02:32.873329        \N    \N    \N    0    \N    \N    \N    \N    male
11748    Tamia    Rau    michelle@predovic.org    \N    Faroe Islands    Schambergershire    7109 Kuvalis Plain    10433-3644    Idaho    2016-09-03 03:58:34.011938    2016-10-14 13:02:32.877497        \N    \N    \N    0    \N    \N    \N    \N    male
11749    Toby    McLaughlin    candace@smitham.net    \N    Pakistan    New Filomenastad    34161 Gusikowski Grove    32468    Tennessee    2016-07-23 12:17:20.98818    2016-10-14 13:02:32.881545        \N    \N    \N    0    \N    \N    \N    \N    female
11750    Mariana    Hessel    karson.gulgowski@hahn.info    \N    Mali    East Minnieshire    90345 Brittany Forge    29583    Maryland    2016-08-15 05:56:07.147908    2016-10-14 13:02:32.885848        \N    \N    \N    0    \N    \N    \N    \N    male
11751    Charley    Flatley    lyda@herzog.io    \N    Chile    Lake Marlen    455 Beatty Trail    53115-3059    Missouri    2016-06-27 15:39:59.739061    2016-10-14 13:02:32.889894        \N    \N    \N    0    \N    \N    \N    \N    female
11752    Jamir    Veum    wilbert_orn@schuster.com    \N    Mayotte    Lake Keeganland    15387 Madelyn Passage    94745-8114    Ohio    2016-07-24 23:44:17.870228    2016-10-14 13:02:32.893766        \N    \N    \N    0    \N    \N    \N    \N    female
11753    Audrey    Terry    jayden@prohaskamayert.biz    \N    French Polynesia    Gleichnerport    9200 Ratke Summit    35129    Louisiana    2016-07-11 07:20:43.443509    2016-10-14 13:02:32.89815        \N    \N    \N    0    \N    \N    \N    \N    male
11754    Catharine    Kunde    samantha.stark@treutel.name    \N    Tuvalu    Port Burdette    60874 Helena Coves    46071    Colorado    2016-09-25 16:27:26.260913    2016-10-14 13:02:32.902849        \N    \N    \N    0    \N    \N    \N    \N    male
11755    Alexis    Monahan    jasen@rice.biz    \N    Malta    Port Hilbertville    4108 Kallie Stravenue    93567    Delaware    2016-09-07 21:31:26.584777    2016-10-14 13:02:32.907365        \N    \N    \N    0    \N    \N    \N    \N    male
11756    Kari    Abbott    jakayla@schroeder.com    \N    Thailand    Alexzanderfurt    7359 May Street    37567    South Dakota    2016-08-22 05:48:53.958137    2016-10-14 13:02:32.911731        \N    \N    \N    0    \N    \N    \N    \N    female
11757    Rogers    Towne    simone.wyman@bradtke.name    \N    Palestinian Territory    Purdyshire    579 Schneider Tunnel    45979-2039    Arizona    2016-07-14 09:11:44.204064    2016-10-14 13:02:32.916003        \N    \N    \N    0    \N    \N    \N    \N    male
11758    Janice    Bogisich    ashleigh_fisher@weber.io    \N    Guinea    Ritchieville    645 Twila Mount    84662    Ohio    2016-08-26 11:42:04.029643    2016-10-14 13:02:32.920253        \N    \N    \N    0    \N    \N    \N    \N    female
11760    Davion    Johns    shirley_turner@kautzer.net    \N    Uzbekistan    Hudsonton    44749 Sharon Mall    23372-5958    North Dakota    2016-07-20 18:26:41.606441    2016-10-14 13:02:32.924415        \N    \N    \N    0    \N    \N    \N    \N    female
11761    Anastacio    Lowe    faustino@dibbert.name    \N    Reunion    Rettaberg    290 Brown Motorway    96970-4925    Arizona    2016-08-14 15:09:28.893612    2016-10-14 13:02:32.930533        \N    \N    \N    0    \N    \N    \N    \N    female
11762    Fiona    Veum    titus.glover@beatty.co    \N    Kazakhstan    West Dorothea    6620 Williamson Parks    58714    West Virginia    2016-09-02 08:33:18.221847    2016-10-14 13:02:32.935688        \N    \N    \N    0    \N    \N    \N    \N    female
11763    Julio    Strosin    twila_block@kuhic.co    \N    Italy    Binsport    1331 Rafael Tunnel    36684-2030    Minnesota    2016-06-22 16:10:17.24831    2016-10-14 13:02:32.940422        \N    \N    \N    0    \N    \N    \N    \N    female
11764    Merle    Padberg    leopold@dicki.co    \N    Sri Lanka    Emmanuelleside    756 Melyna Glen    53474-3772    Tennessee    2016-08-21 21:23:07.063248    2016-10-14 13:02:32.944778        \N    \N    \N    0    \N    \N    \N    \N    male
11765    Angelina    McDermott    kamille_lubowitz@moore.co    \N    Nicaragua    West Jabariburgh    68000 Jaqueline Harbor    45530    Kentucky    2016-07-08 16:10:11.894054    2016-10-14 13:02:32.949414        \N    \N    \N    0    \N    \N    \N    \N    male
11766    Roosevelt    Will    madie@beahan.io    \N    Cote d'Ivoire    Sashatown    2996 Meta Spurs    46975    South Carolina    2016-07-07 16:36:03.843302    2016-10-14 13:02:32.953884        \N    \N    \N    0    \N    \N    \N    \N    male
11767    Raymond    Daniel    lucio@mrazschaden.com    \N    Saint Lucia    Urbanton    8571 Jovani Shoal    92190    Montana    2016-08-07 07:49:25.026538    2016-10-14 13:02:32.958498        \N    \N    \N    0    \N    \N    \N    \N    male
11768    Maybelle    Tremblay    kelton.pacocha@rohangreenfelder.co    \N    Belize    New Preciousborough    7867 Gabrielle Valley    22342-5177    New York    2016-07-20 18:23:48.814582    2016-10-14 13:02:32.963135        \N    \N    \N    0    \N    \N    \N    \N    male
11769    Jamil    McGlynn    damon@schoen.com    \N    Peru    West Sophie    25248 Phyllis Burgs    91163    Georgia    2016-08-27 05:19:27.705764    2016-10-14 13:02:32.96774        \N    \N    \N    0    \N    \N    \N    \N    male
11770    Kirstin    Bayer    alexzander_mclaughlin@fisherrogahn.org    \N    Chile    Schroedermouth    9500 Harber Circles    63970-8118    Maine    2016-09-11 19:17:34.531981    2016-10-14 13:02:32.97251        \N    \N    \N    0    \N    \N    \N    \N    male
11771    Shaylee    Schoen    waylon.rosenbaum@langosh.info    \N    Lesotho    Emilioview    6140 Balistreri Loaf    42782-7482    Virginia    2016-06-25 11:37:19.033145    2016-10-14 13:02:32.97733        \N    \N    \N    0    \N    \N    \N    \N    female
11772    Palma    Bailey    gaston@watsica.org    \N    Turkey    Port Lillieborough    3375 Feeney Springs    45237    Maryland    2016-08-14 21:20:31.909034    2016-10-14 13:02:32.981296        \N    \N    \N    0    \N    \N    \N    \N    female
11773    Vilma    Dooley    abbigail@schultz.org    \N    Andorra    Rueckermouth    4946 Margarett Points    20368-3180    Montana    2016-09-23 09:10:19.172628    2016-10-14 13:02:32.985238        \N    \N    \N    0    \N    \N    \N    \N    male
11774    Elliot    Huel    dorris@schinner.io    \N    Saint Martin    Everettebury    59096 Delphine Greens    34759    Nevada    2016-06-29 03:51:38.423443    2016-10-14 13:02:32.989675        \N    \N    \N    0    \N    \N    \N    \N    male
11775    Nathan    D'Amore    geovanny_hilpert@heaney.org    \N    Albania    East Jessika    24477 Greenfelder Knoll    36037-6065    Wisconsin    2016-06-23 08:23:28.161852    2016-10-14 13:02:32.99486        \N    \N    \N    0    \N    \N    \N    \N    male
11776    Antwon    Parisian    florencio.bartell@romaguerastark.com    \N    India    Larryfort    3466 Shana Unions    61821    Alaska    2016-08-04 14:15:26.436177    2016-10-14 13:02:32.999302        \N    \N    \N    0    \N    \N    \N    \N    male
11777    Arlie    Gutmann    mertie@jaskolski.net    \N    Mongolia    Arjunburgh    820 Rose Club    65611    South Dakota    2016-08-15 03:45:52.30708    2016-10-14 13:02:33.003898        \N    \N    \N    0    \N    \N    \N    \N    female
11778    Rod    Roob    kylee_johnston@schimmeljenkins.net    \N    Brazil    West Russelstad    95611 Monte Ridges    82815    Wyoming    2016-09-01 04:42:54.785179    2016-10-14 13:02:33.008696        \N    \N    \N    0    \N    \N    \N    \N    female
11779    Halie    Grimes    elsa@johnston.biz    \N    Algeria    Norenemouth    8674 Thiel Valleys    81934    South Carolina    2016-08-01 10:38:48.145454    2016-10-14 13:02:33.013544        \N    \N    \N    0    \N    \N    \N    \N    male
11780    Fern    Anderson    janet@ankunding.biz    \N    Lebanon    Ritchiemouth    8327 Rocky Mission    15253    Wisconsin    2016-08-25 10:06:31.059974    2016-10-14 13:02:33.019928        \N    \N    \N    0    \N    \N    \N    \N    male
11781    Dovie    Labadie    brock.hyatt@wieganddibbert.name    \N    French Polynesia    Port Mossie    39204 Reilly Plain    28908-7812    Tennessee    2016-07-06 18:32:28.403166    2016-10-14 13:02:33.024547        \N    \N    \N    0    \N    \N    \N    \N    female
11782    Naomi    Wisoky    brody.eichmann@treutel.io    \N    Lithuania    Hilpertview    8814 Bobbie Course    17733    Utah    2016-08-30 04:51:05.815439    2016-10-14 13:02:33.02986        \N    \N    \N    0    \N    \N    \N    \N    male
11783    Veda    Dickens    rogers@grimes.co    \N    French Guiana    West Greta    72277 Christa Radial    68559    North Dakota    2016-06-27 04:29:24.730865    2016-10-14 13:02:33.035064        \N    \N    \N    0    \N    \N    \N    \N    female
11905    Gideon    Schmitt    olen.hahn@hayes.com    \N    Dominica    Adrianahaven    1399 Rylan Mews    19781    Pennsylvania    2016-08-06 16:28:36.096788    2016-10-14 13:02:33.588571        \N    \N    \N    0    \N    \N    \N    \N    female
11784    Sarah    Franecki    meredith@tremblayjohns.name    \N    Antarctica (the territory South of 60 deg S)    Lake Erin    836 Ellsworth Dam    34469-8209    Arizona    2016-09-05 17:08:05.283649    2016-10-14 13:02:33.04025        \N    \N    \N    0    \N    \N    \N    \N    male
11785    Sarina    Lemke    delpha@parisianwunsch.net    \N    Kyrgyz Republic    South Deion    872 Agustin Falls    30528-9241    Arkansas    2016-08-03 00:08:52.806829    2016-10-14 13:02:33.045415        \N    \N    \N    0    \N    \N    \N    \N    female
11786    Benedict    Cummings    presley@bergnaumframi.io    \N    Botswana    South Anabelle    4927 Runte Hill    82075-5299    Texas    2016-08-26 18:29:34.363705    2016-10-14 13:02:33.049911        \N    \N    \N    0    \N    \N    \N    \N    male
11787    Lexi    Green    jordon@robel.biz    \N    Gabon    New Helenamouth    268 Gottlieb Way    29014    Georgia    2016-07-07 23:06:38.793156    2016-10-14 13:02:33.054619        \N    \N    \N    0    \N    \N    \N    \N    female
11788    Maia    Pfeffer    vernon_hegmann@moen.info    \N    New Zealand    Schaefermouth    6763 Reichert Branch    77125    Nebraska    2016-07-21 05:50:29.283282    2016-10-14 13:02:33.059305        \N    \N    \N    0    \N    \N    \N    \N    male
11789    Verdie    Hoppe    joelle.mclaughlin@cronin.info    \N    Saint Lucia    Clementineshire    52916 Bergstrom Lodge    71098-9007    Massachusetts    2016-06-26 15:57:14.974997    2016-10-14 13:02:33.064196        \N    \N    \N    0    \N    \N    \N    \N    male
11790    Celestino    Schinner    obie.greenholt@daughertycummings.org    \N    Kazakhstan    South Nathanaelshire    32822 Charlene Glen    25336-8362    Maryland    2016-06-27 03:49:51.37288    2016-10-14 13:02:33.068706        \N    \N    \N    0    \N    \N    \N    \N    male
11791    Karine    Marks    theodore@ferryschimmel.io    \N    Chile    West Alysa    32968 McDermott Place    84396    Arizona    2016-07-11 19:51:00.036945    2016-10-14 13:02:33.073203        \N    \N    \N    0    \N    \N    \N    \N    female
11792    London    Ryan    emelie.weinat@reichertaufderhar.com    \N    Uzbekistan    Irwinville    35646 Wilkinson Dale    58032    Vermont    2016-07-30 02:50:00.381429    2016-10-14 13:02:33.077595        \N    \N    \N    0    \N    \N    \N    \N    male
11793    Neal    Nitzsche    martin.kilback@hills.info    \N    Egypt    New Destinyville    42189 Carmella Lock    85637-1087    Ohio    2016-09-22 09:04:20.034915    2016-10-14 13:02:33.082144        \N    \N    \N    0    \N    \N    \N    \N    male
11794    Muhammad    Heller    guadalupe@gusikowski.co    \N    Brunei Darussalam    New Noeliaburgh    59320 Aidan Avenue    57531-6189    Idaho    2016-09-10 12:12:42.382929    2016-10-14 13:02:33.086318        \N    \N    \N    0    \N    \N    \N    \N    male
11825    Raymond    Armstrong    mikayla@harber.io    \N    Saint Vincent and the Grenadines    New Sheilaland    18815 Reichert Centers    57450    Montana    2016-07-22 02:20:13.674078    2016-10-14 13:02:33.225402        \N    \N    \N    0    \N    \N    \N    \N    male
11826    Geovanni    Larkin    hadley.stoltenberg@daniel.net    \N    San Marino    West Niafurt    6927 Henry Mews    89167-9940    New Mexico    2016-08-24 21:02:08.802915    2016-10-14 13:02:33.229385        \N    \N    \N    0    \N    \N    \N    \N    male
11827    Jamaal    Bogisich    alec@cummerata.net    \N    Saint Lucia    South Normamouth    32118 Keeling Knolls    13206    Mississippi    2016-09-21 01:08:54.217982    2016-10-14 13:02:33.234224        \N    \N    \N    0    \N    \N    \N    \N    male
11828    Vanessa    Batz    dimitri.gutmann@yundtquigley.co    \N    New Zealand    Ebertmouth    62682 Corkery Manors    14610    Rhode Island    2016-06-28 14:09:08.073195    2016-10-14 13:02:33.23892        \N    \N    \N    0    \N    \N    \N    \N    female
11829    Jamir    Pacocha    georgianna@jacobsonkris.net    \N    Trinidad and Tobago    West Luraside    2442 Koby Bridge    85291    Michigan    2016-09-23 16:58:29.285228    2016-10-14 13:02:33.24349        \N    \N    \N    0    \N    \N    \N    \N    male
11830    Leonor    Bode    julio@schuster.org    \N    Vietnam    Jaimeport    5137 Angus Knolls    61726-7622    Colorado    2016-09-23 02:35:30.720783    2016-10-14 13:02:33.248501        \N    \N    \N    0    \N    \N    \N    \N    male
11831    Emmalee    Pollich    bertram_connelly@strackeharber.com    \N    Afghanistan    West Audrey    771 Jerde Extension    32150-6594    New Mexico    2016-07-26 08:48:38.666033    2016-10-14 13:02:33.25362        \N    \N    \N    0    \N    \N    \N    \N    female
11832    Floy    Smitham    irving.cremin@deckow.biz    \N    Kuwait    Aurelioside    5440 Gilbert Manors    89625    Nebraska    2016-08-15 00:55:54.848095    2016-10-14 13:02:33.258918        \N    \N    \N    0    \N    \N    \N    \N    male
11833    Marguerite    Daugherty    lavon@emardpagac.name    \N    Jamaica    Koelpinton    44660 Vicente Forest    86729    Hawaii    2016-07-16 06:39:03.038596    2016-10-14 13:02:33.263841        \N    \N    \N    0    \N    \N    \N    \N    male
11834    Marshall    Keebler    shaylee@hodkiewicztoy.com    \N    Oman    Malvinaborough    5476 Hills Tunnel    27209    Idaho    2016-08-08 02:22:12.265258    2016-10-14 13:02:33.269747        \N    \N    \N    0    \N    \N    \N    \N    female
11835    Wendy    Walsh    kolby.larson@price.com    \N    Venezuela    Calistamouth    578 Diamond Wells    49722-6889    Connecticut    2016-07-17 01:37:20.175003    2016-10-14 13:02:33.274744        \N    \N    \N    0    \N    \N    \N    \N    female
11836    Marlon    Prosacco    ally.bayer@ernser.info    \N    New Zealand    Lake Jeraldland    660 Carson Key    18036    Florida    2016-09-14 06:25:50.664092    2016-10-14 13:02:33.279692        \N    \N    \N    0    \N    \N    \N    \N    female
11837    Beverly    Nikolaus    richie_marvin@hilpert.co    \N    New Zealand    New Darrin    8855 Eliezer Views    53398    Ohio    2016-06-26 17:00:41.848296    2016-10-14 13:02:33.284401        \N    \N    \N    0    \N    \N    \N    \N    female
11838    Camron    Kihn    allison@jacobi.info    \N    United States Minor Outlying Islands    South Dawson    585 Karlie Forges    64808    Maine    2016-06-25 13:26:19.773016    2016-10-14 13:02:33.28877        \N    \N    \N    0    \N    \N    \N    \N    male
11839    Ada    Fay    maida@legrosgottlieb.io    \N    Niger    Krisville    195 Giovanny Route    18419    Wyoming    2016-06-30 04:07:13.115611    2016-10-14 13:02:33.293037        \N    \N    \N    0    \N    \N    \N    \N    female
11840    Kevon    Hintz    euna_aufderhar@bayerlueilwitz.net    \N    Panama    Lake Wellingtonborough    111 Bartoletti Field    28128    Nebraska    2016-09-28 03:36:46.219465    2016-10-14 13:02:33.29782        \N    \N    \N    0    \N    \N    \N    \N    male
11841    Marie    Batz    fredy_denesik@jakubowskibernier.io    \N    Sweden    Joanhaven    8708 Swift Causeway    94775-2100    Louisiana    2016-09-18 03:47:50.41697    2016-10-14 13:02:33.302425        \N    \N    \N    0    \N    \N    \N    \N    female
11842    Rowan    Bogisich    verona@kub.biz    \N    Mongolia    West Lucy    907 Tremblay Fall    50984    Washington    2016-08-25 21:26:39.448909    2016-10-14 13:02:33.312925        \N    \N    \N    0    \N    \N    \N    \N    male
11843    Jennyfer    Thiel    ashton.turner@trantow.co    \N    Colombia    North Alanna    441 Hermiston Viaduct    21552-0650    South Carolina    2016-09-03 21:57:12.703414    2016-10-14 13:02:33.31763        \N    \N    \N    0    \N    \N    \N    \N    female
11844    Rhianna    Carroll    benton@breitenberg.net    \N    Brunei Darussalam    Port Allan    3579 Laurence Ridge    33687    South Carolina    2016-09-18 01:51:56.724169    2016-10-14 13:02:33.321959        \N    \N    \N    0    \N    \N    \N    \N    male
11845    Guillermo    McGlynn    dashawn@mayerttorp.net    \N    Benin    North Austin    509 White Run    12347    West Virginia    2016-08-14 15:45:37.087868    2016-10-14 13:02:33.326178        \N    \N    \N    0    \N    \N    \N    \N    female
11846    Juvenal    Klocko    loy.johnston@wuckert.org    \N    Yemen    East Heavenhaven    459 Candelario Plains    31294-0103    California    2016-07-01 20:17:38.124225    2016-10-14 13:02:33.330549        \N    \N    \N    0    \N    \N    \N    \N    female
11847    Brooks    Schaden    garrison@lefflerohara.net    \N    Saint Kitts and Nevis    Caterinafurt    6869 Carter Gardens    73902    New Jersey    2016-09-18 06:36:35.695834    2016-10-14 13:02:33.334897        \N    \N    \N    0    \N    \N    \N    \N    female
11848    Jimmy    Ziemann    connor@miller.com    \N    Turkmenistan    Dickinsonshire    20236 Ruthie Run    89028-8164    Virginia    2016-09-20 12:54:41.984477    2016-10-14 13:02:33.340158        \N    \N    \N    0    \N    \N    \N    \N    female
11849    Finn    Lehner    sonia.corkery@gleason.biz    \N    Cote d'Ivoire    New Lizziefurt    909 Dickinson Bypass    30063-2620    Idaho    2016-09-22 13:36:46.959655    2016-10-14 13:02:33.344479        \N    \N    \N    0    \N    \N    \N    \N    female
11850    Wilhelmine    Abshire    johnnie@bauch.io    \N    Cook Islands    Lake Evan    21223 Terry Underpass    20165-2577    North Carolina    2016-09-01 14:29:04.300674    2016-10-14 13:02:33.34942        \N    \N    \N    0    \N    \N    \N    \N    male
11851    Albert    Simonis    liana@mckenziekuphal.biz    \N    Monaco    East Valentinetown    280 Gutkowski Key    13796    Kentucky    2016-09-25 03:02:14.608937    2016-10-14 13:02:33.353582        \N    \N    \N    0    \N    \N    \N    \N    female
11852    Linnea    Shanahan    presley_hyatt@auer.com    \N    Iraq    Nicoleland    904 Betty Point    34879    North Dakota    2016-06-25 15:52:09.951167    2016-10-14 13:02:33.357788        \N    \N    \N    0    \N    \N    \N    \N    male
11853    Kimberly    D'Amore    neil@kautzer.name    \N    Belarus    Port Annamae    796 Considine Plaza    63554    Arizona    2016-07-02 21:47:18.779463    2016-10-14 13:02:33.362628        \N    \N    \N    0    \N    \N    \N    \N    female
11854    Haylee    Ratke    lucile_abernathy@swaniawski.org    \N    Canada    Lake Jana    5884 Rolfson Key    45464    South Carolina    2016-08-28 10:36:46.657882    2016-10-14 13:02:33.367351        \N    \N    \N    0    \N    \N    \N    \N    male
11855    Juana    Carter    edyth.haley@abernathy.io    \N    Fiji    Carolview    73436 Weissnat Meadow    25593-2013    Maryland    2016-06-27 14:57:30.448665    2016-10-14 13:02:33.371981        \N    \N    \N    0    \N    \N    \N    \N    female
11856    Karen    Graham    lula.gleichner@greenfelder.biz    \N    Peru    South Joseph    9494 Schuster Bridge    53600-7701    Colorado    2016-07-10 17:35:31.791598    2016-10-14 13:02:33.376896        \N    \N    \N    0    \N    \N    \N    \N    female
11857    Hertha    DuBuque    gwen.romaguera@howe.io    \N    Fiji    East Saigechester    9445 Collier Keys    48150-4740    Tennessee    2016-09-05 18:27:06.188091    2016-10-14 13:02:33.381176        \N    \N    \N    0    \N    \N    \N    \N    male
11858    Ron    Pacocha    gaylord@nienow.biz    \N    Qatar    Kentonport    723 Flossie Fall    74887-8118    New Jersey    2016-08-03 07:07:44.658338    2016-10-14 13:02:33.385356        \N    \N    \N    0    \N    \N    \N    \N    male
11906    Victor    Hamill    wilma.lubowitz@bartoletti.name    \N    Gibraltar    North Francoside    93200 Terry Stream    15422-4267    Maine    2016-08-26 07:19:53.447609    2016-10-14 13:02:33.592573        \N    \N    \N    0    \N    \N    \N    \N    male
11859    Mallie    Kuhn    patricia_roob@ernser.info    \N    South Georgia and the South Sandwich Islands    Strackeborough    9127 Norbert Trail    48139-8744    Missouri    2016-08-12 22:47:50.843866    2016-10-14 13:02:33.389662        \N    \N    \N    0    \N    \N    \N    \N    female
11860    Braeden    Pfannerstill    osbaldo@kleinmiller.co    \N    Antarctica (the territory South of 60 deg S)    Jerdeberg    87804 Kailey Common    59117    Iowa    2016-08-10 06:10:33.407208    2016-10-14 13:02:33.393702        \N    \N    \N    0    \N    \N    \N    \N    female
11861    Ramiro    Rau    elouise_shields@bernhardfritsch.name    \N    Democratic People's Republic of Korea    Johnsville    563 Lillie Harbor    88049-4815    New Mexico    2016-07-03 23:20:24.431205    2016-10-14 13:02:33.397683        \N    \N    \N    0    \N    \N    \N    \N    female
11862    Jess    Collins    jazmyne_mann@oreillygrady.io    \N    Belgium    Carlottaland    227 Schumm Springs    55454-3366    Maryland    2016-06-29 14:01:48.945323    2016-10-14 13:02:33.402271        \N    \N    \N    0    \N    \N    \N    \N    female
11863    Nyah    Davis    gaetano_haley@gutmann.org    \N    Bouvet Island (Bouvetoya)    North Edward    71420 Delmer Isle    78662-7278    Illinois    2016-07-04 20:40:33.991875    2016-10-14 13:02:33.406505        \N    \N    \N    0    \N    \N    \N    \N    female
11864    Conner    Anderson    destany.bauch@schaden.co    \N    Tonga    Olsonland    29808 Keanu Spring    18201-6455    Delaware    2016-07-01 20:01:21.790803    2016-10-14 13:02:33.410863        \N    \N    \N    0    \N    \N    \N    \N    female
11865    Marshall    Schaefer    rose.sawayn@grant.biz    \N    Saudi Arabia    Jessicachester    5443 Lyric Green    69669-9033    Nevada    2016-07-19 20:00:20.992038    2016-10-14 13:02:33.414692        \N    \N    \N    0    \N    \N    \N    \N    male
11866    Daija    Jacobson    estel@franecki.org    \N    Cuba    Raynorhaven    48420 McCullough River    68112    Nevada    2016-07-20 22:40:07.812197    2016-10-14 13:02:33.418565        \N    \N    \N    0    \N    \N    \N    \N    female
11867    Maud    Strosin    ozella@feeneypfannerstill.net    \N    Kiribati    East Staceymouth    2333 Marcos Lane    85461-0222    Wisconsin    2016-08-12 09:28:17.946824    2016-10-14 13:02:33.422611        \N    \N    \N    0    \N    \N    \N    \N    male
11868    Lorenz    Strosin    sigurd@abernathy.info    \N    Afghanistan    East Rhett    65508 Nathanial Rue    10190    Indiana    2016-07-06 10:16:17.450174    2016-10-14 13:02:33.426389        \N    \N    \N    0    \N    \N    \N    \N    female
11869    Melvin    Sporer    hope.jast@raynor.co    \N    Saudi Arabia    Port Kenneth    87792 Demarco Light    69069    Nevada    2016-07-11 01:22:59.930982    2016-10-14 13:02:33.430233        \N    \N    \N    0    \N    \N    \N    \N    male
11870    Gonzalo    Blick    wilton@powlowskibeier.name    \N    Faroe Islands    Lake Brice    8506 Lakin Dam    53111-8452    New Jersey    2016-08-16 09:44:52.809818    2016-10-14 13:02:33.434309        \N    \N    \N    0    \N    \N    \N    \N    female
11871    Austen    Spinka    lucy.funk@harris.name    \N    Guadeloupe    South Tryciaton    79543 Gudrun Falls    52878    New York    2016-07-25 01:58:15.314637    2016-10-14 13:02:33.440158        \N    \N    \N    0    \N    \N    \N    \N    male
11872    Maybell    Runte    mazie@steuber.name    \N    Guyana    New Heber    3174 Wolf Gateway    72230    Rhode Island    2016-07-27 18:47:24.317275    2016-10-14 13:02:33.446577        \N    \N    \N    0    \N    \N    \N    \N    male
11873    Tad    Larkin    ellie_hamill@marks.biz    \N    Botswana    East Sabrynaburgh    4790 Ayla Courts    85267    Louisiana    2016-09-29 02:46:14.338692    2016-10-14 13:02:33.453564        \N    \N    \N    0    \N    \N    \N    \N    female
11874    Avis    Runolfsson    isobel_cartwright@boganerdman.name    \N    Dominica    South Darrellland    6818 Tessie Point    60214-6955    West Virginia    2016-07-21 17:49:19.716659    2016-10-14 13:02:33.457553        \N    \N    \N    0    \N    \N    \N    \N    male
11875    Bert    Effertz    ernestine@bednar.io    \N    Virgin Islands, U.S.    Dedricmouth    70820 Bayer Terrace    57487-8050    New Mexico    2016-07-13 10:05:44.259822    2016-10-14 13:02:33.461865        \N    \N    \N    0    \N    \N    \N    \N    male
11877    Oscar    Runte    mayra_parker@witting.io    \N    Nigeria    Lake Jerodton    39584 Americo Skyway    23303    Ohio    2016-09-02 17:57:58.709406    2016-10-14 13:02:33.466336        \N    \N    \N    0    \N    \N    \N    \N    male
11878    Eda    Schaden    perry_gottlieb@kris.name    \N    Burundi    Minervastad    4490 Marlene Place    21213    Kentucky    2016-08-24 03:19:34.130417    2016-10-14 13:02:33.47071        \N    \N    \N    0    \N    \N    \N    \N    male
11879    Princess    Glover    naomie.ohara@marvin.com    \N    Fiji    Robinfurt    1619 Edwin Stravenue    18895-0934    Georgia    2016-07-07 19:51:42.597961    2016-10-14 13:02:33.475539        \N    \N    \N    0    \N    \N    \N    \N    female
11880    Guillermo    Mills    douglas_graham@konopelskilittle.biz    \N    Costa Rica    North Angelita    766 Brown Fords    80593-5240    Arizona    2016-07-09 05:17:05.787928    2016-10-14 13:02:33.480015        \N    \N    \N    0    \N    \N    \N    \N    male
11881    Martin    Wuckert    daren@zemlak.org    \N    Romania    West Orion    79310 Emie Circle    26305    Illinois    2016-08-09 11:26:55.387992    2016-10-14 13:02:33.484064        \N    \N    \N    0    \N    \N    \N    \N    female
11882    Franco    Kuhlman    cierra.murazik@wintheiser.co    \N    South Africa    North Tommie    659 Sincere Passage    62630    South Carolina    2016-06-23 15:39:57.894214    2016-10-14 13:02:33.487962        \N    \N    \N    0    \N    \N    \N    \N    male
11883    Aubrey    Ondricka    frederik.parisian@pacocha.co    \N    Saint Kitts and Nevis    Hattieton    669 Israel Stravenue    61532-0769    New York    2016-07-27 11:22:53.383595    2016-10-14 13:02:33.491851        \N    \N    \N    0    \N    \N    \N    \N    female
11884    Aida    Lindgren    violette.schaden@crist.io    \N    Norway    Ardellafort    39862 Imani Turnpike    95545-8807    Vermont    2016-08-23 02:54:36.372156    2016-10-14 13:02:33.4959        \N    \N    \N    0    \N    \N    \N    \N    female
11885    Zella    Oberbrunner    hollis@lubowitz.io    \N    Portugal    East Bradley    90718 Crist Springs    62242-9092    South Carolina    2016-08-15 06:07:48.779199    2016-10-14 13:02:33.500082        \N    \N    \N    0    \N    \N    \N    \N    female
11886    Bette    Powlowski    heath_bashirian@buckridge.com    \N    San Marino    Eichmanntown    76246 Nestor Field    85597-8298    Tennessee    2016-08-08 16:23:39.71301    2016-10-14 13:02:33.504135        \N    \N    \N    0    \N    \N    \N    \N    female
11887    Jovan    Cruickshank    kayli_schimmel@emmerich.com    \N    Lao People's Democratic Republic    New Alphonso    79565 Daniela Roads    20788-4416    Wisconsin    2016-09-09 03:33:35.422752    2016-10-14 13:02:33.50857        \N    \N    \N    0    \N    \N    \N    \N    male
11888    Kris    Schmidt    brisa@jacobsonwilderman.org    \N    Mayotte    South Reaganhaven    45522 Furman Run    66654    West Virginia    2016-09-11 07:18:13.491013    2016-10-14 13:02:33.51377        \N    \N    \N    0    \N    \N    \N    \N    male
11889    Clint    Altenwerth    shyanne_schinner@morietteroob.co    \N    Congo    Kohlerland    9615 Antoinette Streets    30322-3896    Texas    2016-09-24 17:18:29.973444    2016-10-14 13:02:33.518525        \N    \N    \N    0    \N    \N    \N    \N    male
11890    Elenora    Will    arnoldo.weinat@hermann.com    \N    Nicaragua    New Marianohaven    11058 Carter Well    12509    West Virginia    2016-09-18 14:28:55.345194    2016-10-14 13:02:33.523206        \N    \N    \N    0    \N    \N    \N    \N    female
11891    Emmie    Tromp    rosina@klocko.net    \N    El Salvador    Rathville    271 Zieme Village    58596    Arizona    2016-07-22 05:15:01.138224    2016-10-14 13:02:33.527583        \N    \N    \N    0    \N    \N    \N    \N    male
11892    Carolyne    Runolfsdottir    yvette@schowalter.name    \N    Sweden    Mannport    11390 Kuhic Stream    13695    Texas    2016-09-29 02:04:58.666353    2016-10-14 13:02:33.531904        \N    \N    \N    0    \N    \N    \N    \N    male
11893    Ada    Nicolas    cornelius.zieme@jones.com    \N    Romania    Mckaylafurt    19259 Aurore Springs    23389    Kansas    2016-07-26 06:10:34.495301    2016-10-14 13:02:33.536299        \N    \N    \N    0    \N    \N    \N    \N    male
11894    Stefan    Spinka    oral@weinatschoen.info    \N    Philippines    South Alecbury    14072 Little Lock    89522-0378    Maine    2016-08-27 09:06:42.48452    2016-10-14 13:02:33.54055        \N    \N    \N    0    \N    \N    \N    \N    female
11895    Wanda    Heaney    lysanne_harber@block.org    \N    Saint Helena    North Malloryburgh    345 Dorthy Point    26268    New Mexico    2016-08-02 05:33:11.622834    2016-10-14 13:02:33.544594        \N    \N    \N    0    \N    \N    \N    \N    female
11896    Ted    Abbott    alisha.strosin@bechtelar.biz    \N    Tanzania    Montemouth    43724 Brad Pines    62079-3485    West Virginia    2016-08-27 11:18:04.852096    2016-10-14 13:02:33.548607        \N    \N    \N    0    \N    \N    \N    \N    male
11897    Claudine    Sporer    dane_schneider@nolanparisian.info    \N    Japan    New Judson    196 Cydney Ridge    12228    Michigan    2016-06-22 11:45:34.519451    2016-10-14 13:02:33.552865        \N    \N    \N    0    \N    \N    \N    \N    female
11898    Mckenna    Schamberger    raina_powlowski@smitham.name    \N    Georgia    Steuberhaven    5998 Leonora Islands    10153-9863    Iowa    2016-07-24 23:37:25.766862    2016-10-14 13:02:33.557285        \N    \N    \N    0    \N    \N    \N    \N    female
11899    Dimitri    Parker    precious@mcglynn.com    \N    Antarctica (the territory South of 60 deg S)    South Edisonville    958 Ila Wall    75640-2096    California    2016-06-27 07:23:20.924312    2016-10-14 13:02:33.561307        \N    \N    \N    0    \N    \N    \N    \N    male
11900    Haven    Hamill    rosetta.paucek@kulashermiston.org    \N    Oman    Cummingsfurt    1501 Cronin Crescent    22318-8275    Minnesota    2016-09-06 21:18:57.244438    2016-10-14 13:02:33.565677        \N    \N    \N    0    \N    \N    \N    \N    female
11901    Robyn    Fisher    evalyn@mcglynn.biz    \N    Japan    New Gladyce    1916 Margot Ferry    57603    Florida    2016-08-30 08:21:56.696131    2016-10-14 13:02:33.570259        \N    \N    \N    0    \N    \N    \N    \N    female
11902    Israel    Predovic    daryl.reilly@shields.biz    \N    Germany    Lake Rickbury    79826 Marcos Vista    47257    Arizona    2016-06-24 01:42:19.909314    2016-10-14 13:02:33.575959        \N    \N    \N    0    \N    \N    \N    \N    male
11903    Dane    Marvin    waino.schuppe@ankunding.net    \N    Hungary    Keelingshire    33623 Bartoletti Mills    79076-4506    Connecticut    2016-08-15 08:02:40.664475    2016-10-14 13:02:33.580234        \N    \N    \N    0    \N    \N    \N    \N    male
11904    Lavina    Barton    dock@kuhlman.name    \N    Botswana    South Otilia    384 Fabiola Skyway    35413    Connecticut    2016-08-25 20:29:01.417909    2016-10-14 13:02:33.584336        \N    \N    \N    0    \N    \N    \N    \N    male
11907    Sadie    Bayer    dexter@schowalter.com    \N    Qatar    Port Williamborough    858 Kling Rest    43102    South Carolina    2016-07-07 06:20:17.513581    2016-10-14 13:02:33.601335        \N    \N    \N    0    \N    \N    \N    \N    female
11908    Kayleigh    Hilpert    zakary@willms.info    \N    Slovenia    Lake Nyahton    4745 Clotilde Lake    77329-8840    Delaware    2016-09-20 18:40:41.891129    2016-10-14 13:02:33.605513        \N    \N    \N    0    \N    \N    \N    \N    male
11909    Lane    Schroeder    beth@langosh.org    \N    Tokelau    West Marie    9663 Baumbach Island    92504-2115    Wisconsin    2016-09-29 12:32:11.158217    2016-10-14 13:02:33.610082        \N    \N    \N    0    \N    \N    \N    \N    male
11910    Pansy    Ziemann    friedrich@little.io    \N    Bermuda    South Christa    9704 Runolfsson Parkway    98232    California    2016-07-24 15:54:51.79208    2016-10-14 13:02:33.614473        \N    \N    \N    0    \N    \N    \N    \N    male
11911    Gerson    Rau    matt_boyle@gloverrogahn.com    \N    Ireland    Boehmchester    8678 Ike Manor    10717    Utah    2016-07-02 16:13:55.957919    2016-10-14 13:02:33.619323        \N    \N    \N    0    \N    \N    \N    \N    male
11912    Columbus    Marks    clair@blick.biz    \N    Peru    Brownshire    1446 Yundt Springs    95473    New Mexico    2016-09-16 11:26:21.574584    2016-10-14 13:02:33.62369        \N    \N    \N    0    \N    \N    \N    \N    male
11913    Kris    Hessel    aleia@sanford.co    \N    Syrian Arab Republic    Lake Randallbury    99055 Christiansen Port    69582    Tennessee    2016-08-17 14:04:52.385437    2016-10-14 13:02:33.628474        \N    \N    \N    0    \N    \N    \N    \N    female
11914    Lyda    McKenzie    maria@schultzwilderman.io    \N    Bouvet Island (Bouvetoya)    Hoytborough    41248 Henriette Green    87580    Utah    2016-08-28 00:37:04.369714    2016-10-14 13:02:33.633789        \N    \N    \N    0    \N    \N    \N    \N    male
11915    Mathilde    Romaguera    raven@bartoletti.co    \N    Cape Verde    East Melyna    190 Crooks Avenue    68638-2292    Arkansas    2016-07-16 18:49:39.819293    2016-10-14 13:02:33.638534        \N    \N    \N    0    \N    \N    \N    \N    female
11916    Zoie    Buckridge    jayme@bogisich.com    \N    Timor-Leste    Harmonyburgh    370 Josefa Motorway    18391-9819    West Virginia    2016-09-19 12:40:56.324961    2016-10-14 13:02:33.643088        \N    \N    \N    0    \N    \N    \N    \N    female
11917    Miles    Zboncak    jailyn@abshirehackett.io    \N    Paraguay    Lake Domenicachester    71329 Bailey Valleys    79257-2279    Maryland    2016-08-23 22:35:24.78881    2016-10-14 13:02:33.647913        \N    \N    \N    0    \N    \N    \N    \N    male
11918    Geovanni    Corkery    asa.kerluke@turcotteblanda.name    \N    Turkmenistan    New Cheyennemouth    83464 Rodriguez Square    48305    Minnesota    2016-09-19 02:27:05.089004    2016-10-14 13:02:33.652026        \N    \N    \N    0    \N    \N    \N    \N    male
11919    Dorian    Dooley    bertha@dickinson.name    \N    China    Port Mayaview    644 Pfeffer Turnpike    12147    South Carolina    2016-07-07 09:51:03.559409    2016-10-14 13:02:33.656346        \N    \N    \N    0    \N    \N    \N    \N    male
11920    Wilfrid    Gislason    austin@heel.co    \N    United Kingdom    Reillytown    672 Boyer Hollow    33778-2031    Montana    2016-09-22 02:12:07.296477    2016-10-14 13:02:33.660343        \N    \N    \N    0    \N    \N    \N    \N    female
11921    Stephan    Lind    chauncey.connelly@ruel.name    \N    Saint Kitts and Nevis    South Calistafort    30422 Gerhold Fort    46605-7243    Nebraska    2016-07-09 10:14:30.186186    2016-10-14 13:02:33.664362        \N    \N    \N    0    \N    \N    \N    \N    male
11922    Pierre    Batz    aubree@crooks.name    \N    French Polynesia    Jeramyhaven    748 Kirlin Ferry    64213-9498    Minnesota    2016-09-10 18:20:52.033942    2016-10-14 13:02:33.668604        \N    \N    \N    0    \N    \N    \N    \N    female
11923    Deontae    Dach    evie_shields@framimoen.io    \N    Benin    West Mikelborough    279 Adrianna Parkways    14567-4365    Arizona    2016-08-27 08:45:58.938434    2016-10-14 13:02:33.672822        \N    \N    \N    0    \N    \N    \N    \N    male
11924    Tyra    Kovacek    esther.macejkovic@kohlerleannon.org    \N    Nigeria    Lake Eulahborough    64231 Feil Shoal    72595-7057    New Jersey    2016-07-22 07:27:22.426981    2016-10-14 13:02:33.677123        \N    \N    \N    0    \N    \N    \N    \N    male
11925    Afton    O'Hara    meta@cruickshankstrosin.io    \N    Kiribati    West Rodger    4979 Lavada Fork    77941-0474    Rhode Island    2016-06-29 23:22:11.27944    2016-10-14 13:02:33.681455        \N    \N    \N    0    \N    \N    \N    \N    female
11926    Kaley    Bogan    green@vonruedendurgan.co    \N    Thailand    East Palma    48345 Trace Key    96343-0938    Hawaii    2016-08-28 16:55:32.319003    2016-10-14 13:02:33.686016        \N    \N    \N    0    \N    \N    \N    \N    female
11927    Hank    Crist    henderson_sauer@wintheisersatterfield.net    \N    Portugal    Murrayberg    816 Bogisich Fork    74160-9391    Utah    2016-09-04 07:35:51.925598    2016-10-14 13:02:33.690352        \N    \N    \N    0    \N    \N    \N    \N    female
11928    Stella    Mayer    dina@mcclurefeeney.biz    \N    Cambodia    East Verla    619 Khalid Lock    57911    Florida    2016-08-11 09:00:41.422985    2016-10-14 13:02:33.69501        \N    \N    \N    0    \N    \N    \N    \N    male
11929    Cleve    Rodriguez    haley_rempel@dibbert.net    \N    Nigeria    Kundeberg    6576 Runte Islands    16399-3386    Michigan    2016-07-19 09:34:45.13283    2016-10-14 13:02:33.699301        \N    \N    \N    0    \N    \N    \N    \N    female
11930    Abbey    Grant    cortney@rolfson.io    \N    Sudan    Lake Destinburgh    8783 Klein Mountain    26252    California    2016-08-27 04:55:08.868745    2016-10-14 13:02:33.703164        \N    \N    \N    0    \N    \N    \N    \N    male
11931    Gladyce    Lindgren    corrine.hegmann@schultzspencer.io    \N    Qatar    Huelland    39401 Treutel Club    29636    Maine    2016-08-27 03:17:45.804254    2016-10-14 13:02:33.707136        \N    \N    \N    0    \N    \N    \N    \N    female
11932    Buster    Kemmer    fredy_wehner@medhurst.org    \N    Nepal    Fredericfurt    79536 Sipes Corners    14266    Ohio    2016-07-19 20:16:03.065923    2016-10-14 13:02:33.71196        \N    \N    \N    0    \N    \N    \N    \N    female
11933    Felipa    Volkman    anabelle_reinger@champlin.co    \N    United Arab Emirates    Aliyahstad    60243 Lind Knolls    46869    New Jersey    2016-07-18 13:17:16.115337    2016-10-14 13:02:33.716767        \N    \N    \N    0    \N    \N    \N    \N    female
11934    Lucio    Lakin    arnoldo@tremblay.co    \N    United Kingdom    West Isobelton    209 Toy Gateway    65942    Kentucky    2016-08-04 01:25:39.274976    2016-10-14 13:02:33.721227        \N    \N    \N    0    \N    \N    \N    \N    male
11936    Alta    Dickinson    kaylin@hoppehansen.com    \N    Spain    West Clement    7061 Caesar Views    30857    Kentucky    2016-09-23 12:18:16.889293    2016-10-14 13:02:33.730465        \N    \N    \N    0    \N    \N    \N    \N    female
11937    Norene    Berge    jon@murazik.io    \N    Ireland    Stammburgh    5524 Zieme Flats    14242    Illinois    2016-07-19 19:58:32.050007    2016-10-14 13:02:33.735074        \N    \N    \N    0    \N    \N    \N    \N    male
11938    Clare    Moen    ludie@homenick.name    \N    Hong Kong    Cartwrightbury    592 Wiegand Locks    33738-0431    Nebraska    2016-06-26 16:17:07.784192    2016-10-14 13:02:33.739368        \N    \N    \N    0    \N    \N    \N    \N    male
11939    Anibal    Murray    leora_mccullough@kuphalturner.biz    \N    China    New Alvinaberg    789 Okuneva Brooks    35856    Alabama    2016-07-23 14:38:56.351911    2016-10-14 13:02:33.743313        \N    \N    \N    0    \N    \N    \N    \N    male
11940    Lawson    Reichert    willis@smitham.com    \N    Mali    West Adalbertoton    2675 Stokes Junctions    37041    North Carolina    2016-08-30 21:23:07.958147    2016-10-14 13:02:33.747194        \N    \N    \N    0    \N    \N    \N    \N    male
11941    Damon    Thompson    samara.trantow@oberbrunner.net    \N    Guinea-Bissau    West Dereckbury    46728 Laurine Estate    69542-5843    Washington    2016-08-03 04:07:32.97598    2016-10-14 13:02:33.751444        \N    \N    \N    0    \N    \N    \N    \N    female
11942    Zita    Stanton    greyson@mitchell.co    \N    Faroe Islands    Welchton    8147 Hermann Summit    69068    California    2016-09-18 02:52:02.032146    2016-10-14 13:02:33.755477        \N    \N    \N    0    \N    \N    \N    \N    male
11943    Rodolfo    Bogisich    hettie@turcotte.info    \N    Syrian Arab Republic    West Caleb    16013 Wisoky Meadows    42448-9117    North Carolina    2016-08-04 07:00:23.493355    2016-10-14 13:02:33.759768        \N    \N    \N    0    \N    \N    \N    \N    female
11944    Anais    Krajcik    scot_larkin@feillittel.io    \N    Samoa    North Zoeshire    25341 Katheryn Walk    37155-0229    Washington    2016-08-25 15:07:24.154144    2016-10-14 13:02:33.763939        \N    \N    \N    0    \N    \N    \N    \N    female
11945    Grant    Ernser    zola.kerluke@grahamfeil.org    \N    Bolivia    West Dina    29220 Considine Estate    67892    Mississippi    2016-08-09 19:51:20.606466    2016-10-14 13:02:33.768297        \N    \N    \N    0    \N    \N    \N    \N    male
11946    Raphaelle    Berge    eli.pfeffer@sauer.net    \N    Afghanistan    New Ernie    596 Gottlieb Flat    23935-1390    Massachusetts    2016-09-24 04:56:01.25814    2016-10-14 13:02:33.772196        \N    \N    \N    0    \N    \N    \N    \N    female
11947    Garrett    Waters    germaine@thielmcclure.net    \N    American Samoa    Port Vivienchester    65407 Maude Mountains    49008    New Jersey    2016-08-03 12:04:59.531574    2016-10-14 13:02:33.776365        \N    \N    \N    0    \N    \N    \N    \N    female
11948    Amalia    Marks    annabell@auer.name    \N    Saint Pierre and Miquelon    Grantshire    8515 Kailey Loaf    91685-7050    Pennsylvania    2016-07-03 09:56:54.853372    2016-10-14 13:02:33.780676        \N    \N    \N    0    \N    \N    \N    \N    male
11949    Albert    Welch    winnifred_wiegand@franecki.com    \N    Svalbard & Jan Mayen Islands    New Ernestinamouth    614 Ethan Motorway    70174-1451    Florida    2016-08-02 12:07:39.026747    2016-10-14 13:02:33.784833        \N    \N    \N    0    \N    \N    \N    \N    female
11950    Tiffany    Goodwin    alena.dooley@feeney.io    \N    Denmark    South Fredericside    5062 Wehner Ports    34727-6664    North Carolina    2016-06-27 04:17:49.205604    2016-10-14 13:02:33.788769        \N    \N    \N    0    \N    \N    \N    \N    female
11951    Brennon    Stiedemann    tyreek@kemmer.io    \N    Benin    Runtetown    448 Cruickshank Pass    56559-4626    Kentucky    2016-06-27 15:56:29.724619    2016-10-14 13:02:33.796624        \N    \N    \N    0    \N    \N    \N    \N    male
11952    Jade    Hansen    coy@bernhard.co    \N    Switzerland    North Ginashire    957 Pagac Fords    79424-8042    New Hampshire    2016-08-09 06:43:14.288884    2016-10-14 13:02:33.800509        \N    \N    \N    0    \N    \N    \N    \N    male
11953    Cheyanne    Durgan    dandre.fadel@gutkowski.name    \N    Andorra    East Mablemouth    7990 Emilio Rapids    79797    Wisconsin    2016-07-16 11:41:41.227911    2016-10-14 13:02:33.804488        \N    \N    \N    0    \N    \N    \N    \N    female
11954    Ocie    Hudson    kiana.gutmann@medhurst.io    \N    Saint Vincent and the Grenadines    East Jeanie    727 Deshawn Mount    45948    Hawaii    2016-08-23 14:47:45.236999    2016-10-14 13:02:33.808572        \N    \N    \N    0    \N    \N    \N    \N    male
11955    Assunta    Wolff    juwan.kerluke@simonis.co    \N    Bahamas    Ezequielfurt    8794 Heather Points    97489    South Dakota    2016-08-14 13:08:35.402713    2016-10-14 13:02:33.812462        \N    \N    \N    0    \N    \N    \N    \N    male
11956    Lou    MacGyver    pedro_runolfon@heathcote.name    \N    Papua New Guinea    Legrosport    35744 Abernathy Harbor    86744    Minnesota    2016-09-10 14:48:15.645756    2016-10-14 13:02:33.816375        \N    \N    \N    0    \N    \N    \N    \N    female
11957    Florine    Ullrich    emmy@hudson.name    \N    Switzerland    Gertrudeborough    3685 Collins Bypass    38021-1055    Louisiana    2016-07-10 01:04:08.78564    2016-10-14 13:02:33.820487        \N    \N    \N    0    \N    \N    \N    \N    female
11958    Reid    Gorczany    tyshawn_ziemann@gusikowski.co    \N    Lebanon    Wymanburgh    326 Luettgen Wells    91284-4385    Wisconsin    2016-09-18 14:27:11.899187    2016-10-14 13:02:33.82461        \N    \N    \N    0    \N    \N    \N    \N    female
11959    Alexandro    Kuhn    keshaun@barrows.name    \N    Heard Island and McDonald Islands    Vivienmouth    848 Shea Lake    68085    Colorado    2016-07-13 18:55:30.286512    2016-10-14 13:02:33.828572        \N    \N    \N    0    \N    \N    \N    \N    male
11960    Lorena    Casper    luigi@beer.org    \N    Samoa    Rippinborough    30316 Dylan Ranch    60454    Vermont    2016-09-08 14:25:48.910203    2016-10-14 13:02:33.833174        \N    \N    \N    0    \N    \N    \N    \N    male
11962    Brooks    Bogan    freeman@wehner.name    \N    New Caledonia    Schusterland    1577 Eloisa Roads    63272-5569    Hawaii    2016-07-05 14:26:55.037945    2016-10-14 13:02:33.842562        \N    \N    \N    0    \N    \N    \N    \N    female
11963    Nat    Walter    grayson@nicolas.biz    \N    Kazakhstan    Adolphusview    6282 Zulauf Overpass    59794-4515    Maryland    2016-06-23 16:18:10.43366    2016-10-14 13:02:33.846716        \N    \N    \N    0    \N    \N    \N    \N    male
11964    Danny    Johnson    toney.krajcik@luettgen.co    \N    Chile    New Elmo    4944 Brittany Neck    20634    Arkansas    2016-07-21 00:17:59.593678    2016-10-14 13:02:33.851085        \N    \N    \N    0    \N    \N    \N    \N    female
11965    Royce    Effertz    marcos@beierfeest.info    \N    Botswana    Israelhaven    516 O'Kon Plains    20248    Delaware    2016-07-29 18:54:10.934331    2016-10-14 13:02:33.855455        \N    \N    \N    0    \N    \N    \N    \N    female
11966    Freeda    Connelly    jarrod@toy.info    \N    Brunei Darussalam    West Roselynberg    48276 Schamberger Harbors    49236    Mississippi    2016-08-01 04:54:58.672462    2016-10-14 13:02:33.859762        \N    \N    \N    0    \N    \N    \N    \N    female
11967    Harmony    Waters    deon@steubertreutel.org    \N    Antigua and Barbuda    Lake Jane    1674 Macejkovic Roads    26687    Maine    2016-07-03 15:00:03.867056    2016-10-14 13:02:33.863732        \N    \N    \N    0    \N    \N    \N    \N    female
11968    Ellis    Cole    cristobal@hoppe.co    \N    Eritrea    West Devyn    69099 Luigi Alley    21924    Texas    2016-09-06 11:12:30.630742    2016-10-14 13:02:33.868286        \N    \N    \N    0    \N    \N    \N    \N    male
11969    Toby    Jacobson    myrtis_stark@moriette.com    \N    Cocos (Keeling) Islands    North Nyasialand    2948 Tyrel Neck    35295-8553    Hawaii    2016-07-30 13:08:40.445758    2016-10-14 13:02:33.872694        \N    \N    \N    0    \N    \N    \N    \N    male
11970    Caitlyn    Langosh    hallie.stehr@jacobibaumbach.name    \N    Andorra    West Reece    2512 Wilma Road    88416-6306    New Jersey    2016-08-29 07:03:28.642487    2016-10-14 13:02:33.877138        \N    \N    \N    0    \N    \N    \N    \N    male
11971    Nyasia    Graham    kadin.reynolds@boyerratke.com    \N    Falkland Islands (Malvinas)    Framiton    200 Sid Locks    27507-5411    Vermont    2016-08-26 07:48:02.693964    2016-10-14 13:02:33.883696        \N    \N    \N    0    \N    \N    \N    \N    female
11972    Christelle    Cartwright    ignacio_prohaska@heathcoteturcotte.biz    \N    Antarctica (the territory South of 60 deg S)    East Germaine    14584 Huels Trail    18337    California    2016-09-27 09:10:57.707163    2016-10-14 13:02:33.888788        \N    \N    \N    0    \N    \N    \N    \N    female
11973    Ollie    Wilderman    jeffry_lubowitz@kunze.com    \N    Macedonia    Schummport    9755 Margarete Hills    89613    New Mexico    2016-09-19 14:41:05.532868    2016-10-14 13:02:33.89411        \N    \N    \N    0    \N    \N    \N    \N    female
11974    Alexis    Kunde    elisha.ziemann@buckridge.biz    \N    Kenya    Michaelahaven    74591 Dortha Corner    95059    South Carolina    2016-08-15 14:37:54.574971    2016-10-14 13:02:33.899212        \N    \N    \N    0    \N    \N    \N    \N    male
11975    Arlene    Cruickshank    freida@stromangreenfelder.name    \N    French Polynesia    North Shyannemouth    723 Sanford Mill    66432    Delaware    2016-08-25 21:41:53.32711    2016-10-14 13:02:33.90392        \N    \N    \N    0    \N    \N    \N    \N    male
11976    Nayeli    Bogisich    aurelia@kozey.org    \N    American Samoa    New Hesterberg    173 Schulist Rest    58593-9589    West Virginia    2016-07-21 08:48:16.683603    2016-10-14 13:02:33.908897        \N    \N    \N    0    \N    \N    \N    \N    female
10140    Virgil    Pfeffer    kianna@purdy.info    \N    Guyana    Lake Ashtyn    21572 Schneider Brooks    52262-4529    Virginia    2016-07-14 23:27:20.189711    2016-10-14 13:02:33.913425        \N    \N    \N    0    \N    \N    \N    \N    male
11977    Lucious    Berge    gay@nicolas.com    \N    Antarctica (the territory South of 60 deg S)    Anikahaven    39256 O'Connell View    31956-9790    Massachusetts    2016-09-24 08:58:06.76732    2016-10-14 13:02:33.917827        \N    \N    \N    0    \N    \N    \N    \N    male
11978    Celestine    Lebsack    myriam@corwinkub.biz    \N    Comoros    Sawaynfurt    1151 Tillman Ferry    22495-3983    South Carolina    2016-08-11 23:03:22.240053    2016-10-14 13:02:33.922879        \N    \N    \N    0    \N    \N    \N    \N    female
11979    Edyth    Denesik    bradley@hirthehickle.name    \N    French Southern Territories    South Claretown    70823 Ken Shore    50394    Colorado    2016-08-16 06:54:29.912727    2016-10-14 13:02:33.927626        \N    \N    \N    0    \N    \N    \N    \N    male
11980    Joe    Hamill    katlyn@dach.io    \N    Guyana    Hegmannhaven    2423 Heathcote Extensions    72652-6567    Arkansas    2016-08-26 01:19:04.471503    2016-10-14 13:02:33.931729        \N    \N    \N    0    \N    \N    \N    \N    male
11981    Madie    Altenwerth    elnora@littel.co    \N    Svalbard & Jan Mayen Islands    New Leta    753 Ondricka Overpass    37457    Connecticut    2016-07-21 14:58:39.452576    2016-10-14 13:02:33.936486        \N    \N    \N    0    \N    \N    \N    \N    male
11982    Ettie    Schneider    emmet@bechtelar.org    \N    Montserrat    North Adela    595 D'Amore Roads    21135-9703    Kentucky    2016-06-24 08:10:26.636744    2016-10-14 13:02:33.941337        \N    \N    \N    0    \N    \N    \N    \N    male
11983    Fernando    Trantow    elenor@wiza.org    \N    Tuvalu    Bergstrombury    5609 Roxane Cliffs    90604-5877    North Carolina    2016-08-18 07:28:59.031307    2016-10-14 13:02:33.946311        \N    \N    \N    0    \N    \N    \N    \N    male
11985    Onie    Hauck    martin@senger.io    \N    Switzerland    Kulasberg    62010 Dixie Glen    36299    North Carolina    2016-07-14 17:32:14.101537    2016-10-14 13:02:33.950775        \N    \N    \N    0    \N    \N    \N    \N    male
11986    Kira    Weber    rosendo_weimann@harrisframi.org    \N    Romania    North Meghanberg    94401 Morar Vista    24716-5556    Maine    2016-08-08 02:11:10.469983    2016-10-14 13:02:33.955668        \N    \N    \N    0    \N    \N    \N    \N    male
11987    Stacey    O'Reilly    cecelia@abernathy.io    \N    Cambodia    East Destini    9545 Halvorson Prairie    91727-2093    Idaho    2016-07-10 09:55:57.439739    2016-10-14 13:02:33.960485        \N    \N    \N    0    \N    \N    \N    \N    female
11988    Vada    Friesen    napoleon@hoegerschultz.org    \N    Sao Tome and Principe    Kossburgh    7668 Webster Keys    50473-1017    Mississippi    2016-09-28 15:12:16.225197    2016-10-14 13:02:33.96526        \N    \N    \N    0    \N    \N    \N    \N    male
11989    Brennan    Brakus    theo.welch@farrell.com    \N    Thailand    Luraville    90063 Hudson Crest    37289-8196    New Hampshire    2016-09-13 06:55:48.415551    2016-10-14 13:02:33.969782        \N    \N    \N    0    \N    \N    \N    \N    male
11990    Vicenta    Legros    melba.schowalter@bayerschiller.info    \N    Samoa    Hellerport    906 Chanel Road    44191-2989    Louisiana    2016-08-23 18:57:02.711626    2016-10-14 13:02:33.974199        \N    \N    \N    0    \N    \N    \N    \N    male
11991    Taya    Ratke    imani@mertz.net    \N    Somalia    South Remingtonborough    67894 Larue Cliffs    41188-0667    Kansas    2016-09-29 01:18:42.715711    2016-10-14 13:02:33.978597        \N    \N    \N    0    \N    \N    \N    \N    female
11993    Harold    Schulist    fred_wyman@tromp.org    \N    Timor-Leste    South Gustavetown    699 Leonard Viaduct    44696-6603    Oregon    2016-09-08 23:25:27.560971    2016-10-14 13:02:33.987483        \N    \N    \N    0    \N    \N    \N    \N    female
11994    Ray    Gottlieb    clinton.hammes@jacobs.info    \N    Wallis and Futuna    East Nataliaside    17748 Cloyd Plain    28378-6453    North Dakota    2016-09-29 04:42:39.61068    2016-10-14 13:02:33.996008        \N    \N    \N    0    \N    \N    \N    \N    male
11996    Cloyd    Kemmer    leanne_borer@moenpowlowski.name    \N    Swaziland    South Clareborough    251 Larkin Parkways    43037    Arkansas    2016-07-23 07:19:23.136159    2016-10-14 13:02:34.000078        \N    \N    \N    0    \N    \N    \N    \N    female
11997    Samantha    Funk    alexandrea.corwin@schuster.com    \N    Northern Mariana Islands    New Kareemburgh    40606 Eliza Prairie    17376    Minnesota    2016-08-28 18:23:18.005117    2016-10-14 13:02:34.004684        \N    \N    \N    0    \N    \N    \N    \N    male
11998    Sean    Kiehn    sim_veum@marquardt.net    \N    Bosnia and Herzegovina    North Rosario    39234 Champlin Wall    47560-0420    Arizona    2016-08-29 20:50:29.144536    2016-10-14 13:02:34.0088        \N    \N    \N    0    \N    \N    \N    \N    female
11999    Isaiah    McGlynn    jayson_rodriguez@upton.info    \N    Congo    Valentinahaven    7987 Wehner Underpass    32935    Utah    2016-09-11 22:53:21.319544    2016-10-14 13:02:34.012988        \N    \N    \N    0    \N    \N    \N    \N    female
12000    Edmund    Rohan    kiana_brekke@oreilly.biz    \N    Cameroon    East Theo    2837 Aufderhar Street    44325-5369    Texas    2016-09-28 21:22:48.855597    2016-10-14 13:02:34.017678        \N    \N    \N    0    \N    \N    \N    \N    female
12001    Santos    McDermott    arvid@gaylord.info    \N    Nicaragua    Faehaven    666 Lenny Radial    38574    Nebraska    2016-09-18 06:50:32.295303    2016-10-14 13:02:34.02186        \N    \N    \N    0    \N    \N    \N    \N    female
12002    Mollie    Smith    malika_thiel@hirthe.biz    \N    Botswana    North Arthurburgh    466 Walter Street    39012    South Dakota    2016-09-09 04:53:32.015125    2016-10-14 13:02:34.026315        \N    \N    \N    0    \N    \N    \N    \N    male
12003    Darrell    Hirthe    ethelyn.stroman@beatty.co    \N    Croatia    East Aureliaville    6433 Hessel Tunnel    64550    Oklahoma    2016-09-12 14:13:54.852034    2016-10-14 13:02:34.030689        \N    \N    \N    0    \N    \N    \N    \N    female
12004    Cassie    Beatty    allie@carroll.io    \N    Gibraltar    South Else    860 Melyna Prairie    84921    New Hampshire    2016-08-18 01:32:54.41604    2016-10-14 13:02:34.035486        \N    \N    \N    0    \N    \N    \N    \N    female
12005    Brandy    Abshire    lynn.parker@franecki.name    \N    Poland    Bartonton    879 Hahn Rest    56717-7356    Mississippi    2016-09-11 08:12:01.449518    2016-10-14 13:02:34.040359        \N    \N    \N    0    \N    \N    \N    \N    female
12006    Irwin    Deckow    skye_daugherty@grantmitchell.name    \N    Andorra    Deannatown    29496 Lebsack Squares    70081-0973    Maine    2016-08-30 13:46:10.64863    2016-10-14 13:02:34.0451        \N    \N    \N    0    \N    \N    \N    \N    male
12007    Kaylie    Erdman    ray.heidenreich@harber.name    \N    Croatia    New Maraview    12488 Jolie Cove    52789    Alabama    2016-07-29 07:11:53.016389    2016-10-14 13:02:34.049784        \N    \N    \N    0    \N    \N    \N    \N    female
12008    Clare    Goldner    yvonne_gerlach@lemke.info    \N    Cape Verde    Bartmouth    2604 Destini Terrace    83233-1485    Maryland    2016-09-11 14:23:00.701187    2016-10-14 13:02:34.05441        \N    \N    \N    0    \N    \N    \N    \N    male
12009    Kyla    Stoltenberg    olen@koch.com    \N    Kiribati    Port Demario    573 Jermain Meadow    63608    Vermont    2016-06-28 00:42:53.378643    2016-10-14 13:02:34.058978        \N    \N    \N    0    \N    \N    \N    \N    female
12010    Ara    Eichmann    casandra.brekke@fisherwalter.net    \N    Bulgaria    Dickistad    951 Muller Ports    10270-1141    Pennsylvania    2016-08-03 13:50:37.374248    2016-10-14 13:02:34.063915        \N    \N    \N    0    \N    \N    \N    \N    female
12011    Nikita    Zemlak    anthony.trantow@steuber.io    \N    Barbados    East Clintontown    245 Petra Knoll    46679    Nebraska    2016-06-28 06:45:24.215802    2016-10-14 13:02:34.068279        \N    \N    \N    0    \N    \N    \N    \N    male
12012    Isadore    Hickle    jovani@bernier.org    \N    Guernsey    East Reedfort    7991 Tremaine Glen    69937    Delaware    2016-09-14 18:51:14.321104    2016-10-14 13:02:34.072424        \N    \N    \N    0    \N    \N    \N    \N    male
12013    Nya    Klein    jaclyn@koch.org    \N    Italy    Port Hilma    1195 Legros Station    46197-8347    North Dakota    2016-09-08 19:14:12.334419    2016-10-14 13:02:34.076894        \N    \N    \N    0    \N    \N    \N    \N    female
12014    Erna    Bernier    leanne_stracke@cole.org    \N    India    North Giovaniport    8505 Kyler Plain    51634    Virginia    2016-07-12 06:11:33.73635    2016-10-14 13:02:34.081629        \N    \N    \N    0    \N    \N    \N    \N    female
12015    Anika    Hudson    randall@gottlieb.name    \N    Saint Martin    Port Enos    1454 Kilback Overpass    47977-7417    Texas    2016-08-21 18:50:38.615035    2016-10-14 13:02:34.086158        \N    \N    \N    0    \N    \N    \N    \N    female
12016    Hailey    Gusikowski    justyn.bayer@jakubowskimiller.org    \N    Singapore    MacGyverchester    1976 Quitzon Court    54991    New Jersey    2016-09-17 04:25:10.251459    2016-10-14 13:02:34.090765        \N    \N    \N    0    \N    \N    \N    \N    male
12017    Sylvan    Bailey    agustin_howell@erdman.io    \N    Niue    Effertzside    80726 Monahan Locks    60886    North Dakota    2016-09-21 20:26:13.698542    2016-10-14 13:02:34.095588        \N    \N    \N    0    \N    \N    \N    \N    female
12018    Vicente    Mayer    santiago@kozey.org    \N    Czech Republic    Dulceville    115 Haley Ramp    55540    California    2016-09-23 06:46:23.736514    2016-10-14 13:02:34.100193        \N    \N    \N    0    \N    \N    \N    \N    male
12019    Mireille    Dickens    noe@bodekoepp.co    \N    Indonesia    Delmerfort    53850 Herman Streets    71399    West Virginia    2016-08-01 03:46:48.172118    2016-10-14 13:02:34.105002        \N    \N    \N    0    \N    \N    \N    \N    male
12020    Kathryne    Nolan    malika@kaulke.com    \N    Guatemala    North Larue    826 Pfeffer River    38518    Utah    2016-07-31 15:47:35.814968    2016-10-14 13:02:34.109909        \N    \N    \N    0    \N    \N    \N    \N    female
12021    Paolo    Harris    kennith@thiel.org    \N    Ecuador    Hickleside    3910 Corrine Mall    16304    California    2016-09-15 12:27:44.241462    2016-10-14 13:02:34.114208        \N    \N    \N    0    \N    \N    \N    \N    male
12022    Major    Raynor    peyton_barrows@howeemmerich.io    \N    Bhutan    Anyashire    6545 Dino Forest    48252-6364    Michigan    2016-08-09 19:51:06.874813    2016-10-14 13:02:34.118796        \N    \N    \N    0    \N    \N    \N    \N    male
12023    Tatyana    Little    gwendolyn@grimes.org    \N    Algeria    Port Aaronborough    4766 Kacey Parks    81199    Texas    2016-08-11 12:18:52.082408    2016-10-14 13:02:34.123378        \N    \N    \N    0    \N    \N    \N    \N    male
12024    Linwood    Erdman    titus_waters@jacobsonfunk.info    \N    Brunei Darussalam    Goodwintown    924 Felipe Burg    51848    Oregon    2016-06-28 15:46:15.026115    2016-10-14 13:02:34.127756        \N    \N    \N    0    \N    \N    \N    \N    female
12025    Camden    O'Hara    bert.kunde@lockmangreen.name    \N    Netherlands    Hackettberg    91882 Hayden Rest    64683-5966    Mississippi    2016-07-28 20:00:33.827531    2016-10-14 13:02:34.132473        \N    \N    \N    0    \N    \N    \N    \N    male
12026    Shayna    Hermann    shanie@king.net    \N    Cocos (Keeling) Islands    East Shaniyaport    5728 Friesen Flats    47237    North Dakota    2016-09-12 01:15:27.159103    2016-10-14 13:02:34.136736        \N    \N    \N    0    \N    \N    \N    \N    male
12027    Elisabeth    Green    jammie@heathcoteschamberger.net    \N    Italy    New Demetriusmouth    197 Dexter Rue    92807-1807    California    2016-07-09 08:56:26.094879    2016-10-14 13:02:34.141432        \N    \N    \N    0    \N    \N    \N    \N    female
12028    Lurline    Ratke    martin.crona@breitenberg.info    \N    Ghana    Linaville    45030 Hilpert Light    40434    Alaska    2016-07-12 04:32:58.879709    2016-10-14 13:02:34.145398        \N    \N    \N    0    \N    \N    \N    \N    male
12029    Christina    Smitham    jerrell_bahringer@gleichner.info    \N    Slovakia (Slovak Republic)    New Trevor    613 Johns Mission    54023-4233    Hawaii    2016-08-09 21:40:11.577716    2016-10-14 13:02:34.149454        \N    \N    \N    0    \N    \N    \N    \N    male
12030    Maybelle    Kautzer    viola_grimes@langworth.org    \N    Tuvalu    Mooreborough    9865 Danika River    89596    Montana    2016-08-13 18:54:31.438262    2016-10-14 13:02:34.15361        \N    \N    \N    0    \N    \N    \N    \N    female
12031    Eino    Goyette    ian@wunsch.info    \N    French Polynesia    New Erikstad    51879 Vesta Oval    22939-2295    Wisconsin    2016-07-05 12:36:57.585587    2016-10-14 13:02:34.157708        \N    \N    \N    0    \N    \N    \N    \N    male
12033    Pearlie    Kunze    edward_stroman@mohrprice.net    \N    Bahrain    Billtown    229 Ernest Trail    69479-0396    Ohio    2016-08-12 21:51:34.798327    2016-10-14 13:02:34.161787        \N    \N    \N    0    \N    \N    \N    \N    male
12034    Cody    Sawayn    gerry@spinka.net    \N    Jamaica    Brookschester    268 Jillian Mews    41974-2617    New Mexico    2016-07-17 06:35:34.307441    2016-10-14 13:02:34.16604        \N    \N    \N    0    \N    \N    \N    \N    female
12035    Rebeca    Schroeder    janie_conroy@steubermayert.org    \N    South Georgia and the South Sandwich Islands    Batzfurt    1447 Carson Ford    33778-0090    Montana    2016-07-24 00:16:38.948001    2016-10-14 13:02:34.170389        \N    \N    \N    0    \N    \N    \N    \N    female
12036    Jolie    Schoen    annetta@hamill.com    \N    Angola    Lake Tessie    5071 Becker Square    83943-5516    Louisiana    2016-07-03 20:44:11.765794    2016-10-14 13:02:34.17463        \N    \N    \N    0    \N    \N    \N    \N    male
12037    Pamela    Yost    sigrid@spencer.name    \N    Georgia    West Erik    5374 Kreiger Fall    84538-8449    Tennessee    2016-09-15 12:43:37.465576    2016-10-14 13:02:34.179105        \N    \N    \N    0    \N    \N    \N    \N    male
12038    Giovanni    Hamill    francisco@kshlerin.co    \N    Russian Federation    Richiebury    458 Ona Isle    96393    Nevada    2016-09-16 11:54:23.355632    2016-10-14 13:02:34.183308        \N    \N    \N    0    \N    \N    \N    \N    female
12039    Tyrese    Nolan    polly@baileyondricka.net    \N    Denmark    Port Gerda    9904 Melba Squares    68694-1503    Nebraska    2016-09-10 05:28:39.48535    2016-10-14 13:02:34.188471        \N    \N    \N    0    \N    \N    \N    \N    female
12040    Verdie    Fahey    ubaldo_mclaughlin@wilderman.co    \N    Saudi Arabia    West Aylin    57976 Strosin Parks    16310    Kansas    2016-08-10 05:48:19.254645    2016-10-14 13:02:34.192714        \N    \N    \N    0    \N    \N    \N    \N    male
12041    Kiarra    Gislason    jovani@frami.biz    \N    Heard Island and McDonald Islands    East Noraberg    1071 McGlynn Trail    68134    Arkansas    2016-08-07 08:52:30.911691    2016-10-14 13:02:34.196966        \N    \N    \N    0    \N    \N    \N    \N    male
12042    Tatum    Huel    rosalia.bartell@borer.org    \N    Anguilla    Cristopherchester    497 Crona Common    88146-3664    Maine    2016-08-12 11:49:08.210895    2016-10-14 13:02:34.201373        \N    \N    \N    0    \N    \N    \N    \N    male
12043    Andy    Rath    damien.buckridge@olson.info    \N    Philippines    New Iciebury    9195 Aufderhar Court    63875    North Carolina    2016-09-23 12:12:32.232371    2016-10-14 13:02:34.205716        \N    \N    \N    0    \N    \N    \N    \N    female
12044    Marcus    Halvorson    uriel_mayert@raynorchristiansen.net    \N    Congo    New Gilbert    1025 Fae Highway    43040-0342    Nevada    2016-08-04 11:57:23.603211    2016-10-14 13:02:34.210578        \N    \N    \N    0    \N    \N    \N    \N    male
12045    Jermaine    Hettinger    kenny_purdy@feestchristiansen.net    \N    Cook Islands    Nikoport    3175 Nicolas Lake    79143-9168    Texas    2016-07-04 10:31:57.761831    2016-10-14 13:02:34.215248        \N    \N    \N    0    \N    \N    \N    \N    female
12046    Alf    Blick    bret@adams.biz    \N    Greece    New Joeyfurt    3152 Angelica Mill    17748-1831    South Dakota    2016-06-29 13:54:10.264822    2016-10-14 13:02:34.220077        \N    \N    \N    0    \N    \N    \N    \N    female
12047    Kara    Ritchie    dejah_nicolas@wuckert.co    \N    Dominica    Lynnview    835 Hilpert Parkway    72791    Arizona    2016-08-28 00:23:29.67528    2016-10-14 13:02:34.224535        \N    \N    \N    0    \N    \N    \N    \N    male
18407    Maritza    Von    alyson@raynor.com    \N    Martinique    Grantmouth    4619 Tess Causeway    78037    Iowa    2016-09-07 13:08:40.137292    2016-10-14 13:02:34.22856        \N    \N    \N    0    \N    \N    \N    \N    female
12048    Kaela    Thompson    chelsie@turner.net    \N    Venezuela    Lake Ariville    28086 Viviane Parkways    75428    New Jersey    2016-07-17 18:58:19.575963    2016-10-14 13:02:34.23287        \N    \N    \N    0    \N    \N    \N    \N    female
12049    Veda    Lang    helmer@cole.co    \N    Norway    Lake Joana    61737 Luettgen Alley    44560    Maine    2016-07-26 01:33:46.455241    2016-10-14 13:02:34.237065        \N    \N    \N    0    \N    \N    \N    \N    male
12050    Asia    O'Reilly    cyril.watsica@abernathy.biz    \N    Falkland Islands (Malvinas)    Port Jeanie    28361 Jaren Stravenue    84787    Florida    2016-07-28 23:43:57.941916    2016-10-14 13:02:34.241035        \N    \N    \N    0    \N    \N    \N    \N    female
12051    Bud    Runolfsdottir    darlene_kemmer@kubblanda.info    \N    Malta    Skilesmouth    906 Rogahn Hill    99303-3443    Florida    2016-09-04 18:57:17.00196    2016-10-14 13:02:34.245322        \N    \N    \N    0    \N    \N    \N    \N    female
12053    Chauncey    Kertzmann    arvel@anderson.io    \N    Cayman Islands    West Armandobury    1105 Zboncak Plains    98234-5656    Oregon    2016-09-05 04:31:14.805924    2016-10-14 13:02:34.249334        \N    \N    \N    0    \N    \N    \N    \N    male
12054    Elsie    Friesen    ashtyn@weberherzog.co    \N    Spain    Corwinfurt    44570 Gottlieb Road    92111-7296    Tennessee    2016-07-22 14:39:18.880696    2016-10-14 13:02:34.253469        \N    \N    \N    0    \N    \N    \N    \N    male
12055    Nayeli    Gorczany    joan.spinka@mitchelljohnston.name    \N    Somalia    Kleinberg    61078 Murazik Hills    76845-1780    Maine    2016-09-18 07:23:34.025053    2016-10-14 13:02:34.25794        \N    \N    \N    0    \N    \N    \N    \N    female
12056    Angela    Steuber    bill@gusikowski.biz    \N    Macao    Altenwerthbury    49860 Walter Underpass    21498-4915    Idaho    2016-07-19 11:11:41.406232    2016-10-14 13:02:34.262205        \N    \N    \N    0    \N    \N    \N    \N    female
12057    Dayna    Hagenes    rusty@konopelski.com    \N    Cape Verde    West Janiya    87821 Kuhlman Field    76351-9048    Indiana    2016-08-10 17:47:03.864347    2016-10-14 13:02:34.266154        \N    \N    \N    0    \N    \N    \N    \N    female
12058    Jarred    Quigley    melvina@kozey.net    \N    Micronesia    East Jena    286 Bogan Cliff    79458-5988    Delaware    2016-06-30 07:04:22.350821    2016-10-14 13:02:34.270032        \N    \N    \N    0    \N    \N    \N    \N    female
12059    Watson    Fadel    elinore@marks.io    \N    Central African Republic    Kiehntown    199 Torp Pike    36757-4368    Tennessee    2016-08-09 21:28:17.948009    2016-10-14 13:02:34.274409        \N    \N    \N    0    \N    \N    \N    \N    female
12060    Frederique    Cruickshank    felicia@lockmanmoen.co    \N    United States Minor Outlying Islands    West Bernadettemouth    7843 Schmitt Gardens    78298    Kentucky    2016-07-02 01:54:18.781933    2016-10-14 13:02:34.278824        \N    \N    \N    0    \N    \N    \N    \N    male
12061    Domenico    Hilpert    ahmad_corwin@turner.info    \N    Finland    East Hettieburgh    747 Maxie Roads    65439    Michigan    2016-09-15 05:19:18.503588    2016-10-14 13:02:34.283184        \N    \N    \N    0    \N    \N    \N    \N    male
12062    Jada    Abbott    dina_olson@lynch.biz    \N    Greece    Christiansenmouth    274 Adelia Pines    70784    Alabama    2016-08-15 02:27:12.884083    2016-10-14 13:02:34.287714        \N    \N    \N    0    \N    \N    \N    \N    female
12063    Marquise    Crist    emilia.homenick@goldnerschaden.org    \N    Papua New Guinea    East Francesville    3520 Brigitte Square    60289-0053    New Jersey    2016-08-12 09:48:10.427027    2016-10-14 13:02:34.292344        \N    \N    \N    0    \N    \N    \N    \N    female
12064    Barbara    Wisoky    hank_vonrueden@parkerpacocha.com    \N    Congo    Cruzchester    3503 Dare Expressway    54467-1575    South Carolina    2016-08-24 09:00:20.581056    2016-10-14 13:02:34.296731        \N    \N    \N    0    \N    \N    \N    \N    male
12065    Onie    Hyatt    mikayla@hegmann.biz    \N    Palestinian Territory    South Carrollshire    8986 Hansen Circle    56345    Texas    2016-07-17 23:32:51.415724    2016-10-14 13:02:34.301066        \N    \N    \N    0    \N    \N    \N    \N    male
12066    Vaughn    Hauck    joanne@hagenes.net    \N    Bosnia and Herzegovina    Boyerport    887 Minnie Cove    37231-7356    South Dakota    2016-09-11 14:12:12.576219    2016-10-14 13:02:34.30556        \N    \N    \N    0    \N    \N    \N    \N    male
12067    Sim    Medhurst    clement@mayert.info    \N    Ukraine    West Coratown    613 Tess Spring    62708-7532    Georgia    2016-09-12 16:56:51.464177    2016-10-14 13:02:34.309924        \N    \N    \N    0    \N    \N    \N    \N    female
12068    Jack    McGlynn    jeyca_goyette@reichert.net    \N    Tonga    North Maceyside    64783 Sigrid Valley    52656-8422    Kansas    2016-07-04 14:59:26.772546    2016-10-14 13:02:34.314457        \N    \N    \N    0    \N    \N    \N    \N    male
12069    Kira    Wunsch    rollin@bergnaumharris.info    \N    Cocos (Keeling) Islands    Port Rosaleechester    4933 Lynch Meadows    20570-8682    Louisiana    2016-09-08 01:19:45.429255    2016-10-14 13:02:34.318879        \N    \N    \N    0    \N    \N    \N    \N    male
12070    Trevor    Cartwright    garland_schmeler@pricekihn.io    \N    Saint Martin    Ramonhaven    9877 Zachery Harbor    11917-1895    Texas    2016-09-26 17:25:07.173982    2016-10-14 13:02:34.323481        \N    \N    \N    0    \N    \N    \N    \N    male
12071    Mercedes    King    toby@koch.biz    \N    Virgin Islands, U.S.    North Arthur    68834 Demond Heights    99944    Pennsylvania    2016-09-05 16:20:50.624335    2016-10-14 13:02:34.328037        \N    \N    \N    0    \N    \N    \N    \N    female
12072    Tyra    Harris    roselyn.denesik@wolf.co    \N    Bangladesh    South Domenica    7494 Mariam Gardens    72153    Ohio    2016-07-16 11:08:52.289417    2016-10-14 13:02:34.332572        \N    \N    \N    0    \N    \N    \N    \N    female
12073    Thea    Maggio    rory.schuppe@macejkovic.org    \N    Oman    Barbarafurt    89563 Moises Branch    14018-8991    West Virginia    2016-07-11 19:53:28.788599    2016-10-14 13:02:34.33744        \N    \N    \N    0    \N    \N    \N    \N    female
12074    Camille    Ruecker    misty@doyleweber.info    \N    Somalia    Lianastad    59317 Corkery Crossroad    66402    Texas    2016-08-08 10:57:59.649004    2016-10-14 13:02:34.341687        \N    \N    \N    0    \N    \N    \N    \N    male
12075    Jose    Price    jeramy@cremin.name    \N    Cayman Islands    Bergnaummouth    421 Yvonne Crest    37503    Maine    2016-08-31 15:45:20.232929    2016-10-14 13:02:34.345725        \N    \N    \N    0    \N    \N    \N    \N    female
12076    Donnie    Shields    lillie@dicki.info    \N    Slovenia    Twilaton    201 Roberto Lock    93963    Illinois    2016-08-12 12:33:31.118923    2016-10-14 13:02:34.349975        \N    \N    \N    0    \N    \N    \N    \N    male
12077    Dawson    Stracke    clint@zulauf.biz    \N    Central African Republic    North Bell    1809 Bednar Fords    47995-0817    Virginia    2016-07-19 16:37:50.61617    2016-10-14 13:02:34.354168        \N    \N    \N    0    \N    \N    \N    \N    male
12078    Tina    Senger    samir_stehr@rodriguez.com    \N    Falkland Islands (Malvinas)    Metzmouth    691 Maurice Throughway    17160-0231    South Carolina    2016-07-30 04:33:13.493578    2016-10-14 13:02:34.358441        \N    \N    \N    0    \N    \N    \N    \N    male
12079    Granville    Hettinger    catharine_kohler@zulaufmayer.biz    \N    Iran    Ricefurt    60601 Okey Estates    55549-5639    Pennsylvania    2016-09-16 00:17:25.34715    2016-10-14 13:02:34.362326        \N    \N    \N    0    \N    \N    \N    \N    female
12080    Jaren    Glover    myah.halvorson@boganward.io    \N    Guinea    Romagueramouth    67250 Erik Camp    55469-8509    Idaho    2016-09-17 20:53:57.57635    2016-10-14 13:02:34.366117        \N    \N    \N    0    \N    \N    \N    \N    male
12081    Eloisa    Kiehn    karolann.koch@vandervort.co    \N    Togo    New Izaiahtown    229 Beer Forge    36388-6636    Nevada    2016-06-24 09:18:03.592646    2016-10-14 13:02:34.370126        \N    \N    \N    0    \N    \N    \N    \N    female
12082    Donald    Erdman    amara@cormierolson.info    \N    Senegal    Martymouth    87043 Kaelyn Fields    69536    California    2016-09-29 06:51:02.038061    2016-10-14 13:02:34.374319        \N    \N    \N    0    \N    \N    \N    \N    male
12083    Joanne    McLaughlin    ephraim@marquardt.co    \N    Saint Kitts and Nevis    Lake Christianberg    7369 Selmer Valleys    22418    Pennsylvania    2016-07-05 07:14:10.47108    2016-10-14 13:02:34.378179        \N    \N    \N    0    \N    \N    \N    \N    female
12084    Kamille    Harber    marge_nicolas@boylemoore.com    \N    Georgia    East Chadrickside    572 Dietrich Place    93213-0013    Maryland    2016-07-08 02:33:59.664299    2016-10-14 13:02:34.382035        \N    \N    \N    0    \N    \N    \N    \N    male
12085    Mortimer    Langosh    halie_hodkiewicz@donnelly.org    \N    Saint Pierre and Miquelon    Bruenside    1862 Benny Divide    81985    South Carolina    2016-07-17 09:41:13.430689    2016-10-14 13:02:34.390178        \N    \N    \N    0    \N    \N    \N    \N    male
12086    Kendall    Kub    evan_harvey@swift.biz    \N    Marshall Islands    West Katherynside    668 Hettie Mountain    22012-3528    Delaware    2016-07-09 20:01:47.051749    2016-10-14 13:02:34.394234        \N    \N    \N    0    \N    \N    \N    \N    female
12087    Alexandro    Tillman    sabina_vonrueden@gulgowski.name    \N    Barbados    West Karlview    810 Dooley Square    90447    Maine    2016-08-03 17:59:56.230941    2016-10-14 13:02:34.398191        \N    \N    \N    0    \N    \N    \N    \N    male
12088    Johnnie    Frami    oliver.morar@gislason.net    \N    Switzerland    East Meda    804 Alysha Islands    64706-4003    Arkansas    2016-07-05 08:05:39.172698    2016-10-14 13:02:34.402226        \N    \N    \N    0    \N    \N    \N    \N    male
12089    Roy    Hayes    rollin@lowe.org    \N    New Zealand    Mosciskiborough    95442 Janiya Locks    77609-1256    Mississippi    2016-09-25 03:31:03.136988    2016-10-14 13:02:34.406188        \N    \N    \N    0    \N    \N    \N    \N    female
12090    Douglas    Toy    allan.rodriguez@creminwuckert.co    \N    Fiji    Port Kennith    751 Melvina Burg    56007    Pennsylvania    2016-09-05 19:29:21.883349    2016-10-14 13:02:34.410245        \N    \N    \N    0    \N    \N    \N    \N    female
12091    Lauren    Lemke    claude.wiza@jast.io    \N    Romania    East Jeramie    76235 Alicia Lodge    91621-5293    Connecticut    2016-08-23 12:46:55.630857    2016-10-14 13:02:34.414443        \N    \N    \N    0    \N    \N    \N    \N    female
12092    Ryley    Schaefer    aileen@rutherford.net    \N    Guinea    South Isobel    32714 Michele Way    82270    South Carolina    2016-08-15 13:28:01.746905    2016-10-14 13:02:34.418368        \N    \N    \N    0    \N    \N    \N    \N    female
12093    Danny    Fay    kiara@torphy.co    \N    Central African Republic    Lake Pablo    916 Berry Mountain    27490    Pennsylvania    2016-09-24 12:26:18.572433    2016-10-14 13:02:34.422294        \N    \N    \N    0    \N    \N    \N    \N    male
12094    Franco    Steuber    estell.gibson@graham.net    \N    Trinidad and Tobago    Doylehaven    24790 Anibal Run    64788-8338    Texas    2016-07-21 03:49:59.98801    2016-10-14 13:02:34.426597        \N    \N    \N    0    \N    \N    \N    \N    female
12095    Rosella    Shields    german.hodkiewicz@cronin.biz    \N    Uruguay    Wymanbury    250 Kunze Summit    46849-7915    Louisiana    2016-08-16 17:48:55.605932    2016-10-14 13:02:34.430675        \N    \N    \N    0    \N    \N    \N    \N    female
12096    Adaline    Beer    bennett@wisozk.biz    \N    Antigua and Barbuda    Carlomouth    81301 Mosciski Light    46351-6810    Missouri    2016-08-11 00:04:08.017875    2016-10-14 13:02:34.435908        \N    \N    \N    0    \N    \N    \N    \N    male
12097    Rachel    Watsica    christy.schowalter@goodwin.name    \N    Senegal    Lake Joaquin    6941 Crona Camp    27825-0634    Alabama    2016-08-15 00:26:03.430636    2016-10-14 13:02:34.440074        \N    \N    \N    0    \N    \N    \N    \N    female
12098    Napoleon    Pacocha    brayan@von.info    \N    Moldova    Aglaeville    484 Brown Plains    40856    Mississippi    2016-09-11 13:41:30.656204    2016-10-14 13:02:34.445228        \N    \N    \N    0    \N    \N    \N    \N    female
12099    Bernhard    Torphy    magali_hintz@nolanglover.biz    \N    Finland    North Isabella    14868 Gaylord Roads    40152    Kansas    2016-09-19 21:43:06.118573    2016-10-14 13:02:34.449661        \N    \N    \N    0    \N    \N    \N    \N    female
12100    Vivian    Bauch    kayla@oberbrunnerklocko.name    \N    Madagascar    Kochton    899 Orn Circle    37606    South Dakota    2016-08-31 00:13:09.216681    2016-10-14 13:02:34.455721        \N    \N    \N    0    \N    \N    \N    \N    male
12101    Lorena    Dickens    jeanne.heaney@price.info    \N    Guernsey    New Terrance    6134 Tromp Heights    50581    Nevada    2016-07-01 07:12:29.070824    2016-10-14 13:02:34.461647        \N    \N    \N    0    \N    \N    \N    \N    male
12102    Kavon    Hessel    renee.flatley@brakus.biz    \N    Maldives    Riceborough    2408 Haag Grove    67726    Pennsylvania    2016-06-28 20:05:54.119991    2016-10-14 13:02:34.473352        \N    \N    \N    0    \N    \N    \N    \N    female
12103    Holly    Pollich    rosanna.skiles@medhurst.net    \N    Saint Vincent and the Grenadines    Langoshtown    74812 Selena Creek    27555-5345    North Carolina    2016-07-29 15:39:37.65662    2016-10-14 13:02:34.477852        \N    \N    \N    0    \N    \N    \N    \N    female
12104    Jordy    Feil    logan@stammdonnelly.co    \N    Montenegro    Port Agustina    40012 Sipes Keys    86169    Maryland    2016-06-29 07:02:05.751548    2016-10-14 13:02:34.482273        \N    \N    \N    0    \N    \N    \N    \N    female
12105    Onie    Langworth    oral@jonesokuneva.info    \N    French Southern Territories    South Orenshire    584 O'Reilly Shoal    34651-1010    North Carolina    2016-08-15 04:47:10.023206    2016-10-14 13:02:34.48696        \N    \N    \N    0    \N    \N    \N    \N    male
12106    Deshawn    Jacobi    celine_flatley@rippindare.org    \N    Andorra    West Fernmouth    67167 Williamson Views    18810    South Carolina    2016-08-09 10:45:22.179052    2016-10-14 13:02:34.491755        \N    \N    \N    0    \N    \N    \N    \N    female
12107    Kurt    Aufderhar    khalid@beahan.net    \N    Comoros    South Fannyborough    264 Carolyne Radial    23629-3890    Iowa    2016-07-16 20:33:15.855366    2016-10-14 13:02:34.495641        \N    \N    \N    0    \N    \N    \N    \N    female
12108    Ervin    Bechtelar    mekhi@hilpert.co    \N    Democratic People's Republic of Korea    Immanuelmouth    998 Kennedy Street    71449    Indiana    2016-09-21 11:20:04.336175    2016-10-14 13:02:34.49994        \N    \N    \N    0    \N    \N    \N    \N    male
12110    Gonzalo    Satterfield    deshawn.nader@denesik.name    \N    Tonga    Louisatown    90685 Oberbrunner Lakes    46841    Louisiana    2016-09-26 04:51:50.976228    2016-10-14 13:02:34.504413        \N    \N    \N    0    \N    \N    \N    \N    female
12111    Erik    Altenwerth    arlo_pollich@abernathy.com    \N    Indonesia    Port Amaliaburgh    3283 McCullough Port    38423    Arizona    2016-08-14 17:25:11.954706    2016-10-14 13:02:34.508633        \N    \N    \N    0    \N    \N    \N    \N    male
12112    Onie    Strosin    norberto_spinka@hegmann.io    \N    Vanuatu    Binsland    7985 Octavia Skyway    89698    New York    2016-06-24 19:21:13.358884    2016-10-14 13:02:34.513387        \N    \N    \N    0    \N    \N    \N    \N    male
12113    Preston    Howe    kendrick@rennermorar.org    \N    Finland    New Destineeburgh    15764 Montana Neck    65405    Connecticut    2016-07-09 11:09:34.895456    2016-10-14 13:02:34.517766        \N    \N    \N    0    \N    \N    \N    \N    male
12114    Kim    Altenwerth    samanta_maggio@boyer.name    \N    Bahrain    Sidneybury    68768 Jerde Summit    57627-1676    North Carolina    2016-09-25 13:02:08.441476    2016-10-14 13:02:34.521823        \N    \N    \N    0    \N    \N    \N    \N    female
12115    Johann    Fahey    terrence@hoppe.net    \N    Guyana    Barrowsmouth    566 Boyer Dale    99721    Michigan    2016-08-30 23:22:36.72521    2016-10-14 13:02:34.525685        \N    \N    \N    0    \N    \N    \N    \N    male
12116    Margaretta    Klocko    herta.lehner@aufderhar.io    \N    Kenya    Port Electaborough    56756 Mante Overpass    15624-1127    Idaho    2016-09-06 15:02:07.989953    2016-10-14 13:02:34.530008        \N    \N    \N    0    \N    \N    \N    \N    female
12117    Lindsey    Pagac    maurine_crona@shanahan.net    \N    New Zealand    North Eulah    540 Wuckert Flat    58185-4832    Illinois    2016-09-07 06:53:41.941966    2016-10-14 13:02:34.534111        \N    \N    \N    0    \N    \N    \N    \N    male
12118    Ariel    Fritsch    thad@kreigermurray.io    \N    Malta    New Laurenmouth    96584 Keeley Street    84354-7825    Oklahoma    2016-08-12 14:10:44.18346    2016-10-14 13:02:34.53836        \N    \N    \N    0    \N    \N    \N    \N    male
12119    Archibald    Schamberger    maybell.jacobs@prosaccomayer.name    \N    Palestinian Territory    Reillyton    83975 Lueilwitz Point    70755-0385    Wisconsin    2016-08-19 06:05:57.67462    2016-10-14 13:02:34.543686        \N    \N    \N    0    \N    \N    \N    \N    male
12121    Jason    Stokes    reese.barton@lehnerschroeder.org    \N    Saint Helena    Reyland    92719 Gorczany Mews    58040    Michigan    2016-07-15 15:32:37.499307    2016-10-14 13:02:34.54775        \N    \N    \N    0    \N    \N    \N    \N    male
12122    Yasmeen    Hansen    pedro@denesikbrakus.name    \N    Equatorial Guinea    West Telly    719 Hodkiewicz Island    43233    Illinois    2016-09-23 05:22:03.679996    2016-10-14 13:02:34.552265        \N    \N    \N    0    \N    \N    \N    \N    female
12123    Suzanne    Witting    naomi_hayes@emardkuhn.net    \N    Egypt    Lake Millerport    8224 Amie Shore    27448-8625    West Virginia    2016-08-04 10:01:31.304967    2016-10-14 13:02:34.556325        \N    \N    \N    0    \N    \N    \N    \N    female
12124    Quinten    Pollich    kristian_bahringer@ondricka.info    \N    Antigua and Barbuda    Edisonhaven    700 Vergie Forges    61525-5681    Montana    2016-08-13 01:18:56.418004    2016-10-14 13:02:34.560235        \N    \N    \N    0    \N    \N    \N    \N    female
12125    Ernestine    Lubowitz    audra_keebler@waelchimertz.com    \N    Spain    Lake Codyland    728 Frami Prairie    89526-9141    Wisconsin    2016-08-18 18:05:00.943479    2016-10-14 13:02:34.564322        \N    \N    \N    0    \N    \N    \N    \N    female
12126    Tyrique    Botsford    laney_gleichner@rutherford.io    \N    South Africa    Hyattfort    5024 Schulist Islands    66412    Louisiana    2016-09-02 19:53:33.14395    2016-10-14 13:02:34.568449        \N    \N    \N    0    \N    \N    \N    \N    female
12127    Aurore    Koss    vita@oconnell.info    \N    Nauru    Lake Savanahmouth    9124 Bartell Gateway    68787-2138    Indiana    2016-08-27 20:28:28.726666    2016-10-14 13:02:34.572335        \N    \N    \N    0    \N    \N    \N    \N    female
12130    Micheal    Wolff    jordan@doyle.biz    \N    British Indian Ocean Territory (Chagos Archipelago)    South Cara    4479 Lula Club    56949    Maryland    2016-09-20 21:03:02.68612    2016-10-14 13:02:34.576359        \N    \N    \N    0    \N    \N    \N    \N    female
12131    Madilyn    Okuneva    taurean.crist@stehr.info    \N    Saint Pierre and Miquelon    Port Sydnimouth    585 Wendy Square    12299    Delaware    2016-08-13 04:07:39.750791    2016-10-14 13:02:34.580529        \N    \N    \N    0    \N    \N    \N    \N    male
12132    Shanelle    Parker    josephine@cruickshank.com    \N    El Salvador    Lake Elsiechester    94773 Flatley Springs    79730-0128    New York    2016-09-09 06:32:33.390167    2016-10-14 13:02:34.584434        \N    \N    \N    0    \N    \N    \N    \N    female
12133    Blaze    Watsica    caitlyn.gislason@bartoletti.io    \N    Nicaragua    Effertzland    89278 Ledner Valley    22632    Utah    2016-08-10 15:20:17.227034    2016-10-14 13:02:34.589154        \N    \N    \N    0    \N    \N    \N    \N    male
12134    Margarete    Wunsch    esperanza@barton.co    \N    Turkmenistan    Zoefort    80141 Dawn Mountain    97206    Minnesota    2016-09-17 11:11:32.581477    2016-10-14 13:02:34.593654        \N    \N    \N    0    \N    \N    \N    \N    male
12109    Jennie    Morissette    edmund.brown@berge.org    \N    Nauru    East Leatha    29175 Abbott Isle    87172-3510    Rhode Island    2016-09-02 12:02:30.074339    2016-10-14 13:02:34.597859        \N    \N    \N    0    \N    \N    \N    \N    female
12135    Donna    Little    retha_schowalter@ullrichthiel.info    \N    Romania    Kozeyton    660 Tromp Lodge    62138    New Jersey    2016-09-03 18:35:58.56213    2016-10-14 13:02:34.602145        \N    \N    \N    0    \N    \N    \N    \N    female
12136    Erich    Ankunding    dahlia.hermann@baileyroberts.net    \N    Fiji    Altenwerthshire    89656 Abbott Forge    87386-5251    Illinois    2016-08-11 03:15:56.271017    2016-10-14 13:02:34.606294        \N    \N    \N    0    \N    \N    \N    \N    male
12137    Gerson    Haley    karl.weimann@pouros.net    \N    Serbia    Christinemouth    74875 Mohr Overpass    82660    Oklahoma    2016-09-09 02:59:32.622957    2016-10-14 13:02:34.611761        \N    \N    \N    0    \N    \N    \N    \N    female
12139    Loyce    Rutherford    kevon_lynch@torprunte.co    \N    Northern Mariana Islands    West Vestatown    1659 Ibrahim Turnpike    63878    Maine    2016-07-24 18:23:18.68737    2016-10-14 13:02:34.616025        \N    \N    \N    0    \N    \N    \N    \N    male
12140    Francisca    Huels    giovanny_okuneva@cartwright.net    \N    Cocos (Keeling) Islands    Ritchieburgh    47354 Cartwright Summit    65031-4312    Pennsylvania    2016-08-29 01:38:10.836056    2016-10-14 13:02:34.620468        \N    \N    \N    0    \N    \N    \N    \N    male
12141    Hayden    Schuppe    wilhelmine@gottliebflatley.info    \N    Reunion    Lake Harryport    24935 Kiel Cape    52346-3765    Michigan    2016-07-12 22:27:09.049934    2016-10-14 13:02:34.624387        \N    \N    \N    0    \N    \N    \N    \N    female
19079    Petra    Nikolaus    dallin@marks.net    \N    Reunion    Kipmouth    9223 Estell Flat    18473-3142    Indiana    2016-07-11 04:13:47.819787    2016-10-14 13:02:34.629145        \N    \N    \N    0    \N    \N    \N    \N    male
10166    Dorthy    Bechtelar    jaquan@oreilly.biz    \N    Mongolia    North Elsa    2130 Wyman Views    64254    Nevada    2016-07-19 05:44:51.368985    2016-10-14 13:02:34.633536        \N    \N    \N    0    \N    \N    \N    \N    male
12142    Margaret    Torp    rowland_doyle@klein.biz    \N    Democratic People's Republic of Korea    New Brennan    5849 Isom Trafficway    26458    South Dakota    2016-08-30 23:55:12.864791    2016-10-14 13:02:34.637782        \N    \N    \N    0    \N    \N    \N    \N    female
12143    Garrison    Schulist    sidney.mclaughlin@larsonsimonis.org    \N    Bulgaria    Arvelfurt    8368 Ila Bridge    80601-3076    Iowa    2016-09-10 07:24:49.179922    2016-10-14 13:02:34.642457        \N    \N    \N    0    \N    \N    \N    \N    male
12144    Sheldon    Schinner    adele@kunde.info    \N    Democratic People's Republic of Korea    Naderhaven    4374 Marvin Terrace    70777    Alabama    2016-07-24 07:23:35.200922    2016-10-14 13:02:34.647142        \N    \N    \N    0    \N    \N    \N    \N    female
12145    Jordon    Kunze    augusta_dibbert@heel.org    \N    Poland    Kristinachester    121 Pauline Hollow    44838-2563    Massachusetts    2016-06-23 17:23:03.686454    2016-10-14 13:02:34.651901        \N    \N    \N    0    \N    \N    \N    \N    male
12146    Jana    Erdman    jalen@hagenes.net    \N    Rwanda    Stoltenbergburgh    959 Balistreri Island    27148    Virginia    2016-09-06 05:34:01.854779    2016-10-14 13:02:34.657611        \N    \N    \N    0    \N    \N    \N    \N    female
12147    Max    Zemlak    makenzie@haag.info    \N    Christmas Island    Kristown    63728 Otis Fields    97888-3977    Rhode Island    2016-08-08 03:50:49.369064    2016-10-14 13:02:34.661947        \N    \N    \N    0    \N    \N    \N    \N    female
12148    Harmony    Boehm    lorenzo@hilltamm.net    \N    Romania    Ibrahimbury    27087 Jaunita Hills    29501    Arkansas    2016-07-06 22:27:14.268829    2016-10-14 13:02:34.666138        \N    \N    \N    0    \N    \N    \N    \N    male
12149    Drew    Gorczany    nasir@wisokylebsack.net    \N    Central African Republic    Littleville    21710 Runolfsson Parkway    72819    Alaska    2016-08-15 16:04:21.088263    2016-10-14 13:02:34.670164        \N    \N    \N    0    \N    \N    \N    \N    male
12150    Rita    Hackett    noemie@ritchiedavis.co    \N    Libyan Arab Jamahiriya    Lindgrenchester    9682 Ryan Valley    76816    South Dakota    2016-07-16 22:53:32.155548    2016-10-14 13:02:34.674381        \N    \N    \N    0    \N    \N    \N    \N    male
12151    Devon    Vandervort    amely.reichert@schowalter.biz    \N    Benin    East Jeffbury    711 Henderson Shoal    45060    Michigan    2016-07-23 22:34:21.329642    2016-10-14 13:02:34.679158        \N    \N    \N    0    \N    \N    \N    \N    male
12152    Lazaro    Ziemann    paolo@nolanmckenzie.org    \N    Reunion    East Lula    54186 Dana Burgs    30697-5287    Idaho    2016-08-16 13:49:23.803997    2016-10-14 13:02:34.683969        \N    \N    \N    0    \N    \N    \N    \N    female
12153    Karolann    Ledner    eldora.smitham@carter.io    \N    Faroe Islands    South Marianna    64628 August Falls    89690-4395    Arkansas    2016-07-23 10:55:51.960533    2016-10-14 13:02:34.688949        \N    \N    \N    0    \N    \N    \N    \N    male
12154    Alanna    Osinski    lottie@mccullough.info    \N    Saint Kitts and Nevis    New Flavioport    106 Abshire Corners    68646-6415    Illinois    2016-07-07 05:52:16.441767    2016-10-14 13:02:34.693239        \N    \N    \N    0    \N    \N    \N    \N    male
12155    Irving    Hettinger    margarete.mueller@zboncak.com    \N    El Salvador    South Alexysport    790 VonRueden View    45312    New Mexico    2016-08-21 18:52:37.195118    2016-10-14 13:02:34.697526        \N    \N    \N    0    \N    \N    \N    \N    male
12156    Jordon    Nader    aaron@hamill.info    \N    Suriname    Cobyborough    359 Borer Track    55120-5904    Maine    2016-07-30 12:40:27.653876    2016-10-14 13:02:34.701788        \N    \N    \N    0    \N    \N    \N    \N    male
12157    Ottilie    Labadie    marcelo.barrows@pagac.com    \N    United Arab Emirates    Hanechester    3056 Labadie Crossroad    80966-0534    New Mexico    2016-09-16 15:02:43.464814    2016-10-14 13:02:34.705936        \N    \N    \N    0    \N    \N    \N    \N    male
12158    Marge    Schroeder    parker_bernhard@kirlin.name    \N    Ethiopia    South Theodorachester    28604 Schamberger Orchard    94783    California    2016-07-16 08:15:27.840175    2016-10-14 13:02:34.709967        \N    \N    \N    0    \N    \N    \N    \N    female
12159    Garret    Hettinger    coralie@flatleygutmann.com    \N    Taiwan    North Dasia    480 Padberg Drives    87558    New York    2016-06-25 23:52:01.147715    2016-10-14 13:02:34.714574        \N    \N    \N    0    \N    \N    \N    \N    male
12160    Reese    O'Kon    alexandrea@weinathartmann.info    \N    Swaziland    Yundtburgh    991 Autumn Crossroad    99144    Indiana    2016-08-08 10:41:46.186119    2016-10-14 13:02:34.719417        \N    \N    \N    0    \N    \N    \N    \N    female
12161    Nathanial    Turcotte    chloe@hoppe.org    \N    Taiwan    East Shawn    326 Hessel Extension    62181    Oklahoma    2016-09-12 21:28:36.541127    2016-10-14 13:02:34.723953        \N    \N    \N    0    \N    \N    \N    \N    male
12162    Elza    Keebler    kristy.purdy@bruen.io    \N    American Samoa    Port Thomas    76515 Alana Land    48761-1336    Colorado    2016-08-21 09:33:49.684624    2016-10-14 13:02:34.728599        \N    \N    \N    0    \N    \N    \N    \N    male
12163    Rosanna    Hettinger    janice.trantow@gleason.info    \N    Tonga    East Delaney    2164 Swaniawski Curve    54765    Maine    2016-08-25 19:26:34.949099    2016-10-14 13:02:34.733506        \N    \N    \N    0    \N    \N    \N    \N    female
12164    Luz    Boyle    verlie.batz@wintheiser.com    \N    Kyrgyz Republic    Schummborough    1635 Goldner Shoal    29525-6634    Vermont    2016-07-30 19:04:17.512305    2016-10-14 13:02:34.738054        \N    \N    \N    0    \N    \N    \N    \N    female
12165    Rocio    Kirlin    sienna.sawayn@bechtelar.net    \N    Christmas Island    Manuelfurt    1108 Thiel Pass    78159-1412    South Dakota    2016-09-05 11:51:21.02799    2016-10-14 13:02:34.74229        \N    \N    \N    0    \N    \N    \N    \N    female
12166    Garry    Hagenes    terence@donnelly.com    \N    New Caledonia    Walkerside    14418 Lemke Centers    42976    Washington    2016-09-02 00:42:14.259366    2016-10-14 13:02:34.746555        \N    \N    \N    0    \N    \N    \N    \N    male
12167    Weldon    Daugherty    rosalee.dickens@leffler.org    \N    Turkey    Lake Jabari    5953 Amya Roads    84448    South Carolina    2016-09-09 02:34:46.777842    2016-10-14 13:02:34.750849        \N    \N    \N    0    \N    \N    \N    \N    male
12168    Scot    Hirthe    valerie_tromp@becker.name    \N    Gabon    New Stoneland    237 Swaniawski Ports    84846-4496    Georgia    2016-08-17 22:03:00.366572    2016-10-14 13:02:34.755304        \N    \N    \N    0    \N    \N    \N    \N    male
12169    Adrienne    Adams    harold.jakubowski@altenwerth.co    \N    Malaysia    Lake Billyburgh    414 Jayda Shore    60858-0563    Texas    2016-09-01 06:35:56.294906    2016-10-14 13:02:34.759909        \N    \N    \N    0    \N    \N    \N    \N    female
12170    Seamus    Kshlerin    ashleigh@turcotte.net    \N    Cape Verde    South Cooperton    916 Parker Tunnel    65659-7677    Indiana    2016-09-20 23:29:13.429531    2016-10-14 13:02:34.764011        \N    \N    \N    0    \N    \N    \N    \N    male
12171    Lenna    Goldner    samara_brown@schaefer.name    \N    Mexico    Lake Santinaton    24471 McGlynn Mountain    85719-6258    North Carolina    2016-09-22 03:16:04.97876    2016-10-14 13:02:34.768352        \N    \N    \N    0    \N    \N    \N    \N    female
12172    Jeremie    Kihn    alverta@wolfrobel.info    \N    Vanuatu    Judgeland    742 Kertzmann Common    36234    Virginia    2016-08-28 15:46:52.688532    2016-10-14 13:02:34.772418        \N    \N    \N    0    \N    \N    \N    \N    female
12174    Brett    Fritsch    leda@klingabbott.org    \N    Zambia    South Norberthaven    766 Ryan Rapids    64078-2723    Rhode Island    2016-09-15 10:09:29.635681    2016-10-14 13:02:34.777237        \N    \N    \N    0    \N    \N    \N    \N    female
12175    Samantha    Predovic    jack@king.biz    \N    Belize    Beahanton    9797 Cruickshank Village    66882    Missouri    2016-09-29 04:09:03.721818    2016-10-14 13:02:34.782286        \N    \N    \N    0    \N    \N    \N    \N    female
12176    Nicole    Romaguera    rachel.jacobs@lind.io    \N    Rwanda    Kesslermouth    3051 Lemke Springs    59491    Wyoming    2016-08-04 10:39:55.249668    2016-10-14 13:02:34.794301        \N    \N    \N    0    \N    \N    \N    \N    male
12177    Yasmeen    Fritsch    carmel_lakin@larkin.co    \N    Kiribati    Nikolausville    99115 Keeling Course    12856    Hawaii    2016-06-24 00:46:00.915837    2016-10-14 13:02:34.816872        \N    \N    \N    0    \N    \N    \N    \N    female
12178    Ernie    Hettinger    aunta.johnston@oberbrunner.net    \N    Niger    Kevonshire    397 Schoen Port    29717    Nebraska    2016-08-24 17:15:06.680571    2016-10-14 13:02:34.823375        \N    \N    \N    0    \N    \N    \N    \N    male
12179    Enola    Swaniawski    janelle_parisian@fadelko.info    \N    Dominica    West Neoma    289 Violette Terrace    12559    Connecticut    2016-07-17 10:23:45.955038    2016-10-14 13:02:34.828086        \N    \N    \N    0    \N    \N    \N    \N    male
12180    Elise    Gutkowski    shirley.stanton@marks.net    \N    Republic of Korea    Lake Julius    147 Baumbach Estate    98452    Nevada    2016-09-22 14:27:17.911089    2016-10-14 13:02:34.832678        \N    \N    \N    0    \N    \N    \N    \N    female
12181    Brock    Howe    ryleigh_adams@witting.co    \N    Czech Republic    South Piperfort    259 O'Conner Harbor    49754-9282    Alaska    2016-09-10 23:55:49.40722    2016-10-14 13:02:34.837336        \N    \N    \N    0    \N    \N    \N    \N    male
12182    Ryley    Lemke    juana_lindgren@stamm.org    \N    Bolivia    Nicolasport    2269 Bo Mall    91746    Connecticut    2016-08-16 11:27:59.238427    2016-10-14 13:02:34.842045        \N    \N    \N    0    \N    \N    \N    \N    male
12183    Novella    Kshlerin    theresia.renner@kohler.org    \N    Western Sahara    South Helena    7040 VonRueden Trail    68045    Florida    2016-06-30 08:44:32.274867    2016-10-14 13:02:34.84606        \N    \N    \N    0    \N    \N    \N    \N    male
12184    General    Will    gage@ebertkutch.com    \N    Macao    Kayabury    73552 Esteban Courts    66868    Colorado    2016-07-22 00:29:23.336759    2016-10-14 13:02:34.850058        \N    \N    \N    0    \N    \N    \N    \N    female
12185    Delphine    Steuber    domenic_glover@crooksboyer.org    \N    Timor-Leste    New Deronside    73951 Wilderman Vista    90185    Colorado    2016-07-05 05:28:05.469376    2016-10-14 13:02:34.85466        \N    \N    \N    0    \N    \N    \N    \N    male
12186    Kale    Ferry    jacinthe_predovic@sporer.name    \N    Solomon Islands    Lake Mackborough    94623 Heidenreich Forges    79329-2818    Rhode Island    2016-08-16 14:25:25.164247    2016-10-14 13:02:34.858557        \N    \N    \N    0    \N    \N    \N    \N    male
12187    Anahi    Erdman    madonna@harris.org    \N    Malaysia    Myriamhaven    54432 Koss Circle    48288    Ohio    2016-07-30 01:25:37.116588    2016-10-14 13:02:34.862438        \N    \N    \N    0    \N    \N    \N    \N    female
12188    Karley    Stehr    tamia@boehm.net    \N    Chad    Port Mellie    14542 Christian Cape    82634    Oregon    2016-07-16 23:04:02.771772    2016-10-14 13:02:34.866356        \N    \N    \N    0    \N    \N    \N    \N    female
12189    Curtis    Ratke    dustin@mclaughlin.org    \N    Syrian Arab Republic    West Tamia    196 Karli Way    11647    Wisconsin    2016-07-09 17:27:32.803427    2016-10-14 13:02:34.870532        \N    \N    \N    0    \N    \N    \N    \N    male
12190    Merritt    McClure    destin.schneider@ledner.co    \N    Ecuador    Alanmouth    1154 Heathcote Wall    92876-1107    Kentucky    2016-07-24 14:58:20.998187    2016-10-14 13:02:34.874784        \N    \N    \N    0    \N    \N    \N    \N    female
12191    Chanelle    Reichert    saige.reichel@goldner.com    \N    Papua New Guinea    North Eliezerside    9877 Yasmine Curve    96628    Alaska    2016-08-16 15:55:37.078287    2016-10-14 13:02:34.878809        \N    \N    \N    0    \N    \N    \N    \N    male
12192    Nedra    Bayer    delphia@whitegulgowski.org    \N    Mali    Port Laura    2910 Willms Glen    17968    Nebraska    2016-09-17 18:54:54.968186    2016-10-14 13:02:34.882637        \N    \N    \N    0    \N    \N    \N    \N    male
12193    Alice    Stark    leone@lockman.net    \N    Mauritania    West Cletus    2401 Beverly Square    89417-1649    West Virginia    2016-07-16 00:38:21.639763    2016-10-14 13:02:34.886695        \N    \N    \N    0    \N    \N    \N    \N    female
12196    Elmore    Rolfson    opal_bernier@gorczanyweinat.org    \N    Dominican Republic    Cummingstown    8653 Jenkins Viaduct    17129    Kansas    2016-07-13 08:22:38.848918    2016-10-14 13:02:34.899263        \N    \N    \N    0    \N    \N    \N    \N    female
12197    Ari    Nicolas    olin@gusikowski.info    \N    Papua New Guinea    Christopheborough    4430 Terry Expressway    44336-8311    Missouri    2016-09-16 05:13:01.001689    2016-10-14 13:02:34.903577        \N    \N    \N    0    \N    \N    \N    \N    male
12198    Esteban    Bayer    estefania@buckridgegoodwin.net    \N    China    Miraclechester    83433 Purdy Roads    83525    North Dakota    2016-09-25 19:33:07.905925    2016-10-14 13:02:34.907505        \N    \N    \N    0    \N    \N    \N    \N    female
12199    Judy    Raynor    ignacio_ondricka@cummeratarutherford.org    \N    Yemen    Kaleighfurt    67001 Jacquelyn Way    36708    Texas    2016-07-21 13:33:53.442434    2016-10-14 13:02:34.911991        \N    \N    \N    0    \N    \N    \N    \N    male
12200    Marta    Nolan    leon@dickinsonmoen.info    \N    Romania    Selmerburgh    19268 Sipes Crest    25535    Michigan    2016-09-06 16:31:50.000599    2016-10-14 13:02:34.916326        \N    \N    \N    0    \N    \N    \N    \N    male
12201    Colten    Nolan    cale_kohler@feest.io    \N    India    East Christopshire    57057 Vivian Rapid    33120-8798    Michigan    2016-06-23 23:33:36.189012    2016-10-14 13:02:34.92061        \N    \N    \N    0    \N    \N    \N    \N    female
12202    Jakayla    Crooks    araceli.king@collins.co    \N    Somalia    Sabinabury    32107 Murphy Road    90478-1272    New Mexico    2016-07-01 20:00:35.577494    2016-10-14 13:02:34.924733        \N    \N    \N    0    \N    \N    \N    \N    male
12204    Burdette    Powlowski    elisa@quigley.co    \N    Pakistan    South Selmer    542 Auer Street    46909    Virginia    2016-07-10 00:03:48.196081    2016-10-14 13:02:34.929376        \N    \N    \N    0    \N    \N    \N    \N    male
12205    Lilyan    Hegmann    emilia@hickleheidenreich.co    \N    Estonia    Skileschester    285 Kelli Square    13634    Idaho    2016-06-25 23:48:31.201092    2016-10-14 13:02:34.933945        \N    \N    \N    0    \N    \N    \N    \N    male
12206    Kip    Wehner    talon@koch.info    \N    Marshall Islands    Ritchieport    4221 Block Ways    91940-2473    Florida    2016-09-09 14:05:30.279528    2016-10-14 13:02:34.937973        \N    \N    \N    0    \N    \N    \N    \N    female
12207    Raphael    Leannon    orlando@torphy.com    \N    Venezuela    East Kittymouth    20260 Jayce Parkway    59545-0588    Delaware    2016-09-15 00:42:52.575223    2016-10-14 13:02:34.942123        \N    \N    \N    0    \N    \N    \N    \N    female
12208    Carey    Altenwerth    zita_beahan@zulauf.co    \N    Barbados    Port Lillie    25280 Lynch Gateway    44608    California    2016-08-30 02:55:41.178833    2016-10-14 13:02:34.945954        \N    \N    \N    0    \N    \N    \N    \N    female
12209    Ollie    Jenkins    rhianna@hyatthamill.co    \N    Tanzania    Port Odessamouth    643 Jamal Mountains    16275    Oregon    2016-07-11 09:25:13.562941    2016-10-14 13:02:34.950471        \N    \N    \N    0    \N    \N    \N    \N    female
12210    Brady    Tillman    maritza.mclaughlin@rueckerabshire.com    \N    Martinique    Weissnatberg    87030 Kennith Ranch    82036-7263    Iowa    2016-08-06 19:00:38.365201    2016-10-14 13:02:34.954609        \N    \N    \N    0    \N    \N    \N    \N    female
12211    Tina    Bins    demarco@marvin.info    \N    Romania    New Nicholeville    2895 Ruthe Pines    49362    Ohio    2016-07-21 22:22:04.567145    2016-10-14 13:02:34.958698        \N    \N    \N    0    \N    \N    \N    \N    male
12212    Narciso    Hodkiewicz    alan@medhurst.io    \N    Switzerland    East Turner    20353 Josie Trail    23752-2951    Illinois    2016-07-07 23:53:23.605009    2016-10-14 13:02:34.962592        \N    \N    \N    0    \N    \N    \N    \N    male
12213    Lynn    Bailey    mozell_lindgren@tillman.io    \N    Kenya    East Rosaville    25188 Alberto Extension    53658    Utah    2016-06-23 03:46:24.135831    2016-10-14 13:02:34.966602        \N    \N    \N    0    \N    \N    \N    \N    female
12214    Mack    King    orpha@deckow.biz    \N    Switzerland    Port Lewisbury    28137 McLaughlin Village    98957    Minnesota    2016-07-02 20:21:36.925116    2016-10-14 13:02:34.970667        \N    \N    \N    0    \N    \N    \N    \N    male
12215    Nelle    Conn    jamal@hegmann.org    \N    Montenegro    West Janet    8885 Pedro Harbor    31221    Hawaii    2016-09-01 23:12:30.320007    2016-10-14 13:02:34.97616        \N    \N    \N    0    \N    \N    \N    \N    female
12216    Sylvester    Kuhn    isaac.lang@okon.org    \N    Puerto Rico    Noblebury    8574 Jacobson Junctions    30119-9671    New York    2016-07-07 14:52:29.570516    2016-10-14 13:02:34.980139        \N    \N    \N    0    \N    \N    \N    \N    female
12217    Amira    Schumm    colin@langworth.org    \N    Libyan Arab Jamahiriya    East Shanymouth    438 Wuckert Turnpike    72733-0078    North Dakota    2016-07-01 19:02:32.961987    2016-10-14 13:02:34.984464        \N    \N    \N    0    \N    \N    \N    \N    female
12218    Luz    Rowe    madisen_emard@eichmann.name    \N    Guinea-Bissau    Rickchester    354 Ebert Freeway    56147    Michigan    2016-09-09 20:35:21.467401    2016-10-14 13:02:34.989133        \N    \N    \N    0    \N    \N    \N    \N    female
12219    Orlando    Will    wilton.dare@cristtrantow.info    \N    Christmas Island    Faustinoborough    845 Hamill Islands    62732    Mississippi    2016-07-18 09:50:38.961396    2016-10-14 13:02:34.993146        \N    \N    \N    0    \N    \N    \N    \N    female
12220    Leta    Kshlerin    roy@creminzulauf.name    \N    Equatorial Guinea    Lake Ethelynhaven    9322 Blanda Cliffs    74892    Massachusetts    2016-07-09 14:04:44.441479    2016-10-14 13:02:34.997078        \N    \N    \N    0    \N    \N    \N    \N    female
12222    Jazmyne    Hoeger    maegan.witting@wildermanhermiston.info    \N    Iceland    North Estrellaborough    8452 Ramon Fork    57589    Indiana    2016-07-06 11:48:04.3655    2016-10-14 13:02:35.001201        \N    \N    \N    0    \N    \N    \N    \N    female
12224    Kaleb    Huels    meghan_rice@wunsch.name    \N    Armenia    Lake Therontown    323 Darron Lodge    27238-3644    Vermont    2016-08-05 01:48:31.587448    2016-10-14 13:02:35.005399        \N    \N    \N    0    \N    \N    \N    \N    male
12225    Nellie    Effertz    daphney_grady@huel.com    \N    Palau    East Tressa    1312 Pfannerstill Ferry    55935    North Dakota    2016-07-26 19:50:25.067272    2016-10-14 13:02:35.009263        \N    \N    \N    0    \N    \N    \N    \N    female
12226    Juana    Kulas    marcia@krajcik.com    \N    Guatemala    Goyettestad    10796 Mayert Island    17769-4078    New York    2016-08-31 23:10:08.741333    2016-10-14 13:02:35.013228        \N    \N    \N    0    \N    \N    \N    \N    female
12227    Darron    Abshire    ro@rosenbaum.net    \N    Zambia    Denesikside    6099 Leopold Crossroad    17889-4141    Wyoming    2016-07-06 06:07:43.538091    2016-10-14 13:02:35.017377        \N    \N    \N    0    \N    \N    \N    \N    male
12228    Kris    Effertz    susie@ullrichwiegand.co    \N    Italy    Stehrchester    13879 Arlene Forest    62489-8161    New Jersey    2016-07-23 22:29:14.824558    2016-10-14 13:02:35.021529        \N    \N    \N    0    \N    \N    \N    \N    male
12229    Walton    Doyle    stanford.heathcote@handrice.org    \N    Thailand    Emilianoton    184 Kuphal River    24161    Pennsylvania    2016-07-22 19:16:46.746755    2016-10-14 13:02:35.026197        \N    \N    \N    0    \N    \N    \N    \N    female
12231    Violet    Medhurst    lonie.rolfson@bashiriancummerata.biz    \N    Micronesia    Delfinaberg    86859 Leffler Camp    11585-9807    Illinois    2016-08-16 09:41:49.339433    2016-10-14 13:02:35.030362        \N    \N    \N    0    \N    \N    \N    \N    male
12233    Murphy    Jacobs    samantha_marvin@leuschke.io    \N    Dominica    South Davebury    3670 Marks Valleys    15184    Arkansas    2016-08-10 19:52:13.236527    2016-10-14 13:02:35.034245        \N    \N    \N    0    \N    \N    \N    \N    female
12234    Chandler    Parisian    jacquelyn.fadel@jenkins.biz    \N    Congo    Alenestad    2893 Javonte Meadows    63850-6304    Iowa    2016-09-16 20:08:34.599653    2016-10-14 13:02:35.038117        \N    \N    \N    0    \N    \N    \N    \N    male
12235    Audrey    Blanda    clara.johns@mckenziesenger.name    \N    Dominica    Ziemeland    9496 Jast Court    89997-8192    New Jersey    2016-09-03 03:47:45.506577    2016-10-14 13:02:35.044692        \N    \N    \N    0    \N    \N    \N    \N    female
12236    Yvette    Stokes    warren@smithwest.net    \N    Micronesia    Araceliland    9016 Walsh Radial    68311    Montana    2016-09-09 12:36:24.066884    2016-10-14 13:02:35.049142        \N    \N    \N    0    \N    \N    \N    \N    female
12237    Floyd    Dare    denis_ruel@daughertystiedemann.io    \N    Christmas Island    Port Jeffereyview    318 Destany Curve    81598    Wyoming    2016-06-28 06:15:47.155827    2016-10-14 13:02:35.053194        \N    \N    \N    0    \N    \N    \N    \N    female
12238    Deron    Kshlerin    sabina_wunsch@ankunding.net    \N    Gambia    Vicentetown    149 Kenneth Corners    82203    Texas    2016-07-16 14:26:20.298077    2016-10-14 13:02:35.057382        \N    \N    \N    0    \N    \N    \N    \N    female
12239    Jesus    Eichmann    holden.mccullough@gibsongreen.com    \N    Nepal    East Peytonview    7549 Adriel Run    34636    Maryland    2016-07-24 23:34:21.729831    2016-10-14 13:02:35.061814        \N    \N    \N    0    \N    \N    \N    \N    male
12240    Travis    Huel    daniella_beahan@hodkiewiczschuster.biz    \N    United States of America    East Janis    1966 Jenkins Fords    96251-6104    Illinois    2016-09-21 05:45:10.954595    2016-10-14 13:02:35.065962        \N    \N    \N    0    \N    \N    \N    \N    female
12241    Madyson    Nienow    sheridan@bergnaum.biz    \N    Argentina    Lake Emerald    78355 Senger Harbor    78725    West Virginia    2016-07-01 13:37:24.370145    2016-10-14 13:02:35.070088        \N    \N    \N    0    \N    \N    \N    \N    female
12242    Brandy    Parker    euna.price@jerde.info    \N    Solomon Islands    South Mac    5485 Mia Cove    81766-9595    Arizona    2016-09-11 12:35:58.857467    2016-10-14 13:02:35.074023        \N    \N    \N    0    \N    \N    \N    \N    male
12243    Elinor    Emmerich    estrella@kihnzemlak.org    \N    Congo    Schinnerfurt    5236 Turner Knolls    46138-3453    Indiana    2016-07-22 03:58:49.16259    2016-10-14 13:02:35.077877        \N    \N    \N    0    \N    \N    \N    \N    female
12244    Armani    Erdman    vaughn@rippin.info    \N    Equatorial Guinea    West Nikki    9859 Kutch Lights    53754-6476    Idaho    2016-08-31 09:07:24.806936    2016-10-14 13:02:35.081882        \N    \N    \N    0    \N    \N    \N    \N    female
12245    Shanna    Hills    elton@beertillman.org    \N    Andorra    North Aureliostad    4414 Margot Road    92736    Colorado    2016-08-09 12:27:38.922133    2016-10-14 13:02:35.085767        \N    \N    \N    0    \N    \N    \N    \N    male
12246    Carolyne    Leannon    edgardo.emard@schulistleuschke.com    \N    Democratic People's Republic of Korea    East Marisa    207 Claude Village    68300    Colorado    2016-07-04 03:16:10.327353    2016-10-14 13:02:35.089634        \N    \N    \N    0    \N    \N    \N    \N    female
12247    Victoria    Mante    hester_buckridge@robel.io    \N    Syrian Arab Republic    Santoshaven    5099 Hayes Parkways    30543-6830    Maryland    2016-08-27 11:40:15.513134    2016-10-14 13:02:35.093511        \N    \N    \N    0    \N    \N    \N    \N    female
12248    Rowena    Blick    richmond@bergstrom.net    \N    Gibraltar    East Reedbury    4055 Marianne Inlet    23551-5295    Delaware    2016-07-07 04:41:38.506324    2016-10-14 13:02:35.097477        \N    \N    \N    0    \N    \N    \N    \N    male
12249    Clementina    Upton    corrine@runolfsdottiradams.biz    \N    Somalia    Port Sammymouth    5078 Auer Highway    62160-3486    Iowa    2016-08-14 14:38:45.478653    2016-10-14 13:02:35.101479        \N    \N    \N    0    \N    \N    \N    \N    male
12250    Opal    Konopelski    mallory_rowe@jacobistracke.org    \N    Egypt    Nelsontown    76162 Meaghan Groves    42637-3130    Idaho    2016-08-20 12:50:09.5097    2016-10-14 13:02:35.105523        \N    \N    \N    0    \N    \N    \N    \N    male
12251    Nicolette    Hills    winona@ward.io    \N    Qatar    North Xandermouth    41813 Johnny Roads    48072-4789    Hawaii    2016-09-03 09:49:40.043034    2016-10-14 13:02:35.10939        \N    \N    \N    0    \N    \N    \N    \N    male
12252    Vern    Rogahn    adrienne@medhurst.name    \N    Macao    New Frankie    705 Nolan Lane    73904-3542    Maryland    2016-07-26 15:20:46.603154    2016-10-14 13:02:35.113281        \N    \N    \N    0    \N    \N    \N    \N    female
12253    Mia    Bode    marcella@yost.biz    \N    Rwanda    Vincentside    87757 Heidi Squares    40246-9748    Utah    2016-09-21 15:50:15.612575    2016-10-14 13:02:35.117094        \N    \N    \N    0    \N    \N    \N    \N    female
12254    Shane    Kohler    jaquelin@olsonpfeffer.info    \N    Virgin Islands, U.S.    Rosannaville    13538 Okuneva Club    31415-3102    Delaware    2016-08-21 10:59:50.70937    2016-10-14 13:02:35.120927        \N    \N    \N    0    \N    \N    \N    \N    female
12255    Taylor    Gorczany    niko@powlowskimacgyver.io    \N    Malaysia    New Christachester    51145 O'Hara Knolls    76732-1534    Alaska    2016-09-09 01:55:49.532884    2016-10-14 13:02:35.124852        \N    \N    \N    0    \N    \N    \N    \N    female
12256    Kathryn    Brakus    harmon@davis.biz    \N    Israel    Port Nedfort    891 Mollie Estate    65531-4008    Massachusetts    2016-07-22 22:06:33.140457    2016-10-14 13:02:35.128813        \N    \N    \N    0    \N    \N    \N    \N    male
12257    Elian    Medhurst    elody@mitchellmitchell.biz    \N    France    Kirstinmouth    5823 Rogahn Greens    77393    Pennsylvania    2016-07-23 15:08:13.044728    2016-10-14 13:02:35.132758        \N    \N    \N    0    \N    \N    \N    \N    male
12258    Jazmyne    Rath    leone_mosciski@walker.biz    \N    Pitcairn Islands    Yundtville    1963 Hagenes Via    93796-7701    Florida    2016-09-29 02:27:27.977099    2016-10-14 13:02:35.136525        \N    \N    \N    0    \N    \N    \N    \N    male
12259    Macey    Kuphal    justine@bahringer.info    \N    France    East Westonhaven    8651 Crawford Lane    86848-9614    Indiana    2016-07-17 08:46:22.822193    2016-10-14 13:02:35.140367        \N    \N    \N    0    \N    \N    \N    \N    female
12260    Cassandra    Kris    harvey@towne.org    \N    South Georgia and the South Sandwich Islands    Deondrehaven    6415 Johns Walk    26941    Maryland    2016-09-19 17:33:49.603747    2016-10-14 13:02:35.144339        \N    \N    \N    0    \N    \N    \N    \N    female
12261    Genesis    Bosco    janae_kunze@koerdman.io    \N    Puerto Rico    Darionmouth    4536 Shaun Harbor    51339    New Jersey    2016-09-02 00:14:46.366359    2016-10-14 13:02:35.14832        \N    \N    \N    0    \N    \N    \N    \N    male
12262    Kian    Smith    curt_maggio@roob.name    \N    Dominica    Lake Ora    33563 Parker Drive    52481    Oregon    2016-08-02 16:16:37.037986    2016-10-14 13:02:35.152387        \N    \N    \N    0    \N    \N    \N    \N    male
12263    Garret    Grady    dora_weber@kihn.name    \N    Reunion    O'Konside    84749 Abel Forges    66007    Maine    2016-09-18 01:21:32.86124    2016-10-14 13:02:35.156397        \N    \N    \N    0    \N    \N    \N    \N    female
12264    Ali    Deckow    kristina_oconnell@willmskovacek.info    \N    Canada    West Olafstad    44476 Hessel Wells    31093    Montana    2016-09-15 06:53:51.432552    2016-10-14 13:02:35.160678        \N    \N    \N    0    \N    \N    \N    \N    male
12265    Vernon    Reynolds    alphonso@mitchell.com    \N    Zambia    Gleichnermouth    57292 Hiram Mountain    90029-9843    Montana    2016-07-14 07:47:20.424049    2016-10-14 13:02:35.165342        \N    \N    \N    0    \N    \N    \N    \N    male
12266    Alfreda    Crist    verla@satterfield.net    \N    Mauritius    Schoenfurt    527 Lexie Valley    52589    Colorado    2016-07-04 06:11:38.259075    2016-10-14 13:02:35.170421        \N    \N    \N    0    \N    \N    \N    \N    male
12267    Vito    Dickinson    alphonso_greenfelder@lemkeschneider.io    \N    Burkina Faso    Susanatown    95629 Stamm Dam    14779    Arizona    2016-08-13 05:31:25.643759    2016-10-14 13:02:35.175148        \N    \N    \N    0    \N    \N    \N    \N    female
12268    Houston    Goodwin    breanna_cummerata@schowalterkutch.biz    \N    Mali    Howardtown    6540 Tad Field    91276    Montana    2016-09-02 01:19:34.492584    2016-10-14 13:02:35.179707        \N    \N    \N    0    \N    \N    \N    \N    male
12269    Monserrate    Abbott    jon@fayrohan.info    \N    Niger    New Herbert    64740 Delmer Stream    87503-9903    Colorado    2016-07-11 22:29:52.669059    2016-10-14 13:02:35.183994        \N    \N    \N    0    \N    \N    \N    \N    male
12270    Violet    Collier    fay@smitham.biz    \N    Gabon    North Marlonton    6302 Fahey Spur    97228-5072    Maine    2016-08-04 05:18:23.91072    2016-10-14 13:02:35.187858        \N    \N    \N    0    \N    \N    \N    \N    female
12271    Floyd    Gorczany    ike@welchbins.biz    \N    Canada    Heathcoteberg    614 Stehr Dale    12210-1411    Connecticut    2016-08-05 06:53:27.726265    2016-10-14 13:02:35.195763        \N    \N    \N    0    \N    \N    \N    \N    male
12272    Grant    Beatty    martin@wyman.com    \N    Madagascar    North Todstad    5231 Parker Fort    64264-8690    New Jersey    2016-08-02 08:08:01.783944    2016-10-14 13:02:35.199541        \N    \N    \N    0    \N    \N    \N    \N    male
12273    Gonzalo    Lehner    reece_quigley@howe.co    \N    Albania    Piercebury    68326 Herman Corners    36400-4798    New Jersey    2016-07-09 13:26:21.029109    2016-10-14 13:02:35.203624        \N    \N    \N    0    \N    \N    \N    \N    female
12274    Estefania    Dickinson    aaliyah@townemoriette.co    \N    Tokelau    Macejkovicland    5236 Marcia Causeway    86770-5955    Georgia    2016-06-25 09:19:12.879245    2016-10-14 13:02:35.208123        \N    \N    \N    0    \N    \N    \N    \N    male
12275    Melvina    Doyle    brycen.bergnaum@vandervortdicki.name    \N    Saint Pierre and Miquelon    West Joanymouth    108 Kshlerin Way    24839    Colorado    2016-07-26 10:40:46.846775    2016-10-14 13:02:35.212599        \N    \N    \N    0    \N    \N    \N    \N    male
12276    Ford    Fisher    marquise@oconnell.biz    \N    Iraq    South Michele    240 Labadie Shore    82809-5345    Massachusetts    2016-07-25 03:43:49.388519    2016-10-14 13:02:35.217155        \N    \N    \N    0    \N    \N    \N    \N    male
12277    Colleen    Oberbrunner    erick_beatty@miller.com    \N    Kazakhstan    East Daphneyland    32246 Kassulke Center    36491    Arizona    2016-09-10 09:02:50.044863    2016-10-14 13:02:35.221865        \N    \N    \N    0    \N    \N    \N    \N    male
12278    Shayna    Flatley    lily_rohan@kuhnschuppe.com    \N    Angola    South Cecil    270 Miller Mountain    22843-6229    Indiana    2016-08-21 10:21:47.433622    2016-10-14 13:02:35.226401        \N    \N    \N    0    \N    \N    \N    \N    male
12279    Declan    Hegmann    noemy@parker.biz    \N    Saint Lucia    Kieranstad    2023 Rick Loop    41370-4860    Georgia    2016-06-23 17:36:15.909986    2016-10-14 13:02:35.231046        \N    \N    \N    0    \N    \N    \N    \N    female
12280    Selmer    Marks    alexys.kertzmann@schuppebalistreri.net    \N    Hong Kong    New Brooklyn    827 Huels Circles    34463-1101    Rhode Island    2016-09-01 08:56:26.100472    2016-10-14 13:02:35.235818        \N    \N    \N    0    \N    \N    \N    \N    male
12281    Guillermo    Lakin    roscoe_reichert@moentromp.com    \N    Iraq    Christianamouth    3948 Hayes Keys    36377-0905    Texas    2016-07-22 04:34:41.207917    2016-10-14 13:02:35.240782        \N    \N    \N    0    \N    \N    \N    \N    female
12282    Destany    Hartmann    kayla@hegmann.com    \N    Fiji    Ramonaburgh    9212 Ahmad Land    16689-3864    Florida    2016-08-04 06:28:23.746704    2016-10-14 13:02:35.245569        \N    \N    \N    0    \N    \N    \N    \N    male
12283    Devante    Gerhold    arvilla@schamberger.info    \N    Gabon    Magnolialand    42841 Alexane Canyon    23430-1678    Wisconsin    2016-06-29 06:17:33.651265    2016-10-14 13:02:35.250353        \N    \N    \N    0    \N    \N    \N    \N    female
12284    Brooks    Wolf    novella@spinka.biz    \N    Andorra    Port Gunnar    7736 Carmen Street    23890-3822    Oregon    2016-07-16 09:32:38.890833    2016-10-14 13:02:35.254648        \N    \N    \N    0    \N    \N    \N    \N    male
12285    Judge    Moore    lucinda@frami.info    \N    Kiribati    North Lydia    1040 Chandler Roads    51904    Vermont    2016-07-01 06:15:37.73236    2016-10-14 13:02:35.259307        \N    \N    \N    0    \N    \N    \N    \N    male
12286    Zachariah    Bechtelar    aron@murray.name    \N    United States of America    McClureport    99819 Bethany Extension    86235    Virginia    2016-07-23 00:48:34.217754    2016-10-14 13:02:35.263934        \N    \N    \N    0    \N    \N    \N    \N    female
12287    Armando    Fadel    river@daniel.info    \N    Hong Kong    Annaliseshire    712 Hyatt Club    41560-9675    Indiana    2016-07-19 02:14:39.955485    2016-10-14 13:02:35.268232        \N    \N    \N    0    \N    \N    \N    \N    female
12288    Bryon    Nicolas    genevieve.volkman@boganrowe.info    \N    Vietnam    West Drewport    48210 Heathcote Tunnel    27509-6951    Indiana    2016-06-26 12:48:01.180437    2016-10-14 13:02:35.272105        \N    \N    \N    0    \N    \N    \N    \N    female
12289    Meta    Langworth    jamarcus@adams.name    \N    Niger    Port Kiana    98563 Pollich Manor    37433-2582    Ohio    2016-07-13 08:14:45.95472    2016-10-14 13:02:35.276014        \N    \N    \N    0    \N    \N    \N    \N    male
12290    Charlene    Grady    marion_simonis@schiller.org    \N    Norway    East Kiara    1216 Terry Ville    36941    Kentucky    2016-07-11 22:56:07.795715    2016-10-14 13:02:35.279939        \N    \N    \N    0    \N    \N    \N    \N    male
12291    Eusebio    Raynor    ora@hilpert.info    \N    Cuba    Durganshire    937 Arielle Wells    13992-7507    Maine    2016-08-13 17:56:02.187515    2016-10-14 13:02:35.283847        \N    \N    \N    0    \N    \N    \N    \N    female
12293    Rosemarie    Gorczany    woodrow@herman.net    \N    Falkland Islands (Malvinas)    Lake Randi    525 Adams Knoll    12983    California    2016-07-15 14:14:41.293668    2016-10-14 13:02:35.287649        \N    \N    \N    0    \N    \N    \N    \N    male
12294    Kristian    Corkery    nicole_runte@monahan.co    \N    Tuvalu    Reedbury    304 Domingo Square    93228    Connecticut    2016-09-25 17:13:21.01284    2016-10-14 13:02:35.291689        \N    \N    \N    0    \N    \N    \N    \N    male
12295    Ozella    Stracke    rosetta_kuvalis@konopelski.org    \N    Bangladesh    Kaelashire    83739 Ruecker Courts    55121-4158    South Carolina    2016-09-10 11:24:33.373834    2016-10-14 13:02:35.296166        \N    \N    \N    0    \N    \N    \N    \N    male
12296    Kattie    Reynolds    evangeline@robel.co    \N    Bahrain    Greenburgh    905 Filiberto Pass    38932-0256    North Dakota    2016-09-05 00:23:36.703642    2016-10-14 13:02:35.300368        \N    \N    \N    0    \N    \N    \N    \N    female
12297    Beverly    Runolfsdottir    kayley@murazikromaguera.org    \N    Greenland    North Dangeloton    558 Mertz Ville    93480    Louisiana    2016-09-28 12:24:41.643433    2016-10-14 13:02:35.304952        \N    \N    \N    0    \N    \N    \N    \N    male
12298    Rasheed    Hand    jerald_wolff@kutchpouros.co    \N    Liberia    Camrynton    1756 Desmond Port    95095-8842    Rhode Island    2016-09-17 12:35:25.510437    2016-10-14 13:02:35.309628        \N    \N    \N    0    \N    \N    \N    \N    female
12299    Cristina    Dicki    myron_sanford@pricehegmann.io    \N    Burkina Faso    Rosafurt    399 Porter Estate    46500-1411    Iowa    2016-09-17 09:02:21.24971    2016-10-14 13:02:35.314279        \N    \N    \N    0    \N    \N    \N    \N    female
12300    Gayle    Koepp    anika@lesch.name    \N    Lebanon    Leannonborough    62358 O'Kon Centers    96618-5871    Hawaii    2016-08-07 18:50:07.404788    2016-10-14 13:02:35.31867        \N    \N    \N    0    \N    \N    \N    \N    female
12301    Johnnie    Mueller    marjolaine@wolfstrosin.info    \N    Japan    South Tessie    74042 Israel Street    94987-9044    Kansas    2016-09-29 02:43:57.792611    2016-10-14 13:02:35.323307        \N    \N    \N    0    \N    \N    \N    \N    female
12302    Enrico    Pouros    skye@mueller.biz    \N    Pitcairn Islands    South Leannborough    8187 Lamar Locks    93560    Missouri    2016-07-04 19:12:53.558343    2016-10-14 13:02:35.327586        \N    \N    \N    0    \N    \N    \N    \N    male
12303    Liana    Franecki    benton.raynor@ricelind.net    \N    Costa Rica    Janiyaberg    59661 Thiel Wall    27282    Massachusetts    2016-08-20 01:31:50.700064    2016-10-14 13:02:35.331506        \N    \N    \N    0    \N    \N    \N    \N    male
12304    Lucienne    Jones    coty@keeblerfahey.biz    \N    Canada    Pourosport    6922 Clay Ways    26457    Idaho    2016-09-19 03:14:43.681213    2016-10-14 13:02:35.336041        \N    \N    \N    0    \N    \N    \N    \N    female
12305    Vicky    Nader    miguel_metz@lindgren.net    \N    Benin    West Anjali    197 Ritchie Plains    83335-3721    Wisconsin    2016-07-10 22:07:57.839951    2016-10-14 13:02:35.339958        \N    \N    \N    0    \N    \N    \N    \N    male
12306    Stefan    Bins    emilio@gutmann.biz    \N    Russian Federation    New Sedrickborough    28783 Destini Forges    48419-3885    Delaware    2016-09-27 21:29:10.848326    2016-10-14 13:02:35.344082        \N    \N    \N    0    \N    \N    \N    \N    male
12307    Matilde    Moore    marianna_casper@trantow.biz    \N    Bosnia and Herzegovina    Shanahanchester    864 Turcotte Cliff    21938-2342    Ohio    2016-09-24 08:17:08.273241    2016-10-14 13:02:35.348246        \N    \N    \N    0    \N    \N    \N    \N    female
12308    Candido    Stiedemann    cleora@kovacek.io    \N    Falkland Islands (Malvinas)    Keeleystad    1154 Bergstrom Junctions    31861    Kansas    2016-09-13 03:07:19.573838    2016-10-14 13:02:35.352282        \N    \N    \N    0    \N    \N    \N    \N    male
12309    Humberto    Bradtke    jarrett.jast@eichmann.co    \N    South Georgia and the South Sandwich Islands    Bernierville    5208 Garrison Gardens    47533    Michigan    2016-09-07 10:36:33.924719    2016-10-14 13:02:35.35641        \N    \N    \N    0    \N    \N    \N    \N    male
12310    Sylvan    Nikolaus    paolo@simonis.co    \N    Serbia    Millermouth    5660 Chester View    99610-5357    Arizona    2016-08-06 13:59:13.011653    2016-10-14 13:02:35.360414        \N    \N    \N    0    \N    \N    \N    \N    female
12311    Maribel    Herman    eric@murphyfeil.co    \N    Finland    Nicolasberg    342 Odell Greens    94624-6056    New Mexico    2016-08-01 11:28:27.752828    2016-10-14 13:02:35.364403        \N    \N    \N    0    \N    \N    \N    \N    female
12312    Ferne    Gleason    baron_smith@kemmer.biz    \N    Papua New Guinea    Lake Hattiestad    71813 McClure Alley    70019-7797    Colorado    2016-07-05 13:16:06.983841    2016-10-14 13:02:35.368815        \N    \N    \N    0    \N    \N    \N    \N    female
12313    Malika    Von    kendra.gerlach@hamill.biz    \N    Panama    Connmouth    32366 Renner Lakes    13455    California    2016-08-22 13:31:31.278145    2016-10-14 13:02:35.373152        \N    \N    \N    0    \N    \N    \N    \N    male
12314    Amari    Heller    jarvis@beahan.com    \N    United States Minor Outlying Islands    Mikaylafort    15534 Carter Vista    17405-9964    Louisiana    2016-09-04 05:53:12.589169    2016-10-14 13:02:35.377065        \N    \N    \N    0    \N    \N    \N    \N    male
12315    Daniela    Bechtelar    orlo@champlingoyette.net    \N    Costa Rica    Boscotown    2567 Schowalter Brook    71935-1297    Virginia    2016-07-12 16:28:11.778658    2016-10-14 13:02:35.380991        \N    \N    \N    0    \N    \N    \N    \N    male
12316    Madge    Hilll    shayna.mertz@baileyupton.biz    \N    Moldova    South Isadore    69497 Sigurd Extension    41207    Missouri    2016-08-13 20:52:15.615998    2016-10-14 13:02:35.385071        \N    \N    \N    0    \N    \N    \N    \N    male
12317    Jacques    Goldner    felix@kaulke.com    \N    Russian Federation    Shyannshire    3076 Kuphal Corner    17162    Oregon    2016-07-24 07:00:20.825824    2016-10-14 13:02:35.389003        \N    \N    \N    0    \N    \N    \N    \N    female
12318    Morris    DuBuque    clementine_welch@rolfson.io    \N    Christmas Island    South Merlside    7320 Schultz Dale    71986-9589    Michigan    2016-09-12 15:25:01.6028    2016-10-14 13:02:35.393168        \N    \N    \N    0    \N    \N    \N    \N    female
12320    Emile    Stiedemann    willy_grimes@mccullough.info    \N    India    South Daisha    1683 Beahan Road    78594    Texas    2016-08-14 15:56:15.777059    2016-10-14 13:02:35.397196        \N    \N    \N    0    \N    \N    \N    \N    female
12321    Halie    Bailey    herbert@hoegermraz.io    \N    Greece    Keeblerbury    483 Lavinia Fords    98151-0085    Wyoming    2016-09-12 20:22:05.280866    2016-10-14 13:02:35.401089        \N    \N    \N    0    \N    \N    \N    \N    female
12322    Juliana    Cummings    hellen@gleichnerferry.net    \N    Italy    West Monica    285 Keeling Plaza    30358    North Carolina    2016-09-05 08:56:25.579401    2016-10-14 13:02:35.405073        \N    \N    \N    0    \N    \N    \N    \N    male
12324    Lonny    Orn    bret.witting@farrellhaag.org    \N    Seychelles    East Mariano    87688 Borer Lock    41163-8626    Georgia    2016-08-18 10:47:13.837192    2016-10-14 13:02:35.409152        \N    \N    \N    0    \N    \N    \N    \N    female
12325    Paxton    Larkin    saige_gusikowski@hodkiewicz.co    \N    Italy    West Obieside    9377 Daugherty Gardens    90955-2005    New Mexico    2016-08-05 09:08:26.715432    2016-10-14 13:02:35.414301        \N    \N    \N    0    \N    \N    \N    \N    female
12326    Henriette    Gerlach    madelyn_robel@gorczanywolf.info    \N    Ukraine    New Lilianaview    298 Gillian Gateway    34214    Colorado    2016-09-24 19:24:55.425959    2016-10-14 13:02:35.420039        \N    \N    \N    0    \N    \N    \N    \N    male
12327    Mertie    Balistreri    lilla.walter@friesenrippin.io    \N    Uzbekistan    Lake Adityahaven    1850 Ludwig Ports    85299-9921    Kansas    2016-09-04 12:56:06.880619    2016-10-14 13:02:35.424173        \N    \N    \N    0    \N    \N    \N    \N    female
12328    Shayne    O'Hara    enrique_weber@heaneymann.io    \N    Macao    South Bradley    77358 Aurore Pines    10414-0263    Wyoming    2016-07-24 09:42:26.044804    2016-10-14 13:02:35.428201        \N    \N    \N    0    \N    \N    \N    \N    female
12329    Abigale    Hudson    laverne.bosco@langoconnell.net    \N    Swaziland    Port Murray    5771 Mya Oval    49599    South Carolina    2016-09-28 03:44:40.255299    2016-10-14 13:02:35.432312        \N    \N    \N    0    \N    \N    \N    \N    male
12330    Efren    Hirthe    torrance@ratke.info    \N    Philippines    West Marilou    2135 Zoe Drive    23511    Wisconsin    2016-08-03 12:06:15.760835    2016-10-14 13:02:35.436477        \N    \N    \N    0    \N    \N    \N    \N    male
12331    Kane    Predovic    lorena_sporer@nicolas.org    \N    New Zealand    New Earlville    4289 Clyde Drive    37660    Arizona    2016-08-25 03:30:45.276463    2016-10-14 13:02:35.441363        \N    \N    \N    0    \N    \N    \N    \N    male
12332    Vito    Parker    delta.rutherford@gutkowskihaag.info    \N    Mali    Dextershire    2450 Kautzer Point    94134    Illinois    2016-08-13 12:41:25.343644    2016-10-14 13:02:35.446199        \N    \N    \N    0    \N    \N    \N    \N    male
12333    Sincere    Nitzsche    jaycee.wintheiser@dickinson.io    \N    Moldova    Watershaven    8764 Magdalen Courts    12530    Mississippi    2016-08-21 03:10:34.487608    2016-10-14 13:02:35.452799        \N    \N    \N    0    \N    \N    \N    \N    male
12334    Chauncey    Gerlach    jeff_schinner@schmidt.co    \N    United Kingdom    New Jacques    168 Lockman Ways    92429    Oklahoma    2016-07-06 11:20:14.374525    2016-10-14 13:02:35.45771        \N    \N    \N    0    \N    \N    \N    \N    male
12335    Quentin    Legros    scarlett_jones@schinnertoy.org    \N    Uruguay    O'Harafurt    310 Stiedemann Stream    47667-9933    New Hampshire    2016-07-10 21:46:20.074007    2016-10-14 13:02:35.462237        \N    \N    \N    0    \N    \N    \N    \N    female
12336    Talon    Parisian    marie_price@schmidtmcdermott.name    \N    Portugal    Jeraldport    4619 Frida Plains    61386    New Mexico    2016-08-13 19:37:28.451184    2016-10-14 13:02:35.467073        \N    \N    \N    0    \N    \N    \N    \N    female
12337    Guadalupe    Wintheiser    tanner@berniertrantow.net    \N    Cayman Islands    Mrazfort    30293 Orlando Motorway    35606    Connecticut    2016-08-15 04:16:18.774806    2016-10-14 13:02:35.472185        \N    \N    \N    0    \N    \N    \N    \N    male
12338    Elissa    Shields    dillan@dooleykrajcik.info    \N    Jersey    Goyettefort    508 Sporer Dam    27853-7915    Michigan    2016-06-30 10:12:58.484593    2016-10-14 13:02:35.485453        \N    \N    \N    0    \N    \N    \N    \N    female
12339    Sheila    Gaylord    isabelle_zulauf@oconnell.com    \N    Benin    New Noelshire    222 Doyle Trail    95700    Virginia    2016-08-15 08:38:34.779479    2016-10-14 13:02:35.490387        \N    \N    \N    0    \N    \N    \N    \N    male
12340    Vernie    Kuphal    unique@pollich.name    \N    Panama    New Lavonshire    1655 Funk Neck    26303-0724    Delaware    2016-07-05 17:45:03.077905    2016-10-14 13:02:35.494506        \N    \N    \N    0    \N    \N    \N    \N    male
12341    Dimitri    Morar    rosalee@dooley.io    \N    Denmark    Marcelborough    726 Novella Shoal    85392-8143    New York    2016-08-01 18:36:37.434803    2016-10-14 13:02:35.49877        \N    \N    \N    0    \N    \N    \N    \N    female
12342    Tressie    Oberbrunner    marcellus@ullrich.com    \N    Hong Kong    New Napoleon    45063 Runolfsdottir Springs    23045-3320    New Hampshire    2016-07-06 08:27:00.293431    2016-10-14 13:02:35.502702        \N    \N    \N    0    \N    \N    \N    \N    male
12343    Lavon    Kuphal    bernice@ziemesporer.org    \N    Gibraltar    Schillerchester    70608 Parker Stravenue    49325-4894    Alaska    2016-08-23 11:42:07.351972    2016-10-14 13:02:35.50691        \N    \N    \N    0    \N    \N    \N    \N    female
12344    Jaime    Robel    lolita@green.org    \N    Jamaica    East Frederic    797 Angelina Walk    65349-3432    Minnesota    2016-09-06 03:52:02.874631    2016-10-14 13:02:35.511524        \N    \N    \N    0    \N    \N    \N    \N    male
12345    Devon    Champlin    arturo.schultz@volkman.biz    \N    Burundi    Kingstad    536 Delilah Center    17374    Iowa    2016-08-10 15:40:24.046237    2016-10-14 13:02:35.516153        \N    \N    \N    0    \N    \N    \N    \N    female
12346    Linwood    Carroll    dina@block.io    \N    Central African Republic    Lake Noemie    87637 Beahan Port    23939    Nebraska    2016-07-20 15:06:20.598037    2016-10-14 13:02:35.520804        \N    \N    \N    0    \N    \N    \N    \N    female
12347    Lavina    McClure    melisa@jones.name    \N    Jamaica    Gilbertofurt    257 Veda Spur    20941    Washington    2016-07-16 02:55:02.543667    2016-10-14 13:02:35.525403        \N    \N    \N    0    \N    \N    \N    \N    male
12348    David    Effertz    estevan_weinat@bruenkautzer.co    \N    Vietnam    Strosinfort    85477 Sporer Lights    93789    Oklahoma    2016-07-01 15:49:39.844655    2016-10-14 13:02:35.530032        \N    \N    \N    0    \N    \N    \N    \N    male
12349    Oral    Hamill    augustus.schiller@bogisichromaguera.info    \N    Mauritius    Briaburgh    7153 Kyla Inlet    85283-8679    New Mexico    2016-07-24 00:52:45.125625    2016-10-14 13:02:35.534415        \N    \N    \N    0    \N    \N    \N    \N    male
12350    Ophelia    Feeney    maia@ziemegoodwin.biz    \N    Guyana    Port Ilianamouth    293 Boyle Plains    78538-5973    Tennessee    2016-08-24 04:50:22.389133    2016-10-14 13:02:35.538654        \N    \N    \N    0    \N    \N    \N    \N    female
12351    Ramiro    Mueller    mallie@boyle.co    \N    Bosnia and Herzegovina    Darylchester    71750 Stephan Crossing    80925    Louisiana    2016-09-24 05:41:30.27284    2016-10-14 13:02:35.542918        \N    \N    \N    0    \N    \N    \N    \N    female
12352    Beverly    Jenkins    giles@osinskihammes.org    \N    Bhutan    Arturomouth    2482 Edna Plaza    90129    Missouri    2016-08-24 22:54:58.691735    2016-10-14 13:02:35.547485        \N    \N    \N    0    \N    \N    \N    \N    female
12353    Lorna    Murphy    jon@von.name    \N    Botswana    South Vincenza    814 Weldon Greens    77517-0420    Virginia    2016-09-10 16:12:57.687989    2016-10-14 13:02:35.551792        \N    \N    \N    0    \N    \N    \N    \N    male
12354    Esperanza    Heller    hiram@hauck.co    \N    Montenegro    West Ashlynnland    3256 Fahey Avenue    38302    Connecticut    2016-07-20 18:44:07.480133    2016-10-14 13:02:35.556102        \N    \N    \N    0    \N    \N    \N    \N    male
12355    Angelita    O'Connell    constance_lynch@harris.biz    \N    Ukraine    Lake Mazie    668 Ryan Ways    80229    Maine    2016-09-11 03:12:05.01899    2016-10-14 13:02:35.56062        \N    \N    \N    0    \N    \N    \N    \N    female
12356    Deonte    Shanahan    adolfo@toy.name    \N    Costa Rica    New Brigitteburgh    6152 Willa Run    71748    Ohio    2016-08-07 09:41:56.59475    2016-10-14 13:02:35.565241        \N    \N    \N    0    \N    \N    \N    \N    female
12357    Mary    Bartoletti    lavon@stehr.com    \N    Ukraine    Rosellaborough    842 Judge Shoals    72216-8574    Connecticut    2016-09-06 10:45:10.360047    2016-10-14 13:02:35.569828        \N    \N    \N    0    \N    \N    \N    \N    female
12358    Alycia    Bins    karley@romaguera.org    \N    Isle of Man    North Blanche    512 Anais Causeway    55047    Connecticut    2016-07-14 02:19:57.742303    2016-10-14 13:02:35.57416        \N    \N    \N    0    \N    \N    \N    \N    female
12359    Lonie    Volkman    danial_bartell@batzhahn.io    \N    Saint Kitts and Nevis    Mistyhaven    821 Adrian Place    51752    Oklahoma    2016-07-21 14:45:17.963533    2016-10-14 13:02:35.578606        \N    \N    \N    0    \N    \N    \N    \N    male
12360    Lydia    Fahey    mandy@macejkovic.io    \N    China    North Chelseaside    84200 Otha Trail    62534-2702    Colorado    2016-06-26 17:50:31.751259    2016-10-14 13:02:35.583105        \N    \N    \N    0    \N    \N    \N    \N    male
12361    Bertrand    Skiles    marcelo@doyle.biz    \N    French Polynesia    Vedachester    635 Bashirian Valleys    49280-3866    Hawaii    2016-07-14 00:02:11.03298    2016-10-14 13:02:35.58747        \N    \N    \N    0    \N    \N    \N    \N    male
12362    Javonte    Roob    francis@auer.info    \N    Sierra Leone    Funkstad    15531 Emie Courts    47375    Arkansas    2016-08-05 20:02:21.584802    2016-10-14 13:02:35.591777        \N    \N    \N    0    \N    \N    \N    \N    female
12363    Lura    Schumm    jennie_kertzmann@bradtke.name    \N    Dominica    South Watson    27506 Tyra Streets    62044    Utah    2016-08-07 12:00:47.429699    2016-10-14 13:02:35.596216        \N    \N    \N    0    \N    \N    \N    \N    female
12364    Gwendolyn    Nikolaus    winifred.lemke@boyle.info    \N    Latvia    Heathcoteburgh    12691 Reece Villages    19391    New York    2016-08-21 13:33:34.992    2016-10-14 13:02:35.600497        \N    \N    \N    0    \N    \N    \N    \N    female
12365    Johnnie    Carter    vickie.howell@moen.net    \N    Singapore    Port Macyland    16861 Klocko Heights    14991    Michigan    2016-08-11 21:51:23.011248    2016-10-14 13:02:35.604419        \N    \N    \N    0    \N    \N    \N    \N    female
12366    Leo    Feil    lilliana@kunze.info    \N    Niger    North Sedrick    801 Vena Station    32519    Maryland    2016-09-05 21:00:02.065468    2016-10-14 13:02:35.608337        \N    \N    \N    0    \N    \N    \N    \N    male
12367    Crystal    Kunde    zaria@vandervort.co    \N    Lithuania    Lake Olaf    392 Nichole Valley    52923-7878    South Carolina    2016-07-18 17:32:09.855976    2016-10-14 13:02:35.612553        \N    \N    \N    0    \N    \N    \N    \N    female
12368    Edmund    Cummings    remington@reilly.biz    \N    French Guiana    North Jalyn    85771 Chaz Harbor    28262-6735    Mississippi    2016-08-29 11:56:32.347229    2016-10-14 13:02:35.61678        \N    \N    \N    0    \N    \N    \N    \N    female
12369    Leon    Hamill    gregoria_lang@langworthullrich.co    \N    Saint Helena    Delmerberg    88688 Julien Cape    58445-4023    California    2016-09-20 03:40:26.032006    2016-10-14 13:02:35.621446        \N    \N    \N    0    \N    \N    \N    \N    female
12370    Cloyd    Dickinson    austyn.balistreri@sporer.io    \N    Liechtenstein    West Thelmachester    977 Baumbach Drive    87181-0108    Texas    2016-06-29 02:03:32.617608    2016-10-14 13:02:35.625763        \N    \N    \N    0    \N    \N    \N    \N    male
12371    Rollin    Graham    joel_nitzsche@hackett.com    \N    Holy See (Vatican City State)    Rauland    64063 Casper Expressway    99454    North Carolina    2016-06-29 06:05:41.643401    2016-10-14 13:02:35.630173        \N    \N    \N    0    \N    \N    \N    \N    male
12372    Arvid    Greenfelder    zula@huels.net    \N    Andorra    West Lukasstad    8817 Ericka Green    15103    Texas    2016-09-01 11:25:46.375401    2016-10-14 13:02:35.634036        \N    \N    \N    0    \N    \N    \N    \N    female
12373    Al    Ritchie    adah@ohara.com    \N    Panama    West Ashtonstad    6889 Brekke Via    58907    New York    2016-08-24 09:21:06.095561    2016-10-14 13:02:35.638229        \N    \N    \N    0    \N    \N    \N    \N    female
12374    Crawford    McLaughlin    barbara_gaylord@hermiston.org    \N    Mexico    Moorehaven    64790 Ortiz Circles    35826    Tennessee    2016-08-07 05:33:17.060775    2016-10-14 13:02:35.642981        \N    \N    \N    0    \N    \N    \N    \N    female
12375    Marilyne    Mohr    rowan_kilback@rauhuel.net    \N    India    South Marley    9911 Dannie Wall    53625    Massachusetts    2016-08-11 13:27:26.172419    2016-10-14 13:02:35.648267        \N    \N    \N    0    \N    \N    \N    \N    female
12376    Melissa    Lubowitz    jocelyn.pouros@wolfshanahan.com    \N    Georgia    Lake Efrainbury    727 Sierra Divide    41878    Tennessee    2016-09-06 21:48:39.746736    2016-10-14 13:02:35.652878        \N    \N    \N    0    \N    \N    \N    \N    male
12377    Chesley    Hamill    johnny@lednerbuckridge.name    \N    New Zealand    Brakustown    5493 Jaskolski Pines    75849-5511    Utah    2016-09-09 21:32:31.900427    2016-10-14 13:02:35.657206        \N    \N    \N    0    \N    \N    \N    \N    male
12378    Margot    Cremin    kayley@veum.info    \N    Iran    Jacqueschester    8953 Gerlach Ranch    52013-4054    Delaware    2016-08-31 13:06:38.895985    2016-10-14 13:02:35.661467        \N    \N    \N    0    \N    \N    \N    \N    female
12379    Reed    Rodriguez    oma@okonschumm.com    \N    Cuba    New Shaniya    55524 Lemke Rue    15133-3736    Colorado    2016-09-12 03:55:53.155792    2016-10-14 13:02:35.665955        \N    \N    \N    0    \N    \N    \N    \N    female
12380    Luella    Brakus    conor@maggio.org    \N    Syrian Arab Republic    Fordview    325 Haley Greens    38846-7154    Pennsylvania    2016-08-12 21:27:59.912139    2016-10-14 13:02:35.670164        \N    \N    \N    0    \N    \N    \N    \N    female
12381    Sterling    Dickens    ronaldo.brown@kochboyle.net    \N    Zambia    South Adelineburgh    71254 Cruickshank Rue    61382    Arkansas    2016-07-01 17:49:27.197926    2016-10-14 13:02:35.674248        \N    \N    \N    0    \N    \N    \N    \N    female
12850    Guillermo    Trantow    judy@swift.io    \N    Cambodia    Port Doylestad    31800 Beier Ways    64976-6072    Oregon    2016-06-25 22:12:36.44782    2016-10-14 13:02:38.92825        \N    \N    \N    0    \N    \N    \N    \N    male
12382    Ocie    Langworth    merl.steuber@weberpfannerstill.biz    \N    Bosnia and Herzegovina    Veumfort    96187 Genoveva Port    16990    California    2016-09-06 11:37:42.245633    2016-10-14 13:02:35.678332        \N    \N    \N    0    \N    \N    \N    \N    male
12383    Jade    Rath    iac@gibsonbayer.name    \N    Christmas Island    Bentonville    1461 Swaniawski Island    43318    Vermont    2016-08-14 06:55:41.490116    2016-10-14 13:02:35.682763        \N    \N    \N    0    \N    \N    \N    \N    female
12384    Audra    Leuschke    margie@hansenwalsh.io    \N    Ethiopia    Markview    87131 Larkin Spurs    74981    Illinois    2016-07-06 15:42:44.161868    2016-10-14 13:02:35.686982        \N    \N    \N    0    \N    \N    \N    \N    male
12385    Emmy    Kutch    reyes@mccullough.co    \N    Cameroon    Babymouth    2810 Joanne Pike    48424    Pennsylvania    2016-09-08 04:25:23.106165    2016-10-14 13:02:35.690876        \N    \N    \N    0    \N    \N    \N    \N    female
12386    Pansy    Rowe    zula.sipes@durgan.com    \N    Sierra Leone    Rogersmouth    56728 Little Hollow    40543-4732    Nebraska    2016-08-15 22:41:44.109219    2016-10-14 13:02:35.694989        \N    \N    \N    0    \N    \N    \N    \N    female
12387    Roy    Wilderman    shaina_bednar@mante.io    \N    Macao    East Jeniferburgh    3137 Herzog Extensions    40794-1783    Alabama    2016-07-06 02:07:21.040316    2016-10-14 13:02:35.699074        \N    \N    \N    0    \N    \N    \N    \N    male
12482    Dax    Beer    nannie@smitham.co    \N    Morocco    East Clarabelle    2036 Lang Club    98473    Tennessee    2016-09-12 03:29:37.376294    2016-10-14 13:02:36.298088        \N    \N    \N    0    \N    \N    \N    \N    male
12388    Kyra    Jacobi    hilbert_bechtelar@hackettfahey.info    \N    Kenya    Jakubowskiview    33385 Santa Trace    61186    Florida    2016-07-23 15:21:22.322036    2016-10-14 13:02:35.702984        \N    \N    \N    0    \N    \N    \N    \N    male
12389    Destin    Bailey    sonny@breitenberg.name    \N    Slovenia    Loraland    2267 Lavon Neck    22110    Alabama    2016-07-06 11:38:59.513855    2016-10-14 13:02:35.707374        \N    \N    \N    0    \N    \N    \N    \N    female
12390    Chaya    Collier    cecilia@murray.com    \N    Bulgaria    South Olemouth    170 Tyrese Hills    57705-3602    California    2016-07-28 00:11:00.97294    2016-10-14 13:02:35.711375        \N    \N    \N    0    \N    \N    \N    \N    female
12391    Savion    Jakubowski    sylvia@boscomueller.net    \N    Benin    New Kenton    54228 Prohaska Stravenue    18643    Maine    2016-06-25 06:43:19.540047    2016-10-14 13:02:35.715643        \N    \N    \N    0    \N    \N    \N    \N    female
12392    Jarrell    Rice    timmothy_gutkowski@dickiwuckert.co    \N    Botswana    Jimmymouth    6458 Mittie Isle    90022-9855    Indiana    2016-09-20 17:29:10.642581    2016-10-14 13:02:35.719845        \N    \N    \N    0    \N    \N    \N    \N    male
12393    Edison    Ritchie    glenna@heller.net    \N    Djibouti    North Vitofort    1521 Oswaldo Ramp    71417    Missouri    2016-08-11 07:41:01.923984    2016-10-14 13:02:35.723939        \N    \N    \N    0    \N    \N    \N    \N    female
12394    Maudie    Hauck    shirley.howe@wisozk.info    \N    Zambia    East Zoeland    87279 Kuhic Extension    38570-2585    Ohio    2016-07-21 09:10:11.340042    2016-10-14 13:02:35.727865        \N    \N    \N    0    \N    \N    \N    \N    male
12395    Kristin    Feil    christopher.pfeffer@olsonko.co    \N    Tokelau    Edaview    989 Yost Alley    65858-6465    Nebraska    2016-07-18 07:45:12.418364    2016-10-14 13:02:35.731777        \N    \N    \N    0    \N    \N    \N    \N    female
12396    Kelly    Adams    eladio@bednarlittle.io    \N    Trinidad and Tobago    Jeramyville    8422 Haag Trail    27066    New Hampshire    2016-09-09 16:18:02.859315    2016-10-14 13:02:35.735794        \N    \N    \N    0    \N    \N    \N    \N    female
12397    Crystal    Bergnaum    jonathon@lockman.biz    \N    Afghanistan    East Lessie    44201 Lew Circles    93113-9593    Maine    2016-09-18 14:19:43.783856    2016-10-14 13:02:35.739787        \N    \N    \N    0    \N    \N    \N    \N    male
12398    Carolanne    Kiehn    glenda_brown@friesenjacobs.co    \N    Cocos (Keeling) Islands    Lake Gerson    65374 Boyer Harbors    15877-8856    Nebraska    2016-08-01 11:49:52.344598    2016-10-14 13:02:35.743855        \N    \N    \N    0    \N    \N    \N    \N    male
12399    Sophia    Towne    aniyah_smith@thompsonflatley.info    \N    Mali    Rosenbaumville    7547 Petra Estates    76831    Massachusetts    2016-09-01 11:32:58.161966    2016-10-14 13:02:35.747837        \N    \N    \N    0    \N    \N    \N    \N    male
12400    Mavis    Ondricka    jeff@swaniawski.com    \N    Mongolia    Vonburgh    92052 Green Falls    67032    Colorado    2016-09-05 23:33:20.853767    2016-10-14 13:02:35.752436        \N    \N    \N    0    \N    \N    \N    \N    male
12401    Marcus    Kris    kirk.adams@abbottsteuber.org    \N    Indonesia    East Kristopherstad    89534 Gregoria Trail    31645    Colorado    2016-06-23 12:33:06.729946    2016-10-14 13:02:35.756823        \N    \N    \N    0    \N    \N    \N    \N    female
12402    Elisabeth    Lockman    meaghan@weber.org    \N    United States of America    Johnstonfurt    347 Keeling Turnpike    21580-6952    New York    2016-08-20 02:48:43.20826    2016-10-14 13:02:35.761508        \N    \N    \N    0    \N    \N    \N    \N    female
12403    Adella    Pollich    freeman_heel@kreiger.io    \N    Belize    Port Gregorio    648 Heaven Stream    58209    Georgia    2016-07-07 10:15:57.705125    2016-10-14 13:02:35.766019        \N    \N    \N    0    \N    \N    \N    \N    male
12404    Haleigh    Kshlerin    hailie.gottlieb@jast.org    \N    South Georgia and the South Sandwich Islands    Melissashire    23157 Ruecker Expressway    76904    Idaho    2016-07-20 05:17:31.625752    2016-10-14 13:02:35.770292        \N    \N    \N    0    \N    \N    \N    \N    female
12405    Juana    Bergstrom    jade@homenick.org    \N    United States Minor Outlying Islands    Elsaland    7779 Edison Plains    48096    Nevada    2016-07-06 01:44:21.769927    2016-10-14 13:02:35.774541        \N    \N    \N    0    \N    \N    \N    \N    female
12406    Augustine    Weimann    barbara@osinski.org    \N    Mali    Kulasside    43098 Carmelo Villages    61384-6223    Pennsylvania    2016-08-22 08:32:30.530624    2016-10-14 13:02:35.778914        \N    \N    \N    0    \N    \N    \N    \N    female
12407    Camille    Bednar    willard@murrayschroeder.biz    \N    Comoros    Tillmanbury    7957 Kub Springs    38100-9521    Montana    2016-08-22 21:11:31.997375    2016-10-14 13:02:35.783565        \N    \N    \N    0    \N    \N    \N    \N    male
12408    Orville    Lehner    tara@macgyver.name    \N    Guinea-Bissau    Kayleighport    527 Mertz Prairie    97295    North Carolina    2016-08-12 15:18:39.922891    2016-10-14 13:02:35.787536        \N    \N    \N    0    \N    \N    \N    \N    male
12586    Dena    Miller    jamey@schaefer.io    \N    France    Kilbackport    761 Ernest Canyon    70087-2855    Oregon    2016-08-07 06:53:02.413821    2016-10-14 13:02:35.791357        \N    \N    \N    0    \N    \N    \N    \N    female
12409    Burley    Schinner    evangeline_witting@schroeder.co    \N    Trinidad and Tobago    West Anjalihaven    83401 Columbus Mount    50542-7977    Pennsylvania    2016-08-03 07:02:51.616169    2016-10-14 13:02:35.795603        \N    \N    \N    0    \N    \N    \N    \N    male
12410    Jillian    Friesen    rocky.douglas@spinka.org    \N    Fiji    New Payton    61810 Kaylie Streets    41524-7202    Texas    2016-09-12 21:14:16.617464    2016-10-14 13:02:35.79997        \N    \N    \N    0    \N    \N    \N    \N    male
12411    Bridgette    Simonis    colleen@lubowitz.com    \N    Saint Lucia    East Flavioport    715 Stanton Point    86366    Colorado    2016-07-14 14:23:04.21489    2016-10-14 13:02:35.804239        \N    \N    \N    0    \N    \N    \N    \N    female
12412    Donnell    Witting    avery@bergekiehn.com    \N    Martinique    East Elinor    34061 Josiane Neck    33237-2910    Missouri    2016-08-06 14:10:57.149042    2016-10-14 13:02:35.809474        \N    \N    \N    0    \N    \N    \N    \N    male
12413    Vivianne    Kunde    damon@steuber.net    \N    Eritrea    Runolfsdottirburgh    5802 Reichel Ford    30617-9150    Georgia    2016-09-25 06:17:22.974813    2016-10-14 13:02:35.814133        \N    \N    \N    0    \N    \N    \N    \N    male
12414    Columbus    O'Conner    kiera_smith@robelabshire.net    \N    Myanmar    Rebekamouth    20633 Magdalena Groves    23204-1895    Arkansas    2016-08-12 16:45:23.799332    2016-10-14 13:02:35.818901        \N    \N    \N    0    \N    \N    \N    \N    female
12415    Lois    Renner    enos_mcdermott@hauck.net    \N    Guinea-Bissau    Colemanchester    82896 Hammes Squares    25986-6374    New Jersey    2016-07-22 09:13:55.243461    2016-10-14 13:02:35.824699        \N    \N    \N    0    \N    \N    \N    \N    male
12416    Lillian    Jacobson    grant@mraz.name    \N    Central African Republic    New Ozziestad    159 Haag Parks    25134    Arkansas    2016-07-15 17:07:01.818485    2016-10-14 13:02:35.829019        \N    \N    \N    0    \N    \N    \N    \N    male
12417    Garnett    Spencer    osborne.beier@purdy.io    \N    Ghana    Verdieborough    2515 Merritt Walk    18329    Virginia    2016-09-12 00:28:37.677399    2016-10-14 13:02:35.8331        \N    \N    \N    0    \N    \N    \N    \N    female
12418    Alison    Wolff    franz.hintz@sporerdickens.io    \N    Grenada    Port Nathanaelville    9737 Boyer Land    90866-5031    Delaware    2016-08-08 20:36:31.179924    2016-10-14 13:02:35.837084        \N    \N    \N    0    \N    \N    \N    \N    female
12419    Montana    Lesch    marshall.weimann@marvin.info    \N    Sri Lanka    East Dallasfurt    20394 Streich Camp    75169    Indiana    2016-07-26 19:39:38.282524    2016-10-14 13:02:35.841744        \N    \N    \N    0    \N    \N    \N    \N    female
12420    Darrin    Muller    fannie.bartell@hartmann.name    \N    Cuba    North Lacey    215 Pacocha Walk    11642    Virginia    2016-07-21 18:49:29.897288    2016-10-14 13:02:35.850421        \N    \N    \N    0    \N    \N    \N    \N    female
12421    Wyman    Turcotte    lyric_boyle@bechtelar.io    \N    Mongolia    Nasirmouth    4850 Caitlyn Vista    87950    New Hampshire    2016-09-23 01:30:38.518045    2016-10-14 13:02:35.855294        \N    \N    \N    0    \N    \N    \N    \N    male
12422    Pinkie    Dicki    kendall.hirthe@bartellstiedemann.io    \N    Wallis and Futuna    Augustusville    6546 Terence Freeway    78762    Utah    2016-07-07 10:27:51.89442    2016-10-14 13:02:35.860062        \N    \N    \N    0    \N    \N    \N    \N    male
12423    Heidi    Durgan    kimberly.fisher@welch.io    \N    Croatia    Elvisstad    878 Dicki Extensions    52154-8927    Maryland    2016-09-14 20:38:35.374862    2016-10-14 13:02:35.864362        \N    \N    \N    0    \N    \N    \N    \N    male
12424    Kendra    Abshire    jerry_carter@zboncak.org    \N    Taiwan    Walshborough    44074 Ebert Cove    97083    Arizona    2016-09-02 18:35:32.504486    2016-10-14 13:02:35.868775        \N    \N    \N    0    \N    \N    \N    \N    male
12425    Myron    Wuckert    clark@oreilly.com    \N    Slovakia (Slovak Republic)    Dustinfurt    23631 Tania Islands    20403    Tennessee    2016-07-02 19:52:06.825118    2016-10-14 13:02:35.873022        \N    \N    \N    0    \N    \N    \N    \N    female
12426    Stephany    Cormier    rylan@krajcik.net    \N    Mozambique    Ziemannville    1104 Dahlia Harbor    40927-2687    Tennessee    2016-08-01 14:56:49.378465    2016-10-14 13:02:35.877174        \N    \N    \N    0    \N    \N    \N    \N    female
12428    Otto    Cronin    afton@leuschkeskiles.name    \N    Guyana    Maehaven    6185 Aglae Tunnel    18860    Maine    2016-07-24 15:26:43.907315    2016-10-14 13:02:35.881256        \N    \N    \N    0    \N    \N    \N    \N    female
12429    Madonna    Paucek    wilbert.baumbach@leuschkeoberbrunner.name    \N    Paraguay    Quintenstad    803 Kuvalis Field    15433-1072    North Carolina    2016-09-11 05:05:32.026911    2016-10-14 13:02:35.885801        \N    \N    \N    0    \N    \N    \N    \N    male
12430    Dallas    Conroy    otha_hane@dooley.biz    \N    South Africa    Rociostad    41215 Hackett Mews    13943-4692    Virginia    2016-07-26 06:53:59.909084    2016-10-14 13:02:35.889882        \N    \N    \N    0    \N    \N    \N    \N    male
12431    Michel    Bogisich    alisha@waters.net    \N    Brunei Darussalam    East Othofurt    301 Heidenreich Islands    14006    Oregon    2016-08-20 18:56:09.879564    2016-10-14 13:02:35.893737        \N    \N    \N    0    \N    \N    \N    \N    male
12432    Elmer    Stoltenberg    royal_grant@yost.org    \N    Honduras    West Terry    3643 Cummings Parks    40830    Missouri    2016-07-28 14:56:17.322228    2016-10-14 13:02:35.897635        \N    \N    \N    0    \N    \N    \N    \N    female
12433    Kara    Dickinson    cristobal@lueilwitzkling.net    \N    Botswana    Lake Wilton    365 Romaguera Mount    17505    Louisiana    2016-07-25 16:06:26.856976    2016-10-14 13:02:35.901585        \N    \N    \N    0    \N    \N    \N    \N    female
12434    Douglas    Satterfield    marianna@purdymitchell.name    \N    Finland    Jettburgh    8117 Eichmann Garden    15525    New Mexico    2016-07-16 01:22:48.083566    2016-10-14 13:02:35.905537        \N    \N    \N    0    \N    \N    \N    \N    female
12435    Laurianne    Quigley    wilton_hilll@walter.name    \N    Equatorial Guinea    Quintonfort    461 Collier Turnpike    10282-2433    Illinois    2016-09-20 22:00:31.506445    2016-10-14 13:02:35.909487        \N    \N    \N    0    \N    \N    \N    \N    male
12436    Brandi    Ziemann    taya@parisian.io    \N    Nepal    North Irwin    9043 Koepp Wall    71701    Wyoming    2016-09-11 03:27:17.133539    2016-10-14 13:02:35.913451        \N    \N    \N    0    \N    \N    \N    \N    female
12437    Jevon    Mraz    brandt.luettgen@mccullough.info    \N    Ecuador    Port Duncan    509 Emmet Plains    65709-6999    Vermont    2016-08-18 04:18:54.586589    2016-10-14 13:02:35.917244        \N    \N    \N    0    \N    \N    \N    \N    male
12438    Alexzander    Terry    mckayla_gislason@heaney.com    \N    Seychelles    North Hellen    8284 Ila Terrace    24477    New Hampshire    2016-06-23 00:33:56.708057    2016-10-14 13:02:35.921413        \N    \N    \N    0    \N    \N    \N    \N    female
12439    Hortense    Gleason    rita@hyatthalvorson.biz    \N    Bolivia    South Gordon    667 Little Locks    86939    New Jersey    2016-09-14 07:20:08.223957    2016-10-14 13:02:35.925187        \N    \N    \N    0    \N    \N    \N    \N    female
12440    Yesenia    Runolfsson    antonette@hyatt.net    \N    Central African Republic    Conroyfurt    257 Bahringer Garden    61282-8768    New York    2016-09-19 00:23:40.818708    2016-10-14 13:02:35.92897        \N    \N    \N    0    \N    \N    \N    \N    male
12441    Tremayne    Ward    cristopher.schulist@maggiostark.info    \N    Mexico    Scottymouth    4236 Cathy Fort    92000-0793    Minnesota    2016-08-20 13:39:38.153019    2016-10-14 13:02:35.93325        \N    \N    \N    0    \N    \N    \N    \N    female
12442    Jackeline    Cassin    kim.oconner@prohaskacarroll.com    \N    Finland    Lexiburgh    54462 Rowland Canyon    43246    West Virginia    2016-08-27 07:33:38.665418    2016-10-14 13:02:35.93789        \N    \N    \N    0    \N    \N    \N    \N    female
12444    Winfield    Donnelly    rubye_leuschke@kuhic.info    \N    India    Murphyside    224 Darby Circles    92582-8804    Montana    2016-07-28 21:28:40.742953    2016-10-14 13:02:35.942623        \N    \N    \N    0    \N    \N    \N    \N    male
12445    Oliver    Dickinson    kareem.ferry@keelingbailey.biz    \N    Central African Republic    Port Melisa    7059 Alana Mission    48744-4189    Connecticut    2016-09-07 10:58:59.913202    2016-10-14 13:02:35.947291        \N    \N    \N    0    \N    \N    \N    \N    female
12446    Christiana    Glover    lelah.rohan@goyette.io    \N    Iceland    Jenifermouth    84504 Watsica Via    82872    Pennsylvania    2016-09-18 10:00:49.11311    2016-10-14 13:02:35.951846        \N    \N    \N    0    \N    \N    \N    \N    female
12447    Stephanie    Sipes    sarina_olson@stroman.com    \N    Iceland    Lake Urbanhaven    9657 Mertz Landing    70978-8160    Texas    2016-09-16 10:24:46.000561    2016-10-14 13:02:35.955908        \N    \N    \N    0    \N    \N    \N    \N    male
12448    Jada    Heidenreich    winfield@pacocha.net    \N    Uganda    North Leifborough    94531 Christian Pine    13661-6074    Missouri    2016-09-09 20:58:50.470808    2016-10-14 13:02:35.959746        \N    \N    \N    0    \N    \N    \N    \N    male
12449    Charlene    Paucek    marcel@jonestremblay.info    \N    Uruguay    Collinschester    7979 Runte Forge    41368-3707    Idaho    2016-08-30 16:52:53.462215    2016-10-14 13:02:35.963744        \N    \N    \N    0    \N    \N    \N    \N    female
12450    Laurine    Becker    aidan.hayes@cummerataebert.co    \N    Angola    Americofort    71981 Jamil Corner    71467-9215    Maine    2016-06-22 22:53:07.450963    2016-10-14 13:02:35.971022        \N    \N    \N    0    \N    \N    \N    \N    female
12451    Aida    Douglas    kaela.doyle@leuschke.co    \N    Bosnia and Herzegovina    New Jermainhaven    2935 Aliyah Orchard    39596    West Virginia    2016-08-16 07:15:29.634888    2016-10-14 13:02:35.982623        \N    \N    \N    0    \N    \N    \N    \N    male
12452    Vance    Effertz    melany@nicolas.info    \N    Sao Tome and Principe    East Lorenzo    7203 Johnson Plains    57309    Louisiana    2016-09-07 03:35:05.690118    2016-10-14 13:02:36.003675        \N    \N    \N    0    \N    \N    \N    \N    male
12453    Osborne    Legros    patricia.haley@schroeder.net    \N    Romania    East Birdieland    50604 Waldo Dam    26699-0584    Nebraska    2016-07-27 22:09:53.762447    2016-10-14 13:02:36.028277        \N    \N    \N    0    \N    \N    \N    \N    female
12454    Terrence    Harvey    austin.hilll@shieldswill.net    \N    Tunisia    Frederickfurt    733 Gulgowski Radial    48232    Maine    2016-08-10 17:10:51.796659    2016-10-14 13:02:36.052354        \N    \N    \N    0    \N    \N    \N    \N    male
12455    Clair    Schuppe    luna@cronapaucek.net    \N    Uruguay    East Jeromy    315 Stephon Hills    13959-1437    Washington    2016-09-03 14:50:38.722558    2016-10-14 13:02:36.05658        \N    \N    \N    0    \N    \N    \N    \N    female
12456    Fred    Jenkins    cecile_ankunding@braun.biz    \N    Faroe Islands    Durganview    7366 Ethyl Mount    23400    Montana    2016-08-07 21:40:40.036659    2016-10-14 13:02:36.060427        \N    \N    \N    0    \N    \N    \N    \N    female
12457    Clare    Steuber    jade@rennerolson.org    \N    Turkmenistan    Lefflerview    901 Marcelo Corners    77862    Tennessee    2016-07-16 05:17:23.657806    2016-10-14 13:02:36.064536        \N    \N    \N    0    \N    \N    \N    \N    female
12458    Sheila    Hoeger    diamond_wuckert@sporerfeest.net    \N    Nicaragua    North Anahifort    540 Gleason Trail    88840    California    2016-09-25 16:09:41.190751    2016-10-14 13:02:36.068548        \N    \N    \N    0    \N    \N    \N    \N    female
12459    Marlene    Eichmann    justice_romaguera@okon.com    \N    Bulgaria    Sonyaland    1128 Metz Forest    61103    Oklahoma    2016-07-20 05:03:18.722363    2016-10-14 13:02:36.07232        \N    \N    \N    0    \N    \N    \N    \N    female
12460    Maiya    Kuhic    axel@haag.biz    \N    Bahrain    North Kennedi    9684 Schmidt Inlet    79518    Maine    2016-07-17 08:44:06.264426    2016-10-14 13:02:36.076364        \N    \N    \N    0    \N    \N    \N    \N    female
12461    Zackary    Gutkowski    dakota@hauckschaefer.com    \N    Wallis and Futuna    East Donavon    4812 Vicente Ways    20851-4403    Iowa    2016-07-23 14:29:43.97573    2016-10-14 13:02:36.080946        \N    \N    \N    0    \N    \N    \N    \N    female
12462    Michele    Adams    lawson@balistrerihoppe.com    \N    Niger    West Miracle    51715 Alexandra Hill    64634    Florida    2016-09-17 14:32:11.692994    2016-10-14 13:02:36.085818        \N    \N    \N    0    \N    \N    \N    \N    female
12463    Skyla    Dietrich    okey@jacobi.biz    \N    Somalia    Naderburgh    134 Terrence Place    21232-7721    Michigan    2016-08-29 17:49:01.650111    2016-10-14 13:02:36.089804        \N    \N    \N    0    \N    \N    \N    \N    male
12464    Ned    Hartmann    bulah@spencernienow.name    \N    Qatar    New Grover    360 Ritchie Curve    71812-6482    Colorado    2016-08-28 16:07:59.493816    2016-10-14 13:02:36.094334        \N    \N    \N    0    \N    \N    \N    \N    female
12465    Clementine    Lind    brock.hoeger@aufderhar.co    \N    Seychelles    Rempelmouth    11942 Schiller Ramp    58779-5766    Connecticut    2016-06-26 19:37:45.559367    2016-10-14 13:02:36.108283        \N    \N    \N    0    \N    \N    \N    \N    female
12466    Connie    Heidenreich    isaiah@jones.biz    \N    Brunei Darussalam    Haleytown    1563 Mohr Canyon    29994    Massachusetts    2016-09-25 09:12:08.843947    2016-10-14 13:02:36.113334        \N    \N    \N    0    \N    \N    \N    \N    male
12467    Pinkie    Anderson    taurean.bahringer@davisabshire.name    \N    India    D'Amoreside    5763 Abigayle Crossing    31710    Iowa    2016-09-06 01:09:13.116428    2016-10-14 13:02:36.117985        \N    \N    \N    0    \N    \N    \N    \N    female
12468    Henri    Schmitt    eryn.runolfon@thielmcdermott.com    \N    Niue    South Rogerside    2487 Connelly Forks    71419    Massachusetts    2016-08-18 02:55:35.443614    2016-10-14 13:02:36.122584        \N    \N    \N    0    \N    \N    \N    \N    female
12469    Elva    Carter    keely@heaney.co    \N    Macao    South Cyrilmouth    85297 Bosco Mission    46196    California    2016-09-14 03:22:54.217362    2016-10-14 13:02:36.127334        \N    \N    \N    0    \N    \N    \N    \N    male
17270    Riley    Medhurst    lia@schoen.org    \N    Namibia    Harveybury    393 Barton Ferry    64170-0299    Kentucky    2016-09-26 23:04:57.285206    2016-10-14 13:02:36.132032        \N    \N    \N    0    \N    \N    \N    \N    male
12470    Emile    Cassin    loraine.blick@breitenberg.info    \N    San Marino    Schulistfort    6346 Toy Islands    70106-7649    West Virginia    2016-09-10 05:32:48.717753    2016-10-14 13:02:36.136492        \N    \N    \N    0    \N    \N    \N    \N    female
12471    Devon    Champlin    austen_nitzsche@cartwright.io    \N    Kazakhstan    Garnettmouth    2861 Wisozk Streets    83122-2790    Florida    2016-06-25 12:10:15.75795    2016-10-14 13:02:36.145402        \N    \N    \N    0    \N    \N    \N    \N    male
12472    Alta    McClure    london.crooks@jakubowski.org    \N    China    West Eulaberg    43950 Reichert Alley    92216    Minnesota    2016-08-25 21:24:47.878321    2016-10-14 13:02:36.161478        \N    \N    \N    0    \N    \N    \N    \N    male
12473    Dannie    Bailey    cordelia@kutch.com    \N    Wallis and Futuna    South Wilford    6950 Metz Ranch    89464-1281    Nebraska    2016-09-26 22:26:31.187461    2016-10-14 13:02:36.201184        \N    \N    \N    0    \N    \N    \N    \N    female
12474    Julius    Hermann    cierra@joneimonis.io    \N    Marshall Islands    New Akeembury    9200 Borer Port    13466-2231    Alaska    2016-07-21 02:56:22.976336    2016-10-14 13:02:36.234232        \N    \N    \N    0    \N    \N    \N    \N    female
12475    Orland    Luettgen    leanna.legros@kunze.name    \N    Malaysia    Adaview    262 Jacinthe Crest    78808    Washington    2016-07-09 22:08:28.381622    2016-10-14 13:02:36.24708        \N    \N    \N    0    \N    \N    \N    \N    female
12476    Ivory    Braun    thea_damore@barrowshaley.net    \N    Poland    Charlesborough    7623 Keith Land    62785    Louisiana    2016-07-19 13:17:32.346035    2016-10-14 13:02:36.258248        \N    \N    \N    0    \N    \N    \N    \N    female
12478    Marie    Jaskolski    efren_carter@bergnaumturcotte.name    \N    Mexico    South Ivahland    509 Deborah Pine    26644-4083    Georgia    2016-07-28 03:42:16.31991    2016-10-14 13:02:36.265541        \N    \N    \N    0    \N    \N    \N    \N    male
12479    Dagmar    Kshlerin    wayne.mann@schmittmedhurst.name    \N    Cote d'Ivoire    Gibsonborough    1283 Michale Junction    15256    Indiana    2016-08-14 01:36:59.041548    2016-10-14 13:02:36.272682        \N    \N    \N    0    \N    \N    \N    \N    male
12480    Caitlyn    Parisian    willie@becker.co    \N    Guatemala    Anissafurt    17648 Estelle Neck    56989-9787    Ohio    2016-08-14 04:06:22.452661    2016-10-14 13:02:36.278699        \N    \N    \N    0    \N    \N    \N    \N    male
12483    Floy    Kilback    arvel.schmitt@stehrkovacek.com    \N    Belarus    New Horace    600 Precious Row    15396    Hawaii    2016-08-18 00:49:38.91103    2016-10-14 13:02:36.309326        \N    \N    \N    0    \N    \N    \N    \N    male
12484    Danny    Sauer    nola@block.net    \N    Russian Federation    Busterville    4081 Jarod Cliff    18506    Virginia    2016-06-30 08:16:21.54467    2016-10-14 13:02:36.315077        \N    \N    \N    0    \N    \N    \N    \N    female
12485    Genesis    Conroy    dane_satterfield@wiegand.com    \N    Kazakhstan    Ilianamouth    2342 Schamberger Centers    89411-2151    New Mexico    2016-06-26 20:22:38.533284    2016-10-14 13:02:36.320155        \N    \N    \N    0    \N    \N    \N    \N    female
12486    Myrtice    Rath    norwood.crooks@kelercrooks.org    \N    Mayotte    West Torreyport    202 Joanne Ridge    39706-9132    West Virginia    2016-07-03 10:54:25.155994    2016-10-14 13:02:36.325067        \N    \N    \N    0    \N    \N    \N    \N    male
12487    Maurine    Jones    mallory@osinski.biz    \N    Indonesia    New Pearl    44205 Prohaska Loaf    58824    Wyoming    2016-07-13 06:30:00.640321    2016-10-14 13:02:36.329914        \N    \N    \N    0    \N    \N    \N    \N    male
12488    Torey    Mosciski    aimee@carrollhaley.net    \N    Australia    Lake Ian    433 Harvey Lights    57946    Hawaii    2016-08-15 10:15:38.111067    2016-10-14 13:02:36.334759        \N    \N    \N    0    \N    \N    \N    \N    male
12489    Ava    Monahan    soledad_mcclure@okon.name    \N    Wallis and Futuna    Hermistonside    88759 Mohr Ranch    78858    Florida    2016-07-26 12:28:40.288452    2016-10-14 13:02:36.340031        \N    \N    \N    0    \N    \N    \N    \N    male
12490    Isai    Streich    colten_powlowski@larson.name    \N    Angola    Traceyton    14110 Adele Valley    38223    Delaware    2016-07-18 07:34:14.178021    2016-10-14 13:02:36.344915        \N    \N    \N    0    \N    \N    \N    \N    female
12491    Frances    Conroy    jalen@shields.org    \N    Serbia    New Daija    2599 Cassidy Glens    82867    Illinois    2016-08-09 10:58:46.843696    2016-10-14 13:02:36.350188        \N    \N    \N    0    \N    \N    \N    \N    male
12492    Janet    Bernier    viola@marvinschneider.biz    \N    Romania    East Julioport    2477 Aubree Knolls    62814    Alabama    2016-09-12 15:26:13.928504    2016-10-14 13:02:36.354882        \N    \N    \N    0    \N    \N    \N    \N    female
12493    Desmond    Huels    alana_kunde@mcglynn.info    \N    Kazakhstan    New Louisa    1969 Cleora Trafficway    17723    Utah    2016-07-26 07:31:05.964253    2016-10-14 13:02:36.359303        \N    \N    \N    0    \N    \N    \N    \N    male
12494    Laurie    Emard    burley@robel.co    \N    Tunisia    Port Karley    51519 Maybell Shore    44513    Colorado    2016-06-25 15:11:44.064094    2016-10-14 13:02:36.363708        \N    \N    \N    0    \N    \N    \N    \N    female
12495    Roxanne    Huels    shanon_hartmann@robelhowell.biz    \N    Turks and Caicos Islands    Chaunceyborough    638 Mraz Course    48496-3000    New York    2016-07-15 15:18:49.634592    2016-10-14 13:02:36.368101        \N    \N    \N    0    \N    \N    \N    \N    male
12496    Myrtice    Rosenbaum    kendrick@rippin.name    \N    Republic of Korea    New Moriah    4775 Kris Estates    64950    Colorado    2016-08-26 02:35:53.009965    2016-10-14 13:02:36.372449        \N    \N    \N    0    \N    \N    \N    \N    female
12497    Lonnie    Skiles    ozzie_weber@wolf.net    \N    Israel    South Rowlandview    9295 Teagan Ferry    85638-5503    Vermont    2016-07-19 09:07:50.757451    2016-10-14 13:02:36.376902        \N    \N    \N    0    \N    \N    \N    \N    female
12498    Vidal    Lakin    jenifer_osinski@gutmann.info    \N    Tonga    New Ivahstad    5677 Schumm Summit    18763-6665    Louisiana    2016-09-21 14:35:35.66404    2016-10-14 13:02:36.382625        \N    \N    \N    0    \N    \N    \N    \N    male
12499    Alfred    Breitenberg    bria@cronin.com    \N    Marshall Islands    Eldredside    7804 Josie Prairie    10825-2059    Virginia    2016-09-01 21:51:54.528119    2016-10-14 13:02:36.388427        \N    \N    \N    0    \N    \N    \N    \N    male
12500    Tremayne    Upton    jackie@schinner.co    \N    Mayotte    Ezequieltown    1118 Vanessa Corners    31057    South Carolina    2016-09-01 09:18:58.533755    2016-10-14 13:02:36.392773        \N    \N    \N    0    \N    \N    \N    \N    female
12501    Juvenal    Schultz    virgil_koepp@gleichner.org    \N    Pitcairn Islands    Laylabury    452 Yundt Dale    19140-8120    Mississippi    2016-09-25 16:48:17.014667    2016-10-14 13:02:36.39868        \N    \N    \N    0    \N    \N    \N    \N    male
12502    Adolphus    Mayert    drew_runte@roberts.org    \N    Japan    New Lucienne    4765 Zieme Stream    85557    Massachusetts    2016-08-17 00:19:22.554285    2016-10-14 13:02:36.426352        \N    \N    \N    0    \N    \N    \N    \N    female
12503    Gussie    Stoltenberg    ardella.torp@lehnerheel.io    \N    Bermuda    Lake Antonettaville    9285 Louisa Station    44041-8077    Kentucky    2016-07-08 10:27:36.283997    2016-10-14 13:02:36.433158        \N    \N    \N    0    \N    \N    \N    \N    male
12504    Elliott    Hilll    tony@simonis.com    \N    Philippines    South Berryview    211 Predovic Canyon    71734-2219    Indiana    2016-07-02 08:09:15.881814    2016-10-14 13:02:36.438726        \N    \N    \N    0    \N    \N    \N    \N    female
12505    Jaylen    Stehr    fern_lubowitz@oconnell.com    \N    Afghanistan    Lake Juddburgh    100 Annamarie Tunnel    15163-6362    Michigan    2016-07-20 22:19:50.72109    2016-10-14 13:02:36.443519        \N    \N    \N    0    \N    \N    \N    \N    female
12506    Davin    Corkery    rosella.pouros@stoltenberg.info    \N    French Guiana    East Wade    57703 Imogene Branch    47731    Nevada    2016-08-05 20:06:34.812455    2016-10-14 13:02:36.449899        \N    \N    \N    0    \N    \N    \N    \N    female
12507    Kyra    Reynolds    tyrese@will.com    \N    Saint Vincent and the Grenadines    Steuberport    683 Johnson Ford    69214    South Dakota    2016-06-27 06:39:12.966816    2016-10-14 13:02:36.455441        \N    \N    \N    0    \N    \N    \N    \N    female
12508    Finn    Schaden    jarred@wardskiles.name    \N    Norway    Port Jesus    24179 Ritchie Villages    36335-3575    New Mexico    2016-07-25 02:04:00.856044    2016-10-14 13:02:36.460638        \N    \N    \N    0    \N    \N    \N    \N    male
12509    Sally    Fahey    braxton_waelchi@creminrobel.com    \N    Micronesia    North Nickolasview    79988 Howell Plaza    68013-5418    California    2016-07-30 22:40:51.250123    2016-10-14 13:02:36.466533        \N    \N    \N    0    \N    \N    \N    \N    female
12510    Lucy    Hintz    mack_renner@witting.com    \N    Peru    North Alessandro    4063 Dickinson Crest    28473    Vermont    2016-08-05 14:15:02.72274    2016-10-14 13:02:36.471495        \N    \N    \N    0    \N    \N    \N    \N    male
12511    Wade    Boyle    carmen@hartmann.com    \N    Bouvet Island (Bouvetoya)    Yasmeenborough    2405 Antonetta Causeway    25500-4518    Michigan    2016-09-18 01:12:59.749833    2016-10-14 13:02:36.48253        \N    \N    \N    0    \N    \N    \N    \N    female
12512    Ariel    Hermann    maya_turcotte@bayer.org    \N    United States Minor Outlying Islands    Deckowside    41632 Amina Green    40537-9796    Kansas    2016-08-11 17:41:48.737452    2016-10-14 13:02:36.497712        \N    \N    \N    0    \N    \N    \N    \N    female
12513    Bethel    Mueller    aric_yost@grant.name    \N    Saint Martin    Port Winnifred    4977 Sipes Skyway    67773    West Virginia    2016-07-12 02:21:18.547027    2016-10-14 13:02:36.505085        \N    \N    \N    0    \N    \N    \N    \N    female
12515    Elza    Ebert    orlando_heel@watsicabruen.co    \N    Belarus    Hesselton    625 Kris Falls    92860-2683    Montana    2016-09-16 18:37:44.784671    2016-10-14 13:02:36.51119        \N    \N    \N    0    \N    \N    \N    \N    male
12516    Abagail    Mills    julio@veumwunsch.com    \N    Australia    Phoebeburgh    36328 Theron Mountains    48145    Missouri    2016-07-11 05:21:08.306806    2016-10-14 13:02:36.52285        \N    \N    \N    0    \N    \N    \N    \N    male
12517    Gabriella    Denesik    taurean@mayer.com    \N    Grenada    New Hannah    3141 Rick Views    86442-3301    Kentucky    2016-09-17 18:50:04.748859    2016-10-14 13:02:36.530318        \N    \N    \N    0    \N    \N    \N    \N    female
12518    Gianni    Ortiz    abbigail.bednar@jacobsonmacejkovic.org    \N    Haiti    Lake Dustyton    3116 Alejandrin Canyon    30388-3311    North Carolina    2016-08-03 18:40:31.550748    2016-10-14 13:02:36.538132        \N    \N    \N    0    \N    \N    \N    \N    female
12519    Joana    Waelchi    zena.swaniawski@green.biz    \N    Saint Kitts and Nevis    Trystanshire    752 Laurie Bypass    61615-8507    Ohio    2016-08-23 14:52:46.909623    2016-10-14 13:02:36.546324        \N    \N    \N    0    \N    \N    \N    \N    male
12520    Johnathan    Schultz    diana_doyle@fritsch.info    \N    New Zealand    Constantinside    16654 Prosacco Divide    55840    Rhode Island    2016-09-17 19:54:25.685494    2016-10-14 13:02:36.555151        \N    \N    \N    0    \N    \N    \N    \N    male
12521    Major    Jaskolski    elaina@carroll.co    \N    Cameroon    Cartwrightmouth    7464 Rigoberto Greens    91754    New Jersey    2016-07-18 12:10:20.935075    2016-10-14 13:02:36.56207        \N    \N    \N    0    \N    \N    \N    \N    male
12522    Madaline    Pollich    jeramie.altenwerth@volkman.io    \N    Cape Verde    East Osbornechester    883 Denesik Square    66733-5934    South Carolina    2016-08-04 18:07:52.47581    2016-10-14 13:02:36.567666        \N    \N    \N    0    \N    \N    \N    \N    female
12523    Marquise    Paucek    merritt_kilback@kiehn.co    \N    Slovenia    Powlowskibury    43802 Emie Course    63134    Connecticut    2016-09-09 08:01:38.763405    2016-10-14 13:02:36.572885        \N    \N    \N    0    \N    \N    \N    \N    female
12525    Enoch    Stiedemann    clovis@kozeyjohnston.com    \N    Romania    West Catalina    91216 Hoppe Streets    74395-4666    Minnesota    2016-09-23 06:51:07.932708    2016-10-14 13:02:36.577391        \N    \N    \N    0    \N    \N    \N    \N    female
12526    Salvador    Schuster    jammie@gleasonjast.com    \N    Monaco    Abbottchester    7729 Cormier Plaza    72730    Texas    2016-07-19 21:18:28.872677    2016-10-14 13:02:36.581684        \N    \N    \N    0    \N    \N    \N    \N    male
12527    Dennis    Pfeffer    minnie_effertz@satterfieldpouros.net    \N    Netherlands    Wiegandland    849 Lenny Circle    77546-4411    Utah    2016-07-09 03:14:22.25384    2016-10-14 13:02:36.586684        \N    \N    \N    0    \N    \N    \N    \N    female
12528    Kurt    Kutch    felicia@zieme.co    \N    Venezuela    Thaddeusshire    9696 Nolan Gateway    85946-7181    Utah    2016-07-29 08:10:35.024612    2016-10-14 13:02:36.591121        \N    \N    \N    0    \N    \N    \N    \N    female
12529    Antoinette    Grimes    bret.reilly@robel.biz    \N    Romania    West Larue    362 Prosacco Mission    98559    New York    2016-08-24 14:39:14.923557    2016-10-14 13:02:36.596739        \N    \N    \N    0    \N    \N    \N    \N    male
12530    Reed    Robel    americo_oreilly@oberbrunner.info    \N    Turkey    New Estel    350 Keely Village    74494-7358    Kansas    2016-08-25 10:52:08.901911    2016-10-14 13:02:36.601461        \N    \N    \N    0    \N    \N    \N    \N    male
12531    Reymundo    Hermann    ulices.konopelski@legros.biz    \N    Barbados    South Richmondmouth    12101 Dixie Burgs    28548    New Hampshire    2016-08-27 17:35:24.23328    2016-10-14 13:02:36.607515        \N    \N    \N    0    \N    \N    \N    \N    male
12532    Madelyn    Ullrich    kacey.dietrich@wolf.org    \N    Kuwait    Delltown    8474 Hodkiewicz Passage    69102    Vermont    2016-08-16 19:19:08.77216    2016-10-14 13:02:36.617555        \N    \N    \N    0    \N    \N    \N    \N    female
12533    Hilton    Fahey    alvis@stoltenberg.info    \N    Christmas Island    Thaddeusshire    969 Efren Light    14791-1891    Maryland    2016-07-15 04:55:42.034259    2016-10-14 13:02:36.62474        \N    \N    \N    0    \N    \N    \N    \N    male
12534    Laurie    Wilkinson    gabrielle.bosco@cummingchiller.net    \N    Bahamas    Croninview    2212 Cummerata Islands    56805    Colorado    2016-09-23 00:31:57.665406    2016-10-14 13:02:36.630698        \N    \N    \N    0    \N    \N    \N    \N    female
12535    Martine    Armstrong    devan@wisozk.net    \N    Bermuda    New Julien    101 Aglae Village    25254    Missouri    2016-09-28 23:30:09.481726    2016-10-14 13:02:36.636452        \N    \N    \N    0    \N    \N    \N    \N    female
12536    Mark    Durgan    brando.erdman@blickcorwin.info    \N    Myanmar    North Dariontown    1048 Metz Lake    35372    Virginia    2016-07-20 08:26:53.941588    2016-10-14 13:02:36.641553        \N    \N    \N    0    \N    \N    \N    \N    male
12537    Abby    Roob    jefferey@osinski.biz    \N    Cambodia    South Antwan    20504 Ines Pass    33448    Oregon    2016-08-18 17:13:51.890371    2016-10-14 13:02:36.647032        \N    \N    \N    0    \N    \N    \N    \N    male
12538    Yvonne    Kutch    ricky@mannreinger.name    \N    Burundi    North Mazie    90330 Rohan Road    88577    Tennessee    2016-09-18 22:54:57.520208    2016-10-14 13:02:36.651431        \N    \N    \N    0    \N    \N    \N    \N    male
12539    Erik    Wolf    sally.prosacco@medhurst.co    \N    New Caledonia    Rachelleside    315 Erling Shoals    27622-0722    Hawaii    2016-07-28 21:47:33.124346    2016-10-14 13:02:36.655957        \N    \N    \N    0    \N    \N    \N    \N    female
12540    Perry    Pfeffer    libbie.hilpert@ernser.biz    \N    Nauru    South Monserrate    92185 Bart Valleys    29623-7846    Idaho    2016-07-31 22:53:15.383062    2016-10-14 13:02:36.660498        \N    \N    \N    0    \N    \N    \N    \N    male
12541    Moshe    Langworth    graham.dicki@bernhardbeatty.co    \N    Barbados    Streichbury    6281 Arthur Field    98883    Maryland    2016-07-26 12:16:14.278031    2016-10-14 13:02:36.665253        \N    \N    \N    0    \N    \N    \N    \N    female
12542    Jamel    Kuphal    cortez@leuschke.net    \N    Turkmenistan    Port Loramouth    54141 Grimes Greens    61619    Indiana    2016-08-18 02:49:49.302123    2016-10-14 13:02:36.670376        \N    \N    \N    0    \N    \N    \N    \N    male
12543    Cathryn    Rosenbaum    filomena_gerhold@cruickshank.co    \N    Cayman Islands    Parkerfurt    95329 Roman Plain    46019-2493    Michigan    2016-07-12 17:54:17.357807    2016-10-14 13:02:36.674975        \N    \N    \N    0    \N    \N    \N    \N    female
12544    Rex    Grady    samanta@hamill.io    \N    Sierra Leone    Rosenbaumview    2181 Deon Road    27441-4812    Georgia    2016-09-09 14:20:49.386052    2016-10-14 13:02:36.679715        \N    \N    \N    0    \N    \N    \N    \N    female
12545    Lizzie    Olson    rickie@koshields.com    \N    French Guiana    West Marlinburgh    3717 Kobe Grove    80950-5050    Georgia    2016-07-05 09:16:56.075077    2016-10-14 13:02:36.685025        \N    \N    \N    0    \N    \N    \N    \N    male
12546    Darrell    Olson    jared.keeling@ko.io    \N    Cambodia    Adriannamouth    281 Ephraim Throughway    93656-6150    Minnesota    2016-07-12 03:28:23.636767    2016-10-14 13:02:36.690256        \N    \N    \N    0    \N    \N    \N    \N    female
12547    Wilfrid    Bailey    sedrick_hermann@smitham.org    \N    Palau    West Gerry    13873 Christiansen Mill    97545-5853    South Dakota    2016-07-06 11:28:58.689561    2016-10-14 13:02:36.695456        \N    \N    \N    0    \N    \N    \N    \N    female
12548    Deon    Roberts    tatyana@shanahanbartoletti.co    \N    Slovakia (Slovak Republic)    Daijafort    6273 Gleichner Shores    13556    Maryland    2016-08-30 03:49:02.74011    2016-10-14 13:02:36.700455        \N    \N    \N    0    \N    \N    \N    \N    female
12549    Annabell    Corkery    leo_crooks@schultz.name    \N    South Georgia and the South Sandwich Islands    Monahanland    710 Dallin Falls    88229    Kentucky    2016-09-19 17:31:19.150669    2016-10-14 13:02:36.707727        \N    \N    \N    0    \N    \N    \N    \N    male
12550    Belle    Casper    hope_wisoky@okon.net    \N    Virgin Islands, U.S.    Santinatown    673 Mark Lane    54433    Kansas    2016-09-02 22:45:48.521938    2016-10-14 13:02:36.71362        \N    \N    \N    0    \N    \N    \N    \N    male
12551    Bernadine    Aufderhar    esther_predovic@brown.info    \N    Bermuda    Zemlakview    58697 Donald Wells    36143    Missouri    2016-07-14 10:06:27.410274    2016-10-14 13:02:36.718541        \N    \N    \N    0    \N    \N    \N    \N    female
12552    Ewell    Rutherford    jakayla.skiles@mclaughlindurgan.biz    \N    India    North Blaiseberg    652 Lucile Crescent    13222    Hawaii    2016-09-21 09:24:19.816486    2016-10-14 13:02:36.723565        \N    \N    \N    0    \N    \N    \N    \N    male
12553    Marshall    Howe    nathanial@morarkutch.com    \N    Peru    Runolfsdottirchester    25906 Rahul Coves    89931-2383    Illinois    2016-07-09 20:59:01.834147    2016-10-14 13:02:36.728303        \N    \N    \N    0    \N    \N    \N    \N    male
12554    Watson    Conn    jana@bartoletti.info    \N    Nicaragua    Violaburgh    436 Streich Ridges    32372-8776    Missouri    2016-08-17 04:21:57.325082    2016-10-14 13:02:36.734583        \N    \N    \N    0    \N    \N    \N    \N    female
12555    Carleton    Bauch    tremayne@mcglynn.net    \N    Nicaragua    Josiahchester    7955 Raynor Path    64181    Illinois    2016-08-10 04:19:51.138663    2016-10-14 13:02:36.741934        \N    \N    \N    0    \N    \N    \N    \N    female
12556    Marjolaine    Murazik    edwina@gorczanyrohan.name    \N    Cyprus    South Wilma    5833 Rupert Keys    97384    North Dakota    2016-09-08 02:09:57.060627    2016-10-14 13:02:36.747957        \N    \N    \N    0    \N    \N    \N    \N    female
12557    Mariela    Glover    shaylee_larkin@bahringer.org    \N    Paraguay    Port Joannechester    5375 Predovic Junctions    19433-7828    Massachusetts    2016-09-01 12:12:34.190337    2016-10-14 13:02:36.753989        \N    \N    \N    0    \N    \N    \N    \N    female
12558    Cheyanne    Fritsch    madalyn@orn.org    \N    Belarus    Lake Nicolasview    54461 Aufderhar Plains    29994    Nebraska    2016-07-04 12:29:35.074639    2016-10-14 13:02:36.759201        \N    \N    \N    0    \N    \N    \N    \N    male
12559    Morris    Wisozk    eladio.hintz@steuber.biz    \N    Afghanistan    Langoshland    365 Autumn Point    37747-0464    West Virginia    2016-08-22 10:26:22.42746    2016-10-14 13:02:36.763861        \N    \N    \N    0    \N    \N    \N    \N    female
12560    Alize    Schimmel    sydney.roberts@hyatt.io    \N    Democratic People's Republic of Korea    East Loraine    9936 Cronin Loaf    75239    Missouri    2016-09-25 21:54:12.252993    2016-10-14 13:02:36.768604        \N    \N    \N    0    \N    \N    \N    \N    male
12561    Peter    Schultz    josiane@gislasonmarks.co    \N    Marshall Islands    Shanelleport    776 Tiana Stravenue    38259-2081    Arizona    2016-09-16 23:13:17.550672    2016-10-14 13:02:36.774804        \N    \N    \N    0    \N    \N    \N    \N    male
12562    Quinten    Frami    bettye.watsica@binskilback.net    \N    Germany    South Ivy    573 Wintheiser Bridge    20187-7459    Massachusetts    2016-09-08 14:42:56.199175    2016-10-14 13:02:36.780337        \N    \N    \N    0    \N    \N    \N    \N    male
12563    Jayda    Green    keira.hills@hackett.info    \N    Slovenia    Port Nickberg    62297 Bartoletti Circle    77592    Oklahoma    2016-07-01 09:46:12.441898    2016-10-14 13:02:36.785588        \N    \N    \N    0    \N    \N    \N    \N    female
12564    Khalil    Collier    maria@greenholtprohaska.co    \N    Virgin Islands, U.S.    Ricechester    1208 Carter Rapid    81176    California    2016-07-01 02:23:11.139841    2016-10-14 13:02:36.790291        \N    \N    \N    0    \N    \N    \N    \N    male
12565    Wilfredo    Medhurst    grayson@ernser.name    \N    Marshall Islands    Goodwinfurt    32484 Hudson Forest    43679-6411    North Carolina    2016-07-25 22:13:09.792676    2016-10-14 13:02:36.794648        \N    \N    \N    0    \N    \N    \N    \N    male
12566    Jalyn    Quigley    luna_price@kuhlmantreutel.org    \N    Slovenia    Port Edythefort    8158 Rocio Islands    90421    Ohio    2016-08-17 11:17:38.974256    2016-10-14 13:02:36.799659        \N    \N    \N    0    \N    \N    \N    \N    male
12567    Leonora    Senger    felicity_hickle@carrollvolkman.co    \N    Sri Lanka    Davonburgh    9367 Volkman Curve    69223-4607    Maryland    2016-08-15 14:55:39.336362    2016-10-14 13:02:36.804382        \N    \N    \N    0    \N    \N    \N    \N    male
12568    Fleta    Crist    brisa@kuhlmangottlieb.biz    \N    Mongolia    Lake Dextermouth    492 Larkin Prairie    46694-9585    Tennessee    2016-08-11 17:08:54.559714    2016-10-14 13:02:36.80929        \N    \N    \N    0    \N    \N    \N    \N    female
13142    Selmer    Crooks    seth_mayer@powlowski.name    \N    Luxembourg    South Carlo    933 Taya Lock    88424    Wyoming    2016-08-26 06:05:44.607437    2016-10-14 13:02:40.372575        \N    \N    \N    0    \N    \N    \N    \N    female
12570    Katherine    Kerluke    jeyca.rice@halvorsonsmith.io    \N    Lithuania    Langchester    895 Felicita Ports    98591    South Dakota    2016-06-27 18:46:49.52996    2016-10-14 13:02:36.820283        \N    \N    \N    0    \N    \N    \N    \N    male
12571    Era    Ernser    stanton@bartonmertz.org    \N    Tunisia    Olliehaven    6439 Stracke Avenue    77124-8948    Washington    2016-08-18 23:07:09.453651    2016-10-14 13:02:36.824449        \N    \N    \N    0    \N    \N    \N    \N    male
12572    Antonina    Rath    lonnie.eichmann@torplesch.info    \N    Zambia    Obiefurt    188 Lockman Ridge    90437-4712    Washington    2016-09-17 13:19:00.208003    2016-10-14 13:02:36.829789        \N    \N    \N    0    \N    \N    \N    \N    female
12573    Ansel    Thiel    reta_kertzmann@sporer.biz    \N    Northern Mariana Islands    Goyettemouth    44454 Christiansen Oval    68311    Indiana    2016-09-16 05:21:27.467518    2016-10-14 13:02:36.835424        \N    \N    \N    0    \N    \N    \N    \N    male
12574    Destiny    Veum    pedro@ebert.com    \N    Gabon    Lake Joannymouth    65983 Mertz Shoals    52562    Washington    2016-07-18 03:00:29.050756    2016-10-14 13:02:36.841079        \N    \N    \N    0    \N    \N    \N    \N    male
12575    Andreane    Daugherty    lauriane_hirthe@deckow.info    \N    Benin    West Jadyn    959 Anderson Lights    15064-5641    Florida    2016-08-07 03:19:18.011455    2016-10-14 13:02:36.845727        \N    \N    \N    0    \N    \N    \N    \N    male
12576    Marques    Green    aron@predovic.io    \N    Cape Verde    Lake Leopoldo    1989 Welch Shoal    73782-0105    Alaska    2016-07-16 16:37:57.493551    2016-10-14 13:02:36.85036        \N    \N    \N    0    \N    \N    \N    \N    male
12577    Delmer    Schoen    sarah_crona@bechtelarhomenick.co    \N    Tonga    North Blaze    179 Laurence Point    11136    Arkansas    2016-09-03 15:21:42.267874    2016-10-14 13:02:36.855884        \N    \N    \N    0    \N    \N    \N    \N    female
12578    Loraine    Nader    sam.waelchi@schaeferbalistreri.com    \N    Moldova    Titusview    516 Huels Unions    10850    Alaska    2016-09-24 17:11:00.661651    2016-10-14 13:02:36.861345        \N    \N    \N    0    \N    \N    \N    \N    female
12579    Paul    Kuvalis    sallie@dachlarkin.co    \N    Saint Lucia    Rolfsonhaven    466 Goyette Lodge    54202    Ohio    2016-09-07 19:58:15.812386    2016-10-14 13:02:36.86569        \N    \N    \N    0    \N    \N    \N    \N    female
12580    Dariana    O'Hara    ora_steuber@hermiston.org    \N    Palau    Aubreechester    86705 Mandy Street    29162-7091    Vermont    2016-09-23 19:35:02.994288    2016-10-14 13:02:36.870087        \N    \N    \N    0    \N    \N    \N    \N    female
12581    Antonia    Barton    owen@mertz.biz    \N    Cyprus    Lindsaytown    739 Green Crossing    77760    South Carolina    2016-07-25 18:53:11.287608    2016-10-14 13:02:36.874836        \N    \N    \N    0    \N    \N    \N    \N    female
12582    Keegan    Rice    rylee@hoppe.name    \N    Morocco    Lake Dorthychester    8403 Shakira Wells    83364-0185    Tennessee    2016-06-26 04:22:22.453054    2016-10-14 13:02:36.880823        \N    \N    \N    0    \N    \N    \N    \N    female
12583    Angie    Windler    megane.mccullough@lindgren.io    \N    Niger    North Ashleeville    16889 Jana Crescent    42671-2003    North Dakota    2016-08-29 08:54:19.363427    2016-10-14 13:02:36.885867        \N    \N    \N    0    \N    \N    \N    \N    male
12584    Mackenzie    Treutel    clovis_boyle@reichelquigley.biz    \N    Bermuda    Kellybury    7601 Gulgowski Branch    19947-9049    Alaska    2016-08-14 07:53:27.878193    2016-10-14 13:02:36.89071        \N    \N    \N    0    \N    \N    \N    \N    female
12585    Freda    Balistreri    israel_thompson@padberg.info    \N    Uzbekistan    Johnstonside    448 Jerrold Estate    65063-7855    Arizona    2016-07-17 08:10:56.738085    2016-10-14 13:02:36.89513        \N    \N    \N    0    \N    \N    \N    \N    male
12587    Bradly    Lang    rene.schinner@ullrich.biz    \N    Liberia    South Randal    61614 Sincere Lake    35510    Connecticut    2016-08-27 10:09:23.214386    2016-10-14 13:02:36.900928        \N    \N    \N    0    \N    \N    \N    \N    female
12588    Raheem    Weissnat    eduardo_cruickshank@lindgrengutkowski.co    \N    United Arab Emirates    South Anselmouth    4124 Rodriguez Stream    68294    Alabama    2016-09-02 04:25:31.073166    2016-10-14 13:02:36.905669        \N    \N    \N    0    \N    \N    \N    \N    male
12589    Billy    Cartwright    pamela@swift.org    \N    Saint Pierre and Miquelon    Dashawnfurt    50645 Zemlak Ferry    99281    Tennessee    2016-08-22 12:55:06.506245    2016-10-14 13:02:36.910448        \N    \N    \N    0    \N    \N    \N    \N    male
12590    Jackeline    West    myrna_davis@runolfsdottir.net    \N    Netherlands Antilles    O'Konview    796 Christy Run    81839    Indiana    2016-07-29 18:47:52.936288    2016-10-14 13:02:36.915108        \N    \N    \N    0    \N    \N    \N    \N    male
12591    Vance    Shanahan    trevion@bradtke.net    \N    Lithuania    Considinestad    5963 Frami Fort    85756-0686    New Mexico    2016-09-20 06:38:55.055429    2016-10-14 13:02:36.919803        \N    \N    \N    0    \N    \N    \N    \N    female
12592    Joyce    Breitenberg    gail_bednar@prohaskahaag.co    \N    Palau    Swaniawskiland    49799 Alexys Landing    75765-4718    Rhode Island    2016-08-07 18:36:15.848421    2016-10-14 13:02:36.925837        \N    \N    \N    0    \N    \N    \N    \N    female
12593    Abbigail    Smith    enrique@cummings.com    \N    Tanzania    Gorczanyfurt    393 Nora Bypass    91627-2859    West Virginia    2016-07-27 20:10:01.391152    2016-10-14 13:02:36.930767        \N    \N    \N    0    \N    \N    \N    \N    female
12594    Assunta    Wiegand    patsy@waterscruickshank.name    \N    Belize    New Meggiehaven    564 Gleichner Inlet    43864-1412    Connecticut    2016-07-26 04:29:15.087883    2016-10-14 13:02:36.935234        \N    \N    \N    0    \N    \N    \N    \N    male
12595    Marguerite    Weber    dagmar@friesen.name    \N    Cape Verde    Port Jocelynland    4585 Erdman Glen    20571    Idaho    2016-09-01 07:31:51.418649    2016-10-14 13:02:36.939616        \N    \N    \N    0    \N    \N    \N    \N    male
12596    Korbin    Waters    domenick@murphy.io    \N    Zimbabwe    Hahnshire    9131 Donna Flats    27402    Wisconsin    2016-06-23 20:48:21.087581    2016-10-14 13:02:36.945475        \N    \N    \N    0    \N    \N    \N    \N    female
12597    Meredith    Fisher    catharine@okeefe.net    \N    Malaysia    South Christopherbury    2436 Noah Via    42872-2068    West Virginia    2016-09-02 17:41:43.041797    2016-10-14 13:02:36.950392        \N    \N    \N    0    \N    \N    \N    \N    male
12598    Eugenia    Roberts    branson@vandervort.com    \N    Ghana    Johnsonburgh    25109 Boehm Centers    17038    North Dakota    2016-07-12 13:29:57.883843    2016-10-14 13:02:36.955639        \N    \N    \N    0    \N    \N    \N    \N    male
12599    Liza    Turner    caie@hermann.io    \N    Montserrat    North Lilla    70646 Vladimir Tunnel    84094-7217    Florida    2016-07-27 03:09:48.43131    2016-10-14 13:02:36.960252        \N    \N    \N    0    \N    \N    \N    \N    female
12600    Cara    Weber    matilde@gorczany.org    \N    United States Minor Outlying Islands    Briceview    4081 Maria Pike    51418-4067    Kentucky    2016-09-24 00:28:56.44009    2016-10-14 13:02:36.970841        \N    \N    \N    0    \N    \N    \N    \N    male
12601    Jarrod    Mertz    hellen.anderson@stiedemanncrooks.name    \N    Ghana    North Bernhardhaven    84261 Bruen Courts    19150-8272    Wisconsin    2016-08-14 23:32:42.679474    2016-10-14 13:02:36.97574        \N    \N    \N    0    \N    \N    \N    \N    female
12602    Antonia    Waelchi    amir.bergstrom@doylefay.io    \N    Cuba    North Vanbury    527 Bechtelar Lock    72275-9814    Hawaii    2016-09-19 06:09:30.502006    2016-10-14 13:02:36.98043        \N    \N    \N    0    \N    \N    \N    \N    female
12603    Bettye    Kerluke    rozella.rau@hammeshammes.io    \N    Greenland    Lethaview    30892 Schmidt Cliff    53032-9523    Utah    2016-07-10 21:42:36.128445    2016-10-14 13:02:36.985357        \N    \N    \N    0    \N    \N    \N    \N    male
12604    Darien    Smitham    lenore_strosin@pacochadouglas.co    \N    Angola    Lubowitztown    27801 Golda Islands    39408    Pennsylvania    2016-09-06 04:20:35.064883    2016-10-14 13:02:36.990365        \N    \N    \N    0    \N    \N    \N    \N    male
12605    Katelynn    Boyer    floyd.emmerich@kilbacklowe.biz    \N    Denmark    South Lilian    35462 Alexandro Trail    37207    Florida    2016-07-13 06:38:01.253704    2016-10-14 13:02:36.995569        \N    \N    \N    0    \N    \N    \N    \N    male
12606    Ike    Ryan    mina@denesikheaney.com    \N    Nicaragua    New Quincyhaven    35968 Barton Islands    17308    Minnesota    2016-09-09 13:37:56.094701    2016-10-14 13:02:37.000775        \N    \N    \N    0    \N    \N    \N    \N    female
12607    Sherman    Marvin    petra.grimes@schmidt.net    \N    Honduras    Lockmanview    4086 Jonathon Meadows    58486-8682    Wisconsin    2016-08-11 04:49:52.831622    2016-10-14 13:02:37.006425        \N    \N    \N    0    \N    \N    \N    \N    male
12608    Johann    Rodriguez    will.moriette@damoresauer.biz    \N    Guernsey    Gibsonhaven    36742 Nash Crossing    87678-0404    West Virginia    2016-06-28 18:20:31.914048    2016-10-14 13:02:37.011462        \N    \N    \N    0    \N    \N    \N    \N    male
12609    Burnice    Monahan    nova.nikolaus@eichmannswaniawski.info    \N    American Samoa    Mohammedmouth    9520 Connelly Ports    27660    Missouri    2016-08-18 06:41:40.867133    2016-10-14 13:02:37.021778        \N    \N    \N    0    \N    \N    \N    \N    male
12610    Lexie    O'Keefe    jamie_konopelski@kiehnblanda.name    \N    Svalbard & Jan Mayen Islands    Lake Keaton    577 Kyra Route    85474    New Jersey    2016-07-11 09:02:10.187626    2016-10-14 13:02:37.027146        \N    \N    \N    0    \N    \N    \N    \N    female
12611    Odessa    Corkery    maye.collier@okondaniel.biz    \N    Paraguay    Bauchborough    578 Enid Plains    73824-8848    Hawaii    2016-07-26 07:01:59.255005    2016-10-14 13:02:37.031413        \N    \N    \N    0    \N    \N    \N    \N    male
12612    Luther    Sauer    michaela@kuphal.biz    \N    Hungary    Gutkowskishire    942 Aimee Loop    72569-1655    California    2016-08-06 16:22:19.562506    2016-10-14 13:02:37.037609        \N    \N    \N    0    \N    \N    \N    \N    male
12613    Eloisa    Keeling    cindy@funk.net    \N    Mozambique    East Randal    892 Gislason Parkway    60949-6063    Arkansas    2016-08-05 00:50:02.622618    2016-10-14 13:02:37.044203        \N    \N    \N    0    \N    \N    \N    \N    male
12614    Juwan    Smith    diego.hamill@bednarbashirian.biz    \N    Azerbaijan    South Sandyland    8929 Rath Plaza    90848-2069    New Hampshire    2016-09-02 17:48:27.164479    2016-10-14 13:02:37.050028        \N    \N    \N    0    \N    \N    \N    \N    female
12615    Frances    Mante    emmett.lockman@jones.info    \N    Isle of Man    Port Nichole    975 Gottlieb Canyon    76446    Alaska    2016-07-25 16:57:16.960624    2016-10-14 13:02:37.054111        \N    \N    \N    0    \N    \N    \N    \N    male
13237    Fletcher    Russel    marlin@dare.org    \N    Cameroon    Yazminville    5840 Otto Lodge    99085-4306    California    2016-07-27 04:13:50.761105    2016-10-14 13:02:40.940025        \N    \N    \N    0    \N    \N    \N    \N    male
12616    Travis    Jones    harry_hansen@howeoconner.io    \N    Falkland Islands (Malvinas)    West Juniorland    53998 Melody Turnpike    46997    Rhode Island    2016-07-02 03:11:41.122625    2016-10-14 13:02:37.058451        \N    \N    \N    0    \N    \N    \N    \N    female
12617    Brady    Kutch    maude.swift@morar.name    \N    Norfolk Island    Port Marahaven    876 Howell Fords    22639    Nebraska    2016-09-26 21:27:59.068158    2016-10-14 13:02:37.064397        \N    \N    \N    0    \N    \N    \N    \N    female
12618    Margot    Schroeder    lauriane_nader@yosttorp.name    \N    Mayotte    Lanceland    6749 Lueilwitz Squares    73838    Mississippi    2016-09-15 06:47:56.133411    2016-10-14 13:02:37.070148        \N    \N    \N    0    \N    \N    \N    \N    female
12619    Olin    Ryan    henriette@conroy.io    \N    Mozambique    Morarborough    81492 Price Ridge    30002    South Carolina    2016-08-06 05:53:30.15328    2016-10-14 13:02:37.075317        \N    \N    \N    0    \N    \N    \N    \N    male
12620    Joanny    Kutch    pete@kuvalis.net    \N    Dominica    Moenchester    443 Aisha Pines    96179-3930    Illinois    2016-09-03 02:16:43.623386    2016-10-14 13:02:37.081389        \N    \N    \N    0    \N    \N    \N    \N    male
12621    Alvena    Medhurst    dasia_lind@bayer.net    \N    Dominica    Strosinstad    25120 Hayes Summit    28252-9809    Minnesota    2016-09-19 02:55:18.868847    2016-10-14 13:02:37.088262        \N    \N    \N    0    \N    \N    \N    \N    female
12622    Americo    Stanton    makenzie@keeling.io    \N    Falkland Islands (Malvinas)    Kendrickfurt    16812 Kerluke Mill    55651    West Virginia    2016-08-26 16:05:28.558059    2016-10-14 13:02:37.100108        \N    \N    \N    0    \N    \N    \N    \N    male
12623    Cullen    Paucek    meta@reillyryan.net    \N    Suriname    New Oswaldochester    73344 Orn Tunnel    26087    New York    2016-06-26 17:35:13.834806    2016-10-14 13:02:37.104929        \N    \N    \N    0    \N    \N    \N    \N    male
12624    Amie    Pfannerstill    alivia@bayer.org    \N    Tunisia    Koelpinmouth    42439 Thad Heights    28224    Virginia    2016-09-16 13:35:54.6772    2016-10-14 13:02:37.114454        \N    \N    \N    0    \N    \N    \N    \N    male
12625    Lexi    Reynolds    nolan.considine@macgyverveum.biz    \N    Guatemala    Ortizton    71423 Quitzon Glen    49898-9871    Arkansas    2016-08-18 17:21:42.248236    2016-10-14 13:02:37.126858        \N    \N    \N    0    \N    \N    \N    \N    male
12626    Arturo    Dibbert    loraine@hoegerrunte.name    \N    Luxembourg    Howeville    3237 Hugh Mountain    23936-1051    Louisiana    2016-06-26 15:24:30.956119    2016-10-14 13:02:37.133353        \N    \N    \N    0    \N    \N    \N    \N    female
12627    Abagail    Dibbert    krystal.satterfield@bradtke.com    \N    Turks and Caicos Islands    Nitzscheside    92227 Jamarcus Garden    68223-1532    Delaware    2016-09-13 15:06:18.038195    2016-10-14 13:02:37.140315        \N    \N    \N    0    \N    \N    \N    \N    female
12628    Callie    Hansen    reid.lebsack@pollich.co    \N    Venezuela    Robinfurt    14629 Enola Parks    94807    Maryland    2016-07-06 06:06:44.514845    2016-10-14 13:02:37.150908        \N    \N    \N    0    \N    \N    \N    \N    male
12629    Angelica    Kirlin    guie.towne@mclaughlin.org    \N    Oman    Dashawnfurt    1586 Abraham Keys    49498-2471    Arkansas    2016-09-28 17:06:26.930698    2016-10-14 13:02:37.155878        \N    \N    \N    0    \N    \N    \N    \N    male
14937    Jeff    Muller    noah.grimes@schneider.org    \N    Malta    Stokestown    5838 Evan Key    79159-5896    Iowa    2016-08-12 07:53:31.682654    2016-10-14 13:02:37.168139        \N    \N    \N    0    \N    \N    \N    \N    female
12675    Rylan    Effertz    bill_hansen@runte.co    \N    Senegal    New Edgardo    9869 Dexter Mountains    22974    Illinois    2016-09-13 15:52:01.004201    2016-10-14 13:02:37.176641        \N    \N    \N    0    \N    \N    \N    \N    female
12630    Ellis    McGlynn    katharina_kshlerin@volkmanebert.name    \N    Democratic People's Republic of Korea    Cronaport    9774 Stroman Plains    89223    Georgia    2016-06-24 17:09:21.259766    2016-10-14 13:02:37.181973        \N    \N    \N    0    \N    \N    \N    \N    female
12631    Arnaldo    Steuber    mya@goyette.co    \N    Saint Lucia    Vicenteview    742 Shaun Garden    64299    Minnesota    2016-09-22 00:15:42.950873    2016-10-14 13:02:37.186516        \N    \N    \N    0    \N    \N    \N    \N    female
12632    Noe    Braun    turner@powlowskijacobson.io    \N    Bangladesh    Lorastad    8877 Casper Square    69150-6465    Arkansas    2016-07-13 06:04:54.594095    2016-10-14 13:02:37.210804        \N    \N    \N    0    \N    \N    \N    \N    female
12633    Evie    Bashirian    rodrick@shields.info    \N    Grenada    Greenholtside    37388 Bayer Ville    58030    Mississippi    2016-09-01 01:11:42.442787    2016-10-14 13:02:37.22661        \N    \N    \N    0    \N    \N    \N    \N    female
12635    Frank    O'Reilly    sven@lefflerprohaska.name    \N    Dominican Republic    Port Amaya    98693 Hermiston Rapids    26182-1817    Arkansas    2016-07-03 22:14:01.389889    2016-10-14 13:02:37.233009        \N    \N    \N    0    \N    \N    \N    \N    female
12636    Malvina    Skiles    jaylan_kling@kilbackpfannerstill.org    \N    Israel    Milotown    14694 Herman Way    16412    Minnesota    2016-07-08 00:40:13.929868    2016-10-14 13:02:37.23767        \N    \N    \N    0    \N    \N    \N    \N    female
12637    Kendall    Schimmel    ezequiel@zboncak.biz    \N    Kyrgyz Republic    East Evie    372 Hilpert Overpass    63793    Nevada    2016-07-21 01:39:51.709053    2016-10-14 13:02:37.242949        \N    \N    \N    0    \N    \N    \N    \N    male
12638    Samantha    Franecki    robbie.auer@collins.org    \N    Martinique    Hayesville    641 Harris Via    15080    Maine    2016-08-11 16:36:06.509756    2016-10-14 13:02:37.249148        \N    \N    \N    0    \N    \N    \N    \N    female
12639    Connie    Torp    roslyn@senger.com    \N    Eritrea    Port Shyann    4196 Itzel View    55327    Florida    2016-08-20 06:47:06.469111    2016-10-14 13:02:37.259828        \N    \N    \N    0    \N    \N    \N    \N    female
12640    Jolie    Koelpin    irwin@greenfelderjacobs.co    \N    Russian Federation    Wilfridmouth    64980 Eleanora Prairie    79869    Idaho    2016-09-10 14:03:09.95698    2016-10-14 13:02:37.26882        \N    \N    \N    0    \N    \N    \N    \N    male
12641    Haven    Nader    brenden@beahan.biz    \N    Uganda    Lake Fernandotown    70225 Aric Squares    76431-8708    Washington    2016-09-09 11:35:31.036027    2016-10-14 13:02:37.27529        \N    \N    \N    0    \N    \N    \N    \N    male
12642    Jabari    Skiles    bridie.lowe@kuvalis.net    \N    Sri Lanka    Mitchellville    217 Frederic Drive    29376    Utah    2016-06-22 21:29:45.842666    2016-10-14 13:02:37.279902        \N    \N    \N    0    \N    \N    \N    \N    female
12643    Chadrick    Prosacco    earl_heathcote@feilschiller.name    \N    Norway    South Magnoliaside    2965 Schaden Ridge    96498-2453    Illinois    2016-08-31 22:20:09.84474    2016-10-14 13:02:37.287745        \N    \N    \N    0    \N    \N    \N    \N    male
12644    Napoleon    Zulauf    ulices.smitham@strosin.co    \N    Romania    North Deshawnmouth    526 Shemar Ferry    86868-6794    Oregon    2016-09-15 09:34:18.592972    2016-10-14 13:02:37.292529        \N    \N    \N    0    \N    \N    \N    \N    female
12645    Casandra    Thompson    ernest@greenholt.info    \N    Grenada    Rathborough    7946 Karelle Tunnel    69443    New Hampshire    2016-08-17 01:33:55.441003    2016-10-14 13:02:37.296985        \N    \N    \N    0    \N    \N    \N    \N    female
12646    Lonnie    Corwin    rita@waters.net    \N    Latvia    Robertsmouth    79248 Sanford Lake    99773    Illinois    2016-09-27 09:42:52.043611    2016-10-14 13:02:37.301395        \N    \N    \N    0    \N    \N    \N    \N    female
12647    Modesta    Ebert    alysha_stoltenberg@reichert.name    \N    Macedonia    New Reneeberg    52032 Grady Rapids    64984-2335    Arizona    2016-07-05 10:42:19.24452    2016-10-14 13:02:37.306145        \N    \N    \N    0    \N    \N    \N    \N    female
12648    Glenda    Wuckert    orlo.carroll@kiehn.net    \N    Angola    Champlinport    251 Lexi Shoal    48643-4365    Montana    2016-08-06 05:25:48.840029    2016-10-14 13:02:37.310835        \N    \N    \N    0    \N    \N    \N    \N    female
12649    Marge    Kuhlman    jazlyn_fahey@pagaclindgren.info    \N    Micronesia    South Simoneburgh    315 VonRueden Coves    27757-8812    West Virginia    2016-07-21 01:20:54.729906    2016-10-14 13:02:37.315968        \N    \N    \N    0    \N    \N    \N    \N    female
12650    Arne    Haag    johnny@lindmcglynn.name    \N    Saudi Arabia    Adolphborough    829 Nolan Mission    95724    Iowa    2016-09-03 10:09:06.939518    2016-10-14 13:02:37.321006        \N    \N    \N    0    \N    \N    \N    \N    female
12651    Raven    Paucek    edythe@cummings.info    \N    Russian Federation    South Evelyn    778 Schoen Center    58679-0430    Minnesota    2016-06-25 02:51:55.075088    2016-10-14 13:02:37.326687        \N    \N    \N    0    \N    \N    \N    \N    male
12652    Harmony    Greenholt    demarcus_waters@marks.info    \N    Malta    South Dejaland    79129 Quincy Common    23003    Connecticut    2016-09-24 11:02:34.814357    2016-10-14 13:02:37.332513        \N    \N    \N    0    \N    \N    \N    \N    female
12653    Brock    Rice    justina@johnsonstreich.com    \N    Belarus    Ortizland    346 Herbert Mills    73886-8853    Massachusetts    2016-07-16 13:02:10.823707    2016-10-14 13:02:37.338502        \N    \N    \N    0    \N    \N    \N    \N    male
12654    Jaiden    Wiegand    quinton@wilkinson.com    \N    Pakistan    Baumbachshire    477 Ebert Land    23738    Mississippi    2016-09-18 12:05:01.377158    2016-10-14 13:02:37.344573        \N    \N    \N    0    \N    \N    \N    \N    male
12655    Aisha    Mueller    curt@conn.org    \N    Vietnam    North Gabrielshire    516 Franecki Rue    95544    Colorado    2016-09-20 18:53:37.427968    2016-10-14 13:02:37.350259        \N    \N    \N    0    \N    \N    \N    \N    female
12656    Jalyn    Doyle    amira@schultzkonopelski.io    \N    Puerto Rico    Mayermouth    12525 Jakayla Field    81729    South Dakota    2016-06-23 06:03:01.384507    2016-10-14 13:02:37.358287        \N    \N    \N    0    \N    \N    \N    \N    female
12657    Hattie    Grady    dolly@schroeder.io    \N    Andorra    Darrionmouth    52422 Rogahn Locks    90028    Alabama    2016-06-24 22:21:28.055593    2016-10-14 13:02:37.366819        \N    \N    \N    0    \N    \N    \N    \N    male
12658    Shaun    D'Amore    marjorie@rohan.co    \N    Uzbekistan    Heidenreichport    72644 Rutherford Hills    94353    Missouri    2016-07-15 21:18:34.392445    2016-10-14 13:02:37.372593        \N    \N    \N    0    \N    \N    \N    \N    female
12659    Wyatt    Ortiz    rickie.schmeler@breitenberg.name    \N    Spain    Ondrickaton    5926 Rodrick Radial    67189    Alaska    2016-07-05 20:15:59.857688    2016-10-14 13:02:37.379169        \N    \N    \N    0    \N    \N    \N    \N    male
12660    Barton    Pfannerstill    shaun.mueller@sanford.co    \N    Kenya    Lake Elisebury    919 Stamm Harbor    88105    Delaware    2016-09-27 00:28:16.897818    2016-10-14 13:02:37.386237        \N    \N    \N    0    \N    \N    \N    \N    male
12661    Winfield    Thompson    carter.quitzon@feil.co    \N    Colombia    Aidenport    6078 Arno Groves    28284    New Mexico    2016-08-05 03:55:01.475922    2016-10-14 13:02:37.390551        \N    \N    \N    0    \N    \N    \N    \N    male
12662    Rickie    Nitzsche    thea@steuber.biz    \N    India    Kuvalisstad    5967 Stokes Rapids    65512-2572    Montana    2016-08-30 08:27:10.062677    2016-10-14 13:02:37.395123        \N    \N    \N    0    \N    \N    \N    \N    female
12663    Gerry    Dach    zechariah_becker@kuhlman.info    \N    Myanmar    South Montystad    8961 Shyann Shoal    50255-3825    Montana    2016-08-02 20:50:50.845517    2016-10-14 13:02:37.406845        \N    \N    \N    0    \N    \N    \N    \N    female
12664    Nico    Ritchie    dino.gottlieb@stehrziemann.name    \N    Rwanda    Schmelertown    4125 Von Dale    16083    North Dakota    2016-09-17 14:36:07.449463    2016-10-14 13:02:37.418832        \N    \N    \N    0    \N    \N    \N    \N    male
12665    Constance    Jaskolski    kim@mullerrosenbaum.net    \N    Bolivia    Parisianland    63571 Wehner Road    10195-6600    Alabama    2016-08-02 08:01:50.73456    2016-10-14 13:02:37.42797        \N    \N    \N    0    \N    \N    \N    \N    male
12666    Ora    Olson    milton@pagacgaylord.org    \N    French Southern Territories    Juliusberg    76192 Ladarius Turnpike    61744    Kentucky    2016-09-06 07:06:28.412177    2016-10-14 13:02:37.433035        \N    \N    \N    0    \N    \N    \N    \N    female
12667    Harvey    Bins    jules_anderson@labadieoberbrunner.com    \N    Croatia    East Jena    55194 Maximilian Gardens    53499    South Dakota    2016-07-03 00:57:32.007741    2016-10-14 13:02:37.440026        \N    \N    \N    0    \N    \N    \N    \N    male
12668    Lafayette    Padberg    adriana.hane@breitenberg.net    \N    Saint Pierre and Miquelon    Dayanaport    9735 Goyette Fall    77613    Montana    2016-08-20 18:49:37.731094    2016-10-14 13:02:37.450521        \N    \N    \N    0    \N    \N    \N    \N    female
12669    Sydney    Denesik    joan@moorecrooks.com    \N    Russian Federation    Lakinfurt    831 Delphia Plains    62332-1306    Ohio    2016-08-28 02:19:13.401051    2016-10-14 13:02:37.457215        \N    \N    \N    0    \N    \N    \N    \N    female
12670    Narciso    Klocko    jodie_gerlach@schroeder.name    \N    Northern Mariana Islands    Lake Roxanne    3537 Effertz Crossroad    72414    New Mexico    2016-09-06 10:43:29.993174    2016-10-14 13:02:37.467614        \N    \N    \N    0    \N    \N    \N    \N    male
12671    Patricia    Hermann    davon.little@hamillfunk.name    \N    Palau    Stefanshire    5398 Kali Stravenue    81966-3703    West Virginia    2016-09-25 03:03:11.472926    2016-10-14 13:02:37.489838        \N    \N    \N    0    \N    \N    \N    \N    female
12672    Clovis    Wilderman    rosella_howell@bernier.biz    \N    Mexico    Ryanmouth    952 Dooley Fork    14553    New Hampshire    2016-09-26 02:40:24.120216    2016-10-14 13:02:37.495466        \N    \N    \N    0    \N    \N    \N    \N    male
12673    Kurtis    Waters    buster.turner@tremblayschmidt.org    \N    Belize    East Moses    7856 Mayert Keys    25808-1438    Arizona    2016-08-08 00:23:27.958831    2016-10-14 13:02:37.503802        \N    \N    \N    0    \N    \N    \N    \N    female
12674    Brooklyn    Fisher    shemar@block.co    \N    Romania    Nathanland    591 Beatrice Run    43690    Minnesota    2016-07-23 00:42:21.945212    2016-10-14 13:02:37.512328        \N    \N    \N    0    \N    \N    \N    \N    female
12676    Aniyah    Smith    kory@raynorreynolds.net    \N    Netherlands Antilles    New Declanshire    87353 Weissnat Village    27491    Massachusetts    2016-07-17 18:40:59.852273    2016-10-14 13:02:37.518481        \N    \N    \N    0    \N    \N    \N    \N    male
12677    Gilda    MacGyver    pedro@dare.info    \N    Armenia    Ivafort    10053 Laney Court    45347-9959    Oregon    2016-09-16 15:32:52.304973    2016-10-14 13:02:37.523444        \N    \N    \N    0    \N    \N    \N    \N    female
12678    Addie    Ratke    jeffrey_runolfon@renner.co    \N    Cambodia    East Sydneyhaven    152 Lemke Fords    88714-5839    Kentucky    2016-06-22 17:12:17.848972    2016-10-14 13:02:37.534184        \N    \N    \N    0    \N    \N    \N    \N    male
12679    Ruby    Doyle    litzy_boyle@ortiz.com    \N    Virgin Islands, U.S.    Ritchiestad    3611 Considine Gateway    54465    New Mexico    2016-09-20 02:56:24.909804    2016-10-14 13:02:37.557888        \N    \N    \N    0    \N    \N    \N    \N    female
12680    Larissa    Little    delphia@crona.biz    \N    United Arab Emirates    Lake Helga    54943 Schmitt Common    50662    South Dakota    2016-08-11 05:24:18.212475    2016-10-14 13:02:37.570586        \N    \N    \N    0    \N    \N    \N    \N    female
12681    Amaya    Kling    gregory@grant.org    \N    Mauritius    Hagenesville    758 Ivory Rue    21043-5404    Washington    2016-09-17 09:51:14.328014    2016-10-14 13:02:37.580183        \N    \N    \N    0    \N    \N    \N    \N    female
12682    Dewayne    Kemmer    dario@durgancrooks.com    \N    Tokelau    Georgiannabury    83773 Stiedemann Knolls    38447-1493    Pennsylvania    2016-09-16 00:06:32.722672    2016-10-14 13:02:37.584987        \N    \N    \N    0    \N    \N    \N    \N    male
12683    Margret    Pagac    aniyah_daniel@turnerhettinger.org    \N    Faroe Islands    Eudoraland    5844 Bashirian Harbor    29429-6211    Illinois    2016-07-28 18:07:55.709037    2016-10-14 13:02:37.59015        \N    \N    \N    0    \N    \N    \N    \N    male
12684    Lauriane    Shanahan    ena@weinat.com    \N    Reunion    Howeton    191 Lang Plains    17709-8359    California    2016-08-22 04:18:24.416041    2016-10-14 13:02:37.595246        \N    \N    \N    0    \N    \N    \N    \N    female
12685    Israel    Corwin    florian_torp@heidenreich.info    \N    France    Jesschester    89281 Harvey Parkways    25319-0661    Oregon    2016-07-29 13:45:06.769778    2016-10-14 13:02:37.601509        \N    \N    \N    0    \N    \N    \N    \N    male
12686    Alayna    Bayer    maddison@hirthe.io    \N    Honduras    Weimannside    9180 Lebsack Passage    99167    Ohio    2016-08-15 09:01:58.92571    2016-10-14 13:02:37.606292        \N    \N    \N    0    \N    \N    \N    \N    male
12687    Kurtis    Jacobs    keaton@lueilwitz.co    \N    Samoa    West Elissa    446 Neal Points    19681-9984    Alabama    2016-08-21 03:50:09.179248    2016-10-14 13:02:37.611252        \N    \N    \N    0    \N    \N    \N    \N    male
12688    Arnaldo    Turcotte    leanna@pfannerstill.info    \N    Palau    North Otilia    354 Lueilwitz Motorway    99492    North Carolina    2016-08-01 06:37:55.713458    2016-10-14 13:02:37.620021        \N    \N    \N    0    \N    \N    \N    \N    female
12689    Chaya    Wehner    lexi@windlerbednar.co    \N    Ghana    East Glennie    7874 Agustina Mission    16721-2925    Alaska    2016-08-30 01:36:33.228098    2016-10-14 13:02:37.624809        \N    \N    \N    0    \N    \N    \N    \N    male
12690    Blair    Ledner    florian.klocko@brakushoeger.net    \N    Israel    Nienowchester    48706 Huel Meadows    77157    South Carolina    2016-08-02 21:37:19.442527    2016-10-14 13:02:37.629778        \N    \N    \N    0    \N    \N    \N    \N    male
12691    Marty    Wilderman    dovie@dareconsidine.info    \N    Fiji    Lake Dallin    8785 Fahey Burgs    31790-5980    New Mexico    2016-07-25 08:36:27.018932    2016-10-14 13:02:37.634461        \N    \N    \N    0    \N    \N    \N    \N    female
12692    Eda    Ondricka    emmet@conroy.name    \N    Azerbaijan    New Gabeshire    4708 McGlynn Key    51882    Maryland    2016-07-10 15:31:07.228646    2016-10-14 13:02:37.647532        \N    \N    \N    0    \N    \N    \N    \N    female
12693    Roscoe    Ziemann    lemuel_barrows@morarhilll.co    \N    Central African Republic    Lake Adrian    4159 Karlee Tunnel    12295-0750    New Hampshire    2016-06-27 03:33:17.441403    2016-10-14 13:02:37.658298        \N    \N    \N    0    \N    \N    \N    \N    female
12694    Steve    Gaylord    violet_altenwerth@kundekuhlman.io    \N    Somalia    Salvadormouth    57537 Neoma Row    68255    Mississippi    2016-07-16 15:26:32.78304    2016-10-14 13:02:37.662805        \N    \N    \N    0    \N    \N    \N    \N    male
12695    Zola    Hayes    norberto.keeling@schneiderdavis.io    \N    Congo    Lake Elnaburgh    75226 Bayer Islands    89419    Missouri    2016-08-19 12:37:23.572312    2016-10-14 13:02:37.667723        \N    \N    \N    0    \N    \N    \N    \N    female
12696    Ignatius    Bartell    lucious_schiller@dickens.co    \N    Bouvet Island (Bouvetoya)    Port Delbert    62380 Ramiro Court    60957-2155    Michigan    2016-07-05 05:33:36.75475    2016-10-14 13:02:37.672605        \N    \N    \N    0    \N    \N    \N    \N    male
12697    Lindsey    Barton    dejuan@rathleuschke.com    \N    France    East Antonio    78704 Nickolas Court    51895-9743    Florida    2016-07-21 05:40:11.162436    2016-10-14 13:02:37.677327        \N    \N    \N    0    \N    \N    \N    \N    female
12698    Cameron    Quigley    bryce@vandervortfeest.io    \N    Anguilla    Hauckstad    3516 Rogahn Island    48040    Arizona    2016-06-24 00:54:29.771621    2016-10-14 13:02:37.682024        \N    \N    \N    0    \N    \N    \N    \N    female
12699    Gunner    Murphy    torrey.yost@schuppe.com    \N    Namibia    New Gregory    38393 Veronica Via    66766    Pennsylvania    2016-08-13 16:44:02.422145    2016-10-14 13:02:37.68768        \N    \N    \N    0    \N    \N    \N    \N    male
12700    Jade    Herzog    aniya.eichmann@schimmel.net    \N    Lesotho    North Flavio    517 Yvette Brook    61516    Florida    2016-07-29 04:04:06.128238    2016-10-14 13:02:37.699557        \N    \N    \N    0    \N    \N    \N    \N    male
12701    Edmond    Miller    dortha@feestmclaughlin.biz    \N    Saint Vincent and the Grenadines    Port Joanniechester    94669 Weber Tunnel    21382-0001    Idaho    2016-06-26 10:26:48.855318    2016-10-14 13:02:37.711561        \N    \N    \N    0    \N    \N    \N    \N    male
12702    Lois    O'Kon    frances@wintheiser.org    \N    Faroe Islands    New Russ    308 Garnet Wall    52733    South Carolina    2016-08-21 13:39:23.48759    2016-10-14 13:02:37.726583        \N    \N    \N    0    \N    \N    \N    \N    female
12703    Harold    Wiza    sydnee@marquardtschinner.com    \N    Barbados    Ankundingbury    3581 Bergstrom Extension    40799-1188    Louisiana    2016-08-31 17:22:23.587999    2016-10-14 13:02:37.732131        \N    \N    \N    0    \N    \N    \N    \N    female
12704    Horace    Herman    gregg@dickinson.info    \N    Isle of Man    Lehnerburgh    501 Clint Road    60475-3953    New York    2016-08-30 13:55:18.226384    2016-10-14 13:02:37.737151        \N    \N    \N    0    \N    \N    \N    \N    female
12705    Freddie    Lemke    alphonso_rodriguez@kofadel.io    \N    Sao Tome and Principe    Earlenefort    9134 Tabitha Divide    38967    Mississippi    2016-07-26 22:38:52.21829    2016-10-14 13:02:37.74444        \N    \N    \N    0    \N    \N    \N    \N    female
12706    Rhianna    Hudson    carlos.yundt@hills.co    \N    Ghana    Medhurstport    51958 Juvenal Gardens    28370-0021    Minnesota    2016-09-01 23:36:22.237379    2016-10-14 13:02:37.749872        \N    \N    \N    0    \N    \N    \N    \N    male
13759    Silas    Rempel    rhett@gleason.co    \N    Finland    North Enriqueberg    11383 Benny Station    25698    Alaska    2016-06-30 14:18:57.694832    2016-10-14 13:02:43.948708        \N    \N    \N    0    \N    \N    \N    \N    male
12707    Audreanne    Walker    christian_collins@kovaceknader.name    \N    Dominica    McClurefurt    8752 Tremblay Station    42526-8739    Arkansas    2016-07-27 11:31:30.80336    2016-10-14 13:02:37.754481        \N    \N    \N    0    \N    \N    \N    \N    male
12708    Gwen    Casper    janiya_reichert@donnellypollich.name    \N    Antarctica (the territory South of 60 deg S)    Willowview    7796 Dana Squares    38825-2688    Washington    2016-08-05 17:57:07.768636    2016-10-14 13:02:37.759182        \N    \N    \N    0    \N    \N    \N    \N    female
12709    Hayden    Crona    khalid_waelchi@kris.org    \N    Virgin Islands, U.S.    West Alexandria    748 Larry Inlet    20493-0691    Kansas    2016-08-16 19:20:53.904404    2016-10-14 13:02:37.76501        \N    \N    \N    0    \N    \N    \N    \N    male
12710    Ashleigh    Schultz    brain@flatley.io    \N    Cape Verde    Ludieland    67675 Lane Shoal    19878-1194    Wyoming    2016-09-20 13:12:06.040303    2016-10-14 13:02:37.769595        \N    \N    \N    0    \N    \N    \N    \N    male
12711    Virgie    Skiles    jamarcus.lubowitz@cremin.name    \N    Cape Verde    Stantonview    9826 Davis Estate    68903-0290    Delaware    2016-09-28 00:11:55.30937    2016-10-14 13:02:37.773884        \N    \N    \N    0    \N    \N    \N    \N    female
12712    Zena    Mitchell    beverly_treutel@shanahanebert.org    \N    Trinidad and Tobago    Legrosview    219 Skiles Lane    97771-7529    South Dakota    2016-08-14 18:41:47.070519    2016-10-14 13:02:37.778307        \N    \N    \N    0    \N    \N    \N    \N    male
12713    Gladys    Stokes    cecelia_thiel@wuckertmohr.info    \N    Bahrain    Christiansenberg    694 Laisha Groves    38688-5788    Mississippi    2016-07-01 03:29:00.465001    2016-10-14 13:02:37.782741        \N    \N    \N    0    \N    \N    \N    \N    female
12715    Kelly    Legros    declan.braun@fisher.com    \N    Panama    Lake Litzyton    77977 Leffler Groves    47720-1653    Oklahoma    2016-06-30 22:26:42.071627    2016-10-14 13:02:37.791835        \N    \N    \N    0    \N    \N    \N    \N    female
12716    Geovanny    Satterfield    jarrod_hirthe@schowalterwillms.co    \N    Nauru    East Alice    9489 Thad Rue    11714-8872    Texas    2016-08-11 17:39:36.900996    2016-10-14 13:02:37.79848        \N    \N    \N    0    \N    \N    \N    \N    female
12717    Zita    Leuschke    aidan@stehr.biz    \N    Slovakia (Slovak Republic)    Ryanchester    243 Braulio Branch    80521-6567    Arkansas    2016-09-09 02:21:18.033169    2016-10-14 13:02:37.803131        \N    \N    \N    0    \N    \N    \N    \N    male
12718    Lilyan    Kunze    lenny@satterfield.biz    \N    Gambia    Dinofort    872 Consuelo Ramp    99161    Massachusetts    2016-08-12 00:32:41.453022    2016-10-14 13:02:37.807967        \N    \N    \N    0    \N    \N    \N    \N    male
12719    Cortez    Koepp    madaline@reichel.org    \N    Anguilla    Lake Blancamouth    86753 Marks Motorway    22663    Montana    2016-08-02 07:00:55.605702    2016-10-14 13:02:37.813228        \N    \N    \N    0    \N    \N    \N    \N    female
12720    Consuelo    Lesch    maybell_connelly@erdman.name    \N    Cambodia    Terencebury    1962 Jay Road    84278    Minnesota    2016-08-09 21:25:49.815636    2016-10-14 13:02:37.817688        \N    \N    \N    0    \N    \N    \N    \N    male
12721    Billie    Hamill    jane@bogisich.name    \N    Portugal    Port Pinkiemouth    65718 Jettie Drive    52567    Arizona    2016-06-24 16:39:56.486604    2016-10-14 13:02:37.821782        \N    \N    \N    0    \N    \N    \N    \N    female
12722    Shea    Jones    alice.oreilly@fisher.com    \N    Germany    North Berniestad    26209 General Walks    48770    South Carolina    2016-07-16 10:11:06.772223    2016-10-14 13:02:37.826237        \N    \N    \N    0    \N    \N    \N    \N    female
12723    Nannie    Dibbert    brendan@dickinson.biz    \N    Rwanda    West Zackerymouth    6860 Felipa Corners    90580    Delaware    2016-08-28 22:08:24.281109    2016-10-14 13:02:37.844212        \N    \N    \N    0    \N    \N    \N    \N    male
12724    Savion    Schinner    freda@mosciski.net    \N    Republic of Korea    Lake Bernadine    7126 Kunde Garden    39643    Indiana    2016-08-13 07:00:23.226056    2016-10-14 13:02:37.850442        \N    \N    \N    0    \N    \N    \N    \N    female
12725    Layne    Steuber    golda.parker@lebsack.net    \N    Uruguay    North Kennith    80059 Leffler River    70449-6791    Oregon    2016-08-30 07:18:21.589845    2016-10-14 13:02:37.855322        \N    \N    \N    0    \N    \N    \N    \N    female
12726    Dagmar    Hintz    parker@barton.net    \N    Gabon    Port Regan    4386 Annabelle Hill    53795-8314    Wisconsin    2016-07-07 09:53:50.744178    2016-10-14 13:02:37.864927        \N    \N    \N    0    \N    \N    \N    \N    male
12727    Terrell    Schmidt    otho_lynch@murazik.io    \N    Albania    Towneville    73741 Cronin Haven    37034-6983    Maine    2016-08-21 22:36:59.65959    2016-10-14 13:02:37.872575        \N    \N    \N    0    \N    \N    \N    \N    female
12728    Rachel    Bauch    sammy@ritchie.net    \N    Tokelau    Port Alishaberg    71953 Little Mountains    28214-8749    Colorado    2016-08-31 22:44:23.185332    2016-10-14 13:02:37.878251        \N    \N    \N    0    \N    \N    \N    \N    male
12729    Conor    Goldner    porter.will@beatty.net    \N    Norway    South Milton    8214 Kira Station    83761    Delaware    2016-07-19 05:10:49.387354    2016-10-14 13:02:37.887974        \N    \N    \N    0    \N    \N    \N    \N    female
12730    Myrtie    Schuster    dominic@mueller.net    \N    Australia    South Irwin    939 Lori Crest    80213-6933    Georgia    2016-07-16 07:27:00.666324    2016-10-14 13:02:37.892622        \N    \N    \N    0    \N    \N    \N    \N    male
12731    Rose    Williamson    blanche@bergnaumhomenick.biz    \N    Switzerland    Dallinland    348 Brakus Divide    60358    South Carolina    2016-07-26 02:08:11.947206    2016-10-14 13:02:37.896988        \N    \N    \N    0    \N    \N    \N    \N    male
12732    Ephraim    Hermann    leslie@abbottweimann.name    \N    Portugal    North Vickie    819 Treutel Wells    67525    South Carolina    2016-08-29 16:11:02.819745    2016-10-14 13:02:37.901094        \N    \N    \N    0    \N    \N    \N    \N    male
12733    Bernardo    Ruecker    hector.abshire@cummings.net    \N    Mauritius    Lake Trudie    53127 Prudence Burgs    53094-0560    Vermont    2016-07-06 14:56:47.033719    2016-10-14 13:02:37.905537        \N    \N    \N    0    \N    \N    \N    \N    male
12734    Llewellyn    Gleichner    richie@zieme.co    \N    Papua New Guinea    North Daniellaport    228 Towne Flats    23138-1742    Minnesota    2016-07-31 21:52:09.20333    2016-10-14 13:02:37.91023        \N    \N    \N    0    \N    \N    \N    \N    female
12735    Dorian    Borer    morton.kihn@connellypowlowski.com    \N    Poland    Stammstad    81257 Dusty Mountain    99553    Alaska    2016-09-25 16:07:47.516151    2016-10-14 13:02:37.916599        \N    \N    \N    0    \N    \N    \N    \N    female
12736    Neha    Kerluke    vito.barrows@schambergerkemmer.net    \N    Saudi Arabia    Melliefort    32784 Ilene Ports    84371-8580    New Jersey    2016-09-11 21:07:24.282417    2016-10-14 13:02:37.925677        \N    \N    \N    0    \N    \N    \N    \N    female
12737    Celestino    McGlynn    brett@windlerkoepp.com    \N    Croatia    New Aliza    81306 Robel Bypass    10191-6291    Massachusetts    2016-07-28 23:23:00.269561    2016-10-14 13:02:37.93573        \N    \N    \N    0    \N    \N    \N    \N    female
12738    Leonel    Hamill    harmon@kshlerin.biz    \N    Poland    Peterfurt    2158 Reynolds Corners    39099-1068    Texas    2016-08-03 21:06:45.30228    2016-10-14 13:02:37.946493        \N    \N    \N    0    \N    \N    \N    \N    male
12739    Beaulah    Jacobi    irving@walteroberbrunner.com    \N    Bahrain    Fosterton    6820 Kiehn Trace    53607-2809    Wisconsin    2016-08-17 11:25:23.007976    2016-10-14 13:02:37.951147        \N    \N    \N    0    \N    \N    \N    \N    female
12740    Amos    McLaughlin    enoch@larkin.com    \N    Lebanon    Lake Virginiafurt    62645 Tyra Fields    39851-7868    Iowa    2016-07-21 19:58:48.026369    2016-10-14 13:02:37.961548        \N    \N    \N    0    \N    \N    \N    \N    female
12741    Cornelius    Hansen    zelma.gottlieb@mante.biz    \N    Bouvet Island (Bouvetoya)    Lake Catalinashire    58681 Lakin Ports    72039-0298    Oklahoma    2016-08-09 08:51:01.094807    2016-10-14 13:02:37.967218        \N    \N    \N    0    \N    \N    \N    \N    female
12742    Ernesto    Effertz    daryl.swift@lemke.co    \N    Gabon    Humbertoport    854 Breitenberg Spur    67801    Delaware    2016-06-29 05:29:44.136212    2016-10-14 13:02:37.975788        \N    \N    \N    0    \N    \N    \N    \N    female
12743    Albert    Graham    walter@ullrich.io    \N    Niger    New Hillard    332 Rempel Fords    80197    Wyoming    2016-07-13 01:50:17.480209    2016-10-14 13:02:37.982696        \N    \N    \N    0    \N    \N    \N    \N    male
12744    Meta    Hackett    percival@kshlerin.info    \N    Tajikistan    Bahringertown    6543 Wanda Courts    38439-7219    Utah    2016-08-19 16:58:42.155817    2016-10-14 13:02:37.991042        \N    \N    \N    0    \N    \N    \N    \N    female
12745    Vincenza    Torphy    ashton_koch@thiel.com    \N    Montserrat    Port Jadamouth    28541 Americo Terrace    79199-4556    South Carolina    2016-09-01 16:58:19.969448    2016-10-14 13:02:38.019488        \N    \N    \N    0    \N    \N    \N    \N    female
12746    Samara    Zemlak    jeramy@yost.io    \N    Equatorial Guinea    Port Cydney    996 Miller Shoals    48942    Maryland    2016-06-24 22:41:34.612192    2016-10-14 13:02:38.035901        \N    \N    \N    0    \N    \N    \N    \N    male
12747    Justus    Kemmer    ethyl@denesiklesch.info    \N    Sri Lanka    East Bridieborough    3412 Claude Pines    35351    Rhode Island    2016-09-03 05:17:25.331124    2016-10-14 13:02:38.045439        \N    \N    \N    0    \N    \N    \N    \N    female
12748    Makenna    Koepp    tobin.nolan@keeblerhirthe.com    \N    Cote d'Ivoire    Cormierbury    9491 Fahey Dale    15987    Nebraska    2016-07-28 18:08:51.818216    2016-10-14 13:02:38.057347        \N    \N    \N    0    \N    \N    \N    \N    male
12749    Dillan    Tromp    lauriane@lind.name    \N    Algeria    East Weldonmouth    1339 Schuppe Cliff    75831    Mississippi    2016-07-14 16:17:28.397017    2016-10-14 13:02:38.072707        \N    \N    \N    0    \N    \N    \N    \N    female
12750    Nannie    Abernathy    samanta.daniel@keebler.info    \N    Tonga    Nicklausmouth    282 Carroll Manor    99689    Mississippi    2016-07-22 05:00:05.672769    2016-10-14 13:02:38.087191        \N    \N    \N    0    \N    \N    \N    \N    female
12751    Angelica    Lindgren    cornelius@goyette.co    \N    Greece    New Desmond    19337 Hane Drives    98285-3541    Oregon    2016-07-11 05:23:59.387435    2016-10-14 13:02:38.096397        \N    \N    \N    0    \N    \N    \N    \N    female
12752    Josefa    Harris    roger.senger@brekke.co    \N    Ireland    Brennanborough    5351 Armstrong Ramp    33126    Nevada    2016-09-04 03:28:48.983851    2016-10-14 13:02:38.107436        \N    \N    \N    0    \N    \N    \N    \N    female
12753    Clint    Monahan    terry@cain.info    \N    South Africa    South Adelbertchester    3964 Hilpert Way    44193-4906    New Hampshire    2016-07-30 09:09:38.418866    2016-10-14 13:02:38.122999        \N    \N    \N    0    \N    \N    \N    \N    male
12754    Rosalind    Corkery    deie.shields@smithkunde.info    \N    Cote d'Ivoire    North Rachael    949 Pasquale Circle    24678-6050    Mississippi    2016-08-20 07:21:59.371052    2016-10-14 13:02:38.142826        \N    \N    \N    0    \N    \N    \N    \N    female
12755    Lilliana    Bruen    mckayla.oreilly@goyette.co    \N    Benin    Hyatttown    4108 Hodkiewicz Track    64572-2274    Oklahoma    2016-08-14 07:30:03.727641    2016-10-14 13:02:38.157713        \N    \N    \N    0    \N    \N    \N    \N    female
12756    Frederic    Harris    vergie_jacobi@price.net    \N    Afghanistan    Kemmerview    382 Ernser Plains    28123-3552    Indiana    2016-06-26 04:21:58.681248    2016-10-14 13:02:38.178073        \N    \N    \N    0    \N    \N    \N    \N    female
12757    Hubert    Koelpin    billy@schiller.co    \N    Virgin Islands, U.S.    East Havenberg    803 Devin Viaduct    85592    Massachusetts    2016-09-13 09:03:48.09266    2016-10-14 13:02:38.198189        \N    \N    \N    0    \N    \N    \N    \N    male
12758    Adalberto    Ondricka    breana@padberg.biz    \N    United States Minor Outlying Islands    New Kenyattaburgh    6503 Cremin Isle    94929-3599    Idaho    2016-07-25 12:49:40.379977    2016-10-14 13:02:38.203559        \N    \N    \N    0    \N    \N    \N    \N    female
12759    Deborah    Grant    alden_morar@jonesernser.co    \N    China    South Jerrellshire    27887 Bailey Square    76399    Idaho    2016-09-01 08:33:55.02172    2016-10-14 13:02:38.209037        \N    \N    \N    0    \N    \N    \N    \N    male
12760    Sydney    Schimmel    darius@harrisjones.net    \N    Liberia    Gottliebburgh    58086 Broderick Drive    40371-3060    West Virginia    2016-08-10 01:43:51.94847    2016-10-14 13:02:38.214626        \N    \N    \N    0    \N    \N    \N    \N    female
12761    Randy    Bartoletti    breanne@hoeger.net    \N    Costa Rica    New Elouiseview    173 Camryn Mews    62330    Wisconsin    2016-09-22 02:31:47.971774    2016-10-14 13:02:38.234893        \N    \N    \N    0    \N    \N    \N    \N    male
12762    Kaela    Anderson    bernice.franecki@mclaughlin.info    \N    Nigeria    Lake Fredy    2212 Ferry Mall    48637-8982    North Carolina    2016-08-14 00:49:27.842766    2016-10-14 13:02:38.255075        \N    \N    \N    0    \N    \N    \N    \N    female
12763    Deanna    Kessler    marian@kemmer.org    \N    Burundi    West Gayle    4740 Fay Fall    17124-2365    Indiana    2016-07-22 21:06:33.269597    2016-10-14 13:02:38.274602        \N    \N    \N    0    \N    \N    \N    \N    male
12764    Elda    Abernathy    kale@gerholdebert.io    \N    Indonesia    East Veronastad    297 Douglas Row    63790    Washington    2016-08-11 14:38:10.104982    2016-10-14 13:02:38.288839        \N    \N    \N    0    \N    \N    \N    \N    female
12765    Sanford    Sauer    granville_hoppe@ko.name    \N    Austria    Mitchellland    56967 Bud Orchard    10503    New York    2016-08-28 07:49:44.096148    2016-10-14 13:02:38.304463        \N    \N    \N    0    \N    \N    \N    \N    male
12766    Geo    Medhurst    sydney.lesch@hirthe.name    \N    Kazakhstan    Bogisichfurt    17706 Hayes Lodge    82985    Hawaii    2016-09-14 23:33:50.905984    2016-10-14 13:02:38.313084        \N    \N    \N    0    \N    \N    \N    \N    male
12767    Jamison    Stokes    fiona@aufderhar.org    \N    Indonesia    Lake Katarinachester    3187 Brakus Plains    41684    Iowa    2016-07-22 04:57:01.352268    2016-10-14 13:02:38.329986        \N    \N    \N    0    \N    \N    \N    \N    male
12768    Clay    Larkin    alta@reillyconsidine.co    \N    New Caledonia    New Kacie    28455 Volkman Cape    71736    Nebraska    2016-06-30 07:38:03.274691    2016-10-14 13:02:38.339334        \N    \N    \N    0    \N    \N    \N    \N    female
12769    Valentin    Torp    jensen@hane.info    \N    Azerbaijan    East Ed    4205 Corwin Village    18978-6368    Virginia    2016-09-25 23:10:15.412263    2016-10-14 13:02:38.349814        \N    \N    \N    0    \N    \N    \N    \N    female
12770    Robyn    Littel    darien_weinat@schroeder.info    \N    Ethiopia    Coltonton    6916 Gordon Grove    96947    North Carolina    2016-08-26 01:35:02.339484    2016-10-14 13:02:38.367553        \N    \N    \N    0    \N    \N    \N    \N    female
12771    Price    Turner    marshall@ebert.net    \N    Timor-Leste    North Maritzamouth    39863 Paucek Prairie    66150    Louisiana    2016-08-14 07:25:19.239721    2016-10-14 13:02:38.374626        \N    \N    \N    0    \N    \N    \N    \N    male
12772    Maxie    Krajcik    lina@kertzmannjerde.io    \N    Barbados    North Rubieville    31086 Rice Pass    97754    North Carolina    2016-07-09 09:08:58.719729    2016-10-14 13:02:38.381867        \N    \N    \N    0    \N    \N    \N    \N    male
12773    Ryder    Champlin    reie.schamberger@hintz.io    \N    Sudan    Lake Orvalberg    485 Koch Forest    27602-5504    Washington    2016-08-27 16:54:03.145625    2016-10-14 13:02:38.390886        \N    \N    \N    0    \N    \N    \N    \N    male
12774    Brenna    Bode    elenora.stoltenberg@marquardtleffler.co    \N    Jamaica    New Jeanieside    34145 Julia Walks    53658    Vermont    2016-09-05 08:06:14.061886    2016-10-14 13:02:38.398701        \N    \N    \N    0    \N    \N    \N    \N    male
12775    Caroline    White    carter@littel.io    \N    Iceland    Veronicatown    43092 Beier Gardens    87870    New Jersey    2016-07-16 12:40:29.34248    2016-10-14 13:02:38.405185        \N    \N    \N    0    \N    \N    \N    \N    female
12776    Shana    Will    alayna_hansen@becker.org    \N    Zimbabwe    Petemouth    28836 Brooks Circle    67057    Nevada    2016-07-06 09:09:52.652325    2016-10-14 13:02:38.414062        \N    \N    \N    0    \N    \N    \N    \N    female
12777    Isidro    Beer    cielo@satterfieldschoen.biz    \N    Palau    Bayerhaven    31870 Lauriane Roads    52723    Arizona    2016-07-23 19:44:06.001809    2016-10-14 13:02:38.420013        \N    \N    \N    0    \N    \N    \N    \N    female
12778    Yesenia    Hermann    retta@feilwyman.co    \N    Jersey    South Shannon    13099 Hayes Center    96976-6761    Missouri    2016-08-19 02:41:36.196822    2016-10-14 13:02:38.426094        \N    \N    \N    0    \N    \N    \N    \N    female
12779    Fletcher    Mosciski    jordon.shields@ryan.biz    \N    Denmark    Santamouth    2248 Gilberto Mountain    32906    Texas    2016-07-08 11:44:45.512206    2016-10-14 13:02:38.431991        \N    \N    \N    0    \N    \N    \N    \N    male
12780    Emory    Herman    rhea@rutherfordwilderman.net    \N    Sri Lanka    South Beulahland    51942 Delmer Meadows    49991-3231    Oklahoma    2016-08-23 13:28:02.089033    2016-10-14 13:02:38.437085        \N    \N    \N    0    \N    \N    \N    \N    female
12781    Chyna    Robel    kavon_thiel@spinkadare.io    \N    Monaco    Goldnerbury    641 Feeney Heights    20240    Mississippi    2016-09-07 19:52:15.359307    2016-10-14 13:02:38.442502        \N    \N    \N    0    \N    \N    \N    \N    male
12782    Ron    Stamm    monica@schumm.info    \N    Ireland    Hermanhaven    81437 Thora Viaduct    37004-6502    Connecticut    2016-09-16 22:00:20.716435    2016-10-14 13:02:38.454321        \N    \N    \N    0    \N    \N    \N    \N    female
12783    Karine    Hermiston    brielle_quitzon@crooks.net    \N    Czech Republic    Mohrborough    132 Lamar Valley    89449-6769    Ohio    2016-06-24 21:41:49.813158    2016-10-14 13:02:38.461083        \N    \N    \N    0    \N    \N    \N    \N    male
12784    Audra    Orn    caterina.wilkinson@kiehnflatley.name    \N    Mexico    North America    5578 Dangelo Burgs    11897    Utah    2016-09-13 14:27:21.801867    2016-10-14 13:02:38.470718        \N    \N    \N    0    \N    \N    \N    \N    female
12785    Trevor    Bartell    garth_dooley@treutelziemann.io    \N    Jamaica    Lake Berthamouth    92199 Wiza Lake    51068    Wyoming    2016-06-26 10:37:36.467328    2016-10-14 13:02:38.477933        \N    \N    \N    0    \N    \N    \N    \N    male
12786    Lera    Hartmann    zena@moore.info    \N    Suriname    Lake Vidalberg    7472 Rau Brook    74777-5205    Illinois    2016-09-23 14:24:35.419236    2016-10-14 13:02:38.483088        \N    \N    \N    0    \N    \N    \N    \N    female
12787    Alverta    Feeney    herminio_krajcik@kertzmann.com    \N    Norfolk Island    Nikomouth    2902 Tillman Branch    61832-7263    Colorado    2016-08-15 22:45:03.62618    2016-10-14 13:02:38.488147        \N    \N    \N    0    \N    \N    \N    \N    male
12788    Jaron    Feeney    madisen@dare.name    \N    Cyprus    Cronatown    9014 Bryon Corners    56721    Tennessee    2016-08-03 16:07:43.293243    2016-10-14 13:02:38.499262        \N    \N    \N    0    \N    \N    \N    \N    female
12789    Della    Schuster    raegan@riceherzog.co    \N    Iran    Molliestad    99872 Mitchell Plains    30411    Arkansas    2016-08-25 19:44:43.685139    2016-10-14 13:02:38.516049        \N    \N    \N    0    \N    \N    \N    \N    female
12790    Maryam    Fay    kane@goldner.info    \N    Uzbekistan    Shanahanbury    150 Rowan Village    34084    New Jersey    2016-09-28 12:30:53.171648    2016-10-14 13:02:38.532526        \N    \N    \N    0    \N    \N    \N    \N    female
12791    Dayton    Kuhlman    alf@ohara.com    \N    Syrian Arab Republic    West Domenicahaven    32415 Kirlin Keys    64576    Hawaii    2016-07-29 01:48:18.240996    2016-10-14 13:02:38.537568        \N    \N    \N    0    \N    \N    \N    \N    female
12792    Cristobal    Stehr    lera.heller@weinat.io    \N    Tuvalu    Zboncakburgh    6722 Lockman Heights    90711-5397    Nevada    2016-08-30 09:33:38.125698    2016-10-14 13:02:38.543541        \N    \N    \N    0    \N    \N    \N    \N    male
12793    Meredith    Mraz    adrain_schultz@ziemann.org    \N    Democratic People's Republic of Korea    Lake Salvatorehaven    1629 D'Amore Road    15704-5038    Michigan    2016-07-09 05:50:33.308466    2016-10-14 13:02:38.550479        \N    \N    \N    0    \N    \N    \N    \N    female
12794    Betsy    Rosenbaum    lorna@boehmsanford.co    \N    Western Sahara    Erdmanmouth    9078 Hassan Union    99348-9910    Arizona    2016-07-28 00:11:50.877634    2016-10-14 13:02:38.563076        \N    \N    \N    0    \N    \N    \N    \N    female
12795    Adelia    Deckow    joany.trantow@herzog.biz    \N    Cuba    North Daphney    5659 Witting Centers    84893-4490    West Virginia    2016-09-12 09:34:59.620973    2016-10-14 13:02:38.572561        \N    \N    \N    0    \N    \N    \N    \N    female
12796    Annie    Hand    carole@grant.info    \N    Bolivia    South Kaden    35740 Macey Plaza    93103    Kentucky    2016-08-27 13:25:12.866605    2016-10-14 13:02:38.587516        \N    \N    \N    0    \N    \N    \N    \N    female
12797    Jacynthe    Vandervort    velva_daniel@padbergjast.net    \N    Cambodia    Lake Howardview    21788 Dawson Wall    12198    Vermont    2016-08-10 13:50:49.439025    2016-10-14 13:02:38.595574        \N    \N    \N    0    \N    \N    \N    \N    female
12798    German    Moore    ladarius@stehrgerlach.info    \N    Reunion    Lake Ron    4293 Jacky Hill    59936    Utah    2016-09-14 20:03:00.358674    2016-10-14 13:02:38.605806        \N    \N    \N    0    \N    \N    \N    \N    male
12799    Otilia    Weber    estefania@auer.biz    \N    Macao    McKenziefurt    97877 Larson Motorway    77325    Oregon    2016-08-09 20:25:22.490238    2016-10-14 13:02:38.611097        \N    \N    \N    0    \N    \N    \N    \N    male
12800    Hoyt    Haag    mable_jones@morietteconn.co    \N    Norway    South Elizaland    68941 Denis Harbor    49715-0052    Colorado    2016-08-26 11:13:54.470108    2016-10-14 13:02:38.617843        \N    \N    \N    0    \N    \N    \N    \N    female
12801    Dennis    Hyatt    ryan_leffler@kovacekfeeney.org    \N    Slovenia    Port Alexandro    76021 Dusty Ports    39550    Florida    2016-08-14 03:04:23.95071    2016-10-14 13:02:38.624498        \N    \N    \N    0    \N    \N    \N    \N    female
12802    Bernardo    O'Conner    brennan_renner@dickitrantow.io    \N    Slovakia (Slovak Republic)    Berniermouth    790 Lubowitz Crossing    77477    Hawaii    2016-08-26 14:24:49.624285    2016-10-14 13:02:38.630963        \N    \N    \N    0    \N    \N    \N    \N    male
12803    Daija    Brown    gustave@klein.biz    \N    Gabon    Mooreshire    96860 Labadie Island    74000-6519    West Virginia    2016-09-19 00:51:49.415633    2016-10-14 13:02:38.63701        \N    \N    \N    0    \N    \N    \N    \N    female
12804    Ottis    Rowe    daisha.ziemann@schmitt.net    \N    Central African Republic    Gorczanymouth    76431 Dayne Manor    29205-8203    New Jersey    2016-07-31 03:19:38.900872    2016-10-14 13:02:38.643656        \N    \N    \N    0    \N    \N    \N    \N    male
12805    Lane    Dooley    maryjane_thompson@krajcik.name    \N    Nicaragua    Port Winnifredfurt    36736 Kadin Knoll    54028-6022    Utah    2016-08-24 18:20:30.352166    2016-10-14 13:02:38.650681        \N    \N    \N    0    \N    \N    \N    \N    male
12806    Alana    Feest    adrienne@jaskolski.com    \N    Austria    Olgamouth    16874 Langworth Forges    47360    Indiana    2016-07-09 07:44:50.907724    2016-10-14 13:02:38.659953        \N    \N    \N    0    \N    \N    \N    \N    female
12807    Winifred    Windler    agustin_schmidt@toy.info    \N    Oman    Ronnystad    807 Marvin Extension    89686-3559    New Hampshire    2016-08-25 16:51:09.611705    2016-10-14 13:02:38.666595        \N    \N    \N    0    \N    \N    \N    \N    female
12809    Jacynthe    Blick    rosetta.hettinger@mertz.org    \N    Micronesia    Lake Augustusfurt    929 Mavis Lodge    53683-8403    Nebraska    2016-08-10 08:40:16.549676    2016-10-14 13:02:38.680968        \N    \N    \N    0    \N    \N    \N    \N    male
12810    Reynold    Littel    alyson@kautzer.io    \N    Palestinian Territory    West Felicia    60372 Thea Street    30049    Minnesota    2016-08-31 18:16:15.108868    2016-10-14 13:02:38.689553        \N    \N    \N    0    \N    \N    \N    \N    female
12811    Reed    Fay    cletus.upton@jacobimarquardt.name    \N    Croatia    Port Gideonview    633 Bergstrom Spur    36108-1063    Vermont    2016-08-01 03:22:31.277581    2016-10-14 13:02:38.6963        \N    \N    \N    0    \N    \N    \N    \N    female
12812    Russ    Jacobson    daryl@renner.name    \N    Morocco    Roobburgh    9559 Grimes Mountains    31931-1106    Nebraska    2016-08-25 23:19:14.571076    2016-10-14 13:02:38.70631        \N    \N    \N    0    \N    \N    \N    \N    male
12813    Jo    Herman    nico@funkdicki.io    \N    Jersey    Krajcikville    267 Gibson Harbor    44350    Missouri    2016-07-23 12:20:16.771054    2016-10-14 13:02:38.714433        \N    \N    \N    0    \N    \N    \N    \N    female
12814    Brandyn    Brown    clotilde@reichert.com    \N    Libyan Arab Jamahiriya    West Alexanne    168 Dale Turnpike    30444    California    2016-08-03 22:27:48.517122    2016-10-14 13:02:38.721053        \N    \N    \N    0    \N    \N    \N    \N    female
12815    Estel    Swaniawski    domingo@terrykilback.io    \N    Virgin Islands, British    Port Shaneton    7675 Rodrigo Rapids    53593    Oregon    2016-09-24 10:05:11.34201    2016-10-14 13:02:38.730722        \N    \N    \N    0    \N    \N    \N    \N    female
12816    Aubrey    Bins    maureen_block@bradtke.name    \N    Netherlands Antilles    New Clemmieview    68158 Schuppe Shoals    17390-9624    Kentucky    2016-09-05 00:10:19.466594    2016-10-14 13:02:38.739257        \N    \N    \N    0    \N    \N    \N    \N    male
12817    Allison    Wisozk    claire.feil@quigley.io    \N    Guadeloupe    Dorotheaborough    23324 Davion Run    70195    Oklahoma    2016-08-13 01:08:49.519442    2016-10-14 13:02:38.744276        \N    \N    \N    0    \N    \N    \N    \N    male
12818    Dasia    Yundt    colin@bashirian.info    \N    Nauru    Port Herminiatown    8118 Loyal Lane    51108-5137    Missouri    2016-09-01 23:16:34.640475    2016-10-14 13:02:38.749751        \N    \N    \N    0    \N    \N    \N    \N    female
12819    Dawn    Thompson    dina_brekke@carterokeefe.io    \N    Liechtenstein    Hilmamouth    57389 Quigley Rapid    80054    Montana    2016-08-13 21:44:58.279104    2016-10-14 13:02:38.758583        \N    \N    \N    0    \N    \N    \N    \N    male
12820    Kale    Reichel    mortimer_gibson@farrell.com    \N    Libyan Arab Jamahiriya    Bednarburgh    474 Penelope Road    40538    Colorado    2016-07-23 01:58:59.281481    2016-10-14 13:02:38.765237        \N    \N    \N    0    \N    \N    \N    \N    male
12821    Scarlett    Cronin    lavonne@oreilly.com    \N    Iceland    Adelleport    8480 Rice Cape    19990    Mississippi    2016-08-14 21:40:35.69677    2016-10-14 13:02:38.77014        \N    \N    \N    0    \N    \N    \N    \N    male
12822    Dereck    Greenholt    tristin_sipes@labadie.org    \N    Kyrgyz Republic    East Keeley    147 Jenkins Glens    61164-6282    Rhode Island    2016-08-16 02:05:55.730531    2016-10-14 13:02:38.776901        \N    \N    \N    0    \N    \N    \N    \N    female
12823    Daisy    Gulgowski    ettie_daniel@gloverzemlak.net    \N    Angola    Schroederchester    291 Donnelly Tunnel    59117-5891    New Jersey    2016-07-25 09:38:53.062179    2016-10-14 13:02:38.782568        \N    \N    \N    0    \N    \N    \N    \N    female
12824    Hailie    Schoen    melvina.senger@mraz.name    \N    Kiribati    Paulinebury    74797 Chesley Parkway    50833-3358    Alaska    2016-08-22 02:18:02.940394    2016-10-14 13:02:38.790204        \N    \N    \N    0    \N    \N    \N    \N    male
12825    Adrien    Corkery    frederik@willms.com    \N    Nauru    Maximoton    7814 Duane Stream    32450-4010    Mississippi    2016-09-26 20:06:26.610118    2016-10-14 13:02:38.796772        \N    \N    \N    0    \N    \N    \N    \N    male
12826    Modesto    Hand    dexter@green.org    \N    Burkina Faso    East Anjaliburgh    54891 Keeling Drives    29114    Kansas    2016-08-28 08:53:04.09702    2016-10-14 13:02:38.803502        \N    \N    \N    0    \N    \N    \N    \N    male
12827    Candace    Schaden    jamison@hane.com    \N    Romania    West Bernitamouth    9228 Brendon Islands    72214-3911    Maine    2016-07-16 19:12:20.575194    2016-10-14 13:02:38.810927        \N    \N    \N    0    \N    \N    \N    \N    male
12828    Elbert    Larkin    maxine.schneider@schaeferbernier.com    \N    Kyrgyz Republic    Lake Enochton    19323 Rice Ramp    98944    California    2016-08-03 00:26:02.312798    2016-10-14 13:02:38.816248        \N    \N    \N    0    \N    \N    \N    \N    female
12829    Dulce    Pollich    norris.trantow@kiehnswift.co    \N    Monaco    Carminemouth    43083 Noble Villages    72732-4357    Oklahoma    2016-09-17 01:30:46.053514    2016-10-14 13:02:38.822594        \N    \N    \N    0    \N    \N    \N    \N    male
12830    Delbert    Mills    loren_rice@barrows.biz    \N    Tunisia    West Vincenzamouth    12402 Littel Spring    28104-9852    Illinois    2016-09-01 13:55:05.067614    2016-10-14 13:02:38.827677        \N    \N    \N    0    \N    \N    \N    \N    male
12831    Deshawn    Fritsch    roxanne_graham@gislason.name    \N    Jordan    Klockoview    717 Krajcik Shore    88718-2821    Colorado    2016-06-24 16:55:12.3029    2016-10-14 13:02:38.833624        \N    \N    \N    0    \N    \N    \N    \N    male
12832    Noemi    Wilderman    parker_haley@bergnaum.co    \N    Lesotho    Kevenberg    44302 Mohammad Well    69123    North Carolina    2016-08-30 12:15:43.384373    2016-10-14 13:02:38.839902        \N    \N    \N    0    \N    \N    \N    \N    female
12834    Jacquelyn    Wehner    whitney_langosh@kelerreynolds.io    \N    Vietnam    Casimerport    9776 Krajcik Crossing    32659    Alabama    2016-07-05 07:26:22.968603    2016-10-14 13:02:38.846786        \N    \N    \N    0    \N    \N    \N    \N    male
12835    Sadie    Zulauf    conor_macejkovic@beattyrempel.com    \N    Cuba    Lake Allisonburgh    52157 Chase Forest    19973-4360    Georgia    2016-09-20 08:40:13.019334    2016-10-14 13:02:38.851589        \N    \N    \N    0    \N    \N    \N    \N    male
12836    Malcolm    Ankunding    jeromy@dare.name    \N    Uganda    New Demarioport    145 Ebert Inlet    87581    Alaska    2016-08-03 07:22:07.200396    2016-10-14 13:02:38.856316        \N    \N    \N    0    \N    \N    \N    \N    female
12837    Orie    Ebert    dedric@pricegrady.biz    \N    Gambia    North Dillanland    14160 Cedrick Mountain    23877-7339    Texas    2016-07-02 09:20:20.55184    2016-10-14 13:02:38.861156        \N    \N    \N    0    \N    \N    \N    \N    male
12838    Wiley    Abbott    karen.bins@considine.net    \N    Guinea-Bissau    East Rossbury    19690 Eileen Dam    40325    Massachusetts    2016-08-14 05:24:06.111187    2016-10-14 13:02:38.868964        \N    \N    \N    0    \N    \N    \N    \N    female
12839    Kraig    Sporer    ewell@johnston.name    \N    Palau    Schmittburgh    886 Raegan Groves    45238-0958    Indiana    2016-08-06 17:01:20.91579    2016-10-14 13:02:38.875644        \N    \N    \N    0    \N    \N    \N    \N    female
12840    Ezra    Barton    anna.wyman@rempel.biz    \N    Antarctica (the territory South of 60 deg S)    New Francobury    17257 Rogahn Camp    87494    Massachusetts    2016-08-23 02:19:29.600207    2016-10-14 13:02:38.88028        \N    \N    \N    0    \N    \N    \N    \N    male
12841    Keven    Bruen    yasmin@schultz.name    \N    Colombia    Reillyton    1587 Corwin Turnpike    22880    Utah    2016-07-18 16:58:20.990601    2016-10-14 13:02:38.885091        \N    \N    \N    0    \N    \N    \N    \N    female
12842    Jess    Mosciski    vance@shields.biz    \N    Vanuatu    Flatleyfort    4560 Richard Crescent    63543    New York    2016-07-18 09:55:00.461048    2016-10-14 13:02:38.890064        \N    \N    \N    0    \N    \N    \N    \N    female
12843    Jonathon    O'Kon    yasmin@collier.info    \N    Egypt    South Anahishire    3698 Jarrod Flats    98283    Wisconsin    2016-07-31 01:56:49.517241    2016-10-14 13:02:38.894709        \N    \N    \N    0    \N    \N    \N    \N    male
12844    Melvina    Moore    ismael.lesch@kleinflatley.co    \N    Uzbekistan    Port Ashly    10009 Herminio Pass    79142-5393    Delaware    2016-06-28 13:53:47.691965    2016-10-14 13:02:38.899744        \N    \N    \N    0    \N    \N    \N    \N    male
12846    Jailyn    Larson    cathryn.johnston@oreilly.net    \N    Estonia    New Tatyana    682 Thaddeus Ville    58422-0786    California    2016-08-08 20:19:05.320652    2016-10-14 13:02:38.904616        \N    \N    \N    0    \N    \N    \N    \N    male
12847    Olaf    Stanton    viviane@dooleybrakus.net    \N    Lebanon    Isidromouth    812 Marquise Summit    91310-4629    Tennessee    2016-08-02 11:21:51.996672    2016-10-14 13:02:38.910274        \N    \N    \N    0    \N    \N    \N    \N    male
12848    Green    Klocko    forrest_heaney@parker.co    \N    American Samoa    Ginachester    4507 Daisha Road    93902    Connecticut    2016-09-24 01:39:26.117725    2016-10-14 13:02:38.915524        \N    \N    \N    0    \N    \N    \N    \N    male
12849    Drake    Connelly    davon@carroll.net    \N    Belarus    Wisozkside    9393 Bechtelar Views    17675    Vermont    2016-09-22 14:24:19.902246    2016-10-14 13:02:38.92153        \N    \N    \N    0    \N    \N    \N    \N    female
12851    Assunta    Grady    ezekiel.rice@harrisfritsch.co    \N    Switzerland    South Devonhaven    10615 Pouros Corners    29281-7863    West Virginia    2016-07-04 03:59:50.647802    2016-10-14 13:02:38.93322        \N    \N    \N    0    \N    \N    \N    \N    male
12852    Jazmin    Weimann    barbara.stokes@reichert.name    \N    Algeria    North Darius    6552 Roslyn Tunnel    42122    South Dakota    2016-07-22 06:57:40.275417    2016-10-14 13:02:38.938038        \N    \N    \N    0    \N    \N    \N    \N    female
12858    Enid    Bashirian    theresia@lakinmraz.net    \N    Russian Federation    Gracielaland    7351 Ralph Row    80442    Hawaii    2016-08-22 23:36:56.128725    2016-10-14 13:02:38.9428        \N    \N    \N    0    \N    \N    \N    \N    female
12859    Jadyn    Hudson    alexzander_larson@wolfwhite.info    \N    Eritrea    Kovacekborough    657 Funk Radial    10276-1759    North Dakota    2016-06-29 14:52:02.507808    2016-10-14 13:02:38.947941        \N    \N    \N    0    \N    \N    \N    \N    female
12860    Bernice    Welch    erling@lind.name    \N    Democratic People's Republic of Korea    East Creolafurt    9761 Buckridge Crossroad    16735-7867    Iowa    2016-06-24 23:30:43.923527    2016-10-14 13:02:38.952379        \N    \N    \N    0    \N    \N    \N    \N    male
12861    Leonie    Veum    wiley@ernser.net    \N    Nicaragua    Corkeryton    5580 Frami Tunnel    75048    Vermont    2016-07-12 08:03:37.795588    2016-10-14 13:02:38.956621        \N    \N    \N    0    \N    \N    \N    \N    female
12863    Patsy    Yost    jerad.schuppe@brekke.info    \N    Isle of Man    South Elvaborough    7488 Bartell Ridge    40406    Idaho    2016-09-29 05:27:53.752378    2016-10-14 13:02:38.965558        \N    \N    \N    0    \N    \N    \N    \N    male
12864    Dashawn    Ondricka    jamar_lakin@cronin.io    \N    Cyprus    Patsystad    260 Daniella Hill    16987-3930    New Mexico    2016-08-29 01:05:55.042028    2016-10-14 13:02:38.96966        \N    \N    \N    0    \N    \N    \N    \N    female
12866    Juana    Grady    bryana@pouros.info    \N    Saint Martin    Quintonburgh    4524 Leffler Terrace    30677    South Carolina    2016-09-15 07:57:58.44284    2016-10-14 13:02:38.974191        \N    \N    \N    0    \N    \N    \N    \N    female
12867    Noel    Von    moshe@kihnko.net    \N    British Indian Ocean Territory (Chagos Archipelago)    Naderfort    452 Macejkovic Union    92580-0480    Idaho    2016-07-10 08:12:41.616077    2016-10-14 13:02:38.984916        \N    \N    \N    0    \N    \N    \N    \N    female
12868    Adrienne    Barton    selmer.gottlieb@muller.name    \N    Canada    South Karlibury    58369 Volkman Path    45513    Maine    2016-08-27 23:02:45.692911    2016-10-14 13:02:38.989334        \N    \N    \N    0    \N    \N    \N    \N    male
12869    Leopoldo    Shields    theodora@trantowcollins.com    \N    Tokelau    Christianfurt    2951 Mitchell Way    16840    Arizona    2016-07-26 06:09:19.404185    2016-10-14 13:02:38.994239        \N    \N    \N    0    \N    \N    \N    \N    male
12870    Javon    Doyle    colby_spinka@kemmer.org    \N    Armenia    Lake Josianeshire    189 Ransom Roads    90583-2157    Alabama    2016-07-13 18:27:27.532175    2016-10-14 13:02:38.998681        \N    \N    \N    0    \N    \N    \N    \N    male
12871    Holden    Herman    mohammed@graham.name    \N    British Indian Ocean Territory (Chagos Archipelago)    West Luigiport    494 Granville Heights    87159-0755    Arkansas    2016-07-17 20:30:10.074034    2016-10-14 13:02:39.003316        \N    \N    \N    0    \N    \N    \N    \N    male
12872    Madalyn    Schuppe    jaron@rau.info    \N    French Polynesia    South Jillian    647 Evangeline Circles    71188-2993    Tennessee    2016-08-29 08:14:53.923973    2016-10-14 13:02:39.007925        \N    \N    \N    0    \N    \N    \N    \N    male
12873    Allie    Bernhard    julie@wilkinson.net    \N    Cocos (Keeling) Islands    Lorenzview    3828 Bailey Overpass    74685-4703    New Mexico    2016-08-07 01:00:37.312601    2016-10-14 13:02:39.012697        \N    \N    \N    0    \N    \N    \N    \N    female
12874    Dana    Lynch    talia@hagenes.io    \N    Kuwait    North Eltonview    1315 Travon Court    53717-4856    Montana    2016-07-31 10:05:31.023879    2016-10-14 13:02:39.017462        \N    \N    \N    0    \N    \N    \N    \N    female
12875    Janet    Kuphal    kallie.roberts@altenwerth.biz    \N    British Indian Ocean Territory (Chagos Archipelago)    Kiehnhaven    67740 Mayert Drive    79254    Massachusetts    2016-08-12 13:37:07.539538    2016-10-14 13:02:39.022361        \N    \N    \N    0    \N    \N    \N    \N    female
12876    Eve    Ryan    vernice_thompson@grady.co    \N    Czech Republic    West Berneice    5803 Jacobs Field    39810    Tennessee    2016-08-26 04:30:05.538221    2016-10-14 13:02:39.027412        \N    \N    \N    0    \N    \N    \N    \N    male
12877    Marge    Marks    foster@gleichner.net    \N    Benin    North Albin    578 O'Connell Dam    67519-8919    Delaware    2016-09-29 04:55:33.220285    2016-10-14 13:02:39.032338        \N    \N    \N    0    \N    \N    \N    \N    female
12878    Alayna    Nolan    willow_veum@kuphal.info    \N    South Africa    Avaville    539 Lizeth Glens    78730-4312    Missouri    2016-08-07 07:18:44.765019    2016-10-14 13:02:39.036946        \N    \N    \N    0    \N    \N    \N    \N    male
12879    Addison    Koepp    amber_schiller@shieldshomenick.name    \N    Maldives    Walkerland    6270 Maxie Forest    33983    Washington    2016-06-27 23:46:37.128047    2016-10-14 13:02:39.047131        \N    \N    \N    0    \N    \N    \N    \N    female
12880    Orrin    Strosin    lisette@beier.co    \N    Niger    Newellborough    3048 Brakus Pike    79683    Virginia    2016-07-07 13:11:41.173656    2016-10-14 13:02:39.051644        \N    \N    \N    0    \N    \N    \N    \N    female
12881    Jaydon    Considine    jaime@okeefe.org    \N    Bermuda    Mohrberg    823 Dickens Manors    46216-2031    South Carolina    2016-09-05 00:55:13.389003    2016-10-14 13:02:39.055885        \N    \N    \N    0    \N    \N    \N    \N    female
12882    Lavinia    Schultz    sven@schiller.name    \N    Nigeria    Mayerland    7169 Sammie Hills    11593    Illinois    2016-09-22 04:35:33.126404    2016-10-14 13:02:39.060011        \N    \N    \N    0    \N    \N    \N    \N    female
12883    Angelo    Kirlin    yolanda.rutherford@boganritchie.name    \N    Venezuela    Cummingsburgh    332 Swift Knoll    60223-9181    Michigan    2016-08-14 20:47:12.769398    2016-10-14 13:02:39.064285        \N    \N    \N    0    \N    \N    \N    \N    female
12884    Patricia    Wolff    arch.west@hirthe.io    \N    Gambia    Baileystad    2685 Erin Meadows    69944    Oklahoma    2016-07-17 05:05:10.124002    2016-10-14 13:02:39.06869        \N    \N    \N    0    \N    \N    \N    \N    female
12886    Ethel    O'Hara    rene_senger@swaniawski.net    \N    Saint Lucia    Port Lucasshire    780 Ozella Summit    46393    North Carolina    2016-07-19 14:28:22.900453    2016-10-14 13:02:39.072901        \N    \N    \N    0    \N    \N    \N    \N    female
12887    Georgiana    Flatley    john@douglas.co    \N    Micronesia    North Stefanmouth    43477 Hane Via    54300    Illinois    2016-08-12 14:23:11.53389    2016-10-14 13:02:39.08037        \N    \N    \N    0    \N    \N    \N    \N    male
12888    Ebony    Schmeler    kelley@conroy.info    \N    Martinique    Schneiderfurt    9241 Boyle Mission    75018    Michigan    2016-07-09 20:21:20.153967    2016-10-14 13:02:39.086067        \N    \N    \N    0    \N    \N    \N    \N    male
12889    Ana    Boyle    branson@adamshamill.net    \N    Costa Rica    Joannieview    709 Conner Crescent    61039    Idaho    2016-07-04 11:14:36.875861    2016-10-14 13:02:39.090905        \N    \N    \N    0    \N    \N    \N    \N    female
12890    Domenica    Goldner    rosie@hudson.com    \N    British Indian Ocean Territory (Chagos Archipelago)    South Sidneyshire    9399 Murazik Plain    49117    Oregon    2016-06-25 21:43:15.015471    2016-10-14 13:02:39.096368        \N    \N    \N    0    \N    \N    \N    \N    female
12891    Vivian    Harber    josianne_kerluke@stroman.biz    \N    Japan    Kemmerberg    87824 Kiehn Via    99638-1929    Virginia    2016-08-03 19:25:40.473536    2016-10-14 13:02:39.105804        \N    \N    \N    0    \N    \N    \N    \N    male
12892    Lyric    Mayer    paxton.feeney@kuhn.net    \N    Chile    Lake Hannahhaven    53339 Kiarra Court    27244-1217    Pennsylvania    2016-07-22 14:16:33.63957    2016-10-14 13:02:39.114036        \N    \N    \N    0    \N    \N    \N    \N    male
12893    Sylvester    Welch    katlynn@monahanmayert.net    \N    Bahrain    New Wilbertville    1749 Koepp Stream    40471    Connecticut    2016-08-03 06:21:25.17481    2016-10-14 13:02:39.119335        \N    \N    \N    0    \N    \N    \N    \N    male
12894    Birdie    Fahey    alford@koelpin.name    \N    Bulgaria    North Kaylieshire    4738 Rosanna Groves    44672    Hawaii    2016-07-26 02:33:30.910687    2016-10-14 13:02:39.123939        \N    \N    \N    0    \N    \N    \N    \N    male
12895    Hardy    Torp    nona_stark@jacobi.co    \N    Mauritania    O'Reillytown    5374 Fadel Lodge    44481-8402    New Jersey    2016-08-17 16:43:24.332317    2016-10-14 13:02:39.128671        \N    \N    \N    0    \N    \N    \N    \N    female
12896    Ciara    Cummings    timmy@crooks.info    \N    Belgium    West Milfordmouth    15384 Heaven Mountain    22144    Arizona    2016-07-27 16:18:16.24454    2016-10-14 13:02:39.133253        \N    \N    \N    0    \N    \N    \N    \N    female
12897    Israel    Feeney    effie.torphy@auer.com    \N    Comoros    Port Herbertland    242 Tessie Glens    73064-5185    Alaska    2016-06-26 13:20:42.357511    2016-10-14 13:02:39.137967        \N    \N    \N    0    \N    \N    \N    \N    male
12898    Paige    Cummerata    nadia_carter@crooks.org    \N    Bulgaria    Jenkinston    6517 Russ Bypass    85174    Vermont    2016-09-28 20:26:51.852577    2016-10-14 13:02:39.142473        \N    \N    \N    0    \N    \N    \N    \N    male
12899    Antonia    Ullrich    caesar.kautzer@doylekrajcik.org    \N    Lao People's Democratic Republic    South Vincenzo    794 Amir Wall    62358-6384    Wisconsin    2016-07-23 03:37:27.656868    2016-10-14 13:02:39.147271        \N    \N    \N    0    \N    \N    \N    \N    male
12900    Keith    Satterfield    mariano_brakus@schultzboyle.info    \N    Holy See (Vatican City State)    Dannyside    117 Aufderhar Stream    36518-9918    New Mexico    2016-06-24 22:42:18.307376    2016-10-14 13:02:39.152058        \N    \N    \N    0    \N    \N    \N    \N    female
12901    Desmond    Shanahan    nyasia@altenwerth.net    \N    Rwanda    New Jaymeview    7345 Kutch Viaduct    51471-4696    Texas    2016-07-26 23:30:55.867138    2016-10-14 13:02:39.158728        \N    \N    \N    0    \N    \N    \N    \N    male
12902    Meghan    Hoppe    werner_yundt@lesch.name    \N    Bulgaria    New Ricotown    934 Manuel Radial    19832    South Dakota    2016-07-30 01:54:30.917937    2016-10-14 13:02:39.163923        \N    \N    \N    0    \N    \N    \N    \N    female
12903    Morton    Swaniawski    caie_monahan@whiteankunding.io    \N    Lebanon    Dickinsonport    96492 Huel Lights    12656-4518    Hawaii    2016-08-11 15:59:47.17108    2016-10-14 13:02:39.168721        \N    \N    \N    0    \N    \N    \N    \N    female
12904    Felicia    Schaefer    ofelia@greenfelder.net    \N    Panama    Barrowsfort    79523 Prosacco Meadows    96275    New York    2016-07-26 19:55:30.546641    2016-10-14 13:02:39.173522        \N    \N    \N    0    \N    \N    \N    \N    female
12905    Kiarra    Dibbert    erwin.goyette@hilll.org    \N    Madagascar    South Ivory    1795 Marks Views    36233-5537    Kansas    2016-06-25 05:14:43.006849    2016-10-14 13:02:39.17807        \N    \N    \N    0    \N    \N    \N    \N    male
12906    Laurel    Berge    jordan@denesik.io    \N    Saint Vincent and the Grenadines    Janisshire    42526 Schuster Overpass    84993-4789    Pennsylvania    2016-09-24 18:23:27.196054    2016-10-14 13:02:39.182904        \N    \N    \N    0    \N    \N    \N    \N    male
12907    Jazmyn    Lemke    fatima@collier.io    \N    Togo    New Adrain    259 Lawson Wells    68690-9201    Arkansas    2016-07-01 12:40:48.694433    2016-10-14 13:02:39.1877        \N    \N    \N    0    \N    \N    \N    \N    male
12908    Keaton    Jacobi    furman@towne.co    \N    Greenland    Willmsberg    480 Abernathy Mills    53783-8533    Michigan    2016-07-24 10:11:04.409181    2016-10-14 13:02:39.193466        \N    \N    \N    0    \N    \N    \N    \N    male
12909    Billie    Adams    marianne_crooks@dooley.io    \N    Pakistan    Vernicestad    6366 Marcos Station    20949    Wisconsin    2016-09-26 19:50:11.08693    2016-10-14 13:02:39.19825        \N    \N    \N    0    \N    \N    \N    \N    female
12910    Abe    Casper    thelma_wisoky@cruickshank.net    \N    Uruguay    Port Shayneberg    4991 Kaci River    20295-1649    Maine    2016-07-17 11:14:57.679448    2016-10-14 13:02:39.202876        \N    \N    \N    0    \N    \N    \N    \N    male
12911    Theodore    Botsford    scot.kunze@oberbrunnercarroll.org    \N    Martinique    West Milo    3509 Darby Knolls    64576    New York    2016-08-29 14:49:25.325934    2016-10-14 13:02:39.212238        \N    \N    \N    0    \N    \N    \N    \N    female
12912    Luna    Bernhard    zion.steuber@graham.io    \N    Kyrgyz Republic    North Aglaefurt    75002 Sauer Valleys    91649-3479    Nebraska    2016-08-20 16:13:37.793374    2016-10-14 13:02:39.216876        \N    \N    \N    0    \N    \N    \N    \N    female
12913    Estrella    Mosciski    jan_mcglynn@dooleydickinson.com    \N    Tajikistan    New Hattiefort    8489 McDermott Views    72582-9597    Minnesota    2016-06-25 20:04:00.932652    2016-10-14 13:02:39.22159        \N    \N    \N    0    \N    \N    \N    \N    female
12914    Virgie    Bashirian    roxane@dooleydenesik.info    \N    Grenada    West Carolyntown    589 Kuhic Grove    75408    Oregon    2016-08-13 15:12:39.689482    2016-10-14 13:02:39.22658        \N    \N    \N    0    \N    \N    \N    \N    male
12915    Adelia    Langworth    sid@douglas.info    \N    Saint Vincent and the Grenadines    New Nicola    777 Adriel Spurs    21662-3723    Michigan    2016-09-15 03:16:25.082784    2016-10-14 13:02:39.231415        \N    \N    \N    0    \N    \N    \N    \N    female
12916    Marcellus    Rau    pamela_rutherford@wilkinsonlemke.net    \N    Armenia    Barrowsland    1592 Blanda Estate    68662-4317    Texas    2016-09-20 01:56:14.379496    2016-10-14 13:02:39.239765        \N    \N    \N    0    \N    \N    \N    \N    female
12917    Pablo    Roob    ricky_gutmann@watsica.net    \N    Norway    East George    730 Hane Glen    40246-8843    South Dakota    2016-08-09 22:31:43.136376    2016-10-14 13:02:39.244878        \N    \N    \N    0    \N    \N    \N    \N    male
12919    Diana    Hettinger    arden_luettgen@keeblermacgyver.co    \N    Nicaragua    East Stantonhaven    3314 Beier Greens    47554    Hawaii    2016-07-24 01:27:01.601605    2016-10-14 13:02:39.249768        \N    \N    \N    0    \N    \N    \N    \N    male
12920    Werner    Wyman    tyra@conn.info    \N    Palau    North Inesshire    893 O'Hara Circle    20010-1718    Wisconsin    2016-08-02 17:30:06.289887    2016-10-14 13:02:39.254513        \N    \N    \N    0    \N    \N    \N    \N    female
12921    Torrey    Prosacco    kory@moriette.com    \N    Mayotte    East Armand    989 Amos Squares    46285-7617    Utah    2016-08-20 01:36:41.827446    2016-10-14 13:02:39.259106        \N    \N    \N    0    \N    \N    \N    \N    female
12922    Salma    Beahan    muhammad@nitzscherobel.info    \N    Saint Pierre and Miquelon    West Aftonfurt    3248 Osbaldo Expressway    49676    New Jersey    2016-08-01 08:19:24.510209    2016-10-14 13:02:39.264561        \N    \N    \N    0    \N    \N    \N    \N    female
12923    Darlene    Jacobi    nannie.crona@collier.biz    \N    Tuvalu    Port Elvietown    9875 Ullrich Roads    19408    North Carolina    2016-08-27 10:45:11.618988    2016-10-14 13:02:39.269363        \N    \N    \N    0    \N    \N    \N    \N    female
12924    Burley    Hane    bennett_tromp@pfannerstillokeefe.com    \N    Andorra    Mantemouth    347 Lillian Neck    97592-0232    Kansas    2016-09-11 08:04:21.143838    2016-10-14 13:02:39.274402        \N    \N    \N    0    \N    \N    \N    \N    male
12925    Ocie    Hauck    ashton.gaylord@becker.biz    \N    Yemen    North Garland    6858 Hilpert Spur    74088-1458    Oklahoma    2016-09-14 10:34:25.869036    2016-10-14 13:02:39.279676        \N    \N    \N    0    \N    \N    \N    \N    female
12926    Jarred    Witting    trenton@lefflerfeil.name    \N    Montserrat    Natalieville    798 Brannon Run    34808-1444    Louisiana    2016-07-08 18:33:04.344132    2016-10-14 13:02:39.284415        \N    \N    \N    0    \N    \N    \N    \N    female
12927    Granville    Kirlin    monty@okon.com    \N    Bangladesh    North Delfinaside    80846 Little Burg    32191    Utah    2016-07-27 11:03:03.298158    2016-10-14 13:02:39.289091        \N    \N    \N    0    \N    \N    \N    \N    male
12928    Lora    D'Amore    nels_zemlak@bartoletti.org    \N    San Marino    New Amaraville    2751 Nader Gateway    27945    Iowa    2016-09-12 00:51:16.873649    2016-10-14 13:02:39.293882        \N    \N    \N    0    \N    \N    \N    \N    male
12929    Mitchel    Okuneva    neil_bashirian@mosciski.io    \N    Reunion    Littleborough    12920 Dominique Loaf    75896-6753    Maine    2016-09-08 03:40:33.945621    2016-10-14 13:02:39.298503        \N    \N    \N    0    \N    \N    \N    \N    male
12930    Werner    Cummings    guiseppe@romaguera.biz    \N    Jamaica    West Theresiatown    32158 Collier Course    16674    Rhode Island    2016-08-14 01:38:51.40658    2016-10-14 13:02:39.30341        \N    \N    \N    0    \N    \N    \N    \N    female
12931    Allene    VonRueden    dustin_predovic@ward.name    \N    Bulgaria    Cathrineburgh    294 Estrella Extensions    52292    Oregon    2016-07-06 18:22:05.498692    2016-10-14 13:02:39.308094        \N    \N    \N    0    \N    \N    \N    \N    male
12932    Liam    Dickinson    cleo_stanton@crona.biz    \N    Guam    Wittingchester    17398 Payton Street    68677    Texas    2016-09-20 23:57:55.400359    2016-10-14 13:02:39.312871        \N    \N    \N    0    \N    \N    \N    \N    male
12933    Bernice    Satterfield    muhammad.reichert@thiel.com    \N    Honduras    Keanutown    87560 Ricky Meadow    34226    Ohio    2016-09-11 06:10:07.63566    2016-10-14 13:02:39.317905        \N    \N    \N    0    \N    \N    \N    \N    male
12934    Kelvin    Littel    lysanne.murphy@parker.net    \N    Anguilla    Lake Abdiel    614 Eveline Common    62818    Arizona    2016-08-31 02:03:29.035686    2016-10-14 13:02:39.323205        \N    \N    \N    0    \N    \N    \N    \N    male
12935    Roosevelt    O'Reilly    christy@gutmannswaniawski.com    \N    Armenia    Port Oswaldstad    2523 Simonis Crest    40317    Texas    2016-08-21 03:38:38.400398    2016-10-14 13:02:39.32779        \N    \N    \N    0    \N    \N    \N    \N    male
12936    Bart    Purdy    adolph@stoltenberg.org    \N    Gambia    Lake Jovani    2030 Elouise Alley    92013    Nevada    2016-07-31 02:31:28.116123    2016-10-14 13:02:39.332542        \N    \N    \N    0    \N    \N    \N    \N    female
12937    Domenick    Borer    rickie.macejkovic@homenick.com    \N    Ethiopia    East Mackenziehaven    8972 Isadore Lakes    15778-0289    Minnesota    2016-08-06 09:30:38.965192    2016-10-14 13:02:39.337667        \N    \N    \N    0    \N    \N    \N    \N    male
12938    Sofia    McKenzie    jeanette_koelpin@kulaswaelchi.io    \N    United States of America    Lubowitzport    27529 Turner Street    29501    Texas    2016-06-27 11:29:57.895083    2016-10-14 13:02:39.342705        \N    \N    \N    0    \N    \N    \N    \N    male
12939    Karli    Ferry    amiya_veum@gerlachmosciski.biz    \N    Indonesia    Lake Everttown    2628 Conner Wall    72086-0154    New York    2016-08-09 05:34:33.872046    2016-10-14 13:02:39.347306        \N    \N    \N    0    \N    \N    \N    \N    female
12940    Enola    Fahey    ursula_padberg@grimes.co    \N    Bulgaria    Harrisburgh    37625 Nyah Expressway    69238    New Mexico    2016-07-31 04:36:09.653961    2016-10-14 13:02:39.353549        \N    \N    \N    0    \N    \N    \N    \N    male
12941    Jacquelyn    Schimmel    aracely@eichmann.biz    \N    American Samoa    Fisherberg    9542 Leffler Spring    74774-3535    Wisconsin    2016-09-08 23:20:02.77443    2016-10-14 13:02:39.359035        \N    \N    \N    0    \N    \N    \N    \N    female
12942    Alyce    Bauch    abby@erdman.org    \N    Ireland    East Kaylatown    922 Barton Centers    90437-1008    Oklahoma    2016-08-19 15:44:31.290956    2016-10-14 13:02:39.365357        \N    \N    \N    0    \N    \N    \N    \N    female
12943    Georgiana    Carter    jordane@lueilwitz.org    \N    Mali    Colliermouth    748 Arden Hills    76042    Mississippi    2016-07-29 03:10:51.962888    2016-10-14 13:02:39.375445        \N    \N    \N    0    \N    \N    \N    \N    female
12944    Shaina    Abernathy    ivah_ryan@gulgowskibailey.com    \N    Netherlands    South Blanche    9787 Abner Stream    97483    New York    2016-09-13 15:26:46.398747    2016-10-14 13:02:39.386372        \N    \N    \N    0    \N    \N    \N    \N    female
12945    Eulalia    Fisher    paxton@jast.net    \N    Reunion    Lucieton    7456 Harvey Avenue    64490    West Virginia    2016-08-06 21:51:22.311418    2016-10-14 13:02:39.406092        \N    \N    \N    0    \N    \N    \N    \N    female
12946    Ruthe    Monahan    valentin@aufderhar.name    \N    Oman    New Bettieshire    371 Macejkovic Glen    20468-6641    Oklahoma    2016-07-06 18:33:57.833986    2016-10-14 13:02:39.422458        \N    \N    \N    0    \N    \N    \N    \N    female
12947    Bettie    Bode    hermann.white@torp.org    \N    Sao Tome and Principe    New Enoshaven    4278 Malachi Square    62182    Wyoming    2016-09-24 09:37:20.942373    2016-10-14 13:02:39.427586        \N    \N    \N    0    \N    \N    \N    \N    female
12948    Era    Effertz    hildegard@schulistbeier.info    \N    Tajikistan    South Cruz    93310 Trent Meadows    40158-0071    Illinois    2016-07-30 11:24:50.650354    2016-10-14 13:02:39.434316        \N    \N    \N    0    \N    \N    \N    \N    female
12949    Antonette    Runolfsson    dorcas@sengerherman.net    \N    Paraguay    McLaughlinberg    522 Block Greens    54347    Montana    2016-07-19 16:43:34.653259    2016-10-14 13:02:39.43999        \N    \N    \N    0    \N    \N    \N    \N    female
12950    Lucy    Kemmer    amber@emmerich.name    \N    Bahamas    East Quentinfurt    8601 Kiehn Coves    59843    Iowa    2016-06-24 20:23:20.822432    2016-10-14 13:02:39.444867        \N    \N    \N    0    \N    \N    \N    \N    male
12951    Rachelle    Morissette    lewis.parisian@hackett.net    \N    Montserrat    Port Tristonborough    20040 Allene Mountains    46694    Florida    2016-06-29 07:08:51.984455    2016-10-14 13:02:39.449298        \N    \N    \N    0    \N    \N    \N    \N    female
12952    Mauricio    Ondricka    jee@lockmandamore.biz    \N    Timor-Leste    Predovicshire    4513 Cruickshank Estate    54897-9135    Maryland    2016-07-17 11:14:03.419916    2016-10-14 13:02:39.453556        \N    \N    \N    0    \N    \N    \N    \N    female
12953    Jordan    Prohaska    nicola.nicolas@stoltenberg.co    \N    Equatorial Guinea    South Shannyville    70866 Elinor Forks    25076-1939    Indiana    2016-09-04 15:12:52.427459    2016-10-14 13:02:39.459711        \N    \N    \N    0    \N    \N    \N    \N    female
12954    Nona    Morar    brooks_konopelski@mayer.com    \N    Wallis and Futuna    Connbury    2969 Ricardo Isle    97576-5742    Hawaii    2016-07-03 08:20:58.726556    2016-10-14 13:02:39.465056        \N    \N    \N    0    \N    \N    \N    \N    male
12955    Sylvia    Greenholt    jamar.wisoky@mertz.net    \N    Yemen    Okunevaside    3721 Aileen Mountain    53858    Minnesota    2016-09-14 15:11:07.336842    2016-10-14 13:02:39.46993        \N    \N    \N    0    \N    \N    \N    \N    female
12956    Emie    Gerlach    micheal@heller.co    \N    Singapore    Scottiefort    98691 Rosella Shoal    27268    Missouri    2016-07-24 12:07:06.619563    2016-10-14 13:02:39.474666        \N    \N    \N    0    \N    \N    \N    \N    male
12957    Logan    Rath    maurine_romaguera@kaulke.net    \N    Comoros    Yadiraborough    22578 Courtney Flats    35736-6929    Colorado    2016-07-03 14:07:41.546802    2016-10-14 13:02:39.480267        \N    \N    \N    0    \N    \N    \N    \N    female
12958    Mertie    Farrell    casandra@harvey.io    \N    Comoros    South Burley    26436 Otilia Bridge    43585    Arizona    2016-08-25 22:21:10.515902    2016-10-14 13:02:39.501071        \N    \N    \N    0    \N    \N    \N    \N    male
12959    Keyon    McCullough    alta.mayert@kshlerin.info    \N    Equatorial Guinea    West Abigayle    37678 Lane Burgs    84695    Ohio    2016-07-05 11:53:14.40102    2016-10-14 13:02:39.507545        \N    \N    \N    0    \N    \N    \N    \N    male
12960    Margie    Gleason    chet@kertzmann.net    \N    Finland    Medhurstport    6618 Edd Throughway    50024-4253    Nebraska    2016-08-01 10:02:43.230591    2016-10-14 13:02:39.513314        \N    \N    \N    0    \N    \N    \N    \N    female
12961    Alda    Bosco    jasen@erdman.io    \N    Northern Mariana Islands    Theronfort    852 Nicolas Corners    82339    Florida    2016-06-27 16:59:43.014442    2016-10-14 13:02:39.527401        \N    \N    \N    0    \N    \N    \N    \N    male
12962    Annabel    Mayert    bernie@mills.io    \N    Congo    Huelton    1164 Kaleigh Stravenue    95732-0891    Connecticut    2016-09-09 07:17:56.530858    2016-10-14 13:02:39.533416        \N    \N    \N    0    \N    \N    \N    \N    female
12963    Kelly    Hessel    gayle.emmerich@medhurst.name    \N    Cameroon    Wilkinsonberg    602 Robbie Walk    35364    Tennessee    2016-08-03 14:51:24.444998    2016-10-14 13:02:39.538497        \N    \N    \N    0    \N    \N    \N    \N    male
12964    Waylon    Corkery    javon@kautzer.com    \N    Chad    North Ernesto    85059 Ellsworth River    60544-2914    Ohio    2016-09-02 16:23:19.567022    2016-10-14 13:02:39.544799        \N    \N    \N    0    \N    \N    \N    \N    female
12965    Johann    Fisher    kennedi@hintzlang.co    \N    Israel    Nicolasshire    57879 Gleason Ports    89055    Massachusetts    2016-07-07 22:24:54.815158    2016-10-14 13:02:39.549834        \N    \N    \N    0    \N    \N    \N    \N    male
12966    Louvenia    Rutherford    alvina@effertz.name    \N    Bosnia and Herzegovina    Beattychester    529 Stamm Ridges    80341    California    2016-08-22 09:35:46.173523    2016-10-14 13:02:39.554594        \N    \N    \N    0    \N    \N    \N    \N    male
12967    Lucius    Fay    cordie@haagnikolaus.org    \N    Guatemala    Cronahaven    93729 Claire Hollow    62201    Massachusetts    2016-07-14 20:36:16.435748    2016-10-14 13:02:39.559004        \N    \N    \N    0    \N    \N    \N    \N    male
12968    Niko    Terry    thora.oconner@bruen.com    \N    Georgia    Vanessastad    63646 Collins Haven    53135-6264    Tennessee    2016-07-26 20:49:04.393794    2016-10-14 13:02:39.564146        \N    \N    \N    0    \N    \N    \N    \N    female
12969    Ramiro    Wintheiser    ella@cummerataferry.io    \N    Estonia    Jayport    8749 Morissette Plaza    73118-7284    Washington    2016-08-09 08:01:57.72125    2016-10-14 13:02:39.570756        \N    \N    \N    0    \N    \N    \N    \N    female
12970    Veda    Labadie    preston_towne@wilkinsonnitzsche.com    \N    Slovakia (Slovak Republic)    North Everett    518 Gavin Glen    56631    Idaho    2016-07-01 02:16:23.422284    2016-10-14 13:02:39.575926        \N    \N    \N    0    \N    \N    \N    \N    male
12971    Dennis    Hammes    maybell@rolfson.info    \N    Senegal    Mercedesview    415 Jarret Loaf    37003-8215    Delaware    2016-09-19 14:02:00.020243    2016-10-14 13:02:39.580357        \N    \N    \N    0    \N    \N    \N    \N    male
12972    Randal    Vandervort    sim_tremblay@osinski.co    \N    Saint Barthelemy    Mathildeberg    51751 Chadd Fields    42855    Missouri    2016-08-30 22:37:27.835715    2016-10-14 13:02:39.584741        \N    \N    \N    0    \N    \N    \N    \N    female
12973    Raleigh    Daugherty    julio_schuster@barton.co    \N    Turkmenistan    Abrahamfurt    9724 Bailey Dale    19015    Minnesota    2016-06-28 18:26:31.671919    2016-10-14 13:02:39.58925        \N    \N    \N    0    \N    \N    \N    \N    female
12974    Cullen    Legros    colton@goodwin.com    \N    Chile    New Betsy    757 Buddy Cove    42108    Oklahoma    2016-09-04 19:20:10.218112    2016-10-14 13:02:39.594098        \N    \N    \N    0    \N    \N    \N    \N    male
12975    Cassandra    Koss    kitty@connschroeder.net    \N    Liberia    Rohanton    51775 Monserrate Mission    97904-8028    Kansas    2016-09-03 02:50:28.87914    2016-10-14 13:02:39.59964        \N    \N    \N    0    \N    \N    \N    \N    male
12976    Laurianne    Quigley    lelah.ziemann@hegmann.biz    \N    Ecuador    Davonteport    30180 Clara Crossing    63255    Massachusetts    2016-06-25 08:26:37.269098    2016-10-14 13:02:39.604661        \N    \N    \N    0    \N    \N    \N    \N    female
12977    Tate    Cole    mina_reilly@langosh.name    \N    Bermuda    South Medaside    48733 Roob Mountains    19155    Kentucky    2016-07-30 00:45:10.948914    2016-10-14 13:02:39.608666        \N    \N    \N    0    \N    \N    \N    \N    female
12978    Janice    Ankunding    viviane@ondricka.biz    \N    Samoa    Haagtown    51864 Beth Walks    28659    Vermont    2016-09-05 00:59:23.628868    2016-10-14 13:02:39.613081        \N    \N    \N    0    \N    \N    \N    \N    male
12979    Chauncey    Towne    yasmeen@kertzmann.net    \N    Ethiopia    New Jaymeville    81266 Feil Union    35649-4860    Montana    2016-07-31 12:26:44.490795    2016-10-14 13:02:39.617565        \N    \N    \N    0    \N    \N    \N    \N    female
12980    Maureen    Haag    lisandro@cartwrightborer.org    \N    Malta    Robynburgh    453 Zieme Plains    84193-5229    Connecticut    2016-09-04 15:31:29.069728    2016-10-14 13:02:39.621802        \N    \N    \N    0    \N    \N    \N    \N    female
12981    Reese    Kilback    trevor@hackett.co    \N    Reunion    Lake Devontechester    62804 Otha Walk    65200    California    2016-06-25 21:21:42.552758    2016-10-14 13:02:39.626027        \N    \N    \N    0    \N    \N    \N    \N    female
12982    Genoveva    Jast    gwen.wuckert@beahan.org    \N    Lebanon    Herbertfurt    73224 Jeremy Gardens    49311-5014    Oklahoma    2016-06-28 16:45:00.517334    2016-10-14 13:02:39.630516        \N    \N    \N    0    \N    \N    \N    \N    male
12983    Harrison    Keebler    reyes@graham.net    \N    Suriname    Alexandriafurt    114 Lou Fall    94316    Alaska    2016-09-17 10:06:58.030435    2016-10-14 13:02:39.635235        \N    \N    \N    0    \N    \N    \N    \N    male
12984    Olin    Altenwerth    estella@olsonmarquardt.name    \N    Indonesia    South Elena    343 Kirlin Islands    16871    Arkansas    2016-07-29 02:33:19.719329    2016-10-14 13:02:39.639861        \N    \N    \N    0    \N    \N    \N    \N    male
12985    Marilou    Toy    minnie.beer@nolan.name    \N    Bahrain    Port Kodyland    35733 Schaefer Ford    97121    Maryland    2016-09-22 02:33:01.690138    2016-10-14 13:02:39.645221        \N    \N    \N    0    \N    \N    \N    \N    female
12986    Gonzalo    Cronin    josephine_torp@medhurst.biz    \N    Palestinian Territory    Estefaniahaven    77478 Schultz Ridges    18431-1893    Nevada    2016-09-19 11:35:18.399755    2016-10-14 13:02:39.650013        \N    \N    \N    0    \N    \N    \N    \N    male
12987    Nick    Willms    antonette.crist@casper.net    \N    Antigua and Barbuda    West Mark    4132 Darrion Park    89044    Texas    2016-08-14 23:22:58.401677    2016-10-14 13:02:39.654529        \N    \N    \N    0    \N    \N    \N    \N    male
12988    Kyra    Jerde    myra.hahn@moore.biz    \N    Azerbaijan    Port Amymouth    9188 Russell Junction    51105-3010    Rhode Island    2016-07-01 04:15:29.470175    2016-10-14 13:02:39.658815        \N    \N    \N    0    \N    \N    \N    \N    female
12989    Wyatt    Kub    ivah@millsemmerich.info    \N    Comoros    East Hughfort    818 Pearline Lodge    30374-1981    Delaware    2016-08-24 11:44:08.090556    2016-10-14 13:02:39.663058        \N    \N    \N    0    \N    \N    \N    \N    male
12990    Rocio    Von    esmeralda@walker.biz    \N    Gibraltar    West Eladioberg    10580 Cole Via    24675    Arizona    2016-08-20 17:46:00.178258    2016-10-14 13:02:39.66762        \N    \N    \N    0    \N    \N    \N    \N    female
12991    Justyn    Hudson    terrance@boscopurdy.org    \N    Malawi    New Cristianburgh    783 Goodwin Vista    69890    Nevada    2016-09-09 07:51:42.436668    2016-10-14 13:02:39.672156        \N    \N    \N    0    \N    \N    \N    \N    female
12992    Claudia    Kling    elena@gloverpaucek.co    \N    Niger    New Danyka    285 Neil Haven    36216    Arizona    2016-08-30 11:59:37.209762    2016-10-14 13:02:39.676829        \N    \N    \N    0    \N    \N    \N    \N    male
12993    Jessyca    Funk    maudie_cronin@cartwright.name    \N    Reunion    East Vivian    92030 Lourdes Valleys    15872-7130    Montana    2016-08-14 02:01:04.873197    2016-10-14 13:02:39.681485        \N    \N    \N    0    \N    \N    \N    \N    male
12994    Gilberto    Zemlak    marcia_witting@hirtheruel.io    \N    Bosnia and Herzegovina    Raefort    20497 Hills Groves    45273-0012    Indiana    2016-08-20 05:24:24.842731    2016-10-14 13:02:39.686642        \N    \N    \N    0    \N    \N    \N    \N    female
12995    Kristopher    Gerhold    jennifer.davis@beerbauch.com    \N    Palestinian Territory    South Sanford    627 Welch Views    21545    New Jersey    2016-07-01 01:12:04.202626    2016-10-14 13:02:39.690923        \N    \N    \N    0    \N    \N    \N    \N    female
12996    Theresia    Ferry    aisha_treutel@schmidtblock.biz    \N    Croatia    Lake Howardstad    645 Unique Route    82705    New Jersey    2016-09-27 15:31:41.254525    2016-10-14 13:02:39.69558        \N    \N    \N    0    \N    \N    \N    \N    male
12997    Salvador    Frami    nash@heaney.info    \N    Mauritania    South Dimitriview    6999 Nikolaus Cliffs    92368-3218    Wyoming    2016-09-08 22:04:28.377381    2016-10-14 13:02:39.699913        \N    \N    \N    0    \N    \N    \N    \N    female
12998    Bryana    Koch    kamron_feest@klocko.co    \N    Turks and Caicos Islands    DuBuqueland    86275 Eldon Mall    85408    Florida    2016-09-06 18:08:26.514001    2016-10-14 13:02:39.703991        \N    \N    \N    0    \N    \N    \N    \N    female
12999    Eduardo    Funk    terrance_rempel@rutherford.biz    \N    Turks and Caicos Islands    Haliechester    5117 Devyn Spurs    27031-1123    Oklahoma    2016-08-16 01:04:16.780272    2016-10-14 13:02:39.708173        \N    \N    \N    0    \N    \N    \N    \N    male
13000    Ross    Thompson    eleonore_jakubowski@pagac.org    \N    Thailand    Port Leopoldo    871 Williamson Islands    63691    Colorado    2016-07-14 14:35:54.910907    2016-10-14 13:02:39.716851        \N    \N    \N    0    \N    \N    \N    \N    male
13001    Jaunita    Sporer    kristin_konopelski@monahanmacgyver.io    \N    Trinidad and Tobago    Batzfurt    5125 Darien Mission    57963-0910    Texas    2016-08-12 05:09:01.181331    2016-10-14 13:02:39.723088        \N    \N    \N    0    \N    \N    \N    \N    female
13002    Giovanny    Gulgowski    adeline@von.biz    \N    Maldives    Mohrmouth    136 Robel Lodge    67550    Nevada    2016-09-13 14:58:31.719561    2016-10-14 13:02:39.729467        \N    \N    \N    0    \N    \N    \N    \N    female
13003    Jabari    Prohaska    junior_stracke@quigley.io    \N    Argentina    Randyland    860 Prohaska Point    98473-6340    Idaho    2016-07-18 21:13:07.374919    2016-10-14 13:02:39.734208        \N    \N    \N    0    \N    \N    \N    \N    male
13004    Derek    Konopelski    trinity.purdy@lowecummerata.org    \N    Tonga    Reinholdmouth    85695 Bartoletti Burgs    49477    Utah    2016-09-15 09:58:49.680821    2016-10-14 13:02:39.740794        \N    \N    \N    0    \N    \N    \N    \N    male
13007    Mitchell    Conn    henderson@reichel.name    \N    Paraguay    Port Bobbieview    9526 Haley Club    49296-1333    Arizona    2016-08-03 12:42:26.996252    2016-10-14 13:02:39.747715        \N    \N    \N    0    \N    \N    \N    \N    female
13008    Sheila    Bogisich    marilou_auer@schowalter.io    \N    Sri Lanka    Zulaland    51215 Johathan Common    77981-8153    Indiana    2016-09-16 10:02:36.297341    2016-10-14 13:02:39.753035        \N    \N    \N    0    \N    \N    \N    \N    female
13009    Willard    Hegmann    ed_schaden@wolff.net    \N    Sierra Leone    New Kenton    869 Russel Vista    62567-9341    Oklahoma    2016-08-29 19:07:08.047789    2016-10-14 13:02:39.757875        \N    \N    \N    0    \N    \N    \N    \N    male
13010    Jamar    Bode    haan@ebertheel.com    \N    Wallis and Futuna    Spinkastad    88307 Camylle Landing    62399-7009    Michigan    2016-08-17 08:34:45.897226    2016-10-14 13:02:39.762588        \N    \N    \N    0    \N    \N    \N    \N    female
13011    Jalon    Boehm    mohammad@bernier.name    \N    Latvia    Port Alvena    29162 Reichert Alley    50986    Alaska    2016-09-24 07:18:56.435721    2016-10-14 13:02:39.766966        \N    \N    \N    0    \N    \N    \N    \N    female
13012    Darius    Beier    dudley@oberbrunner.info    \N    Swaziland    Walshborough    1566 Kaleigh Cove    13161-9045    Oregon    2016-09-12 18:59:44.0138    2016-10-14 13:02:39.772109        \N    \N    \N    0    \N    \N    \N    \N    female
13013    Toney    Steuber    eugene@vandervortfisher.io    \N    Brunei Darussalam    New Chadburgh    7208 Kulas Path    69334-1661    Arizona    2016-07-20 03:34:00.69934    2016-10-14 13:02:39.776914        \N    \N    \N    0    \N    \N    \N    \N    female
13014    Richmond    Gusikowski    cale_mccullough@halvorson.info    \N    Malawi    East Arabury    44667 Tierra Island    86266-4693    Louisiana    2016-09-17 13:01:40.649453    2016-10-14 13:02:39.781441        \N    \N    \N    0    \N    \N    \N    \N    female
13015    Lucile    Abshire    nola.stokes@purdy.name    \N    Saint Barthelemy    East Wilmer    469 Asha Dam    23791-9385    Oklahoma    2016-09-06 04:55:18.984372    2016-10-14 13:02:39.787464        \N    \N    \N    0    \N    \N    \N    \N    male
13016    Idella    Flatley    jamal@little.info    \N    Norway    Jamaltown    1814 Gibson Road    62415    Hawaii    2016-09-20 02:04:02.258933    2016-10-14 13:02:39.792494        \N    \N    \N    0    \N    \N    \N    \N    male
13017    Virginie    Collier    leonor.frami@farrell.net    \N    Japan    Schadenburgh    17120 Francesca Drive    76863    New Hampshire    2016-08-27 08:04:20.573431    2016-10-14 13:02:39.797924        \N    \N    \N    0    \N    \N    \N    \N    male
13018    Providenci    Stiedemann    autumn.breitenberg@osinski.co    \N    Congo    Lake Leon    355 Johann Ville    11000-7877    Oregon    2016-06-23 18:54:01.993884    2016-10-14 13:02:39.80621        \N    \N    \N    0    \N    \N    \N    \N    female
13019    Millie    Halvorson    lewis.gerhold@rau.biz    \N    Slovakia (Slovak Republic)    Port Rickey    7257 Grimes Radial    47119    Kentucky    2016-07-15 15:53:01.647585    2016-10-14 13:02:39.812992        \N    \N    \N    0    \N    \N    \N    \N    male
13020    Ludwig    Gutkowski    derek_fahey@mckenzie.name    \N    Qatar    Prudenceport    185 Lelah Gardens    40239    Alaska    2016-08-12 03:45:32.152179    2016-10-14 13:02:39.81955        \N    \N    \N    0    \N    \N    \N    \N    male
13021    Mozell    Abshire    arno_parker@corkery.net    \N    Romania    South Amina    13540 Margarette Station    30704    Nevada    2016-08-30 03:52:42.934103    2016-10-14 13:02:39.825477        \N    \N    \N    0    \N    \N    \N    \N    female
13022    Ernest    Funk    else@effertz.name    \N    Venezuela    Ondrickaville    541 Selena Vista    88246-2057    Virginia    2016-09-23 18:31:15.924624    2016-10-14 13:02:39.830359        \N    \N    \N    0    \N    \N    \N    \N    male
13023    Zoie    Cummerata    cameron@green.net    \N    Lesotho    South Josefa    1743 Fadel Crossroad    89699    Utah    2016-09-04 16:09:29.281829    2016-10-14 13:02:39.834993        \N    \N    \N    0    \N    \N    \N    \N    male
13024    Cleveland    Sporer    ruthe_kuvalis@mcclure.com    \N    Saint Martin    South Brownville    83571 Janae Centers    20944    Missouri    2016-08-17 17:32:08.514998    2016-10-14 13:02:39.839048        \N    \N    \N    0    \N    \N    \N    \N    male
13025    Demond    Jakubowski    sigmund@prosacco.co    \N    Gibraltar    East Myrlmouth    8941 Lonnie Shoal    37710    Alaska    2016-08-03 08:39:18.062134    2016-10-14 13:02:39.844049        \N    \N    \N    0    \N    \N    \N    \N    female
13026    Maudie    Towne    hunter_schmitt@murazik.name    \N    Panama    North Allen    612 Pagac Branch    31799    Minnesota    2016-08-21 16:46:54.721635    2016-10-14 13:02:39.84904        \N    \N    \N    0    \N    \N    \N    \N    female
13027    Delmer    Lesch    will@dare.co    \N    Falkland Islands (Malvinas)    West Joanaton    135 Roman Rest    81668    Georgia    2016-08-05 06:40:39.799168    2016-10-14 13:02:39.854131        \N    \N    \N    0    \N    \N    \N    \N    male
13028    Juwan    Wyman    winfield@marks.biz    \N    Pitcairn Islands    Cronatown    4983 Leffler Plaza    14607-3808    Delaware    2016-07-24 11:37:08.326947    2016-10-14 13:02:39.858593        \N    \N    \N    0    \N    \N    \N    \N    male
13029    Duncan    Gaylord    mayra@keeling.org    \N    Uganda    Glenbury    37404 Altenwerth Streets    30457-9898    Minnesota    2016-07-22 05:48:32.444166    2016-10-14 13:02:39.86287        \N    \N    \N    0    \N    \N    \N    \N    female
13030    Vicenta    Nikolaus    shanie.hyatt@gusikowski.name    \N    Jamaica    Quitzonton    684 Runte Motorway    97731    California    2016-08-03 19:34:29.157078    2016-10-14 13:02:39.867712        \N    \N    \N    0    \N    \N    \N    \N    female
13031    Gideon    Gaylord    kristopher@franeckizieme.org    \N    Netherlands Antilles    Schoenstad    2182 Yasmeen Village    21246-6579    Tennessee    2016-08-27 19:54:04.752562    2016-10-14 13:02:39.872622        \N    \N    \N    0    \N    \N    \N    \N    female
13032    Clementina    Von    rafael@kirlin.com    \N    San Marino    West Alberta    7153 Bergnaum Crossing    38803    Wyoming    2016-07-12 14:00:17.519568    2016-10-14 13:02:39.877124        \N    \N    \N    0    \N    \N    \N    \N    male
13033    Gonzalo    Lang    hillard@cormiermayert.com    \N    French Southern Territories    South Jarredland    384 Spinka Valley    14675-1128    Idaho    2016-08-20 19:39:03.690541    2016-10-14 13:02:39.881392        \N    \N    \N    0    \N    \N    \N    \N    male
13034    Kylie    Ebert    cristobal@schimmelkoelpin.biz    \N    Congo    Port Granville    180 Grimes Plains    72815    California    2016-08-22 01:46:29.276226    2016-10-14 13:02:39.886127        \N    \N    \N    0    \N    \N    \N    \N    male
13035    Lemuel    Brown    jaylen_weber@graham.biz    \N    Serbia    Caleighborough    50288 Considine Village    51716-5172    Louisiana    2016-07-28 22:18:14.28623    2016-10-14 13:02:39.89078        \N    \N    \N    0    \N    \N    \N    \N    female
13036    Joesph    Stroman    ava_ullrich@rau.org    \N    Mongolia    Nolanhaven    15963 Gutmann Meadows    42067    Arkansas    2016-09-05 19:49:49.795535    2016-10-14 13:02:39.895546        \N    \N    \N    0    \N    \N    \N    \N    male
13037    Marquise    Auer    elliot.littel@hauckpredovic.io    \N    Svalbard & Jan Mayen Islands    Arthurport    708 Luigi Knoll    74895    Montana    2016-07-01 12:26:27.445932    2016-10-14 13:02:39.900271        \N    \N    \N    0    \N    \N    \N    \N    female
13038    Lesly    Marvin    dangelo.wiegand@raynormonahan.io    \N    Micronesia    East Caesarmouth    40755 Barton Row    32117    Georgia    2016-09-06 09:37:17.568801    2016-10-14 13:02:39.905084        \N    \N    \N    0    \N    \N    \N    \N    female
13039    Adan    Crooks    tevin@erdmankuvalis.info    \N    France    West Devinville    2914 Eva Throughway    66700-7811    North Carolina    2016-08-09 14:52:22.036522    2016-10-14 13:02:39.912303        \N    \N    \N    0    \N    \N    \N    \N    female
13040    Jacynthe    Jakubowski    celia@shanahan.org    \N    Thailand    Mavisburgh    9469 Alessandro Points    21173-1140    Kansas    2016-08-27 20:08:40.618822    2016-10-14 13:02:39.916437        \N    \N    \N    0    \N    \N    \N    \N    female
13041    Abbigail    Wehner    geo@bins.co    \N    Botswana    Port Isabella    591 Dayana Passage    91184    Mississippi    2016-06-22 20:06:58.47559    2016-10-14 13:02:39.920771        \N    \N    \N    0    \N    \N    \N    \N    female
13042    Pablo    Weber    greyson.wintheiser@daugherty.org    \N    Canada    Sterlinghaven    52597 Mertz Spur    65674    Mississippi    2016-07-13 23:24:22.223909    2016-10-14 13:02:39.925304        \N    \N    \N    0    \N    \N    \N    \N    female
13043    Murray    Harvey    isabel@willms.com    \N    El Salvador    Heidenreichhaven    8958 Dietrich Parkway    77962-0033    Rhode Island    2016-09-02 21:34:14.192661    2016-10-14 13:02:39.929614        \N    \N    \N    0    \N    \N    \N    \N    female
13044    Buster    Spencer    carlotta_harber@dooley.co    \N    Equatorial Guinea    Binsmouth    243 Laron Stream    43666    Iowa    2016-07-26 10:26:14.710891    2016-10-14 13:02:39.933367        \N    \N    \N    0    \N    \N    \N    \N    male
13045    Lucious    Gislason    arlene@reynolds.io    \N    Marshall Islands    Izabellaborough    894 Zena Coves    98382    South Carolina    2016-08-03 01:03:16.727004    2016-10-14 13:02:39.93732        \N    \N    \N    0    \N    \N    \N    \N    female
13046    Vladimir    West    jeremy_beer@block.io    \N    Slovakia (Slovak Republic)    Mathildebury    728 Mosciski Valley    73776-7246    Louisiana    2016-09-17 10:57:59.731305    2016-10-14 13:02:39.941468        \N    \N    \N    0    \N    \N    \N    \N    male
13049    Shawna    King    connor@towneokuneva.org    \N    Uganda    North Sister    98185 Shanel Burgs    80160-2259    Indiana    2016-06-30 11:51:45.976512    2016-10-14 13:02:39.946127        \N    \N    \N    0    \N    \N    \N    \N    female
13051    Dejon    O'Hara    lavada@vonruedendietrich.co    \N    Ecuador    Haroldville    1417 Kohler Cliffs    58571-4976    New York    2016-09-20 12:22:11.851715    2016-10-14 13:02:39.950628        \N    \N    \N    0    \N    \N    \N    \N    female
13052    Gussie    Nolan    keagan.conroy@klocko.info    \N    Montserrat    Nathanialhaven    867 Connelly Park    37876    West Virginia    2016-09-09 22:43:46.381555    2016-10-14 13:02:39.955124        \N    \N    \N    0    \N    \N    \N    \N    male
13053    Brooklyn    Grady    jettie.kertzmann@nienow.info    \N    Dominica    North Sterling    6892 Williamson Rest    34940    Delaware    2016-08-26 11:47:54.867904    2016-10-14 13:02:39.95984        \N    \N    \N    0    \N    \N    \N    \N    male
13054    Vicenta    Kertzmann    ronaldo@watsica.com    \N    Kuwait    Ratkebury    73009 Vada Lights    12255-7765    Vermont    2016-07-29 05:27:18.835936    2016-10-14 13:02:39.964182        \N    \N    \N    0    \N    \N    \N    \N    female
13055    Stacy    Monahan    cody@baileydamore.co    \N    Mayotte    Pfefferstad    496 Shanahan Park    79988-9359    North Carolina    2016-07-29 19:42:11.085626    2016-10-14 13:02:39.968625        \N    \N    \N    0    \N    \N    \N    \N    female
13056    Tara    Parisian    magali_kiehn@moore.name    \N    Costa Rica    Israelview    35904 Feeney Club    21874-6183    Illinois    2016-09-10 23:14:40.895793    2016-10-14 13:02:39.973676        \N    \N    \N    0    \N    \N    \N    \N    male
13057    Marty    Stokes    haylee.reinger@hoppe.co    \N    Chad    Schmidtberg    367 Auer Common    32758    Indiana    2016-08-22 10:17:19.952441    2016-10-14 13:02:39.978082        \N    \N    \N    0    \N    \N    \N    \N    male
13058    Oral    Heidenreich    nash@schimmel.org    \N    Russian Federation    Lake Carrollview    9809 Hodkiewicz Trafficway    96244    New Hampshire    2016-08-20 20:17:57.897967    2016-10-14 13:02:39.982386        \N    \N    \N    0    \N    \N    \N    \N    male
13059    Stephon    Greenfelder    jamel_beahan@colebashirian.com    \N    Bangladesh    West Beaulahmouth    3927 Dayna Inlet    72510-6224    North Carolina    2016-09-02 19:29:30.189976    2016-10-14 13:02:39.986547        \N    \N    \N    0    \N    \N    \N    \N    male
13060    Dion    Yost    dewitt@schoen.biz    \N    Mexico    North Hettieview    567 Alisha Curve    32234-0912    Nebraska    2016-09-23 04:39:00.876413    2016-10-14 13:02:39.991187        \N    \N    \N    0    \N    \N    \N    \N    male
13061    Cynthia    Deckow    oliver_durgan@champlin.io    \N    Afghanistan    Ziemannstad    286 Mya Well    34072-1536    New Mexico    2016-07-06 04:27:37.571844    2016-10-14 13:02:39.997795        \N    \N    \N    0    \N    \N    \N    \N    male
13062    Heber    Lockman    kyla.walker@ritchiebogan.com    \N    Tonga    North Trudie    396 Kaia River    72838-7410    North Carolina    2016-09-12 00:39:32.881821    2016-10-14 13:02:40.002569        \N    \N    \N    0    \N    \N    \N    \N    male
13063    Veronica    Quigley    ralph@cremin.name    \N    Armenia    Aubreyfort    61637 Shania Meadows    35951    Vermont    2016-08-24 16:17:11.22207    2016-10-14 13:02:40.007241        \N    \N    \N    0    \N    \N    \N    \N    female
13064    Bailey    Zieme    crawford_tromp@herzog.biz    \N    Bolivia    Peggietown    1303 Malachi Parkways    24588    Connecticut    2016-07-01 05:47:23.495137    2016-10-14 13:02:40.011986        \N    \N    \N    0    \N    \N    \N    \N    male
13065    Milan    Heidenreich    vance@leannonpacocha.com    \N    Italy    Blandaside    28306 Geraldine Summit    40262-3931    Louisiana    2016-06-29 12:37:00.814985    2016-10-14 13:02:40.017309        \N    \N    \N    0    \N    \N    \N    \N    male
13066    Mariano    Kuhlman    olen_feeney@toy.org    \N    Bulgaria    West Lafayette    5320 Kuphal Road    74635-3602    Mississippi    2016-08-10 18:30:16.913994    2016-10-14 13:02:40.022333        \N    \N    \N    0    \N    \N    \N    \N    female
13067    River    Larkin    wanda_kutch@kuvalis.co    \N    Barbados    North Abelborough    916 Leslie Knoll    70639-0003    New York    2016-09-02 14:49:49.168055    2016-10-14 13:02:40.027101        \N    \N    \N    0    \N    \N    \N    \N    male
13068    Reilly    Walker    angel.leannon@boyerbeahan.co    \N    Uzbekistan    Port Dulcehaven    787 Schmidt River    47344    North Dakota    2016-09-20 09:47:24.825002    2016-10-14 13:02:40.032154        \N    \N    \N    0    \N    \N    \N    \N    female
13069    Neha    Davis    sadye.kirlin@binsbatz.com    \N    Barbados    Port Winfieldberg    683 Sawayn Viaduct    28782    Florida    2016-07-10 12:58:46.199064    2016-10-14 13:02:40.040375        \N    \N    \N    0    \N    \N    \N    \N    female
13070    Annabel    Nitzsche    bridie@runtejones.com    \N    Zimbabwe    Johnsshire    34247 Russell Streets    68133    Mississippi    2016-06-24 17:22:32.871612    2016-10-14 13:02:40.044687        \N    \N    \N    0    \N    \N    \N    \N    male
13071    Jorge    Flatley    else@langosh.org    \N    Dominica    Lake Jovanimouth    77783 Walker Fork    77548-6896    Indiana    2016-07-28 00:35:52.907729    2016-10-14 13:02:40.048865        \N    \N    \N    0    \N    \N    \N    \N    male
13072    Nat    Stanton    rosario.bernhard@schaden.name    \N    Denmark    Konopelskifort    9314 Hoeger Green    44625-7527    Connecticut    2016-08-31 15:54:25.137644    2016-10-14 13:02:40.053397        \N    \N    \N    0    \N    \N    \N    \N    female
13074    Laurine    Mann    rashad@kunzecormier.io    \N    French Polynesia    West Ottofort    9272 Johnston Stravenue    42774-0353    Minnesota    2016-08-30 09:17:52.419688    2016-10-14 13:02:40.057749        \N    \N    \N    0    \N    \N    \N    \N    female
13075    Aiden    Robel    laurie.rosenbaum@gloverfranecki.com    \N    Lithuania    North Jeanie    1690 Emard Divide    49171    California    2016-07-04 05:37:48.327806    2016-10-14 13:02:40.062783        \N    \N    \N    0    \N    \N    \N    \N    female
13076    Joelle    Lindgren    florence@predovic.co    \N    Nigeria    North Lorenburgh    941 Franco Brook    60166    Texas    2016-07-01 20:54:46.251891    2016-10-14 13:02:40.067469        \N    \N    \N    0    \N    \N    \N    \N    male
13077    Tyrel    Bailey    frank@koepproob.name    \N    Cocos (Keeling) Islands    Herzogmouth    702 Arnulfo Circles    20692    New York    2016-09-09 18:28:42.612491    2016-10-14 13:02:40.074543        \N    \N    \N    0    \N    \N    \N    \N    female
13078    Johnson    Crist    janiya.wyman@willms.io    \N    Latvia    Lake Verona    618 Reynolds Brook    35327    Wyoming    2016-07-12 04:48:39.580134    2016-10-14 13:02:40.079882        \N    \N    \N    0    \N    \N    \N    \N    female
13079    Veda    Stanton    deontae@hodkiewicz.biz    \N    Argentina    Morissetteside    22731 Dianna Road    72978-4919    Alabama    2016-09-17 02:41:57.565709    2016-10-14 13:02:40.084613        \N    \N    \N    0    \N    \N    \N    \N    female
13080    Reymundo    Kling    araceli@kutch.co    \N    Mauritania    Vedaview    345 Schneider Courts    37178    New Hampshire    2016-09-17 17:54:00.071878    2016-10-14 13:02:40.08924        \N    \N    \N    0    \N    \N    \N    \N    male
13081    Narciso    Huel    adam_rodriguez@zemlakfunk.info    \N    Congo    Heaneyfort    57135 Block Rapid    66319-4870    Louisiana    2016-08-17 04:59:31.981339    2016-10-14 13:02:40.093697        \N    \N    \N    0    \N    \N    \N    \N    male
13082    Neil    Prosacco    giovanny@kuvalis.net    \N    Slovakia (Slovak Republic)    South Augustine    390 Darius Summit    94205    Massachusetts    2016-09-05 21:53:29.832475    2016-10-14 13:02:40.097791        \N    \N    \N    0    \N    \N    \N    \N    male
13083    Karina    Satterfield    orland.anderson@boylejaskolski.co    \N    Mozambique    New Adityaberg    17214 D'Amore Villages    69564-3708    Virginia    2016-09-19 06:48:25.348124    2016-10-14 13:02:40.102311        \N    \N    \N    0    \N    \N    \N    \N    male
13084    Janie    Bogan    rod@wilkinson.com    \N    Australia    Reichertfort    87701 Dare Haven    47516    Iowa    2016-09-18 23:21:50.285292    2016-10-14 13:02:40.107714        \N    \N    \N    0    \N    \N    \N    \N    male
13085    Serenity    Koepp    heloise_powlowski@bayer.net    \N    Northern Mariana Islands    West Vilma    492 Ernesto Drive    71591-8996    Washington    2016-06-24 16:21:22.391596    2016-10-14 13:02:40.118488        \N    \N    \N    0    \N    \N    \N    \N    male
13086    Talia    Williamson    nya_dicki@medhurst.co    \N    Czech Republic    South Jamarcus    379 Wiegand Spurs    69041-1227    New Hampshire    2016-09-10 06:52:58.897182    2016-10-14 13:02:40.125492        \N    \N    \N    0    \N    \N    \N    \N    female
13087    Gunner    Emmerich    trever@lemke.name    \N    Tajikistan    Ondrickamouth    87505 Daniel Orchard    46233-1999    South Dakota    2016-07-10 02:28:00.223296    2016-10-14 13:02:40.130102        \N    \N    \N    0    \N    \N    \N    \N    male
13088    Billy    Metz    reie.lueilwitz@hilpert.info    \N    Saint Martin    Boganbury    96660 Johns Way    32949-4822    Maine    2016-06-26 19:12:51.995919    2016-10-14 13:02:40.13436        \N    \N    \N    0    \N    \N    \N    \N    male
13089    Major    Swaniawski    stephania_blanda@feil.info    \N    Spain    Antoneview    545 Buford Camp    43675    Oklahoma    2016-08-19 17:09:13.163342    2016-10-14 13:02:40.138342        \N    \N    \N    0    \N    \N    \N    \N    female
13090    Elbert    Feest    francesca@fadel.io    \N    Cyprus    East Novellaberg    46704 Heller Fall    16695-8482    Delaware    2016-07-07 22:13:07.393494    2016-10-14 13:02:40.142333        \N    \N    \N    0    \N    \N    \N    \N    male
13091    Mabel    Robel    rosario_bechtelar@kautzerjones.co    \N    Czech Republic    Lake Sincere    44980 Lucie Grove    13647-5139    West Virginia    2016-07-24 06:43:48.108163    2016-10-14 13:02:40.146355        \N    \N    \N    0    \N    \N    \N    \N    male
13092    Eudora    Kilback    rose_lynch@johnsonpadberg.name    \N    Botswana    Aydenside    365 Wilfredo Camp    41370    New Mexico    2016-08-12 13:54:23.074513    2016-10-14 13:02:40.150961        \N    \N    \N    0    \N    \N    \N    \N    female
13093    Jazlyn    Schimmel    rosemarie@waltergrant.biz    \N    Cote d'Ivoire    Araburgh    8072 Casandra Corners    84310    Missouri    2016-06-30 14:43:15.626267    2016-10-14 13:02:40.15515        \N    \N    \N    0    \N    \N    \N    \N    female
13094    Haskell    Metz    wilbert.pfeffer@schusterkemmer.net    \N    Fiji    Leonorberg    7554 Joy Hill    17898-6430    Connecticut    2016-06-26 09:46:17.848938    2016-10-14 13:02:40.159466        \N    \N    \N    0    \N    \N    \N    \N    male
13095    Tania    Jacobs    hailey@upton.com    \N    Slovakia (Slovak Republic)    Lafayettehaven    56611 Jonas Springs    41652    Iowa    2016-09-28 15:02:18.814244    2016-10-14 13:02:40.163728        \N    \N    \N    0    \N    \N    \N    \N    female
13099    Kolby    Hessel    presley.bahringer@runteshanahan.io    \N    Georgia    Josephineville    7501 Deion Ridges    77282-7894    California    2016-08-25 22:05:09.23898    2016-10-14 13:02:40.172574        \N    \N    \N    0    \N    \N    \N    \N    male
13100    Robin    Bode    fae@robel.io    \N    Kenya    Hassanmouth    42089 Vaughn Stravenue    88994-0683    Alabama    2016-07-06 04:51:48.25825    2016-10-14 13:02:40.176693        \N    \N    \N    0    \N    \N    \N    \N    male
13101    Verla    Durgan    tia_howe@pagacmitchell.info    \N    Svalbard & Jan Mayen Islands    Loyburgh    46345 Rodriguez Inlet    39211-3183    Ohio    2016-09-18 08:31:35.171103    2016-10-14 13:02:40.180887        \N    \N    \N    0    \N    \N    \N    \N    female
13102    Keyshawn    Klocko    te.kaulke@borer.org    \N    Afghanistan    West Noble    75909 Kertzmann Square    47193    Oregon    2016-07-18 04:46:02.376976    2016-10-14 13:02:40.18507        \N    \N    \N    0    \N    \N    \N    \N    female
13103    Cassidy    Moen    aunta@spinkagutkowski.io    \N    Israel    West Fabian    597 Schiller Fords    78102-8163    Ohio    2016-09-04 04:51:55.63766    2016-10-14 13:02:40.189893        \N    \N    \N    0    \N    \N    \N    \N    female
13104    Lavada    Johnston    kaleb@dickinson.info    \N    Mongolia    West Orlo    618 Dooley Locks    86745-1561    Arizona    2016-07-02 10:31:29.590093    2016-10-14 13:02:40.193933        \N    \N    \N    0    \N    \N    \N    \N    female
13105    Molly    Klein    lucie_thiel@torp.net    \N    Angola    New Ismael    888 Cornelius Track    45087    Georgia    2016-09-05 18:54:52.435417    2016-10-14 13:02:40.197944        \N    \N    \N    0    \N    \N    \N    \N    female
13106    Ismael    Carter    audra@grant.org    \N    Brazil    Pollichstad    41446 Jeramie Island    16918-4676    Iowa    2016-08-14 19:38:40.563128    2016-10-14 13:02:40.202271        \N    \N    \N    0    \N    \N    \N    \N    male
13107    Edward    Feest    joe_stehr@turcotte.com    \N    Croatia    New Ronaldo    7335 Brooks Drive    42163-5503    Oregon    2016-09-26 06:18:33.831975    2016-10-14 13:02:40.206099        \N    \N    \N    0    \N    \N    \N    \N    female
13108    Ed    O'Conner    myrtie.fisher@leuschkerohan.org    \N    Mali    Westchester    159 Cormier Points    86402-0579    Colorado    2016-08-09 15:16:56.411676    2016-10-14 13:02:40.21002        \N    \N    \N    0    \N    \N    \N    \N    female
13109    Caleigh    Reynolds    makayla.jerde@grimes.io    \N    Serbia    Laynefort    36511 Hermiston Path    95559-7480    West Virginia    2016-07-21 09:57:38.149213    2016-10-14 13:02:40.213975        \N    \N    \N    0    \N    \N    \N    \N    male
13110    Claudine    Christiansen    derick@metzdurgan.co    \N    Poland    New Delmer    23521 Parker Crossroad    68617    Washington    2016-08-02 11:19:08.137798    2016-10-14 13:02:40.218402        \N    \N    \N    0    \N    \N    \N    \N    male
13111    Alberto    Hartmann    kelli.treutel@moenmedhurst.io    \N    Poland    Runolfssonview    5588 Dusty Lake    47668-2590    Rhode Island    2016-08-06 17:32:01.961407    2016-10-14 13:02:40.222604        \N    \N    \N    0    \N    \N    \N    \N    male
13112    Katelyn    Brakus    alysha@kihnward.net    \N    Haiti    Dibbertshire    3949 Tanner Spurs    42896-9470    Arizona    2016-08-27 20:08:23.990131    2016-10-14 13:02:40.22715        \N    \N    \N    0    \N    \N    \N    \N    male
13113    Colton    Daugherty    cristobal_considine@gislasonwolf.io    \N    British Indian Ocean Territory (Chagos Archipelago)    Evaborough    70678 Trystan Road    86836-5146    Maryland    2016-07-10 07:06:25.252512    2016-10-14 13:02:40.231639        \N    \N    \N    0    \N    \N    \N    \N    male
13114    Glennie    Pagac    sigrid.mraz@rowe.co    \N    Antarctica (the territory South of 60 deg S)    West Brett    76361 Alice Roads    42663    Texas    2016-08-10 10:28:44.637297    2016-10-14 13:02:40.235745        \N    \N    \N    0    \N    \N    \N    \N    male
13115    Jolie    Klein    ara@dietrich.name    \N    Gabon    Barneyhaven    39456 Kendall Shoals    64249    Wyoming    2016-08-08 17:53:38.774399    2016-10-14 13:02:40.23989        \N    \N    \N    0    \N    \N    \N    \N    male
13116    Leora    Altenwerth    richard@greenholtkunze.co    \N    Heard Island and McDonald Islands    Merrittborough    858 Buckridge Causeway    87500-3427    Washington    2016-09-10 08:30:35.987939    2016-10-14 13:02:40.244164        \N    \N    \N    0    \N    \N    \N    \N    female
13117    Rickie    Rolfson    mitchel@stiedemann.org    \N    Uzbekistan    Hesselborough    25429 Bailey Run    13292-7657    South Dakota    2016-07-08 22:54:42.735758    2016-10-14 13:02:40.248614        \N    \N    \N    0    \N    \N    \N    \N    female
13118    Ezequiel    Auer    roie_rogahn@ruel.name    \N    Belarus    Port Urbantown    13681 Metz Court    86016-8123    Massachusetts    2016-07-17 04:24:39.263745    2016-10-14 13:02:40.25301        \N    \N    \N    0    \N    \N    \N    \N    female
13119    Khalil    Prosacco    melyna_lindgren@spinka.info    \N    Russian Federation    Ramiroview    942 Graham Coves    99980    Illinois    2016-07-25 09:05:37.014241    2016-10-14 13:02:40.257566        \N    \N    \N    0    \N    \N    \N    \N    male
15204    Weldon    Ebert    ara@hauck.net    \N    Malta    New Archibald    6624 Dicki Estates    23407-3115    Colorado    2016-09-13 09:38:31.903462    2016-10-14 13:02:40.262417        \N    \N    \N    0    \N    \N    \N    \N    male
13120    Isaac    Herman    monserrat_bashirian@ziemekoepp.biz    \N    United Arab Emirates    Rebecaport    4039 Elijah Groves    66446-9514    Kentucky    2016-08-04 23:27:35.148352    2016-10-14 13:02:40.267149        \N    \N    \N    0    \N    \N    \N    \N    male
13121    Eliane    Anderson    solon_bradtke@corkery.org    \N    French Southern Territories    Bufordview    310 Sister Bypass    32555-7364    Nebraska    2016-07-13 17:03:42.54431    2016-10-14 13:02:40.271251        \N    \N    \N    0    \N    \N    \N    \N    male
13122    Carlos    Jaskolski    drew@carter.com    \N    Oman    North Kendrickport    48861 Gleichner Village    14734-2987    Florida    2016-09-24 01:09:29.680915    2016-10-14 13:02:40.275475        \N    \N    \N    0    \N    \N    \N    \N    male
13123    Alexandria    Harber    kade@welchsporer.biz    \N    Cambodia    Wehnershire    175 Lilla Road    70391    Michigan    2016-09-24 22:53:01.029587    2016-10-14 13:02:40.280202        \N    \N    \N    0    \N    \N    \N    \N    female
13124    Clovis    Effertz    jeffrey.schaden@cummeratasteuber.biz    \N    Northern Mariana Islands    Rueckershire    2984 Jada Skyway    32128    Kentucky    2016-08-01 03:24:29.386311    2016-10-14 13:02:40.284778        \N    \N    \N    0    \N    \N    \N    \N    male
13125    Angeline    Towne    tianna@torphylueilwitz.com    \N    Congo    West Bartholome    674 Amaya Harbor    40800-6974    Wisconsin    2016-07-13 09:12:10.395081    2016-10-14 13:02:40.289411        \N    \N    \N    0    \N    \N    \N    \N    female
13126    Dillon    Runolfsson    brittany@harveyparisian.com    \N    Morocco    Dickenston    158 Demarcus Fords    30079-1657    Kentucky    2016-08-13 17:11:02.974607    2016-10-14 13:02:40.293887        \N    \N    \N    0    \N    \N    \N    \N    female
13127    Clyde    Keebler    jovany_buckridge@bergnaum.info    \N    Paraguay    Port Jordanport    6589 Cruickshank River    34835    Tennessee    2016-06-29 11:48:46.42586    2016-10-14 13:02:40.298042        \N    \N    \N    0    \N    \N    \N    \N    female
13128    Tamara    Prohaska    celestine_auer@bechtelar.com    \N    Andorra    Blandamouth    9347 Jarred Expressway    68577-2253    Idaho    2016-07-22 15:48:17.293174    2016-10-14 13:02:40.302246        \N    \N    \N    0    \N    \N    \N    \N    male
13129    Nickolas    Langworth    hailee@baumbach.io    \N    Vanuatu    Mohammadshire    76202 Jackson Road    80677    Texas    2016-07-24 04:08:13.490086    2016-10-14 13:02:40.306642        \N    \N    \N    0    \N    \N    \N    \N    male
13130    Zachary    Auer    jaycee@wisoky.biz    \N    Northern Mariana Islands    Georgettefort    7357 Mante Rue    82891    Ohio    2016-07-26 03:09:20.966526    2016-10-14 13:02:40.311226        \N    \N    \N    0    \N    \N    \N    \N    male
13131    Anastasia    Langworth    melia_mclaughlin@bogisich.com    \N    Austria    Port Ivafort    4142 Kacie Fork    34932    Florida    2016-08-20 03:51:07.129341    2016-10-14 13:02:40.315754        \N    \N    \N    0    \N    \N    \N    \N    female
13132    Ambrose    Vandervort    columbus@reichertkunde.info    \N    Monaco    Domenicaport    81018 Labadie Branch    49972    Mississippi    2016-09-08 04:35:09.509736    2016-10-14 13:02:40.320333        \N    \N    \N    0    \N    \N    \N    \N    male
13133    Thaddeus    Kuvalis    cyril.mitchell@heaneykozey.co    \N    Georgia    North Tatumland    241 Daugherty Skyway    25255    Montana    2016-08-19 03:41:36.740528    2016-10-14 13:02:40.324754        \N    \N    \N    0    \N    \N    \N    \N    female
13134    Maureen    Fritsch    trever@gerhold.org    \N    Colombia    Enaton    37737 Purdy Fields    32227-7744    Connecticut    2016-08-30 16:57:18.044545    2016-10-14 13:02:40.329418        \N    \N    \N    0    \N    \N    \N    \N    female
13135    Lane    Skiles    emory_kovacek@gibson.co    \N    Iraq    Julienstad    3301 Bins Camp    57947    Kansas    2016-08-08 16:06:18.874009    2016-10-14 13:02:40.334032        \N    \N    \N    0    \N    \N    \N    \N    male
13136    Neal    Wisozk    melany.hyatt@hettinger.org    \N    Indonesia    New Houstonborough    42770 Ratke Drive    80946-4950    Oklahoma    2016-09-11 01:56:06.634088    2016-10-14 13:02:40.340692        \N    \N    \N    0    \N    \N    \N    \N    male
13137    Arnulfo    Walker    al@kilback.org    \N    American Samoa    West Jesus    4056 Kuhic Field    51824-8901    Washington    2016-08-06 14:30:04.000898    2016-10-14 13:02:40.34697        \N    \N    \N    0    \N    \N    \N    \N    female
13138    Trey    Rowe    robyn_bode@heidenreich.biz    \N    Eritrea    Connellymouth    2549 VonRueden Land    65276-3440    Idaho    2016-07-14 05:35:15.028932    2016-10-14 13:02:40.352674        \N    \N    \N    0    \N    \N    \N    \N    female
13139    Maxime    O'Reilly    michele_littel@murraycollier.com    \N    Angola    West Allie    6836 Hammes Courts    30913    New York    2016-07-14 10:09:39.438528    2016-10-14 13:02:40.358028        \N    \N    \N    0    \N    \N    \N    \N    male
13140    Patricia    Kovacek    luther@hettingerkerluke.io    \N    Pakistan    Aurelietown    750 Lucie Skyway    17685    Nevada    2016-07-03 03:40:49.84449    2016-10-14 13:02:40.362757        \N    \N    \N    0    \N    \N    \N    \N    female
13141    Esther    Lowe    connor@hammes.biz    \N    United States of America    Port Eldridgeport    71760 Jovani Trace    88433-7389    Idaho    2016-06-25 22:36:28.770752    2016-10-14 13:02:40.367432        \N    \N    \N    0    \N    \N    \N    \N    male
13143    Trevor    Wyman    jake@hirthegorczany.net    \N    Ecuador    North Anitafort    77302 McCullough Turnpike    42621    Virginia    2016-09-14 23:15:36.109228    2016-10-14 13:02:40.377133        \N    \N    \N    0    \N    \N    \N    \N    male
13144    Louie    Nolan    melisa@hayesmedhurst.info    \N    Germany    Lake Bonitaside    9357 Yvette Stream    44493    Minnesota    2016-09-19 10:46:37.93063    2016-10-14 13:02:40.381477        \N    \N    \N    0    \N    \N    \N    \N    female
13145    Lizeth    Watsica    jordane@crist.name    \N    Burkina Faso    Keelingmouth    8959 Bernhard Heights    89478    Kentucky    2016-07-16 23:27:48.427353    2016-10-14 13:02:40.385938        \N    \N    \N    0    \N    \N    \N    \N    male
13146    Johnnie    Pfeffer    jared@cummings.net    \N    Ukraine    Kodyport    201 Bryce Crescent    38649-9626    Louisiana    2016-06-25 00:08:15.516093    2016-10-14 13:02:40.391512        \N    \N    \N    0    \N    \N    \N    \N    female
13147    Rosalee    Brown    daron.schowalter@willmsprosacco.name    \N    South Africa    Odessastad    73387 Jewell Shores    45288-9200    Alabama    2016-07-06 11:36:35.308618    2016-10-14 13:02:40.396087        \N    \N    \N    0    \N    \N    \N    \N    male
13148    Steve    Paucek    cullen.hackett@waelchigorczany.com    \N    Nigeria    New Gonzalomouth    2792 Felicia Ways    32742    Georgia    2016-09-08 04:50:31.864065    2016-10-14 13:02:40.400752        \N    \N    \N    0    \N    \N    \N    \N    male
13149    Angelina    Bernier    kelli@kuhic.biz    \N    Angola    East Lucie    9224 Esta Estates    79097-6438    Utah    2016-09-05 23:12:14.571839    2016-10-14 13:02:40.405377        \N    \N    \N    0    \N    \N    \N    \N    female
13150    Sierra    Carter    lavinia@schimmel.com    \N    Algeria    Christopheview    354 Sherman Camp    24351-7953    North Dakota    2016-09-17 04:15:57.868168    2016-10-14 13:02:40.409917        \N    \N    \N    0    \N    \N    \N    \N    male
13151    Jacklyn    Mayer    cheyanne.corwin@heidenreich.biz    \N    Burkina Faso    Vickieborough    7157 Ressie Street    43383-9777    Alaska    2016-07-18 10:56:00.244484    2016-10-14 13:02:40.414324        \N    \N    \N    0    \N    \N    \N    \N    male
13152    Dahlia    Corwin    rae@gerhold.name    \N    Japan    Oberbrunnerfort    4197 Balistreri Courts    82070    Colorado    2016-09-15 11:49:59.748224    2016-10-14 13:02:40.419003        \N    \N    \N    0    \N    \N    \N    \N    female
13153    Jayda    Koss    river_pouros@rowe.info    \N    Egypt    New Constantinmouth    8316 Schuppe Bridge    77050    Connecticut    2016-08-12 06:37:41.703872    2016-10-14 13:02:40.423601        \N    \N    \N    0    \N    \N    \N    \N    female
13155    Giovani    Bashirian    monroe@johnsonbergnaum.com    \N    Bahamas    North Kennedymouth    5757 Rempel Street    51393-0579    West Virginia    2016-07-31 16:41:18.322168    2016-10-14 13:02:40.428254        \N    \N    \N    0    \N    \N    \N    \N    male
13156    Myron    Cormier    freddie@windler.info    \N    Slovenia    South Glenna    921 Zieme Tunnel    63501    Louisiana    2016-06-28 05:14:29.23394    2016-10-14 13:02:40.434091        \N    \N    \N    0    \N    \N    \N    \N    female
13157    May    Marquardt    terrance_effertz@volkmanrath.net    \N    Bolivia    Gordonland    912 Schoen Stream    83225-2380    Illinois    2016-08-27 06:39:21.957886    2016-10-14 13:02:40.43865        \N    \N    \N    0    \N    \N    \N    \N    male
13158    Gregoria    Oberbrunner    shayna@gusikowski.biz    \N    Guadeloupe    Schimmelville    19095 Mose Viaduct    30240-5636    Nevada    2016-06-26 12:36:13.689807    2016-10-14 13:02:40.443234        \N    \N    \N    0    \N    \N    \N    \N    female
13159    Alfred    Bechtelar    yesenia@cartwright.net    \N    Reunion    Danview    814 Padberg Island    98128-8961    Indiana    2016-07-12 16:31:53.769452    2016-10-14 13:02:40.447839        \N    \N    \N    0    \N    \N    \N    \N    male
13160    Torey    Beahan    carol.ernser@quigley.co    \N    Sudan    Jaydenberg    65126 Graham Flats    54820    North Carolina    2016-09-04 22:26:46.551167    2016-10-14 13:02:40.452804        \N    \N    \N    0    \N    \N    \N    \N    female
13161    Robyn    West    marion@friesenondricka.org    \N    Romania    Port Rodgerbury    27371 Klocko Port    91626    Nevada    2016-08-27 01:00:17.573573    2016-10-14 13:02:40.45925        \N    \N    \N    0    \N    \N    \N    \N    male
13162    Myron    Thiel    kayla@sawayn.org    \N    Holy See (Vatican City State)    Welchchester    34595 Moore Landing    82154-7769    Minnesota    2016-08-30 06:17:12.798956    2016-10-14 13:02:40.467774        \N    \N    \N    0    \N    \N    \N    \N    male
13163    Rita    Mann    arely.bayer@terry.net    \N    Estonia    South Sydniside    74707 Feeney Camp    74561-5920    Alaska    2016-09-22 01:57:05.006022    2016-10-14 13:02:40.47353        \N    \N    \N    0    \N    \N    \N    \N    female
13164    Garnet    Feest    hallie@swift.name    \N    Armenia    New Madisonhaven    3835 Roob Squares    41871    Iowa    2016-07-02 23:41:01.843542    2016-10-14 13:02:40.478372        \N    \N    \N    0    \N    \N    \N    \N    male
13165    Xzavier    Schimmel    gillian.bahringer@ko.biz    \N    Indonesia    Port Matt    924 Eleonore Bridge    69681    Montana    2016-09-21 17:36:06.621311    2016-10-14 13:02:40.48506        \N    \N    \N    0    \N    \N    \N    \N    male
13166    Kyler    Hilpert    maud@hammes.info    \N    Norway    West Corbinfort    88018 Daniel Meadows    31825-5007    Massachusetts    2016-08-08 13:29:43.149608    2016-10-14 13:02:40.489939        \N    \N    \N    0    \N    \N    \N    \N    female
13167    Timmothy    Cronin    otis_sipes@mraz.name    \N    Aruba    New Bulah    65981 Gibson Rapids    74912-4689    Arizona    2016-09-01 06:58:00.898725    2016-10-14 13:02:40.49597        \N    \N    \N    0    \N    \N    \N    \N    male
13168    Billie    Mayer    hector@leuschke.co    \N    Greenland    South Melody    98867 Spinka Ridges    19440-2581    Connecticut    2016-09-17 07:40:23.854826    2016-10-14 13:02:40.502698        \N    \N    \N    0    \N    \N    \N    \N    female
13169    Alexandro    Price    eliseo@erdman.io    \N    Yemen    New Ethelyn    7232 Jerald Knoll    19533-3040    Oklahoma    2016-07-12 07:44:45.173656    2016-10-14 13:02:40.508684        \N    \N    \N    0    \N    \N    \N    \N    male
13170    Molly    Dare    jodie.cain@johnsonstokes.org    \N    Bhutan    Sedrickmouth    173 Keebler Street    82458    Ohio    2016-07-27 08:11:19.411684    2016-10-14 13:02:40.513379        \N    \N    \N    0    \N    \N    \N    \N    female
13171    Augustine    Marvin    leonardo_heathcote@hamill.biz    \N    Nigeria    Ricemouth    4437 Jakob Mills    16699    Illinois    2016-09-28 02:28:57.391721    2016-10-14 13:02:40.519245        \N    \N    \N    0    \N    \N    \N    \N    male
13172    Alana    Abshire    jordyn@altenwerth.com    \N    Belarus    Colemanborough    7492 Celestino Mall    22596-8634    Florida    2016-09-07 08:45:55.871507    2016-10-14 13:02:40.524487        \N    \N    \N    0    \N    \N    \N    \N    female
13173    Orrin    Stracke    joanny@bartell.biz    \N    Angola    Mikaylashire    3663 Shany Locks    56105    Maryland    2016-08-24 08:43:39.803013    2016-10-14 13:02:40.535535        \N    \N    \N    0    \N    \N    \N    \N    female
13174    Armani    Herman    domenic@pacocha.biz    \N    Guatemala    Ornmouth    66132 Lennie Mountains    65418-6244    Arkansas    2016-09-22 04:42:16.927846    2016-10-14 13:02:40.540407        \N    \N    \N    0    \N    \N    \N    \N    male
13175    Rogelio    Denesik    anibal@considine.name    \N    Tajikistan    East Jaiden    19846 Wolff Landing    19406    Montana    2016-07-28 12:03:18.292352    2016-10-14 13:02:40.545109        \N    \N    \N    0    \N    \N    \N    \N    male
13176    Jasmin    Lang    salvador.dicki@jones.io    \N    Peru    Port Mandy    181 Rico Springs    96201-1001    Montana    2016-07-01 01:44:49.60228    2016-10-14 13:02:40.549705        \N    \N    \N    0    \N    \N    \N    \N    male
13177    Otha    Breitenberg    devyn@cole.io    \N    Dominica    Eliseburgh    307 Balistreri Isle    51824-1443    Michigan    2016-07-04 02:18:34.061446    2016-10-14 13:02:40.554443        \N    \N    \N    0    \N    \N    \N    \N    female
13178    Fern    Mraz    noah_schuster@mcdermott.io    \N    Virgin Islands, British    New Madison    379 Langosh Cove    85985-1934    Maryland    2016-06-30 10:41:13.339157    2016-10-14 13:02:40.559935        \N    \N    \N    0    \N    \N    \N    \N    male
13179    Stephany    Hane    vicenta@effertz.info    \N    United Kingdom    South Perry    8133 Enoch Ville    88458    Nevada    2016-07-21 19:41:01.134887    2016-10-14 13:02:40.565592        \N    \N    \N    0    \N    \N    \N    \N    male
13180    Letha    Hand    eliezer@breitenberg.com    \N    Serbia    Fayborough    8029 Vicente Stravenue    57242-2882    New Mexico    2016-08-16 10:37:39.724113    2016-10-14 13:02:40.570549        \N    \N    \N    0    \N    \N    \N    \N    male
13181    Armando    Schowalter    bell@runolfsdottir.io    \N    Bahrain    West Kelsifort    24755 Claud Gardens    23714    Nebraska    2016-07-02 19:04:54.610351    2016-10-14 13:02:40.575089        \N    \N    \N    0    \N    \N    \N    \N    male
13182    Cordia    Leannon    kiley.schuppe@collins.com    \N    Sri Lanka    Krajcikmouth    7997 Susie Cliff    32836    Nevada    2016-07-30 04:57:17.315565    2016-10-14 13:02:40.581418        \N    \N    \N    0    \N    \N    \N    \N    female
13183    Elta    Tillman    carmelo.mccullough@kertzmannschaefer.org    \N    American Samoa    West Kaylee    342 Charley Gardens    24247    Illinois    2016-08-16 18:02:39.709949    2016-10-14 13:02:40.586283        \N    \N    \N    0    \N    \N    \N    \N    male
13184    Seamus    Fay    santos.barrows@hermiston.com    \N    British Indian Ocean Territory (Chagos Archipelago)    East Otilia    25806 Lesley Squares    45155    Louisiana    2016-07-02 07:53:35.302064    2016-10-14 13:02:40.591229        \N    \N    \N    0    \N    \N    \N    \N    female
13185    Briana    Bahringer    cristina.walsh@hyatt.com    \N    Belarus    Andersonhaven    43627 Fern Gardens    83853-1621    Georgia    2016-08-30 12:26:34.561313    2016-10-14 13:02:40.596212        \N    \N    \N    0    \N    \N    \N    \N    female
13186    Maureen    Blick    gracie_effertz@bartonhalvorson.net    \N    Timor-Leste    Penelopeport    7927 Felicity Island    34746    Colorado    2016-07-01 21:49:17.406282    2016-10-14 13:02:40.600718        \N    \N    \N    0    \N    \N    \N    \N    male
13187    Mack    Sawayn    fausto@hudson.org    \N    Kazakhstan    Darienfurt    322 Koelpin Crest    38625    Washington    2016-07-12 17:59:04.276738    2016-10-14 13:02:40.605611        \N    \N    \N    0    \N    \N    \N    \N    male
13188    Cleora    Bahringer    cameron@king.com    \N    Iraq    South Pearl    429 Elmira Ville    94988    Alabama    2016-08-11 01:44:23.669169    2016-10-14 13:02:40.609898        \N    \N    \N    0    \N    \N    \N    \N    male
13189    Rupert    Luettgen    skye.kozey@damore.org    \N    Kenya    Lindgrenbury    855 Jerrod Landing    58736-6327    Michigan    2016-08-12 13:38:54.499757    2016-10-14 13:02:40.614837        \N    \N    \N    0    \N    \N    \N    \N    male
13190    Daija    Ledner    holly_runte@huels.name    \N    Liberia    Ryleemouth    89114 Simone Parkway    78731-3766    Montana    2016-08-04 00:26:18.415851    2016-10-14 13:02:40.623439        \N    \N    \N    0    \N    \N    \N    \N    female
13191    Palma    Welch    ashton.walsh@heidenreichhermann.co    \N    Botswana    Russelberg    22468 Kautzer Wells    23976-0186    Missouri    2016-08-27 08:40:37.571503    2016-10-14 13:02:40.632287        \N    \N    \N    0    \N    \N    \N    \N    female
13192    Carter    Connelly    daniela@schroeder.biz    \N    Belgium    New Nikko    23325 Bergnaum Place    80777    New Mexico    2016-06-28 09:48:05.949229    2016-10-14 13:02:40.637546        \N    \N    \N    0    \N    \N    \N    \N    female
13193    Gloria    Abshire    zaria@homenick.name    \N    Paraguay    West Jabariside    921 Kari Estates    45652-4901    Illinois    2016-07-17 22:14:58.360428    2016-10-14 13:02:40.643788        \N    \N    \N    0    \N    \N    \N    \N    female
13194    Carley    Keeling    percival.wolff@larson.biz    \N    United States of America    Nicolasberg    15389 Santa Mews    55117    California    2016-08-26 14:19:43.623744    2016-10-14 13:02:40.649209        \N    \N    \N    0    \N    \N    \N    \N    male
13195    Elias    DuBuque    laurianne_jast@crist.io    \N    Aruba    Haleymouth    99408 Elsie Passage    53211    Oklahoma    2016-09-24 21:57:11.918357    2016-10-14 13:02:40.654566        \N    \N    \N    0    \N    \N    \N    \N    female
13196    Cynthia    Yost    lauriane.reichel@dietrich.name    \N    Portugal    Port Claude    78371 Kovacek Centers    38910    Nevada    2016-07-03 00:42:08.907651    2016-10-14 13:02:40.660382        \N    \N    \N    0    \N    \N    \N    \N    male
13197    Torey    Kemmer    verdie_kunde@bergnaum.name    \N    Paraguay    Greenberg    61939 Shanahan Lodge    64304-5883    Mississippi    2016-09-07 05:51:13.36866    2016-10-14 13:02:40.665262        \N    \N    \N    0    \N    \N    \N    \N    male
13198    Arno    Tromp    chesley@kirlinkuphal.io    \N    Uzbekistan    Margarethaven    99657 Heller Ports    63065    Pennsylvania    2016-06-25 21:19:24.147948    2016-10-14 13:02:40.675658        \N    \N    \N    0    \N    \N    \N    \N    female
13199    Ricky    Wehner    giovanni@medhurst.io    \N    United Kingdom    Willmsville    16711 Whitney Unions    22505-8510    Oregon    2016-09-18 06:12:10.909022    2016-10-14 13:02:40.680551        \N    \N    \N    0    \N    \N    \N    \N    male
13200    Kenny    Mante    gretchen@lebsack.io    \N    Zimbabwe    Hoppemouth    58550 Buckridge Bypass    35103    Maine    2016-08-13 18:44:45.36675    2016-10-14 13:02:40.685281        \N    \N    \N    0    \N    \N    \N    \N    female
13201    Marianna    Ernser    taurean.ledner@langworthbergstrom.org    \N    Saint Vincent and the Grenadines    Quitzonhaven    7838 Kennedi Curve    25238    Arizona    2016-07-25 12:20:22.960259    2016-10-14 13:02:40.695361        \N    \N    \N    0    \N    \N    \N    \N    male
13202    London    Fahey    nigel@oconnerbrakus.com    \N    Greenland    Jaskolskiport    12636 Ada Court    50837    Tennessee    2016-08-15 18:06:01.516512    2016-10-14 13:02:40.700282        \N    \N    \N    0    \N    \N    \N    \N    female
13203    Imani    Howe    piper_pouros@hettinger.biz    \N    Dominica    Hunterview    28735 Doyle Inlet    36972-1184    Washington    2016-09-03 10:23:33.274773    2016-10-14 13:02:40.707035        \N    \N    \N    0    \N    \N    \N    \N    female
13204    Cleve    Schoen    ignatius@borerkuvalis.io    \N    Fiji    Port Cicero    7060 Jakubowski Club    88072-6709    North Dakota    2016-08-30 08:01:11.253232    2016-10-14 13:02:40.71178        \N    \N    \N    0    \N    \N    \N    \N    male
13205    Tiara    Bruen    gunner@kuhlman.name    \N    Tajikistan    Jermeyland    6327 Mosciski Rue    54216    Washington    2016-06-24 22:35:46.445894    2016-10-14 13:02:40.716603        \N    \N    \N    0    \N    \N    \N    \N    female
13206    Nella    Leannon    william_dibbert@stoltenberg.co    \N    French Guiana    Schimmelbury    976 Ransom Parks    29983-7117    Connecticut    2016-07-02 14:46:56.69575    2016-10-14 13:02:40.724409        \N    \N    \N    0    \N    \N    \N    \N    male
13207    Ross    Kohler    madisyn_willms@sanfordtrantow.io    \N    Montserrat    East Nickolasview    730 Wunsch Circles    77469    Wyoming    2016-08-02 13:29:00.617618    2016-10-14 13:02:40.735924        \N    \N    \N    0    \N    \N    \N    \N    female
13208    Rachel    Stracke    amya@ryanmante.biz    \N    Andorra    Linaberg    4037 Altenwerth Glens    17267-2377    North Dakota    2016-08-11 08:48:35.342458    2016-10-14 13:02:40.746808        \N    \N    \N    0    \N    \N    \N    \N    male
13209    Verner    Rippin    darron.roob@littelcarroll.name    \N    Guam    East Yessenia    25360 Cloyd Row    58482-1056    Texas    2016-08-01 11:28:58.173941    2016-10-14 13:02:40.752883        \N    \N    \N    0    \N    \N    \N    \N    male
13210    Kurt    Effertz    garrick@grimes.info    \N    United Arab Emirates    New Alexa    70134 Aurelio Point    29856-2856    New Hampshire    2016-07-07 11:28:22.404936    2016-10-14 13:02:40.758558        \N    \N    \N    0    \N    \N    \N    \N    male
13211    Cathryn    Jakubowski    gaetano@greenfelder.name    \N    Gibraltar    East Avis    4277 Antwan Island    88736    Louisiana    2016-08-13 14:45:22.542364    2016-10-14 13:02:40.767843        \N    \N    \N    0    \N    \N    \N    \N    female
13212    Carmela    Ferry    hardy.weinat@pfannerstill.name    \N    Guam    Port Callieton    803 Goodwin Valleys    74519    Arizona    2016-08-30 13:40:11.850147    2016-10-14 13:02:40.774222        \N    \N    \N    0    \N    \N    \N    \N    male
13213    Grady    Kertzmann    cheyanne@kreiger.io    \N    Denmark    North Wilmafort    611 Hammes Isle    90055    Connecticut    2016-07-25 09:22:23.911873    2016-10-14 13:02:40.78645        \N    \N    \N    0    \N    \N    \N    \N    female
13214    Darrel    Lind    haskell@mosciski.name    \N    Iraq    O'Connerport    61882 Emil Ridges    54738    South Dakota    2016-07-20 10:24:05.25272    2016-10-14 13:02:40.791468        \N    \N    \N    0    \N    \N    \N    \N    male
13215    Marshall    Waelchi    bridget@reichel.biz    \N    Tunisia    Krajcikmouth    56052 Block Mount    22789-4700    Michigan    2016-07-03 15:49:55.145609    2016-10-14 13:02:40.800274        \N    \N    \N    0    \N    \N    \N    \N    female
13216    Donna    Hills    pascale@kuhic.biz    \N    Guam    Devenmouth    4403 Smith Underpass    17945-1673    Nevada    2016-08-03 13:11:02.231173    2016-10-14 13:02:40.808923        \N    \N    \N    0    \N    \N    \N    \N    female
13217    Franco    Johnston    antwan.johnson@turner.biz    \N    Faroe Islands    Michaelamouth    1471 Aditya Lane    53835-0844    North Dakota    2016-09-01 18:12:54.380439    2016-10-14 13:02:40.813904        \N    \N    \N    0    \N    \N    \N    \N    male
13218    Kennedi    Vandervort    jayde.goyette@schultz.net    \N    Costa Rica    South Elda    48422 Lauriane Canyon    99905-8225    Pennsylvania    2016-06-30 08:46:15.772887    2016-10-14 13:02:40.820447        \N    \N    \N    0    \N    \N    \N    \N    female
13219    Nick    Ledner    arely@ankunding.biz    \N    Ukraine    Russton    74210 Rolfson Walk    42559    California    2016-06-23 06:30:42.798912    2016-10-14 13:02:40.828514        \N    \N    \N    0    \N    \N    \N    \N    male
13220    Lizeth    Gibson    emory_will@purdycrist.io    \N    Norway    Edwardotown    889 Harber Knoll    80782-1593    North Dakota    2016-08-23 10:05:39.593916    2016-10-14 13:02:40.833349        \N    \N    \N    0    \N    \N    \N    \N    female
13221    Gregorio    Rutherford    mack@farrellwaelchi.co    \N    Gabon    Katherynmouth    133 Mallie Route    30151-0726    Nebraska    2016-08-17 08:59:29.98084    2016-10-14 13:02:40.838101        \N    \N    \N    0    \N    \N    \N    \N    male
13222    Karen    Block    gavin@dachbogisich.org    \N    Fiji    New Isom    21098 Abbott Crest    38905-6471    Alabama    2016-09-24 05:13:35.277892    2016-10-14 13:02:40.842946        \N    \N    \N    0    \N    \N    \N    \N    female
13223    Ford    Bauch    damian@koepp.co    \N    Macao    North Kallie    17939 Shana Gardens    92596-9795    Idaho    2016-08-06 06:03:37.142454    2016-10-14 13:02:40.866272        \N    \N    \N    0    \N    \N    \N    \N    female
13224    Selina    Kertzmann    yadira_schumm@osinski.name    \N    Saint Pierre and Miquelon    Tyrellberg    627 Miller Brook    60151    Delaware    2016-07-05 23:53:17.158554    2016-10-14 13:02:40.872247        \N    \N    \N    0    \N    \N    \N    \N    female
13225    Dayne    Torphy    erna@ratkecrona.net    \N    Tokelau    Joanyville    78393 Karlee Fall    40664-5775    Arizona    2016-08-11 08:16:18.425978    2016-10-14 13:02:40.876557        \N    \N    \N    0    \N    \N    \N    \N    female
13226    Darian    Kulas    lennie@harber.com    \N    Fiji    West Charleneland    745 Ryan Avenue    96668-9035    Louisiana    2016-09-14 17:34:27.485631    2016-10-14 13:02:40.880767        \N    \N    \N    0    \N    \N    \N    \N    female
13227    Myrtice    Runte    melya_moriette@oreilly.net    \N    Bermuda    Williamsonberg    58406 Thompson View    84933-5316    Missouri    2016-08-08 11:40:08.29194    2016-10-14 13:02:40.884689        \N    \N    \N    0    \N    \N    \N    \N    female
13228    Stephan    Harber    dewitt@sauer.org    \N    Wallis and Futuna    Gerholdmouth    4436 Larson Stream    44773-8113    Virginia    2016-08-16 06:03:50.039702    2016-10-14 13:02:40.889646        \N    \N    \N    0    \N    \N    \N    \N    male
13229    Selmer    Powlowski    jane_leffler@hickle.org    \N    Namibia    Purdyview    335 Darren Lakes    88018    South Dakota    2016-09-08 12:25:31.255721    2016-10-14 13:02:40.896237        \N    \N    \N    0    \N    \N    \N    \N    female
13230    Vena    Dach    noble.graham@waelchi.io    \N    Guadeloupe    Mullerberg    495 Kayli Common    73355    New Jersey    2016-07-17 00:49:04.659844    2016-10-14 13:02:40.905897        \N    \N    \N    0    \N    \N    \N    \N    male
13231    Kendall    Schmitt    marcus_rau@harvey.name    \N    Yemen    New Lucious    36645 Valerie Island    62481-8242    Iowa    2016-08-27 14:18:39.0316    2016-10-14 13:02:40.910927        \N    \N    \N    0    \N    \N    \N    \N    female
13232    Marcel    DuBuque    fidel.abshire@nitzsche.biz    \N    Isle of Man    Lake Demetrius    16862 Braun Divide    49481    Michigan    2016-08-07 17:54:43.926488    2016-10-14 13:02:40.915557        \N    \N    \N    0    \N    \N    \N    \N    female
13233    Dudley    Lowe    xzavier@willms.com    \N    Tuvalu    Lake Orville    1877 Sibyl Village    51360    Massachusetts    2016-08-06 18:02:15.811284    2016-10-14 13:02:40.920149        \N    \N    \N    0    \N    \N    \N    \N    female
13234    Horace    Schowalter    virgie_altenwerth@oconnerbayer.com    \N    Tuvalu    West Arianefurt    56904 Toy Ports    32757    New Hampshire    2016-07-10 14:04:56.308107    2016-10-14 13:02:40.925502        \N    \N    \N    0    \N    \N    \N    \N    female
13235    Karlee    Konopelski    wilhelm@wolfwunsch.net    \N    Norfolk Island    Wildermanberg    7039 Imogene Forge    16615-6501    Missouri    2016-09-06 13:40:07.936298    2016-10-14 13:02:40.930592        \N    \N    \N    0    \N    \N    \N    \N    female
13236    Mauricio    Denesik    augustine_fadel@armstrongdoyle.co    \N    Papua New Guinea    Lake Adrienside    2125 Koch Corner    92233-8604    Utah    2016-09-14 16:59:29.988641    2016-10-14 13:02:40.935246        \N    \N    \N    0    \N    \N    \N    \N    male
13238    Blake    Marquardt    jay@erdmanhills.com    \N    Rwanda    North Loycechester    848 Rogelio Walks    32368    Vermont    2016-08-06 02:40:28.988475    2016-10-14 13:02:40.948901        \N    \N    \N    0    \N    \N    \N    \N    female
13239    Ibrahim    Ortiz    roosevelt_watsica@krajcikmacgyver.com    \N    Marshall Islands    Lake Solonbury    61950 Destin Summit    23417    California    2016-07-11 07:34:40.88053    2016-10-14 13:02:40.95388        \N    \N    \N    0    \N    \N    \N    \N    male
13240    Celine    Jakubowski    fanny@kuhlmanrolfson.biz    \N    Bangladesh    East Sabrinahaven    5034 Lueilwitz Mill    26743    Minnesota    2016-09-20 14:15:51.930219    2016-10-14 13:02:40.958186        \N    \N    \N    0    \N    \N    \N    \N    female
13241    Dixie    Ratke    augustine_schamberger@buckridgejaskolski.io    \N    Sao Tome and Principe    Fadelchester    23841 Hallie Forge    58950-1524    South Dakota    2016-07-06 11:51:50.680748    2016-10-14 13:02:40.963418        \N    \N    \N    0    \N    \N    \N    \N    female
13242    Lexie    Kertzmann    icie_fahey@pfannerstill.name    \N    Bouvet Island (Bouvetoya)    East Isidroville    2040 Rickie Crossroad    34063    Alabama    2016-09-01 05:03:49.270733    2016-10-14 13:02:40.968217        \N    \N    \N    0    \N    \N    \N    \N    male
13243    Keshaun    O'Hara    keagan@franeckiwitting.info    \N    Nepal    North Laura    87216 Alverta Ports    84007-6801    Alabama    2016-07-29 17:05:00.559837    2016-10-14 13:02:40.972955        \N    \N    \N    0    \N    \N    \N    \N    male
13244    Eve    Konopelski    dorothy_stamm@larsonluettgen.info    \N    Ecuador    Fadelview    887 Franecki Gateway    32792-9977    Maine    2016-08-25 22:10:08.921414    2016-10-14 13:02:40.977795        \N    \N    \N    0    \N    \N    \N    \N    female
13245    Faye    Rogahn    hardy_corkery@berge.biz    \N    Gabon    North Orvillemouth    70389 Runolfsdottir Parks    19376    Utah    2016-08-09 07:13:36.351295    2016-10-14 13:02:40.982633        \N    \N    \N    0    \N    \N    \N    \N    female
13246    Savion    Ortiz    arthur@wittingzboncak.io    \N    Brunei Darussalam    Kerlukeshire    75045 Leannon Terrace    14557    Connecticut    2016-07-08 14:17:41.599804    2016-10-14 13:02:40.988209        \N    \N    \N    0    \N    \N    \N    \N    male
13247    Ophelia    Vandervort    camden_oreilly@bashirian.com    \N    Maldives    Port Domenic    19460 Aaliyah Courts    25528    Virginia    2016-09-23 09:35:26.741271    2016-10-14 13:02:40.992868        \N    \N    \N    0    \N    \N    \N    \N    male
13248    Nicklaus    Quigley    cecil_kerluke@swaniawski.io    \N    Palestinian Territory    Marieburgh    1813 Ima Station    16170    Illinois    2016-07-06 23:33:50.50745    2016-10-14 13:02:40.998057        \N    \N    \N    0    \N    \N    \N    \N    female
13250    Cristal    Rice    annabell_casper@stantonerdman.io    \N    Indonesia    Kristinaborough    84535 Ernestina Streets    19611    Michigan    2016-06-25 23:49:43.343985    2016-10-14 13:02:41.002614        \N    \N    \N    0    \N    \N    \N    \N    male
13251    Raquel    Schoen    domenick_kuphal@larkinwalker.net    \N    Solomon Islands    North Fidel    20889 Lenny Villages    86818-9437    Missouri    2016-08-17 09:51:39.918826    2016-10-14 13:02:41.007425        \N    \N    \N    0    \N    \N    \N    \N    male
13252    Peggie    Schaefer    jewell_krajcik@reichertcasper.info    \N    Saint Helena    Aldastad    837 Breitenberg Points    41602    Kentucky    2016-08-14 14:06:40.70376    2016-10-14 13:02:41.011952        \N    \N    \N    0    \N    \N    \N    \N    male
13253    Carolyn    Murazik    adolfo_leannon@haley.biz    \N    China    Maybellmouth    4591 Josiane Roads    79925    Delaware    2016-09-14 05:21:22.687028    2016-10-14 13:02:41.017159        \N    \N    \N    0    \N    \N    \N    \N    male
13254    Herman    Marks    althea.huel@mayerschneider.com    \N    South Africa    Douglasbury    94885 Rosalyn Pike    85644    Hawaii    2016-07-11 09:53:03.97923    2016-10-14 13:02:41.021892        \N    \N    \N    0    \N    \N    \N    \N    female
13255    Wendy    Hettinger    edyth.bode@cruickshank.biz    \N    Holy See (Vatican City State)    Walterfurt    26783 Electa Parks    88874    Montana    2016-09-03 19:02:51.379271    2016-10-14 13:02:41.026159        \N    \N    \N    0    \N    \N    \N    \N    male
13256    Lula    Towne    rae.davis@smithamwolf.info    \N    Norfolk Island    Watsicamouth    24318 Armstrong Valley    50742    Wisconsin    2016-07-06 09:15:13.932597    2016-10-14 13:02:41.030638        \N    \N    \N    0    \N    \N    \N    \N    female
13257    Lowell    Lindgren    bo_huel@padberg.biz    \N    Bulgaria    New Colt    343 Rath Points    31147-5171    Maine    2016-08-12 05:53:31.138544    2016-10-14 13:02:41.034777        \N    \N    \N    0    \N    \N    \N    \N    female
13259    Violet    Paucek    abbey_nicolas@bartolettimann.co    \N    Dominica    Goldnermouth    2175 Lola Camp    39083-9693    North Carolina    2016-09-05 17:27:46.040215    2016-10-14 13:02:41.039006        \N    \N    \N    0    \N    \N    \N    \N    female
13260    Demetris    Gleichner    ernesto@nolan.biz    \N    Nigeria    Ruthburgh    8634 Jazmyn Parkways    52803-9323    New Jersey    2016-08-18 04:44:58.899001    2016-10-14 13:02:41.04353        \N    \N    \N    0    \N    \N    \N    \N    male
13261    Tito    Weber    madie_oconner@osinskischinner.name    \N    Uruguay    West Luciousshire    3262 Tyson Tunnel    91629-6824    Colorado    2016-08-31 07:24:14.173476    2016-10-14 13:02:41.0484        \N    \N    \N    0    \N    \N    \N    \N    female
13262    Lucio    Moen    carson.ziemann@okuneva.co    \N    Luxembourg    East Tia    40305 Medhurst Club    25945-3768    Michigan    2016-09-22 06:20:19.305379    2016-10-14 13:02:41.053053        \N    \N    \N    0    \N    \N    \N    \N    male
13263    Mariano    Kuphal    gail.berge@powlowskikulas.io    \N    Puerto Rico    South Onieshire    17456 Daniela Loaf    43516-2269    Pennsylvania    2016-08-15 21:53:58.537747    2016-10-14 13:02:41.057667        \N    \N    \N    0    \N    \N    \N    \N    female
13264    Laisha    Feil    lily_kiehn@farrell.org    \N    Marshall Islands    Littleburgh    3495 Alexandro Canyon    52545-5209    Idaho    2016-09-03 08:13:35.048179    2016-10-14 13:02:41.06224        \N    \N    \N    0    \N    \N    \N    \N    female
13265    Mollie    Lang    robin@reichert.biz    \N    Tuvalu    Huelschester    943 Bartoletti Turnpike    23966    Florida    2016-09-28 06:40:01.039178    2016-10-14 13:02:41.066598        \N    \N    \N    0    \N    \N    \N    \N    female
13266    Alexandre    Haag    reuben@strosin.io    \N    Morocco    West Susietown    321 Christy Fords    21190-1378    Missouri    2016-07-15 21:25:05.367906    2016-10-14 13:02:41.071726        \N    \N    \N    0    \N    \N    \N    \N    male
13267    Benedict    Pfannerstill    darian@lind.name    \N    Bosnia and Herzegovina    South Lydamouth    21671 Dorris Mountains    92252-8111    South Carolina    2016-08-17 03:30:41.894164    2016-10-14 13:02:41.076196        \N    \N    \N    0    \N    \N    \N    \N    male
13268    Delmer    Ebert    antone@auer.io    \N    Cocos (Keeling) Islands    Kariannefort    21797 Johathan Circles    90372    Alaska    2016-09-13 03:55:46.988821    2016-10-14 13:02:41.080205        \N    \N    \N    0    \N    \N    \N    \N    female
13269    Hipolito    Wisoky    laverne.erdman@damore.org    \N    Finland    Port Thurmanhaven    387 Tavares Avenue    80949    Pennsylvania    2016-09-24 09:26:09.030171    2016-10-14 13:02:41.084428        \N    \N    \N    0    \N    \N    \N    \N    male
13270    Abelardo    VonRueden    lonie@mills.net    \N    New Caledonia    Irmachester    55993 Oberbrunner Lock    70173-4619    Texas    2016-07-10 23:17:41.651687    2016-10-14 13:02:41.088678        \N    \N    \N    0    \N    \N    \N    \N    female
13271    Hilma    Kutch    amina@mann.biz    \N    Kiribati    West Herminioborough    1580 Maggio Crest    25704-6404    South Carolina    2016-07-30 01:45:22.973405    2016-10-14 13:02:41.094295        \N    \N    \N    0    \N    \N    \N    \N    male
13272    Emerson    Nader    duncan.cronin@farrell.name    \N    Taiwan    East Gardnerland    87029 Danny Loaf    16635    Rhode Island    2016-07-19 21:54:49.275618    2016-10-14 13:02:41.1        \N    \N    \N    0    \N    \N    \N    \N    female
13273    Clyde    Fay    amaya@pouros.name    \N    Pakistan    Stoltenbergland    36959 Roosevelt Rapids    15181    Nebraska    2016-09-10 20:36:40.107093    2016-10-14 13:02:41.106897        \N    \N    \N    0    \N    \N    \N    \N    female
13274    Lucas    Sipes    katlyn_block@murray.name    \N    Monaco    Evieton    902 Kovacek Isle    52842-0964    Alabama    2016-09-24 09:10:12.001428    2016-10-14 13:02:41.121212        \N    \N    \N    0    \N    \N    \N    \N    male
13276    River    Powlowski    patricia@kub.io    \N    Spain    McGlynnchester    154 Cronin Street    91280    Rhode Island    2016-08-30 22:20:07.548717    2016-10-14 13:02:41.133648        \N    \N    \N    0    \N    \N    \N    \N    male
13277    Darrin    Lakin    giovanna@boyle.org    \N    Democratic People's Republic of Korea    South Terrence    5752 Ashton Stream    59998    Wisconsin    2016-08-21 09:26:13.054268    2016-10-14 13:02:41.138572        \N    \N    \N    0    \N    \N    \N    \N    male
13278    Juvenal    Kunde    mya_smith@rathstreich.co    \N    Bahrain    Terryberg    20891 Hammes Island    57026-4098    West Virginia    2016-09-28 02:37:02.610604    2016-10-14 13:02:41.143325        \N    \N    \N    0    \N    \N    \N    \N    female
13279    Erling    Graham    nadia@kiehnosinski.net    \N    Martinique    Fisherside    41359 Carroll Fall    77095    Virginia    2016-08-18 12:54:45.900539    2016-10-14 13:02:41.147618        \N    \N    \N    0    \N    \N    \N    \N    male
13280    Myrna    Batz    kayla@steuber.io    \N    Saint Pierre and Miquelon    Talonland    36335 Paula Plains    54165-6923    Delaware    2016-08-27 08:48:44.147903    2016-10-14 13:02:41.152096        \N    \N    \N    0    \N    \N    \N    \N    female
13281    Wellington    Mills    hubert@trompheidenreich.net    \N    Portugal    East Maye    1450 Genesis Trace    10477    Massachusetts    2016-07-02 04:14:39.968105    2016-10-14 13:02:41.161723        \N    \N    \N    0    \N    \N    \N    \N    male
13282    Nyasia    Roberts    deon.ernser@gerholdhackett.org    \N    Cuba    East Jarrett    1411 Suzanne View    67771    Oregon    2016-08-18 03:43:22.069731    2016-10-14 13:02:41.169904        \N    \N    \N    0    \N    \N    \N    \N    female
13283    Alverta    Dickens    gracie.donnelly@mann.co    \N    Thailand    West Jaylonland    56150 Rice Estates    69016-2936    Maine    2016-07-02 10:40:50.037007    2016-10-14 13:02:41.175279        \N    \N    \N    0    \N    \N    \N    \N    male
13284    Arnold    Wiegand    axel_bergstrom@leuschke.biz    \N    Malta    Port Angelita    155 Sanford Rest    62314    Massachusetts    2016-08-06 20:27:53.895238    2016-10-14 13:02:41.179926        \N    \N    \N    0    \N    \N    \N    \N    male
13285    Antonietta    Streich    ari@thompsonstroman.co    \N    Qatar    South Anastacio    1578 Norma Shoal    57899    Washington    2016-08-12 06:27:57.536761    2016-10-14 13:02:41.184567        \N    \N    \N    0    \N    \N    \N    \N    female
13286    Jane    Batz    arnaldo_gutkowski@friesen.info    \N    Barbados    Boehmberg    18651 Wilford Pass    75554-2960    Arkansas    2016-09-08 13:17:43.730053    2016-10-14 13:02:41.188982        \N    \N    \N    0    \N    \N    \N    \N    female
13288    Freddie    Lueilwitz    burnice_vonrueden@welchbashirian.biz    \N    Bulgaria    Konopelskichester    1562 Brown Mill    37688-2357    South Dakota    2016-09-06 17:36:28.548836    2016-10-14 13:02:41.193372        \N    \N    \N    0    \N    \N    \N    \N    male
13289    Della    Halvorson    maya@walkernienow.net    \N    Afghanistan    Lake Leda    482 Gerhold Mountains    19410-6360    Texas    2016-08-31 17:06:42.060882    2016-10-14 13:02:41.197909        \N    \N    \N    0    \N    \N    \N    \N    male
13290    Isabel    Dooley    keegan@torphy.biz    \N    Tanzania    Brettmouth    22615 Baumbach Plaza    40339    West Virginia    2016-09-17 13:04:31.656108    2016-10-14 13:02:41.202115        \N    \N    \N    0    \N    \N    \N    \N    male
13291    Dianna    Skiles    green_haag@raynor.co    \N    Ghana    North Huldabury    969 Will River    45779-0923    Pennsylvania    2016-09-19 09:20:04.597861    2016-10-14 13:02:41.206636        \N    \N    \N    0    \N    \N    \N    \N    female
13292    Mohamed    Heidenreich    malcolm_mante@treutel.net    \N    Bangladesh    Leannonstad    580 Johnston Alley    55713    New Mexico    2016-08-25 23:47:16.316026    2016-10-14 13:02:41.211334        \N    \N    \N    0    \N    \N    \N    \N    female
13294    Tomasa    Howell    gia@homenickheller.com    \N    New Zealand    Lake Destany    18927 Damaris Expressway    11680-8846    Alaska    2016-07-26 17:45:03.965796    2016-10-14 13:02:41.220025        \N    \N    \N    0    \N    \N    \N    \N    male
13295    Carmine    Witting    felton_littel@mayert.io    \N    Belize    West Jevon    706 Ricardo Divide    82448    West Virginia    2016-08-31 05:31:48.857622    2016-10-14 13:02:41.224569        \N    \N    \N    0    \N    \N    \N    \N    female
13297    Josianne    Farrell    cara@macejkovicjerde.net    \N    Sierra Leone    West Karleeview    16776 Abbott Drives    88121    Kansas    2016-08-22 21:40:07.365719    2016-10-14 13:02:41.228957        \N    \N    \N    0    \N    \N    \N    \N    male
13298    Willy    Trantow    halie@goldner.io    \N    Canada    West Americo    67646 Sylvia Stravenue    45491    Florida    2016-07-06 12:10:22.657934    2016-10-14 13:02:41.233683        \N    \N    \N    0    \N    \N    \N    \N    male
13299    Margarette    Ryan    elyse@botsford.name    \N    Dominica    Port Vernice    81217 Yundt Islands    90064    Oregon    2016-09-18 10:23:28.673486    2016-10-14 13:02:41.23814        \N    \N    \N    0    \N    \N    \N    \N    male
13300    Cydney    Rempel    rudy@bode.com    \N    Cocos (Keeling) Islands    New Wardtown    3065 Hilll Shores    24161-0587    Massachusetts    2016-07-31 12:11:30.951654    2016-10-14 13:02:41.242928        \N    \N    \N    0    \N    \N    \N    \N    male
13301    Johnny    Koch    jack@ortiz.com    \N    Kiribati    North Kraig    729 Floy Roads    71933    Connecticut    2016-08-01 12:52:53.605137    2016-10-14 13:02:41.24743        \N    \N    \N    0    \N    \N    \N    \N    female
13302    Eddie    Satterfield    caandre@reillyschneider.info    \N    Tuvalu    North Rahul    638 Christy Lock    93685    Mississippi    2016-08-26 20:05:18.208444    2016-10-14 13:02:41.252459        \N    \N    \N    0    \N    \N    \N    \N    male
13303    Akeem    Anderson    alexa@gleichnerbartell.biz    \N    Swaziland    Edfort    129 Darren Shoals    99770-2140    New Mexico    2016-09-08 19:09:17.991595    2016-10-14 13:02:41.257152        \N    \N    \N    0    \N    \N    \N    \N    male
13305    Bonita    Keebler    savanah@anderson.co    \N    Lithuania    North Elveratown    404 Bins Squares    26457-3089    Louisiana    2016-09-17 03:34:36.767427    2016-10-14 13:02:41.261944        \N    \N    \N    0    \N    \N    \N    \N    male
13306    Tavares    Marquardt    judge@cruickshank.biz    \N    Kenya    West Marjorieberg    506 Emmanuel Isle    76641    Kansas    2016-09-09 14:02:58.832846    2016-10-14 13:02:41.265888        \N    \N    \N    0    \N    \N    \N    \N    female
13307    Jody    Powlowski    noe@marks.co    \N    Uruguay    Leschton    3955 Trantow Keys    11810-7524    Montana    2016-09-19 18:59:36.862282    2016-10-14 13:02:41.26978        \N    \N    \N    0    \N    \N    \N    \N    female
13308    Ethan    Gusikowski    haie.sipes@herzog.biz    \N    San Marino    Lake Gonzaloland    4819 Ernesto Courts    25639    South Carolina    2016-08-26 07:49:35.943433    2016-10-14 13:02:41.273586        \N    \N    \N    0    \N    \N    \N    \N    male
13309    Delmer    Grimes    kiel_bergstrom@muraziklangworth.net    \N    Northern Mariana Islands    Parisfurt    349 Reynolds Road    71066    New York    2016-07-02 11:15:37.522414    2016-10-14 13:02:41.277613        \N    \N    \N    0    \N    \N    \N    \N    male
13310    Roger    Heaney    macie@mrazsanford.com    \N    Monaco    Kennedistad    885 Leanna Square    10011-8986    Michigan    2016-09-13 12:33:19.855927    2016-10-14 13:02:41.281716        \N    \N    \N    0    \N    \N    \N    \N    male
13311    Annabel    Gutkowski    iac_oconner@damoregleason.biz    \N    Egypt    South Orville    403 Hammes Neck    32719-2339    Pennsylvania    2016-07-12 17:56:01.87795    2016-10-14 13:02:41.285561        \N    \N    \N    0    \N    \N    \N    \N    female
13312    Frieda    Ortiz    myrna@jenkins.net    \N    Portugal    Turcotteland    4566 Jaskolski Port    28994    Iowa    2016-07-30 00:51:10.059164    2016-10-14 13:02:41.289438        \N    \N    \N    0    \N    \N    \N    \N    male
13314    Ernestina    Maggio    alfred@white.io    \N    Cameroon    Lewville    9762 Geoffrey Viaduct    30475-3730    West Virginia    2016-07-08 20:47:41.149079    2016-10-14 13:02:41.293688        \N    \N    \N    0    \N    \N    \N    \N    male
13315    Joshuah    Funk    carmel@jacobi.net    \N    Ethiopia    Lake Jesse    94325 Evie Junctions    19271-0867    Kentucky    2016-07-21 23:46:49.917251    2016-10-14 13:02:41.297734        \N    \N    \N    0    \N    \N    \N    \N    male
13316    Judge    Turner    cleveland@blick.co    \N    Jersey    Durganbury    21733 Trent Meadows    76845-2373    Georgia    2016-09-12 10:55:45.527651    2016-10-14 13:02:41.301772        \N    \N    \N    0    \N    \N    \N    \N    female
13317    Buster    Adams    alvena.crooks@ritchie.name    \N    Andorra    Wiegandmouth    2903 Caleb Brooks    95193-3438    Delaware    2016-07-25 22:59:48.35341    2016-10-14 13:02:41.305913        \N    \N    \N    0    \N    \N    \N    \N    female
13318    Hiram    Brown    boris@kochkuphal.biz    \N    Marshall Islands    McLaughlinmouth    486 Schmitt Park    47609-7594    Delaware    2016-08-26 02:08:06.227821    2016-10-14 13:02:41.310413        \N    \N    \N    0    \N    \N    \N    \N    male
13319    Hank    Koch    bernadette_boyle@muller.com    \N    Malawi    Port Idachester    8834 Obie Mount    20187-1921    Connecticut    2016-09-18 20:42:17.131973    2016-10-14 13:02:41.31482        \N    \N    \N    0    \N    \N    \N    \N    male
13320    Maxine    McGlynn    elia@creminmcclure.info    \N    Germany    New Finnshire    6670 Daryl Parkways    18809    Washington    2016-07-23 00:06:02.265571    2016-10-14 13:02:41.319366        \N    \N    \N    0    \N    \N    \N    \N    male
13321    Chadd    Cassin    euna.barton@greenfelder.net    \N    Nepal    Aufderharview    998 Greenholt Dale    89546-9160    Missouri    2016-09-10 00:07:02.692315    2016-10-14 13:02:41.323869        \N    \N    \N    0    \N    \N    \N    \N    male
13322    Diego    Feest    tristin@dietrich.org    \N    Reunion    Titusside    44616 Kutch Prairie    40882    Maine    2016-09-07 02:37:27.131878    2016-10-14 13:02:41.32844        \N    \N    \N    0    \N    \N    \N    \N    male
13323    Felix    Nicolas    uriel@hagenes.net    \N    Northern Mariana Islands    South Davon    69090 Kayden Forges    34777-4510    Oregon    2016-09-07 01:48:12.520206    2016-10-14 13:02:41.332877        \N    \N    \N    0    \N    \N    \N    \N    male
13324    Marcelo    Dickinson    khalid_oconnell@muellerwalsh.co    \N    Zambia    Adrienneland    8185 Dane Inlet    22829-5556    Wyoming    2016-06-25 13:53:25.293605    2016-10-14 13:02:41.337346        \N    \N    \N    0    \N    \N    \N    \N    female
13325    Alisha    MacGyver    buck@bergstromschultz.name    \N    Norway    Macejkovicland    559 Vallie Summit    35730-7700    Texas    2016-07-08 23:16:17.195163    2016-10-14 13:02:41.34182        \N    \N    \N    0    \N    \N    \N    \N    male
13326    Shanelle    Beier    monserrat@flatleytorp.co    \N    Saint Vincent and the Grenadines    Kuphalville    16994 Wellington Ranch    78760    Oklahoma    2016-09-17 18:04:18.681997    2016-10-14 13:02:41.346263        \N    \N    \N    0    \N    \N    \N    \N    female
13327    Sasha    Cruickshank    jacynthe@corwin.org    \N    Serbia    Letafurt    86802 DuBuque Camp    94490    North Carolina    2016-07-09 01:28:08.420012    2016-10-14 13:02:41.350865        \N    \N    \N    0    \N    \N    \N    \N    female
13328    Joshuah    Grant    myrtis_beier@welch.com    \N    Aruba    Wildermanview    7536 Bahringer Manor    90001-4128    Rhode Island    2016-07-11 22:14:08.626779    2016-10-14 13:02:41.355461        \N    \N    \N    0    \N    \N    \N    \N    male
13329    Elvis    Wisozk    cynthia@windler.net    \N    Romania    Smithmouth    999 Amber Alley    31010    Mississippi    2016-08-28 17:37:27.107318    2016-10-14 13:02:41.359884        \N    \N    \N    0    \N    \N    \N    \N    female
13330    Santina    Gerlach    crystel@carroll.org    \N    Vanuatu    Port Eldaborough    26862 Hamill View    16853    Virginia    2016-09-05 21:11:04.234333    2016-10-14 13:02:41.364254        \N    \N    \N    0    \N    \N    \N    \N    male
13331    Horacio    Borer    camilla.muller@stokes.info    \N    Cayman Islands    Port Dionside    6949 Koelpin Point    99752    Rhode Island    2016-08-26 23:18:05.412718    2016-10-14 13:02:41.368705        \N    \N    \N    0    \N    \N    \N    \N    male
13332    Johnnie    Gibson    julianne_lockman@mcclure.com    \N    Heard Island and McDonald Islands    Mrazfort    895 Jean Curve    89852    Tennessee    2016-07-08 02:55:01.609727    2016-10-14 13:02:41.373133        \N    \N    \N    0    \N    \N    \N    \N    male
13333    Edgardo    Johnson    allene@sanfordkreiger.org    \N    Slovakia (Slovak Republic)    North Juliana    971 Armstrong Course    55912    New Jersey    2016-06-25 22:25:56.631834    2016-10-14 13:02:41.377717        \N    \N    \N    0    \N    \N    \N    \N    female
13334    Tyrique    Mitchell    annabell@littlebeer.name    \N    Antarctica (the territory South of 60 deg S)    Gleichnerfort    3320 Hegmann Rapids    13675    Wisconsin    2016-07-17 21:59:57.265145    2016-10-14 13:02:41.382258        \N    \N    \N    0    \N    \N    \N    \N    male
13335    Micheal    Romaguera    tyrel.lesch@bashirian.biz    \N    Australia    Port Rociofurt    8678 Lera Ridge    90861    Georgia    2016-08-20 03:35:43.278801    2016-10-14 13:02:41.386837        \N    \N    \N    0    \N    \N    \N    \N    female
13336    Mikayla    Daugherty    abbie.medhurst@kovacek.name    \N    Panama    Albertburgh    46481 Doyle Ridge    23016-5248    Kansas    2016-08-25 21:35:41.428457    2016-10-14 13:02:41.391422        \N    \N    \N    0    \N    \N    \N    \N    male
13337    Ferne    Tromp    river_nader@donnellyhermann.com    \N    Nicaragua    Nedbury    1281 Claudia Circles    29925-4166    Delaware    2016-07-11 20:29:22.992826    2016-10-14 13:02:41.39596        \N    \N    \N    0    \N    \N    \N    \N    female
13338    Louvenia    Lakin    kellie@hamill.biz    \N    Germany    Port Roscoe    716 Monahan Knolls    69852-0943    California    2016-09-18 02:37:32.750798    2016-10-14 13:02:41.400409        \N    \N    \N    0    \N    \N    \N    \N    female
13339    Gregory    White    madaline.windler@thompsonmarquardt.org    \N    South Georgia and the South Sandwich Islands    South Vitabury    569 Heidenreich Rue    26887    New Mexico    2016-08-12 04:07:47.071299    2016-10-14 13:02:41.404987        \N    \N    \N    0    \N    \N    \N    \N    male
13340    Haley    Lueilwitz    jamil@mclaughlin.biz    \N    Haiti    Port Willyburgh    1601 Nola Lights    44441    Nevada    2016-07-20 16:13:34.996037    2016-10-14 13:02:41.409553        \N    \N    \N    0    \N    \N    \N    \N    female
13341    Tiffany    Hammes    nicklaus.ruecker@keler.org    \N    Cyprus    Ellenside    72732 Beier Parkway    79922-2330    North Dakota    2016-09-24 23:21:19.58809    2016-10-14 13:02:41.413929        \N    \N    \N    0    \N    \N    \N    \N    female
13342    Heber    Gleason    adaline.walter@torphysenger.name    \N    Qatar    DuBuquemouth    4923 Melvina Islands    61236    Texas    2016-09-23 11:34:20.238207    2016-10-14 13:02:41.418425        \N    \N    \N    0    \N    \N    \N    \N    male
19124    Wyatt    Mills    nikki@wilderman.name    \N    Eritrea    Nicolasburgh    7769 Mertz Stream    61701    Indiana    2016-07-25 13:19:52.242832    2016-10-14 13:02:41.422235        \N    \N    \N    0    \N    \N    \N    \N    female
13345    Eveline    Reichel    gregorio.von@bernhardschowalter.info    \N    Yemen    Edenberg    26204 Janick Terrace    23347    Washington    2016-09-07 14:54:16.730302    2016-10-14 13:02:41.426684        \N    \N    \N    0    \N    \N    \N    \N    female
13348    Ricky    O'Reilly    quinten_swift@hoeger.info    \N    Mali    Wizahaven    185 Frederik Park    96518-4359    Arkansas    2016-08-01 23:25:15.280421    2016-10-14 13:02:41.431007        \N    \N    \N    0    \N    \N    \N    \N    male
13349    Linda    Cassin    isobel.considine@corkery.biz    \N    Turkmenistan    South Delilah    6269 Goodwin River    76942-6483    New Jersey    2016-07-20 02:23:48.017479    2016-10-14 13:02:41.434849        \N    \N    \N    0    \N    \N    \N    \N    female
13350    Alice    Huels    diana_lebsack@smitham.biz    \N    Georgia    Stehrton    821 Shad Plains    35243    Hawaii    2016-07-18 04:21:41.244508    2016-10-14 13:02:41.438648        \N    \N    \N    0    \N    \N    \N    \N    male
13351    Vern    Sipes    shanel@zemlak.co    \N    San Marino    Clarabelleport    92762 Quinten Coves    66329    Pennsylvania    2016-08-15 07:56:11.357793    2016-10-14 13:02:41.442563        \N    \N    \N    0    \N    \N    \N    \N    female
13352    Jocelyn    Ullrich    kyler@zboncak.net    \N    Virgin Islands, British    Lake Kaitlin    488 Della Field    41859-3448    Alaska    2016-08-05 00:18:30.388278    2016-10-14 13:02:41.446985        \N    \N    \N    0    \N    \N    \N    \N    female
13353    Jasmin    Casper    angeline.grant@franecki.io    \N    Lesotho    West Leopold    99241 Murazik Prairie    43516-8573    Idaho    2016-08-27 08:49:39.182406    2016-10-14 13:02:41.451199        \N    \N    \N    0    \N    \N    \N    \N    male
13354    Marilou    Wiegand    yoshiko@crist.io    \N    Philippines    Nickolasmouth    7541 Priscilla Walk    95888-9630    Colorado    2016-06-29 19:28:20.001028    2016-10-14 13:02:41.455216        \N    \N    \N    0    \N    \N    \N    \N    male
13355    Haleigh    Gaylord    tatyana@rathharber.co    \N    Papua New Guinea    Christiansenport    470 Carmella Falls    92355    Arkansas    2016-09-18 08:26:53.63249    2016-10-14 13:02:41.459427        \N    \N    \N    0    \N    \N    \N    \N    male
13356    Evan    Harris    anais_oconnell@heathcotehane.co    \N    Peru    Monaville    41009 Denis Ford    44457    New Mexico    2016-08-30 16:46:04.622571    2016-10-14 13:02:41.463435        \N    \N    \N    0    \N    \N    \N    \N    female
13357    Travon    Johnson    sherman.schoen@kirlincasper.info    \N    Rwanda    Danielton    149 Nelda Green    50614-3368    Minnesota    2016-09-28 17:16:20.650352    2016-10-14 13:02:41.467704        \N    \N    \N    0    \N    \N    \N    \N    female
13358    Kory    Hermann    hayden.willms@cruickshank.biz    \N    Palestinian Territory    Crooksfurt    35774 Morar Crest    22533-1174    Florida    2016-07-14 00:30:26.233521    2016-10-14 13:02:41.471976        \N    \N    \N    0    \N    \N    \N    \N    female
13359    Oren    Graham    ian@toybashirian.info    \N    Taiwan    Mosciskibury    6450 Barton Villages    76041-3842    West Virginia    2016-07-09 04:18:18.282396    2016-10-14 13:02:41.476208        \N    \N    \N    0    \N    \N    \N    \N    female
13360    Andres    Cummings    damien_towne@jacobs.com    \N    Paraguay    East Cierra    430 Concepcion Passage    70536-6158    Tennessee    2016-06-23 02:43:00.723534    2016-10-14 13:02:41.480108        \N    \N    \N    0    \N    \N    \N    \N    female
13361    Harold    Keeling    jazlyn_monahan@hane.co    \N    Macao    Lydiahaven    567 Ben Freeway    93382-3292    North Carolina    2016-09-13 21:45:41.507744    2016-10-14 13:02:41.484364        \N    \N    \N    0    \N    \N    \N    \N    male
13362    Kayleigh    Torp    kory.breitenberg@gulgowski.co    \N    Tajikistan    North Delmermouth    781 Jerde Fort    53925-1890    Missouri    2016-08-09 09:45:44.072698    2016-10-14 13:02:41.488548        \N    \N    \N    0    \N    \N    \N    \N    female
13363    Geovanny    Wyman    marjory@schaefer.co    \N    Myanmar    Douglasport    725 Emard Pike    11344-7361    Rhode Island    2016-07-07 15:22:30.273957    2016-10-14 13:02:41.49255        \N    \N    \N    0    \N    \N    \N    \N    male
13364    Joaquin    Schuster    kailey_ankunding@breitenberg.name    \N    Saint Pierre and Miquelon    New Ottilie    444 Aurore Stravenue    51887-9346    Hawaii    2016-09-13 20:41:51.287537    2016-10-14 13:02:41.496634        \N    \N    \N    0    \N    \N    \N    \N    male
13365    Elias    Lakin    berneice@tremblay.io    \N    Palau    South Hildaville    8996 Loraine Divide    34282-7706    Arkansas    2016-09-18 16:19:33.925427    2016-10-14 13:02:41.500709        \N    \N    \N    0    \N    \N    \N    \N    male
13366    Roberto    Strosin    alfonso@waters.io    \N    Nicaragua    Gorczanyland    7978 Maya Pine    89410-8869    New Hampshire    2016-07-17 05:27:16.209633    2016-10-14 13:02:41.5048        \N    \N    \N    0    \N    \N    \N    \N    female
13367    Bria    Heathcote    donavon.hermiston@barton.name    \N    Gibraltar    South Arnaldomouth    5626 Jaime Row    14107-1408    Maine    2016-07-27 22:00:39.181265    2016-10-14 13:02:41.508971        \N    \N    \N    0    \N    \N    \N    \N    female
13368    Jayson    Kerluke    kayley@steuber.info    \N    Guernsey    South Brendon    252 Nova Prairie    20712-3691    West Virginia    2016-07-21 08:48:51.129969    2016-10-14 13:02:41.512905        \N    \N    \N    0    \N    \N    \N    \N    male
13369    Alysa    Schoen    leie@jenkins.name    \N    Kuwait    North Ruthiefort    4373 Shaylee Locks    92018    South Carolina    2016-08-17 18:50:13.934441    2016-10-14 13:02:41.516755        \N    \N    \N    0    \N    \N    \N    \N    female
13370    Hugh    Breitenberg    kathlyn_lemke@donnellysipes.co    \N    United States of America    East Alyssonberg    70708 Schultz Path    64867-0551    Nebraska    2016-06-24 18:22:39.478156    2016-10-14 13:02:41.520805        \N    \N    \N    0    \N    \N    \N    \N    male
13371    Andres    Herzog    nasir@dibbert.biz    \N    Equatorial Guinea    West Amariton    6462 Cruickshank Stream    57233    Delaware    2016-09-07 00:39:36.399863    2016-10-14 13:02:41.524819        \N    \N    \N    0    \N    \N    \N    \N    female
13372    Evelyn    Sporer    muhammad.cartwright@rowe.org    \N    Saint Helena    Port Mertieshire    408 Leopoldo Shore    76193    New York    2016-08-25 08:27:56.858109    2016-10-14 13:02:41.529504        \N    \N    \N    0    \N    \N    \N    \N    male
13373    Citlalli    Ritchie    bradford.kiehn@morarjaskolski.com    \N    Iceland    North Carmen    21215 Helene Plaza    24947-4011    Wyoming    2016-06-23 21:23:35.452326    2016-10-14 13:02:41.533533        \N    \N    \N    0    \N    \N    \N    \N    female
13374    Braeden    Batz    willa_adams@vandervort.name    \N    Isle of Man    Faheyborough    13314 Mertie Radial    10181    Wyoming    2016-06-29 20:21:20.048459    2016-10-14 13:02:41.537549        \N    \N    \N    0    \N    \N    \N    \N    female
13375    Roel    Gulgowski    harvey.grant@hahn.io    \N    Lao People's Democratic Republic    North Madgestad    874 MacGyver Ways    82187    California    2016-09-08 21:17:37.996063    2016-10-14 13:02:41.541644        \N    \N    \N    0    \N    \N    \N    \N    female
13376    Ardella    Bogisich    maritza_goldner@mills.com    \N    Honduras    Baumbachfort    619 Stanley Circle    43331    Vermont    2016-09-19 10:50:37.0092    2016-10-14 13:02:41.545951        \N    \N    \N    0    \N    \N    \N    \N    female
13377    Calista    Lakin    baylee_metz@carter.net    \N    Haiti    Virgiehaven    6068 Alberta Parkways    72090    Illinois    2016-09-27 20:53:34.380738    2016-10-14 13:02:41.550202        \N    \N    \N    0    \N    \N    \N    \N    male
13378    Pedro    Lind    lauretta@hagenes.net    \N    Zambia    Port Amoston    443 Ernser Corner    18728-3380    Nebraska    2016-07-04 16:20:33.669141    2016-10-14 13:02:41.554077        \N    \N    \N    0    \N    \N    \N    \N    male
13379    Malvina    Adams    reynold_emmerich@fritsch.name    \N    Angola    West Estebanstad    5136 Beer Ridge    93361-9050    Oklahoma    2016-08-12 05:49:51.528362    2016-10-14 13:02:41.55793        \N    \N    \N    0    \N    \N    \N    \N    male
13380    Garrick    Rau    zetta.casper@donnelly.biz    \N    Cayman Islands    Lake Camdenborough    12484 Kris Parks    41170-8525    Michigan    2016-07-11 05:22:54.247996    2016-10-14 13:02:41.561964        \N    \N    \N    0    \N    \N    \N    \N    female
13381    Michale    Cartwright    leda@streichrolfson.io    \N    Micronesia    Orionton    98626 Quinn Trace    15900-5822    Oklahoma    2016-09-06 10:48:12.712781    2016-10-14 13:02:41.565843        \N    \N    \N    0    \N    \N    \N    \N    male
13382    Michele    Harris    stephen@stracke.net    \N    Liberia    East Citlalli    626 Runte Pike    46549    Kansas    2016-08-30 11:31:46.866601    2016-10-14 13:02:41.570636        \N    \N    \N    0    \N    \N    \N    \N    male
13384    Tremaine    Klein    lonie_von@thiel.com    \N    Guyana    Ellieville    8014 Robel Ways    51740    South Carolina    2016-09-03 21:28:36.514526    2016-10-14 13:02:41.574749        \N    \N    \N    0    \N    \N    \N    \N    female
13386    Terrence    Bahringer    ruthie@pollich.biz    \N    Bahrain    Boyleberg    721 Schmeler Haven    67526    Texas    2016-09-22 16:14:53.89402    2016-10-14 13:02:41.578673        \N    \N    \N    0    \N    \N    \N    \N    male
13387    Herta    Trantow    dewayne.boehm@mante.co    \N    Afghanistan    Reingerside    921 McDermott Ports    24128    Mississippi    2016-08-19 16:37:49.247014    2016-10-14 13:02:41.582932        \N    \N    \N    0    \N    \N    \N    \N    male
13388    Bartholome    Erdman    caria@terry.info    \N    Greenland    Lake Adrienne    91936 Bernhard Squares    48116-7763    Arizona    2016-08-24 20:58:48.511885    2016-10-14 13:02:41.587307        \N    \N    \N    0    \N    \N    \N    \N    male
13389    Woodrow    Rippin    damien@macgyvergaylord.io    \N    Armenia    Baumbachberg    7591 Hintz Course    22753-8731    Tennessee    2016-09-19 20:25:48.679411    2016-10-14 13:02:41.591526        \N    \N    \N    0    \N    \N    \N    \N    male
13390    Dayna    Prohaska    danyka@pacocha.org    \N    Norfolk Island    New Faye    75332 Littel Brook    48340-6699    Washington    2016-07-19 15:45:16.786839    2016-10-14 13:02:41.595572        \N    \N    \N    0    \N    \N    \N    \N    female
13391    Derek    Murray    bryon.johns@skiles.net    \N    Cocos (Keeling) Islands    South Geovannyton    33776 Urban Island    82402-3313    Minnesota    2016-08-28 18:03:44.076307    2016-10-14 13:02:41.599579        \N    \N    \N    0    \N    \N    \N    \N    female
13392    Kaleigh    Conroy    meggie_walsh@rempel.io    \N    Nauru    Wittingville    3319 Breitenberg Viaduct    81227    Illinois    2016-06-23 11:26:50.002698    2016-10-14 13:02:41.604098        \N    \N    \N    0    \N    \N    \N    \N    male
13393    Celia    Hackett    wellington.howell@dicki.org    \N    Saudi Arabia    Malcolmside    59550 Gleichner Ports    92754    Alabama    2016-09-07 20:46:28.049359    2016-10-14 13:02:41.608436        \N    \N    \N    0    \N    \N    \N    \N    female
13395    Teresa    DuBuque    sydnee@johnstonraynor.biz    \N    Burkina Faso    Rathmouth    580 Houston Pike    56708-0685    Tennessee    2016-07-29 11:17:16.833277    2016-10-14 13:02:41.61236        \N    \N    \N    0    \N    \N    \N    \N    female
13396    Vladimir    Braun    angel@bergnaum.net    \N    Heard Island and McDonald Islands    Marvinshire    234 Oliver Rest    57180    New York    2016-07-07 16:38:58.283751    2016-10-14 13:02:41.61725        \N    \N    \N    0    \N    \N    \N    \N    male
13397    Vena    Robel    georgianna_stanton@jacobs.info    \N    Saint Vincent and the Grenadines    East Evansland    54232 Orlando Motorway    83508    Texas    2016-09-13 07:29:03.181179    2016-10-14 13:02:41.621624        \N    \N    \N    0    \N    \N    \N    \N    male
13398    Jody    Cummings    brenda@denesik.co    \N    Trinidad and Tobago    North Josiane    7427 Coleman Ridge    65803-3566    Delaware    2016-08-22 22:35:13.585749    2016-10-14 13:02:41.626039        \N    \N    \N    0    \N    \N    \N    \N    female
13400    Krystal    Schaden    dana@lubowitz.com    \N    Nauru    Kenyattamouth    728 Feeney Pines    52388-5830    Indiana    2016-08-16 07:23:12.104584    2016-10-14 13:02:41.630147        \N    \N    \N    0    \N    \N    \N    \N    female
13401    Russell    Mohr    brook.blanda@hegmann.co    \N    Republic of Korea    Hunterstad    6146 Durgan Brook    27792-9639    Idaho    2016-08-31 02:26:33.215307    2016-10-14 13:02:41.634384        \N    \N    \N    0    \N    \N    \N    \N    female
13402    Jamison    Welch    claire@gleason.io    \N    Djibouti    East Emilia    5859 Murphy Trafficway    22090-0529    South Dakota    2016-08-02 22:50:52.086007    2016-10-14 13:02:41.638739        \N    \N    \N    0    \N    \N    \N    \N    female
13403    Tobin    Zieme    valentine.kuhic@schamberger.net    \N    Guinea    New Lora    440 Kole Turnpike    23715-1070    Idaho    2016-09-27 20:13:56.88916    2016-10-14 13:02:41.643151        \N    \N    \N    0    \N    \N    \N    \N    female
13404    Raina    Funk    terrell_kuhlman@gaylord.io    \N    Saint Lucia    West Jarodtown    421 Feil Terrace    74700    Massachusetts    2016-08-30 12:05:10.997244    2016-10-14 13:02:41.647473        \N    \N    \N    0    \N    \N    \N    \N    male
13405    Bettye    Ferry    beie.bins@mante.io    \N    Antigua and Barbuda    Langoshbury    6519 Meggie Harbors    70284    Maryland    2016-09-04 13:51:08.954881    2016-10-14 13:02:41.651578        \N    \N    \N    0    \N    \N    \N    \N    female
13406    Reba    Murphy    esther.mosciski@runte.name    \N    Trinidad and Tobago    Constanceshire    84158 Schinner Village    62632    Wyoming    2016-07-03 13:15:27.776423    2016-10-14 13:02:41.655447        \N    \N    \N    0    \N    \N    \N    \N    female
13407    Cloyd    Corwin    hilbert@predovic.co    \N    Tonga    Kulaston    29726 Gregory Parks    84802-0226    New York    2016-09-28 04:17:29.076566    2016-10-14 13:02:41.659251        \N    \N    \N    0    \N    \N    \N    \N    female
13408    Flossie    Mann    karine@bergebernier.com    \N    Mayotte    South Joellefurt    9274 Mazie Parks    46353    Oklahoma    2016-09-14 01:51:50.23475    2016-10-14 13:02:41.663087        \N    \N    \N    0    \N    \N    \N    \N    male
13409    Lee    Reichert    leila@yostlabadie.biz    \N    Czech Republic    Connellychester    51153 Reichert Creek    75395    Massachusetts    2016-07-05 13:46:27.887815    2016-10-14 13:02:41.666892        \N    \N    \N    0    \N    \N    \N    \N    male
13410    Horacio    Rosenbaum    noemy_mccullough@zemlak.biz    \N    Central African Republic    New Marianeside    37339 Alexandrine Coves    30786    Rhode Island    2016-09-13 01:02:09.839331    2016-10-14 13:02:41.670882        \N    \N    \N    0    \N    \N    \N    \N    female
13411    Aracely    Cormier    jerel.leffler@mohr.com    \N    Isle of Man    Lake Ross    37401 Watsica Prairie    46065-3665    Texas    2016-08-03 22:59:36.299619    2016-10-14 13:02:41.674832        \N    \N    \N    0    \N    \N    \N    \N    male
13412    Horace    Auer    danny_pacocha@koepp.biz    \N    Paraguay    Rosinaview    253 Lucious Hill    66628-6378    Oklahoma    2016-07-18 13:27:36.094652    2016-10-14 13:02:41.679164        \N    \N    \N    0    \N    \N    \N    \N    female
13413    Kelton    Stanton    madonna.kertzmann@feesthirthe.co    \N    Lebanon    Port Michel    26519 Claud Street    52988    Nevada    2016-09-09 18:19:17.639396    2016-10-14 13:02:41.683285        \N    \N    \N    0    \N    \N    \N    \N    male
13414    Lauriane    Ward    sydnie_hills@beahannitzsche.net    \N    Norfolk Island    North Callieland    3815 Cary Lodge    26302-5517    Connecticut    2016-08-25 22:24:40.345158    2016-10-14 13:02:41.687756        \N    \N    \N    0    \N    \N    \N    \N    male
13415    Katelyn    Treutel    abe_vonrueden@wuckert.info    \N    Turkey    East Earnestine    44346 Sabrina Stravenue    76067-6974    West Virginia    2016-08-01 03:22:28.934089    2016-10-14 13:02:41.691698        \N    \N    \N    0    \N    \N    \N    \N    female
13416    Gladys    Tillman    melya.cremin@dare.com    \N    Grenada    West Luciennefort    7047 Wellington Corner    66588-3430    Illinois    2016-08-12 04:59:00.190903    2016-10-14 13:02:41.695561        \N    \N    \N    0    \N    \N    \N    \N    male
13417    Katrina    Franecki    anna.rath@uptonluettgen.co    \N    Myanmar    Port Darrelhaven    8375 Marlee Island    15547    North Dakota    2016-07-18 02:15:32.31845    2016-10-14 13:02:41.69951        \N    \N    \N    0    \N    \N    \N    \N    female
13418    River    Prosacco    mollie.stracke@daughertywolf.com    \N    Bolivia    Gusikowskifurt    651 Keeling Turnpike    99294    North Dakota    2016-07-15 08:59:41.406851    2016-10-14 13:02:41.703781        \N    \N    \N    0    \N    \N    \N    \N    male
13419    Naomie    Zieme    maxwell@bednar.biz    \N    Bosnia and Herzegovina    South Ludwigland    419 Bogisich Shoal    32448-8155    Delaware    2016-09-20 10:07:11.483785    2016-10-14 13:02:41.707679        \N    \N    \N    0    \N    \N    \N    \N    male
13420    Edd    Vandervort    peyton.rosenbaum@vonkeebler.biz    \N    Micronesia    Lake Marcellus    1302 Euna Lakes    92415    Maryland    2016-07-13 13:57:06.390699    2016-10-14 13:02:41.711793        \N    \N    \N    0    \N    \N    \N    \N    male
13421    Angelica    Bauch    foster_kerluke@barrows.com    \N    French Guiana    Joyceborough    46983 Keshawn Cliffs    53572-1668    Washington    2016-08-11 09:02:21.720864    2016-10-14 13:02:41.716795        \N    \N    \N    0    \N    \N    \N    \N    female
13422    Janick    Kuhn    deanna_reichert@shanahan.net    \N    Tokelau    Lake Ruthie    87704 D'angelo Street    58766-6431    Florida    2016-09-12 20:45:54.736087    2016-10-14 13:02:41.721175        \N    \N    \N    0    \N    \N    \N    \N    male
13423    Jack    Bednar    bertrand_luettgen@walkersauer.io    \N    Kiribati    West Emilie    56504 Steuber Harbors    72964-9752    New York    2016-09-26 20:12:25.313033    2016-10-14 13:02:41.725744        \N    \N    \N    0    \N    \N    \N    \N    female
13424    Philip    Renner    ericka.franecki@breitenberg.name    \N    Australia    New Mistyfurt    934 Bednar Common    26480    Mississippi    2016-07-13 07:29:42.781481    2016-10-14 13:02:41.729792        \N    \N    \N    0    \N    \N    \N    \N    female
13425    Allan    O'Conner    rosamond@cainheidenreich.biz    \N    Puerto Rico    South Deshawnview    978 Jazmyne Lane    26464    Iowa    2016-06-26 12:02:01.088567    2016-10-14 13:02:41.733756        \N    \N    \N    0    \N    \N    \N    \N    male
13426    Dashawn    Rosenbaum    jeie.lind@marquardtadams.net    \N    Heard Island and McDonald Islands    Pinkiebury    2385 Antone Place    13554-5693    Nebraska    2016-09-14 17:44:06.381944    2016-10-14 13:02:41.737739        \N    \N    \N    0    \N    \N    \N    \N    male
13427    Oswald    Flatley    dawson.rau@metz.com    \N    Seychelles    Wintheiserbury    33417 Mabel Junctions    24659-2453    Georgia    2016-09-20 05:48:11.024751    2016-10-14 13:02:41.741726        \N    \N    \N    0    \N    \N    \N    \N    female
13428    Harmony    Hoppe    cayla_kozey@wiegand.info    \N    United Kingdom    Port Carlo    67736 Alfred Views    38239    Louisiana    2016-07-22 18:18:07.475636    2016-10-14 13:02:41.745648        \N    \N    \N    0    \N    \N    \N    \N    male
13429    Halie    Prosacco    donavon@roobhand.io    \N    Belgium    West Dayne    2790 Schroeder Overpass    70891    North Dakota    2016-07-07 21:50:23.413058    2016-10-14 13:02:41.749945        \N    \N    \N    0    \N    \N    \N    \N    male
13430    Ethelyn    Wisoky    rebeka_hodkiewicz@yundt.name    \N    Uzbekistan    Murielville    6171 Carroll Mills    12132-5221    Maryland    2016-09-28 21:52:59.354837    2016-10-14 13:02:41.754359        \N    \N    \N    0    \N    \N    \N    \N    female
19836    Kayden    Dare    micah@stokes.co    \N    Rwanda    Kaylatown    100 Feest Lodge    54910-0821    Arizona    2016-06-24 12:55:23.350846    2016-10-14 13:02:41.758377        \N    \N    \N    0    \N    \N    \N    \N    female
13431    Taylor    Wyman    jamie@willms.biz    \N    Vanuatu    East Darien    806 Emard Cliffs    60620-7057    Delaware    2016-09-08 10:58:29.924359    2016-10-14 13:02:41.762182        \N    \N    \N    0    \N    \N    \N    \N    male
13432    Francis    Carroll    elena@cremin.com    \N    Uzbekistan    Ruthton    1097 Goldner Overpass    84019-5128    Wisconsin    2016-07-09 15:15:07.046424    2016-10-14 13:02:41.766143        \N    \N    \N    0    \N    \N    \N    \N    female
13433    Jazmin    Crist    malika@koruel.name    \N    Ethiopia    South Jaylanview    8268 Genesis Valley    49353-5548    Oregon    2016-09-11 13:49:32.782585    2016-10-14 13:02:41.770151        \N    \N    \N    0    \N    \N    \N    \N    male
13434    Gunnar    Rohan    hortense_nienow@mcdermottbuckridge.biz    \N    Vietnam    North Andres    276 Michael Rue    31624-7349    Kansas    2016-08-21 23:57:15.034569    2016-10-14 13:02:41.774436        \N    \N    \N    0    \N    \N    \N    \N    female
13435    Adolf    Collins    osbaldo@schimmelfritsch.io    \N    Bolivia    Trantowview    9675 Sylvia Squares    86491    Utah    2016-08-21 19:36:27.251874    2016-10-14 13:02:41.778639        \N    \N    \N    0    \N    \N    \N    \N    female
13436    Jakob    Ferry    augusta.hahn@leuschke.org    \N    Mali    South Manuel    789 Bechtelar Street    45484    Kansas    2016-07-21 00:00:01.763745    2016-10-14 13:02:41.783125        \N    \N    \N    0    \N    \N    \N    \N    female
13437    Albin    Heathcote    berry_predovic@conroygrady.name    \N    Lithuania    Cooperhaven    8039 Violet Spring    45957    Maine    2016-07-26 01:02:47.289392    2016-10-14 13:02:41.787528        \N    \N    \N    0    \N    \N    \N    \N    male
13438    Zaria    Marvin    harvey@nitzschehirthe.org    \N    Afghanistan    Millermouth    820 Carrie Locks    53156-1378    West Virginia    2016-09-16 07:03:29.740405    2016-10-14 13:02:41.791819        \N    \N    \N    0    \N    \N    \N    \N    male
13439    Art    Cummings    robin.cartwright@turner.io    \N    Bahamas    New Alishabury    9652 Kirstin Knoll    78219-5358    Arkansas    2016-08-10 21:03:48.546423    2016-10-14 13:02:41.796393        \N    \N    \N    0    \N    \N    \N    \N    female
13440    Irving    Willms    lonzo_davis@marvinfeil.com    \N    Cape Verde    West Lula    2105 Wolff Parkway    74466    Oklahoma    2016-09-18 08:46:03.658911    2016-10-14 13:02:41.800567        \N    \N    \N    0    \N    \N    \N    \N    female
13441    Violette    Brekke    alexys@paucek.name    \N    Ireland    Derekmouth    76337 Mante Walk    37122-5785    Tennessee    2016-08-18 13:34:53.746272    2016-10-14 13:02:41.805465        \N    \N    \N    0    \N    \N    \N    \N    female
13443    Jody    Hessel    moriah.abshire@batzdeckow.co    \N    Antarctica (the territory South of 60 deg S)    New Ayla    7079 Therese Drive    11474    North Carolina    2016-09-01 15:26:18.946207    2016-10-14 13:02:41.81075        \N    \N    \N    0    \N    \N    \N    \N    male
13444    Kris    Cummings    cristobal_stokes@predovic.biz    \N    Eritrea    East Afton    21424 Faye Forges    21711    Kansas    2016-07-20 05:35:03.271963    2016-10-14 13:02:41.817171        \N    \N    \N    0    \N    \N    \N    \N    male
13445    Cathy    Torphy    ro_abbott@yundt.name    \N    Bahamas    Schultzstad    296 Fisher Run    14336    Nevada    2016-08-02 11:35:13.181019    2016-10-14 13:02:41.82275        \N    \N    \N    0    \N    \N    \N    \N    female
13446    Delbert    Hammes    alia.pfeffer@macgyver.org    \N    Yemen    West Jaynemouth    69928 Conn Run    92640    Missouri    2016-09-27 10:56:09.940352    2016-10-14 13:02:41.827385        \N    \N    \N    0    \N    \N    \N    \N    male
13447    Geovany    Dicki    tyrell.champlin@cain.com    \N    Costa Rica    Soniaside    525 Kessler Heights    17142    North Dakota    2016-07-09 03:51:01.416429    2016-10-14 13:02:41.831986        \N    \N    \N    0    \N    \N    \N    \N    female
13448    Dana    Ruecker    carlotta@crooks.org    \N    Singapore    Kertzmannchester    476 Pollich Burg    46144    California    2016-09-06 01:27:05.716539    2016-10-14 13:02:41.836978        \N    \N    \N    0    \N    \N    \N    \N    male
13449    Ephraim    Von    clay_lind@sawayn.io    \N    Cote d'Ivoire    New Efrenport    657 Mohr Radial    95834    Maine    2016-07-20 19:32:15.457674    2016-10-14 13:02:41.84238        \N    \N    \N    0    \N    \N    \N    \N    male
13450    Amelia    Hills    joan.hills@rauebert.name    \N    Faroe Islands    Cleveborough    2341 Okuneva Station    31059    Nevada    2016-08-04 13:59:57.817854    2016-10-14 13:02:41.847003        \N    \N    \N    0    \N    \N    \N    \N    female
13451    Schuyler    Nicolas    craig@kovacek.org    \N    Guinea-Bissau    Botsfordchester    7383 Kohler Flats    51899    New Jersey    2016-09-25 02:56:57.835665    2016-10-14 13:02:41.851539        \N    \N    \N    0    \N    \N    \N    \N    female
13452    Matilde    Cronin    dean@metz.co    \N    Brunei Darussalam    West Juneport    23609 Anastasia Track    58143-6301    Illinois    2016-08-03 09:33:12.994559    2016-10-14 13:02:41.85614        \N    \N    \N    0    \N    \N    \N    \N    male
13453    Uriah    Gaylord    bianka.kshlerin@starkcasper.info    \N    Jamaica    Jakobberg    3952 Gorczany Cliff    43965    South Dakota    2016-06-30 12:34:38.940001    2016-10-14 13:02:41.860752        \N    \N    \N    0    \N    \N    \N    \N    male
13454    Norbert    Hammes    hazle@schultzharvey.com    \N    Sierra Leone    Darrintown    54740 Judd Drive    46500-5178    Utah    2016-07-13 09:43:47.566908    2016-10-14 13:02:41.865089        \N    \N    \N    0    \N    \N    \N    \N    female
13455    Saige    Klocko    lolita.heller@leschlowe.org    \N    Switzerland    Pfefferchester    1100 MacGyver Square    45719-1212    Oregon    2016-07-02 15:48:26.648799    2016-10-14 13:02:41.870259        \N    \N    \N    0    \N    \N    \N    \N    male
13456    Santina    Reichert    juliet.cole@okuneva.co    \N    Gabon    South Wilfredmouth    57168 Heidenreich Rue    91593-6213    Massachusetts    2016-07-24 19:47:34.746791    2016-10-14 13:02:41.875045        \N    \N    \N    0    \N    \N    \N    \N    female
13457    Amelia    Stehr    teresa_emard@volkman.name    \N    Lao People's Democratic Republic    Pearlineport    601 Bode Canyon    33090-9431    Maryland    2016-07-13 17:17:03.017163    2016-10-14 13:02:41.879084        \N    \N    \N    0    \N    \N    \N    \N    female
13458    Keara    Lehner    wava@keeling.name    \N    Portugal    West Lonny    60252 Konopelski Oval    21868    Michigan    2016-09-23 04:18:28.071595    2016-10-14 13:02:41.883596        \N    \N    \N    0    \N    \N    \N    \N    female
13459    Odessa    Kihn    kaylie_lind@ledner.biz    \N    Sweden    Katelynnstad    3753 Mireille Streets    54051    Alabama    2016-07-20 19:47:28.446614    2016-10-14 13:02:41.888275        \N    \N    \N    0    \N    \N    \N    \N    female
13460    Santos    Howe    jackson@abernathy.info    \N    Turks and Caicos Islands    Doviebury    662 Joanny Parks    12470    Delaware    2016-06-26 12:20:26.475997    2016-10-14 13:02:41.892516        \N    \N    \N    0    \N    \N    \N    \N    male
13461    Brielle    Effertz    bret_kilback@nikolaus.biz    \N    Sao Tome and Principe    Toneyhaven    9968 Koss Greens    92010    New Hampshire    2016-08-02 08:47:25.078628    2016-10-14 13:02:41.896982        \N    \N    \N    0    \N    \N    \N    \N    male
13462    Virginie    Rolfson    aron.damore@anderson.info    \N    Seychelles    West Ruthe    47682 Cronin Estate    13574    West Virginia    2016-09-15 17:08:41.365604    2016-10-14 13:02:41.901625        \N    \N    \N    0    \N    \N    \N    \N    male
13463    Bradly    Senger    jannie@bradtke.io    \N    Albania    Kuhlmanberg    53209 Gabrielle Village    63816    Florida    2016-08-11 09:41:16.885965    2016-10-14 13:02:41.905839        \N    \N    \N    0    \N    \N    \N    \N    female
13464    Charlie    Bashirian    judah@zboncakschowalter.org    \N    France    Nyastad    51923 Ebert Underpass    30971-3273    Washington    2016-06-29 07:36:52.506606    2016-10-14 13:02:41.91017        \N    \N    \N    0    \N    \N    \N    \N    female
13465    Shayna    Hirthe    doris@zboncakmorar.biz    \N    Uruguay    West Katelinton    217 Bartoletti Fields    46634    Wyoming    2016-06-26 16:42:13.550508    2016-10-14 13:02:41.914525        \N    \N    \N    0    \N    \N    \N    \N    female
13466    William    Hills    lucienne@crona.net    \N    Senegal    Lake Alfordland    30171 Schuster Pine    94665    Wyoming    2016-09-06 22:50:59.864072    2016-10-14 13:02:41.919091        \N    \N    \N    0    \N    \N    \N    \N    male
13467    Taya    Huels    hudson.kuvalis@langosh.co    \N    Azerbaijan    Kyleighport    434 Wellington Circles    61172    Delaware    2016-07-17 04:27:03.680713    2016-10-14 13:02:41.923745        \N    \N    \N    0    \N    \N    \N    \N    female
13468    Jadon    Ward    bobbie@abernathy.com    \N    Germany    Port Ariel    4476 Cory Keys    63385-5019    California    2016-07-11 21:43:03.203732    2016-10-14 13:02:41.928018        \N    \N    \N    0    \N    \N    \N    \N    male
13469    Alicia    Leffler    jayde_donnelly@reingerhowell.name    \N    Palau    Nathanielchester    385 Destini Centers    26093    Utah    2016-08-30 17:46:38.263737    2016-10-14 13:02:41.932566        \N    \N    \N    0    \N    \N    \N    \N    female
13470    Henderson    Farrell    merl.white@cummerataledner.name    \N    Jamaica    Lefflerton    89970 Justine Route    54148-7479    New Hampshire    2016-06-24 09:57:39.83103    2016-10-14 13:02:41.937491        \N    \N    \N    0    \N    \N    \N    \N    female
11088    Polly    Sporer    gage@lemke.org    \N    Egypt    East Zoe    8646 Manley Mountains    51899    Alabama    2016-07-27 12:02:29.930836    2016-10-14 13:02:41.941701        \N    \N    \N    0    \N    \N    \N    \N    male
13442    Juvenal    O'Hara    mackenzie_dibbert@shanahan.name    \N    Estonia    East Tevinside    7692 Tomas Curve    53392    Michigan    2016-09-05 10:28:34.591594    2016-10-14 13:02:41.945699        \N    \N    \N    0    \N    \N    \N    \N    female
13471    Ila    Schinner    reynold@muller.info    \N    Brunei Darussalam    West Lilyan    99217 Paolo Trail    60415    Washington    2016-08-25 23:09:09.494449    2016-10-14 13:02:41.950224        \N    \N    \N    0    \N    \N    \N    \N    female
13472    Burley    Willms    juanita.durgan@mueller.name    \N    France    Luellaburgh    937 Kozey Plains    24151-7023    Connecticut    2016-09-14 22:09:35.444471    2016-10-14 13:02:41.954996        \N    \N    \N    0    \N    \N    \N    \N    female
13473    Tyson    Dooley    kamren_dicki@kaulke.com    \N    Tokelau    East Beulah    5300 Carroll Terrace    58185-3817    Delaware    2016-06-25 04:13:32.360471    2016-10-14 13:02:41.95921        \N    \N    \N    0    \N    \N    \N    \N    male
13474    Turner    Weimann    weldon.altenwerth@jacobilindgren.name    \N    Saint Barthelemy    Tyraberg    827 Moriah Stravenue    16546-8303    California    2016-09-09 14:39:40.718954    2016-10-14 13:02:41.963791        \N    \N    \N    0    \N    \N    \N    \N    female
13475    Vaughn    Considine    jasmin_ratke@ratke.io    \N    Gambia    Lake Milofort    1143 Effertz Coves    57813-2243    Kentucky    2016-08-23 19:48:31.380553    2016-10-14 13:02:41.968328        \N    \N    \N    0    \N    \N    \N    \N    male
13476    Isadore    Gibson    breana_douglas@steuberhills.name    \N    Mongolia    Botsfordmouth    5764 Labadie Trail    98814-8359    Virginia    2016-08-21 13:10:50.837754    2016-10-14 13:02:41.973077        \N    \N    \N    0    \N    \N    \N    \N    male
13477    May    Kulas    adrienne@borer.net    \N    French Polynesia    West Rivertown    27299 Stone Land    97689-3936    Texas    2016-09-26 03:06:28.258131    2016-10-14 13:02:41.977755        \N    \N    \N    0    \N    \N    \N    \N    female
13650    Burdette    Bosco    melia@rolfson.co    \N    Faroe Islands    Port Bill    594 Lurline Mews    35752    Hawaii    2016-08-13 04:57:59.807669    2016-10-14 13:02:41.982456        \N    \N    \N    0    \N    \N    \N    \N    female
13478    Ruth    Roberts    fernando_gutkowski@dareberge.net    \N    Timor-Leste    West Tom    976 Gretchen Grove    13216-9219    Connecticut    2016-07-11 15:31:29.893537    2016-10-14 13:02:41.99442        \N    \N    \N    0    \N    \N    \N    \N    female
13479    Abe    Prohaska    ibrahim_dach@moore.io    \N    Bangladesh    South Maritzahaven    87590 Carlotta Dam    82288-1087    Wisconsin    2016-08-14 05:59:58.584187    2016-10-14 13:02:41.999731        \N    \N    \N    0    \N    \N    \N    \N    female
13480    Domenica    Hauck    nicolette.herman@gottliebgottlieb.net    \N    Dominica    East Jaqueline    839 Fritsch Glens    94684-3439    Indiana    2016-07-28 16:39:50.459335    2016-10-14 13:02:42.004727        \N    \N    \N    0    \N    \N    \N    \N    male
13481    Trey    Reilly    garland.considine@kuhn.info    \N    Malta    Merleside    556 Oleta Valley    54579-4719    Tennessee    2016-09-23 14:01:33.908454    2016-10-14 13:02:42.009366        \N    \N    \N    0    \N    \N    \N    \N    female
13482    Hailee    Kiehn    june_rogahn@wilkinsonthiel.io    \N    Samoa    Roryview    278 Pouros Estate    17556-3287    Oklahoma    2016-07-09 01:12:24.630658    2016-10-14 13:02:42.013773        \N    \N    \N    0    \N    \N    \N    \N    male
13483    Matteo    Koepp    silas@medhurst.io    \N    Qatar    Felicityport    392 Mose Springs    68760    Oregon    2016-09-17 13:47:30.793303    2016-10-14 13:02:42.018283        \N    \N    \N    0    \N    \N    \N    \N    male
13484    Blake    Parisian    rusty.bauch@hintz.info    \N    Israel    Port Andresfurt    557 Jammie Groves    88008    Massachusetts    2016-06-27 09:36:17.021033    2016-10-14 13:02:42.022965        \N    \N    \N    0    \N    \N    \N    \N    female
13485    Blake    MacGyver    cruz.lubowitz@white.net    \N    Botswana    Lake Belleton    99282 Adolph Forks    99357    Alabama    2016-08-21 12:42:14.176432    2016-10-14 13:02:42.027189        \N    \N    \N    0    \N    \N    \N    \N    male
13487    Ilene    Christiansen    penelope@will.name    \N    Morocco    Port Reggie    609 Nova Lights    95405    Kansas    2016-07-31 10:52:26.105591    2016-10-14 13:02:42.031599        \N    \N    \N    0    \N    \N    \N    \N    female
13488    Vance    Pfannerstill    louie_hoeger@green.com    \N    Taiwan    West Patricia    658 Doyle Estates    38839    Tennessee    2016-09-15 22:21:48.429181    2016-10-14 13:02:42.03604        \N    \N    \N    0    \N    \N    \N    \N    male
13489    Marcelle    Effertz    jacinto@herzogroob.net    \N    Kazakhstan    Nikolashaven    560 Kihn Plaza    63557-1795    Mississippi    2016-08-22 21:09:09.764423    2016-10-14 13:02:42.040407        \N    \N    \N    0    \N    \N    \N    \N    female
13490    Constance    Bradtke    marge@shields.net    \N    Liechtenstein    West Llewellynchester    7523 Hyatt Circles    71554    Michigan    2016-09-10 08:07:49.403097    2016-10-14 13:02:42.04478        \N    \N    \N    0    \N    \N    \N    \N    female
13491    Kiera    Kuvalis    orpha@erdman.io    \N    Zambia    Devanton    5140 Pollich Unions    29727-3970    West Virginia    2016-09-06 23:54:39.236113    2016-10-14 13:02:42.049294        \N    \N    \N    0    \N    \N    \N    \N    male
13492    Glenda    Jones    zachariah.swift@wisoky.com    \N    Germany    Ankundingfort    9429 Whitney Cove    21524-5409    Tennessee    2016-09-02 20:15:25.359575    2016-10-14 13:02:42.053825        \N    \N    \N    0    \N    \N    \N    \N    male
13493    Kathryn    Kulas    ulices_treutel@gibsonabernathy.info    \N    Togo    Leuschkeport    98553 Douglas Pines    77880    Delaware    2016-08-10 13:48:52.026598    2016-10-14 13:02:42.058109        \N    \N    \N    0    \N    \N    \N    \N    female
13494    Fidel    Shanahan    rasheed_kshlerin@bogisichmorar.co    \N    Venezuela    Blockhaven    550 Lorna Skyway    37504    Indiana    2016-09-19 21:27:56.330862    2016-10-14 13:02:42.062374        \N    \N    \N    0    \N    \N    \N    \N    female
13495    Cyrus    Mante    rolando@beahanframi.net    \N    Myanmar    Jermainefurt    35716 Isaiah Square    91210    North Carolina    2016-09-05 02:30:56.698472    2016-10-14 13:02:42.066291        \N    \N    \N    0    \N    \N    \N    \N    male
13496    Kirsten    Lynch    eloisa@hermistonhalvorson.co    \N    Montenegro    Shieldsville    4060 Pfeffer Causeway    69213-5585    South Carolina    2016-07-14 14:33:01.295317    2016-10-14 13:02:42.071044        \N    \N    \N    0    \N    \N    \N    \N    male
13497    Marta    Pfeffer    dudley@davis.info    \N    Bhutan    Rasheedville    3286 Cesar Lodge    12242    Texas    2016-06-27 10:54:43.203113    2016-10-14 13:02:42.075559        \N    \N    \N    0    \N    \N    \N    \N    male
13498    Joey    Fritsch    loma@ernser.name    \N    Fiji    North Demond    683 Okuneva Cliffs    24012-3484    Connecticut    2016-09-06 10:50:13.876997    2016-10-14 13:02:42.080204        \N    \N    \N    0    \N    \N    \N    \N    female
13499    Gust    Carroll    troy@schaden.org    \N    Guernsey    East Ezekiel    7396 Sanford Ramp    77558    Virginia    2016-09-02 14:52:48.672676    2016-10-14 13:02:42.09479        \N    \N    \N    0    \N    \N    \N    \N    female
13500    Laurel    Hayes    electa@abernathy.org    \N    Nepal    South Angus    1002 Bahringer Crest    10940    North Dakota    2016-08-24 19:48:36.49234    2016-10-14 13:02:42.101192        \N    \N    \N    0    \N    \N    \N    \N    female
13501    Cloyd    Erdman    bertrand@hammes.co    \N    Sudan    Rempelberg    9347 Buster Isle    36248    Tennessee    2016-07-07 08:40:32.0149    2016-10-14 13:02:42.106844        \N    \N    \N    0    \N    \N    \N    \N    male
13502    Dina    Cummerata    corrine_oreilly@pfannerstill.co    \N    Algeria    Port Marianne    2594 Shania Stravenue    59623    Delaware    2016-09-18 14:06:24.988535    2016-10-14 13:02:42.114222        \N    \N    \N    0    \N    \N    \N    \N    male
13503    Arvilla    Nikolaus    brendan@casper.biz    \N    Equatorial Guinea    Darrylburgh    490 Rosemarie Village    85058-7754    West Virginia    2016-08-16 14:26:10.644457    2016-10-14 13:02:42.122616        \N    \N    \N    0    \N    \N    \N    \N    female
13504    Mekhi    Wiegand    brandy_kutch@hermiston.info    \N    Palau    Lake Trever    5401 Leanna Forges    10386    Vermont    2016-08-28 11:58:45.646143    2016-10-14 13:02:42.130447        \N    \N    \N    0    \N    \N    \N    \N    male
13505    Alvis    Bogisich    ruell.prosacco@hodkiewicz.biz    \N    American Samoa    Greenholtview    848 Pfeffer Expressway    46781-2697    Oklahoma    2016-06-24 18:49:04.558784    2016-10-14 13:02:42.136019        \N    \N    \N    0    \N    \N    \N    \N    male
13506    Estella    Langworth    quincy.swaniawski@dachreinger.biz    \N    Iraq    Linafort    3339 Lambert Vista    65035    Florida    2016-09-14 09:31:38.153319    2016-10-14 13:02:42.147553        \N    \N    \N    0    \N    \N    \N    \N    female
13507    Monserrat    Sporer    marjolaine.okuneva@mcglynnblanda.com    \N    Jamaica    New Verona    6646 Sylvan Fall    63052-6331    Mississippi    2016-08-11 12:23:58.572695    2016-10-14 13:02:42.152624        \N    \N    \N    0    \N    \N    \N    \N    female
13508    Jayce    Schimmel    carlotta.schimmel@monahan.co    \N    Montserrat    North Kristofferview    572 Heathcote Course    56164-4511    Mississippi    2016-08-02 00:30:56.390816    2016-10-14 13:02:42.164971        \N    \N    \N    0    \N    \N    \N    \N    male
13509    Raphael    Wuckert    yadira.wintheiser@mccullough.com    \N    Cyprus    Jessyshire    651 Kiehn Street    77767-9263    Delaware    2016-07-17 09:50:05.435717    2016-10-14 13:02:42.186528        \N    \N    \N    0    \N    \N    \N    \N    female
13510    Micaela    Wilkinson    leopold@blanda.name    \N    Gabon    North Karenport    250 Wyman Flats    76326-5898    Rhode Island    2016-08-04 06:24:41.74855    2016-10-14 13:02:42.199944        \N    \N    \N    0    \N    \N    \N    \N    male
13511    Jamison    Baumbach    genoveva_boehm@brownbednar.co    \N    Marshall Islands    South Garfield    9238 Beier Motorway    36300-0318    Michigan    2016-08-30 00:05:20.379283    2016-10-14 13:02:42.213789        \N    \N    \N    0    \N    \N    \N    \N    female
13512    Wallace    Gaylord    deven@lynch.com    \N    Ghana    Elainaborough    403 Shannon Stravenue    82494    Arizona    2016-09-03 14:19:17.585622    2016-10-14 13:02:42.218694        \N    \N    \N    0    \N    \N    \N    \N    female
13513    Marlon    Rice    abigayle_murray@ebert.org    \N    Colombia    Port Clarkberg    7110 Wisozk Mountain    96228-5225    North Carolina    2016-09-14 03:03:17.285372    2016-10-14 13:02:42.225337        \N    \N    \N    0    \N    \N    \N    \N    male
13514    Maureen    Yost    raymond.langworth@mitchellabernathy.io    \N    Montserrat    Camronview    2704 Tremblay Estate    86857    Nevada    2016-09-02 11:39:54.201546    2016-10-14 13:02:42.242581        \N    \N    \N    0    \N    \N    \N    \N    female
13515    Jeffry    Mante    reyna@sporer.net    \N    Netherlands    West Martyton    7095 Keven Common    45394    Rhode Island    2016-08-22 18:48:28.466276    2016-10-14 13:02:42.256131        \N    \N    \N    0    \N    \N    \N    \N    female
13516    Evie    Upton    cooper.bahringer@larkin.info    \N    Greece    Reynoldbury    94198 Sharon Manors    36074    North Dakota    2016-07-08 13:21:20.632719    2016-10-14 13:02:42.262635        \N    \N    \N    0    \N    \N    \N    \N    male
13517    Chanel    McCullough    kobe@vonbecker.info    \N    Norfolk Island    Donnellymouth    5292 Jillian Track    53073    Maine    2016-06-30 12:11:14.453393    2016-10-14 13:02:42.268682        \N    \N    \N    0    \N    \N    \N    \N    female
13518    Archibald    Hessel    wendy.hermann@pagac.io    \N    Belgium    New Madisontown    2227 Schinner Glen    46302-2966    Idaho    2016-08-27 06:51:34.394532    2016-10-14 13:02:42.273814        \N    \N    \N    0    \N    \N    \N    \N    female
13519    Mara    Carter    niko.parker@eichmann.info    \N    Mongolia    Lutherfurt    500 Corkery Course    13019    Arkansas    2016-08-17 04:07:46.990185    2016-10-14 13:02:42.278889        \N    \N    \N    0    \N    \N    \N    \N    male
13520    Alysha    Powlowski    monty_hartmann@torphyschinner.org    \N    Rwanda    West Shaunshire    463 Ullrich Canyon    68209    Texas    2016-08-21 15:01:30.582452    2016-10-14 13:02:42.286551        \N    \N    \N    0    \N    \N    \N    \N    female
13521    Kara    Ondricka    adriana.rohan@monahangrady.io    \N    Timor-Leste    Bruenfort    360 Cormier Knoll    35053    Alaska    2016-08-16 20:09:23.470938    2016-10-14 13:02:42.296809        \N    \N    \N    0    \N    \N    \N    \N    female
13522    Trey    Carroll    hailee@dare.name    \N    Madagascar    Lake Brice    7220 Eden Crescent    10959    Vermont    2016-07-27 19:45:33.843746    2016-10-14 13:02:42.301686        \N    \N    \N    0    \N    \N    \N    \N    female
13523    Bradly    Grimes    megane.klein@walkerwill.com    \N    British Indian Ocean Territory (Chagos Archipelago)    Gonzaloview    4925 Dasia Gardens    64917-6080    Wisconsin    2016-09-11 16:06:25.69356    2016-10-14 13:02:42.306822        \N    \N    \N    0    \N    \N    \N    \N    female
13524    Sean    Yundt    pearlie_friesen@ruel.biz    \N    Qatar    North Josiane    4064 Boyer Harbor    22147-7604    Rhode Island    2016-08-22 21:24:31.918754    2016-10-14 13:02:42.3125        \N    \N    \N    0    \N    \N    \N    \N    male
13525    Winfield    Breitenberg    dariana@walter.info    \N    Haiti    Lake Kyleeview    8119 Rice Trace    89973    Tennessee    2016-08-10 04:05:52.635662    2016-10-14 13:02:42.318528        \N    \N    \N    0    \N    \N    \N    \N    female
13526    Cassidy    Orn    imani.schmeler@willcollier.biz    \N    Belize    Brittanyton    7895 Wolf Isle    39401-3482    Delaware    2016-07-22 21:59:28.925273    2016-10-14 13:02:42.324748        \N    \N    \N    0    \N    \N    \N    \N    female
13527    Lilly    Bins    izaiah@krislarson.biz    \N    Guernsey    Elzaton    707 Malcolm Corner    50721    Oregon    2016-09-28 07:20:15.111023    2016-10-14 13:02:42.330422        \N    \N    \N    0    \N    \N    \N    \N    female
13528    Alvena    Ward    lamar@rempel.biz    \N    Andorra    Mathewmouth    71990 Schuyler Mount    66506    North Carolina    2016-09-18 05:46:29.558038    2016-10-14 13:02:42.336491        \N    \N    \N    0    \N    \N    \N    \N    male
13529    Walter    Tremblay    davion.sipes@crona.com    \N    Bermuda    New Katlynn    7714 Wiza Knoll    42568-5145    Nebraska    2016-08-22 00:37:46.6396    2016-10-14 13:02:42.341763        \N    \N    \N    0    \N    \N    \N    \N    male
13530    Ibrahim    Oberbrunner    shaylee.bailey@mayergutkowski.info    \N    Mali    Lake Aronchester    4062 Hagenes Parks    20664    Oregon    2016-09-17 02:00:15.578894    2016-10-14 13:02:42.346432        \N    \N    \N    0    \N    \N    \N    \N    female
13531    Vida    Walsh    cleveland.champlin@bosco.org    \N    Bosnia and Herzegovina    Hanshaven    110 Torp Drives    84156    Maryland    2016-08-16 11:30:56.285392    2016-10-14 13:02:42.350781        \N    \N    \N    0    \N    \N    \N    \N    female
13532    Kaylee    Davis    rosalia.oconner@olson.co    \N    Chile    Beerside    636 O'Keefe Flat    65366-1987    Pennsylvania    2016-09-10 10:54:01.214684    2016-10-14 13:02:42.358029        \N    \N    \N    0    \N    \N    \N    \N    male
13533    Kelsi    Wyman    jannie@moorecrist.net    \N    China    West Fannieborough    67771 Arvid Extensions    92009    Georgia    2016-07-11 19:45:40.141044    2016-10-14 13:02:42.363425        \N    \N    \N    0    \N    \N    \N    \N    male
13534    Lou    Smitham    lonnie.willms@gutmannhills.biz    \N    Ghana    Port Murl    9692 Denesik Summit    34695-0284    Delaware    2016-07-13 02:45:01.197469    2016-10-14 13:02:42.368677        \N    \N    \N    0    \N    \N    \N    \N    female
13535    Ephraim    Hoppe    humberto_keeling@hellerrohan.co    \N    Georgia    Charlottemouth    9120 Clarissa Field    87311    Connecticut    2016-08-27 04:43:07.583989    2016-10-14 13:02:42.374388        \N    \N    \N    0    \N    \N    \N    \N    female
13536    Lewis    Farrell    tad_schumm@quitzon.co    \N    Equatorial Guinea    Schimmelport    78181 Batz Garden    14945-8685    Washington    2016-08-12 09:50:16.157594    2016-10-14 13:02:42.393923        \N    \N    \N    0    \N    \N    \N    \N    male
13537    Lyric    Emard    maximillia_fahey@windler.co    \N    Japan    Vivianeshire    41577 Pat Tunnel    70483-6446    Maine    2016-09-09 12:20:01.428979    2016-10-14 13:02:42.402443        \N    \N    \N    0    \N    \N    \N    \N    male
13538    Omer    Berge    twila_goldner@ondricka.org    \N    Bolivia    New Guiseppe    916 Aileen Locks    11576-7612    Massachusetts    2016-09-03 02:20:57.408913    2016-10-14 13:02:42.411996        \N    \N    \N    0    \N    \N    \N    \N    male
13539    Joseph    Treutel    caandre.vonrueden@schmelerledner.info    \N    Micronesia    Collinsfort    24490 Dwight Fork    98977    Iowa    2016-09-06 21:48:37.574247    2016-10-14 13:02:42.418509        \N    \N    \N    0    \N    \N    \N    \N    male
13540    Clyde    Carter    ralph.stokes@sporer.biz    \N    Moldova    Tinafurt    448 Haley Road    13712-0023    Colorado    2016-09-20 14:20:06.863724    2016-10-14 13:02:42.430784        \N    \N    \N    0    \N    \N    \N    \N    male
13541    Frederick    Reichert    amaya.tromp@kuhn.co    \N    Spain    North Kacie    30023 Grant Causeway    12373    Pennsylvania    2016-08-28 18:01:49.276416    2016-10-14 13:02:42.440335        \N    \N    \N    0    \N    \N    \N    \N    female
13542    Mayra    Zulauf    brenda_feeney@connelly.net    \N    Ethiopia    South Owenmouth    2000 Harris Route    11085-4418    Nevada    2016-09-10 10:49:25.313532    2016-10-14 13:02:42.446244        \N    \N    \N    0    \N    \N    \N    \N    female
13543    Adonis    Hansen    prudence@cronin.io    \N    Saint Barthelemy    North Elmore    1101 Cydney Park    60844-9777    Michigan    2016-08-22 03:11:03.914419    2016-10-14 13:02:42.451368        \N    \N    \N    0    \N    \N    \N    \N    female
13544    Maybell    Hermann    robbie@schinnerkoch.org    \N    Japan    New Robertomouth    85452 Susan Station    64009    California    2016-09-02 05:25:19.776965    2016-10-14 13:02:42.456956        \N    \N    \N    0    \N    \N    \N    \N    female
13545    Chelsie    Gleichner    vito_wisoky@trantowwuckert.co    \N    Eritrea    Antonioburgh    2695 Beryl Hollow    44053    Nevada    2016-07-31 03:15:56.780797    2016-10-14 13:02:42.462233        \N    \N    \N    0    \N    \N    \N    \N    female
13546    Wiley    Reilly    tyrique.zulauf@kautzerernser.biz    \N    Virgin Islands, British    West Tanyastad    92761 Gorczany Spurs    45326    Minnesota    2016-07-12 11:09:30.924209    2016-10-14 13:02:42.467266        \N    \N    \N    0    \N    \N    \N    \N    female
13547    Eudora    Wolff    jovani_cole@lueilwitz.com    \N    Azerbaijan    North Dayton    1095 Okuneva Square    63872    Mississippi    2016-07-28 10:15:11.806089    2016-10-14 13:02:42.474098        \N    \N    \N    0    \N    \N    \N    \N    male
13548    Curt    Bernier    mohammed.streich@reichert.name    \N    Kuwait    Kenyattaborough    9018 Oma Path    54974    Nebraska    2016-06-24 20:26:51.749091    2016-10-14 13:02:42.486786        \N    \N    \N    0    \N    \N    \N    \N    female
13549    Lily    Kunze    erick@reilly.info    \N    Malawi    New Ethelynton    2841 Stokes Lock    41023    Connecticut    2016-08-07 00:27:15.802213    2016-10-14 13:02:42.497424        \N    \N    \N    0    \N    \N    \N    \N    female
13550    Gracie    Doyle    richard_lang@friesen.info    \N    Nicaragua    Kianafurt    196 Torphy Isle    65288-2853    Connecticut    2016-09-12 09:59:44.187103    2016-10-14 13:02:42.51508        \N    \N    \N    0    \N    \N    \N    \N    male
13551    Rossie    Kiehn    juwan@bergnaumrath.info    \N    Palau    Lindseybury    4612 Carter Island    96648-7185    Idaho    2016-09-16 22:35:21.509525    2016-10-14 13:02:42.529572        \N    \N    \N    0    \N    \N    \N    \N    female
13552    Hillary    Effertz    gerardo@baumbachhauck.name    \N    Seychelles    Port Rebeca    7361 Klocko Hill    78791    New York    2016-08-07 11:04:35.418059    2016-10-14 13:02:42.54058        \N    \N    \N    0    \N    \N    \N    \N    male
13553    Columbus    Pollich    monserrat@priceruecker.io    \N    Nicaragua    Port Wernerstad    167 Auer Island    82020-3285    Mississippi    2016-07-12 19:58:28.451024    2016-10-14 13:02:42.548729        \N    \N    \N    0    \N    \N    \N    \N    female
13554    Margarita    Bayer    rosina@dibbertkemmer.com    \N    Bahamas    Verdiefurt    94904 Kris Cape    95728-7364    Wisconsin    2016-09-20 18:50:49.832765    2016-10-14 13:02:42.554429        \N    \N    \N    0    \N    \N    \N    \N    female
13555    Xander    Watsica    hulda_ondricka@von.io    \N    Azerbaijan    Krajcikton    8982 Jaycee Hill    54420    Wisconsin    2016-07-18 05:35:02.081841    2016-10-14 13:02:42.56501        \N    \N    \N    0    \N    \N    \N    \N    female
13556    Jazlyn    Turner    talon@pagac.biz    \N    Somalia    Malvinamouth    486 Winifred Center    90329    Pennsylvania    2016-07-07 21:31:13.494276    2016-10-14 13:02:42.574328        \N    \N    \N    0    \N    \N    \N    \N    female
13557    Erich    Heller    mazie@feestmorar.org    \N    Kenya    Port Maritzastad    6409 Elouise Corner    50512-2895    Nebraska    2016-09-12 13:10:25.214832    2016-10-14 13:02:42.579529        \N    \N    \N    0    \N    \N    \N    \N    male
13558    Claire    Effertz    augustine@keler.biz    \N    Israel    Heidenreichport    737 Ervin Shores    24957    Montana    2016-07-13 10:01:45.631069    2016-10-14 13:02:42.590343        \N    \N    \N    0    \N    \N    \N    \N    male
13559    Rebecca    Schmeler    aimee_breitenberg@braun.net    \N    Austria    Stantonfurt    157 Jast Springs    57758-7029    Maine    2016-09-25 20:41:20.424529    2016-10-14 13:02:42.598234        \N    \N    \N    0    \N    \N    \N    \N    female
13560    Eddie    Watsica    john@mannjakubowski.org    \N    Samoa    North Winfieldstad    61619 Connelly Parkways    73829-2894    North Carolina    2016-07-19 07:36:39.938967    2016-10-14 13:02:42.610639        \N    \N    \N    0    \N    \N    \N    \N    female
13561    Chandler    VonRueden    eva@schamberger.info    \N    Oman    New Mortimerbury    99356 Schmeler Mall    29285-7496    Georgia    2016-08-07 14:51:38.975039    2016-10-14 13:02:42.622437        \N    \N    \N    0    \N    \N    \N    \N    female
13562    Haskell    Weimann    earnest@ernser.com    \N    Hong Kong    West Erichport    29635 Meredith Views    23456    Louisiana    2016-07-03 14:12:21.890168    2016-10-14 13:02:42.630295        \N    \N    \N    0    \N    \N    \N    \N    female
13563    Dena    Pouros    daniela_bashirian@stoltenberg.co    \N    Cyprus    Rauville    99569 Yessenia Junctions    57789    Missouri    2016-09-16 13:50:51.536951    2016-10-14 13:02:42.642552        \N    \N    \N    0    \N    \N    \N    \N    male
13564    Tevin    Cruickshank    reginald@kihnwilliamson.co    \N    Cuba    Lake Ernestineside    454 Kamille Port    69665-4443    Massachusetts    2016-07-15 02:02:55.869525    2016-10-14 13:02:42.654391        \N    \N    \N    0    \N    \N    \N    \N    male
13565    Nicholas    Lakin    roie@hansensmitham.io    \N    Syrian Arab Republic    North Baylee    89172 Brenden Lock    24517    Virginia    2016-09-04 11:02:03.977576    2016-10-14 13:02:42.671266        \N    \N    \N    0    \N    \N    \N    \N    male
13566    Maya    Hilll    loma@schimmelblick.com    \N    Antigua and Barbuda    Swaniawskiborough    774 Rhoda Ports    92069-2406    Oregon    2016-08-17 12:20:10.957245    2016-10-14 13:02:42.681143        \N    \N    \N    0    \N    \N    \N    \N    male
13567    Aric    Labadie    kamron@bartoletti.io    \N    Grenada    Lake Lorinemouth    484 Feil Park    42650-8019    Arizona    2016-07-02 16:22:54.30996    2016-10-14 13:02:42.693528        \N    \N    \N    0    \N    \N    \N    \N    female
13568    Noah    Russel    elenor_mitchell@gottlieb.org    \N    Barbados    North Elva    457 Lambert Overpass    90747    Wisconsin    2016-09-12 18:02:49.50411    2016-10-14 13:02:42.704913        \N    \N    \N    0    \N    \N    \N    \N    male
13569    Gabrielle    Rolfson    robert@weinat.net    \N    Netherlands Antilles    North Grantbury    3773 Schowalter Wells    80535-5980    Arkansas    2016-06-27 08:05:17.347503    2016-10-14 13:02:42.711074        \N    \N    \N    0    \N    \N    \N    \N    male
13570    Mason    Nicolas    judah@lind.com    \N    French Polynesia    Stoltenbergside    523 Rodriguez Ridges    17110    New York    2016-07-17 14:08:13.395476    2016-10-14 13:02:42.717029        \N    \N    \N    0    \N    \N    \N    \N    female
13571    Sierra    Mohr    albina.klein@tromp.com    \N    India    South Marquesfort    20281 Mitchell Springs    13522    Kansas    2016-08-21 13:50:51.508931    2016-10-14 13:02:42.7243        \N    \N    \N    0    \N    \N    \N    \N    male
13572    Jude    Rohan    agnes_rath@hills.com    \N    Lao People's Democratic Republic    East Gussiechester    6408 Crona Motorway    44809-8145    Minnesota    2016-09-08 23:14:49.511446    2016-10-14 13:02:42.731577        \N    \N    \N    0    \N    \N    \N    \N    female
13573    Aracely    Raynor    elmo@mccullough.info    \N    Solomon Islands    West Tracy    784 Schmeler Walks    27395-4107    Missouri    2016-09-11 12:33:10.732208    2016-10-14 13:02:42.737891        \N    \N    \N    0    \N    \N    \N    \N    male
13574    Kathryn    Rath    jeyca.hayes@quigley.biz    \N    Belize    West Isaacmouth    10443 Marcia Overpass    41832-1327    Georgia    2016-09-01 07:41:31.444338    2016-10-14 13:02:42.75344        \N    \N    \N    0    \N    \N    \N    \N    male
13575    Everardo    Yundt    ida@weber.org    \N    Angola    New Dessiefort    156 Terry Fork    33714-2121    Missouri    2016-06-30 08:06:24.256286    2016-10-14 13:02:42.76441        \N    \N    \N    0    \N    \N    \N    \N    female
13576    Tamia    Boyer    rosalia_wilkinson@boyle.biz    \N    Sweden    North Samirfort    5226 Wilma Estates    70331    Pennsylvania    2016-09-01 15:11:15.693329    2016-10-14 13:02:42.7705        \N    \N    \N    0    \N    \N    \N    \N    female
13577    Angie    Braun    wyman.parisian@crooks.info    \N    Monaco    New Cobyburgh    59817 Marjolaine Dale    22007    Maryland    2016-07-31 16:45:32.456358    2016-10-14 13:02:42.777136        \N    \N    \N    0    \N    \N    \N    \N    female
13578    Ashlynn    Wiza    alberta@pfannerstill.io    \N    United States Minor Outlying Islands    Ullrichbury    38979 Nolan Summit    59138    Maryland    2016-08-11 03:25:00.339848    2016-10-14 13:02:42.783394        \N    \N    \N    0    \N    \N    \N    \N    male
13579    Art    Morar    brandy.davis@nitzschegislason.io    \N    Guyana    Port Ivahborough    580 Mills Ville    44472    New York    2016-07-24 14:48:29.668598    2016-10-14 13:02:42.797396        \N    \N    \N    0    \N    \N    \N    \N    male
13580    Bella    Lubowitz    ernestina.crooks@mohrsporer.co    \N    Georgia    New Carlotta    376 Cordia Park    39200-9202    West Virginia    2016-08-11 22:26:04.323932    2016-10-14 13:02:42.80802        \N    \N    \N    0    \N    \N    \N    \N    male
13581    Estella    Mitchell    genevieve@mcglynn.biz    \N    Fiji    Berneiceport    43833 Mervin Mission    52457-7415    Alaska    2016-08-29 13:11:46.844515    2016-10-14 13:02:42.815745        \N    \N    \N    0    \N    \N    \N    \N    male
13583    Joyce    Thompson    ernie@vonrath.co    \N    Equatorial Guinea    Cummerataborough    7704 Abbott Rapid    42503-6879    Nebraska    2016-09-03 10:55:19.39628    2016-10-14 13:02:42.821663        \N    \N    \N    0    \N    \N    \N    \N    male
13584    Jamar    Feil    emery@prohaska.org    \N    Cayman Islands    East Alanna    57447 Breanne Tunnel    73740-5064    Florida    2016-08-26 17:19:45.386329    2016-10-14 13:02:42.830512        \N    \N    \N    0    \N    \N    \N    \N    male
13585    Rupert    Mosciski    levi.wisozk@schmidt.biz    \N    United States of America    Danielbury    9583 Kovacek Spurs    21581    Illinois    2016-08-29 16:40:19.390489    2016-10-14 13:02:42.836279        \N    \N    \N    0    \N    \N    \N    \N    male
13586    Ansley    Green    kale@howell.name    \N    El Salvador    Port Thurman    9817 Daugherty Lake    97574-8345    Pennsylvania    2016-08-09 09:55:45.312173    2016-10-14 13:02:42.841472        \N    \N    \N    0    \N    \N    \N    \N    female
13587    Margie    Pouros    mark.murray@reynolds.co    \N    Turks and Caicos Islands    North Edmondshire    662 Lueilwitz Manors    31756    West Virginia    2016-07-10 09:45:43.324863    2016-10-14 13:02:42.848665        \N    \N    \N    0    \N    \N    \N    \N    female
13588    Chance    Rolfson    alice@vonrueden.co    \N    Paraguay    North Phyllis    1577 Moen Forges    42334-1461    Nebraska    2016-07-23 21:38:50.486681    2016-10-14 13:02:42.858847        \N    \N    \N    0    \N    \N    \N    \N    female
13589    Bertha    Rowe    adam_dietrich@johnston.co    \N    Guinea    South Mafaldafort    6461 Watsica Estates    59216    Hawaii    2016-07-08 01:53:49.763515    2016-10-14 13:02:42.874823        \N    \N    \N    0    \N    \N    \N    \N    female
13590    Bernadette    Fay    keyshawn.reynolds@tremblay.com    \N    Bosnia and Herzegovina    Parkertown    219 Darron Island    86501    Michigan    2016-07-04 12:59:39.447804    2016-10-14 13:02:42.884257        \N    \N    \N    0    \N    \N    \N    \N    male
13591    Constance    Koelpin    blake_vonrueden@reynolds.net    \N    Ecuador    Lake Vivianeside    24024 Gaylord Valleys    12445    California    2016-07-15 20:48:35.03774    2016-10-14 13:02:42.894706        \N    \N    \N    0    \N    \N    \N    \N    male
13592    Hattie    Mueller    ernestina.pfeffer@kozey.info    \N    Antigua and Barbuda    Hammesborough    373 Garnet Pike    58822    Delaware    2016-07-26 16:22:39.112003    2016-10-14 13:02:42.91363        \N    \N    \N    0    \N    \N    \N    \N    female
13593    Zander    Anderson    jeie@pagac.name    \N    Ireland    Lennieland    7340 Dickinson Cove    46917-4677    Oregon    2016-09-10 19:21:00.951926    2016-10-14 13:02:42.933623        \N    \N    \N    0    \N    \N    \N    \N    male
13594    Flavio    Hilpert    freda@vonrueden.com    \N    Tokelau    Lake Laurianne    3278 Raynor Port    30414    Wyoming    2016-07-17 02:56:21.283739    2016-10-14 13:02:42.949883        \N    \N    \N    0    \N    \N    \N    \N    male
13595    Chris    Hickle    marshall@braun.io    \N    Moldova    Krismouth    8924 Efren Points    20236-1540    Wisconsin    2016-07-22 11:39:33.517014    2016-10-14 13:02:42.960165        \N    \N    \N    0    \N    \N    \N    \N    female
13596    Beaulah    Mann    isai@schowaltervolkman.io    \N    Saint Lucia    Kenyonmouth    2270 Janiya Forest    94784-8977    Ohio    2016-09-19 04:47:25.305376    2016-10-14 13:02:42.969715        \N    \N    \N    0    \N    \N    \N    \N    male
13597    Werner    Feest    edgar@rohan.org    \N    Sao Tome and Principe    Fredyhaven    19845 Samara Canyon    69906    Pennsylvania    2016-09-16 22:51:47.906004    2016-10-14 13:02:42.97522        \N    \N    \N    0    \N    \N    \N    \N    female
13598    Ruth    Yundt    eloisa@veum.com    \N    Dominica    East Tavaresport    433 Kacey Dale    79840-0093    Oregon    2016-07-18 08:50:21.125426    2016-10-14 13:02:42.980129        \N    \N    \N    0    \N    \N    \N    \N    female
13599    Hertha    Green    alanna_hoeger@marks.net    \N    Virgin Islands, U.S.    Kolbymouth    67675 Osinski Plaza    94229    Virginia    2016-07-03 06:34:52.536077    2016-10-14 13:02:42.986093        \N    \N    \N    0    \N    \N    \N    \N    male
13600    Jameson    Sporer    pat@legros.io    \N    Hong Kong    Lake Monserrat    2869 Rollin Ferry    88129-2526    Washington    2016-07-18 03:50:24.17566    2016-10-14 13:02:42.994669        \N    \N    \N    0    \N    \N    \N    \N    female
13601    Breana    Gutkowski    raoul.boyer@stamm.biz    \N    Rwanda    East Keshaun    1032 Freeda Lock    98428    Hawaii    2016-09-27 22:15:56.512106    2016-10-14 13:02:43.002506        \N    \N    \N    0    \N    \N    \N    \N    female
13602    Marcelle    Crist    leslie.hirthe@jacobs.org    \N    Antarctica (the territory South of 60 deg S)    Hermannmouth    5192 Okuneva Lake    53772    Nevada    2016-09-25 09:06:24.594188    2016-10-14 13:02:43.011578        \N    \N    \N    0    \N    \N    \N    \N    male
13603    Viviane    Bruen    chesley_king@lowe.name    \N    Nigeria    Luciushaven    32238 Auer Plains    99631-8592    Missouri    2016-09-05 19:03:03.0434    2016-10-14 13:02:43.025708        \N    \N    \N    0    \N    \N    \N    \N    female
13604    Ashton    Barrows    charlie_lynch@rennerzulauf.co    \N    Netherlands Antilles    East Elisaland    77634 Torey Turnpike    28925    California    2016-07-22 13:20:22.135698    2016-10-14 13:02:43.032513        \N    \N    \N    0    \N    \N    \N    \N    female
13605    Rafaela    Williamson    gino.roob@oreilly.name    \N    Canada    Desmondville    4426 Ward Pass    42966-1579    Nevada    2016-09-12 04:31:26.588275    2016-10-14 13:02:43.046266        \N    \N    \N    0    \N    \N    \N    \N    male
13606    Albina    Terry    bianka_block@mitchell.com    \N    Holy See (Vatican City State)    Kemmerberg    83497 Santina Shoal    82114    New Hampshire    2016-07-09 13:13:50.901207    2016-10-14 13:02:43.051782        \N    \N    \N    0    \N    \N    \N    \N    male
13607    Isai    Sauer    lou@cain.io    \N    Solomon Islands    Rennerport    95298 O'Connell Passage    81708    Ohio    2016-08-13 18:13:50.872098    2016-10-14 13:02:43.057211        \N    \N    \N    0    \N    \N    \N    \N    male
13608    Vergie    Farrell    tyrell.mohr@legros.com    \N    South Georgia and the South Sandwich Islands    Patienceton    608 Gerry Prairie    88156    New York    2016-08-12 05:13:54.322413    2016-10-14 13:02:43.063558        \N    \N    \N    0    \N    \N    \N    \N    female
13609    Wilma    Rodriguez    elise@boscoheller.io    \N    Tokelau    Anthonyburgh    8144 Weissnat Course    18135-6386    Utah    2016-07-26 22:20:52.59776    2016-10-14 13:02:43.069362        \N    \N    \N    0    \N    \N    \N    \N    male
13610    Onie    Raynor    soledad@rutherford.co    \N    Mauritania    Emmerichville    9691 Percival Stream    91336    New Hampshire    2016-06-27 00:35:43.967787    2016-10-14 13:02:43.07484        \N    \N    \N    0    \N    \N    \N    \N    male
13611    Torrey    Gerlach    rahsaan.howell@effertzgoldner.name    \N    Afghanistan    Westshire    754 Orpha River    92675-9204    North Carolina    2016-09-25 17:34:28.773594    2016-10-14 13:02:43.080047        \N    \N    \N    0    \N    \N    \N    \N    male
13612    Rosemary    Johns    clifton@durgan.net    \N    Tunisia    Lizaborough    72765 Einar Tunnel    83650-4991    North Carolina    2016-09-19 12:45:03.174987    2016-10-14 13:02:43.085226        \N    \N    \N    0    \N    \N    \N    \N    female
13613    Roman    Johnston    stewart_connelly@boyer.net    \N    Christmas Island    West Florenciostad    9078 Terry Stravenue    88584    Oklahoma    2016-07-02 13:35:15.15841    2016-10-14 13:02:43.09493        \N    \N    \N    0    \N    \N    \N    \N    female
13614    Cora    Mohr    katherine@tillman.org    \N    Russian Federation    Goldnerside    520 Burley Shoal    41071-4449    Connecticut    2016-09-02 00:33:48.751398    2016-10-14 13:02:43.102177        \N    \N    \N    0    \N    \N    \N    \N    female
13615    Johnathan    Funk    lavon_hartmann@braun.co    \N    Gabon    South Sharonfurt    940 Frami Forge    74783-4284    Utah    2016-07-21 09:12:38.569577    2016-10-14 13:02:43.108366        \N    \N    \N    0    \N    \N    \N    \N    male
13616    Kendrick    Sporer    jacinto.okuneva@swift.biz    \N    Mongolia    Devanchester    310 Lawrence Grove    33775    Mississippi    2016-07-23 19:09:43.309656    2016-10-14 13:02:43.11505        \N    \N    \N    0    \N    \N    \N    \N    female
13617    Adella    Wisozk    ralph_halvorson@turcottewelch.com    \N    Gambia    Lockmanborough    4751 Stiedemann Isle    52750    North Carolina    2016-08-16 14:49:41.82804    2016-10-14 13:02:43.122166        \N    \N    \N    0    \N    \N    \N    \N    male
13618    Lloyd    Krajcik    cierra@ernserbosco.biz    \N    Nepal    Wymanport    60168 Lillian Manors    17120    Arkansas    2016-06-26 02:03:31.592473    2016-10-14 13:02:43.128728        \N    \N    \N    0    \N    \N    \N    \N    male
13619    Freida    McDermott    jean.kihn@runte.co    \N    Cook Islands    Cronastad    65810 Gutkowski Unions    25279    Pennsylvania    2016-09-04 07:26:45.68136    2016-10-14 13:02:43.133714        \N    \N    \N    0    \N    \N    \N    \N    male
13620    Jamal    Fritsch    raina.hauck@price.name    \N    Germany    Williamsonland    84451 Alaina Dam    81979-8711    Oklahoma    2016-07-20 12:41:22.159296    2016-10-14 13:02:43.141448        \N    \N    \N    0    \N    \N    \N    \N    male
13621    Hillary    Pfannerstill    juana_luettgen@sawayn.info    \N    Sri Lanka    South Dejah    2495 Blaze Viaduct    78545-9359    North Dakota    2016-07-21 22:38:14.937002    2016-10-14 13:02:43.152688        \N    \N    \N    0    \N    \N    \N    \N    female
13622    Keara    Bailey    lorna@balistreri.net    \N    Fiji    East Desmond    356 Toy Crossroad    93318-5958    Arizona    2016-07-19 14:15:55.877354    2016-10-14 13:02:43.160304        \N    \N    \N    0    \N    \N    \N    \N    female
13623    Henriette    Quigley    matteo@abernathy.org    \N    Japan    Danabury    555 Meaghan Spurs    89731-6111    New York    2016-09-26 05:58:35.223043    2016-10-14 13:02:43.17363        \N    \N    \N    0    \N    \N    \N    \N    female
13624    Akeem    Cummerata    zack.nikolaus@moenebert.io    \N    Mayotte    Sauermouth    5554 McDermott Cape    80085-0636    California    2016-07-06 05:52:53.160854    2016-10-14 13:02:43.179588        \N    \N    \N    0    \N    \N    \N    \N    male
13625    Sandra    Leuschke    adrian@gibson.org    \N    Republic of Korea    South Danyka    477 Bins Tunnel    58135    Nebraska    2016-08-19 15:23:55.716265    2016-10-14 13:02:43.185446        \N    \N    \N    0    \N    \N    \N    \N    male
13626    Emelia    Kilback    jolie.grady@cole.org    \N    Tuvalu    East Gwendolyn    5979 Franecki Rest    71410-7080    Alabama    2016-09-19 16:25:26.600934    2016-10-14 13:02:43.190241        \N    \N    \N    0    \N    \N    \N    \N    male
13627    Lula    Waelchi    janelle@gottlieb.com    \N    Switzerland    Jeramiebury    1241 Beau Loaf    12948    Delaware    2016-09-07 19:02:49.319111    2016-10-14 13:02:43.195088        \N    \N    \N    0    \N    \N    \N    \N    female
13629    Orlo    White    gardner.muller@watsicahettinger.info    \N    Czech Republic    North Violamouth    9468 Metz Stream    52161    North Carolina    2016-07-06 05:12:01.620283    2016-10-14 13:02:43.199854        \N    \N    \N    0    \N    \N    \N    \N    female
13630    Mozelle    Trantow    esteban_johns@weber.co    \N    Liberia    Vernburgh    3763 Kutch Ferry    98737    South Carolina    2016-09-15 14:31:40.927387    2016-10-14 13:02:43.204997        \N    \N    \N    0    \N    \N    \N    \N    female
13631    Colleen    Kozey    kariane_gusikowski@rau.io    \N    Bosnia and Herzegovina    North Marjorieburgh    323 Sanford Skyway    36163-6538    Georgia    2016-07-20 15:31:26.355641    2016-10-14 13:02:43.209693        \N    \N    \N    0    \N    \N    \N    \N    male
13632    Eugenia    Kuhn    ally@spencerhermann.biz    \N    Tuvalu    Kellieport    652 Keenan Field    23169    Idaho    2016-09-05 15:48:56.217397    2016-10-14 13:02:43.214117        \N    \N    \N    0    \N    \N    \N    \N    male
13633    Angelina    Treutel    bridget@runolfon.io    \N    Somalia    Laronside    287 Sanford Bridge    21444-8867    Colorado    2016-07-20 14:39:57.859168    2016-10-14 13:02:43.219631        \N    \N    \N    0    \N    \N    \N    \N    female
13634    Nick    Nader    lisa@jerdegutkowski.net    \N    Reunion    South Queenie    779 Bahringer Views    79375    Florida    2016-07-10 03:55:13.6469    2016-10-14 13:02:43.224641        \N    \N    \N    0    \N    \N    \N    \N    male
13635    Cullen    Swift    lucas_bogan@hane.co    \N    Vietnam    Goyetteborough    51431 Schroeder Trail    56654-2498    New Jersey    2016-07-30 19:02:20.544058    2016-10-14 13:02:43.230708        \N    \N    \N    0    \N    \N    \N    \N    female
13636    Reba    Pagac    raheem_vandervort@jacobsgibson.info    \N    Bhutan    Windlerville    902 Rosario Islands    55445-2413    Utah    2016-08-09 21:17:52.827978    2016-10-14 13:02:43.235889        \N    \N    \N    0    \N    \N    \N    \N    male
13637    Glen    Durgan    ellen@hahn.com    \N    Lesotho    Timothychester    940 Doyle Valley    58512    Arkansas    2016-07-18 11:51:41.482457    2016-10-14 13:02:43.241472        \N    \N    \N    0    \N    \N    \N    \N    female
13638    Dedric    Weimann    jasper.eichmann@lynchkiehn.com    \N    France    Robelmouth    605 Alvena Hills    65944    Montana    2016-07-31 12:09:53.275924    2016-10-14 13:02:43.246054        \N    \N    \N    0    \N    \N    \N    \N    female
13639    Maggie    Schumm    mohamed@schoen.biz    \N    Panama    North Travis    57365 Kovacek Cape    35667-3968    Indiana    2016-07-13 23:03:23.477788    2016-10-14 13:02:43.250625        \N    \N    \N    0    \N    \N    \N    \N    male
13640    Serenity    Trantow    percy_conroy@wehnerrutherford.name    \N    Lesotho    Lake Paul    266 Pasquale Motorway    82569-4545    Maryland    2016-09-01 02:02:49.496166    2016-10-14 13:02:43.257719        \N    \N    \N    0    \N    \N    \N    \N    male
13642    Triston    Kris    jenifer.schoen@kirlin.name    \N    Kazakhstan    Lake Maxime    3926 Crist Park    99478    Arkansas    2016-07-14 07:52:58.868133    2016-10-14 13:02:43.26258        \N    \N    \N    0    \N    \N    \N    \N    female
13643    Stanley    Murray    pearl.denesik@turner.co    \N    Denmark    Howeview    5494 Cronin Mills    31694-9504    Mississippi    2016-07-05 07:44:08.078817    2016-10-14 13:02:43.275412        \N    \N    \N    0    \N    \N    \N    \N    male
13644    Kaylie    Bergnaum    alanna@hudsonwaelchi.org    \N    Latvia    North Stanford    4950 Asa Shoals    36104-6973    Connecticut    2016-06-24 12:14:32.074577    2016-10-14 13:02:43.284514        \N    \N    \N    0    \N    \N    \N    \N    female
13645    Aileen    Homenick    dorris_schinner@jaskolski.info    \N    Chad    North Budland    36906 Micah Grove    44908-5228    Alaska    2016-09-09 10:18:41.826995    2016-10-14 13:02:43.294284        \N    \N    \N    0    \N    \N    \N    \N    female
13646    Shakira    Barton    kameron@schamberger.biz    \N    Hong Kong    Wintheisertown    193 Keon Plaza    48864-0566    Arizona    2016-09-27 15:54:09.445058    2016-10-14 13:02:43.299898        \N    \N    \N    0    \N    \N    \N    \N    female
13647    Marc    O'Keefe    durward@quigley.biz    \N    Vanuatu    New Constantin    56419 Carol Rapid    82757-9272    Kentucky    2016-09-05 17:38:51.533172    2016-10-14 13:02:43.306871        \N    \N    \N    0    \N    \N    \N    \N    female
13648    Marc    Cassin    linnie@kshlerinbahringer.biz    \N    Denmark    Jazmyneshire    1779 Koelpin Haven    52678-9041    Rhode Island    2016-07-07 16:29:29.627841    2016-10-14 13:02:43.312717        \N    \N    \N    0    \N    \N    \N    \N    female
13649    Katharina    Nitzsche    vallie_mitchell@ruecker.name    \N    Belgium    Port Jettie    46297 Zieme Walk    25231-6021    Virginia    2016-08-08 08:48:18.125816    2016-10-14 13:02:43.318265        \N    \N    \N    0    \N    \N    \N    \N    male
13651    Yazmin    Wisoky    nicholas.klein@bernier.com    \N    Seychelles    North Saigebury    968 Jalen Plains    14543-8430    Louisiana    2016-08-01 17:49:01.566176    2016-10-14 13:02:43.323961        \N    \N    \N    0    \N    \N    \N    \N    female
13653    Dorthy    Smith    jonathan@strackefriesen.org    \N    Belarus    Alaynaside    56167 Jovany Expressway    87026-6898    Tennessee    2016-09-23 14:19:48.002274    2016-10-14 13:02:43.328873        \N    \N    \N    0    \N    \N    \N    \N    female
13654    Osvaldo    O'Conner    vidal@stark.biz    \N    American Samoa    New Damaris    57822 Gusikowski Junction    34461    Washington    2016-07-19 14:42:26.036308    2016-10-14 13:02:43.333189        \N    \N    \N    0    \N    \N    \N    \N    male
13655    Gertrude    Denesik    gloria@fay.name    \N    Dominica    Beattymouth    540 Vinnie Passage    51602    Utah    2016-06-24 10:16:08.953646    2016-10-14 13:02:43.338057        \N    \N    \N    0    \N    \N    \N    \N    female
13656    Filomena    Wisoky    kiel.frami@dietrich.biz    \N    Zimbabwe    New Alessia    5257 Graciela Lakes    84246    New Hampshire    2016-08-06 13:04:09.581583    2016-10-14 13:02:43.342831        \N    \N    \N    0    \N    \N    \N    \N    male
13657    Lindsey    Osinski    magnolia.auer@wardhilpert.info    \N    Saint Martin    Ernserport    8817 Horacio Light    96656    Maryland    2016-09-09 13:18:30.063004    2016-10-14 13:02:43.348898        \N    \N    \N    0    \N    \N    \N    \N    male
13658    Cathryn    Kemmer    haylie.wolff@heathcote.biz    \N    Cook Islands    New Zechariahmouth    6701 Lowe Meadows    45829-3919    Utah    2016-09-05 00:43:49.921724    2016-10-14 13:02:43.355864        \N    \N    \N    0    \N    \N    \N    \N    male
13659    Ella    Jakubowski    eldon.runolfon@wolf.io    \N    Kenya    Port Brianne    8679 Steve Oval    73004    Tennessee    2016-08-29 14:01:43.746169    2016-10-14 13:02:43.361637        \N    \N    \N    0    \N    \N    \N    \N    female
13660    Lafayette    Zulauf    theodora@cummerata.biz    \N    San Marino    Port Godfrey    744 McDermott Mill    48761    Wyoming    2016-08-05 07:53:35.928114    2016-10-14 13:02:43.367021        \N    \N    \N    0    \N    \N    \N    \N    female
13661    Abe    Leannon    maiya.collins@cummings.com    \N    Morocco    South Spencer    2205 Layne Trace    59183-6265    Georgia    2016-07-08 12:39:48.725403    2016-10-14 13:02:43.371879        \N    \N    \N    0    \N    \N    \N    \N    male
13662    Scarlett    Macejkovic    dominique.ullrich@cummingtroman.org    \N    Jersey    East Ford    20034 Legros Path    84207-9985    Pennsylvania    2016-08-04 09:02:44.223956    2016-10-14 13:02:43.376761        \N    \N    \N    0    \N    \N    \N    \N    female
13663    Nicholaus    Grimes    melya_ledner@cruickshankcruickshank.co    \N    Uzbekistan    West Drew    10391 Electa Shore    83193    Colorado    2016-08-07 12:43:49.143051    2016-10-14 13:02:43.382475        \N    \N    \N    0    \N    \N    \N    \N    female
13664    Nora    Wiegand    ulices.mosciski@powlowski.info    \N    Seychelles    East Reubenton    856 Amely Flats    56287    Nevada    2016-09-08 23:02:00.654279    2016-10-14 13:02:43.387649        \N    \N    \N    0    \N    \N    \N    \N    male
13665    Maxwell    Volkman    rashad@leuschke.com    \N    Mauritania    South Manuelfurt    93427 Roob Overpass    19261    Utah    2016-06-22 16:36:20.621183    2016-10-14 13:02:43.392751        \N    \N    \N    0    \N    \N    \N    \N    male
13666    Camren    Schimmel    jade.kris@lueilwitz.co    \N    Democratic People's Republic of Korea    Weissnatfurt    952 Judd Underpass    44493-0760    Alabama    2016-09-16 13:32:04.084484    2016-10-14 13:02:43.398748        \N    \N    \N    0    \N    \N    \N    \N    female
13667    Derek    Monahan    keeley.fritsch@gutkowskiruecker.info    \N    Barbados    Hermanville    90800 Noah Hollow    31266    Oklahoma    2016-08-27 00:22:40.726865    2016-10-14 13:02:43.407205        \N    \N    \N    0    \N    \N    \N    \N    male
13668    Eryn    Pacocha    rex.schuppe@kundeschmitt.io    \N    Western Sahara    New Emmanuelbury    2359 Labadie Manor    65333-3019    Michigan    2016-07-03 10:38:51.016723    2016-10-14 13:02:43.412594        \N    \N    \N    0    \N    \N    \N    \N    male
13669    Evans    Quitzon    meagan.reichert@halvorsoncummerata.org    \N    Sri Lanka    South Diego    801 Giovanni Valleys    92259    Alaska    2016-09-28 02:34:27.834997    2016-10-14 13:02:43.420634        \N    \N    \N    0    \N    \N    \N    \N    female
13670    Marisol    Mann    joany@bode.net    \N    Suriname    Theresehaven    8333 Roob Estate    55453    New Hampshire    2016-07-24 01:28:23.81664    2016-10-14 13:02:43.431302        \N    \N    \N    0    \N    \N    \N    \N    female
13671    Alejandra    McClure    horace_green@volkmanlebsack.com    \N    Zimbabwe    Reganside    1259 Karolann Extension    27418-1026    Texas    2016-09-23 07:13:50.454331    2016-10-14 13:02:43.441091        \N    \N    \N    0    \N    \N    \N    \N    female
13672    Gladyce    Anderson    constantin_heller@kemmerlueilwitz.co    \N    Bahrain    Langville    2083 Kub Hills    62310-4592    Arizona    2016-09-25 07:03:04.158272    2016-10-14 13:02:43.448562        \N    \N    \N    0    \N    \N    \N    \N    male
13673    Garrick    Mertz    emmitt_greenholt@barrowsgrimes.info    \N    Malawi    Port Ramon    388 Amani Track    10396    South Dakota    2016-07-12 23:28:43.652236    2016-10-14 13:02:43.459356        \N    \N    \N    0    \N    \N    \N    \N    female
13674    Georgette    Feeney    eloise@kuhicwiza.biz    \N    Slovenia    Scottyton    7700 Angel Fields    37487    Iowa    2016-08-29 19:38:08.027511    2016-10-14 13:02:43.466956        \N    \N    \N    0    \N    \N    \N    \N    female
13675    Rafaela    Mertz    layne@jacobsonfay.co    \N    Niue    West Jeromy    2289 Hilbert Turnpike    23543    Alaska    2016-09-28 20:45:04.860633    2016-10-14 13:02:43.484237        \N    \N    \N    0    \N    \N    \N    \N    male
13676    Mandy    Legros    jalyn.bosco@baumbachwunsch.name    \N    Congo    Carolinaview    7183 Schiller Fork    84558    Ohio    2016-07-07 10:35:13.519047    2016-10-14 13:02:43.489228        \N    \N    \N    0    \N    \N    \N    \N    female
13677    Dexter    Paucek    garry@zemlak.co    \N    Slovakia (Slovak Republic)    Lake Maxie    665 Schoen Plain    19834    Alaska    2016-07-17 04:10:53.681163    2016-10-14 13:02:43.500354        \N    \N    \N    0    \N    \N    \N    \N    female
13678    Taya    Kirlin    enola_corwin@hermiston.name    \N    Chile    Lake Lewishaven    5169 Coty Stream    87146-1604    Connecticut    2016-09-09 19:01:17.593468    2016-10-14 13:02:43.506883        \N    \N    \N    0    \N    \N    \N    \N    female
13679    Edwardo    Kemmer    gabrielle.osinski@kiehn.info    \N    Antarctica (the territory South of 60 deg S)    North Feliciaport    7000 Frederik Heights    90258-5088    Louisiana    2016-09-12 19:26:52.067813    2016-10-14 13:02:43.512498        \N    \N    \N    0    \N    \N    \N    \N    male
13680    Guiseppe    Schoen    kylie@kihnmcglynn.net    \N    Belgium    Lamontmouth    26549 Schroeder Court    30204-3080    Kansas    2016-08-25 19:20:27.986007    2016-10-14 13:02:43.51956        \N    \N    \N    0    \N    \N    \N    \N    female
13681    Lauren    Hilll    alanna@kunzefunk.net    \N    Portugal    Lake Scottyburgh    905 Hettinger Island    26643-5780    Indiana    2016-08-03 02:14:29.370605    2016-10-14 13:02:43.524822        \N    \N    \N    0    \N    \N    \N    \N    male
13682    Vivien    Grant    ludie.stracke@bashirianerdman.biz    \N    Democratic People's Republic of Korea    Garettside    654 Graham Springs    35855    Kentucky    2016-07-05 03:39:02.761566    2016-10-14 13:02:43.529387        \N    \N    \N    0    \N    \N    \N    \N    male
13683    Jeremie    Yundt    nova.rogahn@bashirian.org    \N    Cape Verde    Alannaside    8947 Weber Crest    55874    South Carolina    2016-08-25 01:55:48.923761    2016-10-14 13:02:43.534143        \N    \N    \N    0    \N    \N    \N    \N    female
13684    Isaiah    Hyatt    sebastian_botsford@mayert.co    \N    Niue    East Bertport    6044 Gottlieb Streets    42124    Alabama    2016-09-15 07:27:58.788268    2016-10-14 13:02:43.539472        \N    \N    \N    0    \N    \N    \N    \N    female
13685    Domenic    Gerhold    reina_ernser@zboncak.info    \N    Bolivia    South Oswaldview    1145 Moen Streets    78011-0613    Virginia    2016-08-29 18:24:34.382403    2016-10-14 13:02:43.544147        \N    \N    \N    0    \N    \N    \N    \N    male
13686    Jackie    Hartmann    armando@medhurst.co    \N    United Arab Emirates    Lake Ilene    7988 Annetta Via    40982    West Virginia    2016-09-06 15:47:13.761338    2016-10-14 13:02:43.549592        \N    \N    \N    0    \N    \N    \N    \N    male
13687    Emilie    Wilkinson    margie@goodwin.net    \N    Bhutan    Eliezermouth    8740 Mertie Parkway    82781    Arkansas    2016-09-10 14:31:01.468048    2016-10-14 13:02:43.557549        \N    \N    \N    0    \N    \N    \N    \N    female
13688    Grace    Welch    winston_keler@mayerdickens.info    \N    Jamaica    North Cassidybury    44250 Terry Ranch    86942    Massachusetts    2016-09-08 14:01:59.481974    2016-10-14 13:02:43.562214        \N    \N    \N    0    \N    \N    \N    \N    male
13689    Emmet    Altenwerth    toy@towne.co    \N    Democratic People's Republic of Korea    New Anabelshire    628 Brody Square    78062-8872    Ohio    2016-06-26 12:29:41.246282    2016-10-14 13:02:43.56664        \N    \N    \N    0    \N    \N    \N    \N    male
13690    Donald    Will    lenore@strosin.name    \N    Spain    South Veda    84194 Chelsey Corner    35635-5269    Michigan    2016-08-19 22:32:58.690721    2016-10-14 13:02:43.571091        \N    \N    \N    0    \N    \N    \N    \N    male
13691    Johnathan    Sawayn    tania_frami@schmidt.co    \N    Falkland Islands (Malvinas)    Michelemouth    581 Weber Shore    87361-2000    Maine    2016-09-03 16:18:31.218742    2016-10-14 13:02:43.578102        \N    \N    \N    0    \N    \N    \N    \N    female
13692    Nettie    Wisozk    burley@sipes.net    \N    Faroe Islands    Dooleytown    8367 Fisher Shores    13307    Delaware    2016-07-03 18:01:02.722332    2016-10-14 13:02:43.583995        \N    \N    \N    0    \N    \N    \N    \N    female
13693    Alessia    Mueller    sylvester.ritchie@jenkins.com    \N    Montserrat    Ottochester    6629 Hagenes Islands    55593    South Dakota    2016-09-01 23:04:56.159146    2016-10-14 13:02:43.590046        \N    \N    \N    0    \N    \N    \N    \N    male
13694    Charley    Rath    jammie_reilly@hyattanderson.biz    \N    Norway    North Garnettfort    514 Abshire Mall    12837    Kentucky    2016-07-18 00:05:43.943814    2016-10-14 13:02:43.595264        \N    \N    \N    0    \N    \N    \N    \N    male
13695    Ona    Heaney    akeem.witting@fisherschuster.info    \N    Azerbaijan    West Jace    6183 Sanford Fort    17518    Connecticut    2016-07-08 00:21:55.355547    2016-10-14 13:02:43.602137        \N    \N    \N    0    \N    \N    \N    \N    female
13696    Jeramie    O'Kon    bettye.abernathy@jakubowskiankunding.co    \N    Kazakhstan    Pacochaburgh    598 Judson Road    56243-5240    West Virginia    2016-08-17 11:24:27.969495    2016-10-14 13:02:43.611113        \N    \N    \N    0    \N    \N    \N    \N    female
13697    Orin    Hodkiewicz    april_balistreri@ferry.info    \N    Holy See (Vatican City State)    Larkinchester    9055 Kutch Ford    68305-5595    Mississippi    2016-09-02 23:47:49.12925    2016-10-14 13:02:43.616625        \N    \N    \N    0    \N    \N    \N    \N    female
13698    Margret    Jerde    dallin.hilll@homenick.name    \N    Portugal    Lake Glenda    1942 Bartell Squares    75215-2308    New Hampshire    2016-07-05 09:38:42.243453    2016-10-14 13:02:43.621549        \N    \N    \N    0    \N    \N    \N    \N    female
13699    Elijah    Goodwin    kennith.gutmann@kovacek.biz    \N    Bouvet Island (Bouvetoya)    South Jamaal    70462 Turner Plaza    75084    South Carolina    2016-08-05 08:50:07.529537    2016-10-14 13:02:43.626449        \N    \N    \N    0    \N    \N    \N    \N    female
13700    Irwin    Harvey    carmine@barrowsbahringer.info    \N    Tunisia    Wehnertown    60637 Rolfson Circle    54883    South Dakota    2016-07-27 04:36:46.471948    2016-10-14 13:02:43.631102        \N    \N    \N    0    \N    \N    \N    \N    male
13701    Terry    Christiansen    layne.rowe@boehm.info    \N    Bhutan    Marquardtfurt    370 Kiehn Roads    70803-0839    Louisiana    2016-09-05 06:59:22.661925    2016-10-14 13:02:43.636917        \N    \N    \N    0    \N    \N    \N    \N    male
13702    Freeda    Hudson    lenny@hamillcartwright.co    \N    Peru    Port Neva    5651 Felicia Road    64026-9355    New York    2016-07-14 19:17:25.871234    2016-10-14 13:02:43.641218        \N    \N    \N    0    \N    \N    \N    \N    female
13703    Adan    Strosin    tito.jacobson@goldnerrippin.co    \N    Afghanistan    West Mateomouth    59299 Jacklyn Stravenue    10443    Idaho    2016-09-03 06:16:38.11515    2016-10-14 13:02:43.64577        \N    \N    \N    0    \N    \N    \N    \N    female
13704    Barton    Smith    denis.hermann@kaulke.com    \N    Bosnia and Herzegovina    Marquardtburgh    7675 Schiller Branch    24409    Minnesota    2016-07-12 12:40:37.137054    2016-10-14 13:02:43.649999        \N    \N    \N    0    \N    \N    \N    \N    female
13705    Citlalli    Beahan    aimee@herzog.io    \N    Belgium    Lake Danny    107 Jennings Street    97637    New York    2016-07-25 22:54:43.732152    2016-10-14 13:02:43.654458        \N    \N    \N    0    \N    \N    \N    \N    female
13706    Rory    Kohler    maymie_hills@kshlerin.name    \N    Cuba    Franzfort    558 McGlynn Mills    21733    Nevada    2016-06-24 18:11:11.685039    2016-10-14 13:02:43.664062        \N    \N    \N    0    \N    \N    \N    \N    female
13707    Lauretta    Wolf    domingo_parker@macejkovic.io    \N    Canada    Lake Bobbie    9375 D'Amore Square    40837    Alabama    2016-08-02 05:53:01.361368    2016-10-14 13:02:43.669871        \N    \N    \N    0    \N    \N    \N    \N    male
13708    Leslie    Brakus    nyah.bruen@turnerschroeder.com    \N    Benin    Huelside    2343 Haag Crescent    78699-1188    Arizona    2016-08-16 04:03:48.062201    2016-10-14 13:02:43.67483        \N    \N    \N    0    \N    \N    \N    \N    male
13709    Alek    Heathcote    anastasia_bailey@schadenwillms.com    \N    Syrian Arab Republic    North Modesta    53271 Elwyn Via    78603-0085    New Mexico    2016-08-11 02:41:33.81512    2016-10-14 13:02:43.680045        \N    \N    \N    0    \N    \N    \N    \N    male
13710    Elsa    Skiles    margot@boyer.net    \N    Togo    Ernaton    99617 Colby Crescent    83249-3679    Nebraska    2016-08-16 16:18:21.241617    2016-10-14 13:02:43.685059        \N    \N    \N    0    \N    \N    \N    \N    female
13711    Modesto    Will    tiara_sporer@murrayconsidine.com    \N    Panama    Tillmanborough    6315 Zemlak Ridge    28958    Minnesota    2016-07-17 15:30:37.143293    2016-10-14 13:02:43.68989        \N    \N    \N    0    \N    \N    \N    \N    female
13712    Moises    Kreiger    jacky@gislasonsmith.net    \N    Brazil    East Alexisstad    6368 Murray Neck    50513    Louisiana    2016-07-27 12:44:50.932748    2016-10-14 13:02:43.695016        \N    \N    \N    0    \N    \N    \N    \N    female
13713    Maggie    Beahan    gerda.pfeffer@yundtmurphy.com    \N    United States of America    New Bellside    34910 Albin Isle    26200    Nevada    2016-08-31 21:12:31.87206    2016-10-14 13:02:43.699995        \N    \N    \N    0    \N    \N    \N    \N    female
13714    Kristopher    Smith    davonte.lowe@waters.io    \N    Cuba    West Betty    60768 Parisian Path    46803-0938    Idaho    2016-07-01 20:39:37.327877    2016-10-14 13:02:43.705143        \N    \N    \N    0    \N    \N    \N    \N    male
13715    Ramon    Gulgowski    arturo_kilback@trompdooley.com    \N    Zambia    Lake Theodorafort    902 Chase Estates    45989    Arizona    2016-09-04 16:36:41.635896    2016-10-14 13:02:43.710723        \N    \N    \N    0    \N    \N    \N    \N    female
13717    Lavinia    Blanda    chadrick_sporer@vandervortsauer.com    \N    Austria    New Erna    95972 Rossie Cove    86761-9550    Oklahoma    2016-08-12 05:57:40.585789    2016-10-14 13:02:43.716384        \N    \N    \N    0    \N    \N    \N    \N    female
13718    Miracle    Wiza    ro.dach@muller.info    \N    Spain    New Berylton    2796 Leannon Curve    62479    Nebraska    2016-09-04 03:28:34.979215    2016-10-14 13:02:43.723844        \N    \N    \N    0    \N    \N    \N    \N    female
13719    Granville    Kautzer    rhett@macgyvergrimes.net    \N    Falkland Islands (Malvinas)    East Burnice    969 Considine Loaf    86738-8267    Arkansas    2016-09-05 19:11:03.36071    2016-10-14 13:02:43.728858        \N    \N    \N    0    \N    \N    \N    \N    male
13720    Kellie    Grant    myra_aufderhar@kreiger.co    \N    Guam    West Keeganmouth    581 Schaden Locks    93772    Virginia    2016-07-28 18:49:42.702099    2016-10-14 13:02:43.733702        \N    \N    \N    0    \N    \N    \N    \N    male
13721    Sally    Heaney    dale_frami@schaden.org    \N    Belgium    Rosendofurt    42433 Kub Manors    74631    Alabama    2016-06-25 01:20:51.985839    2016-10-14 13:02:43.738377        \N    \N    \N    0    \N    \N    \N    \N    male
13722    Rodrigo    Hirthe    christelle_rippin@wymangaylord.org    \N    Burkina Faso    Pasqualeview    81157 Ruecker Tunnel    80525-7513    Connecticut    2016-08-27 09:19:19.372147    2016-10-14 13:02:43.743332        \N    \N    \N    0    \N    \N    \N    \N    female
13723    Dorothea    Willms    devan.conn@prosacco.co    \N    Sweden    Violetteview    78596 Hoeger Terrace    78377-3513    Kansas    2016-09-16 05:13:14.454781    2016-10-14 13:02:43.747927        \N    \N    \N    0    \N    \N    \N    \N    male
13724    Randal    Kirlin    kasey@doyle.info    \N    Gabon    McKenzieberg    2735 Edwardo Ville    20986    New York    2016-09-12 15:01:11.037516    2016-10-14 13:02:43.752117        \N    \N    \N    0    \N    \N    \N    \N    female
13725    Marguerite    Deckow    maybell@koeppwisozk.org    \N    Saint Lucia    Hesselberg    2505 Lisandro Run    51724-0666    Vermont    2016-08-31 03:58:45.581862    2016-10-14 13:02:43.756597        \N    \N    \N    0    \N    \N    \N    \N    female
13726    Jon    Rosenbaum    zion@strosinbayer.name    \N    Mali    Huelstad    5777 Block Ford    31393    Arkansas    2016-06-28 09:02:04.494922    2016-10-14 13:02:43.761447        \N    \N    \N    0    \N    \N    \N    \N    female
13727    Gerda    Altenwerth    juwan@williamson.co    \N    Republic of Korea    East Lucienne    531 Jacobi Hollow    71750    Ohio    2016-06-30 15:49:29.586324    2016-10-14 13:02:43.766201        \N    \N    \N    0    \N    \N    \N    \N    male
13728    Andy    Harvey    ebba.cain@cremin.biz    \N    Bangladesh    Raoulton    6189 Wehner Summit    14131    Delaware    2016-09-05 08:32:15.039569    2016-10-14 13:02:43.770689        \N    \N    \N    0    \N    \N    \N    \N    female
13729    Lon    Steuber    elya.gerhold@hudson.net    \N    Belize    South Whitney    60620 Murphy Mills    96345    Kansas    2016-09-11 22:43:12.846057    2016-10-14 13:02:43.775534        \N    \N    \N    0    \N    \N    \N    \N    female
13730    Toy    Turner    sasha.kutch@wisozknader.co    \N    Central African Republic    New Claude    1995 Jackson Crest    79483    Oregon    2016-08-26 22:20:34.892266    2016-10-14 13:02:43.780405        \N    \N    \N    0    \N    \N    \N    \N    male
13731    Ismael    Hansen    carlie@morar.info    \N    Mayotte    Jerdetown    645 White Villages    55761-5936    Washington    2016-07-31 13:32:01.780697    2016-10-14 13:02:43.785004        \N    \N    \N    0    \N    \N    \N    \N    male
13732    Alanna    Borer    noelia@spinka.info    \N    Czech Republic    South Clementine    72540 Sipes Prairie    49601    Alaska    2016-07-24 06:24:10.871128    2016-10-14 13:02:43.791118        \N    \N    \N    0    \N    \N    \N    \N    female
13733    Darrell    Runolfsdottir    peyton@handhansen.biz    \N    French Polynesia    Jerelland    78638 Reba Terrace    79142    Oklahoma    2016-07-18 12:50:15.638632    2016-10-14 13:02:43.798647        \N    \N    \N    0    \N    \N    \N    \N    female
13734    Herminia    Dietrich    lue@stamm.io    \N    Turkmenistan    New Ryleigh    167 Ankunding Glen    88712    Oklahoma    2016-07-03 04:31:04.378599    2016-10-14 13:02:43.803737        \N    \N    \N    0    \N    \N    \N    \N    male
13735    Arthur    Cruickshank    logan@lebsack.io    \N    Chad    Reganland    6797 Madison Port    34772    Florida    2016-07-07 18:10:12.759531    2016-10-14 13:02:43.808334        \N    \N    \N    0    \N    \N    \N    \N    male
13736    Dee    Hand    bernhard_ritchie@dubuque.net    \N    Ireland    Dameonville    8525 McKenzie Meadows    69145    New Jersey    2016-07-10 18:35:49.147523    2016-10-14 13:02:43.812806        \N    \N    \N    0    \N    \N    \N    \N    female
13737    Meghan    Hoeger    lizeth@adams.co    \N    India    New Laruefort    1829 Brittany Radial    10055    Utah    2016-08-27 02:55:11.545757    2016-10-14 13:02:43.817153        \N    \N    \N    0    \N    \N    \N    \N    male
13738    Casimir    Batz    corene.powlowski@durgan.io    \N    Israel    Uptonton    775 Federico Parkways    76132-5404    Wisconsin    2016-08-06 06:04:05.319362    2016-10-14 13:02:43.821793        \N    \N    \N    0    \N    \N    \N    \N    male
13739    Alivia    Leannon    candace@lubowitz.info    \N    Kiribati    East Shaniabury    932 Major Road    60753-9240    Alabama    2016-07-17 07:12:08.223259    2016-10-14 13:02:43.827918        \N    \N    \N    0    \N    \N    \N    \N    female
13740    Christina    Veum    callie@kunze.org    \N    Serbia    Henrifort    5018 Destany Ranch    19871-3625    Georgia    2016-07-09 23:08:46.614091    2016-10-14 13:02:43.832522        \N    \N    \N    0    \N    \N    \N    \N    female
13741    Serenity    Haley    felicia.smith@ritchie.io    \N    Austria    Wiegandport    38460 Mayert Union    35669-4379    Washington    2016-09-15 11:29:35.593077    2016-10-14 13:02:43.839873        \N    \N    \N    0    \N    \N    \N    \N    female
13742    Zion    Kub    marshall@danielmclaughlin.io    \N    Bhutan    South Itzelview    55095 Monahan Drive    30050    Ohio    2016-07-31 05:34:20.349744    2016-10-14 13:02:43.845059        \N    \N    \N    0    \N    \N    \N    \N    female
13743    Scarlett    Bernhard    moses@ruelsenger.co    \N    Greece    Macejkovicchester    548 Davis Brooks    10305    Alabama    2016-09-13 10:47:49.572568    2016-10-14 13:02:43.849905        \N    \N    \N    0    \N    \N    \N    \N    female
13744    Colin    Cronin    orie@jaskolskiwhite.co    \N    Latvia    Reaganburgh    6858 Wisoky Cove    70173-6346    Hawaii    2016-09-23 17:17:53.024107    2016-10-14 13:02:43.854893        \N    \N    \N    0    \N    \N    \N    \N    female
13745    Dion    O'Kon    arvilla.daugherty@will.biz    \N    Philippines    Marciachester    65223 Schuster Junctions    38074    Missouri    2016-08-05 21:47:49.966142    2016-10-14 13:02:43.860062        \N    \N    \N    0    \N    \N    \N    \N    male
13746    Cordie    Hansen    lonzo.satterfield@hermanrobel.com    \N    Lithuania    New General    4454 Zboncak Place    27882    Alaska    2016-06-29 07:07:16.090034    2016-10-14 13:02:43.865816        \N    \N    \N    0    \N    \N    \N    \N    male
13747    Bradford    Volkman    judy@padberg.name    \N    Maldives    South Karelleborough    179 Margarita Creek    75114    New Jersey    2016-09-29 06:32:19.238494    2016-10-14 13:02:43.875533        \N    \N    \N    0    \N    \N    \N    \N    female
13748    Aurelie    Jenkins    osbaldo_hettinger@swift.co    \N    Svalbard & Jan Mayen Islands    Port Gracielaburgh    547 Violette Junction    89965    Maine    2016-07-24 21:00:07.958317    2016-10-14 13:02:43.881122        \N    \N    \N    0    \N    \N    \N    \N    female
13750    Evans    Bergstrom    guy@kertzmannlehner.com    \N    Ghana    Cummingsbury    88484 Lucius Gardens    47771    Michigan    2016-08-03 02:47:45.522431    2016-10-14 13:02:43.887191        \N    \N    \N    0    \N    \N    \N    \N    male
13751    Sydnee    Olson    moshe.jenkins@paucek.name    \N    Macedonia    Terryborough    79015 Gottlieb Harbors    99956    Mississippi    2016-09-17 01:12:27.622148    2016-10-14 13:02:43.891844        \N    \N    \N    0    \N    \N    \N    \N    male
13752    Anjali    Treutel    stephon@stammbeier.com    \N    Uruguay    Patrickchester    35653 Ottis Lane    70039    Missouri    2016-08-26 10:07:48.563236    2016-10-14 13:02:43.89624        \N    \N    \N    0    \N    \N    \N    \N    male
14168    Edgar    Wolff    brennon@romaguerareichert.name    \N    Cambodia    Lake Deion    8274 Robel Rapid    56630-3599    Illinois    2016-09-11 18:09:15.254674    2016-10-14 13:02:43.901225        \N    \N    \N    0    \N    \N    \N    \N    male
14172    Jairo    Little    onie.krajcik@wolf.co    \N    Nepal    Corafort    63296 Grant Center    26622    Indiana    2016-07-13 01:19:38.063729    2016-10-14 13:02:43.90629        \N    \N    \N    0    \N    \N    \N    \N    female
13753    Branson    Cummings    dahlia@torp.net    \N    Bermuda    Zboncakton    1941 Nella Common    45773    Pennsylvania    2016-07-29 19:10:30.402603    2016-10-14 13:02:43.91244        \N    \N    \N    0    \N    \N    \N    \N    female
13754    Bennie    Beier    joelle.jacobi@runolfondeckow.org    \N    Hong Kong    Bernhardchester    87353 Bode Unions    54888-4990    Maryland    2016-08-26 06:23:20.343415    2016-10-14 13:02:43.91783        \N    \N    \N    0    \N    \N    \N    \N    male
13755    Fausto    Braun    dianna_dietrich@pagac.org    \N    Somalia    Greenholtmouth    8508 Mueller River    46404    Illinois    2016-08-23 19:16:41.610065    2016-10-14 13:02:43.923252        \N    \N    \N    0    \N    \N    \N    \N    female
13756    Lester    Gleichner    kayley_parisian@langworthkilback.com    \N    Syrian Arab Republic    Bauchville    9507 Winifred Underpass    14350-8397    Vermont    2016-09-07 11:25:35.85162    2016-10-14 13:02:43.931436        \N    \N    \N    0    \N    \N    \N    \N    male
13757    Adrien    Cummerata    meghan@schinner.info    \N    Norfolk Island    Binsborough    31987 Moses Haven    66481-2343    New Jersey    2016-07-26 04:31:05.56638    2016-10-14 13:02:43.938432        \N    \N    \N    0    \N    \N    \N    \N    female
13758    Morton    Gaylord    barton@mayert.org    \N    Argentina    Bergehaven    2850 Carmella Crossing    40350    Indiana    2016-09-12 18:03:27.944176    2016-10-14 13:02:43.943954        \N    \N    \N    0    \N    \N    \N    \N    male
13760    Orland    O'Keefe    deion.ritchie@rolfson.io    \N    Estonia    West Jamar    47626 Maximus Court    96095-3840    Alaska    2016-08-14 20:43:54.181896    2016-10-14 13:02:43.953516        \N    \N    \N    0    \N    \N    \N    \N    male
13761    Florence    Will    phoebe_denesik@rogahn.info    \N    Mauritania    Lake Evie    810 Lafayette Knolls    77791    South Carolina    2016-07-23 22:06:59.583805    2016-10-14 13:02:43.958271        \N    \N    \N    0    \N    \N    \N    \N    male
13762    Micheal    Waters    abe_heller@stark.net    \N    Venezuela    Bergnaumshire    48708 Princess Loop    71670    Virginia    2016-08-20 08:42:05.414206    2016-10-14 13:02:43.964063        \N    \N    \N    0    \N    \N    \N    \N    female
13763    Eldred    Olson    finn@brekke.name    \N    Hong Kong    East Dimitri    791 Gleason Shores    86789-0089    Texas    2016-09-17 20:52:33.183347    2016-10-14 13:02:43.970532        \N    \N    \N    0    \N    \N    \N    \N    male
13764    Floy    Veum    violette@kshlerin.net    \N    Guinea    South Abbigailtown    91205 Kasey Parkways    58772-3425    Texas    2016-07-23 18:30:11.952827    2016-10-14 13:02:43.9769        \N    \N    \N    0    \N    \N    \N    \N    female
13765    Brian    Aufderhar    zack@langoshstrosin.name    \N    Saint Martin    New Lola    554 Meghan Mill    48101    Illinois    2016-07-28 16:17:11.699961    2016-10-14 13:02:43.982274        \N    \N    \N    0    \N    \N    \N    \N    female
13766    Russell    Lueilwitz    shad_bergstrom@gleichner.co    \N    Antarctica (the territory South of 60 deg S)    New Pinkport    89466 Weston Coves    66880    Iowa    2016-09-08 19:49:33.647985    2016-10-14 13:02:43.98732        \N    \N    \N    0    \N    \N    \N    \N    male
13767    Dominique    Toy    molly@gottlieb.org    \N    Albania    New Margaritafort    898 MacGyver Springs    28134-1686    Washington    2016-09-12 23:35:15.75703    2016-10-14 13:02:43.992222        \N    \N    \N    0    \N    \N    \N    \N    male
13768    Sherman    Witting    janea_jacobson@dubuque.org    \N    Poland    West Marciachester    98222 Vernice Mount    76914    Nebraska    2016-09-15 03:21:19.433743    2016-10-14 13:02:43.997372        \N    \N    \N    0    \N    \N    \N    \N    female
13769    Marisa    DuBuque    caandre@stroman.info    \N    Marshall Islands    North Gracielaton    861 Herminia Knoll    38642    Tennessee    2016-09-03 21:18:34.235737    2016-10-14 13:02:44.002119        \N    \N    \N    0    \N    \N    \N    \N    male
13770    Ola    McCullough    kaylee_thompson@schuppe.info    \N    Mauritania    New Angelicamouth    84681 Megane Circles    88030-6705    Alaska    2016-08-07 22:28:41.064267    2016-10-14 13:02:44.006861        \N    \N    \N    0    \N    \N    \N    \N    male
13771    Kimberly    Crooks    kareem.wyman@walker.co    \N    Swaziland    West Shawnmouth    2189 Griffin Heights    47707-4589    Montana    2016-08-03 20:35:59.316485    2016-10-14 13:02:44.012116        \N    \N    \N    0    \N    \N    \N    \N    male
13772    Aubree    Stamm    ignacio.olson@prosacco.io    \N    Holy See (Vatican City State)    North Mortonside    114 Osinski Forks    66768-4377    Utah    2016-07-23 18:21:50.251849    2016-10-14 13:02:44.017427        \N    \N    \N    0    \N    \N    \N    \N    male
13773    Lonny    Hoppe    fernando@gorczanynienow.info    \N    Cote d'Ivoire    Port Lonnie    31510 Laurianne Drive    70041    Kansas    2016-08-26 22:31:12.949696    2016-10-14 13:02:44.02265        \N    \N    \N    0    \N    \N    \N    \N    male
13774    Retha    Buckridge    jaylan_franecki@hills.net    \N    Brazil    Kuphalmouth    4067 Nellie Flats    18672    Alaska    2016-07-19 09:41:02.371289    2016-10-14 13:02:44.027711        \N    \N    \N    0    \N    \N    \N    \N    female
13775    Haskell    Carter    arden.donnelly@okonerdman.io    \N    Northern Mariana Islands    Leviburgh    99646 Ebert Via    29798-5942    Connecticut    2016-08-27 07:03:41.706262    2016-10-14 13:02:44.03268        \N    \N    \N    0    \N    \N    \N    \N    male
13776    Ashton    Lindgren    mary@hettinger.biz    \N    Liberia    New Camillehaven    797 Gisselle Ridges    89391    Rhode Island    2016-08-22 01:07:19.445543    2016-10-14 13:02:44.037225        \N    \N    \N    0    \N    \N    \N    \N    female
13777    Kattie    Becker    emmanuelle.moriette@abernathy.biz    \N    Togo    North Carmella    7325 D'angelo Viaduct    43062-0283    California    2016-07-24 17:26:38.780624    2016-10-14 13:02:44.042083        \N    \N    \N    0    \N    \N    \N    \N    male
13778    Jackie    Jones    mayra@nikolaus.net    \N    Jamaica    South Corneliusfurt    390 Koepp Track    57389-2744    Oklahoma    2016-06-23 22:18:15.332082    2016-10-14 13:02:44.046564        \N    \N    \N    0    \N    \N    \N    \N    male
13779    Shannon    Shields    sierra.hagenes@beahan.net    \N    Algeria    East Nichole    90963 Edna Mount    17576    Mississippi    2016-07-10 15:22:05.987689    2016-10-14 13:02:44.050873        \N    \N    \N    0    \N    \N    \N    \N    female
13780    Cesar    Medhurst    te.carter@haag.info    \N    Barbados    Julietown    1060 Marquardt Mission    83009    Massachusetts    2016-06-27 08:10:00.654941    2016-10-14 13:02:44.055962        \N    \N    \N    0    \N    \N    \N    \N    male
13781    Uriah    Sawayn    jayda.wyman@harris.info    \N    Macedonia    Port Erich    299 Jade Park    50604    Rhode Island    2016-07-06 10:52:56.428296    2016-10-14 13:02:44.061076        \N    \N    \N    0    \N    \N    \N    \N    male
13782    Florida    Kshlerin    marcelle.schneider@blanda.net    \N    United States Minor Outlying Islands    Kulaschester    92236 Johns Wells    59778    Hawaii    2016-08-26 04:13:44.944685    2016-10-14 13:02:44.066459        \N    \N    \N    0    \N    \N    \N    \N    female
13783    Amely    Hettinger    bobbie@borer.io    \N    Madagascar    Sabrinashire    45424 Sauer Vista    45999    Alaska    2016-09-21 19:10:58.637878    2016-10-14 13:02:44.0719        \N    \N    \N    0    \N    \N    \N    \N    female
13784    Manuela    Fisher    jerod@kovacekfritsch.com    \N    Maldives    North Vadamouth    5303 Van Knolls    79016-9169    Illinois    2016-09-18 21:38:54.73517    2016-10-14 13:02:44.076627        \N    \N    \N    0    \N    \N    \N    \N    male
13785    Vincenza    Kuhic    oran.gislason@brekkelegros.org    \N    Tuvalu    Muellerland    94535 Carroll Ford    26908-4228    New Mexico    2016-08-28 16:31:01.960391    2016-10-14 13:02:44.082622        \N    \N    \N    0    \N    \N    \N    \N    female
13786    Esther    McDermott    heloise@macejkovicdietrich.org    \N    Denmark    East Liam    38563 Reinger Grove    28162-7152    Virginia    2016-08-28 22:16:06.146571    2016-10-14 13:02:44.087342        \N    \N    \N    0    \N    \N    \N    \N    female
13787    Sincere    Schaden    dejah@pacocha.info    \N    Nauru    Lake Ole    479 Ondricka Harbors    83708    Tennessee    2016-07-10 03:06:21.351319    2016-10-14 13:02:44.09208        \N    \N    \N    0    \N    \N    \N    \N    male
13788    Enrico    Greenfelder    tristin@funk.co    \N    United States Minor Outlying Islands    West Haroldville    26947 Oda Way    38612    Massachusetts    2016-07-05 21:52:21.647355    2016-10-14 13:02:44.096349        \N    \N    \N    0    \N    \N    \N    \N    female
13789    Hank    Konopelski    morton@langosh.com    \N    Bulgaria    North Maya    67677 Theron Brooks    47591    South Dakota    2016-07-20 15:05:10.866631    2016-10-14 13:02:44.102222        \N    \N    \N    0    \N    \N    \N    \N    male
13790    Mikayla    Nolan    isidro_price@littellehner.com    \N    Moldova    East Stanleyburgh    217 Nils Viaduct    80972-7472    Washington    2016-07-05 11:03:20.019775    2016-10-14 13:02:44.106833        \N    \N    \N    0    \N    \N    \N    \N    female
13791    Hazel    Larkin    sydney@kihncarter.com    \N    Burkina Faso    North Karliechester    20420 Burnice Inlet    34983-4052    Connecticut    2016-08-29 21:52:57.218304    2016-10-14 13:02:44.112979        \N    \N    \N    0    \N    \N    \N    \N    male
13792    Nayeli    Anderson    eldred_mueller@kozey.com    \N    Guatemala    North Timmothyview    5115 Hazle Coves    78587    Florida    2016-08-26 03:21:45.804454    2016-10-14 13:02:44.11963        \N    \N    \N    0    \N    \N    \N    \N    male
13794    Winifred    Waelchi    dominic@langsanford.com    \N    Israel    North Marietta    813 Smith Overpass    88667    Louisiana    2016-09-16 17:55:08.84721    2016-10-14 13:02:44.128258        \N    \N    \N    0    \N    \N    \N    \N    female
13795    Helene    Rosenbaum    damian@hodkiewicz.co    \N    Slovenia    Faheychester    3380 Stroman Flats    96698-9860    Indiana    2016-07-02 08:25:21.183744    2016-10-14 13:02:44.13262        \N    \N    \N    0    \N    \N    \N    \N    male
13796    Therese    Wyman    cecilia.smitham@kris.io    \N    Ireland    South Tracey    35902 Lowe Trail    62853    Idaho    2016-08-18 20:00:09.272192    2016-10-14 13:02:44.137038        \N    \N    \N    0    \N    \N    \N    \N    male
13798    Vella    Reichert    burdette.lind@smith.co    \N    Turkmenistan    Lucileton    562 Bradtke Passage    64331-5686    Alabama    2016-07-30 18:14:45.491297    2016-10-14 13:02:44.143242        \N    \N    \N    0    \N    \N    \N    \N    male
13799    Camila    Gorczany    murray@grimes.name    \N    Sierra Leone    South Augustus    576 Carleton Expressway    11449    Massachusetts    2016-09-07 00:32:57.550506    2016-10-14 13:02:44.148011        \N    \N    \N    0    \N    \N    \N    \N    male
13800    Flavio    Satterfield    ethel_feeney@purdymoen.org    \N    Dominican Republic    Hermistonbury    1338 Juwan Knoll    93213-8089    New Jersey    2016-07-29 10:17:57.830725    2016-10-14 13:02:44.157023        \N    \N    \N    0    \N    \N    \N    \N    female
13801    Jakayla    Senger    caesar@doylebeer.io    \N    Saint Pierre and Miquelon    New Lorenz    6804 Bashirian Rapid    36297-3040    Montana    2016-07-20 10:05:26.405577    2016-10-14 13:02:44.161669        \N    \N    \N    0    \N    \N    \N    \N    female
13802    Brooke    Torp    gabriel@bartoletticollier.net    \N    Northern Mariana Islands    New Claudville    90134 Concepcion Courts    96993    Rhode Island    2016-09-12 04:58:26.462349    2016-10-14 13:02:44.166433        \N    \N    \N    0    \N    \N    \N    \N    female
13805    Ashlynn    McKenzie    myrtle@crona.com    \N    Cayman Islands    Broderickland    103 Koepp Well    77539-9912    Wisconsin    2016-07-06 00:14:26.855333    2016-10-14 13:02:44.171453        \N    \N    \N    0    \N    \N    \N    \N    female
13806    Emiliano    Lesch    bill@krajcik.info    \N    Palau    North Florenciobury    653 Jessy Village    95798    Montana    2016-09-16 12:19:40.09586    2016-10-14 13:02:44.175453        \N    \N    \N    0    \N    \N    \N    \N    female
13807    Lamont    Hagenes    ethyl@gorczanyhettinger.org    \N    Oman    New Keanu    40638 Jonatan Street    98863-9195    Minnesota    2016-08-20 16:45:23.642849    2016-10-14 13:02:44.179549        \N    \N    \N    0    \N    \N    \N    \N    female
13808    Ardith    Doyle    okey_waelchi@wolffkemmer.name    \N    Cayman Islands    North Jaceside    2595 Wintheiser Wall    14920    Arkansas    2016-07-19 18:07:36.436815    2016-10-14 13:02:44.184746        \N    \N    \N    0    \N    \N    \N    \N    female
13809    Kameron    Wolff    anais@satterfield.co    \N    Hong Kong    Boehmburgh    5057 Ryleigh Overpass    68405    Maine    2016-09-17 13:16:16.414434    2016-10-14 13:02:44.190142        \N    \N    \N    0    \N    \N    \N    \N    female
13810    Jaylon    Schoen    kavon.bauch@maggio.name    \N    Virgin Islands, British    Shieldston    74100 Brionna Cliff    12411    Missouri    2016-08-11 19:46:15.431859    2016-10-14 13:02:44.195586        \N    \N    \N    0    \N    \N    \N    \N    female
13811    Leland    Hermiston    kaleb@schmittjacobson.org    \N    Croatia    Port Sunnyside    318 Waino Via    32803-9135    Alaska    2016-07-29 06:30:43.234493    2016-10-14 13:02:44.200209        \N    \N    \N    0    \N    \N    \N    \N    female
13812    Jewel    Heller    kenya@kozey.org    \N    Gambia    Rippinville    28979 Gunnar Courts    84681-2976    Louisiana    2016-07-17 20:33:05.491809    2016-10-14 13:02:44.204996        \N    \N    \N    0    \N    \N    \N    \N    male
13813    Ervin    Ernser    rosie.streich@kochmills.net    \N    Uganda    Port Kelli    8807 Nienow Port    98663-5789    Alaska    2016-07-26 14:11:57.927741    2016-10-14 13:02:44.209452        \N    \N    \N    0    \N    \N    \N    \N    female
13814    Wade    Douglas    kira@wintheiser.io    \N    Northern Mariana Islands    O'Kontown    4018 Kaylie River    12685-4120    South Dakota    2016-08-01 00:43:57.032769    2016-10-14 13:02:44.213377        \N    \N    \N    0    \N    \N    \N    \N    female
13815    Florine    Nicolas    euna_windler@waelchiheathcote.io    \N    Luxembourg    New Destinyborough    49939 Bahringer Dam    14679    Michigan    2016-09-16 11:11:54.456974    2016-10-14 13:02:44.217407        \N    \N    \N    0    \N    \N    \N    \N    female
13816    Everette    Franecki    vida_langosh@markskautzer.info    \N    Guinea    Vernonmouth    87718 Maxie Walks    16554-3189    Idaho    2016-06-24 22:43:25.829412    2016-10-14 13:02:44.221402        \N    \N    \N    0    \N    \N    \N    \N    male
13817    Orval    Bernhard    sophia_pacocha@barton.co    \N    Monaco    Port Abbieborough    307 Casper Squares    20237    Utah    2016-09-15 00:39:47.402792    2016-10-14 13:02:44.226589        \N    \N    \N    0    \N    \N    \N    \N    male
13818    Daphnee    Gulgowski    torrance.nolan@steuber.biz    \N    Bahrain    Lorenzburgh    680 Keeley Lakes    38699-7068    New Jersey    2016-07-19 11:01:16.620693    2016-10-14 13:02:44.231089        \N    \N    \N    0    \N    \N    \N    \N    female
13819    Brook    Torp    filiberto.grady@walter.net    \N    Saint Helena    West Kariane    570 Paucek Forks    99833    Maine    2016-09-23 02:01:49.324651    2016-10-14 13:02:44.235415        \N    \N    \N    0    \N    \N    \N    \N    male
13820    Adah    Weber    evans@klocko.co    \N    Greenland    Labadiechester    843 Klocko Centers    23891-3333    Montana    2016-08-16 22:00:28.517848    2016-10-14 13:02:44.23994        \N    \N    \N    0    \N    \N    \N    \N    male
13821    Leonel    Mueller    micaela.klein@hermistonoreilly.net    \N    Liberia    North Annette    363 Hermann Street    65354-4622    Minnesota    2016-07-04 16:08:34.102007    2016-10-14 13:02:44.244584        \N    \N    \N    0    \N    \N    \N    \N    male
13822    Charlene    Grady    terrance.bergstrom@oreillystreich.io    \N    Uzbekistan    Caspershire    47407 Idell Way    90022-8716    Arizona    2016-08-29 23:42:18.938485    2016-10-14 13:02:44.253767        \N    \N    \N    0    \N    \N    \N    \N    female
13823    Francisca    Bartoletti    lorena_damore@bauch.com    \N    Poland    Lake Marjolaine    64553 Torrance Mountain    79662    Pennsylvania    2016-07-29 23:35:08.923286    2016-10-14 13:02:44.270639        \N    \N    \N    0    \N    \N    \N    \N    male
13824    Kaitlin    Yost    lucy@boyer.biz    \N    Oman    Jordibury    1097 Torphy Coves    43435    New Mexico    2016-08-03 00:20:22.85925    2016-10-14 13:02:44.284151        \N    \N    \N    0    \N    \N    \N    \N    female
13825    Kelsie    Homenick    lonnie.keeling@fahey.io    \N    Turks and Caicos Islands    Lake Johan    9272 Marjory Extension    96794    Texas    2016-07-20 21:40:08.812947    2016-10-14 13:02:44.293222        \N    \N    \N    0    \N    \N    \N    \N    female
13826    Effie    Dickens    jacey@jerdeswaniawski.name    \N    Mali    Kingburgh    8402 Breitenberg Trail    97812    Alaska    2016-09-28 08:22:11.976849    2016-10-14 13:02:44.299658        \N    \N    \N    0    \N    \N    \N    \N    male
13827    Myrtice    Rogahn    adriel@bins.co    \N    Belgium    South Mozellefort    11316 Paucek Manor    92668    Illinois    2016-08-06 04:27:23.070764    2016-10-14 13:02:44.306687        \N    \N    \N    0    \N    \N    \N    \N    female
13828    Elvie    Carroll    rogers@oreilly.info    \N    Andorra    South Braedenchester    18864 Haag Grove    19961    California    2016-06-22 16:33:37.044732    2016-10-14 13:02:44.312816        \N    \N    \N    0    \N    \N    \N    \N    male
11089    Dixie    Upton    orrin@okeefe.com    \N    Haiti    Dedricside    89292 Monahan Mills    59829    Missouri    2016-08-25 21:15:37.202921    2016-10-14 13:02:44.322491        \N    \N    \N    0    \N    \N    \N    \N    female
13797    Diamond    Jacobi    kian@mckenzieboehm.com    \N    Spain    North Myahbury    2363 Leatha Extension    76589    North Carolina    2016-09-11 09:44:57.874549    2016-10-14 13:02:44.327512        \N    \N    \N    0    \N    \N    \N    \N    female
13829    Ernest    Lang    tierra_schulist@carter.biz    \N    Jordan    West Charliefort    13499 O'Conner River    47043-4104    New Mexico    2016-09-21 17:31:03.764182    2016-10-14 13:02:44.332949        \N    \N    \N    0    \N    \N    \N    \N    female
13830    Austen    Beer    harvey@larkin.net    \N    Mexico    Loweville    9561 Julian Rue    32008    Tennessee    2016-07-19 02:51:13.233937    2016-10-14 13:02:44.337662        \N    \N    \N    0    \N    \N    \N    \N    male
13831    Montana    McLaughlin    kamille_dickens@considinefranecki.io    \N    Belarus    North Johann    311 Norene Overpass    89932    Illinois    2016-09-17 16:18:30.793944    2016-10-14 13:02:44.342579        \N    \N    \N    0    \N    \N    \N    \N    male
13832    Edison    Armstrong    abby.hilll@wisozk.net    \N    Greenland    Runolfsdottirville    9010 Keanu Run    86627-3347    Montana    2016-07-17 17:02:29.590073    2016-10-14 13:02:44.351251        \N    \N    \N    0    \N    \N    \N    \N    male
13833    Tiana    Gleichner    adelia@kertzmannmitchell.net    \N    France    North Kamron    762 Wilkinson Island    90489    Idaho    2016-08-01 11:57:45.056826    2016-10-14 13:02:44.356851        \N    \N    \N    0    \N    \N    \N    \N    female
13834    Althea    Turner    maci_bahringer@wuckertgoldner.co    \N    Greece    North Giovannistad    12310 Alba Pike    43791-9181    Pennsylvania    2016-09-10 09:16:17.630618    2016-10-14 13:02:44.362812        \N    \N    \N    0    \N    \N    \N    \N    male
13835    Marcos    Corwin    kennedy.mante@kovacek.org    \N    Guadeloupe    Paucekville    17736 Luther Green    70581-3129    Hawaii    2016-09-10 16:37:13.911542    2016-10-14 13:02:44.380399        \N    \N    \N    0    \N    \N    \N    \N    male
13836    Stephania    Hintz    nicolette@stantonwilliamson.co    \N    Uganda    Jeffereymouth    844 Haag Port    31553    Tennessee    2016-07-29 11:09:12.720588    2016-10-14 13:02:44.386153        \N    \N    \N    0    \N    \N    \N    \N    male
13837    Felipa    Brakus    oscar@spencerframi.co    \N    Paraguay    New Ashleechester    205 Bergnaum Mall    30406-2014    Wisconsin    2016-07-26 08:24:40.985191    2016-10-14 13:02:44.392703        \N    \N    \N    0    \N    \N    \N    \N    female
13838    Zoey    Metz    elliot@jacobson.info    \N    Mauritania    New Gardner    56632 Kamren Isle    39494    Texas    2016-08-23 12:03:41.680463    2016-10-14 13:02:44.397526        \N    \N    \N    0    \N    \N    \N    \N    male
13839    Logan    Roberts    vincenzo@hamill.biz    \N    Botswana    Lynchmouth    320 Nathanial Trafficway    53115-2482    Virginia    2016-08-19 15:05:05.188402    2016-10-14 13:02:44.402791        \N    \N    \N    0    \N    \N    \N    \N    male
13840    Zion    Flatley    alexandrea@abshirekerluke.co    \N    Uganda    West Ardith    315 Alfreda Ville    94251-2659    New Mexico    2016-09-09 03:19:16.003161    2016-10-14 13:02:44.409799        \N    \N    \N    0    \N    \N    \N    \N    male
13841    Jazmyn    Barrows    molly.hand@kirlin.name    \N    Jersey    Pansychester    3729 Hilll Village    25859    Massachusetts    2016-08-02 20:48:47.902014    2016-10-14 13:02:44.433054        \N    \N    \N    0    \N    \N    \N    \N    male
13842    Brittany    Graham    king.langosh@johns.co    \N    Peru    New Jaidaburgh    1114 Zboncak Highway    88185-0561    Vermont    2016-09-23 04:47:22.989671    2016-10-14 13:02:44.438412        \N    \N    \N    0    \N    \N    \N    \N    female
13843    Devan    Pagac    aisha@gulgowski.io    \N    Qatar    Rolfsonburgh    4949 Larue Extension    87417-5259    New York    2016-08-27 07:07:06.69822    2016-10-14 13:02:44.443429        \N    \N    \N    0    \N    \N    \N    \N    female
13844    Noe    Torp    jennyfer@bosco.co    \N    Turkey    Carterbury    2535 Thiel Points    30010    Ohio    2016-07-18 15:56:18.527245    2016-10-14 13:02:44.447779        \N    \N    \N    0    \N    \N    \N    \N    female
13845    Dee    McCullough    florian.runte@thompson.name    \N    Panama    Lake Freedastad    2760 Tremblay Manors    98332    Colorado    2016-07-12 06:13:36.986348    2016-10-14 13:02:44.452519        \N    \N    \N    0    \N    \N    \N    \N    female
13846    Adah    Cassin    johnathon.gorczany@auerhomenick.name    \N    Netherlands    South Vivian    40783 Else Isle    16592    Kentucky    2016-07-02 10:59:34.205441    2016-10-14 13:02:44.459356        \N    \N    \N    0    \N    \N    \N    \N    male
13847    Skylar    Pollich    howard@mckenzie.net    \N    Saudi Arabia    Elyssahaven    87019 Hilll Falls    93999    Maine    2016-07-20 18:20:49.983927    2016-10-14 13:02:44.465043        \N    \N    \N    0    \N    \N    \N    \N    male
13848    Monica    Daniel    thora@keeling.name    \N    Burundi    North Ryan    5906 Kamren Green    88632    Louisiana    2016-07-03 21:45:26.252359    2016-10-14 13:02:44.469749        \N    \N    \N    0    \N    \N    \N    \N    male
13849    Alexandro    Ernser    rhea@collins.info    \N    Singapore    Donatomouth    59156 Edythe Course    62016    Rhode Island    2016-09-21 18:38:29.602706    2016-10-14 13:02:44.476132        \N    \N    \N    0    \N    \N    \N    \N    male
13850    Kade    Anderson    felicia@larkinhowe.org    \N    Jersey    Arthurton    11363 Grant Divide    57470-5375    New Hampshire    2016-08-24 22:57:48.078276    2016-10-14 13:02:44.482329        \N    \N    \N    0    \N    \N    \N    \N    female
13851    Ivory    Dare    ephraim.feeney@koepp.org    \N    Belarus    Bustermouth    3835 Orn Key    37746    New Hampshire    2016-07-22 08:56:08.025582    2016-10-14 13:02:44.488175        \N    \N    \N    0    \N    \N    \N    \N    female
13852    Jayden    McLaughlin    yasmin@reingerluettgen.co    \N    Portugal    Lake Sarai    781 Bradtke Meadows    50714-4867    Wyoming    2016-09-21 09:28:47.368665    2016-10-14 13:02:44.493865        \N    \N    \N    0    \N    \N    \N    \N    male
13853    Armani    Kunze    marques.wintheiser@kozeylindgren.net    \N    Israel    Boehmfurt    65123 Liam Field    17222-7723    Wyoming    2016-09-29 03:57:18.329576    2016-10-14 13:02:44.500114        \N    \N    \N    0    \N    \N    \N    \N    female
13854    Betty    Corwin    minerva@barrows.com    \N    Democratic People's Republic of Korea    West Waltermouth    5531 Estella Lake    34672    Nevada    2016-09-03 16:38:29.106236    2016-10-14 13:02:44.505089        \N    \N    \N    0    \N    \N    \N    \N    female
13855    Eino    O'Conner    merle@parker.info    \N    Paraguay    Port Hallieport    4377 Allen Skyway    22341    Colorado    2016-07-28 11:43:14.88864    2016-10-14 13:02:44.510056        \N    \N    \N    0    \N    \N    \N    \N    male
13856    Joshuah    Schuster    verner@moore.biz    \N    Maldives    New Nadia    4800 Donald Street    63319    Vermont    2016-07-13 14:51:11.600328    2016-10-14 13:02:44.516118        \N    \N    \N    0    \N    \N    \N    \N    male
13857    Henri    Carter    garnett_feest@wolffzulauf.org    \N    Malta    Stromanfort    6320 Jadon Road    35759    Utah    2016-08-05 09:23:27.080055    2016-10-14 13:02:44.52166        \N    \N    \N    0    \N    \N    \N    \N    female
13858    Penelope    Hickle    adonis_kautzer@rice.name    \N    Cape Verde    Carterbury    23443 Abshire Avenue    75492    Wisconsin    2016-07-26 11:40:51.978075    2016-10-14 13:02:44.527079        \N    \N    \N    0    \N    \N    \N    \N    male
13859    Lexi    Marks    ariane_lehner@farrell.com    \N    Dominica    North Cameron    4748 Bayer Motorway    72833    Idaho    2016-08-24 22:04:53.808763    2016-10-14 13:02:44.535791        \N    \N    \N    0    \N    \N    \N    \N    female
13860    Kristopher    Zboncak    davonte_cummerata@conroy.info    \N    Central African Republic    South Jamison    4911 Allie Harbor    36458    New Hampshire    2016-08-26 23:38:42.591649    2016-10-14 13:02:44.541183        \N    \N    \N    0    \N    \N    \N    \N    male
13861    Lilliana    Altenwerth    jalon_grady@okuneva.net    \N    Argentina    Lake Precious    9045 Flatley Islands    54732    New Hampshire    2016-09-13 06:46:53.913791    2016-10-14 13:02:44.548111        \N    \N    \N    0    \N    \N    \N    \N    female
13862    Lucile    Jakubowski    rory_zboncak@gibson.net    \N    Croatia    New Aurelie    787 Paige Valley    10859-2576    Alaska    2016-07-22 11:16:48.462376    2016-10-14 13:02:44.552683        \N    \N    \N    0    \N    \N    \N    \N    male
13863    Marjory    Pagac    eula@auerwalter.net    \N    Norway    East Percyfort    7484 Pollich Turnpike    42971-7375    Hawaii    2016-08-27 17:20:21.762537    2016-10-14 13:02:44.557712        \N    \N    \N    0    \N    \N    \N    \N    male
13864    Bennett    Kunde    arnulfo@waters.io    \N    Estonia    West Darion    7335 Austyn Cliffs    64476-2966    Texas    2016-06-24 00:34:41.818349    2016-10-14 13:02:44.562256        \N    \N    \N    0    \N    \N    \N    \N    male
13865    Bart    Thompson    nigel@muller.info    \N    Palestinian Territory    Bashiriantown    40596 Delbert Mission    46476-5699    Alaska    2016-08-26 13:56:17.237041    2016-10-14 13:02:44.566638        \N    \N    \N    0    \N    \N    \N    \N    male
13866    Mara    Stehr    delmer_hahn@wehnersawayn.co    \N    Brazil    Lake Heaventon    9420 O'Conner Field    74721-7281    North Dakota    2016-08-14 07:46:45.511145    2016-10-14 13:02:44.580109        \N    \N    \N    0    \N    \N    \N    \N    female
13867    Marcellus    Vandervort    linnea@strosintrantow.org    \N    Germany    Marcellebury    130 Dibbert Isle    89815-9328    New Hampshire    2016-07-04 14:20:17.175923    2016-10-14 13:02:44.58513        \N    \N    \N    0    \N    \N    \N    \N    female
13868    Miles    Brekke    amelie_ritchie@kihn.info    \N    Tajikistan    Bayerstad    7084 Wisoky Alley    10765    Pennsylvania    2016-09-13 12:05:23.345679    2016-10-14 13:02:44.589589        \N    \N    \N    0    \N    \N    \N    \N    male
13869    Vidal    Morar    kitty@yundt.info    \N    Sri Lanka    West Taniabury    691 Fahey Land    28345    Wisconsin    2016-08-24 04:33:42.923626    2016-10-14 13:02:44.593766        \N    \N    \N    0    \N    \N    \N    \N    female
13870    Darrick    Bruen    alexie.stark@kiehnbeahan.info    \N    Haiti    Ryanside    88907 Kuhlman Station    59891    Vermont    2016-07-04 21:25:02.694789    2016-10-14 13:02:44.598585        \N    \N    \N    0    \N    \N    \N    \N    female
13871    Orland    Fadel    joaquin@howell.com    \N    Sao Tome and Principe    Koelpinside    935 Oberbrunner Walk    79918    Nebraska    2016-09-18 05:28:16.052655    2016-10-14 13:02:44.603176        \N    \N    \N    0    \N    \N    \N    \N    female
13872    Tremaine    Gleason    lon@kozey.name    \N    Pitcairn Islands    North Cierra    98682 Kautzer Ramp    87334-2333    Connecticut    2016-09-27 13:11:40.756635    2016-10-14 13:02:44.607841        \N    \N    \N    0    \N    \N    \N    \N    female
13873    Magdalen    Osinski    shaina@pagaccorkery.com    \N    Gambia    New Alanna    29239 Christop Estate    21325-2835    Nebraska    2016-07-04 02:40:05.156919    2016-10-14 13:02:44.612743        \N    \N    \N    0    \N    \N    \N    \N    male
13874    Carey    Crona    xavier@murphy.biz    \N    Bhutan    Torpton    791 Schneider Vista    31716    Louisiana    2016-09-07 17:42:21.443823    2016-10-14 13:02:44.618981        \N    \N    \N    0    \N    \N    \N    \N    female
13875    Drake    Doyle    bradley_friesen@haag.net    \N    Cote d'Ivoire    Port Nettiemouth    20025 Isadore Dam    13322-6949    Arizona    2016-08-08 01:04:30.074017    2016-10-14 13:02:44.625101        \N    \N    \N    0    \N    \N    \N    \N    male
13876    Rodrick    Hegmann    emelie@macgyverrunolfsdottir.com    \N    Uzbekistan    South Destineeside    3623 Enos Loaf    90009-8472    Massachusetts    2016-08-11 12:53:32.464762    2016-10-14 13:02:44.630184        \N    \N    \N    0    \N    \N    \N    \N    female
13877    Raheem    Bernier    ozella_lubowitz@lindboyle.org    \N    Macedonia    East Daynachester    8201 McCullough Hill    81690    Kansas    2016-09-13 01:47:29.437981    2016-10-14 13:02:44.63898        \N    \N    \N    0    \N    \N    \N    \N    male
13878    Maynard    Stiedemann    bartholome_harris@kuvalis.name    \N    Anguilla    Hilllville    6515 Charley Alley    76772    Kentucky    2016-09-06 05:59:13.517059    2016-10-14 13:02:44.644557        \N    \N    \N    0    \N    \N    \N    \N    male
13879    Macie    Heaney    tony_schneider@collins.co    \N    Swaziland    West Madilynberg    332 Hailey Forge    65107    Mississippi    2016-09-01 05:06:19.291772    2016-10-14 13:02:44.649233        \N    \N    \N    0    \N    \N    \N    \N    female
13880    Porter    Hills    donny.hartmann@damore.biz    \N    Libyan Arab Jamahiriya    Lake Candidoside    2537 Garret Estate    41568-4110    Wyoming    2016-08-15 14:29:48.006184    2016-10-14 13:02:44.654555        \N    \N    \N    0    \N    \N    \N    \N    male
13881    Jaylin    Bahringer    nathaniel@thompson.net    \N    Northern Mariana Islands    Lake Herman    38927 Luettgen Falls    13324-2116    Hawaii    2016-06-23 15:27:05.554327    2016-10-14 13:02:44.659337        \N    \N    \N    0    \N    \N    \N    \N    female
13882    Cicero    Von    mathew.altenwerth@buckridge.net    \N    Liechtenstein    New Ethelynhaven    6602 Romaguera Fort    75012-3223    Wyoming    2016-08-09 10:36:43.087294    2016-10-14 13:02:44.664756        \N    \N    \N    0    \N    \N    \N    \N    male
13883    Pamela    Crona    terrance@batz.io    \N    Madagascar    Lillieville    3243 Philip Crescent    29916    Florida    2016-09-15 19:08:15.194344    2016-10-14 13:02:44.670661        \N    \N    \N    0    \N    \N    \N    \N    female
13884    Aric    Casper    florencio.wunsch@vandervort.com    \N    Sweden    Jammiehaven    174 Strosin Plaza    15255    Minnesota    2016-09-16 18:55:00.775262    2016-10-14 13:02:44.675652        \N    \N    \N    0    \N    \N    \N    \N    male
13885    Casimir    Johnston    jayden.mueller@krajcik.net    \N    Panama    Carolynville    583 Dicki Roads    35259    Maryland    2016-08-17 19:52:58.181977    2016-10-14 13:02:44.68051        \N    \N    \N    0    \N    \N    \N    \N    male
13886    Jan    Boyle    jeffry_vandervort@huels.name    \N    Svalbard & Jan Mayen Islands    Nicolamouth    501 Carissa Stravenue    51210-1878    Kansas    2016-08-29 00:56:56.45315    2016-10-14 13:02:44.68657        \N    \N    \N    0    \N    \N    \N    \N    female
13887    Mia    Bins    kathryne_terry@balistreri.info    \N    Armenia    Efrenstad    31115 Waldo Burg    46596-2350    Louisiana    2016-08-13 10:28:58.036483    2016-10-14 13:02:44.692997        \N    \N    \N    0    \N    \N    \N    \N    male
13888    Leon    Reilly    chesley_nader@kub.io    \N    Libyan Arab Jamahiriya    Lake Fern    26707 Wisoky Green    30619-2226    Maine    2016-07-30 20:44:32.281858    2016-10-14 13:02:44.701406        \N    \N    \N    0    \N    \N    \N    \N    male
13889    Lucinda    Trantow    omer@rodriguez.com    \N    Marshall Islands    Maeganstad    874 Zieme Squares    67378    Nevada    2016-09-04 23:24:41.345881    2016-10-14 13:02:44.706186        \N    \N    \N    0    \N    \N    \N    \N    male
13890    Loyce    Zieme    jalen_cummerata@mosciski.co    \N    Jamaica    West Geneborough    5881 Auer Lock    48685-0951    California    2016-07-13 01:21:40.18397    2016-10-14 13:02:44.711075        \N    \N    \N    0    \N    \N    \N    \N    female
13891    Gonzalo    Schaefer    lamont_moriette@ritchie.name    \N    Serbia    South Edaton    179 Elmer Point    91286    Pennsylvania    2016-09-27 07:53:08.255664    2016-10-14 13:02:44.715868        \N    \N    \N    0    \N    \N    \N    \N    female
13892    Chester    Walker    owen@klocko.net    \N    Saint Helena    Arnoldchester    32359 Jacynthe Overpass    90179-6760    New Mexico    2016-09-06 08:29:11.816258    2016-10-14 13:02:44.720602        \N    \N    \N    0    \N    \N    \N    \N    male
13893    Andreane    Wyman    bethel.rutherford@kulas.biz    \N    Palau    North Vernside    63803 Dare Villages    53979    Maine    2016-08-22 19:09:23.842773    2016-10-14 13:02:44.724893        \N    \N    \N    0    \N    \N    \N    \N    female
13894    Ludie    Homenick    emmett.stroman@wunsch.info    \N    Ghana    New Juanafort    35521 Ebert Fords    17711-4262    Hawaii    2016-07-16 20:56:22.950204    2016-10-14 13:02:44.73086        \N    \N    \N    0    \N    \N    \N    \N    female
13895    Vivianne    Nienow    marcos.oconnell@rosenbaum.co    \N    Wallis and Futuna    North Hallieview    6105 Brandy Pine    15511    Connecticut    2016-08-10 14:42:13.190381    2016-10-14 13:02:44.735301        \N    \N    \N    0    \N    \N    \N    \N    female
13896    Trevor    Ankunding    je_marvin@wintheiser.org    \N    Malaysia    Mariannaport    590 Roel Views    85137    North Carolina    2016-07-31 20:38:29.519275    2016-10-14 13:02:44.739985        \N    \N    \N    0    \N    \N    \N    \N    female
13897    Tillman    Feeney    elvis@aufderhar.biz    \N    Belgium    Lorenberg    5276 Reinhold Squares    35864-3145    Alaska    2016-07-06 12:35:23.220018    2016-10-14 13:02:44.744471        \N    \N    \N    0    \N    \N    \N    \N    male
13898    Tad    Schmeler    catherine@boyer.net    \N    Sweden    Brucefurt    8116 Schiller Circle    64376    Vermont    2016-09-29 09:22:23.432357    2016-10-14 13:02:44.751108        \N    \N    \N    0    \N    \N    \N    \N    male
13899    Abby    Medhurst    tyrell@sanford.io    \N    Macedonia    New Jaunita    905 Carlo Park    68907    Oklahoma    2016-09-24 15:01:35.390181    2016-10-14 13:02:44.756123        \N    \N    \N    0    \N    \N    \N    \N    male
13900    Amie    Bode    rosa_prosacco@faheykrajcik.net    \N    Nicaragua    Wittingland    679 Reinger Hill    22403-0197    North Carolina    2016-09-16 11:33:11.120572    2016-10-14 13:02:44.761602        \N    \N    \N    0    \N    \N    \N    \N    male
13901    Hipolito    Streich    bernadine.bernhard@gleichner.net    \N    Serbia    East Maude    93066 Willms Terrace    64403    Nebraska    2016-09-19 00:33:37.924862    2016-10-14 13:02:44.767977        \N    \N    \N    0    \N    \N    \N    \N    female
13902    Era    Bins    antonia@hoeger.name    \N    Panama    South Guadalupemouth    917 Wallace Terrace    67218-0723    Rhode Island    2016-08-11 06:12:56.547681    2016-10-14 13:02:44.774758        \N    \N    \N    0    \N    \N    \N    \N    male
13903    Neil    Wisozk    jeanie_ledner@weinat.biz    \N    Serbia    Kuhicstad    5360 Wyman Meadows    24088-1784    Ohio    2016-07-04 21:12:44.456857    2016-10-14 13:02:44.779685        \N    \N    \N    0    \N    \N    \N    \N    male
13904    Kamron    Braun    patrick@bernier.biz    \N    Vanuatu    Port Danielle    73930 Marvin Inlet    63792-8344    Maine    2016-07-08 08:05:39.680093    2016-10-14 13:02:44.792398        \N    \N    \N    0    \N    \N    \N    \N    female
13905    Edna    Rohan    dorcas@lynch.io    \N    Mongolia    East Virginiefurt    74895 Finn Brooks    33204-8276    Arkansas    2016-09-18 00:10:38.508288    2016-10-14 13:02:44.799519        \N    \N    \N    0    \N    \N    \N    \N    female
13906    Jaeden    Harris    maggie.ullrich@lindgren.co    \N    Turks and Caicos Islands    Twilafort    3213 Delbert Park    63787-0072    New Hampshire    2016-07-09 04:00:42.253619    2016-10-14 13:02:44.808228        \N    \N    \N    0    \N    \N    \N    \N    male
13907    Aylin    Eichmann    jailyn@kaulke.name    \N    Macedonia    Hillsborough    5545 Graham Circle    56023    Oklahoma    2016-07-01 20:02:53.993504    2016-10-14 13:02:44.817718        \N    \N    \N    0    \N    \N    \N    \N    female
13908    Lavon    Goodwin    timmy.jones@kuhnrath.name    \N    Swaziland    East Gideon    51332 Dicki Grove    27565    Missouri    2016-09-25 22:09:10.926302    2016-10-14 13:02:44.824284        \N    \N    \N    0    \N    \N    \N    \N    male
13909    Bernardo    Windler    laila@heel.name    \N    Turkmenistan    Strackeborough    2842 Susan Lane    16373-0239    Rhode Island    2016-07-02 11:01:21.623364    2016-10-14 13:02:44.82898        \N    \N    \N    0    \N    \N    \N    \N    female
13910    Brennan    O'Hara    corine@ferry.co    \N    Cuba    New Heavenville    3379 Fritsch Rapid    41785-1662    Utah    2016-07-23 03:17:18.207235    2016-10-14 13:02:44.833952        \N    \N    \N    0    \N    \N    \N    \N    male
13911    Griffin    Skiles    abdiel_ernser@eichmann.org    \N    Poland    Devantetown    51653 Rodolfo Crossing    67227-5994    Montana    2016-09-07 02:47:59.747965    2016-10-14 13:02:44.839356        \N    \N    \N    0    \N    \N    \N    \N    female
13912    Rashad    Leannon    shaniya_connelly@beahan.biz    \N    Saint Barthelemy    Lawrenceborough    6400 Abdul Port    88116    Connecticut    2016-08-20 12:59:37.98807    2016-10-14 13:02:44.855058        \N    \N    \N    0    \N    \N    \N    \N    female
13913    Iliana    Gibson    katlynn@turcotteschinner.name    \N    French Southern Territories    Gissellehaven    111 Schmeler Pass    87132    West Virginia    2016-09-03 23:02:28.464534    2016-10-14 13:02:44.866223        \N    \N    \N    0    \N    \N    \N    \N    female
13914    Amanda    Armstrong    cortez@streichheathcote.net    \N    Saint Pierre and Miquelon    Ellenside    630 VonRueden Shore    10353-0553    Montana    2016-07-19 03:27:18.192216    2016-10-14 13:02:44.873392        \N    \N    \N    0    \N    \N    \N    \N    female
13916    Alta    Labadie    brionna@waelchi.io    \N    Estonia    Colbymouth    727 Salvatore Alley    80048-1970    Pennsylvania    2016-09-11 05:06:04.828679    2016-10-14 13:02:44.880019        \N    \N    \N    0    \N    \N    \N    \N    female
13917    Mazie    Von    charlene@boehmjacobs.co    \N    Kenya    Fritschshire    841 Kris Squares    99172-5512    West Virginia    2016-09-15 13:04:00.455274    2016-10-14 13:02:44.886268        \N    \N    \N    0    \N    \N    \N    \N    female
13918    Ocie    Kuhn    oscar@watsicalebsack.biz    \N    British Indian Ocean Territory (Chagos Archipelago)    North Claudia    45141 Thiel Shoal    32400    Oregon    2016-08-10 14:50:26.901938    2016-10-14 13:02:44.891031        \N    \N    \N    0    \N    \N    \N    \N    female
13919    Dannie    Bahringer    tyrel_kautzer@wunsch.org    \N    San Marino    Kathryneville    9365 Taryn Spur    32920    Colorado    2016-09-19 23:09:16.142153    2016-10-14 13:02:44.895633        \N    \N    \N    0    \N    \N    \N    \N    female
13920    Jeanette    Mayert    percival.corwin@white.org    \N    Niger    East Demarcoberg    147 Schoen Vista    70975-1820    Louisiana    2016-09-27 18:13:29.018298    2016-10-14 13:02:44.900245        \N    \N    \N    0    \N    \N    \N    \N    female
13921    Odell    Grimes    travon_olson@dubuque.name    \N    Saint Helena    South Ericaberg    5585 Dejah Forest    97088-2394    Connecticut    2016-09-13 02:58:43.137906    2016-10-14 13:02:44.906549        \N    \N    \N    0    \N    \N    \N    \N    female
13922    Pedro    Lebsack    tara@macgyver.io    \N    Kazakhstan    Port Lavadaland    239 Bella Fort    81981-0810    Missouri    2016-07-30 03:25:32.205191    2016-10-14 13:02:44.912616        \N    \N    \N    0    \N    \N    \N    \N    female
13923    Linnie    Thompson    florida.spinka@glover.name    \N    Lesotho    Lowestad    2199 Beverly Garden    53704    Nevada    2016-09-10 14:42:26.288086    2016-10-14 13:02:44.917336        \N    \N    \N    0    \N    \N    \N    \N    female
13924    Eve    Hickle    janick@little.info    \N    Papua New Guinea    East Caterinaburgh    738 Veum Trafficway    68706-0199    Pennsylvania    2016-09-21 18:17:47.111237    2016-10-14 13:02:44.922019        \N    \N    \N    0    \N    \N    \N    \N    female
13925    Guy    Gibson    selina.upton@purdyhickle.com    \N    Trinidad and Tobago    Napoleonview    5761 Laney Crossing    78641-8970    Texas    2016-07-18 11:26:01.797636    2016-10-14 13:02:44.926808        \N    \N    \N    0    \N    \N    \N    \N    male
13926    Lucile    Kuhlman    jordon@framimedhurst.io    \N    Thailand    Port Ramonview    494 Dave Mount    52000-5675    Nevada    2016-08-03 18:36:29.516023    2016-10-14 13:02:44.932015        \N    \N    \N    0    \N    \N    \N    \N    female
13927    Maia    Wehner    dewitt@hackett.net    \N    Uganda    Lake Leland    78119 Carroll Circles    51325    Florida    2016-07-04 17:07:23.379424    2016-10-14 13:02:44.937183        \N    \N    \N    0    \N    \N    \N    \N    male
13928    Eloisa    Pagac    frida@homenick.name    \N    Andorra    Lakinton    290 Rohan Circles    52672    Vermont    2016-07-21 10:48:51.203095    2016-10-14 13:02:44.943466        \N    \N    \N    0    \N    \N    \N    \N    female
13929    Matilda    Bernier    lora@keeling.com    \N    Guernsey    Lake Siennamouth    822 Clement Garden    35513-5317    Hawaii    2016-09-17 19:57:43.546407    2016-10-14 13:02:44.948648        \N    \N    \N    0    \N    \N    \N    \N    male
13930    Cyrus    Hyatt    greta_fadel@fisher.name    \N    Maldives    Wilfredoton    9264 Roob Tunnel    77878    Wisconsin    2016-07-24 09:56:13.964836    2016-10-14 13:02:44.954023        \N    \N    \N    0    \N    \N    \N    \N    male
13931    Mary    McDermott    celine@dachkutch.name    \N    Kuwait    Terryview    454 West Trafficway    46760-3984    California    2016-09-12 02:35:57.792708    2016-10-14 13:02:44.958698        \N    \N    \N    0    \N    \N    \N    \N    male
13932    Nash    Thompson    sally@stoltenberg.com    \N    Eritrea    Stephanmouth    35402 Swaniawski Oval    85898    Arkansas    2016-09-06 16:23:16.62468    2016-10-14 13:02:44.963181        \N    \N    \N    0    \N    \N    \N    \N    female
13933    Bulah    Christiansen    alexandria.casper@wintheiser.org    \N    Cayman Islands    Schneiderview    52675 Jaylin Square    48143    Wyoming    2016-06-23 15:05:18.690606    2016-10-14 13:02:44.967768        \N    \N    \N    0    \N    \N    \N    \N    female
13934    Major    Crooks    koby@johnson.com    \N    Falkland Islands (Malvinas)    Malachifurt    2618 Susana Plaza    59510    New York    2016-09-10 23:00:08.355553    2016-10-14 13:02:44.972464        \N    \N    \N    0    \N    \N    \N    \N    male
13935    Gussie    Durgan    miguel@johns.com    \N    Lebanon    East Jena    8096 Hilpert Extensions    88540    Massachusetts    2016-09-15 03:03:02.608767    2016-10-14 13:02:44.977942        \N    \N    \N    0    \N    \N    \N    \N    male
13936    Bo    Haley    kayli_harris@littel.name    \N    Slovenia    Ricefort    769 Novella Falls    10421-1692    Arkansas    2016-07-19 23:53:07.10883    2016-10-14 13:02:44.983149        \N    \N    \N    0    \N    \N    \N    \N    male
13938    Novella    Kozey    lloyd@blanda.biz    \N    Tuvalu    Donnellyhaven    62769 Oberbrunner Plains    29737    Alaska    2016-06-28 10:08:21.55333    2016-10-14 13:02:44.998474        \N    \N    \N    0    \N    \N    \N    \N    female
13939    Chelsey    Kshlerin    roy@loweconn.co    \N    Ecuador    Port Flaviechester    1259 Williamson Radial    54660    Colorado    2016-09-23 06:41:01.001145    2016-10-14 13:02:45.009009        \N    \N    \N    0    \N    \N    \N    \N    female
13941    Piper    Walsh    charles@kautzerwintheiser.co    \N    South Georgia and the South Sandwich Islands    New Frida    67276 Reggie Falls    49610-4186    Maine    2016-08-04 17:51:41.678423    2016-10-14 13:02:45.018994        \N    \N    \N    0    \N    \N    \N    \N    male
13942    Oran    Hoeger    pat_cummings@ratke.co    \N    Tajikistan    Zoefort    1143 Alyson Land    81455    Rhode Island    2016-08-23 12:30:06.772568    2016-10-14 13:02:45.024263        \N    \N    \N    0    \N    \N    \N    \N    male
13943    Trudie    Schuppe    dennis@blick.co    \N    Vietnam    Maggioshire    177 Effertz Cliff    30298-8817    West Virginia    2016-07-17 09:30:44.137866    2016-10-14 13:02:45.029729        \N    \N    \N    0    \N    \N    \N    \N    female
13944    Bethel    Buckridge    ezequiel.ondricka@stamm.biz    \N    India    Jarredstad    564 Lockman Turnpike    62933-0961    Mississippi    2016-08-15 13:59:27.08789    2016-10-14 13:02:45.037255        \N    \N    \N    0    \N    \N    \N    \N    female
13945    Gaston    Volkman    scot_feest@wisozk.info    \N    Macao    Solonport    170 Vandervort Station    30581    New Mexico    2016-06-27 16:40:48.840189    2016-10-14 13:02:45.043843        \N    \N    \N    0    \N    \N    \N    \N    male
13946    Elinore    Breitenberg    elise_kuhn@stehrhoeger.name    \N    Portugal    South Janellechester    927 Nitzsche Prairie    50280    Pennsylvania    2016-07-26 16:14:52.69101    2016-10-14 13:02:45.049883        \N    \N    \N    0    \N    \N    \N    \N    male
13947    Arnaldo    Koepp    toby.yost@bergstrom.org    \N    Sierra Leone    Douglasside    894 Mariela Ports    71116-9721    Idaho    2016-08-26 09:22:59.566993    2016-10-14 13:02:45.054795        \N    \N    \N    0    \N    \N    \N    \N    male
13948    Alexa    Gottlieb    lue@kunde.io    \N    Palestinian Territory    Rubenchester    62360 Jennings Village    27405    Washington    2016-07-21 20:55:08.584356    2016-10-14 13:02:45.062329        \N    \N    \N    0    \N    \N    \N    \N    female
13949    Camren    Nitzsche    elenora@little.org    \N    Grenada    North Scottyport    822 Abbott Creek    84555    Connecticut    2016-09-24 19:50:13.709981    2016-10-14 13:02:45.067907        \N    \N    \N    0    \N    \N    \N    \N    female
13950    Elvis    Jenkins    kira_wolf@wiegandwolff.net    \N    Bouvet Island (Bouvetoya)    Reichelchester    3057 Little Station    21629-2959    Washington    2016-09-04 12:25:08.626828    2016-10-14 13:02:45.07917        \N    \N    \N    0    \N    \N    \N    \N    female
13951    Edwin    Powlowski    zella_gerlach@murray.com    \N    Jersey    Kuhlmanton    298 Erwin Ports    69040-9718    Texas    2016-08-01 13:04:09.552161    2016-10-14 13:02:45.088706        \N    \N    \N    0    \N    \N    \N    \N    female
13952    Ephraim    Stokes    arlo@hackett.io    \N    Heard Island and McDonald Islands    East Addison    4958 Aileen Mountain    56929-5870    Minnesota    2016-08-17 09:19:23.296348    2016-10-14 13:02:45.099678        \N    \N    \N    0    \N    \N    \N    \N    male
13953    Vernice    Balistreri    alize.gibson@robel.net    \N    Hungary    Blockland    496 Marquardt Parks    58671-7565    Arizona    2016-08-08 09:40:45.431184    2016-10-14 13:02:45.109002        \N    \N    \N    0    \N    \N    \N    \N    female
13954    Bryce    McKenzie    juanita@beer.info    \N    Sudan    East Jenniemouth    30045 Alberto Springs    45869    New Mexico    2016-07-13 13:09:17.663195    2016-10-14 13:02:45.117934        \N    \N    \N    0    \N    \N    \N    \N    male
13956    May    Reichel    nolan@davis.biz    \N    Canada    South Camrenfort    3561 Antonietta Canyon    73732-2820    Texas    2016-08-18 15:13:21.019484    2016-10-14 13:02:45.123624        \N    \N    \N    0    \N    \N    \N    \N    female
13957    Winona    Torp    bette@oreilly.biz    \N    Djibouti    Port Eryn    2309 Era Centers    64479-6023    Hawaii    2016-09-11 20:21:19.495093    2016-10-14 13:02:45.132877        \N    \N    \N    0    \N    \N    \N    \N    male
13958    Ardella    Buckridge    tyrell.wolf@will.biz    \N    Saint Lucia    East Kristin    4572 Ezekiel Field    90711-2309    North Dakota    2016-07-18 07:46:53.562877    2016-10-14 13:02:45.13864        \N    \N    \N    0    \N    \N    \N    \N    male
13959    Walker    Barton    claude.kunze@wolff.name    \N    Norway    East Kailee    81457 Isom Walks    23034-7602    Maine    2016-08-23 08:04:15.655457    2016-10-14 13:02:45.14436        \N    \N    \N    0    \N    \N    \N    \N    female
13960    Ethan    Flatley    carter@mosciski.org    \N    Rwanda    Darrelfort    16016 Arlie Shoals    59859-3462    Pennsylvania    2016-09-25 08:06:45.160418    2016-10-14 13:02:45.152848        \N    \N    \N    0    \N    \N    \N    \N    female
13961    Xavier    Marks    taylor@grimes.org    \N    Mali    Labadiestad    1847 Winifred Spur    72175-4157    South Dakota    2016-09-21 17:28:00.250262    2016-10-14 13:02:45.160141        \N    \N    \N    0    \N    \N    \N    \N    female
13962    Dina    Nicolas    madyson.mcclure@nicolasgerhold.biz    \N    Seychelles    Lake Reannafort    826 Eliseo Rapids    12407-3181    Virginia    2016-06-24 08:49:26.613197    2016-10-14 13:02:45.174427        \N    \N    \N    0    \N    \N    \N    \N    female
13963    Keon    Carroll    antonietta@ankundingschumm.io    \N    Bahrain    New Kailyn    176 Cummerata Village    86031    Ohio    2016-08-06 14:42:47.953355    2016-10-14 13:02:45.181692        \N    \N    \N    0    \N    \N    \N    \N    female
13964    Hosea    Jaskolski    joey@gerlachparisian.info    \N    Spain    Leonehaven    14582 Goodwin Branch    66964    New Hampshire    2016-08-07 08:44:03.25524    2016-10-14 13:02:45.190298        \N    \N    \N    0    \N    \N    \N    \N    male
13965    Rashawn    Walter    kameron@moenlowe.net    \N    Slovakia (Slovak Republic)    Dickiton    297 Purdy Trafficway    28571    Texas    2016-09-15 01:30:12.177558    2016-10-14 13:02:45.203903        \N    \N    \N    0    \N    \N    \N    \N    male
13966    Crystel    Wolff    oral_corwin@croninquitzon.info    \N    United States of America    South Minastad    8581 Bins Plains    95618    South Dakota    2016-08-28 00:22:16.123213    2016-10-14 13:02:45.210322        \N    \N    \N    0    \N    \N    \N    \N    female
13967    Candido    Wiza    royce.morar@klocko.org    \N    Tunisia    North Tatemouth    232 Elias Fields    25365    Wisconsin    2016-08-15 08:50:54.550808    2016-10-14 13:02:45.222192        \N    \N    \N    0    \N    \N    \N    \N    male
13968    Santino    Marvin    tamara.hudson@padberg.org    \N    Antarctica (the territory South of 60 deg S)    Sporerfurt    7232 Flatley Club    34591-4132    Rhode Island    2016-07-03 17:40:38.358457    2016-10-14 13:02:45.228814        \N    \N    \N    0    \N    \N    \N    \N    female
13969    Jovanny    Strosin    cortez@bogisich.biz    \N    Cameroon    Ileneport    222 Jessy Parkways    36361    Montana    2016-08-27 00:19:15.721771    2016-10-14 13:02:45.235808        \N    \N    \N    0    \N    \N    \N    \N    female
13970    Wendell    Bashirian    leo.pfannerstill@hoeger.info    \N    Colombia    Hyattland    6694 Mosciski Isle    21011-0566    Maryland    2016-07-01 00:05:07.446599    2016-10-14 13:02:45.241194        \N    \N    \N    0    \N    \N    \N    \N    female
13971    Adell    Rippin    hortense.rutherford@mitchell.org    \N    Liberia    Port Goldenchester    4191 Urban Manors    12551-8528    Maine    2016-08-12 05:20:23.507795    2016-10-14 13:02:45.25427        \N    \N    \N    0    \N    \N    \N    \N    male
13972    Carli    Kris    jerrold_oberbrunner@lockmanruel.org    \N    Christmas Island    Spencerhaven    518 Osvaldo Street    95935    South Dakota    2016-07-09 05:18:55.061118    2016-10-14 13:02:45.265935        \N    \N    \N    0    \N    \N    \N    \N    female
13973    Summer    Wisoky    lesley_mckenzie@goyette.biz    \N    Hungary    North Johnathon    171 Toy Lakes    14149    Virginia    2016-09-11 09:30:53.986517    2016-10-14 13:02:45.276049        \N    \N    \N    0    \N    \N    \N    \N    female
13974    Maudie    Wunsch    eliza@borer.name    \N    Armenia    East Kameron    9002 Shields Square    87721    Utah    2016-08-19 11:05:46.189456    2016-10-14 13:02:45.282429        \N    \N    \N    0    \N    \N    \N    \N    female
13975    Piper    Toy    katlynn_mcglynn@feest.io    \N    Burkina Faso    East Kodytown    908 Stiedemann Forest    40232-6930    Michigan    2016-08-05 10:21:36.659782    2016-10-14 13:02:45.288584        \N    \N    \N    0    \N    \N    \N    \N    female
13976    Jannie    Mitchell    jabari_murray@stroman.net    \N    Cyprus    Deborahstad    1102 Ivah Mount    40059-1076    Connecticut    2016-08-18 12:57:02.264797    2016-10-14 13:02:45.296565        \N    \N    \N    0    \N    \N    \N    \N    female
13977    Daisy    Murazik    juliet@fritsch.io    \N    Qatar    South Ebony    907 Silas Summit    32192-6607    New Jersey    2016-07-29 00:09:48.545098    2016-10-14 13:02:45.312591        \N    \N    \N    0    \N    \N    \N    \N    female
13978    Amina    Veum    torrance@sipesryan.name    \N    Tokelau    Orachester    142 Jeffry Motorway    48032-7658    New Jersey    2016-08-15 23:44:54.488551    2016-10-14 13:02:45.323839        \N    \N    \N    0    \N    \N    \N    \N    male
13979    Dejah    Hartmann    lorenz@jacobson.com    \N    Cook Islands    Hanehaven    60488 Opal Pike    48829    Wisconsin    2016-07-30 05:58:20.486449    2016-10-14 13:02:45.332004        \N    \N    \N    0    \N    \N    \N    \N    female
13980    Faye    Casper    albina.simonis@kuphal.org    \N    Fiji    Nasirville    207 Schaefer Rest    35288-3570    Connecticut    2016-06-26 06:45:30.60642    2016-10-14 13:02:45.347309        \N    \N    \N    0    \N    \N    \N    \N    female
13981    Jaeden    Blanda    marge_ondricka@walkerhilpert.io    \N    Cocos (Keeling) Islands    North Dedricbury    829 Dooley Trail    63649-1333    Ohio    2016-09-06 02:37:57.446998    2016-10-14 13:02:45.354424        \N    \N    \N    0    \N    \N    \N    \N    female
13982    Rafaela    McCullough    aurelie@hoeger.co    \N    United States of America    Lake Hubert    686 Quentin Mill    41265    New Jersey    2016-09-06 22:53:58.641047    2016-10-14 13:02:45.376539        \N    \N    \N    0    \N    \N    \N    \N    male
13983    Lorenz    Macejkovic    randal.rowe@haucknolan.com    \N    Anguilla    New Jamaalshire    67987 Abbott Highway    15999    Oklahoma    2016-08-28 06:36:54.086659    2016-10-14 13:02:45.386742        \N    \N    \N    0    \N    \N    \N    \N    female
13984    Kelli    Bergnaum    amber@welch.biz    \N    Isle of Man    Freddyburgh    756 Layla Landing    99991-5775    Michigan    2016-07-18 15:59:59.499585    2016-10-14 13:02:45.397002        \N    \N    \N    0    \N    \N    \N    \N    male
13985    Mikayla    Herzog    kelton_walker@kaulke.name    \N    Puerto Rico    New Eli    9669 Hilpert Walk    72610-0446    New Mexico    2016-07-27 03:12:47.429282    2016-10-14 13:02:45.402588        \N    \N    \N    0    \N    \N    \N    \N    female
13986    Sophia    Gleason    blair.fay@gulgowski.name    \N    Jamaica    Lake Kristopherburgh    12476 Powlowski Turnpike    15619-8158    Iowa    2016-09-16 14:43:25.745429    2016-10-14 13:02:45.411467        \N    \N    \N    0    \N    \N    \N    \N    male
13987    Salvador    Schamberger    darrel.macejkovic@koch.net    \N    Falkland Islands (Malvinas)    East Evie    2083 Farrell Spring    92994-6727    Idaho    2016-09-12 10:17:52.210833    2016-10-14 13:02:45.418956        \N    \N    \N    0    \N    \N    \N    \N    female
13988    Otho    Reynolds    sid@schneider.org    \N    Singapore    Sallystad    7990 Altenwerth Dale    92367-9029    Montana    2016-09-18 17:23:10.517715    2016-10-14 13:02:45.426788        \N    \N    \N    0    \N    \N    \N    \N    male
13989    Frederick    VonRueden    louisa@daughertybarton.name    \N    Jersey    Littleside    76737 Amanda Groves    36021    Nebraska    2016-09-10 01:37:29.192051    2016-10-14 13:02:45.442853        \N    \N    \N    0    \N    \N    \N    \N    female
13990    Trinity    Murazik    mabel@kihntreutel.com    \N    Poland    Lake Elenortown    230 Heathcote Inlet    87107    North Dakota    2016-07-28 02:36:38.971297    2016-10-14 13:02:45.456225        \N    \N    \N    0    \N    \N    \N    \N    male
13991    Gabriella    Abbott    hiram.rolfson@friesen.biz    \N    Palau    Emeliatown    6620 Russel Fort    88545    Alabama    2016-08-01 15:05:46.413151    2016-10-14 13:02:45.468441        \N    \N    \N    0    \N    \N    \N    \N    male
13992    Lucie    Emmerich    cameron@raynor.co    \N    Congo    New Murieltown    35855 Mante Pines    69153    New Jersey    2016-09-26 21:01:39.462959    2016-10-14 13:02:45.479021        \N    \N    \N    0    \N    \N    \N    \N    male
13993    Nayeli    Herman    lukas@bartolettikunze.org    \N    Jamaica    South Clinthaven    76987 Raquel Greens    32263-4762    Tennessee    2016-07-21 02:01:20.281608    2016-10-14 13:02:45.486378        \N    \N    \N    0    \N    \N    \N    \N    male
13994    Yoshiko    Metz    hermina.rempel@corwin.com    \N    Maldives    Jaylenfurt    6861 Bauch Divide    87110    Michigan    2016-09-02 11:29:34.138125    2016-10-14 13:02:45.492001        \N    \N    \N    0    \N    \N    \N    \N    male
13995    Mohamed    Willms    jacklyn@ryanerdman.org    \N    Puerto Rico    Beerberg    85257 Bernier Ramp    48516-5067    Massachusetts    2016-08-13 16:17:54.105637    2016-10-14 13:02:45.497225        \N    \N    \N    0    \N    \N    \N    \N    female
13996    Kyle    Gerlach    jo_shanahan@rennerconn.net    \N    Saint Vincent and the Grenadines    Darenview    4328 Zora Overpass    94242-5071    Rhode Island    2016-09-20 09:53:39.866984    2016-10-14 13:02:45.512273        \N    \N    \N    0    \N    \N    \N    \N    female
13997    Alejandrin    Buckridge    desiree_ratke@volkman.io    \N    Luxembourg    Ryanland    74910 Eichmann Spurs    98885    Connecticut    2016-08-24 13:57:23.059193    2016-10-14 13:02:45.517387        \N    \N    \N    0    \N    \N    \N    \N    female
13998    Ferne    Labadie    cathrine.welch@bergehermiston.biz    \N    Greenland    Berniershire    18666 Lind Island    20816    Indiana    2016-09-28 11:50:58.959691    2016-10-14 13:02:45.522239        \N    \N    \N    0    \N    \N    \N    \N    female
13999    Tracy    Blick    eloy@simonisfranecki.io    \N    Tajikistan    West Lora    256 Ebert Ferry    34579    Washington    2016-09-14 14:13:05.082441    2016-10-14 13:02:45.526676        \N    \N    \N    0    \N    \N    \N    \N    female
14000    Harvey    Balistreri    haven@larson.biz    \N    India    Eliasfort    346 Rubye Grove    53681-4870    South Carolina    2016-08-21 02:27:57.67696    2016-10-14 13:02:45.530957        \N    \N    \N    0    \N    \N    \N    \N    male
14001    Jolie    Hills    quincy@stracke.com    \N    Montenegro    Emmittville    2284 Berge Fields    22335-2073    New Jersey    2016-07-29 22:39:24.947622    2016-10-14 13:02:45.536308        \N    \N    \N    0    \N    \N    \N    \N    male
14002    Alfreda    Schumm    mariane@stokesferry.co    \N    Micronesia    Lake Rozellatown    81762 Collins Trail    41392    Wisconsin    2016-09-15 02:56:36.030741    2016-10-14 13:02:45.543568        \N    \N    \N    0    \N    \N    \N    \N    female
14003    Demarcus    Bernier    macy.becker@willms.com    \N    Romania    Jeremyborough    4572 Chad Lights    63691    Missouri    2016-08-09 11:48:42.300276    2016-10-14 13:02:45.552781        \N    \N    \N    0    \N    \N    \N    \N    female
14004    Nickolas    Hackett    mellie.kerluke@brakus.biz    \N    Taiwan    South Coralie    3220 Mya Turnpike    98447-0420    Pennsylvania    2016-07-04 17:17:23.163348    2016-10-14 13:02:45.563057        \N    \N    \N    0    \N    \N    \N    \N    female
14005    Alfonzo    Huel    beau@leuschke.com    \N    Ukraine    New Ariberg    4820 Parker Street    31143-4622    Massachusetts    2016-09-03 07:46:53.64612    2016-10-14 13:02:45.571494        \N    \N    \N    0    \N    \N    \N    \N    male
14006    Esmeralda    Davis    patience@moore.net    \N    United States Minor Outlying Islands    Josiannemouth    3242 Micheal Highway    76528    Pennsylvania    2016-08-26 10:39:49.854284    2016-10-14 13:02:45.579282        \N    \N    \N    0    \N    \N    \N    \N    female
14007    Ismael    Hammes    elyse@boehm.name    \N    Martinique    New Karianne    449 Klein View    65336-2796    Illinois    2016-07-18 22:16:45.844278    2016-10-14 13:02:45.596286        \N    \N    \N    0    \N    \N    \N    \N    female
14008    Ruth    Paucek    amira@lebsack.name    \N    Uzbekistan    Noahton    372 Daniel Points    16394    Arizona    2016-07-16 16:08:49.612529    2016-10-14 13:02:45.605725        \N    \N    \N    0    \N    \N    \N    \N    female
14009    Annette    Rau    henry.moore@haag.net    \N    Netherlands    East Carlo    20002 Quigley Fork    97925    Mississippi    2016-09-26 08:20:22.244015    2016-10-14 13:02:45.613045        \N    \N    \N    0    \N    \N    \N    \N    female
14010    Vickie    Schmitt    doyle@dibbert.org    \N    Benin    Port Tito    979 Windler Hill    84145-0416    Florida    2016-07-19 04:08:07.217228    2016-10-14 13:02:45.621843        \N    \N    \N    0    \N    \N    \N    \N    female
14011    Dina    Towne    krista@pollichcarter.info    \N    Latvia    South Zack    6759 Emmerich Mill    80543    Missouri    2016-07-24 00:56:32.014478    2016-10-14 13:02:45.628374        \N    \N    \N    0    \N    \N    \N    \N    male
14012    Shaun    Bailey    victor@hettinger.net    \N    American Samoa    Schambergershire    6658 Little Plain    72193    New Hampshire    2016-08-15 07:55:43.973652    2016-10-14 13:02:45.634969        \N    \N    \N    0    \N    \N    \N    \N    male
14013    Richmond    Padberg    mikayla.aufderhar@huel.biz    \N    United Kingdom    Asaview    1283 Schuster Lane    18108    South Carolina    2016-09-04 06:14:23.075464    2016-10-14 13:02:45.641007        \N    \N    \N    0    \N    \N    \N    \N    female
14014    Jake    Maggio    fabiola@corkery.info    \N    Bulgaria    West Leannaport    86619 Jacobson Heights    41630-2131    Minnesota    2016-07-22 20:39:34.565529    2016-10-14 13:02:45.645518        \N    \N    \N    0    \N    \N    \N    \N    male
14015    Tia    Waelchi    sean@jasthane.info    \N    Jamaica    West Adrianna    9276 Green Brooks    87146    Tennessee    2016-07-07 03:02:16.587741    2016-10-14 13:02:45.654308        \N    \N    \N    0    \N    \N    \N    \N    female
14016    Mortimer    Smith    reuben_davis@nikolaus.biz    \N    Christmas Island    Jacklynmouth    80907 Ethelyn Corners    32554    Maine    2016-08-13 12:54:53.317652    2016-10-14 13:02:45.659868        \N    \N    \N    0    \N    \N    \N    \N    female
14017    Alycia    Oberbrunner    domenico_osinski@wolf.info    \N    Turks and Caicos Islands    Rodrickborough    5116 Gabe Crossroad    48905    Oklahoma    2016-07-14 14:09:01.597609    2016-10-14 13:02:45.673343        \N    \N    \N    0    \N    \N    \N    \N    female
14018    Irma    Hauck    ephraim@jacobsongibson.name    \N    Libyan Arab Jamahiriya    VonRuedenbury    92006 Manuel Greens    51395-7833    New York    2016-06-23 23:02:45.715589    2016-10-14 13:02:45.686407        \N    \N    \N    0    \N    \N    \N    \N    male
14019    Anderson    Rohan    laurel.weimann@hettinger.biz    \N    Ukraine    New Peter    485 Elwin Tunnel    13893-7391    Hawaii    2016-07-31 20:05:47.108402    2016-10-14 13:02:45.693488        \N    \N    \N    0    \N    \N    \N    \N    male
14020    Cynthia    Hayes    jacinto_dibbert@willms.org    \N    Norfolk Island    North Elliotberg    2867 Rau Street    45280    Alaska    2016-09-27 04:51:44.765686    2016-10-14 13:02:45.703514        \N    \N    \N    0    \N    \N    \N    \N    male
14021    Wyman    Hane    porter_lehner@daugherty.co    \N    Zambia    Port Donnell    12673 Konopelski Village    24399    Colorado    2016-08-22 19:10:57.042633    2016-10-14 13:02:45.712939        \N    \N    \N    0    \N    \N    \N    \N    female
14022    Bud    Kuphal    carole.keeling@olson.org    \N    San Marino    Thielland    6839 Brody Burgs    44440    Arizona    2016-09-22 20:53:49.463743    2016-10-14 13:02:45.721793        \N    \N    \N    0    \N    \N    \N    \N    female
14023    Ruthe    Hand    citlalli_harvey@kirlinstracke.org    \N    Trinidad and Tobago    Mikemouth    5029 Savanna Valley    60995-6358    Alabama    2016-06-28 12:56:27.603209    2016-10-14 13:02:45.726767        \N    \N    \N    0    \N    \N    \N    \N    male
14453    Gracie    Morar    jamey@emard.com    \N    Cocos (Keeling) Islands    North Demarcus    275 Fisher Dale    81206    Maine    2016-09-09 04:17:26.822556    2016-10-14 13:02:45.733085        \N    \N    \N    0    \N    \N    \N    \N    male
14026    Tyler    Morissette    selena.baumbach@shieldpencer.name    \N    Afghanistan    East Quinten    954 Jermaine Burgs    77010    Indiana    2016-08-22 15:16:05.395819    2016-10-14 13:02:45.751738        \N    \N    \N    0    \N    \N    \N    \N    male
14027    Lexie    Nolan    heloise@bins.io    \N    Paraguay    Deckowfurt    819 Carmen Ridges    19057    New Hampshire    2016-09-14 10:18:22.381734    2016-10-14 13:02:45.758241        \N    \N    \N    0    \N    \N    \N    \N    male
14028    Lexie    Watsica    william.lynch@yost.io    \N    Comoros    Nicolaschester    363 Mosciski Center    76100    Illinois    2016-08-03 16:05:56.841022    2016-10-14 13:02:45.766412        \N    \N    \N    0    \N    \N    \N    \N    female
14029    Elmer    Orn    okey@marvin.co    \N    Russian Federation    West Henderson    92970 Hoppe Lock    19695    Illinois    2016-09-22 06:04:22.535067    2016-10-14 13:02:45.779733        \N    \N    \N    0    \N    \N    \N    \N    female
14030    Madisyn    Block    marvin@kirlinokeefe.biz    \N    Bahrain    New Brainview    893 Grant Highway    50362-5673    Alaska    2016-06-24 15:56:40.56063    2016-10-14 13:02:45.785171        \N    \N    \N    0    \N    \N    \N    \N    female
14031    Quentin    Rogahn    daron_bartell@breitenberg.org    \N    Saint Martin    Clovisshire    66308 Virgil Crossing    35996    Mississippi    2016-09-26 23:43:40.148014    2016-10-14 13:02:45.799669        \N    \N    \N    0    \N    \N    \N    \N    female
14032    Wiley    Breitenberg    brenda@padberg.co    \N    Sweden    Lake Kenton    1485 Lucie Isle    42506    Tennessee    2016-08-06 17:29:16.965689    2016-10-14 13:02:45.808437        \N    \N    \N    0    \N    \N    \N    \N    female
14033    Major    Wilderman    dock@bogan.org    \N    Costa Rica    Brakusside    4731 Tiana Prairie    62137    Georgia    2016-08-14 10:42:16.946733    2016-10-14 13:02:45.815512        \N    \N    \N    0    \N    \N    \N    \N    male
14034    Cassandre    Heller    antonette@halvorson.co    \N    Djibouti    New Chrismouth    1433 Kyleigh Cliffs    79739-6183    Indiana    2016-07-09 08:12:11.038002    2016-10-14 13:02:45.823635        \N    \N    \N    0    \N    \N    \N    \N    male
14035    Luna    Braun    ryder.welch@swaniawski.com    \N    Malta    North Lucienne    24323 Milton Cove    85361-3989    Vermont    2016-07-28 16:20:13.161586    2016-10-14 13:02:45.832635        \N    \N    \N    0    \N    \N    \N    \N    female
14036    Reva    Predovic    hal.berge@dubuquerunolfsdottir.net    \N    Northern Mariana Islands    Burleyshire    607 Katheryn Fords    52403-5326    Utah    2016-08-14 06:57:18.989309    2016-10-14 13:02:45.84576        \N    \N    \N    0    \N    \N    \N    \N    male
14037    Houston    Schimmel    anderson_dare@rau.com    \N    Vietnam    Lake Kayla    9168 Jaida Hollow    67741    Minnesota    2016-07-27 13:02:43.270836    2016-10-14 13:02:45.852875        \N    \N    \N    0    \N    \N    \N    \N    male
14038    Maida    Romaguera    carrie.koepp@thielaltenwerth.com    \N    Mauritius    Mavisbury    3966 Hickle Way    73497-9488    New Hampshire    2016-09-23 04:54:51.051913    2016-10-14 13:02:45.862713        \N    \N    \N    0    \N    \N    \N    \N    male
14039    Casimir    Gorczany    johann@beatty.co    \N    Timor-Leste    Kilbackview    7712 Reynolds Tunnel    48369    Arkansas    2016-09-09 05:07:11.918052    2016-10-14 13:02:45.869305        \N    \N    \N    0    \N    \N    \N    \N    male
14041    Edison    Wunsch    adriana_nikolaus@harber.biz    \N    Liberia    Laurenhaven    745 Doyle Key    96718-3209    Montana    2016-09-29 03:26:52.792041    2016-10-14 13:02:45.877512        \N    \N    \N    0    \N    \N    \N    \N    female
14042    Rafael    Ullrich    candido@rutherford.com    \N    Slovakia (Slovak Republic)    West Nelleland    5097 Adolf Rapids    99451-4119    Oregon    2016-08-24 13:28:53.613131    2016-10-14 13:02:45.885423        \N    \N    \N    0    \N    \N    \N    \N    male
14043    Lucinda    Lockman    johan.kling@wolf.com    \N    Mayotte    Beaumouth    2468 Abbott Path    97119    Montana    2016-07-02 13:51:29.081882    2016-10-14 13:02:45.902481        \N    \N    \N    0    \N    \N    \N    \N    male
14044    Keyshawn    Bergnaum    sibyl@jaskolskirodriguez.com    \N    Canada    Domenickland    66356 Mertz Locks    45798    Arkansas    2016-08-16 22:12:23.913921    2016-10-14 13:02:45.932886        \N    \N    \N    0    \N    \N    \N    \N    female
14045    Ila    Pollich    adriel.hauck@legros.io    \N    Macedonia    New Owen    40520 Jaylon Parkways    76167    New Mexico    2016-09-09 10:54:35.654844    2016-10-14 13:02:45.946228        \N    \N    \N    0    \N    \N    \N    \N    female
14046    Jeanne    Mante    karianne_stracke@collier.name    \N    Mauritania    Aracelifort    1802 Antonina Center    58828-8422    Connecticut    2016-07-11 12:24:54.861296    2016-10-14 13:02:45.953245        \N    \N    \N    0    \N    \N    \N    \N    female
14047    Kennedy    Borer    murray.walter@volkman.info    \N    Eritrea    East Emelyville    3556 Dustin Islands    50554    Delaware    2016-07-07 15:12:27.525298    2016-10-14 13:02:45.962437        \N    \N    \N    0    \N    \N    \N    \N    female
14216    Lavon    Gleason    shanelle@mohr.org    \N    Armenia    Eleanoraport    711 Leuschke Court    23456    New Hampshire    2016-09-03 02:12:38.036369    2016-10-14 13:02:45.978355        \N    \N    \N    0    \N    \N    \N    \N    male
14048    Jena    Lehner    damien.witting@macgyver.biz    \N    Bhutan    East Aliyachester    4257 Bobby Ramp    45316    Illinois    2016-09-12 19:47:54.293172    2016-10-14 13:02:45.99395        \N    \N    \N    0    \N    \N    \N    \N    female
14049    Noel    Medhurst    haylee@sporer.io    \N    Sweden    Herzogview    29897 Swaniawski Shoals    10464-0837    Wisconsin    2016-09-15 03:23:13.297894    2016-10-14 13:02:46.012735        \N    \N    \N    0    \N    \N    \N    \N    male
14050    Karley    Rodriguez    kraig_schulist@mcglynnweber.info    \N    Dominica    North Oren    13962 Dedric Dale    25262-7250    Kansas    2016-09-16 00:33:36.922157    2016-10-14 13:02:46.025626        \N    \N    \N    0    \N    \N    \N    \N    female
14051    Maci    Grimes    kasandra.stamm@pollich.name    \N    Mauritius    Creminmouth    2094 Jennings Alley    93679    Utah    2016-07-11 22:53:23.42096    2016-10-14 13:02:46.037157        \N    \N    \N    0    \N    \N    \N    \N    female
14052    Foster    Considine    kiel@rice.biz    \N    Lesotho    Port Bill    676 Rosario Shoal    18979-0726    Vermont    2016-08-19 23:04:42.732577    2016-10-14 13:02:46.050519        \N    \N    \N    0    \N    \N    \N    \N    male
14053    Louvenia    Lowe    elsa.runolfsdottir@welchcarroll.com    \N    Japan    West Marion    5754 Jakubowski Rapid    19732    Arizona    2016-07-04 15:31:25.082924    2016-10-14 13:02:46.066693        \N    \N    \N    0    \N    \N    \N    \N    male
14054    Ima    Senger    helga_gusikowski@lefflerkshlerin.co    \N    Mozambique    Lake Rachael    67279 Sigurd Cliff    98365-9728    North Dakota    2016-09-23 19:06:44.179885    2016-10-14 13:02:46.074278        \N    \N    \N    0    \N    \N    \N    \N    male
14055    Noemi    Jacobi    cory@effertzwhite.com    \N    Barbados    Angelmouth    7587 Meagan Loaf    11283-1939    New Mexico    2016-07-20 04:57:34.218928    2016-10-14 13:02:46.086535        \N    \N    \N    0    \N    \N    \N    \N    female
14056    Jaydon    McLaughlin    cordell.towne@wolffmarquardt.io    \N    Solomon Islands    Nitzschemouth    3727 Florida Trail    15343    Alaska    2016-07-20 08:04:26.950157    2016-10-14 13:02:46.098076        \N    \N    \N    0    \N    \N    \N    \N    female
14057    Dewitt    Bernhard    jeanie@langworth.name    \N    Turkey    West Roymouth    49094 Mina Ferry    30490-8426    Hawaii    2016-09-04 16:44:43.084163    2016-10-14 13:02:46.110885        \N    \N    \N    0    \N    \N    \N    \N    male
14058    Ruby    Will    griffin@oreilly.co    \N    Albania    North Madalinefort    263 Alexis Gardens    91870    Wyoming    2016-08-11 08:02:59.597482    2016-10-14 13:02:46.131474        \N    \N    \N    0    \N    \N    \N    \N    female
14059    Rosalinda    Hayes    antone.zulauf@smitham.io    \N    Mexico    East Guido    6081 Marco Via    67999    Illinois    2016-07-10 05:04:45.451647    2016-10-14 13:02:46.142443        \N    \N    \N    0    \N    \N    \N    \N    female
14060    Jazlyn    Wisozk    ro_streich@labadie.name    \N    Slovenia    Melvinview    181 Hagenes Vista    49801    Arizona    2016-09-27 05:51:15.337904    2016-10-14 13:02:46.15059        \N    \N    \N    0    \N    \N    \N    \N    male
14061    Josianne    Nienow    kamryn@schmitt.info    \N    Pakistan    South Eudorafort    1064 Vada Trace    76078-4179    Kansas    2016-08-27 06:59:15.889075    2016-10-14 13:02:46.155929        \N    \N    \N    0    \N    \N    \N    \N    male
14062    Maximillian    Deckow    aidan@pollich.io    \N    Venezuela    Uptonburgh    124 Rogers Inlet    77984-4310    Virginia    2016-08-11 07:31:05.907788    2016-10-14 13:02:46.163773        \N    \N    \N    0    \N    \N    \N    \N    male
14063    Madonna    Wiza    avis@mann.com    \N    Guadeloupe    Camronchester    7514 Elmira Fork    26149    North Dakota    2016-09-19 22:40:57.813263    2016-10-14 13:02:46.169632        \N    \N    \N    0    \N    \N    \N    \N    female
14065    Kadin    Farrell    lewis.durgan@wisozkklein.info    \N    Malaysia    McLaughlinberg    77567 Melyssa Circle    67887    Kansas    2016-09-25 09:27:37.931058    2016-10-14 13:02:46.175489        \N    \N    \N    0    \N    \N    \N    \N    male
14066    Heath    Kiehn    santa@schowalterframi.net    \N    Indonesia    East Elyssamouth    959 Bode Prairie    35763-4877    New York    2016-07-16 18:03:23.208798    2016-10-14 13:02:46.183075        \N    \N    \N    0    \N    \N    \N    \N    male
14067    Lucienne    Ferry    andrew_marvin@turcottevon.name    \N    Comoros    North Ileneland    373 Schuppe Green    21304    Nevada    2016-09-19 15:09:36.470366    2016-10-14 13:02:46.188659        \N    \N    \N    0    \N    \N    \N    \N    female
14068    Valentina    Wunsch    mikel_schuppe@bailey.biz    \N    Saint Kitts and Nevis    New Ava    813 Keeley Prairie    27129-5774    Illinois    2016-08-18 09:38:25.465004    2016-10-14 13:02:46.19508        \N    \N    \N    0    \N    \N    \N    \N    female
14069    Ahmad    Weber    rosa.effertz@miller.net    \N    Egypt    Port Cassandra    5560 Gottlieb Locks    64909    Michigan    2016-08-10 22:28:18.758276    2016-10-14 13:02:46.203359        \N    \N    \N    0    \N    \N    \N    \N    female
14070    Deanna    Casper    hattie@schumm.com    \N    United Kingdom    Erdmanfurt    93358 Shanon Forks    31708-9873    South Dakota    2016-09-24 15:50:47.453998    2016-10-14 13:02:46.211429        \N    \N    \N    0    \N    \N    \N    \N    female
14071    Bernie    Schamberger    stacy_marquardt@carroll.io    \N    Guinea    East Fredrick    27296 Willa Extension    31371    Delaware    2016-07-09 23:38:23.83132    2016-10-14 13:02:46.221143        \N    \N    \N    0    \N    \N    \N    \N    female
14072    Claudie    Streich    kadin.macejkovic@mclaughlingusikowski.name    \N    Kenya    New Bella    10897 Mayer Alley    46648    Florida    2016-08-12 15:54:09.799821    2016-10-14 13:02:46.231018        \N    \N    \N    0    \N    \N    \N    \N    male
14073    Abbigail    Mayer    toney@kulas.net    \N    Thailand    New Euniceburgh    75809 Laisha Rue    78644    Texas    2016-08-20 15:59:11.500324    2016-10-14 13:02:46.236651        \N    \N    \N    0    \N    \N    \N    \N    male
14074    Matteo    Ratke    earnestine@hartmannpredovic.name    \N    Norfolk Island    Clementinaside    834 Larson Gardens    31345    South Dakota    2016-07-26 04:49:52.489415    2016-10-14 13:02:46.245088        \N    \N    \N    0    \N    \N    \N    \N    female
14075    Mohamed    Lesch    stephen.runolfon@padberg.io    \N    Faroe Islands    West Raymundoport    39733 Amaya Station    23839    Idaho    2016-07-25 16:09:50.658464    2016-10-14 13:02:46.25298        \N    \N    \N    0    \N    \N    \N    \N    female
14076    Whitney    Buckridge    hardy_treutel@welch.biz    \N    Netherlands    East Alexanneton    69181 Ledner Walk    75369-0823    New Hampshire    2016-08-30 15:03:28.933406    2016-10-14 13:02:46.263169        \N    \N    \N    0    \N    \N    \N    \N    male
14077    Nigel    Pfeffer    bettie@pfeffer.net    \N    Northern Mariana Islands    Jacquesview    647 Little Light    63432    Rhode Island    2016-09-18 01:54:05.867955    2016-10-14 13:02:46.272421        \N    \N    \N    0    \N    \N    \N    \N    male
14079    Bobbie    Tremblay    amely.klocko@prohaskanitzsche.net    \N    Nauru    Lebsacktown    54675 Kendrick Bridge    97618    Alaska    2016-08-13 21:37:01.581797    2016-10-14 13:02:46.282781        \N    \N    \N    0    \N    \N    \N    \N    female
14080    Bernadine    Marks    shyann_dickinson@predovicritchie.name    \N    Maldives    Boganview    251 Burnice Unions    58310    Oregon    2016-08-03 17:30:16.841569    2016-10-14 13:02:46.294008        \N    \N    \N    0    \N    \N    \N    \N    female
14081    Jamal    Mraz    jey.bernier@ratke.biz    \N    Northern Mariana Islands    North Orrinside    7822 Brianne Coves    65101-9711    Alabama    2016-08-11 19:49:57.002878    2016-10-14 13:02:46.309468        \N    \N    \N    0    \N    \N    \N    \N    female
14082    Alyson    Hickle    dorothy_runte@herman.biz    \N    Estonia    South Mercedes    5758 McKenzie Pike    48370    North Dakota    2016-09-12 13:04:08.098213    2016-10-14 13:02:46.322573        \N    \N    \N    0    \N    \N    \N    \N    male
14083    Heloise    Robel    sheldon@mcdermott.co    \N    Sierra Leone    East Agustina    1788 Allen Isle    97333    Colorado    2016-08-11 22:32:17.040052    2016-10-14 13:02:46.331387        \N    \N    \N    0    \N    \N    \N    \N    female
14084    Bessie    Huel    yasmine_gleichner@schumm.org    \N    Cook Islands    Horacioberg    1506 Darrell Tunnel    16125    Mississippi    2016-08-12 03:24:29.35654    2016-10-14 13:02:46.343001        \N    \N    \N    0    \N    \N    \N    \N    female
14085    Korey    Streich    kristian@johns.io    \N    Seychelles    West Carole    229 Colby Wall    37997-2296    New Jersey    2016-07-28 04:06:35.098087    2016-10-14 13:02:46.350727        \N    \N    \N    0    \N    \N    \N    \N    male
14086    Abdiel    Rohan    addie@zemlakdamore.biz    \N    Tunisia    Lake Cynthia    467 Archibald Highway    16435    Georgia    2016-07-05 19:12:53.752526    2016-10-14 13:02:46.363702        \N    \N    \N    0    \N    \N    \N    \N    female
14087    Cordell    Nolan    sandy_tremblay@jaskolskigorczany.info    \N    Jamaica    Jarredhaven    33463 Sauer Flats    75890-0581    South Dakota    2016-09-09 12:09:16.239242    2016-10-14 13:02:46.376344        \N    \N    \N    0    \N    \N    \N    \N    female
14088    Jocelyn    Streich    rita.corwin@schiller.info    \N    Cayman Islands    North Garetthaven    754 Brown Stream    87145    Kansas    2016-07-10 00:52:26.395474    2016-10-14 13:02:46.384389        \N    \N    \N    0    \N    \N    \N    \N    female
14089    Juliet    Rau    brock@lueilwitz.co    \N    Venezuela    East Romaberg    56963 Roxane Prairie    30761-2815    Mississippi    2016-09-09 16:08:08.009879    2016-10-14 13:02:46.392473        \N    \N    \N    0    \N    \N    \N    \N    male
14090    Walter    Jaskolski    josefa_oconnell@harber.com    \N    Republic of Korea    New Marioborough    503 Libbie Junctions    60578    New Mexico    2016-07-13 12:06:49.701383    2016-10-14 13:02:46.404045        \N    \N    \N    0    \N    \N    \N    \N    female
14091    Arlie    Koelpin    brycen@grady.org    \N    Virgin Islands, U.S.    Heidenreichport    760 Dickens Lock    92090    Vermont    2016-07-25 11:19:12.27525    2016-10-14 13:02:46.410944        \N    \N    \N    0    \N    \N    \N    \N    male
14092    Thomas    Muller    nella@ritchiewillms.net    \N    Swaziland    Stromanfort    7342 Macy Falls    95776-6955    Rhode Island    2016-09-19 03:13:24.258492    2016-10-14 13:02:46.416937        \N    \N    \N    0    \N    \N    \N    \N    female
14093    Lyda    Wilkinson    brain.bogan@koch.co    \N    Wallis and Futuna    Alyciaport    592 Bogan Hollow    92570    Hawaii    2016-09-15 23:04:36.879879    2016-10-14 13:02:46.42351        \N    \N    \N    0    \N    \N    \N    \N    female
14094    Cecile    Stamm    monserrat@murazik.info    \N    Uganda    New Katlynnfurt    4585 Jazmyne Crest    98408-1038    Maine    2016-07-13 03:35:44.382454    2016-10-14 13:02:46.436013        \N    \N    \N    0    \N    \N    \N    \N    male
14095    Camryn    Roob    favian.predovic@mills.name    \N    United States Minor Outlying Islands    West Candace    4863 Edmund Cliff    55877    New York    2016-06-22 22:13:44.195153    2016-10-14 13:02:46.446577        \N    \N    \N    0    \N    \N    \N    \N    male
14096    Vaughn    McKenzie    darby@herzogthiel.org    \N    Finland    Dietrichshire    2726 Marks Spurs    96644-0489    Alabama    2016-09-20 06:28:37.214485    2016-10-14 13:02:46.45804        \N    \N    \N    0    \N    \N    \N    \N    male
11090    Michale    Moore    amira@blick.biz    \N    Gabon    Gislasonside    553 Kuhn Lakes    48554    Minnesota    2016-08-19 05:25:17.913263    2016-10-14 13:02:46.466731        \N    \N    \N    0    \N    \N    \N    \N    female
13304    Danial    Corkery    maye@cummerata.info    \N    Norway    Wittingbury    603 Batz Street    80817    Alaska    2016-09-16 04:28:37.387276    2016-10-14 13:02:46.478712        \N    \N    \N    0    \N    \N    \N    \N    male
14064    Fae    Yost    karelle@andersonkuvalis.com    \N    Gabon    North Kileyton    4291 Estell Turnpike    30237    New Jersey    2016-09-27 00:54:52.832436    2016-10-14 13:02:46.491549        \N    \N    \N    0    \N    \N    \N    \N    male
14097    Jason    Ondricka    magdalen_pfannerstill@ohara.org    \N    Seychelles    Port Perry    663 Brekke Summit    19747    Kentucky    2016-09-04 05:27:46.518244    2016-10-14 13:02:46.50466        \N    \N    \N    0    \N    \N    \N    \N    male
14098    Wyatt    Heathcote    chloe@mueller.info    \N    Timor-Leste    Hermannfurt    602 Jacobs Villages    61353    South Dakota    2016-06-25 20:41:50.684212    2016-10-14 13:02:46.511856        \N    \N    \N    0    \N    \N    \N    \N    male
14099    Minnie    Fahey    johathan@ondricka.info    \N    Syrian Arab Republic    North Corafort    7124 Blanda Radial    65172    New Mexico    2016-07-15 13:14:14.69713    2016-10-14 13:02:46.517807        \N    \N    \N    0    \N    \N    \N    \N    male
14100    Maddison    VonRueden    lila.larkin@mccullough.net    \N    Macao    East Carissa    28767 Graham Lodge    69143    Missouri    2016-06-28 22:25:56.084275    2016-10-14 13:02:46.52379        \N    \N    \N    0    \N    \N    \N    \N    male
14101    Myrtis    Gerlach    lelah.johns@labadie.name    \N    Puerto Rico    Metzmouth    7212 Oberbrunner Points    32373-6022    Michigan    2016-06-24 07:42:19.49683    2016-10-14 13:02:46.530381        \N    \N    \N    0    \N    \N    \N    \N    female
14102    Halie    Lesch    marley.kuhn@romaguera.info    \N    Sri Lanka    West Colten    1641 Dickens Manor    21020    Hawaii    2016-08-31 10:01:00.455448    2016-10-14 13:02:46.542376        \N    \N    \N    0    \N    \N    \N    \N    female
14103    Hayden    Weissnat    cameron_greenfelder@franecki.biz    \N    Afghanistan    South Levi    399 Marielle Forks    79609    New York    2016-07-12 14:54:19.357403    2016-10-14 13:02:46.551682        \N    \N    \N    0    \N    \N    \N    \N    male
14726    Shaylee    Frami    bridie.rice@kub.co    \N    Mozambique    Dasiaburgh    371 Gunner Way    74233-5759    Utah    2016-09-09 11:17:55.898362    2016-10-14 13:02:46.56407        \N    \N    \N    0    \N    \N    \N    \N    female
14104    Madisen    Gottlieb    adele_dare@hegmannkiehn.com    \N    Netherlands Antilles    Gislasonhaven    945 Henry Mountains    56148-3186    Idaho    2016-08-25 15:36:23.275694    2016-10-14 13:02:46.574799        \N    \N    \N    0    \N    \N    \N    \N    female
14105    Alyson    Willms    tatyana.crona@grantpacocha.org    \N    Saint Pierre and Miquelon    Majormouth    9609 Miguel Hills    65063    Georgia    2016-09-08 07:22:04.974366    2016-10-14 13:02:46.587532        \N    \N    \N    0    \N    \N    \N    \N    female
14106    Marshall    McDermott    quinn@boehm.com    \N    Belize    Greenfelderview    918 Thompson Mission    88289-7153    Wyoming    2016-07-04 05:35:49.645557    2016-10-14 13:02:46.603624        \N    \N    \N    0    \N    \N    \N    \N    female
14107    Mikel    Becker    brad@hyattconroy.com    \N    Madagascar    Rolfsonberg    36845 Kurtis Corner    21139-4095    Maryland    2016-07-17 03:33:16.30028    2016-10-14 13:02:46.619524        \N    \N    \N    0    \N    \N    \N    \N    male
14108    Christiana    Glover    marion@erdman.co    \N    Gabon    Wildermanmouth    86278 Skiles Parkways    54342    Louisiana    2016-06-29 17:29:26.160857    2016-10-14 13:02:46.627244        \N    \N    \N    0    \N    \N    \N    \N    female
14109    Manley    Morissette    evan@barrows.biz    \N    Macao    New Reilly    899 DuBuque Knoll    52854-1697    Tennessee    2016-06-27 18:03:28.381443    2016-10-14 13:02:46.638747        \N    \N    \N    0    \N    \N    \N    \N    female
14110    Franz    Fritsch    narciso_turner@heidenreich.io    \N    Saint Martin    Abigalefurt    77639 Johan Wells    54462    North Dakota    2016-09-07 20:32:53.896406    2016-10-14 13:02:46.650259        \N    \N    \N    0    \N    \N    \N    \N    male
14111    Brice    Quigley    guadalupe.wyman@prohaskagorczany.name    \N    Kiribati    Alanatown    37522 Ankunding Islands    14454    Idaho    2016-09-17 06:40:32.677466    2016-10-14 13:02:46.658936        \N    \N    \N    0    \N    \N    \N    \N    female
14112    Franz    Emard    bria_auer@keebler.io    \N    Guinea-Bissau    Gerholdside    47218 Freeman Corner    76524-5316    South Dakota    2016-09-17 21:59:32.852396    2016-10-14 13:02:46.670636        \N    \N    \N    0    \N    \N    \N    \N    male
14113    Tyra    Anderson    emery_wisozk@gutmann.name    \N    Chad    Kovacekborough    2674 Isidro Manors    24580    Wisconsin    2016-07-26 19:44:03.176615    2016-10-14 13:02:46.681675        \N    \N    \N    0    \N    \N    \N    \N    female
14114    Ida    DuBuque    jennyfer_schiller@breitenberg.com    \N    Cape Verde    Port Eden    2675 Gabrielle Canyon    58594    Illinois    2016-08-06 21:24:29.278263    2016-10-14 13:02:46.686617        \N    \N    \N    0    \N    \N    \N    \N    female
14115    Dale    Torp    wilhelmine.lang@sipes.net    \N    Brunei Darussalam    New Alvahland    6238 Bogan Ridge    35794-4908    Louisiana    2016-09-07 00:33:47.88047    2016-10-14 13:02:46.698597        \N    \N    \N    0    \N    \N    \N    \N    female
14116    Oscar    Becker    teagan_lesch@streich.name    \N    Pakistan    Nathanhaven    75379 Farrell Cliff    42744-6906    Alabama    2016-08-10 03:58:42.706864    2016-10-14 13:02:46.715053        \N    \N    \N    0    \N    \N    \N    \N    female
14117    Ed    Doyle    leonel@oreilly.net    \N    Christmas Island    New Chad    76990 Glover Course    25125    New Jersey    2016-08-19 00:35:10.578312    2016-10-14 13:02:46.722501        \N    \N    \N    0    \N    \N    \N    \N    female
14118    Shanna    Grady    joshuah_hudson@jakubowski.biz    \N    Sweden    New Bricechester    34274 Hegmann Point    53983-5247    New Hampshire    2016-09-02 17:46:43.32397    2016-10-14 13:02:46.732112        \N    \N    \N    0    \N    \N    \N    \N    female
14120    Carolina    Barrows    cora@jast.net    \N    Burundi    Reynoldsborough    4095 Julia Bridge    35236    Delaware    2016-09-07 16:25:11.401849    2016-10-14 13:02:46.742461        \N    \N    \N    0    \N    \N    \N    \N    female
14121    Lisandro    Crona    mia@lefflerblock.com    \N    Virgin Islands, British    Port Silasport    21832 Macie Gateway    95001    Ohio    2016-09-02 20:08:28.781837    2016-10-14 13:02:46.756241        \N    \N    \N    0    \N    \N    \N    \N    female
14122    Dena    Roob    orin@gorczanyleannon.biz    \N    Namibia    Faustinofort    26437 Carlos Stream    91899    Oregon    2016-09-10 10:50:52.89848    2016-10-14 13:02:46.764375        \N    \N    \N    0    \N    \N    \N    \N    male
14123    Beulah    Hintz    euna.huels@davis.co    \N    British Indian Ocean Territory (Chagos Archipelago)    West Rosieshire    33963 Macejkovic Overpass    60982    Texas    2016-09-20 09:04:03.701044    2016-10-14 13:02:46.775193        \N    \N    \N    0    \N    \N    \N    \N    male
14124    Lyla    Yundt    adeline@binsohara.co    \N    Tunisia    South Leslyside    214 Ezequiel Course    74201-8449    Indiana    2016-09-22 02:57:46.839417    2016-10-14 13:02:46.781067        \N    \N    \N    0    \N    \N    \N    \N    male
14125    Kiera    Langosh    columbus.west@gleichner.io    \N    Trinidad and Tobago    Jessikaview    64338 Giles Locks    60653-5968    Maine    2016-07-05 23:01:33.901529    2016-10-14 13:02:46.789599        \N    \N    \N    0    \N    \N    \N    \N    male
14126    Ashtyn    Grady    claudia@hegmann.name    \N    American Samoa    South Jaquanburgh    10077 Stiedemann Overpass    93786-6866    Tennessee    2016-09-17 07:07:10.863627    2016-10-14 13:02:46.797241        \N    \N    \N    0    \N    \N    \N    \N    female
14127    Joelle    Kutch    raoul@nicolasdouglas.name    \N    Andorra    Bernardostad    399 Mayert Passage    88383    Kentucky    2016-09-16 21:15:14.290052    2016-10-14 13:02:46.811899        \N    \N    \N    0    \N    \N    \N    \N    female
14129    Clara    Fahey    brock@sporer.biz    \N    Cambodia    Port Omariton    51705 Morissette Pass    27774-9803    Hawaii    2016-08-04 03:13:49.224837    2016-10-14 13:02:46.819871        \N    \N    \N    0    \N    \N    \N    \N    female
14130    Catharine    Torphy    carlos@dickinson.biz    \N    Switzerland    East Bernitastad    749 O'Conner Shoals    30218    Missouri    2016-08-13 15:31:49.671364    2016-10-14 13:02:46.826985        \N    \N    \N    0    \N    \N    \N    \N    male
14131    Ethelyn    Stiedemann    cordelia@walsh.io    \N    Equatorial Guinea    Providencichester    8503 Bartoletti Prairie    37446-5860    Alabama    2016-09-13 21:25:50.475579    2016-10-14 13:02:46.834943        \N    \N    \N    0    \N    \N    \N    \N    female
14132    Afton    Graham    vito@crist.io    \N    Saudi Arabia    Lerafort    2859 Vanessa Coves    95150    California    2016-08-12 10:04:29.610637    2016-10-14 13:02:46.841813        \N    \N    \N    0    \N    \N    \N    \N    male
14133    Selena    Kuhn    macy_terry@sporerdurgan.org    \N    Mayotte    South Augustus    21471 Arnulfo Overpass    82581    Oklahoma    2016-09-10 04:11:20.163531    2016-10-14 13:02:46.849136        \N    \N    \N    0    \N    \N    \N    \N    male
14134    Afton    Lehner    israel.satterfield@bergnaumfarrell.com    \N    Morocco    South Mohammadchester    9973 Schuppe Centers    91509    Montana    2016-08-23 10:33:13.631126    2016-10-14 13:02:46.855586        \N    \N    \N    0    \N    \N    \N    \N    male
14135    Ludwig    Casper    maya_denesik@ritchie.biz    \N    Monaco    Derekfurt    3221 Crona Mount    47330    Alabama    2016-08-10 00:54:17.752595    2016-10-14 13:02:46.864273        \N    \N    \N    0    \N    \N    \N    \N    female
14136    Johann    Kautzer    annamarie_jacobs@fisherrodriguez.net    \N    Namibia    West Rahul    5504 Laury Field    16892-9948    New Hampshire    2016-09-17 07:28:14.849714    2016-10-14 13:02:46.871609        \N    \N    \N    0    \N    \N    \N    \N    male
14137    Maryse    Braun    jermey_nitzsche@white.biz    \N    Sao Tome and Principe    Denaburgh    996 Mraz Station    77694    Nevada    2016-07-23 15:29:14.501495    2016-10-14 13:02:46.88261        \N    \N    \N    0    \N    \N    \N    \N    male
14138    Makenzie    McLaughlin    cordia.herman@rogahn.info    \N    Sao Tome and Principe    Taliaview    78704 Sawayn Loop    84970-9761    North Dakota    2016-09-27 20:55:35.460172    2016-10-14 13:02:46.890197        \N    \N    \N    0    \N    \N    \N    \N    male
14139    Vivienne    Lockman    emmanuelle@miller.com    \N    Hong Kong    Hyattfurt    1500 Emmanuel Greens    63087-2013    Wyoming    2016-09-20 19:23:28.265416    2016-10-14 13:02:46.898806        \N    \N    \N    0    \N    \N    \N    \N    female
14140    Aubree    D'Amore    maeve@gleasonbernier.co    \N    Afghanistan    Port Oren    919 Ryan Rapid    86319    Missouri    2016-07-22 06:14:32.212895    2016-10-14 13:02:46.908729        \N    \N    \N    0    \N    \N    \N    \N    male
14141    Demond    Mayer    josue@gorczanybartell.org    \N    Trinidad and Tobago    East Lela    80009 Asha Plain    40563    Missouri    2016-08-01 22:09:49.278089    2016-10-14 13:02:46.918236        \N    \N    \N    0    \N    \N    \N    \N    male
14142    Reilly    Price    stephania@reichert.biz    \N    Djibouti    Port Brigitteville    793 Jasmin Shoal    74918-2008    Connecticut    2016-07-08 05:43:29.817749    2016-10-14 13:02:46.923719        \N    \N    \N    0    \N    \N    \N    \N    female
14143    Scotty    Schoen    javon_bosco@vonrueden.net    \N    Guam    New Jeanne    8967 Maximus Coves    55699    North Carolina    2016-07-10 11:22:45.154318    2016-10-14 13:02:46.933189        \N    \N    \N    0    \N    \N    \N    \N    male
14144    Meghan    Rempel    queenie@rippin.net    \N    Singapore    East Bonnie    6858 Cathy Path    46923    Maryland    2016-06-23 02:30:57.641987    2016-10-14 13:02:46.942591        \N    \N    \N    0    \N    \N    \N    \N    male
14145    Jennifer    Romaguera    savanah@sengermacgyver.info    \N    Maldives    East Halie    2484 Gunnar Vista    25638-2941    Delaware    2016-09-25 04:56:13.405771    2016-10-14 13:02:46.958356        \N    \N    \N    0    \N    \N    \N    \N    male
14146    Ernestina    Becker    jordi@croninkonopelski.biz    \N    Samoa    Hauckside    94796 Madge Flats    81281-2151    Utah    2016-08-04 03:57:06.17054    2016-10-14 13:02:46.969326        \N    \N    \N    0    \N    \N    \N    \N    female
14147    Gordon    Schmidt    grant@oberbrunner.org    \N    Republic of Korea    West Brentmouth    358 Ortiz Island    16346-0375    Maryland    2016-09-08 23:21:21.122693    2016-10-14 13:02:46.981305        \N    \N    \N    0    \N    \N    \N    \N    male
14148    Heidi    Morar    brian@rodriguez.name    \N    Uganda    North Isombury    67861 Bins Locks    92790    Rhode Island    2016-06-29 02:41:04.61631    2016-10-14 13:02:46.993913        \N    \N    \N    0    \N    \N    \N    \N    female
14149    Veda    Von    fredrick.fay@terry.co    \N    Heard Island and McDonald Islands    Jameyburgh    90943 Walter Plaza    35601    Maine    2016-07-04 22:41:46.046726    2016-10-14 13:02:47.006897        \N    \N    \N    0    \N    \N    \N    \N    female
14150    Candida    Klein    tiara.torphy@altenwerth.io    \N    Niue    East Jaydafurt    7781 Howell Well    20963    Florida    2016-09-27 08:48:00.342151    2016-10-14 13:02:47.016272        \N    \N    \N    0    \N    \N    \N    \N    male
14151    John    Bergnaum    reuben_harris@wisozkmedhurst.io    \N    Saint Vincent and the Grenadines    Gorczanytown    8393 Hilpert Vista    10052-9943    Texas    2016-09-24 11:24:24.188998    2016-10-14 13:02:47.023459        \N    \N    \N    0    \N    \N    \N    \N    female
14152    Chris    Klein    sophie@feest.com    \N    Nigeria    West Kraig    75548 Denesik Plaza    29577    Nevada    2016-08-04 23:14:03.981597    2016-10-14 13:02:47.034013        \N    \N    \N    0    \N    \N    \N    \N    female
14153    Rowena    Heller    eugenia.sauer@wisozkshields.io    \N    Israel    Port Leonorhaven    764 Titus Junctions    76796-0705    Texas    2016-09-17 17:05:54.657868    2016-10-14 13:02:47.042832        \N    \N    \N    0    \N    \N    \N    \N    female
14154    Jerrold    Rodriguez    martin_nienow@balistrerihamill.info    \N    Latvia    North Jacques    354 Alvina Locks    22031    Pennsylvania    2016-06-28 21:05:34.384912    2016-10-14 13:02:47.050179        \N    \N    \N    0    \N    \N    \N    \N    male
14155    Gregory    Conn    maximillian.casper@monahan.io    \N    Cuba    New Carlottaside    8561 Spencer Street    69061    Maryland    2016-06-22 21:03:41.381968    2016-10-14 13:02:47.057606        \N    \N    \N    0    \N    \N    \N    \N    male
14156    Nickolas    Balistreri    amani_lockman@veum.net    \N    Bangladesh    East Stephanie    1349 Halvorson Drive    10150-9005    North Carolina    2016-09-04 11:38:15.2899    2016-10-14 13:02:47.064747        \N    \N    \N    0    \N    \N    \N    \N    female
14157    Stan    Koepp    manuel@johnstonprice.co    \N    Guam    Juliannemouth    73301 Quinton Mission    70668-3408    Alaska    2016-07-05 00:55:11.269069    2016-10-14 13:02:47.070916        \N    \N    \N    0    \N    \N    \N    \N    female
14158    Peggie    Sanford    lilla.green@yostromaguera.name    \N    Jersey    Queenstad    29954 April Island    78276    California    2016-07-03 06:24:55.465995    2016-10-14 13:02:47.076563        \N    \N    \N    0    \N    \N    \N    \N    male
14159    Elsa    Langworth    cecilia_leffler@lueilwitz.net    \N    Haiti    Maryjanestad    274 Wisozk Way    29232    Virginia    2016-07-22 10:44:13.487863    2016-10-14 13:02:47.082676        \N    \N    \N    0    \N    \N    \N    \N    male
14160    Estrella    Murray    jaron@wisozkbeier.io    \N    Seychelles    New Larry    51411 Conn Plain    41766    Massachusetts    2016-07-20 09:50:48.009959    2016-10-14 13:02:47.08761        \N    \N    \N    0    \N    \N    \N    \N    male
14161    Bertha    Emmerich    randy@luettgen.co    \N    Macao    North Elizabeth    60691 Wilhelmine Throughway    94313-1865    Minnesota    2016-07-04 12:41:27.214274    2016-10-14 13:02:47.105053        \N    \N    \N    0    \N    \N    \N    \N    male
14162    Clarabelle    Hansen    lamont.crist@haley.biz    \N    Germany    Russelton    51781 Fritsch Stream    74883-8887    Wisconsin    2016-09-23 13:56:21.117472    2016-10-14 13:02:47.111701        \N    \N    \N    0    \N    \N    \N    \N    male
14163    Tavares    Greenholt    reilly_williamson@damorebayer.name    \N    Canada    East Ernestine    2141 Jenifer Route    51969    Minnesota    2016-09-01 03:11:11.752686    2016-10-14 13:02:47.118176        \N    \N    \N    0    \N    \N    \N    \N    female
14164    Colby    Connelly    ila@collinsgrimes.name    \N    Tokelau    Lake Betty    4784 Prohaska Viaduct    68961-1676    Maryland    2016-09-04 11:50:13.631823    2016-10-14 13:02:47.130042        \N    \N    \N    0    \N    \N    \N    \N    female
14166    Brain    Schuster    christine.goyette@ortiz.co    \N    India    Hicklefort    66806 Lou Track    72311-9926    Utah    2016-07-25 15:46:35.912648    2016-10-14 13:02:47.136463        \N    \N    \N    0    \N    \N    \N    \N    female
14167    Ian    Barton    jakob@swaniawski.info    \N    Norway    Kirlinstad    546 Hackett Union    30473-8058    Georgia    2016-08-31 10:24:32.207417    2016-10-14 13:02:47.146267        \N    \N    \N    0    \N    \N    \N    \N    male
14169    Mara    Prosacco    tate_olson@hilll.biz    \N    Israel    Ayanaberg    71323 Richie Forks    84923    Kentucky    2016-09-13 10:45:01.463868    2016-10-14 13:02:47.152972        \N    \N    \N    0    \N    \N    \N    \N    female
14170    Arne    Armstrong    alene@veum.org    \N    Georgia    Wunschside    2374 Edgar Causeway    83410-8070    Kansas    2016-06-28 11:44:31.671326    2016-10-14 13:02:47.157783        \N    \N    \N    0    \N    \N    \N    \N    female
14171    Floy    Schneider    lauren@hills.name    \N    Niger    Kuhnburgh    8214 Nathanial Knolls    52498-5080    North Carolina    2016-08-04 10:36:23.270444    2016-10-14 13:02:47.162449        \N    \N    \N    0    \N    \N    \N    \N    male
14173    Claude    Rath    angelita_kunde@kunde.info    \N    Palestinian Territory    East Jacefurt    29723 Daron Oval    37073    Arkansas    2016-09-16 20:19:43.946059    2016-10-14 13:02:47.169673        \N    \N    \N    0    \N    \N    \N    \N    female
14174    Liam    Schamberger    oma_wolff@fadelhermann.com    \N    Moldova    Port Xavier    8918 Angeline Stream    72613    Louisiana    2016-07-07 16:13:41.29977    2016-10-14 13:02:47.175568        \N    \N    \N    0    \N    \N    \N    \N    female
14175    Laura    Rau    chesley@dach.org    \N    Samoa    North Jayneland    423 Efren Fall    93774-3933    Connecticut    2016-06-23 22:30:40.958366    2016-10-14 13:02:47.183138        \N    \N    \N    0    \N    \N    \N    \N    male
14176    Bianka    Smitham    desiree_bradtke@yost.info    \N    El Salvador    Bauchshire    298 Stokes Burg    50172-2334    North Dakota    2016-08-06 10:14:36.53665    2016-10-14 13:02:47.18811        \N    \N    \N    0    \N    \N    \N    \N    male
14177    Natasha    Herzog    beth_hegmann@davis.co    \N    Panama    Metzberg    16944 Jaydon Stream    58377-7988    Arkansas    2016-09-16 10:48:57.504784    2016-10-14 13:02:47.194014        \N    \N    \N    0    \N    \N    \N    \N    female
14178    Devon    Collier    mireya@schulist.com    \N    Gabon    McDermottfurt    499 O'Conner Glens    41885    Washington    2016-06-30 22:19:47.457428    2016-10-14 13:02:47.198564        \N    \N    \N    0    \N    \N    \N    \N    female
14179    Garrick    Wunsch    jade@oreillyflatley.info    \N    Northern Mariana Islands    Lake Dylanview    472 Janis Walk    99400    Utah    2016-08-23 22:05:42.377652    2016-10-14 13:02:47.203158        \N    \N    \N    0    \N    \N    \N    \N    female
14180    Christa    Anderson    mark_roob@ebert.org    \N    Mayotte    Port Alberta    690 America Summit    29040-8808    Arkansas    2016-06-25 18:26:40.814641    2016-10-14 13:02:47.212943        \N    \N    \N    0    \N    \N    \N    \N    male
14181    Leo    Goyette    deangelo@mclaughlin.com    \N    Nicaragua    West Julianaville    4791 Larissa Rapid    90595-5388    Delaware    2016-07-11 19:18:48.918309    2016-10-14 13:02:47.218025        \N    \N    \N    0    \N    \N    \N    \N    male
14183    Estell    Raynor    conner@mclaughlin.org    \N    Burundi    Schillermouth    111 Frieda Street    88135    Minnesota    2016-07-09 01:16:20.418061    2016-10-14 13:02:47.222512        \N    \N    \N    0    \N    \N    \N    \N    male
14184    Brad    Barton    clovis@framipacocha.co    \N    Andorra    North Mellie    328 Beatrice Canyon    77255    Missouri    2016-08-15 02:44:17.032566    2016-10-14 13:02:47.227065        \N    \N    \N    0    \N    \N    \N    \N    male
14185    Leon    Hoeger    bernie.sawayn@cartwright.com    \N    Greenland    Weldonton    740 Brandyn Prairie    62287-9808    Louisiana    2016-09-20 02:55:35.743142    2016-10-14 13:02:47.231345        \N    \N    \N    0    \N    \N    \N    \N    female
14186    Fern    Altenwerth    andy_gulgowski@stantonconroy.io    \N    Peru    Yasminefort    86573 Jovani Crest    59255    Pennsylvania    2016-07-24 18:07:57.403993    2016-10-14 13:02:47.23673        \N    \N    \N    0    \N    \N    \N    \N    male
14187    Everett    Tillman    mateo.langosh@eichmann.info    \N    Sao Tome and Principe    New Izaiah    4712 Cloyd Park    18083-2683    Vermont    2016-08-19 05:26:10.952921    2016-10-14 13:02:47.241428        \N    \N    \N    0    \N    \N    \N    \N    male
14188    Delphia    Zulauf    sharon.grady@waelchi.co    \N    Colombia    Allyland    40875 Adams Ford    46975-9637    Montana    2016-09-22 13:07:10.438916    2016-10-14 13:02:47.245791        \N    \N    \N    0    \N    \N    \N    \N    female
14189    Torey    Stehr    kaycee.heller@paucek.net    \N    New Zealand    Seanchester    981 Aliza Prairie    48169-7247    Kentucky    2016-09-02 18:14:43.078737    2016-10-14 13:02:47.249956        \N    \N    \N    0    \N    \N    \N    \N    male
14190    Bailey    McKenzie    gianni_lesch@weinat.co    \N    Cayman Islands    Sauerville    60529 Norberto Isle    20008-8363    Ohio    2016-07-13 23:26:28.321839    2016-10-14 13:02:47.254918        \N    \N    \N    0    \N    \N    \N    \N    male
14191    Harrison    Reinger    elva@hackett.org    \N    San Marino    East Walker    89421 Kassulke Manors    59107-3239    Texas    2016-07-25 03:22:17.604648    2016-10-14 13:02:47.260455        \N    \N    \N    0    \N    \N    \N    \N    male
14192    Vesta    Runolfsdottir    zaria@bogan.net    \N    Burundi    Nitzscheton    76150 Denesik Bridge    41423-4380    Colorado    2016-09-09 01:53:25.571308    2016-10-14 13:02:47.265455        \N    \N    \N    0    \N    \N    \N    \N    male
14193    Neil    Shields    owen@gaylord.org    \N    Mauritania    Lorenzoberg    94074 Daniel Alley    16178-7122    Oklahoma    2016-09-19 04:22:24.166681    2016-10-14 13:02:47.269728        \N    \N    \N    0    \N    \N    \N    \N    male
14194    Meagan    Langosh    riley.paucek@cole.io    \N    Netherlands    New Lilyan    66012 O'Connell Court    84435-5044    West Virginia    2016-07-04 23:49:07.673111    2016-10-14 13:02:47.274324        \N    \N    \N    0    \N    \N    \N    \N    female
14195    Estella    Douglas    benedict_paucek@heathcote.info    \N    Palestinian Territory    New Taryn    4868 Schmitt River    94914-5644    Kansas    2016-08-16 15:00:48.39677    2016-10-14 13:02:47.278934        \N    \N    \N    0    \N    \N    \N    \N    male
14196    Marianna    Rice    adrien@kihn.biz    \N    Tokelau    Jadynfurt    4336 Graham Branch    21519    West Virginia    2016-09-29 09:28:18.419516    2016-10-14 13:02:47.283808        \N    \N    \N    0    \N    \N    \N    \N    male
14197    Hadley    Abernathy    lexus_gleason@bruenspencer.net    \N    Egypt    Keelingmouth    2258 Francesca Streets    64947    Massachusetts    2016-08-13 04:10:35.478946    2016-10-14 13:02:47.289224        \N    \N    \N    0    \N    \N    \N    \N    male
14198    Johanna    Streich    maybell@feest.net    \N    Monaco    Koelpinshire    5060 Thiel Summit    86303    Louisiana    2016-09-10 07:50:58.76702    2016-10-14 13:02:47.294994        \N    \N    \N    0    \N    \N    \N    \N    male
14199    Leatha    Leffler    annie@welch.name    \N    Bouvet Island (Bouvetoya)    VonRuedenshire    58865 Hagenes Burg    37120-7221    Oregon    2016-07-25 09:39:40.455531    2016-10-14 13:02:47.299634        \N    \N    \N    0    \N    \N    \N    \N    female
14200    Reva    Jakubowski    gretchen_mosciski@hammeskovacek.io    \N    French Southern Territories    Johnpaulview    6416 Karson Street    40915-3919    Virginia    2016-08-16 14:15:44.909027    2016-10-14 13:02:47.30399        \N    \N    \N    0    \N    \N    \N    \N    male
14201    Keenan    Rolfson    leonora@ortizfisher.biz    \N    Malawi    South Adonis    907 Funk Ranch    15524-9866    Kentucky    2016-07-15 19:42:00.713206    2016-10-14 13:02:47.308376        \N    \N    \N    0    \N    \N    \N    \N    female
14202    Skylar    Kautzer    kyra_rau@hoppefritsch.co    \N    San Marino    Joycetown    7043 Prosacco Port    69317-3296    Michigan    2016-09-06 10:38:50.929011    2016-10-14 13:02:47.314386        \N    \N    \N    0    \N    \N    \N    \N    female
14203    Santa    Jacobs    walter@franecki.name    \N    Puerto Rico    Gradyview    9209 Candace Crest    12675    New Jersey    2016-08-18 12:44:08.444222    2016-10-14 13:02:47.31926        \N    \N    \N    0    \N    \N    \N    \N    male
14204    Jean    Kling    micah@heller.org    \N    Puerto Rico    Starktown    56370 Carter Haven    82260-3242    Virginia    2016-06-22 14:52:07.41873    2016-10-14 13:02:47.323748        \N    \N    \N    0    \N    \N    \N    \N    male
14205    Darien    Bartoletti    guido@strosin.co    \N    Republic of Korea    North Dario    5801 O'Kon Manor    97833-9756    New Mexico    2016-07-28 11:11:39.050798    2016-10-14 13:02:47.328664        \N    \N    \N    0    \N    \N    \N    \N    female
14206    Wilma    Ortiz    mayra@sanfordbednar.com    \N    Lao People's Democratic Republic    Corwinmouth    96278 Chandler Avenue    56006-0983    Indiana    2016-07-28 01:12:44.167776    2016-10-14 13:02:47.33323        \N    \N    \N    0    \N    \N    \N    \N    female
14207    Hadley    Quitzon    laurianne@heaney.co    \N    Western Sahara    Lake Thaddeuston    41735 Stanton Coves    42194    North Dakota    2016-06-22 21:03:44.22516    2016-10-14 13:02:47.337747        \N    \N    \N    0    \N    \N    \N    \N    female
14208    Sylvan    Barton    calista@reilly.biz    \N    Eritrea    Reichertshire    709 Mafalda Rest    55630-6580    Alaska    2016-09-08 11:19:06.415905    2016-10-14 13:02:47.342778        \N    \N    \N    0    \N    \N    \N    \N    male
14209    Lonnie    Champlin    kallie_berge@heaney.org    \N    Chad    Schroederville    35988 Leonel Groves    17354    Maryland    2016-08-03 15:04:41.120092    2016-10-14 13:02:47.357916        \N    \N    \N    0    \N    \N    \N    \N    female
14210    Dusty    Sanford    abbie@beermills.io    \N    Liberia    New Tesstown    139 Kunze Forest    54902-7342    North Dakota    2016-09-27 13:10:04.999907    2016-10-14 13:02:47.362392        \N    \N    \N    0    \N    \N    \N    \N    female
14211    Zoila    Koss    gaetano_williamson@wehnerfritsch.co    \N    Turks and Caicos Islands    Balistreribury    3575 Eula Point    71124-8630    Arizona    2016-09-21 22:48:54.565673    2016-10-14 13:02:47.367434        \N    \N    \N    0    \N    \N    \N    \N    male
14212    Orland    Maggio    ana.thompson@rippinklocko.biz    \N    Wallis and Futuna    Mohrmouth    977 Goldner Lane    85551-5980    Hawaii    2016-07-13 09:39:09.207761    2016-10-14 13:02:47.372563        \N    \N    \N    0    \N    \N    \N    \N    male
14213    Sadie    Hoppe    kristoffer.prosacco@klocko.info    \N    Sao Tome and Principe    East Antonio    9475 Schaden Radial    42079    Delaware    2016-07-02 06:22:11.41415    2016-10-14 13:02:47.380725        \N    \N    \N    0    \N    \N    \N    \N    female
14214    Ottilie    McCullough    brooklyn@upton.com    \N    Dominican Republic    Emmerichfurt    17358 Jensen Canyon    51142    Illinois    2016-08-01 04:23:37.988994    2016-10-14 13:02:47.385417        \N    \N    \N    0    \N    \N    \N    \N    male
14215    Ervin    Krajcik    elody@gislason.biz    \N    Algeria    Lake Quintonville    41448 Barton Wall    57028    Nevada    2016-08-02 12:26:59.569406    2016-10-14 13:02:47.389697        \N    \N    \N    0    \N    \N    \N    \N    female
14217    Lowell    Leannon    reba_turcotte@pollichkautzer.info    \N    Brunei Darussalam    Port Guadalupehaven    5385 Volkman Mountains    42826-4056    Hawaii    2016-07-07 01:30:28.079646    2016-10-14 13:02:47.394207        \N    \N    \N    0    \N    \N    \N    \N    male
14218    Jada    Willms    verlie_reinger@graham.net    \N    Australia    Murrayfurt    6757 Dickens Ranch    60506-3488    Virginia    2016-09-02 18:15:42.282371    2016-10-14 13:02:47.399008        \N    \N    \N    0    \N    \N    \N    \N    male
14219    Tristian    Rohan    domenick@langworthpredovic.info    \N    Guinea    South Jewell    80863 Ulises Points    79191-4548    Minnesota    2016-09-09 09:15:52.419602    2016-10-14 13:02:47.404029        \N    \N    \N    0    \N    \N    \N    \N    male
14220    Schuyler    Herzog    koby@nicolasgrady.co    \N    Guinea    New Tyrique    320 Kole Court    97275-5924    Ohio    2016-07-13 10:24:04.533732    2016-10-14 13:02:47.413784        \N    \N    \N    0    \N    \N    \N    \N    male
14221    Marlene    Kub    yasmeen@wolfharris.com    \N    Monaco    Dorcasville    677 Koepp Pine    55701-3417    South Dakota    2016-08-03 01:48:46.340904    2016-10-14 13:02:47.422698        \N    \N    \N    0    \N    \N    \N    \N    female
14222    Archibald    Daugherty    nakia@bodemorar.com    \N    Namibia    Domenicofurt    13066 Keeling Trafficway    68736-7790    New York    2016-09-24 11:23:45.144925    2016-10-14 13:02:47.432721        \N    \N    \N    0    \N    \N    \N    \N    female
14223    Jude    Ankunding    brisa@friesen.biz    \N    Bulgaria    Lake Lynnport    77557 Mayer Ville    65156    West Virginia    2016-08-15 14:07:51.798088    2016-10-14 13:02:47.439995        \N    \N    \N    0    \N    \N    \N    \N    male
14224    Alice    Kiehn    rick.kunde@mooreprosacco.co    \N    Armenia    Cobyburgh    413 Ziemann Branch    75145-2715    Maryland    2016-08-12 18:39:36.186786    2016-10-14 13:02:47.448208        \N    \N    \N    0    \N    \N    \N    \N    female
14225    Jeramie    Abernathy    nichole@armstrong.info    \N    Turks and Caicos Islands    Port Bryon    25511 Alysson Path    24954    Louisiana    2016-08-25 13:42:08.16232    2016-10-14 13:02:47.462304        \N    \N    \N    0    \N    \N    \N    \N    female
14226    Mitchel    Wunsch    pierce.cain@davis.info    \N    Pakistan    New Marlenview    21108 Watsica Trail    34668-6372    Mississippi    2016-09-09 16:50:01.923247    2016-10-14 13:02:47.502647        \N    \N    \N    0    \N    \N    \N    \N    female
14227    Delaney    Gottlieb    adolph_douglas@abshirerau.net    \N    Bermuda    Lemkeport    89123 Jaclyn Turnpike    62093    North Carolina    2016-09-20 23:08:14.60582    2016-10-14 13:02:47.508427        \N    \N    \N    0    \N    \N    \N    \N    female
14228    Beverly    Stiedemann    alexa@wisoky.name    \N    Peru    Wisokystad    44710 Milford Canyon    73857-7734    Ohio    2016-07-25 07:06:42.251838    2016-10-14 13:02:47.516806        \N    \N    \N    0    \N    \N    \N    \N    female
14229    Woodrow    Runolfsson    alisha@oconner.io    \N    Estonia    Connerstad    4936 Greenfelder Points    65871    North Dakota    2016-09-23 00:10:08.004993    2016-10-14 13:02:47.529624        \N    \N    \N    0    \N    \N    \N    \N    female
14230    Laverna    Harber    xzavier_gutmann@bashirian.name    \N    Saint Helena    New Wiley    2853 Macejkovic Greens    70013    Alabama    2016-07-10 09:44:34.389782    2016-10-14 13:02:47.536223        \N    \N    \N    0    \N    \N    \N    \N    male
14231    Giovanny    Daniel    laurianne_damore@farrellhahn.biz    \N    Turkey    North Darioport    25919 Brenna Lodge    19616-4704    Wisconsin    2016-09-24 04:21:34.712208    2016-10-14 13:02:47.543702        \N    \N    \N    0    \N    \N    \N    \N    male
14232    Brenden    Thiel    estella@whitebins.net    \N    Monaco    West Sherwood    7494 Runolfsson Centers    48897-1425    New Hampshire    2016-08-18 10:04:39.7521    2016-10-14 13:02:47.550608        \N    \N    \N    0    \N    \N    \N    \N    female
14233    Newton    Cassin    tyrese.abshire@murazik.io    \N    American Samoa    South Alayna    4866 Welch Plains    71904    Kentucky    2016-08-15 01:08:58.767635    2016-10-14 13:02:47.55913        \N    \N    \N    0    \N    \N    \N    \N    male
14234    Carleton    O'Kon    geovany_schumm@lindkrajcik.biz    \N    Russian Federation    Candelariostad    264 Jenkins Expressway    91370-1680    Texas    2016-06-30 08:03:44.090095    2016-10-14 13:02:47.568247        \N    \N    \N    0    \N    \N    \N    \N    male
14235    Willy    Weissnat    trinity@treutel.net    \N    Guadeloupe    Santosport    6985 Jensen Falls    84259    New Mexico    2016-09-03 22:14:56.636742    2016-10-14 13:02:47.578911        \N    \N    \N    0    \N    \N    \N    \N    male
14236    Greyson    Tromp    wilhelmine_leuschke@fisherrau.net    \N    Lebanon    East Mavisborough    222 Kurt Spurs    28486-5115    Louisiana    2016-08-15 23:45:42.038646    2016-10-14 13:02:47.603364        \N    \N    \N    0    \N    \N    \N    \N    female
14237    Lyla    Schuster    mireya@denesiklemke.co    \N    Mauritania    Gloverview    888 Kian Views    67727    Vermont    2016-07-16 07:44:51.173099    2016-10-14 13:02:47.61186        \N    \N    \N    0    \N    \N    \N    \N    male
14238    Buddy    Streich    abdullah@wildermanhauck.io    \N    Haiti    East Jany    7289 Emmerich Walk    79684    Maryland    2016-09-14 12:07:47.059403    2016-10-14 13:02:47.623748        \N    \N    \N    0    \N    \N    \N    \N    male
14240    Amir    Dickinson    wendell@kunde.name    \N    Finland    Collinsfort    910 Amos Burgs    97229-9297    South Carolina    2016-09-12 06:32:38.566188    2016-10-14 13:02:47.644841        \N    \N    \N    0    \N    \N    \N    \N    male
14241    Clifford    Smith    payton@buckridge.biz    \N    Bhutan    Lake Brentbury    6814 Sienna Way    91774    Utah    2016-08-14 21:56:34.548666    2016-10-14 13:02:47.658951        \N    \N    \N    0    \N    \N    \N    \N    female
14242    Ethyl    Ondricka    elinor@emmerichharber.com    \N    Zambia    North Laurianne    585 Sheldon Shoals    26763-4028    California    2016-09-17 09:04:49.916316    2016-10-14 13:02:47.667988        \N    \N    \N    0    \N    \N    \N    \N    female
14243    Trace    Casper    santino@nolan.co    \N    Namibia    Lueilwitzhaven    88204 Macejkovic Shoals    18760-4739    Nevada    2016-08-03 23:20:37.606218    2016-10-14 13:02:47.679279        \N    \N    \N    0    \N    \N    \N    \N    male
14244    Luz    Ankunding    isabelle@lemke.net    \N    Turks and Caicos Islands    New Madisen    761 Micaela Port    29092    Mississippi    2016-08-17 17:49:40.491196    2016-10-14 13:02:47.690553        \N    \N    \N    0    \N    \N    \N    \N    male
14245    Lacey    Lebsack    rusty@roobheidenreich.org    \N    Grenada    New Camren    29422 Eriberto Ford    19078-9204    New Jersey    2016-09-01 15:37:27.971954    2016-10-14 13:02:47.723478        \N    \N    \N    0    \N    \N    \N    \N    female
14246    Jerome    Bayer    eleanora@larson.org    \N    Palestinian Territory    Braunmouth    518 Rowe Hills    51741-3975    Washington    2016-08-20 12:07:28.837471    2016-10-14 13:02:47.743263        \N    \N    \N    0    \N    \N    \N    \N    female
14247    Raphaelle    Johnson    brad@hyatt.info    \N    Sao Tome and Principe    East Abelardoport    1264 Little Way    78043    California    2016-06-27 20:19:06.971628    2016-10-14 13:02:47.747964        \N    \N    \N    0    \N    \N    \N    \N    female
14248    Prince    Willms    alberto@borer.info    \N    Cyprus    Lake Judsonville    792 Johathan Loaf    48629    Arkansas    2016-06-25 08:18:52.29394    2016-10-14 13:02:47.752725        \N    \N    \N    0    \N    \N    \N    \N    male
14249    Alicia    Pfeffer    art@hoppe.io    \N    Micronesia    Lake Elianeview    50929 Kassulke Highway    11128    Kentucky    2016-06-26 11:44:15.036892    2016-10-14 13:02:47.757734        \N    \N    \N    0    \N    \N    \N    \N    female
14250    Lilliana    Weber    everette@williamsonkerluke.info    \N    New Zealand    Breannaland    5725 Lamont Viaduct    30687-0403    Connecticut    2016-07-17 23:46:40.465728    2016-10-14 13:02:47.766649        \N    \N    \N    0    \N    \N    \N    \N    female
14251    Clinton    Dare    raheem_schmeler@fritsch.com    \N    Monaco    Emileview    7321 O'Keefe Knoll    68410    Pennsylvania    2016-06-29 01:14:30.340077    2016-10-14 13:02:47.772722        \N    \N    \N    0    \N    \N    \N    \N    female
14252    Dovie    Lindgren    herminia@mckenzie.info    \N    South Georgia and the South Sandwich Islands    Millertown    25672 Muller Fork    10027    Oregon    2016-07-19 17:01:21.333119    2016-10-14 13:02:47.783379        \N    \N    \N    0    \N    \N    \N    \N    male
14253    Daron    Rutherford    alene_morar@toytremblay.co    \N    Comoros    South Nico    27893 Kling Island    69833-3142    Texas    2016-06-27 06:55:13.460778    2016-10-14 13:02:47.798425        \N    \N    \N    0    \N    \N    \N    \N    female
14254    Joy    Spinka    malinda_gulgowski@torp.io    \N    Jersey    Dareport    5099 Hegmann Divide    20403    Montana    2016-09-20 01:40:18.594289    2016-10-14 13:02:47.805071        \N    \N    \N    0    \N    \N    \N    \N    male
14255    Lenore    Leuschke    kameron_nikolaus@langworth.io    \N    Virgin Islands, U.S.    South Makenna    37991 McCullough Rapids    83529-9297    Delaware    2016-07-22 22:10:39.580257    2016-10-14 13:02:47.816647        \N    \N    \N    0    \N    \N    \N    \N    male
14256    Jeffery    Nader    michel@grimechiller.net    \N    Israel    Larsonberg    349 Bailey Roads    91987    Tennessee    2016-09-29 04:33:15.663417    2016-10-14 13:02:47.829377        \N    \N    \N    0    \N    \N    \N    \N    male
14257    Samanta    Ward    lyla.walker@wilderman.io    \N    Virgin Islands, British    Mohrfort    1020 Homenick Passage    95013    Iowa    2016-09-01 20:37:16.259659    2016-10-14 13:02:47.842607        \N    \N    \N    0    \N    \N    \N    \N    male
14259    Lucinda    VonRueden    vernice.thiel@pouros.co    \N    Gabon    Port Donna    228 Schneider Summit    83937-1760    Missouri    2016-08-16 06:45:18.962304    2016-10-14 13:02:47.856746        \N    \N    \N    0    \N    \N    \N    \N    male
14260    Florida    Monahan    brice@johnston.co    \N    Lao People's Democratic Republic    Sawaynhaven    438 Goyette Springs    17615    South Carolina    2016-09-29 09:24:35.491995    2016-10-14 13:02:47.875619        \N    \N    \N    0    \N    \N    \N    \N    female
14261    Cary    Goldner    london_blick@kulamith.info    \N    Timor-Leste    Port Stephonberg    740 Wilton Crossroad    20030-5417    Kentucky    2016-09-26 09:47:46.568674    2016-10-14 13:02:47.894925        \N    \N    \N    0    \N    \N    \N    \N    female
14262    Elisha    Glover    skyla@reichert.co    \N    Marshall Islands    Reichertberg    12572 Greenfelder Meadow    75994    Missouri    2016-07-28 21:59:32.256359    2016-10-14 13:02:47.906606        \N    \N    \N    0    \N    \N    \N    \N    male
14263    Ona    Jacobson    nigel@murazik.org    \N    Vietnam    Port Jorgefurt    1561 Beer Bridge    85780    Illinois    2016-09-08 23:28:04.025992    2016-10-14 13:02:47.927173        \N    \N    \N    0    \N    \N    \N    \N    female
14264    Vicky    Hane    hazel_mills@howell.org    \N    Canada    McDermottchester    1775 Gorczany Port    33461-7663    Nebraska    2016-07-25 20:01:48.268302    2016-10-14 13:02:47.936182        \N    \N    \N    0    \N    \N    \N    \N    male
14265    Marcelle    Gulgowski    fletcher@purdy.info    \N    Qatar    Port Jacquelyn    67600 Hoeger Freeway    88922    Oklahoma    2016-06-22 22:58:32.454043    2016-10-14 13:02:47.94906        \N    \N    \N    0    \N    \N    \N    \N    male
14266    Vivian    Funk    antonetta_donnelly@schummstanton.io    \N    Tanzania    South Lydiahaven    17979 Darryl Station    94446-1902    Alabama    2016-09-16 11:17:26.212821    2016-10-14 13:02:47.963226        \N    \N    \N    0    \N    \N    \N    \N    female
14267    Gaston    Gleason    wiley@altenwerth.io    \N    Qatar    East Howardside    701 Eli Extensions    42185    Georgia    2016-06-25 12:33:02.356525    2016-10-14 13:02:47.976543        \N    \N    \N    0    \N    \N    \N    \N    female
14268    Alexandrea    Wilkinson    abbey_hegmann@predovicokuneva.com    \N    Dominican Republic    New Imeldashire    252 Mitchell Islands    80686    Colorado    2016-09-16 15:28:46.280368    2016-10-14 13:02:47.99017        \N    \N    \N    0    \N    \N    \N    \N    female
14269    Tristin    Daniel    marion_deckow@kozeyzieme.org    \N    Reunion    Easterport    60027 Cassin Roads    99453-5799    Rhode Island    2016-06-22 23:55:27.977131    2016-10-14 13:02:48.000189        \N    \N    \N    0    \N    \N    \N    \N    male
14270    Kendra    Skiles    alivia@runtehyatt.io    \N    Haiti    Yasminmouth    5923 Jammie Path    82117-4875    Nebraska    2016-08-10 20:13:32.301971    2016-10-14 13:02:48.022008        \N    \N    \N    0    \N    \N    \N    \N    male
11449    Candice    D'Amore    jane@bailey.co    \N    Zimbabwe    West Ed    99079 Robb Trafficway    58256    Missouri    2016-08-11 02:02:10.169389    2016-10-14 13:02:48.038143        \N    \N    \N    0    \N    \N    \N    \N    female
13749    Lera    Moore    tamia@sporer.biz    \N    Puerto Rico    West Lois    72640 Aidan Row    27435    Maine    2016-08-08 17:57:10.574652    2016-10-14 13:02:48.046088        \N    \N    \N    0    \N    \N    \N    \N    female
14239    Rolando    Koch    rasheed@durgan.org    \N    Togo    Mayertville    98706 Koch Roads    43818-1363    Arkansas    2016-09-18 03:40:58.166445    2016-10-14 13:02:48.097353        \N    \N    \N    0    \N    \N    \N    \N    female
14271    Evelyn    Lubowitz    ollie.marks@emmerich.io    \N    Yemen    Audreyport    887 Dell Views    71081-6079    New York    2016-07-28 09:19:35.672229    2016-10-14 13:02:48.140269        \N    \N    \N    0    \N    \N    \N    \N    female
14272    Lesly    Kreiger    dannie@emmerich.co    \N    Falkland Islands (Malvinas)    West Joaquin    706 Fritsch Prairie    92998-1517    Washington    2016-09-11 12:55:12.559027    2016-10-14 13:02:48.167042        \N    \N    \N    0    \N    \N    \N    \N    female
14273    Nick    Bernier    walker@cruickshanktoy.info    \N    Aruba    East Rosettaborough    849 Jo Landing    52350-1962    Arizona    2016-08-06 01:07:36.376859    2016-10-14 13:02:48.189891        \N    \N    \N    0    \N    \N    \N    \N    female
14274    Lavern    Brekke    ron.roberts@thiel.io    \N    Cuba    Dorcasside    7586 Cathy Fort    49176-4091    Utah    2016-07-12 17:19:48.695069    2016-10-14 13:02:48.200442        \N    \N    \N    0    \N    \N    \N    \N    female
14275    Richie    Johnston    jazmyn@hartmann.biz    \N    Slovakia (Slovak Republic)    East Gennaro    28718 Donnelly Mount    50953    Massachusetts    2016-08-25 16:26:32.376091    2016-10-14 13:02:48.212298        \N    \N    \N    0    \N    \N    \N    \N    female
14276    Esther    Adams    edwina@gusikowski.name    \N    Malaysia    North Darryl    37240 Cole Rest    72923-4695    Utah    2016-07-01 12:08:05.823209    2016-10-14 13:02:48.231856        \N    \N    \N    0    \N    \N    \N    \N    female
14277    Braulio    Hills    floyd_klocko@shanahanbuckridge.com    \N    Pitcairn Islands    Port Stacey    429 Sawayn Trail    79751-5235    Wyoming    2016-08-19 09:23:55.878704    2016-10-14 13:02:48.251814        \N    \N    \N    0    \N    \N    \N    \N    male
14278    Clay    Wehner    rosina_pacocha@bayerjerde.org    \N    Somalia    Rustyfort    64032 Mertz Drive    37591    West Virginia    2016-09-07 20:30:56.229204    2016-10-14 13:02:48.263666        \N    \N    \N    0    \N    \N    \N    \N    male
14279    Friedrich    O'Keefe    carroll_abbott@collins.name    \N    Norway    New Kassandrachester    758 Mann Isle    63552-3022    Florida    2016-08-08 20:31:48.172878    2016-10-14 13:02:48.283646        \N    \N    \N    0    \N    \N    \N    \N    male
14280    Filomena    Monahan    sigrid.leuschke@prohaska.com    \N    Paraguay    Karolannchester    60696 Ziemann Drives    99466    Pennsylvania    2016-07-03 13:21:57.131581    2016-10-14 13:02:48.325786        \N    \N    \N    0    \N    \N    \N    \N    female
15178    Delaney    Prohaska    tom.ward@gleason.io    \N    Poland    South Lexie    592 Tia Extensions    78466    Maine    2016-09-12 13:47:21.228258    2016-10-14 13:02:48.350576        \N    \N    \N    0    \N    \N    \N    \N    male
14281    Anissa    Heaney    macey.grady@murphybecker.com    \N    Congo    Dorthachester    7184 Runolfsdottir Mews    38983-0812    Kansas    2016-07-24 06:59:57.391542    2016-10-14 13:02:48.363096        \N    \N    \N    0    \N    \N    \N    \N    female
14282    Darion    McCullough    mable_upton@watsica.biz    \N    Cayman Islands    New Savanah    932 Fredy Spurs    84818-6821    Louisiana    2016-09-11 20:56:16.600029    2016-10-14 13:02:48.380955        \N    \N    \N    0    \N    \N    \N    \N    male
14283    Remington    Price    dortha.haley@hirtheauer.net    \N    Malawi    Kianland    3474 Neha Orchard    17461-3349    Delaware    2016-07-09 04:10:44.842706    2016-10-14 13:02:48.420187        \N    \N    \N    0    \N    \N    \N    \N    male
14284    Wendell    Jacobi    dejuan@hamill.io    \N    Vietnam    South Eddchester    9578 Ayla Pass    12697    Georgia    2016-08-16 13:04:44.003582    2016-10-14 13:02:48.43968        \N    \N    \N    0    \N    \N    \N    \N    female
14285    Emiliano    Bahringer    ephraim@hudsonglover.co    \N    Fiji    Dockburgh    8959 Dock Coves    88976-3029    Arizona    2016-07-16 13:58:35.746635    2016-10-14 13:02:48.466768        \N    \N    \N    0    \N    \N    \N    \N    male
14286    Willa    Johnson    ashlynn.monahan@turner.com    \N    Bangladesh    Pricemouth    235 Roberts Pines    70765-3210    Colorado    2016-07-02 15:16:15.827543    2016-10-14 13:02:48.488146        \N    \N    \N    0    \N    \N    \N    \N    male
14287    Felipa    Krajcik    dominic@considinehagenes.org    \N    Heard Island and McDonald Islands    Cruickshankburgh    77035 Altenwerth Trace    90312    New York    2016-07-10 13:00:34.815953    2016-10-14 13:02:48.500058        \N    \N    \N    0    \N    \N    \N    \N    male
14288    Ellis    Kulas    winifred@cainhagenes.name    \N    Saint Pierre and Miquelon    Vickyville    8914 Wuckert Street    23269    Mississippi    2016-09-26 21:14:37.578387    2016-10-14 13:02:48.506758        \N    \N    \N    0    \N    \N    \N    \N    female
14289    Scotty    Davis    marta@predovic.co    \N    Kenya    Grahamborough    117 Brown Gateway    78851-2828    Missouri    2016-08-15 10:37:48.915165    2016-10-14 13:02:48.516652        \N    \N    \N    0    \N    \N    \N    \N    male
14290    Lydia    Crona    francisca.langworth@dickinson.net    \N    Mayotte    Grimesburgh    48519 Flatley Plaza    52097    Oklahoma    2016-09-11 02:23:35.489411    2016-10-14 13:02:48.523601        \N    \N    \N    0    \N    \N    \N    \N    male
14291    Emelie    West    nelle@davis.net    \N    Haiti    Gottliebside    9296 Kozey Ways    28088-7984    Maryland    2016-09-02 07:20:52.09478    2016-10-14 13:02:48.53042        \N    \N    \N    0    \N    \N    \N    \N    male
14292    Myra    Macejkovic    green_runolfon@smitham.co    \N    Cayman Islands    North Florinehaven    883 Lockman Grove    86538    Alabama    2016-07-29 14:09:30.000165    2016-10-14 13:02:48.551164        \N    \N    \N    0    \N    \N    \N    \N    male
14293    Piper    Heidenreich    kelly.daugherty@schmidt.name    \N    Svalbard & Jan Mayen Islands    South Yvetteland    75577 Dickinson View    42299-2852    North Dakota    2016-08-23 14:30:42.003182    2016-10-14 13:02:48.567169        \N    \N    \N    0    \N    \N    \N    \N    male
14294    Vilma    Quitzon    ashleigh.gleichner@nader.name    \N    Timor-Leste    North Hester    217 Maybell Rapid    19827-5118    South Carolina    2016-08-26 14:48:01.805053    2016-10-14 13:02:48.578815        \N    \N    \N    0    \N    \N    \N    \N    female
14295    Elisa    Christiansen    edison@dach.co    \N    Senegal    Elvisside    796 Pink Fords    40726-4313    Virginia    2016-08-17 19:40:30.383181    2016-10-14 13:02:48.589109        \N    \N    \N    0    \N    \N    \N    \N    female
14296    Eulalia    Skiles    triston@ledner.name    \N    Christmas Island    Aubreyville    354 Leonor Harbor    50675    Iowa    2016-07-21 13:51:59.477062    2016-10-14 13:02:48.601475        \N    \N    \N    0    \N    \N    \N    \N    female
14297    Meaghan    Bernier    olen.donnelly@westdietrich.co    \N    Seychelles    East Kacie    21229 Morar Summit    19948    Mississippi    2016-07-25 07:52:43.282543    2016-10-14 13:02:48.611536        \N    \N    \N    0    \N    \N    \N    \N    male
14298    Loma    Kilback    jed@skiles.info    \N    Cuba    New Catharine    73383 Lolita Glens    18799    Ohio    2016-08-06 05:12:36.302629    2016-10-14 13:02:48.620368        \N    \N    \N    0    \N    \N    \N    \N    female
14299    Jayde    Kertzmann    madonna@pfannerstill.co    \N    Denmark    Lake Damien    852 Mario Trail    18277    Minnesota    2016-09-24 10:53:54.245079    2016-10-14 13:02:48.635357        \N    \N    \N    0    \N    \N    \N    \N    male
14300    Susanna    Ruecker    keegan@swaniawski.com    \N    Rwanda    South Idatown    4637 Clarabelle Garden    56678    Oklahoma    2016-07-24 04:00:28.741246    2016-10-14 13:02:48.642845        \N    \N    \N    0    \N    \N    \N    \N    male
14301    Jazmin    Ledner    victor@jacobskozey.com    \N    Nigeria    New Nicolasmouth    5850 Pearl Bridge    48692-4731    Minnesota    2016-08-31 16:01:20.381258    2016-10-14 13:02:48.654543        \N    \N    \N    0    \N    \N    \N    \N    female
14302    Matilde    Boyer    mavis@yost.co    \N    Sudan    Lake Ricardoton    2123 O'Reilly Roads    74783-6593    Oregon    2016-08-23 22:33:29.288979    2016-10-14 13:02:48.662761        \N    \N    \N    0    \N    \N    \N    \N    female
14304    Edmund    Renner    cedrick_batz@raynor.com    \N    Uruguay    Matildetown    609 Layne Center    94056    Virginia    2016-09-02 22:00:16.291835    2016-10-14 13:02:48.672645        \N    \N    \N    0    \N    \N    \N    \N    female
14305    Tremayne    Nikolaus    tiara.schmidt@leannonko.io    \N    Cyprus    West General    76720 Lila Cape    70539    New York    2016-09-29 10:55:40.500046    2016-10-14 13:02:48.689927        \N    \N    \N    0    \N    \N    \N    \N    male
14306    Letha    Kulas    emma.miller@walker.info    \N    Falkland Islands (Malvinas)    West Khalil    195 Vivienne Cliffs    16711-6224    Ohio    2016-07-08 23:51:48.137529    2016-10-14 13:02:48.704779        \N    \N    \N    0    \N    \N    \N    \N    male
14307    Julius    Wiza    ahmad_dubuque@creminschuppe.net    \N    Philippines    Gulgowskiville    59793 Gerlach Plains    30731-7149    Iowa    2016-09-14 05:05:21.203623    2016-10-14 13:02:48.737352        \N    \N    \N    0    \N    \N    \N    \N    male
14308    Angelina    McGlynn    adonis_friesen@kunze.co    \N    Canada    North Vernonberg    717 Vena Ways    13909    Utah    2016-07-16 09:59:48.031941    2016-10-14 13:02:48.763221        \N    \N    \N    0    \N    \N    \N    \N    male
14309    Natasha    Dietrich    madie@oconnellcollier.com    \N    Virgin Islands, U.S.    Kundeport    249 Rippin Field    66822    Nevada    2016-09-19 18:21:04.311664    2016-10-14 13:02:48.783427        \N    \N    \N    0    \N    \N    \N    \N    female
14310    Coralie    Roberts    irma_ryan@ankundingjacobs.com    \N    Kyrgyz Republic    Kozeyhaven    5523 Karley Fields    51439-9368    Massachusetts    2016-07-06 17:32:39.602475    2016-10-14 13:02:48.802504        \N    \N    \N    0    \N    \N    \N    \N    male
14311    Gail    D'Amore    lacy@weber.co    \N    Taiwan    Maymiechester    6295 Reilly Meadows    17645-6433    Montana    2016-09-05 15:30:49.679756    2016-10-14 13:02:48.818567        \N    \N    \N    0    \N    \N    \N    \N    male
14459    Oswald    Johnson    marco_hand@vandervort.net    \N    Maldives    Kennediside    986 Crist Summit    81396-1402    Virginia    2016-07-03 15:41:27.73941    2016-10-14 13:02:48.829405        \N    \N    \N    0    \N    \N    \N    \N    male
14312    Marco    McClure    valentina.will@koelpinkerluke.net    \N    South Georgia and the South Sandwich Islands    Kirlinberg    9047 Casper Trail    64617-6881    Delaware    2016-08-02 04:30:34.17973    2016-10-14 13:02:48.839754        \N    \N    \N    0    \N    \N    \N    \N    female
14313    Westley    Parisian    adrienne@graham.net    \N    Myanmar    Krisfort    19336 Filomena Garden    35237-8048    Montana    2016-09-16 13:05:52.455263    2016-10-14 13:02:48.845326        \N    \N    \N    0    \N    \N    \N    \N    male
14314    Enrique    Schuster    briana@mraz.io    \N    South Africa    Lake Mackenzieberg    26036 Helmer Locks    13974-6011    New Mexico    2016-09-28 03:31:52.758683    2016-10-14 13:02:48.851752        \N    \N    \N    0    \N    \N    \N    \N    male
14315    Bernard    Effertz    simeon_roob@cartwrightkertzmann.net    \N    Tuvalu    Solonville    89435 Mohr Glen    83196    Louisiana    2016-07-18 22:19:41.748841    2016-10-14 13:02:48.856984        \N    \N    \N    0    \N    \N    \N    \N    male
14316    Brendon    Paucek    jailyn@koepptoy.com    \N    Barbados    South Destinee    174 Rosalyn Locks    11885    Washington    2016-08-18 01:18:08.353878    2016-10-14 13:02:48.863608        \N    \N    \N    0    \N    \N    \N    \N    female
14317    Alexandrea    Gorczany    marianna_baumbach@kohler.name    \N    Slovakia (Slovak Republic)    West Milofurt    620 Coty Springs    79610    Delaware    2016-07-16 16:26:44.166519    2016-10-14 13:02:48.869519        \N    \N    \N    0    \N    \N    \N    \N    female
14318    Elenor    Jacobs    remington@shanahan.net    \N    Latvia    Dameonmouth    3688 Predovic Inlet    14868-2478    Washington    2016-07-30 22:18:52.547557    2016-10-14 13:02:48.87427        \N    \N    \N    0    \N    \N    \N    \N    female
14319    Adele    Hermiston    ally_altenwerth@medhurstfranecki.net    \N    Mongolia    East Coralie    56044 Bashirian Forge    30224-6263    South Carolina    2016-09-03 05:45:17.065161    2016-10-14 13:02:48.878832        \N    \N    \N    0    \N    \N    \N    \N    female
14320    Tyrel    Collier    nina_mitchell@corkery.io    \N    Chad    East Maribelberg    115 Trevion Mount    11856-5788    Arkansas    2016-08-16 10:14:16.522543    2016-10-14 13:02:48.883362        \N    \N    \N    0    \N    \N    \N    \N    female
14321    Tia    Volkman    natalia@mills.com    \N    Cote d'Ivoire    New Timmy    84404 Danny Ridges    85541-0088    South Dakota    2016-08-18 12:28:51.045691    2016-10-14 13:02:48.888145        \N    \N    \N    0    \N    \N    \N    \N    female
14697    Myles    Cummerata    daphnee@keebler.biz    \N    Palau    East Cecelia    33257 Russel Courts    33746    Oklahoma    2016-07-19 03:39:56.099286    2016-10-14 13:02:51.612801        \N    \N    \N    0    \N    \N    \N    \N    female
14322    Ladarius    Wilderman    nakia@mclaughlinweimann.name    \N    Haiti    East Mercedeshaven    8643 Otilia Extension    35452    West Virginia    2016-09-09 19:16:03.989197    2016-10-14 13:02:48.894606        \N    \N    \N    0    \N    \N    \N    \N    male
14323    Levi    Abernathy    olga_jaskolski@kiehnhansen.name    \N    Saint Lucia    Louietown    188 Fisher Common    91213    New York    2016-08-05 09:19:31.996759    2016-10-14 13:02:48.899165        \N    \N    \N    0    \N    \N    \N    \N    male
14325    Jarrett    Hills    flavie_waters@abbottwintheiser.info    \N    Equatorial Guinea    Carterport    470 Kilback Ranch    37413    Ohio    2016-07-12 19:30:08.895855    2016-10-14 13:02:48.903537        \N    \N    \N    0    \N    \N    \N    \N    male
14326    Rebekah    Thompson    krystal.stark@kirlin.co    \N    Colombia    East Danikaberg    6619 Herzog Highway    24385-5319    California    2016-07-12 23:57:15.068822    2016-10-14 13:02:48.914871        \N    \N    \N    0    \N    \N    \N    \N    female
14327    Kathlyn    Deckow    johnson@maggiothompson.org    \N    French Polynesia    New Aditya    654 Melyssa Garden    70151    Wyoming    2016-07-13 20:42:37.223728    2016-10-14 13:02:48.926592        \N    \N    \N    0    \N    \N    \N    \N    female
14692    Lucinda    Toy    camilla@blick.co    \N    Panama    Dallinstad    548 Carroll Springs    71733    Rhode Island    2016-08-07 03:34:42.376864    2016-10-14 13:02:48.932584        \N    \N    \N    0    \N    \N    \N    \N    female
14328    Lisandro    Ernser    bulah_windler@mcculloughoreilly.io    \N    South Africa    Mabelleton    278 Catharine Groves    68758    Nevada    2016-08-06 16:05:21.285995    2016-10-14 13:02:48.948942        \N    \N    \N    0    \N    \N    \N    \N    male
14329    Anya    Steuber    micheal@weinatdeckow.name    \N    Cyprus    Rosellaport    456 Parker Locks    82265-8441    Montana    2016-07-08 14:35:44.72691    2016-10-14 13:02:48.962483        \N    \N    \N    0    \N    \N    \N    \N    female
14330    Maurice    Streich    schuyler@anderson.org    \N    Honduras    West Tavaresville    236 Rossie Station    53082-5887    Michigan    2016-08-25 19:10:18.315809    2016-10-14 13:02:48.971825        \N    \N    \N    0    \N    \N    \N    \N    male
14331    Maurine    Steuber    antonina.kulas@labadie.com    \N    Yemen    Asaburgh    64194 Cummerata Cliff    89304-9915    Virginia    2016-09-02 18:05:53.861854    2016-10-14 13:02:48.98203        \N    \N    \N    0    \N    \N    \N    \N    male
14332    Ransom    Rempel    claudie.yundt@lehner.org    \N    Italy    North Tonifurt    68751 Verna Corners    30869    Iowa    2016-06-28 23:40:45.655384    2016-10-14 13:02:49.00861        \N    \N    \N    0    \N    \N    \N    \N    male
14333    Winona    Thiel    danny_feil@hickle.biz    \N    Cambodia    Jaysonstad    464 Delpha Glen    83955    Alabama    2016-07-09 07:43:31.10228    2016-10-14 13:02:49.033363        \N    \N    \N    0    \N    \N    \N    \N    male
14334    Karolann    Homenick    krista_rohan@stokesconsidine.org    \N    Somalia    Lake Arlenetown    46650 Daugherty Rapid    14040-4123    Georgia    2016-09-14 07:27:42.962054    2016-10-14 13:02:49.046616        \N    \N    \N    0    \N    \N    \N    \N    male
14335    Kaden    Oberbrunner    lora@nicolas.io    \N    Bouvet Island (Bouvetoya)    West Jevon    85040 Senger Islands    15051-8869    Illinois    2016-06-25 14:32:29.040307    2016-10-14 13:02:49.055875        \N    \N    \N    0    \N    \N    \N    \N    female
14337    Howard    Rempel    annamae@monahanwunsch.com    \N    Georgia    North Geovannishire    7063 Balistreri Lakes    41165-8753    Minnesota    2016-07-11 07:55:49.642993    2016-10-14 13:02:49.060866        \N    \N    \N    0    \N    \N    \N    \N    female
14338    Gust    Shields    kristin.rolfson@hartmannondricka.biz    \N    Benin    West Jedmouth    8744 Bobby Port    34120-5902    Maine    2016-08-31 07:20:26.409508    2016-10-14 13:02:49.070459        \N    \N    \N    0    \N    \N    \N    \N    male
14339    Karl    Torphy    amari@hilpert.org    \N    Zimbabwe    New Otho    200 King Mountain    98567    Georgia    2016-08-18 20:34:18.48749    2016-10-14 13:02:49.082506        \N    \N    \N    0    \N    \N    \N    \N    male
17537    Sylvan    Nikolaus    alva@kulas.co    \N    Japan    Tarynstad    1293 Wisozk Tunnel    17264-5482    Wyoming    2016-08-11 20:47:35.610413    2016-10-14 13:02:49.094        \N    \N    \N    0    \N    \N    \N    \N    female
14340    Alice    Erdman    vicenta_grimes@bernier.name    \N    Mongolia    Geoffreyland    9203 Russel Expressway    81425-8555    Connecticut    2016-09-21 20:23:29.586305    2016-10-14 13:02:49.100725        \N    \N    \N    0    \N    \N    \N    \N    male
14341    Veda    Cruickshank    nedra@lynchemmerich.info    \N    Belgium    Kameronfort    718 Gregory Overpass    44095-7526    Indiana    2016-09-08 21:40:53.041326    2016-10-14 13:02:49.110374        \N    \N    \N    0    \N    \N    \N    \N    male
14342    Reva    Haley    maymie_corkery@brown.io    \N    Madagascar    North Angieside    71683 Aisha Gardens    24136-6513    Rhode Island    2016-09-07 22:46:55.561104    2016-10-14 13:02:49.133506        \N    \N    \N    0    \N    \N    \N    \N    male
14343    Keshawn    Rau    stone@farrellschiller.com    \N    Reunion    Port Amirside    953 Andrew Villages    83505    Minnesota    2016-08-07 16:26:56.694451    2016-10-14 13:02:49.159241        \N    \N    \N    0    \N    \N    \N    \N    male
14344    Helen    Dicki    ebba@feil.net    \N    Algeria    Port Alysson    2307 Baylee Corner    85036-9257    Montana    2016-08-18 20:35:13.234451    2016-10-14 13:02:49.168313        \N    \N    \N    0    \N    \N    \N    \N    male
14345    Amiya    Langworth    wilber_nikolaus@cummings.info    \N    India    Lynchtown    88326 Hickle Row    13375    South Carolina    2016-08-27 16:54:36.873764    2016-10-14 13:02:49.180971        \N    \N    \N    0    \N    \N    \N    \N    female
14346    Grace    Treutel    willy@schillerquigley.com    \N    China    Odieberg    7958 Julio Junction    24695    Maryland    2016-07-10 04:04:16.881991    2016-10-14 13:02:49.192246        \N    \N    \N    0    \N    \N    \N    \N    female
14347    Donna    Lynch    nestor.brakus@oharahintz.info    \N    Cambodia    Herzogbury    730 Ledner Squares    56218    Ohio    2016-06-24 17:51:37.615124    2016-10-14 13:02:49.198477        \N    \N    \N    0    \N    \N    \N    \N    male
14348    Kayla    Hoeger    ike_jaskolski@hegmann.net    \N    Netherlands    New Cristianhaven    552 Westley Loaf    47037-2199    Delaware    2016-06-30 04:30:44.717222    2016-10-14 13:02:49.210808        \N    \N    \N    0    \N    \N    \N    \N    male
14349    Dan    Krajcik    bernadette_veum@stehr.com    \N    Tokelau    Keiraburgh    21704 Reba Walks    61557    Rhode Island    2016-08-21 18:48:31.926071    2016-10-14 13:02:49.217351        \N    \N    \N    0    \N    \N    \N    \N    male
14350    Garry    Connelly    ariel@pollichskiles.info    \N    Belize    East Emmalee    13152 Elenor Fields    48141-3825    New York    2016-09-02 18:22:49.539128    2016-10-14 13:02:49.2229        \N    \N    \N    0    \N    \N    \N    \N    female
14351    Chandler    Bradtke    jace_von@kautzer.co    \N    Cocos (Keeling) Islands    West Careyshire    903 Aufderhar Mount    43584    North Carolina    2016-09-28 10:53:32.397566    2016-10-14 13:02:49.230662        \N    \N    \N    0    \N    \N    \N    \N    female
14352    Green    Spinka    emerson@ernser.io    \N    Austria    South Dustin    690 McDermott Estate    36753-2750    Montana    2016-09-13 06:21:39.555756    2016-10-14 13:02:49.238941        \N    \N    \N    0    \N    \N    \N    \N    female
14353    Mose    Rice    julie.kohler@bernhard.com    \N    El Salvador    North Vickiehaven    866 Koepp Mountains    89658-7849    Kentucky    2016-09-02 11:30:05.976433    2016-10-14 13:02:49.254198        \N    \N    \N    0    \N    \N    \N    \N    female
14354    Shannon    Towne    camden.balistreri@howell.net    \N    Senegal    Sheridanborough    5488 Lucile Parkway    77153    North Dakota    2016-09-26 06:06:08.821144    2016-10-14 13:02:49.272908        \N    \N    \N    0    \N    \N    \N    \N    male
14355    Roselyn    Considine    lula.pfeffer@kulaslesch.com    \N    Hungary    Bartellmouth    868 Freddy Lake    98123-2026    New Hampshire    2016-08-07 03:48:21.269937    2016-10-14 13:02:49.292491        \N    \N    \N    0    \N    \N    \N    \N    female
14356    Giovanny    Farrell    lesly@bradtkepfannerstill.co    \N    Andorra    Kimberlyfurt    75661 Senger Park    20264    South Carolina    2016-08-24 04:39:58.142626    2016-10-14 13:02:49.297357        \N    \N    \N    0    \N    \N    \N    \N    female
14357    Janae    Schmeler    fernando@orn.biz    \N    Bosnia and Herzegovina    Runtefurt    26308 Hyatt Tunnel    99047    Rhode Island    2016-08-29 06:25:16.908515    2016-10-14 13:02:49.302366        \N    \N    \N    0    \N    \N    \N    \N    female
14358    Trevion    Muller    zackary_tremblay@schimmel.biz    \N    Bolivia    Dietrichville    2648 Nelda Squares    11813-6983    South Carolina    2016-07-13 17:38:49.862627    2016-10-14 13:02:49.307719        \N    \N    \N    0    \N    \N    \N    \N    female
14359    Nola    Franecki    alanis@hickle.info    \N    Swaziland    Dibbertland    8588 Lucienne Expressway    37425    Ohio    2016-08-14 23:08:51.544054    2016-10-14 13:02:49.319172        \N    \N    \N    0    \N    \N    \N    \N    male
14360    Angelina    Pacocha    keaton@goldner.org    \N    Israel    West Kaylin    756 Wiza Mountain    12047-3296    New York    2016-06-24 23:36:10.491254    2016-10-14 13:02:49.327934        \N    \N    \N    0    \N    \N    \N    \N    male
14361    Mitchel    Lesch    morgan.bernier@schneider.info    \N    Malawi    Wileyland    213 Mraz Union    38186-6860    South Dakota    2016-09-20 03:46:13.350008    2016-10-14 13:02:49.334183        \N    \N    \N    0    \N    \N    \N    \N    female
14362    Courtney    Reilly    pinkie.goyette@olsonryan.net    \N    Uzbekistan    South Julianastad    9494 Royal Centers    96849-3570    North Carolina    2016-09-15 04:44:20.539162    2016-10-14 13:02:49.339017        \N    \N    \N    0    \N    \N    \N    \N    female
14363    Imogene    Toy    dorris_nienow@oconnerharris.co    \N    Bermuda    Ezequielburgh    661 Dorothy Underpass    89024-6775    West Virginia    2016-08-01 02:20:25.447741    2016-10-14 13:02:49.344469        \N    \N    \N    0    \N    \N    \N    \N    male
14364    Moshe    Bode    hellen@sanford.biz    \N    Kuwait    West Wilma    33987 Adaline Hills    17646    Colorado    2016-07-04 00:48:55.07213    2016-10-14 13:02:49.349693        \N    \N    \N    0    \N    \N    \N    \N    male
14365    Eino    Ziemann    will.lang@rodriguezeichmann.info    \N    Netherlands Antilles    New Flomouth    46866 Wilton Corner    11000-8285    Minnesota    2016-08-07 03:51:02.649796    2016-10-14 13:02:49.354187        \N    \N    \N    0    \N    \N    \N    \N    female
14366    Ashlynn    Orn    vivien@flatleyeffertz.biz    \N    Bangladesh    Lake Trevionport    99632 Gwen Hills    43086-4094    North Carolina    2016-06-23 21:40:51.94935    2016-10-14 13:02:49.360747        \N    \N    \N    0    \N    \N    \N    \N    male
14368    Judah    Lebsack    bert@purdy.name    \N    Central African Republic    Hortensestad    273 King Valley    92434    Texas    2016-07-28 14:16:44.172766    2016-10-14 13:02:49.379554        \N    \N    \N    0    \N    \N    \N    \N    male
14369    Beau    Brown    friedrich_gottlieb@emmerich.biz    \N    Equatorial Guinea    North Jacquelyn    5723 Ford Crossing    89148    Idaho    2016-07-08 20:47:17.92568    2016-10-14 13:02:49.387724        \N    \N    \N    0    \N    \N    \N    \N    female
14370    Mireille    Kutch    maymie@pagac.io    \N    Oman    West Zoila    83776 Sim Wells    54094-3789    Virginia    2016-09-09 19:14:16.353684    2016-10-14 13:02:49.398893        \N    \N    \N    0    \N    \N    \N    \N    female
14371    Suzanne    Kirlin    justus@kris.info    \N    Antigua and Barbuda    North Finnstad    9293 Mills Corners    85970-6510    North Carolina    2016-09-05 09:39:27.48478    2016-10-14 13:02:49.414488        \N    \N    \N    0    \N    \N    \N    \N    male
16527    Joy    Champlin    ara@lind.name    \N    Norway    South Raina    89638 Patsy Avenue    51928-8853    Nevada    2016-07-03 01:03:21.631154    2016-10-14 13:02:49.425419        \N    \N    \N    0    \N    \N    \N    \N    male
14372    Naomie    Murazik    benedict.upton@sengerdach.name    \N    Namibia    East Jackieborough    81949 May Dam    95456    Mississippi    2016-07-18 03:00:44.808135    2016-10-14 13:02:49.437746        \N    \N    \N    0    \N    \N    \N    \N    male
14373    Jayce    Huel    geo@schmeler.com    \N    Macedonia    Casperville    394 Amina Green    31236    Nevada    2016-09-14 21:11:44.322043    2016-10-14 13:02:49.446093        \N    \N    \N    0    \N    \N    \N    \N    female
14374    Abner    Kihn    vicenta.thompson@boyle.biz    \N    Germany    New Frederikshire    7460 Nitzsche Fall    22660-1207    Utah    2016-09-07 04:28:28.20529    2016-10-14 13:02:49.454285        \N    \N    \N    0    \N    \N    \N    \N    female
14375    Maximilian    Roberts    boyd_pollich@von.net    \N    Cote d'Ivoire    North Freeman    1469 Leone Garden    20011-7799    Minnesota    2016-09-16 03:02:37.201401    2016-10-14 13:02:49.466298        \N    \N    \N    0    \N    \N    \N    \N    male
14376    Santiago    Fisher    ernestine.watsica@schaeferwyman.io    \N    Uruguay    New Camryn    336 Fay Run    85736    California    2016-08-01 20:50:52.36286    2016-10-14 13:02:49.47866        \N    \N    \N    0    \N    \N    \N    \N    female
14377    Opal    Ferry    molly.conn@bailey.name    \N    Azerbaijan    West Johan    724 Beahan Crest    63328    Oregon    2016-08-18 05:50:06.175238    2016-10-14 13:02:49.485739        \N    \N    \N    0    \N    \N    \N    \N    female
14378    Ross    Kirlin    stephen_lindgren@baumbach.com    \N    Tunisia    Lake Loyal    55258 Colby View    19538-5973    Montana    2016-07-04 09:54:02.249424    2016-10-14 13:02:49.502801        \N    \N    \N    0    \N    \N    \N    \N    female
14379    Amos    Yost    alva.howell@beahan.name    \N    El Salvador    Gaylordburgh    251 Toy Parkway    90314    South Dakota    2016-09-10 18:40:27.729804    2016-10-14 13:02:49.510708        \N    \N    \N    0    \N    \N    \N    \N    female
14380    Everardo    Hegmann    christy@little.name    \N    Trinidad and Tobago    Elianemouth    61262 Greenholt Via    86009-9867    Connecticut    2016-08-17 00:01:03.576697    2016-10-14 13:02:49.521816        \N    \N    \N    0    \N    \N    \N    \N    male
14382    Claire    Champlin    chaya.monahan@hahn.name    \N    Bhutan    Adolfoville    291 Keagan Island    43261    Oregon    2016-06-25 04:15:55.9021    2016-10-14 13:02:49.54204        \N    \N    \N    0    \N    \N    \N    \N    female
14383    Dwight    Weissnat    hipolito@cruickshankbode.info    \N    Guyana    Keeblerview    9910 Giovanna Square    93645-2002    Vermont    2016-08-21 16:27:17.49031    2016-10-14 13:02:49.558057        \N    \N    \N    0    \N    \N    \N    \N    male
14832    Flossie    Rice    lorenz@altenwerth.name    \N    Georgia    East Oraville    64359 Lonnie Coves    91661    Illinois    2016-09-15 06:24:57.447417    2016-10-14 13:02:49.564097        \N    \N    \N    0    \N    \N    \N    \N    female
14384    Janessa    Hartmann    renee.kuhlman@funkcormier.biz    \N    Aruba    South Tyrell    7280 Eloisa River    71779    Pennsylvania    2016-09-11 06:59:03.961169    2016-10-14 13:02:49.57028        \N    \N    \N    0    \N    \N    \N    \N    male
14385    Clay    Green    krystina@ledner.net    \N    Faroe Islands    Lake Lela    371 Liliana Square    19545    New Mexico    2016-08-24 21:05:14.277169    2016-10-14 13:02:49.576225        \N    \N    \N    0    \N    \N    \N    \N    male
14386    Deondre    Sporer    horacio.deckow@creminheller.org    \N    Tokelau    South Lucioburgh    80320 Jefferey Rue    78256    North Carolina    2016-08-07 19:49:54.681834    2016-10-14 13:02:49.580891        \N    \N    \N    0    \N    \N    \N    \N    male
14387    Lonie    Dietrich    lucio@larkin.net    \N    Andorra    Port Jarretthaven    61859 Koss Points    56197-8112    Tennessee    2016-08-22 23:18:17.440826    2016-10-14 13:02:49.591634        \N    \N    \N    0    \N    \N    \N    \N    female
14388    Marlee    Tremblay    ezequiel@bailey.org    \N    Saint Kitts and Nevis    New Kennyside    1726 Nolan Vista    14357-5750    Minnesota    2016-08-13 13:33:36.93617    2016-10-14 13:02:49.596948        \N    \N    \N    0    \N    \N    \N    \N    male
14389    Emmitt    Daniel    angel_wyman@graham.org    \N    Norway    West Blake    36374 Koss Prairie    51638-0966    Arizona    2016-09-28 16:18:19.099709    2016-10-14 13:02:49.602474        \N    \N    \N    0    \N    \N    \N    \N    female
14390    Ansley    West    alyson_skiles@borer.io    \N    Iran    New Vernontown    10389 Schumm Passage    39880    Utah    2016-08-23 05:51:06.366775    2016-10-14 13:02:49.608448        \N    \N    \N    0    \N    \N    \N    \N    female
14391    Madisen    Carter    concepcion@wisoky.co    \N    Norfolk Island    Lubowitzside    72332 Sauer Neck    71629    Nebraska    2016-09-26 03:11:33.393215    2016-10-14 13:02:49.61685        \N    \N    \N    0    \N    \N    \N    \N    male
14392    Gregory    Kub    ophelia.kiehn@klingkeebler.net    \N    Netherlands Antilles    Lake Retta    997 Herminia Port    54399-9173    Michigan    2016-08-09 12:11:30.698285    2016-10-14 13:02:49.622113        \N    \N    \N    0    \N    \N    \N    \N    male
14393    Lessie    Dibbert    gordon@stokes.biz    \N    Niue    North Marietta    9443 Marvin Locks    94553-6446    Idaho    2016-07-30 06:42:22.189416    2016-10-14 13:02:49.627039        \N    \N    \N    0    \N    \N    \N    \N    male
14394    Marcos    Eichmann    sofia@kuhiccain.com    \N    El Salvador    Russelfort    545 Moen Crossroad    17822    Maryland    2016-08-26 02:45:10.540742    2016-10-14 13:02:49.634235        \N    \N    \N    0    \N    \N    \N    \N    male
14395    Dahlia    Stoltenberg    dewitt@vandervort.co    \N    Greece    Gerlachborough    52729 Pansy Valleys    25696    Ohio    2016-07-30 19:02:30.006406    2016-10-14 13:02:49.644907        \N    \N    \N    0    \N    \N    \N    \N    female
14396    Tyra    Hermann    major@mertz.org    \N    Bermuda    New Josiahbury    279 Ritchie Courts    82340    Hawaii    2016-06-24 05:05:16.56509    2016-10-14 13:02:49.658559        \N    \N    \N    0    \N    \N    \N    \N    male
14397    Jaydon    Rice    arnold@hegmann.name    \N    Nigeria    Kuphalville    66512 Larkin Springs    29793    Washington    2016-09-16 22:32:02.595278    2016-10-14 13:02:49.664831        \N    \N    \N    0    \N    \N    \N    \N    male
14398    Rosemarie    Dickinson    hobart.walter@frami.co    \N    Netherlands Antilles    Johnston    24987 Georgiana Valleys    17459-1815    Wisconsin    2016-09-28 14:41:12.845168    2016-10-14 13:02:49.682674        \N    \N    \N    0    \N    \N    \N    \N    male
14399    Providenci    McDermott    frieda@macgyverstrosin.co    \N    Bhutan    Lake Mable    500 Willow Drives    15343-9195    Connecticut    2016-07-28 12:06:46.490503    2016-10-14 13:02:49.689564        \N    \N    \N    0    \N    \N    \N    \N    male
11539    Chaim    Emard    zita@emmerich.net    \N    Myanmar    Celestineville    88479 Ramona Drive    71497    Georgia    2016-08-10 11:54:35.350528    2016-10-14 13:02:49.696488        \N    \N    \N    0    \N    \N    \N    \N    male
14367    Shyann    Cremin    antonietta@boyerconn.net    \N    Haiti    South Gladyce    30183 Nico Manors    12651-2560    Vermont    2016-07-18 18:53:46.611564    2016-10-14 13:02:49.706281        \N    \N    \N    0    \N    \N    \N    \N    female
14400    Yadira    Johnston    deie_batz@morar.co    \N    Jamaica    Port Rodgerberg    53435 Stamm Flats    67714-6384    Massachusetts    2016-09-13 12:33:30.751091    2016-10-14 13:02:49.712268        \N    \N    \N    0    \N    \N    \N    \N    male
14401    Naomie    Gleichner    nichole@kreiger.io    \N    Gibraltar    Leuschkeland    784 Mercedes Island    83485-4157    North Dakota    2016-06-27 19:41:33.08801    2016-10-14 13:02:49.716593        \N    \N    \N    0    \N    \N    \N    \N    male
14402    Wilfredo    Medhurst    rita_oberbrunner@lebsack.info    \N    South Africa    Lake Phoebe    62968 Elda Overpass    69986    Massachusetts    2016-09-22 20:30:00.185339    2016-10-14 13:02:49.721042        \N    \N    \N    0    \N    \N    \N    \N    male
14403    Myrl    Kuvalis    amelia@leschkertzmann.co    \N    Wallis and Futuna    Zettastad    14557 Hammes Ramp    62894-0600    Mississippi    2016-07-22 21:51:21.359542    2016-10-14 13:02:49.72533        \N    \N    \N    0    \N    \N    \N    \N    male
14404    Fritz    Braun    sandra@kubwisoky.biz    \N    Turkey    Port Gerry    51234 Thiel Parkways    87865    New Hampshire    2016-08-21 18:03:04.84911    2016-10-14 13:02:49.730108        \N    \N    \N    0    \N    \N    \N    \N    female
14504    Kaylin    O'Connell    tommie_yundt@waelchi.net    \N    Tonga    Ilianabury    2334 Kris Ferry    20138-9155    Colorado    2016-08-26 19:14:07.906841    2016-10-14 13:02:49.735428        \N    \N    \N    0    \N    \N    \N    \N    female
14406    Zachery    Durgan    rogelio_johnston@nolan.biz    \N    Virgin Islands, British    New Mattshire    4780 Halvorson Roads    86450-7070    New Jersey    2016-06-28 21:44:13.884013    2016-10-14 13:02:49.754726        \N    \N    \N    0    \N    \N    \N    \N    male
14407    Lavada    Bode    mercedes_ritchie@jones.biz    \N    Romania    Lake Celiaview    9963 Ziemann Bridge    31196-9990    California    2016-07-24 00:33:37.672429    2016-10-14 13:02:49.769555        \N    \N    \N    0    \N    \N    \N    \N    female
14409    Lisette    Lehner    stacey_roberts@raynor.org    \N    Sri Lanka    Leschfort    281 Dickens Knolls    32818    North Dakota    2016-09-29 02:15:39.723415    2016-10-14 13:02:49.783707        \N    \N    \N    0    \N    \N    \N    \N    male
14410    Greg    Schoen    marquise.jacobs@cormier.co    \N    Christmas Island    New Destiniland    37726 Benny Fall    40986    Massachusetts    2016-07-27 15:19:07.807071    2016-10-14 13:02:49.810638        \N    \N    \N    0    \N    \N    \N    \N    male
14411    Meagan    Boyle    arnaldo.oconnell@rueckerharris.biz    \N    Mayotte    Briceview    7625 Weber Manors    73493-9198    Tennessee    2016-07-12 23:51:13.808713    2016-10-14 13:02:49.847613        \N    \N    \N    0    \N    \N    \N    \N    male
14412    Louvenia    Russel    melba@moriettewisoky.name    \N    Barbados    Cheyanneland    5558 Levi Field    27063-6774    Kansas    2016-08-11 01:08:22.594492    2016-10-14 13:02:49.858666        \N    \N    \N    0    \N    \N    \N    \N    male
14413    Katherine    Zulauf    vicente@waelchipredovic.com    \N    Republic of Korea    Christiansenfort    775 Alphonso Summit    17366-3575    Alabama    2016-09-14 13:41:28.354035    2016-10-14 13:02:49.873144        \N    \N    \N    0    \N    \N    \N    \N    male
16616    Jana    Hintz    retta_ondricka@renner.biz    \N    Qatar    New Arnulfo    6073 Erick Ridge    33202    Maine    2016-08-31 12:05:10.700585    2016-10-14 13:02:49.883614        \N    \N    \N    0    \N    \N    \N    \N    male
14414    Hans    Adams    reynold.quigley@oharakertzmann.name    \N    Central African Republic    Lake Ezekielchester    1213 Miller Parkways    74293-9860    Massachusetts    2016-07-26 22:57:50.824718    2016-10-14 13:02:49.899288        \N    \N    \N    0    \N    \N    \N    \N    male
14415    Marshall    Hand    evangeline_hermann@rath.name    \N    Brunei Darussalam    Mikelmouth    536 Hosea Prairie    76899-6657    Montana    2016-08-16 12:13:05.713537    2016-10-14 13:02:49.909845        \N    \N    \N    0    \N    \N    \N    \N    female
14416    Maurice    Emmerich    dusty@stamm.org    \N    Vietnam    Carloton    4239 Jay Trace    81378    Kansas    2016-09-11 23:49:55.500105    2016-10-14 13:02:49.919294        \N    \N    \N    0    \N    \N    \N    \N    female
14417    Frederic    Runte    margarett@andersongreen.net    \N    Democratic People's Republic of Korea    Merrittchester    6065 Windler Spur    27706-4030    North Carolina    2016-07-03 20:01:02.394285    2016-10-14 13:02:49.928607        \N    \N    \N    0    \N    \N    \N    \N    male
14418    Yessenia    Greenholt    angeline@hoppe.biz    \N    United Kingdom    North Imaniton    639 Monica Manor    19478    Massachusetts    2016-07-15 07:57:15.263069    2016-10-14 13:02:49.939274        \N    \N    \N    0    \N    \N    \N    \N    female
14419    Waino    Ankunding    lyric@mraz.io    \N    China    Howelltown    3059 Klocko Motorway    84124    Indiana    2016-07-28 03:59:06.364307    2016-10-14 13:02:49.947246        \N    \N    \N    0    \N    \N    \N    \N    male
14420    Burley    Harvey    karelle_daniel@langworth.org    \N    Cyprus    South Raphael    1860 Kulas Street    13072    Arkansas    2016-06-28 16:07:28.053472    2016-10-14 13:02:49.957937        \N    \N    \N    0    \N    \N    \N    \N    male
14421    Alverta    Goodwin    elliott_vonrueden@brekke.net    \N    Dominica    Giovaniberg    3634 Natalia Mill    78753    Arkansas    2016-09-08 04:08:04.838775    2016-10-14 13:02:49.969449        \N    \N    \N    0    \N    \N    \N    \N    female
14422    Frida    McGlynn    sunny@jacobson.io    \N    Turkmenistan    Ahmedberg    1723 Jones Islands    17618-2081    New York    2016-07-29 11:47:51.974636    2016-10-14 13:02:49.977578        \N    \N    \N    0    \N    \N    \N    \N    female
14423    Jake    D'Amore    connie@lowe.net    \N    Tonga    Lake Yadirachester    89918 White Harbors    83406    Kentucky    2016-08-06 03:46:46.145909    2016-10-14 13:02:49.986169        \N    \N    \N    0    \N    \N    \N    \N    male
14424    Lysanne    Towne    bernhard@smitham.biz    \N    Guam    New Heidi    35955 Percival Stravenue    88283-5807    Ohio    2016-07-28 23:53:04.690486    2016-10-14 13:02:50.002849        \N    \N    \N    0    \N    \N    \N    \N    female
14425    Maximillian    Trantow    colton@stanton.com    \N    United Arab Emirates    Lake Christaborough    2104 Chandler Circles    38325-8790    Nevada    2016-08-24 22:33:53.947696    2016-10-14 13:02:50.021497        \N    \N    \N    0    \N    \N    \N    \N    male
14426    Tony    Schumm    carlee.veum@abshiremills.com    \N    Tunisia    Johathanhaven    7904 Earlene Shore    26670    Mississippi    2016-09-13 00:25:56.634152    2016-10-14 13:02:50.0306        \N    \N    \N    0    \N    \N    \N    \N    male
14427    Kailee    Thompson    della@prosaccovon.name    \N    Albania    Port Edwinaburgh    73787 Marge Falls    68394-3118    Kentucky    2016-09-17 17:29:19.965951    2016-10-14 13:02:50.037914        \N    \N    \N    0    \N    \N    \N    \N    male
14428    Wava    Rice    cheyanne_greenfelder@streich.co    \N    Mauritius    Mannshire    779 Toni Brook    79423    Pennsylvania    2016-07-01 12:38:41.108688    2016-10-14 13:02:50.047313        \N    \N    \N    0    \N    \N    \N    \N    male
14429    Jamar    McDermott    noelia@ondrickaokeefe.co    \N    Uganda    Jazmintown    8062 Connelly Crossing    59711-4818    New Hampshire    2016-07-28 18:49:02.362777    2016-10-14 13:02:50.053727        \N    \N    \N    0    \N    \N    \N    \N    male
14430    Mario    Huels    malinda@hayes.name    \N    Oman    Jerelchester    79685 Beau Mountains    62738-5031    South Carolina    2016-06-23 03:34:55.420385    2016-10-14 13:02:50.059768        \N    \N    \N    0    \N    \N    \N    \N    male
14432    Elinore    Bosco    karine.brekke@schroeder.net    \N    Kiribati    West Claramouth    8252 Hirthe Squares    40049-6731    Indiana    2016-07-06 02:50:42.138426    2016-10-14 13:02:50.068729        \N    \N    \N    0    \N    \N    \N    \N    female
14433    Myrna    Skiles    kennith@hermiston.org    \N    Holy See (Vatican City State)    Schowalterland    558 Gus Plain    83064-4606    Colorado    2016-09-18 22:37:58.535993    2016-10-14 13:02:50.074272        \N    \N    \N    0    \N    \N    \N    \N    female
14434    Astrid    Gottlieb    georgette_luettgen@schamberger.co    \N    Croatia    Maceymouth    6743 Bogisich Crossroad    45322-2742    Colorado    2016-08-05 12:21:04.823077    2016-10-14 13:02:50.079275        \N    \N    \N    0    \N    \N    \N    \N    male
14435    Margarette    DuBuque    rudy.collins@koch.com    \N    Mauritius    Piperport    9312 Bauch Ridge    33951-5086    Wisconsin    2016-06-26 21:19:35.160085    2016-10-14 13:02:50.08576        \N    \N    \N    0    \N    \N    \N    \N    male
14436    Helga    O'Kon    caleb.braun@colefay.org    \N    Ethiopia    East Esmeralda    411 Imelda Lodge    39322-2785    Minnesota    2016-06-26 17:45:13.573956    2016-10-14 13:02:50.090677        \N    \N    \N    0    \N    \N    \N    \N    female
14437    Sallie    Waelchi    pauline.johnston@ortizmacgyver.org    \N    French Southern Territories    Treutelstad    7362 Gusikowski Run    19427-9779    Massachusetts    2016-09-19 10:53:28.236047    2016-10-14 13:02:50.096308        \N    \N    \N    0    \N    \N    \N    \N    female
14438    Mellie    Bosco    gwendolyn.ebert@gutmann.com    \N    Papua New Guinea    New Lillianhaven    126 Jasen Glens    54362    Maryland    2016-08-31 03:41:39.884092    2016-10-14 13:02:50.108049        \N    \N    \N    0    \N    \N    \N    \N    female
14439    Orie    Toy    lorenz_gerhold@keler.net    \N    Portugal    Armstrongside    257 Kendall Expressway    18701    New Jersey    2016-07-14 11:45:29.905181    2016-10-14 13:02:50.119474        \N    \N    \N    0    \N    \N    \N    \N    female
14440    Reggie    Gorczany    ima.lesch@reichertwindler.biz    \N    Niue    Bahringerport    513 Lowe Lock    21604    Texas    2016-07-02 17:25:19.862393    2016-10-14 13:02:50.130162        \N    \N    \N    0    \N    \N    \N    \N    female
14441    Kip    Schoen    devon@bradtke.name    \N    Swaziland    South Ford    51246 Nikolaus Plaza    79102-2872    Rhode Island    2016-09-17 21:07:40.224801    2016-10-14 13:02:50.139792        \N    \N    \N    0    \N    \N    \N    \N    female
14442    Emanuel    Rowe    carrie@armstrong.info    \N    Barbados    North Georgiana    8030 Watsica Lane    27218-9438    New Mexico    2016-07-17 02:58:54.440398    2016-10-14 13:02:50.149738        \N    \N    \N    0    \N    \N    \N    \N    male
14443    Marcellus    Armstrong    palma@hagenes.io    \N    French Guiana    Lake Cicerotown    4971 Bergstrom Circle    34766-1413    Ohio    2016-07-02 10:38:56.506257    2016-10-14 13:02:50.159717        \N    \N    \N    0    \N    \N    \N    \N    male
14444    Sadie    Littel    grover_donnelly@predovichartmann.com    \N    Saint Barthelemy    Consuelotown    3872 Bailey Square    66047    New Hampshire    2016-09-01 12:39:17.044976    2016-10-14 13:02:50.169332        \N    \N    \N    0    \N    \N    \N    \N    female
14445    Pearline    Carroll    camila_rogahn@bailey.info    \N    Montenegro    East Frieda    48860 Gerhard Gateway    47434    Massachusetts    2016-07-10 03:19:08.182379    2016-10-14 13:02:50.178855        \N    \N    \N    0    \N    \N    \N    \N    female
14446    Elwyn    Champlin    austyn@kautzer.com    \N    Egypt    West Rosemarieshire    8106 Colleen Spring    64920    Tennessee    2016-09-14 15:42:51.148675    2016-10-14 13:02:50.183759        \N    \N    \N    0    \N    \N    \N    \N    female
14447    Eulah    Abernathy    minnie_kovacek@walter.org    \N    Japan    North Dejuan    2535 Bauch Fields    47082-0352    New Hampshire    2016-07-02 01:52:44.874252    2016-10-14 13:02:50.192391        \N    \N    \N    0    \N    \N    \N    \N    female
14448    Marlene    Schaden    grace_schneider@jaskolski.name    \N    Turkey    Keonstad    4828 Jalyn Ramp    21734-6230    Mississippi    2016-09-13 08:25:33.683442    2016-10-14 13:02:50.202149        \N    \N    \N    0    \N    \N    \N    \N    male
14449    Victoria    Torphy    lorna@mueller.info    \N    Faroe Islands    Port Alisa    425 Torphy Harbors    49001    Alabama    2016-07-18 22:24:46.428641    2016-10-14 13:02:50.210736        \N    \N    \N    0    \N    \N    \N    \N    female
14450    Marcellus    Hahn    trace@breitenberglebsack.name    \N    Nepal    Shanahanstad    275 Goyette Extensions    88726    Illinois    2016-07-07 22:11:34.196921    2016-10-14 13:02:50.218306        \N    \N    \N    0    \N    \N    \N    \N    male
14451    Gisselle    Corwin    quinn_stamm@williamsonnitzsche.com    \N    Panama    Lake Waltonton    1677 Demarco Union    92704    Vermont    2016-07-05 11:18:49.541209    2016-10-14 13:02:50.223873        \N    \N    \N    0    \N    \N    \N    \N    male
14452    Salvatore    Rodriguez    valerie@binswalker.com    \N    Cote d'Ivoire    Kreigerfort    421 Lempi Knoll    72517-2080    Texas    2016-09-25 23:16:50.435888    2016-10-14 13:02:50.229023        \N    \N    \N    0    \N    \N    \N    \N    male
14455    Mariam    Heidenreich    noemy_champlin@king.biz    \N    Palestinian Territory    New Cynthiastad    911 Abelardo Walk    35459-1758    Wisconsin    2016-07-14 00:45:11.774812    2016-10-14 13:02:50.234995        \N    \N    \N    0    \N    \N    \N    \N    female
14456    Ladarius    Robel    shakira_gleason@lefflergreen.info    \N    Holy See (Vatican City State)    Schillerland    6111 Dexter Hollow    26261-8400    Wisconsin    2016-07-31 21:11:50.277404    2016-10-14 13:02:50.244472        \N    \N    \N    0    \N    \N    \N    \N    male
14457    Immanuel    Emmerich    florence_schowalter@graham.org    \N    Cyprus    East Barrybury    4670 Justice Ridges    20658    New York    2016-07-20 16:45:20.348258    2016-10-14 13:02:50.253073        \N    \N    \N    0    \N    \N    \N    \N    male
14458    Danielle    Willms    darrick_lowe@darelubowitz.name    \N    China    New Demetris    3537 Bosco Village    68713-2442    Minnesota    2016-08-19 04:14:54.320904    2016-10-14 13:02:50.258696        \N    \N    \N    0    \N    \N    \N    \N    male
14460    Evalyn    Stehr    jacky_green@osinskizemlak.com    \N    Russian Federation    West Mason    2137 Legros Springs    50091-0573    Nebraska    2016-06-23 09:58:51.967352    2016-10-14 13:02:50.266762        \N    \N    \N    0    \N    \N    \N    \N    male
14461    Vito    Orn    louvenia.heel@johnsonblick.org    \N    Estonia    Heberfurt    12032 McGlynn Hill    23369    South Dakota    2016-08-08 03:02:32.254074    2016-10-14 13:02:50.276107        \N    \N    \N    0    \N    \N    \N    \N    female
14462    Reva    Cummerata    cheyenne@gulgowski.io    \N    Solomon Islands    Franeckichester    3968 Evalyn Stream    90451    Maine    2016-08-20 00:10:33.106178    2016-10-14 13:02:50.281336        \N    \N    \N    0    \N    \N    \N    \N    male
14463    Fausto    Larson    trent_quitzon@mckenziezemlak.info    \N    Guam    Port Mable    880 Graham Villages    69741    Tennessee    2016-08-08 02:30:56.103421    2016-10-14 13:02:50.286642        \N    \N    \N    0    \N    \N    \N    \N    female
14464    Josue    Yost    reinhold@bosco.io    \N    Jamaica    East Ben    6704 Walsh Shoals    69235-0918    South Dakota    2016-08-19 21:55:01.317496    2016-10-14 13:02:50.291532        \N    \N    \N    0    \N    \N    \N    \N    male
14465    Kelli    Hane    gail_keebler@williamson.org    \N    Marshall Islands    Lake Reynaton    67561 Jeffrey Harbors    67585    Massachusetts    2016-07-07 09:40:54.459831    2016-10-14 13:02:50.296196        \N    \N    \N    0    \N    \N    \N    \N    male
14466    Francesca    Marks    toy_friesen@christiansenbotsford.name    \N    Slovakia (Slovak Republic)    West Arnoldoshire    86019 Feest Meadow    27005-6760    Louisiana    2016-07-15 08:16:47.709508    2016-10-14 13:02:50.302622        \N    \N    \N    0    \N    \N    \N    \N    female
14467    Tressie    Bernier    araceli@leuschkeleuschke.net    \N    Iceland    Rodriguezside    983 Monique Junctions    55241    Texas    2016-08-21 14:03:28.394735    2016-10-14 13:02:50.310305        \N    \N    \N    0    \N    \N    \N    \N    male
14468    Geo    Jaskolski    terry_jakubowski@kirlin.com    \N    Macao    Kihnchester    7019 Pagac Mountains    58624-5968    New Hampshire    2016-09-17 08:15:43.192399    2016-10-14 13:02:50.315894        \N    \N    \N    0    \N    \N    \N    \N    male
14469    Julius    Krajcik    ethel.boehm@mullerosinski.com    \N    Turkmenistan    West Cindyhaven    38674 Makenna Lake    46559-8225    Nevada    2016-07-04 06:58:24.007685    2016-10-14 13:02:50.322526        \N    \N    \N    0    \N    \N    \N    \N    male
14470    Willow    Bahringer    erwin@grimes.com    \N    Latvia    West Waylon    35846 Stracke Oval    89853-9231    Maryland    2016-07-23 09:36:22.087769    2016-10-14 13:02:50.328305        \N    \N    \N    0    \N    \N    \N    \N    female
17538    Rodrigo    Waters    will@heel.org    \N    Nigeria    Pascaleview    4253 Mylene Isle    90277-1180    Iowa    2016-06-28 05:07:15.421918    2016-10-14 13:02:50.335068        \N    \N    \N    0    \N    \N    \N    \N    male
14471    Casandra    Maggio    wade@thompson.biz    \N    Burundi    Beahanbury    9180 Marcus Course    62344    South Carolina    2016-07-17 16:29:57.543088    2016-10-14 13:02:50.339721        \N    \N    \N    0    \N    \N    \N    \N    male
14472    Raegan    Sauer    sasha@denesik.com    \N    Martinique    Jeffryview    591 Margarete Views    56695    Louisiana    2016-09-13 22:47:46.7711    2016-10-14 13:02:50.344406        \N    \N    \N    0    \N    \N    \N    \N    male
14473    Lura    Considine    floyd@wardsmitham.info    \N    Niue    South Pearline    35304 Preston Village    63902    Hawaii    2016-09-03 01:21:37.966721    2016-10-14 13:02:50.350232        \N    \N    \N    0    \N    \N    \N    \N    female
14474    Garett    Halvorson    kacey.bosco@donnellypollich.org    \N    Thailand    South Brice    7208 Carrie Square    78612-7107    Virginia    2016-07-01 22:37:50.003135    2016-10-14 13:02:50.356195        \N    \N    \N    0    \N    \N    \N    \N    male
14475    Oral    Yundt    cleta_murphy@mclaughlinrogahn.net    \N    Egypt    South Leonor    4528 Toy Park    71622    Utah    2016-07-10 04:56:20.679202    2016-10-14 13:02:50.360981        \N    \N    \N    0    \N    \N    \N    \N    male
14476    Eulah    Aufderhar    vesta.leuschke@jacobi.org    \N    Virgin Islands, British    Hoppeville    51738 Brakus Port    72346    Maine    2016-09-26 02:57:11.992943    2016-10-14 13:02:50.366704        \N    \N    \N    0    \N    \N    \N    \N    female
14477    Jaylen    Treutel    trevion@ritchie.biz    \N    Peru    East Flavio    8826 Johns Greens    22023-4580    Virginia    2016-08-29 06:43:20.713152    2016-10-14 13:02:50.372105        \N    \N    \N    0    \N    \N    \N    \N    male
14478    Deion    Hamill    nikita_murazik@parisian.name    \N    Mongolia    Strosinview    67361 Zieme Fall    24415    Rhode Island    2016-09-20 15:52:29.864415    2016-10-14 13:02:50.380251        \N    \N    \N    0    \N    \N    \N    \N    male
14479    Rowena    Hane    edwina.marks@baumbachpredovic.name    \N    San Marino    Elenaburgh    78060 Leola Falls    48386    Ohio    2016-06-26 19:04:27.090279    2016-10-14 13:02:50.386685        \N    \N    \N    0    \N    \N    \N    \N    male
14480    Eugenia    King    gloria@rosenbaum.org    \N    Marshall Islands    East Wiley    8031 Osbaldo Point    36079-1233    North Carolina    2016-08-06 21:03:14.841393    2016-10-14 13:02:50.392231        \N    \N    \N    0    \N    \N    \N    \N    female
14481    Rafaela    Ondricka    delbert.skiles@waelchipacocha.info    \N    Canada    Giuseppeville    11334 Goldner Station    62106-2586    Arkansas    2016-06-27 13:33:25.119985    2016-10-14 13:02:50.399056        \N    \N    \N    0    \N    \N    \N    \N    male
14482    Emmanuel    Runte    narciso_ohara@langworthdare.biz    \N    Bahamas    Veronicahaven    972 Gregory Fork    53278    Wisconsin    2016-08-15 10:15:57.605718    2016-10-14 13:02:50.403891        \N    \N    \N    0    \N    \N    \N    \N    female
14483    Darian    Terry    rene_runte@medhurst.net    \N    Canada    South Nigel    51920 Kevin Bridge    32198    New York    2016-09-24 10:40:08.425181    2016-10-14 13:02:50.414533        \N    \N    \N    0    \N    \N    \N    \N    male
14484    Brice    Blick    joyce_goodwin@hoppe.io    \N    Norway    Rueckerfort    8247 Goldner Islands    35074-6908    Montana    2016-08-24 12:34:51.828663    2016-10-14 13:02:50.426585        \N    \N    \N    0    \N    \N    \N    \N    female
14485    Werner    Hyatt    charlie.morar@ankunding.co    \N    Lithuania    Anahiside    448 Feest Throughway    27722-1806    Virginia    2016-09-08 13:22:48.314534    2016-10-14 13:02:50.432612        \N    \N    \N    0    \N    \N    \N    \N    male
14486    Frankie    Blick    king@gusikowskitromp.info    \N    Republic of Korea    South Concepcion    8461 Kiara Avenue    70325    Idaho    2016-09-26 06:07:22.389112    2016-10-14 13:02:50.442601        \N    \N    \N    0    \N    \N    \N    \N    male
14487    Jazmin    King    elroy@okon.name    \N    United States of America    West Orland    644 Elody Islands    68480-9746    Alabama    2016-06-29 07:44:06.294493    2016-10-14 13:02:50.449899        \N    \N    \N    0    \N    \N    \N    \N    female
14488    Antonette    Morissette    delphia@schroederrohan.net    \N    Bahamas    Hesterburgh    52039 Noemi Unions    29553-5973    Maryland    2016-08-15 19:57:08.959621    2016-10-14 13:02:50.460158        \N    \N    \N    0    \N    \N    \N    \N    male
14489    Martina    Huels    ottis@fritsch.biz    \N    Lebanon    West Keshawnborough    55523 Dorcas Common    69588-5581    Wyoming    2016-08-16 09:34:15.653579    2016-10-14 13:02:50.468806        \N    \N    \N    0    \N    \N    \N    \N    female
14490    Colin    Littel    elva_gusikowski@miller.co    \N    Saint Barthelemy    Turcotteville    4343 Mireya Center    71869    Florida    2016-08-11 09:54:59.019921    2016-10-14 13:02:50.476308        \N    \N    \N    0    \N    \N    \N    \N    female
14891    Drake    Dietrich    ivy@watsica.com    \N    Paraguay    West Madalineshire    955 Ilene Ramp    55571    Washington    2016-07-24 13:10:26.362682    2016-10-14 13:02:50.481101        \N    \N    \N    0    \N    \N    \N    \N    male
14491    Maximilian    Hand    chadd@bradtkemacgyver.com    \N    Martinique    East Gilbertoborough    18530 Stehr Point    34878-4263    South Carolina    2016-09-12 23:42:41.205813    2016-10-14 13:02:50.486511        \N    \N    \N    0    \N    \N    \N    \N    male
14492    Joanny    Willms    jorge@bashirian.com    \N    Falkland Islands (Malvinas)    New Maritza    74781 Enrique Land    42093    Maine    2016-09-16 04:59:06.421071    2016-10-14 13:02:50.491467        \N    \N    \N    0    \N    \N    \N    \N    male
14493    Raegan    Haley    piper@mcdermott.net    \N    Sudan    Lake Casimerfurt    23506 Emilie Freeway    81408-3171    Oregon    2016-07-15 21:49:58.015109    2016-10-14 13:02:50.497526        \N    \N    \N    0    \N    \N    \N    \N    female
14494    Stephen    Kreiger    tommie@donnelly.com    \N    Azerbaijan    Rosemarietown    170 Lucie Walks    31185-0968    North Dakota    2016-09-21 02:47:29.703284    2016-10-14 13:02:50.508371        \N    \N    \N    0    \N    \N    \N    \N    female
14495    Cassandra    Miller    josiane@blick.com    \N    Costa Rica    West Vincenzobury    25505 Cronin Cove    35181    New Hampshire    2016-08-30 20:55:51.608159    2016-10-14 13:02:50.515417        \N    \N    \N    0    \N    \N    \N    \N    male
14496    Natasha    Koepp    bria.mueller@heidenreichgusikowski.org    \N    Russian Federation    Coleshire    152 Carter Junctions    16514    Delaware    2016-07-16 04:06:43.659626    2016-10-14 13:02:50.522206        \N    \N    \N    0    \N    \N    \N    \N    male
14497    Lelia    Carter    lonzo.abshire@kuhn.name    \N    Montserrat    New Alvinahaven    681 Stephon Crossing    61237    Georgia    2016-09-08 01:57:30.676314    2016-10-14 13:02:50.529029        \N    \N    \N    0    \N    \N    \N    \N    male
14499    Cassandra    Veum    fred@cummingsrohan.io    \N    Kyrgyz Republic    South Alejandrin    109 Rigoberto Common    79720-9008    West Virginia    2016-09-28 02:06:06.626068    2016-10-14 13:02:50.55208        \N    \N    \N    0    \N    \N    \N    \N    female
14500    Jettie    Wilderman    larue@cole.net    \N    San Marino    West Corenestad    909 Lockman Drive    24571-0047    Connecticut    2016-07-04 07:56:52.075216    2016-10-14 13:02:50.55862        \N    \N    \N    0    \N    \N    \N    \N    male
14501    Glenna    Rohan    paris@hoeger.name    \N    Thailand    Lysanneborough    6316 Davonte Glens    43196    Michigan    2016-07-28 14:35:03.700228    2016-10-14 13:02:50.566479        \N    \N    \N    0    \N    \N    \N    \N    female
14502    Angela    Flatley    verla.klocko@mclaughlin.name    \N    Mali    North Aditya    2240 Armando Oval    30584-8160    Wisconsin    2016-09-23 22:07:58.335971    2016-10-14 13:02:50.572423        \N    \N    \N    0    \N    \N    \N    \N    male
14503    Antonette    Volkman    jennyfer.hayes@bartell.org    \N    Liberia    South Svenmouth    929 Bonita Plaza    47188    Colorado    2016-08-16 05:42:28.969923    2016-10-14 13:02:50.577104        \N    \N    \N    0    \N    \N    \N    \N    male
14505    Mollie    Crooks    vivian@harber.net    \N    Svalbard & Jan Mayen Islands    Ernsermouth    4577 Aron Brooks    64418-8899    Idaho    2016-07-13 21:34:42.659313    2016-10-14 13:02:50.582258        \N    \N    \N    0    \N    \N    \N    \N    female
14506    Leilani    Nienow    haan@daughertybogan.net    \N    Denmark    Port Novellaland    55614 Yadira Islands    66657    Louisiana    2016-08-15 15:09:00.417428    2016-10-14 13:02:50.589386        \N    \N    \N    0    \N    \N    \N    \N    female
14507    Quentin    Pfeffer    anya_goyette@murazik.com    \N    Pakistan    Coltonmouth    7524 Lorenza Bridge    80664    Kentucky    2016-07-02 10:49:41.598228    2016-10-14 13:02:50.594546        \N    \N    \N    0    \N    \N    \N    \N    male
14508    Hayley    Hermann    liam_turcotte@white.net    \N    Eritrea    Dorthymouth    71669 Joelle Corner    36968    Pennsylvania    2016-07-23 06:37:43.190981    2016-10-14 13:02:50.599638        \N    \N    \N    0    \N    \N    \N    \N    male
14509    Kiana    Considine    sherman.lakin@schroeder.co    \N    New Caledonia    O'Haratown    8751 Joshua Ferry    42657-9754    Louisiana    2016-07-16 01:35:46.681197    2016-10-14 13:02:50.604596        \N    \N    \N    0    \N    \N    \N    \N    female
14510    Alvena    Lockman    pauline_langosh@hamill.io    \N    Netherlands Antilles    North Ana    77354 Morgan Forks    88246    Maine    2016-07-12 09:29:12.861683    2016-10-14 13:02:50.60904        \N    \N    \N    0    \N    \N    \N    \N    female
14511    Marjory    Skiles    estevan@homenick.info    \N    Malawi    Smithland    5244 Fadel Junctions    15659-0831    Nevada    2016-07-20 22:22:48.013167    2016-10-14 13:02:50.614566        \N    \N    \N    0    \N    \N    \N    \N    female
14512    Antonette    Block    doug@kuhic.io    \N    Kuwait    North Osborneshire    435 Giuseppe Skyway    48567    Delaware    2016-09-20 04:19:20.561113    2016-10-14 13:02:50.624389        \N    \N    \N    0    \N    \N    \N    \N    male
14513    Armando    Reilly    lester_kerluke@kilbackprohaska.net    \N    Zimbabwe    South Agustina    91604 Weber Plaza    48525    Idaho    2016-08-24 18:00:36.351315    2016-10-14 13:02:50.643616        \N    \N    \N    0    \N    \N    \N    \N    female
14514    Zoey    Wunsch    raul_kunze@gibson.biz    \N    Slovenia    Albertaview    892 Maximus Mission    40885    New Mexico    2016-09-03 00:14:20.351219    2016-10-14 13:02:50.648925        \N    \N    \N    0    \N    \N    \N    \N    female
14559    Wanda    Harber    laurel@skileskulas.info    \N    Papua New Guinea    Quitzonshire    1984 Hegmann Creek    29523-9611    Indiana    2016-08-09 13:39:39.845615    2016-10-14 13:02:50.655764        \N    \N    \N    0    \N    \N    \N    \N    female
14515    Tyrique    Stracke    delaney_parker@dibbert.net    \N    Saint Vincent and the Grenadines    Ziemeland    8199 Walsh Station    59700    Wisconsin    2016-07-28 03:57:22.066046    2016-10-14 13:02:50.661834        \N    \N    \N    0    \N    \N    \N    \N    male
14516    Annabel    Trantow    zula_davis@sawayn.com    \N    Swaziland    Gracemouth    484 Gibson Cape    88697    Indiana    2016-08-19 04:24:24.786913    2016-10-14 13:02:50.669168        \N    \N    \N    0    \N    \N    \N    \N    female
14517    Titus    Mertz    mable.pfannerstill@quigley.name    \N    Honduras    Oralville    669 Bergnaum Isle    94488    Oklahoma    2016-09-08 10:23:58.622485    2016-10-14 13:02:50.674828        \N    \N    \N    0    \N    \N    \N    \N    female
14518    Ansel    Feest    alda.wiegand@oreilly.com    \N    Uruguay    Volkmanland    919 Moore Ports    67364-8651    Kentucky    2016-09-14 11:59:44.940745    2016-10-14 13:02:50.679543        \N    \N    \N    0    \N    \N    \N    \N    male
14519    Garrison    Ward    madge_schmidt@vandervortschmitt.com    \N    United Arab Emirates    Jacyntheborough    47226 Botsford Route    34936    Oregon    2016-07-27 09:53:24.61065    2016-10-14 13:02:50.68548        \N    \N    \N    0    \N    \N    \N    \N    male
14520    Ryley    Quitzon    savannah@lueilwitzlittle.co    \N    Estonia    Grahammouth    84226 Little Inlet    37892    Maine    2016-07-19 16:50:19.741867    2016-10-14 13:02:50.690073        \N    \N    \N    0    \N    \N    \N    \N    male
14521    Stacey    Davis    elta@jacobson.info    \N    Mali    Bernardmouth    193 Hessel Lodge    58859    Texas    2016-06-24 02:59:12.695983    2016-10-14 13:02:50.697829        \N    \N    \N    0    \N    \N    \N    \N    female
14522    Curt    McClure    horacio@pagac.info    \N    Anguilla    New Mauricemouth    522 Colin Fall    88059-5113    Iowa    2016-08-27 22:44:26.374725    2016-10-14 13:02:50.703179        \N    \N    \N    0    \N    \N    \N    \N    male
14523    Charles    Greenholt    eryn@muellersanford.io    \N    Tonga    Lake Garett    790 Vernice Shoal    27940-7097    Utah    2016-09-04 19:10:05.548395    2016-10-14 13:02:50.710767        \N    \N    \N    0    \N    \N    \N    \N    female
14524    Sienna    Pagac    earnestine@kuhnkerluke.net    \N    Gibraltar    Lake Albin    417 Alberta Corner    79619-5585    Nevada    2016-07-26 21:14:18.994137    2016-10-14 13:02:50.716019        \N    \N    \N    0    \N    \N    \N    \N    female
14525    Raul    Grimes    brooklyn@hickle.info    \N    Mauritius    Port Bessiechester    9889 Joany Unions    29944-0625    Minnesota    2016-09-15 20:33:24.145553    2016-10-14 13:02:50.721195        \N    \N    \N    0    \N    \N    \N    \N    female
14526    Yadira    Erdman    domenic@gislasonhane.name    \N    Equatorial Guinea    Port Jenniemouth    635 Geovanni Mountains    90957-8783    Washington    2016-06-25 23:26:11.321073    2016-10-14 13:02:50.754872        \N    \N    \N    0    \N    \N    \N    \N    male
14527    Noemi    Jast    laverna@walterlynch.net    \N    Rwanda    Lake Edwinshire    306 Runolfsson Coves    12008    Oklahoma    2016-07-26 21:24:25.241328    2016-10-14 13:02:50.763958        \N    \N    \N    0    \N    \N    \N    \N    male
14528    Mitchell    Johnson    gene_beatty@boganfranecki.net    \N    Niger    Lake Fannieview    1078 Ziemann Fork    17433-4908    Tennessee    2016-07-03 07:28:05.309358    2016-10-14 13:02:50.775282        \N    \N    \N    0    \N    \N    \N    \N    male
14529    Rogers    Emmerich    isabella@nitzsche.net    \N    Nauru    South Jeramy    246 Buddy Hill    31956    Virginia    2016-07-12 07:11:38.527426    2016-10-14 13:02:50.782139        \N    \N    \N    0    \N    \N    \N    \N    female
14530    Max    Bashirian    josianne.stehr@ankunding.com    \N    Suriname    Kshlerinshire    3100 Idella Lodge    79009    Maryland    2016-07-18 21:49:32.569742    2016-10-14 13:02:50.791903        \N    \N    \N    0    \N    \N    \N    \N    male
14531    Piper    Rohan    adolf@gusikowskirippin.net    \N    Morocco    Rossieberg    6344 Will Cape    17453-0485    Missouri    2016-07-04 09:15:04.717265    2016-10-14 13:02:50.798095        \N    \N    \N    0    \N    \N    \N    \N    male
14532    Maxwell    Casper    hector@lindgren.net    \N    Faroe Islands    South Jerrod    2502 Stark Port    68718    Wisconsin    2016-09-27 05:51:27.644721    2016-10-14 13:02:50.803494        \N    \N    \N    0    \N    \N    \N    \N    female
14533    Ben    Bernhard    clementine_conn@wisozk.org    \N    Cyprus    Calebstad    92446 McKenzie Orchard    66355-1725    Oregon    2016-06-29 22:06:08.935686    2016-10-14 13:02:50.808139        \N    \N    \N    0    \N    \N    \N    \N    male
14534    Keyshawn    Torp    darion@haleykertzmann.io    \N    Rwanda    South Carley    19703 Nader Station    55459-6643    Maine    2016-06-25 03:09:20.50058    2016-10-14 13:02:50.816229        \N    \N    \N    0    \N    \N    \N    \N    female
14535    Leatha    Conroy    marianne.kshlerin@kerlukeschimmel.biz    \N    Sierra Leone    Lake Orafort    12520 Mateo Plain    37727    Massachusetts    2016-07-28 18:07:44.354877    2016-10-14 13:02:50.820849        \N    \N    \N    0    \N    \N    \N    \N    female
14536    Audrey    Hermiston    georgianna@luettgen.info    \N    Japan    North Idella    659 Eichmann Drives    74698-4205    Indiana    2016-07-02 08:11:51.475828    2016-10-14 13:02:50.827961        \N    \N    \N    0    \N    \N    \N    \N    female
14537    Neha    Quitzon    izabella@wildermankunde.com    \N    Djibouti    South Joesphton    8734 Sporer Landing    37916    Massachusetts    2016-09-22 00:08:38.559035    2016-10-14 13:02:50.832966        \N    \N    \N    0    \N    \N    \N    \N    female
14538    Colt    Hermann    lacey.schulist@effertzlarson.com    \N    Virgin Islands, British    East Fritz    68890 Cormier Underpass    45983-2089    New Jersey    2016-08-09 00:59:21.593518    2016-10-14 13:02:50.837663        \N    \N    \N    0    \N    \N    \N    \N    male
14539    Oswald    Ward    jace@lang.co    \N    Zambia    New Hortense    208 Mohr Brooks    27268-0323    North Carolina    2016-07-31 06:02:45.00279    2016-10-14 13:02:50.841996        \N    \N    \N    0    \N    \N    \N    \N    female
14540    Ricky    Barton    noah.farrell@larkinsmith.name    \N    Namibia    Klockomouth    1897 Preston Valley    33294-5311    South Dakota    2016-09-17 01:23:34.968267    2016-10-14 13:02:50.846977        \N    \N    \N    0    \N    \N    \N    \N    female
14541    Adela    Schroeder    kody@dickilittel.name    \N    Jamaica    North Ernesto    7536 John Points    88754    Michigan    2016-08-15 21:16:54.349439    2016-10-14 13:02:50.851969        \N    \N    \N    0    \N    \N    \N    \N    female
14542    Alexandria    Wisoky    melisa_bashirian@ritchie.info    \N    Angola    Anastaciostad    2775 Rosie Hollow    86753    Montana    2016-08-20 22:50:56.487081    2016-10-14 13:02:50.856986        \N    \N    \N    0    \N    \N    \N    \N    female
14543    Alayna    Balistreri    adella.hickle@haagtorp.com    \N    Belgium    East Lauren    8168 Coleman Landing    58956-8340    Massachusetts    2016-07-11 11:19:46.276252    2016-10-14 13:02:50.862286        \N    \N    \N    0    \N    \N    \N    \N    male
14544    Kendra    Krajcik    dulce_bins@mclaughlinrunte.com    \N    United Kingdom    Kohlerview    7802 Mills Mountain    81165-1258    Arkansas    2016-06-30 07:12:29.354701    2016-10-14 13:02:50.867662        \N    \N    \N    0    \N    \N    \N    \N    female
16617    Junius    Murray    marcos@handziemann.com    \N    Germany    Lake Clark    17851 Treva Burg    97954    Maine    2016-08-23 18:53:54.041672    2016-10-14 13:02:50.872089        \N    \N    \N    0    \N    \N    \N    \N    male
14545    Triston    Huels    eulalia_macgyver@treutel.biz    \N    Philippines    Fadelbury    846 Hassie Turnpike    36203-7448    Vermont    2016-08-09 08:11:44.245294    2016-10-14 13:02:50.876382        \N    \N    \N    0    \N    \N    \N    \N    female
14546    Elenor    Ullrich    fae.schmeler@dare.biz    \N    Aruba    Turcottehaven    3829 Graham Springs    23413-4478    Massachusetts    2016-08-08 19:34:29.88639    2016-10-14 13:02:50.880964        \N    \N    \N    0    \N    \N    \N    \N    female
14547    Jolie    Jacobi    nestor@schamberger.com    \N    Bahrain    South Margret    780 Nader Course    75842    Arizona    2016-08-11 10:42:10.265806    2016-10-14 13:02:50.888941        \N    \N    \N    0    \N    \N    \N    \N    male
14548    Kimberly    Willms    autumn.kling@west.biz    \N    Egypt    Boyleland    113 Hollie Mill    42268    Washington    2016-07-28 02:41:41.350399    2016-10-14 13:02:50.89352        \N    \N    \N    0    \N    \N    \N    \N    male
14549    Willis    Hilll    arjun@sengerabbott.info    \N    Cameroon    Jastport    5926 Gleichner Turnpike    31462-2188    South Dakota    2016-07-15 02:22:17.076366    2016-10-14 13:02:50.897736        \N    \N    \N    0    \N    \N    \N    \N    male
14550    Linnie    Hettinger    moshe.rice@collierheaney.name    \N    French Guiana    Annetteview    46171 Blick Harbor    49481    Illinois    2016-09-07 19:33:14.645731    2016-10-14 13:02:50.901936        \N    \N    \N    0    \N    \N    \N    \N    female
14551    Vergie    Crooks    miracle@pfeffer.biz    \N    Afghanistan    Lake Hughshire    3018 Damion Lodge    89223-0484    Connecticut    2016-09-13 16:43:01.357924    2016-10-14 13:02:50.906179        \N    \N    \N    0    \N    \N    \N    \N    male
14552    Jeramie    Bailey    saul_kemmer@muller.info    \N    South Africa    Kaitlinport    75414 Corkery Lakes    29704-6455    Virginia    2016-09-07 07:54:39.183204    2016-10-14 13:02:50.910261        \N    \N    \N    0    \N    \N    \N    \N    male
14553    Roscoe    Stracke    krystal_wyman@wehner.co    \N    Mauritania    North Leilastad    674 Garett Ford    53118-0780    Florida    2016-06-24 06:22:56.394945    2016-10-14 13:02:50.915041        \N    \N    \N    0    \N    \N    \N    \N    female
14554    Adele    Lang    jee@wisozk.name    \N    Bouvet Island (Bouvetoya)    Friesenview    6547 Schneider Trail    29914    Illinois    2016-06-25 09:26:05.181552    2016-10-14 13:02:50.919765        \N    \N    \N    0    \N    \N    \N    \N    male
14555    Jeffry    Altenwerth    zane.nader@kerluke.com    \N    Virgin Islands, U.S.    West Jaden    36056 Larson Stream    19633-5093    Texas    2016-09-14 15:08:08.58047    2016-10-14 13:02:50.924058        \N    \N    \N    0    \N    \N    \N    \N    female
14556    Zelda    Ernser    emie.vonrueden@kunzecollins.co    \N    Solomon Islands    South Lennie    425 Royce Trail    11129    Washington    2016-09-15 01:04:58.178138    2016-10-14 13:02:50.928618        \N    \N    \N    0    \N    \N    \N    \N    female
14557    Winona    Wilkinson    kristian_krajcik@ankundingleffler.net    \N    Svalbard & Jan Mayen Islands    Christiansenbury    6669 Keebler Valleys    43428    Louisiana    2016-06-29 17:14:20.595859    2016-10-14 13:02:50.933549        \N    \N    \N    0    \N    \N    \N    \N    female
14558    Ralph    Romaguera    elwin@prosacco.org    \N    Austria    North Valentineton    4843 Talia Lodge    46855-1207    Louisiana    2016-09-13 13:34:45.103843    2016-10-14 13:02:50.93924        \N    \N    \N    0    \N    \N    \N    \N    male
14560    Orion    Streich    katlyn@turnerromaguera.org    \N    Netherlands Antilles    North Herbert    44355 Howe Rest    78941    Maine    2016-09-04 18:58:40.00159    2016-10-14 13:02:50.944112        \N    \N    \N    0    \N    \N    \N    \N    female
14561    Janick    Wolf    enid.ward@cormier.com    \N    Germany    Lake Corrine    2770 Maynard Camp    99985-7625    Minnesota    2016-08-01 20:51:32.019797    2016-10-14 13:02:50.949408        \N    \N    \N    0    \N    \N    \N    \N    male
14562    Federico    Rosenbaum    deven.weimann@marquardt.io    \N    Kenya    East Emerald    79692 Yundt Point    11608    Alabama    2016-06-24 15:13:05.760505    2016-10-14 13:02:50.954083        \N    \N    \N    0    \N    \N    \N    \N    female
14563    Ignatius    Mraz    caria.windler@lockmanoberbrunner.name    \N    Gibraltar    Zulaufport    17195 Jeromy Trail    13281    Tennessee    2016-07-15 20:45:55.520712    2016-10-14 13:02:50.958336        \N    \N    \N    0    \N    \N    \N    \N    male
14564    Alan    Purdy    tad_ernser@rowe.net    \N    Christmas Island    Lake Omari    18723 Gerlach Skyway    62211-9014    South Carolina    2016-07-28 07:38:40.614194    2016-10-14 13:02:50.96313        \N    \N    \N    0    \N    \N    \N    \N    female
14565    Mable    Hudson    kaylah@lakinromaguera.info    \N    Mexico    South Ocieton    99990 Don Station    52212-2443    Arizona    2016-07-02 23:56:06.983099    2016-10-14 13:02:50.967617        \N    \N    \N    0    \N    \N    \N    \N    female
14566    Vidal    Rohan    mathias@greenfelder.io    \N    Saint Martin    Curtismouth    642 Jayson Tunnel    46571-8980    Maine    2016-08-02 18:14:30.151947    2016-10-14 13:02:50.972153        \N    \N    \N    0    \N    \N    \N    \N    male
14567    Maximo    Goyette    jaime@windler.biz    \N    Malta    West Carolinaton    519 Aiden Locks    87558-4379    Utah    2016-08-18 23:56:13.563997    2016-10-14 13:02:50.977058        \N    \N    \N    0    \N    \N    \N    \N    male
14568    Elliott    Nolan    soledad@rosenbaum.info    \N    Jersey    Lake Samara    2878 Cummerata Place    78091-7019    Delaware    2016-09-04 13:35:08.734659    2016-10-14 13:02:50.981878        \N    \N    \N    0    \N    \N    \N    \N    male
14570    Jacinthe    Anderson    rocio.cremin@miller.info    \N    Cocos (Keeling) Islands    Port Mandymouth    10558 Aniya Lakes    77638    Texas    2016-08-09 03:42:17.492171    2016-10-14 13:02:50.98577        \N    \N    \N    0    \N    \N    \N    \N    male
14571    Jean    Gleason    mateo@zboncak.org    \N    Czech Republic    Port Francesca    14833 Schinner Crossroad    44217-0417    West Virginia    2016-08-19 01:45:55.814044    2016-10-14 13:02:50.989678        \N    \N    \N    0    \N    \N    \N    \N    male
14572    Alexandra    Hegmann    sylvan.haley@mullerrogahn.net    \N    Ukraine    West Paris    1823 Jaquan Turnpike    45035    Pennsylvania    2016-06-29 05:01:31.023166    2016-10-14 13:02:50.994601        \N    \N    \N    0    \N    \N    \N    \N    male
14573    Burnice    Conn    louvenia_brakus@legros.org    \N    Djibouti    Brainchester    730 Gene Mountains    25128    Texas    2016-09-26 12:01:09.882484    2016-10-14 13:02:50.998933        \N    \N    \N    0    \N    \N    \N    \N    male
14574    Mariano    Greenfelder    jamaal_tromp@gorczany.org    \N    Northern Mariana Islands    North Estella    2741 Bertha Fall    81600    North Dakota    2016-07-23 01:18:01.81955    2016-10-14 13:02:51.003988        \N    \N    \N    0    \N    \N    \N    \N    male
14575    Cristopher    O'Conner    bianka.treutel@sengerrunte.info    \N    Liechtenstein    West Syble    589 Hessel Flat    56154    Delaware    2016-06-23 09:43:48.583083    2016-10-14 13:02:51.009213        \N    \N    \N    0    \N    \N    \N    \N    male
14576    Anika    Cormier    kayley@friesenprice.com    \N    Ukraine    Candidafort    56411 Clinton Highway    50313    Washington    2016-07-28 16:23:47.402182    2016-10-14 13:02:51.014442        \N    \N    \N    0    \N    \N    \N    \N    female
14577    Rocio    Hills    anais_stokes@greenfelder.org    \N    Gabon    North Blakeborough    332 Dicki Course    67924-0088    Delaware    2016-06-25 04:08:24.739894    2016-10-14 13:02:51.018942        \N    \N    \N    0    \N    \N    \N    \N    female
14578    Rowland    Nitzsche    gayle_leuschke@lynch.biz    \N    Brunei Darussalam    Trompton    6113 Roma Spurs    10965-0607    Montana    2016-09-09 00:12:31.243963    2016-10-14 13:02:51.023222        \N    \N    \N    0    \N    \N    \N    \N    female
14579    Gilda    Morar    baylee_hodkiewicz@gutkowski.name    \N    Yemen    East Madonnaport    280 Yundt Centers    86982    Washington    2016-08-12 00:29:10.1497    2016-10-14 13:02:51.026984        \N    \N    \N    0    \N    \N    \N    \N    male
14580    Zelda    Reichel    sydnie.blick@bednarheller.biz    \N    Colombia    Erdmanberg    865 Alek Stream    25193    North Dakota    2016-07-04 07:28:38.464965    2016-10-14 13:02:51.030709        \N    \N    \N    0    \N    \N    \N    \N    female
14581    Reese    Daugherty    katlynn@mosciski.biz    \N    South Africa    Yasminetown    60056 Boyer Lodge    57516-1061    Oregon    2016-08-27 18:27:34.710172    2016-10-14 13:02:51.034772        \N    \N    \N    0    \N    \N    \N    \N    female
14582    Connie    Klocko    brisa.hilpert@hodkiewicz.biz    \N    Liberia    Orvalview    941 Gutkowski Coves    52610    Tennessee    2016-06-23 20:59:07.783828    2016-10-14 13:02:51.03905        \N    \N    \N    0    \N    \N    \N    \N    female
14583    Darien    Swift    malcolm.metz@christiansen.io    \N    Singapore    Krisview    6348 Kim Corner    40841    Idaho    2016-07-01 09:14:28.605492    2016-10-14 13:02:51.043723        \N    \N    \N    0    \N    \N    \N    \N    female
14584    Magnus    Ankunding    deven@pacocha.org    \N    Kyrgyz Republic    East Braulio    14947 Annabel Ford    31392-6037    Ohio    2016-09-21 23:18:04.470247    2016-10-14 13:02:51.04803        \N    \N    \N    0    \N    \N    \N    \N    female
14585    Graciela    Rodriguez    kian@damore.com    \N    Bangladesh    Runteberg    8948 McLaughlin Island    18807-4376    Wyoming    2016-08-11 13:02:23.064831    2016-10-14 13:02:51.052476        \N    \N    \N    0    \N    \N    \N    \N    female
14586    Virgil    West    bud_hermann@wilkinsonlesch.org    \N    Dominican Republic    Jacobsonmouth    173 Gleichner Plains    16102-2350    Texas    2016-07-28 11:01:39.972725    2016-10-14 13:02:51.057026        \N    \N    \N    0    \N    \N    \N    \N    female
14587    Freddie    Erdman    kurt@abshire.com    \N    Kyrgyz Republic    Port Lamont    664 Torey Ranch    66187-1633    Utah    2016-09-12 13:53:57.113737    2016-10-14 13:02:51.070205        \N    \N    \N    0    \N    \N    \N    \N    female
14588    Pauline    Quigley    samanta@zulaufschamberger.name    \N    Georgia    Alisatown    9710 Anissa Drive    31143-2858    California    2016-09-16 01:21:55.518602    2016-10-14 13:02:51.075714        \N    \N    \N    0    \N    \N    \N    \N    female
14589    Abigayle    McKenzie    rolando@swiftleannon.net    \N    Congo    North Londontown    343 Lance Cove    69636-8121    New Hampshire    2016-06-30 14:14:41.5777    2016-10-14 13:02:51.079994        \N    \N    \N    0    \N    \N    \N    \N    male
14590    Maximillian    Hansen    martine@kshlerin.biz    \N    Tanzania    Johnschester    675 Sunny Street    57604    Minnesota    2016-07-26 07:42:29.434805    2016-10-14 13:02:51.084204        \N    \N    \N    0    \N    \N    \N    \N    female
14591    Nickolas    Bernier    monty.mraz@lubowitz.biz    \N    Congo    Lake Katlynnburgh    184 Hilpert Flat    92572-2068    Oregon    2016-08-24 12:21:24.57135    2016-10-14 13:02:51.088631        \N    \N    \N    0    \N    \N    \N    \N    female
14592    Buddy    Mayert    carmel.baumbach@brekke.co    \N    Pakistan    Annalisestad    2236 Dibbert Crest    96038-1228    Florida    2016-09-29 02:11:53.428835    2016-10-14 13:02:51.093043        \N    \N    \N    0    \N    \N    \N    \N    female
14593    Cassie    Zemlak    zachariah.ruel@connkuhlman.biz    \N    Nepal    East Shawnshire    460 Luis Fall    78151    Virginia    2016-09-08 22:14:49.489868    2016-10-14 13:02:51.09767        \N    \N    \N    0    \N    \N    \N    \N    female
14595    Gino    Block    blaise_stokes@farrellcollier.org    \N    Zambia    West Carlosland    65669 Dillan Stream    60726-5856    Utah    2016-08-18 01:44:43.357306    2016-10-14 13:02:51.102529        \N    \N    \N    0    \N    \N    \N    \N    female
14597    Louvenia    Stokes    allene@boyleeffertz.info    \N    Liberia    South Waylonchester    74120 Schumm Fields    45987    Oklahoma    2016-07-25 01:05:00.912522    2016-10-14 13:02:51.109481        \N    \N    \N    0    \N    \N    \N    \N    male
14598    Griffin    Rippin    helga@hills.biz    \N    Cayman Islands    East Naomie    9626 Ullrich Vista    74524-7141    Hawaii    2016-08-11 13:12:41.390453    2016-10-14 13:02:51.118733        \N    \N    \N    0    \N    \N    \N    \N    male
14599    Spencer    Douglas    kattie@gerlach.org    \N    Mali    Borertown    661 Drew Mission    17968-4473    Connecticut    2016-08-13 09:37:39.475344    2016-10-14 13:02:51.132387        \N    \N    \N    0    \N    \N    \N    \N    male
14600    Breana    Boyle    mabelle@stark.info    \N    Montenegro    Hymanmouth    32664 Willms Lock    86049-0861    Rhode Island    2016-07-23 14:03:07.321686    2016-10-14 13:02:51.139146        \N    \N    \N    0    \N    \N    \N    \N    male
14601    Gus    D'Amore    bennie.hudson@gibson.info    \N    Solomon Islands    Chynaberg    99079 Hagenes Island    46050-2537    North Dakota    2016-09-16 03:09:46.626504    2016-10-14 13:02:51.145485        \N    \N    \N    0    \N    \N    \N    \N    female
14602    Gavin    Nolan    rhoda@turner.info    \N    Gabon    Colinbury    12361 Champlin Mountains    72350    Hawaii    2016-07-04 23:01:52.195415    2016-10-14 13:02:51.150243        \N    \N    \N    0    \N    \N    \N    \N    female
14603    Dessie    Parisian    willard.bosco@cummings.org    \N    Russian Federation    Greenfeldermouth    79486 Blaise Village    87890-5817    California    2016-07-02 12:08:45.176717    2016-10-14 13:02:51.155198        \N    \N    \N    0    \N    \N    \N    \N    male
14604    Price    Hartmann    roxanne@okon.name    \N    Japan    South Heleneview    34192 Conroy Turnpike    48692-2158    Minnesota    2016-08-06 23:26:19.986788    2016-10-14 13:02:51.163036        \N    \N    \N    0    \N    \N    \N    \N    male
14605    Jolie    Flatley    mellie@smith.net    \N    Mali    South Monte    821 Colton Loaf    41432-3403    South Dakota    2016-09-16 00:36:38.863442    2016-10-14 13:02:51.167464        \N    \N    \N    0    \N    \N    \N    \N    male
14606    Reba    Sauer    hosea@halvorson.org    \N    Uzbekistan    North Rae    386 Lemke Pines    67286    Nebraska    2016-08-01 21:00:10.22481    2016-10-14 13:02:51.171864        \N    \N    \N    0    \N    \N    \N    \N    female
14607    Zechariah    Hansen    annette@herzog.co    \N    Equatorial Guinea    Daughertyside    74820 Ronaldo Expressway    91938-5665    Virginia    2016-08-29 06:57:46.805371    2016-10-14 13:02:51.1763        \N    \N    \N    0    \N    \N    \N    \N    female
14608    Marquis    Donnelly    gladyce@wilderman.net    \N    Cayman Islands    Rustychester    948 Khalid Passage    69956-5560    Wyoming    2016-09-17 03:24:21.711989    2016-10-14 13:02:51.180957        \N    \N    \N    0    \N    \N    \N    \N    female
14609    Anibal    Wisozk    colin_casper@pouros.co    \N    Myanmar    Elenorachester    65139 Murray Falls    20919-3152    Illinois    2016-08-05 16:27:55.95701    2016-10-14 13:02:51.18601        \N    \N    \N    0    \N    \N    \N    \N    female
14713    Foster    King    grant_schoen@white.name    \N    American Samoa    Priceberg    71401 Barrows Shoals    22650    New York    2016-09-26 13:24:34.520203    2016-10-14 13:02:51.194466        \N    \N    \N    0    \N    \N    \N    \N    male
14610    Christine    Cormier    kathlyn.doyle@johns.info    \N    Guatemala    North Alessandrofurt    3208 Sandra Summit    26001-1887    Oklahoma    2016-08-11 03:08:41.274952    2016-10-14 13:02:51.199423        \N    \N    \N    0    \N    \N    \N    \N    female
14611    Alan    Reichert    alexanne@pacocha.io    \N    Antigua and Barbuda    Conradborough    192 Mervin Trail    23896    Delaware    2016-09-01 10:06:22.870361    2016-10-14 13:02:51.203868        \N    \N    \N    0    \N    \N    \N    \N    female
14612    Ben    Lubowitz    saul_wyman@fahey.name    \N    Zambia    East Eldon    94893 Swaniawski Plains    43837    Indiana    2016-07-29 00:19:03.761569    2016-10-14 13:02:51.207772        \N    \N    \N    0    \N    \N    \N    \N    male
14613    Kassandra    Quitzon    lonzo@hoppe.co    \N    Bangladesh    New Rettamouth    636 Kemmer Stravenue    62747-2245    Colorado    2016-08-15 17:33:52.164849    2016-10-14 13:02:51.211749        \N    \N    \N    0    \N    \N    \N    \N    male
14614    Tyree    Crooks    alanis.ledner@jastkrajcik.co    \N    French Guiana    Swiftfort    809 Unique Stream    80344-8404    Georgia    2016-09-21 03:53:04.793654    2016-10-14 13:02:51.215679        \N    \N    \N    0    \N    \N    \N    \N    male
14615    Alexa    Hand    edgardo@lind.com    \N    Saint Helena    Angelineville    5766 Okuneva Gateway    48971-3412    New York    2016-06-23 01:16:09.35968    2016-10-14 13:02:51.219868        \N    \N    \N    0    \N    \N    \N    \N    male
14616    Estelle    Schuster    sydnie_daugherty@labadie.org    \N    Syrian Arab Republic    Earnestineview    1136 Johns Inlet    97682    Arkansas    2016-08-24 11:51:27.799147    2016-10-14 13:02:51.229605        \N    \N    \N    0    \N    \N    \N    \N    female
14617    Tierra    Cole    rae@schulist.com    \N    United Arab Emirates    South Priscilla    80963 Judson Square    74716-2299    Texas    2016-07-23 20:50:06.453394    2016-10-14 13:02:51.235372        \N    \N    \N    0    \N    \N    \N    \N    female
14618    Freida    Kunze    jolie_rodriguez@paucekhodkiewicz.co    \N    Denmark    Veronicatown    219 Daphney Underpass    31437    Massachusetts    2016-09-07 15:50:13.548705    2016-10-14 13:02:51.239935        \N    \N    \N    0    \N    \N    \N    \N    female
14619    Eldon    Steuber    jamel@lind.org    \N    Northern Mariana Islands    Ratkemouth    68063 Ratke Ways    26332-5615    Utah    2016-06-24 22:31:38.854624    2016-10-14 13:02:51.244307        \N    \N    \N    0    \N    \N    \N    \N    male
14620    Francisca    Graham    raquel@johnsmarvin.org    \N    Russian Federation    Metzside    34348 Emard Tunnel    84041    Ohio    2016-06-28 18:26:34.38038    2016-10-14 13:02:51.249527        \N    \N    \N    0    \N    \N    \N    \N    male
14622    Idella    Shanahan    jacques.kuvalis@gorczanyhomenick.info    \N    Palau    Jakobton    9951 Larson Ranch    99546    Oregon    2016-07-09 17:09:19.29258    2016-10-14 13:02:51.256003        \N    \N    \N    0    \N    \N    \N    \N    female
14623    Makenzie    Deckow    ettie@halvorson.name    \N    Denmark    Jastview    4227 Scottie Turnpike    39824-2404    New Mexico    2016-09-24 02:06:07.422701    2016-10-14 13:02:51.260705        \N    \N    \N    0    \N    \N    \N    \N    female
14624    Emmanuel    Rice    marcelino.hilll@kochrau.org    \N    Thailand    Bettymouth    953 Schuster Knoll    85417    Hawaii    2016-07-25 12:27:29.912178    2016-10-14 13:02:51.265895        \N    \N    \N    0    \N    \N    \N    \N    female
14625    Roberto    O'Reilly    macy.sanford@reynoldspadberg.name    \N    Togo    North Shaynaburgh    65404 Armand Vista    24559    Virginia    2016-09-22 07:11:10.286827    2016-10-14 13:02:51.270241        \N    \N    \N    0    \N    \N    \N    \N    female
14626    Nolan    Terry    aglae_pollich@kirlinhomenick.io    \N    Antigua and Barbuda    East Maxie    9840 Burdette Coves    60516-0437    Massachusetts    2016-09-24 05:13:27.22878    2016-10-14 13:02:51.274773        \N    \N    \N    0    \N    \N    \N    \N    male
14627    Ole    Kihn    brenna@warddach.co    \N    Romania    Port Leratown    3126 Reuben Port    97435    Maryland    2016-09-23 20:38:48.879567    2016-10-14 13:02:51.280682        \N    \N    \N    0    \N    \N    \N    \N    female
14628    Liliana    Metz    guadalupe@vonrueden.info    \N    Nigeria    South Alekfurt    215 Elsa Mountains    23669    Alaska    2016-07-20 08:15:08.366494    2016-10-14 13:02:51.286425        \N    \N    \N    0    \N    \N    \N    \N    female
14629    Kallie    Sipes    kitty.block@wolf.io    \N    Syrian Arab Republic    Klington    325 Blanda Islands    68435    Tennessee    2016-08-04 01:58:08.481043    2016-10-14 13:02:51.293343        \N    \N    \N    0    \N    \N    \N    \N    male
14630    Madelynn    Cummerata    sadye@swift.name    \N    Albania    North Eulahmouth    37996 Rosina Divide    76608    New York    2016-09-08 23:36:13.116196    2016-10-14 13:02:51.298249        \N    \N    \N    0    \N    \N    \N    \N    female
14631    Schuyler    Jakubowski    kelley.rogahn@nicolasemard.com    \N    Mozambique    Brooksbury    105 Sanford Road    24372-0556    New York    2016-08-18 14:55:54.438261    2016-10-14 13:02:51.310658        \N    \N    \N    0    \N    \N    \N    \N    male
14632    Robin    Heidenreich    antwan@konopelskiblock.name    \N    Virgin Islands, U.S.    Brekkeland    497 Swift Crossing    65894    Texas    2016-06-28 11:15:29.511415    2016-10-14 13:02:51.319299        \N    \N    \N    0    \N    \N    \N    \N    female
14633    Lea    Huels    shanel@muller.io    \N    Nicaragua    New Cydneyhaven    441 Kelton Inlet    99376-6797    Nevada    2016-09-13 15:17:18.815586    2016-10-14 13:02:51.324394        \N    \N    \N    0    \N    \N    \N    \N    female
14634    Jaclyn    Yundt    maxime@bauchstanton.co    \N    New Caledonia    New Roselyn    46676 Felix Islands    10635    Rhode Island    2016-09-03 06:06:45.802936    2016-10-14 13:02:51.329287        \N    \N    \N    0    \N    \N    \N    \N    male
14635    Gardner    Hayes    heaven_volkman@spencerbeer.org    \N    Virgin Islands, U.S.    Vincenzoberg    743 Schuppe Park    59339-0744    Rhode Island    2016-07-27 23:20:40.05639    2016-10-14 13:02:51.335683        \N    \N    \N    0    \N    \N    \N    \N    male
14636    Chaim    Langworth    juanita@langworth.name    \N    Greenland    Port Aurelia    49891 Rory Island    41265-7796    Alabama    2016-07-28 21:54:07.932163    2016-10-14 13:02:51.342836        \N    \N    \N    0    \N    \N    \N    \N    male
14637    Antonetta    Grimes    trudie.gutmann@ferrymcclure.org    \N    Algeria    North Arianestad    49608 Hassan Throughway    62598-1265    New York    2016-08-04 02:10:31.26822    2016-10-14 13:02:51.350206        \N    \N    \N    0    \N    \N    \N    \N    female
14638    Norris    Thiel    ethan_feil@ebert.info    \N    Christmas Island    East Emanuelland    8587 Doyle Locks    17547-8227    Louisiana    2016-06-23 11:28:53.540778    2016-10-14 13:02:51.355295        \N    \N    \N    0    \N    \N    \N    \N    male
14639    Patrick    Cronin    bernadine_vandervort@cummings.org    \N    Djibouti    Port Juston    8925 Bauch Ports    95108-2244    New Mexico    2016-08-31 05:59:19.786915    2016-10-14 13:02:51.360358        \N    \N    \N    0    \N    \N    \N    \N    male
14640    Pearlie    Kemmer    amanda.upton@dubuqueferry.org    \N    Puerto Rico    North Curtbury    84744 Jakayla Village    24995    North Carolina    2016-09-07 03:02:22.075943    2016-10-14 13:02:51.365786        \N    \N    \N    0    \N    \N    \N    \N    female
14641    Claud    Langworth    ken.kshlerin@crist.info    \N    Peru    New Carley    3902 Murazik Light    75752    North Carolina    2016-08-29 11:04:21.553064    2016-10-14 13:02:51.370927        \N    \N    \N    0    \N    \N    \N    \N    female
14642    Duncan    Wilderman    eduardo_smitham@hagenesdavis.co    \N    Sweden    Rueckerville    99193 Sammie Turnpike    32280-4079    Illinois    2016-09-13 05:36:32.704075    2016-10-14 13:02:51.378382        \N    \N    \N    0    \N    \N    \N    \N    male
14645    Ed    McKenzie    lynn@marvincarter.biz    \N    Singapore    Candelarioville    313 King Circle    48860-5270    West Virginia    2016-09-07 16:51:56.702144    2016-10-14 13:02:51.383445        \N    \N    \N    0    \N    \N    \N    \N    male
14646    Bobby    Daugherty    josie.howell@prohaska.org    \N    Eritrea    Borisbury    5563 Bridgette Drive    74486-5944    North Carolina    2016-07-18 08:07:00.221667    2016-10-14 13:02:51.390476        \N    \N    \N    0    \N    \N    \N    \N    female
14647    Grover    Wolff    destany@terrytremblay.co    \N    Lebanon    Lake Ofelia    27926 Kunde Land    33109    Iowa    2016-09-27 21:06:10.776662    2016-10-14 13:02:51.395507        \N    \N    \N    0    \N    \N    \N    \N    male
14648    Mario    Von    van_lynch@douglas.org    \N    Democratic People's Republic of Korea    Port Louveniaville    9723 Weissnat Junctions    84591-7384    Montana    2016-08-18 08:29:45.768126    2016-10-14 13:02:51.400215        \N    \N    \N    0    \N    \N    \N    \N    female
14649    Ardella    Ritchie    travis@kilback.biz    \N    Guam    Port Simone    95463 Cassin Court    63212    California    2016-09-03 10:46:38.800099    2016-10-14 13:02:51.40526        \N    \N    \N    0    \N    \N    \N    \N    female
14650    Orrin    Parisian    astrid_nader@little.com    \N    Romania    West Lempistad    6586 Schimmel Passage    57899-1343    Connecticut    2016-08-22 13:52:54.033836    2016-10-14 13:02:51.410093        \N    \N    \N    0    \N    \N    \N    \N    female
14652    Kailee    Harvey    archibald@satterfield.biz    \N    Bhutan    Doloresborough    67105 Harrison Island    86927-1865    Ohio    2016-07-05 12:07:49.757004    2016-10-14 13:02:51.417238        \N    \N    \N    0    \N    \N    \N    \N    female
14653    Jeffery    Dietrich    abel@maggiowatsica.io    \N    Thailand    Lake Finn    193 Wellington Islands    87958    Indiana    2016-09-27 08:20:27.399613    2016-10-14 13:02:51.421952        \N    \N    \N    0    \N    \N    \N    \N    female
14654    Marta    Medhurst    jaylon.marvin@buckridge.name    \N    Costa Rica    Lake Rogelioburgh    174 Vilma Light    48684    Massachusetts    2016-08-31 10:25:21.239437    2016-10-14 13:02:51.42598        \N    \N    \N    0    \N    \N    \N    \N    male
14655    Afton    Satterfield    eudora_price@fadellittel.info    \N    India    East Melyssa    8685 McKenzie Fords    47597-8990    Nevada    2016-09-06 12:20:59.703998    2016-10-14 13:02:51.429979        \N    \N    \N    0    \N    \N    \N    \N    female
14656    Noemy    Leuschke    andreane_king@hintz.info    \N    Cote d'Ivoire    Lambertbury    71589 Runolfsdottir Ranch    24328-8818    Hawaii    2016-09-26 01:00:38.08261    2016-10-14 13:02:51.434182        \N    \N    \N    0    \N    \N    \N    \N    male
14657    Zoey    Welch    edgar@maggio.info    \N    Mayotte    Gilbertoton    11819 Schaden Ferry    14724-1908    Washington    2016-06-23 01:10:24.267619    2016-10-14 13:02:51.438337        \N    \N    \N    0    \N    \N    \N    \N    male
14658    Rodrigo    Ward    alena@grant.net    \N    Poland    Veumfort    166 Bode Circles    89074-9454    Maryland    2016-07-14 17:26:25.484277    2016-10-14 13:02:51.442811        \N    \N    \N    0    \N    \N    \N    \N    female
14659    Adeline    Walker    clay.shields@bergnaumjast.net    \N    Romania    Kiratown    2887 Otis Gardens    74063    Arkansas    2016-07-06 12:21:39.722007    2016-10-14 13:02:51.447241        \N    \N    \N    0    \N    \N    \N    \N    female
14660    Bailee    Kozey    antoinette@watsicaheidenreich.net    \N    United States of America    Weberstad    38038 Mosciski Park    70286    Kentucky    2016-08-22 03:59:21.241243    2016-10-14 13:02:51.451635        \N    \N    \N    0    \N    \N    \N    \N    female
14661    Napoleon    Jaskolski    delia.heaney@jacobsonmayer.biz    \N    Cameroon    Weissnatside    90007 Simonis Springs    53481-7974    Michigan    2016-07-28 21:58:03.295412    2016-10-14 13:02:51.458705        \N    \N    \N    0    \N    \N    \N    \N    female
14662    Royce    Bosco    micah@ferry.io    \N    Congo    Kutchchester    407 Jaycee Pine    75931-0987    Maryland    2016-07-25 20:43:43.849343    2016-10-14 13:02:51.463374        \N    \N    \N    0    \N    \N    \N    \N    male
14663    Oran    Erdman    camren.kozey@beckertillman.io    \N    Reunion    New Deondre    60953 Botsford Row    19194-8690    Utah    2016-08-17 13:33:15.543597    2016-10-14 13:02:51.467825        \N    \N    \N    0    \N    \N    \N    \N    male
14664    Fatima    Kuhic    mallie.parisian@bode.name    \N    Palau    Bernieton    478 Flatley Trail    65905-8867    Wyoming    2016-08-11 23:08:12.108722    2016-10-14 13:02:51.472473        \N    \N    \N    0    \N    \N    \N    \N    female
14665    Fred    Crona    benjamin_abbott@schumm.biz    \N    Belgium    Littelville    233 Abernathy Meadows    27363    Utah    2016-08-17 18:54:46.931258    2016-10-14 13:02:51.476944        \N    \N    \N    0    \N    \N    \N    \N    female
14666    Naomi    Haag    mariane_bahringer@rau.io    \N    Niue    Gibsonport    2625 Parisian Streets    82257-5771    South Dakota    2016-09-11 08:29:46.045872    2016-10-14 13:02:51.481451        \N    \N    \N    0    \N    \N    \N    \N    female
14667    Robbie    Brown    nicholaus.lemke@bauchoconnell.biz    \N    Lao People's Democratic Republic    Pfannerstillton    151 Kuhlman Mount    91175-8471    Arizona    2016-07-25 16:15:44.222966    2016-10-14 13:02:51.485907        \N    \N    \N    0    \N    \N    \N    \N    male
14668    Valentin    Mueller    noemie_sporer@dicki.org    \N    Grenada    North Deloresshire    68809 Graham Path    19982-3117    Vermont    2016-08-01 21:00:25.06427    2016-10-14 13:02:51.490606        \N    \N    \N    0    \N    \N    \N    \N    male
14669    Adrianna    Ernser    ava.block@durganstamm.com    \N    Aruba    Eichmannhaven    396 Ruecker Meadows    96992-9816    Texas    2016-08-18 15:03:57.248522    2016-10-14 13:02:51.49535        \N    \N    \N    0    \N    \N    \N    \N    female
14670    Adrienne    Corkery    delta_treutel@hirthe.biz    \N    Mayotte    Augustshire    5974 Vandervort Lakes    17352-0835    Texas    2016-09-03 02:21:51.241286    2016-10-14 13:02:51.499988        \N    \N    \N    0    \N    \N    \N    \N    female
14671    Emmitt    Kilback    monty@mills.co    \N    Japan    West Camillefort    446 Ethel Throughway    17544    Rhode Island    2016-07-06 13:41:49.663987    2016-10-14 13:02:51.504666        \N    \N    \N    0    \N    \N    \N    \N    female
14672    Harley    Franecki    shirley_ritchie@beatty.info    \N    Jamaica    Sanfordstad    268 Price Branch    20249    Missouri    2016-09-14 02:36:37.86069    2016-10-14 13:02:51.509791        \N    \N    \N    0    \N    \N    \N    \N    male
14673    Willard    Sanford    mose@runte.co    \N    Holy See (Vatican City State)    South Brandynfurt    9264 Dejah Village    71759-1435    Illinois    2016-07-03 20:59:24.279098    2016-10-14 13:02:51.514427        \N    \N    \N    0    \N    \N    \N    \N    female
14674    Raven    Mante    victor_braun@greenholtprice.name    \N    Pitcairn Islands    Fadelfurt    700 Fae Pass    84016    New York    2016-07-04 00:17:01.167039    2016-10-14 13:02:51.521918        \N    \N    \N    0    \N    \N    \N    \N    male
14675    Kacie    Kunde    freda_kihn@rosenbaum.net    \N    Mauritius    Pagacbury    65179 Roberts Field    12397-2872    Alabama    2016-07-15 06:04:13.355213    2016-10-14 13:02:51.527218        \N    \N    \N    0    \N    \N    \N    \N    female
14676    Juanita    Kulas    skyla_shanahan@heaney.io    \N    Italy    West Ryleighborough    5397 Adelbert Unions    79898    Florida    2016-09-16 16:01:58.299935    2016-10-14 13:02:51.531964        \N    \N    \N    0    \N    \N    \N    \N    female
14677    Estefania    Becker    greg@mertzpacocha.io    \N    Cook Islands    Lake Alicia    921 McLaughlin Drive    61406    Tennessee    2016-07-18 05:31:49.67508    2016-10-14 13:02:51.537511        \N    \N    \N    0    \N    \N    \N    \N    female
14678    Jonathan    Klein    reece@schoen.biz    \N    Bahrain    Freemanton    4838 Labadie Harbor    16020-1225    Kentucky    2016-08-24 19:17:45.542739    2016-10-14 13:02:51.542201        \N    \N    \N    0    \N    \N    \N    \N    male
14679    Gloria    Torphy    rodolfo@wisozk.biz    \N    Denmark    East Christophe    520 Wilburn Ridges    80593    Illinois    2016-08-09 18:23:28.01936    2016-10-14 13:02:51.546426        \N    \N    \N    0    \N    \N    \N    \N    male
14680    Columbus    Kertzmann    verlie_weinat@graham.com    \N    Italy    Hickleville    66764 Huels Manor    50860-5287    Utah    2016-08-27 18:26:02.901282    2016-10-14 13:02:51.550542        \N    \N    \N    0    \N    \N    \N    \N    male
14681    Lillie    Collins    alexys@mcclureconsidine.org    \N    Comoros    North Angelicaborough    50292 Enid Crossing    20916-5909    Montana    2016-08-30 13:05:49.935362    2016-10-14 13:02:51.554536        \N    \N    \N    0    \N    \N    \N    \N    male
14682    Mckenna    Luettgen    alanis@bruenhoppe.info    \N    Tajikistan    North Wendy    8251 Tito Common    54986-7481    Nevada    2016-08-29 14:47:28.37261    2016-10-14 13:02:51.558743        \N    \N    \N    0    \N    \N    \N    \N    male
14683    Maye    Douglas    nicholaus_hammes@rohan.org    \N    Guam    Audreyview    59066 Bechtelar Path    31495    New Hampshire    2016-09-08 03:07:36.434443    2016-10-14 13:02:51.562857        \N    \N    \N    0    \N    \N    \N    \N    female
14684    Velda    Zboncak    cleo@kihn.io    \N    Turkey    Conorfort    837 Pouros Junction    82183-3595    Oregon    2016-07-07 18:25:59.254926    2016-10-14 13:02:51.567111        \N    \N    \N    0    \N    \N    \N    \N    female
14685    Trudie    Gibson    america@rohan.com    \N    Venezuela    South Waylon    626 Jenkins Lakes    94957-6094    South Dakota    2016-08-23 00:20:23.547384    2016-10-14 13:02:51.571609        \N    \N    \N    0    \N    \N    \N    \N    male
14686    Godfrey    Grant    lavada@beattyjacobson.name    \N    Norfolk Island    North Cheyenneberg    1081 Block Parkways    30845    Virginia    2016-08-26 14:03:19.687322    2016-10-14 13:02:51.575684        \N    \N    \N    0    \N    \N    \N    \N    female
14687    Ruthie    Abernathy    rey.toy@smithamvon.net    \N    Hong Kong    East Gladycemouth    80094 Rylan Avenue    38413-6492    North Carolina    2016-08-26 17:23:47.331629    2016-10-14 13:02:51.57967        \N    \N    \N    0    \N    \N    \N    \N    female
14688    Geraldine    Beer    furman.cormier@gerhold.net    \N    Croatia    Hermannberg    63115 Aurelio Corners    14322-7344    Tennessee    2016-09-29 03:07:24.461768    2016-10-14 13:02:51.583504        \N    \N    \N    0    \N    \N    \N    \N    male
14689    Reilly    Dietrich    jordon.hegmann@mraz.net    \N    Virgin Islands, U.S.    Walkerhaven    58018 Garrick Hill    34969    West Virginia    2016-09-01 16:37:14.603471    2016-10-14 13:02:51.587293        \N    \N    \N    0    \N    \N    \N    \N    female
14690    Priscilla    Tremblay    cicero.wolf@gutkowskimcdermott.com    \N    Portugal    South Junius    3499 Dare Canyon    20001    Nebraska    2016-09-14 14:48:43.817684    2016-10-14 13:02:51.591154        \N    \N    \N    0    \N    \N    \N    \N    female
14691    Mabelle    Stanton    perry@marquardt.name    \N    Armenia    Lake Andre    96843 Parisian Keys    88175-6543    Kentucky    2016-07-28 00:07:41.770844    2016-10-14 13:02:51.595464        \N    \N    \N    0    \N    \N    \N    \N    female
14694    Kathlyn    Powlowski    kaleigh@towne.biz    \N    Thailand    West Ollieborough    8561 Lenna Junction    68126-7385    Oregon    2016-07-29 10:57:15.054598    2016-10-14 13:02:51.59966        \N    \N    \N    0    \N    \N    \N    \N    female
14695    Wayne    Bernier    crawford@becker.co    \N    Mexico    Halvorsonland    53633 Padberg Dale    17339    Montana    2016-09-20 21:37:45.421435    2016-10-14 13:02:51.603761        \N    \N    \N    0    \N    \N    \N    \N    male
14696    Dorothy    Gibson    dahlia@koelpin.net    \N    Cuba    Port Uniquetown    14942 Lina Well    32100-1695    Mississippi    2016-08-13 13:39:43.692415    2016-10-14 13:02:51.608358        \N    \N    \N    0    \N    \N    \N    \N    male
14698    Gennaro    Mosciski    brando_waelchi@mayer.co    \N    Saint Kitts and Nevis    Bogisichchester    2214 Considine Villages    19487    Georgia    2016-07-22 08:00:26.306456    2016-10-14 13:02:51.617045        \N    \N    \N    0    \N    \N    \N    \N    female
14699    Elmer    Watsica    cloyd.purdy@jonesmohr.co    \N    Iran    Francischester    6769 Craig Union    75838-5307    New Mexico    2016-09-13 10:37:18.232458    2016-10-14 13:02:51.621173        \N    \N    \N    0    \N    \N    \N    \N    male
14700    Boyd    Miller    norbert@torp.org    \N    Japan    East Gianniborough    2280 Ila Ramp    52697    Florida    2016-07-26 16:05:08.850026    2016-10-14 13:02:51.625796        \N    \N    \N    0    \N    \N    \N    \N    female
14701    Zack    Koss    sheridan_bashirian@konopelskilittel.co    \N    El Salvador    Robertsburgh    2964 Carolyn Union    84765-2891    New York    2016-07-13 00:10:23.200681    2016-10-14 13:02:51.629758        \N    \N    \N    0    \N    \N    \N    \N    male
14702    Roel    McDermott    myron_okon@pfeffer.biz    \N    Saint Kitts and Nevis    Stonefort    866 Louie Mission    12019    Delaware    2016-08-09 18:14:55.291273    2016-10-14 13:02:51.634        \N    \N    \N    0    \N    \N    \N    \N    female
14703    Adeline    Reilly    aurelie@zboncakbailey.biz    \N    Sweden    Anatown    72576 Jamar Skyway    61911    Indiana    2016-07-24 16:28:24.005248    2016-10-14 13:02:51.638079        \N    \N    \N    0    \N    \N    \N    \N    male
14704    Crawford    Hackett    velma_mann@rutherfordveum.io    \N    Cocos (Keeling) Islands    New Ellsworthview    49704 Runolfsdottir Row    18049-8817    South Dakota    2016-08-12 14:22:34.059486    2016-10-14 13:02:51.642186        \N    \N    \N    0    \N    \N    \N    \N    male
14705    Eliseo    Homenick    marcel@dooleymayer.name    \N    Norfolk Island    South Pietro    5980 Donato Knoll    75104-4216    New Jersey    2016-09-09 20:54:41.231926    2016-10-14 13:02:51.646315        \N    \N    \N    0    \N    \N    \N    \N    female
14706    Princess    Gutmann    audreanne.simonis@dietrich.co    \N    Suriname    Clarabellehaven    456 Everette Mission    32618-1577    Indiana    2016-08-10 20:29:14.862934    2016-10-14 13:02:51.650339        \N    \N    \N    0    \N    \N    \N    \N    male
14707    Florian    Reilly    roma_rohan@steuber.co    \N    Senegal    Fritschstad    22228 Guido Loop    34039    Nebraska    2016-08-20 16:57:02.907273    2016-10-14 13:02:51.654562        \N    \N    \N    0    \N    \N    \N    \N    female
14708    Parker    Johnson    frederik.wiza@breitenberg.org    \N    Ethiopia    Ibrahimstad    961 Stiedemann Garden    75709    Virginia    2016-07-24 01:14:12.388559    2016-10-14 13:02:51.658678        \N    \N    \N    0    \N    \N    \N    \N    female
14709    Rudolph    Adams    duane@schmittmckenzie.com    \N    Nigeria    North Ebba    2007 Rebekah Roads    46380    Maryland    2016-09-25 12:43:53.211489    2016-10-14 13:02:51.663093        \N    \N    \N    0    \N    \N    \N    \N    male
14710    Luigi    Botsford    harley_kreiger@nienow.org    \N    Yemen    South Roxane    42452 Willie Pine    33785    Colorado    2016-09-09 18:43:30.554875    2016-10-14 13:02:51.667364        \N    \N    \N    0    \N    \N    \N    \N    male
14711    Ryder    Hagenes    leda_prohaska@cole.name    \N    Brunei Darussalam    Ankundingport    4618 Josiah Lodge    29909    Nebraska    2016-07-17 06:00:35.560861    2016-10-14 13:02:51.683051        \N    \N    \N    0    \N    \N    \N    \N    female
14712    Oren    Hessel    janis_gleichner@gradyauer.co    \N    Austria    West Dwight    7242 Schmeler Throughway    12785-3473    North Dakota    2016-08-08 13:18:57.447255    2016-10-14 13:02:51.687231        \N    \N    \N    0    \N    \N    \N    \N    male
14714    Stacey    Christiansen    paris@wintheiser.info    \N    Hong Kong    North Jamieton    462 Kayley Oval    31183-2428    Kentucky    2016-09-08 09:27:04.603899    2016-10-14 13:02:51.691495        \N    \N    \N    0    \N    \N    \N    \N    female
14715    Melyna    Batz    jarrett@langoshhodkiewicz.co    \N    Somalia    Lake Richmond    6574 Linda Overpass    16791-2956    Texas    2016-07-25 09:17:46.396506    2016-10-14 13:02:51.695838        \N    \N    \N    0    \N    \N    \N    \N    female
14716    Gussie    Vandervort    cortez.osinski@muller.biz    \N    Saint Pierre and Miquelon    Raynormouth    7378 Douglas Roads    43591-3917    South Carolina    2016-09-25 23:45:21.103265    2016-10-14 13:02:51.700238        \N    \N    \N    0    \N    \N    \N    \N    female
14717    Carli    Medhurst    elvie@keeblerbosco.info    \N    Turkmenistan    South Filomenaport    276 Derek Manor    96030-3659    Arkansas    2016-08-07 19:59:04.781229    2016-10-14 13:02:51.704618        \N    \N    \N    0    \N    \N    \N    \N    female
14718    Karlie    Cartwright    raoul.padberg@wiza.info    \N    Papua New Guinea    North Ernestinemouth    68732 Weimann Courts    32510-0653    Maryland    2016-06-30 02:26:42.447685    2016-10-14 13:02:51.708796        \N    \N    \N    0    \N    \N    \N    \N    male
14719    Barry    Pouros    neal.stark@pfeffer.name    \N    Saudi Arabia    West Jerald    595 Tremblay Path    64859-3605    California    2016-08-13 15:48:37.638533    2016-10-14 13:02:51.713632        \N    \N    \N    0    \N    \N    \N    \N    female
14720    Chaya    Reilly    lindsey.ruecker@ankundinghansen.name    \N    Estonia    Lake Gillian    48980 Clement Street    51392    Nebraska    2016-08-20 12:04:05.960146    2016-10-14 13:02:51.717627        \N    \N    \N    0    \N    \N    \N    \N    male
14721    Georgianna    Kautzer    frederique.dickens@braunschulist.co    \N    Nicaragua    New Braden    4831 Ima Courts    37766-0577    Utah    2016-09-27 00:11:32.280395    2016-10-14 13:02:51.722639        \N    \N    \N    0    \N    \N    \N    \N    female
14722    Yoshiko    Jast    sigmund.botsford@langoshskiles.net    \N    Virgin Islands, British    Prohaskatown    7082 Macejkovic Fords    19203-3761    Tennessee    2016-07-25 01:27:40.054546    2016-10-14 13:02:51.72767        \N    \N    \N    0    \N    \N    \N    \N    female
14723    Noel    O'Reilly    abel@cremin.io    \N    Niue    Daronview    2353 Keon Cliff    87453    North Carolina    2016-09-13 04:46:25.215984    2016-10-14 13:02:51.732232        \N    \N    \N    0    \N    \N    \N    \N    male
14724    Keyshawn    Hessel    enrique@dooley.co    \N    Saudi Arabia    West Sybleview    720 Filomena Harbor    95690    North Dakota    2016-06-23 07:22:56.950981    2016-10-14 13:02:51.736396        \N    \N    \N    0    \N    \N    \N    \N    female
14725    Zachariah    Feest    hyman_raynor@koepp.org    \N    Palestinian Territory    Lake Brionnatown    71955 Schmeler Lane    25677    Nebraska    2016-08-05 13:41:28.08416    2016-10-14 13:02:51.74114        \N    \N    \N    0    \N    \N    \N    \N    female
14727    Gail    Lebsack    sydney.bergnaum@runolfsdottir.org    \N    Northern Mariana Islands    Lake Sidneychester    869 Hayes Plaza    93084    New Mexico    2016-08-03 00:21:42.198766    2016-10-14 13:02:51.745507        \N    \N    \N    0    \N    \N    \N    \N    female
14728    Molly    Rolfson    micheal@prosacco.net    \N    Netherlands Antilles    Laurenceshire    2098 Cassin Roads    46295    Maryland    2016-09-22 13:46:35.400582    2016-10-14 13:02:51.750261        \N    \N    \N    0    \N    \N    \N    \N    male
14729    Beau    Rowe    hiram@weimannswaniawski.org    \N    Taiwan    Mattmouth    6243 Lukas Isle    18301-1830    Montana    2016-06-27 11:49:05.498317    2016-10-14 13:02:51.754708        \N    \N    \N    0    \N    \N    \N    \N    female
14730    Imelda    Kuphal    henry.johnston@conn.biz    \N    Antarctica (the territory South of 60 deg S)    South Arnoville    910 Walsh Neck    38020-4823    Tennessee    2016-07-03 23:59:24.307646    2016-10-14 13:02:51.758627        \N    \N    \N    0    \N    \N    \N    \N    male
14731    Myah    Mosciski    hunter@swaniawski.co    \N    Paraguay    Chesterstad    569 Elody Row    72548-1501    Florida    2016-07-11 07:32:24.514111    2016-10-14 13:02:51.76258        \N    \N    \N    0    \N    \N    \N    \N    male
14732    Mozell    Purdy    saige.christiansen@runolfonpowlowski.io    \N    Kazakhstan    Zechariahborough    174 Levi Crest    82466    Delaware    2016-09-23 22:18:55.960245    2016-10-14 13:02:51.766367        \N    \N    \N    0    \N    \N    \N    \N    male
14733    Reuben    Nader    narciso_schroeder@gutmannmaggio.io    \N    Oman    Bellfurt    6860 Schuster Keys    12097-0975    Arkansas    2016-06-27 12:28:58.906441    2016-10-14 13:02:51.770295        \N    \N    \N    0    \N    \N    \N    \N    female
14734    Winfield    Beer    urban@hyatt.io    \N    Germany    McGlynnport    7264 Jarrod Garden    58642-1668    Massachusetts    2016-08-27 03:26:00.706033    2016-10-14 13:02:51.774219        \N    \N    \N    0    \N    \N    \N    \N    female
14735    Arjun    Johns    maggie.lehner@satterfield.name    \N    French Southern Territories    Funkton    791 Tromp Extension    35644    Mississippi    2016-08-10 14:11:02.149696    2016-10-14 13:02:51.778167        \N    \N    \N    0    \N    \N    \N    \N    male
14736    Ismael    Wunsch    alfredo.zieme@huels.co    \N    Guadeloupe    Pricetown    81488 Lindgren Isle    49291-4650    Colorado    2016-06-22 15:25:00.808727    2016-10-14 13:02:51.782348        \N    \N    \N    0    \N    \N    \N    \N    male
14737    Sim    Langosh    edyth.heller@mcdermott.co    \N    Rwanda    East Einoland    7624 Lemke Camp    20544-9698    South Dakota    2016-07-01 12:25:36.193678    2016-10-14 13:02:51.78643        \N    \N    \N    0    \N    \N    \N    \N    female
14738    Maureen    Crooks    wilmer.goldner@gradywelch.com    \N    Yemen    Lake Myrtieport    5914 Casimer Stream    99321-1590    Pennsylvania    2016-06-29 01:09:16.584773    2016-10-14 13:02:51.790616        \N    \N    \N    0    \N    \N    \N    \N    male
14739    Freida    Lang    janie.friesen@carroll.org    \N    Netherlands Antilles    Port Abigayleside    5235 Cole Alley    23115-1531    Ohio    2016-07-23 06:18:31.846808    2016-10-14 13:02:51.794747        \N    \N    \N    0    \N    \N    \N    \N    female
14740    Dustin    Miller    ellie.wilkinson@thompsonfay.info    \N    Cayman Islands    Swiftmouth    1007 Bode Motorway    30720    Montana    2016-07-10 03:25:37.964114    2016-10-14 13:02:51.799209        \N    \N    \N    0    \N    \N    \N    \N    male
14741    Meta    Reichel    herminia@stokesroob.name    \N    Singapore    Port Anastasiachester    80249 Hoppe Common    21675-7921    California    2016-07-13 05:09:20.037727    2016-10-14 13:02:51.805163        \N    \N    \N    0    \N    \N    \N    \N    female
14742    Kevon    Cruickshank    hiram_crist@jacobson.io    \N    Ghana    East Vadastad    614 Witting Knolls    56699-6088    Minnesota    2016-09-15 02:04:41.303148    2016-10-14 13:02:51.810136        \N    \N    \N    0    \N    \N    \N    \N    male
15224    Jonathon    Ratke    jake.sauer@howewelch.biz    \N    Denmark    Corwinshire    645 Blick Common    78823    Kansas    2016-07-01 03:16:07.621001    2016-10-14 13:02:53.947262        \N    \N    \N    0    \N    \N    \N    \N    male
14743    Jo    Leffler    judy_funk@ziemannstracke.name    \N    French Guiana    East Aldenland    8533 Schaefer Cliffs    13548-6381    West Virginia    2016-07-03 08:41:40.553    2016-10-14 13:02:51.814938        \N    \N    \N    0    \N    \N    \N    \N    female
15031    Toby    Lakin    emie.kuhn@kreiger.io    \N    Bulgaria    Stanleyville    60255 Tina Street    26548-3620    Georgia    2016-09-18 06:12:28.846005    2016-10-14 13:02:53.055535        \N    \N    \N    0    \N    \N    \N    \N    female
14744    Bernadine    Hayes    cordell@legrostorp.co    \N    Guyana    New Paulinehaven    7843 Earline Burgs    88344-8201    Rhode Island    2016-07-10 18:14:44.728941    2016-10-14 13:02:51.819565        \N    \N    \N    0    \N    \N    \N    \N    female
14745    Hudson    Hand    clementine@schowalterbashirian.io    \N    Puerto Rico    Sauertown    528 Alexandre Lodge    72088-3479    Tennessee    2016-08-16 07:51:35.448423    2016-10-14 13:02:51.824271        \N    \N    \N    0    \N    \N    \N    \N    female
14746    Amir    Roberts    jaylin@mosciski.biz    \N    Czech Republic    New Nathenville    6504 Brakus Drive    76251-0424    Montana    2016-07-08 22:51:34.193504    2016-10-14 13:02:51.830563        \N    \N    \N    0    \N    \N    \N    \N    male
14747    Hassan    Cassin    pasquale@schamberger.io    \N    Burundi    New Joannybury    97789 Koby Square    84523-8413    Georgia    2016-07-16 18:30:01.301653    2016-10-14 13:02:51.835233        \N    \N    \N    0    \N    \N    \N    \N    female
14748    Enos    Funk    scottie@gislason.com    \N    Zambia    Walkerville    371 Abbott Centers    82334    Wyoming    2016-07-04 12:08:01.717659    2016-10-14 13:02:51.842262        \N    \N    \N    0    \N    \N    \N    \N    male
14749    Simeon    Hickle    giles.borer@paucek.org    \N    Saint Vincent and the Grenadines    New Diana    1346 Reynolds Point    28895    Nebraska    2016-07-15 17:03:04.416034    2016-10-14 13:02:51.846938        \N    \N    \N    0    \N    \N    \N    \N    female
14750    Eve    Erdman    mose@pacocha.co    \N    Andorra    Port Edwinafurt    37427 Hagenes Meadows    50620    Colorado    2016-07-13 16:04:04.720748    2016-10-14 13:02:51.851637        \N    \N    \N    0    \N    \N    \N    \N    male
14751    Ora    Klocko    lionel@herzog.io    \N    Antigua and Barbuda    West Keshaun    63262 O'Hara Ramp    58344    Vermont    2016-08-14 09:51:26.820699    2016-10-14 13:02:51.856305        \N    \N    \N    0    \N    \N    \N    \N    male
14752    Alexie    Jerde    kraig@dietrich.info    \N    Ireland    Port Declan    7014 Jeromy Crescent    52774    Iowa    2016-08-08 14:12:23.56208    2016-10-14 13:02:51.860963        \N    \N    \N    0    \N    \N    \N    \N    male
14753    Kimberly    Feeney    ru@treutelwunsch.net    \N    Anguilla    Turnerchester    41471 Casper Mount    42978-9278    Louisiana    2016-08-30 03:32:56.277725    2016-10-14 13:02:51.86614        \N    \N    \N    0    \N    \N    \N    \N    male
14754    Reta    Keebler    godfrey_brekke@kelerschowalter.io    \N    Benin    New Natalia    52155 Medhurst Club    77673    Tennessee    2016-07-09 08:15:15.67171    2016-10-14 13:02:51.870934        \N    \N    \N    0    \N    \N    \N    \N    male
14755    Adan    Grimes    nyasia@bahringer.org    \N    Ukraine    Gutkowskistad    86667 Lisa Lane    85272    California    2016-09-17 03:50:33.865424    2016-10-14 13:02:51.875664        \N    \N    \N    0    \N    \N    \N    \N    female
14756    Adolph    Roberts    vito@nikolaus.info    \N    Saint Helena    Freddyland    548 Helena Fork    97444    Illinois    2016-08-30 22:50:11.746788    2016-10-14 13:02:51.880157        \N    \N    \N    0    \N    \N    \N    \N    female
14757    Kailee    Berge    kristofer.considine@rempel.biz    \N    Guyana    Port Mateoside    894 Laverne Mountain    29377    Pennsylvania    2016-07-22 19:06:55.373637    2016-10-14 13:02:51.884796        \N    \N    \N    0    \N    \N    \N    \N    male
14758    Anya    Prohaska    jade@carroll.name    \N    Tanzania    Brownfort    424 Emmerich Pine    66316-9722    Wyoming    2016-09-10 08:28:00.375878    2016-10-14 13:02:51.889545        \N    \N    \N    0    \N    \N    \N    \N    female
14759    Carter    Corwin    carmella@wintheiser.io    \N    Syrian Arab Republic    Port Leonard    14142 Vallie Common    93439    California    2016-08-25 09:27:03.112626    2016-10-14 13:02:51.894519        \N    \N    \N    0    \N    \N    \N    \N    male
14760    Felicita    Mitchell    alfonso.shanahan@ernser.org    \N    Tajikistan    Abshireton    484 Celestine Plains    72959-4302    Utah    2016-09-29 05:06:45.183231    2016-10-14 13:02:51.899098        \N    \N    \N    0    \N    \N    \N    \N    female
14761    Giovanny    Lowe    abelardo_brekke@kilback.net    \N    Bosnia and Herzegovina    Raufurt    98091 King Route    10729    Idaho    2016-08-30 16:14:15.801463    2016-10-14 13:02:51.903825        \N    \N    \N    0    \N    \N    \N    \N    female
14762    Lenna    Greenfelder    darwin@konopelski.info    \N    Barbados    Lake Ezekielburgh    6808 Tremblay Drive    91657    Nebraska    2016-07-12 04:55:25.4331    2016-10-14 13:02:51.908506        \N    \N    \N    0    \N    \N    \N    \N    female
14763    Hailey    Turcotte    zane@luettgenhane.org    \N    Guyana    South Trudiechester    38736 Jeanie Alley    49093    New Hampshire    2016-08-11 07:23:27.538921    2016-10-14 13:02:51.913325        \N    \N    \N    0    \N    \N    \N    \N    female
14764    Lilla    Brekke    mireille@gislasonschowalter.org    \N    British Indian Ocean Territory (Chagos Archipelago)    Adrianland    3545 Bryce Rapids    82976-5432    West Virginia    2016-07-23 15:24:39.647286    2016-10-14 13:02:51.918015        \N    \N    \N    0    \N    \N    \N    \N    female
14765    Fae    Crona    eduardo_heaney@wisoky.co    \N    Reunion    Gaylordville    18879 Josianne Spur    39348    Iowa    2016-08-31 09:21:48.187951    2016-10-14 13:02:51.922657        \N    \N    \N    0    \N    \N    \N    \N    female
14766    Scot    Parker    destini@kertzmann.net    \N    Taiwan    Antonettatown    1846 Gaylord Station    31293-3068    Wyoming    2016-09-02 12:44:07.740062    2016-10-14 13:02:51.927259        \N    \N    \N    0    \N    \N    \N    \N    male
14767    Eulalia    Schiller    kelsi_ko@kovacekkuhn.io    \N    Guam    Jesustown    803 Hilario Forge    94370    Oregon    2016-09-28 06:04:52.659975    2016-10-14 13:02:51.931746        \N    \N    \N    0    \N    \N    \N    \N    male
14768    Arvid    Greenholt    jey_yundt@schroederblock.net    \N    Virgin Islands, U.S.    Runolfssonhaven    83699 Miles Union    42178    North Dakota    2016-07-20 18:03:52.3902    2016-10-14 13:02:51.936193        \N    \N    \N    0    \N    \N    \N    \N    male
14769    Carolanne    Buckridge    candida.emmerich@konopelskicarter.co    \N    Eritrea    Robertomouth    42219 Murazik Drive    66540-1022    Colorado    2016-07-26 17:49:56.093583    2016-10-14 13:02:51.940779        \N    \N    \N    0    \N    \N    \N    \N    male
14770    Marielle    Willms    camren_schaden@romaguera.biz    \N    Monaco    New Monroeport    92399 Gudrun Viaduct    38290-0601    Nevada    2016-09-16 20:57:29.040879    2016-10-14 13:02:51.945552        \N    \N    \N    0    \N    \N    \N    \N    male
14771    Velma    Waelchi    simeon_macgyver@senger.com    \N    Serbia    Port Hipolito    5652 Charlie Ways    39349-7276    Pennsylvania    2016-08-27 01:20:20.847951    2016-10-14 13:02:51.950025        \N    \N    \N    0    \N    \N    \N    \N    female
14772    Ashleigh    Reichert    caleb@tillmanschowalter.name    \N    Belize    Beerborough    714 Luther Pass    35671-1310    Nevada    2016-06-27 16:29:14.398728    2016-10-14 13:02:51.954226        \N    \N    \N    0    \N    \N    \N    \N    female
14773    Leda    Stroman    nadia@stamm.name    \N    Turks and Caicos Islands    Quitzonfort    18684 Wolf Spur    61973-2488    New Mexico    2016-07-27 08:51:34.848834    2016-10-14 13:02:51.958674        \N    \N    \N    0    \N    \N    \N    \N    male
14774    Daphnee    Kirlin    mallie.stark@rempel.info    \N    Christmas Island    Williamsonchester    7503 Fritsch Parkway    79417    Arizona    2016-07-05 19:45:55.188921    2016-10-14 13:02:51.963268        \N    \N    \N    0    \N    \N    \N    \N    female
14775    Erich    Heller    robert_davis@kemmer.org    \N    Mauritania    Lake Aryanna    6769 Goodwin Manor    30941-9537    Ohio    2016-07-17 09:30:05.274699    2016-10-14 13:02:51.967897        \N    \N    \N    0    \N    \N    \N    \N    female
14776    Jaylan    Wisoky    bridgette@sporer.io    \N    Haiti    Goodwinport    91725 Claudie Squares    17274-2632    South Carolina    2016-09-21 07:24:29.328037    2016-10-14 13:02:51.972559        \N    \N    \N    0    \N    \N    \N    \N    male
14777    Pearline    Glover    vito_hickle@olson.org    \N    Holy See (Vatican City State)    South Beauside    57964 Skiles Summit    40014    Ohio    2016-09-12 07:35:49.684104    2016-10-14 13:02:51.976985        \N    \N    \N    0    \N    \N    \N    \N    female
14778    Ulices    Jast    nelson.zemlak@barton.name    \N    Guernsey    Tiaburgh    111 Lehner Union    72457    Pennsylvania    2016-07-24 08:48:52.815388    2016-10-14 13:02:51.981739        \N    \N    \N    0    \N    \N    \N    \N    male
14779    Mandy    Becker    dewayne_berge@littlelindgren.io    \N    Singapore    South Willburgh    15368 Hane Estates    99405    Pennsylvania    2016-08-30 00:38:29.702059    2016-10-14 13:02:51.986317        \N    \N    \N    0    \N    \N    \N    \N    female
14780    Else    Lehner    gail@koepp.name    \N    Saint Vincent and the Grenadines    New Preciousfurt    96322 Griffin Knoll    42491-1953    Kentucky    2016-07-14 23:45:22.819836    2016-10-14 13:02:51.990455        \N    \N    \N    0    \N    \N    \N    \N    female
14781    Gudrun    Conroy    ervin@mcclure.com    \N    Cocos (Keeling) Islands    New Francesside    8880 Aylin Ports    36826    Ohio    2016-09-16 18:21:58.414606    2016-10-14 13:02:51.994571        \N    \N    \N    0    \N    \N    \N    \N    female
14782    Justice    Auer    hollis@hegmann.info    \N    Tuvalu    West Otiliashire    47534 Chris Well    99118-9176    Delaware    2016-07-01 04:09:30.600159    2016-10-14 13:02:51.998663        \N    \N    \N    0    \N    \N    \N    \N    male
14783    Georgette    Turner    kathryne@ohara.name    \N    Guam    Port Winnifredland    8549 Conn Brooks    40993    Missouri    2016-07-19 06:10:07.674563    2016-10-14 13:02:52.002795        \N    \N    \N    0    \N    \N    \N    \N    male
14784    Domenick    Paucek    dorothea@kautzer.biz    \N    Tajikistan    East Dannie    67226 Rex Plaza    19853    Delaware    2016-07-03 22:17:19.660222    2016-10-14 13:02:52.007021        \N    \N    \N    0    \N    \N    \N    \N    male
14785    Torrance    Lesch    lula@huelkonopelski.com    \N    Russian Federation    Mosciskimouth    457 Riley Springs    98308-9743    New York    2016-08-23 21:49:35.137625    2016-10-14 13:02:52.012164        \N    \N    \N    0    \N    \N    \N    \N    male
14786    Eden    O'Reilly    maribel_roberts@kulas.com    \N    Canada    East Jenifer    19004 Jaron Manors    80271    Louisiana    2016-07-24 05:12:32.338549    2016-10-14 13:02:52.016501        \N    \N    \N    0    \N    \N    \N    \N    female
14787    Rudolph    Rath    giles@towne.com    \N    Croatia    South Marciabury    796 Rebeka Prairie    95257-2950    Hawaii    2016-06-23 14:22:32.606646    2016-10-14 13:02:52.02056        \N    \N    \N    0    \N    \N    \N    \N    male
14788    Leif    Kuhlman    doug@okunevaklein.biz    \N    Angola    Crooksmouth    14067 O'Connell Ports    25149    North Dakota    2016-06-22 20:36:02.539549    2016-10-14 13:02:52.024403        \N    \N    \N    0    \N    \N    \N    \N    female
14789    Rossie    Johns    joshua.bruen@mcdermott.info    \N    Argentina    Larkinmouth    5166 Hope Freeway    51229-9728    Nebraska    2016-09-21 03:21:23.528    2016-10-14 13:02:52.028842        \N    \N    \N    0    \N    \N    \N    \N    male
14790    Jamir    Jacobi    marcos.tillman@parker.info    \N    Spain    North Kathleen    761 Heller Village    46703-6799    Tennessee    2016-07-13 13:48:33.627358    2016-10-14 13:02:52.032922        \N    \N    \N    0    \N    \N    \N    \N    female
14791    Lucienne    Lehner    dixie@rosenbaum.org    \N    Faroe Islands    East Garret    795 Feest Corners    71840-4301    Oregon    2016-08-09 11:12:34.738037    2016-10-14 13:02:52.037245        \N    \N    \N    0    \N    \N    \N    \N    female
14792    Josh    Rutherford    cornelius_christiansen@kunzepaucek.biz    \N    Cyprus    Port Carissa    74092 Luigi Views    18021    Wyoming    2016-09-13 01:29:46.391483    2016-10-14 13:02:52.042129        \N    \N    \N    0    \N    \N    \N    \N    male
14793    Mateo    Mayert    freida_oberbrunner@stokeswolff.net    \N    Samoa    Louveniaton    21024 Wehner Freeway    48653-6896    Kansas    2016-09-05 04:54:48.215421    2016-10-14 13:02:52.047203        \N    \N    \N    0    \N    \N    \N    \N    male
14794    Lolita    Kozey    will_conn@rodriguez.net    \N    Brazil    Deontefurt    95795 Rempel Track    74500    Massachusetts    2016-09-22 21:36:13.153644    2016-10-14 13:02:52.051448        \N    \N    \N    0    \N    \N    \N    \N    female
14795    Jaquelin    O'Keefe    micaela@watersterry.io    \N    French Guiana    West Samantastad    824 Littel Locks    93707    Wyoming    2016-08-16 17:43:25.055321    2016-10-14 13:02:52.055812        \N    \N    \N    0    \N    \N    \N    \N    female
14796    Cristobal    Aufderhar    alivia@rath.io    \N    Papua New Guinea    Kuhlmanfort    8502 Coy Rest    31509-8544    Maryland    2016-07-16 14:31:04.374676    2016-10-14 13:02:52.059618        \N    \N    \N    0    \N    \N    \N    \N    male
14797    Maia    Blanda    woodrow@cronaschiller.info    \N    Lesotho    South Filiberto    660 Brielle Track    10730-0778    Arkansas    2016-07-26 23:30:05.522755    2016-10-14 13:02:52.063918        \N    \N    \N    0    \N    \N    \N    \N    male
14798    Ricky    Senger    reina@dickens.info    \N    Sweden    West Jadenfort    49934 Cecile Oval    19396    Louisiana    2016-09-09 07:51:22.652444    2016-10-14 13:02:52.068657        \N    \N    \N    0    \N    \N    \N    \N    female
14799    Helmer    Spinka    maxine.howell@ondrickajohnson.net    \N    Botswana    New Richmondburgh    120 Richard Trace    69878    Utah    2016-08-09 00:38:17.550646    2016-10-14 13:02:52.077628        \N    \N    \N    0    \N    \N    \N    \N    female
14800    Courtney    West    mikayla@cremin.com    \N    Samoa    Tessport    215 Electa Ports    98343    Louisiana    2016-09-08 21:54:30.375324    2016-10-14 13:02:52.082389        \N    \N    \N    0    \N    \N    \N    \N    male
14801    Margarita    Kozey    laurie.reichert@streichdoyle.org    \N    Sao Tome and Principe    East Johan    65648 Mertz Drive    16548-9304    Kentucky    2016-08-04 02:46:01.118648    2016-10-14 13:02:52.08702        \N    \N    \N    0    \N    \N    \N    \N    female
14802    Autumn    Larkin    francesco@friesen.io    \N    Bahamas    Port Nova    164 Konopelski Terrace    24904-1393    Ohio    2016-09-20 11:48:32.619606    2016-10-14 13:02:52.091075        \N    \N    \N    0    \N    \N    \N    \N    female
14803    Hailie    Howell    mavis@watsica.net    \N    Lao People's Democratic Republic    Lueilwitzbury    67057 Bahringer Parkways    14648-8839    Ohio    2016-07-08 17:48:57.167335    2016-10-14 13:02:52.095484        \N    \N    \N    0    \N    \N    \N    \N    male
14804    Anissa    Ernser    madalyn@orn.name    \N    Bahamas    Asabury    6878 Hudson Causeway    32955-9348    Arkansas    2016-08-25 11:22:10.503608    2016-10-14 13:02:52.099542        \N    \N    \N    0    \N    \N    \N    \N    female
14805    Leslie    Grady    nathaniel_wuckert@smitham.io    \N    Pakistan    North Tod    4687 Yundt Tunnel    11902    West Virginia    2016-07-27 01:24:45.43791    2016-10-14 13:02:52.103831        \N    \N    \N    0    \N    \N    \N    \N    male
14806    Jimmy    Schroeder    gabe@sipes.net    \N    Comoros    Cliffordmouth    860 Chaya Plains    46108    New Mexico    2016-07-14 02:07:30.428347    2016-10-14 13:02:52.108043        \N    \N    \N    0    \N    \N    \N    \N    female
14807    Ervin    Homenick    sidney_ortiz@abshirewaters.co    \N    Benin    Yadiraton    90060 Gorczany Estates    89291-2900    Washington    2016-06-22 09:45:11.69445    2016-10-14 13:02:52.112492        \N    \N    \N    0    \N    \N    \N    \N    male
14808    Margaret    Morar    kaitlin@yundt.info    \N    Greenland    Gulgowskiland    6712 Larkin Mission    93242    Texas    2016-08-07 04:30:39.638393    2016-10-14 13:02:52.117554        \N    \N    \N    0    \N    \N    \N    \N    male
14809    Ralph    O'Connell    mark.mcdermott@wuckert.io    \N    Pitcairn Islands    Purdyland    33740 Albina Shore    72844-8895    Illinois    2016-07-28 22:13:26.666764    2016-10-14 13:02:52.122416        \N    \N    \N    0    \N    \N    \N    \N    female
14810    Hettie    Gibson    alfonso_kuphal@olson.biz    \N    Cuba    Hassietown    61559 Derek Stravenue    74203-6617    Indiana    2016-07-29 14:05:04.136894    2016-10-14 13:02:52.127131        \N    \N    \N    0    \N    \N    \N    \N    female
14811    Jaren    Lemke    aurelio_goodwin@harveyryan.com    \N    Norway    South Brody    47851 Nick Springs    12442-9937    South Carolina    2016-06-24 05:13:51.951574    2016-10-14 13:02:52.131318        \N    \N    \N    0    \N    \N    \N    \N    male
14812    Genoveva    Breitenberg    olen@king.co    \N    Gibraltar    Port Mollie    65732 Bruce Circles    67067    Alaska    2016-08-13 01:21:14.800851    2016-10-14 13:02:52.135693        \N    \N    \N    0    \N    \N    \N    \N    male
14813    Greg    Mosciski    pat@orn.com    \N    Israel    Jovanton    22918 Melvin Union    15515-4928    Kentucky    2016-08-16 05:50:10.162765    2016-10-14 13:02:52.140036        \N    \N    \N    0    \N    \N    \N    \N    female
14814    Taryn    Dare    rhiannon@rice.biz    \N    Turkey    North Sigurdfurt    110 Bailey Terrace    71213    Georgia    2016-07-17 14:50:30.402753    2016-10-14 13:02:52.14467        \N    \N    \N    0    \N    \N    \N    \N    female
14815    Caleb    Tillman    rolando@parker.org    \N    Liberia    Hayesview    8592 Hane Hill    93215    Pennsylvania    2016-09-25 02:41:36.509342    2016-10-14 13:02:52.149852        \N    \N    \N    0    \N    \N    \N    \N    female
14816    Myra    Spinka    hulda@macejkovicbode.biz    \N    Cyprus    New Scotview    5321 King Ports    66137    Nebraska    2016-08-03 14:32:34.321051    2016-10-14 13:02:52.154403        \N    \N    \N    0    \N    \N    \N    \N    male
14817    Sven    Bashirian    dina@sanford.biz    \N    Hungary    Mohrview    4533 Milan Courts    56425    Kansas    2016-09-26 04:06:52.347491    2016-10-14 13:02:52.158341        \N    \N    \N    0    \N    \N    \N    \N    male
14818    Zackary    Ritchie    aglae@weberdickens.biz    \N    Aruba    North Jarrod    73518 Bayer Keys    63819-0424    Georgia    2016-08-10 14:57:17.254475    2016-10-14 13:02:52.162959        \N    \N    \N    0    \N    \N    \N    \N    female
14819    Cielo    Schumm    friedrich@green.com    \N    Russian Federation    Kihnshire    9585 Rice Dam    23149-5323    Nebraska    2016-08-18 08:36:13.431591    2016-10-14 13:02:52.167566        \N    \N    \N    0    \N    \N    \N    \N    female
14820    Loren    Hettinger    virgil_lesch@bogisich.net    \N    Saint Pierre and Miquelon    Dareberg    74441 Violet Crossroad    32246-8813    New Mexico    2016-09-10 12:41:55.928861    2016-10-14 13:02:52.172433        \N    \N    \N    0    \N    \N    \N    \N    male
14821    Haven    Rodriguez    donato@creminconroy.co    \N    Guinea-Bissau    Piercebury    8502 McClure Skyway    61867-4035    Arkansas    2016-08-12 04:57:23.742997    2016-10-14 13:02:52.176987        \N    \N    \N    0    \N    \N    \N    \N    female
14822    Tyrique    Cassin    addie.rohan@ondricka.net    \N    Tuvalu    Raleighburgh    51289 Satterfield Courts    97423-9845    Wyoming    2016-07-04 14:22:51.665496    2016-10-14 13:02:52.181226        \N    \N    \N    0    \N    \N    \N    \N    male
14823    Mikel    Adams    mariah@gerlach.com    \N    Haiti    North Sincere    6384 Zoila Heights    48006-2265    Hawaii    2016-09-21 22:10:01.069098    2016-10-14 13:02:52.185518        \N    \N    \N    0    \N    \N    \N    \N    female
14824    Kyla    Huels    angela_johns@schneider.co    \N    Republic of Korea    East Karlee    565 Borer Orchard    56929    New Hampshire    2016-07-17 17:21:22.707956    2016-10-14 13:02:52.189656        \N    \N    \N    0    \N    \N    \N    \N    female
14825    Michaela    Lubowitz    felton@raynornitzsche.biz    \N    Djibouti    Turnershire    7690 Sanford Union    83320-8963    Arizona    2016-08-17 15:37:37.202067    2016-10-14 13:02:52.19364        \N    \N    \N    0    \N    \N    \N    \N    male
14826    Prudence    Connelly    jeanie@halvorsonklein.com    \N    Equatorial Guinea    Port Vernerstad    40823 Brando Divide    47188-9643    Virginia    2016-07-07 23:46:26.913867    2016-10-14 13:02:52.197843        \N    \N    \N    0    \N    \N    \N    \N    female
14827    Braxton    Bergstrom    oral@rutherford.biz    \N    New Zealand    New Lee    124 Fern Wells    57715    Indiana    2016-07-23 08:07:51.830892    2016-10-14 13:02:52.202653        \N    \N    \N    0    \N    \N    \N    \N    male
14828    Annamae    Weber    lucius_grady@steuber.biz    \N    Seychelles    Lake Phyllisside    310 Olson Terrace    27472    Nevada    2016-09-14 14:21:27.643076    2016-10-14 13:02:52.207776        \N    \N    \N    0    \N    \N    \N    \N    female
14829    Lisette    Ernser    wade@botsford.name    \N    Peru    Katherineland    9128 Shawna Spring    91756    Florida    2016-07-07 15:53:08.994376    2016-10-14 13:02:52.212472        \N    \N    \N    0    \N    \N    \N    \N    male
14830    Yoshiko    Leannon    mario@murphymurphy.net    \N    Denmark    Brendanfort    420 DuBuque Expressway    54585-2858    Nebraska    2016-07-15 21:13:59.850277    2016-10-14 13:02:52.217088        \N    \N    \N    0    \N    \N    \N    \N    male
14831    Enrique    Wolff    deshawn@daniel.co    \N    New Caledonia    South Katelynmouth    8498 Ullrich Extensions    54796    Tennessee    2016-06-30 02:40:57.785017    2016-10-14 13:02:52.22254        \N    \N    \N    0    \N    \N    \N    \N    male
14833    Eduardo    Jones    tatum.stehr@bahringer.net    \N    India    Lake Michaelville    1610 Ziemann Flat    70860    Wyoming    2016-08-08 18:59:50.065141    2016-10-14 13:02:52.227096        \N    \N    \N    0    \N    \N    \N    \N    male
14834    Lavinia    Bayer    vaughn.runolfsdottir@lind.co    \N    Croatia    North Brandy    41137 Swaniawski Ridges    72567    Kentucky    2016-09-12 17:42:57.885456    2016-10-14 13:02:52.231002        \N    \N    \N    0    \N    \N    \N    \N    male
15742    Mandy    Weissnat    wilton@anderson.net    \N    Guatemala    Hintzton    642 Mike Plain    56057    North Dakota    2016-08-24 23:19:56.75109    2016-10-14 13:02:56.305066        \N    \N    \N    0    \N    \N    \N    \N    female
14835    Charlie    Barton    kim@prohaska.co    \N    Ecuador    West Eleonoreton    63437 Shakira Ranch    83370    California    2016-08-23 18:21:45.960755    2016-10-14 13:02:52.235716        \N    \N    \N    0    \N    \N    \N    \N    male
14836    Zella    Kuhic    reggie@schinner.name    \N    Iran    West Willis    73302 Carroll Orchard    51637    New Jersey    2016-06-27 20:23:52.982965    2016-10-14 13:02:52.241325        \N    \N    \N    0    \N    \N    \N    \N    female
14837    Junior    Blick    tyshawn.steuber@kleinsimonis.biz    \N    Venezuela    Emiliaborough    9968 Gloria Track    33917    Delaware    2016-07-02 17:27:46.429139    2016-10-14 13:02:52.24542        \N    \N    \N    0    \N    \N    \N    \N    male
14838    Kailee    Weimann    brook_jenkins@lebsackhermann.info    \N    Mozambique    Lake Verna    905 Cole Summit    13504    New Hampshire    2016-07-09 17:31:48.747996    2016-10-14 13:02:52.249564        \N    \N    \N    0    \N    \N    \N    \N    female
14839    Lois    Weimann    joel_trantow@kuphal.co    \N    Uganda    Lake Javonfurt    574 Runolfsdottir Glen    83808-8992    Texas    2016-07-18 14:52:16.491025    2016-10-14 13:02:52.253733        \N    \N    \N    0    \N    \N    \N    \N    female
14840    Aracely    Bruen    madisyn.jenkins@abshirebalistreri.biz    \N    Mali    Betsyside    5053 Kris Mill    55465    North Dakota    2016-09-22 04:40:58.724244    2016-10-14 13:02:52.258097        \N    \N    \N    0    \N    \N    \N    \N    male
14841    Michael    Halvorson    angelica.torphy@farrell.org    \N    Greenland    Streichview    16827 Wiegand Court    16259-0017    Alabama    2016-08-18 18:36:15.868563    2016-10-14 13:02:52.262246        \N    \N    \N    0    \N    \N    \N    \N    male
14842    Rashawn    Berge    nicholas@hauck.org    \N    Jamaica    Lubowitzbury    82947 Dietrich Brooks    68500    Virginia    2016-09-01 22:14:55.015364    2016-10-14 13:02:52.267102        \N    \N    \N    0    \N    \N    \N    \N    male
14843    Christina    Lebsack    dudley_quigley@okon.com    \N    Luxembourg    Lake Kentonview    33595 Rodrigo Rapid    75212-3878    Connecticut    2016-06-23 13:37:36.30271    2016-10-14 13:02:52.271296        \N    \N    \N    0    \N    \N    \N    \N    male
14844    Maryjane    Murazik    mia@hyattkub.net    \N    Martinique    Lenoreside    71194 Witting Glen    76404-2505    Arizona    2016-07-06 10:24:52.75618    2016-10-14 13:02:52.275309        \N    \N    \N    0    \N    \N    \N    \N    female
14845    Diego    Lehner    iva_nienow@davis.net    \N    United States of America    Lake Dangeloland    1452 Donnelly Spring    61473    Hawaii    2016-09-14 06:30:33.418837    2016-10-14 13:02:52.279271        \N    \N    \N    0    \N    \N    \N    \N    male
14846    Elta    Langosh    josh.lang@shanahandenesik.net    \N    Vietnam    Leannonville    7084 Welch Canyon    64307-7993    West Virginia    2016-08-19 05:12:42.820883    2016-10-14 13:02:52.283199        \N    \N    \N    0    \N    \N    \N    \N    female
14847    Roman    Nienow    paul.sanford@okunevabins.name    \N    Reunion    Kuvalischester    846 Cormier Courts    14726    Georgia    2016-07-14 21:20:05.330192    2016-10-14 13:02:52.287175        \N    \N    \N    0    \N    \N    \N    \N    male
14848    Joshua    Vandervort    diana_hoeger@schmidtvonrueden.name    \N    Bahamas    Murielbury    72658 Gorczany Corner    37373    New Hampshire    2016-09-03 21:44:36.51384    2016-10-14 13:02:52.29096        \N    \N    \N    0    \N    \N    \N    \N    male
14849    Zachariah    Hyatt    amy_weinat@nitzsche.info    \N    Bangladesh    New Betsy    5896 Cole Roads    35055    Idaho    2016-09-15 14:25:07.27066    2016-10-14 13:02:52.294951        \N    \N    \N    0    \N    \N    \N    \N    male
14900    Judah    Wintheiser    jenifer_kuhlman@yost.net    \N    Yemen    Laishaside    669 Lehner Center    66358-0747    Minnesota    2016-09-22 18:04:09.71557    2016-10-14 13:02:52.299039        \N    \N    \N    0    \N    \N    \N    \N    male
14850    Chelsey    Runolfsson    keira.robel@harris.co    \N    Uzbekistan    South Carissamouth    5814 Hintz Groves    76740-2453    Arkansas    2016-07-15 22:54:41.094829    2016-10-14 13:02:52.303213        \N    \N    \N    0    \N    \N    \N    \N    male
14851    Jaiden    Veum    michele_bogisich@heel.info    \N    Antigua and Barbuda    Handland    2163 Estell Islands    81275    Ohio    2016-06-26 03:47:28.761978    2016-10-14 13:02:52.307325        \N    \N    \N    0    \N    \N    \N    \N    female
14853    Tate    Hodkiewicz    deion@rath.net    \N    Australia    Kshlerinview    65450 Granville Cape    97552-5240    California    2016-09-09 10:25:43.626177    2016-10-14 13:02:52.313244        \N    \N    \N    0    \N    \N    \N    \N    female
14854    Pietro    Dickens    fabian@heaneycarroll.info    \N    Canada    Hackettbury    37041 Adelle Union    43013    Georgia    2016-08-13 20:55:49.312687    2016-10-14 13:02:52.32986        \N    \N    \N    0    \N    \N    \N    \N    female
14855    Wilhelmine    Feil    isaac_kshlerin@shanahan.co    \N    Belgium    Shirleyport    8988 Kunze Crossroad    97891-3844    Iowa    2016-08-12 03:17:23.862422    2016-10-14 13:02:52.334276        \N    \N    \N    0    \N    \N    \N    \N    male
14856    Alize    Christiansen    marques_donnelly@weimann.info    \N    Dominica    Port Pietroberg    6361 Shane Forges    60579-8433    West Virginia    2016-07-25 23:10:56.777848    2016-10-14 13:02:52.338464        \N    \N    \N    0    \N    \N    \N    \N    male
14857    Napoleon    Rau    ursula_ankunding@ebert.co    \N    Oman    Samaraport    71254 Palma Pass    51312-9565    Oregon    2016-09-03 20:10:53.606093    2016-10-14 13:02:52.342674        \N    \N    \N    0    \N    \N    \N    \N    female
14858    Anahi    Turcotte    marlin@towne.info    \N    Bhutan    West Christa    79251 Parker Summit    96169-9351    Indiana    2016-07-25 04:29:59.079302    2016-10-14 13:02:52.346601        \N    \N    \N    0    \N    \N    \N    \N    female
14859    Laury    Bogan    barney@waelchi.info    \N    French Polynesia    Dustinchester    1359 Selmer Fort    91565-1360    Maine    2016-08-28 19:04:21.935133    2016-10-14 13:02:52.350521        \N    \N    \N    0    \N    \N    \N    \N    male
14860    Rahul    Mueller    evert.marvin@yundtdicki.org    \N    Gambia    New Koletown    26929 Monique Ville    25569-2085    Florida    2016-06-29 19:53:31.552635    2016-10-14 13:02:52.354392        \N    \N    \N    0    \N    \N    \N    \N    female
14862    Christop    West    freeda.jaskolski@schuster.name    \N    Mexico    Lake Kylee    366 Bud Plains    50703-6395    Nebraska    2016-09-18 11:22:25.732419    2016-10-14 13:02:52.362675        \N    \N    \N    0    \N    \N    \N    \N    male
14863    Jace    Runte    albina@schambergerconn.com    \N    Congo    West Kayleeside    92753 Jose Spur    94744    Maryland    2016-08-07 08:40:02.463198    2016-10-14 13:02:52.367094        \N    \N    \N    0    \N    \N    \N    \N    male
14864    Mara    Miller    dayna@medhurst.org    \N    Maldives    Port Makennashire    826 Amaya Junctions    39517-6056    New Hampshire    2016-06-22 23:59:56.926219    2016-10-14 13:02:52.37127        \N    \N    \N    0    \N    \N    \N    \N    female
14865    Karson    Harris    alejandrin@jacobi.info    \N    Syrian Arab Republic    Haylieshire    9313 Rau Pines    88897    Virginia    2016-07-26 02:54:06.121155    2016-10-14 13:02:52.375837        \N    \N    \N    0    \N    \N    \N    \N    female
14866    Pasquale    Ryan    rod_kovacek@crona.io    \N    Djibouti    South August    239 Emily Island    94079    Texas    2016-09-18 19:57:20.388907    2016-10-14 13:02:52.37993        \N    \N    \N    0    \N    \N    \N    \N    female
14867    Lora    Gaylord    peter@gulgowskijohnson.org    \N    India    West Myrtice    9605 Brekke Streets    88844-5019    Colorado    2016-07-25 00:12:00.592229    2016-10-14 13:02:52.383806        \N    \N    \N    0    \N    \N    \N    \N    female
14868    Nico    Quigley    katharina_mclaughlin@rogahngottlieb.com    \N    Slovakia (Slovak Republic)    Lake Raphaellemouth    8101 Germaine Circles    29645-8694    New Jersey    2016-07-16 05:40:36.929421    2016-10-14 13:02:52.387685        \N    \N    \N    0    \N    \N    \N    \N    female
14869    Savion    Heidenreich    art@johnstonconroy.org    \N    Lebanon    South Camren    30838 Ryan Points    88194-1941    Missouri    2016-07-09 09:19:34.530963    2016-10-14 13:02:52.391656        \N    \N    \N    0    \N    \N    \N    \N    male
14870    Garett    Prosacco    nelda@bauch.biz    \N    Sudan    Stehrburgh    848 Jacobi Parkway    81900-7017    California    2016-09-07 07:37:50.802893    2016-10-14 13:02:52.396044        \N    \N    \N    0    \N    \N    \N    \N    male
14871    Horace    Larkin    alejandrin@fritschkreiger.io    \N    Lithuania    Taratown    1567 Buck Village    76511    North Dakota    2016-07-09 01:22:06.233638    2016-10-14 13:02:52.400408        \N    \N    \N    0    \N    \N    \N    \N    female
14872    Dashawn    Jaskolski    blake@konopelski.info    \N    Congo    Alishahaven    3418 Rosenbaum Forks    73580-2979    Indiana    2016-07-20 19:30:14.987201    2016-10-14 13:02:52.404472        \N    \N    \N    0    \N    \N    \N    \N    female
14873    Jackeline    Huel    pansy.oconnell@kulas.org    \N    Norway    Alisabury    567 Gaylord Square    26392    Arizona    2016-09-25 13:26:16.405403    2016-10-14 13:02:52.408366        \N    \N    \N    0    \N    \N    \N    \N    male
14874    Danyka    Kovacek    vincenza.bailey@padbergohara.org    \N    Serbia    Port Vergieport    897 Terence Centers    24197    New York    2016-08-15 21:11:26.074673    2016-10-14 13:02:52.412786        \N    \N    \N    0    \N    \N    \N    \N    male
14875    Florida    Little    diego.daniel@hansenupton.net    \N    French Guiana    Port Jaunitamouth    54374 Ebert Mount    34423    West Virginia    2016-07-13 16:20:58.847233    2016-10-14 13:02:52.416871        \N    \N    \N    0    \N    \N    \N    \N    male
14876    Isaiah    Zulauf    anabel.lang@macgyvermonahan.net    \N    Vietnam    Isaichester    418 Korey Circle    12584-3636    Virginia    2016-07-22 16:58:44.459084    2016-10-14 13:02:52.420695        \N    \N    \N    0    \N    \N    \N    \N    female
14877    Litzy    Crona    shanny@gaylordlindgren.name    \N    Slovenia    West Caraland    49636 Anderson Crest    51965-2416    Connecticut    2016-08-30 21:53:59.581367    2016-10-14 13:02:52.424543        \N    \N    \N    0    \N    \N    \N    \N    male
14878    Burley    Romaguera    aniyah@hudsonmckenzie.org    \N    Brunei Darussalam    Gibsonmouth    685 Jason Grove    14889-0563    Vermont    2016-09-24 16:14:48.955976    2016-10-14 13:02:52.428621        \N    \N    \N    0    \N    \N    \N    \N    male
14879    Mercedes    Walker    josianne@mraz.org    \N    South Georgia and the South Sandwich Islands    New Antoninaburgh    4792 Batz Roads    29717    Maryland    2016-09-29 03:46:37.412307    2016-10-14 13:02:52.432835        \N    \N    \N    0    \N    \N    \N    \N    female
14880    Cody    Parisian    abdul_wolf@nikolaus.io    \N    French Polynesia    Lake Flavietown    3043 Xzavier Expressway    85210-4789    Georgia    2016-09-21 07:53:39.502711    2016-10-14 13:02:52.437073        \N    \N    \N    0    \N    \N    \N    \N    male
14881    Marty    Abbott    axel@oreilly.biz    \N    Guernsey    Port Karinaport    432 Ilene Mountains    54483    Georgia    2016-07-14 14:03:18.724583    2016-10-14 13:02:52.441081        \N    \N    \N    0    \N    \N    \N    \N    male
14882    Catherine    Bosco    alyson@bashirian.org    \N    Seychelles    East Eugenia    35130 Adalberto Mountains    36261-6022    New Mexico    2016-09-19 00:47:38.268517    2016-10-14 13:02:52.444993        \N    \N    \N    0    \N    \N    \N    \N    male
15511    Nya    Nader    laron.stroman@stanton.name    \N    Liberia    Merlfurt    7113 Noemi Stream    18681    Virginia    2016-07-16 15:11:38.175487    2016-10-14 13:02:55.217242        \N    \N    \N    0    \N    \N    \N    \N    female
14883    Humberto    Parisian    cathrine_fay@schmelerberge.info    \N    Holy See (Vatican City State)    East Angelina    25912 Schuster Field    27347    Missouri    2016-06-23 23:49:56.754457    2016-10-14 13:02:52.448852        \N    \N    \N    0    \N    \N    \N    \N    male
14884    Cleta    Sauer    brooklyn_waelchi@kub.info    \N    Bulgaria    Misaelville    9591 Cormier Ford    36283-4034    Georgia    2016-08-30 09:04:36.91166    2016-10-14 13:02:52.452755        \N    \N    \N    0    \N    \N    \N    \N    male
14885    Darlene    Towne    rahsaan@ratke.info    \N    San Marino    Port Vance    6257 Nicklaus Shoal    53259    Louisiana    2016-07-22 22:54:21.184661    2016-10-14 13:02:52.456898        \N    \N    \N    0    \N    \N    \N    \N    male
14887    Lafayette    Rippin    devon.mayer@okonmertz.com    \N    Uganda    Lake Chaimfort    94046 Daugherty Way    16234    Montana    2016-07-08 10:18:06.745669    2016-10-14 13:02:52.460824        \N    \N    \N    0    \N    \N    \N    \N    female
14888    Clark    Kunze    austin@walker.biz    \N    Nicaragua    Dorisfurt    468 Chad Club    96335-4699    South Carolina    2016-07-01 16:12:13.017043    2016-10-14 13:02:52.464729        \N    \N    \N    0    \N    \N    \N    \N    male
14889    Lillie    Donnelly    soledad.herman@hand.name    \N    Italy    Lake Rachelstad    44271 Cayla Curve    38414-8488    Arkansas    2016-09-11 05:58:09.227416    2016-10-14 13:02:52.468624        \N    \N    \N    0    \N    \N    \N    \N    male
14890    Victor    Durgan    barrett@monahan.info    \N    Heard Island and McDonald Islands    Hegmanntown    731 Wiza Rapid    57098-3275    Kansas    2016-09-06 19:46:27.250025    2016-10-14 13:02:52.472595        \N    \N    \N    0    \N    \N    \N    \N    female
14892    Rahul    Gottlieb    vicky@hicklebeahan.co    \N    Jersey    Hyattshire    5743 Douglas View    39165    Oklahoma    2016-07-09 09:10:31.906942    2016-10-14 13:02:52.477653        \N    \N    \N    0    \N    \N    \N    \N    female
14893    River    McGlynn    sierra.berge@bernhardpouros.co    \N    Dominica    New Myronhaven    93336 Marshall Squares    24436-1025    Michigan    2016-08-19 03:54:29.058515    2016-10-14 13:02:52.486059        \N    \N    \N    0    \N    \N    \N    \N    female
14894    Roxanne    Gaylord    vincenzo_runolfsdottir@romaguera.com    \N    Colombia    Dorotheaburgh    822 Jose Causeway    53203    Colorado    2016-08-03 08:29:51.888916    2016-10-14 13:02:52.489985        \N    \N    \N    0    \N    \N    \N    \N    male
14895    Arturo    Stiedemann    antonetta_romaguera@carroll.name    \N    Chad    Lake Garret    2914 Green Point    15334-2538    Hawaii    2016-07-23 00:08:43.362802    2016-10-14 13:02:52.494115        \N    \N    \N    0    \N    \N    \N    \N    female
14896    Virginie    Moen    zoe_hansen@gorczanydietrich.com    \N    Netherlands Antilles    Francestown    63721 Murray Burgs    30243-5193    Massachusetts    2016-07-23 03:19:57.496629    2016-10-14 13:02:52.497996        \N    \N    \N    0    \N    \N    \N    \N    female
14897    Nasir    Cronin    arielle.haley@hermanmacgyver.org    \N    Equatorial Guinea    Port Zacharyhaven    65349 Bahringer Harbors    34344-2200    Massachusetts    2016-08-19 02:23:12.974606    2016-10-14 13:02:52.501784        \N    \N    \N    0    \N    \N    \N    \N    female
14898    Verona    Runolfsson    leonel@dubuquemurray.co    \N    Azerbaijan    Schaeferchester    73351 Kara Path    25567-4846    Colorado    2016-08-24 15:37:13.689596    2016-10-14 13:02:52.506136        \N    \N    \N    0    \N    \N    \N    \N    male
14899    Kasandra    Schmidt    allan.ritchie@damoreankunding.co    \N    Micronesia    East Juvenal    720 Andreanne Stravenue    22930    South Carolina    2016-06-25 16:20:41.80227    2016-10-14 13:02:52.510668        \N    \N    \N    0    \N    \N    \N    \N    female
14901    Leif    Blanda    elmira.adams@leannonwaelchi.net    \N    Suriname    North Gladyceshire    874 Kerluke Creek    38784    Nevada    2016-07-03 06:39:40.826244    2016-10-14 13:02:52.515147        \N    \N    \N    0    \N    \N    \N    \N    female
14902    Sydnie    Rutherford    ramon.considine@murazik.net    \N    Bouvet Island (Bouvetoya)    Lake Halie    9829 Taurean Shoal    72375-4882    Tennessee    2016-09-11 09:01:09.332881    2016-10-14 13:02:52.519679        \N    \N    \N    0    \N    \N    \N    \N    male
14903    Frederick    Altenwerth    francisco_cummings@rennerernser.com    \N    El Salvador    New Rahulfort    1378 Connelly Skyway    87526    Colorado    2016-07-12 12:19:47.570402    2016-10-14 13:02:52.52398        \N    \N    \N    0    \N    \N    \N    \N    male
14904    Clinton    Baumbach    mallory.prohaska@hills.biz    \N    El Salvador    Port Nikolasport    3862 Clemens Course    50577-4245    Iowa    2016-06-25 12:17:54.962006    2016-10-14 13:02:52.52819        \N    \N    \N    0    \N    \N    \N    \N    female
14905    Maximus    Williamson    clotilde@abernathyschneider.co    \N    Panama    Zemlakshire    60026 Jermain Crescent    52379    Indiana    2016-07-18 03:47:46.841145    2016-10-14 13:02:52.532075        \N    \N    \N    0    \N    \N    \N    \N    female
14906    Romaine    Balistreri    charlotte_dickinson@kling.co    \N    Syrian Arab Republic    North Ignatius    157 Myrtle Drives    49518    Pennsylvania    2016-09-12 05:46:14.291409    2016-10-14 13:02:52.536313        \N    \N    \N    0    \N    \N    \N    \N    male
14907    Rozella    McGlynn    bridgette.lind@kautzer.com    \N    Guadeloupe    Jacobibury    725 Fay Tunnel    49725-8000    West Virginia    2016-09-04 07:11:14.047663    2016-10-14 13:02:52.540479        \N    \N    \N    0    \N    \N    \N    \N    female
14908    Jonas    Mayer    dell.cain@ko.info    \N    Oman    Cristmouth    93056 Donnie Fords    98101-3298    North Carolina    2016-06-24 20:42:32.404    2016-10-14 13:02:52.544495        \N    \N    \N    0    \N    \N    \N    \N    female
14910    Jailyn    Bauch    kylee@osinskimiller.net    \N    Grenada    East Helene    132 Lennie Ridges    86968    California    2016-06-29 00:26:12.066755    2016-10-14 13:02:52.549228        \N    \N    \N    0    \N    \N    \N    \N    female
14911    Jerad    Heidenreich    isabell.jacobi@schadenoreilly.co    \N    Sri Lanka    Gerlachview    412 Jacobi Haven    96056-9593    Connecticut    2016-07-20 00:59:26.128004    2016-10-14 13:02:52.553842        \N    \N    \N    0    \N    \N    \N    \N    female
14912    Marie    Ankunding    salvador@gloverreilly.info    \N    Honduras    New Alene    437 Hugh Trail    17029-6074    Connecticut    2016-09-25 21:41:22.873039    2016-10-14 13:02:52.559709        \N    \N    \N    0    \N    \N    \N    \N    male
14913    Lukas    Batz    zena_walter@heaney.biz    \N    Philippines    Tessfurt    3604 Gaetano Walk    66941-4376    Ohio    2016-08-15 16:42:20.842183    2016-10-14 13:02:52.564069        \N    \N    \N    0    \N    \N    \N    \N    female
14914    Stewart    Collier    marley@von.org    \N    Bosnia and Herzegovina    New Barryview    314 Boyer Track    87665    South Dakota    2016-09-07 14:17:28.946866    2016-10-14 13:02:52.568515        \N    \N    \N    0    \N    \N    \N    \N    male
14915    Efren    Schmeler    gerard@heaneyhills.biz    \N    Nauru    Lake Cheyenneland    41413 Wilderman Forest    79289    Florida    2016-08-02 07:04:11.700785    2016-10-14 13:02:52.572734        \N    \N    \N    0    \N    \N    \N    \N    male
14916    Estella    Grant    santa.yost@lehner.name    \N    Russian Federation    Lowemouth    91477 Lueilwitz Village    23357-8476    Rhode Island    2016-06-23 03:29:56.884399    2016-10-14 13:02:52.57734        \N    \N    \N    0    \N    \N    \N    \N    male
14917    Karlie    Nolan    elvie.kuhlman@cainkonopelski.name    \N    South Georgia and the South Sandwich Islands    Flobury    82170 Okuneva Way    56848    Vermont    2016-06-28 08:20:31.863039    2016-10-14 13:02:52.581995        \N    \N    \N    0    \N    \N    \N    \N    male
14918    Geraldine    Cole    manley.runolfon@kaulke.co    \N    Afghanistan    North Richie    6957 Veum Union    26795    Virginia    2016-06-28 02:11:41.493573    2016-10-14 13:02:52.586717        \N    \N    \N    0    \N    \N    \N    \N    female
14919    Johnpaul    Ankunding    casey_ruecker@stark.co    \N    Pitcairn Islands    West Jordane    13898 Friedrich Village    36502    North Carolina    2016-09-08 18:41:22.731067    2016-10-14 13:02:52.591447        \N    \N    \N    0    \N    \N    \N    \N    female
14920    Cesar    Glover    marion@predovicauer.com    \N    Solomon Islands    Cameronland    965 Carroll Course    35333-5554    Rhode Island    2016-09-09 16:44:29.596671    2016-10-14 13:02:52.596325        \N    \N    \N    0    \N    \N    \N    \N    female
14921    Elaina    Doyle    earline@klocko.com    \N    Sudan    Flatleyport    433 Dooley Divide    23147    Oklahoma    2016-07-22 01:35:29.739077    2016-10-14 13:02:52.601209        \N    \N    \N    0    \N    \N    \N    \N    male
14923    Abdiel    Hickle    shawna_kuhlman@boyer.com    \N    Morocco    Framiborough    131 Beahan Station    18518    Wyoming    2016-08-25 03:12:03.979941    2016-10-14 13:02:52.607718        \N    \N    \N    0    \N    \N    \N    \N    female
14924    Joey    Langworth    raquel@sipesgrant.co    \N    Guadeloupe    West Lazarofurt    8810 Kailyn Meadows    29748-7846    Wyoming    2016-07-11 10:47:16.281593    2016-10-14 13:02:52.612838        \N    \N    \N    0    \N    \N    \N    \N    male
14925    Sim    Schroeder    sidney.carter@wuckertbotsford.net    \N    Pakistan    Lednerhaven    5780 Nikolaus Park    29318-5528    New Mexico    2016-08-14 11:29:39.853748    2016-10-14 13:02:52.619006        \N    \N    \N    0    \N    \N    \N    \N    male
14926    Gretchen    Daniel    montana.howe@moore.io    \N    Heard Island and McDonald Islands    Berniermouth    15842 Muller Spurs    53997-2726    Delaware    2016-09-02 04:39:49.298151    2016-10-14 13:02:52.623096        \N    \N    \N    0    \N    \N    \N    \N    female
14927    Adah    Leffler    melvina.beahan@crona.com    \N    French Polynesia    Kutchmouth    83080 Imelda Mount    59680-8823    Louisiana    2016-08-22 22:20:10.451495    2016-10-14 13:02:52.627109        \N    \N    \N    0    \N    \N    \N    \N    female
14928    Ruth    Abernathy    mabelle@wolf.io    \N    Hungary    Francescastad    31624 Annamarie Lake    70393-1317    Kansas    2016-07-12 00:12:57.012434    2016-10-14 13:02:52.631393        \N    \N    \N    0    \N    \N    \N    \N    male
14929    Sienna    Monahan    christelle_hoppe@greenheller.name    \N    Faroe Islands    North Alizaton    7831 Kreiger Harbor    78155-6764    New Mexico    2016-09-07 12:17:41.125738    2016-10-14 13:02:52.635641        \N    \N    \N    0    \N    \N    \N    \N    male
14930    Mitchell    Quitzon    chaz@ziemann.name    \N    Malawi    East Hunter    2773 Adolph Mews    24902-3351    Indiana    2016-09-09 21:20:08.359752    2016-10-14 13:02:52.640537        \N    \N    \N    0    \N    \N    \N    \N    female
14931    Sandrine    Stiedemann    reba@okonzemlak.biz    \N    Congo    New Minaberg    2423 Timmothy Valley    10620    Michigan    2016-07-04 18:25:39.904379    2016-10-14 13:02:52.645468        \N    \N    \N    0    \N    \N    \N    \N    male
14932    Maximilian    Shanahan    amira_bartoletti@metz.io    \N    Benin    South Easter    848 Rosemary Orchard    74843-9384    North Dakota    2016-08-21 12:24:58.555089    2016-10-14 13:02:52.6505        \N    \N    \N    0    \N    \N    \N    \N    female
14933    Hazel    Connelly    kaela@ziemannschimmel.name    \N    Peru    North Mistybury    59360 Hessel Locks    50923    New York    2016-08-18 01:33:44.934673    2016-10-14 13:02:52.655168        \N    \N    \N    0    \N    \N    \N    \N    male
14934    Luz    Hermiston    alia.herman@legrochmitt.io    \N    United States Minor Outlying Islands    New Bessiemouth    8971 Streich Stravenue    93911    Illinois    2016-07-09 19:07:29.606196    2016-10-14 13:02:52.659511        \N    \N    \N    0    \N    \N    \N    \N    male
14935    George    Hansen    hazel@morar.net    \N    Holy See (Vatican City State)    South Emelie    8594 Ward Plains    10965    Vermont    2016-08-10 13:05:03.845296    2016-10-14 13:02:52.663695        \N    \N    \N    0    \N    \N    \N    \N    female
14936    Johanna    Batz    jamar.oreilly@vandervort.net    \N    Sao Tome and Principe    Hillsmouth    15047 Keenan Pass    19822    Connecticut    2016-09-22 15:00:32.111437    2016-10-14 13:02:52.668333        \N    \N    \N    0    \N    \N    \N    \N    female
14938    Scotty    Turcotte    ignatius.hamill@runte.biz    \N    China    Lake Emeliafurt    738 Swaniawski Shore    71016-0161    Oregon    2016-08-19 12:34:00.020911    2016-10-14 13:02:52.672577        \N    \N    \N    0    \N    \N    \N    \N    female
14939    Matilde    Batz    opal.sawayn@connelly.com    \N    Timor-Leste    East Ana    438 Rachelle Corner    43920    Virginia    2016-08-17 03:28:39.493456    2016-10-14 13:02:52.67751        \N    \N    \N    0    \N    \N    \N    \N    female
14940    Justina    Runolfsson    margarette@sanford.name    \N    Trinidad and Tobago    North Jess    33856 Nels Loop    45484-2116    Pennsylvania    2016-09-14 01:56:37.642876    2016-10-14 13:02:52.682192        \N    \N    \N    0    \N    \N    \N    \N    female
14941    Elinor    Lemke    kaylee@olson.name    \N    New Caledonia    Homenickstad    48370 Larkin Grove    65853-0272    California    2016-09-05 08:06:39.102323    2016-10-14 13:02:52.686762        \N    \N    \N    0    \N    \N    \N    \N    male
14942    Spencer    Satterfield    corbin@ledner.org    \N    Cameroon    Jonasfurt    4788 Fletcher Valleys    64063-3446    West Virginia    2016-08-02 05:21:14.084344    2016-10-14 13:02:52.691356        \N    \N    \N    0    \N    \N    \N    \N    male
14943    Newell    Predovic    josie@morar.net    \N    Republic of Korea    Leifbury    2440 Walker Inlet    66576    Idaho    2016-07-03 09:46:39.646507    2016-10-14 13:02:52.696816        \N    \N    \N    0    \N    \N    \N    \N    male
14944    Barrett    Kreiger    kennedy.stoltenberg@gorczany.name    \N    Jersey    McKenzieside    689 Quigley Wall    64214    Minnesota    2016-08-15 09:10:04.464553    2016-10-14 13:02:52.701141        \N    \N    \N    0    \N    \N    \N    \N    female
14945    Gilbert    Dickens    cindy.erdman@runolfsdottir.biz    \N    Norfolk Island    Lake Oren    780 Erika Island    45945    Arizona    2016-07-25 21:27:54.709707    2016-10-14 13:02:52.707939        \N    \N    \N    0    \N    \N    \N    \N    female
14946    Garnett    Ernser    monique@kirlin.com    \N    Iran    Russeltown    92221 Boyle Gateway    26449    Delaware    2016-08-27 00:09:20.177072    2016-10-14 13:02:52.712719        \N    \N    \N    0    \N    \N    \N    \N    male
14947    Lauryn    Erdman    sammy.rodriguez@tillmangleason.net    \N    Paraguay    Jacobston    474 Lewis Lodge    15377-7669    Alaska    2016-08-10 19:15:10.778683    2016-10-14 13:02:52.717003        \N    \N    \N    0    \N    \N    \N    \N    male
14949    Ike    Lebsack    donna_ferry@veum.info    \N    Mozambique    West Sarai    1869 Al Circle    85730-5228    Minnesota    2016-07-11 14:55:35.94107    2016-10-14 13:02:52.72134        \N    \N    \N    0    \N    \N    \N    \N    male
14950    Kaci    Wiza    samir_jakubowski@hodkiewicztoy.io    \N    Indonesia    Lake Vallie    305 Ullrich Ramp    83888    Utah    2016-08-18 14:01:49.66279    2016-10-14 13:02:52.725054        \N    \N    \N    0    \N    \N    \N    \N    female
14951    Joel    Effertz    lonnie_torphy@hamillfriesen.org    \N    Finland    Lake Lauryville    819 Elinore Tunnel    81026    California    2016-07-19 10:24:21.960266    2016-10-14 13:02:52.729355        \N    \N    \N    0    \N    \N    \N    \N    female
14952    Sidney    Stokes    alaina@ernser.com    \N    Burkina Faso    Port Alecton    9820 Waters Brook    28465    Tennessee    2016-08-03 22:21:58.63393    2016-10-14 13:02:52.734193        \N    \N    \N    0    \N    \N    \N    \N    male
14953    Jensen    Ward    chyna@hamill.biz    \N    Bolivia    Watersside    6650 Leffler Burg    78008-0575    Minnesota    2016-08-04 05:54:28.502487    2016-10-14 13:02:52.738412        \N    \N    \N    0    \N    \N    \N    \N    male
14954    Cody    Dickens    raphaelle.anderson@nicolas.net    \N    Montserrat    Port Riley    119 Joel Landing    35541    Maryland    2016-07-09 07:26:11.29741    2016-10-14 13:02:52.742342        \N    \N    \N    0    \N    \N    \N    \N    male
14955    Daniella    Hansen    felipe.kilback@kemmerprohaska.net    \N    Vanuatu    North Fritzmouth    62062 Mayert Skyway    54516-9982    Vermont    2016-09-23 23:21:46.391219    2016-10-14 13:02:52.746275        \N    \N    \N    0    \N    \N    \N    \N    male
14956    Baron    Heathcote    may@grant.name    \N    Gibraltar    Hudsonfort    7362 Sierra Stream    49448    Alabama    2016-07-18 05:48:08.214579    2016-10-14 13:02:52.750348        \N    \N    \N    0    \N    \N    \N    \N    male
14957    Philip    D'Amore    camryn@hegmann.co    \N    Nigeria    South Levi    88286 Carli Lake    96488-3590    Maine    2016-09-11 16:02:52.85732    2016-10-14 13:02:52.754337        \N    \N    \N    0    \N    \N    \N    \N    male
14959    Hettie    Rodriguez    garrick_rolfson@beer.org    \N    Bolivia    Jeffstad    61141 Kuhic Causeway    39265    Minnesota    2016-08-19 12:27:26.592026    2016-10-14 13:02:52.758309        \N    \N    \N    0    \N    \N    \N    \N    male
14960    Israel    Strosin    easter@kleinvandervort.co    \N    Brunei Darussalam    New Kobyburgh    82041 Spinka Rest    16975    Oklahoma    2016-09-07 22:53:52.503277    2016-10-14 13:02:52.76223        \N    \N    \N    0    \N    \N    \N    \N    female
18871    Bartholome    Fisher    annabell@cain.io    \N    Cuba    Hubertfurt    3906 Brianne Springs    87611    Louisiana    2016-08-09 09:29:13.84805    2016-10-14 13:02:52.766606        \N    \N    \N    0    \N    \N    \N    \N    male
14961    Berneice    Windler    obie_schinner@kuhic.co    \N    Norfolk Island    Lake Brenden    8573 Kovacek Plains    30087    Tennessee    2016-07-28 17:42:42.257514    2016-10-14 13:02:52.77102        \N    \N    \N    0    \N    \N    \N    \N    male
14962    Meaghan    Klein    dusty.spencer@larson.info    \N    Guinea    New Martina    429 Lebsack Haven    50156    Tennessee    2016-07-19 13:58:48.878205    2016-10-14 13:02:52.774951        \N    \N    \N    0    \N    \N    \N    \N    male
14963    Earl    Koepp    frances@heidenreich.org    \N    Australia    Zulauffort    22855 Triston Creek    75754    Montana    2016-09-23 02:05:42.55519    2016-10-14 13:02:52.779008        \N    \N    \N    0    \N    \N    \N    \N    female
14964    Marlene    Miller    dejuan_fritsch@greenholt.name    \N    Belize    Lake Sigrid    3108 Charlene Circle    55774-1451    Maine    2016-09-27 06:29:46.35447    2016-10-14 13:02:52.783285        \N    \N    \N    0    \N    \N    \N    \N    male
14965    Lue    Dickens    emely.kiehn@bahringerdare.biz    \N    French Guiana    South Beauland    91884 Bernita Lock    88649    Missouri    2016-07-26 05:34:38.241457    2016-10-14 13:02:52.787954        \N    \N    \N    0    \N    \N    \N    \N    male
14966    Josefina    Muller    agnes@fisher.biz    \N    Palestinian Territory    Lake Madisenstad    51626 Cummings Course    35434    South Carolina    2016-07-18 21:21:04.406053    2016-10-14 13:02:52.791907        \N    \N    \N    0    \N    \N    \N    \N    male
14967    Oral    Skiles    ruell@dibbert.com    \N    Vietnam    Port Emmettfurt    9467 Cedrick Landing    61668-1007    South Carolina    2016-08-13 15:23:17.58587    2016-10-14 13:02:52.796117        \N    \N    \N    0    \N    \N    \N    \N    female
14968    Diana    Hauck    monique@wiegand.io    \N    Botswana    Hammesmouth    44730 Xander Inlet    30643-3118    Arizona    2016-08-29 18:13:13.33186    2016-10-14 13:02:52.800549        \N    \N    \N    0    \N    \N    \N    \N    female
14969    Penelope    Heller    domenica@rogahn.com    \N    Virgin Islands, British    East Dorthy    863 Randi Cape    42796    Utah    2016-09-09 17:35:36.017876    2016-10-14 13:02:52.804686        \N    \N    \N    0    \N    \N    \N    \N    female
14970    Kiel    Hamill    reba_rau@pfeffer.name    \N    Guinea-Bissau    North Beaulah    414 Cleveland Common    58751-9226    New Mexico    2016-09-26 15:05:19.770304    2016-10-14 13:02:52.808825        \N    \N    \N    0    \N    \N    \N    \N    female
14971    Christopher    Lindgren    kristian@okon.io    \N    Guatemala    Port Soniabury    22408 Green Islands    53755    Idaho    2016-07-01 16:30:44.626888    2016-10-14 13:02:52.813314        \N    \N    \N    0    \N    \N    \N    \N    female
14972    Ubaldo    Ward    lonny@koelpin.com    \N    Bolivia    Hodkiewiczburgh    8542 Madelyn Green    51211-2457    Montana    2016-07-15 22:08:03.735723    2016-10-14 13:02:52.817689        \N    \N    \N    0    \N    \N    \N    \N    female
14973    Reba    Schmidt    regan@carter.co    \N    Liechtenstein    West Greta    28165 Gibson Groves    80366    North Dakota    2016-07-19 05:50:50.627553    2016-10-14 13:02:52.821796        \N    \N    \N    0    \N    \N    \N    \N    female
14974    Herbert    Schaden    maudie_bechtelar@schiller.io    \N    Samoa    Port Retta    7585 Hilll Ramp    23771    Missouri    2016-09-23 09:00:16.808311    2016-10-14 13:02:52.825837        \N    \N    \N    0    \N    \N    \N    \N    female
14975    Jennyfer    Marvin    wilhelmine@hickle.net    \N    Falkland Islands (Malvinas)    North Reubenton    80860 Dominic Pine    29584-2107    California    2016-07-26 22:23:03.767736    2016-10-14 13:02:52.829876        \N    \N    \N    0    \N    \N    \N    \N    female
14976    Jovanny    Wiegand    izabella_kihn@cainthompson.name    \N    Northern Mariana Islands    South Haroldshire    20294 Damaris Walks    20379-0910    Colorado    2016-06-29 11:46:24.249454    2016-10-14 13:02:52.833802        \N    \N    \N    0    \N    \N    \N    \N    female
14977    Bailee    Lakin    watson.kohler@kreigerkuvalis.info    \N    Micronesia    Lake Rodolfo    5441 Rice Trail    48063    Hawaii    2016-08-08 10:06:13.152352    2016-10-14 13:02:52.837698        \N    \N    \N    0    \N    \N    \N    \N    male
14978    Joannie    Heller    clifton.paucek@muraziksipes.org    \N    Latvia    Connellyborough    5156 Skiles Harbors    45683    Alaska    2016-08-27 21:57:53.335598    2016-10-14 13:02:52.842047        \N    \N    \N    0    \N    \N    \N    \N    male
14979    Clare    Zulauf    giovanny.jones@weber.info    \N    Spain    New Tamiamouth    21914 Boyer Knolls    76502-7447    Ohio    2016-09-03 17:00:33.507573    2016-10-14 13:02:52.846896        \N    \N    \N    0    \N    \N    \N    \N    female
14980    Weldon    Ward    deondre.hauck@beckermosciski.biz    \N    Peru    New Devenberg    9356 Trantow Island    94654    Tennessee    2016-08-28 22:54:19.986647    2016-10-14 13:02:52.851145        \N    \N    \N    0    \N    \N    \N    \N    female
14981    Felicita    Blanda    caroline@andersoncole.com    \N    Guatemala    Emmerichburgh    1734 Bart Manor    11216    Georgia    2016-09-29 05:48:01.284253    2016-10-14 13:02:52.855172        \N    \N    \N    0    \N    \N    \N    \N    female
14982    Liliane    Prohaska    freda_hane@feeney.name    \N    Nepal    East Lukasside    523 Kyler Gateway    69545    Alabama    2016-09-04 08:26:55.996763    2016-10-14 13:02:52.859153        \N    \N    \N    0    \N    \N    \N    \N    male
14983    Chaim    Botsford    treva.weinat@pfefferward.net    \N    Montserrat    McGlynnside    770 Corwin Port    90493    Mississippi    2016-08-22 05:58:31.142803    2016-10-14 13:02:52.863281        \N    \N    \N    0    \N    \N    \N    \N    male
14984    Gertrude    Schamberger    darwin@hahngreenholt.net    \N    Jordan    New Jarrett    759 Hamill Turnpike    15586-2823    Virginia    2016-07-03 16:07:08.618472    2016-10-14 13:02:52.867254        \N    \N    \N    0    \N    \N    \N    \N    male
14985    Wilmer    Homenick    lavada@feeneyratke.info    \N    Brunei Darussalam    South Wilhelm    79500 Marjory Underpass    29591-5176    Kansas    2016-07-10 06:45:02.983953    2016-10-14 13:02:52.871754        \N    \N    \N    0    \N    \N    \N    \N    female
14986    Maida    Schroeder    breana@pfannerstill.info    \N    India    Frederictown    510 Ceasar Heights    96386-7827    New Hampshire    2016-07-15 23:14:00.670819    2016-10-14 13:02:52.87603        \N    \N    \N    0    \N    \N    \N    \N    female
14987    Shanon    Ryan    beaulah@cain.io    \N    Denmark    North Carolynville    69531 Deron Grove    48828    Maryland    2016-08-10 15:20:33.183497    2016-10-14 13:02:52.880138        \N    \N    \N    0    \N    \N    \N    \N    male
14988    Pierce    Murazik    monserrate.keeling@hirthe.biz    \N    Cote d'Ivoire    North Terrellmouth    78466 Mackenzie Corners    17459-1154    Kentucky    2016-08-25 05:02:06.692392    2016-10-14 13:02:52.8842        \N    \N    \N    0    \N    \N    \N    \N    male
14989    Tia    Jakubowski    justice.kautzer@kihn.biz    \N    Ukraine    Tylermouth    65307 Destany Mill    38851    Texas    2016-09-22 05:52:50.224704    2016-10-14 13:02:52.88831        \N    \N    \N    0    \N    \N    \N    \N    male
14990    Carlee    Turner    alicia.swaniawski@funk.co    \N    Botswana    Tessieview    844 Cruickshank Gardens    41882    Arizona    2016-09-09 06:35:47.14973    2016-10-14 13:02:52.892301        \N    \N    \N    0    \N    \N    \N    \N    female
14991    Emilio    Bernhard    rico@crooks.org    \N    Romania    Ryanbury    1151 Britney Plaza    71424    Arkansas    2016-09-01 09:20:25.042074    2016-10-14 13:02:52.896133        \N    \N    \N    0    \N    \N    \N    \N    female
14994    Karlee    Klocko    hiram_baumbach@sawayn.com    \N    Thailand    North Lenniemouth    865 Lucinda Meadows    60021-8773    Idaho    2016-07-10 03:59:06.633414    2016-10-14 13:02:52.90048        \N    \N    \N    0    \N    \N    \N    \N    female
14995    Moshe    Ortiz    gay@hilpert.org    \N    Jersey    Lake Taylorport    11650 Ignacio Locks    80234-8150    Nebraska    2016-07-30 11:54:08.48735    2016-10-14 13:02:52.90472        \N    \N    \N    0    \N    \N    \N    \N    female
14996    Carolyn    Bruen    rylee_willms@watsicapollich.name    \N    Sao Tome and Principe    Stehrmouth    5190 Reynolds Center    40703-6067    Rhode Island    2016-07-18 09:31:11.653826    2016-10-14 13:02:52.909496        \N    \N    \N    0    \N    \N    \N    \N    male
14997    Gust    Swaniawski    dudley_schamberger@greenholtreichel.info    \N    Macao    Korbinfort    90068 Funk Park    11416-3753    South Carolina    2016-08-28 12:39:27.907269    2016-10-14 13:02:52.913448        \N    \N    \N    0    \N    \N    \N    \N    female
16752    Lily    Sanford    darryl@schoen.biz    \N    Benin    Boyleshire    965 Minnie Lakes    27065-7981    Nevada    2016-08-04 05:32:03.449769    2016-10-14 13:02:52.917151        \N    \N    \N    0    \N    \N    \N    \N    female
14998    Jaydon    Blick    hortense_west@gibson.org    \N    Gibraltar    Ernserburgh    4701 Chasity Lock    54835-4666    Ohio    2016-07-15 09:02:26.640458    2016-10-14 13:02:52.920969        \N    \N    \N    0    \N    \N    \N    \N    male
14999    Kamren    Bogan    ernest_keler@schroeder.org    \N    Turkmenistan    New Fernandohaven    28902 Bednar Mission    54240-6933    South Carolina    2016-08-09 02:49:33.881712    2016-10-14 13:02:52.924803        \N    \N    \N    0    \N    \N    \N    \N    male
15000    Sid    Hermann    rocio@beahan.net    \N    Cote d'Ivoire    South Dallin    19151 Connelly Ways    97923    Massachusetts    2016-07-05 02:02:49.391693    2016-10-14 13:02:52.928818        \N    \N    \N    0    \N    \N    \N    \N    female
15001    Demetris    Kreiger    gay_wintheiser@rutherford.info    \N    India    Port Yessenia    870 General Coves    99926-1257    Nevada    2016-07-12 20:27:15.47596    2016-10-14 13:02:52.932695        \N    \N    \N    0    \N    \N    \N    \N    male
15003    Tamara    Bruen    linnea.schuppe@prohaskaorn.io    \N    South Africa    North Bethhaven    54687 Braulio Crescent    70619-5741    Illinois    2016-09-14 12:30:55.835504    2016-10-14 13:02:52.936465        \N    \N    \N    0    \N    \N    \N    \N    female
15004    Buddy    Kihn    muhammad_grant@gerlach.biz    \N    Reunion    Elijahside    5026 Macejkovic Drives    22887-6835    Maryland    2016-08-27 23:20:11.639121    2016-10-14 13:02:52.940229        \N    \N    \N    0    \N    \N    \N    \N    female
15005    Bruce    Swaniawski    prudence_harber@kshlerinkeeling.info    \N    Macao    Alyssonshire    65864 Schamberger Mill    84589-2934    Hawaii    2016-08-04 21:39:54.594639    2016-10-14 13:02:52.944104        \N    \N    \N    0    \N    \N    \N    \N    male
15006    Saige    Weissnat    neha@herzog.biz    \N    Iraq    North Cullen    973 Muller Glens    37505    Wyoming    2016-08-02 20:10:45.412504    2016-10-14 13:02:52.948313        \N    \N    \N    0    \N    \N    \N    \N    female
15007    Ernesto    Homenick    alfredo@turcotte.io    \N    Heard Island and McDonald Islands    New Filiberto    136 Rodriguez Key    20621-1352    South Dakota    2016-07-05 13:12:09.967742    2016-10-14 13:02:52.952844        \N    \N    \N    0    \N    \N    \N    \N    male
15008    Joe    Pagac    addie_kreiger@hilll.name    \N    Slovakia (Slovak Republic)    Huelfort    1373 Reynolds Field    53824-2995    North Carolina    2016-08-20 03:22:46.886689    2016-10-14 13:02:52.956831        \N    \N    \N    0    \N    \N    \N    \N    female
15009    Nova    Moen    ila@durgan.name    \N    Colombia    East Bennetttown    3838 Trenton Course    38319-6024    Arkansas    2016-08-15 07:30:52.058716    2016-10-14 13:02:52.961126        \N    \N    \N    0    \N    \N    \N    \N    male
15010    Katlynn    Leannon    mathias@bednar.io    \N    Equatorial Guinea    Kautzerberg    130 Ernser Forges    56470-7657    Washington    2016-09-12 11:56:38.870243    2016-10-14 13:02:52.965862        \N    \N    \N    0    \N    \N    \N    \N    female
15011    Dora    Gulgowski    kyra.marks@cartwright.info    \N    Tanzania    South Janemouth    3475 Koelpin Plains    82055    Louisiana    2016-08-12 06:03:31.05764    2016-10-14 13:02:52.969895        \N    \N    \N    0    \N    \N    \N    \N    female
15013    Fanny    Ritchie    amalia@bartoletti.net    \N    Martinique    New Willard    796 Cassie Ports    84830-4373    Washington    2016-08-04 01:33:57.420445    2016-10-14 13:02:52.97382        \N    \N    \N    0    \N    \N    \N    \N    female
15014    Thelma    Padberg    amiya@smithherzog.biz    \N    Greece    South Joanny    368 Leannon Fall    24684-4270    Utah    2016-08-28 02:07:24.442542    2016-10-14 13:02:52.978035        \N    \N    \N    0    \N    \N    \N    \N    male
15015    Lilyan    Mitchell    sandrine@hettinger.co    \N    Guinea    Zackmouth    85644 Pierre Mountain    27898    Kansas    2016-06-28 21:56:12.367487    2016-10-14 13:02:52.981947        \N    \N    \N    0    \N    \N    \N    \N    male
15016    Colleen    Wyman    macie.mayer@padbergdietrich.io    \N    Sierra Leone    Diamondhaven    41077 Colt Square    29488    Wisconsin    2016-07-31 13:17:54.332572    2016-10-14 13:02:52.985904        \N    \N    \N    0    \N    \N    \N    \N    male
15017    Dereck    Heidenreich    lorena.prohaska@lynchwuckert.biz    \N    Syrian Arab Republic    South Dannie    89148 Okuneva Stravenue    12637    New Hampshire    2016-08-30 15:38:06.866491    2016-10-14 13:02:52.990338        \N    \N    \N    0    \N    \N    \N    \N    male
15018    Kathlyn    Brakus    brain@reynoldsconnelly.info    \N    Egypt    Schaeferchester    9115 Herbert Drive    59168-8684    North Dakota    2016-08-04 12:13:15.798989    2016-10-14 13:02:52.995621        \N    \N    \N    0    \N    \N    \N    \N    female
15019    Monserrat    Collins    ayden_ankunding@lynch.biz    \N    Estonia    Bodefort    753 Virgie Orchard    72917-1595    Kansas    2016-06-29 03:08:17.298153    2016-10-14 13:02:53.003313        \N    \N    \N    0    \N    \N    \N    \N    male
15020    Vernice    Kreiger    priscilla@schiller.co    \N    Ghana    Feesthaven    424 Kertzmann Neck    50085-9784    Rhode Island    2016-07-18 01:37:05.436803    2016-10-14 13:02:53.00771        \N    \N    \N    0    \N    \N    \N    \N    male
15021    Lonny    Sporer    albert_klocko@doyle.co    \N    Macedonia    West Jaylonberg    268 Nico Underpass    25644-9307    Virginia    2016-06-27 02:32:43.766013    2016-10-14 13:02:53.012396        \N    \N    \N    0    \N    \N    \N    \N    male
15023    Brooklyn    Jast    emelia.schumm@kiehnstracke.info    \N    Guadeloupe    South Anitachester    8140 Hauck Circle    58566    Illinois    2016-09-11 22:29:18.233331    2016-10-14 13:02:53.017438        \N    \N    \N    0    \N    \N    \N    \N    female
15024    Matteo    Wolf    christina_cronin@adamshaley.name    \N    Angola    Balistreriville    8559 Nikko Key    57982-2431    Idaho    2016-07-13 12:14:03.646588    2016-10-14 13:02:53.022476        \N    \N    \N    0    \N    \N    \N    \N    female
15025    Jevon    Keebler    mabel@murazik.co    \N    Sweden    South Gardnermouth    5849 Aglae Island    56429    Utah    2016-09-10 02:31:36.208034    2016-10-14 13:02:53.028866        \N    \N    \N    0    \N    \N    \N    \N    male
15026    Kaitlyn    Hagenes    oceane@bashirian.com    \N    Niger    North Dianaville    186 Toy Locks    91984-2964    South Dakota    2016-08-01 20:32:07.77723    2016-10-14 13:02:53.033495        \N    \N    \N    0    \N    \N    \N    \N    male
15027    Orion    Feil    sherman.mosciski@gottliebbatz.io    \N    Niger    MacGyverfurt    897 Schmidt Summit    44510-6122    Ohio    2016-06-30 17:57:42.9488    2016-10-14 13:02:53.038613        \N    \N    \N    0    \N    \N    \N    \N    male
15028    Bianka    Parker    dorcas@metzking.org    \N    Cambodia    Lake Aleenchester    59666 Concepcion Mount    46762    Maine    2016-09-05 01:11:46.871647    2016-10-14 13:02:53.043102        \N    \N    \N    0    \N    \N    \N    \N    female
15029    Stephany    O'Kon    sammy.hoeger@veumschuppe.net    \N    Guam    Gutkowskibury    86909 Hahn Park    59951-7540    New Mexico    2016-06-30 20:08:20.750863    2016-10-14 13:02:53.047141        \N    \N    \N    0    \N    \N    \N    \N    female
15030    Mason    Schinner    nella.reilly@schimmel.com    \N    Moldova    New Forest    9918 Waelchi Walk    28312-1204    New York    2016-07-26 06:37:41.79407    2016-10-14 13:02:53.051376        \N    \N    \N    0    \N    \N    \N    \N    male
15032    Dulce    Shanahan    neil@stokes.info    \N    Equatorial Guinea    Elisabethport    90108 Paucek Shoal    78402-1309    Massachusetts    2016-09-05 05:55:40.823844    2016-10-14 13:02:53.059647        \N    \N    \N    0    \N    \N    \N    \N    female
15033    Taylor    Hessel    myrtis.gulgowski@osinski.net    \N    Palestinian Territory    Tremainemouth    851 Muller Ridge    19101    North Dakota    2016-08-13 13:51:53.543314    2016-10-14 13:02:53.063585        \N    \N    \N    0    \N    \N    \N    \N    female
15034    Mathias    O'Hara    pat@klein.info    \N    San Marino    North Cliftonshire    418 Donnelly Village    77565-3261    North Dakota    2016-07-01 06:41:14.60043    2016-10-14 13:02:53.06743        \N    \N    \N    0    \N    \N    \N    \N    female
15035    Lucienne    Rogahn    genesis_halvorson@friesen.info    \N    Kenya    North Keegan    108 Helmer Pike    26571    North Dakota    2016-08-11 21:44:10.716632    2016-10-14 13:02:53.071374        \N    \N    \N    0    \N    \N    \N    \N    male
15036    Reggie    Sporer    norene@robel.io    \N    Rwanda    Lorenzofurt    53209 Padberg Way    59844    Alabama    2016-09-20 03:20:01.667986    2016-10-14 13:02:53.075271        \N    \N    \N    0    \N    \N    \N    \N    female
15037    Woodrow    Collier    savanah_maggio@rodriguezkutch.co    \N    Vanuatu    Steuberborough    607 Scottie Park    20981    Iowa    2016-09-07 03:03:58.40709    2016-10-14 13:02:53.079198        \N    \N    \N    0    \N    \N    \N    \N    female
15038    Giovanna    Hermann    modesta_hammes@christiansen.biz    \N    Niue    Ivytown    1737 Yundt Heights    69887-7993    Arizona    2016-07-25 00:49:19.926432    2016-10-14 13:02:53.083142        \N    \N    \N    0    \N    \N    \N    \N    male
15039    Millie    Bradtke    linnie@champlin.io    \N    Isle of Man    Greenland    875 Pattie Extension    33032    Tennessee    2016-09-09 15:33:39.55909    2016-10-14 13:02:53.087293        \N    \N    \N    0    \N    \N    \N    \N    female
15040    Skylar    Kuphal    hanna@grady.io    \N    Vietnam    Madelynnhaven    81720 Heidenreich Wells    21577    Rhode Island    2016-09-23 05:25:00.985493    2016-10-14 13:02:53.091236        \N    \N    \N    0    \N    \N    \N    \N    female
15041    Rick    Bartell    corene@sipes.org    \N    Antarctica (the territory South of 60 deg S)    Todchester    13528 Koelpin Pike    71822    North Dakota    2016-08-13 15:46:42.546913    2016-10-14 13:02:53.095276        \N    \N    \N    0    \N    \N    \N    \N    female
15042    Burnice    Breitenberg    justine_nikolaus@yundtbayer.io    \N    Nauru    Leannonmouth    3722 Alberta Mountains    93336-3391    Massachusetts    2016-06-28 20:52:55.078694    2016-10-14 13:02:53.099213        \N    \N    \N    0    \N    \N    \N    \N    female
15043    Frank    Becker    kale@gusikowskimiller.com    \N    Uganda    Johnsonmouth    388 Rolfson Pass    11495    Ohio    2016-07-01 01:06:35.00491    2016-10-14 13:02:53.103219        \N    \N    \N    0    \N    \N    \N    \N    male
15044    Nicole    Renner    khalil@kris.net    \N    Hong Kong    West Emmetshire    3584 Jaleel Oval    90492    Mississippi    2016-09-05 11:14:11.203583    2016-10-14 13:02:53.111065        \N    \N    \N    0    \N    \N    \N    \N    male
15045    Isac    Wyman    dolly@vonruedenwindler.com    \N    Heard Island and McDonald Islands    Sammyland    150 Aida Mission    63395    Texas    2016-09-05 05:48:11.202396    2016-10-14 13:02:53.115429        \N    \N    \N    0    \N    \N    \N    \N    female
15046    Taryn    Rowe    jennyfer_heller@oreilly.name    \N    Gabon    Spencermouth    610 Alberta Pine    93352-8856    New Mexico    2016-08-25 09:34:16.340312    2016-10-14 13:02:53.119483        \N    \N    \N    0    \N    \N    \N    \N    female
15047    Jacklyn    Greenholt    lorenzo@frami.org    \N    Kazakhstan    East Kieran    548 Bailey Underpass    45327    Tennessee    2016-08-04 15:28:55.857271    2016-10-14 13:02:53.124066        \N    \N    \N    0    \N    \N    \N    \N    female
15048    Jayme    Will    dock.hilpert@lynch.info    \N    Tonga    East Cleora    71792 Erna Prairie    40431-2486    Texas    2016-09-14 11:47:09.517724    2016-10-14 13:02:53.128628        \N    \N    \N    0    \N    \N    \N    \N    female
15049    Adriana    Miller    sigrid.romaguera@kaulke.co    \N    Russian Federation    North Lizziebury    60954 Gusikowski Corners    35849-8244    Connecticut    2016-07-06 16:04:46.883666    2016-10-14 13:02:53.133002        \N    \N    \N    0    \N    \N    \N    \N    female
15050    Morris    Mayer    daisha_kovacek@weber.org    \N    Tuvalu    Murphyfurt    86617 Jakubowski Plaza    89172-8703    Montana    2016-08-18 02:03:42.656922    2016-10-14 13:02:53.140279        \N    \N    \N    0    \N    \N    \N    \N    female
15051    Breanne    Pacocha    florine_hilpert@hodkiewicz.info    \N    Swaziland    Stammchester    650 Kamille Loop    25151    Hawaii    2016-07-02 07:32:58.130192    2016-10-14 13:02:53.144673        \N    \N    \N    0    \N    \N    \N    \N    female
15052    Rusty    Williamson    melvin@wiegand.com    \N    Angola    North Danika    8529 Sherwood Groves    14894-1989    Wisconsin    2016-08-19 22:54:31.236219    2016-10-14 13:02:53.148755        \N    \N    \N    0    \N    \N    \N    \N    female
15053    Boyd    O'Connell    kamryn.pacocha@batzokon.biz    \N    Israel    Durganview    3002 Leann Manors    11771    Indiana    2016-07-13 04:10:22.802509    2016-10-14 13:02:53.152652        \N    \N    \N    0    \N    \N    \N    \N    male
15054    Demetrius    Corwin    cydney@rosenbaum.info    \N    French Polynesia    West Bonitashire    9582 Lowe Station    75544    New Jersey    2016-07-16 17:45:23.421492    2016-10-14 13:02:53.157102        \N    \N    \N    0    \N    \N    \N    \N    female
15055    Lelah    Upton    soledad_schmidt@cormiergrant.name    \N    Gambia    Boganborough    8352 Moses Parks    99347-3453    Tennessee    2016-08-05 08:06:25.647944    2016-10-14 13:02:53.161514        \N    \N    \N    0    \N    \N    \N    \N    female
15056    Emerson    Jerde    evangeline_rosenbaum@adams.info    \N    Costa Rica    Othabury    50332 Royce Greens    69955    Texas    2016-08-19 20:00:14.777913    2016-10-14 13:02:53.166255        \N    \N    \N    0    \N    \N    \N    \N    female
15057    Felicia    Herman    ignatius.ruel@fadel.org    \N    Guyana    Okunevashire    962 Trevor Branch    61465    Arkansas    2016-09-08 20:05:50.756596    2016-10-14 13:02:53.17049        \N    \N    \N    0    \N    \N    \N    \N    female
15058    Glennie    Metz    kasandra@wintheiser.name    \N    American Samoa    East Wilfredo    385 Balistreri Mountain    83020-0575    North Dakota    2016-07-31 12:37:28.184088    2016-10-14 13:02:53.174572        \N    \N    \N    0    \N    \N    \N    \N    male
15059    Trinity    Beier    everett.stanton@beer.io    \N    Virgin Islands, British    Cruickshankside    81357 Yundt Spurs    14561    Minnesota    2016-09-21 01:09:32.398749    2016-10-14 13:02:53.17897        \N    \N    \N    0    \N    \N    \N    \N    male
15060    Donny    Paucek    ava@balistreri.io    \N    San Marino    Sydnieton    61500 Reynolds Stream    34281    Alaska    2016-07-26 07:54:01.280595    2016-10-14 13:02:53.183363        \N    \N    \N    0    \N    \N    \N    \N    female
15061    Mustafa    Quitzon    lilian_reichert@schaden.biz    \N    Hong Kong    South Yazminton    9980 Spencer Plains    49685    Pennsylvania    2016-09-04 19:20:22.185474    2016-10-14 13:02:53.187457        \N    \N    \N    0    \N    \N    \N    \N    female
15062    Orrin    McDermott    devin_ortiz@erdman.org    \N    Namibia    Tommieshire    522 Smith Coves    68450    Wyoming    2016-09-03 16:51:37.300034    2016-10-14 13:02:53.19141        \N    \N    \N    0    \N    \N    \N    \N    male
15063    Horacio    Nolan    deven.shields@block.org    \N    Saint Helena    South Adriana    75159 Rowe Lakes    59553    Kentucky    2016-07-01 07:45:58.444339    2016-10-14 13:02:53.195598        \N    \N    \N    0    \N    \N    \N    \N    male
15064    Michel    Hartmann    dakota_ward@gottliebnienow.name    \N    Svalbard & Jan Mayen Islands    Macejkovicport    9822 Sebastian Plains    82359    Nevada    2016-07-02 15:00:18.002943    2016-10-14 13:02:53.199816        \N    \N    \N    0    \N    \N    \N    \N    male
15065    Cary    Lowe    brandt@lang.name    \N    Cocos (Keeling) Islands    Joycemouth    90002 Klein Track    32113    Maine    2016-07-02 00:21:24.174308    2016-10-14 13:02:53.204518        \N    \N    \N    0    \N    \N    \N    \N    female
15066    Sammie    Quigley    zackary_rippin@dach.co    \N    Macedonia    West Queeniechester    7366 Loraine Heights    54856-0830    Tennessee    2016-06-24 02:00:50.827864    2016-10-14 13:02:53.208595        \N    \N    \N    0    \N    \N    \N    \N    male
15067    Afton    Schamberger    belle.schmidt@blanda.co    \N    Guatemala    North Ayla    2368 Kihn Pike    95359-3390    New Jersey    2016-07-28 01:04:48.528036    2016-10-14 13:02:53.212999        \N    \N    \N    0    \N    \N    \N    \N    male
15068    Reed    White    ari.mante@dibbert.net    \N    Republic of Korea    Molliebury    6221 Flavio Turnpike    96154-6035    New Jersey    2016-09-10 20:42:02.893128    2016-10-14 13:02:53.218191        \N    \N    \N    0    \N    \N    \N    \N    male
15069    Anabelle    Price    julia_lehner@bahringer.name    \N    Kenya    Halieport    6268 Cooper Locks    18695-5373    Georgia    2016-08-10 17:23:48.221411    2016-10-14 13:02:53.222602        \N    \N    \N    0    \N    \N    \N    \N    male
15070    Dylan    Hand    doug.mcclure@ruelosinski.co    \N    Benin    Lake Gregtown    8454 Candice Highway    86796-1282    South Carolina    2016-07-07 23:55:17.207445    2016-10-14 13:02:53.226873        \N    \N    \N    0    \N    \N    \N    \N    female
15071    Helen    Prosacco    dalton@thompsonondricka.co    \N    Panama    Hayesside    1238 Cortez Shoals    31655-4738    Nevada    2016-09-01 05:31:59.574544    2016-10-14 13:02:53.231251        \N    \N    \N    0    \N    \N    \N    \N    male
15072    Adrien    Leuschke    madyson.borer@krajcikbrekke.info    \N    Liechtenstein    Lake Oren    788 Angie Alley    42627-0142    Arkansas    2016-07-04 06:03:14.292778    2016-10-14 13:02:53.235719        \N    \N    \N    0    \N    \N    \N    \N    male
15073    Althea    Pollich    hope@pacocha.biz    \N    Virgin Islands, British    East Marcoshaven    6008 Golden Haven    20563-4698    Alaska    2016-08-18 01:59:55.846675    2016-10-14 13:02:53.240277        \N    \N    \N    0    \N    \N    \N    \N    male
15074    Jeanie    Jaskolski    mathew@blanda.net    \N    French Guiana    South Sylvanstad    39259 Orrin Court    61351-6872    Washington    2016-07-29 09:03:30.094595    2016-10-14 13:02:53.244593        \N    \N    \N    0    \N    \N    \N    \N    male
15075    Samson    Gottlieb    ivy@grant.com    \N    Cuba    Virgieshire    634 Martin Parkway    78534-0331    California    2016-09-25 01:37:46.977606    2016-10-14 13:02:53.251315        \N    \N    \N    0    \N    \N    \N    \N    male
15076    Marco    Kuhlman    dustin@mitchell.com    \N    Hungary    New Mariahchester    880 Schiller Plaza    49554    Georgia    2016-08-28 13:46:09.962053    2016-10-14 13:02:53.255678        \N    \N    \N    0    \N    \N    \N    \N    male
15077    Claud    Smith    harrison.bailey@stanton.com    \N    Saint Martin    East Reggie    8819 Cummerata Plains    65873-8513    Arkansas    2016-09-24 04:43:54.764938    2016-10-14 13:02:53.260681        \N    \N    \N    0    \N    \N    \N    \N    male
15078    Osbaldo    Bergstrom    bruce.mills@strackeemmerich.info    \N    Cayman Islands    Cronamouth    8103 Nicklaus Light    47904    Massachusetts    2016-07-19 16:34:24.50572    2016-10-14 13:02:53.265539        \N    \N    \N    0    \N    \N    \N    \N    female
15079    Scot    Roberts    sister.corkery@greenfelder.com    \N    Democratic People's Republic of Korea    Katlynberg    22139 Jenkins Alley    87790    New Hampshire    2016-07-28 20:39:18.735516    2016-10-14 13:02:53.270073        \N    \N    \N    0    \N    \N    \N    \N    male
15080    Estel    Treutel    emile.dare@rath.org    \N    Mayotte    Rosalindaside    954 Glenna Drive    44206-9107    Iowa    2016-09-05 14:41:15.92627    2016-10-14 13:02:53.27423        \N    \N    \N    0    \N    \N    \N    \N    male
15081    Jules    Cruickshank    bonnie@renner.biz    \N    Haiti    Jeremyton    1475 Howe Point    96215-3342    Ohio    2016-07-15 00:42:17.914141    2016-10-14 13:02:53.278372        \N    \N    \N    0    \N    \N    \N    \N    male
15082    Emmalee    Daugherty    eugenia_heaney@mohr.org    \N    Saint Lucia    Port Mitchell    66901 Makenna Landing    66590    North Carolina    2016-08-28 01:10:49.810808    2016-10-14 13:02:53.282627        \N    \N    \N    0    \N    \N    \N    \N    female
15083    Karine    Wisozk    eulalia.mitchell@bergnaum.net    \N    Nauru    Roscoeshire    126 Graham Gateway    77974    Missouri    2016-07-05 19:05:32.63731    2016-10-14 13:02:53.287132        \N    \N    \N    0    \N    \N    \N    \N    male
15084    Mike    Witting    payton.nikolaus@lueilwitz.io    \N    Portugal    Port Wanda    43770 Bridgette Mews    98811-1349    Florida    2016-07-28 01:07:36.623674    2016-10-14 13:02:53.291456        \N    \N    \N    0    \N    \N    \N    \N    male
15085    Celestine    Heaney    jacklyn.block@turner.biz    \N    Bhutan    New Malindamouth    1103 Delbert Forges    30965    Pennsylvania    2016-08-24 08:49:01.259814    2016-10-14 13:02:53.29544        \N    \N    \N    0    \N    \N    \N    \N    male
15086    Caterina    Jacobi    eliezer.hegmann@treutel.net    \N    Norway    Alekview    59723 Afton Streets    31558    Maine    2016-09-17 08:40:54.814113    2016-10-14 13:02:53.29944        \N    \N    \N    0    \N    \N    \N    \N    male
15087    Mitchell    Abshire    royal@donnelly.com    \N    Chad    Lake Barneyland    42666 Claudine Extension    96541    Michigan    2016-09-15 02:31:34.214581    2016-10-14 13:02:53.303601        \N    \N    \N    0    \N    \N    \N    \N    female
15089    Justyn    Rolfson    letha.stracke@keeling.io    \N    Rwanda    East Willard    7974 Haley Mews    30249-9907    Wisconsin    2016-07-03 15:22:07.581822    2016-10-14 13:02:53.308574        \N    \N    \N    0    \N    \N    \N    \N    male
15090    Giles    Steuber    dominique.cole@gottliebemmerich.org    \N    Latvia    Bradfordburgh    55796 Towne Unions    63536-3231    Mississippi    2016-08-08 16:53:43.539604    2016-10-14 13:02:53.313769        \N    \N    \N    0    \N    \N    \N    \N    female
15091    Lindsey    Lang    victor_block@toymedhurst.net    \N    Sri Lanka    Lake Minnieland    3528 Gene Track    86378-4139    Minnesota    2016-06-28 23:26:47.01601    2016-10-14 13:02:53.318925        \N    \N    \N    0    \N    \N    \N    \N    female
15092    Lloyd    Von    allie@daniel.info    \N    Liechtenstein    South Samara    45955 Kian Inlet    69982    Rhode Island    2016-09-13 14:56:19.393903    2016-10-14 13:02:53.323611        \N    \N    \N    0    \N    \N    \N    \N    male
15094    Freddie    Lang    marjorie_barrows@creminkunze.org    \N    Denmark    Lake Gregorio    2121 Jillian Cliff    81637    Rhode Island    2016-08-07 20:53:01.369542    2016-10-14 13:02:53.33123        \N    \N    \N    0    \N    \N    \N    \N    male
15095    Nasir    Nikolaus    elmo@lockmanbayer.com    \N    Virgin Islands, U.S.    Danielport    19428 Reichel Falls    46674    West Virginia    2016-07-19 12:19:30.278403    2016-10-14 13:02:53.335979        \N    \N    \N    0    \N    \N    \N    \N    female
15096    Peggie    Rau    oda_prohaska@kulasboehm.info    \N    Syrian Arab Republic    Ashtonshire    83829 Legros Courts    88528    South Carolina    2016-07-20 04:11:59.48445    2016-10-14 13:02:53.340658        \N    \N    \N    0    \N    \N    \N    \N    male
15097    Stevie    Blanda    joanne@legros.biz    \N    Palau    Wunschburgh    72269 Cole Glen    21501    North Dakota    2016-07-16 23:11:28.071815    2016-10-14 13:02:53.344957        \N    \N    \N    0    \N    \N    \N    \N    female
15098    Matteo    King    hal@denesikbeahan.co    \N    Sudan    Lake Tateville    736 Madilyn Terrace    36169-9840    Utah    2016-08-26 00:07:34.012461    2016-10-14 13:02:53.349978        \N    \N    \N    0    \N    \N    \N    \N    female
15099    Obie    Nader    ollie@ankundingzemlak.co    \N    Cape Verde    North Irvingport    66341 Goldner Shores    76803    Utah    2016-07-17 14:58:52.452827    2016-10-14 13:02:53.35523        \N    \N    \N    0    \N    \N    \N    \N    female
15100    Twila    Stroman    kade_stoltenberg@gislason.biz    \N    Malawi    Lake Jalyn    40427 Trevion Oval    85470    Alaska    2016-09-10 01:37:07.67856    2016-10-14 13:02:53.360308        \N    \N    \N    0    \N    \N    \N    \N    male
15101    Daryl    Lemke    corine@lefflerdach.info    \N    Rwanda    Lonton    334 Nelda Streets    58166-8354    New Hampshire    2016-09-21 11:00:37.146172    2016-10-14 13:02:53.366507        \N    \N    \N    0    \N    \N    \N    \N    male
15102    Jennings    Wilderman    patrick_doyle@heel.com    \N    Central African Republic    Wisozkstad    31733 Kling Trafficway    43896-7362    Florida    2016-07-28 17:54:51.066691    2016-10-14 13:02:53.371065        \N    \N    \N    0    \N    \N    \N    \N    male
15103    Marcos    Adams    oscar_will@feil.io    \N    Thailand    South Haileyberg    9228 Webster Lights    45019-5260    Maine    2016-07-27 07:28:17.518706    2016-10-14 13:02:53.375487        \N    \N    \N    0    \N    \N    \N    \N    male
15104    Blake    Kuhlman    hayden_glover@ritchie.org    \N    Syrian Arab Republic    West Tinaborough    771 Isai Estate    60998-6186    Kansas    2016-09-24 23:56:48.651969    2016-10-14 13:02:53.380327        \N    \N    \N    0    \N    \N    \N    \N    female
15105    Nora    Roob    crystel_hoeger@legrosgorczany.info    \N    Cuba    New Leonorview    19787 Hamill Mews    61147    Missouri    2016-07-22 21:11:03.245228    2016-10-14 13:02:53.385035        \N    \N    \N    0    \N    \N    \N    \N    female
15106    Briana    Larson    kailee_rippin@corwin.name    \N    Niger    West Stuartshire    173 Angie Ville    60492-0274    Utah    2016-07-18 10:53:43.229921    2016-10-14 13:02:53.389248        \N    \N    \N    0    \N    \N    \N    \N    female
15107    Noemy    Brown    norbert@wolf.org    \N    Belize    Cormierchester    450 Elbert Field    66961    Massachusetts    2016-09-20 22:40:52.761944    2016-10-14 13:02:53.39407        \N    \N    \N    0    \N    \N    \N    \N    female
15108    Shawna    Bosco    jorge@dickinson.io    \N    Cameroon    Shanefort    121 Kunze Plains    81870    Oklahoma    2016-06-22 18:50:28.14565    2016-10-14 13:02:53.399726        \N    \N    \N    0    \N    \N    \N    \N    female
15109    Maddison    Schmeler    lorna@gleichner.com    \N    Estonia    North Rae    387 Roger Ports    55230    Virginia    2016-08-12 03:59:03.381439    2016-10-14 13:02:53.404421        \N    \N    \N    0    \N    \N    \N    \N    female
15110    Josiane    Greenfelder    laila@rathrohan.name    \N    Grenada    Port Aidastad    717 Friesen Motorway    78713-4753    New Mexico    2016-09-07 21:23:24.141602    2016-10-14 13:02:53.408896        \N    \N    \N    0    \N    \N    \N    \N    male
15111    Gerard    Jacobi    elisa@moore.biz    \N    Russian Federation    North Terrillstad    2272 Shanie Shoal    24495-9367    Rhode Island    2016-09-02 02:05:48.095722    2016-10-14 13:02:53.413687        \N    \N    \N    0    \N    \N    \N    \N    male
15113    Virginie    Krajcik    piper@kutchtoy.io    \N    India    Lake Alyciaside    4108 Hahn Plaza    60085    Florida    2016-09-01 00:59:13.689312    2016-10-14 13:02:53.418136        \N    \N    \N    0    \N    \N    \N    \N    female
15114    Haleigh    Hamill    kaley@rempel.info    \N    Guadeloupe    Morrismouth    1088 Quinten Port    48918-4677    Arizona    2016-08-11 17:25:23.744898    2016-10-14 13:02:53.422111        \N    \N    \N    0    \N    \N    \N    \N    male
15115    Vesta    Upton    angelina@reynolds.net    \N    Bahrain    Conroymouth    977 Ewald Manor    10923-2607    Maryland    2016-07-09 22:03:34.0009    2016-10-14 13:02:53.426952        \N    \N    \N    0    \N    \N    \N    \N    female
15116    Derek    Maggio    kyra_cummerata@halvorson.name    \N    Uruguay    North Jeramy    55856 Aaron Street    94270    Vermont    2016-09-05 06:46:15.449281    2016-10-14 13:02:53.432009        \N    \N    \N    0    \N    \N    \N    \N    female
15117    Marta    Kassulke    leila_lueilwitz@becker.info    \N    Congo    West Amber    2255 Gerhard Rapids    15549-4525    Idaho    2016-07-16 22:19:14.130946    2016-10-14 13:02:53.436447        \N    \N    \N    0    \N    \N    \N    \N    male
15119    Jasen    Yost    sadye@marks.io    \N    Brunei Darussalam    North Rosarioview    13410 Conrad Bridge    66566    Virginia    2016-09-24 12:49:41.358444    2016-10-14 13:02:53.441067        \N    \N    \N    0    \N    \N    \N    \N    male
15120    Raheem    Roob    sharon@rohan.net    \N    Romania    Caroleport    722 Bosco Road    93134-4080    Oregon    2016-09-26 14:36:33.999931    2016-10-14 13:02:53.445791        \N    \N    \N    0    \N    \N    \N    \N    male
15121    Emil    Renner    carmela_murphy@bartellreilly.net    \N    Senegal    Zionberg    7096 Delpha Burg    51434-8023    Hawaii    2016-08-08 02:04:37.356124    2016-10-14 13:02:53.449874        \N    \N    \N    0    \N    \N    \N    \N    female
15122    Mylene    Howe    laurine@sporer.co    \N    Czech Republic    Mohrberg    631 Gleichner Ways    13793    Washington    2016-08-02 03:41:17.690609    2016-10-14 13:02:53.454154        \N    \N    \N    0    \N    \N    \N    \N    female
15123    Betsy    Dooley    mireya@armstrongwilliamson.info    \N    Togo    Lowetown    65005 Deckow Crest    71810    North Dakota    2016-08-25 10:53:28.297961    2016-10-14 13:02:53.458618        \N    \N    \N    0    \N    \N    \N    \N    female
15124    Maximilian    Effertz    watson@stokesbeer.io    \N    Antarctica (the territory South of 60 deg S)    Bodestad    609 Bode Station    91754    South Carolina    2016-07-28 23:14:46.447386    2016-10-14 13:02:53.462882        \N    \N    \N    0    \N    \N    \N    \N    female
15125    Giovanni    Olson    christina.kuvalis@ruelritchie.net    \N    Montenegro    Port Stoneburgh    63199 Kaelyn Port    77364-8022    Massachusetts    2016-08-30 19:38:41.676614    2016-10-14 13:02:53.467165        \N    \N    \N    0    \N    \N    \N    \N    male
15126    Joe    Sawayn    alvena@wilderman.org    \N    Hungary    Gibsonburgh    96148 McGlynn Hollow    49047-2330    North Carolina    2016-07-10 04:33:34.300795    2016-10-14 13:02:53.471223        \N    \N    \N    0    \N    \N    \N    \N    female
15127    Erin    Thompson    jimmy@cummerata.io    \N    Saint Lucia    Christiansenmouth    2080 Dion Causeway    59914-4702    Florida    2016-09-13 18:47:43.957217    2016-10-14 13:02:53.475226        \N    \N    \N    0    \N    \N    \N    \N    female
15128    Henri    Kertzmann    samara@vonrueden.name    \N    Philippines    Kendrickport    40965 Beahan Canyon    18459    Arkansas    2016-07-31 07:17:00.468717    2016-10-14 13:02:53.479376        \N    \N    \N    0    \N    \N    \N    \N    female
15129    Gabriella    Prohaska    kendall.pacocha@nienowlangosh.co    \N    Romania    Reichertside    418 Lyric Islands    51787-1804    Nevada    2016-07-28 19:06:13.270915    2016-10-14 13:02:53.483602        \N    \N    \N    0    \N    \N    \N    \N    female
15130    Maximo    Koss    jensen.tillman@rutherford.name    \N    Cambodia    Uptonfort    3478 Botsford Parkways    55327-6257    Nevada    2016-06-29 10:00:00.668866    2016-10-14 13:02:53.488418        \N    \N    \N    0    \N    \N    \N    \N    male
15131    Erik    Mraz    pat@prohaska.io    \N    Saint Vincent and the Grenadines    Lake Abraham    8355 Johns Road    70935    Florida    2016-07-08 03:47:28.623225    2016-10-14 13:02:53.493082        \N    \N    \N    0    \N    \N    \N    \N    female
15132    Immanuel    Nienow    stephan@hansen.name    \N    Tanzania    Lake Ceceliaborough    84175 Toy Spurs    34340    South Dakota    2016-07-13 01:31:55.617816    2016-10-14 13:02:53.502406        \N    \N    \N    0    \N    \N    \N    \N    male
15133    Alexandre    Donnelly    randal@jerde.info    \N    Saint Lucia    East Arlene    179 Eliza Village    44558-6018    Idaho    2016-09-07 19:34:41.371262    2016-10-14 13:02:53.506959        \N    \N    \N    0    \N    \N    \N    \N    female
15134    Keith    Bartoletti    philip.daugherty@runte.co    \N    Faroe Islands    North Coty    835 Koch Square    53809-2149    Vermont    2016-09-10 18:20:00.57145    2016-10-14 13:02:53.512104        \N    \N    \N    0    \N    \N    \N    \N    male
15135    Earline    Koch    kaleigh@hicklealtenwerth.co    \N    Saint Barthelemy    McKenziechester    68107 Cronin Courts    79126    Louisiana    2016-09-04 00:48:36.915525    2016-10-14 13:02:53.516614        \N    \N    \N    0    \N    \N    \N    \N    female
15136    Earnest    Kulas    keith@bartonhand.com    \N    Somalia    Jenkinston    404 McClure Islands    56902    Oregon    2016-08-07 23:28:22.108769    2016-10-14 13:02:53.52501        \N    \N    \N    0    \N    \N    \N    \N    male
15137    Wilber    Zemlak    rachelle@hudsonlabadie.name    \N    Sierra Leone    Garlandburgh    77712 Hodkiewicz Streets    64656    Washington    2016-08-15 23:40:38.628656    2016-10-14 13:02:53.530131        \N    \N    \N    0    \N    \N    \N    \N    male
15138    Joanne    Hyatt    samson.kertzmann@konopelski.net    \N    Qatar    Pearlieborough    4610 Vallie Village    61458-2930    Pennsylvania    2016-07-05 16:11:29.64865    2016-10-14 13:02:53.534687        \N    \N    \N    0    \N    \N    \N    \N    male
15139    Georgiana    Spinka    madisen@hauck.info    \N    French Guiana    Westonton    1969 Purdy Run    25119-0215    Rhode Island    2016-08-17 11:56:50.764208    2016-10-14 13:02:53.538802        \N    \N    \N    0    \N    \N    \N    \N    male
15140    Philip    Hackett    yeenia_kreiger@raynorstark.name    \N    Honduras    Howardport    380 Donna Views    39361-9808    Pennsylvania    2016-08-24 18:50:04.144343    2016-10-14 13:02:53.543015        \N    \N    \N    0    \N    \N    \N    \N    male
15141    Maude    Pagac    antonietta@schoenyost.name    \N    Falkland Islands (Malvinas)    Port Maude    18027 Koss Ferry    94128-6170    Indiana    2016-07-13 15:25:40.77348    2016-10-14 13:02:53.547232        \N    \N    \N    0    \N    \N    \N    \N    male
15142    Cheyanne    Hessel    kaden@gusikowskilind.org    \N    Madagascar    Elnorastad    108 Helena Hollow    53821    Wyoming    2016-09-07 02:00:02.164229    2016-10-14 13:02:53.552386        \N    \N    \N    0    \N    \N    \N    \N    female
15143    Eileen    Lubowitz    lennie_hilpert@padberg.net    \N    Mauritania    Lake Rae    31491 Una Stream    43923    Maine    2016-07-03 21:11:43.959729    2016-10-14 13:02:53.556857        \N    \N    \N    0    \N    \N    \N    \N    male
15144    Kirstin    Schumm    mavis@schaefer.name    \N    Russian Federation    North Juanita    274 Efrain Mount    37287-6437    Connecticut    2016-08-29 09:42:53.597764    2016-10-14 13:02:53.561565        \N    \N    \N    0    \N    \N    \N    \N    female
15145    Kaelyn    Nikolaus    joesph@rutherford.io    \N    Uzbekistan    East Imanishire    289 DuBuque Stream    82256    Arizona    2016-08-16 00:46:36.635772    2016-10-14 13:02:53.566352        \N    \N    \N    0    \N    \N    \N    \N    male
15146    Piper    Streich    giovani@macejkovic.com    \N    Egypt    Fishertown    558 Jerde Knoll    22857-9865    Michigan    2016-08-20 06:12:31.690204    2016-10-14 13:02:53.571997        \N    \N    \N    0    \N    \N    \N    \N    female
15147    Kolby    Trantow    torrey.runolfon@dietrichokon.name    \N    Monaco    East Judebury    9503 Farrell Canyon    85680-2644    Kansas    2016-08-25 15:32:29.2672    2016-10-14 13:02:53.581827        \N    \N    \N    0    \N    \N    \N    \N    male
15148    Reid    Schumm    kaela@zboncak.com    \N    Ghana    East Virgil    98405 Lesch Creek    35202-8894    Michigan    2016-08-28 04:08:09.828728    2016-10-14 13:02:53.586422        \N    \N    \N    0    \N    \N    \N    \N    male
15149    Brent    Heidenreich    amira@zieme.net    \N    China    Erdmanborough    4752 Schamberger Alley    15090    West Virginia    2016-09-29 02:41:04.615988    2016-10-14 13:02:53.591781        \N    \N    \N    0    \N    \N    \N    \N    male
15150    Skylar    Carroll    celine@raynorabshire.io    \N    South Africa    South Ethaville    768 Beahan Throughway    85134-9223    Kentucky    2016-07-28 21:03:14.283362    2016-10-14 13:02:53.597619        \N    \N    \N    0    \N    \N    \N    \N    female
15151    Alf    Anderson    grayson_emard@stark.com    \N    Iraq    Lubowitzmouth    27991 Ziemann Terrace    70262    Kentucky    2016-09-20 20:27:39.553768    2016-10-14 13:02:53.602079        \N    \N    \N    0    \N    \N    \N    \N    male
15152    Ashtyn    Kub    jovani.witting@keelingschmidt.biz    \N    Trinidad and Tobago    New Herman    16395 Wunsch Radial    10816-4713    California    2016-07-27 00:00:20.756797    2016-10-14 13:02:53.606675        \N    \N    \N    0    \N    \N    \N    \N    female
15153    Chelsea    Flatley    johnpaul_hagenes@boganwaters.net    \N    Nicaragua    Bertrandshire    745 Grimes Path    54002    South Dakota    2016-07-24 07:02:11.878245    2016-10-14 13:02:53.611784        \N    \N    \N    0    \N    \N    \N    \N    female
15154    Adrianna    Gorczany    isabelle_stracke@schummgoodwin.info    \N    Montserrat    North Rose    48832 Tobin Row    52681    Idaho    2016-09-07 01:34:23.307672    2016-10-14 13:02:53.61667        \N    \N    \N    0    \N    \N    \N    \N    female
15155    Toney    Huel    celestine_green@gorczany.biz    \N    Guatemala    Bartonborough    4422 Milo Terrace    38986-8894    South Carolina    2016-09-05 22:12:44.406624    2016-10-14 13:02:53.622149        \N    \N    \N    0    \N    \N    \N    \N    male
15156    Bella    Bailey    rosalind@starkkuhic.name    \N    Gambia    Lake Loraineshire    8764 Layne Lights    20567    South Carolina    2016-09-19 13:39:05.87604    2016-10-14 13:02:53.627625        \N    \N    \N    0    \N    \N    \N    \N    male
15157    Corrine    Effertz    rachael@halvorson.org    \N    Algeria    Opalmouth    814 Grover Key    15823    Arkansas    2016-09-14 19:24:47.373652    2016-10-14 13:02:53.632955        \N    \N    \N    0    \N    \N    \N    \N    male
15158    Haylee    Lang    kyler@boyer.info    \N    Bahamas    Port Angelicabury    35447 Haley Camp    22673    Iowa    2016-09-27 15:21:59.552132    2016-10-14 13:02:53.637844        \N    \N    \N    0    \N    \N    \N    \N    female
15159    Eleanora    McCullough    leora_stroman@abernathy.biz    \N    Myanmar    New Clementina    8327 Ortiz Plains    33096-6865    Washington    2016-08-21 22:51:50.130491    2016-10-14 13:02:53.642981        \N    \N    \N    0    \N    \N    \N    \N    female
15160    Lane    Monahan    derrick_schmidt@berge.biz    \N    Democratic People's Republic of Korea    Bernierton    78256 Herzog Freeway    15104-9122    Minnesota    2016-06-22 16:18:24.50973    2016-10-14 13:02:53.647541        \N    \N    \N    0    \N    \N    \N    \N    female
15161    Andre    Marks    walton.pagac@schoenkunze.info    \N    Anguilla    Faestad    35228 Lubowitz Mountains    95580-1675    Rhode Island    2016-09-21 18:42:02.221912    2016-10-14 13:02:53.652505        \N    \N    \N    0    \N    \N    \N    \N    male
15162    Cindy    McGlynn    keven@murazik.com    \N    Saint Lucia    Lake Saige    300 Charley Harbors    98514-6785    Montana    2016-08-15 07:28:10.035732    2016-10-14 13:02:53.656552        \N    \N    \N    0    \N    \N    \N    \N    male
15163    Granville    Yost    lawrence_dickinson@goyette.io    \N    Kazakhstan    Holdenshire    5298 Jaqueline Alley    56492    New Hampshire    2016-08-29 17:11:54.135848    2016-10-14 13:02:53.660803        \N    \N    \N    0    \N    \N    \N    \N    female
15164    Marilyne    Monahan    gregg_bailey@streich.io    \N    Austria    Denesikbury    6317 Marvin Street    80894    Colorado    2016-06-25 19:02:29.114786    2016-10-14 13:02:53.665546        \N    \N    \N    0    \N    \N    \N    \N    female
15165    Wellington    Ledner    roy_rowe@kuhlman.name    \N    Jersey    Clairborough    7819 Justyn Rapids    81454-1409    Ohio    2016-09-04 10:47:42.844323    2016-10-14 13:02:53.670197        \N    \N    \N    0    \N    \N    \N    \N    male
15166    Caterina    Farrell    filiberto.mayert@streich.name    \N    Mali    Maeganville    38301 O'Conner Valleys    55315    Florida    2016-07-21 04:35:07.724808    2016-10-14 13:02:53.674438        \N    \N    \N    0    \N    \N    \N    \N    female
15167    Timmothy    Swaniawski    turner@leffler.io    \N    Brunei Darussalam    Schultzshire    58218 Breitenberg Road    68422    Vermont    2016-08-28 21:55:08.484413    2016-10-14 13:02:53.678545        \N    \N    \N    0    \N    \N    \N    \N    female
15168    Olin    Schumm    lea.heidenreich@andersonebert.net    \N    United Kingdom    Lake Isaiville    3223 Lowe Islands    78099-7204    Maryland    2016-08-01 18:33:05.681283    2016-10-14 13:02:53.682994        \N    \N    \N    0    \N    \N    \N    \N    male
15169    Holden    Smith    kenya@thiel.org    \N    Netherlands    Gustton    330 Trantow Route    94460    Colorado    2016-09-25 23:49:09.361782    2016-10-14 13:02:53.68757        \N    \N    \N    0    \N    \N    \N    \N    male
15170    Amber    Kuphal    stefan@carterferry.io    \N    French Guiana    New Abbey    1491 Rosenbaum Lane    58941    West Virginia    2016-09-10 15:33:10.367388    2016-10-14 13:02:53.694248        \N    \N    \N    0    \N    \N    \N    \N    male
15171    Efrain    Corwin    lizzie@mccluresanford.name    \N    United States of America    Stoltenbergfort    2932 Rafael Land    39712    Minnesota    2016-07-17 01:32:58.028356    2016-10-14 13:02:53.699844        \N    \N    \N    0    \N    \N    \N    \N    female
15172    Hazle    Gleichner    kyle.zboncak@bartoletti.name    \N    Singapore    East Rogersport    206 Bertrand Mills    88128    Idaho    2016-09-12 00:46:10.206725    2016-10-14 13:02:53.704756        \N    \N    \N    0    \N    \N    \N    \N    male
15173    Bridie    Lynch    constance@jaskolski.io    \N    Bahrain    Calliefort    819 Lemuel Lane    32596    Montana    2016-08-06 07:18:42.252285    2016-10-14 13:02:53.714379        \N    \N    \N    0    \N    \N    \N    \N    male
15174    Adolf    Thompson    chance_stehr@yundt.com    \N    United States Minor Outlying Islands    New Monserratville    987 Lane Common    19005-6084    Oklahoma    2016-07-23 04:36:36.722152    2016-10-14 13:02:53.719152        \N    \N    \N    0    \N    \N    \N    \N    female
15175    Arne    Paucek    talia@jacobi.com    \N    Zambia    Hintzborough    77176 Harber Overpass    55901    New York    2016-08-28 02:25:50.432546    2016-10-14 13:02:53.723976        \N    \N    \N    0    \N    \N    \N    \N    male
15176    Dewitt    Denesik    jarred@hamill.info    \N    Saint Helena    South Reynold    4299 Zboncak Creek    23760    Delaware    2016-08-29 00:45:54.007426    2016-10-14 13:02:53.729008        \N    \N    \N    0    \N    \N    \N    \N    male
15177    Kyle    Ward    jany@croninbraun.com    \N    United Arab Emirates    Tessland    703 Lorna Branch    35190-5152    Tennessee    2016-08-05 23:23:05.789491    2016-10-14 13:02:53.736944        \N    \N    \N    0    \N    \N    \N    \N    male
15179    Garnet    Wyman    domenick_heidenreich@stark.co    \N    Mozambique    Huelsmouth    224 Bulah Port    65100-2401    New Hampshire    2016-08-27 05:23:33.908404    2016-10-14 13:02:53.742284        \N    \N    \N    0    \N    \N    \N    \N    female
15180    Josiah    Stamm    nya.cruickshank@collins.com    \N    Solomon Islands    Port Alda    9288 Kennith Keys    39556    Maryland    2016-07-24 05:46:42.657679    2016-10-14 13:02:53.746989        \N    \N    \N    0    \N    \N    \N    \N    male
15181    Cristopher    Reynolds    verona_yundt@botsford.net    \N    Republic of Korea    South Noemi    3996 Callie Light    96531    North Carolina    2016-09-02 12:00:02.076021    2016-10-14 13:02:53.751768        \N    \N    \N    0    \N    \N    \N    \N    female
15182    Shemar    Hagenes    constantin@renner.name    \N    Seychelles    Reneestad    25293 Alvis Lake    46234-9662    North Dakota    2016-08-10 08:14:17.466223    2016-10-14 13:02:53.777071        \N    \N    \N    0    \N    \N    \N    \N    male
15183    Otha    Weissnat    muhammad@windlerframi.com    \N    Botswana    East Tiffany    10018 Reynolds Mews    24280    Oregon    2016-07-01 05:49:37.853743    2016-10-14 13:02:53.782822        \N    \N    \N    0    \N    \N    \N    \N    male
15184    Garland    Moen    colton@christiansenhuel.biz    \N    Denmark    Davontemouth    9270 Kristina Point    49861-8017    Arizona    2016-07-05 03:02:19.480398    2016-10-14 13:02:53.787428        \N    \N    \N    0    \N    \N    \N    \N    male
15185    Kieran    Christiansen    lucienne@ryan.co    \N    Italy    Krismouth    927 Caleb Stravenue    64313    Nevada    2016-08-24 23:08:43.375627    2016-10-14 13:02:53.792692        \N    \N    \N    0    \N    \N    \N    \N    male
15186    Vladimir    Murphy    ewald.little@boscocruickshank.com    \N    British Indian Ocean Territory (Chagos Archipelago)    Ziemannhaven    258 Nelson Cape    37889-2154    Texas    2016-07-21 22:59:34.610476    2016-10-14 13:02:53.79718        \N    \N    \N    0    \N    \N    \N    \N    male
15189    Angelina    Johnston    jacinthe@naderkshlerin.co    \N    Bouvet Island (Bouvetoya)    East Roger    12062 Rupert Place    14857    Nevada    2016-09-13 06:55:30.102275    2016-10-14 13:02:53.802689        \N    \N    \N    0    \N    \N    \N    \N    female
15190    Rosalia    Johns    dana@homenick.com    \N    Tanzania    Elfriedaville    868 Libbie Green    86065    Pennsylvania    2016-09-29 05:26:50.917384    2016-10-14 13:02:53.806771        \N    \N    \N    0    \N    \N    \N    \N    female
15191    Destin    Dicki    avery.dubuque@hermiston.com    \N    Virgin Islands, British    West Madelyn    929 Kessler Ford    74807    Alaska    2016-07-04 01:53:59.470411    2016-10-14 13:02:53.811039        \N    \N    \N    0    \N    \N    \N    \N    male
15192    Walter    Zboncak    emanuel_bernhard@rogahn.co    \N    Spain    Lake Terence    727 Sanford Path    20512-1619    Michigan    2016-08-07 18:16:15.326282    2016-10-14 13:02:53.815081        \N    \N    \N    0    \N    \N    \N    \N    female
15193    Verner    Homenick    betty@jacobskshlerin.co    \N    Tunisia    East Michaela    609 Haley Gateway    82681    Minnesota    2016-09-28 18:33:51.061246    2016-10-14 13:02:53.819654        \N    \N    \N    0    \N    \N    \N    \N    male
15194    Deron    Marquardt    guie_wunsch@hillsjast.info    \N    Austria    North Bart    97177 Domenic Point    77053    Texas    2016-07-18 22:15:04.262551    2016-10-14 13:02:53.825918        \N    \N    \N    0    \N    \N    \N    \N    male
15195    Edd    Gerhold    gonzalo@haleydurgan.org    \N    Cayman Islands    Port Leoneview    2762 Swaniawski Neck    38495    South Dakota    2016-08-30 04:44:28.752767    2016-10-14 13:02:53.83035        \N    \N    \N    0    \N    \N    \N    \N    female
15196    Sigurd    Nolan    humberto@davis.biz    \N    Cook Islands    Hauckstad    7578 Wiza Ramp    97038    Minnesota    2016-07-30 16:44:09.639315    2016-10-14 13:02:53.834672        \N    \N    \N    0    \N    \N    \N    \N    male
15197    Monserrate    Harris    erwin_blick@hansensanford.io    \N    Montenegro    Danteside    59307 Cummings Drives    56015    Illinois    2016-09-11 15:23:18.9432    2016-10-14 13:02:53.83948        \N    \N    \N    0    \N    \N    \N    \N    female
15198    Kameron    Abbott    rosalinda@emard.com    \N    Italy    Albertbury    1647 Schmidt Trail    95310-2750    North Carolina    2016-09-23 19:38:13.105913    2016-10-14 13:02:53.843928        \N    \N    \N    0    \N    \N    \N    \N    male
15199    Breanne    Moen    coy@dubuque.biz    \N    Bosnia and Herzegovina    Sadyeview    106 Pfeffer Hills    25065-6509    Alabama    2016-06-28 04:06:31.822539    2016-10-14 13:02:53.848307        \N    \N    \N    0    \N    \N    \N    \N    female
15201    Christopher    Kilback    darren_kuhic@mante.name    \N    Mongolia    Aufderharbury    5189 Botsford Common    20502    Virginia    2016-07-09 08:31:41.958072    2016-10-14 13:02:53.852826        \N    \N    \N    0    \N    \N    \N    \N    male
15202    Johnathon    Morar    elisha@langmitchell.name    \N    Bosnia and Herzegovina    New Hadleybury    5212 Martina Isle    37550    Tennessee    2016-07-27 06:17:04.059145    2016-10-14 13:02:53.856956        \N    \N    \N    0    \N    \N    \N    \N    male
15203    Eldora    Spinka    jeanie@kubullrich.biz    \N    Bolivia    South Jaydehaven    5696 Alvera Forges    34807-2958    Illinois    2016-06-26 07:27:26.189749    2016-10-14 13:02:53.861584        \N    \N    \N    0    \N    \N    \N    \N    female
15205    Gavin    Sipes    berta@klocko.org    \N    Seychelles    New Dennistown    8242 Keeling Loop    57822-1218    Utah    2016-07-20 03:01:07.199035    2016-10-14 13:02:53.866289        \N    \N    \N    0    \N    \N    \N    \N    female
15206    Gregorio    Denesik    weldon@oharavon.org    \N    Cameroon    South Hayleeberg    909 Paxton Expressway    90115-1152    Louisiana    2016-08-22 05:21:28.933895    2016-10-14 13:02:53.871246        \N    \N    \N    0    \N    \N    \N    \N    female
15207    Lina    Langworth    vanea.kaulke@brekke.io    \N    Germany    Gerlachshire    91166 Malachi River    38804    Alaska    2016-07-24 02:01:28.247338    2016-10-14 13:02:53.875824        \N    \N    \N    0    \N    \N    \N    \N    male
15208    Zaria    Smith    trystan_okuneva@ohara.biz    \N    Slovenia    Lake Kali    9865 Stoltenberg Falls    64953-3657    Rhode Island    2016-09-17 16:10:04.147326    2016-10-14 13:02:53.88046        \N    \N    \N    0    \N    \N    \N    \N    female
15209    Emmy    Runolfsdottir    gregoria@medhurst.com    \N    United Arab Emirates    Sipesmouth    639 Ole Mission    13742-9711    Nebraska    2016-07-28 15:07:15.168036    2016-10-14 13:02:53.885148        \N    \N    \N    0    \N    \N    \N    \N    female
15210    Carmella    Pollich    imani.barrows@ryan.name    \N    Trinidad and Tobago    Port Lupe    4457 Zackery Tunnel    40947-2341    Virginia    2016-08-28 18:52:17.245124    2016-10-14 13:02:53.889857        \N    \N    \N    0    \N    \N    \N    \N    male
15211    Elmo    Sanford    torrey@pollich.com    \N    British Indian Ocean Territory (Chagos Archipelago)    Demarcuschester    744 Adan Valley    34290-3716    North Carolina    2016-07-28 19:52:42.375557    2016-10-14 13:02:53.894625        \N    \N    \N    0    \N    \N    \N    \N    female
15212    Ashleigh    Wisozk    jerrold_mertz@trompsporer.com    \N    Guinea    North Cleora    341 Moore Point    84751-8213    Mississippi    2016-09-13 04:37:35.679699    2016-10-14 13:02:53.89936        \N    \N    \N    0    \N    \N    \N    \N    male
15214    Landen    Auer    katelyn.bednar@hodkiewicz.com    \N    Bosnia and Herzegovina    Fritzside    8546 Mckayla Estate    20415-8981    West Virginia    2016-09-17 03:12:26.24748    2016-10-14 13:02:53.904397        \N    \N    \N    0    \N    \N    \N    \N    female
15215    Jaiden    Kohler    kelsi@lesch.info    \N    Congo    New Hazle    831 Janet Ranch    76461-3538    Mississippi    2016-08-04 03:24:08.032707    2016-10-14 13:02:53.909472        \N    \N    \N    0    \N    \N    \N    \N    male
15216    Emma    Fay    maxwell_hudson@kuhlmanyost.io    \N    Virgin Islands, British    Runtebury    52638 Maya Roads    25632-9165    Arizona    2016-07-11 10:24:17.473666    2016-10-14 13:02:53.914436        \N    \N    \N    0    \N    \N    \N    \N    female
15217    Adriel    Gorczany    trea@weimann.name    \N    Solomon Islands    Considinemouth    3507 Glover Walk    64772    Florida    2016-09-24 21:24:13.860237    2016-10-14 13:02:53.919183        \N    \N    \N    0    \N    \N    \N    \N    female
15218    Claudine    Glover    vance@rosenbaumklein.io    \N    Cayman Islands    Torphaven    4325 Erna Haven    35042    New Jersey    2016-08-22 16:53:40.962656    2016-10-14 13:02:53.923888        \N    \N    \N    0    \N    \N    \N    \N    female
15219    Earl    Mraz    pasquale_dach@walterlegros.biz    \N    Bolivia    Kossstad    1558 Tom Islands    44867    Indiana    2016-08-18 12:34:48.143378    2016-10-14 13:02:53.928627        \N    \N    \N    0    \N    \N    \N    \N    male
15220    Meda    Wintheiser    lucy@reichelmarquardt.com    \N    Turks and Caicos Islands    Lupebury    8167 Bahringer Well    84618    Wisconsin    2016-07-09 08:21:27.275848    2016-10-14 13:02:53.933291        \N    \N    \N    0    \N    \N    \N    \N    male
15221    Domenico    Waelchi    katelynn@schaefer.com    \N    Cocos (Keeling) Islands    Hartmannland    57089 Pat Loaf    41498    Arkansas    2016-07-06 23:43:03.732608    2016-10-14 13:02:53.938098        \N    \N    \N    0    \N    \N    \N    \N    female
15223    Warren    Roberts    pattie_gorczany@connelly.org    \N    Thailand    Waltershire    28852 Turner Camp    69364-9245    Louisiana    2016-06-26 18:42:43.272965    2016-10-14 13:02:53.942549        \N    \N    \N    0    \N    \N    \N    \N    male
15225    Johnnie    Balistreri    buford.adams@legrosreilly.name    \N    Western Sahara    New Elton    29664 Loy Locks    13385-0866    Delaware    2016-09-16 06:49:52.515452    2016-10-14 13:02:53.951886        \N    \N    \N    0    \N    \N    \N    \N    female
15227    Hallie    Koelpin    anya@dooley.io    \N    Bosnia and Herzegovina    Lefflerborough    12493 Mante Lodge    86827    Tennessee    2016-07-16 18:34:54.917079    2016-10-14 13:02:53.95661        \N    \N    \N    0    \N    \N    \N    \N    male
15228    Desiree    Ledner    nikki.west@mcglynn.net    \N    United Kingdom    Wolffort    2231 Sincere Walk    39563    Maryland    2016-07-16 23:09:37.553395    2016-10-14 13:02:53.961532        \N    \N    \N    0    \N    \N    \N    \N    female
15229    Boris    Kling    vicente@thompson.name    \N    Guinea    Berryberg    82954 Cyrus Causeway    17267-7819    Tennessee    2016-06-23 17:19:15.453655    2016-10-14 13:02:53.966124        \N    \N    \N    0    \N    \N    \N    \N    male
15230    Cordell    Lehner    uriel.lind@abernathyboyle.biz    \N    Romania    Lake Madalynchester    3195 Kenny Circles    65366    Maine    2016-09-16 01:59:53.997039    2016-10-14 13:02:53.97086        \N    \N    \N    0    \N    \N    \N    \N    female
15231    Lura    Berge    layla@mitchell.org    \N    Western Sahara    South Markhaven    42089 Hoppe Street    46696-3329    Delaware    2016-08-18 20:26:27.657542    2016-10-14 13:02:53.975544        \N    \N    \N    0    \N    \N    \N    \N    male
15232    Jevon    Grant    gregorio.grant@shields.com    \N    Saint Kitts and Nevis    New Johnsonberg    721 Reinger Ford    45621    Rhode Island    2016-08-23 19:15:12.691761    2016-10-14 13:02:53.980025        \N    \N    \N    0    \N    \N    \N    \N    male
15233    Leanne    Runolfsdottir    jeica@adamswaters.name    \N    Cambodia    Murphyton    411 Wehner Islands    18286-2212    Alabama    2016-08-26 02:43:26.23185    2016-10-14 13:02:53.983953        \N    \N    \N    0    \N    \N    \N    \N    male
15234    Katlynn    Kilback    arlene@dicki.name    \N    Venezuela    West Zitastad    287 Goodwin Passage    20933    Washington    2016-08-12 18:51:12.41842    2016-10-14 13:02:53.988522        \N    \N    \N    0    \N    \N    \N    \N    male
15235    Ashly    Mitchell    abbie_zulauf@volkman.info    \N    Panama    Kadenmouth    879 Courtney Alley    73023    Mississippi    2016-08-14 11:52:36.690341    2016-10-14 13:02:53.993138        \N    \N    \N    0    \N    \N    \N    \N    female
15236    Fernando    Marquardt    christina.kling@blanda.org    \N    Palau    New Corine    63366 Kaleb Squares    25966    Virginia    2016-07-06 03:01:27.012394    2016-10-14 13:02:53.997494        \N    \N    \N    0    \N    \N    \N    \N    female
15237    Liam    Durgan    yasmine@keeblerbailey.info    \N    Argentina    Demarcoburgh    170 Tromp Tunnel    62815    Oklahoma    2016-06-27 11:59:55.790189    2016-10-14 13:02:54.002615        \N    \N    \N    0    \N    \N    \N    \N    female
15238    Marisa    Predovic    melvin.ziemann@johns.biz    \N    Zambia    Moriahville    77347 Thompson Turnpike    91340-2689    Hawaii    2016-09-11 22:12:07.018213    2016-10-14 13:02:54.007158        \N    \N    \N    0    \N    \N    \N    \N    male
15239    Jasmin    Ernser    alia@nader.biz    \N    Micronesia    New Betty    99648 Rosendo Mission    99325-3024    Missouri    2016-08-15 00:46:52.565411    2016-10-14 13:02:54.011859        \N    \N    \N    0    \N    \N    \N    \N    male
15240    Zula    Marvin    krystel@corwinupton.info    \N    Puerto Rico    Port Emmittside    1454 Claire Mountain    36264    Indiana    2016-09-16 13:07:25.811118    2016-10-14 13:02:54.01719        \N    \N    \N    0    \N    \N    \N    \N    male
15241    Armando    Hodkiewicz    trystan@reichert.name    \N    Andorra    Lake Harrison    704 Schiller Port    14082    North Dakota    2016-08-23 07:56:13.466738    2016-10-14 13:02:54.021596        \N    \N    \N    0    \N    \N    \N    \N    female
15242    Kurtis    Wolf    tristin_flatley@hudson.io    \N    Nicaragua    New Celiamouth    8949 Blanda Oval    90940    Mississippi    2016-07-11 03:38:04.707298    2016-10-14 13:02:54.025592        \N    \N    \N    0    \N    \N    \N    \N    female
15243    Haylee    Cassin    travon_parker@wildermanwunsch.io    \N    Guinea-Bissau    Raynorstad    441 Flatley Ridges    26888-1939    Montana    2016-09-04 03:34:07.360071    2016-10-14 13:02:54.029775        \N    \N    \N    0    \N    \N    \N    \N    female
15244    Deonte    Sanford    nash_smitham@lockman.info    \N    Puerto Rico    Bashirianhaven    6297 Pat Club    27588    New Hampshire    2016-06-29 14:58:56.986622    2016-10-14 13:02:54.033819        \N    \N    \N    0    \N    \N    \N    \N    female
15245    Stefanie    Kessler    nelson_gusikowski@harriskulas.co    \N    Swaziland    South Sadieburgh    8535 Korey Grove    93027    North Dakota    2016-07-07 09:20:50.001903    2016-10-14 13:02:54.037835        \N    \N    \N    0    \N    \N    \N    \N    male
15246    Jennifer    Gutmann    jules@schuppe.net    \N    Belize    West Jordy    2808 Katelyn Place    11569-9617    Arizona    2016-09-24 07:58:37.244408    2016-10-14 13:02:54.042205        \N    \N    \N    0    \N    \N    \N    \N    female
15247    Jayson    Beier    kathryne@bauch.io    \N    Slovenia    Adolphbury    25675 Peter Crossing    89807    Alabama    2016-07-26 19:10:28.761984    2016-10-14 13:02:54.046446        \N    \N    \N    0    \N    \N    \N    \N    male
15248    Ashtyn    Orn    jason@muller.biz    \N    Sierra Leone    Schmidtburgh    6009 Schoen Forest    13987    Montana    2016-07-08 09:00:31.095669    2016-10-14 13:02:54.050747        \N    \N    \N    0    \N    \N    \N    \N    female
15249    Alanis    Stracke    reie@conroy.io    \N    United Kingdom    Marlenland    5348 Lehner Trail    12964    Missouri    2016-07-22 21:20:38.539521    2016-10-14 13:02:54.054548        \N    \N    \N    0    \N    \N    \N    \N    female
15250    Annamarie    Cormier    robbie@howell.info    \N    Germany    Port Fayfort    4173 Lehner Shores    59127-8660    Vermont    2016-09-16 18:38:14.121585    2016-10-14 13:02:54.058846        \N    \N    \N    0    \N    \N    \N    \N    female
15251    Dean    Gorczany    elisabeth@heelshields.com    \N    Slovakia (Slovak Republic)    Lake Deion    448 Alivia Island    92437    North Dakota    2016-09-26 11:58:48.809891    2016-10-14 13:02:54.063573        \N    \N    \N    0    \N    \N    \N    \N    female
15252    Lane    Weber    jermaine_kreiger@kuhlmantremblay.com    \N    Algeria    New Bobbyport    2554 Abshire Ranch    57025-9510    New Mexico    2016-09-01 11:13:01.383841    2016-10-14 13:02:54.068266        \N    \N    \N    0    \N    \N    \N    \N    male
15253    Gillian    Reilly    pearline@beer.co    \N    Pakistan    South Barneyshire    37836 Lindgren Mountain    37399-3053    Vermont    2016-08-30 05:05:53.140746    2016-10-14 13:02:54.073079        \N    \N    \N    0    \N    \N    \N    \N    male
15254    Breanna    Kihn    tatyana@sipesvon.com    \N    El Salvador    New Camronville    48351 Crist Mountain    93266-5500    Kansas    2016-09-03 02:00:33.728122    2016-10-14 13:02:54.077751        \N    \N    \N    0    \N    \N    \N    \N    female
15256    Myrtice    Huels    benedict.hane@nader.io    \N    Colombia    West Lawrenceberg    195 Wyman Meadow    88865-4354    Colorado    2016-08-02 23:04:41.678191    2016-10-14 13:02:54.087046        \N    \N    \N    0    \N    \N    \N    \N    female
15257    Bethany    Willms    laria@ruecker.com    \N    Norfolk Island    Kylashire    26856 Davis Summit    49332    Vermont    2016-07-10 08:07:23.442827    2016-10-14 13:02:54.091459        \N    \N    \N    0    \N    \N    \N    \N    female
15258    Adaline    Hodkiewicz    daron.luettgen@cartwright.net    \N    Andorra    New Sam    33315 Dario Row    54233-2380    Pennsylvania    2016-09-05 01:36:38.993479    2016-10-14 13:02:54.095596        \N    \N    \N    0    \N    \N    \N    \N    female
15259    Gerardo    Rodriguez    gunnar@carterkuhlman.biz    \N    Azerbaijan    West Roscoeburgh    724 Joannie Views    23487    New Hampshire    2016-09-21 03:24:37.706407    2016-10-14 13:02:54.100371        \N    \N    \N    0    \N    \N    \N    \N    female
15260    Mertie    Padberg    fabian@zboncakhayes.io    \N    Oman    Stromanchester    731 Nathan Garden    56235    New Hampshire    2016-09-23 10:05:50.646208    2016-10-14 13:02:54.106371        \N    \N    \N    0    \N    \N    \N    \N    male
15261    Napoleon    Oberbrunner    dandre@mitchell.org    \N    Singapore    Giovannyborough    2133 Johathan Shores    83942-3541    North Carolina    2016-07-13 10:51:59.787777    2016-10-14 13:02:54.111728        \N    \N    \N    0    \N    \N    \N    \N    female
15262    Bonita    Mayert    juliana.stamm@tromproberts.info    \N    Cameroon    East Charitytown    6428 Gibson Mount    37149-1573    Louisiana    2016-06-27 19:40:38.747231    2016-10-14 13:02:54.116102        \N    \N    \N    0    \N    \N    \N    \N    female
15263    Carmela    Pfannerstill    kasey.witting@keler.com    \N    Bangladesh    North Lempiville    704 Fermin Lock    68829    Ohio    2016-09-13 18:10:25.428951    2016-10-14 13:02:54.120511        \N    \N    \N    0    \N    \N    \N    \N    male
15264    Zola    Parisian    freddy@tremblayjacobson.biz    \N    Democratic People's Republic of Korea    Eunicehaven    9939 Nikolaus Landing    10428    Montana    2016-08-18 05:38:14.104525    2016-10-14 13:02:54.125458        \N    \N    \N    0    \N    \N    \N    \N    male
15265    Derek    Yost    miller_ondricka@renner.name    \N    Jersey    Prohaskaside    472 Bruen Knoll    75657    Tennessee    2016-07-20 00:17:31.026821    2016-10-14 13:02:54.130464        \N    \N    \N    0    \N    \N    \N    \N    male
15266    Wiley    Leuschke    tamara.effertz@hermistonlind.com    \N    Cuba    Kuhlmanport    30390 Damian Roads    54633    New Jersey    2016-09-18 01:50:52.895296    2016-10-14 13:02:54.134881        \N    \N    \N    0    \N    \N    \N    \N    male
15267    Lisandro    Schamberger    kristina@mcdermott.io    \N    Comoros    Dooleyton    1345 Abdullah Ferry    87520-2214    Utah    2016-08-11 04:41:21.577223    2016-10-14 13:02:54.139357        \N    \N    \N    0    \N    \N    \N    \N    male
15268    Maymie    Schumm    julian@franecki.net    \N    Bouvet Island (Bouvetoya)    Adrienburgh    785 Reichert Flat    57941-2302    Arkansas    2016-07-05 15:22:06.768232    2016-10-14 13:02:54.14348        \N    \N    \N    0    \N    \N    \N    \N    female
15269    Priscilla    Mueller    elena_schulist@carroll.co    \N    Burundi    Port Ray    295 Kurt Unions    25078-5009    Alabama    2016-09-03 07:05:57.991848    2016-10-14 13:02:54.147696        \N    \N    \N    0    \N    \N    \N    \N    female
15270    Furman    O'Conner    jordy@weinat.org    \N    South Georgia and the South Sandwich Islands    North Alifurt    933 Shanelle Fall    40611    Hawaii    2016-09-09 03:15:08.054539    2016-10-14 13:02:54.152032        \N    \N    \N    0    \N    \N    \N    \N    female
15271    Darlene    Rice    madisen_streich@skilesdoyle.com    \N    Gambia    Shanetown    877 Layla Oval    47643    North Dakota    2016-08-15 16:35:36.006028    2016-10-14 13:02:54.156306        \N    \N    \N    0    \N    \N    \N    \N    female
15272    Elisa    Vandervort    kari.dare@gusikowskicollins.org    \N    Bermuda    Port Ollie    509 Elenora Loop    29485    Hawaii    2016-07-16 12:53:34.584387    2016-10-14 13:02:54.160389        \N    \N    \N    0    \N    \N    \N    \N    male
15273    Robin    Schuppe    gerry.miller@millsfranecki.io    \N    Burkina Faso    Brendonfurt    94461 Rempel Motorway    41286-1444    Alaska    2016-08-03 10:44:50.16677    2016-10-14 13:02:54.16525        \N    \N    \N    0    \N    \N    \N    \N    male
15274    Jayda    Lindgren    franco@danielernser.biz    \N    New Caledonia    Lake Carey    7857 Erdman Islands    24120-2353    Wisconsin    2016-09-17 21:45:16.196611    2016-10-14 13:02:54.170572        \N    \N    \N    0    \N    \N    \N    \N    female
15275    Simeon    Olson    nicholas@feest.net    \N    Benin    Waelchiland    92578 Sydni Rue    79677    Nebraska    2016-07-14 08:15:17.381584    2016-10-14 13:02:54.175566        \N    \N    \N    0    \N    \N    \N    \N    female
15276    Matilde    Blanda    emmy_mosciski@corkery.biz    \N    Micronesia    East Jewel    78233 Cassie Rapid    55857    New Jersey    2016-08-03 08:30:02.682022    2016-10-14 13:02:54.180371        \N    \N    \N    0    \N    \N    \N    \N    male
15277    Clint    Pacocha    madie@buckridge.com    \N    Pakistan    North General    71852 Ramon Ford    13486-7997    Pennsylvania    2016-07-26 22:53:47.444495    2016-10-14 13:02:54.186174        \N    \N    \N    0    \N    \N    \N    \N    female
15278    Lucious    Bogan    robb@rath.info    \N    Republic of Korea    Dayanaland    639 Labadie Overpass    39496    Tennessee    2016-08-16 20:31:49.740277    2016-10-14 13:02:54.190795        \N    \N    \N    0    \N    \N    \N    \N    female
15279    Myrtle    Denesik    beaulah@nader.name    \N    Gabon    Stanfort    5434 Watsica Port    53908-6848    Texas    2016-08-18 13:01:45.039909    2016-10-14 13:02:54.196703        \N    \N    \N    0    \N    \N    \N    \N    female
15280    Chelsie    Lang    william@daniel.info    \N    Switzerland    North Hilbert    756 Greenfelder Brook    96864    Georgia    2016-07-29 22:36:53.360264    2016-10-14 13:02:54.200928        \N    \N    \N    0    \N    \N    \N    \N    female
15281    Freeman    MacGyver    eduardo@cormier.io    \N    Northern Mariana Islands    Millsborough    38102 O'Reilly Stream    81579-0523    Ohio    2016-08-29 08:31:00.636632    2016-10-14 13:02:54.205571        \N    \N    \N    0    \N    \N    \N    \N    male
15282    Lisette    Bradtke    laverne@mcdermott.org    \N    Macedonia    South Cleo    1691 Klocko Meadows    22930-8977    Alabama    2016-09-22 10:38:37.205288    2016-10-14 13:02:54.210342        \N    \N    \N    0    \N    \N    \N    \N    female
15283    Reyna    Kulas    lindsey.abernathy@hilpertvolkman.biz    \N    Argentina    Evertbury    666 Angelica Vista    32484    California    2016-08-09 01:41:08.136216    2016-10-14 13:02:54.214603        \N    \N    \N    0    \N    \N    \N    \N    male
15284    Lorine    Larson    izaiah_pagac@barton.io    \N    Kenya    New Carmela    81728 Bridgette Club    39794    Delaware    2016-09-09 18:58:23.049833    2016-10-14 13:02:54.218734        \N    \N    \N    0    \N    \N    \N    \N    female
15285    Mellie    Schulist    jan@roberts.info    \N    Christmas Island    Monahanfurt    92929 Raymundo Springs    18497    Tennessee    2016-09-20 22:54:11.543722    2016-10-14 13:02:54.223328        \N    \N    \N    0    \N    \N    \N    \N    female
15287    Theodore    Gaylord    ubaldo@kemmer.net    \N    Portugal    Leschtown    386 Lockman Lakes    62303-0496    Hawaii    2016-08-31 05:18:23.481599    2016-10-14 13:02:54.227544        \N    \N    \N    0    \N    \N    \N    \N    male
15288    Layla    Terry    zion_doyle@jacobs.org    \N    Zambia    Port Dandre    28571 Evan Locks    46631-7845    Connecticut    2016-07-07 00:31:01.554849    2016-10-14 13:02:54.232518        \N    \N    \N    0    \N    \N    \N    \N    male
15289    Maverick    Abbott    cristina@westdare.com    \N    Swaziland    North Reedstad    916 Ike Mountain    84542-2443    Missouri    2016-07-24 09:45:53.515543    2016-10-14 13:02:54.237293        \N    \N    \N    0    \N    \N    \N    \N    male
15290    Junius    Larson    fanny@bernhardgutkowski.biz    \N    Venezuela    South Cecilefurt    609 Leilani Prairie    82606-7917    Arkansas    2016-08-07 17:28:25.689215    2016-10-14 13:02:54.242267        \N    \N    \N    0    \N    \N    \N    \N    male
15291    Georgette    Gottlieb    arthur.dach@king.com    \N    Qatar    West Orpha    57895 Lockman Island    79535    Florida    2016-07-20 16:03:42.784761    2016-10-14 13:02:54.246465        \N    \N    \N    0    \N    \N    \N    \N    male
15349    Nora    Emard    jared@schmitt.org    \N    Comoros    Waelchichester    121 Larkin Haven    62016    Rhode Island    2016-09-01 14:49:06.557749    2016-10-14 13:02:54.250692        \N    \N    \N    0    \N    \N    \N    \N    female
15292    Mozell    Cruickshank    verona.pfannerstill@schuster.name    \N    Lao People's Democratic Republic    Lake Carleton    472 Gutkowski Inlet    96742    North Dakota    2016-09-29 09:09:45.046126    2016-10-14 13:02:54.254908        \N    \N    \N    0    \N    \N    \N    \N    female
15293    Ena    Price    eden.daniel@gulgowski.name    \N    Romania    New Steveburgh    181 Krajcik Village    46466    Georgia    2016-08-24 05:58:33.889176    2016-10-14 13:02:54.259272        \N    \N    \N    0    \N    \N    \N    \N    male
15294    Katrina    Baumbach    darius.hermiston@emardharber.info    \N    Angola    Davisberg    30575 Quigley Wells    99920-1944    Maine    2016-07-21 19:57:51.587383    2016-10-14 13:02:54.263513        \N    \N    \N    0    \N    \N    \N    \N    male
15295    Alphonso    Mraz    katlynn@jast.org    \N    Tonga    Aiyanaberg    4717 Camila Hill    32742-3232    Washington    2016-07-11 16:58:18.861103    2016-10-14 13:02:54.267813        \N    \N    \N    0    \N    \N    \N    \N    male
15296    Abagail    Gutkowski    oral@vonruedenschumm.com    \N    Indonesia    Ashtonburgh    71972 Cordelia Estate    50291    Alabama    2016-08-16 05:00:52.919952    2016-10-14 13:02:54.272671        \N    \N    \N    0    \N    \N    \N    \N    male
15297    Raymond    Swaniawski    elmo@robel.info    \N    Japan    Kunzetown    53000 Hauck Mount    18647    California    2016-07-14 04:40:50.559436    2016-10-14 13:02:54.277114        \N    \N    \N    0    \N    \N    \N    \N    male
15298    Manuela    Steuber    emanuel.batz@borer.info    \N    Slovakia (Slovak Republic)    Wardchester    6279 Katrina Expressway    82219    Indiana    2016-08-15 12:59:44.770937    2016-10-14 13:02:54.282237        \N    \N    \N    0    \N    \N    \N    \N    male
15299    Cleveland    Stoltenberg    tobin@morarblick.org    \N    Nigeria    Billburgh    1260 Stark Union    36672    Georgia    2016-09-07 11:02:47.87271    2016-10-14 13:02:54.288689        \N    \N    \N    0    \N    \N    \N    \N    male
15300    Gwendolyn    Kovacek    amiya_vandervort@swiftschneider.info    \N    Jersey    Danielafurt    8502 Veum Mill    31849    Indiana    2016-08-05 07:06:50.535122    2016-10-14 13:02:54.294563        \N    \N    \N    0    \N    \N    \N    \N    male
15301    Edythe    Casper    kiara.will@kub.net    \N    Sierra Leone    Bartellport    7241 Cecelia Run    28771-6766    Massachusetts    2016-09-14 21:44:12.765379    2016-10-14 13:02:54.302551        \N    \N    \N    0    \N    \N    \N    \N    female
15302    Gus    Stanton    giovanny@turcottegottlieb.co    \N    Wallis and Futuna    Stokesmouth    7437 Bruen Via    33066-2595    Montana    2016-09-18 17:55:15.323676    2016-10-14 13:02:54.30794        \N    \N    \N    0    \N    \N    \N    \N    female
15303    Greta    Pacocha    jordane@carroll.org    \N    Ethiopia    Ardellafurt    452 Santiago Spur    67548-4024    North Dakota    2016-07-23 01:48:51.732427    2016-10-14 13:02:54.312157        \N    \N    \N    0    \N    \N    \N    \N    female
15304    Arthur    Mante    malinda_barton@wardemmerich.net    \N    Argentina    North Cyrusview    24829 Adrian Street    99079    Connecticut    2016-07-02 06:11:20.280427    2016-10-14 13:02:54.316562        \N    \N    \N    0    \N    \N    \N    \N    male
15305    Cassandra    Shanahan    linnea@rippinjenkins.net    \N    Canada    Emmerichview    53903 Donnelly Forks    93573    Kentucky    2016-07-05 01:31:11.459488    2016-10-14 13:02:54.321786        \N    \N    \N    0    \N    \N    \N    \N    female
15306    Terrence    Mills    darrell.abernathy@stark.biz    \N    Finland    Ferryport    14536 Macey Oval    18575    Alaska    2016-07-03 01:46:39.444533    2016-10-14 13:02:54.326567        \N    \N    \N    0    \N    \N    \N    \N    female
15307    Jana    Dietrich    jayden@moen.biz    \N    Barbados    Halvorsonview    8980 Priscilla Curve    73155    Washington    2016-07-19 09:56:45.757806    2016-10-14 13:02:54.331109        \N    \N    \N    0    \N    \N    \N    \N    male
15308    Matilda    Olson    manley@schiller.name    \N    Bulgaria    Port Dessieshire    6293 Hauck Parks    13221-9747    Hawaii    2016-07-12 17:56:27.572052    2016-10-14 13:02:54.336191        \N    \N    \N    0    \N    \N    \N    \N    female
15309    Larue    Turner    thea.kiehn@swaniawski.net    \N    Saint Barthelemy    Ashleeport    446 Graham Ranch    86519-1431    Illinois    2016-06-30 18:58:39.857944    2016-10-14 13:02:54.342373        \N    \N    \N    0    \N    \N    \N    \N    female
15310    Eryn    Lockman    marcelina@koelpinyost.biz    \N    Liberia    Mitchellborough    828 Elwin Village    92378-2544    West Virginia    2016-08-11 14:07:07.502051    2016-10-14 13:02:54.346729        \N    \N    \N    0    \N    \N    \N    \N    female
15311    Lucius    Kihn    armando@ondricka.info    \N    American Samoa    Shayleeshire    340 Cummerata Shoal    24942-2551    New York    2016-09-05 07:14:06.690502    2016-10-14 13:02:54.351376        \N    \N    \N    0    \N    \N    \N    \N    male
15312    Antoinette    Schuppe    moses@moen.name    \N    United Arab Emirates    Weissnatfort    949 Swaniawski Row    78825-6670    West Virginia    2016-08-27 12:05:01.012191    2016-10-14 13:02:54.356449        \N    \N    \N    0    \N    \N    \N    \N    male
15313    Leonel    Predovic    celine@oconnellko.net    \N    Pakistan    Grahamside    2508 Merritt Ridges    97885-4591    Montana    2016-09-03 09:38:14.183899    2016-10-14 13:02:54.361093        \N    \N    \N    0    \N    \N    \N    \N    male
15314    Yazmin    Okuneva    murl_gutkowski@walter.co    \N    Estonia    Verdaside    6924 Tromp Vista    67264    Montana    2016-09-01 04:50:45.234847    2016-10-14 13:02:54.366986        \N    \N    \N    0    \N    \N    \N    \N    male
15315    Kali    Marvin    jan@hagenes.org    \N    Chile    New Thaddeus    616 Elsie Throughway    97580    Idaho    2016-08-20 15:17:40.564877    2016-10-14 13:02:54.370933        \N    \N    \N    0    \N    \N    \N    \N    female
15316    Edmund    Hudson    verdie@halvorson.io    \N    Bermuda    Port America    63911 Mohammad Island    22425-1942    Alaska    2016-09-04 13:31:09.477572    2016-10-14 13:02:54.375123        \N    \N    \N    0    \N    \N    \N    \N    female
15317    Jana    Boehm    anabelle.bogisich@stanton.io    \N    Morocco    West Emmanuelleshire    24812 Luettgen Center    81037    Hawaii    2016-06-24 05:19:51.146328    2016-10-14 13:02:54.380188        \N    \N    \N    0    \N    \N    \N    \N    female
15318    Lance    Connelly    oren.upton@welchnienow.biz    \N    Yemen    New Terrenceshire    736 Medhurst Corners    90711    Indiana    2016-07-21 07:11:02.368601    2016-10-14 13:02:54.385023        \N    \N    \N    0    \N    \N    \N    \N    male
15319    Shyanne    Zboncak    elliott@walker.co    \N    Ethiopia    Lake Abdullah    4766 Johnson Ports    74437    West Virginia    2016-08-27 03:18:52.245049    2016-10-14 13:02:54.389343        \N    \N    \N    0    \N    \N    \N    \N    male
15320    Amy    D'Amore    te.parisian@walkerledner.io    \N    Norfolk Island    Kolechester    7319 Deckow Parkway    94179-4245    Nebraska    2016-07-22 00:21:13.02112    2016-10-14 13:02:54.393698        \N    \N    \N    0    \N    \N    \N    \N    male
15321    Arvilla    Hamill    davon@connshields.name    \N    Cameroon    Watersstad    6536 Lilian Fields    73148-8803    Georgia    2016-09-22 08:58:18.599262    2016-10-14 13:02:54.397936        \N    \N    \N    0    \N    \N    \N    \N    female
15322    Marguerite    Champlin    shaina@murazik.net    \N    Swaziland    North Gillianburgh    977 Kemmer Square    89875-2052    Connecticut    2016-08-31 18:18:11.729812    2016-10-14 13:02:54.402263        \N    \N    \N    0    \N    \N    \N    \N    male
15323    Heath    Reichert    sedrick@borer.biz    \N    Bhutan    Zitatown    7009 Torphy Crescent    99004-4856    Kansas    2016-09-15 12:35:20.931805    2016-10-14 13:02:54.408468        \N    \N    \N    0    \N    \N    \N    \N    female
15325    Raymond    Franecki    liliana.schneider@legros.com    \N    Ireland    New Amirville    620 Evan Falls    16125-3659    South Carolina    2016-09-09 10:16:35.920181    2016-10-14 13:02:54.419092        \N    \N    \N    0    \N    \N    \N    \N    female
15326    Constance    Olson    tara_collier@marvin.io    \N    Sudan    West Rebeka    68602 Reilly Crescent    34803-2918    New Jersey    2016-08-23 18:56:22.927127    2016-10-14 13:02:54.42456        \N    \N    \N    0    \N    \N    \N    \N    male
15327    Earlene    Boehm    eve@crooksjacobi.biz    \N    Barbados    Lake Maybellfurt    2158 Stamm Summit    88217-2609    Mississippi    2016-07-22 10:15:49.552007    2016-10-14 13:02:54.429027        \N    \N    \N    0    \N    \N    \N    \N    female
15328    Lera    Flatley    vincenzo@gerhold.io    \N    Benin    Clotildeview    42047 Jasen Crossroad    33879-2154    Alabama    2016-08-04 04:52:01.439445    2016-10-14 13:02:54.433383        \N    \N    \N    0    \N    \N    \N    \N    male
15329    Ezekiel    McKenzie    ariane@olsonlangosh.co    \N    Namibia    Lake Keenan    133 Antwon Stream    62659-8429    Louisiana    2016-09-26 17:35:12.353365    2016-10-14 13:02:54.437352        \N    \N    \N    0    \N    \N    \N    \N    female
15330    Arch    Harvey    benedict.ritchie@oconnell.io    \N    Switzerland    Alfredville    41684 Myles Islands    75064-3137    Delaware    2016-09-25 23:06:00.115727    2016-10-14 13:02:54.441716        \N    \N    \N    0    \N    \N    \N    \N    male
15331    Ronny    Schmidt    mallory.nienow@lakinhartmann.name    \N    Mexico    Mullershire    335 Hills Squares    66536-5113    New Hampshire    2016-08-02 13:05:44.155769    2016-10-14 13:02:54.446436        \N    \N    \N    0    \N    \N    \N    \N    male
15332    Kitty    Collins    marcus.kling@kuhic.io    \N    Tonga    North Carystad    5329 Waelchi Crossroad    69378-6634    Kansas    2016-07-24 13:07:38.272674    2016-10-14 13:02:54.451801        \N    \N    \N    0    \N    \N    \N    \N    male
15333    Angelica    Jakubowski    callie_batz@starkblick.com    \N    Armenia    Dickenshaven    5673 Bogisich Court    85324    North Dakota    2016-09-23 15:03:19.030873    2016-10-14 13:02:54.455758        \N    \N    \N    0    \N    \N    \N    \N    female
15334    Makayla    Crooks    shad.feeney@lefflererdman.info    \N    Cocos (Keeling) Islands    Rickside    4221 Stanton Tunnel    55466-8370    South Dakota    2016-08-25 08:42:33.607834    2016-10-14 13:02:54.459869        \N    \N    \N    0    \N    \N    \N    \N    female
15335    Cleo    Wintheiser    margarett@mitchell.biz    \N    Montenegro    Lynchhaven    496 Ethan Isle    88063-9514    Kansas    2016-07-04 06:36:43.644974    2016-10-14 13:02:54.464007        \N    \N    \N    0    \N    \N    \N    \N    female
15337    Ana    Raynor    yasmeen.little@kemmer.com    \N    Romania    Ravenfurt    874 Pfeffer Creek    57492-7995    Pennsylvania    2016-09-27 06:18:12.915055    2016-10-14 13:02:54.469726        \N    \N    \N    0    \N    \N    \N    \N    male
15338    Kristian    Daniel    daryl@pacochakreiger.info    \N    Malawi    Lake Domenick    889 Ibrahim Path    78649    Kentucky    2016-09-11 13:46:42.383117    2016-10-14 13:02:54.474339        \N    \N    \N    0    \N    \N    \N    \N    male
15339    Thelma    Baumbach    leanne@feest.info    \N    Uruguay    Monaville    6498 Torrance Lights    66774    Massachusetts    2016-09-04 12:37:25.430302    2016-10-14 13:02:54.478505        \N    \N    \N    0    \N    \N    \N    \N    female
15340    Heath    Bogan    kody@kshlerinrunolfon.info    \N    Bahrain    West Onafort    16141 Buckridge Avenue    25287-0120    West Virginia    2016-09-26 21:06:07.862239    2016-10-14 13:02:54.483364        \N    \N    \N    0    \N    \N    \N    \N    female
15341    Laurianne    Schneider    deshaun_fisher@kaulke.info    \N    Tajikistan    Dietrichshire    108 Gerson Dam    65950-9914    Georgia    2016-07-01 18:21:48.053949    2016-10-14 13:02:54.487836        \N    \N    \N    0    \N    \N    \N    \N    female
15342    Katharina    Howell    emmanuel@hegmann.com    \N    Virgin Islands, British    Geovannimouth    3571 Ali Lane    66301-7065    Arizona    2016-09-03 23:25:44.845099    2016-10-14 13:02:54.492016        \N    \N    \N    0    \N    \N    \N    \N    male
15343    Tatum    Jones    edwina.terry@walker.biz    \N    Cape Verde    Harbershire    10161 Nicolas Loop    58442    Indiana    2016-07-30 14:16:45.964135    2016-10-14 13:02:54.496749        \N    \N    \N    0    \N    \N    \N    \N    female
15344    Marley    MacGyver    andy@walkerlangworth.info    \N    Lebanon    Schummburgh    9572 Schoen Meadows    67753-9531    Louisiana    2016-07-01 05:26:40.658008    2016-10-14 13:02:54.501745        \N    \N    \N    0    \N    \N    \N    \N    male
15345    Brandyn    Runte    marlee@shanahan.name    \N    Nauru    East Eloy    907 Charity Ford    92371-9502    Arkansas    2016-08-24 10:55:18.198741    2016-10-14 13:02:54.506114        \N    \N    \N    0    \N    \N    \N    \N    male
15346    Brennon    White    vicente_predovic@deckow.org    \N    Cambodia    Leschfort    69791 Horace Drives    16157    Texas    2016-07-01 01:29:31.06752    2016-10-14 13:02:54.510614        \N    \N    \N    0    \N    \N    \N    \N    female
15347    Orlando    Zemlak    joannie@kemmer.biz    \N    United States of America    Waelchiview    526 Sam Lodge    20732    Minnesota    2016-08-10 07:53:42.580015    2016-10-14 13:02:54.51484        \N    \N    \N    0    \N    \N    \N    \N    female
15348    Carlee    Orn    makenna@deckowkilback.name    \N    Bulgaria    Binsstad    541 Tyreek Gardens    54186-2900    Kentucky    2016-07-07 13:07:52.843575    2016-10-14 13:02:54.518789        \N    \N    \N    0    \N    \N    \N    \N    female
15350    Jermaine    Kuhlman    felicity_yundt@bode.name    \N    Montenegro    Shanahantown    9710 Upton Springs    85196-0932    New Hampshire    2016-08-07 11:14:15.925376    2016-10-14 13:02:54.523037        \N    \N    \N    0    \N    \N    \N    \N    female
15351    Adeline    Stanton    dorcas.stehr@moen.org    \N    Niue    Desireeberg    726 Estefania Forge    47867-2103    Idaho    2016-09-14 04:40:51.666762    2016-10-14 13:02:54.52758        \N    \N    \N    0    \N    \N    \N    \N    female
15352    Fernando    Klein    dorris.kozey@gutmann.name    \N    Czech Republic    Vincenzofurt    7835 Missouri Heights    79991    New Jersey    2016-09-03 07:21:49.307536    2016-10-14 13:02:54.532098        \N    \N    \N    0    \N    \N    \N    \N    male
15353    Gerard    Monahan    abbey_oreilly@glover.co    \N    Portugal    Earlville    7964 Edmond Cape    13464    Oregon    2016-07-31 10:15:34.174742    2016-10-14 13:02:54.53746        \N    \N    \N    0    \N    \N    \N    \N    female
15354    Zena    Miller    bret_parisian@walsh.com    \N    Iceland    Katelynchester    42126 Kassulke Greens    61262-6357    Montana    2016-08-09 15:21:38.899424    2016-10-14 13:02:54.543534        \N    \N    \N    0    \N    \N    \N    \N    female
15355    Armando    Medhurst    charlotte_mraz@warddoyle.io    \N    Turkey    East Barbara    74627 Kovacek Wall    68514    Wisconsin    2016-09-28 21:19:20.346959    2016-10-14 13:02:54.549363        \N    \N    \N    0    \N    \N    \N    \N    female
15356    Sarai    Schuppe    hugh_streich@cormier.info    \N    Congo    Armandtown    589 Greenholt Ports    13610    South Dakota    2016-07-23 01:25:00.42708    2016-10-14 13:02:54.555373        \N    \N    \N    0    \N    \N    \N    \N    female
15357    Addie    Hand    edison.pouros@faheygleichner.net    \N    Sao Tome and Principe    Lucilemouth    35423 Tromp Squares    36838-6070    Colorado    2016-07-21 02:35:28.004436    2016-10-14 13:02:54.559549        \N    \N    \N    0    \N    \N    \N    \N    female
15358    Evangeline    Paucek    hester@hagenesbuckridge.org    \N    Norway    Bartonshire    196 Considine Street    26451    Montana    2016-08-14 19:15:46.574831    2016-10-14 13:02:54.563458        \N    \N    \N    0    \N    \N    \N    \N    male
15359    Vance    King    terry_veum@hills.net    \N    Gibraltar    East Shana    8790 Vivien Loaf    74012-6070    New Hampshire    2016-07-21 13:33:28.988195    2016-10-14 13:02:54.567628        \N    \N    \N    0    \N    \N    \N    \N    female
15360    Eldridge    Dickens    citlalli@braunjaskolski.net    \N    Bermuda    South Quintenmouth    610 VonRueden Plaza    98229-6696    Maine    2016-08-04 14:42:28.286224    2016-10-14 13:02:54.572304        \N    \N    \N    0    \N    \N    \N    \N    male
15361    Jarod    Terry    murl_rau@gleichner.co    \N    Egypt    West Charley    5079 Emile Bridge    32866    South Dakota    2016-08-25 21:35:52.625575    2016-10-14 13:02:54.57625        \N    \N    \N    0    \N    \N    \N    \N    female
15362    Theron    Altenwerth    lacy@pacochakoch.name    \N    Cocos (Keeling) Islands    South Jovani    77881 Buckridge Street    14797    Arizona    2016-09-13 03:56:44.065408    2016-10-14 13:02:54.580661        \N    \N    \N    0    \N    \N    \N    \N    female
15363    Orville    Collier    fanny@dubuqueruel.net    \N    Iceland    West Millieport    338 Auer Harbors    71932    Washington    2016-08-27 06:04:19.052638    2016-10-14 13:02:54.58653        \N    \N    \N    0    \N    \N    \N    \N    female
15364    Cade    Bogisich    victoria@vandervort.biz    \N    Greenland    New Brittany    421 Ruecker Path    77093    Kentucky    2016-09-04 08:15:56.799183    2016-10-14 13:02:54.591479        \N    \N    \N    0    \N    \N    \N    \N    female
15365    Toney    Rosenbaum    zackary@nader.io    \N    Aruba    North Gerson    7728 Martina Village    66869    New York    2016-09-01 18:47:02.064169    2016-10-14 13:02:54.596082        \N    \N    \N    0    \N    \N    \N    \N    female
15366    Murl    Ledner    marshall@keelingruel.com    \N    Republic of Korea    South Victortown    928 Niko Crescent    38013-4160    Oregon    2016-06-27 13:15:50.195619    2016-10-14 13:02:54.600712        \N    \N    \N    0    \N    \N    \N    \N    female
15367    Alan    Kuhlman    joseph@howe.info    \N    Israel    Lottieshire    913 Jaquelin Port    77210    Hawaii    2016-09-08 07:08:39.700443    2016-10-14 13:02:54.60535        \N    \N    \N    0    \N    \N    \N    \N    female
15368    Dallin    Fahey    uriel.padberg@swift.io    \N    Malaysia    Alvashire    56097 Weissnat Road    77865-9776    Michigan    2016-09-02 04:58:53.530786    2016-10-14 13:02:54.609954        \N    \N    \N    0    \N    \N    \N    \N    female
15369    Joseph    Haag    loy@emard.io    \N    British Indian Ocean Territory (Chagos Archipelago)    Clydeland    6639 Ashlynn Turnpike    80842-3702    Colorado    2016-09-08 16:30:49.327372    2016-10-14 13:02:54.61523        \N    \N    \N    0    \N    \N    \N    \N    male
15371    Dennis    Harvey    geoffrey@baileyklocko.io    \N    Democratic People's Republic of Korea    West Terrance    6228 Torphy Crossing    90404-3998    Kentucky    2016-08-15 19:08:00.885328    2016-10-14 13:02:54.623656        \N    \N    \N    0    \N    \N    \N    \N    male
15372    Malika    Ritchie    elmo.zulauf@hudson.co    \N    Zimbabwe    Lakintown    405 Davon Mission    60258-8139    Maine    2016-07-05 00:47:40.298581    2016-10-14 13:02:54.629258        \N    \N    \N    0    \N    \N    \N    \N    female
15373    Chance    Keeling    bernie.hegmann@armstrong.name    \N    Austria    East Sedrick    799 Schuppe Gardens    69500-2250    Massachusetts    2016-07-24 10:10:15.029488    2016-10-14 13:02:54.633547        \N    \N    \N    0    \N    \N    \N    \N    male
15374    Efren    Schroeder    lisa@kuhncarter.co    \N    Andorra    South Manuela    82310 Hansen Spring    38476-2572    Oregon    2016-08-26 00:01:41.768581    2016-10-14 13:02:54.637897        \N    \N    \N    0    \N    \N    \N    \N    male
15375    Emiliano    Ledner    helen_jenkins@collierfriesen.io    \N    India    Mackmouth    9822 Brenna Drive    42870-4413    Hawaii    2016-08-03 09:26:24.638854    2016-10-14 13:02:54.642061        \N    \N    \N    0    \N    \N    \N    \N    female
15376    Braulio    Nolan    carole.blick@mann.info    \N    Micronesia    Piperberg    607 Kiehn Junctions    88243-3497    West Virginia    2016-07-02 08:49:10.53493    2016-10-14 13:02:54.646016        \N    \N    \N    0    \N    \N    \N    \N    male
15377    Kristoffer    Schowalter    velda_lebsack@macejkovic.co    \N    Israel    Zechariahville    65970 Shayne Trafficway    11154    Indiana    2016-06-22 11:35:09.831483    2016-10-14 13:02:54.650131        \N    \N    \N    0    \N    \N    \N    \N    female
15378    Marlon    Treutel    angus@maggioreichel.biz    \N    Northern Mariana Islands    Sandytown    56982 Funk Parks    82777-8129    Colorado    2016-08-14 12:40:02.89964    2016-10-14 13:02:54.654462        \N    \N    \N    0    \N    \N    \N    \N    male
15379    Juliana    Fay    catalina_christiansen@schowalteryundt.net    \N    Moldova    North Maiyamouth    587 Farrell Stream    12525    Wyoming    2016-08-04 06:49:07.07073    2016-10-14 13:02:54.65901        \N    \N    \N    0    \N    \N    \N    \N    female
15380    Abigail    Monahan    sonya@macgyvergulgowski.io    \N    Svalbard & Jan Mayen Islands    New Lillamouth    8905 Harold Valley    55609-3809    Tennessee    2016-07-13 15:51:22.849367    2016-10-14 13:02:54.663549        \N    \N    \N    0    \N    \N    \N    \N    female
15381    Maritza    Oberbrunner    ofelia@oconner.biz    \N    Djibouti    East Modesto    12406 Woodrow Glens    43481-1927    Ohio    2016-07-06 16:41:35.018154    2016-10-14 13:02:54.668097        \N    \N    \N    0    \N    \N    \N    \N    male
15382    Florence    Will    vincenzo.cormier@sipes.io    \N    Cape Verde    North Victorborough    207 Sister Harbor    57440-6756    Utah    2016-08-01 03:55:46.325241    2016-10-14 13:02:54.672606        \N    \N    \N    0    \N    \N    \N    \N    female
15383    Vince    Veum    roxane@hoppe.org    \N    Slovakia (Slovak Republic)    Port Lucienneport    1560 Bechtelar Stravenue    89669-8702    Vermont    2016-06-22 18:11:20.548587    2016-10-14 13:02:54.676697        \N    \N    \N    0    \N    \N    \N    \N    male
15384    Lucio    Schmidt    kayley.casper@ankundingmaggio.net    \N    Uruguay    West Anaisshire    18264 Eryn Track    80386-1065    California    2016-08-15 00:33:24.585869    2016-10-14 13:02:54.680835        \N    \N    \N    0    \N    \N    \N    \N    male
15386    Okey    Medhurst    morton@bogisich.net    \N    Wallis and Futuna    East Franzmouth    4670 Humberto Lakes    25018-3680    New Jersey    2016-07-13 21:09:56.342652    2016-10-14 13:02:54.684757        \N    \N    \N    0    \N    \N    \N    \N    male
15387    Merl    Larson    alaina@millshaag.io    \N    Kyrgyz Republic    Hoppemouth    79567 Keaton Heights    81432-4583    Maryland    2016-07-04 06:21:37.819751    2016-10-14 13:02:54.68867        \N    \N    \N    0    \N    \N    \N    \N    female
15388    Gaetano    Cronin    brannon@kerluke.name    \N    Dominica    Baileeburgh    825 Paxton Isle    48234-2964    New Jersey    2016-09-24 01:55:51.067745    2016-10-14 13:02:54.693054        \N    \N    \N    0    \N    \N    \N    \N    female
15389    Keyshawn    Larkin    ayla@runolfon.com    \N    Aruba    South Amira    1345 Elmira Walk    14671-2314    Pennsylvania    2016-07-13 10:22:09.350917    2016-10-14 13:02:54.697554        \N    \N    \N    0    \N    \N    \N    \N    male
15390    Jakayla    Krajcik    cheyanne_schinner@dickinson.co    \N    Anguilla    Bashirianland    68377 Bernhard Lake    25398-7849    Rhode Island    2016-07-24 13:06:02.58794    2016-10-14 13:02:54.702191        \N    \N    \N    0    \N    \N    \N    \N    female
15391    Aubrey    Schumm    toni.wyman@schmeler.io    \N    Thailand    Port Geovanyhaven    356 Valentin Squares    40753    Hawaii    2016-08-22 07:52:11.566168    2016-10-14 13:02:54.706239        \N    \N    \N    0    \N    \N    \N    \N    male
15392    Lela    Schmidt    ruthie@haleyrogahn.org    \N    Singapore    Port Stanton    9999 Moore Village    21200-2445    Colorado    2016-07-01 11:24:55.930706    2016-10-14 13:02:54.710583        \N    \N    \N    0    \N    \N    \N    \N    female
15393    Erika    Jacobson    trudie.kuhn@harris.org    \N    Malta    Zboncakshire    7850 Randall Villages    30967    Wyoming    2016-08-13 01:19:47.412307    2016-10-14 13:02:54.716511        \N    \N    \N    0    \N    \N    \N    \N    male
15394    Mariela    Moen    trinity@ward.net    \N    Dominica    New Houston    1591 Hartmann Views    12734-5506    Alabama    2016-07-30 05:07:03.548651    2016-10-14 13:02:54.721105        \N    \N    \N    0    \N    \N    \N    \N    male
15395    Elisabeth    Zboncak    craig.hilpert@satterfield.name    \N    Georgia    Lake Laurianneburgh    87080 Hermann Courts    46720-9361    Wyoming    2016-09-18 14:58:57.285035    2016-10-14 13:02:54.725902        \N    \N    \N    0    \N    \N    \N    \N    male
15396    Maximillia    Wisozk    floie_gutmann@macejkovicharris.org    \N    Afghanistan    Port Chrisville    49877 Fiona Valley    86410-1737    Vermont    2016-08-19 12:40:49.564152    2016-10-14 13:02:54.730272        \N    \N    \N    0    \N    \N    \N    \N    male
15397    Vance    Wilkinson    lowell.pfannerstill@cremin.io    \N    Zimbabwe    Deshawnland    7824 Stark Port    23568-0626    Kentucky    2016-09-28 07:41:26.663339    2016-10-14 13:02:54.73419        \N    \N    \N    0    \N    \N    \N    \N    female
15398    Troy    Romaguera    leone_eichmann@mclaughlin.io    \N    Ukraine    Gerholdtown    89808 Ondricka Fords    38729-0447    Michigan    2016-08-14 20:59:26.940226    2016-10-14 13:02:54.738243        \N    \N    \N    0    \N    \N    \N    \N    male
15399    Derrick    Hessel    alfreda.fadel@bartell.com    \N    Ecuador    Lake Hoseaview    29526 Ritchie Lane    71419-2090    Minnesota    2016-08-15 12:35:33.059567    2016-10-14 13:02:54.742195        \N    \N    \N    0    \N    \N    \N    \N    male
15400    Avery    Trantow    alison_simonis@volkman.io    \N    Qatar    Eliezerton    2109 Edgardo Lights    56739-4969    Alaska    2016-09-13 20:29:42.330072    2016-10-14 13:02:54.74604        \N    \N    \N    0    \N    \N    \N    \N    female
15401    Donny    Kessler    cole@boyle.biz    \N    Virgin Islands, British    North Marlenbury    6505 Durgan Tunnel    97354    South Carolina    2016-07-23 06:22:14.703103    2016-10-14 13:02:54.75023        \N    \N    \N    0    \N    \N    \N    \N    male
15402    Celia    Batz    saul_murray@haley.name    \N    Bahrain    Clevelandchester    16587 Rylee Center    81706-8117    Missouri    2016-08-15 06:31:18.633242    2016-10-14 13:02:54.755026        \N    \N    \N    0    \N    \N    \N    \N    female
15403    Freddy    Johnson    autumn_muller@altenwerthlarson.biz    \N    Falkland Islands (Malvinas)    Port Stanford    968 Zieme Oval    77948-4621    Wyoming    2016-08-28 11:46:03.393897    2016-10-14 13:02:54.759173        \N    \N    \N    0    \N    \N    \N    \N    female
15404    Hillary    Beier    bernie_blick@lindgren.biz    \N    Bermuda    Murazikview    9812 Roberts Forest    41772    Nebraska    2016-09-14 02:36:41.504386    2016-10-14 13:02:54.763817        \N    \N    \N    0    \N    \N    \N    \N    female
15405    Helena    Skiles    teresa@littlewalter.org    \N    Netherlands Antilles    Monahanport    127 Sylvia Mountain    48393    Nevada    2016-07-07 11:31:49.446171    2016-10-14 13:02:54.768868        \N    \N    \N    0    \N    \N    \N    \N    female
15406    Novella    Dicki    gust.graham@bogisich.info    \N    Palau    Eloisaberg    6365 Brain Plaza    28125-9120    South Carolina    2016-06-23 00:34:16.949186    2016-10-14 13:02:54.774209        \N    \N    \N    0    \N    \N    \N    \N    male
15407    Marty    Prosacco    gertrude@fisherparisian.info    \N    Cape Verde    Ambrosemouth    4263 Rhianna Squares    10974    Ohio    2016-08-12 15:47:31.366013    2016-10-14 13:02:54.778547        \N    \N    \N    0    \N    \N    \N    \N    female
15408    Elaina    Jast    zoe@cain.name    \N    Bermuda    Tillmanshire    682 Orin Ville    93394    Maryland    2016-07-09 19:19:16.203524    2016-10-14 13:02:54.784415        \N    \N    \N    0    \N    \N    \N    \N    female
15409    Emelia    Maggio    annamae_runte@braundicki.name    \N    Spain    Bergstrommouth    900 Mabelle Plain    33678    Alabama    2016-07-17 17:08:04.912104    2016-10-14 13:02:54.79002        \N    \N    \N    0    \N    \N    \N    \N    female
15410    Mariane    Towne    retha@kaulke.info    \N    Andorra    Douglashaven    2517 Isom Centers    18723    Mississippi    2016-07-13 21:36:38.160165    2016-10-14 13:02:54.794667        \N    \N    \N    0    \N    \N    \N    \N    male
15411    Tomas    Spinka    keeley.lebsack@wintheiser.name    \N    Egypt    Ziemeton    36421 Considine Rapid    84381-1429    Indiana    2016-07-26 00:53:14.112972    2016-10-14 13:02:54.799304        \N    \N    \N    0    \N    \N    \N    \N    female
15412    Isabella    Sporer    mireille.gislason@botsfordkilback.name    \N    Ireland    Arnoton    51564 Marie Mountains    70022-3737    West Virginia    2016-07-07 15:28:46.27418    2016-10-14 13:02:54.80356        \N    \N    \N    0    \N    \N    \N    \N    female
15413    Mitchell    Schowalter    cathryn@swaniawski.net    \N    Democratic People's Republic of Korea    Jaydenhaven    462 Chanel Street    72490-1794    Tennessee    2016-07-19 15:27:42.879429    2016-10-14 13:02:54.807803        \N    \N    \N    0    \N    \N    \N    \N    female
15414    Godfrey    Mitchell    anibal_wuckert@weinat.org    \N    Lebanon    Port Faustoberg    21883 Olaf Walk    43355    Kansas    2016-08-20 23:34:00.374743    2016-10-14 13:02:54.812244        \N    \N    \N    0    \N    \N    \N    \N    male
15415    Jakob    Hegmann    lenore@keler.biz    \N    Swaziland    East Haroldland    1898 Larson River    56700-5036    Missouri    2016-07-02 14:21:48.693583    2016-10-14 13:02:54.816886        \N    \N    \N    0    \N    \N    \N    \N    female
15416    Allison    Cole    rowena@kuphal.org    \N    Wallis and Futuna    Amyaburgh    502 Jennifer Spurs    60785    Virginia    2016-09-20 16:12:57.21556    2016-10-14 13:02:54.821477        \N    \N    \N    0    \N    \N    \N    \N    female
15417    Lyda    Ernser    vernon.cronin@schinner.co    \N    Wallis and Futuna    Port Lillie    3044 Kiehn Walk    66941    Utah    2016-09-14 20:08:39.963671    2016-10-14 13:02:54.830993        \N    \N    \N    0    \N    \N    \N    \N    female
15418    Ivah    Murray    elwyn@rodriguez.net    \N    Togo    West Trudie    8646 Wisoky Square    86409-1335    Maine    2016-07-02 08:13:38.86146    2016-10-14 13:02:54.835838        \N    \N    \N    0    \N    \N    \N    \N    female
15419    Orville    Hoeger    jaden@franeckikeeling.co    \N    Samoa    Lake Genevieve    61972 Green Place    73633    Louisiana    2016-06-25 16:55:50.539287    2016-10-14 13:02:54.840415        \N    \N    \N    0    \N    \N    \N    \N    female
15420    Eliseo    Stehr    lillian_fadel@sanford.org    \N    United States Minor Outlying Islands    Shemarfurt    71072 Ashly Passage    33623    Missouri    2016-07-17 15:37:01.102149    2016-10-14 13:02:54.845361        \N    \N    \N    0    \N    \N    \N    \N    male
15421    Jadon    Haag    lesly_erdman@bailey.org    \N    Malawi    Olsonmouth    87570 Sunny Ranch    77449-8928    Oregon    2016-06-30 18:18:58.177137    2016-10-14 13:02:54.849494        \N    \N    \N    0    \N    \N    \N    \N    female
15422    Scotty    Tillman    nathaniel@kunzekeler.net    \N    China    Thielhaven    308 Adrien Islands    33643-2623    Minnesota    2016-08-21 18:20:25.631417    2016-10-14 13:02:54.853751        \N    \N    \N    0    \N    \N    \N    \N    male
15424    Travon    Ziemann    maximilian.thiel@toy.io    \N    Turkmenistan    East Benjamin    8654 Braun Ports    81692-0862    New Jersey    2016-08-02 21:44:46.385828    2016-10-14 13:02:54.858023        \N    \N    \N    0    \N    \N    \N    \N    female
15425    Tania    Flatley    gunner@harber.com    \N    Italy    East Haroldmouth    720 Murray Cove    45023-0686    North Dakota    2016-07-31 11:22:30.505959    2016-10-14 13:02:54.861924        \N    \N    \N    0    \N    \N    \N    \N    female
15426    Elenora    Schneider    krista.lesch@padbergwillms.biz    \N    Luxembourg    Liamouth    787 McDermott Plains    92480    North Carolina    2016-06-25 16:28:58.159239    2016-10-14 13:02:54.865792        \N    \N    \N    0    \N    \N    \N    \N    male
15427    Xander    Ankunding    vincenzo.tremblay@schaden.info    \N    Guatemala    South Nicklausland    4706 Rath Flats    26123-7615    Utah    2016-09-14 20:00:53.46289    2016-10-14 13:02:54.869739        \N    \N    \N    0    \N    \N    \N    \N    male
15428    Erich    Sporer    loma.abernathy@conroybeier.io    \N    Mauritius    North Abby    48647 Schneider Glen    82798    Wisconsin    2016-08-21 20:06:30.511841    2016-10-14 13:02:54.873553        \N    \N    \N    0    \N    \N    \N    \N    female
15429    Rachelle    Konopelski    linwood@olson.co    \N    Malawi    Connfurt    5641 Rosamond Square    61990-8208    Kansas    2016-07-23 08:27:45.087485    2016-10-14 13:02:54.877309        \N    \N    \N    0    \N    \N    \N    \N    female
15430    Mikayla    Lemke    stuart@feestkeebler.biz    \N    South Georgia and the South Sandwich Islands    North Winonafurt    6372 Tessie Way    97013    South Dakota    2016-08-24 22:02:40.500625    2016-10-14 13:02:54.881153        \N    \N    \N    0    \N    \N    \N    \N    female
15431    Belle    Bosco    marilou_dach@harris.info    \N    Norfolk Island    Satterfieldhaven    7967 Parisian Vista    37369-7031    Illinois    2016-07-21 16:02:30.082925    2016-10-14 13:02:54.885        \N    \N    \N    0    \N    \N    \N    \N    male
15432    Erna    Gleichner    bria.leuschke@medhurstcorkery.name    \N    Liechtenstein    Port Mistychester    37425 Isobel Squares    50730-9553    Montana    2016-07-21 15:37:01.463941    2016-10-14 13:02:54.888743        \N    \N    \N    0    \N    \N    \N    \N    male
15433    Tania    Bayer    sandra.veum@prohaska.name    \N    Zambia    Schambergerchester    562 Reinger Neck    67583-8831    Maine    2016-09-17 01:46:33.802738    2016-10-14 13:02:54.892658        \N    \N    \N    0    \N    \N    \N    \N    female
15435    Adan    Kreiger    bailee@prosacco.com    \N    Greece    Schuppemouth    75587 Selmer Ramp    28364    South Carolina    2016-08-20 05:22:36.023461    2016-10-14 13:02:54.900408        \N    \N    \N    0    \N    \N    \N    \N    female
15436    Jasmin    Bergnaum    vidal@walter.org    \N    Antarctica (the territory South of 60 deg S)    Starkstad    62413 Hintz Extensions    76115    Alaska    2016-08-09 17:11:18.951611    2016-10-14 13:02:54.904301        \N    \N    \N    0    \N    \N    \N    \N    female
15437    Abelardo    Beatty    khalil.abernathy@lueilwitzgutkowski.com    \N    Uruguay    Bernicestad    2238 Spencer Center    70433    Tennessee    2016-07-18 19:06:43.80595    2016-10-14 13:02:54.908444        \N    \N    \N    0    \N    \N    \N    \N    female
15438    Fay    Lebsack    vivian@buckridge.biz    \N    Thailand    Lake Archibald    82277 Bartoletti Estate    19367    Georgia    2016-08-15 15:20:41.760177    2016-10-14 13:02:54.912944        \N    \N    \N    0    \N    \N    \N    \N    female
15439    Vanessa    Donnelly    stanton@huel.io    \N    Kiribati    Port Dahlia    93373 Tomas Squares    88106-1270    North Carolina    2016-06-23 00:14:09.786362    2016-10-14 13:02:54.917511        \N    \N    \N    0    \N    \N    \N    \N    female
15440    Nils    Hintz    justine.franecki@langosh.io    \N    Benin    Sigmundbury    670 Eve Trafficway    57042-6964    Tennessee    2016-06-24 08:57:24.168567    2016-10-14 13:02:54.921531        \N    \N    \N    0    \N    \N    \N    \N    female
15441    Joe    Rolfson    sigurd_hammes@haag.io    \N    Kiribati    Denesikfort    6976 Evalyn Mountain    33206    North Dakota    2016-07-12 00:07:48.195077    2016-10-14 13:02:54.925854        \N    \N    \N    0    \N    \N    \N    \N    female
15442    Perry    Hilll    raymundo.king@morar.co    \N    Poland    East Jerod    55591 Maddison Island    96491    Indiana    2016-08-03 03:35:20.71714    2016-10-14 13:02:54.929987        \N    \N    \N    0    \N    \N    \N    \N    male
15443    Gregorio    Murphy    ricardo.quitzon@davis.net    \N    Northern Mariana Islands    Harberton    9397 Leannon Mountains    88235-1711    Wisconsin    2016-07-31 00:09:27.744159    2016-10-14 13:02:54.934114        \N    \N    \N    0    \N    \N    \N    \N    male
15444    Leann    Buckridge    gia@krajcik.co    \N    Djibouti    Littelside    739 Quitzon Extensions    91545-9257    Louisiana    2016-09-20 00:33:22.260918    2016-10-14 13:02:54.93812        \N    \N    \N    0    \N    \N    \N    \N    female
15445    Amie    Spencer    krystal@paucek.biz    \N    Serbia    North Mazieshire    460 Buckridge Center    87724    North Dakota    2016-07-22 15:52:42.838955    2016-10-14 13:02:54.942205        \N    \N    \N    0    \N    \N    \N    \N    female
15446    Gerard    Blanda    maci.friesen@jaskolski.info    \N    Lithuania    New Vivian    609 Satterfield Locks    87530    Oklahoma    2016-09-08 00:09:31.345056    2016-10-14 13:02:54.945935        \N    \N    \N    0    \N    \N    \N    \N    female
15447    Jayda    Greenholt    glennie@okon.biz    \N    Armenia    Dimitriton    43340 Dorris Mountains    87901-8106    Maryland    2016-08-21 00:00:57.482193    2016-10-14 13:02:54.949851        \N    \N    \N    0    \N    \N    \N    \N    female
15448    Marlon    Hintz    otha_dickinson@smitham.org    \N    Costa Rica    South Amparo    95734 Reilly Island    49661    Arizona    2016-07-11 13:35:18.33549    2016-10-14 13:02:54.953695        \N    \N    \N    0    \N    \N    \N    \N    male
15449    Joey    Mohr    anastasia_bradtke@hermiston.biz    \N    Ireland    New Kariburgh    461 Gerda Meadow    17625    Alaska    2016-07-02 16:39:47.339676    2016-10-14 13:02:54.958103        \N    \N    \N    0    \N    \N    \N    \N    male
15450    Arlene    Wintheiser    sherwood.gleason@borercummings.org    \N    Niger    Jalonmouth    5141 Skyla Shoal    48291    Alaska    2016-07-17 18:34:03.963099    2016-10-14 13:02:54.962331        \N    \N    \N    0    \N    \N    \N    \N    female
15451    Maiya    Collier    teagan@murphybrown.co    \N    Armenia    Assuntafurt    3832 White Gardens    73897    Maine    2016-08-20 15:29:01.943192    2016-10-14 13:02:54.966503        \N    \N    \N    0    \N    \N    \N    \N    female
15452    Chauncey    Mills    katelin@schaefer.biz    \N    Dominica    Mireyaborough    264 Lindgren Divide    55151-4119    Maine    2016-06-24 14:57:39.7529    2016-10-14 13:02:54.970448        \N    \N    \N    0    \N    \N    \N    \N    male
15453    Reyna    Hodkiewicz    guillermo@gutkowski.info    \N    San Marino    Wilsonland    986 Arthur Trail    34196    Ohio    2016-08-15 12:25:33.013696    2016-10-14 13:02:54.974626        \N    \N    \N    0    \N    \N    \N    \N    male
15454    Noe    Considine    lily_rogahn@blickkuphal.net    \N    Brunei Darussalam    Raynorport    611 Terry Estate    65157    South Dakota    2016-08-24 22:39:19.843527    2016-10-14 13:02:54.978595        \N    \N    \N    0    \N    \N    \N    \N    female
15455    Dorcas    Cormier    casper@marvin.io    \N    Estonia    South Anaisside    3044 Jenkins Hill    57606    Mississippi    2016-09-23 09:01:30.643942    2016-10-14 13:02:54.98253        \N    \N    \N    0    \N    \N    \N    \N    female
15456    Stacey    Schumm    santa.dach@berge.biz    \N    Oman    Hermistonton    91043 Goodwin Pine    70159    Nevada    2016-09-07 17:47:57.399819    2016-10-14 13:02:54.986386        \N    \N    \N    0    \N    \N    \N    \N    male
15457    Gertrude    Raynor    coralie@corkery.io    \N    Belize    Windlershire    84768 Reyes Brooks    68653    Alabama    2016-07-06 11:07:16.122441    2016-10-14 13:02:54.990328        \N    \N    \N    0    \N    \N    \N    \N    male
15458    Abe    Kub    reyna@wymanboehm.net    \N    Germany    Kossland    75449 Erin Curve    27570    New Jersey    2016-09-26 16:52:09.046672    2016-10-14 13:02:54.994688        \N    \N    \N    0    \N    \N    \N    \N    male
15459    Dayna    Stehr    lucio@denesiklegros.co    \N    Iraq    Horacioview    7706 Alicia Rest    17690    Missouri    2016-09-03 18:43:19.155112    2016-10-14 13:02:54.999879        \N    \N    \N    0    \N    \N    \N    \N    female
15460    Dahlia    Roob    meggie@oconnellsporer.net    \N    Virgin Islands, British    Arnoldton    282 Metz Rest    53988    New York    2016-07-05 04:48:26.961044    2016-10-14 13:02:55.004382        \N    \N    \N    0    \N    \N    \N    \N    male
15461    Kavon    Bode    grayce_predovic@dicki.org    \N    Malaysia    Coltfort    43546 Reilly Run    51175    Alabama    2016-07-27 20:36:24.03576    2016-10-14 13:02:55.008312        \N    \N    \N    0    \N    \N    \N    \N    female
15462    Saige    Franecki    isidro.raynor@botsfordbuckridge.co    \N    Italy    Maurineland    51135 Emery Common    52988    West Virginia    2016-09-26 17:26:38.155381    2016-10-14 13:02:55.012379        \N    \N    \N    0    \N    \N    \N    \N    male
15463    Ward    Balistreri    samara.bogisich@brownlakin.biz    \N    United Kingdom    Lake Golda    70302 Leila Valleys    54115-9638    Ohio    2016-08-20 09:39:07.870953    2016-10-14 13:02:55.016504        \N    \N    \N    0    \N    \N    \N    \N    male
15464    Alec    Harris    emilia@pagac.org    \N    Mexico    Marquardtside    952 Veum Unions    20679-8118    South Carolina    2016-07-05 10:03:12.222112    2016-10-14 13:02:55.020416        \N    \N    \N    0    \N    \N    \N    \N    male
15465    Mckenzie    Beier    gilbert@graham.org    \N    Czech Republic    Justineland    1000 Blanda Vista    73943-1416    Kentucky    2016-07-27 14:07:17.877305    2016-10-14 13:02:55.02424        \N    \N    \N    0    \N    \N    \N    \N    male
15466    Nathaniel    Schmidt    sofia@mayertcollier.io    \N    India    Issacchester    5892 Mraz Land    50932-4965    Arkansas    2016-08-07 07:57:38.801066    2016-10-14 13:02:55.028025        \N    \N    \N    0    \N    \N    \N    \N    female
15467    Devonte    Hahn    merle@mraz.name    \N    Iceland    Port Prestonhaven    49888 Deckow River    84321    North Dakota    2016-08-19 03:56:32.075294    2016-10-14 13:02:55.032084        \N    \N    \N    0    \N    \N    \N    \N    female
15468    Amanda    Reichert    sharon@rowe.com    \N    Jersey    Lake Zeldatown    4912 Cecil Stravenue    79805-5913    Missouri    2016-09-22 03:47:17.510029    2016-10-14 13:02:55.036447        \N    \N    \N    0    \N    \N    \N    \N    male
15469    Damien    Koss    maureen@roberts.name    \N    Guernsey    Port Johnny    413 Sporer Fork    27824-3219    Massachusetts    2016-08-04 02:09:59.966618    2016-10-14 13:02:55.041066        \N    \N    \N    0    \N    \N    \N    \N    female
15470    Shaylee    Ruecker    alba_smith@connelly.biz    \N    Wallis and Futuna    New Joseshire    6218 Hodkiewicz Glen    56956-8863    Louisiana    2016-07-29 09:32:41.584539    2016-10-14 13:02:55.04543        \N    \N    \N    0    \N    \N    \N    \N    male
15471    Ruben    Volkman    joanie_stroman@howell.net    \N    Isle of Man    Orinbury    6137 Margarita Lakes    68915-7380    New Mexico    2016-09-05 22:49:09.048677    2016-10-14 13:02:55.049514        \N    \N    \N    0    \N    \N    \N    \N    male
15472    Maud    Adams    georgiana@blanda.name    \N    Cote d'Ivoire    Kosshaven    61124 Eli Ramp    63451    New York    2016-09-23 16:12:32.453951    2016-10-14 13:02:55.053942        \N    \N    \N    0    \N    \N    \N    \N    female
15474    Porter    West    daija@considine.org    \N    Papua New Guinea    Kaileyburgh    9406 Maximus Fort    50674    Nevada    2016-07-24 14:55:13.126204    2016-10-14 13:02:55.05789        \N    \N    \N    0    \N    \N    \N    \N    female
15475    Nelda    Hickle    rory_ondricka@oharasimonis.name    \N    New Caledonia    Ullrichshire    86281 Davis Orchard    83925    Minnesota    2016-09-17 21:44:22.610881    2016-10-14 13:02:55.061765        \N    \N    \N    0    \N    \N    \N    \N    female
15476    Anabelle    Boehm    keira_casper@gloverwisozk.com    \N    Papua New Guinea    North Margaret    7947 Delores Glens    71555    Utah    2016-08-13 14:12:27.011824    2016-10-14 13:02:55.065882        \N    \N    \N    0    \N    \N    \N    \N    female
15478    Gillian    Konopelski    tyshawn_labadie@koch.info    \N    Tokelau    Port Hayden    1287 Ledner Ports    84212    Colorado    2016-09-19 19:35:48.644994    2016-10-14 13:02:55.069731        \N    \N    \N    0    \N    \N    \N    \N    female
15479    Tabitha    Dibbert    jeramie_sawayn@waters.co    \N    Burundi    Port Leonard    8532 Carleton Viaduct    15373-6360    Missouri    2016-08-19 20:20:26.404019    2016-10-14 13:02:55.073651        \N    \N    \N    0    \N    \N    \N    \N    female
15480    Micaela    Mann    donnie_brown@nader.name    \N    Comoros    Port Rachel    64490 Prohaska Club    54574-0855    Minnesota    2016-09-06 04:34:58.247154    2016-10-14 13:02:55.078052        \N    \N    \N    0    \N    \N    \N    \N    female
15481    Gaetano    Homenick    gaylord@windler.biz    \N    Djibouti    Port Florineshire    202 Rau Stravenue    78620    Mississippi    2016-08-10 07:28:57.514743    2016-10-14 13:02:55.082592        \N    \N    \N    0    \N    \N    \N    \N    female
15482    Percy    Wyman    johann_bartoletti@nienowparisian.co    \N    Bangladesh    Rodriguezburgh    3493 Kale Cliffs    58079-8648    Missouri    2016-09-19 08:22:41.016937    2016-10-14 13:02:55.086725        \N    \N    \N    0    \N    \N    \N    \N    male
15483    Wilburn    VonRueden    rocky.ankunding@dickens.biz    \N    Guadeloupe    Jerodburgh    10772 Graham Common    23011    Vermont    2016-08-20 11:56:15.856397    2016-10-14 13:02:55.090582        \N    \N    \N    0    \N    \N    \N    \N    female
15484    Llewellyn    Rolfson    noel.wisoky@roberts.io    \N    Austria    South Cordeliahaven    33760 Runolfsson Row    68823-7072    Rhode Island    2016-07-09 17:23:10.386864    2016-10-14 13:02:55.095327        \N    \N    \N    0    \N    \N    \N    \N    male
15485    Abraham    Harber    lenora.carter@cormierwehner.com    \N    Jersey    North Laurynchester    14435 Gene Spring    45368    Arizona    2016-07-12 07:36:44.65173    2016-10-14 13:02:55.100625        \N    \N    \N    0    \N    \N    \N    \N    male
15486    Chaya    Schinner    treva@hahnhansen.com    \N    Moldova    New Inesfurt    20046 Pagac Summit    52765-7187    Illinois    2016-09-18 23:05:14.255095    2016-10-14 13:02:55.106394        \N    \N    \N    0    \N    \N    \N    \N    male
15487    Rosamond    Schultz    therese.crist@mertz.org    \N    Guyana    Lake Violette    682 Afton Shores    79557    Arizona    2016-09-19 14:59:20.772887    2016-10-14 13:02:55.111468        \N    \N    \N    0    \N    \N    \N    \N    male
15489    Piper    Beer    gennaro@toybosco.org    \N    Saudi Arabia    VonRuedenfurt    7614 Rosenbaum Loaf    58859-9371    Missouri    2016-09-14 07:43:22.131019    2016-10-14 13:02:55.115733        \N    \N    \N    0    \N    \N    \N    \N    male
15490    Payton    Kohler    jeanette@feilhaag.co    \N    New Zealand    Port Elroyland    4259 Kirlin Square    30483    Florida    2016-08-01 22:33:40.673294    2016-10-14 13:02:55.120163        \N    \N    \N    0    \N    \N    \N    \N    female
15491    Demetris    Waters    agustin@blanda.name    \N    Iran    Abernathymouth    94313 Conroy Freeway    32475    Maryland    2016-09-25 16:16:08.48994    2016-10-14 13:02:55.124034        \N    \N    \N    0    \N    \N    \N    \N    female
15492    Pauline    Hagenes    mckenzie@williamsonokon.info    \N    Guadeloupe    Armstrongshire    427 Charlene Stream    89205    Nebraska    2016-08-12 01:02:27.280607    2016-10-14 13:02:55.1282        \N    \N    \N    0    \N    \N    \N    \N    female
15493    Jammie    Collins    haven_haley@rutherford.net    \N    Czech Republic    Lake Dagmarfurt    118 Misty Island    18824    New Mexico    2016-08-01 06:05:58.532136    2016-10-14 13:02:55.132113        \N    \N    \N    0    \N    \N    \N    \N    male
15494    Esteban    Cole    alejandra.jakubowski@nitzsche.name    \N    Romania    Rohanmouth    179 Kianna Flat    60224    Pennsylvania    2016-09-28 11:07:57.707968    2016-10-14 13:02:55.136317        \N    \N    \N    0    \N    \N    \N    \N    male
15495    Yasmine    Cole    hettie_rippin@rippin.biz    \N    British Indian Ocean Territory (Chagos Archipelago)    East Kaiaburgh    573 Bode Station    49667-1528    Alaska    2016-08-26 04:03:37.402142    2016-10-14 13:02:55.140623        \N    \N    \N    0    \N    \N    \N    \N    female
15496    Lauryn    Towne    aletha@hackettschroeder.com    \N    Macao    Creminshire    7228 Stokes Crest    47043    Washington    2016-07-18 07:15:32.422736    2016-10-14 13:02:55.144737        \N    \N    \N    0    \N    \N    \N    \N    male
15497    Leonardo    Konopelski    brook.hane@brekke.co    \N    Guadeloupe    Noblefort    4600 Aylin Shore    68439    Delaware    2016-08-25 22:36:57.118129    2016-10-14 13:02:55.148704        \N    \N    \N    0    \N    \N    \N    \N    female
15498    Alexander    Boyle    alivia_funk@bailey.biz    \N    Mauritania    Port Jordanemouth    954 Stroman Shoals    84700    Kansas    2016-08-22 04:32:59.593524    2016-10-14 13:02:55.15296        \N    \N    \N    0    \N    \N    \N    \N    female
15499    Nils    Hilpert    donna.swift@oconnell.name    \N    Holy See (Vatican City State)    Cronaside    16671 Harris Landing    86930-4854    South Carolina    2016-08-11 20:10:56.688038    2016-10-14 13:02:55.156844        \N    \N    \N    0    \N    \N    \N    \N    male
15500    Sigrid    Luettgen    mozell@parker.net    \N    Estonia    Jeromyville    812 Gerlach Manors    25213    New York    2016-07-10 20:03:14.410665    2016-10-14 13:02:55.160998        \N    \N    \N    0    \N    \N    \N    \N    female
15501    Ebba    Leannon    nedra@ullrich.name    \N    Canada    Lakinhaven    48851 Gia Motorway    58013-5692    Missouri    2016-06-28 23:44:50.703198    2016-10-14 13:02:55.165329        \N    \N    \N    0    \N    \N    \N    \N    male
15503    Fabian    Hahn    lelia.rau@schroeder.name    \N    India    Boyleberg    4963 Watson Tunnel    52630    Georgia    2016-09-16 03:06:57.73603    2016-10-14 13:02:55.17382        \N    \N    \N    0    \N    \N    \N    \N    male
15504    Naomie    Kassulke    milford.yundt@heaneyspinka.net    \N    Trinidad and Tobago    East Kamronchester    103 Nedra Station    74999-2600    Arkansas    2016-09-13 21:25:34.950831    2016-10-14 13:02:55.177925        \N    \N    \N    0    \N    \N    \N    \N    female
15505    Rudy    Harber    dee@boylekshlerin.net    \N    Guinea    South Ethylport    9947 Ernser Junctions    40330-0609    North Carolina    2016-06-22 13:37:07.269064    2016-10-14 13:02:55.182008        \N    \N    \N    0    \N    \N    \N    \N    male
15506    Brice    Schulist    whitney.ondricka@mills.com    \N    Anguilla    South Kanefort    4622 Glover Springs    61528    Minnesota    2016-07-30 23:19:40.1457    2016-10-14 13:02:55.185987        \N    \N    \N    0    \N    \N    \N    \N    male
15507    Jameson    Stokes    lorenz@buckridgewintheiser.net    \N    Reunion    West Royalhaven    88301 Schaefer Circle    55741-1379    South Carolina    2016-08-29 17:16:26.768049    2016-10-14 13:02:55.19144        \N    \N    \N    0    \N    \N    \N    \N    male
15508    Brendon    O'Conner    talia_huels@zemlakheller.biz    \N    Hungary    Lake Genesisshire    53205 Huels Creek    56078-8251    Virginia    2016-08-17 18:14:10.483729    2016-10-14 13:02:55.195805        \N    \N    \N    0    \N    \N    \N    \N    male
15509    Jettie    Kassulke    tod@huelprosacco.info    \N    Equatorial Guinea    Anikaland    528 Jaren Estate    93783-3665    Arizona    2016-08-16 22:14:20.336027    2016-10-14 13:02:55.200175        \N    \N    \N    0    \N    \N    \N    \N    male
15510    Augustus    Rippin    jimmie@windlerarmstrong.net    \N    Israel    Brendenhaven    44888 Borer Lakes    93619-8163    Tennessee    2016-09-01 18:22:44.674744    2016-10-14 13:02:55.204691        \N    \N    \N    0    \N    \N    \N    \N    male
15512    Betsy    Green    halie@toy.name    \N    Gibraltar    Kendraborough    80163 Hoppe Rue    74976-2160    Florida    2016-07-07 15:09:02.896963    2016-10-14 13:02:55.221197        \N    \N    \N    0    \N    \N    \N    \N    female
12203    Pansy    Feest    tristian@ruel.net    \N    Switzerland    Paytonport    88689 Will Drive    61766-8290    Arizona    2016-07-22 13:01:15.177149    2016-10-14 13:02:55.225467        \N    \N    \N    0    \N    \N    \N    \N    female
15473    Jabari    Schowalter    wilford@hodkiewiczquigley.net    \N    Cameroon    Kiannaville    1022 Leffler Stravenue    97269-4688    Ohio    2016-07-31 11:31:18.292062    2016-10-14 13:02:55.229527        \N    \N    \N    0    \N    \N    \N    \N    female
15513    Cristobal    Kub    nona_kris@spinka.com    \N    French Polynesia    Lake Mariana    359 Kayli Court    43128    Connecticut    2016-09-17 14:38:51.101386    2016-10-14 13:02:55.233525        \N    \N    \N    0    \N    \N    \N    \N    male
15514    Bulah    Lueilwitz    alvera@rowe.io    \N    Jordan    East Laurinehaven    424 Bruce Mills    32974    Illinois    2016-09-13 16:27:59.760414    2016-10-14 13:02:55.237578        \N    \N    \N    0    \N    \N    \N    \N    male
15515    Nasir    Ruecker    riley.dickinson@morarbogisich.biz    \N    France    Zackeryport    30046 Block Pine    14186    Louisiana    2016-09-28 14:55:26.693084    2016-10-14 13:02:55.241503        \N    \N    \N    0    \N    \N    \N    \N    female
15516    Arnold    Harris    emelia@rutherford.info    \N    Cambodia    New Yesenia    432 Lockman Lane    42346-9625    Tennessee    2016-07-13 16:36:28.228759    2016-10-14 13:02:55.245529        \N    \N    \N    0    \N    \N    \N    \N    female
15517    Gwendolyn    Jones    clarabelle_kerluke@bartell.org    \N    Uganda    Port Summerberg    2158 Trey Fall    15870-1589    West Virginia    2016-09-11 22:10:21.360286    2016-10-14 13:02:55.249565        \N    \N    \N    0    \N    \N    \N    \N    female
15519    Evalyn    Bradtke    tatyana.reynolds@mills.name    \N    Angola    Dejahfurt    696 Tillman Creek    21387    Colorado    2016-06-27 06:13:15.508368    2016-10-14 13:02:55.253376        \N    \N    \N    0    \N    \N    \N    \N    male
15520    Violette    Fisher    fae@haleyschimmel.io    \N    Taiwan    West Wilfredofurt    454 Dane Turnpike    42657    New Mexico    2016-06-30 03:14:46.826915    2016-10-14 13:02:55.257426        \N    \N    \N    0    \N    \N    \N    \N    female
15521    Santos    Heidenreich    rahul_lebsack@kling.name    \N    Saint Martin    Lake Madyson    21516 Harber Squares    87986    Connecticut    2016-08-07 16:20:43.276613    2016-10-14 13:02:55.261219        \N    \N    \N    0    \N    \N    \N    \N    male
15522    Jordane    Emmerich    kristina_bechtelar@pricepowlowski.biz    \N    Sierra Leone    Wavafort    8994 Simone Ranch    37664    Utah    2016-09-14 18:29:13.487156    2016-10-14 13:02:55.265012        \N    \N    \N    0    \N    \N    \N    \N    male
15523    Devin    Dibbert    gielle@pfannerstill.co    \N    Afghanistan    West Noemyton    84440 Eden Villages    43528    Colorado    2016-08-04 09:12:19.877957    2016-10-14 13:02:55.268849        \N    \N    \N    0    \N    \N    \N    \N    female
15524    Philip    Paucek    jonathon.bogan@satterfield.net    \N    Palestinian Territory    Mullerbury    2678 London Lodge    83068-9682    Nevada    2016-08-15 13:28:19.862014    2016-10-14 13:02:55.272642        \N    \N    \N    0    \N    \N    \N    \N    male
15525    Kaleb    Lind    garnet@lueilwitzstrosin.com    \N    Antigua and Barbuda    Trantowtown    685 Davon Route    51792    Alaska    2016-07-24 18:14:16.514997    2016-10-14 13:02:55.276564        \N    \N    \N    0    \N    \N    \N    \N    male
15526    Sydnie    Heller    angeline_mante@treutel.info    \N    Iceland    Rodriguezland    75059 Abbie Street    48652    Michigan    2016-08-30 18:07:41.93955    2016-10-14 13:02:55.280439        \N    \N    \N    0    \N    \N    \N    \N    male
15527    Johnpaul    Hermann    ewell@auer.info    \N    Liberia    New Xzavierborough    987 Halvorson Plaza    58889-1399    South Carolina    2016-09-09 13:57:41.036318    2016-10-14 13:02:55.284476        \N    \N    \N    0    \N    \N    \N    \N    female
15528    Osvaldo    Welch    bobby@kiehn.co    \N    Burkina Faso    Laurynmouth    7205 Wyman Harbor    87857    Kansas    2016-07-01 06:36:19.753423    2016-10-14 13:02:55.289263        \N    \N    \N    0    \N    \N    \N    \N    male
15529    Anissa    Buckridge    ora.batz@lubowitz.name    \N    Palestinian Territory    Nikolasberg    7817 Trystan Stream    35925-8468    Connecticut    2016-09-09 02:14:35.502967    2016-10-14 13:02:55.29365        \N    \N    \N    0    \N    \N    \N    \N    male
15531    Lurline    Schroeder    andrew@roberts.io    \N    Zimbabwe    Flatleyhaven    32985 Jonatan Centers    15774-3157    New Hampshire    2016-09-24 21:01:08.125514    2016-10-14 13:02:55.297592        \N    \N    \N    0    \N    \N    \N    \N    male
15532    Alexandrea    Mills    hosea@borer.name    \N    Aruba    Lake Brainhaven    1115 Cedrick Vista    20056-5375    Minnesota    2016-07-16 23:46:46.577555    2016-10-14 13:02:55.30153        \N    \N    \N    0    \N    \N    \N    \N    male
15533    Edgar    Parker    emmanuel@halvorson.io    \N    Saint Barthelemy    Port Adamberg    74269 Farrell Estates    84016-9875    Massachusetts    2016-09-11 17:05:32.735011    2016-10-14 13:02:55.305518        \N    \N    \N    0    \N    \N    \N    \N    male
15534    Woodrow    Daugherty    korey_moen@wolff.co    \N    Malaysia    Hackettview    75054 Kessler Mountains    74637    Colorado    2016-08-25 06:26:38.507422    2016-10-14 13:02:55.309555        \N    \N    \N    0    \N    \N    \N    \N    male
15535    Dylan    Johns    gudrun.von@schmitt.com    \N    Cayman Islands    North Cecilhaven    1069 Eldora Forks    88625-0698    Oregon    2016-09-08 18:01:38.47635    2016-10-14 13:02:55.313588        \N    \N    \N    0    \N    \N    \N    \N    male
15536    Prudence    Hoeger    rick@schulist.co    \N    Cyprus    Revabury    647 Hammes Harbor    37982-5292    South Dakota    2016-06-26 22:51:39.958634    2016-10-14 13:02:55.317721        \N    \N    \N    0    \N    \N    \N    \N    female
15537    Nat    O'Conner    dexter@block.net    \N    Cape Verde    West Olehaven    5954 Farrell Trafficway    35897    Illinois    2016-07-11 02:52:54.305842    2016-10-14 13:02:55.321844        \N    \N    \N    0    \N    \N    \N    \N    female
15538    Jeramy    Parisian    riley_hayes@larkin.net    \N    Albania    Josefaside    52061 Peyton Prairie    85780    New Jersey    2016-09-09 14:42:07.996524    2016-10-14 13:02:55.326056        \N    \N    \N    0    \N    \N    \N    \N    male
15539    Belle    Hirthe    camille@schinnernikolaus.co    \N    Nigeria    East Geo    755 Zboncak Hill    63459-4127    Texas    2016-09-29 11:31:18.517756    2016-10-14 13:02:55.330073        \N    \N    \N    0    \N    \N    \N    \N    male
15540    Ethyl    Kunze    adela.mayer@wiegand.io    \N    Macao    Mallorymouth    90516 Martina Crossroad    97418-3903    South Dakota    2016-08-23 01:05:25.723384    2016-10-14 13:02:55.334162        \N    \N    \N    0    \N    \N    \N    \N    female
15541    Marion    Stamm    antonio.schamberger@wisoky.name    \N    United States of America    North Philip    6425 Gretchen Mill    76929    Montana    2016-07-28 10:42:17.27934    2016-10-14 13:02:55.338022        \N    \N    \N    0    \N    \N    \N    \N    male
15542    Darius    Smitham    carole@turnerreilly.com    \N    Dominica    Lake Malcolm    388 Ellen Junctions    77017    Pennsylvania    2016-08-30 07:48:05.062126    2016-10-14 13:02:55.342138        \N    \N    \N    0    \N    \N    \N    \N    female
15543    Friedrich    Harvey    marjolaine@lefflerbashirian.net    \N    Saint Barthelemy    Alvinashire    713 Demond Trace    79362-7997    Washington    2016-09-10 03:43:36.420743    2016-10-14 13:02:55.345976        \N    \N    \N    0    \N    \N    \N    \N    female
15544    Christophe    Herman    molly.goyette@ko.io    \N    Afghanistan    Wunschbury    7463 Raphael Extensions    58001    Missouri    2016-07-01 06:48:19.050076    2016-10-14 13:02:55.349881        \N    \N    \N    0    \N    \N    \N    \N    male
15545    Cora    Schmitt    laurie@keebler.io    \N    Botswana    East Buster    46179 Durgan Forge    78349-3183    Kansas    2016-07-22 01:02:27.700924    2016-10-14 13:02:55.354007        \N    \N    \N    0    \N    \N    \N    \N    female
15546    Palma    Renner    domenic_veum@lang.name    \N    Greenland    Reichelfurt    30257 Purdy Land    46454    Delaware    2016-08-13 17:38:09.002241    2016-10-14 13:02:55.358025        \N    \N    \N    0    \N    \N    \N    \N    male
15547    Andre    Gulgowski    fritz_runte@koeppkub.com    \N    Mexico    Port Marcellus    89902 Jensen Via    23457    Indiana    2016-07-08 15:33:36.925387    2016-10-14 13:02:55.361909        \N    \N    \N    0    \N    \N    \N    \N    male
15548    Sister    Wintheiser    robyn.powlowski@wolffsauer.name    \N    Vanuatu    Wolfberg    79955 Cordie Points    53053-9055    West Virginia    2016-08-05 02:38:13.358156    2016-10-14 13:02:55.365943        \N    \N    \N    0    \N    \N    \N    \N    male
15549    Clare    Wuckert    melody@green.com    \N    Cocos (Keeling) Islands    North Vivianne    680 Rashawn Square    63924-3141    Indiana    2016-09-04 17:51:09.380352    2016-10-14 13:02:55.370127        \N    \N    \N    0    \N    \N    \N    \N    female
15550    Lucienne    Ferry    raymond@ruecker.info    \N    Indonesia    Reingerfurt    380 Nikita Island    65206    Alabama    2016-08-09 03:04:09.313954    2016-10-14 13:02:55.374673        \N    \N    \N    0    \N    \N    \N    \N    male
15551    Bennie    Jacobi    arely_gleason@quigleydoyle.co    \N    Saint Pierre and Miquelon    South Pedro    55984 Murphy Glens    66937-5970    Rhode Island    2016-07-17 06:34:41.748744    2016-10-14 13:02:55.378865        \N    \N    \N    0    \N    \N    \N    \N    female
15552    Melody    Greenholt    orval@sporerkoelpin.biz    \N    El Salvador    Jasttown    1831 Kozey Courts    48718-1914    Delaware    2016-08-17 07:42:49.91357    2016-10-14 13:02:55.382805        \N    \N    \N    0    \N    \N    \N    \N    male
15553    Zachary    Halvorson    everette@zboncakabbott.com    \N    Angola    Lake Zoey    57209 Will View    56448-1823    New Jersey    2016-09-22 02:12:12.74817    2016-10-14 13:02:55.386675        \N    \N    \N    0    \N    \N    \N    \N    female
15554    Ozella    Fay    kylie@hahn.io    \N    Thailand    New Devonte    45606 Edgar Land    29497-6473    Iowa    2016-07-17 01:33:02.334862    2016-10-14 13:02:55.390858        \N    \N    \N    0    \N    \N    \N    \N    male
15530    Eladio    West    eda@leannon.org    \N    Togo    South Brycen    462 Mathilde Plain    14512    Maine    2016-06-23 15:25:15.185273    2016-10-14 13:02:55.394826        \N    \N    \N    0    \N    \N    \N    \N    male
15518    Maximillian    Jerde    darryl@mayert.info    \N    Myanmar    South Georgianna    979 Billie Union    47070    Oklahoma    2016-09-16 08:30:31.703172    2016-10-14 13:02:55.398742        \N    \N    \N    0    \N    \N    \N    \N    female
15555    Casey    Wyman    alicia.murray@conroytremblay.name    \N    Madagascar    Herzogberg    496 Lemke Roads    74963-7474    South Dakota    2016-08-13 00:10:24.473889    2016-10-14 13:02:55.40271        \N    \N    \N    0    \N    \N    \N    \N    female
15556    Marjorie    Keebler    amari.kuvalis@schimmel.net    \N    Myanmar    Lake Chris    262 Hyman Oval    51514-4710    West Virginia    2016-07-28 16:38:15.848117    2016-10-14 13:02:55.406837        \N    \N    \N    0    \N    \N    \N    \N    male
15557    Araceli    Goldner    ashlynn.bernier@torphuel.org    \N    Congo    South Darrelville    5545 Novella Knoll    42655-3977    Delaware    2016-09-13 09:42:59.032933    2016-10-14 13:02:55.410978        \N    \N    \N    0    \N    \N    \N    \N    male
15558    Hilma    O'Keefe    kimberly@murray.name    \N    Greece    Heidenreichburgh    647 Guadalupe Brooks    63055    Wyoming    2016-07-11 02:51:10.181951    2016-10-14 13:02:55.415006        \N    \N    \N    0    \N    \N    \N    \N    male
15559    Darius    Hartmann    vance@rau.com    \N    Tanzania    Giovannaville    368 Rowena Ranch    29971-4986    Colorado    2016-07-25 15:08:27.693754    2016-10-14 13:02:55.418947        \N    \N    \N    0    \N    \N    \N    \N    female
15560    Jaida    Cronin    misael.kihn@braundaugherty.org    \N    Sweden    Andreaneburgh    198 Woodrow Gateway    27870    Massachusetts    2016-08-03 02:24:05.887994    2016-10-14 13:02:55.423068        \N    \N    \N    0    \N    \N    \N    \N    male
15561    Guy    Turcotte    ulises.mayer@goyettetromp.com    \N    Palau    Greenfelderhaven    456 Solon Burg    22324    Indiana    2016-09-20 17:46:28.845032    2016-10-14 13:02:55.427208        \N    \N    \N    0    \N    \N    \N    \N    female
15562    Jeanne    Stiedemann    rod@schuster.io    \N    Qatar    Annetteside    28793 Haag Parkways    89776    New Mexico    2016-09-11 20:51:03.90077    2016-10-14 13:02:55.431129        \N    \N    \N    0    \N    \N    \N    \N    female
15563    Marianna    Terry    sean_lakin@huelconroy.info    \N    Saint Vincent and the Grenadines    Earnestineport    991 Horace Isle    25947    Arkansas    2016-09-03 01:28:47.060241    2016-10-14 13:02:55.435002        \N    \N    \N    0    \N    \N    \N    \N    female
15564    Astrid    Champlin    remington@ortiz.org    \N    New Caledonia    West Merleview    87463 Koby Alley    83086    Vermont    2016-08-03 16:29:30.491846    2016-10-14 13:02:55.439318        \N    \N    \N    0    \N    \N    \N    \N    female
15565    Susana    Ryan    lizzie@halvorson.biz    \N    Saint Kitts and Nevis    Lake Susiehaven    6362 Kay Springs    45928    Maine    2016-07-23 18:21:08.684699    2016-10-14 13:02:55.443855        \N    \N    \N    0    \N    \N    \N    \N    male
15566    Sonny    Torp    lauren@bradtke.biz    \N    Vanuatu    East Frederikfurt    37771 Hand Bypass    77318-7624    Maine    2016-09-24 21:19:35.850346    2016-10-14 13:02:55.448353        \N    \N    \N    0    \N    \N    \N    \N    male
15567    Olin    Mayer    rubie.hyatt@quitzonblock.org    \N    Guinea    Hauckmouth    87172 Adams Harbor    93003    Georgia    2016-07-15 10:06:21.429572    2016-10-14 13:02:55.452337        \N    \N    \N    0    \N    \N    \N    \N    female
15568    Arlo    O'Hara    gladyce_haag@heathcote.info    \N    Kazakhstan    Muellerburgh    52382 Fabiola Bridge    70360    New York    2016-08-11 20:51:54.892174    2016-10-14 13:02:55.456316        \N    \N    \N    0    \N    \N    \N    \N    male
15569    Vincent    Hessel    gerson_ledner@greenfelder.info    \N    Liechtenstein    Careyview    12843 Kuvalis Street    16135-9388    Hawaii    2016-08-18 11:36:00.738516    2016-10-14 13:02:55.460414        \N    \N    \N    0    \N    \N    \N    \N    male
15570    Alana    Renner    maverick_mueller@blickrunte.io    \N    Nigeria    Lowehaven    25214 Bode Path    65598    Florida    2016-09-07 18:26:54.891927    2016-10-14 13:02:55.46437        \N    \N    \N    0    \N    \N    \N    \N    female
15571    Lela    Koch    jewel_thompson@veum.biz    \N    Tajikistan    Joshchester    9232 Mustafa Spur    31893-3161    Kansas    2016-07-31 15:21:40.280853    2016-10-14 13:02:55.468748        \N    \N    \N    0    \N    \N    \N    \N    female
15572    Kevin    Walter    christ@sipes.name    \N    Andorra    New Louvenia    8823 Luettgen Stravenue    50184-1956    New Hampshire    2016-08-19 15:08:28.767167    2016-10-14 13:02:55.472907        \N    \N    \N    0    \N    \N    \N    \N    male
15573    Otto    Jacobs    noemy@schamberger.io    \N    Timor-Leste    Ferryfurt    95253 Huels Ports    72795    Missouri    2016-07-10 15:56:01.994935    2016-10-14 13:02:55.476959        \N    \N    \N    0    \N    \N    \N    \N    male
15574    Keyshawn    Borer    ona.beer@zulauf.net    \N    Antigua and Barbuda    Lake Chancetown    27331 Okuneva Village    40180-3746    Tennessee    2016-07-11 08:44:18.010839    2016-10-14 13:02:55.484073        \N    \N    \N    0    \N    \N    \N    \N    male
15687    Lilian    Luettgen    daisha@adams.co    \N    Micronesia    Coleton    1682 Drew Stravenue    95135    South Dakota    2016-09-16 22:01:54.351981    2016-10-14 13:02:55.488435        \N    \N    \N    0    \N    \N    \N    \N    male
15575    Marcelina    Block    jazlyn.pouros@schuppe.biz    \N    Burundi    East Carolyn    750 Jaskolski Expressway    79310-8480    North Carolina    2016-09-11 05:37:28.208032    2016-10-14 13:02:55.492509        \N    \N    \N    0    \N    \N    \N    \N    female
15576    Ciara    Collins    oleta_kunze@lang.co    \N    Guinea    Emmerichburgh    384 Annamarie Stravenue    94537    Tennessee    2016-08-08 05:42:44.020492    2016-10-14 13:02:55.496399        \N    \N    \N    0    \N    \N    \N    \N    male
15577    Ada    Wiegand    milan_hirthe@mcdermott.net    \N    Bulgaria    West Noeliatown    33966 Samanta Motorway    86036-1271    Oregon    2016-08-01 03:10:48.47453    2016-10-14 13:02:55.500804        \N    \N    \N    0    \N    \N    \N    \N    male
15578    Raymundo    Wilderman    earline@homenickgrimes.co    \N    Australia    West Thurmanfort    56367 Hal Points    23870-2925    Oregon    2016-09-19 03:51:39.90653    2016-10-14 13:02:55.505792        \N    \N    \N    0    \N    \N    \N    \N    female
15579    Vivienne    Cormier    marianne@walsh.io    \N    Italy    Kutchport    6765 Grant Highway    85724    Connecticut    2016-06-25 17:33:14.674711    2016-10-14 13:02:55.510294        \N    \N    \N    0    \N    \N    \N    \N    male
15580    Wilhelmine    Kunde    oran@bosco.co    \N    Maldives    South Brettbury    487 Demetrius Cliffs    95027-0269    Pennsylvania    2016-08-07 22:03:27.351    2016-10-14 13:02:55.514749        \N    \N    \N    0    \N    \N    \N    \N    male
15581    Ima    Braun    raheem_dare@blanda.org    \N    Saint Kitts and Nevis    South Cordie    8593 Marks Port    18429    Hawaii    2016-09-19 06:04:19.865616    2016-10-14 13:02:55.519214        \N    \N    \N    0    \N    \N    \N    \N    male
15582    Cathy    Stiedemann    trycia_skiles@monahan.org    \N    Niger    Bernhardhaven    884 Kihn Summit    86100-7785    Delaware    2016-07-21 00:20:10.944351    2016-10-14 13:02:55.523639        \N    \N    \N    0    \N    \N    \N    \N    female
15583    Sandra    Kuhn    keagan@weber.org    \N    Brunei Darussalam    Larkinburgh    8249 Trantow Turnpike    73232-0102    Massachusetts    2016-07-03 16:58:39.037845    2016-10-14 13:02:55.527813        \N    \N    \N    0    \N    \N    \N    \N    female
15584    Treva    Dickinson    roie@abshirewelch.net    \N    Senegal    North Glenna    95432 Claudine Bridge    89662-4174    Vermont    2016-06-30 20:41:36.902887    2016-10-14 13:02:55.531873        \N    \N    \N    0    \N    \N    \N    \N    male
15585    Jermaine    Stroman    sonia_bogisich@buckridge.com    \N    Antarctica (the territory South of 60 deg S)    Lake Ezekiel    6922 Makayla Centers    41729    Alaska    2016-08-10 05:51:17.007871    2016-10-14 13:02:55.535992        \N    \N    \N    0    \N    \N    \N    \N    female
15586    Novella    Wintheiser    minnie@lubowitznicolas.info    \N    El Salvador    Port Theresa    6736 Glen Manors    39891-3990    Maine    2016-07-16 01:45:07.218008    2016-10-14 13:02:55.541401        \N    \N    \N    0    \N    \N    \N    \N    male
15587    Cristobal    Cassin    fern.kub@caintorphy.co    \N    Cambodia    Mrazbury    24394 Graham Expressway    14235    West Virginia    2016-06-23 22:41:23.747841    2016-10-14 13:02:55.547557        \N    \N    \N    0    \N    \N    \N    \N    male
15588    Garnett    Kunze    alta_tillman@weinat.co    \N    Pakistan    East Kalebfurt    75478 Cleo Inlet    57303    Alabama    2016-07-08 07:02:09.880995    2016-10-14 13:02:55.552658        \N    \N    \N    0    \N    \N    \N    \N    male
15589    Filomena    Wisoky    lyla@runolfsdottir.com    \N    Uruguay    Marquardtfurt    826 Beatty Mall    12535    Florida    2016-08-05 03:22:29.025055    2016-10-14 13:02:55.557993        \N    \N    \N    0    \N    \N    \N    \N    male
15590    Emery    Robel    pauline.rath@gaylord.org    \N    Lesotho    North Madysonfurt    19172 Mya Wall    23171-1823    Alabama    2016-08-09 11:25:17.004688    2016-10-14 13:02:55.562296        \N    \N    \N    0    \N    \N    \N    \N    male
15591    Kirsten    Osinski    brennon.carroll@dibbert.co    \N    United Arab Emirates    Aftonhaven    5002 Nolan Pike    46356-6262    Georgia    2016-09-08 01:22:38.350744    2016-10-14 13:02:55.575875        \N    \N    \N    0    \N    \N    \N    \N    female
15592    Casimir    Hagenes    theodore@deckow.info    \N    Rwanda    South Greta    9380 Darryl Fords    52957    Iowa    2016-08-17 13:32:26.411517    2016-10-14 13:02:55.581686        \N    \N    \N    0    \N    \N    \N    \N    male
15593    Dahlia    Pfeffer    alphonso.bergnaum@tillman.io    \N    Kiribati    Aliciahaven    7312 Leffler Trafficway    77798-1360    Virginia    2016-07-11 07:22:56.30628    2016-10-14 13:02:55.586691        \N    \N    \N    0    \N    \N    \N    \N    female
15594    Tracy    Muller    austen@kirlin.co    \N    Romania    Pacochabury    2702 Nitzsche Place    95833    Pennsylvania    2016-09-23 21:34:41.769822    2016-10-14 13:02:55.591188        \N    \N    \N    0    \N    \N    \N    \N    male
15595    Marc    VonRueden    jewell@greenholt.co    \N    Saint Helena    Thorashire    4752 May Plaza    15887-3817    Utah    2016-09-12 08:56:17.256394    2016-10-14 13:02:55.595338        \N    \N    \N    0    \N    \N    \N    \N    male
15596    Hilda    Abshire    easter@reillygreen.io    \N    Lebanon    VonRuedenton    5959 Williamson View    18635    Utah    2016-07-28 22:29:56.710085    2016-10-14 13:02:55.599453        \N    \N    \N    0    \N    \N    \N    \N    female
15598    Tyshawn    Veum    freda_toy@herzog.io    \N    Luxembourg    Ernsermouth    9639 Kertzmann Squares    52670-8325    Nebraska    2016-09-18 00:39:36.458999    2016-10-14 13:02:55.603422        \N    \N    \N    0    \N    \N    \N    \N    male
15599    Vicky    Lebsack    lillie@okunevapadberg.com    \N    Norway    Grantfort    77696 Reichel Course    93914    Nebraska    2016-08-19 23:24:34.322119    2016-10-14 13:02:55.607296        \N    \N    \N    0    \N    \N    \N    \N    male
15600    Christian    Lang    anjali.gaylord@emmerich.info    \N    Turkey    South Rocky    8246 Anderson Cove    40153    South Carolina    2016-09-01 21:57:31.687719    2016-10-14 13:02:55.611238        \N    \N    \N    0    \N    \N    \N    \N    male
15601    Zackary    Kerluke    micheal_ko@gerlachjohnson.com    \N    French Southern Territories    Terrillland    87427 Edwin Unions    51824-7176    Utah    2016-08-09 08:04:48.529765    2016-10-14 13:02:55.615306        \N    \N    \N    0    \N    \N    \N    \N    male
15602    Neha    Lind    eleanora.halvorson@lefflerkilback.net    \N    Malawi    Laishafurt    1820 Bruen Ports    24253-9630    Michigan    2016-07-26 00:06:46.516652    2016-10-14 13:02:55.61954        \N    \N    \N    0    \N    \N    \N    \N    male
15603    Claudie    Gleichner    tatum@kovacekjones.biz    \N    Afghanistan    Lake Doyleport    965 Fadel Tunnel    23751    Michigan    2016-08-16 14:33:57.94133    2016-10-14 13:02:55.623614        \N    \N    \N    0    \N    \N    \N    \N    female
15604    Cyrus    Bode    annalise_oberbrunner@hackett.org    \N    Benin    Horacefort    606 Davis Mountains    19242    West Virginia    2016-08-01 23:37:34.197172    2016-10-14 13:02:55.627591        \N    \N    \N    0    \N    \N    \N    \N    male
15605    Corene    Schuppe    vicente_fahey@sawayn.info    \N    Malta    North Marlonmouth    332 DuBuque Forks    36434    Washington    2016-09-16 04:50:17.397723    2016-10-14 13:02:55.631627        \N    \N    \N    0    \N    \N    \N    \N    female
15606    Bridget    Emmerich    sigmund.koepp@quitzonlockman.io    \N    Belgium    South Josephbury    88520 Goodwin Village    60561-3615    Arkansas    2016-07-19 17:59:04.352949    2016-10-14 13:02:55.635655        \N    \N    \N    0    \N    \N    \N    \N    female
15607    Kamren    Bode    lois_kautzer@crooks.net    \N    Malaysia    North Ansley    42134 Kessler Plaza    80231    Missouri    2016-07-12 02:24:52.801063    2016-10-14 13:02:55.639907        \N    \N    \N    0    \N    \N    \N    \N    male
15608    Serena    Erdman    felicity_hilll@mayert.org    \N    Bosnia and Herzegovina    Janessabury    6601 Harley Summit    54950-5769    Oklahoma    2016-09-24 17:46:02.532749    2016-10-14 13:02:55.644801        \N    \N    \N    0    \N    \N    \N    \N    male
15609    Cassidy    Pouros    dariana_witting@oconnell.io    \N    Lebanon    Ullrichbury    9501 Nola Well    31880    Alabama    2016-08-29 23:51:00.962899    2016-10-14 13:02:55.649345        \N    \N    \N    0    \N    \N    \N    \N    male
15610    Ruby    O'Reilly    coby@ratke.co    \N    Guernsey    Pouroshaven    29695 Dibbert Dam    66661-6221    California    2016-08-17 12:36:50.209243    2016-10-14 13:02:55.653461        \N    \N    \N    0    \N    \N    \N    \N    female
15611    Jett    Wuckert    fay.kemmer@kovacekweber.biz    \N    Martinique    Richardfurt    67923 Ladarius Grove    70734-8341    South Dakota    2016-07-13 15:25:44.319059    2016-10-14 13:02:55.65753        \N    \N    \N    0    \N    \N    \N    \N    male
15612    Brannon    Schowalter    august.towne@towne.net    \N    Comoros    New Adela    66463 Damion Pine    77673    Hawaii    2016-09-20 12:06:47.833534    2016-10-14 13:02:55.663057        \N    \N    \N    0    \N    \N    \N    \N    female
15613    Clotilde    Gleichner    adolf@keelingolson.info    \N    Sudan    Lake Hank    26054 Mitchell Bridge    50361    West Virginia    2016-09-02 21:58:39.477203    2016-10-14 13:02:55.682299        \N    \N    \N    0    \N    \N    \N    \N    female
15614    Winston    MacGyver    colten.erdman@klein.net    \N    Saint Pierre and Miquelon    West Clarechester    99429 Kayley Circles    91284    Connecticut    2016-08-13 20:49:26.432326    2016-10-14 13:02:55.686945        \N    \N    \N    0    \N    \N    \N    \N    female
15615    Zola    Waters    alec.aufderhar@herzoggreenholt.org    \N    Slovenia    Keltonmouth    1909 Maggio Brook    50953    Maryland    2016-07-01 21:09:15.553672    2016-10-14 13:02:55.692603        \N    \N    \N    0    \N    \N    \N    \N    male
15616    Claudine    Veum    vincent_windler@schumm.co    \N    Iraq    New Carmenchester    28236 Dante Island    46721-8585    Massachusetts    2016-09-01 22:08:06.503986    2016-10-14 13:02:55.696766        \N    \N    \N    0    \N    \N    \N    \N    female
15617    Noel    Lehner    candace.schulist@harris.org    \N    Cook Islands    Lake Cassie    53010 Emilio Extension    14628-8349    New York    2016-09-04 07:37:22.919546    2016-10-14 13:02:55.702546        \N    \N    \N    0    \N    \N    \N    \N    female
15618    Kasandra    Waters    alexandrea.okeefe@brekkekreiger.io    \N    Saint Vincent and the Grenadines    Wilbermouth    11858 Oberbrunner Island    34132-1970    Virginia    2016-06-29 16:01:31.516167    2016-10-14 13:02:55.723672        \N    \N    \N    0    \N    \N    \N    \N    female
15619    Randy    Kshlerin    dimitri@kuphal.net    \N    Romania    Schuppeshire    44691 Williamson Stravenue    62076    Colorado    2016-09-08 15:20:51.025205    2016-10-14 13:02:55.728155        \N    \N    \N    0    \N    \N    \N    \N    male
15620    Dean    Smith    mozelle@starkquigley.com    \N    Netherlands Antilles    East Aliya    73412 Clara Divide    75497-9718    Arizona    2016-06-27 13:02:57.475379    2016-10-14 13:02:55.732666        \N    \N    \N    0    \N    \N    \N    \N    female
15621    Sid    Simonis    rusty@baumbach.net    \N    China    Ryleyport    36719 Emmalee Throughway    94367    Colorado    2016-07-03 15:25:11.463325    2016-10-14 13:02:55.736727        \N    \N    \N    0    \N    \N    \N    \N    male
15622    Myah    Purdy    ru_crist@corwin.info    \N    Dominica    East Karleyburgh    94171 Nolan Mews    34170    Indiana    2016-08-10 15:26:31.018706    2016-10-14 13:02:55.741521        \N    \N    \N    0    \N    \N    \N    \N    female
15623    Afton    DuBuque    bryon@murray.com    \N    French Southern Territories    Breanaton    6679 Kuhn Corners    33330    Vermont    2016-08-11 15:10:00.944144    2016-10-14 13:02:55.745733        \N    \N    \N    0    \N    \N    \N    \N    female
15624    Jackeline    Daniel    holly@langoshwaters.info    \N    Samoa    North Oswald    14038 Marcel Flat    43997    Hawaii    2016-06-27 01:28:35.140748    2016-10-14 13:02:55.74991        \N    \N    \N    0    \N    \N    \N    \N    female
15625    Flo    Schumm    isobel.blick@kleinlegros.biz    \N    Kuwait    Lake Billyton    1562 Barrett Hollow    63143-9092    New York    2016-09-23 14:16:01.857858    2016-10-14 13:02:55.754463        \N    \N    \N    0    \N    \N    \N    \N    female
15626    Eladio    Schneider    ethel.lakin@jacobsonfeil.name    \N    Solomon Islands    Lake Hannahburgh    3582 Blick Fields    58386-4137    Wyoming    2016-08-24 20:21:46.200007    2016-10-14 13:02:55.759966        \N    \N    \N    0    \N    \N    \N    \N    male
15627    Marcelo    Kovacek    sarah@jaskolskimurazik.name    \N    China    Lake Ida    8125 Wiegand Pass    35445    Rhode Island    2016-07-19 09:29:44.805294    2016-10-14 13:02:55.764601        \N    \N    \N    0    \N    \N    \N    \N    female
15629    Jabari    Larson    jamir.gibson@medhurst.com    \N    Montserrat    Port Natalieport    8611 Brekke Skyway    58008    Missouri    2016-09-03 04:47:06.59209    2016-10-14 13:02:55.768852        \N    \N    \N    0    \N    \N    \N    \N    female
15630    Carmine    Dicki    geraldine@lemkerosenbaum.info    \N    Heard Island and McDonald Islands    North Wilmer    789 Frederick Mission    69972    Montana    2016-09-07 05:23:38.999381    2016-10-14 13:02:55.773539        \N    \N    \N    0    \N    \N    \N    \N    male
16085    Reyes    Satterfield    shaina@streichpredovic.org    \N    Niger    New Kevinberg    763 Garett Ford    15237    Utah    2016-09-24 13:49:58.212699    2016-10-14 13:02:55.777678        \N    \N    \N    0    \N    \N    \N    \N    male
15631    Giovanny    Kunde    vergie_flatley@jacobi.biz    \N    Saint Vincent and the Grenadines    East Lonville    2308 Chanel Station    95656    Minnesota    2016-09-07 20:43:44.037195    2016-10-14 13:02:55.782334        \N    \N    \N    0    \N    \N    \N    \N    female
15632    Shaina    Mohr    alexandrea@schulist.org    \N    Yemen    Coltenport    605 Macejkovic Via    48689    Iowa    2016-08-18 01:10:15.404004    2016-10-14 13:02:55.78704        \N    \N    \N    0    \N    \N    \N    \N    female
15633    Reece    Haag    kacie@dubuque.net    \N    Poland    New Braulio    45637 Antonetta Camp    84896    Maine    2016-09-23 17:08:44.886568    2016-10-14 13:02:55.792149        \N    \N    \N    0    \N    \N    \N    \N    male
15634    Thelma    Yundt    gail@lubowitz.org    \N    Cote d'Ivoire    East Craigfort    177 Rogahn Fields    38661-5948    West Virginia    2016-08-09 20:06:03.856072    2016-10-14 13:02:55.796883        \N    \N    \N    0    \N    \N    \N    \N    male
15635    Maribel    Gulgowski    lavina@trantow.io    \N    Cambodia    South Roxaneport    97366 Katlyn Corner    83490-8439    Oklahoma    2016-09-12 02:29:10.385437    2016-10-14 13:02:55.801533        \N    \N    \N    0    \N    \N    \N    \N    female
15636    Allison    Simonis    stella@raucarroll.net    \N    Vanuatu    Port Chloestad    4084 Harrison Mall    51334-8183    Delaware    2016-09-28 20:33:43.927783    2016-10-14 13:02:55.806073        \N    \N    \N    0    \N    \N    \N    \N    male
15637    Keyshawn    Swift    furman@pourosrice.co    \N    Senegal    Dustinton    354 Altenwerth Valleys    24796-0312    New York    2016-07-15 19:49:44.116381    2016-10-14 13:02:55.81054        \N    \N    \N    0    \N    \N    \N    \N    female
15638    Guillermo    Lowe    jude_goldner@fay.biz    \N    China    Westonview    10047 Dell Villages    82090    Washington    2016-08-14 16:04:43.35632    2016-10-14 13:02:55.824501        \N    \N    \N    0    \N    \N    \N    \N    female
15639    Grover    Hartmann    nigel@kutch.co    \N    Falkland Islands (Malvinas)    Aniyahville    47961 Berenice Prairie    16392    Montana    2016-08-01 06:30:23.916014    2016-10-14 13:02:55.829303        \N    \N    \N    0    \N    \N    \N    \N    female
15641    Pattie    Nikolaus    lorenz@paucek.net    \N    Brazil    Mullershire    987 Icie Union    11939-0077    Montana    2016-06-27 16:38:52.5173    2016-10-14 13:02:55.83453        \N    \N    \N    0    \N    \N    \N    \N    female
15642    Dominic    Wintheiser    dedric@rippin.io    \N    United States of America    West Rafael    41330 Larson Village    43707    Arizona    2016-06-27 14:21:16.467996    2016-10-14 13:02:55.839516        \N    \N    \N    0    \N    \N    \N    \N    male
15643    Sydnee    Rodriguez    victoria@gerhold.com    \N    Sao Tome and Principe    South Antonettamouth    56545 Hosea Parkway    26830    Texas    2016-09-19 17:14:47.22105    2016-10-14 13:02:55.863166        \N    \N    \N    0    \N    \N    \N    \N    male
15644    Martina    Durgan    laura@runolfsdottir.name    \N    Canada    East Alvisfort    11730 Wiza Forges    39338-2810    South Dakota    2016-07-13 01:40:30.591    2016-10-14 13:02:55.867797        \N    \N    \N    0    \N    \N    \N    \N    female
15645    Okey    Powlowski    serenity.lindgren@schambergerflatley.org    \N    Guadeloupe    West Hortenseberg    7282 Reichert Fort    72658    Nebraska    2016-07-11 05:08:53.878818    2016-10-14 13:02:55.872739        \N    \N    \N    0    \N    \N    \N    \N    male
15646    Corrine    Walsh    judge_boyer@bradtkeherzog.biz    \N    Netherlands Antilles    New Barbara    539 O'Conner Causeway    62650    Nevada    2016-06-30 10:13:04.245121    2016-10-14 13:02:55.877547        \N    \N    \N    0    \N    \N    \N    \N    male
15647    Geovanny    Trantow    noah.walter@rohanhodkiewicz.com    \N    Grenada    Alejandrastad    1309 Bode Vista    36659-7598    Wisconsin    2016-09-21 21:59:08.351148    2016-10-14 13:02:55.882283        \N    \N    \N    0    \N    \N    \N    \N    male
15648    Brannon    Denesik    margarette.weber@konopelski.io    \N    Nepal    Waynetown    244 Grady Spurs    95040    Delaware    2016-09-01 00:14:53.47913    2016-10-14 13:02:55.888047        \N    \N    \N    0    \N    \N    \N    \N    female
15649    Lyda    Block    christop@bergebruen.net    \N    Uruguay    Arnaldohaven    648 Marvin Estate    68545-5674    Kentucky    2016-06-23 08:36:04.45644    2016-10-14 13:02:55.893174        \N    \N    \N    0    \N    \N    \N    \N    male
15650    Kenya    Schiller    mabelle@homenickstroman.co    \N    Burkina Faso    Port Godfreychester    2660 Irwin Isle    22174    Colorado    2016-09-21 12:21:50.079575    2016-10-14 13:02:55.898164        \N    \N    \N    0    \N    \N    \N    \N    female
15651    Vanessa    Howe    alexandrine@skiles.biz    \N    Northern Mariana Islands    Cornellburgh    674 Electa Rue    45810-3175    Florida    2016-09-14 22:28:32.208815    2016-10-14 13:02:55.902629        \N    \N    \N    0    \N    \N    \N    \N    female
15652    Brielle    Rempel    benny@leannon.biz    \N    Turks and Caicos Islands    Port Junius    46203 Katrina Plains    14032-7653    Connecticut    2016-09-09 14:08:19.990159    2016-10-14 13:02:55.910584        \N    \N    \N    0    \N    \N    \N    \N    female
15653    Conor    Dooley    mohammed@wisokykunze.com    \N    Tunisia    New Kenya    999 Haley Light    97832-6083    South Dakota    2016-07-06 09:51:10.132811    2016-10-14 13:02:55.917199        \N    \N    \N    0    \N    \N    \N    \N    female
15654    Charlotte    Jacobi    tevin@lockman.name    \N    Hungary    Brianhaven    3216 Schmidt Lights    34715    Washington    2016-09-09 03:09:20.839231    2016-10-14 13:02:55.921888        \N    \N    \N    0    \N    \N    \N    \N    male
15655    Amara    Lockman    carolanne_howell@dickiferry.co    \N    Saudi Arabia    North Enrico    793 Lucas Square    41267-1850    Hawaii    2016-09-22 05:59:45.604153    2016-10-14 13:02:55.926251        \N    \N    \N    0    \N    \N    \N    \N    female
15656    Haley    Muller    rodrick@kozeydoyle.info    \N    Yemen    South Jaronmouth    202 Laurel Plains    24950    Louisiana    2016-07-12 18:43:26.034991    2016-10-14 13:02:55.930634        \N    \N    \N    0    \N    \N    \N    \N    female
15657    Declan    Kovacek    willow@bogan.org    \N    Maldives    Andersonfurt    86018 Torphy Shoals    87349    West Virginia    2016-07-12 06:49:47.977932    2016-10-14 13:02:55.935264        \N    \N    \N    0    \N    \N    \N    \N    female
15658    Akeem    Wisozk    maya@dietrichmraz.io    \N    United Arab Emirates    Destineymouth    3278 Romaguera Park    47756-1132    Vermont    2016-07-05 01:14:16.015357    2016-10-14 13:02:55.939824        \N    \N    \N    0    \N    \N    \N    \N    female
15659    Chase    Kihn    daisy.greenholt@okuneva.org    \N    Marshall Islands    Quigleyport    1409 Maia Locks    60954-0278    Georgia    2016-08-16 08:53:16.791039    2016-10-14 13:02:55.944217        \N    \N    \N    0    \N    \N    \N    \N    male
15660    Marty    Kohler    gonzalo@riceziemann.info    \N    Grenada    West Esmeralda    855 Brown Port    56946    Minnesota    2016-08-20 20:54:23.685649    2016-10-14 13:02:55.949192        \N    \N    \N    0    \N    \N    \N    \N    female
15661    Aditya    Bernier    herbert@flatleyconroy.io    \N    Sweden    West Londonbury    463 Predovic Glen    40154-8998    Indiana    2016-09-09 15:41:37.981121    2016-10-14 13:02:55.953578        \N    \N    \N    0    \N    \N    \N    \N    female
15662    Lonie    Miller    kayleigh@abbottcarter.co    \N    Hong Kong    South Cyrilborough    141 Stanton Skyway    69610    Alabama    2016-07-13 10:38:14.874918    2016-10-14 13:02:55.9581        \N    \N    \N    0    \N    \N    \N    \N    male
15663    Dayton    Kerluke    leonardo.kaulke@monahanhamill.biz    \N    Turks and Caicos Islands    North Bruce    532 Bell Road    65142    Utah    2016-07-08 22:43:58.955224    2016-10-14 13:02:55.962992        \N    \N    \N    0    \N    \N    \N    \N    male
15664    Jody    Grady    earline@will.net    \N    Armenia    West Sammyside    877 Drake Pine    16733-0949    West Virginia    2016-08-02 06:33:27.944861    2016-10-14 13:02:55.967532        \N    \N    \N    0    \N    \N    \N    \N    male
15665    Buddy    Kiehn    martina@robertsbuckridge.net    \N    Uganda    Boyertown    298 Pablo Green    31576    Missouri    2016-07-08 10:07:57.255231    2016-10-14 13:02:55.972583        \N    \N    \N    0    \N    \N    \N    \N    female
15666    Amelie    Connelly    lillian_swaniawski@collins.co    \N    Lebanon    Lake Geoffreyfort    162 Turcotte Brook    41201    Florida    2016-07-13 19:15:10.863643    2016-10-14 13:02:55.97731        \N    \N    \N    0    \N    \N    \N    \N    male
15667    Alexis    Stanton    tabitha@robel.name    \N    Mauritania    Melvinachester    9162 Caleb Loaf    31251    New York    2016-09-11 08:04:53.339062    2016-10-14 13:02:55.982023        \N    \N    \N    0    \N    \N    \N    \N    male
15668    Nathanael    Russel    enoch@gerlach.biz    \N    Luxembourg    West Levibury    9956 Stoltenberg Bypass    76906    Virginia    2016-06-26 10:16:25.887624    2016-10-14 13:02:55.98679        \N    \N    \N    0    \N    \N    \N    \N    male
15669    Loy    Harris    coty@gaylordkihn.org    \N    Lesotho    West Daleview    569 Hoppe Lodge    69538-0291    Rhode Island    2016-06-24 14:27:44.131691    2016-10-14 13:02:55.991209        \N    \N    \N    0    \N    \N    \N    \N    male
15670    Rosamond    Crooks    mellie.mclaughlin@boyle.io    \N    Uganda    Port Eulafort    17855 Buster Mountains    15077-1482    Louisiana    2016-08-21 15:58:10.018888    2016-10-14 13:02:55.995604        \N    \N    \N    0    \N    \N    \N    \N    male
15671    Susie    D'Amore    anais@boyer.co    \N    Grenada    Jaylinborough    55426 Annalise Crescent    43505-7377    Oklahoma    2016-07-15 04:32:26.548204    2016-10-14 13:02:56.000599        \N    \N    \N    0    \N    \N    \N    \N    female
19186    Orville    Walter    ellis@rodriguez.co    \N    Qatar    North Sage    881 Labadie Loaf    43754-7668    Iowa    2016-08-21 08:31:49.540586    2016-10-14 13:02:56.005619        \N    \N    \N    0    \N    \N    \N    \N    male
16976    Zachary    Wyman    kenneth@ohara.biz    \N    Aruba    Donniefurt    3220 Raul Skyway    79354-7315    Missouri    2016-06-30 05:23:10.493287    2016-10-14 13:02:56.010708        \N    \N    \N    0    \N    \N    \N    \N    female
15673    Madonna    Eichmann    werner@emmerich.io    \N    Japan    Hodkiewiczfurt    5547 Connelly Lake    10163-6931    West Virginia    2016-08-02 02:46:05.183275    2016-10-14 13:02:56.015175        \N    \N    \N    0    \N    \N    \N    \N    female
15674    Kiara    Frami    eveline@oconnellberge.info    \N    Palau    Joanyhaven    70138 Wintheiser Common    78495    Maine    2016-08-25 05:40:32.41451    2016-10-14 13:02:56.019339        \N    \N    \N    0    \N    \N    \N    \N    male
15675    Dovie    Metz    peggie.ullrich@parisian.io    \N    Malaysia    Port Jovani    53401 Shania Vista    50803-7545    Washington    2016-09-03 12:46:57.8479    2016-10-14 13:02:56.023613        \N    \N    \N    0    \N    \N    \N    \N    female
15676    Jaycee    Hayes    carolanne_yundt@daugherty.co    \N    Uganda    Port Frankie    201 Murazik Trace    29668-1106    Washington    2016-08-20 13:02:31.049357    2016-10-14 13:02:56.029189        \N    \N    \N    0    \N    \N    \N    \N    male
15677    Clyde    Russel    murl.hoppe@hermiston.name    \N    Dominican Republic    Port Alexzandermouth    5036 Rene Walk    41428-1445    Illinois    2016-09-18 16:26:41.35501    2016-10-14 13:02:56.034674        \N    \N    \N    0    \N    \N    \N    \N    male
15678    Garfield    Gutkowski    osbaldo_aufderhar@barton.io    \N    United Arab Emirates    West Edmond    294 Geovanni Inlet    61064    Hawaii    2016-09-19 00:19:40.547783    2016-10-14 13:02:56.039025        \N    \N    \N    0    \N    \N    \N    \N    male
15679    Denis    Donnelly    virgie@jacobs.org    \N    Cambodia    Lake Xavierchester    75309 Ullrich Road    51401-8614    Texas    2016-06-26 16:53:06.653649    2016-10-14 13:02:56.043312        \N    \N    \N    0    \N    \N    \N    \N    female
15680    Anika    Haley    joel@koch.co    \N    Israel    New Willard    378 Benedict Port    65211-1346    Mississippi    2016-08-24 21:39:29.595754    2016-10-14 13:02:56.047553        \N    \N    \N    0    \N    \N    \N    \N    female
15681    Jamal    Kulas    roscoe.olson@fay.io    \N    Moldova    Mitchellstad    8003 Marilou Pass    13559-1645    Illinois    2016-07-30 06:08:50.869144    2016-10-14 13:02:56.051967        \N    \N    \N    0    \N    \N    \N    \N    male
15682    Troy    Stoltenberg    nelle.emard@armstrongharris.info    \N    Pitcairn Islands    Carrollshire    9592 Delfina Plaza    16633    Wisconsin    2016-08-08 08:22:00.200074    2016-10-14 13:02:56.056773        \N    \N    \N    0    \N    \N    \N    \N    female
15683    Branson    Littel    edyth@boylewehner.net    \N    Republic of Korea    South Britney    153 Corwin Passage    46562    Texas    2016-09-17 14:43:53.893555    2016-10-14 13:02:56.061578        \N    \N    \N    0    \N    \N    \N    \N    male
15684    Roman    Hoeger    lyda@reilly.info    \N    Tokelau    Predovicburgh    63442 Goyette Lodge    37439-8605    Oklahoma    2016-08-06 20:29:45.488652    2016-10-14 13:02:56.066046        \N    \N    \N    0    \N    \N    \N    \N    male
15685    Norris    Schuppe    kale.mills@simonis.info    \N    Italy    Alexiefurt    53430 Padberg Brooks    30394    Michigan    2016-08-16 11:14:21.267602    2016-10-14 13:02:56.070335        \N    \N    \N    0    \N    \N    \N    \N    male
15686    Zechariah    Sanford    meda@kundezemlak.biz    \N    Netherlands Antilles    Skilesmouth    4831 Kirlin Rue    86024    Oklahoma    2016-09-18 20:21:23.656515    2016-10-14 13:02:56.074329        \N    \N    \N    0    \N    \N    \N    \N    female
15688    Aubrey    Macejkovic    dorris@smith.co    \N    Equatorial Guinea    New Marianaton    90129 Francesco Loaf    32510    Texas    2016-08-11 06:04:50.056492    2016-10-14 13:02:56.078691        \N    \N    \N    0    \N    \N    \N    \N    male
15689    Dell    DuBuque    mariano.kuphal@reinger.org    \N    Antarctica (the territory South of 60 deg S)    Ginochester    959 Schinner Branch    10229-3001    Vermont    2016-08-01 14:37:40.657801    2016-10-14 13:02:56.083215        \N    \N    \N    0    \N    \N    \N    \N    female
15690    Carson    DuBuque    alexandro@welch.com    \N    Yemen    Harveyton    7143 Pfeffer Estate    89323    Oregon    2016-08-23 01:49:16.735479    2016-10-14 13:02:56.087439        \N    \N    \N    0    \N    \N    \N    \N    female
15691    Clair    Pacocha    will@oreillyconnelly.name    \N    Iran    South Morgan    77970 Hudson Locks    32475    West Virginia    2016-08-27 16:12:56.374829    2016-10-14 13:02:56.091671        \N    \N    \N    0    \N    \N    \N    \N    male
15692    Hillary    Jacobs    ceasar_ankunding@emmerichrice.biz    \N    Brazil    Turnerstad    245 Kaleigh Courts    82160-2149    Vermont    2016-07-22 11:14:42.447519    2016-10-14 13:02:56.096281        \N    \N    \N    0    \N    \N    \N    \N    male
15693    Kristian    Miller    vivien@feilbogan.com    \N    Zimbabwe    Port Marcosborough    473 Swift Ramp    40551    Delaware    2016-08-13 07:13:47.961926    2016-10-14 13:02:56.100615        \N    \N    \N    0    \N    \N    \N    \N    female
16163    Lavina    Kuhlman    gregoria@yost.biz    \N    Jamaica    Wizahaven    247 Reilly Causeway    61983    Oregon    2016-09-03 01:39:42.032569    2016-10-14 13:02:58.441707        \N    \N    \N    0    \N    \N    \N    \N    female
15694    Albin    Schuppe    judy_tremblay@harris.net    \N    United Arab Emirates    West Agustinstad    37916 Kihn Coves    29174-9359    Louisiana    2016-07-18 09:15:30.594251    2016-10-14 13:02:56.10514        \N    \N    \N    0    \N    \N    \N    \N    male
15835    Aletha    Halvorson    zetta@kihn.org    \N    Gambia    Howechester    4223 Rodriguez Hills    33896    Oregon    2016-07-13 05:01:15.602963    2016-10-14 13:02:56.73029        \N    \N    \N    0    \N    \N    \N    \N    female
15695    Deangelo    Stehr    wellington.pouros@ullrich.org    \N    Isle of Man    Brekketown    91840 Barrows Dam    12136    Rhode Island    2016-08-28 07:36:19.350813    2016-10-14 13:02:56.110186        \N    \N    \N    0    \N    \N    \N    \N    female
15696    Cristopher    Maggio    ed@lemke.biz    \N    Belize    North Tessberg    7519 Sofia Stravenue    99533-4728    Maryland    2016-06-23 18:56:50.685349    2016-10-14 13:02:56.114962        \N    \N    \N    0    \N    \N    \N    \N    female
15697    Raquel    Predovic    billy@schiller.biz    \N    Montserrat    South Justenbury    536 Lowell Square    38431    Minnesota    2016-07-22 19:25:05.952287    2016-10-14 13:02:56.119533        \N    \N    \N    0    \N    \N    \N    \N    female
15698    Mara    Weimann    freeman@anderson.org    \N    Jersey    East Eloyport    776 Kassulke Bridge    41460-7598    Connecticut    2016-08-31 19:13:53.353784    2016-10-14 13:02:56.123853        \N    \N    \N    0    \N    \N    \N    \N    female
15699    Ike    Turcotte    sierra.rempel@jast.info    \N    Guam    Rutherfordfort    6593 Jaiden Gardens    79062-1882    Wyoming    2016-08-29 13:18:30.107458    2016-10-14 13:02:56.128441        \N    \N    \N    0    \N    \N    \N    \N    male
15700    Ozzie    Abbott    alejandrin@dach.io    \N    Dominican Republic    Karelletown    8649 Kuphal Corners    21571-0889    Georgia    2016-06-30 08:55:30.833264    2016-10-14 13:02:56.132928        \N    \N    \N    0    \N    \N    \N    \N    female
15701    Perry    McClure    sister.keebler@luettgen.com    \N    Guadeloupe    Ernserfurt    6928 Feest Vista    64654-2576    Delaware    2016-09-27 02:26:41.844599    2016-10-14 13:02:56.137138        \N    \N    \N    0    \N    \N    \N    \N    male
15702    Roosevelt    Kerluke    giovani@torphy.name    \N    Nigeria    North Mohamedshire    204 Alvera Extensions    47179-7481    North Dakota    2016-09-12 10:34:06.357446    2016-10-14 13:02:56.141676        \N    \N    \N    0    \N    \N    \N    \N    female
15703    Francisca    Kozey    edgar.raynor@pouros.net    \N    Jordan    East Marcelle    12733 Will Coves    39546-4496    Iowa    2016-08-04 18:40:21.549973    2016-10-14 13:02:56.145927        \N    \N    \N    0    \N    \N    \N    \N    female
15704    Carley    Trantow    carolyne_watsica@reinger.org    \N    Greece    Framifort    148 Corkery Keys    47939-2580    Arizona    2016-09-04 11:56:52.526471    2016-10-14 13:02:56.150047        \N    \N    \N    0    \N    \N    \N    \N    female
15705    Floyd    Bins    orville_spinka@huel.net    \N    Trinidad and Tobago    Abbottview    95986 Lubowitz Mills    87338-4376    Oregon    2016-07-15 02:45:58.131434    2016-10-14 13:02:56.154393        \N    \N    \N    0    \N    \N    \N    \N    female
15706    Modesto    Schmeler    robb.prosacco@vandervort.info    \N    French Southern Territories    Port Hans    73790 Gregoria Branch    52670    Rhode Island    2016-09-01 05:42:33.172554    2016-10-14 13:02:56.158575        \N    \N    \N    0    \N    \N    \N    \N    female
15707    Arden    Paucek    vilma@lockman.co    \N    South Africa    South Marinamouth    907 Jacobs Fords    46883-5812    Rhode Island    2016-08-07 08:25:34.105535    2016-10-14 13:02:56.162879        \N    \N    \N    0    \N    \N    \N    \N    female
15708    Dalton    Mayert    marianne@nicolasbrown.biz    \N    Latvia    Schinnerbury    154 Garrett Rapid    21548-5412    Idaho    2016-07-25 20:07:26.334373    2016-10-14 13:02:56.167212        \N    \N    \N    0    \N    \N    \N    \N    male
15709    Shany    Carter    luther.douglas@hermann.com    \N    Kazakhstan    East Hugh    7134 Friesen Street    68287    Delaware    2016-07-14 09:36:12.323429    2016-10-14 13:02:56.171321        \N    \N    \N    0    \N    \N    \N    \N    female
15710    Elenor    Murray    aubree_beier@damore.info    \N    Haiti    Yundtfort    505 Jenkins Plaza    50674-6049    South Carolina    2016-06-29 05:59:51.267725    2016-10-14 13:02:56.175811        \N    \N    \N    0    \N    \N    \N    \N    female
15711    Adelia    Anderson    brad@nienow.io    \N    Indonesia    Lake Arnoldo    8531 Fletcher Rapids    34256    Washington    2016-07-08 05:18:56.991316    2016-10-14 13:02:56.180305        \N    \N    \N    0    \N    \N    \N    \N    female
15712    Mireille    Williamson    domenick.schaden@wolf.com    \N    Morocco    Jenningsfort    599 Misty Pine    24493-8240    Washington    2016-09-17 06:39:53.514689    2016-10-14 13:02:56.184377        \N    \N    \N    0    \N    \N    \N    \N    female
15713    Sandra    Mitchell    kaycee@sipes.info    \N    Oman    Kuvalisshire    94200 Wilton Parks    65731-8487    Wyoming    2016-06-26 07:54:40.165586    2016-10-14 13:02:56.188758        \N    \N    \N    0    \N    \N    \N    \N    male
15714    Estel    Olson    betsy.damore@mckenzie.com    \N    Niue    Lexiside    21960 Carroll Viaduct    33793    Nebraska    2016-09-21 10:47:30.500573    2016-10-14 13:02:56.193326        \N    \N    \N    0    \N    \N    \N    \N    female
15715    Wyman    Waelchi    donna.stroman@gaylord.com    \N    Angola    Port Everettemouth    76017 Reina Place    27599-0611    Alabama    2016-07-02 16:44:50.671303    2016-10-14 13:02:56.197614        \N    \N    \N    0    \N    \N    \N    \N    male
15716    Karl    Jakubowski    arch_considine@abbottlarkin.co    \N    Saudi Arabia    East Elliot    45444 Mara Shores    91651    Connecticut    2016-06-27 03:33:33.153222    2016-10-14 13:02:56.201993        \N    \N    \N    0    \N    \N    \N    \N    male
15718    Finn    Ward    cathrine_mosciski@beatty.net    \N    Jordan    Lake Evansview    26718 Edna Estates    95584    North Dakota    2016-08-12 07:04:34.70353    2016-10-14 13:02:56.206067        \N    \N    \N    0    \N    \N    \N    \N    female
15719    Jacquelyn    Eichmann    donato@gerlach.org    \N    Estonia    South Aidamouth    61824 Kacie Canyon    72081-1746    Massachusetts    2016-07-03 12:06:59.023343    2016-10-14 13:02:56.210458        \N    \N    \N    0    \N    \N    \N    \N    female
15720    Dusty    Gerhold    camden@farrell.name    \N    Burkina Faso    Lake Wilburn    66946 Thalia Bypass    87506-3768    Virginia    2016-07-26 14:16:20.505692    2016-10-14 13:02:56.214731        \N    \N    \N    0    \N    \N    \N    \N    male
15721    Novella    Bergnaum    ollie@considine.biz    \N    Gibraltar    Cleoview    39697 Gleichner Roads    60703    Delaware    2016-08-31 00:27:14.447827    2016-10-14 13:02:56.218748        \N    \N    \N    0    \N    \N    \N    \N    male
15722    Sydney    Bergstrom    tamia.okeefe@schultz.info    \N    Norway    Pacochafurt    35696 Kunze Harbor    37273-2284    Nevada    2016-07-09 15:14:46.709173    2016-10-14 13:02:56.223001        \N    \N    \N    0    \N    \N    \N    \N    female
15723    Amos    Stokes    mohammed@macejkovic.co    \N    Niue    New Hershelmouth    6140 Schneider Spring    92062-2345    Georgia    2016-07-08 14:01:22.672582    2016-10-14 13:02:56.22724        \N    \N    \N    0    \N    \N    \N    \N    male
15724    Junius    Nicolas    justina_ko@kuhic.biz    \N    Ghana    West Loyaltown    969 Hermann Inlet    66350    South Dakota    2016-09-10 01:45:58.480195    2016-10-14 13:02:56.231194        \N    \N    \N    0    \N    \N    \N    \N    female
15725    Margarita    Blick    ona@lubowitz.biz    \N    Kuwait    Lake Malcolmmouth    959 Marks Forge    48605-1238    New Jersey    2016-08-27 23:14:45.426011    2016-10-14 13:02:56.235233        \N    \N    \N    0    \N    \N    \N    \N    male
15726    Caterina    Gutkowski    amani@kuvalis.io    \N    Montenegro    Casandramouth    9171 Tessie Crest    27791-2279    North Carolina    2016-07-29 10:24:26.219718    2016-10-14 13:02:56.23929        \N    \N    \N    0    \N    \N    \N    \N    female
15727    Chadd    Bernhard    sharon.wolf@lebsackbednar.co    \N    Bouvet Island (Bouvetoya)    Port Gregorio    4226 Collins Passage    29317-6606    Georgia    2016-08-18 23:03:40.389621    2016-10-14 13:02:56.243239        \N    \N    \N    0    \N    \N    \N    \N    male
15728    Gilda    Adams    maryam.mckenzie@dietrichdicki.co    \N    Christmas Island    Websterton    220 Claudine Lodge    44687-1883    North Carolina    2016-08-12 01:24:50.565432    2016-10-14 13:02:56.247454        \N    \N    \N    0    \N    \N    \N    \N    female
15729    Dangelo    Stamm    sabrina_kuhn@herman.org    \N    Serbia    Ankundingtown    428 Russel Islands    44019-0482    Minnesota    2016-08-03 03:20:18.540333    2016-10-14 13:02:56.251696        \N    \N    \N    0    \N    \N    \N    \N    male
15730    America    Herzog    jeramy@damore.biz    \N    Uzbekistan    Philipborough    464 Leonardo Cliff    62798    New Jersey    2016-08-09 19:56:22.879809    2016-10-14 13:02:56.255852        \N    \N    \N    0    \N    \N    \N    \N    male
15731    Lois    Kovacek    kacey_west@paucekfadel.co    \N    Grenada    Gleasonfurt    8533 Johns Light    61576    Nebraska    2016-08-07 01:05:15.339398    2016-10-14 13:02:56.260139        \N    \N    \N    0    \N    \N    \N    \N    male
15732    Margret    Olson    akeem@hagenes.org    \N    Montserrat    Magnoliachester    34243 Hoppe Course    95563-6919    Arkansas    2016-09-16 11:02:44.449412    2016-10-14 13:02:56.264226        \N    \N    \N    0    \N    \N    \N    \N    female
15733    Shayna    Jast    ezekiel@halvorson.biz    \N    Saint Vincent and the Grenadines    Judsonfort    5392 Schuppe Lights    68528-7490    Oregon    2016-08-13 21:11:31.796348    2016-10-14 13:02:56.268282        \N    \N    \N    0    \N    \N    \N    \N    male
15734    Walker    Beier    adolfo.koelpin@champlin.name    \N    Bosnia and Herzegovina    West Madelynn    84726 Konopelski Common    52669    Ohio    2016-09-25 14:02:01.582232    2016-10-14 13:02:56.272283        \N    \N    \N    0    \N    \N    \N    \N    male
15735    Lizzie    Beahan    teagan@mcglynnromaguera.biz    \N    Cook Islands    Parkerville    41519 Weston Fork    91843-1780    South Dakota    2016-08-30 21:13:36.283405    2016-10-14 13:02:56.276495        \N    \N    \N    0    \N    \N    \N    \N    male
15736    Amber    Bernier    ofelia_christiansen@kuphalkoelpin.com    \N    Thailand    Mariemouth    936 Prosacco Plains    49815    Wyoming    2016-09-16 17:29:37.180192    2016-10-14 13:02:56.280585        \N    \N    \N    0    \N    \N    \N    \N    female
15737    Mara    Reichert    jewel.mosciski@baumbach.io    \N    Barbados    East Javier    71782 Alize Parkway    23205    Alaska    2016-08-28 15:19:46.570345    2016-10-14 13:02:56.284592        \N    \N    \N    0    \N    \N    \N    \N    male
15738    Sasha    Hoeger    alexis_dickens@wilkinson.info    \N    Haiti    Binsshire    691 Kuhn Valley    68454    Utah    2016-09-29 06:22:54.146483    2016-10-14 13:02:56.288627        \N    \N    \N    0    \N    \N    \N    \N    female
15739    Selena    Wilkinson    terrance.kuvalis@botsford.info    \N    Spain    North Allene    604 Klocko Estate    39401-4585    Wyoming    2016-07-07 04:47:36.817597    2016-10-14 13:02:56.292734        \N    \N    \N    0    \N    \N    \N    \N    male
15740    Martin    Prohaska    caden_douglas@pagac.co    \N    Mozambique    Port Jaleeltown    4366 Walker Circle    29424-9147    New York    2016-09-13 02:40:00.261602    2016-10-14 13:02:56.296719        \N    \N    \N    0    \N    \N    \N    \N    male
15741    Vern    Predovic    whitney.parisian@koepp.co    \N    Egypt    Schinnerchester    32129 Saige Unions    30871    North Dakota    2016-09-15 13:49:25.155622    2016-10-14 13:02:56.300864        \N    \N    \N    0    \N    \N    \N    \N    female
15743    Althea    Koch    wilfredo_gutkowski@bartelllindgren.net    \N    Rwanda    Shieldsshire    637 Diana Falls    88671-0381    North Dakota    2016-06-22 14:07:18.146619    2016-10-14 13:02:56.308932        \N    \N    \N    0    \N    \N    \N    \N    male
15744    Lowell    Kub    mateo@batznitzsche.name    \N    Liechtenstein    Donnellyside    4133 Mara Mill    42879-6865    North Dakota    2016-07-14 13:06:01.635617    2016-10-14 13:02:56.313226        \N    \N    \N    0    \N    \N    \N    \N    male
15745    Nedra    Ward    sim_dooley@huelsconnelly.info    \N    Gambia    West Robbieton    6235 Mraz Street    61008    Wisconsin    2016-09-24 18:51:54.6299    2016-10-14 13:02:56.317456        \N    \N    \N    0    \N    \N    \N    \N    male
15746    Olaf    Upton    ophelia.weimann@homenick.biz    \N    Jamaica    Anahichester    809 Mae Port    94597-9009    Utah    2016-09-17 08:26:25.169413    2016-10-14 13:02:56.321588        \N    \N    \N    0    \N    \N    \N    \N    female
15747    Enos    Durgan    leta_cole@hoeger.co    \N    Turkmenistan    Dorothytown    73868 Ashleigh Squares    13826    Hawaii    2016-08-23 20:47:40.632863    2016-10-14 13:02:56.32553        \N    \N    \N    0    \N    \N    \N    \N    male
15748    Thalia    Wiegand    meredith@romaguera.net    \N    Austria    Tomaston    9684 Alene Villages    15128-4183    Vermont    2016-06-23 14:44:06.69773    2016-10-14 13:02:56.330359        \N    \N    \N    0    \N    \N    \N    \N    female
15749    Jayson    Halvorson    leta@feildurgan.net    \N    Switzerland    West Coraburgh    92243 Johnathan Port    35480    Wyoming    2016-07-19 06:21:35.411172    2016-10-14 13:02:56.334543        \N    \N    \N    0    \N    \N    \N    \N    female
15750    Alfonzo    Krajcik    beulah_thompson@kutch.io    \N    Antarctica (the territory South of 60 deg S)    Janessaton    66511 Wuckert Vista    17884    Minnesota    2016-06-24 21:56:35.520243    2016-10-14 13:02:56.338613        \N    \N    \N    0    \N    \N    \N    \N    male
15751    Markus    Raynor    jena@schimmel.info    \N    Nauru    Lorenzville    25841 Conn Locks    36439-9711    Washington    2016-09-26 07:49:12.785585    2016-10-14 13:02:56.342798        \N    \N    \N    0    \N    \N    \N    \N    male
15752    Oswald    Cummerata    daniela@beier.io    \N    Tonga    Bradtkebury    12667 Terrance Port    95835    Connecticut    2016-09-26 08:09:44.789371    2016-10-14 13:02:56.347607        \N    \N    \N    0    \N    \N    \N    \N    female
15753    Noah    Kerluke    elijah_zulauf@stromankohler.org    \N    Kiribati    Derekville    16704 Baumbach Ridges    36838-9088    Missouri    2016-08-27 08:55:16.105868    2016-10-14 13:02:56.351996        \N    \N    \N    0    \N    \N    \N    \N    male
15754    Hertha    Altenwerth    linnea_bruen@borer.io    \N    Djibouti    New Amara    787 Turcotte Way    46262-2571    Texas    2016-09-15 17:19:21.697647    2016-10-14 13:02:56.356536        \N    \N    \N    0    \N    \N    \N    \N    male
15755    Domenic    Kulas    macey@pagac.biz    \N    Botswana    West Logan    48907 Schaden Lake    70830-6369    South Carolina    2016-06-30 10:30:45.960449    2016-10-14 13:02:56.361        \N    \N    \N    0    \N    \N    \N    \N    male
15756    Breana    Kihn    dixie@pollich.info    \N    Moldova    Hyattton    254 Austen Ranch    96232    Kentucky    2016-09-09 11:39:28.215886    2016-10-14 13:02:56.365778        \N    \N    \N    0    \N    \N    \N    \N    female
15757    Timothy    Block    michale.emmerich@waters.name    \N    Saint Vincent and the Grenadines    Nikkiview    4456 Elouise Ridge    39801    Ohio    2016-09-03 00:18:39.030821    2016-10-14 13:02:56.370802        \N    \N    \N    0    \N    \N    \N    \N    male
15758    Ivory    Waters    alford@bechtelar.co    \N    El Salvador    Medhurstton    1106 Koss Circle    15674    North Carolina    2016-07-02 19:37:23.057545    2016-10-14 13:02:56.375893        \N    \N    \N    0    \N    \N    \N    \N    male
15759    May    Abernathy    alden.stiedemann@hermann.org    \N    Tonga    Karelleton    60128 Shirley Ville    61515-2848    New Jersey    2016-09-02 21:40:39.091943    2016-10-14 13:02:56.380939        \N    \N    \N    0    \N    \N    \N    \N    male
15760    Nicolas    Beer    verna@kertzmannrath.net    \N    Luxembourg    Rolfsonfurt    8281 Parisian Radial    39340    Arkansas    2016-07-27 15:31:31.248965    2016-10-14 13:02:56.385754        \N    \N    \N    0    \N    \N    \N    \N    male
15761    David    Weimann    hollie@howe.com    \N    United Arab Emirates    Bernhardbury    761 Karlee Grove    85147    Oklahoma    2016-07-18 16:56:35.395407    2016-10-14 13:02:56.390511        \N    \N    \N    0    \N    \N    \N    \N    male
15762    Dillon    Sauer    taya@donnelly.io    \N    Philippines    Elouisechester    30626 Misty Ford    39925-0366    Georgia    2016-07-18 16:33:33.322861    2016-10-14 13:02:56.394764        \N    \N    \N    0    \N    \N    \N    \N    female
15763    Dexter    Sauer    kody@parker.net    \N    Sri Lanka    West Gilberto    26618 Wiza Corner    19358-5391    Oklahoma    2016-08-18 05:23:04.442349    2016-10-14 13:02:56.398986        \N    \N    \N    0    \N    \N    \N    \N    female
15764    Era    Satterfield    gillian@huel.name    \N    Palau    East Kamryn    7814 Jerde Turnpike    41990-6019    Utah    2016-07-04 16:28:26.666991    2016-10-14 13:02:56.404037        \N    \N    \N    0    \N    \N    \N    \N    female
15765    Raymond    Schowalter    precious@sawayn.co    \N    Guinea    Marksfort    147 Lehner Estates    92543-8438    Kansas    2016-09-26 22:18:52.625047    2016-10-14 13:02:56.40901        \N    \N    \N    0    \N    \N    \N    \N    male
15766    Verner    Jones    jennifer_langosh@abernathysanford.com    \N    Mozambique    Kirstenville    230 Addison Extensions    27003-0806    New York    2016-08-02 03:19:54.462099    2016-10-14 13:02:56.413382        \N    \N    \N    0    \N    \N    \N    \N    male
15767    Diana    Witting    lindsay.prosacco@strackeschiller.biz    \N    Jersey    Powlowskifort    7082 Runolfsson Summit    90089    Vermont    2016-07-13 03:09:14.31864    2016-10-14 13:02:56.417875        \N    \N    \N    0    \N    \N    \N    \N    female
15768    Norbert    Bashirian    katharina@gleichner.info    \N    Russian Federation    South Estefania    222 Eliane Creek    59012-0551    Wisconsin    2016-08-07 10:43:41.510813    2016-10-14 13:02:56.424561        \N    \N    \N    0    \N    \N    \N    \N    female
15769    Fleta    Quitzon    casimer@lynch.com    \N    Georgia    Klockoberg    940 Mueller Ways    66508-2422    Iowa    2016-09-12 09:06:45.758987    2016-10-14 13:02:56.428778        \N    \N    \N    0    \N    \N    \N    \N    male
15770    Rigoberto    Stracke    willow@brown.net    \N    Saint Pierre and Miquelon    Lake Stephaniaton    23858 Warren Inlet    25007-2759    Utah    2016-08-19 13:40:20.094928    2016-10-14 13:02:56.434398        \N    \N    \N    0    \N    \N    \N    \N    male
15771    Harold    Metz    meta_leuschke@abbott.biz    \N    Mauritius    East Derrickmouth    41682 Hilll Street    12653    Oklahoma    2016-07-02 22:55:43.917392    2016-10-14 13:02:56.438448        \N    \N    \N    0    \N    \N    \N    \N    female
15772    Ezra    Hamill    krystel_marvin@crist.com    \N    Spain    Birdiebury    82599 Blanca Forks    60875    Connecticut    2016-09-13 14:17:46.891973    2016-10-14 13:02:56.442823        \N    \N    \N    0    \N    \N    \N    \N    male
15773    Elza    Mueller    arvel.reichel@fritschmarvin.net    \N    Georgia    North Jerad    7752 Ernestina Brooks    43004-1260    Oregon    2016-08-11 17:50:24.554303    2016-10-14 13:02:56.446861        \N    \N    \N    0    \N    \N    \N    \N    male
15774    Ryder    Metz    einar@homenickjerde.biz    \N    Svalbard & Jan Mayen Islands    Loganshire    4921 Mckenna Land    15879    Nevada    2016-08-26 08:41:18.908395    2016-10-14 13:02:56.450946        \N    \N    \N    0    \N    \N    \N    \N    male
15775    Edyth    Cummerata    hannah_greenfelder@greenfelder.name    \N    Aruba    New Chaddville    627 Maia Loaf    55028-3390    Connecticut    2016-08-10 05:45:59.461786    2016-10-14 13:02:56.457986        \N    \N    \N    0    \N    \N    \N    \N    male
15776    Vicenta    Bednar    petra@jacobsonkunde.co    \N    Dominica    East Ethelyn    59966 Rath Trafficway    74289    Wisconsin    2016-07-06 09:13:41.543331    2016-10-14 13:02:56.464149        \N    \N    \N    0    \N    \N    \N    \N    female
15777    Geoffrey    Reinger    bernardo_thiel@kemmer.co    \N    El Salvador    Lake Rozellafurt    7327 O'Hara Mountain    39223-2490    Iowa    2016-07-27 09:09:48.776935    2016-10-14 13:02:56.468604        \N    \N    \N    0    \N    \N    \N    \N    female
15778    Cleo    Pfeffer    dayne_runte@okeefe.co    \N    Slovenia    South Allen    7945 Buckridge Mill    96419-6511    Vermont    2016-08-22 22:39:40.173108    2016-10-14 13:02:56.472842        \N    \N    \N    0    \N    \N    \N    \N    male
15779    Buford    Conroy    chadd@klein.name    \N    Hong Kong    Schowalterside    3439 Jena Lane    97326-4105    Nevada    2016-09-22 19:01:26.376859    2016-10-14 13:02:56.477401        \N    \N    \N    0    \N    \N    \N    \N    male
15780    Enos    Koss    paul.keeling@schoenolson.co    \N    Brazil    West Glenport    497 Swift Turnpike    56292-1923    Massachusetts    2016-09-21 11:11:10.044719    2016-10-14 13:02:56.481528        \N    \N    \N    0    \N    \N    \N    \N    male
15781    Yasmeen    Bahringer    melyna_bartell@zemlakolson.co    \N    Sri Lanka    Kennithberg    217 Liam Crescent    40998    Iowa    2016-09-07 23:04:38.761525    2016-10-14 13:02:56.485923        \N    \N    \N    0    \N    \N    \N    \N    male
15782    Brook    Corwin    darrion@bauchhowe.co    \N    Nauru    Gutkowskiburgh    64163 Koelpin Stravenue    74814    Washington    2016-08-02 15:28:18.058192    2016-10-14 13:02:56.49024        \N    \N    \N    0    \N    \N    \N    \N    male
15783    Thelma    Friesen    elnora_stracke@kozeyrolfson.co    \N    Antigua and Barbuda    Arturoburgh    91799 Kobe Manor    15774-8336    Massachusetts    2016-06-27 21:11:00.031621    2016-10-14 13:02:56.495269        \N    \N    \N    0    \N    \N    \N    \N    female
15784    Kelsi    Ryan    reba.runolfon@frami.com    \N    Seychelles    Reicherttown    66015 Cecile Station    74251    Nebraska    2016-08-08 02:11:41.689013    2016-10-14 13:02:56.500576        \N    \N    \N    0    \N    \N    \N    \N    male
15785    Erin    Legros    darrel@kilbackferry.com    \N    Cayman Islands    Lake Elise    369 Destinee Mission    37627    Georgia    2016-08-19 09:20:02.107566    2016-10-14 13:02:56.5072        \N    \N    \N    0    \N    \N    \N    \N    male
15787    Jalyn    Rogahn    edythe.fritsch@boyerlarkin.io    \N    Jordan    West Richie    2251 Raymond Forges    29786    Montana    2016-07-24 16:45:54.866839    2016-10-14 13:02:56.512792        \N    \N    \N    0    \N    \N    \N    \N    male
15788    Kristofer    Smith    ova.moore@dach.net    \N    Morocco    West Elizabethport    9117 Mitchell Spring    58536    New Mexico    2016-09-04 17:02:25.56075    2016-10-14 13:02:56.517309        \N    \N    \N    0    \N    \N    \N    \N    male
15789    Mafalda    Anderson    scottie_swaniawski@harvey.io    \N    Cocos (Keeling) Islands    Leannonshire    1933 Cruickshank Knolls    28031    Indiana    2016-08-25 17:41:01.246365    2016-10-14 13:02:56.521503        \N    \N    \N    0    \N    \N    \N    \N    female
15790    Gerson    Rosenbaum    rene.shanahan@batz.com    \N    Argentina    New Mazieburgh    746 Brakus Field    50983    Colorado    2016-06-27 20:58:01.542642    2016-10-14 13:02:56.525864        \N    \N    \N    0    \N    \N    \N    \N    female
15791    Cornelius    Oberbrunner    wyatt@kling.com    \N    Grenada    South Okey    253 Denesik Burg    85504-1542    Minnesota    2016-08-25 13:10:55.578807    2016-10-14 13:02:56.530051        \N    \N    \N    0    \N    \N    \N    \N    female
15792    Gudrun    Leuschke    ryann.witting@dach.info    \N    Congo    East Susan    7181 Roosevelt Ports    53128    Iowa    2016-08-14 06:52:00.808562    2016-10-14 13:02:56.534703        \N    \N    \N    0    \N    \N    \N    \N    female
15793    Jerry    Pouros    brittany_kiehn@wunsch.com    \N    Haiti    Port Kamrenfurt    48914 Claire Underpass    68717    North Dakota    2016-09-15 16:06:15.518755    2016-10-14 13:02:56.539265        \N    \N    \N    0    \N    \N    \N    \N    female
15794    Magdalena    Graham    grayson.wintheiser@hegmann.co    \N    Ghana    Guillermostad    501 Lang Skyway    57662    Nevada    2016-07-20 15:48:52.753044    2016-10-14 13:02:56.543602        \N    \N    \N    0    \N    \N    \N    \N    female
15795    Giuseppe    Ferry    maxime_gulgowski@heel.co    \N    Heard Island and McDonald Islands    Lake Joey    796 D'angelo Terrace    65349    Alabama    2016-09-26 19:06:20.976639    2016-10-14 13:02:56.548377        \N    \N    \N    0    \N    \N    \N    \N    female
15796    Celestino    Huel    raymond@parisian.io    \N    Cape Verde    Cassinside    48552 Cullen Burgs    93532-2996    Oregon    2016-09-12 23:09:21.520836    2016-10-14 13:02:56.553225        \N    \N    \N    0    \N    \N    \N    \N    female
15797    Juvenal    Gulgowski    cicero@pouros.co    \N    Estonia    Goldnerville    425 Hauck Cliffs    71472-0439    Florida    2016-07-22 01:41:01.926438    2016-10-14 13:02:56.557698        \N    \N    \N    0    \N    \N    \N    \N    male
15798    Faustino    Mante    brooklyn@farrell.co    \N    Costa Rica    Lake Braedenburgh    72796 Emilie Trail    27228    New Mexico    2016-07-02 06:28:00.22582    2016-10-14 13:02:56.562566        \N    \N    \N    0    \N    \N    \N    \N    male
15799    Bobbie    Rohan    lelia.konopelski@waelchisteuber.info    \N    Gambia    Maryamhaven    888 Roob Mission    25158-6287    Florida    2016-08-24 05:03:30.291406    2016-10-14 13:02:56.567073        \N    \N    \N    0    \N    \N    \N    \N    female
15800    Valentina    Cassin    leilani_baumbach@bins.info    \N    Poland    Lake Thomas    66473 Braun Knoll    58012-8334    Mississippi    2016-08-12 11:32:13.209667    2016-10-14 13:02:56.571402        \N    \N    \N    0    \N    \N    \N    \N    male
15801    Rahul    Rolfson    valentina@medhurst.net    \N    India    Lake Shyanneshire    782 Laisha Manor    79684    Massachusetts    2016-09-19 14:13:05.333892    2016-10-14 13:02:56.575619        \N    \N    \N    0    \N    \N    \N    \N    female
15802    Mallie    McLaughlin    lilla_prosacco@okeefewilderman.biz    \N    China    West Arnold    753 Joshua Canyon    99251    Wisconsin    2016-07-06 10:23:59.593828    2016-10-14 13:02:56.580045        \N    \N    \N    0    \N    \N    \N    \N    female
15803    Carli    O'Kon    amelia_daugherty@mclaughlin.io    \N    Togo    Antwanton    31167 Zulauf Parkway    18160-5914    Nevada    2016-09-16 21:08:27.394009    2016-10-14 13:02:56.584415        \N    \N    \N    0    \N    \N    \N    \N    female
15804    Grant    Hoeger    bethel.shields@dare.co    \N    Chile    Lake Fredyfort    174 Hoeger Wall    53551    Oklahoma    2016-07-12 00:54:41.228019    2016-10-14 13:02:56.588754        \N    \N    \N    0    \N    \N    \N    \N    male
15805    Rozella    Homenick    arlie_legros@stark.com    \N    Lesotho    Schaeferside    581 Madilyn Crescent    68072-1520    Colorado    2016-08-16 11:53:20.592428    2016-10-14 13:02:56.593521        \N    \N    \N    0    \N    \N    \N    \N    female
15806    Addie    Breitenberg    virginie_hahn@ankundinglynch.info    \N    Falkland Islands (Malvinas)    East Abigalemouth    6647 Milan Ville    20738    New Hampshire    2016-09-08 12:42:53.198345    2016-10-14 13:02:56.597889        \N    \N    \N    0    \N    \N    \N    \N    female
15807    Jett    Gibson    prince.huel@kuvalis.co    \N    Uruguay    West Selinafurt    79372 Jerry Radial    88405    New Jersey    2016-06-24 10:22:00.015572    2016-10-14 13:02:56.602593        \N    \N    \N    0    \N    \N    \N    \N    male
15808    Sabina    Kub    zack.klocko@franecki.io    \N    Guinea    North Allanberg    701 Moen Lakes    98123    Florida    2016-08-15 14:54:52.432623    2016-10-14 13:02:56.60677        \N    \N    \N    0    \N    \N    \N    \N    male
15809    Abbey    Torp    cristopher@stanton.name    \N    Virgin Islands, British    Dorriston    284 Considine Coves    85169    Oklahoma    2016-07-31 11:48:39.839305    2016-10-14 13:02:56.611899        \N    \N    \N    0    \N    \N    \N    \N    male
15810    Fae    Jerde    willow.hegmann@hauckjacobi.com    \N    Hong Kong    Stehrbury    13189 Marvin Fort    37132    Georgia    2016-09-25 23:16:57.203098    2016-10-14 13:02:56.61657        \N    \N    \N    0    \N    \N    \N    \N    male
15811    Rubye    Walter    abe@willmoen.biz    \N    Paraguay    Rasheedfurt    717 Antonietta Center    43742-3652    Oklahoma    2016-07-06 14:53:13.532734    2016-10-14 13:02:56.621048        \N    \N    \N    0    \N    \N    \N    \N    female
15812    Shawn    Moen    amaya.parisian@mueller.io    \N    Angola    East Katrineburgh    860 Isac Coves    51418    Texas    2016-08-11 01:05:10.45336    2016-10-14 13:02:56.625166        \N    \N    \N    0    \N    \N    \N    \N    female
15813    Prudence    Boehm    beryl.cremin@wiza.info    \N    Faroe Islands    Lake Marcelfort    7214 Schmitt Plain    24571    West Virginia    2016-09-11 19:40:32.034151    2016-10-14 13:02:56.629361        \N    \N    \N    0    \N    \N    \N    \N    male
15814    Hans    Jast    carmelo@bayerharvey.org    \N    Germany    Braunstad    730 Helga Terrace    34775    Pennsylvania    2016-07-25 17:59:10.894299    2016-10-14 13:02:56.633547        \N    \N    \N    0    \N    \N    \N    \N    male
15815    Rachael    Lemke    lavon_veum@cummerata.net    \N    Azerbaijan    Klingville    2394 Holly Spurs    32872-6789    Rhode Island    2016-09-01 06:10:06.37423    2016-10-14 13:02:56.63766        \N    \N    \N    0    \N    \N    \N    \N    female
15816    Tierra    Oberbrunner    onie@nadermosciski.com    \N    South Georgia and the South Sandwich Islands    New Twila    1679 Dare Park    27990    California    2016-09-13 00:38:33.635222    2016-10-14 13:02:56.642068        \N    \N    \N    0    \N    \N    \N    \N    female
15817    Shirley    Zemlak    cruz.emard@powlowski.biz    \N    Cayman Islands    South Major    404 Cassandra Ranch    54506-7069    Kansas    2016-06-26 08:24:49.670971    2016-10-14 13:02:56.646961        \N    \N    \N    0    \N    \N    \N    \N    female
15818    Toney    Hauck    jay.hilpert@rolfson.biz    \N    Liberia    Port Arielle    82474 Marcos Stravenue    40435    Hawaii    2016-06-29 09:45:43.672446    2016-10-14 13:02:56.651365        \N    \N    \N    0    \N    \N    \N    \N    male
15819    Melisa    Mann    lloyd.howe@jakubowskihamill.com    \N    Egypt    South Godfrey    264 Van Corners    26773    Michigan    2016-09-10 13:17:18.236885    2016-10-14 13:02:56.65617        \N    \N    \N    0    \N    \N    \N    \N    female
15820    Maxwell    Hills    alysha@christiansen.org    \N    Philippines    Jonasside    11850 Talon Ranch    16809    Iowa    2016-09-27 07:54:57.904791    2016-10-14 13:02:56.660721        \N    \N    \N    0    \N    \N    \N    \N    male
15821    Horace    Nader    serenity_rolfson@lang.org    \N    Nauru    Kathlynfort    386 Lance Alley    17108-6633    Maryland    2016-09-13 08:22:18.061404    2016-10-14 13:02:56.666007        \N    \N    \N    0    \N    \N    \N    \N    male
15822    Jewel    Becker    nicholaus_gaylord@ko.biz    \N    Armenia    New Preston    304 Thiel Heights    92925-1415    Tennessee    2016-07-31 01:23:07.221147    2016-10-14 13:02:56.670636        \N    \N    \N    0    \N    \N    \N    \N    female
15823    Ressie    Willms    kaylie@buckridge.com    \N    Egypt    Stehrmouth    6670 Boyer Valley    60444-2372    Idaho    2016-06-29 10:13:47.272066    2016-10-14 13:02:56.675242        \N    \N    \N    0    \N    \N    \N    \N    female
15824    Chester    Zieme    cindy.kihn@nienow.com    \N    Solomon Islands    Shawnaview    33407 Sister Park    34254    Arizona    2016-07-19 19:54:44.374065    2016-10-14 13:02:56.679303        \N    \N    \N    0    \N    \N    \N    \N    male
15825    Lacey    Kuhn    stephania_gibson@hilpertkshlerin.info    \N    Costa Rica    Aminastad    3354 Emma Ramp    27032    South Carolina    2016-07-30 01:36:49.73072    2016-10-14 13:02:56.683821        \N    \N    \N    0    \N    \N    \N    \N    male
15826    Felix    Beatty    nat@oconner.com    \N    Pitcairn Islands    South Ubaldotown    646 Karl Junction    98732    Oklahoma    2016-08-21 01:36:57.988896    2016-10-14 13:02:56.688147        \N    \N    \N    0    \N    \N    \N    \N    male
15827    Cydney    Prohaska    boris@douglasmayer.org    \N    Afghanistan    Jennieview    2304 Madelynn Track    36485-2442    Wyoming    2016-07-20 19:37:22.360622    2016-10-14 13:02:56.692484        \N    \N    \N    0    \N    \N    \N    \N    male
15828    Julianne    Larkin    waylon@schroeder.info    \N    Guinea    Zoeyborough    7786 Lucile Coves    73298    Wyoming    2016-09-02 14:13:06.862254    2016-10-14 13:02:56.6968        \N    \N    \N    0    \N    \N    \N    \N    male
16356    Roxanne    Eichmann    adan.funk@mraz.co    \N    Panama    North Gerry    325 Pablo Fields    58440-3576    Illinois    2016-08-10 20:43:59.997453    2016-10-14 13:02:56.701063        \N    \N    \N    0    \N    \N    \N    \N    female
15829    Gilda    Beahan    ben@hudsonklocko.co    \N    Colombia    North Donaldport    93523 Shanelle Unions    29608-8555    Kansas    2016-08-25 16:17:01.319997    2016-10-14 13:02:56.70591        \N    \N    \N    0    \N    \N    \N    \N    male
15830    Leonie    Stanton    deja.stamm@macgyvervonrueden.info    \N    Morocco    Bartholomeview    7652 Melyna Estates    66327-9488    Tennessee    2016-09-21 11:57:46.598055    2016-10-14 13:02:56.709955        \N    \N    \N    0    \N    \N    \N    \N    female
15831    Marlen    Crona    ana@spinkanolan.info    \N    Saint Martin    Langville    8454 Reese Extensions    53915    Pennsylvania    2016-07-05 12:25:08.636903    2016-10-14 13:02:56.714174        \N    \N    \N    0    \N    \N    \N    \N    female
15832    Tom    Kunze    wyman@schinner.name    \N    Venezuela    South Allie    4621 Eloisa Roads    42129-4580    Kansas    2016-07-16 01:04:54.288225    2016-10-14 13:02:56.71806        \N    \N    \N    0    \N    \N    \N    \N    male
15833    Jayme    O'Reilly    haven.cartwright@champlin.biz    \N    Maldives    New Emory    8486 Bessie Avenue    69149-7017    Indiana    2016-07-10 07:01:52.953827    2016-10-14 13:02:56.722238        \N    \N    \N    0    \N    \N    \N    \N    female
15834    Ewell    Koch    sheila_hauck@halvorson.org    \N    Reunion    East Rosalind    839 Gage Heights    20996    Maryland    2016-09-14 17:55:38.661333    2016-10-14 13:02:56.726188        \N    \N    \N    0    \N    \N    \N    \N    female
15836    Simeon    Hyatt    barton@hirthe.org    \N    Svalbard & Jan Mayen Islands    Lehnermouth    706 Rubye Corners    92227-3344    Maryland    2016-08-08 04:06:06.491183    2016-10-14 13:02:56.734448        \N    \N    \N    0    \N    \N    \N    \N    female
15837    Erling    Bosco    jovani.nikolaus@west.biz    \N    Faroe Islands    New Arvelside    735 Bednar Manors    31178    Michigan    2016-08-12 00:38:37.020458    2016-10-14 13:02:56.738384        \N    \N    \N    0    \N    \N    \N    \N    female
15838    Quinn    Gulgowski    alva@schaden.biz    \N    Canada    Santinoborough    3403 Harvey River    89270-6538    Arkansas    2016-07-22 15:05:43.502814    2016-10-14 13:02:56.742329        \N    \N    \N    0    \N    \N    \N    \N    male
15839    Abner    Dare    kendrick@kingcarter.org    \N    Singapore    Kutchton    525 Becker Key    60003    Wyoming    2016-07-11 11:27:13.902727    2016-10-14 13:02:56.746493        \N    \N    \N    0    \N    \N    \N    \N    male
15840    Viva    Donnelly    armand@yost.com    \N    Greece    West Modesto    816 Tyson Heights    54871-7541    New Hampshire    2016-07-02 04:42:10.6441    2016-10-14 13:02:56.750844        \N    \N    \N    0    \N    \N    \N    \N    female
15841    Aileen    Wyman    robert.auer@turnersporer.biz    \N    Taiwan    Joliemouth    5892 Newton Wall    36455    Georgia    2016-08-30 04:57:02.154815    2016-10-14 13:02:56.755267        \N    \N    \N    0    \N    \N    \N    \N    female
15842    Manley    Yundt    kayleigh.okuneva@okoncasper.org    \N    Sweden    Darrylchester    3951 Keegan Meadow    86443-4980    Kentucky    2016-08-20 23:53:01.297866    2016-10-14 13:02:56.759448        \N    \N    \N    0    \N    \N    \N    \N    male
15889    Graham    Rowe    gage@wintheiserhowe.com    \N    Bulgaria    Jesustown    26052 Verla Isle    11315-8646    Georgia    2016-07-25 10:50:37.550272    2016-10-14 13:02:56.763994        \N    \N    \N    0    \N    \N    \N    \N    male
15843    Violette    Bernier    lambert@simonis.org    \N    United States Minor Outlying Islands    Satterfieldside    7837 Destiny Ways    71240-9639    Indiana    2016-09-16 07:57:57.83767    2016-10-14 13:02:56.771347        \N    \N    \N    0    \N    \N    \N    \N    female
15844    Nigel    Hills    rosemarie@stantonvon.info    \N    Romania    Sipesview    55331 Carmela Keys    29153    Connecticut    2016-08-06 10:50:22.75443    2016-10-14 13:02:56.775524        \N    \N    \N    0    \N    \N    \N    \N    female
15845    Ettie    Parisian    nicolette.hartmann@cain.net    \N    Vanuatu    West Jabariton    27902 Tristian Gardens    18067-5401    California    2016-07-20 03:03:19.368051    2016-10-14 13:02:56.779648        \N    \N    \N    0    \N    \N    \N    \N    male
15846    Lori    Pfannerstill    pierre@heidenreichjacobson.info    \N    Palestinian Territory    Natashatown    83508 Alexzander Ferry    50291    Kansas    2016-07-07 05:53:26.40408    2016-10-14 13:02:56.783769        \N    \N    \N    0    \N    \N    \N    \N    female
15847    Ruby    Hilll    lowell_bogisich@veum.co    \N    Saint Barthelemy    South Gildamouth    6468 Elaina River    61771-1885    Wyoming    2016-06-27 12:11:46.356126    2016-10-14 13:02:56.787601        \N    \N    \N    0    \N    \N    \N    \N    male
15848    Marcus    Bergstrom    mike@okuneva.com    \N    Nepal    Christiansenchester    946 Howe Pines    45829    Delaware    2016-07-02 11:53:24.101446    2016-10-14 13:02:56.791559        \N    \N    \N    0    \N    \N    \N    \N    female
15849    Brielle    Feeney    dallin@hoppetorphy.biz    \N    Chad    South Angelberg    3995 Cremin Stream    85076-3184    South Carolina    2016-08-31 03:38:31.652776    2016-10-14 13:02:56.795526        \N    \N    \N    0    \N    \N    \N    \N    male
15850    Maryam    Gorczany    edgardo@bins.name    \N    Bouvet Island (Bouvetoya)    Kulasberg    91619 Lew Lodge    85832-8970    Nevada    2016-07-04 06:25:23.31754    2016-10-14 13:02:56.799726        \N    \N    \N    0    \N    \N    \N    \N    female
15851    Monty    Lebsack    clinton@bernhard.org    \N    Afghanistan    Elmerbury    40996 Schimmel Route    67048    Texas    2016-06-23 00:01:18.444434    2016-10-14 13:02:56.804038        \N    \N    \N    0    \N    \N    \N    \N    male
15852    Damaris    Runte    dino_howell@homenick.biz    \N    Israel    Port Jaymemouth    623 Rebeka Overpass    36202    Hawaii    2016-09-22 22:32:23.416549    2016-10-14 13:02:56.808842        \N    \N    \N    0    \N    \N    \N    \N    female
15853    Jefferey    Hilll    elaina.little@west.name    \N    Cook Islands    Port Junius    53731 Augustus Cliffs    74106-2215    Massachusetts    2016-09-04 21:12:13.911886    2016-10-14 13:02:56.813022        \N    \N    \N    0    \N    \N    \N    \N    female
15854    Zion    Walsh    stephany.nikolaus@deckow.io    \N    Spain    Gradyville    44070 Jarrod Union    45121    Minnesota    2016-09-16 12:37:29.712798    2016-10-14 13:02:56.817097        \N    \N    \N    0    \N    \N    \N    \N    female
15855    Onie    Reichel    roderick.walker@mohrmacejkovic.co    \N    Saudi Arabia    Gleichnershire    287 Ward Lane    19903    Illinois    2016-07-10 11:38:22.986855    2016-10-14 13:02:56.821782        \N    \N    \N    0    \N    \N    \N    \N    female
15856    Vesta    Daniel    christophe_runolfsdottir@dooley.biz    \N    Saint Helena    Nikolausland    6969 Freddy Locks    48670    Alabama    2016-09-13 20:09:11.93509    2016-10-14 13:02:56.825944        \N    \N    \N    0    \N    \N    \N    \N    male
15857    Jaunita    Beer    gertrude.stoltenberg@leannon.net    \N    Gambia    West Hubertbury    8659 Bruen Garden    32477-1758    Iowa    2016-08-27 17:30:11.177681    2016-10-14 13:02:56.830123        \N    \N    \N    0    \N    \N    \N    \N    male
15858    Keaton    Gutmann    friedrich@davishayes.org    \N    Wallis and Futuna    West Kailee    7282 Enoch Springs    32218-3821    Montana    2016-07-16 14:22:11.511562    2016-10-14 13:02:56.834358        \N    \N    \N    0    \N    \N    \N    \N    female
16260    Mekhi    Hudson    josefina@gleichner.org    \N    Mongolia    Kayastad    50408 Mills Walk    70721    Wisconsin    2016-08-21 06:23:59.305822    2016-10-14 13:02:56.838411        \N    \N    \N    0    \N    \N    \N    \N    male
15859    Ulises    Schaden    yazmin_wunsch@altenwerth.net    \N    Vanuatu    Lake Feliciaburgh    18058 Ullrich Haven    55496    Washington    2016-07-03 05:29:45.520694    2016-10-14 13:02:56.842725        \N    \N    \N    0    \N    \N    \N    \N    female
15860    Greta    Nolan    myrtice@reichel.biz    \N    Sierra Leone    East Laurenceville    277 Wintheiser Ferry    89100-3195    Rhode Island    2016-09-16 20:45:05.503515    2016-10-14 13:02:56.846959        \N    \N    \N    0    \N    \N    \N    \N    female
15861    Palma    McDermott    francis.tremblay@effertz.net    \N    Switzerland    Lake Janaeview    9322 Haleigh Corners    41367-6321    Pennsylvania    2016-08-12 06:27:31.087869    2016-10-14 13:02:56.851194        \N    \N    \N    0    \N    \N    \N    \N    female
15862    Kurtis    Mosciski    jaron@baileyrosenbaum.com    \N    Puerto Rico    East Wavaton    5902 Bette Mills    49040    Wisconsin    2016-09-17 05:05:36.244656    2016-10-14 13:02:56.855546        \N    \N    \N    0    \N    \N    \N    \N    male
15863    Armand    Kerluke    ashley_erdman@willms.net    \N    Liechtenstein    New Caterinaside    798 Trycia Hill    56743-2952    Delaware    2016-07-21 13:59:30.212676    2016-10-14 13:02:56.859756        \N    \N    \N    0    \N    \N    \N    \N    male
15864    Harold    MacGyver    mariela.schumm@mrazgerhold.net    \N    Kyrgyz Republic    Keelingfurt    810 Noe Lane    75073-3734    Pennsylvania    2016-09-22 05:44:00.427833    2016-10-14 13:02:56.864252        \N    \N    \N    0    \N    \N    \N    \N    female
15865    Rose    Pfeffer    lenna_kuvalis@konopelski.org    \N    Malaysia    Tiannafurt    8914 O'Connell Terrace    45465    Maryland    2016-07-20 09:42:59.124837    2016-10-14 13:02:56.8684        \N    \N    \N    0    \N    \N    \N    \N    male
15866    Evangeline    Aufderhar    destini_reynolds@bashirianmacejkovic.info    \N    Isle of Man    Kennediburgh    42907 Orville Estates    16801    Illinois    2016-07-22 20:00:18.375841    2016-10-14 13:02:56.872869        \N    \N    \N    0    \N    \N    \N    \N    male
15867    Lacey    Dickens    arturo@schulistwatsica.org    \N    Pitcairn Islands    Nicolasstad    5570 Kane Place    11200-5008    Texas    2016-08-29 06:07:29.180452    2016-10-14 13:02:56.877161        \N    \N    \N    0    \N    \N    \N    \N    female
15868    Rick    Weber    allie_simonis@gislason.io    \N    Saint Pierre and Miquelon    Godfreyfort    843 Hilll Prairie    17637    North Dakota    2016-09-28 19:39:16.932212    2016-10-14 13:02:56.88139        \N    \N    \N    0    \N    \N    \N    \N    female
15869    Rebeka    Thompson    meagan_kulas@rempelreichert.com    \N    Slovakia (Slovak Republic)    West Bayleeburgh    912 Alysa Port    10904-3426    New Jersey    2016-09-22 02:50:03.649181    2016-10-14 13:02:56.885537        \N    \N    \N    0    \N    \N    \N    \N    female
15870    Clementine    Altenwerth    granville_abshire@dooley.name    \N    Serbia    West Lane    18620 Wisoky Fords    73364    North Dakota    2016-09-15 16:29:28.037308    2016-10-14 13:02:56.906691        \N    \N    \N    0    \N    \N    \N    \N    male
15871    Taylor    Spencer    paxton@leannondubuque.org    \N    Malawi    West Amelieton    1472 Runolfsson Well    97567-3849    Oklahoma    2016-07-03 22:01:05.067397    2016-10-14 13:02:56.91121        \N    \N    \N    0    \N    \N    \N    \N    male
15872    Fleta    Stehr    omari@connspencer.name    \N    Niue    Huelberg    41234 Dayana Extension    69796-9504    Alaska    2016-08-30 11:53:33.541764    2016-10-14 13:02:56.91526        \N    \N    \N    0    \N    \N    \N    \N    female
15873    Jasper    Bruen    rebecca_ruel@haley.org    \N    Morocco    West Erikaton    202 O'Kon Junction    65718-2247    New Hampshire    2016-07-11 08:19:27.16609    2016-10-14 13:02:56.919317        \N    \N    \N    0    \N    \N    \N    \N    female
15874    Johann    Doyle    don.strosin@thiel.name    \N    Palestinian Territory    Whiteton    7661 Feeney Green    99477    Wyoming    2016-06-30 04:14:25.434045    2016-10-14 13:02:56.923613        \N    \N    \N    0    \N    \N    \N    \N    female
15875    Theresa    Ebert    shany_hagenes@cummeratakreiger.net    \N    Sri Lanka    Lake Willow    29106 Marge Manor    71301-9679    Washington    2016-07-12 02:46:27.680226    2016-10-14 13:02:56.927411        \N    \N    \N    0    \N    \N    \N    \N    female
15876    Vinnie    Sanford    rozella@medhurstadams.biz    \N    Qatar    Lake Jaedenside    40296 Hammes Ranch    89561-8104    New Jersey    2016-07-03 14:58:59.956754    2016-10-14 13:02:56.93176        \N    \N    \N    0    \N    \N    \N    \N    female
15877    Maribel    Hand    emmanuel.heel@lemke.name    \N    Niger    Port Kavonville    8041 Layne Springs    26151-6797    Utah    2016-09-17 18:50:39.815097    2016-10-14 13:02:56.936204        \N    \N    \N    0    \N    \N    \N    \N    male
15878    Loyce    Kutch    emelie@hoeger.org    \N    Lao People's Democratic Republic    Funkton    885 Tyreek Walks    76319    Alaska    2016-09-03 09:56:13.546007    2016-10-14 13:02:56.940812        \N    \N    \N    0    \N    \N    \N    \N    male
15879    Torrey    Rohan    stacey@cole.info    \N    Nauru    Port Chauncey    7331 Bernhard Turnpike    90952-3744    Alaska    2016-08-03 23:08:52.415476    2016-10-14 13:02:56.945603        \N    \N    \N    0    \N    \N    \N    \N    male
15880    Logan    Robel    annalise_breitenberg@kub.biz    \N    Afghanistan    North Ruthe    98681 Altenwerth Field    56565    New Hampshire    2016-06-27 08:58:18.350828    2016-10-14 13:02:56.950175        \N    \N    \N    0    \N    \N    \N    \N    male
15881    Lincoln    Kassulke    maci@wildermankuvalis.name    \N    Burundi    Lorinefurt    80581 Bianka Curve    76772    Pennsylvania    2016-08-05 12:16:11.409427    2016-10-14 13:02:56.954459        \N    \N    \N    0    \N    \N    \N    \N    female
15882    Barton    Crist    quinn@bergstrom.info    \N    Oman    South Sydneymouth    808 Chester Spring    82671    New York    2016-08-01 19:29:02.221575    2016-10-14 13:02:56.958774        \N    \N    \N    0    \N    \N    \N    \N    male
15883    Estella    Collins    jackeline@schmelercollier.biz    \N    Guernsey    Lake Alexaland    1134 Labadie Underpass    41322    Nevada    2016-07-26 15:14:26.619354    2016-10-14 13:02:56.963126        \N    \N    \N    0    \N    \N    \N    \N    male
15884    Amara    O'Conner    karine_ruecker@kerluke.net    \N    Mali    New Conor    919 Morton Corner    89427-3038    Wyoming    2016-09-10 02:43:15.179    2016-10-14 13:02:56.967651        \N    \N    \N    0    \N    \N    \N    \N    female
15885    Peyton    Schimmel    velva_hahn@hahn.biz    \N    Bahamas    Wehnerland    2483 Stehr Drive    15566    Missouri    2016-09-29 10:45:59.859485    2016-10-14 13:02:56.971682        \N    \N    \N    0    \N    \N    \N    \N    male
15886    Kiley    Lehner    tracy_kuvalis@ruel.biz    \N    Tajikistan    East Boborough    410 Brown Brooks    58982    North Carolina    2016-07-09 10:13:19.50749    2016-10-14 13:02:56.975602        \N    \N    \N    0    \N    \N    \N    \N    female
15887    Ora    Sawayn    torrey@lockman.net    \N    Syrian Arab Republic    Gabrielland    78492 Orrin Drive    33827    Virginia    2016-07-28 22:14:29.484296    2016-10-14 13:02:56.97974        \N    \N    \N    0    \N    \N    \N    \N    male
15888    Jena    Dickinson    leila@heaney.net    \N    Heard Island and McDonald Islands    Boyerfort    129 Yvonne Loaf    36786    Virginia    2016-07-03 23:33:37.654821    2016-10-14 13:02:56.984032        \N    \N    \N    0    \N    \N    \N    \N    male
15890    Francesco    Lindgren    jalon_waters@kuphal.org    \N    South Africa    Port Jocelyn    59866 Shields Camp    44379-7161    Maryland    2016-09-04 08:19:24.30055    2016-10-14 13:02:56.988258        \N    \N    \N    0    \N    \N    \N    \N    female
15891    Lawson    Corkery    lauriane@kihnoconnell.co    \N    Bosnia and Herzegovina    Alisaborough    883 Clement Wells    32460-1566    Kentucky    2016-07-12 17:45:36.963427    2016-10-14 13:02:56.992268        \N    \N    \N    0    \N    \N    \N    \N    male
15892    Letitia    Stiedemann    lyda.bailey@wiza.info    \N    British Indian Ocean Territory (Chagos Archipelago)    East Lilianland    327 Kole Mountain    95637    Colorado    2016-08-23 15:37:24.959629    2016-10-14 13:02:56.996407        \N    \N    \N    0    \N    \N    \N    \N    female
15893    Oceane    Mann    zackery@conroy.co    \N    Mozambique    Sammystad    90853 Wehner Viaduct    58973    Montana    2016-08-24 18:38:44.810108    2016-10-14 13:02:57.000579        \N    \N    \N    0    \N    \N    \N    \N    male
15894    Camila    Littel    randi.blick@hudsoncorkery.com    \N    Nicaragua    North Dorotheafurt    6641 Kellen Brook    23198-2749    Montana    2016-08-03 08:32:10.809301    2016-10-14 13:02:57.004977        \N    \N    \N    0    \N    \N    \N    \N    female
15895    Einar    Windler    abraham_padberg@harvey.com    \N    Peru    Port Cheyenneville    543 Brakus Crescent    47676    Idaho    2016-08-08 19:12:15.783155    2016-10-14 13:02:57.009412        \N    \N    \N    0    \N    \N    \N    \N    male
15896    Jalyn    Emmerich    floyd@herzog.io    \N    Croatia    East Genevievehaven    36907 Ryan Knolls    90537    New Jersey    2016-09-07 07:07:38.071117    2016-10-14 13:02:57.013535        \N    \N    \N    0    \N    \N    \N    \N    female
15897    Jillian    Frami    bria@durgan.io    \N    Reunion    Opalmouth    60027 Dare Motorway    76468-4174    New Mexico    2016-09-21 20:20:22.868415    2016-10-14 13:02:57.018044        \N    \N    \N    0    \N    \N    \N    \N    male
15898    Jennings    Wisozk    norbert_leffler@gottlieb.net    \N    Burkina Faso    East Aniyahberg    74163 Mraz Plains    48912    Pennsylvania    2016-09-17 18:22:27.060103    2016-10-14 13:02:57.022176        \N    \N    \N    0    \N    \N    \N    \N    male
15899    Dejon    Wisozk    lexie.hagenes@bogan.net    \N    Paraguay    South Duane    292 Drew Park    63775-1458    New York    2016-06-26 20:35:00.871186    2016-10-14 13:02:57.026358        \N    \N    \N    0    \N    \N    \N    \N    male
15900    Herman    Russel    keven.jaskolski@kuvalis.org    \N    Saint Lucia    Pricefort    970 Cecelia Stravenue    32915-3411    Vermont    2016-06-25 21:54:11.446592    2016-10-14 13:02:57.030857        \N    \N    \N    0    \N    \N    \N    \N    male
15901    Darlene    Hamill    moriah@kris.com    \N    Guatemala    Alfonzoshire    92360 Orie Mews    72692    Delaware    2016-07-17 23:48:17.058899    2016-10-14 13:02:57.035143        \N    \N    \N    0    \N    \N    \N    \N    male
15902    Valentin    Oberbrunner    tracey_huel@kerluke.net    \N    Bhutan    Naderland    330 Hodkiewicz Bridge    56967    Utah    2016-07-05 09:48:24.115049    2016-10-14 13:02:57.039418        \N    \N    \N    0    \N    \N    \N    \N    male
15903    Jaren    Stiedemann    chesley.heller@cormiermitchell.biz    \N    Paraguay    North Izabellaport    49283 Littel Ports    87153-3982    Utah    2016-08-10 22:00:09.56682    2016-10-14 13:02:57.043977        \N    \N    \N    0    \N    \N    \N    \N    female
15904    Claudine    Rodriguez    perry@spinka.com    \N    Brazil    West Arianna    468 Aletha Fields    14516-7826    Minnesota    2016-08-05 15:01:32.808727    2016-10-14 13:02:57.048061        \N    \N    \N    0    \N    \N    \N    \N    female
15905    Ford    Kautzer    pablo@schaeferwolff.com    \N    Martinique    Lindburgh    40626 Susie Canyon    97544    Florida    2016-08-29 06:50:49.59878    2016-10-14 13:02:57.052215        \N    \N    \N    0    \N    \N    \N    \N    male
15906    Victoria    Hansen    jany@wehner.org    \N    Iceland    New Stone    229 Hand Greens    71531    Montana    2016-07-24 10:35:31.621936    2016-10-14 13:02:57.056505        \N    \N    \N    0    \N    \N    \N    \N    male
15907    Madelynn    Mills    khalil.jaskolski@schuster.biz    \N    Lesotho    New Glennie    216 Freddie Neck    79779-6941    Delaware    2016-09-23 08:02:34.987207    2016-10-14 13:02:57.06077        \N    \N    \N    0    \N    \N    \N    \N    female
15908    Abdullah    Schroeder    veronica_bergstrom@wisozk.org    \N    Fiji    Emiliafort    916 Romaguera Ramp    42360-1623    Minnesota    2016-08-29 11:59:48.652839    2016-10-14 13:02:57.065386        \N    \N    \N    0    \N    \N    \N    \N    female
15909    Shaylee    Ebert    myah_oreilly@schinnerstokes.org    \N    Somalia    North Rachael    43874 Jacklyn Cape    44375-7172    Rhode Island    2016-07-11 06:05:11.688664    2016-10-14 13:02:57.073599        \N    \N    \N    0    \N    \N    \N    \N    male
15910    Addison    Powlowski    bryana.oreilly@leannon.name    \N    New Zealand    East Parker    765 Brown Dam    65539-7379    New Hampshire    2016-09-08 10:04:35.29808    2016-10-14 13:02:57.077424        \N    \N    \N    0    \N    \N    \N    \N    male
15911    Alice    Walter    tracey@jones.co    \N    Indonesia    Baileehaven    63969 Gislason Lock    70451-2993    Wisconsin    2016-07-16 19:50:31.281385    2016-10-14 13:02:57.081514        \N    \N    \N    0    \N    \N    \N    \N    male
15912    Austin    Jones    chad.green@robel.org    \N    Colombia    Wildermanside    55804 Santa Forge    40126    Wisconsin    2016-08-23 18:35:17.778111    2016-10-14 13:02:57.085736        \N    \N    \N    0    \N    \N    \N    \N    female
15913    Jaquan    Hudson    amina@stoltenbergbotsford.biz    \N    Kazakhstan    Joesphhaven    727 Van Islands    54926-9324    Iowa    2016-08-16 06:37:26.80967    2016-10-14 13:02:57.089907        \N    \N    \N    0    \N    \N    \N    \N    male
15914    Ezequiel    O'Reilly    israel.von@terry.biz    \N    Trinidad and Tobago    Catalinachester    9254 Pouros Common    41573    Missouri    2016-07-14 17:21:39.635688    2016-10-14 13:02:57.094342        \N    \N    \N    0    \N    \N    \N    \N    male
15915    Margaretta    Marvin    evan_kunze@reynoldchumm.biz    \N    Greece    Joshstad    61366 Hoppe Oval    79387-3119    Michigan    2016-07-26 13:49:53.955214    2016-10-14 13:02:57.098459        \N    \N    \N    0    \N    \N    \N    \N    female
15918    Laurie    Auer    wilfred@ruelkrajcik.biz    \N    Brunei Darussalam    East Jacynthe    197 McClure Creek    81596    Maine    2016-08-30 18:14:13.109887    2016-10-14 13:02:57.102664        \N    \N    \N    0    \N    \N    \N    \N    male
15919    Matt    Kuhn    trey@fisher.info    \N    Ecuador    Paucekport    121 Considine Point    86006    Massachusetts    2016-09-13 17:11:08.149102    2016-10-14 13:02:57.106759        \N    \N    \N    0    \N    \N    \N    \N    male
15920    Jarrett    Morissette    burnice@dietrichlehner.info    \N    Cuba    East Noel    981 Daphney Throughway    34118-5713    Arizona    2016-07-30 13:32:54.085255    2016-10-14 13:02:57.11091        \N    \N    \N    0    \N    \N    \N    \N    female
15921    Ernestina    Farrell    eula.lueilwitz@runte.io    \N    Saint Barthelemy    Botsfordberg    57282 Beau Track    11715    Michigan    2016-07-26 15:26:40.18951    2016-10-14 13:02:57.11494        \N    \N    \N    0    \N    \N    \N    \N    female
15922    Hermann    Kuhic    nya.parker@swaniawski.biz    \N    France    Sadyeton    3226 Jedediah Village    92482    New Mexico    2016-07-26 20:42:35.67086    2016-10-14 13:02:57.119232        \N    \N    \N    0    \N    \N    \N    \N    female
15923    Cody    Daniel    camilla.hamill@dach.info    \N    Malaysia    East Frankieburgh    9249 Fredy Meadow    15232    Tennessee    2016-07-31 07:32:08.742047    2016-10-14 13:02:57.123843        \N    \N    \N    0    \N    \N    \N    \N    female
15924    Desiree    Heaney    brayan_collins@dickijacobs.info    \N    Eritrea    Heatherberg    553 Matt Station    58840    Florida    2016-07-17 16:49:25.171192    2016-10-14 13:02:57.12805        \N    \N    \N    0    \N    \N    \N    \N    female
15926    Loraine    Rutherford    maybelle.ankunding@beier.net    \N    Indonesia    Ortizborough    4396 Marks Manors    80164    Michigan    2016-08-01 06:54:41.462208    2016-10-14 13:02:57.132373        \N    \N    \N    0    \N    \N    \N    \N    female
15927    Billie    Goldner    monserrat@beerstark.name    \N    Barbados    Mannmouth    497 Damian Green    78688    Kansas    2016-08-13 17:23:28.610456    2016-10-14 13:02:57.137145        \N    \N    \N    0    \N    \N    \N    \N    male
15928    Barton    Considine    ron@purdy.com    \N    Togo    Flatleyfurt    805 Greenfelder Course    12850    West Virginia    2016-07-31 03:55:12.460165    2016-10-14 13:02:57.141629        \N    \N    \N    0    \N    \N    \N    \N    female
15929    Greta    Lubowitz    tyrell@damorefahey.org    \N    Ecuador    West Paigetown    476 Shields Circles    21179-0711    Ohio    2016-08-28 12:59:15.344763    2016-10-14 13:02:57.145653        \N    \N    \N    0    \N    \N    \N    \N    male
15930    Etha    Jacobson    kimberly_christiansen@mills.name    \N    French Southern Territories    Wilkinsonborough    25310 Ondricka Brook    67493-8882    Utah    2016-07-08 16:29:01.265468    2016-10-14 13:02:57.149775        \N    \N    \N    0    \N    \N    \N    \N    female
15931    Bud    Parisian    gerard_quitzon@gulgowskiritchie.info    \N    Gibraltar    New Dariantown    618 Finn Hollow    15747-4843    Ohio    2016-07-21 12:42:17.919687    2016-10-14 13:02:57.153948        \N    \N    \N    0    \N    \N    \N    \N    male
15932    Alda    Schimmel    michaela.schneider@stark.info    \N    Hungary    Boscostad    6986 Carter Heights    85588-0709    Arkansas    2016-08-30 04:10:32.869366    2016-10-14 13:02:57.158624        \N    \N    \N    0    \N    \N    \N    \N    male
15933    Loyce    Carter    ubaldo.fahey@treutel.io    \N    Cayman Islands    Myrtiston    14136 Bennie Flats    59694    California    2016-08-27 20:55:15.72344    2016-10-14 13:02:57.163274        \N    \N    \N    0    \N    \N    \N    \N    male
15934    Damion    Hodkiewicz    rosina_goldner@torp.net    \N    Macedonia    South Everetteland    8090 Bins Squares    75703-1069    Colorado    2016-07-13 06:56:10.252453    2016-10-14 13:02:57.167485        \N    \N    \N    0    \N    \N    \N    \N    female
15935    Verona    Hagenes    genoveva.braun@zieme.info    \N    Israel    New Zoiemouth    904 Cormier Lights    37765-6323    Minnesota    2016-07-22 23:30:05.58132    2016-10-14 13:02:57.171741        \N    \N    \N    0    \N    \N    \N    \N    female
15936    Magnolia    Cole    cullen_gleason@beattyparker.biz    \N    Greenland    North Lempi    193 Tania Via    45458    Alaska    2016-09-09 19:27:54.190327    2016-10-14 13:02:57.176417        \N    \N    \N    0    \N    \N    \N    \N    female
15937    Katlyn    Klein    virginie@schmitt.co    \N    Pakistan    Nicholausmouth    997 Lowe Knolls    47432    Idaho    2016-09-11 23:49:30.219551    2016-10-14 13:02:57.180843        \N    \N    \N    0    \N    \N    \N    \N    male
15938    Leonor    Kuvalis    beaulah.dietrich@schumm.net    \N    Algeria    Namemouth    1583 Christiana Club    59197-3134    Colorado    2016-07-22 11:23:21.794603    2016-10-14 13:02:57.185329        \N    \N    \N    0    \N    \N    \N    \N    female
15939    Camryn    Becker    llewellyn@padberg.biz    \N    Armenia    Noemieburgh    500 Rebeka Cliff    39825-8193    West Virginia    2016-08-03 18:29:13.32528    2016-10-14 13:02:57.189841        \N    \N    \N    0    \N    \N    \N    \N    male
15940    Justina    Davis    burley_flatley@beahanturcotte.net    \N    Madagascar    Adolfland    2488 Suzanne Square    73252    Louisiana    2016-06-30 04:36:41.991329    2016-10-14 13:02:57.193989        \N    \N    \N    0    \N    \N    \N    \N    female
15941    Reymundo    Wisozk    tamia@schmeler.com    \N    Greenland    Shaynamouth    68030 McClure Square    63210-0709    Utah    2016-08-30 13:21:13.377112    2016-10-14 13:02:57.198734        \N    \N    \N    0    \N    \N    \N    \N    female
15942    Lila    Olson    margarita_fadel@ruel.io    \N    Belgium    Coleshire    2524 Mitchel Street    61880-3167    Washington    2016-09-19 14:04:08.973812    2016-10-14 13:02:57.20317        \N    \N    \N    0    \N    \N    \N    \N    female
15943    Ezra    Frami    kathlyn.hamill@smith.biz    \N    Saint Helena    Port Sigmund    71136 Kuhic Light    45776-7603    Minnesota    2016-08-08 18:37:48.926998    2016-10-14 13:02:57.207737        \N    \N    \N    0    \N    \N    \N    \N    female
15944    Kelly    Hammes    astrid@reichelbergstrom.biz    \N    Benin    Port Tina    7658 Hodkiewicz Forges    68592-8466    Pennsylvania    2016-08-02 23:51:55.594709    2016-10-14 13:02:57.224145        \N    \N    \N    0    \N    \N    \N    \N    male
15945    Trudie    Wolff    juana@kuphalfeil.info    \N    Vietnam    Mantechester    5373 McCullough Row    54905-1699    Connecticut    2016-09-26 01:03:36.784144    2016-10-14 13:02:57.229179        \N    \N    \N    0    \N    \N    \N    \N    female
15946    Reinhold    Hamill    rae@brekkemurray.co    \N    Ghana    Keelingbury    395 Muller Spurs    53525    New Hampshire    2016-09-24 03:33:02.228987    2016-10-14 13:02:57.234522        \N    \N    \N    0    \N    \N    \N    \N    female
15947    Hollis    Kiehn    randy.stoltenberg@johnston.biz    \N    Malawi    Karinashire    88351 Lowe Field    36970    Illinois    2016-07-17 15:52:01.456713    2016-10-14 13:02:57.239742        \N    \N    \N    0    \N    \N    \N    \N    male
15948    Liam    Runolfsson    frederik.ko@goodwinhartmann.net    \N    Belgium    North Oran    2480 Jones Plain    62291-0534    South Dakota    2016-09-03 04:40:19.985769    2016-10-14 13:02:57.244999        \N    \N    \N    0    \N    \N    \N    \N    female
15949    Valentine    Spencer    autumn.cruickshank@spencer.net    \N    Gibraltar    Seanville    26792 Lila Light    35751-6103    Louisiana    2016-09-21 18:24:01.825538    2016-10-14 13:02:57.250152        \N    \N    \N    0    \N    \N    \N    \N    female
15950    Eleonore    Kunde    chaim@smithwilderman.io    \N    Niger    West Chanelchester    1112 Carlotta Ports    63142    North Dakota    2016-09-03 13:27:07.308992    2016-10-14 13:02:57.254547        \N    \N    \N    0    \N    \N    \N    \N    male
15951    Efrain    Cummings    doris_turner@schulistlarkin.net    \N    New Caledonia    Allenport    4383 Hoeger Plains    54604    Wyoming    2016-06-30 08:02:46.477708    2016-10-14 13:02:57.259529        \N    \N    \N    0    \N    \N    \N    \N    female
15952    Muhammad    Koelpin    keyon@bruen.com    \N    Eritrea    West Henry    77461 Hayes Ways    63560-9959    Wyoming    2016-08-16 11:33:07.453292    2016-10-14 13:02:57.264074        \N    \N    \N    0    \N    \N    \N    \N    female
15953    Sidney    Eichmann    lazaro@mertz.com    \N    Somalia    Port Alessandra    182 Zaria Plains    38262-4264    Minnesota    2016-07-23 02:45:47.035016    2016-10-14 13:02:57.269194        \N    \N    \N    0    \N    \N    \N    \N    male
15954    Velda    Erdman    ashly.bednar@johnstonkaulke.biz    \N    India    South Triston    75476 Hoeger Crossing    59093-1096    Pennsylvania    2016-08-29 07:56:38.967911    2016-10-14 13:02:57.274828        \N    \N    \N    0    \N    \N    \N    \N    female
15955    Krystal    King    elliott_mccullough@hudson.com    \N    New Caledonia    East Uriahton    20231 Kreiger Bridge    85326-3301    Hawaii    2016-07-06 11:00:44.427067    2016-10-14 13:02:57.280024        \N    \N    \N    0    \N    \N    \N    \N    male
13005    Luisa    Ward    deborah@crona.name    \N    Namibia    New Juleshaven    7511 Alice Mall    61293    Arkansas    2016-09-05 13:07:26.483576    2016-10-14 13:02:57.289699        \N    \N    \N    0    \N    \N    \N    \N    male
15916    Deontae    Paucek    haley@mayerpfeffer.com    \N    Micronesia    Aydenchester    893 Kenton Avenue    27981    South Carolina    2016-08-13 03:12:09.953098    2016-10-14 13:02:57.294499        \N    \N    \N    0    \N    \N    \N    \N    female
15956    Isabel    Hermiston    hunter.moriette@heidenreich.com    \N    Somalia    Sydneyton    913 Zaria Shoals    13752-7063    Maine    2016-08-28 15:38:48.829684    2016-10-14 13:02:57.299263        \N    \N    \N    0    \N    \N    \N    \N    female
15957    Gianni    Harber    johnny@feest.name    \N    Virgin Islands, U.S.    Port Tyrique    381 Norwood Shoal    69235-8419    New York    2016-06-25 12:41:36.977556    2016-10-14 13:02:57.304296        \N    \N    \N    0    \N    \N    \N    \N    female
15958    Tevin    Kirlin    aletha_powlowski@turner.info    \N    Christmas Island    North Nellaside    9475 Barton Cliff    41808-3999    South Dakota    2016-09-04 12:20:30.72648    2016-10-14 13:02:57.311397        \N    \N    \N    0    \N    \N    \N    \N    female
15959    Ward    Padberg    luciano@lindgrenlebsack.org    \N    Thailand    West Alvera    48864 Solon Drive    96133-3486    South Dakota    2016-09-02 02:43:54.01042    2016-10-14 13:02:57.31722        \N    \N    \N    0    \N    \N    \N    \N    male
15960    Effie    Pouros    don_king@douglas.com    \N    Virgin Islands, British    Port Francisca    16672 Jast Valleys    67387    New Jersey    2016-07-29 03:03:26.75675    2016-10-14 13:02:57.322955        \N    \N    \N    0    \N    \N    \N    \N    male
15961    Cecile    Wunsch    general@shanahan.org    \N    Suriname    Farrellbury    6717 Lincoln Pines    63484-2139    Vermont    2016-06-24 07:40:28.644082    2016-10-14 13:02:57.32817        \N    \N    \N    0    \N    \N    \N    \N    female
15962    Mollie    Grant    nora.macgyver@lynchhowell.com    \N    Chile    Shanahanburgh    4696 Virginie Gateway    15323-8396    Hawaii    2016-08-10 20:00:12.622106    2016-10-14 13:02:57.333108        \N    \N    \N    0    \N    \N    \N    \N    male
15963    Elta    Littel    myron_fritsch@kertzmannlangworth.org    \N    South Georgia and the South Sandwich Islands    South Lilyanmouth    3873 Nannie Falls    88947-4820    Connecticut    2016-08-18 23:49:27.037591    2016-10-14 13:02:57.338089        \N    \N    \N    0    \N    \N    \N    \N    female
15964    Raul    Dare    marilyne@west.name    \N    Kuwait    Pollichton    2123 Jarod Knoll    44355-4750    Texas    2016-09-04 06:49:03.870498    2016-10-14 13:02:57.343512        \N    \N    \N    0    \N    \N    \N    \N    male
15965    Camren    Fay    hudson.ullrich@gaylord.com    \N    Vanuatu    Rauton    42177 Avis Rapids    96543    California    2016-07-16 17:09:12.310271    2016-10-14 13:02:57.34918        \N    \N    \N    0    \N    \N    \N    \N    female
15966    Johnnie    Batz    petra@rempel.biz    \N    Sri Lanka    Kassandraland    40728 Jamison Drive    73397    Iowa    2016-08-31 18:10:21.958787    2016-10-14 13:02:57.354873        \N    \N    \N    0    \N    \N    \N    \N    female
15967    Mayra    Schroeder    ludie_rodriguez@lehner.com    \N    Sweden    New Marilyne    57491 Sibyl Fork    85539    Virginia    2016-08-04 17:00:58.3133    2016-10-14 13:02:57.359954        \N    \N    \N    0    \N    \N    \N    \N    female
15968    Chasity    Larson    keshaun.bogan@schaefer.info    \N    Taiwan    O'Connerton    70763 Hilton Mountain    86721-9425    Washington    2016-08-17 01:28:54.348997    2016-10-14 13:02:57.365258        \N    \N    \N    0    \N    \N    \N    \N    male
15969    Myrtie    Rice    xavier.gulgowski@larkin.net    \N    Guinea-Bissau    North Dionfort    8243 Zander Course    29268-4232    Washington    2016-06-24 18:17:56.883396    2016-10-14 13:02:57.370345        \N    \N    \N    0    \N    \N    \N    \N    female
15970    Isac    Hane    adelle@kovacek.io    \N    Svalbard & Jan Mayen Islands    North Omari    748 Brianne Plaza    11024    New Hampshire    2016-08-19 06:50:10.067371    2016-10-14 13:02:57.374992        \N    \N    \N    0    \N    \N    \N    \N    female
15971    Roslyn    Stokes    mohamed@nitzsche.net    \N    Isle of Man    North Mylenemouth    97640 Kody Course    68126    Oregon    2016-07-24 03:35:44.258622    2016-10-14 13:02:57.38433        \N    \N    \N    0    \N    \N    \N    \N    male
16645    Domenica    Schamberger    camylle@skiles.info    \N    Gambia    New Carole    74824 Zieme Knoll    91240    Alabama    2016-09-04 15:57:30.041912    2016-10-14 13:03:01.351038        \N    \N    \N    0    \N    \N    \N    \N    female
15972    Arne    Sanford    dominic@nikolauswillms.com    \N    Turkey    West Wardstad    257 Smitham Locks    22952    Delaware    2016-07-21 12:30:05.449115    2016-10-14 13:02:57.394868        \N    \N    \N    0    \N    \N    \N    \N    female
15973    Eusebio    Quitzon    jacklyn@reilly.org    \N    Afghanistan    Trevaview    129 Stehr Spur    22472-0903    Utah    2016-08-21 12:42:14.306891    2016-10-14 13:02:57.400149        \N    \N    \N    0    \N    \N    \N    \N    female
15974    Fern    Mante    german@dickens.net    \N    Sweden    Lake Angeloburgh    5786 Sunny Meadow    24143    Georgia    2016-09-18 14:02:30.725539    2016-10-14 13:02:57.405424        \N    \N    \N    0    \N    \N    \N    \N    female
15975    Daren    Jacobi    destiny.hills@framicormier.biz    \N    United States of America    New Amiyashire    2095 Jakubowski Station    29200-4318    Tennessee    2016-09-17 11:18:44.508066    2016-10-14 13:02:57.413988        \N    \N    \N    0    \N    \N    \N    \N    male
15976    Edison    Friesen    hubert@denesikzboncak.io    \N    Saint Lucia    Olaview    391 Hermiston Fork    98972-2307    Pennsylvania    2016-08-31 19:43:47.007745    2016-10-14 13:02:57.423863        \N    \N    \N    0    \N    \N    \N    \N    female
15977    Hobart    Corwin    dasia@beer.net    \N    Mongolia    Lake Myaberg    720 Ebert Forge    97634-8273    Kansas    2016-07-06 07:23:20.374335    2016-10-14 13:02:57.433434        \N    \N    \N    0    \N    \N    \N    \N    male
15978    Elvera    Gottlieb    alysha.gaylord@witting.biz    \N    El Salvador    Port Kenyaville    33904 Bechtelar Freeway    79453-4965    Mississippi    2016-08-23 11:58:28.813325    2016-10-14 13:02:57.440066        \N    \N    \N    0    \N    \N    \N    \N    male
15979    Alvera    McGlynn    tyrell@quitzonsanford.net    \N    Suriname    Kubfurt    99681 Julian Meadow    77038    Wisconsin    2016-08-19 03:50:32.600539    2016-10-14 13:02:57.4532        \N    \N    \N    0    \N    \N    \N    \N    male
15980    Hailey    Gerhold    cathrine@weimann.biz    \N    Maldives    Daphneeside    247 Isom Track    49992-1332    Iowa    2016-09-15 21:45:51.840011    2016-10-14 13:02:57.458477        \N    \N    \N    0    \N    \N    \N    \N    male
15981    Bernadette    Ritchie    griffin@bashirian.biz    \N    Nigeria    South Randy    9868 Cassin Ferry    52564    Rhode Island    2016-08-31 14:43:30.651947    2016-10-14 13:02:57.463318        \N    \N    \N    0    \N    \N    \N    \N    female
15982    Laurine    Cartwright    trace_kshlerin@tremblaydare.com    \N    South Georgia and the South Sandwich Islands    Port Myriammouth    40936 Hilll Wall    20233-9365    South Carolina    2016-09-10 09:06:05.046687    2016-10-14 13:02:57.470613        \N    \N    \N    0    \N    \N    \N    \N    male
15983    Lexie    Johns    johnathon.spinka@prohaska.info    \N    Montenegro    North Otho    450 Loren Junction    69978-6583    Rhode Island    2016-09-26 05:43:13.284417    2016-10-14 13:02:57.476244        \N    \N    \N    0    \N    \N    \N    \N    male
15985    Willa    Sauer    marisa@macgyver.org    \N    Guinea    Cristopherfort    7184 Windler Dale    38109-4872    Minnesota    2016-06-26 21:04:02.477258    2016-10-14 13:02:57.480967        \N    \N    \N    0    \N    \N    \N    \N    male
15986    Martina    Collins    brigitte_prosacco@herman.com    \N    Libyan Arab Jamahiriya    South Everardoshire    5407 Ena Cove    19828    Arizona    2016-09-10 16:50:30.46171    2016-10-14 13:02:57.485136        \N    \N    \N    0    \N    \N    \N    \N    male
16041    Rod    Lynch    kobe@nicolas.biz    \N    Panama    Jacyntheville    4490 Anderson Throughway    26114    Maryland    2016-07-27 01:39:45.749807    2016-10-14 13:02:57.489356        \N    \N    \N    0    \N    \N    \N    \N    female
15987    Casimer    Green    margret.stracke@haaghackett.name    \N    Sudan    Lake Stephanie    276 McDermott Flat    87864-9130    Maryland    2016-07-18 08:30:00.279857    2016-10-14 13:02:57.494252        \N    \N    \N    0    \N    \N    \N    \N    male
15988    Xavier    Wuckert    cory.parker@schillermiller.org    \N    Pitcairn Islands    North Nevamouth    54767 Francisca Dam    91259    Wisconsin    2016-08-31 10:03:49.289849    2016-10-14 13:02:57.498727        \N    \N    \N    0    \N    \N    \N    \N    male
15989    Donald    West    kayla@gleasonparker.com    \N    Paraguay    North Sandrineton    1655 Jacobi Creek    54287-9564    Pennsylvania    2016-09-06 09:26:51.437071    2016-10-14 13:02:57.502924        \N    \N    \N    0    \N    \N    \N    \N    male
15990    Bennie    Kassulke    magdalena.wiza@conroyklein.name    \N    Madagascar    Breitenbergshire    92057 Amara Via    13873    New Jersey    2016-09-22 12:10:11.962173    2016-10-14 13:02:57.507814        \N    \N    \N    0    \N    \N    \N    \N    male
15991    Mariane    Kautzer    americo@bogisichblick.org    \N    United Arab Emirates    Mitchellville    1358 Angela Groves    51070    North Carolina    2016-07-29 18:16:34.622777    2016-10-14 13:02:57.512478        \N    \N    \N    0    \N    \N    \N    \N    female
15992    Katrine    Senger    shaina_koch@halvorsonchamplin.name    \N    Romania    West Zolafurt    852 Aaron Courts    97151    Illinois    2016-07-21 00:18:43.911888    2016-10-14 13:02:57.516799        \N    \N    \N    0    \N    \N    \N    \N    female
15993    Bobbie    Bernier    manley.hauck@gaylord.net    \N    Tajikistan    Nitzschebury    701 Porter Burg    86364-3013    Texas    2016-08-06 05:47:13.140305    2016-10-14 13:02:57.521834        \N    \N    \N    0    \N    \N    \N    \N    male
15994    Sedrick    Gleason    sammie@bartell.com    \N    Turks and Caicos Islands    Lake Jennifer    511 Wilfredo Ferry    88231    Hawaii    2016-08-05 03:02:51.651072    2016-10-14 13:02:57.526307        \N    \N    \N    0    \N    \N    \N    \N    female
15995    Madaline    Prosacco    ari@legroscasper.com    \N    Hungary    Malvinaberg    296 Hackett Spurs    37802-7274    Ohio    2016-07-08 21:56:53.709641    2016-10-14 13:02:57.53075        \N    \N    \N    0    \N    \N    \N    \N    male
15996    Rickey    Keeling    ericka_powlowski@mcclure.com    \N    Greece    North Alvertaside    7487 Anderson Brooks    51959    Ohio    2016-09-09 18:28:52.308709    2016-10-14 13:02:57.534958        \N    \N    \N    0    \N    \N    \N    \N    male
16550    Sophia    Johnston    titus.connelly@haag.org    \N    Greenland    West Rebecashire    730 Rowe Fords    92166    Wisconsin    2016-07-08 12:24:27.40388    2016-10-14 13:02:57.53965        \N    \N    \N    0    \N    \N    \N    \N    female
15997    Winfield    Erdman    malinda@daugherty.info    \N    Hungary    Lake Wyman    299 Karson Place    80978-0802    Maine    2016-07-30 07:49:37.643214    2016-10-14 13:02:57.544449        \N    \N    \N    0    \N    \N    \N    \N    female
15998    Phoebe    Stiedemann    ahmed_bartoletti@grimes.io    \N    Tajikistan    Lake Caden    924 Anita Falls    39273-1256    Georgia    2016-09-28 02:03:47.909007    2016-10-14 13:02:57.549865        \N    \N    \N    0    \N    \N    \N    \N    female
15999    Izaiah    McLaughlin    shanny.koepp@feest.com    \N    Thailand    East Oceanechester    5468 Mattie Lodge    11852-4887    South Dakota    2016-07-10 12:12:07.099842    2016-10-14 13:02:57.554088        \N    \N    \N    0    \N    \N    \N    \N    male
16000    Nikolas    Kirlin    pascale@thompson.name    \N    Republic of Korea    Port Andrestown    211 Kunde Glens    97698-1879    Florida    2016-07-05 07:28:54.173549    2016-10-14 13:02:57.558265        \N    \N    \N    0    \N    \N    \N    \N    male
16001    Vladimir    Schamberger    maritza_walker@moore.co    \N    Russian Federation    South Kameron    6878 Krista Rest    94822-1265    Massachusetts    2016-08-02 04:38:18.6111    2016-10-14 13:02:57.562549        \N    \N    \N    0    \N    \N    \N    \N    female
16002    Lexi    Quitzon    verla@hackett.co    \N    Eritrea    Kerlukefort    778 Hansen Island    79240-9433    Nebraska    2016-07-15 12:31:45.872331    2016-10-14 13:02:57.566811        \N    \N    \N    0    \N    \N    \N    \N    female
16003    Joe    Robel    baby@ankunding.name    \N    Niger    New Odieville    434 Magdalena Flat    95740-5888    Hawaii    2016-07-04 23:13:16.167203    2016-10-14 13:02:57.572805        \N    \N    \N    0    \N    \N    \N    \N    male
16004    Kristy    Corkery    abigale.hauck@kuphal.org    \N    Djibouti    South Amparoville    527 Kim Flats    50783-6905    West Virginia    2016-06-25 18:15:52.007623    2016-10-14 13:02:57.577668        \N    \N    \N    0    \N    \N    \N    \N    female
16005    Taurean    Crist    josefa.becker@murphy.org    \N    Uganda    Lake Hermannborough    7396 Armando Plaza    91111-7305    Maryland    2016-08-15 17:07:44.052953    2016-10-14 13:02:57.581871        \N    \N    \N    0    \N    \N    \N    \N    male
16006    Aida    Hamill    mark@blanda.info    \N    Saint Vincent and the Grenadines    Alenaton    188 Price Manor    76682-8461    Kentucky    2016-06-24 13:19:22.31552    2016-10-14 13:02:57.585918        \N    \N    \N    0    \N    \N    \N    \N    male
16007    Cecil    Treutel    cindy_tillman@homenickmoen.org    \N    Puerto Rico    Linnietown    83099 McKenzie Unions    28287-7920    Tennessee    2016-08-01 18:04:35.470628    2016-10-14 13:02:57.59005        \N    \N    \N    0    \N    \N    \N    \N    female
16008    Deshawn    Steuber    jensen@macejkovic.io    \N    Georgia    Baileeburgh    500 Frami Pines    60568-6676    Missouri    2016-07-28 11:25:21.266452    2016-10-14 13:02:57.594539        \N    \N    \N    0    \N    \N    \N    \N    male
16009    Robbie    Fisher    sabryna_bruen@marks.info    \N    Mauritania    Heaneychester    8066 Opal Tunnel    73394    Maine    2016-07-12 04:55:19.493076    2016-10-14 13:02:57.598482        \N    \N    \N    0    \N    \N    \N    \N    male
16010    Jermain    Rutherford    sierra@nolan.biz    \N    Romania    Fanniehaven    4623 Ebert Creek    91040    Colorado    2016-09-25 23:35:36.600747    2016-10-14 13:02:57.602695        \N    \N    \N    0    \N    \N    \N    \N    male
16013    Domenic    Eichmann    kayla.williamson@bode.biz    \N    Croatia    North Fernando    75568 Brown Manors    98843    Nevada    2016-06-27 00:43:50.454282    2016-10-14 13:02:57.606773        \N    \N    \N    0    \N    \N    \N    \N    male
16015    Blaise    Rice    sabina@considine.org    \N    Guam    Maryborough    3917 Metz Valley    49506    Nevada    2016-09-04 17:26:32.321044    2016-10-14 13:02:57.611007        \N    \N    \N    0    \N    \N    \N    \N    male
16016    Earnestine    Wiegand    nedra.ernser@zemlakmante.net    \N    Aruba    Katrinechester    473 Boehm Roads    55603    Oklahoma    2016-07-07 12:03:53.27415    2016-10-14 13:02:57.615281        \N    \N    \N    0    \N    \N    \N    \N    female
16017    Joelle    Bradtke    shawna@hyatt.net    \N    Cape Verde    New Edwardomouth    825 VonRueden Groves    28283    South Dakota    2016-06-28 07:11:51.582934    2016-10-14 13:02:57.61971        \N    \N    \N    0    \N    \N    \N    \N    female
16018    Alec    Funk    dan_king@simonis.biz    \N    Libyan Arab Jamahiriya    New Kyleighbury    8634 Forrest Port    52465-2834    Maine    2016-07-22 23:30:05.981223    2016-10-14 13:02:57.624136        \N    \N    \N    0    \N    \N    \N    \N    male
16019    Edwardo    Botsford    frederic@schulist.org    \N    Yemen    Rolfsonhaven    647 Melyna Walk    48057-0787    North Dakota    2016-08-23 19:34:36.826648    2016-10-14 13:02:57.628666        \N    \N    \N    0    \N    \N    \N    \N    male
16020    Jordon    Graham    abner@marquardt.co    \N    Bermuda    New Abbeyland    2132 Anderson Courts    68963-8835    Colorado    2016-07-19 22:53:58.446535    2016-10-14 13:02:57.63306        \N    \N    \N    0    \N    \N    \N    \N    male
16022    Mireya    Gusikowski    nadia.conn@boyle.com    \N    Latvia    Lake Cierraville    67263 Hauck Parkways    80155    Florida    2016-08-19 04:27:27.128146    2016-10-14 13:02:57.637371        \N    \N    \N    0    \N    \N    \N    \N    male
16023    Adeline    Sipes    serenity.stiedemann@stokes.name    \N    Honduras    Lake Rebekahport    4033 Henderson Shore    13457    Maryland    2016-06-30 18:46:04.022291    2016-10-14 13:02:57.641646        \N    \N    \N    0    \N    \N    \N    \N    male
16024    Merritt    Hintz    aliyah@moore.biz    \N    Northern Mariana Islands    Krismouth    4546 Larson Road    27813    Iowa    2016-08-24 04:28:30.182521    2016-10-14 13:02:57.645924        \N    \N    \N    0    \N    \N    \N    \N    female
16025    Erin    Bernhard    lindsay@franecki.info    \N    Lao People's Democratic Republic    Samirville    5922 Jacinto Island    48011    Maryland    2016-07-06 07:37:22.035188    2016-10-14 13:02:57.650564        \N    \N    \N    0    \N    \N    \N    \N    male
16027    Shanel    Botsford    hayley.effertz@oconnell.io    \N    Macao    East Carlo    64527 Nikolaus Summit    91521-6065    Missouri    2016-08-11 21:43:00.322416    2016-10-14 13:02:57.654711        \N    \N    \N    0    \N    \N    \N    \N    female
16028    Jonathon    Lockman    ramona@boyle.info    \N    Gambia    Lemkefurt    656 Arturo Lights    52390-2284    North Dakota    2016-08-09 22:14:50.733001    2016-10-14 13:02:57.659002        \N    \N    \N    0    \N    \N    \N    \N    female
16030    Gilbert    Nienow    landen@bahringerconn.info    \N    Zambia    Jerdemouth    42136 Cartwright Vista    80291    Iowa    2016-08-28 07:52:39.076357    2016-10-14 13:02:57.663021        \N    \N    \N    0    \N    \N    \N    \N    male
16031    Audra    Rogahn    cleora@lindgren.net    \N    Kiribati    Angelaburgh    1407 Maybelle Trace    38702    Montana    2016-08-23 09:47:10.886657    2016-10-14 13:02:57.667147        \N    \N    \N    0    \N    \N    \N    \N    male
16032    Twila    Davis    mabelle.rempel@mayertondricka.org    \N    Faroe Islands    Lake Emie    72201 Joesph Village    52379-3525    California    2016-09-28 03:24:21.838517    2016-10-14 13:02:57.671694        \N    \N    \N    0    \N    \N    \N    \N    male
16033    Bradley    Dicki    furman_mclaughlin@herzog.io    \N    Mauritius    Scotview    839 Kuhn Trail    99482    Idaho    2016-09-21 01:07:06.171372    2016-10-14 13:02:57.677972        \N    \N    \N    0    \N    \N    \N    \N    male
16034    Bruce    Powlowski    arturo@hilll.info    \N    Malawi    North Brain    463 Carolyne Street    87392    Michigan    2016-09-02 05:19:27.935544    2016-10-14 13:02:57.683135        \N    \N    \N    0    \N    \N    \N    \N    male
16035    Monserrate    Price    pascale@windler.com    \N    Hungary    Doylehaven    8917 Devin Union    70510    Kentucky    2016-08-04 07:14:20.222121    2016-10-14 13:02:57.687768        \N    \N    \N    0    \N    \N    \N    \N    female
16036    Tobin    O'Conner    rita@brekkerobel.io    \N    Guyana    Lakinstad    935 Orn Islands    83607    Delaware    2016-06-26 16:32:29.149203    2016-10-14 13:02:57.692505        \N    \N    \N    0    \N    \N    \N    \N    male
16037    Nils    MacGyver    bradly@hahnerdman.net    \N    Solomon Islands    North Zion    62099 Doyle Rapid    31087    Indiana    2016-07-24 09:27:13.260046    2016-10-14 13:02:57.698283        \N    \N    \N    0    \N    \N    \N    \N    male
16038    Rosario    Adams    berneice@effertz.org    \N    Suriname    New Judeburgh    49786 Anderson Ridges    90119    Tennessee    2016-09-01 12:02:43.345798    2016-10-14 13:02:57.703069        \N    \N    \N    0    \N    \N    \N    \N    male
16039    Serenity    Orn    eric.ullrich@brakus.org    \N    Portugal    Walterside    5122 Henry Drive    63184-7350    New Jersey    2016-08-07 17:03:16.362747    2016-10-14 13:02:57.70856        \N    \N    \N    0    \N    \N    \N    \N    male
16040    Derick    Mayert    guido.williamson@gottlieb.biz    \N    Lao People's Democratic Republic    Reingerview    938 Nasir Flats    94501-8295    Rhode Island    2016-09-23 18:49:07.429198    2016-10-14 13:02:57.722748        \N    \N    \N    0    \N    \N    \N    \N    male
16042    Jimmie    Zieme    jasmin@hamill.org    \N    Saint Lucia    Anselstad    962 Darryl Fields    33775-4197    Nevada    2016-09-05 08:19:50.977339    2016-10-14 13:02:57.727444        \N    \N    \N    0    \N    \N    \N    \N    male
16043    Godfrey    Mann    effie@kozeyhermann.net    \N    Mongolia    South Camerontown    736 Laisha Canyon    10301-3528    Florida    2016-07-18 13:28:24.427829    2016-10-14 13:02:57.732006        \N    \N    \N    0    \N    \N    \N    \N    female
16044    Dejah    Torp    amelia_smith@muller.biz    \N    Macao    Tysonhaven    429 Feest Ranch    53392-3595    Minnesota    2016-09-01 17:40:37.469623    2016-10-14 13:02:57.738797        \N    \N    \N    0    \N    \N    \N    \N    male
16045    Danny    Rempel    jeie_spinka@oconnell.info    \N    Kuwait    Port Wilson    21660 Hahn Unions    99934-7877    Virginia    2016-09-16 21:24:26.225948    2016-10-14 13:02:57.743939        \N    \N    \N    0    \N    \N    \N    \N    female
16046    Cortez    Pfeffer    rosalee_torphy@prohaska.biz    \N    Niger    Breitenbergstad    188 Raymundo Canyon    20920    Oklahoma    2016-09-24 20:49:07.593443    2016-10-14 13:02:57.748995        \N    \N    \N    0    \N    \N    \N    \N    female
16047    Otha    Rowe    anne.reichert@hyatt.biz    \N    Jordan    Sengerberg    9962 Dee Green    54428-6270    Vermont    2016-07-15 12:01:09.760546    2016-10-14 13:02:57.753906        \N    \N    \N    0    \N    \N    \N    \N    male
16048    Eliane    Hyatt    earl_cremin@satterfieldokon.info    \N    Slovakia (Slovak Republic)    Elouisefurt    130 Stroman Squares    25879    South Dakota    2016-09-13 05:25:38.053017    2016-10-14 13:02:57.75843        \N    \N    \N    0    \N    \N    \N    \N    female
16049    Penelope    Runolfsdottir    annamae_watsica@colewaters.net    \N    Tunisia    Murphyburgh    83776 Camden Terrace    33748    Texas    2016-08-31 15:09:28.9802    2016-10-14 13:02:57.763304        \N    \N    \N    0    \N    \N    \N    \N    male
16050    Charlotte    Wiza    milo.schimmel@cole.com    \N    Kazakhstan    Leuschkebury    92562 Nels Via    81680-0847    New Mexico    2016-07-24 11:16:58.069856    2016-10-14 13:02:57.768136        \N    \N    \N    0    \N    \N    \N    \N    male
16051    Denis    Welch    eunice_hickle@hand.biz    \N    Oman    Lake Berneiceshire    81460 Francis Fork    49365-4605    Ohio    2016-06-22 17:56:46.295482    2016-10-14 13:02:57.772911        \N    \N    \N    0    \N    \N    \N    \N    male
16052    Rory    Johnston    talia.hand@davistoy.name    \N    Slovenia    Port Frankie    430 Lafayette Junction    36977    Kansas    2016-08-29 12:29:06.999971    2016-10-14 13:02:57.777525        \N    \N    \N    0    \N    \N    \N    \N    female
16053    Isac    Wintheiser    kathleen@koch.co    \N    French Polynesia    New Jessicafurt    719 Noemi Drive    71234    Illinois    2016-08-14 06:24:39.571303    2016-10-14 13:02:57.781961        \N    \N    \N    0    \N    \N    \N    \N    female
16054    Madalyn    Stamm    austin@marvintromp.net    \N    Lao People's Democratic Republic    Port Reva    4402 Meaghan Summit    87503-8330    Rhode Island    2016-08-23 14:33:01.60281    2016-10-14 13:02:57.786693        \N    \N    \N    0    \N    \N    \N    \N    male
16055    Nick    Reinger    sonya@bayer.io    \N    Guatemala    New Mayport    48115 Kali Greens    44839    Indiana    2016-06-29 17:57:57.993655    2016-10-14 13:02:57.791894        \N    \N    \N    0    \N    \N    \N    \N    male
16056    Robyn    Wilderman    jane.bernier@fahey.co    \N    Western Sahara    Hoegermouth    53203 Weber Flats    51099-9235    Maryland    2016-07-18 17:56:22.052203    2016-10-14 13:02:57.796805        \N    \N    \N    0    \N    \N    \N    \N    male
16057    Minnie    Halvorson    marjory@baumbach.co    \N    Dominican Republic    South Mabelberg    317 Abbie Forest    91739    New Mexico    2016-08-18 16:05:04.238764    2016-10-14 13:02:57.802019        \N    \N    \N    0    \N    \N    \N    \N    female
16058    Trycia    Connelly    marina_jacobi@bauchemard.biz    \N    Portugal    Lake Mya    38263 Jordi Locks    28449-8863    Missouri    2016-07-05 07:55:11.180103    2016-10-14 13:02:57.806979        \N    \N    \N    0    \N    \N    \N    \N    female
16059    Jarred    Nader    quinton_crooks@rau.name    \N    Niger    Lake Ottis    368 Wisozk Lodge    66932    Oregon    2016-07-24 12:12:16.715222    2016-10-14 13:02:57.81219        \N    \N    \N    0    \N    \N    \N    \N    male
16060    Candida    Sauer    isaiah@wisoky.com    \N    Ukraine    Pacochaborough    925 Emerald Mountain    23251    New Hampshire    2016-07-10 12:40:39.666278    2016-10-14 13:02:57.816737        \N    \N    \N    0    \N    \N    \N    \N    female
16061    Liza    Kuphal    rhea@wymanohara.biz    \N    Andorra    Port Jaclynville    2040 Terry Point    99217    Louisiana    2016-08-24 16:53:36.482261    2016-10-14 13:02:57.821343        \N    \N    \N    0    \N    \N    \N    \N    female
16062    Desiree    Dicki    chad@howellsauer.co    \N    Virgin Islands, U.S.    Kesslerstad    2485 Kling Glen    74951-4087    Delaware    2016-08-29 02:40:46.998362    2016-10-14 13:02:57.82657        \N    \N    \N    0    \N    \N    \N    \N    female
16063    Chase    Ledner    alex@ryan.biz    \N    Andorra    West Trystanmouth    1659 Kaylee Village    54558-4112    Florida    2016-09-05 00:08:41.36783    2016-10-14 13:02:57.831271        \N    \N    \N    0    \N    \N    \N    \N    male
16064    Brennon    Welch    mallory.wolf@kuhickulas.co    \N    Wallis and Futuna    North Lew    20580 Bernadette Pine    68639    Iowa    2016-07-19 10:52:29.203174    2016-10-14 13:02:57.835834        \N    \N    \N    0    \N    \N    \N    \N    female
16065    Mike    Williamson    verna.cormier@quitzonlebsack.biz    \N    Oman    Adahberg    3598 Kautzer Crescent    38555    Mississippi    2016-07-10 00:06:20.237225    2016-10-14 13:02:57.841194        \N    \N    \N    0    \N    \N    \N    \N    male
16066    Alexzander    Rutherford    vance.ernser@stehr.name    \N    Monaco    West Janice    62186 Josiane Rapids    72661-2866    Arizona    2016-06-23 05:42:43.076301    2016-10-14 13:02:57.848402        \N    \N    \N    0    \N    \N    \N    \N    female
16067    Daryl    Boehm    leonel.mcglynn@leuschke.net    \N    Jordan    Karinamouth    26208 Ledner Overpass    97706    Kentucky    2016-07-19 11:10:24.975806    2016-10-14 13:02:57.853999        \N    \N    \N    0    \N    \N    \N    \N    male
16644    Cathrine    Stanton    benny@steuber.co    \N    Albania    Urbantown    490 Kuhlman Glen    97416-0329    Idaho    2016-06-27 17:00:00.036566    2016-10-14 13:03:01.345583        \N    \N    \N    0    \N    \N    \N    \N    male
16068    Forrest    Bechtelar    kameron@stehr.info    \N    Sierra Leone    Reicheltown    29258 Luettgen Extensions    98232    California    2016-08-20 14:55:48.010313    2016-10-14 13:02:57.86426        \N    \N    \N    0    \N    \N    \N    \N    female
17081    Porter    Kerluke    valerie@prosacco.com    \N    Mali    Port Lucinda    416 Schaden Heights    75242    Wisconsin    2016-07-23 14:12:11.016217    2016-10-14 13:03:03.480948        \N    \N    \N    0    \N    \N    \N    \N    male
16069    Jovany    Howell    hubert.tremblay@gleichnerjerde.net    \N    Sierra Leone    South Stan    608 Derrick Lodge    37396-6527    Oklahoma    2016-08-04 16:37:43.311633    2016-10-14 13:02:57.870619        \N    \N    \N    0    \N    \N    \N    \N    male
16070    Tamara    Stokes    else.jacobson@harbernienow.co    \N    Algeria    South Tonymouth    803 Lenora Ports    40237-5494    Tennessee    2016-07-23 21:11:45.64361    2016-10-14 13:02:57.876089        \N    \N    \N    0    \N    \N    \N    \N    female
16071    Deion    Streich    haylie@auerschneider.co    \N    India    West Zakaryberg    8528 Alanna Rue    34708-0510    Montana    2016-07-26 21:24:04.376753    2016-10-14 13:02:57.881445        \N    \N    \N    0    \N    \N    \N    \N    female
16072    Holden    Kemmer    golden.roberts@hartmannwalter.name    \N    Tanzania    West Skyeview    35183 Flatley Road    27628-7181    Kentucky    2016-09-29 12:34:39.52175    2016-10-14 13:02:57.886966        \N    \N    \N    0    \N    \N    \N    \N    male
16073    Gilda    D'Amore    willow@jenkins.org    \N    South Georgia and the South Sandwich Islands    Quitzonberg    89727 Meredith Lodge    35829-0843    Massachusetts    2016-07-23 10:21:18.99188    2016-10-14 13:02:57.892711        \N    \N    \N    0    \N    \N    \N    \N    female
16074    Emory    Spinka    may_conn@fay.name    \N    Norfolk Island    Lavernview    770 Auer Curve    52653    Arizona    2016-09-05 13:10:30.974705    2016-10-14 13:02:57.899535        \N    \N    \N    0    \N    \N    \N    \N    male
16075    Rosie    Schmidt    destin_zulauf@koepp.io    \N    Panama    Josiahmouth    885 Cory Knolls    10300    California    2016-07-05 03:23:55.14406    2016-10-14 13:02:57.905027        \N    \N    \N    0    \N    \N    \N    \N    male
16076    Lexie    Metz    flavie@lindwuckert.co    \N    Burundi    Jacquesfurt    50613 Elissa Rapid    34077-2062    Arizona    2016-06-27 12:37:02.311001    2016-10-14 13:02:57.910638        \N    \N    \N    0    \N    \N    \N    \N    female
16077    Hazle    Hackett    brad_little@schulist.biz    \N    Macao    Ricechester    54568 Johnny Ridge    22096    New Jersey    2016-08-10 11:11:44.944911    2016-10-14 13:02:57.916261        \N    \N    \N    0    \N    \N    \N    \N    male
16078    Nya    Bins    billie.gibson@rohan.info    \N    Nauru    Demondside    831 Littel Ville    88951-0108    West Virginia    2016-07-10 17:36:45.283476    2016-10-14 13:02:57.921811        \N    \N    \N    0    \N    \N    \N    \N    male
16079    Chaim    Hackett    tyshawn@aufderhar.name    \N    Portugal    South Darian    1613 Okuneva Turnpike    58811-6534    Washington    2016-09-21 12:17:44.951858    2016-10-14 13:02:57.92869        \N    \N    \N    0    \N    \N    \N    \N    female
16080    Jailyn    Leannon    deon@connelly.biz    \N    Italy    New Marjorie    39472 Ortiz Common    96711    Massachusetts    2016-08-07 13:21:39.509461    2016-10-14 13:02:57.935455        \N    \N    \N    0    \N    \N    \N    \N    female
16081    Deshaun    Carter    della@haaghaag.net    \N    Fiji    Gottliebhaven    6030 Lesley Dale    33057-5931    Wyoming    2016-08-18 21:33:35.268883    2016-10-14 13:02:57.942047        \N    \N    \N    0    \N    \N    \N    \N    female
16082    Anne    Nikolaus    sammy@cummerata.io    \N    Canada    West Jimmyhaven    6907 Murazik Ways    82651    Nevada    2016-06-25 04:53:01.898015    2016-10-14 13:02:57.947655        \N    \N    \N    0    \N    \N    \N    \N    female
16083    Michaela    Miller    shaylee@fisher.net    \N    Qatar    Carsonfurt    7573 Jakubowski Spring    70461-6346    New York    2016-09-20 13:31:53.26263    2016-10-14 13:02:57.952778        \N    \N    \N    0    \N    \N    \N    \N    male
16084    Keith    Kemmer    oral.wisozk@stroman.io    \N    Barbados    Shakirashire    69710 Nienow Brooks    62493    Nevada    2016-08-20 17:58:59.833954    2016-10-14 13:02:57.958495        \N    \N    \N    0    \N    \N    \N    \N    female
16086    Zola    Rosenbaum    caie.mccullough@green.io    \N    Jersey    Susanport    72917 Homenick Mountain    22083-6408    South Carolina    2016-07-11 10:18:37.222216    2016-10-14 13:02:57.96336        \N    \N    \N    0    \N    \N    \N    \N    male
16087    Tomas    Beer    jayden@zulaufherman.co    \N    Romania    Trompberg    7209 Keeling Land    46055-4490    Massachusetts    2016-07-09 12:04:16.392743    2016-10-14 13:02:57.968267        \N    \N    \N    0    \N    \N    \N    \N    female
16088    Jena    Schuster    eleanore_hettinger@tremblay.org    \N    Congo    Cecilport    46099 Cummerata Spring    37261-3466    Maine    2016-08-26 19:15:07.652186    2016-10-14 13:02:57.974511        \N    \N    \N    0    \N    \N    \N    \N    female
16089    Rusty    Dicki    dante@nicolashettinger.co    \N    Barbados    New Kiannashire    318 Stokes Station    29295-1679    Maine    2016-06-24 20:56:44.140394    2016-10-14 13:02:57.97998        \N    \N    \N    0    \N    \N    \N    \N    female
16090    Scottie    Feil    reta@oconnell.biz    \N    Zambia    Schultzville    16878 Americo Fall    17357    Minnesota    2016-07-08 20:14:16.178879    2016-10-14 13:02:57.98489        \N    \N    \N    0    \N    \N    \N    \N    male
16091    Jesus    Goldner    ruthe.runolfsdottir@lebsackkuphal.name    \N    American Samoa    Rauside    38693 Tremblay Burgs    36829    California    2016-07-06 03:54:50.233254    2016-10-14 13:02:57.990015        \N    \N    \N    0    \N    \N    \N    \N    female
16092    Zackery    Turner    dolly@spencer.info    \N    Cayman Islands    Vidabury    181 Matilde Harbor    91389-2759    Maryland    2016-09-28 23:12:11.057985    2016-10-14 13:02:57.996225        \N    \N    \N    0    \N    \N    \N    \N    female
16093    Dejon    Kautzer    shad.torphy@abshire.io    \N    Ecuador    Tinaborough    91214 Micah Island    75911    New York    2016-07-07 15:30:01.942197    2016-10-14 13:02:58.001659        \N    \N    \N    0    \N    \N    \N    \N    male
16094    Herminia    Bradtke    arnaldo.carter@mayer.io    \N    Cook Islands    North Madelynhaven    67826 Bauch Glen    47180-3794    Alaska    2016-06-29 18:00:31.382085    2016-10-14 13:02:58.006331        \N    \N    \N    0    \N    \N    \N    \N    male
16095    Lindsay    Tromp    rowena.leuschke@hahn.co    \N    Gabon    Doylestad    101 Schmidt Pass    27573-9458    Oregon    2016-09-12 10:49:18.366754    2016-10-14 13:02:58.011773        \N    \N    \N    0    \N    \N    \N    \N    male
16096    Jarod    Morar    william_leffler@johns.org    \N    Saint Pierre and Miquelon    North Emmet    99364 Sawayn Tunnel    25743-5185    Georgia    2016-07-09 01:38:37.353056    2016-10-14 13:02:58.017069        \N    \N    \N    0    \N    \N    \N    \N    male
16097    Kimberly    Collier    lavonne@baumbach.io    \N    Malta    North Alverabury    889 MacGyver Mountain    21471    Iowa    2016-09-29 04:34:31.140478    2016-10-14 13:02:58.022833        \N    \N    \N    0    \N    \N    \N    \N    male
16098    Dameon    Ortiz    emily@spencer.com    \N    India    South Kariane    2324 Bernice Valleys    23414    Nebraska    2016-08-24 18:35:26.655874    2016-10-14 13:02:58.028381        \N    \N    \N    0    \N    \N    \N    \N    female
16099    Ima    Schowalter    zella@jacobson.name    \N    Botswana    VonRuedenshire    64624 Adolph Pine    91846    Oregon    2016-08-01 18:08:35.431369    2016-10-14 13:02:58.078809        \N    \N    \N    0    \N    \N    \N    \N    male
16100    Mike    Anderson    vivien@fahey.net    \N    Lao People's Democratic Republic    Autumnside    204 Dustin Meadows    20611    Illinois    2016-08-14 07:49:23.624864    2016-10-14 13:02:58.08706        \N    \N    \N    0    \N    \N    \N    \N    female
16101    Autumn    Corwin    trey@ortiz.biz    \N    Iran    Lake Minnieville    65903 Michel Island    91493    Massachusetts    2016-08-02 17:29:56.871995    2016-10-14 13:02:58.09356        \N    \N    \N    0    \N    \N    \N    \N    female
16102    Leonor    Mayert    bartholome@vonbatz.org    \N    Guyana    Waelchimouth    9922 Flatley Points    41522-8754    New Hampshire    2016-09-03 12:14:06.913514    2016-10-14 13:02:58.098367        \N    \N    \N    0    \N    \N    \N    \N    male
16103    Stephan    Marquardt    jo@adams.net    \N    Tuvalu    Dameonside    45707 Rigoberto Union    64180-4231    Maine    2016-07-20 15:57:49.405292    2016-10-14 13:02:58.103396        \N    \N    \N    0    \N    \N    \N    \N    female
16104    Luis    Bosco    lysanne@ratke.org    \N    Mauritius    Stoltenbergshire    33632 Schumm Mountain    56006-1110    Louisiana    2016-09-10 11:02:36.437249    2016-10-14 13:02:58.108316        \N    \N    \N    0    \N    \N    \N    \N    female
16105    Victoria    Dach    sister_abbott@framimarvin.io    \N    Pakistan    East Maureen    38489 Lubowitz Plain    40582-5071    North Dakota    2016-08-07 14:24:07.307357    2016-10-14 13:02:58.114792        \N    \N    \N    0    \N    \N    \N    \N    female
16106    Julio    Dicki    keven@grahamswift.biz    \N    Togo    West Shayleeshire    7031 Lula Squares    17782-4073    Colorado    2016-07-27 08:06:24.814773    2016-10-14 13:02:58.119879        \N    \N    \N    0    \N    \N    \N    \N    female
16107    Verna    Auer    mikel.mccullough@mclaughlin.org    \N    Puerto Rico    East Darionmouth    551 Tess Glens    71534-0174    Hawaii    2016-08-09 09:52:57.162695    2016-10-14 13:02:58.124736        \N    \N    \N    0    \N    \N    \N    \N    male
16108    Chandler    Nicolas    joy@wymanthompson.co    \N    Cyprus    South Kileyhaven    5551 Ladarius Spring    34228-8131    North Dakota    2016-07-31 02:22:14.836364    2016-10-14 13:02:58.129741        \N    \N    \N    0    \N    \N    \N    \N    male
16109    Waldo    Morar    antonette@watsica.net    \N    Seychelles    West Grahamhaven    85052 Kaya Isle    53670-9301    Colorado    2016-07-27 20:07:14.172037    2016-10-14 13:02:58.135838        \N    \N    \N    0    \N    \N    \N    \N    male
16110    Brennon    Doyle    harry@murray.biz    \N    Liechtenstein    West Garland    365 Koepp Courts    94773-4438    Indiana    2016-07-29 01:08:59.119982    2016-10-14 13:02:58.141155        \N    \N    \N    0    \N    \N    \N    \N    male
16111    Lucas    Torphy    effie@jakubowskidubuque.net    \N    Malaysia    Howellbury    6541 Carroll Fords    79186    Connecticut    2016-07-01 08:19:02.132222    2016-10-14 13:02:58.147681        \N    \N    \N    0    \N    \N    \N    \N    male
16112    Levi    Lubowitz    muhammad@nicolas.biz    \N    Saint Vincent and the Grenadines    Dooleyberg    55798 Mozell Keys    55996-9178    Georgia    2016-07-24 16:46:01.86266    2016-10-14 13:02:58.152525        \N    \N    \N    0    \N    \N    \N    \N    female
16113    Arnoldo    Kautzer    maurine@strosinlindgren.org    \N    Madagascar    West Ludie    1088 Harvey Hills    47054-7918    Arizona    2016-09-10 16:50:53.495495    2016-10-14 13:02:58.157751        \N    \N    \N    0    \N    \N    \N    \N    male
16114    Moses    Herman    bertram.grimes@hirthe.org    \N    Trinidad and Tobago    South Evieberg    31711 Ledner View    48505-9763    Rhode Island    2016-09-08 10:45:45.323198    2016-10-14 13:02:58.164877        \N    \N    \N    0    \N    \N    \N    \N    female
16115    Myron    Larson    mellie_murphy@altenwerth.biz    \N    Fiji    New Graham    2851 Schmitt Park    55267-7286    Montana    2016-09-04 06:39:25.650703    2016-10-14 13:02:58.170274        \N    \N    \N    0    \N    \N    \N    \N    female
16116    Fletcher    Prohaska    isabell_lemke@mills.net    \N    Guam    Lake Mark    8363 Jerry Field    24532-4786    Missouri    2016-08-25 11:03:15.427881    2016-10-14 13:02:58.175896        \N    \N    \N    0    \N    \N    \N    \N    male
16117    Zachariah    Strosin    van@beahan.org    \N    Senegal    South Hudsonfort    1212 Gorczany Summit    45387-5734    Massachusetts    2016-09-20 08:09:04.484536    2016-10-14 13:02:58.18297        \N    \N    \N    0    \N    \N    \N    \N    male
16118    Colten    Reynolds    rebeka@shields.net    \N    Colombia    Port Augustine    402 Floyd Cliff    92023-1490    North Dakota    2016-08-29 00:51:42.036426    2016-10-14 13:02:58.188649        \N    \N    \N    0    \N    \N    \N    \N    male
16119    Ernest    Auer    esperanza.bartell@hauck.org    \N    Malawi    Howardstad    7726 Witting Rest    20262    Wisconsin    2016-09-02 13:07:27.369206    2016-10-14 13:02:58.194256        \N    \N    \N    0    \N    \N    \N    \N    male
16122    Kelton    Goodwin    tommie@brakusebert.net    \N    Belarus    Port Brianneview    137 Walton Parks    74713-8715    Mississippi    2016-08-25 08:29:20.903451    2016-10-14 13:02:58.202106        \N    \N    \N    0    \N    \N    \N    \N    male
16123    Spencer    Ritchie    gaston@pacocha.info    \N    Uruguay    North Gregorio    6585 Maude Cape    20390    West Virginia    2016-07-27 11:26:13.152017    2016-10-14 13:02:58.207414        \N    \N    \N    0    \N    \N    \N    \N    female
16124    Rodger    Kozey    lorenzo_littel@roobheidenreich.name    \N    Azerbaijan    Port Wendy    839 Goyette Light    54194    Iowa    2016-08-14 17:22:11.475456    2016-10-14 13:02:58.212433        \N    \N    \N    0    \N    \N    \N    \N    male
16125    Tyson    Labadie    jaydon.wehner@braunprosacco.biz    \N    Latvia    Carmeloside    15422 MacGyver Pass    38286-0929    Alabama    2016-09-04 07:40:20.054939    2016-10-14 13:02:58.219163        \N    \N    \N    0    \N    \N    \N    \N    female
16126    Brent    Ward    jarvis_keeling@mantebogan.org    \N    Liberia    Keelingtown    31048 Gudrun Gardens    62028-3550    Texas    2016-09-15 18:20:33.827442    2016-10-14 13:02:58.226228        \N    \N    \N    0    \N    \N    \N    \N    female
16127    Efrain    Schinner    chaya@hodkiewicz.name    \N    Croatia    Lake Regan    25670 Ewell Via    16042-9964    Oregon    2016-09-15 21:07:22.36219    2016-10-14 13:02:58.231242        \N    \N    \N    0    \N    \N    \N    \N    female
16128    Joan    Dooley    dejuan@bruen.net    \N    Guernsey    North Selenaland    396 Iva Island    46333-0399    Wisconsin    2016-06-26 16:18:30.509034    2016-10-14 13:02:58.23641        \N    \N    \N    0    \N    \N    \N    \N    male
16129    Tevin    Hansen    luisa_oberbrunner@ratkegrimes.name    \N    Papua New Guinea    Harveymouth    962 Veum Valley    43690-6173    Colorado    2016-08-13 11:04:38.321747    2016-10-14 13:02:58.243255        \N    \N    \N    0    \N    \N    \N    \N    male
16130    Elwin    Bogan    tristin_rau@anderson.biz    \N    Iceland    Alysonville    63079 Cloyd Highway    93797    South Dakota    2016-06-27 02:34:05.911082    2016-10-14 13:02:58.248965        \N    \N    \N    0    \N    \N    \N    \N    male
16131    Rosella    Eichmann    coby@quitzon.name    \N    Yemen    New Patsy    300 Sipes Trafficway    79886-0319    Idaho    2016-09-14 22:47:09.796022    2016-10-14 13:02:58.255214        \N    \N    \N    0    \N    \N    \N    \N    female
16132    Kristoffer    Kuphal    jayden_conroy@littlegleason.co    \N    Yemen    Lake Giovanifort    80186 Lizzie Hollow    41680-9713    Wyoming    2016-07-07 10:14:34.715816    2016-10-14 13:02:58.26085        \N    \N    \N    0    \N    \N    \N    \N    female
16133    Dorian    Kassulke    gaetano@damorekihn.com    \N    Oman    Schaeferberg    9014 Hoppe Park    54466    Georgia    2016-07-07 14:00:45.638599    2016-10-14 13:02:58.266521        \N    \N    \N    0    \N    \N    \N    \N    male
16134    Jayme    Marks    callie.bahringer@mann.co    \N    Fiji    Itzelport    21320 Kuhic Meadows    65634    Nebraska    2016-07-14 14:04:01.606217    2016-10-14 13:02:58.272186        \N    \N    \N    0    \N    \N    \N    \N    female
16135    Maybelle    Rodriguez    ahmed.williamson@jerde.biz    \N    Argentina    Port Margarett    2846 Funk Via    16588    Alabama    2016-06-28 07:53:57.994063    2016-10-14 13:02:58.277373        \N    \N    \N    0    \N    \N    \N    \N    female
16136    Dayne    Douglas    ebony@heller.biz    \N    Austria    Addisonbury    1418 Francesca Knoll    39591    Delaware    2016-09-21 20:01:50.33707    2016-10-14 13:02:58.282401        \N    \N    \N    0    \N    \N    \N    \N    female
16137    Lionel    Johnston    cameron@mayert.io    \N    Guyana    North Osvaldo    2703 Leo Cove    47574    Tennessee    2016-08-24 08:26:19.210175    2016-10-14 13:02:58.28701        \N    \N    \N    0    \N    \N    \N    \N    female
16138    Samir    Rohan    jacey_deckow@schoen.biz    \N    Finland    Keaganport    5825 Schinner Hill    49713-4085    Delaware    2016-08-11 09:42:30.239919    2016-10-14 13:02:58.292066        \N    \N    \N    0    \N    \N    \N    \N    female
16139    Edgardo    Fisher    troy@mrazkeeling.co    \N    Palau    West Phyllisfort    4893 Americo Wall    80699-6175    Hawaii    2016-09-29 01:50:04.258811    2016-10-14 13:02:58.297435        \N    \N    \N    0    \N    \N    \N    \N    female
16140    Bobbie    Fisher    jordi_simonis@wolff.name    \N    Bosnia and Herzegovina    New Mercedes    84373 Jenkins Pike    83723-1331    Indiana    2016-09-12 18:05:27.150025    2016-10-14 13:02:58.306908        \N    \N    \N    0    \N    \N    \N    \N    female
16141    Cali    O'Reilly    trinity.mcglynn@walkerprosacco.io    \N    Barbados    North Krystaltown    652 Walter Island    27865    Arkansas    2016-09-24 01:45:45.685228    2016-10-14 13:02:58.313797        \N    \N    \N    0    \N    \N    \N    \N    male
16142    Quinten    Dicki    scotty.feest@feeney.biz    \N    Philippines    West Rockyton    45577 Hane Ferry    43167    Texas    2016-06-26 11:55:33.137571    2016-10-14 13:02:58.32163        \N    \N    \N    0    \N    \N    \N    \N    male
16143    Princess    Kirlin    euna@feeneyharris.org    \N    Tonga    South Deionmouth    676 Dedrick Village    87216-7804    Massachusetts    2016-09-27 17:30:19.88475    2016-10-14 13:02:58.331642        \N    \N    \N    0    \N    \N    \N    \N    male
16144    Rose    Schmeler    kristofer.hilll@nienow.biz    \N    Jordan    Welchport    736 Tito Knolls    35128    Vermont    2016-09-05 15:40:14.973165    2016-10-14 13:02:58.33645        \N    \N    \N    0    \N    \N    \N    \N    female
16145    Wilhelm    Corwin    bernardo_ullrich@kaulke.co    \N    Albania    North Rileyland    734 Kacey Forest    74321    Arkansas    2016-07-17 12:43:40.309277    2016-10-14 13:02:58.34136        \N    \N    \N    0    \N    \N    \N    \N    male
16146    Stan    Vandervort    loyce_willms@robel.io    \N    Niue    South Irvingtown    526 Dana Underpass    11285-3588    Oklahoma    2016-07-17 13:56:32.828954    2016-10-14 13:02:58.346973        \N    \N    \N    0    \N    \N    \N    \N    male
16147    Ari    Stamm    earline@connelly.net    \N    Lao People's Democratic Republic    Port Neha    4638 Kenny Heights    73569-1623    Florida    2016-09-23 20:23:52.961775    2016-10-14 13:02:58.354414        \N    \N    \N    0    \N    \N    \N    \N    female
16148    Mona    Mosciski    armando@reichert.biz    \N    South Africa    Ashlyside    76810 Layla Crest    44814-5326    Utah    2016-09-26 17:29:57.049229    2016-10-14 13:02:58.362333        \N    \N    \N    0    \N    \N    \N    \N    female
16149    Elisa    Okuneva    thaddeus@zemlak.info    \N    Antarctica (the territory South of 60 deg S)    Eloyborough    263 Emiliano Bypass    67971    Connecticut    2016-07-03 09:16:30.510929    2016-10-14 13:02:58.368288        \N    \N    \N    0    \N    \N    \N    \N    male
16150    Tabitha    Flatley    rodolfo@schmitt.io    \N    Cambodia    Jodiemouth    9684 Jaylin Gateway    88761-2877    Kentucky    2016-07-30 19:24:55.791086    2016-10-14 13:02:58.374127        \N    \N    \N    0    \N    \N    \N    \N    male
16151    Amelie    Ritchie    eleanora_wolf@klocko.net    \N    Reunion    Michaelfurt    947 Satterfield Junction    39580    Ohio    2016-09-02 23:03:40.118091    2016-10-14 13:02:58.38025        \N    \N    \N    0    \N    \N    \N    \N    female
16152    Linwood    Stanton    isom@hyatt.com    \N    Bhutan    Lake Freida    77746 Bergstrom Extensions    87934-6026    Mississippi    2016-08-08 07:05:41.365057    2016-10-14 13:02:58.386239        \N    \N    \N    0    \N    \N    \N    \N    female
16153    Peggie    Kemmer    estevan.stark@hettingerkoelpin.name    \N    Hong Kong    Lake Vance    749 Kellen Shore    57472    Montana    2016-09-19 06:54:12.90916    2016-10-14 13:02:58.391059        \N    \N    \N    0    \N    \N    \N    \N    female
16154    Maribel    Huels    dahlia.prosacco@beahandurgan.info    \N    Anguilla    East Tiana    40814 Williamson Circle    98008    North Dakota    2016-08-23 00:59:14.280022    2016-10-14 13:02:58.398801        \N    \N    \N    0    \N    \N    \N    \N    male
16155    Celine    Pollich    rudolph_sporer@cremin.name    \N    United Arab Emirates    West Alaynafurt    7647 Althea Rapid    23315    Nevada    2016-07-17 10:57:34.353225    2016-10-14 13:02:58.40393        \N    \N    \N    0    \N    \N    \N    \N    male
16156    Estrella    Kshlerin    ocie.rolfson@dooley.info    \N    Comoros    Cartertown    18000 Blick Mill    71635    Montana    2016-07-11 16:53:44.949239    2016-10-14 13:02:58.40826        \N    \N    \N    0    \N    \N    \N    \N    male
16157    Makenna    Fritsch    carlo@hauckkihn.io    \N    Niue    Lake Delbertside    90138 Frami Curve    98710    Nebraska    2016-08-17 14:36:06.166843    2016-10-14 13:02:58.412806        \N    \N    \N    0    \N    \N    \N    \N    female
16158    Celestino    Windler    savanah.jerde@veum.biz    \N    New Zealand    Hendersonfurt    9755 Gaylord Lights    75649-7511    Alabama    2016-07-10 03:16:27.344648    2016-10-14 13:02:58.41729        \N    \N    \N    0    \N    \N    \N    \N    female
16159    Keira    Hoeger    angeline_hintz@rutherford.com    \N    Tuvalu    Caraton    1588 Lesch Parkway    47226    Mississippi    2016-07-12 03:43:48.337406    2016-10-14 13:02:58.424196        \N    \N    \N    0    \N    \N    \N    \N    female
16160    Norene    Hagenes    amina.kerluke@upton.co    \N    South Georgia and the South Sandwich Islands    New Asia    103 Arely Tunnel    66024    Washington    2016-07-22 06:38:27.060827    2016-10-14 13:02:58.428641        \N    \N    \N    0    \N    \N    \N    \N    female
16161    Al    Harber    rosamond@heel.com    \N    Zimbabwe    Bartellmouth    3495 Kendrick Lane    35745    North Dakota    2016-07-08 00:06:19.788073    2016-10-14 13:02:58.432588        \N    \N    \N    0    \N    \N    \N    \N    female
16162    Emile    Collins    marisol.wintheiser@weimann.net    \N    Thailand    Lucioport    1425 Aiyana Land    50670-1109    West Virginia    2016-08-19 19:38:44.903337    2016-10-14 13:02:58.437041        \N    \N    \N    0    \N    \N    \N    \N    male
16164    Howell    Gorczany    lyric.haag@shanahanharber.com    \N    Lesotho    Hyattstad    3454 Dane Forge    77512-2850    Montana    2016-08-13 13:39:29.508491    2016-10-14 13:02:58.446496        \N    \N    \N    0    \N    \N    \N    \N    male
16165    Everette    Ankunding    yoshiko@handweinat.info    \N    Sudan    Purdyport    821 Alice Isle    93449-6306    South Carolina    2016-07-08 01:49:11.480667    2016-10-14 13:02:58.452588        \N    \N    \N    0    \N    \N    \N    \N    male
16166    Isabelle    Gorczany    rollin.hyatt@leuschkewaters.name    \N    Saudi Arabia    Lednerton    45741 Fritsch Light    59727    South Dakota    2016-06-27 04:24:04.61805    2016-10-14 13:02:58.457231        \N    \N    \N    0    \N    \N    \N    \N    female
17965    Hunter    Feeney    maya@durgan.io    \N    Andorra    Krajcikfurt    8543 Mike Key    49637    Colorado    2016-09-03 00:18:22.454932    2016-10-14 13:02:58.461518        \N    \N    \N    0    \N    \N    \N    \N    male
16167    Connor    Yundt    freda@walshstiedemann.net    \N    Antarctica (the territory South of 60 deg S)    Evalynchester    662 Alva Knoll    34741-8224    Minnesota    2016-07-12 04:08:41.511414    2016-10-14 13:02:58.474642        \N    \N    \N    0    \N    \N    \N    \N    male
16168    Josianne    Sauer    cleo_torp@dubuque.info    \N    Kazakhstan    Marisaview    538 Rempel Oval    16652-4212    Kentucky    2016-09-28 07:21:11.370107    2016-10-14 13:02:58.479289        \N    \N    \N    0    \N    \N    \N    \N    male
16169    David    Marquardt    jade.durgan@smitham.net    \N    Democratic People's Republic of Korea    Drewville    160 Torp Valley    49827    Texas    2016-08-05 14:49:22.421183    2016-10-14 13:02:58.484091        \N    \N    \N    0    \N    \N    \N    \N    male
16170    Laurianne    Nicolas    nils.wisozk@sipesbrakus.net    \N    Lebanon    Tarynton    24327 Murphy Lane    87681-3795    Vermont    2016-07-24 19:20:09.876331    2016-10-14 13:02:58.488418        \N    \N    \N    0    \N    \N    \N    \N    male
16171    Chad    Larson    emanuel.carroll@dubuque.biz    \N    Iran    New Keely    27265 Myron Corners    41953-8575    South Carolina    2016-07-18 06:05:34.870756    2016-10-14 13:02:58.492862        \N    \N    \N    0    \N    \N    \N    \N    female
16172    Quinn    Farrell    freddy.armstrong@mullerbogisich.co    \N    Puerto Rico    West Nealburgh    504 Mann Forges    43418-4250    Utah    2016-07-24 07:07:06.241375    2016-10-14 13:02:58.496979        \N    \N    \N    0    \N    \N    \N    \N    female
16173    Precious    Labadie    chester.bruen@wyman.name    \N    Georgia    Harveyborough    544 Waelchi Trail    86240-9791    Mississippi    2016-08-23 14:29:53.480461    2016-10-14 13:02:58.501357        \N    \N    \N    0    \N    \N    \N    \N    female
16174    Luisa    Bosco    dean.armstrong@mclaughlin.org    \N    Cayman Islands    Jacobistad    7359 Edwina Lodge    68206    Mississippi    2016-06-24 23:07:54.382161    2016-10-14 13:02:58.505818        \N    \N    \N    0    \N    \N    \N    \N    male
16175    Yazmin    Veum    britney_orn@cronin.biz    \N    Tuvalu    Tremblayfurt    263 Ashleigh Meadow    50568-9452    Nevada    2016-07-01 09:18:25.228688    2016-10-14 13:02:58.509932        \N    \N    \N    0    \N    \N    \N    \N    male
16176    Solon    Abshire    flavie.bogan@runte.name    \N    United States of America    Whitemouth    532 Gino Oval    61617    Utah    2016-06-26 20:54:11.430221    2016-10-14 13:02:58.514073        \N    \N    \N    0    \N    \N    \N    \N    male
16177    Alvena    Kunze    gracie_howell@schuppe.io    \N    Swaziland    Kertzmannhaven    5380 Kessler Plains    73779    Nebraska    2016-08-04 20:45:54.882865    2016-10-14 13:02:58.517992        \N    \N    \N    0    \N    \N    \N    \N    male
16178    Geraldine    Strosin    chloe_volkman@kirlin.name    \N    French Polynesia    East Athenahaven    5883 Farrell Dale    10996    Arkansas    2016-06-29 09:24:35.649293    2016-10-14 13:02:58.521969        \N    \N    \N    0    \N    \N    \N    \N    male
16179    Emmett    Schaden    justina_kunde@kunde.com    \N    Haiti    Bufordburgh    27420 Rosamond Trail    16280    Alabama    2016-09-06 15:08:55.033705    2016-10-14 13:02:58.526333        \N    \N    \N    0    \N    \N    \N    \N    female
16180    Florencio    Parisian    baylee_emmerich@von.org    \N    Palestinian Territory    Shanahanville    70985 Buck Neck    11110-2669    Ohio    2016-07-30 00:38:23.564323    2016-10-14 13:02:58.530828        \N    \N    \N    0    \N    \N    \N    \N    male
16181    Jessyca    Walter    deie_cruickshank@blanda.biz    \N    Costa Rica    Kuhnport    87751 Rempel Pines    50351-7564    Alabama    2016-09-05 06:26:30.544886    2016-10-14 13:02:58.536473        \N    \N    \N    0    \N    \N    \N    \N    female
16182    Tatum    Keebler    deanna@trantowdenesik.biz    \N    Vanuatu    Dickinsonhaven    64256 Helena Overpass    56513    Wisconsin    2016-09-22 15:02:29.42778    2016-10-14 13:02:58.546917        \N    \N    \N    0    \N    \N    \N    \N    male
16183    Amanda    Runte    daisha@leannonwatsica.co    \N    Cook Islands    Winonafort    4162 O'Conner Courts    97887    North Dakota    2016-07-14 10:39:00.979982    2016-10-14 13:02:58.551275        \N    \N    \N    0    \N    \N    \N    \N    female
16184    Arvel    Stark    lilian@spencercremin.co    \N    Belize    Barrowsport    74657 Kelvin Terrace    54267-1093    Montana    2016-07-30 21:24:21.429514    2016-10-14 13:02:58.556137        \N    \N    \N    0    \N    \N    \N    \N    female
16185    Alize    Nicolas    lorenz_brakus@konopelskikeeling.info    \N    Saint Helena    New Nedhaven    685 Crooks Prairie    14488-2316    Mississippi    2016-08-12 02:11:37.544944    2016-10-14 13:02:58.560744        \N    \N    \N    0    \N    \N    \N    \N    female
16186    Paolo    Morissette    jackson.beier@leschkshlerin.biz    \N    Czech Republic    Orinstad    623 Christiansen Landing    40303-5353    Vermont    2016-09-18 01:39:46.764872    2016-10-14 13:02:58.569314        \N    \N    \N    0    \N    \N    \N    \N    female
16187    Cathrine    Streich    jalen@goyette.io    \N    Mauritius    Lucileshire    8375 Howell Pine    59981-7508    Wyoming    2016-06-30 01:32:02.393861    2016-10-14 13:02:58.57367        \N    \N    \N    0    \N    \N    \N    \N    male
16188    Beverly    Aufderhar    brycen@carter.biz    \N    Sweden    Cruickshankton    377 Moen Stravenue    46785    Virginia    2016-09-16 15:54:35.639857    2016-10-14 13:02:58.578014        \N    \N    \N    0    \N    \N    \N    \N    female
16189    Mariano    Gislason    jenifer.hudson@kris.biz    \N    Guinea-Bissau    Russelport    13525 Lemke View    98517-0379    New Hampshire    2016-09-06 10:25:53.528383    2016-10-14 13:02:58.582185        \N    \N    \N    0    \N    \N    \N    \N    female
16190    Sadie    Kunde    weldon@vandervort.name    \N    Tonga    Yundtside    823 Ortiz Corner    63282-5253    Michigan    2016-06-23 11:17:26.058617    2016-10-14 13:02:58.58686        \N    \N    \N    0    \N    \N    \N    \N    male
16192    Elmer    Weber    evangeline.bartell@ortiz.org    \N    Canada    Lake Deonborough    59450 Chyna Pine    45626    Massachusetts    2016-09-24 12:18:58.468617    2016-10-14 13:02:58.590977        \N    \N    \N    0    \N    \N    \N    \N    male
16193    Louie    Adams    reva.mann@lang.biz    \N    Hungary    Port Johannaberg    693 Wiley Mountain    78690-6962    Arkansas    2016-09-08 07:02:41.586704    2016-10-14 13:02:58.595082        \N    \N    \N    0    \N    \N    \N    \N    male
16194    Marcel    Simonis    joaquin@gislason.co    \N    Gabon    West Icieport    5628 Shaylee Streets    10273-6329    Oklahoma    2016-08-12 01:15:48.824857    2016-10-14 13:02:58.599457        \N    \N    \N    0    \N    \N    \N    \N    male
16195    Orrin    Anderson    trisha.quigley@homenick.info    \N    Papua New Guinea    West Jaiden    10005 Maryam Lights    17602-7557    Utah    2016-07-12 08:34:17.085014    2016-10-14 13:02:58.603876        \N    \N    \N    0    \N    \N    \N    \N    male
16196    Avis    Grady    albertha@cruickshankgrant.info    \N    Tanzania    O'Konport    299 Mina Neck    55392    Florida    2016-08-26 07:22:55.210857    2016-10-14 13:02:58.616151        \N    \N    \N    0    \N    \N    \N    \N    male
16197    Faustino    Rodriguez    emmitt_hansen@botsford.co    \N    Benin    Doylestad    1798 Zemlak Expressway    29804-3139    Oregon    2016-08-08 16:30:28.380551    2016-10-14 13:02:58.626567        \N    \N    \N    0    \N    \N    \N    \N    female
16198    Kayleigh    Marquardt    nikolas_oreilly@toy.biz    \N    Belize    Newellmouth    1892 Gibson Island    16116-4666    Tennessee    2016-06-24 13:03:53.161095    2016-10-14 13:02:58.632236        \N    \N    \N    0    \N    \N    \N    \N    female
16199    Alaina    Krajcik    antoinette@auer.org    \N    Benin    Diamondfurt    766 Lacey Locks    85328-1564    Kentucky    2016-07-15 15:04:07.47148    2016-10-14 13:02:58.637321        \N    \N    \N    0    \N    \N    \N    \N    female
16200    Kamren    Predovic    norene@cartwright.name    \N    Tanzania    Trevaborough    6524 Marcos Plains    88181    Virginia    2016-09-04 07:54:14.236748    2016-10-14 13:02:58.641925        \N    \N    \N    0    \N    \N    \N    \N    female
16201    Felicity    Gusikowski    wilber_ward@tillmanrunte.org    \N    Senegal    East Vada    380 Leannon Spurs    76241-0275    Tennessee    2016-08-05 13:07:09.270557    2016-10-14 13:02:58.646693        \N    \N    \N    0    \N    \N    \N    \N    female
16202    Brayan    Paucek    bart@bergnaum.net    \N    Nicaragua    New Maxinehaven    688 Mitchell Inlet    10636-9204    Delaware    2016-09-21 07:02:57.506259    2016-10-14 13:02:58.65133        \N    \N    \N    0    \N    \N    \N    \N    female
16203    Antonietta    Schmitt    myriam@doyle.com    \N    Mauritius    Handmouth    281 Reichel Summit    73766-0553    Wisconsin    2016-08-27 18:17:44.426958    2016-10-14 13:02:58.655951        \N    \N    \N    0    \N    \N    \N    \N    female
16204    Arno    Shields    nettie@murrayjacobson.info    \N    Pakistan    Joebury    7601 Frami Camp    69094-9977    Georgia    2016-07-14 01:52:36.581907    2016-10-14 13:02:58.665008        \N    \N    \N    0    \N    \N    \N    \N    female
16205    Odessa    Hilpert    rubie_muller@cummerata.info    \N    Paraguay    North Raoul    5686 Charles Spur    46268-4804    Georgia    2016-09-15 11:49:21.548671    2016-10-14 13:02:58.669518        \N    \N    \N    0    \N    \N    \N    \N    male
16206    Dane    Hansen    nicola@runolfonhermann.co    \N    Sudan    Boyleville    878 Boyer Brook    35495    Pennsylvania    2016-07-21 02:30:02.841012    2016-10-14 13:02:58.682639        \N    \N    \N    0    \N    \N    \N    \N    female
16207    Destiny    Powlowski    mason_nikolaus@gleasongutkowski.co    \N    Russian Federation    South Albina    95888 Wyatt Land    15940    New Jersey    2016-08-28 14:03:50.646972    2016-10-14 13:02:58.70506        \N    \N    \N    0    \N    \N    \N    \N    female
16208    Henry    Wilderman    lonnie_kiehn@padberg.name    \N    United States Minor Outlying Islands    Raymondside    1611 Marks Orchard    27775-1970    Connecticut    2016-07-12 12:35:21.617448    2016-10-14 13:02:58.711179        \N    \N    \N    0    \N    \N    \N    \N    male
16209    Geo    Mertz    gustave@gutkowski.net    \N    Norfolk Island    South Omerburgh    58027 Turcotte Mall    63121    Maine    2016-08-04 03:33:49.1114    2016-10-14 13:02:58.715762        \N    \N    \N    0    \N    \N    \N    \N    female
17082    Aniyah    Shields    claude.ondricka@jerde.net    \N    Bahrain    Nathanburgh    95013 Lea Burg    90002    Illinois    2016-08-04 12:41:41.680035    2016-10-14 13:03:03.485861        \N    \N    \N    0    \N    \N    \N    \N    male
16211    Quinn    Dickinson    jonatan_anderson@parisian.net    \N    Cocos (Keeling) Islands    Adrienstad    6497 Heathcote Prairie    98772    Arkansas    2016-09-21 23:53:47.2613    2016-10-14 13:02:58.722336        \N    \N    \N    0    \N    \N    \N    \N    male
16212    Zane    Becker    nina_altenwerth@cummings.com    \N    Iraq    Coleport    1787 Cristal Inlet    44044-4351    Nebraska    2016-08-03 13:39:35.963448    2016-10-14 13:02:58.727901        \N    \N    \N    0    \N    \N    \N    \N    female
16213    Marilyne    Wiegand    crystel@rowe.com    \N    Belize    Delphahaven    75940 Ondricka Alley    55308-7131    North Carolina    2016-09-08 14:50:41.91806    2016-10-14 13:02:58.735164        \N    \N    \N    0    \N    \N    \N    \N    male
16214    Norwood    Schuppe    aurelia_jaskolski@koelpinsenger.co    \N    Finland    South Sidneyberg    811 Crona Turnpike    16990    Florida    2016-09-18 11:46:03.160511    2016-10-14 13:02:58.740765        \N    \N    \N    0    \N    \N    \N    \N    male
16215    Tyshawn    Hamill    aleandro_gutkowski@yost.net    \N    Northern Mariana Islands    Rueckerhaven    1953 Frami Motorway    41922    Oregon    2016-07-11 16:46:54.123342    2016-10-14 13:02:58.747507        \N    \N    \N    0    \N    \N    \N    \N    female
16216    Blair    Nolan    ewell@dare.net    \N    Mozambique    Lubowitzfort    283 Chase Tunnel    81705    Georgia    2016-07-19 10:07:43.559704    2016-10-14 13:02:58.754282        \N    \N    \N    0    \N    \N    \N    \N    female
16217    Matilde    Stiedemann    friedrich@mclaughlin.com    \N    Lao People's Democratic Republic    Reichertmouth    661 Teresa Plaza    37872-9299    Texas    2016-09-13 22:05:59.842263    2016-10-14 13:02:58.763724        \N    \N    \N    0    \N    \N    \N    \N    female
16218    Lilla    Oberbrunner    kyleigh.howe@goyette.com    \N    Myanmar    East Brady    74630 Nayeli Avenue    81746    Michigan    2016-09-05 09:52:43.993839    2016-10-14 13:02:58.768538        \N    \N    \N    0    \N    \N    \N    \N    female
16219    Danny    Corwin    mariela.robel@thompson.com    \N    Zimbabwe    Justinemouth    3687 Alaina Rapids    47818-6645    New York    2016-06-30 00:49:56.925146    2016-10-14 13:02:58.775343        \N    \N    \N    0    \N    \N    \N    \N    female
16220    Percy    Mann    noble@runolfon.info    \N    United Arab Emirates    New Hans    49446 Fritsch Burg    86489-4352    New Hampshire    2016-08-30 05:09:15.450153    2016-10-14 13:02:58.780327        \N    \N    \N    0    \N    \N    \N    \N    female
16222    Josianne    Bergstrom    jakob@vonbeier.io    \N    Antigua and Barbuda    Lindsayfurt    98257 Fleta Lake    80646    Maine    2016-07-22 18:47:16.201341    2016-10-14 13:02:58.784773        \N    \N    \N    0    \N    \N    \N    \N    male
16223    Rosemarie    Johnson    mavis@carroll.co    \N    Serbia    West Dennisbury    407 Alvena Views    36932-1304    South Dakota    2016-08-04 20:17:40.431489    2016-10-14 13:02:58.788825        \N    \N    \N    0    \N    \N    \N    \N    female
16224    Candace    Rice    modesta@hickle.name    \N    Morocco    Edwardohaven    81260 Wunsch Circle    36106    Alabama    2016-09-16 09:34:39.188985    2016-10-14 13:02:58.793261        \N    \N    \N    0    \N    \N    \N    \N    female
16225    Lempi    Murazik    robb_wolff@rice.name    \N    Saint Martin    Rhiannonshire    134 Lowe Circle    17653-4763    West Virginia    2016-09-04 05:38:30.03918    2016-10-14 13:02:58.797778        \N    \N    \N    0    \N    \N    \N    \N    female
16226    Hudson    Witting    terry@doyle.org    \N    Virgin Islands, British    Bernierchester    662 Raina Ramp    93442    Virginia    2016-08-27 06:31:49.216595    2016-10-14 13:02:58.802391        \N    \N    \N    0    \N    \N    \N    \N    female
16227    Kaitlyn    Bashirian    ian.ohara@lindgren.com    \N    Cyprus    Lake Nicolettetown    808 Collins Springs    91745-8681    Louisiana    2016-08-14 03:36:57.094822    2016-10-14 13:02:58.809929        \N    \N    \N    0    \N    \N    \N    \N    male
16228    Deontae    Haley    craig_dickens@grant.name    \N    Svalbard & Jan Mayen Islands    Braxtonchester    77853 Mekhi Ford    97239    Oklahoma    2016-08-24 10:52:33.017061    2016-10-14 13:02:58.814389        \N    \N    \N    0    \N    \N    \N    \N    male
16229    Geovanni    Hettinger    nettie_welch@stromanabbott.net    \N    Mongolia    Port Emilia    2925 Bashirian Track    61427    Vermont    2016-07-21 16:45:26.999793    2016-10-14 13:02:58.818762        \N    \N    \N    0    \N    \N    \N    \N    female
16230    Kamille    Carroll    summer@schulistbauch.io    \N    Malaysia    New Nicola    9552 Turcotte Springs    21660-5575    Alabama    2016-09-12 01:40:37.644849    2016-10-14 13:02:58.825157        \N    \N    \N    0    \N    \N    \N    \N    male
16231    Filomena    Medhurst    rodrigo@carter.info    \N    Bahamas    Lake Rowenaville    17906 Kuhic Creek    63977    Alaska    2016-07-08 07:38:31.36527    2016-10-14 13:02:58.8317        \N    \N    \N    0    \N    \N    \N    \N    male
16232    Alec    Fadel    gilberto@douglaskreiger.info    \N    Christmas Island    Kuhnton    2613 Kayli Ranch    50743-7095    Idaho    2016-07-28 20:43:05.424113    2016-10-14 13:02:58.836247        \N    \N    \N    0    \N    \N    \N    \N    female
16233    Laverna    Trantow    raymundo_ohara@kuhic.org    \N    Sweden    Cyrilborough    47984 Kilback Street    61268    Illinois    2016-07-08 10:20:38.586162    2016-10-14 13:02:58.84055        \N    \N    \N    0    \N    \N    \N    \N    male
16234    Christian    Hodkiewicz    filomena@douglaswatsica.com    \N    Portugal    New Jarrodbury    71258 Willms Square    69160    Alabama    2016-07-25 19:33:11.596731    2016-10-14 13:02:58.845139        \N    \N    \N    0    \N    \N    \N    \N    male
16235    Minerva    Towne    holden@sauermante.name    \N    United States Minor Outlying Islands    Schillerville    748 Roberts Row    39214-7600    Massachusetts    2016-08-28 09:26:34.091123    2016-10-14 13:02:58.849553        \N    \N    \N    0    \N    \N    \N    \N    male
16236    Camron    Pagac    ron@kilback.com    \N    Mali    Coralieville    30016 Oma Ville    63983-0394    Arizona    2016-09-22 03:58:02.161456    2016-10-14 13:02:58.85426        \N    \N    \N    0    \N    \N    \N    \N    male
16238    Cecil    Shanahan    regan@schmidt.net    \N    Belarus    East Emmet    4643 Torrance Burg    28806    Oklahoma    2016-07-05 02:48:19.464186    2016-10-14 13:02:58.858675        \N    \N    \N    0    \N    \N    \N    \N    male
16239    Casey    Macejkovic    kaycee.sporer@jacobi.name    \N    Philippines    Lake Ayden    55262 Haleigh Square    25522-5739    California    2016-07-09 19:02:26.091711    2016-10-14 13:02:58.865837        \N    \N    \N    0    \N    \N    \N    \N    male
16240    Eugene    Feest    neil@kautzer.biz    \N    Paraguay    East Dayanaville    21649 Lehner Track    28003    Nebraska    2016-09-06 13:14:59.072503    2016-10-14 13:02:58.871962        \N    \N    \N    0    \N    \N    \N    \N    female
16241    Woodrow    Conroy    bryon@bode.info    \N    Monaco    Lake Abigayle    92185 Runte Plains    97787    Missouri    2016-06-29 06:44:57.144358    2016-10-14 13:02:58.876416        \N    \N    \N    0    \N    \N    \N    \N    male
16242    Gunner    Jones    coralie@binswindler.biz    \N    Mauritius    Troyberg    47450 Myriam Crossing    72231-1181    Utah    2016-07-18 22:46:55.636418    2016-10-14 13:02:58.880727        \N    \N    \N    0    \N    \N    \N    \N    male
16243    Theodora    Auer    maryjane.schinner@parker.io    \N    Tokelau    South Elmerbury    533 Kory Well    86366-8100    Michigan    2016-07-03 10:38:43.029254    2016-10-14 13:02:58.886484        \N    \N    \N    0    \N    \N    \N    \N    female
16244    Leslie    Dicki    angelica_schimmel@dickimckenzie.biz    \N    Cocos (Keeling) Islands    Armandland    3031 Hunter Hollow    31007-6012    Michigan    2016-08-16 14:21:26.982028    2016-10-14 13:02:58.89106        \N    \N    \N    0    \N    \N    \N    \N    female
16245    Aurore    Roberts    anibal_harvey@moenmarquardt.io    \N    Colombia    South Haventown    7649 Hugh Branch    88524    Indiana    2016-07-31 02:03:53.399628    2016-10-14 13:02:58.896697        \N    \N    \N    0    \N    \N    \N    \N    female
16247    Norene    Wiza    carson@kovacek.net    \N    Sao Tome and Principe    Port Bettye    5927 Dibbert Mews    44000-7927    Iowa    2016-08-07 05:39:41.226345    2016-10-14 13:02:58.902341        \N    \N    \N    0    \N    \N    \N    \N    female
16248    Garnet    Von    sydney.sanford@prosaccofarrell.io    \N    Argentina    Keonview    98315 Heber Hollow    42954    Michigan    2016-07-27 22:30:01.41532    2016-10-14 13:02:58.907836        \N    \N    \N    0    \N    \N    \N    \N    male
16249    Kari    Erdman    leola@moore.biz    \N    Montserrat    Lindgrenmouth    7553 Ansel Underpass    73660-6497    Mississippi    2016-07-23 15:42:13.171447    2016-10-14 13:02:58.912523        \N    \N    \N    0    \N    \N    \N    \N    female
16250    Benton    Waelchi    josephine@harber.net    \N    Belgium    East Earnestberg    91135 Sanford Drive    52639-2345    Idaho    2016-07-12 14:10:36.511079    2016-10-14 13:02:58.917342        \N    \N    \N    0    \N    \N    \N    \N    female
16251    Athena    Nienow    vilma.cormier@hartmann.org    \N    Nepal    Malindaside    10196 Bosco Fields    16456    Montana    2016-08-21 01:23:02.53645    2016-10-14 13:02:58.922731        \N    \N    \N    0    \N    \N    \N    \N    female
16252    Catharine    Padberg    ray_glover@mcclure.name    \N    Chile    South Justinehaven    29788 Rachael Tunnel    31369-2734    Minnesota    2016-08-19 01:12:40.85667    2016-10-14 13:02:58.928972        \N    \N    \N    0    \N    \N    \N    \N    female
16253    Alexandro    Hauck    valentin@tillmanhuels.org    \N    Liberia    North Terence    4607 Hoeger Spurs    61648    Alabama    2016-07-06 05:40:08.537623    2016-10-14 13:02:58.93929        \N    \N    \N    0    \N    \N    \N    \N    female
16254    Bertram    Osinski    breanna_funk@crist.net    \N    Antarctica (the territory South of 60 deg S)    Harrisshire    89803 Cielo Ridge    47545-2546    Illinois    2016-07-07 15:50:44.429265    2016-10-14 13:02:58.95198        \N    \N    \N    0    \N    \N    \N    \N    male
16255    Fabian    Frami    lucas_bauch@miller.org    \N    Anguilla    Dejaland    3742 Weber Mall    76891    Georgia    2016-08-15 10:40:04.407169    2016-10-14 13:02:58.957571        \N    \N    \N    0    \N    \N    \N    \N    male
16256    Naomi    Champlin    coleman_waelchi@raubernier.io    \N    Bermuda    South Cordiafurt    1000 Stokes Shore    51802-2176    Kansas    2016-06-29 12:30:10.784872    2016-10-14 13:02:58.96402        \N    \N    \N    0    \N    \N    \N    \N    female
16257    Rowena    Kunde    kasey_carroll@ondrickapollich.org    \N    Dominican Republic    West Alfonso    298 Kailee Branch    47890    New Jersey    2016-08-18 13:37:26.94009    2016-10-14 13:02:58.970226        \N    \N    \N    0    \N    \N    \N    \N    female
16258    Dixie    Fahey    blanche@douglasmclaughlin.name    \N    Anguilla    New Leorafurt    59929 Murray Underpass    69530    Wyoming    2016-09-03 11:37:40.469764    2016-10-14 13:02:58.97689        \N    \N    \N    0    \N    \N    \N    \N    female
16259    Lauriane    Kuvalis    ernestina@feil.io    \N    Tajikistan    Calimouth    9033 Schuster Stravenue    78569-9030    New Hampshire    2016-08-31 20:10:29.809663    2016-10-14 13:02:58.98143        \N    \N    \N    0    \N    \N    \N    \N    female
16261    Broderick    Hilll    sim.rutherford@funklynch.com    \N    Vietnam    Raynormouth    51769 Abbott Rue    14030    Alaska    2016-08-23 11:17:21.242739    2016-10-14 13:02:58.985584        \N    \N    \N    0    \N    \N    \N    \N    male
16262    Kaitlyn    Franecki    dennis@stoltenberg.biz    \N    Yemen    North Carmelberg    89847 Block Ports    72284-2557    North Dakota    2016-07-01 01:16:49.18374    2016-10-14 13:02:58.989589        \N    \N    \N    0    \N    \N    \N    \N    male
16263    Serenity    Robel    sigurd@douglasdubuque.name    \N    Spain    East Price    94223 Grimes Turnpike    75140-6160    Nebraska    2016-08-24 01:27:50.723936    2016-10-14 13:02:58.99602        \N    \N    \N    0    \N    \N    \N    \N    female
16264    Lorenzo    Kovacek    dave_steuber@tillman.io    \N    Netherlands Antilles    Williamshire    750 Cummings Junction    20017    North Dakota    2016-08-08 03:33:55.963071    2016-10-14 13:02:59.004455        \N    \N    \N    0    \N    \N    \N    \N    female
16265    Nettie    Waelchi    josefina_koelpin@marvin.org    \N    Marshall Islands    Port Deannaview    893 Sonny Way    74384-8765    Oregon    2016-09-17 03:06:52.945809    2016-10-14 13:02:59.009547        \N    \N    \N    0    \N    \N    \N    \N    female
16266    Michael    Connelly    michelle_rippin@huel.co    \N    Timor-Leste    East Annabel    78896 Jacky Forest    53027    Maine    2016-09-26 23:09:42.531289    2016-10-14 13:02:59.014953        \N    \N    \N    0    \N    \N    \N    \N    female
16267    Sigrid    Boehm    norris.osinski@simonis.org    \N    Anguilla    Leuschkemouth    199 Fatima Brooks    36914    Kansas    2016-08-14 21:36:56.42594    2016-10-14 13:02:59.019332        \N    \N    \N    0    \N    \N    \N    \N    female
16268    Danielle    Heller    imogene_schmidt@harris.net    \N    Norway    Cameronton    2080 Mariela Ports    75641-6665    North Dakota    2016-09-25 04:49:23.947984    2016-10-14 13:02:59.024237        \N    \N    \N    0    \N    \N    \N    \N    male
16237    Bud    Hoppe    mable_lakin@hilll.co    \N    Tuvalu    Batzside    459 Haylie Ford    97470    Oklahoma    2016-08-24 22:29:10.803827    2016-10-14 13:02:59.028738        \N    \N    \N    0    \N    \N    \N    \N    male
16269    Dewayne    Wisoky    carmine@treutelbergnaum.co    \N    Kyrgyz Republic    West Marcelburgh    139 O'Conner Knoll    67103-4326    New York    2016-09-05 05:21:28.236915    2016-10-14 13:02:59.033403        \N    \N    \N    0    \N    \N    \N    \N    female
16270    Malika    Beahan    javier@gerlach.name    \N    South Africa    Abernathyton    92562 Aida Skyway    68875    Arkansas    2016-07-11 08:51:21.622553    2016-10-14 13:02:59.037878        \N    \N    \N    0    \N    \N    \N    \N    female
16271    Ezequiel    Reynolds    francis@langvon.co    \N    Singapore    Fredrickburgh    288 Deckow Place    51832-3630    New Jersey    2016-07-08 20:09:58.221844    2016-10-14 13:02:59.042443        \N    \N    \N    0    \N    \N    \N    \N    female
16272    Vance    Murray    mazie@wuckert.info    \N    Niue    West Toreymouth    38210 Antonina Knolls    33688-5917    Nevada    2016-07-29 11:06:05.92609    2016-10-14 13:02:59.04688        \N    \N    \N    0    \N    \N    \N    \N    male
16273    Maribel    McKenzie    ottis_gleason@nicolas.org    \N    Barbados    Rohanview    698 Jazmin Highway    62444    Nevada    2016-08-09 04:36:59.779058    2016-10-14 13:02:59.051425        \N    \N    \N    0    \N    \N    \N    \N    female
16274    Karson    Bruen    izaiah.mertz@collierlittle.co    \N    South Africa    Mullermouth    17430 Cathy Dale    82861    New Jersey    2016-09-19 09:58:44.416111    2016-10-14 13:02:59.056305        \N    \N    \N    0    \N    \N    \N    \N    female
16275    Jaydon    Bednar    terrence_gibson@smith.info    \N    Syrian Arab Republic    Myriamchester    175 Kessler Tunnel    74487-1500    Arkansas    2016-08-22 16:08:13.007402    2016-10-14 13:02:59.061145        \N    \N    \N    0    \N    \N    \N    \N    female
16276    Reuben    Von    ervin@goodwin.com    \N    Sierra Leone    Karineside    4813 Junius Track    46316-7313    Arkansas    2016-07-01 00:05:22.672454    2016-10-14 13:02:59.065867        \N    \N    \N    0    \N    \N    \N    \N    female
16277    Ruth    Osinski    benton_ruel@cole.info    \N    Haiti    Goodwinfort    33035 O'Hara Crossroad    59951    Missouri    2016-07-04 19:38:16.290341    2016-10-14 13:02:59.070613        \N    \N    \N    0    \N    \N    \N    \N    female
16278    Alene    Terry    sydni@quitzon.co    \N    Antarctica (the territory South of 60 deg S)    Vernerfurt    2173 Una Manors    38597    Louisiana    2016-09-10 04:40:44.194687    2016-10-14 13:02:59.074989        \N    \N    \N    0    \N    \N    \N    \N    female
16279    Ramiro    Bergstrom    te_green@harris.org    \N    Bangladesh    West Kalliebury    651 Maeve Gardens    25574-4190    Utah    2016-08-23 14:00:45.665927    2016-10-14 13:02:59.079445        \N    \N    \N    0    \N    \N    \N    \N    male
16280    Lauretta    Welch    antonia@runolfsdottir.org    \N    Swaziland    North Magdalen    19469 Keeling Underpass    88910    Illinois    2016-08-18 08:50:11.653495    2016-10-14 13:02:59.083823        \N    \N    \N    0    \N    \N    \N    \N    male
16281    Jerome    Hauck    pauline_heel@auer.com    \N    Lithuania    West Osvaldo    25141 Ryan Grove    83765    Alabama    2016-08-06 19:56:57.066106    2016-10-14 13:02:59.088508        \N    \N    \N    0    \N    \N    \N    \N    female
16282    Jerel    Goldner    isabell_schneider@moore.name    \N    Bouvet Island (Bouvetoya)    Tinaborough    433 Howell Villages    22939-8910    Connecticut    2016-07-09 19:06:29.934443    2016-10-14 13:02:59.097955        \N    \N    \N    0    \N    \N    \N    \N    female
16283    Newton    Marvin    carlotta@cremin.co    \N    Eritrea    North Nora    483 Armstrong Divide    67757-4129    Utah    2016-08-28 08:03:49.025308    2016-10-14 13:02:59.102902        \N    \N    \N    0    \N    \N    \N    \N    female
16284    Brice    Sporer    eudora_torp@shieldsvonrueden.io    \N    Lithuania    South Clinton    555 Shirley Hollow    49087-5494    Hawaii    2016-08-17 10:07:18.788444    2016-10-14 13:02:59.107507        \N    \N    \N    0    \N    \N    \N    \N    male
16285    Destiny    Price    camron_bartoletti@adams.org    \N    Bermuda    Kertzmanntown    741 Orville Neck    65661-5773    Arkansas    2016-08-03 10:54:42.611158    2016-10-14 13:02:59.114541        \N    \N    \N    0    \N    \N    \N    \N    female
16286    Kenya    Carter    angel@strosin.info    \N    Honduras    Lake Dagmarborough    268 Kris Shoal    69245    Colorado    2016-07-07 01:36:31.11533    2016-10-14 13:02:59.119763        \N    \N    \N    0    \N    \N    \N    \N    male
16287    Liam    Barton    porter.feest@emard.org    \N    France    Lake Einarstad    36141 Eugenia Prairie    59606-1439    Florida    2016-07-26 05:51:14.354119    2016-10-14 13:02:59.124445        \N    \N    \N    0    \N    \N    \N    \N    female
16288    Bernhard    Tillman    eduardo.swift@littel.org    \N    Congo    Lake Hillaryport    29758 Dickens Creek    20433    Indiana    2016-07-01 16:44:11.472674    2016-10-14 13:02:59.129041        \N    \N    \N    0    \N    \N    \N    \N    male
16289    Jacques    Cronin    camylle.morar@greenfelder.org    \N    Peru    Camillafort    68420 Ward Circle    25568    Louisiana    2016-07-15 00:08:54.660811    2016-10-14 13:02:59.134208        \N    \N    \N    0    \N    \N    \N    \N    male
16290    Amber    Mitchell    tad.parisian@simonis.info    \N    Papua New Guinea    Boganland    370 Norene Center    74336    Arizona    2016-09-26 20:28:58.769675    2016-10-14 13:02:59.140455        \N    \N    \N    0    \N    \N    \N    \N    male
16291    Melvina    Cormier    amos@gislasonrath.co    \N    Chile    Hintzhaven    891 Kuhlman Mews    51745-7275    Wyoming    2016-08-31 22:58:06.035843    2016-10-14 13:02:59.162137        \N    \N    \N    0    \N    \N    \N    \N    male
16292    Emerson    Jacobson    kariane.kohler@willms.info    \N    Turks and Caicos Islands    Dachberg    65885 Weber Locks    29788-0122    Mississippi    2016-08-30 17:23:36.506422    2016-10-14 13:02:59.170606        \N    \N    \N    0    \N    \N    \N    \N    female
16293    Alfonzo    Monahan    hillard@prosacco.net    \N    Philippines    West Daneburgh    8173 Ortiz Corners    32083    Massachusetts    2016-06-28 23:29:19.039499    2016-10-14 13:02:59.175884        \N    \N    \N    0    \N    \N    \N    \N    male
16294    Emma    Runolfsson    garret@denesik.info    \N    Mongolia    North Britney    6451 Carmine Alley    73843    Virginia    2016-09-18 01:42:40.84552    2016-10-14 13:02:59.181235        \N    \N    \N    0    \N    \N    \N    \N    female
16295    Fernando    Schmitt    murray.murazik@windlerpowlowski.info    \N    Lesotho    Lake Marques    785 Gerlach Rue    34678-1753    Oregon    2016-07-15 23:44:51.490836    2016-10-14 13:02:59.188733        \N    \N    \N    0    \N    \N    \N    \N    female
16296    Jadyn    Osinski    violet@spinka.com    \N    Iran    Port Delaneyhaven    33572 Lindgren Cliffs    21314-8652    Iowa    2016-07-23 15:53:00.762481    2016-10-14 13:02:59.195026        \N    \N    \N    0    \N    \N    \N    \N    male
16297    Brook    Wiza    annamarie@ruel.com    \N    Namibia    South Jayceton    47940 Nicholas Fort    88408-0310    Oklahoma    2016-08-11 00:39:29.563714    2016-10-14 13:02:59.202416        \N    \N    \N    0    \N    \N    \N    \N    male
16298    Clifton    Ebert    arely_stokes@mosciskiparisian.name    \N    Iceland    South Serena    191 Jessie Union    10408-4167    Delaware    2016-09-04 21:08:53.91444    2016-10-14 13:02:59.207265        \N    \N    \N    0    \N    \N    \N    \N    female
16299    Novella    Schinner    domingo@friesen.io    \N    Russian Federation    South Lizzie    533 Prosacco Stream    93083    Kansas    2016-06-25 06:39:18.007314    2016-10-14 13:02:59.21563        \N    \N    \N    0    \N    \N    \N    \N    female
16300    Bud    Schmidt    dejah.wiza@bergnaumhahn.info    \N    Puerto Rico    Lake Koreyfurt    240 Jacobson Falls    67823    Oklahoma    2016-09-29 05:05:54.629333    2016-10-14 13:02:59.222054        \N    \N    \N    0    \N    \N    \N    \N    female
16301    Oleta    Stiedemann    newell.herman@carter.biz    \N    Nauru    Robynport    5948 Sadie Glens    92230    Minnesota    2016-06-26 15:45:04.029735    2016-10-14 13:02:59.239448        \N    \N    \N    0    \N    \N    \N    \N    male
16302    Lamar    Gleason    quinten@jonesmorar.biz    \N    Bouvet Island (Bouvetoya)    Schaefershire    792 Weber Ferry    76828-5501    Rhode Island    2016-09-13 07:58:13.969756    2016-10-14 13:02:59.246867        \N    \N    \N    0    \N    \N    \N    \N    male
16303    Maeve    Towne    mariam@watsica.net    \N    Bolivia    Corkerymouth    735 Hermann Crossroad    61652    Arkansas    2016-07-11 09:20:28.971769    2016-10-14 13:02:59.260297        \N    \N    \N    0    \N    \N    \N    \N    male
16304    Sister    Monahan    janae@romaguera.info    \N    Samoa    North Valerieborough    61315 Erick Trace    35350-2665    Hawaii    2016-08-01 12:54:54.798128    2016-10-14 13:02:59.271797        \N    \N    \N    0    \N    \N    \N    \N    female
16305    Isobel    Beer    ramiro_beer@hudson.net    \N    Madagascar    North Casimerville    14235 Dimitri Spur    60764-1947    Virginia    2016-09-24 21:01:43.599826    2016-10-14 13:02:59.28147        \N    \N    \N    0    \N    \N    \N    \N    female
16306    Daisy    Dibbert    jon.mayert@heaney.net    \N    Libyan Arab Jamahiriya    Welchport    53953 Dibbert Road    22597-8063    Rhode Island    2016-07-13 12:47:02.440081    2016-10-14 13:02:59.287314        \N    \N    \N    0    \N    \N    \N    \N    male
16307    Petra    Bosco    erin@toy.io    \N    Saint Lucia    West Chanelleshire    50223 Pfeffer River    13740    Indiana    2016-07-29 17:17:35.708799    2016-10-14 13:02:59.29214        \N    \N    \N    0    \N    \N    \N    \N    male
16308    Shaun    Huels    landen@rolfson.org    \N    Sweden    East Enriquefurt    1830 Gerlach Field    24292-1942    Colorado    2016-08-24 06:53:59.534716    2016-10-14 13:02:59.297086        \N    \N    \N    0    \N    \N    \N    \N    male
16309    Ruby    Blanda    vicente@marvindickinson.biz    \N    Armenia    Ellsworthberg    76563 Buckridge Station    80198-9131    Oklahoma    2016-07-23 23:48:40.16195    2016-10-14 13:02:59.301886        \N    \N    \N    0    \N    \N    \N    \N    female
16310    Elvera    Lehner    zella@harvey.org    \N    Falkland Islands (Malvinas)    West Ayana    8834 Christa Union    20728    Kansas    2016-07-09 20:16:06.63321    2016-10-14 13:02:59.307819        \N    \N    \N    0    \N    \N    \N    \N    male
16311    Gina    Pouros    percival_nicolas@pfeffer.com    \N    Ghana    Marksburgh    322 Iva Cove    55726-3397    Delaware    2016-07-31 22:30:07.000197    2016-10-14 13:02:59.312917        \N    \N    \N    0    \N    \N    \N    \N    male
16312    Jonathon    Shields    jan_schumm@jonesjohnston.org    \N    Reunion    New Boyd    690 Augustine Avenue    21727-4028    Michigan    2016-06-30 18:42:03.717243    2016-10-14 13:02:59.317177        \N    \N    \N    0    \N    \N    \N    \N    male
16313    Margie    Daniel    taylor@sauer.io    \N    Montserrat    Runolfssonmouth    85434 Tressa Plains    88869    Arizona    2016-08-06 00:48:36.964011    2016-10-14 13:02:59.321197        \N    \N    \N    0    \N    \N    \N    \N    female
16314    Anastacio    Grimes    henry.weber@colerunolfsdottir.info    \N    Indonesia    Baumbachhaven    618 Lisa Stream    80795    Wyoming    2016-09-10 11:29:13.067085    2016-10-14 13:02:59.32676        \N    \N    \N    0    \N    \N    \N    \N    male
16315    Macy    Wuckert    edythe@manncarter.com    \N    Lao People's Democratic Republic    East Gaylehaven    64608 Kory Spring    89713-7491    Illinois    2016-07-04 14:50:31.414611    2016-10-14 13:02:59.334409        \N    \N    \N    0    \N    \N    \N    \N    male
16316    Evans    Champlin    ariel_lemke@spinkashanahan.biz    \N    Monaco    Katherineview    30662 Rossie Village    14073    New Hampshire    2016-07-06 07:15:25.643045    2016-10-14 13:02:59.340643        \N    \N    \N    0    \N    \N    \N    \N    female
16317    Carmella    Barrows    marge@daugherty.info    \N    United States of America    Watsicashire    922 Bogan Viaduct    72355-7191    Ohio    2016-09-05 08:48:58.230502    2016-10-14 13:02:59.348695        \N    \N    \N    0    \N    \N    \N    \N    female
16318    Shane    Ondricka    novella@padberg.name    \N    Wallis and Futuna    Vivienbury    274 Payton Gardens    87909-5091    Wyoming    2016-08-19 16:44:47.338534    2016-10-14 13:02:59.360338        \N    \N    \N    0    \N    \N    \N    \N    male
16319    Rhianna    Flatley    josephine.rath@treutel.org    \N    Malaysia    Greenmouth    30324 Muller Plains    40333    California    2016-09-15 04:41:33.896639    2016-10-14 13:02:59.365724        \N    \N    \N    0    \N    \N    \N    \N    female
16320    Madilyn    Schinner    prudence_larson@lednerhoppe.name    \N    Antigua and Barbuda    Lynchstad    60545 Kohler Court    48252-7619    New Mexico    2016-08-17 12:27:43.910092    2016-10-14 13:02:59.370412        \N    \N    \N    0    \N    \N    \N    \N    male
16321    Sadie    Beatty    magdalen.wilkinson@quitzon.io    \N    Haiti    West June    36887 Collins Views    69191-2783    Alabama    2016-07-12 12:59:55.83285    2016-10-14 13:02:59.376209        \N    \N    \N    0    \N    \N    \N    \N    female
16322    Jairo    Funk    lia@stiedemann.org    \N    Malta    East Vaughnmouth    1757 Murphy Turnpike    31869    Nebraska    2016-07-18 13:47:25.861267    2016-10-14 13:02:59.380738        \N    \N    \N    0    \N    \N    \N    \N    female
16323    Cruz    Murphy    lukas@mcdermottbogan.net    \N    Jordan    Harrisbury    31503 Walter Mall    49756-5337    New Mexico    2016-08-14 13:16:24.316398    2016-10-14 13:02:59.38549        \N    \N    \N    0    \N    \N    \N    \N    female
16324    Henderson    Fahey    kelley@becker.info    \N    French Polynesia    West Jovaniport    61679 Friesen Keys    76807-2188    North Carolina    2016-08-04 18:06:38.560011    2016-10-14 13:02:59.390012        \N    \N    \N    0    \N    \N    \N    \N    female
16325    Hertha    Botsford    mckayla@ferryrunte.io    \N    Virgin Islands, British    East Loismouth    14203 Emilio Port    74034    New Hampshire    2016-09-16 19:39:39.283887    2016-10-14 13:02:59.394246        \N    \N    \N    0    \N    \N    \N    \N    female
16326    Margaret    Corkery    onie@ondricka.info    \N    Saint Vincent and the Grenadines    North Agustinatown    539 Cole Lakes    88515-1128    South Carolina    2016-08-02 08:41:41.379032    2016-10-14 13:02:59.407799        \N    \N    \N    0    \N    \N    \N    \N    female
16327    Retta    Feest    garrison@kohlerkuhlman.co    \N    Pitcairn Islands    Marisolport    9183 Brooke Hollow    39807-4344    North Carolina    2016-09-20 00:10:26.610755    2016-10-14 13:02:59.412488        \N    \N    \N    0    \N    \N    \N    \N    male
16328    Alfonso    Hilll    treie@bartoletticain.io    \N    Panama    South Joaquinberg    89819 Madyson Light    90915-4190    Wisconsin    2016-07-26 06:20:07.970052    2016-10-14 13:02:59.417032        \N    \N    \N    0    \N    \N    \N    \N    female
16329    Lucas    Wehner    ahmad@watsica.co    \N    Romania    New Terrencechester    2055 Windler Avenue    87876    Washington    2016-09-07 08:02:56.887612    2016-10-14 13:02:59.421697        \N    \N    \N    0    \N    \N    \N    \N    female
16330    Bridie    Mayer    buddy_champlin@franeckireilly.org    \N    Denmark    Corkerytown    1080 Ian Road    73422-5391    Connecticut    2016-09-25 19:30:01.17922    2016-10-14 13:02:59.426454        \N    \N    \N    0    \N    \N    \N    \N    male
16331    Willis    Mosciski    stevie_nolan@ritchie.name    \N    Republic of Korea    Fletastad    7746 Yasmine Freeway    12663-2745    Vermont    2016-08-06 12:05:44.06384    2016-10-14 13:02:59.431003        \N    \N    \N    0    \N    \N    \N    \N    male
16332    Arnoldo    Fay    ulices@koch.org    \N    Turkey    South Mohamedmouth    295 Nathaniel Ridge    81339-1805    Oregon    2016-08-08 07:54:02.938697    2016-10-14 13:02:59.435906        \N    \N    \N    0    \N    \N    \N    \N    male
16333    Corrine    Tremblay    alyson@murazikzemlak.com    \N    Jamaica    Colemouth    7626 Roberts Skyway    44274    Alabama    2016-07-24 20:04:56.136258    2016-10-14 13:02:59.440631        \N    \N    \N    0    \N    \N    \N    \N    male
16334    Neal    Emmerich    helmer_dietrich@bahringerpfannerstill.org    \N    Equatorial Guinea    Elwinport    51854 Russel Oval    63467-6574    Michigan    2016-09-10 15:40:41.19458    2016-10-14 13:02:59.446833        \N    \N    \N    0    \N    \N    \N    \N    female
16335    Ernesto    Shanahan    reynold.wuckert@macejkovicgrady.io    \N    Trinidad and Tobago    Beaulahton    8158 Daugherty Mill    39692-2153    Minnesota    2016-09-21 02:29:14.821795    2016-10-14 13:02:59.45549        \N    \N    \N    0    \N    \N    \N    \N    male
16336    Jaren    Langworth    cleta@crist.io    \N    Slovenia    Germanborough    785 Weimann Forest    61497    Alaska    2016-08-03 20:07:10.505513    2016-10-14 13:02:59.461087        \N    \N    \N    0    \N    \N    \N    \N    female
16337    Zion    Heaney    toney_eichmann@hermansipes.biz    \N    Vietnam    West Raymond    25814 Haag Port    96521    Mississippi    2016-09-04 12:30:18.99197    2016-10-14 13:02:59.467782        \N    \N    \N    0    \N    \N    \N    \N    female
16338    Micheal    Von    rosina.hickle@treutelbailey.net    \N    Reunion    Kristinview    453 Lila Fork    13598-2549    Oklahoma    2016-08-07 15:09:14.740847    2016-10-14 13:02:59.472639        \N    \N    \N    0    \N    \N    \N    \N    female
16339    Ray    Welch    jonas_buckridge@gottlieb.biz    \N    United States Minor Outlying Islands    Darwinville    62993 Bashirian Port    79552    Massachusetts    2016-09-18 05:55:28.332653    2016-10-14 13:02:59.478262        \N    \N    \N    0    \N    \N    \N    \N    female
16340    Rhiannon    Terry    karson@bode.org    \N    Palestinian Territory    Adalbertoshire    3132 Morton Hill    89143-2439    Missouri    2016-08-06 00:43:27.532313    2016-10-14 13:02:59.482823        \N    \N    \N    0    \N    \N    \N    \N    male
16341    Alicia    Kohler    davin_quitzon@kub.co    \N    Liberia    Dawnberg    370 Maximo Mountains    29818    Massachusetts    2016-07-23 21:18:48.503075    2016-10-14 13:02:59.493427        \N    \N    \N    0    \N    \N    \N    \N    male
16342    Urban    DuBuque    elmo_kuhlman@runtebahringer.name    \N    Denmark    New Bonnieview    294 Swaniawski Spring    44788-2604    Idaho    2016-07-24 06:18:55.185959    2016-10-14 13:02:59.498646        \N    \N    \N    0    \N    \N    \N    \N    male
16343    Reynold    Pagac    alyon@skiles.org    \N    Djibouti    North Jaeden    46873 Baumbach Cliffs    80345-3010    Montana    2016-08-14 15:49:52.381274    2016-10-14 13:02:59.503741        \N    \N    \N    0    \N    \N    \N    \N    female
16344    Vladimir    Thompson    brennan@waters.name    \N    Kenya    Beckerhaven    857 Gorczany Bridge    48409-2717    Rhode Island    2016-08-29 02:42:26.210484    2016-10-14 13:02:59.50853        \N    \N    \N    0    \N    \N    \N    \N    female
16345    Frederique    Rutherford    giovanna_nader@friesenemard.net    \N    Djibouti    South Rocioport    290 Elda Overpass    40623    Massachusetts    2016-09-07 17:28:51.684834    2016-10-14 13:02:59.512935        \N    \N    \N    0    \N    \N    \N    \N    female
18366    Ryleigh    Jacobi    graham@kirlin.info    \N    Cuba    Chaunceyborough    74268 Heidi Lane    30733    Maine    2016-07-18 03:15:11.167937    2016-10-14 13:02:59.517623        \N    \N    \N    0    \N    \N    \N    \N    female
16346    Deshawn    Feeney    meda_hodkiewicz@kirlin.io    \N    Cote d'Ivoire    New Jerrell    9902 Ulises Walk    28554-4988    Massachusetts    2016-07-23 02:53:14.1336    2016-10-14 13:02:59.522024        \N    \N    \N    0    \N    \N    \N    \N    male
16347    Carmella    Kessler    jena@greenlakin.net    \N    Egypt    Eloiseshire    7227 Alek Burgs    94296    Hawaii    2016-08-03 20:14:56.28639    2016-10-14 13:02:59.526997        \N    \N    \N    0    \N    \N    \N    \N    female
16348    Luther    White    jeika.cummings@keebler.org    \N    Monaco    Whitehaven    2306 Turner Meadow    13593-7089    New Hampshire    2016-08-19 06:49:07.957027    2016-10-14 13:02:59.532561        \N    \N    \N    0    \N    \N    \N    \N    female
16349    Kiara    Rempel    nichole.sipes@treutel.com    \N    Colombia    Lake Rosemary    4700 Tracey Drives    20481    Alaska    2016-08-03 04:48:38.730651    2016-10-14 13:02:59.540667        \N    \N    \N    0    \N    \N    \N    \N    female
16350    Abel    Barrows    marco.crooks@boehm.info    \N    United States Minor Outlying Islands    North Mableport    85146 Spencer Camp    41042    North Dakota    2016-08-23 22:33:16.677458    2016-10-14 13:02:59.545617        \N    \N    \N    0    \N    \N    \N    \N    female
16351    Kamryn    Welch    bernita.hagenes@kohler.com    \N    China    Leschmouth    8790 Parker Shoals    22227    Arizona    2016-06-23 13:37:46.552828    2016-10-14 13:02:59.55027        \N    \N    \N    0    \N    \N    \N    \N    male
16352    Norval    Bosco    laverna.sawayn@pollichswaniawski.co    \N    Angola    Lake Lesleyburgh    40798 Damaris Island    79098-6435    Montana    2016-06-24 05:35:24.876081    2016-10-14 13:02:59.554868        \N    \N    \N    0    \N    \N    \N    \N    male
16353    Stacy    Streich    noah_bartell@krisfisher.com    \N    Somalia    Lake Chanel    33144 Treutel Radial    88191    Alabama    2016-06-29 10:45:53.556061    2016-10-14 13:02:59.56061        \N    \N    \N    0    \N    \N    \N    \N    female
16354    Lawrence    Huels    felicita@osinskirosenbaum.com    \N    Italy    West Melvinmouth    5002 Auer Tunnel    39589-2408    Georgia    2016-09-21 16:41:22.6225    2016-10-14 13:02:59.565877        \N    \N    \N    0    \N    \N    \N    \N    male
16355    Deja    Kunde    ali@robel.net    \N    Holy See (Vatican City State)    Lake Elwinburgh    485 Sophie Groves    12381    Connecticut    2016-07-24 06:56:18.847746    2016-10-14 13:02:59.574572        \N    \N    \N    0    \N    \N    \N    \N    male
16357    Asia    Spinka    zakary_toy@lowe.net    \N    Saint Pierre and Miquelon    Bransonfurt    449 Cyril Ports    82445-2293    West Virginia    2016-08-30 04:15:07.433894    2016-10-14 13:02:59.586487        \N    \N    \N    0    \N    \N    \N    \N    male
16358    Ciara    Larkin    serenity_spencer@thompsonoconner.org    \N    Norway    North Zeldamouth    7257 Lynch Drives    51112    Maryland    2016-06-28 23:26:56.540213    2016-10-14 13:02:59.591411        \N    \N    \N    0    \N    \N    \N    \N    male
16359    Callie    Hane    coty@rippin.info    \N    Cyprus    Grantmouth    775 Mohr Cape    61464-6108    Pennsylvania    2016-09-23 06:44:32.738876    2016-10-14 13:02:59.596355        \N    \N    \N    0    \N    \N    \N    \N    male
16405    Willie    Nolan    erin@grady.io    \N    Virgin Islands, British    Lake Cordia    9407 Hoppe Hollow    79809    West Virginia    2016-06-25 15:49:13.894302    2016-10-14 13:02:59.602396        \N    \N    \N    0    \N    \N    \N    \N    male
16360    Adah    Stanton    porter_funk@thiel.biz    \N    Antarctica (the territory South of 60 deg S)    Lake Keeleyberg    3518 Lonie Island    69814-2048    Indiana    2016-08-29 20:42:30.584505    2016-10-14 13:02:59.607899        \N    \N    \N    0    \N    \N    \N    \N    male
16361    Bud    Prosacco    emmie_auer@parisianhudson.org    \N    Somalia    Kamrynland    36521 Kaylah Road    64947    Oklahoma    2016-09-21 10:27:58.312433    2016-10-14 13:02:59.615294        \N    \N    \N    0    \N    \N    \N    \N    female
16362    Laverne    Abbott    trent.collier@barton.org    \N    Paraguay    Lake Carolinamouth    3179 Eileen Radial    82279-1499    Kentucky    2016-09-26 00:07:44.582938    2016-10-14 13:02:59.619791        \N    \N    \N    0    \N    \N    \N    \N    female
16363    Brooke    Kreiger    tristin_hills@aufderhar.name    \N    Haiti    New Cameron    81664 Pfannerstill Street    11381    New Mexico    2016-06-26 20:57:36.236605    2016-10-14 13:02:59.624908        \N    \N    \N    0    \N    \N    \N    \N    female
16364    Demond    Hegmann    wilfred_hagenes@feil.io    \N    Argentina    West Kavonstad    900 Adrien Underpass    23965-5678    Michigan    2016-09-11 21:35:01.856815    2016-10-14 13:02:59.630757        \N    \N    \N    0    \N    \N    \N    \N    male
16365    Derrick    Kuhn    johnnie.feest@luettgenjenkins.org    \N    Denmark    West Colin    816 King Villages    76139-8006    Alaska    2016-08-03 01:34:42.134942    2016-10-14 13:02:59.63527        \N    \N    \N    0    \N    \N    \N    \N    male
16366    Nia    Stracke    guie@pollich.co    \N    Nauru    Willmsside    25475 Melyssa Camp    74185    Illinois    2016-09-20 13:12:35.913994    2016-10-14 13:02:59.645367        \N    \N    \N    0    \N    \N    \N    \N    female
16367    Ken    Bins    ruel.hermiston@rolfson.io    \N    Western Sahara    Port Elwin    40314 Russel Ferry    32037    Rhode Island    2016-09-25 16:39:13.666264    2016-10-14 13:02:59.650215        \N    \N    \N    0    \N    \N    \N    \N    female
16368    Prince    Rippin    nelson@muller.org    \N    Cocos (Keeling) Islands    Daughertyfurt    1127 Bartell Villages    69808    North Dakota    2016-09-14 13:15:34.372236    2016-10-14 13:02:59.655665        \N    \N    \N    0    \N    \N    \N    \N    male
16369    Jayce    Torphy    carley@hand.info    \N    Tuvalu    Kesslerborough    44011 Isac Valleys    68090    New Mexico    2016-07-10 07:46:42.033984    2016-10-14 13:02:59.661967        \N    \N    \N    0    \N    \N    \N    \N    female
16370    Cecilia    Bahringer    claud.bednar@rempel.info    \N    Tuvalu    Raynorshire    6713 Kole Flat    56890-2467    Colorado    2016-08-16 10:35:45.428343    2016-10-14 13:02:59.667079        \N    \N    \N    0    \N    \N    \N    \N    male
16371    Chris    Breitenberg    velma_schaden@adamswilliamson.io    \N    Congo    Lake Alisha    75934 Ashly Ridge    33602    Kansas    2016-07-20 18:47:05.162688    2016-10-14 13:02:59.671671        \N    \N    \N    0    \N    \N    \N    \N    male
16372    Letitia    Lockman    kennedy@bernier.org    \N    Jamaica    Lebsackport    6285 Shaylee Burg    60069-8365    New York    2016-07-24 04:32:19.690978    2016-10-14 13:02:59.676711        \N    \N    \N    0    \N    \N    \N    \N    female
16373    Blair    Pagac    dawn@deckow.co    \N    Saint Vincent and the Grenadines    Jarredton    619 Lou Tunnel    93196    Arizona    2016-06-28 01:57:14.843204    2016-10-14 13:02:59.68089        \N    \N    \N    0    \N    \N    \N    \N    female
16374    Katharina    Dickinson    seth_skiles@hintzboyle.net    \N    Sudan    Arafurt    65157 Grant Extensions    25345    Maryland    2016-07-06 23:07:59.698464    2016-10-14 13:02:59.684873        \N    \N    \N    0    \N    \N    \N    \N    female
16375    Kamryn    Hansen    nadia@macgyver.org    \N    Czech Republic    North Corrineburgh    5773 Moore Island    45772    Arkansas    2016-06-24 12:55:03.717781    2016-10-14 13:02:59.689068        \N    \N    \N    0    \N    \N    \N    \N    female
16376    Richie    Streich    carolyne@predovic.org    \N    Bolivia    Danielleton    9337 Beaulah Ports    49301-9131    Oklahoma    2016-09-19 01:20:48.536904    2016-10-14 13:02:59.693508        \N    \N    \N    0    \N    \N    \N    \N    female
16377    Sunny    Cremin    edwin.waelchi@lockman.biz    \N    Samoa    South Javon    56799 Claudia Mountains    87449-0168    New Jersey    2016-07-11 03:18:39.993322    2016-10-14 13:02:59.697967        \N    \N    \N    0    \N    \N    \N    \N    male
16378    Verner    Ryan    jaydon.harber@crona.io    \N    Norfolk Island    Pacochaland    19907 Verner Pines    35927-6330    Florida    2016-08-24 03:59:08.97326    2016-10-14 13:02:59.70224        \N    \N    \N    0    \N    \N    \N    \N    female
16379    Bryce    Hane    ocie_howell@herzog.name    \N    Iran    Lake Ovaport    2155 Polly Track    11731    Alaska    2016-08-03 10:00:08.977027    2016-10-14 13:02:59.706431        \N    \N    \N    0    \N    \N    \N    \N    female
16380    Schuyler    Upton    yadira@schinner.com    \N    Iran    North Jacinthe    4866 Dietrich Knoll    99580-0345    Rhode Island    2016-08-26 17:49:13.486333    2016-10-14 13:02:59.710926        \N    \N    \N    0    \N    \N    \N    \N    male
16381    Austen    Turcotte    brady@paucek.co    \N    Armenia    Flatleybury    7960 Auer Islands    34154    Georgia    2016-08-30 07:48:06.765439    2016-10-14 13:02:59.715033        \N    \N    \N    0    \N    \N    \N    \N    female
16382    Danial    Christiansen    mireya@rice.com    \N    Gambia    Auerstad    3969 Misty Views    83386-4083    Arkansas    2016-06-30 06:07:55.265765    2016-10-14 13:02:59.719264        \N    \N    \N    0    \N    \N    \N    \N    male
16383    Roger    Homenick    rylee_stroman@kuhn.com    \N    Ukraine    North Stuart    87201 Delta Ridges    27212    Illinois    2016-08-20 11:34:07.701302    2016-10-14 13:02:59.723923        \N    \N    \N    0    \N    \N    \N    \N    male
16384    Chad    McCullough    enola@douglaslabadie.io    \N    Gabon    New Barrett    19241 Torrance Mountains    69925    Massachusetts    2016-08-19 03:27:18.288521    2016-10-14 13:02:59.730628        \N    \N    \N    0    \N    \N    \N    \N    female
16385    Clovis    Goldner    aliya@bashiriangislason.info    \N    Chile    Vincenzamouth    4554 Matilde Flats    68986    Arkansas    2016-07-29 02:38:28.141288    2016-10-14 13:02:59.743314        \N    \N    \N    0    \N    \N    \N    \N    female
16386    Carlie    Kiehn    derek.lakin@fadelfadel.org    \N    Pitcairn Islands    Dulcehaven    656 Alverta Orchard    60887    Louisiana    2016-06-25 09:02:56.329671    2016-10-14 13:02:59.74786        \N    \N    \N    0    \N    \N    \N    \N    male
16387    Jordi    Goldner    carli_hudson@senger.co    \N    Palestinian Territory    Dominiquechester    7103 Crooks Drive    80392-9412    South Dakota    2016-07-29 16:03:05.96289    2016-10-14 13:02:59.754061        \N    \N    \N    0    \N    \N    \N    \N    female
16388    Ryan    Mraz    garry@grimes.io    \N    Papua New Guinea    Leathaton    8754 Lueilwitz Union    37225-8495    Vermont    2016-08-20 02:42:08.688501    2016-10-14 13:02:59.759365        \N    \N    \N    0    \N    \N    \N    \N    male
16389    Kyler    Leffler    nicola.powlowski@torpframi.info    \N    Marshall Islands    Lake Torrance    26847 Casandra Park    59642    Nevada    2016-07-08 17:14:35.510299    2016-10-14 13:02:59.767547        \N    \N    \N    0    \N    \N    \N    \N    female
16390    Anissa    O'Reilly    francesca.runolfon@hackett.io    \N    Guam    Lake Alison    30456 Gibson Route    82348-9799    Alabama    2016-07-14 02:09:05.986823    2016-10-14 13:02:59.782599        \N    \N    \N    0    \N    \N    \N    \N    female
16391    Elvie    Hartmann    jazmyne.johns@metz.co    \N    Guinea-Bissau    Port Esta    524 Jazmyn Walk    46872-4990    Oklahoma    2016-08-28 17:01:46.231216    2016-10-14 13:02:59.794464        \N    \N    \N    0    \N    \N    \N    \N    female
16392    Florian    Buckridge    vaughn.christiansen@prosaccohilll.net    \N    United Arab Emirates    Justicefurt    10760 Edwin Hill    85862-5149    Florida    2016-08-15 15:57:05.458866    2016-10-14 13:02:59.799513        \N    \N    \N    0    \N    \N    \N    \N    male
16393    Gaetano    Gutmann    alfonzo_carroll@schulistfay.org    \N    Bermuda    West Clarkshire    6972 Braun Loop    76353    California    2016-08-15 01:03:03.230237    2016-10-14 13:02:59.805296        \N    \N    \N    0    \N    \N    \N    \N    female
16394    Mia    Kassulke    shea@grimesdoyle.name    \N    Benin    Crooksside    968 Bosco Circles    49649    Tennessee    2016-08-12 04:31:00.90097    2016-10-14 13:02:59.812737        \N    \N    \N    0    \N    \N    \N    \N    female
16395    Mireya    Kreiger    irma@zboncak.biz    \N    Swaziland    East Tarynfort    8271 Vandervort Centers    82791-6692    Hawaii    2016-09-26 02:31:18.246963    2016-10-14 13:02:59.817993        \N    \N    \N    0    \N    \N    \N    \N    female
16396    Kallie    Robel    jules_okon@muellerfriesen.info    \N    Dominica    Lake Jordyberg    26960 Daniel Wall    37573    Texas    2016-09-09 07:01:22.738039    2016-10-14 13:02:59.824596        \N    \N    \N    0    \N    \N    \N    \N    male
16397    Ola    Kutch    alyon@corkery.io    \N    Mozambique    West Paxton    53498 Batz Walk    39063-0155    Massachusetts    2016-09-23 11:32:39.250073    2016-10-14 13:02:59.829947        \N    \N    \N    0    \N    \N    \N    \N    female
16398    Amie    Spencer    ida@marks.org    \N    Haiti    Cartertown    7125 Curt Spur    17652-8147    North Dakota    2016-07-14 15:51:11.870206    2016-10-14 13:02:59.834432        \N    \N    \N    0    \N    \N    \N    \N    female
16399    Chyna    Nader    ford@simonis.biz    \N    Paraguay    Herzogburgh    51011 Bashirian Mountain    80983    Maine    2016-08-14 12:28:05.442838    2016-10-14 13:02:59.838794        \N    \N    \N    0    \N    \N    \N    \N    male
16400    Laisha    Keebler    thurman@ward.name    \N    Martinique    Vidalshire    83772 Stehr Shoals    37197    Michigan    2016-08-05 13:40:52.759663    2016-10-14 13:02:59.843175        \N    \N    \N    0    \N    \N    \N    \N    female
16401    Arturo    Roberts    christophe_jast@connellylangosh.net    \N    Palestinian Territory    Lake Titus    5444 Murazik Shore    90097-9887    Utah    2016-08-19 09:12:37.351361    2016-10-14 13:02:59.848156        \N    \N    \N    0    \N    \N    \N    \N    female
16402    Jovan    Zemlak    judd@hageneshowe.name    \N    Gibraltar    Port Hughmouth    9205 Heathcote Flat    22043-4208    South Carolina    2016-07-02 03:05:07.44976    2016-10-14 13:02:59.852687        \N    \N    \N    0    \N    \N    \N    \N    male
16407    Carolina    Corkery    mattie.kihn@bartell.info    \N    Iraq    Greenfelderville    8626 Cayla Common    78485    Washington    2016-07-07 19:14:44.315378    2016-10-14 13:02:59.857467        \N    \N    \N    0    \N    \N    \N    \N    male
16408    Leta    Schowalter    pierce@schamberger.net    \N    Liechtenstein    Brainbury    682 Larkin Overpass    74122-8409    Alabama    2016-07-08 11:36:36.184454    2016-10-14 13:02:59.86245        \N    \N    \N    0    \N    \N    \N    \N    female
16410    Willis    Strosin    bettie.green@langworth.name    \N    Albania    Lake Otha    9882 Ben Meadow    73445-9694    Virginia    2016-07-05 15:11:37.697503    2016-10-14 13:02:59.869159        \N    \N    \N    0    \N    \N    \N    \N    male
16411    Vladimir    Kilback    conner.miller@vandervortcremin.io    \N    Cote d'Ivoire    New Watson    39982 Hills Summit    28755    California    2016-08-15 13:54:15.977528    2016-10-14 13:02:59.874217        \N    \N    \N    0    \N    \N    \N    \N    female
16412    Green    Moore    floy@smithrolfson.com    \N    Papua New Guinea    Port Bud    1925 Mariela Roads    49846    Montana    2016-06-24 17:16:32.484523    2016-10-14 13:02:59.879532        \N    \N    \N    0    \N    \N    \N    \N    female
16413    Dessie    Bruen    giovanna.jacobi@moen.org    \N    Canada    East Laurieside    339 Rice Court    88841    Colorado    2016-09-18 00:08:27.340612    2016-10-14 13:02:59.884515        \N    \N    \N    0    \N    \N    \N    \N    male
16414    Angelica    Stamm    yazmin@koeppgerhold.io    \N    Netherlands Antilles    Geovanniport    67023 Solon Ford    32193-1802    Hawaii    2016-08-18 02:54:48.143276    2016-10-14 13:02:59.889841        \N    \N    \N    0    \N    \N    \N    \N    female
16415    Nicholas    Oberbrunner    jaylan@white.net    \N    Morocco    Kulasborough    18023 Vito Islands    70528    Minnesota    2016-07-12 11:39:42.878591    2016-10-14 13:02:59.894202        \N    \N    \N    0    \N    \N    \N    \N    male
16417    Daphnee    Windler    janea_luettgen@waelchicollins.info    \N    Azerbaijan    Murrayville    918 Sipes Station    94194    Alaska    2016-09-27 22:14:45.126711    2016-10-14 13:02:59.898636        \N    \N    \N    0    \N    \N    \N    \N    male
16418    Chelsea    Kemmer    sebastian@cummerata.info    \N    French Guiana    Lake Baby    1016 Mariam Camp    99860-5598    Oregon    2016-07-17 12:16:29.868413    2016-10-14 13:02:59.903291        \N    \N    \N    0    \N    \N    \N    \N    male
16419    Ursula    Lueilwitz    jordy@sauer.info    \N    Martinique    South Kayley    841 Oliver Station    77365    West Virginia    2016-08-13 11:43:41.785584    2016-10-14 13:02:59.907967        \N    \N    \N    0    \N    \N    \N    \N    female
16420    Ila    Daniel    oscar.medhurst@lockman.biz    \N    Honduras    South Faye    3063 Bosco Crest    67626    Kansas    2016-09-14 15:09:29.809168    2016-10-14 13:02:59.913234        \N    \N    \N    0    \N    \N    \N    \N    male
16421    Timmy    Huel    isabel.koelpin@gerlachswaniawski.org    \N    Indonesia    Karsonfurt    50135 Schumm Walks    86788    Montana    2016-08-26 05:48:14.76657    2016-10-14 13:02:59.918031        \N    \N    \N    0    \N    \N    \N    \N    female
16422    Jeanette    Ruecker    ewald@vonrueden.com    \N    Cocos (Keeling) Islands    Schuylerstad    4298 Chloe Groves    80697-7155    Oregon    2016-09-26 05:56:29.507687    2016-10-14 13:02:59.922566        \N    \N    \N    0    \N    \N    \N    \N    male
16423    Arne    Steuber    kailee@jones.com    \N    Belarus    New Edna    3493 Eusebio Roads    21574-6852    New Mexico    2016-08-15 07:19:33.581871    2016-10-14 13:02:59.926836        \N    \N    \N    0    \N    \N    \N    \N    male
16424    Darrell    Witting    fredrick@bodecrona.info    \N    Cyprus    East Boburgh    252 Cara Cliff    61801-5977    Montana    2016-09-18 21:43:11.526076    2016-10-14 13:02:59.932681        \N    \N    \N    0    \N    \N    \N    \N    male
16426    Jackeline    Rosenbaum    delores@feeney.org    \N    Kuwait    Port Clay    6431 Douglas View    28501-7108    New Hampshire    2016-09-09 02:05:04.691199    2016-10-14 13:02:59.937218        \N    \N    \N    0    \N    \N    \N    \N    female
16427    Karelle    Price    carol@gutkowski.biz    \N    Mauritius    Nolanbury    975 Dovie Rapid    14474-0555    Oregon    2016-08-29 10:58:32.414758    2016-10-14 13:02:59.941924        \N    \N    \N    0    \N    \N    \N    \N    female
16429    Braxton    Cormier    lavada@swaniawski.name    \N    Anguilla    Stephaniaton    16452 Lenore Fall    66005-5991    Arkansas    2016-09-20 04:16:34.538621    2016-10-14 13:02:59.947608        \N    \N    \N    0    \N    \N    \N    \N    male
16430    Keeley    Klein    davonte@blandanicolas.name    \N    Ireland    West Turner    984 Stokes Plains    30794-4928    New Mexico    2016-07-07 06:19:00.912914    2016-10-14 13:02:59.952433        \N    \N    \N    0    \N    \N    \N    \N    female
16431    Zack    Grant    geovanny@haley.org    \N    Virgin Islands, U.S.    Ondrickafort    645 Ernest Via    22529    Pennsylvania    2016-07-28 04:42:13.346159    2016-10-14 13:02:59.956923        \N    \N    \N    0    \N    \N    \N    \N    female
16432    Cyrus    Mayert    pansy@rippin.biz    \N    Bahrain    North Bridgetland    409 Kuhic Vista    49394-9590    Idaho    2016-09-16 03:58:48.596939    2016-10-14 13:02:59.961895        \N    \N    \N    0    \N    \N    \N    \N    male
16433    Alessandro    Reichel    orin_zboncak@mclaughlingreen.co    \N    Iraq    Port Alford    217 Quigley Extensions    36734-8910    New Hampshire    2016-06-30 09:49:20.550222    2016-10-14 13:02:59.967017        \N    \N    \N    0    \N    \N    \N    \N    female
16434    Elwin    Stracke    nicholaus@ebert.org    \N    Afghanistan    North Herthachester    24914 Antonetta Points    90275    Kentucky    2016-08-11 04:44:19.879654    2016-10-14 13:02:59.971626        \N    \N    \N    0    \N    \N    \N    \N    female
16435    Quinn    Paucek    gillian_bradtke@huel.net    \N    Saint Martin    West Griffin    99719 Wilkinson Plains    97114-8728    California    2016-08-20 12:16:43.358149    2016-10-14 13:02:59.981        \N    \N    \N    0    \N    \N    \N    \N    female
16436    Curtis    McDermott    oceane.kovacek@swaniawski.io    \N    Slovenia    West Jailynville    8072 Lelah Square    66242    Mississippi    2016-06-25 07:07:42.40515    2016-10-14 13:02:59.989031        \N    \N    \N    0    \N    \N    \N    \N    female
16437    Jeromy    Sipes    maribel.wiegand@hintz.co    \N    Pakistan    Lake Leopoldville    63184 Hyatt Mountains    81688    Maryland    2016-06-24 18:22:37.524317    2016-10-14 13:02:59.995309        \N    \N    \N    0    \N    \N    \N    \N    female
16439    Roy    Stanton    karen@flatley.info    \N    Morocco    Balistreriton    4164 Houston Cape    47224-3404    Iowa    2016-07-05 22:52:49.075881    2016-10-14 13:02:59.999988        \N    \N    \N    0    \N    \N    \N    \N    female
16440    Mark    Strosin    monique@collins.co    \N    Uruguay    Marquardtmouth    170 Judy Manors    11387-5470    Arizona    2016-08-17 05:12:36.233599    2016-10-14 13:03:00.00839        \N    \N    \N    0    \N    \N    \N    \N    female
16441    Raven    Dickinson    aisha.marvin@mitchellborer.io    \N    United Arab Emirates    East Juleschester    78975 Jaunita Courts    68195-2299    South Dakota    2016-06-26 20:30:49.613729    2016-10-14 13:03:00.014255        \N    \N    \N    0    \N    \N    \N    \N    male
16442    Lina    Little    ali_schuster@rowemraz.io    \N    Nepal    Lake Aliviaport    3639 Cartwright Stream    23113-1137    Connecticut    2016-08-05 04:26:14.289315    2016-10-14 13:03:00.019211        \N    \N    \N    0    \N    \N    \N    \N    female
16443    Jamar    Schaefer    edna_lind@senger.com    \N    Brazil    New Jeradville    4639 Tristian Plaza    82743    Kansas    2016-08-02 20:03:18.287796    2016-10-14 13:03:00.023953        \N    \N    \N    0    \N    \N    \N    \N    male
16444    Laurine    Gutmann    rachel@hermistonullrich.io    \N    Saint Helena    Harrisside    17810 Gibson Union    39722    Missouri    2016-08-30 12:14:43.185781    2016-10-14 13:03:00.029915        \N    \N    \N    0    \N    \N    \N    \N    male
16445    Luz    Mohr    neva@ziemann.info    \N    Cook Islands    East Maudie    79452 Watsica Cliff    64803-4426    Maine    2016-09-22 20:13:26.833083    2016-10-14 13:03:00.035084        \N    \N    \N    0    \N    \N    \N    \N    male
16446    Nona    Lebsack    kurtis@eichmann.org    \N    Lithuania    North Clara    858 Flatley Forest    97923    Colorado    2016-07-24 18:39:27.709087    2016-10-14 13:03:00.039891        \N    \N    \N    0    \N    \N    \N    \N    female
16447    Troy    Mertz    jarrod@sengerhagenes.info    \N    British Indian Ocean Territory (Chagos Archipelago)    Jenningshaven    289 Myriam Road    70774    Illinois    2016-08-31 08:46:25.67969    2016-10-14 13:03:00.04735        \N    \N    \N    0    \N    \N    \N    \N    male
16448    Emmy    Skiles    deie.friesen@pacocha.org    \N    Macedonia    Melodyhaven    81879 Dickens Courts    69361    Kentucky    2016-08-15 23:04:35.947695    2016-10-14 13:03:00.052666        \N    \N    \N    0    \N    \N    \N    \N    male
16449    Allen    Gorczany    carli.jacobi@gibsonpagac.net    \N    Mayotte    Port Angela    842 Russel Manors    34749-3782    Illinois    2016-09-05 13:53:17.698753    2016-10-14 13:03:00.058023        \N    \N    \N    0    \N    \N    \N    \N    male
16450    Abbie    Fahey    keara@medhurst.name    \N    Benin    Port Jaclynchester    9478 Renner Place    15975    California    2016-07-12 08:47:27.55403    2016-10-14 13:03:00.063562        \N    \N    \N    0    \N    \N    \N    \N    female
16452    Jordi    Schuppe    sherman_pollich@strackeoberbrunner.net    \N    Cocos (Keeling) Islands    Clareview    6534 McLaughlin Rest    19064    Massachusetts    2016-07-16 15:55:22.193387    2016-10-14 13:03:00.068686        \N    \N    \N    0    \N    \N    \N    \N    female
16453    Itzel    Kuhn    deven@goodwinkozey.net    \N    Estonia    Jermeyburgh    9566 Hintz Passage    65530    Georgia    2016-07-30 21:56:06.571605    2016-10-14 13:03:00.097008        \N    \N    \N    0    \N    \N    \N    \N    female
16455    Jamal    Runte    lorine_hauck@beattyfadel.biz    \N    French Polynesia    Miloborough    68581 Kristopher Inlet    49033    Texas    2016-08-20 08:29:03.771852    2016-10-14 13:03:00.104277        \N    \N    \N    0    \N    \N    \N    \N    female
16456    Christian    Schamberger    austin.walter@parisian.net    \N    Liberia    Port Cathy    81410 Erna Union    59967-4650    Louisiana    2016-07-24 05:59:43.760635    2016-10-14 13:03:00.122218        \N    \N    \N    0    \N    \N    \N    \N    male
16457    Nova    Jacobi    santiago_collier@ko.net    \N    Trinidad and Tobago    West Larissa    56461 Demarco Harbor    42866    Oregon    2016-08-14 12:13:39.188866    2016-10-14 13:03:00.138657        \N    \N    \N    0    \N    \N    \N    \N    female
16458    Dewayne    McDermott    levi.adams@romaguera.io    \N    Congo    Madalinebury    60804 Funk Dam    30165-2590    Oklahoma    2016-08-15 15:28:48.674403    2016-10-14 13:03:00.146493        \N    \N    \N    0    \N    \N    \N    \N    male
16459    Christophe    Rutherford    bryana@frami.biz    \N    Tajikistan    East Hudson    6231 Cronin Ferry    86561    Louisiana    2016-07-30 13:29:53.860354    2016-10-14 13:03:00.154561        \N    \N    \N    0    \N    \N    \N    \N    female
16460    Woodrow    Maggio    ubaldo@runolfon.biz    \N    Somalia    West Shawn    65092 Zemlak Loop    22194-2709    Vermont    2016-07-19 03:16:47.780191    2016-10-14 13:03:00.160125        \N    \N    \N    0    \N    \N    \N    \N    male
16461    Ella    Kohler    henriette.murphy@beier.name    \N    Tuvalu    Bergnaumshire    987 Avis Rest    78434    Minnesota    2016-08-21 04:53:42.785055    2016-10-14 13:03:00.166558        \N    \N    \N    0    \N    \N    \N    \N    male
16462    Jerrold    Conn    arnulfo_will@gulgowski.biz    \N    Japan    South Mateo    55104 Keeley Avenue    51479    Idaho    2016-08-04 03:42:34.140735    2016-10-14 13:03:00.18698        \N    \N    \N    0    \N    \N    \N    \N    female
16463    Juwan    Romaguera    quinton.walter@botsford.com    \N    Svalbard & Jan Mayen Islands    Port Mariannemouth    11293 Rolfson Manors    68899-5364    Georgia    2016-08-28 09:51:11.923567    2016-10-14 13:03:00.210637        \N    \N    \N    0    \N    \N    \N    \N    female
16464    Jevon    Jacobson    hellen@von.name    \N    Suriname    Karlishire    9218 Tyrese Terrace    26846-4114    Washington    2016-07-20 20:27:12.202616    2016-10-14 13:03:00.228656        \N    \N    \N    0    \N    \N    \N    \N    female
16465    Neal    Hettinger    casey_mitchell@lueilwitzwest.io    \N    Saint Lucia    Medhurststad    62037 Neha Tunnel    51864    Pennsylvania    2016-07-10 23:39:41.764578    2016-10-14 13:03:00.23411        \N    \N    \N    0    \N    \N    \N    \N    female
16466    Fidel    Windler    lambert@buckridgerunte.net    \N    Estonia    Lake Cooperbury    7486 Cleta Pines    76983-4959    Pennsylvania    2016-08-03 08:56:21.907781    2016-10-14 13:03:00.239555        \N    \N    \N    0    \N    \N    \N    \N    male
16468    Raina    Grimes    taya.lehner@lindgren.net    \N    Madagascar    Oscarchester    2102 Mann Locks    37893    New Hampshire    2016-09-22 23:41:45.112686    2016-10-14 13:03:00.244654        \N    \N    \N    0    \N    \N    \N    \N    male
16469    Adrain    Powlowski    annamae@hahnjenkins.name    \N    Congo    Deckowtown    6612 Barton Ramp    17165    Oklahoma    2016-09-20 11:27:56.527194    2016-10-14 13:03:00.266831        \N    \N    \N    0    \N    \N    \N    \N    male
16470    Kevin    Rutherford    ro@hayes.io    \N    Reunion    Lake Ali    76350 Jenkins Field    22448-5327    Washington    2016-09-20 19:11:10.722495    2016-10-14 13:03:00.287111        \N    \N    \N    0    \N    \N    \N    \N    female
16471    Vilma    Schuster    mallie.connelly@connellyboyer.info    \N    Suriname    East Lillian    56218 Towne Locks    50481    Minnesota    2016-07-08 13:47:52.921914    2016-10-14 13:03:00.308793        \N    \N    \N    0    \N    \N    \N    \N    female
16472    Lessie    Crona    ransom.pacocha@hilpert.com    \N    Tokelau    Port Ansleyberg    513 Heaney Path    50717-3943    Nebraska    2016-09-04 10:39:06.545403    2016-10-14 13:03:00.330893        \N    \N    \N    0    \N    \N    \N    \N    male
16473    Maia    Spinka    garrick.wolf@pfannerstillboyer.org    \N    Zimbabwe    Berylview    714 Schneider Stream    25732    New Hampshire    2016-07-29 12:34:11.322269    2016-10-14 13:03:00.350779        \N    \N    \N    0    \N    \N    \N    \N    male
16474    Kirstin    Christiansen    reginald.raynor@harveybins.co    \N    Ireland    Robelberg    66350 Bogan Station    36087-6905    Texas    2016-07-16 22:52:45.656924    2016-10-14 13:03:00.368854        \N    \N    \N    0    \N    \N    \N    \N    male
16475    Royce    Rath    kenton.ruecker@zemlakbergstrom.biz    \N    Cote d'Ivoire    Haagside    72527 Watson Trail    39770    California    2016-06-26 07:55:15.859616    2016-10-14 13:03:00.379067        \N    \N    \N    0    \N    \N    \N    \N    female
16476    Yasmin    Boyle    terrill_gusikowski@lockmanokon.biz    \N    Australia    Antoinetteville    9984 Herbert Expressway    92082-3506    Vermont    2016-07-10 09:56:14.551014    2016-10-14 13:03:00.394427        \N    \N    \N    0    \N    \N    \N    \N    male
16477    Jamarcus    Okuneva    minnie_rolfson@hamillwaelchi.biz    \N    Panama    Port Hardymouth    6664 Newton Ridge    72902-9271    Massachusetts    2016-09-20 05:17:24.983981    2016-10-14 13:03:00.401343        \N    \N    \N    0    \N    \N    \N    \N    female
16478    Teagan    Littel    declan@wilderman.name    \N    Swaziland    South Aidanshire    97264 Kunze Fork    69959    Florida    2016-08-31 09:49:43.876201    2016-10-14 13:03:00.412131        \N    \N    \N    0    \N    \N    \N    \N    female
16479    Emiliano    Howe    vilma_boyer@wardstokes.co    \N    Jersey    Wunschside    4823 Wiegand Dale    40551    New York    2016-09-06 12:36:32.142037    2016-10-14 13:03:00.419801        \N    \N    \N    0    \N    \N    \N    \N    female
16480    Osvaldo    King    koby@hayes.io    \N    Botswana    North Magnolia    645 Giovanny Valley    51622    Colorado    2016-07-21 21:24:57.669988    2016-10-14 13:03:00.434569        \N    \N    \N    0    \N    \N    \N    \N    male
16481    Giuseppe    Keeling    mollie@cristweimann.co    \N    Guam    Binsside    768 Reta Stravenue    14860-7508    New York    2016-09-25 11:36:52.099213    2016-10-14 13:03:00.446643        \N    \N    \N    0    \N    \N    \N    \N    female
16482    Johnson    Bogan    branson@harris.com    \N    Palau    West Keyon    1364 Lang Manor    66644    Vermont    2016-08-12 22:32:09.982819    2016-10-14 13:03:00.462765        \N    \N    \N    0    \N    \N    \N    \N    female
16483    Lucie    Funk    andre@schmeler.com    \N    Bangladesh    Gutkowskibury    6850 Imani Village    35705-3375    South Dakota    2016-08-26 21:46:34.049305    2016-10-14 13:03:00.476087        \N    \N    \N    0    \N    \N    \N    \N    female
16484    Emmy    Grady    eulah.feil@nikolausbuckridge.name    \N    Tanzania    East Alexandroborough    71666 Lindgren Expressway    29788    Louisiana    2016-07-22 16:22:54.250345    2016-10-14 13:03:00.485746        \N    \N    \N    0    \N    \N    \N    \N    male
16485    Kirsten    Berge    sibyl@gutmann.org    \N    Gabon    East Joaquin    5517 Considine Shoal    37255-9744    Utah    2016-09-18 15:46:08.318729    2016-10-14 13:03:00.49301        \N    \N    \N    0    \N    \N    \N    \N    male
16486    Joannie    Crona    brendon@dibbert.io    \N    Algeria    Amayaland    69983 Stephanie Drives    80001    Michigan    2016-08-11 05:00:47.59686    2016-10-14 13:03:00.500692        \N    \N    \N    0    \N    \N    \N    \N    male
16487    Wellington    Blanda    kennith.kemmer@upton.com    \N    United Kingdom    Buckridgeland    627 Klein Creek    92045    South Dakota    2016-08-11 04:15:10.244868    2016-10-14 13:03:00.515099        \N    \N    \N    0    \N    \N    \N    \N    female
16488    Celestino    Huels    tremaine@bruen.io    \N    Myanmar    Christiansenshire    295 Gwendolyn Ferry    77638    Illinois    2016-07-20 16:45:16.213839    2016-10-14 13:03:00.53031        \N    \N    \N    0    \N    \N    \N    \N    female
16489    Johann    Kertzmann    leann.welch@schmitt.biz    \N    Italy    Trantowfurt    55085 Haley Ways    12402-2104    California    2016-07-01 06:03:52.062479    2016-10-14 13:03:00.537741        \N    \N    \N    0    \N    \N    \N    \N    female
16490    Lillie    Russel    ania@kuhic.io    \N    Portugal    West Stanfordborough    9884 Crist Streets    16559    Rhode Island    2016-07-25 16:05:41.442887    2016-10-14 13:03:00.548823        \N    \N    \N    0    \N    \N    \N    \N    male
16491    Karine    Bradtke    merle@bins.net    \N    Rwanda    Ziemannville    6174 Gerda Extensions    99199-7672    Wisconsin    2016-08-13 23:39:28.0837    2016-10-14 13:03:00.553882        \N    \N    \N    0    \N    \N    \N    \N    female
16492    Kailee    Morissette    moises@pfeffer.net    \N    Denmark    Lucianofurt    56978 Courtney Street    54455    Wyoming    2016-09-04 07:51:08.97834    2016-10-14 13:03:00.558597        \N    \N    \N    0    \N    \N    \N    \N    male
16493    Unique    Kunze    amani_connelly@schmelerhauck.biz    \N    French Polynesia    Laneyside    760 Abernathy Mountains    94804    Louisiana    2016-09-11 13:25:25.369987    2016-10-14 13:03:00.566733        \N    \N    \N    0    \N    \N    \N    \N    male
16494    Sylvia    O'Reilly    colin_marquardt@rosenbaum.co    \N    Saint Martin    Theodoreport    560 Leola Roads    96013    Oklahoma    2016-09-14 11:39:12.345792    2016-10-14 13:03:00.571939        \N    \N    \N    0    \N    \N    \N    \N    female
16495    Elian    McCullough    wilburn_muller@jacobidickinson.com    \N    Bosnia and Herzegovina    New Maynardland    1599 Sipes Freeway    73870-8456    Kentucky    2016-07-25 10:54:15.613225    2016-10-14 13:03:00.577246        \N    \N    \N    0    \N    \N    \N    \N    male
16497    Twila    Sauer    norma_volkman@jacobihegmann.net    \N    Malaysia    North Allison    8701 Hayes Neck    90627-2877    New Mexico    2016-07-07 20:19:08.548896    2016-10-14 13:03:00.584711        \N    \N    \N    0    \N    \N    \N    \N    male
16498    Russell    Franecki    myrtis@hahnborer.co    \N    Togo    Muellerport    5351 Yundt Square    58726-8192    Colorado    2016-07-19 22:55:53.471066    2016-10-14 13:03:00.590273        \N    \N    \N    0    \N    \N    \N    \N    female
16499    Alexanne    Koelpin    hillard.kunde@kutchdavis.co    \N    Uruguay    Lake Nia    348 Bert Loaf    42248-0971    Florida    2016-06-28 23:33:03.844056    2016-10-14 13:03:00.595977        \N    \N    \N    0    \N    \N    \N    \N    male
16500    Daphnee    Ward    eino@feil.com    \N    Tanzania    Kolbychester    920 Hagenes Via    87217    New Mexico    2016-07-06 10:59:21.099587    2016-10-14 13:03:00.601158        \N    \N    \N    0    \N    \N    \N    \N    female
16501    Ryann    Tremblay    gretchen_berge@carteroconner.com    \N    Sao Tome and Principe    Yesseniaview    4006 Schinner Drives    97262    Maryland    2016-09-09 02:38:35.497198    2016-10-14 13:03:00.606039        \N    \N    \N    0    \N    \N    \N    \N    female
16502    Lavern    Hammes    estevan_ankunding@dooley.co    \N    Switzerland    Princesston    8372 Labadie Loop    26294-5097    New Mexico    2016-09-15 07:18:29.088667    2016-10-14 13:03:00.611618        \N    \N    \N    0    \N    \N    \N    \N    female
16503    Millie    Hahn    emily.bashirian@murazik.biz    \N    Isle of Man    West Treyberg    263 Rath Mission    36848-3424    Kansas    2016-08-18 07:23:57.919115    2016-10-14 13:03:00.616739        \N    \N    \N    0    \N    \N    \N    \N    male
16504    Damion    Rau    allan.kunze@effertznolan.info    \N    Cyprus    East Janiyabury    2611 Beaulah Inlet    59944-7797    Alaska    2016-08-07 10:24:16.255411    2016-10-14 13:03:00.622337        \N    \N    \N    0    \N    \N    \N    \N    female
16505    Mohamed    Mills    emmanuelle_kohler@nicolas.com    \N    Syrian Arab Republic    Babybury    48221 Stracke Underpass    20595-9659    North Dakota    2016-08-29 00:28:14.60551    2016-10-14 13:03:00.627197        \N    \N    \N    0    \N    \N    \N    \N    female
16506    Aaliyah    Hartmann    isaias@macgyver.com    \N    Cote d'Ivoire    New Sabryna    865 Grant Harbor    53215    Massachusetts    2016-09-27 22:38:56.745505    2016-10-14 13:03:00.632205        \N    \N    \N    0    \N    \N    \N    \N    male
16507    Kennedi    Anderson    isom.stanton@kirlinrohan.co    \N    Iraq    New Delaneyburgh    54372 Laurianne Trail    41958-6724    Texas    2016-08-11 13:22:53.680225    2016-10-14 13:03:00.636915        \N    \N    \N    0    \N    \N    \N    \N    female
16508    Fanny    Murazik    leanna.satterfield@ferrybatz.org    \N    Uruguay    Lake Charlene    4486 Kessler Freeway    15288    Nebraska    2016-07-23 01:27:39.153421    2016-10-14 13:03:00.641684        \N    \N    \N    0    \N    \N    \N    \N    male
16509    Trevion    Grant    lesly@beahan.name    \N    Solomon Islands    Hayesfurt    5616 Runolfsdottir Loop    54918-3901    Wisconsin    2016-08-02 03:11:11.335552    2016-10-14 13:03:00.646124        \N    \N    \N    0    \N    \N    \N    \N    male
16510    Brock    Weber    darien@schambergerjenkins.co    \N    Cuba    Port Rickey    1026 Jacobi Islands    58909    New Hampshire    2016-07-04 02:26:00.109687    2016-10-14 13:03:00.651694        \N    \N    \N    0    \N    \N    \N    \N    female
16512    Della    Howe    terence_schultz@jacobi.biz    \N    Nepal    Milesfort    9314 Keaton Hill    82218    North Dakota    2016-07-27 05:04:25.438117    2016-10-14 13:03:00.657158        \N    \N    \N    0    \N    \N    \N    \N    male
16513    Nico    Hauck    terence@herzogdenesik.name    \N    Lesotho    New Billy    560 Matt Mountains    51652    Idaho    2016-08-23 18:11:23.162696    2016-10-14 13:03:00.661912        \N    \N    \N    0    \N    \N    \N    \N    female
16514    Colt    Ferry    krista.cummerata@lubowitzbins.io    \N    Saint Kitts and Nevis    South Aidahaven    5314 Darrick Mountains    93298-2752    Nebraska    2016-07-27 08:02:27.052513    2016-10-14 13:03:00.666486        \N    \N    \N    0    \N    \N    \N    \N    female
16515    Hardy    Spencer    cordell@goldnerfay.com    \N    Western Sahara    Jeremyshire    4326 Denesik Island    21940-8985    Delaware    2016-08-20 11:55:09.358001    2016-10-14 13:03:00.670966        \N    \N    \N    0    \N    \N    \N    \N    female
16516    Antonina    Weimann    deanna@kihnaufderhar.biz    \N    Timor-Leste    South Petrafort    708 Kunze Mall    68744    Oregon    2016-08-23 07:06:56.482904    2016-10-14 13:03:00.677571        \N    \N    \N    0    \N    \N    \N    \N    male
16517    Maymie    Gerlach    ellis@gulgowskijast.info    \N    Cocos (Keeling) Islands    Lake Elvis    309 Toney Creek    14045    Oregon    2016-09-20 03:48:57.773189    2016-10-14 13:03:00.682867        \N    \N    \N    0    \N    \N    \N    \N    female
16518    Tristin    Dicki    florida@lakin.co    \N    Virgin Islands, British    East Adalbertoborough    56439 Hammes Neck    91129    North Dakota    2016-06-23 04:32:03.052923    2016-10-14 13:03:00.687401        \N    \N    \N    0    \N    \N    \N    \N    female
16519    Mikel    Miller    joshuah@rutherfordhegmann.org    \N    Argentina    Fredyport    3630 Jaquelin Wall    11751    Pennsylvania    2016-08-16 12:49:10.037502    2016-10-14 13:03:00.691828        \N    \N    \N    0    \N    \N    \N    \N    male
16520    Marlin    McClure    noemi_grant@schowalterprice.io    \N    Bhutan    Metzview    67704 Ines Haven    72125    Connecticut    2016-08-22 01:47:07.180006    2016-10-14 13:03:00.696697        \N    \N    \N    0    \N    \N    \N    \N    male
16521    Sylvia    Mayert    josiah@schaeferbrakus.info    \N    India    Port Monroemouth    396 Walter Spur    11047-7992    South Carolina    2016-07-29 04:27:19.851389    2016-10-14 13:03:00.701355        \N    \N    \N    0    \N    \N    \N    \N    female
16522    Christophe    Koch    marlen@west.biz    \N    Sweden    Douglasville    197 Sabryna Divide    86827-2019    Connecticut    2016-07-26 12:42:49.339238    2016-10-14 13:03:00.706118        \N    \N    \N    0    \N    \N    \N    \N    male
16523    Boris    Ruecker    erin.johns@runolfon.biz    \N    Finland    Langville    982 Jarrett Station    42808-8534    Minnesota    2016-07-22 13:24:35.233723    2016-10-14 13:03:00.711369        \N    \N    \N    0    \N    \N    \N    \N    female
16524    Thad    Will    evalyn@brakuscarroll.net    \N    Sri Lanka    New Domenicton    6144 Dee Forks    28403-0858    South Dakota    2016-08-18 13:45:09.579412    2016-10-14 13:03:00.717015        \N    \N    \N    0    \N    \N    \N    \N    male
16525    Jensen    Cartwright    mariah@crona.name    \N    Cuba    Kaceystad    4914 Wintheiser Valleys    20017    Tennessee    2016-07-04 07:41:01.158359    2016-10-14 13:03:00.728757        \N    \N    \N    0    \N    \N    \N    \N    female
16526    Lorenzo    Nienow    estella@reichel.io    \N    Nigeria    North Veronicachester    295 Herzog Port    44567    North Carolina    2016-07-30 04:43:34.617497    2016-10-14 13:03:00.735591        \N    \N    \N    0    \N    \N    \N    \N    male
16528    Duane    Kohler    rolando@dickens.name    \N    Libyan Arab Jamahiriya    North Drakebury    239 Wuckert Path    45406    Ohio    2016-08-01 16:41:28.112258    2016-10-14 13:03:00.742837        \N    \N    \N    0    \N    \N    \N    \N    female
16529    Katelyn    Morar    foster_eichmann@thompsonbradtke.co    \N    Guam    Port Mona    32720 Gusikowski Ports    67831-2194    Delaware    2016-08-04 00:37:51.385972    2016-10-14 13:03:00.760533        \N    \N    \N    0    \N    \N    \N    \N    female
16530    Dillan    O'Reilly    enid@oberbrunner.org    \N    Guyana    West Rolandoton    80815 Rosella Villages    52269-8451    Connecticut    2016-09-16 01:30:05.717193    2016-10-14 13:03:00.766754        \N    \N    \N    0    \N    \N    \N    \N    female
16531    Bobby    Conroy    frederik@hopperyan.io    \N    Latvia    Herzogland    712 Morissette Mountains    51366-7077    Rhode Island    2016-08-31 02:07:54.577899    2016-10-14 13:03:00.772397        \N    \N    \N    0    \N    \N    \N    \N    male
16532    Lia    Emmerich    lavonne_fritsch@kuvalistowne.info    \N    Latvia    Felixport    86343 Keebler Harbor    19743    Connecticut    2016-07-25 03:57:56.395618    2016-10-14 13:03:00.777749        \N    \N    \N    0    \N    \N    \N    \N    male
16533    John    West    caroline_auer@ornsporer.com    \N    Anguilla    South Jayson    8481 Missouri Route    55669    Louisiana    2016-09-16 03:20:58.076896    2016-10-14 13:03:00.782812        \N    \N    \N    0    \N    \N    \N    \N    male
16534    Jaclyn    Weissnat    rosalyn.toy@mccullough.co    \N    Sweden    New Cindy    51998 Williamson Ranch    94919    Montana    2016-08-21 07:12:05.574534    2016-10-14 13:03:00.787893        \N    \N    \N    0    \N    \N    \N    \N    male
16535    Berneice    Fadel    garfield_wiza@langworth.biz    \N    Austria    Reichertbury    76758 Branson Unions    88306-3449    Wyoming    2016-07-26 12:27:45.499141    2016-10-14 13:03:00.795425        \N    \N    \N    0    \N    \N    \N    \N    male
16536    Kraig    Witting    richard_leuschke@jacobspouros.name    \N    Liberia    Lake Geovanni    76879 Reichel Place    50877    Kentucky    2016-07-25 09:54:50.454295    2016-10-14 13:03:00.799979        \N    \N    \N    0    \N    \N    \N    \N    male
16537    Herminio    Miller    tyrel_mayert@jenkinchowalter.io    \N    Tokelau    Wilhelminehaven    7535 Herbert Bridge    57951    Ohio    2016-08-17 13:07:08.060748    2016-10-14 13:03:00.810999        \N    \N    \N    0    \N    \N    \N    \N    male
16538    Valerie    Glover    ronaldo@wilkinsonsporer.info    \N    British Indian Ocean Territory (Chagos Archipelago)    South Tellyland    4663 Jaqueline Villages    18966-4482    North Dakota    2016-09-04 21:57:31.847514    2016-10-14 13:03:00.816099        \N    \N    \N    0    \N    \N    \N    \N    female
16539    Kole    Denesik    dave@pollichdouglas.org    \N    Madagascar    West Clarissa    88166 Emery Mountain    19821-9387    Ohio    2016-09-15 13:22:55.003893    2016-10-14 13:03:00.821703        \N    \N    \N    0    \N    \N    \N    \N    female
16540    Grayce    Champlin    abdiel.mcglynn@turner.name    \N    Bhutan    East Greyson    55277 Schoen Circle    80588-8761    Indiana    2016-09-07 16:43:40.856927    2016-10-14 13:03:00.83084        \N    \N    \N    0    \N    \N    \N    \N    female
16541    Caleigh    Volkman    abelardo.aufderhar@pfannerstill.biz    \N    Cambodia    West Thad    683 Shawn Throughway    70019-8917    Pennsylvania    2016-07-23 07:40:41.377186    2016-10-14 13:03:00.836708        \N    \N    \N    0    \N    \N    \N    \N    female
16542    Rosalinda    Koepp    laurianne@abbott.name    \N    Hungary    East Buford    975 Powlowski Course    78027-9730    Nebraska    2016-07-04 02:48:18.41162    2016-10-14 13:03:00.841534        \N    \N    \N    0    \N    \N    \N    \N    female
16543    Josefina    Christiansen    tiana.goodwin@mitchellrunte.org    \N    Uruguay    Bobbyview    898 Maximus Streets    25614-3936    Iowa    2016-07-23 16:13:43.5349    2016-10-14 13:03:00.85077        \N    \N    \N    0    \N    \N    \N    \N    male
16544    Julien    VonRueden    jed@brekke.org    \N    Malaysia    Lake Amiya    2598 Dandre Tunnel    33224-0822    New Mexico    2016-08-09 22:36:07.360225    2016-10-14 13:03:00.856481        \N    \N    \N    0    \N    \N    \N    \N    male
16545    Chauncey    Kling    callie.hegmann@grant.com    \N    Isle of Man    Laceyborough    508 Ima Grove    28289    Delaware    2016-07-14 09:31:56.36991    2016-10-14 13:03:00.861186        \N    \N    \N    0    \N    \N    \N    \N    female
16546    Hilton    Conn    lenna_lowe@macejkovic.co    \N    Zambia    Fidelchester    808 Orie Ferry    23213    New Jersey    2016-09-26 17:55:54.562193    2016-10-14 13:03:00.865966        \N    \N    \N    0    \N    \N    \N    \N    male
16547    Jasen    Schuster    kaley@durgan.co    \N    Saint Martin    Nicolasmouth    1620 Schmidt Spring    76450-7165    Rhode Island    2016-06-22 15:10:54.44254    2016-10-14 13:03:00.871036        \N    \N    \N    0    \N    \N    \N    \N    female
16548    Darby    Pfeffer    claudine@toy.info    \N    Wallis and Futuna    South Velmahaven    2986 Padberg Ports    43936-6823    Maine    2016-07-13 02:54:54.659128    2016-10-14 13:03:00.87644        \N    \N    \N    0    \N    \N    \N    \N    male
16549    Donato    Considine    vern.schuppe@veumkerluke.com    \N    Georgia    South Mazieville    831 Jaden Lake    12852-2985    Kansas    2016-08-13 07:03:07.758854    2016-10-14 13:03:00.881161        \N    \N    \N    0    \N    \N    \N    \N    female
16551    Meggie    Jacobson    emmanuelle@schultzcrooks.com    \N    Tajikistan    Hazelview    93762 Haley Spring    93516    Arkansas    2016-09-20 05:02:25.469345    2016-10-14 13:03:00.885468        \N    \N    \N    0    \N    \N    \N    \N    male
16552    Gretchen    Schmeler    paxton.konopelski@dicki.info    \N    Taiwan    West Wallace    571 Yasmine Village    52300-8389    Wyoming    2016-07-16 22:13:48.164711    2016-10-14 13:03:00.889965        \N    \N    \N    0    \N    \N    \N    \N    male
16554    Earl    Cruickshank    maureen@vonruedenbosco.name    \N    Virgin Islands, British    Lake Janiya    5479 Beier Roads    97567-5579    Vermont    2016-06-28 21:15:59.958983    2016-10-14 13:03:00.900587        \N    \N    \N    0    \N    \N    \N    \N    female
16555    Elian    Rutherford    therese@jaskolski.info    \N    United States Minor Outlying Islands    McDermottland    754 Reichel Way    73070    Maryland    2016-07-14 21:21:44.213092    2016-10-14 13:03:00.905733        \N    \N    \N    0    \N    \N    \N    \N    female
16556    Timmy    Windler    tina@davis.org    \N    Canada    Tillmanside    878 Peyton Landing    75697-3427    Tennessee    2016-08-23 20:50:48.688567    2016-10-14 13:03:00.911558        \N    \N    \N    0    \N    \N    \N    \N    female
16557    Janelle    Kiehn    jaydon@kovacek.com    \N    Germany    Port Henri    9888 Estelle Views    40179    Ohio    2016-09-17 14:22:56.618293    2016-10-14 13:03:00.919278        \N    \N    \N    0    \N    \N    \N    \N    female
16558    Leopoldo    Kilback    hildegard_hahn@kuvalis.io    \N    Russian Federation    Josiannetown    33609 Spencer Plaza    77435    Michigan    2016-09-12 12:00:44.514067    2016-10-14 13:03:00.923875        \N    \N    \N    0    \N    \N    \N    \N    female
16559    Jakob    Pfeffer    michael.wilkinson@upton.net    \N    Cameroon    North Maudie    884 Rippin Terrace    96505-5435    New Mexico    2016-08-20 01:35:14.879969    2016-10-14 13:03:00.928747        \N    \N    \N    0    \N    \N    \N    \N    female
16560    Leatha    Hoppe    einar@spinkaroob.biz    \N    China    New Jerome    605 Marian Skyway    60485-0521    Oregon    2016-08-15 10:09:14.122902    2016-10-14 13:03:00.936296        \N    \N    \N    0    \N    \N    \N    \N    female
16561    Gladyce    Terry    margarette@mcclureschmitt.io    \N    Aruba    South Ginoside    55062 Demetris Bridge    85343    Idaho    2016-08-07 19:57:31.367614    2016-10-14 13:03:00.943005        \N    \N    \N    0    \N    \N    \N    \N    female
16562    Ahmed    Champlin    dewayne_crona@littel.biz    \N    Oman    Abshireside    28421 Nader Spurs    70557-5871    Maryland    2016-09-02 11:32:30.367529    2016-10-14 13:03:00.948233        \N    \N    \N    0    \N    \N    \N    \N    male
16563    Stanton    Bernhard    josefa@thompsonwest.name    \N    Thailand    Hyattton    443 Hickle Forges    26926    New Mexico    2016-09-09 06:20:17.591375    2016-10-14 13:03:00.953229        \N    \N    \N    0    \N    \N    \N    \N    male
16564    Damian    Lubowitz    kaleigh@howe.net    \N    Fiji    East Mylenetown    809 Madelynn Wells    91787    New Hampshire    2016-07-05 16:21:00.888033    2016-10-14 13:03:00.9583        \N    \N    \N    0    \N    \N    \N    \N    male
16565    Juanita    VonRueden    irwin.medhurst@nienow.info    \N    Mayotte    Purdychester    3815 Marlee Roads    21763-9853    Minnesota    2016-08-03 23:03:25.898576    2016-10-14 13:03:00.964649        \N    \N    \N    0    \N    \N    \N    \N    male
16566    Garnett    Deckow    trever_hackett@turner.io    \N    Argentina    South Ransomville    18271 Gianni Way    17775-3087    Kansas    2016-06-28 23:07:04.046751    2016-10-14 13:03:00.96959        \N    \N    \N    0    \N    \N    \N    \N    male
16567    Jarrett    O'Keefe    deangelo_yost@donnelly.name    \N    Japan    Virgilmouth    42204 Stuart Ford    42279-0238    Rhode Island    2016-09-05 05:26:40.57335    2016-10-14 13:03:00.974816        \N    \N    \N    0    \N    \N    \N    \N    female
16568    Giles    Lubowitz    doug@monahan.com    \N    Rwanda    Lake Antonioport    1342 Shannon Rapids    15154    Michigan    2016-07-23 12:33:34.162339    2016-10-14 13:03:00.978816        \N    \N    \N    0    \N    \N    \N    \N    male
16569    Melissa    Berge    esther.sawayn@kilbackdibbert.net    \N    Iran    Mosheton    663 Gusikowski Villages    56588    Maine    2016-09-21 02:39:18.617556    2016-10-14 13:03:00.982777        \N    \N    \N    0    \N    \N    \N    \N    female
16570    Fay    McKenzie    roscoe_kilback@cruickshank.name    \N    Iran    East Stefanview    257 Hansen Village    57178-2961    Georgia    2016-07-01 18:25:05.300383    2016-10-14 13:03:00.9868        \N    \N    \N    0    \N    \N    \N    \N    female
16571    Carole    Barrows    emma_barton@botsford.org    \N    Hungary    North Micaela    2758 Hackett Neck    79772    Alaska    2016-08-12 01:55:49.724703    2016-10-14 13:03:00.991159        \N    \N    \N    0    \N    \N    \N    \N    female
16572    Rolando    Erdman    javon@lehner.org    \N    Dominica    Rempelside    2128 Kamille Divide    42444-6905    North Dakota    2016-08-21 01:32:37.30224    2016-10-14 13:03:00.995661        \N    \N    \N    0    \N    \N    \N    \N    male
16573    Victoria    Cruickshank    myriam.lockman@green.co    \N    Mali    Naderton    2354 Stiedemann Plains    28465    Minnesota    2016-09-22 17:23:01.868257    2016-10-14 13:03:00.999786        \N    \N    \N    0    \N    \N    \N    \N    male
16574    Wayne    Bailey    sallie@williamson.biz    \N    Gabon    Lueilwitzton    19311 Barney Streets    99922    Hawaii    2016-08-22 22:38:51.091668    2016-10-14 13:03:01.004228        \N    \N    \N    0    \N    \N    \N    \N    female
16575    Margarete    Stark    alejandra_crooks@walkerwyman.io    \N    Andorra    New Ineston    144 West Mills    55463    Illinois    2016-07-12 10:05:58.812007    2016-10-14 13:03:01.008945        \N    \N    \N    0    \N    \N    \N    \N    male
16576    Fannie    Schumm    terrill@gottliebrenner.biz    \N    Ukraine    Port Bryonstad    9539 Rosenbaum Extension    66702-1589    Alabama    2016-09-20 10:56:45.464394    2016-10-14 13:03:01.01321        \N    \N    \N    0    \N    \N    \N    \N    female
16577    Hobart    Schiller    marguerite.fay@batz.co    \N    Sao Tome and Principe    Daytonshire    271 Larkin Court    87857-1568    Alaska    2016-07-07 00:45:06.466546    2016-10-14 13:03:01.017677        \N    \N    \N    0    \N    \N    \N    \N    female
16578    Enos    Labadie    kaley_lindgren@buckridge.org    \N    Anguilla    New Roberto    3172 Reichert Hills    41280    Texas    2016-08-30 12:39:27.00965    2016-10-14 13:03:01.02182        \N    \N    \N    0    \N    \N    \N    \N    female
16579    Lois    Effertz    terence.dickens@kaulke.io    \N    Cuba    Gleichnertown    83871 Gusikowski Ferry    86586-9911    Illinois    2016-07-31 20:46:39.034303    2016-10-14 13:03:01.026322        \N    \N    \N    0    \N    \N    \N    \N    female
16580    Kim    Gulgowski    cullen.kautzer@roberts.info    \N    Morocco    Lake Kendrick    206 Fritsch Gardens    33144    Indiana    2016-09-14 07:10:49.959425    2016-10-14 13:03:01.031095        \N    \N    \N    0    \N    \N    \N    \N    female
16581    Domenic    Hessel    eli_kertzmann@buckridgepaucek.io    \N    Czech Republic    New Aniyamouth    152 Stoltenberg Mission    29804    South Carolina    2016-09-18 08:30:53.657015    2016-10-14 13:03:01.036061        \N    \N    \N    0    \N    \N    \N    \N    female
16582    Camron    Schumm    marion_heathcote@davisokeefe.com    \N    Norfolk Island    Nevaport    11531 Raleigh Fields    19700-2055    Washington    2016-07-26 14:33:34.908716    2016-10-14 13:03:01.041115        \N    \N    \N    0    \N    \N    \N    \N    female
16583    Jorge    Windler    adah@adams.com    \N    Czech Republic    Drewland    1877 Nolan Corner    69026-0856    Wyoming    2016-09-28 14:01:10.587504    2016-10-14 13:03:01.045363        \N    \N    \N    0    \N    \N    \N    \N    female
16584    Rosanna    Kulas    pat@kulas.name    \N    American Samoa    Lindsayshire    992 Boehm Neck    54679    Ohio    2016-09-01 01:16:46.062274    2016-10-14 13:03:01.049793        \N    \N    \N    0    \N    \N    \N    \N    female
16585    Eva    Reilly    ruby@rodriguezwaelchi.info    \N    Bosnia and Herzegovina    Lake Garnetburgh    747 Wiegand Light    87680    Louisiana    2016-09-08 02:44:27.607168    2016-10-14 13:03:01.054315        \N    \N    \N    0    \N    \N    \N    \N    female
16586    Brandi    Reilly    ahmad.kutch@bernier.co    \N    Poland    North Filomena    468 Bartoletti Landing    35064-4693    Georgia    2016-07-09 06:19:23.693595    2016-10-14 13:03:01.059222        \N    \N    \N    0    \N    \N    \N    \N    female
16587    Cedrick    Farrell    anahi.zboncak@raynorgrady.org    \N    Yemen    West Malindaville    19343 Murazik Prairie    54550-9274    Rhode Island    2016-07-28 23:46:34.206736    2016-10-14 13:03:01.063856        \N    \N    \N    0    \N    \N    \N    \N    female
16588    Wyatt    Carter    chester@boyer.name    \N    Costa Rica    West Uriahfurt    457 Kris Gateway    63881    Michigan    2016-09-23 13:41:25.328949    2016-10-14 13:03:01.068379        \N    \N    \N    0    \N    \N    \N    \N    female
16589    Guadalupe    Boyle    carmelo.carter@murazik.org    \N    Madagascar    West Irwin    81222 Spencer Vista    10122-3890    Oklahoma    2016-09-16 10:48:25.349653    2016-10-14 13:03:01.07248        \N    \N    \N    0    \N    \N    \N    \N    female
16590    Sammy    Mertz    ayana.feeney@schulistturcotte.com    \N    Marshall Islands    Lake Natton    48360 Gislason Valleys    98581    Colorado    2016-08-25 16:50:05.305402    2016-10-14 13:03:01.077075        \N    \N    \N    0    \N    \N    \N    \N    male
16591    Ashtyn    Cartwright    arvel_sporer@larson.name    \N    Haiti    Manteburgh    70842 Halle Pass    60746-3001    Montana    2016-09-29 06:56:23.591843    2016-10-14 13:03:01.08141        \N    \N    \N    0    \N    \N    \N    \N    female
16592    Leda    Greenfelder    elvera.davis@doylelynch.info    \N    Moldova    Christianmouth    26724 Lula Street    32965-6310    Michigan    2016-07-29 00:47:47.967038    2016-10-14 13:03:01.085974        \N    \N    \N    0    \N    \N    \N    \N    male
16593    Dorian    Terry    nikki@weber.co    \N    Togo    New Eunaton    624 O'Reilly Expressway    76046-4787    Oklahoma    2016-09-12 21:49:27.644743    2016-10-14 13:03:01.090255        \N    \N    \N    0    \N    \N    \N    \N    male
16594    Domenica    Hauck    maegan@steuber.com    \N    Anguilla    East Chaddside    52565 Modesta River    22037    New Jersey    2016-08-02 11:44:53.189924    2016-10-14 13:03:01.094615        \N    \N    \N    0    \N    \N    \N    \N    male
16595    Nikko    Conroy    chaim@schiller.name    \N    Tajikistan    Schadentown    8376 Teagan Islands    11415    Louisiana    2016-06-25 16:28:44.650296    2016-10-14 13:03:01.099365        \N    \N    \N    0    \N    \N    \N    \N    female
16596    Edgardo    Nikolaus    titus_mclaughlin@rice.co    \N    Maldives    Hyatttown    141 Diana Trail    29282-2071    Colorado    2016-06-28 12:43:24.679318    2016-10-14 13:03:01.115682        \N    \N    \N    0    \N    \N    \N    \N    female
16597    Valerie    Daniel    martina@bergnaum.info    \N    Belize    Vonchester    52317 Jerrold Grove    41215    Hawaii    2016-07-17 15:52:35.802998    2016-10-14 13:03:01.121197        \N    \N    \N    0    \N    \N    \N    \N    female
16598    Mozell    Ledner    branson_daniel@strosinzieme.biz    \N    Norway    New Raven    1398 Bruen Vista    11775-4073    Rhode Island    2016-09-27 14:40:39.719973    2016-10-14 13:03:01.125868        \N    \N    \N    0    \N    \N    \N    \N    male
16599    Cristina    Raynor    nyah@damoreschinner.io    \N    Trinidad and Tobago    Chettown    8095 Oliver Club    43758    Kentucky    2016-07-11 18:11:17.693098    2016-10-14 13:03:01.130363        \N    \N    \N    0    \N    \N    \N    \N    male
16600    Jared    Yost    tracy.mann@spinkahuel.org    \N    Monaco    Amaliastad    87181 Daniel Village    59306    Connecticut    2016-07-01 20:43:22.62104    2016-10-14 13:03:01.134243        \N    \N    \N    0    \N    \N    \N    \N    female
16601    Milton    Goodwin    ebony_kunde@beatty.org    \N    Slovakia (Slovak Republic)    Jaquelinstad    4647 Dietrich Islands    11714    Oklahoma    2016-07-22 06:53:24.922187    2016-10-14 13:03:01.139269        \N    \N    \N    0    \N    \N    \N    \N    male
16602    Enola    Hintz    bertrand_ullrich@kirlin.com    \N    Papua New Guinea    North Darrickton    398 Waters Isle    36847-1830    Montana    2016-08-17 15:48:20.939974    2016-10-14 13:03:01.145374        \N    \N    \N    0    \N    \N    \N    \N    male
16603    Bettye    Watsica    shaylee@towne.io    \N    Angola    East Rodger    202 Lora Ville    67182    New Jersey    2016-07-21 02:28:09.190718    2016-10-14 13:03:01.151151        \N    \N    \N    0    \N    \N    \N    \N    female
16604    Ryder    Rohan    noemie@zulaufrice.biz    \N    Mali    Brettmouth    71507 Kreiger Haven    34064    New Hampshire    2016-07-06 15:35:11.935482    2016-10-14 13:03:01.15643        \N    \N    \N    0    \N    \N    \N    \N    male
16605    Jasper    O'Keefe    diamond_mante@hammes.info    \N    Marshall Islands    South Flavie    9593 Wade Mountains    36715-4904    Arizona    2016-08-24 20:47:38.179597    2016-10-14 13:03:01.160833        \N    \N    \N    0    \N    \N    \N    \N    male
16606    Sammie    Skiles    vicky@spinka.io    \N    Saint Barthelemy    North Marguerite    334 Hickle Causeway    99132    Illinois    2016-08-13 01:23:34.926943    2016-10-14 13:03:01.16551        \N    \N    \N    0    \N    \N    \N    \N    female
16607    Loraine    Ernser    arturo.cremin@larsonstracke.org    \N    Niger    Carminefurt    2333 Ettie Camp    68585-1833    Georgia    2016-08-15 19:52:34.541304    2016-10-14 13:03:01.170163        \N    \N    \N    0    \N    \N    \N    \N    female
16608    Rigoberto    Schumm    aiyana_osinski@nolangibson.name    \N    Turkey    Lake Dejonmouth    8901 Bergnaum Fork    73703-8160    North Dakota    2016-07-19 07:50:41.654394    2016-10-14 13:03:01.18303        \N    \N    \N    0    \N    \N    \N    \N    female
16609    Nathanael    Spinka    marley_raynor@ledner.net    \N    New Zealand    West Stanford    10713 Brown Parks    44761-2502    New Mexico    2016-09-27 02:45:35.82611    2016-10-14 13:03:01.187558        \N    \N    \N    0    \N    \N    \N    \N    female
16610    Clarissa    Kris    michael@bogan.net    \N    Portugal    Grimesmouth    492 Lexi Harbor    35833    West Virginia    2016-07-07 15:35:42.117462    2016-10-14 13:03:01.192356        \N    \N    \N    0    \N    \N    \N    \N    male
16611    Lloyd    Thompson    art.baumbach@wiegandryan.biz    \N    Gabon    Kertzmannbury    692 Connor Common    19174    Delaware    2016-09-23 15:30:49.051472    2016-10-14 13:03:01.197878        \N    \N    \N    0    \N    \N    \N    \N    female
16612    Amari    Klocko    gunner_fahey@macgyver.net    \N    Guam    North Evelyn    8318 Coty Mountain    55482-7990    Texas    2016-07-31 09:34:24.876992    2016-10-14 13:03:01.202745        \N    \N    \N    0    \N    \N    \N    \N    male
16613    Arne    Flatley    ubaldo_willms@bergnaumprosacco.io    \N    Heard Island and McDonald Islands    North Maritzaberg    6664 Lind Summit    70117-2023    Georgia    2016-09-01 21:03:32.23679    2016-10-14 13:03:01.207467        \N    \N    \N    0    \N    \N    \N    \N    male
16614    Carley    Block    prudence@stiedemann.org    \N    Nepal    Ibrahimburgh    7596 Beryl Trail    94482-3778    Virginia    2016-08-31 20:06:30.08166    2016-10-14 13:03:01.211672        \N    \N    \N    0    \N    \N    \N    \N    male
16615    Hester    Swaniawski    joan.kiehn@roob.biz    \N    Bahrain    Michealbury    7509 Orland Viaduct    67262    Nebraska    2016-08-23 05:09:17.554147    2016-10-14 13:03:01.218727        \N    \N    \N    0    \N    \N    \N    \N    male
16618    Nyah    Bergstrom    caitlyn.ledner@prohaska.info    \N    Burkina Faso    Pamelafort    8904 Bode Underpass    71491    Maine    2016-08-06 09:46:43.992954    2016-10-14 13:03:01.225476        \N    \N    \N    0    \N    \N    \N    \N    female
16619    Keon    Schimmel    stephania_oreilly@waterchroeder.org    \N    Cambodia    Lake Einar    893 Nolan Ferry    99459    New York    2016-07-29 23:35:31.777286    2016-10-14 13:03:01.230234        \N    \N    \N    0    \N    \N    \N    \N    female
16620    Candido    Runolfsson    greta@braun.com    \N    Cote d'Ivoire    Port Damaris    24748 Quitzon Viaduct    73287    Utah    2016-06-25 04:54:54.693232    2016-10-14 13:03:01.235442        \N    \N    \N    0    \N    \N    \N    \N    male
16621    Hillary    Jacobs    keenan_farrell@lang.biz    \N    Republic of Korea    Lake Adelia    75830 Roman Fields    20864    Montana    2016-08-14 03:40:35.147346    2016-10-14 13:03:01.239771        \N    \N    \N    0    \N    \N    \N    \N    male
16622    Corine    Weimann    charity.rau@wunsch.name    \N    Singapore    Port Celia    7375 Alexys Ville    12435    New Jersey    2016-09-02 16:50:38.72008    2016-10-14 13:03:01.244487        \N    \N    \N    0    \N    \N    \N    \N    female
16623    Dominic    Senger    prince.lueilwitz@oconnellwyman.io    \N    British Indian Ocean Territory (Chagos Archipelago)    Cassinland    263 Stuart Hollow    51512-3334    Wyoming    2016-09-19 00:46:18.160557    2016-10-14 13:03:01.249013        \N    \N    \N    0    \N    \N    \N    \N    male
16624    Marco    Haag    nash@jakubowskimaggio.co    \N    Mexico    Lebsackton    195 Vanessa Flat    43225    Massachusetts    2016-08-16 21:25:48.749616    2016-10-14 13:03:01.252899        \N    \N    \N    0    \N    \N    \N    \N    male
16625    Freeda    Reinger    melba_swaniawski@feil.net    \N    Nepal    Crawfordfort    35836 Maggio Circles    79741    South Dakota    2016-06-29 14:31:32.20072    2016-10-14 13:03:01.256911        \N    \N    \N    0    \N    \N    \N    \N    male
16626    Adaline    Medhurst    ivy@bayer.biz    \N    Brazil    East Thomas    3210 Ernser Course    76175    South Carolina    2016-08-29 16:08:42.384294    2016-10-14 13:03:01.260841        \N    \N    \N    0    \N    \N    \N    \N    female
16627    Rosina    Hayes    thelma_ritchie@bauchabernathy.name    \N    Malta    North Laurie    976 Rodriguez Lane    93493-9634    Nebraska    2016-07-21 08:25:27.834074    2016-10-14 13:03:01.264962        \N    \N    \N    0    \N    \N    \N    \N    female
16628    Lottie    Stamm    robin.stanton@jonechinner.biz    \N    Niger    Carrollfurt    9227 Louie Shore    28282    Florida    2016-08-29 07:43:59.40944    2016-10-14 13:03:01.269352        \N    \N    \N    0    \N    \N    \N    \N    male
16629    Melany    Cruickshank    isabella_heaney@legros.name    \N    Myanmar    North Tanya    195 Bayer Wells    50052    Nebraska    2016-09-27 03:42:41.703189    2016-10-14 13:03:01.273559        \N    \N    \N    0    \N    \N    \N    \N    female
16675    Enrico    Wilderman    dave@hillljohns.io    \N    Benin    Houstonmouth    29365 Annalise Centers    26458-5336    Minnesota    2016-08-10 16:20:57.210126    2016-10-14 13:03:01.278001        \N    \N    \N    0    \N    \N    \N    \N    male
16630    Bertrand    Larson    cristobal_rohan@schneider.name    \N    Sao Tome and Principe    Schuppehaven    61993 Klein Well    96877    North Carolina    2016-07-23 19:31:40.409309    2016-10-14 13:03:01.284736        \N    \N    \N    0    \N    \N    \N    \N    male
16631    Mafalda    Maggio    raquel@bahringer.info    \N    British Indian Ocean Territory (Chagos Archipelago)    Joshuahbury    214 Caleb Viaduct    78183-8961    Oregon    2016-07-30 11:08:28.933396    2016-10-14 13:03:01.288889        \N    \N    \N    0    \N    \N    \N    \N    female
16633    Ernesto    Bruen    lillie_medhurst@deckowfriesen.co    \N    Kyrgyz Republic    Hickleport    9363 Audrey Neck    64157-8616    Ohio    2016-08-23 15:10:07.82902    2016-10-14 13:03:01.293233        \N    \N    \N    0    \N    \N    \N    \N    female
16634    Irma    Shanahan    jacky@fahey.io    \N    Egypt    Salvatoreview    80094 Wiza Squares    14851    Nevada    2016-09-17 09:28:22.934882    2016-10-14 13:03:01.297769        \N    \N    \N    0    \N    \N    \N    \N    male
16635    Christelle    Adams    cornell_lockman@thieljohns.net    \N    Haiti    Barrowsbury    2234 Eleanore Square    69020-3425    South Dakota    2016-07-21 01:40:59.294485    2016-10-14 13:03:01.303641        \N    \N    \N    0    \N    \N    \N    \N    male
16636    Albina    Walker    leola.hickle@rohan.co    \N    Ukraine    New Karianechester    73482 Jalen Creek    31071    Oregon    2016-09-29 09:40:07.699292    2016-10-14 13:03:01.308119        \N    \N    \N    0    \N    \N    \N    \N    male
16637    Dee    Gutmann    nella@borer.biz    \N    Thailand    Mannburgh    35269 Gutkowski Stream    35103    Mississippi    2016-07-01 22:05:14.783942    2016-10-14 13:03:01.312783        \N    \N    \N    0    \N    \N    \N    \N    female
16638    Alayna    Okuneva    donny@schiller.info    \N    Nauru    Marcellamouth    4900 Ashton Summit    62726-3486    Delaware    2016-06-27 07:42:03.821962    2016-10-14 13:03:01.317167        \N    \N    \N    0    \N    \N    \N    \N    male
16639    Laila    Zulauf    rita_feeney@lowe.info    \N    United States Minor Outlying Islands    Bennyfort    789 West Landing    96750-0427    Nebraska    2016-07-12 13:23:29.501057    2016-10-14 13:03:01.321799        \N    \N    \N    0    \N    \N    \N    \N    female
16640    Cristal    Hackett    maryse@rutherford.biz    \N    Tunisia    Hahnfort    875 Kade Extensions    73880-6330    Florida    2016-09-21 13:01:22.424224    2016-10-14 13:03:01.326605        \N    \N    \N    0    \N    \N    \N    \N    male
16641    Hadley    Brekke    carolyn.fritsch@doyle.info    \N    Macao    O'Keefeborough    618 Gordon Park    85493    Kentucky    2016-09-10 13:22:17.585773    2016-10-14 13:03:01.331285        \N    \N    \N    0    \N    \N    \N    \N    female
16642    Marilou    Feeney    katheryn@powlowski.net    \N    Argentina    Marquiseshire    78420 Jedidiah Stravenue    13477-4554    Pennsylvania    2016-09-01 05:56:03.618871    2016-10-14 13:03:01.335788        \N    \N    \N    0    \N    \N    \N    \N    male
16643    Sarah    Prosacco    claude_balistreri@labadie.io    \N    Cayman Islands    West Micheal    925 Mueller Valley    67019    Oregon    2016-09-23 02:38:38.412453    2016-10-14 13:03:01.340881        \N    \N    \N    0    \N    \N    \N    \N    male
16646    Dimitri    Shanahan    grayce@murphy.biz    \N    Lesotho    East Corytown    6887 Keaton Route    55956-6788    Wyoming    2016-06-22 16:10:45.819826    2016-10-14 13:03:01.35583        \N    \N    \N    0    \N    \N    \N    \N    male
16647    Jacky    Pfeffer    macey_walker@wiegandbreitenberg.co    \N    Timor-Leste    Lake Virginieburgh    6881 Randall Creek    56951    Louisiana    2016-08-10 22:53:35.608312    2016-10-14 13:03:01.360463        \N    \N    \N    0    \N    \N    \N    \N    male
16648    Luz    Bartoletti    troy@kub.info    \N    Libyan Arab Jamahiriya    Adamstown    1256 Helene Flats    17743    Colorado    2016-07-12 21:18:16.662749    2016-10-14 13:03:01.36534        \N    \N    \N    0    \N    \N    \N    \N    male
16649    Nathen    Reichert    rosetta@gottlieb.org    \N    Bouvet Island (Bouvetoya)    Thielview    378 Ansley Views    13261-3095    Virginia    2016-09-03 10:53:01.347155    2016-10-14 13:03:01.369953        \N    \N    \N    0    \N    \N    \N    \N    male
16650    Jonathon    Pagac    jaylon.mann@kuphal.org    \N    Marshall Islands    South Demetrisshire    80989 Verla Forge    52962-5575    Maryland    2016-09-15 23:13:09.766564    2016-10-14 13:03:01.37482        \N    \N    \N    0    \N    \N    \N    \N    female
16651    Arnoldo    Heaney    franz@brauncartwright.net    \N    Honduras    Langworthshire    153 Kellen Views    95426-6925    Nebraska    2016-09-25 10:28:51.704071    2016-10-14 13:03:01.379321        \N    \N    \N    0    \N    \N    \N    \N    male
16652    Monroe    Parisian    loraine@bashirian.io    \N    Togo    New Belle    1587 Danielle Pike    32183    Michigan    2016-07-04 06:21:34.752877    2016-10-14 13:03:01.384042        \N    \N    \N    0    \N    \N    \N    \N    female
17238    Evalyn    Barrows    burnice@beier.io    \N    San Marino    East Jadon    9082 Anya Ports    38558    Delaware    2016-09-24 16:01:24.425069    2016-10-14 13:03:01.398319        \N    \N    \N    0    \N    \N    \N    \N    female
16653    Rahul    Raynor    carlotta_champlin@willwisoky.biz    \N    Jersey    Bauchberg    919 Joannie Rest    24472-3784    Vermont    2016-06-29 03:47:04.430065    2016-10-14 13:03:01.40245        \N    \N    \N    0    \N    \N    \N    \N    male
16654    Kyla    Connelly    harvey.streich@pollich.co    \N    Kyrgyz Republic    Lake Skylarshire    2903 Maxime Square    35438-0292    Maryland    2016-08-22 15:53:15.754164    2016-10-14 13:03:01.406417        \N    \N    \N    0    \N    \N    \N    \N    female
16655    Dock    Koch    kyler.borer@reichel.co    \N    Costa Rica    Tyreeshire    62693 Cremin Hollow    50539-8418    Tennessee    2016-09-24 12:59:58.452556    2016-10-14 13:03:01.410712        \N    \N    \N    0    \N    \N    \N    \N    female
16657    Dee    Klein    eleanora@gutkowski.io    \N    Saint Barthelemy    Nyahborough    583 Weldon Squares    60677-6520    Tennessee    2016-09-25 13:29:06.837594    2016-10-14 13:03:01.414931        \N    \N    \N    0    \N    \N    \N    \N    female
16658    Maiya    Botsford    shana_schultz@cruickshank.biz    \N    South Africa    North Cleora    51480 Mohr Spurs    93294-9694    Nevada    2016-08-28 03:51:19.873061    2016-10-14 13:03:01.418943        \N    \N    \N    0    \N    \N    \N    \N    female
16659    Enoch    Zulauf    natalie.spinka@connelly.info    \N    Bolivia    Elsieville    365 Gudrun Mills    91319-3430    Missouri    2016-09-18 02:22:27.919464    2016-10-14 13:03:01.423208        \N    \N    \N    0    \N    \N    \N    \N    male
16660    Etha    Cremin    bridget@kerluke.name    \N    Ecuador    Kingchester    395 Bednar Village    91240    New Mexico    2016-07-19 10:10:26.372046    2016-10-14 13:03:01.427749        \N    \N    \N    0    \N    \N    \N    \N    female
16661    Alysha    Trantow    tyrique@conroy.info    \N    Mozambique    Port Prudence    398 Hahn Ramp    26614-4217    Minnesota    2016-09-05 12:26:06.454021    2016-10-14 13:03:01.431752        \N    \N    \N    0    \N    \N    \N    \N    female
16662    Cyril    Ratke    gudrun@howellboyer.org    \N    Guyana    North Jaquelinland    319 Aurelia Forge    92109-3539    Massachusetts    2016-07-01 03:22:19.210409    2016-10-14 13:03:01.435812        \N    \N    \N    0    \N    \N    \N    \N    female
16663    Tyrel    Huel    felipa.spinka@keeling.com    \N    Bermuda    Lake Kaitlin    2812 Bobbie Corner    42231-5056    South Dakota    2016-06-22 18:12:02.274367    2016-10-14 13:03:01.439728        \N    \N    \N    0    \N    \N    \N    \N    female
16664    Fabian    Gutmann    concepcion@padbergoberbrunner.info    \N    Zimbabwe    Audreyborough    557 Ryan Creek    78384-1623    New Mexico    2016-09-21 13:28:43.210046    2016-10-14 13:03:01.444603        \N    \N    \N    0    \N    \N    \N    \N    male
16665    Hank    Turcotte    jacques@towne.com    \N    Thailand    Aniyaburgh    6796 Kylee Lodge    90192-1452    Maine    2016-08-20 20:10:13.947836    2016-10-14 13:03:01.448955        \N    \N    \N    0    \N    \N    \N    \N    female
16666    Walton    Smitham    tito@klockomedhurst.name    \N    Mongolia    Port Jerelburgh    4664 Hodkiewicz Key    98972    Vermont    2016-08-10 08:49:58.634145    2016-10-14 13:03:01.45346        \N    \N    \N    0    \N    \N    \N    \N    female
16667    Sheila    McClure    sierra@abshirekuhn.org    \N    Montenegro    North Wilhelmineland    4704 Rogers Curve    54401-1727    Arizona    2016-08-22 19:14:33.626193    2016-10-14 13:03:01.457855        \N    \N    \N    0    \N    \N    \N    \N    male
16668    Isabella    Dare    wilford_ankunding@glover.com    \N    Vanuatu    Jacklynview    94463 Pete Landing    26175    Texas    2016-09-09 19:03:09.771402    2016-10-14 13:03:01.462005        \N    \N    \N    0    \N    \N    \N    \N    female
16669    Josie    Langosh    deven@fahey.co    \N    Turks and Caicos Islands    Marquisebury    4569 Hilpert Ports    31737    North Dakota    2016-09-03 13:12:44.662672    2016-10-14 13:03:01.466292        \N    \N    \N    0    \N    \N    \N    \N    male
16670    Oceane    Kreiger    jailyn@auerhilpert.co    \N    Saint Martin    Hermannborough    6361 Sauer Station    75982-6190    Arizona    2016-07-03 00:15:16.997202    2016-10-14 13:03:01.471401        \N    \N    \N    0    \N    \N    \N    \N    male
16671    Alyce    Lesch    emile.cummings@tromplang.biz    \N    Lebanon    South Joy    74804 Emma Spring    72359-7206    Alabama    2016-07-01 04:49:08.338393    2016-10-14 13:03:01.476314        \N    \N    \N    0    \N    \N    \N    \N    female
16672    Euna    Christiansen    narciso@jones.net    \N    Montserrat    South Faustino    53003 Leo Vista    67863    Michigan    2016-08-29 05:08:16.938513    2016-10-14 13:03:01.482065        \N    \N    \N    0    \N    \N    \N    \N    female
16673    Kieran    Runolfsson    billy@gerlach.com    \N    Saint Lucia    Linwoodton    64550 Josie Falls    50033    Tennessee    2016-09-06 02:52:48.148762    2016-10-14 13:03:01.486306        \N    \N    \N    0    \N    \N    \N    \N    female
16674    Graciela    West    je@ziemekonopelski.com    \N    Namibia    Kozeyton    11673 Leannon Spur    39258-7069    Massachusetts    2016-07-02 19:01:55.773321    2016-10-14 13:03:01.491123        \N    \N    \N    0    \N    \N    \N    \N    female
16676    Glenda    McKenzie    felipe.watsica@kilback.name    \N    Uganda    West Verna    397 McLaughlin Expressway    16596    New Hampshire    2016-08-23 17:58:44.04416    2016-10-14 13:03:01.495954        \N    \N    \N    0    \N    \N    \N    \N    female
16677    Lorenza    Haag    melisa_abshire@hettingerlarkin.org    \N    Comoros    Bridieshire    840 Sidney Springs    77749    New Hampshire    2016-08-25 19:48:18.803174    2016-10-14 13:03:01.500571        \N    \N    \N    0    \N    \N    \N    \N    male
16678    Reba    Kessler    darrel@treutel.biz    \N    Togo    New Ardithton    712 Lindgren Terrace    88006-9764    Texas    2016-07-02 12:09:44.732819    2016-10-14 13:03:01.505195        \N    \N    \N    0    \N    \N    \N    \N    male
16679    Einar    Wolff    hillary.schmeler@pollich.info    \N    South Georgia and the South Sandwich Islands    Bednarstad    493 Ottilie Crescent    71293-0767    Kansas    2016-07-20 03:39:50.575116    2016-10-14 13:03:01.509725        \N    \N    \N    0    \N    \N    \N    \N    male
16680    Dax    Champlin    guadalupe_daniel@lynch.io    \N    Saint Lucia    Elianechester    885 Cartwright Hill    95500    Maryland    2016-07-24 06:38:15.399603    2016-10-14 13:03:01.514346        \N    \N    \N    0    \N    \N    \N    \N    female
16681    Alda    Erdman    glenda_koelpin@skilesveum.org    \N    Cameroon    North Matilde    5701 Art Ville    22221    New Hampshire    2016-07-23 14:02:41.020276    2016-10-14 13:03:01.51893        \N    \N    \N    0    \N    \N    \N    \N    male
16682    Eugene    Boyer    cecilia_braun@denesikwelch.biz    \N    Equatorial Guinea    Lake Isobel    122 Douglas Harbors    48771    Illinois    2016-08-19 15:37:27.002145    2016-10-14 13:03:01.523572        \N    \N    \N    0    \N    \N    \N    \N    male
16683    Henry    Littel    savanah@wiegand.com    \N    Sri Lanka    Dietrichburgh    737 Reynolds Flats    54861    New York    2016-07-26 19:58:39.636435    2016-10-14 13:03:01.527807        \N    \N    \N    0    \N    \N    \N    \N    female
16684    Savion    Gislason    destiny_gorczany@donnellyherman.com    \N    Svalbard & Jan Mayen Islands    New Caterinaside    9170 King Expressway    23741    Tennessee    2016-07-09 19:11:54.70586    2016-10-14 13:03:01.532058        \N    \N    \N    0    \N    \N    \N    \N    female
16685    Emma    Goldner    winona@conroyprosacco.org    \N    Slovenia    South Paul    90509 Alana Junctions    97976    Utah    2016-09-26 21:09:05.67489    2016-10-14 13:03:01.53649        \N    \N    \N    0    \N    \N    \N    \N    female
16686    Lyda    Sanford    juston@swaniawski.biz    \N    Cote d'Ivoire    Bartonfurt    9435 Aracely Coves    79400-7004    Maine    2016-09-16 12:04:37.137963    2016-10-14 13:03:01.540674        \N    \N    \N    0    \N    \N    \N    \N    female
16687    Cielo    Wuckert    lavern@hayes.io    \N    Kiribati    Leuschkeland    949 Crooks Ports    55905-7910    New York    2016-07-23 23:31:58.086902    2016-10-14 13:03:01.544878        \N    \N    \N    0    \N    \N    \N    \N    male
16688    Myrna    Lemke    guillermo_cormier@romaguera.biz    \N    Oman    North Jada    1109 Kovacek Mall    69985-2032    Minnesota    2016-07-28 10:19:38.531772    2016-10-14 13:03:01.548826        \N    \N    \N    0    \N    \N    \N    \N    female
16689    Ignatius    Barrows    alfred.swaniawski@olson.name    \N    New Zealand    Veumstad    494 Christa Dam    37086-5999    New Hampshire    2016-09-23 17:06:40.374656    2016-10-14 13:03:01.552734        \N    \N    \N    0    \N    \N    \N    \N    female
16690    Myrna    Brown    bettye@heaneygrady.net    \N    Guernsey    North Sebastian    1028 Schmitt Viaduct    76607-3765    North Dakota    2016-09-04 20:15:29.565764    2016-10-14 13:03:01.556729        \N    \N    \N    0    \N    \N    \N    \N    female
16691    Marco    Stracke    roberta@oreillyglover.info    \N    Turkey    South Demetrius    6654 Hilpert Coves    36522    Indiana    2016-08-22 13:58:49.079373    2016-10-14 13:03:01.560791        \N    \N    \N    0    \N    \N    \N    \N    male
16692    Otis    Smith    luna_hickle@lockman.co    \N    Cook Islands    East Jacqueshaven    91513 Orie Center    42472-7572    Oregon    2016-09-15 03:05:44.50137    2016-10-14 13:03:01.565014        \N    \N    \N    0    \N    \N    \N    \N    male
16693    Connor    Willms    randal_lind@swaniawski.io    \N    Afghanistan    New Hipolito    21495 Bahringer Brook    94303-0481    New Jersey    2016-07-13 07:24:20.020719    2016-10-14 13:03:01.56912        \N    \N    \N    0    \N    \N    \N    \N    female
16694    Rachelle    Upton    alfonzo@grimesanderson.biz    \N    Lesotho    South Moriah    447 Lavina Crossroad    28358    Louisiana    2016-08-24 08:59:37.31173    2016-10-14 13:03:01.573176        \N    \N    \N    0    \N    \N    \N    \N    female
16695    Linwood    Schuppe    dewitt@collinsgreenfelder.name    \N    Svalbard & Jan Mayen Islands    East Ernestina    251 Emmett Mill    42352    Wisconsin    2016-08-21 21:49:58.181024    2016-10-14 13:03:01.577341        \N    \N    \N    0    \N    \N    \N    \N    male
16697    Lue    Dickens    dewitt@murphy.info    \N    Christmas Island    Alexandrotown    89021 Angela Rue    37870-3235    Rhode Island    2016-06-25 10:34:59.356636    2016-10-14 13:03:01.585725        \N    \N    \N    0    \N    \N    \N    \N    female
16699    Norval    Watsica    melia@sporer.co    \N    Azerbaijan    Meaghanside    11202 Dicki Greens    28742    Georgia    2016-07-27 23:22:09.178597    2016-10-14 13:03:01.590222        \N    \N    \N    0    \N    \N    \N    \N    female
16700    Rowland    Kovacek    creola.eichmann@trantowbruen.biz    \N    Cocos (Keeling) Islands    Casimirstad    17946 Bernhard Gardens    16248    Louisiana    2016-09-14 00:12:22.273274    2016-10-14 13:03:01.594531        \N    \N    \N    0    \N    \N    \N    \N    female
16701    Rozella    Gutkowski    kelsi@ziemannrutherford.org    \N    Costa Rica    Mariloufurt    934 Marcus Ramp    58319    Rhode Island    2016-08-01 02:37:53.705517    2016-10-14 13:03:01.598373        \N    \N    \N    0    \N    \N    \N    \N    male
16702    Sanford    Dickens    vesta@steuber.biz    \N    Mongolia    Kshlerinborough    58288 Shanahan Harbors    14694-8503    Maryland    2016-08-18 09:42:44.619823    2016-10-14 13:03:01.602165        \N    \N    \N    0    \N    \N    \N    \N    female
16703    Easton    Gleason    estell_lowe@hagenes.io    \N    Iran    Averyland    853 Dare Shoal    54008-0139    South Carolina    2016-07-09 12:29:12.730688    2016-10-14 13:03:01.606432        \N    \N    \N    0    \N    \N    \N    \N    male
16704    Frederique    Kassulke    isadore_swaniawski@brekke.co    \N    Antigua and Barbuda    Danaview    370 Nikolaus Crossroad    87369    New Hampshire    2016-08-30 17:47:37.986731    2016-10-14 13:03:01.611215        \N    \N    \N    0    \N    \N    \N    \N    male
16705    Destany    Blanda    cory.stehr@haleynikolaus.net    \N    Czech Republic    Bernhardton    940 Trent Spur    94681    Oklahoma    2016-08-28 17:06:22.878605    2016-10-14 13:03:01.615608        \N    \N    \N    0    \N    \N    \N    \N    male
16706    Jordi    Ortiz    regan_kunde@reinger.co    \N    Sweden    Port Roy    3836 Herbert Turnpike    45714    Washington    2016-06-26 07:51:37.092605    2016-10-14 13:03:01.619653        \N    \N    \N    0    \N    \N    \N    \N    female
16707    Letha    Bradtke    zetta.adams@torp.info    \N    Ecuador    Gabriellashire    152 Ortiz Inlet    97559    Ohio    2016-08-17 06:25:51.862996    2016-10-14 13:03:01.623584        \N    \N    \N    0    \N    \N    \N    \N    male
16708    Anika    Mitchell    doyle.schamberger@mayer.org    \N    Benin    North Kacey    470 Nolan Estate    92151    Arizona    2016-09-02 14:21:56.404051    2016-10-14 13:03:01.627519        \N    \N    \N    0    \N    \N    \N    \N    male
16709    Kay    Graham    german@bechtelar.co    \N    Serbia    Martyport    23519 Monserrat Estates    96681    New Jersey    2016-07-26 18:46:33.050679    2016-10-14 13:03:01.631671        \N    \N    \N    0    \N    \N    \N    \N    male
16710    Malachi    Shields    wava_dubuque@bailey.info    \N    French Guiana    North Jameson    572 Fisher Mission    71855-6201    Virginia    2016-08-14 10:27:42.074503    2016-10-14 13:03:01.635483        \N    \N    \N    0    \N    \N    \N    \N    male
16711    Zula    Nienow    greg@medhurstdenesik.biz    \N    Namibia    Keelington    73618 Alfreda Lodge    66995-3773    Maryland    2016-06-23 02:18:18.919267    2016-10-14 13:03:01.639618        \N    \N    \N    0    \N    \N    \N    \N    female
16712    Norwood    Block    anita@gusikowski.net    \N    Western Sahara    Port Adelia    830 Durgan Meadows    96463    Vermont    2016-07-06 14:42:12.75366    2016-10-14 13:03:01.643822        \N    \N    \N    0    \N    \N    \N    \N    female
16713    Hermina    Reichert    jamarcus@larson.co    \N    Northern Mariana Islands    Rathhaven    4640 Parisian River    41521    New Hampshire    2016-06-23 05:16:15.887837    2016-10-14 13:03:01.647901        \N    \N    \N    0    \N    \N    \N    \N    female
16714    Devyn    McGlynn    theresa_sipes@cole.net    \N    Myanmar    Ashlynnburgh    341 Kohler Mountain    69742-3077    Ohio    2016-08-18 17:12:58.433322    2016-10-14 13:03:01.652424        \N    \N    \N    0    \N    \N    \N    \N    male
16715    Sylvester    Yundt    ellis@abbott.net    \N    American Samoa    Thompsonmouth    25724 Buckridge Loaf    28208    Louisiana    2016-07-05 17:23:15.089348    2016-10-14 13:03:01.657194        \N    \N    \N    0    \N    \N    \N    \N    male
16716    Eleanora    McDermott    jarret_marks@wolff.info    \N    Botswana    Lake Cruz    27357 Lia Garden    46814-4442    New Hampshire    2016-06-23 19:17:25.593009    2016-10-14 13:03:01.661773        \N    \N    \N    0    \N    \N    \N    \N    male
16717    Darrel    Weber    austin.wilderman@trompoconnell.name    \N    Kiribati    West Monroemouth    68647 Jocelyn Crossroad    27659-2060    West Virginia    2016-07-11 23:23:33.260345    2016-10-14 13:03:01.666053        \N    \N    \N    0    \N    \N    \N    \N    female
16718    Linwood    Witting    harmony_lesch@reynolds.name    \N    Turkmenistan    Madalinechester    2578 Gabriel Vista    21013    New Hampshire    2016-08-25 21:58:05.572644    2016-10-14 13:03:01.670213        \N    \N    \N    0    \N    \N    \N    \N    female
16719    Krystina    Ziemann    melisa_lockman@rodriguez.net    \N    Cameroon    Wintheiserbury    69832 Kuhn Summit    50494    Oklahoma    2016-09-17 17:31:05.605021    2016-10-14 13:03:01.67452        \N    \N    \N    0    \N    \N    \N    \N    male
16720    Tina    Mosciski    keyshawn_greenfelder@orn.com    \N    South Georgia and the South Sandwich Islands    Eberttown    52305 Sadye Fields    25905    Indiana    2016-09-04 08:54:34.312992    2016-10-14 13:03:01.678618        \N    \N    \N    0    \N    \N    \N    \N    male
16721    Zane    Nader    zechariah.roberts@rohan.org    \N    Greece    East Jaketon    7198 Rahul Flat    68486-8230    Hawaii    2016-07-29 11:00:59.788498    2016-10-14 13:03:01.684075        \N    \N    \N    0    \N    \N    \N    \N    female
16722    Brendan    Kutch    braden.reilly@hackett.name    \N    Mauritania    Pollichhaven    359 Kohler Falls    97261    West Virginia    2016-09-08 12:58:52.954744    2016-10-14 13:03:01.689016        \N    \N    \N    0    \N    \N    \N    \N    male
16724    Margaretta    Howe    raphaelle_baumbach@braunnitzsche.co    \N    Honduras    West Zoey    447 Freida Stravenue    66723    Oregon    2016-09-04 01:46:26.042549    2016-10-14 13:03:01.69365        \N    \N    \N    0    \N    \N    \N    \N    female
16725    Javonte    Conn    abdiel.daniel@welch.biz    \N    Puerto Rico    Dorianton    80959 Howe Glens    30898-2781    Georgia    2016-09-25 17:34:35.514136    2016-10-14 13:03:01.698075        \N    \N    \N    0    \N    \N    \N    \N    female
16726    Leann    Wyman    lucienne@goodwin.biz    \N    Syrian Arab Republic    Rachaelbury    5819 Hoppe Place    90448    Mississippi    2016-08-18 05:44:25.578074    2016-10-14 13:03:01.70285        \N    \N    \N    0    \N    \N    \N    \N    female
16727    Alexandre    Kautzer    holden@strackebreitenberg.name    \N    Montserrat    West Paolo    57557 Judy Mountains    27543-2959    Nevada    2016-08-06 21:01:41.394769    2016-10-14 13:03:01.709879        \N    \N    \N    0    \N    \N    \N    \N    male
16728    Floyd    Runolfsson    juston_okeefe@morar.io    \N    Saint Vincent and the Grenadines    Ezrabury    86295 O'Hara Crest    33743    Maine    2016-09-14 04:55:31.263338    2016-10-14 13:03:01.71455        \N    \N    \N    0    \N    \N    \N    \N    female
16729    Floyd    Ernser    lavina@kuhlman.io    \N    Antigua and Barbuda    Lake Emilyborough    956 Leuschke Falls    11427    Arkansas    2016-08-22 21:07:16.630138    2016-10-14 13:03:01.719165        \N    \N    \N    0    \N    \N    \N    \N    female
16730    Lucienne    Parisian    aurore_waters@miller.net    \N    Niger    New Maritza    8500 Brown Grove    67432    Indiana    2016-07-10 21:20:36.222594    2016-10-14 13:03:01.723604        \N    \N    \N    0    \N    \N    \N    \N    female
16731    Cindy    Bauch    adrien@markspagac.net    \N    Switzerland    Drakemouth    47753 Johnson Mall    22438    Louisiana    2016-08-22 02:51:27.324177    2016-10-14 13:03:01.728164        \N    \N    \N    0    \N    \N    \N    \N    male
16732    Adolfo    Raynor    kara.carter@wolfhowell.biz    \N    Bouvet Island (Bouvetoya)    Port Elianeburgh    56934 Simonis Isle    84771    Georgia    2016-06-29 00:04:47.201139    2016-10-14 13:03:01.732662        \N    \N    \N    0    \N    \N    \N    \N    male
16733    Dena    Keeling    kamryn@thiel.biz    \N    Iceland    New Alside    247 Stehr Greens    27640-8317    Kentucky    2016-07-09 10:05:19.379666    2016-10-14 13:03:01.736999        \N    \N    \N    0    \N    \N    \N    \N    female
16734    Thad    Dickinson    adela@powlowski.co    \N    Guinea    Rowanside    4544 Jean Mission    60388    Georgia    2016-09-12 10:13:22.742723    2016-10-14 13:03:01.741601        \N    \N    \N    0    \N    \N    \N    \N    male
16735    Archibald    Hand    raven@graham.net    \N    Guernsey    New Hayliebury    968 Willard Mountains    46053-6169    Maine    2016-07-20 18:15:04.757174    2016-10-14 13:03:01.746078        \N    \N    \N    0    \N    \N    \N    \N    male
16736    Arturo    Kunde    carley.gottlieb@strosinfranecki.info    \N    Turks and Caicos Islands    Loisland    3538 Blanda Pine    89756    Louisiana    2016-09-14 17:12:36.480073    2016-10-14 13:03:01.750524        \N    \N    \N    0    \N    \N    \N    \N    female
16737    Brett    Breitenberg    sheldon.schroeder@fisherdurgan.io    \N    Saint Barthelemy    Lorineburgh    6657 Schroeder Brook    85874-3510    Arkansas    2016-09-20 23:30:04.298433    2016-10-14 13:03:01.755167        \N    \N    \N    0    \N    \N    \N    \N    male
16738    Emma    Hickle    claude.roob@gislason.biz    \N    Nauru    Lake Orlostad    6980 Clovis Hollow    11685    Oregon    2016-08-15 14:25:15.444955    2016-10-14 13:03:01.759635        \N    \N    \N    0    \N    \N    \N    \N    male
16739    River    Gorczany    carmen@swaniawski.info    \N    Fiji    North Suzannechester    76208 Murazik Summit    80708-4651    Idaho    2016-09-28 16:36:17.078085    2016-10-14 13:03:01.764442        \N    \N    \N    0    \N    \N    \N    \N    female
16740    Hadley    Gibson    elfrieda.lockman@herman.io    \N    Malta    Heloiseview    3649 Strosin Meadow    25780-7864    Alabama    2016-07-21 17:04:20.93687    2016-10-14 13:03:01.768898        \N    \N    \N    0    \N    \N    \N    \N    male
16741    Arno    Weissnat    glenda@batzsawayn.info    \N    Macedonia    North Larissa    2860 Kamryn Stravenue    50651    Hawaii    2016-07-29 23:15:43.218539    2016-10-14 13:03:01.773001        \N    \N    \N    0    \N    \N    \N    \N    male
16742    Rosetta    Pfeffer    oscar@gleason.io    \N    Romania    Heidenreichfort    842 Predovic Alley    96207-4998    Kansas    2016-07-14 13:24:25.585692    2016-10-14 13:03:01.777011        \N    \N    \N    0    \N    \N    \N    \N    female
16743    Gerardo    Corkery    german_zieme@bruen.io    \N    Botswana    Destanytown    20365 Stracke Causeway    54510    New York    2016-09-22 21:02:20.650236    2016-10-14 13:03:01.781649        \N    \N    \N    0    \N    \N    \N    \N    female
16744    Antonette    Toy    sincere@turcotte.co    \N    Latvia    Lake Amelieport    87544 Blick Trail    42886    Missouri    2016-07-04 09:07:45.071941    2016-10-14 13:03:01.78742        \N    \N    \N    0    \N    \N    \N    \N    male
16745    Einar    Hills    eldon.watsica@aufderharreichel.com    \N    Zambia    South Trevor    6185 Lucienne Mill    36608-8001    South Carolina    2016-09-14 22:26:53.32707    2016-10-14 13:03:01.792233        \N    \N    \N    0    \N    \N    \N    \N    female
16746    Tony    Hodkiewicz    bernard@roberts.net    \N    Marshall Islands    Ankundingfurt    54021 Mosciski Causeway    22574-3522    Alabama    2016-09-27 03:59:23.30295    2016-10-14 13:03:01.79656        \N    \N    \N    0    \N    \N    \N    \N    female
16747    Granville    Hudson    therese@bahringer.co    \N    Marshall Islands    Ortizburgh    25291 Jazmin Wall    78916-9913    Mississippi    2016-07-26 09:59:48.562033    2016-10-14 13:03:01.801084        \N    \N    \N    0    \N    \N    \N    \N    male
16749    Nestor    Dooley    filomena@mcclurequigley.net    \N    Cambodia    Dallasmouth    16495 Natalie Ridges    24874    Iowa    2016-06-29 04:50:20.808667    2016-10-14 13:03:01.805683        \N    \N    \N    0    \N    \N    \N    \N    male
16750    Hubert    O'Kon    angelica@boehm.info    \N    South Georgia and the South Sandwich Islands    East Margeborough    24929 Rae Points    53285-4790    Missouri    2016-09-13 04:29:50.545216    2016-10-14 13:03:01.810273        \N    \N    \N    0    \N    \N    \N    \N    male
16751    Ahmed    Lindgren    austen.oberbrunner@zboncak.biz    \N    Sierra Leone    Adonisville    9570 Wehner Forges    21509    Maine    2016-06-23 20:08:57.696703    2016-10-14 13:03:01.81498        \N    \N    \N    0    \N    \N    \N    \N    female
16753    Gerson    Gulgowski    patsy@fisher.com    \N    Cambodia    Shermanmouth    10439 Ferry Village    49467-4981    Maine    2016-07-27 21:04:40.589898    2016-10-14 13:03:01.820049        \N    \N    \N    0    \N    \N    \N    \N    male
16754    Aryanna    Schowalter    wilmer.okuneva@waterskub.name    \N    Kyrgyz Republic    Lemuelmouth    42225 Kihn Lodge    30218    South Carolina    2016-08-12 11:57:38.437234    2016-10-14 13:03:01.833981        \N    \N    \N    0    \N    \N    \N    \N    female
16755    Tommie    Johnston    monte.smith@johnsblock.biz    \N    Antarctica (the territory South of 60 deg S)    Rodriguezstad    34960 Sawayn Crest    38220-2954    Oklahoma    2016-08-22 17:36:37.764514    2016-10-14 13:03:01.839169        \N    \N    \N    0    \N    \N    \N    \N    female
16756    Lane    Crist    aniyah@ebertrath.biz    \N    Saint Barthelemy    Chancebury    7947 Mable Ports    84161-6869    Louisiana    2016-07-08 14:30:36.877588    2016-10-14 13:03:01.844577        \N    \N    \N    0    \N    \N    \N    \N    female
16757    Vance    Kris    kirk.feeney@shields.name    \N    Latvia    Danielaview    9511 Juliana Knoll    12286-1733    Kentucky    2016-08-08 14:23:04.988567    2016-10-14 13:03:01.849652        \N    \N    \N    0    \N    \N    \N    \N    female
16758    Rosamond    Stoltenberg    jeie_skiles@mohrkunde.io    \N    Micronesia    West Eloymouth    41757 King Shore    31082-6486    Arizona    2016-09-04 14:58:27.78567    2016-10-14 13:03:01.85424        \N    \N    \N    0    \N    \N    \N    \N    male
16759    Mireille    Hermann    cristian@willms.info    \N    Namibia    East Sadye    969 Leo Village    21035-1137    Mississippi    2016-08-14 08:17:41.692316    2016-10-14 13:03:01.858764        \N    \N    \N    0    \N    \N    \N    \N    male
16760    Verona    Ernser    tianna@keelingrenner.org    \N    Congo    Lake Norval    1690 Donnelly Circles    52987    Georgia    2016-09-11 12:05:57.824054    2016-10-14 13:03:01.862855        \N    \N    \N    0    \N    \N    \N    \N    female
16761    Kayden    Rice    douglas.klein@hintz.info    \N    Burundi    Shyannemouth    98604 Kassulke Land    96813-5022    Missouri    2016-08-28 13:30:42.289924    2016-10-14 13:03:01.867149        \N    \N    \N    0    \N    \N    \N    \N    male
16762    Millie    Schulist    verona@reillypurdy.name    \N    Andorra    Port Dorotheaberg    71798 Ocie Prairie    53216-0402    New Jersey    2016-08-11 15:56:17.636328    2016-10-14 13:03:01.87136        \N    \N    \N    0    \N    \N    \N    \N    male
16763    Berneice    Crona    jarrett@corkeryjast.io    \N    Kazakhstan    Boville    8594 Bauch Spurs    91281-7117    Texas    2016-07-04 01:11:14.66475    2016-10-14 13:03:01.87593        \N    \N    \N    0    \N    \N    \N    \N    female
16764    Adelbert    DuBuque    caie_bashirian@gleason.info    \N    Burkina Faso    South Theresafort    9911 Green Extension    60214-0979    Rhode Island    2016-08-06 23:16:13.930212    2016-10-14 13:03:01.880372        \N    \N    \N    0    \N    \N    \N    \N    male
16765    Carmel    Skiles    julia@franecki.net    \N    Haiti    Efrainland    11381 Watsica Creek    18831-3922    Florida    2016-09-03 15:11:09.885559    2016-10-14 13:03:01.885018        \N    \N    \N    0    \N    \N    \N    \N    male
16766    Rashad    Schinner    lulu.quitzon@johnstonbalistreri.io    \N    United States of America    Port Antonio    386 Mae Turnpike    82520-0147    Nebraska    2016-07-26 20:43:43.840487    2016-10-14 13:03:01.889629        \N    \N    \N    0    \N    \N    \N    \N    female
16767    Janick    Abbott    wade@herman.net    \N    Niue    North Vernie    419 Stark Turnpike    15308-7607    Arizona    2016-08-25 22:18:35.159104    2016-10-14 13:03:01.894288        \N    \N    \N    0    \N    \N    \N    \N    male
16768    Camilla    Berge    gustave@pfannerstill.info    \N    Sudan    North Wilfredo    545 O'Conner Shoal    89699    Nebraska    2016-09-26 08:58:50.597402    2016-10-14 13:03:01.904707        \N    \N    \N    0    \N    \N    \N    \N    female
16769    Giuseppe    Stanton    juwan@pagac.co    \N    Saint Barthelemy    Port Casimer    4853 Schowalter Club    56023    Georgia    2016-07-28 11:25:01.920705    2016-10-14 13:03:01.910149        \N    \N    \N    0    \N    \N    \N    \N    female
16770    Roosevelt    Rath    hilton@nicolas.info    \N    Uruguay    East Albertafort    35545 Herman Well    85193-1406    Maryland    2016-07-31 17:31:40.921825    2016-10-14 13:03:01.924459        \N    \N    \N    0    \N    \N    \N    \N    female
16771    Taylor    Dicki    ottis@murazik.io    \N    Namibia    Lubowitzburgh    668 Gulgowski Ways    85774    North Dakota    2016-08-06 22:37:19.933753    2016-10-14 13:03:01.930173        \N    \N    \N    0    \N    \N    \N    \N    male
16772    Johnpaul    Lang    lavonne@shanahan.net    \N    Paraguay    Port Else    1327 Koch Forges    27338    North Carolina    2016-09-04 11:36:16.936964    2016-10-14 13:03:01.934841        \N    \N    \N    0    \N    \N    \N    \N    female
16773    Erick    Murray    terrill@mccullough.io    \N    Belgium    Rennertown    75723 Ephraim Ranch    20103    Tennessee    2016-07-30 01:44:33.632344    2016-10-14 13:03:01.939466        \N    \N    \N    0    \N    \N    \N    \N    female
16774    Geovanni    Mohr    kirstin.fahey@huelmcglynn.biz    \N    Liechtenstein    Sigmundhaven    72761 Sawayn Union    94174    South Carolina    2016-06-25 11:08:08.564122    2016-10-14 13:03:01.944571        \N    \N    \N    0    \N    \N    \N    \N    male
16775    Winston    Pacocha    sienna@upton.net    \N    Mexico    Conroybury    64154 Haag Ports    19917-6210    Idaho    2016-08-10 21:06:40.819915    2016-10-14 13:03:01.951207        \N    \N    \N    0    \N    \N    \N    \N    female
16776    Janiya    Schuster    tiara_nikolaus@franecki.io    \N    Bhutan    Josefaview    219 Kohler Courts    83515    Ohio    2016-07-21 16:59:50.938176    2016-10-14 13:03:01.959752        \N    \N    \N    0    \N    \N    \N    \N    female
16777    Alden    Moore    gay_johnson@murazikgreen.co    \N    Brazil    Lake Yvettehaven    613 Okuneva Ports    72045-5060    South Dakota    2016-07-02 20:31:45.138341    2016-10-14 13:03:01.965522        \N    \N    \N    0    \N    \N    \N    \N    male
16778    Braden    Gutmann    damien.schmidt@ferrymiller.net    \N    Czech Republic    Peytonberg    3574 Becker Trafficway    94208-4229    Mississippi    2016-09-29 02:18:49.100945    2016-10-14 13:03:01.971187        \N    \N    \N    0    \N    \N    \N    \N    female
16779    Delta    Beatty    mario@lindbailey.biz    \N    Antarctica (the territory South of 60 deg S)    South Wiltontown    168 Quitzon Courts    89640    Indiana    2016-08-01 00:07:20.078764    2016-10-14 13:03:01.976793        \N    \N    \N    0    \N    \N    \N    \N    female
16780    Abner    Trantow    lonzo@roberts.biz    \N    Djibouti    Schmittview    879 Albert Port    50739    South Dakota    2016-07-26 17:48:59.167245    2016-10-14 13:03:01.982862        \N    \N    \N    0    \N    \N    \N    \N    female
16781    Gudrun    Glover    celine.cronin@hermistonbernier.net    \N    Montenegro    New Jaclyn    37260 Yost Route    92314-5554    Maryland    2016-08-12 08:38:42.262316    2016-10-14 13:03:01.988957        \N    \N    \N    0    \N    \N    \N    \N    male
16782    Mikel    Boehm    tyrique@kochgaylord.info    \N    Chad    South Lukasfurt    79863 Weimann Cliffs    15796    Florida    2016-08-23 03:32:16.145467    2016-10-14 13:03:01.994812        \N    \N    \N    0    \N    \N    \N    \N    female
16783    Jewell    Maggio    ike@braun.com    \N    Burkina Faso    East Guadalupe    3771 Gerlach Center    56448    Maryland    2016-08-01 20:44:57.919766    2016-10-14 13:03:02.001209        \N    \N    \N    0    \N    \N    \N    \N    female
16784    Shanna    Thiel    grover_franecki@zieme.net    \N    United Kingdom    East Edgardostad    4635 Skiles Walk    98022    Nevada    2016-09-12 01:03:50.457625    2016-10-14 13:03:02.007575        \N    \N    \N    0    \N    \N    \N    \N    female
16785    Dock    Wiza    douglas@doyle.info    \N    Svalbard & Jan Mayen Islands    New Toneytown    4449 Kuphal Fords    92906    New Hampshire    2016-08-11 10:24:30.327177    2016-10-14 13:03:02.012419        \N    \N    \N    0    \N    \N    \N    \N    female
16786    Clare    Flatley    alexandro@romaguera.biz    \N    Heard Island and McDonald Islands    South Juddberg    2447 Delmer Roads    19848    Massachusetts    2016-09-17 06:01:06.058942    2016-10-14 13:03:02.017878        \N    \N    \N    0    \N    \N    \N    \N    female
16787    Lavina    Mante    riley@doyleerdman.biz    \N    Mali    South Brandt    93561 Upton Ports    74540-3863    Texas    2016-09-19 21:32:25.593359    2016-10-14 13:03:02.02498        \N    \N    \N    0    \N    \N    \N    \N    male
16788    Carole    Zieme    andreane@wolffkuphal.co    \N    Chile    Samanthabury    96786 Ethyl Shores    32398-8633    California    2016-09-24 19:21:21.982583    2016-10-14 13:03:02.030287        \N    \N    \N    0    \N    \N    \N    \N    female
16789    Mikayla    Little    karley.emard@westko.net    \N    Djibouti    Reannamouth    9307 Emelie Branch    73735-8324    Massachusetts    2016-07-06 08:35:14.197072    2016-10-14 13:03:02.03545        \N    \N    \N    0    \N    \N    \N    \N    male
16790    Kyle    Russel    leatha_torphy@schadengaylord.name    \N    Sri Lanka    Stephanyton    91472 Francis Crossroad    95891    Ohio    2016-09-10 05:05:24.701296    2016-10-14 13:03:02.040882        \N    \N    \N    0    \N    \N    \N    \N    male
16791    Marta    Marks    leanna@hermiston.co    \N    Tokelau    Maxineborough    11118 Labadie Neck    50801-0047    Alabama    2016-08-07 09:59:09.319429    2016-10-14 13:03:02.045606        \N    \N    \N    0    \N    \N    \N    \N    male
16792    Delphia    Becker    genevieve.ondricka@cormierleannon.co    \N    Morocco    Irwinport    662 Stoltenberg Squares    38196    Tennessee    2016-07-05 09:04:00.089006    2016-10-14 13:03:02.050362        \N    \N    \N    0    \N    \N    \N    \N    female
16793    Lesly    Willms    korbin.crooks@ortizgaylord.com    \N    Cook Islands    Barrychester    236 Shanahan Rue    90204    Virginia    2016-07-16 05:25:25.570265    2016-10-14 13:03:02.054926        \N    \N    \N    0    \N    \N    \N    \N    female
16794    Brannon    Lynch    berta.boyer@dietrich.biz    \N    Austria    East Stephanstad    4990 Nader Underpass    70777-0180    Rhode Island    2016-08-27 02:14:51.591418    2016-10-14 13:03:02.060373        \N    \N    \N    0    \N    \N    \N    \N    male
16795    Buck    Murray    electa.will@kreigercole.info    \N    Malawi    West Irwin    80810 Dallin Wall    70071    Florida    2016-09-01 02:55:26.294168    2016-10-14 13:03:02.065165        \N    \N    \N    0    \N    \N    \N    \N    male
16796    Marjolaine    Walker    lysanne.bogan@sanfordkub.name    \N    Croatia    Danielfort    9779 Emie Hill    99935-8388    Idaho    2016-08-21 20:39:08.010661    2016-10-14 13:03:02.070206        \N    \N    \N    0    \N    \N    \N    \N    male
16797    Otilia    Glover    elizabeth@lesch.name    \N    Burkina Faso    Harveyshire    4494 Julian Lakes    74683-2642    Alabama    2016-07-04 04:36:08.96667    2016-10-14 13:03:02.077829        \N    \N    \N    0    \N    \N    \N    \N    female
16798    Reggie    Langosh    eugene.abbott@ondrickabeatty.org    \N    Sweden    Wizashire    69634 Weber Village    49826-9158    Michigan    2016-07-19 14:19:43.526145    2016-10-14 13:03:02.083477        \N    \N    \N    0    \N    \N    \N    \N    female
16799    Jena    Cummings    matteo@kleinharber.co    \N    Marshall Islands    West Abraham    908 Faye Haven    79717-1802    New Hampshire    2016-09-07 18:15:29.962826    2016-10-14 13:03:02.089033        \N    \N    \N    0    \N    \N    \N    \N    female
16800    Henriette    Bailey    jaeden_fay@pagacweimann.name    \N    French Guiana    Collinston    7838 Kuhn Shore    70490    Hawaii    2016-09-20 23:02:03.284151    2016-10-14 13:03:02.094942        \N    \N    \N    0    \N    \N    \N    \N    male
16801    Charles    Bernier    filomena_rempel@mcclurerempel.info    \N    Bahrain    New Nigelside    366 Ben Squares    51082-5009    Pennsylvania    2016-08-28 18:06:10.016459    2016-10-14 13:03:02.100701        \N    \N    \N    0    \N    \N    \N    \N    male
16802    Raegan    Considine    lera@batz.info    \N    South Africa    Reichelton    5968 Milan Stravenue    81098-0200    Illinois    2016-06-25 05:45:59.941362    2016-10-14 13:03:02.106532        \N    \N    \N    0    \N    \N    \N    \N    male
16803    Delaney    Abernathy    joel@hodkiewicz.name    \N    Virgin Islands, U.S.    East Antonia    40244 Lamont Station    63913    New Hampshire    2016-09-25 09:14:18.188964    2016-10-14 13:03:02.112727        \N    \N    \N    0    \N    \N    \N    \N    female
16804    Arden    Pollich    edyth@buckridgemoore.info    \N    Afghanistan    Lydiaside    8548 Klocko Mountains    70258    Arizona    2016-09-27 05:06:57.824167    2016-10-14 13:03:02.118928        \N    \N    \N    0    \N    \N    \N    \N    female
16805    Selmer    Bins    hosea_macgyver@jacobs.info    \N    Gambia    North Sharon    159 Bailey Gateway    92950    Idaho    2016-09-04 21:25:42.728336    2016-10-14 13:03:02.124634        \N    \N    \N    0    \N    \N    \N    \N    female
16806    Elena    Lakin    bryce@gutkowski.biz    \N    Afghanistan    Abernathyside    2666 Hane Club    92802-5707    California    2016-06-29 23:08:06.432414    2016-10-14 13:03:02.130454        \N    \N    \N    0    \N    \N    \N    \N    male
16807    Rosalind    Gutkowski    donny@botsford.biz    \N    Belgium    Reichelton    9800 Shanel Center    11330-8621    Colorado    2016-09-14 20:59:16.020747    2016-10-14 13:03:02.137399        \N    \N    \N    0    \N    \N    \N    \N    female
16808    Marcos    Bergnaum    fleta@stanton.org    \N    Falkland Islands (Malvinas)    New Sylviashire    14370 Zemlak Plains    78066    Alaska    2016-07-05 09:59:23.333508    2016-10-14 13:03:02.142988        \N    \N    \N    0    \N    \N    \N    \N    male
16809    Junius    Swaniawski    robert_schmeler@jacobspowlowski.com    \N    Republic of Korea    West Jerroldmouth    266 Vivien Points    18377    Texas    2016-08-24 12:20:08.110159    2016-10-14 13:03:02.148206        \N    \N    \N    0    \N    \N    \N    \N    male
16810    Gilbert    Borer    krystina_marks@windler.biz    \N    Honduras    Port Adolph    9793 Wilhelmine Skyway    77758-2504    Indiana    2016-08-26 08:38:50.887098    2016-10-14 13:03:02.153209        \N    \N    \N    0    \N    \N    \N    \N    male
16811    Karson    Ferry    gia_waters@pfannerstillhoeger.info    \N    Sudan    New Walter    272 Ibrahim Mountains    62452-9533    Louisiana    2016-08-15 13:30:03.804478    2016-10-14 13:03:02.15827        \N    \N    \N    0    \N    \N    \N    \N    female
16812    Soledad    Bradtke    hester@altenwerth.net    \N    Peru    Margarethaven    507 Justus Divide    82310    Arizona    2016-07-28 09:03:27.811467    2016-10-14 13:03:02.166117        \N    \N    \N    0    \N    \N    \N    \N    male
16813    Rosendo    Block    gus_hammes@harris.biz    \N    Somalia    Port Chetfurt    8194 Oceane Ports    30839    Maryland    2016-09-26 20:08:00.625309    2016-10-14 13:03:02.171142        \N    \N    \N    0    \N    \N    \N    \N    female
16814    Loraine    Kuphal    thea@reynoldsabernathy.net    \N    Fiji    Treutelchester    6325 Schaefer Heights    47185    Minnesota    2016-08-21 21:00:17.286046    2016-10-14 13:03:02.175985        \N    \N    \N    0    \N    \N    \N    \N    male
16815    Odie    Bosco    asha_cruickshank@pollich.org    \N    Lebanon    Ivahbury    399 Luther Mill    36954    Kansas    2016-09-03 23:36:46.261457    2016-10-14 13:03:02.180854        \N    \N    \N    0    \N    \N    \N    \N    female
16816    Loma    Nader    anita_graham@thompsonohara.biz    \N    Somalia    East Carley    867 Lakin Ramp    18309-5061    Montana    2016-07-29 23:46:39.900562    2016-10-14 13:03:02.185261        \N    \N    \N    0    \N    \N    \N    \N    female
16817    Gabrielle    Kemmer    kayden.kohler@oconnellbernier.net    \N    Tokelau    Rachellefort    791 Medhurst Drive    24163-2343    Michigan    2016-09-11 13:31:49.233789    2016-10-14 13:03:02.190677        \N    \N    \N    0    \N    \N    \N    \N    male
16818    Christiana    Walter    dawson@mantepurdy.info    \N    Yemen    New Cristianborough    39288 Keebler Place    98015-5242    Vermont    2016-09-13 06:25:24.911938    2016-10-14 13:03:02.195283        \N    \N    \N    0    \N    \N    \N    \N    male
16819    Waldo    Stokes    america@keebler.io    \N    Kuwait    Pfannerstillton    22394 Murazik Underpass    68048-0821    Indiana    2016-07-11 14:33:08.505043    2016-10-14 13:03:02.200287        \N    \N    \N    0    \N    \N    \N    \N    male
16820    Geovanni    Jaskolski    israel@fadel.info    \N    Guam    Lake Rosa    301 Bode Lane    49673-3239    Maryland    2016-07-27 03:51:00.785629    2016-10-14 13:03:02.205155        \N    \N    \N    0    \N    \N    \N    \N    male
16821    Alexander    Pollich    trevion.fritsch@braun.name    \N    Netherlands Antilles    Port Stellafurt    68966 Erwin Highway    36690    Connecticut    2016-08-03 16:08:26.441984    2016-10-14 13:03:02.209969        \N    \N    \N    0    \N    \N    \N    \N    male
16822    Werner    Lehner    ruell_mckenzie@mayert.org    \N    Saint Barthelemy    North Paulashire    96370 Schulist Ports    76984    New Mexico    2016-09-24 05:08:11.857413    2016-10-14 13:03:02.214441        \N    \N    \N    0    \N    \N    \N    \N    female
16823    Dorothy    Gibson    tyler@kautzer.biz    \N    Swaziland    Port Alfonso    1823 Howell Way    82605    Florida    2016-08-05 11:08:08.375411    2016-10-14 13:03:02.219339        \N    \N    \N    0    \N    \N    \N    \N    female
16824    Trever    Bogisich    eudora@howell.info    \N    Turkey    North Eliza    3802 Jaylin Loop    39695-1002    Vermont    2016-07-23 13:23:30.740104    2016-10-14 13:03:02.224294        \N    \N    \N    0    \N    \N    \N    \N    female
16825    Brooklyn    Runolfsson    lloyd.cormier@walshlittle.biz    \N    Turkey    Port Jalynton    972 Stiedemann Creek    12270-0906    Tennessee    2016-08-05 02:12:52.996835    2016-10-14 13:03:02.228921        \N    \N    \N    0    \N    \N    \N    \N    female
16826    Hilda    Schmidt    noemie_bruen@schmidt.io    \N    Italy    East Davidshire    151 Eudora Alley    70574-8868    Iowa    2016-09-11 07:05:10.161081    2016-10-14 13:03:02.234074        \N    \N    \N    0    \N    \N    \N    \N    male
16827    Steve    Gorczany    dave@erdmanbayer.name    \N    Solomon Islands    Rebekahmouth    741 Helen Hollow    39649-9396    Washington    2016-08-31 08:43:39.669004    2016-10-14 13:03:02.238758        \N    \N    \N    0    \N    \N    \N    \N    male
16828    Andreane    Schmidt    alberto@krajcikwintheiser.biz    \N    Cyprus    East Shawnaview    2890 Edmond Land    13030    Oklahoma    2016-08-09 18:07:30.617386    2016-10-14 13:03:02.24304        \N    \N    \N    0    \N    \N    \N    \N    male
16829    Will    Lehner    terrill.king@strosin.info    \N    Moldova    Alethaport    49843 Aaliyah Plaza    64306-4183    New Mexico    2016-08-31 19:10:05.563412    2016-10-14 13:03:02.247086        \N    \N    \N    0    \N    \N    \N    \N    female
16830    Jeanne    Eichmann    ludie.sanford@ondricka.net    \N    Latvia    Christachester    102 Pfeffer Canyon    97771-5003    Illinois    2016-07-11 05:14:10.754862    2016-10-14 13:03:02.25113        \N    \N    \N    0    \N    \N    \N    \N    female
16831    Kris    Wyman    chelsie.moriette@goldner.com    \N    Bhutan    Port Joaquinfort    81551 Bogisich Lake    32035    Missouri    2016-07-14 13:29:17.716676    2016-10-14 13:03:02.255288        \N    \N    \N    0    \N    \N    \N    \N    male
16832    Aiyana    Schoen    korbin_beatty@langworthbechtelar.biz    \N    Ireland    Port Mortimer    2662 Pollich Cove    52838    Oklahoma    2016-08-29 11:10:28.772385    2016-10-14 13:03:02.259804        \N    \N    \N    0    \N    \N    \N    \N    female
16833    Emilie    Tillman    mariam@fritsch.biz    \N    Mexico    Evalynbury    62518 Jace Roads    27276    Minnesota    2016-09-16 18:03:20.522202    2016-10-14 13:03:02.264629        \N    \N    \N    0    \N    \N    \N    \N    female
16834    Wendy    Bosco    kayla_block@deckowabshire.io    \N    Kiribati    East Jackelineshire    242 Towne Flats    32546    Connecticut    2016-08-22 21:31:07.838413    2016-10-14 13:03:02.269128        \N    \N    \N    0    \N    \N    \N    \N    female
16835    Darren    Sauer    norma_kiehn@gorczany.io    \N    Bahamas    Dareview    423 Kuhn Via    50710-4296    Utah    2016-08-13 12:23:31.50315    2016-10-14 13:03:02.273555        \N    \N    \N    0    \N    \N    \N    \N    male
16836    Waldo    Herman    gustave@roob.info    \N    Latvia    Cruickshankland    264 Schmitt Wells    41069-5766    Nevada    2016-09-02 19:58:47.488369    2016-10-14 13:03:02.278038        \N    \N    \N    0    \N    \N    \N    \N    female
16837    Larue    Willms    elya.kreiger@wehner.net    \N    Trinidad and Tobago    New Jeremie    44201 Hegmann Highway    29137-7344    Vermont    2016-07-20 05:25:06.424757    2016-10-14 13:03:02.282267        \N    \N    \N    0    \N    \N    \N    \N    female
16838    Anika    Brown    adelle@croninterry.org    \N    Montserrat    Lake Kyleighfurt    875 Angela Loop    49261-0593    Oklahoma    2016-07-28 13:50:30.057113    2016-10-14 13:03:02.286571        \N    \N    \N    0    \N    \N    \N    \N    male
16839    Adrain    Terry    elnora@millchowalter.info    \N    Bulgaria    Port Devontefort    6346 Nikolaus Views    37094    Illinois    2016-06-25 10:16:12.598939    2016-10-14 13:03:02.290839        \N    \N    \N    0    \N    \N    \N    \N    female
16840    Lesly    Conroy    kaylee_romaguera@ankunding.info    \N    Cote d'Ivoire    Murazikland    87211 Anya Key    87313    Florida    2016-07-31 19:55:45.69858    2016-10-14 13:03:02.295933        \N    \N    \N    0    \N    \N    \N    \N    male
16841    Willa    Hettinger    mauricio_pacocha@jenkinsbeatty.com    \N    Czech Republic    Zoeside    8378 Fleta Views    70665    Oregon    2016-07-07 13:24:48.013237    2016-10-14 13:03:02.300591        \N    \N    \N    0    \N    \N    \N    \N    female
16842    Jaquelin    Raynor    ima@fisher.net    \N    Norway    New Enrico    9860 Aleen Crossroad    76661    Montana    2016-07-04 19:25:28.201162    2016-10-14 13:03:02.306123        \N    \N    \N    0    \N    \N    \N    \N    male
16843    Dylan    Green    addie@jerde.name    \N    Equatorial Guinea    West Rosettafort    68668 Runolfsdottir Garden    90784    New Jersey    2016-07-08 09:25:43.098621    2016-10-14 13:03:02.312336        \N    \N    \N    0    \N    \N    \N    \N    male
16844    Leopoldo    Upton    kiana@hackett.io    \N    Barbados    Kaleychester    163 Ratke Parks    15787-5766    Massachusetts    2016-09-19 04:03:01.452938    2016-10-14 13:03:02.317559        \N    \N    \N    0    \N    \N    \N    \N    male
16845    Kaela    Bruen    nora.considine@king.info    \N    Tanzania    Bernhardburgh    2288 Zachery Branch    44008    North Carolina    2016-08-24 23:28:27.432961    2016-10-14 13:03:02.322504        \N    \N    \N    0    \N    \N    \N    \N    female
16846    Lauren    Grady    elda_bayer@kuvalislittel.biz    \N    Spain    New Toney    927 Brown Islands    70143    West Virginia    2016-09-23 15:00:13.687984    2016-10-14 13:03:02.327212        \N    \N    \N    0    \N    \N    \N    \N    male
16847    Grayce    Lockman    giuseppe.sauer@lynchbashirian.name    \N    Saint Martin    Port Abbie    7638 Cleo Station    28582-9638    Colorado    2016-09-05 16:17:47.219086    2016-10-14 13:03:02.331816        \N    \N    \N    0    \N    \N    \N    \N    male
16848    Cecilia    Stracke    crystal.botsford@huelskunde.io    \N    Central African Republic    South Darionberg    92253 Aryanna Mountains    98308-9160    Utah    2016-08-30 15:31:33.326149    2016-10-14 13:03:02.336261        \N    \N    \N    0    \N    \N    \N    \N    female
16849    Claire    Rempel    dalton_howell@harber.biz    \N    Poland    Port Nathanaelton    16665 Antonia Port    97708    Massachusetts    2016-07-02 10:23:32.386247    2016-10-14 13:03:02.341744        \N    \N    \N    0    \N    \N    \N    \N    female
16850    Sheldon    Gislason    elliott@boehm.biz    \N    Heard Island and McDonald Islands    North Miltonfort    6610 Monahan Lights    23593-4167    Delaware    2016-07-26 07:33:45.722576    2016-10-14 13:03:02.345971        \N    \N    \N    0    \N    \N    \N    \N    male
16851    Chad    Bogan    era@terry.name    \N    Belgium    McClureshire    91806 Jacynthe Pine    24386-0505    Texas    2016-07-04 03:22:29.493591    2016-10-14 13:03:02.350098        \N    \N    \N    0    \N    \N    \N    \N    male
16852    Annette    Kunde    letha.crooks@schuster.info    \N    Syrian Arab Republic    West Berry    8700 Kilback Island    24346-4965    Montana    2016-09-18 09:47:51.921355    2016-10-14 13:03:02.354164        \N    \N    \N    0    \N    \N    \N    \N    female
16853    Arlie    Huels    vladimir@darewalter.io    \N    Honduras    Joaquinland    13804 Herzog Port    49023-0627    Indiana    2016-09-07 03:02:51.076422    2016-10-14 13:03:02.358476        \N    \N    \N    0    \N    \N    \N    \N    female
16854    Lucious    Douglas    cali@ortizortiz.io    \N    Gambia    New Amira    32798 Turcotte Mountain    58198    Wisconsin    2016-08-02 12:34:33.441221    2016-10-14 13:03:02.362547        \N    \N    \N    0    \N    \N    \N    \N    female
16855    Emmitt    Buckridge    drake_goldner@schadencruickshank.co    \N    Dominica    New Karolannton    9221 Enrique Mountain    69233    Texas    2016-07-24 16:00:17.78556    2016-10-14 13:03:02.366476        \N    \N    \N    0    \N    \N    \N    \N    male
16856    Emerald    Graham    agnes.kunde@kubbernier.org    \N    Turkmenistan    Kadenmouth    95795 Louvenia Radial    84488-4777    Vermont    2016-07-05 02:29:50.269334    2016-10-14 13:03:02.370609        \N    \N    \N    0    \N    \N    \N    \N    female
16857    Erica    Connelly    laurie_murray@friesenfritsch.com    \N    Brazil    Rippinborough    524 Champlin Turnpike    47922    New York    2016-06-30 17:42:42.031314    2016-10-14 13:03:02.374993        \N    \N    \N    0    \N    \N    \N    \N    female
16858    Leatha    Spencer    heidi.grimes@stoltenberg.io    \N    Afghanistan    Easterborough    200 Grace Underpass    10034    Idaho    2016-09-10 11:48:12.399907    2016-10-14 13:03:02.379642        \N    \N    \N    0    \N    \N    \N    \N    female
16859    Lori    Renner    marguerite_stamm@mueller.co    \N    Taiwan    West Isaias    98758 Wisozk Center    55182    Maine    2016-09-23 14:21:08.804313    2016-10-14 13:03:02.384566        \N    \N    \N    0    \N    \N    \N    \N    male
16860    Mercedes    Kilback    francis.ko@waelchi.io    \N    Eritrea    West Raymundo    11248 Schneider Motorway    89839    Arizona    2016-08-19 15:12:35.161345    2016-10-14 13:03:02.389469        \N    \N    \N    0    \N    \N    \N    \N    male
16861    Karianne    Brakus    shaun@adams.biz    \N    Pitcairn Islands    Erdmanberg    75357 Juston Drives    72455    Indiana    2016-09-19 22:42:05.356948    2016-10-14 13:03:02.399666        \N    \N    \N    0    \N    \N    \N    \N    male
16862    Gonzalo    Mraz    darius@bahringerprohaska.com    \N    Denmark    Port Jude    874 Donnelly Crossroad    71104    Nebraska    2016-08-19 18:00:53.072389    2016-10-14 13:03:02.404557        \N    \N    \N    0    \N    \N    \N    \N    female
16863    Denis    Dicki    simeon@zemlak.net    \N    Algeria    South Vita    3343 Minnie Gardens    44621-0324    Oregon    2016-07-15 08:48:02.128398    2016-10-14 13:03:02.409415        \N    \N    \N    0    \N    \N    \N    \N    female
16864    Pattie    Powlowski    dee_fisher@marvin.net    \N    Pitcairn Islands    Smithamtown    6783 Conrad Row    43476-0004    Nebraska    2016-07-05 15:27:57.974203    2016-10-14 13:03:02.415883        \N    \N    \N    0    \N    \N    \N    \N    male
16865    Delmer    Leffler    veronica@gibsondubuque.info    \N    New Zealand    Hackettborough    5416 Stehr Fort    52259    Nebraska    2016-06-25 08:53:12.272951    2016-10-14 13:03:02.419972        \N    \N    \N    0    \N    \N    \N    \N    female
16866    Lambert    Kerluke    kane.breitenberg@gorczany.biz    \N    Belarus    New Marcellafort    6264 Helen Shoal    39879-8530    Indiana    2016-09-21 23:04:38.8265    2016-10-14 13:03:02.424234        \N    \N    \N    0    \N    \N    \N    \N    female
16867    Nayeli    Hansen    jaden@eichmannarmstrong.org    \N    Eritrea    New Kristaland    2053 Bernadine Park    59228    Connecticut    2016-09-16 01:50:16.845046    2016-10-14 13:03:02.428434        \N    \N    \N    0    \N    \N    \N    \N    female
16868    Gillian    Treutel    ivory@pfannerstill.io    \N    Croatia    Teaganmouth    490 Wuckert Fall    54250    North Dakota    2016-07-19 15:45:56.219161    2016-10-14 13:03:02.432749        \N    \N    \N    0    \N    \N    \N    \N    male
16869    Reba    Botsford    albin.toy@mantekonopelski.com    \N    Republic of Korea    East Jaronbury    87444 Corbin Tunnel    67791    New Jersey    2016-09-09 10:51:42.125606    2016-10-14 13:03:02.437291        \N    \N    \N    0    \N    \N    \N    \N    female
16870    Piper    Christiansen    crawford_ritchie@schowalter.net    \N    Cuba    Anyastad    16449 D'Amore Ridges    66442    Mississippi    2016-07-11 09:36:02.583848    2016-10-14 13:03:02.441775        \N    \N    \N    0    \N    \N    \N    \N    male
16871    Felicity    Emard    delta_borer@ortizbergnaum.com    \N    Palestinian Territory    Elfriedaport    99751 Hayden Drive    16418    Mississippi    2016-08-16 14:36:00.880287    2016-10-14 13:03:02.446007        \N    \N    \N    0    \N    \N    \N    \N    female
16872    Margie    Botsford    connor.rosenbaum@skiles.biz    \N    Estonia    Port Dillon    837 Constance Wall    14433-9588    New York    2016-08-19 00:08:12.417118    2016-10-14 13:03:02.450073        \N    \N    \N    0    \N    \N    \N    \N    male
16873    Raleigh    Kiehn    claudine@mosciski.name    \N    El Salvador    Port Kennedi    8392 Macejkovic River    49911    Connecticut    2016-09-14 03:15:06.532284    2016-10-14 13:03:02.454647        \N    \N    \N    0    \N    \N    \N    \N    female
16874    Skylar    Kessler    flavio_nader@hartmann.name    \N    Malawi    North Eastonland    616 Schneider Highway    60914-2512    Nevada    2016-09-23 06:27:27.93723    2016-10-14 13:03:02.45875        \N    \N    \N    0    \N    \N    \N    \N    male
16875    Rene    Mohr    nya_hand@swifthartmann.io    \N    Democratic People's Republic of Korea    South Kenyatta    721 Russel Bridge    25085-6073    Pennsylvania    2016-09-08 10:19:58.161559    2016-10-14 13:03:02.462703        \N    \N    \N    0    \N    \N    \N    \N    female
16876    Jovani    Brakus    danial@strosin.io    \N    Liechtenstein    Nicolashaven    382 Luisa Trafficway    82030    Mississippi    2016-09-03 13:59:21.106784    2016-10-14 13:03:02.467222        \N    \N    \N    0    \N    \N    \N    \N    male
16877    Jo    Moore    giuseppe@hammes.io    \N    Mauritius    Carlieborough    3467 Dooley Run    27640-1653    Wyoming    2016-09-27 20:00:18.206868    2016-10-14 13:03:02.472796        \N    \N    \N    0    \N    \N    \N    \N    male
16878    Marian    Labadie    otis@uptonklocko.org    \N    Puerto Rico    South Percy    717 Christy Locks    60761    North Dakota    2016-07-15 19:36:14.094152    2016-10-14 13:03:02.476978        \N    \N    \N    0    \N    \N    \N    \N    male
16879    Jayne    Koch    aubrey.mann@mosciski.net    \N    Uzbekistan    New Myronburgh    318 Yundt Plain    76386-0805    Hawaii    2016-07-07 15:48:24.216388    2016-10-14 13:03:02.481082        \N    \N    \N    0    \N    \N    \N    \N    male
16880    Crawford    Hintz    estell.haley@kuvalishowe.com    \N    Singapore    West Violettefort    4830 Berniece Springs    50389-9763    New Mexico    2016-09-22 14:38:22.402932    2016-10-14 13:03:02.485832        \N    \N    \N    0    \N    \N    \N    \N    female
16881    Aletha    Spinka    mathias@buckridge.biz    \N    Bahamas    Cathrineshire    4875 Kunde Streets    52738    Wyoming    2016-07-05 13:47:05.861768    2016-10-14 13:03:02.496692        \N    \N    \N    0    \N    \N    \N    \N    female
16882    Providenci    Bayer    layne@rippinmoriette.info    \N    Zimbabwe    West Donatoborough    12105 Perry Branch    82898-7742    Illinois    2016-09-02 14:28:02.031013    2016-10-14 13:03:02.501324        \N    \N    \N    0    \N    \N    \N    \N    male
16883    Kip    Feil    janis.kovacek@bauchbernier.co    \N    Gabon    New Lacyburgh    579 Yazmin Burg    89059-3293    Virginia    2016-07-11 21:59:49.025619    2016-10-14 13:03:02.506333        \N    \N    \N    0    \N    \N    \N    \N    female
16884    Kenna    Beahan    alia.mitchell@rau.io    \N    Liechtenstein    Stantown    61493 Mohr Mountain    66359    Kansas    2016-08-28 11:48:11.612245    2016-10-14 13:03:02.511159        \N    \N    \N    0    \N    \N    \N    \N    male
16885    Tyree    Littel    sonya@bernier.io    \N    Bahrain    Jenkinsburgh    80221 Florencio Key    80852-0032    Ohio    2016-07-23 15:01:12.5425    2016-10-14 13:03:02.515566        \N    \N    \N    0    \N    \N    \N    \N    female
16886    Gaston    Haag    rozella.medhurst@vonfeil.name    \N    Libyan Arab Jamahiriya    Alfonzoport    185 Marielle Courts    86310-4335    Arkansas    2016-08-20 23:20:47.360949    2016-10-14 13:03:02.520291        \N    \N    \N    0    \N    \N    \N    \N    female
16887    Berniece    Schoen    krista@reynolds.co    \N    Tanzania    Lake Jaydon    990 Nia Cliffs    60831-1771    New Jersey    2016-09-10 13:38:35.819727    2016-10-14 13:03:02.525086        \N    \N    \N    0    \N    \N    \N    \N    male
16888    Jaydon    Tromp    dawn@rogahnrohan.name    \N    Vietnam    North Xavierside    946 Catherine Tunnel    27014    Mississippi    2016-09-25 20:29:03.520614    2016-10-14 13:03:02.530434        \N    \N    \N    0    \N    \N    \N    \N    male
16890    Opal    Tromp    marielle@pfannerstill.biz    \N    Mauritania    Vinniestad    140 Turner Fords    56932-6253    Ohio    2016-09-22 02:38:10.786292    2016-10-14 13:03:02.535332        \N    \N    \N    0    \N    \N    \N    \N    male
16893    Kaia    O'Conner    matt.kuhlman@kunze.name    \N    Libyan Arab Jamahiriya    West Adah    849 Verlie Summit    20271-8183    Mississippi    2016-09-12 03:31:31.474776    2016-10-14 13:03:02.539968        \N    \N    \N    0    \N    \N    \N    \N    male
16894    Quinten    Oberbrunner    charlene_treutel@schimmel.co    \N    United States of America    New Ayla    6164 Koss Meadow    20843    Wyoming    2016-07-18 01:16:18.46189    2016-10-14 13:03:02.54464        \N    \N    \N    0    \N    \N    \N    \N    male
16895    Javon    Skiles    rosetta@ullrich.org    \N    Palestinian Territory    Lake Jettberg    126 Johnathon Mill    29940-6770    South Dakota    2016-06-24 16:24:50.898914    2016-10-14 13:03:02.549789        \N    \N    \N    0    \N    \N    \N    \N    male
16896    Tyler    Mueller    ellis@cartwright.biz    \N    Turkey    West Karianne    3368 Jack Underpass    95272    North Dakota    2016-09-22 00:14:02.245899    2016-10-14 13:03:02.554318        \N    \N    \N    0    \N    \N    \N    \N    male
16898    Scottie    Abshire    arlo@yost.info    \N    France    South Colten    1462 Spencer Crossroad    98740    Illinois    2016-07-17 23:45:01.380637    2016-10-14 13:03:02.559085        \N    \N    \N    0    \N    \N    \N    \N    male
16899    Pearlie    Rolfson    modesto@rolfson.org    \N    Namibia    Lake Laurafurt    7055 Schiller Green    35921-3398    Michigan    2016-09-09 04:10:09.332284    2016-10-14 13:03:02.564017        \N    \N    \N    0    \N    \N    \N    \N    female
16900    Peggie    Anderson    sheridan.gaylord@treutel.io    \N    Puerto Rico    Penelopeview    643 Helena Highway    64128-9007    California    2016-08-29 21:16:14.423037    2016-10-14 13:03:02.568628        \N    \N    \N    0    \N    \N    \N    \N    male
16901    Ulices    Pollich    jackeline@rau.biz    \N    Vanuatu    Kertzmannland    99825 Hilma Trail    43995-1845    Indiana    2016-06-28 02:01:48.322176    2016-10-14 13:03:02.573262        \N    \N    \N    0    \N    \N    \N    \N    male
16902    Pamela    Quigley    alize.ruel@heidenreichhickle.info    \N    Belgium    East Waldo    430 Jovani Shore    58147-1574    Massachusetts    2016-08-01 19:10:46.39288    2016-10-14 13:03:02.577724        \N    \N    \N    0    \N    \N    \N    \N    male
16903    Noemie    Von    gaston_daniel@bergstromherman.info    \N    El Salvador    Tillmanberg    441 Tony Crescent    79455-8954    Nevada    2016-08-26 05:23:40.835276    2016-10-14 13:03:02.581934        \N    \N    \N    0    \N    \N    \N    \N    female
16904    Leland    Harris    stanton.davis@trantow.io    \N    El Salvador    Jakubowskiside    91278 Trace Run    23102-8656    Colorado    2016-08-16 23:59:25.878234    2016-10-14 13:03:02.586762        \N    \N    \N    0    \N    \N    \N    \N    male
16905    Jairo    Howe    maci.orn@hyatt.info    \N    Morocco    Port Ryleeview    6325 Erin Cliff    14010    North Carolina    2016-07-07 04:31:33.58786    2016-10-14 13:03:02.591445        \N    \N    \N    0    \N    \N    \N    \N    male
16907    Krista    Rohan    hattie_shanahan@bednargreenholt.org    \N    Gabon    Port Judsonshire    6903 Jany Divide    33429    North Dakota    2016-07-25 14:19:08.346664    2016-10-14 13:03:02.595593        \N    \N    \N    0    \N    \N    \N    \N    male
16908    Opal    Bernier    blanche@kris.info    \N    El Salvador    Nelsonfort    51559 Waelchi Freeway    23915    Texas    2016-09-21 16:38:18.122449    2016-10-14 13:03:02.600169        \N    \N    \N    0    \N    \N    \N    \N    male
16909    Randall    Effertz    salvatore@keeling.net    \N    Cocos (Keeling) Islands    South Brooklynberg    132 Frederic Flat    89937    Oregon    2016-08-31 08:04:14.733548    2016-10-14 13:03:02.604441        \N    \N    \N    0    \N    \N    \N    \N    male
16910    Quinn    Cartwright    beth@shieldsmcclure.co    \N    San Marino    Bobbieville    44715 Elna Lakes    56865-4039    Vermont    2016-09-17 23:48:18.65247    2016-10-14 13:03:02.60855        \N    \N    \N    0    \N    \N    \N    \N    male
16911    Dale    Shields    hailee@weimann.name    \N    Saint Lucia    Lake Kirktown    49486 Abigayle Junctions    68225    Kentucky    2016-07-25 05:44:50.54324    2016-10-14 13:03:02.612894        \N    \N    \N    0    \N    \N    \N    \N    male
16912    Jett    Volkman    mack.cummerata@rolfsonwehner.io    \N    Swaziland    North Jeffereyshire    928 Helmer Causeway    88950-4507    Colorado    2016-08-24 09:39:59.146714    2016-10-14 13:03:02.617169        \N    \N    \N    0    \N    \N    \N    \N    female
16913    Asia    Carroll    nicholaus.hills@ondricka.net    \N    Saint Barthelemy    New Myron    177 Schumm Well    35361-1111    Michigan    2016-07-26 16:07:50.296721    2016-10-14 13:03:02.621729        \N    \N    \N    0    \N    \N    \N    \N    male
16914    Ivah    Christiansen    newell_okuneva@stokes.name    \N    Equatorial Guinea    Kieranbury    35902 Kshlerin Lakes    46555-5878    Ohio    2016-08-21 21:52:28.340758    2016-10-14 13:03:02.625995        \N    \N    \N    0    \N    \N    \N    \N    female
16915    Hope    Schumm    ephraim@strackeboyle.info    \N    Solomon Islands    Bergebury    5777 Reynolds Spur    77485-6972    Ohio    2016-09-10 09:17:46.414165    2016-10-14 13:03:02.630687        \N    \N    \N    0    \N    \N    \N    \N    female
16916    Darrion    Hoppe    felipe@heathcoteerdman.org    \N    Italy    Spencerburgh    101 Bernhard Landing    17680    South Carolina    2016-07-19 20:18:31.697845    2016-10-14 13:03:02.63521        \N    \N    \N    0    \N    \N    \N    \N    female
16917    Josefina    Ondricka    sally.satterfield@gutkowski.com    \N    Congo    Dooleyfurt    42600 Dach Ridge    74440-0141    Louisiana    2016-08-08 05:02:33.597486    2016-10-14 13:03:02.640531        \N    \N    \N    0    \N    \N    \N    \N    female
16918    Cecile    Hammes    rosella@corwin.net    \N    Christmas Island    West Lemuel    7293 Tristin Ville    78406-1770    Arizona    2016-06-25 09:33:08.641541    2016-10-14 13:03:02.644957        \N    \N    \N    0    \N    \N    \N    \N    male
16919    Constantin    Reynolds    carter@stark.com    \N    Paraguay    Brianashire    8752 Feil Crossing    85738    Pennsylvania    2016-08-28 08:20:56.032726    2016-10-14 13:03:02.649219        \N    \N    \N    0    \N    \N    \N    \N    male
16920    Chesley    Senger    asia@kilback.com    \N    Argentina    West Gilbertchester    9973 Donnell Rapid    82354    New Jersey    2016-07-01 16:53:39.111976    2016-10-14 13:03:02.653733        \N    \N    \N    0    \N    \N    \N    \N    male
16921    Nathan    Rippin    pansy@upton.biz    \N    Honduras    Muellerbury    9468 Kailee Walks    78738-0754    Alaska    2016-08-17 20:35:26.816709    2016-10-14 13:03:02.658179        \N    \N    \N    0    \N    \N    \N    \N    female
16922    Icie    Terry    adeline_mosciski@haag.info    \N    Egypt    West Marcia    338 Tanya Courts    23396    California    2016-07-14 15:13:10.023594    2016-10-14 13:03:02.662888        \N    \N    \N    0    \N    \N    \N    \N    male
16923    Aiyana    Glover    enid@eichmann.net    \N    Cocos (Keeling) Islands    Francescoview    272 Morar Greens    40508-8956    Alaska    2016-06-23 07:01:44.937975    2016-10-14 13:03:02.668698        \N    \N    \N    0    \N    \N    \N    \N    female
16924    Nicklaus    Adams    camille_damore@grantkemmer.biz    \N    Denmark    Port Camilashire    8645 Leatha Fields    95752    North Carolina    2016-08-06 19:37:42.35104    2016-10-14 13:03:02.673954        \N    \N    \N    0    \N    \N    \N    \N    female
16925    Paige    Bode    aletha.murphy@fahey.biz    \N    Hungary    Lindberg    17928 Zella Alley    90597-5848    Kentucky    2016-09-08 13:38:18.206902    2016-10-14 13:03:02.678801        \N    \N    \N    0    \N    \N    \N    \N    male
16926    Elinore    Lind    foster@heathcote.biz    \N    San Marino    Rosalindaton    39984 Benny Port    95603    Colorado    2016-06-29 23:33:59.502732    2016-10-14 13:03:02.683212        \N    \N    \N    0    \N    \N    \N    \N    male
16927    Felton    Balistreri    sylvan.heel@runolfon.org    \N    Dominica    Kundemouth    74071 Holly Ridge    59609    Indiana    2016-09-10 09:54:58.651004    2016-10-14 13:03:02.68758        \N    \N    \N    0    \N    \N    \N    \N    male
16928    Mollie    Rutherford    norbert@monahan.co    \N    Honduras    West Wava    7470 Otilia Forges    86734-5585    New Mexico    2016-09-08 09:27:40.927662    2016-10-14 13:03:02.691996        \N    \N    \N    0    \N    \N    \N    \N    male
16929    Brandi    Glover    ronny_mayert@morar.info    \N    Grenada    New Joanie    512 Hegmann Course    52801-0632    Kentucky    2016-07-15 16:27:31.19577    2016-10-14 13:03:02.697063        \N    \N    \N    0    \N    \N    \N    \N    female
19724    Jon    Welch    gino@gorczany.com    \N    Mozambique    West Rosalee    9781 Adolf Harbor    49996-6904    Idaho    2016-08-05 18:26:09.411605    2016-10-14 13:03:02.701919        \N    \N    \N    0    \N    \N    \N    \N    female
16930    Lucinda    Abbott    federico@haley.co    \N    Trinidad and Tobago    Port Dannytown    62122 Erin Ports    48411-0610    Maryland    2016-08-07 08:29:36.632034    2016-10-14 13:03:02.707358        \N    \N    \N    0    \N    \N    \N    \N    male
16931    Keanu    Legros    mae@zboncak.com    \N    Mexico    Port Brady    4183 Demarcus Lights    35867-3623    Georgia    2016-07-19 20:07:12.806289    2016-10-14 13:03:02.712223        \N    \N    \N    0    \N    \N    \N    \N    male
16932    Reilly    Yundt    golden_mann@stokesbaumbach.info    \N    Chile    North Mitchell    757 Shields Dam    90976-3025    South Dakota    2016-07-12 19:16:07.166507    2016-10-14 13:03:02.716942        \N    \N    \N    0    \N    \N    \N    \N    male
16933    Scot    Hayes    maybelle_grady@bauch.biz    \N    Lao People's Democratic Republic    Letitiashire    34665 Aditya Heights    76955-6542    Minnesota    2016-07-03 11:26:52.336715    2016-10-14 13:03:02.721725        \N    \N    \N    0    \N    \N    \N    \N    male
16936    Vicky    Bernhard    mariana_witting@rice.io    \N    Lesotho    New Eltonberg    2287 Homenick Union    10827    Illinois    2016-06-26 07:28:46.485648    2016-10-14 13:03:02.726398        \N    \N    \N    0    \N    \N    \N    \N    female
16937    Fred    Zieme    remington@bruen.com    \N    Barbados    Magdalenaburgh    1385 Boyle Gateway    98895    Arkansas    2016-08-08 17:38:07.64279    2016-10-14 13:03:02.731016        \N    \N    \N    0    \N    \N    \N    \N    male
16938    Christina    Littel    shanel.rath@kling.net    \N    Cocos (Keeling) Islands    Lake Jayden    41427 Rigoberto Cliff    11643-2586    Georgia    2016-08-24 20:05:51.34604    2016-10-14 13:03:02.735812        \N    \N    \N    0    \N    \N    \N    \N    male
16939    Camren    Langworth    edward.harber@muellergrant.com    \N    Mayotte    Port Consuelo    4102 Julius Crescent    51503    Connecticut    2016-09-06 11:13:16.070987    2016-10-14 13:03:02.742176        \N    \N    \N    0    \N    \N    \N    \N    male
16941    Malika    O'Conner    keven.oconner@shanahan.io    \N    Romania    East Jacklyntown    4498 Heidenreich Rest    19056-1660    Delaware    2016-07-07 19:53:49.026184    2016-10-14 13:03:02.747233        \N    \N    \N    0    \N    \N    \N    \N    male
16942    Krystel    Breitenberg    alva@feeneyschneider.name    \N    Saint Pierre and Miquelon    Lake Axelshire    8932 Cummings Isle    97944-4260    Kentucky    2016-08-29 23:21:14.73484    2016-10-14 13:03:02.752136        \N    \N    \N    0    \N    \N    \N    \N    male
16944    Dante    Kris    alize_mcclure@spencer.info    \N    Iraq    Lake Marco    277 Janelle Trail    89667-8947    Mississippi    2016-06-27 07:46:35.001017    2016-10-14 13:03:02.756664        \N    \N    \N    0    \N    \N    \N    \N    male
16945    Kamron    Hoeger    aaron@schuster.net    \N    Mongolia    Kassandraburgh    7242 Samson Lake    59846-1131    Virginia    2016-09-18 10:53:04.249511    2016-10-14 13:03:02.760983        \N    \N    \N    0    \N    \N    \N    \N    female
16946    Gavin    Osinski    claudia_lang@jerde.biz    \N    Gambia    North Claudieberg    5598 Lockman Well    79179-4615    Ohio    2016-08-10 03:52:08.816997    2016-10-14 13:03:02.765603        \N    \N    \N    0    \N    \N    \N    \N    female
16947    Hildegard    Fadel    shakira.torp@gaylordtorp.info    \N    Cyprus    Haroldfurt    532 Lyric Ferry    54565-3809    Colorado    2016-09-22 13:24:59.615899    2016-10-14 13:03:02.770355        \N    \N    \N    0    \N    \N    \N    \N    male
16948    Cathryn    Klein    raina@gerholdlind.co    \N    Burkina Faso    Katelynshire    85526 Gulgowski Estates    82272-7107    Arizona    2016-09-19 06:09:08.047935    2016-10-14 13:03:02.775318        \N    \N    \N    0    \N    \N    \N    \N    female
16949    Rasheed    Pollich    justina@kerlukemante.org    \N    Uzbekistan    Port Adrien    610 Stroman Haven    86013-8015    Illinois    2016-09-11 09:34:38.607496    2016-10-14 13:03:02.781596        \N    \N    \N    0    \N    \N    \N    \N    female
16950    Kaley    Flatley    alexis_miller@bogan.net    \N    Austria    East Allyborough    13833 Kiehn Flat    93923    Montana    2016-07-26 19:24:33.572034    2016-10-14 13:03:02.78944        \N    \N    \N    0    \N    \N    \N    \N    female
16951    Veda    Renner    daren.hagenes@jerdehowe.biz    \N    Swaziland    Lake Mandy    440 Annabel Courts    89803-2423    Maine    2016-09-21 13:24:07.600251    2016-10-14 13:03:02.795303        \N    \N    \N    0    \N    \N    \N    \N    male
16952    Merritt    Tillman    joaquin@little.net    \N    Croatia    Swaniawskistad    30082 Ryleigh Forge    41831    Delaware    2016-07-08 21:55:05.381513    2016-10-14 13:03:02.799963        \N    \N    \N    0    \N    \N    \N    \N    male
16953    Mireille    Parker    ted.dicki@schroeder.net    \N    Egypt    Lake Andreanne    705 Roxane Springs    51796-1045    Idaho    2016-06-29 12:30:05.118929    2016-10-14 13:03:02.804527        \N    \N    \N    0    \N    \N    \N    \N    male
16954    Zion    Russel    joey_cole@romaguerakovacek.co    \N    Tajikistan    New Mckaylashire    17151 Itzel Alley    92893    Hawaii    2016-06-23 12:00:07.212748    2016-10-14 13:03:02.810821        \N    \N    \N    0    \N    \N    \N    \N    male
16955    Johathan    Price    harmony@mohrvolkman.co    \N    Barbados    Zackshire    937 Rau Ramp    97725-4323    Wisconsin    2016-08-28 12:53:06.511227    2016-10-14 13:03:02.815764        \N    \N    \N    0    \N    \N    \N    \N    female
16956    Alysson    Mosciski    janiya@robelmacejkovic.name    \N    Lao People's Democratic Republic    Jaskolskitown    423 Chasity Spurs    17637-0118    South Dakota    2016-07-01 21:47:56.205079    2016-10-14 13:03:02.820479        \N    \N    \N    0    \N    \N    \N    \N    female
16957    Cameron    Wilkinson    jennyfer.gislason@lynch.name    \N    Finland    South Elenora    81290 Hand Curve    47852-2591    Washington    2016-09-18 21:07:53.515959    2016-10-14 13:03:02.825075        \N    \N    \N    0    \N    \N    \N    \N    male
16958    Gladys    Schaefer    teagan@turcotteschinner.net    \N    Angola    Fadelland    900 Quinton Ridge    52095-1798    Texas    2016-07-03 13:53:37.23003    2016-10-14 13:03:02.829649        \N    \N    \N    0    \N    \N    \N    \N    female
16959    Vivienne    Treutel    lowell_friesen@hammesweber.biz    \N    Congo    Gleasonfurt    3548 Charles Mountains    11205    Virginia    2016-07-10 13:20:51.863371    2016-10-14 13:03:02.834689        \N    \N    \N    0    \N    \N    \N    \N    female
16960    Creola    Bradtke    easter@herman.biz    \N    New Caledonia    Lake Rachael    2858 Jonathon Mission    65930-7983    Tennessee    2016-08-20 10:01:25.543446    2016-10-14 13:03:02.839368        \N    \N    \N    0    \N    \N    \N    \N    male
16961    Adolfo    Kirlin    pearline.schulist@schneider.io    \N    Iraq    Bauchstad    1425 Cyril Squares    63381    Tennessee    2016-06-27 13:43:04.203443    2016-10-14 13:03:02.843938        \N    \N    \N    0    \N    \N    \N    \N    female
16962    Ernest    Paucek    charlie@gleichner.com    \N    Lebanon    Marlonside    8319 Trycia Junction    76650    North Dakota    2016-09-27 00:32:50.113447    2016-10-14 13:03:02.848366        \N    \N    \N    0    \N    \N    \N    \N    female
16963    Lance    Bartoletti    riley@robel.name    \N    Sierra Leone    Ortizfurt    134 Amara Pines    32124-1026    Wisconsin    2016-09-07 16:08:06.957427    2016-10-14 13:03:02.85327        \N    \N    \N    0    \N    \N    \N    \N    male
16964    Lela    Ullrich    dorothy@reichelbreitenberg.name    \N    Armenia    South Bulahfort    285 Nienow Drives    62552    Wyoming    2016-07-20 09:00:34.801792    2016-10-14 13:03:02.85792        \N    \N    \N    0    \N    \N    \N    \N    female
16965    Stanford    Dibbert    brenden_maggio@stammmurphy.org    \N    San Marino    South Dylanhaven    9722 Smitham Meadows    88696    Ohio    2016-08-07 00:51:05.59848    2016-10-14 13:03:02.862583        \N    \N    \N    0    \N    \N    \N    \N    male
16966    Arne    Lakin    elya.dubuque@reichert.info    \N    Antigua and Barbuda    Treutelfurt    1945 Tess Stream    34752    Iowa    2016-09-15 12:26:04.817228    2016-10-14 13:03:02.868013        \N    \N    \N    0    \N    \N    \N    \N    male
16967    Zack    Kuhlman    kathlyn.rowe@murazik.co    \N    Greenland    North Jamarcusberg    38462 Ledner Forks    74101-7817    Connecticut    2016-06-26 17:34:02.395926    2016-10-14 13:03:02.87264        \N    \N    \N    0    \N    \N    \N    \N    male
16969    Mathias    Kutch    lue@hudsoncronin.net    \N    Niger    Lehnertown    426 Kaycee Cape    31598    Kansas    2016-09-14 19:19:04.768472    2016-10-14 13:03:02.877045        \N    \N    \N    0    \N    \N    \N    \N    male
16970    Kaleigh    Durgan    claudia@friesen.biz    \N    Qatar    Port Lavon    55970 Abernathy Rue    17858-4112    Illinois    2016-07-31 00:38:03.7706    2016-10-14 13:03:02.881918        \N    \N    \N    0    \N    \N    \N    \N    male
16971    Alvis    Schmidt    breana_cain@abbottschmitt.info    \N    Turks and Caicos Islands    Ronnymouth    20974 Becker Vista    89162-7082    Oklahoma    2016-06-23 20:07:02.064875    2016-10-14 13:03:02.887026        \N    \N    \N    0    \N    \N    \N    \N    female
16972    Spencer    Ankunding    quinn@langoshgraham.com    \N    Egypt    Powlowskiborough    57723 Kuhn Stream    37605-7470    Louisiana    2016-07-17 20:28:52.959067    2016-10-14 13:03:02.893839        \N    \N    \N    0    \N    \N    \N    \N    female
16973    Jodie    Glover    bernadette@rautorphy.name    \N    Philippines    Port Allyport    43409 Dan Mill    80754-6973    California    2016-07-24 11:40:44.876379    2016-10-14 13:03:02.89828        \N    \N    \N    0    \N    \N    \N    \N    male
16974    Orion    Wilderman    price@feest.io    \N    Botswana    South Chanelfurt    1543 Donavon Station    98605-0830    Indiana    2016-07-28 18:01:28.106642    2016-10-14 13:03:02.902825        \N    \N    \N    0    \N    \N    \N    \N    male
16975    Dedric    Schultz    lyda_hodkiewicz@mcdermott.co    \N    Tunisia    Lurachester    325 Frami Junctions    43894-0328    Nevada    2016-07-20 02:12:43.044627    2016-10-14 13:03:02.907193        \N    \N    \N    0    \N    \N    \N    \N    female
16977    Verner    Schuppe    margot@schulist.name    \N    Lebanon    New Jaedenfurt    63783 Karina Manors    72894-1432    Nevada    2016-08-27 03:52:34.282547    2016-10-14 13:03:02.911757        \N    \N    \N    0    \N    \N    \N    \N    male
16978    Jaqueline    Gislason    judd.crist@ebertsporer.io    \N    Cayman Islands    Feeneyhaven    71733 Jonathon Avenue    74871-0677    New Jersey    2016-07-26 06:54:25.388022    2016-10-14 13:03:02.916277        \N    \N    \N    0    \N    \N    \N    \N    female
16979    Christ    Cormier    breanna_waelchi@rohan.name    \N    Switzerland    South Jaleel    3145 Walter Heights    26911-4643    Tennessee    2016-08-08 13:22:53.742042    2016-10-14 13:03:02.92103        \N    \N    \N    0    \N    \N    \N    \N    female
16980    Daphnee    Frami    hildegard@heelwalsh.co    \N    San Marino    Demetrishaven    773 Emmanuel Fords    48930-8223    New Mexico    2016-07-20 08:23:18.13994    2016-10-14 13:03:02.929692        \N    \N    \N    0    \N    \N    \N    \N    female
17220    Allen    Becker    katarina@kutch.info    \N    Luxembourg    North Raina    178 Huels Cliff    39505    Idaho    2016-07-18 12:08:12.795439    2016-10-14 13:03:04.121938        \N    \N    \N    0    \N    \N    \N    \N    female
16981    Armani    Koepp    harvey@lednerwalker.name    \N    Norway    South Mariotown    6081 Alfredo Vista    64619-6732    Utah    2016-06-26 04:44:00.958568    2016-10-14 13:03:02.933865        \N    \N    \N    0    \N    \N    \N    \N    male
16982    Pamela    Pouros    earnest@king.io    \N    New Zealand    Lake Delphia    8209 Kianna Camp    42683    North Dakota    2016-07-21 03:20:39.333267    2016-10-14 13:03:02.938433        \N    \N    \N    0    \N    \N    \N    \N    male
16983    Mohammad    Mraz    eva_turcotte@krishirthe.com    \N    Jordan    Leannonburgh    36007 Monserrate Highway    19498-2926    Nevada    2016-07-17 10:25:49.389363    2016-10-14 13:03:02.942717        \N    \N    \N    0    \N    \N    \N    \N    female
16984    Simeon    Klein    adelia@johnsondickens.org    \N    Afghanistan    Lake Jeannefort    78936 Reina Plains    39756    Washington    2016-07-09 01:38:36.7544    2016-10-14 13:03:02.946817        \N    \N    \N    0    \N    \N    \N    \N    male
16985    Cesar    Cartwright    tristian_brakus@walkerschultz.com    \N    Myanmar    East Emelyberg    236 Sherwood Circle    17221    Maryland    2016-09-22 23:23:45.468261    2016-10-14 13:03:02.951867        \N    \N    \N    0    \N    \N    \N    \N    female
16986    Rosalee    Corkery    lucinda.macejkovic@schroederbernhard.name    \N    Hong Kong    New Grady    6717 Marquardt Islands    53640-9520    Rhode Island    2016-07-03 02:20:52.728179    2016-10-14 13:03:02.956285        \N    \N    \N    0    \N    \N    \N    \N    male
16987    Rocky    Mayert    cameron_waters@kovacek.co    \N    Croatia    East Maurice    450 Daniel Ferry    44159-7847    Ohio    2016-09-11 21:49:28.657904    2016-10-14 13:03:02.960719        \N    \N    \N    0    \N    \N    \N    \N    female
16988    Isabell    Satterfield    frank_langworth@witting.biz    \N    Bangladesh    South Vivahaven    428 Darrion Freeway    89801-3925    South Carolina    2016-08-04 14:34:27.244098    2016-10-14 13:03:02.966027        \N    \N    \N    0    \N    \N    \N    \N    male
16989    Lillian    Wilderman    audra@zemlaklarkin.net    \N    San Marino    North Columbusstad    492 Mann Forges    17331    Michigan    2016-08-27 21:25:54.733416    2016-10-14 13:03:02.971594        \N    \N    \N    0    \N    \N    \N    \N    male
16990    Micah    Kling    rolando_wiegand@mertztillman.io    \N    Kuwait    South Cleta    4895 Genevieve Stream    35678    North Carolina    2016-07-25 11:10:21.27024    2016-10-14 13:03:02.98538        \N    \N    \N    0    \N    \N    \N    \N    female
16991    Jake    Baumbach    kip@bernierklein.info    \N    Denmark    North Breanabury    10227 Arthur Shoal    12820    Massachusetts    2016-08-23 04:46:39.763934    2016-10-14 13:03:02.992096        \N    \N    \N    0    \N    \N    \N    \N    female
16992    Everardo    Boehm    esther_schoen@harberbalistreri.co    \N    Paraguay    Carterside    55431 Hayes Valley    14799-0547    Texas    2016-09-17 15:01:45.773613    2016-10-14 13:03:02.996918        \N    \N    \N    0    \N    \N    \N    \N    female
16993    Joesph    Bartell    jamie_yost@osinski.com    \N    Argentina    Riverfurt    11305 Gerhold Cove    82551    Kentucky    2016-08-18 14:05:38.432268    2016-10-14 13:03:03.001964        \N    \N    \N    0    \N    \N    \N    \N    female
16994    Eladio    Nicolas    isabel.romaguera@cronin.info    \N    Equatorial Guinea    Cadeburgh    70081 Cristal Ports    72768    Mississippi    2016-07-26 04:53:48.309249    2016-10-14 13:03:03.006869        \N    \N    \N    0    \N    \N    \N    \N    male
16995    Stella    White    magnolia@connhickle.name    \N    Uruguay    East Mathewstad    1885 Wyatt Turnpike    32282-4088    New Jersey    2016-07-24 14:19:15.625367    2016-10-14 13:03:03.011623        \N    \N    \N    0    \N    \N    \N    \N    male
16996    Jaquelin    Kutch    antonette@ferry.org    \N    Puerto Rico    Port Reyesbury    851 Connor Meadows    87358-8700    Ohio    2016-09-21 19:00:29.106243    2016-10-14 13:03:03.016358        \N    \N    \N    0    \N    \N    \N    \N    female
16997    Dean    Fay    carolyne@mayer.biz    \N    Panama    East Tyson    2697 Jaylin Center    83508    Massachusetts    2016-08-18 15:30:24.827481    2016-10-14 13:03:03.021246        \N    \N    \N    0    \N    \N    \N    \N    male
16998    Glenna    Von    luciano.satterfield@jerdepfannerstill.biz    \N    Sweden    New Bradenside    226 Kayli Lakes    91502-4912    South Dakota    2016-08-27 20:05:06.536538    2016-10-14 13:03:03.026288        \N    \N    \N    0    \N    \N    \N    \N    female
16999    Lorenz    Bailey    ernie@keebler.name    \N    Sierra Leone    Lorenamouth    85696 Zula Centers    51076    Rhode Island    2016-09-13 23:05:33.422724    2016-10-14 13:03:03.031227        \N    \N    \N    0    \N    \N    \N    \N    female
17000    Napoleon    Rodriguez    santos@kshlerinhane.info    \N    Martinique    Millerland    6300 Alfreda Ports    55998    New Jersey    2016-09-21 16:49:09.450861    2016-10-14 13:03:03.036304        \N    \N    \N    0    \N    \N    \N    \N    female
17001    Katlynn    Kuhlman    keshaun@jacobsonturcotte.name    \N    New Caledonia    Owenside    67779 Wehner Village    13084    Hawaii    2016-08-29 16:56:50.191852    2016-10-14 13:03:03.041855        \N    \N    \N    0    \N    \N    \N    \N    male
17002    Liliana    Nikolaus    karen@bins.io    \N    Brazil    Lake Rosendoside    919 Roob Street    90961-4112    Oregon    2016-09-24 12:22:17.882325    2016-10-14 13:03:03.046947        \N    \N    \N    0    \N    \N    \N    \N    female
17003    Garfield    Lynch    jazlyn@feil.com    \N    Kyrgyz Republic    South Jordyhaven    4426 Webster Loop    60996    New Mexico    2016-07-19 10:38:25.457837    2016-10-14 13:03:03.051778        \N    \N    \N    0    \N    \N    \N    \N    female
17005    Oda    Wilkinson    karianne@robelwiegand.co    \N    Antarctica (the territory South of 60 deg S)    Cornellport    9400 Arno Burgs    88154    Pennsylvania    2016-08-31 05:46:19.068239    2016-10-14 13:03:03.056591        \N    \N    \N    0    \N    \N    \N    \N    male
17006    Maya    Streich    margie@kuhn.biz    \N    Guadeloupe    South Delta    83065 Eusebio Mountain    82851    New Mexico    2016-07-23 08:00:27.615673    2016-10-14 13:03:03.078777        \N    \N    \N    0    \N    \N    \N    \N    male
17007    Jessika    Kessler    garnett@jastbergnaum.org    \N    Christmas Island    Lake Leonard    17943 Pfannerstill Fork    35955    Alaska    2016-07-15 02:47:15.0554    2016-10-14 13:03:03.084298        \N    \N    \N    0    \N    \N    \N    \N    female
17008    Rhoda    Schaden    evert_blanda@maggio.info    \N    Isle of Man    West Darenmouth    65412 Waelchi Stream    69876-9843    Illinois    2016-08-15 22:44:46.289641    2016-10-14 13:03:03.089039        \N    \N    \N    0    \N    \N    \N    \N    male
17009    Arvel    Koch    van_reichert@dicki.biz    \N    Bolivia    Abbieshire    779 Ewald Branch    18900    Florida    2016-06-24 17:36:24.449656    2016-10-14 13:03:03.094        \N    \N    \N    0    \N    \N    \N    \N    male
17010    Lavina    Wolff    maureen@reillytromp.org    \N    Algeria    Alyceshire    851 Hank Extension    53054    Kentucky    2016-06-23 04:25:34.93944    2016-10-14 13:03:03.099984        \N    \N    \N    0    \N    \N    \N    \N    male
17011    Alvah    Davis    troy_jerde@damore.net    \N    Saint Lucia    East Doyleville    84917 Moen Fork    23111-1784    Utah    2016-08-24 14:16:41.702962    2016-10-14 13:03:03.104819        \N    \N    \N    0    \N    \N    \N    \N    female
17012    Ethyl    Moen    breana_crona@wiza.name    \N    Jersey    Naderhaven    2109 Strosin Passage    87098    Massachusetts    2016-08-18 01:57:01.384194    2016-10-14 13:03:03.109774        \N    \N    \N    0    \N    \N    \N    \N    male
17013    Nona    Sipes    luciano.marvin@shields.co    \N    Saudi Arabia    North Buster    33240 Erwin Springs    60296    Illinois    2016-08-29 01:01:04.665365    2016-10-14 13:03:03.114733        \N    \N    \N    0    \N    \N    \N    \N    male
17014    Blanca    Shanahan    jaycee@durgan.name    \N    India    Lake Emmanuelle    22250 Tyreek Summit    22312    Idaho    2016-08-28 03:28:12.927307    2016-10-14 13:03:03.119439        \N    \N    \N    0    \N    \N    \N    \N    male
17015    Murphy    Ebert    herminia_haag@mueller.io    \N    Poland    Treverstad    54061 Raymundo Point    67295-4444    Texas    2016-08-07 06:27:34.236512    2016-10-14 13:03:03.125605        \N    \N    \N    0    \N    \N    \N    \N    male
17016    Annabelle    Champlin    ed_damore@bashiriankertzmann.co    \N    Gibraltar    South Brielle    983 Dicki Cove    27158    North Carolina    2016-07-05 09:10:29.617469    2016-10-14 13:03:03.130464        \N    \N    \N    0    \N    \N    \N    \N    male
17017    Bobbie    Botsford    nichole@bayer.co    \N    El Salvador    North Denamouth    20817 Gerson Land    69973-1775    Minnesota    2016-09-28 22:15:06.902415    2016-10-14 13:03:03.138459        \N    \N    \N    0    \N    \N    \N    \N    female
17018    Blanca    Cronin    kurtis_corwin@friesenarmstrong.biz    \N    Jordan    North Bernhard    27142 Bogan Mission    55692    Colorado    2016-08-06 13:31:18.05903    2016-10-14 13:03:03.144117        \N    \N    \N    0    \N    \N    \N    \N    male
17019    Remington    Gorczany    nona@borer.com    \N    Chile    West Maurine    9770 Rice Trace    83577    New Hampshire    2016-09-11 23:29:40.888988    2016-10-14 13:03:03.148519        \N    \N    \N    0    \N    \N    \N    \N    female
17020    Christophe    Halvorson    kailee@heidenreich.name    \N    Cote d'Ivoire    New Teagantown    8274 Nolan Overpass    25975    Wisconsin    2016-07-04 04:48:45.312312    2016-10-14 13:03:03.153201        \N    \N    \N    0    \N    \N    \N    \N    male
17021    Jacinthe    Crona    jannie_daugherty@collinskunde.co    \N    American Samoa    Xavierburgh    2768 Konopelski Tunnel    83187    West Virginia    2016-07-30 15:48:12.933871    2016-10-14 13:03:03.157741        \N    \N    \N    0    \N    \N    \N    \N    female
17023    Macie    Sauer    jamarcus.vandervort@mclaughlin.net    \N    Guyana    Port Brandtside    8851 Bergnaum Terrace    78759-0061    North Carolina    2016-08-04 08:20:40.105649    2016-10-14 13:03:03.16218        \N    \N    \N    0    \N    \N    \N    \N    male
17024    Hubert    Boyle    camden_mante@gottlieb.io    \N    Montenegro    Hayesburgh    7947 Leffler Mountain    55540    South Carolina    2016-07-02 17:26:01.368014    2016-10-14 13:03:03.166918        \N    \N    \N    0    \N    \N    \N    \N    male
17025    Casandra    Wolff    anabel@keeling.org    \N    Jordan    New Ahmed    43956 Sasha Forks    65829-2026    New Mexico    2016-07-14 20:33:59.895807    2016-10-14 13:03:03.179899        \N    \N    \N    0    \N    \N    \N    \N    male
17026    Deon    Jaskolski    bonita_fritsch@robel.net    \N    Cook Islands    East Marilouland    9954 Huels Circle    45463    Virginia    2016-07-18 08:15:45.505756    2016-10-14 13:03:03.189996        \N    \N    \N    0    \N    \N    \N    \N    female
17027    Althea    Leffler    crawford@jastabbott.name    \N    United Arab Emirates    Lake Danyka    364 Wuckert Canyon    12545    West Virginia    2016-09-25 16:05:56.768255    2016-10-14 13:03:03.195195        \N    \N    \N    0    \N    \N    \N    \N    female
17028    Leda    Powlowski    edwardo@pacocha.biz    \N    Solomon Islands    Darrinfort    4889 Gleichner Wells    24173-6604    Texas    2016-08-21 01:57:05.746853    2016-10-14 13:03:03.200393        \N    \N    \N    0    \N    \N    \N    \N    male
17029    Gene    Sanford    skyla@schulist.org    \N    Northern Mariana Islands    Peggiestad    77905 Brittany Spur    56703    Alaska    2016-07-29 17:14:58.078358    2016-10-14 13:03:03.208784        \N    \N    \N    0    \N    \N    \N    \N    female
17030    Christine    Turcotte    keegan_schoen@willms.biz    \N    Israel    New Bobby    1036 Emard Hill    50870    Michigan    2016-09-27 06:16:20.117932    2016-10-14 13:03:03.214486        \N    \N    \N    0    \N    \N    \N    \N    male
17031    Taylor    Balistreri    velma.sawayn@harriskreiger.name    \N    Australia    Josefinashire    605 Cartwright Crossing    39989    Connecticut    2016-08-26 12:27:30.542141    2016-10-14 13:03:03.219626        \N    \N    \N    0    \N    \N    \N    \N    male
17032    Amos    Klein    creola_green@oberbrunnermclaughlin.com    \N    Guam    Lake Aliyamouth    503 Moses Loaf    63202    Rhode Island    2016-07-02 18:15:02.348657    2016-10-14 13:03:03.224192        \N    \N    \N    0    \N    \N    \N    \N    male
17033    Erwin    Schaden    verna_macejkovic@strackenicolas.name    \N    Greenland    New Jairoberg    3534 Gutkowski Well    56439-3602    Missouri    2016-07-30 12:17:39.562934    2016-10-14 13:03:03.228589        \N    \N    \N    0    \N    \N    \N    \N    female
17034    Bonita    Medhurst    unique_kunze@marks.info    \N    Burundi    West Rebekashire    9820 Koss Hill    50668    South Dakota    2016-08-15 13:42:25.359323    2016-10-14 13:03:03.233255        \N    \N    \N    0    \N    \N    \N    \N    female
17035    Nathanial    Dibbert    charlotte@langosh.name    \N    Cyprus    Kihnland    17317 Walker Squares    26097    Oklahoma    2016-08-31 08:35:41.036207    2016-10-14 13:03:03.237544        \N    \N    \N    0    \N    \N    \N    \N    male
17036    Sylvester    Hane    isabelle@farrell.net    \N    Cocos (Keeling) Islands    Port Mertieborough    277 Mckenna Curve    14380-7014    South Carolina    2016-08-12 22:37:21.25377    2016-10-14 13:03:03.242547        \N    \N    \N    0    \N    \N    \N    \N    male
17037    Fabian    Wolff    ferne@reingerbechtelar.info    \N    Turks and Caicos Islands    Wardside    88369 Jett Court    52835-0579    Florida    2016-07-27 15:14:59.573261    2016-10-14 13:03:03.247194        \N    \N    \N    0    \N    \N    \N    \N    female
17038    River    Bartell    wendy@murphy.org    \N    Guinea    South Marianaport    3638 Reichel Springs    50329-5612    Utah    2016-08-09 08:49:32.591639    2016-10-14 13:03:03.252131        \N    \N    \N    0    \N    \N    \N    \N    female
17039    Hortense    Koepp    tom_fadel@gaylord.net    \N    Saint Martin    Royton    5398 Hartmann Trafficway    48712    Indiana    2016-07-25 00:30:10.353435    2016-10-14 13:03:03.256928        \N    \N    \N    0    \N    \N    \N    \N    male
17041    Agustina    Willms    dax_stoltenberg@abshiregibson.net    \N    El Salvador    Emardbury    10461 Ola Cliffs    80353-9401    Virginia    2016-08-05 21:24:31.018587    2016-10-14 13:03:03.272448        \N    \N    \N    0    \N    \N    \N    \N    female
17042    Cletus    Kovacek    brisa.mosciski@spencer.info    \N    Cameroon    South Georgiannafurt    47352 Fletcher Heights    41636    New Jersey    2016-08-25 20:35:28.465505    2016-10-14 13:03:03.277754        \N    \N    \N    0    \N    \N    \N    \N    male
17043    Brian    Anderson    sienna_marks@ohara.com    \N    Ethiopia    East Elviechester    165 Carroll Lakes    49362    New Jersey    2016-07-08 15:21:45.032629    2016-10-14 13:03:03.282523        \N    \N    \N    0    \N    \N    \N    \N    male
17044    Elda    Greenfelder    meda@labadie.net    \N    Costa Rica    East Art    10409 Abbie Rest    54868    Montana    2016-07-27 22:41:43.110568    2016-10-14 13:03:03.289921        \N    \N    \N    0    \N    \N    \N    \N    female
17045    Shea    Witting    brady_collins@jenkins.name    \N    United Arab Emirates    Port Kade    7502 Julius Cliff    72910    South Dakota    2016-07-05 14:39:25.447715    2016-10-14 13:03:03.297439        \N    \N    \N    0    \N    \N    \N    \N    male
17046    Dereck    Kirlin    nya@kozey.io    \N    Mongolia    Mariettaview    47858 Smith Hills    89022-5252    West Virginia    2016-06-29 07:34:56.459205    2016-10-14 13:03:03.30327        \N    \N    \N    0    \N    \N    \N    \N    female
17047    Bernita    Osinski    nicholaus@bode.org    \N    Greece    Jacobsonview    6578 Della Trail    54671    New Mexico    2016-08-20 06:12:58.244808    2016-10-14 13:03:03.312749        \N    \N    \N    0    \N    \N    \N    \N    female
17048    Pascale    Pacocha    trudie@pacocha.io    \N    Solomon Islands    Margueriteshire    677 Hackett Square    67369-7889    New York    2016-07-22 05:22:28.819662    2016-10-14 13:03:03.319525        \N    \N    \N    0    \N    \N    \N    \N    male
17050    Graciela    Ziemann    maxine_leffler@wuckertlemke.co    \N    Ethiopia    Marionstad    40099 Hobart Stream    33570-7812    West Virginia    2016-07-05 10:44:47.813856    2016-10-14 13:03:03.324049        \N    \N    \N    0    \N    \N    \N    \N    male
17051    Marilie    Gislason    margarett@feeney.name    \N    Norway    Brookstown    408 Caroline Spur    15754-2661    Alabama    2016-07-14 16:21:26.551342    2016-10-14 13:03:03.329356        \N    \N    \N    0    \N    \N    \N    \N    male
17052    Stefanie    Skiles    domingo@cummeratarosenbaum.com    \N    Burundi    South Rodolfomouth    385 Rippin Shore    90231    Minnesota    2016-07-29 02:08:43.597016    2016-10-14 13:03:03.334577        \N    \N    \N    0    \N    \N    \N    \N    female
17053    Lessie    Johns    elwyn.hirthe@veum.co    \N    Togo    Schaeferstad    7969 Koepp Light    97332-7487    Michigan    2016-08-12 09:07:53.957787    2016-10-14 13:03:03.339041        \N    \N    \N    0    \N    \N    \N    \N    female
17054    Florence    VonRueden    marc_west@weinat.co    \N    Benin    New Nash    2978 Collins Islands    29571    Nebraska    2016-06-22 23:44:08.000058    2016-10-14 13:03:03.343147        \N    \N    \N    0    \N    \N    \N    \N    female
17055    Davon    Walsh    arnoldo@lowe.co    \N    Guinea    Kreigerhaven    465 Gay Pine    45501    Maryland    2016-09-05 12:42:30.998686    2016-10-14 13:03:03.347626        \N    \N    \N    0    \N    \N    \N    \N    male
17056    Kasandra    McLaughlin    coby@kleinkihn.info    \N    Grenada    Hilllstad    55341 Lakin Station    95472-7153    New Hampshire    2016-09-24 11:10:21.193266    2016-10-14 13:03:03.352111        \N    \N    \N    0    \N    \N    \N    \N    female
17057    Llewellyn    Doyle    therese@deckow.net    \N    Serbia    New Earnestineview    13016 Kaden Isle    99154    Wisconsin    2016-07-12 05:43:32.802545    2016-10-14 13:03:03.356628        \N    \N    \N    0    \N    \N    \N    \N    female
17058    Marshall    Goyette    sim.nader@ledner.com    \N    Andorra    West Kariane    553 Crooks Causeway    96571    New York    2016-08-17 13:15:55.081956    2016-10-14 13:03:03.360813        \N    \N    \N    0    \N    \N    \N    \N    female
17059    Mose    Gulgowski    chanelle_koelpin@dietrich.info    \N    Iraq    Murazikstad    3099 Cruz Stravenue    14457    Texas    2016-07-20 07:09:54.105853    2016-10-14 13:03:03.365312        \N    \N    \N    0    \N    \N    \N    \N    male
17060    Beaulah    Kshlerin    dudley@kohler.net    \N    Algeria    New Victoria    299 Alvina Throughway    24559    Maryland    2016-07-29 19:37:33.870608    2016-10-14 13:03:03.370205        \N    \N    \N    0    \N    \N    \N    \N    female
17061    Luciano    Schmidt    angelo_block@dickens.co    \N    Egypt    Arielleview    1543 Haag Fall    44453-6214    Arizona    2016-08-27 11:29:54.469965    2016-10-14 13:03:03.377931        \N    \N    \N    0    \N    \N    \N    \N    female
17063    Jamar    Nader    kelly@wintheiser.name    \N    Cameroon    New Brian    74250 Bradley Parks    98769    Pennsylvania    2016-08-27 03:22:49.504102    2016-10-14 13:03:03.38753        \N    \N    \N    0    \N    \N    \N    \N    female
17064    Phyllis    Rogahn    juana@wisozk.info    \N    Saint Martin    West Jeffereyhaven    10226 Schimmel Tunnel    36021    Arkansas    2016-08-26 14:06:52.738629    2016-10-14 13:03:03.395588        \N    \N    \N    0    \N    \N    \N    \N    male
17065    Alexandrea    Casper    jose@uptonlubowitz.net    \N    Moldova    Oberbrunnerport    8512 Breanne Fort    13940-7688    Illinois    2016-06-29 17:57:38.352342    2016-10-14 13:03:03.403608        \N    \N    \N    0    \N    \N    \N    \N    male
17066    Darwin    Lowe    geraldine@gerholdhudson.com    \N    Malawi    Goldaside    76593 Stamm Keys    14944    New Hampshire    2016-06-25 08:56:33.859008    2016-10-14 13:03:03.410435        \N    \N    \N    0    \N    \N    \N    \N    male
17067    Tamia    Sipes    arthur@swift.org    \N    Chile    Willaland    3271 Quitzon Prairie    24731    Alabama    2016-08-04 22:04:45.95053    2016-10-14 13:03:03.416641        \N    \N    \N    0    \N    \N    \N    \N    male
17068    Alivia    Wilderman    angie.breitenberg@creminkulas.name    \N    Holy See (Vatican City State)    New Brooksfurt    29509 Mckenna Passage    19188    Kentucky    2016-07-04 13:34:03.428305    2016-10-14 13:03:03.42149        \N    \N    \N    0    \N    \N    \N    \N    male
17069    Madaline    Jakubowski    claire_osinski@grady.info    \N    Saint Martin    South Owenmouth    88155 Renee Turnpike    42146-3882    Alabama    2016-09-13 09:37:27.482448    2016-10-14 13:03:03.426265        \N    \N    \N    0    \N    \N    \N    \N    male
17071    Reece    Harber    thelma_wisoky@doyleframi.info    \N    Mexico    New Guillermo    320 Dach Tunnel    67744-6493    Wisconsin    2016-09-20 06:06:44.361259    2016-10-14 13:03:03.431025        \N    \N    \N    0    \N    \N    \N    \N    male
17072    Priscilla    Jacobs    vladimir.windler@mayerspinka.org    \N    Taiwan    Jaclynmouth    350 Lockman Mission    29305    Virginia    2016-08-27 03:09:20.361953    2016-10-14 13:03:03.435927        \N    \N    \N    0    \N    \N    \N    \N    female
17073    Alphonso    Hahn    jairo@jacobsauer.net    \N    Palau    Port Valentinhaven    48770 Orn Lodge    66593    Maryland    2016-09-08 10:38:08.140894    2016-10-14 13:03:03.441482        \N    \N    \N    0    \N    \N    \N    \N    female
17074    Silas    Prosacco    dina@kautzer.org    \N    Australia    Hermistonmouth    2685 Pearlie Wells    76690    North Dakota    2016-07-29 04:39:30.429751    2016-10-14 13:03:03.447533        \N    \N    \N    0    \N    \N    \N    \N    female
17075    Breanna    Fay    ursula@reingerschowalter.org    \N    Namibia    Blandaburgh    16177 Wyatt Bypass    43211-0378    Idaho    2016-09-09 11:08:58.19614    2016-10-14 13:03:03.452433        \N    \N    \N    0    \N    \N    \N    \N    female
17076    Claudie    Leuschke    rosemarie_frami@runolfoncrist.com    \N    Lesotho    Lake Darianport    90433 Ruecker Cove    38506    Rhode Island    2016-06-30 07:22:34.290396    2016-10-14 13:03:03.458471        \N    \N    \N    0    \N    \N    \N    \N    female
17078    Joannie    Lueilwitz    cynthia.murazik@anderson.com    \N    Dominica    Yvonneview    5502 Howe Groves    96544-5835    Maryland    2016-08-18 01:49:55.910814    2016-10-14 13:03:03.463339        \N    \N    \N    0    \N    \N    \N    \N    male
17080    Duncan    Christiansen    leie.weimann@hayes.com    \N    Democratic People's Republic of Korea    Lake Jailyn    674 Prosacco Inlet    98097    Texas    2016-08-18 22:35:01.397237    2016-10-14 13:03:03.476103        \N    \N    \N    0    \N    \N    \N    \N    male
17083    Santina    Okuneva    antone@goldner.com    \N    Marshall Islands    Sanfordberg    98013 Myrl Trace    75446    Louisiana    2016-09-05 20:10:37.341035    2016-10-14 13:03:03.490932        \N    \N    \N    0    \N    \N    \N    \N    female
17084    Nettie    Hoppe    hershel_goldner@grimesheaney.io    \N    Greece    Nicolasland    489 Kristofer Knoll    90664-8778    Mississippi    2016-07-14 05:57:16.526528    2016-10-14 13:03:03.495498        \N    \N    \N    0    \N    \N    \N    \N    male
17085    Beatrice    Schiller    alexie.nicolas@gutkowskibeer.co    \N    Taiwan    North Marie    1714 Leora Cliff    35194-4799    Nevada    2016-07-04 13:35:11.651989    2016-10-14 13:03:03.499956        \N    \N    \N    0    \N    \N    \N    \N    male
17086    Raheem    Farrell    cordia_schultz@boganpfeffer.org    \N    Argentina    South Delilahville    94024 Schroeder Key    80119-5424    Maryland    2016-07-23 18:40:59.553088    2016-10-14 13:03:03.50611        \N    \N    \N    0    \N    \N    \N    \N    female
17087    Cary    Boyle    stephanie@spinka.co    \N    Saint Vincent and the Grenadines    New Ramiro    310 Harber Villages    71678-4621    Nebraska    2016-07-05 23:57:03.457074    2016-10-14 13:03:03.510391        \N    \N    \N    0    \N    \N    \N    \N    female
17088    Meggie    Gaylord    trea_balistreri@lueilwitz.biz    \N    Estonia    North Casperfurt    2144 Corine Lodge    55723    New Jersey    2016-07-31 19:37:04.462177    2016-10-14 13:03:03.515456        \N    \N    \N    0    \N    \N    \N    \N    female
17089    Mandy    Durgan    kirstin.jenkins@dickinsongerlach.com    \N    Cote d'Ivoire    West Jacky    622 Gutmann Valleys    24615    New Jersey    2016-08-28 03:02:26.659096    2016-10-14 13:03:03.520675        \N    \N    \N    0    \N    \N    \N    \N    female
17090    Arlie    Becker    levi.mertz@daugherty.org    \N    Iran    Blaisemouth    51494 Herbert Extension    36136-2552    Indiana    2016-09-05 19:35:23.84584    2016-10-14 13:03:03.525176        \N    \N    \N    0    \N    \N    \N    \N    male
17091    Stewart    McKenzie    timmy.klein@langworthankunding.name    \N    Marshall Islands    Abshireville    77746 Evert Springs    34705    South Carolina    2016-06-29 12:27:06.490544    2016-10-14 13:03:03.529955        \N    \N    \N    0    \N    \N    \N    \N    male
17092    Roscoe    Lynch    jamal@hilll.info    \N    Nicaragua    Joannytown    85487 Carolyn Trace    15480-0907    Minnesota    2016-07-29 12:22:53.394634    2016-10-14 13:03:03.53423        \N    \N    \N    0    \N    \N    \N    \N    female
17093    Bailey    Fisher    yadira.macgyver@mcglynnprohaska.co    \N    Mexico    New Emmaleebury    21189 Jones Skyway    40339-6084    Wisconsin    2016-09-16 02:39:21.227898    2016-10-14 13:03:03.538771        \N    \N    \N    0    \N    \N    \N    \N    male
17094    Danika    Gottlieb    marisol_haag@binsbotsford.com    \N    Denmark    East Marta    19257 Douglas Fork    78608-8771    Minnesota    2016-08-06 02:46:51.872553    2016-10-14 13:03:03.543632        \N    \N    \N    0    \N    \N    \N    \N    male
17095    Xzavier    Ortiz    victoria.shanahan@pollichpredovic.info    \N    Sudan    Schmittfurt    622 Barrett Rapid    39876    Illinois    2016-08-24 15:08:30.528232    2016-10-14 13:03:03.548342        \N    \N    \N    0    \N    \N    \N    \N    female
17096    Maria    Langosh    della@williamson.net    \N    United States Minor Outlying Islands    Gorczanyside    277 Mireya Plain    36111    Minnesota    2016-08-26 05:56:58.521186    2016-10-14 13:03:03.552368        \N    \N    \N    0    \N    \N    \N    \N    male
17097    Taylor    Waelchi    madelyn@jacobiromaguera.co    \N    American Samoa    Eichmannville    4337 Kuhic Falls    71376-7772    California    2016-09-13 06:57:16.481931    2016-10-14 13:03:03.557101        \N    \N    \N    0    \N    \N    \N    \N    male
17098    Pamela    Carter    alexandra_moore@paucek.com    \N    Papua New Guinea    South Brookeview    1948 Stehr Plain    57269-9355    Oregon    2016-08-01 10:43:18.008077    2016-10-14 13:03:03.561629        \N    \N    \N    0    \N    \N    \N    \N    male
17099    Harold    Leannon    carey_pollich@marquardtkautzer.io    \N    Benin    North Grover    871 Ferry Vista    90723-0217    Idaho    2016-09-25 03:12:06.830166    2016-10-14 13:03:03.570277        \N    \N    \N    0    \N    \N    \N    \N    female
17100    Josephine    Kunze    sydni@millerwaters.biz    \N    Tajikistan    North Dougtown    3672 Beahan Green    49416-0248    Illinois    2016-08-31 00:50:51.028229    2016-10-14 13:03:03.576274        \N    \N    \N    0    \N    \N    \N    \N    male
17101    Benny    Labadie    shaina@franeckiprohaska.co    \N    Benin    Purdyburgh    8852 Kunze Neck    53010    Kentucky    2016-09-12 18:15:52.633884    2016-10-14 13:03:03.580586        \N    \N    \N    0    \N    \N    \N    \N    male
17102    Ashleigh    Prohaska    grover@mueller.com    \N    Sri Lanka    South Angela    366 Laron Roads    65936-2372    Georgia    2016-08-14 15:58:33.86318    2016-10-14 13:03:03.584857        \N    \N    \N    0    \N    \N    \N    \N    female
17103    Velma    Becker    gregg_abbott@kuphal.com    \N    Lesotho    Janaeberg    29201 Deja Rue    18411    Arizona    2016-08-21 20:28:56.177182    2016-10-14 13:03:03.5889        \N    \N    \N    0    \N    \N    \N    \N    female
17104    Luigi    Beatty    betsy.pfannerstill@hammesbrown.name    \N    United States of America    Port Orionport    77814 Bergnaum Row    73604-4719    Hawaii    2016-07-17 01:47:22.825854    2016-10-14 13:03:03.592984        \N    \N    \N    0    \N    \N    \N    \N    male
17105    Estella    Marvin    rex@abshireemard.co    \N    Ireland    Dickenstown    2919 Santa Mission    97631    Massachusetts    2016-08-07 23:45:37.055345    2016-10-14 13:03:03.598302        \N    \N    \N    0    \N    \N    \N    \N    female
17106    Adell    Corwin    marco@miller.io    \N    Belize    Nikolauston    98515 Kautzer Drives    20316    New Hampshire    2016-07-05 06:19:08.189873    2016-10-14 13:03:03.603786        \N    \N    \N    0    \N    \N    \N    \N    female
17107    Rosalee    VonRueden    nestor@hartmanndavis.biz    \N    Sao Tome and Principe    North Terrellfort    123 McCullough Crescent    28441-6798    Hawaii    2016-09-11 18:18:25.760346    2016-10-14 13:03:03.61333        \N    \N    \N    0    \N    \N    \N    \N    male
17108    Annamarie    Reichert    krystel@heaneyconnelly.net    \N    Morocco    Luettgenburgh    2788 Pfeffer Islands    97243    North Dakota    2016-07-22 23:29:13.259632    2016-10-14 13:03:03.618223        \N    \N    \N    0    \N    \N    \N    \N    female
17109    Marilyne    Rutherford    haan_corwin@moriette.name    \N    Saudi Arabia    East Kimstad    41294 Taya Mountains    10908    North Carolina    2016-09-28 10:27:16.374443    2016-10-14 13:03:03.622617        \N    \N    \N    0    \N    \N    \N    \N    male
17110    Carole    Leuschke    jaida@heidenreichokon.co    \N    Nepal    Lake Adele    37506 Dulce Overpass    23384    Indiana    2016-08-05 15:54:56.564264    2016-10-14 13:03:03.62678        \N    \N    \N    0    \N    \N    \N    \N    male
17111    Nelda    Labadie    colten@okuneva.com    \N    French Southern Territories    Port Raphael    732 Raynor Park    72829    Nevada    2016-09-20 22:36:59.516798    2016-10-14 13:03:03.631808        \N    \N    \N    0    \N    \N    \N    \N    male
17112    Tremaine    Rodriguez    braulio@grant.io    \N    Somalia    South Hesterside    6086 Ward Villages    83124-1413    Washington    2016-09-23 16:18:36.154138    2016-10-14 13:03:03.636584        \N    \N    \N    0    \N    \N    \N    \N    female
17113    Olga    Hansen    loy@koepp.info    \N    Falkland Islands (Malvinas)    East Magnolia    637 Norris Inlet    49288-7102    Oregon    2016-09-16 10:26:12.67632    2016-10-14 13:03:03.642456        \N    \N    \N    0    \N    \N    \N    \N    male
16029    Emil    Reichert    watson@parisian.biz    \N    Nepal    Port Bradlyview    2360 Fay Tunnel    65463    Georgia    2016-09-05 10:31:12.826355    2016-10-14 13:03:03.648919        \N    \N    \N    0    \N    \N    \N    \N    male
17114    Scarlett    Nienow    ilene_hilll@feest.biz    \N    United States Minor Outlying Islands    South Darwin    5299 Rath Fords    33894-7401    New York    2016-07-13 04:17:59.62002    2016-10-14 13:03:03.655944        \N    \N    \N    0    \N    \N    \N    \N    male
17115    Clementina    Bogan    guido_larkin@weber.name    \N    Finland    Blandastad    894 Lavinia Ports    88810    Kansas    2016-08-24 09:48:20.719061    2016-10-14 13:03:03.660569        \N    \N    \N    0    \N    \N    \N    \N    female
17116    Abdullah    Kulas    abraham@schmitt.name    \N    Falkland Islands (Malvinas)    Tanyabury    6739 Nitzsche Mountain    30920    Kentucky    2016-08-15 03:30:46.467226    2016-10-14 13:03:03.664796        \N    \N    \N    0    \N    \N    \N    \N    female
17117    Tyrel    Shanahan    jeie.king@deckow.com    \N    Tanzania    Joesphmouth    69582 Abbott Locks    70994-6405    North Dakota    2016-08-29 03:45:15.609959    2016-10-14 13:03:03.669765        \N    \N    \N    0    \N    \N    \N    \N    female
18315    Sigmund    Senger    elinor.carroll@kirlin.co    \N    Iraq    Myaport    507 Becker Mount    57875    Alabama    2016-07-15 23:04:20.424823    2016-10-14 13:03:03.674131        \N    \N    \N    0    \N    \N    \N    \N    female
17118    Emmett    Torp    jaycee@moen.co    \N    Faroe Islands    West Lutherchester    32967 Theodore Plaza    21155-8872    Ohio    2016-09-14 03:31:48.133741    2016-10-14 13:03:03.678454        \N    \N    \N    0    \N    \N    \N    \N    female
17119    Domenica    Olson    eveline.green@kemmer.name    \N    Congo    South Kara    4624 Cleta Lights    63146    Wyoming    2016-07-24 07:16:38.095862    2016-10-14 13:03:03.687613        \N    \N    \N    0    \N    \N    \N    \N    male
17120    Issac    Nienow    jaden.barton@collier.info    \N    Andorra    Jettieport    979 Terry Rapid    43063-7176    Washington    2016-07-02 23:51:46.90179    2016-10-14 13:03:03.692668        \N    \N    \N    0    \N    \N    \N    \N    male
17121    Hettie    Kovacek    johann@wintheiserlarson.org    \N    Togo    Waltershire    82677 Willms Island    77533-5970    New York    2016-07-11 12:21:31.012679    2016-10-14 13:03:03.699918        \N    \N    \N    0    \N    \N    \N    \N    male
17122    Eula    Mills    jennings.okeefe@schaden.info    \N    Heard Island and McDonald Islands    Coreneside    3010 Reynolds Crest    18614    Idaho    2016-08-10 10:45:53.647166    2016-10-14 13:03:03.705406        \N    \N    \N    0    \N    \N    \N    \N    male
17123    Julia    Stamm    ernestine@armstronglesch.com    \N    American Samoa    Jimmyport    3839 Sheridan Mountains    51453    Rhode Island    2016-08-26 21:38:02.442098    2016-10-14 13:03:03.70985        \N    \N    \N    0    \N    \N    \N    \N    male
17124    Elmira    Wehner    harry@grahamhowe.io    \N    Saint Kitts and Nevis    Lake Felipa    46067 Karson Plaza    80341    Rhode Island    2016-07-21 14:47:59.473396    2016-10-14 13:03:03.714171        \N    \N    \N    0    \N    \N    \N    \N    female
17125    Clyde    Lowe    caroline@weber.name    \N    Bhutan    Isabellshire    608 Jocelyn Street    38804-3333    Montana    2016-09-28 10:17:43.106449    2016-10-14 13:03:03.719157        \N    \N    \N    0    \N    \N    \N    \N    male
17126    Noelia    Wilkinson    ayden.rogahn@gerholdfahey.io    \N    Republic of Korea    Kleinland    940 Carmella Shore    47877    Virginia    2016-09-06 19:03:22.536208    2016-10-14 13:03:03.724159        \N    \N    \N    0    \N    \N    \N    \N    male
17127    Winnifred    Strosin    audreanne@johnston.com    \N    Romania    New Theo    16282 Edd Neck    12170-8108    Oklahoma    2016-09-06 12:42:07.04261    2016-10-14 13:03:03.728739        \N    \N    \N    0    \N    \N    \N    \N    male
17128    Cesar    Torp    orland@hilllkeeling.com    \N    Haiti    Erickside    48160 Jailyn Loaf    86276    Iowa    2016-07-10 02:25:55.185989    2016-10-14 13:03:03.733283        \N    \N    \N    0    \N    \N    \N    \N    male
17129    Major    Spencer    marlene.pouros@handquitzon.io    \N    Republic of Korea    Port Harley    4137 Ava Oval    13084-7497    Texas    2016-08-28 15:35:44.46605    2016-10-14 13:03:03.737546        \N    \N    \N    0    \N    \N    \N    \N    female
17130    Anika    Sawayn    juliet@powlowski.io    \N    Niue    Dudleyhaven    1309 Madie Knoll    65672    Nevada    2016-07-26 14:29:11.590076    2016-10-14 13:03:03.741939        \N    \N    \N    0    \N    \N    \N    \N    female
17131    Dennis    Schumm    josh@kingvolkman.io    \N    Finland    East Crawford    831 Gleason Turnpike    78799-8292    Hawaii    2016-07-21 20:05:51.926559    2016-10-14 13:03:03.745833        \N    \N    \N    0    \N    \N    \N    \N    female
17132    Lorenzo    Bartoletti    hilda_koepp@brekke.name    \N    Mauritius    West Camylle    494 Clinton Cove    91883    South Carolina    2016-07-09 05:54:47.478695    2016-10-14 13:03:03.74998        \N    \N    \N    0    \N    \N    \N    \N    female
17133    Marisol    Johns    catherine.tremblay@mannrodriguez.net    \N    Tunisia    West Clarabelle    528 August Brooks    66739    New Jersey    2016-08-26 18:14:46.415845    2016-10-14 13:03:03.75403        \N    \N    \N    0    \N    \N    \N    \N    male
17134    Daniela    Lind    calista.champlin@lakinhilll.io    \N    Singapore    Reinholdbury    6085 Mills Expressway    53707-1717    North Dakota    2016-09-12 07:27:06.40643    2016-10-14 13:03:03.758528        \N    \N    \N    0    \N    \N    \N    \N    female
17135    Lottie    Howe    evan@jaskolski.co    \N    Mali    New Armani    809 Leland Place    95283    New York    2016-09-22 01:44:44.274238    2016-10-14 13:03:03.76259        \N    \N    \N    0    \N    \N    \N    \N    female
17136    Tatum    Watsica    alta.muller@wyman.net    \N    Lesotho    East Ulices    1276 Batz Grove    42156-2562    Louisiana    2016-07-11 17:04:37.90087    2016-10-14 13:03:03.766795        \N    \N    \N    0    \N    \N    \N    \N    female
17137    Abagail    Smitham    kevon_ledner@beahan.io    \N    Guatemala    New Nolan    12556 Harvey Plaza    94273-2459    Wyoming    2016-07-07 09:28:41.144853    2016-10-14 13:03:03.770742        \N    \N    \N    0    \N    \N    \N    \N    female
17138    Amos    Lowe    isadore_kuvalis@koelpin.com    \N    Iceland    Schoenhaven    988 Gislason Meadow    27532    South Dakota    2016-09-01 18:37:45.135259    2016-10-14 13:03:03.774756        \N    \N    \N    0    \N    \N    \N    \N    male
17139    Forrest    Lebsack    noe@langworth.com    \N    Tunisia    Lake Beryl    55647 Gislason Springs    99741    Idaho    2016-09-19 18:48:14.798335    2016-10-14 13:03:03.779484        \N    \N    \N    0    \N    \N    \N    \N    female
17140    Monty    Mayer    paula@dicki.org    \N    Papua New Guinea    Anitahaven    3727 Enola Inlet    12254-0857    Nevada    2016-06-26 00:38:56.433098    2016-10-14 13:03:03.784224        \N    \N    \N    0    \N    \N    \N    \N    male
17141    Jordi    Stracke    filiberto_ritchie@langworth.name    \N    Saint Helena    South Melissa    8410 Grant Village    30559    Washington    2016-07-20 23:38:48.623576    2016-10-14 13:03:03.788852        \N    \N    \N    0    \N    \N    \N    \N    male
17142    Barney    Ankunding    halle.bergstrom@bosco.com    \N    Mayotte    West Emmet    547 Rippin Harbors    81376    Virginia    2016-07-24 04:15:35.763847    2016-10-14 13:03:03.793057        \N    \N    \N    0    \N    \N    \N    \N    female
17143    Tracey    Kuhic    declan.hane@cormier.io    \N    Mozambique    West Caitlyn    6977 Okuneva Centers    92500    Utah    2016-07-22 08:04:09.617215    2016-10-14 13:03:03.797014        \N    \N    \N    0    \N    \N    \N    \N    female
17144    Andrew    Pagac    earnest_rippin@ledner.net    \N    Burundi    Mireillebury    442 Cremin Glen    91132-0915    Maine    2016-08-13 03:49:53.174808    2016-10-14 13:03:03.801426        \N    \N    \N    0    \N    \N    \N    \N    male
17145    Alexandre    Bashirian    alvis_koepp@wiegandrobel.com    \N    Nicaragua    Port Morgan    493 Macejkovic Parkway    23714    Arkansas    2016-08-28 19:14:59.60893    2016-10-14 13:03:03.805633        \N    \N    \N    0    \N    \N    \N    \N    male
17146    Jeromy    Schneider    leopold@maggio.net    \N    Guam    Port Vancetown    82032 Kiehn Extension    91662    Maryland    2016-09-10 13:55:50.618474    2016-10-14 13:03:03.809655        \N    \N    \N    0    \N    \N    \N    \N    male
17147    Augustus    Windler    barrett.bartoletti@cremin.biz    \N    Palestinian Territory    Gertrudetown    8811 Carlee Road    88415    Utah    2016-08-17 17:24:33.45226    2016-10-14 13:03:03.813959        \N    \N    \N    0    \N    \N    \N    \N    male
17148    Myriam    Kunde    jerome@marksabbott.net    \N    Belize    South Adolphus    40361 Carmel River    90069    New Hampshire    2016-08-26 04:18:18.652573    2016-10-14 13:03:03.818373        \N    \N    \N    0    \N    \N    \N    \N    male
17149    Carroll    Jenkins    jed.gusikowski@corwin.org    \N    Angola    West Shyanne    1019 Emilio Lodge    47603-0830    Alaska    2016-09-01 12:38:31.197093    2016-10-14 13:03:03.822547        \N    \N    \N    0    \N    \N    \N    \N    male
17150    Giovani    Larson    aubrey.damore@west.net    \N    Tokelau    West Halland    137 Streich Rapid    99632-8183    New York    2016-08-15 23:11:03.004373    2016-10-14 13:03:03.826623        \N    \N    \N    0    \N    \N    \N    \N    female
17151    Amara    Torphy    jedidiah.rath@trantowsauer.net    \N    Czech Republic    Wavashire    788 Lucio Stravenue    58168    Utah    2016-07-09 14:39:45.727967    2016-10-14 13:03:03.830715        \N    \N    \N    0    \N    \N    \N    \N    female
17152    Orrin    Langosh    rylee.padberg@reichert.org    \N    Uganda    Lake Rociobury    41266 Beer Rapids    35566-3754    Pennsylvania    2016-07-26 01:40:29.008834    2016-10-14 13:03:03.835351        \N    \N    \N    0    \N    \N    \N    \N    female
17153    Crystel    Huels    jacklyn_champlin@gerholdmoriette.biz    \N    Norfolk Island    East Lauren    78732 Rice Brook    29639-5182    Mississippi    2016-09-07 08:15:10.017618    2016-10-14 13:03:03.839972        \N    \N    \N    0    \N    \N    \N    \N    female
17154    Zola    Ankunding    wava@wilderman.org    \N    Albania    North Carrie    69014 Jacobson Wall    75089    West Virginia    2016-07-15 18:35:56.433228    2016-10-14 13:03:03.844192        \N    \N    \N    0    \N    \N    \N    \N    male
17155    Weston    Armstrong    geovany@boyle.com    \N    Cayman Islands    Baumbachport    7162 Emilie Roads    68872-4746    Arkansas    2016-08-20 20:31:00.121843    2016-10-14 13:03:03.848678        \N    \N    \N    0    \N    \N    \N    \N    female
17156    Isabell    Luettgen    barry_mcglynn@moore.org    \N    United Arab Emirates    North Garricktown    95450 Demarcus Villages    91477-4684    Connecticut    2016-09-02 22:51:21.293821    2016-10-14 13:03:03.854435        \N    \N    \N    0    \N    \N    \N    \N    female
17157    Cortez    Jones    michael_lebsack@fadel.com    \N    New Caledonia    New Isom    1367 Conroy Parkways    46726-4877    New Mexico    2016-08-12 23:18:41.33003    2016-10-14 13:03:03.858698        \N    \N    \N    0    \N    \N    \N    \N    female
17159    Herman    Zieme    rosalyn_stroman@bartellabshire.co    \N    Turkmenistan    Lucianoview    855 Hauck Haven    38988    Delaware    2016-07-29 22:07:16.295248    2016-10-14 13:03:03.863007        \N    \N    \N    0    \N    \N    \N    \N    male
17160    Jody    Koelpin    mireille@cruickshank.com    \N    Comoros    Alekfort    12928 Feil Turnpike    15539    Georgia    2016-08-31 01:30:34.144588    2016-10-14 13:03:03.868138        \N    \N    \N    0    \N    \N    \N    \N    female
17161    Tyshawn    Streich    hayley@jast.co    \N    Indonesia    Johnsbury    819 Nora Village    76838-3765    Michigan    2016-09-11 11:57:46.97067    2016-10-14 13:03:03.872541        \N    \N    \N    0    \N    \N    \N    \N    female
17162    Anastasia    Cummerata    floy@schowalter.net    \N    Brazil    Angelinafurt    4500 Schuppe Corners    86575-9570    South Carolina    2016-08-09 06:19:05.793167    2016-10-14 13:03:03.87674        \N    \N    \N    0    \N    \N    \N    \N    male
17163    Jazlyn    Heidenreich    juston.ruecker@ratke.net    \N    Malawi    Winonabury    7257 Schaefer Causeway    27985-9486    Indiana    2016-07-02 09:45:16.781803    2016-10-14 13:03:03.88075        \N    \N    \N    0    \N    \N    \N    \N    male
17164    Pablo    Block    mable@marks.com    \N    Senegal    South Oletaside    790 Crist Fords    25781    Texas    2016-07-23 01:40:10.437718    2016-10-14 13:03:03.885261        \N    \N    \N    0    \N    \N    \N    \N    female
17165    Alessandro    Cummings    nellie@dickimills.org    \N    Bangladesh    New Torrancebury    7442 Leif Prairie    28348-2202    Missouri    2016-09-10 17:31:41.803064    2016-10-14 13:03:03.889258        \N    \N    \N    0    \N    \N    \N    \N    male
17166    Josh    Lindgren    maddison_gibson@green.net    \N    Djibouti    Littelland    27217 Rice Parkway    81444-3405    Louisiana    2016-07-20 08:50:35.056534    2016-10-14 13:03:03.893458        \N    \N    \N    0    \N    \N    \N    \N    female
17167    Pedro    Donnelly    hector_carroll@pollich.net    \N    Lao People's Democratic Republic    New Alfreda    6056 Janick Cliff    53927    Oregon    2016-09-27 23:52:05.932262    2016-10-14 13:03:03.897624        \N    \N    \N    0    \N    \N    \N    \N    male
17168    London    Douglas    annalise.runolfsdottir@reilly.io    \N    Macao    East Fleta    87432 Mueller Squares    30297    Georgia    2016-06-30 07:24:11.467807    2016-10-14 13:03:03.901984        \N    \N    \N    0    \N    \N    \N    \N    male
17169    Zander    Rolfson    aaron@volkman.co    \N    Niger    Evertshire    116 Muller Trail    89663-9677    Utah    2016-09-11 09:41:30.951236    2016-10-14 13:03:03.906204        \N    \N    \N    0    \N    \N    \N    \N    male
17452    Kade    Gibson    desmond@yostpacocha.net    \N    Portugal    Amelietown    7677 Lehner Pines    20647    Alaska    2016-09-24 18:27:22.811937    2016-10-14 13:03:03.910498        \N    \N    \N    0    \N    \N    \N    \N    female
17170    Tracey    Daugherty    geraldine@okeefetrantow.net    \N    Iceland    New Cassandremouth    328 Rusty Extension    10398-7465    Arkansas    2016-06-25 20:08:13.361948    2016-10-14 13:03:03.915213        \N    \N    \N    0    \N    \N    \N    \N    male
17171    Kip    Hammes    jazlyn.mayer@hilpertmosciski.com    \N    French Guiana    Lake Hailey    223 Arjun Cliff    49472-7508    Idaho    2016-09-12 17:27:39.654507    2016-10-14 13:03:03.920082        \N    \N    \N    0    \N    \N    \N    \N    female
17172    Isom    Nienow    aurelio_rutherford@stammblock.name    \N    Gibraltar    Collierport    34174 Cary Inlet    55999    Maine    2016-07-14 23:24:42.711294    2016-10-14 13:03:03.924547        \N    \N    \N    0    \N    \N    \N    \N    female
17173    Lilliana    Connelly    lizeth.mertz@thompson.net    \N    Malaysia    New Onie    287 Vandervort Camp    46767    Virginia    2016-09-29 07:53:51.374917    2016-10-14 13:03:03.929393        \N    \N    \N    0    \N    \N    \N    \N    female
17174    Lydia    Bruen    melody@schuster.co    \N    Virgin Islands, U.S.    Windlerton    9130 Schultz Curve    12551    Kansas    2016-07-08 11:37:43.13582    2016-10-14 13:03:03.933703        \N    \N    \N    0    \N    \N    \N    \N    male
17175    Golden    Jenkins    ara.sauer@auer.com    \N    Montserrat    Lake Breanachester    13148 Pfannerstill Street    33045    Idaho    2016-07-22 14:39:15.201662    2016-10-14 13:03:03.938077        \N    \N    \N    0    \N    \N    \N    \N    female
17176    Sandrine    Lebsack    aimee.reichert@walsh.com    \N    Romania    East Stellachester    120 Emma Port    13989    Minnesota    2016-08-19 05:49:49.523389    2016-10-14 13:03:03.942485        \N    \N    \N    0    \N    \N    \N    \N    female
17177    Freeman    McGlynn    eloy@kutch.info    \N    China    New Angelaville    586 Jules Court    26510-4202    Texas    2016-09-21 02:07:32.477908    2016-10-14 13:03:03.946833        \N    \N    \N    0    \N    \N    \N    \N    male
17178    Carter    Ledner    claria@bashiriandickinson.biz    \N    Netherlands    Marcellaburgh    255 Bradtke Plains    55356    New Mexico    2016-07-08 23:38:50.108284    2016-10-14 13:03:03.950769        \N    \N    \N    0    \N    \N    \N    \N    female
17179    Kennedy    Abshire    eryn@parker.biz    \N    United Kingdom    West Danialborough    48316 Walsh Vista    33571    Idaho    2016-08-24 08:59:47.340886    2016-10-14 13:03:03.954677        \N    \N    \N    0    \N    \N    \N    \N    female
17180    Halie    Hoppe    paula@sipes.net    \N    Falkland Islands (Malvinas)    Parisiantown    59238 Eloise Shores    49709-8668    Wyoming    2016-07-09 16:27:08.342108    2016-10-14 13:03:03.958704        \N    \N    \N    0    \N    \N    \N    \N    female
17181    Dwight    Ullrich    earnest@spencer.com    \N    Azerbaijan    Lindgrenborough    18407 Crist Rapids    33129-7064    Pennsylvania    2016-09-12 05:22:15.599886    2016-10-14 13:03:03.962781        \N    \N    \N    0    \N    \N    \N    \N    male
17182    Cleta    Heller    zander@sawayn.net    \N    New Caledonia    East Trevertown    3301 Antonietta Station    21869    Wisconsin    2016-08-26 03:35:30.267759    2016-10-14 13:03:03.966576        \N    \N    \N    0    \N    \N    \N    \N    male
17183    Juston    Wehner    daren@oberbrunnerkoepp.name    \N    New Zealand    Lunaland    90251 Domenica Causeway    39274-4094    New York    2016-07-23 20:52:53.871195    2016-10-14 13:03:03.970449        \N    \N    \N    0    \N    \N    \N    \N    male
17184    Johathan    Walsh    art_leuschke@morar.org    \N    Switzerland    Port Jane    2464 Tristian Islands    56072    South Carolina    2016-09-12 07:24:18.810932    2016-10-14 13:03:03.974629        \N    \N    \N    0    \N    \N    \N    \N    male
17185    Julius    Kihn    icie@emmerich.name    \N    France    New Cielo    3764 Hartmann Summit    15689    North Dakota    2016-08-29 00:09:40.623798    2016-10-14 13:03:03.978723        \N    \N    \N    0    \N    \N    \N    \N    male
17187    Aiyana    Kemmer    eliezer.ankunding@aufderhar.info    \N    Poland    Asaton    8378 Deangelo Port    74758    Maryland    2016-09-01 20:59:44.692624    2016-10-14 13:03:03.983128        \N    \N    \N    0    \N    \N    \N    \N    female
17188    Augusta    Keeling    allen@tillmanwalter.io    \N    Uruguay    Joliebury    1160 Wyatt Underpass    88215    California    2016-09-22 01:16:33.706414    2016-10-14 13:03:03.987498        \N    \N    \N    0    \N    \N    \N    \N    male
17189    Eldora    Ankunding    ernestina.walter@spinka.co    \N    Australia    West Marciamouth    690 Tyler View    87914    Indiana    2016-09-18 03:34:58.991872    2016-10-14 13:03:03.991935        \N    \N    \N    0    \N    \N    \N    \N    male
17190    Granville    Mohr    juliet@deckow.name    \N    Botswana    Hicklehaven    33210 Cruickshank Centers    72760    New Mexico    2016-07-11 13:25:40.349435    2016-10-14 13:03:03.996184        \N    \N    \N    0    \N    \N    \N    \N    male
17191    Beatrice    Jenkins    reymundo_ward@littelrunolfon.info    \N    Gambia    Port Tillmanmouth    8796 Zion Ville    55914-9665    Wisconsin    2016-08-26 20:06:13.622179    2016-10-14 13:03:04.000583        \N    \N    \N    0    \N    \N    \N    \N    male
17192    Adelia    Hane    mona_stanton@smith.com    \N    Vanuatu    West Cleve    18650 Strosin Forge    71153-1886    North Carolina    2016-08-05 06:00:58.382824    2016-10-14 13:03:04.004873        \N    \N    \N    0    \N    \N    \N    \N    female
17193    Addison    Lynch    adolfo_schuppe@champlin.biz    \N    Malawi    West Coreneview    934 Ledner Course    14979    Alabama    2016-07-09 02:19:35.415241    2016-10-14 13:03:04.00963        \N    \N    \N    0    \N    \N    \N    \N    female
17194    Lue    Powlowski    minnie@grady.io    \N    Jamaica    West Nolahaven    5335 Davon Fords    49139-9827    Michigan    2016-07-03 11:29:14.515324    2016-10-14 13:03:04.014371        \N    \N    \N    0    \N    \N    \N    \N    male
17195    Jenifer    Hand    bartholome@herzog.org    \N    Guatemala    South Loma    1031 Johnston Terrace    40464    Georgia    2016-08-15 20:22:31.730678    2016-10-14 13:03:04.018876        \N    \N    \N    0    \N    \N    \N    \N    male
17196    Jalon    Mosciski    willis@will.com    \N    Mauritius    Port Jose    712 Isaiah Avenue    82134-7995    Mississippi    2016-08-21 09:49:13.319129    2016-10-14 13:03:04.023388        \N    \N    \N    0    \N    \N    \N    \N    male
17197    Maryse    Conn    clement@dibbert.co    \N    Cayman Islands    Port Idellastad    31754 Cielo Meadow    30371-6295    Connecticut    2016-09-03 16:05:51.952322    2016-10-14 13:03:04.028227        \N    \N    \N    0    \N    \N    \N    \N    male
17198    Anais    Dickens    rafael.hamill@harberkihn.name    \N    Bahrain    Streichmouth    812 Carlie Trafficway    97986    Connecticut    2016-07-29 20:01:19.230705    2016-10-14 13:03:04.032718        \N    \N    \N    0    \N    \N    \N    \N    female
17199    Rudy    Grimes    carey.moriette@shields.name    \N    Russian Federation    South Bennettbury    8170 Napoleon Inlet    85304-1696    Oregon    2016-07-01 14:50:56.72524    2016-10-14 13:03:04.036741        \N    \N    \N    0    \N    \N    \N    \N    female
17200    Hershel    Botsford    lawson@mohrroberts.info    \N    Papua New Guinea    Gottliebmouth    52837 Baumbach Lights    11899-4575    Texas    2016-09-03 05:49:06.88177    2016-10-14 13:03:04.040661        \N    \N    \N    0    \N    \N    \N    \N    female
17201    Ernesto    Mraz    andre@olson.name    \N    Nepal    Hickleburgh    74976 Towne Shore    75337    Arizona    2016-09-25 23:48:05.086076    2016-10-14 13:03:04.044567        \N    \N    \N    0    \N    \N    \N    \N    male
17202    Lillian    Labadie    joanny_haley@greenholt.biz    \N    Slovakia (Slovak Republic)    East Jailynville    4466 Erling Route    40092-4200    Ohio    2016-09-20 13:58:36.611016    2016-10-14 13:03:04.048445        \N    \N    \N    0    \N    \N    \N    \N    male
17203    Lura    Collier    lysanne.baumbach@welch.com    \N    Sweden    Blandaland    4978 Schowalter Via    57942-8494    Utah    2016-09-27 07:38:58.545188    2016-10-14 13:03:04.052522        \N    \N    \N    0    \N    \N    \N    \N    female
17204    Isabella    Feeney    david@stiedemannmiller.biz    \N    Rwanda    Hodkiewiczburgh    336 Rosenbaum Vista    51152-3272    Georgia    2016-09-03 22:32:15.868031    2016-10-14 13:03:04.056958        \N    \N    \N    0    \N    \N    \N    \N    female
17206    Reva    Bartoletti    vivien.bergnaum@handabshire.info    \N    Bhutan    Wandaberg    308 Stanton Ford    26580    Idaho    2016-09-20 07:05:46.328538    2016-10-14 13:03:04.061009        \N    \N    \N    0    \N    \N    \N    \N    male
17207    Rebeca    Effertz    eve.heaney@gutmann.net    \N    Gibraltar    Olafport    542 Brekke Cliff    48270    Pennsylvania    2016-07-17 03:55:13.786291    2016-10-14 13:03:04.065111        \N    \N    \N    0    \N    \N    \N    \N    female
17208    Preston    Corkery    antonietta.hammes@runolfonschmeler.co    \N    Serbia    Lake Fae    72673 Rico Ridge    40945    Oklahoma    2016-09-20 04:21:10.001734    2016-10-14 13:03:04.069306        \N    \N    \N    0    \N    \N    \N    \N    female
17209    Landen    Torp    rhianna.jakubowski@quigley.org    \N    Mali    Lake Sherwoodmouth    4841 Franz Center    53900-6879    Rhode Island    2016-09-07 04:02:13.000656    2016-10-14 13:03:04.073667        \N    \N    \N    0    \N    \N    \N    \N    male
17210    Rachel    Kirlin    barry_leannon@rosenbaum.net    \N    Macedonia    Tremblayport    3438 Braeden Estate    53916    Tennessee    2016-07-22 08:32:41.815678    2016-10-14 13:03:04.078846        \N    \N    \N    0    \N    \N    \N    \N    male
17819    Jon    Howell    houston_kub@waelchi.io    \N    Canada    Rohanview    6160 Brenden Harbors    13580    Alaska    2016-08-05 14:57:05.941058    2016-10-14 13:03:04.083191        \N    \N    \N    0    \N    \N    \N    \N    female
17212    Kip    Bailey    reanna@grant.io    \N    New Caledonia    Lake Sadieshire    13925 Alfred Branch    86454    South Dakota    2016-07-21 00:07:50.821811    2016-10-14 13:03:04.087194        \N    \N    \N    0    \N    \N    \N    \N    female
17213    Stewart    Cormier    ro.mertz@orn.io    \N    Bermuda    North Sherwood    89074 Parker Key    33593-0397    Nebraska    2016-09-01 22:36:09.470393    2016-10-14 13:03:04.090981        \N    \N    \N    0    \N    \N    \N    \N    male
17214    Abby    Kozey    thea_moen@oreilly.com    \N    Spain    Janaville    249 Mann Squares    90933-1353    Washington    2016-06-26 16:07:53.268561    2016-10-14 13:03:04.09488        \N    \N    \N    0    \N    \N    \N    \N    male
17215    Jaiden    Jacobi    mose@hoeger.io    \N    Palau    Toniburgh    8306 Parker Meadow    42370-9940    Pennsylvania    2016-06-22 15:20:16.874692    2016-10-14 13:03:04.098789        \N    \N    \N    0    \N    \N    \N    \N    male
17216    Madilyn    Carroll    dominic@kozeypfannerstill.io    \N    Anguilla    Krisview    5504 Jasmin Stream    66067-4907    New Mexico    2016-09-04 14:06:21.514333    2016-10-14 13:03:04.103382        \N    \N    \N    0    \N    \N    \N    \N    male
17217    Vivien    Robel    jovanny_wolff@kris.info    \N    Venezuela    Genevieveview    2639 Ankunding Island    63846    Illinois    2016-09-12 16:22:07.181053    2016-10-14 13:03:04.108184        \N    \N    \N    0    \N    \N    \N    \N    male
17218    Estevan    Davis    aurelio.hermiston@wilderman.biz    \N    Tuvalu    North Maeburgh    283 Parisian Springs    21947    South Carolina    2016-09-08 22:56:55.906916    2016-10-14 13:03:04.112646        \N    \N    \N    0    \N    \N    \N    \N    male
17219    Kylee    Cormier    monroe.prosacco@boganschamberger.io    \N    Zambia    Fredabury    80608 Addison Circle    73083    California    2016-08-18 04:53:25.08999    2016-10-14 13:03:04.116738        \N    \N    \N    0    \N    \N    \N    \N    female
17221    Wilma    Abshire    glenna_farrell@bernhardmedhurst.info    \N    Portugal    West Clara    95675 Jovan Crest    31828-0275    Texas    2016-08-22 01:31:07.638401    2016-10-14 13:03:04.126066        \N    \N    \N    0    \N    \N    \N    \N    male
17222    Evans    Corkery    maribel_lowe@wuckertgreenholt.net    \N    Bermuda    Sipesside    28554 Dayna Fords    35927    Montana    2016-06-23 16:21:44.503689    2016-10-14 13:03:04.130183        \N    \N    \N    0    \N    \N    \N    \N    male
17223    Darwin    Bergnaum    nathaniel@vonrueden.co    \N    Lesotho    East Jaylon    10934 Grover Parkway    69831-9754    Montana    2016-07-30 23:21:06.530203    2016-10-14 13:03:04.135045        \N    \N    \N    0    \N    \N    \N    \N    female
17224    Alvina    Emard    davin@harber.name    \N    Greenland    Lake Moises    2919 Sheldon Plain    78392-3825    Utah    2016-08-24 13:25:44.908947    2016-10-14 13:03:04.140182        \N    \N    \N    0    \N    \N    \N    \N    female
17225    Rupert    Altenwerth    lacey@beahanrowe.io    \N    Nauru    West Kendraton    378 Theodora Islands    49311-7147    Oklahoma    2016-07-26 14:00:19.202575    2016-10-14 13:03:04.145052        \N    \N    \N    0    \N    \N    \N    \N    female
17226    Muriel    Hand    alana_hayes@osinski.biz    \N    Bolivia    West Fredyburgh    4736 Rosendo Ford    56597    Illinois    2016-09-03 20:29:55.831778    2016-10-14 13:03:04.15364        \N    \N    \N    0    \N    \N    \N    \N    female
17227    Keyon    Parisian    macie@schowalter.org    \N    Croatia    Port Lucianoburgh    87685 Marjorie Ranch    80065-6471    New Jersey    2016-07-20 07:54:10.575341    2016-10-14 13:03:04.159802        \N    \N    \N    0    \N    \N    \N    \N    female
17228    Clifton    Mills    erna@grimes.name    \N    Kazakhstan    South Rosechester    269 Zieme Mount    93546-6974    Louisiana    2016-08-12 22:26:28.383808    2016-10-14 13:03:04.164385        \N    \N    \N    0    \N    \N    \N    \N    male
17229    Lupe    Pacocha    cullen.boyle@kulas.com    \N    Christmas Island    Quitzonberg    506 Hoeger Green    83939    Florida    2016-06-30 03:32:25.886843    2016-10-14 13:03:04.168725        \N    \N    \N    0    \N    \N    \N    \N    female
17230    Ross    Dibbert    edwardo@hillsdickinson.net    \N    Bosnia and Herzegovina    New Nora    37857 Dasia Meadows    93887-8667    Michigan    2016-09-17 06:59:39.063065    2016-10-14 13:03:04.191972        \N    \N    \N    0    \N    \N    \N    \N    male
17231    Riley    Kiehn    saige@treutel.info    \N    Guam    Langoshside    99205 Mohammed Unions    67574    Vermont    2016-09-02 04:36:54.053158    2016-10-14 13:03:04.196937        \N    \N    \N    0    \N    \N    \N    \N    male
17232    Cale    Spinka    forest_bartoletti@west.com    \N    Eritrea    Jackelineland    8445 Eusebio Roads    88455    Rhode Island    2016-08-18 01:22:48.63627    2016-10-14 13:03:04.201178        \N    \N    \N    0    \N    \N    \N    \N    female
17233    Josue    Watsica    conner@hoppe.name    \N    Liberia    South Nathentown    14986 O'Connell Mission    71350-7692    South Carolina    2016-07-02 12:09:23.26783    2016-10-14 13:03:04.205248        \N    \N    \N    0    \N    \N    \N    \N    male
17234    Antonina    Wolff    arlie_jakubowski@tremblaywintheiser.name    \N    Austria    Pansyshire    78454 Elliot Shores    44489    Tennessee    2016-06-27 18:25:23.35413    2016-10-14 13:03:04.210297        \N    \N    \N    0    \N    \N    \N    \N    male
17235    Anais    Parisian    candice_wilkinson@marks.io    \N    Trinidad and Tobago    Port Julesstad    2209 Zulauf Island    55609    Michigan    2016-07-25 09:19:34.488481    2016-10-14 13:03:04.214959        \N    \N    \N    0    \N    \N    \N    \N    female
17239    Rosalee    Daniel    myrtis@boyerlarson.co    \N    Barbados    Chelsieton    9579 Katrina Plains    76566    Arkansas    2016-08-20 16:54:58.869705    2016-10-14 13:03:04.219112        \N    \N    \N    0    \N    \N    \N    \N    male
17240    Clarissa    O'Hara    emelia_marks@runolfon.co    \N    Saudi Arabia    New Abbie    25959 Fisher Track    42883-2156    Vermont    2016-06-26 07:14:52.463163    2016-10-14 13:03:04.223104        \N    \N    \N    0    \N    \N    \N    \N    male
17241    Hortense    Carter    favian@bodemayert.net    \N    Brazil    Port Moshe    9656 Heaney Street    22530-3346    North Carolina    2016-09-02 01:39:52.156291    2016-10-14 13:03:04.227124        \N    \N    \N    0    \N    \N    \N    \N    female
17242    Brett    Bayer    jaunita.schoen@dicki.net    \N    Timor-Leste    East Bustertown    2138 Lubowitz Glen    34282-0133    Missouri    2016-06-29 14:43:25.147303    2016-10-14 13:03:04.23119        \N    \N    \N    0    \N    \N    \N    \N    male
17243    Sherman    Jones    shawn.jenkins@runtecarroll.biz    \N    Poland    Bahringershire    708 Raphael Cove    43291-9762    Rhode Island    2016-08-01 13:49:53.477646    2016-10-14 13:03:04.23545        \N    \N    \N    0    \N    \N    \N    \N    female
17244    Marcelina    Keeling    linnea@hackett.name    \N    Norfolk Island    East Abelview    501 Rosenbaum Forest    42515-9685    Alabama    2016-08-08 14:59:53.464484    2016-10-14 13:03:04.23994        \N    \N    \N    0    \N    \N    \N    \N    male
17245    Mateo    Hegmann    annamarie@nienow.name    \N    Guatemala    D'Amoreville    12971 Duane Pine    56124    Kentucky    2016-09-08 10:13:55.104338    2016-10-14 13:03:04.243963        \N    \N    \N    0    \N    \N    \N    \N    male
17246    Addie    Williamson    haven_nader@hettinger.biz    \N    Botswana    Merleberg    528 Gibson Station    93445-3990    Arkansas    2016-08-20 11:53:01.760142    2016-10-14 13:03:04.248466        \N    \N    \N    0    \N    \N    \N    \N    male
17247    Gregorio    Kerluke    daphne@dachsenger.biz    \N    French Polynesia    New Ceciliachester    7474 O'Conner Circles    29127-4660    Ohio    2016-09-26 09:10:55.71883    2016-10-14 13:03:04.25281        \N    \N    \N    0    \N    \N    \N    \N    female
13006    Jenifer    Bergstrom    skye@feeney.name    \N    Qatar    East Maryam    492 Walsh Grove    51928-8400    Idaho    2016-08-25 17:35:42.863727    2016-10-14 13:03:04.257396        \N    \N    \N    0    \N    \N    \N    \N    male
17205    Mariana    Marks    eddie@trompaufderhar.biz    \N    Honduras    Vilmatown    9239 Funk Divide    22698    Washington    2016-09-20 16:00:31.646888    2016-10-14 13:03:04.261703        \N    \N    \N    0    \N    \N    \N    \N    female
17248    Myrtle    Romaguera    arlie.durgan@muller.co    \N    Puerto Rico    Lake Emanuel    61093 Robin Locks    41953-6462    Pennsylvania    2016-07-03 08:49:53.972074    2016-10-14 13:03:04.266258        \N    \N    \N    0    \N    \N    \N    \N    male
17249    Aliza    MacGyver    harmony_nolan@leffler.com    \N    Syrian Arab Republic    South Tyreekburgh    3357 Cole Causeway    74861    Wisconsin    2016-09-13 09:33:49.515033    2016-10-14 13:03:04.270533        \N    \N    \N    0    \N    \N    \N    \N    male
17250    Jewell    Johnson    faustino_dietrich@heaney.com    \N    Cape Verde    North Krystal    359 Bianka Orchard    78680    Arizona    2016-09-18 09:51:14.553482    2016-10-14 13:03:04.2747        \N    \N    \N    0    \N    \N    \N    \N    male
17251    Keaton    Bednar    neva_kilback@cummerata.biz    \N    Cocos (Keeling) Islands    Gerlachhaven    5426 Chauncey Tunnel    49795    Mississippi    2016-07-05 05:11:02.579834    2016-10-14 13:03:04.280026        \N    \N    \N    0    \N    \N    \N    \N    male
17252    May    Parisian    krystina_hyatt@windler.name    \N    Japan    East Cletushaven    67284 Enola Wall    27865    Vermont    2016-09-05 18:07:02.03058    2016-10-14 13:03:04.284405        \N    \N    \N    0    \N    \N    \N    \N    male
17253    Brain    Dicki    elsa@hintz.net    \N    Bahrain    Lubowitzside    810 Langworth Freeway    56528    Ohio    2016-07-08 11:27:18.053223    2016-10-14 13:03:04.288924        \N    \N    \N    0    \N    \N    \N    \N    male
17254    Autumn    Lindgren    kiera@mills.com    \N    Martinique    North Bertrandtown    441 Homenick Mountains    88301    Virginia    2016-08-08 10:24:33.637413    2016-10-14 13:03:04.293401        \N    \N    \N    0    \N    \N    \N    \N    male
17255    Doyle    Kautzer    alvina.fadel@berge.co    \N    Rwanda    Kileyhaven    80803 Luettgen Crossing    91716-2402    Arkansas    2016-07-05 10:18:16.911719    2016-10-14 13:03:04.297812        \N    \N    \N    0    \N    \N    \N    \N    female
17256    Kelvin    Sipes    dwight@schneider.name    \N    India    New Alene    9955 Preston Court    86866-9385    Oregon    2016-08-11 18:25:14.302868    2016-10-14 13:03:04.302388        \N    \N    \N    0    \N    \N    \N    \N    female
17257    Marta    Legros    antoinette_grimes@halvorson.org    \N    Switzerland    Grahamshire    6443 Stracke Rapids    57179-3354    Tennessee    2016-08-07 20:26:41.514765    2016-10-14 13:03:04.306833        \N    \N    \N    0    \N    \N    \N    \N    female
17258    Cody    Murray    davion_wuckert@ricegaylord.com    \N    Netherlands    Croninborough    777 Brock Lodge    37254-9837    Ohio    2016-09-05 11:46:13.525898    2016-10-14 13:03:04.311313        \N    \N    \N    0    \N    \N    \N    \N    male
17259    Elda    Greenholt    mattie@hagenes.net    \N    Cape Verde    Port Stan    40959 Carissa Mill    84353-7972    Texas    2016-06-30 03:44:55.188933    2016-10-14 13:03:04.315196        \N    \N    \N    0    \N    \N    \N    \N    male
17260    Queen    Hodkiewicz    darlene_windler@kulas.biz    \N    Holy See (Vatican City State)    Gusikowskifort    78118 Reilly Neck    32142-9922    Colorado    2016-08-26 01:53:10.42615    2016-10-14 13:03:04.319416        \N    \N    \N    0    \N    \N    \N    \N    female
17261    Johathan    Welch    rico.watsica@caingreenholt.info    \N    Djibouti    Edythchester    6654 Rogahn Greens    73248    North Dakota    2016-07-01 10:32:29.365799    2016-10-14 13:03:04.323762        \N    \N    \N    0    \N    \N    \N    \N    male
17262    Milo    Kuhic    kelli@wiegand.net    \N    Israel    Otisview    61900 Prosacco Manors    44875    Nevada    2016-09-05 23:09:43.395849    2016-10-14 13:03:04.327598        \N    \N    \N    0    \N    \N    \N    \N    male
17263    Elvera    Lindgren    emmie.keebler@koch.biz    \N    Denmark    Kavonstad    49645 Crona Streets    91592    Nebraska    2016-07-17 03:55:40.775205    2016-10-14 13:03:04.331544        \N    \N    \N    0    \N    \N    \N    \N    female
17264    Johnathon    Jerde    rosalyn_lockman@wilkinsonwillms.io    \N    Australia    Barneyport    34655 Elvie Locks    12781-1786    Oklahoma    2016-08-11 20:13:24.140334    2016-10-14 13:03:04.336139        \N    \N    \N    0    \N    \N    \N    \N    female
17265    Ressie    Ratke    georgiana.abbott@mante.com    \N    Anguilla    South Ardellachester    5426 Antonietta Forest    61838    California    2016-09-20 18:26:22.39145    2016-10-14 13:03:04.340129        \N    \N    \N    0    \N    \N    \N    \N    female
17266    Tyree    Treutel    jamey@mcculloughlubowitz.com    \N    Equatorial Guinea    North Justice    2459 Paige Wells    22565    North Carolina    2016-07-02 09:46:40.359713    2016-10-14 13:03:04.344542        \N    \N    \N    0    \N    \N    \N    \N    male
17267    Eddie    Kozey    max_walter@dietrich.name    \N    Netherlands Antilles    Ferryfurt    487 Adolf Village    65296    Florida    2016-06-26 14:25:25.104408    2016-10-14 13:03:04.349093        \N    \N    \N    0    \N    \N    \N    \N    male
17268    Ervin    Ullrich    ceasar.reichel@hettingerheaney.biz    \N    Indonesia    Kassulkeberg    8615 O'Keefe Ports    95024    Wyoming    2016-07-01 05:29:52.840062    2016-10-14 13:03:04.353598        \N    \N    \N    0    \N    \N    \N    \N    female
17269    Victoria    Cole    taya_sauer@kulas.name    \N    Egypt    Goodwinmouth    141 Fay Circle    42603-4541    North Dakota    2016-09-11 03:24:34.161835    2016-10-14 13:03:04.358303        \N    \N    \N    0    \N    \N    \N    \N    female
17271    Priscilla    Jakubowski    oswaldo.waelchi@west.org    \N    Moldova    Lake Garth    4818 August Stream    23238    Oklahoma    2016-09-21 06:24:47.426966    2016-10-14 13:03:04.362592        \N    \N    \N    0    \N    \N    \N    \N    female
17273    Norval    Hane    darrel_schultz@sporerjaskolski.co    \N    Saint Barthelemy    Lomatown    317 Allison Viaduct    56340-5813    Montana    2016-07-31 21:07:15.955788    2016-10-14 13:03:04.367037        \N    \N    \N    0    \N    \N    \N    \N    male
17274    Octavia    Fadel    mike@raynornienow.net    \N    Peru    Hintzside    7395 Camilla Extensions    22653-5334    New York    2016-08-16 17:20:30.476473    2016-10-14 13:03:04.371723        \N    \N    \N    0    \N    \N    \N    \N    female
17275    Stefanie    Hamill    katheryn.lebsack@ferry.name    \N    Uzbekistan    Johnsside    1942 Marta Spur    22633    Montana    2016-08-18 02:34:56.87023    2016-10-14 13:03:04.376462        \N    \N    \N    0    \N    \N    \N    \N    female
17277    Retta    Hane    arnoldo.waelchi@auerwilderman.io    \N    Tonga    South Aracelyton    64169 Schulist Pines    75231    Alaska    2016-06-30 18:58:02.856391    2016-10-14 13:03:04.380826        \N    \N    \N    0    \N    \N    \N    \N    male
17278    Angelita    Wyman    monroe@cummingimonis.name    \N    New Zealand    Benedictfurt    55993 McCullough Harbor    10098-3697    Mississippi    2016-08-23 21:48:49.773325    2016-10-14 13:03:04.385712        \N    \N    \N    0    \N    \N    \N    \N    female
17279    Dell    Cole    prince@mohr.io    \N    British Indian Ocean Territory (Chagos Archipelago)    South Devynmouth    441 Rutherford Dam    19361-0558    Idaho    2016-06-23 01:29:45.085541    2016-10-14 13:03:04.391407        \N    \N    \N    0    \N    \N    \N    \N    male
17280    Kellen    Kiehn    krystina@bernhard.org    \N    Norway    West Nestor    371 Wolf Landing    90347-3807    Virginia    2016-07-09 07:03:07.730811    2016-10-14 13:03:04.39593        \N    \N    \N    0    \N    \N    \N    \N    female
17281    Marc    Batz    gerardo.dickens@daugherty.io    \N    Fiji    Skilesfort    8546 Schultz Court    89614-1209    Maine    2016-07-20 12:14:24.268473    2016-10-14 13:03:04.400426        \N    \N    \N    0    \N    \N    \N    \N    female
17283    Okey    Nicolas    shanie_rosenbaum@krisorn.biz    \N    Myanmar    West Brockport    9559 Ricardo Tunnel    41525-0204    Pennsylvania    2016-08-05 16:16:33.585894    2016-10-14 13:03:04.404621        \N    \N    \N    0    \N    \N    \N    \N    male
17284    Antonio    Wintheiser    tyra@harris.name    \N    Svalbard & Jan Mayen Islands    Gaylordside    417 Barrett Rapid    75848    Alabama    2016-07-04 22:02:33.359884    2016-10-14 13:03:04.409037        \N    \N    \N    0    \N    \N    \N    \N    female
17285    Hertha    Feeney    megane_stroman@von.org    \N    Cambodia    Port Kaymouth    2832 Runte Dale    91201-6629    Oregon    2016-09-23 07:57:59.398993    2016-10-14 13:03:04.413397        \N    \N    \N    0    \N    \N    \N    \N    male
17286    Lorine    Bogisich    ivy@huelmills.info    \N    Estonia    Dachburgh    867 Bernhard Run    59149-5767    Ohio    2016-09-20 06:54:20.37342    2016-10-14 13:03:04.417612        \N    \N    \N    0    \N    \N    \N    \N    female
17287    Erika    Schumm    coby@jerdeokon.io    \N    Trinidad and Tobago    Abshireshire    422 Legros Oval    85788-5173    New Mexico    2016-07-05 04:39:50.38115    2016-10-14 13:03:04.42187        \N    \N    \N    0    \N    \N    \N    \N    male
17288    Rachael    Crooks    anya.collins@halvorsonruel.co    \N    Switzerland    Lake Adrianfort    91051 Bud Alley    50084-0980    Illinois    2016-09-01 05:54:43.272027    2016-10-14 13:03:04.426248        \N    \N    \N    0    \N    \N    \N    \N    male
17289    Helen    Bartell    melya@conn.name    \N    Tanzania    East Litzy    5617 Maverick Turnpike    41266    Alaska    2016-06-27 02:53:38.640406    2016-10-14 13:03:04.430616        \N    \N    \N    0    \N    \N    \N    \N    male
17290    Bernie    Fritsch    devin@ankunding.co    \N    United States Minor Outlying Islands    South Gilbertofurt    77658 Haag Island    90807-4785    Michigan    2016-07-25 00:44:51.16137    2016-10-14 13:03:04.435877        \N    \N    \N    0    \N    \N    \N    \N    male
17291    Madge    Ritchie    stanford@toygottlieb.info    \N    Benin    Vandervortport    660 Sanford Hills    47201    Iowa    2016-07-02 15:38:25.379634    2016-10-14 13:03:04.441243        \N    \N    \N    0    \N    \N    \N    \N    female
17292    Zackary    Anderson    demetrius_borer@pouros.com    \N    Latvia    Port Cielo    8712 Rodolfo Terrace    71914-1179    Montana    2016-09-21 17:03:18.954758    2016-10-14 13:03:04.445595        \N    \N    \N    0    \N    \N    \N    \N    male
17293    Arturo    Kerluke    hilma.quigley@mayer.info    \N    Armenia    Reichelville    859 Velva Cape    86367    Tennessee    2016-09-12 05:02:15.388529    2016-10-14 13:03:04.449889        \N    \N    \N    0    \N    \N    \N    \N    female
17294    Ora    Kuphal    santos@kuphalstokes.net    \N    Panama    Mallorystad    7291 Bennett Keys    95487    Georgia    2016-09-16 05:54:27.510259    2016-10-14 13:03:04.454192        \N    \N    \N    0    \N    \N    \N    \N    female
17295    Reagan    Dietrich    isaac.skiles@pagac.com    \N    Czech Republic    Jacobsonside    95373 Deontae Union    79836-5369    Arizona    2016-09-19 11:44:33.804152    2016-10-14 13:03:04.458335        \N    \N    \N    0    \N    \N    \N    \N    female
17296    Murphy    Bogisich    tristin_labadie@pollich.co    \N    Estonia    New Manuela    22195 Doyle Divide    43161    Colorado    2016-07-03 11:00:48.937442    2016-10-14 13:03:04.462372        \N    \N    \N    0    \N    \N    \N    \N    female
17297    Cristal    Mann    raina@cruickshankmedhurst.biz    \N    Malta    West Una    666 Schmitt Viaduct    23602    Alaska    2016-08-30 12:53:47.380206    2016-10-14 13:03:04.466554        \N    \N    \N    0    \N    \N    \N    \N    male
17298    Brent    Bartoletti    jaylan.oberbrunner@rempel.biz    \N    Bouvet Island (Bouvetoya)    Lake Olafmouth    7763 Jake Way    65974    Oregon    2016-08-10 00:22:12.781583    2016-10-14 13:03:04.470584        \N    \N    \N    0    \N    \N    \N    \N    male
17299    Jess    Berge    orie_schowalter@rennernienow.net    \N    Turks and Caicos Islands    Port Cordelia    395 Sporer Squares    41677-8934    Texas    2016-08-25 15:12:31.84849    2016-10-14 13:03:04.474621        \N    \N    \N    0    \N    \N    \N    \N    male
17300    Hilma    Waters    laney@kunde.net    \N    Gibraltar    North Delia    777 Claudine Courts    25113    Ohio    2016-09-12 15:54:06.461103    2016-10-14 13:03:04.478872        \N    \N    \N    0    \N    \N    \N    \N    female
17301    Brayan    Cartwright    deondre.feest@mcglynn.org    \N    Congo    Port Zoe    5842 Ahmed Stravenue    42619    Maryland    2016-09-18 09:26:51.320115    2016-10-14 13:03:04.483391        \N    \N    \N    0    \N    \N    \N    \N    male
17302    Daisy    Runolfsdottir    antonia.gibson@littel.name    \N    Ukraine    Samantaville    681 Zane Mall    23515    South Dakota    2016-06-28 22:53:31.202601    2016-10-14 13:03:04.487399        \N    \N    \N    0    \N    \N    \N    \N    female
17303    Wilfredo    Kemmer    lue@davis.name    \N    Republic of Korea    Reingermouth    8976 Chance Fort    60070-0444    Minnesota    2016-09-16 11:57:11.313198    2016-10-14 13:03:04.491698        \N    \N    \N    0    \N    \N    \N    \N    male
17304    Penelope    Mueller    hertha@gibson.biz    \N    Palau    Port Elissa    6251 Mann Coves    80042    Maryland    2016-09-20 06:21:04.812639    2016-10-14 13:03:04.495694        \N    \N    \N    0    \N    \N    \N    \N    female
17305    Ofelia    Jaskolski    guadalupe@kshlerinstokes.name    \N    Eritrea    East Dorthy    627 Terry Gateway    28457    Maine    2016-08-01 21:36:17.77936    2016-10-14 13:03:04.500561        \N    \N    \N    0    \N    \N    \N    \N    male
17306    Raphaelle    Corkery    reilly@runte.net    \N    Mayotte    Stantonton    2523 Nienow Circles    96001-0675    Florida    2016-09-26 14:01:41.130957    2016-10-14 13:03:04.505333        \N    \N    \N    0    \N    \N    \N    \N    male
17307    Kenneth    Ritchie    luisa@cormierwitting.co    \N    Guinea    West Carissachester    498 Antonetta Extension    18706    North Carolina    2016-09-18 20:34:20.050095    2016-10-14 13:03:04.524494        \N    \N    \N    0    \N    \N    \N    \N    male
17308    Maryse    Nader    darius.price@reichelmaggio.io    \N    Macedonia    East Edwardo    516 Bernhard Route    20554-9169    Washington    2016-07-22 09:50:14.590479    2016-10-14 13:03:04.528506        \N    \N    \N    0    \N    \N    \N    \N    male
17309    Lonnie    Renner    ola_weimann@bahringertreutel.net    \N    New Caledonia    Dorabury    823 Hahn Radial    24047    Colorado    2016-09-08 04:35:22.901005    2016-10-14 13:03:04.532996        \N    \N    \N    0    \N    \N    \N    \N    male
17310    Janie    Hahn    joseph@feilrutherford.co    \N    Turkmenistan    Rueckerstad    57017 Dibbert Brook    70334    South Dakota    2016-09-24 09:50:38.114353    2016-10-14 13:03:04.537241        \N    \N    \N    0    \N    \N    \N    \N    female
17311    Jade    Brekke    meta_klein@mcclure.name    \N    Switzerland    Sigmundshire    2239 Doyle Rue    41936    New Mexico    2016-09-27 09:21:51.222594    2016-10-14 13:03:04.54125        \N    \N    \N    0    \N    \N    \N    \N    female
17312    Monique    DuBuque    jaylen.jacobi@robel.info    \N    Mayotte    New Winifredton    2347 Ferry Creek    75041    Maryland    2016-08-25 02:52:02.0226    2016-10-14 13:03:04.545168        \N    \N    \N    0    \N    \N    \N    \N    female
17313    Austin    Tromp    austin@leuschke.name    \N    Saudi Arabia    New Celestino    61977 Langworth Brooks    90508    Maine    2016-08-28 08:18:48.673674    2016-10-14 13:03:04.549413        \N    \N    \N    0    \N    \N    \N    \N    male
17314    Karelle    McDermott    nicolette@luettgenzieme.biz    \N    United Kingdom    Zboncakstad    40720 Pfannerstill Inlet    49724-1206    North Carolina    2016-07-24 00:57:12.320625    2016-10-14 13:03:04.555809        \N    \N    \N    0    \N    \N    \N    \N    female
17315    Dixie    West    austin_dietrich@bartolettishields.info    \N    Tokelau    East Emmett    181 Connie River    27626-7821    Missouri    2016-09-27 02:57:25.202496    2016-10-14 13:03:04.560181        \N    \N    \N    0    \N    \N    \N    \N    female
17316    Letha    Ratke    euna.sanford@brakus.name    \N    Bahamas    West Roxannefurt    87060 Timothy Skyway    62822-1012    Nevada    2016-09-18 06:11:07.778873    2016-10-14 13:03:04.564349        \N    \N    \N    0    \N    \N    \N    \N    female
17317    Mallie    Johnston    laverne@hamillschmeler.name    \N    Canada    Houstonton    67753 Wyman Oval    23193    Nevada    2016-09-28 14:18:03.893011    2016-10-14 13:03:04.568871        \N    \N    \N    0    \N    \N    \N    \N    male
17318    Neil    Hoppe    oleta.oconnell@beahan.info    \N    French Southern Territories    Haagfurt    26323 Ari Cliff    30285-5082    Tennessee    2016-09-25 10:52:08.305183    2016-10-14 13:03:04.572757        \N    \N    \N    0    \N    \N    \N    \N    female
17319    Kelton    Pfannerstill    madonna@labadiekeebler.net    \N    Cook Islands    Lake Donfurt    53744 Hamill Pines    93868    Idaho    2016-08-01 16:53:34.930403    2016-10-14 13:03:04.576983        \N    \N    \N    0    \N    \N    \N    \N    female
17320    Jed    Bednar    turner@dickensparisian.com    \N    India    Kuhnstad    86886 Hellen Shoals    13099    Connecticut    2016-09-08 18:57:01.635168    2016-10-14 13:03:04.581405        \N    \N    \N    0    \N    \N    \N    \N    male
17321    Wyman    Waters    misael_eichmann@feilbogisich.biz    \N    Qatar    Grimesburgh    8998 Alice Trail    73803    Louisiana    2016-09-08 03:59:24.614713    2016-10-14 13:03:04.585408        \N    \N    \N    0    \N    \N    \N    \N    female
17322    Geraldine    Jacobson    fredy@lowecrist.com    \N    Anguilla    Bartellton    20771 Hudson Place    97608    Ohio    2016-08-28 10:56:07.433029    2016-10-14 13:03:04.589423        \N    \N    \N    0    \N    \N    \N    \N    female
17323    Dino    Goldner    agnes_ortiz@ratke.org    \N    Saint Helena    Willhaven    89987 Bridget Terrace    50968-4457    Colorado    2016-09-06 12:29:39.333928    2016-10-14 13:03:04.593386        \N    \N    \N    0    \N    \N    \N    \N    male
17324    Brycen    Dibbert    aurelie.price@greenfelderweimann.info    \N    Honduras    Savionville    224 Goodwin Burg    36207    Minnesota    2016-07-05 13:05:08.656462    2016-10-14 13:03:04.597485        \N    \N    \N    0    \N    \N    \N    \N    male
17325    Cloyd    Koch    jaren.steuber@mcglynn.com    \N    Palestinian Territory    East Laverne    84409 Kohler Trafficway    24206    Arizona    2016-07-17 07:54:58.827213    2016-10-14 13:03:04.601622        \N    \N    \N    0    \N    \N    \N    \N    male
17326    Casimir    Hansen    gaston@murazik.co    \N    Uganda    Port Mileshaven    8581 Pfannerstill Harbors    85142-6671    New Hampshire    2016-09-12 12:41:27.404466    2016-10-14 13:03:04.606161        \N    \N    \N    0    \N    \N    \N    \N    female
17327    Arne    Cremin    emmet@glover.info    \N    Seychelles    Hilpertburgh    767 Jane Viaduct    70419    Maine    2016-08-27 16:28:23.787901    2016-10-14 13:03:04.610036        \N    \N    \N    0    \N    \N    \N    \N    male
17328    Aditya    Kreiger    georgiana@kautzer.org    \N    Cape Verde    Port Krisstad    2434 Hegmann Fork    96283-4083    Minnesota    2016-06-29 04:08:33.425394    2016-10-14 13:03:04.614148        \N    \N    \N    0    \N    \N    \N    \N    female
17329    Claire    Bashirian    kay.bode@johnson.net    \N    French Guiana    Lake Gaetanobury    415 Carmela Row    70992-9925    Minnesota    2016-06-29 06:46:00.258766    2016-10-14 13:03:04.618161        \N    \N    \N    0    \N    \N    \N    \N    male
17330    Verla    Conroy    augustus.strosin@nolan.co    \N    Cape Verde    West Audie    34032 Carter Crescent    48628    Connecticut    2016-08-19 03:20:26.945343    2016-10-14 13:03:04.622388        \N    \N    \N    0    \N    \N    \N    \N    female
17331    Casimir    Orn    colten.rolfson@brown.info    \N    Thailand    Careyfort    703 Heidenreich Plaza    74934-9370    Indiana    2016-08-19 21:00:02.123745    2016-10-14 13:03:04.626964        \N    \N    \N    0    \N    \N    \N    \N    male
17332    Richard    Herzog    albina@greenberge.info    \N    Bangladesh    South Adolphberg    3045 Trevion Lights    89564    Idaho    2016-07-19 21:37:43.940397    2016-10-14 13:03:04.632863        \N    \N    \N    0    \N    \N    \N    \N    male
17333    Anibal    Kerluke    candice@feil.co    \N    Libyan Arab Jamahiriya    Port Keaton    43543 Arjun Extension    95854-5355    Kansas    2016-06-22 13:25:03.239094    2016-10-14 13:03:04.637459        \N    \N    \N    0    \N    \N    \N    \N    female
17334    Deonte    Stracke    cletus@nikolausmueller.info    \N    Togo    Lubowitzshire    8736 Alejandra Prairie    30241    Oklahoma    2016-06-25 12:11:01.460833    2016-10-14 13:03:04.643087        \N    \N    \N    0    \N    \N    \N    \N    male
17335    Mack    Wilkinson    nedra_ward@oharamohr.io    \N    Timor-Leste    Lake Dwight    69921 Weissnat Ridge    58344    Wisconsin    2016-09-19 13:43:50.324565    2016-10-14 13:03:04.647466        \N    \N    \N    0    \N    \N    \N    \N    female
17336    Colby    Aufderhar    elliot.corkery@swaniawski.com    \N    Morocco    South Alizaland    32870 Frank Pass    42708-6782    Oklahoma    2016-09-26 09:06:22.886114    2016-10-14 13:03:04.656354        \N    \N    \N    0    \N    \N    \N    \N    male
17337    Barry    Boehm    twila_dietrich@feil.net    \N    Belarus    West Ike    85107 Creola Club    90077    Connecticut    2016-07-02 10:39:59.069395    2016-10-14 13:03:04.660355        \N    \N    \N    0    \N    \N    \N    \N    female
17338    Beryl    Predovic    roxanne@larkin.biz    \N    Gabon    North Estell    528 Hegmann Turnpike    54380-5155    California    2016-08-15 02:41:43.202117    2016-10-14 13:03:04.664343        \N    \N    \N    0    \N    \N    \N    \N    male
17339    Albertha    Ebert    dejon@schaden.org    \N    Mongolia    Swiftland    42048 Koepp Club    41535    West Virginia    2016-07-06 02:46:42.048151    2016-10-14 13:03:04.668857        \N    \N    \N    0    \N    \N    \N    \N    male
17340    Elissa    Kub    shyanne.murray@price.biz    \N    Mexico    Cummeratabury    3337 Stephanie Fields    62563-5629    Illinois    2016-07-23 18:39:25.449787    2016-10-14 13:03:04.673511        \N    \N    \N    0    \N    \N    \N    \N    female
17341    Marcus    Stehr    rodrigo.frami@daniel.io    \N    Kenya    Ardithberg    811 Shanahan Extension    64243-6030    California    2016-07-02 09:50:25.671931    2016-10-14 13:03:04.678242        \N    \N    \N    0    \N    \N    \N    \N    female
17342    Shaun    Abernathy    verona@beatty.co    \N    French Polynesia    Cristhaven    967 Bradtke Fork    33626-5655    Rhode Island    2016-07-24 10:39:28.961779    2016-10-14 13:03:04.682612        \N    \N    \N    0    \N    \N    \N    \N    male
17343    Angelina    Erdman    merlin@koelpin.org    \N    Samoa    South Louiebury    27544 Eva Hills    34901-3803    Idaho    2016-07-03 21:40:54.418844    2016-10-14 13:03:04.686684        \N    \N    \N    0    \N    \N    \N    \N    female
17344    Mustafa    Eichmann    stanton_mitchell@hintzzemlak.biz    \N    France    Lake Sheridan    416 Archibald Spur    61970    Louisiana    2016-08-09 15:53:44.914607    2016-10-14 13:03:04.690467        \N    \N    \N    0    \N    \N    \N    \N    female
17345    Amaya    Cruickshank    jeanette@lockman.com    \N    British Indian Ocean Territory (Chagos Archipelago)    West Yolanda    8626 Devan Camp    87817    Minnesota    2016-08-08 03:33:47.78207    2016-10-14 13:03:04.696037        \N    \N    \N    0    \N    \N    \N    \N    male
17346    Aaliyah    Thiel    hertha@feeney.biz    \N    Haiti    Marlenton    317 Alex Common    47583-6261    Rhode Island    2016-07-25 07:25:46.630602    2016-10-14 13:03:04.700257        \N    \N    \N    0    \N    \N    \N    \N    male
17347    Carlotta    Heathcote    scarlett@fritsch.com    \N    Mauritius    Langoshstad    786 Seth Light    62171    Wisconsin    2016-06-24 00:50:56.413281    2016-10-14 13:03:04.70443        \N    \N    \N    0    \N    \N    \N    \N    male
17348    David    Kutch    michel@jones.com    \N    Dominican Republic    Walshview    60085 Watsica Station    61838-3665    New Hampshire    2016-09-15 10:52:17.075431    2016-10-14 13:03:04.708383        \N    \N    \N    0    \N    \N    \N    \N    female
17349    Monserrate    Carter    nash.wehner@cronin.org    \N    Saint Pierre and Miquelon    Johnsonside    502 Sawayn Roads    81278    Tennessee    2016-07-15 13:02:31.25839    2016-10-14 13:03:04.712222        \N    \N    \N    0    \N    \N    \N    \N    female
17350    Casper    Lesch    stanton@hermann.info    \N    Nepal    West Shannon    6643 Borer Groves    14317    Virginia    2016-08-04 03:27:58.282004    2016-10-14 13:03:04.716211        \N    \N    \N    0    \N    \N    \N    \N    male
17351    Flavie    Zieme    david.hudson@morar.info    \N    Mexico    East Fordmouth    633 Kaitlyn Summit    51534    North Carolina    2016-07-05 16:50:06.974327    2016-10-14 13:03:04.720418        \N    \N    \N    0    \N    \N    \N    \N    male
17352    Jalon    Bergnaum    edwina_sanford@lemke.io    \N    Mauritius    Smithamfort    57721 Verla Mews    28391    North Carolina    2016-09-27 09:41:40.797726    2016-10-14 13:03:04.72431        \N    \N    \N    0    \N    \N    \N    \N    male
17353    Weldon    Frami    juston_sipes@fritschroberts.org    \N    Algeria    Port Harrisonport    8969 Mckenzie Dam    29372    Kansas    2016-07-22 23:51:14.211585    2016-10-14 13:03:04.728179        \N    \N    \N    0    \N    \N    \N    \N    male
17354    Isai    Bergstrom    marlon@armstrong.com    \N    Cayman Islands    Marlonton    973 Austin Cliffs    11328    Wisconsin    2016-08-28 19:39:30.896925    2016-10-14 13:03:04.732059        \N    \N    \N    0    \N    \N    \N    \N    male
17355    Frederic    Jenkins    oswaldo@watsica.name    \N    Saint Martin    Dantown    5764 Kendall Spurs    29054    North Carolina    2016-07-11 01:00:06.161558    2016-10-14 13:03:04.736025        \N    \N    \N    0    \N    \N    \N    \N    male
17356    Aaron    Hand    holden@kuphalhalvorson.biz    \N    Barbados    Port Catharine    2656 Rempel Mills    54448-3113    North Carolina    2016-07-31 15:29:45.3949    2016-10-14 13:03:04.739931        \N    \N    \N    0    \N    \N    \N    \N    female
17357    Ethel    Kessler    jayne.bosco@creminwyman.biz    \N    Bouvet Island (Bouvetoya)    Schoenborough    7446 Kassulke River    90618    Virginia    2016-09-17 03:48:04.090556    2016-10-14 13:03:04.744101        \N    \N    \N    0    \N    \N    \N    \N    female
17358    Jamal    Koch    marcelle.bernhard@lehner.io    \N    Virgin Islands, U.S.    Port Richard    922 King Curve    79976-8745    Hawaii    2016-08-06 13:57:42.285922    2016-10-14 13:03:04.748188        \N    \N    \N    0    \N    \N    \N    \N    male
17359    Joannie    Lockman    jo@tromp.co    \N    Poland    West Lauryn    693 Rodrick Fields    27808    Illinois    2016-08-26 17:29:11.025259    2016-10-14 13:03:04.752821        \N    \N    \N    0    \N    \N    \N    \N    male
17360    Sarah    Ullrich    estrella.schmeler@gusikowski.net    \N    Czech Republic    Davismouth    74352 Cremin Well    31938-9806    Maine    2016-09-05 10:49:31.767914    2016-10-14 13:03:04.757019        \N    \N    \N    0    \N    \N    \N    \N    male
17361    Mabel    Daugherty    geo@schowalter.co    \N    Georgia    New Elnora    463 Nels Mission    93595    South Carolina    2016-09-05 07:35:13.511964    2016-10-14 13:03:04.761743        \N    \N    \N    0    \N    \N    \N    \N    male
17362    Neoma    McDermott    jodie.heller@leschrohan.org    \N    Niue    West Judgeton    250 Ezra Forge    94518    Utah    2016-08-22 10:16:40.838238    2016-10-14 13:03:04.765822        \N    \N    \N    0    \N    \N    \N    \N    male
17363    Jonathon    Berge    joana.simonis@jacobsreilly.name    \N    Mexico    Ondrickaberg    211 Damian Inlet    88247    Pennsylvania    2016-09-13 14:43:05.442488    2016-10-14 13:03:04.769793        \N    \N    \N    0    \N    \N    \N    \N    female
17364    Bobby    Bartell    bobbie@joneskling.com    \N    Saudi Arabia    Shanieberg    8771 Stefan Light    83389-5117    Idaho    2016-08-07 17:31:26.086365    2016-10-14 13:03:04.774192        \N    \N    \N    0    \N    \N    \N    \N    female
17365    Eulalia    Rempel    otho_bosco@lang.co    \N    Equatorial Guinea    Hicklechester    496 Kylee Curve    62499-4106    Massachusetts    2016-08-25 09:51:46.982497    2016-10-14 13:03:04.778442        \N    \N    \N    0    \N    \N    \N    \N    male
17366    Sophie    Bashirian    tomas@feest.org    \N    Falkland Islands (Malvinas)    Lake Eulaliaside    90561 Kayleigh Fork    82903-2760    Hawaii    2016-08-22 15:40:39.896335    2016-10-14 13:03:04.782959        \N    \N    \N    0    \N    \N    \N    \N    female
17367    Bobby    Kemmer    macey.beahan@abernathy.co    \N    Lithuania    West Marlinbury    561 Hubert Knolls    99230-6457    New Hampshire    2016-08-04 17:04:44.938957    2016-10-14 13:03:04.787678        \N    \N    \N    0    \N    \N    \N    \N    female
17368    Bulah    Berge    noemi_gerhold@schoen.com    \N    Turks and Caicos Islands    Deckowbury    4089 Hahn Meadow    82867    California    2016-08-04 23:10:09.431416    2016-10-14 13:03:04.792294        \N    \N    \N    0    \N    \N    \N    \N    male
17369    Cheyenne    Brakus    alex@hoegerkiehn.org    \N    French Polynesia    Reingermouth    4082 Mayer Stream    44049    Mississippi    2016-08-17 01:31:47.643996    2016-10-14 13:03:04.796853        \N    \N    \N    0    \N    \N    \N    \N    male
17370    Daren    Turner    iva_metz@pfefferschmeler.info    \N    Slovakia (Slovak Republic)    Westleyshire    6702 Brock Route    93442-7348    Arkansas    2016-08-19 07:50:09.693535    2016-10-14 13:03:04.801156        \N    \N    \N    0    \N    \N    \N    \N    female
17371    Zachary    Deckow    valentin@greenholtskiles.name    \N    Montenegro    Lake Rossie    3916 Janice Lake    20448-4765    Delaware    2016-06-27 23:37:03.329296    2016-10-14 13:03:04.805215        \N    \N    \N    0    \N    \N    \N    \N    female
17372    Vincent    Casper    shawna.heaney@moriette.biz    \N    Cocos (Keeling) Islands    West Odell    1229 Alayna Way    31415-7534    Virginia    2016-07-22 12:06:33.284548    2016-10-14 13:03:04.809359        \N    \N    \N    0    \N    \N    \N    \N    female
17373    Andrew    Hoppe    alverta@stromanheathcote.io    \N    Costa Rica    Reinaside    42797 Little Prairie    42260    Vermont    2016-08-09 02:15:01.470976    2016-10-14 13:03:04.82239        \N    \N    \N    0    \N    \N    \N    \N    female
17374    Sarah    Jaskolski    ettie@terry.name    \N    Guinea-Bissau    Ziemannberg    3478 Windler Turnpike    85315-0223    Washington    2016-08-08 23:56:41.093751    2016-10-14 13:03:04.826978        \N    \N    \N    0    \N    \N    \N    \N    female
17375    Melisa    Larson    derrick@langmann.io    \N    Germany    West Damariston    416 Zulauf Via    40399    Florida    2016-06-22 10:21:01.099467    2016-10-14 13:03:04.831476        \N    \N    \N    0    \N    \N    \N    \N    female
17376    Leilani    Jaskolski    jeromy_christiansen@lebsackharvey.name    \N    Solomon Islands    West Cynthiashire    5646 Hand Centers    14448-5063    South Carolina    2016-08-11 23:16:35.649354    2016-10-14 13:03:04.835495        \N    \N    \N    0    \N    \N    \N    \N    female
17377    Gertrude    Williamson    river.ernser@feilolson.biz    \N    Hong Kong    New Casandra    6058 Jadyn Path    93297    New York    2016-08-22 07:33:45.41139    2016-10-14 13:03:04.839327        \N    \N    \N    0    \N    \N    \N    \N    male
17378    Omari    Huel    lurline.conroy@kshlerin.io    \N    Tunisia    South Heidishire    791 Karson Plaza    25928-7776    Tennessee    2016-09-21 20:17:16.33842    2016-10-14 13:03:04.843455        \N    \N    \N    0    \N    \N    \N    \N    male
17379    Titus    O'Hara    jerrell_connelly@wiza.co    \N    Cameroon    Wisozkport    953 Raul Wall    32657-4941    Utah    2016-09-26 14:52:44.019407    2016-10-14 13:03:04.847413        \N    \N    \N    0    \N    \N    \N    \N    female
17380    Harvey    Spencer    timmothy@murphyfranecki.net    \N    Djibouti    Kochton    830 Jacobson Village    53285-5145    Washington    2016-09-08 16:57:44.225838    2016-10-14 13:03:04.851376        \N    \N    \N    0    \N    \N    \N    \N    female
17381    Destinee    Powlowski    wilson_ohara@stiedemann.name    \N    Lithuania    Ottoshire    376 Lukas Locks    23246    Ohio    2016-07-22 14:34:23.434183    2016-10-14 13:03:04.8562        \N    \N    \N    0    \N    \N    \N    \N    female
17382    River    Becker    vanea@rippinkautzer.name    \N    Hungary    Ezekielstad    658 Jacobi Station    44086-4473    South Carolina    2016-09-28 17:32:05.425849    2016-10-14 13:03:04.860428        \N    \N    \N    0    \N    \N    \N    \N    female
17383    Glennie    Johnson    dashawn.brown@robel.biz    \N    Turkey    Lake Amy    40691 Gerson Loaf    68874-6938    Georgia    2016-09-13 08:56:56.262951    2016-10-14 13:03:04.864342        \N    \N    \N    0    \N    \N    \N    \N    male
17384    Suzanne    Jacobson    bradford_heller@kling.net    \N    Japan    Lake Ceciliachester    20269 Andreanne Lane    40274-4536    North Dakota    2016-07-27 18:12:59.876135    2016-10-14 13:03:04.868236        \N    \N    \N    0    \N    \N    \N    \N    male
17385    Arlo    D'Amore    kaandra@klein.com    \N    United States Minor Outlying Islands    West Imani    74563 Pauline Extensions    98745    Wyoming    2016-09-21 05:23:25.822961    2016-10-14 13:03:04.872022        \N    \N    \N    0    \N    \N    \N    \N    male
17386    Emory    Mayer    bettye@ullrich.name    \N    Aruba    Zemlakchester    896 Powlowski Route    91265    Alaska    2016-08-09 06:56:29.24551    2016-10-14 13:03:04.87595        \N    \N    \N    0    \N    \N    \N    \N    female
17387    Carmella    Pollich    nannie@considine.io    \N    Georgia    McCulloughshire    66129 Wisoky Common    78333    Georgia    2016-08-17 19:45:05.184829    2016-10-14 13:03:04.880168        \N    \N    \N    0    \N    \N    \N    \N    male
17388    Carlotta    Luettgen    lenora@hills.com    \N    Yemen    Port Rethaton    3228 Schimmel Well    26040-1416    Michigan    2016-07-21 04:25:19.061855    2016-10-14 13:03:04.884507        \N    \N    \N    0    \N    \N    \N    \N    male
17389    Yoshiko    Hettinger    noah@runolfonprosacco.org    \N    Portugal    West Laura    19701 Leonard Falls    64272    New York    2016-09-20 23:19:55.678387    2016-10-14 13:03:04.888516        \N    \N    \N    0    \N    \N    \N    \N    female
17390    Arlene    Ryan    burley@baumbachcole.net    \N    Martinique    Romagueramouth    605 Marian Bypass    14049-5318    Massachusetts    2016-08-16 21:46:35.911718    2016-10-14 13:03:04.892591        \N    \N    \N    0    \N    \N    \N    \N    female
17439    Lorenzo    Nikolaus    einar.dietrich@robel.biz    \N    Puerto Rico    East Maymie    505 Bogan Greens    94587    Oklahoma    2016-07-12 17:43:21.14827    2016-10-14 13:03:04.896488        \N    \N    \N    0    \N    \N    \N    \N    female
17391    Micheal    Kunze    wilber_quitzon@auer.name    \N    Cocos (Keeling) Islands    West Dustinfort    446 Itzel Roads    82839    Florida    2016-07-06 14:50:56.586298    2016-10-14 13:03:04.900468        \N    \N    \N    0    \N    \N    \N    \N    female
17392    Alan    Altenwerth    selina@adamsfeeney.co    \N    British Indian Ocean Territory (Chagos Archipelago)    Port Lennymouth    49009 Hamill Ranch    36456-4218    Indiana    2016-08-28 05:41:41.119346    2016-10-14 13:03:04.904791        \N    \N    \N    0    \N    \N    \N    \N    female
17393    Demetris    Beatty    diana_robel@ziemann.net    \N    Cuba    New Chynaville    290 Brekke Circles    12968-2035    Georgia    2016-09-28 21:13:24.722923    2016-10-14 13:03:04.913814        \N    \N    \N    0    \N    \N    \N    \N    male
17394    Anya    Blick    esmeralda.veum@cruickshank.info    \N    Romania    North Krystinaport    44176 Rippin Fords    36767    South Dakota    2016-09-14 09:13:43.730187    2016-10-14 13:03:04.918113        \N    \N    \N    0    \N    \N    \N    \N    male
17395    Stephon    Schmidt    vito.kutch@stoltenberg.com    \N    Jersey    Beermouth    10840 Schinner Stream    91682    Oregon    2016-07-26 01:04:03.854046    2016-10-14 13:03:04.922134        \N    \N    \N    0    \N    \N    \N    \N    female
17396    Oma    Dietrich    bryce@oberbrunner.net    \N    Angola    Larsonberg    1295 Wunsch Square    19276    Kentucky    2016-06-30 04:34:56.383866    2016-10-14 13:03:04.926074        \N    \N    \N    0    \N    \N    \N    \N    male
17397    Jeff    Barton    bonnie_hegmann@davis.co    \N    Cameroon    Hoppebury    908 Dicki Courts    16322    Maryland    2016-09-13 00:05:28.944839    2016-10-14 13:03:04.930184        \N    \N    \N    0    \N    \N    \N    \N    male
17398    Kay    King    delia@crona.biz    \N    Malta    D'Amoreland    958 Myah Trafficway    13113-0972    North Carolina    2016-09-21 05:25:47.527676    2016-10-14 13:03:04.934408        \N    \N    \N    0    \N    \N    \N    \N    female
17399    Danielle    Koepp    deshawn@prohaskacain.name    \N    Holy See (Vatican City State)    Okunevatown    90924 Preston Field    59300-0084    Texas    2016-09-06 17:17:23.671301    2016-10-14 13:03:04.938705        \N    \N    \N    0    \N    \N    \N    \N    male
17400    Layla    Schmitt    torey@fritschnienow.co    \N    Lebanon    Keltontown    3895 Francis Walks    88556    Nevada    2016-08-22 08:54:56.972738    2016-10-14 13:03:04.943183        \N    \N    \N    0    \N    \N    \N    \N    female
17401    Kenyatta    Langworth    henriette.littel@predovicmann.org    \N    Japan    Markside    4597 Leola Hills    64981    Nevada    2016-07-27 05:47:04.739054    2016-10-14 13:03:04.947231        \N    \N    \N    0    \N    \N    \N    \N    male
17402    Edison    Denesik    alyson@schuster.org    \N    Peru    Bernadinechester    72117 Lionel Centers    73297    Washington    2016-08-06 12:11:49.670688    2016-10-14 13:03:04.9514        \N    \N    \N    0    \N    \N    \N    \N    male
17403    Rogers    Legros    robyn.cronin@mohr.org    \N    Ireland    Rosemaryburgh    4907 Raynor Coves    91736-4340    Delaware    2016-07-19 14:43:40.503447    2016-10-14 13:03:04.955454        \N    \N    \N    0    \N    \N    \N    \N    female
17404    Noe    Hayes    willy.quigley@rosenbaum.io    \N    Martinique    Blickborough    37462 Hamill Mission    90261-4552    Georgia    2016-07-13 05:06:09.072657    2016-10-14 13:03:04.959275        \N    \N    \N    0    \N    \N    \N    \N    female
17405    Damion    Toy    vada_murazik@shields.io    \N    Ukraine    Schmelerport    254 Kayli Pass    36462    Minnesota    2016-07-14 09:04:12.92584    2016-10-14 13:03:04.96304        \N    \N    \N    0    \N    \N    \N    \N    male
17406    Brisa    Lynch    ivory_lynch@raumayer.net    \N    Indonesia    Christiansenburgh    36812 Zion Fort    93843-7764    Hawaii    2016-07-17 02:39:11.024119    2016-10-14 13:03:04.966954        \N    \N    \N    0    \N    \N    \N    \N    female
17407    Foster    Fisher    alice@jenkins.co    \N    Palau    Port Franco    871 Rempel Harbors    39121    Missouri    2016-09-04 22:04:24.345797    2016-10-14 13:03:04.970754        \N    \N    \N    0    \N    \N    \N    \N    female
17408    Alexandria    Rice    lesley@labadiemcclure.name    \N    Ecuador    Lake Cordie    405 Lubowitz Flat    81243-1894    Pennsylvania    2016-09-18 12:02:44.527704    2016-10-14 13:03:04.974897        \N    \N    \N    0    \N    \N    \N    \N    male
17409    Sandrine    Blanda    augustus@rempelkeler.co    \N    Isle of Man    South Aimee    44309 Fadel Gardens    44055-2182    Tennessee    2016-07-26 08:24:53.796098    2016-10-14 13:03:04.979267        \N    \N    \N    0    \N    \N    \N    \N    female
17410    Christina    Towne    jany@rathzboncak.biz    \N    Bolivia    Pfefferton    27984 Madelynn Pine    52900-6283    Maine    2016-09-25 00:26:46.729222    2016-10-14 13:03:04.983203        \N    \N    \N    0    \N    \N    \N    \N    female
17411    Grace    Hahn    citlalli@treutel.name    \N    Rwanda    Port John    15074 Myrtice Route    12610    South Carolina    2016-08-30 06:21:49.072151    2016-10-14 13:03:04.987209        \N    \N    \N    0    \N    \N    \N    \N    male
17412    Dessie    Wuckert    edmond@welch.net    \N    Czech Republic    New Laurenmouth    169 Willa Oval    91669-4978    Virginia    2016-08-19 13:49:28.297734    2016-10-14 13:03:04.991381        \N    \N    \N    0    \N    \N    \N    \N    female
17413    Raina    Bailey    freddy@frami.co    \N    El Salvador    Leschview    9820 Rodriguez Motorway    29760    Alabama    2016-07-02 05:42:21.217144    2016-10-14 13:03:04.995285        \N    \N    \N    0    \N    \N    \N    \N    male
17414    Oscar    Wolf    vergie@breitenberg.net    \N    Jordan    Wendellside    2974 Blanche Orchard    70320-2337    Alaska    2016-09-19 02:57:48.912902    2016-10-14 13:03:04.999256        \N    \N    \N    0    \N    \N    \N    \N    male
17415    Darrick    Leuschke    chaz.treutel@dubuque.io    \N    Saint Barthelemy    Lake Juana    8429 Josiane Estates    28994    Alaska    2016-08-08 06:05:57.190776    2016-10-14 13:03:05.003336        \N    \N    \N    0    \N    \N    \N    \N    male
17416    Hertha    Greenfelder    juliet@grimes.io    \N    Lao People's Democratic Republic    Kshlerinland    927 Fausto Burg    96019    Arkansas    2016-08-04 15:16:03.671088    2016-10-14 13:03:05.007209        \N    \N    \N    0    \N    \N    \N    \N    male
17417    Bulah    Goyette    erling.johnston@wolffhickle.info    \N    Burundi    Stefanieburgh    5522 Emard Mountains    20273-7256    Maine    2016-06-23 15:51:41.305243    2016-10-14 13:03:05.011176        \N    \N    \N    0    \N    \N    \N    \N    female
17418    Shanel    Huel    efren.schaefer@mclaughlinkonopelski.net    \N    Djibouti    Hagenesshire    3917 Shanahan Street    17154    Texas    2016-09-20 21:57:36.960791    2016-10-14 13:03:05.015085        \N    \N    \N    0    \N    \N    \N    \N    male
17419    Raymond    Hilll    ru@zboncakbarton.info    \N    Mongolia    Lake Carlichester    787 Gideon Throughway    47840    Alabama    2016-07-09 03:00:28.484072    2016-10-14 13:03:05.019218        \N    \N    \N    0    \N    \N    \N    \N    male
17420    Micaela    Hills    jason_kunde@jacobs.io    \N    Western Sahara    Michaelville    755 Konopelski Glens    39842-9561    Iowa    2016-09-25 15:18:43.906816    2016-10-14 13:03:05.023323        \N    \N    \N    0    \N    \N    \N    \N    male
17421    Tiara    Leuschke    maxime@okon.io    \N    Vanuatu    Bartolettiview    9412 Haag Highway    28447-8912    West Virginia    2016-09-12 22:00:44.238905    2016-10-14 13:03:05.027359        \N    \N    \N    0    \N    \N    \N    \N    female
17422    Manley    Ullrich    max@ernser.io    \N    Iceland    East Derek    5477 German Place    75622-2852    Alabama    2016-08-15 18:11:55.668396    2016-10-14 13:03:05.034319        \N    \N    \N    0    \N    \N    \N    \N    male
17423    Celia    Kilback    abigail.graham@schultz.biz    \N    Vanuatu    Lebsackville    782 Blanche Views    81415    Texas    2016-09-14 10:41:03.866673    2016-10-14 13:03:05.039663        \N    \N    \N    0    \N    \N    \N    \N    male
17424    Dylan    Lowe    aracely@marquardt.biz    \N    Paraguay    Predovicfort    89821 Cronin Lakes    92118    Maryland    2016-09-15 11:32:08.846266    2016-10-14 13:03:05.044309        \N    \N    \N    0    \N    \N    \N    \N    male
17425    Conrad    Marks    gretchen@little.biz    \N    Afghanistan    Schmitttown    90921 Lue Mall    18401-9657    West Virginia    2016-09-23 19:58:22.534235    2016-10-14 13:03:05.048375        \N    \N    \N    0    \N    \N    \N    \N    female
17426    Wayne    Cruickshank    akeem_thompson@pagacwatsica.biz    \N    Canada    Sawaynberg    31696 Keanu Curve    91401-3857    Maryland    2016-08-18 07:12:16.651511    2016-10-14 13:03:05.052546        \N    \N    \N    0    \N    \N    \N    \N    female
17427    Deborah    Langosh    tristian@jones.biz    \N    Cape Verde    Rohanfort    1794 Schimmel Centers    29601    South Dakota    2016-09-14 04:44:29.535124    2016-10-14 13:03:05.057077        \N    \N    \N    0    \N    \N    \N    \N    male
17428    Wilfred    Conroy    marcia.okon@abbottstracke.biz    \N    Reunion    Altenwerthborough    19436 Dietrich Ways    29222    Louisiana    2016-08-08 01:55:28.571393    2016-10-14 13:03:05.061237        \N    \N    \N    0    \N    \N    \N    \N    male
17429    Tad    Herman    angelita_lowe@zieme.com    \N    United Arab Emirates    Douglasmouth    4269 Preston Trace    43886-8280    Washington    2016-07-15 00:04:57.667985    2016-10-14 13:03:05.065167        \N    \N    \N    0    \N    \N    \N    \N    male
17430    Anabelle    Brekke    fred_lindgren@spencerwill.name    \N    Sweden    O'Keefestad    15349 Cormier Hollow    78649    Minnesota    2016-09-28 12:07:19.347323    2016-10-14 13:03:05.069421        \N    \N    \N    0    \N    \N    \N    \N    male
17431    Henderson    Keebler    glennie.waelchi@mohr.com    \N    Macao    Marianneshire    148 Janiya Heights    64189    South Dakota    2016-09-22 15:43:19.749119    2016-10-14 13:03:05.073696        \N    \N    \N    0    \N    \N    \N    \N    male
17432    Omer    Powlowski    emma@beattykozey.org    \N    Czech Republic    West Colinport    82888 Purdy Walks    74224-2350    Illinois    2016-07-06 01:52:25.849097    2016-10-14 13:03:05.07783        \N    \N    \N    0    \N    \N    \N    \N    male
17433    Tiana    Waters    lyla_quigley@kuhlmanmonahan.io    \N    Libyan Arab Jamahiriya    Marioshire    892 Perry Fall    14699    South Carolina    2016-07-10 22:53:31.853599    2016-10-14 13:03:05.081757        \N    \N    \N    0    \N    \N    \N    \N    female
17434    Eloise    Rice    dina_stehr@weimannruel.org    \N    Marshall Islands    New Alicia    385 Issac Landing    10030    New Hampshire    2016-07-14 15:53:12.307031    2016-10-14 13:03:05.085806        \N    \N    \N    0    \N    \N    \N    \N    male
17435    Frederic    Schoen    alfredo@harber.io    \N    Cote d'Ivoire    East Eleanora    137 Balistreri Plains    15433-1705    Connecticut    2016-08-08 11:15:30.025164    2016-10-14 13:03:05.08984        \N    \N    \N    0    \N    \N    \N    \N    male
17436    Chanelle    Flatley    lisandro_mckenzie@handbeier.io    \N    Tunisia    Dejonton    9157 Walker Track    92543-6190    Texas    2016-08-15 08:38:03.151362    2016-10-14 13:03:05.098923        \N    \N    \N    0    \N    \N    \N    \N    male
17437    Angelica    Lehner    malika@kleincremin.org    \N    Macao    Port Imelda    941 Pfeffer Lane    85005-0046    Texas    2016-07-20 14:58:16.662948    2016-10-14 13:03:05.103012        \N    \N    \N    0    \N    \N    \N    \N    male
17438    Vernice    Quitzon    shawna_stoltenberg@reichel.co    \N    Thailand    Linahaven    41213 Frances Pine    71046    North Carolina    2016-09-11 04:17:41.102138    2016-10-14 13:03:05.110954        \N    \N    \N    0    \N    \N    \N    \N    female
17440    Matteo    Cassin    cooper@ko.biz    \N    United Arab Emirates    Dollyburgh    11379 Kemmer Mountain    32840    Nebraska    2016-08-11 20:23:49.42644    2016-10-14 13:03:05.114905        \N    \N    \N    0    \N    \N    \N    \N    female
17441    Treva    Huel    joany@torp.name    \N    Sri Lanka    Port Danland    430 Ankunding Centers    79677-9529    Maine    2016-08-03 14:10:25.169789    2016-10-14 13:03:05.11909        \N    \N    \N    0    \N    \N    \N    \N    female
17442    Ona    White    jazlyn@bartell.io    \N    Mexico    Roweview    35692 Brionna Fall    10144-7339    Florida    2016-08-21 19:43:15.330838    2016-10-14 13:03:05.123129        \N    \N    \N    0    \N    \N    \N    \N    female
17443    Rosalind    Metz    layla@schumm.name    \N    Cuba    Mauriceberg    3210 Bashirian Spring    47445-6712    North Dakota    2016-08-12 23:14:24.442424    2016-10-14 13:03:05.12742        \N    \N    \N    0    \N    \N    \N    \N    female
17444    Malcolm    Stokes    don@rolfson.io    \N    India    New Stephanytown    2516 Karelle Spurs    53499-7006    Connecticut    2016-09-14 22:51:00.842952    2016-10-14 13:03:05.131553        \N    \N    \N    0    \N    \N    \N    \N    male
17445    Ruben    Deckow    hardy@hirthe.info    \N    Finland    Framimouth    9827 Rosenbaum Spring    83718    Mississippi    2016-08-26 18:10:53.194753    2016-10-14 13:03:05.135556        \N    \N    \N    0    \N    \N    \N    \N    male
17446    Dustin    O'Keefe    christelle.mueller@schimmelledner.io    \N    Lao People's Democratic Republic    Minnieborough    3484 Lehner Pines    17573    New York    2016-09-22 23:19:42.54842    2016-10-14 13:03:05.139412        \N    \N    \N    0    \N    \N    \N    \N    male
17447    Garth    Gulgowski    jerrod_bogisich@barton.com    \N    Lithuania    Stephaniaside    2992 Hettinger Estates    10059-4221    South Dakota    2016-08-15 08:00:21.447994    2016-10-14 13:03:05.143464        \N    \N    \N    0    \N    \N    \N    \N    female
17448    Bridie    Donnelly    lempi@spinkacollins.com    \N    Togo    Alisafurt    79791 Lubowitz Spur    45664-0542    Minnesota    2016-09-29 02:54:16.768158    2016-10-14 13:03:05.147685        \N    \N    \N    0    \N    \N    \N    \N    male
17449    Dedric    Flatley    laila@dibbert.name    \N    United States Minor Outlying Islands    Griffinfort    637 Constance Skyway    77523    Hawaii    2016-09-12 02:41:09.981921    2016-10-14 13:03:05.152401        \N    \N    \N    0    \N    \N    \N    \N    male
17450    Freddie    Mayer    brad.homenick@kozeydaugherty.com    \N    Slovakia (Slovak Republic)    Vandervortport    15865 Bergstrom Inlet    52167-4128    Mississippi    2016-07-13 14:19:38.134081    2016-10-14 13:03:05.156524        \N    \N    \N    0    \N    \N    \N    \N    male
17451    Alta    Feest    moriah_homenick@mante.info    \N    Holy See (Vatican City State)    East Rachelburgh    66371 Mertz Green    42766    Pennsylvania    2016-06-27 05:01:54.0984    2016-10-14 13:03:05.161245        \N    \N    \N    0    \N    \N    \N    \N    male
17453    Merritt    White    prudence_schowalter@wehner.info    \N    Senegal    Ullrichhaven    6118 Jerald Stravenue    16838    Alaska    2016-09-16 18:58:16.859066    2016-10-14 13:03:05.166012        \N    \N    \N    0    \N    \N    \N    \N    female
17454    America    Leuschke    emmanuel_leuschke@cronako.biz    \N    Andorra    East Anya    11381 Homenick Pass    95499    Wisconsin    2016-07-14 16:53:04.806655    2016-10-14 13:03:05.170322        \N    \N    \N    0    \N    \N    \N    \N    female
17455    Ramon    Bergnaum    rose@turcottecollins.biz    \N    Christmas Island    Roycefort    43484 Quitzon Crossing    60940    Alaska    2016-09-26 21:15:21.125888    2016-10-14 13:03:05.1743        \N    \N    \N    0    \N    \N    \N    \N    male
17456    Sabryna    Labadie    milan_emmerich@kulaswisoky.co    \N    Denmark    Parisianfort    7485 Eichmann Mountains    97527    Idaho    2016-09-10 07:31:58.529179    2016-10-14 13:03:05.178403        \N    \N    \N    0    \N    \N    \N    \N    male
17457    Alessandra    Ebert    toby@herman.name    \N    Australia    North Cameronshire    40440 Lessie River    43155    New Hampshire    2016-08-16 02:49:55.548763    2016-10-14 13:03:05.182765        \N    \N    \N    0    \N    \N    \N    \N    male
17458    Tatyana    Altenwerth    dino.parisian@mantelarkin.io    \N    Argentina    Runolfsdottirtown    4501 Gerhold Lock    67887-4259    Connecticut    2016-07-11 11:32:10.562949    2016-10-14 13:03:05.187321        \N    \N    \N    0    \N    \N    \N    \N    female
17459    Burdette    Hintz    edison.block@schuppe.biz    \N    Papua New Guinea    Schmittbury    8874 Edison Estates    59978    Mississippi    2016-08-25 16:52:46.462237    2016-10-14 13:03:05.191824        \N    \N    \N    0    \N    \N    \N    \N    female
17460    Dominique    Paucek    murray.bogan@sanford.co    \N    Western Sahara    Aftonhaven    371 Becker Branch    24289-4504    Oklahoma    2016-08-27 18:10:33.941895    2016-10-14 13:03:05.196053        \N    \N    \N    0    \N    \N    \N    \N    female
17461    Kaycee    Langworth    theo@schaefer.org    \N    Turkmenistan    East Mya    634 Brakus Canyon    14081-2880    Alabama    2016-06-24 16:07:51.65729    2016-10-14 13:03:05.200393        \N    \N    \N    0    \N    \N    \N    \N    female
17462    Robb    Schneider    austen.lindgren@schinner.net    \N    Lebanon    North Barbara    151 Lebsack Mount    42483-3998    Maryland    2016-09-28 17:50:40.627546    2016-10-14 13:03:05.204484        \N    \N    \N    0    \N    \N    \N    \N    female
17463    Cordell    Waters    carmelo_hilll@champlin.name    \N    Dominica    Zeldafurt    40796 Ressie Plaza    85264-0723    Indiana    2016-09-03 11:44:08.247925    2016-10-14 13:03:05.20835        \N    \N    \N    0    \N    \N    \N    \N    female
17464    Gilberto    O'Conner    kayleigh_schmeler@towne.org    \N    Eritrea    Jakobtown    983 Elza Hills    36582    Nebraska    2016-06-29 22:08:04.151491    2016-10-14 13:03:05.212353        \N    \N    \N    0    \N    \N    \N    \N    female
17465    Richie    Strosin    derick@bernhard.co    \N    Palestinian Territory    Lake Jarretfurt    6459 Parisian Canyon    62708-6577    Florida    2016-08-03 23:19:16.700425    2016-10-14 13:03:05.216291        \N    \N    \N    0    \N    \N    \N    \N    male
17466    Gaetano    Schowalter    raven_brown@cruickshank.biz    \N    Mali    South Molliehaven    10403 Kovacek Manors    91521-6183    Maine    2016-07-10 04:34:58.136562    2016-10-14 13:03:05.220731        \N    \N    \N    0    \N    \N    \N    \N    male
17467    Herman    Stanton    tristin.conroy@kreiger.org    \N    Venezuela    New Missouriview    34474 Theron Turnpike    66722-0444    Indiana    2016-07-03 17:44:00.072526    2016-10-14 13:03:05.228367        \N    \N    \N    0    \N    \N    \N    \N    female
17468    Andreane    Rowe    percival@olsonharvey.name    \N    Zimbabwe    Lake Carolanne    33623 Ardella Meadow    33467    Delaware    2016-08-14 01:53:34.892248    2016-10-14 13:03:05.233251        \N    \N    \N    0    \N    \N    \N    \N    female
17469    Arjun    Kerluke    shyann@weber.name    \N    Mayotte    Willmsberg    406 Arno Points    31482-7611    New York    2016-07-26 00:04:48.524798    2016-10-14 13:03:05.238075        \N    \N    \N    0    \N    \N    \N    \N    male
17470    Adrienne    Satterfield    noemi.pfannerstill@grant.co    \N    Panama    Karlichester    34270 Shawn Mills    43754-1576    Nevada    2016-07-15 00:16:17.617006    2016-10-14 13:03:05.242499        \N    \N    \N    0    \N    \N    \N    \N    male
17471    Dina    Keeling    jamaal@cronin.biz    \N    Greenland    Port Isac    54029 Dorothy Road    37283    North Carolina    2016-07-05 07:02:46.759029    2016-10-14 13:03:05.246659        \N    \N    \N    0    \N    \N    \N    \N    male
17472    Terrill    Hessel    adrain.collier@wiegand.org    \N    Vietnam    Port Elseview    5579 Dee Spring    52927-6094    Alaska    2016-07-16 02:54:03.44777    2016-10-14 13:03:05.250971        \N    \N    \N    0    \N    \N    \N    \N    male
17473    Mack    Kreiger    juston@damoreschultz.net    \N    Reunion    Port Ladariusborough    17339 Mueller Freeway    66311    South Carolina    2016-09-04 17:57:07.05284    2016-10-14 13:03:05.25626        \N    \N    \N    0    \N    \N    \N    \N    male
17474    Audrey    Schmeler    ebony_lehner@hilpert.io    \N    Mauritania    Dickinsonshire    51038 Runolfsson Burgs    84404-4966    Wyoming    2016-08-28 12:22:49.073531    2016-10-14 13:03:05.260398        \N    \N    \N    0    \N    \N    \N    \N    female
17475    Laisha    Heaney    aurelie@kulasmurazik.com    \N    Marshall Islands    Lake Ahmed    32459 Vickie Villages    19639-8601    Wyoming    2016-09-12 10:00:28.046832    2016-10-14 13:03:05.264653        \N    \N    \N    0    \N    \N    \N    \N    female
17476    Makenna    Bradtke    frederik.streich@berge.io    \N    Maldives    Dahliachester    8883 Turner Parkway    40861-9254    North Carolina    2016-07-23 18:17:42.785275    2016-10-14 13:03:05.269344        \N    \N    \N    0    \N    \N    \N    \N    male
17477    Winifred    Fay    noemie_dooley@tremblay.info    \N    Serbia    West Marlonchester    83232 Romaguera Lodge    26432-9059    Kansas    2016-09-13 08:38:08.982832    2016-10-14 13:03:05.27393        \N    \N    \N    0    \N    \N    \N    \N    female
17479    Wallace    Little    santos_rippin@olsonturcotte.net    \N    New Zealand    Port Camronport    6163 Lourdes Crescent    11655-8287    Alabama    2016-06-25 21:59:47.735575    2016-10-14 13:03:05.278221        \N    \N    \N    0    \N    \N    \N    \N    female
17480    Libby    Feest    dulce@monahangrady.org    \N    Nauru    Lake Johnson    99430 Brody Ridge    53281-3714    New Mexico    2016-09-24 18:07:37.129796    2016-10-14 13:03:05.284015        \N    \N    \N    0    \N    \N    \N    \N    female
17481    Sarina    Hodkiewicz    aglae@kuvalis.biz    \N    Macedonia    Haleyfort    755 Mueller Avenue    95715-5849    Colorado    2016-07-11 09:29:20.750473    2016-10-14 13:03:05.287981        \N    \N    \N    0    \N    \N    \N    \N    male
17482    Jerome    Mosciski    rahul@konopelski.org    \N    Cuba    Lake Zetta    7437 Wintheiser Brooks    33610    Georgia    2016-08-04 07:31:26.668422    2016-10-14 13:03:05.292089        \N    \N    \N    0    \N    \N    \N    \N    male
17483    Zander    Lueilwitz    kimberly@hegmann.co    \N    Vanuatu    South Janicefort    1238 Nayeli Trace    74362    Minnesota    2016-07-07 13:01:24.994638    2016-10-14 13:03:05.297622        \N    \N    \N    0    \N    \N    \N    \N    male
17484    Brook    Greenholt    ernestina_runolfon@maggio.com    \N    New Zealand    West Leifland    64394 Nicolas Centers    33810    Louisiana    2016-07-24 11:31:15.681801    2016-10-14 13:03:05.301645        \N    \N    \N    0    \N    \N    \N    \N    male
17485    Alvina    Botsford    efrain@hintz.biz    \N    Senegal    Lake Judsonbury    853 Ullrich Key    15940-3999    Nebraska    2016-08-23 02:13:03.631596    2016-10-14 13:03:05.305921        \N    \N    \N    0    \N    \N    \N    \N    male
17486    Isabell    Zemlak    earlene@starkkuhlman.com    \N    Cyprus    North Erica    2025 Yasmin Port    34642    Alaska    2016-08-08 15:35:55.736945    2016-10-14 13:03:05.311335        \N    \N    \N    0    \N    \N    \N    \N    male
17487    Luther    Kozey    alexander.hermann@skiles.co    \N    Virgin Islands, British    Beulahview    50445 Judd Groves    63351    Iowa    2016-08-10 03:16:08.14486    2016-10-14 13:03:05.315586        \N    \N    \N    0    \N    \N    \N    \N    male
17488    Foster    Christiansen    samanta@franecki.co    \N    Saint Kitts and Nevis    Nienowland    67413 Kohler Glens    61179    Wyoming    2016-08-13 02:35:10.151975    2016-10-14 13:03:05.319631        \N    \N    \N    0    \N    \N    \N    \N    male
17489    Kody    Strosin    gilberto.marquardt@monahan.info    \N    Uzbekistan    Lake Wilhelmine    285 Collier Summit    63599-6241    Hawaii    2016-09-11 22:26:27.111535    2016-10-14 13:03:05.323476        \N    \N    \N    0    \N    \N    \N    \N    female
17490    Christa    Leannon    elise_stokes@murazik.name    \N    Somalia    Rozellamouth    16506 Rolfson Spurs    84399-7973    New Mexico    2016-09-07 03:55:11.31014    2016-10-14 13:03:05.327225        \N    \N    \N    0    \N    \N    \N    \N    male
17491    Allene    Reynolds    darrel@robel.co    \N    Saint Barthelemy    Port Unamouth    204 Jerde Extension    97156-8427    Minnesota    2016-08-21 13:01:35.139456    2016-10-14 13:03:05.331182        \N    \N    \N    0    \N    \N    \N    \N    male
17492    Missouri    Spencer    frederique_rippin@west.info    \N    Haiti    East Arnold    1711 Spencer Run    59471    Massachusetts    2016-09-10 20:53:46.499542    2016-10-14 13:03:05.33496        \N    \N    \N    0    \N    \N    \N    \N    male
17493    Laurine    Roberts    sage_farrell@lowe.com    \N    Panama    Lake Vivianstad    7718 Jacobi Ports    32317    Missouri    2016-07-04 11:50:05.059649    2016-10-14 13:03:05.338674        \N    \N    \N    0    \N    \N    \N    \N    male
17494    Pablo    Herzog    forrest_smitham@bruen.name    \N    Canada    New Laurettabury    4649 Lorenz Manors    86982-5070    Minnesota    2016-08-04 00:40:57.071883    2016-10-14 13:03:05.342525        \N    \N    \N    0    \N    \N    \N    \N    female
17495    Mohamed    Konopelski    isidro_hilpert@bartellturner.biz    \N    Grenada    Tressaland    373 King Course    32283-0712    South Carolina    2016-07-15 05:55:17.633194    2016-10-14 13:03:05.346609        \N    \N    \N    0    \N    \N    \N    \N    male
17496    Yvette    Cole    tatum@greenholtlehner.io    \N    Canada    Schimmelborough    21531 Turner Orchard    35102    New Jersey    2016-07-06 07:53:37.475024    2016-10-14 13:03:05.350854        \N    \N    \N    0    \N    \N    \N    \N    female
17497    Vada    Sipes    keegan@berge.co    \N    Falkland Islands (Malvinas)    Nedville    49426 Lebsack Plaza    96936-7341    Ohio    2016-09-20 19:46:01.241157    2016-10-14 13:03:05.355441        \N    \N    \N    0    \N    \N    \N    \N    female
17498    Clay    Hane    georgianna@spencerdubuque.co    \N    American Samoa    North Leila    257 Omer Mission    51512-2551    Texas    2016-08-20 22:27:11.118989    2016-10-14 13:03:05.359595        \N    \N    \N    0    \N    \N    \N    \N    male
17499    Clementina    Durgan    garett.mueller@fisher.biz    \N    Antarctica (the territory South of 60 deg S)    North Alana    17475 Goodwin Groves    27999    Mississippi    2016-08-10 15:27:41.093564    2016-10-14 13:03:05.363509        \N    \N    \N    0    \N    \N    \N    \N    male
17500    Jillian    Dach    earlene_mertz@herzog.com    \N    Costa Rica    Altenwerthport    7193 Hartmann Ranch    33949-8490    New Mexico    2016-08-26 10:45:08.794894    2016-10-14 13:03:05.367525        \N    \N    \N    0    \N    \N    \N    \N    male
17501    Fausto    Conn    maurine_goyette@bruenosinski.io    \N    Tunisia    Murphyland    64836 Davin Mount    34032-7762    Massachusetts    2016-09-22 01:22:34.665184    2016-10-14 13:03:05.371678        \N    \N    \N    0    \N    \N    \N    \N    male
17502    Blair    Roberts    moises@sawayn.io    \N    Cameroon    Pollichshire    16874 Haley Squares    11129    Massachusetts    2016-09-03 14:16:13.246664    2016-10-14 13:03:05.375934        \N    \N    \N    0    \N    \N    \N    \N    male
17503    Ethelyn    Mills    sadye_gutkowski@treutel.name    \N    Zimbabwe    New Barney    451 Skiles Island    81972    Delaware    2016-08-30 17:32:27.308499    2016-10-14 13:03:05.379869        \N    \N    \N    0    \N    \N    \N    \N    male
17504    Crystal    Bartoletti    dorcas.bogan@champlin.co    \N    Philippines    Baileyhaven    43740 Powlowski Viaduct    19284-4436    Oregon    2016-06-30 01:54:36.04853    2016-10-14 13:03:05.383771        \N    \N    \N    0    \N    \N    \N    \N    male
17505    Charlie    Koch    kelli.pollich@harberluettgen.biz    \N    Trinidad and Tobago    New Floyd    11303 Petra Crest    49042-3223    Indiana    2016-09-01 08:14:31.137453    2016-10-14 13:03:05.387796        \N    \N    \N    0    \N    \N    \N    \N    female
17506    Virginie    Connelly    chyna_koepp@schowalter.com    \N    Tunisia    Lake Lynnmouth    8844 Christophe Harbors    12239    Mississippi    2016-08-15 20:05:36.812769    2016-10-14 13:03:05.39173        \N    \N    \N    0    \N    \N    \N    \N    male
17507    Kyra    MacGyver    jed_simonis@rolfson.name    \N    Pitcairn Islands    Winifredburgh    180 Mitchell Greens    70395    Connecticut    2016-07-16 08:47:06.752457    2016-10-14 13:03:05.395582        \N    \N    \N    0    \N    \N    \N    \N    male
17508    Jared    Raynor    alyce@cormierconroy.info    \N    Sri Lanka    North Jabari    84805 Brakus Via    92868-2350    Washington    2016-08-08 11:31:13.126599    2016-10-14 13:03:05.400054        \N    \N    \N    0    \N    \N    \N    \N    female
17509    Rowan    Blick    rosie_toy@nitzsche.biz    \N    French Southern Territories    Hassieville    42000 David Mount    64119-4350    New Jersey    2016-07-27 01:45:57.960602    2016-10-14 13:03:05.404372        \N    \N    \N    0    \N    \N    \N    \N    female
17510    Tyrel    Lind    royal.bergstrom@jenkins.net    \N    Cape Verde    Daishaberg    41395 Zulauf Estate    41626-4917    Montana    2016-07-08 17:19:03.395665    2016-10-14 13:03:05.408364        \N    \N    \N    0    \N    \N    \N    \N    male
17512    Everardo    Dooley    johanna_okon@zemlak.biz    \N    Svalbard & Jan Mayen Islands    Reginaldfort    3656 Myrtle Course    21989    Alabama    2016-07-30 16:07:29.393501    2016-10-14 13:03:05.412568        \N    \N    \N    0    \N    \N    \N    \N    male
17513    Rosella    Collins    bret@bogisich.biz    \N    Thailand    Bodeton    65992 Mariana Drives    73488    Oklahoma    2016-07-05 00:02:26.214214    2016-10-14 13:03:05.416626        \N    \N    \N    0    \N    \N    \N    \N    female
17514    Retta    McLaughlin    laurel_mitchell@keebler.com    \N    Puerto Rico    Lake Megane    7642 Collier Radial    45584    Pennsylvania    2016-08-16 19:56:31.517097    2016-10-14 13:03:05.42115        \N    \N    \N    0    \N    \N    \N    \N    female
17515    Pearlie    Schaefer    vivienne@kemmer.name    \N    Morocco    West Kailee    55486 Gino Landing    14244    Vermont    2016-09-27 05:18:49.239829    2016-10-14 13:03:05.425562        \N    \N    \N    0    \N    \N    \N    \N    male
17516    Eric    McGlynn    jaycee.spencer@howell.info    \N    Samoa    New Valentina    90813 Rachelle Estates    52778-8122    Texas    2016-09-10 21:26:06.899637    2016-10-14 13:03:05.42955        \N    \N    \N    0    \N    \N    \N    \N    male
17517    Deonte    Rosenbaum    elmore@schaefer.name    \N    Democratic People's Republic of Korea    Goodwinland    361 Pacocha Square    61601    Arizona    2016-08-11 02:52:51.687291    2016-10-14 13:03:05.433627        \N    \N    \N    0    \N    \N    \N    \N    female
17518    Caden    Mante    danielle@mclaughlinkuhlman.biz    \N    Equatorial Guinea    East Ezra    2389 Kiera Prairie    91624-7159    Arizona    2016-09-09 01:53:29.964423    2016-10-14 13:03:05.438166        \N    \N    \N    0    \N    \N    \N    \N    female
17519    Helena    Gaylord    alvera@terrydooley.net    \N    Guadeloupe    Gerlachside    516 Lea Locks    14591-4718    Rhode Island    2016-09-25 09:54:09.995024    2016-10-14 13:03:05.442334        \N    \N    \N    0    \N    \N    \N    \N    male
17520    Esmeralda    Stracke    edgar@wilderman.com    \N    Jordan    Mathildeview    3620 Abernathy Lodge    40581-1850    Maine    2016-09-05 09:53:53.210256    2016-10-14 13:03:05.446494        \N    \N    \N    0    \N    \N    \N    \N    male
17521    Alexandrea    Mertz    precious@stoltenberg.info    \N    Mozambique    Reedburgh    44088 Dagmar Pine    21014-7226    Wisconsin    2016-08-24 22:00:33.301958    2016-10-14 13:03:05.450807        \N    \N    \N    0    \N    \N    \N    \N    male
17522    Freeman    Hoppe    jerald.wilkinson@jerde.net    \N    Hong Kong    East Serena    189 Nicolas Tunnel    92803    Arizona    2016-09-06 07:36:32.087834    2016-10-14 13:03:05.454785        \N    \N    \N    0    \N    \N    \N    \N    female
17523    Burley    Okuneva    amalia.howe@mosciski.io    \N    Equatorial Guinea    Farrellmouth    9734 Clint Fields    64760-0989    Nebraska    2016-09-26 08:25:18.544369    2016-10-14 13:03:05.459187        \N    \N    \N    0    \N    \N    \N    \N    female
17524    Napoleon    Heidenreich    harley.gislason@eichmann.co    \N    Philippines    Rauton    17154 Schaden Dam    73695-4667    Louisiana    2016-07-22 14:06:17.253768    2016-10-14 13:03:05.4639        \N    \N    \N    0    \N    \N    \N    \N    male
17525    Burdette    Adams    zander.leannon@stantonlesch.info    \N    Slovenia    Jonashaven    10748 Leffler Mission    94994-1602    Rhode Island    2016-07-13 08:48:38.572384    2016-10-14 13:03:05.468175        \N    \N    \N    0    \N    \N    \N    \N    male
17526    Harrison    Ernser    berenice.oconner@borergleason.info    \N    Costa Rica    New Ines    91948 Hammes Shoal    59845-1152    Rhode Island    2016-08-31 05:54:16.222162    2016-10-14 13:03:05.472666        \N    \N    \N    0    \N    \N    \N    \N    male
17527    Vallie    Botsford    leo.robel@kuvalisoconner.biz    \N    Somalia    Carterborough    85732 Joana Radial    90571    Ohio    2016-07-29 13:29:20.661102    2016-10-14 13:03:05.476889        \N    \N    \N    0    \N    \N    \N    \N    male
17528    Patsy    Wolf    tommie@larsondeckow.biz    \N    Malawi    South Erwin    370 Jazmyne Spring    31970    Mississippi    2016-07-03 00:43:11.355104    2016-10-14 13:03:05.480632        \N    \N    \N    0    \N    \N    \N    \N    male
17529    Ivah    Weber    karianne@sawayntowne.biz    \N    Kyrgyz Republic    Kenyattashire    6656 Romaguera Radial    10783-2921    Kentucky    2016-07-22 21:42:24.118493    2016-10-14 13:03:05.484365        \N    \N    \N    0    \N    \N    \N    \N    female
17530    Noe    Marvin    jaylan_funk@kreiger.net    \N    Saint Helena    Port Cleveside    6477 Denesik Wells    41975    Ohio    2016-07-27 05:02:58.464178    2016-10-14 13:03:05.492359        \N    \N    \N    0    \N    \N    \N    \N    female
17531    Bo    Luettgen    mara_wuckert@bartoletti.name    \N    China    Toytown    589 Rodriguez Village    68679-3971    Utah    2016-09-13 04:16:39.23176    2016-10-14 13:03:05.496787        \N    \N    \N    0    \N    \N    \N    \N    male
17532    Bessie    Crona    dock.heaney@lehner.net    \N    United States of America    Kerlukemouth    5833 Runolfsson View    52069-9047    Kansas    2016-08-14 13:42:19.032496    2016-10-14 13:03:05.500705        \N    \N    \N    0    \N    \N    \N    \N    male
17533    Vivien    Murphy    ben.gibson@kleinbernier.co    \N    Mauritania    Hillsborough    88549 Davon Plains    24529-3056    California    2016-08-20 15:11:22.296988    2016-10-14 13:03:05.504911        \N    \N    \N    0    \N    \N    \N    \N    female
17534    Joany    Reinger    alexandrea@hilpertkozey.name    \N    Guatemala    Johnsonborough    220 Collin Wall    57869-1052    New York    2016-07-07 01:42:38.224008    2016-10-14 13:03:05.509436        \N    \N    \N    0    \N    \N    \N    \N    male
17535    Rashawn    Steuber    hallie.stark@lakin.info    \N    Bangladesh    Hailiemouth    51968 Skyla Dam    30123-3681    North Carolina    2016-09-09 15:57:02.633646    2016-10-14 13:03:05.513974        \N    \N    \N    0    \N    \N    \N    \N    male
17536    Elisha    Hackett    lina@lakincronin.net    \N    Sweden    New Jonatan    851 Annamae Mews    50576    New Mexico    2016-08-18 17:20:25.075675    2016-10-14 13:03:05.518682        \N    \N    \N    0    \N    \N    \N    \N    male
17539    Brannon    Tillman    kellen@turcotte.biz    \N    Montenegro    Luigiville    402 Devin Drive    80242-7320    Nebraska    2016-07-12 03:45:36.409726    2016-10-14 13:03:05.523422        \N    \N    \N    0    \N    \N    \N    \N    male
17541    Edythe    Vandervort    deron@wizabogan.com    \N    Bangladesh    Funktown    297 Jaskolski Spur    13325-6038    West Virginia    2016-09-23 22:41:43.605648    2016-10-14 13:03:05.527831        \N    \N    \N    0    \N    \N    \N    \N    female
17542    Mathilde    Rempel    frankie_bosco@dickinsonhudson.co    \N    Micronesia    Magdalenport    831 Shayne Vista    18746    Indiana    2016-07-27 19:53:12.553248    2016-10-14 13:03:05.5318        \N    \N    \N    0    \N    \N    \N    \N    male
17543    Birdie    Feest    jamie.heidenreich@larkin.io    \N    Saudi Arabia    South Aldenberg    24729 Alford Row    75197-7299    Wisconsin    2016-09-02 08:41:09.388217    2016-10-14 13:03:05.535914        \N    \N    \N    0    \N    \N    \N    \N    male
17544    Marley    Hettinger    broderick@king.biz    \N    Australia    Emmerichstad    37279 Tatum Motorway    13907    Mississippi    2016-06-23 06:19:03.754462    2016-10-14 13:03:05.540953        \N    \N    \N    0    \N    \N    \N    \N    male
17545    Carroll    Stroman    stacy@nikolauslynch.net    \N    Angola    East Elzaburgh    695 Ebert Pass    81903-0633    Washington    2016-06-27 05:36:01.06709    2016-10-14 13:03:05.54688        \N    \N    \N    0    \N    \N    \N    \N    female
17546    Kurtis    Braun    jada@mills.org    \N    Nauru    Kiphaven    833 Klocko Vista    93560    Rhode Island    2016-09-28 11:13:34.104079    2016-10-14 13:03:05.55185        \N    \N    \N    0    \N    \N    \N    \N    female
17547    Delia    Macejkovic    vivienne@croninhuel.net    \N    Isle of Man    North Joaquinport    186 Stiedemann Pines    99276-7587    Wyoming    2016-09-20 16:43:41.898886    2016-10-14 13:03:05.555806        \N    \N    \N    0    \N    \N    \N    \N    male
17548    Eulah    Kerluke    curt@bartonmclaughlin.net    \N    Samoa    McKenziebury    73154 Bartell Valleys    74745    Idaho    2016-07-24 23:48:06.048604    2016-10-14 13:03:05.559648        \N    \N    \N    0    \N    \N    \N    \N    female
17549    Avery    Thiel    angelo.carroll@zulauf.biz    \N    Eritrea    Willmston    97406 O'Connell Hill    41767    North Carolina    2016-09-29 00:56:17.90391    2016-10-14 13:03:05.563417        \N    \N    \N    0    \N    \N    \N    \N    male
17550    Ilene    Lind    kevin@welchdubuque.io    \N    Australia    VonRuedenshire    7301 Romaguera Mission    73786    Missouri    2016-07-09 15:47:50.006672    2016-10-14 13:03:05.56751        \N    \N    \N    0    \N    \N    \N    \N    male
17551    Jaquelin    Spencer    rashawn@balistreri.net    \N    Mexico    Lake Lorenza    803 Klein Well    26669-9033    Alabama    2016-07-19 19:59:05.913914    2016-10-14 13:03:05.571459        \N    \N    \N    0    \N    \N    \N    \N    female
17552    Andreane    Bauch    mariam@jacobson.biz    \N    Jersey    Hailiemouth    8026 Maegan Lake    71469    Alaska    2016-09-19 13:48:30.155063    2016-10-14 13:03:05.575473        \N    \N    \N    0    \N    \N    \N    \N    female
17553    Annabell    Fahey    gwen.walter@king.com    \N    Singapore    New Katrinebury    582 Sheridan Rest    42873-9747    Connecticut    2016-09-24 03:01:26.024618    2016-10-14 13:03:05.579309        \N    \N    \N    0    \N    \N    \N    \N    female
17554    Jamel    Kunze    millie_wolf@kaulke.name    \N    New Zealand    Lake Felicity    72403 Shemar Shoal    24250    Delaware    2016-07-14 00:25:18.830489    2016-10-14 13:03:05.58318        \N    \N    \N    0    \N    \N    \N    \N    female
17555    Jaeden    Block    roberta@mitchellhintz.name    \N    Bosnia and Herzegovina    Brandynview    397 Cronin Drive    10720    Missouri    2016-07-28 17:39:29.255221    2016-10-14 13:03:05.587115        \N    \N    \N    0    \N    \N    \N    \N    female
17556    Lexie    Hahn    mable@hettinger.name    \N    Germany    South Jazmynbury    8807 Cielo Crest    92917-9704    Georgia    2016-07-03 07:44:13.721848    2016-10-14 13:03:05.591172        \N    \N    \N    0    \N    \N    \N    \N    female
17557    Aurelio    Beahan    alverta@prohaska.com    \N    Paraguay    West Laurie    64887 Bosco Camp    99172-4874    Connecticut    2016-06-28 16:12:03.658199    2016-10-14 13:03:05.595357        \N    \N    \N    0    \N    \N    \N    \N    female
17558    Verona    Stanton    nadia_kuhn@nikolaukiles.io    \N    Australia    South Alize    86470 Maxime Hill    69542    South Carolina    2016-06-24 14:21:16.270929    2016-10-14 13:03:05.599568        \N    \N    \N    0    \N    \N    \N    \N    male
17559    Shakira    Hermann    vivian@haley.biz    \N    French Polynesia    New Reeseview    491 Florine Haven    90815    Oregon    2016-07-03 22:19:36.11526    2016-10-14 13:03:05.603583        \N    \N    \N    0    \N    \N    \N    \N    male
17560    Oscar    Powlowski    zaria@hodkiewicz.co    \N    Belarus    North Maiashire    9921 Klocko Groves    42714-7655    South Carolina    2016-07-16 09:46:35.998651    2016-10-14 13:03:05.607778        \N    \N    \N    0    \N    \N    \N    \N    female
17561    Keith    Price    dora@keeling.io    \N    French Guiana    Immanuelbury    27173 Bogisich Lane    92248    New Jersey    2016-09-24 08:56:27.045845    2016-10-14 13:03:05.611844        \N    \N    \N    0    \N    \N    \N    \N    male
14078    Matilde    Batz    alice@jakubowski.biz    \N    Armenia    Toyside    327 Fay Parkway    22408-1104    New Mexico    2016-08-03 10:24:27.218617    2016-10-14 13:03:05.615976        \N    \N    \N    0    \N    \N    \N    \N    male
17562    Neil    Jacobson    felicity_wyman@schumm.net    \N    Saint Pierre and Miquelon    East Rosarioside    292 Becker Lodge    66355-6136    North Dakota    2016-09-11 02:14:11.71971    2016-10-14 13:03:05.619901        \N    \N    \N    0    \N    \N    \N    \N    female
17563    Gracie    Blanda    amos@runtedonnelly.net    \N    Slovakia (Slovak Republic)    Watsicahaven    43541 Jeremie Forks    25153    Texas    2016-09-01 08:11:31.704327    2016-10-14 13:03:05.623876        \N    \N    \N    0    \N    \N    \N    \N    male
17564    Tad    Lueilwitz    charles.hickle@parisianaufderhar.net    \N    Wallis and Futuna    Emiebury    8257 Derick Overpass    36990    Alaska    2016-06-27 08:21:57.635183    2016-10-14 13:03:05.62783        \N    \N    \N    0    \N    \N    \N    \N    male
17565    Caleigh    Grady    lenora@hartmann.info    \N    Argentina    East Destiniberg    8631 Borer Shoals    32259-8533    New Mexico    2016-09-12 08:57:10.2895    2016-10-14 13:03:05.631644        \N    \N    \N    0    \N    \N    \N    \N    male
17566    Beulah    Rutherford    kurt@ritchiemoen.info    \N    Morocco    Rosehaven    947 Senger Circles    94525-6012    Wyoming    2016-07-10 03:45:01.583565    2016-10-14 13:03:05.635384        \N    \N    \N    0    \N    \N    \N    \N    male
17567    Darian    Casper    quinn_kohler@mcclure.info    \N    Saint Vincent and the Grenadines    Kevonland    61516 Willis Freeway    86318    Arizona    2016-06-29 23:08:07.620595    2016-10-14 13:03:05.639173        \N    \N    \N    0    \N    \N    \N    \N    female
17568    Oceane    Prohaska    milford_anderson@lueilwitz.info    \N    Slovenia    New Michaela    8415 Soledad Burg    61641-1145    Connecticut    2016-08-26 21:41:19.061502    2016-10-14 13:03:05.643288        \N    \N    \N    0    \N    \N    \N    \N    male
17569    Jessy    Johnson    salvador_zemlak@mckenzie.org    \N    Paraguay    West Daniella    371 Tony Junctions    90202    Nevada    2016-07-25 09:40:50.466181    2016-10-14 13:03:05.647573        \N    \N    \N    0    \N    \N    \N    \N    female
17570    Adalberto    Corkery    dennis@boehm.co    \N    Grenada    Eudorastad    677 MacGyver Ports    53170-2243    Oklahoma    2016-09-02 12:53:57.870607    2016-10-14 13:03:05.65186        \N    \N    \N    0    \N    \N    \N    \N    female
17571    Kamryn    Lind    allan@lednerpouros.info    \N    Mali    Dulceton    4639 Malachi Points    90954-9973    Tennessee    2016-06-29 06:39:45.180027    2016-10-14 13:03:05.656497        \N    \N    \N    0    \N    \N    \N    \N    male
17572    Ava    Veum    kimberly.baumbach@ebert.org    \N    Norfolk Island    Taliaside    30235 Bradtke Extensions    30007    Vermont    2016-09-12 13:13:27.189262    2016-10-14 13:03:05.660707        \N    \N    \N    0    \N    \N    \N    \N    female
17573    Gail    Howe    kristina.moore@goodwin.io    \N    Trinidad and Tobago    Elwynburgh    66100 Beahan Field    29290-0667    Virginia    2016-08-31 02:45:23.445709    2016-10-14 13:03:05.664511        \N    \N    \N    0    \N    \N    \N    \N    female
17575    Kayleigh    Marks    isabelle@jacobsongorczany.io    \N    Qatar    Troyhaven    9558 Cordelia Avenue    34098-8085    Nebraska    2016-07-18 07:10:25.991278    2016-10-14 13:03:05.66832        \N    \N    \N    0    \N    \N    \N    \N    female
17576    Aisha    Hagenes    ettie@wisoky.com    \N    Slovenia    Port Jadynport    3986 Melyna Pines    52325    Wyoming    2016-09-04 17:38:05.646672    2016-10-14 13:03:05.672163        \N    \N    \N    0    \N    \N    \N    \N    male
17577    Anais    Parker    joanne_walsh@koelpinrunte.name    \N    Chad    Schmittmouth    15967 Colten Extensions    56311-4390    South Carolina    2016-08-06 21:22:40.317517    2016-10-14 13:03:05.676071        \N    \N    \N    0    \N    \N    \N    \N    female
17578    Dolores    Wintheiser    jarrod.kohler@lemke.co    \N    Qatar    Nobleton    721 Lauryn Cliff    75144-7901    Ohio    2016-09-08 08:40:34.415903    2016-10-14 13:03:05.679928        \N    \N    \N    0    \N    \N    \N    \N    male
17579    Oran    Kozey    hermina@swaniawski.org    \N    Bolivia    Hanefort    6825 Bogan Bridge    75122-5355    Mississippi    2016-09-07 10:24:53.465467    2016-10-14 13:03:05.683967        \N    \N    \N    0    \N    \N    \N    \N    female
17580    Kraig    Windler    virginia@cain.io    \N    Luxembourg    South Dagmarburgh    93246 Kutch View    34185-5941    Wisconsin    2016-09-29 12:11:09.601687    2016-10-14 13:03:05.687934        \N    \N    \N    0    \N    \N    \N    \N    female
17581    Neoma    Nikolaus    edwin@schamberger.org    \N    Belgium    McDermottfort    327 Volkman Gateway    63658    Maryland    2016-08-08 02:15:42.327682    2016-10-14 13:03:05.69169        \N    \N    \N    0    \N    \N    \N    \N    male
17582    Keshaun    Heller    tania@reichertmosciski.biz    \N    Ethiopia    East Reillyview    420 Rudolph Haven    46607-0943    South Carolina    2016-07-26 04:01:15.709083    2016-10-14 13:03:05.695546        \N    \N    \N    0    \N    \N    \N    \N    female
17584    Eulalia    Murazik    delaney.breitenberg@boderaynor.info    \N    Cuba    Lake Chance    5712 Stanford Row    73854-0624    Oregon    2016-09-22 11:54:01.753472    2016-10-14 13:03:05.699929        \N    \N    \N    0    \N    \N    \N    \N    female
17585    Edison    Ward    porter@emmerich.name    \N    Swaziland    Maemouth    9207 Kirlin Crest    76720-4662    New Jersey    2016-09-02 04:29:52.808271    2016-10-14 13:03:05.704256        \N    \N    \N    0    \N    \N    \N    \N    male
17586    Delaney    Paucek    delbert@beahan.com    \N    Netherlands Antilles    South Owen    554 Pfannerstill Crossing    45577    Tennessee    2016-06-29 06:58:27.824769    2016-10-14 13:03:05.708195        \N    \N    \N    0    \N    \N    \N    \N    male
17587    Demetris    Yundt    nya.goodwin@koelpin.info    \N    Vanuatu    Kuhlmanhaven    731 Fadel Meadows    83597-2932    Florida    2016-07-30 05:34:50.298022    2016-10-14 13:03:05.712022        \N    \N    \N    0    \N    \N    \N    \N    male
17588    Guillermo    O'Hara    jerome@moriettehudson.io    \N    Mexico    Runtefurt    34345 Lacy Isle    70995    North Dakota    2016-09-25 11:13:26.932394    2016-10-14 13:03:05.715781        \N    \N    \N    0    \N    \N    \N    \N    male
17589    Reginald    Weber    cornelius.crooks@stark.name    \N    Nicaragua    East Jackson    1580 Pearlie Radial    43635-7705    North Carolina    2016-08-14 07:27:24.14947    2016-10-14 13:03:05.720123        \N    \N    \N    0    \N    \N    \N    \N    female
17590    Guadalupe    Bailey    derrick@zemlak.org    \N    Faroe Islands    Hollisborough    23199 Garrick Plain    24145    Pennsylvania    2016-08-12 22:01:45.999699    2016-10-14 13:03:05.724728        \N    \N    \N    0    \N    \N    \N    \N    male
17591    Giovanna    Simonis    wilbert.weber@feeneybahringer.biz    \N    Jordan    Treutelmouth    31680 Rhoda Walk    29623-1475    Alabama    2016-09-17 10:32:06.909837    2016-10-14 13:03:05.729667        \N    \N    \N    0    \N    \N    \N    \N    female
17592    Hector    Boyle    chloe_stehr@gaylordkonopelski.co    \N    Romania    Marcellafort    3325 Bartoletti Summit    55495    Hawaii    2016-08-18 17:43:53.060151    2016-10-14 13:03:05.73389        \N    \N    \N    0    \N    \N    \N    \N    male
17593    Ursula    Romaguera    samson.reichel@littelwindler.net    \N    France    Tessiefort    47638 Clementine Camp    45630-5245    Rhode Island    2016-09-14 08:44:01.464451    2016-10-14 13:03:05.737929        \N    \N    \N    0    \N    \N    \N    \N    male
17594    Golden    Becker    brooks@cain.com    \N    Mexico    North Esperanzabury    55477 Samson Unions    47760    Arkansas    2016-09-07 17:25:28.621589    2016-10-14 13:03:05.741864        \N    \N    \N    0    \N    \N    \N    \N    male
17595    Jeanne    Farrell    leanne.hills@beer.com    \N    El Salvador    Melissaborough    14056 Renner Gardens    21412-8266    Texas    2016-08-05 01:21:52.000977    2016-10-14 13:03:05.746011        \N    \N    \N    0    \N    \N    \N    \N    female
17596    Oran    Deckow    gregory.carter@towne.net    \N    Poland    Framiside    286 Muller Lakes    17245    Pennsylvania    2016-07-23 14:07:35.961695    2016-10-14 13:03:05.750018        \N    \N    \N    0    \N    \N    \N    \N    male
17597    Gregg    Gutkowski    aletha@purdy.name    \N    Isle of Man    South Kareemland    6647 Goyette Roads    28996    Maine    2016-09-03 10:57:33.59875    2016-10-14 13:03:05.754355        \N    \N    \N    0    \N    \N    \N    \N    male
17598    Vern    Gerhold    darrell@jaskolski.biz    \N    Vietnam    East Jeffrey    4566 Antwon Shore    20962    New Jersey    2016-07-27 04:06:26.531298    2016-10-14 13:03:05.758933        \N    \N    \N    0    \N    \N    \N    \N    male
17599    Nathaniel    Hamill    scotty@greenholtbogan.net    \N    Philippines    South Elenora    215 Batz Causeway    46041-2450    Alabama    2016-07-16 09:29:26.234732    2016-10-14 13:03:05.763551        \N    \N    \N    0    \N    \N    \N    \N    female
17600    Andre    Rowe    chelsey@heel.biz    \N    Guinea    West Della    642 Karlie Stravenue    77778    Vermont    2016-08-08 01:42:47.883965    2016-10-14 13:03:05.767453        \N    \N    \N    0    \N    \N    \N    \N    male
17601    Garnet    Renner    trystan_schoen@weberkoch.io    \N    Sweden    Lake Angelinefurt    25697 Watsica Loop    25573-7343    Oregon    2016-07-11 04:12:05.541992    2016-10-14 13:03:05.771539        \N    \N    \N    0    \N    \N    \N    \N    male
17602    Marisol    Bailey    ramon@nikolaus.co    \N    Dominican Republic    Tessieborough    62748 Ritchie Heights    79543-0237    Alabama    2016-08-17 15:45:20.848174    2016-10-14 13:03:05.775608        \N    \N    \N    0    \N    \N    \N    \N    female
17603    Estelle    Jerde    kenton.schoen@wolff.name    \N    Iceland    O'Keefeborough    97223 Kaci Corners    91034    Minnesota    2016-06-25 08:13:20.702406    2016-10-14 13:03:05.779546        \N    \N    \N    0    \N    \N    \N    \N    female
17604    Elsie    Auer    kayli.hayes@cainfeest.net    \N    Qatar    Schadenfort    365 Daugherty View    73678    Colorado    2016-06-27 21:40:02.065406    2016-10-14 13:03:05.783431        \N    \N    \N    0    \N    \N    \N    \N    male
17605    Luisa    Romaguera    savanah@welchwehner.org    \N    Guadeloupe    South Joyland    828 Emard Lodge    63257-0588    Ohio    2016-09-14 02:45:07.35221    2016-10-14 13:03:05.78733        \N    \N    \N    0    \N    \N    \N    \N    female
17606    Marlene    Cronin    elise.ondricka@keeling.name    \N    Qatar    Torphychester    478 Melisa Road    25015-5105    Indiana    2016-07-04 09:23:27.820034    2016-10-14 13:03:05.791392        \N    \N    \N    0    \N    \N    \N    \N    male
17607    Eusebio    Wolf    ophelia@wisokymoore.co    \N    Eritrea    North Sedrickfurt    611 Thea Canyon    35585    Oregon    2016-07-02 00:00:17.988808    2016-10-14 13:03:05.795751        \N    \N    \N    0    \N    \N    \N    \N    male
17608    Araceli    Auer    bryon@sawaynhagenes.io    \N    Turkey    North Immanuelmouth    57501 Rau Stream    16756    New Hampshire    2016-08-02 14:09:03.934361    2016-10-14 13:03:05.80248        \N    \N    \N    0    \N    \N    \N    \N    male
17609    Fredy    Senger    rylee.reichert@koparisian.com    \N    Tunisia    Watsicaport    71494 Mills Turnpike    36707-1717    Colorado    2016-08-05 14:51:18.635719    2016-10-14 13:03:05.816273        \N    \N    \N    0    \N    \N    \N    \N    female
17610    Shea    Hilll    howard@feest.org    \N    Bangladesh    North Billymouth    867 Heidenreich Hollow    29197    Michigan    2016-07-21 05:07:27.829818    2016-10-14 13:03:05.820643        \N    \N    \N    0    \N    \N    \N    \N    female
17611    Zakary    Yost    ally.schroeder@treutelgleason.org    \N    Slovenia    Lake Kariannetown    92419 Monahan Cape    92929-1288    Connecticut    2016-08-20 05:49:28.495567    2016-10-14 13:03:05.825264        \N    \N    \N    0    \N    \N    \N    \N    female
17612    Lloyd    Bradtke    vladimir.rippin@tillman.org    \N    Reunion    Cummeratafort    16106 Kiara Fork    36009    Illinois    2016-07-12 22:52:00.867372    2016-10-14 13:03:05.829902        \N    \N    \N    0    \N    \N    \N    \N    male
17613    Narciso    Batz    sammy@batz.io    \N    Gabon    Jenkinsmouth    652 Alberta Motorway    99591    Hawaii    2016-08-06 20:37:21.190634    2016-10-14 13:03:05.834208        \N    \N    \N    0    \N    \N    \N    \N    male
17614    Aniyah    Rowe    hattie.mccullough@wolffstracke.com    \N    Ethiopia    East Bethelchester    4239 Connelly Roads    46876    Virginia    2016-09-02 17:47:09.235064    2016-10-14 13:03:05.838292        \N    \N    \N    0    \N    \N    \N    \N    female
17615    Zion    Casper    noe@olsoncruickshank.io    \N    Malta    Candelarioland    9330 O'Keefe Mall    73156    Wisconsin    2016-08-12 20:52:36.885825    2016-10-14 13:03:05.842132        \N    \N    \N    0    \N    \N    \N    \N    male
17616    Art    Rolfson    aubree@lefflerraynor.net    \N    Pitcairn Islands    Laruefort    684 Pete Lodge    66739-2155    North Dakota    2016-09-18 06:58:32.769245    2016-10-14 13:03:05.846187        \N    \N    \N    0    \N    \N    \N    \N    female
17617    Narciso    Dach    mohammad@vonrueden.name    \N    Malawi    North Estella    473 Kilback Meadow    17333-7780    Washington    2016-08-31 05:24:32.796309    2016-10-14 13:03:05.850457        \N    \N    \N    0    \N    \N    \N    \N    male
17618    Cedrick    Stiedemann    darien@padbergrobel.biz    \N    Austria    Port Lynnfurt    97538 Penelope Circles    30792    Kansas    2016-08-06 05:36:00.164982    2016-10-14 13:03:05.854691        \N    \N    \N    0    \N    \N    \N    \N    female
17619    Winnifred    Doyle    alanis.schulist@ward.io    \N    Guam    Demarcusberg    7731 Schmidt Drive    73678    Michigan    2016-08-18 10:13:33.718861    2016-10-14 13:03:05.858799        \N    \N    \N    0    \N    \N    \N    \N    male
17620    Alessandra    Heidenreich    marty_green@keler.info    \N    Heard Island and McDonald Islands    Port Arelytown    468 Krystal Lodge    83859-3952    Massachusetts    2016-07-14 05:07:19.807067    2016-10-14 13:03:05.863038        \N    \N    \N    0    \N    \N    \N    \N    female
17621    Gregg    Kling    garrick@harveybrakus.name    \N    Bhutan    Lake Cleta    30460 Leatha Fields    19108    Florida    2016-09-02 10:53:18.59179    2016-10-14 13:03:05.86746        \N    \N    \N    0    \N    \N    \N    \N    female
17622    Brando    Hills    eddie@bogisichhintz.info    \N    Portugal    Port Theresiachester    119 Lueilwitz Glen    89354-0617    Virginia    2016-06-28 17:18:03.568568    2016-10-14 13:03:05.871961        \N    \N    \N    0    \N    \N    \N    \N    male
17624    Keely    Armstrong    karina.hudson@borercartwright.co    \N    Holy See (Vatican City State)    Heavenborough    44821 Turcotte Lodge    66278-1851    New Jersey    2016-09-27 02:58:56.272903    2016-10-14 13:03:05.876299        \N    \N    \N    0    \N    \N    \N    \N    male
17625    Santos    Feeney    devin_nicolas@stiedemannhauck.name    \N    Congo    Bradleyfort    2387 Leuschke Groves    65206    Kansas    2016-07-16 04:05:46.313336    2016-10-14 13:03:05.881099        \N    \N    \N    0    \N    \N    \N    \N    male
17626    Murray    Will    jeie@friesencartwright.net    \N    Isle of Man    Rosiefort    84330 Grant Neck    17526    Illinois    2016-07-10 09:19:43.003712    2016-10-14 13:03:05.885195        \N    \N    \N    0    \N    \N    \N    \N    male
17627    Everett    Hamill    abbie@homenickbednar.co    \N    Guyana    Melanyshire    7067 Alex Stravenue    58985-8051    New Hampshire    2016-08-12 12:59:14.371002    2016-10-14 13:03:05.889411        \N    \N    \N    0    \N    \N    \N    \N    female
17628    Clifford    Kshlerin    judson_bode@huel.info    \N    China    East Elena    6529 Cormier Knoll    37788    Delaware    2016-07-10 14:24:45.129656    2016-10-14 13:03:05.893306        \N    \N    \N    0    \N    \N    \N    \N    male
17629    Lauriane    Mertz    mohammed@bergnaum.io    \N    Bahamas    East Maynard    24672 Ahmad Views    25025-8660    Minnesota    2016-09-15 08:19:37.181716    2016-10-14 13:03:05.897395        \N    \N    \N    0    \N    \N    \N    \N    male
17630    Meda    McClure    sydney.reynolds@moenromaguera.biz    \N    Nigeria    Ulisesville    18887 Spencer Lane    72406    Utah    2016-08-30 04:15:58.161948    2016-10-14 13:03:05.901314        \N    \N    \N    0    \N    \N    \N    \N    male
17631    Caesar    Will    duncan.turcotte@daughertybosco.org    \N    Uruguay    Morarbury    9951 Maggio Estate    56827-8450    Alabama    2016-07-19 08:59:07.423269    2016-10-14 13:03:05.90513        \N    \N    \N    0    \N    \N    \N    \N    male
17632    Joseph    Fisher    francesco_johnson@schamberger.co    \N    Poland    Brannonbury    8951 Stanford Road    58699    Montana    2016-06-23 00:33:36.911438    2016-10-14 13:03:05.90921        \N    \N    \N    0    \N    \N    \N    \N    female
17633    Melvina    Kuvalis    donna@corwinokuneva.biz    \N    Uzbekistan    West Bennett    7914 Mueller Ridges    34438    Alaska    2016-08-30 00:35:59.06988    2016-10-14 13:03:05.913484        \N    \N    \N    0    \N    \N    \N    \N    male
17634    Susanna    Boehm    luther@predovic.com    \N    Afghanistan    East Jonatanport    98063 Francis Pike    32426-4356    Florida    2016-09-27 15:45:06.502707    2016-10-14 13:03:05.918061        \N    \N    \N    0    \N    \N    \N    \N    female
17635    Allie    Borer    rosamond@beahanschimmel.co    \N    Georgia    South Rebeccaland    286 Lindgren Loop    90362-8657    West Virginia    2016-09-22 22:37:03.393516    2016-10-14 13:03:05.922018        \N    \N    \N    0    \N    \N    \N    \N    male
17636    Erica    Von    emil@pfeffercrooks.com    \N    South Africa    Nathenhaven    994 Cormier Branch    13788-0585    Tennessee    2016-08-10 13:19:46.028375    2016-10-14 13:03:05.926205        \N    \N    \N    0    \N    \N    \N    \N    male
17637    Myra    Hermiston    calista_terry@jacobiterry.com    \N    Botswana    Monserratmouth    435 Velva Lights    28544    Missouri    2016-07-01 21:49:20.045599    2016-10-14 13:03:05.930446        \N    \N    \N    0    \N    \N    \N    \N    male
17638    Hilda    Schmidt    tara.schiller@hammes.io    \N    Liberia    Dietrichfurt    431 Dashawn Vista    17795-7872    Illinois    2016-09-07 16:04:20.550232    2016-10-14 13:03:05.935065        \N    \N    \N    0    \N    \N    \N    \N    male
17639    Carolyn    Schneider    chadrick_hermann@croninbecker.com    \N    Saint Lucia    Jaquanland    61001 Rafael Cove    88681-3097    Georgia    2016-07-02 07:01:14.172173    2016-10-14 13:03:05.939532        \N    \N    \N    0    \N    \N    \N    \N    female
17640    Verla    Cartwright    burdette_douglas@bauch.co    \N    American Samoa    East Vergie    96202 Clair Groves    89397-1625    Wyoming    2016-09-13 16:57:57.956287    2016-10-14 13:03:05.943815        \N    \N    \N    0    \N    \N    \N    \N    female
17641    Delilah    Von    darian.stokes@hauckterry.com    \N    Trinidad and Tobago    Elnorashire    265 Johnston Rapids    66018    Minnesota    2016-08-05 18:08:16.448292    2016-10-14 13:03:05.947964        \N    \N    \N    0    \N    \N    \N    \N    female
17642    Carroll    Bruen    jee@doyle.org    \N    Australia    South Oren    69543 Lolita Walk    68096    Indiana    2016-08-15 12:49:12.806969    2016-10-14 13:03:05.951854        \N    \N    \N    0    \N    \N    \N    \N    male
17643    Julianne    McLaughlin    earline@kulas.co    \N    Estonia    East Mayburgh    514 Myrtle Ranch    76625    Arkansas    2016-08-02 02:48:31.847767    2016-10-14 13:03:05.955621        \N    \N    \N    0    \N    \N    \N    \N    male
17645    Brianne    Jones    colleen_anderson@kuvalis.org    \N    Syrian Arab Republic    Lake Trevionburgh    580 Goodwin Knolls    60334-8229    West Virginia    2016-08-23 03:59:32.607692    2016-10-14 13:03:05.959509        \N    \N    \N    0    \N    \N    \N    \N    male
17646    Aylin    Bode    stefan_heaney@rogahn.biz    \N    Sudan    Waelchiville    89657 Gordon Vista    73678    South Carolina    2016-07-08 09:01:47.378743    2016-10-14 13:03:05.963459        \N    \N    \N    0    \N    \N    \N    \N    male
17647    Rene    Koch    allene@rolfsonondricka.name    \N    Mexico    Ankundingstad    32580 Yessenia Wells    84575    Colorado    2016-07-11 19:21:15.083737    2016-10-14 13:03:05.967242        \N    \N    \N    0    \N    \N    \N    \N    female
17648    Albertha    Cassin    lyla@turcotte.io    \N    Belize    North Kristinfurt    3648 Christine Drive    42523-2635    California    2016-08-19 13:06:42.850413    2016-10-14 13:03:05.971025        \N    \N    \N    0    \N    \N    \N    \N    male
17649    Roosevelt    O'Reilly    ashleigh@cormier.biz    \N    Burundi    Douglaston    28973 Zakary Ranch    97524-5991    Maine    2016-08-19 07:21:53.581849    2016-10-14 13:03:05.974874        \N    \N    \N    0    \N    \N    \N    \N    female
17650    Elda    Stanton    lera.terry@shieldsbarton.org    \N    Saint Kitts and Nevis    Hammesborough    25247 Kozey Spring    53219    Delaware    2016-06-28 00:30:46.309047    2016-10-14 13:03:05.978869        \N    \N    \N    0    \N    \N    \N    \N    male
17651    Claudine    Champlin    marcellus_nicolas@herzog.com    \N    United Arab Emirates    Port Estelleland    3428 Jessie Square    46159-7153    New Jersey    2016-09-08 18:25:18.904886    2016-10-14 13:03:05.983376        \N    \N    \N    0    \N    \N    \N    \N    male
17652    Chester    Johnston    xzavier@pacocha.info    \N    Afghanistan    Pollichburgh    4041 Bailey Mills    30775-7223    California    2016-07-15 21:30:37.07379    2016-10-14 13:03:05.98778        \N    \N    \N    0    \N    \N    \N    \N    male
17653    Marcelle    Hoeger    horacio@donnelly.name    \N    Iceland    East Elijah    748 Dulce Pike    19766    New Jersey    2016-07-14 23:51:29.496167    2016-10-14 13:03:05.992225        \N    \N    \N    0    \N    \N    \N    \N    male
17654    Dillon    Prohaska    austyn.grant@farrell.co    \N    Afghanistan    Gerlachmouth    890 Beier Isle    14742    New York    2016-07-22 11:29:14.844287    2016-10-14 13:03:05.996394        \N    \N    \N    0    \N    \N    \N    \N    female
17655    Aidan    Lindgren    mikel.medhurst@mohr.org    \N    Ethiopia    New Marleytown    300 Kohler Square    67948-0945    Utah    2016-08-10 04:08:01.707232    2016-10-14 13:03:06.001212        \N    \N    \N    0    \N    \N    \N    \N    male
17656    Eldridge    Heaney    bert@gleichner.info    \N    Holy See (Vatican City State)    Lyricville    9227 Trever Isle    64685-0361    Missouri    2016-07-03 05:26:15.791634    2016-10-14 13:03:06.005619        \N    \N    \N    0    \N    \N    \N    \N    male
17657    Annamarie    Smith    tomas_haley@simonis.biz    \N    Tajikistan    North Katrinaborough    1442 Alex Knolls    46851-1677    Michigan    2016-09-05 18:02:50.20867    2016-10-14 13:03:06.009692        \N    \N    \N    0    \N    \N    \N    \N    female
17658    Joshua    Goodwin    dean_herman@willms.io    \N    Turkmenistan    Schulistshire    15457 Keagan Port    61671    Washington    2016-08-20 04:41:57.197118    2016-10-14 13:03:06.013744        \N    \N    \N    0    \N    \N    \N    \N    female
17659    Daniella    Terry    kenneth.terry@ratkelesch.io    \N    Taiwan    South Bellaview    2910 Bahringer Common    64020-6066    Arizona    2016-09-26 23:32:55.118411    2016-10-14 13:03:06.017806        \N    \N    \N    0    \N    \N    \N    \N    male
17660    Jaycee    Satterfield    lemuel@lebsack.net    \N    Saint Vincent and the Grenadines    New Erynborough    802 Corwin Path    89618-6537    Connecticut    2016-07-24 23:04:51.784206    2016-10-14 13:03:06.021854        \N    \N    \N    0    \N    \N    \N    \N    female
17661    Joaquin    Ward    demario.stamm@bednarschultz.co    \N    Iraq    South Karolannborough    5351 Huels Stravenue    12755    Minnesota    2016-07-09 07:12:16.890288    2016-10-14 13:03:06.026038        \N    \N    \N    0    \N    \N    \N    \N    female
17662    Florian    Dietrich    pattie.aufderhar@schneiderlittel.co    \N    Tuvalu    Konopelskiberg    874 Leif Lake    46685-4413    Missouri    2016-08-13 20:25:04.407064    2016-10-14 13:03:06.030079        \N    \N    \N    0    \N    \N    \N    \N    female
17664    Niko    Swaniawski    bradley@gibson.org    \N    Bermuda    Kovacekland    865 Domenick Roads    34716    Wyoming    2016-08-04 13:28:51.66174    2016-10-14 13:03:06.034441        \N    \N    \N    0    \N    \N    \N    \N    male
17665    Nyasia    Gibson    wilton.kozey@feest.net    \N    Saint Vincent and the Grenadines    East Nonafort    378 Gretchen Burgs    36548    North Dakota    2016-06-23 04:23:04.715899    2016-10-14 13:03:06.038502        \N    \N    \N    0    \N    \N    \N    \N    female
17666    Maximus    McClure    reina_wyman@herzog.co    \N    United States Minor Outlying Islands    Simonisberg    60215 Bridie Passage    28649-3642    Kansas    2016-06-30 17:45:40.770389    2016-10-14 13:03:06.04302        \N    \N    \N    0    \N    \N    \N    \N    male
17667    Ines    Sawayn    abbie.quitzon@purdy.org    \N    Guatemala    Cronafort    527 Pietro Orchard    20477-6996    Michigan    2016-08-01 20:40:21.561667    2016-10-14 13:03:06.047265        \N    \N    \N    0    \N    \N    \N    \N    female
17668    Sigurd    Wuckert    paula.okuneva@murphy.com    \N    Svalbard & Jan Mayen Islands    South Waylon    2262 Lehner Track    14916-2121    South Carolina    2016-07-20 23:02:51.087973    2016-10-14 13:03:06.051286        \N    \N    \N    0    \N    \N    \N    \N    male
17669    Ida    Medhurst    novella.ullrich@larson.com    \N    Rwanda    East Trevamouth    1708 Reymundo Haven    49744-9071    Washington    2016-07-18 11:09:39.947156    2016-10-14 13:03:06.055099        \N    \N    \N    0    \N    \N    \N    \N    male
17670    Lucio    Fadel    julio.harris@schmittharris.io    \N    Kuwait    Port Kraigstad    5240 Roosevelt Hill    55968    Wyoming    2016-07-08 17:10:38.82164    2016-10-14 13:03:06.058922        \N    \N    \N    0    \N    \N    \N    \N    male
17671    Osborne    Ernser    oleta@marks.name    \N    Guatemala    Lake Irving    94411 Omari Port    36434-0074    Iowa    2016-07-30 08:01:27.808496    2016-10-14 13:03:06.063191        \N    \N    \N    0    \N    \N    \N    \N    female
17672    Karolann    Vandervort    gabe@nicolas.org    \N    Virgin Islands, U.S.    East Coryfort    1305 Kozey Station    19895-4405    North Carolina    2016-09-24 10:14:27.021672    2016-10-14 13:03:06.071283        \N    \N    \N    0    \N    \N    \N    \N    male
17673    Alycia    Lockman    kevon@glover.org    \N    Guyana    Enaside    981 Brant Trail    70218    Minnesota    2016-07-06 15:50:25.41403    2016-10-14 13:03:06.075419        \N    \N    \N    0    \N    \N    \N    \N    female
17675    Keshaun    Farrell    mckenna@bayer.io    \N    Albania    Littlefort    6639 Gay Haven    93343-8646    North Dakota    2016-07-16 17:46:27.020501    2016-10-14 13:03:06.083899        \N    \N    \N    0    \N    \N    \N    \N    female
17676    Trenton    Weber    pauline.lubowitz@hammepencer.name    \N    Heard Island and McDonald Islands    North Shanny    794 Ferry Glens    14076-5012    New Mexico    2016-09-29 09:07:29.800356    2016-10-14 13:03:06.087862        \N    \N    \N    0    \N    \N    \N    \N    female
17677    Gillian    Flatley    hayden.kreiger@oberbrunnerjast.net    \N    Palau    Enricoborough    585 Terry Radial    13241-6182    Minnesota    2016-09-12 06:47:55.602468    2016-10-14 13:03:06.091757        \N    \N    \N    0    \N    \N    \N    \N    male
17678    Zena    Hand    brendon_cruickshank@konopelskitreutel.net    \N    Ghana    Mrazburgh    225 Cummerata Tunnel    59168-4593    California    2016-07-16 06:50:01.717598    2016-10-14 13:03:06.095608        \N    \N    \N    0    \N    \N    \N    \N    female
17679    Fae    Swift    ward@kiehnchristiansen.co    \N    Japan    Sarinaland    8945 Wuckert Plains    83357-7044    Rhode Island    2016-07-11 10:38:18.230917    2016-10-14 13:03:06.099477        \N    \N    \N    0    \N    \N    \N    \N    female
17680    Fae    Gutmann    sven.halvorson@bode.org    \N    Burkina Faso    Myrtleburgh    6643 Stroman Pines    93118    Virginia    2016-06-23 01:11:42.825696    2016-10-14 13:03:06.103354        \N    \N    \N    0    \N    \N    \N    \N    female
17681    Felipa    Parker    katelin@gislasonbotsford.info    \N    Haiti    North Beryl    15717 Mia Road    53007-2654    Kansas    2016-07-20 03:02:30.056307    2016-10-14 13:03:06.108036        \N    \N    \N    0    \N    \N    \N    \N    female
17682    Corine    Murazik    bell.collins@ziemann.io    \N    Mozambique    Ottoside    5464 Hackett Light    83233    Ohio    2016-08-15 12:05:49.109918    2016-10-14 13:03:06.112225        \N    \N    \N    0    \N    \N    \N    \N    female
17683    Ari    Huel    june.brakus@boyer.info    \N    United States Minor Outlying Islands    New Rashawn    720 Sienna Common    44346-6740    Maine    2016-08-31 03:10:33.311325    2016-10-14 13:03:06.116191        \N    \N    \N    0    \N    \N    \N    \N    male
17684    Bernardo    Beier    jaeden.metz@legros.name    \N    Venezuela    Ephraimshire    8587 Lora Plaza    83695-7778    Tennessee    2016-07-01 10:12:08.768486    2016-10-14 13:03:06.120853        \N    \N    \N    0    \N    \N    \N    \N    female
17685    Rusty    Hauck    jerald_daniel@wilderman.biz    \N    Dominican Republic    West Miles    7622 Taryn Parkways    66613    Georgia    2016-08-21 10:48:42.208312    2016-10-14 13:03:06.125512        \N    \N    \N    0    \N    \N    \N    \N    female
17686    Eda    Cassin    eldora@barton.io    \N    Suriname    Shieldsmouth    741 Cronin Way    75001-1556    Colorado    2016-08-29 19:36:27.220814    2016-10-14 13:03:06.130928        \N    \N    \N    0    \N    \N    \N    \N    male
16121    Edison    Luettgen    alphonso@ferry.name    \N    Poland    New Declan    488 Purdy Trail    85208    Kansas    2016-09-17 18:17:02.419668    2016-10-14 13:03:06.135354        \N    \N    \N    0    \N    \N    \N    \N    female
17687    Ena    Dicki    joaquin_reichel@dibbertschumm.info    \N    Northern Mariana Islands    Leslystad    747 Vilma Lodge    59829-5997    Utah    2016-09-06 11:10:39.361183    2016-10-14 13:03:06.139661        \N    \N    \N    0    \N    \N    \N    \N    male
17688    Mustafa    Lind    alena_borer@nicolas.org    \N    Germany    East Dylanmouth    17625 Bayer Stream    62527    South Carolina    2016-09-23 11:26:46.527611    2016-10-14 13:03:06.143696        \N    \N    \N    0    \N    \N    \N    \N    male
17689    Nickolas    Pfeffer    britney@wuckert.biz    \N    Malawi    Casperview    14199 Harber Square    74546    Connecticut    2016-07-05 23:40:26.218623    2016-10-14 13:03:06.147729        \N    \N    \N    0    \N    \N    \N    \N    male
17690    Merlin    Marvin    libbie_murphy@murray.com    \N    Northern Mariana Islands    East Nicolas    34088 Murray Summit    92663    Connecticut    2016-09-04 20:39:56.757986    2016-10-14 13:03:06.151706        \N    \N    \N    0    \N    \N    \N    \N    female
17691    Elza    Stehr    destin.reichel@jacobidaugherty.com    \N    El Salvador    New Mabellefort    923 Reichert Vista    40932-8945    Connecticut    2016-08-16 11:27:43.863733    2016-10-14 13:03:06.155687        \N    \N    \N    0    \N    \N    \N    \N    female
17692    Kolby    Corwin    guillermo_stehr@smithzemlak.info    \N    Saint Helena    East Feltonchester    8563 Amparo Rest    91267-0467    Texas    2016-08-20 19:28:12.053125    2016-10-14 13:03:06.159605        \N    \N    \N    0    \N    \N    \N    \N    female
17693    Abagail    Cummings    gerson@kemmer.com    \N    Macedonia    North Delmer    460 Schumm Point    10343    Washington    2016-07-07 05:44:24.598106    2016-10-14 13:03:06.164072        \N    \N    \N    0    \N    \N    \N    \N    male
17694    Danika    Reichel    litzy@labadiegreen.io    \N    Zambia    South Dorcas    526 Lang Walk    16349    Ohio    2016-06-23 16:16:29.985301    2016-10-14 13:03:06.168497        \N    \N    \N    0    \N    \N    \N    \N    female
17695    Merle    Steuber    ernie@kautzerchamplin.info    \N    Libyan Arab Jamahiriya    West Ruthe    5406 Feeney Keys    56839-4390    Massachusetts    2016-07-04 06:16:53.25433    2016-10-14 13:03:06.172977        \N    \N    \N    0    \N    \N    \N    \N    male
17696    Willow    Lockman    gretchen.kilback@muller.info    \N    Norway    East Hobart    29608 Altenwerth Lakes    66763    New Jersey    2016-08-08 04:33:55.678842    2016-10-14 13:03:06.177351        \N    \N    \N    0    \N    \N    \N    \N    male
17697    Mafalda    Eichmann    tomas_okuneva@jastkeeling.org    \N    Afghanistan    North Brianneburgh    6688 Brown Club    24540    California    2016-07-26 22:11:26.295526    2016-10-14 13:03:06.182285        \N    \N    \N    0    \N    \N    \N    \N    female
17698    Jason    Heathcote    gielle@collier.biz    \N    American Samoa    West Misael    64521 Cordie Spurs    46212-5065    Massachusetts    2016-07-18 01:02:43.084845    2016-10-14 13:03:06.186728        \N    \N    \N    0    \N    \N    \N    \N    male
17699    Delilah    Tillman    liliana@greenstoltenberg.net    \N    Namibia    Morissettehaven    275 Stamm Estate    43165    Maryland    2016-07-15 19:45:16.115846    2016-10-14 13:03:06.190916        \N    \N    \N    0    \N    \N    \N    \N    male
17700    Alden    Heathcote    erich@abshire.co    \N    Belize    Port Leannaville    137 Bergnaum Ranch    65407    Indiana    2016-07-21 12:35:46.884744    2016-10-14 13:03:06.197955        \N    \N    \N    0    \N    \N    \N    \N    female
17701    Leanne    MacGyver    quentin@bogan.biz    \N    Djibouti    Port Makenzieburgh    8337 Fred Ports    64124    North Dakota    2016-07-27 09:36:31.412843    2016-10-14 13:03:06.203384        \N    \N    \N    0    \N    \N    \N    \N    female
17747    Delores    Swift    lonny@kuhlman.com    \N    Turks and Caicos Islands    East Lavadatown    1573 Rosenbaum Pike    70833    Washington    2016-08-13 14:48:33.885544    2016-10-14 13:03:06.210716        \N    \N    \N    0    \N    \N    \N    \N    male
17702    Raymond    Larkin    everett_kshlerin@mitchellhowell.info    \N    Saint Kitts and Nevis    Natalieland    956 Kozey Garden    70208    Mississippi    2016-07-13 11:02:27.95489    2016-10-14 13:03:06.21507        \N    \N    \N    0    \N    \N    \N    \N    male
17703    Winifred    Gibson    zechariah_hahn@stark.co    \N    Greenland    Keyshawntown    8563 Kuvalis Tunnel    32055-8838    New Hampshire    2016-09-04 06:31:54.105505    2016-10-14 13:03:06.219926        \N    \N    \N    0    \N    \N    \N    \N    male
17704    Hope    Rempel    brigitte.schneider@rempelwilliamson.name    \N    Serbia    Kyraside    3997 Loren Meadow    96480    Kansas    2016-08-01 22:49:51.806027    2016-10-14 13:03:06.229808        \N    \N    \N    0    \N    \N    \N    \N    female
17705    Ayden    Kertzmann    sonia@yundt.name    \N    Saint Kitts and Nevis    North Adrielfurt    6795 Rempel Cliffs    43928    Minnesota    2016-09-21 15:09:02.188574    2016-10-14 13:03:06.235513        \N    \N    \N    0    \N    \N    \N    \N    male
17706    Queenie    Batz    mervin_trantow@upton.net    \N    Senegal    South Jarod    350 Dallin River    58583-3520    Georgia    2016-07-29 14:56:34.588664    2016-10-14 13:03:06.241108        \N    \N    \N    0    \N    \N    \N    \N    male
17707    Hector    McClure    milan.runolfsdottir@hahn.co    \N    El Salvador    South Hesterport    26996 Felix Stravenue    48493    North Carolina    2016-09-04 09:10:52.046051    2016-10-14 13:03:06.245865        \N    \N    \N    0    \N    \N    \N    \N    female
17708    Eldred    Crooks    seth@spencerrunolfon.org    \N    Kyrgyz Republic    North Alffort    376 Smith Shore    25417-2326    Pennsylvania    2016-08-23 01:27:12.021321    2016-10-14 13:03:06.250166        \N    \N    \N    0    \N    \N    \N    \N    male
17709    Shanon    Barrows    nathen@bednar.com    \N    Reunion    Brownton    2655 Leffler Villages    96440    Pennsylvania    2016-09-26 10:48:53.379433    2016-10-14 13:03:06.254588        \N    \N    \N    0    \N    \N    \N    \N    female
17710    Brendan    Welch    manley@macejkovicwindler.biz    \N    Czech Republic    Hackettville    799 Sedrick Mountain    47987    Kentucky    2016-09-19 10:14:09.147614    2016-10-14 13:03:06.258905        \N    \N    \N    0    \N    \N    \N    \N    female
17711    Turner    Langworth    destini@botsford.co    \N    Bahrain    Erdmanshire    11927 Shakira Roads    48460-7853    Kentucky    2016-08-31 06:42:54.654006    2016-10-14 13:03:06.263456        \N    \N    \N    0    \N    \N    \N    \N    female
17712    Jon    Blanda    laurine.johns@waterswatsica.org    \N    Singapore    Urielmouth    3431 Rodriguez Causeway    30553    New Hampshire    2016-08-17 23:04:15.991371    2016-10-14 13:03:06.267685        \N    \N    \N    0    \N    \N    \N    \N    male
17713    Gustave    Lemke    godfrey@jacobs.info    \N    Maldives    Kuhnside    3440 Crist Passage    60586-4152    Indiana    2016-09-07 05:30:13.678296    2016-10-14 13:03:06.271579        \N    \N    \N    0    \N    \N    \N    \N    male
17714    Shaun    Conn    tamia.bergstrom@adams.net    \N    Micronesia    Joseview    38935 Kilback Haven    83198-2987    Michigan    2016-08-13 19:14:24.165952    2016-10-14 13:03:06.275846        \N    \N    \N    0    \N    \N    \N    \N    female
17715    Zola    Hudson    godfrey@jaskolski.org    \N    Haiti    New Kallieton    494 Jalen Flat    47924-1571    New Mexico    2016-07-09 12:17:41.649795    2016-10-14 13:03:06.280438        \N    \N    \N    0    \N    \N    \N    \N    female
17716    Rosella    Walker    camilla@hahn.com    \N    Sri Lanka    Heaneyberg    1767 Kuphal Court    44852    New Hampshire    2016-09-26 16:28:41.557527    2016-10-14 13:03:06.284796        \N    \N    \N    0    \N    \N    \N    \N    female
17718    Marielle    Schneider    faye.hermiston@hills.name    \N    Czech Republic    Lindchester    270 Brakus Row    30876-8886    South Carolina    2016-09-13 06:34:58.600313    2016-10-14 13:03:06.289557        \N    \N    \N    0    \N    \N    \N    \N    male
17719    Ernestina    Dach    titus.lakin@kuhlman.io    \N    Mexico    Weimannhaven    17566 Predovic Skyway    22929    Oregon    2016-09-08 05:07:55.944507    2016-10-14 13:03:06.293956        \N    \N    \N    0    \N    \N    \N    \N    male
17720    Sage    Greenholt    monroe@senger.com    \N    Cocos (Keeling) Islands    East Lonnie    2397 Feest Spur    18632    Massachusetts    2016-09-18 18:33:25.563543    2016-10-14 13:03:06.298649        \N    \N    \N    0    \N    \N    \N    \N    female
17721    Ronny    Marquardt    myriam_reichel@ryanoconnell.name    \N    Vietnam    Adeleshire    105 Esteban Port    17865-3264    Tennessee    2016-08-16 01:35:55.470228    2016-10-14 13:03:06.303413        \N    \N    \N    0    \N    \N    \N    \N    male
17722    Letitia    Stoltenberg    jabari@eichmann.co    \N    Slovakia (Slovak Republic)    Kiarrafurt    859 Adonis Stream    97650    Indiana    2016-07-14 14:05:07.949869    2016-10-14 13:03:06.307897        \N    \N    \N    0    \N    \N    \N    \N    female
17723    Lyla    Murphy    casper@gutmann.co    \N    Belgium    Jeramyville    7038 Donnelly Haven    21162    Nebraska    2016-09-06 01:50:41.047665    2016-10-14 13:03:06.311821        \N    \N    \N    0    \N    \N    \N    \N    male
17724    Aubrey    Sanford    hans_koelpin@bergnaum.org    \N    Costa Rica    Lazaroton    6095 Doyle Dam    55429-6723    Nevada    2016-07-27 02:30:42.92136    2016-10-14 13:03:06.315947        \N    \N    \N    0    \N    \N    \N    \N    female
17725    Buddy    Hahn    amanda_dibbert@carter.info    \N    Bouvet Island (Bouvetoya)    East Nolanmouth    178 Doyle Ford    40513-9478    Connecticut    2016-06-26 04:21:09.029041    2016-10-14 13:03:06.320338        \N    \N    \N    0    \N    \N    \N    \N    female
17726    Bessie    Gutkowski    henderson.renner@champlinko.com    \N    American Samoa    Micahstad    616 Tiffany Glens    46092-4538    Kentucky    2016-07-25 22:30:45.946715    2016-10-14 13:03:06.324793        \N    \N    \N    0    \N    \N    \N    \N    male
17727    Kayleigh    Fisher    aliya@konopelski.io    \N    Wallis and Futuna    Elviebury    62029 Ashtyn Hills    69639-7025    Indiana    2016-09-11 17:13:19.54006    2016-10-14 13:03:06.330029        \N    \N    \N    0    \N    \N    \N    \N    male
17728    Orville    Hayes    danial@kirlin.name    \N    Estonia    Wildermanbury    430 Bailey Tunnel    81573    California    2016-09-23 02:04:07.754112    2016-10-14 13:03:06.334541        \N    \N    \N    0    \N    \N    \N    \N    male
17729    Sven    Baumbach    fae@schmeler.com    \N    Pitcairn Islands    Karianemouth    5708 Dooley Hill    52028    Arizona    2016-08-08 04:35:00.516947    2016-10-14 13:03:06.338884        \N    \N    \N    0    \N    \N    \N    \N    male
17730    Angelita    Doyle    alfreda@schmitt.info    \N    Seychelles    Erikatown    4659 Camila Freeway    74245    Pennsylvania    2016-07-07 19:29:36.09501    2016-10-14 13:03:06.342675        \N    \N    \N    0    \N    \N    \N    \N    female
17731    Brook    Legros    eli_hudson@effertzwilkinson.info    \N    Kiribati    North Bill    97328 Kuvalis Valley    38341    Tennessee    2016-08-10 08:21:30.943436    2016-10-14 13:03:06.347105        \N    \N    \N    0    \N    \N    \N    \N    male
17732    Wilfrid    McClure    fritz@damore.info    \N    Faroe Islands    Zulauffort    3163 Daron Hollow    85067    Indiana    2016-09-04 16:39:10.122798    2016-10-14 13:03:06.352364        \N    \N    \N    0    \N    \N    \N    \N    female
17733    Gregg    Boehm    carroll@bahringer.name    \N    Saint Kitts and Nevis    West Tellymouth    8174 Lucy Ville    32604-0371    Nebraska    2016-07-04 05:32:49.048902    2016-10-14 13:03:06.357117        \N    \N    \N    0    \N    \N    \N    \N    female
17734    Lester    Schaefer    bennie.kshlerin@wehner.com    \N    Hungary    Hansshire    609 Blick Burgs    21806-2073    New Mexico    2016-09-15 23:51:00.554609    2016-10-14 13:03:06.361813        \N    \N    \N    0    \N    \N    \N    \N    male
17735    Emily    Sauer    krystal.waelchi@hintzschaefer.org    \N    Saint Lucia    Stokesmouth    96525 Rippin Vista    18550    New Hampshire    2016-08-21 11:06:28.443537    2016-10-14 13:03:06.366184        \N    \N    \N    0    \N    \N    \N    \N    female
17736    Thalia    Wolff    lois_heathcote@kaulke.com    \N    Guernsey    Ritchiebury    5823 Hilll Springs    28124-1182    New Mexico    2016-07-06 14:36:12.613378    2016-10-14 13:03:06.370584        \N    \N    \N    0    \N    \N    \N    \N    female
17738    Darius    Gerhold    vada@jacobsblick.co    \N    Uzbekistan    Gastonshire    891 Annetta Curve    66836-0592    Maryland    2016-09-22 22:53:00.567584    2016-10-14 13:03:06.374894        \N    \N    \N    0    \N    \N    \N    \N    female
17739    Graciela    Kemmer    candido@schultz.io    \N    Kuwait    Ullrichport    85145 Pattie Village    65810-1015    New Mexico    2016-07-02 11:07:00.774204    2016-10-14 13:03:06.37941        \N    \N    \N    0    \N    \N    \N    \N    male
17789    Raymond    Botsford    kim@torp.name    \N    Isle of Man    South Julien    694 Rodriguez Pine    80321-2634    New York    2016-07-02 03:03:03.436872    2016-10-14 13:03:06.574984        \N    \N    \N    0    \N    \N    \N    \N    male
17740    Natalia    Marquardt    pedro.carter@heidenreich.net    \N    Lao People's Democratic Republic    East Petra    5087 Florencio View    86622-5790    Rhode Island    2016-06-25 19:40:47.806276    2016-10-14 13:03:06.383872        \N    \N    \N    0    \N    \N    \N    \N    male
17741    Adaline    Renner    mariano@daughertymorar.com    \N    Dominica    Stammborough    622 Marilyne Loop    70981-3397    New Hampshire    2016-08-09 15:00:56.329725    2016-10-14 13:03:06.388183        \N    \N    \N    0    \N    \N    \N    \N    male
17742    Emiliano    Pfeffer    maud_beier@kiehn.name    \N    Vietnam    Lisandroborough    704 Astrid Avenue    26109    Virginia    2016-09-05 21:01:02.040849    2016-10-14 13:03:06.392419        \N    \N    \N    0    \N    \N    \N    \N    male
17743    Zelma    McDermott    lenna_conroy@corwinfarrell.co    \N    Hong Kong    East Gerard    9935 Barrows Meadows    32393-9724    Hawaii    2016-08-16 14:20:00.120643    2016-10-14 13:03:06.396945        \N    \N    \N    0    \N    \N    \N    \N    male
17744    Verona    Barrows    gilbert.marvin@pollich.biz    \N    Maldives    North Annalise    6608 Estelle Prairie    28383    Kansas    2016-09-01 18:31:37.087614    2016-10-14 13:03:06.401452        \N    \N    \N    0    \N    \N    \N    \N    male
17745    Mara    Stokes    una_dickens@stracke.info    \N    American Samoa    Goldnerville    35307 Dolores Mountains    70240    Oklahoma    2016-07-01 08:35:38.380219    2016-10-14 13:03:06.406079        \N    \N    \N    0    \N    \N    \N    \N    female
17748    Kareem    Schumm    cindy@damore.co    \N    Grenada    South Germaine    79653 Towne Path    81479-8934    South Dakota    2016-08-11 15:05:22.424516    2016-10-14 13:03:06.410634        \N    \N    \N    0    \N    \N    \N    \N    female
17749    Hertha    McDermott    malika_fisher@kuhn.org    \N    French Southern Territories    West Tyreetown    61550 Conn Cliffs    45662    Colorado    2016-08-01 03:03:21.065923    2016-10-14 13:03:06.415168        \N    \N    \N    0    \N    \N    \N    \N    female
17750    Donny    Quitzon    naomi@mcclurewilderman.io    \N    Burundi    Quigleyside    21945 Sawayn Fields    29897-0900    Hawaii    2016-09-13 21:49:20.622894    2016-10-14 13:03:06.421777        \N    \N    \N    0    \N    \N    \N    \N    male
17751    Lempi    Raynor    theodore.rowe@volkman.net    \N    Saint Kitts and Nevis    Ceciliachester    6944 Ward Key    39010    Alabama    2016-07-11 11:45:58.989969    2016-10-14 13:03:06.426409        \N    \N    \N    0    \N    \N    \N    \N    male
17752    Pat    Fritsch    selena@dickens.biz    \N    French Guiana    Myrtisland    26817 Gregorio Burg    64596-9898    Massachusetts    2016-09-15 20:52:24.687008    2016-10-14 13:03:06.430585        \N    \N    \N    0    \N    \N    \N    \N    female
17753    Emory    Dooley    marjory.roberts@stracke.name    \N    Guinea    Lake Luciano    3460 McClure Gardens    95874    North Dakota    2016-08-09 00:23:40.329967    2016-10-14 13:03:06.434558        \N    \N    \N    0    \N    \N    \N    \N    male
17754    Santina    Davis    ignatius@bradtkewintheiser.org    \N    Mauritania    Lake Keyshawnland    8682 White Dam    28633-3481    Arizona    2016-08-06 15:27:03.08384    2016-10-14 13:03:06.438412        \N    \N    \N    0    \N    \N    \N    \N    male
17755    Hulda    Orn    vincent@frami.info    \N    Armenia    Nikoport    547 Maximillian Route    23372-8694    Delaware    2016-08-19 08:25:58.508509    2016-10-14 13:03:06.442268        \N    \N    \N    0    \N    \N    \N    \N    male
17756    Alysha    Morissette    noemi@bayer.net    \N    Jersey    Oberbrunnerland    7748 Eleonore Orchard    41650-6170    Montana    2016-09-05 07:44:03.890008    2016-10-14 13:03:06.44614        \N    \N    \N    0    \N    \N    \N    \N    male
17757    Clifford    Dicki    florida.kuvalis@barton.org    \N    San Marino    Beahanview    393 Roosevelt Spring    34072-7888    Kansas    2016-09-04 22:01:40.686534    2016-10-14 13:03:06.4502        \N    \N    \N    0    \N    \N    \N    \N    male
17758    Lexie    Halvorson    eli@heidenreichparker.co    \N    Indonesia    South Clay    60891 Armstrong Burgs    28078-6361    West Virginia    2016-08-14 10:53:52.253302    2016-10-14 13:03:06.454118        \N    \N    \N    0    \N    \N    \N    \N    female
17759    Lea    Crooks    evalyn@deckow.name    \N    United Arab Emirates    East Melany    9534 Hoppe Streets    48252-6467    New Jersey    2016-09-04 23:53:09.618749    2016-10-14 13:03:06.458199        \N    \N    \N    0    \N    \N    \N    \N    female
17760    Precious    Hane    maudie_morar@aufderharbauch.name    \N    Algeria    West Jazmyne    9378 Bradtke Fords    64360    Arizona    2016-09-11 02:26:43.231947    2016-10-14 13:03:06.462285        \N    \N    \N    0    \N    \N    \N    \N    male
17761    Bethel    Corkery    ron@ryanwolff.io    \N    Tokelau    Port Kurthaven    732 Kuvalis Lodge    43281    North Dakota    2016-09-17 02:38:50.440351    2016-10-14 13:03:06.466351        \N    \N    \N    0    \N    \N    \N    \N    male
17762    Gracie    Kemmer    javonte.conroy@quitzon.co    \N    Israel    Hayeshaven    86747 Watsica Plains    26009-7330    Massachusetts    2016-08-15 13:55:41.495725    2016-10-14 13:03:06.47057        \N    \N    \N    0    \N    \N    \N    \N    female
17763    Adolf    Ledner    makenzie.zemlak@sauer.co    \N    Guinea-Bissau    Gabeport    27486 Susie Trafficway    86243-0686    North Dakota    2016-06-27 15:24:58.082507    2016-10-14 13:03:06.474591        \N    \N    \N    0    \N    \N    \N    \N    female
17764    Orrin    Brekke    dana@hicklemiller.net    \N    Antarctica (the territory South of 60 deg S)    North Lenna    4529 Rowe Terrace    13294    Rhode Island    2016-07-19 15:54:10.171267    2016-10-14 13:03:06.478391        \N    \N    \N    0    \N    \N    \N    \N    male
17766    Theodora    Bogan    kole@littel.net    \N    Peru    Gilbertborough    74952 Spencer Knoll    47359-7217    Alaska    2016-08-24 21:49:34.738344    2016-10-14 13:03:06.482229        \N    \N    \N    0    \N    \N    \N    \N    male
17767    Alessandra    Nitzsche    margaretta.sauer@cummerata.com    \N    Guernsey    South Jaquelin    5268 Brekke Tunnel    29116-4021    Alaska    2016-07-01 06:30:58.243598    2016-10-14 13:03:06.486141        \N    \N    \N    0    \N    \N    \N    \N    male
17768    Hardy    Flatley    samara_farrell@jerde.com    \N    Turkey    New Yadirahaven    6044 Aiden Parks    64476    Louisiana    2016-08-25 13:21:07.059612    2016-10-14 13:03:06.49026        \N    \N    \N    0    \N    \N    \N    \N    male
17769    Grover    McGlynn    irwin@bartonsipes.co    \N    Cocos (Keeling) Islands    New Lavinaton    705 Emard Trafficway    87690    Missouri    2016-07-14 02:40:03.040201    2016-10-14 13:03:06.494424        \N    \N    \N    0    \N    \N    \N    \N    female
17770    Destinee    Abshire    odie@kerluke.name    \N    Holy See (Vatican City State)    Lake Desmondbury    86228 Torp Lock    48780-0701    Kansas    2016-07-12 16:12:58.43784    2016-10-14 13:03:06.498955        \N    \N    \N    0    \N    \N    \N    \N    male
17772    Dennis    Kuvalis    camron@ullrich.io    \N    Holy See (Vatican City State)    South Brad    940 Collier Corner    71090    Texas    2016-09-10 21:00:27.650214    2016-10-14 13:03:06.503646        \N    \N    \N    0    \N    \N    \N    \N    female
17773    Nelle    Weber    beatrice@johnstonwalsh.biz    \N    Solomon Islands    Port Parkerchester    327 Runolfsdottir Brooks    22968-8206    Iowa    2016-09-27 23:23:43.694205    2016-10-14 13:03:06.508212        \N    \N    \N    0    \N    \N    \N    \N    female
17774    Dorothea    Parisian    dillon_bogan@konopelski.org    \N    Cayman Islands    New Kadin    69646 Macy Ranch    11884-4226    New Hampshire    2016-09-19 03:55:21.040091    2016-10-14 13:03:06.512548        \N    \N    \N    0    \N    \N    \N    \N    female
17775    Amina    Konopelski    nicholas@wolf.org    \N    Morocco    New Thomas    7548 Jovany Terrace    95375    North Dakota    2016-08-24 10:43:23.779234    2016-10-14 13:03:06.516591        \N    \N    \N    0    \N    \N    \N    \N    male
17776    Elian    Satterfield    coleman_collier@effertz.co    \N    Finland    West Rozella    26654 Araceli Fields    95818-0342    Hawaii    2016-08-24 02:32:13.856192    2016-10-14 13:03:06.520487        \N    \N    \N    0    \N    \N    \N    \N    male
17777    Santiago    Gusikowski    bertram@schultz.co    \N    Brazil    New Zackchester    4890 Reyna Village    97860    Oregon    2016-08-17 20:09:25.45456    2016-10-14 13:03:06.524282        \N    \N    \N    0    \N    \N    \N    \N    male
17778    Ova    Cronin    precious@waters.io    \N    Falkland Islands (Malvinas)    South Boyd    535 Brad Walks    68299    Massachusetts    2016-07-17 16:14:29.99367    2016-10-14 13:03:06.528648        \N    \N    \N    0    \N    \N    \N    \N    female
17779    Kaia    Grady    violet.jaskolski@herman.io    \N    Oman    Ebertborough    880 Mante Via    99591-6792    Mississippi    2016-08-25 22:59:59.030833    2016-10-14 13:03:06.533051        \N    \N    \N    0    \N    \N    \N    \N    male
17780    Jermey    Windler    dion_rosenbaum@hills.net    \N    Spain    Eulahshire    8663 Mandy Mount    78297-3884    Utah    2016-09-02 13:56:42.915782    2016-10-14 13:03:06.537021        \N    \N    \N    0    \N    \N    \N    \N    male
17781    Rashawn    Dickinson    emil.block@ondricka.net    \N    Sri Lanka    Alysonview    2323 Labadie Pine    28392    Maryland    2016-09-28 17:33:12.732087    2016-10-14 13:03:06.541461        \N    \N    \N    0    \N    \N    \N    \N    female
17782    Genevieve    Reynolds    alexie.lindgren@auerkirlin.biz    \N    Czech Republic    West Earnest    248 Simonis Drive    44905    Nebraska    2016-08-16 09:18:31.60753    2016-10-14 13:03:06.545772        \N    \N    \N    0    \N    \N    \N    \N    male
17783    Jocelyn    Collier    hildegard.parker@wyman.co    \N    Albania    Muellerton    8341 Kari Plains    46781    Wyoming    2016-08-22 10:00:07.132577    2016-10-14 13:03:06.549578        \N    \N    \N    0    \N    \N    \N    \N    female
17784    Otis    Carter    jordane@robelquitzon.info    \N    Palestinian Territory    East Nicoletteburgh    157 Camren Lodge    62630-9801    Idaho    2016-09-01 04:10:23.609039    2016-10-14 13:03:06.553669        \N    \N    \N    0    \N    \N    \N    \N    male
17785    Jeanie    Reichel    quincy@goyette.com    \N    Monaco    West Constantin    658 Dicki Village    38467-0209    North Dakota    2016-08-02 22:36:46.748142    2016-10-14 13:03:06.558075        \N    \N    \N    0    \N    \N    \N    \N    male
17786    Shanelle    Batz    jeika.towne@stark.info    \N    New Zealand    South Ottisbury    7827 Russel Union    71753    Illinois    2016-07-16 12:10:48.784227    2016-10-14 13:03:06.5622        \N    \N    \N    0    \N    \N    \N    \N    male
17787    Jamaal    Harris    virginie@williamsonheel.info    \N    Switzerland    South Gabe    8047 Koss Track    86934    Wyoming    2016-08-29 07:49:26.486587    2016-10-14 13:03:06.566366        \N    \N    \N    0    \N    \N    \N    \N    male
17788    Christa    Turcotte    eduardo@kuhlman.name    \N    Guyana    Jewelton    507 Goldner Tunnel    55785    California    2016-08-30 07:13:56.923441    2016-10-14 13:03:06.570693        \N    \N    \N    0    \N    \N    \N    \N    male
17790    Magdalen    Cormier    darius_koepp@gulgowski.name    \N    Hungary    South Brionna    456 Cedrick Heights    71770-7822    Arizona    2016-06-26 03:12:50.165579    2016-10-14 13:03:06.578885        \N    \N    \N    0    \N    \N    \N    \N    female
17791    Chaz    Metz    harley.king@ernserhilpert.co    \N    Palau    Bahringerborough    87540 Tyrell Ford    84866-2483    Massachusetts    2016-09-18 17:17:06.190038    2016-10-14 13:03:06.582779        \N    \N    \N    0    \N    \N    \N    \N    female
17792    Kathlyn    Wisozk    moie.mraz@volkman.org    \N    Namibia    Hagenesmouth    23237 Kathryne Ville    34552-4484    Maine    2016-07-04 21:17:30.022204    2016-10-14 13:03:06.586525        \N    \N    \N    0    \N    \N    \N    \N    male
17793    Thora    Witting    eveline@eichmannbatz.org    \N    Netherlands    New Cathrine    8484 Megane Heights    91014-0848    Indiana    2016-07-02 19:32:59.888992    2016-10-14 13:03:06.590717        \N    \N    \N    0    \N    \N    \N    \N    female
17794    Maxwell    Bruen    adrien@schmidt.com    \N    Botswana    Madelynnmouth    4853 Stehr Extension    91464-9579    Kentucky    2016-08-13 01:51:37.252948    2016-10-14 13:03:06.595123        \N    \N    \N    0    \N    \N    \N    \N    female
17795    Gretchen    Botsford    brant@sipes.net    \N    American Samoa    Lake Vitaport    5772 Sydnie Place    84798    Georgia    2016-09-27 07:55:33.24268    2016-10-14 13:03:06.598981        \N    \N    \N    0    \N    \N    \N    \N    female
17796    Dejuan    Heathcote    therese@lowe.org    \N    American Samoa    Runolfssonland    56753 Littel Isle    71148-2124    South Dakota    2016-08-25 13:29:45.560663    2016-10-14 13:03:06.603003        \N    \N    \N    0    \N    \N    \N    \N    female
17797    Emma    McCullough    alicia.rau@corwin.com    \N    Svalbard & Jan Mayen Islands    Mariahstad    315 Adams Islands    61014-6576    Nevada    2016-08-21 17:23:33.628004    2016-10-14 13:03:06.607125        \N    \N    \N    0    \N    \N    \N    \N    male
17798    Francisco    Lakin    brad@huelsframi.com    \N    Bangladesh    Katelynbury    31376 Roderick Forges    60353-0774    Connecticut    2016-07-23 21:03:48.067524    2016-10-14 13:03:06.611819        \N    \N    \N    0    \N    \N    \N    \N    female
17799    Anissa    Kirlin    abigail.greenholt@osinski.org    \N    Cambodia    O'Reillychester    94805 Carmel Shoals    41024    Vermont    2016-09-05 07:53:20.46669    2016-10-14 13:03:06.616208        \N    \N    \N    0    \N    \N    \N    \N    female
17800    Flavio    MacGyver    emery@greenfelder.co    \N    French Guiana    Cassinview    386 Larson Skyway    72850    Kansas    2016-08-16 16:09:05.555731    2016-10-14 13:03:06.620209        \N    \N    \N    0    \N    \N    \N    \N    female
17801    Rosalee    Lehner    elody@mohr.biz    \N    Timor-Leste    Harrismouth    32275 Sonia Circle    64570    Arizona    2016-09-22 21:48:22.223988    2016-10-14 13:03:06.624426        \N    \N    \N    0    \N    \N    \N    \N    female
17802    Retta    Wuckert    eda@corkery.org    \N    Saint Vincent and the Grenadines    South Lailaport    7314 Leffler Stravenue    67395-6223    Wisconsin    2016-08-26 14:30:50.645288    2016-10-14 13:03:06.628503        \N    \N    \N    0    \N    \N    \N    \N    female
17803    Leopold    Schamberger    lyda_mitchell@stracke.biz    \N    Croatia    Barryshire    80049 Emma Track    41461    Indiana    2016-08-15 07:42:52.441235    2016-10-14 13:03:06.632961        \N    \N    \N    0    \N    \N    \N    \N    male
17804    Vita    Steuber    quinn_nicolas@frami.co    \N    Syrian Arab Republic    New Marcus    46080 Quinten Manors    87673-7176    Connecticut    2016-07-11 08:25:09.225121    2016-10-14 13:03:06.637508        \N    \N    \N    0    \N    \N    \N    \N    female
17806    Shyann    Corwin    xavier@cremin.co    \N    Svalbard & Jan Mayen Islands    North Allison    2399 Jammie Vista    63353-8824    Washington    2016-08-17 17:31:18.867131    2016-10-14 13:03:06.641937        \N    \N    \N    0    \N    \N    \N    \N    male
17807    Russell    Welch    albin.king@oberbrunner.org    \N    Uganda    Lake Hermannfurt    873 Bartoletti Views    73786-7105    New Jersey    2016-08-29 04:39:29.945571    2016-10-14 13:03:06.646465        \N    \N    \N    0    \N    \N    \N    \N    male
17808    Sydney    Keeling    blaise.smitham@purdydickinson.name    \N    Somalia    East Diamondmouth    392 Hintz Estate    62769-8338    New Hampshire    2016-08-08 23:18:40.983099    2016-10-14 13:03:06.651039        \N    \N    \N    0    \N    \N    \N    \N    female
17809    Miracle    Reichert    name.breitenberg@wehner.com    \N    Timor-Leste    Caseymouth    228 Wunsch Shore    98284    Rhode Island    2016-06-23 04:18:34.936861    2016-10-14 13:03:06.655149        \N    \N    \N    0    \N    \N    \N    \N    female
17810    Bailey    Larson    emile_green@weinatjohnson.info    \N    Guadeloupe    Christiansenton    488 Narciso Fort    87692    New Mexico    2016-08-18 13:55:05.063273    2016-10-14 13:03:06.659175        \N    \N    \N    0    \N    \N    \N    \N    female
17811    Jaquelin    Bergstrom    glenna@botsford.io    \N    Puerto Rico    Kiannamouth    12654 Gerhold Shores    78490    New Mexico    2016-08-06 20:58:26.544381    2016-10-14 13:03:06.663002        \N    \N    \N    0    \N    \N    \N    \N    female
17812    Brisa    Nienow    shawn@ortiz.co    \N    Guam    Grahamfort    381 Leuschke Street    18452    New Mexico    2016-08-27 13:03:01.091881    2016-10-14 13:03:06.666818        \N    \N    \N    0    \N    \N    \N    \N    male
17813    Leora    Ortiz    vernice@witting.net    \N    Bulgaria    East Ashtynville    98188 Joanny Oval    63989    Idaho    2016-09-02 14:26:53.779683    2016-10-14 13:03:06.671106        \N    \N    \N    0    \N    \N    \N    \N    female
17814    Peter    Glover    chance_windler@welch.info    \N    Cook Islands    Willchester    61111 Humberto Bypass    24938    Wyoming    2016-08-19 21:45:05.937128    2016-10-14 13:03:06.675117        \N    \N    \N    0    \N    \N    \N    \N    female
17815    Kiera    O'Kon    santino@mosciski.biz    \N    Belgium    Mistystad    5580 Lilyan Park    29783    Nebraska    2016-09-03 09:51:42.003665    2016-10-14 13:03:06.678987        \N    \N    \N    0    \N    \N    \N    \N    male
17816    Aliyah    Jaskolski    breana.crooks@conroy.io    \N    Montenegro    Bartellview    5132 Laila Fort    31221    Connecticut    2016-07-04 03:55:40.832605    2016-10-14 13:03:06.682691        \N    \N    \N    0    \N    \N    \N    \N    female
17817    Caleb    Mertz    aniyah_morar@bernier.net    \N    Niue    Goyetteview    6504 Madonna Views    65335-3188    Washington    2016-09-02 17:30:09.207888    2016-10-14 13:03:06.686452        \N    \N    \N    0    \N    \N    \N    \N    female
17818    Albertha    Nicolas    kylee_kilback@kohler.com    \N    United Kingdom    Huelland    96236 Moses Crossing    68400    Washington    2016-09-10 15:19:56.263025    2016-10-14 13:03:06.690368        \N    \N    \N    0    \N    \N    \N    \N    male
17820    Kamren    Cronin    damon@gutkowskiosinski.biz    \N    French Southern Territories    Dachville    365 Eichmann Creek    73375    Wisconsin    2016-08-09 00:59:02.683978    2016-10-14 13:03:06.694324        \N    \N    \N    0    \N    \N    \N    \N    female
17821    Vernon    Lynch    maureen_hilll@prosacco.net    \N    Russian Federation    Port Misael    999 Flatley Bypass    97563    Virginia    2016-07-06 15:34:25.866432    2016-10-14 13:03:06.698467        \N    \N    \N    0    \N    \N    \N    \N    male
17822    Adrianna    Beer    ashleigh@conroy.info    \N    Cocos (Keeling) Islands    Zechariahhaven    88567 Brennon Dale    21759-5727    Idaho    2016-07-19 01:05:47.718856    2016-10-14 13:03:06.702545        \N    \N    \N    0    \N    \N    \N    \N    male
17823    Demetrius    Volkman    taryn@konopelski.co    \N    Saint Lucia    East Rudolphberg    9044 Wiza Club    75797    West Virginia    2016-08-09 21:50:36.185339    2016-10-14 13:03:06.706313        \N    \N    \N    0    \N    \N    \N    \N    male
17824    Jeffrey    Reilly    arnulfo_oreilly@zemlak.biz    \N    Dominican Republic    West Reinhold    3288 Edmond Spurs    71068    Arkansas    2016-08-24 02:24:37.23589    2016-10-14 13:03:06.710604        \N    \N    \N    0    \N    \N    \N    \N    male
17825    Cecile    Emmerich    giuseppe_lehner@johnston.name    \N    Peru    Schmitthaven    71345 Johns Gardens    10444    Mississippi    2016-08-11 23:53:15.783549    2016-10-14 13:03:06.714698        \N    \N    \N    0    \N    \N    \N    \N    male
17826    Clementina    Cremin    kirk@torphy.net    \N    French Southern Territories    Miguelfort    90975 O'Connell Lodge    58763    New Jersey    2016-08-01 21:03:55.946413    2016-10-14 13:03:06.718907        \N    \N    \N    0    \N    \N    \N    \N    male
17827    Salma    Little    leslie_ondricka@framidenesik.info    \N    Jersey    Botsfordhaven    865 Morar Villages    22328    North Dakota    2016-07-22 13:00:31.851394    2016-10-14 13:03:06.722959        \N    \N    \N    0    \N    \N    \N    \N    male
17828    Jovani    Boehm    carey@berge.org    \N    Papua New Guinea    South Waylon    3392 Marquardt Roads    93846    Indiana    2016-08-07 07:40:11.190158    2016-10-14 13:03:06.727337        \N    \N    \N    0    \N    \N    \N    \N    male
17829    Tatum    Wintheiser    roger@simonismoen.org    \N    Bahrain    West Evans    12482 Sipes Groves    81877    Montana    2016-09-29 09:56:15.46737    2016-10-14 13:03:06.731562        \N    \N    \N    0    \N    \N    \N    \N    female
17830    Rhoda    Russel    terry_considine@mayert.name    \N    Reunion    New Tristianfort    52443 Reichert View    52369    Iowa    2016-08-03 22:50:31.327732    2016-10-14 13:03:06.735484        \N    \N    \N    0    \N    \N    \N    \N    female
17831    Zoie    Mayert    pinkie@hoppewalker.org    \N    Pitcairn Islands    North Arvel    863 Maud Corners    66637-3591    Texas    2016-07-15 20:02:13.210253    2016-10-14 13:03:06.739423        \N    \N    \N    0    \N    \N    \N    \N    male
17832    Troy    Graham    haan@beier.info    \N    Equatorial Guinea    Port Trenton    472 Edmond Trafficway    91357-6588    Massachusetts    2016-07-11 16:37:12.984889    2016-10-14 13:03:06.743414        \N    \N    \N    0    \N    \N    \N    \N    male
17833    Justice    King    enrique@terry.io    \N    Taiwan    Hartmannfurt    35722 Genevieve Tunnel    94586    Montana    2016-08-05 17:07:56.901684    2016-10-14 13:03:06.747378        \N    \N    \N    0    \N    \N    \N    \N    male
17834    Bernita    Doyle    kristofer_herzog@corwinokon.name    \N    Hong Kong    North Gail    847 Boehm Drive    95660-8814    North Carolina    2016-08-22 09:43:27.472306    2016-10-14 13:03:06.751369        \N    \N    \N    0    \N    \N    \N    \N    female
17835    Arne    Hirthe    judge.wisoky@mcdermott.biz    \N    Kiribati    North Matilda    93568 Kristopher Courts    60192-8076    New York    2016-09-10 06:19:22.031598    2016-10-14 13:03:06.755537        \N    \N    \N    0    \N    \N    \N    \N    female
17836    Cordie    Macejkovic    devyn@simonis.biz    \N    French Guiana    East Lonieberg    2949 Randal Well    81058-2192    Oregon    2016-08-21 12:23:02.545465    2016-10-14 13:03:06.760029        \N    \N    \N    0    \N    \N    \N    \N    female
17837    Jettie    Schamberger    maida.johns@weinat.co    \N    China    New Lorenzamouth    160 Janis Plaza    94503    Minnesota    2016-06-24 17:07:05.069307    2016-10-14 13:03:06.764724        \N    \N    \N    0    \N    \N    \N    \N    male
17838    Brant    Thompson    evert.johnson@quitzonbogisich.org    \N    Tunisia    North Sheldon    153 Roberts Forges    74264    Wisconsin    2016-09-08 00:14:04.285867    2016-10-14 13:03:06.76945        \N    \N    \N    0    \N    \N    \N    \N    male
17839    Catalina    Conn    kale@sanfordhackett.com    \N    Switzerland    Emardchester    3425 Kilback Mission    58286-7503    Kansas    2016-08-30 17:30:17.788421    2016-10-14 13:03:06.77377        \N    \N    \N    0    \N    \N    \N    \N    female
17840    Jedidiah    Towne    katlynn_schmeler@goodwincollins.biz    \N    Kyrgyz Republic    Anselton    1042 Tiara Well    47211-5210    Nevada    2016-09-02 10:09:12.618293    2016-10-14 13:03:06.778499        \N    \N    \N    0    \N    \N    \N    \N    male
17841    Jeramie    Zemlak    khalid_adams@sawayn.io    \N    Belize    Kohlertown    5053 Elisabeth Passage    32198    Michigan    2016-08-28 14:38:18.342418    2016-10-14 13:03:06.782587        \N    \N    \N    0    \N    \N    \N    \N    female
17842    Sean    Bauch    lora_wyman@koepp.co    \N    Qatar    East Katherineside    19867 Will Ramp    96847    Vermont    2016-09-02 11:50:46.070993    2016-10-14 13:03:06.786653        \N    \N    \N    0    \N    \N    \N    \N    male
17843    Samir    Pouros    johanna@schaefer.org    \N    Niger    Jastview    8186 Maxime Estates    34047    South Carolina    2016-07-13 20:27:06.273382    2016-10-14 13:03:06.790925        \N    \N    \N    0    \N    \N    \N    \N    female
17844    Royce    Pollich    clifford.hilll@dach.net    \N    New Zealand    East Ransomville    566 Borer Manor    95041-3770    Tennessee    2016-07-23 00:35:08.208835    2016-10-14 13:03:06.794864        \N    \N    \N    0    \N    \N    \N    \N    male
17845    Christopher    Schamberger    charlie_stroman@bednar.co    \N    Burundi    Breitenbergville    2092 Giovani Light    87619    Iowa    2016-07-10 10:03:32.898666    2016-10-14 13:03:06.798734        \N    \N    \N    0    \N    \N    \N    \N    male
17846    Cleora    Walter    prince_dach@wehner.com    \N    Jersey    Roobmouth    570 Retha Stravenue    19612-9099    South Dakota    2016-08-06 08:53:28.018307    2016-10-14 13:03:06.80287        \N    \N    \N    0    \N    \N    \N    \N    female
17847    Ellsworth    Schoen    frederic@orn.name    \N    Burkina Faso    Thaliabury    19794 Goyette Port    75448-0427    Tennessee    2016-08-10 17:37:42.67054    2016-10-14 13:03:06.807117        \N    \N    \N    0    \N    \N    \N    \N    male
17848    Dante    Lang    mathew_hyatt@breitenberg.biz    \N    Heard Island and McDonald Islands    East Elouise    1433 Schamberger Fords    98893-8925    Washington    2016-07-10 18:24:48.989004    2016-10-14 13:03:06.813041        \N    \N    \N    0    \N    \N    \N    \N    female
17849    Mathilde    Stamm    gilda.schmitt@hauckbreitenberg.name    \N    Japan    East Rosannamouth    64175 Rau Summit    54926-3308    Louisiana    2016-08-05 15:33:41.060423    2016-10-14 13:03:06.824206        \N    \N    \N    0    \N    \N    \N    \N    male
17850    Margot    Beahan    kayley_armstrong@kuhic.info    \N    South Georgia and the South Sandwich Islands    Ortizport    79179 Emerson Forges    37690    South Dakota    2016-07-05 06:52:40.936646    2016-10-14 13:03:06.828218        \N    \N    \N    0    \N    \N    \N    \N    female
17851    Olaf    Wuckert    jeromy.walsh@kreiger.net    \N    Vanuatu    South Solonland    380 Gwendolyn Freeway    59050-9897    Texas    2016-09-05 11:54:32.648284    2016-10-14 13:03:06.832218        \N    \N    \N    0    \N    \N    \N    \N    male
17852    Isaiah    Conn    murray@ornjacobson.io    \N    Comoros    Emmerichberg    9825 Kautzer Brook    23517    Nebraska    2016-08-01 00:24:21.180695    2016-10-14 13:03:06.836252        \N    \N    \N    0    \N    \N    \N    \N    female
17853    Herbert    Schoen    lauriane@bergnaum.net    \N    Montserrat    West Jettside    1776 Celestine Shoal    76483-8372    Nebraska    2016-08-20 04:30:21.781104    2016-10-14 13:03:06.840562        \N    \N    \N    0    \N    \N    \N    \N    male
17854    Demetrius    Kiehn    olaf@spinkapadberg.co    \N    Norfolk Island    New Watson    70122 Judd Forest    12604    Illinois    2016-09-14 11:29:01.720759    2016-10-14 13:03:06.844727        \N    \N    \N    0    \N    \N    \N    \N    female
17855    Destinee    Doyle    stephany@larkin.io    \N    Paraguay    West Elisaville    89391 Jamar Valley    67811    North Carolina    2016-09-15 10:13:09.200306    2016-10-14 13:03:06.848522        \N    \N    \N    0    \N    \N    \N    \N    male
17856    Blanche    Weissnat    ericka.beier@mcdermott.name    \N    Papua New Guinea    Hermannmouth    144 Littel Creek    60004    Virginia    2016-09-20 13:01:16.05059    2016-10-14 13:03:06.853714        \N    \N    \N    0    \N    \N    \N    \N    male
17857    Guadalupe    Dietrich    haven.mayer@dooley.net    \N    French Guiana    Lake Aisha    4904 Eunice Ports    74536-7815    Delaware    2016-06-25 07:51:05.558025    2016-10-14 13:03:06.85801        \N    \N    \N    0    \N    \N    \N    \N    male
17858    Abner    Simonis    khalid.boyer@kubgraham.name    \N    Taiwan    O'Reillyborough    88017 Kirk Burg    23062-4693    Oklahoma    2016-07-05 21:42:07.944775    2016-10-14 13:03:06.866213        \N    \N    \N    0    \N    \N    \N    \N    male
17859    Adam    Mante    kayleigh_larson@hanethompson.info    \N    Thailand    East Kiana    3018 Nienow Island    31441    Oklahoma    2016-07-26 04:32:16.554973    2016-10-14 13:03:06.870216        \N    \N    \N    0    \N    \N    \N    \N    male
17860    Liam    Conroy    eden@schneider.com    \N    South Georgia and the South Sandwich Islands    Bellafurt    32094 Deshawn Heights    83827-5084    South Dakota    2016-09-27 11:51:54.846845    2016-10-14 13:03:06.874352        \N    \N    \N    0    \N    \N    \N    \N    male
17861    Vince    Prohaska    brain.ernser@fadel.co    \N    Moldova    North Mabelfort    8163 Charlene Brook    47527-5269    Vermont    2016-08-20 16:10:59.198185    2016-10-14 13:03:06.878831        \N    \N    \N    0    \N    \N    \N    \N    male
17862    Shirley    Grimes    cade_rutherford@bashirian.name    \N    Botswana    Champlintown    7233 Skiles Road    65805-4821    Texas    2016-06-26 04:37:41.410801    2016-10-14 13:03:06.883468        \N    \N    \N    0    \N    \N    \N    \N    male
17863    Chester    Schiller    jarret.stroman@beckerdietrich.org    \N    Latvia    Andresview    933 Newton Burgs    50206    Oklahoma    2016-09-04 10:29:21.845377    2016-10-14 13:03:06.887565        \N    \N    \N    0    \N    \N    \N    \N    female
17864    Gabrielle    Toy    isom_gleichner@hirthe.com    \N    Cape Verde    Isadoremouth    417 Dayana Rue    68267-8319    Iowa    2016-08-10 06:03:32.379721    2016-10-14 13:03:06.891713        \N    \N    \N    0    \N    \N    \N    \N    female
17865    Joany    Swift    royce@senger.co    \N    Montenegro    New Tyrell    18091 Pascale Lock    21625    Washington    2016-08-29 15:20:27.93412    2016-10-14 13:03:06.895702        \N    \N    \N    0    \N    \N    \N    \N    male
17866    Jenifer    Schaden    te@pricemills.net    \N    Botswana    D'angeloborough    392 Reichert Overpass    76635-6873    California    2016-07-26 18:30:26.112539    2016-10-14 13:03:06.900024        \N    \N    \N    0    \N    \N    \N    \N    male
17867    Meggie    Wyman    alysa_mcglynn@weinatcarter.io    \N    Morocco    Lake Miguel    8190 Nitzsche Port    59852    Maine    2016-07-31 12:09:41.876415    2016-10-14 13:03:06.920663        \N    \N    \N    0    \N    \N    \N    \N    female
17868    Mustafa    Bartell    talon.wintheiser@labadie.co    \N    Sao Tome and Principe    Lueilwitzmouth    606 Kovacek Rest    79171    Indiana    2016-08-07 20:20:16.35148    2016-10-14 13:03:06.924437        \N    \N    \N    0    \N    \N    \N    \N    female
17869    Santino    Jenkins    macy@donnelly.net    \N    Belarus    East Cortneyfurt    68369 West Mountain    34123-2894    Utah    2016-08-25 12:43:14.982423    2016-10-14 13:03:06.928256        \N    \N    \N    0    \N    \N    \N    \N    female
17870    Laury    O'Reilly    hazle@hettingergutkowski.io    \N    Isle of Man    North Danial    91337 Goldner Plain    46053-4047    Arkansas    2016-08-09 14:19:50.691892    2016-10-14 13:03:06.932208        \N    \N    \N    0    \N    \N    \N    \N    female
17871    Rashad    Kling    wilma.ziemann@damore.com    \N    Saint Martin    Jasenstad    217 Heber View    93974    Illinois    2016-07-31 19:51:27.08534    2016-10-14 13:03:06.936358        \N    \N    \N    0    \N    \N    \N    \N    female
17872    Andres    Bednar    salma@christiansentrantow.org    \N    Montserrat    Felicitamouth    442 Mann Plaza    61276-8463    Arkansas    2016-08-08 10:17:20.101038    2016-10-14 13:03:06.940439        \N    \N    \N    0    \N    \N    \N    \N    male
17873    April    Nader    paxton@ondrickamoriette.org    \N    Romania    South Waldoton    835 Sarai Mission    17025    South Dakota    2016-06-23 01:46:03.507483    2016-10-14 13:03:06.944963        \N    \N    \N    0    \N    \N    \N    \N    male
17875    Bridgette    Cormier    ford_barrows@bruen.org    \N    Bermuda    Mireilleport    7468 Tommie Port    89195-1651    New Jersey    2016-08-20 20:11:54.319042    2016-10-14 13:03:06.949198        \N    \N    \N    0    \N    \N    \N    \N    female
17876    Tiana    Kreiger    bernadette.white@nolan.info    \N    Puerto Rico    O'Connerburgh    46898 Raynor Locks    56261-7635    Alaska    2016-08-29 09:43:12.873112    2016-10-14 13:03:06.953056        \N    \N    \N    0    \N    \N    \N    \N    male
17877    Giovanni    Davis    eliane@kingschultz.net    \N    Saudi Arabia    New Earnestine    67894 Roob Drive    10604-4771    Georgia    2016-07-10 16:57:57.108443    2016-10-14 13:03:06.957085        \N    \N    \N    0    \N    \N    \N    \N    male
17878    Nigel    Shields    bryana@cronin.info    \N    Western Sahara    Patienceville    9960 Rosenbaum Plain    34252-2166    Alaska    2016-08-24 13:57:17.77163    2016-10-14 13:03:06.961451        \N    \N    \N    0    \N    \N    \N    \N    female
17879    Wava    Spencer    mac@marquardt.com    \N    Falkland Islands (Malvinas)    Wadestad    843 Hills Meadow    13356    Kentucky    2016-09-29 10:15:25.502038    2016-10-14 13:03:06.965687        \N    \N    \N    0    \N    \N    \N    \N    female
17880    Eusebio    Cormier    dexter@bailey.com    \N    Senegal    Lake Liam    253 Beier Way    92661-5528    Idaho    2016-08-28 01:36:30.242889    2016-10-14 13:03:06.969916        \N    \N    \N    0    \N    \N    \N    \N    female
17881    Karlie    Toy    destiny@sanford.co    \N    Georgia    Mandychester    879 Gerard Tunnel    79742-8242    South Dakota    2016-07-09 04:11:02.280235    2016-10-14 13:03:06.974047        \N    \N    \N    0    \N    \N    \N    \N    female
17882    Helmer    Botsford    briana.effertz@binsoberbrunner.co    \N    Russian Federation    West Chadrick    3077 Zemlak Vista    92076    New Jersey    2016-08-20 21:46:50.673466    2016-10-14 13:03:06.978096        \N    \N    \N    0    \N    \N    \N    \N    female
17883    Trinity    Corkery    jevon@cronin.org    \N    Mali    Considineton    124 Scotty Bridge    95299-4338    Kentucky    2016-07-26 18:26:10.84637    2016-10-14 13:03:06.982186        \N    \N    \N    0    \N    \N    \N    \N    female
17884    Madalyn    Lowe    noah@baumbach.com    \N    Sri Lanka    South Tesschester    5595 Ebert Burgs    11188    Nevada    2016-07-23 07:06:00.001355    2016-10-14 13:03:06.986467        \N    \N    \N    0    \N    \N    \N    \N    female
17885    Wyatt    Hermann    pamela@keebler.info    \N    Lebanon    Port Phoebeville    67158 Pascale Meadow    50546-1895    Florida    2016-08-01 22:41:18.983969    2016-10-14 13:03:06.990979        \N    \N    \N    0    \N    \N    \N    \N    male
17886    Bailee    Keebler    donavon.mayert@abshire.co    \N    Uruguay    Feliciashire    683 Grant Crest    71661    Maryland    2016-07-23 15:51:47.384152    2016-10-14 13:03:06.995099        \N    \N    \N    0    \N    \N    \N    \N    female
17887    Emmett    Bechtelar    amir@harber.biz    \N    Heard Island and McDonald Islands    North Columbusmouth    3976 Mark Camp    22327    South Carolina    2016-09-26 22:18:26.243191    2016-10-14 13:03:06.998929        \N    \N    \N    0    \N    \N    \N    \N    female
17888    Camilla    Hills    francisco_ankunding@cronastokes.name    \N    Sao Tome and Principe    Monahanland    46379 Jovani Drive    26203    Delaware    2016-08-11 22:54:51.939742    2016-10-14 13:03:07.002784        \N    \N    \N    0    \N    \N    \N    \N    male
17889    Mckenna    Smith    brandt.fritsch@wilkinson.name    \N    Gambia    Jazlynburgh    8941 Rau Estates    97144    Kansas    2016-07-28 20:30:56.176884    2016-10-14 13:03:07.006672        \N    \N    \N    0    \N    \N    \N    \N    female
17890    Melvin    Emmerich    constantin.pfeffer@sauer.info    \N    Cook Islands    Wainoland    3941 Amelie Mountain    40523    Ohio    2016-09-26 23:37:25.393782    2016-10-14 13:03:07.010932        \N    \N    \N    0    \N    \N    \N    \N    male
17891    Sheridan    Brakus    rusty@hartmann.name    \N    Belgium    Borerview    18562 Hilll Prairie    40171    Georgia    2016-08-19 00:12:52.392015    2016-10-14 13:03:07.015461        \N    \N    \N    0    \N    \N    \N    \N    female
17892    Rowena    Lesch    demetris_schneider@mills.info    \N    Antigua and Barbuda    New Shanellechester    52754 Stracke Drive    82310    Illinois    2016-06-25 18:04:46.557863    2016-10-14 13:03:07.019958        \N    \N    \N    0    \N    \N    \N    \N    male
17893    Augustine    Buckridge    august@schmidt.co    \N    Oman    McClurechester    174 Howell Valley    12029-8002    Maine    2016-08-10 13:40:26.529393    2016-10-14 13:03:07.024566        \N    \N    \N    0    \N    \N    \N    \N    male
17894    Earnest    Wisozk    frederique@hyattskiles.net    \N    Papua New Guinea    Hilpertview    3155 Jalen Ridge    75796    Illinois    2016-06-27 12:51:52.235904    2016-10-14 13:03:07.029581        \N    \N    \N    0    \N    \N    \N    \N    male
17895    Keaton    Rempel    talon_goodwin@nitzsche.io    \N    Oman    South Haileyfurt    79636 Ardella Roads    74018    Colorado    2016-08-31 14:15:20.439888    2016-10-14 13:03:07.034123        \N    \N    \N    0    \N    \N    \N    \N    male
17896    Elinore    D'Amore    kaitlyn@lynch.co    \N    Iraq    Port Alexanneborough    38114 Keaton Port    23927-6036    Washington    2016-08-31 10:32:47.688768    2016-10-14 13:03:07.03791        \N    \N    \N    0    \N    \N    \N    \N    female
17897    Benny    Carter    gielle_trantow@lefflercummings.biz    \N    Kazakhstan    West Herminia    72878 Jerad Viaduct    16380    Missouri    2016-07-14 09:01:38.325405    2016-10-14 13:03:07.041817        \N    \N    \N    0    \N    \N    \N    \N    female
17898    Raleigh    Ledner    harvey.schiller@legros.co    \N    Sweden    New Ryleeville    2819 Larkin Mountains    48129    Missouri    2016-07-19 06:44:44.220751    2016-10-14 13:03:07.045619        \N    \N    \N    0    \N    \N    \N    \N    male
17899    Priscilla    Hills    baron@abbottlemke.co    \N    Thailand    East Tristiantown    4421 Hallie Common    58530-8657    Illinois    2016-09-05 07:54:19.99926    2016-10-14 13:03:07.050156        \N    \N    \N    0    \N    \N    \N    \N    female
17900    Retta    Morar    ricky@jacobierdman.com    \N    France    Lake Johannamouth    96741 Ila Valley    42875    Iowa    2016-09-17 15:17:26.079527    2016-10-14 13:03:07.054748        \N    \N    \N    0    \N    \N    \N    \N    female
17901    Cassandra    Barrows    gillian@cormier.biz    \N    Gambia    Beershire    597 Jenkins Avenue    84746    North Carolina    2016-07-09 22:13:17.341726    2016-10-14 13:03:07.059891        \N    \N    \N    0    \N    \N    \N    \N    female
17902    Cory    Ullrich    candice_nolan@cronin.info    \N    Suriname    Hertafort    291 Kemmer Courts    35786    Nevada    2016-07-30 05:55:39.719745    2016-10-14 13:03:07.064952        \N    \N    \N    0    \N    \N    \N    \N    male
17903    Adrien    Balistreri    frederick@blanda.name    \N    Wallis and Futuna    Wolffmouth    1833 Theodore Prairie    62638    Kansas    2016-09-19 11:59:55.649301    2016-10-14 13:03:07.073246        \N    \N    \N    0    \N    \N    \N    \N    female
17904    Caitlyn    Robel    kirstin.kozey@schulist.com    \N    Egypt    North Wilhelmine    13712 Upton Overpass    39941    California    2016-07-10 02:54:28.600637    2016-10-14 13:03:07.07734        \N    \N    \N    0    \N    \N    \N    \N    male
17905    Geraldine    King    melvin@considine.info    \N    Burundi    East Arielle    378 Daphney Well    35984    Ohio    2016-08-09 18:23:43.642343    2016-10-14 13:03:07.08139        \N    \N    \N    0    \N    \N    \N    \N    male
17906    Noble    Bradtke    kurt@jaskolski.org    \N    Afghanistan    Port Jovannystad    367 Beahan Oval    10761-2803    Nebraska    2016-07-29 04:20:57.95035    2016-10-14 13:03:07.085605        \N    \N    \N    0    \N    \N    \N    \N    male
17907    Reed    Fritsch    danielle_ryan@kuhlmanmarvin.name    \N    Guernsey    Lake Keon    54960 Alaina Avenue    89803    Iowa    2016-09-06 16:36:51.743663    2016-10-14 13:03:07.089935        \N    \N    \N    0    \N    \N    \N    \N    female
17908    Earnest    Turner    karina_becker@cummerata.io    \N    Croatia    Schadenstad    22597 Taurean Plain    97432-1744    South Dakota    2016-08-10 15:20:01.658233    2016-10-14 13:03:07.094559        \N    \N    \N    0    \N    \N    \N    \N    female
17909    Alexandrea    Kunze    eden@weimannmaggio.biz    \N    France    Lake Elroy    34988 Dereck Stream    89686-1682    Pennsylvania    2016-08-04 12:53:08.908199    2016-10-14 13:03:07.0985        \N    \N    \N    0    \N    \N    \N    \N    male
17910    Jean    Kozey    flo@schimmel.com    \N    Saudi Arabia    New Kristofer    7503 Glover Road    13820-6622    Maine    2016-08-15 19:30:38.503076    2016-10-14 13:03:07.102478        \N    \N    \N    0    \N    \N    \N    \N    female
17911    Dorthy    Nader    arnulfo_kertzmann@hayes.com    \N    Mauritania    North Opheliamouth    7256 Prosacco View    52465    South Dakota    2016-09-24 11:33:05.5108    2016-10-14 13:03:07.106521        \N    \N    \N    0    \N    \N    \N    \N    female
17912    Kenneth    Schroeder    sadye@trompkeler.com    \N    Indonesia    Jacobiview    83837 Mayert Crescent    48290-1303    Idaho    2016-08-14 02:26:02.855372    2016-10-14 13:03:07.11065        \N    \N    \N    0    \N    \N    \N    \N    male
17915    Alvera    Connelly    avery@watsicaferry.info    \N    Iceland    Davisbury    82587 Hank Port    40535-2690    Oklahoma    2016-07-20 21:30:56.318492    2016-10-14 13:03:07.114526        \N    \N    \N    0    \N    \N    \N    \N    female
17916    Taurean    Schaefer    armani@fay.net    \N    Honduras    Merlechester    344 Gaetano Haven    41231    Georgia    2016-06-25 18:42:15.809051    2016-10-14 13:03:07.118269        \N    \N    \N    0    \N    \N    \N    \N    male
17918    Sabina    Adams    samara_ankunding@gislasonaltenwerth.name    \N    Congo    Coleberg    9095 Kimberly Spurs    70050-8550    Illinois    2016-06-30 04:58:55.353298    2016-10-14 13:03:07.126232        \N    \N    \N    0    \N    \N    \N    \N    female
17919    Eriberto    Zulauf    tiara@ebert.biz    \N    Argentina    North Chelseystad    8867 Parker Unions    72201    Nevada    2016-07-22 05:28:05.315158    2016-10-14 13:03:07.130391        \N    \N    \N    0    \N    \N    \N    \N    male
17920    Ernestine    McGlynn    rafael@kris.net    \N    Costa Rica    Langoshmouth    85461 Cleora Lane    10465    Arkansas    2016-08-31 08:53:29.938966    2016-10-14 13:03:07.134501        \N    \N    \N    0    \N    \N    \N    \N    male
17921    Nick    Predovic    maggie@beattykutch.io    \N    Uruguay    New Felipechester    7720 Myah Crossing    97971-0961    Alaska    2016-06-30 11:39:39.610034    2016-10-14 13:03:07.138527        \N    \N    \N    0    \N    \N    \N    \N    female
17922    Elza    Hagenes    marcelino.rolfson@wardrau.net    \N    Iran    Osinskiton    54496 Sanford Dam    80235-5850    Delaware    2016-07-31 08:46:17.888472    2016-10-14 13:03:07.142874        \N    \N    \N    0    \N    \N    \N    \N    male
17923    Kurtis    Ferry    kristin@macgyver.io    \N    Bouvet Island (Bouvetoya)    Lockmanstad    401 Felipe Forge    35528-0614    Iowa    2016-08-14 07:30:53.583622    2016-10-14 13:03:07.146978        \N    \N    \N    0    \N    \N    \N    \N    male
17924    Frank    Rohan    kayden@shanahan.biz    \N    El Salvador    Hayesburgh    636 Gladys Parkways    79478    Florida    2016-09-17 15:05:08.72422    2016-10-14 13:03:07.151227        \N    \N    \N    0    \N    \N    \N    \N    male
17925    Lexus    Tromp    lia.bergstrom@thielwiegand.name    \N    Germany    Treutelhaven    8188 Bode Locks    64640    Idaho    2016-09-18 22:02:33.585072    2016-10-14 13:03:07.156053        \N    \N    \N    0    \N    \N    \N    \N    male
17927    Arden    Bartoletti    rosina@pacochakiehn.net    \N    France    Dachbury    481 Johnston Light    84713    Montana    2016-06-25 08:26:57.761707    2016-10-14 13:03:07.160665        \N    \N    \N    0    \N    \N    \N    \N    female
17928    Keshaun    Schneider    josie.king@terryroob.com    \N    Eritrea    Lake Paul    192 Schultz Summit    36106    Oklahoma    2016-09-04 09:39:01.749199    2016-10-14 13:03:07.165079        \N    \N    \N    0    \N    \N    \N    \N    male
17930    Tiffany    Lowe    jennings_connelly@wiegand.io    \N    Saint Barthelemy    Doloresbury    902 Anika Ford    99692-8944    New Hampshire    2016-06-24 20:41:54.803905    2016-10-14 13:03:07.169599        \N    \N    \N    0    \N    \N    \N    \N    male
17931    Tomasa    Howe    okey_vonrueden@schumm.com    \N    Uruguay    Karianeton    749 Kristian Corner    90679    Nevada    2016-08-20 16:28:48.334557    2016-10-14 13:03:07.173538        \N    \N    \N    0    \N    \N    \N    \N    female
17932    Kelly    MacGyver    wellington_fahey@oberbrunnerbeatty.co    \N    Indonesia    Rahulmouth    4673 Kelton Turnpike    90864-5535    Louisiana    2016-09-10 07:59:53.6612    2016-10-14 13:03:07.177567        \N    \N    \N    0    \N    \N    \N    \N    male
17933    Bulah    Dare    wilford@pollich.org    \N    Seychelles    Hersheltown    18380 Windler Springs    51623    Indiana    2016-08-02 00:58:47.873483    2016-10-14 13:03:07.181492        \N    \N    \N    0    \N    \N    \N    \N    male
17934    Deron    Graham    noemie.kulas@hermiston.io    \N    Armenia    South Al    13452 Conroy Freeway    16389-3524    Montana    2016-06-26 19:00:27.00831    2016-10-14 13:03:07.185366        \N    \N    \N    0    \N    \N    \N    \N    female
17935    Kyle    Watsica    kurtis@jasttrantow.info    \N    Grenada    Port Travon    5598 Zena Rue    90941-8288    Illinois    2016-09-20 01:13:18.147718    2016-10-14 13:03:07.189323        \N    \N    \N    0    \N    \N    \N    \N    female
17936    Fritz    Aufderhar    lavina_barton@kuvalis.com    \N    Montenegro    North Ryleighhaven    55826 Anika Inlet    77959-3941    Michigan    2016-09-02 12:23:03.220914    2016-10-14 13:03:07.19332        \N    \N    \N    0    \N    \N    \N    \N    female
17937    Rigoberto    Schinner    heloise.cummings@stark.net    \N    Cayman Islands    Vidalberg    582 Wolff Pike    53086    Illinois    2016-08-04 04:35:48.526767    2016-10-14 13:03:07.197261        \N    \N    \N    0    \N    \N    \N    \N    male
17938    Cooper    Stanton    rafael_hickle@denesik.io    \N    Andorra    O'Connerview    4954 Bauch Key    78134-7220    Minnesota    2016-08-14 20:22:41.047838    2016-10-14 13:03:07.201803        \N    \N    \N    0    \N    \N    \N    \N    male
17939    Concepcion    Schowalter    brandy@brown.co    \N    Hungary    Aglaefurt    653 Lyric Avenue    24437-4381    New Hampshire    2016-08-19 02:09:46.579465    2016-10-14 13:03:07.205921        \N    \N    \N    0    \N    \N    \N    \N    female
17940    Alice    Kihn    janice.rempel@wiegand.org    \N    Congo    New Nathaniel    12644 Stehr Drive    77610-6581    Maine    2016-07-11 14:52:49.424247    2016-10-14 13:03:07.209961        \N    \N    \N    0    \N    \N    \N    \N    male
17941    Archibald    Abernathy    eryn@davis.name    \N    Western Sahara    Theresiastad    6855 Lonie Tunnel    68790-8556    West Virginia    2016-07-10 11:47:09.166975    2016-10-14 13:03:07.21393        \N    \N    \N    0    \N    \N    \N    \N    female
17942    Amya    Strosin    trudie.little@mayerbergnaum.org    \N    Lebanon    New Fabian    366 Fadel Parks    40081    West Virginia    2016-07-07 18:10:42.98843    2016-10-14 13:03:07.217914        \N    \N    \N    0    \N    \N    \N    \N    male
17943    Miracle    Balistreri    jayson@wymanhilll.co    \N    Somalia    New Lylamouth    513 Langosh Falls    55722    Maine    2016-07-17 19:15:23.957368    2016-10-14 13:03:07.222276        \N    \N    \N    0    \N    \N    \N    \N    female
17945    Karen    Little    layla_weber@heathcote.name    \N    Angola    East Ethel    71861 Al Mission    84122    South Dakota    2016-07-28 10:31:02.836014    2016-10-14 13:03:07.226693        \N    \N    \N    0    \N    \N    \N    \N    male
17946    Tristian    Bergstrom    dorcas_schmeler@emmerich.io    \N    Swaziland    North Cathymouth    3279 Will Spurs    53058-3100    Hawaii    2016-07-31 18:35:19.157345    2016-10-14 13:03:07.230774        \N    \N    \N    0    \N    \N    \N    \N    male
17947    Gail    Zieme    alexandrea.weimann@harberstamm.org    \N    Guam    Monahanville    46976 Goyette Coves    98373-5620    Tennessee    2016-07-08 21:22:27.425159    2016-10-14 13:03:07.235151        \N    \N    \N    0    \N    \N    \N    \N    female
17948    Leora    Dickinson    summer.bogan@swaniawski.io    \N    Heard Island and McDonald Islands    North Lilly    164 Torp Crescent    24785-3296    Louisiana    2016-09-24 05:44:30.309002    2016-10-14 13:03:07.239523        \N    \N    \N    0    \N    \N    \N    \N    female
17949    Lavonne    Wuckert    brett@eichmann.net    \N    Cyprus    Quigleyhaven    19841 Powlowski Trail    22745    Wyoming    2016-09-16 20:50:12.024949    2016-10-14 13:03:07.243372        \N    \N    \N    0    \N    \N    \N    \N    female
17950    Maci    Mayer    alejandra@nitzsche.name    \N    Madagascar    Lake Renechester    761 Walsh Island    41482-3279    Michigan    2016-08-19 03:03:40.271456    2016-10-14 13:03:07.247433        \N    \N    \N    0    \N    \N    \N    \N    male
17951    Haven    Cormier    sadye@strosin.name    \N    Gabon    New Sheldon    80135 Ortiz Manors    86058    Alaska    2016-09-04 03:51:26.536822    2016-10-14 13:03:07.251816        \N    \N    \N    0    \N    \N    \N    \N    male
17952    Lorenz    Reinger    parker@green.io    \N    Netherlands    Roobport    77068 Robbie Forks    48447-5677    Texas    2016-09-10 15:05:42.073768    2016-10-14 13:03:07.26271        \N    \N    \N    0    \N    \N    \N    \N    male
17953    Citlalli    Heathcote    mervin_dibbert@haley.net    \N    Vietnam    Kristinaville    626 Jaunita Groves    25583-7518    North Dakota    2016-09-03 07:27:27.829883    2016-10-14 13:03:07.266745        \N    \N    \N    0    \N    \N    \N    \N    male
17954    Ashleigh    Hills    keaton.carroll@adamswilliamson.co    \N    Libyan Arab Jamahiriya    East Alden    9494 Casimir Ville    85228    Ohio    2016-07-14 02:17:52.602613    2016-10-14 13:03:07.270572        \N    \N    \N    0    \N    \N    \N    \N    male
17955    Mortimer    Hilpert    milford_dach@purdy.net    \N    Lao People's Democratic Republic    Lake Lucinda    372 Enoch Lodge    87360    Nebraska    2016-08-29 23:45:44.10262    2016-10-14 13:03:07.27467        \N    \N    \N    0    \N    \N    \N    \N    female
17956    Tracey    Kuvalis    cordelia@wittingwaelchi.org    \N    Georgia    West Isabelleburgh    31466 Nia Rest    57299    Arkansas    2016-07-29 16:44:24.149048    2016-10-14 13:03:07.278491        \N    \N    \N    0    \N    \N    \N    \N    female
17957    Marian    Gerhold    burnice_rodriguez@jakubowski.net    \N    Portugal    Spinkamouth    581 Arnold Point    88422-2447    New Hampshire    2016-09-17 08:01:30.240575    2016-10-14 13:03:07.282311        \N    \N    \N    0    \N    \N    \N    \N    male
17958    Alayna    Hickle    lucas_white@rath.com    \N    Mozambique    South Rashawnbury    7876 Antwan Shores    29513-3031    Massachusetts    2016-07-30 03:29:42.187626    2016-10-14 13:03:07.286101        \N    \N    \N    0    \N    \N    \N    \N    female
17959    Mckayla    Kuhlman    theresia@romaguera.co    \N    Tokelau    Port Maurice    567 Abernathy Hill    92329-1445    Michigan    2016-08-29 01:08:36.426093    2016-10-14 13:03:07.289991        \N    \N    \N    0    \N    \N    \N    \N    female
17960    Beth    Jacobi    marcos_langosh@koepp.net    \N    Guernsey    West Sven    27273 Abby Estate    15451    Delaware    2016-07-17 06:21:28.271819    2016-10-14 13:03:07.293829        \N    \N    \N    0    \N    \N    \N    \N    male
17961    Eriberto    Ferry    athena@larkin.co    \N    Jordan    Emelyburgh    67434 Nicholas Forge    89872    Kansas    2016-09-03 03:54:17.812951    2016-10-14 13:03:07.297976        \N    \N    \N    0    \N    \N    \N    \N    male
17962    Everardo    Pagac    rowland_kohler@roberts.net    \N    Montenegro    New Lilyfort    701 Jerde Wall    16203    New Jersey    2016-09-02 00:44:10.826075    2016-10-14 13:03:07.301999        \N    \N    \N    0    \N    \N    \N    \N    male
17963    Dolly    Gleason    elmore_goodwin@stanton.info    \N    Martinique    North Mikayla    26680 Toy Neck    98651-8825    Delaware    2016-07-22 20:15:57.136044    2016-10-14 13:03:07.305971        \N    \N    \N    0    \N    \N    \N    \N    female
17964    Christine    Miller    carole_mcdermott@prosacco.net    \N    Chad    North Dimitri    3605 Reichert Greens    91032    Vermont    2016-08-08 01:31:17.37784    2016-10-14 13:03:07.310018        \N    \N    \N    0    \N    \N    \N    \N    male
17966    Emmitt    Botsford    karl@quigleyjakubowski.io    \N    Nauru    Gutkowskibury    775 Kareem Inlet    35957    California    2016-09-09 09:54:16.506215    2016-10-14 13:03:07.313997        \N    \N    \N    0    \N    \N    \N    \N    male
17967    Yesenia    Ruecker    fatima_rosenbaum@corwin.com    \N    Virgin Islands, U.S.    Port Santinamouth    1566 Rempel Ports    89604-6156    Mississippi    2016-07-27 04:03:26.288998    2016-10-14 13:03:07.317933        \N    \N    \N    0    \N    \N    \N    \N    male
17968    Ellsworth    Hilpert    lillian@schmitt.org    \N    New Zealand    Armandside    66928 Hilll Summit    79144    Texas    2016-07-30 23:23:43.448    2016-10-14 13:03:07.321955        \N    \N    \N    0    \N    \N    \N    \N    male
17969    Van    Goldner    ashton_corkery@schmidtnikolaus.co    \N    Swaziland    East Gregory    82830 Tomasa Pines    34705    New Hampshire    2016-08-20 12:45:20.304214    2016-10-14 13:03:07.326567        \N    \N    \N    0    \N    \N    \N    \N    male
17970    Cassie    Beer    freda.thompson@prohaskakoepp.name    \N    Sierra Leone    Kiarraport    149 Noelia Underpass    93067-1008    West Virginia    2016-08-09 10:08:26.474803    2016-10-14 13:03:07.330965        \N    \N    \N    0    \N    \N    \N    \N    female
17971    Elwyn    Keebler    vesta@dicki.co    \N    Luxembourg    South Sabrynaton    1250 Harber Locks    39641-1683    Alaska    2016-08-18 11:25:41.922332    2016-10-14 13:03:07.33542        \N    \N    \N    0    \N    \N    \N    \N    male
17972    Helene    Mante    jaquan.white@block.net    \N    Macedonia    Nicolastown    91692 Carmine Mount    90454    Texas    2016-07-02 09:10:01.258241    2016-10-14 13:03:07.339537        \N    \N    \N    0    \N    \N    \N    \N    male
17973    Georgiana    Lemke    deangelo@pfeffervolkman.info    \N    Bhutan    Creminmouth    4525 Crooks Rapids    56608-2060    Wyoming    2016-06-27 19:12:48.699192    2016-10-14 13:03:07.343392        \N    \N    \N    0    \N    \N    \N    \N    female
17974    Audie    Conroy    price@nikolaus.net    \N    Greece    Koeppstad    309 Jeramy Oval    37854-6360    Oklahoma    2016-08-30 17:26:16.515134    2016-10-14 13:03:07.347814        \N    \N    \N    0    \N    \N    \N    \N    male
17975    Laila    Hermann    lavern_beahan@andersonschoen.org    \N    Greenland    Smithamburgh    495 Bradtke Tunnel    47193    Oregon    2016-08-02 20:07:36.502691    2016-10-14 13:03:07.352138        \N    \N    \N    0    \N    \N    \N    \N    female
17976    Kian    Treutel    clay.okon@lynch.info    \N    Singapore    New Estella    6504 Maynard Drives    13701    Oregon    2016-09-03 21:24:53.313477    2016-10-14 13:03:07.356292        \N    \N    \N    0    \N    \N    \N    \N    female
17977    Minnie    Fay    raheem_towne@pacocha.org    \N    Suriname    New Dixie    3807 Mabelle Landing    63000    Mississippi    2016-07-19 18:27:42.15363    2016-10-14 13:03:07.360305        \N    \N    \N    0    \N    \N    \N    \N    male
17978    Emile    Herman    glenna@gutkowski.io    \N    Serbia    Russelhaven    14359 Grady Street    79329-9967    Florida    2016-07-29 16:06:48.314277    2016-10-14 13:03:07.364355        \N    \N    \N    0    \N    \N    \N    \N    male
17979    Ardith    Gutkowski    allison@lind.name    \N    Kenya    New Fostertown    7526 Klocko Mount    76243    New York    2016-07-02 11:40:46.684032    2016-10-14 13:03:07.368709        \N    \N    \N    0    \N    \N    \N    \N    female
17980    Dennis    Reichel    kayla@homenick.io    \N    Saint Helena    Kulaschester    4334 Sabrina Manor    11090    Hawaii    2016-08-30 23:53:24.406905    2016-10-14 13:03:07.372648        \N    \N    \N    0    \N    \N    \N    \N    female
17981    Alene    Gutmann    abraham@durgan.biz    \N    Palestinian Territory    Port Hannahfort    8281 Miller Brooks    17322    Indiana    2016-07-24 15:58:39.956593    2016-10-14 13:03:07.37659        \N    \N    \N    0    \N    \N    \N    \N    female
17982    Vincenzo    Ankunding    bria@lefflercummings.org    \N    Antigua and Barbuda    New Alexandrechester    461 Gulgowski Station    62448    Vermont    2016-09-21 02:07:39.989357    2016-10-14 13:03:07.380391        \N    \N    \N    0    \N    \N    \N    \N    female
17983    Sylvester    Johnston    annabell_kling@dietrich.name    \N    Poland    East Barrettport    121 Yvette Alley    45890-0258    Mississippi    2016-09-16 16:27:02.124028    2016-10-14 13:03:07.384221        \N    \N    \N    0    \N    \N    \N    \N    female
17984    Terence    Shanahan    german_dibbert@larkin.io    \N    Cyprus    Josephview    906 Toy Motorway    56282-3071    Iowa    2016-09-04 08:25:40.100424    2016-10-14 13:03:07.388089        \N    \N    \N    0    \N    \N    \N    \N    male
17985    Denis    Conn    leopoldo@kublind.net    \N    Hong Kong    Stanleytown    80649 Orpha Tunnel    56675    Minnesota    2016-07-17 02:57:27.48128    2016-10-14 13:03:07.391934        \N    \N    \N    0    \N    \N    \N    \N    male
17986    Anabel    Bernhard    elna.pouros@gutkowski.name    \N    Albania    West Germaine    5447 Winnifred Landing    17161-3774    New York    2016-08-13 21:45:30.463088    2016-10-14 13:03:07.395772        \N    \N    \N    0    \N    \N    \N    \N    female
17987    Annalise    Leuschke    terence@pfeffer.org    \N    Afghanistan    Daytonside    4095 Ernser River    22255    Kansas    2016-07-16 01:54:03.886597    2016-10-14 13:03:07.399828        \N    \N    \N    0    \N    \N    \N    \N    male
17988    Edward    Koepp    eva@johns.com    \N    Rwanda    North Dee    1991 Sylvester Points    82518-0133    Vermont    2016-07-31 01:38:31.018773    2016-10-14 13:03:07.403738        \N    \N    \N    0    \N    \N    \N    \N    male
17989    Waino    Quitzon    delmer@stantongoodwin.name    \N    Ethiopia    Lake Jany    4334 O'Conner Parkway    70930-1181    Oklahoma    2016-09-05 20:41:10.443902    2016-10-14 13:03:07.407815        \N    \N    \N    0    \N    \N    \N    \N    female
17990    Sarai    Rodriguez    king.schultz@colefarrell.net    \N    Hong Kong    East Dovie    91591 Meggie Squares    52754    Michigan    2016-09-12 20:41:10.002699    2016-10-14 13:03:07.411662        \N    \N    \N    0    \N    \N    \N    \N    male
17991    Dalton    Keebler    norbert_rodriguez@dickens.io    \N    Brunei Darussalam    South Cathy    7145 Brain Dam    46608-4447    Arizona    2016-09-17 02:27:18.544938    2016-10-14 13:03:07.415723        \N    \N    \N    0    \N    \N    \N    \N    male
17992    Sydnie    Jerde    hillard@stamm.io    \N    Honduras    East Lindseybury    993 Andreane Circle    13942-6346    Oklahoma    2016-09-23 06:06:38.354922    2016-10-14 13:03:07.420133        \N    \N    \N    0    \N    \N    \N    \N    male
17993    Alana    Gottlieb    mittie@sipesgraham.name    \N    Angola    Port Ruthie    29544 Gino Point    40539    Maryland    2016-07-23 15:36:21.796007    2016-10-14 13:03:07.424096        \N    \N    \N    0    \N    \N    \N    \N    male
17994    Christ    Nader    alf@hartmann.biz    \N    Mozambique    Osbaldoberg    74972 Reilly Island    38881-3525    Iowa    2016-08-14 18:46:08.792938    2016-10-14 13:03:07.428009        \N    \N    \N    0    \N    \N    \N    \N    male
17995    Stefan    Labadie    bernardo@feilpagac.co    \N    Burundi    Fritschside    1833 Mohr Key    74746-2898    Kansas    2016-08-17 06:12:29.556616    2016-10-14 13:03:07.4319        \N    \N    \N    0    \N    \N    \N    \N    female
17996    Martin    Kuphal    lavon@casperwelch.com    \N    Poland    Port Gaystad    1667 White Centers    79858    New Mexico    2016-09-09 08:28:53.158611    2016-10-14 13:03:07.435702        \N    \N    \N    0    \N    \N    \N    \N    female
17997    Angelo    Bins    osbaldo@lubowitzjacobi.biz    \N    Slovenia    West Demetrischester    2535 Reichert Junctions    44016    Nevada    2016-07-27 03:43:41.710753    2016-10-14 13:03:07.439573        \N    \N    \N    0    \N    \N    \N    \N    male
17998    Brooks    Schultz    tracey@lynch.org    \N    Togo    New Connerbury    2333 Walker Hills    70471-2902    Kentucky    2016-09-26 10:52:20.422519    2016-10-14 13:03:07.443631        \N    \N    \N    0    \N    \N    \N    \N    male
17999    Hayden    Kemmer    jayme.doyle@torphy.co    \N    Cape Verde    Port Lafayette    6902 Witting Crossroad    74766    Connecticut    2016-06-26 11:13:05.354128    2016-10-14 13:03:07.451279        \N    \N    \N    0    \N    \N    \N    \N    female
16656    Kaitlyn    Beer    lester@medhurst.biz    \N    Uruguay    Mooreport    46117 Stanton Hollow    89128    Maine    2016-09-14 07:48:37.3215    2016-10-14 13:03:07.455427        \N    \N    \N    0    \N    \N    \N    \N    male
18000    Diamond    Terry    ward@vonwelch.net    \N    Ghana    Pfefferberg    8325 Wunsch Motorway    78946-1889    California    2016-08-14 15:16:38.855926    2016-10-14 13:03:07.461361        \N    \N    \N    0    \N    \N    \N    \N    male
18001    Cicero    Prosacco    kendrick@reingergleason.info    \N    Mongolia    Lake Karine    72697 Satterfield Fort    58704-4436    Alabama    2016-08-26 22:56:48.706059    2016-10-14 13:03:07.465861        \N    \N    \N    0    \N    \N    \N    \N    male
18002    Claudine    Reilly    mina.volkman@murazik.com    \N    Zambia    Lake Fernberg    39649 Schuppe Views    65793    Oklahoma    2016-07-07 02:39:48.216602    2016-10-14 13:03:07.470521        \N    \N    \N    0    \N    \N    \N    \N    male
18003    Grover    Schoen    zoila@beahan.io    \N    Bahamas    Wolffbury    87403 Shad Garden    15003    Texas    2016-08-15 08:42:31.381591    2016-10-14 13:03:07.475081        \N    \N    \N    0    \N    \N    \N    \N    male
18004    Ned    Simonis    judd.steuber@parker.net    \N    Heard Island and McDonald Islands    New Eugeniahaven    57990 Willis Village    17668    Colorado    2016-07-28 17:42:46.51893    2016-10-14 13:03:07.479832        \N    \N    \N    0    \N    \N    \N    \N    female
18005    Dustin    Runte    tara@heller.net    \N    Hong Kong    North Kenyontown    6825 Huels Manor    72950    Florida    2016-07-01 02:46:09.462182    2016-10-14 13:03:07.483769        \N    \N    \N    0    \N    \N    \N    \N    female
18006    Arch    Goyette    miller@robelbartell.info    \N    Luxembourg    Cronahaven    20776 Edward Unions    47670    Louisiana    2016-09-10 19:07:04.384777    2016-10-14 13:03:07.487838        \N    \N    \N    0    \N    \N    \N    \N    male
18007    Jacinto    Dibbert    quinten@luettgen.io    \N    Andorra    South Darrel    9778 Candelario Centers    84883    Louisiana    2016-07-17 10:53:47.218565    2016-10-14 13:03:07.491919        \N    \N    \N    0    \N    \N    \N    \N    male
18008    Margie    Hagenes    corine@rohan.com    \N    Trinidad and Tobago    Port Isabell    58742 Keith Throughway    14268-3839    Mississippi    2016-09-13 21:51:58.239343    2016-10-14 13:03:07.496206        \N    \N    \N    0    \N    \N    \N    \N    female
18009    Vanessa    Herman    gayle_maggio@schmeler.io    \N    Solomon Islands    South Monty    4027 Predovic Centers    49495-4417    Washington    2016-09-07 17:51:17.898094    2016-10-14 13:03:07.500505        \N    \N    \N    0    \N    \N    \N    \N    male
18010    Dillan    Watsica    sandy_wolf@schmidt.info    \N    Madagascar    Lake Lisette    67610 Abbigail Vista    58013-0481    Florida    2016-08-11 12:38:25.532203    2016-10-14 13:03:07.504698        \N    \N    \N    0    \N    \N    \N    \N    female
18011    Levi    Borer    lelia@bradtke.co    \N    Ireland    North Jordychester    7696 Bashirian Manors    46325    North Carolina    2016-07-06 20:35:58.885984    2016-10-14 13:03:07.508722        \N    \N    \N    0    \N    \N    \N    \N    female
18013    Chet    Balistreri    barton@rogahn.net    \N    Zambia    West Jairo    6613 MacGyver Dale    25885    New Mexico    2016-08-16 19:01:16.683529    2016-10-14 13:03:07.512706        \N    \N    \N    0    \N    \N    \N    \N    female
18014    Valentina    Harber    erika.hahn@franeckifritsch.io    \N    United Kingdom    Mrazberg    4795 Kub Radial    24080-5522    Virginia    2016-09-11 23:20:51.299536    2016-10-14 13:03:07.51692        \N    \N    \N    0    \N    \N    \N    \N    female
18015    Shaniya    Dach    karina@runolfsdottir.co    \N    Burkina Faso    Brentville    93232 Winfield Meadow    49261    Idaho    2016-07-27 04:08:39.298639    2016-10-14 13:03:07.520893        \N    \N    \N    0    \N    \N    \N    \N    female
18016    Rocky    Connelly    blaze@gerhold.name    \N    Russian Federation    Port Lilybury    98865 Stoltenberg Squares    87474-6704    Rhode Island    2016-07-08 15:38:32.755215    2016-10-14 13:03:07.524994        \N    \N    \N    0    \N    \N    \N    \N    male
18017    Caden    Ankunding    hilbert.ebert@lueilwitzraynor.info    \N    Bermuda    North Jerad    88814 Elizabeth Terrace    47731-4024    Idaho    2016-08-07 06:52:54.050291    2016-10-14 13:03:07.529253        \N    \N    \N    0    \N    \N    \N    \N    male
18018    Francis    Runolfsson    jamil_klocko@goldner.name    \N    Nepal    Dayanamouth    217 Aliyah Plain    53642-6281    South Carolina    2016-09-07 15:59:20.067541    2016-10-14 13:03:07.533646        \N    \N    \N    0    \N    \N    \N    \N    female
18019    Lucy    Hane    nathan@volkman.biz    \N    Gabon    North Stephontown    84754 Eli Neck    27874-8705    Nebraska    2016-08-07 02:45:36.451379    2016-10-14 13:03:07.537963        \N    \N    \N    0    \N    \N    \N    \N    female
18020    Laverna    Hauck    virgie@jacobson.info    \N    Ukraine    Lake Feliciaton    2028 Birdie Keys    61738    New Mexico    2016-09-06 17:40:10.022576    2016-10-14 13:03:07.541901        \N    \N    \N    0    \N    \N    \N    \N    female
18021    Etha    Volkman    beie@casper.biz    \N    Faroe Islands    Port Kearafurt    15041 Zella Field    29368-8682    Massachusetts    2016-08-11 14:05:34.244424    2016-10-14 13:03:07.545943        \N    \N    \N    0    \N    \N    \N    \N    male
18022    Precious    Konopelski    marques@jerde.com    \N    Lebanon    East Giuseppe    67013 Daija Lane    70839-4705    Kansas    2016-09-07 10:08:34.499902    2016-10-14 13:03:07.550244        \N    \N    \N    0    \N    \N    \N    \N    male
18023    Jannie    Zemlak    roberto.ratke@kuhnolson.co    \N    Poland    Lake Stuart    63928 Rocky Skyway    81231-0146    South Carolina    2016-07-14 15:15:08.923326    2016-10-14 13:03:07.55464        \N    \N    \N    0    \N    \N    \N    \N    male
18024    Elnora    Trantow    hanna@huelsfritsch.info    \N    Sri Lanka    Port Freeda    438 Bogan Isle    79492-9522    Vermont    2016-08-23 22:54:01.290588    2016-10-14 13:03:07.558787        \N    \N    \N    0    \N    \N    \N    \N    male
18025    Mervin    Kassulke    anastacio_wuckert@harvey.com    \N    Djibouti    Micheleport    8327 Vickie Plains    63931-6175    Maryland    2016-07-03 16:00:24.97519    2016-10-14 13:03:07.562836        \N    \N    \N    0    \N    \N    \N    \N    male
18026    Pasquale    Hodkiewicz    sarina@pouros.com    \N    Jersey    Ebertborough    38511 Bechtelar Rest    54583    Delaware    2016-08-19 09:00:20.475303    2016-10-14 13:03:07.567126        \N    \N    \N    0    \N    \N    \N    \N    male
18027    Natalia    Dibbert    josefa_schaden@beierpadberg.co    \N    Saint Barthelemy    Alberthahaven    442 Zachery Creek    35560    Utah    2016-07-25 01:58:43.578152    2016-10-14 13:03:07.571785        \N    \N    \N    0    \N    \N    \N    \N    female
18028    Lavonne    Hirthe    tavares_hoeger@thielmurphy.co    \N    Madagascar    Jefferymouth    5009 Aleen Stream    13478    Massachusetts    2016-07-09 21:09:06.905822    2016-10-14 13:03:07.575949        \N    \N    \N    0    \N    \N    \N    \N    male
18029    Ashton    Bednar    carter@streich.com    \N    Sudan    Legrosside    6041 Lola Lake    88717    Nevada    2016-08-10 12:59:59.880692    2016-10-14 13:03:07.581433        \N    \N    \N    0    \N    \N    \N    \N    female
18030    Brady    McDermott    santos@wisozk.org    \N    Portugal    West Bernardbury    520 Annette Turnpike    72829    Louisiana    2016-07-04 00:55:06.578745    2016-10-14 13:03:07.58531        \N    \N    \N    0    \N    \N    \N    \N    female
18031    Tate    Metz    darrin_jaskolski@aufderharschaden.org    \N    South Africa    Millerport    118 Spencer Trail    92819-7500    Florida    2016-07-20 04:45:19.487757    2016-10-14 13:03:07.589464        \N    \N    \N    0    \N    \N    \N    \N    male
18032    Veda    Feil    trey.nitzsche@toy.com    \N    Namibia    Blandahaven    228 Shania Grove    85838-3859    West Virginia    2016-09-06 09:10:21.939738    2016-10-14 13:03:07.593808        \N    \N    \N    0    \N    \N    \N    \N    female
18033    Nigel    O'Reilly    leopold@considine.name    \N    Falkland Islands (Malvinas)    Lake Nayelichester    3460 Everette Lodge    84528    Vermont    2016-07-22 11:07:25.850992    2016-10-14 13:03:07.598153        \N    \N    \N    0    \N    \N    \N    \N    female
18034    Owen    Reilly    oceane@krishudson.com    \N    Micronesia    South Lavadaland    733 Kade Cliff    53870    Louisiana    2016-08-23 00:56:19.871011    2016-10-14 13:03:07.602295        \N    \N    \N    0    \N    \N    \N    \N    male
18035    Adell    Brakus    alene_hudson@oconnerparker.com    \N    Faroe Islands    East Hans    410 Rahul Plains    21718-7673    Kentucky    2016-08-17 02:58:05.166854    2016-10-14 13:03:07.606893        \N    \N    \N    0    \N    \N    \N    \N    male
18036    Mortimer    Collier    alford@stanton.info    \N    Iceland    Veumton    70384 Lupe Flats    90013    New York    2016-08-17 16:51:52.699497    2016-10-14 13:03:07.612673        \N    \N    \N    0    \N    \N    \N    \N    male
18037    Karine    Dibbert    stevie.mckenzie@cruickshankcruickshank.info    \N    Kazakhstan    Deloresmouth    1899 Conor Centers    60953-6890    Indiana    2016-09-28 23:42:53.449354    2016-10-14 13:03:07.616715        \N    \N    \N    0    \N    \N    \N    \N    female
18038    Sarah    Parisian    alicia.orn@stokes.org    \N    Micronesia    Sawaynville    9158 Hettinger Trafficway    49596    New Jersey    2016-07-19 01:34:33.18636    2016-10-14 13:03:07.620553        \N    \N    \N    0    \N    \N    \N    \N    female
18039    Helene    Zboncak    murray@roobschmeler.biz    \N    Lebanon    West Reesefort    680 Elsie Mountain    67770    Oregon    2016-09-03 10:44:00.029893    2016-10-14 13:03:07.624494        \N    \N    \N    0    \N    \N    \N    \N    male
18040    Ryley    Moore    demarco@gutmann.io    \N    Panama    Torpberg    853 Stoltenberg Course    47180    Nebraska    2016-07-11 01:37:43.832972    2016-10-14 13:03:07.628353        \N    \N    \N    0    \N    \N    \N    \N    female
18041    Terrill    Schuppe    kamryn_west@handhayes.info    \N    Costa Rica    New Thad    346 Florian Branch    13570    Nebraska    2016-09-28 04:20:09.788836    2016-10-14 13:03:07.632207        \N    \N    \N    0    \N    \N    \N    \N    female
18042    Alf    Heidenreich    daphney_kulas@kutch.com    \N    Colombia    Weissnatstad    3548 Marks Stravenue    80749-5998    Maryland    2016-09-06 07:28:35.033018    2016-10-14 13:03:07.636014        \N    \N    \N    0    \N    \N    \N    \N    male
18043    Michale    Towne    brittany@leuschkeharris.name    \N    Jordan    West Amos    998 Leo Parkway    73196    South Dakota    2016-08-21 06:35:19.154351    2016-10-14 13:03:07.640973        \N    \N    \N    0    \N    \N    \N    \N    female
18044    Sofia    Quitzon    jonas@aufderhar.name    \N    United States of America    South Imamouth    71692 Felipe Rapids    10636    Wisconsin    2016-09-15 04:39:37.623856    2016-10-14 13:03:07.645431        \N    \N    \N    0    \N    \N    \N    \N    female
18045    Ethyl    Hand    leo.bashirian@mckenzie.biz    \N    Palestinian Territory    New Billy    90372 Maxie Streets    80338    Michigan    2016-08-12 05:51:15.588438    2016-10-14 13:03:07.649263        \N    \N    \N    0    \N    \N    \N    \N    male
18047    Pearl    Swaniawski    fay_luettgen@huelmarks.com    \N    Congo    North Jalontown    52797 Augustus Knoll    22788-8366    West Virginia    2016-09-28 23:58:38.898759    2016-10-14 13:03:07.65322        \N    \N    \N    0    \N    \N    \N    \N    female
18048    Laury    Beer    amir@cormier.io    \N    Jamaica    Lake Angelinamouth    910 Evan Station    87489-5773    Maine    2016-08-07 16:12:53.10816    2016-10-14 13:03:07.657082        \N    \N    \N    0    \N    \N    \N    \N    female
18049    Adan    Marquardt    john@bartoletti.io    \N    Australia    New Janiya    483 Jenkins Courts    19184-4548    Georgia    2016-07-16 20:13:51.091594    2016-10-14 13:03:07.660939        \N    \N    \N    0    \N    \N    \N    \N    male
18050    Kaleb    Zulauf    brenda_barton@mayert.biz    \N    British Indian Ocean Territory (Chagos Archipelago)    Port Kristinmouth    490 Corbin Avenue    55766-5609    New Hampshire    2016-07-09 08:29:52.913611    2016-10-14 13:03:07.665127        \N    \N    \N    0    \N    \N    \N    \N    female
18051    Sidney    Borer    eunice@heidenreich.info    \N    Guadeloupe    Kirlinshire    54074 Porter Valley    40495-5825    Virginia    2016-07-02 21:25:35.89683    2016-10-14 13:03:07.670984        \N    \N    \N    0    \N    \N    \N    \N    male
18052    Jamar    Braun    alvah@trantow.com    \N    San Marino    Lake Eugeneport    75568 Fisher Roads    40064-2401    Wyoming    2016-08-09 00:03:16.893921    2016-10-14 13:03:07.675016        \N    \N    \N    0    \N    \N    \N    \N    female
18053    Landen    Price    micheal_mitchell@glover.co    \N    Paraguay    Mohrhaven    5382 Rosalinda Valley    77743    New York    2016-07-06 02:48:34.09534    2016-10-14 13:03:07.67888        \N    \N    \N    0    \N    \N    \N    \N    female
18054    Jabari    Lebsack    maximillia_streich@beahanspinka.name    \N    Turkmenistan    North Mitchel    78702 Chester Mall    31304    Connecticut    2016-08-02 15:17:45.136216    2016-10-14 13:03:07.682736        \N    \N    \N    0    \N    \N    \N    \N    male
18055    Maeve    Wyman    fredy@hettingerhand.net    \N    Saint Martin    Port Yadira    2660 Howe Drive    75807    Delaware    2016-09-10 03:53:19.325036    2016-10-14 13:03:07.686721        \N    \N    \N    0    \N    \N    \N    \N    male
18056    Marquis    Torphy    xzavier.weber@lindgren.biz    \N    Turkmenistan    South Ignatius    4469 Gage Radial    23094-7226    Connecticut    2016-09-18 23:25:24.831597    2016-10-14 13:03:07.690722        \N    \N    \N    0    \N    \N    \N    \N    male
18057    Hermina    Mitchell    verlie_bartoletti@osinskinader.co    \N    French Southern Territories    Moenmouth    35298 Virginia Lake    37530    Louisiana    2016-07-03 17:26:21.831883    2016-10-14 13:03:07.694666        \N    \N    \N    0    \N    \N    \N    \N    female
18058    Roger    Smith    landen_medhurst@lemke.io    \N    Sweden    East Titusport    15554 Witting Crossing    66602    Illinois    2016-07-16 09:37:37.323325    2016-10-14 13:03:07.699937        \N    \N    \N    0    \N    \N    \N    \N    female
18059    Meggie    Wiza    frieda_rolfson@mullerkuhic.co    \N    Guernsey    North Suzannestad    57332 Lee Key    64209    Florida    2016-09-27 04:26:51.804597    2016-10-14 13:03:07.704159        \N    \N    \N    0    \N    \N    \N    \N    male
18061    Constantin    Gaylord    efren@schmeler.biz    \N    Suriname    Ortizshire    76121 Genoveva Hill    47301-2542    New Jersey    2016-07-16 09:25:02.757872    2016-10-14 13:03:07.708131        \N    \N    \N    0    \N    \N    \N    \N    female
18062    Keshawn    Zulauf    georgette@shieldchaefer.com    \N    Virgin Islands, U.S.    South Madisen    9925 Becker Spurs    66122    Vermont    2016-08-26 09:32:40.854376    2016-10-14 13:03:07.712075        \N    \N    \N    0    \N    \N    \N    \N    male
18063    Douglas    Greenfelder    seth.schultz@bernhardpfannerstill.com    \N    Norfolk Island    Rickieview    85350 Weldon Via    66608-0806    North Carolina    2016-09-18 03:06:21.914652    2016-10-14 13:03:07.716065        \N    \N    \N    0    \N    \N    \N    \N    male
18064    Eldred    Turner    camilla.schuster@boehm.net    \N    Myanmar    Rafaelchester    254 Smitham Rue    49633-6135    California    2016-08-27 21:57:42.130978    2016-10-14 13:03:07.720047        \N    \N    \N    0    \N    \N    \N    \N    female
18065    Alvina    Smitham    mario@douglas.info    \N    Svalbard & Jan Mayen Islands    Connerton    6284 Etha Summit    81312    Ohio    2016-07-15 14:53:38.833866    2016-10-14 13:03:07.723883        \N    \N    \N    0    \N    \N    \N    \N    female
18066    Greg    Streich    dina.lubowitz@reichelaltenwerth.com    \N    Chad    Luettgenton    3313 Dean Glen    57950-1208    New Hampshire    2016-09-21 19:28:50.172667    2016-10-14 13:03:07.729817        \N    \N    \N    0    \N    \N    \N    \N    female
18067    Tierra    Renner    pierre@stamm.com    \N    Jamaica    Annaliseville    782 Baumbach Groves    81751    Washington    2016-08-24 20:47:41.593403    2016-10-14 13:03:07.734236        \N    \N    \N    0    \N    \N    \N    \N    female
18068    Hiram    Denesik    khalil@dach.co    \N    United Kingdom    Lakinchester    7478 Ike Village    80346-4255    Florida    2016-08-17 03:07:29.943023    2016-10-14 13:03:07.738676        \N    \N    \N    0    \N    \N    \N    \N    male
18069    Gabriel    Jaskolski    jarvis@larsonwisozk.info    \N    Romania    South Deronside    96072 Virgie Shoals    17837    Alabama    2016-09-17 01:11:07.539603    2016-10-14 13:03:07.743137        \N    \N    \N    0    \N    \N    \N    \N    male
18070    Violet    Feil    laverna_hartmann@bogan.io    \N    Malawi    Lake Elise    2786 Marcel Trafficway    10455-2297    Missouri    2016-08-07 04:20:49.183262    2016-10-14 13:03:07.74766        \N    \N    \N    0    \N    \N    \N    \N    female
18071    River    Hickle    jaylon@schinner.name    \N    Ukraine    Lake Alexandre    58745 Bertrand Locks    63044    New Hampshire    2016-07-23 19:07:02.136201    2016-10-14 13:03:07.752038        \N    \N    \N    0    \N    \N    \N    \N    male
18072    Brandyn    Schaefer    clovis@waters.info    \N    Saint Kitts and Nevis    New Rossie    6742 Rodriguez Pike    45424-5148    New Jersey    2016-09-07 09:18:56.738493    2016-10-14 13:03:07.757734        \N    \N    \N    0    \N    \N    \N    \N    male
18074    Xander    Beatty    toney_erdman@raucain.biz    \N    Cocos (Keeling) Islands    East Jayda    281 Lemke Place    58074-3862    Oklahoma    2016-07-10 12:50:30.777827    2016-10-14 13:03:07.761884        \N    \N    \N    0    \N    \N    \N    \N    female
18075    Marcella    Kreiger    zula@romaguera.net    \N    San Marino    Abdulland    18155 O'Hara Grove    52450-9416    Georgia    2016-09-04 16:16:39.298201    2016-10-14 13:03:07.766432        \N    \N    \N    0    \N    \N    \N    \N    male
18076    Malika    Hilll    malinda_greenholt@schuppe.net    \N    Greece    Pricefurt    4767 Luz Route    31429-3798    Kentucky    2016-09-21 23:15:56.208397    2016-10-14 13:03:07.770982        \N    \N    \N    0    \N    \N    \N    \N    female
18077    Sincere    Dare    arnold@hansen.net    \N    Saint Vincent and the Grenadines    Macejkovicport    65331 Lueilwitz Vista    90581    Utah    2016-09-17 22:44:45.93135    2016-10-14 13:03:07.775287        \N    \N    \N    0    \N    \N    \N    \N    female
18078    Alisha    Tremblay    bartholome@bergnaum.org    \N    Gambia    Schmelershire    557 Adrain Avenue    53901-1783    Maine    2016-09-24 13:16:32.119167    2016-10-14 13:03:07.779957        \N    \N    \N    0    \N    \N    \N    \N    female
18079    Lilliana    Rosenbaum    gielle.auer@shanahanheller.com    \N    Jamaica    Daveberg    74709 Reynold Haven    39466    Iowa    2016-09-07 15:46:06.281635    2016-10-14 13:03:07.785255        \N    \N    \N    0    \N    \N    \N    \N    male
18080    Mariela    Ruecker    jamar@muellerhansen.org    \N    Niue    Prohaskaton    5090 Daryl Springs    62525-8065    New Hampshire    2016-08-31 03:27:06.606613    2016-10-14 13:03:07.789755        \N    \N    \N    0    \N    \N    \N    \N    female
18081    Melany    Greenholt    aliza@nienowolson.io    \N    Falkland Islands (Malvinas)    Ashlynnbury    8121 McKenzie Center    76035-8802    New Jersey    2016-09-13 18:26:06.403452    2016-10-14 13:03:07.79373        \N    \N    \N    0    \N    \N    \N    \N    female
18082    Jaida    Schoen    francisco@schiller.com    \N    Namibia    South Waylon    813 Douglas Club    44611-5907    Delaware    2016-07-10 22:30:11.731287    2016-10-14 13:03:07.79784        \N    \N    \N    0    \N    \N    \N    \N    female
18083    Beulah    Murray    gabrielle.wintheiser@rogahn.io    \N    Oman    Padbergmouth    12199 Allison Lights    20397    Utah    2016-09-07 06:02:23.767093    2016-10-14 13:03:07.802207        \N    \N    \N    0    \N    \N    \N    \N    male
18084    Allison    Johnson    osvaldo_sipes@dietrichbeatty.name    \N    Saint Vincent and the Grenadines    Cristobalville    66163 Corene Landing    11067-8694    Connecticut    2016-09-22 07:50:24.626356    2016-10-14 13:03:07.8062        \N    \N    \N    0    \N    \N    \N    \N    male
18085    Casimir    Schoen    timmothy_goldner@boehmgutkowski.name    \N    Somalia    South Anabeltown    81824 Oberbrunner Extensions    35334-1245    Florida    2016-07-27 19:35:02.602137    2016-10-14 13:03:07.811072        \N    \N    \N    0    \N    \N    \N    \N    male
18086    Adella    Barton    rubye.monahan@graham.name    \N    Micronesia    New Sydneehaven    606 Elizabeth Course    89382-7528    Ohio    2016-07-15 14:59:28.092508    2016-10-14 13:03:07.817361        \N    \N    \N    0    \N    \N    \N    \N    male
18087    Velma    Kiehn    margarett@schinner.info    \N    Slovakia (Slovak Republic)    Pacochabury    905 Rippin Views    20953    North Dakota    2016-07-11 06:25:31.323658    2016-10-14 13:03:07.82508        \N    \N    \N    0    \N    \N    \N    \N    female
18088    Ezra    Hayes    frank@murphy.biz    \N    Somalia    South Madge    813 Cheyanne Drive    53275    New Jersey    2016-08-07 18:45:57.933314    2016-10-14 13:03:07.830433        \N    \N    \N    0    \N    \N    \N    \N    female
18089    Queen    Toy    brianne@lindgrenzboncak.com    \N    Slovakia (Slovak Republic)    South Bulahbury    3452 Ottilie Mission    43850-5592    Arkansas    2016-09-26 05:54:28.650379    2016-10-14 13:03:07.83499        \N    \N    \N    0    \N    \N    \N    \N    female
18090    Jarod    Fahey    alphonso@carter.net    \N    Congo    Reubentown    971 Satterfield Plains    55345    Wyoming    2016-06-25 18:05:06.209352    2016-10-14 13:03:07.839177        \N    \N    \N    0    \N    \N    \N    \N    female
18091    Albert    Rohan    elouise@kuhn.biz    \N    Bouvet Island (Bouvetoya)    Port Jaceburgh    5462 Homenick Forge    14899-1515    Utah    2016-09-07 03:36:52.57954    2016-10-14 13:03:07.851981        \N    \N    \N    0    \N    \N    \N    \N    male
18093    Niko    Wyman    jaiden.cremin@labadie.io    \N    Italy    Theodoraland    751 Beer Shore    74677    Connecticut    2016-07-21 21:27:03.327388    2016-10-14 13:03:07.85693        \N    \N    \N    0    \N    \N    \N    \N    female
18094    Franz    Bernier    tomasa_spinka@pagacquigley.info    \N    Venezuela    South Vallieland    309 Anderson Walk    81667-2497    Nebraska    2016-07-17 19:42:53.802057    2016-10-14 13:03:07.863611        \N    \N    \N    0    \N    \N    \N    \N    male
18095    Asia    DuBuque    wilber@dickikeebler.io    \N    Costa Rica    North Thomastown    519 Jerad Groves    56518    Missouri    2016-06-22 23:26:02.509858    2016-10-14 13:03:07.869306        \N    \N    \N    0    \N    \N    \N    \N    female
18097    Rhoda    Medhurst    yasmine@millsmraz.biz    \N    Pitcairn Islands    Koryland    5263 Lempi Springs    46823    Massachusetts    2016-07-17 00:49:29.063102    2016-10-14 13:03:07.877041        \N    \N    \N    0    \N    \N    \N    \N    male
18098    Lorenz    Lueilwitz    delbert@schoenkshlerin.info    \N    Svalbard & Jan Mayen Islands    Walshchester    11579 Ellsworth Road    50146-6424    Michigan    2016-08-23 20:18:06.061974    2016-10-14 13:03:07.882342        \N    \N    \N    0    \N    \N    \N    \N    female
18099    Myah    Koepp    sven@nadershanahan.name    \N    Somalia    North Breannaview    192 Dante Locks    46194    Virginia    2016-08-08 16:48:27.126336    2016-10-14 13:03:07.89454        \N    \N    \N    0    \N    \N    \N    \N    male
18100    Jarrell    Schuppe    tiara.goyette@ledner.name    \N    Kazakhstan    Dannieberg    50729 Trantow Lane    38334-7464    South Dakota    2016-08-07 06:20:55.511751    2016-10-14 13:03:07.90065        \N    \N    \N    0    \N    \N    \N    \N    female
18101    Jefferey    Hansen    alivia_cormier@mcglynnhermann.org    \N    Eritrea    Medhurstfort    5053 Marquardt Locks    49601-5404    Pennsylvania    2016-08-19 16:28:10.242436    2016-10-14 13:03:07.908188        \N    \N    \N    0    \N    \N    \N    \N    male
18102    Rocio    Hackett    alexanne.senger@rippinkertzmann.biz    \N    Libyan Arab Jamahiriya    New Grahammouth    542 Kling Light    80657    Georgia    2016-06-28 08:02:50.490777    2016-10-14 13:03:07.912891        \N    \N    \N    0    \N    \N    \N    \N    male
18103    Joyce    Jakubowski    dianna_osinski@torpschulist.io    \N    Democratic People's Republic of Korea    Cruickshankside    545 Samara Manor    85674    Virginia    2016-07-25 17:47:36.118625    2016-10-14 13:03:07.917227        \N    \N    \N    0    \N    \N    \N    \N    female
18104    Jeramie    Mosciski    maida_mertz@hammeshayes.org    \N    Antigua and Barbuda    Nicoletown    40708 Maybelle Locks    16994    Arizona    2016-08-28 17:35:59.265028    2016-10-14 13:03:07.92181        \N    \N    \N    0    \N    \N    \N    \N    male
18105    Jordyn    Weimann    kevon@schinner.name    \N    Indonesia    Lake Khalidland    8479 Crystal Field    51293-7045    Virginia    2016-07-10 01:20:02.922451    2016-10-14 13:03:07.92646        \N    \N    \N    0    \N    \N    \N    \N    female
18106    Albert    Bartell    rahul.dietrich@stokesflatley.org    \N    Palau    Hilmamouth    280 Turcotte Village    37456-4069    Arkansas    2016-08-29 22:19:06.449909    2016-10-14 13:03:07.931269        \N    \N    \N    0    \N    \N    \N    \N    male
18107    Marshall    Russel    brandi@braun.info    \N    Bahamas    Twilaland    6069 Nienow Overpass    22833    Delaware    2016-07-25 05:39:09.112972    2016-10-14 13:03:07.938226        \N    \N    \N    0    \N    \N    \N    \N    male
18108    Genevieve    Stracke    brannon@ohara.org    \N    Peru    Zolabury    3142 Rau Way    87344-2914    Indiana    2016-06-26 13:46:23.125128    2016-10-14 13:03:07.943368        \N    \N    \N    0    \N    \N    \N    \N    female
18109    Noelia    Beahan    emmet.lowe@mann.co    \N    Syrian Arab Republic    Svenstad    11885 Angelina Court    15440-3637    Nevada    2016-07-04 02:51:35.100135    2016-10-14 13:03:07.948308        \N    \N    \N    0    \N    \N    \N    \N    female
18110    Marques    Nikolaus    levi@muellercormier.com    \N    Burundi    Austinhaven    4763 Carrie Loaf    87732-6365    Oklahoma    2016-09-06 15:43:27.389802    2016-10-14 13:03:07.953095        \N    \N    \N    0    \N    \N    \N    \N    male
18111    Pete    Simonis    terrance@block.name    \N    Timor-Leste    Port Rocioshire    3079 Baylee Camp    22582-0138    Utah    2016-09-06 19:44:17.984556    2016-10-14 13:03:07.957019        \N    \N    \N    0    \N    \N    \N    \N    male
18112    King    Turcotte    haylie.ullrich@jonesjaskolski.com    \N    Republic of Korea    East Yazminmouth    122 Hillard Flats    58437    New Mexico    2016-09-13 12:41:38.159927    2016-10-14 13:03:07.961374        \N    \N    \N    0    \N    \N    \N    \N    male
18113    Filiberto    Glover    leon@grahamzemlak.org    \N    Jordan    Port Kaleb    2645 Luettgen Valley    47734-3312    New Hampshire    2016-08-04 08:02:14.038711    2016-10-14 13:03:07.965647        \N    \N    \N    0    \N    \N    \N    \N    female
18114    Newton    Little    dejah@gusikowski.io    \N    Seychelles    Mosesland    7132 Elena Stravenue    93930-4849    California    2016-09-03 03:42:30.5427    2016-10-14 13:03:07.969591        \N    \N    \N    0    \N    \N    \N    \N    female
18115    Lukas    Crona    stephany.balistreri@veum.org    \N    Qatar    Lake Darianaberg    9526 Eladio Ports    58190    Illinois    2016-06-22 09:17:06.223064    2016-10-14 13:03:07.973905        \N    \N    \N    0    \N    \N    \N    \N    female
18116    Okey    Bins    dashawn_kaulke@langworth.io    \N    American Samoa    North Felipa    4854 McDermott Mill    39697-6481    Nebraska    2016-08-03 17:26:47.165197    2016-10-14 13:03:07.978499        \N    \N    \N    0    \N    \N    \N    \N    female
18117    Brionna    Maggio    otilia@pouros.org    \N    Ghana    Amayaborough    67706 Adam Bridge    87741    Montana    2016-08-31 15:59:56.425034    2016-10-14 13:03:07.982698        \N    \N    \N    0    \N    \N    \N    \N    male
18118    Keira    Swaniawski    vita@kunde.biz    \N    Timor-Leste    West Arnaldofort    9111 Jessie Port    36735    Kansas    2016-09-17 09:14:03.308522    2016-10-14 13:03:07.987147        \N    \N    \N    0    \N    \N    \N    \N    female
18119    Samanta    Kulas    marlon@grantkerluke.com    \N    United Arab Emirates    Keventown    92861 Howell Key    35726-4442    Missouri    2016-09-06 06:07:22.729796    2016-10-14 13:03:07.99305        \N    \N    \N    0    \N    \N    \N    \N    male
18120    Janessa    O'Connell    don@ruel.io    \N    Singapore    Walkerview    3504 Easter Key    53796-4436    Nebraska    2016-07-24 20:02:38.842113    2016-10-14 13:03:07.997811        \N    \N    \N    0    \N    \N    \N    \N    female
18121    Oran    Trantow    loyal@hills.co    \N    Guam    South Brendenborough    4673 Dave Knolls    16439    South Dakota    2016-09-11 09:03:50.627871    2016-10-14 13:03:08.003127        \N    \N    \N    0    \N    \N    \N    \N    male
18122    Jarrell    Braun    alanis@parisian.org    \N    American Samoa    Rennerhaven    7908 Koelpin Passage    26119    New Jersey    2016-07-26 14:20:08.205625    2016-10-14 13:03:08.008012        \N    \N    \N    0    \N    \N    \N    \N    male
18123    Destany    Schumm    chad.lindgren@dubuque.biz    \N    Peru    South Luisabury    558 Purdy Lodge    14576    Maine    2016-09-09 03:32:47.360673    2016-10-14 13:03:08.012522        \N    \N    \N    0    \N    \N    \N    \N    female
18124    Horace    Wehner    ashlee@moenkerluke.biz    \N    Monaco    Daniellamouth    29511 Fiona Ramp    28436-1859    Nevada    2016-09-26 04:30:20.085464    2016-10-14 13:03:08.017433        \N    \N    \N    0    \N    \N    \N    \N    female
18125    Tavares    Brakus    sean@torphyrodriguez.name    \N    Fiji    Shanahanfurt    5659 Manley Estate    40488    New Mexico    2016-08-02 15:26:01.905416    2016-10-14 13:03:08.023714        \N    \N    \N    0    \N    \N    \N    \N    male
18126    Kieran    Yundt    victor.bogisich@reynoldscummings.io    \N    Kazakhstan    New Stephen    2425 Price Walk    61529-5910    Idaho    2016-09-21 03:59:16.677288    2016-10-14 13:03:08.028849        \N    \N    \N    0    \N    \N    \N    \N    male
18127    Zaria    Wehner    eleanora@tremblay.name    \N    United States of America    Lake Gregory    64612 Cremin Junctions    75027    Maine    2016-07-04 09:12:55.407109    2016-10-14 13:03:08.034864        \N    \N    \N    0    \N    \N    \N    \N    male
18128    Pearl    Smith    lelah_romaguera@ebert.org    \N    Bolivia    Metzmouth    1478 Simonis Island    11505-7149    Virginia    2016-06-30 03:14:13.492229    2016-10-14 13:03:08.039363        \N    \N    \N    0    \N    \N    \N    \N    female
18129    Marisa    Lemke    katlynn@bergstrom.io    \N    Saint Pierre and Miquelon    Terranceshire    8121 Beahan Ford    28709-7788    Oregon    2016-07-01 23:54:08.889589    2016-10-14 13:03:08.043817        \N    \N    \N    0    \N    \N    \N    \N    male
18130    Maia    Von    kasey_feest@hackettschumm.name    \N    New Caledonia    Gerlachland    41363 Kaelyn Viaduct    70320    Pennsylvania    2016-08-30 16:45:13.926648    2016-10-14 13:03:08.048144        \N    \N    \N    0    \N    \N    \N    \N    female
18131    Jon    Blanda    mariela_towne@barton.info    \N    Austria    South Janyview    8995 Damaris Turnpike    85132    New York    2016-08-29 03:37:06.906202    2016-10-14 13:03:08.054571        \N    \N    \N    0    \N    \N    \N    \N    male
18132    Reilly    Wuckert    eve_torphy@caspermann.net    \N    Bhutan    North Jarvis    84360 Beer Trail    81990    Delaware    2016-07-07 01:01:35.268361    2016-10-14 13:03:08.058505        \N    \N    \N    0    \N    \N    \N    \N    male
18133    Caitlyn    Koepp    harrison.watsica@kautzer.io    \N    Cambodia    Timmyton    5563 Arno Isle    55354-5512    Michigan    2016-09-09 03:47:11.891629    2016-10-14 13:03:08.062851        \N    \N    \N    0    \N    \N    \N    \N    male
18134    Corene    Mueller    camille.huels@ortiz.net    \N    Mauritania    Port Everettemouth    96117 Luther Inlet    86750-1817    Maryland    2016-09-02 07:46:30.507129    2016-10-14 13:03:08.067205        \N    \N    \N    0    \N    \N    \N    \N    male
18135    Ole    Batz    archibald_morar@sporer.com    \N    Madagascar    East Houston    4468 Langosh Ports    36412-9392    Florida    2016-08-27 20:19:32.20877    2016-10-14 13:03:08.071886        \N    \N    \N    0    \N    \N    \N    \N    female
18136    Francis    Heaney    coy.klocko@kemmerveum.info    \N    Estonia    Port Bernadettefort    6762 Jalyn Pine    37274-2169    North Carolina    2016-08-13 14:23:36.694153    2016-10-14 13:03:08.076378        \N    \N    \N    0    \N    \N    \N    \N    female
18137    Jacques    Schowalter    irwin@boehm.org    \N    Netherlands Antilles    North Jademouth    398 O'Reilly Stream    51996    Oklahoma    2016-09-23 01:40:33.028615    2016-10-14 13:03:08.08099        \N    \N    \N    0    \N    \N    \N    \N    male
18138    Shayne    Dibbert    etha@cainmckenzie.name    \N    Nicaragua    Lake Casimer    3380 Laurianne Plaza    40881-1984    Arizona    2016-09-20 16:15:36.696541    2016-10-14 13:03:08.085572        \N    \N    \N    0    \N    \N    \N    \N    female
18139    Rick    Rippin    aiden@raugrant.net    \N    Czech Republic    McDermottfurt    543 Mikel Branch    89581    Missouri    2016-07-29 14:24:59.808153    2016-10-14 13:03:08.090292        \N    \N    \N    0    \N    \N    \N    \N    male
18140    Christop    Considine    monique@bins.co    \N    Palestinian Territory    East Waldo    786 Billy Parkways    58220-9198    Delaware    2016-08-20 19:19:54.201069    2016-10-14 13:03:08.094577        \N    \N    \N    0    \N    \N    \N    \N    male
18141    Carmel    Toy    audra@thiel.info    \N    Malta    New Quinton    66844 Nolan Isle    78300-7280    Iowa    2016-08-21 23:59:07.018947    2016-10-14 13:03:08.098697        \N    \N    \N    0    \N    \N    \N    \N    female
18142    Sienna    Barrows    marcelina@pagacsenger.co    \N    Yemen    Port Aliviaville    164 Stracke Pine    52023    Pennsylvania    2016-07-30 16:51:18.147692    2016-10-14 13:03:08.102944        \N    \N    \N    0    \N    \N    \N    \N    female
18143    Mariah    Hammes    makenzie@dubuquebeier.com    \N    Indonesia    North Mossieton    530 Becker Spring    61018-5869    New Mexico    2016-07-10 18:54:20.252008    2016-10-14 13:03:08.107196        \N    \N    \N    0    \N    \N    \N    \N    female
18144    Oren    Kessler    jamey_skiles@ziemann.biz    \N    Moldova    Lake Lizzie    737 Romaguera Turnpike    64603    Georgia    2016-07-24 10:24:32.874707    2016-10-14 13:03:08.112274        \N    \N    \N    0    \N    \N    \N    \N    male
18145    Albert    White    mable.gulgowski@senger.org    \N    Germany    Port Mervin    429 Dolly Prairie    69404    North Carolina    2016-09-14 09:19:46.20551    2016-10-14 13:03:08.117518        \N    \N    \N    0    \N    \N    \N    \N    male
18146    Romaine    Pagac    adell_roberts@gibsonpurdy.net    \N    Morocco    D'Amorehaven    41876 Greenholt Underpass    24804-6659    Utah    2016-08-25 13:50:57.830116    2016-10-14 13:03:08.122703        \N    \N    \N    0    \N    \N    \N    \N    male
18147    Geo    Cronin    laurence@jerdetrantow.org    \N    Guinea    Kreigerport    6298 Cummings Lodge    62329    Delaware    2016-07-19 17:30:14.137127    2016-10-14 13:03:08.12917        \N    \N    \N    0    \N    \N    \N    \N    female
18148    Reba    Adams    beau@hoeger.name    \N    Portugal    Lake Myrnaside    243 Amanda Stream    62498    Maine    2016-08-30 08:57:31.004998    2016-10-14 13:03:08.134026        \N    \N    \N    0    \N    \N    \N    \N    male
18149    Theo    Rowe    christ.carter@purdy.info    \N    Bouvet Island (Bouvetoya)    O'Reillyport    1008 Stella Fork    74456-4324    Michigan    2016-09-14 07:29:54.629897    2016-10-14 13:03:08.139684        \N    \N    \N    0    \N    \N    \N    \N    male
18150    Felicity    Welch    luciano@daugherty.org    \N    Micronesia    Annieborough    286 Taya Meadow    31312-9824    Pennsylvania    2016-07-05 08:16:06.977513    2016-10-14 13:03:08.145071        \N    \N    \N    0    \N    \N    \N    \N    female
18152    Dewayne    Howe    abelardo_herzog@marquardtlockman.org    \N    Western Sahara    Camyllefort    1059 Keyon Summit    11453-2019    Wisconsin    2016-08-24 05:18:27.086474    2016-10-14 13:03:08.150141        \N    \N    \N    0    \N    \N    \N    \N    female
18153    Ken    Mayer    verna@hintz.io    \N    Mauritius    Lake Shanyfort    9204 Lesch Stream    72255    Illinois    2016-08-21 03:07:41.475192    2016-10-14 13:03:08.155311        \N    \N    \N    0    \N    \N    \N    \N    male
18154    Lauriane    Wunsch    edgar_greenholt@wiegand.biz    \N    Rwanda    Calistaland    750 Gleason Lake    61783    Hawaii    2016-06-29 10:58:32.730452    2016-10-14 13:03:08.159763        \N    \N    \N    0    \N    \N    \N    \N    female
18155    Claudine    Huel    makenzie@blandathiel.biz    \N    Oman    Lake Lenora    32930 Rubie Estate    91535-0989    Idaho    2016-09-11 15:47:07.815854    2016-10-14 13:03:08.164616        \N    \N    \N    0    \N    \N    \N    \N    male
18156    Estella    Blanda    raven_christiansen@predovic.co    \N    Montenegro    Krishaven    37387 Stamm Walks    38297-7435    Idaho    2016-08-01 00:10:07.150461    2016-10-14 13:03:08.169809        \N    \N    \N    0    \N    \N    \N    \N    female
18157    Elta    Armstrong    pearline.gottlieb@parisian.biz    \N    Yemen    Sipesburgh    76260 Hackett Landing    30794    Oklahoma    2016-08-20 21:47:15.000736    2016-10-14 13:03:08.175554        \N    \N    \N    0    \N    \N    \N    \N    male
18158    Reyna    Ritchie    joanny@koepp.org    \N    Saint Lucia    Vonstad    161 Mckayla Ridge    96967    Delaware    2016-08-10 03:41:45.966703    2016-10-14 13:03:08.181527        \N    \N    \N    0    \N    \N    \N    \N    female
18160    Johann    Heathcote    dillon.bahringer@grantheidenreich.org    \N    Aruba    Lake Alvishaven    7917 Kuhn Fall    43214    Vermont    2016-07-10 12:43:55.286577    2016-10-14 13:03:08.18698        \N    \N    \N    0    \N    \N    \N    \N    female
18161    Sandra    Romaguera    riley@stiedemann.io    \N    Monaco    North Ozzie    4490 Sigmund Village    21597-2251    Minnesota    2016-07-26 01:37:45.068235    2016-10-14 13:03:08.192252        \N    \N    \N    0    \N    \N    \N    \N    male
18162    Jackie    Beahan    jay_greenholt@borermetz.org    \N    Gambia    East Reed    7375 Daniel Square    97315-3412    Texas    2016-09-22 20:11:17.914402    2016-10-14 13:03:08.196774        \N    \N    \N    0    \N    \N    \N    \N    female
18163    Noemie    Runte    nedra.walker@deckow.com    \N    Iceland    Whiteport    402 Mante Manors    85195-1353    Rhode Island    2016-09-22 03:42:26.599868    2016-10-14 13:03:08.202209        \N    \N    \N    0    \N    \N    \N    \N    female
18164    Naomie    Gusikowski    janae_heel@kirlingreen.name    \N    Guinea    West Britney    1192 Schamberger Mountains    94638    South Dakota    2016-08-09 18:34:57.077757    2016-10-14 13:03:08.207507        \N    \N    \N    0    \N    \N    \N    \N    male
18165    Waino    Kris    warren@wizabuckridge.com    \N    Cayman Islands    Lake Shemar    987 Miguel Overpass    93846    Illinois    2016-07-16 18:25:44.837374    2016-10-14 13:03:08.212882        \N    \N    \N    0    \N    \N    \N    \N    female
18166    Lauren    Champlin    eusebio_hamill@wintheiser.org    \N    Christmas Island    Port Cooper    127 Brady Manor    54897-6002    Oregon    2016-07-19 11:29:35.364815    2016-10-14 13:03:08.217988        \N    \N    \N    0    \N    \N    \N    \N    male
18167    Jennifer    Paucek    johathan_padberg@oberbrunnerromaguera.org    \N    Cameroon    Lake Deanna    53387 Powlowski Flat    19066    Hawaii    2016-07-15 01:14:53.938457    2016-10-14 13:03:08.222729        \N    \N    \N    0    \N    \N    \N    \N    male
18168    Dianna    Hartmann    verla@goyette.biz    \N    Seychelles    New Leonard    93328 Rick Ways    71417-7052    Delaware    2016-07-11 14:46:24.470197    2016-10-14 13:03:08.227476        \N    \N    \N    0    \N    \N    \N    \N    male
18169    Margot    Lockman    pete.eichmann@hillshills.org    \N    Portugal    Koelpinbury    47291 Chadrick Mill    82055    Hawaii    2016-07-14 16:20:35.313225    2016-10-14 13:03:08.232162        \N    \N    \N    0    \N    \N    \N    \N    female
18170    Anissa    Paucek    baylee.murphy@turcottetrantow.io    \N    United States Minor Outlying Islands    Brianhaven    8070 Abernathy Dam    31175-6992    Minnesota    2016-09-03 00:34:50.348466    2016-10-14 13:03:08.237254        \N    \N    \N    0    \N    \N    \N    \N    male
18171    Joel    Toy    justice_romaguera@haleystokes.co    \N    Reunion    New Otha    243 Skylar Shoal    77587    Hawaii    2016-08-06 11:14:04.156457    2016-10-14 13:03:08.242836        \N    \N    \N    0    \N    \N    \N    \N    male
18172    Jarvis    Walker    reece.treutel@mcglynnmarks.biz    \N    Philippines    Jamisonside    750 Rohan Land    56616    Washington    2016-09-08 16:55:09.17361    2016-10-14 13:03:08.247954        \N    \N    \N    0    \N    \N    \N    \N    male
18173    Rocky    Orn    hulda@hansengleason.biz    \N    Niger    Rileyhaven    4969 Feil Hill    68279-3479    Tennessee    2016-09-21 07:47:40.967651    2016-10-14 13:03:08.252589        \N    \N    \N    0    \N    \N    \N    \N    male
18174    Arturo    O'Conner    haleigh_gislason@borerturcotte.biz    \N    Iraq    Romaguerashire    7369 Collier Corners    15582    California    2016-08-15 21:56:53.518781    2016-10-14 13:03:08.25733        \N    \N    \N    0    \N    \N    \N    \N    male
18175    Christa    Langworth    eryn@pagac.org    \N    Bouvet Island (Bouvetoya)    New Verla    74992 Gia Knolls    83180-5616    Nebraska    2016-09-16 20:01:02.146427    2016-10-14 13:03:08.261707        \N    \N    \N    0    \N    \N    \N    \N    male
18176    Melissa    Dickinson    joan@botsford.biz    \N    Lebanon    O'Konside    86566 Fermin Crest    72980    Connecticut    2016-09-05 14:52:21.649343    2016-10-14 13:03:08.26641        \N    \N    \N    0    \N    \N    \N    \N    male
18177    Kiara    Borer    meggie_grady@braun.org    \N    Kuwait    Jacobsmouth    44660 Ardith Rest    58070    Delaware    2016-09-25 17:14:26.426326    2016-10-14 13:03:08.271537        \N    \N    \N    0    \N    \N    \N    \N    female
18178    Domenica    Toy    grace@emardcummings.net    \N    Brazil    Mariahport    6088 Odell Ridge    25083    Alabama    2016-07-13 14:12:23.137639    2016-10-14 13:03:08.277591        \N    \N    \N    0    \N    \N    \N    \N    female
18179    Casey    Mueller    vernie.goyette@wuckert.info    \N    Pitcairn Islands    Lake Lloydburgh    34159 Gavin Mills    53606    Texas    2016-08-31 02:10:02.276015    2016-10-14 13:03:08.282104        \N    \N    \N    0    \N    \N    \N    \N    male
18180    Lafayette    Cormier    janet_osinski@anderson.net    \N    Indonesia    Greenstad    18540 Gayle Harbors    19497    Ohio    2016-08-16 12:22:23.574102    2016-10-14 13:03:08.28708        \N    \N    \N    0    \N    \N    \N    \N    male
18181    Elizabeth    McDermott    jadon.littel@pacocha.net    \N    Sao Tome and Principe    Heaneytown    2573 Thompson Track    43845-6216    Tennessee    2016-08-01 07:41:57.487785    2016-10-14 13:03:08.291562        \N    \N    \N    0    \N    \N    \N    \N    female
18182    Anastacio    Kohler    alia@donnellymetz.co    \N    Saint Martin    Tommiehaven    9575 Mitchel Brook    81500-2292    Nebraska    2016-07-12 12:12:41.813157    2016-10-14 13:03:08.296169        \N    \N    \N    0    \N    \N    \N    \N    male
18183    Macie    Wyman    catherine.tillman@rutherfordcrooks.io    \N    Czech Republic    Marleyburgh    908 Stamm Glen    19293    South Carolina    2016-07-25 17:21:41.621698    2016-10-14 13:03:08.301623        \N    \N    \N    0    \N    \N    \N    \N    female
18184    Diego    Sanford    zoey@mcglynn.biz    \N    Sao Tome and Principe    North Terranceville    88579 Evelyn Mall    17469-4883    Arkansas    2016-08-27 13:14:35.978779    2016-10-14 13:03:08.30581        \N    \N    \N    0    \N    \N    \N    \N    male
18186    Horacio    Rolfson    tara@fay.biz    \N    Jamaica    East Lilliestad    8803 Moen Rapid    11759-4276    New Hampshire    2016-07-07 09:09:28.461567    2016-10-14 13:03:08.316135        \N    \N    \N    0    \N    \N    \N    \N    female
18187    Cordie    DuBuque    devon@crona.co    \N    Slovakia (Slovak Republic)    Davonmouth    811 Buckridge Place    24454-2755    Missouri    2016-08-09 20:39:10.3747    2016-10-14 13:03:08.322158        \N    \N    \N    0    \N    \N    \N    \N    male
18188    Grady    Spinka    arden_hahn@dooley.com    \N    Wallis and Futuna    New Demarioside    58842 Hane Parks    89856    North Carolina    2016-07-18 20:23:39.082433    2016-10-14 13:03:08.326396        \N    \N    \N    0    \N    \N    \N    \N    female
18189    Anjali    Rogahn    cheyanne.kulas@kirlin.io    \N    Hong Kong    New Gerald    73418 Brett View    10037-4239    New Jersey    2016-09-23 19:48:44.230855    2016-10-14 13:03:08.330614        \N    \N    \N    0    \N    \N    \N    \N    male
18190    Austyn    Koss    roslyn.goyette@moenleuschke.name    \N    Iran    East Lyda    9531 Ines Harbors    80306-1453    New Mexico    2016-06-26 12:08:37.866962    2016-10-14 13:03:08.334842        \N    \N    \N    0    \N    \N    \N    \N    female
18191    Lillian    Little    kaela.zulauf@stamm.info    \N    El Salvador    North Kaci    2753 Gutkowski Mill    23061    Virginia    2016-08-24 16:35:23.386994    2016-10-14 13:03:08.342347        \N    \N    \N    0    \N    \N    \N    \N    male
18192    Treva    Rohan    gerardo@walshnikolaus.com    \N    Nepal    Anselfurt    5595 Wintheiser Lakes    18914    Montana    2016-08-01 03:16:27.619799    2016-10-14 13:03:08.348326        \N    \N    \N    0    \N    \N    \N    \N    female
18193    Pattie    Okuneva    jimmy@smith.co    \N    United States Minor Outlying Islands    North Missouritown    99289 Lehner Canyon    74157    Illinois    2016-08-05 02:43:07.905911    2016-10-14 13:03:08.353219        \N    \N    \N    0    \N    \N    \N    \N    female
18194    Jessie    Bashirian    jed@white.info    \N    Sri Lanka    North Janiya    39909 Feeney Greens    42591    New Jersey    2016-08-19 06:24:31.727417    2016-10-14 13:03:08.357717        \N    \N    \N    0    \N    \N    \N    \N    male
18195    Gino    Collins    sheridan_walter@blandawisoky.net    \N    Azerbaijan    East Florine    65559 Harber Knolls    78199    South Dakota    2016-09-08 19:36:52.146502    2016-10-14 13:03:08.362316        \N    \N    \N    0    \N    \N    \N    \N    male
18196    Aliza    Reynolds    bud.pacocha@lynch.com    \N    Malta    Lake Lylamouth    929 D'Amore Prairie    74332    Montana    2016-07-06 16:04:34.17699    2016-10-14 13:03:08.3667        \N    \N    \N    0    \N    \N    \N    \N    male
18197    Erwin    Kshlerin    jarvis_weimann@damore.com    \N    Martinique    South Cristal    46586 Javonte Divide    34505    Illinois    2016-08-05 07:57:03.059624    2016-10-14 13:03:08.371749        \N    \N    \N    0    \N    \N    \N    \N    male
18198    Cornelius    Ratke    audreanne.sanford@mcclure.name    \N    Sri Lanka    East Yoshikochester    3350 Morissette Mountain    27466    New Jersey    2016-09-11 04:49:35.638465    2016-10-14 13:03:08.376594        \N    \N    \N    0    \N    \N    \N    \N    male
18199    Gracie    Schneider    asa@schulist.org    \N    Sweden    Christinamouth    5634 Weissnat Knoll    59890    South Dakota    2016-08-03 10:16:33.01754    2016-10-14 13:03:08.38179        \N    \N    \N    0    \N    \N    \N    \N    female
18200    Toby    Grant    freeda@wintheiserparisian.co    \N    Sri Lanka    East Tatyana    40945 Angus Drive    74184    North Carolina    2016-09-23 08:53:08.61507    2016-10-14 13:03:08.386591        \N    \N    \N    0    \N    \N    \N    \N    female
18201    Kamille    Haag    myron.treutel@rippin.info    \N    Colombia    Branttown    3775 Conroy Mills    74120    Arizona    2016-07-11 04:22:16.561049    2016-10-14 13:03:08.39133        \N    \N    \N    0    \N    \N    \N    \N    male
18202    Claudie    Hilpert    kyra.fahey@cummerata.com    \N    Syrian Arab Republic    Elodymouth    368 Alessia Tunnel    21620-5479    Kansas    2016-08-03 20:31:32.568838    2016-10-14 13:03:08.396019        \N    \N    \N    0    \N    \N    \N    \N    female
18203    Helen    Pouros    alphonso@thompson.org    \N    Oman    Marquardtbury    1741 Gail Rest    63269-2636    West Virginia    2016-08-10 04:19:55.494503    2016-10-14 13:03:08.40245        \N    \N    \N    0    \N    \N    \N    \N    female
18204    Norene    Kilback    salvatore.terry@vandervortjenkins.io    \N    Lithuania    Port Haven    66616 Raphaelle Alley    54777    Utah    2016-09-25 17:12:29.457982    2016-10-14 13:03:08.407141        \N    \N    \N    0    \N    \N    \N    \N    male
18206    Dillan    Skiles    aglae.bradtke@kihnhartmann.info    \N    Sierra Leone    New Verner    20028 Dare Inlet    16857    Kentucky    2016-09-16 21:05:46.168987    2016-10-14 13:03:08.41713        \N    \N    \N    0    \N    \N    \N    \N    male
18207    Zion    Bechtelar    lea_stoltenberg@romaguerabotsford.co    \N    Isle of Man    Augustinefurt    2493 Medhurst Drive    10470    Nebraska    2016-09-20 03:29:25.911161    2016-10-14 13:03:08.421877        \N    \N    \N    0    \N    \N    \N    \N    female
18208    Magnus    Miller    zola@nitzsche.org    \N    Senegal    Durganborough    302 Quinton Ville    89756    Vermont    2016-08-06 13:32:08.574299    2016-10-14 13:03:08.426545        \N    \N    \N    0    \N    \N    \N    \N    male
18209    Morris    Larkin    lora_braun@grimes.biz    \N    Brunei Darussalam    Abrahamberg    146 Gulgowski Loaf    33435    Virginia    2016-09-11 01:53:11.530802    2016-10-14 13:03:08.431012        \N    \N    \N    0    \N    \N    \N    \N    male
18210    Vallie    Kuhlman    devin.bernier@tillman.name    \N    Syrian Arab Republic    Vladimirview    378 Kylie Groves    19899-4030    Illinois    2016-07-01 23:27:49.499907    2016-10-14 13:03:08.435046        \N    \N    \N    0    \N    \N    \N    \N    female
18211    Jayden    Spencer    cierra.ko@gusikowski.info    \N    Bosnia and Herzegovina    Rempelbury    4489 Daron Throughway    24311    Georgia    2016-07-26 19:43:12.81625    2016-10-14 13:03:08.438908        \N    \N    \N    0    \N    \N    \N    \N    female
18212    Forest    Towne    tia@stokes.co    \N    Virgin Islands, British    Kassulkeside    33547 Chesley Junction    46598-9436    Wyoming    2016-08-23 19:14:51.955468    2016-10-14 13:03:08.445916        \N    \N    \N    0    \N    \N    \N    \N    male
18353    Lavern    Nikolaus    roie@heathcote.net    \N    Myanmar    West Tomasastad    31191 Dawn Spur    69969-4558    Utah    2016-07-06 21:29:13.130689    2016-10-14 13:03:09.118013        \N    \N    \N    0    \N    \N    \N    \N    female
18213    Brigitte    Littel    landen@dibbertmertz.info    \N    Tokelau    Cummingsshire    25886 Flo Mountains    98870-9756    Minnesota    2016-08-10 16:09:22.128661    2016-10-14 13:03:08.450192        \N    \N    \N    0    \N    \N    \N    \N    male
18214    Abdiel    Von    millie@mayert.name    \N    Tonga    South Jabari    230 Daniel Neck    36779-5229    Vermont    2016-09-12 13:03:43.835141    2016-10-14 13:03:08.454678        \N    \N    \N    0    \N    \N    \N    \N    male
18215    Christa    Powlowski    isac@haley.com    \N    United States Minor Outlying Islands    Boyerburgh    90441 Mackenzie Street    10714    New Mexico    2016-07-26 00:26:20.954379    2016-10-14 13:03:08.4593        \N    \N    \N    0    \N    \N    \N    \N    female
18217    Ellie    Lakin    zula@kreiger.co    \N    Albania    New Justynview    913 Clifford Alley    18270-1230    Kansas    2016-09-14 12:20:09.817475    2016-10-14 13:03:08.464463        \N    \N    \N    0    \N    \N    \N    \N    female
18218    Ernie    Considine    estell@walker.com    \N    Zimbabwe    Port Esperanza    1033 Neva Grove    53000-6875    New Mexico    2016-09-22 15:41:35.165537    2016-10-14 13:03:08.469086        \N    \N    \N    0    \N    \N    \N    \N    male
18219    Ashlee    Heaney    caleb@grimesbotsford.net    \N    Central African Republic    Kingville    4304 Nova Crescent    11776    Maine    2016-08-12 19:35:04.135424    2016-10-14 13:03:08.47383        \N    \N    \N    0    \N    \N    \N    \N    female
18220    Hortense    D'Amore    wendy_auer@bauch.net    \N    Mauritania    Ondrickaburgh    46044 Mayer Row    56379-5310    Utah    2016-09-01 23:02:32.24064    2016-10-14 13:03:08.478374        \N    \N    \N    0    \N    \N    \N    \N    female
18221    Alfredo    Flatley    otis@hodkiewicz.biz    \N    Marshall Islands    Port Jammieland    51132 Verona Union    62853-7043    Virginia    2016-09-10 05:26:02.719391    2016-10-14 13:03:08.482672        \N    \N    \N    0    \N    \N    \N    \N    female
18222    Reyes    Monahan    freeman_pfannerstill@terrycole.co    \N    Canada    Elfriedatown    8570 Kessler Avenue    33855    Rhode Island    2016-09-18 08:27:51.553592    2016-10-14 13:03:08.487068        \N    \N    \N    0    \N    \N    \N    \N    female
18223    Brice    Stark    korbin@bechtelar.co    \N    Saint Martin    McDermottside    420 Twila Crossroad    92401    Colorado    2016-07-08 23:04:03.487104    2016-10-14 13:03:08.491506        \N    \N    \N    0    \N    \N    \N    \N    male
18224    Dakota    Cremin    georgianna.leannon@kutchfriesen.biz    \N    India    Lake Rickberg    6766 Cecile Summit    70738    Montana    2016-08-12 15:53:27.321282    2016-10-14 13:03:08.495673        \N    \N    \N    0    \N    \N    \N    \N    female
18225    Jamison    Reynolds    lucy.murazik@keebler.org    \N    Angola    Claytown    4958 Lora Hills    74149-7993    Wisconsin    2016-07-31 02:28:17.29752    2016-10-14 13:03:08.500429        \N    \N    \N    0    \N    \N    \N    \N    female
18226    Al    Kunze    diamond@dibbertebert.org    \N    Dominica    West Autumn    1259 Angel Fork    84674-6378    North Carolina    2016-07-30 09:54:32.173862    2016-10-14 13:03:08.504736        \N    \N    \N    0    \N    \N    \N    \N    male
18227    Mario    Bahringer    jarvis@oberbrunner.biz    \N    Libyan Arab Jamahiriya    New Onachester    47474 Jacobs Glen    75318    New Mexico    2016-06-29 08:51:21.702862    2016-10-14 13:03:08.509082        \N    \N    \N    0    \N    \N    \N    \N    male
18228    Emmitt    Ankunding    kristin@flatleyoconnell.org    \N    New Zealand    South Peter    75588 Russel Viaduct    28845-7703    Iowa    2016-08-02 19:18:07.59268    2016-10-14 13:03:08.513023        \N    \N    \N    0    \N    \N    \N    \N    female
18229    Lacy    McClure    elvis@sporer.net    \N    Saint Martin    Lake Icie    2781 Ines Flats    28713-1539    Alaska    2016-09-12 03:09:45.369225    2016-10-14 13:03:08.517179        \N    \N    \N    0    \N    \N    \N    \N    male
18230    Kaela    Towne    brycen@goldner.io    \N    South Africa    Hartmannville    98320 Verdie Court    18544    Oregon    2016-08-15 14:11:37.532787    2016-10-14 13:03:08.521581        \N    \N    \N    0    \N    \N    \N    \N    female
18231    Jacynthe    Spencer    mireya_leffler@rohan.info    \N    Pakistan    New Marietta    8022 Carter Centers    12156    Oregon    2016-07-30 20:39:39.699361    2016-10-14 13:03:08.529864        \N    \N    \N    0    \N    \N    \N    \N    male
18232    Leslie    Kilback    albina@schultz.org    \N    Malta    Cassandrachester    928 Lockman Park    45409-1932    Nevada    2016-07-28 12:55:12.677445    2016-10-14 13:03:08.534111        \N    \N    \N    0    \N    \N    \N    \N    female
18233    Theresa    Reichel    mollie_predovic@nicolasbrekke.com    \N    Lesotho    Raleighbury    81661 Gibson Rapids    71122-1758    Missouri    2016-06-29 13:38:54.993286    2016-10-14 13:03:08.538512        \N    \N    \N    0    \N    \N    \N    \N    male
18234    Eugenia    Lesch    carole_zemlak@okuneva.info    \N    Reunion    Bernierton    3397 Treutel Square    83586-5700    Virginia    2016-07-15 03:20:27.082249    2016-10-14 13:03:08.543009        \N    \N    \N    0    \N    \N    \N    \N    male
18235    Ceasar    Kuhlman    jayme.little@gutmanntreutel.com    \N    Pakistan    Townemouth    43340 Emilia Throughway    25823    West Virginia    2016-08-15 17:51:24.145062    2016-10-14 13:03:08.54992        \N    \N    \N    0    \N    \N    \N    \N    male
18236    Marjory    Weber    kennith.tromp@lockman.io    \N    Colombia    East Anthony    4696 Maxie Plaza    70290-2991    Delaware    2016-09-27 02:39:50.650139    2016-10-14 13:03:08.556287        \N    \N    \N    0    \N    \N    \N    \N    female
18237    Weston    Kunze    nyasia.reichert@wiegand.name    \N    Saint Vincent and the Grenadines    Daronhaven    12608 Price Rest    64248    Mississippi    2016-06-27 16:55:52.398275    2016-10-14 13:03:08.561767        \N    \N    \N    0    \N    \N    \N    \N    male
18238    Johnpaul    Dooley    preston.kris@abbott.info    \N    Turks and Caicos Islands    South Maybell    10382 Daniella Roads    61837    South Dakota    2016-08-26 19:30:13.716156    2016-10-14 13:03:08.56629        \N    \N    \N    0    \N    \N    \N    \N    male
18239    Zelma    Schuster    angel@fadel.info    \N    Aruba    Lake Bennett    5286 Kacie Ferry    80711-8930    Nevada    2016-08-19 13:35:39.969151    2016-10-14 13:03:08.570502        \N    \N    \N    0    \N    \N    \N    \N    female
18240    Orville    Cremin    maegan@gottliebgraham.org    \N    Iceland    Monahanton    44862 Domenico Passage    77415    Kentucky    2016-09-17 08:25:02.624284    2016-10-14 13:03:08.575144        \N    \N    \N    0    \N    \N    \N    \N    female
18241    Valentina    Blick    emanuel@schmeler.io    \N    Faroe Islands    Doylemouth    173 Herminio Hills    11618    Washington    2016-08-28 06:44:14.462626    2016-10-14 13:03:08.580292        \N    \N    \N    0    \N    \N    \N    \N    female
18242    Charlotte    Stoltenberg    daphne_paucek@mitchell.co    \N    Norway    East Katrina    37629 Gorczany Trafficway    93430-9862    Nevada    2016-08-19 01:30:14.581951    2016-10-14 13:03:08.584548        \N    \N    \N    0    \N    \N    \N    \N    male
18243    Edison    Mosciski    lance.keebler@kshlerin.net    \N    United Kingdom    South Meghan    252 Swaniawski Burgs    47295-5543    Mississippi    2016-08-30 21:25:26.796911    2016-10-14 13:03:08.588794        \N    \N    \N    0    \N    \N    \N    \N    male
18244    Marion    Donnelly    kendall.stracke@corwin.org    \N    Jordan    Runolfsdottirtown    17850 Earnestine Villages    53317    Ohio    2016-09-01 17:17:17.405961    2016-10-14 13:03:08.593071        \N    \N    \N    0    \N    \N    \N    \N    male
18245    Christina    Stanton    karlee@bayertowne.net    \N    Monaco    East Arlene    14207 Gerda Burg    17507    Washington    2016-08-31 14:57:56.894188    2016-10-14 13:03:08.597097        \N    \N    \N    0    \N    \N    \N    \N    male
18246    Kamryn    Crist    theresia.abshire@tillman.net    \N    Sudan    Aleenville    87851 Frida Forest    84610    New York    2016-09-02 18:30:31.116356    2016-10-14 13:03:08.601407        \N    \N    \N    0    \N    \N    \N    \N    female
18247    Dante    DuBuque    ferne.abshire@beierbreitenberg.co    \N    Uruguay    Ernietown    762 Tavares Radial    41123    Colorado    2016-09-26 11:40:29.457799    2016-10-14 13:03:08.606265        \N    \N    \N    0    \N    \N    \N    \N    male
18248    Reginald    Goodwin    dovie.tromp@schuppe.io    \N    Turkmenistan    Prohaskaside    39203 Mallie Drives    91612-6295    New Mexico    2016-07-26 20:59:57.58344    2016-10-14 13:03:08.610265        \N    \N    \N    0    \N    \N    \N    \N    female
18249    Augustine    Franecki    kenyatta_tremblay@baumbach.io    \N    Myanmar    Port Ericka    170 Chadd Walks    18707-9159    New Hampshire    2016-08-22 14:15:42.400908    2016-10-14 13:03:08.614558        \N    \N    \N    0    \N    \N    \N    \N    female
18250    Camille    Kuhlman    demond_harris@considinehahn.biz    \N    Guadeloupe    New Alvatown    75966 Ward Divide    44198-5453    Washington    2016-08-09 17:11:25.224738    2016-10-14 13:03:08.619116        \N    \N    \N    0    \N    \N    \N    \N    female
18251    Alyson    Harber    claud@koch.biz    \N    Guinea    Lake Lelahport    48114 Christina Land    32114    Idaho    2016-08-07 16:57:37.053681    2016-10-14 13:03:08.623772        \N    \N    \N    0    \N    \N    \N    \N    male
18252    Piper    Lubowitz    camilla.ruel@dietrichnicolas.name    \N    Solomon Islands    South Larrymouth    453 Baylee Shoals    92968    Nevada    2016-08-04 20:58:58.06702    2016-10-14 13:03:08.628126        \N    \N    \N    0    \N    \N    \N    \N    male
18253    Forest    Oberbrunner    cletus@ruecker.io    \N    American Samoa    Lake Agustinberg    174 Kenny Shores    89786-9548    Mississippi    2016-08-26 16:46:04.882862    2016-10-14 13:03:08.632153        \N    \N    \N    0    \N    \N    \N    \N    female
18254    Marion    Kovacek    kaitlin.hilpert@stokes.name    \N    Guyana    Lake Hollisland    18274 Hildegard Courts    24939-9523    Rhode Island    2016-08-10 14:33:04.561087    2016-10-14 13:03:08.636301        \N    \N    \N    0    \N    \N    \N    \N    female
18255    Clovis    Lind    barry@terry.net    \N    Iran    Port Raymond    496 Skiles Haven    52974    Washington    2016-08-17 11:06:30.214389    2016-10-14 13:03:08.640762        \N    \N    \N    0    \N    \N    \N    \N    female
18256    Louisa    Satterfield    josefina_deckow@rowebaumbach.biz    \N    Netherlands Antilles    Lake Herbert    9938 Konopelski Lodge    28197-0923    South Dakota    2016-08-04 10:20:55.220805    2016-10-14 13:03:08.645938        \N    \N    \N    0    \N    \N    \N    \N    female
18257    Frank    Pollich    elenora_hand@mohr.info    \N    Christmas Island    Gudrunhaven    9790 Beier Route    94730-7400    Indiana    2016-07-13 17:50:27.802026    2016-10-14 13:03:08.650051        \N    \N    \N    0    \N    \N    \N    \N    male
18258    Leon    Hilll    van.bosco@okuneva.com    \N    Republic of Korea    Ovaberg    7313 Jerde Port    98279-5093    North Dakota    2016-09-21 11:49:48.521076    2016-10-14 13:03:08.654124        \N    \N    \N    0    \N    \N    \N    \N    male
18259    Zack    Haley    hulda_carroll@schimmelkris.co    \N    Christmas Island    New Asa    6838 Sherwood Parkways    89668    New Jersey    2016-08-23 08:06:35.801833    2016-10-14 13:03:08.658573        \N    \N    \N    0    \N    \N    \N    \N    male
18260    Nannie    Corwin    brandy_adams@browngusikowski.co    \N    Saint Helena    New Alizeborough    42183 Saul Green    65090    Tennessee    2016-09-24 17:10:44.158835    2016-10-14 13:03:08.663129        \N    \N    \N    0    \N    \N    \N    \N    male
18261    Leda    Williamson    romaine.littel@runolfsdottirdamore.com    \N    Holy See (Vatican City State)    Medhurstfurt    298 Dax Coves    29594    Mississippi    2016-08-11 14:24:12.400035    2016-10-14 13:03:08.667377        \N    \N    \N    0    \N    \N    \N    \N    male
18262    Maurine    Brekke    lilyan_lynch@nolan.com    \N    Saint Vincent and the Grenadines    Kuhlmanchester    991 Quigley Stravenue    48273    South Dakota    2016-07-19 07:44:31.437674    2016-10-14 13:03:08.671776        \N    \N    \N    0    \N    \N    \N    \N    male
18263    Tressie    Grady    lucius.gleichner@krishills.info    \N    Cape Verde    South Cristobal    16245 Walker Forges    55115    Utah    2016-09-11 23:11:45.377816    2016-10-14 13:03:08.67658        \N    \N    \N    0    \N    \N    \N    \N    female
18264    Kavon    Parker    antonio@spencerbrekke.biz    \N    Kyrgyz Republic    New Jazmyn    85824 Sam Bypass    27891    Kentucky    2016-07-06 18:46:14.227442    2016-10-14 13:03:08.680821        \N    \N    \N    0    \N    \N    \N    \N    female
18216    Polly    Schultz    kaylee_lindgren@boyle.biz    \N    Jersey    Edytheshire    99629 Mya Cape    78770    Georgia    2016-09-28 00:05:36.569869    2016-10-14 13:03:08.684782        \N    \N    \N    0    \N    \N    \N    \N    female
18265    Oswaldo    Frami    justice.white@wiza.co    \N    American Samoa    West Fabianland    3355 Freeda Fork    14419-2818    New Hampshire    2016-07-11 22:30:30.580473    2016-10-14 13:03:08.688967        \N    \N    \N    0    \N    \N    \N    \N    female
18266    Rosendo    Cronin    stephon@rempel.io    \N    Micronesia    Larsonhaven    3637 Guillermo Ways    77531-0165    Colorado    2016-08-29 14:39:35.135625    2016-10-14 13:03:08.69321        \N    \N    \N    0    \N    \N    \N    \N    female
18267    Cheyanne    Davis    german@mcglynn.name    \N    Lao People's Democratic Republic    New Kenyattashire    926 Rolfson Motorway    20238    Pennsylvania    2016-09-20 13:05:19.743442    2016-10-14 13:03:08.698036        \N    \N    \N    0    \N    \N    \N    \N    male
18268    Jennyfer    Reilly    neil@hellerhaag.io    \N    Marshall Islands    Edythefort    788 Garnett Trace    20555    Nevada    2016-07-13 13:16:40.786409    2016-10-14 13:03:08.705023        \N    \N    \N    0    \N    \N    \N    \N    female
18269    Ricardo    Goldner    miles@leuschke.net    \N    Azerbaijan    Karianeside    124 Sipes Common    54453    Arizona    2016-09-10 07:46:02.839811    2016-10-14 13:03:08.7099        \N    \N    \N    0    \N    \N    \N    \N    female
18270    Gabe    Veum    emmet_corwin@monahan.com    \N    Libyan Arab Jamahiriya    West Edwinville    43474 Dell Mill    82548    Oklahoma    2016-08-27 22:26:19.388939    2016-10-14 13:03:08.714414        \N    \N    \N    0    \N    \N    \N    \N    male
18316    Marilyne    Langosh    valentina.sanford@moenmoriette.net    \N    Congo    Smithamside    17232 Lueilwitz Light    78192-7173    Kansas    2016-09-11 09:38:25.489341    2016-10-14 13:03:08.725898        \N    \N    \N    0    \N    \N    \N    \N    male
18271    Izaiah    Leannon    mariano.shields@mccullough.com    \N    French Southern Territories    Lake Millerberg    130 Sanford Shoal    57533-6183    Maine    2016-08-22 16:09:16.753347    2016-10-14 13:03:08.734746        \N    \N    \N    0    \N    \N    \N    \N    male
18272    Chris    Balistreri    deshawn.doyle@schambergerledner.com    \N    United States Minor Outlying Islands    Oraport    68908 McDermott Ford    54137-0466    Rhode Island    2016-06-28 12:59:29.535268    2016-10-14 13:03:08.739856        \N    \N    \N    0    \N    \N    \N    \N    male
18273    Percival    Barrows    zola@streichquigley.name    \N    South Africa    Boylemouth    3648 Schumm Garden    41531-4602    Washington    2016-09-08 14:00:57.118484    2016-10-14 13:03:08.744622        \N    \N    \N    0    \N    \N    \N    \N    male
18274    Gino    Johns    jake.predovic@konopelski.name    \N    Sudan    Port Callie    3019 Nitzsche Ferry    98877-9306    Nebraska    2016-08-27 22:47:30.621234    2016-10-14 13:03:08.750192        \N    \N    \N    0    \N    \N    \N    \N    female
18275    Nelson    Hamill    lamont_spencer@ankunding.com    \N    Kenya    Schroederhaven    1071 Douglas Mews    31756-4156    Minnesota    2016-08-13 07:27:02.114194    2016-10-14 13:03:08.75546        \N    \N    \N    0    \N    \N    \N    \N    male
18276    Christiana    Reilly    ettie@schroeder.biz    \N    Moldova    Monahanfort    8363 Treutel Terrace    85608    Nebraska    2016-08-30 22:37:43.13401    2016-10-14 13:03:08.762079        \N    \N    \N    0    \N    \N    \N    \N    male
18277    Joshuah    Hintz    roscoe@cole.com    \N    United States Minor Outlying Islands    Miloside    12788 Carter Plaza    84216-4520    Oregon    2016-08-06 17:46:09.787562    2016-10-14 13:03:08.771985        \N    \N    \N    0    \N    \N    \N    \N    male
18278    Ellie    Tillman    jarvis@barrowscarroll.org    \N    Nepal    Corrinechester    3798 Bennie Ferry    41289    Virginia    2016-08-15 18:57:32.677236    2016-10-14 13:03:08.776564        \N    \N    \N    0    \N    \N    \N    \N    female
18279    Eda    Bernier    quinten@pfeffergoldner.io    \N    Jamaica    East Nora    1304 Runolfsdottir Crest    24799-8922    Oregon    2016-09-19 12:11:06.19526    2016-10-14 13:03:08.782004        \N    \N    \N    0    \N    \N    \N    \N    female
18280    Jerad    Bergnaum    winston.christiansen@koch.net    \N    Italy    South Daphney    37318 Bartell Trail    77869-7144    Virginia    2016-07-10 10:16:04.909223    2016-10-14 13:03:08.788252        \N    \N    \N    0    \N    \N    \N    \N    male
18281    Efren    Littel    janae_wilderman@jacobson.io    \N    Aruba    New Liliane    111 Oliver Street    65290    Oregon    2016-07-21 16:12:41.094008    2016-10-14 13:03:08.793196        \N    \N    \N    0    \N    \N    \N    \N    male
18282    Marlen    Dietrich    cedrick@homenickhagenes.co    \N    Pitcairn Islands    New Erwin    196 Nicolette Walks    88157-4654    Mississippi    2016-06-29 11:31:42.376659    2016-10-14 13:03:08.797619        \N    \N    \N    0    \N    \N    \N    \N    female
18283    Josiah    Herman    cierra@muellerkoelpin.biz    \N    Liechtenstein    North Anahiside    196 Ramon Pike    90577-7571    Iowa    2016-09-04 06:30:16.872726    2016-10-14 13:03:08.801826        \N    \N    \N    0    \N    \N    \N    \N    female
18284    Ethyl    Ernser    maynard.johnson@schillerohara.info    \N    Saint Pierre and Miquelon    West Claudeshire    7036 Kutch Brooks    93772    Nebraska    2016-08-28 11:00:00.512672    2016-10-14 13:03:08.805818        \N    \N    \N    0    \N    \N    \N    \N    male
18285    Celestine    Schumm    alejandra@hodkiewicz.co    \N    Germany    New Emmetburgh    163 Holly Road    98477-7632    Missouri    2016-08-14 12:15:18.471252    2016-10-14 13:03:08.809954        \N    \N    \N    0    \N    \N    \N    \N    female
18286    Murl    Lindgren    kaela@osinski.org    \N    Turkey    South Lauraland    9068 Pat Groves    43344    Massachusetts    2016-07-09 08:24:34.011585    2016-10-14 13:03:08.814623        \N    \N    \N    0    \N    \N    \N    \N    female
18287    Whitney    Reichel    cristobal@keeling.name    \N    Libyan Arab Jamahiriya    Reynoldsstad    712 Aufderhar Loop    78286-3647    Utah    2016-08-28 18:31:26.140127    2016-10-14 13:03:08.81941        \N    \N    \N    0    \N    \N    \N    \N    female
18288    Trace    Schuppe    syble_auer@deckow.org    \N    Eritrea    Devantehaven    63043 Elmore Mountain    50130    Florida    2016-08-30 23:43:15.89459    2016-10-14 13:03:08.824099        \N    \N    \N    0    \N    \N    \N    \N    female
18289    Mafalda    Kassulke    cooper@auer.co    \N    Grenada    Kovacekshire    55730 Glenna Mountain    84386-7643    Louisiana    2016-07-03 09:57:45.103954    2016-10-14 13:03:08.829142        \N    \N    \N    0    \N    \N    \N    \N    female
18290    Rylee    Dickinson    mark.huels@walkerweimann.org    \N    Kenya    North Tinaland    35229 Maggio Meadows    38538-2850    Ohio    2016-09-20 04:22:40.588583    2016-10-14 13:03:08.833945        \N    \N    \N    0    \N    \N    \N    \N    female
18291    Kathlyn    Lueilwitz    ramiro.schroeder@goodwin.name    \N    Lesotho    Wildermanborough    231 Nicolas Inlet    93123-1012    Kansas    2016-07-05 15:51:46.868236    2016-10-14 13:03:08.838805        \N    \N    \N    0    \N    \N    \N    \N    female
18292    Lilly    Parisian    andre@gleichner.name    \N    Switzerland    West Gabefurt    219 Eichmann Union    67544-9406    New Hampshire    2016-08-06 02:38:10.219185    2016-10-14 13:03:08.852404        \N    \N    \N    0    \N    \N    \N    \N    male
18293    Darron    Ortiz    alec_kiehn@kirlin.info    \N    Latvia    Port Freda    91208 Augustine Mission    88017    Georgia    2016-07-19 21:16:53.47696    2016-10-14 13:03:08.857382        \N    \N    \N    0    \N    \N    \N    \N    female
18294    Zoe    Hahn    isabell@barrows.biz    \N    Guernsey    South Destineehaven    4236 Abbie Mount    68552    Arkansas    2016-09-07 16:37:23.958724    2016-10-14 13:03:08.862194        \N    \N    \N    0    \N    \N    \N    \N    male
18295    Patsy    Herzog    brionna.bode@nienow.org    \N    Monaco    Andersonburgh    36324 Gleichner Lodge    99667    Montana    2016-08-16 20:15:37.481432    2016-10-14 13:03:08.866733        \N    \N    \N    0    \N    \N    \N    \N    female
18296    Kaylin    Hessel    kaya@weinat.org    \N    Liberia    New Skyla    2223 Gorczany Forges    51508    California    2016-07-10 19:25:32.603124    2016-10-14 13:03:08.871231        \N    \N    \N    0    \N    \N    \N    \N    male
18297    Gordon    Kilback    guy_thiel@collinsfeil.net    \N    Heard Island and McDonald Islands    North Tavares    6906 Catherine Canyon    57955    Nevada    2016-07-30 10:01:46.259686    2016-10-14 13:03:08.875852        \N    \N    \N    0    \N    \N    \N    \N    female
18298    Justina    Howe    ebba.wisozk@okuneva.co    \N    Malaysia    South Hettie    238 Oma Shore    85342    Arkansas    2016-08-23 15:22:20.305454    2016-10-14 13:03:08.879925        \N    \N    \N    0    \N    \N    \N    \N    male
18299    Khalid    Windler    ezequiel@schaden.net    \N    Oman    North Retafort    96241 Kuhlman Ridge    95235-8155    Hawaii    2016-08-16 21:38:36.793914    2016-10-14 13:03:08.88416        \N    \N    \N    0    \N    \N    \N    \N    female
18300    Prince    Swift    nola.streich@leffler.com    \N    Austria    North Sasha    14966 Schimmel Junctions    19606    West Virginia    2016-07-08 02:45:44.228126    2016-10-14 13:03:08.888207        \N    \N    \N    0    \N    \N    \N    \N    female
18302    Elissa    Beier    marilyne@goodwin.co    \N    Gibraltar    South Justenmouth    38686 Smitham Circle    24948    Arkansas    2016-08-24 10:00:25.791316    2016-10-14 13:03:08.892426        \N    \N    \N    0    \N    \N    \N    \N    female
18303    Abdiel    Gutkowski    eden_mcdermott@bogan.com    \N    Suriname    Zemlakmouth    56112 Deckow Prairie    70120-6219    Missouri    2016-08-25 10:09:44.864563    2016-10-14 13:03:08.896618        \N    \N    \N    0    \N    \N    \N    \N    male
18304    Jacky    Towne    kristofer@robertsheaney.info    \N    Palestinian Territory    South Milanburgh    440 Katrina Bridge    61592    Delaware    2016-08-22 20:54:56.903537    2016-10-14 13:03:08.900776        \N    \N    \N    0    \N    \N    \N    \N    female
18305    Leatha    Cremin    marion_rau@mitchell.name    \N    Chad    Stantonborough    507 Kessler Street    72252-5454    Hawaii    2016-08-11 19:50:07.324573    2016-10-14 13:03:08.905221        \N    \N    \N    0    \N    \N    \N    \N    male
18306    Beth    McLaughlin    sarah@gaylordhuels.org    \N    Austria    Blickview    954 Rolfson Garden    81757-3330    Wisconsin    2016-09-03 14:36:22.68567    2016-10-14 13:03:08.910013        \N    \N    \N    0    \N    \N    \N    \N    male
18307    Jarod    Kuhic    estrella.bailey@ohara.co    \N    Sierra Leone    New Kole    84856 Ashley Junction    55413    Oregon    2016-06-23 22:17:34.589544    2016-10-14 13:03:08.915282        \N    \N    \N    0    \N    \N    \N    \N    female
18308    Thora    Rice    ashley.swift@carrollreilly.org    \N    Tunisia    Vandervortfurt    155 Oberbrunner Wells    34744    Washington    2016-08-30 10:54:28.966748    2016-10-14 13:03:08.919915        \N    \N    \N    0    \N    \N    \N    \N    female
18309    Carmine    Kub    charley_marks@mohr.io    \N    Lithuania    North Keiraport    76359 Miller Groves    30694-3183    South Dakota    2016-07-27 11:45:46.828412    2016-10-14 13:03:08.925023        \N    \N    \N    0    \N    \N    \N    \N    male
18310    Arjun    Kunze    joesph_oconner@jacobi.io    \N    Bulgaria    East Faustoshire    387 Dibbert Flat    76171    South Carolina    2016-09-13 08:05:08.53376    2016-10-14 13:03:08.929752        \N    \N    \N    0    \N    \N    \N    \N    male
18311    Reina    Roberts    adell@casperbode.net    \N    Falkland Islands (Malvinas)    Dimitritown    590 Romaguera Road    17874-9390    Alaska    2016-09-01 10:32:08.982432    2016-10-14 13:03:08.934456        \N    \N    \N    0    \N    \N    \N    \N    male
18312    Monique    Lockman    kendrick.bailey@west.com    \N    Svalbard & Jan Mayen Islands    Joneshaven    515 Quinn Centers    24647    Alaska    2016-07-21 09:33:50.05323    2016-10-14 13:03:08.939583        \N    \N    \N    0    \N    \N    \N    \N    female
18313    Cassidy    Osinski    kiara_baumbach@kaulke.net    \N    Virgin Islands, British    Turcottebury    4909 Enrique Flats    20894    North Dakota    2016-07-03 00:15:57.250309    2016-10-14 13:03:08.944401        \N    \N    \N    0    \N    \N    \N    \N    female
18314    Madelyn    Feil    mohammed@welchfeest.org    \N    Malta    Wymantown    469 Mattie Plain    94140    Mississippi    2016-09-12 19:03:01.806654    2016-10-14 13:03:08.949163        \N    \N    \N    0    \N    \N    \N    \N    male
18317    Alberto    Huel    hayden.shields@ernsersmith.com    \N    Lithuania    South Percyton    90649 Andreane Stream    61642    Rhode Island    2016-08-21 20:54:17.266757    2016-10-14 13:03:08.953844        \N    \N    \N    0    \N    \N    \N    \N    female
18319    Rowena    Hettinger    lesley@kilbackwyman.biz    \N    Cyprus    New Chloe    815 Gilberto Light    90183    South Carolina    2016-08-30 07:17:56.717225    2016-10-14 13:03:08.958352        \N    \N    \N    0    \N    \N    \N    \N    female
18320    Diamond    Legros    bernard.stracke@goldnercrooks.net    \N    Iraq    Kilbackshire    626 Block Garden    13780    Delaware    2016-06-29 03:33:54.068012    2016-10-14 13:03:08.963185        \N    \N    \N    0    \N    \N    \N    \N    male
18321    Salvatore    Green    domingo@bartell.co    \N    Finland    West Gracieview    499 Eliseo Club    44517    New Jersey    2016-06-27 02:45:05.416763    2016-10-14 13:03:08.967979        \N    \N    \N    0    \N    \N    \N    \N    male
18322    Annetta    Rohan    sven@ernser.name    \N    Bouvet Island (Bouvetoya)    East Murphy    395 Lehner Gateway    20919    Pennsylvania    2016-07-11 11:34:02.164728    2016-10-14 13:03:08.972666        \N    \N    \N    0    \N    \N    \N    \N    female
18323    Glenda    Mitchell    eldridge@romaguera.io    \N    Spain    Toyfurt    60261 Johathan Common    30503    South Dakota    2016-07-09 05:09:09.728018    2016-10-14 13:03:08.977408        \N    \N    \N    0    \N    \N    \N    \N    female
18324    Eldon    Hirthe    mustafa@hartmannokuneva.biz    \N    Estonia    Hilperthaven    845 Nikolaus Courts    36269    Mississippi    2016-08-29 15:07:57.814432    2016-10-14 13:03:08.982116        \N    \N    \N    0    \N    \N    \N    \N    male
18325    Shany    Barton    reta@ruelpaucek.net    \N    Dominican Republic    Lake Buckport    8334 Volkman Park    21729-7451    Kentucky    2016-09-05 22:48:10.115558    2016-10-14 13:03:08.986839        \N    \N    \N    0    \N    \N    \N    \N    male
18326    Ella    Sipes    ignatius@nikolausoconnell.co    \N    Taiwan    Kautzerchester    73980 Rodriguez Springs    94964    Washington    2016-07-03 21:29:43.135488    2016-10-14 13:03:08.991609        \N    \N    \N    0    \N    \N    \N    \N    male
18327    Alice    Smitham    deja@schowalter.org    \N    Uzbekistan    Lake Helgaside    95353 Berry Mission    79899    South Carolina    2016-06-28 08:15:18.346979    2016-10-14 13:03:08.996519        \N    \N    \N    0    \N    \N    \N    \N    male
18328    Jayce    Gleason    karolann@west.org    \N    Tunisia    Lake Tatyanaview    27223 Romaguera Squares    83150    Mississippi    2016-09-07 13:14:13.021414    2016-10-14 13:03:09.001477        \N    \N    \N    0    \N    \N    \N    \N    female
18329    Giles    Terry    mylene.ritchie@cremin.net    \N    Puerto Rico    Greenholtland    2528 Fredrick Islands    50302    Colorado    2016-08-10 16:24:30.682943    2016-10-14 13:03:09.005899        \N    \N    \N    0    \N    \N    \N    \N    male
18330    Monserrat    Robel    carolanne.dooley@bartoletti.net    \N    Thailand    New Billy    7425 Jazmin Pines    65464-2330    Alaska    2016-08-31 06:19:37.636848    2016-10-14 13:03:09.010222        \N    \N    \N    0    \N    \N    \N    \N    female
18331    Shayne    Hartmann    ramona.hauck@blickcartwright.co    \N    Bhutan    West Lilianburgh    1994 Hermann Locks    75147-7463    Iowa    2016-08-17 02:21:46.669783    2016-10-14 13:03:09.015806        \N    \N    \N    0    \N    \N    \N    \N    female
18332    Selina    Volkman    raheem@nikolaus.co    \N    Indonesia    New Gracie    98968 German Mill    31303    North Dakota    2016-06-26 23:20:16.096308    2016-10-14 13:03:09.020166        \N    \N    \N    0    \N    \N    \N    \N    male
18333    Keshaun    Rogahn    felipa.watsica@kohermann.net    \N    American Samoa    Jazlynfurt    49715 Roberts Mountain    89355    New Mexico    2016-07-08 13:18:34.727909    2016-10-14 13:03:09.024471        \N    \N    \N    0    \N    \N    \N    \N    female
18334    Coy    Anderson    taryn_lebsack@weber.co    \N    Saint Helena    North Hattie    639 Garfield Course    59555-2978    Mississippi    2016-06-24 10:46:02.715347    2016-10-14 13:03:09.028856        \N    \N    \N    0    \N    \N    \N    \N    male
18335    Rico    Murray    brigitte_mraz@gleason.org    \N    Turkey    Willmsport    78910 Hills Field    86523-2652    Massachusetts    2016-07-28 00:25:13.448001    2016-10-14 13:03:09.03291        \N    \N    \N    0    \N    \N    \N    \N    female
18336    Nelle    Hilpert    jailyn_spinka@steuber.name    \N    Wallis and Futuna    Dejonland    18987 Hahn Port    16773    South Carolina    2016-08-19 13:57:56.28193    2016-10-14 13:03:09.036954        \N    \N    \N    0    \N    \N    \N    \N    male
18337    Kenyon    Kirlin    dedric@moore.info    \N    Central African Republic    Lafayettestad    375 Veum Ridges    87834-0353    South Dakota    2016-08-13 10:42:51.577938    2016-10-14 13:03:09.041303        \N    \N    \N    0    \N    \N    \N    \N    male
18338    Unique    Hirthe    bartholome.krajcik@bergnaum.biz    \N    Nauru    North Georgianafurt    154 Darrick Villages    93395-4598    South Dakota    2016-08-11 17:55:04.026597    2016-10-14 13:03:09.04586        \N    \N    \N    0    \N    \N    \N    \N    female
18339    Isai    Heaney    melvina_powlowski@mueller.co    \N    San Marino    Fayside    9367 Nicolas Ramp    72062    Washington    2016-08-14 17:40:13.106852    2016-10-14 13:03:09.050186        \N    \N    \N    0    \N    \N    \N    \N    male
18340    Alexis    West    myah_mertz@dickens.io    \N    Panama    Port Deion    557 Zack Coves    39381-8421    California    2016-09-05 11:04:20.87598    2016-10-14 13:03:09.055059        \N    \N    \N    0    \N    \N    \N    \N    female
18341    Reese    Medhurst    ronny.hagenes@emmerichmccullough.org    \N    Romania    Sydnieberg    298 Jeff Trail    85992    Idaho    2016-09-04 06:53:16.689754    2016-10-14 13:03:09.059831        \N    \N    \N    0    \N    \N    \N    \N    male
18342    Citlalli    Daniel    reta@beerlarson.co    \N    Netherlands Antilles    Percymouth    54180 Schuster Lane    57251    Arizona    2016-08-19 23:53:48.228904    2016-10-14 13:03:09.066349        \N    \N    \N    0    \N    \N    \N    \N    female
18343    Roberto    Hilll    cyril.langosh@hartmannfranecki.co    \N    Tonga    South Mckenzie    299 Blaze Turnpike    49135-6893    Indiana    2016-07-14 19:51:14.797339    2016-10-14 13:03:09.071131        \N    \N    \N    0    \N    \N    \N    \N    male
18344    Kiley    Lind    leann_schneider@jerdeturner.org    \N    Congo    Balistreriport    712 Kiehn Islands    97071    Arizona    2016-07-19 02:07:13.909495    2016-10-14 13:03:09.076294        \N    \N    \N    0    \N    \N    \N    \N    male
18345    Ezra    Tromp    gabrielle@torp.com    \N    Mali    New Hayden    35490 Rolfson Lakes    26047-3836    Michigan    2016-07-25 08:09:33.206077    2016-10-14 13:03:09.081188        \N    \N    \N    0    \N    \N    \N    \N    female
18346    Judah    Towne    cristal@stracke.co    \N    Peru    Gottliebfurt    8529 Marcus Fords    31614-5319    Iowa    2016-08-11 17:26:51.822614    2016-10-14 13:03:09.086098        \N    \N    \N    0    \N    \N    \N    \N    female
18347    Margret    Schmeler    florida@deckow.io    \N    Tunisia    Pacochashire    987 Gladys Bridge    43487-8118    Nevada    2016-07-30 04:17:59.862108    2016-10-14 13:03:09.091148        \N    \N    \N    0    \N    \N    \N    \N    female
18348    Virgie    Quigley    antonette@bogisich.co    \N    Uzbekistan    Ethashire    16490 Goldner Rapids    56884-1400    Vermont    2016-09-15 02:36:42.949881    2016-10-14 13:03:09.095862        \N    \N    \N    0    \N    \N    \N    \N    male
18349    Keenan    Bradtke    chesley@ebert.com    \N    Mexico    Celineside    6628 Powlowski Ferry    43408    Mississippi    2016-09-12 23:10:49.146495    2016-10-14 13:03:09.100537        \N    \N    \N    0    \N    \N    \N    \N    male
18350    Kayden    Nolan    haskell@balistreri.io    \N    Bulgaria    East Evalyn    909 Lea Springs    34371    Arizona    2016-09-18 11:35:05.291409    2016-10-14 13:03:09.105156        \N    \N    \N    0    \N    \N    \N    \N    female
18351    Chad    Block    cornelius@aufderhar.com    \N    Turkmenistan    Port Rebekafurt    711 Williamson Haven    38555-4623    Washington    2016-08-03 03:14:37.631639    2016-10-14 13:03:09.109791        \N    \N    \N    0    \N    \N    \N    \N    female
18352    Adrianna    Tremblay    dayton.fritsch@beahanbarrows.info    \N    United States Minor Outlying Islands    South Alyson    4717 Barton Centers    94065-5483    Montana    2016-08-30 20:28:34.50818    2016-10-14 13:03:09.11387        \N    \N    \N    0    \N    \N    \N    \N    male
18354    Ebba    Hoppe    maegan@kulasanderson.info    \N    Malawi    Taliaville    8598 Amira Glen    72051-4829    Idaho    2016-08-01 00:40:26.878998    2016-10-14 13:03:09.122352        \N    \N    \N    0    \N    \N    \N    \N    female
18355    Alexzander    Lemke    armando.feest@pfeffer.biz    \N    Albania    New Fletcher    5022 Mayer Stream    81564-3686    Delaware    2016-09-20 01:02:32.099412    2016-10-14 13:03:09.126664        \N    \N    \N    0    \N    \N    \N    \N    female
18356    Neal    Kohler    hellen@swiftwiza.biz    \N    Slovakia (Slovak Republic)    West Isom    2629 Onie Field    84664    Minnesota    2016-09-17 21:25:48.673806    2016-10-14 13:03:09.130694        \N    \N    \N    0    \N    \N    \N    \N    male
18357    Quinten    Terry    sienna@moriettehintz.org    \N    Venezuela    Caitlynside    359 Yundt Glens    62397    Iowa    2016-09-18 14:23:50.69463    2016-10-14 13:03:09.135153        \N    \N    \N    0    \N    \N    \N    \N    female
18358    Fanny    Jones    reie@king.io    \N    Benin    West Moniqueview    46089 Shanel Walk    99815    Wyoming    2016-07-14 17:02:44.298312    2016-10-14 13:03:09.139379        \N    \N    \N    0    \N    \N    \N    \N    female
18359    Tomasa    McGlynn    collin@daniel.info    \N    Iraq    Reginaldland    28490 Edison Mountains    71376-5347    California    2016-07-08 00:39:21.95777    2016-10-14 13:03:09.143962        \N    \N    \N    0    \N    \N    \N    \N    female
18360    Marianna    Hoeger    noel.denesik@romagueraboyer.info    \N    Cote d'Ivoire    Port Margeton    62081 Brain Haven    64062-6830    New York    2016-09-14 04:40:12.077604    2016-10-14 13:03:09.148408        \N    \N    \N    0    \N    \N    \N    \N    male
18361    Felicia    Bogisich    bradley_hermiston@mccullough.io    \N    United Kingdom    Wizaborough    62879 Schowalter Rue    33490    Alaska    2016-07-12 18:50:53.325129    2016-10-14 13:03:09.153391        \N    \N    \N    0    \N    \N    \N    \N    female
18362    Lolita    Swift    adelia_rath@bashirianschuppe.info    \N    Greece    Muellerfurt    5279 Nikita Overpass    29801    Louisiana    2016-08-21 03:39:01.820972    2016-10-14 13:03:09.157707        \N    \N    \N    0    \N    \N    \N    \N    male
18363    Howell    Ankunding    ernesto@murazik.io    \N    Suriname    Reynoldschester    418 Cassie Fort    47281    Mississippi    2016-06-25 08:20:02.02018    2016-10-14 13:03:09.162609        \N    \N    \N    0    \N    \N    \N    \N    male
18364    Humberto    Padberg    liliane@buckridge.io    \N    Grenada    Magnusberg    8105 Jacobi Vista    17016-9371    Arizona    2016-09-03 11:10:20.56516    2016-10-14 13:03:09.167442        \N    \N    \N    0    \N    \N    \N    \N    male
18365    Osvaldo    Wolf    cortney.gutmann@stiedemanndooley.name    \N    United Arab Emirates    Boyertown    445 Dewitt Fords    25210-6226    Idaho    2016-09-01 11:42:48.694738    2016-10-14 13:03:09.171803        \N    \N    \N    0    \N    \N    \N    \N    female
18367    Rickey    Jacobs    jace_rice@cartwrightstoltenberg.name    \N    New Caledonia    New Lucile    1111 Bradtke Stravenue    23103-3524    Iowa    2016-07-02 01:34:22.715464    2016-10-14 13:03:09.17598        \N    \N    \N    0    \N    \N    \N    \N    male
18368    Hazle    Satterfield    levi.hettinger@lehner.net    \N    Republic of Korea    South Ottilie    56075 Bartoletti Stream    95444-4582    Washington    2016-07-07 21:39:08.101978    2016-10-14 13:03:09.186153        \N    \N    \N    0    \N    \N    \N    \N    male
18369    Victoria    Reinger    gladyce@mcdermottheaney.name    \N    France    Colehaven    96069 Farrell Run    97772-5117    California    2016-07-23 13:53:06.329856    2016-10-14 13:03:09.190405        \N    \N    \N    0    \N    \N    \N    \N    male
18370    Mozelle    Bradtke    katelin@dietrich.com    \N    Albania    Harveyfurt    4156 Pansy Throughway    65088    Georgia    2016-06-27 16:45:52.253152    2016-10-14 13:03:09.195051        \N    \N    \N    0    \N    \N    \N    \N    female
18371    Elena    Klocko    rosario.dickinson@orn.name    \N    Senegal    South Ozzieborough    9774 Stiedemann Viaduct    59758-3308    Virginia    2016-07-27 01:23:58.657093    2016-10-14 13:03:09.199788        \N    \N    \N    0    \N    \N    \N    \N    female
18372    Pearline    Thiel    eve@murraysawayn.net    \N    Greece    East Madelynnland    2829 Lonnie Rapid    12344-4643    Arkansas    2016-09-15 01:23:51.3597    2016-10-14 13:03:09.205021        \N    \N    \N    0    \N    \N    \N    \N    female
18373    Seth    Brakus    jacquelyn_schaden@vandervort.org    \N    Venezuela    East Emmitt    8016 Smith Ramp    80606-3064    Maryland    2016-09-27 04:25:40.701691    2016-10-14 13:03:09.20991        \N    \N    \N    0    \N    \N    \N    \N    female
18374    Marcelino    Schmitt    may@uptontorphy.biz    \N    Pakistan    Lake Alverta    71399 Satterfield Square    71662    Illinois    2016-08-13 14:10:44.194152    2016-10-14 13:03:09.214647        \N    \N    \N    0    \N    \N    \N    \N    female
18375    Heber    Bergnaum    kelli_pouros@boyledooley.co    \N    San Marino    Pacochamouth    6543 Earnestine Plaza    95164-6864    Oklahoma    2016-08-03 03:07:39.541386    2016-10-14 13:03:09.218881        \N    \N    \N    0    \N    \N    \N    \N    male
18376    Lynn    Gottlieb    ciara@mante.io    \N    United Arab Emirates    Joanneborough    453 Tyree Ferry    68292-3899    Rhode Island    2016-09-03 04:35:19.648765    2016-10-14 13:03:09.223386        \N    \N    \N    0    \N    \N    \N    \N    female
18377    Emery    Harris    leola@stehrmoriette.info    \N    Guadeloupe    New Berylville    76682 Hickle Manor    29847    Minnesota    2016-09-05 03:09:34.127964    2016-10-14 13:03:09.228181        \N    \N    \N    0    \N    \N    \N    \N    male
18378    Nyah    Koelpin    august@emmerich.co    \N    Solomon Islands    Carmelobury    248 Leannon Wells    83036    Tennessee    2016-07-30 18:03:27.984925    2016-10-14 13:03:09.232882        \N    \N    \N    0    \N    \N    \N    \N    male
18379    Laurie    Ullrich    renee_bartoletti@lowe.com    \N    Sao Tome and Principe    Beermouth    706 Predovic Lake    40826    Iowa    2016-07-10 21:50:27.088987    2016-10-14 13:03:09.237698        \N    \N    \N    0    \N    \N    \N    \N    female
18381    Benny    VonRueden    lura@gleichnerwillms.io    \N    Netherlands Antilles    North Orafurt    844 Cartwright Mountain    46420    Illinois    2016-08-19 10:29:39.737462    2016-10-14 13:03:09.242986        \N    \N    \N    0    \N    \N    \N    \N    female
18382    Jacquelyn    Quitzon    evans@kuhlmanankunding.biz    \N    Bahrain    West Maymie    1497 Hahn Ridges    72473    Idaho    2016-09-07 04:18:33.184652    2016-10-14 13:03:09.24822        \N    \N    \N    0    \N    \N    \N    \N    female
18383    Ted    Kassulke    laria@cainjohns.net    \N    Pitcairn Islands    Schulistfort    627 Cremin Hollow    63394-5999    Delaware    2016-06-25 02:08:55.513993    2016-10-14 13:03:09.253139        \N    \N    \N    0    \N    \N    \N    \N    male
18384    Lessie    Graham    jammie.weber@barton.biz    \N    Congo    West Ryanmouth    320 Schumm Views    90058    Virginia    2016-07-31 06:34:06.34353    2016-10-14 13:03:09.260823        \N    \N    \N    0    \N    \N    \N    \N    female
18385    Amy    Fahey    adrain.willms@mohr.name    \N    El Salvador    East Rylee    95111 Stark Fords    91770-7101    South Carolina    2016-09-21 21:24:24.037254    2016-10-14 13:03:09.27342        \N    \N    \N    0    \N    \N    \N    \N    female
18386    Eliseo    Dietrich    jerry@okeefestoltenberg.org    \N    Lebanon    Kuphalfort    377 Lilly Roads    99647    Iowa    2016-08-16 16:22:26.038687    2016-10-14 13:03:09.280399        \N    \N    \N    0    \N    \N    \N    \N    male
18387    Antonette    Cole    daniela@botsfordlarson.biz    \N    Cuba    Misaelland    57899 Kohler Point    74556    North Carolina    2016-07-03 13:23:54.882246    2016-10-14 13:03:09.285529        \N    \N    \N    0    \N    \N    \N    \N    female
18388    Shyanne    Sanford    ariane@rippin.info    \N    Saudi Arabia    Port Edward    84588 Alexander Springs    33796-0830    Delaware    2016-08-24 19:12:39.858779    2016-10-14 13:03:09.290367        \N    \N    \N    0    \N    \N    \N    \N    male
18389    Eunice    Reilly    gage.rath@schneiderkovacek.net    \N    Saint Vincent and the Grenadines    Cameronville    37106 Hobart Lodge    70886-6844    Idaho    2016-07-22 18:04:55.474221    2016-10-14 13:03:09.295319        \N    \N    \N    0    \N    \N    \N    \N    male
18390    Kattie    Beatty    jaden@bradtke.co    \N    Tuvalu    South Alexandrinechester    1045 Harber Track    10988-9863    Louisiana    2016-06-30 13:22:13.846085    2016-10-14 13:03:09.30406        \N    \N    \N    0    \N    \N    \N    \N    female
18391    Issac    Dicki    arthur@doyle.com    \N    Pakistan    Port Sabrynabury    8975 Magnus Lake    36987    Virginia    2016-08-30 19:26:05.862752    2016-10-14 13:03:09.316007        \N    \N    \N    0    \N    \N    \N    \N    female
18392    Caleigh    Turner    ivy@miller.com    \N    Norfolk Island    Toyside    6026 Piper Harbor    19341    Alaska    2016-08-23 15:41:25.988857    2016-10-14 13:03:09.321352        \N    \N    \N    0    \N    \N    \N    \N    female
18393    Johathan    Daugherty    raegan_kemmer@kuvalis.com    \N    Poland    Vergieborough    577 Jaiden Hollow    74060-0512    Arizona    2016-08-10 01:43:20.494924    2016-10-14 13:03:09.326825        \N    \N    \N    0    \N    \N    \N    \N    male
18394    Annabell    Hirthe    marquise@mosciski.net    \N    Guernsey    Sporerside    97875 Charlotte Pike    36440-0305    Illinois    2016-07-15 08:08:31.635385    2016-10-14 13:03:09.332373        \N    \N    \N    0    \N    \N    \N    \N    female
18395    Winnifred    Ernser    blanca@fritsch.info    \N    Guinea-Bissau    Schulistfurt    872 Lehner Brooks    43090-6153    New Hampshire    2016-06-26 10:02:09.286665    2016-10-14 13:03:09.33756        \N    \N    \N    0    \N    \N    \N    \N    male
18397    Vivien    Ward    cecil_swift@beahan.io    \N    Liberia    Watsicafort    339 Bud Via    24868-6008    Oregon    2016-07-20 17:16:42.453577    2016-10-14 13:03:09.342468        \N    \N    \N    0    \N    \N    \N    \N    male
18398    Devonte    Bergstrom    kamryn.king@oberbrunner.info    \N    Bulgaria    Howardville    9124 Elroy Inlet    56667    Wyoming    2016-08-18 11:13:46.490804    2016-10-14 13:03:09.347399        \N    \N    \N    0    \N    \N    \N    \N    female
18399    Eveline    Lynch    kiley.nader@reynolds.net    \N    Vietnam    Lizafort    74523 Jerrod Mountains    84858-6335    Wyoming    2016-08-28 07:53:19.151437    2016-10-14 13:03:09.352061        \N    \N    \N    0    \N    \N    \N    \N    male
18400    Anika    Mertz    leta.satterfield@littel.co    \N    Djibouti    East Barrett    5641 Providenci Village    91360-2052    Kentucky    2016-08-28 22:55:50.492625    2016-10-14 13:03:09.356621        \N    \N    \N    0    \N    \N    \N    \N    male
18401    Aurore    Ziemann    tre.cremin@kautzer.org    \N    Kiribati    Bednarfurt    49636 Stanton Knolls    86346    Maine    2016-07-27 09:43:09.675312    2016-10-14 13:03:09.361108        \N    \N    \N    0    \N    \N    \N    \N    female
18402    Christa    Fisher    aubrey_willms@beahan.com    \N    Saint Pierre and Miquelon    Lake Corenehaven    3807 Waelchi Hill    15294    Michigan    2016-09-24 02:25:34.531094    2016-10-14 13:03:09.365752        \N    \N    \N    0    \N    \N    \N    \N    female
18403    Gerry    Pagac    ruben_bergnaum@doyle.info    \N    Burundi    New Audrey    268 Steuber Walk    52002    Colorado    2016-07-16 17:25:35.406232    2016-10-14 13:03:09.371839        \N    \N    \N    0    \N    \N    \N    \N    male
18404    Joyce    Bergstrom    muriel@weinat.org    \N    Benin    Mohrfurt    920 Alec Plaza    28534-1856    Maryland    2016-08-31 02:17:05.743446    2016-10-14 13:03:09.376365        \N    \N    \N    0    \N    \N    \N    \N    female
18405    Jarred    Dach    ottilie@hegmann.net    \N    Tonga    East Estahaven    727 Oceane Lake    71814-9873    Rhode Island    2016-08-17 12:37:12.573148    2016-10-14 13:03:09.380648        \N    \N    \N    0    \N    \N    \N    \N    male
18406    Grace    Feest    rosie@deckowframi.com    \N    Paraguay    Sincerebury    78616 Reynolds Manor    93970    Nebraska    2016-08-16 04:46:42.951989    2016-10-14 13:03:09.385112        \N    \N    \N    0    \N    \N    \N    \N    male
18408    Nash    Murazik    aileen@heelaufderhar.info    \N    Falkland Islands (Malvinas)    Romagueraland    3432 Cummings Street    65871-9442    Hawaii    2016-08-11 16:44:58.790503    2016-10-14 13:03:09.389764        \N    \N    \N    0    \N    \N    \N    \N    female
18409    Rhiannon    Larson    cory@mills.biz    \N    British Indian Ocean Territory (Chagos Archipelago)    Kuhnburgh    295 Davis Park    72914-8072    Massachusetts    2016-07-05 06:34:04.807095    2016-10-14 13:03:09.394532        \N    \N    \N    0    \N    \N    \N    \N    male
18410    Foster    Smitham    destiny_bogisich@friesen.biz    \N    Papua New Guinea    West Ruth    654 McCullough Route    25404-5178    South Carolina    2016-08-25 11:19:01.718811    2016-10-14 13:03:09.399517        \N    \N    \N    0    \N    \N    \N    \N    female
18411    Riley    Stroman    dayana_king@balistreriwiegand.co    \N    Seychelles    North Chaya    51381 Evalyn Burgs    50529    Illinois    2016-07-09 22:11:32.5707    2016-10-14 13:03:09.404289        \N    \N    \N    0    \N    \N    \N    \N    female
18412    Tristian    Collins    antonina@hartmann.org    \N    Micronesia    East Gay    6654 Lenore Ways    98827    Oklahoma    2016-07-21 23:55:20.021943    2016-10-14 13:03:09.409551        \N    \N    \N    0    \N    \N    \N    \N    male
18413    Aron    Collins    imogene@zemlak.org    \N    Sweden    East Leilanichester    884 Wilderman Ways    86328-4629    Alaska    2016-08-14 10:58:06.232281    2016-10-14 13:03:09.414663        \N    \N    \N    0    \N    \N    \N    \N    female
18414    Chelsie    Mertz    regan_vandervort@mannortiz.biz    \N    Greenland    North Odessa    7459 Bartell Court    84941-6394    Arizona    2016-06-22 14:13:14.927688    2016-10-14 13:03:09.419769        \N    \N    \N    0    \N    \N    \N    \N    female
18415    Teresa    Dare    keon@grady.io    \N    Madagascar    New Gage    829 Kautzer Isle    39210    Connecticut    2016-08-30 10:04:36.39081    2016-10-14 13:03:09.424902        \N    \N    \N    0    \N    \N    \N    \N    male
18416    Sylvan    Funk    joelle@wolf.info    \N    Romania    South Sarahburgh    22105 Erik Trace    12477-3688    Texas    2016-07-10 06:08:14.252525    2016-10-14 13:03:09.429825        \N    \N    \N    0    \N    \N    \N    \N    male
18417    Guido    Toy    krystal_bosco@ferry.biz    \N    Bulgaria    Luciostad    478 Ebert Brooks    16784    Oklahoma    2016-07-09 12:04:33.282052    2016-10-14 13:03:09.434827        \N    \N    \N    0    \N    \N    \N    \N    male
18418    Jordane    Yundt    tanya.moriette@hartmann.io    \N    Austria    Quigleychester    56962 Loy Knolls    55856    Massachusetts    2016-08-05 14:27:13.6012    2016-10-14 13:03:09.439697        \N    \N    \N    0    \N    \N    \N    \N    female
18419    Katrina    Reilly    peyton@lebsack.name    \N    Tunisia    Harveyshire    486 Raegan Valley    15616    Michigan    2016-08-27 09:31:20.207422    2016-10-14 13:03:09.444372        \N    \N    \N    0    \N    \N    \N    \N    male
18420    Khalil    Brekke    brannon.okeefe@casper.co    \N    Svalbard & Jan Mayen Islands    East Antonettaview    9341 Bernhard Plaza    42985-1975    New Jersey    2016-08-28 23:30:05.333564    2016-10-14 13:03:09.44904        \N    \N    \N    0    \N    \N    \N    \N    male
18421    Alexa    Barton    sanford_lemke@walkerankunding.name    \N    Cameroon    Legrosland    8028 Tamia Island    80206-6965    West Virginia    2016-06-29 19:11:18.077053    2016-10-14 13:03:09.455076        \N    \N    \N    0    \N    \N    \N    \N    female
18422    Thelma    Ruecker    alyson@larsonpaucek.net    \N    Guadeloupe    Johnathanmouth    8503 Benedict Radial    10136    Alaska    2016-07-24 16:21:51.99755    2016-10-14 13:03:09.45941        \N    \N    \N    0    \N    \N    \N    \N    male
18423    Cade    Leuschke    katarina@kihnkozey.biz    \N    Botswana    Marjoriebury    69624 Lakin Islands    11039    Delaware    2016-09-02 14:32:33.812942    2016-10-14 13:03:09.46356        \N    \N    \N    0    \N    \N    \N    \N    female
18424    Ben    Rice    hortense@danielmcglynn.org    \N    Marshall Islands    Bethton    772 Matteo Heights    53881-4792    Kansas    2016-07-09 21:06:20.688638    2016-10-14 13:03:09.46797        \N    \N    \N    0    \N    \N    \N    \N    male
18425    Aimee    Blanda    leora@rath.biz    \N    Yemen    Betsyberg    2728 Parker Plains    83041-3978    Maine    2016-08-13 05:27:14.311135    2016-10-14 13:03:09.472354        \N    \N    \N    0    \N    \N    \N    \N    female
18426    Vince    West    david_ruel@cronagulgowski.io    \N    Christmas Island    Lockmanmouth    36503 Juana Key    86184    New Jersey    2016-08-15 20:37:56.893089    2016-10-14 13:03:09.476864        \N    \N    \N    0    \N    \N    \N    \N    female
18427    Yoshiko    Stroman    ashtyn@schoen.co    \N    Russian Federation    Smithamshire    5047 Carolanne Gateway    14049    Missouri    2016-06-28 18:04:06.535725    2016-10-14 13:03:09.481392        \N    \N    \N    0    \N    \N    \N    \N    female
18428    Nova    Mann    amalia@wuckert.org    \N    British Indian Ocean Territory (Chagos Archipelago)    South Marcus    24159 Effertz Estate    76193-1203    North Dakota    2016-07-18 22:12:59.347231    2016-10-14 13:03:09.486237        \N    \N    \N    0    \N    \N    \N    \N    female
18429    Heaven    Mitchell    pansy_cremin@kutchkovacek.info    \N    New Zealand    Donnellychester    5955 Schultz Lakes    89970    New Hampshire    2016-07-08 23:35:49.910337    2016-10-14 13:03:09.492039        \N    \N    \N    0    \N    \N    \N    \N    female
18430    Haley    Kertzmann    randy_bauch@schimmelcasper.net    \N    Cameroon    South Ceceliaside    542 Itzel Haven    53491-3586    New York    2016-09-29 04:07:37.122252    2016-10-14 13:03:09.500063        \N    \N    \N    0    \N    \N    \N    \N    male
18431    Kyleigh    Hahn    destany.schamberger@stanton.net    \N    El Salvador    Tristinfort    987 Stokes Alley    94264-9306    West Virginia    2016-07-13 17:19:53.571366    2016-10-14 13:03:09.508741        \N    \N    \N    0    \N    \N    \N    \N    female
18432    Marie    Legros    ora.jast@emmerich.com    \N    Turkmenistan    Port Adahaven    575 Caroline Spurs    63583-6074    Kansas    2016-07-02 20:49:29.28916    2016-10-14 13:03:09.517429        \N    \N    \N    0    \N    \N    \N    \N    male
18433    Favian    Kuhn    barton@waters.org    \N    Liechtenstein    Anjaliland    8133 Schimmel Vista    25319    Illinois    2016-08-08 04:49:56.053241    2016-10-14 13:03:09.522304        \N    \N    \N    0    \N    \N    \N    \N    male
18434    Darrick    Nikolaus    dena_kuphal@zemlak.com    \N    Canada    Abshirefurt    25843 McDermott Fords    16568    Mississippi    2016-08-24 01:25:12.196263    2016-10-14 13:03:09.526668        \N    \N    \N    0    \N    \N    \N    \N    female
18435    Ayana    Collier    blaze@dooley.biz    \N    United States Minor Outlying Islands    Cristhaven    37255 Fabian Hill    20117    South Carolina    2016-07-07 21:19:49.334379    2016-10-14 13:03:09.531395        \N    \N    \N    0    \N    \N    \N    \N    male
18436    General    Terry    lizeth@hirthe.net    \N    Paraguay    Reynoldstown    5253 Hickle Inlet    46840    South Dakota    2016-08-31 21:41:51.313236    2016-10-14 13:03:09.546191        \N    \N    \N    0    \N    \N    \N    \N    male
18437    Eda    Stark    laney_macgyver@parisian.co    \N    Cameroon    Altenwerthfort    187 Green Corners    65881    Indiana    2016-08-17 12:08:29.371492    2016-10-14 13:03:09.551062        \N    \N    \N    0    \N    \N    \N    \N    female
18438    Jermaine    Schulist    baby@ward.name    \N    Haiti    Lockmantown    5375 Alexie Terrace    46910-3442    South Dakota    2016-08-22 22:53:00.79814    2016-10-14 13:03:09.555402        \N    \N    \N    0    \N    \N    \N    \N    female
18439    Donna    Klein    brendon.schumm@lockman.org    \N    Botswana    West Jensen    30775 D'Amore Prairie    64673-0977    Iowa    2016-07-10 22:52:13.232967    2016-10-14 13:03:09.560095        \N    \N    \N    0    \N    \N    \N    \N    male
18440    Sheridan    Blanda    daniela_flatley@cormier.info    \N    Tuvalu    Eunaberg    2614 Kreiger Mall    35164    Nebraska    2016-08-29 05:43:47.877161    2016-10-14 13:03:09.564734        \N    \N    \N    0    \N    \N    \N    \N    male
18441    Jaida    Crona    glenda.stanton@hartmannhyatt.org    \N    Latvia    McDermottview    5991 Tiara Well    58801-1601    New Jersey    2016-08-30 02:37:45.106414    2016-10-14 13:03:09.570045        \N    \N    \N    0    \N    \N    \N    \N    female
18442    Benedict    Greenfelder    gertrude_keebler@kemmerhammes.biz    \N    Ukraine    Ashtonhaven    92988 Emmett Mountains    59852-8867    Connecticut    2016-09-10 05:50:25.684736    2016-10-14 13:03:09.575761        \N    \N    \N    0    \N    \N    \N    \N    female
18443    Oleta    Gislason    alvina@ebert.co    \N    Tajikistan    Mitchellfurt    454 Pamela Passage    87726    California    2016-07-19 12:27:26.319499    2016-10-14 13:03:09.580324        \N    \N    \N    0    \N    \N    \N    \N    female
18444    Jared    Bode    lola@padberg.net    \N    Central African Republic    Port Sarai    51332 Jeff Corner    79843    Tennessee    2016-07-24 13:25:25.19025    2016-10-14 13:03:09.5898        \N    \N    \N    0    \N    \N    \N    \N    female
18445    Maximus    Swift    avery@beier.name    \N    United Kingdom    East Clarissa    62559 Adriel Spur    87182-0933    Kentucky    2016-09-20 22:13:11.88658    2016-10-14 13:03:09.595653        \N    \N    \N    0    \N    \N    \N    \N    female
18446    Kassandra    Labadie    eliane@macejkovic.info    \N    South Georgia and the South Sandwich Islands    Port Elena    84848 Weber Valleys    59754    Kansas    2016-08-09 18:25:00.961478    2016-10-14 13:03:09.603225        \N    \N    \N    0    \N    \N    \N    \N    female
18447    Einar    McClure    emilie.hintz@schmidtruecker.info    \N    Bulgaria    Braedenport    607 Schaefer Grove    86629-7437    Indiana    2016-08-11 00:50:14.758998    2016-10-14 13:03:09.607507        \N    \N    \N    0    \N    \N    \N    \N    male
18448    Elton    Kshlerin    juston@marvin.net    \N    Angola    Gayborough    100 Fritz Courts    91847-1833    Wyoming    2016-09-27 04:21:59.910017    2016-10-14 13:03:09.611756        \N    \N    \N    0    \N    \N    \N    \N    male
18449    Carolyn    Pollich    cameron@stark.info    \N    Belarus    West Taryn    93230 Rodrigo Ports    31744-1789    Colorado    2016-08-31 17:49:22.939282    2016-10-14 13:03:09.615778        \N    \N    \N    0    \N    \N    \N    \N    female
18450    Raleigh    Bashirian    weston_schuster@greenfelder.com    \N    Belize    Lake Mathew    9924 Glover Harbor    77671    New Hampshire    2016-06-24 09:21:52.96563    2016-10-14 13:03:09.620247        \N    \N    \N    0    \N    \N    \N    \N    male
18451    Evangeline    Feeney    quincy_dubuque@robel.name    \N    Reunion    Lake Willy    34265 Jesus Course    81715    Massachusetts    2016-09-08 00:02:54.414769    2016-10-14 13:03:09.624335        \N    \N    \N    0    \N    \N    \N    \N    female
18452    Terrill    Bogisich    destiney_turner@glover.io    \N    Faroe Islands    Lake Ed    2399 Abigayle Views    38034    Montana    2016-08-24 16:12:29.596559    2016-10-14 13:03:09.628346        \N    \N    \N    0    \N    \N    \N    \N    male
18453    Helga    McDermott    dayna@hauck.info    \N    Cameroon    East Zoieberg    33647 Mayer Burg    55269-1635    Montana    2016-08-04 03:54:36.88134    2016-10-14 13:03:09.632474        \N    \N    \N    0    \N    \N    \N    \N    female
18454    Dana    Nader    wilford.boyer@rowe.co    \N    Saint Pierre and Miquelon    Heidenreichbury    61158 Imogene Divide    68263    Maine    2016-09-28 18:06:56.63942    2016-10-14 13:03:09.636722        \N    \N    \N    0    \N    \N    \N    \N    male
18455    Rae    Kessler    caden.zemlak@littel.co    \N    Mongolia    New Tremaineport    6812 Schaden Expressway    48744    Indiana    2016-08-03 08:22:45.972992    2016-10-14 13:03:09.640848        \N    \N    \N    0    \N    \N    \N    \N    female
18456    Mireille    Quigley    sophie@gusikowski.com    \N    Jordan    West Alliestad    122 Tess Hollow    50683-8750    Ohio    2016-07-11 02:30:24.314451    2016-10-14 13:03:09.645372        \N    \N    \N    0    \N    \N    \N    \N    female
18457    Marques    Mayert    kennedi@christiansenhammes.info    \N    Belize    East Leslieberg    57231 Floy Club    75520    Maryland    2016-06-25 01:38:30.392019    2016-10-14 13:03:09.650062        \N    \N    \N    0    \N    \N    \N    \N    female
18458    Laverna    Carter    abdullah@purdy.biz    \N    Serbia    Lake Koleview    699 Britney Mews    48945-0303    Oklahoma    2016-06-22 22:12:02.84642    2016-10-14 13:03:09.655228        \N    \N    \N    0    \N    \N    \N    \N    female
18459    Wade    Haag    micheal.murray@medhurst.co    \N    Iceland    West Halberg    54402 Araceli Alley    90159-8145    Colorado    2016-08-25 09:29:07.711842    2016-10-14 13:03:09.659799        \N    \N    \N    0    \N    \N    \N    \N    female
18460    Kathlyn    Veum    donald.kozey@fahey.org    \N    Vietnam    New Leohaven    18002 Carolanne Streets    37921    Texas    2016-08-30 16:51:46.784818    2016-10-14 13:03:09.664075        \N    \N    \N    0    \N    \N    \N    \N    female
18461    Alejandrin    Green    opal_kihn@marvinwindler.com    \N    Libyan Arab Jamahiriya    Dooleyshire    434 Odessa Meadows    73469-0938    Georgia    2016-08-27 23:04:45.479303    2016-10-14 13:03:09.668483        \N    \N    \N    0    \N    \N    \N    \N    female
18462    Pascale    Lynch    antone@farrell.net    \N    Burkina Faso    East Sandrine    4884 Millie Freeway    90790-3728    Texas    2016-09-16 22:34:25.640007    2016-10-14 13:03:09.672924        \N    \N    \N    0    \N    \N    \N    \N    male
18464    Erwin    Hayes    rafael@christiansenfahey.io    \N    Ethiopia    New Alicia    699 Laney Meadows    16691    Louisiana    2016-07-29 01:45:03.101185    2016-10-14 13:03:09.677703        \N    \N    \N    0    \N    \N    \N    \N    female
18465    Erwin    Anderson    ruell@mueller.org    \N    Guatemala    West Dortha    626 Walsh Branch    45694-8498    Vermont    2016-09-16 05:47:21.719788    2016-10-14 13:03:09.682761        \N    \N    \N    0    \N    \N    \N    \N    male
18466    Baron    Dare    jay_nicolas@tromp.name    \N    Timor-Leste    Jacynthefurt    202 Dickinson Valleys    25059-6430    Washington    2016-06-28 01:41:20.98183    2016-10-14 13:03:09.686936        \N    \N    \N    0    \N    \N    \N    \N    female
18467    Esperanza    Douglas    danyka@kunde.biz    \N    Papua New Guinea    Wainoberg    687 Harris Row    56379-0349    Michigan    2016-08-09 08:42:29.58658    2016-10-14 13:03:09.691187        \N    \N    \N    0    \N    \N    \N    \N    female
18468    Burdette    Olson    jeyca_okeefe@flatley.com    \N    Namibia    Kunzefort    23195 Winnifred Pine    10016    Iowa    2016-08-02 12:15:25.841143    2016-10-14 13:03:09.697802        \N    \N    \N    0    \N    \N    \N    \N    female
18469    Nicolas    Kessler    mariano@satterfield.org    \N    Maldives    Lake Dorisfort    102 Runolfsdottir Creek    86307    Florida    2016-07-26 10:20:22.739692    2016-10-14 13:03:09.702715        \N    \N    \N    0    \N    \N    \N    \N    male
18470    Mekhi    Morissette    donnell_walsh@thielrice.name    \N    Mali    Port Terrence    879 Theresia Gardens    56084    West Virginia    2016-08-01 15:53:33.655782    2016-10-14 13:03:09.706952        \N    \N    \N    0    \N    \N    \N    \N    female
18471    Lacy    Hilll    willie@kozeyrowe.io    \N    Cambodia    Aishaburgh    663 Satterfield Rest    90559    Indiana    2016-08-21 06:40:33.30521    2016-10-14 13:03:09.711181        \N    \N    \N    0    \N    \N    \N    \N    female
18472    Kimberly    Dietrich    ariel.gorczany@parker.biz    \N    Cayman Islands    New Alessia    676 Lizeth Branch    11978-1234    West Virginia    2016-06-30 06:41:04.418636    2016-10-14 13:03:09.71501        \N    \N    \N    0    \N    \N    \N    \N    female
18473    Thelma    Koelpin    chelsea_ward@beattyziemann.io    \N    Mali    New Miraclestad    622 William Springs    59819    Delaware    2016-08-29 08:30:02.044467    2016-10-14 13:03:09.719221        \N    \N    \N    0    \N    \N    \N    \N    male
18474    Aiden    Moen    layne@oconner.info    \N    Reunion    Kingshire    43035 Sarai Mills    94439    Montana    2016-09-05 08:05:57.05169    2016-10-14 13:03:09.723176        \N    \N    \N    0    \N    \N    \N    \N    male
18475    Vernon    McClure    name_bednar@adams.info    \N    Suriname    West Demario    42980 Arlie Parkways    64806    Tennessee    2016-09-03 00:01:18.934501    2016-10-14 13:03:09.727025        \N    \N    \N    0    \N    \N    \N    \N    female
18476    Savanah    Murazik    rachelle.bradtke@shanahan.io    \N    Mayotte    Lake Lynnfort    35809 Emmitt Heights    69674-6637    Ohio    2016-07-18 09:45:43.112866    2016-10-14 13:03:09.730787        \N    \N    \N    0    \N    \N    \N    \N    female
18477    Danika    Feest    madyson_krajcik@bogisichkilback.org    \N    Uganda    Schultzfurt    9256 Gleason Course    54058    Missouri    2016-06-26 04:57:41.906668    2016-10-14 13:03:09.734709        \N    \N    \N    0    \N    \N    \N    \N    male
18478    Hunter    Rau    curt@carroll.biz    \N    Norway    Wolfton    750 Lessie Lake    73028-4008    Montana    2016-07-13 19:14:25.012234    2016-10-14 13:03:09.738908        \N    \N    \N    0    \N    \N    \N    \N    female
18479    Luz    Kuhic    nigel.fahey@ratkebogisich.io    \N    Kazakhstan    Marceloville    278 Kira Motorway    66525    New Hampshire    2016-08-06 10:00:19.624084    2016-10-14 13:03:09.742989        \N    \N    \N    0    \N    \N    \N    \N    male
18480    Aliya    Fisher    dorris@connelly.io    \N    Bhutan    Garlandmouth    6715 Kling Coves    24402    Kansas    2016-09-14 07:42:00.603405    2016-10-14 13:03:09.746828        \N    \N    \N    0    \N    \N    \N    \N    male
18481    Trudie    Eichmann    glennie_roberts@hills.name    \N    Greenland    Berryview    88318 Simone Points    51804-6028    Montana    2016-07-01 13:46:51.424132    2016-10-14 13:03:09.750607        \N    \N    \N    0    \N    \N    \N    \N    male
18482    Ivah    Moen    rogers_ratke@nicolas.info    \N    Saint Helena    West Leilastad    767 Mylene Fork    55762    North Carolina    2016-07-05 21:41:53.012891    2016-10-14 13:03:09.754449        \N    \N    \N    0    \N    \N    \N    \N    male
18483    Cordelia    Morissette    nadia_kihn@baileyheathcote.net    \N    Ecuador    Port Augustamouth    84806 Ivah Flat    64431-2039    Indiana    2016-07-09 22:31:39.748207    2016-10-14 13:03:09.758273        \N    \N    \N    0    \N    \N    \N    \N    female
18484    Demetris    Rau    ally_walker@crona.io    \N    Sri Lanka    Gibsonside    36517 Mackenzie Valleys    47692-3948    North Dakota    2016-09-02 13:54:00.470394    2016-10-14 13:03:09.762351        \N    \N    \N    0    \N    \N    \N    \N    male
18487    Twila    Keeling    kellen@gusikowski.co    \N    Kenya    Lake Bo    8984 Kaitlin Course    49633-3141    Kansas    2016-09-02 03:13:35.802344    2016-10-14 13:03:09.766477        \N    \N    \N    0    \N    \N    \N    \N    male
18488    Rolando    Koch    jarred@mertz.biz    \N    Dominica    Russelside    368 Blick Pine    67649    Kansas    2016-09-09 08:52:19.820596    2016-10-14 13:03:09.77065        \N    \N    \N    0    \N    \N    \N    \N    female
18489    Isabelle    Altenwerth    wilhelm_corkery@larson.net    \N    Slovakia (Slovak Republic)    West Kristinbury    1877 Mills Station    26849-3549    Montana    2016-09-01 12:53:51.87196    2016-10-14 13:03:09.774716        \N    \N    \N    0    \N    \N    \N    \N    male
18490    Elta    Effertz    ralph@buckridge.info    \N    Armenia    Medhurstport    6047 Bernita Tunnel    94600    Maine    2016-08-01 09:34:29.316531    2016-10-14 13:03:09.7788        \N    \N    \N    0    \N    \N    \N    \N    female
18491    Elias    Schmitt    tanya@hyatt.io    \N    Belgium    New Stefanfort    831 Ressie Parks    18705    South Dakota    2016-08-16 12:38:28.862855    2016-10-14 13:03:09.78269        \N    \N    \N    0    \N    \N    \N    \N    female
18492    Megane    Pacocha    ciara@cartwright.biz    \N    Samoa    Faheybury    366 Hessel Mission    33428-0109    Wyoming    2016-08-22 09:28:41.349951    2016-10-14 13:03:09.786732        \N    \N    \N    0    \N    \N    \N    \N    female
18493    Gabrielle    Gleason    charlie_labadie@kshlerin.io    \N    Guyana    Port Dinaberg    2797 Morissette Viaduct    12968    Maryland    2016-08-20 19:19:24.941745    2016-10-14 13:03:09.790588        \N    \N    \N    0    \N    \N    \N    \N    female
18494    Elva    Davis    kyler_schulist@kris.biz    \N    Eritrea    North Davion    116 Heathcote Terrace    47732-9026    Nevada    2016-09-16 03:10:25.565555    2016-10-14 13:03:09.794769        \N    \N    \N    0    \N    \N    \N    \N    female
18495    Dallas    Funk    dimitri@schultz.co    \N    Eritrea    South Wava    3205 Bernhard Drive    55476-4378    North Carolina    2016-09-21 21:10:12.069756    2016-10-14 13:03:09.79877        \N    \N    \N    0    \N    \N    \N    \N    female
18496    Thomas    Konopelski    emilio@toy.com    \N    Latvia    Quintenburgh    136 Schmidt Village    70864-5073    Utah    2016-07-12 19:32:37.208451    2016-10-14 13:03:09.802653        \N    \N    \N    0    \N    \N    \N    \N    male
18497    Juliet    Crist    travon.rodriguez@steuber.name    \N    Norfolk Island    Murazikhaven    19634 Feest River    57251-5635    Minnesota    2016-08-18 16:08:41.472099    2016-10-14 13:03:09.806477        \N    \N    \N    0    \N    \N    \N    \N    male
18498    Isadore    Schiller    unique.feest@crooks.org    \N    Taiwan    Alvamouth    2337 Pinkie Shoal    53692    Wyoming    2016-09-04 09:15:35.361796    2016-10-14 13:03:09.810301        \N    \N    \N    0    \N    \N    \N    \N    male
18499    Jess    Schoen    rachelle.little@greenfelder.io    \N    Panama    New Jordynshire    59319 Eldred Brook    15128-6207    Alaska    2016-09-05 04:27:01.050296    2016-10-14 13:03:09.814549        \N    \N    \N    0    \N    \N    \N    \N    male
18500    Rowan    Hirthe    maye_renner@spinka.org    \N    Lithuania    Fordstad    15824 Gerhold Drive    94968    Iowa    2016-07-30 23:45:13.310601    2016-10-14 13:03:09.818448        \N    \N    \N    0    \N    \N    \N    \N    male
18501    Marian    Howe    joanie@bechtelar.info    \N    Finland    Lake Liana    2096 Nico Hills    86066-4288    South Carolina    2016-09-03 17:36:04.556924    2016-10-14 13:03:09.822619        \N    \N    \N    0    \N    \N    \N    \N    male
18502    Jermey    Orn    arnoldo.kuhlman@braun.co    \N    Martinique    Zakaryview    500 Schiller Pine    14028    Arizona    2016-09-01 23:43:48.032192    2016-10-14 13:03:09.826619        \N    \N    \N    0    \N    \N    \N    \N    male
18504    Gerardo    Kuhic    dee@block.com    \N    Pakistan    West Margaretta    922 Runolfsson Circles    79525    Oklahoma    2016-07-19 15:30:18.570236    2016-10-14 13:03:09.830778        \N    \N    \N    0    \N    \N    \N    \N    male
18505    Kathlyn    Jaskolski    bryce@abernathy.name    \N    Bolivia    Lake Rylee    7633 Herzog Ferry    40315    Hawaii    2016-09-05 20:58:39.669204    2016-10-14 13:03:09.835589        \N    \N    \N    0    \N    \N    \N    \N    female
18506    Ines    Ryan    etha.schultz@mayer.name    \N    Uruguay    Bahringerburgh    3878 Vallie Cliff    94635-3661    Utah    2016-08-22 05:10:33.028514    2016-10-14 13:03:09.841631        \N    \N    \N    0    \N    \N    \N    \N    female
18507    Rudolph    King    elmore@dooleyschultz.com    \N    Jersey    Creolastad    9964 Schuster Mews    74415    Kentucky    2016-09-19 01:04:40.406106    2016-10-14 13:03:09.848802        \N    \N    \N    0    \N    \N    \N    \N    male
18508    Mona    Kling    justus@steuber.io    \N    Suriname    Port Aliyahshire    96230 Kurtis Knoll    10788    Rhode Island    2016-07-01 13:45:54.77522    2016-10-14 13:03:09.854588        \N    \N    \N    0    \N    \N    \N    \N    male
18509    Noemy    Champlin    abigayle@kingmitchell.name    \N    Madagascar    Chaseland    3927 Farrell Wall    98058    Illinois    2016-06-22 14:32:19.201185    2016-10-14 13:03:09.858502        \N    \N    \N    0    \N    \N    \N    \N    female
18510    Juanita    Johns    julia@volkmankeeling.net    \N    Norway    Reichertberg    1122 Savannah Branch    44238    New Hampshire    2016-08-02 23:26:06.768159    2016-10-14 13:03:09.862857        \N    \N    \N    0    \N    \N    \N    \N    female
18511    Colt    Rolfson    forrest@hackettosinski.biz    \N    Angola    Jalonmouth    15348 Justina Burg    33975    North Dakota    2016-07-25 11:13:55.98162    2016-10-14 13:03:09.86965        \N    \N    \N    0    \N    \N    \N    \N    female
18512    Ellie    Shanahan    edyth_sawayn@lindtoy.org    \N    Dominica    South Taniafort    880 Deion Greens    86940    New Jersey    2016-06-27 11:00:14.24253    2016-10-14 13:03:09.874087        \N    \N    \N    0    \N    \N    \N    \N    female
18513    Mathias    Schmitt    cody.reinger@heel.org    \N    Andorra    North Annabelle    4000 Amelie Turnpike    71176    Connecticut    2016-07-14 18:40:41.177042    2016-10-14 13:03:09.882385        \N    \N    \N    0    \N    \N    \N    \N    male
18514    Marion    Zboncak    sheldon_roob@kub.io    \N    Swaziland    Port Jedidiahbury    2821 Ebert Greens    11831    Indiana    2016-09-17 07:35:32.172303    2016-10-14 13:03:09.887066        \N    \N    \N    0    \N    \N    \N    \N    male
18515    Isaiah    Blick    hortense@weberstroman.org    \N    Croatia    New Kariannemouth    5332 Corwin Camp    89960    New Jersey    2016-07-19 21:25:47.605839    2016-10-14 13:03:09.891281        \N    \N    \N    0    \N    \N    \N    \N    female
18516    Sheila    Toy    therese@leannon.io    \N    Venezuela    Lorainechester    29799 Jaqueline Pike    38797    Missouri    2016-08-26 03:09:55.119531    2016-10-14 13:03:09.895628        \N    \N    \N    0    \N    \N    \N    \N    male
18517    Ned    Schinner    leo@jaskolski.io    \N    Northern Mariana Islands    Jennietown    46550 Sincere Overpass    85311    Louisiana    2016-08-12 22:06:43.374668    2016-10-14 13:03:09.899737        \N    \N    \N    0    \N    \N    \N    \N    female
18518    Domenic    Abernathy    bell_huel@gutmannlynch.org    \N    Armenia    Stromanview    334 Murphy Ferry    82449    West Virginia    2016-09-11 19:14:25.769047    2016-10-14 13:03:09.903619        \N    \N    \N    0    \N    \N    \N    \N    female
18519    Milan    Gusikowski    ferne_schimmel@veum.com    \N    Madagascar    Port Ervin    2432 Nitzsche Fields    24658    Louisiana    2016-08-06 17:53:24.559876    2016-10-14 13:03:09.90758        \N    \N    \N    0    \N    \N    \N    \N    female
18520    Dariana    Littel    neva@boscowuckert.org    \N    Somalia    North Jocelynburgh    2824 Cristina Road    82884-2071    North Carolina    2016-09-23 10:32:15.21854    2016-10-14 13:03:09.911614        \N    \N    \N    0    \N    \N    \N    \N    male
18521    Arielle    Kirlin    sienna@christiansenspinka.io    \N    Mongolia    Macytown    4352 Corine Lodge    30400-6632    Utah    2016-09-23 02:33:24.61271    2016-10-14 13:03:09.916005        \N    \N    \N    0    \N    \N    \N    \N    male
18522    Willa    Beatty    hilario@flatley.biz    \N    Wallis and Futuna    Ortizfort    20006 Marquis Parkway    73782-1531    Massachusetts    2016-07-31 19:12:04.052153    2016-10-14 13:03:09.919987        \N    \N    \N    0    \N    \N    \N    \N    male
18523    Makenzie    Grady    moises@lemke.co    \N    Syrian Arab Republic    Garfieldmouth    21099 Parker Street    95117    Oregon    2016-08-19 00:58:09.083517    2016-10-14 13:03:09.924227        \N    \N    \N    0    \N    \N    \N    \N    female
18524    Darrion    Little    hilbert@schowalterjacobi.co    \N    Aruba    Lake Shanellebury    5314 Reagan Courts    56890-4447    California    2016-08-25 08:33:52.8769    2016-10-14 13:03:09.928715        \N    \N    \N    0    \N    \N    \N    \N    male
18525    Demarco    Leffler    mabelle@batzmclaughlin.co    \N    Qatar    Port Donato    34132 Keeling Knoll    85301-8499    Louisiana    2016-07-14 16:39:37.009713    2016-10-14 13:03:09.933127        \N    \N    \N    0    \N    \N    \N    \N    female
18526    Marcellus    Steuber    maude.hermiston@macejkovic.com    \N    Kuwait    Lake Stephanie    977 Hintz Center    97537-9861    Delaware    2016-09-26 11:55:59.752893    2016-10-14 13:03:09.937325        \N    \N    \N    0    \N    \N    \N    \N    male
18527    Norris    Bradtke    kamille.schamberger@heaneyrutherford.name    \N    Niue    Jadynbury    7522 Hobart Pass    23422-0661    Louisiana    2016-08-12 02:54:50.927473    2016-10-14 13:03:09.94155        \N    \N    \N    0    \N    \N    \N    \N    male
18528    Jamey    Jacobson    kenyatta.kovacek@rolfson.co    \N    Aruba    Maeganmouth    10953 Barrett Port    41994-6638    New Mexico    2016-07-08 23:54:48.910716    2016-10-14 13:03:09.945964        \N    \N    \N    0    \N    \N    \N    \N    male
18529    Harrison    Wolf    sam@reichertnicolas.co    \N    Hungary    Smithamside    6458 Aurelie Groves    49363    South Carolina    2016-07-28 10:26:53.000314    2016-10-14 13:03:09.950224        \N    \N    \N    0    \N    \N    \N    \N    female
18530    Uriah    Walter    kyla@rosenbaumfarrell.name    \N    Philippines    East Alessandratown    9536 Wintheiser Camp    46419    South Dakota    2016-08-17 17:10:21.515964    2016-10-14 13:03:09.954811        \N    \N    \N    0    \N    \N    \N    \N    female
18531    Nikko    Keeling    gertrude@wuckert.net    \N    Israel    New Fletaton    738 Koch Viaduct    69557    Georgia    2016-08-11 07:54:41.317735    2016-10-14 13:03:09.958992        \N    \N    \N    0    \N    \N    \N    \N    male
19446    Markus    Goodwin    reilly@pfeffer.org    \N    Tajikistan    Goldnerhaven    309 Anya Common    21890    Oregon    2016-09-16 07:25:04.436753    2016-10-14 13:03:09.963111        \N    \N    \N    0    \N    \N    \N    \N    male
18532    Wilfrid    Brown    leanne@adams.name    \N    Tunisia    Port Donatoview    68504 Jason Spring    72112-6081    New York    2016-09-13 19:01:15.781445    2016-10-14 13:03:09.967074        \N    \N    \N    0    \N    \N    \N    \N    male
18533    Lenore    Pacocha    talia.frami@goldner.com    \N    Vietnam    Dakotachester    15457 Savion Ville    38799    Hawaii    2016-08-24 08:49:29.013072    2016-10-14 13:03:09.97114        \N    \N    \N    0    \N    \N    \N    \N    female
18485    Terry    Connelly    bertram@quigley.co    \N    France    Ortizmouth    58976 Casper Ford    69881    Iowa    2016-07-01 13:51:36.019298    2016-10-14 13:03:09.975104        \N    \N    \N    0    \N    \N    \N    \N    male
18534    Giuseppe    Lockman    corine@walter.name    \N    Netherlands Antilles    Greenfelderfurt    2356 Madison Land    41024-8950    Montana    2016-09-23 03:39:18.713547    2016-10-14 13:03:09.979145        \N    \N    \N    0    \N    \N    \N    \N    male
18535    Gregorio    Lang    cole@graham.co    \N    Montenegro    South Zita    64128 Keon Rest    83878-2442    Florida    2016-09-21 06:47:53.389255    2016-10-14 13:03:09.983328        \N    \N    \N    0    \N    \N    \N    \N    male
18536    Carli    Jast    zaria_satterfield@boehmlang.biz    \N    Ghana    North Toy    2166 Royce Drives    52168-2141    Pennsylvania    2016-08-19 08:25:09.027612    2016-10-14 13:03:09.987807        \N    \N    \N    0    \N    \N    \N    \N    female
18537    Reba    Schulist    jamie_lebsack@feeney.com    \N    Reunion    Tremblaychester    924 Blick Stravenue    61842    Arizona    2016-06-25 04:45:16.16533    2016-10-14 13:03:09.992956        \N    \N    \N    0    \N    \N    \N    \N    male
18538    Boyd    Mitchell    penelope@kohler.com    \N    Comoros    Bayerview    399 Juanita Turnpike    12853-3300    Oregon    2016-09-15 04:09:26.283355    2016-10-14 13:03:09.998471        \N    \N    \N    0    \N    \N    \N    \N    female
18539    Remington    Tillman    maximillia@stroman.co    \N    Antarctica (the territory South of 60 deg S)    Lake Carlos    957 Roxane Canyon    85992    West Virginia    2016-07-14 07:39:07.826766    2016-10-14 13:03:10.003627        \N    \N    \N    0    \N    \N    \N    \N    female
18540    Kyla    Muller    albert_schroeder@olson.name    \N    Saint Vincent and the Grenadines    Terryside    28808 Miller Inlet    17533-5307    South Carolina    2016-09-26 13:18:18.872858    2016-10-14 13:03:10.008467        \N    \N    \N    0    \N    \N    \N    \N    female
18541    Kyle    Gaylord    amalia.robel@kiehn.net    \N    Wallis and Futuna    New Jakob    44507 Bauch Pine    14088    Nevada    2016-09-01 15:57:22.016776    2016-10-14 13:03:10.013081        \N    \N    \N    0    \N    \N    \N    \N    female
18542    Peyton    Flatley    scot.swaniawski@kulas.net    \N    Finland    South Kylee    946 Rutherford Shoals    58350-7006    Oklahoma    2016-08-10 05:48:12.53555    2016-10-14 13:03:10.017947        \N    \N    \N    0    \N    \N    \N    \N    male
18543    Ulises    Tremblay    connie@lubowitzhalvorson.com    \N    Mozambique    North Kraigbury    16071 Balistreri Keys    84579    Connecticut    2016-07-19 12:14:40.128136    2016-10-14 13:03:10.023053        \N    \N    \N    0    \N    \N    \N    \N    female
18544    Viva    Gaylord    ana@deckow.co    \N    Maldives    Hintzfurt    86663 Shanel Lodge    21096-7422    Arkansas    2016-08-15 23:24:52.654934    2016-10-14 13:03:10.02942        \N    \N    \N    0    \N    \N    \N    \N    male
18545    Samson    Hammes    garth@raynorcorkery.name    \N    Solomon Islands    Wiegandtown    92302 Marta Cape    94037-8740    Alaska    2016-07-01 17:12:03.183201    2016-10-14 13:03:10.034138        \N    \N    \N    0    \N    \N    \N    \N    male
18546    Laurel    Weissnat    marc.kiehn@abshire.biz    \N    Cuba    Graceberg    9572 Cassin Motorway    90041-5463    New Jersey    2016-08-30 17:41:13.644401    2016-10-14 13:03:10.038442        \N    \N    \N    0    \N    \N    \N    \N    female
18547    Tyson    Ritchie    anastasia@sauer.biz    \N    Latvia    East Makayla    22736 Stracke Crossroad    33773-4847    Vermont    2016-07-02 01:54:20.75808    2016-10-14 13:03:10.043837        \N    \N    \N    0    \N    \N    \N    \N    female
18548    Ciara    Abshire    kylie@schulist.com    \N    Tanzania    Lake Berneiceville    6851 Bartoletti Forks    13141    Tennessee    2016-08-02 22:11:31.938049    2016-10-14 13:03:10.047924        \N    \N    \N    0    \N    \N    \N    \N    female
18550    Karlie    Mayer    nella.harris@hintzkling.biz    \N    Anguilla    Pollichview    25616 Mac Locks    21211-8290    West Virginia    2016-07-30 12:18:14.997443    2016-10-14 13:03:10.051867        \N    \N    \N    0    \N    \N    \N    \N    male
18551    Deven    Zboncak    salvatore.boehm@schumm.co    \N    Gibraltar    Port Zolaborough    732 Halvorson Summit    89943-5133    Louisiana    2016-08-02 18:17:36.911895    2016-10-14 13:03:10.055844        \N    \N    \N    0    \N    \N    \N    \N    male
18552    Carolanne    Kozey    herta.wyman@gottliebklocko.biz    \N    Belgium    Labadieville    4860 Jarvis Crossroad    92548-0163    Iowa    2016-09-14 07:30:38.66698    2016-10-14 13:03:10.059677        \N    \N    \N    0    \N    \N    \N    \N    female
18553    Toni    Konopelski    alice@hilpert.io    \N    Luxembourg    Leannburgh    34153 Mathias Manors    48495    Kentucky    2016-06-30 05:28:53.178261    2016-10-14 13:03:10.063947        \N    \N    \N    0    \N    \N    \N    \N    female
18554    Thurman    Haley    wilbert@wittingterry.name    \N    Timor-Leste    Nicholasberg    91550 Cartwright Centers    41751    South Carolina    2016-07-22 14:57:27.237105    2016-10-14 13:03:10.068373        \N    \N    \N    0    \N    \N    \N    \N    male
18555    Nikko    Ratke    susan@frami.net    \N    Latvia    Lake Modesta    69386 Lind Camp    56160-6758    New Jersey    2016-09-23 02:08:25.553964    2016-10-14 13:03:10.072614        \N    \N    \N    0    \N    \N    \N    \N    female
18556    Caterina    Keeling    clementina.hartmann@zemlak.net    \N    Namibia    South Mafalda    97266 Myrtis Extension    64470-6894    New York    2016-06-25 16:00:20.392621    2016-10-14 13:03:10.077259        \N    \N    \N    0    \N    \N    \N    \N    male
18557    Verner    Stiedemann    darius@collierzboncak.com    \N    Peru    Lake Lincoln    9603 Kevon Forges    90711    Vermont    2016-07-17 17:16:02.746911    2016-10-14 13:03:10.086025        \N    \N    \N    0    \N    \N    \N    \N    male
18558    Edmond    Runolfsdottir    laisha.keebler@maggioskiles.org    \N    Montserrat    Georgiannaberg    239 Savannah Mill    71044    Colorado    2016-08-16 09:01:39.099332    2016-10-14 13:03:10.090468        \N    \N    \N    0    \N    \N    \N    \N    female
18559    Tia    Hartmann    walker.jaskolski@boyle.co    \N    Gabon    Bergnaumshire    541 Tromp Wells    71300    Ohio    2016-08-21 11:42:56.114011    2016-10-14 13:03:10.094492        \N    \N    \N    0    \N    \N    \N    \N    male
18560    Clotilde    Friesen    eliseo@greenholtruecker.org    \N    Mali    Emmanuelhaven    2885 Alanna Station    49582    Mississippi    2016-09-18 05:01:46.478591    2016-10-14 13:03:10.100845        \N    \N    \N    0    \N    \N    \N    \N    male
18561    Tad    Sipes    leslie.stracke@zemlak.org    \N    Kenya    Kingview    20760 Yundt Garden    98416-2209    New Jersey    2016-07-09 16:29:26.432003    2016-10-14 13:03:10.106151        \N    \N    \N    0    \N    \N    \N    \N    female
18562    Boyd    Gerlach    ronny@brakus.biz    \N    Slovakia (Slovak Republic)    North Rodrick    95958 Reichel Crossroad    53060-7317    South Dakota    2016-08-06 04:46:11.582292    2016-10-14 13:03:10.111278        \N    \N    \N    0    \N    \N    \N    \N    male
18563    Ralph    Langworth    shanna@vandervort.io    \N    Afghanistan    Reichertmouth    300 Bernhard Village    34989-2008    Florida    2016-08-14 00:18:51.593501    2016-10-14 13:03:10.115945        \N    \N    \N    0    \N    \N    \N    \N    male
18564    Jacquelyn    Harber    corrine.little@mertz.net    \N    Taiwan    Lake Phyllis    31511 Ashly Cape    51164-8238    Montana    2016-08-28 15:12:41.675907    2016-10-14 13:03:10.120498        \N    \N    \N    0    \N    \N    \N    \N    female
18565    Fiona    Lubowitz    arnulfo_veum@johnston.biz    \N    Germany    East Coraborough    578 Haylie Prairie    46840-1593    Florida    2016-09-23 18:44:26.317242    2016-10-14 13:03:10.124746        \N    \N    \N    0    \N    \N    \N    \N    male
18566    Donnie    Stroman    savannah_bahringer@mayerschulist.name    \N    Georgia    Bartonport    6774 Tillman Heights    40816    Maryland    2016-08-30 08:36:20.694512    2016-10-14 13:03:10.129564        \N    \N    \N    0    \N    \N    \N    \N    female
18567    Kayli    Larkin    travon@auer.net    \N    New Caledonia    North Treverton    8224 Brekke Island    23909-3347    West Virginia    2016-07-29 21:15:36.997328    2016-10-14 13:03:10.134783        \N    \N    \N    0    \N    \N    \N    \N    male
18568    Oren    Rath    katlynn@kuphal.org    \N    Bahamas    Lake Rodrigomouth    52647 Jamal Court    66952    Maryland    2016-06-28 09:14:47.234944    2016-10-14 13:03:10.139416        \N    \N    \N    0    \N    \N    \N    \N    male
18569    Abigail    Kilback    caden@kreiger.co    \N    Ghana    Klingborough    14766 Lonzo Mission    82075-7477    Oregon    2016-07-20 20:22:06.60638    2016-10-14 13:03:10.143758        \N    \N    \N    0    \N    \N    \N    \N    female
18570    Amir    Yost    dallin.bernhard@nitzschehansen.net    \N    Marshall Islands    East Deechester    5062 Crooks Lock    95084-8286    Texas    2016-08-25 08:04:37.196389    2016-10-14 13:03:10.147842        \N    \N    \N    0    \N    \N    \N    \N    male
18571    Ismael    Olson    claudine.predovic@watsica.name    \N    United States Minor Outlying Islands    Alexischester    232 Hayley Island    96449-2675    Idaho    2016-09-17 16:51:27.076113    2016-10-14 13:03:10.151925        \N    \N    \N    0    \N    \N    \N    \N    female
18572    Keshawn    Bednar    bo@luettgencruickshank.org    \N    Malawi    South Rosamond    51273 Predovic Isle    94455    Ohio    2016-09-16 17:00:10.712189    2016-10-14 13:03:10.156252        \N    \N    \N    0    \N    \N    \N    \N    male
18573    Emil    Stracke    tristian@purdy.net    \N    Tokelau    Port Beatrice    7872 Nils Bypass    88016    Illinois    2016-08-28 13:13:51.089206    2016-10-14 13:03:10.160598        \N    \N    \N    0    \N    \N    \N    \N    female
18574    Oliver    Effertz    julie@kuhlman.co    \N    San Marino    Dachfort    5699 Christiansen Creek    54436-9701    Delaware    2016-07-23 17:08:52.484164    2016-10-14 13:03:10.164961        \N    \N    \N    0    \N    \N    \N    \N    female
18575    Madelyn    Fay    tianna.dubuque@toykaulke.org    \N    Finland    Eladiofort    28265 Camron Street    91438-0012    Michigan    2016-07-24 21:59:14.730413    2016-10-14 13:03:10.171799        \N    \N    \N    0    \N    \N    \N    \N    female
18576    Amani    Kemmer    federico.haag@renner.com    \N    Liechtenstein    Lake Kaitlinstad    71759 Champlin Parkways    35730-9544    Vermont    2016-08-20 15:00:39.182291    2016-10-14 13:03:10.176639        \N    \N    \N    0    \N    \N    \N    \N    male
18577    Amelie    Mohr    lyla.king@trantow.info    \N    Venezuela    Johnsburgh    823 Jakubowski Common    69589-8824    Delaware    2016-07-08 04:17:51.787642    2016-10-14 13:03:10.186168        \N    \N    \N    0    \N    \N    \N    \N    female
18578    Amaya    Sanford    antoinette@rogahn.com    \N    Poland    South Lilla    137 Gregorio Isle    37881-9578    Massachusetts    2016-07-20 15:29:37.988117    2016-10-14 13:03:10.19129        \N    \N    \N    0    \N    \N    \N    \N    male
18579    Armani    Lynch    pete@labadiehackett.org    \N    Bouvet Island (Bouvetoya)    Garlandmouth    588 Hassie Villages    29170-9590    Louisiana    2016-08-14 19:04:22.512435    2016-10-14 13:03:10.19648        \N    \N    \N    0    \N    \N    \N    \N    male
18580    Reva    Klein    estell.dickinson@windler.org    \N    Andorra    New Toyport    597 Brendon Gateway    56601-2941    Iowa    2016-09-26 15:24:37.841711    2016-10-14 13:03:10.201569        \N    \N    \N    0    \N    \N    \N    \N    female
18581    Alfonso    Ruecker    libbie.schumm@barton.com    \N    Panama    Kodytown    2016 Ward Island    75940-6610    California    2016-07-30 01:09:30.493882    2016-10-14 13:03:10.206245        \N    \N    \N    0    \N    \N    \N    \N    male
18582    Pierce    Olson    casimer@yundt.net    \N    Virgin Islands, British    Brooklynmouth    485 Jevon Heights    75370-2362    Idaho    2016-08-06 10:40:32.804503    2016-10-14 13:03:10.21055        \N    \N    \N    0    \N    \N    \N    \N    female
18583    Olen    Green    sherman.abernathy@thompsonleffler.io    \N    Tajikistan    North Lizethmouth    116 Breitenberg Course    67379-8383    Virginia    2016-08-22 10:14:12.282737    2016-10-14 13:03:10.216332        \N    \N    \N    0    \N    \N    \N    \N    male
18584    Jed    Rohan    nasir.robel@aufderhar.biz    \N    Montenegro    North Eldridge    44669 Adaline Ways    43361-3703    Alaska    2016-08-16 00:41:33.865042    2016-10-14 13:03:10.222198        \N    \N    \N    0    \N    \N    \N    \N    female
18585    Broderick    Emmerich    seth.wilderman@treutel.name    \N    Liechtenstein    Blickberg    5945 Kautzer Shoal    17446-7597    Minnesota    2016-07-30 01:26:53.058252    2016-10-14 13:03:10.227058        \N    \N    \N    0    \N    \N    \N    \N    male
18587    Caroline    Walker    norwood@farrell.org    \N    Saint Barthelemy    Kareemfurt    44794 Dianna Common    47141-4300    Florida    2016-09-09 18:42:10.791576    2016-10-14 13:03:10.232027        \N    \N    \N    0    \N    \N    \N    \N    male
18588    Ellis    Runte    hilda_schroeder@bernier.io    \N    Syrian Arab Republic    Gorczanyborough    807 Hickle Loop    44640-3112    Texas    2016-09-12 15:02:25.269357    2016-10-14 13:03:10.236859        \N    \N    \N    0    \N    \N    \N    \N    male
18589    Jameson    Quigley    lori.kutch@moriette.name    \N    French Southern Territories    East Addie    8225 Sawayn Street    69336-8979    Washington    2016-09-24 12:09:31.939742    2016-10-14 13:03:10.243887        \N    \N    \N    0    \N    \N    \N    \N    male
18590    Dillan    Bernier    estelle.willms@tillmanvandervort.biz    \N    Sao Tome and Principe    Blickfurt    71673 Vivienne Passage    99373-8647    North Dakota    2016-07-03 16:12:19.309575    2016-10-14 13:03:10.249041        \N    \N    \N    0    \N    \N    \N    \N    female
18591    Gus    Nolan    candace@koepprunte.name    \N    Norfolk Island    West Carmelo    630 Ritchie Knolls    94896    North Dakota    2016-09-19 21:59:18.102215    2016-10-14 13:03:10.254154        \N    \N    \N    0    \N    \N    \N    \N    male
18592    Kira    Luettgen    winona_lehner@stiedemannreichel.net    \N    Kazakhstan    Ankundingtown    4165 Muller Extension    94181    South Dakota    2016-08-27 05:02:08.876913    2016-10-14 13:03:10.258642        \N    \N    \N    0    \N    \N    \N    \N    male
18593    Omari    Hickle    gregorio@zieme.info    \N    Niger    West Ezequielburgh    65128 Gerardo Ridges    32671-5610    Indiana    2016-07-15 11:52:17.315676    2016-10-14 13:03:10.263809        \N    \N    \N    0    \N    \N    \N    \N    female
18595    Isaac    Brakus    destinee.denesik@brakus.io    \N    Saudi Arabia    Port Raul    558 Olson Points    10453    Washington    2016-09-10 03:03:50.207943    2016-10-14 13:03:10.271774        \N    \N    \N    0    \N    \N    \N    \N    female
18596    Jaden    Hintz    rebeca.rowe@grady.name    \N    Switzerland    Lake Vernermouth    313 Blick Wall    97454    Hawaii    2016-09-17 09:42:41.579226    2016-10-14 13:03:10.27614        \N    \N    \N    0    \N    \N    \N    \N    female
18598    Dawn    Hintz    makayla@pacocha.io    \N    Greece    Port Dameonbury    5941 Mayert Lane    96154-8305    Maryland    2016-08-08 19:00:41.759454    2016-10-14 13:03:10.2805        \N    \N    \N    0    \N    \N    \N    \N    female
18599    Kennith    Hahn    kaandra.sipes@johnston.co    \N    Bangladesh    Nolantown    651 Lang Freeway    47340    Alaska    2016-07-20 03:58:46.759962    2016-10-14 13:03:10.28519        \N    \N    \N    0    \N    \N    \N    \N    male
18600    Lonzo    Schroeder    selmer@corwinhagenes.name    \N    Papua New Guinea    Marquestown    3141 Bogan Ports    17776    Michigan    2016-08-05 12:37:13.998432    2016-10-14 13:03:10.289645        \N    \N    \N    0    \N    \N    \N    \N    male
18601    Trent    Torp    mellie_bergstrom@kubhilll.org    \N    Malaysia    East Roselynfurt    6603 Rohan Extension    33415    Florida    2016-08-24 03:59:46.426163    2016-10-14 13:03:10.294544        \N    \N    \N    0    \N    \N    \N    \N    female
18602    Theron    Jones    orville@mcdermottaltenwerth.com    \N    Sweden    Alessandraport    523 Fredrick River    67582-4180    Illinois    2016-07-22 14:09:38.884784    2016-10-14 13:03:10.299033        \N    \N    \N    0    \N    \N    \N    \N    male
18603    Don    Crooks    janiya@lehnerfeeney.biz    \N    Yemen    Hoegerborough    9925 Spencer Wells    33200-3480    Georgia    2016-07-18 08:38:59.395053    2016-10-14 13:03:10.30426        \N    \N    \N    0    \N    \N    \N    \N    female
18604    Shirley    Hoeger    juanita@wisozkullrich.co    \N    Andorra    New Zackarybury    323 King Trace    72534    Hawaii    2016-07-05 23:59:30.969055    2016-10-14 13:03:10.320982        \N    \N    \N    0    \N    \N    \N    \N    female
18605    Andre    Hudson    kevon@doyle.org    \N    Georgia    West Dorthaton    46333 Charlie Mall    10218-4967    New Jersey    2016-08-09 22:03:45.630503    2016-10-14 13:03:10.325835        \N    \N    \N    0    \N    \N    \N    \N    male
18606    Desiree    Johns    alden@collinsmitchell.biz    \N    Montserrat    Myronport    3835 Kira Drive    85273    Rhode Island    2016-07-18 05:18:37.361282    2016-10-14 13:03:10.330197        \N    \N    \N    0    \N    \N    \N    \N    female
18607    Lamar    Hilpert    meggie@thompson.co    \N    Wallis and Futuna    Kesslertown    22416 Santino Lake    19508    Oklahoma    2016-08-30 06:30:30.83376    2016-10-14 13:03:10.334697        \N    \N    \N    0    \N    \N    \N    \N    male
18608    Mikel    Schinner    doyle.boehm@pouros.com    \N    Saint Pierre and Miquelon    Lake Raphaelport    3197 Georgianna Corners    55115    Wyoming    2016-09-05 03:02:40.20624    2016-10-14 13:03:10.339281        \N    \N    \N    0    \N    \N    \N    \N    male
18609    Monserrat    Gleason    belle@jacobi.info    \N    Gabon    Deckowfort    8171 Kailyn Crest    86018-6803    Illinois    2016-07-26 00:35:06.56569    2016-10-14 13:03:10.34377        \N    \N    \N    0    \N    \N    \N    \N    female
18610    Estelle    Rempel    nora_boyer@thompson.biz    \N    Zambia    East Kaylafurt    3969 Elna Well    46111-1344    Wisconsin    2016-09-21 12:40:09.648883    2016-10-14 13:03:10.348703        \N    \N    \N    0    \N    \N    \N    \N    female
18611    Duane    Jacobi    rosalee@grant.name    \N    Guinea-Bissau    East Elishamouth    2724 Lilyan Ville    91080-8426    Tennessee    2016-07-29 15:05:53.215106    2016-10-14 13:03:10.353401        \N    \N    \N    0    \N    \N    \N    \N    female
18612    Stanford    Wilderman    kari@hickle.info    \N    Western Sahara    New Naomieside    37692 Weissnat Bypass    62817-5750    Kentucky    2016-09-11 08:35:21.840196    2016-10-14 13:03:10.358289        \N    \N    \N    0    \N    \N    \N    \N    female
18613    Dessie    Rau    chelsie@dickinson.net    \N    Slovenia    Zakaryberg    3522 Jordon Cliff    13092-7780    Florida    2016-08-09 17:52:30.628678    2016-10-14 13:03:10.362935        \N    \N    \N    0    \N    \N    \N    \N    male
18614    Carolanne    Stiedemann    savion.jacobson@beerreinger.name    \N    Luxembourg    New Rosina    717 Terry Shoal    86114-1172    Delaware    2016-08-29 20:40:50.147109    2016-10-14 13:03:10.367066        \N    \N    \N    0    \N    \N    \N    \N    female
18615    Lawrence    Pfeffer    ethel_kertzmann@mcglynn.io    \N    Montenegro    Port Julie    493 Romaguera Ranch    44832    Georgia    2016-08-15 13:25:45.215996    2016-10-14 13:03:10.371756        \N    \N    \N    0    \N    \N    \N    \N    female
18616    Golden    Ziemann    westley_conn@daniel.biz    \N    Aruba    New Sarai    9642 Kerluke Harbor    37587-3152    Delaware    2016-07-07 18:06:18.729059    2016-10-14 13:03:10.3761        \N    \N    \N    0    \N    \N    \N    \N    female
18617    Steve    Block    felicity_stracke@bauchprice.net    \N    United Arab Emirates    New Esther    908 Ruecker Common    25908    Kansas    2016-08-18 18:45:20.562017    2016-10-14 13:03:10.380751        \N    \N    \N    0    \N    \N    \N    \N    female
18618    Quentin    Zemlak    nikko.hauck@senger.net    \N    French Polynesia    West Adan    4109 Wilderman Green    97275    Nebraska    2016-07-08 13:31:53.08431    2016-10-14 13:03:10.390479        \N    \N    \N    0    \N    \N    \N    \N    male
18619    Federico    Lehner    derrick@glover.com    \N    Cuba    Port Marilou    81653 Lempi Loaf    32894-6165    Vermont    2016-09-14 02:23:42.768976    2016-10-14 13:03:10.397032        \N    \N    \N    0    \N    \N    \N    \N    female
18620    Bennett    Roberts    marcelina@koleannon.io    \N    Senegal    Lake Audie    948 Glen Pine    62045-3479    Rhode Island    2016-08-27 00:29:07.664179    2016-10-14 13:03:10.403888        \N    \N    \N    0    \N    \N    \N    \N    female
18621    Stewart    Toy    rosalind@ondricka.io    \N    Slovakia (Slovak Republic)    West Mitchell    13927 Edwardo Fork    55412    New Jersey    2016-09-08 20:08:04.909164    2016-10-14 13:03:10.408188        \N    \N    \N    0    \N    \N    \N    \N    male
18622    Ona    Breitenberg    sage@koelpin.biz    \N    Barbados    Nicolasfort    42536 Elwyn Vista    95141-5830    Georgia    2016-09-01 12:33:43.563537    2016-10-14 13:03:10.412345        \N    \N    \N    0    \N    \N    \N    \N    female
18623    Alexandre    Rosenbaum    lexi@gerlach.co    \N    Yemen    Keiraville    7744 Makenna Highway    98380-1107    North Carolina    2016-08-30 05:11:14.984382    2016-10-14 13:03:10.416693        \N    \N    \N    0    \N    \N    \N    \N    female
18624    Ila    Halvorson    chase@boganbernhard.info    \N    Panama    Lilianaberg    281 Hollis Keys    70343    North Dakota    2016-07-05 07:31:52.466642    2016-10-14 13:03:10.420941        \N    \N    \N    0    \N    \N    \N    \N    male
18625    Quinn    Harber    esta_bergstrom@feeney.info    \N    Pitcairn Islands    McCulloughville    2468 Jayda Ranch    42351-4445    Michigan    2016-09-25 21:26:19.673789    2016-10-14 13:03:10.425356        \N    \N    \N    0    \N    \N    \N    \N    female
18626    Monique    Cremin    christ_hahn@mante.io    \N    Puerto Rico    West Jean    184 Janie Mills    42039    South Dakota    2016-09-04 08:18:25.80152    2016-10-14 13:03:10.429448        \N    \N    \N    0    \N    \N    \N    \N    male
18627    Gino    Kris    bryana.cummings@batz.biz    \N    Bouvet Island (Bouvetoya)    New Cydney    89518 Lindgren Hills    25812    Montana    2016-07-22 18:04:13.165    2016-10-14 13:03:10.433736        \N    \N    \N    0    \N    \N    \N    \N    female
18628    Gabrielle    MacGyver    patricia_von@adams.co    \N    Cayman Islands    Zboncaktown    2876 Abbott Prairie    16398-8787    Arizona    2016-09-27 07:12:59.402478    2016-10-14 13:03:10.438699        \N    \N    \N    0    \N    \N    \N    \N    male
18629    Candida    Gorczany    solon_jerde@hane.biz    \N    Saint Martin    Port Cristianchester    540 Ethyl Terrace    20422-3242    Oregon    2016-09-18 18:17:52.225125    2016-10-14 13:03:10.443294        \N    \N    \N    0    \N    \N    \N    \N    male
18630    Elva    Goyette    jeffery.aufderhar@jacobicarroll.info    \N    Lithuania    Teresamouth    1035 Kshlerin Circles    20200-2689    Vermont    2016-07-31 12:18:24.270528    2016-10-14 13:03:10.447976        \N    \N    \N    0    \N    \N    \N    \N    female
18631    Jerrod    Bernhard    melvin.ullrich@will.com    \N    Guyana    Murphystad    6426 Alexandrine Port    68497-4048    Washington    2016-08-18 22:56:11.659523    2016-10-14 13:03:10.45344        \N    \N    \N    0    \N    \N    \N    \N    female
18632    Kirk    O'Conner    etha@morar.co    \N    Ecuador    Isobelfurt    78764 Missouri Flat    51875    Tennessee    2016-07-05 11:24:49.151036    2016-10-14 13:03:10.464535        \N    \N    \N    0    \N    \N    \N    \N    female
18633    Edgar    Rodriguez    peggie@beierparisian.name    \N    Congo    East Ferminton    46915 Gislason Ferry    65199    Nevada    2016-09-07 11:17:19.349765    2016-10-14 13:03:10.476116        \N    \N    \N    0    \N    \N    \N    \N    female
18634    Rachel    Welch    karine.brown@rueljohns.biz    \N    Monaco    Gusikowskiland    191 Lesch Road    17403    Nebraska    2016-08-05 02:29:11.802078    2016-10-14 13:03:10.480549        \N    \N    \N    0    \N    \N    \N    \N    male
18635    Zula    O'Keefe    alverta_larkin@williamson.net    \N    Trinidad and Tobago    Khalidport    2655 Delphine Valleys    24973-2758    Montana    2016-08-07 20:36:58.698764    2016-10-14 13:03:10.485317        \N    \N    \N    0    \N    \N    \N    \N    male
18636    Kenny    Quigley    douglas.gleason@smithamschowalter.org    \N    Suriname    Lake Pierce    26044 Lenny Route    54716-3798    Georgia    2016-07-18 09:18:21.367603    2016-10-14 13:03:10.489682        \N    \N    \N    0    \N    \N    \N    \N    female
18637    Makenna    Veum    kennedi.nolan@bernhardberge.net    \N    Comoros    Kyleburgh    8644 Dickens Union    29272    South Dakota    2016-08-30 06:56:20.302961    2016-10-14 13:03:10.494088        \N    \N    \N    0    \N    \N    \N    \N    female
18638    Robert    Roberts    marjolaine@trantowlindgren.io    \N    India    Jonathontown    73133 Mariano Avenue    49212    South Carolina    2016-09-11 16:52:56.988005    2016-10-14 13:03:10.498124        \N    \N    \N    0    \N    \N    \N    \N    female
18639    Darwin    Sauer    thalia@hilllcruickshank.info    \N    Kazakhstan    Port Giovanny    97768 White Parks    63834-4198    Washington    2016-06-29 10:25:08.545405    2016-10-14 13:03:10.502345        \N    \N    \N    0    \N    \N    \N    \N    female
18640    Camden    Towne    santino@buckridge.com    \N    Grenada    Port Catalina    933 Schaden Walk    46321-3377    Colorado    2016-09-18 17:25:04.451801    2016-10-14 13:03:10.506609        \N    \N    \N    0    \N    \N    \N    \N    male
18641    Duncan    Tillman    jeanie_heel@lakingorczany.name    \N    Cayman Islands    Port Aliya    987 Lew Summit    60893-2568    Florida    2016-06-24 15:14:51.861256    2016-10-14 13:03:10.510826        \N    \N    \N    0    \N    \N    \N    \N    male
18642    Ian    Pfannerstill    sibyl_gaylord@littelrolfson.io    \N    Czech Republic    Ludieberg    382 Riley Roads    69824    Nebraska    2016-09-23 18:18:32.4411    2016-10-14 13:03:10.515179        \N    \N    \N    0    \N    \N    \N    \N    female
18643    Meda    Quitzon    shane@spencerrohan.io    \N    Palestinian Territory    New Wavaburgh    158 Bertram Burg    24301-5502    New York    2016-09-19 15:57:27.609639    2016-10-14 13:03:10.519304        \N    \N    \N    0    \N    \N    \N    \N    male
18644    Evelyn    Wunsch    elmer@doylespencer.com    \N    Jersey    North Todberg    62275 Jenkins Villages    33575    Vermont    2016-09-20 02:51:46.796598    2016-10-14 13:03:10.526341        \N    \N    \N    0    \N    \N    \N    \N    female
18645    Fannie    Murphy    eve.emmerich@toyboyer.org    \N    Slovenia    Cameronchester    535 Fadel Court    20757-9697    West Virginia    2016-07-24 13:49:23.034026    2016-10-14 13:03:10.553976        \N    \N    \N    0    \N    \N    \N    \N    male
18646    Zetta    Stokes    manuel_walter@hegmann.name    \N    Switzerland    Heathertown    5646 Martine Curve    99068-1278    North Dakota    2016-09-02 03:28:22.57066    2016-10-14 13:03:10.559278        \N    \N    \N    0    \N    \N    \N    \N    female
18647    Clemmie    Gutkowski    rosario@schumm.org    \N    Virgin Islands, British    New Adella    684 Celine Green    84888    Virginia    2016-06-27 20:59:40.479893    2016-10-14 13:03:10.563759        \N    \N    \N    0    \N    \N    \N    \N    male
18648    Grover    Bayer    arnaldo_vandervort@kautzer.info    \N    Italy    East Valentine    731 Jaquan Ramp    81924    Georgia    2016-09-17 09:05:30.511676    2016-10-14 13:03:10.568256        \N    \N    \N    0    \N    \N    \N    \N    male
18649    Madisen    Frami    matteo@konopelski.org    \N    Cyprus    East Trycia    4552 Morissette Divide    64261    Oregon    2016-07-27 15:50:11.050093    2016-10-14 13:03:10.573396        \N    \N    \N    0    \N    \N    \N    \N    female
18650    Marcelle    Stoltenberg    berneice@miller.co    \N    Tonga    South Rhianna    9594 Nitzsche Locks    56917    Wyoming    2016-08-05 12:44:00.006259    2016-10-14 13:03:10.577921        \N    \N    \N    0    \N    \N    \N    \N    male
18651    Sienna    Reichel    maymie@konopelski.biz    \N    Mexico    Muhammadtown    961 Frederik Avenue    79539    Arkansas    2016-07-14 21:28:26.219008    2016-10-14 13:03:10.582372        \N    \N    \N    0    \N    \N    \N    \N    female
18652    Adriana    Keeling    alvena@bednarconn.biz    \N    Russian Federation    New Agustinberg    1458 Eloy Brooks    90793    Connecticut    2016-08-04 17:59:37.948132    2016-10-14 13:03:10.586764        \N    \N    \N    0    \N    \N    \N    \N    male
18653    Sandra    Crist    madonna_dietrich@schowalterbeahan.co    \N    Switzerland    Lake Noelton    226 Macy Neck    16494-2450    Pennsylvania    2016-09-01 23:06:43.022816    2016-10-14 13:03:10.590902        \N    \N    \N    0    \N    \N    \N    \N    male
18655    Earlene    Champlin    amely@swift.io    \N    Virgin Islands, British    Goyettefurt    59891 Marc Passage    53327-5312    Ohio    2016-07-02 22:47:08.927519    2016-10-14 13:03:10.595234        \N    \N    \N    0    \N    \N    \N    \N    female
18656    Jamey    Heidenreich    madisyn.ohara@johns.io    \N    Iceland    North Brennonbury    26482 Randal Brooks    31391-3664    Connecticut    2016-09-07 22:25:31.106054    2016-10-14 13:03:10.600354        \N    \N    \N    0    \N    \N    \N    \N    male
18657    Wilton    Fadel    agustin_reinger@haley.net    \N    Wallis and Futuna    Mervinside    6071 Rath Course    32708-4662    Wyoming    2016-07-05 19:04:01.979484    2016-10-14 13:03:10.605544        \N    \N    \N    0    \N    \N    \N    \N    male
18658    Eunice    Gorczany    jerod_kulas@kihn.com    \N    New Caledonia    Freemanton    70341 Idell Coves    88767-7894    Indiana    2016-09-24 05:56:29.806099    2016-10-14 13:03:10.611136        \N    \N    \N    0    \N    \N    \N    \N    male
18659    Assunta    Kuhlman    monte.haag@collinsbailey.biz    \N    El Salvador    Pacochaberg    4494 Klein Fort    75017-6476    Missouri    2016-09-11 18:17:22.575711    2016-10-14 13:03:10.617115        \N    \N    \N    0    \N    \N    \N    \N    male
18660    Missouri    Murray    brooks_hahn@will.org    \N    Guam    Dejaton    65244 West Shoals    71779    Texas    2016-08-31 09:43:44.137361    2016-10-14 13:03:10.622189        \N    \N    \N    0    \N    \N    \N    \N    female
18661    Rita    Moen    wade_marvin@ward.info    \N    Myanmar    Evanfort    53993 Tyler Motorway    61498    Ohio    2016-07-17 02:31:15.590003    2016-10-14 13:03:10.626674        \N    \N    \N    0    \N    \N    \N    \N    female
18662    Jazmyne    Ledner    kristina.macgyver@ortiz.io    \N    Brunei Darussalam    West Mauricefurt    2424 Hagenes Cliffs    86911    Arkansas    2016-09-20 00:34:18.360575    2016-10-14 13:03:10.630777        \N    \N    \N    0    \N    \N    \N    \N    male
18663    Tom    Halvorson    manuel@maggio.org    \N    Christmas Island    North Garrickstad    7789 Ivy Parkways    55035-3019    Illinois    2016-09-23 03:36:54.775222    2016-10-14 13:03:10.634935        \N    \N    \N    0    \N    \N    \N    \N    male
18664    Julia    Murray    dee@lebsack.co    \N    Ghana    Port Hipolito    3700 Gislason Mills    74675-0932    New Jersey    2016-06-30 09:14:28.765256    2016-10-14 13:03:10.639331        \N    \N    \N    0    \N    \N    \N    \N    female
18665    Eulalia    Reilly    lucienne.hudson@douglashauck.io    \N    Barbados    Mooreton    88516 Gail Pass    69965-5448    Kansas    2016-08-18 22:46:30.316485    2016-10-14 13:03:10.64362        \N    \N    \N    0    \N    \N    \N    \N    female
18666    Jacey    Kuhlman    estefania_morar@moriette.io    \N    Cameroon    West Daishafurt    5674 Lang Unions    71579    South Dakota    2016-09-29 03:30:54.085746    2016-10-14 13:03:10.647852        \N    \N    \N    0    \N    \N    \N    \N    male
18667    Brennon    Rohan    arthur.blanda@gaylord.co    \N    Switzerland    Carlosland    878 Narciso Pine    66767    New Mexico    2016-07-11 17:24:35.807395    2016-10-14 13:03:10.65177        \N    \N    \N    0    \N    \N    \N    \N    male
18668    Laurel    Okuneva    hailey_cremin@abshirefranecki.info    \N    Iran    Lake Xavier    339 Holly Hill    96302    Ohio    2016-09-26 18:22:52.162704    2016-10-14 13:03:10.655675        \N    \N    \N    0    \N    \N    \N    \N    female
18669    Krystal    Blick    morton@grant.net    \N    Italy    North Aliyahchester    948 Pfannerstill Key    93851    California    2016-07-18 17:13:54.615558    2016-10-14 13:03:10.659519        \N    \N    \N    0    \N    \N    \N    \N    male
18670    Courtney    Von    mavis@nitzschestiedemann.name    \N    United States Minor Outlying Islands    Schambergerchester    331 Wilburn Gateway    58374    Alabama    2016-07-22 17:38:59.677346    2016-10-14 13:03:10.663456        \N    \N    \N    0    \N    \N    \N    \N    male
18671    Coby    Murphy    abdul@skiles.biz    \N    Kyrgyz Republic    West Leannfort    9108 Nichole View    25486    Delaware    2016-09-13 08:01:59.958117    2016-10-14 13:03:10.667632        \N    \N    \N    0    \N    \N    \N    \N    female
18672    Kolby    Towne    santina@zemlaksauer.co    \N    Angola    East Hayleeland    10855 Sanford Curve    10877    Arkansas    2016-09-01 23:03:41.463667    2016-10-14 13:03:10.673652        \N    \N    \N    0    \N    \N    \N    \N    female
18673    Libbie    Waters    kaelyn_crist@krajcik.info    \N    Malta    Betsyview    4511 Sadie Run    55986-7027    New Hampshire    2016-06-28 08:55:51.620309    2016-10-14 13:03:10.678904        \N    \N    \N    0    \N    \N    \N    \N    male
18674    Ona    Swaniawski    kailyn@block.name    \N    Greenland    Danielleburgh    28769 Adriel Cove    66576-7726    Nevada    2016-09-22 22:06:44.825435    2016-10-14 13:03:10.685072        \N    \N    \N    0    \N    \N    \N    \N    female
18675    Eloise    Bernhard    tara.hermann@bodebins.biz    \N    France    Armstrongstad    42347 Forest Stream    73671    Kansas    2016-09-07 16:33:51.612788    2016-10-14 13:03:10.696608        \N    \N    \N    0    \N    \N    \N    \N    female
18676    Malika    Lowe    prudence_bauch@white.org    \N    Germany    New Emmittberg    3286 Heller Bridge    95486-2755    Minnesota    2016-09-12 13:38:28.593825    2016-10-14 13:03:10.701606        \N    \N    \N    0    \N    \N    \N    \N    female
18677    Charlie    Frami    dayna@zulauf.name    \N    France    Darioville    46637 Eudora Inlet    30599    Missouri    2016-06-23 06:04:14.72952    2016-10-14 13:03:10.705929        \N    \N    \N    0    \N    \N    \N    \N    female
18678    Jamarcus    Lueilwitz    robyn@schaefer.com    \N    Central African Republic    Hubertton    578 Reva Highway    85493-0959    Nebraska    2016-08-13 14:11:43.749963    2016-10-14 13:03:10.710111        \N    \N    \N    0    \N    \N    \N    \N    female
18679    Humberto    Weber    caleigh_lowe@rath.name    \N    Georgia    New Tyson    47104 Wade Divide    22885    Connecticut    2016-08-23 12:50:42.484179    2016-10-14 13:03:10.714217        \N    \N    \N    0    \N    \N    \N    \N    male
18680    Stacey    McKenzie    freda.nitzsche@kinghaley.biz    \N    Luxembourg    Lake Ophelia    62528 Hermann Prairie    29397-6447    Vermont    2016-09-19 18:57:14.048514    2016-10-14 13:03:10.71835        \N    \N    \N    0    \N    \N    \N    \N    male
18681    Brianne    Gislason    edyth@zieme.com    \N    Dominica    South Ryderview    827 Keebler Skyway    84666-3046    Arizona    2016-09-22 08:38:51.532523    2016-10-14 13:03:10.722192        \N    \N    \N    0    \N    \N    \N    \N    male
18682    Jaclyn    Rau    gladyce_gaylord@stoltenberg.org    \N    Greece    Amaramouth    7863 Goyette Plains    42390-4320    Washington    2016-06-28 23:41:37.826871    2016-10-14 13:03:10.726136        \N    \N    \N    0    \N    \N    \N    \N    female
18683    Angus    Doyle    jace_abbott@spinka.com    \N    Cote d'Ivoire    Port Andrew    196 Travis Knoll    55901-7786    West Virginia    2016-09-10 19:09:42.309652    2016-10-14 13:03:10.730539        \N    \N    \N    0    \N    \N    \N    \N    male
18684    Freeda    Rippin    winnifred_kuhn@douglas.info    \N    Netherlands Antilles    Ardithland    69102 Eino Dam    98244    Hawaii    2016-07-17 21:57:22.333889    2016-10-14 13:03:10.734851        \N    \N    \N    0    \N    \N    \N    \N    female
18685    Alize    Hoppe    alexie@schmeler.net    \N    Svalbard & Jan Mayen Islands    Angelitaborough    9399 Tito Path    83742-3596    Wyoming    2016-08-23 12:45:47.075042    2016-10-14 13:03:10.739886        \N    \N    \N    0    \N    \N    \N    \N    male
18686    Wilfrid    Lakin    colton@deckow.com    \N    Fiji    Jonathanland    45270 Lelia Keys    89313-4011    California    2016-07-28 22:52:01.272777    2016-10-14 13:03:10.746051        \N    \N    \N    0    \N    \N    \N    \N    male
18687    Jacques    Bernhard    loma@gusikowskiokeefe.net    \N    Iceland    Port Cydneyview    680 Autumn Stream    25213    Connecticut    2016-07-02 20:25:15.09136    2016-10-14 13:03:10.750879        \N    \N    \N    0    \N    \N    \N    \N    male
18688    Dovie    Greenfelder    kade_boyer@lockman.io    \N    Cuba    McDermottport    7833 Stan Cliffs    37223-6380    West Virginia    2016-08-19 00:43:32.15531    2016-10-14 13:03:10.756904        \N    \N    \N    0    \N    \N    \N    \N    male
18689    Lukas    Ullrich    heloise.beier@blockkiehn.name    \N    Japan    Paucekmouth    944 Myrna Locks    70359-9120    Alabama    2016-08-04 06:36:59.202881    2016-10-14 13:03:10.761759        \N    \N    \N    0    \N    \N    \N    \N    male
18690    Wanda    Harris    nelson_grant@jenkinscain.org    \N    Gambia    Reingerside    2533 Mohr Harbors    88654-0904    Pennsylvania    2016-08-14 04:29:10.022634    2016-10-14 13:03:10.76675        \N    \N    \N    0    \N    \N    \N    \N    female
18691    Sandy    Ryan    alex@hilll.info    \N    Gabon    Lolitahaven    51667 Breitenberg Tunnel    61380    North Dakota    2016-08-02 08:41:50.024222    2016-10-14 13:03:10.77092        \N    \N    \N    0    \N    \N    \N    \N    female
18692    Jackie    Runte    eriberto.stoltenberg@goyette.org    \N    Tajikistan    Gradymouth    3571 Swaniawski Ville    66252-2041    Montana    2016-08-31 21:44:38.100762    2016-10-14 13:03:10.775085        \N    \N    \N    0    \N    \N    \N    \N    female
18693    Magnus    Lockman    durward@daniel.biz    \N    Lebanon    New Moshe    72947 Natalia Tunnel    80969    Illinois    2016-08-25 12:44:48.853714    2016-10-14 13:03:10.792183        \N    \N    \N    0    \N    \N    \N    \N    male
18694    Crystal    Spencer    jacynthe@schulistlueilwitz.info    \N    Tunisia    New Leopoldochester    57352 Noel Stream    27507    Ohio    2016-09-03 14:44:09.168952    2016-10-14 13:03:10.799345        \N    \N    \N    0    \N    \N    \N    \N    female
18695    Kari    Thompson    pat@rosenbaum.biz    \N    Guatemala    Clementview    37453 Rosenbaum Via    73146    Connecticut    2016-07-12 16:22:32.057845    2016-10-14 13:03:10.804961        \N    \N    \N    0    \N    \N    \N    \N    female
18696    Eliseo    MacGyver    keegan@turcotte.biz    \N    Iceland    Steuberhaven    693 Evelyn Pass    96833    Ohio    2016-08-01 01:03:32.471915    2016-10-14 13:03:10.812841        \N    \N    \N    0    \N    \N    \N    \N    male
18697    Dominique    Batz    carrie.aufderhar@dicki.net    \N    Belgium    Lake Malindashire    4689 Windler Locks    55894-7045    New Jersey    2016-07-09 04:05:36.190381    2016-10-14 13:03:10.818866        \N    \N    \N    0    \N    \N    \N    \N    male
18698    Burley    Upton    steve.welch@prosacco.org    \N    Cayman Islands    Schimmelfurt    586 Clinton Falls    38613-6881    Washington    2016-07-19 05:01:26.685675    2016-10-14 13:03:10.823453        \N    \N    \N    0    \N    \N    \N    \N    female
18699    Owen    Ryan    christina.lubowitz@flatley.io    \N    Christmas Island    North Kendra    19601 Kenya Turnpike    79688    Massachusetts    2016-09-01 16:44:27.289469    2016-10-14 13:03:10.828929        \N    \N    \N    0    \N    \N    \N    \N    male
18700    Bert    Keebler    lamont_gerlach@torphyschimmel.name    \N    Lebanon    Pfefferberg    223 Herman Road    48051    Alaska    2016-09-16 00:33:02.197898    2016-10-14 13:03:10.83376        \N    \N    \N    0    \N    \N    \N    \N    female
18701    Don    Powlowski    otis.ruecker@gutmann.org    \N    Mayotte    Homenickfort    19608 Charity Plains    39711    Arizona    2016-07-09 03:37:07.132581    2016-10-14 13:03:10.838483        \N    \N    \N    0    \N    \N    \N    \N    male
18702    Emmitt    Dooley    lincoln@friesen.io    \N    Cuba    West Isaias    593 Gerlach Viaduct    62359-0089    Wisconsin    2016-09-24 19:38:42.025372    2016-10-14 13:03:10.842821        \N    \N    \N    0    \N    \N    \N    \N    male
18703    Kieran    Ruecker    jaydon@frami.org    \N    Ghana    North Reanna    48275 Constantin Neck    39811-9983    Louisiana    2016-08-16 03:18:34.968212    2016-10-14 13:03:10.847013        \N    \N    \N    0    \N    \N    \N    \N    male
18704    Leda    Upton    ruben_bahringer@watsica.co    \N    Senegal    West Eulaport    3262 Gerry Island    38196-4582    Wyoming    2016-07-09 20:36:47.142394    2016-10-14 13:03:10.852962        \N    \N    \N    0    \N    \N    \N    \N    female
18705    Justen    Harvey    effie@torpwill.com    \N    Guinea    Millerbury    36896 Olson Burgs    32363-8051    Colorado    2016-09-21 02:54:50.123782    2016-10-14 13:03:10.857191        \N    \N    \N    0    \N    \N    \N    \N    female
18706    Shea    Kub    delfina@flatley.org    \N    Paraguay    Leuschkechester    507 Kuvalis Run    15047    Michigan    2016-07-26 14:21:54.944788    2016-10-14 13:03:10.861379        \N    \N    \N    0    \N    \N    \N    \N    male
18707    Alexanne    Morissette    caden@brekkelemke.io    \N    Thailand    New Mariah    22964 Percival Forks    14946    Alaska    2016-08-17 17:06:54.192718    2016-10-14 13:03:10.865749        \N    \N    \N    0    \N    \N    \N    \N    female
18708    Emelia    Bayer    jaylin@nikolaus.co    \N    Estonia    Kristyfort    17572 Otto Terrace    24162-9967    Colorado    2016-09-08 23:39:01.416726    2016-10-14 13:03:10.870382        \N    \N    \N    0    \N    \N    \N    \N    male
18709    Ephraim    Koch    kaitlin.bartell@tromp.net    \N    Cameroon    Lake Ramon    2231 Considine Harbor    90553-9711    Colorado    2016-08-10 20:17:51.102863    2016-10-14 13:03:10.875051        \N    \N    \N    0    \N    \N    \N    \N    male
18710    Tianna    Carroll    desmond@rutherford.biz    \N    Vietnam    Lake Christianaland    526 Sawayn Expressway    63225    Delaware    2016-09-05 22:48:11.034476    2016-10-14 13:03:10.879731        \N    \N    \N    0    \N    \N    \N    \N    female
18711    Blanca    Mertz    connor@ruelschinner.co    \N    Slovenia    Demarioside    11500 McCullough Extensions    37524    Arkansas    2016-07-02 03:24:33.861682    2016-10-14 13:03:10.885237        \N    \N    \N    0    \N    \N    \N    \N    male
18712    Kaleb    Will    zoey_hartmann@rohan.co    \N    Peru    Funkfurt    312 Onie Divide    88876-6776    Wisconsin    2016-08-08 13:19:13.695025    2016-10-14 13:03:10.893074        \N    \N    \N    0    \N    \N    \N    \N    female
18713    Walton    Leannon    alexandrine@kulaslesch.biz    \N    Croatia    Lake Julie    31226 Sofia Fort    58725    Delaware    2016-08-08 03:46:56.435035    2016-10-14 13:03:10.898679        \N    \N    \N    0    \N    \N    \N    \N    male
18714    Rossie    Witting    shany.rowe@halvorsonhane.info    \N    Netherlands Antilles    East Isacville    421 Murray Stream    54857-2296    Massachusetts    2016-08-05 12:37:30.31833    2016-10-14 13:03:10.906358        \N    \N    \N    0    \N    \N    \N    \N    male
18715    Louie    Dickinson    jewell@windler.org    \N    United Kingdom    South Andreane    5417 Hagenes Circle    45378    Florida    2016-08-02 09:03:00.923467    2016-10-14 13:03:10.913653        \N    \N    \N    0    \N    \N    \N    \N    female
18716    Freeman    Gerlach    weldon_vonrueden@flatley.biz    \N    Virgin Islands, British    Mekhichester    6006 Parisian Trafficway    38566    Rhode Island    2016-07-16 15:58:33.212134    2016-10-14 13:03:10.91812        \N    \N    \N    0    \N    \N    \N    \N    female
18717    Marta    Grimes    stephen.frami@lehnerlangosh.com    \N    Republic of Korea    East Moisesville    530 Saul Rapids    27161-3983    Indiana    2016-07-08 00:23:54.427196    2016-10-14 13:03:10.922416        \N    \N    \N    0    \N    \N    \N    \N    female
18718    Florian    Ebert    brenden_feeney@harberkozey.com    \N    Denmark    East Rick    4120 Rodriguez Heights    63550-3541    Massachusetts    2016-06-30 21:13:17.158102    2016-10-14 13:03:10.926457        \N    \N    \N    0    \N    \N    \N    \N    female
18719    Gerry    Boyle    kaylie.nienow@kutchweimann.info    \N    Djibouti    East Della    4043 Kaden Falls    48982-2867    Montana    2016-09-21 13:09:36.063128    2016-10-14 13:03:10.930472        \N    \N    \N    0    \N    \N    \N    \N    male
18720    Amie    Little    margarete@hayeschristiansen.net    \N    Seychelles    North Robbstad    4402 Kovacek Gardens    78653-0116    South Carolina    2016-09-05 16:08:19.112707    2016-10-14 13:03:10.934513        \N    \N    \N    0    \N    \N    \N    \N    female
18721    Durward    Wuckert    lea.steuber@sanfordgulgowski.biz    \N    Guernsey    Nolaview    3528 Arvel Coves    47516-4140    Minnesota    2016-08-21 08:04:57.27949    2016-10-14 13:03:10.939134        \N    \N    \N    0    \N    \N    \N    \N    female
18722    Emerald    Ankunding    elouise@zemlak.biz    \N    Norfolk Island    Rickeyhaven    40700 Schowalter Ways    45199    Washington    2016-07-15 21:28:36.014116    2016-10-14 13:03:10.944593        \N    \N    \N    0    \N    \N    \N    \N    female
18723    Lauriane    Labadie    cristina@hermistonblick.io    \N    Holy See (Vatican City State)    New Grace    48255 Bud Branch    30554-4811    South Dakota    2016-07-22 07:55:43.21376    2016-10-14 13:03:10.949664        \N    \N    \N    0    \N    \N    \N    \N    female
18724    Rossie    Armstrong    alexys.larson@sporer.biz    \N    Serbia    West Oceaneland    948 Becker Mews    79705    Vermont    2016-07-04 21:57:42.204961    2016-10-14 13:03:10.954387        \N    \N    \N    0    \N    \N    \N    \N    male
18725    Vella    Krajcik    marc.tromp@funk.org    \N    Honduras    New Shawna    20418 Goyette Crossroad    55667    Iowa    2016-07-08 09:29:06.907678    2016-10-14 13:03:10.958811        \N    \N    \N    0    \N    \N    \N    \N    male
18726    Aida    Lueilwitz    kristin@uptonvandervort.biz    \N    Isle of Man    Mattiechester    40849 Lambert Parks    97389-8047    Vermont    2016-07-07 02:14:32.453859    2016-10-14 13:03:10.963403        \N    \N    \N    0    \N    \N    \N    \N    female
18727    Rebeca    Casper    eliezer@bruen.info    \N    Virgin Islands, British    North Anais    1124 Brisa Street    22180    Indiana    2016-08-14 06:46:19.305362    2016-10-14 13:03:10.968011        \N    \N    \N    0    \N    \N    \N    \N    male
18728    Marlene    Kiehn    amani.bailey@gusikowskilynch.org    \N    Romania    West Thomas    471 Mills Valley    98602    Massachusetts    2016-08-24 14:27:02.145808    2016-10-14 13:03:10.972953        \N    \N    \N    0    \N    \N    \N    \N    male
18729    Otha    Mitchell    oral@hoeger.io    \N    Morocco    Vallieberg    717 Kennedi Mountains    17380-6387    Maryland    2016-08-16 04:47:51.04046    2016-10-14 13:03:10.977249        \N    \N    \N    0    \N    \N    \N    \N    male
18730    Christop    Sauer    marjolaine@stanton.name    \N    Finland    Santiagoberg    73723 Lilliana Trail    10496-4928    California    2016-09-18 20:25:44.626154    2016-10-14 13:03:10.981381        \N    \N    \N    0    \N    \N    \N    \N    female
18731    Hilario    Jacobs    madilyn_dare@kuhn.org    \N    Cayman Islands    Mertzfort    2907 Efren Knoll    22954    Kansas    2016-07-22 01:26:57.657036    2016-10-14 13:03:10.986393        \N    \N    \N    0    \N    \N    \N    \N    male
18732    Westley    Little    minerva.quitzon@veum.biz    \N    Turkey    East Skylarberg    2947 Thurman Points    75072-5831    New Mexico    2016-08-10 05:05:44.670315    2016-10-14 13:03:10.991823        \N    \N    \N    0    \N    \N    \N    \N    male
18733    Colten    Zboncak    leilani.weinat@moriette.co    \N    France    Kertzmannberg    9185 Klocko Dale    58742-6512    Iowa    2016-06-25 03:52:49.120464    2016-10-14 13:03:10.999506        \N    \N    \N    0    \N    \N    \N    \N    female
18734    Penelope    Larson    amiya@daugherty.co    \N    Colombia    Port Lowellstad    77332 Lockman Square    50368    Maine    2016-09-08 17:23:14.438448    2016-10-14 13:03:11.004459        \N    \N    \N    0    \N    \N    \N    \N    female
18735    Earl    Simonis    tillman_feeney@oharaschulist.com    \N    Morocco    Kreigerton    3678 Lang Way    97437-2827    New Hampshire    2016-07-18 18:37:39.139894    2016-10-14 13:03:11.008992        \N    \N    \N    0    \N    \N    \N    \N    female
18737    Aletha    Fay    sally_gottlieb@runolfsdottir.net    \N    French Guiana    Marquardtside    85766 Reichel Parks    40529-1172    South Dakota    2016-08-19 01:22:26.522722    2016-10-14 13:03:11.01876        \N    \N    \N    0    \N    \N    \N    \N    male
18738    Bill    Sawayn    cristina@walsh.org    \N    Vietnam    New Madisen    764 Lind Mount    39101-8801    Massachusetts    2016-09-12 01:11:46.421436    2016-10-14 13:03:11.0241        \N    \N    \N    0    \N    \N    \N    \N    female
18739    Alysa    Rippin    patrick@kaulkewalter.org    \N    Trinidad and Tobago    East Ryan    83965 Doyle Vista    35785    Georgia    2016-07-16 18:48:02.656116    2016-10-14 13:03:11.029223        \N    \N    \N    0    \N    \N    \N    \N    male
18740    Caleb    Schumm    porter@williamsonjohns.biz    \N    Ukraine    Florinechester    70034 Shane Ford    14229-4386    Connecticut    2016-08-16 09:50:27.338969    2016-10-14 13:03:11.034105        \N    \N    \N    0    \N    \N    \N    \N    male
18741    Lacey    Kshlerin    nikita@hane.org    \N    Japan    Lake Eliberg    626 Henriette Radial    38281-8360    North Dakota    2016-08-02 02:25:29.663293    2016-10-14 13:03:11.038814        \N    \N    \N    0    \N    \N    \N    \N    female
18743    Stephon    Wiegand    dortha@jacobs.co    \N    Isle of Man    Lake Maestad    42520 Fred Lock    58558    Wisconsin    2016-09-08 12:35:18.588523    2016-10-14 13:03:11.044537        \N    \N    \N    0    \N    \N    \N    \N    male
18744    Esther    Cruickshank    leif@yundtwatsica.io    \N    Reunion    Donnellyfurt    86914 Korey Ville    95932-3060    Nebraska    2016-07-25 08:49:55.236127    2016-10-14 13:03:11.049124        \N    \N    \N    0    \N    \N    \N    \N    male
18745    Luna    Kunze    pearlie@sanford.net    \N    Cyprus    Shyannfort    397 Leuschke Hills    21079-7881    Florida    2016-08-18 12:24:33.804634    2016-10-14 13:03:11.057429        \N    \N    \N    0    \N    \N    \N    \N    female
18746    Bradly    Orn    gerard.torphy@denesik.io    \N    Cambodia    Quentinmouth    67084 Berenice Common    26777-2331    Nebraska    2016-09-02 02:09:51.374657    2016-10-14 13:03:11.062624        \N    \N    \N    0    \N    \N    \N    \N    male
18747    Kira    Grady    jasen_crooks@metz.io    \N    Croatia    Port Vanessachester    792 Aleen Meadow    89949    Oklahoma    2016-07-18 04:20:37.75671    2016-10-14 13:03:11.067409        \N    \N    \N    0    \N    \N    \N    \N    female
18748    Magdalen    Johns    helena@corkery.io    \N    Nicaragua    New Marcelleton    239 Paula Stream    81876-8548    Vermont    2016-07-07 19:59:43.45747    2016-10-14 13:03:11.071984        \N    \N    \N    0    \N    \N    \N    \N    female
18749    Addison    Swaniawski    paxton@hudson.net    \N    Italy    West Clay    982 Lindgren Mills    59099-8660    Louisiana    2016-07-03 18:25:26.37143    2016-10-14 13:03:11.076726        \N    \N    \N    0    \N    \N    \N    \N    male
18750    Oral    Luettgen    rolando_walter@grahamabshire.name    \N    Slovakia (Slovak Republic)    New Burniceland    932 Bert Park    98664-2216    North Carolina    2016-09-24 09:30:03.657527    2016-10-14 13:03:11.081211        \N    \N    \N    0    \N    \N    \N    \N    female
18751    Sophie    Kunde    elijah@koch.com    \N    Bangladesh    West Aimeestad    97738 Quitzon Drive    45010-3348    Vermont    2016-07-05 04:13:26.651441    2016-10-14 13:03:11.086045        \N    \N    \N    0    \N    \N    \N    \N    male
18752    Pete    Breitenberg    salma@funk.co    \N    United States Minor Outlying Islands    Gerhardstad    681 Quitzon Roads    89484    New Mexico    2016-07-08 21:19:06.125766    2016-10-14 13:03:11.090939        \N    \N    \N    0    \N    \N    \N    \N    male
18753    Elliot    Crooks    crystel@lynch.biz    \N    Argentina    Zboncakhaven    9951 Luettgen Falls    24092-0903    Tennessee    2016-07-14 04:59:54.914051    2016-10-14 13:03:11.095095        \N    \N    \N    0    \N    \N    \N    \N    male
18754    Caroline    Runte    nannie@rowe.net    \N    Ecuador    South Kellen    3704 Jaime Road    17959    Mississippi    2016-06-30 01:12:35.223459    2016-10-14 13:03:11.099687        \N    \N    \N    0    \N    \N    \N    \N    female
18755    Halie    Douglas    juana.osinski@wisozkschuster.biz    \N    Falkland Islands (Malvinas)    East Ellietown    3518 Runte Forges    77990-5606    Maryland    2016-08-04 07:45:32.186703    2016-10-14 13:03:11.103944        \N    \N    \N    0    \N    \N    \N    \N    male
18756    Desmond    Hahn    katherine@mueller.info    \N    Ecuador    Kadenport    5947 Alfreda Forges    32602    Georgia    2016-07-22 20:43:38.801678    2016-10-14 13:03:11.10826        \N    \N    \N    0    \N    \N    \N    \N    male
18757    Agustina    D'Amore    gretchen@welchhills.biz    \N    Lebanon    North Sophia    435 Sporer Harbors    62806    Michigan    2016-07-28 10:18:00.150317    2016-10-14 13:03:11.114315        \N    \N    \N    0    \N    \N    \N    \N    female
18758    Lea    Cassin    christopher_mueller@langworth.net    \N    Bosnia and Herzegovina    South Kileyberg    7428 Alda Summit    89038    New Hampshire    2016-07-06 16:27:12.310183    2016-10-14 13:03:11.120024        \N    \N    \N    0    \N    \N    \N    \N    female
18759    Felton    Casper    dawson@doylemonahan.org    \N    Haiti    Kathlynfurt    13465 Dillan Estate    12245    Utah    2016-07-28 21:39:25.704421    2016-10-14 13:03:11.12477        \N    \N    \N    0    \N    \N    \N    \N    female
18760    Kendra    Lockman    myrna@toyzboncak.io    \N    Central African Republic    Turcotteville    37386 Mills Underpass    82611-6781    Montana    2016-08-19 03:37:41.016443    2016-10-14 13:03:11.128927        \N    \N    \N    0    \N    \N    \N    \N    male
18761    Immanuel    Ferry    pearline@loweemmerich.co    \N    Pitcairn Islands    North Ofelia    525 Kuhlman Spur    36457-1841    Illinois    2016-09-19 13:58:14.118229    2016-10-14 13:03:11.133177        \N    \N    \N    0    \N    \N    \N    \N    male
18762    Yazmin    Monahan    madeline.leuschke@heel.name    \N    Colombia    Wymanshire    5196 O'Connell Gateway    11050-2359    Rhode Island    2016-07-08 22:25:32.918152    2016-10-14 13:03:11.137943        \N    \N    \N    0    \N    \N    \N    \N    male
18763    Yvette    Fisher    jennifer.williamson@bechtelar.biz    \N    Norfolk Island    Prosaccochester    7260 Orn Cove    73019-5785    Texas    2016-09-27 20:02:50.791174    2016-10-14 13:03:11.14247        \N    \N    \N    0    \N    \N    \N    \N    male
18765    Andrew    Wiegand    kiley@flatley.io    \N    Estonia    North Llewellyn    4307 Madelyn Station    12719-3613    Colorado    2016-08-18 15:25:02.705536    2016-10-14 13:03:11.147296        \N    \N    \N    0    \N    \N    \N    \N    male
18766    Mekhi    Kunze    patsy@fisher.net    \N    Saint Helena    Lake Gabebury    5645 Bashirian Lodge    30520-3637    Texas    2016-09-04 11:28:53.907831    2016-10-14 13:03:11.151642        \N    \N    \N    0    \N    \N    \N    \N    female
18767    Mateo    Walsh    mayra@hilll.co    \N    Pitcairn Islands    East Monicashire    12881 Labadie Turnpike    25587-5672    Mississippi    2016-07-25 20:16:49.467857    2016-10-14 13:03:11.155911        \N    \N    \N    0    \N    \N    \N    \N    female
18768    Saige    Lang    herbert_swift@schroeder.name    \N    Christmas Island    Amymouth    93815 DuBuque Fall    85312-6383    Wyoming    2016-06-29 09:30:42.164825    2016-10-14 13:03:11.160064        \N    \N    \N    0    \N    \N    \N    \N    male
18769    Tate    Boehm    horacio_fisher@osinskiabernathy.org    \N    Afghanistan    Runolfsdottirview    86866 Torp Mission    82120    Kentucky    2016-09-13 21:09:16.600572    2016-10-14 13:03:11.164832        \N    \N    \N    0    \N    \N    \N    \N    female
18770    Vena    Green    korey@moenvon.info    \N    India    North Paytonview    14815 Halvorson Ramp    18007    Mississippi    2016-06-24 08:53:45.76034    2016-10-14 13:03:11.169335        \N    \N    \N    0    \N    \N    \N    \N    female
18771    Okey    Wolff    gerson@romaguera.com    \N    Maldives    Gerholdborough    656 Collins Rapids    40580-3665    South Carolina    2016-07-16 16:14:29.747459    2016-10-14 13:03:11.173875        \N    \N    \N    0    \N    \N    \N    \N    male
18772    Candace    Brakus    joesph_mueller@ortiz.org    \N    Norway    East Eastonburgh    9436 Coty Trail    13252    New Mexico    2016-09-16 17:05:16.660471    2016-10-14 13:03:11.178418        \N    \N    \N    0    \N    \N    \N    \N    male
18773    Talia    Mertz    alf@blandawelch.info    \N    Lao People's Democratic Republic    North Ruthside    46607 Cummings Dam    84880    Kansas    2016-08-16 08:05:56.720049    2016-10-14 13:03:11.18328        \N    \N    \N    0    \N    \N    \N    \N    female
18774    Alden    Crona    keenan@oconnell.name    \N    Barbados    Sporerchester    831 Omari Ford    90699    Iowa    2016-07-21 23:31:32.315122    2016-10-14 13:03:11.187917        \N    \N    \N    0    \N    \N    \N    \N    male
18775    Jarrett    Little    aryanna@gleichner.net    \N    Germany    West Maria    327 Kolby Lodge    57877    Missouri    2016-09-26 01:26:56.546095    2016-10-14 13:03:11.192478        \N    \N    \N    0    \N    \N    \N    \N    female
18776    Josefa    Keebler    macy.mosciski@stromankunde.co    \N    Hungary    East Gudrun    189 Reuben Islands    96088-1302    Wisconsin    2016-07-21 01:52:41.650734    2016-10-14 13:03:11.197369        \N    \N    \N    0    \N    \N    \N    \N    male
18777    Laura    Wuckert    margret.gulgowski@damore.org    \N    Hungary    Jaleelburgh    51066 Gail Shores    67901    Colorado    2016-08-30 22:43:28.263983    2016-10-14 13:03:11.204625        \N    \N    \N    0    \N    \N    \N    \N    male
18778    Name    VonRueden    holden_hintz@beahan.biz    \N    Sweden    Grahamshire    7830 Parisian Village    44982    West Virginia    2016-07-02 01:26:36.431465    2016-10-14 13:03:11.209862        \N    \N    \N    0    \N    \N    \N    \N    male
18779    Misael    Turner    graham@sanford.com    \N    Singapore    West Arloland    254 Blanda Extension    59020    Vermont    2016-07-31 08:09:54.339654    2016-10-14 13:03:11.214524        \N    \N    \N    0    \N    \N    \N    \N    male
18780    Ottilie    Gutmann    talia@funkdouglas.co    \N    Bouvet Island (Bouvetoya)    Hobarttown    133 Christiansen Land    56149-0891    Alabama    2016-07-06 16:11:52.323711    2016-10-14 13:03:11.219359        \N    \N    \N    0    \N    \N    \N    \N    male
18781    Sandra    Sauer    jeffrey_pacocha@borer.name    \N    Eritrea    New Rhettton    58987 Kendall Terrace    31255-1884    Wyoming    2016-07-20 08:20:19.378504    2016-10-14 13:03:11.224335        \N    \N    \N    0    \N    \N    \N    \N    male
18783    Pearline    Emard    electa@ondrickavonrueden.co    \N    Guinea    Rolandoton    7244 Hirthe Row    43759    Florida    2016-07-20 02:33:42.12388    2016-10-14 13:03:11.229698        \N    \N    \N    0    \N    \N    \N    \N    male
18784    Torey    Larkin    timothy@boyerquigley.org    \N    Timor-Leste    New Christophe    744 West Key    44835    Nevada    2016-08-18 02:27:54.258602    2016-10-14 13:03:11.234284        \N    \N    \N    0    \N    \N    \N    \N    female
18785    Ethel    Bins    lonzo.maggio@watsica.io    \N    Thailand    Lake Tryciaside    2548 Reinger Roads    94591    Arizona    2016-09-14 19:23:46.624626    2016-10-14 13:03:11.239385        \N    \N    \N    0    \N    \N    \N    \N    female
18786    Stephen    Huels    arnaldo@langoshgerlach.name    \N    Norway    Port Elouiseton    366 Abdul Shoals    71202-7754    Rhode Island    2016-08-12 16:19:51.442466    2016-10-14 13:03:11.243833        \N    \N    \N    0    \N    \N    \N    \N    male
18787    Jettie    Schroeder    trent_ruecker@cummings.biz    \N    Qatar    Nicholausberg    2189 Mayert Summit    81657-1512    Pennsylvania    2016-08-18 05:21:50.86222    2016-10-14 13:03:11.248645        \N    \N    \N    0    \N    \N    \N    \N    female
18788    Glenna    Waelchi    liana.stroman@smith.io    \N    Anguilla    Ericafort    18365 Cummings Throughway    51975-2844    Wyoming    2016-09-06 14:11:40.009853    2016-10-14 13:03:11.254293        \N    \N    \N    0    \N    \N    \N    \N    female
18840    Bernard    Feeney    eveline@miller.name    \N    Mauritius    Volkmanmouth    21516 Kiley Mills    63126    Mississippi    2016-09-21 20:51:39.153847    2016-10-14 13:03:11.259358        \N    \N    \N    0    \N    \N    \N    \N    male
18789    Carroll    Jaskolski    erika.crist@schaeferswift.info    \N    Turks and Caicos Islands    Treutelfort    419 Annabel Squares    92672-3354    Louisiana    2016-06-27 15:53:50.162821    2016-10-14 13:03:11.26417        \N    \N    \N    0    \N    \N    \N    \N    male
18790    Ellie    Larkin    baylee@mitchellpadberg.name    \N    Indonesia    North Onieburgh    8156 Dietrich Locks    43392    Indiana    2016-09-07 14:42:19.451219    2016-10-14 13:03:11.2692        \N    \N    \N    0    \N    \N    \N    \N    female
18791    Antonia    Mills    melyna.parker@koeppferry.com    \N    Andorra    East Gavin    7698 Windler Trail    45596    Wyoming    2016-09-05 19:46:02.582222    2016-10-14 13:03:11.285        \N    \N    \N    0    \N    \N    \N    \N    female
18792    Alfred    Thompson    oral_farrell@smithjast.biz    \N    Nicaragua    Josiahbury    397 Volkman Walks    29265-7986    Arizona    2016-08-06 22:24:07.206823    2016-10-14 13:03:11.29077        \N    \N    \N    0    \N    \N    \N    \N    female
18793    Okey    Hackett    jacky.kaulke@weinat.io    \N    El Salvador    South Larry    8502 Runolfsson View    94893-9923    Louisiana    2016-06-30 14:09:31.829163    2016-10-14 13:03:11.295516        \N    \N    \N    0    \N    \N    \N    \N    female
18794    Raymundo    Kerluke    concepcion@padberg.net    \N    Venezuela    Hattieview    7336 Keshaun Run    23735-9317    New York    2016-08-14 07:11:50.552664    2016-10-14 13:03:11.300131        \N    \N    \N    0    \N    \N    \N    \N    female
18795    Trycia    Aufderhar    lukas_jacobson@beatty.net    \N    Sierra Leone    West Larissa    2415 Itzel Cliffs    30217-3610    Minnesota    2016-08-12 23:26:29.879724    2016-10-14 13:03:11.304882        \N    \N    \N    0    \N    \N    \N    \N    male
18796    Karlie    Ziemann    joshua@hansen.io    \N    Greenland    Jefferymouth    575 Britney Mountain    59150    Nevada    2016-09-15 21:54:21.49609    2016-10-14 13:03:11.309537        \N    \N    \N    0    \N    \N    \N    \N    male
18797    Casandra    Ward    simeon@kerluke.io    \N    Svalbard & Jan Mayen Islands    Flatleyborough    55332 Pouros Isle    27060    Wisconsin    2016-08-20 00:04:02.842913    2016-10-14 13:03:11.313711        \N    \N    \N    0    \N    \N    \N    \N    female
18799    Dandre    Stamm    kaleb@flatleyhilll.net    \N    Guyana    South Adolf    3434 Elinor Ville    59030    West Virginia    2016-08-26 08:26:52.560306    2016-10-14 13:03:11.317682        \N    \N    \N    0    \N    \N    \N    \N    male
18800    Joelle    Kling    evert.schumm@klockosauer.biz    \N    Bahrain    Sigridstad    9385 O'Conner Shores    73908    Georgia    2016-09-21 18:32:09.685909    2016-10-14 13:03:11.321854        \N    \N    \N    0    \N    \N    \N    \N    male
18801    Lilliana    Hahn    ansel@leuschke.info    \N    Solomon Islands    Kobefort    4442 Dickens Village    59037-1997    West Virginia    2016-08-22 13:05:09.221363    2016-10-14 13:03:11.328527        \N    \N    \N    0    \N    \N    \N    \N    female
18802    Missouri    Nienow    avis_dicki@kilbackgraham.name    \N    Bolivia    East Karliside    400 Mueller Pass    23205-1304    Maine    2016-08-14 03:36:41.243799    2016-10-14 13:03:11.333134        \N    \N    \N    0    \N    \N    \N    \N    female
18803    Berenice    Wuckert    freeman.batz@davis.io    \N    Egypt    New Abigail    378 Mills Streets    29690-4863    North Dakota    2016-07-10 15:30:30.401682    2016-10-14 13:03:11.337613        \N    \N    \N    0    \N    \N    \N    \N    male
18804    Ike    Kihn    trystan_prosacco@brakus.net    \N    Norway    New Domenico    36610 Ferry Glens    99711    Colorado    2016-07-05 17:42:17.562216    2016-10-14 13:03:11.342132        \N    \N    \N    0    \N    \N    \N    \N    female
18805    Marquise    Leannon    caria.ziemann@lesch.info    \N    Norway    Port Lue    692 Stehr Oval    72487    Washington    2016-09-15 01:34:43.061355    2016-10-14 13:03:11.346847        \N    \N    \N    0    \N    \N    \N    \N    female
18806    Erin    Armstrong    magnus@moriette.net    \N    Ghana    Luettgenbury    298 Balistreri Corner    68283    Wyoming    2016-08-21 21:50:11.521932    2016-10-14 13:03:11.351216        \N    \N    \N    0    \N    \N    \N    \N    male
18807    Eldred    Gleason    alyon.schmitt@lesch.biz    \N    Palau    South Jodie    73159 Bode Fort    92410-4719    Oregon    2016-07-27 14:03:40.197396    2016-10-14 13:03:11.355582        \N    \N    \N    0    \N    \N    \N    \N    male
18808    Priscilla    Heaney    mabel.mueller@runteklein.io    \N    United Kingdom    Bechtelarshire    59643 Bernadine Club    45782-4974    Georgia    2016-08-18 10:55:55.822201    2016-10-14 13:03:11.360286        \N    \N    \N    0    \N    \N    \N    \N    female
18809    Lela    Medhurst    dianna@jaskolski.name    \N    Mauritania    Rahulville    403 Hoppe Cliffs    60257-4733    Oregon    2016-07-28 19:45:52.359243    2016-10-14 13:03:11.364396        \N    \N    \N    0    \N    \N    \N    \N    female
18810    Lamont    Schimmel    marlene_reinger@townemarvin.info    \N    Tunisia    Gracieside    227 Lynch Mill    73710    Oregon    2016-07-05 22:51:55.269533    2016-10-14 13:03:11.368496        \N    \N    \N    0    \N    \N    \N    \N    female
18811    Reginald    Blanda    emile_bailey@stromankonopelski.net    \N    Cameroon    East Shayne    3350 Kendall Ville    50446    New Mexico    2016-09-29 10:53:21.348396    2016-10-14 13:03:11.372841        \N    \N    \N    0    \N    \N    \N    \N    male
18812    Julian    Morissette    merl.hirthe@feestko.org    \N    Congo    Port Amarichester    8027 Wiza Mill    73295-5256    South Carolina    2016-09-14 22:03:02.319478    2016-10-14 13:03:11.37749        \N    \N    \N    0    \N    \N    \N    \N    male
18813    Laurie    Zboncak    aric.lueilwitz@thielcorwin.name    \N    Saint Lucia    New Ray    13508 Savanah Forest    37615-7891    Connecticut    2016-07-04 05:05:50.969688    2016-10-14 13:03:11.382265        \N    \N    \N    0    \N    \N    \N    \N    male
18814    Lori    Gislason    will_feeney@hyatt.biz    \N    Antigua and Barbuda    East Genesis    4731 Melany Hollow    18498    Connecticut    2016-08-29 07:23:30.66166    2016-10-14 13:03:11.386933        \N    \N    \N    0    \N    \N    \N    \N    male
18815    Luisa    Witting    jeramy_cruickshank@gutkowski.io    \N    Congo    Willmsbury    458 Homenick Row    67394-4742    Nebraska    2016-08-03 01:37:58.972346    2016-10-14 13:03:11.390978        \N    \N    \N    0    \N    \N    \N    \N    male
18816    Morton    King    jared.grady@lakingoyette.org    \N    Saint Helena    Port Carmine    79780 Simone Forest    99449-1056    New Jersey    2016-08-26 11:30:51.997432    2016-10-14 13:03:11.395295        \N    \N    \N    0    \N    \N    \N    \N    female
18817    Josie    Armstrong    harold@grahamcummings.io    \N    Dominican Republic    Cruickshankton    89663 Audra Islands    10892    Iowa    2016-08-14 09:56:41.409507    2016-10-14 13:03:11.399856        \N    \N    \N    0    \N    \N    \N    \N    male
18818    Kendra    Ritchie    thad.tillman@jakubowskimuller.org    \N    Montenegro    West Bulah    7629 Rosanna Forges    80741    Maryland    2016-07-13 21:28:38.798882    2016-10-14 13:03:11.40432        \N    \N    \N    0    \N    \N    \N    \N    female
18819    Herta    Spencer    neoma.zulauf@miller.info    \N    Argentina    East Imelda    45034 Lauretta Brooks    42994-6503    New Mexico    2016-08-24 15:41:33.761646    2016-10-14 13:03:11.40891        \N    \N    \N    0    \N    \N    \N    \N    male
18820    Kennedy    Cronin    evans_schmeler@keeling.name    \N    Indonesia    North Hannamouth    3763 Seamus Wall    71679    North Dakota    2016-07-20 11:48:13.048672    2016-10-14 13:03:11.413608        \N    \N    \N    0    \N    \N    \N    \N    female
18821    Adolphus    Daniel    geo.gorczany@hauckfeil.name    \N    Romania    Westleyburgh    5916 Johns Squares    67408-3970    New York    2016-07-27 19:40:22.32328    2016-10-14 13:03:11.417647        \N    \N    \N    0    \N    \N    \N    \N    male
18822    Hailie    Goyette    taryn_von@bergstrom.name    \N    Isle of Man    South Angusbury    924 Bergnaum Lights    35481-0968    Iowa    2016-07-25 18:14:18.82528    2016-10-14 13:03:11.422212        \N    \N    \N    0    \N    \N    \N    \N    male
18823    Vincent    Cummings    justyn.lynch@huels.name    \N    Micronesia    Rachellemouth    52326 Hyman Isle    83955    Louisiana    2016-07-21 08:55:10.215373    2016-10-14 13:03:11.426215        \N    \N    \N    0    \N    \N    \N    \N    female
18824    Dale    Hintz    jovan@gulgowski.org    \N    Bermuda    New Rocio    64303 Kayli Plains    69182    Kansas    2016-08-08 06:32:26.315449    2016-10-14 13:03:11.43049        \N    \N    \N    0    \N    \N    \N    \N    female
18825    Hertha    Lebsack    elias_satterfield@vonrueden.net    \N    Namibia    Port Maudie    8914 Fabian Parks    61624    Maine    2016-08-31 09:33:37.308048    2016-10-14 13:03:11.435134        \N    \N    \N    0    \N    \N    \N    \N    male
18826    Timmy    Rodriguez    sterling_rowe@collier.biz    \N    Mongolia    East Dewaynefort    28267 Bechtelar Mill    30312-9761    New York    2016-07-20 09:18:44.360345    2016-10-14 13:03:11.442424        \N    \N    \N    0    \N    \N    \N    \N    female
18827    Judy    Quigley    beaulah@jenkinsemmerich.name    \N    Guyana    South Garrison    43943 Zieme Fall    19030-8374    Rhode Island    2016-08-07 12:05:44.68956    2016-10-14 13:03:11.4485        \N    \N    \N    0    \N    \N    \N    \N    female
18828    Frankie    Franecki    marquis_bauch@spinka.org    \N    Saint Kitts and Nevis    New Evie    700 Gene Causeway    42718-8055    Washington    2016-09-06 03:52:07.488707    2016-10-14 13:03:11.453608        \N    \N    \N    0    \N    \N    \N    \N    male
18829    Hobart    Wisozk    prince@nitzsche.info    \N    Austria    Davonberg    56435 Emiliano Land    20729    Wyoming    2016-07-30 11:04:10.680993    2016-10-14 13:03:11.461575        \N    \N    \N    0    \N    \N    \N    \N    female
18830    Alvis    Gislason    price@hermiston.co    \N    Azerbaijan    Odessafurt    14056 Layne Plain    55847-9902    Vermont    2016-07-10 21:47:16.314524    2016-10-14 13:03:11.466981        \N    \N    \N    0    \N    \N    \N    \N    male
18831    Alexis    Durgan    edyth_deckow@gulgowski.name    \N    Estonia    Brekkebury    95205 Champlin Plaza    70719    Kentucky    2016-07-09 18:25:26.775568    2016-10-14 13:03:11.479847        \N    \N    \N    0    \N    \N    \N    \N    male
18832    Timothy    Gerhold    justyn.keeling@sporer.co    \N    Cocos (Keeling) Islands    Osbaldostad    5435 Aniyah Expressway    58056-9114    Vermont    2016-08-03 00:37:55.092594    2016-10-14 13:03:11.494131        \N    \N    \N    0    \N    \N    \N    \N    male
18833    Iliana    Gutkowski    janet_west@little.co    \N    Montserrat    Leschfurt    6079 Dare Isle    77285    Mississippi    2016-08-13 15:14:35.525659    2016-10-14 13:03:11.500088        \N    \N    \N    0    \N    \N    \N    \N    female
18834    Percy    Cremin    israel@okeefe.name    \N    Nicaragua    South Jerod    8398 Bruen Port    15982    Maryland    2016-09-13 20:27:38.952579    2016-10-14 13:03:11.508178        \N    \N    \N    0    \N    \N    \N    \N    male
18835    Hilma    Cassin    monica@robertsmiller.info    \N    Japan    West Micheleborough    2001 Delbert Mount    69924-9298    Virginia    2016-09-20 09:50:49.184927    2016-10-14 13:03:11.513892        \N    \N    \N    0    \N    \N    \N    \N    female
18836    Roman    Herzog    mertie.jenkins@west.net    \N    Bosnia and Herzegovina    East Bellemouth    33147 Mohr Pines    96515    Hawaii    2016-09-24 18:36:30.953508    2016-10-14 13:03:11.524716        \N    \N    \N    0    \N    \N    \N    \N    female
18837    Ricky    Howell    lillian.ledner@white.name    \N    Antarctica (the territory South of 60 deg S)    Mayershire    1160 Colten Route    46048    Nevada    2016-08-31 07:56:20.30181    2016-10-14 13:03:11.530223        \N    \N    \N    0    \N    \N    \N    \N    male
18838    Marjolaine    Mills    myles.kutch@block.name    \N    Saint Barthelemy    North Katelyn    788 Berniece Shoal    73376-2866    Colorado    2016-07-10 16:56:23.752481    2016-10-14 13:03:11.536471        \N    \N    \N    0    \N    \N    \N    \N    female
18841    Rigoberto    Koch    ines_williamson@schmittwalsh.biz    \N    Maldives    North Benton    62710 Federico Roads    64395-5873    Vermont    2016-09-24 19:34:12.16411    2016-10-14 13:03:11.541614        \N    \N    \N    0    \N    \N    \N    \N    female
18842    Christina    Marks    yvette.lang@rippingoyette.net    \N    Lao People's Democratic Republic    Lake Paige    3658 Cummerata Burg    63046-3560    South Dakota    2016-09-06 22:52:57.28961    2016-10-14 13:03:11.550028        \N    \N    \N    0    \N    \N    \N    \N    female
18844    Alice    Heathcote    veronica.cronin@kirlin.com    \N    Cameroon    New Francisco    779 Halvorson Common    26123    Arizona    2016-09-08 17:36:47.305314    2016-10-14 13:03:11.554927        \N    \N    \N    0    \N    \N    \N    \N    female
18845    Favian    Kuhic    isabel.okuneva@denesik.info    \N    Comoros    O'Haraville    34228 Johnathan Estates    73163-1043    New Jersey    2016-09-18 08:27:44.766172    2016-10-14 13:03:11.561676        \N    \N    \N    0    \N    \N    \N    \N    female
18847    Shany    Donnelly    hadley@buckridgeromaguera.name    \N    Reunion    North Webster    3957 Brandi Ville    10046    New Hampshire    2016-07-28 17:40:49.636988    2016-10-14 13:03:11.566483        \N    \N    \N    0    \N    \N    \N    \N    female
18848    Jamey    King    carmel@jacobsonheidenreich.io    \N    Iceland    New Tedburgh    991 Charlotte Islands    62039-9989    New Mexico    2016-09-10 20:56:39.542322    2016-10-14 13:03:11.571695        \N    \N    \N    0    \N    \N    \N    \N    male
18849    Tanner    Rolfson    veda@stokes.com    \N    Libyan Arab Jamahiriya    Emmanuelburgh    729 Mason Club    13530-2769    Rhode Island    2016-07-21 13:38:57.627864    2016-10-14 13:03:11.576403        \N    \N    \N    0    \N    \N    \N    \N    female
18850    Eleanore    Erdman    joanny@goyettehammes.biz    \N    Tuvalu    East Geraldinehaven    7985 Avery Lock    87718    North Carolina    2016-09-25 06:45:10.642676    2016-10-14 13:03:11.580605        \N    \N    \N    0    \N    \N    \N    \N    female
18851    Marta    Hansen    kendra.blanda@macejkovic.biz    \N    United Kingdom    Rueckerstad    4289 Delia Fords    90256    Virginia    2016-08-10 17:13:41.622228    2016-10-14 13:03:11.584639        \N    \N    \N    0    \N    \N    \N    \N    female
18852    Tressie    Gislason    jewell@senger.co    \N    Sierra Leone    Port Forrest    475 Moen Forge    15964    Arizona    2016-09-18 07:19:09.950109    2016-10-14 13:03:11.588947        \N    \N    \N    0    \N    \N    \N    \N    male
18853    Enoch    Walsh    trent@brown.net    \N    Benin    North Waylonborough    463 Funk Stravenue    58781-6764    Nevada    2016-06-26 04:11:57.69467    2016-10-14 13:03:11.593726        \N    \N    \N    0    \N    \N    \N    \N    female
18854    Esta    McCullough    arno.gleason@wisozk.com    \N    Suriname    Halvorsontown    27113 Annabell Lakes    95737    Kentucky    2016-08-09 21:37:17.43168    2016-10-14 13:03:11.598207        \N    \N    \N    0    \N    \N    \N    \N    female
18856    Ismael    Feeney    madelynn_hegmann@abshire.io    \N    Cambodia    South Chauncey    474 Hillard Rest    98669    Nebraska    2016-08-27 22:07:03.332457    2016-10-14 13:03:11.602979        \N    \N    \N    0    \N    \N    \N    \N    female
18857    Sallie    Carroll    elna.cole@bruen.org    \N    Mali    East Kamryn    135 Gerlach Groves    98040    New Jersey    2016-08-06 21:18:51.773624    2016-10-14 13:03:11.608052        \N    \N    \N    0    \N    \N    \N    \N    female
18858    Hettie    Lind    trinity@jacobs.org    \N    Bangladesh    Tinaton    76727 Schowalter Spur    83689-7631    New York    2016-08-19 09:13:00.264612    2016-10-14 13:03:11.612361        \N    \N    \N    0    \N    \N    \N    \N    male
18859    Celestine    Schimmel    lizeth.doyle@howe.co    \N    Tokelau    East Eleanorachester    46391 Devan Throughway    67765-4086    Alaska    2016-08-27 01:29:30.677929    2016-10-14 13:03:11.617598        \N    \N    \N    0    \N    \N    \N    \N    male
18860    John    Ullrich    josefa.heller@wunsch.com    \N    Malaysia    Hermanmouth    5925 Anabel Circles    30399    Oregon    2016-07-04 16:16:23.400318    2016-10-14 13:03:11.622419        \N    \N    \N    0    \N    \N    \N    \N    female
18861    Kale    Harris    jerome_toy@howell.name    \N    Bahrain    Prohaskaview    520 Howell Orchard    71652-4814    Florida    2016-09-24 04:32:31.610379    2016-10-14 13:03:11.628009        \N    \N    \N    0    \N    \N    \N    \N    female
18862    Robbie    Hand    emelia@marks.biz    \N    Macedonia    Lake Sherman    5197 Koepp Alley    18290-8827    Nebraska    2016-08-05 08:35:17.387949    2016-10-14 13:03:11.632608        \N    \N    \N    0    \N    \N    \N    \N    female
18863    Rosella    Zboncak    penelope@boyer.net    \N    Samoa    Katlynnmouth    9011 Jacobi Rest    43157-4208    Maryland    2016-08-02 11:58:48.232846    2016-10-14 13:03:11.640113        \N    \N    \N    0    \N    \N    \N    \N    female
18864    Orlando    Donnelly    easter.schuppe@blick.info    \N    Lao People's Democratic Republic    Karinaville    811 Kody Island    63113    Mississippi    2016-08-08 15:47:31.754343    2016-10-14 13:03:11.648155        \N    \N    \N    0    \N    \N    \N    \N    male
18865    Lonzo    Weber    kaylah@christiansendaugherty.info    \N    Virgin Islands, U.S.    East Savannachester    1896 Stephen Mountain    75803-8664    Illinois    2016-09-15 05:12:34.839952    2016-10-14 13:03:11.659342        \N    \N    \N    0    \N    \N    \N    \N    male
18866    Bradly    Williamson    devon@christiansen.co    \N    Libyan Arab Jamahiriya    VonRuedenchester    409 Smitham Prairie    33993-6551    Maryland    2016-09-01 07:00:17.40311    2016-10-14 13:03:11.666895        \N    \N    \N    0    \N    \N    \N    \N    male
18867    Jovani    Green    kaitlin_oreilly@mcclure.name    \N    Bahrain    North Felipeborough    64322 Sauer Loop    15895-7330    Maryland    2016-09-04 06:22:03.325747    2016-10-14 13:03:11.672665        \N    \N    \N    0    \N    \N    \N    \N    female
18868    Jesus    Deckow    mckenzie@smithamlangworth.co    \N    Kyrgyz Republic    Port Raquelton    3300 Natasha Ville    63095    Tennessee    2016-07-22 07:17:10.656479    2016-10-14 13:03:11.678361        \N    \N    \N    0    \N    \N    \N    \N    male
18869    Peter    Graham    carol@romaguerasteuber.com    \N    Mali    Bartellmouth    5498 Savanah Club    63733-2882    Wisconsin    2016-07-16 00:04:06.392425    2016-10-14 13:03:11.684188        \N    \N    \N    0    \N    \N    \N    \N    female
18870    Jean    Crooks    terence@lakin.info    \N    Central African Republic    Howellview    7869 Ericka Canyon    19037-2635    California    2016-09-08 08:08:59.081973    2016-10-14 13:03:11.68989        \N    \N    \N    0    \N    \N    \N    \N    male
18872    Juston    McGlynn    margaretta_shields@hillsokon.org    \N    United Kingdom    New Claudie    19031 Ankunding Mews    86700    Iowa    2016-09-27 18:47:34.330082    2016-10-14 13:03:11.694988        \N    \N    \N    0    \N    \N    \N    \N    male
18873    Watson    Haag    lucienne@kleinkohler.name    \N    Czech Republic    Gleasonstad    69656 Therese Dale    62555-4902    Iowa    2016-07-09 02:42:26.464857    2016-10-14 13:03:11.700361        \N    \N    \N    0    \N    \N    \N    \N    female
18874    Haley    Padberg    jace@williamson.net    \N    Georgia    Meaghanfurt    89691 Bogisich Grove    36527    Connecticut    2016-09-23 19:50:46.462079    2016-10-14 13:03:11.705958        \N    \N    \N    0    \N    \N    \N    \N    female
18875    Delphia    Schimmel    amparo@maggio.co    \N    Bhutan    Maybellmouth    94600 Walsh Plaza    55585    Wisconsin    2016-08-22 13:28:02.217976    2016-10-14 13:03:11.711286        \N    \N    \N    0    \N    \N    \N    \N    female
18876    Tia    Padberg    jasmin@bergstrom.co    \N    Luxembourg    Emmerichstad    6984 Barbara Lodge    96194    North Dakota    2016-08-27 18:36:59.326761    2016-10-14 13:03:11.716346        \N    \N    \N    0    \N    \N    \N    \N    female
18877    Maude    Fahey    colleen@muller.biz    \N    Uganda    North Nilsberg    826 Barton Springs    14164    Minnesota    2016-09-11 13:48:19.135836    2016-10-14 13:03:11.721622        \N    \N    \N    0    \N    \N    \N    \N    male
18878    Norene    O'Hara    elinore@nikolaus.info    \N    Guadeloupe    Port Antoniatown    238 Howell Spring    63826-9948    Montana    2016-08-31 03:22:08.262854    2016-10-14 13:03:11.725977        \N    \N    \N    0    \N    \N    \N    \N    female
18926    Dax    Russel    amanda@grant.biz    \N    Bahrain    Fadelland    5580 Stanton Green    47151    Delaware    2016-09-15 11:34:00.983764    2016-10-14 13:03:11.962275        \N    \N    \N    0    \N    \N    \N    \N    male
18879    Alejandrin    Greenfelder    cole_vonrueden@hansen.com    \N    Botswana    West Tatyana    464 Romaguera Forges    65312    Mississippi    2016-06-30 20:41:26.214092    2016-10-14 13:03:11.730746        \N    \N    \N    0    \N    \N    \N    \N    male
18880    Abdullah    Predovic    hollis@weinat.info    \N    Madagascar    South Cooper    7834 Jerde Curve    89856    Louisiana    2016-08-11 14:50:51.567183    2016-10-14 13:03:11.736835        \N    \N    \N    0    \N    \N    \N    \N    female
18881    Freeda    Stanton    alisha@wehner.com    \N    Saint Helena    Johnsonton    3966 Effertz Stravenue    47348    Kansas    2016-09-02 07:38:29.594131    2016-10-14 13:03:11.741382        \N    \N    \N    0    \N    \N    \N    \N    male
18882    Amber    Rogahn    nikita.schroeder@kelerzemlak.org    \N    Kenya    New Madison    770 Will Track    57840    Oklahoma    2016-08-18 11:08:15.620647    2016-10-14 13:03:11.745593        \N    \N    \N    0    \N    \N    \N    \N    male
18883    Abigayle    Kohler    dominique@reynolds.net    \N    Zambia    Ashaburgh    61259 Rudolph Crossroad    20646    Virginia    2016-07-14 10:28:54.707412    2016-10-14 13:03:11.74957        \N    \N    \N    0    \N    \N    \N    \N    female
18884    Dusty    Purdy    sydnee@larson.name    \N    Grenada    Claudeton    8909 Javier Spur    61842    West Virginia    2016-08-24 19:59:15.539804    2016-10-14 13:03:11.753967        \N    \N    \N    0    \N    \N    \N    \N    female
18885    Orpha    Beahan    guiseppe_leuschke@price.co    \N    Morocco    North Tierra    3905 Darrion View    17144-6367    Florida    2016-07-07 21:15:50.090759    2016-10-14 13:03:11.758208        \N    \N    \N    0    \N    \N    \N    \N    female
18886    Stephanie    Jones    monica@lemke.co    \N    Panama    South Onie    8307 Hudson Shoals    63538    Oklahoma    2016-07-26 14:43:38.676218    2016-10-14 13:03:11.762623        \N    \N    \N    0    \N    \N    \N    \N    female
18887    Brian    Hermann    taya@mclaughlindickinson.io    \N    Nauru    New Johnsontown    53071 Prohaska Camp    40773    Indiana    2016-07-07 14:25:19.856494    2016-10-14 13:03:11.767056        \N    \N    \N    0    \N    \N    \N    \N    male
18888    Madelyn    Torphy    kayley@zemlak.name    \N    Saint Helena    Fayberg    45059 Corkery Ville    47328    Michigan    2016-07-21 02:56:37.354588    2016-10-14 13:03:11.771715        \N    \N    \N    0    \N    \N    \N    \N    male
18889    Hector    Murray    davonte_walter@lefflerwalter.net    \N    Ethiopia    North Rebeca    395 Harvey Extension    96513    Delaware    2016-08-18 20:51:56.780759    2016-10-14 13:03:11.776289        \N    \N    \N    0    \N    \N    \N    \N    male
18890    Berta    Barton    alec.stehr@wuckertschroeder.info    \N    Cyprus    South Myrtlehaven    5831 Trinity Cliff    55325    New Mexico    2016-06-24 16:52:57.69549    2016-10-14 13:03:11.781007        \N    \N    \N    0    \N    \N    \N    \N    male
18892    Gretchen    Effertz    emmalee_sauer@bartellgutkowski.io    \N    Germany    Ardellaview    335 Annie Ville    49512    Connecticut    2016-07-26 10:16:13.480523    2016-10-14 13:03:11.78539        \N    \N    \N    0    \N    \N    \N    \N    male
18893    Julia    Romaguera    carmella_reichert@langworth.io    \N    Italy    Palmafurt    2458 Monique Highway    87325-2800    Texas    2016-07-19 17:20:58.493128    2016-10-14 13:03:11.789868        \N    \N    \N    0    \N    \N    \N    \N    female
18894    Marcelle    Fadel    verda@barton.info    \N    Bolivia    Devanfurt    24170 Savion Haven    78306-0423    Montana    2016-08-05 00:47:23.806895    2016-10-14 13:03:11.794547        \N    \N    \N    0    \N    \N    \N    \N    female
18895    Montana    Cassin    mikel_ruel@huelmclaughlin.name    \N    Bangladesh    North Diamond    4733 Cartwright Unions    59734    Missouri    2016-07-09 08:38:54.808704    2016-10-14 13:03:11.799202        \N    \N    \N    0    \N    \N    \N    \N    male
18896    Garnett    Tremblay    douglas@manteanderson.name    \N    Vietnam    Lake Earleneton    21817 Ebert Walk    45266    Idaho    2016-07-14 11:06:22.712032    2016-10-14 13:03:11.804892        \N    \N    \N    0    \N    \N    \N    \N    male
18897    Sabryna    Bailey    merlin@oconnell.org    \N    Montserrat    Pagacborough    8086 Emmie Ridge    19958-3742    Indiana    2016-09-01 01:13:12.546534    2016-10-14 13:03:11.809869        \N    \N    \N    0    \N    \N    \N    \N    female
18898    Marilie    Wiza    jaylin_towne@kiehn.co    \N    Papua New Guinea    North Marcellus    1092 Nasir Causeway    73218-7050    California    2016-08-09 16:49:15.628581    2016-10-14 13:03:11.814283        \N    \N    \N    0    \N    \N    \N    \N    male
18899    Mazie    Spinka    aidan_kunde@gutkowski.net    \N    Tunisia    Morarton    81300 Willow Junction    16294-9238    Maryland    2016-09-06 05:20:45.356658    2016-10-14 13:03:11.818674        \N    \N    \N    0    \N    \N    \N    \N    female
18900    Adrain    Schroeder    giles.welch@kuvalishauck.io    \N    Tanzania    Treutelbury    754 Filomena Path    63148    Hawaii    2016-09-18 05:57:26.920136    2016-10-14 13:03:11.825678        \N    \N    \N    0    \N    \N    \N    \N    female
18901    Garth    Ortiz    britney_rice@koch.org    \N    Guadeloupe    Edythside    638 Ziemann Village    95483-4701    Illinois    2016-08-12 01:37:28.298259    2016-10-14 13:03:11.83072        \N    \N    \N    0    \N    \N    \N    \N    female
18902    Connie    Hermann    liliane_kutch@johnston.co    \N    Kyrgyz Republic    Lake Larissa    19746 Diego Meadow    52022-0509    Florida    2016-08-06 05:02:21.296757    2016-10-14 13:03:11.836597        \N    \N    \N    0    \N    \N    \N    \N    female
18903    Kyler    Thompson    delmer@spencer.io    \N    Andorra    North Ada    5371 Francis Forges    25540    Arizona    2016-09-17 10:11:47.586518    2016-10-14 13:03:11.840522        \N    \N    \N    0    \N    \N    \N    \N    male
18904    Monserrat    Torphy    electa@johnston.com    \N    Bahrain    New Ricoport    15729 Earnestine Land    15018-7590    Tennessee    2016-07-05 00:09:44.397484    2016-10-14 13:03:11.845637        \N    \N    \N    0    \N    \N    \N    \N    male
18905    Chaim    Rath    brown_lubowitz@skiles.name    \N    Timor-Leste    South Justynville    6523 Flatley Garden    68962-5374    South Dakota    2016-08-26 15:43:24.058344    2016-10-14 13:03:11.849976        \N    \N    \N    0    \N    \N    \N    \N    male
18906    Marcia    Farrell    brady@cummings.net    \N    Papua New Guinea    Port Pauline    4031 Verda Islands    53726    Indiana    2016-09-27 05:47:16.752345    2016-10-14 13:03:11.858004        \N    \N    \N    0    \N    \N    \N    \N    female
18907    Corbin    Reichel    bernita_oconner@smitham.org    \N    Palau    Laneport    42596 Schneider Key    37865    Alabama    2016-08-12 01:39:41.318242    2016-10-14 13:03:11.863379        \N    \N    \N    0    \N    \N    \N    \N    female
18908    Esperanza    Lindgren    trevion_cormier@tremblay.io    \N    Uzbekistan    Lake Ilianastad    968 Oscar Pines    52306    North Carolina    2016-06-27 15:12:51.841364    2016-10-14 13:03:11.871697        \N    \N    \N    0    \N    \N    \N    \N    female
18909    Jan    Feest    devonte@halvorson.co    \N    Zambia    Alfredside    5770 Kohler Locks    75057-4388    Missouri    2016-06-23 16:33:37.604915    2016-10-14 13:03:11.876334        \N    \N    \N    0    \N    \N    \N    \N    male
18910    Brendon    Mann    efren@walshheel.name    \N    Panama    East Hassiemouth    4156 Jordon Lakes    77681-7288    Washington    2016-06-30 17:19:24.300478    2016-10-14 13:03:11.881067        \N    \N    \N    0    \N    \N    \N    \N    female
18911    Titus    Altenwerth    gail@marvin.co    \N    Northern Mariana Islands    West Verla    696 Lucious Vista    91606    Ohio    2016-07-12 13:01:06.355751    2016-10-14 13:03:11.885812        \N    \N    \N    0    \N    \N    \N    \N    male
18912    Okey    Purdy    tanya_robel@wilderman.biz    \N    Australia    South Darionport    66607 Kamille Rue    45666-0830    Montana    2016-09-19 01:36:23.826821    2016-10-14 13:03:11.890518        \N    \N    \N    0    \N    \N    \N    \N    female
18913    Charlotte    Sipes    carolanne@turner.info    \N    Romania    East Otiston    114 Mohamed Spur    44453-9194    Maine    2016-07-16 08:35:39.088323    2016-10-14 13:03:11.895286        \N    \N    \N    0    \N    \N    \N    \N    male
18914    Harmon    Hilll    chadrick.casper@erdmantreutel.net    \N    Seychelles    New Benedict    3841 Sadye Inlet    26664    Arizona    2016-07-25 01:36:48.996786    2016-10-14 13:03:11.900849        \N    \N    \N    0    \N    \N    \N    \N    male
18915    Tyrel    Hackett    mable@bahringer.net    \N    Uzbekistan    Lottiechester    59427 Labadie Mount    28036    Rhode Island    2016-06-24 05:04:15.625246    2016-10-14 13:03:11.906589        \N    \N    \N    0    \N    \N    \N    \N    female
18916    Wilhelm    Farrell    brandy.hackett@hudsonabbott.org    \N    Bhutan    New Murphyview    37699 Reta Locks    61435-7171    Arizona    2016-08-29 03:46:30.736283    2016-10-14 13:03:11.912568        \N    \N    \N    0    \N    \N    \N    \N    male
18917    Mona    Turner    selmer@gerholdkulas.io    \N    United States Minor Outlying Islands    North Eleanorestad    4447 Hollie Well    65539    New Hampshire    2016-08-22 13:07:29.187392    2016-10-14 13:03:11.919333        \N    \N    \N    0    \N    \N    \N    \N    male
18918    Marilyne    O'Kon    aidan.gusikowski@simoniskunde.co    \N    Syrian Arab Republic    South Tania    9952 Paris Plaza    11230    New Hampshire    2016-09-23 12:04:29.482813    2016-10-14 13:03:11.925366        \N    \N    \N    0    \N    \N    \N    \N    male
18919    Myrtice    Muller    rozella_becker@hegmann.biz    \N    Rwanda    Port Sonnyshire    781 Adams Wells    50317    Idaho    2016-09-08 10:33:09.375705    2016-10-14 13:03:11.930939        \N    \N    \N    0    \N    \N    \N    \N    female
18920    Kale    Ledner    donny_bogisich@larkin.co    \N    Macao    Lake Loraine    86072 Padberg Circle    61014-5217    Oklahoma    2016-09-28 13:57:29.844262    2016-10-14 13:03:11.935676        \N    \N    \N    0    \N    \N    \N    \N    female
18921    Laura    Murazik    antonia_hansen@watersbreitenberg.org    \N    Pitcairn Islands    Beattyview    9413 Nathan Garden    46266    Rhode Island    2016-07-27 08:59:47.154982    2016-10-14 13:03:11.940075        \N    \N    \N    0    \N    \N    \N    \N    female
18922    Maud    Grimes    gay@lynch.info    \N    Belize    West Jeanette    65584 Muller Radial    26174-8877    Ohio    2016-07-08 15:37:40.414781    2016-10-14 13:03:11.945233        \N    \N    \N    0    \N    \N    \N    \N    male
18923    Alek    Abbott    mona_jerde@bauch.org    \N    Canada    Mooreville    49819 Arnold Dale    57423-1073    New York    2016-08-14 05:55:30.082891    2016-10-14 13:03:11.949739        \N    \N    \N    0    \N    \N    \N    \N    female
18924    Angelo    Tromp    astrid@mann.net    \N    Bulgaria    Mayertport    227 Braun Islands    61421-4964    New York    2016-08-14 13:13:14.293132    2016-10-14 13:03:11.954169        \N    \N    \N    0    \N    \N    \N    \N    male
18925    Jonathon    Mayer    santino@boehm.com    \N    Italy    Jeremychester    2206 Kohler Ports    95248-3157    Kentucky    2016-09-09 11:49:16.981344    2016-10-14 13:03:11.958285        \N    \N    \N    0    \N    \N    \N    \N    female
18927    Lew    Wiegand    yasmine.jast@reilly.com    \N    Grenada    Lake Marionview    2098 Ebony Forks    52409    New Jersey    2016-09-23 15:36:37.387386    2016-10-14 13:03:11.966572        \N    \N    \N    0    \N    \N    \N    \N    male
18928    Ova    Anderson    malachi@dare.co    \N    Nauru    Lueilwitzstad    95415 Lehner Square    23995    Montana    2016-09-21 10:32:30.600899    2016-10-14 13:03:11.970733        \N    \N    \N    0    \N    \N    \N    \N    male
18929    Vincent    Roberts    marc@turner.co    \N    Bahrain    New Edberg    116 Berge Stream    62665-3371    New Jersey    2016-07-06 01:01:51.918275    2016-10-14 13:03:11.974763        \N    \N    \N    0    \N    \N    \N    \N    female
18930    Newell    Douglas    bruce_koch@okunevawolf.biz    \N    Micronesia    Lake Austen    31178 Piper Ports    53708    South Carolina    2016-07-01 07:33:16.550344    2016-10-14 13:03:11.984336        \N    \N    \N    0    \N    \N    \N    \N    male
18931    Peggie    Hamill    lolita_mayert@toymacgyver.com    \N    Suriname    Mooreport    1253 Sanford Flats    53866    North Carolina    2016-06-24 15:31:29.272272    2016-10-14 13:03:11.989306        \N    \N    \N    0    \N    \N    \N    \N    female
18932    Sasha    Goyette    christian@bechtelar.net    \N    Guinea    Tavaresshire    8413 Frances Streets    90614    Louisiana    2016-09-07 20:00:41.443487    2016-10-14 13:03:11.993842        \N    \N    \N    0    \N    \N    \N    \N    female
18933    Adrien    Ledner    uriel.grady@ratkefranecki.co    \N    Kenya    Geovanyberg    793 Yost Extensions    74211-4540    Rhode Island    2016-07-12 15:38:44.490047    2016-10-14 13:03:11.998933        \N    \N    \N    0    \N    \N    \N    \N    male
18934    Ludie    Brown    susana.reynolds@nienowhagenes.biz    \N    Afghanistan    East Brittany    124 Ottis Shoal    71211-2336    Maine    2016-08-06 11:38:56.181613    2016-10-14 13:03:12.003781        \N    \N    \N    0    \N    \N    \N    \N    female
18935    Carrie    Morar    manuela.grady@keler.info    \N    Saudi Arabia    Goodwinview    378 O'Kon Curve    61478    Illinois    2016-08-07 05:35:43.301822    2016-10-14 13:03:12.008616        \N    \N    \N    0    \N    \N    \N    \N    female
18936    Jazmyne    Dicki    una@altenwerth.com    \N    Rwanda    Port Providencimouth    39596 Effie Port    33282-3752    Mississippi    2016-07-21 07:07:31.183625    2016-10-14 13:03:12.013247        \N    \N    \N    0    \N    \N    \N    \N    male
18937    Antonietta    Olson    margie.fisher@shanahan.co    \N    France    New Fletcher    819 Schuster Estates    13011-7922    Kansas    2016-07-02 00:40:34.968389    2016-10-14 13:03:12.019327        \N    \N    \N    0    \N    \N    \N    \N    male
18938    Winona    Miller    rosanna@zulauf.biz    \N    Bulgaria    Dannyshire    2141 Madilyn Tunnel    89972    New Mexico    2016-06-25 03:18:06.632546    2016-10-14 13:03:12.024464        \N    \N    \N    0    \N    \N    \N    \N    male
18939    Gudrun    Robel    erin_johnston@predovicwaelchi.biz    \N    Guinea    Hahnhaven    46311 Porter Lodge    63661-1095    Alabama    2016-07-19 22:58:08.578809    2016-10-14 13:03:12.028912        \N    \N    \N    0    \N    \N    \N    \N    female
18940    Nellie    Casper    demetris@boyle.name    \N    Niger    Mayerside    636 Bahringer Radial    13929-6373    South Carolina    2016-08-04 11:51:36.488477    2016-10-14 13:03:12.033051        \N    \N    \N    0    \N    \N    \N    \N    female
18941    Alexandria    Nikolaus    eino.wilderman@baumbach.com    \N    Virgin Islands, U.S.    Dudleymouth    978 Shaniya Cove    81121-8399    Utah    2016-08-04 16:40:04.996611    2016-10-14 13:03:12.037302        \N    \N    \N    0    \N    \N    \N    \N    male
18942    Kendra    Wehner    laverne.satterfield@rodriguezoconnell.name    \N    Belarus    South Emeraldland    513 Charlie Manor    20058    Louisiana    2016-07-19 01:11:37.249768    2016-10-14 13:03:12.041669        \N    \N    \N    0    \N    \N    \N    \N    female
18943    Austin    Ledner    shannon.gerlach@orn.name    \N    Norway    Lake Aileenburgh    48303 Conroy Pines    31598-9260    Minnesota    2016-06-22 12:24:44.303828    2016-10-14 13:03:12.047226        \N    \N    \N    0    \N    \N    \N    \N    female
18944    Benton    Lowe    ryan_schaden@buckridge.info    \N    Cyprus    Cordeliafurt    428 Mertz Oval    32911    Alaska    2016-07-06 21:37:53.822837    2016-10-14 13:03:12.051604        \N    \N    \N    0    \N    \N    \N    \N    male
18945    Ida    Miller    briana@jacobi.co    \N    Netherlands    New Ashtontown    96278 Steve Wells    18744    Tennessee    2016-07-08 15:26:36.955694    2016-10-14 13:03:12.05589        \N    \N    \N    0    \N    \N    \N    \N    male
18946    Donavon    Wilderman    desiree@brekke.co    \N    Zimbabwe    New Gideonborough    376 Maude Place    61425    Arkansas    2016-09-18 11:09:51.420207    2016-10-14 13:03:12.060036        \N    \N    \N    0    \N    \N    \N    \N    female
18947    Orion    Brekke    sid@jacobson.info    \N    Algeria    Port Cordell    50310 Turner Cape    75896    Tennessee    2016-08-25 07:05:00.521947    2016-10-14 13:03:12.067456        \N    \N    \N    0    \N    \N    \N    \N    male
18948    Freddie    Braun    mollie@kerluke.org    \N    Tajikistan    Arjunview    895 Leslie Ford    70338-0283    Pennsylvania    2016-09-28 03:09:12.589414    2016-10-14 13:03:12.072249        \N    \N    \N    0    \N    \N    \N    \N    female
18949    Emilie    Hauck    billy@millerhodkiewicz.info    \N    Guinea    Port Marian    47452 Charlie Forges    47973-7611    Rhode Island    2016-09-23 23:22:01.077936    2016-10-14 13:03:12.077211        \N    \N    \N    0    \N    \N    \N    \N    female
18950    Cathryn    Bode    norene@herzog.io    \N    Netherlands Antilles    Towneville    162 Erik Points    11391    Rhode Island    2016-09-03 01:42:33.214194    2016-10-14 13:03:12.081724        \N    \N    \N    0    \N    \N    \N    \N    female
18951    Felipe    Johnston    shakira.murphy@prohaska.biz    \N    Ethiopia    Wilfredomouth    7347 Friesen Lakes    49686-4390    Kansas    2016-07-31 22:20:57.695981    2016-10-14 13:03:12.087518        \N    \N    \N    0    \N    \N    \N    \N    male
18952    Henriette    Pfeffer    curt_yost@olson.net    \N    Sierra Leone    North Macyport    94365 Mekhi Turnpike    36493-3932    Idaho    2016-07-25 04:16:11.414404    2016-10-14 13:03:12.092437        \N    \N    \N    0    \N    \N    \N    \N    female
18953    Edison    Schowalter    joey.casper@lind.name    \N    Afghanistan    McCulloughside    5696 Johns Ridges    31946-1145    Texas    2016-06-28 18:28:55.308445    2016-10-14 13:03:12.096743        \N    \N    \N    0    \N    \N    \N    \N    male
18954    Eliane    Flatley    dillan_kiehn@wunsch.io    \N    Seychelles    Muellerton    276 Bogan Common    55820-0170    Washington    2016-07-05 20:39:43.572434    2016-10-14 13:03:12.101387        \N    \N    \N    0    \N    \N    \N    \N    male
18955    Amy    Schroeder    mckenna.nicolas@fahey.name    \N    Iran    Aracelyview    5124 Woodrow Ramp    63615-6294    Tennessee    2016-07-12 11:25:01.852704    2016-10-14 13:03:12.105546        \N    \N    \N    0    \N    \N    \N    \N    male
18956    Vida    Wisozk    angus.treutel@yostbailey.com    \N    Algeria    Lake Giovani    24467 Kshlerin Crossing    84914-0020    Maryland    2016-08-23 01:59:27.404189    2016-10-14 13:03:12.109936        \N    \N    \N    0    \N    \N    \N    \N    female
18957    Derrick    Weissnat    victoria@fay.io    \N    Norway    O'Connellburgh    48210 Kareem Points    79906-5609    Ohio    2016-07-23 01:31:15.24678    2016-10-14 13:03:12.115404        \N    \N    \N    0    \N    \N    \N    \N    male
18958    Gerard    Walker    gracie@mann.org    \N    New Caledonia    South Kacie    88818 Huel Fords    17132-9696    Nevada    2016-09-08 00:36:46.305721    2016-10-14 13:03:12.119837        \N    \N    \N    0    \N    \N    \N    \N    female
18959    Jensen    Medhurst    florencio@gleason.com    \N    Holy See (Vatican City State)    Lake Kathryne    773 Irma Lodge    69880    New Mexico    2016-07-21 00:44:45.988623    2016-10-14 13:03:12.124244        \N    \N    \N    0    \N    \N    \N    \N    male
18960    Elijah    Reichert    roderick@green.co    \N    Norway    South Ernest    48246 Lucie Glens    17763    Wyoming    2016-07-13 16:42:48.41184    2016-10-14 13:03:12.129931        \N    \N    \N    0    \N    \N    \N    \N    male
18961    Rebekah    Altenwerth    mikayla@schaden.io    \N    Nicaragua    Lake Romanmouth    488 Jerry Cliffs    93877-1805    Iowa    2016-09-28 07:38:47.894172    2016-10-14 13:03:12.134693        \N    \N    \N    0    \N    \N    \N    \N    male
18962    Garfield    Howe    rosendo@padberg.info    \N    Japan    Harbermouth    74171 Warren Islands    93668-5741    Indiana    2016-09-28 13:02:49.079724    2016-10-14 13:03:12.13974        \N    \N    \N    0    \N    \N    \N    \N    male
18963    Jaron    Mayer    neva.padberg@littlebeer.info    \N    Norway    Emelieville    34583 Stephany Unions    72775    Idaho    2016-07-03 08:30:56.209484    2016-10-14 13:03:12.144661        \N    \N    \N    0    \N    \N    \N    \N    male
18964    Libbie    Mills    aryanna.breitenberg@stokes.name    \N    Burundi    New Svenborough    621 Baumbach Mission    68772    Nevada    2016-07-07 14:50:54.461679    2016-10-14 13:03:12.149312        \N    \N    \N    0    \N    \N    \N    \N    male
18965    Trever    Torphy    corine@reillyreichert.org    \N    Congo    Reneeborough    9046 Nader Lock    58913    Hawaii    2016-09-09 08:39:55.292714    2016-10-14 13:03:12.154125        \N    \N    \N    0    \N    \N    \N    \N    female
18966    Tyra    DuBuque    sarina.anderson@reichel.name    \N    Lao People's Democratic Republic    Port Ellieside    56394 Josephine Squares    57965    Wisconsin    2016-07-09 00:50:09.167962    2016-10-14 13:03:12.159582        \N    \N    \N    0    \N    \N    \N    \N    female
18967    Helga    Grady    mario@braun.info    \N    Uzbekistan    Janaeport    5146 Abshire Oval    86059    Illinois    2016-08-22 15:58:46.892101    2016-10-14 13:03:12.167358        \N    \N    \N    0    \N    \N    \N    \N    male
18968    Ada    Breitenberg    carmine@rempel.co    \N    Isle of Man    North Edenborough    287 Johns Loaf    72372    Virginia    2016-09-23 02:19:28.532089    2016-10-14 13:03:12.172804        \N    \N    \N    0    \N    \N    \N    \N    female
18969    Diamond    Reichel    jarrett_gleichner@lindgren.name    \N    Senegal    Rennerville    98442 Selena Vista    40836-2319    Delaware    2016-08-27 10:36:06.699485    2016-10-14 13:03:12.183415        \N    \N    \N    0    \N    \N    \N    \N    male
18970    Gavin    Schroeder    dayton.ryan@runolfon.info    \N    Congo    Lake Pearl    942 Stevie Wells    29518-4732    West Virginia    2016-07-26 00:27:41.751824    2016-10-14 13:03:12.191755        \N    \N    \N    0    \N    \N    \N    \N    female
18971    Cleo    Weber    rosalee@mayerjohns.co    \N    Virgin Islands, British    Friedrichport    4991 Ciara Pines    86880    Maine    2016-09-08 03:11:18.439862    2016-10-14 13:03:12.198417        \N    \N    \N    0    \N    \N    \N    \N    female
18972    Trinity    Stanton    camille_luettgen@emmerichgreenfelder.info    \N    El Salvador    South Mateo    426 Eleanora Walks    45534-3558    Kansas    2016-07-22 17:12:07.991183    2016-10-14 13:03:12.205642        \N    \N    \N    0    \N    \N    \N    \N    female
18973    Art    Ebert    berenice@mcglynn.co    \N    Tanzania    Lemkeburgh    28066 Champlin Burg    16870    Connecticut    2016-08-05 07:13:38.773061    2016-10-14 13:03:12.211339        \N    \N    \N    0    \N    \N    \N    \N    female
18974    Christa    Windler    kolby@price.co    \N    Dominica    Bogisichbury    79904 Dashawn Common    17210-1776    Vermont    2016-07-24 20:20:46.582403    2016-10-14 13:03:12.216685        \N    \N    \N    0    \N    \N    \N    \N    female
18975    Hayley    Wolf    cecile@lindgren.co    \N    Dominican Republic    West Scottyshire    399 Lora Circle    11311-3280    Michigan    2016-07-07 09:00:32.598562    2016-10-14 13:03:12.224783        \N    \N    \N    0    \N    \N    \N    \N    female
18976    Makayla    Fadel    dorcas.borer@wymancain.org    \N    Colombia    North Bridget    6356 Miller Pass    28189-4663    New Mexico    2016-06-25 13:18:54.774349    2016-10-14 13:03:12.241683        \N    \N    \N    0    \N    \N    \N    \N    male
18977    Ellis    Rippin    celestine_walker@roobhyatt.org    \N    Pitcairn Islands    Hagenesland    962 Graham Estates    85513    Alaska    2016-08-07 20:25:13.642548    2016-10-14 13:03:12.25396        \N    \N    \N    0    \N    \N    \N    \N    female
18978    Janae    Nicolas    berta.trantow@wolff.biz    \N    South Georgia and the South Sandwich Islands    South Cristophertown    12422 Oberbrunner Gateway    46258-7179    Alabama    2016-07-26 08:17:04.29462    2016-10-14 13:03:12.268735        \N    \N    \N    0    \N    \N    \N    \N    male
18980    Stephon    Ritchie    aubree.crona@osinskitreutel.io    \N    France    Tyreektown    3662 Legros Union    99474    North Dakota    2016-06-28 05:01:01.211547    2016-10-14 13:03:12.281549        \N    \N    \N    0    \N    \N    \N    \N    male
18981    Griffin    Stokes    otho_streich@okeefewyman.biz    \N    Sao Tome and Principe    West Ambroseburgh    834 Keeling Burgs    60941-1245    Arizona    2016-08-05 07:52:57.527898    2016-10-14 13:03:12.290356        \N    \N    \N    0    \N    \N    \N    \N    female
18982    Spencer    Trantow    hollie_barton@brown.name    \N    Congo    Shanaside    740 Carlos Gateway    97389    California    2016-07-18 06:40:01.820924    2016-10-14 13:03:12.297501        \N    \N    \N    0    \N    \N    \N    \N    female
18983    Michale    Flatley    ansley@funk.name    \N    Oman    Ivorystad    4718 Romaguera Squares    60193-3430    Rhode Island    2016-08-25 20:55:25.632009    2016-10-14 13:03:12.30294        \N    \N    \N    0    \N    \N    \N    \N    female
18984    Brad    Herman    jaden@pagac.info    \N    Iran    MacGyverbury    53654 Gabriel Rest    15890-1620    Arkansas    2016-08-06 01:24:41.556743    2016-10-14 13:03:12.308089        \N    \N    \N    0    \N    \N    \N    \N    male
18985    Cleta    Howe    kaelyn.breitenberg@gleichner.com    \N    Guam    West Wade    6155 Pacocha Bridge    19606    North Dakota    2016-09-22 16:06:10.69435    2016-10-14 13:03:12.315421        \N    \N    \N    0    \N    \N    \N    \N    female
18986    Elvera    Brekke    graciela_christiansen@effertz.name    \N    Guam    Eastontown    8927 Felipa Viaduct    73155-3090    Rhode Island    2016-06-27 17:29:55.522277    2016-10-14 13:03:12.32295        \N    \N    \N    0    \N    \N    \N    \N    female
18987    Titus    Veum    justice.ferry@mccullough.org    \N    Palestinian Territory    Othoside    47393 Gloria Locks    85543    Colorado    2016-09-01 08:54:52.724511    2016-10-14 13:03:12.329491        \N    \N    \N    0    \N    \N    \N    \N    male
18988    Trevor    Simonis    timmothy_fadel@kiehn.com    \N    Gibraltar    East Lydafurt    473 Celestine Loop    76936    Arkansas    2016-08-22 13:15:45.983413    2016-10-14 13:03:12.334329        \N    \N    \N    0    \N    \N    \N    \N    male
18989    Reyes    Breitenberg    maiya@blick.biz    \N    Bhutan    North Heavenborough    69623 Abbott Mountain    26592-6107    Wyoming    2016-07-26 00:17:42.052128    2016-10-14 13:03:12.339553        \N    \N    \N    0    \N    \N    \N    \N    female
18990    Emie    Anderson    burley@oreillystokes.com    \N    Sierra Leone    Gaylordton    553 Schuppe Keys    64627    New Hampshire    2016-08-20 20:36:12.646231    2016-10-14 13:03:12.347194        \N    \N    \N    0    \N    \N    \N    \N    male
18991    Jonathan    Renner    jacinto@lakinhaag.com    \N    Tunisia    South Alextown    9064 Joe Fall    90197    Connecticut    2016-07-27 12:49:38.79624    2016-10-14 13:03:12.35248        \N    \N    \N    0    \N    \N    \N    \N    female
18992    Deshaun    Franecki    layla.nicolas@howell.io    \N    New Zealand    Lake Aldatown    96376 Mohr Views    55964    Pennsylvania    2016-07-19 13:49:15.284327    2016-10-14 13:03:12.375203        \N    \N    \N    0    \N    \N    \N    \N    male
18993    Christopher    Miller    alford@schaeferankunding.info    \N    Saudi Arabia    Marvinside    80349 Florence Wells    35536-0674    Maryland    2016-06-22 14:11:33.286987    2016-10-14 13:03:12.383728        \N    \N    \N    0    \N    \N    \N    \N    female
18994    Madilyn    Rodriguez    curt@schuster.com    \N    New Zealand    New Kassandraton    8985 Deron Center    42360    New Hampshire    2016-07-02 04:36:20.898831    2016-10-14 13:03:12.388847        \N    \N    \N    0    \N    \N    \N    \N    female
18995    Cleora    Stroman    sean@kuvalispredovic.name    \N    San Marino    South Jovany    4781 Heidenreich Highway    34523-1101    Vermont    2016-08-19 23:30:42.692245    2016-10-14 13:03:12.393801        \N    \N    \N    0    \N    \N    \N    \N    male
18996    Lacy    Barton    emma@stehr.net    \N    Virgin Islands, U.S.    Bauchport    441 Gene Canyon    79340    Minnesota    2016-09-20 21:37:37.066415    2016-10-14 13:03:12.398558        \N    \N    \N    0    \N    \N    \N    \N    male
18998    Keely    Orn    georgianna_keler@nolan.biz    \N    Namibia    Marionton    4184 Schuster Ports    33059    Kansas    2016-09-23 16:00:28.233247    2016-10-14 13:03:12.406761        \N    \N    \N    0    \N    \N    \N    \N    female
18999    Jayne    Walker    jacinto@leannonvonrueden.net    \N    Jersey    Herminiafurt    521 Baby Lakes    47707-6103    New York    2016-08-10 21:55:42.551213    2016-10-14 13:03:12.418512        \N    \N    \N    0    \N    \N    \N    \N    female
19000    Berta    Schuster    payton_feeney@hodkiewicz.net    \N    Malta    Port Carolannefort    459 Osinski Throughway    14316-5788    New Hampshire    2016-06-27 02:38:04.400266    2016-10-14 13:03:12.429775        \N    \N    \N    0    \N    \N    \N    \N    female
19001    Mabel    Cassin    adeline_schulist@ruel.com    \N    Libyan Arab Jamahiriya    Lake Eldaville    966 Moore Vista    35857-5066    Arkansas    2016-07-29 12:53:15.551805    2016-10-14 13:03:12.443224        \N    \N    \N    0    \N    \N    \N    \N    female
14258    Vella    Robel    arnulfo@wolffkuhn.org    \N    Belize    South Aliaville    324 Hintz Creek    51220    Texas    2016-08-05 00:34:01.020439    2016-10-14 13:03:12.463185        \N    \N    \N    0    \N    \N    \N    \N    female
19002    Kade    Sporer    mac.swaniawski@jacobsonankunding.info    \N    Syrian Arab Republic    New Regan    3261 Hauck Road    34328-3740    Montana    2016-07-15 03:07:51.308022    2016-10-14 13:03:12.4689        \N    \N    \N    0    \N    \N    \N    \N    female
19003    Bridie    Kunze    emely_goyette@klein.io    \N    Netherlands    Ernestinahaven    752 Marianna Trace    23772    Kentucky    2016-08-04 19:48:45.818199    2016-10-14 13:03:12.473942        \N    \N    \N    0    \N    \N    \N    \N    male
19004    Alf    Haag    lacy.williamson@hyatt.biz    \N    Belize    Clarabelleview    270 Scottie Plaza    42708    New Hampshire    2016-08-21 05:27:49.490539    2016-10-14 13:03:12.478485        \N    \N    \N    0    \N    \N    \N    \N    female
19005    Ali    Lindgren    laron_wiegand@romaguera.info    \N    Bahamas    Arianemouth    749 Elinore Corner    10370-0005    Montana    2016-09-05 13:21:49.664015    2016-10-14 13:03:12.482707        \N    \N    \N    0    \N    \N    \N    \N    male
19006    Osbaldo    Ullrich    gianni_walsh@okeefe.info    \N    Papua New Guinea    South Bartborough    93022 Brenna Shoals    49141-6635    Maryland    2016-09-02 01:00:30.256253    2016-10-14 13:03:12.486869        \N    \N    \N    0    \N    \N    \N    \N    female
19007    Bennett    Abshire    aurelio.mcglynn@cummeratadamore.org    \N    Eritrea    East Ford    952 Stuart Plain    57741    New Jersey    2016-06-30 14:17:36.951116    2016-10-14 13:03:12.490978        \N    \N    \N    0    \N    \N    \N    \N    female
19008    Meta    Watsica    meredith_moore@kris.name    \N    Lithuania    Lake Beulah    7136 Lubowitz Plains    90657-1891    Michigan    2016-07-16 23:59:27.515157    2016-10-14 13:03:12.49539        \N    \N    \N    0    \N    \N    \N    \N    male
19009    Annette    Kiehn    jasper_lindgren@towne.biz    \N    Albania    Boehmbury    236 Harrison Summit    44286    North Dakota    2016-09-12 19:59:04.800761    2016-10-14 13:03:12.501341        \N    \N    \N    0    \N    \N    \N    \N    male
19010    Jovani    Conn    genevieve_blanda@johnstonroberts.info    \N    Tajikistan    Lake Vergiemouth    1889 Willms Wall    68223    South Carolina    2016-08-27 07:15:08.617549    2016-10-14 13:03:12.506366        \N    \N    \N    0    \N    \N    \N    \N    male
19011    Ross    Beier    chris@gottlieb.co    \N    Guinea    East Havenstad    240 Evans Vista    80284-4633    Nevada    2016-09-02 14:41:51.949176    2016-10-14 13:03:12.510822        \N    \N    \N    0    \N    \N    \N    \N    male
19012    Craig    Cummings    demond@kemmerthompson.name    \N    Angola    Cloydtown    8047 Einar Plains    62697-4109    Connecticut    2016-08-10 02:56:44.553613    2016-10-14 13:03:12.515293        \N    \N    \N    0    \N    \N    \N    \N    female
19013    Maeve    Hoeger    shanon@funk.info    \N    Lebanon    North Jacynthe    8972 Arlo Forge    59593-7940    Kentucky    2016-08-12 16:37:55.125458    2016-10-14 13:03:12.520084        \N    \N    \N    0    \N    \N    \N    \N    female
19014    Janie    Swaniawski    mauricio_tillman@stokes.com    \N    New Zealand    South Abdielville    181 Brenda Crest    23376    Florida    2016-09-16 19:20:04.433803    2016-10-14 13:03:12.524852        \N    \N    \N    0    \N    \N    \N    \N    female
19015    Reese    Hegmann    chadrick_macejkovic@block.io    \N    Bouvet Island (Bouvetoya)    New Ernieberg    1049 Miracle Hills    69005-4672    Alaska    2016-07-20 17:41:00.961946    2016-10-14 13:03:12.529184        \N    \N    \N    0    \N    \N    \N    \N    male
19016    Douglas    Lowe    nadia@lehner.biz    \N    Timor-Leste    Bodeland    519 Hegmann Rue    93430-7549    Maryland    2016-08-13 09:18:11.388022    2016-10-14 13:03:12.53358        \N    \N    \N    0    \N    \N    \N    \N    female
19017    Selina    Murray    salvatore@schimmel.co    \N    Guernsey    South Leopold    27047 Smith Inlet    71143    New York    2016-08-25 09:50:00.488693    2016-10-14 13:03:12.538011        \N    \N    \N    0    \N    \N    \N    \N    male
19018    Aleen    Crooks    kaleigh@ebert.co    \N    Monaco    Ronborough    335 Hilll Centers    42015    Illinois    2016-08-04 01:00:09.766885    2016-10-14 13:03:12.542693        \N    \N    \N    0    \N    \N    \N    \N    male
19019    Raven    Hills    regan@kertzmann.io    \N    Mauritania    Lake Alphonso    646 Conroy Bridge    21509-7697    Virginia    2016-07-01 18:16:42.1758    2016-10-14 13:03:12.546948        \N    \N    \N    0    \N    \N    \N    \N    female
19020    Darius    Murphy    mallory@glover.io    \N    Jersey    Satterfieldview    2855 Kavon Terrace    64445-1886    Maine    2016-08-13 16:32:28.384535    2016-10-14 13:03:12.551388        \N    \N    \N    0    \N    \N    \N    \N    male
19021    Darian    Dicki    mauricio.dare@cole.com    \N    Finland    Paucekborough    39593 Genoveva Plains    95881    Missouri    2016-09-10 18:56:17.753591    2016-10-14 13:03:12.556069        \N    \N    \N    0    \N    \N    \N    \N    male
19022    Shemar    Hahn    remington@legrosdooley.com    \N    Hong Kong    Elinorton    470 Hyatt Unions    18377-4961    Maryland    2016-09-24 02:39:57.54996    2016-10-14 13:03:12.561145        \N    \N    \N    0    \N    \N    \N    \N    female
19023    Lexus    Mayer    moses@strosin.name    \N    Saint Martin    Hagenesside    6293 Grady Lock    50048-0190    California    2016-09-27 00:29:25.64086    2016-10-14 13:03:12.566317        \N    \N    \N    0    \N    \N    \N    \N    female
19024    Lonnie    Brakus    annabell.becker@gerlach.name    \N    Austria    Port Elenor    405 Bins Overpass    33420    Idaho    2016-06-27 04:09:38.890623    2016-10-14 13:03:12.577771        \N    \N    \N    0    \N    \N    \N    \N    female
19025    Tia    Lockman    bernhard@yundt.com    \N    Pakistan    Rudyshire    96286 Lexi Prairie    90126-0512    Connecticut    2016-07-16 00:56:13.043947    2016-10-14 13:03:12.582478        \N    \N    \N    0    \N    \N    \N    \N    female
19026    Kiel    Langworth    dorian@collins.io    \N    American Samoa    East Gracehaven    5619 Jose Lights    42793    Utah    2016-07-22 14:47:03.820895    2016-10-14 13:03:12.588217        \N    \N    \N    0    \N    \N    \N    \N    male
19027    Donavon    Heathcote    eleonore@kiehnosinski.name    \N    Anguilla    Gaybury    334 Wilkinson Junctions    34981-2553    Wyoming    2016-09-06 20:48:49.928462    2016-10-14 13:03:12.593765        \N    \N    \N    0    \N    \N    \N    \N    male
19028    Jewel    Jacobson    donnell.pouros@schuster.info    \N    Northern Mariana Islands    Lake Avery    3210 Monroe Lake    40476    Iowa    2016-06-22 14:05:44.761466    2016-10-14 13:03:12.598171        \N    \N    \N    0    \N    \N    \N    \N    female
19029    Avis    Nicolas    jarrod@windler.org    \N    Samoa    Lake Kelsimouth    419 Cristopher Brook    85021-6284    Vermont    2016-09-05 01:49:30.686543    2016-10-14 13:03:12.602961        \N    \N    \N    0    \N    \N    \N    \N    female
19330    Marlon    Kovacek    zora_rohan@rutherford.info    \N    Romania    North Cassandreside    850 Green Row    68173    Texas    2016-08-02 21:43:44.618802    2016-10-14 13:03:12.607868        \N    \N    \N    0    \N    \N    \N    \N    male
19030    Emmanuel    Daugherty    reginald@trantowabshire.info    \N    Vietnam    Harrisfort    3382 Webster Springs    77422    Hawaii    2016-08-01 02:27:30.775306    2016-10-14 13:03:12.612458        \N    \N    \N    0    \N    \N    \N    \N    male
19031    Ellis    Donnelly    zetta@jerde.io    \N    Netherlands    South Glennashire    28534 O'Connell Pike    45553-0696    New Hampshire    2016-09-23 21:20:47.472576    2016-10-14 13:03:12.61677        \N    \N    \N    0    \N    \N    \N    \N    female
19032    Eleazar    Streich    kaia.dickens@stokes.info    \N    Tuvalu    Gislasonside    421 Huel Lights    65894    Iowa    2016-07-22 23:13:51.126426    2016-10-14 13:03:12.621763        \N    \N    \N    0    \N    \N    \N    \N    female
19033    Royce    Kris    myron.hintz@ortizbogisich.name    \N    Senegal    Daughertyport    57101 Koch Freeway    51462-8400    Nebraska    2016-07-07 10:02:21.318439    2016-10-14 13:03:12.627215        \N    \N    \N    0    \N    \N    \N    \N    male
19034    Rubye    Block    genoveva@little.info    \N    Hungary    Wilburnburgh    7533 Klocko Estate    33051-8441    Montana    2016-08-21 04:40:05.658039    2016-10-14 13:03:12.631962        \N    \N    \N    0    \N    \N    \N    \N    female
19035    Rafaela    Muller    ruel.feest@oconnerdietrich.com    \N    Cyprus    Rosettabury    183 Lehner Path    28898-9996    Hawaii    2016-08-18 03:21:16.757271    2016-10-14 13:03:12.64072        \N    \N    \N    0    \N    \N    \N    \N    female
19036    Clarissa    McDermott    alison_herzog@kihn.org    \N    Guernsey    North Alexandriamouth    453 Catherine Club    73270    Delaware    2016-08-29 01:01:17.652869    2016-10-14 13:03:12.645908        \N    \N    \N    0    \N    \N    \N    \N    male
19038    Beth    Eichmann    robbie@handschulist.co    \N    Jersey    Paigefort    523 Carroll Rue    88214-1736    Texas    2016-09-27 06:00:46.453369    2016-10-14 13:03:12.651064        \N    \N    \N    0    \N    \N    \N    \N    female
19039    Bud    Braun    norris_collins@hettinger.name    \N    Poland    Blickberg    73847 MacGyver Island    36693-0541    Vermont    2016-06-28 21:27:09.217069    2016-10-14 13:03:12.655272        \N    \N    \N    0    \N    \N    \N    \N    female
19040    Florian    McLaughlin    casimer@terry.biz    \N    Taiwan    New Chayaland    177 Romaguera Drives    54884    South Dakota    2016-07-16 16:17:35.53018    2016-10-14 13:03:12.659354        \N    \N    \N    0    \N    \N    \N    \N    male
19041    Shannon    Borer    kaylah_deckow@robel.info    \N    Kyrgyz Republic    Vernonmouth    67910 Blick Spurs    54876    Maine    2016-09-05 18:38:51.971155    2016-10-14 13:03:12.663933        \N    \N    \N    0    \N    \N    \N    \N    male
19042    Hollis    Brown    luigi.tromp@okuneva.co    \N    Israel    Langoshborough    839 Mariela Summit    86899    Oregon    2016-08-13 13:32:59.073301    2016-10-14 13:03:12.669412        \N    \N    \N    0    \N    \N    \N    \N    male
19043    Dorcas    Feil    natalia@vandervort.com    \N    Marshall Islands    Eldonfort    35009 Ruben Hollow    30078-7995    Kansas    2016-09-14 20:19:11.977931    2016-10-14 13:03:12.675267        \N    \N    \N    0    \N    \N    \N    \N    male
19044    Oma    Wilkinson    caleigh.mccullough@pollich.net    \N    Gibraltar    Port Jeanette    312 Harvey Ramp    32988-9958    Rhode Island    2016-07-27 21:07:44.77949    2016-10-14 13:03:12.680078        \N    \N    \N    0    \N    \N    \N    \N    male
19045    Scot    Flatley    michel_pfannerstill@okunevagoyette.io    \N    Guinea    West Olaf    29456 Kessler Streets    11346    Arkansas    2016-09-22 05:27:13.109248    2016-10-14 13:03:12.685041        \N    \N    \N    0    \N    \N    \N    \N    female
19046    Lane    Kub    trever@fay.com    \N    Barbados    Theresefurt    2054 Mayert Center    87656-9664    Connecticut    2016-06-26 19:20:51.717346    2016-10-14 13:03:12.689846        \N    \N    \N    0    \N    \N    \N    \N    male
19047    Moshe    Simonis    clementine.sawayn@kuhlmancain.biz    \N    Moldova    Shanaton    3243 Louisa Burgs    85331    South Carolina    2016-09-19 23:18:19.190268    2016-10-14 13:03:12.696662        \N    \N    \N    0    \N    \N    \N    \N    male
19048    Bruce    Gislason    isabelle_cormier@barton.name    \N    Cape Verde    Langworthchester    67108 Schultz Vista    44234    Alaska    2016-09-29 00:16:29.280636    2016-10-14 13:03:12.702166        \N    \N    \N    0    \N    \N    \N    \N    male
19049    Hobart    Heaney    justina@gulgowski.com    \N    Papua New Guinea    Lake Adela    6759 Jose Avenue    60162    Arkansas    2016-06-29 23:01:40.121296    2016-10-14 13:03:12.707327        \N    \N    \N    0    \N    \N    \N    \N    male
19050    Myrl    Koelpin    nicolette@boyle.biz    \N    Netherlands    West Marielle    97264 Reynold Ways    95135    Pennsylvania    2016-08-30 05:49:26.961223    2016-10-14 13:03:12.714205        \N    \N    \N    0    \N    \N    \N    \N    male
19051    Shyanne    Runolfsson    sabina@fay.biz    \N    French Southern Territories    Port Fay    500 Irma Route    29800-1611    Alabama    2016-08-19 20:10:46.578231    2016-10-14 13:03:12.720433        \N    \N    \N    0    \N    \N    \N    \N    male
19052    Kamren    Grady    petra_dubuque@moenturcotte.info    \N    Aruba    Deckowville    63412 Leslie Parkways    44330-2829    Connecticut    2016-07-05 16:18:24.920235    2016-10-14 13:03:12.725398        \N    \N    \N    0    \N    \N    \N    \N    female
19053    Nia    Willms    tate@gleason.org    \N    British Indian Ocean Territory (Chagos Archipelago)    Moenmouth    7711 Kylee Plains    53187    Utah    2016-07-31 21:20:55.706243    2016-10-14 13:03:12.730302        \N    \N    \N    0    \N    \N    \N    \N    male
19054    Pink    Quigley    yeenia@terry.name    \N    Tokelau    Port Ashleigh    95490 Araceli Ridge    81610-9555    Hawaii    2016-08-18 16:41:06.669569    2016-10-14 13:03:12.73466        \N    \N    \N    0    \N    \N    \N    \N    male
19055    Heidi    Greenholt    golden@kertzmannlindgren.io    \N    Ukraine    Lake Keyonstad    9870 Casey Squares    70078-1755    Arizona    2016-08-30 08:28:44.01674    2016-10-14 13:03:12.738582        \N    \N    \N    0    \N    \N    \N    \N    female
19056    Tanya    Green    erna_paucek@whitequitzon.org    \N    Yemen    Ninaberg    24817 Wisoky Street    94314    Florida    2016-09-16 00:31:28.140704    2016-10-14 13:03:12.74359        \N    \N    \N    0    \N    \N    \N    \N    female
19057    Julie    Kuhn    mason@jacobi.name    \N    New Caledonia    New Zoiemouth    1821 Jay Field    74776    West Virginia    2016-06-30 21:33:09.051345    2016-10-14 13:03:12.747973        \N    \N    \N    0    \N    \N    \N    \N    female
19058    Deshaun    Schoen    gloria@armstrong.com    \N    Algeria    West Jordanmouth    678 Stanton Path    46920-9963    New Mexico    2016-07-02 10:35:33.249983    2016-10-14 13:03:12.752686        \N    \N    \N    0    \N    \N    \N    \N    male
19059    Chester    Crona    noah.douglas@kshlerin.co    \N    Afghanistan    West Kasandra    226 Jeanie Turnpike    32729-5754    Louisiana    2016-07-24 18:07:45.085605    2016-10-14 13:03:12.757294        \N    \N    \N    0    \N    \N    \N    \N    male
19060    Tomasa    Balistreri    candido@mante.biz    \N    Albania    Ebertland    5519 Tremblay Circles    59129    Connecticut    2016-07-31 21:18:12.375631    2016-10-14 13:03:12.761838        \N    \N    \N    0    \N    \N    \N    \N    female
19062    Stephon    Hyatt    bethel_runolfon@marquardt.name    \N    Mongolia    Alexshire    9192 Sabrina Harbor    88445    Kentucky    2016-07-15 00:22:51.995582    2016-10-14 13:03:12.766446        \N    \N    \N    0    \N    \N    \N    \N    female
19063    Mervin    Bauch    houston_mccullough@breitenbergstreich.org    \N    Brazil    West Leda    986 Leannon Row    32786-8764    New Jersey    2016-08-15 19:34:53.49397    2016-10-14 13:03:12.77108        \N    \N    \N    0    \N    \N    \N    \N    female
19064    Vernon    Nikolaus    mariano_turner@lowe.com    \N    Svalbard & Jan Mayen Islands    Loismouth    56328 Hand Corners    82687    West Virginia    2016-07-29 17:27:15.717506    2016-10-14 13:03:12.775706        \N    \N    \N    0    \N    \N    \N    \N    male
19065    Elwin    McClure    keon@kozey.info    \N    Sao Tome and Principe    Stromanburgh    93163 Prosacco Overpass    29865-0959    Kentucky    2016-09-17 13:04:23.721943    2016-10-14 13:03:12.780668        \N    \N    \N    0    \N    \N    \N    \N    male
19066    Rosina    Gorczany    leopold@wuckertjohnston.com    \N    Somalia    West Juanabury    845 Marvin Lodge    41221-5126    North Carolina    2016-09-02 20:40:19.8556    2016-10-14 13:03:12.786633        \N    \N    \N    0    \N    \N    \N    \N    female
19067    Wilton    Keeling    jazmin_rutherford@terryrowe.name    \N    Kiribati    Kerlukestad    15920 Kaleigh Junction    67793    Washington    2016-06-25 01:06:15.243028    2016-10-14 13:03:12.791436        \N    \N    \N    0    \N    \N    \N    \N    male
19068    Amya    Wintheiser    deie.sawayn@ullrichlabadie.io    \N    Myanmar    Howellfort    389 Blanda Greens    89731    Hawaii    2016-08-27 00:26:19.899372    2016-10-14 13:03:12.795962        \N    \N    \N    0    \N    \N    \N    \N    female
19069    Deon    Krajcik    sarah_barrows@collierruel.org    \N    Saint Barthelemy    New Mandyton    89105 West Loaf    10574    Vermont    2016-08-16 10:50:14.775516    2016-10-14 13:03:12.800565        \N    \N    \N    0    \N    \N    \N    \N    male
19070    Kurt    Lubowitz    caesar@ko.info    \N    American Samoa    Corwinland    4206 Bret Heights    92908-5897    North Dakota    2016-07-10 13:15:32.762601    2016-10-14 13:03:12.804969        \N    \N    \N    0    \N    \N    \N    \N    female
19071    Monica    Moore    elmira.feeney@jenkins.com    \N    Chad    Litzyland    690 Strosin Island    59701-5415    Idaho    2016-08-05 18:08:39.5832    2016-10-14 13:03:12.809552        \N    \N    \N    0    \N    \N    \N    \N    male
19072    Wilbert    Boehm    zackery@framikuhn.biz    \N    Netherlands Antilles    Arnoldomouth    61463 Hintz Cove    45691-6865    Oklahoma    2016-08-22 17:29:19.964732    2016-10-14 13:03:12.815377        \N    \N    \N    0    \N    \N    \N    \N    female
19073    Alexandrea    Hartmann    cheyenne@harvey.co    \N    Uzbekistan    Port Penelopeview    149 Kunze Trace    14643    Arizona    2016-07-09 13:08:11.83564    2016-10-14 13:03:12.823932        \N    \N    \N    0    \N    \N    \N    \N    male
19074    Myriam    Glover    braden@shields.io    \N    Reunion    O'Connerfort    553 Arvilla Trace    44333-8395    Montana    2016-08-03 12:57:56.365695    2016-10-14 13:03:12.833142        \N    \N    \N    0    \N    \N    \N    \N    male
19076    Providenci    Heathcote    kavon@towneoberbrunner.org    \N    Azerbaijan    South Brenna    1524 Antwon Corner    28253    Texas    2016-07-28 09:43:44.889286    2016-10-14 13:03:12.839606        \N    \N    \N    0    \N    \N    \N    \N    male
19077    Nico    Lesch    candice@feil.net    \N    Barbados    Jaclynmouth    70393 Jonas Ridge    74500-2107    Kansas    2016-09-27 21:32:11.592578    2016-10-14 13:03:12.845189        \N    \N    \N    0    \N    \N    \N    \N    female
19078    Jabari    Dicki    guie@mosciski.info    \N    Taiwan    Schroederstad    249 Armstrong Lock    39677    Illinois    2016-07-20 03:47:29.23044    2016-10-14 13:03:12.850925        \N    \N    \N    0    \N    \N    \N    \N    female
19080    Domenic    Leffler    cecilia_bednar@kuphal.info    \N    Saint Vincent and the Grenadines    Lake Shaina    9178 Bergnaum Underpass    34239-5594    Maryland    2016-09-14 11:31:07.604552    2016-10-14 13:03:12.857116        \N    \N    \N    0    \N    \N    \N    \N    female
19081    Graciela    Kovacek    brendon@pfeffer.info    \N    Paraguay    East Audie    83390 Braulio Key    18388    Hawaii    2016-08-04 01:26:44.539211    2016-10-14 13:03:12.863803        \N    \N    \N    0    \N    \N    \N    \N    female
19082    Aiden    Bins    jacques_cruickshank@schummboyle.org    \N    Netherlands    East Jayceeville    62290 Devan Gateway    84517    Iowa    2016-07-16 00:06:52.321209    2016-10-14 13:03:12.871679        \N    \N    \N    0    \N    \N    \N    \N    female
19083    Maeve    Ziemann    roselyn_kling@zieme.co    \N    Saint Helena    Kesslerfort    640 Damien Ramp    68333    Kansas    2016-09-17 09:20:01.503981    2016-10-14 13:03:12.876682        \N    \N    \N    0    \N    \N    \N    \N    female
19085    Terrance    Marquardt    german.parker@robelschneider.info    \N    Mexico    West Faustoshire    610 Wilderman Hills    55918-7627    Alaska    2016-08-10 12:24:38.790807    2016-10-14 13:03:12.882786        \N    \N    \N    0    \N    \N    \N    \N    male
19086    Regan    Senger    otilia_dare@bruen.net    \N    Honduras    Port Arielleton    380 Nolan Mountain    58313-5177    Kansas    2016-07-24 21:22:18.197827    2016-10-14 13:03:12.896621        \N    \N    \N    0    \N    \N    \N    \N    female
19087    Florine    Marks    nathanael@grady.info    \N    Estonia    East Shaylee    206 Marks Port    47678-9560    Alabama    2016-08-30 09:06:35.022659    2016-10-14 13:03:12.902425        \N    \N    \N    0    \N    \N    \N    \N    female
19088    Whitney    Tillman    virginia.stiedemann@conn.com    \N    Mozambique    Lake Clotildechester    522 Champlin Islands    99999-9397    Vermont    2016-09-06 09:21:15.985626    2016-10-14 13:03:12.909124        \N    \N    \N    0    \N    \N    \N    \N    male
19089    Desiree    Dickens    alene.kuvalis@corwin.com    \N    Sudan    Danykaborough    691 Susana Gateway    62879-3187    Mississippi    2016-06-28 05:48:06.674099    2016-10-14 13:03:12.917236        \N    \N    \N    0    \N    \N    \N    \N    female
19090    Donnie    Ferry    lorena_west@will.name    \N    Finland    Wunschburgh    694 Swift Summit    66194-8810    Ohio    2016-07-01 16:46:18.170274    2016-10-14 13:03:12.924562        \N    \N    \N    0    \N    \N    \N    \N    male
19091    Kailyn    Lindgren    eduardo_damore@wilkinson.net    \N    Saint Vincent and the Grenadines    Eugeneside    8321 Zetta Radial    23336-2117    Iowa    2016-09-12 13:32:36.280561    2016-10-14 13:03:12.929612        \N    \N    \N    0    \N    \N    \N    \N    male
19092    Wilber    Cole    gardner@lind.net    \N    British Indian Ocean Territory (Chagos Archipelago)    Winfieldchester    6778 Wiegand Square    67827    Massachusetts    2016-07-23 07:06:35.643095    2016-10-14 13:03:12.934314        \N    \N    \N    0    \N    \N    \N    \N    female
19093    Sydnie    Powlowski    deonte.rowe@larson.net    \N    Bhutan    Jenkinsfort    5362 Graham Walk    93823    Delaware    2016-09-06 12:17:58.600274    2016-10-14 13:03:12.939288        \N    \N    \N    0    \N    \N    \N    \N    female
19094    Pinkie    Mills    nova@erdman.io    \N    Sweden    West Darronton    39416 Rodriguez Springs    86803-2069    Arkansas    2016-07-15 10:35:51.832578    2016-10-14 13:03:12.944047        \N    \N    \N    0    \N    \N    \N    \N    female
19095    Kolby    Schowalter    maddison@auerrempel.name    \N    Zambia    Rogahnside    35375 Cleora Tunnel    49247    Washington    2016-07-21 14:53:01.269325    2016-10-14 13:03:12.948618        \N    \N    \N    0    \N    \N    \N    \N    female
19096    Antonetta    McKenzie    emmy.koch@quitzonkihn.net    \N    Cameroon    Klingstad    1609 Muller Corners    86481-2220    Washington    2016-09-14 01:07:59.772028    2016-10-14 13:03:12.953667        \N    \N    \N    0    \N    \N    \N    \N    female
19097    Archibald    Herzog    arno.wolff@heaney.info    \N    Gambia    O'Connerchester    946 Seth Vista    46446-3253    New Mexico    2016-07-01 14:33:24.532086    2016-10-14 13:03:12.95843        \N    \N    \N    0    \N    \N    \N    \N    female
19098    Arno    Reinger    keira_bauch@cartwright.net    \N    United States Minor Outlying Islands    Wizaland    7888 Cartwright Stravenue    42883    South Carolina    2016-09-18 18:42:28.738766    2016-10-14 13:03:12.965684        \N    \N    \N    0    \N    \N    \N    \N    female
19099    Adelle    Padberg    unique.kilback@beckerwolff.name    \N    Gibraltar    New Hannah    26355 Langworth Isle    47311-7474    Idaho    2016-09-03 02:39:17.920356    2016-10-14 13:03:12.972961        \N    \N    \N    0    \N    \N    \N    \N    male
19100    Oda    Skiles    london.greenfelder@krajcikhuels.org    \N    Azerbaijan    Ahmadchester    82521 Effertz Expressway    47170-0273    Ohio    2016-08-08 14:18:05.885011    2016-10-14 13:03:12.977369        \N    \N    \N    0    \N    \N    \N    \N    male
19101    April    Macejkovic    keagan.goodwin@keler.io    \N    Saint Kitts and Nevis    Malachistad    844 Lakin Village    58338    Washington    2016-07-26 22:00:36.584174    2016-10-14 13:03:12.982225        \N    \N    \N    0    \N    \N    \N    \N    male
19102    America    Hermann    erik.wisoky@pourosgibson.io    \N    Sri Lanka    Rickyland    8342 Romaguera Curve    30761-3962    Delaware    2016-07-14 00:35:50.521489    2016-10-14 13:03:12.98759        \N    \N    \N    0    \N    \N    \N    \N    female
19103    Burley    Jacobson    gudrun_bayer@crookskuhlman.com    \N    Bolivia    Kesslerfurt    75809 Emmitt Dale    95785    Georgia    2016-07-02 19:09:02.221576    2016-10-14 13:03:12.993881        \N    \N    \N    0    \N    \N    \N    \N    male
19104    Maurine    Kutch    marques_monahan@mccullough.net    \N    Netherlands    North Eldridge    8538 Daniel Plains    90601-3694    Colorado    2016-07-07 19:41:42.352078    2016-10-14 13:03:12.999613        \N    \N    \N    0    \N    \N    \N    \N    female
19105    Grayce    Heidenreich    joanne.yundt@schamberger.net    \N    El Salvador    Rigobertoview    871 Garett River    23380    Arizona    2016-07-21 19:01:18.668547    2016-10-14 13:03:13.004622        \N    \N    \N    0    \N    \N    \N    \N    male
19106    Eliza    Kling    madeline@littel.org    \N    Vanuatu    East Mathew    709 Jessica Isle    86327    Montana    2016-09-13 05:34:42.866199    2016-10-14 13:03:13.01205        \N    \N    \N    0    \N    \N    \N    \N    female
19107    Maria    Bayer    jaylon.walter@trantow.info    \N    Guadeloupe    Turnerside    321 Hilpert Route    73813-2471    Ohio    2016-06-24 15:53:53.651627    2016-10-14 13:03:13.017303        \N    \N    \N    0    \N    \N    \N    \N    female
19108    Amber    Kunde    breanna@kub.org    \N    Kenya    Pacochaborough    535 Mayert Court    34472    Arizona    2016-06-29 16:17:04.785733    2016-10-14 13:03:13.022065        \N    \N    \N    0    \N    \N    \N    \N    male
19109    Wiley    Green    summer_moen@beahankoch.org    \N    Ethiopia    South Tony    97848 Kamren Islands    43818-1398    Arizona    2016-07-15 16:43:26.391999    2016-10-14 13:03:13.034269        \N    \N    \N    0    \N    \N    \N    \N    female
19110    Jack    Tremblay    lorine@hanewisoky.com    \N    Dominica    Altenwerthland    230 Shaun Coves    39587    California    2016-08-02 10:19:29.729441    2016-10-14 13:03:13.041729        \N    \N    \N    0    \N    \N    \N    \N    male
19111    Sienna    Zieme    willard@senger.info    \N    Cyprus    Borisbury    58098 Schuster Rapid    46985-0291    Louisiana    2016-09-01 01:36:46.358002    2016-10-14 13:03:13.046862        \N    \N    \N    0    \N    \N    \N    \N    female
19112    Rebeka    Hyatt    ashlynn@cartwright.net    \N    Marshall Islands    New Maverick    64035 Wiza Trail    10342    Vermont    2016-08-17 12:46:44.985419    2016-10-14 13:03:13.052235        \N    \N    \N    0    \N    \N    \N    \N    male
19113    Orval    Deckow    moie_little@moenkuphal.org    \N    South Africa    Waelchiberg    3659 Ariel Points    38160-1819    Oklahoma    2016-08-18 03:47:59.504284    2016-10-14 13:03:13.060701        \N    \N    \N    0    \N    \N    \N    \N    female
19114    Isabella    Dicki    thora@graham.org    \N    San Marino    Kemmerstad    87198 Abraham Landing    30412-1015    Maine    2016-07-22 21:06:13.787978    2016-10-14 13:03:13.066181        \N    \N    \N    0    \N    \N    \N    \N    female
19115    Pauline    Cormier    maggie.pollich@klein.name    \N    Martinique    Lake Ashly    982 Mayert Mountain    32495    Pennsylvania    2016-07-07 12:23:53.67807    2016-10-14 13:03:13.094243        \N    \N    \N    0    \N    \N    \N    \N    male
19116    Rene    Reinger    ibrahim_king@walter.io    \N    Palau    Russelchester    4723 Vandervort Knoll    24616    West Virginia    2016-07-04 18:24:07.074966    2016-10-14 13:03:13.09965        \N    \N    \N    0    \N    \N    \N    \N    female
19117    Caleb    Mayer    urban_moriette@franecki.info    \N    Uzbekistan    Raulchester    967 Smith Groves    84434    New York    2016-07-13 04:21:40.379197    2016-10-14 13:03:13.104067        \N    \N    \N    0    \N    \N    \N    \N    female
19118    Zetta    Daugherty    lillian@conn.info    \N    Cambodia    Simton    114 Heidenreich Rapid    78797    Kansas    2016-08-14 10:38:37.429101    2016-10-14 13:03:13.108678        \N    \N    \N    0    \N    \N    \N    \N    male
19119    Gianni    Kuphal    ewald_lueilwitz@boyerwalter.name    \N    Bermuda    East Kayton    242 Art Squares    11907-2801    Alaska    2016-07-21 05:48:50.706846    2016-10-14 13:03:13.113874        \N    \N    \N    0    \N    \N    \N    \N    male
19120    Ashleigh    Christiansen    jacey@schuppe.net    \N    Burkina Faso    Grahamview    2663 Kulas Spurs    75355    Illinois    2016-08-16 04:57:54.664768    2016-10-14 13:03:13.12012        \N    \N    \N    0    \N    \N    \N    \N    female
19121    Mallie    Terry    cheyenne.beahan@halvorsonspinka.org    \N    Mozambique    Lake Melyssaton    95731 Douglas Knolls    57433-0208    California    2016-09-12 01:10:15.138722    2016-10-14 13:03:13.128474        \N    \N    \N    0    \N    \N    \N    \N    male
19122    Candace    Tillman    beulah.feeney@littleoreilly.co    \N    Netherlands    West Kacey    728 Stanton Springs    47618    Rhode Island    2016-08-31 01:52:46.059771    2016-10-14 13:03:13.137131        \N    \N    \N    0    \N    \N    \N    \N    female
19219    Jamey    Swift    tania_ondricka@ruecker.biz    \N    Tuvalu    Hauckshire    2105 Olson Unions    91172    Louisiana    2016-07-24 00:26:32.55672    2016-10-14 13:03:13.804451        \N    \N    \N    0    \N    \N    \N    \N    male
19123    Sydnee    MacGyver    afton.harber@ferrykeler.co    \N    Virgin Islands, U.S.    North Waldoborough    71261 Kihn Junctions    73207    Tennessee    2016-08-17 16:00:23.1298    2016-10-14 13:03:13.146028        \N    \N    \N    0    \N    \N    \N    \N    female
19125    Astrid    Herzog    adriana.bergnaum@okunevakeler.io    \N    Canada    North Blanchehaven    54361 Christopher Run    83423    Minnesota    2016-09-19 09:27:38.499062    2016-10-14 13:03:13.157797        \N    \N    \N    0    \N    \N    \N    \N    female
19126    Dasia    Dach    mose_zboncak@abshirereichert.net    \N    Cayman Islands    Okeyville    247 Kunze Skyway    32883    Wisconsin    2016-07-22 14:04:07.419539    2016-10-14 13:03:13.167985        \N    \N    \N    0    \N    \N    \N    \N    male
19127    Nayeli    Moen    tierra@hodkiewicz.net    \N    Lesotho    Hilpertburgh    5116 Christa Hollow    88804    Arkansas    2016-08-29 18:01:37.028646    2016-10-14 13:03:13.186849        \N    \N    \N    0    \N    \N    \N    \N    male
19128    Maya    Corkery    duane@shanahan.io    \N    Haiti    Lake Maurinefort    3839 Maggio Path    52161-2381    South Dakota    2016-06-22 12:59:01.5439    2016-10-14 13:03:13.196897        \N    \N    \N    0    \N    \N    \N    \N    female
19129    Jerad    Kiehn    jerad@murphy.com    \N    Martinique    Lakinton    36046 Garth Stream    77106    Washington    2016-08-20 21:19:26.660035    2016-10-14 13:03:13.239428        \N    \N    \N    0    \N    \N    \N    \N    female
19130    Diamond    Upton    patricia@kreiger.io    \N    Jamaica    Dellashire    23079 Hester Lodge    58352    Utah    2016-06-23 13:09:56.296066    2016-10-14 13:03:13.248143        \N    \N    \N    0    \N    \N    \N    \N    male
19131    Giovanny    Cormier    carson_auer@wisozkhartmann.com    \N    Botswana    Port Aiden    4970 Wunsch Isle    21979    South Dakota    2016-07-09 22:21:42.755133    2016-10-14 13:03:13.263313        \N    \N    \N    0    \N    \N    \N    \N    female
19132    Ian    Skiles    antone.renner@dibbertkaulke.name    \N    Jamaica    New Robertomouth    24212 Gutmann Fork    41719-8012    Nevada    2016-07-13 10:14:58.2862    2016-10-14 13:03:13.290208        \N    \N    \N    0    \N    \N    \N    \N    female
19133    Timothy    Schiller    sarina.boyle@larkinmitchell.net    \N    Sudan    East Adalberto    70519 Schowalter Junctions    59390    Iowa    2016-08-31 22:17:28.407412    2016-10-14 13:03:13.307029        \N    \N    \N    0    \N    \N    \N    \N    male
19134    Lacey    Pacocha    nick.mclaughlin@marks.co    \N    Armenia    Schmidtland    63982 Chesley Brook    36881-5953    Rhode Island    2016-07-30 18:06:37.305903    2016-10-14 13:03:13.318356        \N    \N    \N    0    \N    \N    \N    \N    female
19135    Anne    Nolan    imogene@willms.com    \N    Virgin Islands, U.S.    Powlowskiborough    51345 Reichert Ramp    50361    Iowa    2016-07-28 15:00:31.624494    2016-10-14 13:03:13.330253        \N    \N    \N    0    \N    \N    \N    \N    female
19136    Kim    Jacobi    dylan@davis.com    \N    Slovakia (Slovak Republic)    Kendrickburgh    85641 Crooks Plaza    69160-9999    Virginia    2016-07-12 03:12:43.090338    2016-10-14 13:03:13.338135        \N    \N    \N    0    \N    \N    \N    \N    female
19137    Natalie    Mertz    tevin@trantow.co    \N    Malawi    West Lori    5183 Zieme Route    68179-9120    South Carolina    2016-07-10 13:10:28.709156    2016-10-14 13:03:13.345184        \N    \N    \N    0    \N    \N    \N    \N    male
19138    Verlie    Christiansen    rhiannon@swaniawskibauch.co    \N    Myanmar    East Fredrick    34895 Floyd Parkway    86371    Rhode Island    2016-06-25 19:20:13.641918    2016-10-14 13:03:13.355668        \N    \N    \N    0    \N    \N    \N    \N    female
14303    Claud    Bauch    alec@ferry.org    \N    Martinique    Klingtown    4380 Vincenzo Trail    84797-3028    Alabama    2016-06-28 09:04:39.158937    2016-10-14 13:03:13.367679        \N    \N    \N    0    \N    \N    \N    \N    female
19139    Catherine    Borer    merlin@rueckerweimann.name    \N    Jordan    Lake Merle    39147 Kamryn Mills    83981-0189    Arizona    2016-09-20 13:26:44.915191    2016-10-14 13:03:13.38022        \N    \N    \N    0    \N    \N    \N    \N    male
19140    Milton    Denesik    selina_witting@corkery.com    \N    Russian Federation    West Yasminberg    580 Brakus Fall    66146-8107    Pennsylvania    2016-09-07 18:15:07.395655    2016-10-14 13:03:13.393706        \N    \N    \N    0    \N    \N    \N    \N    male
19141    Trevor    Miller    bettie@vandervort.co    \N    Switzerland    New Earlineborough    471 Nolan Mills    11297-0670    Minnesota    2016-09-12 14:57:22.419505    2016-10-14 13:03:13.406659        \N    \N    \N    0    \N    \N    \N    \N    male
19142    Marcella    Cole    terrence@block.biz    \N    Bahrain    Ezrachester    28749 Runolfsdottir Harbor    94951    Indiana    2016-08-24 10:29:20.662332    2016-10-14 13:03:13.414175        \N    \N    \N    0    \N    \N    \N    \N    female
19143    Gaylord    Larkin    grayson@prosacco.io    \N    Egypt    Gusikowskiburgh    69969 Jakubowski Curve    47577-5719    Ohio    2016-08-07 04:09:41.773798    2016-10-14 13:03:13.418979        \N    \N    \N    0    \N    \N    \N    \N    male
19144    Thea    Keebler    jeromy_macejkovic@oberbrunner.com    \N    Czech Republic    Port Gavin    727 Emelia Neck    32913    Michigan    2016-08-22 20:58:47.985991    2016-10-14 13:03:13.427983        \N    \N    \N    0    \N    \N    \N    \N    female
19145    Chris    Mertz    jocelyn_waelchi@wehnerchamplin.net    \N    United States of America    Howellville    502 Treutel Course    47885    New Mexico    2016-09-08 01:56:04.648877    2016-10-14 13:03:13.44353        \N    \N    \N    0    \N    \N    \N    \N    male
19146    Deron    Cummerata    oscar.hickle@waelchi.org    \N    Faroe Islands    Port Paulaport    793 Abernathy Lodge    16389-0430    Tennessee    2016-07-15 17:39:52.453082    2016-10-14 13:03:13.461436        \N    \N    \N    0    \N    \N    \N    \N    female
19147    Rowan    Welch    raleigh_kutch@moore.name    \N    India    Mariahburgh    9994 Ortiz Center    44023-3213    Iowa    2016-09-21 18:48:03.701439    2016-10-14 13:03:13.471829        \N    \N    \N    0    \N    \N    \N    \N    female
19148    Carole    Fritsch    yvonne@cummeratafarrell.net    \N    Greece    Port Zoie    92889 Stan Shore    83195-4677    Louisiana    2016-06-27 02:26:12.884206    2016-10-14 13:03:13.481971        \N    \N    \N    0    \N    \N    \N    \N    male
19149    Heidi    Sanford    tevin@jakubowskihackett.name    \N    Algeria    North Roscoe    67424 Witting Trail    38195-1666    Connecticut    2016-08-26 06:45:47.196783    2016-10-14 13:03:13.488647        \N    \N    \N    0    \N    \N    \N    \N    female
19150    Kylie    Smitham    dennis@gottlieb.org    \N    Jamaica    Baronchester    6463 Barton Meadow    29322-7089    Maine    2016-07-23 09:31:10.151614    2016-10-14 13:03:13.502518        \N    \N    \N    0    \N    \N    \N    \N    female
19151    Lamont    Hackett    dana@west.com    \N    Norway    New Tyrique    6840 Bosco Shoals    22267    New York    2016-07-28 15:25:55.519631    2016-10-14 13:03:13.507151        \N    \N    \N    0    \N    \N    \N    \N    male
19152    Felicita    Schulist    loyce@hackettconnelly.info    \N    Jersey    New Victoriaborough    5278 Funk Corner    56794    Arkansas    2016-07-09 23:47:55.05494    2016-10-14 13:03:13.511693        \N    \N    \N    0    \N    \N    \N    \N    male
19153    Mabel    Marks    sister@beer.biz    \N    Spain    Jeniferton    362 Gay Plains    32022-1934    North Dakota    2016-08-03 20:47:45.024192    2016-10-14 13:03:13.51819        \N    \N    \N    0    \N    \N    \N    \N    male
19154    Elmo    Zulauf    henriette.heel@mayer.name    \N    Eritrea    Strackeshire    60939 Corine Spur    19482    Georgia    2016-07-22 05:42:36.736456    2016-10-14 13:03:13.523632        \N    \N    \N    0    \N    \N    \N    \N    male
19155    Joany    Padberg    loraine.schroeder@kuhicturner.biz    \N    Lithuania    Port Emerson    5313 Soledad Junctions    18464    Tennessee    2016-07-31 23:53:06.860862    2016-10-14 13:03:13.529292        \N    \N    \N    0    \N    \N    \N    \N    male
19156    Manuel    Kutch    jerrod@kohlerheidenreich.name    \N    Nicaragua    Lednerside    226 Hagenes Throughway    43359-3153    Alabama    2016-07-21 13:32:22.810857    2016-10-14 13:03:13.533793        \N    \N    \N    0    \N    \N    \N    \N    female
19157    Cicero    Price    luz@mcglynnchamplin.net    \N    Denmark    Kubport    3710 Cassin Valley    32769-4998    Alabama    2016-06-23 10:35:12.487047    2016-10-14 13:03:13.538429        \N    \N    \N    0    \N    \N    \N    \N    female
19158    Viola    Ortiz    rhea_moore@lakin.org    \N    Nauru    South Raphaelleland    118 Shields Field    92636    Virginia    2016-07-07 08:12:05.213739    2016-10-14 13:03:13.543288        \N    \N    \N    0    \N    \N    \N    \N    female
19159    Nola    Turcotte    dora_hudson@ritchie.co    \N    Taiwan    South Godfreychester    81212 Mavis Inlet    92385    Iowa    2016-07-27 08:49:42.043746    2016-10-14 13:03:13.548991        \N    \N    \N    0    \N    \N    \N    \N    male
19160    Evert    Nikolaus    antwan.prohaska@sawayn.org    \N    Turks and Caicos Islands    Quintenfort    300 Edgardo Harbor    28231-8087    Ohio    2016-08-18 10:11:55.365051    2016-10-14 13:03:13.553306        \N    \N    \N    0    \N    \N    \N    \N    male
19161    Luella    Green    megane_rempel@beierhane.info    \N    Zambia    Padbergberg    1739 Leannon Pine    39697-6839    Maine    2016-08-22 08:19:29.913289    2016-10-14 13:03:13.558188        \N    \N    \N    0    \N    \N    \N    \N    male
19163    Alba    Turcotte    ariel@bartoletti.io    \N    Brazil    Lindland    67281 Vandervort Expressway    24415-7884    Nevada    2016-07-24 09:09:39.482324    2016-10-14 13:03:13.562246        \N    \N    \N    0    \N    \N    \N    \N    male
19164    Maiya    Reilly    isac.weber@corkery.info    \N    Malaysia    Schultzbury    2485 Jo Ways    36844-2003    South Dakota    2016-06-27 12:00:07.720539    2016-10-14 13:03:13.566445        \N    \N    \N    0    \N    \N    \N    \N    male
19165    Ofelia    Cassin    donny@kub.net    \N    Cuba    Port Aylin    12632 Brandi Brook    23930-4558    Florida    2016-07-14 06:06:41.64569    2016-10-14 13:03:13.570541        \N    \N    \N    0    \N    \N    \N    \N    male
19166    Shanel    Waelchi    sheridan@hoeger.com    \N    Swaziland    Balistreriberg    1737 Walton Port    18380    Alaska    2016-08-29 19:24:51.513153    2016-10-14 13:03:13.574917        \N    \N    \N    0    \N    \N    \N    \N    female
19167    Alan    Pouros    harry@rathcruickshank.io    \N    Brunei Darussalam    North Willismouth    2852 Hayes Isle    19590-8056    Rhode Island    2016-07-24 13:52:40.440082    2016-10-14 13:03:13.579677        \N    \N    \N    0    \N    \N    \N    \N    female
19168    Elda    Howe    myrtle_jacobi@huels.com    \N    Estonia    New Reymundoshire    598 MacGyver Pine    28665-7580    Washington    2016-09-15 08:50:39.066592    2016-10-14 13:03:13.584219        \N    \N    \N    0    \N    \N    \N    \N    male
19169    Loyce    D'Amore    tia@cole.biz    \N    Rwanda    Margotport    251 Fahey Lock    65146-8280    Wisconsin    2016-07-03 05:07:33.95339    2016-10-14 13:03:13.588382        \N    \N    \N    0    \N    \N    \N    \N    female
19170    Dovie    Aufderhar    alexane_bayer@gulgowskiwitting.name    \N    France    McDermottburgh    7546 Bayer Rapids    34177    Alaska    2016-09-10 10:09:02.259483    2016-10-14 13:03:13.592674        \N    \N    \N    0    \N    \N    \N    \N    male
19171    Walter    Glover    madge@barrows.co    \N    Nepal    Lake Forestfurt    308 Colin Run    88217-8951    New York    2016-08-06 19:20:24.541216    2016-10-14 13:03:13.596875        \N    \N    \N    0    \N    \N    \N    \N    female
19172    Susanna    Reynolds    gustave.bailey@willruecker.com    \N    Algeria    Eulaliaton    3260 Ebert Springs    58399-2938    Oklahoma    2016-07-23 15:17:59.86533    2016-10-14 13:03:13.601836        \N    \N    \N    0    \N    \N    \N    \N    male
19173    Mackenzie    West    deangelo_legros@abbottflatley.io    \N    Cayman Islands    New Imeldafurt    15463 Alexandro Highway    56589    Arizona    2016-08-15 06:09:30.72099    2016-10-14 13:03:13.606381        \N    \N    \N    0    \N    \N    \N    \N    female
19174    Jedediah    Hand    cary@wardswift.name    \N    Montenegro    Swiftmouth    69112 Osinski Passage    23923-2513    Arizona    2016-08-15 04:21:11.140382    2016-10-14 13:03:13.611462        \N    \N    \N    0    \N    \N    \N    \N    male
19175    Alivia    Robel    marjolaine_fay@simonisbrakus.name    \N    Azerbaijan    Binsshire    859 Alaina Inlet    81050    Wyoming    2016-08-27 04:26:12.062042    2016-10-14 13:03:13.616454        \N    \N    \N    0    \N    \N    \N    \N    female
19176    Myah    Kuphal    odie@greenlarkin.name    \N    Lao People's Democratic Republic    East Anastacio    67771 Harvey Trail    53726    Missouri    2016-08-04 04:47:52.10783    2016-10-14 13:03:13.621436        \N    \N    \N    0    \N    \N    \N    \N    male
19177    Moshe    Littel    conrad_lebsack@wuckert.biz    \N    Poland    Princeland    625 Devin Light    82960-2366    Montana    2016-09-19 02:35:58.382177    2016-10-14 13:03:13.625597        \N    \N    \N    0    \N    \N    \N    \N    female
19178    Clarabelle    Medhurst    nona@fay.net    \N    Hungary    Hoppeside    570 Pearline Cape    37743    Alabama    2016-08-07 23:42:19.120383    2016-10-14 13:03:13.629669        \N    \N    \N    0    \N    \N    \N    \N    male
19179    Katherine    Tremblay    rebeca_farrell@harris.net    \N    China    Arneland    503 Abernathy Haven    96015-9955    Connecticut    2016-06-22 16:15:52.601393    2016-10-14 13:03:13.634109        \N    \N    \N    0    \N    \N    \N    \N    female
19180    Thad    DuBuque    emil.wiza@murraykiehn.info    \N    Guinea-Bissau    East Ludwig    128 Wiza Mills    66154-8382    Florida    2016-09-22 02:21:03.910991    2016-10-14 13:03:13.638224        \N    \N    \N    0    \N    \N    \N    \N    male
19181    Pete    Daugherty    wanda@nikolausjacobson.info    \N    Martinique    Howestad    44434 Goyette Mission    53490    New Mexico    2016-07-25 05:55:40.699451    2016-10-14 13:03:13.642259        \N    \N    \N    0    \N    \N    \N    \N    female
19182    Jarrett    Kirlin    lavada_gaylord@boganmayer.biz    \N    Niger    Lake Hoyt    4846 Stokes Village    97595    Idaho    2016-08-30 18:46:43.103031    2016-10-14 13:03:13.646634        \N    \N    \N    0    \N    \N    \N    \N    female
19183    Alexandra    Bergstrom    leopold@faylang.com    \N    French Polynesia    Hagenesstad    163 Diana Freeway    68629-0142    Delaware    2016-08-21 05:51:09.071127    2016-10-14 13:03:13.650738        \N    \N    \N    0    \N    \N    \N    \N    male
19184    Sophia    Flatley    ebony.medhurst@rolfson.com    \N    Ghana    North Jayne    15122 Hintz Run    60982    Michigan    2016-07-19 05:44:22.271313    2016-10-14 13:03:13.655138        \N    \N    \N    0    \N    \N    \N    \N    male
19185    Wilhelm    Prohaska    mathilde@kuhn.biz    \N    Mauritania    North Eloytown    436 Brooke Manor    89872-2307    Georgia    2016-07-08 11:35:44.302838    2016-10-14 13:03:13.659475        \N    \N    \N    0    \N    \N    \N    \N    female
19188    Shanie    Block    ryleigh.nicolas@swift.com    \N    Ukraine    Friesenville    844 Heaney Lakes    85274    Massachusetts    2016-08-08 03:58:45.1691    2016-10-14 13:03:13.663946        \N    \N    \N    0    \N    \N    \N    \N    female
19189    Cielo    Crona    kayley_stanton@mclaughlin.info    \N    Cape Verde    Port Dolly    3264 Claudie Keys    16833    Nebraska    2016-07-12 05:21:15.76379    2016-10-14 13:03:13.669226        \N    \N    \N    0    \N    \N    \N    \N    female
19191    Jerrod    Corkery    allen.hane@moriette.info    \N    Northern Mariana Islands    North Allymouth    9108 Sanford Port    11614-4966    New Jersey    2016-07-27 22:39:12.200508    2016-10-14 13:03:13.673554        \N    \N    \N    0    \N    \N    \N    \N    female
19192    Aurelio    White    nicolette@gradyabernathy.biz    \N    Niue    Rupertshire    756 Dooley Station    34154    Pennsylvania    2016-09-12 13:56:12.839656    2016-10-14 13:03:13.678433        \N    \N    \N    0    \N    \N    \N    \N    male
19193    Ola    Dicki    hazel_stokes@paucekcrooks.co    \N    Bahrain    Kevinshire    546 Flatley Curve    57770-1710    Vermont    2016-09-16 18:58:49.603744    2016-10-14 13:03:13.68301        \N    \N    \N    0    \N    \N    \N    \N    male
19194    Jovany    Harvey    nathan.vonrueden@fisher.info    \N    Grenada    Derrickstad    863 Ryan Run    11463-9544    Washington    2016-07-12 11:22:09.475719    2016-10-14 13:03:13.687666        \N    \N    \N    0    \N    \N    \N    \N    male
19195    Ayla    Lakin    joshua_frami@altenwerth.info    \N    Hungary    Noelialand    413 Denesik Trail    78073    Wisconsin    2016-07-13 15:29:17.417274    2016-10-14 13:03:13.691948        \N    \N    \N    0    \N    \N    \N    \N    female
19196    Lexie    Koelpin    gilda_wuckert@shanahanherzog.io    \N    Wallis and Futuna    Edenborough    463 Robbie Court    67069    Wyoming    2016-08-27 23:09:06.197654    2016-10-14 13:03:13.696564        \N    \N    \N    0    \N    \N    \N    \N    female
19197    Aubrey    Mayer    keshawn.trantow@davis.com    \N    Sao Tome and Principe    Hilarioport    632 Tillman Prairie    90628-5431    California    2016-09-14 23:47:01.253164    2016-10-14 13:03:13.701603        \N    \N    \N    0    \N    \N    \N    \N    female
19198    Beverly    McLaughlin    michale@kaulke.co    \N    Japan    West Edd    316 Jayson Corners    13900    South Carolina    2016-08-31 16:08:16.546061    2016-10-14 13:03:13.706296        \N    \N    \N    0    \N    \N    \N    \N    male
19199    Bobbie    Cummerata    chelsea@lueilwitzcremin.biz    \N    Togo    Jadeshire    1054 Damon Garden    51769    West Virginia    2016-08-19 06:02:53.351554    2016-10-14 13:03:13.711352        \N    \N    \N    0    \N    \N    \N    \N    female
19200    Jason    Reynolds    hulda_rath@hoeger.net    \N    Chile    North Savanahbury    4607 Seamus Parkway    55778    West Virginia    2016-08-07 13:55:37.028557    2016-10-14 13:03:13.715697        \N    \N    \N    0    \N    \N    \N    \N    male
19201    Billy    Lakin    lavon.becker@ferry.org    \N    Kyrgyz Republic    Rosariostad    709 Yolanda Rapid    96310    Idaho    2016-07-16 19:51:02.744569    2016-10-14 13:03:13.719821        \N    \N    \N    0    \N    \N    \N    \N    male
19202    Florencio    Runolfsdottir    gerda_reilly@roberts.com    \N    Cuba    Krajciktown    31764 Raynor Village    74732-4995    Louisiana    2016-07-24 15:50:11.339748    2016-10-14 13:03:13.723837        \N    \N    \N    0    \N    \N    \N    \N    male
19203    Carolyn    Lindgren    antonia_goodwin@littel.com    \N    Bermuda    Brainville    50524 Mertz River    40665-4143    Oregon    2016-08-11 20:20:03.701094    2016-10-14 13:03:13.727721        \N    \N    \N    0    \N    \N    \N    \N    female
19204    Charlotte    Wiza    clifton.connelly@ullrichmayert.biz    \N    American Samoa    New Jaclyn    53068 Larkin Isle    78127    Oklahoma    2016-07-02 16:59:47.453227    2016-10-14 13:03:13.731839        \N    \N    \N    0    \N    \N    \N    \N    female
19205    Oral    Mann    melvina.runte@waelchi.com    \N    Palau    Keatonbury    662 Hodkiewicz Ford    18984-8065    Wisconsin    2016-07-01 23:30:22.464797    2016-10-14 13:03:13.736338        \N    \N    \N    0    \N    \N    \N    \N    female
19206    Rudolph    Hahn    justen@braunweinat.com    \N    Portugal    Port Rebekaborough    400 Hudson Forge    18459-0719    Colorado    2016-09-27 21:27:10.897448    2016-10-14 13:03:13.740691        \N    \N    \N    0    \N    \N    \N    \N    male
19207    Oran    Becker    sabrina@dickinson.biz    \N    United States of America    Bridiechester    5970 Okuneva Crossing    97495    Illinois    2016-07-06 10:50:57.04461    2016-10-14 13:03:13.745639        \N    \N    \N    0    \N    \N    \N    \N    male
19208    Scot    Dicki    joelle.herzog@heel.info    \N    Norfolk Island    East Daijaburgh    180 McKenzie Gateway    41915    Kansas    2016-07-02 20:47:52.750504    2016-10-14 13:03:13.750116        \N    \N    \N    0    \N    \N    \N    \N    male
19209    Maximo    Runte    amely@heaney.org    \N    Slovenia    New Verliemouth    1534 Garnet Locks    74313    Illinois    2016-08-31 16:22:50.145279    2016-10-14 13:03:13.754694        \N    \N    \N    0    \N    \N    \N    \N    male
19210    Amelia    Maggio    darlene_stanton@strosinprice.name    \N    Tanzania    Elenachester    6575 Goldner Lock    83028-3988    Tennessee    2016-06-24 01:11:15.700872    2016-10-14 13:03:13.759475        \N    \N    \N    0    \N    \N    \N    \N    male
19211    Krystina    Bogan    eden_bergstrom@goyettegreenfelder.io    \N    Myanmar    Port Angelaland    8923 Jaskolski Heights    56990    Georgia    2016-07-06 16:08:13.768518    2016-10-14 13:03:13.764614        \N    \N    \N    0    \N    \N    \N    \N    female
19212    Kathryn    Harris    vincent@simonisweinat.info    \N    Azerbaijan    North Madelynnmouth    9988 Shayna Ford    29305    New Mexico    2016-09-10 17:16:38.398153    2016-10-14 13:03:13.769298        \N    \N    \N    0    \N    \N    \N    \N    female
19213    Griffin    Zulauf    nayeli@dietrichkunde.com    \N    Estonia    Port Kolby    9782 Kerluke Springs    14509    Maryland    2016-09-10 01:17:15.239534    2016-10-14 13:03:13.7737        \N    \N    \N    0    \N    \N    \N    \N    female
19214    Alexane    Schoen    joelle_gaylord@rohan.org    \N    Argentina    West Vicentefort    6214 Wyman Fields    51946-9226    New Jersey    2016-09-06 14:36:20.61517    2016-10-14 13:03:13.778248        \N    \N    \N    0    \N    \N    \N    \N    male
19215    Reinhold    D'Amore    kitty@boyle.net    \N    Togo    South Lindsay    2266 Hillary Points    20852-5624    New Hampshire    2016-07-12 10:08:46.864077    2016-10-14 13:03:13.784081        \N    \N    \N    0    \N    \N    \N    \N    female
19216    Vernice    Kutch    horace@kubkoepp.info    \N    Croatia    Berneiceport    88391 Devin Flats    91953-1505    Connecticut    2016-07-30 17:10:45.137818    2016-10-14 13:03:13.79022        \N    \N    \N    0    \N    \N    \N    \N    female
19217    Casey    VonRueden    jody@wyman.biz    \N    Qatar    Port Larissaport    6021 Elta Manor    62199-3132    Louisiana    2016-07-07 11:04:04.620019    2016-10-14 13:03:13.794885        \N    \N    \N    0    \N    \N    \N    \N    male
19218    Ella    Lubowitz    summer.rippin@kling.info    \N    Holy See (Vatican City State)    North Shea    79947 Keira Street    38841    Hawaii    2016-07-09 07:24:55.808835    2016-10-14 13:03:13.799393        \N    \N    \N    0    \N    \N    \N    \N    female
19221    Katlynn    Fisher    halle.altenwerth@thompson.net    \N    Romania    Armstrongside    2232 Rowe Meadows    81622    North Dakota    2016-09-13 06:04:39.266958    2016-10-14 13:03:13.810046        \N    \N    \N    0    \N    \N    \N    \N    male
19222    Vaughn    Abernathy    celine_schimmel@hirthe.com    \N    Palau    Emilianoville    664 Cristobal Isle    72917-2665    Minnesota    2016-08-04 11:33:23.985046    2016-10-14 13:03:13.814621        \N    \N    \N    0    \N    \N    \N    \N    male
19223    Jeffrey    Marvin    erick_dicki@wilkinson.net    \N    Bangladesh    Mullermouth    14889 Keshawn Vista    34764    Pennsylvania    2016-09-03 06:23:39.723841    2016-10-14 13:03:13.819482        \N    \N    \N    0    \N    \N    \N    \N    male
19224    Dane    Muller    gaylord_lueilwitz@schulist.biz    \N    Samoa    Gradytown    97290 Joesph Crossroad    44428-4210    Iowa    2016-06-24 19:34:35.258478    2016-10-14 13:03:13.826799        \N    \N    \N    0    \N    \N    \N    \N    female
19225    Blanche    Yost    mabelle_moriette@jakubowskikemmer.com    \N    Luxembourg    Stoltenbergtown    212 Earlene Hills    80157-9690    Connecticut    2016-07-22 06:58:31.614778    2016-10-14 13:03:13.836474        \N    \N    \N    0    \N    \N    \N    \N    female
19226    Chet    Stoltenberg    eudora.carter@bosco.com    \N    Bangladesh    Lexiview    737 Keebler Overpass    99364-2727    Indiana    2016-07-12 17:20:14.350431    2016-10-14 13:03:13.849528        \N    \N    \N    0    \N    \N    \N    \N    female
19227    Elvie    Kovacek    cydney@dickens.net    \N    Grenada    Murphytown    5422 Rogahn Keys    34900-7715    New Hampshire    2016-06-28 22:38:48.131094    2016-10-14 13:03:13.856705        \N    \N    \N    0    \N    \N    \N    \N    female
19228    Jessyca    Lang    seth@graham.io    \N    Comoros    Grantbury    68119 Veronica Throughway    12356-9803    New York    2016-07-06 03:59:22.875045    2016-10-14 13:03:13.862732        \N    \N    \N    0    \N    \N    \N    \N    male
19229    Paris    Bosco    georgianna.kohler@gusikowski.name    \N    China    Stephanyville    68060 Catalina Union    78353    North Carolina    2016-07-27 04:49:11.87119    2016-10-14 13:03:13.870213        \N    \N    \N    0    \N    \N    \N    \N    female
19230    Katheryn    Berge    shea@mcglynn.info    \N    Paraguay    Hoegerton    9379 Rowan Forks    93428    West Virginia    2016-08-31 12:58:02.507496    2016-10-14 13:03:13.874721        \N    \N    \N    0    \N    \N    \N    \N    male
19231    Annetta    Conn    alvah.sawayn@labadiedickinson.biz    \N    Belize    Port Linwoodfurt    99437 Pfannerstill View    71920    Virginia    2016-08-14 19:21:27.541248    2016-10-14 13:03:13.879144        \N    \N    \N    0    \N    \N    \N    \N    male
19232    Cordie    Leuschke    alba_hane@wiegand.org    \N    Saint Barthelemy    Nicoletteberg    54549 Effertz Well    81769    Rhode Island    2016-08-21 17:47:40.498758    2016-10-14 13:03:13.885856        \N    \N    \N    0    \N    \N    \N    \N    male
19233    Henri    McKenzie    tatyana.rutherford@nitzsche.name    \N    Uganda    Port Lysanneburgh    4485 Mante Ways    68406    Kansas    2016-07-19 13:42:05.819038    2016-10-14 13:03:13.890782        \N    \N    \N    0    \N    \N    \N    \N    female
19234    Green    Witting    haley_hudson@sipes.info    \N    Guyana    Jaydenport    6068 Dach Oval    52561    New Jersey    2016-08-22 09:25:48.032975    2016-10-14 13:03:13.895935        \N    \N    \N    0    \N    \N    \N    \N    male
19235    Abigayle    Macejkovic    dora@windler.net    \N    British Indian Ocean Territory (Chagos Archipelago)    Coleberg    426 Hamill Square    48951-8753    Montana    2016-07-23 09:55:58.039686    2016-10-14 13:03:13.900993        \N    \N    \N    0    \N    \N    \N    \N    male
19236    Hugh    Moore    claude@simonis.io    \N    China    Altenwerthberg    939 Baumbach Course    58719-8387    Michigan    2016-07-19 12:20:09.973117    2016-10-14 13:03:13.905913        \N    \N    \N    0    \N    \N    \N    \N    female
19237    Herminia    Pagac    felipa@kshlerinfahey.org    \N    Ethiopia    Roryview    8663 Devon Station    35532-7736    Wyoming    2016-08-01 03:22:29.189527    2016-10-14 13:03:13.911319        \N    \N    \N    0    \N    \N    \N    \N    male
19238    Romaine    Quitzon    jayme@framistokes.net    \N    Jersey    Lake Leo    4018 Kole Spurs    42847    New York    2016-09-04 09:18:46.933359    2016-10-14 13:03:13.915867        \N    \N    \N    0    \N    \N    \N    \N    female
19239    Brennon    Pfeffer    caitlyn.mante@hyatt.io    \N    Christmas Island    Jessycamouth    27928 Jayden Union    41714    Idaho    2016-07-12 13:54:48.695956    2016-10-14 13:03:13.920046        \N    \N    \N    0    \N    \N    \N    \N    female
19240    Norbert    Runolfsdottir    horacio_wolff@jacobson.info    \N    Senegal    Port Carolview    82349 Mackenzie Common    22128    Michigan    2016-07-19 21:06:58.867653    2016-10-14 13:03:13.924912        \N    \N    \N    0    \N    \N    \N    \N    female
19241    Adan    Dach    verdie@lynch.info    \N    Cape Verde    Minniefurt    94257 Jacobs Passage    54433-9500    New Jersey    2016-09-27 09:28:24.250618    2016-10-14 13:03:13.929658        \N    \N    \N    0    \N    \N    \N    \N    male
19242    Lorine    Greenfelder    adan@vandervort.org    \N    Austria    Johnsonport    2545 Ernser Creek    13321-5696    Connecticut    2016-09-23 18:35:52.712597    2016-10-14 13:03:13.934287        \N    \N    \N    0    \N    \N    \N    \N    male
19243    Lexus    Hansen    mozell.brakus@feeneylesch.name    \N    Peru    Port Dusty    19423 Hermiston Shore    24479-6057    Mississippi    2016-09-18 15:12:11.781749    2016-10-14 13:03:13.939307        \N    \N    \N    0    \N    \N    \N    \N    male
19244    Alexie    Koelpin    ona@ruecker.biz    \N    Niue    Port Geovannyville    4425 Goyette Squares    19621-0372    Kentucky    2016-08-24 05:28:45.900208    2016-10-14 13:03:13.943995        \N    \N    \N    0    \N    \N    \N    \N    female
19245    Alayna    Shields    kaela@bailey.com    \N    Ireland    South Zoeyland    4967 King Forge    69333    Louisiana    2016-09-02 08:53:54.449532    2016-10-14 13:03:13.950838        \N    \N    \N    0    \N    \N    \N    \N    male
19246    Floy    Murphy    dock.cremin@bartell.com    \N    Cocos (Keeling) Islands    Altenwerthfurt    46123 Ebert Radial    94768-6879    Connecticut    2016-07-17 17:11:03.673074    2016-10-14 13:03:13.955128        \N    \N    \N    0    \N    \N    \N    \N    male
19247    Duane    Bauch    jaime.rutherford@homenick.org    \N    Mali    New Celestineton    34609 Hackett Cape    29999    Oklahoma    2016-07-03 05:33:33.040373    2016-10-14 13:03:13.959253        \N    \N    \N    0    \N    \N    \N    \N    female
19248    Darrell    Schmitt    lucie@kiehn.info    \N    Democratic People's Republic of Korea    New Howard    802 Gutmann Roads    39361    Michigan    2016-07-25 10:40:07.022518    2016-10-14 13:03:13.96334        \N    \N    \N    0    \N    \N    \N    \N    male
19249    Walker    Casper    demarco@kub.com    \N    Armenia    Roselynport    322 Lowe Course    86267-2925    Virginia    2016-09-19 16:43:37.263111    2016-10-14 13:03:13.967717        \N    \N    \N    0    \N    \N    \N    \N    male
19250    Emelia    Schamberger    piper.moore@adamsmacgyver.org    \N    Saint Helena    Isacstad    6021 Tito Lane    42500    Oklahoma    2016-09-15 19:04:52.752394    2016-10-14 13:03:13.971699        \N    \N    \N    0    \N    \N    \N    \N    male
19251    Neva    Goodwin    delta@oberbrunnerokon.name    \N    Portugal    Schmelerton    42086 Greyson Key    26603-7304    Arizona    2016-06-26 02:21:03.870352    2016-10-14 13:03:13.975564        \N    \N    \N    0    \N    \N    \N    \N    female
19252    Theresa    Prohaska    roberta@schuster.info    \N    Swaziland    Yeseniaport    82262 Lebsack Tunnel    45342    Kentucky    2016-08-26 10:08:58.317888    2016-10-14 13:03:13.979715        \N    \N    \N    0    \N    \N    \N    \N    female
19253    Jermain    Lesch    mortimer@emard.org    \N    Papua New Guinea    New Benedictview    187 Vandervort Overpass    66006-8048    Idaho    2016-06-23 17:42:29.9179    2016-10-14 13:03:13.984395        \N    \N    \N    0    \N    \N    \N    \N    female
19254    Damian    Zboncak    gregory@grady.biz    \N    Mauritania    Feilfort    45540 Konopelski Light    63356-0118    Kansas    2016-07-09 02:45:30.05964    2016-10-14 13:03:13.988916        \N    \N    \N    0    \N    \N    \N    \N    male
19255    Rex    Koch    doug@jakubowskigaylord.net    \N    Mayotte    Vandervortville    357 Emilio Dam    62696    Ohio    2016-08-09 05:11:19.242925    2016-10-14 13:03:13.993368        \N    \N    \N    0    \N    \N    \N    \N    male
19256    Emmanuelle    Leuschke    evert.strosin@mertz.net    \N    Saint Martin    East Nathanial    516 Alexis Port    24003-6843    Minnesota    2016-09-01 02:56:03.4535    2016-10-14 13:03:13.999327        \N    \N    \N    0    \N    \N    \N    \N    female
19257    Deangelo    Herman    ellen@beer.name    \N    Aruba    Jerdeville    503 Conroy Point    70372-2254    Kentucky    2016-07-03 17:38:08.955168    2016-10-14 13:03:14.004068        \N    \N    \N    0    \N    \N    \N    \N    female
19258    Daryl    Dooley    dudley@sporerwindler.org    \N    Israel    New Lorna    701 Carey Vista    20100-3912    California    2016-09-22 18:56:51.153508    2016-10-14 13:03:14.008539        \N    \N    \N    0    \N    \N    \N    \N    male
19259    Marlin    Weber    clarabelle@friesenlesch.org    \N    Nigeria    Waltermouth    6509 Leffler Falls    50855-7195    Minnesota    2016-08-23 11:32:28.619303    2016-10-14 13:03:14.013158        \N    \N    \N    0    \N    \N    \N    \N    female
19260    Bryana    Fay    florence@osinski.com    \N    Rwanda    Gusikowskifort    1997 Dibbert Club    47046-6677    Utah    2016-09-16 08:31:17.720918    2016-10-14 13:03:14.017689        \N    \N    \N    0    \N    \N    \N    \N    female
19261    Arely    Wintheiser    rolando@boehm.com    \N    Guatemala    Hassiefurt    68762 Roscoe Throughway    90840-4860    Illinois    2016-08-24 15:00:33.034868    2016-10-14 13:03:14.022256        \N    \N    \N    0    \N    \N    \N    \N    male
19262    Garrick    Stoltenberg    nora@nienow.net    \N    Russian Federation    Jonesmouth    67757 Fisher Port    94701    Virginia    2016-09-16 11:00:12.928423    2016-10-14 13:03:14.028804        \N    \N    \N    0    \N    \N    \N    \N    female
19263    Gaetano    Labadie    vicky_krajcik@ko.com    \N    Panama    Savannahstad    92164 Hope Village    84660-4924    Nebraska    2016-09-06 16:14:40.081524    2016-10-14 13:03:14.033951        \N    \N    \N    0    \N    \N    \N    \N    female
19264    Wilmer    Hermann    dakota@heel.org    \N    Switzerland    South Deborah    93326 Jenkins Views    85487-4562    New York    2016-07-12 12:03:16.048557    2016-10-14 13:03:14.039773        \N    \N    \N    0    \N    \N    \N    \N    female
19265    Carlie    Mueller    timothy@kovacek.biz    \N    Germany    Port Stonemouth    398 Newton Junction    47504    North Dakota    2016-07-08 16:18:22.908388    2016-10-14 13:03:14.045135        \N    \N    \N    0    \N    \N    \N    \N    male
19266    Wiley    Wilkinson    geovanny@langworthbrekke.com    \N    Vanuatu    Lake Eugene    865 Jessy Alley    56615-3368    Iowa    2016-09-15 09:23:02.728941    2016-10-14 13:03:14.050087        \N    \N    \N    0    \N    \N    \N    \N    male
19267    Alessandra    Weber    beryl.macejkovic@friesen.biz    \N    San Marino    Port Hilarioside    960 Fabiola Tunnel    66945-3732    New Jersey    2016-07-15 17:25:57.722612    2016-10-14 13:03:14.056527        \N    \N    \N    0    \N    \N    \N    \N    male
19268    Penelope    Abbott    antonia_quitzon@volkman.co    \N    Djibouti    Lake Guidoside    9394 Merl Fort    87779-8590    Alabama    2016-06-23 09:03:36.311324    2016-10-14 13:03:14.062814        \N    \N    \N    0    \N    \N    \N    \N    female
19270    Hyman    Kovacek    elisha_weinat@dachmante.biz    \N    Chad    Adeliaburgh    7783 Luigi Cape    49324-3035    Washington    2016-09-08 14:20:24.432357    2016-10-14 13:03:14.067259        \N    \N    \N    0    \N    \N    \N    \N    female
19271    Kenyatta    Huels    fiona@boyerfeest.biz    \N    Paraguay    Port Cooper    25242 Crooks Spring    81080-3125    Indiana    2016-07-11 13:44:53.509316    2016-10-14 13:03:14.073602        \N    \N    \N    0    \N    \N    \N    \N    female
19272    Dane    Tillman    jared.kunde@koepp.net    \N    Zambia    Port Louisa    682 Lelah Neck    19420-3781    Rhode Island    2016-08-12 21:56:03.745598    2016-10-14 13:03:14.080001        \N    \N    \N    0    \N    \N    \N    \N    female
19273    Sigurd    Cartwright    aleia@stantonwilliamson.io    \N    Cocos (Keeling) Islands    Port Veronica    9564 Bogisich Turnpike    71562-9554    Idaho    2016-09-28 09:35:36.200206    2016-10-14 13:03:14.085781        \N    \N    \N    0    \N    \N    \N    \N    male
19274    Garland    Sipes    deborah@kling.com    \N    Ghana    New Marvin    26785 Lindgren Motorway    59055-4884    New Hampshire    2016-08-17 13:54:40.008924    2016-10-14 13:03:14.090565        \N    \N    \N    0    \N    \N    \N    \N    male
19275    Laury    Bruen    anderson@croninherman.biz    \N    Bhutan    Leannonport    4710 Lesch Loaf    16286-1457    Nebraska    2016-09-11 00:55:55.000387    2016-10-14 13:03:14.095469        \N    \N    \N    0    \N    \N    \N    \N    female
19276    Matilda    Sipes    phoebe@mayert.net    \N    Paraguay    South Carol    75560 Stiedemann Estate    81496    South Carolina    2016-09-28 21:51:14.039804    2016-10-14 13:03:14.123222        \N    \N    \N    0    \N    \N    \N    \N    female
19277    Pearl    Terry    darwin@volkmanheel.biz    \N    Tajikistan    East Samirview    6935 Moen Unions    11301    Indiana    2016-09-17 03:25:53.833511    2016-10-14 13:03:14.1313        \N    \N    \N    0    \N    \N    \N    \N    female
19278    Brooklyn    Cronin    robb_ziemann@leannon.name    \N    Macedonia    New Dejahmouth    34349 Fay Oval    68960    New Jersey    2016-07-07 07:58:19.684851    2016-10-14 13:03:14.140751        \N    \N    \N    0    \N    \N    \N    \N    female
19279    Estell    Hermiston    myrtice.walsh@johnsonoconner.com    \N    Bhutan    East Judson    4855 Dora Green    85165    Wisconsin    2016-06-22 20:45:48.366033    2016-10-14 13:03:14.144956        \N    \N    \N    0    \N    \N    \N    \N    male
19280    Obie    Ritchie    micheal.skiles@schmitt.com    \N    Uzbekistan    South Daryl    836 Sawayn Course    51724    Vermont    2016-06-30 11:29:34.034678    2016-10-14 13:03:14.149833        \N    \N    \N    0    \N    \N    \N    \N    female
19281    Enid    Hoeger    troy_paucek@bashirianschumm.io    \N    Sao Tome and Principe    Collinsview    685 Lebsack Club    91421-5719    Wyoming    2016-07-20 19:41:06.006348    2016-10-14 13:03:14.154152        \N    \N    \N    0    \N    \N    \N    \N    male
19282    Eddie    Graham    jonathon@halvorsondamore.info    \N    Antigua and Barbuda    New Tyler    34272 Murazik Point    90888    South Carolina    2016-07-11 14:42:23.515833    2016-10-14 13:03:14.158483        \N    \N    \N    0    \N    \N    \N    \N    female
19283    Pietro    Hegmann    jammie@macejkovicmoen.net    \N    Gibraltar    West Heloisemouth    65675 Grady Camp    41632    Georgia    2016-09-11 19:21:07.363048    2016-10-14 13:03:14.162608        \N    \N    \N    0    \N    \N    \N    \N    female
19284    Josefina    VonRueden    mona@hodkiewicz.net    \N    Dominica    Lake Torreyville    837 Zemlak Tunnel    56105    Utah    2016-08-30 22:03:14.554077    2016-10-14 13:03:14.166862        \N    \N    \N    0    \N    \N    \N    \N    male
19285    Ezequiel    Heidenreich    vicente@connellypurdy.org    \N    Saint Martin    North Miracle    299 Viviane Divide    28370-7262    North Carolina    2016-08-19 21:52:38.396816    2016-10-14 13:03:14.170991        \N    \N    \N    0    \N    \N    \N    \N    male
19286    Hayden    Hettinger    dillon@carroll.net    \N    Uruguay    Rogahnhaven    97072 Murphy Streets    66480-3638    Idaho    2016-09-23 14:18:14.942421    2016-10-14 13:03:14.175222        \N    \N    \N    0    \N    \N    \N    \N    male
19287    Nicholas    Ruecker    adelle.okuneva@wuckertvon.info    \N    Comoros    Leannonport    7956 Ledner Mount    70873-4441    New Hampshire    2016-09-23 14:00:30.105756    2016-10-14 13:03:14.179749        \N    \N    \N    0    \N    \N    \N    \N    female
19288    Dylan    Welch    anjali@bradtkehoppe.com    \N    Macedonia    Lake Letha    77715 Armani Ridge    66361-2474    Pennsylvania    2016-09-24 07:26:33.345562    2016-10-14 13:03:14.184209        \N    \N    \N    0    \N    \N    \N    \N    female
19289    Melany    Schulist    freddy@schaden.co    \N    Ecuador    Stammberg    11881 Cora Tunnel    61646    Hawaii    2016-09-07 13:16:13.842914    2016-10-14 13:03:14.188692        \N    \N    \N    0    \N    \N    \N    \N    male
19290    Kenneth    Franecki    elian.hammes@lesch.co    \N    Bangladesh    Nolanhaven    62059 Armstrong Ville    34105    Wisconsin    2016-07-06 20:51:32.716107    2016-10-14 13:03:14.193916        \N    \N    \N    0    \N    \N    \N    \N    male
19291    Macy    Kulas    kyle@hirthejakubowski.co    \N    Namibia    Erwinport    2688 Dallin Bypass    66588-5816    Nevada    2016-07-13 18:24:52.986822    2016-10-14 13:03:14.198909        \N    \N    \N    0    \N    \N    \N    \N    female
19292    Curtis    Trantow    michele.bode@kundehilpert.org    \N    Philippines    Wisokymouth    556 Dickinson Village    76207-9625    Iowa    2016-08-31 21:13:44.38942    2016-10-14 13:03:14.204163        \N    \N    \N    0    \N    \N    \N    \N    male
19293    Alta    Swift    lisandro@leannon.name    \N    Uruguay    Hoppehaven    255 Hand Isle    62490    Michigan    2016-08-04 21:31:10.122599    2016-10-14 13:03:14.210019        \N    \N    \N    0    \N    \N    \N    \N    female
19294    Ivory    Blanda    sydnie@haley.biz    \N    New Zealand    New Natashaview    7245 Talon Turnpike    51502    Alaska    2016-07-02 04:24:09.42649    2016-10-14 13:03:14.218231        \N    \N    \N    0    \N    \N    \N    \N    male
19295    Rita    Cole    alisha@mccullough.co    \N    Svalbard & Jan Mayen Islands    Port Racheltown    958 Gina Motorway    83920    South Carolina    2016-08-12 23:43:22.775953    2016-10-14 13:03:14.222365        \N    \N    \N    0    \N    \N    \N    \N    male
19296    Hyman    Barrows    mohamed.oconnell@block.info    \N    Gambia    West Icietown    2676 Adolfo Tunnel    51147-1180    North Dakota    2016-06-27 03:37:01.540398    2016-10-14 13:03:14.226583        \N    \N    \N    0    \N    \N    \N    \N    male
19297    Katarina    Effertz    haven@bosco.name    \N    El Salvador    Considineton    7818 Beatty Drive    34960    Texas    2016-07-24 15:49:58.278604    2016-10-14 13:03:14.230872        \N    \N    \N    0    \N    \N    \N    \N    female
19298    Lyda    Rogahn    adan.huels@westweinat.org    \N    Northern Mariana Islands    Kailyntown    280 Fadel Crest    68727    Oregon    2016-07-03 11:47:24.193487    2016-10-14 13:03:14.23498        \N    \N    \N    0    \N    \N    \N    \N    female
19300    Queen    Mitchell    donavon.kerluke@kohler.io    \N    Monaco    North Judeport    7931 Boehm Cove    31849-0345    Vermont    2016-07-04 01:44:54.925432    2016-10-14 13:03:14.239471        \N    \N    \N    0    \N    \N    \N    \N    male
19301    Magdalena    Kirlin    luna@lindgrensatterfield.io    \N    Samoa    North Daryl    5964 Nyasia Coves    55513    Nevada    2016-08-28 21:39:06.242173    2016-10-14 13:03:14.243488        \N    \N    \N    0    \N    \N    \N    \N    male
19302    Mylene    Skiles    adriel@marquardt.info    \N    Turkmenistan    North Brendaview    6128 Dave Islands    44833-0821    Wisconsin    2016-09-12 00:22:07.276433    2016-10-14 13:03:14.247312        \N    \N    \N    0    \N    \N    \N    \N    male
19303    Vallie    Hegmann    philip.walsh@herzogfranecki.io    \N    Austria    Champlinhaven    41681 Shields Glen    85090    Kansas    2016-08-07 22:36:27.384802    2016-10-14 13:03:14.251148        \N    \N    \N    0    \N    \N    \N    \N    female
19304    Levi    Heaney    kitty@schultzerdman.info    \N    Poland    Elmerton    274 Daugherty Overpass    58885    Washington    2016-09-17 02:51:18.034779    2016-10-14 13:03:14.255385        \N    \N    \N    0    \N    \N    \N    \N    male
19305    Nya    Heidenreich    pierce.mcdermott@ruel.co    \N    American Samoa    New Elliehaven    67733 Oberbrunner Ways    23095-3795    Missouri    2016-09-03 02:25:27.806291    2016-10-14 13:03:14.259289        \N    \N    \N    0    \N    \N    \N    \N    male
19306    Name    Bode    bridie_gottlieb@schinner.biz    \N    French Guiana    North Verlaborough    425 Stracke Stream    84977    Delaware    2016-09-15 03:01:23.344065    2016-10-14 13:03:14.263137        \N    \N    \N    0    \N    \N    \N    \N    female
19307    Millie    Langworth    elinor@carrollcole.org    \N    Seychelles    Emmitthaven    7539 Dibbert Grove    16726    Virginia    2016-08-10 16:55:42.537454    2016-10-14 13:03:14.266971        \N    \N    \N    0    \N    \N    \N    \N    male
19308    Mia    Aufderhar    chanel.hackett@schulist.info    \N    Burundi    Kuhlmanborough    732 Juvenal Plaza    25424    Massachusetts    2016-07-20 14:42:11.060571    2016-10-14 13:03:14.271353        \N    \N    \N    0    \N    \N    \N    \N    male
19309    Alta    Bednar    carlos@hickle.name    \N    Macao    Rachaelside    85807 Prohaska Hill    28686    Tennessee    2016-08-05 07:58:10.997686    2016-10-14 13:03:14.275221        \N    \N    \N    0    \N    \N    \N    \N    male
19310    Harmon    Zieme    dustin@will.net    \N    Lesotho    North Alanna    669 Kutch Gateway    17247-8711    Nevada    2016-06-28 15:51:32.981634    2016-10-14 13:03:14.279213        \N    \N    \N    0    \N    \N    \N    \N    male
19311    Karli    Stroman    sedrick@sauerebert.org    \N    Kenya    South Michele    5417 Libbie Ridge    10414    New Mexico    2016-07-16 18:31:12.699903    2016-10-14 13:03:14.283219        \N    \N    \N    0    \N    \N    \N    \N    female
19312    Shawna    Volkman    matilde@kuphal.co    \N    Tokelau    East Ottoborough    19939 Mayra Heights    28452    Minnesota    2016-08-27 21:56:51.55541    2016-10-14 13:03:14.286958        \N    \N    \N    0    \N    \N    \N    \N    male
19313    Granville    Mills    nico.windler@nolan.com    \N    South Georgia and the South Sandwich Islands    Leuschkefurt    883 Lora Ville    25703    Arizona    2016-08-19 16:53:12.210426    2016-10-14 13:03:14.290896        \N    \N    \N    0    \N    \N    \N    \N    female
19314    Aniyah    Tillman    nash@muller.net    \N    Holy See (Vatican City State)    Bauchchester    9583 Kulas Island    16809-7275    Ohio    2016-07-28 05:46:32.902589    2016-10-14 13:03:14.295219        \N    \N    \N    0    \N    \N    \N    \N    male
19315    Meaghan    Cummings    annamae.runte@sawayn.net    \N    Niue    South Karianne    186 Schamberger Springs    29905-5256    Ohio    2016-07-30 10:50:32.21099    2016-10-14 13:03:14.299174        \N    \N    \N    0    \N    \N    \N    \N    male
19316    Orion    Hansen    eliane_legros@boganmccullough.io    \N    Saudi Arabia    Binston    3301 Reichel Green    63019    Arizona    2016-09-03 16:33:06.855579    2016-10-14 13:03:14.303055        \N    \N    \N    0    \N    \N    \N    \N    female
19317    Lorenzo    Corwin    prince_yundt@kub.org    \N    Faroe Islands    Maymouth    7680 Roob Extensions    26729-4706    Texas    2016-07-21 21:50:23.160507    2016-10-14 13:03:14.309553        \N    \N    \N    0    \N    \N    \N    \N    female
19318    Theodora    Schmidt    kurt.schowalter@watsicastehr.io    \N    Bangladesh    Alexiemouth    47997 Mayert Landing    36122-1142    Iowa    2016-09-17 04:08:02.664629    2016-10-14 13:03:14.313946        \N    \N    \N    0    \N    \N    \N    \N    female
19319    Arvilla    Kirlin    moriah.vonrueden@mosciskirutherford.io    \N    Gabon    New Ferne    283 Waldo Stravenue    57179-6935    Montana    2016-09-28 12:54:30.239406    2016-10-14 13:03:14.318551        \N    \N    \N    0    \N    \N    \N    \N    female
19320    Cordelia    Price    omer_lubowitz@will.io    \N    Colombia    Port Rosalynborough    929 Kub Brooks    22256    North Dakota    2016-07-07 21:02:01.175887    2016-10-14 13:03:14.322694        \N    \N    \N    0    \N    \N    \N    \N    female
19321    Lori    Herzog    jordyn_gulgowski@smithbatz.com    \N    China    Katrineberg    613 Lemuel Mount    81650-9725    Minnesota    2016-07-04 23:29:34.937399    2016-10-14 13:03:14.326948        \N    \N    \N    0    \N    \N    \N    \N    female
19322    Dawn    Cummings    dewayne@schoen.biz    \N    Holy See (Vatican City State)    North Sheilaview    958 Leuschke Landing    36760    Nevada    2016-08-17 04:34:45.28305    2016-10-14 13:03:14.331067        \N    \N    \N    0    \N    \N    \N    \N    male
14922    Nicholaus    Roob    jaron@johns.co    \N    Switzerland    Larueville    6056 Kunde Loaf    85831-1177    Alaska    2016-09-11 17:53:19.288578    2016-10-14 13:03:14.335413        \N    \N    \N    0    \N    \N    \N    \N    male
19323    Louisa    Torp    shyann@wintheiser.info    \N    Eritrea    North Hayley    9405 Tristian Highway    64780    California    2016-08-06 21:59:45.949127    2016-10-14 13:03:14.339323        \N    \N    \N    0    \N    \N    \N    \N    female
19324    Ashton    Gulgowski    royce.schiller@borer.net    \N    Israel    Gaystad    39979 Gleason Keys    28054-3041    Missouri    2016-09-19 06:57:01.011298    2016-10-14 13:03:14.343525        \N    \N    \N    0    \N    \N    \N    \N    female
19325    Laisha    Wilderman    beie@kemmer.io    \N    Poland    South Giannifurt    48062 Godfrey Ports    73819-7752    Indiana    2016-06-23 01:33:47.478669    2016-10-14 13:03:14.347563        \N    \N    \N    0    \N    \N    \N    \N    female
19326    Bernhard    Kshlerin    laria_reichel@hayes.io    \N    Bosnia and Herzegovina    Port Leonoraton    823 Forrest Rest    43345    Rhode Island    2016-09-16 02:29:34.816793    2016-10-14 13:03:14.351621        \N    \N    \N    0    \N    \N    \N    \N    male
19328    Modesto    Bechtelar    mallory@bode.co    \N    Panama    East Andresfort    7024 Margarette Route    40690-3658    Maine    2016-09-19 02:13:05.66151    2016-10-14 13:03:14.359733        \N    \N    \N    0    \N    \N    \N    \N    female
19329    Bernhard    Pfeffer    marisa@medhurst.net    \N    Hungary    North Jamirfort    738 Corkery Stream    49332    Wisconsin    2016-09-23 14:25:55.881562    2016-10-14 13:03:14.36391        \N    \N    \N    0    \N    \N    \N    \N    female
19331    Dayana    Bernier    ulices_daniel@johnson.io    \N    United Arab Emirates    Reeceburgh    449 Kohler Views    41660-7207    North Carolina    2016-08-24 06:23:26.624067    2016-10-14 13:03:14.367998        \N    \N    \N    0    \N    \N    \N    \N    male
19332    Missouri    Klein    werner.conn@sanford.name    \N    Niue    Claudinemouth    528 Doyle Spurs    40438    Oregon    2016-08-02 04:57:29.86045    2016-10-14 13:03:14.371894        \N    \N    \N    0    \N    \N    \N    \N    male
19333    Karine    Hayes    magnus@weimann.biz    \N    Luxembourg    Nikolaushaven    9370 Laurence Walks    30136-1429    North Carolina    2016-07-08 09:20:38.547056    2016-10-14 13:03:14.375654        \N    \N    \N    0    \N    \N    \N    \N    male
19503    Coby    Monahan    myrtie_hauck@bradtke.com    \N    Dominica    Leschstad    9701 Robyn Corner    25700    Oregon    2016-07-27 10:50:31.440646    2016-10-14 13:03:14.379679        \N    \N    \N    0    \N    \N    \N    \N    male
19334    Calista    Bosco    nola@turcottebauch.io    \N    Djibouti    North Adriel    8340 Marquise Coves    23310    Tennessee    2016-08-06 05:36:50.682301    2016-10-14 13:03:14.383689        \N    \N    \N    0    \N    \N    \N    \N    female
19335    Garfield    Deckow    ellie_bayer@watersherman.info    \N    Comoros    South Wilfordport    8724 Yundt Station    29237-6849    Indiana    2016-07-07 05:14:38.852665    2016-10-14 13:03:14.38767        \N    \N    \N    0    \N    \N    \N    \N    male
19336    Dorcas    Schmeler    domenick.gleason@murray.info    \N    Anguilla    Deckowfurt    851 Kuhn Shoals    82130-9235    South Carolina    2016-07-16 09:22:48.265215    2016-10-14 13:03:14.391831        \N    \N    \N    0    \N    \N    \N    \N    male
19337    Imogene    Brakus    vladimir@granthudson.com    \N    Latvia    East Wyatt    650 Sporer Lights    93098-9705    California    2016-08-12 01:16:15.333774    2016-10-14 13:03:14.39622        \N    \N    \N    0    \N    \N    \N    \N    male
19338    Taryn    Heaney    mafalda@mcdermottveum.io    \N    Venezuela    Reynoldsberg    808 Earlene Turnpike    86553-0984    Delaware    2016-09-04 20:08:28.025989    2016-10-14 13:03:14.417375        \N    \N    \N    0    \N    \N    \N    \N    female
19339    Toney    Welch    helen_schiller@grimes.name    \N    Montserrat    Kamrynfurt    55319 Fritz Bridge    23702-2829    Massachusetts    2016-07-12 05:21:26.542255    2016-10-14 13:03:14.422472        \N    \N    \N    0    \N    \N    \N    \N    male
19340    Willy    Ratke    connor@stammadams.net    \N    Barbados    North Neha    264 Eldred Dale    45979-1450    Wyoming    2016-06-24 04:59:40.423646    2016-10-14 13:03:14.426842        \N    \N    \N    0    \N    \N    \N    \N    male
19341    Madisyn    Reinger    heaven.bosco@funklangosh.com    \N    Brunei Darussalam    Port Baylee    55994 Coby Isle    50251    New Hampshire    2016-08-29 11:03:22.472469    2016-10-14 13:03:14.430923        \N    \N    \N    0    \N    \N    \N    \N    male
19342    Josiah    Lesch    reese.bradtke@wisozk.biz    \N    Kyrgyz Republic    Yesseniashire    86370 Blanca Crossing    95099    New Mexico    2016-06-27 23:47:01.439257    2016-10-14 13:03:14.43515        \N    \N    \N    0    \N    \N    \N    \N    male
19343    Morris    Lesch    steve.rau@howemccullough.com    \N    Suriname    Bogisichburgh    64027 Howe Drive    17791    North Carolina    2016-09-22 05:47:19.225724    2016-10-14 13:03:14.439384        \N    \N    \N    0    \N    \N    \N    \N    female
19344    Jeffry    Kuvalis    victoria@monahan.name    \N    Reunion    North Tremaineburgh    85279 Rocky Mills    10637-7263    Illinois    2016-07-07 11:55:09.782773    2016-10-14 13:03:14.443833        \N    \N    \N    0    \N    \N    \N    \N    male
19345    Tressie    Pollich    cristina_parker@kiehn.com    \N    Bhutan    Bergnaumside    8358 Pacocha Summit    98508    New Hampshire    2016-09-23 05:44:24.305908    2016-10-14 13:03:14.448282        \N    \N    \N    0    \N    \N    \N    \N    male
19346    Rebekah    McClure    jairo@whitegutkowski.org    \N    Lithuania    Quitzonborough    219 Donavon Summit    53277    Mississippi    2016-07-01 02:27:47.155646    2016-10-14 13:03:14.452776        \N    \N    \N    0    \N    \N    \N    \N    male
19347    Maybelle    Nicolas    richmond@wilkinsonlarson.biz    \N    Isle of Man    North Kaylee    665 Maddison Crossing    84526-5722    Alabama    2016-07-01 09:27:12.760673    2016-10-14 13:03:14.459455        \N    \N    \N    0    \N    \N    \N    \N    male
19348    Naomi    Walter    liam_lehner@hayes.name    \N    Namibia    Port Unatown    276 Juliana Prairie    49837    Mississippi    2016-08-06 19:05:33.806708    2016-10-14 13:03:14.463775        \N    \N    \N    0    \N    \N    \N    \N    female
19349    Tevin    DuBuque    bridget_johnston@runolfsdottir.co    \N    Malta    Goodwinberg    886 Isac Walk    85334    Alabama    2016-07-01 07:41:04.188116    2016-10-14 13:03:14.467819        \N    \N    \N    0    \N    \N    \N    \N    male
19350    Maudie    Lynch    johan_paucek@wardcrist.com    \N    Liberia    Leannaburgh    971 Tyson Parkway    12487    Montana    2016-09-10 03:03:51.623183    2016-10-14 13:03:14.471764        \N    \N    \N    0    \N    \N    \N    \N    female
19351    Tyree    Gorczany    junior_rutherford@wolf.net    \N    Fiji    Port Emmalee    1923 Rachelle Hills    28341    New Jersey    2016-08-10 20:05:56.149824    2016-10-14 13:03:14.475903        \N    \N    \N    0    \N    \N    \N    \N    male
19352    Isadore    Jakubowski    dakota@volkmanzemlak.net    \N    Kiribati    East Hildegardton    922 Gerson Bridge    19580    New Mexico    2016-06-26 03:22:26.712471    2016-10-14 13:03:14.480153        \N    \N    \N    0    \N    \N    \N    \N    female
19353    Richard    McLaughlin    kaitlin@torphy.biz    \N    Saint Vincent and the Grenadines    North Abdullah    89251 Casper Lane    88555    Washington    2016-08-24 22:55:32.328787    2016-10-14 13:03:14.484517        \N    \N    \N    0    \N    \N    \N    \N    male
19190    Lela    Sanford    rocky@hauck.name    \N    Mali    Turcotteland    1549 Yolanda Rest    71932-7642    North Carolina    2016-07-16 08:26:58.478942    2016-10-14 13:03:14.488646        \N    \N    \N    0    \N    \N    \N    \N    female
19354    Monserrat    Sawayn    barry@schmitt.com    \N    Sierra Leone    North Jakaylamouth    86164 Haag Place    63327-6432    Louisiana    2016-08-15 03:19:44.421169    2016-10-14 13:03:14.492706        \N    \N    \N    0    \N    \N    \N    \N    female
19356    Hilbert    Schinner    gladyce.ortiz@goldnerwisoky.net    \N    Austria    McDermottmouth    928 D'Amore Prairie    58737-2470    New Hampshire    2016-08-18 03:38:26.412625    2016-10-14 13:03:14.497446        \N    \N    \N    0    \N    \N    \N    \N    female
19357    Everett    Fahey    eula.carroll@bins.co    \N    Niger    Lake Shany    4727 Pfeffer Villages    54042    Kentucky    2016-07-04 06:53:43.203711    2016-10-14 13:03:14.5016        \N    \N    \N    0    \N    \N    \N    \N    female
19358    Alexandro    Parker    roscoe_cole@sauer.com    \N    United Arab Emirates    South Aileenland    98105 Ryan Forest    56143-5529    Florida    2016-08-17 10:07:11.036862    2016-10-14 13:03:14.505584        \N    \N    \N    0    \N    \N    \N    \N    male
19359    Cruz    Schinner    declan@nader.io    \N    Mayotte    Roryland    61890 Bergnaum Drive    67125-1270    Colorado    2016-08-16 05:13:33.817714    2016-10-14 13:03:14.509853        \N    \N    \N    0    \N    \N    \N    \N    female
19360    Monroe    Greenfelder    macie.mcclure@ryan.io    \N    Tanzania    Lake Stefanchester    3512 Weissnat Club    18512-7333    South Dakota    2016-08-04 01:10:39.788131    2016-10-14 13:03:14.514041        \N    \N    \N    0    \N    \N    \N    \N    male
19361    Thea    Gleason    caidy.mills@schinner.net    \N    Belize    Altenwerthbury    897 Gabe Camp    15865-1687    Hawaii    2016-07-20 12:38:11.934147    2016-10-14 13:03:14.518248        \N    \N    \N    0    \N    \N    \N    \N    female
19362    Tyrel    Larson    stevie@osinskidavis.org    \N    Gibraltar    Ernestoton    64410 Clifton Gardens    89216-6709    Oklahoma    2016-06-24 23:59:40.693597    2016-10-14 13:03:14.522775        \N    \N    \N    0    \N    \N    \N    \N    female
19363    Mertie    Kassulke    bernice.leuschke@hartmann.net    \N    Bermuda    Bashirianshire    6498 Isidro Pass    89587    Colorado    2016-08-31 13:27:42.383941    2016-10-14 13:03:14.527214        \N    \N    \N    0    \N    \N    \N    \N    male
19364    Clarissa    O'Keefe    vaughn@doyle.net    \N    Paraguay    West Elliotmouth    6091 Koss River    18850-8145    Louisiana    2016-08-30 08:04:57.608656    2016-10-14 13:03:14.531776        \N    \N    \N    0    \N    \N    \N    \N    male
19365    Sonia    Wehner    moriah@herzogeffertz.info    \N    Peru    Darrelchester    58459 Dion Landing    62379-5144    Pennsylvania    2016-07-25 03:33:27.302688    2016-10-14 13:03:14.538355        \N    \N    \N    0    \N    \N    \N    \N    female
19366    Keven    Zulauf    dino@hilll.net    \N    Mongolia    South Olenmouth    563 Edmund Field    99891-3557    Tennessee    2016-07-05 17:30:42.132577    2016-10-14 13:03:14.543036        \N    \N    \N    0    \N    \N    \N    \N    male
19367    Rylan    Hudson    jadyn_schmeler@goodwinschaden.org    \N    Anguilla    West Mikeville    6416 Osinski Underpass    87791-6441    Kansas    2016-07-26 00:48:00.697137    2016-10-14 13:03:14.547736        \N    \N    \N    0    \N    \N    \N    \N    female
19368    Jimmie    Huels    lottie@will.io    \N    Greece    North Myrtle    79075 Sadie Points    64615    Ohio    2016-09-15 19:22:31.919242    2016-10-14 13:03:14.551674        \N    \N    \N    0    \N    \N    \N    \N    female
19369    Sincere    McCullough    joelle@muellerhoppe.info    \N    Switzerland    New Harmonside    305 Dawson Camp    32645-1422    Delaware    2016-07-09 23:55:12.026952    2016-10-14 13:03:14.556267        \N    \N    \N    0    \N    \N    \N    \N    female
19370    Damaris    Conn    lily.runte@hyattbrekke.org    \N    Tuvalu    Aufderharburgh    97606 Elijah Lake    50201    Oregon    2016-06-23 01:50:57.857726    2016-10-14 13:03:14.561583        \N    \N    \N    0    \N    \N    \N    \N    female
19371    Waino    Hintz    maxie@zieme.name    \N    Germany    Prohaskaburgh    970 Yessenia Trail    32214-2857    Georgia    2016-09-24 16:58:57.260982    2016-10-14 13:03:14.566043        \N    \N    \N    0    \N    \N    \N    \N    male
19372    Shawna    Schuppe    georgiana@bernierhayes.com    \N    Belarus    Lake Valentinton    7919 Ewell Flats    20567    Nebraska    2016-09-14 17:54:18.22402    2016-10-14 13:03:14.570307        \N    \N    \N    0    \N    \N    \N    \N    female
19373    Rebeca    Weimann    otto@hilpert.com    \N    Burundi    Port Abbyberg    53888 Bonnie Views    32013-3798    North Carolina    2016-09-25 11:42:06.221007    2016-10-14 13:03:14.577324        \N    \N    \N    0    \N    \N    \N    \N    female
19374    Rebekah    Padberg    alva@christiansenweber.net    \N    Oman    Lindmouth    7020 Jones Extensions    82570    New Mexico    2016-08-01 14:34:47.364506    2016-10-14 13:03:14.58212        \N    \N    \N    0    \N    \N    \N    \N    female
19375    Waylon    Effertz    sam.ryan@rennerheller.co    \N    Holy See (Vatican City State)    Danielport    370 Bella Manor    62289-3669    Texas    2016-09-09 20:57:58.353083    2016-10-14 13:03:14.586284        \N    \N    \N    0    \N    \N    \N    \N    female
19376    Constance    Rau    maxie_fahey@blandaharris.info    \N    Cocos (Keeling) Islands    Brockbury    37710 Marcus Highway    19434    Ohio    2016-07-04 22:31:23.575908    2016-10-14 13:03:14.590633        \N    \N    \N    0    \N    \N    \N    \N    female
19377    Pansy    Franecki    susie.carter@hoeger.net    \N    Gambia    North Otto    2472 Keeling Rue    31326-6087    Connecticut    2016-07-11 17:33:30.185452    2016-10-14 13:03:14.595116        \N    \N    \N    0    \N    \N    \N    \N    female
19378    Kathryn    Kris    rudolph_gerlach@heller.net    \N    South Africa    Port Silasville    66808 Keebler Square    97942-2251    Missouri    2016-07-29 18:23:51.113427    2016-10-14 13:03:14.599348        \N    \N    \N    0    \N    \N    \N    \N    female
19379    Eriberto    Mueller    mason.haley@schummkuhn.biz    \N    Heard Island and McDonald Islands    West Lonfort    3582 Alene Plains    22764-9673    Ohio    2016-07-17 04:09:37.079806    2016-10-14 13:03:14.603551        \N    \N    \N    0    \N    \N    \N    \N    female
19380    Cordell    Wuckert    darren.streich@maggio.name    \N    Bulgaria    Jonesborough    78277 Wuckert Harbors    37873-4607    Virginia    2016-07-04 02:11:48.579658    2016-10-14 13:03:14.607435        \N    \N    \N    0    \N    \N    \N    \N    male
19381    Stephon    Becker    jordi@ward.com    \N    Oman    Klingmouth    493 Hamill Pike    35807    Illinois    2016-08-04 10:44:30.489759    2016-10-14 13:03:14.611427        \N    \N    \N    0    \N    \N    \N    \N    male
19382    Christelle    Rippin    anne@halvorson.name    \N    Venezuela    Maggiotown    58792 Williamson Trafficway    26872    Ohio    2016-07-12 08:42:42.472774    2016-10-14 13:03:14.617117        \N    \N    \N    0    \N    \N    \N    \N    male
19383    Ernestina    Lowe    monserrate_leannon@purdytillman.co    \N    Bahrain    Port Serenity    740 Dolly Prairie    60616    North Dakota    2016-09-04 03:22:11.924892    2016-10-14 13:03:14.621096        \N    \N    \N    0    \N    \N    \N    \N    female
19384    Deontae    O'Connell    era.cole@fritschcruickshank.co    \N    Latvia    Skylarmouth    63754 Runolfsdottir Drive    84945-1704    Maryland    2016-07-28 17:45:44.123724    2016-10-14 13:03:14.625586        \N    \N    \N    0    \N    \N    \N    \N    male
19385    Iliana    Pfeffer    ruben@purdy.biz    \N    Serbia    North Milfordmouth    99662 Maude Canyon    34836    Nevada    2016-08-23 02:57:56.033944    2016-10-14 13:03:14.630116        \N    \N    \N    0    \N    \N    \N    \N    female
19386    Dominic    Wyman    deontae_walsh@wiegand.com    \N    Armenia    South Manuela    85418 Frami Stravenue    32461-1912    North Carolina    2016-08-09 09:57:30.578278    2016-10-14 13:03:14.634766        \N    \N    \N    0    \N    \N    \N    \N    male
19387    Dale    Bayer    luisa@creminbartoletti.net    \N    San Marino    Lake Monahaven    52752 Stokes Path    84185    Connecticut    2016-08-01 13:16:31.847605    2016-10-14 13:03:14.640078        \N    \N    \N    0    \N    \N    \N    \N    female
19388    Ari    Franecki    willa.wolf@stiedemann.net    \N    Republic of Korea    Monahanfurt    13517 Windler Viaduct    93892    Louisiana    2016-08-13 17:18:50.865043    2016-10-14 13:03:14.644839        \N    \N    \N    0    \N    \N    \N    \N    male
19389    Dusty    Parker    bernard_kuvalis@reynolds.net    \N    Tuvalu    Domenicoburgh    87105 Thiel Viaduct    71461    Michigan    2016-07-22 04:31:01.87912    2016-10-14 13:03:14.649064        \N    \N    \N    0    \N    \N    \N    \N    male
19390    Winona    Bartoletti    brock@miller.co    \N    Peru    Christinetown    22316 Devyn Streets    90613-6811    Minnesota    2016-09-05 01:06:05.017327    2016-10-14 13:03:14.656043        \N    \N    \N    0    \N    \N    \N    \N    male
19391    Terrence    Gottlieb    araceli.bogisich@kulas.info    \N    Falkland Islands (Malvinas)    South Ivory    383 Beth Squares    63543-5271    Ohio    2016-06-24 09:55:40.63682    2016-10-14 13:03:14.661193        \N    \N    \N    0    \N    \N    \N    \N    male
19392    Jarret    Konopelski    tyrel@townechamplin.com    \N    Yemen    Richardview    312 Alexander Turnpike    53478-8167    Louisiana    2016-09-01 10:36:02.901214    2016-10-14 13:03:14.665749        \N    \N    \N    0    \N    \N    \N    \N    female
19393    Roscoe    Spencer    shanel@parisianhintz.org    \N    Kenya    South Clyde    71135 Konopelski Gardens    66984-7859    Maine    2016-07-20 04:41:12.966297    2016-10-14 13:03:14.670116        \N    \N    \N    0    \N    \N    \N    \N    male
19394    Maeve    Homenick    emiliano_kunde@schmidt.name    \N    Holy See (Vatican City State)    West Tarynhaven    57081 Glover Plains    46398-4006    Massachusetts    2016-06-26 00:46:34.881164    2016-10-14 13:03:14.674294        \N    \N    \N    0    \N    \N    \N    \N    male
19395    Brianne    Wehner    deion@flatleyparisian.com    \N    Palau    Simonisport    995 Ilene Mountains    91104-2688    Delaware    2016-09-15 13:02:53.187874    2016-10-14 13:03:14.678511        \N    \N    \N    0    \N    \N    \N    \N    male
19396    Jocelyn    Mraz    carrie@collins.io    \N    Antigua and Barbuda    North Pink    5828 Bahringer Flats    83852-0122    Virginia    2016-08-05 02:19:23.532346    2016-10-14 13:03:14.682573        \N    \N    \N    0    \N    \N    \N    \N    female
19397    Jordi    Grant    hattie@marquardt.biz    \N    Israel    North Elissaburgh    25156 Ebert Mountain    29691-1838    California    2016-09-16 06:38:20.45191    2016-10-14 13:03:14.686854        \N    \N    \N    0    \N    \N    \N    \N    female
19398    Meredith    Hoeger    brennon.langosh@wiegandmurray.co    \N    Greenland    New Friedrich    700 Bauch Village    91800-2008    Florida    2016-09-11 16:31:56.720608    2016-10-14 13:03:14.700691        \N    \N    \N    0    \N    \N    \N    \N    female
19399    Ludwig    Runolfsdottir    agustina@larkin.com    \N    Bermuda    Binsbury    4002 Elizabeth Crescent    75675-4553    South Carolina    2016-08-05 19:05:24.129665    2016-10-14 13:03:14.704869        \N    \N    \N    0    \N    \N    \N    \N    female
19400    Paul    MacGyver    christop@howellbotsford.info    \N    Greenland    Brekkestad    43216 Braden Trafficway    21698-8533    Massachusetts    2016-07-29 23:45:30.484237    2016-10-14 13:03:14.70906        \N    \N    \N    0    \N    \N    \N    \N    male
19401    Esmeralda    Gerhold    eunice@hilll.name    \N    Iran    South Danika    65537 Bechtelar Creek    19290-5401    Texas    2016-08-10 15:09:28.879042    2016-10-14 13:03:14.71375        \N    \N    \N    0    \N    \N    \N    \N    male
19402    Barney    Keebler    kadin.emard@okuneva.co    \N    Namibia    Julianachester    616 Sammie Spring    37221-8835    Alaska    2016-06-30 01:19:08.018418    2016-10-14 13:03:14.717756        \N    \N    \N    0    \N    \N    \N    \N    male
19403    Omari    Ratke    chelsie@emmerichbailey.io    \N    Uganda    West Gillianmouth    28249 Danielle Course    19134-8488    Arkansas    2016-07-22 02:11:36.141972    2016-10-14 13:03:14.721741        \N    \N    \N    0    \N    \N    \N    \N    male
19404    Elvis    Pfeffer    edwardo_ohara@roob.io    \N    Grenada    North Diamondside    5447 Fadel Lights    78796-3273    New Mexico    2016-08-14 20:32:41.660356    2016-10-14 13:03:14.72608        \N    \N    \N    0    \N    \N    \N    \N    female
19405    Narciso    Hirthe    kevon_blick@mccullough.co    \N    France    Port Madelineshire    955 Aurelio Course    48242    New Hampshire    2016-06-23 01:17:30.285996    2016-10-14 13:03:14.730635        \N    \N    \N    0    \N    \N    \N    \N    male
19406    Sandy    Wiza    giovanny_farrell@stokes.info    \N    Botswana    Kiehnview    89530 River Viaduct    87528    Arkansas    2016-07-08 23:53:09.019633    2016-10-14 13:03:14.735028        \N    \N    \N    0    \N    \N    \N    \N    female
19407    Asha    Zboncak    leif_torp@ritchie.info    \N    Cyprus    Lavadafort    832 Bergstrom Drives    90306-5508    Tennessee    2016-09-22 19:28:22.600507    2016-10-14 13:03:14.740504        \N    \N    \N    0    \N    \N    \N    \N    female
19408    Carlee    Hintz    cale_kuphal@colliercole.net    \N    Papua New Guinea    New Domenic    710 Davon Hollow    68675-1198    Georgia    2016-09-24 04:59:54.115965    2016-10-14 13:03:14.74568        \N    \N    \N    0    \N    \N    \N    \N    male
19409    Deborah    Zulauf    maria_marvin@carroll.io    \N    Congo    Velvamouth    5245 Langworth Causeway    36390-6622    South Carolina    2016-09-20 11:45:31.386436    2016-10-14 13:03:14.750093        \N    \N    \N    0    \N    \N    \N    \N    male
19410    Godfrey    Kozey    jordyn.dubuque@kautzer.net    \N    Mayotte    North Kayla    6036 Beulah Vista    85695    Indiana    2016-08-26 00:40:25.871454    2016-10-14 13:03:14.754633        \N    \N    \N    0    \N    \N    \N    \N    male
19411    Alexane    Corwin    sincere_walter@rippin.info    \N    Japan    New Kayliebury    417 Koepp Fields    83461-1167    Oklahoma    2016-09-16 11:34:03.906735    2016-10-14 13:03:14.758712        \N    \N    \N    0    \N    \N    \N    \N    female
19412    Mauricio    Hand    maia.hartmann@wuckert.com    \N    Wallis and Futuna    East Orlo    3483 O'Kon Corners    85634-3542    Iowa    2016-07-20 03:26:54.291551    2016-10-14 13:03:14.762649        \N    \N    \N    0    \N    \N    \N    \N    female
19413    Rudolph    Auer    dewayne@jenkins.biz    \N    Angola    North Sterlingtown    7159 Bella Plaza    33676-6786    California    2016-08-19 06:27:11.139841    2016-10-14 13:03:14.766838        \N    \N    \N    0    \N    \N    \N    \N    male
19414    Dolores    Carter    mara_schuster@kuhicolson.info    \N    Cayman Islands    North Giovani    448 Konopelski Corners    69579-5780    Indiana    2016-07-20 05:42:47.985746    2016-10-14 13:03:14.771369        \N    \N    \N    0    \N    \N    \N    \N    male
19415    Raphael    Corwin    luisa.padberg@medhurst.io    \N    Haiti    Lake Tyrese    3678 Brett Pines    11388-9117    Nebraska    2016-07-15 01:51:44.236895    2016-10-14 13:03:14.7755        \N    \N    \N    0    \N    \N    \N    \N    male
19416    Eula    Mosciski    katrine@klingstroman.co    \N    Iran    East Liliana    63440 Jeanie Garden    37706    Indiana    2016-08-04 18:26:04.033127    2016-10-14 13:03:14.779497        \N    \N    \N    0    \N    \N    \N    \N    male
19417    Arlo    Boyle    chandler_hagenes@mrazjakubowski.com    \N    Morocco    Burniceberg    514 Else Station    31101    Oklahoma    2016-09-10 15:27:27.005555    2016-10-14 13:03:14.783636        \N    \N    \N    0    \N    \N    \N    \N    male
19418    Heath    Lakin    kamron@bartolettiwuckert.name    \N    Canada    New Ali    81257 Corwin Locks    37474    Iowa    2016-09-14 14:39:32.962159    2016-10-14 13:03:14.787608        \N    \N    \N    0    \N    \N    \N    \N    female
19419    Adelle    Erdman    demetris@ondrickaryan.info    \N    American Samoa    Marcomouth    6850 Haley Skyway    87120-5613    Virginia    2016-09-18 08:26:27.070699    2016-10-14 13:03:14.791791        \N    \N    \N    0    \N    \N    \N    \N    male
19420    Soledad    Hamill    ward@gutkowskischaefer.co    \N    Cocos (Keeling) Islands    Salvadormouth    9204 Osinski Roads    86859    Nevada    2016-09-28 03:38:36.076375    2016-10-14 13:03:14.797148        \N    \N    \N    0    \N    \N    \N    \N    female
19421    Jerel    Hettinger    haley.nitzsche@cummings.co    \N    Congo    Connerside    6654 Fay Bridge    36294-9550    Tennessee    2016-07-14 14:16:27.24574    2016-10-14 13:03:14.80262        \N    \N    \N    0    \N    \N    \N    \N    male
19422    Noemi    Lang    jairo@halvorsonwunsch.io    \N    Iran    East Irma    959 Beahan Divide    30114-6168    Maryland    2016-07-01 00:21:13.927046    2016-10-14 13:03:14.8072        \N    \N    \N    0    \N    \N    \N    \N    male
19423    Kole    Turner    madeline@aufderharschmidt.org    \N    Nigeria    Connchester    586 Stiedemann Ridges    51491    Wisconsin    2016-08-11 02:25:24.085882    2016-10-14 13:03:14.811384        \N    \N    \N    0    \N    \N    \N    \N    female
19424    Lawrence    Dietrich    lora.schoen@gleason.com    \N    Papua New Guinea    Tremblayborough    5045 Hoppe Spur    92508    Minnesota    2016-07-13 10:02:03.436323    2016-10-14 13:03:14.815847        \N    \N    \N    0    \N    \N    \N    \N    female
19425    Lora    Hoppe    graciela.leffler@ernserhalvorson.org    \N    Congo    Hellerport    29282 Sporer Crossroad    81867-7890    Hawaii    2016-07-11 10:12:40.638692    2016-10-14 13:03:14.820163        \N    \N    \N    0    \N    \N    \N    \N    female
19426    Gregg    Kozey    nakia.legros@yundt.biz    \N    Macedonia    Federicoport    96874 Bogisich Radial    13483    Oregon    2016-09-03 13:17:01.527263    2016-10-14 13:03:14.824811        \N    \N    \N    0    \N    \N    \N    \N    female
19427    Germaine    Lehner    chloe_stoltenberg@stoltenberg.net    \N    Gibraltar    Weimannfort    609 Isaac Causeway    27986    Alabama    2016-08-09 07:40:54.903403    2016-10-14 13:03:14.829709        \N    \N    \N    0    \N    \N    \N    \N    female
19428    Miguel    Wilkinson    arlo@lowe.biz    \N    Syrian Arab Republic    Eloisastad    344 Everardo Island    42559-1583    West Virginia    2016-07-02 00:27:41.231396    2016-10-14 13:03:14.834172        \N    \N    \N    0    \N    \N    \N    \N    male
19429    Maxime    Grimes    tyreek@nitzsche.name    \N    Saint Martin    West Mariano    371 Reilly Union    34694    Wisconsin    2016-09-09 06:16:59.727357    2016-10-14 13:03:14.839809        \N    \N    \N    0    \N    \N    \N    \N    male
19430    Darien    Schoen    deshawn_boehm@gleichner.biz    \N    Senegal    East Rosetta    85479 Evan Ranch    86159    Vermont    2016-06-24 14:52:55.392397    2016-10-14 13:03:14.844309        \N    \N    \N    0    \N    \N    \N    \N    male
19431    Sim    Dicki    kimberly.hand@koelpinweimann.org    \N    Sudan    Reichelborough    790 Claudie Road    89319-9571    Wyoming    2016-09-21 14:22:38.597468    2016-10-14 13:03:14.849421        \N    \N    \N    0    \N    \N    \N    \N    female
19432    Tamara    Turcotte    jaqueline_schulist@emmerich.com    \N    Morocco    Port Albinastad    531 Gwen Mountain    26518    Alaska    2016-07-31 18:54:49.455268    2016-10-14 13:03:14.854488        \N    \N    \N    0    \N    \N    \N    \N    female
19433    Sincere    Dietrich    macie@koelpindubuque.com    \N    Saint Helena    East Magali    46423 Luettgen Walks    51740-7864    North Dakota    2016-07-03 23:46:44.200594    2016-10-14 13:03:14.859198        \N    \N    \N    0    \N    \N    \N    \N    female
19434    Vella    Price    ford@bauch.net    \N    French Polynesia    Luellachester    919 Constance Turnpike    17434    Utah    2016-09-25 02:26:35.078241    2016-10-14 13:03:14.863833        \N    \N    \N    0    \N    \N    \N    \N    male
19435    Marlin    Carroll    terrill.beier@kirlin.com    \N    Zambia    West Maxside    3374 Jeramy Bridge    16063-5940    North Carolina    2016-07-07 13:36:22.600484    2016-10-14 13:03:14.869677        \N    \N    \N    0    \N    \N    \N    \N    male
19436    Zoey    Wunsch    vicente@rosenbaum.name    \N    Oman    East Claude    59698 Schuyler Mountains    60832-4045    Michigan    2016-07-25 21:59:44.811192    2016-10-14 13:03:14.874923        \N    \N    \N    0    \N    \N    \N    \N    male
19437    Zander    Hodkiewicz    blaise@kleinmacejkovic.co    \N    Norway    Ernsermouth    434 Ankunding Cape    24105-9234    Missouri    2016-09-17 02:12:09.283882    2016-10-14 13:03:14.882319        \N    \N    \N    0    \N    \N    \N    \N    male
19438    Aliza    McKenzie    otho@prohaska.com    \N    Albania    Lake Raven    32723 Larkin Orchard    73863    Connecticut    2016-07-21 05:59:52.947628    2016-10-14 13:03:14.887577        \N    \N    \N    0    \N    \N    \N    \N    male
19439    Jadon    Muller    arielle@ebertjacobi.co    \N    Mali    North Cheyennefort    9158 Jasper Mountain    77037-2174    Hawaii    2016-07-01 21:42:54.382117    2016-10-14 13:03:14.893093        \N    \N    \N    0    \N    \N    \N    \N    male
19440    Earl    Kovacek    kacey@zieme.net    \N    Thailand    Port Cynthia    4325 Shanahan Village    40213    Nevada    2016-08-14 14:03:52.256411    2016-10-14 13:03:14.899848        \N    \N    \N    0    \N    \N    \N    \N    female
19441    Haley    Mitchell    florencio@mullerbeahan.co    \N    Bahrain    New Emiliomouth    153 Littel Islands    39278-5888    Vermont    2016-09-09 04:28:15.233514    2016-10-14 13:03:14.92086        \N    \N    \N    0    \N    \N    \N    \N    male
19442    Nakia    Johnston    nella@hayes.io    \N    Sao Tome and Principe    O'Keefetown    31706 Steuber Ports    80630-8615    South Carolina    2016-09-12 10:21:35.285226    2016-10-14 13:03:14.92824        \N    \N    \N    0    \N    \N    \N    \N    male
19443    Alessandro    Abbott    pierce@hageneszboncak.net    \N    Cote d'Ivoire    New Jovany    228 Stanton Ways    21918    Connecticut    2016-08-02 00:44:22.395426    2016-10-14 13:03:14.932539        \N    \N    \N    0    \N    \N    \N    \N    male
19444    Rogers    Weissnat    kurt_wintheiser@windler.io    \N    Oman    Weststad    50392 Feest Road    85319-1791    New Hampshire    2016-08-27 17:32:33.035107    2016-10-14 13:03:14.936978        \N    \N    \N    0    \N    \N    \N    \N    male
19445    Friedrich    Emmerich    gwendolyn.kautzer@medhurst.org    \N    Guyana    South Mustafaburgh    327 Loraine Rest    94666-9156    Rhode Island    2016-07-09 15:53:25.571463    2016-10-14 13:03:14.941591        \N    \N    \N    0    \N    \N    \N    \N    male
19447    Jason    Upton    raphaelle.schroeder@wolff.info    \N    Slovenia    Alberthaven    71884 Walter Key    11638-6038    Rhode Island    2016-07-01 17:19:45.452165    2016-10-14 13:03:14.946017        \N    \N    \N    0    \N    \N    \N    \N    male
19448    Angelita    Schimmel    oceane@waelchi.biz    \N    Ghana    Genevievechester    48433 Barney Mall    98168-2842    Connecticut    2016-07-29 12:01:00.950686    2016-10-14 13:03:14.950159        \N    \N    \N    0    \N    \N    \N    \N    male
19449    Shaniya    Beahan    greg@collierhaley.info    \N    French Southern Territories    Johnnyfort    69494 Noemy Bridge    80311    Maryland    2016-07-31 23:25:23.795064    2016-10-14 13:03:14.954794        \N    \N    \N    0    \N    \N    \N    \N    female
19450    Mabelle    Dicki    modesto@raubuckridge.co    \N    Andorra    New Guillermoport    6115 Greenfelder Manors    57767-8874    Illinois    2016-08-09 07:21:12.495954    2016-10-14 13:03:14.960451        \N    \N    \N    0    \N    \N    \N    \N    female
19451    Benton    Morissette    walter.waelchi@bartonlubowitz.info    \N    Qatar    East Verda    84188 Schiller Junctions    87740-8659    Alabama    2016-09-21 23:59:26.349234    2016-10-14 13:03:14.968244        \N    \N    \N    0    \N    \N    \N    \N    male
19452    Gerry    Rogahn    minnie_jacobs@wiegand.io    \N    Togo    West Terranceberg    7370 Grant Square    60809    South Dakota    2016-08-19 07:29:34.602469    2016-10-14 13:03:14.973842        \N    \N    \N    0    \N    \N    \N    \N    female
19453    Floy    Jacobs    nicholaus@kerluke.io    \N    Mongolia    Sauerport    92415 Christine Street    20672-6695    California    2016-06-30 11:11:38.679079    2016-10-14 13:03:14.979159        \N    \N    \N    0    \N    \N    \N    \N    female
19454    Dashawn    Wehner    amina@beattykshlerin.biz    \N    Jersey    Aliciahaven    473 Langworth Corners    85431    Wyoming    2016-07-03 23:40:58.507564    2016-10-14 13:03:14.985214        \N    \N    \N    0    \N    \N    \N    \N    female
19455    Ewell    Pouros    leda@langworth.info    \N    Guatemala    Loyalfurt    5007 McGlynn Rapid    41603-7951    Nevada    2016-09-26 14:38:36.270194    2016-10-14 13:03:14.989936        \N    \N    \N    0    \N    \N    \N    \N    male
19456    Orlando    Adams    tillman_bahringer@gorczany.co    \N    Saint Kitts and Nevis    North Triston    6245 Emmanuel Views    81590-2133    Vermont    2016-07-13 01:35:48.39158    2016-10-14 13:03:14.994566        \N    \N    \N    0    \N    \N    \N    \N    male
19457    Cullen    Toy    leopoldo@schaefermacgyver.org    \N    Anguilla    North Brandoside    74361 Gusikowski Underpass    60296-7980    South Carolina    2016-09-24 18:12:26.498237    2016-10-14 13:03:14.99901        \N    \N    \N    0    \N    \N    \N    \N    female
19458    Cecilia    Glover    eulalia@wintheiser.io    \N    Sao Tome and Principe    Port Wilton    646 Kirlin Turnpike    70511-2068    Hawaii    2016-08-26 04:42:03.398718    2016-10-14 13:03:15.003816        \N    \N    \N    0    \N    \N    \N    \N    male
19459    Roy    Rippin    ophelia_streich@maggiopacocha.io    \N    Australia    Howeland    65073 Heller Greens    69953    Idaho    2016-07-29 22:03:26.568045    2016-10-14 13:03:15.009184        \N    \N    \N    0    \N    \N    \N    \N    female
19460    Lonzo    Hand    irma@borer.net    \N    Colombia    South Hardy    3226 Hershel Village    60800    Delaware    2016-08-18 14:06:14.697529    2016-10-14 13:03:15.014586        \N    \N    \N    0    \N    \N    \N    \N    female
19461    Bernadine    Beier    jairo@pacochahartmann.name    \N    Gambia    Cedrickbury    8368 Kuhlman Road    54970    Hawaii    2016-09-02 07:50:42.99391    2016-10-14 13:03:15.019722        \N    \N    \N    0    \N    \N    \N    \N    male
19462    Rhea    Ryan    zack.wisoky@collierschumm.net    \N    Martinique    Bergnaummouth    421 Madalyn Curve    30408    Wyoming    2016-09-15 10:59:32.470976    2016-10-14 13:03:15.024309        \N    \N    \N    0    \N    \N    \N    \N    male
19463    Torrance    Reynolds    hudson_conroy@cormierhermann.net    \N    Eritrea    Gottliebmouth    32283 Sedrick Lake    85011-7754    Illinois    2016-07-28 02:34:03.551435    2016-10-14 13:03:15.029175        \N    \N    \N    0    \N    \N    \N    \N    male
19464    Eden    Schmeler    maude.heathcote@green.biz    \N    Philippines    Lake Maryam    898 Jarrett Manor    52894-8767    Idaho    2016-08-01 07:10:13.740281    2016-10-14 13:03:15.034214        \N    \N    \N    0    \N    \N    \N    \N    female
19465    Violet    Hodkiewicz    teie@eichmannkiehn.com    \N    Macedonia    Zulaufbury    1806 Kuhlman Stravenue    98518    North Dakota    2016-07-01 04:44:10.581564    2016-10-14 13:03:15.039183        \N    \N    \N    0    \N    \N    \N    \N    female
19466    Tyree    Kunde    naomi.rippin@berge.co    \N    Ukraine    Martineport    326 Cruickshank Underpass    41988-6524    West Virginia    2016-08-21 10:36:14.277419    2016-10-14 13:03:15.043932        \N    \N    \N    0    \N    \N    \N    \N    male
19467    Bert    Kiehn    ray@zboncak.io    \N    Bermuda    Emardchester    6226 Roderick Village    97872    Ohio    2016-09-08 09:49:50.295728    2016-10-14 13:03:15.05014        \N    \N    \N    0    \N    \N    \N    \N    male
19468    Shad    Feeney    garnet@stiedemannblick.com    \N    Ethiopia    North Rory    9837 Kuvalis Tunnel    71795    South Carolina    2016-06-25 02:47:41.408975    2016-10-14 13:03:15.056939        \N    \N    \N    0    \N    \N    \N    \N    female
19469    Newell    Gusikowski    freddy@gutkowskiratke.name    \N    Israel    New Eliane    259 Labadie Ridge    99794    West Virginia    2016-07-14 18:31:36.828257    2016-10-14 13:03:15.082731        \N    \N    \N    0    \N    \N    \N    \N    male
19470    Gilberto    Watsica    lowell@franeckilangworth.name    \N    Antarctica (the territory South of 60 deg S)    East Makennaton    323 Dessie Fields    80795-5007    Connecticut    2016-09-18 05:45:05.309145    2016-10-14 13:03:15.087578        \N    \N    \N    0    \N    \N    \N    \N    male
19471    Tyshawn    Emard    brandy@wizadare.org    \N    Greece    Stammstad    4767 Huel Spurs    21606    New Mexico    2016-09-17 18:27:14.566395    2016-10-14 13:03:15.09242        \N    \N    \N    0    \N    \N    \N    \N    female
19472    Emmie    Jast    rick_senger@gottlieb.org    \N    Antarctica (the territory South of 60 deg S)    Wintheiserside    12913 Corene Divide    70524    New Hampshire    2016-09-12 01:30:40.018537    2016-10-14 13:03:15.097061        \N    \N    \N    0    \N    \N    \N    \N    female
19473    Camille    Ledner    nikolas_heel@bartell.net    \N    Virgin Islands, U.S.    Port Tianna    63466 Homenick Fords    47260-5404    Tennessee    2016-07-24 09:55:01.424205    2016-10-14 13:03:15.116783        \N    \N    \N    0    \N    \N    \N    \N    male
19474    Sandrine    Bartell    garnet_vonrueden@mantebuckridge.io    \N    Moldova    North Rodgerport    313 Rice Glen    27850-8734    Oklahoma    2016-08-07 01:58:49.802573    2016-10-14 13:03:15.122352        \N    \N    \N    0    \N    \N    \N    \N    female
19475    Yesenia    Bernier    terrence_reilly@kuphal.biz    \N    Vietnam    North Gilbertoside    20381 Naomie Mills    73869    Ohio    2016-09-14 11:27:56.707827    2016-10-14 13:03:15.127154        \N    \N    \N    0    \N    \N    \N    \N    male
19476    Melody    Towne    audrey@bergehirthe.com    \N    South Africa    East Lue    37017 Bailey Islands    83492    North Carolina    2016-07-05 13:13:50.721713    2016-10-14 13:03:15.138892        \N    \N    \N    0    \N    \N    \N    \N    female
19477    Jordan    Ruecker    gage.dickens@pagac.co    \N    Uruguay    North Millerside    5029 Cronin Walks    99266-1947    Maryland    2016-09-18 09:38:33.435342    2016-10-14 13:03:15.144565        \N    \N    \N    0    \N    \N    \N    \N    male
19478    Kip    Reichert    emerald@fadelberge.info    \N    Iran    West Curtistown    84301 Harber Glens    85376    Ohio    2016-08-04 19:56:53.167595    2016-10-14 13:03:15.16237        \N    \N    \N    0    \N    \N    \N    \N    male
19479    Damien    Huels    pearlie@doyle.io    \N    Mongolia    O'Connerhaven    788 Hubert Drive    87835    Idaho    2016-08-03 00:05:16.28852    2016-10-14 13:03:15.167086        \N    \N    \N    0    \N    \N    \N    \N    female
19480    Donavon    Jones    valentin.gusikowski@reichel.info    \N    Serbia    North Damon    53367 Hegmann Crossing    52589-7080    Arkansas    2016-09-03 22:35:55.457786    2016-10-14 13:03:15.171902        \N    \N    \N    0    \N    \N    \N    \N    male
19481    Vada    King    cleora.jacobi@littelromaguera.org    \N    Botswana    South Gene    68842 Coy Turnpike    72774-2826    New York    2016-08-30 14:06:47.170902    2016-10-14 13:03:15.176633        \N    \N    \N    0    \N    \N    \N    \N    male
19482    Elouise    Hilll    luz@littelschulist.net    \N    Lesotho    Hadleybury    4131 Julio Ville    88691-4617    Wisconsin    2016-09-20 15:04:23.215679    2016-10-14 13:03:15.181531        \N    \N    \N    0    \N    \N    \N    \N    male
19483    Dameon    Ferry    bradford@kuhlmanjacobson.com    \N    Georgia    East Georgiana    14048 Hermann Dale    48285-8328    California    2016-08-18 05:09:29.968784    2016-10-14 13:03:15.186606        \N    \N    \N    0    \N    \N    \N    \N    female
19484    Waino    Bins    randy@labadiebode.com    \N    Barbados    West Vivian    952 Herbert Shore    91097-0107    Connecticut    2016-07-21 14:13:28.988813    2016-10-14 13:03:15.191503        \N    \N    \N    0    \N    \N    \N    \N    male
19485    Lavinia    Ziemann    bruce.schmidt@bode.org    \N    Saint Martin    Javonton    7683 Dicki Parkway    99213    Alaska    2016-09-15 21:06:28.52128    2016-10-14 13:03:15.196685        \N    \N    \N    0    \N    \N    \N    \N    male
19486    Joan    Murazik    mia.connelly@shields.biz    \N    Austria    North Caitlyn    6232 Schamberger Point    71596-9644    Indiana    2016-07-26 18:43:17.843791    2016-10-14 13:03:15.240983        \N    \N    \N    0    \N    \N    \N    \N    male
19487    Eriberto    Hudson    bethel_turner@altenwerthrobel.co    \N    Greece    North Brooklynmouth    15722 Rosario Gardens    66560    North Carolina    2016-07-31 08:33:26.446842    2016-10-14 13:03:15.246358        \N    \N    \N    0    \N    \N    \N    \N    male
19488    Jewel    Weimann    rosemarie_crooks@bosco.biz    \N    Swaziland    Sauermouth    6397 Kallie Wall    29782    Michigan    2016-07-08 16:20:24.157586    2016-10-14 13:03:15.251585        \N    \N    \N    0    \N    \N    \N    \N    male
19490    Kacey    Predovic    june@walsh.info    \N    Sri Lanka    Kozeyfurt    16725 West Spring    15025-7164    Oklahoma    2016-08-04 14:40:53.742522    2016-10-14 13:03:15.256423        \N    \N    \N    0    \N    \N    \N    \N    female
19491    Nadia    Goyette    pearl@wolff.net    \N    Netherlands    Port Colemanshire    32217 Reinger Path    39456    South Carolina    2016-08-12 14:23:11.629025    2016-10-14 13:03:15.261451        \N    \N    \N    0    \N    \N    \N    \N    female
19492    Ladarius    Weber    christophe.farrell@boyle.net    \N    Thailand    Lake Oscar    75436 Krajcik Garden    58993    Kansas    2016-07-26 02:46:31.870927    2016-10-14 13:03:15.266993        \N    \N    \N    0    \N    \N    \N    \N    male
19493    Karina    Marvin    ova@buckridgevon.io    \N    Tonga    Fadelville    367 Huel Park    41519    Rhode Island    2016-07-25 11:42:51.292095    2016-10-14 13:03:15.27286        \N    \N    \N    0    \N    \N    \N    \N    female
19494    Meaghan    Corkery    georgianna_rath@goyette.io    \N    Cambodia    West Reed    53931 Alfonzo Cliffs    43175    Oregon    2016-08-09 10:56:48.827148    2016-10-14 13:03:15.279708        \N    \N    \N    0    \N    \N    \N    \N    male
19495    Audrey    Crooks    devin.white@gerlachhodkiewicz.net    \N    Iraq    Framiland    5184 Betty Crescent    11641-8838    Connecticut    2016-07-18 21:09:52.304672    2016-10-14 13:03:15.294795        \N    \N    \N    0    \N    \N    \N    \N    female
19496    Larissa    Bruen    murray_heidenreich@hilpert.org    \N    New Caledonia    Sadiefurt    2572 Hermina Row    15389-7466    North Dakota    2016-08-16 18:14:11.149944    2016-10-14 13:03:15.308525        \N    \N    \N    0    \N    \N    \N    \N    male
19497    Enrico    Kuhn    harrison@stromanmante.co    \N    Guatemala    East Priscillaborough    6548 Yazmin Estates    47351    New York    2016-08-14 00:17:46.779633    2016-10-14 13:03:15.31445        \N    \N    \N    0    \N    \N    \N    \N    male
19498    Adonis    Lehner    alfreda_keeling@schmeler.org    \N    Lesotho    Helenamouth    313 Nathan Dale    60825-7027    Massachusetts    2016-09-05 10:09:38.344066    2016-10-14 13:03:15.320766        \N    \N    \N    0    \N    \N    \N    \N    male
19499    Nickolas    Mertz    rafaela@luettgen.name    \N    Papua New Guinea    Doyleborough    263 Mya Lodge    30853-9252    Nebraska    2016-08-21 03:06:39.501632    2016-10-14 13:03:15.325786        \N    \N    \N    0    \N    \N    \N    \N    female
19500    Tia    Bashirian    sadie@schaefer.com    \N    Gambia    East Raheemville    66197 Adelle Stravenue    87212-4784    Arkansas    2016-08-10 16:36:47.2731    2016-10-14 13:03:15.331539        \N    \N    \N    0    \N    \N    \N    \N    male
19501    Clara    Renner    gracie@bruen.org    \N    Congo    Rosalynshire    5938 Albin Flats    83247    Louisiana    2016-08-08 03:25:09.451102    2016-10-14 13:03:15.336615        \N    \N    \N    0    \N    \N    \N    \N    female
19502    Tristian    Thiel    jenifer.goodwin@von.biz    \N    Cambodia    North Heaven    18978 Matt View    39606-4047    Wyoming    2016-07-06 21:25:51.632642    2016-10-14 13:03:15.341169        \N    \N    \N    0    \N    \N    \N    \N    female
19504    Pauline    Powlowski    lane_mertz@zulauf.name    \N    Macedonia    Kieranside    5587 Reinger Skyway    51294    New York    2016-09-16 08:30:08.186497    2016-10-14 13:03:15.346274        \N    \N    \N    0    \N    \N    \N    \N    male
19505    Amiya    Emard    judah@weber.co    \N    Reunion    Mitchellberg    444 Osbaldo Ramp    70411    Rhode Island    2016-07-05 05:18:02.94843    2016-10-14 13:03:15.351089        \N    \N    \N    0    \N    \N    \N    \N    male
19506    Abdul    Lehner    lina@dare.name    \N    Guatemala    Ullrichside    47467 Shayna Keys    21835-3303    Indiana    2016-08-03 06:37:40.965914    2016-10-14 13:03:15.356559        \N    \N    \N    0    \N    \N    \N    \N    male
19507    Samara    O'Conner    alice@metzkeler.name    \N    Tuvalu    Lubowitzberg    535 Mosciski Skyway    69645-9531    Wyoming    2016-09-25 07:33:01.558454    2016-10-14 13:03:15.362159        \N    \N    \N    0    \N    \N    \N    \N    male
19508    Yadira    Marks    ania@kuhic.biz    \N    Bouvet Island (Bouvetoya)    Port Johathanville    26046 Herta Falls    40722-4088    New York    2016-07-19 08:01:34.836424    2016-10-14 13:03:15.367543        \N    \N    \N    0    \N    \N    \N    \N    female
19509    Ashtyn    Boehm    rosella_abernathy@conroy.com    \N    Thailand    South Misaelfurt    30798 Mikayla Field    82464-7017    Vermont    2016-08-04 10:23:30.737693    2016-10-14 13:03:15.374296        \N    \N    \N    0    \N    \N    \N    \N    male
19510    Adelbert    Gutmann    rosendo@pfeffer.io    \N    Papua New Guinea    Corkeryville    46481 Welch Well    70109    Iowa    2016-08-13 22:41:07.320776    2016-10-14 13:03:15.378848        \N    \N    \N    0    \N    \N    \N    \N    female
19512    Dixie    Legros    miguel_leffler@west.name    \N    Saint Lucia    Port Olin    65796 Earlene View    63703-2179    Nebraska    2016-09-18 11:00:22.97631    2016-10-14 13:03:15.383312        \N    \N    \N    0    \N    \N    \N    \N    male
19513    Clint    Haley    lee_wilderman@townerowe.net    \N    Serbia    Ziemannmouth    9039 Krajcik Lakes    49339-6683    Ohio    2016-08-28 16:41:47.784438    2016-10-14 13:03:15.38774        \N    \N    \N    0    \N    \N    \N    \N    female
19514    Germaine    Bernier    abe@auerschmitt.org    \N    Belgium    Russelton    292 Estella Stream    89919-2680    Colorado    2016-07-03 15:08:23.303985    2016-10-14 13:03:15.39227        \N    \N    \N    0    \N    \N    \N    \N    female
19515    Elisa    Mraz    collin.tillman@runolfon.org    \N    Chile    Keelinghaven    603 Kub Mission    82892-0312    Wisconsin    2016-09-16 21:27:15.510182    2016-10-14 13:03:15.396703        \N    \N    \N    0    \N    \N    \N    \N    male
19516    Betsy    Pfannerstill    aubrey@nitzsche.name    \N    Equatorial Guinea    South Adelia    4029 Okuneva Estate    17591    Nevada    2016-08-20 23:47:28.117298    2016-10-14 13:03:15.402024        \N    \N    \N    0    \N    \N    \N    \N    male
19517    Herman    Hermiston    helga@vandervortjacobi.biz    \N    Israel    Ritchieville    37800 Jamaal Road    26126    Maine    2016-09-15 15:02:55.609241    2016-10-14 13:03:15.408691        \N    \N    \N    0    \N    \N    \N    \N    female
19518    Ricky    Hilpert    jaquan@hoppe.biz    \N    Mexico    Port Terryburgh    80194 Clinton Road    62508    Georgia    2016-08-29 03:57:58.760353    2016-10-14 13:03:15.413607        \N    \N    \N    0    \N    \N    \N    \N    female
19519    Jerald    Feeney    camden_bartell@monahan.co    \N    Holy See (Vatican City State)    Ebertborough    82920 Waelchi Courts    64837    Connecticut    2016-07-14 12:16:49.664757    2016-10-14 13:03:15.426667        \N    \N    \N    0    \N    \N    \N    \N    male
19520    Elnora    Wolf    arvel_dicki@waterskaulke.com    \N    Senegal    South Marjoryshire    44674 Skiles Grove    65964-0961    Wisconsin    2016-07-23 17:43:18.70498    2016-10-14 13:03:15.435588        \N    \N    \N    0    \N    \N    \N    \N    female
19521    Clint    Boehm    martina@gaylord.co    \N    Burkina Faso    Port Eloy    5619 Metz Points    38194-5686    Missouri    2016-07-05 15:15:47.209851    2016-10-14 13:03:15.440333        \N    \N    \N    0    \N    \N    \N    \N    female
19522    Tamia    Erdman    era@binsmayert.org    \N    Nepal    New Tabitha    40958 Leffler Knolls    42727-8449    Indiana    2016-07-05 01:38:59.073334    2016-10-14 13:03:15.444683        \N    \N    \N    0    \N    \N    \N    \N    male
19523    Ian    Konopelski    meagan@miller.org    \N    India    South Carolton    696 Julianne Skyway    95944-0633    Louisiana    2016-08-28 14:00:02.202424    2016-10-14 13:03:15.451029        \N    \N    \N    0    \N    \N    \N    \N    female
19524    Nelson    Mraz    dennis_padberg@cartwright.co    \N    Libyan Arab Jamahiriya    Lake Carmel    861 Arvel Expressway    88786    Illinois    2016-09-23 16:20:50.864865    2016-10-14 13:03:15.456247        \N    \N    \N    0    \N    \N    \N    \N    female
19525    Vinnie    Prohaska    claudine.bartell@nitzsche.org    \N    Sudan    West Ansel    2631 Obie Station    43248    Utah    2016-07-04 19:09:16.323531    2016-10-14 13:03:15.461096        \N    \N    \N    0    \N    \N    \N    \N    female
19526    Emmanuelle    Braun    charity@hane.com    \N    Netherlands Antilles    New Alexystown    21269 Lucile Path    80709    Indiana    2016-08-26 20:54:29.333462    2016-10-14 13:03:15.46523        \N    \N    \N    0    \N    \N    \N    \N    female
19527    Jensen    Davis    jordane.spencer@murraykozey.io    \N    Japan    Estevanland    3517 Wilkinson Locks    46677    South Carolina    2016-09-01 00:53:42.037904    2016-10-14 13:03:15.469884        \N    \N    \N    0    \N    \N    \N    \N    male
19528    Telly    Walsh    lila@stiedemannrutherford.net    \N    Tajikistan    Port Roxaneberg    89265 Olson Common    50735    Idaho    2016-08-25 06:35:29.588597    2016-10-14 13:03:15.475068        \N    \N    \N    0    \N    \N    \N    \N    male
19529    Vicky    Schulist    arjun_hane@christiansenvon.name    \N    Libyan Arab Jamahiriya    Port Jakeview    19407 Jade Parkways    56752-6004    New Jersey    2016-07-17 13:55:16.749583    2016-10-14 13:03:15.479357        \N    \N    \N    0    \N    \N    \N    \N    male
19531    Katrine    Moen    otilia@glover.org    \N    Papua New Guinea    Connorport    83831 Eliane Corner    40240-8963    Ohio    2016-07-22 21:06:54.07382    2016-10-14 13:03:15.483423        \N    \N    \N    0    \N    \N    \N    \N    male
19532    Nathanial    Parker    jonas@leuschke.info    \N    Puerto Rico    East Chesleyberg    4026 Austin Park    25438    Kansas    2016-08-13 15:33:29.749131    2016-10-14 13:03:15.487562        \N    \N    \N    0    \N    \N    \N    \N    male
19533    Meagan    Bahringer    clemens_wintheiser@quitzon.name    \N    Kenya    Port Eribertofort    91360 Ava Roads    28257-3345    California    2016-09-08 06:40:06.837379    2016-10-14 13:03:15.491858        \N    \N    \N    0    \N    \N    \N    \N    male
19534    Estelle    Larkin    enos@murray.com    \N    Sweden    North Gabriel    558 Janessa Track    87197-2212    Hawaii    2016-06-24 15:27:39.033191    2016-10-14 13:03:15.496523        \N    \N    \N    0    \N    \N    \N    \N    female
19535    Horace    Schowalter    dameon@bartondickens.name    \N    El Salvador    North Mariela    91154 Angus Gateway    77419    South Carolina    2016-09-21 02:56:56.586315    2016-10-14 13:03:15.500875        \N    \N    \N    0    \N    \N    \N    \N    male
19536    Kelli    Goyette    kathryn@kutch.info    \N    Croatia    Port Dell    517 Alia Brooks    14901    Kentucky    2016-08-03 19:51:27.203837    2016-10-14 13:03:15.505572        \N    \N    \N    0    \N    \N    \N    \N    female
19537    Sigmund    Zieme    dexter_franecki@adams.info    \N    Latvia    Rempelton    3556 Jerde Junction    46233-3993    Georgia    2016-06-30 15:22:14.768939    2016-10-14 13:03:15.510283        \N    \N    \N    0    \N    \N    \N    \N    female
19538    Juvenal    Williamson    haan@rippingrady.io    \N    Jamaica    North Gayfort    8125 Robel Meadow    21023    Nebraska    2016-07-21 03:07:34.459794    2016-10-14 13:03:15.514925        \N    \N    \N    0    \N    \N    \N    \N    female
19700    Reilly    Wolff    major_dickens@davis.name    \N    Malta    North Rogers    750 Bode Mills    21474    Georgia    2016-07-17 13:28:32.805749    2016-10-14 13:03:16.314904        \N    \N    \N    0    \N    \N    \N    \N    female
19539    Chadrick    Cummerata    randy.zemlak@farrellaufderhar.biz    \N    Andorra    Kobybury    918 Ariane Loaf    82655-1891    Vermont    2016-06-24 10:00:33.77266    2016-10-14 13:03:15.520136        \N    \N    \N    0    \N    \N    \N    \N    female
19540    Kayli    Mertz    florine.bernhard@gleichnerromaguera.name    \N    Slovenia    North Madyson    85914 Terrell Forest    68710-2055    North Dakota    2016-07-27 14:18:56.719264    2016-10-14 13:03:15.525564        \N    \N    \N    0    \N    \N    \N    \N    male
19541    Lyric    Adams    laurie@gottlieb.io    \N    Benin    New Anikaberg    2317 Kristin Estate    69063-3866    Montana    2016-09-22 09:57:48.995686    2016-10-14 13:03:15.530665        \N    \N    \N    0    \N    \N    \N    \N    male
19542    Alessia    Abernathy    nina@gleichner.info    \N    Vietnam    New Hyman    23998 Hyatt Square    16644    Indiana    2016-07-05 21:14:29.304874    2016-10-14 13:03:15.535209        \N    \N    \N    0    \N    \N    \N    \N    female
19543    Easton    Christiansen    arjun@keler.biz    \N    Montenegro    Pfefferton    525 Clovis Ville    39329    Kansas    2016-08-07 02:07:55.88419    2016-10-14 13:03:15.540061        \N    \N    \N    0    \N    \N    \N    \N    female
19544    Carolyn    Bradtke    charlene_adams@effertz.co    \N    Namibia    Jadafurt    384 Magnolia Meadows    22365    Kentucky    2016-09-16 14:35:13.462709    2016-10-14 13:03:15.544445        \N    \N    \N    0    \N    \N    \N    \N    male
19545    Lucio    Miller    mandy.mcdermott@weimann.biz    \N    Nauru    East Bonita    5266 Pfeffer Dam    11303    Iowa    2016-09-22 21:21:04.638025    2016-10-14 13:03:15.548598        \N    \N    \N    0    \N    \N    \N    \N    female
19546    Edmund    Becker    alvah_aufderhar@kuvalis.com    \N    Mozambique    East Kristy    26112 Roberta Curve    71915    Tennessee    2016-06-22 17:29:25.927865    2016-10-14 13:03:15.553369        \N    \N    \N    0    \N    \N    \N    \N    male
19547    Elouise    Witting    godfrey.jast@stracke.co    \N    Congo    South Bridiehaven    40635 Schmeler Wall    79528    Alabama    2016-07-12 10:47:54.775602    2016-10-14 13:03:15.558151        \N    \N    \N    0    \N    \N    \N    \N    female
19712    Brayan    Torp    ophelia@abbott.org    \N    Saint Lucia    Camdenberg    59203 Jast Meadow    43302-4045    Iowa    2016-07-11 20:07:56.337503    2016-10-14 13:03:16.374242        \N    \N    \N    0    \N    \N    \N    \N    female
19548    Cortney    McDermott    giles_paucek@stark.com    \N    Heard Island and McDonald Islands    Port Sofiahaven    9153 Breitenberg Estate    43838    Vermont    2016-09-09 00:38:37.582782    2016-10-14 13:03:15.562567        \N    \N    \N    0    \N    \N    \N    \N    male
19549    Freeman    Mitchell    marielle@ruecker.biz    \N    Equatorial Guinea    West Ginafurt    16851 Stone Dam    91308    Alabama    2016-07-17 13:08:33.836427    2016-10-14 13:03:15.566977        \N    \N    \N    0    \N    \N    \N    \N    female
19550    Arnaldo    Bogisich    ahmad.stiedemann@reichertlynch.com    \N    Pitcairn Islands    Lavinabury    35727 Walker Viaduct    74527-5273    North Dakota    2016-08-26 17:54:35.334533    2016-10-14 13:03:15.57109        \N    \N    \N    0    \N    \N    \N    \N    male
19551    Maia    Ferry    isabella@dickischulist.net    \N    Guyana    Llewellynland    30816 Eichmann Village    16971    Arkansas    2016-08-23 15:22:30.739555    2016-10-14 13:03:15.575798        \N    \N    \N    0    \N    \N    \N    \N    male
19553    Reymundo    Berge    celestino@doyle.net    \N    Bolivia    Port Jaydeview    79356 Graham Burgs    93112    New Jersey    2016-09-25 01:15:04.694767    2016-10-14 13:03:15.580768        \N    \N    \N    0    \N    \N    \N    \N    female
19554    Laverna    Beier    olen.gorczany@schaden.name    \N    Colombia    Emardstad    65233 Alberta Turnpike    18304    Indiana    2016-07-01 10:46:37.357507    2016-10-14 13:03:15.585448        \N    \N    \N    0    \N    \N    \N    \N    female
19555    Maribel    Thiel    whitney.ziemann@pollichdaniel.com    \N    Sao Tome and Principe    Port Jacquesfurt    6226 Nora Way    55809-0630    North Carolina    2016-08-02 10:17:01.043154    2016-10-14 13:03:15.59064        \N    \N    \N    0    \N    \N    \N    \N    female
19556    Krystel    Gleichner    lambert.mccullough@gleason.org    \N    Senegal    Lake Giovanimouth    65289 Heidenreich Trace    12451-9035    New Mexico    2016-07-23 01:56:12.098923    2016-10-14 13:03:15.594963        \N    \N    \N    0    \N    \N    \N    \N    female
19557    Alejandrin    Harber    nya@nicolas.io    \N    Tunisia    East Jadyntown    11495 Winfield Fields    23939-0714    Washington    2016-07-07 21:02:36.954633    2016-10-14 13:03:15.599161        \N    \N    \N    0    \N    \N    \N    \N    female
19558    Orie    Miller    aleandra@buckridgeschroeder.org    \N    Mauritania    East Saulview    458 Borer Mews    75533    Maine    2016-06-27 21:52:22.20454    2016-10-14 13:03:15.603887        \N    \N    \N    0    \N    \N    \N    \N    male
19559    Tremaine    Boehm    raymundo.rice@heathcote.io    \N    Maldives    West Joaquinfort    661 Bertha Green    81221-6436    Montana    2016-09-06 21:56:51.9301    2016-10-14 13:03:15.609898        \N    \N    \N    0    \N    \N    \N    \N    male
19560    Kaleb    Maggio    anabelle.hauck@zulauf.co    \N    Congo    Jedidiahfort    336 Wunsch Hill    26598-8856    Massachusetts    2016-07-06 10:31:22.618585    2016-10-14 13:03:15.61453        \N    \N    \N    0    \N    \N    \N    \N    female
19561    Nayeli    Strosin    brock.denesik@hamillpollich.io    \N    United Kingdom    Elfriedastad    904 Dayna Landing    91062    Missouri    2016-08-24 16:43:14.816927    2016-10-14 13:03:15.619155        \N    \N    \N    0    \N    \N    \N    \N    female
19562    Lewis    Kulas    luna@bradtke.net    \N    Tuvalu    Nashburgh    771 Bernier Ferry    65517-1305    Colorado    2016-09-21 16:42:47.418044    2016-10-14 13:03:15.624619        \N    \N    \N    0    \N    \N    \N    \N    female
19564    Jewell    Collins    jean_maggio@joneskihn.com    \N    Jersey    Felixview    732 Satterfield Field    78965    New Hampshire    2016-09-10 08:20:45.862853    2016-10-14 13:03:15.629382        \N    \N    \N    0    \N    \N    \N    \N    male
19565    Christian    Zulauf    kelley@wiza.org    \N    Austria    East Loraineborough    13094 Hansen Street    66527-9870    Maine    2016-09-16 04:27:03.383063    2016-10-14 13:03:15.634299        \N    \N    \N    0    \N    \N    \N    \N    female
12477    Lane    Kuhlman    aaron@osinski.io    \N    Cook Islands    Lake Katrina    28482 Ratke Rue    56228-2810    Pennsylvania    2016-09-24 07:07:01.348084    2016-10-14 13:03:15.70743        \N    \N    \N    0    \N    \N    \N    \N    male
19566    Niko    Roberts    gilda@waelchi.com    \N    Guernsey    Lake Maxwell    151 Carroll Vista    44591-0609    Rhode Island    2016-07-24 09:47:50.429273    2016-10-14 13:03:15.713998        \N    \N    \N    0    \N    \N    \N    \N    male
19567    Eulah    Zemlak    antwon@jacobson.com    \N    Croatia    South Myah    340 Rachel Ramp    24893-8482    Georgia    2016-07-07 08:15:12.496925    2016-10-14 13:03:15.718532        \N    \N    \N    0    \N    \N    \N    \N    female
19568    Nigel    Breitenberg    eudora.crooks@fisher.net    \N    Albania    Port Gillianborough    4881 Leffler Port    49045    Kansas    2016-06-28 17:17:53.588234    2016-10-14 13:03:15.723031        \N    \N    \N    0    \N    \N    \N    \N    female
19569    Abigayle    Huel    bertram.johnson@lubowitz.com    \N    Finland    Sonnymouth    884 Amir Rue    54842    Michigan    2016-07-30 02:57:31.375837    2016-10-14 13:03:15.727563        \N    \N    \N    0    \N    \N    \N    \N    female
19570    Elna    Schamberger    annette@davis.biz    \N    Algeria    Robbieton    800 Brekke Pike    76134    Mississippi    2016-07-12 16:17:12.008623    2016-10-14 13:03:15.73424        \N    \N    \N    0    \N    \N    \N    \N    male
19571    Astrid    Prosacco    krystina.bauch@rippin.name    \N    Bahamas    Gaylordfort    8321 Miles Plaza    78366-5467    Oklahoma    2016-06-29 12:15:45.407916    2016-10-14 13:03:15.738906        \N    \N    \N    0    \N    \N    \N    \N    female
19572    Lysanne    Jast    toy.mitchell@pfannerstill.com    \N    Zimbabwe    East Rigoberto    914 Rogahn Islands    63338-2001    Hawaii    2016-07-13 22:42:20.516199    2016-10-14 13:03:15.743487        \N    \N    \N    0    \N    \N    \N    \N    female
19573    Pat    Prohaska    alejandrin.jast@goldner.net    \N    New Caledonia    Erlingmouth    958 Hickle Crossing    31082-8476    Iowa    2016-09-01 09:16:24.448875    2016-10-14 13:03:15.748419        \N    \N    \N    0    \N    \N    \N    \N    female
19574    Nona    Homenick    junius@moriette.org    \N    Saint Kitts and Nevis    East Naomie    7630 Cronin Tunnel    51175-7380    Ohio    2016-09-02 06:35:47.034198    2016-10-14 13:03:15.752938        \N    \N    \N    0    \N    \N    \N    \N    male
19575    Monroe    Bruen    eugene.heaney@hamill.name    \N    Macedonia    Balistreribury    5428 Donnelly Valley    45833    Montana    2016-08-11 04:35:41.159472    2016-10-14 13:03:15.75733        \N    \N    \N    0    \N    \N    \N    \N    female
19576    Maud    Maggio    nathan@kaulkekshlerin.net    \N    Saint Kitts and Nevis    North Emanuel    98447 Hilll Parkways    98602-7733    New Hampshire    2016-08-02 07:02:10.681634    2016-10-14 13:03:15.762581        \N    \N    \N    0    \N    \N    \N    \N    female
19577    Lionel    McCullough    ole_larson@gutkowskihickle.co    \N    Cameroon    Jeanieberg    649 Lauren Meadows    79740-0266    Kentucky    2016-09-07 05:15:55.583475    2016-10-14 13:03:15.767724        \N    \N    \N    0    \N    \N    \N    \N    male
19578    Sofia    Zulauf    eleanore@thielbergstrom.org    \N    Solomon Islands    South Daisha    17516 Waelchi Oval    16439    New York    2016-08-17 10:23:23.090622    2016-10-14 13:03:15.772785        \N    \N    \N    0    \N    \N    \N    \N    female
19579    Liliana    Ritchie    myah@zemlaklebsack.net    \N    Spain    Bonitastad    7710 Fadel Turnpike    83458    New Jersey    2016-07-16 05:41:55.509712    2016-10-14 13:03:15.777518        \N    \N    \N    0    \N    \N    \N    \N    male
19602    Kadin    Auer    savanah.feil@pfannerstillking.com    \N    Ireland    East Lorenzaburgh    6613 Thompson Extensions    11072-3598    North Dakota    2016-07-16 22:39:04.253707    2016-10-14 13:03:15.870447        \N    \N    \N    0    \N    \N    \N    \N    female
19603    Judge    Cartwright    lue@cole.org    \N    Timor-Leste    Flatleybury    39076 Jaden Extensions    64081-6863    Pennsylvania    2016-07-22 12:56:18.288166    2016-10-14 13:03:15.874612        \N    \N    \N    0    \N    \N    \N    \N    male
19604    Mckenna    Bartoletti    freddie@schmidt.info    \N    Angola    Ratkestad    44381 Toy Drive    33780-9123    Wyoming    2016-07-21 14:49:49.677184    2016-10-14 13:03:15.878487        \N    \N    \N    0    \N    \N    \N    \N    female
19605    Kristy    Conn    hipolito@durganschmeler.com    \N    Cayman Islands    Port Aliyahfort    8674 Quigley Village    63354-2227    Delaware    2016-06-30 10:09:06.613402    2016-10-14 13:03:15.88239        \N    \N    \N    0    \N    \N    \N    \N    female
19606    Savion    Labadie    chester.schulist@legros.com    \N    Aruba    South Sedrick    66662 Russel Throughway    29903    Kansas    2016-07-31 21:37:04.189132    2016-10-14 13:03:15.886242        \N    \N    \N    0    \N    \N    \N    \N    female
19607    Federico    Weimann    isabella.connelly@eichmannkiehn.org    \N    Montenegro    Anaisborough    3054 Edward Extension    46715    New Mexico    2016-06-27 16:25:07.071886    2016-10-14 13:03:15.890418        \N    \N    \N    0    \N    \N    \N    \N    female
19608    Shane    Schiller    federico.corwin@batz.io    \N    Papua New Guinea    East Marisolhaven    4770 Schowalter Green    73855    Alabama    2016-06-28 15:17:46.844958    2016-10-14 13:03:15.89473        \N    \N    \N    0    \N    \N    \N    \N    female
19609    Katarina    Runolfsson    tabitha@barton.org    \N    Portugal    Faheyton    38213 Schaden Tunnel    98093    Massachusetts    2016-08-01 21:08:45.469506    2016-10-14 13:03:15.898811        \N    \N    \N    0    \N    \N    \N    \N    male
19610    Stephany    Greenfelder    gregoria_jenkins@bednar.io    \N    Zambia    Port Liamfurt    159 Orlando Drive    17292    Tennessee    2016-07-20 08:19:15.766182    2016-10-14 13:03:15.902945        \N    \N    \N    0    \N    \N    \N    \N    male
19611    Veronica    Parker    deshawn.gottlieb@jakubowskimaggio.net    \N    Tokelau    Daughertymouth    606 Jenifer Parkway    98184-9222    Nebraska    2016-08-10 16:30:06.074792    2016-10-14 13:03:15.908743        \N    \N    \N    0    \N    \N    \N    \N    male
19612    Rory    Nader    erik@herman.net    \N    Faroe Islands    South Garrickport    994 Dusty Village    13013    Rhode Island    2016-07-06 20:06:06.896938    2016-10-14 13:03:15.914901        \N    \N    \N    0    \N    \N    \N    \N    male
19613    Kailey    Kshlerin    brenden_sporer@renner.name    \N    Maldives    West Orrinport    7940 Maximilian Summit    88103    Missouri    2016-06-24 05:47:25.199559    2016-10-14 13:03:15.919033        \N    \N    \N    0    \N    \N    \N    \N    male
19614    Angelica    Kshlerin    carson.macejkovic@mcdermott.org    \N    Tokelau    South Meaganhaven    38860 Burdette Crossing    55435    Pennsylvania    2016-08-11 07:28:44.171205    2016-10-14 13:03:15.923218        \N    \N    \N    0    \N    \N    \N    \N    female
19615    Geoffrey    Mertz    gilbert.prosacco@durgan.info    \N    Tanzania    North Monicatown    7421 Candace Branch    49827-8459    California    2016-08-13 17:53:17.904489    2016-10-14 13:03:15.927156        \N    \N    \N    0    \N    \N    \N    \N    female
19616    Fatima    Bergstrom    oleta_yost@von.com    \N    Antarctica (the territory South of 60 deg S)    New Diannabury    6773 Gorczany Courts    43829    Arkansas    2016-09-19 22:29:57.031376    2016-10-14 13:03:15.931288        \N    \N    \N    0    \N    \N    \N    \N    female
19617    Alyson    Haag    dandre@cainchristiansen.com    \N    Mauritius    Port Julieberg    183 Earlene Cliffs    67500    Washington    2016-09-15 04:36:29.305472    2016-10-14 13:03:15.935205        \N    \N    \N    0    \N    \N    \N    \N    male
19618    Nat    Dooley    breanne_gorczany@cruickshank.net    \N    Andorra    South Bennettbury    6477 Hilll Throughway    86263-9110    Rhode Island    2016-07-14 19:32:37.893711    2016-10-14 13:03:15.939108        \N    \N    \N    0    \N    \N    \N    \N    female
19619    Sofia    Leannon    era.herman@osinski.org    \N    Romania    Robelberg    4999 Hermann Pines    59066    South Dakota    2016-08-21 23:05:30.425433    2016-10-14 13:03:15.943503        \N    \N    \N    0    \N    \N    \N    \N    female
19620    Kayley    Towne    ike_boehm@schultz.net    \N    Finland    Alishaview    644 Pouros Gardens    28706    New Hampshire    2016-07-11 21:54:07.402602    2016-10-14 13:03:15.94797        \N    \N    \N    0    \N    \N    \N    \N    female
19621    Abdiel    Goldner    ray@okunevastark.info    \N    Mali    Lake Donaldbury    49999 Arvid Track    96286    Kansas    2016-06-26 11:34:08.504236    2016-10-14 13:03:15.952559        \N    \N    \N    0    \N    \N    \N    \N    female
19622    Karianne    Krajcik    armand@weimann.io    \N    Uzbekistan    O'Connerfurt    3354 Wisozk Ports    17717-0117    Indiana    2016-09-22 07:22:01.295795    2016-10-14 13:03:15.957353        \N    \N    \N    0    \N    \N    \N    \N    male
19623    Nigel    Langworth    isabell.olson@tillman.com    \N    Pitcairn Islands    Aishafurt    20391 Kshlerin Union    82346-3436    Kansas    2016-08-11 14:58:18.876658    2016-10-14 13:03:15.962076        \N    \N    \N    0    \N    \N    \N    \N    male
19624    Darion    Green    oswald.gislason@wilderman.co    \N    New Zealand    Marjoryton    24194 Emanuel Ports    83294    Kentucky    2016-07-12 04:23:00.048948    2016-10-14 13:03:15.966964        \N    \N    \N    0    \N    \N    \N    \N    female
19625    Estel    Stamm    roma.gutmann@friesen.com    \N    Morocco    Taliachester    566 Eva Locks    21419    Washington    2016-06-26 11:23:43.902144    2016-10-14 13:03:15.971808        \N    \N    \N    0    \N    \N    \N    \N    female
19626    Lacey    Prosacco    reynold@purdy.name    \N    Philippines    Ratkebury    967 Trenton Camp    38463    New York    2016-07-12 04:58:56.291008    2016-10-14 13:03:15.976604        \N    \N    \N    0    \N    \N    \N    \N    male
19627    Aurelio    Zulauf    ruth.yundt@moen.name    \N    Uruguay    Agneschester    2938 Earl Expressway    60115    Vermont    2016-07-18 21:30:35.037883    2016-10-14 13:03:15.981625        \N    \N    \N    0    \N    \N    \N    \N    male
19628    Adelle    Schaefer    samantha@waters.com    \N    Denmark    West Kasandra    39670 Robel Glens    70379    Alabama    2016-07-01 06:07:39.566232    2016-10-14 13:03:15.987043        \N    \N    \N    0    \N    \N    \N    \N    female
19629    Rachael    Boyer    americo.grady@sanford.org    \N    Seychelles    Leannonton    1358 Bartell Shore    64077    Michigan    2016-08-24 00:46:03.308744    2016-10-14 13:03:15.991468        \N    \N    \N    0    \N    \N    \N    \N    male
19630    Delta    Mertz    blanca.boyle@cummeratasauer.com    \N    Saint Vincent and the Grenadines    Lake Cecilia    813 Dietrich Drives    26408-3888    New Mexico    2016-08-29 02:57:27.97161    2016-10-14 13:03:15.995551        \N    \N    \N    0    \N    \N    \N    \N    male
19632    Miller    Purdy    murphy@ruecker.info    \N    Monaco    Mullerbury    79740 Domenick Throughway    86523-2951    New Mexico    2016-07-29 02:53:20.591254    2016-10-14 13:03:15.999774        \N    \N    \N    0    \N    \N    \N    \N    female
19633    Zola    Lowe    emmy_gislason@beerhaley.io    \N    Czech Republic    South Kassandra    428 Heller Estates    89629-9460    Kentucky    2016-07-23 04:22:27.034976    2016-10-14 13:03:16.004904        \N    \N    \N    0    \N    \N    \N    \N    female
19634    Pablo    Trantow    florida@heller.net    \N    Senegal    North Charlottechester    88446 Daugherty Lake    90532-9160    Ohio    2016-08-30 05:26:45.802187    2016-10-14 13:03:16.009831        \N    \N    \N    0    \N    \N    \N    \N    female
19635    Jazmyne    Heathcote    tomasa@krajcikortiz.biz    \N    Isle of Man    North Lauramouth    62071 Leonor Meadows    15555    Vermont    2016-06-30 21:28:54.611378    2016-10-14 13:03:16.014508        \N    \N    \N    0    \N    \N    \N    \N    female
19636    Julianne    Lindgren    daniela@wolfhintz.biz    \N    Burundi    Beahanton    459 Reta Walks    80725    New Mexico    2016-09-27 19:16:53.543914    2016-10-14 13:03:16.018992        \N    \N    \N    0    \N    \N    \N    \N    female
19637    Glennie    Lindgren    perry_wolf@green.biz    \N    Kenya    Olemouth    4715 Jettie Locks    18953    Minnesota    2016-09-13 11:22:52.191773    2016-10-14 13:03:16.023935        \N    \N    \N    0    \N    \N    \N    \N    female
19638    Leonie    Walsh    bernadine@price.net    \N    Tokelau    Lake Hershel    8401 Franecki Loaf    16968    Florida    2016-07-01 07:34:01.202904    2016-10-14 13:03:16.028192        \N    \N    \N    0    \N    \N    \N    \N    female
19639    Maryam    Rath    roberta.wunsch@toy.biz    \N    Iraq    Cassandrahaven    7116 Hills Ports    12520-1271    Alabama    2016-09-15 06:51:23.811887    2016-10-14 13:03:16.032847        \N    \N    \N    0    \N    \N    \N    \N    male
19640    Isac    Mayer    pamela@langworth.info    \N    Guam    South Annabelleside    17341 Gregorio Neck    83279-5566    Montana    2016-08-04 23:37:54.64228    2016-10-14 13:03:16.037186        \N    \N    \N    0    \N    \N    \N    \N    male
19641    Leopold    Haag    stuart@breitenberg.biz    \N    Guyana    Chaimtown    153 Baumbach Springs    68766-0408    Wisconsin    2016-09-13 12:12:14.643687    2016-10-14 13:03:16.041381        \N    \N    \N    0    \N    \N    \N    \N    male
19642    Michelle    Schuppe    jean@botsfordkilback.co    \N    Trinidad and Tobago    East Carleyton    612 Labadie Lane    25037    Delaware    2016-09-23 23:08:22.915284    2016-10-14 13:03:16.045497        \N    \N    \N    0    \N    \N    \N    \N    female
19643    Jacinto    Russel    annamarie.torphy@mraz.info    \N    Belize    D'Amorefort    704 Wilfrid Springs    99104    Idaho    2016-09-02 05:19:40.612978    2016-10-14 13:03:16.050177        \N    \N    \N    0    \N    \N    \N    \N    male
19644    Jayme    Mosciski    sydnee@wintheiserschumm.info    \N    Macao    Torphymouth    7991 Marshall Station    53988    New Jersey    2016-08-03 15:05:09.798869    2016-10-14 13:03:16.054903        \N    \N    \N    0    \N    \N    \N    \N    female
19645    Natasha    Romaguera    chad_armstrong@schroederrunolfsdottir.info    \N    Democratic People's Republic of Korea    Estellafurt    836 Borer Drives    38825    South Dakota    2016-07-21 23:30:08.580864    2016-10-14 13:03:16.059773        \N    \N    \N    0    \N    \N    \N    \N    male
19646    Burnice    Bauch    blaise.kutch@rosenbaum.co    \N    Falkland Islands (Malvinas)    West Gabriella    84667 Ona Circle    34239    Massachusetts    2016-09-04 00:26:17.140258    2016-10-14 13:03:16.064261        \N    \N    \N    0    \N    \N    \N    \N    male
19647    Florine    Crona    ewell@hermanheaney.net    \N    Saint Barthelemy    Phyllisfurt    2858 Rice Freeway    44845-3607    Ohio    2016-07-06 11:35:43.570969    2016-10-14 13:03:16.068426        \N    \N    \N    0    \N    \N    \N    \N    female
19648    Rickey    Klein    parker@powlowski.net    \N    Israel    Port Addieview    3019 Zieme Motorway    61912-4561    South Dakota    2016-08-22 16:54:15.085444    2016-10-14 13:03:16.072377        \N    \N    \N    0    \N    \N    \N    \N    male
19649    Zita    Ledner    maribel@will.name    \N    French Polynesia    South Ned    14442 Lowe Vista    80159-8467    Mississippi    2016-07-16 04:31:39.476197    2016-10-14 13:03:16.076609        \N    \N    \N    0    \N    \N    \N    \N    male
19650    Hank    McCullough    neoma_kilback@batz.com    \N    Tanzania    North Jettport    272 Aufderhar Estate    69530-4456    Florida    2016-08-29 06:24:59.938513    2016-10-14 13:03:16.080901        \N    \N    \N    0    \N    \N    \N    \N    male
19651    Xavier    Dickens    horacio@gerhold.net    \N    Saint Pierre and Miquelon    Mosciskiton    984 D'Amore Court    56755-0299    Arizona    2016-07-06 18:08:28.376555    2016-10-14 13:03:16.084855        \N    \N    \N    0    \N    \N    \N    \N    male
19653    Mallie    Batz    tobin.runolfon@leuschke.com    \N    Slovenia    South Ciara    43725 Becker Camp    70829    Georgia    2016-09-27 05:58:16.774044    2016-10-14 13:03:16.08876        \N    \N    \N    0    \N    \N    \N    \N    female
19654    Rogers    Mills    ivy_nicolas@conn.io    \N    Albania    Brandynbury    9444 Anthony Valley    42182    Alabama    2016-09-15 08:05:49.527158    2016-10-14 13:03:16.092829        \N    \N    \N    0    \N    \N    \N    \N    female
19655    Ramona    Kihn    georgiana@cummings.info    \N    Poland    Nyahton    4484 Johnson Mill    38073-4095    Utah    2016-08-22 14:53:03.611346    2016-10-14 13:03:16.097112        \N    \N    \N    0    \N    \N    \N    \N    male
19656    Johnpaul    Reinger    samson.bode@gaylordsipes.info    \N    Saint Martin    Stantonport    32790 Harvey Islands    37078    New Jersey    2016-08-19 18:32:20.489629    2016-10-14 13:03:16.10141        \N    \N    \N    0    \N    \N    \N    \N    female
19657    Margot    Murazik    buddy_blick@breitenbergbeier.biz    \N    Guinea    Wisokyland    80858 Kutch Mountains    76329-3035    Nebraska    2016-07-14 06:14:17.049017    2016-10-14 13:03:16.105902        \N    \N    \N    0    \N    \N    \N    \N    male
19658    Cale    Mann    wilson.schamberger@grimes.info    \N    Malawi    Port Kaylie    918 Darwin Heights    62697    New York    2016-09-02 12:37:43.503019    2016-10-14 13:03:16.110085        \N    \N    \N    0    \N    \N    \N    \N    female
19659    Marty    Welch    belle@metz.name    \N    Greenland    Vivianeview    1106 Rice Prairie    45081-0459    Wyoming    2016-08-08 03:29:55.181656    2016-10-14 13:03:16.114815        \N    \N    \N    0    \N    \N    \N    \N    female
19660    Matt    Frami    dahlia.hudson@sanford.name    \N    Antarctica (the territory South of 60 deg S)    South Ryder    623 Monroe Overpass    52074-5028    New Jersey    2016-09-19 12:46:22.621463    2016-10-14 13:03:16.119498        \N    \N    \N    0    \N    \N    \N    \N    male
19661    Kenny    Ondricka    ali@langworth.io    \N    Morocco    North Myrtis    586 Bins Isle    23652-5292    Pennsylvania    2016-08-25 17:06:30.765663    2016-10-14 13:03:16.124752        \N    \N    \N    0    \N    \N    \N    \N    male
19662    Paolo    Hagenes    emanuel_robel@pacocha.co    \N    Eritrea    Francescostad    33672 Reva Valley    48880-1869    Florida    2016-07-01 19:41:06.571821    2016-10-14 13:03:16.130065        \N    \N    \N    0    \N    \N    \N    \N    female
19663    Margarette    Beahan    efrain@boyle.io    \N    Lesotho    Ronstad    49512 Blick Village    44727-9709    Iowa    2016-07-06 22:53:41.141464    2016-10-14 13:03:16.134748        \N    \N    \N    0    \N    \N    \N    \N    male
19664    Jewel    Murphy    emily.bechtelar@rogahn.org    \N    Mayotte    Heidenreichville    75019 Keeling Grove    55356-6414    Wyoming    2016-08-19 13:57:27.546924    2016-10-14 13:03:16.139572        \N    \N    \N    0    \N    \N    \N    \N    female
19665    Mariah    Muller    stanton.luettgen@rodriguez.co    \N    Finland    Feltonton    67511 D'Amore Isle    68490-8026    Louisiana    2016-09-18 04:00:50.26037    2016-10-14 13:03:16.144572        \N    \N    \N    0    \N    \N    \N    \N    female
19666    Justina    Gulgowski    clifford.ortiz@crona.com    \N    Norway    Crystaltown    90230 Ernser Shoal    49495-3552    Oregon    2016-07-10 10:35:33.911517    2016-10-14 13:03:16.148542        \N    \N    \N    0    \N    \N    \N    \N    female
19667    Herman    Graham    blake_considine@willmuller.io    \N    Madagascar    Felixtown    7189 Susana Circle    66619-6137    Louisiana    2016-09-25 04:20:24.945716    2016-10-14 13:03:16.152923        \N    \N    \N    0    \N    \N    \N    \N    female
19668    Haven    Volkman    kendall.kuphal@terry.info    \N    Qatar    New Antoninaburgh    2316 Lew Avenue    94814    West Virginia    2016-07-24 18:47:52.015596    2016-10-14 13:03:16.158119        \N    \N    \N    0    \N    \N    \N    \N    female
19669    Jakob    Schaden    isom@rosenbaum.net    \N    Gibraltar    Lake Herminiachester    33138 Kohler Passage    84436    Connecticut    2016-07-28 06:49:30.044909    2016-10-14 13:03:16.162858        \N    \N    \N    0    \N    \N    \N    \N    female
19670    Leatha    Rohan    ramiro.runte@fisherquitzon.io    \N    Cameroon    Gusikowskichester    27981 Hermann Freeway    43741-1657    Mississippi    2016-07-05 03:05:54.957703    2016-10-14 13:03:16.167533        \N    \N    \N    0    \N    \N    \N    \N    female
19671    Keenan    Crona    melisa.schoen@cronin.biz    \N    Niue    Myrtieberg    733 Wyman Loaf    69464-5529    North Carolina    2016-07-10 19:40:53.911152    2016-10-14 13:03:16.173635        \N    \N    \N    0    \N    \N    \N    \N    male
19672    Ludie    Daugherty    duane@lang.net    \N    Guinea-Bissau    East Paulfort    417 Beverly Park    16873    Montana    2016-07-01 21:54:10.447355    2016-10-14 13:03:16.178629        \N    \N    \N    0    \N    \N    \N    \N    female
19673    Madelyn    Jast    ezekiel@gibsonrolfson.org    \N    Mayotte    East Amina    2563 Marshall Crescent    37680    Kansas    2016-08-28 20:01:17.798466    2016-10-14 13:03:16.183057        \N    \N    \N    0    \N    \N    \N    \N    male
19732    Ezra    Robel    omer@corwin.io    \N    Luxembourg    Lake Clark    21457 Kunde Parkways    45685    Kentucky    2016-06-22 12:40:45.437262    2016-10-14 13:03:16.187615        \N    \N    \N    0    \N    \N    \N    \N    male
19674    Cecilia    Moore    victor.rodriguez@christiansen.com    \N    Liberia    Port Celestinoland    1867 Haag Freeway    94158-4648    Maine    2016-08-02 23:38:10.121368    2016-10-14 13:03:16.192365        \N    \N    \N    0    \N    \N    \N    \N    female
19675    Kimberly    Sipes    gunner@kohler.biz    \N    Svalbard & Jan Mayen Islands    South Raeganport    46188 Ernser Square    65830-2466    New Jersey    2016-09-05 06:47:51.235381    2016-10-14 13:03:16.197014        \N    \N    \N    0    \N    \N    \N    \N    female
19677    Junius    Bechtelar    darion_jerde@nader.org    \N    South Georgia and the South Sandwich Islands    North Raleighburgh    6234 Pouros Divide    52771-7795    Rhode Island    2016-08-24 10:07:06.03428    2016-10-14 13:03:16.201228        \N    \N    \N    0    \N    \N    \N    \N    female
19678    Glenda    Jaskolski    justen_prohaska@walker.net    \N    Turkmenistan    Quigleytown    423 Garrett Shore    52140-1140    Missouri    2016-07-18 15:21:47.960633    2016-10-14 13:03:16.205395        \N    \N    \N    0    \N    \N    \N    \N    female
19679    Rafael    Pagac    virginia@goyettedaugherty.com    \N    Czech Republic    Port Laishaburgh    36851 Leila Trail    12124-5350    Virginia    2016-08-23 08:33:18.57513    2016-10-14 13:03:16.210554        \N    \N    \N    0    \N    \N    \N    \N    female
19680    Adan    Ward    estel@reilly.biz    \N    Kenya    Alvahaven    4867 Werner Via    14832    Hawaii    2016-08-18 05:09:30.187347    2016-10-14 13:03:16.217043        \N    \N    \N    0    \N    \N    \N    \N    female
19681    Anabelle    Krajcik    janelle@adamsaufderhar.info    \N    Azerbaijan    Port Jaden    660 Shanahan Fall    86077-4409    Alabama    2016-07-26 11:47:55.181637    2016-10-14 13:03:16.222508        \N    \N    \N    0    \N    \N    \N    \N    male
19682    Kendall    Mayert    mark_walter@bergstrom.biz    \N    Romania    Kozeystad    327 Trycia Village    91128    Wyoming    2016-06-30 01:54:56.156843    2016-10-14 13:03:16.227674        \N    \N    \N    0    \N    \N    \N    \N    female
19683    Lee    Mante    laila.streich@feestprice.co    \N    New Zealand    Pfefferchester    6591 Gust Tunnel    31334-9382    Missouri    2016-06-30 11:53:48.024056    2016-10-14 13:03:16.234664        \N    \N    \N    0    \N    \N    \N    \N    female
19684    Kristin    Towne    marcus.swaniawski@homenicksanford.org    \N    Uganda    North Walker    32515 Levi Shoals    32597-9349    West Virginia    2016-08-28 18:53:50.234085    2016-10-14 13:03:16.239465        \N    \N    \N    0    \N    \N    \N    \N    female
19685    Nyah    Pacocha    bertram@bode.biz    \N    Mauritius    Gottliebland    760 Kilback Tunnel    38173    Alaska    2016-09-27 13:41:17.35349    2016-10-14 13:03:16.243811        \N    \N    \N    0    \N    \N    \N    \N    male
19686    Esther    Stanton    allen@krajcik.co    \N    Bolivia    Croninshire    526 Turcotte Viaduct    84126-5856    Pennsylvania    2016-09-16 01:28:36.060616    2016-10-14 13:03:16.2487        \N    \N    \N    0    \N    \N    \N    \N    female
19687    Elmer    Jakubowski    murl@klocko.biz    \N    Palau    East Favianside    365 Furman View    73315-3928    Rhode Island    2016-09-23 09:17:36.052538    2016-10-14 13:03:16.253441        \N    \N    \N    0    \N    \N    \N    \N    male
19688    Astrid    Lebsack    rahsaan@hermann.info    \N    Germany    Wolffton    8375 Hal Island    21019    Wisconsin    2016-08-13 02:15:02.807635    2016-10-14 13:03:16.258332        \N    \N    \N    0    \N    \N    \N    \N    female
19689    Jasmin    Mayert    jonathan@sipesokuneva.biz    \N    Mali    Lueilwitzfurt    5081 Walker Motorway    94281    Wyoming    2016-08-01 06:30:32.989531    2016-10-14 13:03:16.264368        \N    \N    \N    0    \N    \N    \N    \N    female
19690    Elmer    Hilpert    carolyn_waters@nikolaus.biz    \N    Bermuda    North Lucieland    3323 Citlalli Estates    61225    Michigan    2016-07-18 22:53:04.187823    2016-10-14 13:03:16.270454        \N    \N    \N    0    \N    \N    \N    \N    male
19691    Kale    Swaniawski    marjorie.bergstrom@littelkris.net    \N    China    Allybury    86604 Schmitt Divide    78000-4443    Maine    2016-06-27 15:10:47.678319    2016-10-14 13:03:16.275328        \N    \N    \N    0    \N    \N    \N    \N    male
19692    Marlon    Heidenreich    nadia.kilback@williamson.co    \N    Namibia    VonRuedenside    8552 Maxwell Circle    10205-2443    South Dakota    2016-07-14 22:49:17.571445    2016-10-14 13:03:16.280612        \N    \N    \N    0    \N    \N    \N    \N    female
19693    Jannie    Stark    vilma@jacobi.biz    \N    Burundi    Jordynbury    232 Giuseppe Mission    82851    South Carolina    2016-09-18 05:08:36.520746    2016-10-14 13:03:16.2846        \N    \N    \N    0    \N    \N    \N    \N    female
19695    Myron    Krajcik    elvie_paucek@lueilwitz.org    \N    Togo    Lake Alaina    705 Porter Tunnel    14870    Mississippi    2016-06-23 23:08:26.929124    2016-10-14 13:03:16.28906        \N    \N    \N    0    \N    \N    \N    \N    male
19696    Samir    Renner    hollie@shieldsmosciski.name    \N    Moldova    Jeanieton    537 Kautzer Mills    67056-7946    Connecticut    2016-06-27 00:02:22.459114    2016-10-14 13:03:16.296777        \N    \N    \N    0    \N    \N    \N    \N    female
19697    Lela    Dickens    gertrude@botsfordreichert.co    \N    Madagascar    East Sashamouth    553 Gorczany Cove    16821    Michigan    2016-08-26 06:53:25.562987    2016-10-14 13:03:16.301603        \N    \N    \N    0    \N    \N    \N    \N    female
19698    Talia    Lubowitz    crystel.barrows@zemlak.com    \N    Saint Lucia    Marcelfort    523 Alan Crescent    13979-3235    Kansas    2016-07-14 17:07:51.39608    2016-10-14 13:03:16.306125        \N    \N    \N    0    \N    \N    \N    \N    male
19699    Chase    Davis    alvina@rempel.org    \N    Madagascar    Nolanmouth    7213 Korbin Tunnel    14922    Nevada    2016-08-19 06:38:23.962195    2016-10-14 13:03:16.310425        \N    \N    \N    0    \N    \N    \N    \N    male
19701    Audreanne    Larson    janis@rippin.net    \N    Djibouti    East Fred    820 Hegmann Brooks    57731    Georgia    2016-08-13 13:04:25.681479    2016-10-14 13:03:16.319339        \N    \N    \N    0    \N    \N    \N    \N    male
19702    Meghan    Reichel    arthur@murray.com    \N    Libyan Arab Jamahiriya    Lake Kendall    372 Ada Well    63111    Wyoming    2016-07-07 03:51:57.457134    2016-10-14 13:03:16.323763        \N    \N    \N    0    \N    \N    \N    \N    male
19703    Jenifer    Rath    matilda.kunde@reichel.name    \N    Sudan    Smithamhaven    87316 Gracie Lake    63267-3710    California    2016-07-25 18:06:13.848284    2016-10-14 13:03:16.328139        \N    \N    \N    0    \N    \N    \N    \N    male
19704    Estevan    Ullrich    anita_lehner@beerjerde.com    \N    Mexico    North Lionel    18819 O'Kon Turnpike    32274-8515    Ohio    2016-07-24 05:05:04.188043    2016-10-14 13:03:16.333086        \N    \N    \N    0    \N    \N    \N    \N    male
19705    Talon    Cruickshank    una@carrollbergnaum.name    \N    Marshall Islands    Alphonsoport    76221 Hermiston Shoal    55608-8872    Oklahoma    2016-08-07 10:47:25.69054    2016-10-14 13:03:16.337895        \N    \N    \N    0    \N    \N    \N    \N    female
19706    Mitchell    Abernathy    june.macgyver@thiel.co    \N    Iraq    East Marcelino    91586 Ashley Bridge    95192-0378    Texas    2016-08-21 02:32:37.318528    2016-10-14 13:03:16.343246        \N    \N    \N    0    \N    \N    \N    \N    male
19707    Sidney    Von    jackie@wunschsimonis.co    \N    Kenya    Rahulmouth    66822 Johann Parkway    94984-6979    New Hampshire    2016-07-14 21:00:26.638534    2016-10-14 13:03:16.348642        \N    \N    \N    0    \N    \N    \N    \N    female
19708    Erich    Beahan    mallory@bergnaum.info    \N    Vietnam    Estefaniabury    8512 Zboncak Plains    46530-9434    Idaho    2016-07-26 05:19:46.04398    2016-10-14 13:03:16.353239        \N    \N    \N    0    \N    \N    \N    \N    female
19709    Carson    Leffler    dahlia@gerholdstiedemann.name    \N    Finland    Xavierland    6988 Esperanza Knolls    28736    Minnesota    2016-09-28 10:09:46.57692    2016-10-14 13:03:16.357649        \N    \N    \N    0    \N    \N    \N    \N    female
19710    Jamie    Lubowitz    mazie_ko@leuschke.co    \N    Sudan    Lake Lora    3480 Liam Radial    94878-9939    Nebraska    2016-08-09 23:45:47.572503    2016-10-14 13:03:16.363106        \N    \N    \N    0    \N    \N    \N    \N    male
19711    Lucious    Boehm    ambrose_herman@mosciski.name    \N    Reunion    Bennetthaven    35239 Royce Stravenue    25217-3310    Virginia    2016-07-25 04:19:54.983307    2016-10-14 13:03:16.368453        \N    \N    \N    0    \N    \N    \N    \N    female
19713    Enrique    Homenick    mckenzie@balistreriwolff.name    \N    Oman    Daishastad    38159 Gladyce Ways    19783-8203    Virginia    2016-07-16 21:12:02.100211    2016-10-14 13:03:16.379633        \N    \N    \N    0    \N    \N    \N    \N    male
19714    Mike    Kulas    laurine.nienow@corkerylangworth.io    \N    Guadeloupe    South Makenna    9817 Witting Inlet    48461    Wisconsin    2016-08-17 17:19:12.103776    2016-10-14 13:03:16.384462        \N    \N    \N    0    \N    \N    \N    \N    male
19715    Joannie    Hudson    dovie@dooleyjerde.name    \N    Saint Helena    West Ameliashire    55796 Bradtke Highway    63669    California    2016-09-19 14:41:18.497034    2016-10-14 13:03:16.3972        \N    \N    \N    0    \N    \N    \N    \N    male
19716    Alisa    Hills    meaghan@bailey.org    \N    Japan    Lake Catharinehaven    586 Blanca View    68733    Oklahoma    2016-09-20 16:44:15.027351    2016-10-14 13:03:16.403208        \N    \N    \N    0    \N    \N    \N    \N    male
19717    Sheridan    Frami    henry_torphy@mertz.io    \N    Greece    East Broderick    5749 Damon Well    92829    Arizona    2016-07-06 00:42:34.753143    2016-10-14 13:03:16.408756        \N    \N    \N    0    \N    \N    \N    \N    female
19718    Lawrence    Lemke    thea@wuckert.name    \N    Saint Barthelemy    Eldridgeport    31397 Arnold Mission    15637-7110    Hawaii    2016-07-27 23:53:57.389158    2016-10-14 13:03:16.414839        \N    \N    \N    0    \N    \N    \N    \N    female
19719    Brady    Mohr    eulalia@langosh.org    \N    Palestinian Territory    South Gavinborough    38868 Patsy Summit    29732    Mississippi    2016-07-02 23:01:13.02285    2016-10-14 13:03:16.420156        \N    \N    \N    0    \N    \N    \N    \N    female
19720    Ines    Kulas    keyon.parker@monahanjohnson.name    \N    Uganda    Richardport    1912 Bernhard Ville    67748    Virginia    2016-08-01 18:47:56.83875    2016-10-14 13:03:16.428993        \N    \N    \N    0    \N    \N    \N    \N    female
19721    Howard    Bins    angus_west@cronin.info    \N    Armenia    Hazletown    804 Felicita Dale    23287-3180    Idaho    2016-06-25 01:30:12.641107    2016-10-14 13:03:16.434078        \N    \N    \N    0    \N    \N    \N    \N    male
19722    Heloise    Gutmann    shaniya@wittingpaucek.info    \N    Puerto Rico    Denisview    70182 Wiza Brook    32490-1668    Massachusetts    2016-06-28 23:26:59.293031    2016-10-14 13:03:16.438663        \N    \N    \N    0    \N    \N    \N    \N    male
19723    Ernie    Ernser    torrey.pacocha@kuphalcormier.biz    \N    Serbia    Lake Audrachester    163 Nat Fords    98792    Louisiana    2016-06-23 03:20:15.748564    2016-10-14 13:03:16.44445        \N    \N    \N    0    \N    \N    \N    \N    female
19725    Cordie    Morissette    korey@cruickshank.name    \N    Tajikistan    Reichelview    3899 Bode Light    85033-5169    Washington    2016-08-19 04:34:14.085737    2016-10-14 13:03:16.449037        \N    \N    \N    0    \N    \N    \N    \N    female
19726    Herbert    Hegmann    robb.ullrich@leannon.org    \N    American Samoa    Lake Isobel    8892 Schowalter Loaf    11317    Iowa    2016-07-15 13:02:33.380897    2016-10-14 13:03:16.453995        \N    \N    \N    0    \N    \N    \N    \N    male
19727    Hipolito    Hamill    enid_graham@schinner.co    \N    Czech Republic    Binsville    595 Dalton Center    51324    Virginia    2016-08-17 11:42:18.817227    2016-10-14 13:03:16.458604        \N    \N    \N    0    \N    \N    \N    \N    female
19728    Queenie    Nicolas    felicity_legros@effertzhand.info    \N    Denmark    Mylesbury    46618 Adams Cliff    96936-6371    Wisconsin    2016-08-01 20:17:44.849778    2016-10-14 13:03:16.463159        \N    \N    \N    0    \N    \N    \N    \N    female
19729    Jerry    Bergnaum    elias@bartellyost.com    \N    Martinique    Brownhaven    645 Goyette Tunnel    57778-8217    Wisconsin    2016-07-17 02:30:29.631114    2016-10-14 13:03:16.467564        \N    \N    \N    0    \N    \N    \N    \N    male
19730    Leatha    Howell    oren_homenick@brekke.co    \N    Faroe Islands    Binsside    7808 Bednar Inlet    88491    North Dakota    2016-07-30 05:21:22.848099    2016-10-14 13:03:16.472022        \N    \N    \N    0    \N    \N    \N    \N    female
19731    Leonardo    Kovacek    nick@borersenger.io    \N    American Samoa    South Claudieland    98346 Trantow Street    31711-3855    Kentucky    2016-08-25 16:44:14.72663    2016-10-14 13:03:16.476296        \N    \N    \N    0    \N    \N    \N    \N    male
19733    Oren    Prohaska    carroll@dubuque.info    \N    Jersey    Freedashire    7280 Collier Trace    32213-3934    New York    2016-08-09 09:49:19.187668    2016-10-14 13:03:16.480352        \N    \N    \N    0    \N    \N    \N    \N    female
19734    Randall    Ferry    creola@jacobi.biz    \N    Sri Lanka    Lake Minervabury    3334 Elliott Squares    76736    Wisconsin    2016-07-11 13:03:48.867865    2016-10-14 13:03:16.486072        \N    \N    \N    0    \N    \N    \N    \N    male
19735    Kaitlin    Vandervort    arno_pfannerstill@veumauer.com    \N    Turkey    Betsymouth    75754 Quigley Plains    11171    New York    2016-07-21 21:34:28.69407    2016-10-14 13:03:16.49633        \N    \N    \N    0    \N    \N    \N    \N    female
19736    Ethan    Fritsch    celestino_brekke@predovic.net    \N    Brunei Darussalam    East Allen    720 Muller Stream    71872-3760    Massachusetts    2016-07-25 09:52:03.93486    2016-10-14 13:03:16.504183        \N    \N    \N    0    \N    \N    \N    \N    male
19737    Katherine    Kulas    olen_oberbrunner@reynolds.name    \N    Belgium    West Karleeburgh    2620 Karley Avenue    27265-2825    Minnesota    2016-08-16 15:16:09.023835    2016-10-14 13:03:16.509015        \N    \N    \N    0    \N    \N    \N    \N    female
19738    Eudora    Bradtke    janae@robertspaucek.info    \N    United Arab Emirates    Millsfurt    5569 Thompson Springs    85399    New Jersey    2016-08-14 09:25:35.355987    2016-10-14 13:03:16.513591        \N    \N    \N    0    \N    \N    \N    \N    male
19740    Landen    Jacobi    jamey@cronaohara.biz    \N    Macao    North Clarachester    8921 Darryl Junction    69651    Louisiana    2016-07-10 08:36:13.531928    2016-10-14 13:03:16.518103        \N    \N    \N    0    \N    \N    \N    \N    female
19741    Mattie    Weimann    richmond_rolfson@brownwyman.org    \N    Saint Martin    South Gregg    81963 Pouros Underpass    10868-6850    Alabama    2016-08-13 11:54:21.431301    2016-10-14 13:03:16.522434        \N    \N    \N    0    \N    \N    \N    \N    male
19742    Mireille    Paucek    karina.auer@pacocharatke.io    \N    Nauru    D'Amoreburgh    994 Vito Shores    22944    Pennsylvania    2016-09-19 17:19:05.828018    2016-10-14 13:03:16.527033        \N    \N    \N    0    \N    \N    \N    \N    male
19743    Zack    Lind    fiona@volkman.io    \N    Libyan Arab Jamahiriya    Chanelton    158 Benjamin Center    29548-6183    Nevada    2016-07-20 04:22:09.930528    2016-10-14 13:03:16.53143        \N    \N    \N    0    \N    \N    \N    \N    female
19744    Clara    Brakus    edward.goodwin@hammes.co    \N    Tunisia    Aliport    63143 Pierre Skyway    54187-3758    Nevada    2016-07-20 11:29:42.937472    2016-10-14 13:03:16.537771        \N    \N    \N    0    \N    \N    \N    \N    male
19746    Nikko    Maggio    jeff.hickle@bayerbuckridge.net    \N    Azerbaijan    Denachester    60583 Gleichner Avenue    55642    Tennessee    2016-08-25 11:07:34.979479    2016-10-14 13:03:16.542558        \N    \N    \N    0    \N    \N    \N    \N    male
19747    Rachael    Wolf    rowena@kozey.io    \N    Singapore    East Luciano    328 Karlee Mission    45740-2885    Utah    2016-09-13 00:27:37.20234    2016-10-14 13:03:16.546866        \N    \N    \N    0    \N    \N    \N    \N    male
19748    Candelario    Berge    dulce_deckow@gislasonpfeffer.name    \N    Moldova    New Candelario    36136 Boyle Forest    87789    South Carolina    2016-08-03 02:20:48.789638    2016-10-14 13:03:16.550909        \N    \N    \N    0    \N    \N    \N    \N    male
19749    Curtis    Franecki    emelie@hegmann.biz    \N    American Samoa    Shieldsmouth    94467 McDermott Squares    10007    Hawaii    2016-07-08 11:40:50.826543    2016-10-14 13:03:16.5549        \N    \N    \N    0    \N    \N    \N    \N    male
19750    Joelle    Kiehn    narciso_luettgen@prohaska.name    \N    United States Minor Outlying Islands    Haneborough    685 Mitchell Groves    57647-9123    South Carolina    2016-08-31 14:47:35.363317    2016-10-14 13:03:16.559011        \N    \N    \N    0    \N    \N    \N    \N    male
19751    Dahlia    Heller    ronny.ryan@bechtelar.name    \N    Peru    Neomaburgh    48993 Kody Place    29562-1053    Mississippi    2016-07-19 04:44:30.63564    2016-10-14 13:03:16.563647        \N    \N    \N    0    \N    \N    \N    \N    female
19752    Alvera    Block    broderick@walter.com    \N    Senegal    South Duaneton    36907 Mario Inlet    96803    Massachusetts    2016-08-09 13:52:32.041621    2016-10-14 13:03:16.570036        \N    \N    \N    0    \N    \N    \N    \N    male
19753    Genevieve    Leuschke    elia@deckow.info    \N    Dominican Republic    New Mauricio    76105 Jeanie Bridge    64829    Texas    2016-07-21 09:52:54.638008    2016-10-14 13:03:16.575235        \N    \N    \N    0    \N    \N    \N    \N    female
19754    Peter    Schiller    susana@collins.com    \N    Samoa    East Jayme    3347 Murray Terrace    25814-6287    New Mexico    2016-09-23 23:02:57.546641    2016-10-14 13:03:16.579449        \N    \N    \N    0    \N    \N    \N    \N    male
19755    Zackery    Will    vivien_ferry@turcotte.name    \N    Fiji    North Nicklausberg    48012 Jasper Mission    61652    Iowa    2016-07-27 12:30:45.974347    2016-10-14 13:03:16.584016        \N    \N    \N    0    \N    \N    \N    \N    male
19756    Madyson    Kutch    geovany.hansen@reichel.net    \N    Saint Lucia    Hilllstad    649 Hane Prairie    84399-0552    Ohio    2016-09-26 20:50:03.193937    2016-10-14 13:03:16.588887        \N    \N    \N    0    \N    \N    \N    \N    male
19757    Haleigh    Jacobi    drew_mayert@simonis.net    \N    French Guiana    Hyattborough    22927 Dach Forest    27509    Florida    2016-09-16 13:22:53.32079    2016-10-14 13:03:16.593899        \N    \N    \N    0    \N    \N    \N    \N    male
19758    Gloria    Trantow    isabell@padberg.net    \N    Benin    East Baileymouth    969 Strosin Drives    96419    New York    2016-07-04 06:48:02.732427    2016-10-14 13:03:16.598243        \N    \N    \N    0    \N    \N    \N    \N    female
19759    Watson    MacGyver    demarco@connelly.com    \N    United States of America    Jocelynfurt    687 Magnolia Forest    94602-9283    North Dakota    2016-08-26 09:17:59.709692    2016-10-14 13:03:16.602799        \N    \N    \N    0    \N    \N    \N    \N    male
19760    Kelly    Kilback    gardner.ohara@ernser.biz    \N    Bahrain    Imaside    1591 Gleason Station    60442    Maryland    2016-07-22 22:43:48.796671    2016-10-14 13:03:16.607401        \N    \N    \N    0    \N    \N    \N    \N    female
19761    Roxane    Ritchie    roberto_flatley@pfannerstill.com    \N    Indonesia    Jeanneville    94010 Aracely Mountain    47824    Arkansas    2016-09-10 15:20:19.836283    2016-10-14 13:03:16.611932        \N    \N    \N    0    \N    \N    \N    \N    male
19762    Yesenia    McCullough    elmira_white@auermueller.io    \N    Saint Vincent and the Grenadines    Lake Giles    32322 Parker Mountains    21645    New Hampshire    2016-09-02 17:28:49.693591    2016-10-14 13:03:16.61664        \N    \N    \N    0    \N    \N    \N    \N    female
19763    Catharine    Hansen    beverly@murray.co    \N    Somalia    New Zeldaberg    6307 Sipes Extensions    36332    Vermont    2016-09-20 08:33:45.974991    2016-10-14 13:03:16.621216        \N    \N    \N    0    \N    \N    \N    \N    female
19764    Baylee    Daugherty    reginald.harvey@crona.org    \N    Peru    Elmerside    3620 Anthony Mountain    54753    California    2016-08-17 12:32:05.836092    2016-10-14 13:03:16.625178        \N    \N    \N    0    \N    \N    \N    \N    male
19765    Callie    Robel    dillan@wehner.biz    \N    Heard Island and McDonald Islands    West Laurynshire    48087 Gust Garden    10464    Washington    2016-08-22 15:21:42.517486    2016-10-14 13:03:16.630453        \N    \N    \N    0    \N    \N    \N    \N    female
19766    Angie    Mayert    eula@feil.co    \N    Saint Martin    South Lane    25168 Devin Crest    56175-8583    Minnesota    2016-07-29 08:17:04.101682    2016-10-14 13:03:16.635011        \N    \N    \N    0    \N    \N    \N    \N    female
19767    Augustine    Ankunding    oceane.gaylord@wintheiserhowe.net    \N    Iceland    East Guiseppe    359 Freddy Glen    80386-8189    Alabama    2016-09-02 04:47:00.369269    2016-10-14 13:03:16.639187        \N    \N    \N    0    \N    \N    \N    \N    female
19768    Orville    O'Connell    lukas@effertzjohnston.net    \N    Montenegro    Abdulstad    7977 Ernser Island    37349    Ohio    2016-08-08 21:15:09.907023    2016-10-14 13:03:16.644089        \N    \N    \N    0    \N    \N    \N    \N    female
19769    Damon    Towne    ramon@medhurst.info    \N    Tonga    South Antonetta    7330 Minerva Inlet    64950-8233    South Carolina    2016-07-07 23:48:16.720508    2016-10-14 13:03:16.648825        \N    \N    \N    0    \N    \N    \N    \N    male
19770    Mckenna    VonRueden    erwin_auer@kozey.com    \N    Puerto Rico    Jettiemouth    954 Waters Gardens    98226-2610    Florida    2016-08-29 12:23:09.563442    2016-10-14 13:03:16.653383        \N    \N    \N    0    \N    \N    \N    \N    male
19771    Edwina    Watsica    adriana_runolfsdottir@kuhic.name    \N    Cocos (Keeling) Islands    Schillerfurt    3087 Ethel Ramp    89195    Utah    2016-08-09 13:36:33.570608    2016-10-14 13:03:16.657503        \N    \N    \N    0    \N    \N    \N    \N    female
19772    Rosalee    Halvorson    brandon_fadel@andersonwyman.net    \N    Saint Kitts and Nevis    New Tobin    875 Vandervort Canyon    32703-9340    Ohio    2016-09-21 16:52:55.215972    2016-10-14 13:03:16.661649        \N    \N    \N    0    \N    \N    \N    \N    male
19773    Creola    Kris    thora@langworthrath.info    \N    Antarctica (the territory South of 60 deg S)    Lake Sid    9572 Cremin Trail    20736-6188    Massachusetts    2016-07-30 08:29:41.66    2016-10-14 13:03:16.665633        \N    \N    \N    0    \N    \N    \N    \N    female
19774    Jessy    Hyatt    lizeth@schneiderkuvalis.biz    \N    South Georgia and the South Sandwich Islands    East Delmer    39962 Karine Roads    42052    Kentucky    2016-07-07 05:44:29.255323    2016-10-14 13:03:16.669703        \N    \N    \N    0    \N    \N    \N    \N    male
19775    Nathaniel    Hauck    octavia@kleinbradtke.biz    \N    Honduras    New Marjory    91968 Weber Pike    77922    Maine    2016-07-20 04:13:23.32541    2016-10-14 13:03:16.67438        \N    \N    \N    0    \N    \N    \N    \N    male
19776    Maddison    Schmeler    kavon@quigleyhoeger.net    \N    French Guiana    Pasqualeberg    838 Nolan Loop    80408-8892    Texas    2016-08-16 10:28:21.189651    2016-10-14 13:03:16.678949        \N    \N    \N    0    \N    \N    \N    \N    male
19777    Anthony    Wisozk    raegan_deckow@wyman.info    \N    Puerto Rico    Port Grayce    609 Wilderman Courts    55046    Pennsylvania    2016-08-02 01:02:36.258256    2016-10-14 13:03:16.683887        \N    \N    \N    0    \N    \N    \N    \N    male
19778    Jessica    Towne    vallie@lowegusikowski.io    \N    Tokelau    Russland    7568 Rollin Port    36105-2642    Missouri    2016-08-29 17:29:23.547185    2016-10-14 13:03:16.688698        \N    \N    \N    0    \N    \N    \N    \N    male
19779    Austyn    Ruecker    orrin@harvey.io    \N    Gabon    North Destin    8352 Judy Valleys    45799-9810    Texas    2016-08-27 08:14:27.209484    2016-10-14 13:03:16.693497        \N    \N    \N    0    \N    \N    \N    \N    female
19780    Shanna    Borer    alexandria@auerdouglas.org    \N    Guinea    Myrltown    28826 Crona Ford    50929    Oklahoma    2016-06-26 13:04:05.48188    2016-10-14 13:03:16.698139        \N    \N    \N    0    \N    \N    \N    \N    male
19781    Forest    Gleason    lucinda_bogisich@leuschkereilly.org    \N    Bahamas    Fernmouth    154 Glenna Run    12387    Nebraska    2016-08-15 17:12:35.520912    2016-10-14 13:03:16.703083        \N    \N    \N    0    \N    \N    \N    \N    male
19782    Lupe    Sporer    krystal@cummerata.info    \N    Madagascar    Jacobston    255 Schmeler Pine    58974-7101    Nebraska    2016-08-31 06:37:27.045721    2016-10-14 13:03:16.707524        \N    \N    \N    0    \N    \N    \N    \N    male
19783    Wilmer    Hoeger    melvina@anderson.io    \N    Dominica    Diannamouth    6237 Bailey Ramp    55221-4635    Vermont    2016-08-23 18:53:38.281899    2016-10-14 13:03:16.711447        \N    \N    \N    0    \N    \N    \N    \N    male
19784    Kaelyn    Ullrich    andres@turner.com    \N    Czech Republic    South Gardnertown    6363 Ines Locks    51280-0131    Iowa    2016-09-06 00:47:01.202777    2016-10-14 13:03:16.715473        \N    \N    \N    0    \N    \N    \N    \N    female
19785    Cade    Trantow    florence@goodwin.com    \N    Madagascar    Elainamouth    972 Osinski Greens    10339-8408    Virginia    2016-09-14 14:51:04.855193    2016-10-14 13:03:16.720142        \N    \N    \N    0    \N    \N    \N    \N    female
19786    Leila    Stokes    pansy@volkman.co    \N    French Guiana    Wardton    475 Kristofer Lakes    81915    Illinois    2016-09-09 19:44:24.834535    2016-10-14 13:03:16.725143        \N    \N    \N    0    \N    \N    \N    \N    male
19787    Liliana    Cassin    lacy@mcglynnkertzmann.name    \N    Antarctica (the territory South of 60 deg S)    Blickfurt    15232 Hettinger Parkway    69135    Florida    2016-08-08 20:52:10.50012    2016-10-14 13:03:16.729892        \N    \N    \N    0    \N    \N    \N    \N    female
19061    Camille    Senger    brenna@mckenzie.biz    \N    Sweden    Keelyberg    1823 Alisa Lock    56891    Ohio    2016-07-30 23:16:24.692105    2016-10-14 13:03:16.734572        \N    \N    \N    0    \N    \N    \N    \N    male
19788    Dawson    McLaughlin    akeem_mayer@connbradtke.info    \N    Oman    Quintonton    47599 Heathcote Vista    92312    Tennessee    2016-07-18 14:09:41.352176    2016-10-14 13:03:16.739215        \N    \N    \N    0    \N    \N    \N    \N    male
19789    Adaline    McClure    laverna.turner@zemlak.org    \N    Holy See (Vatican City State)    Tillmanmouth    5126 Ebba Heights    34567    Oklahoma    2016-08-30 21:47:54.370938    2016-10-14 13:03:16.743319        \N    \N    \N    0    \N    \N    \N    \N    female
19790    Angus    Lang    lois_kilback@hoegerconnelly.net    \N    Greece    Monaborough    667 Wiegand Stravenue    86367-7480    California    2016-07-07 02:54:06.779396    2016-10-14 13:03:16.747753        \N    \N    \N    0    \N    \N    \N    \N    male
19791    Candida    Osinski    khalid.bruen@sipesratke.info    \N    Saint Martin    West Lauryn    29715 Ryann Point    45466-0368    North Carolina    2016-07-04 14:12:29.160229    2016-10-14 13:03:16.752451        \N    \N    \N    0    \N    \N    \N    \N    male
19792    Candelario    Casper    jermain@ward.info    \N    Tajikistan    East Selinachester    3726 Parisian Meadow    41616    Montana    2016-07-14 02:44:24.808134    2016-10-14 13:03:16.757101        \N    \N    \N    0    \N    \N    \N    \N    female
19793    Shanel    Schroeder    victor@mertz.org    \N    Costa Rica    Port Aracely    92122 Maggio Key    84475-1789    Maine    2016-08-05 00:39:54.315174    2016-10-14 13:03:16.761703        \N    \N    \N    0    \N    \N    \N    \N    female
19794    Audrey    Runolfsdottir    ena_pollich@fahey.io    \N    Zambia    Brayanbury    2494 Jedediah Mountain    81340    Georgia    2016-08-03 07:18:55.892895    2016-10-14 13:03:16.766848        \N    \N    \N    0    \N    \N    \N    \N    female
19934    Nadia    Mills    augusta_schulist@conn.biz    \N    Panama    Jerdeville    2779 Jan Trail    39901-6230    Nevada    2016-08-01 00:40:57.00459    2016-10-14 13:03:17.450888        \N    \N    \N    0    \N    \N    \N    \N    female
19795    Sydnie    Spencer    joan@schamberger.biz    \N    Solomon Islands    Bonitashire    19384 Grover Manors    97735-1128    Iowa    2016-08-26 16:00:59.330489    2016-10-14 13:03:16.771221        \N    \N    \N    0    \N    \N    \N    \N    female
19796    Larissa    Keeling    verona.frami@olson.io    \N    Chile    Stammtown    45819 Dean Curve    81697-5027    Vermont    2016-07-21 11:20:17.488081    2016-10-14 13:03:16.776048        \N    \N    \N    0    \N    \N    \N    \N    female
19797    Maybell    Bailey    deven_kulas@gusikowskilindgren.co    \N    Comoros    Juliushaven    49359 Cindy Rue    79694    Kansas    2016-07-04 23:41:54.936594    2016-10-14 13:03:16.780952        \N    \N    \N    0    \N    \N    \N    \N    male
19798    Vilma    Wiza    niko.lueilwitz@bailey.info    \N    Haiti    Jacemouth    987 Hessel Glen    45855    West Virginia    2016-08-02 01:39:18.372176    2016-10-14 13:03:16.7858        \N    \N    \N    0    \N    \N    \N    \N    male
19799    Arnulfo    Prosacco    ebony@kilback.io    \N    Somalia    North Brockfurt    434 Brielle Oval    11603-3798    Maine    2016-08-25 23:49:05.070713    2016-10-14 13:03:16.790445        \N    \N    \N    0    \N    \N    \N    \N    male
19800    Jeanne    Glover    sibyl@bednar.org    \N    Lesotho    Lake Tiffanyshire    59195 Jayme Hollow    20858-5883    New York    2016-07-17 01:07:02.017433    2016-10-14 13:03:16.794774        \N    \N    \N    0    \N    \N    \N    \N    female
19801    Heidi    Wolff    dusty.jast@bernier.info    \N    Netherlands Antilles    East Nyahport    138 Gislason Forges    78233    California    2016-08-18 14:03:53.289017    2016-10-14 13:03:16.799045        \N    \N    \N    0    \N    \N    \N    \N    male
19802    Kory    Jaskolski    mikayla@kuhn.info    \N    Heard Island and McDonald Islands    New Maurine    4452 Lesch Stravenue    92504    Mississippi    2016-07-27 17:07:07.703696    2016-10-14 13:03:16.804823        \N    \N    \N    0    \N    \N    \N    \N    male
19803    Coby    Trantow    claire.windler@wilkinsonboyer.com    \N    San Marino    Beattyton    569 Katheryn Valley    21779    Utah    2016-08-14 12:27:50.574053    2016-10-14 13:03:16.808983        \N    \N    \N    0    \N    \N    \N    \N    female
19804    Buddy    Abernathy    amani_labadie@legrotoltenberg.co    \N    Lesotho    West Ryan    72475 Oberbrunner Row    30266-4462    Massachusetts    2016-06-27 11:53:39.409965    2016-10-14 13:03:16.813426        \N    \N    \N    0    \N    \N    \N    \N    female
19805    Howard    Roob    macy_gerhold@hirthe.biz    \N    Gibraltar    Lake Emanuel    63223 Cooper Trafficway    69110    Utah    2016-07-02 00:13:21.639362    2016-10-14 13:03:16.818015        \N    \N    \N    0    \N    \N    \N    \N    male
19806    Jennyfer    Weimann    ceasar.davis@vonruedenkaulke.biz    \N    Montenegro    Port Clotilde    289 Muller Freeway    97940    Oklahoma    2016-08-05 05:24:23.607864    2016-10-14 13:03:16.822647        \N    \N    \N    0    \N    \N    \N    \N    male
19807    Victor    Ankunding    jaylin_streich@bernhardhilpert.io    \N    Austria    Bonnietown    31118 Gilda Shore    71164    New Mexico    2016-08-21 20:59:04.517271    2016-10-14 13:03:16.827101        \N    \N    \N    0    \N    \N    \N    \N    male
19808    Rahul    Bayer    damion@lowe.co    \N    French Polynesia    Hamillland    311 Isabelle Crescent    20420-4440    Arizona    2016-07-10 11:15:28.182355    2016-10-14 13:03:16.831884        \N    \N    \N    0    \N    \N    \N    \N    female
19810    Zelma    Lebsack    idella@wisozk.org    \N    Congo    Greenside    10764 Gorczany Falls    17970    North Carolina    2016-07-29 20:52:35.916055    2016-10-14 13:03:16.83616        \N    \N    \N    0    \N    \N    \N    \N    male
19811    America    Romaguera    justus@jacobs.net    \N    Finland    Considineview    44457 Monique Underpass    22237-6890    Arizona    2016-06-29 00:29:39.484735    2016-10-14 13:03:16.840342        \N    \N    \N    0    \N    \N    \N    \N    male
19812    Leila    Treutel    lupe.lindgren@torphyjaskolski.biz    \N    France    Lake Cristina    5835 Marcelo Wells    61858-1324    Nevada    2016-08-19 22:57:59.908827    2016-10-14 13:03:16.844404        \N    \N    \N    0    \N    \N    \N    \N    female
19813    Aletha    Hoeger    holden_batz@reillyschmeler.com    \N    Libyan Arab Jamahiriya    Grantmouth    3434 Rolfson Loaf    23186    Delaware    2016-09-16 15:21:01.832022    2016-10-14 13:03:16.848624        \N    \N    \N    0    \N    \N    \N    \N    female
19814    Hettie    Wiegand    kaycee_schaefer@macgyver.com    \N    Iran    Gregorioburgh    43862 Alek Fort    33712-0049    Nebraska    2016-07-14 06:57:06.204636    2016-10-14 13:03:16.853242        \N    \N    \N    0    \N    \N    \N    \N    female
19815    Evie    Brekke    guy_schuppe@leuschke.biz    \N    Equatorial Guinea    South Merle    34618 Littel Well    16181    Washington    2016-07-02 04:00:09.376701    2016-10-14 13:03:16.857619        \N    \N    \N    0    \N    \N    \N    \N    female
19816    Rodrigo    Schiller    saige_schoen@ernser.biz    \N    Gabon    Kyleeberg    2667 Reymundo Coves    22345    Iowa    2016-08-11 03:26:01.180215    2016-10-14 13:03:16.861713        \N    \N    \N    0    \N    \N    \N    \N    female
19817    Floyd    Stoltenberg    derick_rutherford@cruickshankschumm.co    \N    San Marino    Vernburgh    6149 Jennifer Harbor    37874    Delaware    2016-09-28 12:46:08.499851    2016-10-14 13:03:16.86601        \N    \N    \N    0    \N    \N    \N    \N    male
19818    Verner    Hickle    neva.considine@bednar.io    \N    United States Minor Outlying Islands    Lake Anne    12048 Cassin Flats    88085-8760    Oregon    2016-07-01 11:10:18.806239    2016-10-14 13:03:16.870007        \N    \N    \N    0    \N    \N    \N    \N    female
19819    Elinor    Metz    dereck@wittingrutherford.com    \N    Burkina Faso    New Myleneshire    9707 Vena Port    50128-5044    Georgia    2016-06-28 08:56:54.945117    2016-10-14 13:03:16.877012        \N    \N    \N    0    \N    \N    \N    \N    female
19820    Jocelyn    Mohr    trace.mccullough@mertz.name    \N    Micronesia    Jaylonshire    549 Charlotte Plains    81742-6184    Connecticut    2016-06-22 13:00:21.035005    2016-10-14 13:03:16.884947        \N    \N    \N    0    \N    \N    \N    \N    male
19821    Simeon    Stokes    oceane@bins.co    \N    Kiribati    Wolffville    7103 Katherine Valleys    91836    Iowa    2016-07-18 15:32:37.288936    2016-10-14 13:03:16.890089        \N    \N    \N    0    \N    \N    \N    \N    male
19822    Albina    Kreiger    bernardo@herzoghowell.biz    \N    Niue    Mayramouth    7467 Ross Plain    28318-9057    South Carolina    2016-09-08 19:49:47.771253    2016-10-14 13:03:16.894734        \N    \N    \N    0    \N    \N    \N    \N    female
19823    Jerrell    Greenholt    vladimir@kertzmannwindler.info    \N    Belarus    New Alex    6051 Meagan Burgs    67130    Oklahoma    2016-09-13 08:16:30.489446    2016-10-14 13:03:16.899741        \N    \N    \N    0    \N    \N    \N    \N    female
19824    Freddie    Greenholt    ayden.wunsch@adamsmueller.io    \N    Christmas Island    South Danika    968 Ratke Divide    29274    Ohio    2016-07-14 02:40:53.887588    2016-10-14 13:03:16.904452        \N    \N    \N    0    \N    \N    \N    \N    male
19825    Lilyan    Funk    whitney@nienow.net    \N    Cape Verde    Beattyville    3192 Clint Ports    47349    Massachusetts    2016-07-11 22:27:16.329644    2016-10-14 13:03:16.909068        \N    \N    \N    0    \N    \N    \N    \N    female
19826    Avery    Moen    kurtis@schroederolson.com    \N    Samoa    Blancafurt    13112 Fisher Valleys    59971-7234    Colorado    2016-07-23 04:11:52.751278    2016-10-14 13:03:16.91392        \N    \N    \N    0    \N    \N    \N    \N    male
19827    Velva    Schowalter    gene_kub@prohaska.com    \N    Bouvet Island (Bouvetoya)    Ricardoland    3935 Caleb Mission    50831    Ohio    2016-08-28 15:15:29.581292    2016-10-14 13:03:16.918999        \N    \N    \N    0    \N    \N    \N    \N    female
19828    Corene    Barrows    destiney@hegmann.com    \N    Chad    Port Bud    4901 Malcolm Shore    45748-6106    Arizona    2016-07-24 04:19:00.94609    2016-10-14 13:03:16.924339        \N    \N    \N    0    \N    \N    \N    \N    female
19829    Itzel    Toy    katlynn.runolfsdottir@walsh.name    \N    Gambia    West Chelsieland    52910 Lindgren Stream    91458    Colorado    2016-07-17 11:27:19.022305    2016-10-14 13:03:16.937438        \N    \N    \N    0    \N    \N    \N    \N    male
19830    Gaylord    Parker    selina_borer@smitham.info    \N    Bouvet Island (Bouvetoya)    Port Tevin    7773 Doyle Way    72437    Connecticut    2016-09-01 01:16:19.937743    2016-10-14 13:03:16.941997        \N    \N    \N    0    \N    \N    \N    \N    female
19831    Deven    Murray    ora_schaefer@hudsonwalsh.info    \N    Antigua and Barbuda    South Donavon    41208 Pacocha Ford    13526-5686    Virginia    2016-07-14 11:28:07.888404    2016-10-14 13:03:16.94616        \N    \N    \N    0    \N    \N    \N    \N    female
19832    Richard    Toy    zachery.macgyver@colethompson.co    \N    Samoa    Bennettshire    50773 Marta Meadow    73950-8574    New York    2016-08-28 20:57:29.319613    2016-10-14 13:03:16.950738        \N    \N    \N    0    \N    \N    \N    \N    male
19833    Jacinto    Mertz    mateo@gaylordmarquardt.co    \N    Uruguay    Brannonshire    143 Cathrine Overpass    60419    New Mexico    2016-08-29 21:14:25.170508    2016-10-14 13:03:16.954813        \N    \N    \N    0    \N    \N    \N    \N    female
19834    Juvenal    Balistreri    ricardo_hane@lesch.biz    \N    Switzerland    New Nikitachester    21456 Roel Locks    29772    Maryland    2016-06-23 21:06:16.198908    2016-10-14 13:03:16.959712        \N    \N    \N    0    \N    \N    \N    \N    female
19835    Eliezer    Cole    zoila_buckridge@pagacadams.info    \N    Croatia    East Millerbury    56384 Bauch Garden    76562    North Dakota    2016-08-22 12:05:32.829007    2016-10-14 13:03:16.966977        \N    \N    \N    0    \N    \N    \N    \N    female
19838    Lauren    Huel    maurine_klein@lemkemurazik.co    \N    Slovakia (Slovak Republic)    Port Woodrowport    116 Alex Heights    99312-9708    Nevada    2016-06-24 01:20:23.420774    2016-10-14 13:03:16.97212        \N    \N    \N    0    \N    \N    \N    \N    female
19839    Amir    Oberbrunner    valentina.stokes@spinka.org    \N    Wallis and Futuna    Lake Mylene    87240 Leffler Mountain    50827-5367    Vermont    2016-09-17 07:08:03.781928    2016-10-14 13:03:16.978707        \N    \N    \N    0    \N    \N    \N    \N    female
19840    Isobel    Mayer    jayme_kautzer@bayer.io    \N    Ethiopia    Howeport    43924 Stiedemann Shoal    24287    Minnesota    2016-08-21 08:57:14.478432    2016-10-14 13:03:16.983529        \N    \N    \N    0    \N    \N    \N    \N    female
19841    Erik    Murazik    elia@gislason.org    \N    Bermuda    South Rossie    5626 Dorian Gateway    72585    California    2016-07-11 11:41:42.407629    2016-10-14 13:03:16.988011        \N    \N    \N    0    \N    \N    \N    \N    male
19842    Kiera    Eichmann    hyman@olson.name    \N    Nauru    Strosinland    7229 Wiegand Freeway    20350-6003    North Carolina    2016-08-03 18:45:46.166675    2016-10-14 13:03:16.992194        \N    \N    \N    0    \N    \N    \N    \N    male
19843    Hosea    Quitzon    myrtle_barrows@boehm.com    \N    Vietnam    Walterfort    504 Farrell Oval    81278-2603    Michigan    2016-07-01 21:41:10.099866    2016-10-14 13:03:16.996331        \N    \N    \N    0    \N    \N    \N    \N    male
19844    Jacques    Labadie    dario_lind@jakubowski.biz    \N    Hungary    East Liliana    94073 Joesph Rest    39181-2358    North Dakota    2016-06-25 18:54:44.662094    2016-10-14 13:03:17.000668        \N    \N    \N    0    \N    \N    \N    \N    male
19845    Abby    Skiles    harrison_effertz@kelergoldner.biz    \N    Sweden    Wardburgh    395 Enola Land    99431-4708    Indiana    2016-09-23 21:01:41.358676    2016-10-14 13:03:17.004677        \N    \N    \N    0    \N    \N    \N    \N    female
19846    Fay    Skiles    sierra@bogan.net    \N    Luxembourg    Port Vincenzo    7560 Becker Burg    80062    Vermont    2016-07-24 06:42:52.044339    2016-10-14 13:03:17.008544        \N    \N    \N    0    \N    \N    \N    \N    male
19847    Holly    Orn    elmo@goldner.info    \N    Saint Lucia    South Madelinemouth    97049 Altenwerth Isle    85173    Kansas    2016-07-12 12:11:10.371884    2016-10-14 13:03:17.017007        \N    \N    \N    0    \N    \N    \N    \N    female
19848    Lionel    Paucek    arne@davis.io    \N    Saint Lucia    North Antoninaberg    12091 Hoyt Parkways    80773    Virginia    2016-07-17 10:04:19.69064    2016-10-14 13:03:17.023182        \N    \N    \N    0    \N    \N    \N    \N    male
19849    Dianna    Kiehn    maxie.cartwright@weber.net    \N    Slovakia (Slovak Republic)    New Preston    1577 Rowe Plaza    97828-0375    Rhode Island    2016-08-06 13:38:51.741483    2016-10-14 13:03:17.028076        \N    \N    \N    0    \N    \N    \N    \N    male
19850    Weston    Dietrich    koby_schuppe@spinkawalker.io    \N    Belize    Helmerburgh    49197 Gutkowski Flat    43436-1652    Michigan    2016-07-25 17:48:58.22284    2016-10-14 13:03:17.032876        \N    \N    \N    0    \N    \N    \N    \N    male
19851    Travis    Simonis    jaunita_grimes@rippin.net    \N    Libyan Arab Jamahiriya    East Devonte    60083 Gulgowski Shore    58360-8639    North Carolina    2016-09-02 17:18:02.278537    2016-10-14 13:03:17.037673        \N    \N    \N    0    \N    \N    \N    \N    male
19852    Lisandro    Ondricka    kadin_bergnaum@homenick.name    \N    Norfolk Island    Croninborough    5888 Kiehn Roads    33595-9157    Georgia    2016-08-19 07:17:42.69386    2016-10-14 13:03:17.04194        \N    \N    \N    0    \N    \N    \N    \N    male
19853    Tania    O'Reilly    magdalena@armstrongbogan.co    \N    Antigua and Barbuda    Beierberg    396 Emie Crest    53700-5690    Washington    2016-08-13 21:42:17.946721    2016-10-14 13:03:17.048112        \N    \N    \N    0    \N    \N    \N    \N    male
19854    Humberto    Schinner    jerrod@beatty.biz    \N    Jersey    Uptontown    244 Bradtke Freeway    37964-4039    Oklahoma    2016-07-25 13:38:47.694789    2016-10-14 13:03:17.052599        \N    \N    \N    0    \N    \N    \N    \N    male
18463    Arvid    Turner    kamryn@gerlachherzog.info    \N    Oman    Francofurt    49000 Conn Tunnel    26542    Kentucky    2016-09-04 21:34:08.378009    2016-10-14 13:03:17.996181        \N    \N    \N    0    \N    \N    \N    \N    male
19855    Junior    Quitzon    jeremy@feest.info    \N    Latvia    North Hassan    998 Wyman Grove    43347-8230    West Virginia    2016-08-02 14:05:10.588771    2016-10-14 13:03:17.059305        \N    \N    \N    0    \N    \N    \N    \N    female
19856    Lora    Wuckert    mafalda.lebsack@lynch.io    \N    Central African Republic    Eichmannstad    687 Lura Haven    95741    New Jersey    2016-08-02 11:31:22.59728    2016-10-14 13:03:17.066421        \N    \N    \N    0    \N    \N    \N    \N    female
19857    Fabian    Muller    okey@caspercummings.co    \N    Austria    O'Connerchester    818 Senger Prairie    69974    Maryland    2016-07-31 20:49:56.171427    2016-10-14 13:03:17.071152        \N    \N    \N    0    \N    \N    \N    \N    male
19858    Alfonzo    Feest    kariane_koelpin@blanda.net    \N    Micronesia    Port Alyssonberg    4849 Arvid Wells    84658-1008    Missouri    2016-08-30 16:02:17.582896    2016-10-14 13:03:17.075533        \N    \N    \N    0    \N    \N    \N    \N    male
19859    Karlee    Thiel    shawn_boyer@spinka.net    \N    Azerbaijan    Schummside    4982 Jerod Village    54020-2101    Wisconsin    2016-09-02 16:23:32.31325    2016-10-14 13:03:17.079982        \N    \N    \N    0    \N    \N    \N    \N    male
19860    Felicita    Morar    albina.bartoletti@lebsack.name    \N    Indonesia    Lake Assunta    67906 America Forges    89726    Ohio    2016-08-04 18:43:40.646384    2016-10-14 13:03:17.08463        \N    \N    \N    0    \N    \N    \N    \N    male
19861    Katelynn    Hoeger    uriah@mosciskiebert.biz    \N    Samoa    Lake Eddiemouth    63202 Schuster Street    88146    Idaho    2016-08-20 04:48:31.26783    2016-10-14 13:03:17.089542        \N    \N    \N    0    \N    \N    \N    \N    female
19863    Hugh    D'Amore    deion@macgyver.name    \N    Niue    Fisherville    10549 Clara Spur    30663    Arizona    2016-08-16 04:21:58.195472    2016-10-14 13:03:17.09869        \N    \N    \N    0    \N    \N    \N    \N    female
19864    Abdullah    Wyman    pete.kerluke@becker.info    \N    Kazakhstan    Angelicaburgh    7779 Prohaska Manor    24185    South Dakota    2016-06-30 21:56:51.035124    2016-10-14 13:03:17.10339        \N    \N    \N    0    \N    \N    \N    \N    female
19865    Austen    Crona    mariah@rippin.biz    \N    Saint Pierre and Miquelon    Huelsside    7323 Ben Garden    11659-3746    Georgia    2016-06-30 20:21:17.971318    2016-10-14 13:03:17.109213        \N    \N    \N    0    \N    \N    \N    \N    male
19866    Easton    Dare    carmelo@koelpinwalter.com    \N    Hong Kong    Pollichport    314 Johathan Station    35063-9495    New Hampshire    2016-07-30 11:34:46.795448    2016-10-14 13:03:17.114711        \N    \N    \N    0    \N    \N    \N    \N    female
19867    Maynard    Hegmann    harmony_hyatt@brekkeking.io    \N    Dominican Republic    West Laurencechester    801 Connor Square    54545    Massachusetts    2016-09-15 15:30:05.170199    2016-10-14 13:03:17.119452        \N    \N    \N    0    \N    \N    \N    \N    female
19868    Aurelie    Schmidt    jonathan_bartell@boehm.name    \N    Italy    South Maddison    449 Price Vista    97926-2665    Connecticut    2016-08-04 16:18:15.378176    2016-10-14 13:03:17.124455        \N    \N    \N    0    \N    \N    \N    \N    female
19869    Brianne    Zulauf    melisa@langworth.net    \N    Uganda    Konopelskiville    807 Corwin Run    90116    Missouri    2016-09-22 23:02:20.140415    2016-10-14 13:03:17.129325        \N    \N    \N    0    \N    \N    \N    \N    female
19870    Roberta    Kunde    jey@kutch.io    \N    Latvia    Sylviafurt    9692 Emmerich Mission    94407    South Carolina    2016-08-03 10:19:28.75677    2016-10-14 13:03:17.136021        \N    \N    \N    0    \N    \N    \N    \N    male
19871    Ellie    Howell    gerry@zulaufpredovic.info    \N    Hong Kong    Braunton    481 Streich Valley    15343-9574    Arkansas    2016-08-22 03:07:40.378966    2016-10-14 13:03:17.142378        \N    \N    \N    0    \N    \N    \N    \N    male
19872    Sierra    Morar    rosella.bechtelar@hintz.io    \N    Iran    West Cynthia    4161 Wunsch Avenue    47275    Washington    2016-07-31 11:38:16.139187    2016-10-14 13:03:17.148763        \N    \N    \N    0    \N    \N    \N    \N    male
19873    Nick    Morissette    porter@hills.info    \N    Cambodia    Blickville    1294 Effertz Stravenue    93161-3305    Washington    2016-08-28 19:42:34.33975    2016-10-14 13:03:17.154026        \N    \N    \N    0    \N    \N    \N    \N    female
19874    Hosea    Legros    aleen@turnerhagenes.net    \N    Comoros    Amparoton    1187 Nikolaus Estates    60245    Kentucky    2016-08-31 14:27:30.970998    2016-10-14 13:03:17.15997        \N    \N    \N    0    \N    \N    \N    \N    male
19875    Adele    Kreiger    leopoldo.cremin@bashirian.info    \N    Eritrea    Rosaleefort    4494 Nathanael Street    53785-5595    Michigan    2016-06-29 22:34:50.591538    2016-10-14 13:03:17.16506        \N    \N    \N    0    \N    \N    \N    \N    female
19876    Chaz    Powlowski    angelica.keler@marks.net    \N    Norway    Torphychester    2329 Kayleigh Mews    52244-6975    Illinois    2016-09-27 10:34:22.27071    2016-10-14 13:03:17.170797        \N    \N    \N    0    \N    \N    \N    \N    male
19877    Carley    Turcotte    donnell.heller@howe.biz    \N    Tunisia    Athenafurt    60474 Stracke Lights    61489-9045    Texas    2016-07-30 10:19:11.81106    2016-10-14 13:03:17.175971        \N    \N    \N    0    \N    \N    \N    \N    male
13096    Harrison    Price    abel@waelchi.info    \N    Mali    Dickifurt    6145 Nienow Roads    57327    Idaho    2016-09-25 12:29:03.414998    2016-10-14 13:03:17.182119        \N    \N    \N    0    \N    \N    \N    \N    male
19837    Kali    Daniel    mitchell_thompson@lynch.org    \N    Belize    East Laverna    6989 Jeff Junction    39215    South Dakota    2016-08-23 05:01:40.433423    2016-10-14 13:03:17.186999        \N    \N    \N    0    \N    \N    \N    \N    male
19878    Cornell    Medhurst    amaya@nolanboehm.com    \N    Malaysia    Ellistown    66431 Streich Square    99181    South Carolina    2016-08-07 07:55:34.966184    2016-10-14 13:03:17.191487        \N    \N    \N    0    \N    \N    \N    \N    male
19879    Samantha    Parker    lafayette.moen@wiza.biz    \N    Saint Vincent and the Grenadines    Buckridgeland    883 Dickens Mews    18060-9043    Oregon    2016-09-03 02:19:03.731737    2016-10-14 13:03:17.197083        \N    \N    \N    0    \N    \N    \N    \N    female
19880    Summer    Ebert    jey@barrows.net    \N    Somalia    North Mandychester    5291 Ward Neck    65945    Ohio    2016-08-02 03:04:41.316506    2016-10-14 13:03:17.203794        \N    \N    \N    0    \N    \N    \N    \N    male
19881    Grayson    Bailey    reid.monahan@cummerata.org    \N    Maldives    East Jimmie    33639 Francesca Plaza    26897-3860    Washington    2016-09-12 16:58:23.09674    2016-10-14 13:03:17.208143        \N    \N    \N    0    \N    \N    \N    \N    female
19882    Maria    Metz    deshaun_auer@haag.info    \N    Panama    South Telly    375 Jaron Camp    30155-4060    Washington    2016-07-29 05:03:29.142654    2016-10-14 13:03:17.212162        \N    \N    \N    0    \N    \N    \N    \N    male
19883    Delores    Walker    mertie.lemke@champlin.info    \N    Micronesia    West Pablo    528 Kassulke Springs    27887    Alaska    2016-07-09 11:17:14.628785    2016-10-14 13:03:17.216587        \N    \N    \N    0    \N    \N    \N    \N    female
19884    Ryann    Harris    americo.greenfelder@towneterry.name    \N    Netherlands Antilles    Lake Milfordstad    1931 Brooks Mission    43670    New Jersey    2016-06-27 22:09:37.210453    2016-10-14 13:03:17.221357        \N    \N    \N    0    \N    \N    \N    \N    male
19885    Donna    Stokes    kristofer.orn@lehner.name    \N    Togo    Chelseyburgh    1924 Willms Well    11553-4991    Alabama    2016-08-15 00:05:37.852081    2016-10-14 13:03:17.226076        \N    \N    \N    0    \N    \N    \N    \N    female
19886    Mattie    Thompson    hillard.oreilly@runolfonmuller.net    \N    Luxembourg    Adelineberg    63822 Torey Row    15496-4667    New York    2016-09-16 14:16:44.716625    2016-10-14 13:03:17.231088        \N    \N    \N    0    \N    \N    \N    \N    male
19887    Karina    Schaefer    jabari_huels@collins.com    \N    Saint Kitts and Nevis    South Mazie    2318 Kshlerin Rue    28374    Nebraska    2016-07-15 22:58:37.76601    2016-10-14 13:03:17.236138        \N    \N    \N    0    \N    \N    \N    \N    female
19888    Celia    Kozey    gordon.muller@murphy.io    \N    Cook Islands    Randalchester    3088 Schumm Ports    99542-6321    Kentucky    2016-07-03 05:02:51.772879    2016-10-14 13:03:17.241111        \N    \N    \N    0    \N    \N    \N    \N    male
19889    Cathryn    Nader    kaitlin@powlowskizemlak.com    \N    Finland    South Malliemouth    162 Gislason Ferry    95555    South Carolina    2016-07-06 03:31:28.690409    2016-10-14 13:03:17.245592        \N    \N    \N    0    \N    \N    \N    \N    male
19890    Lori    Ondricka    virgil_rau@jerde.info    \N    Mozambique    West Percychester    29158 Sylvan Heights    93160    Maryland    2016-06-29 12:42:47.740441    2016-10-14 13:03:17.250323        \N    \N    \N    0    \N    \N    \N    \N    female
19891    Demarcus    Stoltenberg    candelario@heller.co    \N    Saint Barthelemy    Mannton    22693 Koss Loop    24599    Pennsylvania    2016-07-13 20:32:26.550838    2016-10-14 13:03:17.254799        \N    \N    \N    0    \N    \N    \N    \N    male
19892    Forrest    Becker    rolando_green@wilkinson.org    \N    Angola    Lake Agustina    1851 Eichmann Valley    78918-7008    Alaska    2016-07-13 12:12:56.882338    2016-10-14 13:03:17.259213        \N    \N    \N    0    \N    \N    \N    \N    male
19893    Lori    Windler    amya@cain.biz    \N    Saudi Arabia    West Tracy    1491 Little Mall    55293    Georgia    2016-09-09 14:56:45.840417    2016-10-14 13:03:17.264443        \N    \N    \N    0    \N    \N    \N    \N    female
19894    Emmet    Zieme    reymundo_schmeler@hintz.io    \N    Saint Martin    South Edwardo    71548 Boyer Plain    71566-0916    Georgia    2016-09-23 05:52:57.960091    2016-10-14 13:03:17.26889        \N    \N    \N    0    \N    \N    \N    \N    female
19895    Aaliyah    Monahan    shawn@bruenfriesen.biz    \N    Andorra    West Rowenaland    95799 Barrett Extensions    31144    Pennsylvania    2016-09-14 12:04:47.11527    2016-10-14 13:03:17.273103        \N    \N    \N    0    \N    \N    \N    \N    male
19896    Edward    Witting    jee@orn.co    \N    Liberia    East Dahliaburgh    5913 Baumbach Turnpike    28029    Connecticut    2016-08-08 02:31:47.264036    2016-10-14 13:03:17.277962        \N    \N    \N    0    \N    \N    \N    \N    male
19897    Elinore    Hane    alfonzo@dickens.io    \N    Nicaragua    Mayertland    8490 Tressie Knolls    38090    West Virginia    2016-08-01 19:38:54.937991    2016-10-14 13:03:17.282612        \N    \N    \N    0    \N    \N    \N    \N    male
19898    Nicolas    Green    berenice.hirthe@macgyver.io    \N    Pakistan    West Coltstad    72053 Deshaun Dam    87337-2098    Oklahoma    2016-08-31 14:09:16.810592    2016-10-14 13:03:17.287217        \N    \N    \N    0    \N    \N    \N    \N    male
19899    Samanta    Parisian    kattie@fay.name    \N    Greenland    Heathborough    69535 Mayert Square    91210    Montana    2016-08-15 05:02:41.967642    2016-10-14 13:03:17.298394        \N    \N    \N    0    \N    \N    \N    \N    male
19900    Jeramy    Wilkinson    hilton@treutelcronin.biz    \N    Lithuania    Bentonfurt    2973 Joshuah Rapid    62276-3185    Delaware    2016-07-16 01:21:57.839867    2016-10-14 13:03:17.303453        \N    \N    \N    0    \N    \N    \N    \N    female
19901    Mathilde    Will    tod.stanton@wintheiserwilderman.com    \N    Russian Federation    Port Manleyhaven    8036 Lue Isle    70229-8056    New York    2016-07-22 04:22:44.822429    2016-10-14 13:03:17.308168        \N    \N    \N    0    \N    \N    \N    \N    male
19902    German    Cummerata    larry.feeney@harvey.net    \N    Pitcairn Islands    Ivahland    16821 Armstrong Vista    53671    Wisconsin    2016-08-21 11:03:46.196225    2016-10-14 13:03:17.312776        \N    \N    \N    0    \N    \N    \N    \N    male
19903    Jameson    Collins    rhoda.volkman@klingmohr.io    \N    Japan    Kingborough    91606 Camylle View    65553    Utah    2016-07-18 23:09:17.837027    2016-10-14 13:03:17.317499        \N    \N    \N    0    \N    \N    \N    \N    male
19904    Blaise    Hills    brennon@moore.info    \N    Pitcairn Islands    West Margot    49553 Katharina Unions    96421-4953    West Virginia    2016-09-28 01:37:10.432186    2016-10-14 13:03:17.322099        \N    \N    \N    0    \N    \N    \N    \N    female
19905    Ethel    Langosh    salvador@kling.com    \N    Indonesia    Hoppeside    90599 Armando Center    77293-0342    Virginia    2016-08-06 08:32:15.309542    2016-10-14 13:03:17.328248        \N    \N    \N    0    \N    \N    \N    \N    male
19906    Giovanni    Price    glenna@lindgren.name    \N    Rwanda    New Milesberg    36057 Jonathan Parkways    87058    Michigan    2016-08-07 01:09:27.102507    2016-10-14 13:03:17.332617        \N    \N    \N    0    \N    \N    \N    \N    female
19907    Adam    Leuschke    angel@ullrich.biz    \N    Wallis and Futuna    Ahmedview    31793 Elmira Lakes    64973    Virginia    2016-09-10 17:36:42.341473    2016-10-14 13:03:17.33683        \N    \N    \N    0    \N    \N    \N    \N    male
19908    Kieran    Cormier    frank@dickiondricka.com    \N    Iraq    Charlesland    6180 Powlowski Freeway    83778-2894    Florida    2016-08-09 01:28:57.534726    2016-10-14 13:03:17.341073        \N    \N    \N    0    \N    \N    \N    \N    male
19909    Bridgette    Barrows    pearline@okon.com    \N    New Caledonia    Albertland    6708 Runolfsdottir Rue    68082    Massachusetts    2016-08-21 07:28:41.03604    2016-10-14 13:03:17.345913        \N    \N    \N    0    \N    \N    \N    \N    female
19910    Leanne    Ankunding    willow@kuphal.net    \N    Indonesia    Aliceport    69474 Beahan Squares    56056-5943    Georgia    2016-09-17 04:22:26.395087    2016-10-14 13:03:17.350518        \N    \N    \N    0    \N    \N    \N    \N    male
19911    Destany    Mitchell    blair@gibson.info    \N    Botswana    Ceceliaside    52521 Corwin Pass    64904-6501    Maryland    2016-09-09 06:41:45.635975    2016-10-14 13:03:17.354693        \N    \N    \N    0    \N    \N    \N    \N    female
19912    Rhett    Wiza    marcel@greenholt.org    \N    Tokelau    Dockmouth    36790 Adams Curve    45239-3875    New York    2016-09-16 00:52:34.282054    2016-10-14 13:03:17.358913        \N    \N    \N    0    \N    \N    \N    \N    female
19913    Amanda    Lindgren    jake.boehm@bins.net    \N    Saint Vincent and the Grenadines    O'Connerfort    42978 Cartwright Wall    35973    Wyoming    2016-07-03 06:43:16.204729    2016-10-14 13:03:17.363466        \N    \N    \N    0    \N    \N    \N    \N    male
19914    Rebeca    Swift    annamarie@schambergergottlieb.biz    \N    Armenia    South Aurelie    5727 Martina Causeway    62152    Rhode Island    2016-09-26 17:56:57.601112    2016-10-14 13:03:17.36797        \N    \N    \N    0    \N    \N    \N    \N    male
19915    Kyra    McGlynn    eliezer@vandervortmaggio.org    \N    Afghanistan    Kristofferberg    20958 Ashley Coves    74516    New Mexico    2016-07-17 13:39:40.179755    2016-10-14 13:03:17.373515        \N    \N    \N    0    \N    \N    \N    \N    female
19916    Norma    Littel    rosanna@hegmann.biz    \N    Swaziland    New Ewaldview    1880 Jessy Pine    87965-3689    Kansas    2016-09-15 04:01:44.768041    2016-10-14 13:03:17.378351        \N    \N    \N    0    \N    \N    \N    \N    male
19917    Alba    Fadel    nikolas_rolfson@sanford.co    \N    Honduras    Angieport    8242 Lowe Radial    88638-9898    Nevada    2016-09-25 17:53:49.506736    2016-10-14 13:03:17.382688        \N    \N    \N    0    \N    \N    \N    \N    female
19918    Joanie    Murphy    edyth@rutherford.info    \N    Saint Helena    West Dalton    50010 Dietrich Plains    91674-4231    Oklahoma    2016-07-28 01:55:51.488869    2016-10-14 13:03:17.386739        \N    \N    \N    0    \N    \N    \N    \N    female
19919    Jeanne    Goodwin    london_champlin@leuschkemueller.com    \N    Georgia    North Name    794 Dibbert Rest    67675-2828    California    2016-07-08 22:55:54.137757    2016-10-14 13:03:17.391135        \N    \N    \N    0    \N    \N    \N    \N    male
19920    Eleonore    Rau    davion@miller.net    \N    China    Devynchester    1627 McGlynn Ferry    26349    Texas    2016-06-23 08:44:32.702055    2016-10-14 13:03:17.395684        \N    \N    \N    0    \N    \N    \N    \N    female
19921    Lou    Dooley    lonnie@jacobs.name    \N    Pitcairn Islands    Flostad    9241 Halvorson Road    35641-9249    South Carolina    2016-07-20 06:55:27.462337    2016-10-14 13:03:17.399941        \N    \N    \N    0    \N    \N    \N    \N    male
19922    Darlene    MacGyver    alysha.sawayn@berge.biz    \N    Gabon    Kshlerinland    3660 Melyssa Turnpike    98502    South Dakota    2016-08-07 10:15:50.976035    2016-10-14 13:03:17.403944        \N    \N    \N    0    \N    \N    \N    \N    female
19923    Vicente    Marquardt    marguerite_wolf@dietrich.net    \N    China    South Mathewfurt    959 Lubowitz Roads    27575-7384    Oregon    2016-07-22 20:27:58.443543    2016-10-14 13:03:17.407966        \N    \N    \N    0    \N    \N    \N    \N    male
19924    Brielle    Bednar    alice.pollich@ziemann.net    \N    Norfolk Island    West Rosalindland    221 Roob Plain    69671    Alabama    2016-08-03 23:26:13.48779    2016-10-14 13:03:17.411737        \N    \N    \N    0    \N    \N    \N    \N    female
19925    Kian    Streich    zoey@hansen.biz    \N    China    South Christop    54330 Rosenbaum Prairie    88456-5174    Arkansas    2016-07-06 06:40:31.231021    2016-10-14 13:03:17.415479        \N    \N    \N    0    \N    \N    \N    \N    male
19926    Royce    Koepp    ansley_gleichner@gerlachbernhard.org    \N    Bouvet Island (Bouvetoya)    Lemkehaven    599 Jorge Corners    36852-1236    Tennessee    2016-06-22 20:27:46.887159    2016-10-14 13:03:17.419409        \N    \N    \N    0    \N    \N    \N    \N    female
19927    America    Schaden    art@schmelerreilly.net    \N    French Southern Territories    Websterland    24884 Schoen Shoal    19599-0337    Nebraska    2016-07-28 12:43:26.313549    2016-10-14 13:03:17.423392        \N    \N    \N    0    \N    \N    \N    \N    male
19928    Estelle    Brakus    leif@langosh.info    \N    Qatar    Kyliefurt    1198 Morissette Stravenue    69737    California    2016-07-30 20:09:23.254276    2016-10-14 13:03:17.427321        \N    \N    \N    0    \N    \N    \N    \N    female
19929    General    Kilback    lillie@quigley.biz    \N    Myanmar    Rogahnchester    35532 Wiza Course    91193-6556    Minnesota    2016-07-29 07:40:06.239651    2016-10-14 13:03:17.43123        \N    \N    \N    0    \N    \N    \N    \N    male
19930    Ivory    Nicolas    summer@prohaska.biz    \N    Cape Verde    Nikkiborough    8449 Esteban Causeway    66212-9133    Missouri    2016-09-26 12:27:53.479295    2016-10-14 13:03:17.43509        \N    \N    \N    0    \N    \N    \N    \N    female
19931    Amy    Schulist    margie@ondrickawillms.com    \N    Macao    Wuckertton    517 Ward Corner    92253-7307    South Carolina    2016-09-02 18:39:53.745269    2016-10-14 13:03:17.439106        \N    \N    \N    0    \N    \N    \N    \N    male
19932    Flavie    Mills    vaughn@lueilwitz.name    \N    American Samoa    East Matildaville    94156 Greenholt Spur    12635-4565    Minnesota    2016-08-05 09:02:34.514873    2016-10-14 13:03:17.442971        \N    \N    \N    0    \N    \N    \N    \N    male
19933    Ona    Barton    antonietta.king@kovacek.org    \N    Solomon Islands    Murrayshire    45105 Kristian Village    49758-6752    West Virginia    2016-08-01 04:55:00.332001    2016-10-14 13:03:17.447065        \N    \N    \N    0    \N    \N    \N    \N    female
19935    Ozella    Kulas    chelsea.metz@effertz.biz    \N    Trinidad and Tobago    Lake Nelsborough    96954 Leola Radial    96618-6861    New Mexico    2016-08-18 03:22:14.158623    2016-10-14 13:03:17.45481        \N    \N    \N    0    \N    \N    \N    \N    female
19936    Treva    Kozey    christopher@kerluke.co    \N    Israel    Reggietown    1031 Kennith Summit    21776-8790    Missouri    2016-09-05 17:51:49.442619    2016-10-14 13:03:17.459648        \N    \N    \N    0    \N    \N    \N    \N    male
19937    Velda    Klocko    luisa_grant@quigley.io    \N    New Zealand    Andersonberg    3443 Mills Port    77847-4552    Kentucky    2016-08-21 14:47:24.944769    2016-10-14 13:03:17.463905        \N    \N    \N    0    \N    \N    \N    \N    male
19938    Blanca    Stoltenberg    ashly_weber@fritsch.biz    \N    Belize    Harleyside    41202 Bahringer Plaza    84746    Florida    2016-07-17 05:49:00.757817    2016-10-14 13:03:17.468179        \N    \N    \N    0    \N    \N    \N    \N    female
19939    Corene    Dare    queenie_stark@okeefe.net    \N    Bangladesh    East Rudolphborough    40498 Carley Run    19069    Pennsylvania    2016-09-21 03:16:56.891895    2016-10-14 13:03:17.472385        \N    \N    \N    0    \N    \N    \N    \N    female
19940    Lindsay    Wintheiser    gwendolyn.langworth@bergnaum.net    \N    Sierra Leone    South Malika    500 Adam Estates    64706    Minnesota    2016-07-21 17:32:17.85816    2016-10-14 13:03:17.476485        \N    \N    \N    0    \N    \N    \N    \N    female
19941    Ardella    Sauer    deborah@schuppe.name    \N    French Southern Territories    Port Ephraim    1525 August View    11946    Ohio    2016-07-24 17:12:12.482349    2016-10-14 13:03:17.48177        \N    \N    \N    0    \N    \N    \N    \N    male
19942    Wilhelmine    Schmeler    rey.feest@stromanconroy.name    \N    Paraguay    O'Konchester    85752 Philip Row    16898    Maryland    2016-07-30 17:22:18.023127    2016-10-14 13:03:17.486001        \N    \N    \N    0    \N    \N    \N    \N    female
19944    Clement    Medhurst    jeanie_gleichner@hyattabshire.io    \N    Uruguay    Abbeyburgh    9814 Senger Roads    73189    Kentucky    2016-09-10 13:04:01.45399    2016-10-14 13:03:17.490299        \N    \N    \N    0    \N    \N    \N    \N    male
19945    Alexander    Boehm    wilbert_metz@connelly.org    \N    Sudan    Nikkochester    7030 Briana Canyon    55698-5498    Nebraska    2016-07-06 21:14:10.364491    2016-10-14 13:03:17.494433        \N    \N    \N    0    \N    \N    \N    \N    male
19946    Alexanne    Schmitt    quinn@mannoconner.name    \N    Jersey    North Bretland    2425 Pearline Creek    11712    Missouri    2016-08-13 13:32:03.007098    2016-10-14 13:03:17.498724        \N    \N    \N    0    \N    \N    \N    \N    female
13915    Hobart    Brown    otis@rau.co    \N    Egypt    Jaysonmouth    158 Stroman Lights    30920-5848    Maine    2016-08-10 07:14:24.78297    2016-10-14 13:03:18.240296        \N    \N    \N    0    \N    \N    \N    \N    male
19947    Rhea    Romaguera    tod_kiehn@crooks.org    \N    Brazil    Port Darrenside    7848 Susanna Loaf    83401-1629    Connecticut    2016-09-08 21:29:47.429039    2016-10-14 13:03:17.503293        \N    \N    \N    0    \N    \N    \N    \N    male
19948    Aurelia    Rutherford    yesenia_strosin@douglas.name    \N    El Salvador    Goldnerborough    179 Bernier Overpass    49796-9934    Arizona    2016-08-24 00:29:59.912294    2016-10-14 13:03:17.50764        \N    \N    \N    0    \N    \N    \N    \N    male
19949    Clifton    Pagac    norma@quigley.net    \N    Saint Kitts and Nevis    New Jeanetteshire    493 Michael Meadows    46669-4467    North Dakota    2016-08-20 05:51:16.362428    2016-10-14 13:03:17.511917        \N    \N    \N    0    \N    \N    \N    \N    male
19950    Chet    Torphy    rosemary@kilback.name    \N    Mayotte    Port Amara    82650 Virgie Extension    99294-7299    Kentucky    2016-09-16 19:33:17.678124    2016-10-14 13:03:17.516289        \N    \N    \N    0    \N    \N    \N    \N    male
19951    Joyce    McClure    marjolaine@parker.info    \N    Madagascar    Doyleborough    828 Kay Isle    14730-7564    New York    2016-07-29 00:26:50.747547    2016-10-14 13:03:17.520433        \N    \N    \N    0    \N    \N    \N    \N    female
19952    Kacie    Smitham    tyreek.schoen@huel.org    \N    New Zealand    Dickinsonfurt    71193 Ledner Prairie    83412-6921    Maine    2016-06-25 05:11:11.899953    2016-10-14 13:03:17.524454        \N    \N    \N    0    \N    \N    \N    \N    male
19953    Xavier    Eichmann    antonina@gutmannheathcote.com    \N    Colombia    New Peyton    75369 Barton Knolls    98867-2181    Texas    2016-09-28 04:12:58.183979    2016-10-14 13:03:17.528819        \N    \N    \N    0    \N    \N    \N    \N    female
19954    Zetta    Reilly    alfredo_heidenreich@muellertremblay.com    \N    Botswana    Ritamouth    266 Vinnie Dale    46212    Virginia    2016-08-28 15:49:43.064496    2016-10-14 13:03:17.532898        \N    \N    \N    0    \N    \N    \N    \N    female
19955    Kole    Wilkinson    brody@kuhlman.com    \N    Christmas Island    Elissachester    7117 Crist Falls    38590    New Hampshire    2016-06-23 16:50:10.372617    2016-10-14 13:03:17.537688        \N    \N    \N    0    \N    \N    \N    \N    male
19956    Moshe    D'Amore    janet@littleklocko.org    \N    Trinidad and Tobago    Port Janymouth    284 Emory Mount    34479    Utah    2016-09-08 10:55:03.777794    2016-10-14 13:03:17.541758        \N    \N    \N    0    \N    \N    \N    \N    male
19957    Neha    O'Connell    delores@rippin.biz    \N    Sierra Leone    Janetborough    8537 Vladimir Place    92855-3677    North Carolina    2016-07-21 23:11:04.235767    2016-10-14 13:03:17.545727        \N    \N    \N    0    \N    \N    \N    \N    female
19958    Lempi    Russel    keyshawn.hoppe@murray.info    \N    Ethiopia    New Dolly    9402 Romaguera River    63864    Wisconsin    2016-06-24 09:23:59.353598    2016-10-14 13:03:17.54978        \N    \N    \N    0    \N    \N    \N    \N    female
19959    Rosalia    Dickinson    kari@grady.org    \N    Switzerland    Hymanville    5312 Huels Green    32939-2109    Mississippi    2016-09-12 21:16:26.072336    2016-10-14 13:03:17.553748        \N    \N    \N    0    \N    \N    \N    \N    female
19960    Jolie    Howell    ulises.koelpin@schamberger.name    \N    Western Sahara    Ankundingberg    75452 Carroll Point    91695-3466    Louisiana    2016-09-12 19:14:59.611731    2016-10-14 13:03:17.558993        \N    \N    \N    0    \N    \N    \N    \N    male
19961    Hipolito    Daniel    earlene@langworth.name    \N    Brazil    Elmiraland    23702 Janet Stream    86283    Utah    2016-08-01 21:31:25.986199    2016-10-14 13:03:17.563587        \N    \N    \N    0    \N    \N    \N    \N    male
19962    Lorna    Stark    jaiden_hoeger@kinghahn.co    \N    Cayman Islands    West Gia    10514 Kilback Knoll    57612    Alabama    2016-08-21 20:13:32.996329    2016-10-14 13:03:17.572752        \N    \N    \N    0    \N    \N    \N    \N    male
19963    Justina    Brakus    bell_breitenberg@blicklegros.biz    \N    China    Lake Danial    28606 Effertz Rue    63170-9313    Colorado    2016-07-06 12:38:04.429619    2016-10-14 13:03:17.580297        \N    \N    \N    0    \N    \N    \N    \N    male
19964    Ayana    Wiza    kavon.stoltenberg@collier.co    \N    Isle of Man    Port Manleyview    224 Conn Squares    68437-3710    Michigan    2016-07-27 16:56:55.412849    2016-10-14 13:03:17.584995        \N    \N    \N    0    \N    \N    \N    \N    female
19965    Dandre    Stanton    santa.bosco@stanton.biz    \N    Sudan    Erdmanfurt    3632 Korey Estates    69695    Wisconsin    2016-08-22 21:34:29.488928    2016-10-14 13:03:17.589595        \N    \N    \N    0    \N    \N    \N    \N    male
19966    Jakayla    Swift    richard_goodwin@grimes.com    \N    Saint Pierre and Miquelon    Bulahberg    4354 Adam Vista    18798    Florida    2016-06-27 21:25:35.270079    2016-10-14 13:03:17.594329        \N    \N    \N    0    \N    \N    \N    \N    male
19967    Joel    Dibbert    arianna.huels@zulauf.name    \N    Croatia    Hermanberg    87491 Waelchi Plains    79920-5868    Arkansas    2016-07-23 10:04:14.830625    2016-10-14 13:03:17.598731        \N    \N    \N    0    \N    \N    \N    \N    female
19968    Lurline    Kshlerin    meaghan@hodkiewicz.io    \N    Niue    South Seamus    4417 Lance Roads    24807-6734    Alabama    2016-09-28 21:07:36.495675    2016-10-14 13:03:17.603207        \N    \N    \N    0    \N    \N    \N    \N    male
19969    Sandrine    Runolfsson    kiarra@kingschultz.biz    \N    Iraq    North Bretland    58698 MacGyver Rest    66191-3881    Nebraska    2016-07-26 02:22:23.166429    2016-10-14 13:03:17.607821        \N    \N    \N    0    \N    \N    \N    \N    male
19970    Arvel    Cormier    alfred@tremblay.co    \N    Turks and Caicos Islands    Lebsackton    16403 Gleichner Station    67525-0943    Michigan    2016-09-13 11:34:27.906377    2016-10-14 13:03:17.61252        \N    \N    \N    0    \N    \N    \N    \N    female
19971    Lilla    Reynolds    chaim@daugherty.com    \N    Tunisia    Gulgowskibury    1305 Americo Camp    20947-5553    Pennsylvania    2016-08-31 01:36:14.91558    2016-10-14 13:03:17.616746        \N    \N    \N    0    \N    \N    \N    \N    female
19972    Lorenza    Lindgren    sandy_schmitt@oconner.name    \N    Jersey    West Kentonborough    4378 Cormier Stravenue    76357-6523    Wisconsin    2016-06-24 03:08:34.342399    2016-10-14 13:03:17.62077        \N    \N    \N    0    \N    \N    \N    \N    male
19973    Ofelia    Hilpert    mariano.leannon@rath.net    \N    Libyan Arab Jamahiriya    North Verlie    597 Keshaun Mountains    28094-9156    Nebraska    2016-09-23 11:18:54.659008    2016-10-14 13:03:17.625302        \N    \N    \N    0    \N    \N    \N    \N    female
19974    Rosemary    Williamson    adella@blick.name    \N    Rwanda    Herminachester    69360 Thompson Dam    45135-4032    South Carolina    2016-09-08 03:41:55.080577    2016-10-14 13:03:17.629758        \N    \N    \N    0    \N    \N    \N    \N    female
19975    Noe    Hudson    orland.willms@johns.io    \N    Tajikistan    East Willis    40240 Ilene Grove    92827-5337    Missouri    2016-08-08 00:13:56.641919    2016-10-14 13:03:17.634414        \N    \N    \N    0    \N    \N    \N    \N    male
19977    Reed    Botsford    luna.halvorson@schoen.name    \N    Saint Lucia    New Leramouth    2705 Finn Manor    98400-5698    Hawaii    2016-08-07 14:01:46.322081    2016-10-14 13:03:17.639365        \N    \N    \N    0    \N    \N    \N    \N    male
19979    Cedrick    Kirlin    clemens.spencer@kuhn.biz    \N    Ethiopia    Braunmouth    683 Nathan Keys    94794-9085    New Jersey    2016-07-06 23:46:54.263431    2016-10-14 13:03:17.64451        \N    \N    \N    0    \N    \N    \N    \N    female
19980    Judd    Schumm    lauriane.halvorson@erdmangulgowski.biz    \N    Latvia    Adamfurt    300 Zboncak Club    69824-9196    West Virginia    2016-09-05 11:34:11.206626    2016-10-14 13:03:17.649731        \N    \N    \N    0    \N    \N    \N    \N    female
19981    Ethyl    Hoeger    abdullah@smith.com    \N    Iceland    East Eve    279 Bode Fork    98069    West Virginia    2016-06-23 08:47:13.366598    2016-10-14 13:03:17.654627        \N    \N    \N    0    \N    \N    \N    \N    female
19982    Ashtyn    Erdman    tiffany@moriette.com    \N    Malaysia    West Adafurt    9885 Reinger Locks    47696-8164    Rhode Island    2016-09-13 03:36:18.791505    2016-10-14 13:03:17.659168        \N    \N    \N    0    \N    \N    \N    \N    female
19983    Fredy    Casper    stephan@jakubowski.net    \N    San Marino    Robynland    873 Marlin Motorway    87192-4191    Washington    2016-07-13 03:29:56.537359    2016-10-14 13:03:17.663723        \N    \N    \N    0    \N    \N    \N    \N    male
19984    Nolan    Wyman    morgan.gleichner@greenholt.io    \N    Uganda    Deckowton    798 Heaney Locks    24277    Montana    2016-06-27 00:03:09.05941    2016-10-14 13:03:17.66837        \N    \N    \N    0    \N    \N    \N    \N    male
19985    Maxwell    Effertz    lilla.huels@langworth.info    \N    Tuvalu    Tracetown    7049 Kessler Trail    41074-4090    Tennessee    2016-09-20 00:29:37.123529    2016-10-14 13:03:17.67321        \N    \N    \N    0    \N    \N    \N    \N    female
19991    Octavia    Parisian    myrna@beatty.io    \N    Antarctica (the territory South of 60 deg S)    Nienowfurt    55251 Ernser Ranch    23852-8531    West Virginia    2016-07-07 20:01:59.124975    2016-10-14 13:03:17.678241        \N    \N    \N    0    \N    \N    \N    \N    male
19993    Trever    Feil    monica@sawayn.com    \N    Saint Martin    Gaylordfort    1968 Stephon Greens    51468    Georgia    2016-07-07 06:20:02.078836    2016-10-14 13:03:17.683086        \N    \N    \N    0    \N    \N    \N    \N    female
19994    Weldon    Jast    victor.ernser@ullrich.info    \N    Niger    McDermottbury    504 Ferry Place    79917-1864    West Virginia    2016-09-14 01:02:46.804326    2016-10-14 13:03:17.688604        \N    \N    \N    0    \N    \N    \N    \N    male
19995    Zoe    Greenfelder    aniya@powlowski.com    \N    United Arab Emirates    Gardnerside    450 Rosenbaum Springs    15541-4357    Indiana    2016-09-19 17:30:17.758617    2016-10-14 13:03:17.694753        \N    \N    \N    0    \N    \N    \N    \N    female
19996    Eugene    Harvey    ardith@daniel.net    \N    Croatia    Cummingsshire    748 Kertzmann Prairie    49153-5379    Montana    2016-09-17 23:41:28.051355    2016-10-14 13:03:17.699879        \N    \N    \N    0    \N    \N    \N    \N    female
10134    Keira    Spencer    madyson@upton.net    \N    Ecuador    New Kamron    766 Fritsch Lodge    83175-9130    South Dakota    2016-09-16 19:56:49.417904    2016-10-14 13:03:17.706447        \N    \N    \N    0    \N    \N    \N    \N    female
10136    Kaya    Maggio    johnson.raynor@flatleymetz.io    \N    Sudan    Brittanytown    489 Marvin Valleys    41023    Idaho    2016-08-01 00:31:37.011123    2016-10-14 13:03:17.71298        \N    \N    \N    0    \N    \N    \N    \N    male
10152    Karson    Heathcote    kathleen@shanahangleason.info    \N    Cocos (Keeling) Islands    East Alexys    84848 Karli Orchard    40592-8254    Florida    2016-08-24 03:09:45.091468    2016-10-14 13:03:17.719327        \N    \N    \N    0    \N    \N    \N    \N    male
10177    Raphaelle    McLaughlin    everett.hauck@cronin.io    \N    Paraguay    Rowenahaven    6117 Ernser Port    64208    North Dakota    2016-07-22 18:38:23.785638    2016-10-14 13:03:17.724294        \N    \N    \N    0    \N    \N    \N    \N    male
10181    Ayden    Doyle    harvey.ledner@kemmerdenesik.net    \N    Congo    North Cassieberg    1763 Schmeler Way    43610-3450    Vermont    2016-07-09 23:04:09.613153    2016-10-14 13:03:17.729179        \N    \N    \N    0    \N    \N    \N    \N    male
10184    Verlie    Lind    berniece.runte@daughertyrath.org    \N    Micronesia    East Corrineport    177 Christiansen Centers    21828    Massachusetts    2016-07-15 23:38:43.167217    2016-10-14 13:03:17.733364        \N    \N    \N    0    \N    \N    \N    \N    male
10197    Reggie    Hamill    carole.abernathy@schmidtflatley.info    \N    Lao People's Democratic Republic    Laishachester    4413 Parisian Corners    18284-6884    Oklahoma    2016-07-09 01:03:48.04127    2016-10-14 13:03:17.737386        \N    \N    \N    0    \N    \N    \N    \N    female
13097    Curtis    Sipes    orin@grantko.info    \N    Haiti    Schultzport    186 Fahey Plaza    57090    Nebraska    2016-09-28 11:42:18.856774    2016-10-14 13:03:17.74152        \N    \N    \N    0    \N    \N    \N    \N    male
19978    Irma    Olson    kaylee@schuster.info    \N    Algeria    Ottostad    1454 Howe Parks    23735    Delaware    2016-08-09 03:20:06.628087    2016-10-14 13:03:17.74603        \N    \N    \N    0    \N    \N    \N    \N    female
10004    Deondre    Kautzer    charley.leffler@eichmann.io    \N    Pakistan    Lake Krystelfort    58337 Summer Squares    57213-8018    Kansas    2016-09-01 04:42:59.697674    2016-10-14 13:03:17.750672        \N    \N    \N    0    \N    \N    \N    \N    female
10005    Jeffery    Lesch    modesto@schuppe.net    \N    Monaco    Simonisview    34372 Laron Knoll    11907-4842    Rhode Island    2016-09-15 15:12:19.32953    2016-10-14 13:03:17.7553        \N    \N    \N    0    \N    \N    \N    \N    male
10006    Rosetta    Herzog    brittany_beer@toybauch.info    \N    Trinidad and Tobago    O'Connellbury    36502 Beier Shoal    95099-5389    Kansas    2016-09-04 05:54:13.59279    2016-10-14 13:03:17.759756        \N    \N    \N    0    \N    \N    \N    \N    male
10007    Elisha    Green    anna.gislason@zulauf.io    \N    Virgin Islands, British    North Jewel    6346 Kutch Knoll    91464-5647    Ohio    2016-09-12 01:51:51.968679    2016-10-14 13:03:17.764348        \N    \N    \N    0    \N    \N    \N    \N    male
10009    Maida    Kohler    kody.reynolds@schneiderdibbert.co    \N    Tanzania    Boehmland    287 Fausto Ports    99615-0384    New York    2016-09-16 08:06:55.97222    2016-10-14 13:03:17.76869        \N    \N    \N    0    \N    \N    \N    \N    male
10010    Tianna    Toy    tara@koepp.name    \N    Martinique    Dollymouth    1762 Hane River    13475-3960    Washington    2016-08-06 23:52:22.638263    2016-10-14 13:03:17.772825        \N    \N    \N    0    \N    \N    \N    \N    male
10011    Markus    Kulas    casey.boehm@daniel.name    \N    Estonia    East Samanta    696 Walker Branch    44282    Oklahoma    2016-08-02 12:28:09.375274    2016-10-14 13:03:17.776979        \N    \N    \N    0    \N    \N    \N    \N    female
10012    Max    Brekke    te.ledner@tillman.co    \N    Micronesia    Wisozkbury    585 Heller Forge    14580    New Hampshire    2016-07-24 08:55:28.494201    2016-10-14 13:03:17.781383        \N    \N    \N    0    \N    \N    \N    \N    female
13641    Victor    Moen    ally@blockbeatty.com    \N    Togo    West Davon    594 Grady Grove    22976    Kentucky    2016-09-17 19:05:08.385865    2016-10-14 13:03:17.785673        \N    \N    \N    0    \N    \N    \N    \N    male
14128    Jan    Collier    finn@beahan.name    \N    Jamaica    Kuhicland    1204 Bogan Neck    80836    Maine    2016-08-27 13:40:09.424083    2016-10-14 13:03:17.790522        \N    \N    \N    0    \N    \N    \N    \N    female
15672    Vito    Weissnat    rowena.tremblay@cain.biz    \N    Uzbekistan    Blancastad    601 Fay Estates    55172    Washington    2016-09-27 21:57:24.066238    2016-10-14 13:03:17.794978        \N    \N    \N    0    \N    \N    \N    \N    male
15717    Domingo    Klocko    carmen@howe.org    \N    Comoros    North Garrisonstad    385 Thompson Wells    34827    New Jersey    2016-08-05 00:39:15.28366    2016-10-14 13:03:17.800951        \N    \N    \N    0    \N    \N    \N    \N    male
16191    Johan    Kuhic    ashlee@herzog.co    \N    Belarus    South Hal    11355 Kutch Lakes    96055    Alaska    2016-07-12 23:09:11.071066    2016-10-14 13:03:17.805563        \N    \N    \N    0    \N    \N    \N    \N    male
17049    Tito    Prosacco    jaclyn@keeblerwisoky.co    \N    Jersey    Dorotheashire    373 Smitham Hill    48701    Louisiana    2016-07-03 15:26:09.419574    2016-10-14 13:03:17.81039        \N    \N    \N    0    \N    \N    \N    \N    male
17805    Lavon    Feest    jamarcus@huelsrunte.co    \N    Aruba    New Ludie    53766 Mosciski Island    94452    Michigan    2016-06-30 19:03:32.82177    2016-10-14 13:03:17.815908        \N    \N    \N    0    \N    \N    \N    \N    male
18798    Enos    King    kyleigh_towne@mcdermott.org    \N    Ukraine    Kubburgh    396 Kirlin Locks    25605    Alaska    2016-08-06 13:20:29.996247    2016-10-14 13:03:17.821292        \N    \N    \N    0    \N    \N    \N    \N    female
19187    Edd    Windler    blake@hermanmueller.info    \N    Cote d'Ivoire    Terrybury    953 Roob Summit    30935    New Jersey    2016-09-25 09:03:10.389788    2016-10-14 13:03:17.826335        \N    \N    \N    0    \N    \N    \N    \N    male
19631    Ernie    Reinger    isaiah@lockman.org    \N    Moldova    Leannontown    101 Alden Manors    88243-3259    West Virginia    2016-09-10 02:35:02.219845    2016-10-14 13:03:17.830617        \N    \N    \N    0    \N    \N    \N    \N    female
19943    Arjun    Yost    anahi@mcculloughkeler.io    \N    Morocco    Thielport    7562 Gleichner Mountains    80361    Nebraska    2016-08-20 17:45:07.078158    2016-10-14 13:03:17.834903        \N    \N    \N    0    \N    \N    \N    \N    female
19986    Granville    Kuphal    lavinia_kulas@eichmann.co    \N    Saint Lucia    Jabariview    70010 Barry Tunnel    30948-6518    North Carolina    2016-08-31 01:46:57.875656    2016-10-14 13:03:17.839002        \N    \N    \N    0    \N    \N    \N    \N    male
19987    Donato    Kunde    celestine_bailey@kuhlmangusikowski.name    \N    Saint Pierre and Miquelon    Loweberg    513 Wyman Port    37966    Delaware    2016-07-14 13:21:26.594547    2016-10-14 13:03:17.847933        \N    \N    \N    0    \N    \N    \N    \N    male
19988    Jeffry    Stehr    lavina.green@volkmanwiegand.biz    \N    Germany    East Eleanora    9577 Wunsch Ports    57806    Vermont    2016-09-23 04:18:08.278554    2016-10-14 13:03:17.858423        \N    \N    \N    0    \N    \N    \N    \N    female
19989    Watson    Marvin    madyson@macgyver.info    \N    Hungary    Coleborough    84801 Labadie Fields    59183    Pennsylvania    2016-08-21 07:17:13.98033    2016-10-14 13:03:17.866447        \N    \N    \N    0    \N    \N    \N    \N    male
19990    Susie    Maggio    stephan@roberts.net    \N    Sri Lanka    Caliberg    26490 Eliezer Estate    26920-9652    Indiana    2016-07-01 05:55:54.584845    2016-10-14 13:03:17.875585        \N    \N    \N    0    \N    \N    \N    \N    female
19992    Jessica    Reichel    aryanna.rutherford@effertzratke.name    \N    Jamaica    Bartellmouth    402 Forest Lights    24857-8519    Montana    2016-08-04 09:16:54.386692    2016-10-14 13:03:17.890581        \N    \N    \N    0    \N    \N    \N    \N    male
10021    Dave    Rath    rollin.bauch@stark.name    \N    Mozambique    Littelmouth    91378 Alexis Station    68976    Mississippi    2016-06-29 19:00:55.191716    2016-10-14 13:03:17.898381        \N    \N    \N    0    \N    \N    \N    \N    female
10022    Estrella    Lind    veronica@moriette.org    \N    China    Kertzmanntown    22007 Alyce Plains    56553-5852    Louisiana    2016-09-10 09:13:43.689138    2016-10-14 13:03:17.903442        \N    \N    \N    0    \N    \N    \N    \N    female
10023    Holly    Durgan    morgan@kulas.org    \N    Saint Barthelemy    Theamouth    1598 Dylan Bridge    98514    Michigan    2016-07-19 08:40:33.790004    2016-10-14 13:03:17.908548        \N    \N    \N    0    \N    \N    \N    \N    female
10024    Delphia    Lueilwitz    gerda@runolfondavis.name    \N    Turkey    Hanemouth    551 Zaria Keys    45174-4918    Connecticut    2016-07-12 12:07:13.125542    2016-10-14 13:03:17.913749        \N    \N    \N    0    \N    \N    \N    \N    male
10025    Kamren    Bailey    micheal@hills.org    \N    Democratic People's Republic of Korea    Dickensfort    2045 Buckridge Parkway    83469-1038    New York    2016-06-26 15:53:15.769088    2016-10-14 13:03:17.918445        \N    \N    \N    0    \N    \N    \N    \N    male
10026    Norwood    Lemke    patrick@mclaughlin.biz    \N    Senegal    West Owenside    63905 Gleichner Tunnel    63397    Colorado    2016-09-20 17:22:21.404276    2016-10-14 13:03:17.923165        \N    \N    \N    0    \N    \N    \N    \N    female
10496    Stone    MacGyver    te@flatley.net    \N    Nauru    Greenfeldershire    291 Maryjane Port    72425    Alabama    2016-09-01 11:09:56.815309    2016-10-14 13:03:17.928201        \N    \N    \N    0    \N    \N    \N    \N    male
10497    Dorcas    Hauck    mattie@bosco.io    \N    Niue    Port Keatonton    328 Nico Village    21839-7773    Montana    2016-09-08 12:58:59.499077    2016-10-14 13:03:17.933355        \N    \N    \N    0    \N    \N    \N    \N    male
10589    Era    Langworth    blake@jacobson.org    \N    Guyana    Lewberg    2787 Gulgowski Lane    12101    Illinois    2016-07-13 02:06:40.427577    2016-10-14 13:03:17.946267        \N    \N    \N    0    \N    \N    \N    \N    male
11082    Vivienne    Torp    loyce@oreillyabernathy.co    \N    Dominica    Beahanbury    6407 Sauer Green    49378    Iowa    2016-07-22 23:25:15.677499    2016-10-14 13:03:17.954861        \N    \N    \N    0    \N    \N    \N    \N    male
11443    Dock    Bernhard    icie_stark@kelersauer.com    \N    Chad    North Ansel    257 Sam Island    29753    Delaware    2016-08-05 08:49:19.889391    2016-10-14 13:03:17.959171        \N    \N    \N    0    \N    \N    \N    \N    male
13582    Buford    Lehner    rosie_wolff@kiehn.net    \N    Comoros    Eulaton    754 Tressie Lodge    96564    Nevada    2016-09-10 19:25:39.781998    2016-10-14 13:03:17.963539        \N    \N    \N    0    \N    \N    \N    \N    male
13716    Aron    Ziemann    kasey_barton@nolan.biz    \N    Peru    East Alison    6916 Collins Hill    18192    Maryland    2016-09-07 08:17:33.194145    2016-10-14 13:03:17.967643        \N    \N    \N    0    \N    \N    \N    \N    female
15597    Aurelio    Bins    agnes@beahan.io    \N    Bermuda    Chesleyfurt    286 Elbert Landing    91321    Montana    2016-09-02 21:55:22.126113    2016-10-14 13:03:17.972032        \N    \N    \N    0    \N    \N    \N    \N    female
17077    Fritz    Robel    ransom@smith.com    \N    Iraq    Lake Francesco    1095 Torey Viaduct    18091    Oklahoma    2016-09-20 15:20:12.145429    2016-10-14 13:03:17.976957        \N    \N    \N    0    \N    \N    \N    \N    female
17746    Toni    Feil    elmo@pollich.org    \N    Cyprus    Port Maudeport    37450 Brakus Brook    73561    Alaska    2016-09-28 08:17:00.450118    2016-10-14 13:03:17.981605        \N    \N    \N    0    \N    \N    \N    \N    male
17926    Lorenza    Gerhold    aaron@thiel.com    \N    Tunisia    Philiptown    40956 Boehm Mill    95012    Iowa    2016-06-26 09:46:06.34796    2016-10-14 13:03:17.985985        \N    \N    \N    0    \N    \N    \N    \N    female
18151    Buford    Wisoky    anabel@auerspencer.name    \N    Chile    Windlerton    9618 King Mountain    13744    Florida    2016-08-21 22:58:11.605795    2016-10-14 13:03:17.990291        \N    \N    \N    0    \N    \N    \N    \N    female
10027    Golda    Gutkowski    omer.gulgowski@lehner.info    \N    Central African Republic    Durganport    301 Doris Villages    68034    Missouri    2016-09-13 01:43:55.59612    2016-10-14 13:03:18.000836        \N    \N    \N    0    \N    \N    \N    \N    female
10028    Rashad    Carroll    michaela.ebert@rosenbaummayer.info    \N    Mali    West Claire    58151 Eugenia Route    72477    Virginia    2016-07-15 22:08:32.553901    2016-10-14 13:03:18.006061        \N    \N    \N    0    \N    \N    \N    \N    female
10030    Luciano    Gleason    jeremie_brakus@nikolaus.name    \N    Moldova    Lake Esther    7584 Donato Ferry    53107-7803    New Jersey    2016-07-12 02:05:37.888506    2016-10-14 13:03:18.011213        \N    \N    \N    0    \N    \N    \N    \N    female
10031    Amani    Wisozk    zelma@reilly.com    \N    Trinidad and Tobago    Townefurt    583 Klocko Hill    51224-9295    North Dakota    2016-07-31 02:28:56.549104    2016-10-14 13:03:18.01658        \N    \N    \N    0    \N    \N    \N    \N    female
11131    Monica    Beahan    agustin.sanford@corkery.io    \N    Cameroon    Christophechester    1390 Afton Cove    52309-2556    South Carolina    2016-07-06 20:49:20.915587    2016-10-14 13:03:18.021753        \N    \N    \N    0    \N    \N    \N    \N    female
11242    Eryn    Kuhic    celestine@rippin.com    \N    Guinea    North Cody    53550 Leffler View    86751-4913    Idaho    2016-09-07 00:55:35.592558    2016-10-14 13:03:18.027337        \N    \N    \N    0    \N    \N    \N    \N    male
12918    Alvah    Wyman    sydni@lesch.biz    \N    French Guiana    Lake Ines    2081 Else Ferry    83345    Ohio    2016-08-05 13:49:31.21802    2016-10-14 13:03:18.0328        \N    \N    \N    0    \N    \N    \N    \N    female
12845    Randal    DuBuque    rashad.moen@beatty.io    \N    Sudan    East Name    94189 Wolf Locks    14542    Maine    2016-06-29 06:52:04.830895    2016-10-14 13:03:18.038002        \N    \N    \N    0    \N    \N    \N    \N    female
13275    Jettie    Nikolaus    ophelia@reilly.net    \N    Kazakhstan    Port Amelie    545 Rahul Loaf    82262    Delaware    2016-08-17 20:23:26.208409    2016-10-14 13:03:18.04266        \N    \N    \N    0    \N    \N    \N    \N    female
13296    Rhett    Beer    jace@vandervort.co    \N    Suriname    Jaunitaberg    360 Hyatt Rapids    12557-4062    Texas    2016-09-10 13:23:23.840099    2016-10-14 13:03:18.047332        \N    \N    \N    0    \N    \N    \N    \N    female
13628    Franco    Emard    kenyon@bartell.info    \N    Spain    New Jordi    2853 Strosin Fort    21023    Washington    2016-07-30 03:26:26.382368    2016-10-14 13:03:18.052012        \N    \N    \N    0    \N    \N    \N    \N    male
13955    Micah    Bayer    eric@lueilwitzkerluke.org    \N    Reunion    Lake Xzavier    9267 Amani Curve    65898    Texas    2016-07-05 18:22:44.987796    2016-10-14 13:03:18.05618        \N    \N    \N    0    \N    \N    \N    \N    male
14498    Mathilde    Rippin    jey@green.co    \N    Burundi    New Unique    88864 Geo Neck    90532-6116    Nevada    2016-08-24 14:11:10.634108    2016-10-14 13:03:18.060363        \N    \N    \N    0    \N    \N    \N    \N    male
14569    Fredy    Cruickshank    gail@streich.co    \N    Namibia    Buckridgebury    772 Simonis Park    30886-6750    Montana    2016-07-18 13:50:30.738646    2016-10-14 13:03:18.064652        \N    \N    \N    0    \N    \N    \N    \N    male
14852    Morton    Goodwin    reuben@rolfson.info    \N    Cape Verde    Daytonville    155 Boehm Burg    87414    Missouri    2016-08-14 22:52:49.743403    2016-10-14 13:03:18.069077        \N    \N    \N    0    \N    \N    \N    \N    male
14958    Rowan    Green    ara.nader@ruecker.biz    \N    Pakistan    Port Monroe    972 Rey Ridge    84940    Arizona    2016-09-23 03:21:04.496815    2016-10-14 13:03:18.073592        \N    \N    \N    0    \N    \N    \N    \N    male
15226    Lelia    Goodwin    beverly@lockman.co    \N    Costa Rica    Lake Lester    459 Kihn Court    34654    Oklahoma    2016-06-28 00:44:17.575223    2016-10-14 13:03:18.078598        \N    \N    \N    0    \N    \N    \N    \N    female
15786    Lia    Borer    okey.ullrich@bogan.name    \N    Azerbaijan    Stevebury    849 Wolf Lakes    74395    Nevada    2016-09-24 02:39:44.300271    2016-10-14 13:03:18.083298        \N    \N    \N    0    \N    \N    \N    \N    female
16210    Dino    Bednar    wanda_effertz@predovic.net    \N    Iceland    Loybury    536 O'Conner Lodge    15466    Vermont    2016-09-11 06:20:23.371844    2016-10-14 13:03:18.088081        \N    \N    \N    0    \N    \N    \N    \N    female
17022    Lane    O'Kon    elmo.parker@hagenes.com    \N    Cuba    Kurtstad    6829 Keon Dale    56263-8872    New York    2016-08-08 14:20:51.197576    2016-10-14 13:03:18.092799        \N    \N    \N    0    \N    \N    \N    \N    male
16632    Darion    Murazik    jaleel@okon.org    \N    Austria    Joanafort    538 Zieme Parkway    83982-8802    Montana    2016-08-11 20:04:05.667391    2016-10-14 13:03:18.097292        \N    \N    \N    0    \N    \N    \N    \N    male
17158    Freeda    Schuster    shawna@heel.io    \N    Serbia    Westmouth    309 Farrell Pine    35029    Montana    2016-07-08 16:01:00.32308    2016-10-14 13:03:18.102034        \N    \N    \N    0    \N    \N    \N    \N    male
17874    Maya    Moore    aurore@grady.com    \N    Bahrain    Port Asa    7042 McKenzie Mountains    58102    Arizona    2016-06-23 11:25:20.901805    2016-10-14 13:03:18.106152        \N    \N    \N    0    \N    \N    \N    \N    female
18594    Abe    Kiehn    thomas@erdman.com    \N    Niue    Port Telly    17883 Bruen Freeway    81419    Rhode Island    2016-09-26 06:16:41.16497    2016-10-14 13:03:18.110303        \N    \N    \N    0    \N    \N    \N    \N    male
10013    Barry    Wolff    dock_erdman@gislason.co    \N    Uruguay    Kerlukebury    46855 Garett Spur    56269    Mississippi    2016-09-14 11:22:38.12847    2016-10-14 13:03:18.114691        \N    \N    \N    0    \N    \N    \N    \N    female
10014    Theresa    Brakus    selmer_wolf@kohler.com    \N    Slovakia (Slovak Republic)    Owenland    8522 Carter Parks    53828    Kentucky    2016-07-06 06:49:06.953254    2016-10-14 13:03:18.119369        \N    \N    \N    0    \N    \N    \N    \N    female
10016    Lionel    Von    jacques@shanahan.name    \N    Swaziland    Flochester    966 Meredith Prairie    18953    New Jersey    2016-08-11 04:34:04.749081    2016-10-14 13:03:18.124076        \N    \N    \N    0    \N    \N    \N    \N    female
10017    Bernadette    Batz    aida@parker.biz    \N    Pitcairn Islands    South Brody    563 Aracely Curve    87641    Arkansas    2016-08-31 18:25:46.081377    2016-10-14 13:03:18.128485        \N    \N    \N    0    \N    \N    \N    \N    male
10032    Maximus    Murray    moises@larkin.info    \N    Liechtenstein    Marisolmouth    7844 Orn Summit    10161    Wisconsin    2016-06-24 00:01:05.265399    2016-10-14 13:03:18.132885        \N    \N    \N    0    \N    \N    \N    \N    female
10033    Spencer    Walter    pattie_mraz@rohanmarquardt.io    \N    Swaziland    Lake Augustusmouth    3032 Hackett Inlet    69441    West Virginia    2016-06-28 22:35:57.022121    2016-10-14 13:03:18.137654        \N    \N    \N    0    \N    \N    \N    \N    female
10034    Eldred    Carter    jacklyn@rath.com    \N    Liechtenstein    North Novachester    6453 Reba Squares    39260    New Jersey    2016-09-24 17:01:33.413942    2016-10-14 13:03:18.142577        \N    \N    \N    0    \N    \N    \N    \N    male
10035    Isom    Marks    andres_farrell@kohler.biz    \N    Guinea    East Genemouth    94811 Schamberger Valleys    38358-4627    California    2016-08-02 07:13:14.907288    2016-10-14 13:03:18.147393        \N    \N    \N    0    \N    \N    \N    \N    male
10036    Suzanne    Towne    laury@padberg.biz    \N    Gambia    Aminaburgh    3140 Strosin Wall    50883    Nebraska    2016-07-09 03:14:35.829108    2016-10-14 13:03:18.152148        \N    \N    \N    0    \N    \N    \N    \N    female
10037    Litzy    Jenkins    hermann@lynch.net    \N    Guatemala    Daughertyborough    7379 Hiram Wells    83569-7280    Massachusetts    2016-07-15 14:17:44.929067    2016-10-14 13:03:18.156832        \N    \N    \N    0    \N    \N    \N    \N    male
10038    Marvin    Wisozk    marjorie@crooks.net    \N    Palau    East Amyfort    9265 Wintheiser Knolls    33682-5879    California    2016-08-07 09:21:39.356736    2016-10-14 13:03:18.162181        \N    \N    \N    0    \N    \N    \N    \N    male
13098    Velma    Steuber    brad_steuber@baileyrau.org    \N    Chile    Lake Sim    781 Pouros Fords    17847    Texas    2016-08-16 19:05:48.639671    2016-10-14 13:03:18.167284        \N    \N    \N    0    \N    \N    \N    \N    male
10039    Jasper    Rohan    jannie.blick@mcculloughkunde.co    \N    Falkland Islands (Malvinas)    Oleton    633 Abbie Spring    31954    Florida    2016-08-27 16:58:34.208476    2016-10-14 13:03:18.172562        \N    \N    \N    0    \N    \N    \N    \N    male
10040    Jayme    Baumbach    amira@kirlin.org    \N    Nigeria    East Sierra    5360 Wisoky Drive    58252    Alaska    2016-09-23 05:56:19.329347    2016-10-14 13:03:18.177671        \N    \N    \N    0    \N    \N    \N    \N    female
10041    Kaci    Harvey    daphne_walter@gottliebharvey.io    \N    Jamaica    East Rupertfort    993 Braun Ports    13391-2543    Virginia    2016-08-11 19:23:48.537156    2016-10-14 13:03:18.182754        \N    \N    \N    0    \N    \N    \N    \N    male
10042    Abagail    Rolfson    zora_cronin@west.io    \N    Israel    Port Tyrel    95944 Alec Burg    65655    Hawaii    2016-08-02 08:20:55.44491    2016-10-14 13:03:18.18804        \N    \N    \N    0    \N    \N    \N    \N    male
10043    Taylor    Greenfelder    brice@bosco.org    \N    Timor-Leste    West Dale    94496 Cummings Village    39991-4231    Minnesota    2016-07-10 17:07:58.683397    2016-10-14 13:03:18.193165        \N    \N    \N    0    \N    \N    \N    \N    female
10045    Cory    Douglas    brandt_rath@lebsack.name    \N    Italy    North Roma    13331 Wilderman Circle    40068-8770    Arkansas    2016-09-15 00:43:34.717413    2016-10-14 13:03:18.198234        \N    \N    \N    0    \N    \N    \N    \N    male
10049    Dagmar    O'Keefe    jarred@yundtlemke.co    \N    Dominica    Gutmannchester    67410 Jonatan Ports    21448    Arizona    2016-07-01 03:51:24.877152    2016-10-14 13:03:18.203421        \N    \N    \N    0    \N    \N    \N    \N    female
10432    Maureen    Monahan    jerod@orn.name    \N    Samoa    O'Connerbury    6532 Renner Throughway    51139    Idaho    2016-09-29 03:56:30.672376    2016-10-14 13:03:18.208743        \N    \N    \N    0    \N    \N    \N    \N    male
10927    Hoyt    Casper    dangelo@gloverdibbert.name    \N    Zambia    Towneton    185 Fannie Ferry    37397    Nebraska    2016-07-08 22:28:50.189172    2016-10-14 13:03:18.216103        \N    \N    \N    0    \N    \N    \N    \N    female
12223    Adell    Wyman    alyon@medhurst.com    \N    Cyprus    Donaldland    8866 Ullrich Underpass    15557-2986    Michigan    2016-08-02 15:39:21.748357    2016-10-14 13:03:18.221762        \N    \N    \N    0    \N    \N    \N    \N    female
13287    Alisha    Bauch    elias@sauer.biz    \N    Togo    Thielton    997 Loren Wells    89936    Wisconsin    2016-07-06 13:15:51.564492    2016-10-14 13:03:18.227466        \N    \N    \N    0    \N    \N    \N    \N    female
13803    Troy    Walsh    jasper@ledner.biz    \N    Honduras    Zariamouth    2044 Towne Well    88661-3245    Tennessee    2016-07-05 00:26:30.831772    2016-10-14 13:03:18.23283        \N    \N    \N    0    \N    \N    \N    \N    female
14336    Haleigh    Jones    rosalyn_kuhn@rohan.co    \N    Zimbabwe    Lake Elroy    4588 Bogan Valleys    84955-2588    Iowa    2016-09-29 03:37:58.166761    2016-10-14 13:03:18.252911        \N    \N    \N    0    \N    \N    \N    \N    male
14643    Bradley    Johnson    sonya@mclaughlin.com    \N    Brunei Darussalam    East Kylie    220 Leuschke Flats    90299    Alabama    2016-09-18 14:27:09.047084    2016-10-14 13:03:18.259643        \N    \N    \N    0    \N    \N    \N    \N    female
14948    Cole    Waelchi    dino@jacobi.io    \N    Chile    Jacobsbury    931 Bernice Pine    53097    Minnesota    2016-08-23 01:08:25.493841    2016-10-14 13:03:18.264019        \N    \N    \N    0    \N    \N    \N    \N    female
16221    Verda    Smitham    anthony_gislason@lemke.net    \N    Cyprus    New Demario    57436 Lind Flats    50246    Indiana    2016-08-30 06:01:21.908176    2016-10-14 13:03:18.269264        \N    \N    \N    0    \N    \N    \N    \N    male
16934    Sherman    Will    devonte@bradtke.info    \N    Slovenia    Georgiannashire    93289 Makayla Meadows    49811    Florida    2016-07-25 06:06:00.819324    2016-10-14 13:03:18.274441        \N    \N    \N    0    \N    \N    \N    \N    female
19075    Deanna    Kunze    gayle@okuneva.co    \N    Canada    East Malinda    803 Fay Track    26071    Washington    2016-07-19 20:42:17.158444    2016-10-14 13:03:18.283854        \N    \N    \N    0    \N    \N    \N    \N    male
19220    Mabel    Lebsack    darren@lubowitz.co    \N    Niue    Hesselton    3470 Ernser Run    82287    Texas    2016-09-23 23:32:52.094866    2016-10-14 13:03:18.289753        \N    \N    \N    0    \N    \N    \N    \N    male
19997    Meta    Baumbach    lexus.wilkinson@jaskolskibalistreri.info    \N    Cook Islands    Imogeneview    7003 Prosacco Square    70481-3366    Arizona    2016-06-23 21:44:59.527356    2016-10-14 13:03:18.29691        \N    \N    \N    0    \N    \N    \N    \N    male
19998    Hilbert    Weber    greta@blickcorkery.com    \N    Swaziland    South Bonitashire    528 Jamar Canyon    56513    Montana    2016-07-04 07:18:18.570269    2016-10-14 13:03:18.302689        \N    \N    \N    0    \N    \N    \N    \N    female
19999    Rosa    Runte    declan@kub.biz    \N    El Salvador    Lennaborough    82403 Baumbach Center    79758    Kansas    2016-07-17 22:19:55.11123    2016-10-14 13:03:18.307928        \N    \N    \N    0    \N    \N    \N    \N    female
20000    Diego    Davis    kathlyn_schamberger@bauch.org    \N    Saint Barthelemy    West Helenashire    3909 Bette Causeway    62769-7269    Virginia    2016-09-22 18:50:38.099545    2016-10-14 13:03:18.312915        \N    \N    \N    0    \N    \N    \N    \N    female
10001    Alysha    Goyette    elisabeth@predovic.biz    \N    Qatar    South Brandonburgh    608 Dallas Estate    76092-4022    Nevada    2016-09-16 03:43:59.295306    2016-10-14 13:03:18.317853        \N    \N    \N    0    \N    \N    \N    \N    female
10003    Tianna    Sawayn    merlin_lesch@gerlach.net    \N    Dominica    Lake Toyville    45468 Rachel Tunnel    58607    Utah    2016-07-07 13:22:57.786782    2016-10-14 13:03:18.322773        \N    \N    \N    0    \N    \N    \N    \N    female
10015    Floyd    Torphy    maude.bergstrom@stiedemannwintheiser.info    \N    Cambodia    Brownfurt    2067 Destiney Hills    28039-4520    North Dakota    2016-07-19 06:51:29.408965    2016-10-14 13:03:18.327118        \N    \N    \N    0    \N    \N    \N    \N    male
10029    Maximillian    Stanton    cora.dooley@treutel.info    \N    Sierra Leone    Port Clare    62906 Vern Inlet    17677-9503    Massachusetts    2016-08-16 23:41:02.123735    2016-10-14 13:03:18.331126        \N    \N    \N    0    \N    \N    \N    \N    female
10044    Wilbert    Schultz    madeline_marks@glovercummerata.net    \N    Uganda    East Shana    1929 Mekhi Canyon    31962    South Dakota    2016-06-26 12:44:59.184561    2016-10-14 13:03:18.335036        \N    \N    \N    0    \N    \N    \N    \N    female
10046    Jovan    Wolff    darien@brakus.biz    \N    Switzerland    East Aletha    5092 Greenholt Forest    14620    Wyoming    2016-09-24 01:27:48.797074    2016-10-14 13:03:18.338981        \N    \N    \N    0    \N    \N    \N    \N    male
10047    Orrin    Hudson    camila@danielthiel.biz    \N    Brazil    Lake Sanfordhaven    6347 Wintheiser Ford    93221-3964    New Hampshire    2016-08-28 15:43:23.404266    2016-10-14 13:03:18.342716        \N    \N    \N    0    \N    \N    \N    \N    female
10060    Brooke    Hammes    angus.kirlin@wilkinson.io    \N    Pitcairn Islands    Schulistmouth    7912 Roberts Road    18116-9739    Pennsylvania    2016-06-24 05:10:27.850628    2016-10-14 13:03:18.346662        \N    \N    \N    0    \N    \N    \N    \N    male
10074    Elvis    Schuppe    merl.torp@effertzharris.io    \N    Grenada    McDermottside    92070 Sandy Courts    24950    Illinois    2016-07-14 08:20:48.669249    2016-10-14 13:03:18.350502        \N    \N    \N    0    \N    \N    \N    \N    female
10087    Sally    Goodwin    oswald@danielhuel.org    \N    French Guiana    Ruthborough    21812 Danyka Branch    68876    Maryland    2016-08-20 17:50:48.034363    2016-10-14 13:03:18.355801        \N    \N    \N    0    \N    \N    \N    \N    female
10091    Nels    Bogan    fredrick_crona@breitenberg.com    \N    United Kingdom    Lake Brandtmouth    9681 Bradtke Bypass    39322    Georgia    2016-08-02 15:04:46.293381    2016-10-14 13:03:18.362267        \N    \N    \N    0    \N    \N    \N    \N    female
10093    D'angelo    Miller    hortense.brakus@white.co    \N    Reunion    Myriammouth    36566 Katarina Isle    86579    South Carolina    2016-09-17 00:19:47.773823    2016-10-14 13:03:18.366967        \N    \N    \N    0    \N    \N    \N    \N    female
\.


--
-- Data for Name: genres; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.genres (id, genre) FROM stdin;
1    Horror
2    Reality-TV
3    Sport
4    Action
5    Mystery
6    Thriller
7    News
8    Family
9    Comedy
10    Film-Noir
11    Adventure
12    Talk-Show
13    Crime
14    History
15    Documentary
16    Romance
17    Drama
18    Fantasy
19    Music
20    Western
21    Musical
22    Sci-Fi
23    Animation
24    Biography
25    War
26    Game-Show
\.


--
-- Data for Name: genres_movies; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.genres_movies (movie_id, genre_id) FROM stdin;
463    13
463    17
464    13
464    17
465    13
465    17
466    4
466    13
466    17
467    24
467    17
467    14
468    13
468    17
469    13
469    17
470    11
470    17
470    18
471    20
472    17
473    11
473    17
473    18
474    4
474    11
474    18
475    17
475    16
476    4
476    5
476    22
477    4
477    11
477    17
478    17
479    24
479    13
479    17
480    4
480    22
481    17
482    4
482    11
482    18
483    13
483    17
484    13
484    17
484    5
485    13
485    17
485    6
486    17
486    8
486    18
487    13
487    17
487    5
488    9
488    17
488    16
489    13
489    17
489    6
490    20
491    23
491    11
491    8
492    4
492    17
492    25
493    17
493    22
494    13
494    17
495    17
495    16
495    25
496    9
496    17
496    16
497    1
497    5
497    6
498    4
498    11
499    5
499    6
500    24
500    9
500    17
501    9
501    17
502    13
502    17
502    18
503    4
503    22
504    24
504    17
504    25
505    13
505    17
505    6
506    11
506    9
506    22
507    17
507    19
508    4
508    17
509    5
509    6
510    17
510    25
511    17
511    5
511    22
512    9
513    23
513    11
513    17
514    17
514    10
515    1
515    22
516    9
516    17
516    25
517    17
517    6
518    17
519    17
519    20
520    17
520    1
521    17
521    25
522    23
522    17
522    25
523    23
523    11
523    8
524    4
524    6
525    17
526    4
526    1
526    22
527    23
527    11
527    18
528    17
528    5
528    6
529    17
529    5
530    11
530    13
530    5
531    13
531    17
532    11
532    17
532    6
533    5
533    16
533    6
534    4
534    11
534    18
535    17
535    5
536    13
536    6
537    9
537    16
538    24
538    17
538    14
539    17
540    13
540    17
540    22
541    13
541    17
542    23
542    11
542    9
543    13
543    17
543    10
544    13
544    17
545    11
545    24
545    17
546    17
546    16
546    22
547    17
547    25
548    24
548    17
548    14
549    9
549    13
549    17
550    5
550    22
551    17
552    9
552    21
552    16
553    9
553    13
554    23
554    11
554    9
555    11
555    9
555    18
556    11
556    17
556    25
557    9
557    17
557    8
558    13
558    17
558    5
559    20
560    13
560    17
561    9
561    17
561    16
562    4
562    11
562    18
563    13
563    17
564    17
564    5
565    17
566    17
566    22
567    9
567    17
568    4
568    11
568    17
569    4
569    11
570    9
570    16
571    17
572    9
572    17
573    20
574    10
574    5
574    6
575    23
575    11
575    9
576    17
577    23
577    9
578    24
578    17
578    3
579    24
579    17
579    14
580    4
580    6
581    17
581    5
581    6
582    4
582    18
583    17
584    11
584    17
584    14
585    4
585    13
585    17
586    13
586    17
586    16
587    17
587    18
587    25
588    4
588    9
589    23
589    8
589    18
590    11
590    24
590    17
592    9
592    17
593    17
594    4
594    17
594    25
595    11
595    17
595    25
596    11
596    9
596    17
597    17
597    16
598    17
598    18
599    17
599    5
599    6
600    22
600    6
601    9
601    13
602    17
602    16
603    4
603    11
603    9
604    23
604    11
604    8
605    24
605    13
605    17
606    24
606    17
607    17
607    3
608    24
608    9
608    13
609    4
609    17
609    6
610    17
610    14
610    25
611    24
611    17
612    17
613    9
613    13
614    17
614    5
614    25
615    17
615    25
616    17
616    10
616    5
617    17
617    14
617    16
618    13
618    17
618    6
619    17
620    13
620    17
621    23
621    4
621    11
622    13
622    10
622    6
623    17
623    5
623    6
624    23
624    11
624    9
625    11
625    24
625    17
626    1
626    22
627    13
627    17
627    6
628    23
628    9
628    17
629    9
629    16
630    13
630    17
630    5
631    4
632    4
632    24
632    17
633    9
634    17
634    14
634    25
635    17
636    13
636    17
636    10
637    17
637    25
638    4
638    22
639    24
639    17
639    14
640    11
640    17
640    6
641    17
642    24
642    13
642    17
643    17
643    6
644    13
644    17
645    11
645    17
646    5
646    6
647    24
647    17
647    14
648    17
648    6
649    24
649    17
649    14
650    9
650    17
651    17
651    6
652    11
652    9
652    8
653    17
653    3
654    13
654    10
654    6
655    11
655    17
655    25
656    9
656    17
656    6
657    9
657    16
658    17
659    17
659    8
660    23
660    11
660    18
661    17
661    5
661    22
662    11
662    22
662    6
663    17
663    1
663    5
664    24
664    17
664    14
665    4
665    6
666    17
666    18
667    17
667    16
668    17
668    22
668    6
669    11
669    8
669    18
670    13
670    17
670    5
671    17
671    3
672    17
673    17
673    16
673    25
674    4
674    22
675    13
675    6
676    5
676    22
676    6
677    23
677    11
677    9
678    17
678    18
679    13
679    10
679    6
680    9
680    18
680    16
681    13
681    5
681    6
682    11
682    17
682    6
683    13
683    17
684    17
684    25
685    11
685    17
685    14
686    22
687    13
687    17
687    5
688    13
688    17
689    17
690    4
690    24
690    17
691    24
691    17
691    6
692    4
692    22
693    4
693    11
693    18
694    24
694    17
694    14
695    17
696    4
696    17
696    20
697    4
697    22
698    24
698    13
698    17
699    17
700    23
700    11
700    8
701    9
701    16
702    20
703    17
703    25
704    23
704    8
704    18
705    17
705    16
706    17
706    10
706    16
707    17
708    17
708    16
709    23
709    4
709    22
710    17
711    9
711    17
712    4
712    17
712    14
713    15
714    13
714    17
714    16
715    17
715    18
716    13
716    17
716    6
717    15
718    15
719    23
719    9
720    15
720    14
720    25
721    13
721    17
722    13
722    17
722    5
723    15
723    14
723    25
724    9
724    13
724    17
725    23
725    4
725    11
726    9
726    7
726    12
727    13
727    17
727    5
728    11
728    17
728    22
729    17
730    15
731    17
731    18
731    1
732    15
733    23
733    4
733    11
734    9
734    17
735    9
736    4
736    9
737    13
737    17
737    6
738    15
739    23
739    4
739    11
740    17
740    16
741    23
741    4
741    11
742    23
742    13
742    17
743    9
744    17
745    9
745    19
746    11
746    17
746    6
747    23
747    9
749    13
749    17
749    5
750    15
750    13
751    17
751    14
752    9
753    9
753    16
754    9
754    17
755    9
756    4
756    17
756    14
757    9
757    25
758    23
758    9
759    9
760    23
760    4
760    17
761    15
762    13
762    17
762    6
763    9
763    12
764    23
764    4
765    4
765    17
765    14
766    15
766    9
767    23
767    4
767    11
768    15
768    11
769    23
769    9
770    4
770    13
770    6
771    23
771    4
771    9
772    11
772    9
772    17
773    23
773    9
774    17
774    22
774    6
775    17
775    5
776    23
776    4
777    13
777    17
778    9
778    7
778    12
779    23
779    4
779    11
780    17
781    9
782    9
782    19
783    13
783    17
783    14
784    13
784    17
784    5
785    23
785    9
785    17
786    13
786    17
786    5
787    9
788    11
788    17
788    20
789    13
789    17
789    6
790    17
791    4
791    11
791    17
792    17
792    5
792    22
793    9
794    9
795    23
795    4
795    11
796    9
796    26
797    13
797    17
798    13
798    17
798    6
799    23
799    4
799    11
800    11
800    17
800    8
801    15
802    9
803    9
804    9
805    9
805    22
806    4
806    9
806    18
807    9
808    23
808    4
808    11
809    17
809    16
810    23
810    4
810    11
811    9
811    2
812    9
812    17
813    17
813    25
814    4
814    11
814    17
815    23
815    11
815    9
816    9
816    17
817    4
817    11
817    5
818    17
819    9
820    24
820    17
820    14
821    9
821    21
821    22
822    17
823    23
823    4
823    11
824    9
824    19
825    9
826    9
826    7
826    12
827    9
828    23
828    4
828    11
829    4
829    11
830    9
831    23
831    9
832    4
832    17
832    3
833    4
833    13
833    17
834    4
834    11
834    24
835    24
835    13
835    17
836    13
836    17
836    5
837    9
838    13
838    17
838    14
839    23
839    4
839    11
840    13
840    17
840    5
841    23
841    4
841    11
842    17
842    5
842    22
843    9
843    26
844    8
845    23
845    4
845    17
846    9
847    9
847    17
848    9
849    23
849    4
849    11
851    23
851    4
852    17
853    13
853    5
853    6
854    23
854    9
854    22
855    23
855    4
855    11
856    13
856    17
856    5
857    17
857    5
857    13
858    9
859    24
859    17
859    14
860    9
861    4
861    17
861    14
862    9
863    23
863    9
863    22
864    9
864    8
865    13
865    17
865    6
866    4
866    11
866    24
867    13
867    17
868    23
868    4
868    13
869    13
869    17
869    6
870    9
871    23
871    17
871    18
872    9
873    17
874    17
874    18
874    5
875    9
876    13
876    17
876    5
877    9
877    13
878    9
878    16
879    23
879    1
879    22
880    4
880    11
880    22
881    9
882    9
882    17
883    9
883    17
884    17
884    1
884    6
885    9
885    8
885    19
886    9
887    13
887    17
888    23
888    4
888    11
889    5
889    22
889    6
890    9
891    17
892    13
892    17
892    5
893    13
893    17
893    5
894    13
894    17
895    17
895    5
895    22
896    17
896    14
896    25
897    9
897    12
898    9
899    11
899    17
899    8
900    9
900    17
900    8
901    17
901    14
901    25
902    17
903    4
903    17
903    5
904    9
904    17
904    16
905    23
905    4
905    9
906    9
906    13
906    17
907    9
907    22
908    4
908    17
908    6
909    23
909    4
909    18
910    17
910    18
910    1
911    13
911    17
911    5
912    9
912    1
913    17
914    13
914    17
915    9
915    8
916    9
917    9
918    23
918    4
918    11
919    9
919    17
920    13
920    17
920    6
921    23
921    4
921    11
922    9
922    17
922    25
923    11
923    17
923    18
924    9
924    13
924    17
925    17
925    5
925    22
926    4
926    13
926    17
927    17
927    16
928    9
928    8
929    9
929    17
930    4
930    17
930    5
931    9
932    4
932    17
932    5
933    9
933    17
933    18
934    23
934    4
934    11
935    23
935    4
935    9
936    4
936    11
936    17
937    4
937    11
937    22
938    17
939    4
939    22
939    20
940    17
940    8
941    17
942    9
942    17
943    9
944    13
944    17
944    5
945    23
945    4
945    11
947    23
947    4
947    11
948    23
948    9
948    8
949    17
950    13
950    17
950    5
951    17
953    9
953    3
954    4
954    13
954    17
955    13
955    17
955    5
956    13
956    17
956    5
957    15
957    5
958    23
958    4
958    8
959    4
959    17
959    5
960    4
960    17
960    22
961    4
961    11
961    22
789    19
888    9
608    15
850    26
\.


--
-- Data for Name: movies; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.movies (id, imdb_id, title, year, runtime, released, director, writer, imdb_rating, imdb_votes, short_plot, full_plot, language, country, awards, created_at, updated_at, price, poster_file_name, poster_content_type, poster_file_size, poster_updated_at) FROM stdin;
767    tt0214341    Dragon Ball Z    1996–2003    24 min    1996-09-13    {N/A}    {N/A}    8.80000000000000071    72    \N    In the version that is shown on YTV in Canada, the story begins mid-way through the Dragon Ball Z series. Raditz, Goku's brother has traveled to Earth to find out why Goku has not yet destroyed the planet as he was supposed to do. But while as a baby, Goku was dropped (down a huge cliff) and forgot his real mission. Kakarot, Goku's real name battles his brother Raditzs along with former enemy Piccolo and friend Krillin. Meanwhile, Gohan; Goku's son reveals his hidden powers against Raditz and nearly kills Raditz. However Goku is killed in the end, but Raditz is eventually defeated by Piccolo. Before he dies, he tells them that two evil Saiyans even more powerful then he is, are on route to Earth. The remaining fighters, Krillin, Yamcha, Tien, and Chiaotzu begin their training to battle the evil Saiyans, while Piccolo takes off with Gohan to train him in using his new found power. Meanwhile, Goku has to make his way back on Snake Way to King Kai's where he trains himself in the secret art of Kaio-ken.    Japanese, English    USA, Canada    N/A    2016-04-20 14:32:37.92367    2016-04-28 12:06:29.468548    1.53    MV5BMTM1NTY1MTcxNF5BMl5BanBnXkFtZTcwNzE3MjMyMQ__._V1._CR10_7_274_430_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4058    2016-04-28 12:06:29.320853
468    tt0050083    12 Angry Men    1957    96 min    1957-04-01    {"Sidney Lumet"}    {"Reginald Rose (story)","Reginald Rose (screenplay)"}    8.90000000000000036    431    \N    The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young man is guilty or innocent of murdering his father. What begins as an open-and-shut case of murder soon becomes a detective story that presents a succession of clues creating doubt, and a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other. Based on the play, all of the action takes place on the stage of the jury room.    English    USA    Nominated for 3 Oscars. Another 16 wins & 8 nominations.    2016-04-20 14:31:58.232565    2016-04-28 12:06:30.527097    1.34    MV5BODQwOTc5MDM2N15BMl5BanBnXkFtZTcwODQxNTEzNA__._V1_SX300.jpg    image/jpeg    33211    2016-04-28 12:06:30.317896
469    tt0110912    Pulp Fiction    1994    154 min    1994-10-14    {"Quentin Tarantino"}    {"Quentin Tarantino (story)","Roger Avary (story)","Quentin Tarantino"}    8.90000000000000036    1    \N    Jules Winnfield and Vincent Vega are two hitmen who are out to retrieve a suitcase stolen from their employer, mob boss Marsellus Wallace. Wallace has also asked Vincent to take his wife Mia out a few days later when Wallace himself will be out of town. Butch Coolidge is an aging boxer who is paid by Wallace to lose his next fight. The lives of these seemingly unrelated people are woven together comprising of a series of funny, bizarre and uncalled-for incidents.    English, Spanish, French    USA    Won 1 Oscar. Another 54 wins & 60 nominations.    2016-04-20 14:31:58.271865    2016-04-28 12:06:31.322144    1.3    MV5BMTkxMTA5OTAzMl5BMl5BanBnXkFtZTgwNjA5MDc3NjE_._V1_SX300.jpg    image/jpeg    52930    2016-04-28 12:06:31.10947
475    tt0109830    Forrest Gump    1994    142 min    1994-07-06    {"Robert Zemeckis"}    {"Winston Groom (novel)","Eric Roth (screenplay)"}    8.80000000000000071    1    \N    Forrest Gump is a simple man with a low I.Q. but good intentions. He is running through childhood with his best and only friend Jenny. His 'mama' teaches him the ways of life and leaves him to choose his destiny. Forrest joins the army for service in Vietnam, finding new friends called Dan and Bubba, he wins medals, creates a famous shrimp fishing fleet, inspires people to jog, starts a ping-pong craze, creates the smiley, writes bumper stickers and songs, donates to people and meets the president several times. However, this is all irrelevant to Forrest who can only think of his childhood sweetheart Jenny Curran, who has messed up her life. Although in the end all he wants to prove is that anyone can love anyone.    English    USA    Won 6 Oscars. Another 37 wins & 51 nominations.    2016-04-20 14:31:58.510027    2016-04-28 12:06:36.341909    2.02    MV5BMTI1Nzk1MzQwMV5BMl5BanBnXkFtZTYwODkxOTA5._V1_SX300.jpg    image/jpeg    20205    2016-04-28 12:06:36.128732
737    tt0116282    Fargo    1996    98 min    1996-04-05    {"Joel Coen","Ethan Coen"}    {"Ethan Coen","Joel Coen"}    8.19999999999999929    439    \N    Jerry Lundegaard's inept crime falls apart due to his and his henchmen's bungling and the persistent police work of the quite pregnant Marge Gunderson.    English    USA, UK    Won 2 Oscars. Another 73 wins & 52 nominations.    2016-04-20 14:32:21.495661    2016-04-28 12:06:37.797748    3.51    MV5BMTgxNzY3MzUxOV5BMl5BanBnXkFtZTcwMDA0NjMyNA__._V1_SX300.jpg    image/jpeg    56090    2016-04-28 12:06:37.581755
476    tt1375666    Inception    2010    148 min    2010-07-16    {"Christopher Nolan"}    {"Christopher Nolan"}    8.80000000000000071    1    \N    Dom Cobb is a skilled thief, the absolute best in the dangerous art of extraction, stealing valuable secrets from deep within the subconscious during the dream state, when the mind is at its most vulnerable. Cobb's rare ability has made him a coveted player in this treacherous new world of corporate espionage, but it has also made him an international fugitive and cost him everything he has ever loved. Now Cobb is being offered a chance at redemption. One last job could give him his life back but only if he can accomplish the impossible - inception. Instead of the perfect heist, Cobb and his team of specialists have to pull off the reverse: their task is not to steal an idea but to plant one. If they succeed, it could be the perfect crime. But no amount of careful planning or expertise can prepare the team for the dangerous enemy that seems to predict their every move. An enemy that only Cobb could have seen coming.    English, Japanese, French    USA, UK    Won 4 Oscars. Another 139 wins & 192 nominations.    2016-04-20 14:31:58.555702    2016-04-28 12:06:38.683823    4.77    MV5BMjAxMzY3NjcxNF5BMl5BanBnXkFtZTcwNTI5OTM0Mw__._V1_SX300.jpg    image/jpeg    46246    2016-04-28 12:06:38.490949
477    tt0167261    The Lord of the Rings: The Two Towers    2002    179 min    2002-12-18    {"Peter Jackson"}    {"J.R.R. Tolkien (novel)","Fran Walsh (screenplay)","Philippa Boyens (screenplay)","Stephen Sinclair (screenplay)","Peter Jackson (screenplay)"}    8.69999999999999929    1    \N    While Frodo and Sam, now accompanied by a new guide, continue their hopeless journey towards the land of shadow to destroy the One Ring, each member of the broken fellowship plays their part in the battle against the evil wizard Saruman and his armies of Isengard.    English, Sindarin, Old English    USA, New Zealand    Won 2 Oscars. Another 114 wins & 126 nominations.    2016-04-20 14:31:58.594325    2016-04-28 12:06:39.418425    2.23    MV5BMTAyNDU0NjY4NTheQTJeQWpwZ15BbWU2MDk4MTY2Nw__._V1_SX300.jpg    image/jpeg    33446    2016-04-28 12:06:39.234452
773    tt1865718    Gravity Falls    2012–2016    23 min    2012-06-15    {N/A}    {"Alex Hirsch"}    8.90000000000000036    19    \N    A pair of twin siblings spending the summer at their Great Uncle's tourist trap must unlock the secrets surrounding the enigmatic town of Gravity Falls, Oregon.    English    USA    Won 2 Primetime Emmys. Another 8 wins & 27 nominations.    2016-04-20 14:32:40.353725    2016-04-28 12:05:57.453993    3.21    MV5BMTEzNDc3MDQ2NzNeQTJeQWpwZ15BbWU4MDYzMzUwMDIx._V1_SX300.jpg    image/jpeg    49374    2016-04-28 12:05:57.228541
517    tt0405094    The Lives of Others    2006    137 min    2007-03-30    {"Florian Henckel von Donnersmarck"}    {"Florian Henckel von Donnersmarck"}    8.5    251    \N    In 1984 East Berlin, an agent of the secret police, conducting surveillance on a writer and his lover, finds himself becoming increasingly absorbed by their lives.    German    Germany    Won 1 Oscar. Another 75 wins & 32 nominations.    2016-04-20 14:32:00.305675    2016-04-28 12:07:02.19733    2.2    MV5BNDUzNjYwNDYyNl5BMl5BanBnXkFtZTcwNjU3ODQ0MQ__._V1_SX300.jpg    image/jpeg    38075    2016-04-28 12:07:02.003315
478    tt0073486    One Flew Over the Cuckoo's Nest    1975    133 min    1975-11-21    {"Milos Forman"}    {"Lawrence Hauben (screenplay)","Bo Goldman (screenplay)","Ken Kesey (based on the novel by)","Dale Wasserman (the play version: \\"One Flew Over the Cuckoo's Nest\\" by)"}    8.69999999999999929    658    \N    McMurphy has a criminal past and has once again gotten himself into trouble and is sentenced by the court. To escape labor duties in prison, McMurphy pleads insanity and is sent to a ward for the mentally unstable. Once here, McMurphy both endures and stands witness to the abuse and degradation of the oppressive Nurse Ratched, who gains superiority and power through the flaws of the other inmates. McMurphy and the other inmates band together to make a rebellious stance against the atrocious Nurse.    English    USA    Won 5 Oscars. Another 30 wins & 13 nominations.    2016-04-20 14:31:58.637502    2016-04-28 12:06:40.280925    1.95    MV5BMTk5OTA4NTc0NF5BMl5BanBnXkFtZTcwNzI5Mzg3OA__._V1_SX300.jpg    image/jpeg    29584    2016-04-28 12:06:40.093651
481    tt0047478    Seven Samurai    1954    207 min    1956-11-19    {"Akira Kurosawa"}    {"Akira Kurosawa (screenplay)","Shinobu Hashimoto (screenplay)","Hideo Oguni (screenplay)"}    8.69999999999999929    222    \N    A veteran samurai, who has fallen on hard times, answers a village's request for protection from bandits. He gathers 6 other samurai to help him, and they teach the townspeople how to defend themselves, and they supply the samurai with three small meals a day. The film culminates in a giant battle when 40 bandits attack the village.    Japanese    Japan    Nominated for 2 Oscars. Another 5 wins & 6 nominations.    2016-04-20 14:31:58.779743    2016-04-28 12:06:40.939303    1.88    MV5BMTc5MDY1MjU5MF5BMl5BanBnXkFtZTgwNDM2OTE4MzE_._V1_SX300.jpg    image/jpeg    62290    2016-04-28 12:06:40.750584
482    tt0076759    Star Wars: Episode IV - A New Hope    1977    121 min    1977-05-25    {"George Lucas"}    {"George Lucas"}    8.69999999999999929    875    \N    A young boy from Tatooine sets out on an adventure with an old Jedi named Obi-Wan Kenobi as his mentor to save Princess Leia from the ruthless Darth Vader and Destroy the Death Star built by the Empire which has the power to destroy the entire galaxy.    English    USA    Won 6 Oscars. Another 38 wins & 28 nominations.    2016-04-20 14:31:58.828072    2016-04-28 12:06:41.764251    4.33    MV5BOTIyMDY2NGQtOGJjNi00OTk4LWFhMDgtYmE3M2NiYzM0YTVmXkEyXkFqcGdeQXVyNTU1NTcwOTk_._V1_SX300.jpg    image/jpeg    51575    2016-04-28 12:06:41.551708
483    tt0317248    City of God    2002    130 min    2004-02-13    {"Fernando Meirelles","Kátia Lund"}    {"Paulo Lins (novel)","Bráulio Mantovani (screenplay)"}    8.69999999999999929    518    \N    Brazil, 1960s, City of God. The Tender Trio robs motels and gas trucks. Younger kids watch and learn well...too well. 1970s: Li'l Zé has prospered very well and owns the city. He causes violence and fear as he wipes out rival gangs without mercy. His best friend Bené is the only one to keep him on the good side of sanity. Rocket has watched these two gain power for years, and he wants no part of it. Yet he keeps getting swept up in the madness. All he wants to do is take pictures. 1980s: Things are out of control between the last two remaining gangs...will it ever end? Welcome to the City of God.    Portuguese    Brazil, France    Nominated for 4 Oscars. Another 65 wins & 37 nominations.    2016-04-20 14:31:58.867896    2016-04-28 12:06:42.535954    2.76    MV5BMjA4ODQ3ODkzNV5BMl5BanBnXkFtZTYwOTc4NDI3._V1_SX300.jpg    image/jpeg    40867    2016-04-28 12:06:42.334354
485    tt0102926    The Silence of the Lambs    1991    118 min    1991-02-14    {"Jonathan Demme"}    {"Thomas Harris (novel)","Ted Tally (screenplay)"}    8.59999999999999964    857    \N    Young FBI agent Clarice Starling is assigned to help find a missing woman to save her from a psychopathic serial killer who skins his victims. Clarice attempts to gain a better insight into the twisted mind of the killer by talking to another psychopath: Hannibal Lecter, who used to be a respected psychiatrist. FBI agent Jack Crawford believes that Lecter, who is also a very powerful and clever mind manipulator, has the answers to their questions and can help locate the killer. However, Clarice must first gain Lecter's confidence before the inmate will give away any information.    English    USA    Won 5 Oscars. Another 48 wins & 34 nominations.    2016-04-20 14:31:58.948674    2016-04-28 12:06:43.318042    3.09    MV5BMTQ2NzkzMDI4OF5BMl5BanBnXkFtZTcwMDA0NzE1NA__._V1_SX300.jpg    image/jpeg    25580    2016-04-28 12:06:43.130408
488    tt0118799    Life Is Beautiful    1997    116 min    1999-02-12    {"Roberto Benigni"}    {"Vincenzo Cerami (story)","Roberto Benigni (story)"}    8.59999999999999964    400    \N    In 1930s Italy, a carefree Jewish book keeper named Guido starts a fairy tale life by courting and marrying a lovely woman from a nearby city. Guido and his wife have a son and live happily together until the occupation of Italy by German forces. In an attempt to hold his family together and help his son survive the horrors of a Jewish Concentration Camp, Guido imagines that the Holocaust is a game and that the grand prize for winning is a tank.    Italian, German, English    Italy    Won 3 Oscars. Another 61 wins & 43 nominations.    2016-04-20 14:31:59.073193    2016-04-28 12:06:44.009529    3.93    MV5BMTQwMTM2MjE4Ml5BMl5BanBnXkFtZTgwODQ2NTYxMTE_._V1_SX300.jpg    image/jpeg    42201    2016-04-28 12:06:43.814342
489    tt0110413    Léon: The Professional    1994    110 min    1994-11-18    {"Luc Besson"}    {"Luc Besson"}    8.59999999999999964    701    \N    After her father, mother, older sister and little brother are killed by her father's employers, the 12-year-old daughter of an abject drug dealer is forced to take refuge in the apartment of a professional hitman who at her request teaches her the methods of his job so she can take her revenge on the corrupt DEA agent who ruined her life by killing her beloved brother.    English, Italian, French    France    3 wins & 8 nominations.    2016-04-20 14:31:59.111396    2016-04-28 12:06:44.888805    4.47    MV5BMTgzMzg4MDkwNF5BMl5BanBnXkFtZTcwODAwNDg3OA__._V1_SX300.jpg    image/jpeg    21749    2016-04-28 12:06:44.689028
741    tt0213338    Cowboy Bebop    1998–2003    24 min    2001-09-02    {N/A}    {"Hajime Yatate"}    9    49    \N    The futuristic misadventures and tragedies of an easygoing bounty hunter and his partners.    Japanese    Japan    N/A    2016-04-20 14:32:23.729214    2016-04-28 12:09:13.562059    1.9    MV5BMjE2NzkzMTc3M15BMl5BanBnXkFtZTYwNjU0MzE5._V1_SX300.jpg    image/jpeg    33417    2016-04-28 12:09:13.352445
490    tt0064116    Once Upon a Time in the West    1968    175 min    1968-12-21    {"Sergio Leone"}    {"Sergio Donati (screenplay)","Sergio Leone (screenplay)","Dario Argento (from a story by)","Bernardo Bertolucci (from a story by)","Sergio Leone (from a story by)"}    8.59999999999999964    208    \N    Story of a young woman, Mrs. McBain, who moves from New Orleans to frontier Utah, on the very edge of the American West. She arrives to find her new husband and family slaughtered, but by whom? The prime suspect, coffee-lover Cheyenne, befriends her and offers to go after the real killer, assassin gang leader Frank, in her honor. He is accompanied by Harmonica, a man already on a quest to get even.    English, Spanish, Italian    Italy, USA, Spain    4 wins & 5 nominations.    2016-04-20 14:31:59.151927    2016-04-28 12:06:45.491611    4.32    MV5BMTEyODQzNDkzNjVeQTJeQWpwZ15BbWU4MDgyODk1NDEx._V1_SX300.jpg    image/jpeg    39043    2016-04-28 12:06:45.300148
882    tt1831164    Leyla and Mecnun    2011–2013    80 min    2011-02-01    {N/A}    {N/A}    9.19999999999999929    66    \N    Turkish television comedy series set in Istanbul, Leyla and Mecnun is a surreal and absurd comedy that revolves around the fictional love story between Leyla and Mecnun.    Turkish    Turkey    N/A    2016-04-20 14:33:33.161557    2016-04-28 12:07:10.656671    3.43    MV5BMzE1YjMzZGItZTkwOS00ZmY3LWEzYmMtODM0OWVhNGU2MDkxXkEyXkFqcGdeQXVyNTY3OTUwODg_._V1_SX300.jpg    image/jpeg    39441    2016-04-28 12:07:10.448987
491    tt0245429    Spirited Away    2001    125 min    2003-03-28    {"Hayao Miyazaki"}    {"Hayao Miyazaki"}    8.59999999999999964    401    \N    Chihiro and her parents are moving to a small Japanese town in the countryside, much to Chihiro's dismay. On the way to their new home, Chihiro's father makes a wrong turn and drives down a lonely one-lane road which dead-ends in front of a tunnel. Her parents decide to stop the car and explore the area. They go through the tunnel and find an abandoned amusement park on the other side, with its own little town. When her parents see a restaurant with great-smelling food but no staff, they decide to eat and pay later. However, Chihiro refuses to eat and decides to explore the theme park a bit more. She meets a boy named Haku who tells her that Chihiro and her parents are in danger, and they must leave immediately. She runs to the restaurant and finds that her parents have turned into pigs. In addition, the theme park turns out to be a town inhabited by demons, spirits, and evil gods. At the center of the town is a bathhouse where these creatures go to relax. The owner of the bathhouse is the evil witch Yubaba, who is intent on keeping all trespassers as captive workers, including Chihiro. Chihiro must rely on Haku to save her parents in hopes of returning to their world.    Japanese    Japan    Won 1 Oscar. Another 53 wins & 24 nominations.    2016-04-20 14:31:59.20403    2016-04-28 12:06:46.182708    1.33    MV5BMjYxMDcyMzIzNl5BMl5BanBnXkFtZTYwNDg2MDU3._V1_SX300.jpg    image/jpeg    27847    2016-04-28 12:06:45.985648
830    tt1266020    Parks and Recreation    2009–2015    22 min    2009-04-09    {N/A}    {"Greg Daniels","Michael Schur"}    8.59999999999999964    115    \N    The absurd antics of an Indiana town's public officials as they pursue sundry projects to make their city a better place.    English    USA    Won 1 Golden Globe. Another 15 wins & 100 nominations.    2016-04-20 14:33:06.793982    2016-04-28 12:06:46.961613    1.8    MV5BMjA5MjUxNDgwNF5BMl5BanBnXkFtZTgwMDI5NjMwNDE_._V1_SX300.jpg    image/jpeg    37889    2016-04-28 12:06:46.71126
493    tt0816692    Interstellar    2014    169 min    2014-11-07    {"Christopher Nolan"}    {"Jonathan Nolan","Christopher Nolan"}    8.59999999999999964    864    \N    In the near future, Earth has been devastated by drought and famine, causing a scarcity in food and extreme changes in climate. When humanity is facing extinction, a mysterious rip in the space-time continuum is discovered, giving mankind the opportunity to widen its lifespan. A group of explorers must travel beyond our solar system in search of a planet that can sustain life. The crew of the Endurance are required to think bigger and go further than any human in history as they embark on an interstellar voyage into the unknown. Coop, the pilot of the Endurance, must decide between seeing his children again and the future of the human race.    English    USA, UK    Won 1 Oscar. Another 36 wins & 122 nominations.    2016-04-20 14:31:59.292985    2016-04-28 12:06:47.731091    3.57    MV5BMjIxNTU4MzY4MF5BMl5BanBnXkFtZTgwMzM4ODI3MjE_._V1_SX300.jpg    image/jpeg    48764    2016-04-28 12:06:47.537796
494    tt0120586    American History X    1998    119 min    1998-11-20    {"Tony Kaye"}    {"David McKenna"}    8.59999999999999964    760    \N    Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.    English    USA    Nominated for 1 Oscar. Another 4 wins & 13 nominations.    2016-04-20 14:31:59.334126    2016-04-28 12:06:48.507294    2.99    MV5BMjMzNDUwNTIyMF5BMl5BanBnXkFtZTcwNjMwNDg3OA__._V1_SX300.jpg    image/jpeg    28549    2016-04-28 12:06:48.30943
523    tt0910970    WALL·E    2008    98 min    2008-06-27    {"Andrew Stanton"}    {"Andrew Stanton (original story by)","Pete Docter (original story by)","Andrew Stanton (screenplay)","Jim Reardon (screenplay)"}    8.40000000000000036    691    \N    In a distant, but not so unrealistic, future where mankind has abandoned earth because it has become covered with trash from products sold by the powerful multi-national Buy N Large corporation, WALL-E, a garbage collecting robot has been left to clean up the mess. Mesmerized with trinkets of Earth's history and show tunes, WALL-E is alone on Earth except for a sprightly pet cockroach. One day, EVE, a sleek (and dangerous) reconnaissance robot, is sent to Earth to find proof that life is once again sustainable. WALL-E falls in love with EVE. WALL-E rescues EVE from a dust storm and shows her a living plant he found amongst the rubble. Consistent with her "directive", EVE takes the plant and automatically enters a deactivated state except for a blinking green beacon. WALL-E, doesn't understand what has happened to his new friend, but, true to his love, he protects her from wind, rain, and lightning, even as she is unresponsive. One day a massive ship comes to reclaim EVE, but WALL-E, out of love or loneliness, hitches a ride on the outside of the ship to rescue EVE. The ship arrives back at a large space cruise ship, which is carrying all of the humans who evacuated Earth 700 years earlier. The people of Earth ride around this space resort on hovering chairs which give them a constant feed of TV and video chatting. They drink all of their meals through a straw out of laziness and/or bone loss, and are all so fat that they can barely move. When the auto-pilot computer, acting on hastily-given instructions sent many centuries before, tries to prevent the people of Earth from returning by stealing the plant, WALL-E, EVE, the portly captain, and a band of broken robots stage a mutiny.    English    USA    Won 1 Oscar. Another 86 wins & 85 nominations.    2016-04-20 14:32:00.559277    2016-04-28 12:06:49.300568    4.85    MV5BMTczOTA3MzY2N15BMl5BanBnXkFtZTcwOTYwNjE2MQ__._V1_SX300.jpg    image/jpeg    34680    2016-04-28 12:06:49.121661
497    tt0054215    Psycho    1960    109 min    1960-09-08    {"Alfred Hitchcock"}    {"Joseph Stefano (screenplay)","Robert Bloch (novel)"}    8.5    408    \N    Phoenix officeworker Marion Crane is fed up with the way life has treated her. She has to meet her lover Sam in lunch breaks and they cannot get married because Sam has to give most of his money away in alimony. One Friday Marion is trusted to bank $40,000 by her employer. Seeing the opportunity to take the money and start a new life, Marion leaves town and heads towards Sam's California store. Tired after the long drive and caught in a storm, she gets off the main highway and pulls into The Bates Motel. The motel is managed by a quiet young man called Norman who seems to be dominated by his mother.    English    USA    Nominated for 4 Oscars. Another 4 wins & 9 nominations.    2016-04-20 14:31:59.479832    2016-04-28 12:06:51.625091    3.06    MV5BMTgzMzM3NDY0NF5BMl5BanBnXkFtZTgwNDgwNDgwNzE_._V1_SX300.jpg    image/jpeg    39495    2016-04-28 12:06:51.433452
509    tt0209144    Memento    2000    113 min    2001-05-25    {"Christopher Nolan"}    {"Christopher Nolan (screenplay)","Jonathan Nolan (short story \\"Memento Mori\\")"}    8.5    817    \N    Memento chronicles two separate stories of Leonard, an ex-insurance investigator who can no longer build new memories, as he attempts to find the murderer of his wife, which is the last thing he remembers. One story line moves forward in time while the other tells the story backwards revealing more each time.    English    USA    Nominated for 2 Oscars. Another 54 wins & 54 nominations.    2016-04-20 14:31:59.975129    2016-04-28 12:07:00.066439    3.2    MV5BMTc4MjUxNDAwN15BMl5BanBnXkFtZTcwMDMwNDg3OA__._V1_SX300.jpg    image/jpeg    29880    2016-04-28 12:06:59.881086
498    tt0082971    Raiders of the Lost Ark    1981    115 min    1981-06-12    {"Steven Spielberg"}    {"Lawrence Kasdan (screenplay)","George Lucas (story)","Philip Kaufman (story)"}    8.5    639    \N    The year is 1936. An archeology professor named Indiana Jones is venturing in the jungles of South America searching for a golden statue. Unfortunately, he sets off a deadly trap but miraculously escapes. Then, Jones hears from a museum curator named Marcus Brody about a biblical artifact called The Ark of the Covenant, which can hold the key to humanly existence. Jones has to venture to vast places such as Nepal and Egypt to find this artifact. However, he will have to fight his enemy Rene Belloq and a band of Nazis in order to reach it.    English, German, Hebrew, Spanish, Arabic, Nepali    USA    Won 4 Oscars. Another 29 wins & 23 nominations.    2016-04-20 14:31:59.522699    2016-04-28 12:06:52.744892    4.88    MV5BMjA0ODEzMTc1Nl5BMl5BanBnXkFtZTcwODM2MjAxNA__._V1_SX300.jpg    image/jpeg    46172    2016-04-28 12:06:52.582355
540    tt0066921    A Clockwork Orange    1971    136 min    1972-02-02    {"Stanley Kubrick"}    {"Stanley Kubrick (screenplay)","Anthony Burgess (novel)"}    8.40000000000000036    540    \N    In future Britain, charismatic delinquent Alex DeLarge is jailed and volunteers for an experimental aversion therapy developed by the government in an effort to solve society's crime problem - but not all goes according to plan.    English    UK, USA    Nominated for 4 Oscars. Another 8 wins & 17 nominations.    2016-04-20 14:32:01.343817    2016-04-28 12:06:55.216573    1.03    MV5BMTY3MjM1Mzc4N15BMl5BanBnXkFtZTgwODM0NzAxMDE_._V1_SX300.jpg    image/jpeg    21389    2016-04-28 12:06:55.041712
500    tt1675434    The Intouchables    2011    112 min    2011-11-02    {"Olivier Nakache","Eric Toledano"}    {"Olivier Nakache","Eric Toledano"}    8.59999999999999964    478    \N    In Paris, the aristocratic and intellectual Philippe is a quadriplegic millionaire who is interviewing candidates for the position of his carer, with his red-haired secretary Magalie. Out of the blue, the rude African Driss cuts the line of candidates and brings a document from the Social Security and asks Phillipe to sign it to prove that he is seeking a job position so he can receive his unemployment benefit. Philippe challenges Driss, offering him a trial period of one month to gain experience helping him. Then Driss can decide whether he would like to stay with him or not. Driss accepts the challenge and moves to the mansion, changing the boring life of Phillipe and his employees.    French, English    France    Nominated for 1 Golden Globe. Another 32 wins & 38 nominations.    2016-04-20 14:31:59.608378    2016-04-28 12:06:55.854436    3.18    MV5BMTYxNDA3MDQwNl5BMl5BanBnXkFtZTcwNTU4Mzc1Nw__._V1_SX300.jpg    image/jpeg    35750    2016-04-28 12:06:55.630371
502    tt0120689    The Green Mile    1999    189 min    1999-12-10    {"Frank Darabont"}    {"Stephen King (novel)","Frank Darabont (screenplay)"}    8.5    747    \N    Death Row guards at a penitentiary, in the 1930's, have a moral dilemma with their job when they discover one of their prisoners, a convicted murderer, has a special gift.    English, French    USA    Nominated for 4 Oscars. Another 14 wins & 30 nominations.    2016-04-20 14:31:59.688937    2016-04-28 12:06:56.758749    1.75    MV5BMTUxMzQyNjA5MF5BMl5BanBnXkFtZTYwOTU2NTY3._V1_SX300.jpg    image/jpeg    29220    2016-04-28 12:06:56.590116
503    tt0103064    Terminator 2: Judgment Day    1991    137 min    1991-07-03    {"James Cameron"}    {"James Cameron","William Wisher Jr."}    8.5    721    \N    Almost 10 years have passed since the first cyborg called The Terminator tried to kill Sarah Connor and her unborn son, John Connor. John Connor, the future leader of the human resistance, is now a healthy young boy. However another Terminator is sent back through time called the T-1000, which is more advanced and more powerful than its predecessor. The Mission: to kill John Connor when he's still a child. However, Sarah and John do not have to face this threat of a Terminator alone. Another Terminator is also sent back through time. The mission: to protect John and Sarah Connor at all costs. The battle for tomorrow has begun...    English, Spanish    USA, France    Won 4 Oscars. Another 20 wins & 22 nominations.    2016-04-20 14:31:59.731091    2016-04-28 12:06:57.309672    2.64    MV5BMTI4MDAwMDY3N15BMl5BanBnXkFtZTcwODIwMzMzMQ__._V1._CR46_1_342_473_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5159    2016-04-28 12:06:57.174174
504    tt0253474    The Pianist    2002    150 min    2003-03-28    {"Roman Polanski"}    {"Ronald Harwood (screenplay)","Wladyslaw Szpilman (book)"}    8.5    476    \N    A brilliant pianist, a Polish Jew, witnesses the restrictions Nazis place on Jews in the Polish capital, from restricted access to the building of the Warsaw ghetto. As his family is rounded up to be shipped off to the Nazi labor camps, he escapes deportation and eludes capture by living in the ruins of Warsaw.    English, German, Russian    France, Poland, Germany, UK    Won 3 Oscars. Another 51 wins & 68 nominations.    2016-04-20 14:31:59.768669    2016-04-28 12:06:57.878377    3.94    MV5BNzc1Y2IwOWMtZjc3ZS00MmVhLWJmMTAtMTRkMDM5ZTNkYTkxXkEyXkFqcGdeQXVyNTIzOTk5ODM_._V1_SX300.jpg    image/jpeg    41758    2016-04-28 12:06:57.691916
507    tt2582802    Whiplash    2014    107 min    2014-10-15    {"Damien Chazelle"}    {"Damien Chazelle"}    8.5    368    \N    A young and talented drummer attending a prestigious music academy finds himself under the wing of the most respected professor at the school, one who does not hold back on abuse towards his students. The two form an odd relationship as the student wants to achieve greatness, and the professor pushes him.    English    USA    Won 3 Oscars. Another 84 wins & 125 nominations.    2016-04-20 14:31:59.891091    2016-04-28 12:06:58.55563    4.62    MV5BMTU4OTQ3MDUyMV5BMl5BanBnXkFtZTgwOTA2MjU0MjE_._V1_SX300.jpg    image/jpeg    35219    2016-04-28 12:06:58.383961
508    tt0172495    Gladiator    2000    155 min    2000-05-05    {"Ridley Scott"}    {"David Franzoni (story)","David Franzoni (screenplay)","John Logan (screenplay)","William Nicholson (screenplay)"}    8.5    951    \N    Maximus is a powerful Roman general, loved by the people and the aging Emperor, Marcus Aurelius. Before his death, the Emperor chooses Maximus to be his heir over his own son, Commodus, and a power struggle leaves Maximus and his family condemned to death. The powerful general is unable to save his family, and his loss of will allows him to get captured and put into the Gladiator games until he dies. The only desire that fuels him now is the chance to rise to the top so that he will be able to look into the eyes of the man who will feel his revenge.    English    USA, UK    Won 5 Oscars. Another 53 wins & 101 nominations.    2016-04-20 14:31:59.934365    2016-04-28 12:06:59.211448    3.67    MV5BMTgwMzQzNTQ1Ml5BMl5BanBnXkFtZTgwMDY2NTYxMTE_._V1_SX300.jpg    image/jpeg    25106    2016-04-28 12:06:59.0299
511    tt0482571    The Prestige    2006    130 min    2006-10-20    {"Christopher Nolan"}    {"Jonathan Nolan (screenplay)","Christopher Nolan (screenplay)","Christopher Priest (novel)"}    8.5    815    \N    In the end of the Nineteenth Century, in London, Robert Angier, his beloved wife Julia McCullough and Alfred Borden are friends and assistants of a magician. When Julia accidentally dies during a performance, Robert blames Alfred for her death and they become enemies. Both become famous and rival magicians, sabotaging the performance of the other on the stage. When Alfred performs a successful trick, Robert becomes obsessed trying to disclose the secret of his competitor with tragic consequences.    English    USA, UK    Nominated for 2 Oscars. Another 5 wins & 32 nominations.    2016-04-20 14:32:00.058837    2016-04-28 12:07:00.864071    1.01    MV5BMjA4NDI0MTIxNF5BMl5BanBnXkFtZTYwNTM0MzY2._V1_SX300.jpg    image/jpeg    18554    2016-04-28 12:07:00.685772
513    tt0110357    The Lion King    1994    89 min    1994-06-24    {"Roger Allers","Rob Minkoff"}    {"Irene Mecchi (screenplay)","Jonathan Roberts (screenplay)","Linda Woolverton (screenplay)","Brenda Chapman (story supervisor)","Burny Mattinson (story)","Barry Johnson (story)","Lorna Cook (story)","Thom Enriquez (story)","Andy Gaskill (story)","Gary Trousdale (story)","Jim Capobianco (story)","Kevin Harkey (story)","Jorgen Klubien (story)","Chris Sanders (story)","Tom Sito (story)","Larry Leker (story)","Joe Ranft (story)","Rick Maki (story)","Ed Gombert (story)","Francis Glebas (story)","Mark Kausler (story)","J.T. Allen (additional story material)","George Scribner (additional story material)","Miguel Tejada-Flores (additional story material)","Jenny Tripp (additional story material)","Bob Tzudiker (additional story material)","Christopher Vogler (additional story material)","Kirk Wise (additional story material)","Noni White (additional story material)"}    8.5    621    \N    A young lion Prince is cast out of his pride by his cruel uncle, who claims he killed his father. While the uncle rules with an iron paw, the prince grows up beyond the Savannah, living by a philosophy: No worries for the rest of your days. But when his past comes to haunt him, the young Prince must decide his fate: will he remain an outcast, or face his demons and become what he needs to be?    English, Swahili, Xhosa, Zulu    USA    Won 2 Oscars. Another 29 wins & 27 nominations.    2016-04-20 14:32:00.141582    2016-04-28 12:07:01.559823    3.32    MV5BMjEyMzgwNTUzMl5BMl5BanBnXkFtZTcwNTMxMzM3Ng__._V1_SX300.jpg    image/jpeg    26641    2016-04-28 12:07:01.355209
518    tt0095765    Cinema Paradiso    1988    155 min    1990-02-23    {"Giuseppe Tornatore"}    {"Giuseppe Tornatore (story)","Giuseppe Tornatore (screenplay)","Vanna Paoli (collaborating writer)","Richard Epcar (english version)"}    8.5    145    \N    A famous film director remembers his childhood at the Cinema Paradiso where Alfredo, the projectionist, first brought about his love of films. He returns home to his Sicilian village for the first time after almost 30 years and is reminded of his first love, Elena, who disappeared from his life before he left for Rome.    Italian    Italy, France    Won 1 Oscar. Another 21 wins & 23 nominations.    2016-04-20 14:32:00.361013    2016-04-28 12:07:03.020281    1.92    MV5BMjIzMTgzOTEwOF5BMl5BanBnXkFtZTgwNTUxNjcxMTE_._V1_SX300.jpg    image/jpeg    35228    2016-04-28 12:07:02.816479
519    tt1853728    Django Unchained    2012    165 min    2012-12-25    {"Quentin Tarantino"}    {"Quentin Tarantino"}    8.5    918    \N    Former dentist, Dr. King Schultz, buys the freedom of a slave, Django, and trains him with the intent to make him his deputy bounty hunter. Instead, he is led to the site of Django's wife who is under the hands of Calvin Candie, a ruthless plantation owner.    English, German, French, Italian    USA    Won 2 Oscars. Another 52 wins & 137 nominations.    2016-04-20 14:32:00.402839    2016-04-28 12:07:03.989046    3.38    MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA__._V1_SX300.jpg    image/jpeg    44191    2016-04-28 12:07:03.786784
520    tt0081505    The Shining    1980    146 min    1980-05-23    {"Stanley Kubrick"}    {"Stephen King (novel)","Stanley Kubrick (screenplay)","Diane Johnson (screenplay)"}    8.40000000000000036    590    \N    Signing a contract, Jack Torrance, a normal writer and former teacher agrees to take care of a hotel which has a long, violent past that puts everyone in the hotel in a nervous situation. While Jack slowly gets more violent and angry of his life, his son, Danny, tries to use a special talent, the "Shining", to inform the people outside about whatever that is going on in the hotel.    English    USA, UK    3 wins & 5 nominations.    2016-04-20 14:32:00.444433    2016-04-28 12:07:04.70404    4.51    MV5BODMxMjE3NTA4Ml5BMl5BanBnXkFtZTgwNDc0NTIxMDE_._V1_SX300.jpg    image/jpeg    34076    2016-04-28 12:07:04.506258
515    tt0078748    Alien    1979    117 min    1979-06-22    {"Ridley Scott"}    {"Dan O'Bannon (story)","Ronald Shusett (story)","Dan O'Bannon (screenplay)"}    8.5    545    \N    A commercial crew aboard the deep space towing vessel, Nostromo is on its way home when they pick up an SOS warning from a distant planet. What they don't know is that the SOS warning is not like any other ordinary warning call. Picking up the signal, the crew realize that they are not alone on the spaceship when an alien stowaway is on the cargo ship.    English, Spanish    USA, UK    Won 1 Oscar. Another 16 wins & 19 nominations.    2016-04-20 14:32:00.222167    2016-04-28 12:07:05.380434    2.63    MV5BMTU1ODQ4NjQyOV5BMl5BanBnXkFtZTgwOTQ3NDU2MTE_._V1_SX300.jpg    image/jpeg    22574    2016-04-28 12:07:05.188583
522    tt0095327    Grave of the Fireflies    1988    89 min    1988-04-16    {"Isao Takahata"}    {"Akiyuki Nosaka (novel)","Isao Takahata"}    8.5    131    \N    A tragic film covering a young boy and his little sister's struggle to survive in Japan during World War II.    Japanese, English    Japan    3 wins.    2016-04-20 14:32:00.520608    2016-04-28 12:05:59.120372    1.22    MV5BMTgyMzUwMTMxMl5BMl5BanBnXkFtZTgwODYyMDk2MjE_._V1_SX300.jpg    image/jpeg    25671    2016-04-28 12:05:58.940866
589    tt0096283    My Neighbor Totoro    1988    86 min    1988-04-16    {"Hayao Miyazaki"}    {"Hayao Miyazaki"}    8.30000000000000071    164    \N    When two girls move to the country to be near their ailing mother, they have adventures with the wonderous forest spirits who live nearby.    Japanese    Japan    5 wins & 1 nomination.    2016-04-20 14:32:03.53645    2016-04-28 12:12:03.916186    4.97    MV5BMjE3NzY5ODQwMV5BMl5BanBnXkFtZTcwNzY1NzcxNw__._V1_SX300.jpg    image/jpeg    30392    2016-04-28 12:12:03.77401
521    tt0050825    Paths of Glory    1957    88 min    1957-10-25    {"Stanley Kubrick"}    {"Stanley Kubrick (screenplay)","Calder Willingham (screenplay)","Jim Thompson (screenplay)","Humphrey Cobb (based on the novel \\"Paths of Glory\\" by)"}    8.5    116    \N    The futility and irony of the war in the trenches in WWI is shown as a unit commander in the French army must deal with the mutiny of his men and a glory-seeking general after part of his force falls back under fire in an impossible attack.    English, German, Latin    USA, West Germany    Nominated for 1 BAFTA Film Award. Another 4 wins & 2 nominations.    2016-04-20 14:32:00.482329    2016-04-28 12:07:06.017965    3.54    MV5BMTUxNTcxMjI5NV5BMl5BanBnXkFtZTcwNTcyNjI3Mw__._V1._CR17_1_331_497_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4147    2016-04-28 12:07:05.868613
524    tt1345836    The Dark Knight Rises    2012    164 min    2012-07-20    {"Christopher Nolan"}    {"Jonathan Nolan (screenplay)","Christopher Nolan (screenplay)","Christopher Nolan (story)","David S. Goyer (story)","Bob Kane (characters)"}    8.5    1    \N    Despite his tarnished reputation after the events of The Dark Knight, in which he took the rap for Dent's crimes, Batman feels compelled to intervene to assist the city and its police force which is struggling to cope with Bane's plans to destroy the city.    English    USA, UK    Nominated for 1 BAFTA Film Award. Another 38 wins & 99 nominations.    2016-04-20 14:32:00.608507    2016-04-28 12:07:06.621458    3.13    MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw__._V1_SX300.jpg    image/jpeg    45033    2016-04-28 12:07:06.385924
525    tt0169547    American Beauty    1999    122 min    1999-10-01    {"Sam Mendes"}    {"Alan Ball"}    8.40000000000000036    798    \N    Lester and Carolyn Burnham are, on the outside, a perfect husband and wife in a perfect house in a perfect neighborhood. But inside, Lester is slipping deeper and deeper into a hopeless depression. He finally snaps when he becomes infatuated with one of his daughter's friends. Meanwhile, his daughter Jane is developing a happy friendship with a shy boy-next-door named Ricky, who lives with an abusive father.    English    USA    Won 5 Oscars. Another 103 wins & 96 nominations.    2016-04-20 14:32:00.647984    2016-04-28 12:07:07.760584    4.81    MV5BMjM4NTI5NzYyNV5BMl5BanBnXkFtZTgwNTkxNTYxMTE_._V1_SX300.jpg    image/jpeg    19863    2016-04-28 12:07:07.546852
827    tt0111958    Father Ted    1995–1998    25 min    1995-04-21    {N/A}    {N/A}    8.59999999999999964    24    \N    Have mercy on poor Father Ted Crilly. He has so much to contend with when it comes to dealing with the folks of Craggy Island, Ireland. There's Father Dougal McGuire, who is as dimwitted as they come; and then there is Father Jack Hackett who lives for the simple pleasures of life (sleeping, drinking, and swearing). Ted tries to bring stability to his congregation as well as the surreal townspeople of Craggy Island.    English    UK    15 wins & 4 nominations.    2016-04-20 14:33:05.968254    2016-04-28 12:07:08.536235    3.25    MV5BMTY0NzY5NDM1OV5BMl5BanBnXkFtZTcwMjg4NDEzMQ__._V1._CR12_0_313_468_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4759    2016-04-28 12:07:08.3848
529    tt0033467    Citizen Kane    1941    119 min    1941-09-05    {"Orson Welles"}    {"Herman J. Mankiewicz (original screen play)","Orson Welles (original screen play)"}    8.40000000000000036    289    \N    A group of reporters are trying to decipher the last word ever spoken by Charles Foster Kane, the millionaire newspaper tycoon: "Rosebud." The film begins with a news reel detailing Kane's life for the masses, and then from there, we are shown flashbacks from Kane's life. As the reporters investigate further, the viewers see a display of a fascinating man's rise to fame, and how he eventually fell off the top of the world.    English    USA    Won 1 Oscar. Another 7 wins & 12 nominations.    2016-04-20 14:32:00.824007    2016-04-28 12:07:09.935236    1.9    MV5BMTQ2Mjc1MDQwMl5BMl5BanBnXkFtZTcwNzUyOTUyMg__._V1_SX300.jpg    image/jpeg    40761    2016-04-28 12:07:09.738398
531    tt0087843    Once Upon a Time in America    1984    229 min    1984-06-01    {"Sergio Leone"}    {"Harry Grey (novel)","Leonardo Benvenuti (screenplay)","Piero De Bernardi (screenplay)","Enrico Medioli (screenplay)","Franco Arcalli (screenplay)","Franco Ferrini (screenplay)","Sergio Leone (screenplay)","Stuart Kaminsky (additional dialogue)"}    8.40000000000000036    214    \N    A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.    English, Italian, French    Italy, USA    Nominated for 2 Golden Globes. Another 11 wins & 7 nominations.    2016-04-20 14:32:00.912108    2016-04-28 12:07:11.532004    3.67    MV5BNDMwMDcyODkzOV5BMl5BanBnXkFtZTcwNTQ1Njg3OA__._V1_SX300.jpg    image/jpeg    21923    2016-04-28 12:07:11.329624
527    tt0119698    Princess Mononoke    1997    134 min    1997-07-12    {"Hayao Miyazaki"}    {"Hayao Miyazaki"}    8.40000000000000036    213    \N    On a journey to find the cure for a Tatarigami's curse, Ashitaka finds himself in the middle of a war between the forest gods and Tatara, a mining colony. In this quest he also meets San, the Mononoke Hime.    Japanese    Japan    13 wins & 5 nominations.    2016-04-20 14:32:00.735777    2016-04-28 12:07:12.225468    3.36    MV5BMjgzNTUwODQzN15BMl5BanBnXkFtZTcwMTc4ODE3OQ__._V1_SX300.jpg    image/jpeg    26504    2016-04-28 12:07:12.042889
532    tt0082096    Das Boot    1981    149 min    1982-02-10    {"Wolfgang Petersen"}    {"Wolfgang Petersen (screenplay)","Lothar G. Buchheim (novel)"}    8.40000000000000036    163    \N    The claustrophobic world of a WWII German U-boat; boredom, filth, and sheer terror.    German, English, French    West Germany    Nominated for 6 Oscars. Another 13 wins & 5 nominations.    2016-04-20 14:32:00.958874    2016-04-28 12:07:13.509431    1.97    MV5BMjE5Mzk5OTQ0Nl5BMl5BanBnXkFtZTYwNzUwMTQ5._V1_SX300.jpg    image/jpeg    53561    2016-04-28 12:07:13.300889
761    tt4299972    The Jinx: The Life and Deaths of Robert Durst    2015    279 min    2015-02-08    {N/A}    {N/A}    8.90000000000000036    15    \N    Filmmaker Andrew Jarecki examines the complicated life of reclusive real estate icon, Robert Durst, the key suspect in a series of unsolved crimes.    English    USA    Won 2 Primetime Emmys. Another 4 wins & 5 nominations.    2016-04-20 14:32:34.691176    2016-04-28 12:07:57.182505    4.6    MV5BMjI0OTc3MzY5Ml5BMl5BanBnXkFtZTgwNjk3MDUyNDE_._V1_SX300.jpg    image/jpeg    40542    2016-04-28 12:07:56.993177
533    tt0052357    Vertigo    1958    128 min    1958-07-21    {"Alfred Hitchcock"}    {"Alec Coppel (screenplay)","Samuel A. Taylor (screenplay)","Pierre Boileau (novel)","Thomas Narcejac (novel)"}    8.40000000000000036    240    \N    John "Scottie" Ferguson is a retired San Francisco police detective who suffers from acrophobia and Madeleine is the lady who leads him to high places. A wealthy shipbuilder who is an acquaintance from college days approaches Scottie and asks him to follow his beautiful wife, Madeleine. He fears she is going insane, maybe even contemplating suicide, because she believes she is possessed by a dead ancestor. Scottie is skeptical, but agrees after he sees the beautiful Madeleine.    English    USA    Nominated for 2 Oscars. Another 8 wins & 3 nominations.    2016-04-20 14:32:01.005338    2016-04-28 12:07:14.37979    2.96    MV5BNzY0NzQyNzQzOF5BMl5BanBnXkFtZTcwMTgwNTk4OQ__._V1_SX300.jpg    image/jpeg    35612    2016-04-28 12:07:14.185332
536    tt0105236    Reservoir Dogs    1992    99 min    1992-09-02    {"Quentin Tarantino"}    {"Quentin Tarantino","Roger Avary (background radio dialog)","Quentin Tarantino (background radio dialog)"}    8.40000000000000036    643    \N    Six criminals, who are strangers to each other, are hired by a crime boss, Joe Cabot, to carry out a diamond robbery. Right at the outset, they are given false names with the intention that they won't get too close and will concentrate on the job instead. They are completely sure that the robbery is going to be a success. But, when the police show up right at the time and the site of the robbery, panic spreads amongst the group members, and two of them are killed in the subsequent shootout, along with a few policemen and civilians. When the remaining people assemble at the premeditated rendezvous point (a warehouse), they begin to suspect that one of them is an undercover cop.    English    USA    9 wins & 15 nominations.    2016-04-20 14:32:01.171004    2016-04-28 12:07:15.627517    1.78    MV5BMTQxMTAwMDQ3Nl5BMl5BanBnXkFtZTcwODMwNTgzMQ__._V1_SX300.jpg    image/jpeg    27523    2016-04-28 12:07:15.446444
537    tt0211915    Amélie    2001    122 min    2002-02-08    {"Jean-Pierre Jeunet"}    {"Guillaume Laurant (scenario)","Jean-Pierre Jeunet (scenario)","Guillaume Laurant (dialogue)"}    8.40000000000000036    515    \N    Amélie is a story about a girl named Amélie whose childhood was suppressed by her Father's mistaken concerns of a heart defect. With these concerns Amélie gets hardly any real life contact with other people. This leads Amélie to resort to her own fantastical world and dreams of love and beauty. She later on becomes a young woman and moves to the central part of Paris as a waitress. After finding a lost treasure belonging to the former occupant of her apartment, she decides to return it to him. After seeing his reaction and his new found perspective - she decides to devote her life to the people around her. Such as, her father who is obsessed with his garden-gnome, a failed writer, a hypochondriac, a man who stalks his ex girlfriends, the "ghost", a suppressed young soul, the love of her life and a man whose bones are as brittle as glass. But after consuming herself with these escapades - she finds out that she is disregarding her own life and damaging her quest for love. Amélie then discovers she must become more aggressive and take a hold of her life and capture the beauty of love she has always dreamed of.    French, Russian    France, Germany    Nominated for 5 Oscars. Another 56 wins & 60 nominations.    2016-04-20 14:32:01.211705    2016-04-28 12:07:16.551163    3.31    MV5BMTYzNjkxMTczOF5BMl5BanBnXkFtZTgwODg5NDc2MjE_._V1_SX300.jpg    image/jpeg    23557    2016-04-28 12:07:16.365823
549    tt0070735    The Sting    1973    129 min    1973-12-26    {"George Roy Hill"}    {"David S. Ward"}    8.30000000000000071    170    \N    When a mutual friend is killed by a mob boss, two con men, one experienced and one young try to get even by pulling off the big con on the mob boss. The story unfolds with several twists and last minute alterations.    English    USA    Won 7 Oscars. Another 10 wins & 6 nominations.    2016-04-20 14:32:01.744631    2016-04-28 12:07:17.189886    1.73    MV5BMTY5MjM1OTAyOV5BMl5BanBnXkFtZTgwMDkwODg4MDE_._V1._CR52_57_915_1388_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4677    2016-04-28 12:07:17.02587
539    tt0180093    Requiem for a Dream    2000    102 min    2000-12-15    {"Darren Aronofsky"}    {"Hubert Selby Jr. (based on the book by)","Hubert Selby Jr. (screenplay)","Darren Aronofsky (screenplay)"}    8.40000000000000036    556    \N    Drugs. They consume mind, body and soul. Once you're hooked, you're hooked. Four lives. Four addicts. Four failures. Despite their aspirations of greatness, they succumb to their addictions. Watching the addicts spiral out of control, we bear witness to the dirtiest, ugliest portions of the underworld addicts reside in. It is shocking and eye-opening but demands to be seen by both addicts and non-addicts alike.    English    USA    Nominated for 1 Oscar. Another 32 wins & 61 nominations.    2016-04-20 14:32:01.298039    2016-04-28 12:07:17.72315    2.05    MV5BMTkzODMzODYwOF5BMl5BanBnXkFtZTcwODM2NjA2NQ__._V1_SX300.jpg    image/jpeg    37458    2016-04-28 12:07:17.530891
740    tt0112130    Pride and Prejudice    1995    327 min    1996-01-14    {N/A}    {N/A}    9.09999999999999964    50    \N    Jane Austen's classic novel about the prejudice that occurred between the 19th century classes and the pride which would keep lovers apart.    English    UK    Won 1 Primetime Emmy. Another 8 wins & 13 nominations.    2016-04-20 14:32:23.039319    2016-04-28 12:06:02.185827    1.85    MV5BMTU1MDY4OTU5OF5BMl5BanBnXkFtZTcwOTg5NzAyMw__._V1_SX300.jpg    image/jpeg    29284    2016-04-28 12:06:01.915252
586    tt0047296    On the Waterfront    1954    108 min    1954-06-22    {"Elia Kazan"}    {"Budd Schulberg (screenplay)","Budd Schulberg (based upon an original story by)","Malcolm Johnson (suggested by articles by)"}    8.30000000000000071    97    \N    An ex-prize fighter turned longshoreman struggles to stand up to his corrupt union bosses.    English    USA    Won 8 Oscars. Another 21 wins & 9 nominations.    2016-04-20 14:32:03.396245    2016-04-28 12:07:18.554133    4.66    MV5BMTcwMTU3MjI1OV5BMl5BanBnXkFtZTgwNjE2OTI3MjE_._V1_SX300.jpg    image/jpeg    40057    2016-04-28 12:07:18.352956
542    tt0435761    Toy Story 3    2010    103 min    2010-06-18    {"Lee Unkrich"}    {"John Lasseter (story)","Andrew Stanton (story)","Lee Unkrich (story)","Michael Arndt (screenplay)"}    8.40000000000000036    521    \N    Woody, Buzz and the whole gang are back. As their owner Andy prepares to depart for college, his loyal toys find themselves in daycare where untamed tots with their sticky little fingers do not play nice. So, it's all for one and one for all as they join Barbie's counterpart Ken, a thespian hedgehog named Mr. Pricklepants and a pink, strawberry-scented teddy bear called Lots-o'-Huggin' Bear to plan their great escape.    English, Spanish    USA    Won 2 Oscars. Another 56 wins & 85 nominations.    2016-04-20 14:32:01.432036    2016-04-28 12:07:19.270948    2.82    MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw__._V1_SX300.jpg    image/jpeg    40029    2016-04-28 12:07:19.078496
597    tt0018455    Sunrise    1927    94 min    1927-11-04    {"F.W. Murnau"}    {"Carl Mayer (scenario)","Hermann Sudermann (from an original theme by)","Katherine Hilliker (titles)","H.H. Caldwell (titles)"}    8.30000000000000071    27    \N    In this fable-morality subtitled "A Song of Two Humans", the "evil" temptress is a city woman who bewitches farmer Anses and tries to convince him to murder his neglected wife, Indre.    N/A    USA    Won 3 Oscars. Another 2 wins & 1 nomination.    2016-04-20 14:32:03.896701    2016-04-28 12:07:58.014804    3.14    MV5BMjIzNzg4MzcxNV5BMl5BanBnXkFtZTgwMTgzNTE0MTE_._V1_SX300.jpg    image/jpeg    42711    2016-04-28 12:07:57.78644
464    tt0068646    The Godfather    1972    175 min    1972-03-24    {"Francis Ford Coppola"}    {"Mario Puzo (screenplay)","Francis Ford Coppola (screenplay)","Mario Puzo (novel)"}    9.19999999999999929    1    \N    When the aging head of a famous crime family decides to transfer his position to one of his subalterns, a series of unfortunate events start happening to the family, and a war begins between all the well-known families leading to insolence, deportation, murder and revenge, and ends with the favorable successor being finally chosen.    English, Italian, Latin    USA    Won 3 Oscars. Another 23 wins & 27 nominations.    2016-04-20 14:31:58.05037    2016-04-28 12:05:59.845832    1.23    MV5BMjEyMjcyNDI4MF5BMl5BanBnXkFtZTcwMDA5Mzg3OA__._V1_SX300.jpg    image/jpeg    18369    2016-04-28 12:05:59.702329
543    tt0036775    Double Indemnity    1944    107 min    1944-04-24    {"Billy Wilder"}    {"Billy Wilder (screenplay)","Raymond Chandler (screenplay)","James M. Cain (from the novel by)"}    8.40000000000000036    93    \N    In 1938, Walter Neff, an experienced salesman of the Pacific All Risk Insurance Co., meets the seductive wife of one of his clients, Phyllis Dietrichson, and they have an affair. Phyllis proposes to kill her husband to receive the proceeds of an accident insurance policy and Walter devises a scheme to receive twice the amount based on a double indemnity clause. When Mr. Dietrichson is found dead on a train-track, the police accept the determination of accidental death. However, the insurance analyst and Walter's best friend Barton Keyes does not buy the story and suspects that Phyllis has murdered her husband with the help of another man.    English    USA    Nominated for 7 Oscars. Another 2 wins & 2 nominations.    2016-04-20 14:32:01.478922    2016-04-28 12:07:20.725349    2.51    MV5BMTQzOTE4MTIzMV5BMl5BanBnXkFtZTgwODc1NDQ5MDE_._V1_SX300.jpg    image/jpeg    43845    2016-04-28 12:07:20.542362
545    tt0056172    Lawrence of Arabia    1962    216 min    1962-12-11    {"David Lean"}    {"T.E. Lawrence (writings)","Robert Bolt (screenplay)","Michael Wilson (screenplay)"}    8.40000000000000036    186    \N    An inordinately complex man who has been labeled everything from hero, to charlatan, to sadist, Thomas Edward Lawrence blazed his way to glory in the Arabian desert, then sought anonymity as a common soldier under an assumed name. The story opens with the death of Lawrence in a motorcycle accident in Dorset at the age of 46, then flashbacks to recount his adventures: as a young intelligence officer in Cairo in 1916, he is given leave to investigate the progress of the Arab revolt against the Turks in World War I. In the desert, he organizes a guerrilla army and--for two years--leads the Arabs in harassing the Turks with desert raids, train-wrecking and camel attacks. Eventually, he leads his army northward and helps a British General destroy the power of the Ottoman Empire.    English, Arabic, Turkish    UK    Won 7 Oscars. Another 22 wins & 15 nominations.    2016-04-20 14:32:01.572444    2016-04-28 12:07:21.60125    3.6    MV5BMzAwMjM4NzA2OV5BMl5BanBnXkFtZTcwMDI0NzAwMQ__._V1_SX300.jpg    image/jpeg    38784    2016-04-28 12:07:21.402368
547    tt0093058    Full Metal Jacket    1987    116 min    1987-07-10    {"Stanley Kubrick"}    {"Gustav Hasford (novel)","Stanley Kubrick (screenplay)","Michael Herr (screenplay)","Gustav Hasford (screenplay)"}    8.30000000000000071    468    \N    A two-segment look at the effect of the military mindset and war itself on Vietnam era Marines. The first half follows a group of recruits in boot camp under the command of the punishing Gunnery Sergeant Hartman. The second half shows one of those recruits, Joker, covering the war as a correspondent for Stars and Stripes, focusing on the Tet offensive.    English, Vietnamese    UK, USA    Nominated for 1 Oscar. Another 7 wins & 9 nominations.    2016-04-20 14:32:01.659971    2016-04-28 12:07:23.350934    4.92    MV5BMjA4NzY4ODk4Nl5BMl5BanBnXkFtZTgwOTcxNTYxMTE_._V1_SX300.jpg    image/jpeg    29174    2016-04-28 12:07:23.14542
550    tt0062622    2001: A Space Odyssey    1968    149 min    1968-05-15    {"Stanley Kubrick"}    {"Stanley Kubrick (screenplay)","Arthur C. Clarke (screenplay)"}    8.30000000000000071    412    \N    Humanity finds a mysterious, obviously artificial object buried beneath the Lunar surface and, with the intelligent computer H.A.L. 9000, sets off on a quest.    English, Russian    USA, UK    Won 1 Oscar. Another 13 wins & 7 nominations.    2016-04-20 14:32:01.788408    2016-04-28 12:07:24.061939    3.68    MV5BNDYyMDgxNDQ5Nl5BMl5BanBnXkFtZTcwMjc1ODg3OA__._V1_SX300.jpg    image/jpeg    24188    2016-04-28 12:07:23.875183
551    tt0040522    Bicycle Thieves    1948    89 min    1949-12-13    {"Vittorio De Sica"}    {"Cesare Zavattini (story)","Luigi Bartolini (novel)","Oreste Biancoli (screenplay)","Suso Cecchi D'Amico (screenplay)","Vittorio De Sica (screenplay)","Adolfo Franci (screenplay)","Gherardo Gherardi (screenplay)","Gerardo Guerrieri (screenplay)","Cesare Zavattini (screenplay)"}    8.40000000000000036    90    \N    Set in Post-WWII Italy, a working class man's bicycle is stolen. He and his son set out to find it.    Italian    Italy    Nominated for 1 Oscar. Another 18 wins.    2016-04-20 14:32:01.828374    2016-04-28 12:07:24.668143    3.02    MV5BMjIzMzAyMzg1Nl5BMl5BanBnXkFtZTgwMzMyNzk0MTE_._V1_SX300.jpg    image/jpeg    40931    2016-04-28 12:07:24.480114
646    tt1130884    Shutter Island    2010    138 min    2010-02-19    {"Martin Scorsese"}    {"Laeta Kalogridis (screenplay)","Dennis Lehane (novel)"}    8.09999999999999964    754    \N    A U.S Marshal investigates the disappearance of a murderess who escaped from a hospital for the criminally insane.    English, German    USA    7 wins & 56 nominations.    2016-04-20 14:32:06.009115    2016-04-28 12:06:05.491208    3.3    MV5BMTMxMTIyNzMxMV5BMl5BanBnXkFtZTcwOTc4OTI3Mg__._V1_SX300.jpg    image/jpeg    38190    2016-04-28 12:06:05.287985
553    tt0208092    Snatch.    2000    102 min    2001-01-19    {"Guy Ritchie"}    {"Guy Ritchie"}    8.30000000000000071    584    \N    Turkish and his close friend/accomplice Tommy get pulled into the world of match fixing by the notorious Brick Top. Things get complicated when the boxer they had lined up gets badly beaten by Pitt, a 'pikey' ( slang for an Irish Gypsy)- who comes into the equation after Turkish, an unlicensed boxing promoter wants to buy a caravan off the Irish Gypsies. They then try to convince Pitt not only to fight for them, but to lose for them too. Whilst all this is going on, a huge diamond heist takes place, and a fistful of motley characters enter the story, including 'Cousin Avi', 'Boris The Blade', 'Franky Four Fingers' and 'Bullet Tooth Tony'. Things go from bad to worse as it all becomes about the money, the guns, and the damned dog!    English, Russian    UK, USA    4 wins & 6 nominations.    2016-04-20 14:32:01.919911    2016-04-28 12:07:25.473105    3.24    MV5BMTk5NzE0MDQyNl5BMl5BanBnXkFtZTcwNzk4Mjk3OA__._V1_SX300.jpg    image/jpeg    44334    2016-04-28 12:07:25.281292
552    tt0045152    Singin' in the Rain    1952    103 min    1952-04-11    {"Stanley Donen","Gene Kelly"}    {"Adolph Green (story)","Betty Comden (story)"}    8.30000000000000071    145    \N    A silent film production company and cast make a difficult transition to sound.    English    USA    Nominated for 2 Oscars. Another 5 wins & 7 nominations.    2016-04-20 14:32:01.879522    2016-04-28 12:06:00.508452    1.06    MV5BMTUxMTIyNTI4Nl5BMl5BanBnXkFtZTcwNTk1ODQyMg__._V1_SX300.jpg    image/jpeg    39191    2016-04-28 12:06:00.253441
554    tt0114709    Toy Story    1995    81 min    1995-11-22    {"John Lasseter"}    {"John Lasseter (original story by)","Pete Docter (original story by)","Andrew Stanton (original story by)","Joe Ranft (original story by)","Joss Whedon (screenplay)","Andrew Stanton (screenplay)","Joel Cohen (screenplay)","Alec Sokolow (screenplay)"}    8.30000000000000071    599    \N    A little boy named Andy loves to be in his room, playing with his toys, especially his doll named "Woody". But, what do the toys do when Andy is not with them, they come to life. Woody believes that he has life (as a toy) good. However, he must worry about Andy's family moving, and what Woody does not know is about Andy's birthday party. Woody does not realize that Andy's mother gave him an action figure known as Buzz Lightyear, who does not believe that he is a toy, and quickly becomes Andy's new favorite toy. Woody, who is now consumed with jealousy, tries to get rid of Buzz. Then, both Woody and Buzz are now lost. They must find a way to get back to Andy before he moves without them, but they will have to pass through a ruthless toy killer, Sid Phillips.    English    USA    Nominated for 3 Oscars. Another 23 wins & 18 nominations.    2016-04-20 14:32:01.960973    2016-04-28 12:07:27.025186    2.88    MV5BMTgwMjI4MzU5N15BMl5BanBnXkFtZTcwMTMyNTk3OA__._V1_SX300.jpg    image/jpeg    27409    2016-04-28 12:07:26.829286
577    tt2096673    Inside Out    2015    95 min    2015-06-19    {"Pete Docter","Ronnie Del Carmen"}    {"Pete Docter (original story by)","Ronnie Del Carmen (original story by)","Pete Docter (screenplay)","Meg LeFauve (screenplay)","Josh Cooley (screenplay)","Bill Hader (additional dialogue by)","Michael Arndt (additional written material)","Amy Poehler (additional dialogue by)"}    8.30000000000000071    303    \N    After young Riley is uprooted from her Midwest life and moved to San Francisco, her emotions - Joy, Fear, Anger, Disgust and Sadness - conflict on how best to navigate a new city, house, and school.    English    USA    Won 1 Oscar. Another 79 wins & 90 nominations.    2016-04-20 14:32:02.956157    2016-04-28 12:07:27.739727    4.13    MV5BOTgxMDQwMDk0OF5BMl5BanBnXkFtZTgwNjU5OTg2NDE_._V1_SX300.jpg    image/jpeg    40357    2016-04-28 12:07:27.536179
556    tt0361748    Inglourious Basterds    2009    153 min    2009-08-21    {"Quentin Tarantino","Eli Roth"}    {"Quentin Tarantino"}    8.30000000000000071    846    \N    In Nazi-occupied France, young Jewish refugee Shosanna Dreyfus witnesses the slaughter of her family by Colonel Hans Landa. Narrowly escaping with her life, she plots her revenge several years later when German war hero Fredrick Zoller takes a rapid interest in her and arranges an illustrious movie premiere at the theater she now runs. With the promise of every major Nazi officer in attendance, the event catches the attention of the "Basterds", a group of Jewish-American guerrilla soldiers led by the ruthless Lt. Aldo Raine. As the relentless executioners advance and the conspiring young girl's plans are set in motion, their paths will cross for a fateful evening that will shake the very annals of history.    English, German, French, Italian    USA, Germany    Won 1 Oscar. Another 117 wins & 143 nominations.    2016-04-20 14:32:02.048485    2016-04-28 12:07:28.470191    2.84    MV5BMjIzMDI4MTUzOV5BMl5BanBnXkFtZTcwNDY3NjA3Mg__._V1_SX300.jpg    image/jpeg    27331    2016-04-28 12:07:28.270741
557    tt0012349    The Kid    1921    68 min    1921-02-06    {"Charles Chaplin"}    {"Charles Chaplin"}    8.40000000000000036    64    \N    The opening title reads: "A comedy with a smile--and perhaps a tear". As she leaves the charity hospital and passes a church wedding, Edna deposits her new baby with a pleading note in a limousine and goes off to commit suicide. The limo is stolen by thieves who dump the baby by a garbage can. Charlie the Tramp finds the baby and makes a home for him. Five years later Edna has become an opera star but does charity work for slum youngsters in hope of finding her boy. A doctor called by Edna discovers the note with the truth about the Kid and reports it to the authorities who come to take him away from Charlie. Before he arrives at the Orphan Asylum Charlie steals him back and takes him to a flophouse. The proprietor reads of a reward for the Kid and takes him to Edna. Charlie is later awakened by a kind policeman who reunites him with the Kid at Edna's mansion.    English    USA    1 win.    2016-04-20 14:32:02.090407    2016-04-28 12:07:29.250751    3.51    MV5BMTkzNTgxMDU1OF5BMl5BanBnXkFtZTgwOTQ3MjI2MzE_._V1_SX300.jpg    image/jpeg    36223    2016-04-28 12:07:29.05531
558    tt0119488    L.A. Confidential    1997    138 min    1997-09-19    {"Curtis Hanson"}    {"James Ellroy (novel)","Brian Helgeland (screenplay)","Curtis Hanson (screenplay)"}    8.30000000000000071    403    \N    1950's Los Angeles is the seedy backdrop for this intricate noir-ish tale of police corruption and Hollywood sleaze. Three very different cops are all after the truth, each in their own style: Ed Exley, the golden boy of the police force, willing to do almost anything to get ahead, except sell out; Bud White, ready to break the rules to seek justice, but barely able to keep his raging violence under control; and Jack Vincennes, always looking for celebrity and a quick buck until his conscience drives him to join Exley and White down the one-way path to find the truth behind the dark world of L.A. crime.    English    USA    Won 2 Oscars. Another 83 wins & 77 nominations.    2016-04-20 14:32:02.132284    2016-04-28 12:07:29.937204    2.47    MV5BMjMzOTc2MDI3N15BMl5BanBnXkFtZTgwNTE4Njc3NjE_._V1_SX300.jpg    image/jpeg    25555    2016-04-28 12:07:29.745082
574    tt0041959    The Third Man    1949    93 min    1949-08-31    {"Carol Reed"}    {"Graham Greene (by)","Graham Greene (screen play)"}    8.30000000000000071    109    \N    An out of work pulp fiction novelist, Holly Martins, arrives in a post war Vienna divided into sectors by the victorious allies, and where a shortage of supplies has lead to a flourishing black market. He arrives at the invitation of an ex-school friend, Harry Lime, who has offered him a job, only to discover that Lime has recently died in a peculiar traffic accident. From talking to Lime's friends and associates Martins soon notices that some of the stories are inconsistent, and determines to discover what really happened to Harry Lime.    English, German, Russian    UK    Won 1 Oscar. Another 4 wins & 4 nominations.    2016-04-20 14:32:02.836353    2016-04-28 12:07:42.714578    3.13    MV5BMjMwNzMzMTQ0Ml5BMl5BanBnXkFtZTgwNjExMzUwNjE_._V1_SX300.jpg    image/jpeg    32626    2016-04-28 12:07:42.534773
560    tt0042876    Rashomon    1950    88 min    1951-12-26    {"Akira Kurosawa"}    {"Ryûnosuke Akutagawa (stories)","Akira Kurosawa (screenplay)","Shinobu Hashimoto (screenplay)","Sôjirô Motoki (developed by)"}    8.30000000000000071    98    \N    A priest, a woodcutter and another man are taking refuge from a rainstorm in the shell of a former gatehouse called Rashômon. The priest and the woodcutter are recounting the story of a murdered samurai whose body the woodcutter discovered three days earlier in a forest grove. Both were summoned to testify at the murder trial, the priest who ran into the samurai and his wife traveling through the forest just before the murder occurred. Three other people who testified at the trial are supposedly the only direct witnesses: a notorious bandit named Tajômaru, who allegedly murdered the samurai and raped his wife; the white veil cloaked wife of the samurai; and the samurai himself who testifies through the use of a medium. The three tell a similarly structured story - that Tajômaru kidnapped and bound the samurai so that he could rape the wife - but which ultimately contradict each other, the motivations and the actual killing being what differ. The woodcutter reveals at Rashômon that he knows more than he let on at the trial, thus bringing into question his own actions. But another discovery at Rashômon and the resulting actions from the discovery bring back into focus the woodcutter's own humanity or lack thereof.    Japanese    Japan    Nominated for 1 Oscar. Another 9 wins & 3 nominations.    2016-04-20 14:32:02.215914    2016-04-28 12:07:30.772149    3.38    MV5BMjEzMzA4NDE2OF5BMl5BanBnXkFtZTcwNTc5MDI2NQ__._V1._CR0_0_503_683_SY132_CR4_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5421    2016-04-28 12:07:30.623876
561    tt0053604    The Apartment    1960    125 min    1960-09-16    {"Billy Wilder"}    {"Billy Wilder","I.A.L. Diamond"}    8.30000000000000071    105    \N    As of November 1, 1959, mild mannered C.C. Baxter has been working at Consolidated Life, an insurance company, for close to four years, and is one of close to thirty-two thousand employees located in their Manhattan head office. To distinguish himself from all the other lowly cogs in the company in the hopes of moving up the corporate ladder, he often works late, but only because he can't get into his apartment, located off of Central Park West, since he has provided it to a handful of company executives - Mssrs. Dobisch, Kirkeby, Vanderhoff and Eichelberger - on a rotating basis for their extramarital liaisons in return for a good word to the personnel director, Jeff D. Sheldrake. When Baxter is called into Sheldrake's office for the first time, he learns that it isn't just to be promoted as he expects, but also to add married Sheldrake to the list to who he will lend his apartment. What Baxter is unaware of is that Sheldrake's mistress is Fran Kubelik, an elevator girl in the building who Baxter himself fancies. In turn, Sheldrake has no idea of Baxter's own interest in Fran. And Fran, who is in love with Sheldrake, has no idea that she is only the latest in a long line of Sheldrake's mistresses, that Sheldrake has no intention of leaving his wife for her, and that the apartment belongs to Baxter, who she likes as a friend. As some of these facts come to light on Christmas Eve, one of the three makes a unilateral decision. That decision sets off a series of events over the course of the next week which makes each of the three examine what he/she really wants which in turn may be incompatible with the other two. They are helped along the way by Dobisch, Kirkeby, Vanderhoff and Eichelberger who are now feeling neglected as Baxter no longer needs their assistance in moving up, by Miss Olsen, Sheldrake's long serving secretary who was also once his mistress, and by Dr. Dreyfus, a physician and one of Baxter's many exasperated neighbors who believes Baxter is a playboy based on all the noise he hears in Baxter's apartment and the plethora of empty liquor bottles Baxter seems to be always discarding.    English    USA    Won 5 Oscars. Another 19 wins & 8 nominations.    2016-04-20 14:32:02.256342    2016-04-28 12:07:31.327099    1.37    MV5BMTM1OTc4MzgzNl5BMl5BanBnXkFtZTcwNTE2NjgyMw__._V1_SX300.jpg    image/jpeg    43600    2016-04-28 12:07:31.126762
578    tt0081398    Raging Bull    1980    129 min    1980-12-19    {"Martin Scorsese"}    {"Jake LaMotta (based on the book by)","Joseph Carter (with)","Peter Savage (with)","Paul Schrader (screenplay)","Mardik Martin (screenplay)"}    8.30000000000000071    227    \N    When Jake LaMotta steps into a boxing ring and obliterates his opponent, he's a prizefighter. But when he treats his family and friends the same way, he's a ticking time bomb, ready to go off at any moment. Though LaMotta wants his family's love, something always seems to come between them. Perhaps it's his violent bouts of paranoia and jealousy. This kind of rage helped make him a champ, but in real life, he winds up in the ring alone.    English    USA    Won 2 Oscars. Another 23 wins & 24 nominations.    2016-04-20 14:32:02.999301    2016-04-28 12:07:32.614938    1.24    MV5BMjIxOTg3OTc5MF5BMl5BanBnXkFtZTcwNzkwNjMwNA__._V1_SX300.jpg    image/jpeg    36196    2016-04-28 12:07:32.417191
562    tt0097576    Indiana Jones and the Last Crusade    1989    127 min    1989-05-24    {"Steven Spielberg"}    {"Jeffrey Boam (screenplay)","George Lucas (story)","Menno Meyjes (story)","George Lucas (characters)","Philip Kaufman (characters)"}    8.30000000000000071    498    \N    Indiana Jones, famed adventurer and archaeologist acquires a diary that holds clues and a map with no names to find the mysterious Holy Grail- which was sent from his father, Dr. Henry Jones, in Italy. Upon hearing from a private collector, Walter Donavan, that the mission for the Holy Grail went astray with the disappearance of his father, Indiana Jones and museum curator Marcus Brody venture to Italy in search of Indy's father. However, upon retrieving Dr. Henry Jones in Nazi territory, the rescue mission turns into a race to find the Holy Grail before the Nazis do- who plan to use it for complete world domination for their super-race. With the diary as a vital key and the map with no names as a guide, Indiana Jones once again finds himself in another death defying adventure of pure excitement.    English, German, Greek    USA    Won 1 Oscar. Another 5 wins & 20 nominations.    2016-04-20 14:32:02.306119    2016-04-28 12:07:34.431336    2.49    MV5BMTQxMTUyODg2OF5BMl5BanBnXkFtZTcwNDM2MjAxNA__._V1_SX300.jpg    image/jpeg    35876    2016-04-28 12:07:34.255495
563    tt0086250    Scarface    1983    170 min    1983-12-09    {"Brian De Palma"}    {"Oliver Stone (screenplay)"}    8.30000000000000071    521    \N    Tony Montana manages to leave Cuba during the Mariel exodus of 1980. He finds himself in a Florida refugee camp but his friend Manny has a way out for them: undertake a contract killing and arrangements will be made to get a green card. He's soon working for drug dealer Frank Lopez and shows his mettle when a deal with Colombian drug dealers goes bad. He also brings a new level of violence to Miami. Tony is protective of his younger sister but his mother knows what he does for a living and disowns him. Tony is impatient and wants it all however, including Frank's empire and his mistress Elvira Hancock. Once at the top however, Tony's outrageous actions make him a target and everything comes crumbling down.    English, Spanish    USA    Nominated for 3 Golden Globes. Another 4 nominations.    2016-04-20 14:32:02.349508    2016-04-28 12:07:35.086675    1.56    MV5BMjAzOTM4MzEwNl5BMl5BanBnXkFtZTgwMzU1OTc1MDE_._V1_SX300.jpg    image/jpeg    30035    2016-04-28 12:07:34.898151
739    tt0103359    Batman: The Animated Series    1992–1995    23 min    1992-09-05    {N/A}    {N/A}    9    49    \N    Heir to the Wayne family fortune, Bruce Wayne lives by day as a seemingly lavish playboy millionaire socialite, but by night assumes the role of his crime-fighting alter-ego: the caped crusader known as Batman. Throughout the Animated Series, Batman receives help from sidekicks Robin and Batgirl, as well as Police Commissioner Gordon, in protecting the streets of Gotham City from a large rogue's gallery of criminals, lunatics and nemeses.    English    USA    Won 1 Primetime Emmy. Another 3 wins & 19 nominations.    2016-04-20 14:32:22.578828    2016-04-28 12:06:01.372618    3.29    MV5BMTU3MjcwNzY3NF5BMl5BanBnXkFtZTYwNzA2MTI5._V1_SX300.jpg    image/jpeg    36097    2016-04-28 12:06:01.21043
565    tt0042192    All About Eve    1950    138 min    1951-01-15    {"Joseph L. Mankiewicz"}    {"Joseph L. Mankiewicz (written for the screen by)"}    8.30000000000000071    79    \N    Eve is waiting backstage to meet her "idol" aging Broadway Star, Margo Channing. It all seems innocent enough as Eve explains that she has seen Margo in EVERY performance of the current play she is in. Only Playright critic DeWitt sees through Eve's evil plan, which is to take her parts and fiance. When the fiance shows no interest, she tries for Celeste Holmes husband and playwright. But, DeWitt (George Brandt) stops her. After she accepts her award, she decides to skip the after-party and goes to her room, where we find a young woman named Phoebe, who snuck into her room and fell asleep. This is where the "Circle of Life" now comes to fruition as Eve is going to get played the way she did Margo.    English, French    USA    Won 6 Oscars. Another 16 wins & 17 nominations.    2016-04-20 14:32:02.437168    2016-04-28 12:07:35.846334    1.35    MV5BMTY2MTAzODI5NV5BMl5BanBnXkFtZTgwMjM4NzQ0MjE_._V1_SX300.jpg    image/jpeg    27710    2016-04-28 12:07:35.657804
567    tt0055630    Yojimbo    1961    110 min    1961-09-13    {"Akira Kurosawa"}    {"Akira Kurosawa (story)","Akira Kurosawa (screenplay)","Ryûzô Kikushima (screenplay)"}    8.30000000000000071    71    \N    A crafty ronin comes to a town divided by two criminal gangs and decides to play them against each other to free the town.    Japanese    Japan    Nominated for 1 Oscar. Another 4 wins & 1 nomination.    2016-04-20 14:32:02.524954    2016-04-28 12:07:36.665013    4.25    MV5BMjAwNTQ3ODUyMl5BMl5BanBnXkFtZTgwNDg5ODQyNjE_._V1_SX300.jpg    image/jpeg    37910    2016-04-28 12:07:36.447461
569    tt0372784    Batman Begins    2005    140 min    2005-06-15    {"Christopher Nolan"}    {"Bob Kane (characters)","David S. Goyer (story)","Christopher Nolan (screenplay)","David S. Goyer (screenplay)"}    8.30000000000000071    946    \N    After training with his mentor, Batman begins his war on crime to free the crime-ridden Gotham City from corruption that the Scarecrow and the League of Shadows have cast upon it.    English, Urdu, Mandarin    USA, UK    Nominated for 1 Oscar. Another 15 wins & 66 nominations.    2016-04-20 14:32:02.615174    2016-04-28 12:07:37.360825    2.75    MV5BNTM3OTc0MzM2OV5BMl5BanBnXkFtZTYwNzUwMTI3._V1_SX300.jpg    image/jpeg    33481    2016-04-28 12:07:37.173304
570    tt0053291    Some Like It Hot    1959    120 min    1959-03-29    {"Billy Wilder"}    {"Billy Wilder (screenplay)","I.A.L. Diamond (screenplay)","Robert Thoeren (suggested by a story by)","Michael Logan (suggested by a story by)"}    8.30000000000000071    169    \N    When two Chicago musicians, Joe and Jerry, witness the the St. Valentine's Day massacre, they want to get out of town and get away from the gangster responsible, Spats Colombo. They're desperate to get a gig out of town but the only job they know of is in an all-girl band heading to Florida. They show up at the train station as Josephine and Daphne, the replacement saxophone and bass players. They certainly enjoy being around the girls, especially Sugar Kane Kowalczyk who sings and plays the ukulele. Joe in particular sets out to woo her while Jerry/Daphne is wooed by a millionaire, Osgood Fielding III. Mayhem ensues as the two men try to keep their true identities hidden and Spats Colombo and his crew show up for a meeting with several other crime lords.    English    USA    Won 1 Oscar. Another 9 wins & 13 nominations.    2016-04-20 14:32:02.659779    2016-04-28 12:07:38.212721    4.36    MV5BNzYzMDkzNDQ0N15BMl5BanBnXkFtZTcwNzQ0NDQyNA__._V1_SX300.jpg    image/jpeg    32710    2016-04-28 12:07:38.026775
571    tt2106476    The Hunt    2012    115 min    2013-01-10    {"Thomas Vinterberg"}    {"Tobias Lindholm (screenplay)","Thomas Vinterberg (screenplay)"}    8.30000000000000071    160    \N    Lucas is a Kindergarten teacher who takes great care of his students. Unfortunately for him, young Klara has a run-away imagination and concocts a lie about her teacher. Before Lucas is even able to understand the consequences, he has become the outcast of the town. The hunt is on to prove his innocence before it's taken from him for good.    Danish, English, Polish    Denmark, Sweden    Nominated for 1 Oscar. Another 35 wins & 62 nominations.    2016-04-20 14:32:02.705413    2016-04-28 12:07:38.927192    2.69    MV5BMTg2NDg3ODg4NF5BMl5BanBnXkFtZTcwNzk3NTc3Nw__._V1_SX300.jpg    image/jpeg    22843    2016-04-28 12:07:38.726182
911    tt1493239    Terriers    2010–    N/A    2010-09-08    {N/A}    {"Ted Griffin"}    8.5    8    \N    Ex-cop and recovering alcoholic Hank Dolworth partners with his best friend, former criminal Britt Pollack, in an unlicensed private investigation business.    English, Spanish    USA    1 win & 4 nominations.    2016-04-20 14:33:42.858874    2016-04-28 12:06:03.056309    4.48    MV5BNzg0NDQ0MTcwM15BMl5BanBnXkFtZTcwNTQwNDk3Mw__._V1_SX300.jpg    image/jpeg    36316    2016-04-28 12:06:02.827496
572    tt1187043    3 Idiots    2009    170 min    2009-12-25    {"Rajkumar Hirani"}    {"Rajkumar Hirani","Abhijat Joshi","Vidhu Vinod Chopra (screenplay)"}    8.40000000000000036    197    \N    Two friends are searching for their long lost companion. They revisit their college days and recall the memories of their friend who inspired them to think differently, even as the rest of the world called them "idiots".    Hindi, English    India    25 wins & 13 nominations.    2016-04-20 14:32:02.751118    2016-04-28 12:07:39.655339    2.13    MV5BMTMyOTg0ODQ1OF5BMl5BanBnXkFtZTcwNjc0NTMwNQ__._V1_SX300.jpg    image/jpeg    36138    2016-04-28 12:07:39.465626
512    tt0057012    Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb    1964    95 min    1964-01-29    {"Stanley Kubrick"}    {"Stanley Kubrick (screenplay)","Terry Southern (screenplay)","Peter George (screenplay)","Peter George (based on the book: \\"Red Alert\\" by)"}    8.5    333    \N    Paranoid Brigadier General Jack D. Ripper of Burpelson Air Force Base, believing that fluoridation of the American water supply is a Soviet plot to poison the U.S. populace, is able to deploy through a back door mechanism a nuclear attack on the Soviet Union without the knowledge of his superiors, including the Chair of the Joint Chiefs of Staff, General Buck Turgidson, and President Merkin Muffley. Only Ripper knows the code to recall the B-52 bombers and he has shut down communication in and out of Burpelson as a measure to protect this attack. Ripper's executive officer, RAF Group Captain Lionel Mandrake (on exchange from Britain), who is being held at Burpelson by Ripper, believes he knows the recall codes if he can only get a message to the outside world. Meanwhile at the Pentagon War Room, key persons including Muffley, Turgidson and nuclear scientist and adviser, a former Nazi named Dr. Strangelove, are discussing measures to stop the attack or mitigate its blow-up into an all out nuclear war with the Soviets. Against Turgidson's wishes, Muffley brings Soviet Ambassador Alexi de Sadesky into the War Room, and get his boss, Soviet Premier Dimitri Kisov, on the hot line to inform him of what's going on. The Americans in the War Room are dismayed to learn that the Soviets have an as yet unannounced Doomsday Device to detonate if any of their key targets are hit. As Ripper, Mandrake and those in the War Room try and work the situation to their end goal, Major T.J. "King" Kong, one of the B-52 bomber pilots, is working on his own agenda of deploying his bomb where ever he can on enemy soil if he can't make it to his intended target.    English, Russian    USA, UK    Nominated for 4 Oscars. Another 13 wins & 6 nominations.    2016-04-20 14:32:00.100701    2016-04-28 12:07:40.378409    2.41    MV5BMTU2ODM2NTkxNF5BMl5BanBnXkFtZTcwOTMwMzU3Mg__._V1_SX300.jpg    image/jpeg    37385    2016-04-28 12:07:40.198518
658    tt0032551    The Grapes of Wrath    1940    129 min    1940-03-15    {"John Ford"}    {"Nunnally Johnson (screen play)","John Steinbeck (based on the novel by)"}    8.09999999999999964    61    \N    Tom Joad returns to his home after a jail sentence to find his family kicked out of their farm due to foreclosure. He catches up with them on his Uncles farm, and joins them the next day as they head for California and a new life... Hopefully.    English    USA    Won 2 Oscars. Another 7 wins & 5 nominations.    2016-04-20 14:32:06.519149    2016-04-28 12:07:41.339565    1.48    MV5BMzgzNjcxNjg2M15BMl5BanBnXkFtZTcwMjQxNDQ3Mg__._V1_SX300.jpg    image/jpeg    32560    2016-04-28 12:07:41.117328
573    tt0105695    Unforgiven    1992    131 min    1992-08-07    {"Clint Eastwood"}    {"David Webb Peoples"}    8.30000000000000071    270    \N    The town of Big Whisky is full of normal people trying to lead quiet lives. Cowboys try to make a living. Sheriff 'Little Bill' tries to build a house and keep a heavy-handed order. The town whores just try to get by.Then a couple of cowboys cut up a whore. Dissatisfied with Bill's justice, the prostitutes put a bounty on the cowboys. The bounty attracts a young gun billing himself as 'The Schofield Kid', and aging killer William Munny. Munny reformed for his young wife, and has been raising crops and two children in peace. But his wife is gone. Farm life is hard. And Munny is no good at it. So he calls his old partner Ned, saddles his ornery nag, and rides off to kill one more time, blurring the lines between heroism and villainy, man and myth.    English    USA    Won 4 Oscars. Another 36 wins & 29 nominations.    2016-04-20 14:32:02.791712    2016-04-28 12:07:41.996848    4.42    MV5BMTkzNTc0NDc4OF5BMl5BanBnXkFtZTcwNTY1ODg3OA__._V1_SX300.jpg    image/jpeg    18535    2016-04-28 12:07:41.814751
575    tt1049413    Up    2009    96 min    2009-05-29    {"Pete Docter","Bob Peterson"}    {"Pete Docter (story)","Bob Peterson (story)","Tom McCarthy (story)","Bob Peterson (screenplay)","Pete Docter (screenplay)"}    8.30000000000000071    638    \N    A young Carl Fredrickson meets a young adventure-spirited girl named Ellie. They both dream of going to a lost land in South America. 70 years later, Ellie has died. Carl remembers the promise he made to her. Then, when he inadvertently hits a construction worker, he is forced to go to a retirement home. But before they can take him, he and his house fly away. However, he has a stowaway aboard: an 8-year-old boy named Russell, who's trying to get an Assisting the Elderly badge. Together, they embark on an adventure, where they encounter talking dogs, an evil villain and a rare bird named Kevin.    English    USA    Won 2 Oscars. Another 70 wins & 71 nominations.    2016-04-20 14:32:02.87847    2016-04-28 12:07:43.489261    4.74    MV5BMTk3NDE2NzI4NF5BMl5BanBnXkFtZTgwNzE1MzEyMTE_._V1_SX300.jpg    image/jpeg    39518    2016-04-28 12:07:43.298287
579    tt0363163    Downfall    2004    156 min    2005-04-08    {"Oliver Hirschbiegel"}    {"Bernd Eichinger (screenplay)","Joachim Fest (book)","Traudl Junge (book)","Melissa Müller (book)"}    8.30000000000000071    241    \N    In April of 1945, Germany stands at the brink of defeat with the Soviet Armies closing in from the west and south. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his Generals and advisers to fight to the last man. "Downfall" explores these final days of the Reich, where senior German leaders (such as Himmler and Goring) began defecting from their beloved Fuhrer, in an effort to save their own lives, while still others (Joseph Goebbels) pledge to die with Hitler. Hitler, himself, degenerates into a paranoid shell of a man, full of optimism one moment and suicidal depression the next. When the end finally does comes, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.    German, Russian, Hungarian    Germany, Austria, Italy    Nominated for 1 Oscar. Another 21 wins & 25 nominations.    2016-04-20 14:32:03.088575    2016-04-28 12:07:44.280411    3.58    MV5BMTM1OTI1MjE2Nl5BMl5BanBnXkFtZTcwMTEwMzc4NA__._V1_SX300.jpg    image/jpeg    26195    2016-04-28 12:07:44.095702
580    tt0095016    Die Hard    1988    131 min    1988-07-20    {"John McTiernan"}    {"Roderick Thorp (novel)","Jeb Stuart (screenplay)","Steven E. de Souza (screenplay)"}    8.19999999999999929    576    \N    John McClane, officer of the NYPD, tries to save his wife Holly Gennaro and several others that were taken hostage by German terrorist Hans Gruber during a Christmas party at the Nakatomi Plaza in Los Angeles.    English, German, Italian    USA    Nominated for 4 Oscars. Another 6 wins & 2 nominations.    2016-04-20 14:32:03.130628    2016-04-28 12:07:45.05358    2.78    MV5BMTY4ODM0OTc2M15BMl5BanBnXkFtZTcwNzE0MTk3OA__._V1_SX300.jpg    image/jpeg    37822    2016-04-28 12:07:44.860139
581    tt0071315    Chinatown    1974    130 min    1974-06-20    {"Roman Polanski"}    {"Robert Towne"}    8.19999999999999929    209    \N    JJ 'Jake' Gittes is a private detective who seems to specialize in matrimonial cases. He is hired by Evelyn Mulwray when she suspects her husband Hollis, builder of the city's water supply system, of having an affair. Gittes does what he does best and photographs him with a young girl but in the ensuing scandal, it seems he was hired by an impersonator and not the real Mrs. Mulwray. When Mr. Mulwray is found dead, Jake is plunged into a complex web of deceit involving murder, incest and municipal corruption all related to the city's water supply.    English, Cantonese, Spanish    USA    Won 1 Oscar. Another 20 wins & 23 nominations.    2016-04-20 14:32:03.17009    2016-04-28 12:07:45.924085    2.09    MV5BMTUyMTQ1NjA2OV5BMl5BanBnXkFtZTcwODQ1Njg3OA__._V1_SX300.jpg    image/jpeg    34891    2016-04-28 12:07:45.737261
583    tt3170832    Room    2015    118 min    2016-01-22    {"Lenny Abrahamson"}    {"Emma Donoghue (screenplay)","Emma Donoghue (based on the novel by)"}    8.30000000000000071    121    \N    ROOM tells the extraordinary story of Jack, a spirited 5-year-old who is looked after by his loving and devoted mother. Like any good mother, Ma dedicates herself to keeping Jack happy and safe, nurturing him with warmth and love and doing typical things like playing games and telling stories. Their life, however, is anything but typical--they are trapped--confined to a 10-by-10-foot space that Ma has euphemistically named Room. Ma has created a whole universe for Jack within Room, and she will stop at nothing to ensure that, even in this treacherous environment, Jack is able to live a complete and fulfilling life. But as Jack's curiosity about their situation grows, and Ma's resilience reaches its breaking point, they enact a risky plan to escape, ultimately bringing them face-to-face with what may turn out to be the scariest thing yet: the real world.    English    Ireland, Canada    Won 1 Oscar. Another 90 wins & 121 nominations.    2016-04-20 14:32:03.250941    2016-04-28 12:07:48.100331    1.3    MV5BMjE4NzgzNzEwMl5BMl5BanBnXkFtZTgwMTMzMDE0NjE_._V1_SX300.jpg    image/jpeg    34021    2016-04-28 12:07:47.903878
584    tt0057115    The Great Escape    1963    172 min    1963-07-04    {"John Sturges"}    {"Paul Brickhill (book)","James Clavell (screenplay)","W.R. Burnett (screenplay)"}    8.30000000000000071    160    \N    Based on a true story, a group of allied escape artist-type prisoners-of-war (POW's) are all put in an 'escape proof' camp. Their leader decides to try to take out several hundred all at once. The first half of the film is played for comedy as the prisoners mostly outwit their jailers to dig the escape tunnel. The second half is high adventure as they use boats and trains and planes to get out of occupied Europe.    English, German, French, Russian    USA    Nominated for 1 Oscar. Another 2 wins & 7 nominations.    2016-04-20 14:32:03.290867    2016-04-28 12:07:49.041118    4.67    MV5BMjI2MTQwNDI3Nl5BMl5BanBnXkFtZTcwNDk4MTkzNA__._V1_SX300.jpg    image/jpeg    54294    2016-04-28 12:07:48.838409
585    tt0113277    Heat    1995    170 min    1995-12-15    {"Michael Mann"}    {"Michael Mann"}    8.19999999999999929    420    \N    Hunters and their prey--Neil and his professional criminal crew hunt to score big money targets (banks, vaults, armored cars) and are, in turn, hunted by Lt. Vincent Hanna and his team of cops in the Robbery/Homicide police division. A botched job puts Hanna onto their trail while they regroup and try to put together one last big 'retirement' score. Neil and Vincent are similar in many ways, including their troubled personal lives. At a crucial moment in his life, Neil disobeys the dictum taught to him long ago by his criminal mentor--'Never have anything in your life that you can't walk out on in thirty seconds flat, if you spot the heat coming around the corner'--as he falls in love. Thus the stage is set for the suspenseful ending....    English, Spanish    USA    12 nominations.    2016-04-20 14:32:03.341836    2016-04-28 12:07:49.828344    4.97    MV5BMTM1NDc4ODkxNV5BMl5BanBnXkFtZTcwNTI4ODE3MQ__._V1_SX300.jpg    image/jpeg    32315    2016-04-28 12:07:49.605518
587    tt0457430    Pan's Labyrinth    2006    118 min    2007-01-19    {"Guillermo del Toro"}    {"Guillermo del Toro"}    8.19999999999999929    453    \N    In 1944 falangist Spain, a girl, fascinated with fairy-tales, is sent along with her pregnant mother to live with her new stepfather, a ruthless captain of the Spanish army. During the night, she meets a fairy who takes her to an old faun in the center of the labyrinth. He tells her she's a princess, but must prove her royalty by surviving three gruesome tasks. If she fails, she will never prove herself to be the the true princess and will never see her real father, the king, again.    Spanish    Spain, Mexico, USA    Won 3 Oscars. Another 93 wins & 97 nominations.    2016-04-20 14:32:03.437561    2016-04-28 12:07:50.495223    4.25    MV5BMTU3ODg2NjQ5NF5BMl5BanBnXkFtZTcwMDEwODgzMQ__._V1_SX300.jpg    image/jpeg    47427    2016-04-28 12:07:50.299017
591    tt2948356    Zootopia    2016    108 min    2016-03-04    {"Byron Howard","Rich Moore","Jared Bush"}    {"Byron Howard (story)","Jared Bush (story)","Rich Moore (story)","Josie Trinidad (story)","Jim Reardon (story)","Phil Johnston (story)","Jennifer Lee (story)","Jared Bush (screenplay)","Phil Johnston (screenplay)","Dan Fogelman (additional story material)"}    8.40000000000000036    42    \N    From the largest elephant to the smallest shrew, the city of Zootopia is a mammal metropolis where various animals live and thrive. When Judy Hopps becomes the first rabbit to join the police force, she quickly learns how tough it is to enforce the law. Determined to prove herself, Judy jumps at the opportunity to solve a mysterious case. Unfortunately, that means working with Nick Wilde, a wily fox who makes her job even harder.    English, Norwegian    USA    N/A    2016-04-20 14:32:03.629531    2016-04-28 12:07:53.699739    2.08    MV5BOTMyMjEyNzIzMV5BMl5BanBnXkFtZTgwNzIyNjU0NzE_._V1_SX300.jpg    image/jpeg    48157    2016-04-28 12:07:53.500944
592    tt0031679    Mr. Smith Goes to Washington    1939    129 min    1939-10-19    {"Frank Capra"}    {"Sidney Buchman (screen play)","Lewis R. Foster (story)"}    8.30000000000000071    74    \N    Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed on a lark by the spineless governor of his state. He is reunited with the state's senior senator--presidential hopeful and childhood hero, Senator Joseph Paine. In Washington, however, Smith discovers many of the shortcomings of the political process as his earnest goal of a national boys' camp leads to a conflict with the state political boss, Jim Taylor. Taylor first tries to corrupt Smith and then later attempts to destroy Smith through a scandal.    English    USA    Won 1 Oscar. Another 4 wins & 11 nominations.    2016-04-20 14:32:03.673149    2016-04-28 12:07:54.738327    1.89    MV5BMjAwMzU5ODkwNF5BMl5BanBnXkFtZTcwNTg4Mjk3OA__._V1_SX300.jpg    image/jpeg    49625    2016-04-28 12:07:54.536101
594    tt0089881    Ran    1985    162 min    1985-06-01    {"Akira Kurosawa"}    {"Akira Kurosawa (screenplay)","Hideo Oguni (screenplay)","Masato Ide (screenplay)","William Shakespeare (play)"}    8.30000000000000071    74    \N    Japanese warlord Hidetori Ichimonji decides the time has come to retire and divide his fiefdom among his three sons. His eldest and middle sons - Taro and Jiro - agree with his decision and promise to support him for his remaining days. The youngest son Saburo disagrees with all of them arguing that there is little likelihood the three brothers will remain united. Insulted by his son's brashness, the warlord banishes Saburo. As the warlord begins his retirement, he quickly realizes that his two eldest sons selfish and have no intention of keeping their promises. It leads to war and only banished Saburo c an possibly save him.    Japanese    Japan, France    Won 1 Oscar. Another 25 wins & 22 nominations.    2016-04-20 14:32:03.760723    2016-04-28 12:07:55.588695    1.83    MV5BNTEyNjg0MDM4OF5BMl5BanBnXkFtZTgwODI0NjUxODE_._V1_SX300.jpg    image/jpeg    38175    2016-04-28 12:07:55.393238
595    tt0050212    The Bridge on the River Kwai    1957    161 min    1957-12-14    {"David Lean"}    {"Pierre Boulle (novel)","Carl Foreman (screenplay)","Michael Wilson (screenplay)"}    8.19999999999999929    143    \N    The film deals with the situation of British prisoners of war during World War II who are ordered to build a bridge to accommodate the Burma-Siam railway. Their instinct is to sabotage the bridge but, under the leadership of Colonel Nicholson, they are persuaded that the bridge should be constructed as a symbol of British morale, spirit and dignity in adverse circumstances. At first, the prisoners admire Nicholson when he bravely endures torture rather than compromise his principles for the benefit of the Japanese commandant Saito. He is an honorable but arrogant man, who is slowly revealed to be a deluded obsessive. He convinces himself that the bridge is a monument to British character, but actually is a monument to himself, and his insistence on its construction becomes a subtle form of collaboration with the enemy. Unknown to him, the Allies have sent a mission into the jungle, led by Warden and an American, Shears, to blow up the bridge.    English, Japanese, Thai    UK, USA    Won 7 Oscars. Another 23 wins & 7 nominations.    2016-04-20 14:32:03.810006    2016-04-28 12:07:56.383625    2.13    MV5BMTc2NzA0NTEwNF5BMl5BanBnXkFtZTcwMzA0MTk3OA__._V1_SX300.jpg    image/jpeg    40890    2016-04-28 12:07:56.184861
605    tt0112641    Casino    1995    178 min    1995-11-22    {"Martin Scorsese"}    {"Nicholas Pileggi (book)","Nicholas Pileggi (screenplay)","Martin Scorsese (screenplay)"}    8.19999999999999929    323    \N    This Martin Scorsese film depicts the Janus-like quality of Las Vegas--it has a glittering, glamorous face, as well as a brutal, cruel one. Ace Rothstein and Nicky Santoro, mobsters who move to Las Vegas to make their mark, live and work in this paradoxical world. Seen through their eyes, each as a foil to the other, the details of mob involvement in the casinos of the 1970's and '80's are revealed. Ace is the smooth operator of the Tangiers casino, while Nicky is his boyhood friend and tough strongman, robbing and shaking down the locals. However, they each have a tragic flaw--Ace falls in love with a hustler, Ginger, and Nicky falls into an ever-deepening spiral of drugs and violence.    English    USA, France    Nominated for 1 Oscar. Another 3 wins & 9 nominations.    2016-04-20 14:32:04.2398    2016-04-28 12:07:59.640239    4.12    MV5BMTMzMjkwMTk4Nl5BMl5BanBnXkFtZTYwNjYxMjk5._V1_SX300.jpg    image/jpeg    17970    2016-04-28 12:07:59.454857
599    tt1305806    The Secret in Their Eyes    2009    129 min    2010-05-21    {"Juan José Campanella"}    {"Eduardo Sacheri","Juan José Campanella","Eduardo Sacheri (novel)"}    8.19999999999999929    124    \N    In 1999, retired Argentinian federal justice agent Benjamín Espósito is writing a novel, using an old closed case as the source material. That case is the brutal rape and murder of Liliana Coloto. In addition to seeing the extreme grief of the victim's husband Ricardo Morales, Benjamín, his assistant Pablo Sandoval, and newly hired department chief Irene Menéndez-Hastings were personally affected by the case as Benjamín and Pablo tracked the killer, hence the reason why the unsatisfactory ending to the case has always bothered him. Despite the department already having two other suspects, Benjamín and Pablo ultimately were certain that a man named Isidoro Gómez is the real killer. Although he is aware that historical accuracy is not paramount for the novel, the process of revisiting the case is more an issue of closure for him. He tries to speak to the key players in the case, most specifically Irene, who still works in the justice department and who he has always been attracted to but never pursued due to the differences in their ages and social classes. The other issue is that Gómez is still at large, no one aware if he is alive or dead. But as Pablo at the time mentioned that passion is one thing that cannot be changed in behavior, Benjamín learns now that that premise still holds true.    Spanish    Argentina, Spain    Won 1 Oscar. Another 51 wins & 39 nominations.    2016-04-20 14:32:03.98446    2016-04-28 12:08:00.357904    1.34    MV5BMTgwNTI3OTczOV5BMl5BanBnXkFtZTcwMTM3MTUyMw__._V1_SX300.jpg    image/jpeg    27281    2016-04-28 12:08:00.16467
745    tt0063929    Monty Python's Flying Circus    1969–1974    30 min    1969-10-05    {N/A}    {"Graham Chapman","Eric Idle","Terry Jones","Michael Palin","Terry Gilliam","John Cleese"}    8.90000000000000036    42    \N    The irreverent Monty Python comedy troupe present a series of skits which are often surreal, bawdy, uncompromising and/or tasteless, but nearly always hilarious.    English, Arabic, French, German, Italian, Mandarin, Spanish    UK    4 wins & 7 nominations.    2016-04-20 14:32:26.230295    2016-04-28 12:06:09.448015    4.15    MV5BNzY1MDE5OTY4Ml5BMl5BanBnXkFtZTgwOTAyNTQ1NjE_._V1_SX300.jpg    image/jpeg    35063    2016-04-28 12:06:09.240788
600    tt0083658    Blade Runner    1982    117 min    1982-06-25    {"Ridley Scott"}    {"Hampton Fancher (screenplay)","David Webb Peoples (screenplay)","Philip K. Dick (novel)"}    8.19999999999999929    449    \N    In the futuristic year of 2019, Los Angeles has become a dark and depressing metropolis, filled with urban decay. Rick Deckard, an ex-cop, is a "Blade Runner". Blade runners are people assigned to assassinate "replicants". The replicants are androids that look like real human beings. When four replicants commit a bloody mutiny on the Off World colony, Deckard is called out of retirement to track down the androids. As he tracks the replicants, eliminating them one by one, he soon comes across another replicant, Rachel, who evokes human emotion, despite the fact that she's a replicant herself. As Deckard closes in on the leader of the replicant group, his true hatred toward artificial intelligence makes him question his own identity in this future world, including what's human and what's not human.    English, German, Cantonese, Japanese, Hungarian    USA, Hong Kong, UK    Nominated for 2 Oscars. Another 11 wins & 16 nominations.    2016-04-20 14:32:04.028746    2016-04-28 12:08:01.056498    1.33    MV5BMTA4MDQxNTk2NDheQTJeQWpwZ15BbWU3MDE2NjIyODk_._V1_SX300.jpg    image/jpeg    42334    2016-04-28 12:08:00.876439
601    tt0120735    Lock, Stock and Two Smoking Barrels    1998    107 min    1998-08-28    {"Guy Ritchie"}    {"Guy Ritchie"}    8.19999999999999929    404    \N    Four Jack-the-lads find themselves heavily - seriously heavily - in debt to an East End hard man and his enforcers after a crooked card game. Overhearing their neighbours in the next flat plotting to hold up a group of out-of-their-depth drug growers, our heros decide to stitch up the robbers in turn. In a way the confusion really starts when a pair of antique double-barrelled shotguns go missing in a completely different scam.    English    UK    Nominated for 1 BAFTA Film Award. Another 13 wins & 8 nominations.    2016-04-20 14:32:04.06934    2016-04-28 12:08:01.767384    4.33    MV5BMTU4MTM1MjUxMF5BMl5BanBnXkFtZTYwOTEzODY4._V1_SX300.jpg    image/jpeg    33287    2016-04-28 12:08:01.574904
788    tt0096639    Lonesome Dove    1989    384 min    1989-02-05    {N/A}    {N/A}    8.80000000000000071    14    \N    Epic story about two former Texas rangers who decide to move cattle from the south to Montana. Augustus McCrae and Woodrow Call run into many problems on the way, and the journey doesn't end without numerous casualties. (6 hrs approx)    English    USA    Won 2 Golden Globes. Another 16 wins & 17 nominations.    2016-04-20 14:32:46.410794    2016-04-28 12:08:02.517912    2.42    MV5BMjA4Nzk2NDc4N15BMl5BanBnXkFtZTcwMjYzMTE4MQ__._V1._CR12_29_324_463_SY132_CR1_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5762    2016-04-28 12:08:02.365492
602    tt0050986    Wild Strawberries    1957    91 min    1959-06-22    {"Ingmar Bergman"}    {"Ingmar Bergman"}    8.19999999999999929    60    \N    With the exception of his elderly housekeeper Miss Agda who he treats almost like a surrogate platonic wife, widowed seventy-eight year old Dr. Isak Borg, a former medical doctor and professor, has retreated from any human contact, partly his own want but partly the decision of others who do not want to spend time with him because of his cold demeanor. He is traveling from his home in Stockholm to Lund to accept an honorary degree. Instead of flying as was the original plan, he decides to take the day long drive instead. Along for the ride is his daughter-in-law Marianne, who had been staying with him for the month but has now decided to go home. The many stops and encounters along the way make him reminisce about various parts of his life. Those stops which make him reminisce directly are at his childhood summer home, at the home of his equally emotionally cold mother, and at a gas station where the attendants praise him as a man for his work. But the lives of other people they encounter almost mirror his own, including hitchhikers Sara, Viktor and Anders - who remind him of his cousin Sara who he was going to marry, himself and his irresponsible brother Sigfrid who Sara eventually married - a bickering married couple Sten and Berit Alman, and Marianne and her husband and Isak's son Evald, whose marriage is as strained as was his own.    Swedish, Latin    Sweden    Nominated for 1 Oscar. Another 12 wins & 2 nominations.    2016-04-20 14:32:04.110102    2016-04-28 12:08:03.339549    4.4    MV5BMjgwNjI3NTM1MF5BMl5BanBnXkFtZTgwNzY3MTUyMjE_._V1_SX300.jpg    image/jpeg    40391    2016-04-28 12:08:03.123641
606    tt0080678    The Elephant Man    1980    124 min    1980-10-10    {"David Lynch"}    {"Christopher De Vore (screenplay)","Eric Bergren (screenplay)","David Lynch (screenplay)","Frederick Treves (book)","Ashley Montagu (in part on the book \\"The Elephant Man: A Study in Human Dignity\\")"}    8.19999999999999929    156    \N    John Merrick (whose real name was Joseph, as this is based on a true story) is an intelligent and friendly man, but he is hated by his Victorian-era English society because he is severely deformed. Once he is discovered by a doctor, however, he is saved from his life in a freak show and he is treated like the human being that he really is.    English    USA, UK    Nominated for 8 Oscars. Another 10 wins & 14 nominations.    2016-04-20 14:32:04.288295    2016-04-28 12:08:04.045982    3.43    MV5BMTExNTk0MjIzNDZeQTJeQWpwZ15BbWU3MDY5ODI5Nzg_._V1_SX300.jpg    image/jpeg    38399    2016-04-28 12:08:03.866048
607    tt1291584    Warrior    2011    140 min    2011-09-09    {"Gavin O'Connor"}    {"Gavin O'Connor (screenplay)","Anthony Tambakis (screenplay)","Cliff Dorfman (screenplay)","Gavin O'Connor (story)","Cliff Dorfman (story)"}    8.19999999999999929    321    \N    Two brothers face the fight of a lifetime - and the wreckage of their broken family - within the brutal, high-stakes world of Mixed Martial Arts (MMA) fighting in Lionsgate's action/drama, WARRIOR. A former Marine, haunted by a tragic past, Tommy Riordan returns to his hometown of Pittsburgh and enlists his father, a recovered alcoholic and his former coach, to train him for an MMA tournament awarding the biggest purse in the history of the sport. As Tommy blazes a violent path towards the title prize, his brother, Brendan, a former MMA fighter unable to make ends meet as a public school teacher, returns to the amateur ring to provide for his family. Even though years have passed, recriminations and past betrayals keep Brendan bitterly estranged from both Tommy and his father. But when Brendan's unlikely rise as an underdog sets him on a collision course with Tommy, the two brothers must finally confront the forces that tore them apart, all the while waging the most intense, winner-takes-all battle of their lives.    English, Spanish    USA    Nominated for 1 Oscar. Another 6 wins & 19 nominations.    2016-04-20 14:32:04.326737    2016-04-28 12:08:05.525928    1.21    MV5BMTk4ODk5MTMyNV5BMl5BanBnXkFtZTcwMDMyNTg0Ng__._V1_SX300.jpg    image/jpeg    28949    2016-04-28 12:08:05.334284
608    tt0993846    The Wolf of Wall Street    2013    180 min    2013-12-25    {"Martin Scorsese"}    {"Terence Winter (screenplay)","Jordan Belfort (book)"}    8.19999999999999929    736    \N    Jordan Belfort is a Long Island penny stockbroker who served 22 months in prison for defrauding investors in a massive 1990s securities scam that involved widespread corruption on Wall Street and in the corporate banking world, including shoe designer Steve Madden.    English, French    USA    Nominated for 5 Oscars. Another 35 wins & 151 nominations.    2016-04-20 14:32:04.367807    2016-04-28 12:08:06.32451    3.42    MV5BMjIxMjgxNTk0MF5BMl5BanBnXkFtZTgwNjIyOTg2MDE_._V1_SX300.jpg    image/jpeg    47550    2016-04-28 12:08:06.139073
611    tt0268978    A Beautiful Mind    2001    135 min    2002-01-04    {"Ron Howard"}    {"Akiva Goldsman","Sylvia Nasar (book)"}    8.19999999999999929    587    \N    From the heights of notoriety to the depths of depravity, John Forbes Nash, Jr. experienced it all. A mathematical genius, he made an astonishing discovery early in his career and stood on the brink of international acclaim. But the handsome and arrogant Nash soon found himself on a painful and harrowing journey of self-discovery. After many years of struggle, he eventually triumphed over his tragedy, and finally - late in life - received the Nobel Prize.    English    USA    Won 4 Oscars. Another 32 wins & 63 nominations.    2016-04-20 14:32:04.498559    2016-04-28 12:08:07.347506    2.64    MV5BMTQ4MDI2MzkwMl5BMl5BanBnXkFtZTYwMjk0NTA5._V1_SX300.jpg    image/jpeg    34102    2016-04-28 12:08:07.14227
612    tt1205489    Gran Torino    2008    116 min    2009-01-09    {"Clint Eastwood"}    {"Nick Schenk (screenplay)","Dave Johannson (story)","Nick Schenk (story)"}    8.19999999999999929    546    \N    Walt Kowalski is a widower who holds onto his prejudices despite the changes in his Michigan neighborhood and the world around him. Kowalski is a grumpy, tough-minded, unhappy old man who can't get along with either his kids or his neighbors. He is a Korean War veteran whose prize possession is a 1972 Gran Torino he keeps in mint condition. When his neighbor Thao, a young Hmong teenager under pressure from his gang member cousin, tries to steal his Gran Torino, Kowalski sets out to reform the youth. Drawn against his will into the life of Thao's family, Kowalski is soon taking steps to protect them from the gangs that infest their neighborhood.    English, Hmong    USA, Germany    Nominated for 1 Golden Globe. Another 20 wins & 13 nominations.    2016-04-20 14:32:04.539736    2016-04-28 12:08:08.074563    2.72    MV5BMTQyMTczMTAxMl5BMl5BanBnXkFtZTcwOTc1ODE0Mg__._V1_SX300.jpg    image/jpeg    20660    2016-04-28 12:08:07.889317
613    tt0118715    The Big Lebowski    1998    117 min    1998-03-06    {"Joel Coen","Ethan Coen"}    {"Ethan Coen","Joel Coen"}    8.19999999999999929    518    \N    When "The Dude" Lebowski is mistaken for a millionaire Lebowski, two thugs urinate on his rug to coerce him into paying a debt he knows nothing about. While attempting to gain recompense for the ruined rug from his wealthy counterpart, he accepts a one-time job with high pay-off. He enlists the help of his bowling buddy, Walter, a gun-toting Jewish-convert with anger issues. Deception leads to more trouble, and it soon seems that everyone from porn empire tycoons to nihilists want something from The Dude.    English, German, Hebrew, Spanish    USA, UK    4 wins & 16 nominations.    2016-04-20 14:32:04.584229    2016-04-28 12:08:08.940454    3.65    MV5BMTQ0NjUzMDMyOF5BMl5BanBnXkFtZTgwODA1OTU0MDE_._V1_SX300.jpg    image/jpeg    39019    2016-04-28 12:08:08.755777
615    tt0077416    The Deer Hunter    1978    183 min    1979-02-23    {"Michael Cimino"}    {"Michael Cimino (story)","Deric Washburn (story)","Louis Garfinkle (story)","Quinn K. Redeker (story)","Deric Washburn (screenplay)"}    8.19999999999999929    226    \N    An in-depth examination of the ways in which the U.S. Vietnam war impacts and disrupts the lives of people in a small industrial town in Pennsylvania.    English, Russian, Vietnamese, French    UK, USA    Won 5 Oscars. Another 17 wins & 26 nominations.    2016-04-20 14:32:04.671548    2016-04-28 12:08:09.638324    4.77    MV5BMTk3MTQzMDUwMF5BMl5BanBnXkFtZTgwMTUxNzYxMTE_._V1_SX300.jpg    image/jpeg    36884    2016-04-28 12:08:09.458437
784    tt0773262    Dexter    2006–2013    53 min    2006-10-01    {N/A}    {"James Manos Jr."}    8.80000000000000071    482    \N    Dexter Morgan is a Forensics Expert, a loyal brother, boyfriend, and friend. That's what he seems to be, but that's not what he really is. Dexter Morgan is a Serial Killer that hunts the bad.    English, Spanish    USA    Won 2 Golden Globes. Another 40 wins & 176 nominations.    2016-04-20 14:32:44.433337    2016-04-28 12:06:19.019468    1.82    MV5BMTM5MjkwMTI0MV5BMl5BanBnXkFtZTcwODQwMTc0OQ__._V1_SX300.jpg    image/jpeg    39955    2016-04-28 12:06:18.849234
616    tt0032976    Rebecca    1940    130 min    1940-04-12    {"Alfred Hitchcock"}    {"Daphne Du Maurier (celebrated novel)","Robert E. Sherwood (screen play)","Joan Harrison (screen play)","Philip MacDonald (adaptation)","Michael Hogan (adaptation)"}    8.19999999999999929    84    \N    A shy ladies' companion, staying in Monte Carlo with her stuffy employer, meets the wealthy Maxim de Winter. She and Max fall in love, marry and return to Manderley, his large country estate in Cornwall. Max is still troubled by the death of his first wife, Rebecca, in a boating accident the year before. The second Mrs. de Winter clashes with the housekeeper, Mrs. Danvers, and discovers that Rebecca still has a strange hold on everyone at Manderley.    English, French    USA    Won 2 Oscars. Another 2 wins & 10 nominations.    2016-04-20 14:32:04.713559    2016-04-28 12:08:10.942042    3.33    MV5BMTM5ODA4ODMzM15BMl5BanBnXkFtZTcwOTA2NTEwNA__._V1._CR9_22_314_458_SY132_CR0_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5484    2016-04-28 12:08:10.803936
516    tt0032553    The Great Dictator    1940    125 min    1941-03-07    {"Charles Chaplin"}    {"Charles Chaplin"}    8.5    131    \N    Dictator Adenoid Hynkel tries to expand his empire while a poor Jewish barber tries to avoid persecution from Hynkel's regime.    English, Esperanto    USA    Nominated for 5 Oscars. Another 5 wins & 1 nomination.    2016-04-20 14:32:00.267499    2016-04-28 12:06:04.292729    3.18    MV5BMTQ5NDAwMDgzOV5BMl5BanBnXkFtZTgwNDI2MjA0MjE_._V1_SX300.jpg    image/jpeg    39574    2016-04-28 12:06:04.090246
617    tt0031381    Gone with the Wind    1939    238 min    1940-01-17    {"Victor Fleming","George Cukor","Sam Wood"}    {"Margaret Mitchell (story)","Sidney Howard (screenplay)"}    8.19999999999999929    209    \N    Scarlett is a woman who can deal with a nation at war, Atlanta burning, the Union Army carrying off everything from her beloved Tara, the carpetbaggers who arrive after the war. Scarlett is beautiful. She has vitality. But Ashley, the man she has wanted for so long, is going to marry his placid cousin, Melanie. Mammy warns Scarlett to behave herself at the party at Twelve Oaks. There is a new man there that day, the day the Civil War begins. Rhett Butler. Scarlett does not know he is in the room when she pleads with Ashley to choose her instead of Melanie.    English    USA    Won 8 Oscars. Another 9 wins & 8 nominations.    2016-04-20 14:32:04.75376    2016-04-28 12:08:11.61391    3.77    MV5BNDUwMjAxNTU1MF5BMl5BanBnXkFtZTgwMzg4NzMxMDE_._V1_SX300.jpg    image/jpeg    48414    2016-04-28 12:08:11.386305
618    tt0116282    Fargo    1996    98 min    1996-04-05    {"Joel Coen","Ethan Coen"}    {"Ethan Coen","Joel Coen"}    8.19999999999999929    439    \N    Jerry Lundegaard's inept crime falls apart due to his and his henchmen's bungling and the persistent police work of the quite pregnant Marge Gunderson.    English    USA, UK    Won 2 Oscars. Another 73 wins & 52 nominations.    2016-04-20 14:32:04.795195    2016-04-28 12:08:13.616557    2.75    MV5BMTgxNzY3MzUxOV5BMl5BanBnXkFtZTcwMDA0NjMyNA__._V1_SX300.jpg    image/jpeg    56090    2016-04-28 12:08:13.424839
619    tt0117951    Trainspotting    1996    94 min    1996-08-09    {"Danny Boyle"}    {"Irvine Welsh (novel)","John Hodge (screenplay)"}    8.19999999999999929    456    \N    A wild, freeform, Rabelaisian trip through the darkest recesses of Edinburgh low-life, focusing on Mark Renton and his attempt to give up his heroin habit, and how the latter affects his relationship with family and friends: Sean Connery wannabe Sick Boy, dimbulb Spud, psycho Begbie, 14-year-old girlfriend Diane, and clean-cut athlete Tommy, who's never touched drugs but can't help being curious about them...    English    UK    Nominated for 1 Oscar. Another 20 wins & 26 nominations.    2016-04-20 14:32:04.833464    2016-04-28 12:08:14.48779    4.05    MV5BMTg2MzcxNTY3NV5BMl5BanBnXkFtZTgwOTQ5NDQxMDE_._V1_SX300.jpg    image/jpeg    32384    2016-04-28 12:08:14.286169
620    tt0061512    Cool Hand Luke    1967    126 min    1967-11-01    {"Stuart Rosenberg"}    {"Donn Pearce (screenplay)","Frank Pierson (screenplay)","Donn Pearce (novel)"}    8.19999999999999929    116    \N    Luke Jackson is a cool, gutsy prisoner in a Southern chain gang, who, while refusing to buckle under to authority, keeps escaping and being recaptured. The prisoners admire Luke because, as Dragline explains it, "You're an original, that's what you are!" Nevertheless, the camp staff actively works to crush Luke until he finally breaks.    English    USA    Won 1 Oscar. Another 2 wins & 9 nominations.    2016-04-20 14:32:04.875791    2016-04-28 12:08:15.269451    1.3    MV5BODMyMDA0MTY2OF5BMl5BanBnXkFtZTcwMzkzNjk3OA__._V1_SX300.jpg    image/jpeg    24903    2016-04-28 12:08:15.085301
621    tt0892769    How to Train Your Dragon    2010    98 min    2010-03-26    {"Dean DeBlois","Chris Sanders"}    {"William Davies (screenplay)","Dean DeBlois (screenplay)","Chris Sanders (screenplay)","Cressida Cowell (book)"}    8.19999999999999929    463    \N    Long ago up North on the Island of Berk, the young Viking, Hiccup, wants to join his town's fight against the dragons that continually raid their town. However, his macho father and village leader, Stoik the Vast, will not allow his small, clumsy, but inventive son to do so. Regardless, Hiccup ventures out into battle and downs a mysterious Night Fury dragon with his invention, but can't bring himself to kill it. Instead, Hiccup and the dragon, whom he dubs Toothless, begin a friendship that would open up both their worlds as the observant boy learns that his people have misjudged the species. But even as the two each take flight in their own way, they find that they must fight the destructive ignorance plaguing their world.    English    USA    Nominated for 2 Oscars. Another 25 wins & 57 nominations.    2016-04-20 14:32:04.921604    2016-04-28 12:08:16.533874    3.59    MV5BMjA5NDQyMjc2NF5BMl5BanBnXkFtZTcwMjg5ODcyMw__._V1_SX300.jpg    image/jpeg    33213    2016-04-28 12:08:16.348489
622    tt0046912    Dial M for Murder    1954    105 min    1954-05-29    {"Alfred Hitchcock"}    {"Frederick Knott (screen play)","Frederick Knott (adapted from his play)"}    8.19999999999999929    102    \N    In London, wealthy Margot Mary Wendice had a brief love affair with the American writer Mark Halliday while her husband and professional tennis player Tony Wendice was on a tennis tour. Tony quits playing to dedicate to his wife and finds a regular job. She decides to give him a second chance for their marriage. When Mark arrives from America to visit the couple, Margot tells him that she had destroyed all his letters but one that was stolen. Subsequently she was blackmailed, but she had never retrieved the stolen letter. Tony arrives home, claims that he needs to work and asks Margot to go with Mark to the theater. Meanwhile Tony calls Captain Lesgate (aka Charles Alexander Swann who studied with him at college) and blackmails him to murder his wife, so that he can inherit her fortune. But there is no perfect crime, and things do not work as planned.    English    USA    Nominated for 1 BAFTA Film Award. Another 3 wins & 2 nominations.    2016-04-20 14:32:04.963176    2016-04-28 12:08:17.37549    4.39    MV5BMTkyNzc4ODk4N15BMl5BanBnXkFtZTcwMDE5ODEwNA__._V1_SX300.jpg    image/jpeg    27966    2016-04-28 12:08:17.188361
624    tt0266543    Finding Nemo    2003    100 min    2003-05-30    {"Andrew Stanton","Lee Unkrich"}    {"Andrew Stanton (original story by)","Andrew Stanton (screenplay)","Bob Peterson (screenplay)","David Reynolds (screenplay)"}    8.09999999999999964    661    \N    A clown fish named Marlin lives in the Great Barrier Reef loses his son, Nemo. After he ventures into the open sea, despite his father's constant warnings about many of the ocean's dangers. Nemo is abducted by a boat and netted up and sent to a dentist's office in Sydney. So, while Marlin ventures off to try to retrieve Nemo, Marlin meets a fish named Dory, a blue tang suffering from short-term memory loss. The companions travel a great distance, encountering various dangerous sea creatures such as sharks, anglerfish and jellyfish, in order to rescue Nemo from the dentist's office, which is situated by Sydney Harbor. While the two are doing this, Nemo and the other sea animals in the dentist's fish tank plot a way to return to Sydney Harbor to live their lives free again.    English    USA    Won 1 Oscar. Another 45 wins & 58 nominations.    2016-04-20 14:32:05.049657    2016-04-28 12:08:18.557469    1.26    MV5BMTY1MTg1NDAxOV5BMl5BanBnXkFtZTcwMjg1MDI5Nw__._V1_SX300.jpg    image/jpeg    37313    2016-04-28 12:08:18.367041
626    tt0084787    The Thing    1982    109 min    1982-06-25    {"John Carpenter"}    {"Bill Lancaster (screenplay)","John W. Campbell Jr. (story)"}    8.19999999999999929    248    \N    An American scientific expedition to the frozen wastes of the Antarctic is interrupted by a group of seemingly mad Norwegians pursuing and shooting a dog. The helicopter pursuing the dog explodes, eventually leaving no explanation for the chase. During the night, the dog mutates and attacks other dogs in the cage and members of the team that investigate. The team soon realizes that an alien life-form with the ability to take over other bodies is on the loose and they don't know who may already have been taken over.    English, Norwegian    USA    3 nominations.    2016-04-20 14:32:05.135682    2016-04-28 12:08:19.287801    1.11    MV5BNTQ5ODU0NjUwOV5BMl5BanBnXkFtZTgwOTcwNDgwNzE_._V1_SX300.jpg    image/jpeg    34611    2016-04-28 12:08:19.099203
506    tt0088763    Back to the Future    1985    116 min    1985-07-03    {"Robert Zemeckis"}    {"Robert Zemeckis","Bob Gale"}    8.5    707    \N    A young man is accidentally sent thirty years into the past in a time-traveling DeLorean invented by his friend, Dr. Emmett Brown, and must make sure his high-school-age parents unite in order to save his own existence.    English    USA    Won 1 Oscar. Another 18 wins & 26 nominations.    2016-04-20 14:31:59.854785    2016-04-28 12:08:19.975155    4.77    MV5BMjA5NTYzMDMyM15BMl5BanBnXkFtZTgwNjU3NDU2MTE_._V1_SX300.jpg    image/jpeg    43264    2016-04-28 12:08:19.788097
628    tt0978762    Mary and Max    2009    92 min    2009-04-09    {"Adam Elliot"}    {"Adam Elliot"}    8.19999999999999929    114    \N    In the mid-1970's, a homely, friendless Australian girl of 8 picks a name out of a Manhattan phone book and writes to him; she includes a chocolate bar. She's Mary Dinkle, the only child of an alcoholic mother and a distracted father. He's Max Horowitz, an overweight man with Asperger's, living alone in New York. He writes back, with chocolate. Thus begins a 20-year correspondence, interrupted by a stay in an asylum and a few misunderstandings. Mary falls in love with a neighbor, saves money to have a birthmark removed and deals with loss. Max has a friendship with a neighbor, tries to control his weight, and finally gets the dream job. Will the two ever meet face to face?    English, Yiddish    Australia    4 wins & 7 nominations.    2016-04-20 14:32:05.228079    2016-04-28 12:08:21.401545    1.79    MV5BMTQ1NDIyNTA1Nl5BMl5BanBnXkFtZTcwMjc2Njk3OA__._V1_SX300.jpg    image/jpeg    22116    2016-04-28 12:08:21.217157
629    tt0025316    It Happened One Night    1934    105 min    1934-02-23    {"Frank Capra"}    {"Robert Riskin (screen play)","Samuel Hopkins Adams (based on the short story by)"}    8.19999999999999929    62    \N    Ellie Andrews has just tied the knot with society aviator King Westley when she is whisked away to her father's yacht and out of King's clutches. Ellie jumps ship and eventually winds up on a bus headed back to her husband. Reluctantly she must accept the help of out-of- work reporter Peter Warne. Actually, Warne doesn't give her any choice: either she sticks with him until he gets her back to her husband, or he'll blow the whistle on Ellie to her father. Either way, Peter gets what (he thinks!) he wants .... a really juicy newspaper story.    English    USA    Won 5 Oscars. Another 5 wins & 1 nomination.    2016-04-20 14:32:05.270549    2016-04-28 12:08:22.321877    3.14    MV5BMTczOTQ1MTQ4MF5BMl5BanBnXkFtZTcwODI2MDk4OQ__._V1_SX300.jpg    image/jpeg    50635    2016-04-28 12:08:22.133443
631    tt0266697    Kill Bill: Vol. 1    2003    111 min    2003-10-10    {"Quentin Tarantino"}    {"Quentin Tarantino","Quentin Tarantino (character The Bride)","Uma Thurman (character The Bride)"}    8.09999999999999964    709    \N    The lead character, called 'The Bride,' was a member of the Deadly Viper Assassination Squad, led by her lover 'Bill.' Upon realizing she was pregnant with Bill's child, 'The Bride' decided to escape her life as a killer. She fled to Texas, met a young man, who, on the day of their wedding rehearsal was gunned down by an angry and jealous Bill (with the assistance of the Deadly Viper Assassination Squad). Four years later, 'The Bride' wakes from a coma, and discovers her baby is gone. She, then, decides to seek revenge upon the five people who destroyed her life and killed her baby. The saga of Kill Bill Volume I begins.    English, Japanese, French    USA    Nominated for 1 Golden Globe. Another 24 wins & 81 nominations.    2016-04-20 14:32:05.359087    2016-04-28 12:08:23.10767    3.27    MV5BMTU1NDg1Mzg4M15BMl5BanBnXkFtZTYwMDExOTc3._V1_SX300.jpg    image/jpeg    33804    2016-04-28 12:08:22.91866
604    tt0347149    Howl's Moving Castle    2004    119 min    2005-06-17    {"Hayao Miyazaki"}    {"Hayao Miyazaki (screenplay)","Diana Wynne Jones (novel)"}    8.19999999999999929    205    \N    Sophie, a young, beautiful girl works at a hat shop. One day, Sophie meets Howl, a boy who's mysterious and starts to take a liking to Sophie. While she was in her hat shop, Sophie meets the witch of the waist, who curses Sophie to be an old woman. Trying to hide her ugliness from her family, Sophie runs away and finds herself at Howl's castle.    Japanese    Japan    Nominated for 1 Oscar. Another 16 wins & 18 nominations.    2016-04-20 14:32:04.193782    2016-04-28 12:06:06.752754    1.98    MV5BMTY1OTg0MjE3MV5BMl5BanBnXkFtZTcwNTUxMTkyMQ__._V1_SX300.jpg    image/jpeg    39654    2016-04-28 12:06:06.573424
829    tt0280249    Dragon Ball    1995–2003    24 min    2001-06-25    {N/A}    {N/A}    8.59999999999999964    31    \N    Follows the adventures of an extraordinarily strong young boy named Goku as he searches for the seven dragon balls. These balls, when combined, can grant the owner any one wish he desires. ...    Japanese, English    Japan    N/A    2016-04-20 14:33:06.415444    2016-04-28 12:10:24.256813    3.83    MV5BMjE2NjA2MjA1OV5BMl5BanBnXkFtZTcwMDU1MDAwMQ__._V1_SX300.jpg    image/jpeg    42965    2016-04-28 12:10:24.038919
633    tt0079470    Life of Brian    1979    94 min    1979-08-17    {"Terry Jones"}    {"Graham Chapman","John Cleese","Terry Gilliam","Eric Idle","Terry Jones","Michael Palin"}    8.09999999999999964    265    \N    The story of Brian of Nazareth, born on the same day as Jesus of Nazareth, who takes a different path in life that leads to the same conclusion. Brian joins a political resistance movement aiming to get the Romans out of Judea. Brian scores a victory of sorts when he manages to paint political slogans on an entire wall in the city of Jerusalem. The movement is not very effective but somehow Brian becomes a prophet and gathers his own following. His fate is sealed however and he lives a very short life.    English, Latin    UK    N/A    2016-04-20 14:32:05.444747    2016-04-28 12:08:23.859501    1.34    MV5BMTM2NjQ4NDA0MV5BMl5BanBnXkFtZTcwMjM0Njk3OA__._V1_SX300.jpg    image/jpeg    49233    2016-04-28 12:08:23.660281
634    tt0395169    Hotel Rwanda    2004    121 min    2005-02-04    {"Terry George"}    {"Keir Pearson","Terry George"}    8.09999999999999964    255    \N    During the 1990s, some of the worst atrocities in the history of mankind took place in the country of Rwanda--and in an era of high-speed communication and round the clock news, the events went almost unnoticed by the rest of the world. In only three months, one million people were brutally murdered. In the face of these unspeakable actions, inspired by his love for his family, an ordinary man summons extraordinary courage to save the lives of over a thousand helpless refugees, by granting them shelter in the hotel he manages.    English, French    UK, USA, Italy, South Africa, Canada    Nominated for 3 Oscars. Another 16 wins & 42 nominations.    2016-04-20 14:32:05.498265    2016-04-28 12:08:24.77316    4.61    MV5BMTI2MzQyNTc1M15BMl5BanBnXkFtZTYwMjExNjc3._V1_SX300.jpg    image/jpeg    32079    2016-04-28 12:08:24.579064
609    tt0434409    V for Vendetta    2005    132 min    2006-03-17    {"James McTeigue"}    {"Lilly Wachowski (screenplay)","Lana Wachowski (screenplay)","David Lloyd (graphic novel art)"}    8.19999999999999929    767    \N    In a future British tyranny, a shadowy freedom fighter, known only by the alias of "V", plots to overthrow it with the help of a young woman.    English    USA, UK, Germany    7 wins & 27 nominations.    2016-04-20 14:32:04.406081    2016-04-28 12:08:25.43824    2.14    MV5BOTI5ODc3NzExNV5BMl5BanBnXkFtZTcwNzYxNzQzMw__._V1_SX300.jpg    image/jpeg    30568    2016-04-28 12:08:25.249537
635    tt0469494    There Will Be Blood    2007    158 min    2008-01-25    {"Paul Thomas Anderson"}    {"Paul Thomas Anderson (screenplay)","Upton Sinclair (novel)"}    8.09999999999999964    361    \N    The intersecting life stories of Daniel Plainview and Eli Sunday in early twentieth century California presents miner-turned-oilman Daniel Plainview, a driven man who will do whatever it takes to achieve his goals. He works hard but also takes advantage of those around him at their expense if need be. His business partner/son (H.W.) is, in reality, an "acquired" child whose true biological single-parent father (working on one of Daniel's rigs) died in a workplace accident. Daniel is deeply protective of H.W. if only for what H.W. brings to the partnership. Eli Sunday is one in a pair of twins whose family farm Daniel purchases for the major oil deposit located on it. Eli, a local preacher and a self-proclaimed faith healer, wants the money from the sale of the property to finance his own church. The lives of the two competitive men often clash as Daniel pumps oil off the property and tries to acquire all the surrounding land at bargain prices to be able to build a pipeline to the coast, and as Eli tries to build his own religious empire.    English, American Sign Language    USA    Won 2 Oscars. Another 105 wins & 131 nominations.    2016-04-20 14:32:05.549036    2016-04-28 12:08:26.242091    2.38    MV5BMjA0NjE1ODEyNV5BMl5BanBnXkFtZTcwNDIzMzE5NQ__._V1_SX300.jpg    image/jpeg    17367    2016-04-28 12:08:26.052967
636    tt0033870    The Maltese Falcon    1941    100 min    1941-10-18    {"John Huston"}    {"John Huston (screenplay)","Dashiell Hammett (based upon the novel by)"}    8.09999999999999964    109    \N    Spade and Archer is the name of a San Francisco detective agency. That's for Sam Spade and Miles Archer. The two men are partners, but Sam doesn't like Miles much. A knockout, who goes by the name of Miss Wonderly, walks into their office; and by that night everything's changed. Miles is dead. And so is a man named Floyd Thursby. It seems Miss Wonderly is surrounded by dangerous men. There's Joel Cairo, who uses gardenia-scented calling cards. There's Kasper Gutman, with his enormous girth and feigned civility. Her only hope of protection comes from Sam, who is suspected by the police of one or the other murder. More murders are yet to come, and it will all be because of these dangerous men -- and their lust for a statuette of a bird: the Maltese Falcon.    English    USA    Nominated for 3 Oscars. Another 2 wins.    2016-04-20 14:32:05.592864    2016-04-28 12:08:27.202469    1.21    MV5BMTc4MDEzOTMwMl5BMl5BanBnXkFtZTgwMTc2NjgyMjE_._V1_SX300.jpg    image/jpeg    46442    2016-04-28 12:08:27.019441
742    tt0877057    Death Note    2006–2007    24 min    2006-10-03    {N/A}    {N/A}    9    101    \N    After an intelligent yet cynical high school student begins to cleanse the world from evil with the help of a magical notebook that can kill anyone whose name is written on it, international authorities call upon a mysterious detective known as "L" to thwart his efforts.    Japanese    Japan    2 wins.    2016-04-20 14:32:24.130642    2016-04-28 12:09:21.539803    3.67    MV5BMTI0NTI1NjU5NV5BMl5BanBnXkFtZTcwNDg3NDg5MQ__._V1_SX300.jpg    image/jpeg    36538    2016-04-28 12:09:21.354232
743    tt0367279    Arrested Development    2003–    22 min    2003-11-02    {N/A}    {"Mitchell Hurwitz"}    9    203    \N    Meet the wildly dysfunctional Bluth family. This family was once at the height of real estate development in Orange County, California. But when the family business - the Bluth Company - goes bust, they're suddenly found penniless with their assets frozen. They move into their last remaining asset - the model home left over from their latest housing tract. Their luxury vehicles are replaced with a reminder of the family's former wealth - the stair car that accompanied their private jet. The patriarch of the family is George Bluth - he's now in prison, and loving every minute of it. His wife Lucille and daughter Lindsay are spoiled socialites who can't handle getting kicked out of family restaurants. His son Buster is in his mid 30's and lives at home. His son George Oscar Bluth is a magician who started a group to get magicians to be taken seriously - and gets kicked out when his own tricks are revealed. Lindsay is married to a man named Tobias Funke, once a psychiatrist, who decides to become an actor. The only sane member of the family - Michael Bluth, along with his son George Michael, want nothing to do with the family business. But one bizarre circumstance after another keeps Michael and George Michael from leaving their eccentric family.    English    USA    Won 1 Golden Globe. Another 46 wins & 85 nominations.    2016-04-20 14:32:24.794282    2016-04-28 12:06:07.707319    1.02    MV5BMTk4OTIyNzA5NF5BMl5BanBnXkFtZTcwODQxMTE1OQ__._V1_SX300.jpg    image/jpeg    36334    2016-04-28 12:06:07.509727
868    tt0491607    Ghost in the Shell: Stand Alone Complex    2002–2005    24 min    2004-11-07    {N/A}    {N/A}    8.59999999999999964    11    \N    The second season of Ghost in The Shell: Stand Alone Complex begins with Section 9 being called back to work after a hostage situation of concern to the Ruling Party renders the Police useless. The entire team returns to the front lines: Kusanagi, Batoh, Togusa, Ishikawa, Saito, Paz & Borma, with four of the original Tachikomas restored after the firefight of Episode 26. The hostage situation announced the rising of a new terrorist cell, which takes much after another one in the headlines of today's papers. The Individual Eleven, whose members are neither individuals, or total up to eleven are a new threat to Public Security. How does a specialized public security group face an enemy more faceless than the "laughing man" during a time of political unrest? Among the broad changes from the first show involve the new ruling party, headed by the new Prime Minister Kabayuki after the prior ousting in GITS: SAC, the Japanese Residents caught in the middle of the affairs and paying the taxes for jobs they're going to lose in a time of recession, and the downtrodden "invited" Asian Immigrants of the Second Vietnamese War who were brought to Japan as a half-hearted humanitarian act from the government who was really just seeking cheap labor. And just who is the man called "Gohda", a mysterious new 'supervisor' (don't worry, Aramaki still runs the group) who appears to be calling the shots for Section 9 during certain missions? He calls out orders as if he was in charge of the group, yet has no apparent loyalty or respect to the government, military or Section 9.    Japanese    Japan    1 win.    2016-04-20 14:33:28.405594    2016-04-28 12:10:47.004298    2.31    MV5BMjA0NjA1ODM2OV5BMl5BanBnXkFtZTcwNjI5MTYyMQ__._V1._CR3_28_351_470_SY132_CR5_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5402    2016-04-28 12:10:46.853778
637    tt0091763    Platoon    1986    120 min    1987-02-06    {"Oliver Stone"}    {"Oliver Stone"}    8.09999999999999964    284    \N    Chris Taylor is a young, naive American who gives up college and volunteers for combat in Vietnam. Upon arrival, he quickly discovers that his presence is quite nonessential, and is considered insignificant to the other soldiers, as he has not fought for as long as the rest of them and felt the effects of combat. Chris has two non-commissioned officers, the ill-tempered and indestructible Staff Sergeant Robert Barnes and the more pleasant and cooperative Sergeant Elias Grodin. A line is drawn between the two NCOs and a number of men in the platoon when an illegal killing occurs during a village raid. As the war continues, Chris himself draws towards psychological meltdown. And as he struggles for survival, he soon realizes he is fighting two battles, the conflict with the enemy and the conflict between the men within his platoon.    English, Vietnamese    UK, USA    Won 4 Oscars. Another 19 wins & 14 nominations.    2016-04-20 14:32:05.6334    2016-04-28 12:08:28.207657    1.01    MV5BNTU3NzY4ODY5MF5BMl5BanBnXkFtZTcwOTkzNzE1NA__._V1_SX300.jpg    image/jpeg    28448    2016-04-28 12:08:28.019779
638    tt1392190    Mad Max: Fury Road    2015    120 min    2015-05-15    {"George Miller"}    {"George Miller","Brendan McCarthy","Nick Lathouris"}    8.09999999999999964    503    \N    An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and almost everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order. There's Max, a man of action and a man of few words, who seeks peace of mind following the loss of his wife and child in the aftermath of the chaos. And Furiosa, a woman of action and a woman who believes her path to survival may be achieved if she can make it across the desert back to her childhood homeland.    English, Russian    Australia, USA    Won 6 Oscars. Another 185 wins & 182 nominations.    2016-04-20 14:32:05.671407    2016-04-28 12:08:28.95218    3.84    MV5BMTUyMTE0ODcxNF5BMl5BanBnXkFtZTgwODE4NDQzNTE_._V1_SX300.jpg    image/jpeg    33819    2016-04-28 12:08:28.759561
641    tt0074958    Network    1976    121 min    1976-11-27    {"Sidney Lumet"}    {"Paddy Chayefsky"}    8.09999999999999964    99    \N    In the 1970s, terrorist violence is the stuff of networks' nightly news programming and the corporate structure of the UBS Television Network is changing. Meanwhile, Howard Beale, the aging UBS news anchor, has lost his once strong ratings share and so the network fires him. Beale reacts in an unexpected way. We then see how this affects the fortunes of Beale, his coworkers (Max Schumacher and Diana Christensen), and the network.    English    USA    Won 4 Oscars. Another 15 wins & 25 nominations.    2016-04-20 14:32:05.805203    2016-04-28 12:08:30.191906    2.35    MV5BNzk5MjcxNTg2MF5BMl5BanBnXkFtZTgwMzY2MTUxMDE_._V1_SX300.jpg    image/jpeg    30868    2016-04-28 12:08:29.991901
644    tt0053198    The 400 Blows    1959    99 min    1959-11-16    {"François Truffaut"}    {"François Truffaut (scenario)","Marcel Moussy (adaptation)","François Truffaut (adaptation)","Marcel Moussy (dialogue)"}    8.19999999999999929    67    \N    Seemingly in constant trouble at school, 14 year-old Antoine Doinel returns at the end of every day to a drab and unhappy home life. His parents have little money and he sleeps on a couch that's been pushed into the kitchen. He knows his mother is having an affair and his parents bicker constantly. He decides to skip school and begins a downward spiral of lies and later stealing. His parents are at their wits end and after he's stopped by the police, they decide the best thing to do would be to let Antoine face the consequences. He's sent to a juvenile detention facility where he doesn't do much better. He does manage to escape however.........    French, English    France    Nominated for 1 Oscar. Another 7 wins & 3 nominations.    2016-04-20 14:32:05.928091    2016-04-28 12:08:31.020975    1.16    MV5BMTQzNTMzOTA2Ml5BMl5BanBnXkFtZTgwNDQ2OTI3MjE_._V1_SX300.jpg    image/jpeg    37830    2016-04-28 12:08:30.823947
630    tt2267998    Gone Girl    2014    149 min    2014-10-03    {"David Fincher"}    {"Gillian Flynn (screenplay)","Gillian Flynn (novel)"}    8.09999999999999964    541    \N    On the occasion of his fifth wedding anniversary, Nick Dunne reports that his wife, Amy, has gone missing. Under pressure from the police and a growing media frenzy, Nick's portrait of a blissful union begins to crumble. Soon his lies, deceits and strange behavior have everyone asking the same dark question: Did Nick Dunne kill his wife?    English    USA    Nominated for 1 Oscar. Another 63 wins & 163 nominations.    2016-04-20 14:32:05.314965    2016-04-28 12:08:31.980398    4.57    MV5BMTk0MDQ3MzAzOV5BMl5BanBnXkFtZTgwNzU1NzE3MjE_._V1_SX300.jpg    image/jpeg    17096    2016-04-28 12:08:31.794932
645    tt0092005    Stand by Me    1986    89 min    1986-08-22    {"Rob Reiner"}    {"Stephen King (novel)","Raynold Gideon (screenplay)","Bruce A. Evans (screenplay)"}    8.09999999999999964    261    \N    It's the summer of 1959 in Castlerock, Oregon and four 12 year-old boys - Gordie, Chris, Teddy and Vern - are fast friends. After learning of the general location of the body of a local boy who has been missing for several days, they set off into woods to see it. Along the way, they learn about themselves, the meaning of friendship and the need to stand up for what is right.    English    USA    Nominated for 1 Oscar. Another 4 wins & 10 nominations.    2016-04-20 14:32:05.96591    2016-04-28 12:08:32.674316    3.2    MV5BNDk2MTkyMTA1OF5BMl5BanBnXkFtZTcwOTc2Njk3OA__._V1_SX300.jpg    image/jpeg    24606    2016-04-28 12:08:32.481157
648    tt0060827    Persona    1966    83 min    1967-03-16    {"Ingmar Bergman"}    {"Ingmar Bergman (story)"}    8.19999999999999929    58    \N    A young nurse, Alma, is put in charge of Elisabeth Vogler: an actress who is seemingly healthy in all respects, but will not talk. As they spend time together, Alma speaks to Elisabeth constantly, never receiving any answer. Alma eventually confesses her secrets to a seemingly sympathetic Elisabeth and finds that her own personality is being submerged into Elisabeth's persona.    Swedish, English    Sweden    Nominated for 1 BAFTA Film Award. Another 6 wins & 3 nominations.    2016-04-20 14:32:06.095803    2016-04-28 12:08:33.32616    2.95    MV5BMTc1OTgxNjYyNF5BMl5BanBnXkFtZTcwNjM2MjM2NQ__._V1_SX300.jpg    image/jpeg    25681    2016-04-28 12:08:33.139147
675    tt0401792    Sin City    2005    124 min    2005-04-01    {"Frank Miller","Robert Rodriguez","Quentin Tarantino"}    {"Frank Miller (graphic novels)"}    8.09999999999999964    640    \N    Four tales of crime adapted from Frank Miller's popular comics, focusing around a muscular brute who's looking for the person responsible for the death of his beloved Goldie, a man fed up with Sin City's corrupt law enforcement who takes the law into his own hands after a horrible mistake, a cop who risks his life to protect a girl from a deformed pedophile, and a hitman looking to make a little cash.    English    USA    31 wins & 47 nominations.    2016-04-20 14:32:07.295442    2016-04-28 12:08:44.862154    1.75    MV5BMTI2NjUyMDUyMV5BMl5BanBnXkFtZTcwMzU0OTkyMQ__._V1_SX300.jpg    image/jpeg    40792    2016-04-28 12:08:44.676297
649    tt2024544    12 Years a Slave    2013    134 min    2013-11-08    {"Steve McQueen"}    {"John Ridley (screenplay)","Solomon Northup (based on \\"Twelve Years a Slave\\" by)"}    8.09999999999999964    417    \N    Based on an incredible true story of one man's fight for survival and freedom. In the pre-Civil War United States, Solomon Northup (Chiwetel Ejiofor), a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty (personified by a malevolent slave owner, portrayed by Michael Fassbender), as well as unexpected kindnesses, Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon's chance meeting with a Canadian abolitionist (Brad Pitt) will forever alter his life.    English    USA, UK    Won 3 Oscars. Another 231 wins & 305 nominations.    2016-04-20 14:32:06.137131    2016-04-28 12:08:33.947492    2.65    MV5BMjExMTEzODkyN15BMl5BanBnXkFtZTcwNTU4NTc4OQ__._V1_SX300.jpg    image/jpeg    20476    2016-04-28 12:08:33.765492
650    tt2278388    The Grand Budapest Hotel    2014    99 min    2014-03-28    {"Wes Anderson"}    {"Stefan Zweig (inspired by the writings of)","Wes Anderson (screenplay)","Wes Anderson (story)","Hugo Guinness (story)"}    8.09999999999999964    451    \N    GRAND BUDAPEST HOTEL recounts the adventures of Gustave H, a legendary concierge at a famous European hotel between the wars, and Zero Moustafa, the lobby boy who becomes his most trusted friend. The story involves the theft and recovery of a priceless Renaissance painting and the battle for an enormous family fortune -- all against the back-drop of a suddenly and dramatically changing Continent.    English, French    USA, Germany, UK    Won 4 Oscars. Another 118 wins & 208 nominations.    2016-04-20 14:32:06.176054    2016-04-28 12:08:34.661362    4.42    MV5BMzM5NjUxOTEyMl5BMl5BanBnXkFtZTgwNjEyMDM0MDE_._V1_SX300.jpg    image/jpeg    33959    2016-04-28 12:08:34.487578
651    tt0245712    Amores Perros    2000    154 min    2001-04-13    {"Alejandro González Iñárritu"}    {"Guillermo Arriaga"}    8.09999999999999964    168    \N    Three interconnected stories about the different strata of life in Mexico City all resolve with a fatal car accident. Octavio is trying to raise enough money to run away with his sister-in-law, and decides to enter his dog Cofi into the world of dogfighting. After a dogfight goes bad, Octavio flees in his car, running a red light and causing the accident. Daniel and Valeria's new-found bliss is prematurely ended when she loses her leg in the accident. El Chivo is a homeless man who cares for stray dogs and is there to witness the collision.    Spanish    Mexico    Nominated for 1 Oscar. Another 54 wins & 22 nominations.    2016-04-20 14:32:06.217919    2016-04-28 12:08:35.34086    1.59    MV5BMjIyNTA5MzQ5N15BMl5BanBnXkFtZTcwNjIyNTgxMQ__._V1_SX300.jpg    image/jpeg    30627    2016-04-28 12:08:35.155112
653    tt0405159    Million Dollar Baby    2004    132 min    2005-01-28    {"Clint Eastwood"}    {"Paul Haggis (screenplay)","F.X. Toole (stories)"}    8.09999999999999964    468    \N    Wanting to learn from the best, aspiring boxer Maggie Fitzgerald wants Frankie Dunn to train her. At the outset he flatly refuses saying he has no interest in training a girl. Frankie leads a lonely existence, alienated from his only daughter and having few friends. She's rough around the edges but shows a lot of grit in the ring and he eventually relents. Maggie not only proves to be the boxer he always dreamed of having under his wing but a friend who fills the great void he's had in his life. Maggie's career skyrockets but an accident in the ring leads her to ask Frankie for one last favor.    English, Irish    USA    Won 4 Oscars. Another 60 wins & 80 nominations.    2016-04-20 14:32:06.294945    2016-04-28 12:08:35.96677    4.83    MV5BMTkxNzA1NDQxOV5BMl5BanBnXkFtZTcwNTkyMTIzMw__._V1_SX300.jpg    image/jpeg    20055    2016-04-28 12:08:35.79396
744    tt1856010    House of Cards    2013–    51 min    2013-02-01    {N/A}    {N/A}    9    285    \N    Majority House Whip Francis Underwood takes you on a long journey as he exacts his vengeance on those he feels wronged him - that is, his own cabinet members including the President of the United States himself. Dashing, cunning, methodical and vicious, Frank Underwood along with his equally manipulative yet ambiguous wife, Claire take Washington by storm through climbing the hierarchical ladder to power in this Americanized recreation of the BBC series of the same name.    English    USA    Won 2 Golden Globes. Another 19 wins & 123 nominations.    2016-04-20 14:32:25.609373    2016-04-28 12:06:08.663712    3.04    MV5BMjM3ODMyMjc3MV5BMl5BanBnXkFtZTgwNDgzNDc5NzE_._V1_SX300.jpg    image/jpeg    22604    2016-04-28 12:06:08.473895
654    tt0052311    Touch of Evil    1958    95 min    1958-05-01    {"Orson Welles"}    {"Orson Welles (screenplay)","Whit Masterson (based on the novel \\"Badge Of Evil\\" by)"}    8.09999999999999964    70    \N    Mexican Narcotics officer Ramon Miguel 'Mike' Vargas has to interrupt his honeymoon on the Mexican-US border when an American building contractor is killed after someone places a bomb in his car. He's killed on the US side of the border but it's clear that the bomb was planted on the Mexican side. As a result, Vargas delays his return to Mexico City where he has been mounting a case against the Grandi family crime and narcotics syndicate. Police Captain Hank Quinlan is in charge on the US side and he soon has a suspect, a Mexican named Manolo Sanchez. Vargas is soon onto Quinlan and his Sergeant, Pete Menzies, when he catches them planting evidence to convict Sanchez. With his new American wife, Susie, safely tucked away in a hotel on the US side of the border - or so he thinks - he starts to review Quinlan's earlier cases. While concentrating on the corrupt policeman however, the Grandis have their own plans for Vargas and they start with his wife Susie.    English, Spanish    USA    6 wins & 1 nomination.    2016-04-20 14:32:06.333273    2016-04-28 12:08:37.706859    4.16    MV5BMTY3NjIwMDY4M15BMl5BanBnXkFtZTgwODMwODgyMTE_._V1_SX300.jpg    image/jpeg    46772    2016-04-28 12:08:37.532155
692    tt0848228    The Avengers    2012    143 min    2012-05-04    {"Joss Whedon"}    {"Joss Whedon (screenplay)","Zak Penn (story)","Joss Whedon (story)"}    8.09999999999999964    960    \N    Earth's mightiest heroes must come together and learn to fight as a team if they are to stop the mischievous Loki and his alien army from enslaving humanity.    English, Russian    USA    Nominated for 1 Oscar. Another 36 wins & 77 nominations.    2016-04-20 14:32:08.039951    2016-04-28 12:09:04.232837    2.2    MV5BMTk2NTI1MTU4N15BMl5BanBnXkFtZTcwODg0OTY0Nw__._V1_SX300.jpg    image/jpeg    45976    2016-04-28 12:09:04.035782
656    tt3011894    Wild Tales    2014    122 min    2014-08-21    {"Damián Szifrón"}    {"Damián Szifrón"}    8.09999999999999964    79    \N    The film is divided into six segments. (1) "Pasternak": While being on a plane, a model and a music critic realise they have a common acquaintance called Pasternak. Soon they discover that every passenger and crew member on board know Pasternak. Is this coincidence? (2) "The Rats": A waitress recognizes her client - it's the loan shark who caused a tragedy in her family. The cook suggests mixing rat poison with his food, but the waitress refuses. The stubborn cook, however, decides to proceed with her plan. (3) "The Strongest": Two drivers on a lone highway have an argument with tragic consequences. (4) "Little Bomb": A demolition engineer has his car towed by a truck for parking in a wrong place and he has an argument with the employee of the towing company. This event destroys his private and professional life, and he plots revenge against the corrupt towing company and the city hall. (5) "The Proposal": A reckless son of a wealthy family has an overnight hit-and-run accident, in which a pregnant woman gets killed. He wakes his parents up and his father calls the lawyer. The parents propose to pay the groundkeeper to take the blame for the boy. Soon the father discovers that he is a victim of extortion of his lawyer and the detective in charge of the investigation. What will be his decision? (6) "Until Death Do Us Apart": During the wedding party, the bride discovers that her newlywed husband has been cheating on her with one of the guests, and she decides to pay him back.    Spanish    Argentina, Spain    Nominated for 1 Oscar. Another 44 wins & 51 nominations.    2016-04-20 14:32:06.418275    2016-04-28 12:08:39.289587    1.15    MV5BNzAzMjA1ODAxOV5BMl5BanBnXkFtZTgwODg4NTQzNDE_._V1_SX300.jpg    image/jpeg    39615    2016-04-28 12:08:39.096465
662    tt0107290    Jurassic Park    1993    127 min    1993-06-11    {"Steven Spielberg"}    {"Michael Crichton (novel)","Michael Crichton (screenplay)","David Koepp (screenplay)"}    8.09999999999999964    587    \N    Huge advancements in scientific technology have enabled a mogul to create an island full of living dinosaurs. John Hammond has invited four individuals, along with his two grandchildren, to join him at Jurassic Park. But will everything go according to plan? A park employee attempts to steal dinosaur embryos, critical security systems are shut down and it now becomes a race for survival with dinosaurs roaming freely over the island.    English, Spanish    USA    Won 3 Oscars. Another 26 wins & 17 nominations.    2016-04-20 14:32:06.691734    2016-04-28 12:08:40.776894    3.78    MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE_._V1_SX300.jpg    image/jpeg    25099    2016-04-28 12:08:40.580364
746    tt0082096    Das Boot    1981    149 min    1982-02-10    {"Wolfgang Petersen"}    {"Wolfgang Petersen (screenplay)","Lothar G. Buchheim (novel)"}    8.40000000000000036    163    \N    The claustrophobic world of a WWII German U-boat; boredom, filth, and sheer terror.    German, English, French    West Germany    Nominated for 6 Oscars. Another 13 wins & 5 nominations.    2016-04-20 14:32:26.269869    2016-04-28 12:06:10.317735    1.94    MV5BMjE5Mzk5OTQ0Nl5BMl5BanBnXkFtZTYwNzUwMTQ5._V1_SX300.jpg    image/jpeg    53561    2016-04-28 12:06:10.108992
663    tt0046911    Diabolique    1955    116 min    1955-11-21    {"Henri-Georges Clouzot"}    {"Pierre Boileau (novel)","Thomas Narcejac (novel)","Henri-Georges Clouzot (scenario and dialogue)","Jérôme Géronimi (scenario and dialogue)","René Masson (collaboration)","Frédéric Grendel (collaboration)"}    8.09999999999999964    40    \N    The wife and mistress of a sadistic boarding school headmaster plot to kill him. They drown him in the bathtub and dump the body in the school's filthy swimming pool... but when the pool is drained, the body has disappeared - and subsequent reported sightings of the headmaster slowly drive his 'killers' (and the audience) up the wall with almost unbearable suspense...    French, English    France    4 wins.    2016-04-20 14:32:06.735069    2016-04-28 12:08:41.447286    4.05    MV5BMTcwNzc5MjI5Nl5BMl5BanBnXkFtZTYwNjIwMzc5._V1_SX300.jpg    image/jpeg    14922    2016-04-28 12:08:41.252157
681    tt0338564    Infernal Affairs    2002    101 min    2002-12-12    {"Wai-Keung Lau","Alan Mak"}    {"Alan Mak","Felix Chong"}    8.09999999999999964    88    \N    Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst.    Cantonese, English, Thai    Hong Kong    23 wins & 21 nominations.    2016-04-20 14:32:07.549066    2016-04-28 12:08:42.17896    1.97    MV5BMTc0Mjg2OTY3OV5BMl5BanBnXkFtZTcwNDA3Njk3OA__._V1_SX300.jpg    image/jpeg    25720    2016-04-28 12:08:41.998188
665    tt0440963    The Bourne Ultimatum    2007    115 min    2007-08-03    {"Paul Greengrass"}    {"Tony Gilroy (screenplay)","Scott Z. Burns (screenplay)","George Nolfi (screenplay)","Tony Gilroy (screen story)","Robert Ludlum (novel)"}    8.09999999999999964    471    \N    Bourne is once again brought out of hiding, this time inadvertently by London-based reporter Simon Ross who is trying to unveil Operation Blackbriar--an upgrade to Project Treadstone--in a series of newspaper columns. Bourne sets up a meeting with Ross and realizes instantly they're being scanned. Information from the reporter stirs a new set of memories, and Bourne must finally, ultimately, uncover his dark past whilst dodging The Company's best efforts in trying to eradicate him.    English, French, Arabic, Russian, Spanish    USA, Germany    Won 3 Oscars. Another 25 wins & 38 nominations.    2016-04-20 14:32:06.817501    2016-04-28 12:08:42.890414    2.92    MV5BMTgzNjMwOTM3N15BMl5BanBnXkFtZTcwMzA5MDY0MQ__._V1_SX300.jpg    image/jpeg    23836    2016-04-28 12:08:42.702931
666    tt0056801    8½    1963    138 min    1963-06-25    {"Federico Fellini"}    {"Federico Fellini (story)","Ennio Flaiano (story)","Ennio Flaiano (screenplay)","Tullio Pinelli (screenplay)","Federico Fellini (screenplay)","Brunello Rondi (screenplay)"}    8.09999999999999964    75    \N    Guido is a film director, trying to relax after his last big hit. He can't get a moment's peace, however, with the people who have worked with him in the past constantly looking for more work. He wrestles with his conscience, but is unable to come up with a new idea. While thinking, he starts to recall major happenings in his life, and all the women he has loved and left. An autobiographical film of Fellini, about the trials and tribulations of film making.    Italian, English, French, German    Italy, France    Won 2 Oscars. Another 16 wins & 8 nominations.    2016-04-20 14:32:06.860834    2016-04-28 12:08:44.133606    2.76    MV5BMTQ4MTA0NjEzMF5BMl5BanBnXkFtZTgwMDg4NDYxMzE_._V1_SX300.jpg    image/jpeg    38622    2016-04-28 12:08:43.943388
667    tt0112471    Before Sunrise    1995    105 min    1995-01-27    {"Richard Linklater"}    {"Richard Linklater","Kim Krizan"}    8.09999999999999964    175    \N    American tourist Jesse and French student Celine meet by chance on the train from Budapest to Vienna. Sensing that they are developing a connection, Jesse asks Celine to spend the day with him in Vienna, and she agrees. So they pass the time before his scheduled flight the next morning together. How do two perfect strangers connect so intimately over the course of a single day? What is that special thing that bonds two people so strongly? As their bond turns to love, what will happen to them the next morning when Jesse flies away?    English, German, French    USA, Austria, Switzerland    1 win & 7 nominations.    2016-04-20 14:32:06.899841    2016-04-28 12:08:45.568149    3.76    MV5BMTQyMTM3MTQxMl5BMl5BanBnXkFtZTcwMDAzNjQ4Mg__._V1_SX300.jpg    image/jpeg    30526    2016-04-28 12:08:45.3832
668    tt0246578    Donnie Darko    2001    113 min    2001-10-26    {"Richard Kelly"}    {"Richard Kelly"}    8.09999999999999964    564    \N    Donnie Darko doesn't get along too well with his family, his teachers and his classmates; but he does manage to find a sympathetic friend in Gretchen, who agrees to date him. He has a compassionate psychiatrist, who discovers hypnosis is the means to unlock hidden secrets. His other companion may not be a true ally. Donnie has a friend named Frank - a large bunny which only Donnie can see. When an engine falls off a plane and destroys his bedroom, Donnie is not there. Both the event, and Donnie's escape, seem to have been caused by supernatural events. Donnie's mental illness, if such it is, may never allow him to find out for sure.    English    USA    11 wins & 15 nominations.    2016-04-20 14:32:06.948868    2016-04-28 12:08:46.314031    4.48    MV5BMTczMzE4Nzk3N15BMl5BanBnXkFtZTcwNDg5Mjc4NA__._V1_SX300.jpg    image/jpeg    30152    2016-04-28 12:08:46.136741
669    tt0032138    The Wizard of Oz    1939    102 min    1939-08-25    {"Victor Fleming","George Cukor","Mervyn LeRoy","Norman Taurog","King Vidor"}    {"Noel Langley (screenplay)","Florence Ryerson (screenplay)","Edgar Allan Woolf (screenplay)","Noel Langley (adaptation)","L. Frank Baum (from the book by)"}    8.09999999999999964    283    \N    In this charming film based on the popular L. Frank Baum stories, Dorothy and her dog Toto are caught in a tornado's path and somehow end up in the land of Oz. Here she meets some memorable friends and foes in her journey to meet the Wizard of Oz who everyone says can help her return home and possibly grant her new friends their goals of a brain, heart and courage.    English    USA    Won 2 Oscars. Another 7 wins & 13 nominations.    2016-04-20 14:32:06.994499    2016-04-28 12:08:47.080855    3.07    MV5BMTU0MTA2OTIwNF5BMl5BanBnXkFtZTcwMzA0Njk3OA__._V1_SX300.jpg    image/jpeg    35088    2016-04-28 12:08:46.906751
670    tt0353969    Memories of Murder    2003    132 min    2003-05-02    {"Joon Ho Bong"}    {"Joon Ho Bong","Kwang-rim Kim (play)","Sung-bo Shim"}    8.09999999999999964    62    \N    In 1986, in the province of Gyunggi, in South Korea, a second young and beautiful woman is found dead, raped and tied and gagged with her underwear. Detective Park Doo-Man and Detective Cho Yong-koo, two brutal and stupid local detectives without any technique, investigate the murder using brutality and torturing the suspects, without any practical result. The Detective Seo Tae-Yoon from Seoul comes to the country to help the investigations and is convinced that a serial-killer is killing the women. When a third woman is found dead in the same "modus-operandi", the detectives find leads of the assassin.    Korean, English    South Korea    13 wins & 3 nominations.    2016-04-20 14:32:07.042027    2016-04-28 12:08:47.866225    1.87    MV5BMTI5OTA5MTI3OF5BMl5BanBnXkFtZTcwMjQyNzYzMQ__._V1_SX300.jpg    image/jpeg    27377    2016-04-28 12:08:47.684868
642    tt0064115    Butch Cassidy and the Sundance Kid    1969    110 min    1969-10-24    {"George Roy Hill"}    {"William Goldman"}    8.09999999999999964    147    \N    Two Western bank/train robbers flee to Bolivia when the law gets too close.    English, Spanish    USA    Won 4 Oscars. Another 16 wins & 14 nominations.    2016-04-20 14:32:05.848586    2016-04-28 12:08:49.857865    4.43    MV5BMTkyMTM2NDk5Nl5BMl5BanBnXkFtZTgwNzY1NzEyMDE_._V1_SX300.jpg    image/jpeg    40298    2016-04-28 12:08:49.63975
661    tt0079944    Stalker    1979    163 min    1980-04-17    {"Andrei Tarkovsky"}    {"Arkadiy Strugatskiy (novel)","Boris Strugatskiy (novel)","Arkadiy Strugatskiy (screenplay)","Boris Strugatskiy (screenplay)"}    8.19999999999999929    65    \N    A guide leads two men through an area known as the Zone to find a room that grants wishes.    Russian    Soviet Union    2 wins & 1 nomination.    2016-04-20 14:32:06.630978    2016-04-28 12:08:50.579011    1.17    MV5BNDY2NjU0NDAxOF5BMl5BanBnXkFtZTgwNjQ4MTI2MTE_._V1_SX300.jpg    image/jpeg    27684    2016-04-28 12:08:50.364389
673    tt0036868    The Best Years of Our Lives    1946    172 min    1947-06-17    {"William Wyler"}    {"Robert E. Sherwood (screen play)","MacKinlay Kantor (from a novel by)"}    8.19999999999999929    38    \N    The story concentrates on the social re-adjustment of three World War II servicemen, each from a different station of society. Al Stephenson returns to an influential banking position, but finds it hard to reconcile his loyalties to ex-servicemen with new commercial realities. Fred Derry is an ordinary working man who finds it difficult to hold down a job or pick up the threads of his marriage. Having had both hands burnt off during the war, Homer Parrish is unsure that his fiancée's feelings are still those of love and not those of pity. Each of the veterans faces a crisis upon his arrival, and each crisis is a microcosm of the experiences of many American warriors who found an alien world awaiting them when they came marching home.    English    USA    Won 7 Oscars. Another 13 wins & 2 nominations.    2016-04-20 14:32:07.18319    2016-04-28 12:08:51.240409    1.37    MV5BMTk1NTAxNzg3Nl5BMl5BanBnXkFtZTcwNjU4OTQwNw__._V1_SX300.jpg    image/jpeg    37881    2016-04-28 12:08:51.055884
674    tt0088247    The Terminator    1984    107 min    1984-10-26    {"James Cameron"}    {"James Cameron","Gale Anne Hurd","William Wisher Jr. (additional dialogue)"}    8.09999999999999964    581    \N    A cyborg is sent from the future on a deadly mission. He has to kill Sarah Connor, a young woman whose life will have a great significance in years to come. Sarah has only one protector - Kyle Reese - also sent from the future. The Terminator uses his exceptional intelligence and strength to find Sarah, but is there any way to stop the seemingly indestructible cyborg ?    English, Spanish    UK, USA    5 wins & 6 nominations.    2016-04-20 14:32:07.246131    2016-04-28 12:08:51.99715    1.77    MV5BODE1MDczNTUxOV5BMl5BanBnXkFtZTcwMTA0NDQyNA__._V1_SX300.jpg    image/jpeg    44205    2016-04-28 12:08:51.803992
748    tt2707408    Narcos    2015–    49 min    2015-08-28    {N/A}    {"Carlo Bernard","Chris Brancato","Doug Miro","Paul Eckstein"}    9    92    \N    Narcos tells the true-life story of the growth and spread of cocaine drug cartels across the globe and attendant efforts of law enforcement to meet them head on in brutal, bloody conflict. It centers around the notorious Colombian cocaine kingpin Pablo Escobar (Wagner Moura) and Steve Murphy (Holbrook), a DEA agent sent to Colombia on a U.S. mission to capture and ultimately kill him.    English, Spanish    USA    Nominated for 2 Golden Globes. Another 2 nominations.    2016-04-20 14:32:28.254741    2016-04-28 12:06:11.233539    1.35    MV5BMjMyNzA0MTA3NV5BMl5BanBnXkFtZTgwMTYxMTA0NjE_._V1_SX300.jpg    image/jpeg    46368    2016-04-28 12:06:11.022794
677    tt0198781    Monsters, Inc.    2001    92 min    2001-11-02    {"Pete Docter","David Silverman","Lee Unkrich"}    {"Pete Docter (original story by)","Jill Culton (original story by)","Jeff Pidgeon (original story by)","Ralph Eggleston (original story by)","Andrew Stanton (screenplay)","Daniel Gerson (screenplay)"}    8.09999999999999964    562    \N    A city of monsters with no humans called Monstropolis centers around the city's power company, Monsters, Inc. The lovable, confident, tough, furry blue behemoth-like giant monster named James P. Sullivan (better known as Sulley) and his wisecracking best friend, short, green cyclops monster Mike Wazowski, discover what happens when the real world interacts with theirs in the form of a 2-year-old baby girl dubbed "Boo," who accidentally sneaks into the monster world with Sulley one night. And now it's up to Sulley and Mike to send Boo back in her door before anybody finds out, especially two evil villains such as Sulley's main rival as a scarer, chameleon-like Randall (a monster that Boo is very afraid of), who possesses the ability to change the color of his skin, and Mike and Sulley's boss Mr. Waternoose, the chairman and chief executive officer of Monsters, Inc.    English    USA    Won 1 Oscar. Another 13 wins & 38 nominations.    2016-04-20 14:32:07.377953    2016-04-28 12:08:52.960204    4.45    MV5BMTY1NTI0ODUyOF5BMl5BanBnXkFtZTgwNTEyNjQ0MDE_._V1_SX300.jpg    image/jpeg    29326    2016-04-28 12:08:52.692481
678    tt1201607    Harry Potter and the Deathly Hallows: Part 2    2011    130 min    2011-07-15    {"David Yates"}    {"Steve Kloves (screenplay)","J.K. Rowling (novel)"}    8.09999999999999964    519    \N    Harry, Ron, and Hermione continue their quest of finding and destroying the Dark Lord's three remaining Horcruxes, the magical items responsible for his immortality. But as the mystical Deathly Hallows are uncovered, and Voldemort finds out about their mission, the biggest battle begins and life as they know it will never be the same again.    English    USA, UK    Nominated for 3 Oscars. Another 44 wins & 82 nominations.    2016-04-20 14:32:07.419928    2016-04-28 12:08:53.738853    1.44    MV5BMTY2MTk3MDQ1N15BMl5BanBnXkFtZTcwMzI4NzA2NQ__._V1_SX300.jpg    image/jpeg    37957    2016-04-28 12:08:53.543605
679    tt0044079    Strangers on a Train    1951    101 min    1951-06-30    {"Alfred Hitchcock"}    {"Raymond Chandler (screen play)","Czenzi Ormonde (screen play)","Whitfield Cook (adaptation)","Patricia Highsmith (from the novel by)"}    8.09999999999999964    93    \N    Bruno Anthony thinks he has the perfect plot to rid himself of his hated father and when he meets tennis player Guy Haines on a train, he thinks he's found the partner he needs to pull it off. His plan is relatively simple. Two strangers each agree to kill someone the other person wants disposed of. For example, Guy could kill his father and he could get rid of Guy's wife Miriam, freeing him to marry Anne Morton, the beautiful daughter of a U.S. Senator. Guy dismisses it all out of hand but but Bruno goes ahead with his half of the 'bargain' and disposes of Miriam. When Guy balks, Bruno makes it quite clear that he will plant evidence to implicate Guy in her murder if he doesn't get rid of his father. Guy had also made some unfortunate statements about Miriam after she had refused him a divorce. It all leads the police to believe Guy is responsible for the murder, forcing him to deal with Bruno's mad ravings.    English, French    USA    Nominated for 1 Oscar. Another 1 win & 1 nomination.    2016-04-20 14:32:07.459911    2016-04-28 12:08:54.548981    4.79    MV5BMTcwNzk0MTQxMF5BMl5BanBnXkFtZTcwNjM5NTIwNA__._V1_SX300.jpg    image/jpeg    51263    2016-04-28 12:08:54.356149
659    tt1028532    Hachi: A Dog's Tale    2009    93 min    2010-03-12    {"Lasse Hallström"}    {"Stephen P. Lindsey (screenplay)","Kaneto Shindô (motion picture \\"Hachiko monogatari\\")"}    8.19999999999999929    145    \N    In Bedridge, Professor Parker Wilson finds an abandoned dog at the train station and takes it home with the intention of returning the animal to its owner. He finds that the dog is an Akita and names it Hachiko. However, nobody claims the dog so his family decides to keep Hachi.    English, Japanese    USA, UK    N/A    2016-04-20 14:32:06.55751    2016-04-28 12:08:55.42504    2.68    MV5BMTAxMDA2MjM4NDReQTJeQWpwZ15BbWU3MDE0NTgxMTM_._V1_SX300.jpg    image/jpeg    47702    2016-04-28 12:08:55.233467
680    tt0107048    Groundhog Day    1993    101 min    1993-02-12    {"Harold Ramis"}    {"Danny Rubin (screenplay)","Harold Ramis (screenplay)","Danny Rubin (story)"}    8.09999999999999964    423    \N    A weather man is reluctantly sent to cover a story about a weather forecasting "rat" (as he calls it). This is his fourth year on the story, and he makes no effort to hide his frustration. On awaking the 'following' day he discovers that it's Groundhog Day again, and again, and again. First he uses this to his advantage, then comes the realisation that he is doomed to spend the rest of eternity in the same place, seeing the same people do the same thing EVERY day.    English, French, Italian    USA    Won 1 BAFTA Film Award. Another 5 wins & 8 nominations.    2016-04-20 14:32:07.502908    2016-04-28 12:08:56.172847    3.71    MV5BMTU0MzQyNTExMV5BMl5BanBnXkFtZTgwMjA0Njk1MDE_._V1_SX300.jpg    image/jpeg    31963    2016-04-28 12:08:55.985407
763    tt1628033    Top Gear    2002–    60 min    2002-10-20    {N/A}    {N/A}    8.90000000000000036    74    \N    Jeremy, Richard and James talk about everything car-related. From new cars to how they're fueled, this show has it all.    English    UK    11 wins & 16 nominations.    2016-04-20 14:32:35.918834    2016-04-28 12:06:12.131021    3.16    MV5BMTM2OTYwMjIzOV5BMl5BanBnXkFtZTcwNTMzNTAwMQ__._V1._CR0_0_317_396_SY132_CR8_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5932    2016-04-28 12:06:11.971842
700    tt0092067    Castle in the Sky    1986    125 min    1986-08-02    {"Hayao Miyazaki"}    {"Hayao Miyazaki"}    8.09999999999999964    94    \N    A young boy stumbles into a mysterious girl who floats down from the sky. The girl, Sheeta, was chased by pirates, army and government secret agents. In saving her life, they begin a high flying adventure that goes through all sorts of flying machines, eventually searching for Sheeta's identity in a floating castle of a lost civilization.    Japanese    Japan    1 win.    2016-04-20 14:32:08.405589    2016-04-28 12:09:11.949365    2.19    MV5BMTU4MTUyMTc3MV5BMl5BanBnXkFtZTYwOTg4Mzk5._V1_SX300.jpg    image/jpeg    36049    2016-04-28 12:09:11.761291
750    tt5189670    Making a Murderer    2015    60 min    2015-12-18    {N/A}    {N/A}    9    32    \N    Filmed over a 10-year period, Making a Murderer is an unprecedented real-life thriller about Steven Avery, a DNA exoneree who, while in the midst of exposing corruption in local law enforcement, finds himself the prime suspect in a grisly new crime. Set in America's heartland, the series takes viewers inside a high-stakes criminal case where reputation is everything and things are never as they appear.    English    USA    2 nominations.    2016-04-20 14:32:29.349239    2016-04-28 12:09:18.458276    1.03    MV5BNTc4NjI4NjYyNl5BMl5BanBnXkFtZTgwNzk1NTczNzE_._V1_SX300.jpg    image/jpeg    42281    2016-04-28 12:09:18.258161
682    tt0073195    Jaws    1975    124 min    1975-06-20    {"Steven Spielberg"}    {"Peter Benchley (screenplay)","Carl Gottlieb (screenplay)","Peter Benchley (based on the novel by)"}    8.09999999999999964    399    \N    It's a hot summer on Amity Island, a small community whose main business is its beaches. When new Sheriff Martin Brody discovers the remains of a shark attack victim, his first inclination is to close the beaches to swimmers. This doesn't sit well with Mayor Larry Vaughn and several of the local businessmen. Brody backs down to his regret as that weekend a young boy is killed by the predator. The dead boy's mother puts out a bounty on the shark and Amity is soon swamped with amateur hunters and fisherman hoping to cash in on the reward. A local fisherman with much experience hunting sharks, Quint, offers to hunt down the creature for a hefty fee. Soon Quint, Brody and Matt Hooper from the Oceanographic Institute are at sea hunting the Great White shark. As Brody succinctly surmises after their first encounter with the creature, they're going to need a bigger boat.    English    USA    Won 3 Oscars. Another 10 wins & 16 nominations.    2016-04-20 14:32:07.591839    2016-04-28 12:08:57.033665    4.14    MV5BNDcxODkyMjY4MF5BMl5BanBnXkFtZTgwOTk5NTc5MDE_._V1_SX300.jpg    image/jpeg    30641    2016-04-28 12:08:56.844244
683    tt0113247    La Haine    1995    98 min    1996-02-23    {"Mathieu Kassovitz"}    {"Mathieu Kassovitz"}    8.09999999999999964    99    \N    The film follows three young men and their time spent in the French suburban "ghetto," over a span of twenty-four hours. Vinz, a Jew, Saïd, an Arab, and Hubert, a black boxer, have grown up in these French suburbs where high levels of diversity coupled with the racist and oppressive police force have raised tensions to a critical breaking point. During the riots that took place a night before, a police officer lost his handgun in the ensuing madness, only to leave it for Vinz to find. Now, with a newfound means to gain the respect he deserves, Vinz vows to kill a cop if his friend Abdel dies in the hospital, due the beating he received while in police custody.    French    France    8 wins & 13 nominations.    2016-04-20 14:32:07.633404    2016-04-28 12:08:57.668913    4.92    MV5BMTY3OTAyOTMyM15BMl5BanBnXkFtZTcwNTMxMTI0MQ__._V1_SX300.jpg    image/jpeg    22440    2016-04-28 12:08:57.466855
684    tt0058946    The Battle of Algiers    1966    121 min    1967-09-20    {"Gillo Pontecorvo"}    {"Franco Solinas","Franco Solinas (story)","Gillo Pontecorvo (story)"}    8.09999999999999964    35    \N    A film commissioned by the Algerian government that shows the Algerian revolution from both sides. The French foreign legion has left Vietnam in defeat and has something to prove. The Algerians are seeking independence. The two clash. The torture used by the French is contrasted with the Algerian's use of bombs in soda shops. A look at war as a nasty thing that harms and sullies everyone who participates in it.    French, Arabic, English    Italy, Algeria    Nominated for 3 Oscars. Another 9 wins & 5 nominations.    2016-04-20 14:32:07.677702    2016-04-28 12:08:59.204746    1.49    MV5BMTIzMjI1OTQxNV5BMl5BanBnXkFtZTcwMzc3NTYyMQ__._V1_SX300.jpg    image/jpeg    25650    2016-04-28 12:08:59.001916
685    tt0072684    Barry Lyndon    1975    184 min    1975-12-18    {"Stanley Kubrick"}    {"Stanley Kubrick (written for the screen by)","William Makepeace Thackeray (novel)"}    8.09999999999999964    97    \N    In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love with his cousin Nora Brady. When Nora gets engaged to the British Captain John Quin, Barry challenges him to a duel of pistols. He wins and escapes to Dublin but is robbed on the road. Without an alternative, Barry joins the British Army to fight in the Seven Years War. He deserts and is forced to join the Prussian Army where he saves the life of his captain and becomes his protégé and spy of the Irish gambler Chevalier de Balibari. He helps Chevalier and becomes his associate until he decides to marry the wealthy Lady Lyndon. They move to England and Barry, in his obsession of nobility, dissipates her fortune and makes a dangerous and revengeful enemy.    English, German, French    UK, USA, Ireland    Won 4 Oscars. Another 13 wins & 13 nominations.    2016-04-20 14:32:07.724546    2016-04-28 12:08:59.941389    2.8    MV5BMTczNzkyMjQ4N15BMl5BanBnXkFtZTcwOTQ2NjU4Mw__._V1_SX300.jpg    image/jpeg    24217    2016-04-28 12:08:59.759099
687    tt1392214    Prisoners    2013    153 min    2013-09-20    {"Denis Villeneuve"}    {"Aaron Guzikowski"}    8.09999999999999964    363    \N    How far would you go to protect your family? Keller Dover is facing every parent's worst nightmare. His six-year-old daughter, Anna, is missing, together with her young friend, Joy, and as minutes turn to hours, panic sets in. The only lead is a dilapidated RV that had earlier been parked on their street. Heading the investigation, Detective Loki arrests its driver, Alex Jones, but a lack of evidence forces his release. As the police pursue multiple leads and pressure mounts, knowing his child's life is at stake the frantic Dover decides he has no choice but to take matters into his own hands. But just how far will this desperate father go to protect his family?    English    USA    Nominated for 1 Oscar. Another 10 wins & 33 nominations.    2016-04-20 14:32:07.816122    2016-04-28 12:09:01.325862    4.45    MV5BMTg0NTIzMjQ1NV5BMl5BanBnXkFtZTcwNDc3MzM5OQ__._V1_SX300.jpg    image/jpeg    21642    2016-04-28 12:09:01.148064
688    tt0072890    Dog Day Afternoon    1975    125 min    1975-09-21    {"Sidney Lumet"}    {"Frank Pierson (screenplay)","P.F. Kluge (based upon a magazine article by)","Thomas Moore (based upon a magazine article by)"}    8    177    \N    A man robs a bank to pay for his lover's operation; it turns into a hostage situation and a media circus.    English    USA    Won 1 Oscar. Another 13 wins & 19 nominations.    2016-04-20 14:32:07.863169    2016-04-28 12:09:02.015286    1.84    MV5BMTQyNjQ5NjczM15BMl5BanBnXkFtZTYwNDA4MTk4._V1_SX300.jpg    image/jpeg    28668    2016-04-28 12:09:01.827498
689    tt0083922    Fanny and Alexander    1982    188 min    1982-12-17    {"Ingmar Bergman"}    {"Ingmar Bergman"}    8.09999999999999964    41    \N    Two young Swedish children experience the many comedies and tragedies of their family, the Ekdahls.    Swedish, German, Yiddish, English    Sweden, France, West Germany    Won 4 Oscars. Another 19 wins & 10 nominations.    2016-04-20 14:32:07.911523    2016-04-28 12:09:02.688371    2.27    MV5BOTUyODUwNjc0NV5BMl5BanBnXkFtZTcwMTk0MTcyMQ__._V1_SX300.jpg    image/jpeg    31391    2016-04-28 12:09:02.490254
691    tt2084970    The Imitation Game    2014    114 min    2014-12-25    {"Morten Tyldum"}    {"Graham Moore","Andrew Hodges (book)"}    8.09999999999999964    434    \N    Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.    English, German    UK, USA    Won 1 Oscar. Another 43 wins & 143 nominations.    2016-04-20 14:32:07.998046    2016-04-28 12:09:03.404756    4.42    MV5BNDkwNTEyMzkzNl5BMl5BanBnXkFtZTgwNTAwNzk3MjE_._V1_SX300.jpg    image/jpeg    37804    2016-04-28 12:09:03.163956
738    tt2092588    Frozen Planet    2011    60 min    2012-03-18    {N/A}    {N/A}    9.09999999999999964    9    \N    Focuses on life and the environment in both the Arctic and Antarctic.    English, Russian    UK, USA, Spain, Germany, Greece, Canada    Won 4 Primetime Emmys. Another 6 wins & 9 nominations.    2016-04-20 14:32:22.01462    2016-04-28 12:06:14.773208    3.75    MV5BMTU5MDI2NjU0N15BMl5BanBnXkFtZTcwNDMwMTA0Nw__._V1_SX300.jpg    image/jpeg    30350    2016-04-28 12:06:14.542793
693    tt0325980    Pirates of the Caribbean: The Curse of the Black Pearl    2003    143 min    2003-07-09    {"Gore Verbinski"}    {"Ted Elliott (screen story)","Terry Rossio (screen story)","Stuart Beattie (screen story)","Jay Wolpert (screen story)","Ted Elliott (screenplay)","Terry Rossio (screenplay)"}    8.09999999999999964    785    \N    This swash-buckling tale follows the quest of Captain Jack Sparrow, a savvy pirate, and Will Turner, a resourceful blacksmith, as they search for Elizabeth Swann. Elizabeth, the daughter of the governor and the love of Will's life, has been kidnapped by the feared Captain Barbossa. Little do they know, but the fierce and clever Barbossa has been cursed. He, along with his large crew, are under an ancient curse, doomed for eternity to neither live, nor die. That is, unless a blood sacrifice is made.    English    USA    Nominated for 5 Oscars. Another 31 wins & 86 nominations.    2016-04-20 14:32:08.087786    2016-04-28 12:09:05.02606    3.85    MV5BMjAyNDM4MTc2N15BMl5BanBnXkFtZTYwNDk0Mjc3._V1_SX300.jpg    image/jpeg    42928    2016-04-28 12:09:04.845906
695    tt1454029    The Help    2011    146 min    2011-08-10    {"Tate Taylor"}    {"Tate Taylor (screenplay)","Kathryn Stockett (novel)"}    8.09999999999999964    309    \N    Set in Mississippi during the 1960s, Skeeter (Stone) is a southern society girl who returns from college determined to become a writer, but turns her friends' lives -- and a Mississippi town -- upside down when she decides to interview the black women who have spent their lives taking care of prominent southern families. Aibileen (Davis), Skeeter's best friend's housekeeper, is the first to open up -- to the dismay of her friends in the tight-knit black community. Despite Skeeter's life-long friendships hanging in the balance, she and Aibileen continue their collaboration and soon more women come forward to tell their stories -- and as it turns out, they have a lot to say. Along the way, unlikely friendships are forged and a new sisterhood emerges, but not before everyone in town has a thing or two to say themselves when they become unwittingly -- and unwillingly -- caught up in the changing times.    English    USA, India, United Arab Emirates    Won 1 Oscar. Another 79 wins & 108 nominations.    2016-04-20 14:32:08.176702    2016-04-28 12:09:06.470637    2.06    MV5BMTM5OTMyMjIxOV5BMl5BanBnXkFtZTcwNzU4MjIwNQ__._V1_SX300.jpg    image/jpeg    32342    2016-04-28 12:09:06.27234
696    tt0058461    A Fistful of Dollars    1964    99 min    1967-01-18    {"Sergio Leone"}    {"Adriano Bolzoni (story)","Víctor Andrés Catena (story)","Sergio Leone (story)","Víctor Andrés Catena (screenplay)","Jaime Comas Gil (screenplay)","Sergio Leone (screenplay)"}    8    141    \N    An anonymous, but deadly man rides into a town torn by war between two factions, the Baxters and the Rojo's. Instead of fleeing or dying, as most other would do, the man schemes to play the two sides off each other, getting rich in the bargain.    Italian, Spanish, English    Italy, Spain, West Germany    1 win & 1 nomination.    2016-04-20 14:32:08.225583    2016-04-28 12:09:07.704339    4.51    MV5BMTAzODAxMzg1MzZeQTJeQWpwZ15BbWU3MDgwMzE5ODk_._V1_SX300.jpg    image/jpeg    44504    2016-04-28 12:09:07.511755
834    tt1758429    Spartacus: Gods of the Arena    2011    55 min    2011-01-21    {N/A}    {N/A}    8.59999999999999964    84    \N    Before Spartacus struck down his first opponent in the arena, there were many gladiators who passed through the gates onto the sand.'Spartacus: Gods of the Arena' tells the story of the ...    English, Syriac    USA    Nominated for 1 Primetime Emmy. Another 3 nominations.    2016-04-20 14:33:08.759279    2016-04-28 12:09:08.450623    2.18    MV5BMTYyMjI4NzYxOF5BMl5BanBnXkFtZTcwNTUwMTc1NA__._V1_SX300.jpg    image/jpeg    39715    2016-04-28 12:09:08.265106
676    tt0114746    Twelve Monkeys    1995    129 min    1996-01-05    {"Terry Gilliam"}    {"Chris Marker (film La Jetée)","David Webb Peoples (screenplay)","Janet Peoples (screenplay)"}    8.09999999999999964    450    \N    In a future world devastated by disease, a convict is sent back in time to gather information about the man-made virus that wiped out most of the human population on the planet.    English, French    USA    Nominated for 2 Oscars. Another 9 wins & 18 nominations.    2016-04-20 14:32:07.339206    2016-04-28 12:09:09.209154    3.55    MV5BMjI4MDIxNjk2Ml5BMl5BanBnXkFtZTcwMTA3Njk3OA__._V1_SX300.jpg    image/jpeg    23145    2016-04-28 12:09:08.97486
697    tt2015381    Guardians of the Galaxy    2014    121 min    2014-08-01    {"James Gunn"}    {"James Gunn","Nicole Perlman","Dan Abnett (comic book)","Andy Lanning (comic book)"}    8.09999999999999964    635    \N    After stealing a mysterious orb in the far reaches of outer space, Peter Quill from Earth, is now the main target of a manhunt led by the villain known as Ronan the Accuser. To help fight Ronan and his team and save the galaxy from his power, Quill creates a team of space heroes known as the "Guardians of the Galaxy" to save the world.    English    USA, UK    Nominated for 2 Oscars. Another 46 wins & 87 nominations.    2016-04-20 14:32:08.270557    2016-04-28 12:09:10.508675    2.68    MV5BMTAwMjU5OTgxNjZeQTJeQWpwZ15BbWU4MDUxNDYxODEx._V1_SX300.jpg    image/jpeg    47037    2016-04-28 12:09:10.323276
764    tt2098220    Hunter x Hunter    2011–    24 min    2011-10-02    {N/A}    {N/A}    9    14    \N    Gon Freecss is a young boy living on Whale Island. He learns from "Hunter" Kite, that his father, who he was told was dead, is still alive somewhere as a top "Hunter," risking his life to seek unknown items, such as hidden treasures, curiosa, exotic living creatures, etc. Gon decides to become a professional Hunter and leaves the island. To become a Hunter, he must pass the Hunter Examination, where he meets and befriends three other applicants: Kurapika, Leorio and Killua. Can Gon pass this formidable hurdle, the Hunter Examination, to become "the Best Hunter in the World" and eventually meet his father?    Japanese    Japan    N/A    2016-04-20 14:32:36.425773    2016-04-28 12:06:12.742957    4.99    MV5BNzc4MTA1NTEzNV5BMl5BanBnXkFtZTgwMDE1OTE4MzE_._V1_SX300.jpg    image/jpeg    51277    2016-04-28 12:06:12.527569
698    tt0264464    Catch Me If You Can    2002    141 min    2002-12-25    {"Steven Spielberg"}    {"Jeff Nathanson (screenplay)","Frank Abagnale Jr. (book)","Stan Redding (book)"}    8    497    \N    The true story of Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars' worth of checks as a Pan Am pilot, doctor, and legal prosecutor.    English, French    USA, Canada    Nominated for 2 Oscars. Another 11 wins & 39 nominations.    2016-04-20 14:32:08.316042    2016-04-28 12:09:11.326825    2.87    MV5BMTY5MzYzNjc5NV5BMl5BanBnXkFtZTYwNTUyNTc2._V1_SX300.jpg    image/jpeg    23293    2016-04-28 12:09:11.143463
707    tt0061184    Who's Afraid of Virginia Woolf?    1966    131 min    1966-06-22    {"Mike Nichols"}    {"Ernest Lehman (screenplay)"}    8.09999999999999964    54    \N    George and Martha are a middle aged married couple, whose charged relationship is defined by vitriolic verbal battles, which underlies what seems like an emotional dependence upon each other. This verbal abuse is fueled by an excessive consumption of alcohol. George being an associate History professor in a New Carthage university where Martha's father is the President adds an extra dimension to their relationship. Late one Saturday evening after a faculty mixer, Martha invites Nick and Honey, an ambitious young Biology professor new to the university and his mousy wife, over for a nightcap. As the evening progresses, Nick and Honey, plied with more alcohol, get caught up in George and Martha's games of needing to hurt each other and everyone around them. The ultimate abuse comes in the form of talk of George and Martha's unseen sixteen year old son, whose birthday is the following day.    English, Latin, Spanish    USA    Won 5 Oscars. Another 17 wins & 23 nominations.    2016-04-20 14:32:08.721553    2016-04-28 12:09:19.311789    2.62    MV5BMjIyMjgyNzA3OV5BMl5BanBnXkFtZTgwOTUxNzYxMTE_._V1_SX300.jpg    image/jpeg    31335    2016-04-28 12:09:19.117762
701    tt0046250    Roman Holiday    1953    118 min    1953-09-02    {"William Wyler"}    {"Ian McLellan Hunter (screenplay)","John Dighton (screenplay)","Dalton Trumbo (screenplay)","Dalton Trumbo (story)"}    8.09999999999999964    96    \N    Joe Bradley is a reporter for the American News Service in Rome, a job he doesn't much like as he would rather work for what he considers a real news agency back in the States. He is on the verge of getting fired when he, sleeping in and getting caught in a lie by his boss Hennessy, misses an interview with HRH Princess Ann, who is on a goodwill tour of Europe, Rome only her latest stop. However, he thinks he may have stumbled upon a huge scoop. Princess Ann has officially called off all her Rome engagements due to illness. In reality, he recognizes the photograph of her as being the young well but simply dressed drunk woman he rescued off the street last night (as he didn't want to turn her into the police for being a vagrant), and who is still in his small studio apartment sleeping off her hangover. What Joe doesn't know is that she is really sleeping off the effects of a sedative given to her by her doctor to calm her down after an anxiety attack, that anxiety because she hates her regimented life where she has no freedom and must always do and say the politically correct things, not what is truly on her mind or in her heart. In wanting just a little freedom, she seized upon a chance opportunity to escape from the royal palace where she was staying, albeit with no money in her pockets. Joe believes he can get an exclusive interview with her without she even knowing that he's a reporter or that he's interviewing her. As Joe accompanies "Anya Smith" - her name as she tells him in trying to hide her true identity - around Rome on her incognito day of freedom somewhat unaware that the secret service is searching for her, along for the ride is Joe's photographer friend, Irving Radovich, who Joe has tasked with clandestinely taking photographs of her, those photos to accompany the story. As the day progresses, Joe and Ann slowly start to fall for each other. Their feelings for each other affect what both decide to do, Ann with regard to her royal duties, Joe with regard to the story, and both with regard to if there is a future for them together.    English, Italian, German    USA    Won 3 Oscars. Another 7 wins & 15 nominations.    2016-04-20 14:32:08.453252    2016-04-28 12:09:12.727616    3.51    MV5BMTg1ODgzODA1Nl5BMl5BanBnXkFtZTcwNTI0MzU3Mg__._V1_SX300.jpg    image/jpeg    22891    2016-04-28 12:09:12.530936
702    tt0044706    High Noon    1952    85 min    1952-07-30    {"Fred Zinnemann"}    {"Carl Foreman (screenplay)","John W. Cunningham (magazine story \\"The Tin Star\\")"}    8.09999999999999964    77    \N    On the day he gets married and hangs up his badge, lawman Will Kane is told that a man he sent to prison years before, Frank Miller, is returning on the noon train to exact his revenge. Having initially decided to leave with his new spouse, Will decides he must go back and face Miller. However, when he seeks the help of the townspeople he has protected for so long, they turn their backs on him. It seems Kane may have to face Miller alone, as well as the rest of Miller's gang, who are waiting for him at the station...    English, Spanish    USA    Won 4 Oscars. Another 13 wins & 10 nominations.    2016-04-20 14:32:08.498837    2016-04-28 12:09:14.321244    4.48    MV5BMTUxMzg0MzIwM15BMl5BanBnXkFtZTgwOTU0MjkwMTE_._V1_SX300.jpg    image/jpeg    36491    2016-04-28 12:09:14.136836
703    tt0028950    La Grande Illusion    1937    114 min    1938-09-12    {"Jean Renoir"}    {"Charles Spaak (scenario and dialogue)","Jean Renoir (scenario and dialogue)"}    8.09999999999999964    25    \N    During 1st WW, two French officers are captured. Captain De Boeldieu is an aristocrat while Lieutenant Marechal was a mechanic in civilian life. They meet other prisoners from various backgrounds, as Rosenthal, son of wealthy Jewish bankers. They are separated from Rosenthal before managing to escape. A few months later, they meet again in a fortress commanded by the aristocrat Van Rauffenstein. De Boeldieu strikes up a friendship with him but Marechal and Rosenthal still want to escape...    French, German, English, Russian    France    Nominated for 1 Oscar. Another 5 wins & 1 nomination.    2016-04-20 14:32:08.541601    2016-04-28 12:09:15.064015    1.38    MV5BMTg3MTI5NTk0N15BMl5BanBnXkFtZTgwMjU1MDM5MTE_._V1_SX300.jpg    image/jpeg    32413    2016-04-28 12:09:14.881362
704    tt0101414    Beauty and the Beast    1991    84 min    1991-11-22    {"Gary Trousdale","Kirk Wise"}    {"Linda Woolverton (animation screenplay by)","Brenda Chapman (story)","Chris Sanders (story)","Burny Mattinson (story)","Kevin Harkey (story)","Brian Pimental (story)","Bruce Woodside (story)","Joe Ranft (story)","Tom Ellery (story)","Kelly Asbury (story)","Robert Lence (story)"}    8    297    \N    Belle is a girl who is dissatisfied with life in a small provincial French town, constantly trying to fend off the misplaced "affections" of conceited Gaston. The Beast is a prince who was placed under a spell because he could not love. A wrong turn taken by Maurice, Belle's father, causes the two to meet.    English, French    USA    Won 2 Oscars. Another 25 wins & 21 nominations.    2016-04-20 14:32:08.589336    2016-04-28 12:09:15.699157    2.32    MV5BMTkyMDgwODY0OV5BMl5BanBnXkFtZTgwODI5NTQ5MTE_._V1_SX300.jpg    image/jpeg    13899    2016-04-28 12:09:15.508471
772    tt0110687    North    1994    87 min    1994-07-22    {"Rob Reiner"}    {"Alan Zweibel (novel)","Alan Zweibel (screenplay)","Andrew Scheinman (screenplay)"}    4.40000000000000036    11    \N    Eleven-year-old North has had it with his parents. They are always busy with their careers and don't give North the attention he needs, so he files a lawsuit against them. The judge rules that North should either find new parents or return to his own parents within two months. Thus north starts off on an hilarious journey around the world to find the parents that really care about him.    English    USA    3 wins & 9 nominations.    2016-04-20 14:32:40.065164    2016-04-28 12:06:13.578761    1.56    MV5BMjEwMTQ5NjgxNF5BMl5BanBnXkFtZTcwNTk4NjUyMQ__._V1_SX300.jpg    image/jpeg    43039    2016-04-28 12:06:13.362343
705    tt0118694    In the Mood for Love    2000    98 min    2001-03-09    {"Kar-Wai Wong"}    {"Kar-Wai Wong"}    8.09999999999999964    72    \N    Set in Hong Kong, 1962, Chow Mo-Wan is a newspaper editor who moves into a new building with his wife. At the same time, Su Li-zhen, a beautiful secretary and her executive husband also move in to the crowded building. With their spouses often away, Chow and Li-zhen spend most of their time together as friends. They have everything in common from noodle shops to martial arts. Soon, they are shocked to discover that their spouses are having an affair. Hurt and angry, they find comfort in their growing friendship even as they resolve not to be like their unfaithful mates.    Cantonese, Shanghainese, French    Hong Kong, China    Nominated for 1 BAFTA Film Award. Another 44 wins & 41 nominations.    2016-04-20 14:32:08.637458    2016-04-28 12:09:16.315902    1.55    MV5BMTk0MjY3NjEzN15BMl5BanBnXkFtZTYwNTk2NDI5._V1._CR13_35_325_439_SY132_CR4_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4860    2016-04-28 12:09:16.165073
706    tt0038787    Notorious    1946    101 min    1946-09-06    {"Alfred Hitchcock"}    {"Ben Hecht"}    8.09999999999999964    71    \N    Following the conviction of her German father for treason against the U.S., Alicia Huberman takes to drink and men. She is approached by a government agent (T.R. Devlin) who asks her to spy on a group of her father's Nazi friends operating out of Rio de Janeiro. A romance develops between Alicia and Devlin, but she starts to get too involved in her work.    English, French, Portuguese    USA    Nominated for 2 Oscars. Another 3 wins & 1 nomination.    2016-04-20 14:32:08.678743    2016-04-28 12:09:16.900845    4.32    MV5BMTY3NTAwMjk5OV5BMl5BanBnXkFtZTgwNDU5OTQzMTE_._V1_SX300.jpg    image/jpeg    48223    2016-04-28 12:09:16.699427
713    tt0795176    Planet Earth    2006    48 min    2007-03-25    {N/A}    {N/A}    9.5    94    \N    Each 50 minute episode features a global overview of a different biome or habitat on Earth (Polar, Mountain, Cave, Desert, Plains, Fresh Water, Seas, Ocean, Forest), followed by a ten-minute featurette which takes a behind-the-scenes look at the challenges of filming the episode.    English    UK    Won 4 Primetime Emmys. Another 10 wins & 15 nominations.    2016-04-20 14:32:08.987228    2016-04-28 12:09:17.773497    2.56    MV5BNzA0NTQxNzQ3Ml5BMl5BanBnXkFtZTYwMjA1ODU3._V1._CR46_3_350_461_SY132_CR5_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4370    2016-04-28 12:09:17.621213
708    tt0381681    Before Sunset    2004    80 min    2004-07-30    {"Richard Linklater"}    {"Richard Linklater (screenplay)","Julie Delpy (screenplay)","Ethan Hawke (screenplay)","Richard Linklater (story)","Kim Krizan (story)","Richard Linklater (characters)","Kim Krizan (characters)"}    8    162    \N    Early thirty-something American Jesse Wallace is in a Paris bookstore, the last stop on a tour to promote his best selling book, This Time. Although he is vague to reporters about the source material for the book, it is about his chance encounter nine years earlier on June 15-16, 1994 with a Parisienne named Celine, and the memorable and romantic day and evening they spent together in Vienna. At the end of their encounter at the Vienna train station, which is also how the book ends, they, not providing contact information to the other, vowed to meet each other again in exactly six months at that very spot. As the media scrum at the bookstore nears its conclusion, Jesse spots Celine in the crowd, she who only found out about the book when she earlier saw his photograph promoting this public appearance. Much like their previous encounter, Jesse and Celine, who is now an environmental activist, decide to spend time together until he is supposed to catch his flight back to New York, this time only being about an hour. Beyond the issue of the six month meeting, what has happened in their lives in the intervening nine years, and their current lives, they once again talk about their philosophies of life and love, this time with the knowledge of their day together and how it shaped what has happened to them.    English, French    USA    Nominated for 1 Oscar. Another 9 wins & 27 nominations.    2016-04-20 14:32:08.767598    2016-04-28 12:09:22.322779    2.28    MV5BMTQ1MjAwNTM5Ml5BMl5BanBnXkFtZTYwNDM0MTc3._V1_SX300.jpg    image/jpeg    22472    2016-04-28 12:09:22.083809
709    tt0094625    Akira    1988    124 min    1988-07-16    {"Katsuhiro Ôtomo"}    {"Katsuhiro Ôtomo (screenplay)","Izô Hashimoto (screenplay)","Katsuhiro Ôtomo (graphic novel)","L. Michael Haller (dialogue)","Heidi Wilbur (dialogue)","Kevin Seymour (dialogue)"}    8.09999999999999964    102    \N    Kaneda is a bike gang leader whose close friend Tetsuo gets involved in a government secret project known as Akira. On his way to save Tetsuo, Kaneda runs into a group of anti-government activists, greedy politicians, irresponsible scientists and a powerful military leader. The confrontation sparks off Tetsuo's supernatural power leading to bloody death, a coup attempt and the final battle in Tokyo Olympiad where Akira's secrets were buried 30 years ago.    Japanese    Japan    1 win.    2016-04-20 14:32:08.815877    2016-04-28 12:09:22.969006    2.84    MV5BNTk0MjE2NDc1Nl5BMl5BanBnXkFtZTgwODM3NTU3MzE_._V1_SX300.jpg    image/jpeg    21246    2016-04-28 12:09:22.791003
710    tt0374546    Spring, Summer, Fall, Winter... and Spring    2003    103 min    2004-05-28    {"Ki-duk Kim"}    {"Ki-duk Kim"}    8.09999999999999964    60    \N    In the midst of the Korean wilderness, a Buddhist master patiently raises a young boy to grow up in wisdom and compassion, through experience and endless exercises. Once the pupil discovers his sexual lust, he seems lost to contemplative life and follows his first love, but soon fails to adapt to the modern world, gets in jail for a crime of passion and returns to the master in search of spiritual redemption and reconciliation with karma, at a high price of physical catharsis...    Korean    South Korea, Germany    13 wins & 8 nominations.    2016-04-20 14:32:08.859856    2016-04-28 12:09:23.787472    1.93    MV5BMTI0ODMwOTIxOV5BMl5BanBnXkFtZTcwMzE2NDUyMQ__._V1_SX300.jpg    image/jpeg    43118    2016-04-28 12:09:23.57163
711    tt0053779    La Dolce Vita    1960    174 min    1961-04-19    {"Federico Fellini"}    {"Federico Fellini (story)","Ennio Flaiano (story)","Tullio Pinelli (story)","Federico Fellini (screenplay)","Ennio Flaiano (screenplay)","Tullio Pinelli (screenplay)","Brunello Rondi (contributing writer)"}    8.09999999999999964    47    \N    Journalist and man-about-town Marcello struggles to find his place in the world, torn between the allure of Rome's elite social scene and the stifling domesticity offered by his girlfriend, all the while searching for a way to become a serious writer.    Italian, English, French, German    Italy, France    Won 1 Oscar. Another 10 wins & 12 nominations.    2016-04-20 14:32:08.903014    2016-04-28 12:09:24.979405    1.77    MV5BMTg3NjU5MTk2Ml5BMl5BanBnXkFtZTgwNTY2MTE1MjE_._V1_SX300.jpg    image/jpeg    41763    2016-04-28 12:09:24.779114
712    tt0185906    Band of Brothers    2001    705 min    2001-09-09    {N/A}    {N/A}    9.59999999999999964    213    \N    This is the story of "E" Easy Company, 506th Regiment of the 101st Airborne Division from their initial training starting in 1942 to the end of World War II. They parachuted behind enemy lines in the early hours of D-Day in support of the landings at Utah beach, participated in the liberation of Carentan and again parachuted into action during Operation Market Garden. They also liberated a concentration camp and were the first to enter Hitler's mountain retreat in Berchtesgaden. A fascinating tale of comradeship that is, in the end, a tale of ordinary men who did extraordinary things.    English, Dutch, French, German, Lithuanian    UK, USA    Won 1 Golden Globe. Another 33 wins & 24 nominations.    2016-04-20 14:32:08.946126    2016-04-28 12:09:25.842312    3.89    MV5BMTI3ODc2ODc0M15BMl5BanBnXkFtZTYwMjgzNjc3._V1_SX300.jpg    image/jpeg    31843    2016-04-28 12:09:25.653971
715    tt0944947    Game of Thrones    2011–    56 min    2011-04-17    {N/A}    {"David Benioff","D.B. Weiss"}    9.5    934    \N    Ned Stark, Lord of Winterfell, becomes the Hand of the King after the former Hand, Jon Arryn, has passed away. But before Ned goes to the capital, King's Landing, a letter arrives from his wife's sister Lysa, who was the wife of Jon Arryn. There it says that her husband was murdered, and it is up to Ned to find out what's going on. But that isn't everything. The White Walkers have been seen, and they seem to go down south.    English    USA    Won 1 Golden Globe. Another 172 wins & 278 nominations.    2016-04-20 14:32:09.468155    2016-04-28 12:09:26.651686    3.69    MV5BMjM5OTQ1MTY5Nl5BMl5BanBnXkFtZTgwMjM3NzMxODE_._V1_SX300.jpg    image/jpeg    35399    2016-04-28 12:09:26.41245
716    tt0306414    The Wire    2002–2008    59 min    2002-06-02    {N/A}    {"David Simon"}    9.40000000000000036    180    \N    Set in Baltimore, this show centers around the city's inner-city drug scene. It starts as mid-level drug dealer, D'Angelo Barksdale beats a murder rap. After a conversation with a judge, Det. James McNulty has been assigned to lead a joint homicide and narcotics team, in order to bring down drug kingpin Avon Barksdale. Avon Barksdale, accompanied by his right-hand man Stringer Bell, enforcer Wee-Bey and many lieutenants (including his own nephew, D'Angelo Barksdale), has to deal with law enforcement, informants in his own camp, and competition with a local rival, Omar, who's been robbing Barksdale's dealers and reselling the drugs. The supervisor of the investigation, Lt. Cedric Daniels, has to deal with his own problems, such as a corrupt bureaucracy, some of his detectives beating suspects, hard-headed but determined Det. McNulty, and a blackmailing deputy. The show depicts the lives of every part of the drug "food chain", from junkies to dealers, and from cops to politicians.    English, Greek, Mandarin, Spanish    USA    Nominated for 2 Primetime Emmys. Another 14 wins & 47 nominations.    2016-04-20 14:32:09.777407    2016-04-28 12:09:27.961645    2.19    MV5BNjc1NzYwODEyMV5BMl5BanBnXkFtZTcwNTcxMzU1MQ__._V1_SX300.jpg    image/jpeg    22838    2016-04-28 12:09:27.772626
717    tt2395695    Cosmos: A Spacetime Odyssey    2014–    557 min    2014-03-09    {N/A}    {N/A}    9.40000000000000036    52    \N    A documentary series that explores how we discovered the laws of nature and found our coordinates in space and time.    English    USA    Won 4 Primetime Emmys. Another 9 wins & 21 nominations.    2016-04-20 14:32:10.049367    2016-04-28 12:09:28.774443    1.31    MV5BMTc5NzgwNDE3N15BMl5BanBnXkFtZTgwNDAxMTY5MTE_._V1._CR51_41_938_1336_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    3624    2016-04-28 12:09:28.612602
718    tt0081846    Cosmos    1980    60 min    1980-09-28    {N/A}    {N/A}    9.30000000000000071    20    \N    Astronomer Carl Sagan leads us on an engaging guided tour of the various elements and cosmological theories of the universe.    English    USA, UK    Won 3 Primetime Emmys. Another 1 win & 3 nominations.    2016-04-20 14:32:10.269974    2016-04-28 12:09:29.315234    1.04    MV5BMTI0NTg5MjA5OF5BMl5BanBnXkFtZTcwNDMxMTEyMQ__._V1_SX300.jpg    image/jpeg    15126    2016-04-28 12:09:29.105122
652    tt0093779    The Princess Bride    1987    98 min    1987-10-09    {"Rob Reiner"}    {"William Goldman (book)","William Goldman (screenplay)"}    8.09999999999999964    283    \N    An elderly man reads the book "The Princess Bride" to his sick and thus currently bedridden adolescent grandson, the reading of the book which has been passed down within the family for generations. The grandson is sure he won't like the story, with a romance at its core, he preferring something with lots of action and "no kissing". But the grandson is powerless to stop his grandfather, whose feelings he doesn't want to hurt. The story centers on Buttercup, a former farm girl who has been chosen as the princess bride to Prince Humperdinck of Florian. Buttercup does not love him, she who still laments the death of her one true love, Westley, five years ago. Westley was a hired hand on the farm, his stock answer of "as you wish" to any request she made of him which she came to understand was his way of saying that he loved her. But Westley went away to sea, only to be killed by the Dread Pirate Roberts. On a horse ride to clear her mind of her upcoming predicament of marriage, Buttercup is kidnapped by a band of bandits: Vizzini who works on his wits, and his two associates, a giant named Fezzik who works on his brawn, and a Spaniard named Inigo Montoya, who has trained himself his entire life to be an expert swordsman. They in turn are chased by the Dread Pirate Roberts himself. But chasing them all is the Prince, and his men led by Count Tyrone Rugen. What happens to these collectives is dependent partly on Buttercup, who does not want to marry the Prince, and may see other options as lesser evils, and partly on the other motives of individuals within the groups. But a larger question is what the grandson will think of the story as it proceeds and at its end, especially as he sees justice as high a priority as action.    English    USA    Nominated for 1 Oscar. Another 6 wins & 8 nominations.    2016-04-20 14:32:06.259743    2016-04-28 12:09:30.030584    2.15    MV5BMTkzMDgyNjQwM15BMl5BanBnXkFtZTgwNTg2Mjc1MDE_._V1_SX300.jpg    image/jpeg    36246    2016-04-28 12:09:29.811235
719    tt2861424    Rick and Morty    2013–    22 min    2013-12-02    {N/A}    {"Dan Harmon","Justin Roiland"}    9.30000000000000071    56    \N    An animated series that follows the exploits of a super scientist and his not so bright grandson.    English    USA    3 wins & 4 nominations.    2016-04-20 14:32:10.591124    2016-04-28 12:09:30.933452    2.31    MV5BMTQxNDEwNTE0Nl5BMl5BanBnXkFtZTgwMzQ1MTg3MDE_._V1_SX300.jpg    image/jpeg    44160    2016-04-28 12:09:30.737325
720    tt0098769    The Civil War    1990    680 min    1990-09-23    {N/A}    {N/A}    9.5    4    \N    This highly acclaimed mini series traces the course of the U.S. Civil War from the abolitionist movement through all the major battles to the death of President Lincoln and the beginnings of Reconstruction. The story is mostly told in the words of the participants themselves, through their diaries, letters, and Visuals are usually still photographs and illustrations of the time, and the soundtrack is likewise made up of war-era tunes played on period instruments. Several modern-day historians offer periodic comment and insight on the war's causes and events.    English    USA    Won 2 Primetime Emmys. Another 8 wins & 3 nominations.    2016-04-20 14:32:10.969389    2016-04-28 12:09:31.68201    3.99    MV5BMTc0NTY5MzAwOV5BMl5BanBnXkFtZTcwNTk3MzcyMQ__._V1_SX300.jpg    image/jpeg    28295    2016-04-28 12:09:31.492197
723    tt0071075    The World at War    1973    52 min    1973-10-31    {N/A}    {N/A}    9.30000000000000071    10    \N    A multi-volumed documentary mini-series, "The World at War" covers the entire history of World War II from the causes of the 1920s to the aftermath of the Cold War in the 1950s. Emphasis is also placed on several inside story episodes, where events are covered which occurred inside Germany and Japan such as resistance to Hitler, life in general under a dictatorial regime, and particular emphasis is focused on the Jewish Holocaust.    English, German, French, Japanese    UK    2 wins & 3 nominations.    2016-04-20 14:32:12.729977    2016-04-28 12:09:32.462957    2.92    MV5BMTYyMzQ0NDk4OF5BMl5BanBnXkFtZTcwOTAwNjYyMQ__._V1_SX300.jpg    image/jpeg    35578    2016-04-28 12:09:32.257944
724    tt0123964    Life    1999    108 min    1999-04-16    {"Ted Demme"}    {"Robert Ramsey","Matthew Stone"}    6.70000000000000018    33    \N    In the mid-1990s, two inmates bury the burned bodies of two lifers at Mississippi's infamous Parchman Farm; a third old-timer relates their story. They'd served 65 years for a murder they didn't commit, framed by a local sheriff while buying moonshine whiskey for a Manhattan club owner to whom they owed money. In flashbacks we see this odd couple thrown together (Ray is a fast-talking con man, and Claude is a serious man about to start work as a bank teller), the loss of Ray's watch (sterling silver, from his daddy), the murder and trial, the hardships of Parchman, and the love-hate relationship of Claude and Ray as they spend 65 years bickering and looking for a way to escape.    English    USA    Nominated for 1 Oscar. Another 1 win & 5 nominations.    2016-04-20 14:32:13.945986    2016-04-28 12:09:33.143039    1.1    MV5BMjAwMTEwMDAwMl5BMl5BanBnXkFtZTcwODk4NDgyMQ__._V1_SX300.jpg    image/jpeg    34762    2016-04-28 12:09:32.947181
725    tt0417299    Avatar: The Last Airbender    2005–2008    23 min    2005-02-21    {N/A}    {"Michael Dante DiMartino","Bryan Konietzko"}    9.19999999999999929    122    \N    The world is divided into four elemental nations: The Northern and Southern Water Tribes, the Earth Kingdom, the Fire Nation, and the Air Nomads. The Avatar upholds the balance between the nations, but everything changed when the Fire Nation invaded. Only the Avatar, master of all four elements, can stop them. But when the world needs him most, he vanishes. A hundred years later Katara and Sokka discover the new Avatar, an airbender named Aang. Together they must help Aang master the elements and save the world.    English    USA    Won 1 Primetime Emmy. Another 7 wins & 5 nominations.    2016-04-20 14:32:14.544857    2016-04-28 12:09:34.068303    2.13    MV5BMTM3MTc3OTc0NF5BMl5BanBnXkFtZTcwOTQ0OTM1MQ__._V1._CR34_0_295_440_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5517    2016-04-28 12:09:33.90623
714    tt0903747    Breaking Bad    2008–2013    49 min    2008-01-20    {N/A}    {"Vince Gilligan"}    9.5    832    \N    A high school chemistry teacher diagnosed with inoperable lung cancer turns to manufacturing and selling methamphetamine, with his former student, in order to secure his family's financial future.    English, Spanish    USA    Won 2 Golden Globes. Another 118 wins & 197 nominations.    2016-04-20 14:32:09.259727    2016-04-28 12:06:16.00385    4.46    MV5BMTQ0ODYzODc0OV5BMl5BanBnXkFtZTgwMDk3OTcyMDE_._V1_SX300.jpg    image/jpeg    39083    2016-04-28 12:06:15.815255
727    tt2356777    True Detective    2014–    55 min    2014-01-12    {N/A}    {"Nic Pizzolatto"}    9.09999999999999964    309    \N    In 2012, Louisiana State Police Detectives Rust Cohle and Martin Hart are brought in to revisit a homicide case they worked in 1995. As the inquiry unfolds in present day through separate interrogations, the two former detectives narrate the story of their investigation, reopening unhealed wounds, and drawing into question their supposed solving of a bizarre ritualistic murder in 1995. The timelines braid and converge in 2012 as each man is pulled back into a world they believed they'd left behind. In learning about each other and their killer, it becomes clear that darkness lives on both sides of the law.    English    USA    Nominated for 4 Golden Globes. Another 26 wins & 44 nominations.    2016-04-20 14:32:15.811963    2016-04-28 12:09:34.816376    3.28    MV5BMTUzNTMwODI1OV5BMl5BanBnXkFtZTgwMDIzMTQ0NTE_._V1_SX300.jpg    image/jpeg    30154    2016-04-28 12:09:34.616417
728    tt0303461    Firefly    2002–2003    44 min    2002-09-20    {N/A}    {"Joss Whedon"}    9.09999999999999964    180    \N    Captain Malcolm 'Mal' Reynolds is a former galactic war veteran who is the captain of the transport ship "Serenity". Mal and his crew, ensign Zoe Alleyne Washburne; Zoe's husband, pilot Hoban 'Wash' Washburne; muscular mercenary Jayne Cobb; young mechanic Kaylee Frye; former Alliance medical officer Simon Tam; his disturbed teenage sister River (both on the run from the interplanetary government "The Alliance"); the beautiful courtesan Inara Serra; and preacher Shepherd Book do any jobs, legal or illegal, they can find as the Serenity crew travels across the outskirts of outer space.    English, Mandarin    USA    Won 1 Primetime Emmy. Another 3 wins & 8 nominations.    2016-04-20 14:32:16.452447    2016-04-28 12:09:35.897783    2.51    MV5BMTM0OTIzNjM4OV5BMl5BanBnXkFtZTcwNDk4MDU5MQ__._V1._CR57_54_340_418_SY132_CR9_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5445    2016-04-28 12:09:35.720847
756    tt0384766    Rome    2005–2007    90 min    2005-08-28    {N/A}    {"Bruno Heller","William J. MacDonald","John Milius"}    8.90000000000000036    109    \N    A down-to-earth account of the lives of both illustrious and ordinary Romans set in the last days of the Roman Republic.    English    UK, USA    Nominated for 2 Golden Globes. Another 19 wins & 33 nominations.    2016-04-20 14:32:32.593293    2016-04-28 12:09:37.948809    1.09    MV5BODUwMTE2MDgzMF5BMl5BanBnXkFtZTcwMTg2NTA0Mg__._V1_SX300.jpg    image/jpeg    33698    2016-04-28 12:09:37.762081
733    tt1355642    Fullmetal Alchemist: Brotherhood    2009–2010    24 min    2009-04-09    {N/A}    {N/A}    9.09999999999999964    45    \N    Two brothers lose their mother to an incurable disease. With the power of "alchemy", they use taboo knowledge to resurrect her. The process fails, and as a toll for using this type of alchemy, the older brother, Edward Elric loses his left leg while the younger brother, Alphonse Elric loses his entire body. To save his brother, Edward sacrifices his right arm and is able to affix his brother's soul to a suit of armor. With the help of a family friend, Edward receives metal limbs - "automail" - to replace his lost ones. With that, Edward vows to search for the Philosopher's Stone to return the brothers to their original bodies, even if it means becoming a "State Alchemist", one who uses his/her alchemy for the military.    Japanese    Japan    3 wins & 4 nominations.    2016-04-20 14:32:19.761717    2016-04-28 12:09:38.610384    1.25    MV5BMTQzMDExNjg5NV5BMl5BanBnXkFtZTcwNjUxMjUxMw__._V1._CR3_2_349_493_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4476    2016-04-28 12:09:38.464203
749    tt0098936    Twin Peaks    1990–1991    47 min    1990-04-08    {N/A}    {"Mark Frost","David Lynch"}    8.90000000000000036    104    \N    The body of a young girl (Laura Palmer) is washed up on a beach near the small Washington state town of Twin Peaks. FBI Special Agent Dale Cooper is called in to investigate her strange demise only to uncover a web of mystery that ultimately leads him deep into the heart of the surrounding woodland and his very own soul.    English, Icelandic, Afrikaans, Norwegian    USA    Won 3 Golden Globes. Another 11 wins & 43 nominations.    2016-04-20 14:32:28.807496    2016-04-28 12:09:40.071332    3.9    MV5BMTExNzk2NjcxNTNeQTJeQWpwZ15BbWU4MDcxOTczOTIx._V1_SX300.jpg    image/jpeg    32650    2016-04-28 12:09:39.824351
751    tt0074006    I, Claudius    1976    669 min    1977-11-06    {N/A}    {N/A}    9    10    \N    The mini-series follows the history of the Roman Empire, from approximately the death of Marcellus (24/23 BC) to Claudius' own death in 54 AD. As Claudius narrates his life, we witness Augustus' attempts to find an heir, often foiled by his wife Livia who wants her son Tiberius to become emperor. We also see the conspiracy of Sejanus, the infamous reign of Caligula, and Claudius' own troubled period of rule.    English, German    UK    Won 1 Primetime Emmy. Another 6 wins & 3 nominations.    2016-04-20 14:32:29.723844    2016-04-28 12:09:40.796114    3.03    MV5BMTI1NzY0MDQ1OF5BMl5BanBnXkFtZTcwODk3MzgxMQ__._V1._CR22_31_226_326_SY132_CR1_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    6299    2016-04-28 12:09:40.633019
752    tt0098904    Seinfeld    1989–1998    22 min    1990-05-31    {N/A}    {"Larry David","Jerry Seinfeld"}    8.90000000000000036    165    \N    The continuing misadventures of neurotic New York stand-up comedian Jerry Seinfeld and his equally neurotic New York friends.    English    USA    Won 3 Golden Globes. Another 67 wins & 179 nominations.    2016-04-20 14:32:30.296294    2016-04-28 12:09:41.483845    4.72    MV5BMTQ2MDYyNDYyNl5BMl5BanBnXkFtZTgwNDQ4OTkwMDE_._V1._CR11_1_316_470_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5640    2016-04-28 12:09:41.332972
753    tt0108778    Friends    1994–2004    22 min    1994-09-22    {N/A}    {"David Crane","Marta Kauffman"}    9    456    \N    Follows the lives of six 20-something friends living in Manhattan.    English    USA    Won 1 Golden Globe. Another 68 wins & 205 nominations.    2016-04-20 14:32:31.070148    2016-04-28 12:06:16.802077    2.71    MV5BMTg4NzEyNzQ5OF5BMl5BanBnXkFtZTYwNTY3NDg4._V1._CR24_0_293_443_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5611    2016-04-28 12:06:16.64884
754    tt0193676    Freaks and Geeks    1999–2000    44 min    1999-09-25    {N/A}    {"Paul Feig"}    8.90000000000000036    87    \N    It's the 1980s and at McKinley High, there's two different groups of teenagers, the Freaks with cool and charismatic Daniel Desario and tomboy Lindsay Weir and the Geeks with Lindsay's shy younger brother Sam, gentle Bill Haverchuck, and self-proclaimed ladies' man Neal Schweiber. The show chronicles the normal teen/adolescence problems any teenager goes through including acceptance, drugs, drinking, and bullying.    English    USA    Won 1 Primetime Emmy. Another 2 wins & 15 nominations.    2016-04-20 14:32:31.36932    2016-04-28 12:09:42.181101    1.87    MV5BMjA0MTkwNDYwM15BMl5BanBnXkFtZTcwOTM4MDUyMQ__._V1_SX300.jpg    image/jpeg    33864    2016-04-28 12:09:41.986284
757    tt0096548    Blackadder Goes Forth    1989    175 min    1989-09-28    {N/A}    {N/A}    8.80000000000000071    30    \N    It is 1917, and lunatic General Sir Anthony Cecil Hogmanay Melchett is leading the British troops at the front lines against the Germans, while everyone waits for Field Marshall Haig's big push. There are various emotions throughout the camp about it. For Captain Kevin Darling, Melchett's bull-dog-like right-hand man, it makes no difference, as it appears he will be safe and sound with the general when the big push occurs. For Lieutenant George Colhurst Saint Barleigh, he is overly excited at thrashing the Germans. For Private S. (probably for Sod-Off) Baldrick, it's a terrifying experience he is not looking forward to. For Captain Edmund Blackadder, however, it's something he's too cowardly too face. Self-centered, arrogant, and sarcastic, Blackadder is always constantly searching for a way out of this silly war, and will try various, often crazy, variations on escape, all of which will take a turn he never expected. Sharing a dugout with George and Baldrick, his main obstacle for escape is Darling, who will ensure everyone is present for the big push.    English    UK    3 wins.    2016-04-20 14:32:33.05401    2016-04-28 12:09:42.871894    4.17    MV5BMTIwNzI3Nzk1MF5BMl5BanBnXkFtZTYwMTUxMjk4._V1._CR11_38_314_404_SY132_CR7_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5227    2016-04-28 12:09:42.733325
758    tt0096697    The Simpsons    1989–    22 min    1989-12-17    {N/A}    {"James L. Brooks","Matt Groening","Sam Simon"}    8.80000000000000071    256    \N    The Simpsons is an animated sitcom about the antics of a dysfunctional family called the Simpsons (surprise surprise). Homer is the oafish unhealthy beer loving father, Marge is the hardworking homemaker wife, Bart is the ten year old underachiever (and proud of it), Lisa is the unappreciated eight year old genius, and Maggie is the cute, pacifier loving silent infant.    English, Spanish, Albanian, French, Japanese, German, Russian, Hindi, Swahili, Italian, Swedish, Turkish, Cantonese, Mandarin, Hebrew, Arabic, Klingon, Bengali, Czech    USA    Nominated for 1 Golden Globe. Another 155 wins & 258 nominations.    2016-04-20 14:32:33.372728    2016-04-28 12:09:43.552705    4.39    MV5BMTk0MTAzMzgxOV5BMl5BanBnXkFtZTgwOTM3Mjg4MzE_._V1_SX300.jpg    image/jpeg    40891    2016-04-28 12:09:43.340958
806    tt4189022    Ash vs Evil Dead    2015–    30 min    2015-10-31    {N/A}    {N/A}    8.69999999999999929    26    \N    Ash has spent the last 30 years avoiding responsibility, maturity and the terrors of the Evil Dead until a Deadite plague threatens to destroy all of mankind and Ash becomes mankind's only hope.    English    USA    5 nominations.    2016-04-20 14:32:56.291651    2016-04-28 12:06:18.178127    3.51    MV5BMTQ5OTQ4ODY0NV5BMl5BanBnXkFtZTgwMzQ4MjA2NjE_._V1_SX300.jpg    image/jpeg    38363    2016-04-28 12:06:18.004022
760    tt1196006    Code Geass: Lelouch of the Rebellion R2    2008–    24 min    2008-04-06    {N/A}    {N/A}    8.90000000000000036    14    \N    A continuation of "Code Geass: Lelouch of the Rebellion". One year after the events of the season 1 finale, Lelouch returns to Ashford Academy, having no memory of his time as Zero, his Geass power, or his sister Nunnally. The Black Knights were defeated in the Battle of Tokyo, and all but a few of them have been captured or killed. The remaining Black Knights, along with C.C., find Lelouch and help him regain his memory. Afterwards, Lelouch resumes the role of Zero while attempting to hide the fact that his memories have returned.    Japanese    Japan    3 wins.    2016-04-20 14:32:34.215596    2016-04-28 12:09:44.571802    4.78    MV5BMjA3OTUzNTIzOV5BMl5BanBnXkFtZTgwOTg4MTI1NjE_._V1_SX300.jpg    image/jpeg    50539    2016-04-28 12:09:44.376574
762    tt0118421    Oz    1997–2003    55 min    1997-07-12    {N/A}    {"Tom Fontana"}    8.80000000000000071    64    \N    Oz chronicles life inside an experimental cell block in the Oswald Maximum Security Correctional Facility: Level Four called Emerald City. Under unit manager Tim McManus and Warden Leo Glynn, the inmates in Em City all struggle to fulfill their own needs. Some fight for power; either power over the drug trade or power over the other inmate factions. Others want money, either through slinging 'tits' (drugs), gambling or other scams. Others, Corrections officers and inmates alike, simply want to survive long enough to make parole or even to see tomorrow. The show gives a no-holds-barred account of prison life with all the plots, subplots and conflicts given context and explanation by the show's wheelchair-bound narrator, Augustus Hill.    English    USA    Nominated for 2 Primetime Emmys. Another 14 wins & 51 nominations.    2016-04-20 14:32:35.288823    2016-04-28 12:09:45.439696    3.79    MV5BOTAxOTg2ODM3MF5BMl5BanBnXkFtZTgwMjIyMzgwMzE_._V1_SX300.jpg    image/jpeg    14883    2016-04-28 12:09:45.27311
769    tt0121955    South Park    1997–    22 min    1997-08-13    {N/A}    {"Trey Parker","Matt Stone","Brian Graden"}    8.80000000000000071    230    \N    The curious, adventure-seeking, fourth grade group of boys, Stan, Kyle, Cartman, and Kenny, all join in in buffoonish adventures that sometimes evolve nothing. Sometimes something that was simple at the start, turns out to get out of control. Everything is odd in the small mountain town, South Park, and the boys always find something to do with it.    English    USA    Won 7 Primetime Emmys. Another 10 wins & 53 nominations.    2016-04-20 14:32:38.982919    2016-04-28 12:09:46.561451    1.57    MV5BMTYwMzUwOTE0NF5BMl5BanBnXkFtZTcwMDUwNTY0NA__._V1._CR0_0_372_469_SY132_CR8_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5328    2016-04-28 12:09:46.404877
862    tt0129690    I'm Alan Partridge    1997–2002    29 min    1997-11-03    {N/A}    {N/A}    8.59999999999999964    12    \N    Alan Partridge a failed television presenter whose previous exploits had featured in the chat-show parody Knowing Me, Knowing You with Alan Partridge, and who is now presenting a programed on local radio in Norwich.    English, German, French    UK    5 wins & 6 nominations.    2016-04-20 14:33:25.009948    2016-04-28 12:06:17.412648    1.78    MV5BMTk4MTYyMjU3N15BMl5BanBnXkFtZTcwNzM4NjYzMQ__._V1_SX300.jpg    image/jpeg    35232    2016-04-28 12:06:17.231404
771    tt1486217    Archer    2009–    22 min    2009-09-17    {N/A}    {"Adam Reed"}    8.80000000000000071    82    \N    At ISIS, an international spy agency, global crises are merely opportunities for its highly trained employees to confuse, undermine, betray and royally screw each other. At the center of it all is suave master spy Sterling Archer, whose less-than-masculine code name is "Duchess." Archer works with his domineering mother Malory, who also is his boss. He also has to deal with his ex-girlfriend, Agent Lana Kane and her new boyfriend, ISIS comptroller Cyril Figgis, as well as Malory's lovesick secretary, Cheryl.    English    USA    Nominated for 3 Primetime Emmys. Another 7 wins & 29 nominations.    2016-04-20 14:32:39.653115    2016-04-28 12:09:47.236803    1.04    MV5BMTg3NTMwMzY2OF5BMl5BanBnXkFtZTgwMDcxMjQ0NDE_._V1_SX300.jpg    image/jpeg    43796    2016-04-28 12:09:47.04145
775    tt0412142    House M.D.    2004–2012    44 min    2004-11-16    {N/A}    {"David Shore"}    8.80000000000000071    293    \N    The series follows the life of anti-social, pain killer addict, witty and arrogant medical doctor Gregory House with only half a muscle in his right leg. He and his team of medical doctors try to cure very ill ordinary people in the United States of America.    English    USA    Won 2 Golden Globes. Another 51 wins & 118 nominations.    2016-04-20 14:32:41.116925    2016-04-28 12:09:47.987211    1.95    MV5BMjA4NTkzNjg1OF5BMl5BanBnXkFtZTcwNjg3MTI1Ng__._V1_SX300.jpg    image/jpeg    21348    2016-04-28 12:09:47.800271
776    tt2560140    Attack on Titan    2013–    24 min    2014-05-03    {N/A}    {N/A}    8.90000000000000036    57    \N    2000 years from now, humans are nearly exterminated by titans. Titans are typically several stories tall, seem to have no intelligence, devour human beings and, worst of all, seem to do it for the pleasure rather than as a food source. A small percentage of humanity survived by walling themselves in a city protected by extremely high walls, even taller than the biggest of titans. Flash forward to the present and the city has not seen a titan in over 100 years. Teenage boy Eren and his foster sister Mikasa witness something horrific as the city walls are destroyed by a colossal titan that appears out of thin air. As the smaller titans flood the city, the two kids watch in horror as their mother is eaten alive. Eren vows that he will murder every single titan and take revenge for all of mankind.    Japanese    Japan    8 wins & 5 nominations.    2016-04-20 14:32:41.440343    2016-04-28 12:09:48.628491    4.78    MV5BMTY5ODk1NzUyMl5BMl5BanBnXkFtZTgwMjUyNzEyMTE_._V1_SX300.jpg    image/jpeg    43101    2016-04-28 12:09:48.43678
777    tt3032476    Better Call Saul    2015–    47 min    2015-02-08    {N/A}    {"Vince Gilligan","Peter Gould"}    8.80000000000000071    130    \N    Before Saul Goodman, he was Jimmy McGill. And if you're calling Jimmy, you're in real trouble. The prequel to "Breaking Bad" follows small-time attorney Jimmy McGill as he transforms into Walter White's morally challenged lawyer, Saul Goodman.    English, Spanish, Vietnamese    USA    Nominated for 1 Golden Globe. Another 7 wins & 28 nominations.    2016-04-20 14:32:41.891652    2016-04-28 12:09:49.616418    4.66    MV5BNjk5MjYwNjg4NV5BMl5BanBnXkFtZTgwNzAzMzc5NzE_._V1_SX300.jpg    image/jpeg    37674    2016-04-28 12:09:49.42074
778    tt0115147    The Daily Show    1996–    22 min    1996-07-22    {N/A}    {"Lizz Winstead","Madeleine Smithberg"}    8.80000000000000071    32    \N    Providing comedy/news in the tradition of TV Nation and SNL's Weekend Update, Comedy Central's Daily Show reports on the foibles and of the real world with a satirical edge. In addition to news stories, the Daily Show also has celebrities (and semi-celebrities) on for interviews with the host, Trevor Noah. Lampooning everything from televangelists to Charlton Heston ("I did not play a homo in Ben-Hur"), and shamelessly assigning faux-news epithets ("Newt Gingrich: Giant Toddler") Kilborn, Winstead, and the crew actually manage to report some real news from time to time.    English    USA    Won 23 Primetime Emmys. Another 27 wins & 115 nominations.    2016-04-20 14:32:42.71491    2016-04-28 12:09:50.491497    3.68    MV5BNjE1MTY0MjY4OV5BMl5BanBnXkFtZTgwMzEzNTY4NzE_._V1_SX300.jpg    image/jpeg    19963    2016-04-28 12:09:50.324588
796    tt0380136    QI    2003–    30 min    2003-09-11    {N/A}    {N/A}    8.69999999999999929    20    \N    A comedy panel game in which being Quite Interesting is more important than being right. Stephen Fry is joined each week by four comedians to share anecdotes and trivia, and maybe answer some questions as well.    English    UK    3 wins & 10 nominations.    2016-04-20 14:32:50.501634    2016-04-28 12:09:51.064797    4.43    MV5BMTMwMDUyMzA1OF5BMl5BanBnXkFtZTcwNzg0MTA0MQ__._V1._CR16_3_310_435_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5751    2016-04-28 12:09:50.907688
779    tt0214341    Dragon Ball Z    1996–2003    24 min    1996-09-13    {N/A}    {N/A}    8.80000000000000071    72    \N    In the version that is shown on YTV in Canada, the story begins mid-way through the Dragon Ball Z series. Raditz, Goku's brother has traveled to Earth to find out why Goku has not yet destroyed the planet as he was supposed to do. But while as a baby, Goku was dropped (down a huge cliff) and forgot his real mission. Kakarot, Goku's real name battles his brother Raditzs along with former enemy Piccolo and friend Krillin. Meanwhile, Gohan; Goku's son reveals his hidden powers against Raditz and nearly kills Raditz. However Goku is killed in the end, but Raditz is eventually defeated by Piccolo. Before he dies, he tells them that two evil Saiyans even more powerful then he is, are on route to Earth. The remaining fighters, Krillin, Yamcha, Tien, and Chiaotzu begin their training to battle the evil Saiyans, while Piccolo takes off with Gohan to train him in using his new found power. Meanwhile, Goku has to make his way back on Snake Way to King Kai's where he trains himself in the secret art of Kaio-ken.    Japanese, English    USA, Canada    N/A    2016-04-20 14:32:42.755468    2016-04-28 12:09:51.719821    4.11    MV5BMTM1NTY1MTcxNF5BMl5BanBnXkFtZTcwNzE3MjMyMQ__._V1._CR10_7_274_430_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4058    2016-04-28 12:09:51.571869
781    tt0472954    It's Always Sunny in Philadelphia    2005–    22 min    2005-08-04    {N/A}    {"Rob McElhenney","Glenn Howerton"}    8.80000000000000071    128    \N    Four average people own a pub in Philly. They always seem to get themselves in precarious positions through their stupidity and pursuit of the American Dream. They never seem to do anything right through Murphy's law. A lot of witty and dark humor, so if you are not a fan of that, then this is definitely not for you. If so, it's your dream show, with each episode giving you life scenarios dramatized and the most outrageous characters to play them.    English    USA    Nominated for 3 Primetime Emmys. Another 1 win & 6 nominations.    2016-04-20 14:32:43.32372    2016-04-28 12:09:52.271358    3.71    MV5BMTQ1NDg4NjUyM15BMl5BanBnXkFtZTgwMTQ1NTM1NzE_._V1_SX300.jpg    image/jpeg    23138    2016-04-28 12:09:52.087769
782    tt0353049    Chappelle's Show    2003–2006    22 min    2003-01-22    {N/A}    {"Neal Brennan","Dave Chappelle"}    8.80000000000000071    33    \N    Comedian Dave Chappelle hosts this sketch-comedy show that parodies many of the nuances of race and culture.    English    USA    Nominated for 3 Primetime Emmys. Another 6 wins & 8 nominations.    2016-04-20 14:32:43.703914    2016-04-28 12:09:52.960538    4.44    MV5BMTM2NDAxMjU0MV5BMl5BanBnXkFtZTcwODI3NjUzMQ__._V1._CR0_32_289_374_SY132_CR6_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    6332    2016-04-28 12:09:52.805783
833    tt1489428    Justified    2010–2015    44 min    2010-03-16    {N/A}    {"Graham Yost"}    8.59999999999999964    61    \N    Old-school U.S. Marshal Raylan Givens is reassigned from Miami to his childhood home in the poor, rural coal-mining towns in Eastern Kentucky.    English    USA    Won 2 Primetime Emmys. Another 7 wins & 60 nominations.    2016-04-20 14:33:08.076501    2016-04-28 12:09:53.863431    1.29    MV5BMjM0MDYzODA1MV5BMl5BanBnXkFtZTgwNDE5MTkxNDE_._V1_SX300.jpg    image/jpeg    32681    2016-04-28 12:09:53.645971
783    tt0348914    Deadwood    2004–2006    55 min    2004-03-21    {N/A}    {"David Milch"}    8.80000000000000071    62    \N    The town of Deadwood, South Dakota in the weeks following the Custer massacre is a lawless sinkhole of crime and corruption. Into this uncivilized outpost ride a disillusioned and bitter ex-lawman, Wild Bill Hickok, and Seth Bullock, a man hoping to find a new start for himself. Both men find themselves quickly on opposite sides of the legal and moral fence from Al Swearengen, saloon owner, hotel operator, and incipient boss of Deadwood. The lives of these three intertwine with many others, the high-minded and the low-lifes who populate Deadwood in 1876.    English    USA    Won 1 Golden Globe. Another 24 wins & 76 nominations.    2016-04-20 14:32:44.106334    2016-04-28 12:09:55.533557    3.46    MV5BMTQxNjA4NzA5OF5BMl5BanBnXkFtZTcwNTg1MzUyMQ__._V1_SX300.jpg    image/jpeg    49820    2016-04-28 12:09:55.341996
785    tt1910272    Steins;Gate    2011–    24 min    2011-04-06    {N/A}    {N/A}    8.90000000000000036    14    \N    Okabe Rintarou, a university student who refers to himself as Crazy Mad Scientist Hououin Kyouma and his lab's members work on a microwave device that can transfer messages to the past. Without getting captured, they should get it working in order to beat the evil organization, SERN and stop their evil plans.    Japanese    Japan    N/A    2016-04-20 14:32:44.646921    2016-04-28 12:09:56.329292    3.0    MV5BODE2NDg1NzQyM15BMl5BanBnXkFtZTgwMzA3ODcwMzE_._V1._CR203_47_284_372_SY132_CR6_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5577    2016-04-28 12:09:56.181316
787    tt0386676    The Office    2005–2013    22 min    2005-03-24    {N/A}    {"Greg Daniels","Ricky Gervais","Stephen Merchant"}    8.80000000000000071    192    \N    A mediocre paper company in the hands of Scranton, PA branch manager Michael Scott. This mockumentary follows the everyday lives of the manager and the employees he "manages." the crew follows the employees around 24/7 and captures their quite humerous and bizarre encounters as they will do what it takes to keep the company thriving..    English    USA    Won 1 Golden Globe. Another 37 wins & 155 nominations.    2016-04-20 14:32:45.799081    2016-04-28 12:09:56.939101    4.25    MV5BMTgzNjAzMDE0NF5BMl5BanBnXkFtZTcwNTEyMzM3OA__._V1_SX300.jpg    image/jpeg    25465    2016-04-28 12:09:56.763389
797    tt2442560    Peaky Blinders    2013–    60 min    2014-09-30    {N/A}    {"Steven Knight"}    8.80000000000000071    44    \N    A gangster family epic set in 1919 Birmingham, England and centered on a gang who sew razor blades in the peaks of their caps, and their fierce boss Tommy Shelby, who means to move up in the world.    English, Romanian    UK    9 wins & 9 nominations.    2016-04-20 14:32:50.950693    2016-04-28 12:09:57.629929    2.74    MV5BMTQxODYzNTQzOV5BMl5BanBnXkFtZTgwMTI2MDYwMDE_._V1_SX300.jpg    image/jpeg    33860    2016-04-28 12:09:57.435009
789    tt4158110    Mr. Robot    2015–    49 min    2015-09-04    {N/A}    {N/A}    8.80000000000000071    126    \N    Elliot Alderson is a young cyber-security engineer living in New York, who assumes the role of a vigilante hacker by night. Elliot meets a mysterious anarchist known as "Mr. Robot" who recruits Elliot to join his team of hackers, "fsociety". Elliot, who has a social anxiety disorder and connects to people by hacking them, is intrigued but uncertain if he wants to be part of the group. The show follows Mr. Robot's attempts to engage Elliot in his mission to destroy the corporation Elliot is paid to protect. Compelled by his personal beliefs, Elliot struggles to resist the chance to take down the multinational CEOs that are running (and ruining) the world.    English    USA    Won 2 Golden Globes. Another 7 wins & 11 nominations.    2016-04-20 14:32:46.966744    2016-04-28 12:09:58.507845    1.39    MV5BMTg3OTQ2NzAzN15BMl5BanBnXkFtZTgwMDUyNjY3NTE_._V1_SX300.jpg    image/jpeg    22936    2016-04-28 12:09:58.319799
799    tt0388629    One Piece    1999–    24 min    2004-09-18    {N/A}    {"Eiichiro Oda"}    8.80000000000000071    37    \N    There once lived a pirate named Gol D. Roger. He obtained wealth, fame, and power to earn the title of Pirate King. When he was captured and about to be executed, he revealed that his treasure called One Piece was hidden somewhere at the Grand Line. This made all people set out to search and uncover the One Piece treasure, but no one ever found the location of Gol D. Roger's treasure, and the Grand Line was too dangerous a place to overcome. Twenty-two years after Gol D. Roger's death, a boy named Monkey D. Luffy decided to become a pirate and search for Gol D. Roger's treasure to become the next Pirate King.    Japanese    Japan    3 wins & 7 nominations.    2016-04-20 14:32:52.281701    2016-04-28 12:10:03.872408    1.91    MV5BMTAwNzAwNjQwNjFeQTJeQWpwZ15BbWU3MDg2NTg2NDI_._V1._CR32_31_291_434_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    6388    2016-04-28 12:10:03.729882
790    tt0200276    The West Wing    1999–2006    44 min    1999-09-22    {N/A}    {"Aaron Sorkin"}    8.80000000000000071    42    \N    When the erudite Democrat Josiah "Jed" Bartlet is elected U.S. president, he installs his administration. He places confidants from his electoral campaigns in the White House. Each of these people play a significant role in the Washington power game: the Chief of Staff (Leo McGarry), his deputy (Josh Lyman), Communications Director (Toby Ziegler), deputy (Sam Seaborn, and later, Will Bailey), and press secretary (CJ Cregg). Also in key positions are the assistants of each of the power players. We follow these people through many political battles, as well as some personal ones. Also playing roles are the First Lady (Abigail Bartlet), the President's daughters (Elizabeth, Eleanor, and Zoey), and the personal aide to the President (Charlie Young). All make this series, which supposedly follows the political events (often paraphrasing historical reality) almost day by day, more than merely a political soap. The demands of office on each character show the personal sacrifice and the forced compromise of ideals and principles for tactical necessity and allows some insights into many aspects of U.S. society and international politics.    English    USA    Won 2 Golden Globes. Another 118 wins & 245 nominations.    2016-04-20 14:32:47.414515    2016-04-28 12:09:59.577637    3.46    MV5BMTMxMzM1ODEwOF5BMl5BanBnXkFtZTcwMzgwNTgyMQ__._V1._CR13_3_325_479_SY132_CR0_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4870    2016-04-28 12:09:59.420458
791    tt0407362    Battlestar Galactica    2004–2009    44 min    2005-01-14    {N/A}    {"Glen A. Larson","Ronald D. Moore"}    8.80000000000000071    117    \N    The second war against the Cylons is over and The Twelve Colonies have been destroyed. Now Commander Adama of the Battlestar Galatica and President Laura Roslin lead a ragtag fleet of refugees in a supposed search for the fabled lost thirteenth colony, Earth. However, the dangers they face are many which compound an already difficult situation. In addition to the Cylons hunting and attacking the fleet in space and their infiltrator units carrying out sabotage-even as their former unwitting pawn, Gaius Baltar, helps in the hunt for them while hiding both his own guilt and the strange presence that haunts his every thought, the fleet also faces internal political conflict in which the rabble-rousing figure, Tom Zarek, is merely the loudest dissenting voice, not to mention recurring shortages of food, water and even oxygen. In the midst of these trials, however, clues begin to appear to suggest that Adama's bluff about finding Earth might hold more truthful than anyone could have guessed.    English    USA    Won 3 Primetime Emmys. Another 32 wins & 78 nominations.    2016-04-20 14:32:47.808098    2016-04-28 12:10:00.25904    4.54    MV5BMTc1NTg1MDk3NF5BMl5BanBnXkFtZTYwNDYyMjI3._V1_SX300.jpg    image/jpeg    32538    2016-04-28 12:10:00.047663
792    tt4370492    The X-Files    1993–    45 min    1993-09-10    {N/A}    {"Chris Carter"}    8.69999999999999929    141    \N    FBI agents Fox Mulder and Dana Scully are different: Mulder is a believer in the paranormal while Scully is not. Together, they investigate paranormal cases which takes them all the way to alien conspiracies within the U.S. government and even puts their lives and careers at risk. Together, they try to solve the mysteries within the U.S. government, no matter what they have to do, and along the way they try to solve any other case that's related to the paranormal.    N/A    Canada    Won 5 Golden Globes. Another 88 wins & 206 nominations.    2016-04-20 14:32:48.398882    2016-04-28 12:10:01.035927    3.72    MV5BODc5MDA0MzgyOF5BMl5BanBnXkFtZTgwNjc5NjY3NzE_._V1_SX300.jpg    image/jpeg    11710    2016-04-28 12:10:00.843936
794    tt0088484    Black-Adder II    1986    176 min    1986-01-09    {N/A}    {N/A}    8.69999999999999929    27    \N    Sixty years after the demise of Prince Edmund Plantagenet, Queen Elizabeth I, who's as insane as her ancestors, is England's current leader. Seductive, easy-to-impress, spoiled, and always seeking a husband, "Queenie" has a leading courtier: Lord Edmund Blackaddder, great-grandson of the original. Now, however, he is dryly cynical and intelligent, but still trying to become king; this time by marrying the queen. However, her right-hand-man, Lord Melchett, will always serve as fair competition for her hand. Blackadder is again assisted by the clueless but fashionable Lord Percy Percy and dung-eating, "cunning" peasant Baldrick.    English    UK    1 win & 1 nomination.    2016-04-20 14:32:49.328217    2016-04-28 12:10:01.648926    2.19    MV5BMTI4NDc1NDg0N15BMl5BanBnXkFtZTYwNjk0MTc5._V1_SX300.jpg    image/jpeg    34132    2016-04-28 12:10:01.43724
786    tt0086661    The Adventures of Sherlock Holmes    1984–1985    60 min    1985-03-14    {N/A}    {"John Hawkesworth"}    8.80000000000000071    13    \N    Sherlock Holmes and Dr Watson solve the mysteries of copper beeches, a Greek interpreter, the Norwood builder, a resident patient, the red-headed league, and one final problem.    English    UK    N/A    2016-04-20 14:32:44.978232    2016-04-28 12:06:19.85381    3.35    MV5BMTI2MzM1Njk4OV5BMl5BanBnXkFtZTcwMzA0ODQyMQ__._V1._CR1_1_246_416_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    6402    2016-04-28 12:06:19.675898
798    tt0286486    The Shield    2002–2008    47 min    2002-03-12    {N/A}    {"Shawn Ryan"}    8.69999999999999929    52    \N    The story of an inner-city Los Angeles police precinct where some of the cops aren't above breaking the rules or working against their associates to both keep the streets safe and their ...    English    USA    Won 2 Golden Globes. Another 13 wins & 51 nominations.    2016-04-20 14:32:51.57415    2016-04-28 12:10:02.419031    1.09    MV5BMTcwNzQwODI5NV5BMl5BanBnXkFtZTcwNzQxMjI5MQ__._V1_SX300.jpg    image/jpeg    22484    2016-04-28 12:10:02.223584
810    tt0421357    Fullmetal Alchemist    2003–2004    24 min    2004-11-06    {N/A}    {N/A}    8.69999999999999929    35    \N    The Elric brothers' mother is dead and their father has long since abandoned them. Deciding to perform a forbidden human transmutation to bring their mother back, they end up losing their bodies. Now Edward must join the military in order to gain certain alchemical privileges, with his one goal being to restore his brother to his original state. But with war on the horizon it's only a matter of time before they are both forced to question their morals and ultimately decide the value of human life.    Japanese    Japan    3 wins.    2016-04-20 14:32:58.54339    2016-04-28 12:10:03.235443    1.16    MV5BMjA4NDg3NzEzNF5BMl5BanBnXkFtZTcwMDkzMjE2MQ__._V1_SX300.jpg    image/jpeg    30591    2016-04-28 12:10:03.04915
647    tt0107207    In the Name of the Father    1993    133 min    1994-02-25    {"Jim Sheridan"}    {"Gerry Conlon (autobiographical book \\"Proved Innocent\\")","Terry George (screenplay)","Jim Sheridan (screenplay)"}    8.09999999999999964    105    \N    A man's coerced confession to an IRA bombing he did not commit results in the imprisonment of his father as well. An English lawyer fights to free them.    English    Ireland, UK, USA    Nominated for 7 Oscars. Another 7 wins & 21 nominations.    2016-04-20 14:32:06.048292    2016-04-28 12:06:22.641455    4.84    MV5BMTcwNjMyMzI0OV5BMl5BanBnXkFtZTgwMDU4NjkzMTE_._V1_SX300.jpg    image/jpeg    26219    2016-04-28 12:06:22.446009
800    tt0436992    Doctor Who    2005–    45 min    2006-03-17    {N/A}    {"Sydney Newman"}    8.80000000000000071    143    \N    The Doctor, from a race called the Time Lords whose home planet is Gallifrey, travels through time and space in his ship the TARDIS (an acronym for Time and Relative Dimensions In Space) with numerous companions. From time to time he regenerates into a new form (which is how the show has been running since 1963).    English    UK, Canada    104 wins & 153 nominations.    2016-04-20 14:32:52.949697    2016-04-28 12:10:05.005822    2.13    MV5BMjI2MTc4MjMzMV5BMl5BanBnXkFtZTgwNDIyNzkwMjE_._V1_SX300.jpg    image/jpeg    41648    2016-04-28 12:10:04.803473
801    tt1513168    Through the Wormhole    2010–    60 min    2010-06-09    {N/A}    {N/A}    8.80000000000000071    9    \N    Hosted by Morgan Freeman, Through the Wormhole will explore the deepest mysteries of existence - the questions that have puzzled mankind for eternity. What are we made of? What was there before the beginning? Are we really alone? Is there a creator? These questions have been pondered by the most exquisite minds of the human race. Now, science has evolved to the point where hard facts and evidence may be able to provide us with answers instead of philosophical theories. Through the Wormhole will bring together the brightest minds and best ideas from the very edges of science - Astrophysics, Astrobiology, Quantum Mechanics, String Theory, and more - to reveal the extraordinary truth of our Universe.    English    USA    Nominated for 2 Primetime Emmys. Another 3 nominations.    2016-04-20 14:32:53.341536    2016-04-28 12:10:05.930768    2.64    MV5BMTc1ODQ3NjUzNl5BMl5BanBnXkFtZTgwODM4NDM1NjE_._V1_SX300.jpg    image/jpeg    39744    2016-04-28 12:10:05.738408
802    tt0264235    Curb Your Enthusiasm    2000–    28 min    2000-10-15    {N/A}    {"Larry David"}    8.69999999999999929    63    \N    He's got it all: a loving wife, good friends, a successful career, a great home...what could possibly go wrong for Larry David? Seinfeld co-creator Larry David stars as himself in this hilarious, off-kilter comedy series that presents an unflinching, self-deprecating depiction of his life.    English    USA    Won 1 Golden Globe. Another 19 wins & 102 nominations.    2016-04-20 14:32:53.856088    2016-04-28 12:10:06.618573    3.54    MV5BMjIwMjk4MDQ0MF5BMl5BanBnXkFtZTcwNTM3MTU4Mg__._V1_SX300.jpg    image/jpeg    24786    2016-04-28 12:10:06.412118
838    tt0979432    Boardwalk Empire    2010–2014    55 min    2010-09-19    {N/A}    {"Terence Winter"}    8.59999999999999964    132    \N    An Atlantic City politician plays both sides of the law, conspiring with gangsters during the Prohibition era.    English    USA    Won 2 Golden Globes. Another 55 wins & 164 nominations.    2016-04-20 14:33:10.813289    2016-04-28 12:10:07.307419    1.94    MV5BMTgyNDI1Njg2NF5BMl5BanBnXkFtZTgwMTIwOTM0MjE_._V1_SX300.jpg    image/jpeg    24727    2016-04-28 12:10:07.10873
803    tt0092324    Black Adder the Third    1987    180 min    1987-09-17    {N/A}    {N/A}    8.69999999999999929    25    \N    During the Regency period, the insane King George III's stark raving mad son, George, is the Prince Regent of Wales. Vulgar and staggeringly slow-and-dim-witted, George exhausts the country's money and would surely be dead by know were it not for his dry, angry, bitter, arrogant and cynical butler, Edmund Blackadder, Esq. Blackadder is an ex-aristocrat who has lost his family fortune and been reduced to servant-hood, and full of loathing knowing he should have a better position then serving a lunatic. Sod-Off Baldrick is his dirty, smelly peasant servant, and Mrs. Miggins is an annoying cheerful coffee-shoppe owner who is too stupid to understand most of Mr. Blackadder's insults.    English    UK    3 wins & 6 nominations.    2016-04-20 14:32:54.53686    2016-04-28 12:10:07.986374    1.17    MV5BMTQzNzg2MzkxMV5BMl5BanBnXkFtZTYwMjUxMDg4._V1._CR5_54_307_398_SY132_CR6_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5386    2016-04-28 12:10:07.839035
804    tt0187664    Spaced    1999–2001    25 min    1999-09-24    {N/A}    {N/A}    8.69999999999999929    38    \N    The adventures of Tim and Daisy who rent a room in Marsha Klein's house under the pretense that they are a couple. Also in the house is frustrated painter Brian. Together with TA fanatic Mike and Daisy's girlfriend Twist the duo get into a series of situations with hilarious results.    English    UK    2 wins & 5 nominations.    2016-04-20 14:32:55.076535    2016-04-28 12:10:08.626361    1.8    MV5BMjA4NjA4MTM1NF5BMl5BanBnXkFtZTcwNjM2NzkxMQ__._V1._CR0_9_272_393_SY132_CR1_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5877    2016-04-28 12:10:08.461383
805    tt0094517    Mystery Science Theater 3000    1988–1999    97 min    1988-11-24    {N/A}    {"Joel Hodgson"}    8.69999999999999929    16    \N    In the not-too-distant future, a man and his robots are trapped aboard the Satellite of Love, where mad scientists force them to sit through the worst movies ever made.    English    USA    Nominated for 2 Primetime Emmys. Another 1 win & 12 nominations.    2016-04-20 14:32:55.588483    2016-04-28 12:10:09.168729    3.18    MV5BMTc4Nzc0Mzc5M15BMl5BanBnXkFtZTcwMDYzNTYyMQ__._V1._CR11_6_331_452_SY132_CR4_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5812    2016-04-28 12:10:09.003796
807    tt0118273    Brass Eye    1997–2001    25 min    1997-01-29    {N/A}    {N/A}    8.80000000000000071    6    \N    Controversal spoof of current-affairs TV and the role of celebrity in the UK.    English    UK    3 nominations.    2016-04-20 14:32:56.981498    2016-04-28 12:10:09.788064    4.34    MV5BMjA3Mjc0MDE1OF5BMl5BanBnXkFtZTYwMDU0MTA5._V1._CR0_1_275_428_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5678    2016-04-28 12:10:09.62275
809    tt1606375    Downton Abbey    2010–2015    58 min    2011-01-09    {N/A}    {"Julian Fellowes"}    8.69999999999999929    106    \N    Lord Grantham sees his family heritage, especially the grand country home Downton Abbey, as his mission in life. The death of his heir aboard the Titanic means distant cousin Matthew Crawley, a Manchester lawyer, suddenly is next in line and accepts moving onto the vast estate with his even more modernist, socially engaged mother, who clashes with his lordship's domineering, conservative mother, the dowager countess. Marrying off the daughters is another concern. Meanwhile, the butler presides over a staff which serves the family, but also lead most of their entire lives in the servants' quarters, intriguing amongst themselves.    English    UK    Won 3 Golden Globes. Another 48 wins & 178 nominations.    2016-04-20 14:32:58.115594    2016-04-28 12:10:10.451499    4.69    MV5BMTg2ODI2NTUwN15BMl5BanBnXkFtZTgwMTMwMzU0MjE_._V1_SX300.jpg    image/jpeg    30655    2016-04-28 12:10:10.258318
820    tt0472027    John Adams    2008    501 min    2008-03-16    {N/A}    {N/A}    8.69999999999999929    18    \N    The life of one of the USA's Founding Fathers, its second President, and his role in the nation's first 50 years.    English    USA    Won 4 Golden Globes. Another 38 wins & 28 nominations.    2016-04-20 14:33:02.531308    2016-04-28 12:10:11.141869    1.9    MV5BMTQwNDc0MDE2MF5BMl5BanBnXkFtZTcwODYwNjE2MQ__._V1_SX300.jpg    image/jpeg    44232    2016-04-28 12:10:10.943949
812    tt1586680    Shameless    2011–    46 min    2011-01-09    {N/A}    {"Paul Abbott","John Wells"}    8.69999999999999929    90    \N    Meet the fabulously dysfunctional Gallagher family. Dad's a drunk, Mom split long ago, eldest daughter Fiona tries to hold the family together. Eldest son Philip (Lip) trades his physics tutoring skills for sexual favors from neighborhood girls. Middle son Ian is gay. Youngest daughter Debbie is stealing money from her UNICEF collection. Ten-year-old Carl is a budding sociopath and an arsonist, and toddler Liam is - well, he might actually be black, but nobody has a clue how.    English    USA    Nominated for 1 Golden Globe. Another 8 wins & 42 nominations.    2016-04-20 14:32:59.192599    2016-04-28 12:10:12.630321    1.24    MV5BMjI3NzY2MzMzNF5BMl5BanBnXkFtZTgwODgxMTExNzE_._V1_SX300.jpg    image/jpeg    36336    2016-04-28 12:10:12.439837
813    tt0995832    Generation Kill    2008    70 min    2008-07-13    {N/A}    {N/A}    8.69999999999999929    32    \N    Following multiple recon marines during the invasion of Iraq in 2003, a group of mixed personalities, you see the dysfunctionality of the military, and on other times, how formalized and heroic it can be. A Rolling Stones reporter joins reconnaissance marines invading Iraq and recounts the mix of horrors and hilarity he encounters during his time there.    English    USA, UK    Won 3 Primetime Emmys. Another 5 wins & 15 nominations.    2016-04-20 14:32:59.808363    2016-04-28 12:10:13.498453    1.6    MV5BMTM2NjAxOTQzNl5BMl5BanBnXkFtZTcwMjk4NzU3MQ__._V1_SX300.jpg    image/jpeg    31075    2016-04-28 12:10:13.248629
793    tt0459159    The Thick of It    2005–2012    29 min    2005-05-19    {N/A}    {N/A}    8.80000000000000071    11    \N    Set in the corridors of power and spin, the Minister for Social Affairs, is continually harassed by Number 10's policy enforcer and dependent on his not-so-reliable team of civil servants.    English    UK    21 wins & 26 nominations.    2016-04-20 14:32:48.822258    2016-04-28 12:06:20.521744    3.62    MV5BMzY3NDM4MDkzOF5BMl5BanBnXkFtZTcwOTU0OTIxMw__._V1._CR49_106_254_326_SY132_CR7_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4775    2016-04-28 12:06:20.372797
814    tt0407362    Battlestar Galactica    2004–2009    44 min    2005-01-14    {N/A}    {"Glen A. Larson","Ronald D. Moore"}    8.80000000000000071    117    \N    The second war against the Cylons is over and The Twelve Colonies have been destroyed. Now Commander Adama of the Battlestar Galatica and President Laura Roslin lead a ragtag fleet of refugees in a supposed search for the fabled lost thirteenth colony, Earth. However, the dangers they face are many which compound an already difficult situation. In addition to the Cylons hunting and attacking the fleet in space and their infiltrator units carrying out sabotage-even as their former unwitting pawn, Gaius Baltar, helps in the hunt for them while hiding both his own guilt and the strange presence that haunts his every thought, the fleet also faces internal political conflict in which the rabble-rousing figure, Tom Zarek, is merely the loudest dissenting voice, not to mention recurring shortages of food, water and even oxygen. In the midst of these trials, however, clues begin to appear to suggest that Adama's bluff about finding Earth might hold more truthful than anyone could have guessed.    English    USA    Won 3 Primetime Emmys. Another 32 wins & 78 nominations.    2016-04-20 14:32:59.84922    2016-04-28 12:10:14.792917    2.11    MV5BMTc1NTg1MDk3NF5BMl5BanBnXkFtZTYwNDYyMjI3._V1_SX300.jpg    image/jpeg    32538    2016-04-28 12:10:14.582341
816    tt1492966    Louie    2010–    22 min    2010-06-29    {N/A}    {"Louis C.K."}    8.69999999999999929    55    \N    Louie is a stand-up comedian and divorced father of two girls. This series follows him through his everyday life, as he meets various characters, struggles with his love life and pursues humor.    English    USA    Nominated for 2 Golden Globes. Another 19 wins & 71 nominations.    2016-04-20 14:33:00.80064    2016-04-28 12:10:15.488345    3.53    MV5BMTg4NDE2NTEzM15BMl5BanBnXkFtZTgwMTc2MTExODE_._V1_SX300.jpg    image/jpeg    20239    2016-04-28 12:10:15.277008
878    tt4156586    Permanent Roommates    2014–    21 min    2014-10-29    {N/A}    {N/A}    8.90000000000000036    9    \N    A couple, who were in a long distance relationship for 3 years, face the prospect of getting married.    Hindi, English    India    N/A    2016-04-20 14:33:31.908423    2016-04-28 12:10:16.199041    3.98    MV5BMjU0NTY4NDg5Nl5BMl5BanBnXkFtZTgwNTYwMDUwODE_._V1_SX300.jpg    image/jpeg    31358    2016-04-28 12:10:15.96195
817    tt0092455    Star Trek: The Next Generation    1987–1994    44 min    1987-09-26    {N/A}    {"Gene Roddenberry"}    8.69999999999999929    61    \N    Set in the 24th century and decades after the adventures of the original crew of the starship Enterprise, this new series is the long-awaited successor to the original Star Trek (1966). Under the command of Captain Jean-Luc Picard, the all new Enterprise NCC 1701-D travels out to distant planets to seek out new life and to boldly go where no one has gone before.    English, Klingon, French    USA    Won 18 Primetime Emmys. Another 16 wins & 60 nominations.    2016-04-20 14:33:01.516536    2016-04-28 12:10:17.102893    4.14    MV5BMTgyMjY5NTg2NV5BMl5BanBnXkFtZTgwMTAzMDczMDE_._V1_SX300.jpg    image/jpeg    27382    2016-04-28 12:10:16.884216
818    tt1856010    House of Cards    2013–    51 min    2013-02-01    {N/A}    {N/A}    9    285    \N    Majority House Whip Francis Underwood takes you on a long journey as he exacts his vengeance on those he feels wronged him - that is, his own cabinet members including the President of the United States himself. Dashing, cunning, methodical and vicious, Frank Underwood along with his equally manipulative yet ambiguous wife, Claire take Washington by storm through climbing the hierarchical ladder to power in this Americanized recreation of the BBC series of the same name.    English    USA    Won 2 Golden Globes. Another 19 wins & 123 nominations.    2016-04-20 14:33:01.562485    2016-04-28 12:10:18.477761    4.92    MV5BMjM3ODMyMjc3MV5BMl5BanBnXkFtZTgwNDgzNDc5NzE_._V1_SX300.jpg    image/jpeg    22604    2016-04-28 12:10:18.256373
819    tt0080306    Yes Minister    1980–1984    60 min    1980-02-25    {N/A}    {N/A}    8.69999999999999929    6    \N    James Hacker is the British Minister for Administrative Affairs. He tries to do something and cut government waste, but he is continually held back by the smart and wily Permanent Secretary of the Department, Sir Humphrey Appleby. Private secretary Bernard Woolley is caught in the middle, between his political master, and his civil service boss.    English    UK    6 wins & 3 nominations.    2016-04-20 14:33:01.940232    2016-04-28 12:10:19.135209    1.99    MV5BMzA3MjU2NDU2M15BMl5BanBnXkFtZTcwMDY5NDAyMQ__._V1_SX300.jpg    image/jpeg    27886    2016-04-28 12:10:18.901698
821    tt1227926    Dr. Horrible's Sing-Along Blog    2008    42 min    2008-07-15    {N/A}    {N/A}    8.69999999999999929    33    \N    Dr. Horrible, an aspiring supervillain with his own video blog, is attempting to join the prestigious Evil League of Evil (led by the legendary "thoroughbred of sin", Bad Horse), but his plans are usually foiled by the egotistical superhero Captain Hammer. Horrible's life is thrown for a loop when he falls in love with Penny, a beautiful and optimistic advocate for the homeless he meets at the laundromat, a situation which complicates itself even further when Penny begins dating the boorish, oafish Hammer after he apparently saves her life. Faced with the task of impressing the League, can Horrible overcome his own incompetence to ruin the day, kill the hero, and still get the girl?    English    USA    Won 1 Primetime Emmy. Another 8 wins & 3 nominations.    2016-04-20 14:33:02.925706    2016-04-28 12:10:19.943475    4.97    MV5BMTQwNzQ0NDQzM15BMl5BanBnXkFtZTcwOTIyMDcxMw__._V1._CR2_41_370_458_SY132_CR9_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5962    2016-04-28 12:10:19.765089
822    tt0804503    Mad Men    2007–2015    47 min    2007-07-19    {N/A}    {"Matthew Weiner"}    8.69999999999999929    138    \N    The professional and personal lives of those who work in advertising on Madison Avenue - self-coined "mad men" - in the 1960s are presented. The stories focus on those at one of the avenue's smaller firms, Sterling Cooper, and its various incarnations over the decade. At the heart of these stories is Donald Draper, the creative genius of the company. That professional creative brilliance belies the fact of a troubled childhood, one that he would rather forget and not let anyone know about except for a select few, but one that shaped who he is as an adult and as an ad man in the need not only to sell products but sell himself to the outside world. His outward confidence also masks many insecurities as evidenced through his many vices, such as excessive smoking, drinking and womanizing - the latter despite being a family man - and how he deals with the aftermath of some of the negative aspects of his life.    English    USA    Won 5 Golden Globes. Another 103 wins & 307 nominations.    2016-04-20 14:33:03.486814    2016-04-28 12:10:20.524569    1.34    MV5BMjMwNzk5Nzg2OV5BMl5BanBnXkFtZTgwMjg1OTk1NDE_._V1_SX300.jpg    image/jpeg    26783    2016-04-28 12:10:20.310163
919    tt0445114    Extras    2005–2007    30 min    2005-09-25    {N/A}    {N/A}    8.40000000000000036    39    \N    Andy Millman is an actor with ambition and a script. Reduced to working as an extra with a useless agent, Andy's attempts to boost his career invariably end in failure and embarrassment.    English    UK, USA    Won 1 Golden Globe. Another 11 wins & 42 nominations.    2016-04-20 14:33:46.038899    2016-04-28 12:11:17.066502    1.2    MV5BMTM0MjMzNTk1Ml5BMl5BanBnXkFtZTYwMDE4ODY3._V1_SX300.jpg    image/jpeg    22208    2016-04-28 12:11:16.847577
824    tt0863046    Flight of the Conchords    2007–2009    28 min    2007-06-17    {N/A}    {"James Bobin","Jemaine Clement","Bret McKenzie"}    8.69999999999999929    41    \N    Two New Zealander friends experience life, love, friendship, all the usual stuff, while trying to make their lives as a rock band. A rock band that can only schedule a performance at the local aquarium, is run by an eager and overambitious New Zealand buddy, and has only one fan.    English    USA    Nominated for 10 Primetime Emmys. Another 2 wins & 11 nominations.    2016-04-20 14:33:04.703892    2016-04-28 12:10:21.1912    3.2    MV5BMTg0NzQ3NzE2MV5BMl5BanBnXkFtZTcwODkxMjY1Mw__._V1._CR42_18_329_459_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4995    2016-04-28 12:10:21.015858
825    tt1230180    The Angry Video Game Nerd    2006–    N/A    2006-04-08    {N/A}    {"James Rolfe"}    8.69999999999999929    9    \N    A series about a serious video game fan who owns almost every single game and console in the world. He goes by the name Angry Video Game Nerd, cause he's always angry when it comes to playing games that don't hold up well to their expectations. Wether it's games that have bad control scheme, unusual use of the buttons on the control, unfinished graphics, bad layouts of a level, or the kind that are too hard for an average player to play. He plays all of those type of games to show the other gamers out there just had bad they are. While the only way to find these bad game more tolerable to play the Nerd would either make fun of the game or curse constantly when struggling to play them.    English, Spanish    USA    N/A    2016-04-20 14:33:05.102287    2016-04-28 12:10:21.761561    2.26    MV5BMjEzMTkzNzUzMl5BMl5BanBnXkFtZTgwMDUzNjM1MjE_._V1_SX300.jpg    image/jpeg    21191    2016-04-28 12:10:21.535192
826    tt0458254    The Colbert Report    2005–2015    30 min    2005-10-17    {N/A}    {N/A}    8.59999999999999964    29    \N    An offshoot of The Daily Show, The Colbert Report (the Ts in Colbert and in Report are silent) is a parody of shows like "The O'Reilly Factor." Colbert begins the show with teasers about the show's content and then the credits go by, with a giant eagle and the stars and stripes featured predominantly. Colbert will pepper commentaries with phrases like, "Look, I don't have time to read books," or, "President Bush isn't a head thinker, he's a gut thinker." Aspects of talking head programs are exaggerated and Colbert presents a host overwhelmed by his own importance. Guests do not walk on-stage but are seated at a small table to the side. Colbert runs over to them, encouraging the audience to applaud and high five him as he passes. He is then likely to begin an interview by asking a guest something like, "Explain evolution in 20 seconds," or "Isn't everyone who disagrees with the president guilty of treason?" Colbert is also very clear about our number one threat, "Bears." His distrust of bears is a continuing theme.    English    USA    Won 7 Primetime Emmys. Another 15 wins & 72 nominations.    2016-04-20 14:33:05.430835    2016-04-28 12:10:22.454551    3.99    MV5BMTM1NzE5OTI5NV5BMl5BanBnXkFtZTcwNjY5NTI1MQ__._V1_SX300.jpg    image/jpeg    36018    2016-04-28 12:10:22.234012
831    tt0053488    The Bugs Bunny Show    1960–1975    30 min    1960-10-11    {N/A}    {N/A}    8.59999999999999964    14    \N    Bugs Bunny, the famous, Oscar-winning cartoon rabbit, hosts his first weekly television series, along with all his fellow Warner Brothers cartoon stars, including Daffy Duck, Porky Pig, Elmer Fudd, Yosemite Sam, the Tasmanian Devil, Tweety Bird, Sylvester Cat, the Road Runner, Wile E. Coyote, Pepe Le Pew, Foghorn Leghorn, and Speedy Gonzales. Each episode features three theatrical cartoons introduced by Bugs and/or the other characters, and often with a unifying idea, or theme. Many episodes feature Bugs as a lecturer on such subjects as cats, dogs, birds, and humans, and offering classic Warner Brothers cartoon footage to comically illustrate his points.    English    USA    N/A    2016-04-20 14:33:07.215979    2016-04-28 12:10:25.055918    4.44    MV5BMTcyOTYwODE5NF5BMl5BanBnXkFtZTgwODM4Mjg1NjE_._V1_SX300.jpg    image/jpeg    13040    2016-04-28 12:10:24.849624
832    tt0390022    Friday Night Lights    2004    118 min    2004-10-08    {"Peter Berg"}    {"Buzz Bissinger (book)","David Aaron Cohen (screenplay)","Peter Berg (screenplay)"}    7.29999999999999982    45    \N    Odessa, Texas, is a small, town in Texas. Racially divided and economically dying, there is one night that gives the town something to live for: Friday Night. The Permian Panthers have a big winning tradition in Texas high school football, led by QB Mike Winchell and superstar tailback Boobie Miles, but all is not well, as Boobie suffers a career-ending injury in the first game of the season. Hope is lost among citizens in Odessa, and for the team, but Coach Gary Gaines, who believes that "Perfection is being able to look your friends in the eye and know you did everything you could not to let them down", is somehow able to help the team rise up from the ashes and make a huge season comeback. Now on their way to state, the Panthers must go out and be perfect, because they may never matter this much for the rest of their lives.    English    USA    2 wins & 5 nominations.    2016-04-20 14:33:07.738146    2016-04-28 12:10:25.857617    3.5    MV5BMTcxMDI5MTM4Ml5BMl5BanBnXkFtZTcwNjA4MDcyMQ__._V1_SX300.jpg    image/jpeg    34648    2016-04-28 12:10:25.639267
774    tt2085059    Black Mirror    2011–    60 min    2011-12-04    {N/A}    {"Charlie Brooker"}    8.80000000000000071    51    \N    A television anthology series that shows the dark side of life and technology.    English    UK    3 wins & 5 nominations.    2016-04-20 14:32:40.588187    2016-04-28 12:06:21.116811    2.08    MV5BMTk5NTk1Mzg3Ml5BMl5BanBnXkFtZTcwNDAyNzY3OA__._V1._CR25_3_1010_1343_SY132_CR5_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5139    2016-04-28 12:06:20.940349
857    tt0094525    Agatha Christie: Poirot    1989–2013    100 min    1990-01-18    {N/A}    {N/A}    8.59999999999999964    21    \N    From England to Egypt, accompanied by his elegant and trustworthy sidekicks, the intelligent yet eccentrically-refined Belgian detective Hercule Poirot pits his wits against a collection of first class deceptions.    English, French    UK    Nominated for 1 Primetime Emmy. Another 6 wins & 16 nominations.    2016-04-20 14:33:21.994963    2016-04-28 12:10:26.59465    3.72    MV5BMTIwNTYwMTE4Ml5BMl5BanBnXkFtZTcwNTgzNzA0MQ__._V1_SX300.jpg    image/jpeg    30058    2016-04-28 12:10:26.377292
835    tt0340855    Monster    2003    109 min    2004-01-30    {"Patty Jenkins"}    {"Patty Jenkins"}    7.29999999999999982    102    \N    The true story of serial killer Aileen Wuernos who was convicted of luring men to their death and eventually executed in 2002. In 1989, she was working as a prostitute and finally makes a friend when she meets and begins a relationship with a young woman, Selby. Determined to straighten out her life, she tries to find legitimate work but with little education and limited social skills, she fails at every turn. She starts working as a hooker hitching rides along the local interstate highway and after robbing a few clients has an encounter with a vicious client whom she kills in self-defense. After that however she just takes to killing clients taking their money and car. Once arrested she claims self-defense but is eventually convicted.    English    USA, Germany    Won 1 Oscar. Another 26 wins & 23 nominations.    2016-04-20 14:33:09.432274    2016-04-28 12:10:27.353927    2.49    MV5BMTI4NzI5NzEwNl5BMl5BanBnXkFtZTcwNjc1NjQyMQ__._V1_SX300.jpg    image/jpeg    37096    2016-04-28 12:10:27.125246
947    tt1409055    Dragon Ball Z Kai    2009–2015    24 min    2009-04-05    {N/A}    {N/A}    8.40000000000000036    11    \N    In February of 2009, Toei Animation announced that as an honor to 20 years of Dragon Ball Z, they will begin the production of a renewed DragonBall Z, named Dragon Ball Kai. This new anime ...    Japanese    Japan    4 wins & 2 nominations.    2016-04-20 14:34:02.302851    2016-04-28 12:11:33.021085    1.46    MV5BMTMzMzUzNzQwM15BMl5BanBnXkFtZTcwNTEyNTkxMw__._V1_SX300.jpg    image/jpeg    13031    2016-04-28 12:11:32.724548
837    tt0386676    The Office    2005–2013    22 min    2005-03-24    {N/A}    {"Greg Daniels","Ricky Gervais","Stephen Merchant"}    8.80000000000000071    192    \N    A mediocre paper company in the hands of Scranton, PA branch manager Michael Scott. This mockumentary follows the everyday lives of the manager and the employees he "manages." the crew follows the employees around 24/7 and captures their quite humerous and bizarre encounters as they will do what it takes to keep the company thriving..    English    USA    Won 1 Golden Globe. Another 37 wins & 155 nominations.    2016-04-20 14:33:10.298343    2016-04-28 12:10:28.114387    1.73    MV5BMTgzNjAzMDE0NF5BMl5BanBnXkFtZTcwNTEyMzM3OA__._V1_SX300.jpg    image/jpeg    25465    2016-04-28 12:10:27.885686
839    tt1641384    Young Justice    2010–    23 min    2010-11-26    {N/A}    {"Bob Kane","Paul Norris"}    8.69999999999999929    16    \N    Teenage superheroes strive to prove themselves as members of the Justice League.    English    USA    Won 1 Primetime Emmy. Another 8 wins & 28 nominations.    2016-04-20 14:33:11.350296    2016-04-28 12:10:28.986877    2.3    MV5BMTkzNTc4NDAyMV5BMl5BanBnXkFtZTcwODcwMzMzOQ__._V1._CR0_45_418_647_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    6058    2016-04-28 12:10:28.807223
840    tt0106028    Homicide: Life on the Street    1993–1999    60 min    1993-01-31    {N/A}    {"Paul Attanasio"}    8.69999999999999929    8    \N    A police homicide investigation unit investigates violent crimes in the city of Baltimore.    English    USA    Won 4 Primetime Emmys. Another 21 wins & 82 nominations.    2016-04-20 14:33:11.878395    2016-04-28 12:10:29.494979    1.86    MV5BMTgzMDMyMDA5M15BMl5BanBnXkFtZTYwOTY3MTk4._V1._CR1_2_264_424_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5510    2016-04-28 12:10:29.317083
841    tt0275137    Justice League    2001–2006    30 min    2001-11-17    {N/A}    {"Bob Kane","William M. Marston","Joe Shuster","Jerry Siegel","Gardner Fox","Christopher Keenan","Linda Steiner"}    8.59999999999999964    24    \N    Seven of the most formidable heroes form arguably the most powerful team ever.    English    USA    Nominated for 2 Primetime Emmys. Another 8 nominations.    2016-04-20 14:33:12.549421    2016-04-28 12:10:30.640119    2.72    MV5BMTQ5Mzg3Njc5MV5BMl5BanBnXkFtZTYwNjQxMzM5._V1_SX300.jpg    image/jpeg    38206    2016-04-28 12:10:30.459387
842    tt0061287    The Prisoner    1967–1968    50 min    1968-06-01    {N/A}    {"Patrick McGoohan"}    8.69999999999999929    8    \N    "The Prisoner" is a unique piece of television. It addresses issues such as personal identity and freedom, democracy, education, scientific progress, art and technology, while still remaining an entertaining drama series. Over seventeen episodes we witness a war of attrition between the faceless forces behind 'The Village' (a Kafkaesque community somewhere between Butlins and Alcatraz) and its most strong willed inmate, No. 6. who struggles ceaselessly to assert his individuality while plotting to escape from his captors.    English, Russian, German, Romany, Spanish, French, Polish    UK    1 win & 1 nomination.    2016-04-20 14:33:13.066789    2016-04-28 12:10:31.397318    2.77    MV5BMjMyMDk0NTMxNV5BMl5BanBnXkFtZTgwNTA2NTQxMTE_._V1_SX300.jpg    image/jpeg    30514    2016-04-28 12:10:31.21152
843    tt0163507    Whose Line Is It Anyway?    1998–2006    30 min    1998-08-05    {N/A}    {"Mark Leveson","Dan Patterson"}    8.59999999999999964    28    \N    An American version of the popular British improvisational comedy show. Host Drew Carey, taking suggestions from the audience, assigns roles and scenarios to the comedian contestants, who must then improvise a skit on the spot.    English    USA, UK    Won 1 Primetime Emmy. Another 1 win & 6 nominations.    2016-04-20 14:33:13.728199    2016-04-28 12:10:32.057271    3.86    MV5BMTUzMDk2NTMwOV5BMl5BanBnXkFtZTYwNjIyODY4._V1_SX300.jpg    image/jpeg    11998    2016-04-28 12:10:31.890483
844    tt3671754    Kardes Payi    2014–2015    70 min    2014-02-13    {N/A}    {N/A}    8.90000000000000036    7    \N    The two brothers have a plumbing company and they are trying to invent something that would make the world a better place.    Turkish, English    Turkey    N/A    2016-04-20 14:33:14.469735    2016-04-28 12:10:32.696977    3.24    MV5BNDI2YThjNzAtZWZiMS00OWZkLWIwY2UtN2RjNTU5MGE1ODdkXkEyXkFqcGdeQXVyNTA4NzY1MzY_._V1_SX300.jpg    image/jpeg    53361    2016-04-28 12:10:32.502529
845    tt0112159    Neon Genesis Evangelion    1995–1996    24 min    1995-10-04    {N/A}    {"Hideaki Anno"}    8.59999999999999964    25    \N    When the Angels start attacking the planet Earth in the year 2015, only a handful of 14-year-old EVA pilots are able to stop them. Young Shinji Ikari suddenly finds himself forced to pilot EVA-01, a giant organic mecha, designed and constructed by NERV, that is the only thing that can stop the Angels.    Japanese, English    Japan    N/A    2016-04-20 14:33:15.19257    2016-04-28 12:10:34.145323    2.99    MV5BMjA1Mzc4NzMwOF5BMl5BanBnXkFtZTcwNjc1MzYyMQ__._V1_SX300.jpg    image/jpeg    35831    2016-04-28 12:10:33.956119
846    tt0237123    Coupling    2000–2004    30 min    2001-09-01    {N/A}    {N/A}    8.59999999999999964    33    \N    On average, men and women think about sex every six seconds. Shorten that to every second, and you've got Coupling. It's more than just a one night stand! When a couple gets together, it's never just the two of them - they also bring baggage - and Susan and Steve are no exception. Their baggage is a crowd of best friends and exes who talk about all aspects of sex and relationships on their never-ending quest to find true love. Perhaps, perhaps, perhaps... Susan Walker is a beautiful go-getter with an uninhibited attitude who used to date Patrick Maitland, the sextet's charismatic, cocky player, London's king of conquests - a guy who's just too cool to worry about being smart. Attractive Sally Harper is a beauty therapist who is Susan's unashamedly vain best friend, who aggressively battles aging with heavy doses of moisturizer and men - including Patrick. Meanwhile, Steve Taylor, while getting together with Susan, can't seem to shake loose from his vivacious and slightly vacuous ex-girlfriend Jane Christie, a woman supremely confident in her ability to seduce anyone of either sex, and who refuses to be dumped unless she's the one doing the dumping. Jeff Murdoch is Steve's "porn buddy" who is, in equal parts, obsessed and bewildered by actual sex; charming in his way, but with an uncanny ability to say the wrong thing at the worst possible time. He works in the same office as Susan, with whom he had a disastrous and unsuccessful one-night fling. Coupling has been honoured with the prestigious Silver Rose of Montreux, Best TV Comedy Award, and is recent winner at the 2003 British Comedy Awards. With a new guy on the scene, a baby on the way, commitment in the air, and love on the horizon, the dynamics of the six friends are definitely changing. At the end of last season Susan and Steve discovered they were pregnant (well, mostly Susan), confirmed bachelor Patrick and Sally finally admitted their true feelings for each other, and poor Jane was left on her own, once again. But it's not all doom and gloom for Jane. As the new season opens, things are looking up. There's this guy called Oliver, who has his eye on her. Is it possible that lifetime loser in love Oliver might just get somewhere with lifetime loser in love Jane? Trouble is, his apartment is a little "un-edited" and his living room has lost the battle with magazine nudity... Susan and Steve are now well and truly an item. So why is he dreaming about being executed by a fetus with an axe? Meanwhile Sally and Patrick are settling into their new relationship. But since the dawn of time, men and women have been falling in love - and men have been trying to get home straight afterwards. Can fallen playboy Patrick ever find his way back from the enchanted glade of his one true love and get a decent night's sleep?    English    UK    2 wins & 2 nominations.    2016-04-20 14:33:15.793194    2016-04-28 12:10:34.825182    2.27    MV5BMTQzMDk1ODI2M15BMl5BanBnXkFtZTYwNjMyNDk4._V1._CR0_21_269_418_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5950    2016-04-28 12:10:34.673637
847    tt1632701    Suits    2011–    44 min    2011-06-23    {N/A}    {"Aaron Korsh"}    8.69999999999999929    229    \N    While running from a drug deal gone bad, Mike Ross, a brilliant young college-dropout, slips into a job interview with one of New York City's best legal closers, Harvey Specter. Tired of cookie-cutter law school grads, Harvey takes a gamble by hiring Mike on the spot after he recognizes his raw talent and photographic memory. Mike and Harvey are a winning team. Even though Mike is a genius, he still has a lot to learn about law. And while Harvey may seem like an emotionless, cold-blooded shark, Mike's sympathy and concern for their cases and clients will help remind Harvey why he went into law in the first place. Mike's other allies in the office include the firm's best paralegal Rachel and Harvey's no-nonsense assistant Donna to help him serve justice. Proving to be an irrepressible duo and invaluable to the practice, Mike and Harvey must keep their secret from everyone including managing partner Jessica and Harvey's arch nemesis Louis, who seems intent on making Mike's life as difficult as possible.    English    USA    6 nominations.    2016-04-20 14:33:16.301202    2016-04-28 12:10:35.48252    1.8    MV5BMTk1MjYzOTU2Nl5BMl5BanBnXkFtZTgwMzAxMTg5MTE_._V1_SX300.jpg    image/jpeg    30195    2016-04-28 12:10:35.248863
848    tt0387764    Peep Show    2003–2015    25 min    2003-09-19    {N/A}    {"Jesse Armstrong","Sam Bain","Andrew O'Connor"}    8.59999999999999964    33    \N    Mark and Jez are a couple of twenty-something roommates who have nothing in common - except for the fact that their lives are anything but normal. Mayhem ensues as the pair strive to cope with day-to-day life.    English    UK    9 wins & 34 nominations.    2016-04-20 14:33:16.607523    2016-04-28 12:10:36.79973    3.26    MV5BMTc0ODMzNTI0MV5BMl5BanBnXkFtZTcwMjEyMDcyMQ__._V1._CR49_2_285_450_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5319    2016-04-28 12:10:36.647233
867    tt0929425    Gomorrah    2008    137 min    2009-04-10    {"Matteo Garrone"}    {"Roberto Saviano (book)","Maurizio Braucci (screenplay)","Ugo Chiti (screenplay)","Gianni Di Gregorio (screenplay)","Matteo Garrone (screenplay)","Massimo Gaudioso (screenplay)","Roberto Saviano (screenplay)"}    7    37    \N    "Gomorra" is a contemporary Neapolitan mob drama that exposes Italy's criminal underbelly by telling five stories of individuals who think they can make their own compact with Camorra, the area's Mafia.    Neapolitan, Italian, Mandarin, French    Italy    Nominated for 1 Golden Globe. Another 30 wins & 29 nominations.    2016-04-20 14:33:27.966027    2016-04-28 12:10:46.310663    4.14    MV5BMTI4MDY5MTc5OF5BMl5BanBnXkFtZTcwMTMyMTk3Mg__._V1_SX300.jpg    image/jpeg    25925    2016-04-28 12:10:46.092328
849    tt0182629    Rurouni Kenshin: Wandering Samurai    1996–1998    24 min    2003-03-17    {N/A}    {N/A}    8.59999999999999964    10    \N    A man slayer, Kenshin Himura, who played a major role in defeating Tokugawa Shogunate of feudal Japan carries his reverse blade sword (with a promise not to slay anymore). He embarks on a quest to repent for his sins by helping the innocent. He lodges in Kamia Kashin dojo where he becomes an acquaintance of Kaorou, the assistant instructor of the dojo. After being saved by Kenshin from mafia, a stubborn young boy, Yahiko Myojin joins the dojo as a student. Sanousuke, a victim of war becomes an acquaintance of Kenshin after losing to him in a duel. Together with his new friends, Kenshin carries out his ideal of helping the innocent. A series of events unfold that questions his ideal of living for the innocent and not slaying men. Kenshin faces every opponent with his reverse blade to uphold justice.    Japanese    Japan    N/A    2016-04-20 14:33:17.022221    2016-04-28 12:10:37.385909    4.61    MV5BMjAxOTg5Nzk5MV5BMl5BanBnXkFtZTcwODAzMTQyMQ__._V1_SX300.jpg    image/jpeg    45325    2016-04-28 12:10:37.197155
850    tt2788432    American Crime Story    2016–    42 min    2016-02-02    {N/A}    {"Scott Alexander","Larry Karaszewski"}    8.59999999999999964    9    \N    There are few truly unifying events in American life. When something happens that makes the entire country stop and take notice, we remember it forever. Everybody remembers where they were when O.J. Simpson, riding in a white Bronco, led the police on a low-speed chase all over Los Angeles. This marked the emergence of the 24-hour news cycle and the birth of reality television.    English    USA    1 win.    2016-04-20 14:33:17.50044    2016-04-28 12:10:38.219819    1.36    MV5BMTc4Mzg0MzMwMF5BMl5BanBnXkFtZTgwNzQ3NTY3NzE_._V1_SX300.jpg    image/jpeg    33274    2016-04-28 12:10:38.03129
851    tt1695360    The Legend of Korra    2012–2014    23 min    2012-04-14    {N/A}    {"Michael Dante DiMartino","Bryan Konietzko"}    8.69999999999999929    62    \N    Taking place 70 years after the events of "Avatar: The Last Airbender," this story follows the adventures of the Avatar after Aang - a passionate, rebellious, and fearless teenage girl from the Southern Water Tribe named Korra. With three of the four elements under her belt (Earth, Water, and Fire), Korra seeks to master the final element, Air. Her quest leads her to the epicenter of the modern "Avatar" world, Republic City - a metropolis that is fueled by steampunk technology. It is a virtual melting pot where benders and non-benders from all nations live and thrive. However, Korra discovers that Republic City is plagued by crime as well as a growing anti-bending revolution that threatens to rip it apart. Under the tutelage of Aang's son, Tenzin, Korra begins her airbending training while dealing with the dangers at large.    English    USA    25 wins & 39 nominations.    2016-04-20 14:33:17.870601    2016-04-28 12:10:39.119564    4.88    MV5BMTU2ODAwNTYwOV5BMl5BanBnXkFtZTcwMjU4OTg3OA__._V1_SX300.jpg    image/jpeg    32600    2016-04-28 12:10:38.920461
859    tt0075520    Jesus of Nazareth    1977    382 min    1977-04-03    {N/A}    {N/A}    8.59999999999999964    12    \N    Beginning before the Nativity and extending through the Crucifixion and Ressurection, JESUS OF NAZARETH brings to life all the sweeping drama in the life of Jesus, as told by the Gospels.    English, Syriac    Italy, UK    Nominated for 2 Primetime Emmys. Another 2 wins & 6 nominations.    2016-04-20 14:33:23.051436    2016-04-28 12:10:41.967587    3.22    MV5BMjE5Njc2NDY4MV5BMl5BanBnXkFtZTcwOTc5MDEyMQ__._V1._CR22_62_264_383_SY132_CR1_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5340    2016-04-28 12:10:41.820142
860    tt0487831    The IT Crowd    2006–2013    25 min    2006-02-03    {N/A}    {N/A}    8.59999999999999964    88    \N    Deep in the sub basement of the ambiguous company of Reynholm Industries, are not one, but two socially awkward IT guys. Moss, an electronics wizard and overly naive man and Roy, a lazy disgruntled co-worker have to provide support for Reynholm Industries with their inept boss, Jen, who doesn't know the difference between hardware and software. The show revolves around Moss and Roy's antics both at work and out socially, which always ends badly.    English    UK    8 wins & 18 nominations.    2016-04-20 14:33:23.567895    2016-04-28 12:10:42.519604    3.65    MV5BMTcxNzgyNzkzMl5BMl5BanBnXkFtZTcwMDgzMzg2MQ__._V1_SX300.jpg    image/jpeg    19505    2016-04-28 12:10:42.322308
863    tt0149460    Futurama    1999–2013    22 min    1999-03-28    {N/A}    {"David X. Cohen","Matt Groening"}    8.59999999999999964    145    \N    Phillip Fry is a 25-year-old pizza delivery boy whose life is going nowhere. When he accidentally freezes himself on December 31, 1999, he wakes up 1,000 years in the future and has a chance to make a fresh start. He goes to work for the Planet Express Corporation, a futuristic delivery service that transports packages to all five quadrants of the universe. His companions include the delivery ship's captain, Leela, a beautiful one-eyed female alien who kicks some serious butt, and Bender, a robot with very human flaws.    English    USA    Won 6 Primetime Emmys. Another 24 wins & 55 nominations.    2016-04-20 14:33:25.839339    2016-04-28 12:10:43.329406    2.91    MV5BMTAwMTgzNjQ3MDdeQTJeQWpwZ15BbWU2MDQ4NzY3Nw__._V1_SX300.jpg    image/jpeg    53601    2016-04-28 12:10:43.129855
865    tt0212985    Hannibal    2001    131 min    2001-02-09    {"Ridley Scott"}    {"Thomas Harris (novel)","David Mamet (screenplay)","Steven Zaillian (screenplay)"}    6.79999999999999982    204    \N    The continuing saga of Hannibal Lecter, the murdering cannibal. He is presently in Italy and works as a curator at a museum. Clarice Starling, the FBI agent whom he aided to apprehend a serial killer, was placed in charge of an operation but when one of her men botches it, she's called to the mat by the Bureau. One high ranking official, Paul Krendler has it in for her. But she gets a reprieve because Mason Verger, one of Lecter's victims who is looking to get back at Lecter for what Lecter did to him, wants to use Starling to lure him out. When Lecter sends her a note she learns that he's in Italy so she asks the police to keep an eye out for him. But a corrupt policeman who wants to get the reward that Verger placed on him, tells Verger where he is. But they fail to get him. Later Verger decides to frame Starling which makes Lecter return to the States. And the race to get Lecter begins.    English, Italian, Japanese    USA, UK    7 wins & 15 nominations.    2016-04-20 14:33:26.831394    2016-04-28 12:10:44.070078    1.59    MV5BMjA1MDcwNjkwOF5BMl5BanBnXkFtZTgwNjcxNTYxMTE_._V1_SX300.jpg    image/jpeg    17685    2016-04-28 12:10:43.886733
866    tt1442449    Spartacus: War of the Damned    2010–2013    55 min    2010-01-22    {N/A}    {"Steven S. DeKnight"}    8.59999999999999964    166    \N    The inspiration behind this series is the Thracian Gladiator Spartacus, who led a slave uprising against the Roman Republic. The Thracians had been persuaded by Claudius Glaber to serve as auxiliaries in the Roman legions in a campaign against the Getae, who had often plundered Thracian lands. However after Glaber reneges on the deal and switches his attentions from the Getae to attack Mithridates in Asia Minor, the Thracians feel betrayed and mutiny. Captured by Glaber, Spartacus is condemned to death as a Gladiator, whilst his wife Sura is condemned to slavery. Spartacus, however, proves to be a formidable gladiator, and defeats the four gladiators tasked with executing him. He becomes a favorite of the crowd, leading Senator Albinius to commute his death sentence to a life of slavery. Spartacus is purchased by Batiatus for gladiator training, who promises to help him find Sura if he proves himself in training. As the series develops, the story follows the betrayals and machinations of Roman life and a tale of one man's heroic quest for vengeance.    English    USA    4 wins & 13 nominations.    2016-04-20 14:33:27.512244    2016-04-28 12:10:45.469498    2.83    MV5BOTA2NDU2MzM5Nl5BMl5BanBnXkFtZTcwMTk3Njg3OA__._V1_SX300.jpg    image/jpeg    39335    2016-04-28 12:10:45.283728
870    tt0397150    Garth Marenghi's Darkplace    2004–    30 min    2004-01-29    {N/A}    {N/A}    8.59999999999999964    11    \N    In the 1980s horror writer Garth Marenghi wrote, produced, directed and starred in Darkplace, a groundbreaking series set in a hospital and exploring the depths of the author's imagination. At least that's what Marenghi and his publicist/co-star, Dean Learner, claim in modern-day interviews which both bookend and interrupt the episodes. In fact the show is cheap, chiché'd, full of gaping plot holes and startlingly misogynist. Garth Marenghi is a creation of comedian Matthew Holness, who won a Perrier award with the character at the 2001 Edinburgh festival.    English    UK    1 nomination.    2016-04-20 14:33:29.193753    2016-04-28 12:10:47.537454    2.7    MV5BMTk2Mjg5OTcxNV5BMl5BanBnXkFtZTcwODI2OTQ1MQ__._V1._CR37_31_276_378_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    3767    2016-04-28 12:10:47.387124
880    tt0120903    X-Men    2000    104 min    2000-07-14    {"Bryan Singer"}    {"Tom DeSanto (story)","Bryan Singer (story)","David Hayter (screenplay)"}    7.40000000000000036    435    \N    Two mutants come to a private academy for their kind whose resident superhero team must oppose a terrorist organization with similar powers.    English    USA    13 wins & 26 nominations.    2016-04-20 14:33:32.498043    2016-04-28 12:06:21.77547    1.86    MV5BOTU3MzA3ODYyM15BMl5BanBnXkFtZTgwMDgwNzc3NjE_._V1_SX300.jpg    image/jpeg    32204    2016-04-28 12:06:21.597942
871    tt0807832    Mushi-Shi    2005–2006    25 min    2005-10-22    {N/A}    {N/A}    8.59999999999999964    6    \N    They are neither plants nor animals. They differ from other forms of life such as the micro-organisms and the fungi. Instead they resemble the primeval body of life and are generally known as "Mushi". Their existence and appearance are unknown to many and only a limited number of humans are aware of them. Ginko is a "Mushi-shi" who travels around to investigate and find out more about the "Mushi". In the process, he also lends a helping hand to people who face problems with supernatural occurrences which may be related to the "Mushi".    Japanese    Japan    2 wins.    2016-04-20 14:33:29.564733    2016-04-28 12:10:48.142957    3.71    MV5BOTg2NzA4MTg0Nl5BMl5BanBnXkFtZTcwMDMyNjM1MQ__._V1_SX300.jpg    image/jpeg    29571    2016-04-28 12:10:47.953821
879    tt3358020    Parasyte: The Maxim    2014–    N/A    2014-10-09    {N/A}    {N/A}    8.69999999999999929    4    \N    The 17-year-old Izumi Shinichi lives with his mother and father in a quiet neighborhood in Tokyo. One night, worm-like aliens called Parasytes invade Earth, taking over the brains of human hosts by entering through their ears or noses. One Parasyte attempts to crawl into Shinichi's ear while he sleeps, but fails since he is wearing headphones, and enters his body by burrowing into his arm instead, taking over his right hand and is named Migi. Because Shinichi was able to prevent Migi from traveling further up into his brain, both beings retain their separate intellect and personality. As the duo encounter other Parasytes, they capitalize on their strange situation and gradually form a strong bond, working together to survive. This gives them an edge in battling other Parasytes, who frequently attack the pair upon realization that Shinichi's human brain is still intact. Shinichi feels compelled to fight other Parasytes, who devour humans as food, while enlisting Migi's help.    Japanese    Japan    N/A    2016-04-20 14:33:32.215196    2016-04-28 12:10:48.878167    4.13    MV5BMjAyNTE4ODY0OV5BMl5BanBnXkFtZTgwMTIyNzYwNzE_._V1_SX300.jpg    image/jpeg    26388    2016-04-28 12:10:48.71607
872    tt1442437    Modern Family    2009–    22 min    2009-09-23    {N/A}    {"Steven Levitan","Christopher Lloyd"}    8.59999999999999964    234    \N    Jay Pritchett sits at the head of a large and unconventional family. Now in his second marriage to his gorgeous young wife, Gloria, Jay has been given something of a second chance. Still, old habits are hard to break, and it's trial by fire as he tries to adapt to life with the same passion and vigor that Gloria exhibits, which are matched by her precocious 12-year-old son, Manny. There are some culture clashes, a few misunderstandings, but also plenty of sweet victories along the way. Jay's grown daughter, Claire, and her husband, Phil, are the proud parents of three kids with whom they want that open, healthy, honest relationship. It's not always easy, especially when you have Haley, a teenage daughter who's growing up a little fast, Alex, a too-smart-for-her-own-good middle daughter and Luke, a scatterbrained boy. Add to this that Phil is just a big kid himself, even if he does always have the best intentions. Claire is the anchor, trying her best to run a tight ship and determined not to let her kids have the rebellious childhood she had. Claire's brother and Jay's grown son, Mitchell, is busy raising an adopted daughter, Lily, with his long term partner, Cameron. Opposites attract in this household, with Cameron having a wonderfully big personality and maybe a flare for the dramatic, while Mitchell is more buttoned-down. They balance each other out, and these doting fathers are relishing their roles as parents developing their own little family.    English    USA    Won 1 Golden Globe. Another 100 wins & 274 nominations.    2016-04-20 14:33:29.946925    2016-04-28 12:10:49.89174    3.25    MV5BMTU5MjQ1MTE2Ml5BMl5BanBnXkFtZTgwMDgwMzg5NjE_._V1_SX300.jpg    image/jpeg    39807    2016-04-28 12:10:49.659172
873    tt2937900    The Knick    2014–    58 min    2014-08-08    {N/A}    {"Jack Amiel","Michael Begler"}    8.59999999999999964    25    \N    A look at the professional and personal lives of the staff at New York's Knickerbocker Hospital during the early part of the twentieth century. Every day they must deal with lack of funding, personal conflicts, egotism, racial tensions, personal vices, drug addiction, affairs, closed minds, dated nigh-medieval medical techniques and them and their experimental new techniques being misunderstood by most, in order to keep the hospital going and give the ill the help they need. The pressure is enormous and leaves its mark on the souls of most of them.    English    USA    Nominated for 1 Golden Globe. Another 7 wins & 18 nominations.    2016-04-20 14:33:30.339095    2016-04-28 12:10:50.640884    3.54    MV5BMTQ5NzcyNDc5MV5BMl5BanBnXkFtZTgwMDMyOTY5NjE_._V1_SX300.jpg    image/jpeg    27350    2016-04-28 12:10:50.446298
854    tt0417373    The Venture Bros.    2003–    22 min    2003-02-16    {N/A}    {"Christopher McCulloch"}    8.59999999999999964    18    \N    The warped misadventures of a former boy genius turned washed-up, middle-aged mad scientist Dr. Rusty Venture; his moronic teenage sons; their maniac bodyguard; and the Doctor's arch-nemeses, incompetent super villain The Monarch and his masculine paramour, Dr. Girlfriend.    English    USA    3 nominations.    2016-04-20 14:33:19.587816    2016-04-28 12:06:23.330424    3.6    MV5BMTM4NzgxNzc0M15BMl5BanBnXkFtZTcwNzU3ODg2OA__._V1_SX300.jpg    image/jpeg    11067    2016-04-28 12:06:23.151975
914    tt3428912    Happy Valley    2014–    58 min    \N    {N/A}    {"Sally Wainwright"}    8.5    9    \N    Catherine is a no-nonsense police sergeant who heads up a team of officers in a rural Yorkshire valley. When a staged kidnapping spirals out of control turning into a brutal series of crimes, Catherine finds herself involved in something significantly bigger than her rank, but unknowingly close to home.    English    UK    8 wins & 7 nominations.    2016-04-20 14:33:44.502918    2016-04-28 12:11:06.953657    1.11    MV5BMTQzODQ3OTA3OV5BMl5BanBnXkFtZTgwMzUyNzI0MjE_._V1_SX300.jpg    image/jpeg    33022    2016-04-28 12:11:06.728245
484    tt0114369    Se7en    1995    127 min    1995-09-22    {"David Fincher"}    {"Andrew Kevin Walker"}    8.59999999999999964    991    \N    Two detectives, a rookie and a veteran, hunt a serial killer who uses the seven deadly sins as his modus operandi.    English    USA    Nominated for 1 Oscar. Another 25 wins & 34 nominations.    2016-04-20 14:31:58.911877    2016-04-28 12:06:25.012802    1.89    MV5BMTQwNTU3MTE4NF5BMl5BanBnXkFtZTcwOTgxNDM2Mg__._V1_SX300.jpg    image/jpeg    47125    2016-04-28 12:06:24.821495
874    tt0319969    Carnivàle    2003–2005    55 min    2003-09-14    {N/A}    {"Daniel Knauf"}    8.5    32    \N    1934, America. The Dustbowl. A fugitive named Ben Hawkins finds refuge within a traveling carnival comprised of a tarot card reader and her catatonic/telekinetic mother, a blind mentalist, a bearded lady, and conjoined twins, amongst others. The carnival is owned by the mysterious and unseen Management, who has designs on the young Hawkins, for the boy is concealing an untapped gift: he can heal the lame and raise the dead--at a price. Ben also finds himself disturbed by cryptic and prophetic dreams, which he shares with a Methodist preacher in California, Brother Justin Crowe. Brother Justin, convinced by his dreams he is following God's will, has begun to practice his own extraordinary talents, although the preacher's plans increasingly lead to disturbing and tragic consequences. In this "last great age of magic," Ben Hawkins and Justin Crowe are moving toward a great conflict between Good and Evil, although it not yet clear on which sides these men will stand.    English, Russian, French, German    USA    Won 5 Primetime Emmys. Another 9 wins & 26 nominations.    2016-04-20 14:33:30.624199    2016-04-28 12:10:51.262291    1.08    MV5BNjA1MjYxNzU2MV5BMl5BanBnXkFtZTcwMjAyMDk0MQ__._V1._CR1_26_362_472_SY132_CR6_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4395    2016-04-28 12:10:51.106428
875    tt1439629    Community    2009–2015    22 min    2009-09-17    {N/A}    {"Dan Harmon"}    8.59999999999999964    139    \N    A former lawyer attends a community college when it is discovered he faked his bachelor degree. In an attempt to get with a student in his Spanish class he forms a Spanish study group. To his surprise more people attend the study group and the group of misfits form an unlikely community.    English    USA    Won 1 Primetime Emmy. Another 15 wins & 55 nominations.    2016-04-20 14:33:30.964994    2016-04-28 12:10:51.847148    4.35    MV5BMTQ2Njk2MzY2M15BMl5BanBnXkFtZTgwMDkxODg3MDE_._V1_SX300.jpg    image/jpeg    42578    2016-04-28 12:10:51.655347
876    tt0473705    State of Play    2009    127 min    2009-04-17    {"Kevin Macdonald"}    {"Matthew Michael Carnahan (screenplay)","Tony Gilroy (screenplay)","Billy Ray (screenplay)","Paul Abbott (television series)"}    7.09999999999999964    111    \N    When a congressional aide is killed, a Washington D.C. journalist starts investigating the case involving the congressman, his old college friend.    English, Cantonese    USA, UK, France    2 wins & 4 nominations.    2016-04-20 14:33:31.280435    2016-04-28 12:10:53.116054    2.04    MV5BMTI1MTQ4MDIwMl5BMl5BanBnXkFtZTcwNzgxOTc0Mg__._V1_SX300.jpg    image/jpeg    28072    2016-04-28 12:10:52.887285
883    tt0387199    Entourage    2004–2011    28 min    2004-07-18    {N/A}    {"Doug Ellin"}    8.59999999999999964    132    \N    In this sitcom, the suddenly risen film star Vince Chase, a 'jeune premier' of humble origins, learns the ropes of the business and the high-profile world of the wealthy happy few in and around Hollywood, but not alone: he brings from his native New York his atypical 'entourage (hence the title), not glitterati or professionals but a close circle of friends since childhood, and his professional agent finds they often make his job harder as the Queens boys not only sponge on the star but also have his ear, so Vince is much harder to counsel. Vince chooses his friend from home Eric as his manager, and LA professional Ari Gold as his agent. Over the course of the Series, they progress from kids from Queens, to actors, to producers and chase the funding and support to try to make the perfect movie for Vincent.    English    USA    Won 1 Golden Globe. Another 12 wins & 101 nominations.    2016-04-20 14:33:33.429217    2016-04-28 12:10:54.707652    2.24    MV5BMTY4MTE2MDAxOF5BMl5BanBnXkFtZTcwNjEyNzU3Mw__._V1_SX300.jpg    image/jpeg    24486    2016-04-28 12:10:54.505606
894    tt2433738    Wentworth Prison    2013–    45 min    \N    {N/A}    {"Reg Watson","Lara Radulovich"}    8.69999999999999929    5    \N    Bea Smith is locked up while awaiting trial for the attempted murder of her husband and must learn how life works in prison.    English    Australia    5 wins & 21 nominations.    2016-04-20 14:33:36.37033    2016-04-28 12:10:55.60684    4.13    MV5BMjM4NTM1ODQ2MF5BMl5BanBnXkFtZTgwMzY1OTM3MzE_._V1_SX300.jpg    image/jpeg    33106    2016-04-28 12:10:55.360681
884    tt1520211    The Walking Dead    2010–    44 min    2010-10-31    {N/A}    {"Frank Darabont"}    8.59999999999999964    607    \N    Rick Grimes is a former Sheriff's deputy who has been in a coma for several months after being shot while on duty. When he awakens he discovers that the world has been ravished by a zombie epidemic of apocalyptic proportions, and that he seems to be the only person still alive. After returning home to discover his wife and son missing, he heads for Atlanta to search for his family. Narrowly escaping death at the hands of the zombies on arrival in Atlanta he is aided by another survivor, Glenn, who takes Rick to a camp outside the town. There Rick finds his wife Lori and his son, Carl, along with his partner/best friend Shane and a small group of survivors who struggle to fend off the zombie hordes; as well as competing with other surviving groups who are prepared to do whatever it takes to survive in this harsh new world.    English    USA    Nominated for 1 Golden Globe. Another 44 wins & 137 nominations.    2016-04-20 14:33:33.685366    2016-04-28 12:10:56.970659    2.96    MV5BMTc5NTU3Njg0N15BMl5BanBnXkFtZTgwMzY4MjM0ODE_._V1_SX300.jpg    image/jpeg    12449    2016-04-28 12:10:56.78817
885    tt0074028    The Muppet Show    1976–1981    30 min    1976-01-29    {N/A}    {"Jim Henson"}    8.5    13    \N    Kermit the Frog is the manager of a cabaret-style theatre house, which invariably has more drama behind the stage than on it. He has to contend with wannabe-comedian bears, the smothering advances of Miss Piggy, crabby regular theatre patrons, homicidal chefs, livestock, not to mention making the weekly guest star feel welcome.    English    USA, UK    Won 4 Primetime Emmys. Another 8 wins & 25 nominations.    2016-04-20 14:33:33.921255    2016-04-28 12:10:57.5519    2.8    MV5BMTI2NTc0MjQxOV5BMl5BanBnXkFtZTcwMDk1ODAzMQ__._V1._CR38_0_310_446_SY132_CR1_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4215    2016-04-28 12:10:57.405314
887    tt0337898    Brigada    2002    750 min    2002-09-23    {N/A}    {N/A}    8.59999999999999964    6    \N    Brigada is a group of four friends, who grew up together and formed a most powerful gang in Moscow. Initially they made business together, but an unplanned murder transformed them into a gang. Now their lives are at risk and there is no way back.    Russian    Russia    N/A    2016-04-20 14:33:34.382543    2016-04-28 12:10:58.165736    4.97    MV5BMjc2ODE2Mjc3Nl5BMl5BanBnXkFtZTgwMzM5MTI1NjE_._V1_SX300.jpg    image/jpeg    21621    2016-04-28 12:10:57.981977
888    tt0988824    Naruto: Shippûden    2007–    24 min    2009-10-28    {N/A}    {"Masashi Kishimoto"}    8.59999999999999964    41    \N    Naruto Uzumaki, is a loud, hyperactive, adolescent ninja who constantly searches for approval and recognition, as well as to become Hokage, who is acknowledged as the leader and strongest of all ninja in the village.    Japanese    Japan    2 wins & 7 nominations.    2016-04-20 14:33:34.686217    2016-04-28 12:10:58.724195    1.86    MV5BMTYwOTA5MDQ4NF5BMl5BanBnXkFtZTgwMDYxNzQ4MzE_._V1._CR92_0_316_374_SY132_CR11_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    6666    2016-04-28 12:10:58.56741
890    tt0112084    Mr. Show with Bob and David    1995–1998    27 min    1995-11-03    {N/A}    {"David Cross","Bob Odenkirk"}    8.5    6    \N    This is a sketch-comedy show. The twist here is that all of the sketches (Even the monologue) are connected in some strange way.    English    USA    Nominated for 4 Primetime Emmys. Another 1 nomination.    2016-04-20 14:33:35.318051    2016-04-28 12:10:59.280454    2.89    MV5BMjAwMDg4ODEwNl5BMl5BanBnXkFtZTcwMjk1MjYyMQ__._V1_SX300.jpg    image/jpeg    29632    2016-04-28 12:10:59.09936
891    tt0070644    Scenes from a Marriage    1973    283 min    1974-09-15    {N/A}    {N/A}    8.5    11    \N    Ten years of Marianne and Johan's relationship are presented. We first meet them ten years into their marriage. He is a college professor, she a divorce lawyer. They say that they are happily married - unlike their friends Katarina and Peter who openly fight, especially when under the influence of alcohol - but there is a certain detached aloofness in the way they treat each other. In the next ten years, as they contemplate or embark upon divorce and/or known extramarital affairs, they come to differing understandings at each phase of their relationship of what they truly mean to each other. Regardless of if it's love or hate - between which there is a fine line - they also come to certain understandings of how they can best relate to each other, whether that be as husband and wife, friends, lovers or none of the above.    Swedish    Sweden    Won 1 Golden Globe. Another 10 wins & 5 nominations.    2016-04-20 14:33:35.613163    2016-04-28 12:11:00.065209    4.3    MV5BMjExMjQ0Nzk3NF5BMl5BanBnXkFtZTcwMDQwMDUyMQ__._V1_SX300.jpg    image/jpeg    21850    2016-04-28 12:10:59.804273
892    tt2701582    Endeavour    2012–    89 min    2012-07-01    {N/A}    {N/A}    8.59999999999999964    5    \N    Series 1 follows the early police career of young Endeavour Morse, who upon leaving his Oxford College without a degree, spending time in the Royal Signal Corps., and eventually joining the Oxfordshire Police, is transferred to CID, attaining the rank of Detective Constable. Originally starting out his career at Carshall-Newtown Police, Morse transfers to the Oxford City Police in 1965 following a murder investigation during the pilot episode. While with the Oxford City Police, Morse is taken under the wing of veteran Detective Inspector Fred Thursday. Inspector Thursday names Morse his designated "bag man" and shows him the ropes as Morse begins to solve a string of complex murders, much to the envy and annoyance of some of his superiors, particularly Detective Sergeant Jakes and Chief Superintendent Bright. Thursday and Morse's fellow officer, Police Constable Strange, try to steer the young Endeavour into taking his Sergeant's exam, so that he may be relieved of "General Duties" and become Thursday's official "bag man" with the appropriate rank and title.    English    UK    3 nominations.    2016-04-20 14:33:35.824164    2016-04-28 12:11:00.613193    4.4    MV5BMTczNDQ1NDUwOF5BMl5BanBnXkFtZTgwNzg1MTUzMjE_._V1._CR221_3_1055_1494_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5890    2016-04-28 12:11:00.4941
920    tt1299368    Southland    2009–2013    42 min    2009-04-09    {N/A}    {"Ann Biderman"}    8.5    19    \N    The lives of Police Officers working for the Los Angeles Police Department.    English    USA    Won 2 Primetime Emmys. Another 13 wins & 25 nominations.    2016-04-20 14:33:46.386918    2016-04-28 12:06:24.041157    3.66    MV5BMjAwNzQ4MTMyMF5BMl5BanBnXkFtZTcwMDk3NTYyNw__._V1_SX300.jpg    image/jpeg    37742    2016-04-28 12:06:23.84126
896    tt0075572    Roots    1977    60 min    1977-01-23    {N/A}    {N/A}    8.5    10    \N    A saga of African-American life, based on Alex Haley's family history. Kunta Kinte is abducted from his African village, sold into slavery, and taken to America. He makes several escape attempts until he is finally caught and maimed. He marries Bell, his plantation's cook, and they have a daughter, Kizzy, who is eventually sold away from them. Kizzy has a son by her new master, and the boy grows up to become Chicken George, a legendary cock fighter who leads his family into freedom. Throughout the series, the family observes notable events in U.S. history, such as the Revolutionary and Civil Wars, slave uprisings, and emancipation.    English    USA    Won 1 Golden Globe. Another 16 wins & 35 nominations.    2016-04-20 14:33:37.070924    2016-04-28 12:11:02.284015    2.79    MV5BMTUyNjMzNzM2N15BMl5BanBnXkFtZTYwMTQ2MDU5._V1._CR24_23_292_427_SY132_CR0_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5917    2016-04-28 12:11:02.154846
897    tt1628033    Top Gear    2002–    60 min    2002-10-20    {N/A}    {N/A}    8.90000000000000036    74    \N    Jeremy, Richard and James talk about everything car-related. From new cars to how they're fueled, this show has it all.    English    UK    11 wins & 16 nominations.    2016-04-20 14:33:37.108606    2016-04-28 12:11:02.688593    2.22    MV5BMTM2OTYwMjIzOV5BMl5BanBnXkFtZTcwNTMzNTAwMQ__._V1._CR0_0_317_396_SY132_CR8_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5932    2016-04-28 12:11:02.601144
898    tt2575988    Silicon Valley    2014–    30 min    2014-04-06    {N/A}    {"John Altschuler","Mike Judge","Dave Krinsky"}    8.5    48    \N    In the high-tech gold rush of modern Silicon Valley, the people most qualified to succeed are the least capable of handling success. A comedy partially inspired by Mike Judge's own experiences as a Silicon Valley engineer in the late 1980s.    English    USA    Nominated for 2 Golden Globes. Another 9 wins & 31 nominations.    2016-04-20 14:33:37.3951    2016-04-28 12:11:03.301179    3.74    MV5BMjIzMjgwMTQzMV5BMl5BanBnXkFtZTgwNDcyMjczMTE_._V1_SX300.jpg    image/jpeg    24510    2016-04-28 12:11:03.154845
899    tt0436992    Doctor Who    2005–    45 min    2006-03-17    {N/A}    {"Sydney Newman"}    8.80000000000000071    143    \N    The Doctor, from a race called the Time Lords whose home planet is Gallifrey, travels through time and space in his ship the TARDIS (an acronym for Time and Relative Dimensions In Space) with numerous companions. From time to time he regenerates into a new form (which is how the show has been running since 1963).    English    UK, Canada    104 wins & 153 nominations.    2016-04-20 14:33:37.444299    2016-04-28 12:11:03.988014    3.37    MV5BMjI2MTc4MjMzMV5BMl5BanBnXkFtZTgwNDIyNzkwMjE_._V1_SX300.jpg    image/jpeg    41648    2016-04-28 12:11:03.744003
900    tt0934320    Summer Heights High    2007–    30 min    2008-11-09    {N/A}    {N/A}    8.5    11    \N    The life of a public school epitomized by disobedient student Jonah Takalua, self-absorbed private school exchange student Ja'mie King, and megalomaniac drama teacher Mr. G.    English    Australia    4 wins & 4 nominations.    2016-04-20 14:33:37.83952    2016-04-28 12:11:05.036963    1.14    MV5BOTM1NDE4MzUwNl5BMl5BanBnXkFtZTgwOTI5NDM1NjE_._V1_SX300.jpg    image/jpeg    44177    2016-04-28 12:11:04.833805
901    tt1883092    Generation War    2013    270 min    2013-03-01    {N/A}    {N/A}    8.5    13    \N    Berlin, 1941. Five friends eager to become heroes in an adventure that will change the face of Europe - and that will forever change them as well. Level-headed, highly decorated officer Wilhelm is off to the eastern front with his younger brother Friedhelm, a sensitive dreamer more interested in literature than warfare. Deeply in love with Wilhelm is Charlotte, a young nurse who looks forward to serving in the Wehrmacht, also on the eastern front. While Greta is a talented singer who longs to become another Marlene Dietrich, her Jewish boyfriend Viktor still cannot convince his parents to leave Germany... Valor and courage come to the fore, but also betrayal - of values, beliefs, humanity. Friedhelm turns into a soulless killing machine... Wilhelm deserts his troops and is court-martialed... Charlotte's Nazi ideology crumbles when she betrays a Jewish nurse helping the German army... Greta obtains papers for Viktor's escape by selling herself to an SS colonel. They and millions of others wanted to be heroes; but none of them could imagine what the war would ultimately do to them and to the rest of the world.    German    Germany    19 wins & 9 nominations.    2016-04-20 14:33:38.62226    2016-04-28 12:11:06.024774    2.08    MV5BMTYwMzIyMjg5M15BMl5BanBnXkFtZTgwNzM1NjI2MDE_._V1_SX300.jpg    image/jpeg    35007    2016-04-28 12:11:05.619953
903    tt1598754    24: Live Another Day    2014    46 min    2014-05-05    {N/A}    {N/A}    8.5    32    \N    Four years after the events of Day 8, Jack Bauer remains a federal fugitive. Meanwhile, amid growing concerns over the use of US military drones in combat, President James Heller pays a visit to London to negotiate a treaty to continue their basing on British soil. Having heard rumors of an imminent attack against Heller, Bauer resurfaces in the city, where he is apprehended by the CIA and forcibly recruited into joining their investigation. As forces within the White House conspire against him, Bauer realizes that the complexity of the plot extends beyond a presidential assassination, and that the consequences of a successful attack will alter the course of history. With the help of a disgraced CIA agent and a hacker collective preaching free information, he must confront an unseen enemy whose personal vendetta threatens to push the world to the brink of war.    English    USA    Nominated for 3 Primetime Emmys. Another 12 nominations.    2016-04-20 14:33:39.249136    2016-04-28 12:11:07.857482    1.8    MV5BMTQ5MDczMjQxNV5BMl5BanBnXkFtZTgwNzIzOTY0MTE_._V1_SX300.jpg    image/jpeg    40512    2016-04-28 12:11:07.638546
904    tt2407574    My Mad Fat Diary    2013–    47 min    2013-01-14    {N/A}    {N/A}    8.59999999999999964    9    \N    Set in 1996 in Lincolnshire, the show tells the tragic and humorous story of a very troubled young girl Rae, who has just left a psychiatric hospital, where she has spent four months after attempting suicide, and begins to reconnect with her best friend Chloe and her group, who are unaware of Rae's mental health and body image problems, believing she was in France for the past four months.    English    UK    1 win & 8 nominations.    2016-04-20 14:33:39.470064    2016-04-28 12:11:08.659    2.82    MV5BMjI1MDk1MTkyNF5BMl5BanBnXkFtZTgwOTgyNzEzMTE_._V1_SX300.jpg    image/jpeg    51942    2016-04-28 12:11:08.437665
906    tt0290988    Trailer Park Boys    2001–2016    30 min    2004-04-20    {N/A}    {"Mike Clattenburg"}    8.5    23    \N    Trailer Park Boys is about life between prison terms. Always trying to play the angles, always done-in by forces beyond their control, and always in the middle of a gunfight, Ricky and Julian are decent, hard- working guys trying to cope with the New World Economic Order. It's not that the boys don't know right from wrong, it's just that "right" rarely presents itself.    English    Canada    3 wins & 10 nominations.    2016-04-20 14:33:40.084252    2016-04-28 12:11:10.375986    4.05    MV5BMTA0MDk4NjAxMTheQTJeQWpwZ15BbWU4MDgxMzM5MDcx._V1_SX300.jpg    image/jpeg    52512    2016-04-28 12:11:10.139775
907    tt0094535    Red Dwarf    1988–    30 min    1989-03-29    {N/A}    {"Rob Grant","Doug Naylor"}    8.5    23    \N    An unambitious slob from Liverpool has been awakened from a high-tech stasis chamber 3 million years in the future to find he may be one of the last humans alive. Hopelessly lost in space, this crew of mostly sad-act bachelors kill time and share adventure aboard the mining ship Red Dwarf.    English, Esperanto    UK    4 wins & 4 nominations.    2016-04-20 14:33:40.384213    2016-04-28 12:11:11.863974    4.69    MV5BMTcxMDg0NjMxMF5BMl5BanBnXkFtZTcwMTIyOTQyMQ__._V1_SX300.jpg    image/jpeg    26621    2016-04-28 12:11:11.668764
908    tt0431197    The Kingdom    2007    110 min    2007-09-28    {"Peter Berg"}    {"Matthew Michael Carnahan"}    7.09999999999999964    99    \N    After a terrorist attack on an American housing compound in Riyadh, Saudi Arabia, where families and FBI Agent Francis Manner are murdered, FBI agent Ronald Fleury blackmails the Saudi Arabian consul to get five days of investigation in the location. He travels with agent Grant Sykes, Janet Mayes and Adam Leavitt to avenge their friend and try to find those responsible for the bombing. The agents find all sorts of difficulties in their investigation, but they are supported by Colonel Faris Al Ghazi that advises the team how to act in a hostile environment.    English, Arabic    USA, Germany    5 nominations.    2016-04-20 14:33:40.972572    2016-04-28 12:11:12.713246    1.43    MV5BMjA1MDIzOTYwMV5BMl5BanBnXkFtZTcwMTM5OTA1MQ__._V1_SX300.jpg    image/jpeg    26835    2016-04-28 12:11:12.511286
910    tt0460681    Supernatural    2005–    44 min    2005-09-13    {N/A}    {"Eric Kripke"}    8.59999999999999964    271    \N    This television drama is about the two Winchester brothers, Sam and Dean, who were raised by their father, John, to hunt and kill all things that go "bump in the night" after his wife, Mary, was murdered by an evil supernatural being when the boys were young. 22 years later the brothers set out on a journey, fighting evil along the way, to find their recently missing father who, when they finally meet up with, reveals he knows what killed their mother, a demon, and has found a way to track and kill it. Meanwhile, Sam starts to develop frightening abilities that include death visions, visions of people dying before it actually happens. These visions are somehow connected to the demon who murdered his mother and its mysterious plans that seem to be all about Sam. When their father dies striking a deal with the very same devil that had killed his wife, the brothers, now alone and without their mentor, are determined to finish the crusade their father started. But disturbing revelations about Sam's part in the demon's apocalyptic plans are presented when John's dying last words to Dean are revealed.    English    USA    Nominated for 3 Primetime Emmys. Another 17 wins & 60 nominations.    2016-04-20 14:33:42.379649    2016-04-28 12:11:14.946812    1.35    MV5BMTQ0Mzc1MzM4OV5BMl5BanBnXkFtZTgwNjUxOTg3NjE_._V1_SX300.jpg    image/jpeg    30685    2016-04-28 12:11:14.696613
918    tt1334722    Baccano!    2007–2008    25 min    2007-07-26    {N/A}    {"Ryôgo Narita"}    8.5    6    \N    A crazy fantasy caper involving alchemists, immortals, gangsters, outlaws and an elixir of immortality, spread over several decades.    English, Japanese    USA, Japan    N/A    2016-04-20 14:33:45.810913    2016-04-28 12:06:26.031462    2.42    MV5BNzcyNzk3NzI0OV5BMl5BanBnXkFtZTcwMjUyOTMyMg__._V1_SX300.jpg    image/jpeg    30714    2016-04-28 12:06:25.846434
916    tt1220617    The Inbetweeners    2008–2010    25 min    2010-01-25    {N/A}    {N/A}    8.40000000000000036    53    \N    The exploits of four friends, who are socially only marginally above what one of them calls "the freaks", are presented as they grow from their late teen years into adults and as they go on their quest, usually unsuccessfully, for such grown up things as beer and sex. Simon Cooper, Jay Cartwright and Neil Sutherland have been friends for some time. Insecure Simon's main quest in life is to get long time friend, Carli D'Amato, to be his girlfriend. Jay is the big talker whose stories, especially about his sexual conquests, are more fantasy than reality. And slightly dim-witted Neil is generally two steps behind everyone else in comprehension of life, and who is always defending his father from beliefs that he's a closet homosexual. Into the group comes its fourth member, Will McKenzie, who met them when he transferred into their school, Rudge Park Comprehensive, at the start of sixth form, as Will's newly divorced mum could no longer afford his private school tuition. Nerdish and straight-laced Will, ridiculed for carrying a briefcase, insinuated himself in the group - not aiming his sights too high - as he tried not to be labeled as one of the freaks. Regardless, he is still the target of the school's "psycho bully", Mark Donovan, and the head of Rudge Park's sixth form, Mr. Gilbert. Will's initial saving grace in bonding with his new mates may have been that they all want to shag his pretty but protective mother, Polly.    English    UK    13 wins & 13 nominations.    2016-04-20 14:33:45.142957    2016-04-28 12:11:15.689899    2.0    MV5BMTUyNDg1NjE1OF5BMl5BanBnXkFtZTcwOTA0MTY0Mg__._V1._CR36_1_300_446_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4848    2016-04-28 12:11:15.510329
921    tt0278238    Samurai Jack    2001–2016    25 min    2001-08-10    {N/A}    {"Genndy Tartakovsky"}    8.40000000000000036    23    \N    In the distant past, a Japanese samurai embarks on a mission to defeat the evil shape-shifting wizard Aku. Before he can complete his task, though, he is catapulted thousands of years into the future. He finds himself in a world where Aku now enjoys complete power over every living thing. Dubbing himself "Jack," he sets out on a new quest--to right the wrongs that have been done by his enemy and to find a way back to his own time so he can destroy the evil for good.    English    USA    Won 4 Primetime Emmys. Another 7 wins & 9 nominations.    2016-04-20 14:33:46.996006    2016-04-28 12:11:17.847859    3.84    MV5BMTc3MjI0OTc5MF5BMl5BanBnXkFtZTcwOTY2ODAwMw__._V1_SX300.jpg    image/jpeg    31783    2016-04-28 12:11:17.62537
922    tt0068098    M*A*S*H    1972–1983    25 min    1972-09-17    {N/A}    {"Larry Gelbart"}    8.40000000000000036    34    \N    The 4077th Mobile Army Surgical Hospital is stuck in the middle of the Korean war. With little help from the circumstances they find themselves in, they are forced to make their own fun. Fond of practical jokes and revenge, the doctors, nurses, administrators, and soldiers often find ways of making wartime life bearable. Nevertheless, the war goes on,    English    USA    Won 8 Golden Globes. Another 54 wins & 153 nominations.    2016-04-20 14:33:47.274717    2016-04-28 12:11:18.599626    1.02    MV5BMTQ3OTM1NjM5MF5BMl5BanBnXkFtZTcwMTI5NDY0MQ__._V1_SX300.jpg    image/jpeg    30928    2016-04-28 12:11:18.385889
923    tt0411008    Lost    2004–2010    44 min    2004-09-22    {N/A}    {"J.J. Abrams","Jeffrey Lieber","Damon Lindelof"}    8.5    363    \N    Life is laid bare as a group of plane crash survivors find themselves stranded on a remote Pacific island. The trauma of the crash soon becomes overshadowed by the island itself, where unseen creatures stalk the jungle, paranormal happenings abound and astonishing coincidences reveal themselves. In this unique environment emotions swell as the survivors battle their inner and outer demons, and strive to live together - so that they won't die alone.    English, Portuguese, Spanish, Arabic, French, Korean, German, Latin, Russian, Japanese    USA    Won 1 Golden Globe. Another 84 wins & 336 nominations.    2016-04-20 14:33:48.547149    2016-04-28 12:11:19.457842    1.13    MV5BMjA3NzMyMzU1MV5BMl5BanBnXkFtZTcwNjc1ODUwMg__._V1_SX300.jpg    image/jpeg    25773    2016-04-28 12:11:19.219753
632    tt1979320    Rush    2013    123 min    2013-09-27    {"Ron Howard"}    {"Peter Morgan"}    8.19999999999999929    299    \N    The merciless 1970s rivalry between Formula One rivals James Hunt and Niki Lauda.    English, German, Italian, French, Spanish    UK, Germany, USA    Nominated for 2 Golden Globes. Another 6 wins & 53 nominations.    2016-04-20 14:32:05.402629    2016-04-28 12:08:36.756088    4.67    MV5BMTQyMDE0MTY0OV5BMl5BanBnXkFtZTcwMjI2OTI0OQ__._V1_SX300.jpg    image/jpeg    46514    2016-04-28 12:08:36.563091
924    tt0402711    Boston Legal    2004–2008    44 min    2004-10-03    {N/A}    {"David E. Kelley"}    8.40000000000000036    33    \N    Ethically-challenged attorney Alan Shore, formerly of Young, Frutt & Berluti, settles in at a wealthy and powerful firm focusing on civil cases. With some help from his friend and mentor, veteran attorney Denny Crane, Shore quickly makes his mark winning cases no one would take, often using less than honest methods. In doing so, he develops a rival in his colleague Brad Chase, who has been assigned to the office partly to keep an eye on the increasingly eccentric (and possibly senile) Denny Crane. Though his questionable conduct might make him a few enemies along the way, Alan's not one to be underestimated, nor will he let trivial things like honesty or integrity get in the way of winning a case.    English    USA    Won 1 Golden Globe. Another 14 wins & 62 nominations.    2016-04-20 14:33:49.658156    2016-04-28 12:11:20.233006    3.21    MV5BMjEyNjEyMDE5NV5BMl5BanBnXkFtZTcwNzQzNzIzMQ__._V1._CR31_2_313_472_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5162    2016-04-28 12:11:20.051645
765    tt0120570    From the Earth to the Moon    1998    60 min    1998-04-05    {N/A}    {N/A}    8.90000000000000036    7    \N    The twelve episodes follow the Apollo space program from a variety of viewpoints: (1) "Can We Do This?" maps the origins of Apollo and its Mercury and Gemini roots; (2) "Apollo 1" tells of the tragic fire and the subsequent finger-pointing; (3) "We Have Cleared the Tower" portrays the intense preparation for Apollo 7; (4) "1968" puts Apollo 8 into its historical context against events of the era; (5) "Spider" shows the engineering POV through the design, building, and testing of the LEMs with Apollos 9 and 10, (6) "Mare Tranquilitatis" shows the deeper considerations behind the historic Apollo 11 lunar landing; (7) "That's All There Is" portrays the camaraderie of the Apollo 12 crew; (8) "We Interrupt This Program" shows a by-now-indifferent media galvanized by the events of Apollo 13; (9) "For Miles and Miles" tells of Alan Shepherd's return to the manned program with Apollo 14 after being grounded between Mercury and Gemini; (10) "Galileo Was Right" show the non-piloting demands on the Apollo 15 astronauts as they train in lunar field geology; (11) "The Original Wives Club" gives the female POV through the wives of the New Nine; and (12) "La Voyage Dans La Lune" brings things full circle by contrasting Georges Méliès's vision and drive in creating his 1902 film with Apollo 17 and the Apollo program's close.    English    USA    Won 1 Golden Globe. Another 21 wins & 32 nominations.    2016-04-20 14:32:36.831879    2016-04-28 12:06:26.944042    1.78    MV5BMTg2NDg4NjY3Ml5BMl5BanBnXkFtZTcwMjg2NTA0Mg__._V1._CR0_1_331_472_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4031    2016-04-28 12:06:26.790723
925    tt1119644    Fringe    2008–2013    46 min    2008-09-09    {N/A}    {"J.J. Abrams","Alex Kurtzman","Roberto Orci"}    8.5    173    \N    The FBI teams up with a formerly-institutionalized scientist - who was performing experiments on the fringe of real science - and his son to investigate weird crimes that are seemingly part of a larger pattern, and may be connected with a global company called Massive Dynamic.    English    USA, Canada    Nominated for 2 Primetime Emmys. Another 18 wins & 79 nominations.    2016-04-20 14:33:50.189639    2016-04-28 12:11:21.349385    4.81    MV5BMTc5NDk1NzU0MF5BMl5BanBnXkFtZTcwMDQ1ODA1OA__._V1_SX300.jpg    image/jpeg    47627    2016-04-28 12:11:21.120401
926    tt0455275    Prison Break    2005–2009    44 min    2005-08-29    {N/A}    {"Paul Scheuring"}    8.5    312    \N    Structural Engineer Michael Scofield turns himself in to the Fox River Penitentiary in order to break out his brother Lincoln Burrows, who is on death row for the murder of the Vice President's brother. But Lincoln was set up by some of the Company (an agency formed by corrupt government officials) guys, headed by General Jonathan Krantz. Michael breaks out from Fox River with his brother Lincoln and other convicts.    English, Spanish    USA    Nominated for 2 Golden Globes. Another 4 wins & 24 nominations.    2016-04-20 14:33:50.403271    2016-04-28 12:11:22.13232    2.82    MV5BMTg3NTkwNzAxOF5BMl5BanBnXkFtZTcwMjM1NjI5MQ__._V1_SX300.jpg    image/jpeg    14871    2016-04-28 12:11:21.906727
930    tt1796960    Homeland    2011–    55 min    2011-10-02    {N/A}    {"Alex Gansa","Howard Gordon"}    8.40000000000000036    219    \N    Carrie Mathison, a CIA operations officer, is on probation after carrying out an unauthorized operation in Iraq. As a result, she has been reassigned to the Counter terrorism center. Whilst in Iraq, she was warned that an American prisoner had been turned by Al-Qaeda. When Nicholas Brody, a U.S. Marine Sergeant, is rescued after being held hostage since 2003, she suspects that he is the one. While Brody is received home as a war hero, Carrie goes to any lengths necessary to catch him out.    English    USA    Won 5 Golden Globes. Another 46 wins & 134 nominations.    2016-04-20 14:33:52.154226    2016-04-28 12:11:23.511466    4.8    MV5BMjE0NTc2MzM1OV5BMl5BanBnXkFtZTgwMDk2NjA2NjE_._V1_SX300.jpg    image/jpeg    36247    2016-04-28 12:11:23.266621
931    tt0101049    A Bit of Fry and Laurie    1987–1995    30 min    1987-12-26    {N/A}    {N/A}    8.40000000000000036    6    \N    As the title suggests, "A Bit of Fry and Laurie" is less of a specific format than a 'coat-hanger' for short sketches, starring the comical duo in various, recurring or unique roles: Stephen Fry, the sophisticated giant who usually plays the smug one, and comparatively small Hugh Laurie, usually playing the patsy.    English    UK    N/A    2016-04-20 14:33:52.673937    2016-04-28 12:11:24.785396    3.13    MV5BMjAyODI4MTc0Nl5BMl5BanBnXkFtZTYwOTUzNTI5._V1._CR1_1_267_434_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    6149    2016-04-28 12:11:24.608998
932    tt0285331    24    2001–2010    44 min    2001-11-06    {N/A}    {"Robert Cochran","Joel Surnow"}    8.40000000000000036    142    \N    In this concept drama, each season takes place within one 24 hour period. Day 1: Jack Bauer is the head of field ops for an elite team of CTU agents who uncover an assassination plot targeting Presidential nominee David Palmer. Meanwhile, Jack's strained marriage to his wife, Teri, is pushed to the brink by the sudden disappearance of their troubled teenage daughter. What will the next 24 hours hold?    English, Russian, German, Korean, Arabic, Spanish, Serbian, Mandarin    USA    Won 2 Golden Globes. Another 63 wins & 192 nominations.    2016-04-20 14:33:53.663887    2016-04-28 12:11:25.370146    3.6    MV5BMTg5OTkyNzA0NF5BMl5BanBnXkFtZTcwMDYyMDUwMg__._V1_SX300.jpg    image/jpeg    25991    2016-04-28 12:11:25.159695
951    tt0108872    My So-Called Life    1994–1995    60 min    1994-08-25    {N/A}    {"Winnie Holzman"}    8.40000000000000036    15    \N    A 15-year-old girl and her trials and tribulations of being a teenager and dealing with friends, guys, parents and school.    English    USA    Won 1 Golden Globe. Another 4 wins & 10 nominations.    2016-04-20 14:34:09.265839    2016-04-28 12:11:37.080986    4.44    MV5BMjEwMDM0NDkyMF5BMl5BanBnXkFtZTcwNzI3MzM1MQ__._V1_SX300.jpg    image/jpeg    32755    2016-04-28 12:11:36.781099
933    tt0925266    Pushing Daisies    2007–2009    44 min    2007-10-03    {N/A}    {"Bryan Fuller"}    8.40000000000000036    43    \N    Ned possesses the unique talent of being able to bring the dead to life merely by touching them. However, the person may remain alive only for one minute, or else someone else dies for them. A second touch will render the person dead again, unable to be revived. Through his connections with PI Emerson Cod, Ned revives his childhood sweetheart, Chuck. The trio, aided occasionally by Olive Snook, helps solve the mysteries of various murders, whose murderer is often surprising.    English    USA    Nominated for 3 Golden Globes. Another 23 wins & 42 nominations.    2016-04-20 14:33:54.086007    2016-04-28 12:11:26.086934    3.53    MV5BMTY3ODYxNjU1Nl5BMl5BanBnXkFtZTcwMTI0MTU1MQ__._V1_SX300.jpg    image/jpeg    39596    2016-04-28 12:11:25.881409
934    tt0401747    Red vs. Blue: The Blood Gulch Chronicles    2003–    6 min    2003-04-01    {N/A}    {N/A}    8.59999999999999964    7    \N    In the near future, ten soldiers battle for control of the most worthless spot in the galaxy - a box canyon in the middle of nowhere. Red Vs Blue documents the story of these two armies as they wage a war they really don't understand - or want to fight in the first place.    English, Spanish    USA    N/A    2016-04-20 14:33:54.52078    2016-04-28 12:11:26.849367    4.34    MV5BMTM5Mjk0MDM0M15BMl5BanBnXkFtZTcwNzc5MDEzMQ__._V1_SX300.jpg    image/jpeg    23524    2016-04-28 12:11:26.63869
937    tt0796366    Star Trek    2009    127 min    2009-05-08    {"J.J. Abrams"}    {"Roberto Orci","Alex Kurtzman","Gene Roddenberry (television series \\"Star Trek\\")"}    8    491    \N    On the day of James Kirk's birth, his father dies on his ship in a last stand against a mysterious alien time-traveling vessel looking for Ambassador Spock, who, in this time, is also a child on Vulcan disdained by his neighbors for his half-human heritage. Twenty-five years later, Kirk has grown into a young troublemaker. Challenged by Captain Christopher Pike to realize his potential in Starfleet, he comes to annoy instructors like young Commander Spock. Suddenly, there is an emergency at Vulcan and the newly commissioned USS Enterprise is crewed with promising cadets like Nyota Uhura, Hikaru Sulu, Pavel Chekov and even Kirk himself, thanks to Leonard McCoy's medical trickery. Together, this crew will have an adventure in the final frontier where the old legend is altered forever as a new version of it begins.    English    USA, Germany    Won 1 Oscar. Another 22 wins & 78 nominations.    2016-04-20 14:33:55.723835    2016-04-28 12:11:27.568959    4.71    MV5BMjE5NDQ5OTE4Ml5BMl5BanBnXkFtZTcwOTE3NDIzMw__._V1_SX300.jpg    image/jpeg    19835    2016-04-28 12:11:27.356006
938    tt3012698    Olive Kitteridge    2014    239 min    2014-11-02    {N/A}    {N/A}    8.40000000000000036    9    \N    A look at a seemingly placid New England town that is actually wrought with illicit affairs, crime and tragedy, all told through the lens of Olive, whose wicked wit and harsh demeanor mask a warm but troubled heart and staunch moral center. The story spans 25 years and focuses on Olive's relationships with her husband, Henry, the good-hearted and kindly town pharmacist; their son, Christopher, who resents his mother's approach to parenting; and other members of their community.    English    USA    Nominated for 3 Golden Globes. Another 27 wins & 26 nominations.    2016-04-20 14:33:55.969584    2016-04-28 12:11:28.342547    2.91    MV5BMjIzOTk4NzMzMV5BMl5BanBnXkFtZTgwMTczMzY4MjE_._V1_SX300.jpg    image/jpeg    25006    2016-04-28 12:11:28.151868
939    tt0105932    The Adventures of Brisco County Jr.    1993–1994    45 min    1993-08-07    {N/A}    {"Jeffrey Boam","Carlton Cuse"}    8.5    5    \N    Hired by local robber barons, Harvard Law Graduate Brisco County, Jr. searches for the members of the infamous John Bly gang, the same men who killed his father, a famous marshal and western legend. Accompanied by his one-time rival and fellow bounty hunter Lord Bowler, Brisco rides through the West trying to bring his father's killers to justice. Along the way, he encounters mysterious golden orbs with strange abilities and colorful characters who help or hinder his mission as he hunts down the Bly gang one by one.    English    USA    2 wins & 1 nomination.    2016-04-20 14:33:56.397644    2016-04-28 12:11:28.959967    3.02    MV5BMTQzMzA5MzAyNV5BMl5BanBnXkFtZTcwMzkxOTIzMQ__._V1._CR104_44_294_408_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5463    2016-04-28 12:11:28.807148
940    tt0088727    Anne of Green Gables    1985    199 min    1986-02-17    {N/A}    {N/A}    8.40000000000000036    13    \N    At the turn of the century on Prince Edward Island, Matthew Cuthbert and his sister Marilla decide to take on an orphan boy as help for their farm. But they get an unexpected jolt when they're mistakenly sent a girl instead: Anne Shirley. Anne's a dreamer with an unusual point of view, far removed from Marilla's pragmatic ways, and it's only on trial that Marilla agrees to keep Anne...if Anne can keep out of trouble, only Anne has a positive genius for it. As Anne falls into a series of scrapes (and off a roof), makes a bosom friend, searches (and finds) several kindred spirits, Matthew and Marilla discover that their lives have become a great deal richer, now that Anne is at Green Gables.    English    Canada, West Germany, USA    Won 1 Primetime Emmy. Another 11 wins & 6 nominations.    2016-04-20 14:33:57.108458    2016-04-28 12:11:29.49153    1.74    MV5BNDI4MjA2MzUxOV5BMl5BanBnXkFtZTcwNjE0MjE2MQ__._V1._CR53_69_306_401_SY132_CR6_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4723    2016-04-28 12:11:29.323084
480    tt0133093    The Matrix    1999    136 min    1999-03-31    {"Lana Wachowski","Lilly Wachowski"}    {"Lilly Wachowski","Lana Wachowski"}    8.69999999999999929    1    \N    A computer hacker learns from mysterious rebels about the true nature of his reality and his role in the war against its controllers.    English    USA, Australia    Won 4 Oscars. Another 33 wins & 44 nominations.    2016-04-20 14:31:58.723774    2016-04-28 12:11:57.848701    3.57    MV5BMTkxNDYxOTA4M15BMl5BanBnXkFtZTgwNTk0NzQxMTE_._V1_SX300.jpg    image/jpeg    34711    2016-04-28 12:11:57.699034
941    tt0974077    Cranford    2007–    60 min    2008-05-04    {N/A}    {"Sue Birtwistle","Susie Conklin"}    8.40000000000000036    6    \N    In the 1840s, Cranford is ruled by the ladies. They adore good gossip; and romance and change is in the air, as the unwelcome grasp of the Industrial Revolution rapidly approaches their beloved rural market-town.    English    UK, USA    Nominated for 4 Golden Globes. Another 16 wins & 36 nominations.    2016-04-20 14:33:58.000023    2016-04-28 12:11:30.141467    2.91    MV5BMjA1NzYyNjYwMl5BMl5BanBnXkFtZTcwODA5NDcxMw__._V1._CR10_0_340_475_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5455    2016-04-28 12:11:29.974113
766    tt2297757    Nathan for You    2013–    30 min    2013-02-28    {N/A}    {"Nathan Fielder","Michael Koman"}    9    5    \N    In this docu-reality comedy, Nathan Fielder uses his business degree and life experiences to help real small businesses turn a profit. But because of his unorthodox approach, Nathan's genuine efforts to do good often draw real people into an experience far beyond what they signed up for.    English    USA    N/A    2016-04-20 14:32:37.166165    2016-04-28 12:06:28.091865    1.41    MV5BNTIwMDg1MDAyNV5BMl5BanBnXkFtZTgwODIwNjAxMzE_._V1_SX300.jpg    image/jpeg    15460    2016-04-28 12:06:27.930256
808    tt0318871    Berserk    1997–    22 min    2002-05-28    {N/A}    {"Kentaro Miura"}    8.69999999999999929    13    \N    Gatsu was brought up by a mercenary group since birth. After killing his guardian in self-defence, he runs away. Years later, he encounters Griffith and The Band of the Hawk. The Hawks fight for the King of Midland, and after winning the 100-year war against the neighbouring Chuda, they become the King's personal guard. However, once they reach the top, things take a turn for the worse.    Japanese    Japan    N/A    2016-04-20 14:32:57.510124    2016-04-28 12:06:28.711319    2.07    MV5BMTQxNzIwOTUzN15BMl5BanBnXkFtZTcwNTY0ODMyMQ__._V1_SX300.jpg    image/jpeg    41505    2016-04-28 12:06:28.524314
768    tt0403778    Long Way Round    2004    N/A    2004-10-28    {N/A}    {N/A}    8.90000000000000036    7    \N    This documentary series follows actors Ewan McGregor and Charley Boorman on a motorcycle trip around the world. The two friends will travel through such places as Siberia, Kazakhstan, Mongolia, and Alaska, before finally ending the journey in New York. The filming will be done by on board cameras and one ride along cameraman.    English    UK    N/A    2016-04-20 14:32:38.354111    2016-04-28 12:06:29.966499    4.68    MV5BMTAzODU4MTgxNDleQTJeQWpwZ15BbWU3MDQ1NTgyMDI_._V1._CR15_2_339_480_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5085    2016-04-28 12:06:29.809559
470    tt0167260    The Lord of the Rings: The Return of the King    2003    201 min    2003-12-17    {"Peter Jackson"}    {"J.R.R. Tolkien (novel)","Fran Walsh (screenplay)","Philippa Boyens (screenplay)","Peter Jackson (screenplay)"}    8.90000000000000036    1    \N    While Frodo & Sam continue to approach Mount Doom to destroy the One Ring, unaware of the path Gollum is leading them, the former Fellowship aid Rohan & Gondor in a great battle in the Pelennor Fields, Minas Tirith and the Black Gates as Sauron wages his last war against Middle-earth.    English, Quenya, Old English, Sindarin    USA, New Zealand    Won 11 Oscars. Another 170 wins & 112 nominations.    2016-04-20 14:31:58.318278    2016-04-28 12:06:32.21171    2.02    MV5BMjE4MjA1NTAyMV5BMl5BanBnXkFtZTcwNzM1NDQyMQ__._V1_SX300.jpg    image/jpeg    40578    2016-04-28 12:06:32.02409
471    tt0060196    The Good, the Bad and the Ugly    1966    161 min    1967-12-29    {"Sergio Leone"}    {"Luciano Vincenzoni (story)","Sergio Leone (story)","Agenore Incrocci (screenplay)","Furio Scarpelli (screenplay)","Luciano Vincenzoni (screenplay)","Sergio Leone (screenplay)","Mickey Knox (English version by)"}    8.90000000000000036    488    \N    Blondie (The Good) is a professional gunslinger who is out trying to earn a few dollars. Angel Eyes (The Bad) is a hit man who always commits to a task and sees it through, as long as he is paid to do so. And Tuco (The Ugly) is a wanted outlaw trying to take care of his own hide. Tuco and Blondie share a partnership together making money off Tuco's bounty, but when Blondie unties the partnership, Tuco tries to hunt down Blondie. When Blondie and Tuco come across a horse carriage loaded with dead bodies, they soon learn from the only survivor (Bill Carson) that he and a few other men have buried a stash of gold in a cemetery. Unfortunately Carson dies and Tuco only finds out the name of the cemetery, while Blondie finds out the name on the grave. Now the two must keep each other alive in order to find the gold. Angel Eyes (who had been looking for Bill Carson) discovers that Tuco and Blondie met with Carson and knows they know the location of the gold. All he needs is for the two to lead him to it. Now The Good, The Bad and The Ugly must all battle it out to get their hands on $200,000 worth of gold.    Italian    Italy, Spain, West Germany, USA    1 win & 1 nomination.    2016-04-20 14:31:58.355022    2016-04-28 12:06:32.898277    3.49    MV5BOTQ5NDI3MTI4MF5BMl5BanBnXkFtZTgwNDQ4ODE5MDE_._V1_SX300.jpg    image/jpeg    44733    2016-04-28 12:06:32.699685
935    tt0251439    Trigun    1998–    24 min    2003-01-01    {N/A}    {"Yasuhiro Nightow"}    8.40000000000000036    12    \N    Trigun takes place in the distant future on a deserted planet. Vash the Stampede is a gunfighter with a legend so ruthless that he has a $$60,000,000,000 bounty on his head. Entire towns evacuate at the rumor of his arrival. However, the real Vash the Stampede is not the same man that rumor portrays him to be. The enigmatic and conflicted lead character in Trigun is actually more heroic in nature; as well as a complete and utter idiot at times.    Tagalog, Spanish, Italian, German, French, Japanese, English    Japan    N/A    2016-04-20 14:33:54.814736    2016-04-28 12:06:33.670681    4.48    MV5BMTcyNTU1NTkxN15BMl5BanBnXkFtZTcwMjIyMjE1MQ__._V1_SX300.jpg    image/jpeg    33879    2016-04-28 12:06:33.491754
942    tt0066626    All in the Family    1971–1979    30 min    1971-01-12    {N/A}    {"Norman Lear"}    8.40000000000000036    9    \N    Archie Bunker, was a bigoted working-class family man who held his views of the world. His viewpoints clash with nearly everyone he comes into contact with especially his son-in-law Mike Stivic (or, as Archie delights in calling him, "Meathead").    English    USA    Won 8 Golden Globes. Another 34 wins & 73 nominations.    2016-04-20 14:33:58.798754    2016-04-28 12:11:30.823758    2.68    MV5BMjEyOTExMDA5OF5BMl5BanBnXkFtZTcwNjM2NjQ3Mg__._V1._CR12_47_326_399_SY132_CR9_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4817    2016-04-28 12:11:30.660075
936    tt0118480    Stargate SG-1    1997–2007    44 min    1997-07-27    {N/A}    {"Jonathan Glassner","Brad Wright"}    8.40000000000000036    61    \N    General Hammond summons Colonel Jack O'Neill out of retirement to embark on a secret rescue mission. O'Neill confesses that he disobeyed orders to destroy the Stargate on Planet Abydos, and that scientist Daniel Jackson may still be alive. Arriving on Abydos with his team, O'Neill meets up once again with the scientist, who has discovered a giant elaborate cartouche in hieroglyphics. All signs point to the fact that this is a map of many Stargates that exist throughout the galaxy - a development that makes the dream of the SG-1 team to travel throughout the universe in time a reality.    English    USA, Canada    Nominated for 9 Primetime Emmys. Another 18 wins & 88 nominations.    2016-04-20 14:33:55.128178    2016-04-28 12:06:34.833343    4.77    MV5BMTc3MjEwMTc5N15BMl5BanBnXkFtZTcwNzQ2NjQ4NA__._V1_SX300.jpg    image/jpeg    27824    2016-04-28 12:06:34.633912
917    tt2578560    Broad City    2014–    22 min    2014-01-22    {N/A}    {"Ilana Glazer","Abbi Jacobson"}    8.5    12    \N    Broad City follows two women throughout their daily lives in New York City, making the smallest and mundane events hysterical and disturbing to watch all at the same time.    English    USA    7 nominations.    2016-04-20 14:33:45.467274    2016-04-28 12:12:33.707399    1.45    MV5BMTYxNzk5MDA2MF5BMl5BanBnXkFtZTgwNjM2MjQzMTE_._V1_SX300.jpg    image/jpeg    13820    2016-04-28 12:12:33.574318
474    tt0080684    Star Wars: Episode V - The Empire Strikes Back    1980    124 min    1980-06-20    {"Irvin Kershner"}    {"Leigh Brackett (screenplay)","Lawrence Kasdan (screenplay)","George Lucas (story by)"}    8.80000000000000071    810    \N    After the rebels have been brutally overpowered by the Empire on their newly established base, Luke Skywalker takes advanced Jedi training with Master Yoda, while his friends are pursued by Darth Vader as part of his plan to capture Luke.    English    USA    Won 1 Oscar. Another 16 wins & 18 nominations.    2016-04-20 14:31:58.474316    2016-04-28 12:06:35.479208    1.6    MV5BMjE2MzQwMTgxN15BMl5BanBnXkFtZTcwMDQzNjk2OQ__._V1_SX300.jpg    image/jpeg    33316    2016-04-28 12:06:35.29551
487    tt0114814    The Usual Suspects    1995    106 min    1995-09-15    {"Bryan Singer"}    {"Christopher McQuarrie"}    8.59999999999999964    718    \N    Following a truck hijack in New York, five conmen are arrested and brought together for questioning. As none of them are guilty, they plan a revenge operation against the police. The operation goes well, but then the influence of a legendary mastermind criminal called Keyser Söze is felt. It becomes clear that each one of them has wronged Söze at some point and must pay back now. The payback job leaves 27 men dead in a boat explosion, but the real question arises now: Who actually is Keyser Söze?    English, Hungarian, Spanish, French    USA, Germany    Won 2 Oscars. Another 32 wins & 16 nominations.    2016-04-20 14:31:59.030692    2016-04-28 12:06:37.068062    4.16    MV5BMzI1MjI5MDQyOV5BMl5BanBnXkFtZTcwNzE4Mjg3NA__._V1_SX300.jpg    image/jpeg    32347    2016-04-28 12:06:36.881208
735    tt1518542    Sarabhai vs Sarabhai    2004–2006    30 min    2004-11-08    {N/A}    {N/A}    9.5    4    \N    The show revolves around the lives of the members of an Uber Wealthy - High Society Gujarati family of Cuffe Parade - South Bombay, whose daughter-in-law is from a middle class Delhi background.    Hindi, Gujarati, English    India    N/A    2016-04-20 14:32:20.810503    2016-04-21 07:49:23.524962    2.08    \N    \N    \N    \N
889    tt2879552    11.22.63    2016    N/A    2016-02-15    {N/A}    {N/A}    8.80000000000000071    10    \N    A teacher discovers a time portal that leads to October 21st, 1960 and goes on a quest to try and prevent the assassination of John F. Kennedy, which is complicated by the presence of Lee Harvey Oswald and the fact that he's falling in love with the past itself.    English    USA    N/A    2016-04-20 14:33:34.896439    2016-04-28 12:11:32.188949    4.2    MV5BODA4MDE5MTk4Nl5BMl5BanBnXkFtZTgwMzA2MTk5NzE_._V1_SX300.jpg    image/jpeg    35491    2016-04-28 12:11:31.951592
495    tt0034583    Casablanca    1942    102 min    1943-01-23    {"Michael Curtiz"}    {"Julius J. Epstein (screenplay)","Philip G. Epstein (screenplay)","Howard Koch (screenplay)","Murray Burnett (play)","Joan Alison (play)"}    8.59999999999999964    377    \N    In World War II Casablanca, Rick Blaine, exiled American and former freedom fighter, runs the most popular nightspot in town. The cynical lone wolf Blaine comes into the possession of two valuable letters of transit. When Nazi Major Strasser arrives in Casablanca, the sycophantic police Captain Renault does what he can to please him, including detaining a Czechoslovak underground leader Victor Laszlo. Much to Rick's surprise, Lazslo arrives with Ilsa, Rick's one time love. Rick is very bitter towards Ilsa, who ran out on him in Paris, but when he learns she had good reason to, they plan to run off together again using the letters of transit. Well, that was their original plan....    English, French, German, Italian    USA    Won 3 Oscars. Another 4 wins & 8 nominations.    2016-04-20 14:31:59.388143    2016-04-28 12:06:50.075274    1.58    MV5BMjQwNDYyNTk2N15BMl5BanBnXkFtZTgwMjQ0OTMyMjE_._V1_SX300.jpg    image/jpeg    29955    2016-04-28 12:06:49.888863
496    tt0021749    City Lights    1931    87 min    1931-03-07    {"Charles Chaplin"}    {"Charles Chaplin"}    8.59999999999999964    104    \N    With the aid of a wealthy erratic tippler, a dewy-eyed tramp who has fallen in love with a sightless flower girl accumulates money to be able to help her medically.    English    USA    3 wins.    2016-04-20 14:31:59.439457    2016-04-28 12:06:50.817676    2.46    MV5BMjA3NDQ5MDMzOV5BMl5BanBnXkFtZTgwODY2MjcyMjE_._V1_SX300.jpg    image/jpeg    43952    2016-04-28 12:06:50.626005
499    tt0047396    Rear Window    1954    112 min    1954-08-01    {"Alfred Hitchcock"}    {"John Michael Hayes (screenplay)","Cornell Woolrich (based on the short story by)"}    8.5    306    \N    A wheelchair-bound photographer spies on his neighbours from his apartment window and becomes convinced one of them has committed murder.    English    USA    Nominated for 4 Oscars. Another 6 wins & 8 nominations.    2016-04-20 14:31:59.567183    2016-04-28 12:06:54.432861    1.14    MV5BMjAxNDM0NTcyOV5BMl5BanBnXkFtZTgwODE1NjM0MTE_._V1_SX300.jpg    image/jpeg    43158    2016-04-28 12:06:54.261988
528    tt0364569    Oldboy    2003    120 min    2003-11-21    {"Chan-wook Park"}    {"Garon Tsuchiya (story)","Nobuaki Minegishi (comic)","Chan-wook Park (screenplay)","Chun-hyeong Lim (screenplay)","Jo-yun Hwang (screenplay)","Joon-hyung Lim"}    8.40000000000000036    344    \N    After being kidnapped and imprisoned for 15 years, Oh Dae-Su is released, only to find that he must find his captor in 5 days.    Korean    South Korea    26 wins & 16 nominations.    2016-04-20 14:32:00.778238    2016-04-28 12:07:09.127422    2.42    MV5BMTI3NTQyMzU5M15BMl5BanBnXkFtZTcwMTM2MjgyMQ__._V1_SX300.jpg    image/jpeg    37704    2016-04-28 12:07:08.909807
534    tt0086190    Star Wars: Episode VI - Return of the Jedi    1983    131 min    1983-05-25    {"Richard Marquand"}    {"Lawrence Kasdan (screenplay)","George Lucas (screenplay)","George Lucas (story)"}    8.40000000000000036    656    \N    After rescuing Han Solo from the palace of Jabba the Hutt, the rebels attempt to destroy the second Death Star, while Luke struggles to make Vader return from the dark side of the Force.    English    USA    Nominated for 4 Oscars. Another 16 wins & 16 nominations.    2016-04-20 14:32:01.042467    2016-04-28 12:07:14.978287    2.2    MV5BMTQ0MzI1NjYwOF5BMl5BanBnXkFtZTgwODU3NDU2MTE_._V1._CR93_97_1209_1861_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5727    2016-04-28 12:07:14.807338
546    tt0338013    Eternal Sunshine of the Spotless Mind    2004    108 min    2004-03-19    {"Michel Gondry"}    {"Charlie Kaufman (story)","Michel Gondry (story)","Pierre Bismuth (story)","Charlie Kaufman (screenplay)"}    8.40000000000000036    645    \N    A man, Joel Barish, heartbroken that his girlfriend Clementine underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realizes that he still loves her, and may be too late to correct his mistake.    English    USA    Won 1 Oscar. Another 66 wins & 103 nominations.    2016-04-20 14:32:01.615582    2016-04-28 12:07:22.407904    4.0    MV5BMTY4NzcwODg3Nl5BMl5BanBnXkFtZTcwNTEwOTMyMw__._V1_SX300.jpg    image/jpeg    33546    2016-04-28 12:07:22.204821
541    tt0075314    Taxi Driver    1976    113 min    1976-02-08    {"Martin Scorsese"}    {"Paul Schrader"}    8.30000000000000071    489    \N    A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feeds his urge for violent action, attempting to save a preadolescent prostitute in the process.    English, Spanish    USA    Nominated for 4 Oscars. Another 21 wins & 15 nominations.    2016-04-20 14:32:01.388274    2016-04-28 12:07:26.313633    1.45    MV5BMTQ1Nzg3MDQwN15BMl5BanBnXkFtZTcwNDE2NDU2MQ__._V1_SX300.jpg    image/jpeg    30997    2016-04-28 12:07:26.108352
627    tt0477348    No Country for Old Men    2007    122 min    2007-11-21    {"Ethan Coen","Joel Coen"}    {"Joel Coen (screenplay)","Ethan Coen (screenplay)","Cormac McCarthy (novel)"}    8.09999999999999964    594    \N    Violence and mayhem ensue after a hunter stumbles upon a drug deal gone wrong and more than two million dollars in cash near the Rio Grande.    English, Spanish    USA    Won 4 Oscars. Another 155 wins & 130 nominations.    2016-04-20 14:32:05.176384    2016-04-28 12:07:33.635898    1.31    MV5BMjA5Njk3MjM4OV5BMl5BanBnXkFtZTcwMTc5MTE1MQ__._V1_SX300.jpg    image/jpeg    29233    2016-04-28 12:07:33.461451
582    tt2488496    Star Wars: Episode VII - The Force Awakens    2015    135 min    2015-12-18    {"J.J. Abrams"}    {"Lawrence Kasdan","J.J. Abrams","Michael Arndt","George Lucas (based on characters created by)"}    8.40000000000000036    457    \N    30 years after the defeat of Darth Vader and the Empire, Rey, a scavenger from the planet Jakku, finds a BB-8 droid that knows the whereabouts of the long lost Luke Skywalker. Rey, as well as a rogue stormtrooper and two smugglers, are thrown into the middle of a battle between the Resistance and the daunting legions of the First Order.    English    USA    Nominated for 5 Oscars. Another 20 wins & 98 nominations.    2016-04-20 14:32:03.208935    2016-04-28 12:07:47.321104    3.13    MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE_._V1_SX300.jpg    image/jpeg    44267    2016-04-28 12:07:47.139787
588    tt1431045    Deadpool    2016    108 min    2016-02-12    {"Tim Miller"}    {"Rhett Reese","Paul Wernick","Fabian Nicieza (character)","Rob Liefeld (character)"}    8.40000000000000036    257    \N    This is the origin story of former Special Forces operative turned mercenary Wade Wilson, who after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.    English    USA, Canada    9 nominations.    2016-04-20 14:32:03.482059    2016-04-28 12:07:51.785864    1.8    MV5BMjQyODg5Njc4N15BMl5BanBnXkFtZTgwMzExMjE3NzE_._V1_SX300.jpg    image/jpeg    35324    2016-04-28 12:07:51.592289
590    tt0074896    The Message    1976    177 min    1977-07-08    {"Moustapha Akkad"}    {"H.A.L. Craig","Tewfik El-Hakim","A.B. Jawdat El-Sahhar","A.B. Rahman El-Sharkawi","Mohammad Ali Maher"}    8.69999999999999929    24    \N    This must-see epic depicts the birth of Islam. In the 7th century Mohammed is visited by Angel Gabriel who urges him to lead the people of Mecca and worship God. But they're exiled in Medina before returning to Mecca to take up arms against their oppressors and liberate their city in the name of God.    English, Arabic    Lebanon, Libya, Kuwait, Morocco, UK    N/A    2016-04-20 14:32:03.586165    2016-04-28 12:07:52.660646    4.67    MV5BMjE0OTY0ODk2MF5BMl5BanBnXkFtZTcwNjQ5NjIzMQ__._V1_SX300.jpg    image/jpeg    44916    2016-04-28 12:07:52.461954
598    tt0050976    The Seventh Seal    1957    96 min    1958-10-13    {"Ingmar Bergman"}    {"Ingmar Bergman (play)","Ingmar Bergman (screenplay)"}    8.19999999999999929    107    \N    A Knight and his squire are home from the crusades. Black Death is sweeping their country. As they approach home, Death appears to the knight and tells him it is his time. The knight challenges Death to a chess game for his life. The Knight and Death play as the cultural turmoil envelopes the people around them as they try, in different ways, to deal with the upheaval the plague has caused.    Swedish, Latin    Sweden    7 wins & 1 nomination.    2016-04-20 14:32:03.943478    2016-04-28 12:07:59.124396    4.5    MV5BMTUzODUyNjkxM15BMl5BanBnXkFtZTcwODA5MTM1Mg__._V1_SX300.jpg    image/jpeg    10796    2016-04-28 12:07:58.915232
614    tt1255953    Incendies    2010    139 min    2011-01-12    {"Denis Villeneuve"}    {"Denis Villeneuve (scenario)","Wajdi Mouawad (play)","Valérie Beaugrand-Champagne (collaboration)","Denis Villeneuve (dialogue)"}    8.19999999999999929    76    \N    A mother's last wishes send twins Jeanne and Simon on a journey to the Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.    French, Arabic, English    Canada, France    Nominated for 1 Oscar. Another 39 wins & 14 nominations.    2016-04-20 14:32:04.627912    2016-04-28 12:08:04.84301    3.38    MV5BMTg4MzA0NjI5OF5BMl5BanBnXkFtZTcwNTUwMzQzNg__._V1_SX300.jpg    image/jpeg    29486    2016-04-28 12:08:04.6578
623    tt0167404    The Sixth Sense    1999    107 min    1999-08-06    {"M. Night Shyamalan"}    {"M. Night Shyamalan"}    8.09999999999999964    685    \N    Malcom Crowe (Bruce Willis)is a child psychologist who receives an award on the same night that he is visited by a very unhappy ex-patient. After this encounter, Crowe takes on the task of curing a young boy with the same ills as the ex-patient (Donnie Wahlberg) . This boy "sees dead people". Crowe spends a lot of time with the boy much to the dismay of his wife (Olivia Williams). Cole's mom (Toni Collette) is at her wit's end with what to do about her son's increasing problems. Crowe is the boy's only hope.    English, Latin, Spanish    USA    Nominated for 6 Oscars. Another 32 wins & 48 nominations.    2016-04-20 14:32:05.006332    2016-04-28 12:08:18.001851    1.23    MV5BMWM4NTFhYjctNzUyNi00NGMwLTk3NTYtMDIyNTZmMzRlYmQyXkEyXkFqcGdeQXVyMTAwMzUyOTc_._V1_SX300.jpg    image/jpeg    11058    2016-04-28 12:08:17.816143
610    tt0055031    Judgment at Nuremberg    1961    186 min    1961-12-18    {"Stanley Kramer"}    {"Abby Mann","Abby Mann (based on his original story by)"}    8.30000000000000071    42    \N    It has been three years since the most important Nazi leaders had already been tried. This trial is about 4 judges who used their offices to conduct Nazi sterilization and cleansing policies. Retired American judge, Dan Haywood has a daunting task ahead of him. The Cold War is heating up and no one wants any more trials as Germany, and Allied governments, want to forget the past. But is that the right thing to do is the question that the tribunal must decide.    English, German    USA    Won 2 Oscars. Another 13 wins & 25 nominations.    2016-04-20 14:32:04.450415    2016-04-28 12:08:20.820754    2.89    MV5BNDc2ODQ5NTE2MV5BMl5BanBnXkFtZTcwODExMjUyNA__._V1_SX300.jpg    image/jpeg    24844    2016-04-28 12:08:20.632373
660    tt0087544    Nausicaä of the Valley of the Wind    1984    117 min    1984-03-11    {"Hayao Miyazaki"}    {"Hayao Miyazaki (comic)","Hayao Miyazaki (screenplay)","David Schmoeller (english version)"}    8.09999999999999964    92    \N    An animated fantasy-adventure. Set 1,000 years from now, the earth is ravaged by pollution and war. In the Valley of the Wind lives Nausicaa, princess of her people. Their land borders on a toxic jungle, filled with dangerous over-sized insects. Meanwhile two nearby nations are bitterly engaged in a war and the Valley of the Wind is stuck in the middle...    Japanese    Japan    3 wins.    2016-04-20 14:32:06.596739    2016-04-28 12:08:40.019317    1.92    MV5BMTM1NjIxNTY4OF5BMl5BanBnXkFtZTcwNDE5MDIyNw__._V1_SX300.jpg    image/jpeg    30525    2016-04-28 12:08:39.839682
671    tt0075148    Rocky    1976    120 min    1976-12-03    {"John G. Avildsen"}    {"Sylvester Stallone"}    8.09999999999999964    359    \N    Rocky Balboa is a struggling boxer trying to make the big time, working as a debt collector for a pittance. When heavyweight champion Apollo Creed visits Philadelphia, his managers want to set up an exhibition match between Creed and a struggling boxer, touting the fight as a chance for a "nobody" to become a "somebody". The match is supposed to be easily won by Creed, but someone forgot to tell Rocky, who sees this as his only shot at the big time.    English    USA    Won 3 Oscars. Another 16 wins & 21 nominations.    2016-04-20 14:32:07.086019    2016-04-28 12:08:48.985856    2.78    MV5BMTY5MDMzODUyOF5BMl5BanBnXkFtZTcwMTQ3NTMyNA__._V1_SX300.jpg    image/jpeg    24975    2016-04-28 12:08:48.802955
726    tt3530232    Last Week Tonight with John Oliver    2014–    30 min    2014-04-27    {N/A}    {N/A}    9.19999999999999929    30    \N    Former Daily Show Correspondent John Oliver brings his persona to this new weekly news satire program.    English    USA    Won 1 Primetime Emmy. Another 6 wins & 12 nominations.    2016-04-20 14:32:15.039479    2016-04-28 12:08:58.322555    4.31    MV5BNDAwMDY0NjA2Ml5BMl5BanBnXkFtZTgwMTA1NTI3NzE_._V1_SX300.jpg    image/jpeg    30595    2016-04-28 12:08:58.125369
686    tt3659388    The Martian    2015    144 min    2015-10-02    {"Ridley Scott"}    {"Drew Goddard (screenplay)","Andy Weir (book)"}    8.09999999999999964    409    \N    During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.    English, Mandarin    USA, UK    Nominated for 7 Oscars. Another 34 wins & 163 nominations.    2016-04-20 14:32:07.771977    2016-04-28 12:09:00.619835    3.94    MV5BMTc2MTQ3MDA1Nl5BMl5BanBnXkFtZTgwODA3OTI4NjE_._V1_SX300.jpg    image/jpeg    43286    2016-04-28 12:09:00.411586
694    tt1504320    The King's Speech    2010    118 min    2010-12-25    {"Tom Hooper"}    {"David Seidler (screenplay)"}    8    485    \N    Tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stammer and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country through war.    English    UK, USA, Australia    Won 4 Oscars. Another 100 wins & 185 nominations.    2016-04-20 14:32:08.135568    2016-04-28 12:09:05.743146    4.91    MV5BMzU5MjEwMTg2Nl5BMl5BanBnXkFtZTcwNzM3MTYxNA__._V1_SX300.jpg    image/jpeg    34835    2016-04-28 12:09:05.55038
856    tt1474684    Luther    2010–2015    60 min    2010-10-17    {N/A}    {"Neil Cross"}    8.59999999999999964    65    \N    A crime drama series starring Idris Elba as a near-genius murder detective whose brilliant mind can't always save him from the dangerous violence of his passions.    English    UK    Won 1 Golden Globe. Another 13 wins & 48 nominations.    2016-04-20 14:33:21.284166    2016-04-28 12:09:27.404852    1.08    MV5BNTA5ODExOTQ4M15BMl5BanBnXkFtZTcwOTc2NjYxNA__._V1._CR3_2_345_467_SY132_CR4_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4227    2016-04-28 12:09:27.251814
729    tt0092337    The Decalogue    1989    572 min    1989-12-10    {N/A}    {N/A}    9.19999999999999929    12    \N    This is a series of ten shorts created for Polish Television, with plots loosely based upon the Ten Commandments, directed by Krzysztof Kieslowski. Two of these, Dekalog 5 and 6, are shorter cuts from the feature-length films--Krotki film o zabijaniu (A Short Film About Killing) and Krotki film o milosci (A Short Film About Love), respectively. They deal with the emotional turmoil suffered by humanity, when instinctual acts and societal morality conflict.    Polish    Poland, West Germany    9 wins.    2016-04-20 14:32:17.034614    2016-04-28 12:09:36.604049    4.38    MV5BMTMyMzA3MDE0OF5BMl5BanBnXkFtZTcwMjcwNjEyMQ__._V1_SX300.jpg    image/jpeg    35505    2016-04-28 12:09:36.416564
734    tt4742876    TVF Pitchers    2015    40 min    2015-06-03    {N/A}    {N/A}    9.59999999999999964    23    \N    A story of trials and tribulations of four young entrepreneurs who quit their day jobs in order to pursue their start up venture.    Hindi, English    India    N/A    2016-04-20 14:32:20.202122    2016-04-28 12:09:39.274755    3.37    MV5BMjQwNTQ5MjAxNF5BMl5BanBnXkFtZTgwNTU0MDA3NjE_._V1_SX300.jpg    image/jpeg    39830    2016-04-28 12:09:39.082289
811    tt2100976    Impractical Jokers    2011–    30 min    2011-12-15    {N/A}    {N/A}    8.80000000000000071    15    \N    Q, Sal, Joe and Murr are real-life best friends who love challenging each other to the most outrageous dares and stunts ever caught on hidden camera.    English    USA    N/A    2016-04-20 14:32:58.904416    2016-04-28 12:10:11.874582    2.29    MV5BMTQ4ODA4MTQ3Ml5BMl5BanBnXkFtZTcwMDgwMDE2Nw__._V1_SX300.jpg    image/jpeg    38327    2016-04-28 12:10:11.667036
828    tt0280249    Dragon Ball    1995–2003    24 min    2001-06-25    {N/A}    {N/A}    8.59999999999999964    31    \N    Follows the adventures of an extraordinarily strong young boy named Goku as he searches for the seven dragon balls. These balls, when combined, can grant the owner any one wish he desires. ...    Japanese, English    Japan    N/A    2016-04-20 14:33:06.37602    2016-04-28 12:10:23.38333    2.85    MV5BMjE2NjA2MjA1OV5BMl5BanBnXkFtZTcwMDU1MDAwMQ__._V1_SX300.jpg    image/jpeg    42965    2016-04-28 12:10:23.159614
953    tt1344204    Blue Mountain State    2010–2011    22 min    2010-01-11    {N/A}    {"Eric Falconer","Chris Romano"}    8.40000000000000036    37    \N    Three incoming freshmen attending Midwestern college football powerhouse Blue Mountain State must quickly adapt to college life and juggle football, girls, classes and nonstop hazing.    English    USA, Canada    N/A    2016-04-20 14:34:10.101681    2016-04-28 12:11:38.888821    3.78    MV5BMjQxOTI0MjcxM15BMl5BanBnXkFtZTcwOTY1MDk5NA__._V1_SX300.jpg    image/jpeg    47454    2016-04-28 12:11:38.602176
852    tt1870479    The Newsroom    2012–2014    55 min    2012-06-24    {N/A}    {"Aaron Sorkin"}    8.59999999999999964    77    \N    A news team attempts to create a news show that reports the news in an ethical and reasonable way. They take real, newsworthy events from our world as they're happening (such as bin Laden's assassination, NSA spying, etc) and report on them as if they were an actual news station that followed rational and moral guidelines, in a biting criticism of our popular press and a clever blurring of art and reality.    English    USA    Nominated for 2 Golden Globes. Another 9 wins & 28 nominations.    2016-04-20 14:33:18.14724    2016-04-28 12:10:39.965212    4.0    MV5BMTEyMzc0ODAwMjVeQTJeQWpwZ15BbWU4MDMxODk4OTIx._V1_SX300.jpg    image/jpeg    21995    2016-04-28 12:10:39.772594
853    tt1733785    The Bridge    2011–    60 min    2011-09-21    {N/A}    {N/A}    8.59999999999999964    26    \N    Season 2 begins 13 months after the events of the first season. A coastal tanker leaves the Öresund waterway and is headed straight for the Øresund Bridge. When the Coast Guard board the ship they discover there is no crew, and three Swedish and two Danish youths are chained below deck. Saga Norén, County Police, Malmö, is put in charge of the case and contacts Martin Rohde, who is still haunted by the death of his son. Soon it turns out the chained youths were just the beginning... Someone wants to direct our attention to the changing climate and the use of our planet's resources, and will stop at nothing to do it. It all turns into a race against the clock to prevent a disaster where many lives are at stake...    Swedish, Danish    Sweden, Denmark, Germany    5 wins & 11 nominations.    2016-04-20 14:33:18.740052    2016-04-28 12:10:40.746282    3.47    MV5BMjQ3MDAzNDU4NV5BMl5BanBnXkFtZTgwNjE2NDQ0NzE_._V1_SX300.jpg    image/jpeg    23872    2016-04-28 12:10:40.561764
855    tt0118266    The New Batman Adventures    1997–1999    30 min    1997-09-13    {N/A}    {"Bob Kane"}    8.59999999999999964    5    \N    Slightly different than "Batman: The Animated Series." The series takes place approximately three years after the last episode of Batman which ran on Fox. Dick Grayson has grown up taken the costumed identity of Nightwing, with Tim Drake taking over as Robin.    English    USA    6 wins & 10 nominations.    2016-04-20 14:33:20.469765    2016-04-28 12:10:41.331443    2.05    MV5BMjEwOTYyMDI3MV5BMl5BanBnXkFtZTgwNjAyMzgwMzE_._V1_SX300.jpg    image/jpeg    18890    2016-04-28 12:10:41.165063
912    tt0184135    The League of Gentlemen    1999–2002    60 min    2000-06-19    {N/A}    {N/A}    8.5    5    \N    An interweaving narrative chronicling the antics of such diverse characters as: a transsexual taxi driver, a family obsessed with hygiene and toads, a fiery reverend, a carnival owner who kidnaps women into marriage, and a xenophobic couple who run a local shop for local people.    English    UK    7 wins & 6 nominations.    2016-04-20 14:33:43.799506    2016-04-28 12:10:44.777302    3.77    MV5BMTIwNDUzNjkwM15BMl5BanBnXkFtZTcwNzY2NjgyMQ__._V1_SX300.jpg    image/jpeg    34239    2016-04-28 12:10:44.601381
877    tt0083466    Police Squad!    1982    149 min    1982-03-04    {N/A}    {"Jim Abrahams","David Zucker","Jerry Zucker"}    8.5    9    \N    Marginally a "straight" police drama in the Jack Webb/Quinn Martin school, Police Squad occurs in a strange universe where everything is taken literally (when a name "rings a bell" we here bells go off everytime someone mentions it), non sequiturs occur (a mime tries to spell out a ransom note, and Officer Nordberg guesses "Theme From a Summer Place") and sight gags abound (while looking for a corpse, someone wants to know the time and the dead man's hand drops out of a tree).    English    USA    Nominated for 2 Primetime Emmys. Another 1 win & 1 nomination.    2016-04-20 14:33:31.605318    2016-04-28 12:10:53.980601    4.72    MV5BMTg5NDQ4MTg1OV5BMl5BanBnXkFtZTcwMzI3OTczMQ__._V1_SX300.jpg    image/jpeg    13463    2016-04-28 12:10:53.790789
770    tt0287978    Daredevil    2003    103 min    2003-02-14    {"Mark Steven Johnson"}    {"Mark Steven Johnson (screenplay)"}    5.29999999999999982    172    \N    A man blinded by toxic waste which also enhanced his remaining senses fights crime as an acrobatic martial arts superhero.    English, Greek, Italian    USA    5 wins & 15 nominations.    2016-04-20 14:32:39.306862    2016-04-28 12:11:01.498295    4.27    MV5BMzU3MDUxNjYwNl5BMl5BanBnXkFtZTYwNzQ3Nzc2._V1_SX300.jpg    image/jpeg    45794    2016-04-28 12:11:01.219055
915    tt0043208    I Love Lucy    1951–1957    30 min    1951-10-15    {N/A}    {N/A}    8.5    15    \N    A daffy woman constantly strives to become a star along with her bandleader husband and gets herself in the strangest situations.    English, Spanish    USA    Won 4 Primetime Emmys. Another 4 wins & 25 nominations.    2016-04-20 14:33:44.909323    2016-04-28 12:11:09.512396    1.02    MV5BMTA5MDIyNzgwOTNeQTJeQWpwZ15BbWU4MDUxNTA1NjEx._V1_SX300.jpg    image/jpeg    22171    2016-04-28 12:11:09.272128
510    tt0078788    Apocalypse Now    1979    153 min    1979-08-15    {"Francis Ford Coppola"}    {"John Milius","Francis Ford Coppola","Michael Herr (narration)"}    8.5    439    \N    During the Vietnam War, Captain Willard is sent on a dangerous mission into Cambodia to assassinate a renegade colonel who has set himself up as a god among a local tribe.    English, French, Vietnamese    USA    Won 2 Oscars. Another 18 wins & 32 nominations.    2016-04-20 14:32:00.02188    2016-04-28 12:11:13.559373    2.81    MV5BMTcyMzQ5NDM4OV5BMl5BanBnXkFtZTcwODUwNDg3OA__._V1_SX300.jpg    image/jpeg    17890    2016-04-28 12:11:13.27908
466    tt0468569    The Dark Knight    2008    152 min    2008-07-18    {"Christopher Nolan"}    {"Jonathan Nolan (screenplay)","Christopher Nolan (screenplay)","Christopher Nolan (story)","David S. Goyer (story)","Bob Kane (characters)"}    9    1    \N    Set within a year after the events of Batman Begins, Batman, Lieutenant James Gordon, and new district attorney Harvey Dent successfully begin to round up the criminals that plague Gotham City until a mysterious and sadistic criminal mastermind known only as the Joker appears in Gotham, creating a new wave of chaos. Batman's struggle against the Joker becomes deeply personal, forcing him to "confront everything he believes" and improve his technology to stop him. A love triangle develops between Bruce Wayne, Dent and Rachel Dawes.    English, Mandarin    USA, UK    Won 2 Oscars. Another 146 wins & 141 nominations.    2016-04-20 14:31:58.142141    2016-04-28 12:11:16.254856    3.29    MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw__._V1_SX300.jpg    image/jpeg    34443    2016-04-28 12:11:16.036068
954    tt2017109    Banshee    2013–    60 min    2013-01-11    {N/A}    {"David Schickler","Jonathan Tropper"}    8.40000000000000036    49    \N    Lucas Hood (Antony Starr), an ex-con and master thief assumes the identity of a murdered sheriff where he continues his criminal activities. His past seems to haunt him by those he betrayed...    English    USA    Won 1 Primetime Emmy. Another 1 win & 4 nominations.    2016-04-20 14:34:10.523619    2016-04-28 12:11:40.089442    4.54    MV5BNzgyNzgwODk3MF5BMl5BanBnXkFtZTgwODU5NTQxODE_._V1_SX300.jpg    image/jpeg    41960    2016-04-28 12:11:39.904629
929    tt0285403    Scrubs    2001–2010    22 min    2001-10-02    {N/A}    {"Bill Lawrence"}    8.40000000000000036    186    \N    In the unreal world of Sacred Heart Hospital, intern John "J.D" Dorian learns the ways of medicine, friendship and life.    English, German, Spanish, American Sign Language    USA    Nominated for 3 Golden Globes. Another 31 wins & 114 nominations.    2016-04-20 14:33:51.498987    2016-04-28 12:11:22.856652    1.05    MV5BMTc2NjgxMzc5Nl5BMl5BanBnXkFtZTcwOTc0OTM0MQ__._V1._CR10_44_330_454_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    6343    2016-04-28 12:11:22.656947
657    tt0075686    Annie Hall    1977    93 min    1977-04-20    {"Woody Allen"}    {"Woody Allen","Marshall Brickman"}    8.09999999999999964    187    \N    Neurotic New York comedian Alvy Singer falls in love with the ditsy Annie Hall.    English, German    USA    Won 4 Oscars. Another 26 wins & 8 nominations.    2016-04-20 14:32:06.460532    2016-04-28 12:11:31.434012    4.95    MV5BMTU1NDM2MjkwM15BMl5BanBnXkFtZTcwODU3OTYwNA__._V1_SX300.jpg    image/jpeg    30326    2016-04-28 12:11:31.204993
952    tt4270492    Billions    2016–    60 min    \N    {N/A}    {"Brian Koppelman","David Levien","Andrew Ross Sorkin"}    8.40000000000000036    10    \N    U.S. Attorney Chuck Rhoades goes after hedge fund king, Bobby "Axe" Axelrod in a battle between two powerful New York figures.    English    USA    N/A    2016-04-20 14:34:09.463774    2016-04-28 12:11:37.954906    1.64    MV5BMTY4ODk3OTM4Nl5BMl5BanBnXkFtZTgwMjMwNzg1NzE_._V1_SX300.jpg    image/jpeg    42224    2016-04-28 12:11:37.691457
902    tt0442632    Bleak House    2005    510 min    2006-01-22    {N/A}    {N/A}    8.5    6    \N    A suspenseful tale about the injustices of the 19th-century English legal system    English    UK, USA    Nominated for 2 Golden Globes. Another 23 wins & 37 nominations.    2016-04-20 14:33:39.038127    2016-04-28 12:11:46.034542    2.81    MV5BMTk2NjQzNDIzMV5BMl5BanBnXkFtZTcwNjQzNzAzMg__._V1._CR24_25_304_418_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4932    2016-04-28 12:11:45.929407
943    tt0096626    The Kids in the Hall    1988–1994    25 min    1988-10-16    {N/A}    {N/A}    8.40000000000000036    6    \N    "The Kids in the Hall" are a sketch comedy troupe, set apart by their cross-dressing antics and seemingly infinite supply of unique characters. Although writer Paul Bellini, various extras, and sometimes even an actual woman appear in the sketches, for the most part, the five main cast members portray every single character themselves. Recurring characters range from the harried corporate executive Danny Husk to Queen Elizabeth, from alienated teen rocker Bobby Tarrance to gay bar owner Buddy Cole, from occult TV show host Simon and his sidekick Hecubus to the gossiping corporate secretaries Cathy and Kathy, and an endless parade of others.    English    Canada    Nominated for 3 Primetime Emmys. Another 10 wins & 15 nominations.    2016-04-20 14:33:59.439771    2016-04-28 12:11:34.233966    3.57    MV5BMTI2MDY0NzI4NV5BMl5BanBnXkFtZTcwNzUyMzEzMQ__._V1._CR20_2_316_410_SY132_CR6_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5703    2016-04-28 12:11:34.01696
949    tt2126154    This Is England '88    2011    70 min    2011-12-13    {N/A}    {N/A}    8.40000000000000036    4    \N    Set during Christmas 1988, Lol is haunted by the devastating events that took place two and a half years before. She and Woody both find themselves struggling to cope with their lives without each other after he leaves the gang. Lol is carrying the burden of her guilt, whilst Woody is trying to build a domestic life with a new girlfriend and a potential promotion at work. Shaun has started drama college and, although still in a relationship with Smell, he has grown close to a girl performing in his Christmas play.    English    UK    1 win & 8 nominations.    2016-04-20 14:34:04.976489    2016-04-28 12:11:35.027108    2.26    MV5BMTUwNDA4NTYyN15BMl5BanBnXkFtZTgwNDkyMTI2MjE_._V1_SX300.jpg    image/jpeg    55009    2016-04-28 12:11:34.733358
640    tt0046268    The Wages of Fear    1953    131 min    1955-02-16    {"Henri-Georges Clouzot"}    {"Georges Arnaud (novel)","Henri-Georges Clouzot (adaptation)","Jérôme Géronimi (adaptation)"}    8.19999999999999929    34    \N    In the South American jungle supplies of nitroglycerin are needed at a remote oil field. The oil company pays four men to deliver the supplies in two trucks. A tense rivalry develops between the two sets of drivers and on the rough remote roads the slightest jolt can result in death.    French, English, Spanish, German, Italian, Russian    France, Italy    Won 1 BAFTA Film Award. Another 5 wins.    2016-04-20 14:32:05.762943    2016-04-28 12:12:05.33348    4.82    MV5BMTQ5MzkyNDgyMF5BMl5BanBnXkFtZTgwODg2MTMzMjE_._V1_SX300.jpg    image/jpeg    43517    2016-04-28 12:12:05.176873
881    tt2311418    Isler Güçler    2012–2013    86 min    2012-06-28    {N/A}    {N/A}    8.69999999999999929    12    \N    Ahmet, Murat and Sadi are actors who dream of shooting a movie and present a documentary called 'Meslek Hikayeleri' in order to make money.    Turkish    Turkey    N/A    2016-04-20 14:33:32.83272    2016-04-28 12:12:11.697503    2.58    MV5BMTk2Nzc0OTExNl5BMl5BanBnXkFtZTgwMDc5MTI1NjE_._V1_SX300.jpg    image/jpeg    26579    2016-04-28 12:12:11.534529
950    tt0310455    Foyle's War    2002–2015    100 min    2003-02-02    {N/A}    {"Anthony Horowitz"}    8.40000000000000036    8    \N    It is 1940 and Britain stands almost alone against the might of Nazi Germany across the continent. The terrors of nightly bombing raids are only matched by the fear and hysteria of the population at the prospect of the seemingly inevitable German invasion. It is in this environment that Detective Chief Superintendent Christopher Foyle, of the Hastings Police on the south coast of England, works. Denied a transfer to the war effort, Foyle is nonetheless forced to confront the darkest acts of humanity on a daily basis. With his official driver, Sam, and his subordinate, Paul Milner, Foyle investigates murders, looting and theft, crimes of opportunism, crimes of war, crimes of passion and crimes of greed, because crime isn't stopped because of warfare.    English    UK    1 win & 3 nominations.    2016-04-20 14:34:07.771355    2016-04-28 12:11:35.973224    1.79    MV5BMjEwMzc3OTYwN15BMl5BanBnXkFtZTYwNTY5Mzg5._V1._CR6_1_322_440_SY132_CR4_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4794    2016-04-28 12:11:35.769055
955    tt0478942    Life on Mars    2006–2007    60 min    2006-07-24    {N/A}    {"Matthew Graham","Tony Jordan","Ashley Pharoah"}    8.40000000000000036    23    \N    After being involved in a car accident in 2006, DCI Sam Tyler wakes up to find himself in 1973, the era of 'Sweeney' type policing, Mark III Cortinas, and flared trousers.    English    UK    9 wins & 29 nominations.    2016-04-20 14:34:11.026647    2016-04-28 12:11:41.059037    4.53    MV5BMTgzMzM5Mzg3MV5BMl5BanBnXkFtZTcwNjk1MzI0MQ__._V1_SX300.jpg    image/jpeg    32478    2016-04-28 12:11:40.9039
958    tt1626038    The Avengers: Earth's Mightiest Heroes    2010–2012    30 min    2010-09-22    {N/A}    {N/A}    8.40000000000000036    9    \N    In New York City, there is a mass breakout of supervillains from various S.H.I.E.L.D prisons by a mysterious mastermind. Against this threat that no single hero could have withstood, Iron Man, Giant Man, the Wasp, Thor and the Hulk work together to defeat the menace. Inspired by this victory, Iron Man convinces the others to form a permanent team, The Avengers, for the cause of justice. Together, these superheroes face new challenges, members, friends and foes as they assemble for them as one.    English    USA    8 nominations.    2016-04-20 14:34:12.311411    2016-04-28 12:11:41.724964    3.91    MV5BMjMwMjkwMDI3Ml5BMl5BanBnXkFtZTgwMDQwMjc3MTE_._V1_SX300.jpg    image/jpeg    30879    2016-04-28 12:11:41.572235
486    tt0038650    It's a Wonderful Life    1946    130 min    1947-01-07    {"Frank Capra"}    {"Frances Goodrich (screenplay)","Albert Hackett (screenplay)","Frank Capra (screenplay)","Jo Swerling (additional scenes)","Philip Van Doren Stern (story)"}    8.59999999999999964    268    \N    An angel helps a compassionate but despairingly frustrated businessman by showing what life would have been like if he never existed.    English    USA    Nominated for 5 Oscars. Another 6 wins & 1 nomination.    2016-04-20 14:31:58.987691    2016-04-28 12:11:42.380353    3.07    MV5BMTMzMzY5NDc4M15BMl5BanBnXkFtZTcwMzc4NjIxNw__._V1_SX300.jpg    image/jpeg    34486    2016-04-28 12:11:42.220893
530    tt0053125    North by Northwest    1959    136 min    1959-09-26    {"Alfred Hitchcock"}    {"Ernest Lehman"}    8.40000000000000036    214    \N    Madison Avenue advertising man Roger Thornhill finds himself thrust into the world of spies when he is mistaken for a man by the name of George Kaplan. Foreign spy Philip Vandamm and his henchman Leonard try to eliminate him but when Thornhill tries to make sense of the case, he is framed for murder. Now on the run from the police, he manages to board the 20th Century Limited bound for Chicago where he meets a beautiful blond, Eve Kendall, who helps him to evade the authorities. His world is turned upside down yet again when he learns that Eve isn't the innocent bystander he thought she was. Not all is as it seems however, leading to a dramatic rescue and escape at the top of Mt. Rushmore.    English    USA    Nominated for 3 Oscars. Another 8 wins & 4 nominations.    2016-04-20 14:32:00.869952    2016-04-28 12:11:43.035837    2.7    MV5BMjQwMTQ0MzgwNl5BMl5BanBnXkFtZTgwNjc4ODE4MzE_._V1_SX300.jpg    image/jpeg    51663    2016-04-28 12:11:42.880917
566    tt0017136    Metropolis    1927    153 min    1927-03-13    {"Fritz Lang"}    {"Thea von Harbou (screenplay)","Thea von Harbou (novel)"}    8.30000000000000071    108    \N    In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working class prophet who predicts the coming of a savior to mediate their differences.    German    Germany    4 wins & 4 nominations.    2016-04-20 14:32:02.484149    2016-04-28 12:11:43.906049    1.05    MV5BNDAzNTkyODg1MF5BMl5BanBnXkFtZTgwMDA3NDkwMDE_._V1_SX300.jpg    image/jpeg    38667    2016-04-28 12:11:43.747896
795    tt0994314    Code Geass: Lelouch of the Rebellion    2006–2007    24 min    2006-10-05    {N/A}    {N/A}    8.80000000000000071    21    \N    The Empire of Britannia has invaded Japan using giant robot weapons called Knightmare Frames. Japan is now referred to as Area 11, and its people the 11's. A Britannian who was living in Japan at the time, Lelouch, vowed to his Japanese friend Suzaku that he'd destroy Britannia. Years later, Lelouch is in high school, but regularly skips out of school to go play chess and gamble on himself. One day, he stumbles on terrorists 11's who've stolen a military secret and is caught by a member of the Britannian task force sent after them, who is Suzaku. As the rest of the squad arrives, Suzaku is shot for disobeying orders, while the military secret, a young immortal witch, gives Lelouch the power of Geass, which makes anyone obey any order. While Suzaku is secretly made the pilot of Britannia's brand new prototype Knightmare, Lancelot, Lelouch becomes the masked Zero to lead the rebellion to destroy Britannia once and for all.    Japanese    Japan    1 win.    2016-04-20 14:32:49.987312    2016-04-28 12:11:44.512039    4.7    MV5BMTIzNDE4MTAxMl5BMl5BanBnXkFtZTcwNDMzMTE4MQ__._V1._CR58_63_257_367_SY132_CR1_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    6835    2016-04-28 12:11:44.388407
858    tt0262150    Black Books    2000–2004    25 min    2001-12-09    {N/A}    {"Dylan Moran"}    8.59999999999999964    38    \N    Bernard Black runs his own bookshop even though he doesn't much like people who buy books and hates having customers. Next door to Bernard's shop is the Nifty Gifty gift shop run by Fran, probably Bernard's only friend in the world. When Bernard's accountant goes on the run Bernard employs stress victim, Manny to help in his shop. This leads to a series of surreal adventures around the shop.    English    UK    3 wins & 3 nominations.    2016-04-20 14:33:22.676548    2016-04-28 12:11:44.994693    2.4    MV5BMTI5MzkwOTI2MF5BMl5BanBnXkFtZTYwNDM5OTQ5._V1._CR15_1_307_423_SY132_CR3_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5179    2016-04-28 12:11:44.867092
895    tt2384811    Utopia    2013–    50 min    2013-01-15    {N/A}    {"Dennis Kelly"}    8.5    23    \N    Utopia will follow a group of people who find themselves in possession of a manuscript of a cult graphic novel. The tome is rumoured to have predicted the worst disasters of the last century and the group soon find themselves targeted by a shadowy organisation known only as The Network.    English    UK    3 wins & 9 nominations.    2016-04-20 14:33:36.696653    2016-04-28 12:11:45.481925    2.31    MV5BMjMwMTA5NDc5M15BMl5BanBnXkFtZTgwMjQ4MTY0MjE_._V1_SX300.jpg    image/jpeg    19579    2016-04-28 12:11:45.361629
946    tt1399664    The Night Manager    2016–    60 min    2016-04-19    {N/A}    {N/A}    8.59999999999999964    5    \N    A night manager of a European hotel is recruited by intelligence agents to infiltrate an international arms dealer's network.    N/A    UK, USA    N/A    2016-04-20 14:34:01.366595    2016-04-28 12:11:46.541086    3.87    MV5BN2VlZjQ3YjgtNjdkZi00OTE0LTkyZWYtYjBlYzM2NjIwYTMxXkEyXkFqcGdeQXVyNTA4NzY1MzY_._V1_SX300.jpg    image/jpeg    33108    2016-04-28 12:11:46.412753
909    tt0495212    Hellsing Ultimate    2006–2012    50 min    2006-12-05    {N/A}    {"Kohta Hirano"}    8.5    10    \N    In flashback, Integra is seen assuming leadership of the Hellsing organization as she resolves a conflict with her uncle with the help of the vampire Alucard. In present day, Alucard goes on a mission to the town of Cheddar to silence a vampiric priest who has been killing townspeople, and in the process must also present the young police girl Seras Victoria with the choice to either die or become a vampire. Also, Alucard battles a Vatican priest named Alexander Anderson after they are both sent to kill the same vampire in Northern Ireland.    Japanese    Japan    5 wins & 3 nominations.    2016-04-20 14:33:41.793531    2016-04-28 12:11:47.245078    3.43    MV5BMTg4OTk3MTY4NF5BMl5BanBnXkFtZTcwMDA1MjgzMQ__._V1_SX300.jpg    image/jpeg    40875    2016-04-28 12:11:47.121926
465    tt0071562    The Godfather: Part II    1974    202 min    1974-12-20    {"Francis Ford Coppola"}    {"Francis Ford Coppola (screenplay)","Mario Puzo (screenplay)","Mario Puzo (novel)"}    9    764    \N    The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing up in Sicily and in 1910s New York; and follows Michael Corleone in the 1950s as he attempts to expand the family business into Las Vegas, Hollywood and Cuba.    English, Italian, Spanish, Latin, Sicilian    USA    Won 6 Oscars. Another 10 wins & 20 nominations.    2016-04-20 14:31:58.093645    2016-04-28 12:11:48.084972    4.62    MV5BNDc2NTM3MzU1Nl5BMl5BanBnXkFtZTcwMTA5Mzg3OA__._V1_SX300.jpg    image/jpeg    19633    2016-04-28 12:11:47.844454
755    tt0081912    Only Fools and Horses....    1981–2003    95 min    1981-09-08    {N/A}    {"John Sullivan"}    8.90000000000000036    27    \N    Classic comedy following the misadventures of two Wheeler Dealer brothers Del Boy and Rodney Trotter who scrape their living by selling dodgy goods believing that next year they will be millionaires.    English    UK    17 wins & 15 nominations.    2016-04-20 14:32:31.764088    2016-04-28 12:11:48.858216    3.62    MV5BMTQ5MTIzNDMwMl5BMl5BanBnXkFtZTYwMDI3NjA5._V1._CR48_36_233_341_SY132_CR0_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    6546    2016-04-28 12:11:48.699878
960    tt2234222    Orphan Black    2013–    44 min    2013-03-30    {N/A}    {"John Fawcett","Graeme Manson","Alex Levine","Kim Coghill","Andrew De Angelis","Jeff Detsky","Adam Higgs","Bob Mackowycz Jr.","Elize Morgan","Peter Rowley","Rebecca Sernasie"}    8.40000000000000036    60    \N    SPOILER: Orphan Black follows outsider, orphan and street-wise chameleon Sarah. After witnessing a woman's suicide, Sarah assumes the stranger's identity - who happens to look just like her. Expecting to solve all her problems by cleaning out the dead woman's savings, Sarah is instead thrust headlong into a kaleidoscopic mystery as she realizes the dizzying truth - she and the dead woman are clones. As Sarah searches for answers, she discovers the chilling fact that there are more people like her out there - genetically identical individuals who were planted in unsuspecting birth parents and nurtured in completely different circumstances. With no idea who created the clones, she'll need to discover the reason in a hurry as an assassin is killing them one by one.    English    Canada    Nominated for 1 Golden Globe. Another 39 wins & 49 nominations.    2016-04-20 14:34:13.400193    2016-04-28 12:11:50.17906    1.33    MV5BNDUwMjA1NjE2N15BMl5BanBnXkFtZTgwOTM5OTkzODE_._V1_SX300.jpg    image/jpeg    25911    2016-04-28 12:11:50.002303
731    tt0052520    The Twilight Zone    1959–1964    51 min    1959-10-02    {N/A}    {"Rod Serling"}    9    42    \N    Ordinary people find themselves in extraordinarily astounding situations, which they each try to solve in a remarkable manner.    English    USA    Won 1 Golden Globe. Another 7 wins & 11 nominations.    2016-04-20 14:32:18.328316    2016-04-28 12:11:51.090051    3.84    MV5BMjAwMTQ1MjE3N15BMl5BanBnXkFtZTYwOTA5OTg4._V1._CR10_9_236_390_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    4469    2016-04-28 12:11:50.947195
956    tt0337792    Wire in the Blood    2002–    69 min    2002-11-14    {N/A}    {N/A}    8.40000000000000036    5    \N    Dark and twisting mystery series based on the characters created by Scottish crime writer Val McDermid. Set in the fictional English city of Bradfield, clinical psychologist Dr. Tony Hill is recruited as a criminal profiler for the police department. Aiding DCI Carol Jordan (and DI Alex Fielding in later episodes), the doctor's eccentric methods and deep understanding of the criminal mind help track down vicious serial killers and solve the most gruesome of crimes.    English    UK    1 win & 6 nominations.    2016-04-20 14:34:11.611522    2016-04-28 12:11:52.63031    1.19    MV5BMTg2NDc3ODI4MF5BMl5BanBnXkFtZTcwOTM3OTIzMQ__._V1_SX300.jpg    image/jpeg    25676    2016-04-28 12:11:52.489781
957    tt0383126    MythBusters    2003–    44 min    2003-10-03    {N/A}    {"Peter Rees"}    8.30000000000000071    43    \N    Mythbusters takes myths, tall tales and urban legends and gives them the scientific treatment to determine their validity. Myths are proved true, probable, possible, improbable or busted. Often after the real-world practical tests have proved or debunked a Myth, the team will take the experiment to the extreme, many times using more modern technology than the myth could have used or upping the black powder for impressive explosions.    English    USA    Nominated for 7 Primetime Emmys. Another 1 win & 5 nominations.    2016-04-20 14:34:11.969425    2016-04-28 12:11:53.248894    3.04    MV5BMTMwNDcyODYwNV5BMl5BanBnXkFtZTcwMjk1NjA4MQ__._V1_SX300.jpg    image/jpeg    38451    2016-04-28 12:11:53.09275
736    tt4508902    One Punch Man: Wanpanman    2015–    22 min    2015-10-01    {N/A}    {N/A}    9.30000000000000071    24    \N    In a world of superhuman beings, Saitama is a unique hero, he can defeat enemies with a single punch. But being just one hero in a world filled with them, his life is empty and hollow: he gets no respect from anyone, he displays a laidback attitude to everything and for the most part, he finds his overall hero life pointless... and worst of all, he lost his hair due to intense training. These are the adventures of an ordinary yet extraordinary hero.    Japanese    Japan    N/A    2016-04-20 14:32:21.454715    2016-04-28 12:11:54.099451    3.23    MV5BMzQxMzE5NzM2NV5BMl5BanBnXkFtZTgwMDQ4NTUyNzE_._V1_SX300.jpg    image/jpeg    57051    2016-04-28 12:11:53.934761
576    tt0119217    Good Will Hunting    1997    126 min    1998-01-09    {"Gus Van Sant"}    {"Matt Damon","Ben Affleck"}    8.30000000000000071    584    \N    A touching tale of a wayward young man who struggles to find his identity, living in a world where he can solve any problem, except the one brewing deep within himself, until one day he meets his soul mate who opens his mind and his heart.    English    USA    Won 2 Oscars. Another 20 wins & 53 nominations.    2016-04-20 14:32:02.915938    2016-04-28 12:12:03.092337    1.24    MV5BMTk0NjY0Mzg5MF5BMl5BanBnXkFtZTcwNzM1OTM2MQ__._V1_SX300.jpg    image/jpeg    40103    2016-04-28 12:12:02.927301
463    tt0111161    The Shawshank Redemption    1994    142 min    1994-10-14    {"Frank Darabont"}    {"Stephen King (short story \\"Rita Hayworth and Shawshank Redemption\\")","Frank Darabont (screenplay)"}    9.30000000000000071    1    \N    Chronicles the experiences of a formerly successful banker as a prisoner in the gloomy jailhouse of Shawshank after being found guilty of a crime he claims he did not commit. The film portrays the man's unique way of dealing with his new, torturous life; along the way he befriends a number of fellow prisoners, most notably a wise long-term inmate named Red.    English    USA    Nominated for 7 Oscars. Another 14 wins & 21 nominations.    2016-04-20 14:31:58.004913    2016-04-28 12:11:55.032296    2.09    MV5BODU4MjU4NjIwNl5BMl5BanBnXkFtZTgwMDU2MjEyMDE_._V1_SX300.jpg    image/jpeg    34648    2016-04-28 12:11:54.883903
467    tt0108052    Schindler's List    1993    195 min    1994-02-04    {"Steven Spielberg"}    {"Thomas Keneally (book)","Steven Zaillian (screenplay)"}    8.90000000000000036    837    \N    In Poland during World War II, Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.    English, Hebrew, German, Polish    USA    Won 7 Oscars. Another 71 wins & 33 nominations.    2016-04-20 14:31:58.188834    2016-04-28 12:11:55.798432    2.06    MV5BMzMwMTM4MDU2N15BMl5BanBnXkFtZTgwMzQ0MjMxMDE_._V1_SX300.jpg    image/jpeg    45864    2016-04-28 12:11:55.629366
747    tt3718778    Over the Garden Wall    2014    110 min    2014-11-03    {N/A}    {N/A}    9.09999999999999964    8    \N    Two brothers find themselves lost in a mysterious land and try to find their way home.    English    USA    Won 2 Primetime Emmys. Another 2 wins & 7 nominations.    2016-04-20 14:32:27.035665    2016-04-28 12:11:56.430383    2.56    MV5BMTA0NTYwMjg1NzJeQTJeQWpwZ15BbWU4MDA1MTAwNTMx._V1_SX300.jpg    image/jpeg    24907    2016-04-28 12:11:56.304379
479    tt0099685    Goodfellas    1990    146 min    1990-09-21    {"Martin Scorsese"}    {"Nicholas Pileggi (book)","Nicholas Pileggi (screenplay)","Martin Scorsese (screenplay)"}    8.69999999999999929    705    \N    Henry Hill is a small time gangster, who takes part in a robbery with Jimmy Conway and Tommy De Vito, two other gangsters who have set their sights a bit higher. His two partners kill off everyone else involved in the robbery, and slowly start to climb up through the hierarchy of the Mob. Henry, however, is badly affected by his partners' success, but will he stoop low enough to bring about the downfall of Jimmy and Tommy?    English, Italian    USA    Won 1 Oscar. Another 37 wins & 32 nominations.    2016-04-20 14:31:58.68529    2016-04-28 12:11:57.17863    4.88    MV5BMTY2OTE5MzQ3MV5BMl5BanBnXkFtZTgwMTY2NTYxMTE_._V1_SX300.jpg    image/jpeg    26173    2016-04-28 12:11:57.030319
472    tt0137523    Fight Club    1999    139 min    1999-10-15    {"David Fincher"}    {"Chuck Palahniuk (novel)","Jim Uhls (screenplay)"}    8.90000000000000036    1    \N    A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground "fight clubs" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.    English    USA, Germany    Nominated for 1 Oscar. Another 9 wins & 30 nominations.    2016-04-20 14:31:58.394278    2016-04-28 12:11:58.996303    1.3    MV5BMjIwNTYzMzE1M15BMl5BanBnXkFtZTcwOTE5Mzg3OA__._V1_SX300.jpg    image/jpeg    33317    2016-04-28 12:11:58.845014
473    tt0120737    The Lord of the Rings: The Fellowship of the Ring    2001    178 min    2001-12-19    {"Peter Jackson"}    {"J.R.R. Tolkien (novel)","Fran Walsh (screenplay)","Philippa Boyens (screenplay)","Peter Jackson (screenplay)"}    8.80000000000000071    1    \N    A meek Hobbit and eight companions set out on a journey to destroy the One Ring and the Dark Lord Sauron.    English, Sindarin    New Zealand, USA    Won 4 Oscars. Another 108 wins & 121 nominations.    2016-04-20 14:31:58.433836    2016-04-28 12:11:59.631938    2.6    MV5BNTEyMjAwMDU1OV5BMl5BanBnXkFtZTcwNDQyNTkxMw__._V1_SX300.jpg    image/jpeg    31393    2016-04-28 12:11:59.4893
548    tt0086879    Amadeus    1984    160 min    1985-04-05    {"Milos Forman"}    {"Peter Shaffer (original stage play)","Peter Shaffer (original screenplay)"}    8.30000000000000071    263    \N    The incredible story of Wolfgang Amadeus Mozart, told by his peer and secret rival Antonio Salieri - now confined to an insane asylum.    English, Italian, Latin, German    USA, France    Won 8 Oscars. Another 33 wins & 14 nominations.    2016-04-20 14:32:01.701329    2016-04-28 12:12:00.291707    1.32    MV5BMTg5NDkwMTk5N15BMl5BanBnXkFtZTYwODg3MDk2._V1_SX300.jpg    image/jpeg    40056    2016-04-28 12:12:00.149269
492    tt0120815    Saving Private Ryan    1998    169 min    1998-07-24    {"Steven Spielberg"}    {"Robert Rodat"}    8.59999999999999964    847    \N    Opening with the Allied invasion of Normandy on 6 June 1944, members of the 2nd Ranger Battalion under Cpt. Miller fight ashore to secure a beachhead. Amidst the fighting, two brothers are killed in action. Earlier in New Guinea, a third brother is KIA. Their mother, Mrs. Ryan, is to receive all three of the grave telegrams on the same day. The United States Army Chief of Staff, George C. Marshall, is given an opportunity to alleviate some of her grief when he learns of a fourth brother, Private James Ryan, and decides to send out 8 men (Cpt. Miller and select members from 2nd Rangers) to find him and bring him back home to his mother...    English, French, German, Czech    USA    Won 5 Oscars. Another 74 wins & 74 nominations.    2016-04-20 14:31:59.245371    2016-04-28 12:12:00.902402    4.37    MV5BNjczODkxNTAxN15BMl5BanBnXkFtZTcwMTcwNjUxMw__._V1_SX300.jpg    image/jpeg    27391    2016-04-28 12:12:00.763997
538    tt0112573    Braveheart    1995    178 min    1995-05-24    {"Mel Gibson"}    {"Randall Wallace"}    8.40000000000000036    710    \N    When his secret bride is executed for assaulting an English soldier who tried to rape her, William Wallace begins a revolt against King Edward I of England.    English, French, Latin, Scottish Gaelic    USA    Won 5 Oscars. Another 26 wins & 28 nominations.    2016-04-20 14:32:01.258779    2016-04-28 12:12:01.595559    3.37    MV5BNjA4ODYxMDU3Nl5BMl5BanBnXkFtZTcwMzkzMTk3OA__._V1_SX300.jpg    image/jpeg    35223    2016-04-28 12:12:01.437186
501    tt0027977    Modern Times    1936    87 min    1936-02-25    {"Charles Chaplin"}    {"Charles Chaplin"}    8.59999999999999964    137    \N    The Tramp struggles to live in modern industrial society with the help of a young homeless woman.    English    USA    4 wins & 1 nomination.    2016-04-20 14:31:59.649047    2016-04-28 12:12:02.266054    4.37    MV5BMjAyMTkxNjI5OF5BMl5BanBnXkFtZTYwMjI2MjA5._V1_SX300.jpg    image/jpeg    36212    2016-04-28 12:12:02.109674
643    tt1663202    The Revenant    2015    156 min    2016-01-08    {"Alejandro G. Iñárritu"}    {"Mark L. Smith (screenplay)","Alejandro G. Iñárritu (screenplay)","Michael Punke (based in part on the novel by)"}    8.09999999999999964    324    \N    A frontiersman on a fur trading expedition in the 1820s fights for survival after being mauled by a bear and left for dead by members of his own hunting team.    English, Pawnee, French    USA, Hong Kong, Taiwan, Canada    Won 3 Oscars. Another 71 wins & 152 nominations.    2016-04-20 14:32:05.885536    2016-04-28 12:12:04.669184    3.82    MV5BMjU4NDExNDM1NF5BMl5BanBnXkFtZTgwMDIyMTgxNzE_._V1_SX300.jpg    image/jpeg    35481    2016-04-28 12:12:04.524211
690    tt1220719    Ip Man    2008    106 min    2008-12-12    {"Wilson Yip"}    {"Edmond Wong (screenplay)","Tai-Li Chan"}    8.09999999999999964    159    \N    In 1935 in Foshan, south China, there are martial arts schools on every street corner. Ip Man is the undisputed martial arts champion, yet he has not devoted himself to teaching. Despite this, it seems that all the kung fu masters of the city are eager to fight him to improve their reputation.    Cantonese, Mandarin, Japanese    Hong Kong, China    12 wins & 15 nominations.    2016-04-20 14:32:07.949588    2016-04-28 12:12:06.31646    1.79    MV5BMjE0NDUzMDcyOF5BMl5BanBnXkFtZTcwNzAxMTA2Mw__._V1_SX300.jpg    image/jpeg    52984    2016-04-28 12:12:06.168657
730    tt1806234    Human Planet    2011    50 min    2011-01-13    {N/A}    {N/A}    9.09999999999999964    11    \N    Like all life forms, humanity partially adapts to types of natural environment, yet also tends to change them. Each episode examines how life differs for men and nature in some type of environment, from Arctic to desert and jungle, from coasts to mountains.    English    UK    2 wins & 4 nominations.    2016-04-20 14:32:17.534957    2016-04-28 12:12:07.328067    4.25    MV5BMTMyMDI0MDI3M15BMl5BanBnXkFtZTcwMTQ5NDQ3NA__._V1_SX300.jpg    image/jpeg    21515    2016-04-28 12:12:07.185587
759    tt0072500    Fawlty Towers    1975–1979    30 min    1975-09-19    {N/A}    {N/A}    8.80000000000000071    55    \N    Inept and manic English hotel owner and manager, Basil Fawlty, isn't cut out for his job. He's intolerant, rude and paranoid. All hell frequently breaks loose as Basil tries to run the hotel, constantly under verbal (and sometime physical) attack from his unhelpful wife Sybil, and hindered by the incompetent, but easy target, Manuel; their Spanish waiter.    English, Spanish    UK    5 wins & 2 nominations.    2016-04-20 14:32:33.811854    2016-04-28 12:12:07.837032    1.28    MV5BNDU2NzMxMTYzNV5BMl5BanBnXkFtZTYwMjg1Nzk4._V1._CR0_40_259_396_SX89_AL_.jpg_V1_SX300.jpg    image/jpeg    5696    2016-04-28 12:12:07.718692
505    tt0407887    The Departed    2006    151 min    2006-10-06    {"Martin Scorsese"}    {"William Monahan (screenplay)","Alan Mak","Felix Chong"}    8.5    845    \N    In South Boston, the state police force is waging war on Irish-American organized crime. Young undercover cop Billy Costigan (Leonardo DiCaprio) is assigned to infiltrate the mob syndicate run by gangland chief Frank Costello (Jack Nicholson). While Billy quickly gains Costello's confidence, Colin Sullivan (Matt Damon), a hardened young criminal who has infiltrated the state police as an informer for the syndicate is rising to a position of power in the Special Investigation Unit. Each man becomes deeply consumed by their double lives, gathering information about the plans and counter-plans of the operations they have penetrated. But when it becomes clear to both the mob and the police that there is a mole in their midst, Billy and Colin are suddenly in danger of being caught and exposed to the enemy - and each must race to uncover the identity of the other man in time to save themselves. But is either willing to turn on their friends and comrades they've made during their long stints undercover?    English, Cantonese    USA, Hong Kong    Won 4 Oscars. Another 90 wins & 122 nominations.    2016-04-20 14:31:59.81088    2016-04-28 12:12:08.377081    2.39    MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_SX300.jpg    image/jpeg    34775    2016-04-28 12:12:08.221294
815    tt1305826    Adventure Time    2010–    11 min    2010-04-05    {N/A}    {"Pendleton Ward"}    8.69999999999999929    44    \N    A human boy named Finn and adoptive brother and best friend Jake the Dog, protect the citizens of the Land of Ooo from foes of various shapes and sizes.    English, Korean    USA    Won 4 Primetime Emmys. Another 15 wins & 38 nominations.    2016-04-20 14:33:00.323003    2016-04-28 12:12:09.047911    3.17    MV5BMjE2MzE1MDI2M15BMl5BanBnXkFtZTgwNzUyODQxMDE_._V1_SX300.jpg    image/jpeg    46379    2016-04-28 12:12:08.885844
514    tt0043014    Sunset Blvd.    1950    110 min    1950-08-25    {"Billy Wilder"}    {"Charles Brackett","Billy Wilder","D.M. Marshman Jr."}    8.5    134    \N    The story, set in '50s Hollywood, focuses on Norma Desmond, a silent-screen goddess whose pathetic belief in her own indestructibility has turned her into a demented recluse. The crumbling Sunset Boulevard mansion where she lives with only her butler, Max who was once her director and husband has become her self-contained world. Norma dreams of a comeback to pictures and she begins a relationship with Joe Gillis, a small-time writer who becomes her lover, that will soon end with murder and total madness.    English    USA    Won 3 Oscars. Another 15 wins & 18 nominations.    2016-04-20 14:32:00.180419    2016-04-28 12:12:09.825942    1.03    MV5BMTc3NDYzODAwNV5BMl5BanBnXkFtZTgwODg1MTczMTE_._V1_SX300.jpg    image/jpeg    36509    2016-04-28 12:12:09.67516
836    tt0047708    Alfred Hitchcock Presents    1955–1962    25 min    1955-10-02    {N/A}    {N/A}    8.59999999999999964    8    \N    Series of unrelated short stories covering elements of crime, horror, drama and comedy about people of different species committing murders, suicides, thefts and other sorts of crime caused by certain motivations; perceived or not.    English    USA    Won 1 Golden Globe. Another 5 wins & 15 nominations.    2016-04-20 14:33:10.263118    2016-04-28 12:12:10.520517    2.11    MV5BMTM5MjkyMDg3MV5BMl5BanBnXkFtZTcwNzc0ODc4Mw__._V1._CR37_37_296_353_SY132_CR11_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4040    2016-04-28 12:12:10.405969
732    tt0296310    The Blue Planet    2001    50 min    2002-01-27    {N/A}    {N/A}    9.09999999999999964    11    \N    Mammoth series, five years in the making, taking a look at the rich tapestry of life in the world's oceans.    English    UK    Won 2 Primetime Emmys. Another 4 wins & 12 nominations.    2016-04-20 14:32:19.071328    2016-04-28 12:12:22.349789    1.5    MV5BMjQyMjY1NjYzNF5BMl5BanBnXkFtZTgwMDQ3NDM1NjE_._V1_SX300.jpg    image/jpeg    31553    2016-04-28 12:12:22.185166
945    tt0948103    Tengen toppa gurren lagann    2007–    25 min    \N    {N/A}    {N/A}    8.40000000000000036    7    \N    Two friends, Simon and Kamina, become the symbols of rebellion against the powerful Spiral King, who forced mankind into subterranean villages.    Japanese    Japan    2 wins.    2016-04-20 14:34:00.402324    2016-04-28 12:12:37.237148    3.97    MV5BMjIxMDkyOTIxOV5BMl5BanBnXkFtZTgwMzQxMTA3MDE_._V1_SX300.jpg    image/jpeg    52765    2016-04-28 12:12:37.084528
526    tt0090605    Aliens    1986    137 min    1986-07-18    {"James Cameron"}    {"James Cameron (story)","David Giler (story)","Walter Hill (story)","Dan O'Bannon (characters)","Ronald Shusett (characters)","James Cameron (screenplay)"}    8.40000000000000036    474    \N    Fifty seven years after Ellen Ripley survived her disastrous ordeal, her escape vessel is recovered after drifting across the galaxy as she slept in cryogenic stasis. Back on earth, nobody believed her story about the "Aliens" on the planet LV-426. After the "Company" orders the colony on LV-426 to investigate, however, all communication with the colony is lost. The Company enlists Ripley to aid a team of tough, rugged space marines on a rescue mission to the now partially terraformed planet to find out if there are aliens or survivors. As the mission unfolds, Ripley will be forced to come to grips with her worst nightmare, but even as she does, she finds that the worst is yet to come.    English    UK, USA    Won 2 Oscars. Another 17 wins & 22 nominations.    2016-04-20 14:32:00.695028    2016-04-28 12:12:11.035532    3.81    MV5BMTYzNzU5MzQ4OV5BMl5BanBnXkFtZTcwMDcxNDg3OA__._V1_SX300.jpg    image/jpeg    35554    2016-04-28 12:12:10.89361
535    tt0051201    Witness for the Prosecution    1957    116 min    1958-02-06    {"Billy Wilder"}    {"Agatha Christie (in Agatha Christie's international stage success)","Billy Wilder (screen play)","Harry Kurnitz (screen play)","Lawrence B. Marcus (adaptation)"}    8.40000000000000036    59    \N    It's Britain, 1953. Upon his return to work following a heart attack, irrepressible barrister Sir Wilfrid Robarts, known as a barrister for the hopeless, takes on a murder case, much to the exasperation of his medical team, led by his overly regulated private nurse, Miss Plimsoll, who tries her hardest to ensure that he not return to his hard living ways - including excessive cigar smoking and drinking - while he takes his medication and gets his much needed rest. That case is defending American war veteran Leonard Vole, a poor, out of work, struggling inventor who is accused of murdering his fifty-six year old lonely and wealthy widowed acquaintance, Emily French. The initial evidence is circumstantial but points to Leonard as the murderer. Despite being happily married to East German former beer hall performer Christine Vole, he fostered that friendship with Mrs. French in the hopes that she would finance one of his many inventions to the tune of a few hundred pounds. It thus does not help his case when it is learned that Mrs. French changed her will prior to her murder with Leonard being the primary beneficiary of a £80,000 estate. Leonard states that he knew nothing about the will. Christine is apparently the only alibi Leonard has to his whereabouts at the time of the murder. The usual methods Sir Wilfrid uses to test his clients' guilt or innocence leads to him believing that Leonard is indeed innocent. As the trial progresses, the prosecution calls a surprise witness, one that could place a nail in the coffin of Sir Wilfrid's planned line of defense. As Sir Wilfrid gets deeper and deeper into the case, something doesn't quite sit right with him, although he doesn't know what it is. The primary questions become how far Sir Wilfrid will go to obtain evidence to acquit Leonard, and if he will ever discover why he feels that there is something odd about the case.    English, German    USA    Nominated for 6 Oscars. Another 3 wins & 9 nominations.    2016-04-20 14:32:01.088597    2016-04-28 12:12:12.643031    3.32    MV5BMTc0MjgyNTUyNF5BMl5BanBnXkFtZTcwNDQzMDg0Nw__._V1_SX300.jpg    image/jpeg    39834    2016-04-28 12:12:12.491608
544    tt0056592    To Kill a Mockingbird    1962    129 min    1963-03-16    {"Robert Mulligan"}    {"Harper Lee (based on her novel \\"To Kill a Mockingbird\\")","Horton Foote (screenplay)"}    8.40000000000000036    208    \N    Atticus Finch, a lawyer in the Depression-era South, defends a black man against an undeserved rape charge, and his kids against prejudice.    English    USA    Won 3 Oscars. Another 10 wins & 16 nominations.    2016-04-20 14:32:01.526833    2016-04-28 12:12:13.374892    4.39    MV5BMjA4MzI1NDY2Nl5BMl5BanBnXkFtZTcwMTcyODc5Mw__._V1_SX300.jpg    image/jpeg    47865    2016-04-28 12:12:13.222388
568    tt0040897    The Treasure of the Sierra Madre    1948    126 min    1948-01-24    {"John Huston"}    {"John Huston (screenplay)","B. Traven (based on the novel by)"}    8.30000000000000071    76    \N    Fred C. Dobbs and Bob Curtin, both down on their luck in Tampico, Mexico in 1925, meet up with a grizzled prospector named Howard and decide to join with him in search of gold in the wilds of central Mexico. Through enormous difficulties, they eventually succeed in finding gold, but bandits, the elements, and most especially greed threaten to turn their success into disaster.    English, Spanish    USA    Won 3 Oscars. Another 12 wins & 5 nominations.    2016-04-20 14:32:02.571525    2016-04-28 12:12:14.109672    3.97    MV5BMTQ4MzUzOTYwOV5BMl5BanBnXkFtZTgwNDA4MzgyMjE_._V1_SX300.jpg    image/jpeg    40690    2016-04-28 12:12:13.928901
555    tt0071853    Monty Python and the Holy Grail    1975    91 min    1975-05-23    {"Terry Gilliam","Terry Jones"}    {"Graham Chapman","John Cleese","Eric Idle","Terry Gilliam","Terry Jones","Michael Palin"}    8.30000000000000071    371    \N    History is turned on its comic head when, in 10th century England, King Arthur travels the countryside to find knights who will join him at the Round Table in Camelot. Gathering up the men is a tale in itself but after a bit of a party at Camelot, many decide to leave only to be stopped by God who sends them on a quest: to find the Holy Grail. After a series of individual adventures, the knights are reunited but must face a wizard named Tim, killer rabbits and lessons in the use of holy hand grenades. Their quest comes to an end however when the police intervene - just what you would expect in a Monty Python movie.    English, French, Latin    UK    2 wins & 2 nominations.    2016-04-20 14:32:02.009716    2016-04-28 12:12:14.809835    3.82    MV5BMTkzODczMTgwM15BMl5BanBnXkFtZTYwNTAwODI5._V1_SX300.jpg    image/jpeg    38138    2016-04-28 12:12:14.664914
559    tt0059578    For a Few Dollars More    1965    132 min    1967-05-10    {"Sergio Leone"}    {"Sergio Leone (scenario)","Fulvio Morsella (scenario)","Luciano Vincenzoni (screenplay)","Sergio Leone (screenplay)","Luciano Vincenzoni (dialogue: English version)"}    8.30000000000000071    151    \N    Two bounty hunters with the same intentions team up to track down a Western outlaw.    Italian, English    Italy, Spain, West Germany    N/A    2016-04-20 14:32:02.169491    2016-04-28 12:12:16.101796    4.95    MV5BMTQzMjIzOTEzMF5BMl5BanBnXkFtZTcwMTUzNTk3NA__._V1_SX300.jpg    image/jpeg    35357    2016-04-28 12:12:15.950651
564    tt1832382    A Separation    2011    123 min    2011-03-16    {"Asghar Farhadi"}    {"Asghar Farhadi"}    8.40000000000000036    146    \N    A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.    Persian    Iran    Won 1 Oscar. Another 76 wins & 42 nominations.    2016-04-20 14:32:02.397537    2016-04-28 12:12:16.849298    3.75    MV5BMTYzMzU4NDUwOF5BMl5BanBnXkFtZTcwMTM5MjA5Ng__._V1_SX300.jpg    image/jpeg    30303    2016-04-28 12:12:16.708816
655    tt0052618    Ben-Hur    1959    212 min    1959-12-26    {"William Wyler"}    {"Lew Wallace (novel)","Karl Tunberg (screenplay)"}    8.09999999999999964    155    \N    When a Jewish prince is betrayed and sent into slavery by a Roman friend, he regains his freedom and comes back for revenge.    English    USA    Won 11 Oscars. Another 16 wins & 13 nominations.    2016-04-20 14:32:06.376203    2016-04-28 12:12:17.920336    2.53    MV5BNjg2NjA3NDY2OV5BMl5BanBnXkFtZTgwNzE3NTkxMTE_._V1_SX300.jpg    image/jpeg    41912    2016-04-28 12:12:17.770926
593    tt0044741    Ikiru    1952    143 min    1956-03-25    {"Akira Kurosawa"}    {"Akira Kurosawa","Shinobu Hashimoto","Hideo Oguni"}    8.30000000000000071    40    \N    A bureaucrat tries to find a meaning in his life after he discovers he has terminal cancer.    Japanese    Japan    Nominated for 1 BAFTA Film Award. Another 5 wins.    2016-04-20 14:32:03.715159    2016-04-28 12:12:18.825235    1.83    MV5BMTcyMDU0MTQzNV5BMl5BanBnXkFtZTcwOTk2NDQyMQ__._V1._CR12_28_314_446_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    3119    2016-04-28 12:12:18.706795
596    tt0015864    The Gold Rush    1925    95 min    \N    {"Charles Chaplin"}    {"Charles Chaplin"}    8.30000000000000071    64    \N    A lone prospector ventures into Alaska looking for gold. He gets mixed up with some burly characters and falls in love with the beautiful Georgia. He tries to win her heart with his singular charm.    English    USA    Nominated for 2 Oscars. Another 3 wins & 1 nomination.    2016-04-20 14:32:03.852653    2016-04-28 12:12:19.536929    2.94    MV5BMzYzMDQyNzA4NV5BMl5BanBnXkFtZTYwNDU5NDU5._V1_SX300.jpg    image/jpeg    33203    2016-04-28 12:12:19.396386
699    tt0050613    Throne of Blood    1957    110 min    1961-11-22    {"Akira Kurosawa"}    {"Hideo Oguni (screenplay)","Shinobu Hashimoto (screenplay)","Ryûzô Kikushima (screenplay)","Akira Kurosawa (screenplay)"}    8.09999999999999964    29    \N    A war-hardened general, egged on by his ambitious wife, works to fulfill a prophecy that he would become lord of Spider's Web Castle.    Japanese    Japan    3 wins & 1 nomination.    2016-04-20 14:32:08.355822    2016-04-28 12:12:20.324069    2.98    MV5BMTM1MTk2NDIzOV5BMl5BanBnXkFtZTcwMTA5ODQxMQ__._V1_SX300.jpg    image/jpeg    32217    2016-04-28 12:12:20.171878
603    tt0017925    The General    1926    67 min    1927-02-24    {"Clyde Bruckman","Buster Keaton"}    {"Buster Keaton","Clyde Bruckman","Al Boasberg (adapted by)","Charles Henry Smith (adapted by)"}    8.30000000000000071    51    \N    Johnnie loves his train ("The General") and Annabelle Lee. When the Civil War begins he is turned down for service because he's more valuable as an engineer. Annabelle thinks it's because he's a coward. Union spies capture The General with Annabelle on board. Johnnie must rescue both his loves.    English    USA    2 wins & 1 nomination.    2016-04-20 14:32:04.149143    2016-04-28 12:12:21.230672    2.84    MV5BODQxMzMyNTY5Nl5BMl5BanBnXkFtZTcwMDMyNTk3OA__._V1_SX300.jpg    image/jpeg    23851    2016-04-28 12:12:21.085934
625    tt0758758    Into the Wild    2007    148 min    2007-10-19    {"Sean Penn"}    {"Sean Penn (screenplay)","Jon Krakauer (book)"}    8.19999999999999929    411    \N    Based on a true story. After graduating from Emory University, top student and athlete Christopher McCandless abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness. Along the way, Christopher encounters a series of characters who shape his life.    English, Danish    USA    Nominated for 2 Oscars. Another 23 wins & 99 nominations.    2016-04-20 14:32:05.091589    2016-04-28 12:12:23.060946    3.85    MV5BMTAwNDEyODU1MjheQTJeQWpwZ15BbWU2MDc3NDQwNw__._V1_SX300.jpg    image/jpeg    26592    2016-04-28 12:12:22.913828
639    tt1895587    Spotlight    2015    128 min    2015-11-25    {"Tom McCarthy"}    {"Josh Singer","Tom McCarthy"}    8.19999999999999929    128    \N    When the Boston Globe's tenacious "Spotlight" team of reporters delves into allegations of abuse in the Catholic Church, their year-long investigation uncovers a decades-long cover-up at the highest levels of Boston's religious, legal, and government establishment, touching off a wave of revelations around the world.    English    USA, Canada    Won 2 Oscars. Another 106 wins & 121 nominations.    2016-04-20 14:32:05.717888    2016-04-28 12:12:24.132166    1.04    MV5BMjIyOTM5OTIzNV5BMl5BanBnXkFtZTgwMDkzODE2NjE_._V1_SX300.jpg    image/jpeg    36606    2016-04-28 12:12:23.986776
664    tt0083987    Gandhi    1982    191 min    1983-02-25    {"Richard Attenborough"}    {"John Briley"}    8.09999999999999964    166    \N    Gandhi's character is fully explained as a man of nonviolence. Through his patience, he is able to drive the British out of the subcontinent. And the stubborn nature of Jinnah and his commitment towards Pakistan is portrayed.    English    UK, India    Won 8 Oscars. Another 27 wins & 20 nominations.    2016-04-20 14:32:06.776021    2016-04-28 12:12:25.017294    1.94    MV5BMTQyNTQ4MTAzNl5BMl5BanBnXkFtZTcwMjk2Njk3OA__._V1_SX300.jpg    image/jpeg    31531    2016-04-28 12:12:24.861816
672    tt0120382    The Truman Show    1998    103 min    1998-06-05    {"Peter Weir"}    {"Andrew Niccol"}    8.09999999999999964    646    \N    In this movie, Truman is a man whose life is a fake one... The place he lives is in fact a big studio with hidden cameras everywhere, and all his friends and people around him, are actors who play their roles in the most popular TV-series in the world: The Truman Show. Truman thinks that he is an ordinary man with an ordinary life and has no idea about how he is exploited. Until one day... he finds out everything. Will he react?    English    USA    Nominated for 3 Oscars. Another 38 wins & 66 nominations.    2016-04-20 14:32:07.137891    2016-04-28 12:12:25.679645    3.43    MV5BMTg4NTU3NTAyMF5BMl5BanBnXkFtZTgwNjYwNzc3NjE_._V1_SX300.jpg    image/jpeg    60964    2016-04-28 12:12:25.529582
722    tt1475582    Sherlock    2010–    88 min    2010-10-24    {N/A}    {"Mark Gatiss","Steven Moffat"}    9.30000000000000071    470    \N    In this modernized version of the Conan Doyle characters, using his detective plots, Sherlock Holmes lives in early 21st century London and acts more cocky towards Scotland Yard's detective inspector Lestrade because he's actually less confident. Doctor Watson is now a fairly young veteran of the Afghan war, less adoring and more active.    English    UK, USA    Nominated for 1 Golden Globe. Another 71 wins & 104 nominations.    2016-04-20 14:32:12.197868    2016-04-28 12:12:26.499878    4.68    MV5BNTA2MTE1NDI5OV5BMl5BanBnXkFtZTcwNzM2MzU3Nw__._V1_SX300.jpg    image/jpeg    27336    2016-04-28 12:12:26.368811
721    tt0141842    The Sopranos    1999–2007    55 min    1999-01-10    {N/A}    {"David Chase"}    9.19999999999999929    182    \N    An innovative look at the life of fictional Mafia Capo Tony Soprano, this serial is presented largely first person, but additional perspective is conveyed by the intimate conversations Tony has with his psychotherapist. We see Tony at work, at home, and in therapy. Moments of black comedy intersperse this aggressive, adult drama, with adult language, and extreme violence.    English, Italian, Russian    USA    Won 5 Golden Globes. Another 111 wins & 292 nominations.    2016-04-20 14:32:11.571429    2016-04-28 12:12:27.136278    4.06    MV5BMTIxMjc4NTA2Nl5BMl5BanBnXkFtZTYwNTU2MzU5._V1_SX300.jpg    image/jpeg    30372    2016-04-28 12:12:26.978743
780    tt0248654    Six Feet Under    2001–2005    55 min    2001-06-03    {N/A}    {"Alan Ball"}    8.80000000000000071    87    \N    A drama series that takes a darkly comical look at members of a dysfunctional family that runs an independent funeral home. With the prodigal elder son (Nate) returning home for the holidays to shattering news, the family must learn to deal with a death of their own, while figuring out how to go ahead with the business of the living. A funny and emotional look at a grieving American family...that just happens to be in the grief management business.    English    USA    Won 3 Golden Globes. Another 53 wins & 152 nominations.    2016-04-20 14:32:43.119673    2016-04-28 12:12:27.758915    3.12    MV5BMjEzMzc2NjA5NV5BMl5BanBnXkFtZTcwOTI1MDAzMQ__._V1_SX300.jpg    image/jpeg    27018    2016-04-28 12:12:27.61799
823    tt0423731    Samurai Champloo    2004–2005    24 min    2005-01-11    {N/A}    {N/A}    8.69999999999999929    22    \N    Fuu, a waitress who works in a teahouse, rescues two master swordsmen, Mugen and Jin, from their execution to help her find the "samurai who smells of sunflowers."    Japanese, Dutch, English    Japan    N/A    2016-04-20 14:33:04.044838    2016-04-28 12:12:28.594437    4.19    MV5BMjEwNzAwODY4MV5BMl5BanBnXkFtZTgwMTUxNDk0MDE_._V1_SX300.jpg    image/jpeg    30625    2016-04-28 12:12:28.456356
861    tt2306299    Vikings    2013–    44 min    2013-03-03    {N/A}    {"Michael Hirst"}    8.59999999999999964    173    \N    The adventures of Ragnar Lothbrok: the greatest hero of his age. The series tells the saga of Ragnar's band of Viking brothers and his family as he rises to become King of the Viking tribes. As well as being a fearless warrior, Ragnar embodies the Norse traditions of devotion to the gods: legend has it that he was a direct descendant of Odin, the god of war and warriors.    English, Old English, Norse,  Old, Latin    Ireland, Canada    Nominated for 6 Primetime Emmys. Another 14 wins & 42 nominations.    2016-04-20 14:33:24.386144    2016-04-28 12:12:29.376913    1.94    MV5BOTEzNzI3MDc0N15BMl5BanBnXkFtZTgwMzk1MzA5NzE_._V1_SX300.jpg    image/jpeg    20109    2016-04-28 12:12:29.228027
864    tt0096657    Mr. Bean    1990–1995    350 min    1992-04-02    {N/A}    {N/A}    8.5    58    \N    Mr. Bean is a grown man who seems to have been literally born yesterday. He gets up to ingenious oddball nonsense every episode while all the time remaining silent. When he does speak, it's with a croaky voice.    English    UK    3 wins & 7 nominations.    2016-04-20 14:33:26.45661    2016-04-28 12:12:30.047657    3.46    MV5BMTUxOTY2NTg2N15BMl5BanBnXkFtZTYwNTU4MDk4._V1_SX300.jpg    image/jpeg    26885    2016-04-28 12:12:29.913616
869    tt1124373    Sons of Anarchy    2008–2014    45 min    2008-09-03    {N/A}    {"Kurt Sutter"}    8.59999999999999964    173    \N    A man in his early 30s struggles to find a balance in his life between being a new dad and his involvement in a motorcycle club.    English    USA    Won 1 Golden Globe. Another 9 wins & 54 nominations.    2016-04-20 14:33:28.789981    2016-04-28 12:12:30.641505    3.02    MV5BMTEyODg2NzkwMDBeQTJeQWpwZ15BbWU4MDQwODI3MzIx._V1_SX300.jpg    image/jpeg    26358    2016-04-28 12:12:30.501094
893    tt1795096    Behzat Ç.: Bir Ankara Polisiyesi    2010–2013    90 min    2010-09-19    {N/A}    {N/A}    8.80000000000000071    16    \N    Centered around a personally troubled, officially discredited police chief and his inharmonious police team in Ankara Police Force. Even though the show usually focuses on murders and other crimes that happens on a weekly basis, the undertone of the story leads to an eventual duel between Behzat Ç. and the rotten department officials and bureaucrats.    Turkish    Turkey    N/A    2016-04-20 14:33:36.137215    2016-04-28 12:12:31.326096    1.15    MV5BMjI0MDM1MDcxMF5BMl5BanBnXkFtZTgwNDcyMjI1NjE_._V1_SX300.jpg    image/jpeg    31084    2016-04-28 12:12:31.192976
886    tt0098833    Jeeves and Wooster    1990–1993    55 min    1990-04-22    {N/A}    {N/A}    8.59999999999999964    8    \N    This series chronicles the misadventures (romantic and otherwise) of the impeccably dressed Bertie Wooster and his trusty and sagacious valet, Jeeves. Peppered with sporting dialogue and memorable, dim-witted and eccentric characters.    English    UK    2 wins & 3 nominations.    2016-04-20 14:33:34.164504    2016-04-28 12:12:31.889789    2.67    MV5BMTY4Mjg2NTgwNV5BMl5BanBnXkFtZTYwMDk1MTg4._V1._CR30_10_278_408_SY132_CR0_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    4652    2016-04-28 12:12:31.783634
905    tt0185133    Yu Yu Hakusho: Ghost Files    1992–2005    24 min    1992-10-10    {N/A}    {"Yoshihiro Togashi"}    8.5    6    \N    One day, 14-year-old Yusuke Urameshi suddenly finds himself dead, having died pushing a child out of the way of oncoming traffic. Since he has such a bad personality, even the Spirit World was caught by surprise that he would sacrifice himself. Yusuke soon finds out he wasn't supposed to die and has a chance for resurrection and bringing his body back to life. After being resurrected, Yusuke becomes a Spirit Detective, along with his comrades, and one adventure after another happens, whether it be an investigation or a fighting tournament.    Japanese, English    Japan    N/A    2016-04-20 14:33:39.763606    2016-04-28 12:12:32.480114    3.86    MV5BNTMwNTExNDQ1OV5BMl5BanBnXkFtZTcwNjY3MDE0MQ__._V1._CR20_27_310_441_SY132_CR2_0_89_132_AL_.jpg_V1_SX300.jpg    image/jpeg    5605    2016-04-28 12:12:32.343578
913    tt1526318    Borgen    2010–    58 min    2011-10-29    {N/A}    {"Adam Price"}    8.5    10    \N    A political drama about a prime minister's rise to power, and how power changes a prime minister.    Danish    Denmark    8 wins & 5 nominations.    2016-04-20 14:33:44.000068    2016-04-28 12:12:33.096947    4.97    MV5BMTMwNTgyMzA2NV5BMl5BanBnXkFtZTcwMDE0MzY3Mw__._V1_SX300.jpg    image/jpeg    8151    2016-04-28 12:12:32.985674
944    tt2249364    Broadchurch    2013–    48 min    2013-08-07    {N/A}    {"Chris Chibnall"}    8.40000000000000036    37    \N    A seemingly calm and friendly seaside town becomes a town wrapped in secrets when the death of an eleven year old boy sparks an unwanted media frenzy. As the town's locals start to open up about what they do and don't know, it falls upon the police to catch the supposed killer.    English    UK    19 wins & 18 nominations.    2016-04-20 14:33:59.832798    2016-04-28 12:12:34.719989    1.41    MV5BMTk4MTk3MjIwNF5BMl5BanBnXkFtZTcwOTM2MDU1OQ__._V1_SX300.jpg    image/jpeg    34067    2016-04-28 12:12:34.539006
927    tt1229822    Jane Eyre    2011    120 min    2011-04-22    {"Cary Joji Fukunaga"}    {"Charlotte Brontë (novel)","Moira Buffini (screenplay)"}    7.40000000000000036    60    \N    After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meets the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?    English, French    UK, USA    Nominated for 1 Oscar. Another 8 wins & 14 nominations.    2016-04-20 14:33:50.762066    2016-04-28 12:12:35.417923    1.29    MV5BNjU0Mjc0NzU3NF5BMl5BanBnXkFtZTcwMTU4OTkwNA__._V1_SX300.jpg    image/jpeg    17027    2016-04-28 12:12:35.28777
928    tt0054533    The Dick Van Dyke Show    1961–1966    30 min    1961-10-03    {N/A}    {"Carl Reiner"}    8.40000000000000036    5    \N    Rob, Buddy and Sally write for the Alan Brady TV show under the thumb of Brady's brother-in-law Mel. Rob and Laura live in new Rochelle next-door to Jerry and Millie.    English    USA    Won 2 Golden Globes. Another 25 wins & 22 nominations.    2016-04-20 14:33:51.151405    2016-04-28 12:12:36.42779    4.3    MV5BMTY0ODUzMDkwM15BMl5BanBnXkFtZTcwNTI1ODUyMQ__._V1_SX300.jpg    image/jpeg    37520    2016-04-28 12:12:36.292424
948    tt0235923    Invader ZIM    2001–2003    30 min    2001-03-30    {N/A}    {"Jhonen Vasquez"}    8.40000000000000036    14    \N    Invader ZIM is an eccentric alien soldier from the planet Irk. He was banished from the Irken Empire after nearly destroying his home planet on an early mission. After begging his superiors, the Almighty Tallest Red and Purple, for another chance, they decide to get rid of him once and for all. They trick him into going on a "secret mission" to an obscure planet at the edge of the universe, a planet with the unlikely name of Earth. Their trick works, and now ZIM is intent on bringing down the human race. He disguises himself as a schoolboy, and now the only person who can stop him is one kid - Dib Membrane, a somewhat insane paranormal researcher, who sees straight through ZIM's disguise and is intent on stopping his reign of terror. But neither ZIM nor Dib is very good at their job, and what results is everything imaginable, from a giant hamster destroying the city to both ZIM and Dib being turned into bologna meat.    English    USA    Won 1 Primetime Emmy. Another 2 wins & 7 nominations.    2016-04-20 14:34:03.42536    2016-04-28 12:12:38.091981    3.96    MV5BMTMxMjYzMDg3OV5BMl5BanBnXkFtZTcwNjA5MzI0MQ__._V1_SX300.jpg    image/jpeg    38729    2016-04-28 12:12:37.952804
959    tt1839578    Person of Interest    2011–    43 min    2011-09-22    {N/A}    {"Jonathan Nolan"}    8.40000000000000036    115    \N    A billionaire software-genius named Harold Finch creates a Machine for the government that is designed to detect acts of terror before they can happen, by monitoring the entire world through every cell-phone, email and surveillance camera. Finch discovered that the machine sees everything, potential terrorist acts and violent crimes that involve ordinary people. When the government considered violent crimes between normal people "irrelevant", Finch built a back door into the system that gives him the social security number of a person involved in a future violent crime so he could act. Partnered with John Reese, an ex-CIA agent, the two work in secret to prevent violent crimes before they can happen. Eventually their activities lead to being hunted by the New York Police Department, CIA Agents in pursuit of Reese who was listed as dead, a computer hacker named Root who wants access to the Machine, and government officials who want to keep all knowledge of the Machine a complete secret.    English    USA    Nominated for 1 Primetime Emmy. Another 7 wins & 15 nominations.    2016-04-20 14:34:12.843272    2016-04-28 12:12:38.873486    2.99    MV5BMTcyODc4OTU1N15BMl5BanBnXkFtZTcwODAwMjYyOQ__._V1_SX300.jpg    image/jpeg    26509    2016-04-28 12:12:38.739111
961    tt0462465    Outlander    2008    115 min    2008-07-11    {"Howard McCain"}    {"Dirk Blackman","Howard McCain"}    6.29999999999999982    62    \N    In 709 AD, in the Iron Age, a spacecraft crashes in the Viking kingdom of Herot, Norway, and the pilot Kainan survives. He turns the beacon on; learns the language and culture of the planet using a machine; and finds that the predator, Moorwen, that he was transporting, had escaped. While chasing the alien monster, he finds a village completely destroyed and is arrested by the warrior Wulfric, believing that he killed the locals - Kainan is brought to Herot as a prisoner.    English, Norse,  Old, Latin    USA, Germany, France    1 nomination.    2016-04-20 14:34:13.888987    2016-04-28 12:12:39.713122    2.93    MV5BMzM3NzU3OTc0Nl5BMl5BanBnXkFtZTcwNzIwNDI4OA__._V1_SX300.jpg    image/jpeg    35649    2016-04-28 12:12:39.571169
\.


--
-- Data for Name: rentals; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.rentals (id, customer_id, movie_id, created_at, updated_at) FROM stdin;
6398    14988    704    2014-09-25 20:34:10    2014-09-25 20:34:10
6399    10139    645    2016-04-12 00:49:30    2016-04-12 00:49:30
6400    19845    471    2015-09-17 08:29:21    2015-09-17 08:29:21
6401    19861    540    2014-01-25 11:20:17    2014-01-25 11:20:17
6402    10561    848    2016-02-20 09:07:46    2016-02-20 09:07:46
6403    18696    502    2014-02-27 21:26:22    2014-02-27 21:26:22
6404    10907    829    2015-06-14 06:00:42    2015-06-14 06:00:42
6405    18994    580    2014-03-06 23:28:44    2014-03-06 23:28:44
6406    18878    906    2014-09-25 16:54:16    2014-09-25 16:54:16
6407    16116    878    2015-12-31 13:03:00    2015-12-31 13:03:00
6408    16179    817    2014-05-04 19:09:31    2014-05-04 19:09:31
6409    14791    523    2015-07-04 02:03:22    2015-07-04 02:03:22
6410    10473    892    2016-03-20 19:14:13    2016-03-20 19:14:13
6411    11493    645    2014-03-17 07:19:18    2014-03-17 07:19:18
6412    11938    785    2013-05-31 00:01:38    2013-05-31 00:01:38
6413    18800    513    2014-09-09 11:49:42    2014-09-09 11:49:42
6414    11530    827    2014-02-25 14:54:49    2014-02-25 14:54:49
6415    13291    879    2014-12-05 17:26:19    2014-12-05 17:26:19
6416    17419    619    2014-09-30 17:37:22    2014-09-30 17:37:22
6417    12214    529    2013-07-09 21:57:38    2013-07-09 21:57:38
6418    13907    883    2014-04-28 15:34:37    2014-04-28 15:34:37
6419    15151    797    2015-04-29 03:35:54    2015-04-29 03:35:54
6420    10492    776    2014-08-08 14:19:56    2014-08-08 14:19:56
6421    17946    706    2015-03-20 04:59:45    2015-03-20 04:59:45
6422    13837    957    2015-03-13 14:12:57    2015-03-13 14:12:57
6423    13561    788    2013-12-23 13:37:40    2013-12-23 13:37:40
6424    16535    845    2015-01-22 21:09:03    2015-01-22 21:09:03
6425    10351    609    2014-07-15 16:59:41    2014-07-15 16:59:41
6426    19090    655    2014-06-18 09:14:18    2014-06-18 09:14:18
6427    14245    741    2014-11-09 09:42:08    2014-11-09 09:42:08
6428    17117    581    2014-09-05 12:34:00    2014-09-05 12:34:00
6429    13034    837    2015-05-13 02:53:25    2015-05-13 02:53:25
6430    18339    479    2014-08-15 21:32:55    2014-08-15 21:32:55
6431    11620    643    2015-06-09 00:18:13    2015-06-09 00:18:13
6432    10791    784    2015-03-25 06:30:40    2015-03-25 06:30:40
6433    10504    881    2013-06-21 10:10:20    2013-06-21 10:10:20
6434    11972    955    2015-04-16 06:18:38    2015-04-16 06:18:38
6435    19748    713    2014-06-11 08:56:26    2014-06-11 08:56:26
6436    12951    623    2015-09-22 13:44:57    2015-09-22 13:44:57
6437    18863    824    2014-01-06 15:46:20    2014-01-06 15:46:20
6438    11187    836    2015-02-19 23:46:32    2015-02-19 23:46:32
6439    19686    592    2013-10-02 01:54:04    2013-10-02 01:54:04
6440    19020    538    2013-12-20 10:10:29    2013-12-20 10:10:29
6441    16527    631    2014-06-03 11:08:51    2014-06-03 11:08:51
6442    16733    946    2015-01-17 14:16:07    2015-01-17 14:16:07
6443    11538    520    2015-12-10 03:25:01    2015-12-10 03:25:01
6444    14574    833    2013-06-17 11:01:10    2013-06-17 11:01:10
6445    19963    610    2014-09-05 23:30:11    2014-09-05 23:30:11
6446    17314    945    2014-01-03 08:42:39    2014-01-03 08:42:39
6447    19601    675    2013-08-01 12:57:29    2013-08-01 12:57:29
6448    16205    756    2015-07-18 21:22:16    2015-07-18 21:22:16
6449    13688    877    2016-04-19 09:25:14    2016-04-19 09:25:14
6450    18817    624    2013-05-23 18:49:10    2013-05-23 18:49:10
6451    11623    700    2016-03-19 06:51:25    2016-03-19 06:51:25
6452    15907    766    2015-07-16 02:49:02    2015-07-16 02:49:02
6453    15356    947    2015-03-07 10:51:05    2015-03-07 10:51:05
6454    12415    728    2016-01-27 10:45:33    2016-01-27 10:45:33
6455    12936    720    2015-06-28 15:45:13    2015-06-28 15:45:13
6456    18676    694    2015-03-08 20:57:51    2015-03-08 20:57:51
6457    17369    649    2014-05-02 05:37:12    2014-05-02 05:37:12
6458    13645    673    2015-02-10 14:08:41    2015-02-10 14:08:41
6459    16337    914    2015-08-18 15:15:32    2015-08-18 15:15:32
6460    18343    733    2014-07-30 04:45:14    2014-07-30 04:45:14
6461    10430    769    2015-01-31 20:19:11    2015-01-31 20:19:11
6462    17625    504    2014-12-04 21:28:40    2014-12-04 21:28:40
6463    10328    873    2016-04-13 17:42:35    2016-04-13 17:42:35
6464    12356    852    2013-12-14 10:10:48    2013-12-14 10:10:48
6465    14088    958    2016-02-01 10:35:13    2016-02-01 10:35:13
6466    11320    811    2015-09-10 00:01:45    2015-09-10 00:01:45
6467    10168    666    2014-01-27 15:09:34    2014-01-27 15:09:34
6468    10022    571    2015-08-27 18:35:00    2015-08-27 18:35:00
6469    15193    474    2014-08-08 16:36:50    2014-08-08 16:36:50
6470    14524    903    2014-07-18 17:33:16    2014-07-18 17:33:16
6471    16527    883    2015-10-03 00:00:18    2015-10-03 00:00:18
6472    19679    675    2013-06-21 18:23:57    2013-06-21 18:23:57
6473    16184    623    2014-11-16 04:44:44    2014-11-16 04:44:44
6474    11839    490    2015-02-11 07:34:39    2015-02-11 07:34:39
6475    10761    905    2014-04-09 13:23:33    2014-04-09 13:23:33
6476    19967    468    2015-03-11 02:40:34    2015-03-11 02:40:34
6477    18458    868    2014-08-04 16:26:20    2014-08-04 16:26:20
6478    10541    925    2015-06-26 02:10:24    2015-06-26 02:10:24
6479    17831    772    2014-11-18 10:46:56    2014-11-18 10:46:56
6480    16299    743    2014-05-06 00:10:36    2014-05-06 00:10:36
6481    17704    530    2014-09-17 20:29:51    2014-09-17 20:29:51
6482    13211    871    2013-11-09 03:56:24    2013-11-09 03:56:24
6483    18821    721    2014-09-09 18:32:11    2014-09-09 18:32:11
6484    11336    464    2015-02-02 21:25:33    2015-02-02 21:25:33
6485    19625    833    2013-09-07 11:24:12    2013-09-07 11:24:12
6486    17127    905    2014-11-09 04:09:48    2014-11-09 04:09:48
6487    16758    795    2013-12-15 00:46:56    2013-12-15 00:46:56
6488    12827    599    2015-04-09 18:27:50    2015-04-09 18:27:50
6489    17558    754    2014-09-12 17:02:51    2014-09-12 17:02:51
6490    19948    594    2015-12-06 21:20:36    2015-12-06 21:20:36
6491    16440    769    2014-12-11 22:51:41    2014-12-11 22:51:41
6492    18831    763    2015-09-21 20:21:21    2015-09-21 20:21:21
6493    13781    944    2016-03-11 01:48:25    2016-03-11 01:48:25
6494    16470    751    2014-10-05 02:17:07    2014-10-05 02:17:07
6495    14745    553    2015-03-03 23:54:36    2015-03-03 23:54:36
6496    11806    466    2015-07-17 07:40:03    2015-07-17 07:40:03
6497    19874    785    2015-01-20 15:36:19    2015-01-20 15:36:19
6498    19494    499    2015-06-09 09:28:37    2015-06-09 09:28:37
6499    13086    650    2014-07-14 11:54:09    2014-07-14 11:54:09
6500    12521    867    2015-03-10 16:50:44    2015-03-10 16:50:44
6501    17657    513    2014-01-07 19:04:36    2014-01-07 19:04:36
6502    17924    885    2015-10-17 04:29:57    2015-10-17 04:29:57
6503    12475    829    2014-01-18 02:34:34    2014-01-18 02:34:34
6504    11644    773    2015-10-05 09:35:33    2015-10-05 09:35:33
6505    19591    540    2014-10-12 16:47:55    2014-10-12 16:47:55
6506    14737    934    2015-12-19 17:57:14    2015-12-19 17:57:14
6507    19397    538    2013-05-05 02:14:21    2013-05-05 02:14:21
6508    16156    867    2016-01-14 00:27:47    2016-01-14 00:27:47
6509    10570    892    2014-01-26 14:19:42    2014-01-26 14:19:42
6510    13998    478    2015-03-15 02:41:29    2015-03-15 02:41:29
6511    16848    526    2015-09-22 05:33:18    2015-09-22 05:33:18
6512    17838    957    2015-12-14 18:53:36    2015-12-14 18:53:36
6513    10330    565    2014-07-19 11:32:42    2014-07-19 11:32:42
6514    13662    837    2013-08-05 11:57:10    2013-08-05 11:57:10
6515    12746    802    2015-04-08 10:00:50    2015-04-08 10:00:50
6516    16880    638    2013-11-06 08:21:02    2013-11-06 08:21:02
6517    18085    898    2015-07-06 00:52:25    2015-07-06 00:52:25
6518    12671    708    2014-02-10 10:06:32    2014-02-10 10:06:32
6519    10579    881    2014-01-18 22:11:57    2014-01-18 22:11:57
6520    16587    816    2015-06-27 03:54:34    2015-06-27 03:54:34
6521    17443    489    2016-01-02 14:20:28    2016-01-02 14:20:28
6522    12834    584    2013-09-30 19:08:08    2013-09-30 19:08:08
6523    13962    665    2015-11-25 04:00:49    2015-11-25 04:00:49
6524    17923    626    2015-05-19 20:08:17    2015-05-19 20:08:17
6525    19728    887    2015-01-21 23:43:36    2015-01-21 23:43:36
6526    18156    491    2014-10-10 06:10:41    2014-10-10 06:10:41
6527    16912    749    2015-08-10 09:33:19    2015-08-10 09:33:19
6528    10370    813    2016-03-19 03:55:38    2016-03-19 03:55:38
6529    14789    494    2014-02-03 18:59:25    2014-02-03 18:59:25
6530    17802    892    2015-12-14 02:20:36    2015-12-14 02:20:36
6531    11077    900    2013-10-03 20:24:38    2013-10-03 20:24:38
6532    10603    679    2016-03-13 17:03:14    2016-03-13 17:03:14
6533    19620    823    2014-02-15 00:38:04    2014-02-15 00:38:04
6534    17244    689    2014-10-26 05:50:54    2014-10-26 05:50:54
6535    19752    471    2013-07-19 13:31:16    2013-07-19 13:31:16
6536    16247    767    2015-07-06 23:40:28    2015-07-06 23:40:28
6537    19662    560    2015-05-25 13:19:38    2015-05-25 13:19:38
6538    11970    930    2014-03-19 14:38:12    2014-03-19 14:38:12
6539    11431    686    2014-07-23 13:22:08    2014-07-23 13:22:08
6540    13177    748    2015-04-09 15:10:03    2015-04-09 15:10:03
6541    16139    848    2014-07-21 08:08:35    2014-07-21 08:08:35
6542    12869    934    2013-06-25 23:09:46    2013-06-25 23:09:46
6543    17599    724    2013-04-30 22:25:53    2013-04-30 22:25:53
6544    13616    484    2015-08-06 05:22:48    2015-08-06 05:22:48
6545    18181    559    2015-07-16 17:29:48    2015-07-16 17:29:48
6546    12151    692    2014-05-23 14:08:25    2014-05-23 14:08:25
6547    17114    614    2015-03-25 11:11:25    2015-03-25 11:11:25
6548    12283    927    2015-07-21 01:14:28    2015-07-21 01:14:28
6549    12757    567    2015-11-10 16:32:46    2015-11-10 16:32:46
6550    19492    811    2015-02-01 03:15:15    2015-02-01 03:15:15
6551    16333    541    2014-02-17 02:25:45    2014-02-17 02:25:45
6552    19661    498    2016-01-13 13:42:43    2016-01-13 13:42:43
6553    17284    503    2014-11-07 17:57:08    2014-11-07 17:57:08
6554    13452    522    2013-12-22 10:03:42    2013-12-22 10:03:42
6555    13856    737    2013-12-07 03:02:00    2013-12-07 03:02:00
6556    16748    718    2015-04-02 00:59:53    2015-04-02 00:59:53
6557    12176    463    2015-01-09 05:52:12    2015-01-09 05:52:12
6558    17522    651    2014-01-21 12:01:10    2014-01-21 12:01:10
6559    16809    824    2014-01-25 04:29:57    2014-01-25 04:29:57
6560    19786    948    2014-02-24 08:42:25    2014-02-24 08:42:25
6561    16657    896    2015-10-05 11:52:25    2015-10-05 11:52:25
6562    12540    496    2015-01-09 00:09:59    2015-01-09 00:09:59
6563    17629    698    2014-01-22 13:17:56    2014-01-22 13:17:56
6564    12743    494    2014-11-14 07:01:54    2014-11-14 07:01:54
6565    14055    584    2013-09-28 00:38:03    2013-09-28 00:38:03
6566    12502    929    2015-05-24 02:35:49    2015-05-24 02:35:49
6567    14304    589    2014-07-10 08:59:06    2014-07-10 08:59:06
6568    12508    503    2014-12-04 08:39:54    2014-12-04 08:39:54
6569    18633    820    2016-01-02 07:52:17    2016-01-02 07:52:17
6570    13041    589    2015-11-11 00:29:42    2015-11-11 00:29:42
6571    15081    711    2015-12-16 20:56:30    2015-12-16 20:56:30
6572    19627    515    2015-06-13 16:59:04    2015-06-13 16:59:04
6573    19899    790    2014-07-16 06:36:28    2014-07-16 06:36:28
6574    14252    801    2015-11-23 23:33:29    2015-11-23 23:33:29
6575    19912    717    2013-09-26 19:31:16    2013-09-26 19:31:16
6576    13918    797    2016-03-29 23:57:12    2016-03-29 23:57:12
6577    10692    762    2015-11-11 13:03:25    2015-11-11 13:03:25
6578    19140    802    2015-04-03 07:08:43    2015-04-03 07:08:43
6579    10235    524    2015-02-20 13:03:17    2015-02-20 13:03:17
6580    12613    738    2015-02-10 13:43:53    2015-02-10 13:43:53
6581    13046    938    2014-10-17 02:54:56    2014-10-17 02:54:56
6582    14303    529    2013-05-13 18:17:09    2013-05-13 18:17:09
6583    12932    945    2015-07-16 05:16:32    2015-07-16 05:16:32
6584    13783    895    2013-06-26 16:16:09    2013-06-26 16:16:09
6585    17850    705    2016-01-21 09:39:04    2016-01-21 09:39:04
6586    17209    737    2015-06-11 09:24:46    2015-06-11 09:24:46
6587    18966    882    2015-05-05 13:07:10    2015-05-05 13:07:10
6588    13146    593    2014-10-03 02:40:32    2014-10-03 02:40:32
6589    10036    703    2013-06-06 21:04:40    2013-06-06 21:04:40
6590    13606    539    2014-09-29 09:45:10    2014-09-29 09:45:10
6591    15002    479    2016-04-09 21:50:48    2016-04-09 21:50:48
6592    11940    825    2015-11-01 20:28:51    2015-11-01 20:28:51
6593    12240    507    2013-08-21 17:41:58    2013-08-21 17:41:58
6594    16254    953    2013-07-17 18:31:00    2013-07-17 18:31:00
6595    14813    632    2015-02-23 06:42:39    2015-02-23 06:42:39
6596    12236    823    2013-12-13 08:52:32    2013-12-13 08:52:32
6597    11478    618    2015-02-21 14:05:21    2015-02-21 14:05:21
6598    15173    775    2013-11-08 00:54:02    2013-11-08 00:54:02
6599    12181    580    2014-03-25 03:01:42    2014-03-25 03:01:42
6600    12562    618    2014-09-30 10:41:32    2014-09-30 10:41:32
6601    13924    635    2015-04-22 17:45:24    2015-04-22 17:45:24
6602    15757    511    2014-03-14 08:58:22    2014-03-14 08:58:22
6603    14324    573    2013-10-18 00:17:50    2013-10-18 00:17:50
6604    12761    655    2014-02-19 05:34:02    2014-02-19 05:34:02
6605    10680    936    2013-08-20 12:53:20    2013-08-20 12:53:20
6606    11220    911    2014-02-17 01:52:15    2014-02-17 01:52:15
6607    17140    500    2015-09-10 02:02:00    2015-09-10 02:02:00
6608    15883    708    2015-05-30 02:04:38    2015-05-30 02:04:38
6609    13041    878    2015-04-29 06:37:24    2015-04-29 06:37:24
6610    18609    915    2014-11-02 16:11:56    2014-11-02 16:11:56
6611    15308    561    2013-09-17 16:15:23    2013-09-17 16:15:23
6612    15835    927    2015-09-08 09:15:05    2015-09-08 09:15:05
6613    19194    545    2016-04-13 08:22:04    2016-04-13 08:22:04
6614    16422    596    2015-12-17 07:44:42    2015-12-17 07:44:42
6615    10465    770    2015-01-31 22:53:45    2015-01-31 22:53:45
6616    15458    543    2015-06-17 22:40:58    2015-06-17 22:40:58
6617    11643    906    2014-02-09 02:37:09    2014-02-09 02:37:09
6618    14499    724    2015-08-15 01:01:19    2015-08-15 01:01:19
6619    17294    663    2014-03-13 16:00:53    2014-03-13 16:00:53
6620    18647    868    2016-04-19 03:02:31    2016-04-19 03:02:31
6621    11456    782    2013-10-26 16:01:15    2013-10-26 16:01:15
6622    16391    670    2014-03-24 08:50:26    2014-03-24 08:50:26
6623    18812    562    2015-03-27 23:54:39    2015-03-27 23:54:39
6624    10192    469    2015-12-17 05:27:26    2015-12-17 05:27:26
6625    10023    521    2013-09-07 23:19:45    2013-09-07 23:19:45
6626    19038    603    2014-03-21 00:37:51    2014-03-21 00:37:51
6627    17896    563    2014-03-25 20:39:27    2014-03-25 20:39:27
6628    17378    525    2013-08-15 06:38:56    2013-08-15 06:38:56
6629    13657    687    2013-05-13 01:39:33    2013-05-13 01:39:33
6630    19451    788    2013-04-30 14:36:42    2013-04-30 14:36:42
6631    10840    882    2015-04-03 07:45:21    2015-04-03 07:45:21
6632    17972    500    2014-05-09 14:39:30    2014-05-09 14:39:30
6633    14183    497    2015-07-04 14:10:09    2015-07-04 14:10:09
6634    12712    512    2013-08-13 07:37:01    2013-08-13 07:37:01
6635    10547    783    2014-03-05 15:46:56    2014-03-05 15:46:56
6636    13503    956    2015-06-12 07:27:50    2015-06-12 07:27:50
6637    19161    771    2015-06-01 06:58:06    2015-06-01 06:58:06
6638    15023    525    2014-12-04 20:09:49    2014-12-04 20:09:49
6639    13778    798    2014-01-21 17:06:00    2014-01-21 17:06:00
6640    14106    679    2014-01-19 01:53:56    2014-01-19 01:53:56
6641    14520    671    2014-07-04 11:09:50    2014-07-04 11:09:50
6642    16620    847    2014-11-18 19:01:25    2014-11-18 19:01:25
6643    17332    851    2013-11-25 11:42:33    2013-11-25 11:42:33
6644    14458    680    2016-02-25 05:17:24    2016-02-25 05:17:24
6645    17652    950    2015-02-14 03:13:54    2015-02-14 03:13:54
6646    11427    687    2015-05-24 10:47:00    2015-05-24 10:47:00
6647    19919    703    2015-09-15 09:20:53    2015-09-15 09:20:53
6648    15368    773    2015-09-21 07:08:39    2015-09-21 07:08:39
6649    15125    558    2014-06-17 21:18:51    2014-06-17 21:18:51
6650    15205    815    2015-05-08 07:05:28    2015-05-08 07:05:28
6651    13987    700    2014-06-04 21:43:05    2014-06-04 21:43:05
6652    10715    637    2014-06-10 09:37:54    2014-06-10 09:37:54
6653    16777    913    2014-05-17 15:15:13    2014-05-17 15:15:13
6654    19028    510    2014-02-08 07:37:14    2014-02-08 07:37:14
6655    19186    474    2016-02-21 11:05:08    2016-02-21 11:05:08
6656    12161    909    2015-05-15 06:37:44    2015-05-15 06:37:44
6657    12657    505    2015-06-29 00:50:16    2015-06-29 00:50:16
6658    16919    850    2014-08-24 01:28:30    2014-08-24 01:28:30
6659    14510    648    2015-11-04 16:54:18    2015-11-04 16:54:18
6660    18236    823    2015-12-18 04:18:40    2015-12-18 04:18:40
6661    12678    612    2014-12-11 13:42:24    2014-12-11 13:42:24
6662    11268    734    2013-08-18 11:02:28    2013-08-18 11:02:28
6663    11282    618    2015-05-23 01:23:36    2015-05-23 01:23:36
6664    17115    569    2015-06-13 15:26:17    2015-06-13 15:26:17
6665    18425    497    2016-02-22 00:15:23    2016-02-22 00:15:23
6666    13727    901    2014-04-09 21:36:36    2014-04-09 21:36:36
6667    16808    865    2015-07-28 20:52:23    2015-07-28 20:52:23
6668    17769    737    2014-11-03 01:44:47    2014-11-03 01:44:47
6669    10833    719    2015-12-04 18:46:51    2015-12-04 18:46:51
6670    10011    743    2015-05-06 00:41:11    2015-05-06 00:41:11
6671    13716    854    2015-02-19 23:01:53    2015-02-19 23:01:53
6672    12939    687    2014-10-27 19:56:34    2014-10-27 19:56:34
6673    17432    707    2016-01-02 13:10:44    2016-01-02 13:10:44
6674    12409    606    2014-01-16 03:59:06    2014-01-16 03:59:06
6675    10647    872    2016-01-04 17:56:47    2016-01-04 17:56:47
6676    19358    942    2015-01-04 01:56:00    2015-01-04 01:56:00
6677    10699    690    2013-07-19 16:07:02    2013-07-19 16:07:02
6678    18727    544    2015-09-25 20:29:19    2015-09-25 20:29:19
6679    13951    678    2015-07-17 03:48:28    2015-07-17 03:48:28
6680    16559    647    2015-09-20 04:16:38    2015-09-20 04:16:38
6681    16028    681    2013-09-10 06:25:21    2013-09-10 06:25:21
6682    15332    735    2015-02-16 14:30:43    2015-02-16 14:30:43
6683    15307    813    2015-11-23 15:43:27    2015-11-23 15:43:27
6684    11638    800    2015-04-11 21:31:00    2015-04-11 21:31:00
6685    12369    927    2013-07-16 13:58:19    2013-07-16 13:58:19
6686    16188    777    2014-09-12 03:10:50    2014-09-12 03:10:50
6687    14796    567    2013-08-26 04:20:20    2013-08-26 04:20:20
6688    19031    692    2013-07-30 10:09:16    2013-07-30 10:09:16
6689    18225    782    2015-12-26 20:09:57    2015-12-26 20:09:57
6690    10390    747    2014-12-22 19:21:59    2014-12-22 19:21:59
6691    19508    674    2015-01-25 04:21:49    2015-01-25 04:21:49
6692    14287    785    2015-03-25 15:49:12    2015-03-25 15:49:12
6693    14736    682    2015-07-17 16:29:08    2015-07-17 16:29:08
6694    10856    904    2015-02-07 18:00:52    2015-02-07 18:00:52
6695    15614    912    2013-08-04 03:36:41    2013-08-04 03:36:41
6696    17110    479    2015-06-26 03:10:11    2015-06-26 03:10:11
6697    12939    921    2014-03-07 09:18:44    2014-03-07 09:18:44
6698    11691    936    2013-09-11 02:03:54    2013-09-11 02:03:54
6699    13762    955    2015-02-03 19:27:38    2015-02-03 19:27:38
6700    12001    832    2014-05-31 13:41:56    2014-05-31 13:41:56
6701    19114    730    2013-05-24 09:24:55    2013-05-24 09:24:55
6702    13528    910    2013-10-21 18:11:41    2013-10-21 18:11:41
6703    19028    480    2013-09-01 19:38:47    2013-09-01 19:38:47
6704    10373    646    2016-01-03 11:20:57    2016-01-03 11:20:57
6705    15773    556    2015-10-17 09:06:24    2015-10-17 09:06:24
6706    12775    827    2013-07-08 15:10:03    2013-07-08 15:10:03
6707    19821    719    2015-03-28 17:20:43    2015-03-28 17:20:43
6708    11527    608    2013-10-09 12:03:23    2013-10-09 12:03:23
6709    17757    710    2013-11-12 19:29:26    2013-11-12 19:29:26
6710    16479    675    2014-11-16 10:39:52    2014-11-16 10:39:52
6711    14961    932    2015-05-19 10:15:34    2015-05-19 10:15:34
6712    19718    875    2014-02-27 08:09:09    2014-02-27 08:09:09
6713    16009    945    2016-02-12 08:44:47    2016-02-12 08:44:47
6714    12542    899    2013-10-06 06:11:19    2013-10-06 06:11:19
6715    16105    748    2016-02-19 09:17:03    2016-02-19 09:17:03
6716    18004    838    2015-12-08 15:35:23    2015-12-08 15:35:23
6717    13491    515    2016-03-23 09:24:41    2016-03-23 09:24:41
6718    12728    524    2015-05-22 09:04:48    2015-05-22 09:04:48
6719    12431    808    2013-10-17 07:11:48    2013-10-17 07:11:48
6720    12330    841    2015-04-28 07:29:48    2015-04-28 07:29:48
6721    13589    883    2014-07-09 01:45:10    2014-07-09 01:45:10
6722    17228    800    2014-03-31 16:15:38    2014-03-31 16:15:38
6723    19888    582    2015-11-18 23:46:39    2015-11-18 23:46:39
6724    19755    665    2015-06-18 13:43:47    2015-06-18 13:43:47
6725    17405    869    2014-08-20 11:48:54    2014-08-20 11:48:54
6726    11856    626    2015-12-20 19:10:08    2015-12-20 19:10:08
6727    18056    738    2015-05-26 10:12:11    2015-05-26 10:12:11
6728    13391    610    2014-04-11 01:48:38    2014-04-11 01:48:38
6729    13495    521    2015-06-17 21:54:55    2015-06-17 21:54:55
6730    11331    718    2015-03-06 01:29:19    2015-03-06 01:29:19
6731    16060    903    2014-06-12 03:10:59    2014-06-12 03:10:59
6732    15740    517    2014-07-15 20:41:47    2014-07-15 20:41:47
6733    15809    779    2013-11-25 06:11:10    2013-11-25 06:11:10
6734    17543    847    2013-09-21 09:28:29    2013-09-21 09:28:29
6735    18859    499    2014-08-04 16:43:03    2014-08-04 16:43:03
6736    19317    573    2013-07-10 14:21:14    2013-07-10 14:21:14
6737    10589    708    2016-02-22 05:56:35    2016-02-22 05:56:35
6738    18554    602    2015-11-16 13:33:26    2015-11-16 13:33:26
6739    19540    564    2014-01-26 14:27:59    2014-01-26 14:27:59
6740    12554    848    2015-01-10 04:34:17    2015-01-10 04:34:17
6741    14532    562    2014-01-23 16:28:06    2014-01-23 16:28:06
6742    17615    657    2015-09-22 14:53:31    2015-09-22 14:53:31
6743    12979    654    2016-02-12 10:09:00    2016-02-12 10:09:00
6744    11364    499    2015-09-06 14:25:48    2015-09-06 14:25:48
6745    19125    646    2014-05-09 21:43:25    2014-05-09 21:43:25
6746    16217    855    2015-08-12 12:25:44    2015-08-12 12:25:44
6747    17749    898    2016-03-03 12:08:44    2016-03-03 12:08:44
6748    15783    805    2014-07-09 03:16:46    2014-07-09 03:16:46
6749    15890    701    2015-05-06 13:05:52    2015-05-06 13:05:52
6750    10703    746    2014-05-28 05:12:41    2014-05-28 05:12:41
6751    16302    491    2015-03-06 20:50:33    2015-03-06 20:50:33
6752    16791    475    2014-12-25 06:31:48    2014-12-25 06:31:48
6753    17159    712    2015-07-10 16:26:01    2015-07-10 16:26:01
6754    14465    479    2014-10-08 13:02:21    2014-10-08 13:02:21
6755    14713    633    2015-10-25 05:17:07    2015-10-25 05:17:07
6756    10843    479    2013-12-07 22:19:58    2013-12-07 22:19:58
6757    14945    708    2013-10-20 04:11:03    2013-10-20 04:11:03
6758    16899    719    2015-11-09 04:49:20    2015-11-09 04:49:20
6759    13273    823    2014-08-06 00:14:30    2014-08-06 00:14:30
6760    14866    770    2013-05-10 11:11:50    2013-05-10 11:11:50
6761    15607    870    2014-08-04 04:59:47    2014-08-04 04:59:47
6762    11094    955    2014-01-21 04:12:47    2014-01-21 04:12:47
6763    13226    582    2014-05-10 21:01:27    2014-05-10 21:01:27
6764    18904    603    2015-04-03 02:44:07    2015-04-03 02:44:07
6765    14230    939    2013-07-09 07:25:49    2013-07-09 07:25:49
6766    10695    596    2014-09-22 14:01:56    2014-09-22 14:01:56
6767    11578    905    2013-04-29 18:05:23    2013-04-29 18:05:23
6768    18553    616    2015-05-19 14:07:44    2015-05-19 14:07:44
6769    16464    914    2013-07-31 17:02:44    2013-07-31 17:02:44
6770    11323    475    2013-12-30 04:55:24    2013-12-30 04:55:24
6771    10722    954    2016-02-16 00:08:33    2016-02-16 00:08:33
6772    18899    569    2013-11-25 10:48:32    2013-11-25 10:48:32
6773    15290    726    2013-11-03 01:46:41    2013-11-03 01:46:41
6774    17963    863    2014-10-13 14:46:21    2014-10-13 14:46:21
6775    17096    959    2014-01-15 02:51:02    2014-01-15 02:51:02
6776    16435    504    2014-02-05 19:09:41    2014-02-05 19:09:41
6777    17154    610    2014-04-13 22:46:12    2014-04-13 22:46:12
6778    11568    913    2015-10-11 14:43:08    2015-10-11 14:43:08
6779    14024    497    2014-07-28 10:42:33    2014-07-28 10:42:33
6780    12641    496    2014-12-09 01:59:52    2014-12-09 01:59:52
6781    16453    473    2015-12-22 15:13:58    2015-12-22 15:13:58
6782    12912    742    2013-06-27 23:38:32    2013-06-27 23:38:32
6783    18719    517    2014-01-31 18:32:58    2014-01-31 18:32:58
6784    13425    781    2015-05-25 08:51:51    2015-05-25 08:51:51
6785    18717    840    2016-01-10 03:26:04    2016-01-10 03:26:04
6786    19520    742    2014-06-15 10:11:54    2014-06-15 10:11:54
6787    11632    727    2013-07-16 09:02:32    2013-07-16 09:02:32
6788    18803    802    2014-09-17 15:09:48    2014-09-17 15:09:48
6789    11865    871    2014-03-24 22:43:19    2014-03-24 22:43:19
6790    10967    878    2013-12-03 00:35:55    2013-12-03 00:35:55
6791    18114    900    2014-07-14 23:03:54    2014-07-14 23:03:54
6792    17332    606    2013-10-10 19:54:09    2013-10-10 19:54:09
6793    10101    737    2014-02-23 18:52:09    2014-02-23 18:52:09
6794    19556    726    2016-02-25 22:28:42    2016-02-25 22:28:42
6795    19923    737    2013-12-08 09:11:55    2013-12-08 09:11:55
6796    14475    640    2013-11-08 01:59:32    2013-11-08 01:59:32
6797    17202    790    2014-01-16 05:11:26    2014-01-16 05:11:26
6798    18139    752    2016-03-29 20:13:16    2016-03-29 20:13:16
6799    16987    810    2015-05-18 03:44:01    2015-05-18 03:44:01
6800    15493    556    2014-06-20 07:01:36    2014-06-20 07:01:36
6801    18257    626    2015-02-27 21:50:15    2015-02-27 21:50:15
6802    10939    624    2015-04-29 16:08:04    2015-04-29 16:08:04
6803    16677    621    2015-10-18 09:47:38    2015-10-18 09:47:38
6804    14311    520    2013-05-08 15:14:42    2013-05-08 15:14:42
6805    10027    795    2015-10-11 15:11:21    2015-10-11 15:11:21
6806    17660    915    2016-04-04 23:15:56    2016-04-04 23:15:56
6807    14441    774    2016-01-28 19:11:29    2016-01-28 19:11:29
6808    18090    623    2013-07-29 21:16:35    2013-07-29 21:16:35
6809    12433    814    2015-09-26 15:50:34    2015-09-26 15:50:34
6810    18552    553    2013-06-06 16:43:22    2013-06-06 16:43:22
6811    14698    659    2014-05-15 21:23:24    2014-05-15 21:23:24
6812    18114    490    2016-01-21 02:36:44    2016-01-21 02:36:44
6813    12746    740    2015-01-25 04:00:24    2015-01-25 04:00:24
6814    18012    535    2015-11-28 06:07:31    2015-11-28 06:07:31
6815    11602    943    2014-02-14 17:39:37    2014-02-14 17:39:37
6816    13740    706    2015-07-03 23:58:39    2015-07-03 23:58:39
6817    10563    615    2013-10-03 16:05:33    2013-10-03 16:05:33
6818    10250    523    2014-01-23 06:24:00    2014-01-23 06:24:00
6819    12401    953    2014-10-25 22:13:50    2014-10-25 22:13:50
6820    17959    882    2015-10-09 15:30:01    2015-10-09 15:30:01
6821    19143    952    2013-05-27 02:13:30    2013-05-27 02:13:30
6822    19057    682    2016-01-24 03:54:38    2016-01-24 03:54:38
6823    11992    581    2014-10-10 19:23:21    2014-10-10 19:23:21
6824    16210    861    2016-04-18 07:29:52    2016-04-18 07:29:52
6825    14351    903    2015-01-14 10:23:41    2015-01-14 10:23:41
6826    12591    652    2015-06-02 20:02:35    2015-06-02 20:02:35
6827    14310    738    2014-11-23 19:34:39    2014-11-23 19:34:39
6828    19961    916    2014-08-31 02:39:51    2014-08-31 02:39:51
6829    18764    736    2016-03-02 15:56:52    2016-03-02 15:56:52
6830    10184    843    2015-12-08 02:05:46    2015-12-08 02:05:46
6831    11889    873    2013-11-05 20:42:01    2013-11-05 20:42:01
6832    12111    922    2016-03-18 08:23:53    2016-03-18 08:23:53
6833    16902    824    2016-01-13 10:40:31    2016-01-13 10:40:31
6834    16037    487    2015-12-10 19:03:42    2015-12-10 19:03:42
6835    13049    873    2014-09-30 02:51:52    2014-09-30 02:51:52
6836    12247    750    2014-10-04 01:46:54    2014-10-04 01:46:54
6837    17920    772    2015-10-02 09:16:07    2015-10-02 09:16:07
6838    16558    772    2015-02-01 20:25:52    2015-02-01 20:25:52
6839    19354    873    2014-02-05 08:30:04    2014-02-05 08:30:04
6840    15509    572    2014-11-11 15:12:43    2014-11-11 15:12:43
6841    10741    492    2014-03-30 05:53:25    2014-03-30 05:53:25
6842    19620    715    2015-08-12 15:33:03    2015-08-12 15:33:03
6843    13186    860    2013-09-19 19:12:39    2013-09-19 19:12:39
6844    13561    773    2014-08-14 20:09:09    2014-08-14 20:09:09
6845    18159    761    2015-12-30 23:20:11    2015-12-30 23:20:11
6846    13716    518    2015-07-31 04:29:30    2015-07-31 04:29:30
6847    13182    681    2015-02-14 17:21:25    2015-02-14 17:21:25
6848    11821    493    2014-12-11 17:43:16    2014-12-11 17:43:16
6849    19348    921    2015-08-20 07:53:53    2015-08-20 07:53:53
6850    15469    487    2015-03-14 09:30:45    2015-03-14 09:30:45
6851    18112    950    2014-01-17 06:46:33    2014-01-17 06:46:33
6852    18311    841    2014-12-08 04:49:25    2014-12-08 04:49:25
6853    14731    726    2013-06-04 13:02:39    2013-06-04 13:02:39
6854    17153    482    2014-09-07 06:07:55    2014-09-07 06:07:55
6855    12793    623    2014-07-21 05:26:32    2014-07-21 05:26:32
6856    12785    770    2015-04-21 15:33:06    2015-04-21 15:33:06
6857    10142    557    2015-04-24 01:01:26    2015-04-24 01:01:26
6858    15248    608    2015-05-12 19:15:41    2015-05-12 19:15:41
6859    15130    785    2013-08-30 07:09:50    2013-08-30 07:09:50
6860    18347    923    2014-02-22 15:10:04    2014-02-22 15:10:04
6861    15513    775    2016-01-21 22:42:00    2016-01-21 22:42:00
6862    15019    884    2013-12-06 07:29:30    2013-12-06 07:29:30
6863    10668    731    2015-02-11 14:36:17    2015-02-11 14:36:17
6864    12862    870    2013-05-14 16:33:27    2013-05-14 16:33:27
6865    19527    772    2015-04-12 06:25:03    2015-04-12 06:25:03
6866    17799    757    2015-09-17 09:46:54    2015-09-17 09:46:54
6867    19593    646    2014-09-11 13:29:48    2014-09-11 13:29:48
6868    10672    497    2013-12-22 17:13:37    2013-12-22 17:13:37
6869    16214    681    2014-10-10 20:51:50    2014-10-10 20:51:50
6870    12614    908    2015-03-20 19:41:34    2015-03-20 19:41:34
6871    10500    867    2015-02-25 11:44:30    2015-02-25 11:44:30
6872    17433    825    2013-09-28 19:30:46    2013-09-28 19:30:46
6873    11105    548    2014-06-19 00:47:04    2014-06-19 00:47:04
6874    19468    711    2015-05-26 20:41:01    2015-05-26 20:41:01
6875    12303    593    2014-08-27 23:00:47    2014-08-27 23:00:47
6876    14442    601    2015-02-21 14:46:56    2015-02-21 14:46:56
6877    18902    501    2014-10-13 15:14:00    2014-10-13 15:14:00
6878    16985    874    2015-04-21 19:45:51    2015-04-21 19:45:51
6879    16275    766    2015-04-19 18:10:34    2015-04-19 18:10:34
6880    12744    474    2015-11-23 14:45:04    2015-11-23 14:45:04
6881    16760    703    2014-05-30 17:45:54    2014-05-30 17:45:54
6882    12919    710    2014-10-10 16:59:32    2014-10-10 16:59:32
6883    18634    802    2013-10-15 21:38:36    2013-10-15 21:38:36
6884    19319    893    2015-06-23 15:24:29    2015-06-23 15:24:29
6885    17300    546    2015-04-07 00:20:19    2015-04-07 00:20:19
6886    15906    574    2015-07-25 07:43:48    2015-07-25 07:43:48
6887    12325    848    2015-02-06 17:31:46    2015-02-06 17:31:46
6888    19373    545    2014-01-13 04:10:00    2014-01-13 04:10:00
6889    14910    728    2014-04-08 11:35:36    2014-04-08 11:35:36
6890    14890    585    2016-03-20 06:00:57    2016-03-20 06:00:57
6891    11771    697    2014-10-20 07:32:58    2014-10-20 07:32:58
6892    17839    655    2013-11-21 06:29:08    2013-11-21 06:29:08
6893    11245    830    2013-12-31 13:46:03    2013-12-31 13:46:03
6894    15228    484    2014-10-20 06:23:08    2014-10-20 06:23:08
6895    12148    470    2014-02-26 16:24:52    2014-02-26 16:24:52
6896    12653    722    2013-05-20 10:28:37    2013-05-20 10:28:37
6897    16722    718    2013-09-01 22:38:56    2013-09-01 22:38:56
6898    10305    487    2015-03-13 22:22:56    2015-03-13 22:22:56
6899    10827    603    2014-10-10 12:42:14    2014-10-10 12:42:14
6900    18658    730    2016-02-07 17:58:46    2016-02-07 17:58:46
6901    16656    935    2014-11-24 21:55:15    2014-11-24 21:55:15
6902    12603    526    2015-03-19 03:44:33    2015-03-19 03:44:33
6903    10745    678    2014-09-04 17:49:46    2014-09-04 17:49:46
6904    11544    728    2015-01-08 00:21:10    2015-01-08 00:21:10
6905    10807    809    2016-03-07 00:06:34    2016-03-07 00:06:34
6906    19821    873    2014-05-12 03:49:40    2014-05-12 03:49:40
6907    16560    933    2015-02-17 05:39:11    2015-02-17 05:39:11
6908    11829    546    2016-02-22 19:39:55    2016-02-22 19:39:55
6909    16944    794    2016-01-03 14:01:04    2016-01-03 14:01:04
6910    17331    818    2015-03-11 18:23:05    2015-03-11 18:23:05
6911    13588    797    2013-11-05 00:14:39    2013-11-05 00:14:39
6912    18487    491    2013-06-11 12:00:05    2013-06-11 12:00:05
6913    10779    482    2015-09-10 00:52:41    2015-09-10 00:52:41
6914    18858    469    2015-12-19 07:31:46    2015-12-19 07:31:46
6915    14036    797    2016-03-13 17:05:02    2016-03-13 17:05:02
6916    19172    622    2013-08-04 14:17:34    2013-08-04 14:17:34
6917    18521    791    2013-12-10 16:03:06    2013-12-10 16:03:06
6918    14090    601    2014-06-21 16:08:24    2014-06-21 16:08:24
6919    13287    957    2014-10-11 14:19:43    2014-10-11 14:19:43
6920    13729    518    2013-06-21 23:34:22    2013-06-21 23:34:22
6921    18543    717    2015-11-12 19:07:25    2015-11-12 19:07:25
6922    12228    550    2013-10-10 02:07:45    2013-10-10 02:07:45
6923    13266    819    2015-07-04 13:03:40    2015-07-04 13:03:40
6924    10604    725    2015-12-01 01:45:00    2015-12-01 01:45:00
6925    10697    793    2014-07-14 02:17:41    2014-07-14 02:17:41
6926    19083    816    2014-09-16 19:49:09    2014-09-16 19:49:09
6927    14340    767    2014-07-15 16:20:43    2014-07-15 16:20:43
6928    18299    558    2014-11-09 08:37:26    2014-11-09 08:37:26
6929    18949    582    2016-02-11 19:53:44    2016-02-11 19:53:44
6930    19455    851    2015-04-14 11:46:28    2015-04-14 11:46:28
6931    14598    591    2015-02-17 17:33:53    2015-02-17 17:33:53
6932    16362    769    2015-06-25 03:33:53    2015-06-25 03:33:53
6933    10534    546    2014-03-28 09:49:36    2014-03-28 09:49:36
6934    12051    550    2013-09-04 06:36:11    2013-09-04 06:36:11
6935    18696    748    2014-02-12 09:49:17    2014-02-12 09:49:17
6936    16895    734    2014-12-18 06:26:54    2014-12-18 06:26:54
6937    12438    623    2015-11-21 11:57:30    2015-11-21 11:57:30
6938    12884    961    2015-10-10 08:09:41    2015-10-10 08:09:41
6939    15997    661    2015-06-29 12:47:52    2015-06-29 12:47:52
6940    19686    704    2013-11-12 10:57:30    2013-11-12 10:57:30
6941    12499    747    2015-09-15 14:15:24    2015-09-15 14:15:24
6942    19453    789    2015-04-08 11:31:20    2015-04-08 11:31:20
6943    17511    470    2015-01-01 07:54:13    2015-01-01 07:54:13
6944    14385    698    2015-04-24 00:01:59    2015-04-24 00:01:59
6945    19706    908    2015-09-23 03:06:04    2015-09-23 03:06:04
6946    17867    940    2014-06-30 03:35:46    2014-06-30 03:35:46
6947    14028    660    2014-10-08 10:23:14    2014-10-08 10:23:14
6948    16252    771    2015-02-09 14:13:05    2015-02-09 14:13:05
6949    16025    727    2015-04-20 21:18:11    2015-04-20 21:18:11
6950    15129    532    2013-07-12 10:11:39    2013-07-12 10:11:39
6951    18736    666    2014-08-17 16:36:05    2014-08-17 16:36:05
6952    19882    543    2015-05-25 14:26:21    2015-05-25 14:26:21
6953    16978    671    2015-10-02 20:09:43    2015-10-02 20:09:43
6954    15348    704    2014-03-07 15:26:00    2014-03-07 15:26:00
6955    15558    665    2014-01-03 12:55:46    2014-01-03 12:55:46
6956    14656    778    2015-05-04 11:33:38    2015-05-04 11:33:38
6957    19502    911    2013-08-27 13:04:40    2013-08-27 13:04:40
6958    15259    586    2015-11-20 03:45:03    2015-11-20 03:45:03
6959    16868    797    2013-09-26 21:59:21    2013-09-26 21:59:21
6960    19333    822    2014-12-21 13:01:15    2014-12-21 13:01:15
6961    15432    898    2013-07-04 09:43:07    2013-07-04 09:43:07
6962    14210    890    2014-06-15 16:17:21    2014-06-15 16:17:21
6963    17221    512    2014-07-21 23:13:18    2014-07-21 23:13:18
6964    15452    676    2013-10-04 00:43:11    2013-10-04 00:43:11
6965    16142    726    2015-02-20 06:56:26    2015-02-20 06:56:26
6966    18260    742    2015-12-31 09:15:55    2015-12-31 09:15:55
6967    18084    470    2014-06-02 03:51:53    2014-06-02 03:51:53
6968    11695    938    2014-10-12 03:39:21    2014-10-12 03:39:21
6969    16443    916    2014-08-18 08:46:46    2014-08-18 08:46:46
6970    10864    823    2013-08-20 18:13:49    2013-08-20 18:13:49
6971    11986    610    2016-02-08 02:44:21    2016-02-08 02:44:21
6972    19815    890    2015-11-11 13:47:03    2015-11-11 13:47:03
6973    16213    768    2013-05-09 12:30:17    2013-05-09 12:30:17
6974    13531    853    2015-06-20 10:51:11    2015-06-20 10:51:11
6975    11876    501    2015-11-10 15:44:07    2015-11-10 15:44:07
6976    12925    707    2016-03-20 14:06:28    2016-03-20 14:06:28
6977    19170    590    2014-01-25 21:05:52    2014-01-25 21:05:52
6978    16515    901    2014-08-01 04:33:23    2014-08-01 04:33:23
6979    11072    863    2015-02-03 10:44:13    2015-02-03 10:44:13
6980    14100    848    2015-04-03 09:08:19    2015-04-03 09:08:19
6981    11160    646    2015-07-05 01:33:31    2015-07-05 01:33:31
6982    19550    637    2016-03-21 09:08:23    2016-03-21 09:08:23
6983    18852    574    2015-11-26 00:03:55    2015-11-26 00:03:55
6984    14051    703    2015-03-01 15:57:25    2015-03-01 15:57:25
6985    10602    664    2015-11-16 01:41:21    2015-11-16 01:41:21
6986    13877    726    2013-09-21 16:13:45    2013-09-21 16:13:45
6987    19061    947    2014-08-27 02:08:30    2014-08-27 02:08:30
6988    11295    841    2014-07-23 18:51:05    2014-07-23 18:51:05
6989    13255    541    2013-08-14 09:29:03    2013-08-14 09:29:03
6990    16498    602    2013-05-30 17:56:33    2013-05-30 17:56:33
6991    14733    577    2014-02-06 12:34:38    2014-02-06 12:34:38
6992    19202    518    2013-05-06 05:08:08    2013-05-06 05:08:08
6993    17087    803    2013-11-23 05:01:38    2013-11-23 05:01:38
6994    10009    889    2014-04-20 06:22:14    2014-04-20 06:22:14
6995    16456    784    2015-05-20 07:00:03    2015-05-20 07:00:03
6996    14703    562    2014-09-03 09:32:34    2014-09-03 09:32:34
6997    14342    691    2015-01-18 14:49:54    2015-01-18 14:49:54
6998    15374    781    2013-08-26 03:28:20    2013-08-26 03:28:20
6999    19054    735    2014-01-19 04:25:55    2014-01-19 04:25:55
7000    14205    911    2014-12-03 00:19:02    2014-12-03 00:19:02
7001    13963    740    2013-05-31 00:17:10    2013-05-31 00:17:10
7002    14705    550    2014-07-28 23:07:27    2014-07-28 23:07:27
7003    17410    531    2014-03-26 03:07:07    2014-03-26 03:07:07
7004    16385    763    2016-04-18 19:55:13    2016-04-18 19:55:13
7005    14711    890    2013-10-26 16:07:00    2013-10-26 16:07:00
7006    18936    888    2014-10-25 07:34:49    2014-10-25 07:34:49
7007    10424    543    2015-03-28 00:19:55    2015-03-28 00:19:55
7008    15269    724    2014-05-08 05:40:56    2014-05-08 05:40:56
7009    11779    516    2015-02-09 01:48:44    2015-02-09 01:48:44
7010    12252    684    2015-11-02 03:33:17    2015-11-02 03:33:17
7011    10182    578    2014-03-07 08:43:23    2014-03-07 08:43:23
7012    12595    501    2014-11-29 00:02:16    2014-11-29 00:02:16
7013    10444    933    2015-01-01 00:21:21    2015-01-01 00:21:21
7014    19631    598    2016-01-06 10:07:49    2016-01-06 10:07:49
7015    19023    475    2013-07-11 23:22:14    2013-07-11 23:22:14
7016    11406    463    2013-11-05 17:32:57    2013-11-05 17:32:57
7017    19007    620    2015-01-02 01:49:47    2015-01-02 01:49:47
7018    14926    713    2015-08-30 22:36:56    2015-08-30 22:36:56
7019    10009    777    2014-10-05 02:59:20    2014-10-05 02:59:20
7020    11338    818    2015-12-05 09:35:07    2015-12-05 09:35:07
7021    14921    865    2013-10-11 00:27:38    2013-10-11 00:27:38
7022    11824    539    2014-10-04 05:29:24    2014-10-04 05:29:24
7023    16075    915    2016-04-01 21:05:30    2016-04-01 21:05:30
7024    16538    847    2016-01-23 01:21:40    2016-01-23 01:21:40
7025    16565    877    2014-12-27 18:25:20    2014-12-27 18:25:20
7026    14659    797    2015-06-17 02:37:29    2015-06-17 02:37:29
7027    14302    905    2013-09-27 10:09:50    2013-09-27 10:09:50
7028    13445    718    2013-08-04 05:28:36    2013-08-04 05:28:36
7029    15488    955    2016-03-06 00:52:43    2016-03-06 00:52:43
7030    17518    572    2016-02-20 05:42:24    2016-02-20 05:42:24
7031    19412    539    2013-06-26 19:17:41    2013-06-26 19:17:41
7032    18695    869    2014-02-03 13:39:29    2014-02-03 13:39:29
7033    18583    921    2014-03-08 01:06:52    2014-03-08 01:06:52
7034    16532    547    2013-10-11 19:48:43    2013-10-11 19:48:43
7035    15454    675    2014-06-05 05:05:08    2014-06-05 05:05:08
7036    14490    904    2016-02-07 17:29:57    2016-02-07 17:29:57
7037    13661    482    2015-01-23 01:47:40    2015-01-23 01:47:40
7038    11469    863    2016-04-18 07:47:37    2016-04-18 07:47:37
7039    14822    850    2014-07-22 15:32:25    2014-07-22 15:32:25
7040    10353    629    2013-05-14 14:57:49    2013-05-14 14:57:49
7041    12302    907    2014-03-19 14:17:40    2014-03-19 14:17:40
7042    11725    600    2015-08-18 09:19:52    2015-08-18 09:19:52
7043    17043    604    2014-12-26 21:07:44    2014-12-26 21:07:44
7044    14845    556    2015-10-20 05:35:12    2015-10-20 05:35:12
7045    19139    759    2013-11-01 22:18:36    2013-11-01 22:18:36
7046    12130    494    2014-07-30 21:37:16    2014-07-30 21:37:16
7047    10453    563    2015-04-28 11:54:08    2015-04-28 11:54:08
7048    14539    954    2015-08-25 03:45:22    2015-08-25 03:45:22
7049    11953    552    2013-05-16 02:43:04    2013-05-16 02:43:04
7050    11281    703    2015-04-29 01:58:42    2015-04-29 01:58:42
7051    17241    657    2014-10-12 01:04:17    2014-10-12 01:04:17
7052    16007    602    2015-11-05 11:05:24    2015-11-05 11:05:24
7053    16698    657    2013-09-14 03:21:36    2013-09-14 03:21:36
7054    13036    522    2016-04-11 10:47:16    2016-04-11 10:47:16
7055    10235    595    2014-08-12 15:18:25    2014-08-12 15:18:25
7056    12979    929    2016-02-28 10:27:39    2016-02-28 10:27:39
7057    11165    725    2015-02-23 13:46:03    2015-02-23 13:46:03
7058    15385    591    2014-12-27 15:17:19    2014-12-27 15:17:19
7059    17352    738    2014-10-08 20:13:05    2014-10-08 20:13:05
7060    13170    538    2014-04-22 01:04:10    2014-04-22 01:04:10
7061    10479    718    2014-09-18 00:53:26    2014-09-18 00:53:26
7062    10684    612    2014-09-25 13:01:31    2014-09-25 13:01:31
7063    10518    785    2014-04-20 18:44:31    2014-04-20 18:44:31
7064    14133    925    2013-05-07 19:20:28    2013-05-07 19:20:28
7065    17459    698    2015-03-12 21:32:47    2015-03-12 21:32:47
7066    18195    706    2013-07-30 13:13:54    2013-07-30 13:13:54
7067    15535    548    2014-08-15 10:29:26    2014-08-15 10:29:26
7068    12778    896    2013-07-01 19:44:32    2013-07-01 19:44:32
7069    18823    595    2015-04-16 07:46:38    2015-04-16 07:46:38
7070    13933    823    2013-07-02 11:24:34    2013-07-02 11:24:34
7071    18756    610    2014-08-07 11:36:48    2014-08-07 11:36:48
7072    16901    862    2015-08-06 20:37:35    2015-08-06 20:37:35
7073    13017    528    2013-05-08 16:22:12    2013-05-08 16:22:12
7074    16533    605    2016-04-01 10:04:30    2016-04-01 10:04:30
7075    19454    797    2016-03-19 22:02:33    2016-03-19 22:02:33
7076    14148    924    2014-10-11 18:36:41    2014-10-11 18:36:41
7077    13622    647    2015-12-11 13:54:29    2015-12-11 13:54:29
7078    14165    863    2015-01-07 20:19:52    2015-01-07 20:19:52
7079    13806    706    2013-12-11 12:49:31    2013-12-11 12:49:31
7080    10167    535    2014-03-03 15:03:51    2014-03-03 15:03:51
7081    17230    958    2013-06-03 03:18:42    2013-06-03 03:18:42
7082    10678    478    2014-04-09 16:19:11    2014-04-09 16:19:11
7083    19186    904    2013-06-23 01:37:29    2013-06-23 01:37:29
7084    11425    675    2014-10-16 19:46:16    2014-10-16 19:46:16
7085    17360    865    2013-09-25 11:05:42    2013-09-25 11:05:42
7086    12737    523    2015-02-22 08:15:15    2015-02-22 08:15:15
7087    13845    477    2014-11-17 04:53:04    2014-11-17 04:53:04
7088    17633    708    2015-07-06 14:42:20    2015-07-06 14:42:20
7089    18995    725    2013-08-27 21:28:32    2013-08-27 21:28:32
7090    17221    961    2014-09-03 11:59:50    2014-09-03 11:59:50
7091    19181    883    2015-02-19 09:57:45    2015-02-19 09:57:45
7092    15643    897    2015-09-21 01:03:36    2015-09-21 01:03:36
7093    12891    759    2013-07-18 04:59:07    2013-07-18 04:59:07
7094    12658    951    2016-04-08 23:53:35    2016-04-08 23:53:35
7095    10703    719    2014-04-03 20:48:20    2014-04-03 20:48:20
7096    17782    946    2014-11-30 19:11:18    2014-11-30 19:11:18
7097    12627    674    2015-05-02 16:42:22    2015-05-02 16:42:22
7098    11144    664    2013-08-16 03:14:37    2013-08-16 03:14:37
7099    18087    778    2014-11-14 19:59:36    2014-11-14 19:59:36
7100    19325    659    2014-03-02 13:49:19    2014-03-02 13:49:19
7101    19410    877    2015-06-14 06:10:08    2015-06-14 06:10:08
7102    17930    785    2013-11-04 01:52:05    2013-11-04 01:52:05
7103    14282    862    2014-12-11 12:50:46    2014-12-11 12:50:46
7104    12340    720    2016-02-07 04:06:45    2016-02-07 04:06:45
7105    13663    571    2015-12-18 18:36:19    2015-12-18 18:36:19
7106    14332    735    2014-01-29 16:37:42    2014-01-29 16:37:42
7107    13498    848    2014-12-04 15:49:31    2014-12-04 15:49:31
7108    17093    513    2014-05-11 00:36:40    2014-05-11 00:36:40
7109    18702    806    2013-08-31 18:47:07    2013-08-31 18:47:07
7110    19892    565    2013-11-04 03:08:08    2013-11-04 03:08:08
7111    16378    550    2015-04-01 03:13:17    2015-04-01 03:13:17
7112    12312    864    2015-06-25 12:09:00    2015-06-25 12:09:00
7113    14230    720    2013-07-21 01:52:18    2013-07-21 01:52:18
7114    15098    813    2014-11-27 13:09:22    2014-11-27 13:09:22
7115    15480    488    2015-05-14 04:12:14    2015-05-14 04:12:14
7116    19684    574    2013-12-24 17:04:56    2013-12-24 17:04:56
7117    19689    912    2013-05-03 21:53:57    2013-05-03 21:53:57
7118    19735    565    2013-09-16 13:45:23    2013-09-16 13:45:23
7119    17380    589    2015-02-03 11:06:04    2015-02-03 11:06:04
7120    11973    647    2015-08-10 16:06:27    2015-08-10 16:06:27
7121    11089    557    2015-01-08 18:30:54    2015-01-08 18:30:54
7122    18519    490    2015-10-04 05:04:20    2015-10-04 05:04:20
7123    11194    698    2015-08-18 21:36:01    2015-08-18 21:36:01
7124    12211    474    2015-11-02 12:18:22    2015-11-02 12:18:22
7125    11087    948    2015-11-06 07:17:25    2015-11-06 07:17:25
7126    11999    729    2013-07-29 03:17:29    2013-07-29 03:17:29
7127    14243    556    2014-02-07 13:42:38    2014-02-07 13:42:38
7128    17763    505    2015-01-07 00:22:27    2015-01-07 00:22:27
7129    13169    646    2015-01-28 02:38:14    2015-01-28 02:38:14
7130    14857    885    2014-10-06 06:47:59    2014-10-06 06:47:59
7131    19075    536    2014-07-13 07:31:45    2014-07-13 07:31:45
7132    10932    799    2014-06-07 19:28:37    2014-06-07 19:28:37
7133    15351    708    2014-11-08 22:50:21    2014-11-08 22:50:21
7134    17967    672    2015-03-17 13:11:56    2015-03-17 13:11:56
7135    17010    811    2015-10-01 19:23:43    2015-10-01 19:23:43
7136    18642    565    2015-02-15 15:16:23    2015-02-15 15:16:23
7137    19024    520    2014-03-07 11:45:51    2014-03-07 11:45:51
7138    15795    615    2013-05-18 15:53:09    2013-05-18 15:53:09
7139    12962    563    2014-03-14 16:32:33    2014-03-14 16:32:33
7140    13611    848    2014-06-15 10:16:37    2014-06-15 10:16:37
7141    18936    948    2016-03-23 11:54:09    2016-03-23 11:54:09
7142    17993    591    2013-09-16 02:16:00    2013-09-16 02:16:00
7143    10691    877    2013-09-09 22:36:28    2013-09-09 22:36:28
7144    15092    890    2016-03-02 03:31:27    2016-03-02 03:31:27
7145    19955    924    2013-12-18 04:28:34    2013-12-18 04:28:34
7146    17284    712    2013-06-06 19:37:44    2013-06-06 19:37:44
7147    11689    546    2015-10-15 04:00:00    2015-10-15 04:00:00
7148    10786    745    2015-09-21 20:41:32    2015-09-21 20:41:32
7149    16062    960    2015-01-01 03:28:10    2015-01-01 03:28:10
7150    17110    935    2013-07-30 09:38:19    2013-07-30 09:38:19
7151    17113    746    2015-05-01 09:18:54    2015-05-01 09:18:54
7152    14089    790    2014-09-24 19:32:22    2014-09-24 19:32:22
7153    12860    717    2015-11-24 13:06:50    2015-11-24 13:06:50
7154    11750    706    2014-03-24 20:51:50    2014-03-24 20:51:50
7155    13963    649    2016-03-28 12:17:31    2016-03-28 12:17:31
7156    15709    575    2013-10-01 23:20:03    2013-10-01 23:20:03
7157    13929    494    2015-02-27 00:18:54    2015-02-27 00:18:54
7158    12708    498    2015-03-25 01:15:54    2015-03-25 01:15:54
7159    18211    833    2014-11-12 13:32:51    2014-11-12 13:32:51
7160    14039    822    2015-09-17 11:24:41    2015-09-17 11:24:41
7161    11584    662    2013-12-04 12:32:53    2013-12-04 12:32:53
7162    17833    546    2014-03-04 00:18:17    2014-03-04 00:18:17
7163    19930    957    2013-10-03 03:18:49    2013-10-03 03:18:49
7164    11860    625    2014-02-07 21:29:41    2014-02-07 21:29:41
7165    11046    825    2013-05-05 18:22:01    2013-05-05 18:22:01
7166    11383    770    2013-08-11 11:42:39    2013-08-11 11:42:39
7167    13132    628    2015-08-25 22:14:55    2015-08-25 22:14:55
7168    13522    608    2013-10-16 22:42:03    2013-10-16 22:42:03
7169    18981    708    2016-02-09 06:37:28    2016-02-09 06:37:28
7170    14656    761    2014-11-30 11:05:19    2014-11-30 11:05:19
7171    12748    862    2015-06-27 07:12:10    2015-06-27 07:12:10
7172    17538    925    2014-07-26 06:27:40    2014-07-26 06:27:40
7173    17343    826    2013-07-20 07:55:58    2013-07-20 07:55:58
7174    10256    871    2015-01-29 06:48:14    2015-01-29 06:48:14
7175    18966    747    2015-01-20 04:00:11    2015-01-20 04:00:11
7176    18275    746    2013-10-03 02:57:22    2013-10-03 02:57:22
7177    10952    591    2016-03-12 20:55:43    2016-03-12 20:55:43
7178    10636    927    2015-03-15 15:14:19    2015-03-15 15:14:19
7179    17853    772    2015-08-03 02:20:11    2015-08-03 02:20:11
7180    15945    568    2015-06-14 11:55:41    2015-06-14 11:55:41
7181    11909    847    2013-07-24 12:12:12    2013-07-24 12:12:12
7182    14249    655    2015-08-04 21:33:05    2015-08-04 21:33:05
7183    18411    685    2015-08-14 16:24:19    2015-08-14 16:24:19
7184    14393    874    2014-04-03 07:00:32    2014-04-03 07:00:32
7185    19941    520    2016-01-24 00:55:16    2016-01-24 00:55:16
7186    17941    929    2013-11-22 15:39:49    2013-11-22 15:39:49
7187    10933    574    2014-06-07 07:38:23    2014-06-07 07:38:23
7188    12780    684    2015-07-07 18:22:53    2015-07-07 18:22:53
7189    16916    795    2014-11-23 06:19:10    2014-11-23 06:19:10
7190    16342    498    2014-11-15 06:36:12    2014-11-15 06:36:12
7191    10051    633    2014-05-15 22:04:23    2014-05-15 22:04:23
7192    19743    668    2015-06-08 08:01:07    2015-06-08 08:01:07
7193    12470    855    2013-06-08 02:37:32    2013-06-08 02:37:32
7194    14451    822    2016-01-21 21:02:40    2016-01-21 21:02:40
7195    15519    743    2013-05-01 21:38:49    2013-05-01 21:38:49
7196    11963    700    2015-08-21 00:55:49    2015-08-21 00:55:49
7197    13187    896    2013-10-08 06:31:52    2013-10-08 06:31:52
7198    12437    815    2014-08-06 17:55:22    2014-08-06 17:55:22
7199    10426    790    2013-07-03 22:16:07    2013-07-03 22:16:07
7200    18050    609    2013-05-25 17:19:54    2013-05-25 17:19:54
7201    14112    685    2014-06-25 14:05:38    2014-06-25 14:05:38
7202    14579    957    2015-02-13 08:53:08    2015-02-13 08:53:08
7203    10264    786    2013-11-24 23:43:37    2013-11-24 23:43:37
7204    18105    611    2016-04-17 07:13:14    2016-04-17 07:13:14
7205    17696    793    2013-12-12 11:59:49    2013-12-12 11:59:49
7206    14807    701    2016-01-19 03:06:46    2016-01-19 03:06:46
7207    11248    872    2014-08-08 21:33:04    2014-08-08 21:33:04
7208    11606    871    2015-04-27 12:45:03    2015-04-27 12:45:03
7209    19192    681    2013-07-17 06:48:46    2013-07-17 06:48:46
7210    12057    601    2014-02-21 21:57:06    2014-02-21 21:57:06
7211    12571    667    2016-03-08 15:59:38    2016-03-08 15:59:38
7212    15089    598    2014-05-04 16:32:09    2014-05-04 16:32:09
7213    17745    520    2014-03-24 20:13:49    2014-03-24 20:13:49
7214    16246    819    2014-06-18 12:41:05    2014-06-18 12:41:05
7215    19185    616    2015-08-20 22:31:02    2015-08-20 22:31:02
7216    16188    672    2015-09-29 09:31:31    2015-09-29 09:31:31
7217    13581    779    2013-07-03 08:03:54    2013-07-03 08:03:54
7218    12220    766    2015-01-03 20:36:54    2015-01-03 20:36:54
7219    15585    726    2013-07-19 23:02:59    2013-07-19 23:02:59
7220    12736    776    2015-09-22 17:38:42    2015-09-22 17:38:42
7221    19152    832    2014-08-17 00:14:12    2014-08-17 00:14:12
7222    10581    551    2015-07-26 10:51:47    2015-07-26 10:51:47
7223    13003    661    2014-07-19 00:18:57    2014-07-19 00:18:57
7224    16370    582    2014-01-10 00:45:19    2014-01-10 00:45:19
7225    10187    626    2013-11-28 04:10:58    2013-11-28 04:10:58
7226    16184    697    2016-03-23 23:56:18    2016-03-23 23:56:18
7227    10402    641    2014-10-16 06:19:12    2014-10-16 06:19:12
7228    13710    788    2013-11-18 02:20:34    2013-11-18 02:20:34
7229    16490    684    2016-03-26 12:14:09    2016-03-26 12:14:09
7230    19250    932    2014-12-09 17:06:17    2014-12-09 17:06:17
7231    10270    900    2015-10-26 14:46:54    2015-10-26 14:46:54
7232    10619    760    2016-04-20 10:24:02    2016-04-20 10:24:02
7233    10092    486    2015-04-19 22:26:00    2015-04-19 22:26:00
7234    16110    475    2013-06-14 07:56:16    2013-06-14 07:56:16
7235    14372    915    2013-09-30 21:26:36    2013-09-30 21:26:36
7236    11529    640    2015-11-29 09:33:48    2015-11-29 09:33:48
7237    16208    667    2013-12-30 06:10:57    2013-12-30 06:10:57
7238    14552    771    2014-02-02 15:37:36    2014-02-02 15:37:36
7239    12124    900    2015-12-02 12:47:20    2015-12-02 12:47:20
7240    14777    921    2015-07-20 20:20:52    2015-07-20 20:20:52
7241    16822    592    2014-01-07 22:08:29    2014-01-07 22:08:29
7242    18623    816    2015-11-15 20:29:09    2015-11-15 20:29:09
7243    10833    833    2016-04-04 02:18:01    2016-04-04 02:18:01
7244    15514    844    2014-04-05 18:50:58    2014-04-05 18:50:58
7245    16931    651    2015-02-03 21:58:13    2015-02-03 21:58:13
7246    13445    833    2013-10-28 07:10:38    2013-10-28 07:10:38
7247    10218    500    2015-09-24 22:17:04    2015-09-24 22:17:04
7248    13940    809    2016-03-03 02:26:14    2016-03-03 02:26:14
7249    19522    933    2013-08-05 21:03:54    2013-08-05 21:03:54
7250    11576    721    2015-09-26 18:17:10    2015-09-26 18:17:10
7251    10618    946    2015-05-13 00:38:51    2015-05-13 00:38:51
7252    12876    884    2014-12-20 18:29:32    2014-12-20 18:29:32
7253    15072    483    2014-06-13 18:18:19    2014-06-13 18:18:19
7254    16347    508    2015-01-24 09:13:20    2015-01-24 09:13:20
7255    12755    532    2016-04-10 12:37:41    2016-04-10 12:37:41
7256    14739    845    2013-05-16 16:11:45    2013-05-16 16:11:45
7257    17890    473    2014-08-18 17:59:44    2014-08-18 17:59:44
7258    14191    932    2015-05-04 08:57:40    2015-05-04 08:57:40
7259    17148    876    2016-04-17 21:08:53    2016-04-17 21:08:53
7260    13779    704    2014-07-12 22:23:04    2014-07-12 22:23:04
7261    10581    682    2014-09-07 22:43:33    2014-09-07 22:43:33
7262    14868    929    2016-04-04 02:31:53    2016-04-04 02:31:53
7263    12060    537    2014-03-18 17:46:50    2014-03-18 17:46:50
7264    13699    577    2015-12-21 11:02:46    2015-12-21 11:02:46
7265    19342    666    2016-01-29 17:41:51    2016-01-29 17:41:51
7266    13341    527    2015-12-20 12:56:27    2015-12-20 12:56:27
7267    10193    559    2014-03-26 10:53:53    2014-03-26 10:53:53
7268    14333    633    2013-07-21 04:48:51    2013-07-21 04:48:51
7269    18464    667    2015-08-12 23:09:12    2015-08-12 23:09:12
7270    11643    855    2014-10-23 13:06:33    2014-10-23 13:06:33
7271    10509    512    2015-04-21 15:34:51    2015-04-21 15:34:51
7272    15983    930    2016-02-22 22:22:37    2016-02-22 22:22:37
7273    19097    555    2014-01-24 08:19:09    2014-01-24 08:19:09
7274    12634    562    2015-11-03 13:15:25    2015-11-03 13:15:25
7275    14054    954    2014-01-22 03:33:15    2014-01-22 03:33:15
7276    19312    485    2015-03-12 11:04:46    2015-03-12 11:04:46
7277    17981    718    2016-01-18 23:49:51    2016-01-18 23:49:51
7278    14548    542    2013-06-24 14:32:16    2013-06-24 14:32:16
7279    11946    941    2014-08-04 18:14:45    2014-08-04 18:14:45
7280    11005    791    2015-03-14 12:22:12    2015-03-14 12:22:12
7281    17588    612    2015-03-05 23:23:53    2015-03-05 23:23:53
7282    14174    772    2013-04-30 21:58:10    2013-04-30 21:58:10
7283    10694    629    2014-08-28 16:51:30    2014-08-28 16:51:30
7284    11397    605    2013-05-04 00:46:38    2013-05-04 00:46:38
7285    15991    889    2014-10-22 20:28:38    2014-10-22 20:28:38
7286    11012    511    2015-03-02 06:43:05    2015-03-02 06:43:05
7287    16237    578    2014-05-21 21:00:26    2014-05-21 21:00:26
7288    16478    886    2014-07-24 09:36:20    2014-07-24 09:36:20
7289    14098    764    2015-06-15 00:51:31    2015-06-15 00:51:31
7290    10422    820    2014-03-04 02:26:23    2014-03-04 02:26:23
7291    19980    532    2015-08-16 19:41:13    2015-08-16 19:41:13
7292    10173    490    2013-05-04 21:08:33    2013-05-04 21:08:33
7293    13780    791    2014-07-26 09:12:13    2014-07-26 09:12:13
7294    13933    807    2015-02-21 20:59:24    2015-02-21 20:59:24
7295    12153    483    2014-10-04 09:12:20    2014-10-04 09:12:20
7296    15346    493    2013-05-02 17:45:50    2013-05-02 17:45:50
7297    11571    691    2013-07-24 09:20:51    2013-07-24 09:20:51
7298    19152    606    2013-07-30 09:15:21    2013-07-30 09:15:21
7299    18131    544    2013-12-10 08:36:37    2013-12-10 08:36:37
7300    18358    578    2016-03-25 06:47:30    2016-03-25 06:47:30
7301    12955    951    2015-06-21 04:47:39    2015-06-21 04:47:39
7302    15039    510    2013-08-20 19:06:47    2013-08-20 19:06:47
7303    18691    678    2013-04-30 10:15:20    2013-04-30 10:15:20
7304    12535    510    2013-09-20 23:01:24    2013-09-20 23:01:24
7305    12817    760    2013-09-02 03:18:13    2013-09-02 03:18:13
7306    14927    929    2015-11-11 14:19:14    2015-11-11 14:19:14
7307    13206    500    2013-10-27 08:37:42    2013-10-27 08:37:42
7308    15917    582    2016-04-10 22:09:36    2016-04-10 22:09:36
7309    15809    804    2015-01-12 10:46:33    2015-01-12 10:46:33
7310    10354    693    2013-08-30 00:26:17    2013-08-30 00:26:17
7311    16977    782    2016-02-15 14:04:49    2016-02-15 14:04:49
7312    18353    572    2014-05-26 17:27:01    2014-05-26 17:27:01
7313    14081    622    2015-06-07 02:35:17    2015-06-07 02:35:17
7314    15810    833    2016-03-16 21:21:07    2016-03-16 21:21:07
7315    19553    957    2013-04-28 06:48:57    2013-04-28 06:48:57
7316    17881    957    2014-05-16 11:51:20    2014-05-16 11:51:20
7317    14897    850    2015-05-14 13:15:52    2015-05-14 13:15:52
7318    11848    760    2016-01-06 12:20:42    2016-01-06 12:20:42
7319    17427    838    2015-10-13 01:11:41    2015-10-13 01:11:41
7320    13483    870    2014-03-23 20:10:12    2014-03-23 20:10:12
7321    13607    806    2015-09-20 23:21:45    2015-09-20 23:21:45
7322    11851    715    2013-11-20 01:45:17    2013-11-20 01:45:17
7323    10479    776    2014-02-24 06:28:19    2014-02-24 06:28:19
7324    15784    615    2014-03-24 10:50:56    2014-03-24 10:50:56
7325    15837    535    2014-04-09 19:21:28    2014-04-09 19:21:28
7326    11863    907    2014-01-21 11:54:39    2014-01-21 11:54:39
7327    19801    744    2016-04-15 21:22:44    2016-04-15 21:22:44
7328    16970    682    2013-11-15 00:31:31    2013-11-15 00:31:31
7329    17779    676    2014-12-13 11:28:04    2014-12-13 11:28:04
7330    17952    777    2014-09-02 00:00:41    2014-09-02 00:00:41
7331    15794    580    2015-02-25 08:22:13    2015-02-25 08:22:13
7332    14036    853    2013-11-14 14:10:17    2013-11-14 14:10:17
7333    17185    804    2015-07-09 01:54:42    2015-07-09 01:54:42
7334    14866    932    2014-10-29 18:42:33    2014-10-29 18:42:33
7335    15683    893    2016-02-20 04:34:24    2016-02-20 04:34:24
7336    12001    874    2014-04-16 07:57:19    2014-04-16 07:57:19
7337    18463    856    2015-11-16 07:45:56    2015-11-16 07:45:56
7338    13313    909    2015-05-02 15:05:16    2015-05-02 15:05:16
7339    18490    958    2016-04-09 09:42:45    2016-04-09 09:42:45
7340    17476    553    2015-11-26 12:48:36    2015-11-26 12:48:36
7341    15651    879    2016-03-27 00:07:33    2016-03-27 00:07:33
7342    17732    531    2014-08-30 16:13:21    2014-08-30 16:13:21
7343    11951    732    2013-10-01 01:05:41    2013-10-01 01:05:41
7344    12212    527    2015-02-15 08:56:46    2015-02-15 08:56:46
7345    18649    708    2014-01-09 23:11:18    2014-01-09 23:11:18
7346    18112    610    2015-03-16 11:01:17    2015-03-16 11:01:17
7347    18763    880    2015-01-21 16:39:16    2015-01-21 16:39:16
7348    12202    757    2013-08-12 17:19:12    2013-08-12 17:19:12
7349    11621    749    2013-08-27 15:09:46    2013-08-27 15:09:46
7350    14350    672    2013-06-25 13:37:22    2013-06-25 13:37:22
7351    14985    671    2016-03-19 10:43:50    2016-03-19 10:43:50
7352    15002    572    2013-11-05 04:23:17    2013-11-05 04:23:17
7353    12381    486    2015-03-09 17:44:36    2015-03-09 17:44:36
7354    18274    852    2013-04-23 08:40:20    2013-04-23 08:40:20
7355    16421    717    2015-05-07 21:12:41    2015-05-07 21:12:41
7356    11753    956    2014-12-02 23:02:02    2014-12-02 23:02:02
7357    18424    825    2015-10-21 05:02:39    2015-10-21 05:02:39
7358    12005    820    2016-04-18 18:53:17    2016-04-18 18:53:17
7359    16194    701    2014-01-23 07:35:43    2014-01-23 07:35:43
7360    11545    714    2015-10-04 19:47:46    2015-10-04 19:47:46
7361    10725    591    2014-04-17 15:15:15    2014-04-17 15:15:15
7362    17568    576    2016-01-08 08:27:29    2016-01-08 08:27:29
7363    13942    942    2014-02-25 13:23:42    2014-02-25 13:23:42
7364    13252    561    2015-09-20 22:47:55    2015-09-20 22:47:55
7365    14702    815    2014-09-21 20:56:50    2014-09-21 20:56:50
7366    14597    910    2015-06-19 00:33:26    2015-06-19 00:33:26
7367    18427    887    2015-05-22 07:54:14    2015-05-22 07:54:14
7368    19287    654    2015-11-19 21:03:36    2015-11-19 21:03:36
7369    19136    916    2014-04-16 00:11:02    2014-04-16 00:11:02
7370    11410    557    2015-03-17 06:42:43    2015-03-17 06:42:43
7371    16020    830    2013-08-22 17:46:25    2013-08-22 17:46:25
7372    14725    873    2016-01-08 20:23:53    2016-01-08 20:23:53
7373    12759    686    2015-03-03 21:33:22    2015-03-03 21:33:22
7374    12034    643    2015-04-30 04:55:09    2015-04-30 04:55:09
7375    11534    709    2015-10-20 22:54:33    2015-10-20 22:54:33
7376    10077    780    2014-03-04 17:43:46    2014-03-04 17:43:46
7377    16980    824    2015-09-14 21:05:15    2015-09-14 21:05:15
7378    15430    831    2015-06-24 18:09:56    2015-06-24 18:09:56
7379    14259    480    2013-06-10 08:36:20    2013-06-10 08:36:20
7380    17692    908    2013-10-31 18:04:50    2013-10-31 18:04:50
7381    15511    740    2015-08-05 03:13:57    2015-08-05 03:13:57
7382    15402    488    2013-09-15 00:28:06    2013-09-15 00:28:06
7383    15746    541    2014-03-03 17:35:08    2014-03-03 17:35:08
7384    18610    815    2014-10-31 17:42:51    2014-10-31 17:42:51
7385    10451    955    2015-11-11 05:48:54    2015-11-11 05:48:54
7386    19857    495    2014-03-28 10:35:46    2014-03-28 10:35:46
7387    16765    510    2014-12-27 03:05:49    2014-12-27 03:05:49
7388    11855    947    2013-04-23 14:51:21    2013-04-23 14:51:21
7389    13464    904    2014-01-19 12:50:01    2014-01-19 12:50:01
7390    18045    931    2014-03-11 08:48:56    2014-03-11 08:48:56
7391    15687    530    2013-10-01 20:09:09    2013-10-01 20:09:09
7392    15574    595    2013-09-19 02:25:57    2013-09-19 02:25:57
7393    13608    634    2014-11-06 00:22:36    2014-11-06 00:22:36
7394    13386    925    2014-10-03 05:23:29    2014-10-03 05:23:29
7395    18703    524    2013-08-26 08:11:19    2013-08-26 08:11:19
7396    18921    749    2013-09-01 03:50:25    2013-09-01 03:50:25
7397    10154    595    2014-07-01 10:17:38    2014-07-01 10:17:38
7398    14359    773    2015-05-18 07:29:40    2015-05-18 07:29:40
7399    11974    552    2014-06-09 08:27:55    2014-06-09 08:27:55
7400    11269    838    2014-09-21 15:20:32    2014-09-21 15:20:32
7401    13592    797    2015-04-20 03:59:44    2015-04-20 03:59:44
7402    10615    943    2013-12-21 14:21:22    2013-12-21 14:21:22
7403    10415    910    2016-02-01 12:51:28    2016-02-01 12:51:28
7404    10134    859    2013-06-12 10:30:50    2013-06-12 10:30:50
7405    15984    871    2013-09-14 02:07:57    2013-09-14 02:07:57
7406    18039    658    2015-06-24 08:42:23    2015-06-24 08:42:23
7407    18836    946    2014-09-08 06:20:49    2014-09-08 06:20:49
7408    13735    701    2014-08-15 20:21:19    2014-08-15 20:21:19
7409    12914    577    2013-08-11 21:27:50    2013-08-11 21:27:50
7410    19411    557    2015-08-20 17:53:38    2015-08-20 17:53:38
7411    11047    861    2014-09-20 20:48:14    2014-09-20 20:48:14
7412    13109    955    2015-09-09 05:20:32    2015-09-09 05:20:32
7413    12939    609    2015-08-11 23:35:41    2015-08-11 23:35:41
7414    15327    501    2013-06-19 10:56:37    2013-06-19 10:56:37
7415    19130    834    2014-09-13 18:56:58    2014-09-13 18:56:58
7416    13006    680    2015-06-16 19:13:06    2015-06-16 19:13:06
7417    14513    643    2013-11-10 16:26:53    2013-11-10 16:26:53
7418    16840    756    2014-09-15 17:49:19    2014-09-15 17:49:19
7419    14014    819    2014-02-23 18:05:11    2014-02-23 18:05:11
7420    15934    637    2013-06-03 21:44:57    2013-06-03 21:44:57
7421    19095    792    2016-01-24 02:51:30    2016-01-24 02:51:30
7422    16961    670    2014-11-30 05:40:34    2014-11-30 05:40:34
7423    11734    654    2015-08-30 12:58:07    2015-08-30 12:58:07
7424    19138    484    2015-11-06 16:59:41    2015-11-06 16:59:41
7425    19528    794    2015-08-24 07:10:54    2015-08-24 07:10:54
7426    13657    546    2013-07-27 22:10:47    2013-07-27 22:10:47
7427    14648    828    2014-07-06 13:55:06    2014-07-06 13:55:06
7428    10099    489    2016-03-15 04:03:59    2016-03-15 04:03:59
7429    13388    919    2015-07-13 01:43:27    2015-07-13 01:43:27
7430    18321    466    2016-02-18 08:54:57    2016-02-18 08:54:57
7431    15353    924    2015-09-05 02:38:21    2015-09-05 02:38:21
7432    10388    627    2014-08-17 09:28:41    2014-08-17 09:28:41
7433    15691    893    2014-08-17 08:05:05    2014-08-17 08:05:05
7434    15156    623    2013-12-26 11:07:05    2013-12-26 11:07:05
7435    19924    539    2014-11-05 18:33:00    2014-11-05 18:33:00
7436    13925    648    2014-11-10 11:28:10    2014-11-10 11:28:10
7437    18132    640    2015-04-12 11:06:20    2015-04-12 11:06:20
7438    13119    600    2015-01-21 04:46:13    2015-01-21 04:46:13
7439    15043    644    2014-11-04 11:13:35    2014-11-04 11:13:35
7440    17737    627    2014-07-22 01:37:05    2014-07-22 01:37:05
7441    19712    786    2015-09-04 07:41:58    2015-09-04 07:41:58
7442    18333    579    2014-02-15 15:58:40    2014-02-15 15:58:40
7443    13603    834    2015-03-05 18:53:40    2015-03-05 18:53:40
7444    10172    945    2013-09-14 01:52:50    2013-09-14 01:52:50
7445    15504    719    2013-08-30 23:31:35    2013-08-30 23:31:35
7446    19453    925    2015-02-12 19:37:35    2015-02-12 19:37:35
7447    15291    740    2014-08-23 10:24:56    2014-08-23 10:24:56
7448    13528    667    2015-07-01 15:47:01    2015-07-01 15:47:01
7449    11509    836    2016-01-03 19:47:48    2016-01-03 19:47:48
7450    19086    809    2016-01-06 07:54:41    2016-01-06 07:54:41
7451    15649    524    2014-08-31 19:32:26    2014-08-31 19:32:26
7452    11324    847    2014-06-03 20:21:40    2014-06-03 20:21:40
7453    17921    572    2014-12-26 11:19:30    2014-12-26 11:19:30
7454    14783    699    2016-03-29 11:22:15    2016-03-29 11:22:15
7455    16370    512    2014-09-06 01:34:49    2014-09-06 01:34:49
7456    18160    866    2013-10-26 08:46:14    2013-10-26 08:46:14
7457    18632    834    2014-05-11 03:04:52    2014-05-11 03:04:52
7458    19766    517    2016-02-17 02:22:03    2016-02-17 02:22:03
7459    10366    831    2015-01-03 08:55:25    2015-01-03 08:55:25
7460    14784    662    2015-02-14 11:23:55    2015-02-14 11:23:55
7461    19147    748    2013-07-28 12:20:30    2013-07-28 12:20:30
7462    12587    727    2014-12-21 02:24:05    2014-12-21 02:24:05
7463    10325    675    2015-06-25 15:50:24    2015-06-25 15:50:24
7464    15920    852    2016-03-13 12:56:57    2016-03-13 12:56:57
7465    14531    685    2016-04-03 04:55:13    2016-04-03 04:55:13
7466    18725    870    2014-06-27 07:55:51    2014-06-27 07:55:51
7467    15641    669    2014-11-02 01:16:35    2014-11-02 01:16:35
7468    16128    541    2013-11-29 12:39:06    2013-11-29 12:39:06
7469    19819    473    2013-05-08 00:31:19    2013-05-08 00:31:19
7470    16280    660    2015-01-11 04:25:46    2015-01-11 04:25:46
7471    17289    669    2014-01-18 12:42:23    2014-01-18 12:42:23
7472    11132    601    2015-03-15 17:28:35    2015-03-15 17:28:35
7473    19850    877    2015-05-31 12:24:19    2015-05-31 12:24:19
7474    15777    814    2013-04-27 07:33:13    2013-04-27 07:33:13
7475    13821    734    2015-11-26 20:08:34    2015-11-26 20:08:34
7476    15141    498    2013-05-24 08:40:37    2013-05-24 08:40:37
7477    15946    810    2014-07-15 15:05:11    2014-07-15 15:05:11
7478    18188    917    2015-09-27 07:12:16    2015-09-27 07:12:16
7479    18624    486    2013-05-29 07:04:26    2013-05-29 07:04:26
7480    11127    536    2013-07-17 00:50:56    2013-07-17 00:50:56
7481    10341    940    2016-02-16 04:57:20    2016-02-16 04:57:20
7482    13862    916    2016-02-10 20:19:05    2016-02-10 20:19:05
7483    10421    821    2016-03-15 23:11:07    2016-03-15 23:11:07
7484    12155    900    2014-09-24 14:17:11    2014-09-24 14:17:11
7485    16550    802    2015-09-20 06:58:18    2015-09-20 06:58:18
7486    19969    545    2015-12-14 08:38:53    2015-12-14 08:38:53
7487    10242    839    2015-10-03 06:15:33    2015-10-03 06:15:33
7488    11777    590    2014-07-29 18:35:36    2014-07-29 18:35:36
7489    14236    490    2015-03-06 03:10:18    2015-03-06 03:10:18
7490    16069    512    2015-07-22 20:53:01    2015-07-22 20:53:01
7491    10743    516    2013-10-15 03:20:44    2013-10-15 03:20:44
7492    18460    855    2015-05-03 15:26:11    2015-05-03 15:26:11
7493    11929    755    2015-03-29 02:50:18    2015-03-29 02:50:18
7494    12078    723    2015-01-23 21:06:16    2015-01-23 21:06:16
7495    13571    828    2015-03-13 23:58:42    2015-03-13 23:58:42
7496    19917    597    2015-12-19 22:19:19    2015-12-19 22:19:19
7497    10713    517    2013-05-22 19:15:54    2013-05-22 19:15:54
7498    17509    852    2013-12-06 21:07:14    2013-12-06 21:07:14
7499    12112    602    2015-09-02 07:08:20    2015-09-02 07:08:20
7500    13878    641    2015-08-08 19:28:51    2015-08-08 19:28:51
7501    18225    511    2015-03-18 00:46:30    2015-03-18 00:46:30
7502    17275    841    2016-02-21 18:45:14    2016-02-21 18:45:14
7503    14883    935    2014-12-29 03:01:02    2014-12-29 03:01:02
7504    16676    725    2015-10-17 15:10:21    2015-10-17 15:10:21
7505    12680    501    2013-08-02 09:36:44    2013-08-02 09:36:44
7506    12239    570    2014-04-22 04:11:22    2014-04-22 04:11:22
7507    17256    679    2015-05-01 04:31:26    2015-05-01 04:31:26
7508    11704    877    2014-12-27 17:19:42    2014-12-27 17:19:42
7509    10555    794    2015-03-15 01:56:31    2015-03-15 01:56:31
7510    15506    860    2013-07-01 04:26:28    2013-07-01 04:26:28
7511    11364    762    2014-04-12 00:45:14    2014-04-12 00:45:14
7512    15401    933    2015-07-06 19:23:54    2015-07-06 19:23:54
7513    10783    887    2015-11-05 11:58:16    2015-11-05 11:58:16
7514    16495    685    2013-09-07 02:16:45    2013-09-07 02:16:45
7515    15604    517    2013-05-22 06:46:28    2013-05-22 06:46:28
7516    14008    726    2014-04-13 23:15:34    2014-04-13 23:15:34
7517    11940    849    2014-06-09 00:19:52    2014-06-09 00:19:52
7518    14842    732    2013-09-30 00:26:12    2013-09-30 00:26:12
7519    18004    919    2015-04-25 22:37:16    2015-04-25 22:37:16
7520    16076    920    2014-03-03 00:32:07    2014-03-03 00:32:07
7521    11350    580    2015-04-21 18:57:40    2015-04-21 18:57:40
7522    13809    899    2016-02-01 14:11:15    2016-02-01 14:11:15
7523    14552    959    2014-11-05 10:58:02    2014-11-05 10:58:02
7524    14475    772    2014-06-21 12:28:53    2014-06-21 12:28:53
7525    16426    695    2014-01-23 03:30:33    2014-01-23 03:30:33
7526    14287    849    2013-07-19 09:20:00    2013-07-19 09:20:00
7527    11623    463    2015-01-08 04:05:57    2015-01-08 04:05:57
7528    15638    692    2015-04-07 07:27:25    2015-04-07 07:27:25
7529    13444    522    2013-05-29 09:52:21    2013-05-29 09:52:21
7530    15577    704    2015-12-26 04:15:52    2015-12-26 04:15:52
7531    17053    676    2015-02-04 03:38:47    2015-02-04 03:38:47
7532    15654    486    2015-04-20 04:16:37    2015-04-20 04:16:37
7533    19500    818    2014-02-12 10:27:54    2014-02-12 10:27:54
7534    17966    478    2015-06-08 20:29:32    2015-06-08 20:29:32
7535    17229    515    2016-04-03 09:33:08    2016-04-03 09:33:08
7536    14418    812    2015-04-11 13:42:00    2015-04-11 13:42:00
7537    16523    547    2013-04-22 20:44:05    2013-04-22 20:44:05
7538    12994    877    2016-03-23 12:09:26    2016-03-23 12:09:26
7539    13087    832    2014-07-02 01:27:26    2014-07-02 01:27:26
7540    15864    468    2013-05-05 06:26:57    2013-05-05 06:26:57
7541    13937    689    2013-12-06 11:32:23    2013-12-06 11:32:23
7542    11282    950    2016-01-06 13:08:36    2016-01-06 13:08:36
7543    15604    477    2014-10-18 15:27:09    2014-10-18 15:27:09
7544    10021    774    2015-03-26 20:58:50    2015-03-26 20:58:50
7545    11089    544    2015-08-18 23:06:43    2015-08-18 23:06:43
7546    18717    526    2014-05-22 11:25:21    2014-05-22 11:25:21
7547    13857    751    2013-05-03 21:46:10    2013-05-03 21:46:10
7548    12928    647    2013-08-10 04:04:26    2013-08-10 04:04:26
7549    12226    844    2013-11-13 12:51:02    2013-11-13 12:51:02
7550    18565    485    2015-08-28 01:26:38    2015-08-28 01:26:38
7551    17655    945    2016-02-29 08:31:38    2016-02-29 08:31:38
7552    10111    700    2015-04-18 07:34:29    2015-04-18 07:34:29
7553    14694    524    2014-07-13 04:51:08    2014-07-13 04:51:08
7554    11864    733    2013-06-29 15:25:22    2013-06-29 15:25:22
7555    16353    576    2014-01-03 19:00:38    2014-01-03 19:00:38
7556    14779    799    2013-07-10 03:46:20    2013-07-10 03:46:20
7557    15816    711    2016-03-19 21:53:43    2016-03-19 21:53:43
7558    10924    607    2016-02-23 19:46:13    2016-02-23 19:46:13
7559    14716    844    2013-11-25 04:32:44    2013-11-25 04:32:44
7560    17014    698    2014-09-29 07:16:05    2014-09-29 07:16:05
7561    13639    501    2014-11-13 17:45:11    2014-11-13 17:45:11
7562    18379    748    2016-01-01 07:19:37    2016-01-01 07:19:37
7563    17681    564    2016-04-06 15:24:42    2016-04-06 15:24:42
7564    15870    929    2014-11-18 12:29:10    2014-11-18 12:29:10
7565    10546    596    2014-12-07 07:22:47    2014-12-07 07:22:47
7566    18793    749    2014-08-30 09:44:25    2014-08-30 09:44:25
7567    11343    912    2014-06-11 00:26:40    2014-06-11 00:26:40
7568    16999    824    2016-03-07 07:37:13    2016-03-07 07:37:13
7569    16600    745    2016-02-16 07:11:35    2016-02-16 07:11:35
7570    16853    907    2014-04-28 04:50:18    2014-04-28 04:50:18
7571    19683    688    2014-12-03 16:14:56    2014-12-03 16:14:56
7572    18725    484    2014-10-23 23:21:04    2014-10-23 23:21:04
7573    10906    955    2016-04-02 02:47:31    2016-04-02 02:47:31
7574    14841    560    2014-05-03 04:53:20    2014-05-03 04:53:20
7575    10694    681    2015-04-05 22:26:54    2015-04-05 22:26:54
7576    12713    884    2015-10-12 20:14:01    2015-10-12 20:14:01
7577    14783    866    2014-03-26 14:58:18    2014-03-26 14:58:18
7578    13351    805    2014-01-27 21:06:44    2014-01-27 21:06:44
7579    15082    611    2015-10-18 02:50:21    2015-10-18 02:50:21
7580    11207    468    2013-10-22 12:11:17    2013-10-22 12:11:17
7581    19745    702    2014-01-30 02:12:32    2014-01-30 02:12:32
7582    16756    917    2014-11-30 02:15:29    2014-11-30 02:15:29
7583    14579    575    2014-06-03 05:33:43    2014-06-03 05:33:43
7584    11954    529    2014-04-17 23:10:10    2014-04-17 23:10:10
7585    12307    714    2015-02-20 01:13:02    2015-02-20 01:13:02
7586    10278    818    2014-12-26 05:48:12    2014-12-26 05:48:12
7587    15111    636    2015-10-14 00:00:29    2015-10-14 00:00:29
7588    14117    888    2013-08-20 18:24:06    2013-08-20 18:24:06
7589    14978    855    2013-08-19 03:16:47    2013-08-19 03:16:47
7590    18665    651    2014-11-27 04:42:17    2014-11-27 04:42:17
7591    15224    795    2013-05-24 09:35:14    2013-05-24 09:35:14
7592    10398    524    2015-12-04 01:17:56    2015-12-04 01:17:56
7593    11260    885    2013-06-08 17:19:02    2013-06-08 17:19:02
7594    19513    750    2014-12-05 02:18:23    2014-12-05 02:18:23
7595    11318    861    2014-08-30 03:21:34    2014-08-30 03:21:34
7596    10351    921    2015-03-11 18:01:40    2015-03-11 18:01:40
7597    14985    557    2014-09-25 06:00:24    2014-09-25 06:00:24
7598    12700    663    2016-04-18 20:29:35    2016-04-18 20:29:35
7599    15507    587    2013-08-13 19:19:04    2013-08-13 19:19:04
7600    14948    901    2013-05-13 17:43:01    2013-05-13 17:43:01
7601    19520    531    2013-08-14 05:23:33    2013-08-14 05:23:33
7602    13644    827    2015-07-14 10:48:45    2015-07-14 10:48:45
7603    13368    933    2016-04-10 04:40:58    2016-04-10 04:40:58
7604    19224    463    2016-02-16 10:34:21    2016-02-16 10:34:21
7605    18313    625    2015-04-03 01:40:36    2015-04-03 01:40:36
7606    15477    861    2014-08-30 09:51:28    2014-08-30 09:51:28
7607    18692    891    2013-07-29 10:39:55    2013-07-29 10:39:55
7608    15296    498    2016-02-14 21:31:02    2016-02-14 21:31:02
7609    12758    748    2014-02-26 11:48:25    2014-02-26 11:48:25
7610    16050    733    2015-09-04 22:54:09    2015-09-04 22:54:09
7611    17024    666    2014-12-01 09:03:52    2014-12-01 09:03:52
7612    16964    909    2014-02-02 13:15:30    2014-02-02 13:15:30
7613    19821    910    2014-05-21 14:47:07    2014-05-21 14:47:07
7614    11428    647    2014-01-24 20:05:25    2014-01-24 20:05:25
7615    17507    535    2015-11-24 21:58:18    2015-11-24 21:58:18
7616    13626    876    2014-10-22 21:44:21    2014-10-22 21:44:21
7617    17894    754    2013-06-12 18:59:30    2013-06-12 18:59:30
7618    16811    758    2015-05-04 13:20:18    2015-05-04 13:20:18
7619    15208    501    2015-09-17 21:31:40    2015-09-17 21:31:40
7620    16070    856    2015-09-17 04:36:39    2015-09-17 04:36:39
7621    15753    594    2015-12-09 04:29:14    2015-12-09 04:29:14
7622    18456    707    2014-12-17 05:22:45    2014-12-17 05:22:45
7623    17532    464    2015-03-05 02:02:30    2015-03-05 02:02:30
7624    11340    933    2015-07-27 17:09:59    2015-07-27 17:09:59
7625    18431    954    2015-03-19 07:17:35    2015-03-19 07:17:35
7626    13279    726    2016-03-30 05:38:07    2016-03-30 05:38:07
7627    18671    638    2013-08-22 21:16:19    2013-08-22 21:16:19
7628    14637    551    2014-08-22 20:08:52    2014-08-22 20:08:52
7629    18380    618    2016-03-18 08:13:57    2016-03-18 08:13:57
7630    16260    622    2015-02-18 01:02:20    2015-02-18 01:02:20
7631    18838    929    2015-12-13 17:04:02    2015-12-13 17:04:02
7632    16434    695    2013-12-26 02:33:00    2013-12-26 02:33:00
7633    17934    896    2014-03-29 07:49:46    2014-03-29 07:49:46
7634    10148    574    2015-06-20 17:11:53    2015-06-20 17:11:53
7635    14855    756    2015-01-12 14:00:46    2015-01-12 14:00:46
7636    13588    927    2014-11-26 17:30:40    2014-11-26 17:30:40
7637    10006    494    2015-09-29 21:08:49    2015-09-29 21:08:49
7638    14806    600    2014-11-16 02:31:29    2014-11-16 02:31:29
7639    12471    557    2014-09-09 17:31:21    2014-09-09 17:31:21
7640    19303    923    2016-02-19 12:08:39    2016-02-19 12:08:39
7641    15147    866    2016-02-03 14:59:10    2016-02-03 14:59:10
7642    19054    833    2015-01-18 19:30:45    2015-01-18 19:30:45
7643    13920    789    2016-01-27 00:23:47    2016-01-27 00:23:47
7644    13619    613    2015-05-24 19:01:37    2015-05-24 19:01:37
7645    13442    720    2014-06-06 06:28:44    2014-06-06 06:28:44
7646    16071    669    2016-03-13 23:27:26    2016-03-13 23:27:26
7647    16476    642    2015-12-26 08:28:38    2015-12-26 08:28:38
7648    16547    906    2014-09-29 01:12:11    2014-09-29 01:12:11
7649    17235    947    2016-03-09 06:30:27    2016-03-09 06:30:27
7650    10964    931    2015-08-10 08:03:10    2015-08-10 08:03:10
7651    17155    653    2013-08-01 03:19:24    2013-08-01 03:19:24
7652    13964    956    2015-08-04 05:23:45    2015-08-04 05:23:45
7653    18825    548    2015-04-25 09:20:50    2015-04-25 09:20:50
7654    14457    793    2013-11-06 11:24:48    2013-11-06 11:24:48
7655    10471    510    2015-11-04 18:58:29    2015-11-04 18:58:29
7656    12744    929    2013-11-17 13:47:07    2013-11-17 13:47:07
7657    18893    569    2015-10-15 00:40:49    2015-10-15 00:40:49
7658    12613    594    2015-06-29 12:14:14    2015-06-29 12:14:14
7659    17447    542    2013-09-20 23:43:41    2013-09-20 23:43:41
7660    17977    558    2014-05-12 11:49:28    2014-05-12 11:49:28
7661    19423    914    2014-12-13 08:41:21    2014-12-13 08:41:21
7662    13237    900    2016-03-26 22:52:17    2016-03-26 22:52:17
7663    13910    709    2015-06-07 01:04:36    2015-06-07 01:04:36
7664    17922    653    2015-12-11 21:23:03    2015-12-11 21:23:03
7665    14992    843    2013-12-06 10:53:31    2013-12-06 10:53:31
7666    16772    750    2015-11-28 14:15:14    2015-11-28 14:15:14
7667    17791    528    2014-05-23 09:04:33    2014-05-23 09:04:33
7668    19626    501    2013-04-24 13:25:55    2013-04-24 13:25:55
7669    12958    730    2015-05-12 04:34:02    2015-05-12 04:34:02
7670    16131    885    2015-10-10 17:22:19    2015-10-10 17:22:19
7671    14997    870    2016-01-23 03:31:36    2016-01-23 03:31:36
7672    12105    643    2015-10-03 05:46:43    2015-10-03 05:46:43
7673    15475    673    2015-08-07 18:43:36    2015-08-07 18:43:36
7674    18531    636    2013-10-26 01:02:02    2013-10-26 01:02:02
7675    10620    794    2013-12-15 21:19:50    2013-12-15 21:19:50
7676    14507    604    2015-04-18 18:08:33    2015-04-18 18:08:33
7677    18089    559    2014-01-21 03:39:28    2014-01-21 03:39:28
7678    16415    512    2014-10-06 03:46:01    2014-10-06 03:46:01
7679    13669    500    2014-09-08 04:25:52    2014-09-08 04:25:52
7680    12641    585    2013-07-07 13:21:53    2013-07-07 13:21:53
7681    18891    906    2015-07-05 19:56:52    2015-07-05 19:56:52
7682    19730    600    2013-07-03 16:11:03    2013-07-03 16:11:03
7683    13500    822    2014-02-24 05:33:58    2014-02-24 05:33:58
7684    17220    562    2014-02-02 12:33:41    2014-02-02 12:33:41
7685    14068    944    2013-05-07 15:46:43    2013-05-07 15:46:43
7686    10589    960    2015-02-05 23:50:07    2015-02-05 23:50:07
7687    13212    588    2015-07-07 23:30:26    2015-07-07 23:30:26
7688    10914    840    2013-09-08 15:37:04    2013-09-08 15:37:04
7689    10752    852    2013-08-12 17:31:58    2013-08-12 17:31:58
7690    14301    542    2015-04-15 15:35:35    2015-04-15 15:35:35
7691    12248    831    2015-11-26 09:04:00    2015-11-26 09:04:00
7692    10124    860    2014-01-24 18:37:20    2014-01-24 18:37:20
7693    14728    628    2016-04-03 00:23:58    2016-04-03 00:23:58
7694    10473    498    2013-04-30 10:43:30    2013-04-30 10:43:30
7695    11453    900    2016-02-21 16:34:40    2016-02-21 16:34:40
7696    10556    525    2013-08-07 15:43:37    2013-08-07 15:43:37
7697    12342    569    2014-02-16 12:01:16    2014-02-16 12:01:16
7698    19360    507    2014-06-05 03:43:13    2014-06-05 03:43:13
7699    14421    749    2016-01-15 10:41:22    2016-01-15 10:41:22
7700    18411    789    2016-04-15 16:07:33    2016-04-15 16:07:33
7701    11629    745    2014-08-05 17:08:46    2014-08-05 17:08:46
7702    13498    921    2013-12-16 03:33:59    2013-12-16 03:33:59
7703    14191    961    2014-02-25 03:25:41    2014-02-25 03:25:41
7704    13551    464    2013-11-03 03:57:23    2013-11-03 03:57:23
7705    14186    706    2016-01-05 06:08:05    2016-01-05 06:08:05
7706    17019    512    2014-04-18 18:01:05    2014-04-18 18:01:05
7707    12658    593    2013-10-22 10:49:57    2013-10-22 10:49:57
7708    10583    923    2015-08-18 12:44:16    2015-08-18 12:44:16
7709    16356    463    2015-10-01 08:17:04    2015-10-01 08:17:04
7710    10155    559    2013-11-08 16:19:57    2013-11-08 16:19:57
7711    19500    890    2014-12-17 08:32:47    2014-12-17 08:32:47
7712    15049    565    2015-08-13 21:23:40    2015-08-13 21:23:40
7713    15679    737    2015-02-14 17:49:04    2015-02-14 17:49:04
7714    16495    697    2014-11-23 05:24:19    2014-11-23 05:24:19
7715    19850    846    2015-02-06 17:57:20    2015-02-06 17:57:20
7716    13826    583    2015-10-24 14:12:28    2015-10-24 14:12:28
7717    11958    839    2015-01-21 20:52:01    2015-01-21 20:52:01
7718    13554    608    2014-01-12 16:22:56    2014-01-12 16:22:56
7719    10233    485    2015-07-05 15:21:47    2015-07-05 15:21:47
7720    10869    667    2013-07-02 04:57:42    2013-07-02 04:57:42
7721    16724    752    2013-11-26 02:19:40    2013-11-26 02:19:40
7722    13438    776    2016-02-12 06:23:29    2016-02-12 06:23:29
7723    17676    858    2014-02-28 04:59:46    2014-02-28 04:59:46
7724    17562    867    2014-06-14 11:55:15    2014-06-14 11:55:15
7725    16071    824    2015-11-04 08:47:20    2015-11-04 08:47:20
7726    13788    498    2013-08-25 20:33:32    2013-08-25 20:33:32
7727    18833    601    2013-04-22 06:50:28    2013-04-22 06:50:28
7728    16541    711    2016-03-31 11:46:29    2016-03-31 11:46:29
7729    17136    694    2015-10-18 07:25:27    2015-10-18 07:25:27
7730    12160    913    2014-02-14 08:55:28    2014-02-14 08:55:28
7731    10852    546    2013-09-27 22:07:55    2013-09-27 22:07:55
7732    14079    953    2013-06-15 01:51:20    2013-06-15 01:51:20
7733    15003    676    2015-02-26 00:04:43    2015-02-26 00:04:43
7734    10666    638    2014-02-01 09:35:07    2014-02-01 09:35:07
7735    14113    929    2015-11-30 04:35:58    2015-11-30 04:35:58
7736    16177    554    2015-11-09 06:40:18    2015-11-09 06:40:18
7737    12597    581    2013-06-20 03:07:24    2013-06-20 03:07:24
7738    11060    534    2014-07-11 19:32:34    2014-07-11 19:32:34
7739    14630    914    2015-11-22 01:55:59    2015-11-22 01:55:59
7740    12533    652    2015-05-23 23:20:26    2015-05-23 23:20:26
7741    12119    712    2014-06-18 18:50:43    2014-06-18 18:50:43
7742    12433    920    2014-03-09 12:17:05    2014-03-09 12:17:05
7743    18450    594    2013-12-03 00:14:07    2013-12-03 00:14:07
7744    11731    642    2014-08-25 07:04:28    2014-08-25 07:04:28
7745    15654    866    2014-04-15 05:22:47    2014-04-15 05:22:47
7746    18361    703    2015-11-22 22:47:52    2015-11-22 22:47:52
7747    17402    751    2013-08-20 00:07:56    2013-08-20 00:07:56
7748    18354    817    2014-05-11 11:05:00    2014-05-11 11:05:00
7749    18608    470    2013-11-04 07:27:00    2013-11-04 07:27:00
7750    12785    658    2014-11-10 12:28:51    2014-11-10 12:28:51
7751    17407    779    2014-10-20 13:21:14    2014-10-20 13:21:14
7752    14189    707    2015-12-31 19:02:24    2015-12-31 19:02:24
7753    15911    937    2014-10-19 06:50:34    2014-10-19 06:50:34
7754    13314    616    2015-04-17 06:14:20    2015-04-17 06:14:20
7755    17467    478    2013-06-03 19:21:55    2013-06-03 19:21:55
7756    15547    743    2013-09-25 04:23:51    2013-09-25 04:23:51
7757    17870    754    2015-04-21 10:15:30    2015-04-21 10:15:30
7758    13666    898    2015-05-08 12:21:26    2015-05-08 12:21:26
7759    11552    745    2014-06-17 06:49:47    2014-06-17 06:49:47
7760    15204    644    2014-06-06 06:54:27    2014-06-06 06:54:27
7761    16395    721    2014-08-26 04:19:50    2014-08-26 04:19:50
7762    19180    577    2013-09-13 08:25:02    2013-09-13 08:25:02
7763    12795    860    2013-10-05 19:39:47    2013-10-05 19:39:47
7764    11027    497    2014-12-12 21:14:22    2014-12-12 21:14:22
7765    17666    717    2015-12-12 10:49:28    2015-12-12 10:49:28
7766    18013    870    2016-02-19 06:56:20    2016-02-19 06:56:20
7767    16083    679    2013-12-06 22:46:02    2013-12-06 22:46:02
7768    15922    872    2014-04-02 20:57:03    2014-04-02 20:57:03
7769    19381    755    2014-05-30 23:08:49    2014-05-30 23:08:49
7770    10856    729    2014-08-01 01:16:59    2014-08-01 01:16:59
7771    12766    948    2013-07-31 01:17:36    2013-07-31 01:17:36
7772    11629    834    2015-08-26 19:03:40    2015-08-26 19:03:40
7773    15758    667    2013-12-21 00:26:02    2013-12-21 00:26:02
7774    14669    505    2015-04-06 01:03:04    2015-04-06 01:03:04
7775    12139    582    2013-10-10 09:52:27    2013-10-10 09:52:27
7776    14848    610    2014-07-18 07:56:26    2014-07-18 07:56:26
7777    10640    552    2015-09-04 05:11:20    2015-09-04 05:11:20
7778    17467    727    2014-07-22 04:05:32    2014-07-22 04:05:32
7779    16316    860    2014-07-21 19:36:46    2014-07-21 19:36:46
7780    12370    518    2014-02-12 23:33:29    2014-02-12 23:33:29
7781    11762    543    2015-12-22 11:13:48    2015-12-22 11:13:48
7782    19345    632    2015-10-19 00:12:29    2015-10-19 00:12:29
7783    18975    487    2015-09-26 21:36:17    2015-09-26 21:36:17
7784    10265    618    2015-08-15 18:27:10    2015-08-15 18:27:10
7785    18368    679    2013-11-20 09:21:31    2013-11-20 09:21:31
7786    11323    816    2013-09-23 00:44:08    2013-09-23 00:44:08
7787    13963    510    2015-02-03 13:08:23    2015-02-03 13:08:23
7788    18789    587    2014-01-24 05:56:43    2014-01-24 05:56:43
7789    14157    608    2014-06-15 01:22:22    2014-06-15 01:22:22
7790    19214    893    2015-03-13 18:02:06    2015-03-13 18:02:06
7791    17765    511    2013-12-10 23:46:29    2013-12-10 23:46:29
7792    12329    905    2014-08-26 22:24:30    2014-08-26 22:24:30
7793    15834    748    2015-06-20 22:09:28    2015-06-20 22:09:28
7794    13737    806    2013-08-28 23:08:25    2013-08-28 23:08:25
7795    16859    549    2014-05-05 03:36:05    2014-05-05 03:36:05
7796    18694    555    2015-05-10 14:37:48    2015-05-10 14:37:48
7797    11337    908    2014-04-13 06:15:38    2014-04-13 06:15:38
7798    11309    836    2013-06-15 07:13:14    2013-06-15 07:13:14
7799    10246    838    2015-05-21 23:18:18    2015-05-21 23:18:18
7800    15780    699    2014-06-02 05:58:52    2014-06-02 05:58:52
7801    14144    741    2016-03-17 23:08:38    2016-03-17 23:08:38
7802    18339    875    2014-09-06 16:55:05    2014-09-06 16:55:05
7803    19528    694    2014-01-13 05:19:17    2014-01-13 05:19:17
7804    12015    631    2014-03-20 11:01:05    2014-03-20 11:01:05
7805    18425    509    2014-04-09 04:17:44    2014-04-09 04:17:44
7806    19454    612    2013-08-07 23:32:29    2013-08-07 23:32:29
7807    10256    591    2016-03-04 13:57:34    2016-03-04 13:57:34
7808    16571    583    2014-03-17 21:17:36    2014-03-17 21:17:36
7809    19861    796    2014-02-26 20:14:12    2014-02-26 20:14:12
7810    16492    477    2016-04-06 01:56:04    2016-04-06 01:56:04
7811    17862    776    2013-08-16 17:23:06    2013-08-16 17:23:06
7812    18857    613    2013-11-04 04:10:57    2013-11-04 04:10:57
7813    12913    644    2014-04-16 14:51:21    2014-04-16 14:51:21
7814    19960    611    2015-08-28 17:32:45    2015-08-28 17:32:45
7815    11138    903    2013-08-14 10:44:26    2013-08-14 10:44:26
7816    13403    647    2014-10-27 23:19:31    2014-10-27 23:19:31
7817    16455    893    2013-08-11 07:36:25    2013-08-11 07:36:25
7818    10925    485    2015-10-16 08:16:56    2015-10-16 08:16:56
7819    16520    537    2014-06-14 02:07:19    2014-06-14 02:07:19
7820    14636    866    2013-10-20 15:24:15    2013-10-20 15:24:15
7821    18194    595    2014-04-14 23:50:50    2014-04-14 23:50:50
7822    14370    643    2013-09-30 20:32:46    2013-09-30 20:32:46
7823    18851    509    2014-12-24 22:49:25    2014-12-24 22:49:25
7824    15972    911    2014-09-16 22:13:23    2014-09-16 22:13:23
7825    19751    956    2015-05-17 13:09:06    2015-05-17 13:09:06
7826    12858    837    2014-10-08 08:24:58    2014-10-08 08:24:58
7827    18867    725    2014-10-29 20:29:16    2014-10-29 20:29:16
7828    16841    534    2015-02-13 19:02:18    2015-02-13 19:02:18
7829    12514    683    2014-11-07 11:32:43    2014-11-07 11:32:43
7830    14429    924    2014-09-18 22:35:06    2014-09-18 22:35:06
7831    16077    600    2014-11-21 03:18:30    2014-11-21 03:18:30
7832    16041    674    2013-12-08 23:41:34    2013-12-08 23:41:34
7833    12195    961    2015-08-20 17:26:15    2015-08-20 17:26:15
7834    11483    930    2014-09-13 13:57:43    2014-09-13 13:57:43
7835    14862    625    2014-12-11 18:00:17    2014-12-11 18:00:17
7836    14608    810    2013-04-26 10:37:28    2013-04-26 10:37:28
7837    15468    564    2015-06-05 11:01:10    2015-06-05 11:01:10
7838    19484    753    2013-12-01 17:52:47    2013-12-01 17:52:47
7839    17800    879    2013-07-03 06:43:14    2013-07-03 06:43:14
7840    15654    554    2014-03-29 12:13:18    2014-03-29 12:13:18
7841    10002    480    2016-01-15 02:55:03    2016-01-15 02:55:03
7842    15795    698    2013-08-06 21:21:59    2013-08-06 21:21:59
7843    14272    939    2014-11-22 03:14:22    2014-11-22 03:14:22
7844    10231    734    2013-04-29 10:55:04    2013-04-29 10:55:04
7845    14103    762    2013-11-23 12:33:08    2013-11-23 12:33:08
7846    15718    714    2014-03-02 01:20:43    2014-03-02 01:20:43
7847    16084    559    2014-01-02 11:24:33    2014-01-02 11:24:33
7848    18280    543    2014-11-18 15:36:03    2014-11-18 15:36:03
7849    11835    523    2013-11-30 04:41:46    2013-11-30 04:41:46
7850    16492    683    2013-10-07 14:19:04    2013-10-07 14:19:04
7851    16318    815    2014-03-05 23:04:11    2014-03-05 23:04:11
7852    17936    933    2015-06-13 08:53:26    2015-06-13 08:53:26
7853    10795    902    2014-11-06 02:59:52    2014-11-06 02:59:52
7854    16865    952    2016-02-27 14:47:18    2016-02-27 14:47:18
7855    17586    496    2013-09-03 20:39:50    2013-09-03 20:39:50
7856    12332    837    2015-02-23 07:07:50    2015-02-23 07:07:50
7857    11739    589    2014-04-23 05:43:45    2014-04-23 05:43:45
7858    11995    960    2013-06-21 03:26:41    2013-06-21 03:26:41
7859    11952    669    2016-02-20 03:10:20    2016-02-20 03:10:20
7860    19665    718    2013-11-12 15:13:18    2013-11-12 15:13:18
7861    14914    957    2015-12-05 02:35:03    2015-12-05 02:35:03
7862    15158    679    2014-09-05 17:06:13    2014-09-05 17:06:13
7863    14987    759    2013-09-04 17:56:33    2013-09-04 17:56:33
7864    13085    839    2013-09-27 00:03:00    2013-09-27 00:03:00
7865    14831    723    2014-08-15 19:19:43    2014-08-15 19:19:43
7866    17250    676    2013-12-20 13:23:28    2013-12-20 13:23:28
7867    13635    776    2013-11-01 03:27:38    2013-11-01 03:27:38
7868    12080    478    2013-07-08 16:07:45    2013-07-08 16:07:45
7869    17537    542    2013-07-27 11:12:36    2013-07-27 11:12:36
7870    17296    853    2015-12-09 13:19:48    2015-12-09 13:19:48
7871    17151    644    2015-10-21 18:18:35    2015-10-21 18:18:35
7872    14427    949    2013-05-07 18:07:35    2013-05-07 18:07:35
7873    17144    581    2016-02-03 05:48:23    2016-02-03 05:48:23
7874    18039    568    2015-04-25 07:27:52    2015-04-25 07:27:52
7875    19927    747    2014-01-11 05:19:17    2014-01-11 05:19:17
7876    15469    700    2014-05-14 05:56:51    2014-05-14 05:56:51
7877    15778    623    2015-12-09 01:31:18    2015-12-09 01:31:18
7878    19271    550    2015-03-31 17:00:34    2015-03-31 17:00:34
7879    14309    949    2013-07-19 09:37:25    2013-07-19 09:37:25
7880    15836    727    2015-03-21 14:08:10    2015-03-21 14:08:10
7881    17982    676    2014-04-11 15:32:54    2014-04-11 15:32:54
7882    15882    655    2014-06-18 14:56:05    2014-06-18 14:56:05
7883    18625    791    2013-08-22 20:34:40    2013-08-22 20:34:40
7884    10001    756    2013-10-16 08:45:50    2013-10-16 08:45:50
7885    17988    735    2014-05-01 00:45:47    2014-05-01 00:45:47
7886    18588    687    2014-04-29 13:05:58    2014-04-29 13:05:58
7887    12680    706    2014-02-05 20:38:10    2014-02-05 20:38:10
7888    10277    690    2013-05-30 12:59:47    2013-05-30 12:59:47
7889    13295    681    2013-09-06 07:16:01    2013-09-06 07:16:01
7890    12249    948    2016-04-16 00:24:48    2016-04-16 00:24:48
7891    16386    754    2014-03-22 09:21:13    2014-03-22 09:21:13
7892    15612    558    2014-07-19 20:50:55    2014-07-19 20:50:55
7893    13379    518    2015-02-07 13:06:45    2015-02-07 13:06:45
7894    13062    621    2015-04-25 23:18:17    2015-04-25 23:18:17
7895    18533    749    2014-12-20 09:18:11    2014-12-20 09:18:11
7896    17997    814    2014-12-26 19:18:44    2014-12-26 19:18:44
7897    10386    744    2015-01-07 09:39:19    2015-01-07 09:39:19
7898    16709    793    2015-01-19 13:45:00    2015-01-19 13:45:00
7899    12344    633    2014-06-11 17:22:26    2014-06-11 17:22:26
7900    15059    752    2014-04-09 11:20:15    2014-04-09 11:20:15
7901    19878    935    2016-02-22 13:19:07    2016-02-22 13:19:07
7902    12320    513    2014-10-04 19:24:19    2014-10-04 19:24:19
7903    15894    894    2015-07-17 12:57:30    2015-07-17 12:57:30
7904    18244    540    2014-08-02 06:58:20    2014-08-02 06:58:20
7905    15202    748    2014-11-14 02:32:11    2014-11-14 02:32:11
7906    19349    640    2015-03-16 15:19:53    2015-03-16 15:19:53
7907    14044    913    2015-03-24 12:16:23    2015-03-24 12:16:23
7908    10352    712    2013-06-30 21:35:57    2013-06-30 21:35:57
7909    14068    593    2015-12-05 14:50:21    2015-12-05 14:50:21
7910    15999    481    2015-07-07 04:14:49    2015-07-07 04:14:49
7911    13679    736    2015-05-01 18:40:54    2015-05-01 18:40:54
7912    15026    559    2013-12-03 15:46:21    2013-12-03 15:46:21
7913    16327    553    2014-07-08 20:54:19    2014-07-08 20:54:19
7914    17855    875    2014-05-12 06:56:38    2014-05-12 06:56:38
7915    15749    517    2014-12-25 17:42:36    2014-12-25 17:42:36
7916    15059    691    2015-08-01 08:58:26    2015-08-01 08:58:26
7917    16946    954    2014-09-07 02:11:37    2014-09-07 02:11:37
7918    11729    733    2015-07-12 10:02:56    2015-07-12 10:02:56
7919    14156    945    2016-02-24 16:29:14    2016-02-24 16:29:14
7920    16086    913    2014-11-07 10:05:09    2014-11-07 10:05:09
7921    13515    693    2015-05-20 22:10:12    2015-05-20 22:10:12
7922    14657    868    2013-12-26 19:15:59    2013-12-26 19:15:59
7923    14669    828    2016-04-02 02:07:29    2016-04-02 02:07:29
7924    14446    673    2015-10-12 01:15:30    2015-10-12 01:15:30
7925    17382    769    2014-05-22 14:21:29    2014-05-22 14:21:29
7926    15526    786    2013-07-31 12:15:43    2013-07-31 12:15:43
7927    19836    741    2015-05-08 02:53:42    2015-05-08 02:53:42
7928    14292    716    2015-02-07 15:59:01    2015-02-07 15:59:01
7929    15174    942    2015-08-14 08:16:29    2015-08-14 08:16:29
7930    17276    547    2015-09-30 14:14:45    2015-09-30 14:14:45
7931    10011    641    2015-03-30 07:44:18    2015-03-30 07:44:18
7932    19948    577    2015-02-08 13:02:49    2015-02-08 13:02:49
7933    12370    714    2016-02-12 19:56:03    2016-02-12 19:56:03
7934    14052    641    2013-10-24 00:50:37    2013-10-24 00:50:37
7935    12311    794    2014-07-28 23:15:48    2014-07-28 23:15:48
7936    16022    708    2014-04-20 06:20:58    2014-04-20 06:20:58
7937    10174    517    2014-08-17 09:28:40    2014-08-17 09:28:40
7938    18932    921    2015-07-10 09:28:35    2015-07-10 09:28:35
7939    10209    689    2014-11-29 04:52:00    2014-11-29 04:52:00
7940    16269    714    2013-10-26 07:21:10    2013-10-26 07:21:10
7941    17925    664    2013-06-03 03:19:14    2013-06-03 03:19:14
7942    19814    619    2013-10-29 00:25:59    2013-10-29 00:25:59
7943    18819    658    2015-01-13 09:52:58    2015-01-13 09:52:58
7944    19884    860    2014-06-04 15:21:16    2014-06-04 15:21:16
7945    15766    608    2013-11-20 07:34:43    2013-11-20 07:34:43
7946    19507    758    2015-08-13 00:14:39    2015-08-13 00:14:39
7947    12594    914    2014-11-28 01:47:13    2014-11-28 01:47:13
7948    18951    490    2014-02-24 03:51:01    2014-02-24 03:51:01
7949    14263    750    2014-06-19 04:10:56    2014-06-19 04:10:56
7950    11710    801    2013-07-28 17:00:25    2013-07-28 17:00:25
7951    15080    748    2015-11-20 10:18:54    2015-11-20 10:18:54
7952    14860    654    2013-09-14 23:34:33    2013-09-14 23:34:33
7953    15785    637    2016-04-16 02:15:06    2016-04-16 02:15:06
7954    12916    721    2013-12-10 15:35:09    2013-12-10 15:35:09
7955    18518    736    2015-10-07 06:30:15    2015-10-07 06:30:15
7956    19402    518    2014-07-20 17:16:10    2014-07-20 17:16:10
7957    18328    931    2015-05-22 08:47:45    2015-05-22 08:47:45
7958    12823    717    2015-04-10 12:54:16    2015-04-10 12:54:16
7959    18594    658    2014-07-29 06:13:11    2014-07-29 06:13:11
7960    14913    585    2015-01-03 07:23:32    2015-01-03 07:23:32
7961    10935    674    2013-07-20 16:05:13    2013-07-20 16:05:13
7962    15003    872    2013-07-02 23:58:07    2013-07-02 23:58:07
7963    16335    779    2015-03-09 06:12:45    2015-03-09 06:12:45
7964    18021    829    2015-10-04 00:27:41    2015-10-04 00:27:41
7965    19054    817    2014-06-11 12:32:44    2014-06-11 12:32:44
7966    16694    825    2013-05-08 18:56:14    2013-05-08 18:56:14
7967    13154    493    2013-08-26 00:57:27    2013-08-26 00:57:27
7968    11944    798    2015-12-31 12:40:30    2015-12-31 12:40:30
7969    19474    814    2015-12-15 22:30:27    2015-12-15 22:30:27
7970    18593    922    2014-04-25 22:31:42    2014-04-25 22:31:42
7971    13364    708    2014-03-31 09:15:11    2014-03-31 09:15:11
7972    13109    914    2013-09-02 17:25:16    2013-09-02 17:25:16
7973    19715    610    2015-02-16 06:22:04    2015-02-16 06:22:04
7974    12230    590    2015-01-25 15:05:51    2015-01-25 15:05:51
7975    19730    624    2015-03-07 13:57:28    2015-03-07 13:57:28
7976    15901    698    2013-05-23 20:07:10    2013-05-23 20:07:10
7977    15887    657    2014-07-07 11:23:20    2014-07-07 11:23:20
7978    14820    768    2015-01-09 08:20:38    2015-01-09 08:20:38
7979    17558    624    2016-04-20 09:05:19    2016-04-20 09:05:19
7980    14300    560    2015-06-14 03:10:15    2015-06-14 03:10:15
7981    19579    894    2015-09-01 14:41:24    2015-09-01 14:41:24
7982    11735    868    2013-07-15 13:20:06    2013-07-15 13:20:06
7983    11636    817    2015-09-22 07:27:23    2015-09-22 07:27:23
7984    17327    747    2014-06-30 11:45:50    2014-06-30 11:45:50
7985    12536    577    2015-03-09 02:23:01    2015-03-09 02:23:01
7986    12850    581    2015-02-11 08:28:10    2015-02-11 08:28:10
7987    17213    911    2014-03-18 20:29:06    2014-03-18 20:29:06
7988    10470    572    2013-12-17 17:15:58    2013-12-17 17:15:58
7989    10937    592    2015-11-13 15:45:03    2015-11-13 15:45:03
7990    18613    886    2013-05-12 13:16:54    2013-05-12 13:16:54
7991    19802    826    2014-08-22 17:19:36    2014-08-22 17:19:36
7992    17314    928    2015-05-05 03:04:52    2015-05-05 03:04:52
7993    16020    720    2015-01-12 08:33:59    2015-01-12 08:33:59
7994    11884    582    2013-07-19 10:17:50    2013-07-19 10:17:50
7995    15549    906    2013-09-14 07:31:30    2013-09-14 07:31:30
7996    11236    495    2013-10-28 17:32:35    2013-10-28 17:32:35
7997    18946    952    2013-12-14 15:56:46    2013-12-14 15:56:46
7998    18252    589    2015-02-19 20:54:21    2015-02-19 20:54:21
7999    12730    573    2014-03-31 02:27:24    2014-03-31 02:27:24
8000    13244    863    2014-04-22 13:10:36    2014-04-22 13:10:36
8001    15413    530    2013-07-21 15:51:58    2013-07-21 15:51:58
8002    15114    809    2015-01-20 22:04:15    2015-01-20 22:04:15
8003    17496    656    2014-03-14 05:01:29    2014-03-14 05:01:29
8004    12423    518    2015-10-01 19:04:04    2015-10-01 19:04:04
8005    14064    876    2015-04-29 18:47:10    2015-04-29 18:47:10
8006    10888    813    2015-02-25 22:07:01    2015-02-25 22:07:01
8007    12302    558    2015-10-11 19:11:39    2015-10-11 19:11:39
8008    13629    579    2014-05-11 22:46:45    2014-05-11 22:46:45
8009    11274    634    2014-01-16 20:10:37    2014-01-16 20:10:37
8010    17326    521    2013-12-12 10:31:46    2013-12-12 10:31:46
8011    19809    563    2014-12-13 11:42:19    2014-12-13 11:42:19
8012    12994    539    2014-01-17 22:17:58    2014-01-17 22:17:58
8013    19318    480    2015-12-04 11:03:22    2015-12-04 11:03:22
8014    18712    671    2014-01-03 16:25:14    2014-01-03 16:25:14
8015    13826    813    2015-09-11 07:40:41    2015-09-11 07:40:41
8016    13148    931    2013-07-06 20:23:58    2013-07-06 20:23:58
8017    12943    660    2015-05-19 16:54:16    2015-05-19 16:54:16
8018    10382    933    2015-11-27 10:39:42    2015-11-27 10:39:42
8019    16927    667    2014-07-22 22:29:32    2014-07-22 22:29:32
8020    12156    687    2015-01-08 18:37:44    2015-01-08 18:37:44
8021    16087    485    2013-09-16 00:52:51    2013-09-16 00:52:51
8022    19632    585    2013-04-25 18:10:20    2013-04-25 18:10:20
8023    14905    649    2014-02-18 12:13:54    2014-02-18 12:13:54
8024    19110    818    2014-02-22 21:39:55    2014-02-22 21:39:55
8025    18684    829    2014-01-29 17:57:14    2014-01-29 17:57:14
8026    16858    822    2015-11-11 11:22:33    2015-11-11 11:22:33
8027    16641    866    2013-05-14 08:38:18    2013-05-14 08:38:18
8028    10107    668    2014-08-13 15:10:28    2014-08-13 15:10:28
8029    10681    803    2015-02-15 10:56:10    2015-02-15 10:56:10
8030    18536    824    2014-05-30 10:55:01    2014-05-30 10:55:01
8031    14166    878    2013-10-15 10:23:05    2013-10-15 10:23:05
8032    12916    922    2013-09-27 19:56:43    2013-09-27 19:56:43
8033    17195    695    2016-03-06 23:52:29    2016-03-06 23:52:29
8034    13421    737    2013-06-17 23:45:55    2013-06-17 23:45:55
8035    11027    742    2015-11-04 18:35:50    2015-11-04 18:35:50
8036    14860    915    2013-12-30 08:57:29    2013-12-30 08:57:29
8037    19188    830    2014-11-03 18:06:18    2014-11-03 18:06:18
8038    16981    923    2015-09-04 07:04:27    2015-09-04 07:04:27
8039    10358    524    2013-09-08 23:26:21    2013-09-08 23:26:21
8040    11306    468    2016-02-22 04:28:22    2016-02-22 04:28:22
8041    13793    683    2015-06-26 02:11:32    2015-06-26 02:11:32
8042    16515    867    2015-07-21 15:57:35    2015-07-21 15:57:35
8043    19333    876    2014-12-07 08:02:56    2014-12-07 08:02:56
8044    11384    854    2014-02-09 18:13:13    2014-02-09 18:13:13
8045    12547    878    2015-03-07 17:50:38    2015-03-07 17:50:38
8046    15511    934    2014-11-23 03:33:19    2014-11-23 03:33:19
8047    11276    480    2014-04-08 03:48:13    2014-04-08 03:48:13
8048    19271    466    2013-08-21 08:36:08    2013-08-21 08:36:08
8049    16523    919    2014-12-21 18:19:18    2014-12-21 18:19:18
8050    19447    641    2016-02-27 03:59:29    2016-02-27 03:59:29
8051    15020    539    2014-02-02 12:55:14    2014-02-02 12:55:14
8052    15591    794    2014-10-25 07:21:11    2014-10-25 07:21:11
8053    12751    736    2013-09-08 02:56:11    2013-09-08 02:56:11
8054    12543    793    2015-12-28 04:58:02    2015-12-28 04:58:02
8055    12190    921    2014-02-28 05:35:31    2014-02-28 05:35:31
8056    18643    746    2016-04-03 14:36:20    2016-04-03 14:36:20
8057    12786    865    2015-06-21 08:51:16    2015-06-21 08:51:16
8058    10657    524    2016-04-10 16:47:39    2016-04-10 16:47:39
8059    12604    723    2016-02-06 22:38:57    2016-02-06 22:38:57
8060    17198    836    2015-05-05 23:55:20    2015-05-05 23:55:20
8061    17308    489    2014-09-05 01:57:15    2014-09-05 01:57:15
8062    16329    494    2015-09-26 02:44:01    2015-09-26 02:44:01
8063    16094    578    2014-11-05 23:42:38    2014-11-05 23:42:38
8064    18703    897    2015-10-30 08:28:32    2015-10-30 08:28:32
8065    13449    559    2015-05-28 06:05:35    2015-05-28 06:05:35
8066    10962    821    2014-03-15 03:11:43    2014-03-15 03:11:43
8067    15852    715    2014-12-09 15:42:10    2014-12-09 15:42:10
8068    17238    476    2015-05-22 03:55:33    2015-05-22 03:55:33
8069    15015    872    2014-11-15 07:38:36    2014-11-15 07:38:36
8070    12335    791    2013-12-22 03:56:41    2013-12-22 03:56:41
8071    14588    810    2014-05-19 14:14:09    2014-05-19 14:14:09
8072    13617    604    2013-06-26 08:24:38    2013-06-26 08:24:38
8073    11941    850    2016-02-23 10:47:43    2016-02-23 10:47:43
8074    19051    838    2014-01-12 15:54:57    2014-01-12 15:54:57
8075    15579    855    2014-10-11 10:39:59    2014-10-11 10:39:59
8076    16463    743    2013-06-21 13:14:05    2013-06-21 13:14:05
8077    18516    748    2015-09-25 18:06:29    2015-09-25 18:06:29
8078    15139    669    2014-01-14 01:08:01    2014-01-14 01:08:01
8079    15858    703    2013-10-27 12:19:34    2013-10-27 12:19:34
8080    19169    675    2014-04-22 03:35:01    2014-04-22 03:35:01
8081    18061    520    2015-04-23 21:25:44    2015-04-23 21:25:44
8082    16858    551    2013-11-18 03:07:01    2013-11-18 03:07:01
8083    12460    637    2015-03-29 04:49:55    2015-03-29 04:49:55
8084    12498    787    2014-06-13 05:23:25    2014-06-13 05:23:25
8085    18333    848    2015-06-10 05:06:46    2015-06-10 05:06:46
8086    18230    579    2015-02-11 03:52:59    2015-02-11 03:52:59
8087    18980    936    2014-01-17 13:36:46    2014-01-17 13:36:46
8088    15353    592    2015-08-10 17:04:59    2015-08-10 17:04:59
8089    14404    466    2014-03-08 19:28:11    2014-03-08 19:28:11
8090    19227    859    2014-08-03 21:26:52    2014-08-03 21:26:52
8091    13705    892    2015-10-09 21:20:20    2015-10-09 21:20:20
8092    16599    546    2015-05-25 20:09:58    2015-05-25 20:09:58
8093    19142    642    2014-06-11 23:03:50    2014-06-11 23:03:50
8094    13662    777    2015-04-02 19:29:40    2015-04-02 19:29:40
8095    14275    545    2014-06-30 21:52:44    2014-06-30 21:52:44
8096    17814    701    2015-06-15 19:21:36    2015-06-15 19:21:36
8097    12723    913    2014-05-20 19:27:37    2014-05-20 19:27:37
8098    10988    667    2013-06-18 06:23:20    2013-06-18 06:23:20
8099    18141    944    2015-12-17 17:51:41    2015-12-17 17:51:41
8100    11698    759    2013-11-20 19:39:07    2013-11-20 19:39:07
8101    13092    635    2014-06-24 11:35:30    2014-06-24 11:35:30
8102    13003    468    2015-03-21 20:45:53    2015-03-21 20:45:53
8103    17438    690    2015-04-17 04:32:54    2015-04-17 04:32:54
8104    16381    491    2016-04-10 01:56:30    2016-04-10 01:56:30
8105    14736    886    2014-06-03 01:01:04    2014-06-03 01:01:04
8106    10178    724    2014-03-25 17:25:16    2014-03-25 17:25:16
8107    12249    861    2015-10-23 21:42:05    2015-10-23 21:42:05
8108    10400    474    2016-02-29 12:35:04    2016-02-29 12:35:04
8109    13710    580    2014-08-19 13:06:44    2014-08-19 13:06:44
8110    13777    616    2015-03-19 03:21:10    2015-03-19 03:21:10
8111    13450    671    2013-10-21 22:13:44    2013-10-21 22:13:44
8112    19026    761    2014-09-22 07:01:27    2014-09-22 07:01:27
8113    10491    735    2013-08-12 18:59:19    2013-08-12 18:59:19
8114    11013    641    2013-09-07 06:06:46    2013-09-07 06:06:46
8115    14355    514    2014-11-04 12:10:10    2014-11-04 12:10:10
8116    11408    803    2015-01-17 05:24:12    2015-01-17 05:24:12
8117    19316    960    2016-03-14 11:20:11    2016-03-14 11:20:11
8118    13707    859    2015-06-02 02:29:11    2015-06-02 02:29:11
8119    14430    582    2013-08-07 00:39:47    2013-08-07 00:39:47
8120    18412    542    2015-03-28 11:09:05    2015-03-28 11:09:05
8121    10475    718    2015-05-03 08:26:15    2015-05-03 08:26:15
8122    11015    675    2015-02-18 12:06:11    2015-02-18 12:06:11
8123    10576    567    2014-05-20 02:32:16    2014-05-20 02:32:16
8124    19673    539    2014-02-13 09:57:37    2014-02-13 09:57:37
8125    19540    957    2015-11-19 05:34:24    2015-11-19 05:34:24
8126    14862    736    2015-10-19 08:40:27    2015-10-19 08:40:27
8127    17773    797    2016-01-18 00:46:32    2016-01-18 00:46:32
8128    16153    908    2013-10-31 20:17:27    2013-10-31 20:17:27
8129    11785    907    2015-07-01 03:12:58    2015-07-01 03:12:58
8130    18765    556    2013-06-18 02:14:03    2013-06-18 02:14:03
8131    14047    948    2015-06-02 11:27:06    2015-06-02 11:27:06
8132    14113    532    2014-06-17 19:21:59    2014-06-17 19:21:59
8133    17075    909    2015-10-06 04:47:06    2015-10-06 04:47:06
8134    16100    942    2015-11-06 11:35:08    2015-11-06 11:35:08
8135    17560    531    2014-05-09 00:51:04    2014-05-09 00:51:04
8136    16367    787    2015-04-06 04:30:12    2015-04-06 04:30:12
8137    15857    728    2014-10-21 15:45:05    2014-10-21 15:45:05
8138    15507    710    2015-01-27 17:50:00    2015-01-27 17:50:00
8139    14697    854    2015-04-28 09:07:35    2015-04-28 09:07:35
8140    11972    822    2015-11-06 01:14:24    2015-11-06 01:14:24
8141    14165    840    2014-04-15 12:03:54    2014-04-15 12:03:54
8142    14588    697    2015-03-25 02:16:15    2015-03-25 02:16:15
8143    16831    786    2013-07-06 05:01:29    2013-07-06 05:01:29
8144    18071    585    2015-01-30 20:21:52    2015-01-30 20:21:52
8145    10498    930    2016-03-07 04:40:14    2016-03-07 04:40:14
8146    12664    904    2013-11-27 04:05:06    2013-11-27 04:05:06
8147    16084    628    2013-10-09 07:54:56    2013-10-09 07:54:56
8148    14361    628    2013-04-30 07:26:20    2013-04-30 07:26:20
8149    11212    902    2014-06-28 11:19:38    2014-06-28 11:19:38
8150    18772    593    2014-06-09 09:14:12    2014-06-09 09:14:12
8151    13306    751    2014-02-13 20:10:05    2014-02-13 20:10:05
8152    15918    734    2014-01-15 09:57:04    2014-01-15 09:57:04
8153    10168    746    2014-11-29 23:27:06    2014-11-29 23:27:06
8154    14756    950    2014-12-26 11:49:13    2014-12-26 11:49:13
8155    10792    808    2013-11-28 16:42:14    2013-11-28 16:42:14
8156    12259    819    2014-04-23 16:15:40    2014-04-23 16:15:40
8157    19053    751    2015-06-21 19:46:30    2015-06-21 19:46:30
8158    13625    937    2013-12-19 01:23:16    2013-12-19 01:23:16
8159    11726    831    2014-12-21 17:17:30    2014-12-21 17:17:30
8160    12631    953    2013-10-11 01:49:24    2013-10-11 01:49:24
8161    10130    512    2013-11-05 13:21:17    2013-11-05 13:21:17
8162    13276    956    2014-05-31 01:09:04    2014-05-31 01:09:04
8163    14347    579    2015-05-18 18:10:10    2015-05-18 18:10:10
8164    10410    513    2015-03-01 08:39:20    2015-03-01 08:39:20
8165    13192    933    2014-07-21 05:47:00    2014-07-21 05:47:00
8166    13438    694    2015-03-06 06:28:36    2015-03-06 06:28:36
8167    14931    933    2016-04-14 22:32:20    2016-04-14 22:32:20
8168    10260    769    2016-01-27 09:58:06    2016-01-27 09:58:06
8169    12211    545    2015-08-21 11:32:26    2015-08-21 11:32:26
8170    15736    848    2014-02-18 09:18:10    2014-02-18 09:18:10
8171    10728    737    2014-06-20 13:23:46    2014-06-20 13:23:46
8172    12430    780    2015-04-10 02:53:22    2015-04-10 02:53:22
8173    18391    946    2015-02-01 22:43:26    2015-02-01 22:43:26
8174    19108    497    2014-11-22 17:25:15    2014-11-22 17:25:15
8175    12484    732    2014-09-25 08:08:47    2014-09-25 08:08:47
8176    12536    852    2015-06-26 04:24:02    2015-06-26 04:24:02
8177    17742    961    2015-12-09 23:00:07    2015-12-09 23:00:07
8178    13022    731    2016-01-23 22:54:12    2016-01-23 22:54:12
8179    13000    844    2013-08-29 22:00:56    2013-08-29 22:00:56
8180    13168    945    2013-10-09 17:03:52    2013-10-09 17:03:52
8181    13938    692    2016-03-05 15:06:40    2016-03-05 15:06:40
8182    13628    652    2014-07-20 09:16:04    2014-07-20 09:16:04
8183    19525    625    2015-02-24 20:37:54    2015-02-24 20:37:54
8184    10311    578    2015-03-13 03:43:21    2015-03-13 03:43:21
8185    12601    960    2014-09-23 10:13:18    2014-09-23 10:13:18
8186    17710    862    2013-11-21 22:36:57    2013-11-21 22:36:57
8187    18780    629    2016-01-02 21:08:03    2016-01-02 21:08:03
8188    10837    700    2016-02-10 19:54:49    2016-02-10 19:54:49
8189    16857    833    2013-12-26 01:06:37    2013-12-26 01:06:37
8190    11793    592    2015-07-04 13:39:53    2015-07-04 13:39:53
8191    15739    933    2013-10-08 07:12:02    2013-10-08 07:12:02
8192    14150    722    2015-06-13 20:33:23    2015-06-13 20:33:23
8193    13870    512    2015-07-13 02:54:29    2015-07-13 02:54:29
8194    10790    526    2014-09-11 10:57:41    2014-09-11 10:57:41
8195    13526    639    2013-11-05 11:28:12    2013-11-05 11:28:12
8196    14531    702    2013-10-16 20:27:14    2013-10-16 20:27:14
8197    13252    823    2014-08-14 13:43:56    2014-08-14 13:43:56
8198    12494    960    2014-05-11 22:05:56    2014-05-11 22:05:56
8199    18426    916    2013-06-12 09:54:28    2013-06-12 09:54:28
8200    16201    888    2014-02-18 12:16:48    2014-02-18 12:16:48
8201    11846    552    2013-12-05 02:51:57    2013-12-05 02:51:57
8202    19835    721    2014-04-02 18:21:14    2014-04-02 18:21:14
8203    11858    704    2014-10-16 16:55:21    2014-10-16 16:55:21
8204    13444    704    2015-04-30 09:45:39    2015-04-30 09:45:39
8205    18053    608    2013-08-12 09:32:01    2013-08-12 09:32:01
8206    15167    576    2014-07-31 19:44:32    2014-07-31 19:44:32
8207    18671    817    2013-12-28 14:47:54    2013-12-28 14:47:54
8208    19924    533    2015-06-05 01:48:57    2015-06-05 01:48:57
8209    19555    667    2015-02-19 05:49:47    2015-02-19 05:49:47
8210    10255    925    2014-09-09 21:02:12    2014-09-09 21:02:12
8211    10389    515    2015-11-04 05:19:24    2015-11-04 05:19:24
8212    16438    926    2013-12-03 14:05:26    2013-12-03 14:05:26
8213    18940    761    2015-10-28 23:31:16    2015-10-28 23:31:16
8214    12272    692    2015-10-13 07:22:42    2015-10-13 07:22:42
8215    10152    785    2016-02-15 07:45:28    2016-02-15 07:45:28
8216    19219    750    2015-01-07 15:38:56    2015-01-07 15:38:56
8217    15425    917    2014-04-25 04:52:13    2014-04-25 04:52:13
8218    12971    867    2014-05-04 15:57:15    2014-05-04 15:57:15
8219    14681    505    2013-12-27 10:10:14    2013-12-27 10:10:14
8220    14213    571    2014-05-18 08:01:16    2014-05-18 08:01:16
8221    11360    705    2014-04-29 17:09:12    2014-04-29 17:09:12
8222    12703    871    2015-01-11 18:27:28    2015-01-11 18:27:28
8223    12091    526    2015-06-01 21:33:51    2015-06-01 21:33:51
8224    13067    632    2015-10-28 08:40:11    2015-10-28 08:40:11
8225    17731    574    2014-10-06 20:21:20    2014-10-06 20:21:20
8226    19356    914    2014-01-03 20:27:58    2014-01-03 20:27:58
8227    19718    663    2013-05-16 10:09:24    2013-05-16 10:09:24
8228    12462    556    2014-06-05 01:13:19    2014-06-05 01:13:19
8229    12737    603    2015-10-30 17:18:18    2015-10-30 17:18:18
8230    14742    815    2013-10-23 02:30:51    2013-10-23 02:30:51
8231    19214    852    2014-05-19 13:19:37    2014-05-19 13:19:37
8232    15250    834    2014-11-12 22:27:13    2014-11-12 22:27:13
8233    16924    691    2014-08-08 22:26:27    2014-08-08 22:26:27
8234    10135    800    2015-01-27 03:21:33    2015-01-27 03:21:33
8235    14937    719    2015-09-29 01:44:31    2015-09-29 01:44:31
8236    18853    616    2014-07-26 09:16:23    2014-07-26 09:16:23
8237    14944    546    2016-01-08 16:39:39    2016-01-08 16:39:39
8238    11701    732    2016-02-06 18:29:50    2016-02-06 18:29:50
8239    16106    494    2013-11-03 01:15:27    2013-11-03 01:15:27
8240    15778    653    2015-11-11 08:57:58    2015-11-11 08:57:58
8241    14735    712    2014-05-31 21:32:11    2014-05-31 21:32:11
8242    14789    662    2013-09-20 06:49:42    2013-09-20 06:49:42
8243    10938    475    2016-01-11 02:19:30    2016-01-11 02:19:30
8244    13087    710    2014-10-03 06:21:51    2014-10-03 06:21:51
8245    18686    672    2013-12-02 04:10:09    2013-12-02 04:10:09
8246    12926    954    2013-06-02 23:34:44    2013-06-02 23:34:44
8247    16576    927    2014-02-25 05:45:30    2014-02-25 05:45:30
8248    12729    910    2016-03-09 22:45:55    2016-03-09 22:45:55
8249    16013    637    2016-02-03 13:20:00    2016-02-03 13:20:00
8250    10613    889    2014-09-18 11:05:11    2014-09-18 11:05:11
8251    15537    528    2014-01-01 04:52:01    2014-01-01 04:52:01
8252    18912    835    2014-05-02 20:12:35    2014-05-02 20:12:35
8253    12280    688    2015-09-22 01:36:35    2015-09-22 01:36:35
8254    14735    628    2014-06-26 21:00:09    2014-06-26 21:00:09
8255    11770    718    2015-10-09 22:31:34    2015-10-09 22:31:34
8256    17829    574    2016-02-09 17:09:17    2016-02-09 17:09:17
8257    10905    511    2016-04-05 01:03:09    2016-04-05 01:03:09
8258    15742    953    2014-10-07 16:30:02    2014-10-07 16:30:02
8259    14777    528    2016-02-11 04:26:28    2016-02-11 04:26:28
8260    16603    526    2014-11-09 08:35:47    2014-11-09 08:35:47
8261    10310    623    2014-07-09 10:48:03    2014-07-09 10:48:03
8262    12017    742    2014-04-10 00:55:11    2014-04-10 00:55:11
8263    19153    608    2014-07-09 17:13:01    2014-07-09 17:13:01
8264    18519    552    2013-07-23 15:47:34    2013-07-23 15:47:34
8265    17564    541    2015-09-02 15:27:17    2015-09-02 15:27:17
8266    18493    814    2015-07-15 08:53:08    2015-07-15 08:53:08
8267    15686    668    2013-08-12 08:01:56    2013-08-12 08:01:56
8268    11117    681    2016-02-11 15:47:39    2016-02-11 15:47:39
8269    13405    910    2015-08-01 09:13:39    2015-08-01 09:13:39
8270    18325    635    2015-08-05 19:39:28    2015-08-05 19:39:28
8271    19543    897    2013-09-04 20:11:23    2013-09-04 20:11:23
8272    17369    548    2015-12-14 19:53:01    2015-12-14 19:53:01
8273    15400    531    2013-10-30 17:15:39    2013-10-30 17:15:39
8274    14435    935    2013-08-05 01:09:17    2013-08-05 01:09:17
8275    15767    736    2015-07-15 23:09:30    2015-07-15 23:09:30
8276    14617    571    2014-11-25 01:27:07    2014-11-25 01:27:07
8277    17248    715    2013-10-23 21:26:06    2013-10-23 21:26:06
8278    15307    871    2015-10-04 17:35:29    2015-10-04 17:35:29
8279    11054    483    2013-07-19 01:13:20    2013-07-19 01:13:20
8280    11332    528    2015-01-23 23:28:35    2015-01-23 23:28:35
8281    12250    655    2015-05-09 11:18:24    2015-05-09 11:18:24
8282    14655    541    2015-12-30 11:03:23    2015-12-30 11:03:23
8283    19540    790    2014-09-25 07:50:03    2014-09-25 07:50:03
8284    14168    597    2014-06-20 23:12:15    2014-06-20 23:12:15
8285    18440    587    2014-06-16 16:38:06    2014-06-16 16:38:06
8286    17629    511    2013-11-20 11:17:55    2013-11-20 11:17:55
8287    19718    725    2013-11-18 17:53:51    2013-11-18 17:53:51
8288    16653    667    2015-05-18 06:20:16    2015-05-18 06:20:16
8289    16015    683    2015-07-16 06:59:38    2015-07-16 06:59:38
8290    17203    656    2014-11-19 23:16:26    2014-11-19 23:16:26
8291    18000    709    2014-02-26 00:08:48    2014-02-26 00:08:48
8292    15048    618    2013-10-31 19:02:10    2013-10-31 19:02:10
8293    15513    780    2013-10-11 00:57:00    2013-10-11 00:57:00
8294    14976    658    2014-08-03 00:51:34    2014-08-03 00:51:34
8295    18397    807    2013-12-01 22:10:14    2013-12-01 22:10:14
8296    16485    539    2016-02-03 16:14:26    2016-02-03 16:14:26
8297    17600    530    2015-04-08 10:43:38    2015-04-08 10:43:38
8298    12096    513    2014-03-09 09:53:18    2014-03-09 09:53:18
8299    19003    578    2014-06-08 03:03:44    2014-06-08 03:03:44
8300    17295    953    2016-02-18 17:11:09    2016-02-18 17:11:09
8301    17361    591    2014-06-25 03:25:05    2014-06-25 03:25:05
8302    17976    892    2014-10-24 01:55:11    2014-10-24 01:55:11
8303    17121    911    2013-06-20 21:37:12    2013-06-20 21:37:12
8304    16732    786    2013-07-24 00:53:33    2013-07-24 00:53:33
8305    12995    537    2015-10-16 22:25:13    2015-10-16 22:25:13
8306    11271    551    2014-08-29 16:52:44    2014-08-29 16:52:44
8307    16069    485    2014-07-19 08:25:13    2014-07-19 08:25:13
8308    18530    853    2016-02-07 20:42:25    2016-02-07 20:42:25
8309    15154    827    2013-07-05 01:08:48    2013-07-05 01:08:48
8310    11001    640    2014-11-15 22:15:12    2014-11-15 22:15:12
8311    18236    866    2014-02-03 16:14:14    2014-02-03 16:14:14
8312    12301    832    2015-11-19 09:21:07    2015-11-19 09:21:07
8313    17623    785    2014-09-25 02:04:57    2014-09-25 02:04:57
8314    16450    946    2014-03-15 11:13:00    2014-03-15 11:13:00
8315    14552    593    2016-03-25 08:11:47    2016-03-25 08:11:47
8316    12299    811    2014-03-13 07:40:02    2014-03-13 07:40:02
8317    19206    493    2015-05-03 09:34:08    2015-05-03 09:34:08
8318    17658    548    2015-04-16 11:10:26    2015-04-16 11:10:26
8319    15613    810    2013-09-02 09:27:54    2013-09-02 09:27:54
8320    14132    569    2016-01-26 12:00:29    2016-01-26 12:00:29
8321    10658    696    2014-06-25 20:15:06    2014-06-25 20:15:06
8322    16887    906    2014-09-04 16:03:58    2014-09-04 16:03:58
8323    13234    507    2014-07-25 17:28:52    2014-07-25 17:28:52
8324    18431    832    2013-08-17 14:54:46    2013-08-17 14:54:46
8325    15969    507    2015-12-03 15:18:16    2015-12-03 15:18:16
8326    15645    589    2015-09-22 21:16:05    2015-09-22 21:16:05
8327    19649    795    2015-08-14 11:41:13    2015-08-14 11:41:13
8328    11306    817    2015-03-21 08:23:43    2015-03-21 08:23:43
8329    10571    595    2015-01-05 23:46:47    2015-01-05 23:46:47
8330    15364    621    2015-06-17 01:15:38    2015-06-17 01:15:38
8331    15631    488    2014-05-18 16:57:30    2014-05-18 16:57:30
8332    13614    727    2015-01-05 04:30:35    2015-01-05 04:30:35
8333    14749    498    2015-03-25 14:47:27    2015-03-25 14:47:27
8334    14754    691    2013-04-25 06:59:43    2013-04-25 06:59:43
8335    16238    877    2014-10-28 04:51:50    2014-10-28 04:51:50
8336    16806    824    2015-10-31 00:46:24    2015-10-31 00:46:24
8337    16730    558    2016-03-16 16:36:32    2016-03-16 16:36:32
8338    10862    698    2015-08-30 15:45:48    2015-08-30 15:45:48
8339    15619    780    2014-11-23 18:33:49    2014-11-23 18:33:49
8340    18876    922    2013-06-15 17:56:10    2013-06-15 17:56:10
8341    15416    609    2014-08-02 09:47:15    2014-08-02 09:47:15
8342    19053    853    2013-12-07 10:18:06    2013-12-07 10:18:06
8343    18346    615    2013-10-01 07:42:09    2013-10-01 07:42:09
8344    14549    835    2015-02-02 22:22:59    2015-02-02 22:22:59
8345    15437    721    2015-04-29 21:48:52    2015-04-29 21:48:52
8346    14242    637    2014-06-11 15:36:26    2014-06-11 15:36:26
8347    11881    526    2013-11-27 06:43:14    2013-11-27 06:43:14
8348    14744    933    2015-05-27 08:26:01    2015-05-27 08:26:01
8349    12416    658    2015-11-30 05:08:09    2015-11-30 05:08:09
8350    18550    914    2014-12-23 18:03:30    2014-12-23 18:03:30
8351    10286    541    2014-06-23 01:00:34    2014-06-23 01:00:34
8352    17457    737    2015-02-07 08:14:44    2015-02-07 08:14:44
8353    11227    761    2015-01-17 16:54:56    2015-01-17 16:54:56
8354    14209    507    2015-06-21 13:20:43    2015-06-21 13:20:43
8355    10833    960    2014-08-07 22:45:54    2014-08-07 22:45:54
8356    12866    523    2014-02-26 08:38:47    2014-02-26 08:38:47
8357    12391    602    2014-09-06 18:47:58    2014-09-06 18:47:58
8358    19099    478    2013-07-16 03:18:18    2013-07-16 03:18:18
8359    11795    486    2015-06-21 01:53:50    2015-06-21 01:53:50
8360    14766    786    2013-12-23 11:15:17    2013-12-23 11:15:17
8361    17560    632    2013-05-07 05:23:21    2013-05-07 05:23:21
8362    17711    809    2014-08-18 17:23:40    2014-08-18 17:23:40
8363    11936    938    2014-06-16 13:08:39    2014-06-16 13:08:39
8364    18006    802    2016-04-06 01:34:13    2016-04-06 01:34:13
8365    14830    577    2013-11-17 19:30:47    2013-11-17 19:30:47
8366    16692    531    2015-02-05 07:53:08    2015-02-05 07:53:08
8367    15497    696    2015-04-20 01:58:28    2015-04-20 01:58:28
8368    14110    732    2015-11-01 17:07:34    2015-11-01 17:07:34
8369    17203    919    2014-12-24 04:34:22    2014-12-24 04:34:22
8370    12299    765    2015-02-04 10:52:50    2015-02-04 10:52:50
8371    17373    706    2013-07-18 22:51:44    2013-07-18 22:51:44
8372    14805    919    2015-03-14 12:59:32    2015-03-14 12:59:32
8373    11226    781    2015-08-24 02:23:54    2015-08-24 02:23:54
8374    12611    697    2015-10-24 11:29:15    2015-10-24 11:29:15
8375    19954    696    2016-03-24 02:59:20    2016-03-24 02:59:20
8376    13737    675    2013-05-22 18:11:05    2013-05-22 18:11:05
8377    19327    497    2014-01-09 01:23:19    2014-01-09 01:23:19
8378    11766    579    2014-05-02 21:08:52    2014-05-02 21:08:52
8379    14688    851    2014-12-27 20:33:51    2014-12-27 20:33:51
8380    17991    929    2014-09-19 14:26:51    2014-09-19 14:26:51
8381    17265    673    2014-08-23 17:41:48    2014-08-23 17:41:48
8382    13042    501    2015-07-06 09:02:36    2015-07-06 09:02:36
8383    12034    473    2013-05-22 23:15:35    2013-05-22 23:15:35
8384    13619    629    2015-09-10 12:02:28    2015-09-10 12:02:28
8385    11556    945    2016-01-04 10:52:04    2016-01-04 10:52:04
8386    10367    858    2015-05-15 14:37:26    2015-05-15 14:37:26
8387    14153    725    2014-07-27 00:37:47    2014-07-27 00:37:47
8388    10880    850    2015-01-21 05:07:33    2015-01-21 05:07:33
8389    11773    884    2014-03-04 05:21:37    2014-03-04 05:21:37
8390    17225    536    2015-04-26 01:51:43    2015-04-26 01:51:43
8391    14049    729    2014-08-26 12:49:11    2014-08-26 12:49:11
8392    16309    857    2014-11-14 08:17:28    2014-11-14 08:17:28
8393    18659    560    2014-07-06 05:00:28    2014-07-06 05:00:28
8394    15131    916    2015-10-25 18:29:12    2015-10-25 18:29:12
8395    10484    680    2014-02-23 21:55:28    2014-02-23 21:55:28
8396    19169    888    2016-03-29 14:36:09    2016-03-29 14:36:09
8397    12593    488    2015-09-06 09:32:51    2015-09-06 09:32:51
8398    18725    478    2014-11-26 18:11:15    2014-11-26 18:11:15
8399    10949    872    2013-05-01 05:21:53    2013-05-01 05:21:53
8400    11208    472    2016-01-02 08:50:02    2016-01-02 08:50:02
8401    11387    516    2016-01-04 09:04:06    2016-01-04 09:04:06
8402    11439    849    2014-05-22 10:00:14    2014-05-22 10:00:14
8403    18898    896    2016-01-24 14:29:45    2016-01-24 14:29:45
8404    10676    471    2015-07-06 16:24:29    2015-07-06 16:24:29
8405    16725    702    2015-02-21 10:52:25    2015-02-21 10:52:25
8406    17383    772    2013-09-08 18:01:35    2013-09-08 18:01:35
8407    12066    610    2014-12-13 17:30:17    2014-12-13 17:30:17
8408    18024    559    2016-04-18 18:24:34    2016-04-18 18:24:34
8409    16916    767    2015-03-17 11:32:21    2015-03-17 11:32:21
8410    11789    737    2013-10-10 23:51:25    2013-10-10 23:51:25
8411    11142    657    2014-03-02 00:43:18    2014-03-02 00:43:18
8412    15604    710    2016-01-20 18:19:19    2016-01-20 18:19:19
8413    15883    665    2013-06-10 04:59:33    2013-06-10 04:59:33
8414    18931    698    2015-02-19 12:30:03    2015-02-19 12:30:03
8415    19676    810    2013-05-04 16:52:50    2013-05-04 16:52:50
8416    13258    918    2014-04-10 20:34:34    2014-04-10 20:34:34
8417    11104    463    2013-07-30 18:46:06    2013-07-30 18:46:06
8418    10756    692    2013-07-23 08:44:11    2013-07-23 08:44:11
8419    15803    799    2013-10-06 06:17:44    2013-10-06 06:17:44
8420    19465    952    2014-05-28 18:28:49    2014-05-28 18:28:49
8421    14407    958    2014-12-23 09:29:16    2014-12-23 09:29:16
8422    14135    567    2015-03-03 17:53:51    2015-03-03 17:53:51
8423    11504    481    2013-05-22 14:13:01    2013-05-22 14:13:01
8424    11184    839    2014-08-22 17:56:34    2014-08-22 17:56:34
8425    16450    625    2015-11-22 00:46:11    2015-11-22 00:46:11
8426    17131    685    2013-09-18 05:45:00    2013-09-18 05:45:00
8427    12532    627    2013-05-12 21:43:20    2013-05-12 21:43:20
8428    19746    949    2014-09-23 05:59:01    2014-09-23 05:59:01
8429    18700    923    2013-10-15 06:46:19    2013-10-15 06:46:19
8430    19849    681    2013-06-05 22:01:05    2013-06-05 22:01:05
8431    18433    509    2013-05-13 18:54:06    2013-05-13 18:54:06
8432    12044    536    2015-02-05 00:45:00    2015-02-05 00:45:00
8433    13886    586    2015-04-19 16:10:34    2015-04-19 16:10:34
8434    14268    681    2013-07-19 10:44:58    2013-07-19 10:44:58
8435    15105    602    2014-03-15 03:03:25    2014-03-15 03:03:25
8436    19884    866    2015-08-12 14:22:17    2015-08-12 14:22:17
8437    16071    754    2014-04-07 16:39:53    2014-04-07 16:39:53
8438    19105    845    2015-07-23 22:02:40    2015-07-23 22:02:40
8439    11586    612    2014-08-13 20:42:14    2014-08-13 20:42:14
8440    12365    592    2014-09-20 09:30:05    2014-09-20 09:30:05
8441    11638    806    2013-09-25 14:19:08    2013-09-25 14:19:08
8442    12178    811    2016-02-05 15:28:24    2016-02-05 15:28:24
8443    13094    912    2015-08-06 10:17:01    2015-08-06 10:17:01
8444    15980    491    2014-10-15 19:44:04    2014-10-15 19:44:04
8445    13082    778    2014-08-12 16:40:02    2014-08-12 16:40:02
8446    12012    779    2013-09-11 21:41:25    2013-09-11 21:41:25
8447    13241    878    2014-09-28 06:58:29    2014-09-28 06:58:29
8448    18360    758    2015-01-13 15:16:16    2015-01-13 15:16:16
8449    15621    574    2014-07-14 15:16:02    2014-07-14 15:16:02
8450    18163    490    2015-12-26 13:00:58    2015-12-26 13:00:58
8451    12813    504    2015-01-19 23:26:12    2015-01-19 23:26:12
8452    17526    919    2014-08-10 04:18:37    2014-08-10 04:18:37
8453    10506    675    2014-03-14 14:54:15    2014-03-14 14:54:15
8454    12937    644    2013-08-02 08:32:48    2013-08-02 08:32:48
8455    10808    521    2014-03-17 16:49:59    2014-03-17 16:49:59
8456    14479    816    2014-03-16 15:50:11    2014-03-16 15:50:11
8457    12691    498    2014-02-19 12:58:28    2014-02-19 12:58:28
8458    10902    765    2015-03-24 06:45:05    2015-03-24 06:45:05
8459    10789    527    2013-04-26 21:02:22    2013-04-26 21:02:22
8460    12530    781    2013-07-01 15:17:31    2013-07-01 15:17:31
8461    11233    466    2016-01-19 08:11:04    2016-01-19 08:11:04
8462    13686    594    2015-05-17 12:21:59    2015-05-17 12:21:59
8463    19512    493    2013-11-09 11:21:12    2013-11-09 11:21:12
8464    19672    492    2015-02-13 14:12:49    2015-02-13 14:12:49
8465    10259    496    2014-02-06 06:04:23    2014-02-06 06:04:23
8466    10487    948    2013-05-14 15:07:12    2013-05-14 15:07:12
8467    14523    943    2014-11-11 12:45:58    2014-11-11 12:45:58
8468    19147    870    2015-11-14 15:15:52    2015-11-14 15:15:52
8469    12253    837    2015-08-16 21:10:34    2015-08-16 21:10:34
8470    12446    921    2013-11-12 05:56:30    2013-11-12 05:56:30
8471    10654    727    2013-10-29 01:50:32    2013-10-29 01:50:32
8472    13530    729    2015-05-24 06:47:15    2015-05-24 06:47:15
8473    10050    683    2014-11-09 08:44:26    2014-11-09 08:44:26
8474    16253    724    2015-02-01 03:35:45    2015-02-01 03:35:45
8475    15696    738    2013-06-24 06:25:03    2013-06-24 06:25:03
8476    14730    913    2013-12-19 07:36:07    2013-12-19 07:36:07
8477    17980    465    2014-06-23 17:09:20    2014-06-23 17:09:20
8478    14684    726    2014-07-28 07:07:55    2014-07-28 07:07:55
8479    14735    822    2013-12-09 20:32:04    2013-12-09 20:32:04
8480    15242    566    2015-05-22 18:32:23    2015-05-22 18:32:23
8481    13901    602    2016-01-21 15:27:59    2016-01-21 15:27:59
8482    18347    547    2013-12-02 17:19:03    2013-12-02 17:19:03
8483    16851    826    2015-11-27 23:19:22    2015-11-27 23:19:22
8484    18357    812    2014-01-30 21:35:33    2014-01-30 21:35:33
8485    14448    727    2013-07-11 20:04:48    2013-07-11 20:04:48
8486    12183    633    2014-07-10 12:31:54    2014-07-10 12:31:54
8487    17931    491    2013-06-08 12:23:30    2013-06-08 12:23:30
8488    15664    572    2013-06-06 17:13:21    2013-06-06 17:13:21
8489    17115    664    2014-04-15 21:08:02    2014-04-15 21:08:02
8490    16827    558    2014-11-20 01:44:31    2014-11-20 01:44:31
8491    14743    811    2014-09-06 10:07:37    2014-09-06 10:07:37
8492    19262    727    2013-09-21 08:01:21    2013-09-21 08:01:21
8493    18289    741    2013-09-29 18:28:23    2013-09-29 18:28:23
8494    11465    816    2013-06-04 18:36:23    2013-06-04 18:36:23
8495    16703    495    2015-11-17 18:30:40    2015-11-17 18:30:40
8496    19380    950    2015-05-15 02:02:10    2015-05-15 02:02:10
8497    19628    831    2014-06-25 06:09:40    2014-06-25 06:09:40
8498    10258    836    2015-10-10 04:15:19    2015-10-10 04:15:19
8499    16087    836    2014-02-06 19:00:54    2014-02-06 19:00:54
8500    11077    600    2015-06-16 22:39:09    2015-06-16 22:39:09
8501    15058    645    2015-05-18 22:01:40    2015-05-18 22:01:40
8502    18032    507    2014-04-09 12:22:32    2014-04-09 12:22:32
8503    19178    740    2014-08-15 10:54:43    2014-08-15 10:54:43
8504    15945    463    2015-06-03 13:10:22    2015-06-03 13:10:22
8505    12905    737    2014-05-19 21:35:27    2014-05-19 21:35:27
8506    16627    571    2013-05-23 16:25:46    2013-05-23 16:25:46
8507    13157    685    2013-08-30 20:27:35    2013-08-30 20:27:35
8508    12847    474    2015-05-16 01:56:12    2015-05-16 01:56:12
8509    15635    716    2015-02-10 02:39:14    2015-02-10 02:39:14
8510    14932    903    2014-02-20 19:53:40    2014-02-20 19:53:40
8511    16091    761    2016-02-17 02:58:18    2016-02-17 02:58:18
8512    13210    910    2014-06-10 19:14:54    2014-06-10 19:14:54
8513    18954    864    2013-12-31 03:41:41    2013-12-31 03:41:41
8514    15376    719    2015-05-22 10:53:10    2015-05-22 10:53:10
8515    18741    584    2014-08-19 17:04:40    2014-08-19 17:04:40
8516    14971    503    2014-07-21 01:06:03    2014-07-21 01:06:03
8517    18976    557    2015-12-22 23:13:44    2015-12-22 23:13:44
8518    10356    798    2014-01-30 13:50:48    2014-01-30 13:50:48
8519    16860    769    2014-08-03 14:45:45    2014-08-03 14:45:45
8520    17659    473    2014-02-13 12:10:08    2014-02-13 12:10:08
8521    19541    757    2016-02-17 07:56:58    2016-02-17 07:56:58
8522    17354    593    2013-11-28 21:15:24    2013-11-28 21:15:24
8523    19736    898    2015-02-13 21:44:26    2015-02-13 21:44:26
8524    13214    687    2015-08-31 14:30:09    2015-08-31 14:30:09
8525    11871    741    2013-12-23 13:10:03    2013-12-23 13:10:03
8526    16523    777    2015-11-20 11:50:49    2015-11-20 11:50:49
8527    18904    513    2014-12-08 14:00:08    2014-12-08 14:00:08
8528    19140    908    2013-10-31 08:48:26    2013-10-31 08:48:26
8529    10001    870    2014-03-24 05:22:13    2014-03-24 05:22:13
8530    12557    698    2013-09-10 03:32:24    2013-09-10 03:32:24
8531    13998    851    2013-07-07 23:24:24    2013-07-07 23:24:24
8532    15200    801    2016-01-31 10:09:38    2016-01-31 10:09:38
8533    11056    640    2015-12-10 10:28:17    2015-12-10 10:28:17
8534    18056    780    2013-07-13 15:30:21    2013-07-13 15:30:21
8535    12412    641    2015-03-18 10:10:10    2015-03-18 10:10:10
8536    19251    853    2014-05-02 23:44:46    2014-05-02 23:44:46
8537    12447    876    2014-04-04 08:04:26    2014-04-04 08:04:26
8538    13373    777    2013-12-04 06:38:01    2013-12-04 06:38:01
8539    11548    741    2015-01-20 16:09:35    2015-01-20 16:09:35
8540    14488    510    2014-02-04 10:55:25    2014-02-04 10:55:25
8541    14537    545    2015-07-02 10:05:34    2015-07-02 10:05:34
8542    19997    902    2014-11-08 21:15:57    2014-11-08 21:15:57
8543    11947    684    2013-07-25 05:13:32    2013-07-25 05:13:32
8544    10493    687    2014-03-10 20:38:39    2014-03-10 20:38:39
8545    14507    691    2015-05-12 05:15:17    2015-05-12 05:15:17
8546    18459    731    2014-02-25 13:57:22    2014-02-25 13:57:22
8547    16598    840    2015-01-06 14:58:34    2015-01-06 14:58:34
8548    14849    545    2015-06-03 23:15:30    2015-06-03 23:15:30
8549    18838    801    2013-12-12 06:19:31    2013-12-12 06:19:31
8550    18702    765    2014-04-12 09:21:55    2014-04-12 09:21:55
8551    17514    942    2015-06-10 16:32:09    2015-06-10 16:32:09
8552    15125    594    2014-10-18 01:40:29    2014-10-18 01:40:29
8553    12412    723    2016-02-05 05:11:34    2016-02-05 05:11:34
8554    14308    949    2015-10-09 11:54:13    2015-10-09 11:54:13
8555    16153    704    2014-01-11 01:42:52    2014-01-11 01:42:52
8556    10112    689    2013-07-22 03:39:12    2013-07-22 03:39:12
8557    19792    783    2013-09-08 16:02:15    2013-09-08 16:02:15
8558    11974    583    2014-04-06 19:52:12    2014-04-06 19:52:12
8559    15046    889    2013-11-16 22:21:59    2013-11-16 22:21:59
8560    13819    691    2014-10-25 10:45:20    2014-10-25 10:45:20
8561    11325    908    2013-07-19 23:09:10    2013-07-19 23:09:10
8562    19604    544    2013-12-14 00:13:08    2013-12-14 00:13:08
8563    10358    583    2015-03-04 14:13:09    2015-03-04 14:13:09
8564    10118    727    2013-10-02 19:51:27    2013-10-02 19:51:27
8565    16785    662    2014-11-12 21:57:30    2014-11-12 21:57:30
8566    11810    467    2015-09-04 16:46:05    2015-09-04 16:46:05
8567    14602    659    2015-01-04 22:35:09    2015-01-04 22:35:09
8568    17294    554    2015-09-12 23:00:23    2015-09-12 23:00:23
8569    19461    534    2014-01-07 17:33:36    2014-01-07 17:33:36
8570    11709    646    2014-03-01 05:55:26    2014-03-01 05:55:26
8571    16140    495    2016-03-12 13:00:53    2016-03-12 13:00:53
8572    12522    910    2013-11-01 00:13:35    2013-11-01 00:13:35
8573    16173    910    2016-01-13 10:34:11    2016-01-13 10:34:11
8574    18604    789    2014-02-02 03:48:58    2014-02-02 03:48:58
8575    19837    916    2013-08-16 19:53:33    2013-08-16 19:53:33
8576    10309    678    2016-02-08 04:57:57    2016-02-08 04:57:57
8577    11713    548    2013-11-03 13:09:41    2013-11-03 13:09:41
8578    12079    482    2015-12-27 07:10:45    2015-12-27 07:10:45
8579    12732    648    2014-01-01 07:34:37    2014-01-01 07:34:37
8580    14884    845    2014-07-07 02:53:17    2014-07-07 02:53:17
8581    16220    663    2015-03-22 16:39:28    2015-03-22 16:39:28
8582    17716    640    2016-02-15 05:24:00    2016-02-15 05:24:00
8583    19489    643    2015-07-15 19:05:15    2015-07-15 19:05:15
8584    10027    742    2013-07-11 21:39:42    2013-07-11 21:39:42
8585    12012    536    2014-01-07 16:54:30    2014-01-07 16:54:30
8586    17425    554    2015-10-21 21:39:22    2015-10-21 21:39:22
8587    15023    551    2014-02-25 07:19:58    2014-02-25 07:19:58
8588    19572    892    2014-03-06 16:41:24    2014-03-06 16:41:24
8589    10759    701    2015-06-11 08:14:36    2015-06-11 08:14:36
8590    15244    812    2016-01-11 08:15:43    2016-01-11 08:15:43
8591    16607    899    2016-03-17 04:53:34    2016-03-17 04:53:34
8592    15748    825    2015-03-12 20:25:26    2015-03-12 20:25:26
8593    19793    931    2016-02-28 08:23:49    2016-02-28 08:23:49
8594    15662    619    2015-06-04 19:15:58    2015-06-04 19:15:58
8595    17264    705    2015-01-05 01:03:12    2015-01-05 01:03:12
8596    18230    761    2015-01-23 00:05:08    2015-01-23 00:05:08
8597    18438    917    2015-03-30 04:47:29    2015-03-30 04:47:29
8598    19405    784    2016-01-17 17:51:07    2016-01-17 17:51:07
8599    15386    750    2014-08-30 18:49:57    2014-08-30 18:49:57
8600    14774    819    2014-09-10 04:54:35    2014-09-10 04:54:35
8601    12932    661    2015-03-11 08:15:26    2015-03-11 08:15:26
8602    16961    674    2015-09-22 02:19:27    2015-09-22 02:19:27
8603    17442    614    2015-10-17 00:35:14    2015-10-17 00:35:14
8604    19723    945    2015-07-09 16:45:06    2015-07-09 16:45:06
8605    17170    795    2015-01-26 08:24:33    2015-01-26 08:24:33
8606    14730    491    2014-03-13 17:15:11    2014-03-13 17:15:11
8607    14623    628    2015-12-29 00:43:51    2015-12-29 00:43:51
8608    16541    946    2015-04-01 10:07:30    2015-04-01 10:07:30
8609    15931    875    2014-09-29 11:04:28    2014-09-29 11:04:28
8610    10198    581    2016-03-21 22:33:26    2016-03-21 22:33:26
8611    19447    644    2013-10-29 23:32:09    2013-10-29 23:32:09
8612    12258    628    2014-07-04 20:24:50    2014-07-04 20:24:50
8613    13645    762    2015-02-23 09:49:05    2015-02-23 09:49:05
8614    10597    952    2015-03-17 14:33:49    2015-03-17 14:33:49
8615    18229    657    2013-07-21 22:31:46    2013-07-21 22:31:46
8616    11160    728    2014-08-29 07:22:03    2014-08-29 07:22:03
8617    18535    704    2014-11-03 03:55:07    2014-11-03 03:55:07
8618    14644    556    2013-12-11 03:15:21    2013-12-11 03:15:21
8619    19902    563    2014-03-09 01:50:58    2014-03-09 01:50:58
8620    15422    648    2015-02-26 12:11:56    2015-02-26 12:11:56
8621    19607    727    2013-08-16 23:03:18    2013-08-16 23:03:18
8622    18602    547    2014-12-27 18:00:27    2014-12-27 18:00:27
8623    10736    735    2014-04-18 01:06:50    2014-04-18 01:06:50
8624    12313    768    2013-12-20 16:06:56    2013-12-20 16:06:56
8625    17595    724    2013-09-06 21:30:54    2013-09-06 21:30:54
8626    15132    473    2015-04-22 17:25:56    2015-04-22 17:25:56
8627    10080    586    2015-02-16 10:12:03    2015-02-16 10:12:03
8628    11908    854    2013-05-24 21:59:22    2013-05-24 21:59:22
8629    11951    533    2015-11-22 12:05:16    2015-11-22 12:05:16
8630    15688    718    2015-11-05 07:08:18    2015-11-05 07:08:18
8631    19296    842    2014-02-22 00:18:26    2014-02-22 00:18:26
8632    14746    726    2015-02-11 03:36:27    2015-02-11 03:36:27
8633    11759    752    2013-10-14 15:21:03    2013-10-14 15:21:03
8634    14393    691    2016-04-07 15:05:38    2016-04-07 15:05:38
8635    10052    760    2015-01-27 04:47:43    2015-01-27 04:47:43
8636    17763    574    2015-05-26 11:52:20    2015-05-26 11:52:20
8637    17629    748    2014-10-06 01:32:34    2014-10-06 01:32:34
8638    10699    615    2014-02-12 23:04:22    2014-02-12 23:04:22
8639    15163    507    2013-11-23 20:33:59    2013-11-23 20:33:59
8640    16612    516    2013-05-21 13:25:33    2013-05-21 13:25:33
8641    10905    656    2014-01-18 19:50:27    2014-01-18 19:50:27
8642    17125    786    2014-03-29 07:32:05    2014-03-29 07:32:05
8643    16625    804    2014-09-16 15:38:42    2014-09-16 15:38:42
8644    15142    532    2014-12-19 10:25:59    2014-12-19 10:25:59
8645    13841    695    2016-01-14 19:13:07    2016-01-14 19:13:07
8646    17939    656    2013-04-22 05:12:58    2013-04-22 05:12:58
8647    14907    584    2015-10-09 17:58:30    2015-10-09 17:58:30
8648    15044    488    2014-10-01 23:29:41    2014-10-01 23:29:41
8649    18313    598    2015-02-07 10:45:40    2015-02-07 10:45:40
8650    16282    575    2013-09-29 18:29:27    2013-09-29 18:29:27
8651    16324    939    2014-09-12 17:39:52    2014-09-12 17:39:52
8652    18811    598    2016-03-17 21:12:15    2016-03-17 21:12:15
8653    15803    752    2014-09-16 02:51:01    2014-09-16 02:51:01
8654    16189    764    2015-09-19 22:46:01    2015-09-19 22:46:01
8655    12460    618    2013-08-05 19:59:23    2013-08-05 19:59:23
8656    15311    597    2014-05-27 07:55:30    2014-05-27 07:55:30
8657    16704    909    2016-02-18 20:07:59    2016-02-18 20:07:59
8658    12171    553    2015-06-21 10:09:20    2015-06-21 10:09:20
8659    12260    579    2016-03-28 05:31:43    2016-03-28 05:31:43
8660    15378    823    2015-12-03 12:28:43    2015-12-03 12:28:43
8661    17042    695    2013-08-26 07:34:51    2013-08-26 07:34:51
8662    11527    758    2013-07-11 12:28:10    2013-07-11 12:28:10
8663    11432    476    2016-01-12 07:21:29    2016-01-12 07:21:29
8664    18453    767    2014-11-15 15:07:15    2014-11-15 15:07:15
8665    15464    746    2015-07-21 01:27:37    2015-07-21 01:27:37
8666    10776    941    2014-06-15 13:53:38    2014-06-15 13:53:38
8667    15735    552    2015-05-24 22:10:46    2015-05-24 22:10:46
8668    16092    849    2013-10-23 06:19:58    2013-10-23 06:19:58
8669    18011    535    2015-02-14 21:46:52    2015-02-14 21:46:52
8670    19112    779    2014-04-07 00:29:12    2014-04-07 00:29:12
8671    12981    665    2014-05-10 21:11:14    2014-05-10 21:11:14
8672    10695    538    2014-12-12 08:18:33    2014-12-12 08:18:33
8673    15240    795    2015-06-03 07:38:21    2015-06-03 07:38:21
8674    13927    608    2015-11-26 15:25:52    2015-11-26 15:25:52
8675    16596    538    2015-05-09 05:59:15    2015-05-09 05:59:15
8676    11936    768    2015-08-21 20:25:00    2015-08-21 20:25:00
8677    12251    645    2015-02-07 21:44:48    2015-02-07 21:44:48
8678    17523    916    2014-12-01 04:23:33    2014-12-01 04:23:33
8679    19946    488    2015-07-18 18:37:53    2015-07-18 18:37:53
8680    13563    790    2015-05-31 05:37:09    2015-05-31 05:37:09
8681    15615    715    2014-11-19 05:40:06    2014-11-19 05:40:06
8682    10868    687    2014-04-16 11:53:34    2014-04-16 11:53:34
8683    14292    638    2014-12-15 19:27:12    2014-12-15 19:27:12
8684    10942    740    2013-11-09 17:36:56    2013-11-09 17:36:56
8685    18966    464    2015-03-27 17:04:00    2015-03-27 17:04:00
8686    16172    637    2013-11-15 20:22:59    2013-11-15 20:22:59
8687    14499    557    2013-09-12 05:50:09    2013-09-12 05:50:09
8688    17081    784    2015-03-29 04:08:38    2015-03-29 04:08:38
8689    10269    668    2014-07-03 15:42:57    2014-07-03 15:42:57
8690    13184    876    2014-09-18 12:53:45    2014-09-18 12:53:45
8691    15210    896    2015-11-23 23:37:08    2015-11-23 23:37:08
8692    10004    617    2015-10-16 23:30:28    2015-10-16 23:30:28
8693    19656    647    2016-02-25 20:58:47    2016-02-25 20:58:47
8694    17430    761    2015-03-15 04:18:18    2015-03-15 04:18:18
8695    13793    559    2015-01-16 07:53:23    2015-01-16 07:53:23
8696    15487    654    2014-01-13 06:57:18    2014-01-13 06:57:18
8697    11711    856    2014-07-15 22:04:27    2014-07-15 22:04:27
8698    11796    530    2016-03-02 11:38:38    2016-03-02 11:38:38
8699    16378    927    2014-04-04 23:23:36    2014-04-04 23:23:36
8700    14941    681    2014-08-19 12:30:52    2014-08-19 12:30:52
8701    10031    732    2015-11-17 00:17:00    2015-11-17 00:17:00
8702    16951    879    2014-09-09 14:41:45    2014-09-09 14:41:45
8703    10572    577    2016-01-15 02:15:18    2016-01-15 02:15:18
8704    14742    651    2016-02-01 08:27:01    2016-02-01 08:27:01
8705    12839    589    2015-06-02 04:07:59    2015-06-02 04:07:59
8706    19523    810    2013-06-15 11:20:01    2013-06-15 11:20:01
8707    13383    684    2013-11-18 11:34:19    2013-11-18 11:34:19
8708    10087    631    2013-07-08 17:23:25    2013-07-08 17:23:25
8709    19824    947    2015-12-14 02:04:28    2015-12-14 02:04:28
8710    14360    791    2013-09-09 15:03:12    2013-09-09 15:03:12
8711    13306    873    2015-03-12 13:06:40    2015-03-12 13:06:40
8712    16735    670    2015-01-04 21:55:22    2015-01-04 21:55:22
8713    11523    527    2013-06-08 13:08:19    2013-06-08 13:08:19
8714    16446    608    2015-06-03 14:55:31    2015-06-03 14:55:31
8715    12709    929    2014-03-14 02:45:43    2014-03-14 02:45:43
8716    10850    727    2016-02-28 01:09:36    2016-02-28 01:09:36
8717    13565    759    2014-02-17 01:02:16    2014-02-17 01:02:16
8718    18924    930    2015-12-09 00:36:10    2015-12-09 00:36:10
8719    16162    913    2014-04-18 12:24:13    2014-04-18 12:24:13
8720    18823    806    2014-02-24 10:33:55    2014-02-24 10:33:55
8721    12250    923    2014-05-11 23:19:59    2014-05-11 23:19:59
8722    16064    479    2014-11-24 03:32:32    2014-11-24 03:32:32
8723    12718    898    2016-02-22 02:51:31    2016-02-22 02:51:31
8724    13091    777    2014-01-27 12:30:11    2014-01-27 12:30:11
8725    14500    572    2015-02-28 14:20:10    2015-02-28 14:20:10
8726    17018    574    2015-02-13 08:52:07    2015-02-13 08:52:07
8727    13215    662    2015-11-10 21:44:50    2015-11-10 21:44:50
8728    11361    527    2016-04-05 09:31:53    2016-04-05 09:31:53
8729    14955    908    2016-04-03 18:32:17    2016-04-03 18:32:17
8730    19952    599    2015-01-28 23:07:55    2015-01-28 23:07:55
8731    15838    886    2014-06-25 20:09:03    2014-06-25 20:09:03
8732    18030    470    2016-04-09 12:13:50    2016-04-09 12:13:50
8733    10530    577    2013-07-09 10:46:18    2013-07-09 10:46:18
8734    17292    750    2014-12-04 18:41:35    2014-12-04 18:41:35
8735    18962    833    2013-12-30 22:47:02    2013-12-30 22:47:02
8736    11515    868    2013-11-01 23:46:14    2013-11-01 23:46:14
8737    12186    906    2015-04-27 15:49:02    2015-04-27 15:49:02
8738    18173    884    2013-12-27 00:45:24    2013-12-27 00:45:24
8739    10546    818    2014-02-06 05:25:04    2014-02-06 05:25:04
8740    12239    709    2015-03-29 16:59:14    2015-03-29 16:59:14
8741    11451    731    2016-03-04 18:48:35    2016-03-04 18:48:35
8742    11634    756    2015-04-04 14:08:40    2015-04-04 14:08:40
8743    10549    907    2015-12-01 16:58:10    2015-12-01 16:58:10
8744    12177    591    2015-04-17 03:58:25    2015-04-17 03:58:25
8745    14828    527    2014-09-18 06:16:22    2014-09-18 06:16:22
8746    16264    721    2013-10-10 13:09:09    2013-10-10 13:09:09
8747    18047    537    2014-07-28 16:00:50    2014-07-28 16:00:50
8748    15708    708    2013-09-17 04:24:17    2013-09-17 04:24:17
8749    12190    819    2015-06-26 06:02:55    2015-06-26 06:02:55
8750    13525    730    2013-06-11 12:26:42    2013-06-11 12:26:42
8751    13286    791    2014-08-29 21:11:03    2014-08-29 21:11:03
8752    18952    513    2015-07-24 08:17:10    2015-07-24 08:17:10
8753    11704    729    2014-12-10 03:42:08    2014-12-10 03:42:08
8754    13747    937    2015-04-16 14:14:49    2015-04-16 14:14:49
8755    13101    838    2014-11-26 10:10:39    2014-11-26 10:10:39
8756    17624    734    2015-02-01 11:55:57    2015-02-01 11:55:57
8757    18317    844    2014-11-19 21:36:21    2014-11-19 21:36:21
8758    14768    756    2015-07-22 02:43:52    2015-07-22 02:43:52
8759    15216    733    2013-10-13 20:06:04    2013-10-13 20:06:04
8760    17476    664    2014-08-08 22:52:05    2014-08-08 22:52:05
8761    18444    651    2014-10-22 12:18:37    2014-10-22 12:18:37
8762    15669    883    2014-12-31 02:05:17    2014-12-31 02:05:17
8763    11514    695    2015-05-02 18:36:05    2015-05-02 18:36:05
8764    13470    806    2013-09-15 20:18:33    2013-09-15 20:18:33
8765    14812    924    2015-01-10 21:19:18    2015-01-10 21:19:18
8766    10479    464    2014-11-01 10:17:37    2014-11-01 10:17:37
8767    16846    773    2013-09-26 23:34:27    2013-09-26 23:34:27
8768    10994    603    2014-09-07 23:11:02    2014-09-07 23:11:02
8769    15198    545    2015-05-10 13:01:18    2015-05-10 13:01:18
8770    19974    931    2014-05-01 11:04:15    2014-05-01 11:04:15
8771    14286    705    2014-02-20 06:44:41    2014-02-20 06:44:41
8772    14982    859    2014-10-03 16:29:34    2014-10-03 16:29:34
8773    16589    762    2014-09-12 11:17:55    2014-09-12 11:17:55
8774    16694    568    2015-04-17 12:54:38    2015-04-17 12:54:38
8775    11568    940    2015-10-21 18:51:32    2015-10-21 18:51:32
8776    11461    918    2015-10-03 13:42:00    2015-10-03 13:42:00
8777    14469    597    2016-02-25 04:41:23    2016-02-25 04:41:23
8778    15327    938    2016-03-03 15:48:24    2016-03-03 15:48:24
8779    15824    702    2014-09-17 03:23:08    2014-09-17 03:23:08
8780    10010    727    2015-03-18 18:34:30    2015-03-18 18:34:30
8781    19760    919    2016-03-12 23:35:27    2016-03-12 23:35:27
8782    14550    921    2013-11-29 03:41:37    2013-11-29 03:41:37
8783    14510    574    2015-08-11 08:11:54    2015-08-11 08:11:54
8784    15089    492    2015-09-29 10:40:36    2015-09-29 10:40:36
8785    12337    773    2015-11-13 04:26:19    2015-11-13 04:26:19
8786    13074    708    2016-01-01 05:20:25    2016-01-01 05:20:25
8787    14221    810    2015-08-08 09:45:39    2015-08-08 09:45:39
8788    10235    825    2015-09-05 19:47:24    2015-09-05 19:47:24
8789    14882    894    2013-12-19 00:00:56    2013-12-19 00:00:56
8790    19337    925    2015-05-06 20:12:48    2015-05-06 20:12:48
8791    18909    560    2014-10-21 06:49:01    2014-10-21 06:49:01
8792    14726    919    2014-07-05 22:02:40    2014-07-05 22:02:40
8793    16029    915    2015-07-19 19:47:09    2015-07-19 19:47:09
8794    10886    622    2013-11-17 08:45:24    2013-11-17 08:45:24
8795    14317    463    2014-06-19 01:55:35    2014-06-19 01:55:35
8796    16289    683    2014-01-28 08:15:43    2014-01-28 08:15:43
8797    12833    499    2014-10-30 21:42:35    2014-10-30 21:42:35
8798    17535    957    2014-09-10 20:45:20    2014-09-10 20:45:20
8799    12177    599    2014-09-12 19:48:11    2014-09-12 19:48:11
8800    12723    815    2013-08-19 03:09:10    2013-08-19 03:09:10
8801    10467    763    2015-02-11 17:46:40    2015-02-11 17:46:40
8802    18379    598    2015-02-09 09:16:03    2015-02-09 09:16:03
8803    18724    614    2015-02-04 08:11:55    2015-02-04 08:11:55
8804    14807    711    2014-08-19 13:27:18    2014-08-19 13:27:18
8805    14534    698    2013-05-01 14:59:08    2013-05-01 14:59:08
8806    16377    759    2014-08-11 08:43:32    2014-08-11 08:43:32
8807    16334    746    2013-06-20 16:50:28    2013-06-20 16:50:28
8808    17761    800    2013-11-30 10:03:27    2013-11-30 10:03:27
8809    13221    715    2015-08-22 14:44:27    2015-08-22 14:44:27
8810    15590    707    2015-01-19 19:52:07    2015-01-19 19:52:07
8811    14962    705    2015-02-11 04:26:37    2015-02-11 04:26:37
8812    11226    820    2014-07-07 03:28:00    2014-07-07 03:28:00
8813    17729    851    2013-11-27 15:58:06    2013-11-27 15:58:06
8814    17497    702    2014-12-18 21:02:52    2014-12-18 21:02:52
8815    11069    477    2014-12-13 14:56:21    2014-12-13 14:56:21
8816    10527    810    2013-09-07 23:19:13    2013-09-07 23:19:13
8817    12129    905    2015-01-02 14:39:21    2015-01-02 14:39:21
8818    19050    828    2014-03-30 12:30:07    2014-03-30 12:30:07
8819    12445    525    2014-05-01 17:01:55    2014-05-01 17:01:55
8820    18317    824    2014-05-13 05:07:53    2014-05-13 05:07:53
8821    17650    814    2013-05-04 14:45:07    2013-05-04 14:45:07
8822    13658    728    2015-05-19 03:30:18    2015-05-19 03:30:18
8823    17669    873    2014-04-12 23:29:28    2014-04-12 23:29:28
8824    14164    681    2015-02-23 21:09:24    2015-02-23 21:09:24
8825    11380    861    2015-01-25 10:44:38    2015-01-25 10:44:38
8826    10293    522    2015-09-16 05:02:47    2015-09-16 05:02:47
8827    11021    627    2013-06-21 09:06:54    2013-06-21 09:06:54
8828    18545    814    2015-02-20 01:02:27    2015-02-20 01:02:27
8829    11185    513    2013-11-24 17:59:52    2013-11-24 17:59:52
8830    18465    634    2015-09-12 16:24:29    2015-09-12 16:24:29
8831    11913    638    2015-07-26 05:23:39    2015-07-26 05:23:39
8832    19021    611    2014-03-11 04:11:03    2014-03-11 04:11:03
8833    12515    468    2014-01-04 07:34:07    2014-01-04 07:34:07
8834    12109    597    2013-09-17 03:01:18    2013-09-17 03:01:18
8835    15895    722    2016-01-08 13:13:30    2016-01-08 13:13:30
8836    18816    709    2013-04-29 01:22:25    2013-04-29 01:22:25
8837    11846    491    2015-11-21 18:03:27    2015-11-21 18:03:27
8838    17443    550    2014-10-28 23:18:47    2014-10-28 23:18:47
8839    11578    908    2014-04-25 09:56:05    2014-04-25 09:56:05
8840    11707    916    2016-01-26 06:46:06    2016-01-26 06:46:06
8841    17692    750    2014-03-19 20:51:44    2014-03-19 20:51:44
8842    16402    762    2016-04-02 06:13:33    2016-04-02 06:13:33
8843    18611    699    2014-06-22 20:59:44    2014-06-22 20:59:44
8844    14299    496    2014-09-14 17:03:36    2014-09-14 17:03:36
8845    18318    593    2014-11-22 04:11:13    2014-11-22 04:11:13
8846    10408    466    2015-09-30 18:11:04    2015-09-30 18:11:04
8847    18509    712    2015-11-11 03:17:41    2015-11-11 03:17:41
8848    10745    735    2015-03-21 12:25:39    2015-03-21 12:25:39
8849    15042    848    2014-07-16 13:21:58    2014-07-16 13:21:58
8850    16473    933    2015-12-28 12:34:56    2015-12-28 12:34:56
8851    14501    910    2014-09-11 01:43:36    2014-09-11 01:43:36
8852    11383    920    2014-02-10 02:58:47    2014-02-10 02:58:47
8853    10177    553    2015-04-28 03:06:24    2015-04-28 03:06:24
8854    13509    606    2016-02-10 12:01:42    2016-02-10 12:01:42
8855    17223    840    2013-07-16 02:58:40    2013-07-16 02:58:40
8856    17411    835    2015-03-09 07:31:50    2015-03-09 07:31:50
8857    11820    780    2013-12-12 03:59:55    2013-12-12 03:59:55
8858    14070    814    2016-02-20 23:29:11    2016-02-20 23:29:11
8859    16163    699    2015-06-23 23:51:57    2015-06-23 23:51:57
8860    19682    642    2014-07-23 10:22:20    2014-07-23 10:22:20
8861    18442    790    2014-01-21 20:08:43    2014-01-21 20:08:43
8862    19413    584    2015-02-16 05:48:06    2015-02-16 05:48:06
8863    18952    663    2014-11-13 22:41:38    2014-11-13 22:41:38
8864    11859    698    2014-09-08 21:20:52    2014-09-08 21:20:52
8865    13037    858    2015-06-30 17:23:11    2015-06-30 17:23:11
8866    14469    894    2014-10-12 02:20:39    2014-10-12 02:20:39
8867    14908    769    2013-05-15 04:26:35    2013-05-15 04:26:35
8868    14233    511    2013-09-29 02:16:59    2013-09-29 02:16:59
8869    15234    826    2013-12-01 11:44:18    2013-12-01 11:44:18
8870    19261    530    2015-03-01 12:44:46    2015-03-01 12:44:46
8871    12692    904    2013-06-02 21:39:27    2013-06-02 21:39:27
8872    14090    615    2013-12-13 00:25:43    2013-12-13 00:25:43
8873    17408    801    2014-02-05 12:58:16    2014-02-05 12:58:16
8874    11908    941    2014-12-10 19:06:57    2014-12-10 19:06:57
8875    16358    653    2015-07-23 06:07:16    2015-07-23 06:07:16
8876    12164    766    2014-09-12 06:33:24    2014-09-12 06:33:24
8877    19635    754    2015-09-14 20:30:22    2015-09-14 20:30:22
8878    12416    710    2014-02-12 11:15:38    2014-02-12 11:15:38
8879    17271    580    2014-11-28 10:55:01    2014-11-28 10:55:01
8880    19937    678    2014-04-27 12:28:27    2014-04-27 12:28:27
8881    13238    505    2016-02-27 11:32:41    2016-02-27 11:32:41
8882    15352    611    2016-02-04 09:19:15    2016-02-04 09:19:15
8883    11718    642    2015-07-24 15:48:47    2015-07-24 15:48:47
8884    14384    599    2016-03-01 09:11:33    2016-03-01 09:11:33
8885    18634    557    2015-11-20 06:26:49    2015-11-20 06:26:49
8886    10728    686    2015-05-01 14:53:07    2015-05-01 14:53:07
8887    17428    935    2013-09-06 18:02:28    2013-09-06 18:02:28
8888    14381    547    2013-05-23 14:06:22    2013-05-23 14:06:22
8889    10441    515    2015-01-14 01:27:41    2015-01-14 01:27:41
8890    16748    815    2015-02-06 16:12:17    2015-02-06 16:12:17
8891    16670    952    2014-10-07 22:57:42    2014-10-07 22:57:42
8892    12442    756    2015-06-10 22:30:52    2015-06-10 22:30:52
8893    17058    939    2015-07-27 16:21:19    2015-07-27 16:21:19
8894    11650    781    2013-12-17 03:01:17    2013-12-17 03:01:17
8895    14061    948    2014-09-12 11:29:45    2014-09-12 11:29:45
8896    16542    694    2016-04-17 06:41:22    2016-04-17 06:41:22
8897    19168    513    2013-07-07 22:29:54    2013-07-07 22:29:54
8898    19002    843    2015-04-03 02:30:23    2015-04-03 02:30:23
8899    12724    716    2015-07-28 03:41:33    2015-07-28 03:41:33
8900    13260    597    2014-05-10 13:22:17    2014-05-10 13:22:17
8901    19377    650    2014-10-04 10:09:09    2014-10-04 10:09:09
8902    15853    558    2013-05-14 16:49:09    2013-05-14 16:49:09
8903    19613    770    2015-07-26 18:33:46    2015-07-26 18:33:46
8904    11784    748    2015-06-03 10:13:08    2015-06-03 10:13:08
8905    12153    877    2014-05-23 12:20:08    2014-05-23 12:20:08
8906    12150    800    2016-02-28 09:36:34    2016-02-28 09:36:34
8907    11766    950    2013-11-25 18:12:16    2013-11-25 18:12:16
8908    11247    700    2015-04-26 04:57:23    2015-04-26 04:57:23
8909    15430    913    2016-01-18 23:52:53    2016-01-18 23:52:53
8910    10587    641    2015-06-09 19:28:05    2015-06-09 19:28:05
8911    13702    483    2015-06-26 12:25:36    2015-06-26 12:25:36
8912    15726    916    2013-05-28 08:52:32    2013-05-28 08:52:32
8913    12037    609    2014-06-18 21:48:43    2014-06-18 21:48:43
8914    14413    886    2013-08-31 12:27:06    2013-08-31 12:27:06
8915    17160    598    2014-06-13 13:23:06    2014-06-13 13:23:06
8916    10336    675    2015-01-03 17:47:46    2015-01-03 17:47:46
8917    18239    644    2013-06-08 06:57:25    2013-06-08 06:57:25
8918    11176    581    2014-08-24 00:52:35    2014-08-24 00:52:35
8919    10541    567    2014-11-26 07:42:50    2014-11-26 07:42:50
8920    18920    850    2014-03-26 12:30:19    2014-03-26 12:30:19
8921    13811    492    2014-04-27 16:22:08    2014-04-27 16:22:08
8922    11931    499    2013-11-15 04:03:22    2013-11-15 04:03:22
8923    17678    471    2016-03-13 11:23:12    2016-03-13 11:23:12
8924    18697    817    2013-05-31 11:27:02    2013-05-31 11:27:02
8925    10205    796    2015-11-15 15:35:58    2015-11-15 15:35:58
8926    13131    943    2016-04-13 12:11:41    2016-04-13 12:11:41
8927    10755    627    2013-07-27 14:09:10    2013-07-27 14:09:10
8928    15452    597    2015-05-30 20:54:02    2015-05-30 20:54:02
8929    15187    785    2013-10-31 19:35:31    2013-10-31 19:35:31
8930    18026    615    2014-06-08 05:23:56    2014-06-08 05:23:56
8931    19653    774    2014-07-19 21:49:43    2014-07-19 21:49:43
8932    15795    913    2014-02-12 07:54:30    2014-02-12 07:54:30
8933    19977    542    2016-02-28 04:29:37    2016-02-28 04:29:37
8934    19107    583    2014-07-04 18:15:44    2014-07-04 18:15:44
8935    13830    920    2015-04-27 17:53:35    2015-04-27 17:53:35
8936    19409    889    2013-07-09 23:25:15    2013-07-09 23:25:15
8937    12204    562    2015-01-29 04:25:08    2015-01-29 04:25:08
8938    11820    820    2013-10-22 17:49:42    2013-10-22 17:49:42
8939    14753    873    2014-07-22 15:37:45    2014-07-22 15:37:45
8940    16825    524    2013-10-08 17:27:35    2013-10-08 17:27:35
8941    18517    550    2013-11-25 19:20:01    2013-11-25 19:20:01
8942    15358    573    2013-12-04 16:44:43    2013-12-04 16:44:43
8943    16901    615    2013-11-04 20:46:01    2013-11-04 20:46:01
8944    11606    868    2014-05-02 12:36:53    2014-05-02 12:36:53
8945    17703    828    2013-08-19 07:58:27    2013-08-19 07:58:27
8946    14005    864    2014-05-30 07:01:14    2014-05-30 07:01:14
8947    13554    938    2014-09-28 05:07:04    2014-09-28 05:07:04
8948    10836    596    2015-12-14 17:41:11    2015-12-14 17:41:11
8949    15772    837    2016-02-29 02:11:42    2016-02-29 02:11:42
8950    19128    691    2014-03-21 15:55:12    2014-03-21 15:55:12
8951    16699    587    2013-09-02 22:32:40    2013-09-02 22:32:40
8952    16935    915    2015-02-26 23:32:23    2015-02-26 23:32:23
8953    17367    477    2013-10-07 03:43:14    2013-10-07 03:43:14
8954    19142    927    2016-01-08 04:35:28    2016-01-08 04:35:28
8955    17769    571    2016-01-27 01:06:41    2016-01-27 01:06:41
8956    12359    659    2013-08-10 02:12:45    2013-08-10 02:12:45
8957    15161    928    2013-05-12 07:23:15    2013-05-12 07:23:15
8958    12599    773    2014-06-18 06:04:38    2014-06-18 06:04:38
8959    12219    629    2016-01-03 19:11:45    2016-01-03 19:11:45
8960    14953    897    2014-03-30 07:58:56    2014-03-30 07:58:56
8961    10148    543    2013-09-02 13:26:16    2013-09-02 13:26:16
8962    15213    545    2014-10-29 15:25:35    2014-10-29 15:25:35
8963    19325    476    2015-10-21 20:35:36    2015-10-21 20:35:36
8964    12587    664    2014-12-05 00:56:55    2014-12-05 00:56:55
8965    17526    788    2014-12-27 03:29:23    2014-12-27 03:29:23
8966    14340    494    2015-11-22 18:30:42    2015-11-22 18:30:42
8967    12811    494    2016-04-18 19:01:07    2016-04-18 19:01:07
8968    19835    957    2014-03-29 05:29:41    2014-03-29 05:29:41
8969    12851    622    2014-09-03 02:43:17    2014-09-03 02:43:17
8970    10490    852    2015-02-05 23:06:21    2015-02-05 23:06:21
8971    18334    783    2014-10-31 15:39:01    2014-10-31 15:39:01
8972    16608    531    2015-07-05 22:28:06    2015-07-05 22:28:06
8973    12847    479    2014-11-08 08:46:20    2014-11-08 08:46:20
8974    19211    878    2016-03-31 11:17:31    2016-03-31 11:17:31
8975    13139    959    2013-09-08 22:38:25    2013-09-08 22:38:25
8976    18316    768    2016-01-25 20:45:49    2016-01-25 20:45:49
8977    18616    913    2014-07-22 15:36:07    2014-07-22 15:36:07
8978    13288    546    2014-01-24 07:21:39    2014-01-24 07:21:39
8979    12818    848    2014-05-03 14:51:31    2014-05-03 14:51:31
8980    19863    831    2016-03-24 17:47:43    2016-03-24 17:47:43
8981    10529    810    2014-01-09 15:04:39    2014-01-09 15:04:39
8982    17515    710    2014-07-18 18:48:49    2014-07-18 18:48:49
8983    14077    683    2013-07-13 23:06:11    2013-07-13 23:06:11
8984    15203    937    2013-05-02 19:13:52    2013-05-02 19:13:52
8985    11202    575    2015-01-26 19:31:03    2015-01-26 19:31:03
8986    10824    752    2015-05-17 16:37:06    2015-05-17 16:37:06
8987    13371    768    2014-07-01 08:16:16    2014-07-01 08:16:16
8988    13399    822    2014-03-22 19:45:58    2014-03-22 19:45:58
8989    17038    899    2015-03-14 01:03:34    2015-03-14 01:03:34
8990    10633    639    2013-08-16 18:13:00    2013-08-16 18:13:00
8991    11093    566    2015-08-01 10:02:53    2015-08-01 10:02:53
8992    14674    530    2015-03-20 12:34:16    2015-03-20 12:34:16
8993    17232    526    2015-09-24 10:57:47    2015-09-24 10:57:47
8994    19539    556    2015-04-08 00:45:29    2015-04-08 00:45:29
8995    11638    892    2014-12-01 20:19:39    2014-12-01 20:19:39
8996    13722    876    2014-04-04 08:07:25    2014-04-04 08:07:25
8997    19362    761    2015-04-10 07:48:01    2015-04-10 07:48:01
8998    16009    533    2014-03-19 23:56:36    2014-03-19 23:56:36
8999    18257    562    2014-01-20 07:38:47    2014-01-20 07:38:47
9000    18131    667    2013-09-06 22:41:15    2013-09-06 22:41:15
9001    11465    479    2016-02-20 22:00:44    2016-02-20 22:00:44
9002    19890    661    2013-10-09 15:44:09    2013-10-09 15:44:09
9003    17825    621    2015-12-12 12:49:16    2015-12-12 12:49:16
9004    11703    837    2013-09-19 20:46:33    2013-09-19 20:46:33
9005    13919    866    2014-10-06 12:05:54    2014-10-06 12:05:54
9006    16586    790    2014-02-04 18:13:07    2014-02-04 18:13:07
9007    17166    863    2015-04-24 02:54:14    2015-04-24 02:54:14
9008    13233    763    2013-11-07 16:29:23    2013-11-07 16:29:23
9009    16589    604    2013-06-22 06:04:34    2013-06-22 06:04:34
9010    12053    896    2016-02-26 20:12:04    2016-02-26 20:12:04
9011    14870    489    2015-02-22 16:41:00    2015-02-22 16:41:00
9012    19687    476    2016-02-18 07:10:15    2016-02-18 07:10:15
9013    14830    678    2015-11-09 21:19:08    2015-11-09 21:19:08
9014    13198    730    2015-06-13 01:11:45    2015-06-13 01:11:45
9015    10410    889    2015-11-29 12:21:50    2015-11-29 12:21:50
9016    17942    777    2015-04-12 07:19:02    2015-04-12 07:19:02
9017    18494    625    2015-10-30 17:07:26    2015-10-30 17:07:26
9018    19680    857    2016-03-13 22:30:55    2016-03-13 22:30:55
9019    10703    469    2013-07-29 15:35:14    2013-07-29 15:35:14
9020    17937    469    2015-11-15 07:43:12    2015-11-15 07:43:12
9021    16714    959    2015-12-31 15:00:11    2015-12-31 15:00:11
9022    14586    786    2013-08-19 09:19:55    2013-08-19 09:19:55
9023    12046    591    2013-09-09 13:15:52    2013-09-09 13:15:52
9024    19043    630    2014-06-06 01:36:00    2014-06-06 01:36:00
9025    15255    603    2014-10-30 11:44:59    2014-10-30 11:44:59
9026    11804    676    2014-07-26 19:43:01    2014-07-26 19:43:01
9027    17192    745    2014-02-02 11:08:35    2014-02-02 11:08:35
9028    14442    803    2015-11-20 22:46:01    2015-11-20 22:46:01
9029    15854    627    2013-07-22 04:10:34    2013-07-22 04:10:34
9030    13996    509    2015-11-18 09:55:09    2015-11-18 09:55:09
9031    18069    572    2014-12-12 22:56:27    2014-12-12 22:56:27
9032    15175    614    2014-09-09 12:49:18    2014-09-09 12:49:18
9033    18580    836    2016-01-12 00:04:41    2016-01-12 00:04:41
9034    13028    676    2015-07-17 07:05:45    2015-07-17 07:05:45
9035    15730    805    2013-05-25 23:26:07    2013-05-25 23:26:07
9036    16418    630    2016-03-08 11:21:21    2016-03-08 11:21:21
9037    10188    830    2016-04-09 14:00:02    2016-04-09 14:00:02
9038    19126    813    2014-08-02 14:01:03    2014-08-02 14:01:03
9039    10336    750    2013-06-08 17:52:13    2013-06-08 17:52:13
9040    17704    817    2014-03-25 23:38:40    2014-03-25 23:38:40
9041    18462    529    2016-01-14 10:47:48    2016-01-14 10:47:48
9042    18540    626    2015-07-28 13:20:49    2015-07-28 13:20:49
9043    17152    878    2015-07-24 06:43:09    2015-07-24 06:43:09
9044    14531    726    2014-05-05 19:45:14    2014-05-05 19:45:14
9045    15851    520    2016-02-15 01:58:33    2016-02-15 01:58:33
9046    13131    599    2015-12-03 23:56:41    2015-12-03 23:56:41
9047    13123    851    2016-03-23 22:21:14    2016-03-23 22:21:14
9048    12053    947    2014-08-11 20:26:57    2014-08-11 20:26:57
9049    11438    667    2014-02-05 04:58:19    2014-02-05 04:58:19
9050    14771    749    2015-07-31 03:16:01    2015-07-31 03:16:01
9051    17800    783    2015-01-19 18:35:49    2015-01-19 18:35:49
9052    19639    756    2015-09-15 11:06:09    2015-09-15 11:06:09
9053    15359    634    2015-01-02 07:50:56    2015-01-02 07:50:56
9054    11928    540    2015-12-25 05:07:12    2015-12-25 05:07:12
9055    17810    501    2015-03-04 11:20:07    2015-03-04 11:20:07
9056    10827    843    2014-02-25 05:21:39    2014-02-25 05:21:39
9057    10882    834    2013-08-11 04:53:40    2013-08-11 04:53:40
9058    11865    727    2013-08-14 02:47:03    2013-08-14 02:47:03
9059    15577    484    2015-10-26 09:46:20    2015-10-26 09:46:20
9060    10969    916    2013-05-06 23:48:07    2013-05-06 23:48:07
9061    15970    633    2015-04-21 07:55:16    2015-04-21 07:55:16
9062    13449    692    2013-06-18 05:41:14    2013-06-18 05:41:14
9063    10629    575    2014-02-06 02:17:09    2014-02-06 02:17:09
9064    14424    627    2015-06-11 01:28:27    2015-06-11 01:28:27
9065    15631    701    2016-01-03 06:00:14    2016-01-03 06:00:14
9066    18397    526    2014-11-28 21:37:52    2014-11-28 21:37:52
9067    14922    862    2013-10-21 04:36:25    2013-10-21 04:36:25
9068    15574    610    2015-10-26 20:13:05    2015-10-26 20:13:05
9069    10138    940    2015-03-14 16:02:37    2015-03-14 16:02:37
9070    11986    871    2013-05-09 11:36:20    2013-05-09 11:36:20
9071    18086    663    2014-09-25 02:39:02    2014-09-25 02:39:02
9072    17231    487    2015-10-24 18:34:10    2015-10-24 18:34:10
9073    13263    480    2015-12-02 12:25:24    2015-12-02 12:25:24
9074    11253    725    2015-06-06 10:00:07    2015-06-06 10:00:07
9075    13327    536    2014-01-07 08:33:29    2014-01-07 08:33:29
9076    19692    547    2015-10-13 23:40:07    2015-10-13 23:40:07
9077    19215    870    2015-04-03 12:26:49    2015-04-03 12:26:49
9078    16220    626    2014-09-07 22:20:02    2014-09-07 22:20:02
9079    15868    533    2015-04-06 15:57:46    2015-04-06 15:57:46
9080    11437    649    2015-06-20 14:06:12    2015-06-20 14:06:12
9081    13894    920    2014-03-14 17:06:47    2014-03-14 17:06:47
9082    15445    690    2013-11-07 03:39:06    2013-11-07 03:39:06
9083    14031    874    2014-10-07 04:26:05    2014-10-07 04:26:05
9084    19493    791    2013-11-03 13:15:28    2013-11-03 13:15:28
9085    18529    694    2014-09-24 06:11:00    2014-09-24 06:11:00
9086    12087    645    2016-01-09 22:21:12    2016-01-09 22:21:12
9087    12687    516    2015-10-30 23:09:51    2015-10-30 23:09:51
9088    16913    884    2014-08-10 19:16:18    2014-08-10 19:16:18
9089    19376    924    2015-10-21 06:30:46    2015-10-21 06:30:46
9090    12523    935    2016-04-11 08:54:40    2016-04-11 08:54:40
9091    17036    674    2014-08-07 09:19:51    2014-08-07 09:19:51
9092    14041    897    2015-10-08 10:57:23    2015-10-08 10:57:23
9093    12064    576    2015-12-31 15:08:37    2015-12-31 15:08:37
9094    15409    709    2015-03-10 08:11:30    2015-03-10 08:11:30
9095    13612    660    2014-02-17 18:59:03    2014-02-17 18:59:03
9096    16270    884    2013-08-29 16:09:25    2013-08-29 16:09:25
9097    12881    540    2014-08-17 00:20:47    2014-08-17 00:20:47
9098    19226    609    2016-03-22 00:35:13    2016-03-22 00:35:13
9099    15260    732    2013-12-23 00:38:33    2013-12-23 00:38:33
9100    17161    815    2014-10-22 14:18:13    2014-10-22 14:18:13
9101    12470    527    2014-02-27 15:21:29    2014-02-27 15:21:29
9102    15075    695    2014-07-05 00:46:37    2014-07-05 00:46:37
9103    12738    817    2014-12-06 00:01:42    2014-12-06 00:01:42
9104    10359    556    2015-03-11 02:32:04    2015-03-11 02:32:04
9105    18459    677    2014-01-19 19:22:22    2014-01-19 19:22:22
9106    17433    950    2014-12-07 06:09:31    2014-12-07 06:09:31
9107    16661    706    2014-07-05 11:22:11    2014-07-05 11:22:11
9108    17775    699    2014-10-03 11:13:30    2014-10-03 11:13:30
9109    17352    871    2014-07-16 09:57:33    2014-07-16 09:57:33
9110    15588    857    2015-02-10 19:03:19    2015-02-10 19:03:19
9111    19388    910    2014-09-25 21:44:00    2014-09-25 21:44:00
9112    13522    900    2016-03-12 21:05:45    2016-03-12 21:05:45
9113    11407    677    2015-04-25 02:54:45    2015-04-25 02:54:45
9114    18291    940    2015-03-31 06:41:20    2015-03-31 06:41:20
9115    15343    593    2013-10-13 03:56:55    2013-10-13 03:56:55
9116    18258    905    2014-03-20 10:17:58    2014-03-20 10:17:58
9117    18903    574    2014-02-19 11:37:09    2014-02-19 11:37:09
9118    16907    522    2015-09-22 07:25:11    2015-09-22 07:25:11
9119    16695    860    2014-04-06 04:10:01    2014-04-06 04:10:01
9120    10367    723    2013-10-22 09:29:30    2013-10-22 09:29:30
9121    15862    798    2016-02-14 11:16:35    2016-02-14 11:16:35
9122    11270    707    2015-11-13 09:20:58    2015-11-13 09:20:58
9123    18806    764    2014-10-29 16:40:01    2014-10-29 16:40:01
9124    19969    510    2014-09-10 03:50:37    2014-09-10 03:50:37
9125    18560    696    2015-05-13 06:49:05    2015-05-13 06:49:05
9126    10404    698    2014-10-13 02:22:08    2014-10-13 02:22:08
9127    11412    819    2014-11-17 05:06:12    2014-11-17 05:06:12
9128    11009    829    2016-02-27 22:33:37    2016-02-27 22:33:37
9129    11881    595    2014-06-23 05:46:32    2014-06-23 05:46:32
9130    11732    599    2014-11-07 07:59:45    2014-11-07 07:59:45
9131    13175    661    2016-03-07 08:54:02    2016-03-07 08:54:02
9132    18661    871    2014-01-01 03:18:21    2014-01-01 03:18:21
9133    13692    679    2013-05-13 06:07:19    2013-05-13 06:07:19
9134    19780    862    2016-02-04 18:14:15    2016-02-04 18:14:15
9135    14191    621    2014-12-15 01:30:15    2014-12-15 01:30:15
9136    12347    953    2014-10-07 10:16:58    2014-10-07 10:16:58
9137    11337    574    2013-08-31 09:21:49    2013-08-31 09:21:49
9138    11154    758    2014-06-19 01:36:16    2014-06-19 01:36:16
9139    14881    571    2013-10-06 11:47:08    2013-10-06 11:47:08
9140    10367    568    2015-06-19 18:13:09    2015-06-19 18:13:09
9141    16692    603    2013-11-02 14:24:13    2013-11-02 14:24:13
9142    13597    926    2013-09-06 02:54:28    2013-09-06 02:54:28
9143    14728    885    2016-02-18 07:45:14    2016-02-18 07:45:14
9144    18076    880    2015-04-29 01:04:22    2015-04-29 01:04:22
9145    15970    511    2014-11-08 23:37:36    2014-11-08 23:37:36
9146    12809    559    2015-09-24 12:08:58    2015-09-24 12:08:58
9147    16310    832    2015-10-08 11:20:53    2015-10-08 11:20:53
9148    12208    590    2013-12-12 10:07:20    2013-12-12 10:07:20
9149    10756    904    2013-07-22 08:58:35    2013-07-22 08:58:35
9150    18013    878    2015-05-25 05:07:07    2015-05-25 05:07:07
9151    16728    787    2014-01-28 13:59:48    2014-01-28 13:59:48
9152    19346    921    2013-06-25 12:42:30    2013-06-25 12:42:30
9153    17640    581    2015-11-08 13:31:58    2015-11-08 13:31:58
9154    10731    952    2015-01-28 22:36:51    2015-01-28 22:36:51
9155    15395    961    2013-07-31 04:02:28    2013-07-31 04:02:28
9156    13741    848    2015-06-17 09:18:35    2015-06-17 09:18:35
9157    15623    493    2014-06-10 18:13:23    2014-06-10 18:13:23
9158    14063    517    2015-04-04 12:05:50    2015-04-04 12:05:50
9159    19162    478    2015-02-14 08:30:51    2015-02-14 08:30:51
9160    19591    625    2014-01-23 04:52:15    2014-01-23 04:52:15
9161    13837    487    2015-07-09 08:06:25    2015-07-09 08:06:25
9162    18197    467    2014-03-17 06:30:44    2014-03-17 06:30:44
9163    11435    503    2016-01-20 09:20:22    2016-01-20 09:20:22
9164    18729    827    2013-07-27 09:51:31    2013-07-27 09:51:31
9165    16787    719    2013-12-03 08:32:43    2013-12-03 08:32:43
9166    13778    551    2015-10-04 05:26:11    2015-10-04 05:26:11
9167    10965    480    2016-03-14 17:47:12    2016-03-14 17:47:12
9168    10971    810    2015-03-06 05:48:29    2015-03-06 05:48:29
9169    18849    670    2013-08-20 17:49:17    2013-08-20 17:49:17
9170    12217    937    2015-09-30 06:43:50    2015-09-30 06:43:50
9171    12166    589    2015-03-01 12:20:13    2015-03-01 12:20:13
9172    13255    747    2013-10-13 15:33:55    2013-10-13 15:33:55
9173    11457    642    2013-08-05 04:57:14    2013-08-05 04:57:14
9174    19461    887    2015-04-11 04:14:32    2015-04-11 04:14:32
9175    18403    826    2015-05-28 05:30:36    2015-05-28 05:30:36
9176    17351    668    2014-08-28 02:11:29    2014-08-28 02:11:29
9177    13872    575    2013-12-07 14:17:35    2013-12-07 14:17:35
9178    13063    467    2013-07-01 02:17:10    2013-07-01 02:17:10
9179    12485    809    2014-11-11 10:20:00    2014-11-11 10:20:00
9180    12295    533    2014-08-06 06:14:53    2014-08-06 06:14:53
9181    17688    636    2014-07-30 04:54:01    2014-07-30 04:54:01
9182    17306    651    2015-07-02 07:18:24    2015-07-02 07:18:24
9183    11858    833    2016-03-05 23:36:47    2016-03-05 23:36:47
9184    10313    634    2015-05-03 11:06:24    2015-05-03 11:06:24
9185    14785    485    2014-08-26 12:10:35    2014-08-26 12:10:35
9186    10416    806    2015-01-07 06:15:28    2015-01-07 06:15:28
9187    18877    563    2015-04-16 14:39:54    2015-04-16 14:39:54
9188    15163    885    2015-05-22 09:26:11    2015-05-22 09:26:11
9189    10853    492    2015-11-01 12:37:40    2015-11-01 12:37:40
9190    10842    900    2015-01-13 23:46:21    2015-01-13 23:46:21
9191    12287    781    2013-11-06 18:58:11    2013-11-06 18:58:11
9192    11472    530    2016-03-06 15:17:26    2016-03-06 15:17:26
9193    13164    543    2016-01-06 19:48:32    2016-01-06 19:48:32
9194    17855    927    2016-01-01 05:51:03    2016-01-01 05:51:03
9195    14907    774    2014-07-14 11:23:31    2014-07-14 11:23:31
9196    13824    792    2013-06-26 10:08:37    2013-06-26 10:08:37
9197    19750    664    2015-05-29 05:53:37    2015-05-29 05:53:37
9198    11421    561    2016-04-09 23:55:01    2016-04-09 23:55:01
9199    12538    788    2013-09-27 21:28:02    2013-09-27 21:28:02
9200    15502    853    2014-02-24 18:46:22    2014-02-24 18:46:22
9201    14249    557    2015-11-29 18:51:22    2015-11-29 18:51:22
9202    17900    802    2014-03-17 08:10:06    2014-03-17 08:10:06
9203    16236    788    2014-04-12 03:45:59    2014-04-12 03:45:59
9204    17515    942    2015-01-03 05:48:35    2015-01-03 05:48:35
9205    18853    806    2014-12-15 23:45:10    2014-12-15 23:45:10
9206    14554    923    2014-01-25 13:38:57    2014-01-25 13:38:57
9207    19858    596    2015-02-20 20:50:44    2015-02-20 20:50:44
9208    17576    843    2014-03-26 02:21:05    2014-03-26 02:21:05
9209    16458    914    2014-07-25 06:43:48    2014-07-25 06:43:48
9210    16910    835    2015-04-14 14:04:59    2015-04-14 14:04:59
9211    18314    546    2014-11-04 10:21:23    2014-11-04 10:21:23
9212    17519    954    2013-09-24 18:22:55    2013-09-24 18:22:55
9213    17186    644    2014-09-14 09:14:40    2014-09-14 09:14:40
9214    12531    837    2015-03-15 09:52:25    2015-03-15 09:52:25
9215    18274    824    2016-02-04 14:03:35    2016-02-04 14:03:35
9216    17415    831    2014-12-24 05:58:05    2014-12-24 05:58:05
9217    12080    766    2014-11-14 09:33:52    2014-11-14 09:33:52
9218    15326    903    2015-06-17 16:52:27    2015-06-17 16:52:27
9219    14194    644    2015-08-17 02:26:17    2015-08-17 02:26:17
9220    18024    795    2016-04-13 09:43:54    2016-04-13 09:43:54
9221    18081    648    2015-08-12 01:48:57    2015-08-12 01:48:57
9222    11460    629    2015-06-09 09:48:08    2015-06-09 09:48:08
9223    18492    935    2014-08-27 11:40:54    2014-08-27 11:40:54
9224    16234    586    2015-02-01 11:48:40    2015-02-01 11:48:40
9225    10998    737    2013-10-16 18:42:38    2013-10-16 18:42:38
9226    17032    569    2015-03-09 17:37:50    2015-03-09 17:37:50
9227    18744    515    2015-05-06 07:29:33    2015-05-06 07:29:33
9228    13108    812    2014-05-04 00:39:37    2014-05-04 00:39:37
9229    14973    884    2016-03-28 02:18:35    2016-03-28 02:18:35
9230    14350    659    2015-09-29 00:06:46    2015-09-29 00:06:46
9231    13532    843    2015-06-20 15:45:31    2015-06-20 15:45:31
9232    18110    772    2014-04-30 21:26:37    2014-04-30 21:26:37
9233    16083    667    2015-07-25 18:07:23    2015-07-25 18:07:23
9234    18071    889    2013-05-18 17:08:40    2013-05-18 17:08:40
9235    12779    945    2015-05-02 05:15:14    2015-05-02 05:15:14
9236    12487    808    2016-03-09 06:31:42    2016-03-09 06:31:42
9237    16690    563    2014-04-07 00:06:30    2014-04-07 00:06:30
9238    19687    626    2014-02-15 01:00:16    2014-02-15 01:00:16
9239    18589    943    2014-02-08 13:02:02    2014-02-08 13:02:02
9240    12159    503    2015-03-08 19:34:04    2015-03-08 19:34:04
9241    19843    580    2015-05-26 11:20:15    2015-05-26 11:20:15
9242    19117    649    2013-10-27 17:00:54    2013-10-27 17:00:54
9243    19321    576    2015-12-06 12:49:43    2015-12-06 12:49:43
9244    17994    942    2014-11-20 20:31:27    2014-11-20 20:31:27
9245    14917    717    2015-11-21 16:15:54    2015-11-21 16:15:54
9246    13220    943    2014-12-02 11:48:20    2014-12-02 11:48:20
9247    11932    870    2013-09-02 22:52:17    2013-09-02 22:52:17
9248    16674    839    2013-12-29 23:08:56    2013-12-29 23:08:56
9249    13221    554    2015-12-24 05:47:12    2015-12-24 05:47:12
9250    15506    883    2014-03-19 21:43:50    2014-03-19 21:43:50
9251    19264    902    2015-04-26 07:53:17    2015-04-26 07:53:17
9252    18496    851    2014-04-19 02:57:54    2014-04-19 02:57:54
9253    17098    679    2015-05-01 06:46:22    2015-05-01 06:46:22
9254    14657    710    2014-11-04 21:46:12    2014-11-04 21:46:12
9255    16579    544    2015-05-05 12:12:04    2015-05-05 12:12:04
9256    19400    834    2015-12-15 05:14:07    2015-12-15 05:14:07
9257    12507    783    2016-02-03 05:12:20    2016-02-03 05:12:20
9258    19045    802    2015-03-30 00:17:13    2015-03-30 00:17:13
9259    16302    836    2013-12-31 06:11:12    2013-12-31 06:11:12
9260    14432    798    2015-09-24 01:56:03    2015-09-24 01:56:03
9261    16545    637    2014-06-26 07:00:09    2014-06-26 07:00:09
9262    10159    781    2014-04-16 20:48:41    2014-04-16 20:48:41
9263    10335    931    2013-10-21 17:42:55    2013-10-21 17:42:55
9264    15547    517    2015-08-03 18:29:20    2015-08-03 18:29:20
9265    18995    844    2015-05-08 10:47:54    2015-05-08 10:47:54
9266    12454    540    2014-12-26 06:50:38    2014-12-26 06:50:38
9267    14108    923    2014-05-12 11:42:25    2014-05-12 11:42:25
9268    10174    712    2015-02-28 09:08:32    2015-02-28 09:08:32
9269    19116    599    2013-11-24 15:02:04    2013-11-24 15:02:04
9270    16576    681    2015-04-21 19:06:32    2015-04-21 19:06:32
9271    19311    867    2014-05-25 21:37:10    2014-05-25 21:37:10
9272    16465    801    2014-03-28 09:07:56    2014-03-28 09:07:56
9273    10082    761    2014-09-15 13:00:22    2014-09-15 13:00:22
9274    16125    785    2015-06-14 12:39:28    2015-06-14 12:39:28
9275    11004    482    2013-09-25 02:13:54    2013-09-25 02:13:54
9276    15208    679    2014-12-25 02:46:48    2014-12-25 02:46:48
9277    18421    663    2015-01-04 12:13:38    2015-01-04 12:13:38
9278    10387    655    2015-10-25 06:42:51    2015-10-25 06:42:51
9279    17867    929    2016-04-15 18:39:17    2016-04-15 18:39:17
9280    17073    728    2013-10-06 03:37:03    2013-10-06 03:37:03
9281    16525    807    2014-05-15 13:49:50    2014-05-15 13:49:50
9282    15288    957    2013-05-21 00:22:26    2013-05-21 00:22:26
9283    10800    616    2014-08-22 17:13:39    2014-08-22 17:13:39
9284    10321    598    2015-05-08 14:24:23    2015-05-08 14:24:23
9285    19019    737    2013-09-02 09:59:24    2013-09-02 09:59:24
9286    18438    712    2015-03-11 03:26:59    2015-03-11 03:26:59
9287    14243    822    2016-02-18 13:39:10    2016-02-18 13:39:10
9288    18432    678    2014-06-25 20:45:33    2014-06-25 20:45:33
9289    19702    541    2015-06-06 13:45:47    2015-06-06 13:45:47
9290    18241    756    2016-02-01 11:30:27    2016-02-01 11:30:27
9291    14170    938    2016-01-16 01:19:58    2016-01-16 01:19:58
9292    19824    867    2014-09-17 09:42:06    2014-09-17 09:42:06
9293    17523    875    2015-02-16 18:01:44    2015-02-16 18:01:44
9294    12147    947    2013-05-10 11:51:40    2013-05-10 11:51:40
9295    15371    803    2013-09-19 00:20:56    2013-09-19 00:20:56
9296    13193    936    2015-11-04 16:07:44    2015-11-04 16:07:44
9297    17769    670    2014-05-12 10:25:45    2014-05-12 10:25:45
9298    16490    841    2016-03-13 12:54:21    2016-03-13 12:54:21
9299    12393    538    2013-05-07 02:46:36    2013-05-07 02:46:36
9300    16056    758    2015-12-16 20:10:34    2015-12-16 20:10:34
9301    16118    797    2015-05-10 16:37:21    2015-05-10 16:37:21
9302    12799    714    2015-07-29 02:04:24    2015-07-29 02:04:24
9303    12946    559    2015-07-26 23:50:15    2015-07-26 23:50:15
9304    16625    633    2013-04-22 02:45:17    2013-04-22 02:45:17
9305    16916    520    2015-03-16 18:22:56    2015-03-16 18:22:56
9306    19257    860    2015-10-24 11:57:09    2015-10-24 11:57:09
9307    12043    749    2013-09-24 19:38:29    2013-09-24 19:38:29
9308    16617    800    2014-05-12 08:49:50    2014-05-12 08:49:50
9309    14668    705    2013-11-24 07:08:37    2013-11-24 07:08:37
9310    11674    641    2015-02-20 10:50:19    2015-02-20 10:50:19
9311    10444    907    2015-11-14 14:12:51    2015-11-14 14:12:51
9312    12147    494    2013-07-22 08:59:50    2013-07-22 08:59:50
9313    11178    584    2015-07-11 23:37:46    2015-07-11 23:37:46
9314    19516    545    2015-07-21 03:57:44    2015-07-21 03:57:44
9315    13252    769    2014-12-05 11:21:00    2014-12-05 11:21:00
9316    18183    947    2015-04-01 12:44:15    2015-04-01 12:44:15
9317    19447    896    2013-09-02 01:24:35    2013-09-02 01:24:35
9318    13830    624    2015-03-09 19:03:05    2015-03-09 19:03:05
9319    19351    688    2015-10-05 08:25:15    2015-10-05 08:25:15
9320    19399    507    2015-07-04 11:55:50    2015-07-04 11:55:50
9321    16207    594    2014-05-09 12:08:37    2014-05-09 12:08:37
9322    11037    682    2015-04-09 04:16:03    2015-04-09 04:16:03
9323    19215    765    2015-03-20 08:35:23    2015-03-20 08:35:23
9324    14376    955    2015-09-18 09:57:25    2015-09-18 09:57:25
9325    17952    946    2013-06-19 09:00:18    2013-06-19 09:00:18
9326    16780    883    2014-08-25 15:19:50    2014-08-25 15:19:50
9327    10215    777    2014-09-13 07:58:57    2014-09-13 07:58:57
9328    14849    918    2015-06-29 20:11:55    2015-06-29 20:11:55
9329    10539    703    2014-04-30 02:44:12    2014-04-30 02:44:12
9330    13009    498    2015-12-08 14:18:25    2015-12-08 14:18:25
9331    15653    820    2013-06-18 16:11:44    2013-06-18 16:11:44
9332    17930    512    2015-07-13 19:03:18    2015-07-13 19:03:18
9333    18553    672    2015-10-06 17:16:27    2015-10-06 17:16:27
9334    12288    796    2015-03-17 12:37:44    2015-03-17 12:37:44
9335    14775    629    2014-01-03 20:41:11    2014-01-03 20:41:11
9336    13344    578    2014-04-15 17:56:36    2014-04-15 17:56:36
9337    16173    864    2013-07-24 05:12:27    2013-07-24 05:12:27
9338    11070    475    2014-06-18 01:58:12    2014-06-18 01:58:12
9339    15149    620    2015-11-22 11:21:34    2015-11-22 11:21:34
9340    11424    482    2013-10-21 22:12:06    2013-10-21 22:12:06
9341    17708    591    2015-06-20 13:47:21    2015-06-20 13:47:21
9342    13167    608    2013-09-27 09:03:09    2013-09-27 09:03:09
9343    16634    892    2013-11-03 18:53:49    2013-11-03 18:53:49
9344    16738    619    2015-05-03 22:34:36    2015-05-03 22:34:36
9345    15217    772    2015-06-16 02:32:54    2015-06-16 02:32:54
9346    18157    524    2015-10-09 08:01:44    2015-10-09 08:01:44
9347    12541    485    2015-01-24 00:00:04    2015-01-24 00:00:04
9348    12377    720    2015-01-01 06:40:44    2015-01-01 06:40:44
9349    10737    654    2015-03-28 13:34:39    2015-03-28 13:34:39
9350    18984    810    2015-10-30 17:42:40    2015-10-30 17:42:40
9351    11663    591    2015-02-08 12:43:59    2015-02-08 12:43:59
9352    16293    551    2015-01-04 07:05:36    2015-01-04 07:05:36
9353    11747    771    2015-01-19 02:01:33    2015-01-19 02:01:33
9354    14589    762    2014-05-17 02:23:39    2014-05-17 02:23:39
9355    16848    837    2013-10-18 12:52:59    2013-10-18 12:52:59
9356    18837    520    2015-03-01 08:07:23    2015-03-01 08:07:23
9357    17288    909    2015-07-28 21:07:57    2015-07-28 21:07:57
9358    10049    776    2015-02-26 04:10:49    2015-02-26 04:10:49
9359    11493    744    2015-07-29 04:18:20    2015-07-29 04:18:20
9360    14407    894    2016-03-11 21:47:52    2016-03-11 21:47:52
9361    13056    597    2013-08-08 17:01:50    2013-08-08 17:01:50
9362    12996    717    2013-07-15 23:18:50    2013-07-15 23:18:50
9363    15662    849    2013-05-31 09:03:18    2013-05-31 09:03:18
9364    17926    572    2014-12-25 20:50:18    2014-12-25 20:50:18
9365    15294    942    2015-07-21 14:43:35    2015-07-21 14:43:35
9366    19726    937    2014-08-01 10:44:44    2014-08-01 10:44:44
9367    17071    896    2015-11-01 21:07:26    2015-11-01 21:07:26
9368    10007    877    2016-01-25 23:37:13    2016-01-25 23:37:13
9369    17284    565    2013-07-27 02:12:12    2013-07-27 02:12:12
9370    13102    605    2014-12-24 00:16:17    2014-12-24 00:16:17
9371    11651    506    2015-09-13 17:37:19    2015-09-13 17:37:19
9372    16353    734    2013-05-31 10:55:33    2013-05-31 10:55:33
9373    16288    522    2015-07-03 08:36:45    2015-07-03 08:36:45
9374    17600    863    2014-12-28 11:53:09    2014-12-28 11:53:09
9375    19316    705    2014-02-18 19:42:44    2014-02-18 19:42:44
9376    15472    606    2014-07-29 04:34:58    2014-07-29 04:34:58
9377    16399    662    2015-06-07 21:17:53    2015-06-07 21:17:53
9378    11250    608    2015-10-19 09:05:26    2015-10-19 09:05:26
9379    15099    904    2013-07-04 21:16:42    2013-07-04 21:16:42
9380    14276    897    2014-11-28 00:13:32    2014-11-28 00:13:32
9381    12799    697    2014-10-15 12:57:42    2014-10-15 12:57:42
9382    19355    911    2015-12-01 17:02:28    2015-12-01 17:02:28
9383    17075    603    2015-01-24 10:55:24    2015-01-24 10:55:24
9384    17674    651    2013-05-13 12:58:27    2013-05-13 12:58:27
9385    19579    636    2016-01-13 16:27:22    2016-01-13 16:27:22
9386    16248    724    2014-04-20 20:39:34    2014-04-20 20:39:34
9387    18041    627    2014-06-11 16:26:48    2014-06-11 16:26:48
9388    19492    735    2013-06-06 09:07:50    2013-06-06 09:07:50
9389    14095    573    2015-08-16 11:34:07    2015-08-16 11:34:07
9390    11869    692    2015-10-25 20:32:55    2015-10-25 20:32:55
9391    17246    470    2013-09-18 00:21:25    2013-09-18 00:21:25
9392    16158    851    2014-01-30 13:10:29    2014-01-30 13:10:29
9393    14198    818    2014-02-13 15:58:35    2014-02-13 15:58:35
9394    12022    759    2014-09-23 12:20:52    2014-09-23 12:20:52
9395    19575    753    2014-03-29 06:11:18    2014-03-29 06:11:18
9396    15904    548    2014-09-24 16:14:43    2014-09-24 16:14:43
9397    18994    496    2013-12-01 15:06:59    2013-12-01 15:06:59
9398    12237    908    2015-06-03 16:56:38    2015-06-03 16:56:38
9399    10144    612    2016-03-14 11:54:18    2016-03-14 11:54:18
9400    16125    819    2014-06-21 13:29:35    2014-06-21 13:29:35
9401    14067    863    2014-01-28 04:53:13    2014-01-28 04:53:13
9402    14155    758    2016-02-07 15:49:59    2016-02-07 15:49:59
9403    17754    582    2014-06-06 03:41:51    2014-06-06 03:41:51
9404    19033    906    2014-11-16 12:05:18    2014-11-16 12:05:18
9405    16708    756    2014-05-24 18:57:40    2014-05-24 18:57:40
9406    12661    946    2015-10-14 08:28:12    2015-10-14 08:28:12
9407    11848    950    2014-01-01 02:49:33    2014-01-01 02:49:33
9408    19398    494    2014-10-22 04:05:45    2014-10-22 04:05:45
9409    12596    765    2013-04-28 10:53:47    2013-04-28 10:53:47
9410    19301    652    2015-09-06 22:48:55    2015-09-06 22:48:55
9411    18470    567    2014-02-05 22:44:42    2014-02-05 22:44:42
9412    14960    673    2015-03-22 20:00:27    2015-03-22 20:00:27
9413    12225    470    2015-10-25 10:53:36    2015-10-25 10:53:36
9414    18792    636    2013-09-06 14:39:39    2013-09-06 14:39:39
9415    11047    501    2015-05-11 11:56:26    2015-05-11 11:56:26
9416    14537    751    2015-03-19 21:28:43    2015-03-19 21:28:43
9417    11043    760    2015-05-27 01:52:47    2015-05-27 01:52:47
9418    19316    520    2014-09-20 16:42:51    2014-09-20 16:42:51
9419    16120    470    2013-12-27 06:17:23    2013-12-27 06:17:23
9420    19740    752    2014-11-10 07:14:39    2014-11-10 07:14:39
9421    15880    835    2013-05-20 07:05:28    2013-05-20 07:05:28
9422    13819    567    2015-09-02 11:14:18    2015-09-02 11:14:18
9423    15180    694    2013-05-27 00:05:08    2013-05-27 00:05:08
9424    13372    555    2015-11-08 11:25:52    2015-11-08 11:25:52
9425    10350    952    2014-06-27 11:37:03    2014-06-27 11:37:03
9426    13234    598    2014-06-22 15:13:13    2014-06-22 15:13:13
9427    14241    535    2016-01-29 06:37:49    2016-01-29 06:37:49
9428    12759    489    2013-07-29 07:22:10    2013-07-29 07:22:10
9429    11539    482    2014-05-14 15:33:39    2014-05-14 15:33:39
9430    10034    592    2014-11-27 16:52:37    2014-11-27 16:52:37
9431    16021    505    2013-12-28 22:43:23    2013-12-28 22:43:23
9432    11172    742    2015-06-30 00:39:37    2015-06-30 00:39:37
9433    18351    493    2016-01-18 22:14:38    2016-01-18 22:14:38
9434    19880    954    2013-06-01 19:03:00    2013-06-01 19:03:00
9435    12800    594    2014-11-04 17:36:37    2014-11-04 17:36:37
9436    19812    679    2013-10-24 15:35:50    2013-10-24 15:35:50
9437    18883    771    2015-06-08 13:19:52    2015-06-08 13:19:52
9438    15700    837    2014-04-17 05:48:19    2014-04-17 05:48:19
9439    11058    633    2014-06-19 05:29:41    2014-06-19 05:29:41
9440    13786    817    2014-07-31 07:13:22    2014-07-31 07:13:22
9441    17661    774    2013-09-05 22:29:21    2013-09-05 22:29:21
9442    15842    719    2015-01-18 18:09:02    2015-01-18 18:09:02
9443    11026    477    2013-06-11 12:21:26    2013-06-11 12:21:26
9444    14918    697    2014-12-07 12:13:23    2014-12-07 12:13:23
9445    14565    509    2015-04-17 17:12:37    2015-04-17 17:12:37
9446    14724    574    2016-03-05 01:40:04    2016-03-05 01:40:04
9447    14614    884    2014-10-14 08:55:16    2014-10-14 08:55:16
9448    13134    560    2014-12-26 09:14:11    2014-12-26 09:14:11
9449    13427    786    2015-06-06 10:01:51    2015-06-06 10:01:51
9450    12687    873    2014-08-26 01:40:21    2014-08-26 01:40:21
9451    16841    896    2014-10-05 17:41:29    2014-10-05 17:41:29
9452    13492    736    2015-10-07 17:02:56    2015-10-07 17:02:56
9453    15656    909    2015-05-04 18:30:51    2015-05-04 18:30:51
9454    19394    507    2013-09-19 04:03:23    2013-09-19 04:03:23
9455    12510    479    2014-04-27 03:54:57    2014-04-27 03:54:57
9456    10948    862    2014-09-08 03:02:35    2014-09-08 03:02:35
9457    18317    835    2015-11-09 09:32:52    2015-11-09 09:32:52
9458    10389    580    2015-03-21 20:40:33    2015-03-21 20:40:33
9459    15923    498    2013-09-22 04:24:41    2013-09-22 04:24:41
9460    15936    660    2013-09-08 00:20:02    2013-09-08 00:20:02
9461    13116    725    2013-08-21 18:55:47    2013-08-21 18:55:47
9462    17430    611    2015-10-15 01:32:54    2015-10-15 01:32:54
9463    18354    650    2013-08-20 09:31:14    2013-08-20 09:31:14
9464    19156    786    2015-08-26 06:09:32    2015-08-26 06:09:32
9465    15649    818    2013-08-21 12:25:39    2013-08-21 12:25:39
9466    18085    722    2016-03-03 13:25:38    2016-03-03 13:25:38
9467    13924    741    2015-07-11 04:43:24    2015-07-11 04:43:24
9468    11036    676    2015-08-18 20:23:41    2015-08-18 20:23:41
9469    18745    868    2014-09-28 10:01:48    2014-09-28 10:01:48
9470    10655    856    2014-11-14 00:14:32    2014-11-14 00:14:32
9471    12122    711    2013-05-16 03:25:09    2013-05-16 03:25:09
9472    10965    939    2014-01-20 11:00:31    2014-01-20 11:00:31
9473    13966    560    2013-10-27 16:02:43    2013-10-27 16:02:43
9474    13690    782    2013-11-08 19:27:08    2013-11-08 19:27:08
9475    19713    674    2015-09-21 06:19:54    2015-09-21 06:19:54
9476    12177    865    2015-09-23 04:55:31    2015-09-23 04:55:31
9477    10839    801    2015-02-06 14:51:16    2015-02-06 14:51:16
9478    11932    547    2016-04-12 00:08:37    2016-04-12 00:08:37
9479    12738    592    2014-06-21 17:53:28    2014-06-21 17:53:28
9480    13221    590    2014-11-18 18:41:54    2014-11-18 18:41:54
9481    17346    706    2013-12-09 01:48:50    2013-12-09 01:48:50
9482    18186    574    2014-03-29 15:51:46    2014-03-29 15:51:46
9483    10874    473    2014-11-16 04:42:37    2014-11-16 04:42:37
9484    18740    765    2015-04-17 19:55:34    2015-04-17 19:55:34
9485    18346    497    2014-04-18 02:20:34    2014-04-18 02:20:34
9486    10629    864    2014-08-30 09:51:18    2014-08-30 09:51:18
9487    19046    700    2015-08-16 14:31:41    2015-08-16 14:31:41
9488    13130    700    2015-10-27 13:14:35    2015-10-27 13:14:35
9489    17628    526    2015-06-03 03:53:42    2015-06-03 03:53:42
9490    14593    566    2015-01-21 07:55:20    2015-01-21 07:55:20
9491    14992    740    2015-03-06 23:09:54    2015-03-06 23:09:54
9492    12037    508    2013-04-27 06:24:55    2013-04-27 06:24:55
9493    19097    955    2016-03-06 16:39:30    2016-03-06 16:39:30
9494    19110    897    2014-04-19 09:11:37    2014-04-19 09:11:37
9495    15760    745    2013-08-16 14:03:25    2013-08-16 14:03:25
9496    16826    836    2015-03-23 18:06:49    2015-03-23 18:06:49
9497    14651    479    2014-10-18 05:36:50    2014-10-18 05:36:50
9498    17368    773    2015-11-20 14:59:57    2015-11-20 14:59:57
9499    13094    622    2014-12-21 04:41:17    2014-12-21 04:41:17
9500    18299    633    2013-04-28 23:42:03    2013-04-28 23:42:03
9501    11367    622    2013-09-06 06:54:43    2013-09-06 06:54:43
9502    17676    945    2014-09-20 13:27:06    2014-09-20 13:27:06
9503    17334    642    2015-09-21 14:24:08    2015-09-21 14:24:08
9504    12079    473    2014-02-01 10:01:43    2014-02-01 10:01:43
9505    15938    662    2014-01-09 11:35:39    2014-01-09 11:35:39
9506    15033    937    2013-08-13 19:11:31    2013-08-13 19:11:31
9507    10343    497    2013-09-17 16:48:40    2013-09-17 16:48:40
9508    17241    494    2014-07-02 20:29:36    2014-07-02 20:29:36
9509    14130    660    2015-12-30 14:16:49    2015-12-30 14:16:49
9510    14620    702    2013-08-18 19:19:25    2013-08-18 19:19:25
9511    12212    471    2014-03-18 07:27:14    2014-03-18 07:27:14
9512    18820    734    2013-06-26 20:38:30    2013-06-26 20:38:30
9513    18714    558    2015-12-12 15:31:41    2015-12-12 15:31:41
9514    16083    927    2015-01-05 19:29:36    2015-01-05 19:29:36
9515    18669    838    2013-11-13 15:38:43    2013-11-13 15:38:43
9516    11845    551    2015-03-18 10:35:00    2015-03-18 10:35:00
9517    15150    604    2015-09-07 16:12:37    2015-09-07 16:12:37
9518    18868    757    2015-05-08 08:38:15    2015-05-08 08:38:15
9519    15419    519    2013-08-22 11:55:47    2013-08-22 11:55:47
9520    19308    790    2015-11-20 18:43:11    2015-11-20 18:43:11
9521    19183    723    2016-03-22 06:11:51    2016-03-22 06:11:51
9522    19001    795    2015-12-03 16:49:43    2015-12-03 16:49:43
9523    19417    544    2014-01-21 09:15:09    2014-01-21 09:15:09
9524    18857    473    2014-08-12 03:02:44    2014-08-12 03:02:44
9525    11077    877    2014-09-25 12:57:29    2014-09-25 12:57:29
9526    18900    509    2013-10-21 02:58:50    2013-10-21 02:58:50
9527    14282    479    2014-08-30 06:40:30    2014-08-30 06:40:30
9528    14543    763    2015-11-24 19:51:42    2015-11-24 19:51:42
9529    12846    655    2013-05-30 08:41:56    2013-05-30 08:41:56
9530    19260    713    2014-08-17 12:34:49    2014-08-17 12:34:49
9531    10751    862    2014-10-22 09:50:26    2014-10-22 09:50:26
9532    16793    534    2016-03-23 22:53:05    2016-03-23 22:53:05
9533    10999    517    2015-12-20 22:36:13    2015-12-20 22:36:13
9534    16067    852    2013-09-22 16:08:32    2013-09-22 16:08:32
9535    18665    748    2015-06-16 19:20:26    2015-06-16 19:20:26
9536    13501    517    2014-11-27 05:18:10    2014-11-27 05:18:10
9537    10061    530    2015-04-21 09:55:30    2015-04-21 09:55:30
9538    14451    569    2013-06-06 23:19:21    2013-06-06 23:19:21
9539    14914    463    2013-04-24 00:50:12    2013-04-24 00:50:12
9540    19064    541    2014-05-27 13:46:05    2014-05-27 13:46:05
9541    11944    859    2014-07-20 04:27:33    2014-07-20 04:27:33
9542    15410    737    2014-01-08 22:53:27    2014-01-08 22:53:27
9543    19757    542    2015-01-21 01:22:55    2015-01-21 01:22:55
9544    13753    792    2014-01-21 22:15:46    2014-01-21 22:15:46
9545    14039    673    2014-06-04 09:14:14    2014-06-04 09:14:14
9546    11058    872    2016-02-18 04:19:30    2016-02-18 04:19:30
9547    10758    944    2014-11-26 04:41:00    2014-11-26 04:41:00
9548    16488    740    2014-09-23 15:13:42    2014-09-23 15:13:42
9549    12298    943    2014-12-09 17:00:32    2014-12-09 17:00:32
9550    17071    642    2016-03-27 20:35:39    2016-03-27 20:35:39
9551    10240    474    2015-06-05 16:54:02    2015-06-05 16:54:02
9552    18792    651    2014-06-09 08:27:16    2014-06-09 08:27:16
9553    11875    653    2015-10-26 18:20:31    2015-10-26 18:20:31
9554    15791    758    2014-08-17 12:02:48    2014-08-17 12:02:48
9555    11844    794    2015-02-04 00:53:42    2015-02-04 00:53:42
9556    11481    477    2014-05-22 20:14:55    2014-05-22 20:14:55
9557    16250    781    2013-07-07 03:57:26    2013-07-07 03:57:26
9558    12357    602    2014-05-02 17:09:03    2014-05-02 17:09:03
9559    16495    900    2015-02-12 15:08:31    2015-02-12 15:08:31
9560    17581    774    2015-01-27 03:12:18    2015-01-27 03:12:18
9561    10667    659    2013-09-15 09:29:34    2013-09-15 09:29:34
9562    19588    690    2014-03-30 14:01:54    2014-03-30 14:01:54
9563    16834    589    2015-06-13 15:24:29    2015-06-13 15:24:29
9564    16166    596    2015-10-25 07:26:37    2015-10-25 07:26:37
9565    14472    751    2015-04-11 08:29:55    2015-04-11 08:29:55
9566    19778    870    2014-08-12 17:54:38    2014-08-12 17:54:38
9567    15824    891    2015-04-14 21:07:08    2015-04-14 21:07:08
9568    16891    572    2014-08-06 10:41:35    2014-08-06 10:41:35
9569    10735    865    2015-01-25 14:40:33    2015-01-25 14:40:33
9570    11981    598    2015-01-19 11:29:21    2015-01-19 11:29:21
9571    18894    959    2015-04-06 10:23:29    2015-04-06 10:23:29
9572    17643    908    2016-01-07 01:33:39    2016-01-07 01:33:39
9573    12521    570    2014-07-19 04:28:08    2014-07-19 04:28:08
9574    15896    848    2014-11-23 10:35:35    2014-11-23 10:35:35
9575    12257    740    2014-08-07 09:07:21    2014-08-07 09:07:21
9576    17580    470    2014-04-27 02:50:46    2014-04-27 02:50:46
9577    17343    563    2015-11-26 12:39:34    2015-11-26 12:39:34
9578    11720    848    2015-10-28 04:29:08    2015-10-28 04:29:08
9579    12675    567    2015-03-23 12:38:38    2015-03-23 12:38:38
9580    16211    873    2015-01-23 01:36:11    2015-01-23 01:36:11
9581    10472    936    2013-07-21 20:46:33    2013-07-21 20:46:33
9582    12286    737    2013-07-08 02:30:11    2013-07-08 02:30:11
9583    13291    489    2014-03-24 01:43:16    2014-03-24 01:43:16
9584    15654    661    2015-11-15 19:27:16    2015-11-15 19:27:16
9585    10236    828    2014-11-05 19:42:00    2014-11-05 19:42:00
9586    19649    678    2013-09-04 23:28:31    2013-09-04 23:28:31
9587    16661    557    2015-10-30 10:33:03    2015-10-30 10:33:03
9588    10696    719    2013-08-11 13:32:48    2013-08-11 13:32:48
9589    14162    665    2015-07-04 12:53:27    2015-07-04 12:53:27
9590    13201    903    2016-03-31 22:04:52    2016-03-31 22:04:52
9591    15467    840    2013-07-29 06:38:35    2013-07-29 06:38:35
9592    19172    830    2016-04-03 09:35:49    2016-04-03 09:35:49
9593    13780    608    2015-07-26 01:11:33    2015-07-26 01:11:33
9594    13775    824    2014-04-29 08:53:25    2014-04-29 08:53:25
9595    16652    624    2015-02-12 22:15:54    2015-02-12 22:15:54
9596    18105    745    2015-08-31 06:26:11    2015-08-31 06:26:11
9597    19238    631    2014-04-01 19:42:09    2014-04-01 19:42:09
9598    10675    599    2013-11-14 07:28:09    2013-11-14 07:28:09
9599    12558    591    2016-03-21 07:39:43    2016-03-21 07:39:43
9600    18556    736    2016-04-12 11:23:24    2016-04-12 11:23:24
9601    17893    947    2015-12-14 01:03:07    2015-12-14 01:03:07
9602    11297    529    2015-06-30 00:47:03    2015-06-30 00:47:03
9603    11172    666    2015-06-30 05:41:11    2015-06-30 05:41:11
9604    17259    792    2015-06-22 08:56:12    2015-06-22 08:56:12
9605    13819    692    2013-06-01 16:33:48    2013-06-01 16:33:48
9606    19472    469    2014-11-27 08:25:44    2014-11-27 08:25:44
9607    19099    537    2015-10-02 02:20:05    2015-10-02 02:20:05
9608    11439    578    2014-12-16 16:19:53    2014-12-16 16:19:53
9609    17410    668    2014-05-22 09:50:53    2014-05-22 09:50:53
9610    12406    755    2015-11-27 02:29:25    2015-11-27 02:29:25
9611    10937    671    2016-03-03 09:16:32    2016-03-03 09:16:32
9612    19682    691    2014-07-29 10:27:37    2014-07-29 10:27:37
9613    14149    606    2013-10-13 19:01:47    2013-10-13 19:01:47
9614    19821    471    2015-04-20 06:39:38    2015-04-20 06:39:38
9615    13261    803    2015-10-05 17:24:26    2015-10-05 17:24:26
9616    18471    808    2015-01-17 10:36:51    2015-01-17 10:36:51
9617    16679    721    2013-08-09 01:37:16    2013-08-09 01:37:16
9618    17187    847    2014-11-27 01:01:29    2014-11-27 01:01:29
9619    11326    545    2014-12-03 07:29:04    2014-12-03 07:29:04
9620    17433    836    2016-03-13 19:32:20    2016-03-13 19:32:20
9621    12069    530    2015-07-08 14:49:41    2015-07-08 14:49:41
9622    11789    678    2015-02-09 04:04:51    2015-02-09 04:04:51
9623    11379    472    2013-10-24 10:01:19    2013-10-24 10:01:19
9624    13276    771    2013-05-15 06:01:23    2013-05-15 06:01:23
9625    17117    802    2014-03-11 02:38:11    2014-03-11 02:38:11
9626    15580    647    2015-03-06 09:38:08    2015-03-06 09:38:08
9627    19375    810    2014-10-19 09:52:38    2014-10-19 09:52:38
9628    14877    792    2014-11-19 18:37:01    2014-11-19 18:37:01
9629    11910    920    2014-08-28 13:31:32    2014-08-28 13:31:32
9630    15078    757    2015-02-03 22:20:57    2015-02-03 22:20:57
9631    12221    625    2014-03-09 19:17:26    2014-03-09 19:17:26
9632    16207    887    2014-05-26 12:55:43    2014-05-26 12:55:43
9633    17632    907    2015-06-11 13:54:50    2015-06-11 13:54:50
9634    15623    641    2014-02-12 01:39:58    2014-02-12 01:39:58
9635    17102    638    2013-06-04 10:46:25    2013-06-04 10:46:25
9636    17529    741    2014-03-21 07:17:40    2014-03-21 07:17:40
9637    15146    489    2013-10-16 13:14:56    2013-10-16 13:14:56
9638    14389    493    2015-04-07 16:43:58    2015-04-07 16:43:58
9639    14758    646    2014-12-12 08:00:26    2014-12-12 08:00:26
9640    12315    872    2014-09-06 07:34:10    2014-09-06 07:34:10
9641    16405    593    2015-09-08 07:27:56    2015-09-08 07:27:56
9642    13281    530    2016-03-03 06:08:12    2016-03-03 06:08:12
9643    16024    851    2015-05-22 23:26:56    2015-05-22 23:26:56
9644    19744    559    2015-04-28 01:51:34    2015-04-28 01:51:34
9645    15866    807    2013-06-19 07:40:28    2013-06-19 07:40:28
9646    10659    756    2013-09-27 16:56:29    2013-09-27 16:56:29
9647    11199    785    2016-01-28 07:19:57    2016-01-28 07:19:57
9648    11101    940    2013-10-13 15:56:41    2013-10-13 15:56:41
9649    12281    813    2013-06-02 20:48:19    2013-06-02 20:48:19
9650    15334    538    2016-03-10 23:12:16    2016-03-10 23:12:16
9651    16251    842    2014-09-29 04:23:17    2014-09-29 04:23:17
9652    18594    503    2014-09-14 12:02:05    2014-09-14 12:02:05
9653    15226    547    2014-04-05 01:02:25    2014-04-05 01:02:25
9654    18480    902    2016-03-05 19:00:19    2016-03-05 19:00:19
9655    15655    909    2015-07-23 07:34:41    2015-07-23 07:34:41
9656    19291    590    2015-03-09 22:24:38    2015-03-09 22:24:38
9657    17433    773    2013-05-22 08:53:57    2013-05-22 08:53:57
9658    14778    498    2015-01-20 15:39:46    2015-01-20 15:39:46
9659    16516    645    2015-01-05 04:13:18    2015-01-05 04:13:18
9660    10156    819    2016-02-28 02:22:18    2016-02-28 02:22:18
9661    13932    486    2015-12-23 02:01:01    2015-12-23 02:01:01
9662    11661    594    2014-02-04 21:02:34    2014-02-04 21:02:34
9663    15269    488    2015-08-03 05:05:33    2015-08-03 05:05:33
9664    18026    811    2016-04-08 18:41:12    2016-04-08 18:41:12
9665    13848    783    2013-05-25 04:57:56    2013-05-25 04:57:56
9666    15053    698    2015-05-01 09:42:09    2015-05-01 09:42:09
9667    11882    957    2013-05-03 15:46:21    2013-05-03 15:46:21
9668    10198    691    2013-08-12 23:54:13    2013-08-12 23:54:13
9669    16202    862    2014-01-24 20:58:45    2014-01-24 20:58:45
9670    19798    945    2015-07-01 00:35:23    2015-07-01 00:35:23
9671    13415    471    2016-03-04 17:35:39    2016-03-04 17:35:39
9672    10941    761    2014-02-01 12:11:47    2014-02-01 12:11:47
9673    16559    546    2014-09-22 06:38:53    2014-09-22 06:38:53
9674    10510    868    2013-08-06 01:35:22    2013-08-06 01:35:22
9675    12346    479    2015-05-23 14:39:21    2015-05-23 14:39:21
9676    16845    781    2016-01-19 01:00:42    2016-01-19 01:00:42
9677    14978    721    2014-12-23 14:03:50    2014-12-23 14:03:50
9678    17186    860    2015-12-12 22:17:20    2015-12-12 22:17:20
9679    17945    479    2013-07-01 17:43:25    2013-07-01 17:43:25
9680    13301    804    2013-06-05 13:52:14    2013-06-05 13:52:14
9681    13023    765    2015-06-29 22:33:30    2015-06-29 22:33:30
9682    14009    810    2015-10-13 22:53:33    2015-10-13 22:53:33
9683    12916    734    2013-04-27 20:55:34    2013-04-27 20:55:34
9684    14078    648    2015-08-02 06:33:38    2015-08-02 06:33:38
9685    12066    941    2015-11-12 10:57:59    2015-11-12 10:57:59
9686    15894    614    2015-06-05 09:07:32    2015-06-05 09:07:32
9687    12685    508    2013-10-26 23:57:11    2013-10-26 23:57:11
9688    18406    612    2015-06-25 14:44:51    2015-06-25 14:44:51
9689    13874    617    2013-09-15 06:51:18    2013-09-15 06:51:18
9690    10137    546    2014-01-02 18:05:03    2014-01-02 18:05:03
9691    18885    926    2015-09-08 18:38:23    2015-09-08 18:38:23
9692    11419    606    2015-09-09 20:22:29    2015-09-09 20:22:29
9693    17172    595    2013-05-20 14:34:05    2013-05-20 14:34:05
9694    11572    760    2015-08-31 19:24:30    2015-08-31 19:24:30
9695    16090    506    2016-01-23 09:02:31    2016-01-23 09:02:31
9696    19364    591    2014-03-13 05:07:59    2014-03-13 05:07:59
9697    19884    561    2014-08-12 21:35:57    2014-08-12 21:35:57
9698    11449    807    2013-08-31 15:29:24    2013-08-31 15:29:24
9699    14097    524    2015-08-19 19:37:29    2015-08-19 19:37:29
9700    17413    785    2016-02-18 06:48:05    2016-02-18 06:48:05
9701    15078    922    2014-10-09 18:48:30    2014-10-09 18:48:30
9702    17371    492    2013-08-06 12:02:30    2013-08-06 12:02:30
9703    19446    618    2015-07-13 13:50:22    2015-07-13 13:50:22
9704    11350    464    2015-09-01 14:19:16    2015-09-01 14:19:16
9705    11594    647    2013-10-22 09:28:30    2013-10-22 09:28:30
9706    16794    902    2015-11-18 16:08:57    2015-11-18 16:08:57
9707    12686    902    2014-02-23 02:37:43    2014-02-23 02:37:43
9708    16160    888    2014-01-29 20:57:10    2014-01-29 20:57:10
9709    16033    625    2014-09-02 22:30:50    2014-09-02 22:30:50
9710    14527    473    2015-08-07 12:40:13    2015-08-07 12:40:13
9711    10338    529    2015-09-17 06:09:24    2015-09-17 06:09:24
9712    19087    835    2013-08-23 16:56:21    2013-08-23 16:56:21
9713    15767    717    2014-05-29 11:59:39    2014-05-29 11:59:39
9714    16809    579    2013-08-28 11:28:40    2013-08-28 11:28:40
9715    19283    742    2014-07-31 13:46:14    2014-07-31 13:46:14
9716    19166    599    2013-11-01 06:07:06    2013-11-01 06:07:06
9717    10770    726    2014-01-23 15:07:42    2014-01-23 15:07:42
9718    18395    463    2013-08-01 05:46:12    2013-08-01 05:46:12
9719    15855    789    2014-10-03 22:31:01    2014-10-03 22:31:01
9720    19744    929    2014-12-01 20:04:35    2014-12-01 20:04:35
9721    16986    923    2014-11-29 08:40:50    2014-11-29 08:40:50
9722    10734    923    2013-09-20 21:08:21    2013-09-20 21:08:21
9723    19753    614    2014-04-24 12:40:11    2014-04-24 12:40:11
9724    11399    792    2014-07-11 13:52:31    2014-07-11 13:52:31
9725    19711    512    2014-04-29 15:37:00    2014-04-29 15:37:00
9726    14165    514    2014-08-25 08:16:57    2014-08-25 08:16:57
9727    15028    531    2013-09-05 18:50:33    2013-09-05 18:50:33
9728    19598    698    2014-06-17 19:25:33    2014-06-17 19:25:33
9729    16599    768    2014-10-14 10:07:23    2014-10-14 10:07:23
9730    19210    622    2015-03-30 23:17:40    2015-03-30 23:17:40
9731    14718    618    2015-03-29 02:18:12    2015-03-29 02:18:12
9732    17871    611    2013-06-27 04:39:55    2013-06-27 04:39:55
9733    12392    565    2014-12-20 00:28:02    2014-12-20 00:28:02
9734    12955    900    2014-04-21 02:53:54    2014-04-21 02:53:54
9735    18814    713    2013-06-12 04:29:27    2013-06-12 04:29:27
9736    14875    545    2014-01-04 18:47:03    2014-01-04 18:47:03
9737    10194    514    2015-06-15 03:08:19    2015-06-15 03:08:19
9738    13069    912    2013-10-18 05:20:02    2013-10-18 05:20:02
9739    13813    829    2015-02-20 00:42:43    2015-02-20 00:42:43
9740    15292    525    2014-09-02 02:43:08    2014-09-02 02:43:08
9741    12044    677    2016-02-29 14:53:14    2016-02-29 14:53:14
9742    10541    710    2014-12-29 16:15:24    2014-12-29 16:15:24
9743    10827    586    2015-03-25 13:57:07    2015-03-25 13:57:07
9744    13775    645    2013-05-25 01:49:03    2013-05-25 01:49:03
9745    16802    813    2016-02-24 19:52:53    2016-02-24 19:52:53
9746    19120    641    2014-05-05 03:13:06    2014-05-05 03:13:06
9747    12848    706    2013-12-04 02:19:18    2013-12-04 02:19:18
9748    10359    641    2015-05-15 02:56:13    2015-05-15 02:56:13
9749    12817    493    2013-10-03 12:55:50    2013-10-03 12:55:50
9750    16878    702    2014-05-05 18:06:04    2014-05-05 18:06:04
9751    13187    803    2016-03-28 19:22:29    2016-03-28 19:22:29
9752    12492    866    2016-03-01 23:17:41    2016-03-01 23:17:41
9753    12198    624    2016-01-23 16:47:45    2016-01-23 16:47:45
9754    11482    679    2014-10-01 00:00:08    2014-10-01 00:00:08
9755    17966    662    2015-04-25 06:18:24    2015-04-25 06:18:24
9756    15710    481    2015-07-26 15:50:35    2015-07-26 15:50:35
9757    15230    861    2015-10-04 17:53:58    2015-10-04 17:53:58
9758    18404    678    2014-02-22 04:07:48    2014-02-22 04:07:48
9759    17611    570    2016-01-22 21:46:05    2016-01-22 21:46:05
9760    15226    808    2015-06-18 09:25:49    2015-06-18 09:25:49
9761    16954    932    2013-10-14 14:01:04    2013-10-14 14:01:04
9762    18226    717    2014-01-16 08:19:15    2014-01-16 08:19:15
9763    19740    866    2015-08-05 18:09:01    2015-08-05 18:09:01
9764    15023    563    2015-10-24 13:05:58    2015-10-24 13:05:58
9765    17226    957    2015-04-10 10:49:56    2015-04-10 10:49:56
9766    15457    819    2014-09-15 12:47:12    2014-09-15 12:47:12
9767    15828    469    2013-05-28 08:32:35    2013-05-28 08:32:35
9768    14989    768    2013-06-19 03:34:39    2013-06-19 03:34:39
9769    15062    559    2014-09-03 09:40:32    2014-09-03 09:40:32
9770    11056    817    2014-11-15 07:54:57    2014-11-15 07:54:57
9771    17444    564    2014-09-02 20:41:19    2014-09-02 20:41:19
9772    11363    565    2015-07-30 16:34:09    2015-07-30 16:34:09
9773    16171    884    2015-01-15 01:44:59    2015-01-15 01:44:59
9774    10328    513    2015-10-29 17:06:21    2015-10-29 17:06:21
9775    12979    625    2015-03-13 01:29:28    2015-03-13 01:29:28
9776    13095    759    2014-10-07 20:39:44    2014-10-07 20:39:44
9777    15274    496    2013-04-24 16:12:38    2013-04-24 16:12:38
9778    19633    647    2016-02-17 16:23:38    2016-02-17 16:23:38
9779    11886    742    2016-02-01 19:42:21    2016-02-01 19:42:21
9780    11167    722    2015-02-28 02:53:42    2015-02-28 02:53:42
9781    15160    617    2014-04-19 14:54:41    2014-04-19 14:54:41
9782    16644    905    2015-08-31 16:10:54    2015-08-31 16:10:54
9783    12416    900    2014-07-29 00:58:29    2014-07-29 00:58:29
9784    11896    742    2014-04-25 00:06:45    2014-04-25 00:06:45
9785    16176    548    2013-10-23 17:01:45    2013-10-23 17:01:45
9786    13644    938    2015-05-25 10:28:23    2015-05-25 10:28:23
9787    19973    609    2015-07-29 13:40:58    2015-07-29 13:40:58
9788    13786    684    2013-06-10 23:28:05    2013-06-10 23:28:05
9789    18604    725    2016-02-21 09:08:23    2016-02-21 09:08:23
9790    13613    499    2015-01-15 02:52:13    2015-01-15 02:52:13
9791    19630    615    2016-02-29 20:19:46    2016-02-29 20:19:46
9792    11069    533    2016-01-29 23:28:37    2016-01-29 23:28:37
9793    15658    734    2014-07-29 16:33:56    2014-07-29 16:33:56
9794    18755    845    2013-12-27 23:17:30    2013-12-27 23:17:30
9795    11332    672    2014-12-03 10:10:13    2014-12-03 10:10:13
9796    10498    898    2014-12-14 10:18:33    2014-12-14 10:18:33
9797    12119    734    2013-12-18 07:00:10    2013-12-18 07:00:10
9798    11996    757    2016-03-29 10:39:50    2016-03-29 10:39:50
9799    11614    931    2015-05-14 01:49:11    2015-05-14 01:49:11
9800    16368    718    2014-02-06 05:08:38    2014-02-06 05:08:38
9801    19528    895    2014-03-27 18:31:11    2014-03-27 18:31:11
9802    10311    752    2015-08-21 10:20:35    2015-08-21 10:20:35
9803    11452    702    2015-11-29 14:20:27    2015-11-29 14:20:27
9804    18519    932    2013-09-18 13:11:10    2013-09-18 13:11:10
9805    11195    712    2013-07-28 21:52:46    2013-07-28 21:52:46
9806    17466    719    2013-08-22 09:27:09    2013-08-22 09:27:09
9807    15281    608    2013-09-20 17:15:41    2013-09-20 17:15:41
9808    10294    809    2016-03-07 09:25:13    2016-03-07 09:25:13
9809    14073    538    2015-05-07 16:31:21    2015-05-07 16:31:21
9810    11735    743    2013-10-19 16:48:17    2013-10-19 16:48:17
9811    17335    741    2015-12-18 01:55:55    2015-12-18 01:55:55
9812    10615    565    2015-03-19 03:13:59    2015-03-19 03:13:59
9813    10851    949    2015-09-17 03:00:52    2015-09-17 03:00:52
9814    17896    776    2015-02-15 07:18:40    2015-02-15 07:18:40
9815    17261    563    2014-06-29 15:37:19    2014-06-29 15:37:19
9816    11815    787    2014-11-21 22:32:07    2014-11-21 22:32:07
9817    17250    835    2015-12-13 04:24:43    2015-12-13 04:24:43
9818    16617    832    2015-02-27 19:58:02    2015-02-27 19:58:02
9819    13378    756    2014-01-24 16:28:18    2014-01-24 16:28:18
9820    10554    623    2013-08-08 07:41:37    2013-08-08 07:41:37
9821    14997    891    2013-07-28 23:12:43    2013-07-28 23:12:43
9822    18526    517    2016-02-18 12:24:33    2016-02-18 12:24:33
9823    18397    816    2015-01-22 18:46:40    2015-01-22 18:46:40
9824    17506    566    2013-07-30 20:34:44    2013-07-30 20:34:44
9825    12038    881    2014-04-12 12:10:04    2014-04-12 12:10:04
9826    17778    913    2015-08-06 12:14:15    2015-08-06 12:14:15
9827    11319    764    2013-06-25 06:40:48    2013-06-25 06:40:48
9828    14424    486    2015-02-11 07:18:43    2015-02-11 07:18:43
9829    14796    689    2015-10-31 08:26:51    2015-10-31 08:26:51
9830    13080    480    2014-06-18 18:40:54    2014-06-18 18:40:54
9831    12619    789    2014-11-29 03:31:03    2014-11-29 03:31:03
9832    19756    563    2013-06-06 18:31:16    2013-06-06 18:31:16
9833    15717    810    2013-11-21 09:45:54    2013-11-21 09:45:54
9834    19168    611    2014-01-23 14:46:15    2014-01-23 14:46:15
9835    16823    930    2016-04-09 23:21:40    2016-04-09 23:21:40
9836    12944    473    2013-04-30 10:14:16    2013-04-30 10:14:16
9837    16909    550    2013-07-13 05:57:09    2013-07-13 05:57:09
9838    16809    629    2015-08-03 07:57:48    2015-08-03 07:57:48
9839    19025    958    2015-06-12 20:48:26    2015-06-12 20:48:26
9840    10807    622    2014-08-22 00:16:09    2014-08-22 00:16:09
9841    10860    766    2015-05-07 14:35:29    2015-05-07 14:35:29
9842    16105    931    2014-03-12 10:16:22    2014-03-12 10:16:22
9843    18007    921    2013-12-13 04:27:59    2013-12-13 04:27:59
9844    12110    627    2013-09-17 09:57:38    2013-09-17 09:57:38
9845    18016    693    2013-04-27 15:45:27    2013-04-27 15:45:27
9846    18597    809    2015-11-11 07:14:15    2015-11-11 07:14:15
9847    17495    826    2013-06-23 07:47:57    2013-06-23 07:47:57
9848    18253    532    2013-06-04 09:26:07    2013-06-04 09:26:07
9849    10959    785    2015-05-03 02:13:26    2015-05-03 02:13:26
9850    19167    515    2015-03-03 08:26:39    2015-03-03 08:26:39
9851    10296    672    2015-01-27 20:59:28    2015-01-27 20:59:28
9852    10745    680    2013-06-10 00:13:18    2013-06-10 00:13:18
9853    11635    932    2015-08-26 01:58:35    2015-08-26 01:58:35
9854    13591    670    2013-08-20 11:58:54    2013-08-20 11:58:54
9855    15924    732    2014-02-05 13:01:42    2014-02-05 13:01:42
9856    12214    602    2016-02-09 11:46:25    2016-02-09 11:46:25
9857    17217    884    2013-11-23 20:53:15    2013-11-23 20:53:15
9858    11229    625    2015-09-26 09:44:29    2015-09-26 09:44:29
9859    19628    528    2014-11-08 06:52:07    2014-11-08 06:52:07
9860    13174    823    2013-05-26 02:06:52    2013-05-26 02:06:52
9861    19997    611    2014-03-17 16:03:37    2014-03-17 16:03:37
9862    13198    508    2014-08-22 10:08:39    2014-08-22 10:08:39
9863    10639    517    2015-08-05 00:48:11    2015-08-05 00:48:11
9864    17958    490    2016-01-01 17:15:28    2016-01-01 17:15:28
9865    12360    903    2013-07-26 21:29:06    2013-07-26 21:29:06
9866    13004    571    2014-09-19 07:24:07    2014-09-19 07:24:07
9867    12183    642    2014-02-19 15:45:13    2014-02-19 15:45:13
9868    14453    545    2016-01-06 02:57:02    2016-01-06 02:57:02
9869    14759    792    2014-02-03 01:57:14    2014-02-03 01:57:14
9870    12098    651    2014-02-17 04:41:49    2014-02-17 04:41:49
9871    13754    653    2016-03-13 05:33:06    2016-03-13 05:33:06
9872    15783    533    2014-06-12 04:38:12    2014-06-12 04:38:12
9873    12276    928    2014-04-14 09:05:01    2014-04-14 09:05:01
9874    17769    917    2014-12-26 11:26:11    2014-12-26 11:26:11
9875    15500    804    2014-01-14 11:58:01    2014-01-14 11:58:01
9876    17720    687    2014-03-04 11:01:30    2014-03-04 11:01:30
9877    19444    708    2014-11-24 06:11:17    2014-11-24 06:11:17
9878    11230    491    2015-10-16 21:25:06    2015-10-16 21:25:06
9879    19464    713    2015-12-03 14:11:26    2015-12-03 14:11:26
9880    14559    531    2013-09-22 00:10:41    2013-09-22 00:10:41
9881    14817    726    2015-01-07 10:53:45    2015-01-07 10:53:45
9882    19730    796    2014-11-04 20:56:02    2014-11-04 20:56:02
9883    13160    865    2014-08-27 21:46:33    2014-08-27 21:46:33
9884    12749    831    2015-08-11 20:33:18    2015-08-11 20:33:18
9885    15217    740    2013-07-11 19:45:03    2013-07-11 19:45:03
9886    12079    793    2015-02-21 14:45:01    2015-02-21 14:45:01
9887    14004    501    2015-02-07 03:30:26    2015-02-07 03:30:26
9888    12848    780    2014-01-15 16:53:31    2014-01-15 16:53:31
9889    12245    605    2015-09-24 20:10:01    2015-09-24 20:10:01
9890    19076    616    2013-04-27 09:34:20    2013-04-27 09:34:20
9891    14673    564    2014-03-07 14:08:12    2014-03-07 14:08:12
9892    19918    775    2015-05-16 01:33:21    2015-05-16 01:33:21
9893    11209    960    2013-10-27 07:17:37    2013-10-27 07:17:37
9894    14254    942    2015-02-28 08:55:51    2015-02-28 08:55:51
9895    19516    465    2013-12-26 01:15:12    2013-12-26 01:15:12
9896    18746    815    2015-02-01 06:37:43    2015-02-01 06:37:43
9897    18716    512    2014-08-08 04:41:53    2014-08-08 04:41:53
9898    15436    897    2013-12-27 16:35:39    2013-12-27 16:35:39
9899    10722    782    2013-09-24 00:47:46    2013-09-24 00:47:46
9900    12071    859    2015-10-17 17:46:17    2015-10-17 17:46:17
9901    12914    607    2014-07-16 22:55:07    2014-07-16 22:55:07
9902    17498    795    2013-06-01 21:56:56    2013-06-01 21:56:56
9903    15256    554    2014-01-25 05:47:47    2014-01-25 05:47:47
9904    11715    540    2015-07-31 05:04:23    2015-07-31 05:04:23
9905    13230    715    2015-04-07 02:51:20    2015-04-07 02:51:20
9906    19081    544    2015-10-24 21:23:49    2015-10-24 21:23:49
9907    12617    642    2013-05-03 00:57:52    2013-05-03 00:57:52
9908    15346    827    2015-09-08 02:19:47    2015-09-08 02:19:47
9909    19675    811    2014-03-03 06:35:38    2014-03-03 06:35:38
9910    12866    866    2013-11-25 11:48:12    2013-11-25 11:48:12
9911    13613    721    2014-12-20 02:17:10    2014-12-20 02:17:10
9912    18677    768    2014-11-23 17:41:22    2014-11-23 17:41:22
9913    10340    944    2014-10-03 07:17:28    2014-10-03 07:17:28
9914    15876    508    2013-12-23 01:26:00    2013-12-23 01:26:00
9915    16621    892    2015-01-28 16:59:27    2015-01-28 16:59:27
9916    16652    905    2015-03-05 11:42:08    2015-03-05 11:42:08
9917    19578    713    2014-09-23 10:35:24    2014-09-23 10:35:24
9918    16206    565    2015-09-13 22:55:16    2015-09-13 22:55:16
9919    10682    802    2014-07-11 15:52:14    2014-07-11 15:52:14
9920    14805    914    2014-07-27 19:15:58    2014-07-27 19:15:58
9921    14332    588    2015-02-19 19:32:23    2015-02-19 19:32:23
9922    14945    789    2015-02-04 23:19:56    2015-02-04 23:19:56
9923    11946    524    2015-06-20 10:45:54    2015-06-20 10:45:54
9924    16235    799    2016-01-20 19:10:05    2016-01-20 19:10:05
9925    12029    872    2015-06-11 10:10:44    2015-06-11 10:10:44
9926    19882    690    2013-09-27 18:48:00    2013-09-27 18:48:00
9927    16042    933    2014-08-29 15:01:33    2014-08-29 15:01:33
9928    15424    558    2014-07-08 06:10:46    2014-07-08 06:10:46
9929    18002    650    2013-05-12 11:28:55    2013-05-12 11:28:55
9930    11354    668    2015-04-08 04:31:10    2015-04-08 04:31:10
9931    15642    517    2014-03-12 19:09:07    2014-03-12 19:09:07
9932    15662    728    2014-08-05 23:18:55    2014-08-05 23:18:55
9933    13399    869    2015-11-29 20:16:56    2015-11-29 20:16:56
9934    10026    812    2014-11-21 17:10:44    2014-11-21 17:10:44
9935    13158    757    2014-04-21 02:37:43    2014-04-21 02:37:43
9936    17709    915    2015-03-30 00:36:34    2015-03-30 00:36:34
9937    10390    579    2014-03-22 22:20:04    2014-03-22 22:20:04
9938    16860    735    2015-11-02 04:24:43    2015-11-02 04:24:43
9939    15602    774    2014-11-09 14:16:41    2014-11-09 14:16:41
9940    15544    797    2013-11-29 00:12:59    2013-11-29 00:12:59
9941    13170    820    2014-05-25 03:55:18    2014-05-25 03:55:18
9942    10389    851    2013-05-11 21:36:14    2013-05-11 21:36:14
9943    13491    596    2014-10-31 08:40:53    2014-10-31 08:40:53
9944    12244    520    2015-05-16 20:13:37    2015-05-16 20:13:37
9945    14968    480    2015-07-24 05:16:30    2015-07-24 05:16:30
9946    14607    891    2016-01-11 04:18:10    2016-01-11 04:18:10
9947    13663    833    2013-11-13 08:12:11    2013-11-13 08:12:11
9948    15737    685    2015-08-31 05:12:49    2015-08-31 05:12:49
9949    10980    718    2015-01-31 18:57:11    2015-01-31 18:57:11
9950    12456    602    2015-08-23 15:04:35    2015-08-23 15:04:35
9951    15196    776    2016-01-29 20:11:29    2016-01-29 20:11:29
9952    13191    788    2014-05-19 10:16:22    2014-05-19 10:16:22
9953    11122    855    2014-10-06 11:30:24    2014-10-06 11:30:24
9954    19498    894    2015-09-13 11:28:14    2015-09-13 11:28:14
9955    17926    603    2013-08-08 04:55:15    2013-08-08 04:55:15
9956    18483    903    2014-10-02 19:29:09    2014-10-02 19:29:09
9957    16868    879    2016-02-24 01:08:48    2016-02-24 01:08:48
9958    18224    735    2014-03-06 16:22:18    2014-03-06 16:22:18
9959    12981    695    2014-06-07 10:16:54    2014-06-07 10:16:54
9960    10925    857    2014-02-25 23:22:08    2014-02-25 23:22:08
9961    10472    521    2015-07-23 19:49:24    2015-07-23 19:49:24
9962    15438    587    2015-05-04 09:41:05    2015-05-04 09:41:05
9963    17783    513    2013-08-15 21:56:39    2013-08-15 21:56:39
9964    13617    961    2016-03-11 06:26:12    2016-03-11 06:26:12
9965    15104    575    2015-03-31 04:01:02    2015-03-31 04:01:02
9966    13917    915    2014-02-19 15:10:37    2014-02-19 15:10:37
9967    13463    519    2013-08-05 21:58:20    2013-08-05 21:58:20
9968    19472    886    2014-11-02 22:48:30    2014-11-02 22:48:30
9969    11512    779    2014-12-07 07:04:12    2014-12-07 07:04:12
9970    13830    917    2013-07-01 13:42:53    2013-07-01 13:42:53
9971    11944    576    2014-01-29 22:03:46    2014-01-29 22:03:46
9972    12597    849    2015-08-29 17:57:54    2015-08-29 17:57:54
9973    16980    955    2016-01-07 03:52:29    2016-01-07 03:52:29
9974    18891    600    2013-08-10 22:03:33    2013-08-10 22:03:33
9975    15376    653    2015-04-25 22:55:08    2015-04-25 22:55:08
9976    19528    759    2016-03-24 05:53:19    2016-03-24 05:53:19
9977    13003    672    2014-07-17 11:23:16    2014-07-17 11:23:16
9978    19056    859    2014-12-28 23:42:58    2014-12-28 23:42:58
9979    15487    886    2015-03-09 18:12:26    2015-03-09 18:12:26
9980    15657    476    2016-01-21 06:55:08    2016-01-21 06:55:08
9981    10908    883    2015-04-05 02:16:31    2015-04-05 02:16:31
9982    19797    463    2015-01-26 12:47:17    2015-01-26 12:47:17
9983    17137    596    2014-07-11 10:26:14    2014-07-11 10:26:14
9984    13348    527    2014-03-16 21:21:36    2014-03-16 21:21:36
9985    15655    653    2015-09-24 18:24:49    2015-09-24 18:24:49
9986    19891    605    2015-09-19 14:15:35    2015-09-19 14:15:35
9987    18883    726    2013-06-10 11:39:13    2013-06-10 11:39:13
9988    15786    798    2014-10-17 22:29:36    2014-10-17 22:29:36
9989    10093    630    2015-07-23 17:32:24    2015-07-23 17:32:24
9990    14462    947    2015-08-02 11:37:18    2015-08-02 11:37:18
9991    17172    650    2013-04-29 12:36:03    2013-04-29 12:36:03
9992    17020    925    2015-06-02 21:48:58    2015-06-02 21:48:58
9993    11644    671    2014-11-19 01:53:11    2014-11-19 01:53:11
9994    18575    810    2014-07-14 19:12:09    2014-07-14 19:12:09
9995    17059    637    2014-12-25 09:54:18    2014-12-25 09:54:18
9996    17216    569    2013-08-23 01:11:32    2013-08-23 01:11:32
9997    12897    873    2015-05-02 22:34:56    2015-05-02 22:34:56
9998    18366    942    2015-12-18 03:46:44    2015-12-18 03:46:44
9999    16389    593    2014-03-02 18:43:29    2014-03-02 18:43:29
10000    17113    807    2014-06-17 03:00:38    2014-06-17 03:00:38
10001    11022    593    2015-03-16 17:12:14    2015-03-16 17:12:14
10002    19799    466    2013-06-16 18:29:15    2013-06-16 18:29:15
10003    16269    853    2016-02-04 07:24:00    2016-02-04 07:24:00
10004    10223    849    2013-09-04 13:46:43    2013-09-04 13:46:43
10005    16708    911    2013-08-30 16:34:14    2013-08-30 16:34:14
10006    18298    837    2013-10-28 06:30:56    2013-10-28 06:30:56
10007    17798    777    2015-03-06 10:43:15    2015-03-06 10:43:15
10008    19200    629    2013-12-28 19:01:37    2013-12-28 19:01:37
10009    15566    879    2015-12-24 12:31:07    2015-12-24 12:31:07
10010    12090    606    2016-03-01 16:27:38    2016-03-01 16:27:38
10011    11298    938    2014-10-04 08:40:24    2014-10-04 08:40:24
10012    16818    716    2015-03-14 23:26:48    2015-03-14 23:26:48
10013    17111    751    2014-02-27 06:59:47    2014-02-27 06:59:47
10014    19777    942    2013-11-26 07:04:14    2013-11-26 07:04:14
10015    11936    709    2016-02-28 03:04:55    2016-02-28 03:04:55
10016    13444    868    2016-01-04 05:45:10    2016-01-04 05:45:10
10017    13567    774    2013-06-12 09:07:59    2013-06-12 09:07:59
10018    15483    636    2014-11-13 00:01:01    2014-11-13 00:01:01
10019    17868    961    2015-05-14 11:08:04    2015-05-14 11:08:04
10020    16152    642    2013-10-03 06:50:50    2013-10-03 06:50:50
10021    17963    957    2015-02-05 14:00:37    2015-02-05 14:00:37
10022    18902    951    2013-05-29 04:01:27    2013-05-29 04:01:27
10023    15964    878    2015-11-04 04:24:45    2015-11-04 04:24:45
10024    16329    915    2014-09-28 18:24:39    2014-09-28 18:24:39
10025    13745    772    2013-05-26 07:31:20    2013-05-26 07:31:20
10026    19563    604    2014-12-19 09:48:58    2014-12-19 09:48:58
10027    12436    649    2015-06-24 01:53:31    2015-06-24 01:53:31
10028    14509    941    2014-12-29 08:33:13    2014-12-29 08:33:13
10029    13042    673    2013-05-22 10:16:46    2013-05-22 10:16:46
10030    15715    547    2014-05-09 08:28:11    2014-05-09 08:28:11
10031    18803    650    2014-07-17 06:30:13    2014-07-17 06:30:13
10032    10353    522    2015-05-19 16:09:10    2015-05-19 16:09:10
10033    11542    892    2013-05-23 03:27:26    2013-05-23 03:27:26
10034    11271    541    2016-04-06 22:13:20    2016-04-06 22:13:20
10035    17215    913    2014-04-02 19:20:38    2014-04-02 19:20:38
10036    16155    959    2013-08-12 14:58:24    2013-08-12 14:58:24
10037    17008    553    2015-05-12 04:35:26    2015-05-12 04:35:26
10038    13552    638    2016-01-27 04:23:56    2016-01-27 04:23:56
10039    14888    466    2014-04-01 17:44:16    2014-04-01 17:44:16
10040    12501    803    2013-08-05 13:31:50    2013-08-05 13:31:50
10041    18516    834    2016-01-06 21:56:41    2016-01-06 21:56:41
10042    11415    696    2013-08-12 22:45:12    2013-08-12 22:45:12
10043    18668    464    2013-07-22 22:51:24    2013-07-22 22:51:24
10044    18515    534    2014-07-14 15:59:34    2014-07-14 15:59:34
10045    15252    852    2016-01-31 11:48:07    2016-01-31 11:48:07
10046    12265    920    2015-07-21 04:36:01    2015-07-21 04:36:01
10047    11844    749    2014-02-28 15:50:36    2014-02-28 15:50:36
10048    12846    886    2013-12-01 22:16:11    2013-12-01 22:16:11
10049    19285    682    2015-02-01 03:14:11    2015-02-01 03:14:11
10050    11478    537    2014-06-12 00:39:26    2014-06-12 00:39:26
10051    10437    628    2013-07-11 18:57:37    2013-07-11 18:57:37
10052    11927    719    2013-12-18 06:33:56    2013-12-18 06:33:56
10053    17835    879    2014-08-14 15:21:28    2014-08-14 15:21:28
10054    11814    885    2014-05-08 18:53:24    2014-05-08 18:53:24
10055    17249    787    2016-02-13 01:44:03    2016-02-13 01:44:03
10056    13839    874    2014-05-16 17:16:45    2014-05-16 17:16:45
10057    14236    654    2014-08-18 20:59:48    2014-08-18 20:59:48
10058    19793    846    2014-10-30 09:12:53    2014-10-30 09:12:53
10059    16376    817    2014-01-12 02:05:56    2014-01-12 02:05:56
10060    17143    594    2014-01-28 11:58:41    2014-01-28 11:58:41
10061    13153    805    2013-06-08 00:41:27    2013-06-08 00:41:27
10062    15297    733    2014-03-27 19:05:22    2014-03-27 19:05:22
10063    11592    471    2013-06-20 03:13:18    2013-06-20 03:13:18
10064    13361    548    2014-10-10 17:40:34    2014-10-10 17:40:34
10065    19029    622    2014-07-25 10:51:56    2014-07-25 10:51:56
10066    14419    538    2014-02-28 19:34:34    2014-02-28 19:34:34
10067    15477    610    2015-07-28 13:14:18    2015-07-28 13:14:18
10068    11048    880    2014-07-26 19:42:04    2014-07-26 19:42:04
10069    10385    694    2015-11-04 13:42:55    2015-11-04 13:42:55
10070    18178    521    2014-01-12 07:58:17    2014-01-12 07:58:17
10071    18900    589    2013-09-06 04:55:50    2013-09-06 04:55:50
10072    12889    656    2015-03-07 22:37:58    2015-03-07 22:37:58
10073    14774    476    2013-08-07 10:51:45    2013-08-07 10:51:45
10074    14193    498    2015-12-25 16:16:05    2015-12-25 16:16:05
10075    15240    527    2016-03-15 08:13:12    2016-03-15 08:13:12
10076    19850    783    2014-11-22 11:29:47    2014-11-22 11:29:47
10077    15931    534    2015-11-27 14:23:39    2015-11-27 14:23:39
10078    11786    673    2015-09-24 06:16:11    2015-09-24 06:16:11
10079    10990    683    2015-10-27 14:12:39    2015-10-27 14:12:39
10080    10659    819    2013-06-18 20:36:36    2013-06-18 20:36:36
10081    10114    830    2015-05-04 03:26:24    2015-05-04 03:26:24
10082    10022    885    2013-04-27 09:07:19    2013-04-27 09:07:19
10083    12427    737    2013-07-26 11:14:24    2013-07-26 11:14:24
10084    15323    788    2013-11-12 10:26:15    2013-11-12 10:26:15
10085    19099    751    2013-09-05 21:24:42    2013-09-05 21:24:42
10086    14001    661    2013-09-24 21:37:44    2013-09-24 21:37:44
10087    19285    736    2014-04-03 04:00:01    2014-04-03 04:00:01
10088    18714    932    2014-10-11 17:07:08    2014-10-11 17:07:08
10089    10289    546    2015-07-21 00:22:41    2015-07-21 00:22:41
10090    13508    531    2015-02-04 23:32:35    2015-02-04 23:32:35
10091    10680    673    2014-11-16 14:57:45    2014-11-16 14:57:45
10092    17947    870    2013-08-10 17:51:49    2013-08-10 17:51:49
10093    19357    661    2016-02-11 22:54:47    2016-02-11 22:54:47
10094    10191    580    2016-01-01 03:28:47    2016-01-01 03:28:47
10095    19312    518    2015-08-20 14:50:31    2015-08-20 14:50:31
10096    19232    934    2013-09-04 04:22:24    2013-09-04 04:22:24
10097    10990    736    2015-02-12 22:55:21    2015-02-12 22:55:21
10098    14235    579    2015-12-16 00:47:34    2015-12-16 00:47:34
10099    14050    828    2013-05-02 15:37:11    2013-05-02 15:37:11
10100    13984    776    2015-01-11 11:59:50    2015-01-11 11:59:50
10101    13555    891    2014-05-12 16:34:53    2014-05-12 16:34:53
10102    11526    572    2013-12-24 22:32:20    2013-12-24 22:32:20
10103    12882    698    2014-08-10 03:24:42    2014-08-10 03:24:42
10104    17534    489    2014-01-27 19:14:35    2014-01-27 19:14:35
10105    13198    907    2014-03-26 13:34:57    2014-03-26 13:34:57
10106    17086    540    2014-12-08 02:14:03    2014-12-08 02:14:03
10107    19217    785    2014-02-04 07:07:46    2014-02-04 07:07:46
10108    18643    596    2014-02-01 21:57:52    2014-02-01 21:57:52
10109    13056    785    2014-07-09 11:24:06    2014-07-09 11:24:06
10110    16220    467    2015-06-29 23:48:39    2015-06-29 23:48:39
10111    16719    943    2015-03-07 11:08:49    2015-03-07 11:08:49
10112    19926    818    2015-01-21 14:53:23    2015-01-21 14:53:23
10113    14561    495    2015-11-09 10:55:26    2015-11-09 10:55:26
10114    18008    698    2015-08-18 03:30:24    2015-08-18 03:30:24
10115    13439    725    2013-08-23 06:14:00    2013-08-23 06:14:00
10116    14710    469    2015-11-18 16:39:46    2015-11-18 16:39:46
10117    12420    652    2014-04-07 11:51:23    2014-04-07 11:51:23
10118    12914    485    2014-09-11 20:25:55    2014-09-11 20:25:55
10119    18423    924    2014-11-13 10:55:51    2014-11-13 10:55:51
10120    16608    680    2015-01-30 16:13:02    2015-01-30 16:13:02
10121    10232    815    2015-05-16 04:51:21    2015-05-16 04:51:21
10122    13517    934    2015-04-21 13:59:55    2015-04-21 13:59:55
10123    10908    919    2013-12-20 13:28:59    2013-12-20 13:28:59
10124    16945    779    2013-06-20 01:42:33    2013-06-20 01:42:33
10125    16619    740    2015-07-10 11:56:18    2015-07-10 11:56:18
10126    13431    939    2013-11-21 05:39:35    2013-11-21 05:39:35
10127    16271    686    2014-12-26 00:26:19    2014-12-26 00:26:19
10128    17219    892    2014-10-08 14:41:36    2014-10-08 14:41:36
10129    18131    961    2015-03-21 08:16:26    2015-03-21 08:16:26
10130    18162    611    2013-09-09 08:02:56    2013-09-09 08:02:56
10131    15146    776    2013-07-12 08:32:16    2013-07-12 08:32:16
10132    15377    664    2014-11-03 06:04:43    2014-11-03 06:04:43
10133    13597    934    2014-09-07 17:01:08    2014-09-07 17:01:08
10134    12380    483    2014-12-24 13:27:26    2014-12-24 13:27:26
10135    17023    772    2016-01-23 20:12:55    2016-01-23 20:12:55
10136    16330    587    2015-04-04 16:14:11    2015-04-04 16:14:11
10137    10817    544    2015-10-31 10:23:44    2015-10-31 10:23:44
10138    13280    834    2015-05-17 09:15:37    2015-05-17 09:15:37
10139    15549    510    2013-07-08 12:03:55    2013-07-08 12:03:55
10140    19416    614    2014-04-22 07:34:50    2014-04-22 07:34:50
10141    19821    767    2015-07-28 02:57:36    2015-07-28 02:57:36
10142    15018    482    2016-04-09 08:52:22    2016-04-09 08:52:22
10143    16764    922    2014-05-18 12:35:08    2014-05-18 12:35:08
10144    18112    892    2015-10-03 14:59:02    2015-10-03 14:59:02
10145    10199    503    2013-11-19 09:37:45    2013-11-19 09:37:45
10146    16605    892    2015-08-21 07:51:16    2015-08-21 07:51:16
10147    16078    833    2013-07-31 09:36:10    2013-07-31 09:36:10
10148    19950    464    2015-01-08 01:00:38    2015-01-08 01:00:38
10149    11597    810    2013-12-30 06:48:08    2013-12-30 06:48:08
10150    18989    619    2014-08-03 22:43:04    2014-08-03 22:43:04
10151    18677    743    2014-06-08 14:58:46    2014-06-08 14:58:46
10152    11354    866    2014-09-26 02:06:09    2014-09-26 02:06:09
10153    16365    875    2015-11-03 18:02:06    2015-11-03 18:02:06
10154    11731    489    2015-07-11 21:08:40    2015-07-11 21:08:40
10155    10755    547    2015-10-01 23:11:21    2015-10-01 23:11:21
10156    16432    649    2015-03-08 11:45:54    2015-03-08 11:45:54
10157    18105    674    2016-01-03 11:08:58    2016-01-03 11:08:58
10158    16142    551    2015-10-10 09:56:56    2015-10-10 09:56:56
10159    10356    777    2013-11-24 15:46:51    2013-11-24 15:46:51
10160    12142    906    2013-06-07 08:09:58    2013-06-07 08:09:58
10161    15335    750    2015-07-24 05:48:04    2015-07-24 05:48:04
10162    10788    487    2013-12-11 20:01:00    2013-12-11 20:01:00
10163    11158    811    2013-11-13 06:52:00    2013-11-13 06:52:00
10164    10912    584    2015-04-13 00:53:46    2015-04-13 00:53:46
10165    15136    866    2014-11-08 14:38:23    2014-11-08 14:38:23
10166    14317    850    2015-02-19 07:14:29    2015-02-19 07:14:29
10167    19599    882    2014-10-11 18:34:45    2014-10-11 18:34:45
10168    18584    704    2013-10-27 19:07:04    2013-10-27 19:07:04
10169    14869    887    2014-02-08 09:09:16    2014-02-08 09:09:16
10170    15594    845    2014-09-23 15:22:06    2014-09-23 15:22:06
10171    10342    697    2014-08-16 07:35:45    2014-08-16 07:35:45
10172    10893    547    2014-06-15 23:29:26    2014-06-15 23:29:26
10173    13270    719    2015-11-03 08:05:16    2015-11-03 08:05:16
10174    18010    489    2014-06-22 09:55:33    2014-06-22 09:55:33
10175    17717    883    2013-07-27 03:29:18    2013-07-27 03:29:18
10176    14530    807    2013-12-04 04:53:56    2013-12-04 04:53:56
10177    19666    655    2015-05-18 09:30:42    2015-05-18 09:30:42
10178    13387    704    2013-10-21 00:05:06    2013-10-21 00:05:06
10179    15077    764    2014-07-15 07:30:43    2014-07-15 07:30:43
10180    17023    600    2013-07-11 23:12:49    2013-07-11 23:12:49
10181    13384    801    2014-01-26 09:24:54    2014-01-26 09:24:54
10182    15711    613    2015-02-24 01:04:35    2015-02-24 01:04:35
10183    18634    931    2014-05-05 01:48:13    2014-05-05 01:48:13
10184    10333    692    2015-04-27 20:05:11    2015-04-27 20:05:11
10185    15647    504    2013-12-03 00:26:21    2013-12-03 00:26:21
10186    12612    514    2015-07-23 19:12:02    2015-07-23 19:12:02
10187    10160    642    2014-07-11 15:52:08    2014-07-11 15:52:08
10188    18618    815    2015-02-10 23:10:56    2015-02-10 23:10:56
10189    12491    512    2014-06-15 08:28:53    2014-06-15 08:28:53
10190    13627    594    2015-06-05 22:16:08    2015-06-05 22:16:08
10191    17312    573    2016-01-23 00:18:48    2016-01-23 00:18:48
10192    17871    784    2014-11-22 07:13:02    2014-11-22 07:13:02
10193    19345    474    2016-01-22 22:34:33    2016-01-22 22:34:33
10194    10029    924    2014-01-24 11:33:35    2014-01-24 11:33:35
10195    17694    582    2014-12-26 02:46:17    2014-12-26 02:46:17
10196    17278    549    2014-03-05 19:30:19    2014-03-05 19:30:19
10197    18156    793    2016-02-25 08:00:20    2016-02-25 08:00:20
10198    19157    703    2013-09-29 04:34:50    2013-09-29 04:34:50
10199    16017    711    2014-10-07 19:04:28    2014-10-07 19:04:28
10200    13365    793    2015-02-27 20:52:56    2015-02-27 20:52:56
10201    11639    565    2014-10-29 12:41:23    2014-10-29 12:41:23
10202    16490    594    2015-05-03 19:13:40    2015-05-03 19:13:40
10203    18908    716    2015-08-07 22:47:17    2015-08-07 22:47:17
10204    11829    545    2015-01-17 11:46:20    2015-01-17 11:46:20
10205    14562    870    2014-05-11 13:49:08    2014-05-11 13:49:08
10206    18917    891    2013-07-18 07:40:38    2013-07-18 07:40:38
10207    19588    708    2013-10-28 22:54:41    2013-10-28 22:54:41
10208    10739    562    2014-06-21 14:37:50    2014-06-21 14:37:50
10209    11177    548    2014-11-14 21:58:41    2014-11-14 21:58:41
10210    11680    845    2014-04-05 20:26:00    2014-04-05 20:26:00
10211    11697    748    2014-11-13 13:07:33    2014-11-13 13:07:33
10212    16786    784    2014-12-30 23:24:19    2014-12-30 23:24:19
10213    14455    870    2015-02-07 14:07:28    2015-02-07 14:07:28
10214    13894    785    2014-05-15 23:44:13    2014-05-15 23:44:13
10215    17525    658    2013-09-07 04:00:54    2013-09-07 04:00:54
10216    17423    589    2014-07-17 18:56:29    2014-07-17 18:56:29
10217    18192    465    2014-05-06 06:32:53    2014-05-06 06:32:53
10218    14061    863    2015-09-14 18:10:43    2015-09-14 18:10:43
10219    11579    510    2013-12-27 08:25:51    2013-12-27 08:25:51
10220    11586    919    2013-09-16 00:53:47    2013-09-16 00:53:47
10221    11910    673    2015-05-24 17:44:46    2015-05-24 17:44:46
10222    17715    524    2015-02-28 19:28:33    2015-02-28 19:28:33
10223    15422    725    2015-12-19 03:58:53    2015-12-19 03:58:53
10224    12269    893    2015-06-26 20:31:14    2015-06-26 20:31:14
10225    19265    665    2015-08-25 10:46:59    2015-08-25 10:46:59
10226    17802    887    2016-04-15 17:47:56    2016-04-15 17:47:56
10227    14598    771    2016-02-20 15:16:04    2016-02-20 15:16:04
10228    19080    470    2014-03-23 13:24:42    2014-03-23 13:24:42
10229    12978    546    2016-03-03 00:47:04    2016-03-03 00:47:04
10230    10670    583    2015-04-25 00:09:46    2015-04-25 00:09:46
10231    11195    923    2014-03-26 17:38:22    2014-03-26 17:38:22
10232    10750    467    2016-03-07 06:34:38    2016-03-07 06:34:38
10233    11207    715    2015-07-18 23:34:48    2015-07-18 23:34:48
10234    11881    591    2016-02-03 06:52:27    2016-02-03 06:52:27
10235    16540    933    2014-10-08 19:52:24    2014-10-08 19:52:24
10236    16853    500    2015-09-30 22:20:50    2015-09-30 22:20:50
10237    15020    933    2016-04-03 05:07:49    2016-04-03 05:07:49
10238    15422    873    2015-06-04 08:11:18    2015-06-04 08:11:18
10239    16964    857    2014-02-11 09:11:50    2014-02-11 09:11:50
10240    10680    728    2013-05-15 07:07:29    2013-05-15 07:07:29
10241    10849    565    2015-04-07 08:19:59    2015-04-07 08:19:59
10242    14206    950    2014-01-16 22:40:35    2014-01-16 22:40:35
10243    17235    908    2015-07-09 19:50:06    2015-07-09 19:50:06
10244    17360    532    2014-05-07 17:09:29    2014-05-07 17:09:29
10245    18423    827    2013-12-06 03:40:18    2013-12-06 03:40:18
10246    14058    591    2015-03-22 12:45:33    2015-03-22 12:45:33
10247    12135    572    2015-01-04 12:58:41    2015-01-04 12:58:41
10248    16894    790    2014-01-04 08:51:32    2014-01-04 08:51:32
10249    14335    664    2015-05-24 11:23:30    2015-05-24 11:23:30
10250    13804    663    2014-01-29 16:39:55    2014-01-29 16:39:55
10251    19112    959    2014-11-18 08:26:50    2014-11-18 08:26:50
10252    18921    704    2015-02-16 16:49:35    2015-02-16 16:49:35
10253    13137    670    2015-07-01 07:37:44    2015-07-01 07:37:44
10254    10781    794    2014-10-04 14:18:44    2014-10-04 14:18:44
10255    13274    809    2014-01-13 21:07:27    2014-01-13 21:07:27
10256    12344    616    2015-08-25 22:01:35    2015-08-25 22:01:35
10257    18874    804    2014-01-18 16:24:31    2014-01-18 16:24:31
10258    17306    478    2013-09-05 11:49:34    2013-09-05 11:49:34
10259    19487    501    2015-09-27 20:33:03    2015-09-27 20:33:03
10260    11651    639    2014-12-29 07:09:40    2014-12-29 07:09:40
10261    12759    792    2015-11-30 06:19:31    2015-11-30 06:19:31
10262    14002    687    2014-01-28 22:31:09    2014-01-28 22:31:09
10263    16173    676    2013-09-18 02:03:12    2013-09-18 02:03:12
10264    11391    770    2015-06-12 04:37:17    2015-06-12 04:37:17
10265    12998    516    2014-12-14 10:36:18    2014-12-14 10:36:18
10266    18303    484    2015-05-23 23:56:54    2015-05-23 23:56:54
10267    10832    737    2013-10-19 14:43:52    2013-10-19 14:43:52
10268    16401    587    2015-09-20 23:41:45    2015-09-20 23:41:45
10269    19505    779    2014-02-25 03:24:17    2014-02-25 03:24:17
10270    14977    506    2013-05-05 20:26:34    2013-05-05 20:26:34
10271    19397    635    2015-04-22 13:35:56    2015-04-22 13:35:56
10272    13702    745    2014-03-21 08:55:59    2014-03-21 08:55:59
10273    13648    823    2016-02-14 06:32:46    2016-02-14 06:32:46
10274    18570    563    2015-10-29 02:38:58    2015-10-29 02:38:58
10275    15851    900    2015-09-18 07:33:59    2015-09-18 07:33:59
10276    18893    894    2015-12-30 19:44:33    2015-12-30 19:44:33
10277    17113    545    2014-08-16 22:07:22    2014-08-16 22:07:22
10278    16418    522    2015-03-15 03:02:38    2015-03-15 03:02:38
10279    11212    926    2013-12-05 16:22:52    2013-12-05 16:22:52
10280    11851    558    2015-12-04 16:08:41    2015-12-04 16:08:41
10281    13288    960    2013-12-30 07:30:16    2013-12-30 07:30:16
10282    12263    508    2015-09-10 11:53:41    2015-09-10 11:53:41
10283    17743    676    2015-04-04 04:11:57    2015-04-04 04:11:57
10284    15951    684    2016-02-16 04:52:52    2016-02-16 04:52:52
10285    17310    791    2015-02-23 08:17:02    2015-02-23 08:17:02
10286    13460    825    2015-05-25 11:49:16    2015-05-25 11:49:16
10287    17024    527    2014-05-04 20:31:54    2014-05-04 20:31:54
10288    10439    644    2015-10-07 10:54:24    2015-10-07 10:54:24
10289    13284    789    2014-03-18 17:58:14    2014-03-18 17:58:14
10290    19825    841    2015-06-19 08:32:11    2015-06-19 08:32:11
10291    15278    694    2016-04-06 02:10:48    2016-04-06 02:10:48
10292    16502    787    2014-06-04 03:06:24    2014-06-04 03:06:24
10293    12322    639    2015-11-22 10:34:22    2015-11-22 10:34:22
10294    10986    567    2015-08-02 09:30:33    2015-08-02 09:30:33
10295    19710    797    2013-11-28 19:26:23    2013-11-28 19:26:23
10296    18626    613    2015-08-14 08:36:20    2015-08-14 08:36:20
10297    13777    871    2016-04-20 20:34:21    2016-04-20 20:34:21
10298    15574    722    2014-09-11 12:52:34    2014-09-11 12:52:34
10299    13051    637    2015-12-19 05:08:57    2015-12-19 05:08:57
10300    19261    895    2015-12-19 04:01:42    2015-12-19 04:01:42
10301    19412    935    2013-10-06 13:48:18    2013-10-06 13:48:18
10302    11935    874    2014-11-25 02:56:47    2014-11-25 02:56:47
10303    12527    863    2014-10-31 13:06:38    2014-10-31 13:06:38
10304    11765    859    2015-12-23 11:10:54    2015-12-23 11:10:54
10305    14080    700    2014-11-02 17:09:29    2014-11-02 17:09:29
10306    18012    663    2015-01-06 00:15:11    2015-01-06 00:15:11
10307    15231    617    2016-04-18 23:06:16    2016-04-18 23:06:16
10308    19090    831    2013-08-07 19:04:27    2013-08-07 19:04:27
10309    12292    584    2015-05-01 06:46:55    2015-05-01 06:46:55
10310    12529    887    2015-06-06 23:41:56    2015-06-06 23:41:56
10311    18026    731    2015-08-05 19:02:29    2015-08-05 19:02:29
10312    18847    919    2015-08-20 05:54:35    2015-08-20 05:54:35
10313    10833    954    2014-06-15 05:20:22    2014-06-15 05:20:22
10314    11794    815    2015-08-01 03:09:43    2015-08-01 03:09:43
10315    14193    749    2015-07-03 03:11:53    2015-07-03 03:11:53
10316    16624    813    2015-07-26 21:17:43    2015-07-26 21:17:43
10317    16137    666    2014-03-07 09:00:34    2014-03-07 09:00:34
10318    15434    615    2014-02-07 14:18:50    2014-02-07 14:18:50
10319    19384    743    2013-07-23 19:10:42    2013-07-23 19:10:42
10320    13244    888    2013-06-27 10:13:35    2013-06-27 10:13:35
10321    12468    479    2014-05-03 20:25:45    2014-05-03 20:25:45
10322    19206    838    2014-08-14 03:18:59    2014-08-14 03:18:59
10323    12875    634    2014-09-05 00:51:25    2014-09-05 00:51:25
10324    14159    772    2015-08-08 19:05:21    2015-08-08 19:05:21
10325    10842    602    2014-03-25 00:53:21    2014-03-25 00:53:21
10326    11338    852    2014-05-08 14:30:12    2014-05-08 14:30:12
10327    13491    746    2016-03-19 18:16:58    2016-03-19 18:16:58
10328    13313    468    2013-10-16 02:32:25    2013-10-16 02:32:25
10329    14663    589    2014-01-22 17:11:59    2014-01-22 17:11:59
10330    17005    516    2014-07-26 14:48:52    2014-07-26 14:48:52
10331    11006    813    2013-04-24 20:04:44    2013-04-24 20:04:44
10332    13816    882    2013-12-13 14:04:30    2013-12-13 14:04:30
10333    14365    576    2015-04-29 18:16:08    2015-04-29 18:16:08
10334    11746    709    2015-10-20 20:41:09    2015-10-20 20:41:09
10335    10479    617    2013-08-13 14:24:17    2013-08-13 14:24:17
10336    19763    669    2014-07-30 18:54:25    2014-07-30 18:54:25
10337    15860    958    2015-06-18 07:05:04    2015-06-18 07:05:04
10338    10247    608    2013-10-27 21:10:13    2013-10-27 21:10:13
10339    13924    885    2013-08-07 03:20:03    2013-08-07 03:20:03
10340    15871    790    2013-07-23 07:05:17    2013-07-23 07:05:17
10341    18546    512    2014-06-10 16:26:00    2014-06-10 16:26:00
10342    19462    716    2015-04-20 06:00:59    2015-04-20 06:00:59
10343    16518    838    2014-04-16 10:52:37    2014-04-16 10:52:37
10344    11370    787    2016-03-31 15:53:42    2016-03-31 15:53:42
10345    16130    855    2014-01-13 23:49:58    2014-01-13 23:49:58
10346    17920    664    2014-09-30 04:18:52    2014-09-30 04:18:52
10347    17198    568    2015-10-04 16:41:40    2015-10-04 16:41:40
10348    10839    515    2014-07-13 05:51:57    2014-07-13 05:51:57
10349    17597    560    2015-05-29 08:59:08    2015-05-29 08:59:08
10350    17213    610    2013-08-28 16:47:24    2013-08-28 16:47:24
10351    13768    737    2015-10-09 21:32:43    2015-10-09 21:32:43
10352    12977    846    2013-05-04 11:41:19    2013-05-04 11:41:19
10353    18654    752    2015-10-24 05:25:58    2015-10-24 05:25:58
10354    11759    495    2014-03-20 14:41:48    2014-03-20 14:41:48
10355    15172    947    2014-12-02 21:46:32    2014-12-02 21:46:32
10356    15739    643    2014-10-29 07:49:34    2014-10-29 07:49:34
10357    11070    557    2014-01-26 08:13:21    2014-01-26 08:13:21
10358    16013    690    2013-09-20 01:00:48    2013-09-20 01:00:48
10359    13432    672    2015-09-13 21:24:31    2015-09-13 21:24:31
10360    19394    846    2014-02-10 01:44:00    2014-02-10 01:44:00
10361    14223    745    2016-03-28 22:30:02    2016-03-28 22:30:02
10362    15421    691    2015-04-29 10:42:20    2015-04-29 10:42:20
10363    11932    870    2013-10-05 10:02:42    2013-10-05 10:02:42
10364    16280    565    2016-04-13 07:54:28    2016-04-13 07:54:28
10365    11523    666    2014-10-17 17:08:17    2014-10-17 17:08:17
10366    11628    463    2013-07-28 06:01:30    2013-07-28 06:01:30
10367    12332    532    2016-01-01 23:26:14    2016-01-01 23:26:14
10368    16811    944    2014-09-04 18:59:02    2014-09-04 18:59:02
10369    13871    693    2014-10-07 23:57:55    2014-10-07 23:57:55
10370    18190    737    2014-05-08 00:28:40    2014-05-08 00:28:40
10371    16168    732    2014-08-30 17:12:35    2014-08-30 17:12:35
10372    16545    666    2016-04-13 16:17:44    2016-04-13 16:17:44
10373    10697    783    2013-05-15 16:59:25    2013-05-15 16:59:25
10374    19245    551    2013-10-09 01:07:24    2013-10-09 01:07:24
10375    19690    913    2016-04-08 11:19:25    2016-04-08 11:19:25
10376    18392    543    2013-12-16 16:47:31    2013-12-16 16:47:31
10377    11587    880    2014-09-18 08:20:10    2014-09-18 08:20:10
10378    16149    857    2014-07-03 19:24:34    2014-07-03 19:24:34
10379    11985    478    2014-04-11 12:54:30    2014-04-11 12:54:30
10380    17368    785    2016-03-19 13:28:34    2016-03-19 13:28:34
10381    14832    590    2014-04-07 09:06:03    2014-04-07 09:06:03
10382    19721    585    2015-03-30 15:48:12    2015-03-30 15:48:12
10383    13469    906    2015-10-05 12:34:55    2015-10-05 12:34:55
10384    18739    868    2013-09-30 12:04:29    2013-09-30 12:04:29
10385    18016    862    2014-08-14 04:09:14    2014-08-14 04:09:14
10386    12458    774    2014-09-01 15:04:53    2014-09-01 15:04:53
10387    17870    617    2013-07-12 21:56:35    2013-07-12 21:56:35
10388    16763    933    2014-03-31 21:01:01    2014-03-31 21:01:01
10389    19761    525    2014-07-08 22:32:32    2014-07-08 22:32:32
10390    15789    605    2015-06-05 20:03:58    2015-06-05 20:03:58
10391    11119    588    2015-08-25 18:04:31    2015-08-25 18:04:31
10392    15638    588    2014-05-25 15:13:25    2014-05-25 15:13:25
10393    11588    516    2014-10-03 09:40:50    2014-10-03 09:40:50
10394    17235    749    2013-09-22 23:16:04    2013-09-22 23:16:04
10395    11654    540    2015-02-19 04:59:11    2015-02-19 04:59:11
10396    11409    658    2016-03-15 10:53:42    2016-03-15 10:53:42
10397    14224    542    2015-10-28 05:41:01    2015-10-28 05:41:01
10398    14502    638    2014-06-15 01:03:21    2014-06-15 01:03:21
10399    17813    874    2015-11-06 18:28:09    2015-11-06 18:28:09
10400    11364    872    2016-01-03 12:45:52    2016-01-03 12:45:52
10401    15252    500    2016-04-12 12:23:56    2016-04-12 12:23:56
10402    19409    776    2015-09-16 18:44:08    2015-09-16 18:44:08
10403    18986    771    2015-12-20 06:59:04    2015-12-20 06:59:04
10404    10236    660    2014-04-02 14:45:31    2014-04-02 14:45:31
10405    15405    893    2016-03-22 02:18:03    2016-03-22 02:18:03
10406    15951    792    2014-01-19 18:17:37    2014-01-19 18:17:37
10407    18887    559    2016-03-10 21:24:39    2016-03-10 21:24:39
10408    11602    614    2014-08-14 18:21:26    2014-08-14 18:21:26
10409    12250    733    2015-04-27 21:37:38    2015-04-27 21:37:38
10410    11467    817    2016-04-14 18:15:39    2016-04-14 18:15:39
10411    11838    614    2015-01-16 13:40:10    2015-01-16 13:40:10
10412    15696    608    2015-11-09 22:45:39    2015-11-09 22:45:39
10413    10766    936    2014-04-16 23:32:44    2014-04-16 23:32:44
10414    11022    840    2015-08-26 08:45:13    2015-08-26 08:45:13
10415    14201    655    2013-10-29 19:09:45    2013-10-29 19:09:45
10416    16464    886    2016-03-18 20:37:26    2016-03-18 20:37:26
10417    14279    753    2014-01-19 21:39:47    2014-01-19 21:39:47
10418    15312    724    2013-06-16 02:54:15    2013-06-16 02:54:15
10419    16958    688    2014-02-25 07:27:32    2014-02-25 07:27:32
10420    12313    872    2015-07-02 15:19:58    2015-07-02 15:19:58
10421    15129    658    2015-03-27 00:54:52    2015-03-27 00:54:52
10422    17897    831    2014-09-30 19:55:02    2014-09-30 19:55:02
10423    13378    768    2015-05-28 22:03:55    2015-05-28 22:03:55
10424    15708    753    2015-08-09 05:21:35    2015-08-09 05:21:35
10425    12080    940    2013-06-08 17:48:27    2013-06-08 17:48:27
10426    14898    655    2014-05-31 07:23:07    2014-05-31 07:23:07
10427    15753    687    2013-06-01 15:27:28    2013-06-01 15:27:28
10428    13821    809    2016-01-25 11:03:17    2016-01-25 11:03:17
10429    11403    731    2014-04-12 05:26:20    2014-04-12 05:26:20
10430    15388    821    2015-05-17 09:05:30    2015-05-17 09:05:30
10431    13570    909    2014-09-13 02:48:19    2014-09-13 02:48:19
10432    11714    598    2014-06-07 04:05:17    2014-06-07 04:05:17
10433    14472    819    2013-06-25 01:27:59    2013-06-25 01:27:59
10434    14583    691    2014-01-10 09:13:04    2014-01-10 09:13:04
10435    19834    765    2016-02-02 14:42:13    2016-02-02 14:42:13
10436    18396    950    2015-07-08 22:37:37    2015-07-08 22:37:37
10437    19778    482    2014-02-28 18:07:52    2014-02-28 18:07:52
10438    13685    843    2014-05-28 05:03:07    2014-05-28 05:03:07
10439    17449    701    2014-01-25 21:54:21    2014-01-25 21:54:21
10440    18833    534    2013-11-02 23:55:12    2013-11-02 23:55:12
10441    12453    649    2014-02-06 14:22:33    2014-02-06 14:22:33
10442    13259    740    2014-08-02 20:32:05    2014-08-02 20:32:05
10443    19054    953    2015-01-09 08:35:04    2015-01-09 08:35:04
10444    14673    911    2015-11-22 04:49:48    2015-11-22 04:49:48
10445    11772    957    2015-12-29 12:35:30    2015-12-29 12:35:30
10446    15539    831    2014-12-11 06:47:04    2014-12-11 06:47:04
10447    16442    478    2013-10-11 01:06:26    2013-10-11 01:06:26
10448    10950    950    2014-08-21 12:47:39    2014-08-21 12:47:39
10449    14499    527    2016-03-26 06:01:05    2016-03-26 06:01:05
10450    10240    517    2015-12-06 11:18:18    2015-12-06 11:18:18
10451    10704    582    2015-08-21 12:43:18    2015-08-21 12:43:18
10452    11554    533    2014-09-08 06:14:08    2014-09-08 06:14:08
10453    11873    617    2014-01-22 10:49:11    2014-01-22 10:49:11
10454    13974    689    2016-03-01 17:20:07    2016-03-01 17:20:07
10455    14109    519    2015-10-16 08:06:13    2015-10-16 08:06:13
10456    15950    499    2015-12-18 10:10:56    2015-12-18 10:10:56
10457    12984    899    2015-08-21 16:00:50    2015-08-21 16:00:50
10458    18480    724    2013-09-20 01:48:38    2013-09-20 01:48:38
10459    10917    853    2015-07-21 02:01:07    2015-07-21 02:01:07
10460    14161    785    2015-05-31 14:15:01    2015-05-31 14:15:01
10461    18490    879    2015-11-17 04:01:20    2015-11-17 04:01:20
10462    13684    921    2015-04-11 18:11:03    2015-04-11 18:11:03
10463    12685    654    2014-07-24 08:20:35    2014-07-24 08:20:35
10464    17111    543    2015-04-17 07:46:50    2015-04-17 07:46:50
10465    18085    718    2015-04-22 01:38:32    2015-04-22 01:38:32
10466    13400    812    2014-04-13 19:26:29    2014-04-13 19:26:29
10467    15755    547    2014-06-29 01:39:42    2014-06-29 01:39:42
10468    13327    701    2016-02-04 23:26:52    2016-02-04 23:26:52
10469    17300    473    2014-03-07 15:54:09    2014-03-07 15:54:09
10470    11542    564    2014-08-14 21:19:36    2014-08-14 21:19:36
10471    19381    820    2013-07-30 13:33:52    2013-07-30 13:33:52
10472    14745    910    2014-11-11 06:46:34    2014-11-11 06:46:34
10473    16632    846    2014-11-09 18:20:33    2014-11-09 18:20:33
10474    13281    813    2014-07-31 18:36:41    2014-07-31 18:36:41
10475    10349    543    2016-04-02 13:59:06    2016-04-02 13:59:06
10476    16757    585    2016-03-30 11:32:37    2016-03-30 11:32:37
10477    11983    859    2015-06-12 23:08:14    2015-06-12 23:08:14
10478    13783    524    2014-11-22 15:05:26    2014-11-22 15:05:26
10479    15691    736    2014-03-08 23:06:18    2014-03-08 23:06:18
10480    12504    551    2016-03-04 07:15:56    2016-03-04 07:15:56
10481    17934    696    2014-05-25 05:38:04    2014-05-25 05:38:04
10482    13238    708    2014-07-11 19:32:46    2014-07-11 19:32:46
10483    19806    926    2014-03-24 01:04:23    2014-03-24 01:04:23
10484    19658    622    2015-07-31 14:39:06    2015-07-31 14:39:06
10485    15354    645    2014-04-13 10:54:03    2014-04-13 10:54:03
10486    10306    631    2015-05-07 02:48:48    2015-05-07 02:48:48
10487    13245    934    2014-05-29 15:14:30    2014-05-29 15:14:30
10488    14450    669    2015-06-13 14:59:50    2015-06-13 14:59:50
10489    18375    861    2015-08-02 00:13:27    2015-08-02 00:13:27
10490    10042    897    2014-07-15 12:16:09    2014-07-15 12:16:09
10491    16757    928    2015-07-11 11:37:40    2015-07-11 11:37:40
10492    12660    707    2015-07-29 05:39:09    2015-07-29 05:39:09
10493    16859    753    2015-06-27 06:54:43    2015-06-27 06:54:43
10494    17256    463    2015-07-18 09:40:43    2015-07-18 09:40:43
10495    17209    911    2013-07-25 03:51:06    2013-07-25 03:51:06
10496    15525    782    2013-08-01 04:45:49    2013-08-01 04:45:49
10497    12848    733    2013-12-09 22:53:39    2013-12-09 22:53:39
10498    17100    543    2016-04-18 07:27:05    2016-04-18 07:27:05
10499    17741    930    2013-04-22 01:23:18    2013-04-22 01:23:18
10500    10744    666    2014-07-11 14:36:38    2014-07-11 14:36:38
10501    15851    699    2015-12-29 02:11:06    2015-12-29 02:11:06
10502    19431    784    2015-10-22 11:20:00    2015-10-22 11:20:00
10503    12450    721    2015-12-04 21:29:14    2015-12-04 21:29:14
10504    14678    941    2015-10-15 04:19:44    2015-10-15 04:19:44
10505    10250    871    2013-05-01 16:39:32    2013-05-01 16:39:32
10506    14359    474    2016-03-28 21:10:25    2016-03-28 21:10:25
10507    16678    747    2014-04-05 18:02:23    2014-04-05 18:02:23
10508    16300    941    2016-04-16 06:32:57    2016-04-16 06:32:57
10509    19502    875    2015-05-19 07:39:47    2015-05-19 07:39:47
10510    10295    602    2015-01-19 14:38:45    2015-01-19 14:38:45
10511    13505    504    2014-02-17 09:26:31    2014-02-17 09:26:31
10512    15297    809    2015-10-28 22:44:31    2015-10-28 22:44:31
10513    13703    477    2013-12-23 21:00:02    2013-12-23 21:00:02
10514    16764    574    2016-01-04 13:46:51    2016-01-04 13:46:51
10515    16110    542    2015-07-16 14:16:40    2015-07-16 14:16:40
10516    19140    518    2015-08-13 11:08:28    2015-08-13 11:08:28
10517    11845    836    2014-11-17 04:37:07    2014-11-17 04:37:07
10518    12962    855    2014-05-08 15:42:14    2014-05-08 15:42:14
10519    14679    862    2013-10-12 15:13:32    2013-10-12 15:13:32
10520    19862    752    2015-08-22 14:30:45    2015-08-22 14:30:45
10521    12524    556    2014-01-15 02:47:56    2014-01-15 02:47:56
10522    13065    557    2016-02-28 08:33:53    2016-02-28 08:33:53
10523    14830    920    2013-07-10 09:22:17    2013-07-10 09:22:17
10524    17302    479    2016-04-09 14:23:27    2016-04-09 14:23:27
10525    12142    730    2014-12-02 09:20:10    2014-12-02 09:20:10
10526    19008    482    2015-10-23 05:22:31    2015-10-23 05:22:31
10527    12232    793    2014-03-25 02:30:02    2014-03-25 02:30:02
10528    13525    950    2014-01-09 21:54:28    2014-01-09 21:54:28
10529    11772    889    2013-09-13 05:20:36    2013-09-13 05:20:36
10530    10482    960    2014-11-07 09:50:33    2014-11-07 09:50:33
10531    13610    573    2014-11-16 20:43:23    2014-11-16 20:43:23
10532    14036    489    2016-01-17 12:39:44    2016-01-17 12:39:44
10533    15608    644    2014-01-19 08:09:06    2014-01-19 08:09:06
10534    11392    610    2016-01-22 13:54:28    2016-01-22 13:54:28
10535    11095    709    2014-05-04 17:22:04    2014-05-04 17:22:04
10536    16943    736    2014-10-10 16:57:38    2014-10-10 16:57:38
10537    16951    581    2014-01-27 14:55:36    2014-01-27 14:55:36
10538    18770    842    2014-02-17 04:39:20    2014-02-17 04:39:20
10539    11300    716    2015-02-20 11:58:56    2015-02-20 11:58:56
10540    13334    591    2014-10-19 15:34:50    2014-10-19 15:34:50
10541    17859    629    2014-11-06 05:31:01    2014-11-06 05:31:01
10542    15759    635    2015-03-13 17:06:31    2015-03-13 17:06:31
10543    13942    673    2014-04-04 23:07:35    2014-04-04 23:07:35
10544    16743    887    2013-11-01 22:18:54    2013-11-01 22:18:54
10545    12978    682    2015-06-06 00:06:22    2015-06-06 00:06:22
10546    18837    843    2014-01-21 11:21:20    2014-01-21 11:21:20
10547    10823    805    2014-07-19 05:33:25    2014-07-19 05:33:25
10548    18869    790    2013-10-19 07:21:59    2013-10-19 07:21:59
10549    15555    512    2015-08-16 13:41:58    2015-08-16 13:41:58
10550    14590    667    2014-04-15 20:36:53    2014-04-15 20:36:53
10551    17528    794    2014-10-16 11:10:27    2014-10-16 11:10:27
10552    15198    472    2016-01-02 14:51:38    2016-01-02 14:51:38
10553    18545    765    2015-03-15 11:37:14    2015-03-15 11:37:14
10554    18523    914    2013-08-12 16:42:37    2013-08-12 16:42:37
10555    11512    682    2013-12-12 14:52:56    2013-12-12 14:52:56
10556    15479    522    2014-02-07 07:04:42    2014-02-07 07:04:42
10557    19743    545    2015-05-15 19:06:21    2015-05-15 19:06:21
10558    15271    892    2014-11-17 13:02:27    2014-11-17 13:02:27
10559    14350    845    2014-10-10 04:14:35    2014-10-10 04:14:35
10560    14639    596    2013-11-15 16:07:54    2013-11-15 16:07:54
10561    19222    739    2016-01-25 03:43:51    2016-01-25 03:43:51
10562    14617    878    2013-12-14 00:22:54    2013-12-14 00:22:54
10563    11702    841    2013-07-08 16:21:17    2013-07-08 16:21:17
10564    12964    716    2014-01-10 10:59:01    2014-01-10 10:59:01
10565    17958    554    2014-07-20 16:02:37    2014-07-20 16:02:37
10566    17359    913    2015-01-13 11:38:17    2015-01-13 11:38:17
10567    18692    592    2015-12-03 03:26:42    2015-12-03 03:26:42
10568    15802    873    2014-04-19 09:27:28    2014-04-19 09:27:28
10569    11752    589    2015-06-23 23:19:00    2015-06-23 23:19:00
10570    18150    839    2015-07-04 13:40:38    2015-07-04 13:40:38
10571    16724    519    2014-08-07 10:20:48    2014-08-07 10:20:48
10572    12966    667    2013-11-12 11:14:05    2013-11-12 11:14:05
10573    15716    852    2013-05-07 20:13:46    2013-05-07 20:13:46
10574    18969    716    2015-10-31 01:03:01    2015-10-31 01:03:01
10575    19707    690    2015-01-28 10:51:17    2015-01-28 10:51:17
10576    19011    771    2015-11-05 22:56:35    2015-11-05 22:56:35
10577    16457    718    2014-12-27 00:23:29    2014-12-27 00:23:29
10578    11121    642    2013-07-17 20:16:09    2013-07-17 20:16:09
10579    18078    657    2015-09-20 03:07:30    2015-09-20 03:07:30
10580    15279    603    2015-10-01 21:06:06    2015-10-01 21:06:06
10581    12987    754    2013-05-29 20:22:08    2013-05-29 20:22:08
10582    10744    687    2013-10-10 11:04:48    2013-10-10 11:04:48
10583    19368    526    2015-02-21 11:04:09    2015-02-21 11:04:09
10584    14023    961    2014-07-25 16:19:54    2014-07-25 16:19:54
10585    13516    789    2015-06-30 03:17:13    2015-06-30 03:17:13
10586    13453    876    2014-07-24 22:10:44    2014-07-24 22:10:44
10587    17008    829    2015-01-29 20:19:06    2015-01-29 20:19:06
10588    11551    895    2015-09-10 18:10:06    2015-09-10 18:10:06
10589    18898    771    2013-10-24 17:01:23    2013-10-24 17:01:23
10590    18473    472    2014-10-11 19:29:40    2014-10-11 19:29:40
10591    16576    550    2015-12-29 21:59:25    2015-12-29 21:59:25
10592    15976    847    2016-01-01 07:40:04    2016-01-01 07:40:04
10593    11310    794    2015-05-13 20:33:28    2015-05-13 20:33:28
10594    11667    514    2015-03-25 09:48:15    2015-03-25 09:48:15
10595    18901    752    2015-09-30 16:38:06    2015-09-30 16:38:06
10596    11412    761    2015-12-27 16:55:28    2015-12-27 16:55:28
10597    19046    810    2015-06-01 03:30:55    2015-06-01 03:30:55
10598    15826    855    2014-04-25 01:29:42    2014-04-25 01:29:42
10599    12811    637    2013-06-19 23:07:14    2013-06-19 23:07:14
10600    17716    616    2013-11-22 04:40:09    2013-11-22 04:40:09
10601    12910    818    2016-03-20 06:57:46    2016-03-20 06:57:46
10602    14923    576    2015-11-02 02:08:42    2015-11-02 02:08:42
10603    12019    861    2016-03-14 20:41:53    2016-03-14 20:41:53
10604    17589    955    2014-12-02 20:45:58    2014-12-02 20:45:58
10605    17901    480    2014-12-26 14:51:41    2014-12-26 14:51:41
10606    18683    868    2014-01-15 10:56:16    2014-01-15 10:56:16
10607    11038    807    2014-04-16 05:18:30    2014-04-16 05:18:30
10608    15226    474    2014-07-01 07:59:06    2014-07-01 07:59:06
10609    17870    613    2015-01-31 01:39:10    2015-01-31 01:39:10
10610    15985    493    2015-04-26 07:15:22    2015-04-26 07:15:22
10611    18941    707    2016-01-06 00:33:33    2016-01-06 00:33:33
10612    18751    650    2016-01-09 23:17:23    2016-01-09 23:17:23
10613    19017    715    2014-04-17 20:48:04    2014-04-17 20:48:04
10614    17561    638    2013-07-05 09:52:43    2013-07-05 09:52:43
10615    16542    472    2014-07-21 18:36:08    2014-07-21 18:36:08
10616    12544    865    2014-09-13 22:39:09    2014-09-13 22:39:09
10617    11675    636    2016-02-22 08:46:13    2016-02-22 08:46:13
10618    15801    840    2014-07-04 19:35:25    2014-07-04 19:35:25
10619    17812    515    2014-05-15 12:04:39    2014-05-15 12:04:39
10620    18133    961    2013-08-31 01:06:05    2013-08-31 01:06:05
10621    15518    923    2013-08-13 22:21:52    2013-08-13 22:21:52
10622    18897    765    2014-03-16 14:29:41    2014-03-16 14:29:41
10623    10165    787    2015-03-19 04:58:07    2015-03-19 04:58:07
10624    12192    669    2015-12-07 16:51:38    2015-12-07 16:51:38
10625    13770    833    2016-01-29 16:50:42    2016-01-29 16:50:42
10626    11496    932    2014-06-17 00:44:44    2014-06-17 00:44:44
10627    10867    900    2014-07-06 11:35:10    2014-07-06 11:35:10
10628    12111    580    2013-06-01 18:15:22    2013-06-01 18:15:22
10629    15148    669    2015-06-27 06:26:34    2015-06-27 06:26:34
10630    11952    860    2015-11-05 11:43:43    2015-11-05 11:43:43
10631    14161    637    2015-07-19 02:50:02    2015-07-19 02:50:02
10632    17017    484    2015-03-08 09:04:34    2015-03-08 09:04:34
10633    10757    582    2015-03-10 11:51:23    2015-03-10 11:51:23
10634    13047    860    2015-08-28 05:27:01    2015-08-28 05:27:01
10635    14540    895    2015-10-18 03:39:21    2015-10-18 03:39:21
10636    12576    760    2014-08-25 15:21:58    2014-08-25 15:21:58
10637    13181    817    2016-01-17 17:05:07    2016-01-17 17:05:07
10638    18001    871    2015-06-16 05:33:23    2015-06-16 05:33:23
10639    15770    618    2014-02-26 22:49:25    2014-02-26 22:49:25
10640    12471    915    2014-01-09 05:47:46    2014-01-09 05:47:46
10641    19393    790    2014-05-12 07:40:43    2014-05-12 07:40:43
10642    15698    945    2015-05-11 01:48:57    2015-05-11 01:48:57
10643    14827    909    2014-04-24 02:28:30    2014-04-24 02:28:30
10644    11981    483    2014-07-06 04:26:04    2014-07-06 04:26:04
10645    18630    483    2015-05-27 13:16:07    2015-05-27 13:16:07
10646    16416    723    2014-04-28 21:27:36    2014-04-28 21:27:36
10647    10059    737    2014-03-21 16:00:58    2014-03-21 16:00:58
10648    15555    902    2014-03-14 11:03:22    2014-03-14 11:03:22
10649    14284    634    2016-01-15 10:01:53    2016-01-15 10:01:53
10650    14974    501    2014-11-08 03:49:50    2014-11-08 03:49:50
10651    12057    681    2015-11-06 22:04:49    2015-11-06 22:04:49
10652    12938    495    2013-08-11 11:57:37    2013-08-11 11:57:37
10653    13462    728    2015-07-29 01:51:34    2015-07-29 01:51:34
10654    14727    663    2015-01-31 17:15:53    2015-01-31 17:15:53
10655    12060    611    2014-11-26 13:23:33    2014-11-26 13:23:33
10656    14567    575    2015-10-10 20:48:24    2015-10-10 20:48:24
10657    13878    559    2015-04-30 14:19:22    2015-04-30 14:19:22
10658    16559    735    2013-05-16 18:35:28    2013-05-16 18:35:28
10659    13108    607    2016-01-18 04:30:17    2016-01-18 04:30:17
10660    14010    525    2016-02-18 13:10:36    2016-02-18 13:10:36
10661    17974    946    2014-01-20 17:06:38    2014-01-20 17:06:38
10662    10754    499    2014-06-08 13:10:02    2014-06-08 13:10:02
10663    13279    813    2015-05-04 18:35:08    2015-05-04 18:35:08
10664    10413    505    2013-05-20 14:19:12    2013-05-20 14:19:12
10665    15329    487    2013-12-15 05:30:46    2013-12-15 05:30:46
10666    12250    641    2014-10-10 22:47:40    2014-10-10 22:47:40
10667    14234    479    2015-03-30 10:15:56    2015-03-30 10:15:56
10668    12100    881    2016-01-20 22:03:18    2016-01-20 22:03:18
10669    17420    949    2015-05-30 09:31:20    2015-05-30 09:31:20
10670    15333    737    2015-06-15 14:37:10    2015-06-15 14:37:10
10671    12281    679    2014-09-22 14:28:14    2014-09-22 14:28:14
10672    19598    684    2013-07-27 22:58:29    2013-07-27 22:58:29
10673    19547    809    2014-01-13 15:56:10    2014-01-13 15:56:10
10674    10977    654    2016-03-04 22:35:30    2016-03-04 22:35:30
10675    14832    636    2016-02-22 14:13:39    2016-02-22 14:13:39
10676    15573    910    2014-06-14 09:19:36    2014-06-14 09:19:36
10677    12518    891    2014-03-14 18:22:40    2014-03-14 18:22:40
10678    19014    587    2014-01-02 16:02:41    2014-01-02 16:02:41
10679    18747    681    2014-11-02 07:34:26    2014-11-02 07:34:26
10680    14211    883    2014-09-18 12:16:35    2014-09-18 12:16:35
10681    16069    680    2014-03-18 08:37:05    2014-03-18 08:37:05
10682    19313    601    2015-06-26 12:48:49    2015-06-26 12:48:49
10683    15697    606    2013-12-08 01:31:55    2013-12-08 01:31:55
10684    11123    584    2014-09-02 15:04:00    2014-09-02 15:04:00
10685    11387    542    2015-07-13 03:10:29    2015-07-13 03:10:29
10686    16630    886    2015-05-28 17:37:09    2015-05-28 17:37:09
10687    19955    530    2013-09-24 08:53:39    2013-09-24 08:53:39
10688    19273    837    2015-09-26 10:23:00    2015-09-26 10:23:00
10689    15268    783    2014-12-11 06:16:28    2014-12-11 06:16:28
10690    18873    568    2015-03-17 04:00:06    2015-03-17 04:00:06
10691    19987    826    2014-05-01 15:28:32    2014-05-01 15:28:32
10692    11486    714    2015-01-07 08:33:37    2015-01-07 08:33:37
10693    13038    686    2013-12-25 06:52:36    2013-12-25 06:52:36
10694    14802    502    2016-04-17 17:37:21    2016-04-17 17:37:21
10695    19570    464    2013-12-25 08:16:13    2013-12-25 08:16:13
10696    16355    475    2016-03-23 21:14:41    2016-03-23 21:14:41
10697    12645    674    2015-01-30 22:04:39    2015-01-30 22:04:39
10698    16403    888    2015-07-08 19:28:52    2015-07-08 19:28:52
10699    15676    762    2016-01-23 12:32:59    2016-01-23 12:32:59
10700    18065    778    2015-09-09 00:18:52    2015-09-09 00:18:52
10701    10194    776    2016-01-12 17:52:57    2016-01-12 17:52:57
10702    18871    866    2016-01-08 08:40:26    2016-01-08 08:40:26
10703    18864    748    2014-09-14 04:04:42    2014-09-14 04:04:42
10704    13055    599    2013-11-04 05:59:19    2013-11-04 05:59:19
10705    10680    474    2015-10-07 08:28:12    2015-10-07 08:28:12
10706    17228    553    2015-04-07 17:46:32    2015-04-07 17:46:32
10707    14497    810    2014-11-11 12:13:15    2014-11-11 12:13:15
10708    14230    816    2014-08-08 15:51:31    2014-08-08 15:51:31
10709    11860    818    2014-03-14 19:31:36    2014-03-14 19:31:36
10710    13033    521    2014-07-30 19:03:05    2014-07-30 19:03:05
10711    18043    871    2015-09-23 06:57:40    2015-09-23 06:57:40
10712    10307    684    2014-11-20 09:32:57    2014-11-20 09:32:57
10713    19085    723    2013-06-30 00:07:54    2013-06-30 00:07:54
10714    15953    919    2015-11-29 20:26:49    2015-11-29 20:26:49
10715    19028    472    2015-05-09 02:48:57    2015-05-09 02:48:57
10716    11462    829    2016-01-25 17:07:29    2016-01-25 17:07:29
10717    10455    729    2013-06-15 16:46:41    2013-06-15 16:46:41
10718    11510    699    2014-05-10 08:37:11    2014-05-10 08:37:11
10719    19834    940    2014-07-27 09:49:56    2014-07-27 09:49:56
10720    19885    601    2015-12-13 21:41:19    2015-12-13 21:41:19
10721    18029    668    2016-04-12 10:57:06    2016-04-12 10:57:06
10722    13213    609    2013-06-19 06:43:04    2013-06-19 06:43:04
10723    10816    696    2014-08-30 12:33:59    2014-08-30 12:33:59
10724    17558    886    2014-06-05 16:28:12    2014-06-05 16:28:12
10725    18121    750    2013-12-16 14:41:53    2013-12-16 14:41:53
10726    16438    495    2013-05-13 02:45:14    2013-05-13 02:45:14
10727    19899    599    2015-07-21 08:38:09    2015-07-21 08:38:09
10728    17269    734    2015-07-07 09:06:59    2015-07-07 09:06:59
10729    18222    805    2014-04-12 15:28:44    2014-04-12 15:28:44
10730    19415    763    2014-09-21 23:35:49    2014-09-21 23:35:49
10731    19003    516    2014-10-01 20:38:07    2014-10-01 20:38:07
10732    11004    484    2015-04-24 20:24:33    2015-04-24 20:24:33
10733    18330    613    2013-05-18 08:59:27    2013-05-18 08:59:27
10734    16523    832    2013-09-04 06:47:25    2013-09-04 06:47:25
10735    17514    960    2014-03-02 14:46:58    2014-03-02 14:46:58
10736    11677    750    2014-10-15 02:39:33    2014-10-15 02:39:33
10737    18265    650    2015-09-24 14:52:59    2015-09-24 14:52:59
10738    18408    845    2015-09-11 04:03:21    2015-09-11 04:03:21
10739    14753    918    2013-08-07 18:12:37    2013-08-07 18:12:37
10740    10371    617    2014-10-11 03:28:18    2014-10-11 03:28:18
10741    19449    890    2014-10-16 02:31:57    2014-10-16 02:31:57
10742    18837    843    2015-10-15 07:20:44    2015-10-15 07:20:44
10743    12116    813    2013-11-08 07:45:36    2013-11-08 07:45:36
10744    16664    856    2016-04-16 01:07:14    2016-04-16 01:07:14
10745    16549    687    2015-06-15 18:04:39    2015-06-15 18:04:39
10746    14851    545    2015-10-02 01:20:18    2015-10-02 01:20:18
10747    13913    466    2014-06-28 20:31:59    2014-06-28 20:31:59
10748    10156    676    2014-03-21 20:17:41    2014-03-21 20:17:41
10749    19650    814    2014-05-24 07:40:13    2014-05-24 07:40:13
10750    16870    622    2014-06-26 20:54:47    2014-06-26 20:54:47
10751    10737    709    2014-12-08 10:16:29    2014-12-08 10:16:29
10752    10171    519    2014-07-03 07:59:58    2014-07-03 07:59:58
10753    16601    475    2014-10-22 09:33:47    2014-10-22 09:33:47
10754    11489    821    2014-05-12 18:29:50    2014-05-12 18:29:50
10755    11778    554    2013-05-23 04:07:37    2013-05-23 04:07:37
10756    10487    938    2015-07-11 14:16:50    2015-07-11 14:16:50
10757    15579    602    2015-10-22 01:17:25    2015-10-22 01:17:25
10758    16064    759    2015-07-06 19:06:39    2015-07-06 19:06:39
10759    17749    939    2015-06-13 13:55:52    2015-06-13 13:55:52
10760    12284    702    2016-04-13 19:23:03    2016-04-13 19:23:03
10761    11431    704    2015-09-27 01:05:10    2015-09-27 01:05:10
10762    13981    576    2013-07-29 07:49:20    2013-07-29 07:49:20
10763    13939    573    2015-01-01 13:28:14    2015-01-01 13:28:14
10764    17208    893    2014-11-04 23:33:44    2014-11-04 23:33:44
10765    15062    914    2013-06-01 04:21:16    2013-06-01 04:21:16
10766    13413    650    2013-06-12 02:11:57    2013-06-12 02:11:57
10767    16638    939    2015-04-11 18:25:16    2015-04-11 18:25:16
10768    15676    534    2014-01-09 02:23:44    2014-01-09 02:23:44
10769    19424    864    2015-06-11 07:36:51    2015-06-11 07:36:51
10770    17073    883    2016-02-19 21:29:27    2016-02-19 21:29:27
10771    12249    564    2014-12-09 13:24:04    2014-12-09 13:24:04
10772    15112    736    2014-11-23 22:28:14    2014-11-23 22:28:14
10773    14000    571    2013-07-09 02:28:26    2013-07-09 02:28:26
10774    13848    693    2014-08-27 23:26:50    2014-08-27 23:26:50
10775    16534    676    2015-07-26 05:52:07    2015-07-26 05:52:07
10776    10121    582    2015-02-24 15:47:40    2015-02-24 15:47:40
10777    12375    916    2014-10-07 14:01:41    2014-10-07 14:01:41
10778    18496    495    2013-07-19 10:39:53    2013-07-19 10:39:53
10779    14736    485    2013-05-06 19:02:37    2013-05-06 19:02:37
10780    19160    851    2016-02-18 05:43:21    2016-02-18 05:43:21
10781    15043    663    2015-10-06 22:04:27    2015-10-06 22:04:27
10782    19634    687    2013-08-12 08:24:52    2013-08-12 08:24:52
10783    19244    702    2015-11-06 12:24:12    2015-11-06 12:24:12
10784    10416    652    2013-07-01 02:51:37    2013-07-01 02:51:37
10785    11477    578    2015-02-08 23:07:08    2015-02-08 23:07:08
10786    15292    478    2013-06-04 19:46:20    2013-06-04 19:46:20
10787    15471    653    2013-11-02 11:44:39    2013-11-02 11:44:39
10788    14153    810    2016-04-16 12:05:49    2016-04-16 12:05:49
10789    16511    651    2014-05-08 08:17:36    2014-05-08 08:17:36
10790    12199    526    2015-02-16 05:34:45    2015-02-16 05:34:45
10791    19315    622    2015-08-26 02:46:38    2015-08-26 02:46:38
10792    15593    791    2015-06-13 12:56:47    2015-06-13 12:56:47
10793    16828    515    2013-12-01 21:51:06    2013-12-01 21:51:06
10794    17606    612    2014-12-13 09:21:34    2014-12-13 09:21:34
10795    15272    503    2016-04-05 19:33:48    2016-04-05 19:33:48
10796    12934    536    2016-02-27 16:45:36    2016-02-27 16:45:36
10797    14569    948    2013-05-13 21:59:04    2013-05-13 21:59:04
10798    16463    767    2013-09-26 17:04:00    2013-09-26 17:04:00
10799    16125    658    2015-09-10 04:04:35    2015-09-10 04:04:35
10800    15406    839    2013-06-27 15:32:57    2013-06-27 15:32:57
10801    16268    798    2015-11-29 01:35:57    2015-11-29 01:35:57
10802    15486    504    2014-06-20 00:37:40    2014-06-20 00:37:40
10803    17536    692    2015-08-29 01:09:33    2015-08-29 01:09:33
10804    12114    791    2014-01-06 10:25:25    2014-01-06 10:25:25
10805    12351    554    2014-06-09 02:41:52    2014-06-09 02:41:52
10806    14364    944    2015-06-10 02:46:39    2015-06-10 02:46:39
10807    13518    822    2015-02-06 09:26:52    2015-02-06 09:26:52
10808    19970    935    2014-04-04 13:23:17    2014-04-04 13:23:17
10809    12820    478    2015-12-27 04:46:43    2015-12-27 04:46:43
10810    18601    573    2014-04-08 12:18:37    2014-04-08 12:18:37
10811    15715    899    2015-06-24 10:16:11    2015-06-24 10:16:11
10812    15736    729    2015-11-03 07:16:07    2015-11-03 07:16:07
10813    11661    821    2015-11-20 08:04:32    2015-11-20 08:04:32
10814    10175    649    2014-05-02 17:19:57    2014-05-02 17:19:57
10815    10311    465    2015-06-28 23:28:23    2015-06-28 23:28:23
10816    13547    551    2014-11-12 22:59:59    2014-11-12 22:59:59
10817    16713    494    2015-12-22 11:38:16    2015-12-22 11:38:16
10818    18428    579    2016-02-13 14:46:23    2016-02-13 14:46:23
10819    14704    955    2013-10-24 13:39:04    2013-10-24 13:39:04
10820    10523    779    2015-03-21 16:42:40    2015-03-21 16:42:40
10821    17225    661    2013-10-30 08:12:48    2013-10-30 08:12:48
10822    18788    792    2014-01-19 06:57:54    2014-01-19 06:57:54
10823    18031    961    2016-04-05 01:53:35    2016-04-05 01:53:35
10824    19932    654    2015-10-12 07:11:32    2015-10-12 07:11:32
10825    18857    823    2014-09-22 15:25:31    2014-09-22 15:25:31
10826    13996    607    2016-03-19 20:36:26    2016-03-19 20:36:26
10827    16199    502    2014-11-04 21:31:11    2014-11-04 21:31:11
10828    15178    602    2016-02-22 10:49:06    2016-02-22 10:49:06
10829    11208    693    2013-08-18 17:40:26    2013-08-18 17:40:26
10830    10005    662    2015-01-15 12:13:51    2015-01-15 12:13:51
10831    11723    895    2015-08-30 08:23:32    2015-08-30 08:23:32
10832    12877    495    2013-11-23 20:51:03    2013-11-23 20:51:03
10833    12846    470    2014-05-22 05:23:59    2014-05-22 05:23:59
10834    17511    484    2015-07-21 15:03:50    2015-07-21 15:03:50
10835    11764    714    2016-01-18 08:42:46    2016-01-18 08:42:46
10836    10201    597    2013-07-20 19:02:31    2013-07-20 19:02:31
10837    17191    812    2015-08-15 19:22:58    2015-08-15 19:22:58
10838    13656    821    2013-08-17 16:52:52    2013-08-17 16:52:52
10839    18462    717    2014-03-13 19:45:11    2014-03-13 19:45:11
10840    18524    504    2015-02-08 07:15:21    2015-02-08 07:15:21
10841    18173    494    2015-08-02 16:02:55    2015-08-02 16:02:55
10842    17706    541    2013-10-20 20:30:01    2013-10-20 20:30:01
10843    18602    822    2015-08-17 08:12:53    2015-08-17 08:12:53
10844    12916    672    2013-05-14 06:25:58    2013-05-14 06:25:58
10845    11212    584    2014-11-07 05:08:48    2014-11-07 05:08:48
10846    14317    873    2013-10-25 13:22:29    2013-10-25 13:22:29
10847    13824    953    2016-01-14 00:53:37    2016-01-14 00:53:37
10848    11286    951    2016-03-25 13:00:06    2016-03-25 13:00:06
10849    12600    810    2015-02-24 07:28:22    2015-02-24 07:28:22
10850    16138    712    2013-12-06 16:32:46    2013-12-06 16:32:46
10851    16577    771    2015-11-04 19:40:23    2015-11-04 19:40:23
10852    16807    552    2016-01-08 17:05:58    2016-01-08 17:05:58
10853    19173    662    2014-01-13 11:02:59    2014-01-13 11:02:59
10854    12068    630    2015-08-31 10:00:03    2015-08-31 10:00:03
10855    19555    722    2013-11-03 06:16:10    2013-11-03 06:16:10
10856    18557    779    2016-02-14 02:30:30    2016-02-14 02:30:30
10857    16773    796    2013-07-29 00:07:58    2013-07-29 00:07:58
10858    12139    887    2014-10-27 12:19:19    2014-10-27 12:19:19
10859    16076    552    2014-07-01 15:44:42    2014-07-01 15:44:42
10860    19488    698    2015-05-03 03:31:58    2015-05-03 03:31:58
10861    17163    623    2015-07-11 05:22:21    2015-07-11 05:22:21
10862    17873    561    2013-09-06 02:43:01    2013-09-06 02:43:01
10863    14616    646    2013-10-31 15:43:19    2013-10-31 15:43:19
10864    16371    749    2016-01-20 01:53:35    2016-01-20 01:53:35
10865    14475    808    2015-01-20 00:59:58    2015-01-20 00:59:58
10866    17754    633    2014-05-26 20:11:01    2014-05-26 20:11:01
10867    11081    882    2015-03-02 01:02:26    2015-03-02 01:02:26
10868    19802    657    2015-08-22 07:03:03    2015-08-22 07:03:03
10869    17651    659    2013-08-24 10:41:36    2013-08-24 10:41:36
10870    17853    796    2013-10-11 21:23:32    2013-10-11 21:23:32
10871    18093    903    2014-06-07 06:06:22    2014-06-07 06:06:22
10872    12757    762    2013-05-17 20:32:32    2013-05-17 20:32:32
10873    10688    512    2013-09-21 16:12:57    2013-09-21 16:12:57
10874    13746    846    2014-02-26 03:22:03    2014-02-26 03:22:03
10875    17437    640    2014-09-09 04:34:38    2014-09-09 04:34:38
10876    11535    660    2015-05-04 08:56:05    2015-05-04 08:56:05
10877    17077    543    2013-05-12 05:50:13    2013-05-12 05:50:13
10878    11676    607    2015-02-09 05:43:32    2015-02-09 05:43:32
10879    10903    484    2016-03-25 09:10:53    2016-03-25 09:10:53
10880    12514    682    2013-10-20 17:37:18    2013-10-20 17:37:18
10881    12460    501    2014-04-14 14:06:19    2014-04-14 14:06:19
10882    14429    749    2016-01-08 05:38:52    2016-01-08 05:38:52
10883    15602    651    2014-09-27 11:03:50    2014-09-27 11:03:50
10884    17864    565    2015-01-24 04:53:57    2015-01-24 04:53:57
10885    10982    632    2015-08-26 14:50:25    2015-08-26 14:50:25
10886    19201    514    2015-03-29 16:25:58    2015-03-29 16:25:58
10887    16055    931    2015-06-22 13:50:39    2015-06-22 13:50:39
10888    18404    924    2015-06-12 09:09:38    2015-06-12 09:09:38
10889    10300    782    2016-01-28 13:37:25    2016-01-28 13:37:25
10890    12378    752    2015-11-03 09:22:55    2015-11-03 09:22:55
10891    15412    857    2014-04-18 01:32:10    2014-04-18 01:32:10
10892    16391    604    2015-09-03 07:04:05    2015-09-03 07:04:05
10893    19882    515    2013-06-01 21:25:15    2013-06-01 21:25:15
10894    13540    480    2014-07-13 03:29:54    2014-07-13 03:29:54
10895    15788    893    2014-05-12 01:52:30    2014-05-12 01:52:30
10896    19102    745    2013-07-14 17:37:57    2013-07-14 17:37:57
10897    12663    903    2014-12-21 18:32:59    2014-12-21 18:32:59
10898    19938    796    2016-01-09 21:23:17    2016-01-09 21:23:17
10899    11752    801    2015-02-25 20:52:19    2015-02-25 20:52:19
10900    18932    900    2015-03-30 20:35:32    2015-03-30 20:35:32
10901    15124    707    2016-01-18 18:24:23    2016-01-18 18:24:23
10902    17953    512    2014-12-31 22:36:57    2014-12-31 22:36:57
10903    19029    604    2014-10-07 07:29:41    2014-10-07 07:29:41
10904    13670    866    2015-05-19 06:43:43    2015-05-19 06:43:43
10905    17668    896    2015-12-09 07:10:33    2015-12-09 07:10:33
10906    13232    518    2013-06-15 19:48:08    2013-06-15 19:48:08
10907    19716    587    2015-12-13 09:40:09    2015-12-13 09:40:09
10908    11957    638    2015-04-26 09:36:17    2015-04-26 09:36:17
10909    19745    819    2014-12-23 06:11:45    2014-12-23 06:11:45
10910    18991    576    2014-01-25 18:28:14    2014-01-25 18:28:14
10911    18328    915    2013-04-29 16:40:36    2013-04-29 16:40:36
10912    13114    782    2014-10-05 17:39:38    2014-10-05 17:39:38
10913    13311    654    2014-06-18 13:07:28    2014-06-18 13:07:28
10914    19564    959    2015-01-12 03:19:00    2015-01-12 03:19:00
10915    15790    818    2016-01-23 20:07:03    2016-01-23 20:07:03
10916    18266    682    2013-05-07 15:19:00    2013-05-07 15:19:00
10917    17445    642    2014-05-17 18:04:06    2014-05-17 18:04:06
10918    19175    748    2014-08-19 21:15:17    2014-08-19 21:15:17
10919    17250    916    2015-09-21 16:38:33    2015-09-21 16:38:33
10920    17923    815    2015-11-08 04:51:54    2015-11-08 04:51:54
10921    18186    954    2013-10-06 18:45:11    2013-10-06 18:45:11
10922    16506    465    2016-01-03 07:08:32    2016-01-03 07:08:32
10923    11134    540    2014-03-26 02:37:25    2014-03-26 02:37:25
10924    16011    699    2015-10-19 02:22:40    2015-10-19 02:22:40
10925    11045    782    2014-01-26 08:02:08    2014-01-26 08:02:08
10926    11943    629    2015-07-15 14:21:49    2015-07-15 14:21:49
10927    14810    718    2015-03-13 05:26:55    2015-03-13 05:26:55
10928    19322    957    2015-09-09 00:16:23    2015-09-09 00:16:23
10929    11643    622    2014-04-25 11:38:47    2014-04-25 11:38:47
10930    15029    493    2015-03-16 14:58:43    2015-03-16 14:58:43
10931    11612    936    2015-10-12 10:32:46    2015-10-12 10:32:46
10932    17416    706    2015-09-08 00:38:02    2015-09-08 00:38:02
10933    13662    561    2014-03-01 12:00:39    2014-03-01 12:00:39
10934    15599    766    2014-04-15 20:12:34    2014-04-15 20:12:34
10935    19542    683    2013-10-21 16:51:50    2013-10-21 16:51:50
10936    19396    564    2014-07-12 16:03:46    2014-07-12 16:03:46
10937    15758    724    2014-07-14 17:32:51    2014-07-14 17:32:51
10938    11171    485    2015-10-03 07:34:11    2015-10-03 07:34:11
10939    19410    815    2013-07-10 16:13:16    2013-07-10 16:13:16
10940    13811    756    2014-01-26 05:06:38    2014-01-26 05:06:38
10941    11601    481    2014-09-19 22:38:22    2014-09-19 22:38:22
10942    16190    579    2016-03-11 13:41:22    2016-03-11 13:41:22
10943    19312    657    2013-07-26 03:54:11    2013-07-26 03:54:11
10944    14796    795    2013-05-05 11:11:52    2013-05-05 11:11:52
10945    10583    469    2014-08-28 08:48:54    2014-08-28 08:48:54
10946    15052    865    2015-08-20 21:41:40    2015-08-20 21:41:40
10947    13874    654    2016-04-07 13:04:30    2016-04-07 13:04:30
10948    17504    575    2014-07-31 18:54:30    2014-07-31 18:54:30
10949    11886    648    2016-02-05 16:12:03    2016-02-05 16:12:03
10950    14148    671    2013-12-10 16:08:17    2013-12-10 16:08:17
10951    13164    571    2014-06-23 19:20:27    2014-06-23 19:20:27
10952    15129    855    2014-03-22 19:13:39    2014-03-22 19:13:39
10953    15895    552    2013-11-17 08:17:30    2013-11-17 08:17:30
10954    17489    879    2014-09-21 00:52:35    2014-09-21 00:52:35
10955    17277    930    2013-12-01 10:05:10    2013-12-01 10:05:10
10956    13347    667    2014-11-20 09:57:56    2014-11-20 09:57:56
10957    10775    463    2015-03-28 12:03:45    2015-03-28 12:03:45
10958    12995    923    2015-12-29 16:40:00    2015-12-29 16:40:00
10959    15744    469    2016-01-23 16:31:23    2016-01-23 16:31:23
10960    19131    856    2013-07-28 12:38:53    2013-07-28 12:38:53
10961    18746    604    2013-12-16 18:09:16    2013-12-16 18:09:16
10962    11930    790    2014-03-23 08:23:52    2014-03-23 08:23:52
10963    18616    877    2014-02-24 20:30:29    2014-02-24 20:30:29
10964    11811    612    2014-08-08 22:19:54    2014-08-08 22:19:54
10965    16585    882    2015-07-17 19:33:59    2015-07-17 19:33:59
10966    19153    593    2015-01-11 15:39:14    2015-01-11 15:39:14
10967    15252    568    2015-01-20 09:20:23    2015-01-20 09:20:23
10968    12867    693    2014-03-31 19:33:20    2014-03-31 19:33:20
10969    14679    548    2015-10-28 13:14:02    2015-10-28 13:14:02
10970    13089    591    2015-10-25 21:48:57    2015-10-25 21:48:57
10971    17437    674    2016-02-21 15:19:07    2016-02-21 15:19:07
10972    13685    902    2014-08-27 11:38:17    2014-08-27 11:38:17
10973    13709    774    2015-03-09 11:04:30    2015-03-09 11:04:30
10974    17175    808    2014-07-18 12:38:41    2014-07-18 12:38:41
10975    17957    834    2015-08-02 17:01:36    2015-08-02 17:01:36
10976    18865    504    2014-01-24 22:54:08    2014-01-24 22:54:08
10977    19000    905    2015-02-19 17:26:48    2015-02-19 17:26:48
10978    19193    517    2014-06-10 13:28:38    2014-06-10 13:28:38
10979    12056    713    2014-07-16 08:06:58    2014-07-16 08:06:58
10980    11382    914    2015-06-10 08:50:57    2015-06-10 08:50:57
10981    11628    717    2013-10-02 18:40:06    2013-10-02 18:40:06
10982    19702    942    2013-09-25 03:29:22    2013-09-25 03:29:22
10983    18888    735    2016-01-27 09:36:55    2016-01-27 09:36:55
10984    18122    594    2013-08-04 10:26:23    2013-08-04 10:26:23
10985    10846    577    2014-06-04 20:09:07    2014-06-04 20:09:07
10986    12539    739    2016-01-05 00:24:40    2016-01-05 00:24:40
10987    13261    681    2013-12-31 21:03:48    2013-12-31 21:03:48
10988    16149    941    2014-09-09 16:57:11    2014-09-09 16:57:11
10989    14893    586    2015-12-10 01:39:46    2015-12-10 01:39:46
10990    16317    846    2015-07-28 02:55:12    2015-07-28 02:55:12
10991    15634    546    2014-07-27 21:58:22    2014-07-27 21:58:22
10992    17002    867    2016-03-31 14:11:59    2016-03-31 14:11:59
10993    16840    530    2016-02-09 01:37:33    2016-02-09 01:37:33
10994    17475    750    2014-01-22 23:32:45    2014-01-22 23:32:45
10995    17375    524    2014-01-05 04:32:56    2014-01-05 04:32:56
10996    19046    701    2016-03-07 15:38:33    2016-03-07 15:38:33
10997    11262    511    2016-01-25 09:54:56    2016-01-25 09:54:56
10998    11477    588    2013-10-23 02:48:14    2013-10-23 02:48:14
10999    12524    780    2014-11-04 08:01:49    2014-11-04 08:01:49
11000    12689    828    2014-08-27 17:30:48    2014-08-27 17:30:48
11001    11459    643    2014-01-17 17:46:19    2014-01-17 17:46:19
11002    14686    628    2016-02-21 19:26:29    2016-02-21 19:26:29
11003    16337    736    2015-03-16 11:04:05    2015-03-16 11:04:05
11004    13101    749    2014-04-13 22:12:27    2014-04-13 22:12:27
11005    14433    578    2016-01-19 04:09:50    2016-01-19 04:09:50
11006    17382    557    2014-06-28 03:17:08    2014-06-28 03:17:08
11007    15463    691    2013-06-13 11:50:15    2013-06-13 11:50:15
11008    13969    961    2013-08-31 17:10:05    2013-08-31 17:10:05
11009    16968    622    2013-12-03 15:56:24    2013-12-03 15:56:24
11010    16242    732    2013-07-19 23:39:58    2013-07-19 23:39:58
11011    16915    949    2016-01-24 09:56:34    2016-01-24 09:56:34
11012    15393    756    2015-12-15 03:22:59    2015-12-15 03:22:59
11013    14719    779    2013-10-05 19:26:16    2013-10-05 19:26:16
11014    11633    464    2016-01-03 16:24:13    2016-01-03 16:24:13
11015    16913    817    2015-01-18 14:05:37    2015-01-18 14:05:37
11016    10560    771    2014-04-12 16:41:13    2014-04-12 16:41:13
11017    18627    935    2015-05-24 08:30:12    2015-05-24 08:30:12
11018    10009    473    2015-07-06 14:40:43    2015-07-06 14:40:43
11019    13611    614    2014-03-20 13:59:05    2014-03-20 13:59:05
11020    14064    855    2014-05-14 17:56:50    2014-05-14 17:56:50
11021    10291    665    2015-01-24 11:57:30    2015-01-24 11:57:30
11022    18040    775    2015-12-22 16:28:34    2015-12-22 16:28:34
11023    13927    713    2014-09-17 01:44:33    2014-09-17 01:44:33
11024    17720    605    2013-11-23 20:57:24    2013-11-23 20:57:24
11025    16785    636    2015-07-31 02:17:16    2015-07-31 02:17:16
11026    15397    758    2014-06-01 04:54:01    2014-06-01 04:54:01
11027    12655    928    2013-09-09 13:12:24    2013-09-09 13:12:24
11028    14071    618    2016-02-12 23:32:28    2016-02-12 23:32:28
11029    19840    800    2013-07-27 09:50:51    2013-07-27 09:50:51
11030    11465    694    2015-05-27 06:22:11    2015-05-27 06:22:11
11031    17948    525    2014-05-10 19:53:23    2014-05-10 19:53:23
11032    13609    836    2015-12-14 16:12:48    2015-12-14 16:12:48
11033    15829    718    2015-09-17 04:47:00    2015-09-17 04:47:00
11034    17273    926    2016-01-06 03:49:12    2016-01-06 03:49:12
11035    10494    772    2014-05-08 02:38:43    2014-05-08 02:38:43
11036    14472    909    2015-11-30 20:36:43    2015-11-30 20:36:43
11037    19689    845    2014-06-29 21:02:50    2014-06-29 21:02:50
11038    13388    764    2015-03-17 05:09:10    2015-03-17 05:09:10
11039    17582    618    2014-02-18 08:52:44    2014-02-18 08:52:44
11040    19802    491    2014-09-09 23:36:31    2014-09-09 23:36:31
11041    11456    540    2013-12-02 16:57:32    2013-12-02 16:57:32
11042    11416    880    2015-06-10 08:51:03    2015-06-10 08:51:03
11043    13404    569    2015-05-17 23:14:50    2015-05-17 23:14:50
11044    16874    684    2015-05-17 08:27:52    2015-05-17 08:27:52
11045    15300    744    2014-05-04 08:12:27    2014-05-04 08:12:27
11046    19332    628    2013-05-12 16:40:19    2013-05-12 16:40:19
11047    15166    929    2014-05-11 13:43:30    2014-05-11 13:43:30
11048    12107    621    2014-10-10 06:27:42    2014-10-10 06:27:42
11049    16848    691    2016-01-02 08:38:08    2016-01-02 08:38:08
11050    12429    725    2015-02-22 16:03:27    2015-02-22 16:03:27
11051    19861    854    2015-12-13 21:35:35    2015-12-13 21:35:35
11052    12696    930    2015-11-07 12:38:21    2015-11-07 12:38:21
11053    18457    476    2015-08-07 09:36:16    2015-08-07 09:36:16
11054    19045    592    2016-03-03 02:25:05    2016-03-03 02:25:05
11055    10073    556    2013-09-02 02:42:00    2013-09-02 02:42:00
11056    12831    548    2015-05-15 00:23:02    2015-05-15 00:23:02
11057    12432    850    2013-12-28 20:59:44    2013-12-28 20:59:44
11058    16015    803    2014-01-05 12:41:36    2014-01-05 12:41:36
11059    16114    693    2015-08-17 07:12:26    2015-08-17 07:12:26
11060    10844    524    2016-01-01 11:28:12    2016-01-01 11:28:12
11061    12352    888    2014-04-23 17:11:19    2014-04-23 17:11:19
11062    14075    498    2014-07-16 05:31:25    2014-07-16 05:31:25
11063    10097    695    2014-06-18 07:45:55    2014-06-18 07:45:55
11064    12193    662    2014-02-23 06:41:48    2014-02-23 06:41:48
11065    17268    527    2013-09-11 06:49:55    2013-09-11 06:49:55
11066    13531    746    2014-12-12 08:56:40    2014-12-12 08:56:40
11067    13776    878    2015-07-15 12:32:30    2015-07-15 12:32:30
11068    14147    661    2014-01-25 20:38:04    2014-01-25 20:38:04
11069    10953    665    2013-09-07 03:27:56    2013-09-07 03:27:56
11070    13182    939    2015-06-26 23:04:20    2015-06-26 23:04:20
11071    12366    631    2014-09-12 21:59:05    2014-09-12 21:59:05
11072    12243    815    2015-08-28 04:41:13    2015-08-28 04:41:13
11073    17410    662    2014-06-08 07:15:21    2014-06-08 07:15:21
11074    19877    700    2014-12-17 16:23:13    2014-12-17 16:23:13
11075    10033    633    2013-11-21 01:55:22    2013-11-21 01:55:22
11076    10734    865    2013-08-27 19:26:23    2013-08-27 19:26:23
11077    14633    782    2014-02-24 06:20:17    2014-02-24 06:20:17
11078    17842    704    2015-09-21 10:37:48    2015-09-21 10:37:48
11079    11350    773    2015-05-19 12:22:42    2015-05-19 12:22:42
11080    16342    604    2014-12-25 08:52:15    2014-12-25 08:52:15
11081    19895    880    2015-05-07 19:22:13    2015-05-07 19:22:13
11082    17002    643    2016-04-07 21:46:38    2016-04-07 21:46:38
11083    12375    877    2013-06-12 01:39:04    2013-06-12 01:39:04
11084    13248    780    2014-02-03 06:26:37    2014-02-03 06:26:37
11085    17846    670    2013-08-04 10:33:12    2013-08-04 10:33:12
11086    19275    473    2013-09-25 21:36:15    2013-09-25 21:36:15
11087    10638    743    2014-12-10 08:43:30    2014-12-10 08:43:30
11088    17229    512    2016-02-23 21:41:01    2016-02-23 21:41:01
11089    19529    730    2015-11-03 09:31:53    2015-11-03 09:31:53
11090    19616    597    2014-08-10 06:16:30    2014-08-10 06:16:30
11091    10452    484    2013-07-01 17:45:02    2013-07-01 17:45:02
11092    11430    721    2015-09-18 03:13:12    2015-09-18 03:13:12
11093    14792    642    2016-04-18 11:19:29    2016-04-18 11:19:29
11094    17942    636    2013-07-17 17:47:31    2013-07-17 17:47:31
11095    10263    888    2014-04-14 11:23:48    2014-04-14 11:23:48
11096    15840    946    2014-07-17 04:19:37    2014-07-17 04:19:37
11097    14610    800    2015-07-24 17:07:17    2015-07-24 17:07:17
11098    11333    884    2015-12-16 01:37:36    2015-12-16 01:37:36
11099    17255    680    2015-06-02 07:17:43    2015-06-02 07:17:43
11100    17421    550    2015-11-13 15:00:08    2015-11-13 15:00:08
11101    17228    498    2015-08-30 23:10:33    2015-08-30 23:10:33
11102    15841    644    2013-11-28 10:50:53    2013-11-28 10:50:53
11103    13862    765    2014-10-30 10:41:43    2014-10-30 10:41:43
11104    19775    932    2014-08-04 21:06:15    2014-08-04 21:06:15
11105    18955    564    2015-05-30 02:41:03    2015-05-30 02:41:03
11106    17024    566    2014-11-08 04:29:08    2014-11-08 04:29:08
11107    11656    581    2014-09-22 08:55:44    2014-09-22 08:55:44
11108    11983    791    2015-09-14 23:22:38    2015-09-14 23:22:38
11109    11089    595    2013-06-05 11:36:15    2013-06-05 11:36:15
11110    16209    495    2014-05-10 01:49:13    2014-05-10 01:49:13
11111    17221    628    2014-12-07 05:42:34    2014-12-07 05:42:34
11112    19905    685    2015-08-16 02:03:52    2015-08-16 02:03:52
11113    16178    880    2013-07-04 09:17:52    2013-07-04 09:17:52
11114    18000    578    2014-04-24 08:11:37    2014-04-24 08:11:37
11115    19607    940    2014-05-13 15:23:38    2014-05-13 15:23:38
11116    18529    741    2015-03-04 08:41:28    2015-03-04 08:41:28
11117    16261    554    2014-06-10 12:54:42    2014-06-10 12:54:42
11118    10084    862    2015-07-03 23:10:52    2015-07-03 23:10:52
11119    10832    906    2015-10-01 10:31:20    2015-10-01 10:31:20
11120    11273    514    2015-07-13 10:57:41    2015-07-13 10:57:41
11121    16421    756    2014-03-07 22:56:56    2014-03-07 22:56:56
11122    19862    766    2013-05-23 16:07:19    2013-05-23 16:07:19
11123    11214    608    2015-06-05 23:07:07    2015-06-05 23:07:07
11124    14174    814    2013-05-01 23:42:34    2013-05-01 23:42:34
11125    12322    467    2014-05-12 11:40:59    2014-05-12 11:40:59
11126    16836    822    2013-10-08 12:09:39    2013-10-08 12:09:39
11127    13606    716    2013-09-23 08:28:30    2013-09-23 08:28:30
11128    15649    743    2013-05-17 17:22:26    2013-05-17 17:22:26
11129    13196    748    2015-08-18 07:57:53    2015-08-18 07:57:53
11130    10729    824    2016-03-01 22:40:41    2016-03-01 22:40:41
11131    18176    903    2014-04-02 13:38:34    2014-04-02 13:38:34
11132    11134    761    2015-05-01 16:06:37    2015-05-01 16:06:37
11133    16719    665    2015-10-28 11:03:22    2015-10-28 11:03:22
11134    16537    594    2016-03-11 07:15:14    2016-03-11 07:15:14
11135    10511    661    2015-06-07 15:35:50    2015-06-07 15:35:50
11136    16838    564    2015-04-26 23:52:42    2015-04-26 23:52:42
11137    14081    838    2015-04-28 17:14:27    2015-04-28 17:14:27
11138    16697    494    2014-04-24 02:55:30    2014-04-24 02:55:30
11139    17599    744    2013-05-05 09:45:15    2013-05-05 09:45:15
11140    17415    888    2015-08-20 05:56:32    2015-08-20 05:56:32
11141    19854    627    2015-10-27 05:36:13    2015-10-27 05:36:13
11142    10889    534    2013-06-20 22:32:59    2013-06-20 22:32:59
11143    17360    746    2014-11-10 11:18:17    2014-11-10 11:18:17
11144    10139    532    2013-12-03 00:01:56    2013-12-03 00:01:56
11145    11519    733    2014-07-24 01:07:43    2014-07-24 01:07:43
11146    11971    674    2015-01-30 11:30:03    2015-01-30 11:30:03
11147    12285    894    2016-01-05 16:31:02    2016-01-05 16:31:02
11148    16306    703    2015-11-18 10:47:10    2015-11-18 10:47:10
11149    14496    645    2013-06-02 06:31:23    2013-06-02 06:31:23
11150    11459    831    2016-02-12 19:45:15    2016-02-12 19:45:15
11151    19545    855    2014-06-24 22:44:31    2014-06-24 22:44:31
11152    16787    659    2013-11-21 12:37:01    2013-11-21 12:37:01
11153    12877    666    2014-10-25 04:52:33    2014-10-25 04:52:33
11154    17030    852    2014-09-12 04:31:38    2014-09-12 04:31:38
11155    11084    852    2014-10-12 15:05:29    2014-10-12 15:05:29
11156    14999    471    2014-11-09 06:03:37    2014-11-09 06:03:37
11157    13056    510    2013-08-12 03:10:36    2013-08-12 03:10:36
11158    14387    473    2013-06-12 01:46:13    2013-06-12 01:46:13
11159    17812    585    2015-11-24 17:15:59    2015-11-24 17:15:59
11160    11516    875    2013-08-15 07:48:12    2013-08-15 07:48:12
11161    17396    779    2015-01-27 04:17:57    2015-01-27 04:17:57
11162    15161    709    2014-06-09 01:03:02    2014-06-09 01:03:02
11163    16079    583    2014-10-31 22:27:17    2014-10-31 22:27:17
11164    10524    909    2015-02-17 06:33:43    2015-02-17 06:33:43
11165    16580    598    2015-02-08 21:59:34    2015-02-08 21:59:34
11166    14995    937    2013-07-10 18:05:40    2013-07-10 18:05:40
11167    12652    491    2014-09-14 14:29:42    2014-09-14 14:29:42
11168    11510    594    2016-02-01 20:01:06    2016-02-01 20:01:06
11169    14765    919    2014-08-28 04:15:50    2014-08-28 04:15:50
11170    14344    877    2013-10-22 17:27:52    2013-10-22 17:27:52
11171    18280    928    2015-08-05 12:41:03    2015-08-05 12:41:03
11172    20000    665    2013-08-01 11:23:21    2013-08-01 11:23:21
11173    16663    806    2014-06-02 20:53:30    2014-06-02 20:53:30
11174    10811    845    2014-04-05 11:25:47    2014-04-05 11:25:47
11175    12124    554    2015-12-10 23:22:26    2015-12-10 23:22:26
11176    17074    676    2015-10-17 19:17:16    2015-10-17 19:17:16
11177    14402    866    2013-04-25 00:58:50    2013-04-25 00:58:50
11178    11893    820    2014-09-11 02:27:44    2014-09-11 02:27:44
11179    17384    594    2015-11-04 23:04:50    2015-11-04 23:04:50
11180    18271    815    2013-09-16 12:38:23    2013-09-16 12:38:23
11181    16759    804    2015-04-22 00:51:44    2015-04-22 00:51:44
11182    15571    727    2013-10-26 00:58:32    2013-10-26 00:58:32
11183    13166    521    2015-02-05 17:04:17    2015-02-05 17:04:17
11184    10771    922    2016-01-31 11:32:14    2016-01-31 11:32:14
11185    19112    953    2013-05-27 20:53:00    2013-05-27 20:53:00
11186    14310    467    2015-12-15 21:56:52    2015-12-15 21:56:52
11187    19248    568    2015-09-29 15:09:30    2015-09-29 15:09:30
11188    11132    613    2015-01-01 01:30:16    2015-01-01 01:30:16
11189    10362    880    2016-02-04 02:47:41    2016-02-04 02:47:41
11190    18271    618    2014-10-31 11:00:04    2014-10-31 11:00:04
11191    17277    668    2014-07-13 08:44:30    2014-07-13 08:44:30
11192    17857    702    2015-12-20 17:57:13    2015-12-20 17:57:13
11193    17430    735    2015-09-04 20:58:46    2015-09-04 20:58:46
11194    12829    650    2015-08-31 08:46:23    2015-08-31 08:46:23
11195    15227    650    2016-02-03 16:51:21    2016-02-03 16:51:21
11196    11230    527    2015-09-15 15:58:41    2015-09-15 15:58:41
11197    19252    756    2014-08-31 09:30:25    2014-08-31 09:30:25
11198    10352    612    2013-12-28 10:14:50    2013-12-28 10:14:50
11199    17376    885    2013-05-27 06:04:36    2013-05-27 06:04:36
11200    11317    832    2014-07-25 13:27:00    2014-07-25 13:27:00
11201    14514    755    2014-01-10 21:09:47    2014-01-10 21:09:47
11202    11181    950    2015-02-06 22:57:59    2015-02-06 22:57:59
11203    15641    723    2014-07-26 00:23:23    2014-07-26 00:23:23
11204    19074    925    2014-07-25 05:56:01    2014-07-25 05:56:01
11205    12518    650    2015-08-13 18:16:44    2015-08-13 18:16:44
11206    13019    652    2014-09-16 04:59:10    2014-09-16 04:59:10
11207    17864    958    2014-10-30 12:40:11    2014-10-30 12:40:11
11208    14632    520    2014-11-02 03:44:24    2014-11-02 03:44:24
11209    12914    603    2015-08-18 22:21:36    2015-08-18 22:21:36
11210    11260    611    2015-07-27 18:18:12    2015-07-27 18:18:12
11211    18843    694    2015-06-28 13:16:37    2015-06-28 13:16:37
11212    14323    646    2015-12-31 16:13:33    2015-12-31 16:13:33
11213    17770    833    2014-10-25 09:34:26    2014-10-25 09:34:26
11214    18264    726    2015-02-25 12:51:40    2015-02-25 12:51:40
11215    14192    880    2013-05-18 14:37:55    2013-05-18 14:37:55
11216    13720    479    2014-08-08 19:42:16    2014-08-08 19:42:16
11217    18922    610    2014-01-29 03:18:56    2014-01-29 03:18:56
11218    11264    476    2015-08-28 00:57:39    2015-08-28 00:57:39
11219    18076    905    2015-01-10 09:16:43    2015-01-10 09:16:43
11220    18149    601    2015-04-03 12:22:05    2015-04-03 12:22:05
11221    12573    663    2015-04-18 23:36:07    2015-04-18 23:36:07
11222    16055    727    2014-03-02 09:52:44    2014-03-02 09:52:44
11223    15929    477    2013-06-07 02:08:18    2013-06-07 02:08:18
11224    13486    761    2016-02-10 19:41:31    2016-02-10 19:41:31
11225    18683    935    2015-08-10 16:56:13    2015-08-10 16:56:13
11226    18946    730    2014-11-10 22:28:12    2014-11-10 22:28:12
11227    14720    466    2014-05-13 17:38:57    2014-05-13 17:38:57
11228    15828    783    2016-04-05 11:25:18    2016-04-05 11:25:18
11229    11974    597    2015-12-16 22:05:04    2015-12-16 22:05:04
11230    15618    819    2015-07-19 09:39:05    2015-07-19 09:39:05
11231    16767    852    2015-06-14 00:08:44    2015-06-14 00:08:44
11232    14863    488    2014-01-15 06:41:42    2014-01-15 06:41:42
11233    17482    858    2014-06-03 01:16:31    2014-06-03 01:16:31
11234    13359    473    2014-11-06 01:02:00    2014-11-06 01:02:00
11235    12444    520    2014-09-05 00:47:12    2014-09-05 00:47:12
11236    18975    627    2014-11-20 04:38:42    2014-11-20 04:38:42
11237    19475    881    2014-05-19 03:33:34    2014-05-19 03:33:34
11238    13309    573    2014-06-30 09:21:29    2014-06-30 09:21:29
11239    11300    671    2014-01-22 20:36:20    2014-01-22 20:36:20
11240    15992    916    2015-08-10 06:40:18    2015-08-10 06:40:18
11241    16719    497    2015-10-21 10:09:24    2015-10-21 10:09:24
11242    15965    560    2016-03-04 23:12:44    2016-03-04 23:12:44
11243    12697    672    2014-01-18 06:35:40    2014-01-18 06:35:40
11244    18961    777    2015-07-13 10:17:38    2015-07-13 10:17:38
11245    11903    716    2014-03-03 03:45:29    2014-03-03 03:45:29
11246    19025    622    2013-09-14 21:45:23    2013-09-14 21:45:23
11247    11005    674    2014-11-29 11:33:15    2014-11-29 11:33:15
11248    18265    882    2015-03-29 11:19:43    2015-03-29 11:19:43
11249    12912    465    2015-08-10 19:06:38    2015-08-10 19:06:38
11250    18502    786    2013-04-24 07:27:30    2013-04-24 07:27:30
11251    19589    880    2014-04-26 18:35:36    2014-04-26 18:35:36
11252    18020    808    2015-05-11 02:23:50    2015-05-11 02:23:50
11253    19019    800    2014-06-17 09:39:17    2014-06-17 09:39:17
11254    13181    926    2014-02-28 10:11:47    2014-02-28 10:11:47
11255    11612    831    2014-11-30 08:04:46    2014-11-30 08:04:46
11256    19450    697    2014-02-19 12:13:36    2014-02-19 12:13:36
11257    13870    877    2015-01-29 03:24:17    2015-01-29 03:24:17
11258    13882    830    2015-09-06 18:01:49    2015-09-06 18:01:49
11259    10013    734    2014-02-05 22:05:26    2014-02-05 22:05:26
11260    18435    722    2014-02-03 22:26:51    2014-02-03 22:26:51
11261    16138    882    2016-03-27 01:36:12    2016-03-27 01:36:12
11262    12607    596    2014-12-03 16:58:49    2014-12-03 16:58:49
11263    12992    476    2015-11-07 12:32:42    2015-11-07 12:32:42
11264    10079    782    2015-04-22 17:01:40    2015-04-22 17:01:40
11265    17354    649    2016-02-28 08:30:15    2016-02-28 08:30:15
11266    16883    635    2013-12-06 16:53:16    2013-12-06 16:53:16
11267    14931    474    2014-12-31 21:55:47    2014-12-31 21:55:47
11268    13236    748    2014-11-06 12:41:12    2014-11-06 12:41:12
11269    18698    708    2014-02-09 03:04:17    2014-02-09 03:04:17
11270    18084    748    2015-11-24 10:59:43    2015-11-24 10:59:43
11271    13387    636    2015-03-10 22:04:57    2015-03-10 22:04:57
11272    10909    792    2014-10-04 09:08:01    2014-10-04 09:08:01
11273    14042    763    2016-03-19 23:23:33    2016-03-19 23:23:33
11274    16408    480    2015-06-12 00:02:32    2015-06-12 00:02:32
11275    15145    663    2015-05-01 19:06:54    2015-05-01 19:06:54
11276    12600    721    2013-08-28 00:01:48    2013-08-28 00:01:48
11277    13279    470    2013-11-08 16:54:00    2013-11-08 16:54:00
11278    19822    921    2016-01-03 08:01:44    2016-01-03 08:01:44
11279    19780    810    2014-04-08 01:01:02    2014-04-08 01:01:02
11280    14203    886    2013-06-13 11:49:13    2013-06-13 11:49:13
11281    19070    594    2013-10-24 16:07:36    2013-10-24 16:07:36
11282    17692    766    2015-10-24 03:24:32    2015-10-24 03:24:32
11283    13402    536    2013-06-12 05:04:40    2013-06-12 05:04:40
11284    12918    759    2015-06-27 12:31:22    2015-06-27 12:31:22
11285    18125    639    2014-03-22 10:12:57    2014-03-22 10:12:57
11286    18854    604    2013-07-21 18:26:41    2013-07-21 18:26:41
11287    17029    781    2013-12-07 04:14:49    2013-12-07 04:14:49
11288    11176    562    2013-04-27 02:46:21    2013-04-27 02:46:21
11289    10850    931    2016-03-20 09:27:16    2016-03-20 09:27:16
11290    15649    943    2015-02-23 00:05:59    2015-02-23 00:05:59
11291    10064    631    2014-11-27 19:01:50    2014-11-27 19:01:50
11292    18464    839    2016-03-04 03:20:06    2016-03-04 03:20:06
11293    10670    684    2013-10-15 00:41:35    2013-10-15 00:41:35
11294    14769    904    2014-07-26 13:07:01    2014-07-26 13:07:01
11295    17334    756    2015-11-08 23:58:07    2015-11-08 23:58:07
11296    12737    675    2015-02-18 05:52:52    2015-02-18 05:52:52
11297    13449    497    2015-07-22 09:51:07    2015-07-22 09:51:07
11298    15471    914    2015-12-09 13:17:33    2015-12-09 13:17:33
11299    17607    905    2014-02-20 17:22:36    2014-02-20 17:22:36
11300    13766    769    2013-04-27 13:21:36    2013-04-27 13:21:36
11301    17344    747    2014-06-24 15:52:58    2014-06-24 15:52:58
11302    18105    849    2015-04-14 05:36:53    2015-04-14 05:36:53
11303    10624    659    2016-03-29 08:44:23    2016-03-29 08:44:23
11304    14246    597    2015-10-07 05:41:00    2015-10-07 05:41:00
11305    13790    564    2014-10-05 08:59:57    2014-10-05 08:59:57
11306    15788    464    2013-12-21 05:21:03    2013-12-21 05:21:03
11307    14915    525    2015-06-03 12:45:22    2015-06-03 12:45:22
11308    19789    471    2013-11-19 12:51:13    2013-11-19 12:51:13
11309    18508    560    2015-02-24 01:04:40    2015-02-24 01:04:40
11310    15728    761    2015-03-01 08:46:34    2015-03-01 08:46:34
11311    14522    873    2015-08-31 14:29:03    2015-08-31 14:29:03
11312    15850    917    2013-11-27 04:41:45    2013-11-27 04:41:45
11313    14872    689    2015-05-01 21:35:03    2015-05-01 21:35:03
11314    16835    848    2016-04-02 15:05:21    2016-04-02 15:05:21
11315    12679    573    2014-04-18 10:33:39    2014-04-18 10:33:39
11316    11868    832    2015-01-05 19:32:33    2015-01-05 19:32:33
11317    14662    643    2014-02-20 12:44:40    2014-02-20 12:44:40
11318    18398    824    2014-09-14 10:19:44    2014-09-14 10:19:44
11319    19347    803    2014-10-26 23:53:55    2014-10-26 23:53:55
11320    17406    893    2014-05-09 23:30:39    2014-05-09 23:30:39
11321    18603    867    2015-01-12 15:58:43    2015-01-12 15:58:43
11322    13006    957    2015-04-22 09:08:18    2015-04-22 09:08:18
11323    10280    513    2014-10-12 21:21:25    2014-10-12 21:21:25
11324    16141    578    2015-07-15 13:57:34    2015-07-15 13:57:34
11325    16287    539    2014-02-15 17:42:50    2014-02-15 17:42:50
11326    15288    585    2015-08-16 15:12:32    2015-08-16 15:12:32
11327    12799    888    2016-01-31 14:44:15    2016-01-31 14:44:15
11328    12926    619    2014-11-28 02:21:45    2014-11-28 02:21:45
11329    10066    794    2014-06-26 02:47:02    2014-06-26 02:47:02
11330    14856    876    2016-03-09 09:13:05    2016-03-09 09:13:05
11331    12106    900    2014-01-12 21:29:33    2014-01-12 21:29:33
11332    15646    943    2015-07-18 07:52:08    2015-07-18 07:52:08
11333    11423    837    2014-06-10 05:06:11    2014-06-10 05:06:11
11334    10592    823    2015-05-07 03:14:13    2015-05-07 03:14:13
11335    14526    515    2015-10-03 00:33:12    2015-10-03 00:33:12
11336    14108    899    2016-02-27 05:20:18    2016-02-27 05:20:18
11337    19510    759    2016-02-24 04:49:59    2016-02-24 04:49:59
11338    15920    587    2015-09-24 13:19:56    2015-09-24 13:19:56
11339    18183    484    2016-03-01 18:24:48    2016-03-01 18:24:48
11340    14023    624    2014-09-17 09:54:09    2014-09-17 09:54:09
11341    16601    619    2015-05-06 08:08:35    2015-05-06 08:08:35
11342    15699    617    2016-04-14 19:15:18    2016-04-14 19:15:18
11343    17543    941    2014-02-21 05:49:56    2014-02-21 05:49:56
11344    18949    841    2015-01-05 03:47:21    2015-01-05 03:47:21
11345    19463    848    2014-09-04 09:33:15    2014-09-04 09:33:15
11346    12471    675    2013-06-02 02:12:31    2013-06-02 02:12:31
11347    12194    949    2014-12-23 15:01:48    2014-12-23 15:01:48
11348    10909    892    2014-12-27 16:14:44    2014-12-27 16:14:44
11349    12794    790    2013-11-29 15:43:50    2013-11-29 15:43:50
11350    18286    568    2013-12-01 00:50:22    2013-12-01 00:50:22
11351    11140    597    2014-10-22 18:39:17    2014-10-22 18:39:17
11352    19234    821    2014-06-25 17:17:03    2014-06-25 17:17:03
11353    15072    595    2014-01-05 23:13:10    2014-01-05 23:13:10
11354    11696    598    2014-06-24 18:29:04    2014-06-24 18:29:04
11355    15673    697    2015-08-08 08:49:52    2015-08-08 08:49:52
11356    10430    551    2014-01-02 20:16:56    2014-01-02 20:16:56
11357    13163    638    2015-05-16 08:35:18    2015-05-16 08:35:18
11358    12033    899    2015-08-01 21:19:24    2015-08-01 21:19:24
11359    17081    547    2014-06-27 09:18:03    2014-06-27 09:18:03
11360    12726    624    2013-07-03 06:08:24    2013-07-03 06:08:24
11361    19340    616    2013-08-20 00:44:18    2013-08-20 00:44:18
11362    14992    756    2015-01-28 19:34:19    2015-01-28 19:34:19
11363    14858    946    2015-05-28 06:25:56    2015-05-28 06:25:56
11364    10876    765    2015-12-08 05:03:27    2015-12-08 05:03:27
11365    16283    897    2016-04-04 17:49:32    2016-04-04 17:49:32
11366    14727    603    2013-10-06 00:08:09    2013-10-06 00:08:09
11367    14833    482    2015-06-12 04:09:51    2015-06-12 04:09:51
11368    14623    944    2014-12-22 17:38:04    2014-12-22 17:38:04
11369    15643    683    2013-09-05 07:17:49    2013-09-05 07:17:49
11370    13580    698    2013-10-17 13:08:32    2013-10-17 13:08:32
11371    19092    890    2015-06-06 10:18:43    2015-06-06 10:18:43
11372    16375    510    2014-11-25 21:32:04    2014-11-25 21:32:04
11373    14214    750    2015-12-28 11:53:41    2015-12-28 11:53:41
11374    10376    863    2013-04-24 19:43:10    2013-04-24 19:43:10
11375    10967    496    2013-04-30 07:18:51    2013-04-30 07:18:51
11376    18173    738    2015-11-28 13:37:05    2015-11-28 13:37:05
11377    14133    587    2014-01-04 14:28:50    2014-01-04 14:28:50
11378    11869    538    2015-11-18 08:32:02    2015-11-18 08:32:02
11379    17495    728    2015-02-18 09:40:48    2015-02-18 09:40:48
11380    13069    836    2015-07-16 14:45:23    2015-07-16 14:45:23
11381    11718    576    2015-07-21 03:20:54    2015-07-21 03:20:54
11382    13524    864    2014-01-21 17:15:43    2014-01-21 17:15:43
11383    16224    924    2015-03-19 14:53:23    2015-03-19 14:53:23
11384    16929    904    2013-10-18 02:00:12    2013-10-18 02:00:12
11385    16964    533    2015-10-14 16:42:34    2015-10-14 16:42:34
11386    10232    927    2013-05-14 15:37:40    2013-05-14 15:37:40
11387    15057    509    2015-07-25 06:49:37    2015-07-25 06:49:37
11388    17925    511    2016-03-03 18:30:34    2016-03-03 18:30:34
11389    14520    836    2014-03-07 02:54:13    2014-03-07 02:54:13
11390    11922    639    2013-12-27 23:17:55    2013-12-27 23:17:55
11391    17501    487    2014-08-16 15:00:57    2014-08-16 15:00:57
11392    17261    940    2015-03-25 23:20:50    2015-03-25 23:20:50
11393    16253    498    2016-01-29 17:06:57    2016-01-29 17:06:57
11394    10442    474    2014-12-17 00:59:02    2014-12-17 00:59:02
11395    11491    956    2013-05-16 13:06:10    2013-05-16 13:06:10
11396    17759    686    2013-12-01 23:40:29    2013-12-01 23:40:29
11397    18155    748    2015-06-04 03:01:59    2015-06-04 03:01:59
11398    17055    555    2013-05-06 02:04:17    2013-05-06 02:04:17
11399    13174    855    2014-02-25 04:02:05    2014-02-25 04:02:05
11400    12199    463    2013-12-31 20:01:56    2013-12-31 20:01:56
11401    12978    565    2016-03-24 15:41:56    2016-03-24 15:41:56
11402    17735    792    2013-09-24 23:57:04    2013-09-24 23:57:04
11403    19073    869    2013-11-16 10:03:13    2013-11-16 10:03:13
11404    14575    576    2013-09-28 03:01:50    2013-09-28 03:01:50
11405    14406    935    2015-08-05 05:03:15    2015-08-05 05:03:15
11406    15996    824    2014-10-05 04:43:25    2014-10-05 04:43:25
11407    11855    597    2015-05-25 18:23:59    2015-05-25 18:23:59
11408    15776    476    2014-04-11 23:15:05    2014-04-11 23:15:05
11409    16346    737    2013-09-11 11:39:11    2013-09-11 11:39:11
11410    10312    957    2014-11-18 13:01:14    2014-11-18 13:01:14
11411    16070    714    2013-04-22 15:23:12    2013-04-22 15:23:12
11412    10454    465    2015-10-06 08:06:14    2015-10-06 08:06:14
11413    14426    543    2015-03-16 02:12:24    2015-03-16 02:12:24
11414    14553    547    2013-07-07 09:18:48    2013-07-07 09:18:48
11415    19550    590    2015-03-10 02:09:58    2015-03-10 02:09:58
11416    16240    651    2014-02-16 21:17:21    2014-02-16 21:17:21
11417    10777    841    2015-03-14 21:08:15    2015-03-14 21:08:15
11418    11851    468    2013-06-28 13:18:30    2013-06-28 13:18:30
11419    11090    577    2014-09-20 23:03:44    2014-09-20 23:03:44
11420    13025    937    2016-01-26 10:07:13    2016-01-26 10:07:13
11421    12558    704    2015-09-03 13:18:06    2015-09-03 13:18:06
11422    12460    854    2016-01-12 03:20:44    2016-01-12 03:20:44
11423    14475    869    2015-07-29 10:43:29    2015-07-29 10:43:29
11424    15083    808    2014-01-01 05:00:05    2014-01-01 05:00:05
11425    14556    479    2013-11-17 05:08:40    2013-11-17 05:08:40
11426    12509    550    2015-10-08 06:16:57    2015-10-08 06:16:57
11427    12566    537    2015-01-04 14:07:20    2015-01-04 14:07:20
11428    17314    553    2015-02-26 19:54:35    2015-02-26 19:54:35
11429    16248    934    2014-12-11 18:45:14    2014-12-11 18:45:14
11430    14198    558    2013-12-15 05:39:16    2013-12-15 05:39:16
11431    18378    535    2013-12-17 11:27:01    2013-12-17 11:27:01
11432    11612    681    2014-07-28 14:43:55    2014-07-28 14:43:55
11433    18309    591    2014-08-02 02:21:30    2014-08-02 02:21:30
11434    18205    752    2015-10-13 15:20:01    2015-10-13 15:20:01
11435    15176    576    2014-06-06 22:28:15    2014-06-06 22:28:15
11436    13945    643    2014-11-16 01:08:15    2014-11-16 01:08:15
11437    11761    533    2014-10-17 20:30:50    2014-10-17 20:30:50
11438    18832    860    2013-04-29 11:01:49    2013-04-29 11:01:49
11439    15418    926    2015-07-06 07:48:54    2015-07-06 07:48:54
11440    19190    730    2015-12-22 18:03:26    2015-12-22 18:03:26
11441    14346    959    2016-01-18 13:24:29    2016-01-18 13:24:29
11442    14261    477    2015-05-26 00:37:54    2015-05-26 00:37:54
11443    19566    534    2014-03-09 15:52:02    2014-03-09 15:52:02
11444    14250    509    2014-10-15 21:03:19    2014-10-15 21:03:19
11445    15921    873    2014-06-14 09:24:58    2014-06-14 09:24:58
11446    19121    794    2014-10-09 04:06:11    2014-10-09 04:06:11
11447    10960    624    2014-07-19 23:20:42    2014-07-19 23:20:42
11448    18749    817    2014-08-27 16:02:54    2014-08-27 16:02:54
11449    15153    764    2016-02-27 20:59:32    2016-02-27 20:59:32
11450    17108    558    2015-02-15 23:47:01    2015-02-15 23:47:01
11451    11075    890    2014-10-10 17:11:49    2014-10-10 17:11:49
11452    13794    668    2016-04-14 18:17:23    2016-04-14 18:17:23
11453    19799    910    2014-08-12 04:34:49    2014-08-12 04:34:49
11454    11484    525    2014-07-10 21:46:11    2014-07-10 21:46:11
11455    18480    881    2013-05-30 03:24:07    2013-05-30 03:24:07
11456    14721    489    2014-04-06 02:48:59    2014-04-06 02:48:59
11457    19992    606    2014-06-30 18:24:38    2014-06-30 18:24:38
11458    16859    475    2013-09-09 04:35:52    2013-09-09 04:35:52
11459    19875    471    2013-05-11 05:09:15    2013-05-11 05:09:15
11460    10903    566    2015-09-25 10:35:42    2015-09-25 10:35:42
11461    19124    750    2015-10-27 23:04:00    2015-10-27 23:04:00
11462    17598    850    2014-07-25 06:58:20    2014-07-25 06:58:20
11463    16200    711    2016-04-11 07:10:08    2016-04-11 07:10:08
11464    10119    624    2013-04-27 01:41:17    2013-04-27 01:41:17
11465    13731    581    2015-09-17 10:23:23    2015-09-17 10:23:23
11466    15697    553    2015-02-03 11:13:28    2015-02-03 11:13:28
11467    12403    724    2015-12-30 16:11:20    2015-12-30 16:11:20
11468    13577    510    2014-06-04 12:11:47    2014-06-04 12:11:47
11469    12211    471    2014-01-10 13:52:34    2014-01-10 13:52:34
11470    13477    599    2015-10-25 15:09:14    2015-10-25 15:09:14
11471    16350    894    2015-10-05 07:18:13    2015-10-05 07:18:13
11472    10527    594    2014-05-10 05:22:54    2014-05-10 05:22:54
11473    14616    907    2014-03-25 13:18:00    2014-03-25 13:18:00
11474    14029    886    2015-10-07 10:20:26    2015-10-07 10:20:26
11475    10072    559    2014-11-30 01:50:32    2014-11-30 01:50:32
11476    13612    785    2015-10-01 02:20:43    2015-10-01 02:20:43
11477    14464    632    2015-07-25 00:45:47    2015-07-25 00:45:47
11478    19339    814    2014-07-22 18:03:35    2014-07-22 18:03:35
11479    19070    622    2016-02-19 13:53:11    2016-02-19 13:53:11
11480    18420    665    2015-11-26 18:34:20    2015-11-26 18:34:20
11481    16846    561    2015-09-28 06:03:13    2015-09-28 06:03:13
11482    17041    730    2014-08-12 22:44:57    2014-08-12 22:44:57
11483    16636    873    2014-12-20 08:08:06    2014-12-20 08:08:06
11484    10830    811    2013-06-16 08:33:50    2013-06-16 08:33:50
11485    10973    473    2016-03-24 02:26:44    2016-03-24 02:26:44
11486    17050    947    2015-03-16 12:59:50    2015-03-16 12:59:50
11487    19157    718    2013-09-24 23:32:28    2013-09-24 23:32:28
11488    12681    613    2014-06-29 09:57:52    2014-06-29 09:57:52
11489    10895    879    2014-01-31 20:43:53    2014-01-31 20:43:53
11490    19215    479    2014-11-14 15:54:53    2014-11-14 15:54:53
11491    11032    681    2015-08-16 09:07:56    2015-08-16 09:07:56
11492    17843    524    2016-02-29 22:12:53    2016-02-29 22:12:53
11493    18427    484    2015-02-07 14:11:38    2015-02-07 14:11:38
11494    15277    617    2013-12-17 04:18:35    2013-12-17 04:18:35
11495    13402    596    2016-02-11 03:05:52    2016-02-11 03:05:52
11496    18482    933    2014-08-19 23:23:10    2014-08-19 23:23:10
11497    10325    577    2016-01-16 20:47:21    2016-01-16 20:47:21
11498    14734    812    2014-06-23 20:07:46    2014-06-23 20:07:46
11499    14652    854    2014-11-22 15:37:19    2014-11-22 15:37:19
11500    13003    737    2014-02-11 09:06:51    2014-02-11 09:06:51
11501    10068    717    2014-04-08 11:45:41    2014-04-08 11:45:41
11502    10423    572    2014-01-14 15:14:18    2014-01-14 15:14:18
11503    15803    492    2014-04-26 23:02:04    2014-04-26 23:02:04
11504    11290    815    2014-04-19 12:05:00    2014-04-19 12:05:00
11505    10796    659    2016-03-21 03:20:01    2016-03-21 03:20:01
11506    13675    737    2013-10-08 07:31:59    2013-10-08 07:31:59
11507    11536    707    2014-03-18 07:58:00    2014-03-18 07:58:00
11508    12699    722    2014-05-08 19:04:33    2014-05-08 19:04:33
11509    15971    908    2016-02-18 22:04:40    2016-02-18 22:04:40
11510    19731    853    2015-12-28 18:20:29    2015-12-28 18:20:29
11511    12305    463    2015-10-21 22:35:26    2015-10-21 22:35:26
11512    10256    678    2015-05-24 17:13:19    2015-05-24 17:13:19
11513    18231    546    2015-06-18 21:11:23    2015-06-18 21:11:23
11514    13344    599    2015-09-13 03:35:10    2015-09-13 03:35:10
11515    10630    640    2014-04-05 01:19:25    2014-04-05 01:19:25
11516    10827    592    2013-05-14 03:46:49    2013-05-14 03:46:49
11517    18241    643    2013-08-18 05:05:29    2013-08-18 05:05:29
11518    11888    475    2015-12-24 09:20:02    2015-12-24 09:20:02
11519    12096    690    2015-10-06 07:13:17    2015-10-06 07:13:17
11520    15675    934    2015-06-15 13:50:54    2015-06-15 13:50:54
11521    12538    832    2015-08-11 21:48:18    2015-08-11 21:48:18
11522    18354    652    2015-07-13 15:31:00    2015-07-13 15:31:00
11523    17785    935    2013-04-22 21:28:48    2013-04-22 21:28:48
11524    17906    798    2015-12-20 09:13:20    2015-12-20 09:13:20
11525    19506    638    2013-08-31 04:16:46    2013-08-31 04:16:46
11526    16287    644    2013-12-24 02:01:24    2013-12-24 02:01:24
11527    13013    765    2015-09-07 16:58:00    2015-09-07 16:58:00
11528    18678    542    2015-10-02 06:04:26    2015-10-02 06:04:26
11529    11361    491    2016-01-21 09:29:01    2016-01-21 09:29:01
11530    17404    711    2015-08-18 14:11:16    2015-08-18 14:11:16
11531    16939    766    2015-09-20 07:18:35    2015-09-20 07:18:35
11532    12918    544    2013-09-11 10:13:38    2013-09-11 10:13:38
11533    10290    647    2014-09-12 10:35:59    2014-09-12 10:35:59
11534    19613    821    2014-09-30 06:05:10    2014-09-30 06:05:10
11535    17099    923    2015-10-24 07:19:30    2015-10-24 07:19:30
11536    13225    946    2013-12-03 03:03:52    2013-12-03 03:03:52
11537    19114    785    2015-02-19 04:57:11    2015-02-19 04:57:11
11538    16429    508    2015-01-15 13:27:56    2015-01-15 13:27:56
11539    12007    905    2013-08-05 08:36:43    2013-08-05 08:36:43
11540    14640    548    2013-08-07 01:11:13    2013-08-07 01:11:13
11541    14289    625    2014-08-20 15:01:08    2014-08-20 15:01:08
11542    13944    655    2014-05-21 09:22:57    2014-05-21 09:22:57
11543    17551    882    2016-03-23 11:52:25    2016-03-23 11:52:25
11544    16125    493    2016-01-13 03:21:57    2016-01-13 03:21:57
11545    12851    821    2014-02-13 00:39:06    2014-02-13 00:39:06
11546    12211    794    2014-07-04 07:54:47    2014-07-04 07:54:47
11547    17768    613    2013-10-11 16:05:54    2013-10-11 16:05:54
11548    14104    958    2014-11-20 02:13:24    2014-11-20 02:13:24
11549    12945    635    2015-11-11 01:19:55    2015-11-11 01:19:55
11550    13057    770    2015-11-07 00:37:01    2015-11-07 00:37:01
11551    18744    813    2013-12-04 21:07:14    2013-12-04 21:07:14
11552    19340    795    2014-07-11 09:53:23    2014-07-11 09:53:23
11553    16987    667    2015-02-28 02:25:33    2015-02-28 02:25:33
11554    10408    476    2013-08-20 00:03:23    2013-08-20 00:03:23
11555    18777    640    2015-12-20 12:34:35    2015-12-20 12:34:35
11556    14536    908    2016-01-02 19:06:20    2016-01-02 19:06:20
11557    14787    914    2014-08-12 18:15:48    2014-08-12 18:15:48
11558    17470    582    2015-05-18 16:51:40    2015-05-18 16:51:40
11559    17333    864    2014-03-18 00:52:49    2014-03-18 00:52:49
11560    14744    555    2014-10-20 13:33:34    2014-10-20 13:33:34
11561    18133    499    2014-03-15 12:33:19    2014-03-15 12:33:19
11562    15355    910    2014-05-02 21:38:54    2014-05-02 21:38:54
11563    10526    638    2014-12-23 10:16:27    2014-12-23 10:16:27
11564    16624    892    2013-06-22 00:48:15    2013-06-22 00:48:15
11565    19108    650    2014-05-01 00:09:23    2014-05-01 00:09:23
11566    10128    627    2016-02-15 21:54:53    2016-02-15 21:54:53
11567    15824    508    2014-01-30 04:33:41    2014-01-30 04:33:41
11568    14107    491    2013-06-03 09:45:07    2013-06-03 09:45:07
11569    11816    671    2015-12-04 23:18:39    2015-12-04 23:18:39
11570    12033    599    2014-06-26 10:16:34    2014-06-26 10:16:34
11571    10502    507    2016-03-11 05:46:00    2016-03-11 05:46:00
11572    18917    491    2016-01-29 20:34:30    2016-01-29 20:34:30
11573    19470    927    2015-11-27 00:56:51    2015-11-27 00:56:51
11574    14800    839    2014-07-28 12:56:15    2014-07-28 12:56:15
11575    17144    778    2015-10-08 05:45:10    2015-10-08 05:45:10
11576    15228    497    2014-06-27 20:51:47    2014-06-27 20:51:47
11577    19003    497    2014-03-21 07:27:25    2014-03-21 07:27:25
11578    18376    595    2015-12-24 00:52:23    2015-12-24 00:52:23
11579    19065    506    2016-03-26 05:43:01    2016-03-26 05:43:01
11580    12839    636    2014-02-14 14:13:35    2014-02-14 14:13:35
11581    16770    905    2015-07-28 02:09:35    2015-07-28 02:09:35
11582    19895    575    2013-10-17 09:42:19    2013-10-17 09:42:19
11583    14520    865    2013-07-25 07:01:19    2013-07-25 07:01:19
11584    18527    813    2013-12-05 05:48:28    2013-12-05 05:48:28
11585    11302    626    2014-02-03 05:43:06    2014-02-03 05:43:06
11586    14690    677    2014-12-31 00:11:29    2014-12-31 00:11:29
11587    18836    708    2014-02-05 20:19:20    2014-02-05 20:19:20
11588    10991    887    2013-08-04 18:44:49    2013-08-04 18:44:49
11589    14262    819    2015-10-14 20:45:30    2015-10-14 20:45:30
11590    18350    942    2014-01-05 06:08:28    2014-01-05 06:08:28
11591    16232    620    2013-08-02 11:15:33    2013-08-02 11:15:33
11592    10367    497    2015-04-20 16:40:57    2015-04-20 16:40:57
11593    16416    912    2015-06-25 22:39:22    2015-06-25 22:39:22
11594    13604    878    2014-03-14 05:45:03    2014-03-14 05:45:03
11595    16221    601    2015-12-05 12:20:09    2015-12-05 12:20:09
11596    10572    772    2015-08-02 03:04:57    2015-08-02 03:04:57
11597    13655    543    2016-01-26 15:22:50    2016-01-26 15:22:50
11598    17399    882    2014-02-20 17:19:50    2014-02-20 17:19:50
11599    15328    882    2014-05-02 19:54:22    2014-05-02 19:54:22
11600    18795    767    2014-10-26 21:22:27    2014-10-26 21:22:27
11601    12681    882    2013-08-09 23:38:31    2013-08-09 23:38:31
11602    11719    641    2013-12-30 03:15:26    2013-12-30 03:15:26
11603    16662    636    2013-08-10 16:17:32    2013-08-10 16:17:32
11604    11048    843    2015-07-06 04:24:08    2015-07-06 04:24:08
11605    18485    542    2013-05-05 13:22:56    2013-05-05 13:22:56
11606    15665    959    2016-02-24 10:41:43    2016-02-24 10:41:43
11607    13761    788    2015-09-06 17:48:16    2015-09-06 17:48:16
11608    16805    526    2015-12-10 12:30:56    2015-12-10 12:30:56
11609    14702    614    2014-05-28 23:33:08    2014-05-28 23:33:08
11610    10616    920    2014-11-27 04:32:48    2014-11-27 04:32:48
11611    12436    536    2015-03-02 07:15:54    2015-03-02 07:15:54
11612    15558    770    2013-11-12 16:44:44    2013-11-12 16:44:44
11613    10321    543    2014-10-23 17:24:35    2014-10-23 17:24:35
11614    10351    884    2014-10-02 06:06:05    2014-10-02 06:06:05
11615    13619    617    2013-12-06 11:13:40    2013-12-06 11:13:40
11616    19554    654    2013-08-01 23:56:53    2013-08-01 23:56:53
11617    12642    760    2013-11-02 02:05:16    2013-11-02 02:05:16
11618    13328    711    2014-04-05 20:26:00    2014-04-05 20:26:00
11619    18409    789    2013-05-22 04:41:12    2013-05-22 04:41:12
11620    18814    745    2016-02-20 08:28:02    2016-02-20 08:28:02
11621    14957    635    2014-09-07 03:32:50    2014-09-07 03:32:50
11622    17142    787    2014-12-26 14:06:50    2014-12-26 14:06:50
11623    16400    482    2014-04-05 23:48:25    2014-04-05 23:48:25
11624    12409    501    2015-11-28 13:15:37    2015-11-28 13:15:37
11625    11536    829    2015-03-05 14:51:36    2015-03-05 14:51:36
11626    13278    748    2014-05-02 05:42:00    2014-05-02 05:42:00
11627    12212    934    2014-06-19 10:44:47    2014-06-19 10:44:47
11628    13874    767    2013-05-23 22:23:02    2013-05-23 22:23:02
11629    18216    702    2013-08-16 07:08:10    2013-08-16 07:08:10
11630    19122    594    2013-05-28 02:58:56    2013-05-28 02:58:56
11631    12038    746    2014-03-30 14:59:51    2014-03-30 14:59:51
11632    19668    729    2015-09-12 02:45:52    2015-09-12 02:45:52
11633    17401    597    2013-07-14 13:48:08    2013-07-14 13:48:08
11634    10686    601    2014-08-22 09:58:59    2014-08-22 09:58:59
11635    18281    668    2015-02-07 17:24:52    2015-02-07 17:24:52
11636    11803    742    2014-04-28 22:30:23    2014-04-28 22:30:23
11637    16205    563    2015-11-19 03:40:14    2015-11-19 03:40:14
11638    14739    575    2013-11-08 07:30:56    2013-11-08 07:30:56
11639    14611    842    2013-06-24 21:45:29    2013-06-24 21:45:29
11640    11154    519    2015-10-27 03:00:56    2015-10-27 03:00:56
11641    17959    927    2016-03-11 13:56:43    2016-03-11 13:56:43
11642    18264    634    2015-05-02 06:56:38    2015-05-02 06:56:38
11643    15811    609    2013-10-22 05:41:24    2013-10-22 05:41:24
11644    12327    646    2014-01-20 22:11:53    2014-01-20 22:11:53
11645    10569    547    2013-12-10 21:17:56    2013-12-10 21:17:56
11646    17987    916    2015-09-23 02:47:27    2015-09-23 02:47:27
11647    14485    901    2013-11-25 12:33:03    2013-11-25 12:33:03
11648    15986    509    2015-12-15 12:56:25    2015-12-15 12:56:25
11649    11701    598    2015-08-29 11:38:57    2015-08-29 11:38:57
11650    18346    485    2014-01-28 00:00:08    2014-01-28 00:00:08
11651    18256    548    2014-05-03 16:57:49    2014-05-03 16:57:49
11652    10138    586    2016-03-01 04:33:07    2016-03-01 04:33:07
11653    18358    565    2015-05-07 11:40:53    2015-05-07 11:40:53
11654    12913    534    2016-03-14 23:57:59    2016-03-14 23:57:59
11655    18379    840    2014-04-26 14:12:21    2014-04-26 14:12:21
11656    16366    540    2013-05-17 21:35:54    2013-05-17 21:35:54
11657    18666    828    2016-03-12 07:23:48    2016-03-12 07:23:48
11658    12935    760    2013-08-14 13:22:16    2013-08-14 13:22:16
11659    12112    587    2014-01-05 12:35:51    2014-01-05 12:35:51
11660    18636    558    2015-12-11 23:44:27    2015-12-11 23:44:27
11661    19092    674    2014-09-12 23:06:37    2014-09-12 23:06:37
11662    18632    604    2015-11-23 15:29:36    2015-11-23 15:29:36
11663    16904    902    2015-02-05 04:03:19    2015-02-05 04:03:19
11664    12135    915    2015-01-20 07:10:07    2015-01-20 07:10:07
11665    15236    847    2015-04-18 06:11:50    2015-04-18 06:11:50
11666    10605    649    2015-08-02 15:17:39    2015-08-02 15:17:39
11667    16894    577    2013-11-25 07:29:40    2013-11-25 07:29:40
11668    12783    854    2014-11-28 11:29:52    2014-11-28 11:29:52
11669    18511    654    2015-06-16 15:46:13    2015-06-16 15:46:13
11670    16236    597    2015-04-02 13:28:58    2015-04-02 13:28:58
11671    12288    797    2014-04-15 12:12:02    2014-04-15 12:12:02
11672    16466    741    2015-04-23 21:53:48    2015-04-23 21:53:48
11673    10225    591    2015-02-11 14:51:19    2015-02-11 14:51:19
11674    12224    885    2015-10-26 18:19:37    2015-10-26 18:19:37
11675    12107    783    2015-11-29 00:27:29    2015-11-29 00:27:29
11676    14400    607    2015-03-16 20:58:29    2015-03-16 20:58:29
11677    19839    900    2013-08-27 16:00:41    2013-08-27 16:00:41
11678    10176    719    2013-08-24 02:22:06    2013-08-24 02:22:06
11679    16256    873    2013-04-22 19:14:32    2013-04-22 19:14:32
11680    17715    831    2015-04-25 07:39:49    2015-04-25 07:39:49
11681    11422    555    2014-02-17 06:30:11    2014-02-17 06:30:11
11682    16370    672    2013-09-02 07:18:11    2013-09-02 07:18:11
11683    16079    733    2015-08-17 19:56:44    2015-08-17 19:56:44
11684    12672    879    2015-03-02 20:31:01    2015-03-02 20:31:01
11685    17260    747    2014-11-17 18:01:30    2014-11-17 18:01:30
11686    15318    666    2013-07-24 11:23:02    2013-07-24 11:23:02
11687    14773    857    2015-03-04 07:11:09    2015-03-04 07:11:09
11688    12945    878    2013-09-14 14:51:30    2013-09-14 14:51:30
11689    10607    543    2015-12-14 16:31:08    2015-12-14 16:31:08
11690    16760    594    2014-07-17 21:48:43    2014-07-17 21:48:43
11691    15166    531    2015-05-16 23:07:13    2015-05-16 23:07:13
11692    11536    634    2013-09-05 20:25:29    2013-09-05 20:25:29
11693    10008    942    2015-04-26 21:10:58    2015-04-26 21:10:58
11694    13639    831    2014-05-05 11:19:26    2014-05-05 11:19:26
11695    11618    775    2014-12-24 20:24:09    2014-12-24 20:24:09
11696    11232    949    2014-03-12 12:28:18    2014-03-12 12:28:18
11697    17873    577    2014-12-02 09:55:24    2014-12-02 09:55:24
11698    14923    941    2013-04-24 14:24:53    2013-04-24 14:24:53
11699    18322    940    2014-07-03 03:03:43    2014-07-03 03:03:43
11700    13884    634    2016-04-02 18:50:46    2016-04-02 18:50:46
11701    17656    947    2013-07-18 17:14:45    2013-07-18 17:14:45
11702    13402    927    2014-07-11 16:25:58    2014-07-11 16:25:58
11703    10380    648    2015-01-28 23:28:07    2015-01-28 23:28:07
11704    16571    947    2015-08-27 12:56:16    2015-08-27 12:56:16
11705    10134    706    2015-12-16 10:03:14    2015-12-16 10:03:14
11706    17721    514    2015-10-18 10:25:55    2015-10-18 10:25:55
11707    19539    549    2015-05-20 10:09:14    2015-05-20 10:09:14
11708    18968    874    2014-07-06 19:21:29    2014-07-06 19:21:29
11709    10155    899    2014-09-27 09:59:34    2014-09-27 09:59:34
11710    10235    507    2013-10-26 06:44:24    2013-10-26 06:44:24
11711    17569    907    2015-02-03 16:14:05    2015-02-03 16:14:05
11712    14743    488    2015-08-07 23:53:32    2015-08-07 23:53:32
11713    17152    584    2014-09-15 21:53:03    2014-09-15 21:53:03
11714    17086    678    2015-02-28 15:27:55    2015-02-28 15:27:55
11715    17520    830    2014-09-15 06:42:23    2014-09-15 06:42:23
11716    19892    834    2013-04-26 03:05:28    2013-04-26 03:05:28
11717    17125    551    2013-04-22 12:01:51    2013-04-22 12:01:51
11718    10244    480    2014-01-19 21:18:12    2014-01-19 21:18:12
11719    15718    641    2016-04-20 04:29:20    2016-04-20 04:29:20
11720    13717    741    2015-03-17 04:14:49    2015-03-17 04:14:49
11721    19798    493    2014-10-30 11:03:54    2014-10-30 11:03:54
11722    12623    603    2014-09-15 09:25:31    2014-09-15 09:25:31
11723    18095    878    2016-01-10 02:32:26    2016-01-10 02:32:26
11724    16996    902    2013-05-31 22:51:28    2013-05-31 22:51:28
11725    11126    897    2014-01-30 04:03:49    2014-01-30 04:03:49
11726    15041    668    2015-02-15 19:37:16    2015-02-15 19:37:16
11727    19562    938    2015-11-17 23:38:12    2015-11-17 23:38:12
11728    17277    557    2016-02-21 20:27:46    2016-02-21 20:27:46
11729    15567    878    2014-04-16 12:43:07    2014-04-16 12:43:07
11730    16986    955    2014-12-26 07:19:40    2014-12-26 07:19:40
11731    14919    835    2014-04-25 02:41:43    2014-04-25 02:41:43
11732    12566    512    2015-09-21 00:13:34    2015-09-21 00:13:34
11733    16301    571    2016-02-09 07:22:01    2016-02-09 07:22:01
11734    16083    819    2013-05-24 07:10:22    2013-05-24 07:10:22
11735    13270    898    2014-09-12 08:47:59    2014-09-12 08:47:59
11736    11262    842    2015-11-05 23:29:40    2015-11-05 23:29:40
11737    15040    768    2015-05-14 13:52:58    2015-05-14 13:52:58
11738    19723    549    2013-07-06 18:00:52    2013-07-06 18:00:52
11739    15787    833    2015-11-15 15:23:38    2015-11-15 15:23:38
11740    11398    553    2015-07-01 21:45:39    2015-07-01 21:45:39
11741    17218    721    2014-08-22 15:21:27    2014-08-22 15:21:27
11742    18441    584    2016-03-11 03:38:01    2016-03-11 03:38:01
11743    17458    639    2013-06-02 12:58:12    2013-06-02 12:58:12
11744    11893    677    2015-10-29 18:12:32    2015-10-29 18:12:32
11745    12490    736    2014-03-30 05:56:23    2014-03-30 05:56:23
11746    15122    640    2014-08-31 18:33:25    2014-08-31 18:33:25
11747    13327    909    2014-07-19 16:58:13    2014-07-19 16:58:13
11748    14302    816    2016-02-04 13:06:49    2016-02-04 13:06:49
11749    11288    901    2014-04-22 17:26:32    2014-04-22 17:26:32
11750    10368    610    2013-05-19 12:04:57    2013-05-19 12:04:57
11751    16607    606    2016-02-06 20:45:16    2016-02-06 20:45:16
11752    19823    527    2014-10-16 22:20:03    2014-10-16 22:20:03
11753    18983    782    2014-09-17 07:35:23    2014-09-17 07:35:23
11754    15471    665    2014-11-01 12:18:47    2014-11-01 12:18:47
11755    17889    674    2016-03-31 18:10:36    2016-03-31 18:10:36
11756    14881    908    2015-06-09 15:40:12    2015-06-09 15:40:12
11757    14917    637    2014-07-23 23:22:29    2014-07-23 23:22:29
11758    14822    474    2016-03-14 16:28:40    2016-03-14 16:28:40
11759    14116    594    2013-08-10 21:41:23    2013-08-10 21:41:23
11760    18752    595    2014-02-01 23:28:54    2014-02-01 23:28:54
11761    15230    955    2015-06-04 15:17:58    2015-06-04 15:17:58
11762    13353    776    2014-01-24 08:57:09    2014-01-24 08:57:09
11763    13661    691    2014-07-20 13:33:38    2014-07-20 13:33:38
11764    17832    954    2014-09-04 16:14:34    2014-09-04 16:14:34
11765    18151    584    2015-10-19 13:21:57    2015-10-19 13:21:57
11766    18843    659    2014-08-05 12:40:13    2014-08-05 12:40:13
11767    16270    678    2015-07-06 20:24:49    2015-07-06 20:24:49
11768    19053    861    2015-09-09 04:12:34    2015-09-09 04:12:34
11769    10575    510    2015-12-07 17:57:57    2015-12-07 17:57:57
11770    12822    541    2016-01-25 18:43:09    2016-01-25 18:43:09
11771    16621    835    2014-02-04 05:33:38    2014-02-04 05:33:38
11772    13419    946    2014-03-06 02:42:28    2014-03-06 02:42:28
11773    19827    628    2013-07-18 05:36:36    2013-07-18 05:36:36
11774    11729    825    2013-11-02 23:53:21    2013-11-02 23:53:21
11775    10228    872    2014-09-17 21:43:22    2014-09-17 21:43:22
11776    19959    508    2014-10-07 16:24:19    2014-10-07 16:24:19
11777    12960    569    2015-12-11 18:32:16    2015-12-11 18:32:16
11778    13903    674    2015-08-29 18:12:14    2015-08-29 18:12:14
11779    15247    750    2014-10-28 13:22:50    2014-10-28 13:22:50
11780    16099    954    2016-02-21 05:20:10    2016-02-21 05:20:10
11781    11675    744    2015-09-03 22:11:48    2015-09-03 22:11:48
11782    12979    466    2016-03-29 03:18:22    2016-03-29 03:18:22
11783    11916    747    2013-09-20 02:20:00    2013-09-20 02:20:00
11784    15443    956    2015-02-03 09:30:01    2015-02-03 09:30:01
11785    17521    796    2015-04-28 21:41:00    2015-04-28 21:41:00
11786    11010    938    2014-03-11 12:03:52    2014-03-11 12:03:52
11787    10352    953    2015-06-23 03:38:53    2015-06-23 03:38:53
11788    17160    531    2015-07-23 18:58:42    2015-07-23 18:58:42
11789    10192    780    2014-03-31 02:46:48    2014-03-31 02:46:48
11790    19129    545    2014-06-03 00:17:28    2014-06-03 00:17:28
11791    14934    862    2014-10-14 21:25:51    2014-10-14 21:25:51
11792    11900    889    2014-12-31 05:26:41    2014-12-31 05:26:41
11793    19991    726    2014-03-16 09:49:53    2014-03-16 09:49:53
11794    10539    741    2014-10-18 07:34:40    2014-10-18 07:34:40
11795    17071    837    2015-08-18 00:22:18    2015-08-18 00:22:18
11796    11026    549    2015-06-12 20:52:30    2015-06-12 20:52:30
11797    12999    650    2014-03-30 15:27:08    2014-03-30 15:27:08
11798    11259    909    2015-01-10 09:39:24    2015-01-10 09:39:24
11799    16602    614    2014-11-28 23:03:24    2014-11-28 23:03:24
11800    15324    579    2013-05-23 03:28:38    2013-05-23 03:28:38
11801    11034    832    2015-01-17 13:08:46    2015-01-17 13:08:46
11802    18390    634    2013-12-28 16:32:39    2013-12-28 16:32:39
11803    14066    511    2015-04-06 08:52:21    2015-04-06 08:52:21
11804    17661    743    2016-04-10 02:25:47    2016-04-10 02:25:47
11805    14328    638    2013-05-28 05:31:59    2013-05-28 05:31:59
11806    10042    715    2014-11-20 00:46:09    2014-11-20 00:46:09
11807    16918    628    2015-08-16 20:37:06    2015-08-16 20:37:06
11808    13871    749    2013-11-19 01:41:37    2013-11-19 01:41:37
11809    10515    663    2016-02-17 07:30:55    2016-02-17 07:30:55
11810    18298    547    2013-07-26 05:57:43    2013-07-26 05:57:43
11811    11738    637    2014-09-06 11:35:47    2014-09-06 11:35:47
11812    16761    900    2016-02-16 21:30:05    2016-02-16 21:30:05
11813    19419    700    2014-01-30 03:36:11    2014-01-30 03:36:11
11814    10629    798    2015-04-10 07:07:03    2015-04-10 07:07:03
11815    13453    827    2016-04-16 10:27:54    2016-04-16 10:27:54
11816    11788    752    2014-05-06 00:17:54    2014-05-06 00:17:54
11817    16320    633    2015-11-13 13:53:30    2015-11-13 13:53:30
11818    10456    546    2015-12-11 22:25:54    2015-12-11 22:25:54
11819    11371    541    2014-04-04 20:38:06    2014-04-04 20:38:06
11820    14716    728    2014-09-13 09:01:20    2014-09-13 09:01:20
11821    18782    480    2013-10-10 13:51:31    2013-10-10 13:51:31
11822    18809    932    2014-09-17 09:49:48    2014-09-17 09:49:48
11823    10896    540    2013-12-15 07:06:17    2013-12-15 07:06:17
11824    10410    649    2013-10-29 06:00:10    2013-10-29 06:00:10
11825    12455    630    2015-02-20 22:40:25    2015-02-20 22:40:25
11826    12996    884    2015-08-04 02:13:44    2015-08-04 02:13:44
11827    17563    688    2016-04-07 23:37:18    2016-04-07 23:37:18
11828    15890    488    2013-12-12 09:28:48    2013-12-12 09:28:48
11829    12721    533    2015-09-19 07:53:06    2015-09-19 07:53:06
11830    17032    844    2013-07-02 01:05:21    2013-07-02 01:05:21
11831    13958    726    2014-12-18 05:50:14    2014-12-18 05:50:14
11832    14844    488    2015-04-03 07:29:55    2015-04-03 07:29:55
11833    17071    621    2013-10-14 12:48:33    2013-10-14 12:48:33
11834    13350    647    2014-01-09 05:08:52    2014-01-09 05:08:52
11835    17013    717    2014-06-11 19:24:46    2014-06-11 19:24:46
11836    19006    707    2014-04-07 16:41:18    2014-04-07 16:41:18
11837    13256    866    2015-03-27 08:01:32    2015-03-27 08:01:32
11838    13523    480    2014-09-21 14:41:53    2014-09-21 14:41:53
11839    11472    921    2014-12-23 23:09:32    2014-12-23 23:09:32
11840    17494    880    2013-07-06 13:53:12    2013-07-06 13:53:12
11841    13018    858    2014-08-07 21:23:17    2014-08-07 21:23:17
11842    11718    677    2013-04-25 08:18:53    2013-04-25 08:18:53
11843    13670    697    2016-02-22 13:34:29    2016-02-22 13:34:29
11844    10679    465    2014-09-09 01:24:25    2014-09-09 01:24:25
11845    13125    615    2015-08-07 05:19:20    2015-08-07 05:19:20
11846    12711    667    2015-08-13 11:11:33    2015-08-13 11:11:33
11847    16060    503    2013-05-17 00:16:05    2013-05-17 00:16:05
11848    18038    683    2014-06-12 14:29:36    2014-06-12 14:29:36
11849    12365    895    2013-11-16 09:57:19    2013-11-16 09:57:19
11850    18309    887    2015-02-16 23:23:07    2015-02-16 23:23:07
11851    12675    710    2014-02-18 08:02:33    2014-02-18 08:02:33
11852    19725    679    2014-11-04 09:55:03    2014-11-04 09:55:03
11853    14482    948    2013-07-14 05:26:09    2013-07-14 05:26:09
11854    15145    924    2013-10-21 19:14:21    2013-10-21 19:14:21
11855    18930    959    2015-07-02 22:06:21    2015-07-02 22:06:21
11856    19300    834    2015-11-18 03:56:15    2015-11-18 03:56:15
11857    10131    807    2014-11-11 20:04:32    2014-11-11 20:04:32
11858    12793    901    2014-03-02 05:35:20    2014-03-02 05:35:20
11859    15471    915    2013-06-04 05:44:46    2013-06-04 05:44:46
11860    17652    754    2013-05-31 20:07:02    2013-05-31 20:07:02
11861    13359    656    2013-12-30 22:36:42    2013-12-30 22:36:42
11862    19193    880    2014-10-25 16:53:22    2014-10-25 16:53:22
11863    13292    848    2013-06-09 11:09:00    2013-06-09 11:09:00
11864    19670    503    2015-06-22 21:50:10    2015-06-22 21:50:10
11865    13972    493    2016-01-24 01:50:54    2016-01-24 01:50:54
11866    11798    733    2014-03-27 04:43:23    2014-03-27 04:43:23
11867    18198    952    2013-07-11 21:50:29    2013-07-11 21:50:29
11868    18391    869    2016-01-04 06:14:43    2016-01-04 06:14:43
11869    19415    488    2015-06-17 13:44:38    2015-06-17 13:44:38
11870    12300    680    2013-11-09 04:17:24    2013-11-09 04:17:24
11871    18577    949    2014-12-11 20:21:18    2014-12-11 20:21:18
11872    19013    852    2015-06-20 01:39:51    2015-06-20 01:39:51
11873    13228    896    2014-05-14 23:31:39    2014-05-14 23:31:39
11874    15355    945    2014-09-19 07:16:13    2014-09-19 07:16:13
11875    18257    475    2013-10-30 09:39:59    2013-10-30 09:39:59
11876    14062    669    2015-07-14 13:28:10    2015-07-14 13:28:10
11877    19959    919    2013-12-13 13:46:42    2013-12-13 13:46:42
11878    10832    761    2016-01-12 00:51:53    2016-01-12 00:51:53
11879    13721    855    2015-05-06 12:20:19    2015-05-06 12:20:19
11880    15967    673    2013-12-06 23:51:13    2013-12-06 23:51:13
11881    15164    722    2015-06-25 08:49:50    2015-06-25 08:49:50
11882    14122    620    2013-10-18 00:29:16    2013-10-18 00:29:16
11883    10559    684    2016-01-09 21:20:05    2016-01-09 21:20:05
11884    17125    636    2016-02-16 09:29:07    2016-02-16 09:29:07
11885    10613    786    2013-08-10 09:54:57    2013-08-10 09:54:57
11886    15832    478    2016-03-15 06:51:14    2016-03-15 06:51:14
11887    12988    852    2015-11-05 23:01:45    2015-11-05 23:01:45
11888    13101    613    2013-09-04 03:50:10    2013-09-04 03:50:10
11889    13319    734    2015-04-18 10:44:18    2015-04-18 10:44:18
11890    11800    522    2014-07-08 07:57:13    2014-07-08 07:57:13
11891    11756    961    2016-01-01 09:47:59    2016-01-01 09:47:59
11892    16669    472    2014-12-20 11:00:21    2014-12-20 11:00:21
11893    10730    884    2014-07-13 17:50:06    2014-07-13 17:50:06
11894    12575    743    2014-03-20 16:05:42    2014-03-20 16:05:42
11895    19293    914    2015-01-07 11:48:41    2015-01-07 11:48:41
11896    18159    494    2014-10-20 17:13:50    2014-10-20 17:13:50
11897    14299    510    2014-09-21 23:19:10    2014-09-21 23:19:10
11898    12574    494    2016-04-02 15:27:33    2016-04-02 15:27:33
11899    19481    787    2013-11-14 14:44:27    2013-11-14 14:44:27
11900    11867    908    2016-01-29 13:37:03    2016-01-29 13:37:03
11901    16297    845    2016-01-11 08:55:36    2016-01-11 08:55:36
11902    16823    733    2015-05-05 03:20:00    2015-05-05 03:20:00
11903    15493    885    2015-09-30 17:11:50    2015-09-30 17:11:50
11904    10255    900    2013-06-13 20:42:40    2013-06-13 20:42:40
11905    13906    511    2014-02-02 19:53:32    2014-02-02 19:53:32
11906    16538    773    2015-09-20 00:05:53    2015-09-20 00:05:53
11907    14693    856    2014-02-27 09:20:57    2014-02-27 09:20:57
11908    17298    737    2014-05-25 00:25:48    2014-05-25 00:25:48
11909    15526    854    2014-01-29 14:44:14    2014-01-29 14:44:14
11910    17055    503    2015-06-20 15:00:47    2015-06-20 15:00:47
11911    18574    579    2014-04-11 12:09:04    2014-04-11 12:09:04
11912    13976    602    2014-10-03 02:49:12    2014-10-03 02:49:12
11913    15956    859    2015-10-03 15:08:45    2015-10-03 15:08:45
11914    16981    580    2014-02-14 05:54:36    2014-02-14 05:54:36
11915    10597    484    2014-10-16 20:35:12    2014-10-16 20:35:12
11916    15610    722    2015-01-08 13:53:27    2015-01-08 13:53:27
11917    15934    701    2015-06-18 02:51:14    2015-06-18 02:51:14
11918    19664    576    2015-02-02 07:10:23    2015-02-02 07:10:23
11919    13489    805    2014-11-19 21:26:55    2014-11-19 21:26:55
11920    17698    817    2013-08-01 20:08:45    2013-08-01 20:08:45
11921    10238    565    2014-12-06 13:42:18    2014-12-06 13:42:18
11922    19416    506    2014-05-03 19:14:46    2014-05-03 19:14:46
11923    15217    488    2014-12-06 15:52:13    2014-12-06 15:52:13
11924    15675    713    2015-09-24 22:35:03    2015-09-24 22:35:03
11925    15857    867    2015-02-26 23:37:42    2015-02-26 23:37:42
11926    13509    746    2014-07-06 09:42:21    2014-07-06 09:42:21
11927    19911    873    2015-09-16 00:59:10    2015-09-16 00:59:10
11928    10091    690    2013-04-26 13:05:37    2013-04-26 13:05:37
11929    17213    502    2013-10-02 04:04:46    2013-10-02 04:04:46
11930    15435    826    2014-12-02 10:13:11    2014-12-02 10:13:11
11931    15668    695    2015-05-24 16:07:52    2015-05-24 16:07:52
11932    16052    643    2015-11-13 14:29:04    2015-11-13 14:29:04
11933    13979    536    2015-10-23 21:03:20    2015-10-23 21:03:20
11934    17126    568    2015-04-16 15:50:13    2015-04-16 15:50:13
11935    10010    504    2015-06-03 22:31:59    2015-06-03 22:31:59
11936    11982    779    2015-06-14 20:01:51    2015-06-14 20:01:51
11937    19605    800    2014-09-07 18:21:11    2014-09-07 18:21:11
11938    10776    832    2015-03-23 05:16:12    2015-03-23 05:16:12
11939    18098    780    2015-10-01 13:47:15    2015-10-01 13:47:15
11940    15250    773    2014-12-29 00:37:26    2014-12-29 00:37:26
11941    19945    581    2014-02-27 14:47:40    2014-02-27 14:47:40
11942    14557    599    2014-12-17 06:15:02    2014-12-17 06:15:02
11943    19599    608    2016-01-27 19:01:05    2016-01-27 19:01:05
11944    11671    866    2013-06-25 07:52:20    2013-06-25 07:52:20
11945    18463    520    2015-09-09 05:13:46    2015-09-09 05:13:46
11946    17770    702    2015-08-08 06:23:35    2015-08-08 06:23:35
11947    13389    708    2016-02-23 04:46:22    2016-02-23 04:46:22
11948    11995    863    2016-03-10 02:09:21    2016-03-10 02:09:21
11949    14941    919    2016-01-13 00:54:58    2016-01-13 00:54:58
11950    13211    691    2015-06-10 20:01:36    2015-06-10 20:01:36
11951    18567    567    2013-12-27 12:59:11    2013-12-27 12:59:11
11952    18592    844    2014-07-19 00:07:45    2014-07-19 00:07:45
11953    19168    488    2013-08-15 10:58:43    2013-08-15 10:58:43
11954    16961    755    2016-03-15 07:19:27    2016-03-15 07:19:27
11955    12775    870    2014-04-24 17:21:37    2014-04-24 17:21:37
11956    12365    717    2014-04-24 01:09:19    2014-04-24 01:09:19
11957    17751    843    2013-07-07 06:29:32    2013-07-07 06:29:32
11958    16003    858    2013-09-13 07:09:24    2013-09-13 07:09:24
11959    12120    684    2015-12-27 22:56:11    2015-12-27 22:56:11
11960    15228    931    2013-12-17 15:58:22    2013-12-17 15:58:22
11961    12360    694    2015-03-01 19:44:12    2015-03-01 19:44:12
11962    10920    786    2015-07-11 20:05:06    2015-07-11 20:05:06
11963    10848    683    2014-03-07 16:28:32    2014-03-07 16:28:32
11964    13544    795    2015-07-13 04:19:43    2015-07-13 04:19:43
11965    16672    499    2013-05-09 19:16:40    2013-05-09 19:16:40
11966    15856    882    2014-01-28 06:30:36    2014-01-28 06:30:36
11967    14693    807    2015-09-06 03:13:26    2015-09-06 03:13:26
11968    18970    693    2013-06-23 07:09:34    2013-06-23 07:09:34
11969    12386    486    2016-02-06 03:05:57    2016-02-06 03:05:57
11970    12888    487    2014-05-04 09:02:03    2014-05-04 09:02:03
11971    13405    831    2015-01-03 14:27:30    2015-01-03 14:27:30
11972    14996    954    2014-08-02 21:43:24    2014-08-02 21:43:24
11973    19088    586    2014-10-11 21:45:16    2014-10-11 21:45:16
11974    17677    473    2014-11-26 17:32:11    2014-11-26 17:32:11
11975    15176    517    2014-12-23 22:11:52    2014-12-23 22:11:52
11976    11807    816    2014-09-20 22:59:49    2014-09-20 22:59:49
11977    11814    872    2014-07-18 22:23:04    2014-07-18 22:23:04
11978    17061    599    2014-06-21 04:36:41    2014-06-21 04:36:41
11979    16859    834    2015-11-01 12:21:24    2015-11-01 12:21:24
11980    19056    550    2013-09-27 12:24:20    2013-09-27 12:24:20
11981    14565    482    2015-08-22 11:24:02    2015-08-22 11:24:02
11982    17577    522    2015-02-11 11:38:26    2015-02-11 11:38:26
11983    19272    558    2015-04-22 09:49:19    2015-04-22 09:49:19
11984    10908    868    2014-12-12 21:17:03    2014-12-12 21:17:03
11985    17631    624    2016-02-05 13:25:42    2016-02-05 13:25:42
11986    18288    512    2016-03-07 09:37:46    2016-03-07 09:37:46
11987    17556    742    2014-06-16 01:52:48    2014-06-16 01:52:48
11988    17874    915    2014-06-28 20:23:08    2014-06-28 20:23:08
11989    17662    623    2013-11-17 15:56:42    2013-11-17 15:56:42
11990    17960    641    2015-03-18 21:47:54    2015-03-18 21:47:54
11991    11605    776    2014-09-02 12:15:46    2014-09-02 12:15:46
11992    14538    905    2013-10-29 12:30:45    2013-10-29 12:30:45
11993    10584    919    2013-08-06 15:28:23    2013-08-06 15:28:23
11994    15559    646    2016-04-07 07:20:21    2016-04-07 07:20:21
11995    17513    764    2013-06-01 02:42:41    2013-06-01 02:42:41
11996    18951    706    2015-05-24 06:09:13    2015-05-24 06:09:13
11997    14324    499    2014-07-30 21:22:17    2014-07-30 21:22:17
11998    16827    586    2014-01-01 02:30:36    2014-01-01 02:30:36
11999    17627    720    2014-12-11 08:26:26    2014-12-11 08:26:26
12000    18122    557    2013-10-23 06:41:34    2013-10-23 06:41:34
12001    18507    683    2016-04-07 00:46:47    2016-04-07 00:46:47
12002    19278    815    2014-07-29 18:33:30    2014-07-29 18:33:30
12003    10880    619    2013-08-26 10:15:48    2013-08-26 10:15:48
12004    16541    937    2013-10-29 06:39:40    2013-10-29 06:39:40
12005    15137    829    2015-09-04 22:13:10    2015-09-04 22:13:10
12006    10479    873    2013-07-14 02:21:15    2013-07-14 02:21:15
12007    16339    950    2015-11-29 21:18:35    2015-11-29 21:18:35
12008    15175    876    2013-05-19 20:03:40    2013-05-19 20:03:40
12009    14699    878    2014-07-08 14:59:15    2014-07-08 14:59:15
12010    10550    648    2015-03-01 22:01:56    2015-03-01 22:01:56
12011    19081    616    2014-01-24 08:04:14    2014-01-24 08:04:14
12012    17447    495    2015-01-31 19:59:13    2015-01-31 19:59:13
12013    10416    507    2016-01-26 06:52:52    2016-01-26 06:52:52
12014    10191    918    2015-09-18 09:41:25    2015-09-18 09:41:25
12015    18618    628    2015-04-25 00:01:23    2015-04-25 00:01:23
12016    18126    637    2015-05-13 01:39:58    2015-05-13 01:39:58
12017    17243    891    2015-04-11 16:41:37    2015-04-11 16:41:37
12018    12965    847    2015-08-10 17:43:00    2015-08-10 17:43:00
12019    19863    636    2013-09-21 13:03:22    2013-09-21 13:03:22
12020    18397    578    2015-01-11 12:30:18    2015-01-11 12:30:18
12021    13817    492    2015-09-19 00:46:09    2015-09-19 00:46:09
12022    13430    769    2014-06-28 02:18:41    2014-06-28 02:18:41
12023    19080    690    2013-08-07 10:48:50    2013-08-07 10:48:50
12024    18323    755    2015-06-16 07:56:29    2015-06-16 07:56:29
12025    13384    804    2014-05-05 01:31:18    2014-05-05 01:31:18
12026    10394    582    2015-03-12 20:30:36    2015-03-12 20:30:36
12027    18504    779    2016-02-15 04:45:24    2016-02-15 04:45:24
12028    10894    872    2014-05-18 06:30:51    2014-05-18 06:30:51
12029    10850    629    2015-09-26 20:31:23    2015-09-26 20:31:23
12030    17948    878    2016-03-29 16:00:33    2016-03-29 16:00:33
12031    16805    492    2014-11-13 06:36:41    2014-11-13 06:36:41
12032    14708    718    2014-03-26 01:49:50    2014-03-26 01:49:50
12033    13847    525    2014-09-18 22:03:50    2014-09-18 22:03:50
12034    13185    625    2014-10-10 14:05:31    2014-10-10 14:05:31
12035    19222    525    2015-02-13 06:30:18    2015-02-13 06:30:18
12036    16942    501    2015-10-01 12:12:06    2015-10-01 12:12:06
12037    17668    905    2014-03-19 14:18:34    2014-03-19 14:18:34
12038    17006    739    2016-03-01 06:14:28    2016-03-01 06:14:28
12039    18524    741    2015-03-29 01:42:41    2015-03-29 01:42:41
12040    14315    890    2013-07-19 09:05:09    2013-07-19 09:05:09
12041    16277    648    2014-10-14 19:31:40    2014-10-14 19:31:40
12042    15284    634    2015-09-18 18:21:16    2015-09-18 18:21:16
12043    14216    780    2014-12-28 18:09:47    2014-12-28 18:09:47
12044    14162    925    2013-07-28 08:08:36    2013-07-28 08:08:36
12045    16628    633    2015-09-01 21:59:53    2015-09-01 21:59:53
12046    16024    775    2013-10-24 09:39:47    2013-10-24 09:39:47
12047    11996    475    2014-11-25 09:37:03    2014-11-25 09:37:03
12048    15808    620    2015-01-18 09:41:28    2015-01-18 09:41:28
12049    12789    743    2015-08-03 20:25:37    2015-08-03 20:25:37
12050    17059    894    2013-10-22 18:43:21    2013-10-22 18:43:21
12051    10026    578    2014-08-19 10:44:42    2014-08-19 10:44:42
12052    15757    638    2015-11-04 10:58:33    2015-11-04 10:58:33
12053    15608    817    2014-08-17 03:21:33    2014-08-17 03:21:33
12054    15614    569    2015-04-30 21:35:23    2015-04-30 21:35:23
12055    15469    901    2015-09-05 09:32:44    2015-09-05 09:32:44
12056    11530    927    2013-12-29 02:53:33    2013-12-29 02:53:33
12057    16217    636    2014-03-29 11:04:00    2014-03-29 11:04:00
12058    12131    699    2013-05-29 07:45:33    2013-05-29 07:45:33
12059    17565    757    2015-01-26 03:35:59    2015-01-26 03:35:59
12060    18300    468    2015-12-24 16:54:30    2015-12-24 16:54:30
12061    16762    899    2014-10-31 04:52:17    2014-10-31 04:52:17
12062    15082    506    2014-05-05 21:18:39    2014-05-05 21:18:39
12063    11138    663    2013-08-14 12:43:07    2013-08-14 12:43:07
12064    10403    950    2015-07-23 04:46:53    2015-07-23 04:46:53
12065    15479    947    2015-01-12 18:08:06    2015-01-12 18:08:06
12066    13338    629    2014-08-20 14:20:35    2014-08-20 14:20:35
12067    15970    940    2015-01-05 06:18:56    2015-01-05 06:18:56
12068    19482    592    2014-01-11 11:18:51    2014-01-11 11:18:51
12069    19882    808    2014-05-13 16:12:50    2014-05-13 16:12:50
12070    13907    719    2014-05-08 09:29:51    2014-05-08 09:29:51
12071    12953    807    2015-08-17 22:58:42    2015-08-17 22:58:42
12072    17915    858    2014-08-13 13:21:35    2014-08-13 13:21:35
12073    18217    731    2016-03-23 15:59:47    2016-03-23 15:59:47
12074    10342    720    2014-06-23 23:05:04    2014-06-23 23:05:04
12075    10248    756    2014-03-09 05:15:42    2014-03-09 05:15:42
12076    11917    471    2015-09-22 20:21:18    2015-09-22 20:21:18
12077    19800    465    2015-04-29 14:36:56    2015-04-29 14:36:56
12078    18886    736    2014-06-26 10:00:02    2014-06-26 10:00:02
12079    16646    705    2015-01-06 08:13:05    2015-01-06 08:13:05
12080    18227    851    2015-09-13 22:25:57    2015-09-13 22:25:57
12081    16599    691    2014-06-15 01:41:11    2014-06-15 01:41:11
12082    11054    911    2015-12-03 22:20:55    2015-12-03 22:20:55
12083    14866    507    2015-04-01 22:13:59    2015-04-01 22:13:59
12084    17234    732    2013-07-30 08:43:53    2013-07-30 08:43:53
12085    19190    736    2013-10-02 08:51:53    2013-10-02 08:51:53
12086    14958    769    2014-04-02 05:45:34    2014-04-02 05:45:34
12087    19887    860    2015-07-28 05:01:02    2015-07-28 05:01:02
12088    14518    686    2015-02-09 08:52:16    2015-02-09 08:52:16
12089    13521    489    2015-08-11 05:08:08    2015-08-11 05:08:08
12090    15164    654    2014-11-15 04:58:26    2014-11-15 04:58:26
12091    14113    832    2015-01-24 04:38:50    2015-01-24 04:38:50
12092    14831    680    2015-07-14 08:07:19    2015-07-14 08:07:19
12093    18055    629    2014-04-15 21:50:22    2014-04-15 21:50:22
12094    12353    692    2015-01-27 18:33:59    2015-01-27 18:33:59
12095    19253    906    2016-01-13 21:11:51    2016-01-13 21:11:51
12096    11012    848    2015-10-03 14:39:17    2015-10-03 14:39:17
12097    14620    889    2014-06-27 21:27:43    2014-06-27 21:27:43
12098    14127    581    2014-10-04 02:14:44    2014-10-04 02:14:44
12099    17403    908    2014-08-07 08:59:57    2014-08-07 08:59:57
12100    17577    537    2015-05-25 15:33:58    2015-05-25 15:33:58
12101    19602    643    2015-02-18 17:07:35    2015-02-18 17:07:35
12102    15662    647    2016-01-08 05:00:53    2016-01-08 05:00:53
12103    11839    855    2013-12-19 16:28:27    2013-12-19 16:28:27
12104    18161    557    2016-02-01 17:01:44    2016-02-01 17:01:44
12105    19544    522    2014-06-28 21:23:00    2014-06-28 21:23:00
12106    10362    945    2013-10-20 16:34:50    2013-10-20 16:34:50
12107    16533    836    2013-12-09 23:22:01    2013-12-09 23:22:01
12108    18932    796    2015-01-29 17:11:06    2015-01-29 17:11:06
12109    17944    463    2014-05-23 09:54:18    2014-05-23 09:54:18
12110    13772    854    2015-11-12 07:14:48    2015-11-12 07:14:48
12111    15733    720    2013-07-10 14:01:24    2013-07-10 14:01:24
12112    17691    807    2013-08-30 14:56:41    2013-08-30 14:56:41
12113    19425    616    2014-09-21 09:52:51    2014-09-21 09:52:51
12114    11393    742    2014-05-30 20:24:32    2014-05-30 20:24:32
12115    19765    712    2014-06-16 13:23:25    2014-06-16 13:23:25
12116    11699    617    2015-09-14 10:37:06    2015-09-14 10:37:06
12117    15257    862    2013-12-31 07:41:42    2013-12-31 07:41:42
12118    10524    561    2013-12-27 09:29:28    2013-12-27 09:29:28
12119    18868    646    2014-12-31 04:02:36    2014-12-31 04:02:36
12120    17989    531    2015-10-13 02:42:52    2015-10-13 02:42:52
12121    12280    556    2015-10-23 16:35:05    2015-10-23 16:35:05
12122    10754    848    2013-06-27 21:59:52    2013-06-27 21:59:52
12123    13194    661    2015-09-12 12:41:57    2015-09-12 12:41:57
12124    12195    843    2015-03-18 06:17:12    2015-03-18 06:17:12
12125    18344    520    2015-07-31 15:02:58    2015-07-31 15:02:58
12126    12697    821    2013-06-24 22:21:10    2013-06-24 22:21:10
12127    10538    594    2015-06-23 07:55:50    2015-06-23 07:55:50
12128    10508    745    2014-11-19 19:17:02    2014-11-19 19:17:02
12129    14793    539    2015-08-20 02:33:58    2015-08-20 02:33:58
12130    12270    518    2015-05-09 00:00:03    2015-05-09 00:00:03
12131    13483    646    2014-04-30 11:10:55    2014-04-30 11:10:55
12132    19996    578    2013-08-23 06:34:16    2013-08-23 06:34:16
12133    11854    715    2015-03-26 13:18:15    2015-03-26 13:18:15
12134    10155    721    2013-06-06 09:19:40    2013-06-06 09:19:40
12135    14284    679    2013-05-11 00:49:42    2013-05-11 00:49:42
12136    11636    838    2015-08-06 06:25:16    2015-08-06 06:25:16
12137    10237    903    2015-01-13 08:32:19    2015-01-13 08:32:19
12138    13560    921    2014-08-06 04:58:27    2014-08-06 04:58:27
12139    18233    676    2014-03-09 09:43:02    2014-03-09 09:43:02
12140    15628    495    2015-07-05 14:51:01    2015-07-05 14:51:01
12141    13073    580    2016-04-01 02:25:55    2016-04-01 02:25:55
12142    10548    629    2015-05-22 20:59:13    2015-05-22 20:59:13
12143    10037    675    2014-03-09 17:21:56    2014-03-09 17:21:56
12144    14223    780    2015-07-25 07:54:45    2015-07-25 07:54:45
12145    17260    799    2015-04-25 14:45:57    2015-04-25 14:45:57
12146    19022    614    2015-07-26 09:14:20    2015-07-26 09:14:20
12147    18867    627    2016-01-13 01:10:04    2016-01-13 01:10:04
12148    17771    579    2014-12-10 09:56:05    2014-12-10 09:56:05
12149    11649    581    2014-04-17 16:54:21    2014-04-17 16:54:21
12150    10175    595    2013-07-06 12:38:27    2013-07-06 12:38:27
12151    13665    842    2016-03-02 08:36:30    2016-03-02 08:36:30
12152    13779    897    2014-06-05 01:47:59    2014-06-05 01:47:59
12153    13805    601    2015-03-17 06:19:14    2015-03-17 06:19:14
12154    16502    858    2013-10-10 04:36:12    2013-10-10 04:36:12
12155    17596    798    2015-08-14 19:26:56    2015-08-14 19:26:56
12156    10968    584    2015-12-21 23:02:11    2015-12-21 23:02:11
12157    13401    566    2014-01-23 16:05:58    2014-01-23 16:05:58
12158    17967    764    2016-02-15 07:38:00    2016-02-15 07:38:00
12159    10664    756    2015-09-04 12:10:28    2015-09-04 12:10:28
12160    16047    654    2013-08-18 06:59:32    2013-08-18 06:59:32
12161    13923    664    2013-06-17 00:01:59    2013-06-17 00:01:59
12162    19219    806    2014-03-03 06:45:33    2014-03-03 06:45:33
12163    14710    944    2013-08-02 03:19:17    2013-08-02 03:19:17
12164    17129    500    2015-11-27 00:16:12    2015-11-27 00:16:12
12165    10026    550    2014-04-15 01:23:56    2014-04-15 01:23:56
12166    14762    952    2015-07-06 16:53:27    2015-07-06 16:53:27
12167    18257    571    2014-12-28 05:11:19    2014-12-28 05:11:19
12168    12299    956    2014-08-11 10:13:27    2014-08-11 10:13:27
12169    17077    882    2014-11-23 23:55:08    2014-11-23 23:55:08
12170    14816    920    2015-12-25 12:29:21    2015-12-25 12:29:21
12171    10153    951    2014-10-13 18:54:05    2014-10-13 18:54:05
12172    16198    579    2016-04-05 21:06:19    2016-04-05 21:06:19
12173    17287    756    2014-07-30 03:10:06    2014-07-30 03:10:06
12174    13841    643    2014-08-26 11:46:25    2014-08-26 11:46:25
12175    13615    619    2015-04-06 03:03:56    2015-04-06 03:03:56
12176    18591    744    2016-03-17 15:11:25    2016-03-17 15:11:25
12177    18373    804    2015-06-12 10:39:34    2015-06-12 10:39:34
12178    12813    761    2016-01-11 12:44:39    2016-01-11 12:44:39
12179    15799    819    2016-02-23 21:57:42    2016-02-23 21:57:42
12180    19866    617    2014-10-31 08:07:03    2014-10-31 08:07:03
12181    12188    561    2014-03-10 19:46:15    2014-03-10 19:46:15
12182    19254    741    2015-11-28 18:08:38    2015-11-28 18:08:38
12183    15027    929    2013-08-29 05:35:37    2013-08-29 05:35:37
12184    14210    761    2013-05-28 02:39:25    2013-05-28 02:39:25
12185    15629    498    2015-02-28 20:51:35    2015-02-28 20:51:35
12186    16287    930    2014-07-09 22:13:13    2014-07-09 22:13:13
12187    17973    785    2014-10-29 06:11:14    2014-10-29 06:11:14
12188    19808    913    2015-10-14 07:05:26    2015-10-14 07:05:26
12189    11083    494    2014-10-20 13:51:36    2014-10-20 13:51:36
12190    10802    772    2013-10-17 18:37:18    2013-10-17 18:37:18
12191    12010    508    2014-10-06 15:23:16    2014-10-06 15:23:16
12192    11831    749    2015-07-27 14:58:56    2015-07-27 14:58:56
12193    15014    759    2014-04-09 04:01:59    2014-04-09 04:01:59
12194    19827    571    2013-09-19 09:03:16    2013-09-19 09:03:16
12195    12524    535    2014-05-07 03:06:17    2014-05-07 03:06:17
12196    11274    677    2016-03-04 16:48:59    2016-03-04 16:48:59
12197    18266    713    2015-03-31 03:26:41    2015-03-31 03:26:41
12198    17822    582    2015-05-27 13:53:14    2015-05-27 13:53:14
12199    19770    622    2015-09-21 18:34:51    2015-09-21 18:34:51
12200    19229    534    2015-08-01 15:02:15    2015-08-01 15:02:15
12201    11917    831    2013-05-26 14:46:30    2013-05-26 14:46:30
12202    13337    701    2015-03-03 12:24:18    2015-03-03 12:24:18
12203    18994    800    2014-07-11 12:45:43    2014-07-11 12:45:43
12204    17718    508    2015-05-17 21:57:31    2015-05-17 21:57:31
12205    12847    711    2014-05-20 10:04:25    2014-05-20 10:04:25
12206    16845    683    2014-07-07 10:56:18    2014-07-07 10:56:18
12207    15550    822    2014-02-27 01:45:45    2014-02-27 01:45:45
12208    13672    718    2015-10-20 19:00:15    2015-10-20 19:00:15
12209    12803    741    2015-06-14 03:43:39    2015-06-14 03:43:39
12210    15286    916    2015-06-28 05:07:47    2015-06-28 05:07:47
12211    18014    490    2015-06-19 17:25:09    2015-06-19 17:25:09
12212    15090    848    2014-03-28 03:57:32    2014-03-28 03:57:32
12213    19859    632    2015-03-04 11:41:23    2015-03-04 11:41:23
12214    18538    732    2014-11-07 18:20:40    2014-11-07 18:20:40
12215    12463    577    2015-08-01 13:06:44    2015-08-01 13:06:44
12216    17549    580    2014-11-10 11:34:52    2014-11-10 11:34:52
12217    17690    685    2013-04-29 10:38:38    2013-04-29 10:38:38
12218    19403    909    2014-02-04 19:28:39    2014-02-04 19:28:39
12219    15716    611    2015-08-05 17:57:45    2015-08-05 17:57:45
12220    13544    790    2015-08-11 23:26:58    2015-08-11 23:26:58
12221    19738    885    2014-04-25 19:29:58    2014-04-25 19:29:58
12222    15896    724    2016-01-07 11:08:32    2016-01-07 11:08:32
12223    15562    961    2015-07-28 17:46:10    2015-07-28 17:46:10
12224    15892    928    2014-04-05 04:58:50    2014-04-05 04:58:50
12225    15855    830    2014-05-12 03:24:57    2014-05-12 03:24:57
12226    13346    768    2015-05-23 23:41:52    2015-05-23 23:41:52
12227    18847    931    2013-06-21 23:23:49    2013-06-21 23:23:49
12228    11963    767    2016-03-29 06:35:02    2016-03-29 06:35:02
12229    13767    755    2015-09-16 05:59:30    2015-09-16 05:59:30
12230    10401    675    2014-08-17 05:16:42    2014-08-17 05:16:42
12231    11402    685    2016-02-27 14:15:18    2016-02-27 14:15:18
12232    13163    881    2016-03-25 00:44:44    2016-03-25 00:44:44
12233    18247    515    2013-08-19 08:49:41    2013-08-19 08:49:41
12234    15289    724    2014-04-20 20:12:02    2014-04-20 20:12:02
12235    18656    829    2014-03-28 04:49:20    2014-03-28 04:49:20
12236    17945    891    2015-02-09 04:52:02    2015-02-09 04:52:02
12237    17742    505    2015-06-13 15:50:32    2015-06-13 15:50:32
12238    14276    783    2015-03-24 04:58:41    2015-03-24 04:58:41
12239    11223    929    2013-04-28 23:34:38    2013-04-28 23:34:38
12240    11905    565    2016-03-25 00:47:40    2016-03-25 00:47:40
12241    15044    667    2014-12-11 09:24:58    2014-12-11 09:24:58
12242    17279    492    2016-01-05 07:03:24    2016-01-05 07:03:24
12243    10626    793    2016-03-19 12:17:53    2016-03-19 12:17:53
12244    12295    653    2014-02-16 19:55:25    2014-02-16 19:55:25
12245    11642    497    2016-04-10 19:04:50    2016-04-10 19:04:50
12246    14905    828    2014-10-07 22:07:52    2014-10-07 22:07:52
12247    15410    534    2014-01-18 02:15:19    2014-01-18 02:15:19
12248    16688    817    2014-08-06 23:24:53    2014-08-06 23:24:53
12249    16442    529    2015-03-22 09:49:24    2015-03-22 09:49:24
12250    13389    911    2014-06-08 15:02:21    2014-06-08 15:02:21
12251    19470    764    2015-11-08 14:47:17    2015-11-08 14:47:17
12252    17048    672    2016-01-21 15:35:49    2016-01-21 15:35:49
12253    12383    721    2014-04-23 20:50:44    2014-04-23 20:50:44
12254    12000    751    2015-05-19 06:02:28    2015-05-19 06:02:28
12255    13582    808    2014-05-19 23:08:52    2014-05-19 23:08:52
12256    18740    598    2013-07-04 13:25:46    2013-07-04 13:25:46
12257    12361    680    2015-07-18 04:23:47    2015-07-18 04:23:47
12258    11233    502    2015-01-05 13:09:19    2015-01-05 13:09:19
12259    16344    580    2013-09-24 12:24:40    2013-09-24 12:24:40
12260    15351    490    2016-04-10 17:00:32    2016-04-10 17:00:32
12261    12445    716    2015-12-08 14:19:25    2015-12-08 14:19:25
12262    15843    930    2015-11-22 10:00:09    2015-11-22 10:00:09
12263    11766    684    2014-05-04 04:22:35    2014-05-04 04:22:35
12264    15085    738    2014-08-30 13:17:55    2014-08-30 13:17:55
12265    12765    577    2015-01-31 10:31:28    2015-01-31 10:31:28
12266    14592    709    2015-08-02 19:18:48    2015-08-02 19:18:48
12267    13881    806    2014-02-04 20:53:58    2014-02-04 20:53:58
12268    11130    539    2015-08-17 10:21:35    2015-08-17 10:21:35
12269    12729    737    2015-03-12 18:07:57    2015-03-12 18:07:57
12270    19559    522    2014-03-01 07:35:01    2014-03-01 07:35:01
12271    14624    654    2013-06-23 16:47:52    2013-06-23 16:47:52
12272    13680    897    2015-02-22 02:52:42    2015-02-22 02:52:42
12273    11259    695    2013-07-13 17:36:21    2013-07-13 17:36:21
12274    18696    759    2014-06-01 20:59:14    2014-06-01 20:59:14
12275    16496    932    2013-10-19 14:40:45    2013-10-19 14:40:45
12276    17862    502    2014-09-09 18:09:02    2014-09-09 18:09:02
12277    12530    770    2015-07-17 02:11:33    2015-07-17 02:11:33
12278    18657    853    2013-04-27 00:52:13    2013-04-27 00:52:13
12279    16782    910    2015-11-04 20:39:44    2015-11-04 20:39:44
12280    17128    853    2016-01-31 07:42:19    2016-01-31 07:42:19
12281    10708    793    2014-01-26 11:55:53    2014-01-26 11:55:53
12282    13799    839    2013-08-06 13:35:30    2013-08-06 13:35:30
12283    16977    472    2014-05-03 22:49:11    2014-05-03 22:49:11
12284    12901    531    2015-05-18 15:44:05    2015-05-18 15:44:05
12285    19912    488    2015-12-25 09:21:32    2015-12-25 09:21:32
12286    19440    934    2013-11-19 07:25:23    2013-11-19 07:25:23
12287    11877    887    2014-07-19 12:08:31    2014-07-19 12:08:31
12288    13766    727    2015-01-31 18:40:29    2015-01-31 18:40:29
12289    10092    802    2014-02-20 01:11:09    2014-02-20 01:11:09
12290    19921    733    2013-04-25 14:56:37    2013-04-25 14:56:37
12291    15395    886    2015-03-04 07:13:47    2015-03-04 07:13:47
12292    15163    790    2014-09-05 14:42:49    2014-09-05 14:42:49
12293    12195    852    2015-05-25 13:40:08    2015-05-25 13:40:08
12294    19952    906    2014-06-02 13:33:49    2014-06-02 13:33:49
12295    16981    507    2016-04-03 18:14:21    2016-04-03 18:14:21
12296    11441    916    2014-12-27 08:06:29    2014-12-27 08:06:29
12297    18959    575    2015-05-25 10:40:52    2015-05-25 10:40:52
12298    15840    575    2014-02-16 10:19:39    2014-02-16 10:19:39
12299    10440    912    2014-05-29 08:54:07    2014-05-29 08:54:07
12300    15150    742    2014-04-24 21:08:48    2014-04-24 21:08:48
12301    14819    925    2014-11-10 14:55:38    2014-11-10 14:55:38
12302    17947    482    2014-03-06 22:32:37    2014-03-06 22:32:37
12303    11628    552    2013-08-25 23:56:54    2013-08-25 23:56:54
12304    14387    668    2014-02-11 12:27:21    2014-02-11 12:27:21
12305    17581    893    2013-09-02 18:36:47    2013-09-02 18:36:47
12306    10995    911    2014-04-25 06:33:26    2014-04-25 06:33:26
12307    15500    943    2014-11-03 19:08:52    2014-11-03 19:08:52
12308    14038    806    2015-08-27 18:48:02    2015-08-27 18:48:02
12309    18375    711    2015-07-06 18:40:43    2015-07-06 18:40:43
12310    16130    841    2015-10-16 16:04:42    2015-10-16 16:04:42
12311    17077    822    2014-03-01 18:43:06    2014-03-01 18:43:06
12312    18239    799    2013-04-23 00:26:57    2013-04-23 00:26:57
12313    10809    710    2015-01-17 10:35:21    2015-01-17 10:35:21
12314    19685    491    2014-05-31 17:03:44    2014-05-31 17:03:44
12315    19263    661    2016-01-11 00:53:21    2016-01-11 00:53:21
12316    11600    639    2014-01-22 15:37:13    2014-01-22 15:37:13
12317    17218    846    2015-09-21 20:40:22    2015-09-21 20:40:22
12318    15882    779    2014-12-19 18:53:22    2014-12-19 18:53:22
12319    18055    754    2013-10-16 19:18:56    2013-10-16 19:18:56
12320    16355    606    2015-04-13 19:09:55    2015-04-13 19:09:55
12321    15334    834    2015-10-25 13:41:10    2015-10-25 13:41:10
12322    10645    852    2014-04-13 21:53:04    2014-04-13 21:53:04
12323    13058    493    2013-04-24 18:33:29    2013-04-24 18:33:29
12324    19597    959    2015-06-06 09:24:28    2015-06-06 09:24:28
12325    14509    734    2016-01-04 20:53:49    2016-01-04 20:53:49
12326    19311    591    2013-10-25 23:31:35    2013-10-25 23:31:35
12327    17869    487    2014-02-18 20:28:22    2014-02-18 20:28:22
12328    14465    769    2015-06-25 10:53:40    2015-06-25 10:53:40
12329    19883    827    2013-08-23 16:37:03    2013-08-23 16:37:03
12330    15962    540    2016-01-21 06:24:56    2016-01-21 06:24:56
12331    18469    600    2016-02-11 14:12:10    2016-02-11 14:12:10
12332    12121    725    2013-07-10 17:24:54    2013-07-10 17:24:54
12333    13057    686    2015-07-13 03:33:24    2015-07-13 03:33:24
12334    18372    488    2016-03-16 17:15:56    2016-03-16 17:15:56
12335    17327    959    2014-01-02 14:30:29    2014-01-02 14:30:29
12336    15006    545    2015-11-17 21:48:56    2015-11-17 21:48:56
12337    19764    553    2015-07-26 09:11:41    2015-07-26 09:11:41
12338    13351    646    2013-04-29 13:51:18    2013-04-29 13:51:18
12339    13828    820    2015-02-05 10:53:27    2015-02-05 10:53:27
12340    12739    856    2016-02-16 06:41:22    2016-02-16 06:41:22
12341    19026    836    2014-07-05 12:17:53    2014-07-05 12:17:53
12342    12799    493    2014-01-09 20:09:59    2014-01-09 20:09:59
12343    13176    705    2013-11-29 12:02:46    2013-11-29 12:02:46
12344    12671    757    2014-04-28 19:51:56    2014-04-28 19:51:56
12345    10825    786    2016-03-02 08:30:57    2016-03-02 08:30:57
12346    13597    517    2013-06-24 21:36:47    2013-06-24 21:36:47
12347    12588    805    2015-01-17 17:39:45    2015-01-17 17:39:45
12348    15428    641    2014-12-21 06:14:02    2014-12-21 06:14:02
12349    14222    489    2013-12-29 21:39:02    2013-12-29 21:39:02
12350    17808    954    2015-12-27 18:09:23    2015-12-27 18:09:23
12351    16516    522    2014-04-05 13:17:04    2014-04-05 13:17:04
12352    17045    617    2014-09-22 18:04:34    2014-09-22 18:04:34
12353    19916    850    2016-03-16 02:27:32    2016-03-16 02:27:32
12354    18002    657    2014-01-03 08:53:24    2014-01-03 08:53:24
12355    17001    812    2013-05-26 08:38:45    2013-05-26 08:38:45
12356    14163    590    2014-08-11 10:21:47    2014-08-11 10:21:47
12357    19883    484    2014-10-20 14:17:59    2014-10-20 14:17:59
12358    10011    918    2013-09-29 07:18:54    2013-09-29 07:18:54
12359    11893    527    2015-03-18 21:31:07    2015-03-18 21:31:07
12360    10244    538    2014-10-17 13:59:38    2014-10-17 13:59:38
12361    15755    622    2014-10-18 10:54:28    2014-10-18 10:54:28
12362    10711    593    2015-04-13 18:14:52    2015-04-13 18:14:52
12363    19098    770    2014-11-22 08:09:50    2014-11-22 08:09:50
12364    12722    608    2013-09-25 10:51:35    2013-09-25 10:51:35
12365    16875    506    2014-09-01 09:01:38    2014-09-01 09:01:38
12366    15973    620    2014-11-29 13:32:08    2014-11-29 13:32:08
12367    16090    927    2015-01-02 10:17:55    2015-01-02 10:17:55
12368    16635    660    2014-12-27 08:31:08    2014-12-27 08:31:08
12369    19481    588    2016-03-17 05:05:08    2016-03-17 05:05:08
12370    18377    674    2016-03-31 22:26:26    2016-03-31 22:26:26
12371    10560    817    2015-06-27 02:51:28    2015-06-27 02:51:28
12372    19475    594    2013-10-08 01:03:13    2013-10-08 01:03:13
12373    11149    713    2013-07-23 23:12:16    2013-07-23 23:12:16
12374    17032    819    2014-10-24 21:40:42    2014-10-24 21:40:42
12375    16181    573    2014-01-31 10:05:27    2014-01-31 10:05:27
12376    19590    643    2016-01-04 18:11:49    2016-01-04 18:11:49
12377    13363    879    2013-07-03 02:29:54    2013-07-03 02:29:54
12378    13441    467    2016-01-28 19:10:52    2016-01-28 19:10:52
12379    17211    714    2013-08-10 17:58:18    2013-08-10 17:58:18
12380    19009    497    2015-11-13 11:43:20    2015-11-13 11:43:20
12381    16802    933    2016-01-10 07:45:47    2016-01-10 07:45:47
12382    13589    800    2013-06-04 00:47:52    2013-06-04 00:47:52
12383    18414    887    2014-08-29 03:39:04    2014-08-29 03:39:04
12384    13555    654    2013-07-12 00:32:29    2013-07-12 00:32:29
12385    10910    624    2016-04-07 07:59:02    2016-04-07 07:59:02
12386    18344    557    2013-09-18 21:56:42    2013-09-18 21:56:42
12387    10865    566    2013-10-08 20:16:34    2013-10-08 20:16:34
12388    13534    631    2013-06-17 21:33:00    2013-06-17 21:33:00
12389    11501    465    2015-02-05 18:53:34    2015-02-05 18:53:34
12390    16795    945    2015-03-04 14:30:02    2015-03-04 14:30:02
12391    12879    821    2014-10-02 13:57:53    2014-10-02 13:57:53
12392    10053    658    2016-01-10 19:32:32    2016-01-10 19:32:32
12393    19009    745    2015-08-21 12:33:42    2015-08-21 12:33:42
12394    10546    523    2015-05-21 11:19:44    2015-05-21 11:19:44
12395    13115    844    2013-10-07 23:47:40    2013-10-07 23:47:40
12396    12985    840    2014-07-05 03:21:33    2014-07-05 03:21:33
12397    11177    620    2015-12-08 21:57:49    2015-12-08 21:57:49
12398    14921    838    2015-08-30 04:11:41    2015-08-30 04:11:41
12399    15235    670    2015-04-24 04:48:53    2015-04-24 04:48:53
12400    19836    597    2016-02-01 03:09:42    2016-02-01 03:09:42
12401    19904    658    2014-06-23 11:20:00    2014-06-23 11:20:00
12402    16116    466    2013-04-30 23:37:54    2013-04-30 23:37:54
12403    17156    620    2015-07-09 19:58:33    2015-07-09 19:58:33
12404    19957    609    2014-01-08 19:18:56    2014-01-08 19:18:56
12405    12935    675    2013-08-12 11:31:07    2013-08-12 11:31:07
12406    14398    902    2013-10-29 22:17:13    2013-10-29 22:17:13
12407    18336    909    2013-10-25 07:39:14    2013-10-25 07:39:14
12408    18011    532    2015-07-04 01:58:49    2015-07-04 01:58:49
12409    12962    574    2014-02-24 15:39:02    2014-02-24 15:39:02
12410    17828    569    2014-01-09 06:43:03    2014-01-09 06:43:03
12411    19263    749    2016-02-16 14:17:32    2016-02-16 14:17:32
12412    17239    607    2015-10-16 04:21:35    2015-10-16 04:21:35
12413    17665    611    2016-01-17 15:48:43    2016-01-17 15:48:43
12414    17851    639    2013-11-29 09:30:05    2013-11-29 09:30:05
12415    17539    927    2015-07-29 10:46:05    2015-07-29 10:46:05
12416    12021    817    2014-08-07 00:38:05    2014-08-07 00:38:05
12417    13612    487    2014-08-17 12:18:16    2014-08-17 12:18:16
12418    13896    559    2016-03-10 05:21:56    2016-03-10 05:21:56
12419    16469    938    2015-06-15 11:46:47    2015-06-15 11:46:47
12420    11906    956    2014-11-19 23:16:03    2014-11-19 23:16:03
12421    13782    494    2015-10-10 12:42:13    2015-10-10 12:42:13
12422    18434    826    2015-09-03 20:22:20    2015-09-03 20:22:20
12423    16295    835    2016-04-19 04:48:52    2016-04-19 04:48:52
12424    17556    925    2016-01-04 14:02:35    2016-01-04 14:02:35
12425    18260    675    2013-06-15 14:03:38    2013-06-15 14:03:38
12426    12342    501    2014-08-01 13:01:23    2014-08-01 13:01:23
12427    16869    796    2015-05-22 14:49:05    2015-05-22 14:49:05
12428    10741    507    2015-11-22 02:11:12    2015-11-22 02:11:12
12429    12752    505    2013-09-13 00:15:44    2013-09-13 00:15:44
12430    14760    649    2014-03-23 18:11:52    2014-03-23 18:11:52
12431    19587    645    2014-07-10 22:37:14    2014-07-10 22:37:14
12432    11146    499    2015-12-24 14:25:08    2015-12-24 14:25:08
12433    16337    470    2015-08-09 16:56:46    2015-08-09 16:56:46
12434    14070    639    2013-11-27 17:27:42    2013-11-27 17:27:42
12435    18173    649    2013-07-15 04:24:21    2013-07-15 04:24:21
12436    15643    870    2015-08-23 23:34:21    2015-08-23 23:34:21
12437    17599    544    2014-02-20 17:17:31    2014-02-20 17:17:31
12438    16659    730    2014-01-09 03:46:21    2014-01-09 03:46:21
12439    19559    850    2014-06-19 11:48:35    2014-06-19 11:48:35
12440    11272    704    2014-04-08 00:25:01    2014-04-08 00:25:01
12441    12703    470    2013-10-30 11:01:12    2013-10-30 11:01:12
12442    12267    900    2013-11-10 01:36:09    2013-11-10 01:36:09
12443    15724    701    2015-07-27 20:03:38    2015-07-27 20:03:38
12444    12309    547    2014-09-05 14:31:14    2014-09-05 14:31:14
12445    14522    932    2014-08-08 20:34:49    2014-08-08 20:34:49
12446    11404    955    2013-08-27 05:59:41    2013-08-27 05:59:41
12447    17032    584    2014-09-09 13:49:00    2014-09-09 13:49:00
12448    15056    588    2014-04-23 01:07:27    2014-04-23 01:07:27
12449    17949    503    2014-08-09 18:33:50    2014-08-09 18:33:50
12450    17912    707    2015-03-27 11:05:40    2015-03-27 11:05:40
12451    19217    891    2013-06-29 14:04:50    2013-06-29 14:04:50
12452    17702    529    2016-03-24 20:00:48    2016-03-24 20:00:48
12453    13956    530    2015-03-13 14:20:37    2015-03-13 14:20:37
12454    18598    921    2014-01-28 02:26:09    2014-01-28 02:26:09
12455    15924    895    2014-03-03 06:26:42    2014-03-03 06:26:42
12456    10733    659    2014-06-10 01:32:51    2014-06-10 01:32:51
12457    17840    706    2016-01-09 09:36:08    2016-01-09 09:36:08
12458    19429    904    2014-05-24 07:27:43    2014-05-24 07:27:43
12459    14657    503    2014-01-14 02:26:54    2014-01-14 02:26:54
12460    11525    960    2014-04-24 17:10:53    2014-04-24 17:10:53
12461    18258    770    2014-05-07 15:35:55    2014-05-07 15:35:55
12462    15955    500    2015-07-01 08:56:24    2015-07-01 08:56:24
12463    13011    555    2014-07-07 13:02:32    2014-07-07 13:02:32
12464    16955    890    2013-11-29 18:30:16    2013-11-29 18:30:16
12465    12584    894    2015-06-29 03:40:23    2015-06-29 03:40:23
12466    10349    469    2013-07-31 18:06:11    2013-07-31 18:06:11
12467    18472    596    2015-07-21 21:09:59    2015-07-21 21:09:59
12468    19151    465    2016-01-13 02:00:50    2016-01-13 02:00:50
12469    19843    668    2013-08-28 06:50:59    2013-08-28 06:50:59
12470    16656    586    2015-12-21 04:57:29    2015-12-21 04:57:29
12471    19837    741    2014-02-14 10:18:36    2014-02-14 10:18:36
12472    19782    806    2013-11-21 17:39:27    2013-11-21 17:39:27
12473    17456    872    2015-12-26 02:17:04    2015-12-26 02:17:04
12474    19691    481    2014-11-17 23:45:10    2014-11-17 23:45:10
12475    12989    677    2014-05-12 06:22:43    2014-05-12 06:22:43
12476    11630    554    2014-04-09 23:37:08    2014-04-09 23:37:08
12477    18185    537    2014-04-09 18:50:32    2014-04-09 18:50:32
12478    19241    668    2015-09-16 09:47:51    2015-09-16 09:47:51
12479    14014    672    2014-04-06 18:17:48    2014-04-06 18:17:48
12480    15495    677    2013-12-24 07:22:35    2013-12-24 07:22:35
12481    13107    478    2014-05-22 17:46:35    2014-05-22 17:46:35
12482    17552    704    2015-04-10 05:22:14    2015-04-10 05:22:14
12483    15784    667    2013-11-28 23:36:19    2013-11-28 23:36:19
12484    15675    878    2014-04-12 12:46:30    2014-04-12 12:46:30
12485    18179    699    2015-04-09 23:25:36    2015-04-09 23:25:36
12486    11366    908    2014-10-22 17:50:55    2014-10-22 17:50:55
12487    14419    488    2015-04-04 23:18:56    2015-04-04 23:18:56
12488    17074    555    2015-06-20 08:44:29    2015-06-20 08:44:29
12489    14106    555    2013-08-16 15:53:39    2013-08-16 15:53:39
12490    18561    591    2014-12-07 05:12:46    2014-12-07 05:12:46
12491    18651    782    2014-10-21 01:27:25    2014-10-21 01:27:25
12492    10638    565    2015-01-13 13:31:37    2015-01-13 13:31:37
12493    17319    523    2015-02-16 09:27:37    2015-02-16 09:27:37
12494    17665    730    2015-03-16 13:35:39    2015-03-16 13:35:39
12495    10044    715    2013-09-12 10:36:17    2013-09-12 10:36:17
12496    13011    623    2013-10-09 22:59:47    2013-10-09 22:59:47
12497    11188    655    2016-01-24 08:50:51    2016-01-24 08:50:51
12498    16369    775    2014-05-18 19:28:48    2014-05-18 19:28:48
12499    14542    705    2015-05-29 19:00:55    2015-05-29 19:00:55
12500    15394    830    2016-01-13 15:22:38    2016-01-13 15:22:38
12501    19421    575    2015-09-11 21:44:36    2015-09-11 21:44:36
12502    12569    634    2014-10-09 14:20:16    2014-10-09 14:20:16
12503    16918    488    2013-07-23 08:54:25    2013-07-23 08:54:25
12504    19389    545    2016-02-19 02:25:07    2016-02-19 02:25:07
12505    18350    720    2014-04-07 01:54:48    2014-04-07 01:54:48
12506    18079    652    2015-02-20 07:07:04    2015-02-20 07:07:04
12507    13047    647    2013-07-16 20:08:26    2013-07-16 20:08:26
12508    15664    786    2015-12-14 23:06:36    2015-12-14 23:06:36
12509    13002    669    2016-03-11 19:31:26    2016-03-11 19:31:26
12510    16745    717    2015-01-23 10:42:21    2015-01-23 10:42:21
12511    19424    737    2013-11-04 05:36:47    2013-11-04 05:36:47
12512    15642    624    2015-12-02 20:50:37    2015-12-02 20:50:37
12513    11783    771    2015-04-08 11:31:42    2015-04-08 11:31:42
12514    11339    659    2014-10-21 12:07:09    2014-10-21 12:07:09
12515    11954    549    2013-09-23 16:24:38    2013-09-23 16:24:38
12516    12760    713    2014-05-01 08:29:46    2014-05-01 08:29:46
12517    10449    509    2015-04-15 12:47:01    2015-04-15 12:47:01
12518    16278    869    2015-07-26 11:23:41    2015-07-26 11:23:41
12519    14403    533    2014-07-20 00:25:36    2014-07-20 00:25:36
12520    15102    509    2014-07-26 11:11:29    2014-07-26 11:11:29
12521    15693    729    2013-10-02 03:08:52    2013-10-02 03:08:52
12522    14691    904    2015-10-05 19:03:37    2015-10-05 19:03:37
12523    11797    866    2015-05-05 07:27:09    2015-05-05 07:27:09
12524    15718    816    2014-08-07 12:26:24    2014-08-07 12:26:24
12525    16934    505    2013-12-07 02:44:54    2013-12-07 02:44:54
12526    15887    635    2015-09-29 22:16:06    2015-09-29 22:16:06
12527    16149    524    2016-01-20 07:48:38    2016-01-20 07:48:38
12528    19750    762    2016-01-20 23:38:25    2016-01-20 23:38:25
12529    10791    506    2014-07-03 14:45:35    2014-07-03 14:45:35
12530    10493    604    2016-03-30 11:45:46    2016-03-30 11:45:46
12531    13857    545    2013-12-29 02:47:24    2013-12-29 02:47:24
12532    12370    502    2015-10-16 13:13:16    2015-10-16 13:13:16
12533    14186    587    2015-10-02 01:54:33    2015-10-02 01:54:33
12534    19722    662    2013-07-11 18:18:00    2013-07-11 18:18:00
12535    18457    876    2016-02-07 04:16:39    2016-02-07 04:16:39
12536    14846    929    2014-11-23 10:04:48    2014-11-23 10:04:48
12537    11154    505    2015-07-02 23:03:21    2015-07-02 23:03:21
12538    19346    779    2015-08-26 03:38:07    2015-08-26 03:38:07
12539    14025    619    2016-01-22 13:41:56    2016-01-22 13:41:56
12540    14326    679    2014-08-19 04:09:18    2014-08-19 04:09:18
12541    17863    485    2015-04-24 02:10:11    2015-04-24 02:10:11
12542    17635    806    2015-07-25 03:04:27    2015-07-25 03:04:27
12543    14941    921    2015-07-26 20:13:11    2015-07-26 20:13:11
12544    13453    941    2014-08-22 10:23:46    2014-08-22 10:23:46
12545    15411    608    2015-07-16 21:03:50    2015-07-16 21:03:50
12546    11907    843    2015-04-02 15:44:40    2015-04-02 15:44:40
12547    12521    940    2015-01-07 07:41:53    2015-01-07 07:41:53
12548    14682    909    2015-02-26 08:29:29    2015-02-26 08:29:29
12549    14100    765    2014-07-09 20:00:31    2014-07-09 20:00:31
12550    14688    523    2015-10-22 21:51:46    2015-10-22 21:51:46
12551    13125    958    2013-07-22 00:07:05    2013-07-22 00:07:05
12552    14670    477    2014-12-28 16:00:35    2014-12-28 16:00:35
12553    11101    910    2016-03-08 08:52:10    2016-03-08 08:52:10
12554    13676    958    2015-03-18 18:46:49    2015-03-18 18:46:49
12555    12910    714    2014-01-19 14:08:00    2014-01-19 14:08:00
12556    19215    749    2015-07-09 03:48:17    2015-07-09 03:48:17
12557    12384    827    2013-06-05 23:56:33    2013-06-05 23:56:33
12558    18110    931    2013-06-06 02:15:44    2013-06-06 02:15:44
12559    11724    502    2014-12-30 20:12:59    2014-12-30 20:12:59
12560    15998    574    2016-03-19 05:44:40    2016-03-19 05:44:40
12561    12379    873    2015-01-20 01:45:44    2015-01-20 01:45:44
12562    18611    767    2015-02-11 19:37:46    2015-02-11 19:37:46
12563    19710    648    2013-08-07 05:11:29    2013-08-07 05:11:29
12564    13983    642    2016-01-27 16:06:15    2016-01-27 16:06:15
12565    14075    723    2014-08-20 19:43:57    2014-08-20 19:43:57
12566    17401    849    2013-11-17 15:42:59    2013-11-17 15:42:59
12567    11157    850    2015-03-23 02:37:25    2015-03-23 02:37:25
12568    19537    866    2015-03-07 21:12:32    2015-03-07 21:12:32
12569    10073    921    2014-05-31 21:26:36    2014-05-31 21:26:36
12570    19969    593    2014-11-07 11:55:27    2014-11-07 11:55:27
12571    19463    748    2014-03-12 13:37:46    2014-03-12 13:37:46
12572    16721    544    2015-02-24 18:51:00    2015-02-24 18:51:00
12573    16491    792    2014-12-29 02:14:42    2014-12-29 02:14:42
12574    15243    893    2014-05-28 07:05:26    2014-05-28 07:05:26
12575    14031    588    2014-05-27 17:40:35    2014-05-27 17:40:35
12576    17192    938    2013-07-06 12:57:58    2013-07-06 12:57:58
12577    11818    917    2013-04-29 20:06:11    2013-04-29 20:06:11
12578    11126    479    2013-06-30 16:17:17    2013-06-30 16:17:17
12579    16586    658    2014-12-22 04:14:32    2014-12-22 04:14:32
12580    19160    475    2014-07-18 16:14:13    2014-07-18 16:14:13
12581    15221    893    2014-10-29 23:53:00    2014-10-29 23:53:00
12582    11664    638    2015-03-09 03:55:36    2015-03-09 03:55:36
12583    19233    469    2014-09-04 02:00:07    2014-09-04 02:00:07
12584    14031    550    2014-08-22 02:05:45    2014-08-22 02:05:45
12585    14563    644    2016-04-05 08:04:30    2016-04-05 08:04:30
12586    17140    553    2014-07-01 15:37:07    2014-07-01 15:37:07
12587    13594    854    2013-06-18 11:32:23    2013-06-18 11:32:23
12588    11207    837    2016-01-22 06:21:12    2016-01-22 06:21:12
12589    18571    935    2013-09-23 21:31:11    2013-09-23 21:31:11
12590    19018    753    2015-09-25 23:14:13    2015-09-25 23:14:13
12591    12503    519    2016-03-28 21:50:57    2016-03-28 21:50:57
12592    16338    956    2013-09-22 00:36:00    2013-09-22 00:36:00
12593    17054    854    2013-06-28 04:03:29    2013-06-28 04:03:29
12594    15203    788    2015-10-12 03:58:42    2015-10-12 03:58:42
12595    10198    873    2014-06-17 10:47:55    2014-06-17 10:47:55
12596    17530    630    2014-05-13 11:13:53    2014-05-13 11:13:53
12597    15239    522    2014-12-02 23:38:56    2014-12-02 23:38:56
12598    13853    914    2013-05-06 08:59:19    2013-05-06 08:59:19
12599    15229    676    2013-07-06 08:58:07    2013-07-06 08:58:07
12600    15511    751    2013-10-29 00:20:49    2013-10-29 00:20:49
12601    15957    669    2015-05-29 21:59:17    2015-05-29 21:59:17
12602    18685    932    2013-10-08 05:35:58    2013-10-08 05:35:58
12603    14333    959    2013-06-08 13:58:45    2013-06-08 13:58:45
12604    12853    757    2014-12-31 09:59:06    2014-12-31 09:59:06
12605    12912    931    2014-06-04 04:21:58    2014-06-04 04:21:58
12606    17919    696    2015-07-25 02:09:44    2015-07-25 02:09:44
12607    14931    821    2015-06-07 01:26:30    2015-06-07 01:26:30
12608    13471    625    2015-07-17 05:49:16    2015-07-17 05:49:16
12609    14279    644    2014-08-25 19:37:20    2014-08-25 19:37:20
12610    14389    767    2014-06-04 23:07:56    2014-06-04 23:07:56
12611    11469    944    2016-03-07 19:57:17    2016-03-07 19:57:17
12612    14258    586    2014-10-21 11:15:30    2014-10-21 11:15:30
12613    13991    674    2014-09-20 08:38:55    2014-09-20 08:38:55
12614    17421    929    2014-01-15 11:14:09    2014-01-15 11:14:09
12615    11655    672    2014-07-19 11:27:14    2014-07-19 11:27:14
12616    11694    659    2014-03-10 20:13:17    2014-03-10 20:13:17
12617    18491    730    2015-03-18 03:51:15    2015-03-18 03:51:15
12618    15511    793    2014-08-06 18:06:24    2014-08-06 18:06:24
12619    16881    607    2013-08-21 11:33:55    2013-08-21 11:33:55
12620    17213    807    2013-08-11 09:37:36    2013-08-11 09:37:36
12621    16656    883    2016-01-06 21:37:23    2016-01-06 21:37:23
12622    13543    523    2014-06-08 17:17:45    2014-06-08 17:17:45
12623    15556    886    2015-12-03 04:15:48    2015-12-03 04:15:48
12624    15996    729    2013-09-07 14:38:59    2013-09-07 14:38:59
12625    12372    937    2015-01-19 11:05:26    2015-01-19 11:05:26
12626    12772    803    2013-10-13 20:02:55    2013-10-13 20:02:55
12627    17276    703    2014-07-05 20:41:39    2014-07-05 20:41:39
12628    16694    466    2015-04-27 21:20:55    2015-04-27 21:20:55
12629    11973    536    2015-08-31 02:28:40    2015-08-31 02:28:40
12630    10222    647    2013-11-29 17:18:50    2013-11-29 17:18:50
12631    13827    554    2014-10-22 01:34:05    2014-10-22 01:34:05
12632    16933    644    2015-11-03 08:09:29    2015-11-03 08:09:29
12633    16172    888    2015-12-21 00:18:30    2015-12-21 00:18:30
12634    15955    650    2014-01-13 07:33:54    2014-01-13 07:33:54
12635    12371    688    2014-01-12 16:11:12    2014-01-12 16:11:12
12636    19150    834    2014-07-30 14:19:48    2014-07-30 14:19:48
12637    15846    772    2014-12-13 00:41:28    2014-12-13 00:41:28
12638    18470    776    2015-07-19 07:54:33    2015-07-19 07:54:33
12639    16972    583    2015-12-19 07:30:23    2015-12-19 07:30:23
12640    19864    546    2014-09-11 00:15:47    2014-09-11 00:15:47
12641    10762    467    2013-09-15 19:58:21    2013-09-15 19:58:21
12642    13033    583    2015-01-15 16:20:32    2015-01-15 16:20:32
12643    17453    929    2013-12-14 18:05:45    2013-12-14 18:05:45
12644    11408    760    2016-01-06 20:01:16    2016-01-06 20:01:16
12645    10357    741    2015-09-05 14:19:05    2015-09-05 14:19:05
12646    17518    759    2013-09-03 17:50:01    2013-09-03 17:50:01
12647    13457    780    2016-04-03 01:15:00    2016-04-03 01:15:00
12648    12945    467    2013-10-14 15:07:39    2013-10-14 15:07:39
12649    16162    494    2015-02-17 03:44:12    2015-02-17 03:44:12
12650    14117    611    2015-01-06 15:51:56    2015-01-06 15:51:56
12651    18564    484    2014-09-11 01:30:38    2014-09-11 01:30:38
12652    19671    936    2013-05-21 02:37:01    2013-05-21 02:37:01
12653    19922    847    2014-05-08 21:19:35    2014-05-08 21:19:35
12654    10271    940    2014-03-22 08:33:13    2014-03-22 08:33:13
12655    19396    825    2015-07-19 23:19:27    2015-07-19 23:19:27
12656    19945    897    2015-07-23 20:45:54    2015-07-23 20:45:54
12657    17034    815    2013-11-07 15:38:40    2013-11-07 15:38:40
12658    15209    942    2015-08-18 09:08:05    2015-08-18 09:08:05
12659    13859    697    2013-10-13 05:05:28    2013-10-13 05:05:28
12660    19686    657    2014-07-13 10:08:36    2014-07-13 10:08:36
12661    18829    747    2014-04-11 09:16:23    2014-04-11 09:16:23
12662    19797    497    2015-01-22 05:36:16    2015-01-22 05:36:16
12663    12179    650    2015-05-07 02:05:56    2015-05-07 02:05:56
12664    10861    760    2015-09-04 16:35:24    2015-09-04 16:35:24
12665    19616    927    2014-01-15 18:58:22    2014-01-15 18:58:22
12666    17652    533    2014-02-09 19:11:11    2014-02-09 19:11:11
12667    14336    646    2015-11-17 21:05:50    2015-11-17 21:05:50
12668    18185    930    2015-07-16 14:54:31    2015-07-16 14:54:31
12669    19827    935    2014-12-31 17:29:57    2014-12-31 17:29:57
12670    10711    536    2015-11-01 22:56:48    2015-11-01 22:56:48
12671    14265    957    2014-07-26 18:38:33    2014-07-26 18:38:33
12672    16015    626    2016-02-18 04:11:23    2016-02-18 04:11:23
12673    18205    518    2014-10-15 19:52:41    2014-10-15 19:52:41
12674    12600    939    2015-01-27 23:54:39    2015-01-27 23:54:39
12675    14618    878    2015-07-09 15:34:06    2015-07-09 15:34:06
12676    15626    529    2014-09-09 23:32:17    2014-09-09 23:32:17
12677    14593    504    2014-01-12 02:09:26    2014-01-12 02:09:26
12678    13380    491    2015-08-17 13:23:19    2015-08-17 13:23:19
12679    17135    919    2015-10-02 16:33:17    2015-10-02 16:33:17
12680    12163    503    2016-03-31 21:01:05    2016-03-31 21:01:05
12681    17157    839    2014-10-19 13:48:13    2014-10-19 13:48:13
12682    17347    584    2014-07-30 06:20:32    2014-07-30 06:20:32
12683    12873    875    2015-04-19 20:14:11    2015-04-19 20:14:11
12684    15473    600    2013-09-25 19:31:07    2013-09-25 19:31:07
12685    15298    773    2013-09-14 00:48:42    2013-09-14 00:48:42
12686    12151    621    2013-08-22 12:17:17    2013-08-22 12:17:17
12687    17202    737    2013-09-02 02:04:13    2013-09-02 02:04:13
12688    11615    753    2015-01-30 01:31:07    2015-01-30 01:31:07
12689    17337    893    2014-09-06 08:21:10    2014-09-06 08:21:10
12690    15289    709    2015-04-17 02:07:24    2015-04-17 02:07:24
12691    18394    810    2015-03-23 07:32:42    2015-03-23 07:32:42
12692    14212    630    2016-04-16 17:27:55    2016-04-16 17:27:55
12693    10179    675    2015-05-09 11:19:56    2015-05-09 11:19:56
12694    11534    531    2015-05-30 03:18:19    2015-05-30 03:18:19
12695    19589    797    2015-05-10 16:25:54    2015-05-10 16:25:54
12696    16473    703    2015-05-12 12:58:49    2015-05-12 12:58:49
12697    15425    847    2014-05-15 17:33:43    2014-05-15 17:33:43
12698    10774    760    2014-03-18 05:27:52    2014-03-18 05:27:52
12699    15330    953    2015-02-14 07:48:32    2015-02-14 07:48:32
12700    19462    788    2015-11-02 09:23:15    2015-11-02 09:23:15
12701    14146    632    2014-05-03 18:21:16    2014-05-03 18:21:16
12702    11855    739    2013-06-30 18:43:48    2013-06-30 18:43:48
12703    19369    716    2013-06-18 20:28:49    2013-06-18 20:28:49
12704    16422    791    2014-05-03 08:22:16    2014-05-03 08:22:16
12705    11099    875    2013-12-06 02:06:49    2013-12-06 02:06:49
12706    11187    804    2013-07-17 18:48:23    2013-07-17 18:48:23
12707    14036    943    2014-09-08 13:50:40    2014-09-08 13:50:40
12708    10876    834    2013-09-01 19:25:18    2013-09-01 19:25:18
12709    17296    725    2015-01-07 06:28:51    2015-01-07 06:28:51
12710    10118    860    2015-02-01 00:58:25    2015-02-01 00:58:25
12711    14962    960    2013-09-18 14:58:44    2013-09-18 14:58:44
12712    12029    713    2016-01-25 02:00:31    2016-01-25 02:00:31
12713    16187    677    2014-03-11 05:38:41    2014-03-11 05:38:41
12714    12065    787    2015-12-14 01:16:54    2015-12-14 01:16:54
12715    19324    959    2016-02-21 10:00:21    2016-02-21 10:00:21
12716    11137    896    2013-12-28 06:18:48    2013-12-28 06:18:48
12717    15306    740    2015-07-19 00:30:16    2015-07-19 00:30:16
12718    12373    481    2013-09-05 17:54:38    2013-09-05 17:54:38
12719    10049    895    2015-03-25 22:56:23    2015-03-25 22:56:23
12720    10401    694    2015-09-11 01:04:10    2015-09-11 01:04:10
12721    16297    710    2014-04-21 21:01:01    2014-04-21 21:01:01
12722    16598    746    2015-03-26 10:05:09    2015-03-26 10:05:09
12723    12877    508    2013-07-08 20:05:45    2013-07-08 20:05:45
12724    14090    660    2013-05-15 16:40:51    2013-05-15 16:40:51
12725    17974    778    2014-03-28 16:04:02    2014-03-28 16:04:02
12726    12981    667    2013-09-24 09:18:25    2013-09-24 09:18:25
12727    10852    615    2015-07-30 15:58:48    2015-07-30 15:58:48
12728    13154    736    2014-10-30 06:23:03    2014-10-30 06:23:03
12729    19547    891    2014-03-15 00:48:55    2014-03-15 00:48:55
12730    10166    930    2015-08-07 03:49:20    2015-08-07 03:49:20
12731    17031    793    2014-10-28 12:07:23    2014-10-28 12:07:23
12732    15177    839    2015-11-12 15:24:07    2015-11-12 15:24:07
12733    13044    818    2014-09-17 01:10:48    2014-09-17 01:10:48
12734    17903    719    2013-04-23 07:02:00    2013-04-23 07:02:00
12735    15251    804    2013-05-03 23:55:39    2013-05-03 23:55:39
12736    16417    738    2016-03-11 21:17:57    2016-03-11 21:17:57
12737    11991    776    2016-04-14 13:52:18    2016-04-14 13:52:18
12738    16046    892    2014-05-29 02:43:28    2014-05-29 02:43:28
12739    19626    859    2015-09-13 21:17:09    2015-09-13 21:17:09
12740    18832    498    2015-07-29 10:32:42    2015-07-29 10:32:42
12741    17084    808    2016-04-06 09:48:36    2016-04-06 09:48:36
12742    14976    845    2015-03-11 09:48:20    2015-03-11 09:48:20
12743    16247    769    2016-01-06 08:24:54    2016-01-06 08:24:54
12744    14719    674    2015-08-16 12:30:42    2015-08-16 12:30:42
12745    15890    881    2013-08-24 10:50:51    2013-08-24 10:50:51
12746    13611    473    2013-04-23 17:48:56    2013-04-23 17:48:56
12747    10730    496    2015-02-08 19:04:31    2015-02-08 19:04:31
12748    19141    729    2013-12-01 04:37:21    2013-12-01 04:37:21
12749    19280    634    2016-03-30 21:47:53    2016-03-30 21:47:53
12750    13140    536    2014-04-04 09:25:15    2014-04-04 09:25:15
12751    19312    590    2015-05-13 10:14:31    2015-05-13 10:14:31
12752    12629    748    2014-09-20 10:33:10    2014-09-20 10:33:10
12753    11848    859    2014-03-04 21:21:46    2014-03-04 21:21:46
12754    17013    869    2014-12-15 17:30:27    2014-12-15 17:30:27
12755    12081    835    2014-06-13 01:57:49    2014-06-13 01:57:49
12756    10196    843    2016-01-08 00:38:49    2016-01-08 00:38:49
12757    19991    728    2014-10-06 04:14:44    2014-10-06 04:14:44
12758    15228    863    2014-06-23 18:23:07    2014-06-23 18:23:07
12759    10063    493    2013-10-21 03:19:09    2013-10-21 03:19:09
12760    10793    785    2013-07-27 16:09:15    2013-07-27 16:09:15
12761    15231    797    2014-04-01 05:28:25    2014-04-01 05:28:25
12762    17094    584    2013-05-10 07:01:32    2013-05-10 07:01:32
12763    17475    657    2014-06-27 01:24:35    2014-06-27 01:24:35
12764    16914    673    2016-01-20 01:16:02    2016-01-20 01:16:02
12765    16643    693    2015-04-29 16:25:08    2015-04-29 16:25:08
12766    15621    925    2013-10-19 15:54:29    2013-10-19 15:54:29
12767    14317    660    2016-04-19 10:27:23    2016-04-19 10:27:23
12768    12114    742    2014-07-17 00:09:41    2014-07-17 00:09:41
12769    12176    895    2014-03-25 02:12:44    2014-03-25 02:12:44
12770    19237    553    2014-07-29 14:03:46    2014-07-29 14:03:46
12771    18902    933    2013-08-17 02:39:23    2013-08-17 02:39:23
12772    18748    724    2013-06-30 04:11:03    2013-06-30 04:11:03
12773    18358    576    2014-03-15 18:58:09    2014-03-15 18:58:09
12774    14055    716    2015-06-28 22:52:35    2015-06-28 22:52:35
12775    10246    895    2015-09-02 01:46:10    2015-09-02 01:46:10
12776    13815    528    2013-09-10 12:20:19    2013-09-10 12:20:19
12777    17423    795    2016-03-04 05:18:34    2016-03-04 05:18:34
12778    16285    581    2015-10-11 20:40:55    2015-10-11 20:40:55
12779    11377    694    2014-12-31 21:41:26    2014-12-31 21:41:26
12780    10083    844    2015-01-11 23:52:18    2015-01-11 23:52:18
12781    15633    930    2016-03-10 05:25:27    2016-03-10 05:25:27
12782    12051    638    2015-10-07 15:50:25    2015-10-07 15:50:25
12783    12883    579    2015-01-16 20:18:44    2015-01-16 20:18:44
12784    17036    500    2013-12-06 03:18:11    2013-12-06 03:18:11
12785    11139    619    2015-08-01 01:32:16    2015-08-01 01:32:16
12786    18029    922    2014-09-17 20:39:27    2014-09-17 20:39:27
12787    18962    574    2013-11-28 00:53:26    2013-11-28 00:53:26
12788    13509    877    2014-02-20 08:22:41    2014-02-20 08:22:41
12789    11736    899    2013-12-20 00:56:03    2013-12-20 00:56:03
12790    16262    591    2014-07-04 12:05:01    2014-07-04 12:05:01
12791    17342    685    2015-06-15 16:40:46    2015-06-15 16:40:46
12792    18910    631    2014-02-10 12:40:05    2014-02-10 12:40:05
12793    12530    841    2013-09-29 06:06:37    2013-09-29 06:06:37
12794    16333    757    2016-01-20 18:08:04    2016-01-20 18:08:04
12795    17234    876    2015-12-26 05:00:41    2015-12-26 05:00:41
12796    13998    738    2016-03-02 03:24:33    2016-03-02 03:24:33
12797    10709    473    2014-09-17 21:46:44    2014-09-17 21:46:44
12798    19813    543    2014-08-15 10:21:02    2014-08-15 10:21:02
12799    13977    634    2013-06-07 02:48:29    2013-06-07 02:48:29
12800    16765    530    2015-11-09 08:17:40    2015-11-09 08:17:40
12801    12446    646    2014-12-07 07:24:24    2014-12-07 07:24:24
12802    17080    713    2015-06-02 06:33:02    2015-06-02 06:33:02
12803    12422    917    2014-01-10 18:52:32    2014-01-10 18:52:32
12804    16568    668    2013-11-17 19:34:51    2013-11-17 19:34:51
12805    16415    780    2013-05-05 01:02:00    2013-05-05 01:02:00
12806    13569    675    2014-03-01 05:09:32    2014-03-01 05:09:32
12807    13187    546    2013-07-26 15:44:32    2013-07-26 15:44:32
12808    13371    832    2014-12-04 17:21:41    2014-12-04 17:21:41
12809    14912    831    2015-10-21 12:59:50    2015-10-21 12:59:50
12810    14557    490    2014-11-14 15:00:27    2014-11-14 15:00:27
12811    14507    775    2013-09-08 15:22:45    2013-09-08 15:22:45
12812    18022    657    2016-01-28 01:32:05    2016-01-28 01:32:05
12813    11264    731    2015-08-07 08:38:04    2015-08-07 08:38:04
12814    15877    855    2014-06-23 00:39:48    2014-06-23 00:39:48
12815    19448    519    2013-06-05 20:50:47    2013-06-05 20:50:47
12816    18315    857    2013-12-12 14:51:41    2013-12-12 14:51:41
12817    18931    799    2015-05-02 19:53:05    2015-05-02 19:53:05
12818    11509    517    2015-07-02 22:13:47    2015-07-02 22:13:47
12819    17044    946    2014-01-08 12:03:31    2014-01-08 12:03:31
12820    14484    595    2015-05-03 12:28:46    2015-05-03 12:28:46
12821    19626    559    2014-05-22 07:29:39    2014-05-22 07:29:39
12822    11102    522    2014-12-10 21:04:06    2014-12-10 21:04:06
12823    10146    698    2014-02-06 11:24:42    2014-02-06 11:24:42
12824    14167    955    2014-09-30 10:50:40    2014-09-30 10:50:40
12825    16698    553    2014-04-05 12:39:25    2014-04-05 12:39:25
12826    10651    530    2016-03-31 22:53:41    2016-03-31 22:53:41
12827    19078    551    2016-01-19 07:02:35    2016-01-19 07:02:35
12828    14571    585    2016-02-27 08:44:25    2016-02-27 08:44:25
12829    19796    725    2014-06-12 18:11:23    2014-06-12 18:11:23
12830    18475    589    2013-08-19 09:22:01    2013-08-19 09:22:01
12831    10561    678    2015-10-31 15:37:27    2015-10-31 15:37:27
12832    14650    496    2015-08-13 01:50:03    2015-08-13 01:50:03
12833    14551    648    2015-03-07 15:39:40    2015-03-07 15:39:40
12834    18859    722    2015-12-21 00:08:08    2015-12-21 00:08:08
12835    17565    631    2014-03-05 22:22:25    2014-03-05 22:22:25
12836    15980    481    2014-03-12 19:16:22    2014-03-12 19:16:22
12837    13049    464    2016-03-31 18:03:18    2016-03-31 18:03:18
12838    16830    780    2014-01-10 19:47:19    2014-01-10 19:47:19
12839    12515    761    2013-06-25 21:07:29    2013-06-25 21:07:29
12840    15789    696    2015-09-23 10:04:11    2015-09-23 10:04:11
12841    11547    814    2016-03-24 11:23:31    2016-03-24 11:23:31
12842    15567    725    2016-02-11 04:48:38    2016-02-11 04:48:38
12843    19237    539    2014-01-03 14:12:33    2014-01-03 14:12:33
12844    16792    630    2014-11-24 01:19:21    2014-11-24 01:19:21
12845    17215    533    2014-04-22 03:51:05    2014-04-22 03:51:05
12846    19040    738    2013-08-30 17:26:48    2013-08-30 17:26:48
12847    15739    592    2013-05-06 00:14:09    2013-05-06 00:14:09
12848    17806    711    2013-11-02 08:41:40    2013-11-02 08:41:40
12849    19675    928    2015-01-29 03:51:03    2015-01-29 03:51:03
12850    15530    527    2016-04-03 17:07:56    2016-04-03 17:07:56
12851    19143    831    2014-09-23 07:12:50    2014-09-23 07:12:50
12852    13074    502    2013-08-18 06:13:11    2013-08-18 06:13:11
12853    15924    612    2016-03-28 11:59:54    2016-03-28 11:59:54
12854    12879    672    2015-01-07 17:56:44    2015-01-07 17:56:44
12855    14254    560    2015-11-30 11:51:44    2015-11-30 11:51:44
12856    18852    563    2013-11-12 21:50:30    2013-11-12 21:50:30
12857    19429    626    2014-10-04 19:20:30    2014-10-04 19:20:30
12858    10757    546    2014-04-28 04:58:57    2014-04-28 04:58:57
12859    14871    592    2015-09-13 03:14:13    2015-09-13 03:14:13
12860    10611    537    2015-09-09 23:48:27    2015-09-09 23:48:27
12861    16674    660    2015-12-15 04:42:59    2015-12-15 04:42:59
12862    16066    620    2013-08-07 08:53:35    2013-08-07 08:53:35
12863    17420    902    2013-11-03 05:34:58    2013-11-03 05:34:58
12864    14115    489    2016-02-03 02:44:14    2016-02-03 02:44:14
12865    10832    902    2014-04-23 02:59:38    2014-04-23 02:59:38
12866    17147    867    2014-03-21 03:46:35    2014-03-21 03:46:35
12867    17362    690    2013-07-15 08:04:53    2013-07-15 08:04:53
12868    13401    489    2014-10-02 05:01:13    2014-10-02 05:01:13
12869    18254    738    2014-07-08 04:35:48    2014-07-08 04:35:48
12870    13948    688    2013-05-31 20:10:31    2013-05-31 20:10:31
12871    16439    523    2014-09-13 22:23:09    2014-09-13 22:23:09
12872    11540    577    2014-05-07 01:27:08    2014-05-07 01:27:08
12873    15245    918    2013-12-21 22:56:44    2013-12-21 22:56:44
12874    14556    650    2013-07-07 17:35:26    2013-07-07 17:35:26
12875    16898    619    2015-09-02 14:37:30    2015-09-02 14:37:30
12876    16494    677    2014-12-02 22:45:33    2014-12-02 22:45:33
12877    16698    503    2014-02-13 22:11:50    2014-02-13 22:11:50
12878    16637    768    2015-04-05 09:10:11    2015-04-05 09:10:11
12879    19293    676    2015-02-06 05:47:06    2015-02-06 05:47:06
12880    19280    746    2015-10-28 23:37:18    2015-10-28 23:37:18
12881    14672    632    2016-02-21 09:58:27    2016-02-21 09:58:27
12882    17160    546    2014-01-22 11:52:51    2014-01-22 11:52:51
12883    14438    764    2013-08-02 20:35:22    2013-08-02 20:35:22
12884    10432    775    2015-06-16 07:10:05    2015-06-16 07:10:05
12885    12878    936    2013-09-27 18:28:34    2013-09-27 18:28:34
12886    10672    737    2016-03-21 04:06:56    2016-03-21 04:06:56
12887    12324    661    2015-08-05 10:50:37    2015-08-05 10:50:37
12888    16714    831    2013-09-21 04:23:44    2013-09-21 04:23:44
12889    12653    919    2013-05-17 22:27:30    2013-05-17 22:27:30
12890    17585    897    2013-06-28 12:24:22    2013-06-28 12:24:22
12891    17773    744    2014-10-23 11:08:14    2014-10-23 11:08:14
12892    13680    874    2014-02-14 00:53:53    2014-02-14 00:53:53
12893    15763    598    2015-01-21 03:42:29    2015-01-21 03:42:29
12894    13018    782    2014-02-22 21:27:39    2014-02-22 21:27:39
12895    15437    499    2015-03-05 11:23:16    2015-03-05 11:23:16
12896    14653    546    2016-02-25 13:34:16    2016-02-25 13:34:16
12897    19083    829    2015-10-08 00:48:39    2015-10-08 00:48:39
12898    18911    826    2016-01-26 06:33:12    2016-01-26 06:33:12
12899    19005    471    2015-09-21 22:47:58    2015-09-21 22:47:58
12900    19755    467    2014-07-31 18:05:24    2014-07-31 18:05:24
12901    18355    512    2013-05-12 18:52:30    2013-05-12 18:52:30
12902    10525    776    2015-02-15 23:02:36    2015-02-15 23:02:36
12903    12561    627    2014-10-28 16:53:18    2014-10-28 16:53:18
12904    16889    672    2015-02-01 14:58:37    2015-02-01 14:58:37
12905    10322    943    2015-08-31 18:24:13    2015-08-31 18:24:13
12906    16212    576    2014-01-17 06:01:26    2014-01-17 06:01:26
12907    17518    833    2015-03-07 02:30:03    2015-03-07 02:30:03
12908    18889    802    2015-05-16 02:16:01    2015-05-16 02:16:01
12909    12128    649    2014-02-28 09:08:57    2014-02-28 09:08:57
12910    11666    840    2015-03-24 08:54:36    2015-03-24 08:54:36
12911    11725    514    2014-10-08 12:11:14    2014-10-08 12:11:14
12912    10600    643    2014-08-12 06:51:08    2014-08-12 06:51:08
12913    10690    771    2015-12-06 19:07:14    2015-12-06 19:07:14
12914    12143    597    2014-05-23 11:03:44    2014-05-23 11:03:44
12915    10439    726    2015-09-17 05:39:02    2015-09-17 05:39:02
12916    16872    921    2014-12-02 15:35:56    2014-12-02 15:35:56
12917    11666    938    2015-11-04 20:54:12    2015-11-04 20:54:12
12918    14379    672    2016-03-03 17:05:35    2016-03-03 17:05:35
12919    17219    749    2016-03-15 12:50:23    2016-03-15 12:50:23
12920    10200    903    2015-11-01 03:23:27    2015-11-01 03:23:27
12921    10011    930    2013-10-18 11:44:05    2013-10-18 11:44:05
12922    17990    905    2016-02-15 02:19:16    2016-02-15 02:19:16
12923    16446    936    2016-02-23 01:10:27    2016-02-23 01:10:27
12924    17068    672    2013-09-27 10:27:34    2013-09-27 10:27:34
12925    15477    555    2015-09-08 14:22:09    2015-09-08 14:22:09
12926    10001    805    2014-11-26 07:00:47    2014-11-26 07:00:47
12927    17690    720    2015-11-13 09:30:58    2015-11-13 09:30:58
12928    15240    916    2014-12-13 18:39:59    2014-12-13 18:39:59
12929    13472    849    2014-04-13 13:34:30    2014-04-13 13:34:30
12930    19158    830    2014-02-24 07:51:30    2014-02-24 07:51:30
12931    10310    526    2016-01-15 00:46:39    2016-01-15 00:46:39
12932    17578    696    2013-07-01 00:49:57    2013-07-01 00:49:57
12933    18132    645    2014-02-17 17:45:40    2014-02-17 17:45:40
12934    15823    853    2014-03-21 06:17:18    2014-03-21 06:17:18
12935    14861    572    2014-11-27 06:38:06    2014-11-27 06:38:06
12936    13483    689    2016-02-23 21:40:18    2016-02-23 21:40:18
12937    10424    532    2014-04-14 23:44:19    2014-04-14 23:44:19
12938    13064    917    2015-06-18 14:40:59    2015-06-18 14:40:59
12939    10572    905    2014-06-28 07:22:13    2014-06-28 07:22:13
12940    10052    926    2013-08-06 04:32:35    2013-08-06 04:32:35
12941    18723    926    2016-02-13 03:59:27    2016-02-13 03:59:27
12942    16839    923    2014-07-04 07:20:53    2014-07-04 07:20:53
12943    17739    759    2015-12-16 03:42:55    2015-12-16 03:42:55
12944    15177    729    2016-04-04 09:17:47    2016-04-04 09:17:47
12945    14810    909    2014-10-21 19:53:50    2014-10-21 19:53:50
12946    17368    692    2013-06-09 07:17:23    2013-06-09 07:17:23
12947    13907    934    2016-02-10 00:10:23    2016-02-10 00:10:23
12948    10498    885    2013-04-23 06:16:01    2013-04-23 06:16:01
12949    16039    534    2013-09-24 17:44:16    2013-09-24 17:44:16
12950    18287    878    2015-04-21 20:33:39    2015-04-21 20:33:39
12951    12567    608    2014-02-13 18:30:11    2014-02-13 18:30:11
12952    18478    672    2014-02-23 02:20:33    2014-02-23 02:20:33
12953    17665    690    2015-02-16 09:07:22    2015-02-16 09:07:22
12954    10594    550    2015-10-02 22:27:23    2015-10-02 22:27:23
12955    15330    520    2014-04-04 15:19:06    2014-04-04 15:19:06
12956    12801    659    2015-04-27 11:33:52    2015-04-27 11:33:52
12957    13819    673    2014-07-08 23:16:22    2014-07-08 23:16:22
12958    16140    593    2014-03-23 12:11:02    2014-03-23 12:11:02
12959    14415    842    2016-03-05 02:35:03    2016-03-05 02:35:03
12960    12075    654    2015-02-09 22:18:06    2015-02-09 22:18:06
12961    10182    836    2015-08-26 20:37:24    2015-08-26 20:37:24
12962    12139    620    2015-01-11 20:49:01    2015-01-11 20:49:01
12963    19232    529    2013-07-14 05:19:48    2013-07-14 05:19:48
12964    17941    683    2016-01-15 11:33:28    2016-01-15 11:33:28
12965    18984    687    2014-04-09 11:14:59    2014-04-09 11:14:59
12966    13419    956    2015-07-06 09:44:22    2015-07-06 09:44:22
12967    13952    815    2014-04-21 08:09:47    2014-04-21 08:09:47
12968    18819    716    2014-06-28 03:48:13    2014-06-28 03:48:13
12969    14233    470    2016-03-30 20:11:53    2016-03-30 20:11:53
12970    14383    561    2013-05-07 02:58:04    2013-05-07 02:58:04
12971    11646    656    2014-07-04 07:02:35    2014-07-04 07:02:35
12972    16273    917    2014-12-01 16:14:57    2014-12-01 16:14:57
12973    14786    936    2014-06-23 17:58:50    2014-06-23 17:58:50
12974    16288    760    2016-02-22 10:21:04    2016-02-22 10:21:04
12975    11618    904    2015-06-19 09:00:38    2015-06-19 09:00:38
12976    14828    648    2015-08-29 14:44:32    2015-08-29 14:44:32
12977    14708    585    2014-09-27 20:58:17    2014-09-27 20:58:17
12978    16494    662    2015-12-03 18:51:17    2015-12-03 18:51:17
12979    12109    928    2013-07-25 18:11:03    2013-07-25 18:11:03
12980    13012    488    2013-07-17 18:18:49    2013-07-17 18:18:49
12981    12669    802    2014-02-02 06:39:27    2014-02-02 06:39:27
12982    11525    465    2015-06-22 18:17:50    2015-06-22 18:17:50
12983    18058    592    2015-04-01 07:21:50    2015-04-01 07:21:50
12984    18231    510    2015-09-17 15:03:00    2015-09-17 15:03:00
12985    14159    568    2014-07-29 01:07:31    2014-07-29 01:07:31
12986    15509    601    2013-11-22 08:19:30    2013-11-22 08:19:30
12987    13054    711    2014-11-23 05:05:29    2014-11-23 05:05:29
12988    11868    619    2013-05-18 19:29:52    2013-05-18 19:29:52
12989    16551    652    2013-11-07 17:43:45    2013-11-07 17:43:45
12990    11551    685    2016-03-17 20:33:33    2016-03-17 20:33:33
12991    19921    642    2016-03-18 23:28:41    2016-03-18 23:28:41
12992    14677    683    2015-04-09 09:55:15    2015-04-09 09:55:15
12993    10125    771    2015-08-16 19:31:32    2015-08-16 19:31:32
12994    19161    781    2014-10-19 03:33:57    2014-10-19 03:33:57
12995    15256    627    2013-06-26 13:02:58    2013-06-26 13:02:58
12996    11896    797    2016-01-24 20:39:18    2016-01-24 20:39:18
12997    10756    686    2015-07-27 11:13:41    2015-07-27 11:13:41
12998    13348    693    2015-10-27 02:30:51    2015-10-27 02:30:51
12999    12203    922    2015-10-19 18:48:06    2015-10-19 18:48:06
13000    14425    720    2015-10-19 10:02:49    2015-10-19 10:02:49
13001    17404    944    2014-08-06 06:10:45    2014-08-06 06:10:45
13002    19521    928    2013-09-12 06:25:04    2013-09-12 06:25:04
13003    10897    927    2014-10-20 00:15:24    2014-10-20 00:15:24
13004    19203    791    2014-11-13 20:10:51    2014-11-13 20:10:51
13005    13472    737    2014-02-02 18:21:06    2014-02-02 18:21:06
13006    16567    507    2014-04-19 12:41:30    2014-04-19 12:41:30
13007    13802    668    2015-03-20 07:19:42    2015-03-20 07:19:42
13008    15647    907    2014-06-29 19:20:38    2014-06-29 19:20:38
13009    13788    791    2015-07-30 19:52:08    2015-07-30 19:52:08
13010    16270    958    2014-07-21 18:00:05    2014-07-21 18:00:05
13011    10086    598    2014-09-10 04:18:13    2014-09-10 04:18:13
13012    10129    471    2015-01-04 02:56:58    2015-01-04 02:56:58
13013    16767    487    2013-07-28 05:29:38    2013-07-28 05:29:38
13014    18648    551    2013-08-03 16:59:23    2013-08-03 16:59:23
13015    11392    668    2013-07-03 01:45:52    2013-07-03 01:45:52
13016    15087    935    2014-09-12 08:18:17    2014-09-12 08:18:17
13017    16924    712    2014-09-07 23:12:38    2014-09-07 23:12:38
13018    14275    579    2014-08-27 19:06:20    2014-08-27 19:06:20
13019    18696    622    2015-05-23 04:07:55    2015-05-23 04:07:55
13020    11806    490    2014-02-11 02:35:33    2014-02-11 02:35:33
13021    18245    790    2016-03-18 19:36:39    2016-03-18 19:36:39
13022    19239    678    2015-04-29 01:18:51    2015-04-29 01:18:51
13023    19441    554    2015-04-01 01:00:02    2015-04-01 01:00:02
13024    19277    705    2014-06-19 19:05:42    2014-06-19 19:05:42
13025    15040    488    2013-08-22 22:32:24    2013-08-22 22:32:24
13026    13409    910    2013-08-21 09:38:15    2013-08-21 09:38:15
13027    11690    475    2015-05-22 03:12:43    2015-05-22 03:12:43
13028    19453    824    2013-12-15 21:15:13    2013-12-15 21:15:13
13029    17918    726    2016-03-27 12:25:45    2016-03-27 12:25:45
13030    13866    877    2014-08-22 09:22:18    2014-08-22 09:22:18
13031    14664    488    2014-12-16 11:48:16    2014-12-16 11:48:16
13032    11374    678    2016-02-28 04:12:22    2016-02-28 04:12:22
13033    14731    525    2014-06-17 14:23:11    2014-06-17 14:23:11
13034    18494    678    2016-01-07 04:01:19    2016-01-07 04:01:19
13035    14896    678    2016-03-04 08:42:48    2016-03-04 08:42:48
13036    14959    791    2014-07-31 04:41:51    2014-07-31 04:41:51
13037    16917    530    2014-07-07 14:07:00    2014-07-07 14:07:00
13038    15699    792    2016-03-23 04:51:57    2016-03-23 04:51:57
13039    16111    480    2016-01-26 11:59:21    2016-01-26 11:59:21
13040    11854    720    2013-08-01 05:46:06    2013-08-01 05:46:06
13041    15232    719    2013-08-25 22:53:14    2013-08-25 22:53:14
13042    15200    684    2014-10-26 00:24:54    2014-10-26 00:24:54
13043    11844    620    2015-06-23 07:18:00    2015-06-23 07:18:00
13044    11421    708    2014-01-03 18:29:32    2014-01-03 18:29:32
13045    10014    949    2013-11-27 05:47:43    2013-11-27 05:47:43
13046    17721    596    2014-05-25 03:44:08    2014-05-25 03:44:08
13047    13649    902    2014-02-02 15:15:57    2014-02-02 15:15:57
13048    13640    763    2014-06-19 07:59:47    2014-06-19 07:59:47
13049    16707    585    2015-09-24 06:43:27    2015-09-24 06:43:27
13050    17864    695    2015-04-15 04:57:02    2015-04-15 04:57:02
13051    10138    668    2014-10-24 10:18:02    2014-10-24 10:18:02
13052    10156    560    2015-05-27 04:25:04    2015-05-27 04:25:04
13053    12573    639    2014-02-10 15:34:13    2014-02-10 15:34:13
13054    10011    899    2014-06-29 19:54:50    2014-06-29 19:54:50
13055    19343    696    2013-10-29 07:43:51    2013-10-29 07:43:51
13056    17227    568    2014-09-15 18:42:04    2014-09-15 18:42:04
13057    14625    572    2013-06-26 16:17:55    2013-06-26 16:17:55
13058    13425    873    2015-01-09 06:08:24    2015-01-09 06:08:24
13059    16653    695    2014-08-31 18:04:29    2014-08-31 18:04:29
13060    10485    643    2016-02-18 19:22:44    2016-02-18 19:22:44
13061    14237    792    2015-11-05 09:59:38    2015-11-05 09:59:38
13062    15002    883    2013-05-30 23:12:45    2013-05-30 23:12:45
13063    10343    699    2014-09-15 01:32:17    2014-09-15 01:32:17
13064    11041    850    2015-01-01 23:31:51    2015-01-01 23:31:51
13065    10197    727    2013-09-02 05:16:11    2013-09-02 05:16:11
13066    16600    922    2016-02-01 05:11:29    2016-02-01 05:11:29
13067    11939    498    2014-09-02 02:04:47    2014-09-02 02:04:47
13068    17668    595    2013-04-24 00:27:58    2013-04-24 00:27:58
13069    18212    948    2013-08-18 06:36:41    2013-08-18 06:36:41
13070    11067    946    2014-06-30 09:53:50    2014-06-30 09:53:50
13071    13952    564    2014-10-24 21:20:06    2014-10-24 21:20:06
13072    11967    732    2013-10-20 13:31:39    2013-10-20 13:31:39
13073    12799    626    2013-11-14 18:09:28    2013-11-14 18:09:28
13074    18292    861    2015-06-08 18:57:21    2015-06-08 18:57:21
13075    15250    541    2013-07-30 13:12:37    2013-07-30 13:12:37
13076    14664    946    2014-03-28 19:25:36    2014-03-28 19:25:36
13077    17717    713    2015-12-24 16:38:20    2015-12-24 16:38:20
13078    12661    792    2013-05-15 16:49:48    2013-05-15 16:49:48
13079    10867    620    2013-10-28 23:29:42    2013-10-28 23:29:42
13080    10376    479    2015-01-07 07:21:22    2015-01-07 07:21:22
13081    10423    676    2014-12-03 09:31:46    2014-12-03 09:31:46
13082    18656    693    2015-02-22 04:15:06    2015-02-22 04:15:06
13083    13587    752    2013-09-10 05:35:50    2013-09-10 05:35:50
13084    11635    908    2014-02-05 00:09:48    2014-02-05 00:09:48
13085    17608    468    2013-11-01 08:25:57    2013-11-01 08:25:57
13086    15421    751    2015-09-12 13:23:44    2015-09-12 13:23:44
13087    11066    870    2014-02-14 08:10:08    2014-02-14 08:10:08
13088    17157    546    2013-07-30 19:26:36    2013-07-30 19:26:36
13089    19241    828    2014-04-29 17:09:32    2014-04-29 17:09:32
13090    19581    927    2015-11-23 01:19:52    2015-11-23 01:19:52
13091    14278    579    2014-02-05 23:37:28    2014-02-05 23:37:28
13092    17561    797    2015-11-01 21:15:47    2015-11-01 21:15:47
13093    16256    954    2015-01-13 17:23:27    2015-01-13 17:23:27
13094    14798    601    2015-02-28 18:40:36    2015-02-28 18:40:36
13095    16311    658    2015-07-02 10:29:10    2015-07-02 10:29:10
13096    18765    542    2015-03-12 02:12:26    2015-03-12 02:12:26
13097    18478    635    2014-04-28 20:33:24    2014-04-28 20:33:24
13098    16508    482    2014-03-09 09:17:00    2014-03-09 09:17:00
13099    15829    947    2015-11-22 18:39:47    2015-11-22 18:39:47
13100    12878    586    2014-09-19 01:10:47    2014-09-19 01:10:47
13101    11255    543    2013-06-18 18:59:51    2013-06-18 18:59:51
13102    19631    874    2015-10-18 13:59:25    2015-10-18 13:59:25
13103    17390    898    2014-03-17 17:59:52    2014-03-17 17:59:52
13104    16246    554    2015-07-12 11:30:34    2015-07-12 11:30:34
13105    18745    900    2016-01-21 05:55:48    2016-01-21 05:55:48
13106    11101    659    2015-01-11 22:11:04    2015-01-11 22:11:04
13107    18006    869    2013-08-16 21:29:18    2013-08-16 21:29:18
13108    14477    883    2015-05-27 12:44:10    2015-05-27 12:44:10
13109    16231    899    2013-06-18 17:44:29    2013-06-18 17:44:29
13110    18438    595    2014-10-28 00:47:15    2014-10-28 00:47:15
13111    17344    534    2013-09-19 01:19:26    2013-09-19 01:19:26
13112    13453    642    2015-10-04 17:55:16    2015-10-04 17:55:16
13113    15074    917    2014-01-28 10:46:35    2014-01-28 10:46:35
13114    12728    619    2013-06-30 13:38:29    2013-06-30 13:38:29
13115    14070    557    2016-03-01 15:13:52    2016-03-01 15:13:52
13116    12796    566    2013-08-13 23:20:04    2013-08-13 23:20:04
13117    10303    675    2015-07-21 04:26:56    2015-07-21 04:26:56
13118    14364    478    2014-07-04 04:39:34    2014-07-04 04:39:34
13119    12403    780    2015-02-24 23:20:18    2015-02-24 23:20:18
13120    17094    658    2014-10-04 17:24:14    2014-10-04 17:24:14
13121    12732    517    2014-10-02 06:06:47    2014-10-02 06:06:47
13122    15072    520    2013-10-05 22:14:40    2013-10-05 22:14:40
13123    15450    752    2015-10-20 23:34:52    2015-10-20 23:34:52
13124    17878    681    2014-01-06 07:56:59    2014-01-06 07:56:59
13125    11715    869    2013-06-12 18:24:08    2013-06-12 18:24:08
13126    12073    581    2013-08-13 05:31:58    2013-08-13 05:31:58
13127    15845    553    2013-12-04 10:48:10    2013-12-04 10:48:10
13128    10376    774    2013-09-01 21:21:53    2013-09-01 21:21:53
13129    14195    530    2014-07-02 16:07:31    2014-07-02 16:07:31
13130    16292    612    2014-12-22 20:59:59    2014-12-22 20:59:59
13131    12603    941    2015-07-03 18:05:13    2015-07-03 18:05:13
13132    15300    732    2013-05-07 08:45:20    2013-05-07 08:45:20
13133    14258    782    2014-07-15 04:13:52    2014-07-15 04:13:52
13134    11347    869    2015-12-06 21:44:56    2015-12-06 21:44:56
13135    19995    728    2014-05-22 16:34:26    2014-05-22 16:34:26
13136    11287    814    2016-04-15 22:11:34    2016-04-15 22:11:34
13137    17450    705    2013-08-29 11:35:01    2013-08-29 11:35:01
13138    19914    609    2014-02-18 22:20:40    2014-02-18 22:20:40
13139    14570    935    2015-08-03 04:13:32    2015-08-03 04:13:32
13140    14884    955    2015-04-23 00:05:50    2015-04-23 00:05:50
13141    16336    520    2015-04-15 08:17:52    2015-04-15 08:17:52
13142    19607    559    2013-10-03 22:05:53    2013-10-03 22:05:53
13143    13712    477    2015-01-01 23:32:42    2015-01-01 23:32:42
13144    13472    496    2013-11-05 22:01:12    2013-11-05 22:01:12
13145    14226    860    2014-02-07 05:43:11    2014-02-07 05:43:11
13146    18368    954    2014-12-09 08:31:38    2014-12-09 08:31:38
13147    17310    907    2015-02-13 14:49:19    2015-02-13 14:49:19
13148    16589    738    2015-02-21 19:18:08    2015-02-21 19:18:08
13149    15193    949    2015-04-08 23:40:16    2015-04-08 23:40:16
13150    16817    473    2013-08-18 18:34:27    2013-08-18 18:34:27
13151    15350    497    2015-03-21 09:32:00    2015-03-21 09:32:00
13152    12130    754    2014-07-12 21:10:07    2014-07-12 21:10:07
13153    12142    686    2013-10-19 04:45:34    2013-10-19 04:45:34
13154    11009    930    2015-10-14 16:54:05    2015-10-14 16:54:05
13155    10735    571    2013-12-06 12:47:22    2013-12-06 12:47:22
13156    18600    463    2013-06-28 03:25:18    2013-06-28 03:25:18
13157    14446    920    2015-12-11 01:59:41    2015-12-11 01:59:41
13158    14274    852    2013-09-18 11:13:30    2013-09-18 11:13:30
13159    18432    692    2014-07-03 04:50:07    2014-07-03 04:50:07
13160    10957    792    2014-12-27 12:15:10    2014-12-27 12:15:10
13161    13404    881    2014-11-06 04:54:09    2014-11-06 04:54:09
13162    14073    525    2014-01-21 11:43:13    2014-01-21 11:43:13
13163    10394    464    2016-01-07 15:09:55    2016-01-07 15:09:55
13164    15378    639    2015-08-22 17:12:16    2015-08-22 17:12:16
13165    16593    650    2014-03-11 00:36:14    2014-03-11 00:36:14
13166    14438    959    2015-11-17 02:02:24    2015-11-17 02:02:24
13167    12381    910    2015-01-24 21:14:03    2015-01-24 21:14:03
13168    16892    698    2013-09-21 01:14:59    2013-09-21 01:14:59
13169    19041    809    2016-03-04 11:09:09    2016-03-04 11:09:09
13170    11576    753    2013-12-09 10:56:56    2013-12-09 10:56:56
13171    10770    555    2014-09-10 12:28:25    2014-09-10 12:28:25
13172    18131    950    2013-06-22 02:33:02    2013-06-22 02:33:02
13173    16405    646    2013-12-29 17:40:46    2013-12-29 17:40:46
13174    17976    860    2013-08-30 05:25:44    2013-08-30 05:25:44
13175    19552    513    2013-05-13 16:02:10    2013-05-13 16:02:10
13176    15183    737    2015-06-13 23:50:26    2015-06-13 23:50:26
13177    13487    805    2013-10-13 00:33:36    2013-10-13 00:33:36
13178    14213    910    2014-09-19 08:00:19    2014-09-19 08:00:19
13179    10126    556    2014-12-12 02:17:42    2014-12-12 02:17:42
13180    13584    937    2016-04-13 01:27:24    2016-04-13 01:27:24
13181    16538    611    2013-12-04 06:42:50    2013-12-04 06:42:50
13182    13396    743    2013-10-01 05:45:54    2013-10-01 05:45:54
13183    12894    767    2013-11-30 06:22:22    2013-11-30 06:22:22
13184    13532    569    2015-12-29 20:49:41    2015-12-29 20:49:41
13185    17245    754    2013-07-21 05:33:36    2013-07-21 05:33:36
13186    12023    523    2014-02-27 14:31:21    2014-02-27 14:31:21
13187    10164    720    2014-02-14 00:46:22    2014-02-14 00:46:22
13188    16004    538    2014-02-19 01:08:10    2014-02-19 01:08:10
13189    14153    584    2015-07-09 23:23:17    2015-07-09 23:23:17
13190    19955    929    2015-02-05 11:55:02    2015-02-05 11:55:02
13191    10589    766    2015-08-22 03:37:08    2015-08-22 03:37:08
13192    19302    575    2015-03-07 00:33:19    2015-03-07 00:33:19
13193    19762    543    2014-06-19 16:12:20    2014-06-19 16:12:20
13194    10506    530    2015-01-21 06:12:20    2015-01-21 06:12:20
13195    15646    599    2014-12-23 08:42:06    2014-12-23 08:42:06
13196    12668    642    2013-08-11 17:00:38    2013-08-11 17:00:38
13197    10954    952    2015-10-20 10:07:43    2015-10-20 10:07:43
13198    13921    819    2014-12-30 18:00:59    2014-12-30 18:00:59
13199    17642    593    2013-06-23 13:50:10    2013-06-23 13:50:10
13200    14392    551    2015-02-10 03:14:03    2015-02-10 03:14:03
13201    18974    946    2015-07-06 10:43:20    2015-07-06 10:43:20
13202    18368    858    2013-12-17 17:05:20    2013-12-17 17:05:20
13203    15818    780    2014-05-01 05:01:03    2014-05-01 05:01:03
13204    13437    695    2013-05-19 18:36:15    2013-05-19 18:36:15
13205    12497    875    2014-09-08 20:27:12    2014-09-08 20:27:12
13206    15044    762    2013-06-12 14:13:50    2013-06-12 14:13:50
13207    18064    796    2015-09-25 01:31:59    2015-09-25 01:31:59
13208    12408    474    2014-03-27 17:43:57    2014-03-27 17:43:57
13209    12024    568    2014-11-26 05:50:28    2014-11-26 05:50:28
13210    13209    552    2015-04-16 01:18:44    2015-04-16 01:18:44
13211    15300    787    2015-01-16 22:55:25    2015-01-16 22:55:25
13212    13194    627    2014-10-04 05:18:05    2014-10-04 05:18:05
13213    10354    695    2014-12-11 10:02:16    2014-12-11 10:02:16
13214    12772    669    2014-12-05 03:03:37    2014-12-05 03:03:37
13215    17770    809    2014-08-07 21:41:03    2014-08-07 21:41:03
13216    10542    855    2015-03-20 10:30:41    2015-03-20 10:30:41
13217    12363    704    2014-02-09 06:16:51    2014-02-09 06:16:51
13218    14543    751    2015-05-11 20:14:36    2015-05-11 20:14:36
13219    19158    541    2015-08-13 10:03:13    2015-08-13 10:03:13
13220    15974    584    2014-06-22 17:51:03    2014-06-22 17:51:03
13221    12846    581    2015-07-31 16:40:04    2015-07-31 16:40:04
13222    17734    837    2013-06-16 05:39:07    2013-06-16 05:39:07
13223    16499    665    2014-11-20 02:54:45    2014-11-20 02:54:45
13224    19523    808    2015-01-17 04:41:19    2015-01-17 04:41:19
13225    19685    848    2014-01-25 01:42:41    2014-01-25 01:42:41
13226    13284    550    2013-12-22 21:58:54    2013-12-22 21:58:54
13227    10161    949    2016-03-08 19:22:33    2016-03-08 19:22:33
13228    16131    846    2015-03-25 01:32:59    2015-03-25 01:32:59
13229    16048    839    2014-07-27 04:04:09    2014-07-27 04:04:09
13230    14308    592    2015-01-18 14:10:34    2015-01-18 14:10:34
13231    13213    611    2013-05-06 07:52:13    2013-05-06 07:52:13
13232    14862    580    2014-02-16 22:48:42    2014-02-16 22:48:42
13233    17722    704    2015-03-07 02:35:34    2015-03-07 02:35:34
13234    14282    753    2015-05-26 13:05:05    2015-05-26 13:05:05
13235    10295    574    2013-12-12 13:20:33    2013-12-12 13:20:33
13236    10018    608    2013-08-20 10:12:37    2013-08-20 10:12:37
13237    14721    823    2013-07-13 01:00:18    2013-07-13 01:00:18
13238    16128    657    2014-11-04 12:04:53    2014-11-04 12:04:53
13239    15846    661    2014-04-21 06:17:39    2014-04-21 06:17:39
13240    19851    847    2013-06-01 16:36:17    2013-06-01 16:36:17
13241    13622    863    2016-02-12 13:55:33    2016-02-12 13:55:33
13242    19810    702    2013-12-17 16:18:18    2013-12-17 16:18:18
13243    15357    722    2016-02-20 02:08:12    2016-02-20 02:08:12
13244    10277    794    2013-08-07 00:56:29    2013-08-07 00:56:29
13245    14458    808    2015-02-13 02:18:32    2015-02-13 02:18:32
13246    13787    523    2016-02-29 02:10:13    2016-02-29 02:10:13
13247    10509    620    2013-04-29 06:45:44    2013-04-29 06:45:44
13248    13128    655    2015-02-11 18:41:12    2015-02-11 18:41:12
13249    16789    808    2013-06-30 03:54:58    2013-06-30 03:54:58
13250    19867    697    2014-01-21 21:41:17    2014-01-21 21:41:17
13251    17099    953    2013-12-26 09:46:12    2013-12-26 09:46:12
13252    18165    883    2013-12-05 04:09:59    2013-12-05 04:09:59
13253    17437    810    2014-09-07 11:26:17    2014-09-07 11:26:17
13254    14462    731    2014-05-04 02:03:29    2014-05-04 02:03:29
13255    19291    531    2014-07-10 08:22:54    2014-07-10 08:22:54
13256    13567    702    2014-05-15 23:43:45    2014-05-15 23:43:45
13257    13891    684    2014-04-15 06:17:14    2014-04-15 06:17:14
13258    16858    603    2013-06-26 17:51:23    2013-06-26 17:51:23
13259    18664    632    2014-12-13 11:08:29    2014-12-13 11:08:29
13260    19863    535    2015-06-30 09:20:22    2015-06-30 09:20:22
13261    13914    796    2014-01-27 06:29:51    2014-01-27 06:29:51
13262    16644    764    2014-06-14 13:45:47    2014-06-14 13:45:47
13263    11590    670    2016-02-06 15:45:14    2016-02-06 15:45:14
13264    18250    505    2014-11-16 04:01:50    2014-11-16 04:01:50
13265    10444    945    2015-07-05 13:13:02    2015-07-05 13:13:02
13266    18526    647    2014-10-03 06:20:01    2014-10-03 06:20:01
13267    18104    604    2015-02-07 08:48:59    2015-02-07 08:48:59
13268    16760    797    2015-02-15 21:47:18    2015-02-15 21:47:18
13269    11524    626    2013-09-14 18:30:26    2013-09-14 18:30:26
13270    18310    543    2014-07-20 20:21:51    2014-07-20 20:21:51
13271    15591    608    2014-11-13 20:29:10    2014-11-13 20:29:10
13272    14400    613    2013-09-09 10:32:04    2013-09-09 10:32:04
13273    19874    670    2015-04-01 20:12:55    2015-04-01 20:12:55
13274    10939    875    2015-04-10 06:56:01    2015-04-10 06:56:01
13275    18992    530    2015-05-13 06:47:28    2015-05-13 06:47:28
13276    17724    864    2016-01-17 21:28:53    2016-01-17 21:28:53
13277    14385    651    2013-11-07 22:59:15    2013-11-07 22:59:15
13278    10739    853    2015-03-23 06:11:29    2015-03-23 06:11:29
13279    16198    957    2015-05-23 08:23:00    2015-05-23 08:23:00
13280    15995    817    2015-08-01 04:15:05    2015-08-01 04:15:05
13281    11900    770    2014-03-22 17:27:53    2014-03-22 17:27:53
13282    15853    938    2014-09-08 14:42:40    2014-09-08 14:42:40
13283    18029    749    2015-02-12 15:13:03    2015-02-12 15:13:03
13284    15992    886    2015-06-04 22:46:47    2015-06-04 22:46:47
13285    16812    668    2014-11-24 19:53:27    2014-11-24 19:53:27
13286    19954    811    2015-05-16 13:07:08    2015-05-16 13:07:08
13287    19556    811    2015-07-09 04:31:21    2015-07-09 04:31:21
13288    12797    811    2013-05-04 09:59:40    2013-05-04 09:59:40
13289    13261    623    2015-12-31 20:48:41    2015-12-31 20:48:41
13290    11960    878    2013-08-30 16:15:17    2013-08-30 16:15:17
13291    12298    639    2016-01-28 17:39:55    2016-01-28 17:39:55
13292    16849    885    2015-10-05 21:40:14    2015-10-05 21:40:14
13293    16840    872    2015-12-24 04:18:20    2015-12-24 04:18:20
13294    15298    601    2014-05-31 08:36:33    2014-05-31 08:36:33
13295    13013    487    2016-01-04 02:08:59    2016-01-04 02:08:59
13296    10349    893    2015-12-01 14:27:20    2015-12-01 14:27:20
13297    17063    953    2015-06-23 20:03:45    2015-06-23 20:03:45
13298    14015    948    2016-02-26 20:19:14    2016-02-26 20:19:14
13299    17091    718    2013-05-11 06:38:33    2013-05-11 06:38:33
13300    19128    826    2015-03-20 06:02:50    2015-03-20 06:02:50
13301    18683    644    2016-02-11 05:25:10    2016-02-11 05:25:10
13302    17473    954    2015-08-24 01:31:42    2015-08-24 01:31:42
13303    15275    465    2014-05-25 08:29:01    2014-05-25 08:29:01
13304    12435    898    2013-05-21 09:30:21    2013-05-21 09:30:21
13305    15660    787    2014-12-30 16:56:23    2014-12-30 16:56:23
13306    14722    477    2015-11-17 14:42:39    2015-11-17 14:42:39
13307    11669    777    2013-08-17 17:21:21    2013-08-17 17:21:21
13308    17001    521    2016-04-02 18:43:25    2016-04-02 18:43:25
13309    11772    841    2013-07-30 19:41:36    2013-07-30 19:41:36
13310    13444    503    2013-05-03 04:01:05    2013-05-03 04:01:05
13311    15568    813    2013-06-22 04:06:09    2013-06-22 04:06:09
13312    19494    635    2013-06-02 01:27:50    2013-06-02 01:27:50
13313    16529    755    2015-11-29 19:12:04    2015-11-29 19:12:04
13314    15765    783    2013-08-22 14:37:24    2013-08-22 14:37:24
13315    11459    739    2013-10-02 09:37:22    2013-10-02 09:37:22
13316    19955    890    2015-06-09 05:08:27    2015-06-09 05:08:27
13317    10418    720    2014-07-18 00:54:56    2014-07-18 00:54:56
13318    12686    470    2016-02-05 18:25:48    2016-02-05 18:25:48
13319    14110    623    2014-06-11 23:08:12    2014-06-11 23:08:12
13320    16977    913    2015-07-28 17:04:31    2015-07-28 17:04:31
13321    18426    511    2014-12-08 22:57:53    2014-12-08 22:57:53
13322    10635    653    2014-07-18 11:26:36    2014-07-18 11:26:36
13323    18090    722    2015-01-26 08:20:11    2015-01-26 08:20:11
13324    18607    731    2014-08-28 13:27:39    2014-08-28 13:27:39
13325    19373    644    2014-12-29 22:14:33    2014-12-29 22:14:33
13326    18353    856    2014-08-24 13:53:42    2014-08-24 13:53:42
13327    10308    645    2014-11-25 17:17:40    2014-11-25 17:17:40
13328    14627    671    2013-08-31 08:37:05    2013-08-31 08:37:05
13329    10906    526    2014-08-10 05:28:51    2014-08-10 05:28:51
13330    13221    806    2014-05-12 13:53:21    2014-05-12 13:53:21
13331    18736    478    2014-08-09 09:34:15    2014-08-09 09:34:15
13332    11651    575    2013-11-08 07:34:41    2013-11-08 07:34:41
13333    18504    797    2015-05-15 09:24:20    2015-05-15 09:24:20
13334    13522    762    2014-06-02 03:24:50    2014-06-02 03:24:50
13335    19590    811    2014-08-31 16:21:01    2014-08-31 16:21:01
13336    19452    469    2016-01-03 07:37:07    2016-01-03 07:37:07
13337    13905    947    2013-07-14 06:51:50    2013-07-14 06:51:50
13338    15255    623    2013-10-04 15:59:29    2013-10-04 15:59:29
13339    15000    891    2013-04-26 16:27:48    2013-04-26 16:27:48
13340    15601    926    2016-03-27 01:21:21    2016-03-27 01:21:21
13341    14952    509    2015-10-08 08:47:13    2015-10-08 08:47:13
13342    18613    648    2016-03-20 00:21:11    2016-03-20 00:21:11
13343    17301    694    2013-07-31 11:26:16    2013-07-31 11:26:16
13344    15596    935    2014-06-28 14:15:42    2014-06-28 14:15:42
13345    19056    697    2013-08-04 16:09:30    2013-08-04 16:09:30
13346    11207    571    2015-12-04 03:30:23    2015-12-04 03:30:23
13347    14465    578    2013-04-28 12:27:01    2013-04-28 12:27:01
13348    17783    555    2014-01-01 04:44:14    2014-01-01 04:44:14
13349    17442    613    2014-02-03 12:53:46    2014-02-03 12:53:46
13350    12157    890    2015-07-26 13:09:34    2015-07-26 13:09:34
13351    19110    601    2016-01-06 15:15:47    2016-01-06 15:15:47
13352    15415    781    2015-01-16 15:32:19    2015-01-16 15:32:19
13353    18024    941    2014-11-19 01:46:25    2014-11-19 01:46:25
13354    15720    584    2015-02-03 18:57:14    2015-02-03 18:57:14
13355    19382    535    2014-07-04 04:43:41    2014-07-04 04:43:41
13356    19582    910    2016-02-08 03:55:01    2016-02-08 03:55:01
13357    16051    883    2016-01-10 06:30:29    2016-01-10 06:30:29
13358    15790    490    2015-09-25 11:59:58    2015-09-25 11:59:58
13359    14667    864    2015-04-28 08:58:42    2015-04-28 08:58:42
13360    13824    748    2014-06-29 22:07:17    2014-06-29 22:07:17
13361    18421    830    2015-08-16 16:09:57    2015-08-16 16:09:57
13362    11788    499    2013-09-16 01:46:56    2013-09-16 01:46:56
13363    11794    679    2014-03-22 20:07:32    2014-03-22 20:07:32
13364    11028    600    2014-01-04 00:45:20    2014-01-04 00:45:20
13365    16769    496    2015-09-12 17:02:19    2015-09-12 17:02:19
13366    19777    582    2013-05-23 04:29:20    2013-05-23 04:29:20
13367    13114    916    2016-01-08 16:09:17    2016-01-08 16:09:17
13368    13704    541    2015-02-12 13:04:29    2015-02-12 13:04:29
13369    17208    841    2015-08-03 09:25:35    2015-08-03 09:25:35
13370    12187    633    2013-11-13 12:20:41    2013-11-13 12:20:41
13371    10756    668    2016-03-05 09:35:52    2016-03-05 09:35:52
13372    14135    848    2015-03-03 01:25:20    2015-03-03 01:25:20
13373    12384    946    2013-12-11 16:35:09    2013-12-11 16:35:09
13374    14763    920    2013-12-21 17:32:08    2013-12-21 17:32:08
13375    12500    560    2014-01-29 08:54:27    2014-01-29 08:54:27
13376    14842    893    2015-09-15 10:19:30    2015-09-15 10:19:30
13377    15997    766    2014-02-27 14:54:31    2014-02-27 14:54:31
13378    19506    675    2015-02-26 19:47:04    2015-02-26 19:47:04
13379    19912    928    2014-09-30 20:48:47    2014-09-30 20:48:47
13380    12792    683    2014-08-21 14:23:07    2014-08-21 14:23:07
13381    11643    639    2014-04-27 03:15:07    2014-04-27 03:15:07
13382    12301    826    2013-05-30 15:16:16    2013-05-30 15:16:16
13383    12246    722    2014-12-31 04:38:13    2014-12-31 04:38:13
13384    11814    577    2015-02-20 21:29:52    2015-02-20 21:29:52
13385    16476    838    2013-11-28 09:32:14    2013-11-28 09:32:14
13386    10450    913    2016-03-01 00:25:14    2016-03-01 00:25:14
13387    13350    805    2014-10-07 10:50:14    2014-10-07 10:50:14
13388    19333    707    2015-08-28 23:41:10    2015-08-28 23:41:10
13389    14816    915    2013-10-04 16:06:17    2013-10-04 16:06:17
13390    18832    941    2015-09-11 23:09:49    2015-09-11 23:09:49
13391    13931    929    2015-08-29 01:27:50    2015-08-29 01:27:50
13392    13599    550    2015-08-07 17:39:24    2015-08-07 17:39:24
13393    13287    519    2013-07-03 22:29:10    2013-07-03 22:29:10
13394    16133    840    2014-02-07 23:56:19    2014-02-07 23:56:19
13395    15868    663    2015-09-11 03:08:20    2015-09-11 03:08:20
13396    11961    795    2015-06-09 04:42:50    2015-06-09 04:42:50
13397    14746    786    2014-10-10 14:17:29    2014-10-10 14:17:29
13398    10925    753    2016-03-26 02:47:19    2016-03-26 02:47:19
13399    16366    620    2014-08-20 14:23:18    2014-08-20 14:23:18
13400    10910    555    2014-12-02 02:52:26    2014-12-02 02:52:26
13401    19110    715    2013-12-02 06:52:39    2013-12-02 06:52:39
13402    12268    513    2015-07-04 20:22:31    2015-07-04 20:22:31
13403    16476    723    2014-10-03 13:22:07    2014-10-03 13:22:07
13404    16477    561    2016-03-13 10:11:08    2016-03-13 10:11:08
13405    12764    684    2014-06-06 02:37:35    2014-06-06 02:37:35
13406    17802    807    2013-10-10 14:54:32    2013-10-10 14:54:32
13407    13763    662    2016-03-26 02:47:54    2016-03-26 02:47:54
13408    17896    839    2015-05-21 15:36:40    2015-05-21 15:36:40
13409    10720    912    2015-03-03 14:27:50    2015-03-03 14:27:50
13410    15352    923    2014-05-23 06:36:38    2014-05-23 06:36:38
13411    17645    651    2015-03-18 07:26:15    2015-03-18 07:26:15
13412    19270    884    2015-12-18 08:18:25    2015-12-18 08:18:25
13413    10652    749    2015-04-07 01:18:57    2015-04-07 01:18:57
13414    11853    503    2013-10-21 14:04:50    2013-10-21 14:04:50
13415    13944    697    2013-12-20 22:01:21    2013-12-20 22:01:21
13416    15409    701    2016-03-07 10:21:57    2016-03-07 10:21:57
13417    12865    879    2013-10-06 19:19:56    2013-10-06 19:19:56
13418    14113    692    2013-10-10 06:48:13    2013-10-10 06:48:13
13419    14388    558    2015-06-20 09:53:54    2015-06-20 09:53:54
13420    16374    581    2014-05-18 18:04:48    2014-05-18 18:04:48
13421    15837    682    2013-05-10 21:17:35    2013-05-10 21:17:35
13422    19023    577    2016-01-26 11:25:08    2016-01-26 11:25:08
13423    12309    687    2013-08-23 13:29:58    2013-08-23 13:29:58
13424    10863    915    2014-07-22 00:24:27    2014-07-22 00:24:27
13425    14279    811    2014-11-09 00:11:50    2014-11-09 00:11:50
13426    11424    908    2013-04-26 01:13:12    2013-04-26 01:13:12
13427    18865    661    2014-01-18 14:04:18    2014-01-18 14:04:18
13428    19772    730    2014-09-03 04:10:47    2014-09-03 04:10:47
13429    15592    534    2013-07-22 07:40:13    2013-07-22 07:40:13
13430    17797    653    2013-08-05 10:24:04    2013-08-05 10:24:04
13431    13355    554    2013-09-15 09:03:27    2013-09-15 09:03:27
13432    14802    773    2014-03-14 23:52:18    2014-03-14 23:52:18
13433    12626    888    2016-02-02 14:19:15    2016-02-02 14:19:15
13434    17418    508    2015-07-20 14:16:30    2015-07-20 14:16:30
13435    15382    835    2016-03-22 12:24:57    2016-03-22 12:24:57
13436    15013    601    2016-03-06 14:13:47    2016-03-06 14:13:47
13437    17466    543    2014-06-17 22:30:16    2014-06-17 22:30:16
13438    14316    671    2015-08-20 15:20:45    2015-08-20 15:20:45
13439    15262    877    2013-05-28 09:04:46    2013-05-28 09:04:46
13440    19064    741    2013-06-11 13:10:57    2013-06-11 13:10:57
13441    16388    647    2015-04-21 12:55:19    2015-04-21 12:55:19
13442    11738    806    2015-05-09 12:48:44    2015-05-09 12:48:44
13443    11263    531    2015-05-07 09:22:27    2015-05-07 09:22:27
13444    19127    943    2016-04-17 08:11:35    2016-04-17 08:11:35
13445    15799    960    2015-02-07 11:32:52    2015-02-07 11:32:52
13446    19936    907    2016-01-26 11:39:55    2016-01-26 11:39:55
13447    14182    786    2014-01-08 00:22:47    2014-01-08 00:22:47
13448    11604    936    2014-11-20 12:49:12    2014-11-20 12:49:12
13449    10815    514    2015-03-30 21:28:49    2015-03-30 21:28:49
13450    16308    598    2015-06-16 00:37:54    2015-06-16 00:37:54
13451    14642    878    2013-07-19 02:39:09    2013-07-19 02:39:09
13452    14732    607    2015-01-28 08:57:18    2015-01-28 08:57:18
13453    16492    890    2014-08-08 07:09:29    2014-08-08 07:09:29
13454    19164    645    2013-10-10 19:31:45    2013-10-10 19:31:45
13455    14134    793    2013-04-23 01:14:48    2013-04-23 01:14:48
13456    18716    595    2013-11-25 04:33:22    2013-11-25 04:33:22
13457    14154    538    2013-09-26 09:59:07    2013-09-26 09:59:07
13458    14783    579    2015-08-25 05:54:26    2015-08-25 05:54:26
13459    17338    884    2014-02-09 04:07:30    2014-02-09 04:07:30
13460    13771    883    2013-05-16 06:03:06    2013-05-16 06:03:06
13461    19846    667    2016-02-07 10:53:06    2016-02-07 10:53:06
13462    15483    746    2014-07-11 19:56:43    2014-07-11 19:56:43
13463    18161    894    2013-04-26 22:50:41    2013-04-26 22:50:41
13464    18601    503    2015-08-04 12:56:34    2015-08-04 12:56:34
13465    10635    501    2015-12-08 12:23:24    2015-12-08 12:23:24
13466    19922    633    2015-08-20 12:48:15    2015-08-20 12:48:15
13467    13817    921    2016-02-19 08:40:28    2016-02-19 08:40:28
13468    15542    598    2015-10-12 22:33:25    2015-10-12 22:33:25
13469    10734    587    2016-02-23 20:10:34    2016-02-23 20:10:34
13470    10890    630    2015-03-19 00:52:27    2015-03-19 00:52:27
13471    15556    559    2013-08-05 20:31:39    2013-08-05 20:31:39
13472    17848    809    2015-03-13 17:27:26    2015-03-13 17:27:26
13473    18632    468    2016-03-14 08:57:58    2016-03-14 08:57:58
13474    19938    942    2015-02-20 14:10:01    2015-02-20 14:10:01
13475    19529    746    2016-02-29 17:58:30    2016-02-29 17:58:30
13476    18935    649    2014-05-14 18:42:57    2014-05-14 18:42:57
13477    12962    939    2014-12-13 18:13:07    2014-12-13 18:13:07
13478    18054    854    2016-03-06 23:15:26    2016-03-06 23:15:26
13479    12254    573    2014-08-08 11:21:01    2014-08-08 11:21:01
13480    15281    673    2014-11-20 00:12:35    2014-11-20 00:12:35
13481    18211    889    2013-11-04 18:25:31    2013-11-04 18:25:31
13482    10649    511    2015-11-16 15:10:40    2015-11-16 15:10:40
13483    15379    724    2013-11-14 01:58:18    2013-11-14 01:58:18
13484    16943    678    2014-01-26 09:40:55    2014-01-26 09:40:55
13485    10449    745    2013-05-30 04:04:30    2013-05-30 04:04:30
13486    11522    657    2013-08-10 19:52:54    2013-08-10 19:52:54
13487    18973    594    2014-10-09 13:39:13    2014-10-09 13:39:13
13488    18281    628    2013-07-11 23:13:02    2013-07-11 23:13:02
13489    11313    662    2013-07-05 17:31:13    2013-07-05 17:31:13
13490    16380    689    2015-05-16 23:08:29    2015-05-16 23:08:29
13491    14736    586    2014-07-30 04:14:30    2014-07-30 04:14:30
13492    17683    511    2014-07-05 12:03:03    2014-07-05 12:03:03
13493    16150    480    2015-11-17 06:02:38    2015-11-17 06:02:38
13494    18515    881    2015-11-02 02:20:01    2015-11-02 02:20:01
13495    14504    834    2016-03-29 06:35:36    2016-03-29 06:35:36
13496    12813    810    2015-05-07 08:05:45    2015-05-07 08:05:45
13497    12120    512    2016-01-15 08:47:28    2016-01-15 08:47:28
13498    17939    622    2016-03-11 00:10:19    2016-03-11 00:10:19
13499    17052    628    2014-02-18 06:25:35    2014-02-18 06:25:35
13500    16434    920    2013-06-07 16:23:26    2013-06-07 16:23:26
13501    15360    881    2015-01-27 18:29:19    2015-01-27 18:29:19
13502    19657    915    2013-11-11 20:39:17    2013-11-11 20:39:17
13503    17062    486    2014-02-28 08:08:34    2014-02-28 08:08:34
13504    16815    852    2015-10-26 04:41:08    2015-10-26 04:41:08
13505    18286    473    2014-06-11 16:44:30    2014-06-11 16:44:30
13506    12187    799    2013-12-22 16:54:07    2013-12-22 16:54:07
13507    15111    467    2014-02-22 14:12:22    2014-02-22 14:12:22
13508    13502    812    2015-09-09 21:00:24    2015-09-09 21:00:24
13509    17267    690    2014-05-29 08:31:13    2014-05-29 08:31:13
13510    18646    933    2015-03-26 01:36:27    2015-03-26 01:36:27
13511    17949    594    2015-03-06 01:31:49    2015-03-06 01:31:49
13512    18637    909    2013-05-25 02:47:20    2013-05-25 02:47:20
13513    14683    614    2013-09-05 03:11:19    2013-09-05 03:11:19
13514    15433    601    2014-10-11 12:55:29    2014-10-11 12:55:29
13515    17058    530    2014-03-07 08:04:02    2014-03-07 08:04:02
13516    16019    594    2014-11-07 13:06:21    2014-11-07 13:06:21
13517    17078    566    2015-04-02 08:35:57    2015-04-02 08:35:57
13518    11067    650    2015-04-25 01:26:10    2015-04-25 01:26:10
13519    11329    722    2014-10-01 03:20:26    2014-10-01 03:20:26
13520    13842    577    2015-07-26 14:45:32    2015-07-26 14:45:32
13521    10134    862    2015-05-11 23:36:44    2015-05-11 23:36:44
13522    15760    667    2013-10-10 23:45:40    2013-10-10 23:45:40
13523    17666    651    2015-09-28 02:14:49    2015-09-28 02:14:49
13524    17957    816    2015-06-06 03:45:00    2015-06-06 03:45:00
13525    19358    664    2015-11-02 06:28:12    2015-11-02 06:28:12
13526    16926    759    2014-09-24 04:10:58    2014-09-24 04:10:58
13527    16734    521    2014-05-19 16:18:32    2014-05-19 16:18:32
13528    15833    540    2014-11-14 23:28:49    2014-11-14 23:28:49
13529    13039    693    2014-04-27 06:20:36    2014-04-27 06:20:36
13530    16361    746    2015-02-19 15:35:48    2015-02-19 15:35:48
13531    17207    476    2016-02-14 10:36:34    2016-02-14 10:36:34
13532    11980    500    2013-11-28 08:07:43    2013-11-28 08:07:43
13533    10648    651    2014-09-24 23:22:25    2014-09-24 23:22:25
13534    18847    928    2013-11-06 15:34:41    2013-11-06 15:34:41
13535    13086    954    2015-09-04 02:59:01    2015-09-04 02:59:01
13536    12371    526    2015-03-15 18:13:44    2015-03-15 18:13:44
13537    11599    871    2015-02-28 00:09:27    2015-02-28 00:09:27
13538    14806    742    2013-12-09 02:46:05    2013-12-09 02:46:05
13539    19859    550    2014-10-19 12:26:10    2014-10-19 12:26:10
13540    18739    537    2015-02-17 00:14:23    2015-02-17 00:14:23
13541    13730    892    2015-05-21 09:18:36    2015-05-21 09:18:36
13542    14935    896    2014-11-06 16:36:37    2014-11-06 16:36:37
13543    16070    696    2014-11-17 09:54:08    2014-11-17 09:54:08
13544    14628    833    2015-08-15 16:10:00    2015-08-15 16:10:00
13545    18022    689    2016-03-04 01:13:54    2016-03-04 01:13:54
13546    14822    463    2015-06-29 02:57:04    2015-06-29 02:57:04
13547    12128    609    2015-02-23 11:53:51    2015-02-23 11:53:51
13548    15680    515    2013-07-13 04:04:12    2013-07-13 04:04:12
13549    10165    612    2013-08-25 04:55:01    2013-08-25 04:55:01
13550    10198    816    2014-10-28 12:23:55    2014-10-28 12:23:55
13551    10168    611    2013-08-22 21:34:59    2013-08-22 21:34:59
13552    17653    919    2013-09-15 13:41:27    2013-09-15 13:41:27
13553    16918    956    2015-10-06 17:22:17    2015-10-06 17:22:17
13554    13625    879    2015-05-24 10:35:07    2015-05-24 10:35:07
13555    11878    555    2014-06-25 23:45:42    2014-06-25 23:45:42
13556    10290    924    2013-07-23 23:12:14    2013-07-23 23:12:14
13557    13964    658    2015-01-20 16:16:01    2015-01-20 16:16:01
13558    17138    584    2016-04-14 16:07:47    2016-04-14 16:07:47
13559    19724    518    2013-07-09 22:14:17    2013-07-09 22:14:17
13560    13053    673    2014-08-03 19:55:01    2014-08-03 19:55:01
13561    14238    875    2016-01-06 02:32:38    2016-01-06 02:32:38
13562    12147    914    2015-03-23 18:19:12    2015-03-23 18:19:12
13563    15742    830    2015-10-15 15:12:11    2015-10-15 15:12:11
13564    10568    616    2015-10-18 17:19:21    2015-10-18 17:19:21
13565    15308    896    2015-05-23 13:59:58    2015-05-23 13:59:58
13566    11473    647    2013-11-23 09:50:27    2013-11-23 09:50:27
13567    15556    741    2014-11-24 21:22:32    2014-11-24 21:22:32
13568    12092    466    2016-02-15 16:40:35    2016-02-15 16:40:35
13569    16597    759    2013-09-26 10:14:48    2013-09-26 10:14:48
13570    19547    846    2014-10-09 22:00:37    2014-10-09 22:00:37
13571    11135    493    2014-04-10 02:49:18    2014-04-10 02:49:18
13572    13477    877    2016-03-25 15:56:50    2016-03-25 15:56:50
13573    15617    665    2015-12-24 18:50:00    2015-12-24 18:50:00
13574    15003    862    2013-12-27 08:00:48    2013-12-27 08:00:48
13575    13341    639    2015-04-06 02:42:48    2015-04-06 02:42:48
13576    18748    952    2015-05-22 11:50:19    2015-05-22 11:50:19
13577    16115    882    2013-07-03 15:02:02    2013-07-03 15:02:02
13578    16423    919    2014-07-05 03:37:52    2014-07-05 03:37:52
13579    14784    476    2014-08-03 04:05:55    2014-08-03 04:05:55
13580    14819    695    2016-04-10 06:49:14    2016-04-10 06:49:14
13581    16697    841    2013-09-05 11:27:00    2013-09-05 11:27:00
13582    13505    611    2013-12-02 23:41:17    2013-12-02 23:41:17
13583    14284    887    2013-05-05 08:49:04    2013-05-05 08:49:04
13584    17307    596    2014-02-01 07:13:46    2014-02-01 07:13:46
13585    11901    776    2014-08-08 21:08:59    2014-08-08 21:08:59
13586    17692    564    2014-05-23 23:03:05    2014-05-23 23:03:05
13587    17767    696    2015-07-27 06:39:24    2015-07-27 06:39:24
13588    16598    798    2014-10-30 12:36:18    2014-10-30 12:36:18
13589    19398    592    2016-01-17 20:02:30    2016-01-17 20:02:30
13590    16758    726    2015-05-14 10:37:13    2015-05-14 10:37:13
13591    11721    586    2014-05-18 16:16:03    2014-05-18 16:16:03
13592    19595    875    2015-10-10 20:48:00    2015-10-10 20:48:00
13593    14718    734    2014-06-23 23:47:43    2014-06-23 23:47:43
13594    18508    944    2016-03-10 10:08:31    2016-03-10 10:08:31
13595    16001    840    2014-06-30 11:14:20    2014-06-30 11:14:20
13596    16426    718    2015-08-22 16:44:07    2015-08-22 16:44:07
13597    13792    693    2014-05-18 00:58:58    2014-05-18 00:58:58
13598    16607    524    2013-09-20 12:35:03    2013-09-20 12:35:03
13599    18999    836    2016-02-24 01:39:42    2016-02-24 01:39:42
13600    18033    620    2014-08-10 14:02:41    2014-08-10 14:02:41
13601    18622    522    2013-06-11 19:46:30    2013-06-11 19:46:30
13602    13944    799    2013-09-21 18:46:54    2013-09-21 18:46:54
13603    18646    907    2016-03-06 20:40:07    2016-03-06 20:40:07
13604    13484    781    2014-05-01 09:14:02    2014-05-01 09:14:02
13605    19923    475    2015-04-28 14:44:47    2015-04-28 14:44:47
13606    11058    645    2015-09-25 18:12:33    2015-09-25 18:12:33
13607    10186    950    2015-06-11 17:31:16    2015-06-11 17:31:16
13608    13788    668    2015-01-25 01:50:08    2015-01-25 01:50:08
13609    12942    860    2015-03-11 03:49:19    2015-03-11 03:49:19
13610    17007    884    2013-09-09 11:39:05    2013-09-09 11:39:05
13611    15823    497    2015-01-28 20:38:23    2015-01-28 20:38:23
13612    12273    938    2014-02-20 06:13:15    2014-02-20 06:13:15
13613    12724    605    2013-04-26 17:20:40    2013-04-26 17:20:40
13614    17291    705    2016-01-13 08:33:40    2016-01-13 08:33:40
13615    19066    656    2014-08-16 15:46:06    2014-08-16 15:46:06
13616    18802    727    2014-03-30 09:30:23    2014-03-30 09:30:23
13617    12582    729    2013-05-21 09:10:23    2013-05-21 09:10:23
13618    15046    828    2013-07-22 20:30:07    2013-07-22 20:30:07
13619    11719    764    2015-06-08 09:53:55    2015-06-08 09:53:55
13620    19713    947    2014-04-13 00:54:48    2014-04-13 00:54:48
13621    11809    796    2015-10-20 10:04:02    2015-10-20 10:04:02
13622    17163    948    2015-06-28 13:30:32    2015-06-28 13:30:32
13623    12641    545    2015-04-28 10:55:05    2015-04-28 10:55:05
13624    14142    775    2014-09-23 14:07:32    2014-09-23 14:07:32
13625    15326    830    2015-05-15 19:12:37    2015-05-15 19:12:37
13626    11498    747    2015-07-21 14:34:47    2015-07-21 14:34:47
13627    19321    684    2013-09-15 18:50:09    2013-09-15 18:50:09
13628    18424    868    2015-05-03 09:27:02    2015-05-03 09:27:02
13629    17564    678    2013-12-18 02:29:22    2013-12-18 02:29:22
13630    16121    518    2014-02-07 11:31:30    2014-02-07 11:31:30
13631    18871    728    2013-08-17 11:31:27    2013-08-17 11:31:27
13632    14563    509    2015-04-12 03:47:12    2015-04-12 03:47:12
13633    15607    891    2014-08-22 22:40:57    2014-08-22 22:40:57
13634    13560    781    2014-07-22 07:03:09    2014-07-22 07:03:09
13635    12069    776    2014-01-16 02:45:36    2014-01-16 02:45:36
13636    19939    804    2015-04-21 22:48:59    2015-04-21 22:48:59
13637    12752    776    2014-12-13 09:03:33    2014-12-13 09:03:33
13638    17171    646    2014-11-25 23:23:14    2014-11-25 23:23:14
13639    17064    768    2014-12-21 12:28:28    2014-12-21 12:28:28
13640    17125    882    2013-08-06 08:57:21    2013-08-06 08:57:21
13641    13950    851    2014-09-02 13:02:10    2014-09-02 13:02:10
13642    14467    842    2015-01-09 23:17:23    2015-01-09 23:17:23
13643    12385    684    2014-09-22 05:23:19    2014-09-22 05:23:19
13644    18430    835    2013-08-14 03:59:09    2013-08-14 03:59:09
13645    16533    766    2014-10-18 00:40:04    2014-10-18 00:40:04
13646    11550    511    2014-09-22 00:27:24    2014-09-22 00:27:24
13647    16902    615    2015-11-21 10:52:04    2015-11-21 10:52:04
13648    18718    852    2015-03-15 17:40:51    2015-03-15 17:40:51
13649    10167    714    2013-07-04 17:23:35    2013-07-04 17:23:35
13650    11699    479    2013-09-13 12:37:54    2013-09-13 12:37:54
13651    14516    473    2015-12-29 04:09:43    2015-12-29 04:09:43
13652    12913    482    2015-04-27 19:06:27    2015-04-27 19:06:27
13653    10366    527    2014-04-11 04:40:16    2014-04-11 04:40:16
13654    14505    608    2015-10-05 17:19:20    2015-10-05 17:19:20
13655    17779    850    2014-01-18 12:30:14    2014-01-18 12:30:14
13656    19379    860    2013-09-17 08:46:41    2013-09-17 08:46:41
13657    11486    901    2016-01-31 02:33:00    2016-01-31 02:33:00
13658    16400    718    2015-06-29 04:01:08    2015-06-29 04:01:08
13659    14770    807    2015-12-03 17:52:38    2015-12-03 17:52:38
13660    16287    739    2014-09-18 10:55:37    2014-09-18 10:55:37
13661    12986    467    2016-04-09 07:26:11    2016-04-09 07:26:11
13662    10616    607    2014-04-13 01:06:10    2014-04-13 01:06:10
13663    19577    942    2013-05-24 13:46:26    2013-05-24 13:46:26
13664    10776    583    2013-11-22 14:34:49    2013-11-22 14:34:49
13665    19504    638    2016-02-19 15:26:56    2016-02-19 15:26:56
13666    17371    509    2016-04-13 18:41:36    2016-04-13 18:41:36
13667    15466    773    2013-12-14 16:43:50    2013-12-14 16:43:50
13668    11373    696    2014-06-07 23:56:17    2014-06-07 23:56:17
13669    13985    514    2015-09-04 03:14:44    2015-09-04 03:14:44
13670    10747    713    2015-08-12 09:52:47    2015-08-12 09:52:47
13671    13911    593    2014-06-01 11:27:06    2014-06-01 11:27:06
13672    13681    878    2013-04-26 06:51:20    2013-04-26 06:51:20
13673    13734    895    2015-08-09 12:49:35    2015-08-09 12:49:35
13674    12574    671    2013-10-08 07:51:30    2013-10-08 07:51:30
13675    10435    607    2014-09-15 17:04:23    2014-09-15 17:04:23
13676    16336    683    2013-12-02 03:54:23    2013-12-02 03:54:23
13677    15731    494    2014-05-19 14:34:38    2014-05-19 14:34:38
13678    11351    594    2013-04-27 09:00:37    2013-04-27 09:00:37
13679    19256    663    2014-05-06 09:28:02    2014-05-06 09:28:02
13680    16747    835    2015-08-28 05:18:32    2015-08-28 05:18:32
13681    19564    930    2014-02-05 01:52:13    2014-02-05 01:52:13
13682    15613    771    2013-11-10 13:15:48    2013-11-10 13:15:48
13683    11647    520    2013-07-10 17:07:17    2013-07-10 17:07:17
13684    19824    513    2013-07-05 05:58:02    2013-07-05 05:58:02
13685    13397    602    2015-01-28 23:09:10    2015-01-28 23:09:10
13686    17158    957    2015-12-08 20:31:36    2015-12-08 20:31:36
13687    16685    593    2013-11-01 16:28:44    2013-11-01 16:28:44
13688    17468    948    2013-08-08 14:19:35    2013-08-08 14:19:35
13689    12348    522    2014-12-19 00:47:57    2014-12-19 00:47:57
13690    14883    511    2013-10-06 01:45:42    2013-10-06 01:45:42
13691    15571    816    2016-04-10 09:02:38    2016-04-10 09:02:38
13692    18978    618    2014-11-04 07:37:43    2014-11-04 07:37:43
13693    13857    852    2014-08-17 13:01:43    2014-08-17 13:01:43
13694    17258    500    2015-01-16 15:12:46    2015-01-16 15:12:46
13695    12525    531    2013-11-04 15:31:17    2013-11-04 15:31:17
13696    16192    556    2014-06-11 14:48:18    2014-06-11 14:48:18
13697    11595    525    2016-01-24 10:37:37    2016-01-24 10:37:37
13698    12207    881    2013-07-25 21:11:16    2013-07-25 21:11:16
13699    10145    715    2015-08-13 05:59:14    2015-08-13 05:59:14
13700    10180    716    2015-04-15 06:06:27    2015-04-15 06:06:27
13701    10165    556    2015-10-01 02:39:21    2015-10-01 02:39:21
13702    11533    514    2015-01-11 20:50:02    2015-01-11 20:50:02
13703    10859    620    2014-07-18 15:53:26    2014-07-18 15:53:26
13704    11162    793    2014-09-19 17:33:22    2014-09-19 17:33:22
13705    12339    525    2015-01-27 08:31:17    2015-01-27 08:31:17
13706    18200    718    2013-06-30 23:55:00    2013-06-30 23:55:00
13707    10287    519    2015-05-24 21:38:41    2015-05-24 21:38:41
13708    13477    665    2015-08-11 15:14:53    2015-08-11 15:14:53
13709    19040    486    2016-01-13 18:45:49    2016-01-13 18:45:49
13710    12097    652    2014-01-26 12:41:20    2014-01-26 12:41:20
13711    17658    908    2013-07-16 17:26:44    2013-07-16 17:26:44
13712    19239    650    2015-03-28 14:46:22    2015-03-28 14:46:22
13713    14229    945    2014-01-28 19:37:15    2014-01-28 19:37:15
13714    16600    741    2014-03-27 03:29:44    2014-03-27 03:29:44
13715    19026    599    2013-06-14 20:44:39    2013-06-14 20:44:39
13716    11260    470    2015-04-10 14:28:10    2015-04-10 14:28:10
13717    19850    889    2014-07-01 15:39:57    2014-07-01 15:39:57
13718    16507    959    2014-11-01 03:44:54    2014-11-01 03:44:54
13719    18047    671    2014-04-14 18:52:43    2014-04-14 18:52:43
13720    10729    666    2015-09-21 22:59:14    2015-09-21 22:59:14
13721    13194    878    2015-04-03 15:56:59    2015-04-03 15:56:59
13722    14151    909    2015-03-28 06:16:22    2015-03-28 06:16:22
13723    12219    464    2015-11-14 03:39:23    2015-11-14 03:39:23
13724    12077    756    2015-05-06 10:32:02    2015-05-06 10:32:02
13725    14034    529    2013-08-19 02:35:36    2013-08-19 02:35:36
13726    15664    815    2014-09-15 20:37:47    2014-09-15 20:37:47
13727    14867    750    2014-03-23 23:46:01    2014-03-23 23:46:01
13728    12679    744    2014-04-03 23:21:33    2014-04-03 23:21:33
13729    13052    797    2013-10-18 20:15:18    2013-10-18 20:15:18
13730    18926    796    2014-05-20 23:03:52    2014-05-20 23:03:52
13731    11831    793    2014-01-15 01:11:25    2014-01-15 01:11:25
13732    15924    695    2013-11-12 10:00:52    2013-11-12 10:00:52
13733    19538    592    2013-11-15 15:17:40    2013-11-15 15:17:40
13734    10201    466    2016-03-27 20:11:54    2016-03-27 20:11:54
13735    12266    845    2013-11-25 12:46:46    2013-11-25 12:46:46
13736    15000    489    2015-08-30 06:18:20    2015-08-30 06:18:20
13737    16921    562    2016-04-08 19:48:02    2016-04-08 19:48:02
13738    13987    585    2015-02-04 18:44:47    2015-02-04 18:44:47
13739    11972    492    2013-12-22 14:53:14    2013-12-22 14:53:14
13740    12955    463    2016-02-06 14:36:32    2016-02-06 14:36:32
13741    10396    514    2016-04-11 15:43:37    2016-04-11 15:43:37
13742    12860    618    2013-08-08 11:57:39    2013-08-08 11:57:39
13743    15245    634    2014-12-21 21:35:25    2014-12-21 21:35:25
13744    12845    475    2016-03-09 18:09:02    2016-03-09 18:09:02
13745    10795    887    2014-07-31 00:14:46    2014-07-31 00:14:46
13746    10298    958    2014-01-01 21:20:09    2014-01-01 21:20:09
13747    16011    762    2014-08-25 11:44:19    2014-08-25 11:44:19
13748    14894    680    2016-01-18 18:27:49    2016-01-18 18:27:49
13749    13529    532    2014-10-19 11:06:33    2014-10-19 11:06:33
13750    15162    524    2015-11-15 22:02:12    2015-11-15 22:02:12
13751    14826    706    2016-02-26 22:30:50    2016-02-26 22:30:50
13752    13086    541    2014-07-09 12:07:00    2014-07-09 12:07:00
13753    18863    648    2014-08-04 02:23:40    2014-08-04 02:23:40
13754    16172    557    2016-03-04 23:19:12    2016-03-04 23:19:12
13755    11935    463    2014-09-06 21:45:53    2014-09-06 21:45:53
13756    19778    688    2014-08-03 02:59:33    2014-08-03 02:59:33
13757    17643    786    2015-10-16 19:02:30    2015-10-16 19:02:30
13758    19967    843    2015-02-19 19:50:57    2015-02-19 19:50:57
13759    14396    917    2013-07-11 01:43:26    2013-07-11 01:43:26
13760    18974    723    2015-04-28 16:54:17    2015-04-28 16:54:17
13761    11795    868    2015-06-08 10:56:19    2015-06-08 10:56:19
13762    14999    621    2013-09-06 17:41:03    2013-09-06 17:41:03
13763    18049    609    2014-01-05 20:10:01    2014-01-05 20:10:01
13764    15352    792    2013-07-27 19:03:54    2013-07-27 19:03:54
13765    18326    956    2015-01-26 22:01:23    2015-01-26 22:01:23
13766    15212    496    2015-11-05 03:39:26    2015-11-05 03:39:26
13767    14166    654    2015-06-09 20:35:33    2015-06-09 20:35:33
13768    14723    877    2016-02-10 14:41:29    2016-02-10 14:41:29
13769    11298    860    2013-04-22 11:50:10    2013-04-22 11:50:10
13770    10303    645    2013-08-15 06:17:39    2013-08-15 06:17:39
13771    15043    532    2015-08-07 21:55:38    2015-08-07 21:55:38
13772    11779    899    2015-05-27 16:54:41    2015-05-27 16:54:41
13773    18721    567    2014-12-10 18:21:53    2014-12-10 18:21:53
13774    18417    540    2015-08-07 06:07:16    2015-08-07 06:07:16
13775    12628    856    2016-04-01 00:47:26    2016-04-01 00:47:26
13776    17895    883    2015-05-03 21:59:13    2015-05-03 21:59:13
13777    17819    745    2014-07-06 22:13:02    2014-07-06 22:13:02
13778    19278    870    2015-01-11 06:31:23    2015-01-11 06:31:23
13779    16424    535    2015-03-10 15:30:19    2015-03-10 15:30:19
13780    15316    597    2013-10-14 12:40:31    2013-10-14 12:40:31
13781    19955    552    2014-01-25 13:03:53    2014-01-25 13:03:53
13782    18528    595    2016-02-16 12:48:46    2016-02-16 12:48:46
13783    18463    807    2014-05-30 03:01:17    2014-05-30 03:01:17
13784    15717    621    2013-12-20 00:39:13    2013-12-20 00:39:13
13785    14782    532    2015-04-28 07:57:22    2015-04-28 07:57:22
13786    14409    779    2015-05-07 03:25:49    2015-05-07 03:25:49
13787    17754    869    2014-11-29 06:55:11    2014-11-29 06:55:11
13788    18325    874    2016-03-27 17:13:18    2016-03-27 17:13:18
13789    13647    812    2014-09-30 13:19:38    2014-09-30 13:19:38
13790    16341    641    2014-12-08 03:02:58    2014-12-08 03:02:58
13791    19615    923    2016-02-20 10:25:26    2016-02-20 10:25:26
13792    12185    748    2014-01-11 12:28:15    2014-01-11 12:28:15
13793    13794    954    2013-12-05 22:13:02    2013-12-05 22:13:02
13794    16768    930    2014-11-19 07:06:32    2014-11-19 07:06:32
13795    15707    486    2016-02-23 07:29:17    2016-02-23 07:29:17
13796    18482    907    2013-05-03 20:10:22    2013-05-03 20:10:22
13797    19728    616    2015-01-09 17:29:51    2015-01-09 17:29:51
13798    11213    591    2014-01-27 03:54:25    2014-01-27 03:54:25
13799    13302    745    2015-10-16 01:47:22    2015-10-16 01:47:22
13800    19855    818    2014-11-13 07:16:17    2014-11-13 07:16:17
13801    18550    899    2014-11-12 04:46:57    2014-11-12 04:46:57
13802    19073    660    2013-04-23 23:17:52    2013-04-23 23:17:52
13803    11889    749    2015-04-10 04:49:05    2015-04-10 04:49:05
13804    12566    622    2014-03-27 07:28:00    2014-03-27 07:28:00
13805    10188    884    2013-05-04 15:02:10    2013-05-04 15:02:10
13806    14534    859    2016-03-21 11:14:03    2016-03-21 11:14:03
13807    11430    660    2016-04-06 17:12:26    2016-04-06 17:12:26
13808    13131    643    2014-04-06 01:25:43    2014-04-06 01:25:43
13809    15689    574    2014-02-06 21:56:03    2014-02-06 21:56:03
13810    18431    649    2014-04-14 01:15:31    2014-04-14 01:15:31
13811    12080    563    2013-08-13 19:44:25    2013-08-13 19:44:25
13812    13580    764    2016-04-11 10:24:38    2016-04-11 10:24:38
13813    18356    723    2015-07-03 04:52:34    2015-07-03 04:52:34
13814    11143    894    2014-11-15 03:35:20    2014-11-15 03:35:20
13815    14679    894    2013-12-18 02:48:58    2013-12-18 02:48:58
13816    18004    934    2013-07-22 09:15:16    2013-07-22 09:15:16
13817    18059    860    2015-09-26 16:35:30    2015-09-26 16:35:30
13818    15784    552    2014-07-11 07:04:06    2014-07-11 07:04:06
13819    18894    899    2015-06-30 06:33:06    2015-06-30 06:33:06
13820    10712    644    2015-04-01 04:39:02    2015-04-01 04:39:02
13821    18462    556    2014-12-04 08:32:38    2014-12-04 08:32:38
13822    16789    630    2015-08-26 15:02:00    2015-08-26 15:02:00
13823    15625    878    2014-12-13 02:33:13    2014-12-13 02:33:13
13824    10002    537    2013-08-12 12:46:25    2013-08-12 12:46:25
13825    15978    894    2014-08-30 05:07:44    2014-08-30 05:07:44
13826    16788    735    2014-11-11 22:45:36    2014-11-11 22:45:36
13827    17187    506    2014-05-30 04:32:28    2014-05-30 04:32:28
13828    18106    846    2016-04-20 13:23:27    2016-04-20 13:23:27
13829    16060    693    2014-09-28 11:43:18    2014-09-28 11:43:18
13830    18307    741    2015-07-10 17:59:38    2015-07-10 17:59:38
13831    12264    759    2015-07-19 06:38:43    2015-07-19 06:38:43
13832    11553    893    2013-04-29 22:49:06    2013-04-29 22:49:06
13833    13302    867    2015-04-06 16:54:05    2015-04-06 16:54:05
13834    18842    938    2015-01-19 19:53:56    2015-01-19 19:53:56
13835    19664    737    2014-03-15 12:27:17    2014-03-15 12:27:17
13836    12806    582    2015-03-03 22:45:32    2015-03-03 22:45:32
13837    18112    641    2014-10-02 15:01:41    2014-10-02 15:01:41
13838    16880    475    2015-04-05 10:58:41    2015-04-05 10:58:41
13839    11622    644    2014-07-26 06:35:06    2014-07-26 06:35:06
13840    10935    664    2014-02-18 10:46:56    2014-02-18 10:46:56
13841    13657    562    2015-08-24 20:26:36    2015-08-24 20:26:36
13842    14850    577    2014-03-06 17:21:22    2014-03-06 17:21:22
13843    18182    814    2014-02-13 22:37:06    2014-02-13 22:37:06
13844    19952    839    2014-09-14 11:05:47    2014-09-14 11:05:47
13845    17250    644    2014-12-06 15:28:05    2014-12-06 15:28:05
13846    19631    533    2015-03-24 18:29:39    2015-03-24 18:29:39
13847    11849    565    2013-04-30 00:00:06    2013-04-30 00:00:06
13848    15476    592    2013-09-23 00:59:18    2013-09-23 00:59:18
13849    16641    649    2016-02-12 23:03:00    2016-02-12 23:03:00
13850    14737    543    2014-11-17 14:39:21    2014-11-17 14:39:21
13851    18241    850    2014-06-09 01:04:20    2014-06-09 01:04:20
13852    14422    639    2013-05-11 18:33:13    2013-05-11 18:33:13
13853    14823    853    2014-06-30 19:21:31    2014-06-30 19:21:31
13854    16681    728    2014-03-20 03:06:01    2014-03-20 03:06:01
13855    19643    525    2015-04-24 23:05:33    2015-04-24 23:05:33
13856    19903    882    2013-05-11 18:30:29    2013-05-11 18:30:29
13857    17274    747    2014-07-10 03:01:06    2014-07-10 03:01:06
13858    14964    617    2016-01-22 06:52:30    2016-01-22 06:52:30
13859    18869    700    2013-10-07 10:25:59    2013-10-07 10:25:59
13860    17222    766    2014-01-02 18:14:11    2014-01-02 18:14:11
13861    16345    631    2015-10-07 16:38:22    2015-10-07 16:38:22
13862    18142    582    2014-07-16 06:23:12    2014-07-16 06:23:12
13863    13737    851    2015-04-24 12:29:17    2015-04-24 12:29:17
13864    18371    778    2014-02-26 06:50:51    2014-02-26 06:50:51
13865    16847    647    2013-11-14 09:20:46    2013-11-14 09:20:46
13866    10969    956    2014-05-25 07:10:20    2014-05-25 07:10:20
13867    16071    666    2015-08-09 19:59:50    2015-08-09 19:59:50
13868    13039    481    2015-05-31 14:19:00    2015-05-31 14:19:00
13869    14524    679    2016-03-22 08:19:15    2016-03-22 08:19:15
13870    18865    490    2014-06-26 03:53:25    2014-06-26 03:53:25
13871    18194    598    2015-03-28 00:29:54    2015-03-28 00:29:54
13872    14416    504    2015-10-19 08:02:09    2015-10-19 08:02:09
13873    16566    949    2014-10-30 17:05:06    2014-10-30 17:05:06
13874    19394    645    2013-12-07 00:54:51    2013-12-07 00:54:51
13875    10061    472    2016-02-18 08:39:27    2016-02-18 08:39:27
13876    10314    889    2013-09-28 06:01:01    2013-09-28 06:01:01
13877    17627    646    2015-01-11 14:31:36    2015-01-11 14:31:36
13878    15716    623    2015-12-17 04:24:24    2015-12-17 04:24:24
13879    10338    745    2015-09-23 03:53:10    2015-09-23 03:53:10
13880    10084    730    2015-10-12 04:22:57    2015-10-12 04:22:57
13881    18072    747    2015-02-27 11:53:51    2015-02-27 11:53:51
13882    14507    663    2015-11-18 00:17:06    2015-11-18 00:17:06
13883    14681    561    2013-08-17 16:55:50    2013-08-17 16:55:50
13884    13621    599    2014-05-24 13:23:56    2014-05-24 13:23:56
13885    10607    480    2014-10-29 20:36:11    2014-10-29 20:36:11
13886    19026    702    2016-02-20 05:01:14    2016-02-20 05:01:14
13887    11187    817    2015-07-09 12:24:36    2015-07-09 12:24:36
13888    14667    562    2014-02-28 06:07:08    2014-02-28 06:07:08
13889    19897    910    2015-06-15 07:59:14    2015-06-15 07:59:14
13890    14359    731    2014-06-13 17:28:08    2014-06-13 17:28:08
13891    18759    620    2014-12-05 15:36:22    2014-12-05 15:36:22
13892    19610    878    2015-09-30 10:02:57    2015-09-30 10:02:57
13893    11504    599    2016-04-19 23:51:49    2016-04-19 23:51:49
13894    13562    561    2016-04-07 22:08:40    2016-04-07 22:08:40
13895    16047    916    2013-12-26 03:28:18    2013-12-26 03:28:18
13896    17508    870    2016-04-20 06:03:31    2016-04-20 06:03:31
13897    12241    861    2015-03-21 04:53:11    2015-03-21 04:53:11
13898    11735    816    2014-05-17 00:06:06    2014-05-17 00:06:06
13899    15948    639    2013-11-26 13:06:28    2013-11-26 13:06:28
13900    10268    823    2015-11-20 07:49:12    2015-11-20 07:49:12
13901    10744    949    2016-04-12 00:56:16    2016-04-12 00:56:16
13902    13531    856    2014-07-18 03:01:02    2014-07-18 03:01:02
13903    18955    773    2013-10-16 08:24:49    2013-10-16 08:24:49
13904    14466    789    2014-07-22 13:55:17    2014-07-22 13:55:17
13905    18730    906    2014-10-01 18:08:16    2014-10-01 18:08:16
13906    11246    807    2016-04-06 12:37:27    2016-04-06 12:37:27
13907    10675    765    2015-08-26 22:37:02    2015-08-26 22:37:02
13908    12675    887    2013-11-06 22:29:22    2013-11-06 22:29:22
13909    12333    693    2015-09-04 11:54:51    2015-09-04 11:54:51
13910    13268    847    2013-09-02 12:25:44    2013-09-02 12:25:44
13911    11544    685    2016-01-24 13:14:58    2016-01-24 13:14:58
13912    18017    890    2013-11-30 10:38:49    2013-11-30 10:38:49
13913    18720    678    2016-01-07 04:56:27    2016-01-07 04:56:27
13914    12771    816    2014-06-28 14:23:52    2014-06-28 14:23:52
13915    18130    763    2013-07-08 00:41:31    2013-07-08 00:41:31
13916    13103    813    2015-03-19 23:51:53    2015-03-19 23:51:53
13917    16778    611    2016-03-02 21:40:41    2016-03-02 21:40:41
13918    16780    849    2013-07-18 22:26:21    2013-07-18 22:26:21
13919    17019    628    2013-05-02 05:38:37    2013-05-02 05:38:37
13920    12597    601    2014-02-01 06:28:55    2014-02-01 06:28:55
13921    13837    502    2016-02-08 15:21:44    2016-02-08 15:21:44
13922    11390    774    2015-03-11 02:28:21    2015-03-11 02:28:21
13923    16791    762    2014-10-27 07:03:03    2014-10-27 07:03:03
13924    15113    748    2015-06-02 07:38:13    2015-06-02 07:38:13
13925    11485    748    2014-01-11 12:02:11    2014-01-11 12:02:11
13926    19388    801    2014-01-24 11:49:48    2014-01-24 11:49:48
13927    14500    723    2014-09-07 11:36:11    2014-09-07 11:36:11
13928    10386    787    2015-03-10 05:51:45    2015-03-10 05:51:45
13929    16194    709    2016-02-13 16:38:36    2016-02-13 16:38:36
13930    12547    865    2013-05-02 08:11:19    2013-05-02 08:11:19
13931    15725    850    2014-12-29 00:50:29    2014-12-29 00:50:29
13932    10133    956    2014-07-12 02:36:21    2014-07-12 02:36:21
13933    17301    771    2015-06-11 16:24:56    2015-06-11 16:24:56
13934    10187    497    2015-12-31 22:42:23    2015-12-31 22:42:23
13935    14524    669    2014-06-15 23:20:29    2014-06-15 23:20:29
13936    13721    638    2015-02-09 00:26:54    2015-02-09 00:26:54
13937    15816    741    2014-05-10 14:21:43    2014-05-10 14:21:43
13938    17882    937    2014-10-22 05:28:25    2014-10-22 05:28:25
13939    10279    725    2015-10-08 19:13:26    2015-10-08 19:13:26
13940    14609    630    2013-07-28 08:42:49    2013-07-28 08:42:49
13941    10923    877    2015-04-04 02:33:24    2015-04-04 02:33:24
13942    17985    552    2015-04-11 09:34:10    2015-04-11 09:34:10
13943    12034    580    2015-12-24 10:24:52    2015-12-24 10:24:52
13944    13313    710    2013-08-11 19:43:01    2013-08-11 19:43:01
13945    18248    589    2013-05-17 07:14:28    2013-05-17 07:14:28
13946    16766    713    2013-12-06 13:18:12    2013-12-06 13:18:12
13947    18271    783    2014-08-28 20:00:25    2014-08-28 20:00:25
13948    14716    622    2015-01-17 12:31:07    2015-01-17 12:31:07
13949    10016    923    2013-12-23 16:47:51    2013-12-23 16:47:51
13950    18172    942    2015-09-25 21:39:47    2015-09-25 21:39:47
13951    19483    621    2015-03-20 19:16:46    2015-03-20 19:16:46
13952    15109    906    2013-08-02 13:51:24    2013-08-02 13:51:24
13953    18741    954    2014-08-01 14:15:24    2014-08-01 14:15:24
13954    17885    603    2013-04-30 00:36:10    2013-04-30 00:36:10
13955    18758    528    2013-12-30 00:33:55    2013-12-30 00:33:55
13956    15997    829    2015-12-15 01:09:12    2015-12-15 01:09:12
13957    19419    497    2015-08-11 08:00:51    2015-08-11 08:00:51
13958    15924    583    2014-07-10 14:12:44    2014-07-10 14:12:44
13959    17763    863    2014-04-12 04:47:44    2014-04-12 04:47:44
13960    14221    637    2013-05-05 06:45:30    2013-05-05 06:45:30
13961    12506    716    2014-01-08 22:19:35    2014-01-08 22:19:35
13962    11108    675    2015-02-12 09:40:49    2015-02-12 09:40:49
13963    11909    864    2014-12-12 02:46:54    2014-12-12 02:46:54
13964    10704    539    2015-01-21 00:46:42    2015-01-21 00:46:42
13965    15034    788    2016-04-20 04:22:43    2016-04-20 04:22:43
13966    16897    873    2015-07-30 12:42:15    2015-07-30 12:42:15
13967    13632    493    2014-09-24 13:39:34    2014-09-24 13:39:34
13968    13215    917    2014-04-23 00:28:17    2014-04-23 00:28:17
13969    11281    748    2015-02-16 14:21:25    2015-02-16 14:21:25
13970    11163    799    2015-11-10 11:01:14    2015-11-10 11:01:14
13971    10243    785    2014-04-14 18:04:49    2014-04-14 18:04:49
13972    14010    672    2016-01-14 09:52:53    2016-01-14 09:52:53
13973    16135    928    2014-03-13 03:52:35    2014-03-13 03:52:35
13974    15130    815    2013-07-12 00:03:13    2013-07-12 00:03:13
13975    16224    768    2014-11-03 03:48:13    2014-11-03 03:48:13
13976    18440    958    2014-09-04 10:57:32    2014-09-04 10:57:32
13977    11767    547    2015-10-13 12:35:43    2015-10-13 12:35:43
13978    12475    618    2014-07-05 14:26:34    2014-07-05 14:26:34
13979    14917    490    2014-01-07 10:14:16    2014-01-07 10:14:16
13980    14314    628    2015-05-23 14:19:26    2015-05-23 14:19:26
13981    16040    549    2015-02-22 04:14:02    2015-02-22 04:14:02
13982    19553    693    2015-11-04 05:28:41    2015-11-04 05:28:41
13983    10390    495    2015-05-02 03:14:35    2015-05-02 03:14:35
13984    13602    545    2015-04-24 05:19:00    2015-04-24 05:19:00
13985    15367    791    2014-10-31 10:00:58    2014-10-31 10:00:58
13986    18343    498    2014-05-28 05:19:13    2014-05-28 05:19:13
13987    16577    549    2013-09-02 22:01:58    2013-09-02 22:01:58
13988    17227    745    2014-07-22 17:12:01    2014-07-22 17:12:01
13989    16636    680    2015-05-09 07:14:39    2015-05-09 07:14:39
13990    17926    907    2015-03-11 04:37:07    2015-03-11 04:37:07
13991    14810    893    2014-07-03 05:35:27    2014-07-03 05:35:27
13992    13858    726    2015-01-25 10:07:20    2015-01-25 10:07:20
13993    12618    695    2016-01-04 09:16:11    2016-01-04 09:16:11
13994    10840    505    2013-11-13 14:29:17    2013-11-13 14:29:17
13995    18128    529    2016-02-24 11:36:22    2016-02-24 11:36:22
13996    12525    788    2014-01-30 00:45:21    2014-01-30 00:45:21
13997    14212    951    2014-09-14 10:59:03    2014-09-14 10:59:03
13998    14999    617    2013-10-22 11:31:32    2013-10-22 11:31:32
13999    15970    685    2014-06-22 09:13:16    2014-06-22 09:13:16
14000    11962    592    2014-04-09 02:12:19    2014-04-09 02:12:19
14001    17367    941    2015-09-23 17:43:25    2015-09-23 17:43:25
14002    10376    834    2015-04-26 07:00:26    2015-04-26 07:00:26
14003    10665    495    2013-05-15 01:47:59    2013-05-15 01:47:59
14004    11956    802    2015-08-14 07:13:02    2015-08-14 07:13:02
14005    10352    891    2014-09-21 08:32:34    2014-09-21 08:32:34
14006    17026    792    2014-11-06 09:21:57    2014-11-06 09:21:57
14007    15104    570    2014-05-11 23:39:23    2014-05-11 23:39:23
14008    19926    467    2013-11-10 11:17:05    2013-11-10 11:17:05
14009    11090    586    2014-02-24 16:27:07    2014-02-24 16:27:07
14010    16950    883    2015-03-03 21:15:21    2015-03-03 21:15:21
14011    13359    953    2015-07-15 10:36:01    2015-07-15 10:36:01
14012    15859    806    2015-10-24 14:02:00    2015-10-24 14:02:00
14013    13716    596    2014-09-28 10:09:20    2014-09-28 10:09:20
14014    17741    608    2015-07-09 15:57:27    2015-07-09 15:57:27
14015    15690    838    2016-01-10 23:42:56    2016-01-10 23:42:56
14016    14364    810    2013-08-31 16:25:45    2013-08-31 16:25:45
14017    19865    728    2014-04-02 00:46:38    2014-04-02 00:46:38
14018    19941    621    2014-02-15 00:06:03    2014-02-15 00:06:03
14019    14729    650    2015-04-16 21:43:14    2015-04-16 21:43:14
14020    15474    923    2015-11-23 22:38:33    2015-11-23 22:38:33
14021    15647    937    2014-07-09 10:38:34    2014-07-09 10:38:34
14022    11683    944    2013-05-26 20:53:23    2013-05-26 20:53:23
14023    17960    767    2013-07-15 23:29:05    2013-07-15 23:29:05
14024    11603    508    2015-01-13 12:55:09    2015-01-13 12:55:09
14025    17047    665    2015-10-01 03:07:16    2015-10-01 03:07:16
14026    10222    721    2015-01-28 18:39:11    2015-01-28 18:39:11
14027    16322    475    2015-11-04 00:29:13    2015-11-04 00:29:13
14028    11554    916    2014-11-03 00:18:31    2014-11-03 00:18:31
14029    10188    546    2014-01-23 02:36:18    2014-01-23 02:36:18
14030    11139    816    2015-11-10 14:59:27    2015-11-10 14:59:27
14031    19859    748    2014-10-19 02:13:47    2014-10-19 02:13:47
14032    11881    794    2014-12-21 22:57:57    2014-12-21 22:57:57
14033    18075    539    2015-06-05 16:08:50    2015-06-05 16:08:50
14034    19703    674    2015-07-20 15:04:51    2015-07-20 15:04:51
14035    12187    837    2014-10-07 18:27:22    2014-10-07 18:27:22
14036    18944    903    2014-05-25 10:10:15    2014-05-25 10:10:15
14037    19035    506    2015-03-17 00:10:47    2015-03-17 00:10:47
14038    18933    718    2014-10-16 20:50:19    2014-10-16 20:50:19
14039    10906    720    2015-05-05 17:54:48    2015-05-05 17:54:48
14040    18879    891    2015-09-08 13:22:40    2015-09-08 13:22:40
14041    10183    921    2015-11-07 17:53:50    2015-11-07 17:53:50
14042    11537    657    2014-09-06 12:25:58    2014-09-06 12:25:58
14043    10888    508    2015-12-05 00:02:05    2015-12-05 00:02:05
14044    12354    618    2013-11-26 14:52:40    2013-11-26 14:52:40
14045    13043    682    2014-03-06 07:20:42    2014-03-06 07:20:42
14046    18311    748    2013-05-31 20:47:22    2013-05-31 20:47:22
14047    19504    904    2013-04-22 05:11:29    2013-04-22 05:11:29
14048    18480    746    2016-01-30 11:13:41    2016-01-30 11:13:41
14049    15263    941    2016-02-18 18:12:14    2016-02-18 18:12:14
14050    10075    939    2015-04-24 13:48:08    2015-04-24 13:48:08
14051    13587    867    2013-12-15 01:32:49    2013-12-15 01:32:49
14052    18829    821    2015-04-26 20:49:40    2015-04-26 20:49:40
14053    11999    761    2015-07-28 04:27:41    2015-07-28 04:27:41
14054    17887    810    2015-07-05 23:53:20    2015-07-05 23:53:20
14055    19421    663    2016-04-11 05:17:12    2016-04-11 05:17:12
14056    19688    844    2014-03-30 14:06:15    2014-03-30 14:06:15
14057    18538    659    2015-04-28 12:34:24    2015-04-28 12:34:24
14058    17591    628    2014-03-25 19:56:56    2014-03-25 19:56:56
14059    14930    903    2013-05-21 07:59:10    2013-05-21 07:59:10
14060    19244    574    2013-12-05 20:16:22    2013-12-05 20:16:22
14061    10908    577    2016-02-03 18:29:38    2016-02-03 18:29:38
14062    12731    574    2015-06-29 18:00:24    2015-06-29 18:00:24
14063    17847    698    2014-06-13 01:56:04    2014-06-13 01:56:04
14064    10324    879    2014-07-23 00:16:08    2014-07-23 00:16:08
14065    19935    845    2014-12-05 23:00:19    2014-12-05 23:00:19
14066    12038    670    2013-10-10 04:05:43    2013-10-10 04:05:43
14067    13397    620    2015-09-10 13:47:55    2015-09-10 13:47:55
14068    11268    759    2013-06-08 08:46:07    2013-06-08 08:46:07
14069    15374    832    2013-06-21 06:53:57    2013-06-21 06:53:57
14070    19042    802    2015-04-23 22:08:41    2015-04-23 22:08:41
14071    12577    523    2015-08-03 14:17:18    2015-08-03 14:17:18
14072    19727    635    2013-06-22 12:49:36    2013-06-22 12:49:36
14073    14051    631    2015-12-02 20:18:38    2015-12-02 20:18:38
14074    18469    855    2014-08-12 16:12:44    2014-08-12 16:12:44
14075    18948    871    2014-05-16 23:25:03    2014-05-16 23:25:03
14076    12990    957    2013-11-17 21:24:07    2013-11-17 21:24:07
14077    11159    906    2013-05-16 02:00:18    2013-05-16 02:00:18
14078    14010    493    2013-11-19 21:39:05    2013-11-19 21:39:05
14079    11968    508    2014-11-03 00:42:33    2014-11-03 00:42:33
14080    18373    699    2014-03-11 09:59:00    2014-03-11 09:59:00
14081    19629    527    2015-01-15 05:25:01    2015-01-15 05:25:01
14082    16604    570    2013-07-31 12:56:34    2013-07-31 12:56:34
14083    10940    884    2015-04-12 05:44:40    2015-04-12 05:44:40
14084    11582    623    2014-07-07 05:29:10    2014-07-07 05:29:10
14085    16465    603    2015-06-19 01:33:51    2015-06-19 01:33:51
14086    18113    955    2014-08-15 00:41:18    2014-08-15 00:41:18
14087    19821    600    2014-10-18 18:57:15    2014-10-18 18:57:15
14088    10189    870    2015-05-12 09:34:19    2015-05-12 09:34:19
14089    15440    466    2013-11-26 21:01:12    2013-11-26 21:01:12
14090    16977    476    2016-04-13 02:26:38    2016-04-13 02:26:38
14091    17578    486    2015-05-28 19:18:09    2015-05-28 19:18:09
14092    19312    653    2014-02-03 12:29:01    2014-02-03 12:29:01
14093    16151    805    2013-12-17 19:21:31    2013-12-17 19:21:31
14094    13045    558    2015-06-16 14:49:10    2015-06-16 14:49:10
14095    10760    876    2013-06-12 20:15:56    2013-06-12 20:15:56
14096    11985    628    2013-08-12 04:56:06    2013-08-12 04:56:06
14097    14505    463    2014-09-08 07:14:33    2014-09-08 07:14:33
14098    17075    900    2013-08-23 19:00:41    2013-08-23 19:00:41
14099    14280    816    2015-01-09 06:29:58    2015-01-09 06:29:58
14100    16322    590    2016-03-03 08:04:12    2016-03-03 08:04:12
14101    18653    490    2014-01-30 07:13:35    2014-01-30 07:13:35
14102    13399    501    2015-03-31 05:44:01    2015-03-31 05:44:01
14103    17036    521    2016-01-25 10:07:36    2016-01-25 10:07:36
14104    11265    604    2015-12-02 08:37:48    2015-12-02 08:37:48
14105    12303    788    2014-03-28 19:52:09    2014-03-28 19:52:09
14106    18166    845    2013-05-03 07:44:33    2013-05-03 07:44:33
14107    11136    847    2015-08-24 19:25:51    2015-08-24 19:25:51
14108    14142    691    2016-03-20 05:15:12    2016-03-20 05:15:12
14109    10160    926    2015-01-22 09:23:26    2015-01-22 09:23:26
14110    14752    756    2014-05-26 12:47:36    2014-05-26 12:47:36
14111    11791    673    2013-12-18 03:54:06    2013-12-18 03:54:06
14112    11499    746    2014-10-19 03:19:57    2014-10-19 03:19:57
14113    13509    536    2014-04-18 18:56:21    2014-04-18 18:56:21
14114    12844    474    2013-10-08 13:04:19    2013-10-08 13:04:19
14115    14451    851    2015-08-07 10:13:42    2015-08-07 10:13:42
14116    14137    932    2015-05-22 04:57:57    2015-05-22 04:57:57
14117    12751    911    2014-12-10 12:25:53    2014-12-10 12:25:53
14118    16231    816    2016-04-19 17:01:55    2016-04-19 17:01:55
14119    12971    891    2013-08-01 08:52:22    2013-08-01 08:52:22
14120    18453    739    2015-06-20 11:47:44    2015-06-20 11:47:44
14121    14276    568    2015-06-11 04:08:40    2015-06-11 04:08:40
14122    14066    597    2015-10-29 11:59:03    2015-10-29 11:59:03
14123    11519    522    2015-05-26 08:03:02    2015-05-26 08:03:02
14124    15409    663    2013-08-21 16:28:06    2013-08-21 16:28:06
14125    10715    567    2013-05-29 21:47:55    2013-05-29 21:47:55
14126    15272    834    2013-09-23 11:35:22    2013-09-23 11:35:22
14127    17218    897    2014-12-02 05:10:06    2014-12-02 05:10:06
14128    17674    718    2014-12-20 14:37:51    2014-12-20 14:37:51
14129    15700    841    2014-04-02 17:42:39    2014-04-02 17:42:39
14130    15909    883    2015-01-17 00:29:31    2015-01-17 00:29:31
14131    13309    479    2015-07-08 17:32:21    2015-07-08 17:32:21
14132    17130    480    2014-03-25 23:46:28    2014-03-25 23:46:28
14133    13040    935    2015-12-14 02:07:53    2015-12-14 02:07:53
14134    12515    780    2013-09-07 18:03:02    2013-09-07 18:03:02
14135    12071    710    2015-02-26 08:01:56    2015-02-26 08:01:56
14136    10551    894    2015-06-07 09:58:48    2015-06-07 09:58:48
14137    10956    544    2015-08-07 03:12:24    2015-08-07 03:12:24
14138    16083    773    2015-04-09 04:26:30    2015-04-09 04:26:30
14139    10333    528    2016-03-30 00:19:14    2016-03-30 00:19:14
14140    19105    674    2013-09-07 08:17:41    2013-09-07 08:17:41
14141    19340    497    2014-12-01 04:11:56    2014-12-01 04:11:56
14142    19377    714    2014-06-16 13:31:56    2014-06-16 13:31:56
14143    17452    737    2013-05-03 22:07:14    2013-05-03 22:07:14
14144    13867    768    2015-03-12 22:07:31    2015-03-12 22:07:31
14145    16486    678    2013-12-14 06:30:32    2013-12-14 06:30:32
14146    11839    490    2016-01-30 11:51:09    2016-01-30 11:51:09
14147    12175    623    2016-04-13 21:23:30    2016-04-13 21:23:30
14148    10630    596    2015-07-22 02:26:44    2015-07-22 02:26:44
14149    12872    794    2013-04-26 01:17:36    2013-04-26 01:17:36
14150    14675    941    2013-12-26 12:02:45    2013-12-26 12:02:45
14151    10949    472    2015-10-08 04:33:04    2015-10-08 04:33:04
14152    16616    797    2015-12-24 18:14:42    2015-12-24 18:14:42
14153    13305    520    2014-10-29 09:16:40    2014-10-29 09:16:40
14154    18899    486    2013-10-04 11:06:47    2013-10-04 11:06:47
14155    19420    614    2015-05-05 06:17:43    2015-05-05 06:17:43
14156    13442    594    2013-09-05 11:05:42    2013-09-05 11:05:42
14157    11542    746    2016-02-24 20:46:01    2016-02-24 20:46:01
14158    19192    816    2013-08-21 06:53:59    2013-08-21 06:53:59
14159    16556    808    2013-06-28 13:51:01    2013-06-28 13:51:01
14160    19037    493    2015-07-05 18:03:44    2015-07-05 18:03:44
14161    19235    802    2015-09-18 13:49:10    2015-09-18 13:49:10
14162    15771    556    2014-08-14 17:37:16    2014-08-14 17:37:16
14163    11881    815    2016-02-18 20:57:27    2016-02-18 20:57:27
14164    13684    859    2013-08-17 10:26:25    2013-08-17 10:26:25
14165    10792    517    2016-03-24 02:07:26    2016-03-24 02:07:26
14166    17071    494    2014-09-08 22:43:14    2014-09-08 22:43:14
14167    19917    703    2015-01-06 23:38:07    2015-01-06 23:38:07
14168    18549    544    2016-04-02 12:59:22    2016-04-02 12:59:22
14169    10587    843    2015-09-26 00:37:16    2015-09-26 00:37:16
14170    15765    710    2013-10-18 16:28:59    2013-10-18 16:28:59
14171    19182    918    2015-06-04 00:22:33    2015-06-04 00:22:33
14172    10835    836    2013-10-12 12:20:48    2013-10-12 12:20:48
14173    10600    833    2015-06-26 14:52:34    2015-06-26 14:52:34
14174    18772    896    2016-04-09 06:01:35    2016-04-09 06:01:35
14175    13636    585    2016-03-28 03:50:07    2016-03-28 03:50:07
14176    10019    516    2013-09-18 12:12:56    2013-09-18 12:12:56
14177    11127    604    2013-04-25 00:51:14    2013-04-25 00:51:14
14178    12409    560    2014-01-29 00:35:53    2014-01-29 00:35:53
14179    19981    482    2014-08-23 11:26:32    2014-08-23 11:26:32
14180    16807    833    2013-12-09 05:21:31    2013-12-09 05:21:31
14181    13016    844    2014-05-16 20:12:16    2014-05-16 20:12:16
14182    18375    477    2013-12-31 20:56:27    2013-12-31 20:56:27
14183    12125    612    2015-02-10 19:54:59    2015-02-10 19:54:59
14184    18062    936    2016-04-07 06:21:07    2016-04-07 06:21:07
14185    13350    590    2015-04-03 13:43:46    2015-04-03 13:43:46
14186    14131    899    2015-07-27 23:54:08    2015-07-27 23:54:08
14187    15305    473    2016-03-23 07:35:22    2016-03-23 07:35:22
14188    13797    716    2014-04-19 13:42:18    2014-04-19 13:42:18
14189    11311    621    2016-02-08 16:40:53    2016-02-08 16:40:53
14190    17373    828    2014-07-08 04:20:05    2014-07-08 04:20:05
14191    10827    555    2014-05-13 20:38:47    2014-05-13 20:38:47
14192    16170    823    2016-01-06 04:26:45    2016-01-06 04:26:45
14193    18366    954    2013-06-04 15:48:47    2013-06-04 15:48:47
14194    12201    905    2013-11-20 04:16:17    2013-11-20 04:16:17
14195    10150    696    2014-03-30 09:01:10    2014-03-30 09:01:10
14196    17440    898    2014-04-20 00:35:34    2014-04-20 00:35:34
14197    16919    842    2013-08-17 21:01:20    2013-08-17 21:01:20
14198    11339    729    2015-10-21 05:21:21    2015-10-21 05:21:21
14199    10553    471    2014-02-11 23:33:10    2014-02-11 23:33:10
14200    18290    825    2015-04-26 06:09:49    2015-04-26 06:09:49
14201    12141    830    2015-03-27 10:40:47    2015-03-27 10:40:47
14202    12792    515    2015-05-27 07:19:32    2015-05-27 07:19:32
14203    13134    471    2014-05-11 17:58:23    2014-05-11 17:58:23
14204    10392    696    2016-01-02 04:41:23    2016-01-02 04:41:23
14205    11901    635    2015-01-13 01:07:23    2015-01-13 01:07:23
14206    19174    685    2013-08-22 22:19:50    2013-08-22 22:19:50
14207    13802    640    2014-11-20 03:16:53    2014-11-20 03:16:53
14208    10495    544    2013-05-09 18:45:12    2013-05-09 18:45:12
14209    16576    645    2014-02-03 12:26:42    2014-02-03 12:26:42
14210    10343    551    2014-11-21 14:00:12    2014-11-21 14:00:12
14211    15055    530    2014-12-11 15:49:04    2014-12-11 15:49:04
14212    18253    837    2013-12-28 09:15:22    2013-12-28 09:15:22
14213    15230    621    2016-01-03 05:46:33    2016-01-03 05:46:33
14214    19179    566    2013-12-18 14:07:09    2013-12-18 14:07:09
14215    15646    702    2014-02-04 19:52:26    2014-02-04 19:52:26
14216    13773    507    2014-08-10 06:05:54    2014-08-10 06:05:54
14217    12747    534    2015-01-27 13:50:27    2015-01-27 13:50:27
14218    10224    777    2014-10-10 09:50:22    2014-10-10 09:50:22
14219    10882    923    2014-08-24 21:34:59    2014-08-24 21:34:59
14220    16061    889    2015-04-28 19:30:08    2015-04-28 19:30:08
14221    16207    957    2013-12-18 11:51:26    2013-12-18 11:51:26
14222    15355    594    2013-10-31 17:01:02    2013-10-31 17:01:02
14223    19428    787    2013-07-20 18:51:29    2013-07-20 18:51:29
14224    10906    896    2014-02-25 12:50:34    2014-02-25 12:50:34
14225    14888    860    2015-06-28 00:07:56    2015-06-28 00:07:56
14226    13690    491    2013-11-13 20:08:41    2013-11-13 20:08:41
14227    12715    518    2014-01-21 23:51:01    2014-01-21 23:51:01
14228    11075    641    2015-01-27 21:51:38    2015-01-27 21:51:38
14229    13306    545    2014-03-25 12:57:14    2014-03-25 12:57:14
14230    13972    815    2014-01-16 03:20:30    2014-01-16 03:20:30
14231    15654    903    2013-06-05 20:11:04    2013-06-05 20:11:04
14232    11556    704    2015-02-22 18:06:39    2015-02-22 18:06:39
14233    12278    588    2014-06-17 10:48:57    2014-06-17 10:48:57
14234    15237    663    2015-09-18 03:50:48    2015-09-18 03:50:48
14235    11429    867    2016-04-04 20:05:20    2016-04-04 20:05:20
14236    11838    797    2014-05-12 22:18:22    2014-05-12 22:18:22
14237    12620    657    2014-01-18 01:22:36    2014-01-18 01:22:36
14238    16189    640    2015-09-01 12:26:26    2015-09-01 12:26:26
14239    18158    559    2015-05-27 13:21:33    2015-05-27 13:21:33
14240    10903    504    2013-05-31 03:17:15    2013-05-31 03:17:15
14241    18005    900    2014-04-20 20:08:02    2014-04-20 20:08:02
14242    14099    551    2013-05-21 11:12:26    2013-05-21 11:12:26
14243    12605    925    2015-06-30 21:37:29    2015-06-30 21:37:29
14244    17724    934    2013-10-06 18:24:22    2013-10-06 18:24:22
14245    13788    808    2013-12-04 14:26:11    2013-12-04 14:26:11
14246    13170    827    2013-09-22 05:01:29    2013-09-22 05:01:29
14247    19930    519    2014-02-04 05:52:20    2014-02-04 05:52:20
14248    11633    873    2014-07-04 22:11:18    2014-07-04 22:11:18
14249    18610    723    2013-06-27 05:52:16    2013-06-27 05:52:16
14250    10246    834    2015-09-02 07:51:54    2015-09-02 07:51:54
14251    14455    839    2015-06-05 09:34:24    2015-06-05 09:34:24
14252    14585    520    2015-04-15 15:32:56    2015-04-15 15:32:56
14253    12257    866    2016-01-07 08:11:12    2016-01-07 08:11:12
14254    18281    843    2013-07-21 13:41:36    2013-07-21 13:41:36
14255    18112    809    2015-06-27 03:30:24    2015-06-27 03:30:24
14256    12905    514    2015-04-21 18:17:05    2015-04-21 18:17:05
14257    17258    933    2015-03-16 09:38:41    2015-03-16 09:38:41
14258    15018    838    2016-01-29 07:23:24    2016-01-29 07:23:24
14259    14986    571    2014-10-02 01:33:12    2014-10-02 01:33:12
14260    15845    840    2015-11-17 16:45:08    2015-11-17 16:45:08
14261    11897    780    2015-08-18 09:27:00    2015-08-18 09:27:00
14262    15204    726    2015-12-21 06:25:02    2015-12-21 06:25:02
14263    10550    536    2015-02-13 00:47:04    2015-02-13 00:47:04
14264    12404    827    2013-11-13 18:37:05    2013-11-13 18:37:05
14265    17834    871    2014-12-04 16:37:21    2014-12-04 16:37:21
14266    19865    843    2013-10-21 14:54:27    2013-10-21 14:54:27
14267    11983    940    2013-07-01 10:09:38    2013-07-01 10:09:38
14268    13322    614    2014-08-22 04:44:24    2014-08-22 04:44:24
14269    12060    673    2014-02-09 22:14:00    2014-02-09 22:14:00
14270    18586    826    2015-09-17 14:14:28    2015-09-17 14:14:28
14271    16344    545    2015-01-27 17:44:01    2015-01-27 17:44:01
14272    13032    898    2014-02-03 07:36:14    2014-02-03 07:36:14
14273    18972    917    2016-01-17 23:35:09    2016-01-17 23:35:09
14274    15792    847    2016-02-23 02:15:24    2016-02-23 02:15:24
14275    13686    733    2014-02-05 19:47:02    2014-02-05 19:47:02
14276    15359    738    2014-01-02 20:00:59    2014-01-02 20:00:59
14277    16585    682    2014-03-01 04:56:32    2014-03-01 04:56:32
14278    11074    590    2015-12-18 14:09:30    2015-12-18 14:09:30
14279    11177    506    2015-01-01 11:24:01    2015-01-01 11:24:01
14280    10949    687    2015-09-02 11:58:19    2015-09-02 11:58:19
14281    16643    502    2015-10-04 17:55:45    2015-10-04 17:55:45
14282    12662    543    2013-10-30 00:49:16    2013-10-30 00:49:16
14283    18412    528    2013-12-14 23:41:00    2013-12-14 23:41:00
14284    10759    536    2015-10-05 13:37:24    2015-10-05 13:37:24
14285    17970    836    2015-12-08 20:15:31    2015-12-08 20:15:31
14286    12846    464    2015-11-22 12:33:05    2015-11-22 12:33:05
14287    12044    496    2013-09-19 07:41:34    2013-09-19 07:41:34
14288    14093    623    2015-01-29 07:00:01    2015-01-29 07:00:01
14289    10472    637    2014-06-19 03:12:28    2014-06-19 03:12:28
14290    19149    958    2014-11-20 08:06:47    2014-11-20 08:06:47
14291    17636    803    2014-10-17 07:54:54    2014-10-17 07:54:54
14292    18441    799    2016-01-09 06:41:18    2016-01-09 06:41:18
14293    13433    568    2014-04-26 11:18:40    2014-04-26 11:18:40
14294    11103    618    2013-10-19 17:32:58    2013-10-19 17:32:58
14295    10392    955    2015-10-28 06:30:03    2015-10-28 06:30:03
14296    13593    901    2013-07-14 00:00:49    2013-07-14 00:00:49
14297    15851    560    2014-05-21 05:40:43    2014-05-21 05:40:43
14298    13722    576    2015-09-13 13:15:47    2015-09-13 13:15:47
14299    11182    699    2013-05-12 07:18:10    2013-05-12 07:18:10
14300    18029    646    2015-05-25 12:17:49    2015-05-25 12:17:49
14301    17048    945    2015-08-07 16:14:07    2015-08-07 16:14:07
14302    13843    901    2014-04-13 23:14:42    2014-04-13 23:14:42
14303    19429    774    2015-05-27 17:39:47    2015-05-27 17:39:47
14304    16492    882    2014-04-01 03:51:28    2014-04-01 03:51:28
14305    14486    506    2015-01-09 16:02:08    2015-01-09 16:02:08
14306    18192    532    2013-05-02 14:14:05    2013-05-02 14:14:05
14307    18443    787    2014-01-19 17:55:30    2014-01-19 17:55:30
14308    16300    586    2014-09-20 03:53:26    2014-09-20 03:53:26
14309    13148    702    2016-03-19 08:52:00    2016-03-19 08:52:00
14310    16499    764    2014-11-28 00:15:28    2014-11-28 00:15:28
14311    13974    789    2015-10-12 02:37:17    2015-10-12 02:37:17
14312    17357    603    2014-06-29 11:00:30    2014-06-29 11:00:30
14313    13610    864    2014-01-08 09:24:52    2014-01-08 09:24:52
14314    11594    926    2015-06-08 08:43:22    2015-06-08 08:43:22
14315    15454    880    2015-03-05 10:14:58    2015-03-05 10:14:58
14316    15562    649    2015-02-28 05:39:57    2015-02-28 05:39:57
14317    11824    541    2013-12-22 21:33:21    2013-12-22 21:33:21
14318    13238    628    2014-01-20 23:47:45    2014-01-20 23:47:45
14319    12135    701    2016-02-10 18:46:16    2016-02-10 18:46:16
14320    16283    794    2014-09-27 12:15:16    2014-09-27 12:15:16
14321    19933    802    2014-11-22 06:01:00    2014-11-22 06:01:00
14322    13126    820    2015-08-23 04:02:24    2015-08-23 04:02:24
14323    19079    515    2013-05-14 19:16:07    2013-05-14 19:16:07
14324    16913    883    2015-07-04 03:58:04    2015-07-04 03:58:04
14325    12314    655    2016-02-26 10:45:50    2016-02-26 10:45:50
14326    13945    586    2015-05-09 04:20:33    2015-05-09 04:20:33
14327    11313    658    2015-06-20 06:50:25    2015-06-20 06:50:25
14328    15381    787    2015-10-05 22:05:00    2015-10-05 22:05:00
14329    18124    472    2015-06-18 07:16:19    2015-06-18 07:16:19
14330    10135    665    2014-07-19 19:52:14    2014-07-19 19:52:14
14331    15680    784    2013-07-20 19:33:48    2013-07-20 19:33:48
14332    14542    522    2013-10-19 23:14:25    2013-10-19 23:14:25
14333    15044    826    2015-09-17 05:49:36    2015-09-17 05:49:36
14334    18334    735    2014-11-24 02:16:28    2014-11-24 02:16:28
14335    13991    737    2014-07-09 03:20:58    2014-07-09 03:20:58
14336    14279    533    2015-08-05 04:00:05    2015-08-05 04:00:05
14337    15304    639    2013-05-23 11:34:11    2013-05-23 11:34:11
14338    17942    666    2013-06-03 16:32:17    2013-06-03 16:32:17
14339    13481    701    2013-07-23 21:38:39    2013-07-23 21:38:39
14340    18228    795    2015-08-31 03:37:38    2015-08-31 03:37:38
14341    13697    508    2013-11-09 05:21:51    2013-11-09 05:21:51
14342    13360    581    2015-12-10 14:58:32    2015-12-10 14:58:32
14343    18952    547    2015-06-15 12:22:20    2015-06-15 12:22:20
14344    18608    894    2015-06-10 16:22:12    2015-06-10 16:22:12
14345    16404    639    2013-06-07 21:55:34    2013-06-07 21:55:34
14346    14921    666    2014-07-02 05:53:54    2014-07-02 05:53:54
14347    14575    766    2013-06-16 13:17:40    2013-06-16 13:17:40
14348    13662    572    2014-11-13 20:00:57    2014-11-13 20:00:57
14349    17423    881    2015-03-03 15:12:39    2015-03-03 15:12:39
14350    13330    643    2015-03-07 10:22:18    2015-03-07 10:22:18
14351    15170    925    2014-11-02 02:36:57    2014-11-02 02:36:57
14352    18974    596    2015-05-27 16:06:17    2015-05-27 16:06:17
14353    15479    615    2014-08-17 03:16:10    2014-08-17 03:16:10
14354    10764    809    2014-01-19 14:54:05    2014-01-19 14:54:05
14355    14105    942    2014-09-08 20:52:50    2014-09-08 20:52:50
14356    12940    671    2016-03-11 04:00:47    2016-03-11 04:00:47
14357    13560    729    2013-12-07 19:04:59    2013-12-07 19:04:59
14358    19739    653    2015-08-20 21:03:54    2015-08-20 21:03:54
14359    14089    629    2014-02-07 07:20:08    2014-02-07 07:20:08
14360    18351    787    2014-09-25 13:26:39    2014-09-25 13:26:39
14361    13663    870    2016-01-18 22:26:32    2016-01-18 22:26:32
14362    19250    735    2014-05-01 11:51:09    2014-05-01 11:51:09
14363    12084    472    2016-01-05 22:47:49    2016-01-05 22:47:49
14364    17165    838    2014-12-25 19:26:35    2014-12-25 19:26:35
14365    19921    888    2014-09-18 10:39:51    2014-09-18 10:39:51
14366    18321    586    2014-07-11 06:32:27    2014-07-11 06:32:27
14367    10975    520    2013-05-04 20:17:29    2013-05-04 20:17:29
14368    17736    567    2014-09-13 16:05:01    2014-09-13 16:05:01
14369    19667    615    2013-11-02 22:34:41    2013-11-02 22:34:41
14370    10936    612    2015-09-07 12:17:36    2015-09-07 12:17:36
14371    11864    647    2014-09-21 09:20:09    2014-09-21 09:20:09
14372    16013    907    2015-11-05 10:02:14    2015-11-05 10:02:14
14373    16631    872    2014-10-26 00:53:03    2014-10-26 00:53:03
14374    13584    468    2015-09-26 15:04:20    2015-09-26 15:04:20
14375    14160    591    2013-07-12 16:51:26    2013-07-12 16:51:26
14376    18750    571    2013-11-02 15:52:52    2013-11-02 15:52:52
14377    10320    805    2013-06-05 00:36:37    2013-06-05 00:36:37
14378    19918    491    2014-02-04 16:14:02    2014-02-04 16:14:02
14379    16088    700    2015-07-26 18:44:43    2015-07-26 18:44:43
14380    10660    943    2013-06-28 07:02:07    2013-06-28 07:02:07
14381    16467    577    2014-03-21 06:16:48    2014-03-21 06:16:48
14382    12388    861    2015-06-18 03:09:58    2015-06-18 03:09:58
14383    19726    803    2014-03-08 08:17:17    2014-03-08 08:17:17
14384    16639    741    2013-09-15 18:22:49    2013-09-15 18:22:49
14385    17894    464    2016-02-03 15:04:17    2016-02-03 15:04:17
14386    10772    554    2013-12-21 12:20:27    2013-12-21 12:20:27
14387    12100    892    2014-11-14 21:13:26    2014-11-14 21:13:26
14388    15085    666    2014-07-24 03:39:36    2014-07-24 03:39:36
14389    16269    653    2015-10-22 08:34:20    2015-10-22 08:34:20
14390    17744    507    2015-03-15 12:18:18    2015-03-15 12:18:18
14391    18240    516    2013-11-16 02:07:10    2013-11-16 02:07:10
14392    13349    784    2016-01-30 08:00:57    2016-01-30 08:00:57
14393    18598    564    2015-10-28 13:15:46    2015-10-28 13:15:46
14394    14381    827    2015-04-13 10:04:40    2015-04-13 10:04:40
14395    17992    466    2015-05-23 06:59:47    2015-05-23 06:59:47
14396    14885    606    2015-12-20 11:13:38    2015-12-20 11:13:38
14397    16414    937    2015-10-08 00:44:40    2015-10-08 00:44:40
14398    18098    679    2013-12-19 04:00:53    2013-12-19 04:00:53
14399    12158    640    2014-10-05 13:02:04    2014-10-05 13:02:04
14400    18332    890    2014-05-01 19:46:30    2014-05-01 19:46:30
14401    12218    797    2013-04-30 17:46:39    2013-04-30 17:46:39
14402    17130    699    2013-12-25 06:58:38    2013-12-25 06:58:38
14403    13132    880    2014-09-11 18:17:11    2014-09-11 18:17:11
14404    11871    812    2014-12-20 13:42:05    2014-12-20 13:42:05
14405    17026    781    2013-12-22 14:33:32    2013-12-22 14:33:32
14406    14459    504    2014-10-01 04:58:57    2014-10-01 04:58:57
14407    15090    882    2014-08-20 19:02:34    2014-08-20 19:02:34
14408    12238    538    2016-03-11 07:31:40    2016-03-11 07:31:40
14409    18479    688    2014-10-18 00:51:46    2014-10-18 00:51:46
14410    19513    692    2014-03-27 08:12:22    2014-03-27 08:12:22
14411    15753    801    2013-11-10 11:36:19    2013-11-10 11:36:19
14412    14875    535    2015-09-26 03:01:35    2015-09-26 03:01:35
14413    12381    729    2014-04-04 06:37:33    2014-04-04 06:37:33
14414    13766    729    2014-04-02 09:39:33    2014-04-02 09:39:33
14415    13027    604    2015-09-04 13:05:21    2015-09-04 13:05:21
14416    14637    604    2013-08-03 21:28:52    2013-08-03 21:28:52
14417    13812    782    2014-04-26 17:19:50    2014-04-26 17:19:50
14418    15699    783    2013-09-25 23:30:24    2013-09-25 23:30:24
14419    16973    698    2013-05-12 13:09:24    2013-05-12 13:09:24
14420    14270    898    2016-01-18 12:11:23    2016-01-18 12:11:23
14421    14150    680    2013-10-07 14:34:49    2013-10-07 14:34:49
14422    14294    861    2015-11-26 10:19:20    2015-11-26 10:19:20
14423    18061    770    2014-07-13 02:49:21    2014-07-13 02:49:21
14424    14758    495    2015-09-16 20:01:57    2015-09-16 20:01:57
14425    13320    838    2015-06-13 00:58:50    2015-06-13 00:58:50
14426    19386    857    2016-02-07 11:58:25    2016-02-07 11:58:25
14427    12509    799    2015-04-29 10:01:10    2015-04-29 10:01:10
14428    10799    756    2013-09-08 00:11:12    2013-09-08 00:11:12
14429    13979    566    2014-11-03 12:30:06    2014-11-03 12:30:06
14430    16643    601    2015-09-21 03:07:40    2015-09-21 03:07:40
14431    12325    883    2015-10-01 22:06:22    2015-10-01 22:06:22
14432    12985    557    2013-09-30 07:45:56    2013-09-30 07:45:56
14433    12326    799    2014-06-05 10:46:56    2014-06-05 10:46:56
14434    18092    838    2015-12-24 20:43:01    2015-12-24 20:43:01
14435    17732    856    2016-01-11 10:53:58    2016-01-11 10:53:58
14436    17174    640    2014-09-29 02:09:33    2014-09-29 02:09:33
14437    14468    487    2014-11-13 04:06:02    2014-11-13 04:06:02
14438    19217    592    2014-10-29 03:36:57    2014-10-29 03:36:57
14439    10520    620    2014-07-12 08:18:58    2014-07-12 08:18:58
14440    16326    513    2015-12-23 12:40:20    2015-12-23 12:40:20
14441    19481    954    2014-08-30 13:04:59    2014-08-30 13:04:59
14442    10903    542    2015-04-23 13:24:00    2015-04-23 13:24:00
14443    14270    691    2016-01-20 14:23:34    2016-01-20 14:23:34
14444    15192    725    2014-09-16 08:00:53    2014-09-16 08:00:53
14445    10227    600    2015-12-29 02:12:08    2015-12-29 02:12:08
14446    18567    919    2014-03-16 22:57:22    2014-03-16 22:57:22
14447    16574    589    2015-10-17 20:41:19    2015-10-17 20:41:19
14448    19705    960    2013-08-02 22:50:06    2013-08-02 22:50:06
14449    16198    688    2013-06-11 16:41:40    2013-06-11 16:41:40
14450    14548    474    2015-01-25 22:31:09    2015-01-25 22:31:09
14451    12770    736    2014-10-27 19:08:54    2014-10-27 19:08:54
14452    11878    762    2015-02-23 23:35:30    2015-02-23 23:35:30
14453    12395    719    2013-08-14 17:23:35    2013-08-14 17:23:35
14454    17978    769    2015-09-28 03:50:08    2015-09-28 03:50:08
14455    15672    582    2015-06-09 02:30:15    2015-06-09 02:30:15
14456    18632    550    2014-06-03 14:44:22    2014-06-03 14:44:22
14457    10008    953    2014-04-25 08:33:59    2014-04-25 08:33:59
14458    16098    694    2014-02-22 22:58:43    2014-02-22 22:58:43
14459    16240    648    2015-07-11 07:53:21    2015-07-11 07:53:21
14460    12412    659    2015-06-11 22:40:49    2015-06-11 22:40:49
14461    12236    688    2013-12-31 14:24:31    2013-12-31 14:24:31
14462    10072    674    2014-07-21 10:51:25    2014-07-21 10:51:25
14463    17844    635    2015-08-12 02:44:20    2015-08-12 02:44:20
14464    19087    920    2013-07-13 11:03:30    2013-07-13 11:03:30
14465    16739    557    2013-10-10 01:05:42    2013-10-10 01:05:42
14466    15409    642    2014-07-24 12:54:07    2014-07-24 12:54:07
14467    13250    492    2014-01-07 10:18:25    2014-01-07 10:18:25
14468    13718    945    2013-06-20 04:41:59    2013-06-20 04:41:59
14469    13261    810    2016-04-19 07:31:05    2016-04-19 07:31:05
14470    12938    466    2013-05-04 04:40:50    2013-05-04 04:40:50
14471    11354    645    2014-05-01 10:28:53    2014-05-01 10:28:53
14472    11366    833    2013-11-13 21:15:47    2013-11-13 21:15:47
14473    11306    794    2014-08-25 13:18:32    2014-08-25 13:18:32
14474    10098    734    2014-04-21 14:28:52    2014-04-21 14:28:52
14475    11214    848    2013-12-18 20:54:49    2013-12-18 20:54:49
14476    13718    478    2014-01-14 15:49:46    2014-01-14 15:49:46
14477    11454    916    2015-07-24 15:38:37    2015-07-24 15:38:37
14478    16903    631    2015-02-20 02:20:57    2015-02-20 02:20:57
14479    16998    807    2013-06-21 02:15:48    2013-06-21 02:15:48
14480    16075    870    2015-03-20 16:42:32    2015-03-20 16:42:32
14481    17650    672    2014-07-19 09:24:03    2014-07-19 09:24:03
14482    18839    860    2016-02-07 18:06:35    2016-02-07 18:06:35
14483    18711    759    2015-06-23 10:26:08    2015-06-23 10:26:08
14484    13206    863    2014-07-08 16:56:37    2014-07-08 16:56:37
14485    10029    844    2016-02-06 19:35:36    2016-02-06 19:35:36
14486    11140    643    2015-11-06 06:52:17    2015-11-06 06:52:17
14487    12406    874    2015-06-10 12:56:22    2015-06-10 12:56:22
14488    11528    566    2014-01-24 22:29:33    2014-01-24 22:29:33
14489    11046    467    2014-10-09 06:17:55    2014-10-09 06:17:55
14490    18404    673    2014-06-17 05:56:45    2014-06-17 05:56:45
14491    17892    741    2015-10-16 23:41:05    2015-10-16 23:41:05
14492    10012    891    2015-10-13 00:23:48    2015-10-13 00:23:48
14493    17394    520    2015-01-17 03:31:32    2015-01-17 03:31:32
14494    19082    872    2015-07-27 23:27:22    2015-07-27 23:27:22
14495    12836    736    2013-08-05 17:18:35    2013-08-05 17:18:35
14496    12598    772    2014-06-25 05:12:14    2014-06-25 05:12:14
14497    12189    627    2016-01-26 04:35:18    2016-01-26 04:35:18
14498    13126    633    2014-03-01 07:51:33    2014-03-01 07:51:33
14499    13714    897    2013-10-01 00:04:59    2013-10-01 00:04:59
14500    10940    535    2014-09-29 00:50:21    2014-09-29 00:50:21
14501    15010    826    2015-12-31 07:12:15    2015-12-31 07:12:15
14502    11213    842    2013-10-18 21:56:01    2013-10-18 21:56:01
14503    15485    503    2014-04-14 13:01:32    2014-04-14 13:01:32
14504    13973    467    2015-05-10 09:24:20    2015-05-10 09:24:20
14505    10454    586    2015-08-17 22:03:45    2015-08-17 22:03:45
14506    10326    648    2016-03-31 06:27:21    2016-03-31 06:27:21
14507    18352    557    2013-07-15 17:00:36    2013-07-15 17:00:36
14508    18083    693    2013-06-16 11:57:02    2013-06-16 11:57:02
14509    13551    654    2014-05-04 18:31:18    2014-05-04 18:31:18
14510    13893    708    2016-02-18 02:25:18    2016-02-18 02:25:18
14511    15756    815    2013-12-04 13:11:54    2013-12-04 13:11:54
14512    13707    861    2015-12-14 15:02:15    2015-12-14 15:02:15
14513    13681    687    2015-04-29 08:35:25    2015-04-29 08:35:25
14514    13607    933    2015-10-23 04:15:44    2015-10-23 04:15:44
14515    17904    801    2014-10-08 17:50:58    2014-10-08 17:50:58
14516    12152    870    2015-03-20 11:07:43    2015-03-20 11:07:43
14517    11415    729    2014-12-25 14:16:39    2014-12-25 14:16:39
14518    12136    901    2013-08-17 04:27:22    2013-08-17 04:27:22
14519    15554    537    2013-10-09 09:16:34    2013-10-09 09:16:34
14520    12843    636    2015-03-10 11:02:26    2015-03-10 11:02:26
14521    11534    517    2014-06-30 18:29:34    2014-06-30 18:29:34
14522    10417    679    2013-12-09 04:28:29    2013-12-09 04:28:29
14523    14751    629    2014-06-05 15:34:00    2014-06-05 15:34:00
14524    10707    513    2014-04-18 14:32:17    2014-04-18 14:32:17
14525    16562    543    2014-08-09 21:21:41    2014-08-09 21:21:41
14526    18117    834    2015-10-01 03:40:44    2015-10-01 03:40:44
14527    14698    945    2015-10-27 10:49:35    2015-10-27 10:49:35
14528    13075    591    2014-01-22 10:51:45    2014-01-22 10:51:45
14529    17339    830    2015-12-19 07:30:55    2015-12-19 07:30:55
14530    14401    555    2014-12-15 06:23:26    2014-12-15 06:23:26
14531    14046    743    2014-05-20 23:35:33    2014-05-20 23:35:33
14532    15799    644    2013-06-30 19:12:26    2013-06-30 19:12:26
14533    16188    501    2013-06-13 04:25:31    2013-06-13 04:25:31
14534    13211    706    2014-08-08 17:11:43    2014-08-08 17:11:43
14535    11623    728    2013-11-03 04:05:16    2013-11-03 04:05:16
14536    11885    719    2015-10-20 11:56:33    2015-10-20 11:56:33
14537    14443    554    2015-06-23 10:04:04    2015-06-23 10:04:04
14538    18967    606    2013-07-08 17:29:21    2013-07-08 17:29:21
14539    17597    937    2016-01-06 14:30:53    2016-01-06 14:30:53
14540    19395    810    2014-09-09 23:53:12    2014-09-09 23:53:12
14541    11896    852    2014-10-21 06:48:29    2014-10-21 06:48:29
14542    12662    874    2013-07-06 23:29:36    2013-07-06 23:29:36
14543    11899    501    2013-10-13 18:06:34    2013-10-13 18:06:34
14544    13181    521    2013-07-14 09:15:51    2013-07-14 09:15:51
14545    12980    748    2013-11-18 00:44:28    2013-11-18 00:44:28
14546    16813    695    2015-05-25 21:03:10    2015-05-25 21:03:10
14547    18706    613    2013-11-20 16:32:23    2013-11-20 16:32:23
14548    19943    817    2015-02-18 05:46:37    2015-02-18 05:46:37
14549    13742    768    2014-03-11 08:43:41    2014-03-11 08:43:41
14550    16523    611    2014-09-08 02:26:31    2014-09-08 02:26:31
14551    11293    624    2016-01-20 21:21:47    2016-01-20 21:21:47
14552    19711    880    2015-08-03 05:32:40    2015-08-03 05:32:40
14553    12448    737    2014-01-29 06:16:39    2014-01-29 06:16:39
14554    13742    725    2013-08-26 10:33:09    2013-08-26 10:33:09
14555    19346    539    2015-07-29 04:44:38    2015-07-29 04:44:38
14556    10387    923    2014-10-10 01:24:35    2014-10-10 01:24:35
14557    19820    917    2015-05-23 00:36:24    2015-05-23 00:36:24
14558    19989    893    2015-10-05 22:05:49    2015-10-05 22:05:49
14559    10916    719    2016-01-06 17:24:24    2016-01-06 17:24:24
14560    16217    727    2013-05-27 08:55:31    2013-05-27 08:55:31
14561    18425    469    2014-08-17 05:18:21    2014-08-17 05:18:21
14562    19729    895    2015-02-23 01:09:05    2015-02-23 01:09:05
14563    10543    727    2013-04-24 23:01:34    2013-04-24 23:01:34
14564    10336    528    2013-05-21 06:54:10    2013-05-21 06:54:10
14565    10648    958    2013-10-11 06:11:36    2013-10-11 06:11:36
14566    19365    937    2013-12-13 03:15:13    2013-12-13 03:15:13
14567    15553    781    2013-09-03 22:42:50    2013-09-03 22:42:50
14568    12817    634    2015-10-14 01:32:15    2015-10-14 01:32:15
14569    15253    865    2013-11-16 19:10:55    2013-11-16 19:10:55
14570    11025    861    2013-12-05 01:15:29    2013-12-05 01:15:29
14571    16462    526    2014-04-22 11:20:08    2014-04-22 11:20:08
14572    17764    864    2013-09-21 18:57:41    2013-09-21 18:57:41
14573    19101    532    2013-06-10 16:21:42    2013-06-10 16:21:42
14574    15873    765    2016-03-25 03:46:06    2016-03-25 03:46:06
14575    11453    538    2015-07-14 22:19:07    2015-07-14 22:19:07
14576    16392    846    2014-05-20 13:35:17    2014-05-20 13:35:17
14577    14073    626    2015-12-12 07:15:58    2015-12-12 07:15:58
14578    17802    601    2015-06-14 06:34:19    2015-06-14 06:34:19
14579    17501    762    2014-01-27 16:44:04    2014-01-27 16:44:04
14580    10490    683    2015-12-25 09:56:56    2015-12-25 09:56:56
14581    16113    517    2013-06-05 00:18:18    2013-06-05 00:18:18
14582    17847    649    2014-07-02 23:23:20    2014-07-02 23:23:20
14583    14724    902    2014-02-05 08:01:15    2014-02-05 08:01:15
14584    17110    688    2013-11-25 12:32:07    2013-11-25 12:32:07
14585    12877    685    2014-12-09 17:59:24    2014-12-09 17:59:24
14586    13362    666    2014-03-02 05:29:21    2014-03-02 05:29:21
14587    17503    740    2014-02-09 09:50:42    2014-02-09 09:50:42
14588    19645    799    2016-02-24 15:04:49    2016-02-24 15:04:49
14589    15216    529    2014-08-19 10:45:50    2014-08-19 10:45:50
14590    18965    727    2015-03-05 10:28:08    2015-03-05 10:28:08
14591    18484    728    2013-09-13 09:27:29    2013-09-13 09:27:29
14592    12896    564    2013-10-31 11:18:44    2013-10-31 11:18:44
14593    13046    665    2015-06-16 13:20:45    2015-06-16 13:20:45
14594    12091    669    2015-10-16 00:12:02    2015-10-16 00:12:02
14595    16187    702    2015-06-11 18:00:36    2015-06-11 18:00:36
14596    17354    492    2016-01-05 13:18:43    2016-01-05 13:18:43
14597    16865    506    2013-05-27 13:35:38    2013-05-27 13:35:38
14598    17623    494    2014-08-28 07:25:18    2014-08-28 07:25:18
14599    14363    752    2016-01-18 08:48:07    2016-01-18 08:48:07
14600    14565    635    2014-09-21 14:41:48    2014-09-21 14:41:48
14601    13601    724    2016-04-11 10:48:13    2016-04-11 10:48:13
14602    14602    595    2013-09-09 15:12:02    2013-09-09 15:12:02
14603    18672    920    2015-05-19 00:52:11    2015-05-19 00:52:11
14604    17691    614    2013-04-22 13:30:05    2013-04-22 13:30:05
14605    16346    570    2013-08-27 19:56:00    2013-08-27 19:56:00
14606    16871    715    2014-12-06 19:36:35    2014-12-06 19:36:35
14607    18135    887    2015-04-30 15:36:05    2015-04-30 15:36:05
14608    18288    496    2015-07-28 23:10:26    2015-07-28 23:10:26
14609    16323    750    2014-09-15 16:52:17    2014-09-15 16:52:17
14610    18623    887    2015-10-22 22:03:05    2015-10-22 22:03:05
14611    12611    848    2014-12-27 23:39:17    2014-12-27 23:39:17
14612    13100    903    2015-06-02 17:00:07    2015-06-02 17:00:07
14613    17888    584    2015-05-19 11:24:16    2015-05-19 11:24:16
14614    16862    523    2015-08-13 03:18:03    2015-08-13 03:18:03
14615    14284    696    2015-11-20 07:36:21    2015-11-20 07:36:21
14616    10476    887    2015-06-28 02:12:40    2015-06-28 02:12:40
14617    11129    745    2015-09-28 04:29:19    2015-09-28 04:29:19
14618    10745    895    2015-06-09 06:56:39    2015-06-09 06:56:39
14619    17941    741    2014-12-26 14:50:40    2014-12-26 14:50:40
14620    19302    928    2014-06-04 09:55:38    2014-06-04 09:55:38
14621    18550    799    2016-01-10 12:38:22    2016-01-10 12:38:22
14622    18478    749    2014-08-15 13:22:26    2014-08-15 13:22:26
14623    17268    477    2016-01-26 21:00:50    2016-01-26 21:00:50
14624    11850    554    2015-10-09 22:16:31    2015-10-09 22:16:31
14625    10865    685    2016-01-17 03:13:36    2016-01-17 03:13:36
14626    15481    837    2013-04-24 09:36:31    2013-04-24 09:36:31
14627    15420    829    2013-11-28 00:17:27    2013-11-28 00:17:27
14628    19881    933    2013-11-22 09:16:27    2013-11-22 09:16:27
14629    16662    733    2013-07-24 15:59:00    2013-07-24 15:59:00
14630    10328    536    2014-05-01 09:22:08    2014-05-01 09:22:08
14631    17589    862    2015-07-18 23:17:27    2015-07-18 23:17:27
14632    18271    494    2015-11-06 05:00:17    2015-11-06 05:00:17
14633    19839    719    2014-07-16 03:37:02    2014-07-16 03:37:02
14634    10160    578    2014-10-31 00:37:54    2014-10-31 00:37:54
14635    11941    590    2014-08-29 14:45:42    2014-08-29 14:45:42
14636    11921    785    2016-02-06 13:53:43    2016-02-06 13:53:43
14637    11790    811    2015-09-03 13:32:25    2015-09-03 13:32:25
14638    17909    835    2014-08-22 14:57:10    2014-08-22 14:57:10
14639    14790    863    2015-05-29 16:49:03    2015-05-29 16:49:03
14640    10173    627    2014-07-28 05:15:51    2014-07-28 05:15:51
14641    11864    575    2014-06-05 14:56:06    2014-06-05 14:56:06
14642    19510    607    2016-04-05 05:20:21    2016-04-05 05:20:21
14643    13365    490    2013-09-14 18:02:25    2013-09-14 18:02:25
14644    17770    562    2013-11-07 02:09:41    2013-11-07 02:09:41
14645    13347    513    2015-08-20 19:16:20    2015-08-20 19:16:20
14646    14801    755    2014-06-06 10:10:02    2014-06-06 10:10:02
14647    10701    739    2014-03-11 07:04:47    2014-03-11 07:04:47
14648    14023    653    2013-10-08 12:06:04    2013-10-08 12:06:04
14649    14815    838    2015-04-01 16:25:51    2015-04-01 16:25:51
14650    11808    771    2013-12-11 22:02:04    2013-12-11 22:02:04
14651    19699    495    2015-04-21 16:23:18    2015-04-21 16:23:18
14652    10042    545    2015-07-24 04:07:51    2015-07-24 04:07:51
14653    13630    858    2014-12-25 23:45:51    2014-12-25 23:45:51
14654    17628    535    2013-10-13 04:09:49    2013-10-13 04:09:49
14655    18084    759    2014-01-23 09:26:08    2014-01-23 09:26:08
14656    18945    582    2014-10-13 19:28:56    2014-10-13 19:28:56
14657    15127    837    2014-04-26 04:01:18    2014-04-26 04:01:18
14658    14649    896    2013-06-29 04:27:05    2013-06-29 04:27:05
14659    15917    815    2014-10-24 19:42:08    2014-10-24 19:42:08
14660    15008    864    2014-02-15 18:33:14    2014-02-15 18:33:14
14661    10545    895    2015-08-12 14:17:24    2015-08-12 14:17:24
14662    15208    682    2015-06-28 01:55:36    2015-06-28 01:55:36
14663    19606    575    2015-02-23 20:58:54    2015-02-23 20:58:54
14664    18166    803    2015-10-19 02:53:20    2015-10-19 02:53:20
14665    10528    779    2015-08-28 08:07:41    2015-08-28 08:07:41
14666    16250    876    2014-01-13 13:14:09    2014-01-13 13:14:09
14667    19225    781    2016-03-05 22:30:44    2016-03-05 22:30:44
14668    12116    767    2016-02-10 20:52:33    2016-02-10 20:52:33
14669    15099    802    2015-11-29 12:22:44    2015-11-29 12:22:44
14670    17143    739    2015-09-22 15:21:26    2015-09-22 15:21:26
14671    14004    949    2013-05-28 11:01:08    2013-05-28 11:01:08
14672    15779    610    2015-05-25 10:10:24    2015-05-25 10:10:24
14673    19645    669    2015-01-25 19:58:30    2015-01-25 19:58:30
14674    14614    625    2015-05-22 00:38:13    2015-05-22 00:38:13
14675    18893    574    2015-10-12 00:33:40    2015-10-12 00:33:40
14676    18117    828    2013-06-06 15:14:13    2013-06-06 15:14:13
14677    13352    806    2014-08-29 06:02:57    2014-08-29 06:02:57
14678    16693    647    2015-12-02 14:08:46    2015-12-02 14:08:46
14679    16612    896    2013-12-27 12:11:38    2013-12-27 12:11:38
14680    14977    960    2015-03-31 12:39:32    2015-03-31 12:39:32
14681    19262    626    2014-01-29 05:02:06    2014-01-29 05:02:06
14682    11700    643    2015-02-17 19:58:55    2015-02-17 19:58:55
14683    10443    916    2015-06-11 01:03:32    2015-06-11 01:03:32
14684    11562    843    2013-11-30 10:50:25    2013-11-30 10:50:25
14685    15232    728    2014-04-24 07:51:26    2014-04-24 07:51:26
14686    12095    539    2014-06-30 09:36:32    2014-06-30 09:36:32
14687    15960    681    2015-01-03 23:18:31    2015-01-03 23:18:31
14688    14097    604    2014-03-14 05:40:48    2014-03-14 05:40:48
14689    12228    882    2014-01-09 00:15:44    2014-01-09 00:15:44
14690    13288    809    2014-10-12 02:52:02    2014-10-12 02:52:02
14691    17160    523    2015-11-27 22:03:51    2015-11-27 22:03:51
14692    13494    623    2014-10-18 02:35:16    2014-10-18 02:35:16
14693    19168    521    2015-08-27 10:36:32    2015-08-27 10:36:32
14694    12047    666    2015-12-28 19:55:14    2015-12-28 19:55:14
14695    17729    833    2014-02-27 12:58:34    2014-02-27 12:58:34
14696    15521    576    2015-07-24 03:54:37    2015-07-24 03:54:37
14697    10293    842    2014-12-29 06:42:35    2014-12-29 06:42:35
14698    19387    617    2015-04-02 06:21:43    2015-04-02 06:21:43
14699    15582    592    2015-12-02 05:41:41    2015-12-02 05:41:41
14700    17571    807    2016-02-14 06:37:44    2016-02-14 06:37:44
14701    15496    477    2016-04-02 15:39:30    2016-04-02 15:39:30
14702    14679    631    2014-08-25 07:49:58    2014-08-25 07:49:58
14703    13464    783    2014-09-21 07:21:49    2014-09-21 07:21:49
14704    10735    834    2016-01-07 00:51:53    2016-01-07 00:51:53
14705    17897    859    2015-05-21 14:01:43    2015-05-21 14:01:43
14706    12791    597    2015-09-20 17:22:43    2015-09-20 17:22:43
14707    14647    682    2014-12-11 04:57:46    2014-12-11 04:57:46
14708    18927    943    2015-05-28 07:29:31    2015-05-28 07:29:31
14709    12119    642    2014-01-06 19:45:01    2014-01-06 19:45:01
14710    12980    675    2013-05-09 01:48:21    2013-05-09 01:48:21
14711    11800    654    2014-12-10 07:11:10    2014-12-10 07:11:10
14712    13900    875    2014-06-30 06:45:36    2014-06-30 06:45:36
14713    17020    471    2016-01-01 15:52:29    2016-01-01 15:52:29
14714    17961    534    2015-06-30 15:51:39    2015-06-30 15:51:39
14715    13953    828    2014-06-09 16:54:28    2014-06-09 16:54:28
14716    17402    726    2015-04-25 11:06:55    2015-04-25 11:06:55
14717    15821    659    2015-05-23 22:25:00    2015-05-23 22:25:00
14718    17798    466    2015-04-22 09:59:57    2015-04-22 09:59:57
14719    19049    818    2013-06-26 18:19:46    2013-06-26 18:19:46
14720    11529    570    2016-04-06 21:01:06    2016-04-06 21:01:06
14721    18855    768    2014-12-18 17:06:13    2014-12-18 17:06:13
14722    13636    867    2013-09-03 16:30:10    2013-09-03 16:30:10
14723    13092    476    2013-06-04 17:48:26    2013-06-04 17:48:26
14724    18936    671    2015-09-02 06:54:50    2015-09-02 06:54:50
14725    16844    542    2015-01-03 04:48:49    2015-01-03 04:48:49
14726    18132    701    2013-06-11 09:07:23    2013-06-11 09:07:23
14727    12981    794    2016-03-21 05:14:20    2016-03-21 05:14:20
14728    17215    802    2013-08-27 05:10:59    2013-08-27 05:10:59
14729    18419    877    2015-11-05 10:19:25    2015-11-05 10:19:25
14730    13153    527    2015-12-28 09:06:33    2015-12-28 09:06:33
14731    10205    931    2015-07-20 15:25:03    2015-07-20 15:25:03
14732    19134    494    2014-05-27 10:35:46    2014-05-27 10:35:46
14733    16049    673    2014-01-22 15:53:01    2014-01-22 15:53:01
14734    16702    775    2014-04-13 13:40:36    2014-04-13 13:40:36
14735    16247    532    2015-08-27 09:32:19    2015-08-27 09:32:19
14736    18540    609    2013-09-16 04:31:29    2013-09-16 04:31:29
14737    18120    538    2016-03-15 23:03:52    2016-03-15 23:03:52
14738    13815    769    2013-06-23 09:06:49    2013-06-23 09:06:49
14739    16420    677    2014-03-30 01:15:00    2014-03-30 01:15:00
14740    13949    836    2014-12-30 00:27:11    2014-12-30 00:27:11
14741    18990    790    2015-01-07 23:59:38    2015-01-07 23:59:38
14742    17363    709    2013-12-26 04:32:50    2013-12-26 04:32:50
14743    16960    907    2013-04-29 07:20:09    2013-04-29 07:20:09
14744    13237    822    2014-08-08 16:17:33    2014-08-08 16:17:33
14745    16781    734    2016-01-12 20:11:57    2016-01-12 20:11:57
14746    13736    842    2015-04-10 03:22:35    2015-04-10 03:22:35
14747    14354    868    2014-11-03 20:21:52    2014-11-03 20:21:52
14748    13218    877    2016-02-29 15:41:40    2016-02-29 15:41:40
14749    12642    503    2015-04-14 21:16:26    2015-04-14 21:16:26
14750    19374    837    2013-12-28 07:35:50    2013-12-28 07:35:50
14751    17546    563    2014-02-27 01:57:46    2014-02-27 01:57:46
14752    12745    633    2015-12-23 08:09:40    2015-12-23 08:09:40
14753    10413    488    2014-08-16 15:40:02    2014-08-16 15:40:02
14754    10681    586    2015-07-18 04:38:33    2015-07-18 04:38:33
14755    12711    843    2016-03-13 02:55:42    2016-03-13 02:55:42
14756    14797    529    2015-05-01 12:53:45    2015-05-01 12:53:45
14757    14981    518    2013-11-27 14:33:02    2013-11-27 14:33:02
14758    10348    654    2014-03-06 03:36:55    2014-03-06 03:36:55
14759    12673    624    2013-09-29 18:05:32    2013-09-29 18:05:32
14760    19617    650    2015-11-27 15:51:15    2015-11-27 15:51:15
14761    15829    849    2015-12-06 03:34:34    2015-12-06 03:34:34
14762    17187    705    2014-04-29 10:16:08    2014-04-29 10:16:08
14763    11156    633    2014-12-21 00:19:24    2014-12-21 00:19:24
14764    15782    781    2014-02-07 17:50:17    2014-02-07 17:50:17
14765    19428    827    2014-11-28 09:13:44    2014-11-28 09:13:44
14766    13781    521    2013-11-15 14:19:59    2013-11-15 14:19:59
14767    10128    628    2015-04-23 15:56:32    2015-04-23 15:56:32
14768    16389    469    2013-09-17 18:53:29    2013-09-17 18:53:29
14769    18852    842    2014-01-23 13:23:58    2014-01-23 13:23:58
14770    18697    685    2016-04-13 20:28:12    2016-04-13 20:28:12
14771    19407    508    2015-03-24 17:20:23    2015-03-24 17:20:23
14772    11345    551    2014-06-17 00:57:04    2014-06-17 00:57:04
14773    15947    525    2016-01-29 00:14:14    2016-01-29 00:14:14
14774    17911    812    2014-10-04 12:31:32    2014-10-04 12:31:32
14775    19320    945    2015-08-07 08:16:18    2015-08-07 08:16:18
14776    17141    537    2016-02-10 16:11:32    2016-02-10 16:11:32
14777    18111    479    2014-07-11 06:09:13    2014-07-11 06:09:13
14778    19421    464    2014-03-27 08:20:28    2014-03-27 08:20:28
14779    18981    571    2013-12-03 18:04:15    2013-12-03 18:04:15
14780    11687    627    2013-06-28 01:46:35    2013-06-28 01:46:35
14781    16955    782    2013-09-11 21:31:39    2013-09-11 21:31:39
14782    15061    481    2015-04-25 14:25:26    2015-04-25 14:25:26
14783    11839    510    2015-02-17 10:08:03    2015-02-17 10:08:03
14784    11789    663    2014-10-06 00:05:34    2014-10-06 00:05:34
14785    17677    833    2015-03-19 01:06:25    2015-03-19 01:06:25
14786    10582    522    2014-07-06 06:58:32    2014-07-06 06:58:32
14787    13942    708    2014-08-24 04:06:22    2014-08-24 04:06:22
14788    17889    718    2015-02-10 22:20:59    2015-02-10 22:20:59
14789    17940    898    2015-09-08 20:43:13    2015-09-08 20:43:13
14790    12944    917    2013-10-04 23:11:34    2013-10-04 23:11:34
14791    15202    628    2013-06-10 00:12:46    2013-06-10 00:12:46
14792    14591    926    2015-09-20 21:38:44    2015-09-20 21:38:44
14793    13842    721    2014-11-24 10:40:26    2014-11-24 10:40:26
14794    16266    499    2014-10-05 23:08:37    2014-10-05 23:08:37
14795    18852    621    2014-09-10 14:51:09    2014-09-10 14:51:09
14796    12209    545    2014-02-15 12:17:23    2014-02-15 12:17:23
14797    11006    635    2016-02-01 18:51:34    2016-02-01 18:51:34
14798    16881    628    2015-01-12 02:01:11    2015-01-12 02:01:11
14799    17044    629    2015-01-01 17:10:15    2015-01-01 17:10:15
14800    14236    918    2014-01-19 00:17:50    2014-01-19 00:17:50
14801    11498    522    2014-06-05 21:16:51    2014-06-05 21:16:51
14802    17099    846    2013-10-31 05:09:06    2013-10-31 05:09:06
14803    18911    699    2014-09-26 11:42:31    2014-09-26 11:42:31
14804    13757    826    2015-09-10 18:02:30    2015-09-10 18:02:30
14805    15627    551    2013-08-14 18:00:28    2013-08-14 18:00:28
14806    18577    730    2015-08-02 12:28:27    2015-08-02 12:28:27
14807    10399    658    2015-02-23 10:16:34    2015-02-23 10:16:34
14808    13378    792    2015-08-19 23:40:53    2015-08-19 23:40:53
14809    19611    838    2015-06-05 11:20:49    2015-06-05 11:20:49
14810    10826    682    2014-07-29 02:03:23    2014-07-29 02:03:23
14811    13903    961    2014-08-10 05:06:12    2014-08-10 05:06:12
14812    17277    822    2014-04-16 15:42:39    2014-04-16 15:42:39
14813    13364    668    2015-11-03 18:00:29    2015-11-03 18:00:29
14814    16753    933    2014-12-18 18:35:08    2014-12-18 18:35:08
14815    15498    566    2014-09-23 11:09:51    2014-09-23 11:09:51
14816    14559    752    2013-05-14 05:41:04    2013-05-14 05:41:04
14817    13741    802    2015-01-05 12:45:29    2015-01-05 12:45:29
14818    13194    816    2013-07-10 09:30:26    2013-07-10 09:30:26
14819    10580    687    2014-06-02 08:06:29    2014-06-02 08:06:29
14820    12385    593    2014-04-30 23:02:38    2014-04-30 23:02:38
14821    13858    511    2015-08-10 03:03:12    2015-08-10 03:03:12
14822    13381    847    2014-10-29 14:44:14    2014-10-29 14:44:14
14823    17981    917    2014-10-18 07:47:53    2014-10-18 07:47:53
14824    15760    945    2015-01-18 17:20:25    2015-01-18 17:20:25
14825    13484    522    2013-11-24 14:38:20    2013-11-24 14:38:20
14826    10442    954    2015-07-11 10:54:41    2015-07-11 10:54:41
14827    17510    713    2015-02-18 11:42:53    2015-02-18 11:42:53
14828    12953    873    2015-04-27 12:06:53    2015-04-27 12:06:53
14829    18603    911    2013-05-30 18:42:59    2013-05-30 18:42:59
14830    13737    901    2015-05-04 23:34:05    2015-05-04 23:34:05
14831    13237    633    2015-12-22 07:39:41    2015-12-22 07:39:41
14832    10435    501    2014-10-21 23:33:27    2014-10-21 23:33:27
14833    11754    482    2015-11-15 13:05:56    2015-11-15 13:05:56
14834    19828    528    2014-01-08 11:07:16    2014-01-08 11:07:16
14835    11629    614    2013-11-25 11:34:44    2013-11-25 11:34:44
14836    19654    618    2016-03-12 18:41:59    2016-03-12 18:41:59
14837    19617    599    2014-02-10 04:14:38    2014-02-10 04:14:38
14838    11248    488    2015-09-12 08:55:01    2015-09-12 08:55:01
14839    16553    825    2013-05-29 12:47:28    2013-05-29 12:47:28
14840    13081    587    2014-08-29 07:00:15    2014-08-29 07:00:15
14841    17678    539    2015-11-03 05:25:08    2015-11-03 05:25:08
14842    19428    633    2014-11-18 02:22:56    2014-11-18 02:22:56
14843    13966    762    2013-10-25 23:19:47    2013-10-25 23:19:47
14844    14539    949    2014-06-04 15:10:20    2014-06-04 15:10:20
14845    13072    481    2013-07-25 20:19:31    2013-07-25 20:19:31
14846    11483    549    2015-11-11 23:44:26    2015-11-11 23:44:26
14847    12972    874    2014-02-10 00:25:55    2014-02-10 00:25:55
14848    17866    833    2015-05-02 07:42:54    2015-05-02 07:42:54
14849    16333    771    2013-05-09 19:06:23    2013-05-09 19:06:23
14850    13493    848    2015-07-03 23:19:13    2015-07-03 23:19:13
14851    17497    564    2014-02-15 18:41:35    2014-02-15 18:41:35
14852    17180    553    2014-02-22 23:22:30    2014-02-22 23:22:30
14853    18758    823    2013-12-20 03:50:22    2013-12-20 03:50:22
14854    13499    917    2014-10-06 06:16:43    2014-10-06 06:16:43
14855    15052    509    2014-04-18 07:30:47    2014-04-18 07:30:47
14856    10869    597    2014-06-18 10:43:07    2014-06-18 10:43:07
14857    19392    626    2014-07-21 01:26:03    2014-07-21 01:26:03
14858    17110    611    2015-09-02 05:03:46    2015-09-02 05:03:46
14859    17829    642    2013-08-27 11:46:14    2013-08-27 11:46:14
14860    12154    712    2015-01-06 06:09:04    2015-01-06 06:09:04
14861    12882    862    2014-09-02 09:49:54    2014-09-02 09:49:54
14862    13424    706    2014-02-18 17:11:51    2014-02-18 17:11:51
14863    15058    496    2013-10-01 07:06:36    2013-10-01 07:06:36
14864    10618    785    2014-01-22 18:14:52    2014-01-22 18:14:52
14865    19538    537    2013-12-23 23:57:26    2013-12-23 23:57:26
14866    15383    629    2015-05-07 07:04:54    2015-05-07 07:04:54
14867    18501    694    2015-09-23 21:43:01    2015-09-23 21:43:01
14868    16935    910    2015-01-23 02:12:24    2015-01-23 02:12:24
14869    11229    617    2014-05-21 09:37:38    2014-05-21 09:37:38
14870    14392    545    2014-05-19 07:27:46    2014-05-19 07:27:46
14871    13290    587    2015-01-14 08:04:56    2015-01-14 08:04:56
14872    15080    850    2015-02-08 17:07:04    2015-02-08 17:07:04
14873    12782    582    2013-12-19 12:36:36    2013-12-19 12:36:36
14874    17865    515    2016-02-09 11:31:27    2016-02-09 11:31:27
14875    10213    724    2014-11-19 19:25:27    2014-11-19 19:25:27
14876    17497    520    2013-06-19 14:35:01    2013-06-19 14:35:01
14877    13465    689    2014-08-17 02:44:06    2014-08-17 02:44:06
14878    19148    776    2016-02-05 16:26:53    2016-02-05 16:26:53
14879    10549    799    2015-03-19 12:05:08    2015-03-19 12:05:08
14880    18253    671    2014-06-05 17:36:54    2014-06-05 17:36:54
14881    11141    688    2015-08-20 04:30:39    2015-08-20 04:30:39
14882    11209    726    2013-10-05 08:27:02    2013-10-05 08:27:02
14883    18673    608    2015-05-11 15:33:26    2015-05-11 15:33:26
14884    11497    930    2015-08-16 01:24:32    2015-08-16 01:24:32
14885    11280    574    2013-06-27 17:23:20    2013-06-27 17:23:20
14886    14673    525    2014-01-01 09:05:16    2014-01-01 09:05:16
14887    15849    918    2013-12-20 22:38:09    2013-12-20 22:38:09
14888    15202    852    2013-05-16 01:56:59    2013-05-16 01:56:59
14889    15936    584    2014-03-04 18:41:05    2014-03-04 18:41:05
14890    19386    834    2014-12-12 01:42:17    2014-12-12 01:42:17
14891    13629    677    2016-03-30 12:10:43    2016-03-30 12:10:43
14892    19188    524    2013-11-22 00:36:48    2013-11-22 00:36:48
14893    16976    499    2015-10-20 14:12:12    2015-10-20 14:12:12
14894    16944    600    2016-04-14 13:28:36    2016-04-14 13:28:36
14895    13938    503    2015-07-14 08:34:30    2015-07-14 08:34:30
14896    18625    479    2015-01-15 18:08:17    2015-01-15 18:08:17
14897    12365    851    2015-04-07 23:06:53    2015-04-07 23:06:53
14898    12212    589    2015-11-03 17:00:13    2015-11-03 17:00:13
14899    14340    850    2014-07-26 19:08:10    2014-07-26 19:08:10
14900    19680    627    2013-07-21 11:09:42    2013-07-21 11:09:42
14901    10525    723    2015-04-14 13:59:25    2015-04-14 13:59:25
14902    11564    466    2015-10-14 18:07:17    2015-10-14 18:07:17
14903    11533    937    2016-04-07 01:37:14    2016-04-07 01:37:14
14904    15301    582    2015-12-15 01:48:28    2015-12-15 01:48:28
14905    19838    635    2014-04-20 12:27:55    2014-04-20 12:27:55
14906    13146    920    2014-03-27 14:30:07    2014-03-27 14:30:07
14907    13058    529    2016-01-13 18:52:33    2016-01-13 18:52:33
14908    17066    682    2015-09-20 17:37:38    2015-09-20 17:37:38
14909    16386    630    2015-03-13 20:38:11    2015-03-13 20:38:11
14910    14414    521    2016-04-17 04:36:20    2016-04-17 04:36:20
14911    14514    952    2014-12-12 09:14:18    2014-12-12 09:14:18
14912    17159    641    2013-11-29 03:05:24    2013-11-29 03:05:24
14913    12269    861    2015-12-02 20:47:14    2015-12-02 20:47:14
14914    13587    625    2015-05-15 12:31:38    2015-05-15 12:31:38
14915    19015    741    2015-04-02 00:26:46    2015-04-02 00:26:46
14916    14684    896    2013-07-21 05:07:37    2013-07-21 05:07:37
14917    17249    911    2014-04-19 08:33:10    2014-04-19 08:33:10
14918    12329    481    2015-03-29 18:56:46    2015-03-29 18:56:46
14919    10491    871    2014-02-03 03:00:15    2014-02-03 03:00:15
14920    17321    727    2015-09-04 16:45:58    2015-09-04 16:45:58
14921    16418    625    2016-01-26 07:39:23    2016-01-26 07:39:23
14922    18089    672    2015-04-30 12:02:18    2015-04-30 12:02:18
14923    10490    668    2013-06-24 21:28:17    2013-06-24 21:28:17
14924    10759    765    2015-04-06 23:33:34    2015-04-06 23:33:34
14925    10163    740    2014-02-07 09:07:49    2014-02-07 09:07:49
14926    17956    645    2014-05-30 09:16:10    2014-05-30 09:16:10
14927    16412    540    2013-06-15 15:16:41    2013-06-15 15:16:41
14928    16348    552    2015-03-09 03:00:35    2015-03-09 03:00:35
14929    12866    726    2013-04-25 05:22:42    2013-04-25 05:22:42
14930    14618    476    2016-03-17 09:40:15    2016-03-17 09:40:15
14931    12687    839    2015-02-22 20:04:31    2015-02-22 20:04:31
14932    11020    647    2014-11-06 11:55:50    2014-11-06 11:55:50
14933    17505    698    2014-11-20 23:44:18    2014-11-20 23:44:18
14934    16401    511    2013-12-12 10:10:39    2013-12-12 10:10:39
14935    17150    477    2013-07-28 15:58:58    2013-07-28 15:58:58
14936    15378    468    2014-01-09 07:06:09    2014-01-09 07:06:09
14937    13988    550    2015-10-01 22:34:31    2015-10-01 22:34:31
14938    16892    487    2013-08-09 07:11:09    2013-08-09 07:11:09
14939    16245    759    2015-11-05 18:00:19    2015-11-05 18:00:19
14940    14041    825    2015-07-24 14:52:17    2015-07-24 14:52:17
14941    11377    578    2014-08-20 03:04:53    2014-08-20 03:04:53
14942    19714    742    2016-01-12 22:08:40    2016-01-12 22:08:40
14943    13948    529    2014-07-17 04:56:12    2014-07-17 04:56:12
14944    17357    617    2014-04-25 08:18:50    2014-04-25 08:18:50
14945    15049    677    2015-11-08 14:25:02    2015-11-08 14:25:02
14946    12526    907    2016-03-16 20:55:15    2016-03-16 20:55:15
14947    10669    904    2014-04-13 22:10:43    2014-04-13 22:10:43
14948    14481    865    2015-05-26 06:00:58    2015-05-26 06:00:58
14949    13883    534    2015-06-22 09:15:08    2015-06-22 09:15:08
14950    11245    510    2015-04-29 17:55:25    2015-04-29 17:55:25
14951    18145    630    2015-09-18 21:10:48    2015-09-18 21:10:48
14952    14273    553    2014-07-27 15:27:36    2014-07-27 15:27:36
14953    10088    653    2014-08-22 13:43:35    2014-08-22 13:43:35
14954    17602    936    2014-09-17 08:02:22    2014-09-17 08:02:22
14955    16784    867    2014-03-15 07:14:58    2014-03-15 07:14:58
14956    18377    468    2015-10-18 20:31:12    2015-10-18 20:31:12
14957    14187    943    2014-07-29 09:57:04    2014-07-29 09:57:04
14958    11492    904    2013-10-08 19:35:27    2013-10-08 19:35:27
14959    18195    706    2014-10-10 16:58:54    2014-10-10 16:58:54
14960    14414    760    2014-08-25 09:26:08    2014-08-25 09:26:08
14961    10557    506    2014-03-29 03:53:22    2014-03-29 03:53:22
14962    17035    554    2013-12-06 11:12:18    2013-12-06 11:12:18
14963    18207    596    2016-03-04 00:18:11    2016-03-04 00:18:11
14964    11293    598    2016-02-28 17:15:56    2016-02-28 17:15:56
14965    11814    640    2013-10-21 13:06:16    2013-10-21 13:06:16
14966    12104    875    2015-02-19 12:39:26    2015-02-19 12:39:26
14967    10085    683    2016-02-09 19:54:36    2016-02-09 19:54:36
14968    11588    603    2015-04-14 19:36:42    2015-04-14 19:36:42
14969    13957    910    2015-07-26 13:04:28    2015-07-26 13:04:28
14970    14626    676    2013-12-23 10:59:12    2013-12-23 10:59:12
14971    19180    895    2015-02-21 17:29:27    2015-02-21 17:29:27
14972    12748    642    2014-01-19 14:29:51    2014-01-19 14:29:51
14973    11825    620    2013-09-07 22:36:24    2013-09-07 22:36:24
14974    14059    822    2014-09-08 20:26:51    2014-09-08 20:26:51
14975    12818    947    2015-08-08 06:05:11    2015-08-08 06:05:11
14976    11533    758    2014-05-22 10:05:33    2014-05-22 10:05:33
14977    13437    720    2016-01-02 16:49:12    2016-01-02 16:49:12
14978    10877    584    2016-01-10 22:42:48    2016-01-10 22:42:48
14979    10817    802    2015-06-19 21:46:13    2015-06-19 21:46:13
14980    10659    762    2014-11-03 05:47:55    2014-11-03 05:47:55
14981    18470    488    2015-05-24 23:41:57    2015-05-24 23:41:57
14982    13695    640    2016-03-21 14:36:32    2016-03-21 14:36:32
14983    11793    700    2014-01-11 22:13:33    2014-01-11 22:13:33
14984    10186    698    2014-07-15 00:06:40    2014-07-15 00:06:40
14985    12824    714    2014-03-17 08:10:16    2014-03-17 08:10:16
14986    15959    485    2014-07-31 20:20:45    2014-07-31 20:20:45
14987    10382    949    2013-12-02 22:13:27    2013-12-02 22:13:27
14988    12842    888    2014-02-12 22:07:17    2014-02-12 22:07:17
14989    19575    650    2014-05-27 18:48:20    2014-05-27 18:48:20
14990    16789    471    2014-12-30 00:39:29    2014-12-30 00:39:29
14991    14793    881    2013-10-26 02:56:11    2013-10-26 02:56:11
14992    10804    823    2016-01-23 09:35:14    2016-01-23 09:35:14
14993    19305    571    2013-10-18 04:02:18    2013-10-18 04:02:18
14994    13502    918    2015-01-21 13:14:55    2015-01-21 13:14:55
14995    13748    583    2015-01-29 08:07:19    2015-01-29 08:07:19
14996    10194    694    2013-05-18 09:12:11    2013-05-18 09:12:11
14997    18134    835    2016-01-19 08:38:28    2016-01-19 08:38:28
14998    19965    936    2014-01-01 15:30:54    2014-01-01 15:30:54
14999    11207    630    2015-03-26 00:31:35    2015-03-26 00:31:35
15000    12370    466    2015-12-22 13:43:26    2015-12-22 13:43:26
15001    11821    636    2014-07-06 18:45:06    2014-07-06 18:45:06
15002    10742    786    2016-04-03 11:35:49    2016-04-03 11:35:49
15003    15509    627    2014-12-29 09:37:00    2014-12-29 09:37:00
15004    13449    730    2015-11-18 19:50:57    2015-11-18 19:50:57
15005    18748    558    2015-05-31 12:51:50    2015-05-31 12:51:50
15006    13664    658    2015-09-12 07:21:28    2015-09-12 07:21:28
15007    12704    695    2015-12-09 00:55:07    2015-12-09 00:55:07
15008    10419    769    2014-05-19 12:52:15    2014-05-19 12:52:15
15009    13075    675    2014-08-31 20:58:48    2014-08-31 20:58:48
15010    17280    866    2014-02-16 14:09:14    2014-02-16 14:09:14
15011    13242    491    2015-04-02 10:34:52    2015-04-02 10:34:52
15012    17783    602    2013-07-18 16:25:39    2013-07-18 16:25:39
15013    12695    694    2015-06-26 04:43:43    2015-06-26 04:43:43
15014    14207    559    2013-04-30 01:10:06    2013-04-30 01:10:06
15015    15604    536    2014-03-21 09:12:20    2014-03-21 09:12:20
15016    17340    949    2014-05-01 00:54:07    2014-05-01 00:54:07
15017    18706    567    2014-01-15 08:04:02    2014-01-15 08:04:02
15018    13744    752    2016-03-21 05:26:41    2016-03-21 05:26:41
15019    17062    880    2016-02-12 11:17:09    2016-02-12 11:17:09
15020    16374    638    2014-06-21 05:29:47    2014-06-21 05:29:47
15021    12837    714    2014-12-28 13:28:50    2014-12-28 13:28:50
15022    17539    533    2014-01-22 01:45:13    2014-01-22 01:45:13
15023    16392    661    2013-10-26 09:00:41    2013-10-26 09:00:41
15024    16040    881    2014-03-15 22:42:49    2014-03-15 22:42:49
15025    16017    645    2016-04-03 14:10:12    2016-04-03 14:10:12
15026    14690    637    2013-09-01 22:50:57    2013-09-01 22:50:57
15027    11918    495    2013-11-26 08:59:34    2013-11-26 08:59:34
15028    19260    836    2014-10-21 00:12:07    2014-10-21 00:12:07
15029    17709    797    2014-04-05 20:20:42    2014-04-05 20:20:42
15030    12727    783    2015-04-11 09:18:41    2015-04-11 09:18:41
15031    15293    814    2016-03-11 16:13:07    2016-03-11 16:13:07
15032    15797    516    2015-05-10 23:14:28    2015-05-10 23:14:28
15033    19852    542    2015-02-13 17:36:31    2015-02-13 17:36:31
15034    19664    626    2014-04-07 17:23:14    2014-04-07 17:23:14
15035    14290    893    2014-03-26 10:54:39    2014-03-26 10:54:39
15036    17244    499    2014-02-24 13:37:16    2014-02-24 13:37:16
15037    18536    510    2014-03-06 12:10:22    2014-03-06 12:10:22
15038    13240    809    2016-04-11 05:37:46    2016-04-11 05:37:46
15039    11411    760    2014-08-10 08:12:52    2014-08-10 08:12:52
15040    17168    811    2015-11-20 14:43:34    2015-11-20 14:43:34
15041    15605    856    2013-05-11 13:45:47    2013-05-11 13:45:47
15042    14126    951    2015-08-23 12:47:08    2015-08-23 12:47:08
15043    12795    854    2014-06-02 20:27:12    2014-06-02 20:27:12
15044    16140    781    2015-10-06 20:07:03    2015-10-06 20:07:03
15045    18715    939    2014-08-30 22:09:13    2014-08-30 22:09:13
15046    19571    618    2013-08-21 07:54:44    2013-08-21 07:54:44
15047    17095    660    2016-02-04 19:45:25    2016-02-04 19:45:25
15048    19118    857    2014-11-23 12:12:22    2014-11-23 12:12:22
15049    14826    762    2014-01-29 18:50:52    2014-01-29 18:50:52
15050    13962    615    2014-04-06 16:13:25    2014-04-06 16:13:25
15051    15002    708    2014-08-18 09:36:37    2014-08-18 09:36:37
15052    14230    932    2013-06-26 18:39:50    2013-06-26 18:39:50
15053    19968    745    2014-05-30 18:01:56    2014-05-30 18:01:56
15054    11604    778    2013-09-19 16:06:53    2013-09-19 16:06:53
15055    10929    949    2014-02-23 17:17:33    2014-02-23 17:17:33
15056    15626    633    2016-04-18 08:45:27    2016-04-18 08:45:27
15057    13690    943    2015-09-18 22:04:02    2015-09-18 22:04:02
15058    13898    715    2014-04-14 14:55:20    2014-04-14 14:55:20
15059    17237    720    2014-09-04 09:41:40    2014-09-04 09:41:40
15060    15367    884    2013-05-24 11:35:02    2013-05-24 11:35:02
15061    10576    607    2016-02-28 04:40:30    2016-02-28 04:40:30
15062    11241    693    2015-10-23 06:47:29    2015-10-23 06:47:29
15063    10443    470    2014-06-06 06:08:21    2014-06-06 06:08:21
15064    13836    544    2015-05-25 16:06:22    2015-05-25 16:06:22
15065    15385    779    2014-01-20 13:05:31    2014-01-20 13:05:31
15066    13479    909    2014-12-23 09:24:05    2014-12-23 09:24:05
15067    17597    569    2013-10-05 08:51:13    2013-10-05 08:51:13
15068    13903    829    2013-05-19 02:50:34    2013-05-19 02:50:34
15069    13958    782    2014-03-01 03:20:44    2014-03-01 03:20:44
15070    16141    624    2015-01-13 11:17:38    2015-01-13 11:17:38
15071    15169    595    2013-09-08 22:30:55    2013-09-08 22:30:55
15072    14571    865    2014-11-13 19:38:06    2014-11-13 19:38:06
15073    17738    588    2014-10-28 15:59:13    2014-10-28 15:59:13
15074    18871    706    2014-08-12 03:19:17    2014-08-12 03:19:17
15075    16941    573    2014-07-14 18:36:00    2014-07-14 18:36:00
15076    13347    836    2015-01-04 10:13:10    2015-01-04 10:13:10
15077    18220    669    2013-09-30 21:01:06    2013-09-30 21:01:06
15078    16489    744    2014-10-05 03:17:56    2014-10-05 03:17:56
15079    11452    823    2014-03-11 11:41:11    2014-03-11 11:41:11
15080    19894    881    2015-11-25 14:16:20    2015-11-25 14:16:20
15081    15349    765    2015-03-20 07:47:47    2015-03-20 07:47:47
15082    14643    681    2013-09-27 23:17:41    2013-09-27 23:17:41
15083    12300    784    2015-07-09 02:26:38    2015-07-09 02:26:38
15084    11119    945    2016-02-05 01:29:13    2016-02-05 01:29:13
15085    17355    951    2014-10-10 00:12:10    2014-10-10 00:12:10
15086    14809    908    2013-12-16 21:24:59    2013-12-16 21:24:59
15087    19944    828    2013-12-15 15:06:23    2013-12-15 15:06:23
15088    16178    903    2014-03-13 03:58:55    2014-03-13 03:58:55
15089    12820    766    2013-04-23 18:53:51    2013-04-23 18:53:51
15090    14133    786    2015-06-23 00:33:44    2015-06-23 00:33:44
15091    10832    682    2015-04-03 04:59:06    2015-04-03 04:59:06
15092    14926    499    2016-03-12 03:58:18    2016-03-12 03:58:18
15093    17991    591    2013-06-17 05:06:06    2013-06-17 05:06:06
15094    18300    674    2015-11-08 17:16:36    2015-11-08 17:16:36
15095    10828    919    2015-07-13 18:45:52    2015-07-13 18:45:52
15096    17760    814    2015-08-29 15:56:43    2015-08-29 15:56:43
15097    13055    517    2014-09-14 23:03:38    2014-09-14 23:03:38
15098    19807    568    2013-10-19 14:33:20    2013-10-19 14:33:20
15099    12879    767    2013-10-02 07:17:45    2013-10-02 07:17:45
15100    15290    525    2013-10-12 12:56:21    2013-10-12 12:56:21
15101    17922    716    2013-08-25 15:06:21    2013-08-25 15:06:21
15102    12454    898    2014-10-17 13:07:58    2014-10-17 13:07:58
15103    10558    921    2014-05-01 19:08:01    2014-05-01 19:08:01
15104    12632    847    2015-10-26 13:10:25    2015-10-26 13:10:25
15105    19941    945    2014-02-14 20:54:01    2014-02-14 20:54:01
15106    18125    579    2014-10-22 02:32:58    2014-10-22 02:32:58
15107    15150    613    2013-06-14 01:28:19    2013-06-14 01:28:19
15108    18232    872    2015-07-25 05:15:43    2015-07-25 05:15:43
15109    11765    768    2015-01-14 14:18:57    2015-01-14 14:18:57
15110    18300    680    2016-03-02 06:58:59    2016-03-02 06:58:59
15111    11349    703    2015-10-15 21:22:59    2015-10-15 21:22:59
15112    16410    482    2014-10-21 23:00:43    2014-10-21 23:00:43
15113    19701    839    2013-05-17 12:14:41    2013-05-17 12:14:41
15114    10330    477    2014-09-28 01:04:55    2014-09-28 01:04:55
15115    17091    606    2015-12-29 13:20:07    2015-12-29 13:20:07
15116    19268    914    2014-06-18 21:31:42    2014-06-18 21:31:42
15117    12582    823    2015-08-02 09:55:57    2015-08-02 09:55:57
15118    15856    741    2014-08-27 11:10:02    2014-08-27 11:10:02
15119    18437    546    2014-05-08 10:01:30    2014-05-08 10:01:30
15120    15961    923    2014-06-30 02:31:57    2014-06-30 02:31:57
15121    13605    918    2014-04-09 09:23:04    2014-04-09 09:23:04
15122    19153    909    2014-02-27 11:52:49    2014-02-27 11:52:49
15123    17066    954    2015-08-10 21:55:38    2015-08-10 21:55:38
15124    10383    497    2015-12-02 00:15:33    2015-12-02 00:15:33
15125    18518    497    2015-11-05 18:34:09    2015-11-05 18:34:09
15126    17978    520    2013-08-22 16:28:51    2013-08-22 16:28:51
15127    12918    886    2014-02-01 13:58:43    2014-02-01 13:58:43
15128    10769    493    2013-11-14 10:35:27    2013-11-14 10:35:27
15129    19956    591    2015-08-24 15:30:57    2015-08-24 15:30:57
15130    16409    808    2016-02-10 14:54:15    2016-02-10 14:54:15
15131    17058    931    2014-11-15 14:39:03    2014-11-15 14:39:03
15132    14054    541    2014-02-12 19:04:50    2014-02-12 19:04:50
15133    15156    830    2014-11-02 13:06:34    2014-11-02 13:06:34
15134    15282    830    2016-04-01 01:39:03    2016-04-01 01:39:03
15135    13719    710    2014-12-10 06:08:45    2014-12-10 06:08:45
15136    14099    609    2013-06-10 21:42:54    2013-06-10 21:42:54
15137    12793    579    2014-05-16 11:42:55    2014-05-16 11:42:55
15138    10632    575    2015-10-05 21:45:22    2015-10-05 21:45:22
15139    13590    513    2015-06-01 12:12:05    2015-06-01 12:12:05
15140    10089    776    2015-05-17 01:11:41    2015-05-17 01:11:41
15141    16479    846    2013-05-14 15:25:42    2013-05-14 15:25:42
15142    16230    584    2015-10-06 17:13:17    2015-10-06 17:13:17
15143    16192    806    2015-03-19 19:09:04    2015-03-19 19:09:04
15144    18241    717    2016-04-17 10:04:34    2016-04-17 10:04:34
15145    19195    936    2014-10-09 06:20:03    2014-10-09 06:20:03
15146    15220    732    2015-03-05 16:29:55    2015-03-05 16:29:55
15147    16950    905    2015-11-27 21:04:15    2015-11-27 21:04:15
15148    15517    864    2014-07-19 21:46:10    2014-07-19 21:46:10
15149    17490    746    2015-06-13 02:53:50    2015-06-13 02:53:50
15150    12845    637    2013-09-16 08:00:23    2013-09-16 08:00:23
15151    18114    899    2013-11-03 08:47:47    2013-11-03 08:47:47
15152    16052    951    2016-01-02 02:41:16    2016-01-02 02:41:16
15153    19076    898    2016-02-03 00:11:40    2016-02-03 00:11:40
15154    12419    938    2015-05-09 12:29:18    2015-05-09 12:29:18
15155    19600    482    2015-04-17 09:06:14    2015-04-17 09:06:14
15156    18964    765    2015-06-25 11:48:51    2015-06-25 11:48:51
15157    16605    621    2015-07-06 02:36:17    2015-07-06 02:36:17
15158    10897    536    2015-06-06 01:34:32    2015-06-06 01:34:32
15159    13154    742    2015-06-09 04:52:00    2015-06-09 04:52:00
15160    13691    778    2015-11-23 13:29:15    2015-11-23 13:29:15
15161    15585    476    2016-03-13 02:58:20    2016-03-13 02:58:20
15162    14173    607    2015-12-08 15:26:23    2015-12-08 15:26:23
15163    12084    490    2013-11-10 12:44:50    2013-11-10 12:44:50
15164    16135    845    2014-09-24 12:54:51    2014-09-24 12:54:51
15165    10122    914    2013-10-07 00:49:23    2013-10-07 00:49:23
15166    18706    802    2015-03-08 04:02:30    2015-03-08 04:02:30
15167    10981    781    2014-08-27 17:38:09    2014-08-27 17:38:09
15168    17587    785    2014-12-12 21:47:12    2014-12-12 21:47:12
15169    10639    492    2014-04-12 16:47:45    2014-04-12 16:47:45
15170    16644    557    2016-03-29 23:12:55    2016-03-29 23:12:55
15171    14031    689    2014-07-18 18:54:45    2014-07-18 18:54:45
15172    19715    628    2015-12-14 14:54:27    2015-12-14 14:54:27
15173    14704    534    2015-05-12 04:21:40    2015-05-12 04:21:40
15174    14784    754    2014-11-01 03:33:38    2014-11-01 03:33:38
15175    18849    716    2014-01-17 17:36:01    2014-01-17 17:36:01
15176    13253    595    2015-01-31 15:44:27    2015-01-31 15:44:27
15177    11827    654    2014-04-25 19:09:41    2014-04-25 19:09:41
15178    12104    577    2014-11-02 16:10:49    2014-11-02 16:10:49
15179    17024    506    2015-05-08 17:46:07    2015-05-08 17:46:07
15180    16102    850    2016-01-09 04:16:11    2016-01-09 04:16:11
15181    17344    729    2014-01-12 05:35:23    2014-01-12 05:35:23
15182    11441    710    2016-02-10 11:30:02    2016-02-10 11:30:02
15183    11992    491    2015-09-24 12:08:17    2015-09-24 12:08:17
15184    12982    563    2016-03-16 20:44:01    2016-03-16 20:44:01
15185    10608    833    2013-05-10 18:18:12    2013-05-10 18:18:12
15186    19560    638    2014-03-15 18:03:51    2014-03-15 18:03:51
15187    10293    838    2013-09-16 15:32:13    2013-09-16 15:32:13
15188    14368    696    2015-04-01 21:50:35    2015-04-01 21:50:35
15189    13651    822    2014-05-26 08:24:18    2014-05-26 08:24:18
15190    15451    495    2015-07-14 08:59:33    2015-07-14 08:59:33
15191    11714    646    2016-03-07 05:14:16    2016-03-07 05:14:16
15192    12733    608    2014-06-30 18:43:24    2014-06-30 18:43:24
15193    17900    914    2015-01-16 03:32:51    2015-01-16 03:32:51
15194    12827    709    2014-04-23 20:55:34    2014-04-23 20:55:34
15195    18435    598    2013-06-25 05:01:33    2013-06-25 05:01:33
15196    16310    573    2013-08-21 02:28:32    2013-08-21 02:28:32
15197    11493    527    2015-11-12 01:37:44    2015-11-12 01:37:44
15198    13074    598    2014-01-03 02:04:11    2014-01-03 02:04:11
15199    11281    690    2014-03-24 15:46:23    2014-03-24 15:46:23
15200    11725    593    2013-12-14 14:09:03    2013-12-14 14:09:03
15201    12630    627    2015-05-26 21:29:47    2015-05-26 21:29:47
15202    15900    623    2015-04-30 14:03:06    2015-04-30 14:03:06
15203    15203    827    2015-12-01 03:10:20    2015-12-01 03:10:20
15204    16627    736    2013-04-24 06:11:31    2013-04-24 06:11:31
15205    15979    509    2016-01-21 19:03:12    2016-01-21 19:03:12
15206    14925    583    2013-07-31 14:23:41    2013-07-31 14:23:41
15207    12380    861    2014-07-27 13:59:13    2014-07-27 13:59:13
15208    12305    596    2015-08-08 03:54:10    2015-08-08 03:54:10
15209    13027    640    2015-02-23 07:14:18    2015-02-23 07:14:18
15210    17233    684    2014-05-27 13:48:40    2014-05-27 13:48:40
15211    19713    840    2013-06-04 04:21:43    2013-06-04 04:21:43
15212    15916    864    2013-04-28 07:54:47    2013-04-28 07:54:47
15213    19661    716    2014-11-28 22:38:57    2014-11-28 22:38:57
15214    15468    899    2015-07-19 12:01:56    2015-07-19 12:01:56
15215    17625    734    2015-04-24 04:39:53    2015-04-24 04:39:53
15216    11162    641    2015-05-12 10:33:02    2015-05-12 10:33:02
15217    18294    482    2014-08-11 10:09:26    2014-08-11 10:09:26
15218    10933    906    2015-06-12 07:46:37    2015-06-12 07:46:37
15219    17383    660    2015-05-27 01:50:51    2015-05-27 01:50:51
15220    18180    517    2013-05-13 04:42:23    2013-05-13 04:42:23
15221    18913    926    2013-08-16 02:06:39    2013-08-16 02:06:39
15222    18193    883    2015-04-03 07:29:09    2015-04-03 07:29:09
15223    15371    576    2013-06-29 23:13:40    2013-06-29 23:13:40
15224    17465    552    2014-06-21 03:29:06    2014-06-21 03:29:06
15225    10748    703    2015-03-20 10:38:54    2015-03-20 10:38:54
15226    10844    848    2013-08-22 03:13:46    2013-08-22 03:13:46
15227    12987    751    2013-10-05 07:21:16    2013-10-05 07:21:16
15228    17120    628    2014-04-22 21:56:27    2014-04-22 21:56:27
15229    17007    583    2013-12-20 16:14:52    2013-12-20 16:14:52
15230    16202    824    2013-11-02 01:40:22    2013-11-02 01:40:22
15231    15297    911    2015-09-25 14:12:38    2015-09-25 14:12:38
15232    15952    740    2014-06-02 04:11:35    2014-06-02 04:11:35
15233    10926    529    2014-07-26 06:51:50    2014-07-26 06:51:50
15234    18298    502    2014-07-08 02:54:13    2014-07-08 02:54:13
15235    14408    571    2014-09-10 08:19:47    2014-09-10 08:19:47
15236    19866    948    2015-05-17 01:07:01    2015-05-17 01:07:01
15237    18097    516    2015-10-28 01:25:14    2015-10-28 01:25:14
15238    14280    634    2013-04-25 00:37:49    2013-04-25 00:37:49
15239    16003    872    2014-05-07 18:36:07    2014-05-07 18:36:07
15240    18647    797    2014-12-06 09:04:11    2014-12-06 09:04:11
15241    14781    832    2014-06-03 03:28:39    2014-06-03 03:28:39
15242    18615    533    2015-01-03 12:53:52    2015-01-03 12:53:52
15243    18530    942    2014-01-27 17:28:42    2014-01-27 17:28:42
15244    12264    925    2015-10-21 01:13:51    2015-10-21 01:13:51
15245    18889    872    2014-08-18 04:17:50    2014-08-18 04:17:50
15246    18942    714    2014-03-05 15:03:12    2014-03-05 15:03:12
15247    17020    523    2014-11-24 08:41:15    2014-11-24 08:41:15
15248    10724    507    2014-02-10 05:05:25    2014-02-10 05:05:25
15249    16971    650    2014-07-10 11:48:13    2014-07-10 11:48:13
15250    16229    507    2014-09-09 15:08:34    2014-09-09 15:08:34
15251    10356    640    2014-02-13 17:41:01    2014-02-13 17:41:01
15252    15111    849    2014-09-15 08:18:42    2014-09-15 08:18:42
15253    12576    530    2014-11-21 06:38:38    2014-11-21 06:38:38
15254    15135    718    2015-05-19 11:25:57    2015-05-19 11:25:57
15255    15095    932    2014-07-13 21:26:17    2014-07-13 21:26:17
15256    14368    752    2014-12-08 12:15:55    2014-12-08 12:15:55
15257    15263    501    2014-01-12 03:52:24    2014-01-12 03:52:24
15258    11387    631    2013-08-27 08:37:51    2013-08-27 08:37:51
15259    18241    729    2014-01-08 08:03:20    2014-01-08 08:03:20
15260    18506    522    2015-02-12 16:17:06    2015-02-12 16:17:06
15261    16163    488    2015-11-22 06:24:28    2015-11-22 06:24:28
15262    14290    809    2014-06-23 13:05:48    2014-06-23 13:05:48
15263    13528    928    2015-05-06 22:40:26    2015-05-06 22:40:26
15264    11445    677    2015-09-14 05:07:04    2015-09-14 05:07:04
15265    10248    772    2013-04-27 10:30:14    2013-04-27 10:30:14
15266    19524    538    2015-02-01 14:29:25    2015-02-01 14:29:25
15267    12032    900    2016-02-17 16:46:50    2016-02-17 16:46:50
15268    15442    637    2016-04-17 11:19:05    2016-04-17 11:19:05
15269    15651    888    2013-12-13 13:23:59    2013-12-13 13:23:59
15270    11443    780    2013-06-29 15:17:57    2013-06-29 15:17:57
15271    19573    821    2014-08-23 08:32:54    2014-08-23 08:32:54
15272    13895    753    2014-03-31 12:51:05    2014-03-31 12:51:05
15273    17287    725    2013-06-23 09:12:11    2013-06-23 09:12:11
15274    11848    677    2013-12-07 15:15:24    2013-12-07 15:15:24
15275    13889    485    2015-01-18 05:24:33    2015-01-18 05:24:33
15276    13034    635    2013-05-24 18:45:24    2013-05-24 18:45:24
15277    19909    742    2015-01-26 14:24:10    2015-01-26 14:24:10
15278    10110    920    2013-07-28 11:02:45    2013-07-28 11:02:45
15279    12179    637    2013-06-05 03:10:44    2013-06-05 03:10:44
15280    11273    538    2016-03-13 12:22:05    2016-03-13 12:22:05
15281    16201    553    2014-06-15 05:32:01    2014-06-15 05:32:01
15282    17734    482    2014-12-11 01:39:38    2014-12-11 01:39:38
15283    10966    467    2013-07-22 02:26:40    2013-07-22 02:26:40
15284    18638    634    2015-03-10 18:57:01    2015-03-10 18:57:01
15285    15801    529    2013-10-21 15:00:27    2013-10-21 15:00:27
15286    14725    700    2015-11-25 20:24:57    2015-11-25 20:24:57
15287    13455    759    2015-10-19 20:05:47    2015-10-19 20:05:47
15288    16665    611    2015-08-09 06:30:15    2015-08-09 06:30:15
15289    16333    926    2015-05-19 05:01:23    2015-05-19 05:01:23
15290    15739    916    2014-07-08 20:01:17    2014-07-08 20:01:17
15291    19494    639    2015-09-14 17:23:00    2015-09-14 17:23:00
15292    14631    602    2014-06-23 05:13:20    2014-06-23 05:13:20
15293    16321    475    2015-06-19 10:55:51    2015-06-19 10:55:51
15294    10861    512    2015-03-03 05:08:01    2015-03-03 05:08:01
15295    18394    506    2016-01-02 02:24:19    2016-01-02 02:24:19
15296    10916    869    2014-05-12 23:29:05    2014-05-12 23:29:05
15297    11586    721    2016-03-30 00:45:55    2016-03-30 00:45:55
15298    10852    830    2014-07-12 04:39:56    2014-07-12 04:39:56
15299    16139    920    2015-12-03 11:10:06    2015-12-03 11:10:06
15300    18685    579    2015-08-02 02:34:28    2015-08-02 02:34:28
15301    17861    630    2016-01-27 21:29:52    2016-01-27 21:29:52
15302    10907    960    2016-04-12 09:32:45    2016-04-12 09:32:45
15303    12434    814    2014-12-15 23:30:10    2014-12-15 23:30:10
15304    10915    498    2013-08-10 22:26:24    2013-08-10 22:26:24
15305    11272    819    2014-08-27 17:01:53    2014-08-27 17:01:53
15306    12839    812    2013-09-13 20:16:31    2013-09-13 20:16:31
15307    16004    542    2014-12-11 17:34:27    2014-12-11 17:34:27
15308    15771    694    2015-07-24 01:15:05    2015-07-24 01:15:05
15309    13083    926    2015-12-13 01:40:20    2015-12-13 01:40:20
15310    13528    680    2015-10-10 09:07:41    2015-10-10 09:07:41
15311    19538    879    2013-09-13 03:58:30    2013-09-13 03:58:30
15312    10365    807    2015-12-14 15:14:23    2015-12-14 15:14:23
15313    15528    592    2014-04-05 21:49:47    2014-04-05 21:49:47
15314    14093    471    2015-11-12 14:33:10    2015-11-12 14:33:10
15315    12759    642    2013-08-11 07:23:12    2013-08-11 07:23:12
15316    18985    626    2015-11-21 02:44:59    2015-11-21 02:44:59
15317    17662    666    2014-07-12 06:25:40    2014-07-12 06:25:40
15318    19970    529    2014-01-05 02:26:58    2014-01-05 02:26:58
15319    13843    952    2015-04-06 10:43:24    2015-04-06 10:43:24
15320    17845    620    2013-06-01 18:39:32    2013-06-01 18:39:32
15321    13381    807    2015-08-27 05:13:23    2015-08-27 05:13:23
15322    18480    877    2014-08-12 18:11:26    2014-08-12 18:11:26
15323    15464    675    2014-08-04 06:09:08    2014-08-04 06:09:08
15324    10211    477    2014-09-09 21:36:49    2014-09-09 21:36:49
15325    13722    656    2014-10-17 07:30:29    2014-10-17 07:30:29
15326    10250    813    2013-11-30 15:49:26    2013-11-30 15:49:26
15327    16431    760    2014-02-15 12:16:22    2014-02-15 12:16:22
15328    10913    676    2016-01-23 15:25:58    2016-01-23 15:25:58
15329    14888    490    2015-11-01 07:50:52    2015-11-01 07:50:52
15330    16875    797    2014-11-25 14:59:03    2014-11-25 14:59:03
15331    15770    502    2015-10-20 02:51:47    2015-10-20 02:51:47
15332    12550    872    2013-07-14 09:22:57    2013-07-14 09:22:57
15333    16578    816    2014-03-01 02:49:06    2014-03-01 02:49:06
15334    12366    576    2013-07-28 04:57:21    2013-07-28 04:57:21
15335    12611    482    2015-10-23 23:36:28    2015-10-23 23:36:28
15336    15233    534    2014-05-14 17:10:20    2014-05-14 17:10:20
15337    14651    774    2015-02-11 13:54:01    2015-02-11 13:54:01
15338    12628    590    2013-11-08 08:35:17    2013-11-08 08:35:17
15339    16268    697    2014-07-25 15:10:18    2014-07-25 15:10:18
15340    10833    746    2013-11-24 03:02:33    2013-11-24 03:02:33
15341    11984    475    2013-10-22 16:56:54    2013-10-22 16:56:54
15342    12878    554    2014-09-30 12:58:20    2014-09-30 12:58:20
15343    13654    873    2015-06-20 16:21:22    2015-06-20 16:21:22
15344    12751    830    2015-01-30 16:02:39    2015-01-30 16:02:39
15345    14010    785    2014-07-01 23:01:58    2014-07-01 23:01:58
15346    10599    758    2014-06-30 15:10:31    2014-06-30 15:10:31
15347    19585    662    2016-03-22 13:49:02    2016-03-22 13:49:02
15348    12811    710    2015-07-16 09:53:24    2015-07-16 09:53:24
15349    18633    536    2015-10-27 20:54:38    2015-10-27 20:54:38
15350    14705    891    2015-04-20 16:13:00    2015-04-20 16:13:00
15351    18610    624    2015-06-12 15:38:59    2015-06-12 15:38:59
15352    19594    530    2014-06-22 15:19:01    2014-06-22 15:19:01
15353    10494    658    2014-12-07 09:34:11    2014-12-07 09:34:11
15354    15878    630    2013-09-22 00:10:11    2013-09-22 00:10:11
15355    10354    612    2016-01-26 17:53:33    2016-01-26 17:53:33
15356    19995    950    2015-03-12 08:41:33    2015-03-12 08:41:33
15357    18355    463    2015-08-27 07:53:52    2015-08-27 07:53:52
15358    16414    901    2013-07-24 14:26:38    2013-07-24 14:26:38
15359    16017    685    2015-10-23 11:48:26    2015-10-23 11:48:26
15360    13820    674    2014-02-26 02:41:09    2014-02-26 02:41:09
15361    10701    497    2014-05-24 01:03:46    2014-05-24 01:03:46
15362    18775    655    2015-06-06 01:04:25    2015-06-06 01:04:25
15363    13437    502    2015-12-15 13:25:18    2015-12-15 13:25:18
15364    18307    960    2013-10-31 14:51:13    2013-10-31 14:51:13
15365    16005    814    2014-10-03 05:53:38    2014-10-03 05:53:38
15366    18427    806    2014-07-30 18:47:14    2014-07-30 18:47:14
15367    12361    499    2013-10-05 08:31:20    2013-10-05 08:31:20
15368    10934    513    2014-06-16 15:21:31    2014-06-16 15:21:31
15369    10127    764    2016-04-19 04:09:25    2016-04-19 04:09:25
15370    12564    545    2015-04-09 09:48:16    2015-04-09 09:48:16
15371    12473    614    2014-03-15 05:10:31    2014-03-15 05:10:31
15372    10026    815    2014-03-03 02:41:11    2014-03-03 02:41:11
15373    15999    789    2013-10-02 23:47:08    2013-10-02 23:47:08
15374    12150    742    2014-10-17 05:17:06    2014-10-17 05:17:06
15375    19558    661    2013-05-10 04:30:24    2013-05-10 04:30:24
15376    16653    521    2015-04-19 05:00:42    2015-04-19 05:00:42
15377    17710    507    2015-04-09 02:08:28    2015-04-09 02:08:28
15378    11580    671    2016-04-18 02:11:32    2016-04-18 02:11:32
15379    11380    799    2014-07-29 09:00:42    2014-07-29 09:00:42
15380    15825    939    2013-06-03 04:36:52    2013-06-03 04:36:52
15381    10754    728    2015-08-01 08:25:22    2015-08-01 08:25:22
15382    19845    887    2016-03-25 23:25:29    2016-03-25 23:25:29
15383    17813    889    2013-09-03 19:56:59    2013-09-03 19:56:59
15384    15271    790    2015-09-02 00:45:26    2015-09-02 00:45:26
15385    12294    542    2014-08-31 22:20:15    2014-08-31 22:20:15
15386    13016    936    2015-07-23 12:08:21    2015-07-23 12:08:21
15387    11527    538    2014-04-29 04:00:41    2014-04-29 04:00:41
15388    19253    841    2015-10-12 21:52:02    2015-10-12 21:52:02
15389    12222    669    2013-10-01 18:28:32    2013-10-01 18:28:32
15390    14378    524    2015-12-21 06:11:27    2015-12-21 06:11:27
15391    10585    936    2013-05-02 21:43:43    2013-05-02 21:43:43
15392    16611    700    2013-08-01 15:48:05    2013-08-01 15:48:05
15393    11885    787    2015-11-14 09:42:06    2015-11-14 09:42:06
15394    11782    499    2015-07-18 22:40:41    2015-07-18 22:40:41
15395    18343    643    2015-10-06 13:55:25    2015-10-06 13:55:25
15396    12495    759    2013-06-12 12:52:39    2013-06-12 12:52:39
15397    12036    584    2013-11-20 23:57:43    2013-11-20 23:57:43
15398    14407    809    2016-01-12 00:23:33    2016-01-12 00:23:33
15399    11710    849    2015-05-25 05:20:10    2015-05-25 05:20:10
15400    10664    779    2015-09-20 15:46:31    2015-09-20 15:46:31
15401    17583    479    2013-04-26 14:10:37    2013-04-26 14:10:37
15402    18950    507    2014-07-30 17:06:17    2014-07-30 17:06:17
15403    18731    467    2015-04-13 13:48:27    2015-04-13 13:48:27
15404    10180    788    2013-10-07 04:16:12    2013-10-07 04:16:12
15405    19483    850    2014-05-18 18:12:35    2014-05-18 18:12:35
15406    10268    643    2014-06-01 00:02:16    2014-06-01 00:02:16
15407    18288    743    2015-01-25 21:05:59    2015-01-25 21:05:59
15408    12638    705    2016-02-16 07:14:04    2016-02-16 07:14:04
15409    19385    751    2014-12-01 06:12:05    2014-12-01 06:12:05
15410    12443    682    2014-05-30 14:16:17    2014-05-30 14:16:17
15411    19557    659    2015-01-08 01:34:08    2015-01-08 01:34:08
15412    10684    909    2014-12-06 10:49:06    2014-12-06 10:49:06
15413    11881    920    2014-07-02 05:16:25    2014-07-02 05:16:25
15414    12432    660    2015-06-10 04:43:31    2015-06-10 04:43:31
15415    16971    778    2015-06-08 18:29:25    2015-06-08 18:29:25
15416    16082    960    2015-05-31 04:37:23    2015-05-31 04:37:23
15417    16214    614    2015-04-15 17:28:52    2015-04-15 17:28:52
15418    11899    616    2015-08-25 23:27:39    2015-08-25 23:27:39
15419    11482    510    2015-03-14 12:16:39    2015-03-14 12:16:39
15420    10660    549    2015-05-18 02:52:40    2015-05-18 02:52:40
15421    14923    724    2014-11-09 19:22:58    2014-11-09 19:22:58
15422    12899    610    2014-05-14 06:26:58    2014-05-14 06:26:58
15423    11858    705    2013-05-24 09:31:46    2013-05-24 09:31:46
15424    12668    952    2015-02-13 06:31:15    2015-02-13 06:31:15
15425    11027    650    2014-06-25 01:56:13    2014-06-25 01:56:13
15426    10487    597    2014-03-07 07:04:47    2014-03-07 07:04:47
15427    17134    797    2015-07-27 12:38:45    2015-07-27 12:38:45
15428    12247    941    2013-10-19 14:46:06    2013-10-19 14:46:06
15429    16024    606    2014-06-10 19:17:17    2014-06-10 19:17:17
15430    17459    583    2015-10-23 10:48:52    2015-10-23 10:48:52
15431    16222    486    2013-06-01 15:27:57    2013-06-01 15:27:57
15432    17421    612    2013-07-25 08:26:48    2013-07-25 08:26:48
15433    18620    703    2014-11-12 15:18:19    2014-11-12 15:18:19
15434    11125    881    2015-10-03 21:18:42    2015-10-03 21:18:42
15435    17895    901    2014-05-16 00:28:05    2014-05-16 00:28:05
15436    15712    901    2014-02-07 09:13:01    2014-02-07 09:13:01
15437    18486    602    2014-11-17 14:25:47    2014-11-17 14:25:47
15438    13001    557    2013-10-25 17:29:24    2013-10-25 17:29:24
15439    12638    616    2015-10-16 00:21:30    2015-10-16 00:21:30
15440    19351    542    2013-06-15 16:49:35    2013-06-15 16:49:35
15441    17920    523    2016-01-26 09:52:45    2016-01-26 09:52:45
15442    16391    760    2014-12-04 12:09:24    2014-12-04 12:09:24
15443    13583    873    2015-09-06 20:33:41    2015-09-06 20:33:41
15444    16122    759    2015-05-05 22:25:33    2015-05-05 22:25:33
15445    14588    604    2013-11-01 14:07:17    2013-11-01 14:07:17
15446    19789    798    2014-03-26 18:41:42    2014-03-26 18:41:42
15447    13032    770    2014-12-16 01:27:47    2014-12-16 01:27:47
15448    17889    563    2013-10-22 07:02:19    2013-10-22 07:02:19
15449    17501    800    2014-01-13 14:42:55    2014-01-13 14:42:55
15450    13871    802    2013-08-16 04:51:42    2013-08-16 04:51:42
15451    13854    537    2013-12-20 03:04:01    2013-12-20 03:04:01
15452    14775    686    2015-07-23 00:39:16    2015-07-23 00:39:16
15453    13060    937    2015-07-31 08:14:05    2015-07-31 08:14:05
15454    10688    636    2015-04-02 11:42:10    2015-04-02 11:42:10
15455    18503    946    2013-07-19 08:47:36    2013-07-19 08:47:36
15456    19370    791    2014-06-09 08:45:18    2014-06-09 08:45:18
15457    15099    629    2014-02-08 18:21:27    2014-02-08 18:21:27
15458    13854    832    2014-09-27 07:35:37    2014-09-27 07:35:37
15459    17987    523    2015-01-22 19:05:55    2015-01-22 19:05:55
15460    10053    765    2015-11-14 17:15:20    2015-11-14 17:15:20
15461    16849    727    2013-05-03 05:51:28    2013-05-03 05:51:28
15462    18972    886    2014-09-14 14:44:20    2014-09-14 14:44:20
15463    17148    751    2015-05-06 08:56:00    2015-05-06 08:56:00
15464    10258    511    2015-01-30 17:52:00    2015-01-30 17:52:00
15465    13753    539    2013-08-14 17:18:54    2013-08-14 17:18:54
15466    10451    787    2014-10-24 12:58:28    2014-10-24 12:58:28
15467    16388    896    2014-07-07 22:39:19    2014-07-07 22:39:19
15468    18914    497    2013-09-19 02:25:26    2013-09-19 02:25:26
15469    14440    933    2016-03-25 09:59:04    2016-03-25 09:59:04
15470    11484    636    2013-09-21 18:03:20    2013-09-21 18:03:20
15471    15464    797    2013-07-31 08:31:31    2013-07-31 08:31:31
15472    16074    467    2013-07-30 19:07:20    2013-07-30 19:07:20
15473    11728    748    2015-11-18 10:44:19    2015-11-18 10:44:19
15474    14209    543    2013-07-20 20:24:24    2013-07-20 20:24:24
15475    13899    853    2014-06-25 18:39:07    2014-06-25 18:39:07
15476    10129    738    2016-04-10 17:02:31    2016-04-10 17:02:31
15477    19554    758    2015-09-20 23:06:09    2015-09-20 23:06:09
15478    10295    874    2015-04-05 04:28:12    2015-04-05 04:28:12
15479    14800    657    2014-01-28 11:09:05    2014-01-28 11:09:05
15480    12378    654    2015-10-20 08:34:52    2015-10-20 08:34:52
15481    14421    662    2014-08-05 11:50:54    2014-08-05 11:50:54
15482    13313    865    2013-08-10 22:55:08    2013-08-10 22:55:08
15483    19687    551    2014-08-20 11:14:42    2014-08-20 11:14:42
15484    16992    704    2015-08-12 19:19:03    2015-08-12 19:19:03
15485    18110    469    2015-06-09 15:00:47    2015-06-09 15:00:47
15486    10712    596    2014-06-19 02:31:57    2014-06-19 02:31:57
15487    18986    863    2015-07-23 03:10:59    2015-07-23 03:10:59
15488    10853    463    2015-09-26 09:39:14    2015-09-26 09:39:14
15489    12918    544    2016-01-28 04:25:50    2016-01-28 04:25:50
15490    16987    516    2015-09-09 03:33:05    2015-09-09 03:33:05
15491    14415    861    2013-09-23 08:51:27    2013-09-23 08:51:27
15492    18866    611    2014-07-04 13:31:49    2014-07-04 13:31:49
15493    19657    577    2013-12-12 11:16:03    2013-12-12 11:16:03
15494    10676    755    2013-05-18 10:19:59    2013-05-18 10:19:59
15495    18007    474    2013-07-22 22:38:07    2013-07-22 22:38:07
15496    14927    595    2015-10-20 05:56:11    2015-10-20 05:56:11
15497    18560    727    2014-07-02 08:40:35    2014-07-02 08:40:35
15498    11504    506    2013-10-23 09:02:57    2013-10-23 09:02:57
15499    17034    922    2015-04-16 21:54:15    2015-04-16 21:54:15
15500    15350    623    2013-12-23 09:48:37    2013-12-23 09:48:37
15501    13674    602    2014-10-04 15:15:18    2014-10-04 15:15:18
15502    12390    777    2014-04-05 14:22:26    2014-04-05 14:22:26
15503    15045    683    2014-09-07 15:47:23    2014-09-07 15:47:23
15504    17919    713    2016-03-21 23:03:18    2016-03-21 23:03:18
15505    12209    562    2015-12-03 10:25:01    2015-12-03 10:25:01
15506    11171    855    2015-07-07 04:27:56    2015-07-07 04:27:56
15507    11285    483    2014-06-05 12:00:51    2014-06-05 12:00:51
15508    14204    760    2013-06-05 02:28:30    2013-06-05 02:28:30
15509    18929    472    2014-08-29 09:40:25    2014-08-29 09:40:25
15510    11190    887    2014-11-01 23:15:57    2014-11-01 23:15:57
15511    10400    664    2014-03-16 18:52:14    2014-03-16 18:52:14
15512    10913    813    2015-10-16 19:01:24    2015-10-16 19:01:24
15513    10519    946    2015-01-27 19:50:38    2015-01-27 19:50:38
15514    15271    771    2014-12-02 19:07:42    2014-12-02 19:07:42
15515    10250    602    2013-09-24 02:41:11    2013-09-24 02:41:11
15516    15074    615    2014-06-19 16:47:51    2014-06-19 16:47:51
15517    19148    845    2016-04-04 21:38:28    2016-04-04 21:38:28
15518    18224    685    2013-05-10 12:57:58    2013-05-10 12:57:58
15519    11431    889    2015-07-25 10:35:42    2015-07-25 10:35:42
15520    11137    892    2014-12-14 04:43:27    2014-12-14 04:43:27
15521    16179    639    2014-04-23 18:13:17    2014-04-23 18:13:17
15522    18038    700    2013-10-13 04:31:07    2013-10-13 04:31:07
15523    11876    753    2015-03-09 13:19:45    2015-03-09 13:19:45
15524    17359    880    2016-02-12 09:28:00    2016-02-12 09:28:00
15525    15827    827    2015-06-22 18:17:34    2015-06-22 18:17:34
15526    12862    663    2013-09-10 19:51:46    2013-09-10 19:51:46
15527    14481    839    2014-03-13 04:12:37    2014-03-13 04:12:37
15528    15128    805    2016-01-17 08:42:00    2016-01-17 08:42:00
15529    17026    892    2015-04-06 21:48:52    2015-04-06 21:48:52
15530    18523    616    2016-01-10 15:30:24    2016-01-10 15:30:24
15531    19236    515    2014-02-01 21:29:41    2014-02-01 21:29:41
15532    12435    542    2015-02-11 14:18:21    2015-02-11 14:18:21
15533    15486    701    2013-09-02 20:38:42    2013-09-02 20:38:42
15534    13996    927    2016-01-04 22:31:35    2016-01-04 22:31:35
15535    12791    918    2015-10-01 19:14:35    2015-10-01 19:14:35
15536    19606    532    2014-07-12 14:10:30    2014-07-12 14:10:30
15537    15689    610    2015-02-11 01:03:22    2015-02-11 01:03:22
15538    10551    599    2013-12-23 17:27:08    2013-12-23 17:27:08
15539    17326    940    2015-03-29 21:31:14    2015-03-29 21:31:14
15540    17284    757    2013-06-05 19:26:01    2013-06-05 19:26:01
15541    13877    834    2013-07-17 02:33:25    2013-07-17 02:33:25
15542    17636    489    2015-09-17 04:08:11    2015-09-17 04:08:11
15543    14000    480    2015-02-03 05:18:23    2015-02-03 05:18:23
15544    12351    839    2015-03-07 10:04:04    2015-03-07 10:04:04
15545    16260    579    2014-07-26 21:35:20    2014-07-26 21:35:20
15546    16425    850    2013-07-07 12:04:53    2013-07-07 12:04:53
15547    16278    591    2014-04-07 11:56:19    2014-04-07 11:56:19
15548    19336    630    2016-03-28 11:46:29    2016-03-28 11:46:29
15549    16629    684    2016-03-14 22:04:21    2016-03-14 22:04:21
15550    17364    517    2016-04-14 16:26:51    2016-04-14 16:26:51
15551    11090    899    2015-03-12 02:06:32    2015-03-12 02:06:32
15552    19224    923    2014-05-21 14:58:11    2014-05-21 14:58:11
15553    17107    818    2013-10-21 12:22:42    2013-10-21 12:22:42
15554    17110    526    2014-03-18 02:42:10    2014-03-18 02:42:10
15555    10071    498    2014-05-28 13:42:50    2014-05-28 13:42:50
15556    19154    519    2016-02-01 20:11:57    2016-02-01 20:11:57
15557    19003    480    2016-02-04 00:29:21    2016-02-04 00:29:21
15558    14517    716    2014-09-11 04:15:07    2014-09-11 04:15:07
15559    10635    719    2013-12-16 15:51:10    2013-12-16 15:51:10
15560    15848    867    2014-03-13 07:45:33    2014-03-13 07:45:33
15561    10789    542    2014-06-16 06:33:09    2014-06-16 06:33:09
15562    15256    765    2013-10-04 00:02:35    2013-10-04 00:02:35
15563    11642    789    2015-07-25 23:51:46    2015-07-25 23:51:46
15564    14786    586    2014-06-14 17:06:04    2014-06-14 17:06:04
15565    12087    505    2016-01-12 05:50:03    2016-01-12 05:50:03
15566    18676    601    2016-03-20 03:13:28    2016-03-20 03:13:28
15567    16208    950    2014-01-04 00:02:37    2014-01-04 00:02:37
15568    18357    681    2013-07-13 07:01:29    2013-07-13 07:01:29
15569    17221    788    2016-03-14 15:15:23    2016-03-14 15:15:23
15570    11064    702    2015-12-10 21:54:51    2015-12-10 21:54:51
15571    13359    768    2013-09-03 22:12:26    2013-09-03 22:12:26
15572    18170    899    2014-06-12 17:12:00    2014-06-12 17:12:00
15573    10139    641    2013-07-02 04:06:51    2013-07-02 04:06:51
15574    16989    696    2014-09-26 04:57:55    2014-09-26 04:57:55
15575    10937    574    2016-02-25 14:22:16    2016-02-25 14:22:16
15576    18044    603    2015-02-19 02:03:51    2015-02-19 02:03:51
15577    13295    880    2015-05-10 06:55:50    2015-05-10 06:55:50
15578    13081    641    2015-11-24 09:32:51    2015-11-24 09:32:51
15579    15833    624    2014-09-14 14:50:54    2014-09-14 14:50:54
15580    18871    485    2014-05-27 19:29:52    2014-05-27 19:29:52
15581    16153    630    2013-06-19 20:12:09    2013-06-19 20:12:09
15582    12176    697    2013-09-11 08:42:19    2013-09-11 08:42:19
15583    15946    743    2015-08-08 09:56:10    2015-08-08 09:56:10
15584    13856    844    2014-07-18 12:19:45    2014-07-18 12:19:45
15585    19397    775    2014-11-22 00:01:57    2014-11-22 00:01:57
15586    19922    614    2015-12-22 10:42:28    2015-12-22 10:42:28
15587    17377    566    2013-06-19 21:35:33    2013-06-19 21:35:33
15588    10782    478    2015-05-08 17:11:49    2015-05-08 17:11:49
15589    13327    627    2013-12-10 14:55:09    2013-12-10 14:55:09
15590    10782    488    2014-11-23 20:15:15    2014-11-23 20:15:15
15591    11397    685    2015-08-11 23:41:57    2015-08-11 23:41:57
15592    19025    951    2013-12-18 13:58:53    2013-12-18 13:58:53
15593    14470    826    2014-05-21 08:48:27    2014-05-21 08:48:27
15594    17724    668    2014-10-25 21:43:31    2014-10-25 21:43:31
15595    12370    955    2014-03-25 06:20:26    2014-03-25 06:20:26
15596    10711    833    2015-08-20 05:00:57    2015-08-20 05:00:57
15597    19988    875    2016-03-27 13:52:00    2016-03-27 13:52:00
15598    11790    549    2015-09-10 01:36:41    2015-09-10 01:36:41
15599    14194    767    2014-03-02 15:42:57    2014-03-02 15:42:57
15600    16129    860    2013-08-26 15:58:40    2013-08-26 15:58:40
15601    11957    826    2014-04-25 19:39:38    2014-04-25 19:39:38
15602    14660    570    2015-05-13 00:23:15    2015-05-13 00:23:15
15603    16239    943    2015-02-02 07:51:58    2015-02-02 07:51:58
15604    13753    678    2013-11-03 13:08:37    2013-11-03 13:08:37
15605    15321    828    2014-03-14 12:20:59    2014-03-14 12:20:59
15606    19205    720    2015-09-16 23:39:40    2015-09-16 23:39:40
15607    18801    584    2014-05-13 05:08:09    2014-05-13 05:08:09
15608    19912    512    2016-04-10 06:01:38    2016-04-10 06:01:38
15609    17679    711    2016-02-06 09:29:37    2016-02-06 09:29:37
15610    17259    506    2014-07-31 21:43:22    2014-07-31 21:43:22
15611    14808    801    2013-06-21 23:41:08    2013-06-21 23:41:08
15612    15732    753    2016-02-26 15:27:57    2016-02-26 15:27:57
15613    18352    671    2015-09-14 04:17:46    2015-09-14 04:17:46
15614    13980    838    2015-08-13 23:41:44    2015-08-13 23:41:44
15615    18686    894    2014-10-03 08:27:34    2014-10-03 08:27:34
15616    13023    492    2014-09-13 01:05:49    2014-09-13 01:05:49
15617    12117    882    2014-07-20 17:46:22    2014-07-20 17:46:22
15618    15699    612    2013-10-02 19:24:20    2013-10-02 19:24:20
15619    15587    613    2015-12-17 21:45:56    2015-12-17 21:45:56
15620    14279    824    2015-06-23 02:26:02    2015-06-23 02:26:02
15621    11366    720    2015-04-30 19:31:13    2015-04-30 19:31:13
15622    13634    866    2013-08-30 10:15:01    2013-08-30 10:15:01
15623    19753    550    2013-12-21 00:53:05    2013-12-21 00:53:05
15624    14400    714    2015-05-23 01:38:36    2015-05-23 01:38:36
15625    19360    728    2013-10-07 18:40:37    2013-10-07 18:40:37
15626    17322    706    2014-11-26 23:58:42    2014-11-26 23:58:42
15627    17195    839    2014-08-05 06:32:25    2014-08-05 06:32:25
15628    14393    918    2013-10-04 15:43:43    2013-10-04 15:43:43
15629    11790    619    2014-04-21 18:18:02    2014-04-21 18:18:02
15630    14160    866    2013-06-28 02:39:15    2013-06-28 02:39:15
15631    13585    820    2014-09-13 17:50:31    2014-09-13 17:50:31
15632    16277    620    2013-07-06 11:21:59    2013-07-06 11:21:59
15633    11835    740    2014-05-14 08:31:19    2014-05-14 08:31:19
15634    13069    913    2013-07-23 16:31:07    2013-07-23 16:31:07
15635    12952    880    2014-06-06 13:06:47    2014-06-06 13:06:47
15636    13851    503    2013-10-14 12:21:35    2013-10-14 12:21:35
15637    14856    586    2015-06-30 21:51:31    2015-06-30 21:51:31
15638    17783    618    2016-04-06 02:50:34    2016-04-06 02:50:34
15639    11554    949    2015-03-03 08:21:50    2015-03-03 08:21:50
15640    12763    736    2016-01-17 22:29:37    2016-01-17 22:29:37
15641    12393    728    2015-06-11 23:03:48    2015-06-11 23:03:48
15642    18617    601    2016-02-08 08:38:08    2016-02-08 08:38:08
15643    13382    748    2013-07-11 23:36:39    2013-07-11 23:36:39
15644    18567    681    2015-04-21 14:55:57    2015-04-21 14:55:57
15645    14508    649    2016-03-17 04:28:45    2016-03-17 04:28:45
15646    18240    644    2015-09-13 00:16:42    2015-09-13 00:16:42
15647    13181    907    2015-09-12 03:26:18    2015-09-12 03:26:18
15648    10033    517    2016-01-22 07:41:32    2016-01-22 07:41:32
15649    18533    481    2015-07-02 16:26:37    2015-07-02 16:26:37
15650    10286    702    2013-09-17 17:39:39    2013-09-17 17:39:39
15651    14213    779    2013-12-17 06:24:07    2013-12-17 06:24:07
15652    19854    874    2015-06-26 05:16:57    2015-06-26 05:16:57
15653    18042    660    2014-08-28 22:31:17    2014-08-28 22:31:17
15654    15176    664    2015-10-14 09:20:37    2015-10-14 09:20:37
15655    16530    792    2015-06-16 01:18:07    2015-06-16 01:18:07
15656    16154    828    2015-08-08 20:03:07    2015-08-08 20:03:07
15657    18742    502    2015-01-21 08:09:42    2015-01-21 08:09:42
15658    17043    743    2015-12-09 12:06:08    2015-12-09 12:06:08
15659    17096    924    2013-10-18 14:51:54    2013-10-18 14:51:54
15660    12810    475    2014-09-15 09:17:38    2014-09-15 09:17:38
15661    19758    554    2015-04-29 23:44:51    2015-04-29 23:44:51
15662    15824    469    2014-09-06 06:13:26    2014-09-06 06:13:26
15663    15864    809    2013-12-29 08:53:43    2013-12-29 08:53:43
15664    10361    765    2015-08-29 20:39:06    2015-08-29 20:39:06
15665    12970    572    2015-11-13 05:22:52    2015-11-13 05:22:52
15666    10550    636    2013-07-16 22:47:45    2013-07-16 22:47:45
15667    19358    673    2014-10-25 12:48:25    2014-10-25 12:48:25
15668    11507    481    2013-05-30 05:06:47    2013-05-30 05:06:47
15669    16794    637    2013-12-15 05:37:16    2013-12-15 05:37:16
15670    17444    901    2015-11-29 09:14:43    2015-11-29 09:14:43
15671    14901    707    2015-05-08 12:16:36    2015-05-08 12:16:36
15672    14164    793    2015-03-16 03:11:15    2015-03-16 03:11:15
15673    17533    550    2016-04-20 05:42:48    2016-04-20 05:42:48
15674    16841    717    2014-07-30 04:38:18    2014-07-30 04:38:18
15675    15440    540    2014-10-21 07:45:31    2014-10-21 07:45:31
15676    18220    912    2014-02-14 04:02:48    2014-02-14 04:02:48
15677    10941    501    2014-02-10 11:37:04    2014-02-10 11:37:04
15678    19793    852    2016-01-27 09:41:11    2016-01-27 09:41:11
15679    18983    913    2013-12-16 03:58:12    2013-12-16 03:58:12
15680    16036    475    2013-11-21 02:14:55    2013-11-21 02:14:55
15681    16886    928    2013-12-23 21:19:01    2013-12-23 21:19:01
15682    11975    853    2015-01-15 20:04:58    2015-01-15 20:04:58
15683    13028    752    2013-11-03 04:52:17    2013-11-03 04:52:17
15684    15806    811    2014-10-12 03:25:43    2014-10-12 03:25:43
15685    12097    757    2014-11-19 17:13:15    2014-11-19 17:13:15
15686    13640    938    2014-11-21 09:27:12    2014-11-21 09:27:12
15687    15349    946    2016-03-29 15:22:37    2016-03-29 15:22:37
15688    14295    585    2015-10-03 05:04:55    2015-10-03 05:04:55
15689    19407    664    2014-07-22 04:38:41    2014-07-22 04:38:41
15690    11378    874    2016-03-13 01:34:13    2016-03-13 01:34:13
15691    12524    740    2015-09-09 05:37:54    2015-09-09 05:37:54
15692    13903    889    2016-03-17 20:07:00    2016-03-17 20:07:00
15693    14415    703    2013-10-30 00:00:35    2013-10-30 00:00:35
15694    14931    762    2014-07-29 23:48:29    2014-07-29 23:48:29
15695    10842    732    2013-08-22 13:31:25    2013-08-22 13:31:25
15696    18556    652    2014-03-25 18:51:43    2014-03-25 18:51:43
15697    10770    535    2015-12-09 21:23:54    2015-12-09 21:23:54
15698    19424    658    2016-01-13 20:54:45    2016-01-13 20:54:45
15699    13388    637    2015-08-10 21:56:53    2015-08-10 21:56:53
15700    16047    823    2013-12-06 17:47:21    2013-12-06 17:47:21
15701    15155    790    2015-09-06 15:03:23    2015-09-06 15:03:23
15702    15074    664    2016-03-16 11:39:45    2016-03-16 11:39:45
15703    19049    499    2014-03-10 03:03:34    2014-03-10 03:03:34
15704    13284    553    2015-06-23 20:18:58    2015-06-23 20:18:58
15705    12777    847    2016-02-27 10:34:06    2016-02-27 10:34:06
15706    11379    495    2015-01-31 07:33:25    2015-01-31 07:33:25
15707    10411    655    2014-01-21 15:06:37    2014-01-21 15:06:37
15708    12708    553    2014-02-18 09:35:58    2014-02-18 09:35:58
15709    10351    887    2014-04-30 15:24:29    2014-04-30 15:24:29
15710    15212    715    2015-04-29 00:24:58    2015-04-29 00:24:58
15711    16892    728    2013-07-23 00:34:29    2013-07-23 00:34:29
15712    13352    669    2016-02-21 22:43:58    2016-02-21 22:43:58
15713    15568    650    2013-06-30 04:11:07    2013-06-30 04:11:07
15714    13529    554    2013-06-14 13:26:37    2013-06-14 13:26:37
15715    15970    474    2015-07-28 19:57:38    2015-07-28 19:57:38
15716    19784    756    2015-05-08 12:56:28    2015-05-08 12:56:28
15717    15691    559    2015-09-22 20:04:38    2015-09-22 20:04:38
15718    14724    757    2015-02-28 20:27:24    2015-02-28 20:27:24
15719    14423    568    2014-11-15 00:59:06    2014-11-15 00:59:06
15720    10930    664    2013-06-18 17:39:38    2013-06-18 17:39:38
15721    19618    942    2015-01-23 12:59:38    2015-01-23 12:59:38
15722    12236    812    2014-05-13 19:24:17    2014-05-13 19:24:17
15723    14538    616    2013-09-12 15:02:14    2013-09-12 15:02:14
15724    10649    501    2013-05-14 15:32:20    2013-05-14 15:32:20
15725    11454    699    2015-10-26 16:18:21    2015-10-26 16:18:21
15726    14973    625    2013-11-03 06:15:31    2013-11-03 06:15:31
15727    10243    502    2015-11-10 01:09:04    2015-11-10 01:09:04
15728    18268    946    2015-01-14 18:06:42    2015-01-14 18:06:42
15729    13859    472    2015-09-01 14:59:16    2015-09-01 14:59:16
15730    16701    929    2014-02-25 15:15:04    2014-02-25 15:15:04
15731    15012    633    2013-09-26 17:02:57    2013-09-26 17:02:57
15732    14681    755    2013-10-12 11:43:30    2013-10-12 11:43:30
15733    15007    571    2015-11-15 07:14:13    2015-11-15 07:14:13
15734    13238    820    2015-03-23 00:52:50    2015-03-23 00:52:50
15735    19028    747    2014-11-18 01:10:43    2014-11-18 01:10:43
15736    18465    595    2014-03-28 05:16:00    2014-03-28 05:16:00
15737    16642    498    2015-08-04 11:41:34    2015-08-04 11:41:34
15738    12964    675    2015-01-26 01:55:42    2015-01-26 01:55:42
15739    12497    752    2015-02-12 23:59:57    2015-02-12 23:59:57
15740    17308    783    2015-07-22 11:32:11    2015-07-22 11:32:11
15741    12508    923    2013-08-20 05:32:59    2013-08-20 05:32:59
15742    12054    957    2015-03-14 00:33:42    2015-03-14 00:33:42
15743    14483    865    2015-09-05 12:00:32    2015-09-05 12:00:32
15744    15964    540    2015-06-04 06:56:12    2015-06-04 06:56:12
15745    12132    957    2013-08-15 21:21:09    2013-08-15 21:21:09
15746    10182    616    2013-07-03 10:01:00    2013-07-03 10:01:00
15747    12267    544    2014-09-15 17:37:24    2014-09-15 17:37:24
15748    12663    506    2013-12-31 04:41:36    2013-12-31 04:41:36
15749    16376    790    2015-07-27 21:46:55    2015-07-27 21:46:55
15750    12595    943    2015-05-16 21:30:27    2015-05-16 21:30:27
15751    14560    706    2014-06-03 16:27:17    2014-06-03 16:27:17
15752    11829    674    2014-06-24 16:23:34    2014-06-24 16:23:34
15753    18279    599    2013-05-31 16:02:05    2013-05-31 16:02:05
15754    13512    544    2015-04-03 13:20:44    2015-04-03 13:20:44
15755    19088    793    2015-11-11 14:08:56    2015-11-11 14:08:56
15756    11258    723    2015-05-30 16:47:49    2015-05-30 16:47:49
15757    14692    761    2014-10-01 00:03:45    2014-10-01 00:03:45
15758    17498    626    2014-04-20 05:13:23    2014-04-20 05:13:23
15759    14074    698    2015-02-14 19:54:16    2015-02-14 19:54:16
15760    12783    731    2014-05-07 05:04:29    2014-05-07 05:04:29
15761    15465    917    2016-03-15 06:38:48    2016-03-15 06:38:48
15762    17822    705    2014-05-15 12:44:59    2014-05-15 12:44:59
15763    11290    466    2013-07-27 11:29:09    2013-07-27 11:29:09
15764    19737    504    2016-01-31 14:45:35    2016-01-31 14:45:35
15765    13261    794    2013-08-22 03:01:25    2013-08-22 03:01:25
15766    14800    533    2014-11-12 13:38:00    2014-11-12 13:38:00
15767    10155    917    2015-07-20 09:53:45    2015-07-20 09:53:45
15768    10419    679    2014-01-07 17:49:18    2014-01-07 17:49:18
15769    15683    638    2014-05-21 22:32:50    2014-05-21 22:32:50
15770    14305    630    2015-02-09 14:06:27    2015-02-09 14:06:27
15771    15600    922    2016-04-17 19:23:37    2016-04-17 19:23:37
15772    19492    588    2014-02-22 01:08:15    2014-02-22 01:08:15
15773    16929    848    2016-01-14 04:11:54    2016-01-14 04:11:54
15774    16015    860    2014-09-06 04:38:42    2014-09-06 04:38:42
15775    11767    567    2015-08-21 07:50:05    2015-08-21 07:50:05
15776    19058    873    2014-08-09 08:52:27    2014-08-09 08:52:27
15777    14046    678    2013-08-21 05:07:16    2013-08-21 05:07:16
15778    16660    755    2013-11-19 10:29:26    2013-11-19 10:29:26
15779    16732    848    2015-06-16 02:37:46    2015-06-16 02:37:46
15780    12254    502    2016-01-04 21:00:12    2016-01-04 21:00:12
15781    15206    811    2014-04-20 08:11:43    2014-04-20 08:11:43
15782    16805    930    2014-08-10 23:36:09    2014-08-10 23:36:09
15783    12393    798    2015-03-02 19:41:04    2015-03-02 19:41:04
15784    11011    564    2014-11-30 23:57:05    2014-11-30 23:57:05
15785    18417    601    2014-10-22 19:42:03    2014-10-22 19:42:03
15786    10022    812    2015-02-07 06:28:02    2015-02-07 06:28:02
15787    13131    911    2016-04-06 03:36:48    2016-04-06 03:36:48
15788    13437    745    2013-07-05 08:35:21    2013-07-05 08:35:21
15789    18696    671    2014-03-03 20:19:33    2014-03-03 20:19:33
15790    15884    789    2014-06-19 12:45:11    2014-06-19 12:45:11
15791    11855    802    2013-10-25 17:48:16    2013-10-25 17:48:16
15792    11266    725    2013-06-29 00:57:42    2013-06-29 00:57:42
15793    10432    844    2014-04-25 06:19:44    2014-04-25 06:19:44
15794    13398    691    2014-07-02 22:39:22    2014-07-02 22:39:22
15795    15130    603    2015-07-22 19:45:51    2015-07-22 19:45:51
15796    19710    536    2013-05-15 02:51:53    2013-05-15 02:51:53
15797    11432    605    2015-02-05 00:15:30    2015-02-05 00:15:30
15798    11000    842    2015-01-24 19:34:57    2015-01-24 19:34:57
15799    11364    620    2013-10-17 02:33:46    2013-10-17 02:33:46
15800    11785    902    2016-04-19 07:15:35    2016-04-19 07:15:35
15801    15150    569    2015-01-03 06:16:10    2015-01-03 06:16:10
15802    10469    902    2013-09-05 08:50:14    2013-09-05 08:50:14
15803    10683    763    2014-12-09 21:03:29    2014-12-09 21:03:29
15804    19281    723    2014-12-17 07:14:13    2014-12-17 07:14:13
15805    11448    755    2016-03-10 10:08:20    2016-03-10 10:08:20
15806    13062    827    2015-03-28 18:32:49    2015-03-28 18:32:49
15807    18015    771    2015-02-04 21:24:07    2015-02-04 21:24:07
15808    16356    591    2015-03-28 11:18:06    2015-03-28 11:18:06
15809    16203    886    2016-03-01 00:35:08    2016-03-01 00:35:08
15810    14981    565    2014-09-23 11:53:31    2014-09-23 11:53:31
15811    11305    650    2015-01-27 11:58:20    2015-01-27 11:58:20
15812    12223    769    2013-08-15 04:32:53    2013-08-15 04:32:53
15813    11769    831    2015-04-30 10:41:53    2015-04-30 10:41:53
15814    15663    823    2015-01-20 20:10:48    2015-01-20 20:10:48
15815    11039    512    2015-03-07 01:22:58    2015-03-07 01:22:58
15816    10017    885    2016-01-30 21:42:15    2016-01-30 21:42:15
15817    12757    504    2014-11-15 14:50:13    2014-11-15 14:50:13
15818    19812    725    2013-06-13 12:19:06    2013-06-13 12:19:06
15819    19774    712    2013-08-10 01:38:07    2013-08-10 01:38:07
15820    18074    552    2013-07-14 15:46:53    2013-07-14 15:46:53
15821    16113    765    2015-04-25 09:02:47    2015-04-25 09:02:47
15822    16972    566    2013-10-08 03:00:07    2013-10-08 03:00:07
15823    13448    929    2014-03-09 00:49:03    2014-03-09 00:49:03
15824    10078    729    2015-11-08 04:48:22    2015-11-08 04:48:22
15825    19836    885    2013-12-17 17:28:19    2013-12-17 17:28:19
15826    13361    567    2015-01-17 21:13:04    2015-01-17 21:13:04
15827    10698    634    2014-02-11 17:31:06    2014-02-11 17:31:06
15828    14106    941    2015-10-10 10:11:25    2015-10-10 10:11:25
15829    16533    702    2014-08-27 04:25:03    2014-08-27 04:25:03
15830    11098    956    2016-02-14 22:04:10    2016-02-14 22:04:10
15831    10069    609    2015-03-15 05:25:45    2015-03-15 05:25:45
15832    19017    950    2016-01-14 12:45:19    2016-01-14 12:45:19
15833    12077    548    2015-07-06 10:36:11    2015-07-06 10:36:11
15834    18395    904    2015-06-11 11:49:23    2015-06-11 11:49:23
15835    11110    957    2013-05-16 07:02:22    2013-05-16 07:02:22
15836    11592    586    2015-03-16 12:51:12    2015-03-16 12:51:12
15837    11609    787    2015-10-23 18:15:27    2015-10-23 18:15:27
15838    16331    591    2014-10-01 02:56:37    2014-10-01 02:56:37
15839    10916    534    2016-02-27 10:04:46    2016-02-27 10:04:46
15840    15992    806    2014-01-15 10:37:32    2014-01-15 10:37:32
15841    18452    641    2013-09-29 15:11:55    2013-09-29 15:11:55
15842    11596    668    2015-08-23 10:33:15    2015-08-23 10:33:15
15843    15992    958    2015-05-14 20:59:01    2015-05-14 20:59:01
15844    19801    535    2013-06-20 22:52:05    2013-06-20 22:52:05
15845    12247    527    2014-02-02 06:44:28    2014-02-02 06:44:28
15846    13017    906    2014-10-20 10:47:38    2014-10-20 10:47:38
15847    11865    788    2015-02-11 08:23:54    2015-02-11 08:23:54
15848    13346    923    2014-02-17 06:29:50    2014-02-17 06:29:50
15849    17637    510    2014-05-03 23:40:29    2014-05-03 23:40:29
15850    14945    627    2015-05-07 19:26:42    2015-05-07 19:26:42
15851    18129    934    2013-09-12 22:49:09    2013-09-12 22:49:09
15852    19091    871    2013-09-30 11:01:45    2013-09-30 11:01:45
15853    10579    879    2015-05-11 19:02:41    2015-05-11 19:02:41
15854    15692    934    2015-06-21 01:51:12    2015-06-21 01:51:12
15855    11961    483    2013-10-04 05:40:28    2013-10-04 05:40:28
15856    15297    717    2014-07-03 01:38:46    2014-07-03 01:38:46
15857    11046    476    2015-12-24 02:46:06    2015-12-24 02:46:06
15858    19137    936    2015-11-29 21:58:11    2015-11-29 21:58:11
15859    18113    766    2015-05-20 18:08:40    2015-05-20 18:08:40
15860    12734    863    2014-05-18 04:42:03    2014-05-18 04:42:03
15861    15594    548    2015-11-10 03:19:08    2015-11-10 03:19:08
15862    16215    503    2014-03-13 00:00:57    2014-03-13 00:00:57
15863    15384    929    2014-10-15 08:48:25    2014-10-15 08:48:25
15864    14678    687    2014-04-11 05:16:57    2014-04-11 05:16:57
15865    11393    657    2015-02-19 19:29:02    2015-02-19 19:29:02
15866    19439    695    2016-03-21 11:15:24    2016-03-21 11:15:24
15867    13095    727    2014-07-02 18:20:58    2014-07-02 18:20:58
15868    15411    547    2013-10-24 06:27:33    2013-10-24 06:27:33
15869    11200    941    2015-12-27 10:03:58    2015-12-27 10:03:58
15870    18322    644    2014-12-04 22:21:42    2014-12-04 22:21:42
15871    11801    857    2014-05-05 18:53:07    2014-05-05 18:53:07
15872    11271    747    2016-03-25 13:34:27    2016-03-25 13:34:27
15873    14799    873    2014-09-09 02:30:22    2014-09-09 02:30:22
15874    17691    747    2016-04-01 01:01:21    2016-04-01 01:01:21
15875    13207    840    2014-06-20 23:38:22    2014-06-20 23:38:22
15876    10441    628    2014-11-09 23:44:19    2014-11-09 23:44:19
15877    18103    783    2013-09-10 16:28:14    2013-09-10 16:28:14
15878    12625    690    2013-10-04 01:02:36    2013-10-04 01:02:36
15879    16842    763    2013-08-20 01:04:22    2013-08-20 01:04:22
15880    14997    904    2016-02-11 02:12:24    2016-02-11 02:12:24
15881    12250    584    2013-05-17 13:01:33    2013-05-17 13:01:33
15882    10095    694    2016-04-18 00:37:18    2016-04-18 00:37:18
15883    15474    723    2014-07-05 10:58:46    2014-07-05 10:58:46
15884    19717    626    2013-07-14 09:32:42    2013-07-14 09:32:42
15885    13795    726    2013-07-20 06:57:34    2013-07-20 06:57:34
15886    13222    554    2013-07-12 02:11:01    2013-07-12 02:11:01
15887    11801    849    2015-04-02 12:43:34    2015-04-02 12:43:34
15888    19336    469    2013-06-06 11:02:02    2013-06-06 11:02:02
15889    17513    735    2013-10-25 21:10:16    2013-10-25 21:10:16
15890    12472    686    2013-11-04 06:42:15    2013-11-04 06:42:15
15891    15215    836    2016-03-13 21:37:44    2016-03-13 21:37:44
15892    11242    479    2016-02-12 07:24:16    2016-02-12 07:24:16
15893    15815    867    2013-08-20 11:18:16    2013-08-20 11:18:16
15894    15427    589    2016-01-02 15:19:55    2016-01-02 15:19:55
15895    18640    802    2013-11-14 13:50:20    2013-11-14 13:50:20
15896    15950    753    2015-10-01 00:04:57    2015-10-01 00:04:57
15897    10078    884    2015-01-12 21:17:01    2015-01-12 21:17:01
15898    10189    721    2016-01-03 18:20:12    2016-01-03 18:20:12
15899    12928    692    2014-10-13 07:26:15    2014-10-13 07:26:15
15900    10479    662    2014-07-18 07:25:22    2014-07-18 07:25:22
15901    11437    878    2015-08-12 10:13:45    2015-08-12 10:13:45
15902    18710    859    2013-08-01 20:47:04    2013-08-01 20:47:04
15903    15766    586    2015-08-22 01:22:11    2015-08-22 01:22:11
15904    14496    758    2013-11-27 11:55:27    2013-11-27 11:55:27
15905    19699    796    2014-01-10 12:06:46    2014-01-10 12:06:46
15906    18391    766    2015-05-20 15:14:50    2015-05-20 15:14:50
15907    10925    536    2014-01-22 12:54:53    2014-01-22 12:54:53
15908    14544    743    2014-12-28 16:26:19    2014-12-28 16:26:19
15909    15079    656    2015-07-31 01:16:47    2015-07-31 01:16:47
15910    18201    671    2016-01-18 12:26:00    2016-01-18 12:26:00
15911    16323    577    2013-04-27 22:48:36    2013-04-27 22:48:36
15912    11255    579    2014-04-03 04:21:57    2014-04-03 04:21:57
15913    12699    940    2015-05-21 06:59:53    2015-05-21 06:59:53
15914    16138    497    2014-01-11 18:00:34    2014-01-11 18:00:34
15915    10432    839    2014-09-28 08:36:00    2014-09-28 08:36:00
15916    16270    769    2013-06-29 17:35:22    2013-06-29 17:35:22
15917    10479    623    2014-11-28 06:31:47    2014-11-28 06:31:47
15918    19349    723    2015-12-03 08:29:48    2015-12-03 08:29:48
15919    15057    539    2015-06-12 00:08:39    2015-06-12 00:08:39
15920    18703    958    2015-04-12 03:51:49    2015-04-12 03:51:49
15921    11416    930    2014-12-18 13:52:23    2014-12-18 13:52:23
15922    10285    743    2014-01-01 02:14:35    2014-01-01 02:14:35
15923    17653    938    2014-06-12 08:35:53    2014-06-12 08:35:53
15924    18472    933    2014-12-06 06:45:48    2014-12-06 06:45:48
15925    11581    555    2015-06-07 00:56:26    2015-06-07 00:56:26
15926    14215    845    2014-10-09 02:30:33    2014-10-09 02:30:33
15927    10670    609    2016-04-11 14:47:15    2016-04-11 14:47:15
15928    19439    824    2014-09-28 05:59:22    2014-09-28 05:59:22
15929    10780    844    2013-08-25 13:40:56    2013-08-25 13:40:56
15930    13602    534    2015-06-14 18:35:48    2015-06-14 18:35:48
15931    11424    813    2015-06-11 09:53:10    2015-06-11 09:53:10
15932    14689    714    2015-04-26 04:33:02    2015-04-26 04:33:02
15933    12711    892    2014-03-05 11:22:38    2014-03-05 11:22:38
15934    11562    702    2013-09-20 12:42:00    2013-09-20 12:42:00
15935    19909    931    2014-10-08 13:29:14    2014-10-08 13:29:14
15936    10533    482    2015-09-26 12:59:12    2015-09-26 12:59:12
15937    18828    532    2014-01-11 17:22:51    2014-01-11 17:22:51
15938    16383    697    2015-07-14 00:49:54    2015-07-14 00:49:54
15939    10674    558    2015-07-27 10:37:26    2015-07-27 10:37:26
15940    18530    687    2013-12-13 01:16:53    2013-12-13 01:16:53
15941    16223    512    2014-03-13 05:08:19    2014-03-13 05:08:19
15942    18633    491    2014-09-04 10:04:32    2014-09-04 10:04:32
15943    12230    688    2013-05-10 23:10:37    2013-05-10 23:10:37
15944    19697    710    2014-03-08 18:28:45    2014-03-08 18:28:45
15945    17527    604    2014-04-06 02:45:40    2014-04-06 02:45:40
15946    15104    836    2014-04-27 23:18:04    2014-04-27 23:18:04
15947    16454    697    2015-12-01 02:18:31    2015-12-01 02:18:31
15948    18937    877    2014-07-17 02:41:23    2014-07-17 02:41:23
15949    13084    606    2014-11-21 08:50:07    2014-11-21 08:50:07
15950    17262    858    2013-05-25 08:09:24    2013-05-25 08:09:24
15951    10196    501    2014-06-30 14:55:59    2014-06-30 14:55:59
15952    13995    956    2015-12-06 07:32:10    2015-12-06 07:32:10
15953    16629    540    2013-12-27 15:32:19    2013-12-27 15:32:19
15954    19933    740    2013-11-05 05:12:02    2013-11-05 05:12:02
15955    19570    952    2015-03-20 10:30:26    2015-03-20 10:30:26
15956    17688    542    2016-03-05 23:52:29    2016-03-05 23:52:29
15957    13427    700    2015-10-28 15:53:27    2015-10-28 15:53:27
15958    17021    942    2015-05-04 18:43:36    2015-05-04 18:43:36
15959    10535    529    2015-06-28 13:45:36    2015-06-28 13:45:36
15960    16725    657    2015-10-10 23:03:00    2015-10-10 23:03:00
15961    13856    581    2015-09-16 14:58:52    2015-09-16 14:58:52
15962    15936    799    2015-03-26 01:50:51    2015-03-26 01:50:51
15963    15449    947    2015-08-18 18:55:02    2015-08-18 18:55:02
15964    14457    697    2015-03-30 09:49:41    2015-03-30 09:49:41
15965    11982    945    2015-08-07 18:41:05    2015-08-07 18:41:05
15966    19742    507    2015-05-07 13:11:57    2015-05-07 13:11:57
15967    14788    669    2015-02-26 22:10:03    2015-02-26 22:10:03
15968    12659    582    2013-11-29 06:58:59    2013-11-29 06:58:59
15969    19739    804    2014-01-10 17:36:04    2014-01-10 17:36:04
15970    12967    494    2014-02-17 23:53:13    2014-02-17 23:53:13
15971    19804    600    2013-04-24 20:11:22    2013-04-24 20:11:22
15972    12666    957    2014-05-31 15:29:00    2014-05-31 15:29:00
15973    12470    892    2015-03-09 23:00:47    2015-03-09 23:00:47
15974    12218    480    2015-12-24 19:21:24    2015-12-24 19:21:24
15975    13503    736    2013-08-30 23:38:09    2013-08-30 23:38:09
15976    16055    677    2014-04-24 10:51:45    2014-04-24 10:51:45
15977    13330    483    2015-10-25 06:12:53    2015-10-25 06:12:53
15978    16532    468    2013-10-14 00:29:08    2013-10-14 00:29:08
15979    19531    922    2014-10-12 09:29:33    2014-10-12 09:29:33
15980    10294    827    2013-10-19 10:40:00    2013-10-19 10:40:00
15981    15057    516    2014-07-23 14:33:21    2014-07-23 14:33:21
15982    12031    626    2013-05-14 21:37:02    2013-05-14 21:37:02
15983    13344    502    2013-11-04 21:08:13    2013-11-04 21:08:13
15984    18644    481    2016-01-10 02:28:00    2016-01-10 02:28:00
15985    10134    836    2015-09-03 15:07:59    2015-09-03 15:07:59
15986    13750    865    2015-09-18 02:15:01    2015-09-18 02:15:01
15987    12643    822    2015-08-04 15:30:04    2015-08-04 15:30:04
15988    11711    671    2014-06-21 22:55:42    2014-06-21 22:55:42
15989    15814    553    2016-04-07 15:13:56    2016-04-07 15:13:56
15990    12399    612    2015-09-04 21:33:09    2015-09-04 21:33:09
15991    19375    730    2014-04-18 11:27:35    2014-04-18 11:27:35
15992    10524    776    2014-01-09 04:53:04    2014-01-09 04:53:04
15993    11950    595    2015-11-10 13:07:40    2015-11-10 13:07:40
15994    16227    558    2015-07-03 18:51:42    2015-07-03 18:51:42
15995    11386    951    2015-03-27 17:20:22    2015-03-27 17:20:22
15996    11016    512    2015-06-16 12:53:43    2015-06-16 12:53:43
15997    17386    824    2015-06-10 15:25:27    2015-06-10 15:25:27
15998    19250    708    2015-07-10 22:10:18    2015-07-10 22:10:18
15999    11867    907    2013-06-07 17:26:15    2013-06-07 17:26:15
16000    19064    497    2014-04-09 21:55:24    2014-04-09 21:55:24
16001    15227    720    2015-04-29 13:33:55    2015-04-29 13:33:55
16002    19139    488    2015-01-30 07:32:49    2015-01-30 07:32:49
16003    18439    948    2015-09-27 06:31:26    2015-09-27 06:31:26
16004    12936    958    2015-02-06 17:44:56    2015-02-06 17:44:56
16005    11775    565    2015-02-07 02:26:22    2015-02-07 02:26:22
16006    14959    843    2013-07-15 06:25:04    2013-07-15 06:25:04
16007    13035    916    2014-10-22 15:53:07    2014-10-22 15:53:07
16008    19602    816    2014-11-07 08:56:52    2014-11-07 08:56:52
16009    14207    647    2013-05-29 02:53:16    2013-05-29 02:53:16
16010    16254    664    2014-10-30 09:35:48    2014-10-30 09:35:48
16011    18333    480    2015-07-15 22:06:29    2015-07-15 22:06:29
16012    17754    781    2015-05-04 06:17:38    2015-05-04 06:17:38
16013    12323    632    2015-08-23 05:09:14    2015-08-23 05:09:14
16014    17235    483    2015-09-20 23:26:31    2015-09-20 23:26:31
16015    15127    851    2013-10-12 12:04:32    2013-10-12 12:04:32
16016    17568    535    2014-12-31 10:11:28    2014-12-31 10:11:28
16017    17206    550    2013-09-12 08:27:07    2013-09-12 08:27:07
16018    14003    842    2015-06-13 17:23:55    2015-06-13 17:23:55
16019    15348    956    2015-06-29 00:24:47    2015-06-29 00:24:47
16020    14200    694    2015-12-12 01:25:57    2015-12-12 01:25:57
16021    14758    710    2014-08-25 14:06:25    2014-08-25 14:06:25
16022    14676    774    2015-09-22 16:34:45    2015-09-22 16:34:45
16023    14140    910    2013-08-10 07:13:48    2013-08-10 07:13:48
16024    10322    505    2014-01-02 00:03:10    2014-01-02 00:03:10
16025    14703    937    2013-06-16 08:23:41    2013-06-16 08:23:41
16026    19714    501    2014-11-17 22:17:19    2014-11-17 22:17:19
16027    10709    771    2014-07-03 11:03:04    2014-07-03 11:03:04
16028    16728    850    2016-03-12 02:43:27    2016-03-12 02:43:27
16029    16376    919    2013-09-03 12:52:54    2013-09-03 12:52:54
16030    12023    691    2015-01-12 15:53:57    2015-01-12 15:53:57
16031    18002    803    2015-02-01 10:15:32    2015-02-01 10:15:32
16032    17121    784    2013-06-26 08:30:06    2013-06-26 08:30:06
16033    14033    958    2015-11-15 03:46:03    2015-11-15 03:46:03
16034    16064    837    2014-07-25 09:46:22    2014-07-25 09:46:22
16035    19965    948    2013-05-12 05:06:56    2013-05-12 05:06:56
16036    13909    901    2013-11-12 09:41:43    2013-11-12 09:41:43
16037    15358    852    2014-02-25 04:24:57    2014-02-25 04:24:57
16038    15077    826    2015-09-16 15:29:29    2015-09-16 15:29:29
16039    11531    951    2014-10-28 04:03:50    2014-10-28 04:03:50
16040    11614    549    2016-04-04 20:00:27    2016-04-04 20:00:27
16041    15308    537    2016-04-09 02:20:30    2016-04-09 02:20:30
16042    10179    694    2014-05-29 20:18:17    2014-05-29 20:18:17
16043    12799    609    2014-04-22 13:29:16    2014-04-22 13:29:16
16044    11963    954    2014-02-23 11:33:20    2014-02-23 11:33:20
16045    12289    747    2016-01-16 07:26:44    2016-01-16 07:26:44
16046    17574    901    2015-04-20 04:28:59    2015-04-20 04:28:59
16047    13295    676    2015-07-20 17:20:07    2015-07-20 17:20:07
16048    11357    769    2014-02-02 21:03:31    2014-02-02 21:03:31
16049    19744    837    2013-05-01 20:59:01    2013-05-01 20:59:01
16050    15211    703    2013-06-18 03:08:10    2013-06-18 03:08:10
16051    15752    682    2015-12-08 05:24:22    2015-12-08 05:24:22
16052    13898    770    2013-06-30 15:14:49    2013-06-30 15:14:49
16053    11891    602    2016-01-05 05:51:26    2016-01-05 05:51:26
16054    11575    872    2014-02-09 07:02:29    2014-02-09 07:02:29
16055    18240    545    2015-02-02 03:36:15    2015-02-02 03:36:15
16056    15791    651    2015-03-25 16:31:50    2015-03-25 16:31:50
16057    19218    697    2014-11-27 19:03:37    2014-11-27 19:03:37
16058    10084    479    2013-06-18 13:13:39    2013-06-18 13:13:39
16059    19575    807    2014-10-19 02:04:48    2014-10-19 02:04:48
16060    18055    942    2015-04-27 10:32:07    2015-04-27 10:32:07
16061    17837    760    2015-07-28 21:55:42    2015-07-28 21:55:42
16062    20000    935    2014-01-22 18:50:46    2014-01-22 18:50:46
16063    17254    605    2013-06-03 08:15:14    2013-06-03 08:15:14
16064    11939    832    2015-11-17 03:31:19    2015-11-17 03:31:19
16065    10002    809    2014-10-01 22:49:08    2014-10-01 22:49:08
16066    18985    709    2014-07-15 20:09:44    2014-07-15 20:09:44
16067    10477    811    2014-10-15 14:21:36    2014-10-15 14:21:36
16068    13121    756    2013-12-12 03:51:15    2013-12-12 03:51:15
16069    16865    922    2015-08-09 16:13:58    2015-08-09 16:13:58
16070    10368    743    2014-07-08 17:00:54    2014-07-08 17:00:54
16071    18831    553    2015-12-05 21:02:28    2015-12-05 21:02:28
16072    13372    940    2015-01-09 09:18:09    2015-01-09 09:18:09
16073    11305    939    2014-02-16 09:25:08    2014-02-16 09:25:08
16074    11336    777    2014-07-07 14:38:23    2014-07-07 14:38:23
16075    16083    874    2015-03-30 10:20:05    2015-03-30 10:20:05
16076    12024    567    2013-05-17 02:00:33    2013-05-17 02:00:33
16077    15319    727    2013-12-09 09:43:28    2013-12-09 09:43:28
16078    19350    478    2016-03-02 14:34:03    2016-03-02 14:34:03
16079    19166    919    2015-07-04 09:50:23    2015-07-04 09:50:23
16080    16889    774    2013-11-12 14:21:32    2013-11-12 14:21:32
16081    15095    644    2014-05-02 04:42:00    2014-05-02 04:42:00
16082    14148    632    2014-06-28 15:45:53    2014-06-28 15:45:53
16083    12439    747    2014-10-02 09:37:16    2014-10-02 09:37:16
16084    10165    674    2014-10-26 12:43:49    2014-10-26 12:43:49
16085    13441    471    2013-07-25 13:02:10    2013-07-25 13:02:10
16086    12996    567    2015-11-29 19:20:43    2015-11-29 19:20:43
16087    18118    719    2015-07-14 16:02:43    2015-07-14 16:02:43
16088    19281    463    2015-11-05 02:37:29    2015-11-05 02:37:29
16089    16417    708    2014-12-25 11:53:12    2014-12-25 11:53:12
16090    16951    829    2015-02-10 05:00:49    2015-02-10 05:00:49
16091    14519    715    2015-11-11 20:47:00    2015-11-11 20:47:00
16092    15796    931    2014-01-22 07:07:50    2014-01-22 07:07:50
16093    18835    740    2016-03-06 12:32:15    2016-03-06 12:32:15
16094    16152    943    2014-04-17 12:12:39    2014-04-17 12:12:39
16095    18239    576    2016-02-27 17:10:11    2016-02-27 17:10:11
16096    13782    771    2013-09-29 05:42:45    2013-09-29 05:42:45
16097    16821    634    2015-05-27 10:08:16    2015-05-27 10:08:16
16098    13268    509    2014-08-05 11:59:32    2014-08-05 11:59:32
16099    11533    500    2014-10-16 07:58:02    2014-10-16 07:58:02
16100    14407    779    2015-02-04 10:33:54    2015-02-04 10:33:54
16101    13808    528    2013-11-15 04:35:27    2013-11-15 04:35:27
16102    12946    791    2013-08-19 18:50:46    2013-08-19 18:50:46
16103    15965    819    2015-06-23 20:19:22    2015-06-23 20:19:22
16104    14153    873    2014-11-02 17:28:22    2014-11-02 17:28:22
16105    14229    913    2014-04-21 22:50:45    2014-04-21 22:50:45
16106    14484    729    2015-01-19 13:43:06    2015-01-19 13:43:06
16107    15045    778    2015-02-18 05:09:53    2015-02-18 05:09:53
16108    10104    802    2016-03-23 10:03:02    2016-03-23 10:03:02
16109    12409    767    2013-06-09 15:29:37    2013-06-09 15:29:37
16110    12253    723    2016-01-26 09:02:24    2016-01-26 09:02:24
16111    18875    878    2014-08-05 22:03:07    2014-08-05 22:03:07
16112    14166    938    2014-12-11 06:55:47    2014-12-11 06:55:47
16113    14805    583    2014-12-30 01:16:15    2014-12-30 01:16:15
16114    11513    901    2015-08-29 20:15:49    2015-08-29 20:15:49
16115    10266    729    2013-11-13 02:50:50    2013-11-13 02:50:50
16116    12658    922    2015-04-06 02:47:18    2015-04-06 02:47:18
16117    10400    738    2015-08-24 11:31:48    2015-08-24 11:31:48
16118    18198    832    2013-08-21 20:05:58    2013-08-21 20:05:58
16119    15414    749    2016-03-16 05:16:31    2016-03-16 05:16:31
16120    16536    495    2013-07-20 04:07:41    2013-07-20 04:07:41
16121    15230    722    2016-02-25 02:28:57    2016-02-25 02:28:57
16122    11738    623    2014-06-29 04:10:59    2014-06-29 04:10:59
16123    10364    474    2015-03-05 11:54:57    2015-03-05 11:54:57
16124    12512    863    2015-02-07 21:17:27    2015-02-07 21:17:27
16125    12628    795    2015-10-22 18:45:10    2015-10-22 18:45:10
16126    10414    933    2014-09-25 20:02:02    2014-09-25 20:02:02
16127    17825    784    2015-09-12 08:13:33    2015-09-12 08:13:33
16128    13990    469    2013-07-31 21:13:35    2013-07-31 21:13:35
16129    15360    606    2015-08-11 19:54:13    2015-08-11 19:54:13
16130    19556    498    2016-02-02 17:22:43    2016-02-02 17:22:43
16131    17411    573    2015-02-04 04:15:06    2015-02-04 04:15:06
16132    12523    733    2013-10-20 02:13:34    2013-10-20 02:13:34
16133    17252    956    2014-01-29 14:43:47    2014-01-29 14:43:47
16134    10322    938    2013-07-14 15:40:04    2013-07-14 15:40:04
16135    15085    723    2014-08-25 07:02:50    2014-08-25 07:02:50
16136    19260    654    2013-07-23 18:30:47    2013-07-23 18:30:47
16137    11900    518    2014-10-08 10:19:45    2014-10-08 10:19:45
16138    13146    617    2016-01-15 13:05:14    2016-01-15 13:05:14
16139    10358    587    2015-07-22 06:54:48    2015-07-22 06:54:48
16140    11135    634    2014-05-30 13:29:17    2014-05-30 13:29:17
16141    17417    959    2014-08-26 11:10:41    2014-08-26 11:10:41
16142    19071    879    2013-05-19 02:10:05    2013-05-19 02:10:05
16143    14592    558    2013-10-13 16:03:44    2013-10-13 16:03:44
16144    17296    557    2013-06-26 03:21:59    2013-06-26 03:21:59
16145    11879    667    2014-04-05 06:26:14    2014-04-05 06:26:14
16146    11249    803    2015-07-03 15:31:09    2015-07-03 15:31:09
16147    17780    726    2015-02-20 12:12:48    2015-02-20 12:12:48
16148    16031    731    2016-02-11 08:27:57    2016-02-11 08:27:57
16149    12902    858    2015-03-27 03:30:05    2015-03-27 03:30:05
16150    15297    839    2014-07-15 13:30:06    2014-07-15 13:30:06
16151    14518    882    2014-09-07 12:55:44    2014-09-07 12:55:44
16152    10680    510    2015-07-21 02:24:25    2015-07-21 02:24:25
16153    19145    808    2015-03-28 06:02:22    2015-03-28 06:02:22
16154    15946    625    2015-04-06 01:41:26    2015-04-06 01:41:26
16155    11502    841    2016-03-11 05:31:26    2016-03-11 05:31:26
16156    16131    823    2014-05-03 10:49:56    2014-05-03 10:49:56
16157    15780    745    2013-12-14 12:31:51    2013-12-14 12:31:51
16158    13213    911    2015-03-17 22:14:05    2015-03-17 22:14:05
16159    17669    638    2014-05-15 06:00:42    2014-05-15 06:00:42
16160    13562    744    2015-02-28 00:16:06    2015-02-28 00:16:06
16161    17204    554    2015-05-04 23:19:26    2015-05-04 23:19:26
16162    11226    641    2014-05-17 05:28:06    2014-05-17 05:28:06
16163    15717    576    2014-09-10 00:53:35    2014-09-10 00:53:35
16164    10441    633    2014-08-29 09:51:03    2014-08-29 09:51:03
16165    13224    667    2013-08-19 03:31:38    2013-08-19 03:31:38
16166    19008    667    2014-06-25 20:14:33    2014-06-25 20:14:33
16167    12176    581    2013-06-12 11:24:07    2013-06-12 11:24:07
16168    14779    793    2015-07-24 00:00:04    2015-07-24 00:00:04
16169    15665    755    2014-12-14 16:27:42    2014-12-14 16:27:42
16170    17028    776    2013-12-29 21:54:12    2013-12-29 21:54:12
16171    15577    634    2015-12-29 23:09:49    2015-12-29 23:09:49
16172    17934    746    2013-10-12 12:16:03    2013-10-12 12:16:03
16173    10614    735    2014-10-26 20:50:23    2014-10-26 20:50:23
16174    11309    645    2013-09-21 01:54:07    2013-09-21 01:54:07
16175    12642    490    2013-06-11 07:41:56    2013-06-11 07:41:56
16176    11136    852    2014-05-11 18:08:43    2014-05-11 18:08:43
16177    11925    641    2014-05-04 18:54:13    2014-05-04 18:54:13
16178    17317    957    2014-04-22 15:01:53    2014-04-22 15:01:53
16179    12188    582    2015-05-22 22:05:22    2015-05-22 22:05:22
16180    12883    832    2015-10-20 03:01:08    2015-10-20 03:01:08
16181    18686    638    2015-05-28 01:50:48    2015-05-28 01:50:48
16182    19489    520    2014-08-15 02:18:39    2014-08-15 02:18:39
16183    11718    561    2015-07-23 18:19:28    2015-07-23 18:19:28
16184    12796    846    2015-02-02 02:20:03    2015-02-02 02:20:03
16185    10496    832    2013-10-20 05:07:13    2013-10-20 05:07:13
16186    16496    764    2013-07-07 02:24:32    2013-07-07 02:24:32
16187    16903    661    2015-04-15 17:38:57    2015-04-15 17:38:57
16188    12671    775    2014-07-01 12:21:52    2014-07-01 12:21:52
16189    13028    559    2014-02-24 21:56:14    2014-02-24 21:56:14
16190    18658    619    2016-01-16 04:27:40    2016-01-16 04:27:40
16191    12665    919    2013-05-09 07:59:57    2013-05-09 07:59:57
16192    19605    533    2014-08-19 14:55:29    2014-08-19 14:55:29
16193    19665    892    2014-07-08 09:26:01    2014-07-08 09:26:01
16194    12307    684    2016-02-10 18:12:27    2016-02-10 18:12:27
16195    19813    888    2014-10-11 10:49:07    2014-10-11 10:49:07
16196    14511    722    2016-03-01 16:27:37    2016-03-01 16:27:37
16197    18727    622    2016-04-19 21:57:43    2016-04-19 21:57:43
16198    17100    547    2015-06-20 09:36:41    2015-06-20 09:36:41
16199    13946    627    2015-06-03 12:08:53    2015-06-03 12:08:53
16200    12749    582    2015-02-04 15:48:48    2015-02-04 15:48:48
16201    19157    571    2013-05-03 15:53:42    2013-05-03 15:53:42
16202    11715    611    2013-11-06 13:37:53    2013-11-06 13:37:53
16203    12184    786    2016-03-06 04:44:08    2016-03-06 04:44:08
16204    15814    913    2014-05-17 06:13:10    2014-05-17 06:13:10
16205    17819    847    2016-01-02 01:06:14    2016-01-02 01:06:14
16206    15475    626    2013-06-01 10:44:14    2013-06-01 10:44:14
16207    16875    739    2015-06-06 08:07:47    2015-06-06 08:07:47
16208    13301    648    2013-08-28 04:48:01    2013-08-28 04:48:01
16209    17790    780    2014-05-28 10:20:24    2014-05-28 10:20:24
16210    16599    571    2013-07-01 07:10:46    2013-07-01 07:10:46
16211    15517    906    2013-04-25 09:33:38    2013-04-25 09:33:38
16212    10282    669    2013-11-09 02:41:08    2013-11-09 02:41:08
16213    19584    670    2015-07-07 07:41:15    2015-07-07 07:41:15
16214    11633    867    2014-02-06 03:14:16    2014-02-06 03:14:16
16215    16401    958    2013-11-01 03:02:09    2013-11-01 03:02:09
16216    15639    924    2015-02-10 07:45:04    2015-02-10 07:45:04
16217    12243    551    2015-07-04 17:19:47    2015-07-04 17:19:47
16218    14649    844    2014-07-14 19:04:43    2014-07-14 19:04:43
16219    14237    888    2015-12-06 22:27:18    2015-12-06 22:27:18
16220    17021    515    2013-12-28 04:52:06    2013-12-28 04:52:06
16221    12068    508    2013-08-19 06:38:28    2013-08-19 06:38:28
16222    12591    951    2014-09-04 05:56:38    2014-09-04 05:56:38
16223    13023    941    2015-11-01 08:59:25    2015-11-01 08:59:25
16224    17205    691    2015-03-26 19:53:24    2015-03-26 19:53:24
16225    11298    557    2014-10-13 19:54:22    2014-10-13 19:54:22
16226    14670    473    2015-09-25 15:46:51    2015-09-25 15:46:51
16227    10456    739    2014-07-31 22:13:02    2014-07-31 22:13:02
16228    16311    809    2014-03-27 19:53:28    2014-03-27 19:53:28
16229    12450    726    2014-11-03 15:22:49    2014-11-03 15:22:49
16230    18019    675    2014-05-29 21:36:14    2014-05-29 21:36:14
16231    17002    486    2013-07-04 11:18:23    2013-07-04 11:18:23
16232    18383    724    2015-10-02 20:11:00    2015-10-02 20:11:00
16233    15688    670    2015-09-15 05:52:30    2015-09-15 05:52:30
16234    15624    563    2015-12-24 18:00:58    2015-12-24 18:00:58
16235    18243    795    2015-02-07 01:30:14    2015-02-07 01:30:14
16236    19958    579    2013-05-10 11:44:14    2013-05-10 11:44:14
16237    11068    495    2014-07-07 10:12:56    2014-07-07 10:12:56
16238    19568    941    2014-07-20 07:13:59    2014-07-20 07:13:59
16239    17621    518    2015-06-17 20:45:51    2015-06-17 20:45:51
16240    16832    855    2014-01-27 08:11:04    2014-01-27 08:11:04
16241    15259    666    2013-11-24 17:31:21    2013-11-24 17:31:21
16242    17417    742    2014-11-23 21:05:17    2014-11-23 21:05:17
16243    15879    588    2015-04-17 03:01:12    2015-04-17 03:01:12
16244    11639    957    2014-04-01 20:25:38    2014-04-01 20:25:38
16245    19865    657    2013-04-29 15:55:28    2013-04-29 15:55:28
16246    14886    839    2013-09-29 20:18:58    2013-09-29 20:18:58
16247    18729    589    2013-11-10 21:05:02    2013-11-10 21:05:02
16248    14568    605    2013-09-16 05:19:23    2013-09-16 05:19:23
16249    18640    564    2015-05-14 04:40:18    2015-05-14 04:40:18
16250    18823    677    2015-11-19 14:47:53    2015-11-19 14:47:53
16251    14841    716    2014-05-08 09:14:12    2014-05-08 09:14:12
16252    11390    802    2014-01-05 14:28:27    2014-01-05 14:28:27
16253    13418    881    2013-12-19 20:18:23    2013-12-19 20:18:23
16254    11972    901    2015-08-20 07:51:21    2015-08-20 07:51:21
16255    14367    483    2013-11-16 04:50:26    2013-11-16 04:50:26
16256    19880    628    2013-12-07 22:21:46    2013-12-07 22:21:46
16257    19380    618    2016-02-29 10:00:49    2016-02-29 10:00:49
16258    16877    495    2013-10-02 00:07:02    2013-10-02 00:07:02
16259    17022    749    2013-06-22 05:26:10    2013-06-22 05:26:10
16260    12226    957    2016-03-31 06:11:51    2016-03-31 06:11:51
16261    14238    667    2014-05-24 10:56:37    2014-05-24 10:56:37
16262    18329    650    2013-12-15 01:58:41    2013-12-15 01:58:41
16263    11073    724    2014-01-05 16:16:56    2014-01-05 16:16:56
16264    11396    833    2014-08-19 19:16:27    2014-08-19 19:16:27
16265    18631    591    2015-01-08 13:01:54    2015-01-08 13:01:54
16266    12307    478    2015-08-24 12:55:29    2015-08-24 12:55:29
16267    16076    607    2015-10-07 15:03:54    2015-10-07 15:03:54
16268    16359    686    2013-09-25 10:32:29    2013-09-25 10:32:29
16269    15272    803    2014-10-29 03:47:21    2014-10-29 03:47:21
16270    19033    648    2016-01-28 19:15:54    2016-01-28 19:15:54
16271    19391    885    2014-03-05 06:51:54    2014-03-05 06:51:54
16272    15715    905    2013-09-05 14:10:31    2013-09-05 14:10:31
16273    16290    931    2013-08-06 19:46:44    2013-08-06 19:46:44
16274    17869    920    2014-12-28 01:20:43    2014-12-28 01:20:43
16275    10198    884    2015-12-11 16:49:11    2015-12-11 16:49:11
16276    10220    756    2014-11-21 17:56:42    2014-11-21 17:56:42
16277    11366    789    2013-08-27 06:42:44    2013-08-27 06:42:44
16278    16474    581    2014-01-16 14:02:02    2014-01-16 14:02:02
16279    11046    534    2013-06-17 13:53:13    2013-06-17 13:53:13
16280    13537    623    2015-06-14 21:33:44    2015-06-14 21:33:44
16281    13459    897    2014-07-28 02:26:37    2014-07-28 02:26:37
16282    15744    479    2015-09-29 03:41:24    2015-09-29 03:41:24
16283    18650    910    2014-10-24 00:24:47    2014-10-24 00:24:47
16284    10184    810    2015-01-16 14:46:27    2015-01-16 14:46:27
16285    18884    919    2013-06-17 08:50:42    2013-06-17 08:50:42
16286    11222    748    2015-07-20 01:30:47    2015-07-20 01:30:47
16287    12689    582    2015-11-15 09:53:03    2015-11-15 09:53:03
16288    13313    475    2014-02-26 05:38:56    2014-02-26 05:38:56
16289    12686    638    2015-10-26 18:14:21    2015-10-26 18:14:21
16290    16547    759    2015-02-04 02:32:24    2015-02-04 02:32:24
16291    16178    854    2014-07-26 16:32:50    2014-07-26 16:32:50
16292    12579    846    2015-08-05 05:25:36    2015-08-05 05:25:36
16293    13760    783    2013-12-22 08:46:29    2013-12-22 08:46:29
16294    11108    516    2015-10-26 08:21:27    2015-10-26 08:21:27
16295    12498    898    2013-05-06 19:10:18    2013-05-06 19:10:18
16296    11081    528    2014-11-02 13:25:12    2014-11-02 13:25:12
16297    12008    547    2013-08-23 10:58:57    2013-08-23 10:58:57
16298    11641    821    2014-10-29 19:24:43    2014-10-29 19:24:43
16299    17562    598    2015-12-08 18:11:04    2015-12-08 18:11:04
16300    15663    569    2014-02-27 10:40:43    2014-02-27 10:40:43
16301    16657    794    2014-04-15 16:15:12    2014-04-15 16:15:12
16302    15918    864    2015-03-04 18:07:17    2015-03-04 18:07:17
16303    10008    886    2014-03-06 05:45:41    2014-03-06 05:45:41
16304    15103    829    2014-06-12 04:27:04    2014-06-12 04:27:04
16305    11312    772    2015-10-30 22:24:55    2015-10-30 22:24:55
16306    14486    523    2016-02-25 17:26:08    2016-02-25 17:26:08
16307    15040    478    2014-07-15 07:25:59    2014-07-15 07:25:59
16308    17312    747    2014-12-08 19:02:53    2014-12-08 19:02:53
16309    15978    842    2015-05-08 16:33:10    2015-05-08 16:33:10
16310    16885    916    2015-05-30 08:19:12    2015-05-30 08:19:12
16311    18627    800    2014-11-04 21:48:37    2014-11-04 21:48:37
16312    16369    820    2014-10-21 13:58:46    2014-10-21 13:58:46
16313    15547    908    2014-06-06 21:22:22    2014-06-06 21:22:22
16314    11108    961    2016-02-04 07:23:52    2016-02-04 07:23:52
16315    15419    520    2013-06-08 13:24:18    2013-06-08 13:24:18
16316    11082    637    2013-07-31 16:45:59    2013-07-31 16:45:59
16317    13598    665    2016-04-16 23:20:22    2016-04-16 23:20:22
16318    16829    835    2014-04-25 22:26:45    2014-04-25 22:26:45
16319    10030    876    2015-03-24 03:14:13    2015-03-24 03:14:13
16320    19213    608    2014-05-12 19:08:31    2014-05-12 19:08:31
16321    16745    551    2015-10-24 11:38:33    2015-10-24 11:38:33
16322    16279    738    2015-08-14 06:50:50    2015-08-14 06:50:50
16323    18516    665    2015-07-08 14:11:07    2015-07-08 14:11:07
16324    17930    586    2015-03-12 03:23:38    2015-03-12 03:23:38
16325    12990    728    2014-05-29 17:15:31    2014-05-29 17:15:31
16326    10318    909    2014-07-31 04:43:14    2014-07-31 04:43:14
16327    10597    618    2014-06-02 18:37:49    2014-06-02 18:37:49
16328    11846    577    2015-03-15 23:16:21    2015-03-15 23:16:21
16329    14351    887    2015-02-12 21:32:54    2015-02-12 21:32:54
16330    16429    493    2014-12-27 13:02:17    2014-12-27 13:02:17
16331    11740    664    2014-06-22 17:14:25    2014-06-22 17:14:25
16332    16367    782    2014-02-15 20:39:29    2014-02-15 20:39:29
16333    17262    869    2013-08-26 05:49:46    2013-08-26 05:49:46
16334    14411    704    2013-05-23 13:01:03    2013-05-23 13:01:03
16335    18493    494    2015-05-31 04:23:42    2015-05-31 04:23:42
16336    13305    566    2015-06-18 05:39:23    2015-06-18 05:39:23
16337    16686    536    2014-06-24 05:54:21    2014-06-24 05:54:21
16338    10227    953    2015-09-04 13:50:21    2015-09-04 13:50:21
16339    19488    872    2014-07-21 03:06:34    2014-07-21 03:06:34
16340    14568    804    2014-09-07 15:08:14    2014-09-07 15:08:14
16341    18860    814    2014-03-04 12:37:29    2014-03-04 12:37:29
16342    17150    743    2014-05-24 00:39:07    2014-05-24 00:39:07
16343    10505    480    2015-01-25 00:33:27    2015-01-25 00:33:27
16344    11634    550    2015-09-23 06:52:36    2015-09-23 06:52:36
16345    15131    623    2014-09-22 15:41:01    2014-09-22 15:41:01
16346    14795    761    2013-11-20 08:17:35    2013-11-20 08:17:35
16347    17254    857    2015-04-27 23:58:52    2015-04-27 23:58:52
16348    10554    627    2014-02-13 03:37:04    2014-02-13 03:37:04
16349    12302    948    2013-09-27 09:20:34    2013-09-27 09:20:34
16350    12808    906    2013-10-09 21:58:11    2013-10-09 21:58:11
16351    16300    463    2013-10-17 14:11:10    2013-10-17 14:11:10
16352    19693    722    2014-06-03 21:55:53    2014-06-03 21:55:53
16353    17624    777    2013-08-21 08:31:09    2013-08-21 08:31:09
16354    14164    602    2014-08-11 08:08:02    2014-08-11 08:08:02
16355    10253    643    2014-03-26 17:12:11    2014-03-26 17:12:11
16356    11603    510    2015-06-22 19:40:05    2015-06-22 19:40:05
16357    13509    831    2015-06-12 10:36:46    2015-06-12 10:36:46
16358    12677    580    2014-04-09 04:24:42    2014-04-09 04:24:42
16359    16691    732    2014-07-08 07:35:43    2014-07-08 07:35:43
16360    13213    789    2014-05-24 23:04:55    2014-05-24 23:04:55
16361    17940    674    2014-05-07 00:48:03    2014-05-07 00:48:03
16362    12602    741    2014-07-19 01:15:18    2014-07-19 01:15:18
16363    16435    571    2014-05-25 06:32:11    2014-05-25 06:32:11
16364    17169    912    2013-05-22 06:50:37    2013-05-22 06:50:37
16365    13496    692    2014-04-14 15:46:14    2014-04-14 15:46:14
16366    11987    809    2015-11-23 18:03:56    2015-11-23 18:03:56
16367    14759    855    2014-06-20 18:26:19    2014-06-20 18:26:19
16368    19184    924    2013-05-09 10:50:14    2013-05-09 10:50:14
16369    18979    786    2014-11-05 21:37:19    2014-11-05 21:37:19
16370    18801    750    2015-12-29 09:10:29    2015-12-29 09:10:29
16371    12293    699    2014-06-03 07:13:48    2014-06-03 07:13:48
16372    17277    947    2014-04-27 04:49:34    2014-04-27 04:49:34
16373    16723    935    2013-11-27 10:41:20    2013-11-27 10:41:20
16374    17308    796    2013-12-04 06:18:39    2013-12-04 06:18:39
16375    16631    549    2013-10-11 11:50:20    2013-10-11 11:50:20
16376    16531    503    2015-10-16 10:19:08    2015-10-16 10:19:08
16377    14581    565    2014-06-28 20:16:19    2014-06-28 20:16:19
16378    11285    735    2014-12-31 20:08:15    2014-12-31 20:08:15
16379    10757    535    2016-03-18 09:48:42    2016-03-18 09:48:42
16380    10288    619    2014-07-24 10:44:45    2014-07-24 10:44:45
16381    11050    738    2016-02-11 01:01:30    2016-02-11 01:01:30
16382    15565    780    2013-09-29 11:14:18    2013-09-29 11:14:18
16383    18229    647    2015-03-02 11:33:57    2015-03-02 11:33:57
16384    11567    509    2014-02-16 11:43:05    2014-02-16 11:43:05
16385    12371    556    2016-04-15 15:28:01    2016-04-15 15:28:01
16386    15122    511    2014-11-12 11:43:30    2014-11-12 11:43:30
16387    11408    954    2014-04-16 19:18:03    2014-04-16 19:18:03
16388    18418    629    2014-01-26 17:23:31    2014-01-26 17:23:31
16389    11194    686    2015-03-14 15:10:20    2015-03-14 15:10:20
16390    11096    931    2013-07-04 23:19:05    2013-07-04 23:19:05
16391    14549    906    2014-07-13 02:09:41    2014-07-13 02:09:41
16392    14742    836    2014-06-27 11:24:11    2014-06-27 11:24:11
16393    19087    670    2015-03-18 18:47:15    2015-03-18 18:47:15
16394    16043    755    2013-08-06 08:12:32    2013-08-06 08:12:32
16395    16937    599    2016-04-14 23:53:35    2016-04-14 23:53:35
16396    11981    795    2014-01-29 02:29:55    2014-01-29 02:29:55
16397    12262    689    2013-11-17 11:23:57    2013-11-17 11:23:57
16398    15275    786    2015-05-14 12:54:14    2015-05-14 12:54:14
16399    14321    808    2016-04-17 14:34:30    2016-04-17 14:34:30
16400    15261    896    2016-02-29 12:22:28    2016-02-29 12:22:28
16401    14028    522    2015-09-13 19:03:50    2015-09-13 19:03:50
16402    14022    875    2016-01-09 11:39:11    2016-01-09 11:39:11
16403    19676    788    2015-10-30 22:02:28    2015-10-30 22:02:28
16404    15081    767    2015-09-12 20:06:17    2015-09-12 20:06:17
16405    10038    482    2015-11-30 19:03:52    2015-11-30 19:03:52
16406    15399    507    2015-10-12 13:11:33    2015-10-12 13:11:33
16407    11169    571    2015-10-01 00:29:34    2015-10-01 00:29:34
16408    14769    698    2015-08-26 23:22:27    2015-08-26 23:22:27
16409    18619    836    2015-12-03 03:22:48    2015-12-03 03:22:48
16410    11780    783    2015-12-03 03:15:31    2015-12-03 03:15:31
16411    12555    687    2015-07-26 01:05:00    2015-07-26 01:05:00
16412    19980    682    2015-08-09 02:56:52    2015-08-09 02:56:52
16413    17347    584    2015-10-07 15:05:18    2015-10-07 15:05:18
16414    15753    767    2016-03-21 19:19:53    2016-03-21 19:19:53
16415    14633    568    2016-02-03 15:05:37    2016-02-03 15:05:37
16416    10744    590    2015-12-20 09:00:24    2015-12-20 09:00:24
16417    14360    696    2016-02-25 11:10:54    2016-02-25 11:10:54
16418    14678    665    2015-10-23 21:50:43    2015-10-23 21:50:43
16419    18140    715    2015-10-01 16:37:48    2015-10-01 16:37:48
16420    19090    583    2015-05-13 09:08:42    2015-05-13 09:08:42
16421    18336    530    2015-10-11 22:21:03    2015-10-11 22:21:03
16422    17245    855    2016-02-06 03:37:38    2016-02-06 03:37:38
16423    11575    717    2016-01-06 07:40:12    2016-01-06 07:40:12
16424    14220    616    2015-04-27 05:57:29    2015-04-27 05:57:29
16425    15051    631    2016-04-14 02:18:25    2016-04-14 02:18:25
16426    12712    784    2016-03-03 21:26:03    2016-03-03 21:26:03
16427    15527    729    2015-11-24 22:03:07    2015-11-24 22:03:07
16428    19447    566    2015-06-07 23:26:24    2015-06-07 23:26:24
16429    16704    793    2015-09-05 16:59:32    2015-09-05 16:59:32
16430    16314    614    2016-03-27 17:03:18    2016-03-27 17:03:18
16431    17706    609    2016-02-11 09:12:45    2016-02-11 09:12:45
16432    15470    506    2016-03-24 12:04:23    2016-03-24 12:04:23
16433    15857    809    2015-06-06 06:57:37    2015-06-06 06:57:37
16434    17261    689    2016-01-31 10:27:19    2016-01-31 10:27:19
16435    14424    695    2015-05-27 12:03:29    2015-05-27 12:03:29
16436    14243    934    2015-12-28 09:29:20    2015-12-28 09:29:20
16437    11083    825    2015-07-26 06:03:05    2015-07-26 06:03:05
16438    17545    860    2016-01-25 11:32:59    2016-01-25 11:32:59
16439    16185    781    2016-04-20 16:20:38    2016-04-20 16:20:38
16440    17818    921    2015-05-16 02:33:28    2015-05-16 02:33:28
16441    19404    782    2015-09-20 18:03:44    2015-09-20 18:03:44
16442    13253    757    2015-08-25 11:37:01    2015-08-25 11:37:01
16443    15348    492    2015-12-31 19:28:04    2015-12-31 19:28:04
16444    12042    836    2015-09-06 12:46:47    2015-09-06 12:46:47
16445    14637    816    2015-11-22 11:29:24    2015-11-22 11:29:24
16446    13056    522    2015-11-23 18:42:36    2015-11-23 18:42:36
16447    14942    774    2015-09-21 20:49:05    2015-09-21 20:49:05
16448    12912    608    2015-04-28 05:50:23    2015-04-28 05:50:23
16449    12864    562    2016-03-18 04:21:50    2016-03-18 04:21:50
16450    19732    582    2016-02-12 05:22:59    2016-02-12 05:22:59
16451    19833    704    2016-03-03 10:17:43    2016-03-03 10:17:43
16452    16217    587    2015-06-21 07:51:19    2015-06-21 07:51:19
16453    14628    911    2016-02-23 11:07:36    2016-02-23 11:07:36
16454    16322    478    2016-04-19 17:51:39    2016-04-19 17:51:39
16455    11689    839    2015-10-19 09:24:49    2015-10-19 09:24:49
16456    10342    483    2015-07-30 21:00:27    2015-07-30 21:00:27
16457    13504    836    2015-08-09 10:07:55    2015-08-09 10:07:55
16458    14705    670    2016-02-08 06:05:15    2016-02-08 06:05:15
16459    18451    576    2016-02-18 03:17:17    2016-02-18 03:17:17
16460    12305    593    2015-09-05 02:33:19    2015-09-05 02:33:19
16461    15708    690    2015-05-04 16:22:08    2015-05-04 16:22:08
16462    10002    482    2015-10-08 02:00:09    2015-10-08 02:00:09
16463    18196    725    2015-07-18 04:17:20    2015-07-18 04:17:20
16464    18961    757    2015-12-29 10:22:24    2015-12-29 10:22:24
16465    10968    840    2015-10-23 04:14:37    2015-10-23 04:14:37
16466    15073    678    2015-08-10 03:40:00    2015-08-10 03:40:00
16467    13504    758    2015-08-04 16:14:32    2015-08-04 16:14:32
16468    19534    693    2015-12-25 02:10:28    2015-12-25 02:10:28
16469    19452    773    2015-08-30 16:06:13    2015-08-30 16:06:13
16470    17269    859    2015-10-21 00:27:58    2015-10-21 00:27:58
16471    11504    914    2015-11-16 06:07:50    2015-11-16 06:07:50
16472    17826    610    2015-07-29 06:43:52    2015-07-29 06:43:52
16473    19042    522    2016-04-02 19:24:02    2016-04-02 19:24:02
16474    18299    761    2015-11-24 12:26:31    2015-11-24 12:26:31
16475    14009    646    2015-12-04 12:38:00    2015-12-04 12:38:00
16476    19239    497    2016-02-07 01:24:24    2016-02-07 01:24:24
16477    18671    577    2016-01-31 15:49:25    2016-01-31 15:49:25
16478    17900    622    2016-02-27 16:15:36    2016-02-27 16:15:36
16479    11972    784    2015-09-03 06:44:45    2015-09-03 06:44:45
16480    18086    852    2015-09-22 07:56:45    2015-09-22 07:56:45
16481    11441    761    2015-09-14 07:21:55    2015-09-14 07:21:55
16482    16942    744    2016-02-11 05:03:55    2016-02-11 05:03:55
16483    15398    913    2015-07-10 20:20:27    2015-07-10 20:20:27
16484    18313    909    2016-04-05 14:10:37    2016-04-05 14:10:37
16485    11278    630    2016-04-01 22:30:55    2016-04-01 22:30:55
16486    11719    680    2015-09-22 06:02:38    2015-09-22 06:02:38
16487    12477    610    2015-09-06 04:50:54    2015-09-06 04:50:54
16488    17257    753    2015-06-13 11:15:36    2015-06-13 11:15:36
16489    11283    958    2015-07-21 03:30:31    2015-07-21 03:30:31
16490    13506    948    2015-09-27 09:03:26    2015-09-27 09:03:26
16491    16339    815    2016-03-25 09:06:40    2016-03-25 09:06:40
16492    19247    761    2015-07-08 23:12:35    2015-07-08 23:12:35
16493    18718    580    2015-09-26 03:19:02    2015-09-26 03:19:02
16494    17455    708    2015-10-16 03:02:21    2015-10-16 03:02:21
16495    16634    533    2015-06-23 20:44:18    2015-06-23 20:44:18
16496    10244    868    2015-10-18 00:50:32    2015-10-18 00:50:32
16497    15376    688    2016-03-19 06:10:52    2016-03-19 06:10:52
16498    17343    852    2015-07-23 09:10:19    2015-07-23 09:10:19
16499    10674    683    2015-09-22 22:47:16    2015-09-22 22:47:16
16500    13233    818    2015-12-25 08:48:05    2015-12-25 08:48:05
16501    10043    546    2015-07-28 04:11:21    2015-07-28 04:11:21
16502    19432    500    2015-09-25 09:49:26    2015-09-25 09:49:26
16503    17582    680    2015-07-18 18:24:16    2015-07-18 18:24:16
16504    13531    808    2015-04-24 02:51:19    2015-04-24 02:51:19
16505    13133    761    2016-04-01 13:12:02    2016-04-01 13:12:02
16506    14504    775    2016-04-04 11:33:51    2016-04-04 11:33:51
16507    11641    938    2015-12-19 04:18:35    2015-12-19 04:18:35
16508    18944    761    2015-07-17 14:13:09    2015-07-17 14:13:09
16509    16079    745    2015-10-04 06:34:26    2015-10-04 06:34:26
16510    16075    721    2015-06-24 15:53:27    2015-06-24 15:53:27
16511    18746    559    2016-01-27 08:02:15    2016-01-27 08:02:15
16512    17408    731    2016-02-19 10:17:43    2016-02-19 10:17:43
16513    18417    899    2015-09-04 09:01:37    2015-09-04 09:01:37
16514    17426    876    2015-08-31 14:54:39    2015-08-31 14:54:39
16515    13465    599    2015-09-22 10:59:41    2015-09-22 10:59:41
16516    10984    651    2015-10-05 23:33:26    2015-10-05 23:33:26
16517    18079    505    2015-08-30 11:55:53    2015-08-30 11:55:53
16518    13438    762    2015-08-22 01:05:23    2015-08-22 01:05:23
16519    16592    562    2016-04-11 10:21:53    2016-04-11 10:21:53
16520    19191    952    2015-07-12 11:09:57    2015-07-12 11:09:57
16521    13444    674    2015-05-27 21:28:36    2015-05-27 21:28:36
16522    16955    700    2016-03-28 22:14:17    2016-03-28 22:14:17
16523    16980    921    2015-07-05 04:55:19    2015-07-05 04:55:19
16524    15864    639    2015-11-13 04:11:51    2015-11-13 04:11:51
16525    13309    537    2015-12-04 01:12:23    2015-12-04 01:12:23
16526    15204    699    2015-11-10 16:02:20    2015-11-10 16:02:20
16527    10451    554    2015-06-14 18:38:31    2015-06-14 18:38:31
16528    14588    944    2015-09-24 03:51:48    2015-09-24 03:51:48
16529    15329    647    2015-06-04 15:13:00    2015-06-04 15:13:00
16530    16604    689    2015-07-10 04:42:10    2015-07-10 04:42:10
16531    17751    483    2015-08-27 05:51:46    2015-08-27 05:51:46
16532    15556    880    2015-07-21 19:57:15    2015-07-21 19:57:15
16533    15588    510    2016-03-16 10:37:28    2016-03-16 10:37:28
16534    13353    536    2016-01-24 20:03:53    2016-01-24 20:03:53
16535    14688    488    2015-05-03 00:12:22    2015-05-03 00:12:22
16536    16997    845    2015-06-01 19:44:13    2015-06-01 19:44:13
16537    13623    552    2015-11-16 19:10:35    2015-11-16 19:10:35
16538    11791    528    2016-02-29 23:54:41    2016-02-29 23:54:41
16539    13972    814    2016-02-05 08:42:29    2016-02-05 08:42:29
16540    19935    885    2015-08-20 14:30:22    2015-08-20 14:30:22
16541    10871    870    2015-11-04 16:49:16    2015-11-04 16:49:16
16542    13487    662    2015-11-26 10:07:15    2015-11-26 10:07:15
16543    19871    502    2015-12-22 01:47:35    2015-12-22 01:47:35
16544    11986    803    2015-11-28 15:34:29    2015-11-28 15:34:29
16545    17509    539    2016-03-27 12:27:57    2016-03-27 12:27:57
16546    15060    840    2015-09-04 22:34:47    2015-09-04 22:34:47
16547    10436    844    2016-04-02 17:14:38    2016-04-02 17:14:38
16548    16490    697    2016-04-19 03:16:52    2016-04-19 03:16:52
16549    18260    683    2015-08-23 13:40:00    2015-08-23 13:40:00
16550    11267    763    2016-03-28 14:30:44    2016-03-28 14:30:44
16551    12798    682    2015-12-01 19:18:57    2015-12-01 19:18:57
16552    15035    849    2015-08-29 16:38:43    2015-08-29 16:38:43
16553    14757    910    2015-05-21 20:44:04    2015-05-21 20:44:04
16554    11935    809    2015-06-02 14:25:29    2015-06-02 14:25:29
16555    12571    490    2016-01-12 23:34:50    2016-01-12 23:34:50
16556    12883    621    2015-10-30 03:54:51    2015-10-30 03:54:51
16557    17411    592    2015-04-27 19:19:54    2015-04-27 19:19:54
16558    15442    892    2015-11-11 06:23:28    2015-11-11 06:23:28
16559    11729    626    2015-09-13 13:28:02    2015-09-13 13:28:02
16560    12541    464    2016-03-24 18:51:02    2016-03-24 18:51:02
16561    15493    482    2015-06-18 18:42:42    2015-06-18 18:42:42
16562    10220    838    2015-06-30 23:25:37    2015-06-30 23:25:37
16563    16932    472    2015-07-06 06:29:21    2015-07-06 06:29:21
16564    17573    576    2015-09-26 01:07:59    2015-09-26 01:07:59
16565    17830    495    2015-12-16 05:39:58    2015-12-16 05:39:58
16566    17589    846    2015-10-07 04:50:53    2015-10-07 04:50:53
16567    12496    670    2015-12-07 15:35:22    2015-12-07 15:35:22
16568    17805    943    2016-01-28 02:27:05    2016-01-28 02:27:05
16569    12353    532    2015-06-29 01:47:59    2015-06-29 01:47:59
16570    17258    641    2015-06-11 00:36:45    2015-06-11 00:36:45
16571    19922    507    2015-12-30 06:41:15    2015-12-30 06:41:15
16572    10421    654    2015-10-31 07:46:00    2015-10-31 07:46:00
16573    11786    938    2015-06-30 23:54:12    2015-06-30 23:54:12
16574    12634    677    2015-08-10 18:15:58    2015-08-10 18:15:58
16575    16020    687    2015-11-18 10:57:34    2015-11-18 10:57:34
16576    12210    682    2015-12-07 12:58:52    2015-12-07 12:58:52
16577    14453    463    2016-03-15 21:23:03    2016-03-15 21:23:03
16578    18417    852    2015-04-29 09:28:24    2015-04-29 09:28:24
16579    13938    500    2015-09-11 23:47:35    2015-09-11 23:47:35
16580    18129    852    2015-08-17 20:20:26    2015-08-17 20:20:26
16581    12870    587    2015-06-09 14:48:58    2015-06-09 14:48:58
16582    19952    679    2016-02-28 20:48:12    2016-02-28 20:48:12
16583    17367    858    2015-05-22 03:42:29    2015-05-22 03:42:29
16584    19825    717    2015-05-25 22:09:15    2015-05-25 22:09:15
16585    16134    499    2015-12-30 14:50:00    2015-12-30 14:50:00
16586    15500    463    2015-12-07 21:13:05    2015-12-07 21:13:05
16587    16638    665    2015-06-04 18:25:10    2015-06-04 18:25:10
16588    15175    500    2016-02-07 01:13:24    2016-02-07 01:13:24
16589    17906    655    2016-02-29 20:26:32    2016-02-29 20:26:32
16590    11099    921    2015-06-30 18:08:14    2015-06-30 18:08:14
16591    10853    835    2015-11-12 04:27:00    2015-11-12 04:27:00
16592    19968    666    2015-10-16 09:53:42    2015-10-16 09:53:42
16593    14339    754    2016-03-09 18:52:12    2016-03-09 18:52:12
16594    15426    605    2015-09-04 03:59:57    2015-09-04 03:59:57
16595    14339    553    2016-04-10 05:16:02    2016-04-10 05:16:02
16596    12064    606    2015-07-04 17:51:51    2015-07-04 17:51:51
16597    13428    745    2015-08-09 14:24:48    2015-08-09 14:24:48
16598    15440    646    2015-12-16 10:58:14    2015-12-16 10:58:14
16599    17494    708    2015-09-22 12:15:42    2015-09-22 12:15:42
16600    17067    686    2015-06-13 01:11:13    2015-06-13 01:11:13
16601    14944    819    2016-01-07 19:09:38    2016-01-07 19:09:38
16602    17293    602    2015-11-29 01:47:34    2015-11-29 01:47:34
16603    15916    680    2015-07-02 08:42:27    2015-07-02 08:42:27
16604    11705    707    2015-05-14 01:30:12    2015-05-14 01:30:12
16605    18666    608    2016-03-21 15:08:38    2016-03-21 15:08:38
16606    18520    664    2016-01-31 19:39:50    2016-01-31 19:39:50
16607    14174    819    2015-06-02 20:23:54    2015-06-02 20:23:54
16608    15112    646    2016-04-04 21:50:25    2016-04-04 21:50:25
16609    15892    730    2016-04-09 09:27:02    2016-04-09 09:27:02
16610    15215    934    2015-11-10 17:20:26    2015-11-10 17:20:26
16611    19714    542    2015-05-16 08:35:20    2015-05-16 08:35:20
16612    11302    861    2015-05-24 11:56:46    2015-05-24 11:56:46
16613    14143    465    2015-07-26 00:35:22    2015-07-26 00:35:22
16614    12004    682    2015-10-11 18:01:30    2015-10-11 18:01:30
16615    16182    775    2015-12-18 17:15:28    2015-12-18 17:15:28
16616    18937    766    2016-02-03 16:35:33    2016-02-03 16:35:33
16617    18261    529    2016-01-29 11:39:32    2016-01-29 11:39:32
16618    14834    771    2015-12-14 07:35:01    2015-12-14 07:35:01
16619    15144    731    2015-11-09 06:19:52    2015-11-09 06:19:52
16620    13461    491    2016-01-20 02:32:06    2016-01-20 02:32:06
16621    14420    675    2015-11-10 15:55:57    2015-11-10 15:55:57
16622    19374    625    2016-04-01 23:46:51    2016-04-01 23:46:51
16623    19569    608    2015-06-11 11:53:06    2015-06-11 11:53:06
16624    13478    840    2015-05-14 21:30:18    2015-05-14 21:30:18
16625    12486    608    2016-03-19 14:19:19    2016-03-19 14:19:19
16626    19775    530    2015-07-26 21:58:11    2015-07-26 21:58:11
16627    13332    592    2015-07-06 15:31:11    2015-07-06 15:31:11
16628    16413    932    2016-03-06 16:08:39    2016-03-06 16:08:39
16629    18117    546    2015-08-05 17:18:06    2015-08-05 17:18:06
16630    10992    855    2015-10-07 21:35:36    2015-10-07 21:35:36
16631    17294    714    2015-07-16 23:58:04    2015-07-16 23:58:04
16632    13201    513    2015-12-21 16:52:57    2015-12-21 16:52:57
16633    11882    635    2016-01-06 03:06:56    2016-01-06 03:06:56
16634    12903    542    2015-09-23 23:26:10    2015-09-23 23:26:10
16635    14922    546    2015-07-13 17:32:54    2015-07-13 17:32:54
16636    10254    867    2015-06-06 20:34:08    2015-06-06 20:34:08
16637    13681    841    2015-05-27 12:00:44    2015-05-27 12:00:44
16638    12949    601    2015-04-26 18:17:21    2015-04-26 18:17:21
16639    11203    820    2015-08-06 02:32:53    2015-08-06 02:32:53
16640    10237    550    2015-05-10 17:55:33    2015-05-10 17:55:33
16641    11851    719    2015-06-05 21:41:00    2015-06-05 21:41:00
16642    15754    554    2015-07-18 01:03:16    2015-07-18 01:03:16
16643    14068    725    2015-05-09 02:37:35    2015-05-09 02:37:35
16644    12550    882    2015-11-12 08:45:08    2015-11-12 08:45:08
16645    19561    775    2015-07-31 14:08:32    2015-07-31 14:08:32
16646    13267    864    2016-01-30 08:13:41    2016-01-30 08:13:41
16647    15291    621    2016-04-08 21:55:38    2016-04-08 21:55:38
16648    17344    879    2015-05-19 00:06:26    2015-05-19 00:06:26
16649    12210    640    2015-07-29 16:18:25    2015-07-29 16:18:25
16650    14770    899    2016-03-16 12:16:07    2016-03-16 12:16:07
16651    11659    800    2016-01-02 16:00:18    2016-01-02 16:00:18
16652    18483    743    2015-10-14 10:48:21    2015-10-14 10:48:21
16653    13884    665    2016-02-06 09:05:45    2016-02-06 09:05:45
16654    15394    699    2015-08-15 05:25:32    2015-08-15 05:25:32
16655    16208    463    2015-07-30 21:32:20    2015-07-30 21:32:20
16656    13913    542    2016-02-08 07:30:06    2016-02-08 07:30:06
16657    18406    846    2015-12-13 13:20:04    2015-12-13 13:20:04
16658    12370    954    2016-01-04 01:25:39    2016-01-04 01:25:39
16659    11953    684    2015-12-31 02:51:46    2015-12-31 02:51:46
16660    17801    684    2016-03-09 00:37:29    2016-03-09 00:37:29
16661    13997    764    2015-07-09 02:23:30    2015-07-09 02:23:30
16662    13326    776    2016-02-21 03:08:52    2016-02-21 03:08:52
16663    18253    546    2015-05-05 10:17:54    2015-05-05 10:17:54
16664    12724    596    2015-08-25 13:52:46    2015-08-25 13:52:46
16665    17204    859    2015-12-22 04:08:20    2015-12-22 04:08:20
16666    17323    799    2015-06-13 19:36:08    2015-06-13 19:36:08
16667    14374    506    2015-12-17 21:55:38    2015-12-17 21:55:38
16668    12381    724    2015-07-03 22:22:00    2015-07-03 22:22:00
16669    19916    780    2015-11-17 11:40:51    2015-11-17 11:40:51
16670    16894    654    2015-09-11 06:18:43    2015-09-11 06:18:43
16671    12011    929    2015-08-11 14:27:33    2015-08-11 14:27:33
16672    13316    812    2016-04-17 20:29:32    2016-04-17 20:29:32
16673    16970    521    2015-10-07 09:17:29    2015-10-07 09:17:29
16674    13372    868    2015-09-12 08:01:53    2015-09-12 08:01:53
16675    10175    655    2016-03-15 17:28:54    2016-03-15 17:28:54
16676    10728    844    2015-09-15 11:31:40    2015-09-15 11:31:40
16677    14444    956    2015-04-25 09:43:50    2015-04-25 09:43:50
16678    13275    509    2015-06-01 04:23:53    2015-06-01 04:23:53
16679    11460    688    2016-03-31 17:00:39    2016-03-31 17:00:39
16680    11637    879    2015-06-28 18:03:05    2015-06-28 18:03:05
16681    10350    903    2015-06-04 00:28:59    2015-06-04 00:28:59
16682    19993    637    2016-03-28 13:57:05    2016-03-28 13:57:05
16683    13617    759    2015-08-18 11:49:34    2015-08-18 11:49:34
16684    12259    932    2015-07-20 18:44:15    2015-07-20 18:44:15
16685    13358    850    2015-10-02 07:59:02    2015-10-02 07:59:02
16686    16463    915    2015-08-26 22:44:06    2015-08-26 22:44:06
16687    19372    731    2015-04-28 02:28:25    2015-04-28 02:28:25
16688    18242    824    2016-02-29 11:17:05    2016-02-29 11:17:05
16689    13221    779    2016-04-18 19:03:14    2016-04-18 19:03:14
16690    10416    749    2016-01-06 12:57:33    2016-01-06 12:57:33
16691    14654    709    2016-03-26 04:49:45    2016-03-26 04:49:45
16692    11527    554    2015-04-30 15:26:07    2015-04-30 15:26:07
16693    18179    711    2015-09-09 23:23:16    2015-09-09 23:23:16
16694    11920    869    2016-02-21 10:08:43    2016-02-21 10:08:43
16695    16406    518    2015-07-13 20:11:22    2015-07-13 20:11:22
16696    18268    526    2015-12-25 07:51:09    2015-12-25 07:51:09
16697    19581    668    2015-09-17 04:17:36    2015-09-17 04:17:36
16698    11989    670    2016-02-16 04:00:42    2016-02-16 04:00:42
16699    16476    688    2015-10-01 10:39:13    2015-10-01 10:39:13
16700    14127    776    2015-09-04 15:54:30    2015-09-04 15:54:30
16701    14906    530    2015-05-18 09:01:46    2015-05-18 09:01:46
16702    15649    522    2015-09-04 00:02:58    2015-09-04 00:02:58
16703    15806    628    2016-01-19 12:11:00    2016-01-19 12:11:00
16704    14794    791    2015-12-01 08:55:37    2015-12-01 08:55:37
16705    19488    542    2016-03-26 09:16:26    2016-03-26 09:16:26
16706    10887    524    2016-01-25 18:58:52    2016-01-25 18:58:52
16707    16042    630    2015-11-14 03:49:58    2015-11-14 03:49:58
16708    17249    685    2015-09-12 03:18:35    2015-09-12 03:18:35
16709    12704    839    2015-06-06 20:56:27    2015-06-06 20:56:27
16710    18246    951    2016-01-20 06:42:25    2016-01-20 06:42:25
16711    12354    890    2015-07-29 21:59:46    2015-07-29 21:59:46
16712    18790    530    2015-07-27 10:48:53    2015-07-27 10:48:53
16713    17484    487    2016-01-30 08:47:15    2016-01-30 08:47:15
16714    14561    922    2015-08-28 11:00:20    2015-08-28 11:00:20
16715    18306    470    2015-09-16 10:50:20    2015-09-16 10:50:20
16716    19198    594    2016-02-29 16:40:08    2016-02-29 16:40:08
16717    18415    895    2016-01-27 22:32:37    2016-01-27 22:32:37
16718    15329    514    2015-05-03 19:05:47    2015-05-03 19:05:47
16719    14162    542    2015-11-09 16:11:16    2015-11-09 16:11:16
16720    14536    918    2015-08-30 05:41:44    2015-08-30 05:41:44
16721    10296    933    2015-08-31 18:39:42    2015-08-31 18:39:42
16722    17538    914    2016-03-11 16:53:25    2016-03-11 16:53:25
16723    19458    876    2015-09-05 16:35:08    2015-09-05 16:35:08
16724    15935    758    2016-02-05 16:11:06    2016-02-05 16:11:06
16725    19460    542    2015-06-16 01:54:20    2015-06-16 01:54:20
16726    17131    858    2016-02-02 06:10:11    2016-02-02 06:10:11
16727    15563    779    2015-12-26 18:01:08    2015-12-26 18:01:08
16728    14268    551    2015-06-07 07:11:26    2015-06-07 07:11:26
16729    15054    819    2016-04-07 08:25:02    2016-04-07 08:25:02
16730    13798    484    2015-05-18 12:03:49    2015-05-18 12:03:49
16731    12941    518    2016-03-14 07:14:48    2016-03-14 07:14:48
16732    19775    667    2016-03-24 03:31:49    2016-03-24 03:31:49
16733    18118    783    2015-10-21 11:57:42    2015-10-21 11:57:42
16734    18880    637    2016-03-03 04:07:53    2016-03-03 04:07:53
16735    13717    757    2015-06-28 05:41:14    2015-06-28 05:41:14
16736    16633    798    2015-08-19 05:35:26    2015-08-19 05:35:26
16737    12530    640    2015-11-27 15:44:48    2015-11-27 15:44:48
16738    16530    690    2015-12-26 22:11:00    2015-12-26 22:11:00
16739    15464    498    2015-10-10 13:06:52    2015-10-10 13:06:52
16740    19003    506    2015-07-08 18:31:10    2015-07-08 18:31:10
16741    15819    659    2015-12-05 21:52:21    2015-12-05 21:52:21
16742    17079    818    2015-07-26 08:03:49    2015-07-26 08:03:49
16743    14346    644    2015-11-02 02:08:27    2015-11-02 02:08:27
16744    12065    491    2015-12-18 11:47:27    2015-12-18 11:47:27
16745    13120    759    2015-10-21 02:11:54    2015-10-21 02:11:54
16746    12736    938    2015-12-16 21:31:56    2015-12-16 21:31:56
16747    10174    932    2016-03-10 09:13:11    2016-03-10 09:13:11
16748    11120    587    2015-08-31 11:20:06    2015-08-31 11:20:06
16749    14793    479    2015-10-25 20:53:11    2015-10-25 20:53:11
16750    11286    543    2015-11-30 09:39:34    2015-11-30 09:39:34
16751    15426    562    2015-08-29 11:08:32    2015-08-29 11:08:32
16752    15209    522    2015-12-07 08:59:45    2015-12-07 08:59:45
16753    19595    959    2015-11-14 21:48:56    2015-11-14 21:48:56
16754    19037    596    2015-08-19 11:52:44    2015-08-19 11:52:44
16755    17848    609    2015-08-18 10:30:38    2015-08-18 10:30:38
16756    13350    886    2015-09-29 10:38:29    2015-09-29 10:38:29
16757    11085    886    2015-08-23 04:35:00    2015-08-23 04:35:00
16758    15805    563    2015-09-20 00:19:25    2015-09-20 00:19:25
16759    13699    756    2016-03-01 20:20:07    2016-03-01 20:20:07
16760    17369    635    2015-04-25 20:49:48    2015-04-25 20:49:48
16761    17339    607    2015-07-12 17:10:51    2015-07-12 17:10:51
16762    17807    572    2015-08-04 14:24:24    2015-08-04 14:24:24
16763    11838    872    2015-12-22 13:33:44    2015-12-22 13:33:44
16764    10732    945    2016-02-19 05:43:27    2016-02-19 05:43:27
16765    15688    942    2015-07-13 17:59:24    2015-07-13 17:59:24
16766    12685    876    2016-03-12 21:53:28    2016-03-12 21:53:28
16767    15678    922    2016-01-21 21:20:40    2016-01-21 21:20:40
16768    12051    935    2015-07-14 00:23:29    2015-07-14 00:23:29
16769    11719    753    2015-08-18 04:12:06    2015-08-18 04:12:06
16770    10513    683    2015-11-26 17:07:12    2015-11-26 17:07:12
16771    11105    799    2016-01-23 19:19:57    2016-01-23 19:19:57
16772    11564    811    2015-05-01 08:40:05    2015-05-01 08:40:05
16773    16795    598    2016-03-26 00:24:36    2016-03-26 00:24:36
16774    10145    570    2016-02-13 10:33:17    2016-02-13 10:33:17
16775    13673    656    2015-08-07 16:03:31    2015-08-07 16:03:31
16776    13797    847    2015-06-29 02:55:09    2015-06-29 02:55:09
16777    12629    794    2015-10-20 03:38:30    2015-10-20 03:38:30
16778    13463    800    2016-04-04 02:01:51    2016-04-04 02:01:51
16779    17203    651    2015-09-06 04:32:45    2015-09-06 04:32:45
16780    10974    942    2015-10-10 13:53:12    2015-10-10 13:53:12
16781    16786    796    2015-12-16 23:07:16    2015-12-16 23:07:16
16782    15206    916    2015-10-04 18:06:49    2015-10-04 18:06:49
16783    14506    938    2015-09-22 13:29:06    2015-09-22 13:29:06
16784    19754    538    2015-06-29 15:32:03    2015-06-29 15:32:03
16785    15582    619    2015-10-21 08:30:55    2015-10-21 08:30:55
16786    16623    540    2016-02-05 22:22:51    2016-02-05 22:22:51
16787    15575    863    2015-12-28 20:59:25    2015-12-28 20:59:25
16788    17278    912    2015-10-26 08:05:33    2015-10-26 08:05:33
16789    10628    517    2015-06-01 22:05:32    2015-06-01 22:05:32
16790    12609    482    2015-10-18 16:18:02    2015-10-18 16:18:02
16791    12057    872    2015-04-27 14:05:16    2015-04-27 14:05:16
16792    11547    748    2015-06-29 07:17:00    2015-06-29 07:17:00
16793    10061    570    2015-11-18 15:47:14    2015-11-18 15:47:14
16794    19180    850    2015-09-23 02:23:03    2015-09-23 02:23:03
16795    10567    637    2015-12-10 17:55:29    2015-12-10 17:55:29
16796    14587    711    2016-01-31 16:51:29    2016-01-31 16:51:29
16797    19802    779    2015-08-12 03:48:35    2015-08-12 03:48:35
16798    18700    653    2015-11-03 10:51:18    2015-11-03 10:51:18
16799    17388    757    2015-07-14 15:01:06    2015-07-14 15:01:06
16800    14799    691    2016-02-14 21:44:01    2016-02-14 21:44:01
16801    11079    477    2016-04-06 04:02:39    2016-04-06 04:02:39
16802    16980    463    2016-03-28 07:44:12    2016-03-28 07:44:12
16803    16016    832    2015-05-03 19:35:43    2015-05-03 19:35:43
16804    13947    763    2016-02-27 10:38:25    2016-02-27 10:38:25
16805    18785    781    2015-07-22 17:22:06    2015-07-22 17:22:06
16806    17500    464    2016-03-10 23:20:32    2016-03-10 23:20:32
16807    16080    777    2016-02-22 15:10:17    2016-02-22 15:10:17
16808    19492    642    2015-05-23 05:53:57    2015-05-23 05:53:57
16809    12283    479    2015-05-17 16:23:30    2015-05-17 16:23:30
16810    11052    772    2015-09-16 00:43:57    2015-09-16 00:43:57
16811    17410    696    2015-05-09 21:33:22    2015-05-09 21:33:22
16812    12611    579    2015-09-29 12:11:14    2015-09-29 12:11:14
16813    14241    852    2016-03-06 22:45:16    2016-03-06 22:45:16
16814    16892    659    2015-12-11 09:42:15    2015-12-11 09:42:15
16815    19299    713    2015-11-29 19:12:00    2015-11-29 19:12:00
16816    18377    932    2015-08-06 05:43:02    2015-08-06 05:43:02
16817    11022    522    2015-09-14 12:31:09    2015-09-14 12:31:09
16818    16226    864    2015-04-30 21:25:27    2015-04-30 21:25:27
16819    18144    820    2015-06-15 21:12:24    2015-06-15 21:12:24
16820    16887    719    2015-08-13 03:37:49    2015-08-13 03:37:49
16821    15896    851    2015-12-11 03:12:22    2015-12-11 03:12:22
16822    16385    533    2015-06-18 14:34:40    2015-06-18 14:34:40
16823    19717    750    2015-11-05 15:02:00    2015-11-05 15:02:00
16824    13161    643    2015-09-18 07:18:36    2015-09-18 07:18:36
16825    15089    495    2015-10-15 12:32:25    2015-10-15 12:32:25
16826    13022    906    2015-09-22 02:02:52    2015-09-22 02:02:52
16827    10503    689    2015-09-30 17:25:15    2015-09-30 17:25:15
16828    11575    894    2016-04-14 00:40:50    2016-04-14 00:40:50
16829    12157    895    2016-01-24 05:04:07    2016-01-24 05:04:07
16830    16884    846    2016-04-01 18:05:15    2016-04-01 18:05:15
16831    16046    817    2015-05-12 06:08:24    2015-05-12 06:08:24
16832    11890    704    2015-10-29 21:28:03    2015-10-29 21:28:03
16833    17353    687    2015-10-01 23:11:17    2015-10-01 23:11:17
16834    14630    467    2015-08-23 22:00:33    2015-08-23 22:00:33
16835    17307    506    2015-07-24 22:08:45    2015-07-24 22:08:45
16836    16087    561    2015-06-05 09:25:31    2015-06-05 09:25:31
16837    14425    722    2015-05-25 23:05:31    2015-05-25 23:05:31
16838    18846    835    2015-05-10 05:39:22    2015-05-10 05:39:22
16839    12561    787    2016-01-31 21:11:21    2016-01-31 21:11:21
16840    17390    611    2015-10-23 22:06:12    2015-10-23 22:06:12
16841    13303    743    2016-03-22 03:23:41    2016-03-22 03:23:41
16842    18758    759    2016-01-20 11:17:15    2016-01-20 11:17:15
16843    13029    887    2015-05-07 11:54:21    2015-05-07 11:54:21
16844    12116    760    2015-09-15 06:32:26    2015-09-15 06:32:26
16845    15833    949    2015-08-20 19:45:42    2015-08-20 19:45:42
16846    16465    499    2015-11-20 00:15:05    2015-11-20 00:15:05
16847    10699    639    2015-12-14 16:42:45    2015-12-14 16:42:45
16848    18693    949    2015-09-09 00:05:20    2015-09-09 00:05:20
16849    16274    554    2016-03-02 18:31:32    2016-03-02 18:31:32
16850    12602    727    2015-10-19 18:07:31    2015-10-19 18:07:31
16851    12628    554    2016-01-08 21:12:05    2016-01-08 21:12:05
16852    15924    504    2015-10-03 22:52:25    2015-10-03 22:52:25
16853    13428    656    2015-07-30 02:51:05    2015-07-30 02:51:05
16854    10354    758    2015-10-10 15:59:15    2015-10-10 15:59:15
16855    16017    710    2016-03-24 00:41:29    2016-03-24 00:41:29
16856    13102    467    2015-07-29 13:45:59    2015-07-29 13:45:59
16857    13365    679    2015-06-29 10:01:34    2015-06-29 10:01:34
16858    17016    948    2015-05-29 06:41:58    2015-05-29 06:41:58
16859    16305    933    2016-04-01 00:05:47    2016-04-01 00:05:47
16860    12104    935    2016-03-24 16:08:26    2016-03-24 16:08:26
16861    19433    813    2015-05-25 00:23:21    2015-05-25 00:23:21
16862    17602    575    2015-06-03 00:57:36    2015-06-03 00:57:36
16863    13874    478    2016-04-04 21:30:31    2016-04-04 21:30:31
16864    10588    930    2015-11-09 21:03:50    2015-11-09 21:03:50
16865    19066    933    2016-01-27 19:23:44    2016-01-27 19:23:44
16866    17269    828    2015-07-26 21:08:05    2015-07-26 21:08:05
16867    11641    789    2016-03-28 12:09:45    2016-03-28 12:09:45
16868    15208    757    2015-12-01 01:32:24    2015-12-01 01:32:24
16869    14543    739    2015-06-27 23:07:35    2015-06-27 23:07:35
16870    19091    927    2015-12-12 08:21:10    2015-12-12 08:21:10
16871    11197    471    2015-07-02 13:00:00    2015-07-02 13:00:00
16872    15707    610    2015-10-01 14:35:35    2015-10-01 14:35:35
16873    13286    483    2016-03-18 10:11:02    2016-03-18 10:11:02
16874    11828    938    2016-03-20 07:25:22    2016-03-20 07:25:22
16875    11918    877    2015-06-10 08:37:41    2015-06-10 08:37:41
16876    11638    621    2015-12-30 11:07:15    2015-12-30 11:07:15
16877    15943    519    2016-02-04 18:01:01    2016-02-04 18:01:01
16878    18410    647    2015-04-29 11:34:55    2015-04-29 11:34:55
16879    11480    520    2015-09-03 02:17:47    2015-09-03 02:17:47
16880    12766    567    2016-03-28 20:37:30    2016-03-28 20:37:30
16881    19193    850    2015-07-06 15:40:33    2015-07-06 15:40:33
16882    19874    688    2015-06-27 02:58:07    2015-06-27 02:58:07
16883    12999    872    2016-01-15 23:46:15    2016-01-15 23:46:15
16884    10033    641    2016-04-20 18:12:42    2016-04-20 18:12:42
16885    13143    529    2015-10-21 18:17:38    2015-10-21 18:17:38
16886    19107    854    2015-05-26 17:41:53    2015-05-26 17:41:53
16887    14673    544    2015-12-05 10:51:31    2015-12-05 10:51:31
16888    11743    629    2015-06-07 09:15:03    2015-06-07 09:15:03
16889    12256    663    2015-11-13 11:56:43    2015-11-13 11:56:43
16890    19583    614    2015-10-27 10:55:58    2015-10-27 10:55:58
16891    16871    662    2015-06-11 01:28:48    2015-06-11 01:28:48
16892    16730    468    2015-11-30 11:14:11    2015-11-30 11:14:11
16893    17446    526    2016-03-12 07:28:02    2016-03-12 07:28:02
16894    10314    507    2015-07-22 13:49:31    2015-07-22 13:49:31
16895    11845    502    2015-06-23 03:02:12    2015-06-23 03:02:12
16896    19711    869    2015-04-25 20:55:50    2015-04-25 20:55:50
16897    10398    919    2015-05-28 21:08:46    2015-05-28 21:08:46
16898    17376    692    2016-03-10 06:45:22    2016-03-10 06:45:22
16899    14105    864    2015-11-16 09:51:19    2015-11-16 09:51:19
16900    16991    718    2015-08-28 21:05:34    2015-08-28 21:05:34
16901    19393    645    2015-07-21 22:55:31    2015-07-21 22:55:31
16902    10403    868    2015-04-26 00:36:58    2015-04-26 00:36:58
16903    15745    889    2016-01-22 23:42:09    2016-01-22 23:42:09
16904    18328    648    2015-07-08 04:49:15    2015-07-08 04:49:15
16905    17581    752    2015-09-20 01:50:08    2015-09-20 01:50:08
16906    19337    888    2015-10-13 04:17:09    2015-10-13 04:17:09
16907    15411    508    2015-12-24 07:14:29    2015-12-24 07:14:29
16908    10749    587    2016-01-02 15:21:47    2016-01-02 15:21:47
16909    14946    684    2015-07-17 18:27:20    2015-07-17 18:27:20
16910    16800    565    2016-02-16 14:50:55    2016-02-16 14:50:55
16911    15561    469    2015-06-06 17:50:20    2015-06-06 17:50:20
16912    11052    827    2015-10-01 15:52:11    2015-10-01 15:52:11
16913    12218    913    2016-01-19 13:33:34    2016-01-19 13:33:34
16914    11601    822    2016-03-02 18:02:03    2016-03-02 18:02:03
16915    12464    879    2015-11-09 20:02:23    2015-11-09 20:02:23
16916    13209    700    2016-04-17 08:59:54    2016-04-17 08:59:54
16917    10680    635    2015-06-13 01:02:33    2015-06-13 01:02:33
16918    12887    868    2015-06-11 09:34:06    2015-06-11 09:34:06
16919    10876    526    2016-02-05 02:36:54    2016-02-05 02:36:54
16920    16536    713    2016-02-16 11:51:00    2016-02-16 11:51:00
16921    13874    777    2015-12-15 08:44:53    2015-12-15 08:44:53
16922    17605    487    2016-03-16 02:32:59    2016-03-16 02:32:59
16923    14814    470    2016-03-26 00:31:18    2016-03-26 00:31:18
16924    14252    489    2015-06-17 11:08:24    2015-06-17 11:08:24
16925    14022    778    2015-08-07 00:18:10    2015-08-07 00:18:10
16926    13517    546    2016-03-29 00:02:00    2016-03-29 00:02:00
16927    19491    747    2015-05-26 15:33:31    2015-05-26 15:33:31
16928    14461    687    2015-10-26 21:01:51    2015-10-26 21:01:51
16929    12197    837    2015-05-20 18:12:19    2015-05-20 18:12:19
16930    16860    841    2015-08-21 23:31:10    2015-08-21 23:31:10
16931    19292    726    2016-01-14 07:14:23    2016-01-14 07:14:23
16932    13780    536    2015-09-19 01:05:27    2015-09-19 01:05:27
16933    19123    587    2015-10-12 17:56:37    2015-10-12 17:56:37
16934    11926    695    2015-06-02 19:36:55    2015-06-02 19:36:55
16935    10798    814    2015-08-10 14:55:52    2015-08-10 14:55:52
16936    17565    772    2015-09-07 09:09:43    2015-09-07 09:09:43
16937    14278    832    2016-01-10 23:23:12    2016-01-10 23:23:12
16938    17376    477    2015-05-06 06:52:25    2015-05-06 06:52:25
16939    10463    506    2015-10-18 04:46:00    2015-10-18 04:46:00
16940    11950    606    2015-06-01 07:46:18    2015-06-01 07:46:18
16941    14974    473    2015-09-24 20:43:30    2015-09-24 20:43:30
16942    13554    610    2015-08-04 21:32:46    2015-08-04 21:32:46
16943    12659    673    2016-02-20 07:18:57    2016-02-20 07:18:57
16944    14947    792    2016-02-24 17:30:34    2016-02-24 17:30:34
16945    11211    834    2016-02-02 12:50:02    2016-02-02 12:50:02
16946    12016    883    2016-04-13 22:05:34    2016-04-13 22:05:34
16947    11702    676    2016-01-24 16:50:20    2016-01-24 16:50:20
16948    18275    637    2015-07-13 07:56:46    2015-07-13 07:56:46
16949    18248    674    2015-10-02 02:10:49    2015-10-02 02:10:49
16950    13292    770    2015-10-01 01:56:51    2015-10-01 01:56:51
16951    12228    757    2015-06-22 05:10:11    2015-06-22 05:10:11
16952    18878    726    2015-11-22 14:33:00    2015-11-22 14:33:00
16953    16425    918    2015-07-04 05:08:26    2015-07-04 05:08:26
16954    16931    722    2015-12-07 07:58:44    2015-12-07 07:58:44
16955    16314    862    2015-08-07 23:53:08    2015-08-07 23:53:08
16956    15349    785    2016-02-08 03:38:58    2016-02-08 03:38:58
16957    16396    950    2016-04-02 00:06:44    2016-04-02 00:06:44
16958    13816    648    2016-02-12 03:18:31    2016-02-12 03:18:31
16959    13506    553    2016-04-07 15:11:38    2016-04-07 15:11:38
16960    17036    727    2016-01-24 07:01:39    2016-01-24 07:01:39
16961    18294    718    2015-08-27 23:23:37    2015-08-27 23:23:37
16962    13129    637    2016-02-02 12:24:44    2016-02-02 12:24:44
16963    10793    803    2015-11-04 14:50:12    2015-11-04 14:50:12
16964    14757    806    2015-05-10 11:58:23    2015-05-10 11:58:23
16965    18006    706    2015-06-04 20:42:49    2015-06-04 20:42:49
16966    10823    589    2015-05-09 16:54:37    2015-05-09 16:54:37
16967    15989    578    2015-09-08 07:10:16    2015-09-08 07:10:16
16968    11703    774    2016-03-25 03:32:31    2016-03-25 03:32:31
16969    15985    498    2015-07-27 00:12:44    2015-07-27 00:12:44
16970    18119    780    2015-05-22 01:18:15    2015-05-22 01:18:15
16971    19056    803    2015-06-19 02:54:57    2015-06-19 02:54:57
16972    17798    902    2016-03-17 14:29:28    2016-03-17 14:29:28
16973    17198    609    2016-01-05 11:08:09    2016-01-05 11:08:09
16974    16739    641    2016-01-12 01:17:29    2016-01-12 01:17:29
16975    13127    722    2015-07-17 02:58:05    2015-07-17 02:58:05
16976    19971    828    2015-11-21 18:51:13    2015-11-21 18:51:13
16977    10426    747    2015-10-23 23:20:47    2015-10-23 23:20:47
16978    12854    756    2015-09-07 16:17:44    2015-09-07 16:17:44
16979    13674    688    2016-03-16 07:32:28    2016-03-16 07:32:28
16980    15896    846    2015-12-22 19:31:03    2015-12-22 19:31:03
16981    10381    585    2016-02-05 20:46:14    2016-02-05 20:46:14
16982    14165    685    2015-09-21 20:22:47    2015-09-21 20:22:47
16983    16205    796    2015-08-26 12:19:23    2015-08-26 12:19:23
16984    19086    640    2016-02-27 11:29:28    2016-02-27 11:29:28
16985    13297    760    2015-11-15 10:46:49    2015-11-15 10:46:49
16986    16935    907    2015-05-29 05:19:28    2015-05-29 05:19:28
16987    18329    664    2015-10-14 16:10:53    2015-10-14 16:10:53
16988    10221    660    2015-04-29 01:41:23    2015-04-29 01:41:23
16989    18412    524    2016-04-20 15:02:32    2016-04-20 15:02:32
16990    12965    575    2015-06-11 05:34:06    2015-06-11 05:34:06
16991    18922    948    2015-12-03 03:21:25    2015-12-03 03:21:25
16992    16222    560    2015-04-23 03:16:16    2015-04-23 03:16:16
16993    10980    855    2015-07-05 17:08:11    2015-07-05 17:08:11
16994    13519    505    2015-05-18 14:51:17    2015-05-18 14:51:17
16995    12823    631    2015-10-31 01:02:50    2015-10-31 01:02:50
16996    18146    464    2015-06-18 11:07:36    2015-06-18 11:07:36
16997    13129    576    2016-03-04 17:04:18    2016-03-04 17:04:18
16998    17998    761    2015-08-10 00:20:30    2015-08-10 00:20:30
16999    15917    466    2015-10-03 03:04:19    2015-10-03 03:04:19
17000    10733    687    2015-08-07 00:32:25    2015-08-07 00:32:25
17001    10093    809    2015-12-15 04:23:31    2015-12-15 04:23:31
17002    11101    614    2016-01-16 14:51:27    2016-01-16 14:51:27
17003    19950    915    2015-07-13 19:03:01    2015-07-13 19:03:01
17004    18562    856    2016-01-27 22:31:34    2016-01-27 22:31:34
17005    11636    878    2015-11-03 08:19:01    2015-11-03 08:19:01
17006    13537    662    2015-05-01 20:15:33    2015-05-01 20:15:33
17007    18767    764    2015-10-28 18:43:46    2015-10-28 18:43:46
17008    10027    694    2015-10-27 20:10:24    2015-10-27 20:10:24
17009    15206    925    2016-03-25 19:53:13    2016-03-25 19:53:13
17010    11664    807    2016-03-06 19:15:32    2016-03-06 19:15:32
17011    19392    618    2016-03-12 01:50:47    2016-03-12 01:50:47
17012    17252    800    2016-03-26 05:37:07    2016-03-26 05:37:07
17013    14811    536    2015-11-01 12:04:49    2015-11-01 12:04:49
17014    16917    640    2016-01-01 00:38:20    2016-01-01 00:38:20
17015    12848    863    2016-01-14 09:43:04    2016-01-14 09:43:04
17016    12425    952    2015-06-04 02:02:38    2015-06-04 02:02:38
17017    15263    829    2015-11-12 07:30:35    2015-11-12 07:30:35
17018    18810    827    2016-03-11 05:50:52    2016-03-11 05:50:52
17019    17352    548    2015-07-25 00:20:31    2015-07-25 00:20:31
17020    18958    877    2015-10-30 17:08:27    2015-10-30 17:08:27
17021    18387    704    2015-10-19 09:47:02    2015-10-19 09:47:02
17022    10953    880    2016-01-13 00:25:35    2016-01-13 00:25:35
17023    13048    800    2015-09-11 10:50:05    2015-09-11 10:50:05
17024    16924    768    2016-01-26 21:22:02    2016-01-26 21:22:02
17025    17508    510    2015-10-04 12:43:37    2015-10-04 12:43:37
17026    13847    803    2015-05-24 14:49:21    2015-05-24 14:49:21
17027    13765    619    2015-08-23 18:01:45    2015-08-23 18:01:45
17028    17598    776    2015-05-12 08:30:59    2015-05-12 08:30:59
17029    12973    939    2015-11-22 05:05:33    2015-11-22 05:05:33
17030    18957    715    2016-03-10 18:55:48    2016-03-10 18:55:48
17031    17848    521    2015-05-01 20:08:10    2015-05-01 20:08:10
17032    12175    491    2016-03-20 17:17:40    2016-03-20 17:17:40
17033    15165    769    2016-02-23 06:29:28    2016-02-23 06:29:28
17034    16847    533    2015-10-06 09:11:42    2015-10-06 09:11:42
17035    19228    685    2015-06-27 09:29:47    2015-06-27 09:29:47
17036    12118    754    2016-04-19 13:33:04    2016-04-19 13:33:04
17037    11682    949    2015-12-01 22:06:10    2015-12-01 22:06:10
17038    10607    661    2015-11-20 04:32:04    2015-11-20 04:32:04
17039    18215    820    2015-09-11 05:13:37    2015-09-11 05:13:37
17040    16284    697    2015-08-11 03:19:59    2015-08-11 03:19:59
17041    17919    899    2015-10-13 13:59:09    2015-10-13 13:59:09
17042    18604    698    2015-08-15 17:38:26    2015-08-15 17:38:26
17043    16637    887    2016-03-17 07:40:07    2016-03-17 07:40:07
17044    14750    953    2015-06-29 12:27:07    2015-06-29 12:27:07
17045    17828    694    2015-08-28 20:22:00    2015-08-28 20:22:00
17046    12145    821    2016-03-05 20:17:20    2016-03-05 20:17:20
17047    12401    658    2015-09-11 03:04:44    2015-09-11 03:04:44
17048    18538    632    2015-09-13 22:22:05    2015-09-13 22:22:05
17049    10376    866    2015-12-03 16:41:05    2015-12-03 16:41:05
17050    15957    843    2015-08-25 04:32:04    2015-08-25 04:32:04
17051    18663    715    2015-11-13 15:58:01    2015-11-13 15:58:01
17052    16153    469    2015-11-20 14:29:16    2015-11-20 14:29:16
17053    12801    777    2015-10-04 09:18:59    2015-10-04 09:18:59
17054    19880    528    2015-06-21 20:42:03    2015-06-21 20:42:03
17055    16145    624    2015-05-29 08:51:34    2015-05-29 08:51:34
17056    19527    521    2015-10-29 21:42:06    2015-10-29 21:42:06
17057    14722    854    2015-09-21 22:23:12    2015-09-21 22:23:12
17058    10515    464    2015-07-11 11:35:33    2015-07-11 11:35:33
17059    19875    811    2015-05-20 22:47:34    2015-05-20 22:47:34
17060    15187    638    2015-06-13 09:06:09    2015-06-13 09:06:09
17061    13055    730    2016-03-09 20:04:24    2016-03-09 20:04:24
17062    13072    581    2015-05-11 01:22:57    2015-05-11 01:22:57
17063    12498    669    2015-05-12 16:41:38    2015-05-12 16:41:38
17064    10945    466    2016-01-04 09:43:02    2016-01-04 09:43:02
17065    12463    684    2015-05-26 03:43:40    2015-05-26 03:43:40
17066    12276    621    2015-06-08 23:00:45    2015-06-08 23:00:45
17067    17761    952    2015-07-09 15:06:44    2015-07-09 15:06:44
17068    19115    579    2015-07-23 18:15:48    2015-07-23 18:15:48
17069    19848    543    2015-10-06 02:35:43    2015-10-06 02:35:43
17070    14985    501    2015-05-25 19:41:18    2015-05-25 19:41:18
17071    12075    689    2015-08-12 22:09:18    2015-08-12 22:09:18
17072    14204    935    2015-09-03 19:59:46    2015-09-03 19:59:46
17073    12451    897    2016-01-30 04:56:00    2016-01-30 04:56:00
17074    19978    491    2015-07-14 14:15:25    2015-07-14 14:15:25
17075    15385    537    2015-10-27 15:16:18    2015-10-27 15:16:18
17076    13466    576    2015-10-04 02:20:09    2015-10-04 02:20:09
17077    17425    791    2016-02-28 12:22:16    2016-02-28 12:22:16
17078    15244    867    2016-03-24 12:23:08    2016-03-24 12:23:08
17079    15310    908    2015-10-25 00:08:55    2015-10-25 00:08:55
17080    18380    815    2016-01-09 00:23:36    2016-01-09 00:23:36
17081    10659    921    2015-05-26 07:14:07    2015-05-26 07:14:07
17082    14550    528    2015-08-12 09:41:36    2015-08-12 09:41:36
17083    18329    796    2015-08-19 01:33:54    2015-08-19 01:33:54
17084    15729    610    2015-05-07 12:12:16    2015-05-07 12:12:16
17085    15554    519    2015-10-06 16:31:22    2015-10-06 16:31:22
17086    11886    654    2016-02-24 08:27:25    2016-02-24 08:27:25
17087    19678    636    2015-07-06 18:43:27    2015-07-06 18:43:27
17088    15807    803    2015-05-28 20:03:24    2015-05-28 20:03:24
17089    10160    636    2016-03-20 19:01:29    2016-03-20 19:01:29
17090    15089    897    2015-09-01 09:12:46    2015-09-01 09:12:46
17091    19828    897    2016-04-14 06:10:47    2016-04-14 06:10:47
17092    12205    592    2015-10-08 19:19:27    2015-10-08 19:19:27
17093    10253    882    2015-08-22 12:54:58    2015-08-22 12:54:58
17094    10931    642    2015-08-01 13:53:09    2015-08-01 13:53:09
17095    16365    556    2015-12-16 20:55:59    2015-12-16 20:55:59
17096    18672    884    2016-02-27 10:02:00    2016-02-27 10:02:00
17097    10709    739    2015-08-30 05:32:14    2015-08-30 05:32:14
17098    10323    555    2016-01-14 05:41:41    2016-01-14 05:41:41
17099    17364    726    2015-06-22 16:42:16    2015-06-22 16:42:16
17100    12744    499    2015-07-28 05:30:41    2015-07-28 05:30:41
17101    10201    516    2015-10-22 19:17:27    2015-10-22 19:17:27
17102    17079    860    2015-12-30 08:56:39    2015-12-30 08:56:39
17103    19562    802    2015-10-27 21:31:30    2015-10-27 21:31:30
17104    17725    911    2015-11-21 09:01:40    2015-11-21 09:01:40
17105    18181    607    2015-09-17 04:52:34    2015-09-17 04:52:34
17106    13191    769    2015-09-14 07:50:14    2015-09-14 07:50:14
17107    18126    569    2016-04-05 14:07:17    2016-04-05 14:07:17
17108    12657    488    2016-01-29 21:10:03    2016-01-29 21:10:03
17109    15091    825    2015-06-30 05:50:55    2015-06-30 05:50:55
17110    18291    482    2015-09-09 19:24:27    2015-09-09 19:24:27
17111    19092    756    2016-01-25 00:33:43    2016-01-25 00:33:43
17112    14182    502    2015-06-02 17:06:08    2015-06-02 17:06:08
17113    19794    715    2016-02-05 01:23:16    2016-02-05 01:23:16
17114    14498    809    2015-11-17 17:23:20    2015-11-17 17:23:20
17115    16153    654    2015-07-22 10:45:38    2015-07-22 10:45:38
17116    12229    581    2016-01-10 08:01:48    2016-01-10 08:01:48
17117    13219    588    2016-04-06 18:56:19    2016-04-06 18:56:19
17118    17794    553    2015-10-01 10:37:48    2015-10-01 10:37:48
17119    19956    811    2015-07-18 17:01:47    2015-07-18 17:01:47
17120    17598    765    2015-10-19 05:27:38    2015-10-19 05:27:38
17121    16694    529    2015-08-28 19:22:51    2015-08-28 19:22:51
17122    18539    808    2015-04-26 01:56:38    2015-04-26 01:56:38
17123    12669    543    2015-07-18 07:43:48    2015-07-18 07:43:48
17124    12227    672    2015-11-03 11:04:38    2015-11-03 11:04:38
17125    17194    579    2015-12-16 07:11:45    2015-12-16 07:11:45
17126    14985    878    2015-11-03 20:46:49    2015-11-03 20:46:49
17127    17358    716    2015-09-03 15:48:43    2015-09-03 15:48:43
17128    12740    787    2015-06-25 11:02:58    2015-06-25 11:02:58
17129    12704    648    2015-07-28 04:25:47    2015-07-28 04:25:47
17130    11506    477    2015-12-03 00:25:25    2015-12-03 00:25:25
17131    19148    781    2016-01-08 06:23:02    2016-01-08 06:23:02
17132    12770    621    2015-05-06 05:21:10    2015-05-06 05:21:10
17133    15255    947    2015-05-16 05:05:57    2015-05-16 05:05:57
17134    17890    726    2015-11-06 16:53:49    2015-11-06 16:53:49
17135    13038    467    2016-01-06 10:30:31    2016-01-06 10:30:31
17136    15679    702    2015-07-07 08:44:47    2015-07-07 08:44:47
17137    16783    715    2015-05-05 11:54:52    2015-05-05 11:54:52
17138    19498    670    2015-06-17 03:02:49    2015-06-17 03:02:49
17139    10711    493    2016-02-12 14:09:18    2016-02-12 14:09:18
17140    12014    777    2015-09-07 09:32:21    2015-09-07 09:32:21
17141    17408    598    2016-04-07 05:49:06    2016-04-07 05:49:06
17142    10522    763    2015-09-20 08:34:24    2015-09-20 08:34:24
17143    11060    960    2016-01-13 04:54:25    2016-01-13 04:54:25
17144    10818    958    2015-10-10 21:27:18    2015-10-10 21:27:18
17145    15141    600    2016-01-29 17:13:49    2016-01-29 17:13:49
17146    19308    790    2015-11-15 05:43:49    2015-11-15 05:43:49
17147    12530    837    2015-12-21 06:48:57    2015-12-21 06:48:57
17148    19772    825    2015-12-23 07:27:48    2015-12-23 07:27:48
17149    14517    474    2016-04-17 10:29:22    2016-04-17 10:29:22
17150    16399    926    2015-08-26 15:46:13    2015-08-26 15:46:13
17151    12567    491    2015-08-02 12:57:17    2015-08-02 12:57:17
17152    12666    511    2016-03-27 19:11:18    2016-03-27 19:11:18
17153    13699    559    2015-09-19 01:58:25    2015-09-19 01:58:25
17154    14005    519    2015-07-01 15:24:47    2015-07-01 15:24:47
17155    15894    921    2015-05-19 01:01:13    2015-05-19 01:01:13
17156    12151    705    2015-11-16 17:42:06    2015-11-16 17:42:06
17157    15594    892    2015-06-02 19:32:19    2015-06-02 19:32:19
17158    14464    691    2015-10-19 13:28:05    2015-10-19 13:28:05
17159    11529    681    2015-05-23 07:40:01    2015-05-23 07:40:01
17160    10923    611    2015-08-01 11:28:36    2015-08-01 11:28:36
17161    14255    645    2015-10-28 11:45:19    2015-10-28 11:45:19
17162    19286    695    2016-01-14 04:30:44    2016-01-14 04:30:44
17163    10482    652    2015-09-14 22:43:14    2015-09-14 22:43:14
17164    14660    765    2015-05-14 12:36:59    2015-05-14 12:36:59
17165    10492    543    2015-04-23 11:52:48    2015-04-23 11:52:48
17166    12892    695    2015-12-05 18:00:02    2015-12-05 18:00:02
17167    16206    940    2015-05-03 21:33:47    2015-05-03 21:33:47
17168    10875    726    2015-11-30 07:54:43    2015-11-30 07:54:43
17169    17411    733    2015-05-23 12:09:01    2015-05-23 12:09:01
17170    17003    932    2016-03-26 19:25:13    2016-03-26 19:25:13
17171    13853    899    2015-07-15 23:41:46    2015-07-15 23:41:46
17172    16829    567    2015-06-26 08:03:16    2015-06-26 08:03:16
17173    14926    949    2015-10-17 10:45:28    2015-10-17 10:45:28
17174    15327    650    2016-04-05 00:44:17    2016-04-05 00:44:17
17175    10421    736    2015-06-20 09:10:16    2015-06-20 09:10:16
17176    13508    492    2015-06-21 20:00:42    2015-06-21 20:00:42
17177    10953    706    2016-03-17 04:41:19    2016-03-17 04:41:19
17178    15503    885    2015-11-04 00:49:18    2015-11-04 00:49:18
17179    18925    472    2015-05-03 22:24:49    2015-05-03 22:24:49
17180    18749    510    2016-01-21 13:00:12    2016-01-21 13:00:12
17181    14745    659    2015-11-06 05:06:20    2015-11-06 05:06:20
17182    10280    794    2015-05-20 03:32:11    2015-05-20 03:32:11
17183    14336    643    2015-07-03 04:04:21    2015-07-03 04:04:21
17184    16816    668    2015-08-03 16:06:16    2015-08-03 16:06:16
17185    14370    721    2015-11-22 20:19:22    2015-11-22 20:19:22
17186    17541    780    2015-10-25 20:01:48    2015-10-25 20:01:48
17187    10292    579    2016-02-09 19:34:11    2016-02-09 19:34:11
17188    18414    670    2015-07-28 17:20:40    2015-07-28 17:20:40
17189    18666    620    2015-10-08 19:45:15    2015-10-08 19:45:15
17190    12013    498    2015-11-18 20:10:27    2015-11-18 20:10:27
17191    15532    924    2016-02-16 11:49:44    2016-02-16 11:49:44
17192    18710    597    2016-03-26 19:31:05    2016-03-26 19:31:05
17193    15722    625    2015-12-22 10:44:09    2015-12-22 10:44:09
17194    12812    590    2015-08-10 03:38:16    2015-08-10 03:38:16
17195    11021    527    2015-06-26 20:05:41    2015-06-26 20:05:41
17196    19582    918    2015-07-08 04:55:30    2015-07-08 04:55:30
17197    10024    596    2015-10-14 15:42:20    2015-10-14 15:42:20
17198    11444    744    2015-05-12 15:02:56    2015-05-12 15:02:56
17199    10267    883    2015-10-07 03:17:27    2015-10-07 03:17:27
17200    19994    921    2015-08-22 13:45:03    2015-08-22 13:45:03
17201    18196    871    2016-03-20 17:33:59    2016-03-20 17:33:59
17202    14579    955    2015-07-26 08:11:00    2015-07-26 08:11:00
17203    13143    788    2015-06-19 03:50:29    2015-06-19 03:50:29
17204    10645    558    2015-08-29 09:05:23    2015-08-29 09:05:23
17205    12988    864    2016-01-24 02:19:30    2016-01-24 02:19:30
17206    12913    864    2015-11-24 14:26:35    2015-11-24 14:26:35
17207    18358    659    2015-05-08 11:47:30    2015-05-08 11:47:30
17208    11221    817    2015-12-26 05:00:10    2015-12-26 05:00:10
17209    11536    565    2015-04-27 23:58:32    2015-04-27 23:58:32
17210    17211    689    2016-04-09 00:15:30    2016-04-09 00:15:30
17211    14535    588    2015-12-04 00:00:16    2015-12-04 00:00:16
17212    16076    641    2015-07-25 06:53:52    2015-07-25 06:53:52
17213    12700    748    2015-07-17 07:23:54    2015-07-17 07:23:54
17214    13274    914    2015-11-29 09:23:43    2015-11-29 09:23:43
17215    13665    834    2016-02-17 01:50:32    2016-02-17 01:50:32
17216    18504    687    2016-02-08 06:12:12    2016-02-08 06:12:12
17217    17531    705    2016-02-22 14:04:00    2016-02-22 14:04:00
17218    13066    927    2015-09-02 06:09:29    2015-09-02 06:09:29
17219    15093    839    2015-05-31 15:10:00    2015-05-31 15:10:00
17220    12449    611    2015-08-17 06:23:51    2015-08-17 06:23:51
17221    11138    613    2016-02-11 09:12:04    2016-02-11 09:12:04
17222    19536    935    2015-11-04 08:07:12    2015-11-04 08:07:12
17223    13143    914    2015-06-13 00:50:37    2015-06-13 00:50:37
17224    11939    825    2015-05-21 07:35:45    2015-05-21 07:35:45
17225    12290    695    2015-09-02 03:40:15    2015-09-02 03:40:15
17226    14364    741    2015-06-24 09:53:16    2015-06-24 09:53:16
17227    17057    937    2015-12-31 19:00:02    2015-12-31 19:00:02
17228    16166    920    2015-05-11 10:39:47    2015-05-11 10:39:47
17229    14294    943    2015-10-07 15:13:11    2015-10-07 15:13:11
17230    19559    762    2015-08-31 09:07:26    2015-08-31 09:07:26
17231    12693    472    2015-11-30 07:19:07    2015-11-30 07:19:07
17232    11752    861    2016-04-17 22:01:26    2016-04-17 22:01:26
17233    17949    840    2016-03-21 23:35:35    2016-03-21 23:35:35
17234    19662    728    2015-10-05 07:18:21    2015-10-05 07:18:21
17235    12574    774    2016-01-09 12:02:09    2016-01-09 12:02:09
17236    15764    942    2015-10-19 16:03:37    2015-10-19 16:03:37
17237    16849    911    2015-07-15 02:49:58    2015-07-15 02:49:58
17238    15936    811    2016-02-15 23:23:02    2016-02-15 23:23:02
17239    17407    829    2015-07-30 15:44:37    2015-07-30 15:44:37
17240    14062    935    2015-08-16 09:15:42    2015-08-16 09:15:42
17241    13545    640    2016-03-12 23:10:14    2016-03-12 23:10:14
17242    10372    519    2015-06-20 08:58:38    2015-06-20 08:58:38
17243    17431    793    2015-11-16 03:55:47    2015-11-16 03:55:47
17244    15479    919    2015-05-24 21:41:39    2015-05-24 21:41:39
17245    10824    953    2016-01-24 03:28:06    2016-01-24 03:28:06
17246    14745    933    2015-07-26 17:38:31    2015-07-26 17:38:31
17247    17484    875    2015-10-06 23:35:43    2015-10-06 23:35:43
17248    14409    507    2015-09-11 15:40:50    2015-09-11 15:40:50
17249    19594    574    2016-01-24 15:10:53    2016-01-24 15:10:53
17250    19452    937    2016-01-30 10:21:58    2016-01-30 10:21:58
17251    13896    744    2015-12-21 12:19:00    2015-12-21 12:19:00
17252    15712    518    2015-06-29 02:40:27    2015-06-29 02:40:27
17253    19514    837    2015-07-31 01:14:11    2015-07-31 01:14:11
17254    12276    604    2015-07-29 01:00:46    2015-07-29 01:00:46
17255    12495    547    2016-03-15 06:09:49    2016-03-15 06:09:49
17256    10262    951    2016-04-15 22:59:22    2016-04-15 22:59:22
17257    12754    929    2015-10-20 00:50:09    2015-10-20 00:50:09
17258    16664    573    2016-03-06 22:42:09    2016-03-06 22:42:09
17259    19217    649    2015-09-01 16:17:10    2015-09-01 16:17:10
17260    11473    464    2016-03-03 07:10:48    2016-03-03 07:10:48
17261    16853    630    2015-05-05 10:22:33    2015-05-05 10:22:33
17262    13512    693    2016-04-20 02:18:04    2016-04-20 02:18:04
17263    16484    826    2016-02-18 05:04:04    2016-02-18 05:04:04
17264    10114    655    2015-06-26 07:21:02    2015-06-26 07:21:02
17265    10450    796    2015-06-22 19:54:14    2015-06-22 19:54:14
17266    19644    626    2015-11-10 08:29:58    2015-11-10 08:29:58
17267    10690    642    2015-05-20 06:57:51    2015-05-20 06:57:51
17268    16470    826    2015-11-03 15:03:46    2015-11-03 15:03:46
17269    18954    674    2016-02-10 08:03:59    2016-02-10 08:03:59
17270    13537    684    2015-11-26 21:11:11    2015-11-26 21:11:11
17271    19282    749    2015-06-07 01:59:08    2015-06-07 01:59:08
17272    16024    736    2015-08-02 16:29:32    2015-08-02 16:29:32
17273    10097    781    2015-10-04 02:06:20    2015-10-04 02:06:20
17274    16636    729    2015-05-02 22:29:17    2015-05-02 22:29:17
17275    13919    951    2015-06-29 05:51:44    2015-06-29 05:51:44
17276    16470    480    2015-06-24 18:44:05    2015-06-24 18:44:05
17277    11883    746    2015-06-21 19:52:41    2015-06-21 19:52:41
17278    15445    809    2016-03-09 18:58:44    2016-03-09 18:58:44
17279    19750    488    2015-08-02 14:52:26    2015-08-02 14:52:26
17280    13122    872    2015-09-05 20:12:16    2015-09-05 20:12:16
17281    17736    546    2015-06-23 10:14:54    2015-06-23 10:14:54
17282    12167    798    2016-04-05 07:57:25    2016-04-05 07:57:25
17283    12200    758    2016-03-20 00:27:12    2016-03-20 00:27:12
17284    14775    544    2016-01-13 17:58:56    2016-01-13 17:58:56
17285    11151    593    2016-03-09 14:06:29    2016-03-09 14:06:29
17286    18354    479    2015-12-19 03:02:50    2015-12-19 03:02:50
17287    15284    599    2015-07-07 23:08:47    2015-07-07 23:08:47
17288    14852    645    2015-11-19 09:30:33    2015-11-19 09:30:33
17289    19552    876    2015-06-10 06:09:53    2015-06-10 06:09:53
17290    12651    777    2016-01-14 04:48:36    2016-01-14 04:48:36
17291    18985    545    2015-06-01 08:51:13    2015-06-01 08:51:13
17292    10477    687    2015-08-10 19:44:41    2015-08-10 19:44:41
17293    19231    875    2015-08-27 23:27:57    2015-08-27 23:27:57
17294    14172    920    2015-07-13 20:30:16    2015-07-13 20:30:16
17295    19702    694    2016-03-02 03:56:19    2016-03-02 03:56:19
17296    14714    921    2015-05-04 07:33:25    2015-05-04 07:33:25
17297    11544    794    2015-12-21 20:51:45    2015-12-21 20:51:45
17298    15760    943    2016-02-13 13:57:51    2016-02-13 13:57:51
17299    16901    608    2015-09-07 06:41:25    2015-09-07 06:41:25
17300    11287    567    2016-04-20 12:10:38    2016-04-20 12:10:38
17301    14897    606    2016-01-29 18:47:57    2016-01-29 18:47:57
17302    16760    592    2016-02-03 18:24:34    2016-02-03 18:24:34
17303    12080    704    2015-08-29 17:06:16    2015-08-29 17:06:16
17304    10081    819    2015-12-18 05:42:40    2015-12-18 05:42:40
17305    10558    930    2015-12-30 10:37:39    2015-12-30 10:37:39
17306    16377    852    2015-06-16 12:17:11    2015-06-16 12:17:11
17307    14874    831    2015-08-13 23:36:45    2015-08-13 23:36:45
17308    18991    860    2016-02-01 13:03:23    2016-02-01 13:03:23
17309    19662    672    2016-02-03 01:11:58    2016-02-03 01:11:58
17310    15061    491    2015-07-18 15:04:10    2015-07-18 15:04:10
17311    11849    671    2015-08-21 13:46:00    2015-08-21 13:46:00
17312    17593    470    2016-01-04 05:55:07    2016-01-04 05:55:07
17313    15505    740    2015-08-11 06:27:51    2015-08-11 06:27:51
17314    18702    800    2015-05-06 20:39:04    2015-05-06 20:39:04
17315    11949    907    2015-09-01 03:29:49    2015-09-01 03:29:49
17316    13605    684    2015-05-16 22:24:40    2015-05-16 22:24:40
17317    15076    900    2015-10-10 04:59:21    2015-10-10 04:59:21
17318    11995    623    2015-12-05 01:30:21    2015-12-05 01:30:21
17319    10638    708    2015-10-06 10:38:14    2015-10-06 10:38:14
17320    19788    593    2016-01-28 15:07:14    2016-01-28 15:07:14
17321    15123    829    2015-09-07 23:43:34    2015-09-07 23:43:34
17322    14725    714    2015-04-26 17:26:03    2015-04-26 17:26:03
17323    14837    568    2015-10-04 00:57:30    2015-10-04 00:57:30
17324    12851    707    2016-04-20 18:54:45    2016-04-20 18:54:45
17325    17536    823    2015-09-23 05:43:44    2015-09-23 05:43:44
17326    13793    827    2016-01-13 17:57:59    2016-01-13 17:57:59
17327    13066    528    2015-04-23 01:15:46    2015-04-23 01:15:46
17328    17828    639    2015-11-30 15:57:54    2015-11-30 15:57:54
17329    14150    755    2015-06-09 01:26:29    2015-06-09 01:26:29
17330    12154    512    2015-04-22 15:32:58    2015-04-22 15:32:58
17331    10273    611    2015-11-10 10:56:49    2015-11-10 10:56:49
17332    18988    690    2016-02-21 10:04:15    2016-02-21 10:04:15
17333    18966    528    2015-09-22 07:13:53    2015-09-22 07:13:53
17334    10595    471    2015-07-22 22:24:21    2015-07-22 22:24:21
17335    19994    807    2015-11-22 02:54:34    2015-11-22 02:54:34
17336    12210    606    2015-07-20 04:45:36    2015-07-20 04:45:36
17337    18945    799    2016-01-26 08:52:52    2016-01-26 08:52:52
17338    15899    890    2015-06-26 20:30:09    2015-06-26 20:30:09
17339    10384    816    2015-06-26 04:07:24    2015-06-26 04:07:24
17340    13242    948    2015-05-15 09:26:25    2015-05-15 09:26:25
17341    16417    589    2015-07-28 03:01:52    2015-07-28 03:01:52
17342    10425    518    2015-07-22 23:17:05    2015-07-22 23:17:05
17343    19145    938    2015-07-31 08:58:04    2015-07-31 08:58:04
17344    15822    789    2016-01-01 21:21:48    2016-01-01 21:21:48
17345    11144    582    2015-07-25 01:17:59    2015-07-25 01:17:59
17346    19223    875    2015-06-16 23:08:49    2015-06-16 23:08:49
17347    11507    759    2015-11-07 23:06:39    2015-11-07 23:06:39
17348    12650    579    2015-07-27 14:02:29    2015-07-27 14:02:29
17349    11119    627    2015-07-13 13:42:11    2015-07-13 13:42:11
17350    12952    641    2016-03-26 01:35:11    2016-03-26 01:35:11
17351    18828    857    2015-09-07 22:45:55    2015-09-07 22:45:55
17352    15326    644    2015-09-30 20:53:35    2015-09-30 20:53:35
17353    17746    961    2015-08-04 12:45:12    2015-08-04 12:45:12
17354    18647    809    2015-06-14 06:28:01    2015-06-14 06:28:01
17355    11576    654    2016-02-18 20:14:51    2016-02-18 20:14:51
17356    16266    730    2016-01-02 00:27:54    2016-01-02 00:27:54
17357    13352    643    2015-07-08 04:12:33    2015-07-08 04:12:33
17358    18646    679    2015-08-08 16:59:42    2015-08-08 16:59:42
17359    11510    510    2015-11-19 03:49:00    2015-11-19 03:49:00
17360    10293    565    2015-05-11 14:18:58    2015-05-11 14:18:58
17361    16083    831    2015-08-20 16:57:35    2015-08-20 16:57:35
17362    16642    592    2016-04-04 19:19:54    2016-04-04 19:19:54
17363    11344    842    2015-05-24 21:28:17    2015-05-24 21:28:17
17364    11809    809    2015-11-05 05:12:24    2015-11-05 05:12:24
17365    15497    833    2015-07-20 13:14:34    2015-07-20 13:14:34
17366    15444    569    2015-09-22 06:15:28    2015-09-22 06:15:28
17367    16381    937    2015-12-29 12:41:31    2015-12-29 12:41:31
17368    11379    599    2015-10-03 00:33:12    2015-10-03 00:33:12
17369    16877    828    2015-11-07 00:43:43    2015-11-07 00:43:43
17370    11469    641    2015-10-20 18:26:48    2015-10-20 18:26:48
17371    15879    715    2015-04-30 00:13:10    2015-04-30 00:13:10
17372    11044    780    2015-09-08 06:56:53    2015-09-08 06:56:53
17373    14444    522    2016-03-06 17:37:39    2016-03-06 17:37:39
17374    17923    679    2016-04-07 21:20:28    2016-04-07 21:20:28
17375    18745    776    2015-06-29 22:49:41    2015-06-29 22:49:41
17376    19736    870    2016-04-05 23:32:36    2016-04-05 23:32:36
17377    15415    616    2015-08-08 05:20:06    2015-08-08 05:20:06
17378    11260    602    2015-08-28 19:54:21    2015-08-28 19:54:21
17379    10518    662    2016-02-14 13:19:24    2016-02-14 13:19:24
17380    17831    861    2015-08-15 13:45:22    2015-08-15 13:45:22
17381    15150    562    2016-03-27 22:09:14    2016-03-27 22:09:14
17382    15102    733    2016-01-28 00:35:45    2016-01-28 00:35:45
17383    14525    863    2015-11-22 06:06:28    2015-11-22 06:06:28
17384    12911    766    2015-05-14 16:32:11    2015-05-14 16:32:11
17385    12511    745    2015-09-05 11:25:22    2015-09-05 11:25:22
17386    18367    846    2016-01-19 10:54:37    2016-01-19 10:54:37
17387    15713    576    2015-06-03 12:17:28    2015-06-03 12:17:28
17388    10525    609    2015-05-10 21:56:24    2015-05-10 21:56:24
17389    10593    830    2015-09-13 07:51:24    2015-09-13 07:51:24
17390    16467    625    2015-05-25 06:58:05    2015-05-25 06:58:05
17391    15600    738    2016-02-05 05:22:41    2016-02-05 05:22:41
17392    14409    703    2016-02-08 00:44:44    2016-02-08 00:44:44
17393    13296    632    2015-08-09 12:27:13    2015-08-09 12:27:13
17394    13282    907    2015-12-15 15:04:28    2015-12-15 15:04:28
17395    17954    609    2016-04-15 01:19:39    2016-04-15 01:19:39
17396    13001    772    2016-04-03 17:56:15    2016-04-03 17:56:15
17397    17471    634    2015-06-23 14:20:13    2015-06-23 14:20:13
17398    15640    903    2016-02-08 09:28:27    2016-02-08 09:28:27
17399    16154    468    2015-09-03 07:02:06    2015-09-03 07:02:06
17400    18265    927    2015-10-31 09:39:16    2015-10-31 09:39:16
17401    14947    695    2015-04-30 13:35:12    2015-04-30 13:35:12
17402    19185    683    2016-03-27 08:37:06    2016-03-27 08:37:06
17403    18651    597    2015-07-01 06:29:45    2015-07-01 06:29:45
17404    17058    835    2015-06-06 10:55:13    2015-06-06 10:55:13
17405    14328    692    2015-10-04 23:06:08    2015-10-04 23:06:08
17406    12221    650    2016-03-03 23:26:02    2016-03-03 23:26:02
17407    14266    789    2015-05-09 06:31:31    2015-05-09 06:31:31
17408    18850    473    2015-11-28 07:38:46    2015-11-28 07:38:46
17409    17085    920    2015-06-20 02:26:31    2015-06-20 02:26:31
17410    17433    625    2015-11-11 00:01:42    2015-11-11 00:01:42
17411    16134    693    2016-01-28 10:25:21    2016-01-28 10:25:21
17412    18770    839    2015-05-08 09:08:19    2015-05-08 09:08:19
17413    15697    468    2015-10-13 16:02:27    2015-10-13 16:02:27
17414    10087    919    2016-04-16 07:19:10    2016-04-16 07:19:10
17415    14407    706    2015-07-01 17:12:23    2015-07-01 17:12:23
17416    18524    742    2016-02-06 21:47:55    2016-02-06 21:47:55
17417    17842    540    2015-04-27 10:14:26    2015-04-27 10:14:26
17418    10637    851    2015-07-28 16:44:19    2015-07-28 16:44:19
17419    17315    475    2016-01-10 06:43:31    2016-01-10 06:43:31
17420    19373    796    2016-02-05 02:40:35    2016-02-05 02:40:35
17421    13187    716    2015-10-30 20:40:13    2015-10-30 20:40:13
17422    16269    815    2015-09-11 16:14:58    2015-09-11 16:14:58
17423    16245    695    2015-04-23 22:54:27    2015-04-23 22:54:27
17424    14069    478    2015-10-12 03:50:45    2015-10-12 03:50:45
17425    16832    931    2016-04-11 18:00:13    2016-04-11 18:00:13
17426    19708    934    2015-12-22 01:42:53    2015-12-22 01:42:53
17427    10568    623    2016-01-22 21:23:23    2016-01-22 21:23:23
17428    16829    731    2015-12-19 11:40:54    2015-12-19 11:40:54
17429    12089    852    2016-03-28 05:36:11    2016-03-28 05:36:11
17430    11036    902    2015-06-23 12:56:02    2015-06-23 12:56:02
17431    12219    565    2015-08-28 02:34:24    2015-08-28 02:34:24
17432    11920    633    2015-07-02 21:10:19    2015-07-02 21:10:19
17433    19384    593    2016-02-19 09:48:25    2016-02-19 09:48:25
17434    11723    696    2015-12-17 01:30:29    2015-12-17 01:30:29
17435    11224    900    2016-02-25 20:55:57    2016-02-25 20:55:57
17436    10586    519    2015-07-17 02:00:06    2015-07-17 02:00:06
17437    16286    739    2015-07-19 11:15:46    2015-07-19 11:15:46
17438    14515    580    2015-11-25 13:47:27    2015-11-25 13:47:27
17439    16081    834    2016-03-19 12:01:16    2016-03-19 12:01:16
17440    11071    631    2016-03-14 02:05:01    2016-03-14 02:05:01
17441    16243    705    2015-11-13 18:09:41    2015-11-13 18:09:41
17442    14759    855    2015-10-07 02:54:59    2015-10-07 02:54:59
17443    17585    542    2015-12-14 04:20:30    2015-12-14 04:20:30
17444    19607    559    2015-12-13 12:02:27    2015-12-13 12:02:27
17445    10643    884    2015-09-03 13:56:36    2015-09-03 13:56:36
17446    14429    594    2016-01-24 11:24:36    2016-01-24 11:24:36
17447    16475    538    2015-06-23 16:45:24    2015-06-23 16:45:24
17448    13585    726    2015-11-25 01:16:23    2015-11-25 01:16:23
17449    11273    472    2016-01-29 01:15:25    2016-01-29 01:15:25
17450    12260    822    2015-11-19 16:59:50    2015-11-19 16:59:50
17451    11466    598    2015-06-14 20:57:52    2015-06-14 20:57:52
17452    16655    697    2015-09-04 21:55:38    2015-09-04 21:55:38
17453    18491    599    2015-05-06 10:11:44    2015-05-06 10:11:44
17454    18198    495    2015-06-25 14:58:16    2015-06-25 14:58:16
17455    16190    828    2016-03-15 02:27:00    2016-03-15 02:27:00
17456    10775    815    2015-12-14 21:30:15    2015-12-14 21:30:15
17457    13231    782    2016-03-12 06:54:40    2016-03-12 06:54:40
17458    12518    518    2015-11-05 15:40:59    2015-11-05 15:40:59
17459    12834    781    2016-01-08 22:37:41    2016-01-08 22:37:41
17460    11491    796    2016-04-01 07:55:51    2016-04-01 07:55:51
17461    12770    757    2015-06-16 01:55:54    2015-06-16 01:55:54
17462    17117    956    2015-10-26 03:33:36    2015-10-26 03:33:36
17463    18323    520    2015-05-11 22:25:53    2015-05-11 22:25:53
17464    10301    569    2015-09-29 15:51:14    2015-09-29 15:51:14
17465    19439    873    2015-05-18 08:25:11    2015-05-18 08:25:11
17466    16123    847    2016-03-20 02:46:39    2016-03-20 02:46:39
17467    12142    910    2016-04-11 03:22:05    2016-04-11 03:22:05
17468    15883    580    2016-04-06 16:48:23    2016-04-06 16:48:23
17469    18127    817    2015-12-27 07:29:33    2015-12-27 07:29:33
17470    14295    757    2015-07-10 12:27:17    2015-07-10 12:27:17
17471    18376    596    2015-10-15 03:20:24    2015-10-15 03:20:24
17472    15857    921    2015-12-08 20:41:25    2015-12-08 20:41:25
17473    11419    781    2015-11-08 06:52:20    2015-11-08 06:52:20
17474    14145    891    2015-07-20 15:41:25    2015-07-20 15:41:25
17475    10487    791    2016-02-15 12:38:58    2016-02-15 12:38:58
17476    12959    893    2015-06-02 20:00:55    2015-06-02 20:00:55
17477    12134    679    2016-04-17 12:42:57    2016-04-17 12:42:57
17478    11086    884    2015-10-18 07:20:56    2015-10-18 07:20:56
17479    14242    845    2015-06-18 16:29:29    2015-06-18 16:29:29
17480    16802    679    2015-12-15 06:38:32    2015-12-15 06:38:32
17481    14969    901    2015-09-14 07:06:10    2015-09-14 07:06:10
17482    19824    779    2015-08-05 19:06:24    2015-08-05 19:06:24
17483    14117    463    2016-02-23 13:52:41    2016-02-23 13:52:41
17484    14081    751    2016-02-09 17:54:46    2016-02-09 17:54:46
17485    18762    618    2015-09-05 22:45:17    2015-09-05 22:45:17
17486    15946    635    2016-04-04 16:41:33    2016-04-04 16:41:33
17487    19879    745    2015-12-09 23:09:13    2015-12-09 23:09:13
17488    15057    511    2015-12-31 17:57:41    2015-12-31 17:57:41
17489    19349    703    2015-12-07 18:59:08    2015-12-07 18:59:08
17490    19878    894    2015-06-28 23:05:04    2015-06-28 23:05:04
17491    11975    599    2016-03-11 12:10:53    2016-03-11 12:10:53
17492    12942    935    2015-05-05 01:01:49    2015-05-05 01:01:49
17493    12432    929    2015-05-25 02:10:25    2015-05-25 02:10:25
17494    18204    956    2015-12-14 08:57:02    2015-12-14 08:57:02
17495    16523    894    2015-08-12 08:52:17    2015-08-12 08:52:17
17496    18305    864    2015-07-26 03:06:25    2015-07-26 03:06:25
17497    19340    551    2015-05-21 08:22:02    2015-05-21 08:22:02
17498    16573    700    2015-07-21 03:12:56    2015-07-21 03:12:56
17499    12771    754    2015-06-06 05:00:28    2015-06-06 05:00:28
17500    16790    757    2015-04-29 22:43:31    2015-04-29 22:43:31
17501    15952    911    2016-01-16 17:31:32    2016-01-16 17:31:32
17502    16469    838    2015-09-04 03:09:46    2015-09-04 03:09:46
17503    15570    940    2015-11-25 21:47:30    2015-11-25 21:47:30
17504    17624    643    2016-03-04 09:08:33    2016-03-04 09:08:33
17505    19530    593    2015-12-07 15:39:03    2015-12-07 15:39:03
17506    14366    473    2016-03-22 08:36:31    2016-03-22 08:36:31
17507    13151    553    2016-04-19 20:52:09    2016-04-19 20:52:09
17508    10331    925    2015-11-16 09:32:50    2015-11-16 09:32:50
17509    14982    523    2015-12-13 02:09:29    2015-12-13 02:09:29
17510    10732    892    2015-04-23 22:45:51    2015-04-23 22:45:51
17511    12496    815    2015-08-10 19:12:18    2015-08-10 19:12:18
17512    12116    720    2015-04-28 20:25:48    2015-04-28 20:25:48
17513    13350    671    2015-08-31 11:19:54    2015-08-31 11:19:54
17514    17330    566    2015-10-13 02:38:45    2015-10-13 02:38:45
17515    14671    728    2016-03-09 13:46:14    2016-03-09 13:46:14
17516    12351    875    2015-08-31 07:06:29    2015-08-31 07:06:29
17517    15238    895    2015-09-02 22:57:10    2015-09-02 22:57:10
17518    19037    565    2016-01-10 21:55:15    2016-01-10 21:55:15
17519    13516    666    2016-03-08 08:25:47    2016-03-08 08:25:47
17520    18466    707    2015-06-16 02:06:11    2015-06-16 02:06:11
17521    15683    560    2015-08-11 08:40:14    2015-08-11 08:40:14
17522    10017    566    2015-12-01 13:03:26    2015-12-01 13:03:26
17523    15171    558    2015-06-25 03:53:08    2015-06-25 03:53:08
17524    12619    566    2015-06-01 07:35:05    2015-06-01 07:35:05
17525    18046    807    2015-07-10 17:21:37    2015-07-10 17:21:37
17526    17624    946    2015-10-31 19:19:31    2015-10-31 19:19:31
17527    11675    645    2016-01-07 14:16:21    2016-01-07 14:16:21
17528    19418    886    2015-06-04 21:28:41    2015-06-04 21:28:41
17529    12830    741    2016-03-20 02:38:38    2016-03-20 02:38:38
17530    11963    463    2015-08-13 03:53:10    2015-08-13 03:53:10
17531    15567    685    2015-12-01 20:41:38    2015-12-01 20:41:38
17532    18723    660    2015-04-22 08:40:27    2015-04-22 08:40:27
17533    18282    663    2015-05-05 07:02:11    2015-05-05 07:02:11
17534    10565    837    2015-12-17 02:26:45    2015-12-17 02:26:45
17535    11280    566    2015-06-27 15:05:53    2015-06-27 15:05:53
17536    10924    807    2015-05-11 11:09:42    2015-05-11 11:09:42
17537    15933    588    2015-07-17 11:32:10    2015-07-17 11:32:10
17538    10383    915    2015-07-23 15:54:43    2015-07-23 15:54:43
17539    16498    584    2015-12-09 04:47:57    2015-12-09 04:47:57
17540    17901    835    2015-10-17 09:16:31    2015-10-17 09:16:31
17541    12845    556    2016-01-21 01:52:22    2016-01-21 01:52:22
17542    14846    734    2015-11-07 14:28:12    2015-11-07 14:28:12
17543    15179    821    2015-08-31 15:30:22    2015-08-31 15:30:22
17544    14561    834    2016-03-27 14:04:32    2016-03-27 14:04:32
17545    10009    538    2015-06-02 12:55:58    2015-06-02 12:55:58
17546    14272    719    2015-07-02 01:53:47    2015-07-02 01:53:47
17547    17762    508    2016-04-20 16:46:11    2016-04-20 16:46:11
17548    17147    920    2015-08-18 16:51:23    2015-08-18 16:51:23
17549    10303    619    2015-10-13 21:45:09    2015-10-13 21:45:09
17550    15062    877    2015-09-09 14:45:16    2015-09-09 14:45:16
17551    19897    902    2015-10-19 22:14:30    2015-10-19 22:14:30
17552    14107    682    2016-03-29 00:36:49    2016-03-29 00:36:49
17553    16851    764    2016-02-21 12:51:15    2016-02-21 12:51:15
17554    10363    623    2015-06-23 18:22:54    2015-06-23 18:22:54
17555    13619    789    2015-12-17 15:13:43    2015-12-17 15:13:43
17556    16392    590    2015-06-03 05:30:04    2015-06-03 05:30:04
17557    16075    888    2016-02-24 20:54:05    2016-02-24 20:54:05
17558    13382    529    2016-02-15 07:52:34    2016-02-15 07:52:34
17559    17447    878    2016-02-11 05:46:47    2016-02-11 05:46:47
17560    15321    931    2016-02-27 18:12:35    2016-02-27 18:12:35
17561    18431    600    2015-09-24 05:34:32    2015-09-24 05:34:32
17562    17329    713    2016-02-21 03:55:40    2016-02-21 03:55:40
17563    12086    759    2015-12-15 02:39:20    2015-12-15 02:39:20
17564    10455    855    2015-09-17 04:49:59    2015-09-17 04:49:59
17565    15173    897    2015-08-31 01:38:05    2015-08-31 01:38:05
17566    13464    715    2015-05-14 22:40:01    2015-05-14 22:40:01
17567    13821    691    2015-12-09 00:23:54    2015-12-09 00:23:54
17568    19793    721    2015-12-15 15:48:50    2015-12-15 15:48:50
17569    11505    890    2015-10-31 09:32:12    2015-10-31 09:32:12
17570    15041    821    2015-11-11 03:46:24    2015-11-11 03:46:24
17571    18512    618    2015-12-05 21:25:28    2015-12-05 21:25:28
17572    17574    501    2015-11-08 07:37:19    2015-11-08 07:37:19
17573    17763    818    2015-07-09 18:11:52    2015-07-09 18:11:52
17574    18919    731    2015-10-03 04:19:37    2015-10-03 04:19:37
17575    13486    647    2015-06-06 10:42:04    2015-06-06 10:42:04
17576    15109    559    2015-07-15 21:16:56    2015-07-15 21:16:56
17577    10495    841    2016-01-06 07:49:36    2016-01-06 07:49:36
17578    11652    880    2015-05-08 06:03:13    2015-05-08 06:03:13
17579    13436    866    2016-02-24 16:37:22    2016-02-24 16:37:22
17580    17788    564    2015-08-14 16:32:27    2015-08-14 16:32:27
17581    16488    859    2015-10-04 14:18:45    2015-10-04 14:18:45
17582    10364    538    2015-05-13 17:09:36    2015-05-13 17:09:36
17583    19876    492    2015-12-18 23:49:34    2015-12-18 23:49:34
17584    14685    807    2015-05-24 00:57:54    2015-05-24 00:57:54
17585    16171    603    2016-02-10 17:09:32    2016-02-10 17:09:32
17586    13464    627    2015-10-24 16:34:21    2015-10-24 16:34:21
17587    10631    721    2015-12-30 17:03:29    2015-12-30 17:03:29
17588    15493    698    2015-04-26 23:42:17    2015-04-26 23:42:17
17589    14929    681    2015-05-19 06:01:10    2015-05-19 06:01:10
17590    19304    779    2015-09-10 23:05:23    2015-09-10 23:05:23
17591    14749    676    2015-08-31 09:20:29    2015-08-31 09:20:29
17592    13011    800    2015-06-06 07:59:09    2015-06-06 07:59:09
17593    16890    691    2016-01-22 06:31:09    2016-01-22 06:31:09
17594    18103    524    2015-08-06 16:14:07    2015-08-06 16:14:07
17595    10283    905    2016-03-04 11:30:07    2016-03-04 11:30:07
17596    15318    566    2015-11-27 00:27:08    2015-11-27 00:27:08
17597    11669    488    2015-09-21 18:43:18    2015-09-21 18:43:18
17598    14309    782    2015-09-26 04:29:29    2015-09-26 04:29:29
17599    15554    644    2016-03-14 17:28:53    2016-03-14 17:28:53
17600    17567    522    2015-07-20 23:11:28    2015-07-20 23:11:28
17601    10279    641    2015-05-25 21:30:10    2015-05-25 21:30:10
17602    15371    662    2015-05-24 17:58:32    2015-05-24 17:58:32
17603    11169    633    2015-10-09 14:55:04    2015-10-09 14:55:04
17604    11508    506    2015-04-28 17:37:03    2015-04-28 17:37:03
17605    10473    675    2015-05-20 16:49:38    2015-05-20 16:49:38
17606    15205    892    2015-10-01 22:07:24    2015-10-01 22:07:24
17607    10219    892    2015-08-04 01:13:27    2015-08-04 01:13:27
17608    11558    672    2016-03-25 13:11:43    2016-03-25 13:11:43
17609    18661    463    2016-02-10 02:05:06    2016-02-10 02:05:06
17610    16979    497    2016-02-08 00:15:17    2016-02-08 00:15:17
17611    19506    873    2016-02-09 01:44:22    2016-02-09 01:44:22
17612    18317    485    2015-05-06 01:38:45    2015-05-06 01:38:45
17613    19487    836    2015-11-13 09:13:14    2015-11-13 09:13:14
17614    16633    782    2016-04-11 12:57:16    2016-04-11 12:57:16
17615    16091    611    2015-06-23 14:22:26    2015-06-23 14:22:26
17616    11968    717    2015-05-24 05:40:27    2015-05-24 05:40:27
17617    13300    783    2015-12-04 01:05:08    2015-12-04 01:05:08
17618    16956    697    2015-12-06 03:23:31    2015-12-06 03:23:31
17619    13292    675    2015-06-15 09:00:40    2015-06-15 09:00:40
17620    12451    929    2016-02-25 15:21:29    2016-02-25 15:21:29
17621    18322    727    2015-08-05 05:04:28    2015-08-05 05:04:28
17622    13319    606    2015-09-08 14:53:20    2015-09-08 14:53:20
17623    19306    815    2016-03-06 09:44:54    2016-03-06 09:44:54
17624    11357    950    2016-03-29 11:26:41    2016-03-29 11:26:41
17625    13111    764    2015-07-25 00:12:40    2015-07-25 00:12:40
17626    12132    787    2016-04-11 18:32:06    2016-04-11 18:32:06
17627    18349    645    2016-02-11 18:47:14    2016-02-11 18:47:14
17628    15005    954    2015-11-25 00:11:02    2015-11-25 00:11:02
17629    17397    543    2015-08-20 15:53:57    2015-08-20 15:53:57
17630    12473    780    2016-01-20 18:05:03    2016-01-20 18:05:03
17631    14345    622    2015-06-12 08:31:57    2015-06-12 08:31:57
17632    17993    757    2015-07-13 14:18:21    2015-07-13 14:18:21
17633    18978    626    2016-02-21 05:37:12    2016-02-21 05:37:12
17634    19741    510    2016-03-04 06:49:33    2016-03-04 06:49:33
17635    12410    896    2016-03-04 08:38:01    2016-03-04 08:38:01
17636    18297    627    2015-05-12 03:27:30    2015-05-12 03:27:30
17637    15072    473    2016-01-31 12:51:27    2016-01-31 12:51:27
17638    16342    471    2016-03-08 13:50:44    2016-03-08 13:50:44
17639    11573    507    2015-05-26 20:37:23    2015-05-26 20:37:23
17640    13548    812    2016-03-29 05:44:09    2016-03-29 05:44:09
17641    14329    508    2015-07-07 22:32:56    2015-07-07 22:32:56
17642    19520    650    2015-09-15 01:50:09    2015-09-15 01:50:09
17643    14041    776    2015-10-05 22:29:22    2015-10-05 22:29:22
17644    13605    886    2015-05-30 09:02:48    2015-05-30 09:02:48
17645    13155    623    2016-04-16 13:32:18    2016-04-16 13:32:18
17646    11636    949    2015-12-01 11:54:13    2015-12-01 11:54:13
17647    15377    511    2015-10-17 03:43:51    2015-10-17 03:43:51
17648    19848    463    2016-03-26 08:20:31    2016-03-26 08:20:31
17649    17972    844    2015-10-20 14:47:22    2015-10-20 14:47:22
17650    16746    650    2016-04-11 12:27:15    2016-04-11 12:27:15
17651    18005    756    2015-12-20 20:17:51    2015-12-20 20:17:51
17652    14095    567    2015-12-18 19:02:13    2015-12-18 19:02:13
17653    13454    770    2015-10-23 01:37:17    2015-10-23 01:37:17
17654    11368    528    2015-11-07 14:28:02    2015-11-07 14:28:02
17655    12842    818    2015-08-30 05:45:20    2015-08-30 05:45:20
17656    11196    499    2015-12-11 20:13:23    2015-12-11 20:13:23
17657    18009    888    2016-04-10 23:08:45    2016-04-10 23:08:45
17658    12442    540    2015-08-14 14:49:55    2015-08-14 14:49:55
17659    15265    707    2015-08-31 09:13:56    2015-08-31 09:13:56
17660    11892    582    2015-12-14 03:43:42    2015-12-14 03:43:42
17661    13302    672    2015-11-27 05:23:05    2015-11-27 05:23:05
17662    19357    609    2015-05-29 20:15:36    2015-05-29 20:15:36
17663    15266    537    2016-04-20 16:13:46    2016-04-20 16:13:46
17664    18556    726    2015-10-24 10:10:28    2015-10-24 10:10:28
17665    11918    676    2016-02-07 10:05:20    2016-02-07 10:05:20
17666    18774    630    2015-08-11 02:02:03    2015-08-11 02:02:03
17667    14888    534    2016-02-07 11:05:50    2016-02-07 11:05:50
17668    12992    603    2016-04-09 01:09:55    2016-04-09 01:09:55
17669    10171    868    2015-12-13 15:34:01    2015-12-13 15:34:01
17670    10056    751    2015-11-13 19:33:45    2015-11-13 19:33:45
17671    16850    850    2016-04-02 21:28:36    2016-04-02 21:28:36
17672    10554    876    2015-07-08 22:15:13    2015-07-08 22:15:13
17673    18954    862    2016-03-26 13:43:13    2016-03-26 13:43:13
17674    15009    920    2015-09-28 05:18:22    2015-09-28 05:18:22
17675    14783    870    2015-10-02 03:36:04    2015-10-02 03:36:04
17676    19710    534    2015-07-26 13:20:43    2015-07-26 13:20:43
17677    10339    632    2015-10-22 22:58:48    2015-10-22 22:58:48
17678    10873    779    2016-03-05 15:03:02    2016-03-05 15:03:02
17679    15121    485    2015-08-01 02:35:14    2015-08-01 02:35:14
17680    19884    610    2015-07-06 14:02:23    2015-07-06 14:02:23
17681    14761    926    2016-02-09 11:59:36    2016-02-09 11:59:36
17682    10048    872    2015-12-09 03:10:39    2015-12-09 03:10:39
17683    16002    906    2015-10-08 18:05:06    2015-10-08 18:05:06
17684    16655    524    2015-12-06 04:58:36    2015-12-06 04:58:36
17685    11648    702    2016-03-30 06:57:57    2016-03-30 06:57:57
17686    10845    524    2015-06-16 16:16:10    2015-06-16 16:16:10
17687    15249    639    2015-08-04 00:03:39    2015-08-04 00:03:39
17688    15608    944    2016-02-18 22:03:48    2016-02-18 22:03:48
17689    10428    529    2015-12-03 13:15:17    2015-12-03 13:15:17
17690    11798    826    2015-08-22 21:57:29    2015-08-22 21:57:29
17691    16373    942    2015-07-10 10:51:22    2015-07-10 10:51:22
17692    16726    620    2015-05-03 16:51:51    2015-05-03 16:51:51
17693    17235    717    2015-10-01 00:06:51    2015-10-01 00:06:51
17694    17864    737    2015-10-21 19:27:00    2015-10-21 19:27:00
17695    13117    537    2015-09-11 10:15:21    2015-09-11 10:15:21
17696    11025    625    2016-04-08 12:13:56    2016-04-08 12:13:56
17697    14158    528    2015-12-11 05:56:31    2015-12-11 05:56:31
17698    13694    907    2016-02-28 14:53:11    2016-02-28 14:53:11
17699    19312    901    2015-10-12 03:47:56    2015-10-12 03:47:56
17700    18395    463    2016-03-31 09:20:38    2016-03-31 09:20:38
17701    16355    775    2015-11-25 06:15:55    2015-11-25 06:15:55
17702    17919    960    2015-12-20 15:26:34    2015-12-20 15:26:34
17703    18111    941    2016-03-02 00:26:37    2016-03-02 00:26:37
17704    18862    920    2016-02-06 18:58:19    2016-02-06 18:58:19
17705    19084    679    2015-09-19 00:45:47    2015-09-19 00:45:47
17706    10869    499    2015-05-08 12:53:28    2015-05-08 12:53:28
17707    15385    815    2015-11-27 16:03:08    2015-11-27 16:03:08
17708    14768    745    2016-03-09 02:49:10    2016-03-09 02:49:10
17709    10713    503    2015-12-16 05:51:27    2015-12-16 05:51:27
17710    12635    799    2015-10-31 15:30:01    2015-10-31 15:30:01
17711    17866    503    2016-01-24 15:46:44    2016-01-24 15:46:44
17712    19768    629    2016-03-02 03:04:08    2016-03-02 03:04:08
17713    14704    642    2015-11-09 12:20:33    2015-11-09 12:20:33
17714    19566    839    2015-08-16 18:52:23    2015-08-16 18:52:23
17715    17313    646    2015-07-01 05:17:12    2015-07-01 05:17:12
17716    10441    839    2015-05-16 20:45:16    2015-05-16 20:45:16
17717    16490    733    2016-04-05 02:26:28    2016-04-05 02:26:28
17718    17891    742    2015-04-27 22:40:09    2015-04-27 22:40:09
17719    14780    594    2015-06-10 05:29:15    2015-06-10 05:29:15
17720    13974    471    2015-12-15 06:07:59    2015-12-15 06:07:59
17721    15834    918    2015-08-24 23:08:26    2015-08-24 23:08:26
17722    15562    587    2016-03-07 15:51:44    2016-03-07 15:51:44
17723    12152    473    2015-09-06 22:47:36    2015-09-06 22:47:36
17724    16752    552    2015-07-16 00:39:50    2015-07-16 00:39:50
17725    10145    904    2015-10-29 18:30:28    2015-10-29 18:30:28
17726    17888    910    2015-08-25 01:31:46    2015-08-25 01:31:46
17727    16522    596    2015-12-20 20:30:03    2015-12-20 20:30:03
17728    14885    526    2015-11-24 21:33:32    2015-11-24 21:33:32
17729    17300    802    2016-04-04 01:18:31    2016-04-04 01:18:31
17730    16906    956    2015-11-16 15:24:21    2015-11-16 15:24:21
17731    11120    753    2015-11-09 14:15:36    2015-11-09 14:15:36
17732    14841    907    2015-12-02 04:56:49    2015-12-02 04:56:49
17733    18570    810    2015-08-15 14:25:26    2015-08-15 14:25:26
17734    17424    526    2015-08-04 15:23:50    2015-08-04 15:23:50
17735    13331    680    2015-10-12 18:14:39    2015-10-12 18:14:39
17736    10917    905    2015-11-26 16:16:15    2015-11-26 16:16:15
17737    12660    806    2015-05-30 06:22:57    2015-05-30 06:22:57
17738    19481    666    2015-07-12 15:57:19    2015-07-12 15:57:19
17739    12158    951    2015-05-06 21:01:34    2015-05-06 21:01:34
17740    11959    908    2015-07-15 16:54:34    2015-07-15 16:54:34
17741    12970    832    2015-12-27 03:29:49    2015-12-27 03:29:49
17742    12886    936    2015-07-03 12:35:49    2015-07-03 12:35:49
17743    17617    915    2016-02-10 00:22:33    2016-02-10 00:22:33
17744    11509    837    2015-12-21 15:25:12    2015-12-21 15:25:12
17745    14193    688    2016-03-17 01:32:02    2016-03-17 01:32:02
17746    13556    599    2016-02-03 01:44:13    2016-02-03 01:44:13
17747    13614    538    2015-05-13 06:55:19    2015-05-13 06:55:19
17748    10841    735    2015-08-20 15:29:52    2015-08-20 15:29:52
17749    10519    654    2015-12-28 12:29:07    2015-12-28 12:29:07
17750    12423    636    2015-10-22 23:34:56    2015-10-22 23:34:56
17751    10258    958    2016-03-25 20:37:19    2016-03-25 20:37:19
17752    13295    725    2015-09-16 10:59:42    2015-09-16 10:59:42
17753    12584    815    2015-07-07 07:14:26    2015-07-07 07:14:26
17754    10523    660    2016-01-14 06:44:41    2016-01-14 06:44:41
17755    10641    948    2015-06-30 12:41:08    2015-06-30 12:41:08
17756    15563    740    2016-03-19 23:34:06    2016-03-19 23:34:06
17757    16055    472    2015-08-12 03:08:41    2015-08-12 03:08:41
17758    16087    946    2015-06-20 20:43:18    2015-06-20 20:43:18
17759    14094    658    2015-10-24 04:29:54    2015-10-24 04:29:54
17760    19236    576    2015-06-10 00:02:55    2015-06-10 00:02:55
17761    13957    464    2015-11-23 19:24:16    2015-11-23 19:24:16
17762    14386    555    2015-09-18 08:09:13    2015-09-18 08:09:13
17763    13057    724    2015-07-12 08:23:00    2015-07-12 08:23:00
17764    13285    648    2015-06-24 09:04:07    2015-06-24 09:04:07
17765    18111    517    2016-03-08 21:22:41    2016-03-08 21:22:41
17766    11129    680    2015-05-12 02:55:23    2015-05-12 02:55:23
17767    12198    665    2015-08-08 00:49:23    2015-08-08 00:49:23
17768    19554    673    2015-11-14 19:31:07    2015-11-14 19:31:07
17769    14255    624    2016-02-20 23:48:44    2016-02-20 23:48:44
17770    19955    788    2015-11-13 10:41:59    2015-11-13 10:41:59
17771    18208    773    2015-09-30 01:39:28    2015-09-30 01:39:28
17772    14195    908    2015-12-15 18:52:24    2015-12-15 18:52:24
17773    18891    615    2015-11-15 02:04:11    2015-11-15 02:04:11
17774    13832    476    2015-08-10 11:40:23    2015-08-10 11:40:23
17775    16939    949    2015-08-08 17:11:21    2015-08-08 17:11:21
17776    12490    757    2015-08-14 21:55:55    2015-08-14 21:55:55
17777    16849    530    2016-03-15 06:15:16    2016-03-15 06:15:16
17778    17055    770    2015-09-12 16:24:16    2015-09-12 16:24:16
17779    16938    750    2015-11-20 07:41:57    2015-11-20 07:41:57
17780    13606    768    2015-06-15 00:47:59    2015-06-15 00:47:59
17781    12132    706    2016-01-24 16:35:25    2016-01-24 16:35:25
17782    16261    467    2016-04-15 13:44:25    2016-04-15 13:44:25
17783    14857    812    2015-11-04 00:41:40    2015-11-04 00:41:40
17784    11672    827    2015-11-11 15:16:56    2015-11-11 15:16:56
17785    17724    603    2015-10-09 06:11:31    2015-10-09 06:11:31
17786    13323    747    2015-04-29 12:59:20    2015-04-29 12:59:20
17787    13302    639    2015-09-25 13:29:46    2015-09-25 13:29:46
17788    11064    485    2015-11-17 07:19:55    2015-11-17 07:19:55
17789    18817    830    2016-04-10 05:39:47    2016-04-10 05:39:47
17790    15006    498    2015-07-30 05:48:22    2015-07-30 05:48:22
17791    16974    912    2015-04-25 15:12:47    2015-04-25 15:12:47
17792    16963    912    2015-12-15 03:44:05    2015-12-15 03:44:05
17793    11690    961    2015-07-22 13:03:05    2015-07-22 13:03:05
17794    16883    942    2016-03-15 08:45:50    2016-03-15 08:45:50
17795    19520    590    2016-02-06 09:20:57    2016-02-06 09:20:57
17796    15035    907    2015-06-15 05:15:57    2015-06-15 05:15:57
17797    18971    938    2015-06-28 18:49:14    2015-06-28 18:49:14
17798    10363    473    2016-01-21 04:41:30    2016-01-21 04:41:30
17799    15528    719    2015-11-11 02:50:49    2015-11-11 02:50:49
17800    10367    482    2015-12-11 04:34:58    2015-12-11 04:34:58
17801    12966    957    2015-05-20 20:02:34    2015-05-20 20:02:34
17802    12807    581    2016-01-16 12:14:26    2016-01-16 12:14:26
17803    12638    522    2015-05-10 06:48:59    2015-05-10 06:48:59
17804    16215    681    2016-04-10 18:01:51    2016-04-10 18:01:51
17805    18381    952    2015-11-22 07:52:42    2015-11-22 07:52:42
17806    18999    920    2015-10-13 17:50:53    2015-10-13 17:50:53
17807    14102    827    2015-05-16 04:18:58    2015-05-16 04:18:58
17808    13687    639    2015-11-10 19:46:51    2015-11-10 19:46:51
17809    17324    479    2015-05-22 01:37:42    2015-05-22 01:37:42
17810    17141    765    2015-06-16 05:35:24    2015-06-16 05:35:24
17811    17879    947    2015-12-04 03:47:39    2015-12-04 03:47:39
17812    16626    952    2016-01-10 00:30:13    2016-01-10 00:30:13
17813    10484    578    2016-01-12 20:53:31    2016-01-12 20:53:31
17814    17375    513    2015-07-12 03:07:52    2015-07-12 03:07:52
17815    12661    889    2016-04-10 01:38:57    2016-04-10 01:38:57
17816    14163    559    2015-08-14 07:05:26    2015-08-14 07:05:26
17817    10879    805    2016-02-17 13:23:19    2016-02-17 13:23:19
17818    16481    611    2015-10-22 17:22:42    2015-10-22 17:22:42
17819    16008    633    2015-08-04 09:10:43    2015-08-04 09:10:43
17820    15576    581    2015-05-09 15:03:49    2015-05-09 15:03:49
17821    15527    848    2016-02-18 14:25:06    2016-02-18 14:25:06
17822    18022    847    2016-01-20 02:58:24    2016-01-20 02:58:24
17823    11169    770    2016-01-29 08:11:30    2016-01-29 08:11:30
17824    19664    937    2015-06-18 23:25:25    2015-06-18 23:25:25
17825    10024    607    2015-07-05 02:15:23    2015-07-05 02:15:23
17826    14182    575    2015-08-24 06:32:26    2015-08-24 06:32:26
17827    13192    523    2016-04-20 17:14:45    2016-04-20 17:14:45
17828    10809    522    2016-02-15 01:59:23    2016-02-15 01:59:23
17829    15966    483    2015-09-18 06:09:10    2015-09-18 06:09:10
17830    18832    627    2015-08-28 21:21:09    2015-08-28 21:21:09
17831    12483    588    2015-12-02 04:31:08    2015-12-02 04:31:08
17832    12010    941    2015-07-30 02:48:33    2015-07-30 02:48:33
17833    15142    652    2016-04-11 21:28:41    2016-04-11 21:28:41
17834    12336    955    2015-06-09 20:11:03    2015-06-09 20:11:03
17835    16962    851    2015-11-13 15:42:06    2015-11-13 15:42:06
17836    12182    612    2015-07-30 09:36:50    2015-07-30 09:36:50
17837    15585    894    2015-09-14 05:57:05    2015-09-14 05:57:05
17838    15977    627    2015-07-17 10:32:48    2015-07-17 10:32:48
17839    15524    585    2016-02-06 22:33:40    2016-02-06 22:33:40
17840    10941    868    2015-11-28 22:19:12    2015-11-28 22:19:12
17841    13145    660    2015-08-11 23:30:13    2015-08-11 23:30:13
17842    15784    543    2015-06-05 01:24:54    2015-06-05 01:24:54
17843    17272    679    2015-05-28 03:36:27    2015-05-28 03:36:27
17844    19935    787    2016-04-10 08:20:31    2016-04-10 08:20:31
17845    19032    931    2015-07-11 00:29:50    2015-07-11 00:29:50
17846    17008    614    2016-01-17 00:52:28    2016-01-17 00:52:28
17847    17541    644    2015-07-16 17:18:24    2015-07-16 17:18:24
17848    10381    753    2015-09-26 18:31:36    2015-09-26 18:31:36
17849    10067    483    2015-07-24 10:26:57    2015-07-24 10:26:57
17850    14770    805    2015-05-14 21:56:23    2015-05-14 21:56:23
17851    14156    839    2016-01-03 10:27:42    2016-01-03 10:27:42
17852    13200    954    2015-06-29 17:29:53    2015-06-29 17:29:53
17853    13179    849    2015-08-22 20:54:45    2015-08-22 20:54:45
17854    18944    690    2015-11-26 11:56:25    2015-11-26 11:56:25
17855    12077    821    2015-10-08 12:48:51    2015-10-08 12:48:51
17856    16459    948    2015-04-30 02:08:28    2015-04-30 02:08:28
17857    16711    545    2015-07-23 07:28:57    2015-07-23 07:28:57
17858    16206    860    2015-08-30 17:45:35    2015-08-30 17:45:35
17859    11715    517    2015-05-27 11:54:31    2015-05-27 11:54:31
17860    17842    659    2015-04-25 17:33:04    2015-04-25 17:33:04
17861    15297    689    2015-11-18 19:20:44    2015-11-18 19:20:44
17862    18189    857    2016-03-11 09:10:53    2016-03-11 09:10:53
17863    15478    514    2016-04-13 21:13:14    2016-04-13 21:13:14
17864    13301    708    2015-06-17 19:57:33    2015-06-17 19:57:33
17865    12899    949    2015-12-23 06:51:42    2015-12-23 06:51:42
17866    19677    620    2016-01-21 10:57:49    2016-01-21 10:57:49
17867    16083    833    2015-10-03 07:15:21    2015-10-03 07:15:21
17868    13116    540    2015-07-16 01:13:21    2015-07-16 01:13:21
17869    11351    489    2015-10-23 14:56:21    2015-10-23 14:56:21
17870    11326    951    2015-07-22 06:55:21    2015-07-22 06:55:21
17871    13475    637    2015-11-21 08:52:42    2015-11-21 08:52:42
17872    19033    942    2016-02-14 19:07:03    2016-02-14 19:07:03
17873    12555    866    2015-06-17 07:02:13    2015-06-17 07:02:13
17874    14483    927    2016-01-07 02:32:00    2016-01-07 02:32:00
17875    13458    895    2015-12-18 02:30:04    2015-12-18 02:30:04
17876    12786    480    2015-09-03 16:02:57    2015-09-03 16:02:57
17877    19208    491    2015-10-02 12:28:12    2015-10-02 12:28:12
17878    13970    788    2016-01-18 10:20:16    2016-01-18 10:20:16
17879    19933    627    2015-09-14 00:28:00    2015-09-14 00:28:00
17880    13109    900    2015-06-01 16:56:24    2015-06-01 16:56:24
17881    11828    568    2015-06-09 23:45:42    2015-06-09 23:45:42
17882    11202    537    2015-11-23 20:20:29    2015-11-23 20:20:29
17883    10863    584    2016-04-02 09:33:04    2016-04-02 09:33:04
17884    16744    665    2015-09-18 05:19:40    2015-09-18 05:19:40
17885    18535    725    2016-01-06 14:11:05    2016-01-06 14:11:05
17886    10667    793    2015-12-01 01:09:57    2015-12-01 01:09:57
17887    11903    865    2015-08-11 20:07:30    2015-08-11 20:07:30
17888    19305    554    2016-03-16 14:26:59    2016-03-16 14:26:59
17889    15846    876    2016-04-12 17:22:48    2016-04-12 17:22:48
17890    11324    779    2016-02-17 08:59:15    2016-02-17 08:59:15
17891    16786    616    2015-08-07 21:00:40    2015-08-07 21:00:40
17892    11107    659    2015-11-02 19:45:01    2015-11-02 19:45:01
17893    10824    625    2015-06-24 06:22:50    2015-06-24 06:22:50
17894    17148    938    2016-03-22 20:47:50    2016-03-22 20:47:50
17895    16521    918    2015-05-16 22:33:29    2015-05-16 22:33:29
17896    16062    787    2015-12-02 03:52:59    2015-12-02 03:52:59
17897    12231    580    2016-02-10 06:31:14    2016-02-10 06:31:14
17898    19208    716    2015-07-12 00:50:06    2015-07-12 00:50:06
17899    14284    797    2015-10-23 03:55:48    2015-10-23 03:55:48
17900    14876    560    2016-01-24 00:30:03    2016-01-24 00:30:03
17901    11152    712    2015-09-04 01:58:23    2015-09-04 01:58:23
17902    18982    550    2015-09-20 14:46:11    2015-09-20 14:46:11
17903    13120    569    2016-01-20 07:34:15    2016-01-20 07:34:15
17904    12761    636    2016-04-13 03:24:29    2016-04-13 03:24:29
17905    14350    749    2015-07-17 21:35:29    2015-07-17 21:35:29
17906    13981    579    2015-10-23 09:52:24    2015-10-23 09:52:24
17907    16952    806    2015-06-09 05:54:55    2015-06-09 05:54:55
17908    18226    484    2016-01-01 16:55:20    2016-01-01 16:55:20
17909    17500    606    2015-06-29 04:07:16    2015-06-29 04:07:16
17910    18076    618    2015-09-04 15:23:14    2015-09-04 15:23:14
17911    16101    928    2016-02-27 06:33:32    2016-02-27 06:33:32
17912    15104    764    2015-10-27 19:27:43    2015-10-27 19:27:43
17913    11963    672    2016-02-12 13:36:59    2016-02-12 13:36:59
17914    10939    799    2015-09-24 04:55:25    2015-09-24 04:55:25
17915    16437    640    2015-06-12 07:11:41    2015-06-12 07:11:41
17916    19620    914    2015-09-19 13:05:36    2015-09-19 13:05:36
17917    12705    771    2016-03-28 03:10:44    2016-03-28 03:10:44
17918    12926    562    2016-02-10 01:43:04    2016-02-10 01:43:04
17919    12303    488    2015-11-18 17:51:58    2015-11-18 17:51:58
17920    18697    910    2015-04-30 14:19:06    2015-04-30 14:19:06
17921    14176    547    2015-06-21 15:12:48    2015-06-21 15:12:48
17922    17488    870    2015-10-20 07:05:21    2015-10-20 07:05:21
17923    18288    498    2015-09-21 02:28:29    2015-09-21 02:28:29
17924    15533    885    2016-03-11 17:48:28    2016-03-11 17:48:28
17925    12828    620    2015-09-24 09:21:34    2015-09-24 09:21:34
17926    18560    695    2015-09-05 02:08:21    2015-09-05 02:08:21
17927    10634    548    2015-10-31 19:54:46    2015-10-31 19:54:46
17928    10472    692    2015-05-11 04:03:47    2015-05-11 04:03:47
17929    14904    744    2015-07-12 11:49:47    2015-07-12 11:49:47
17930    14632    881    2015-05-06 17:49:40    2015-05-06 17:49:40
17931    14612    960    2015-05-05 21:20:22    2015-05-05 21:20:22
17932    15835    568    2015-05-24 06:09:28    2015-05-24 06:09:28
17933    15562    945    2016-02-11 10:10:25    2016-02-11 10:10:25
17934    13721    911    2015-08-27 21:12:54    2015-08-27 21:12:54
17935    10613    484    2016-01-11 00:45:21    2016-01-11 00:45:21
17936    10780    503    2015-08-15 22:59:30    2015-08-15 22:59:30
17937    19739    829    2016-01-18 10:27:57    2016-01-18 10:27:57
17938    11252    494    2016-01-04 03:23:30    2016-01-04 03:23:30
17939    12485    927    2015-11-27 06:39:58    2015-11-27 06:39:58
17940    11412    481    2016-01-06 12:05:49    2016-01-06 12:05:49
17941    17363    487    2015-06-21 03:50:39    2015-06-21 03:50:39
17942    12816    869    2015-04-25 19:49:09    2015-04-25 19:49:09
17943    11852    748    2015-06-07 08:23:50    2015-06-07 08:23:50
17944    10004    497    2015-07-04 07:02:11    2015-07-04 07:02:11
17945    14798    516    2015-10-22 21:26:04    2015-10-22 21:26:04
17946    14700    837    2015-07-05 23:41:32    2015-07-05 23:41:32
17947    14508    573    2015-08-02 02:26:03    2015-08-02 02:26:03
17948    12089    794    2015-07-02 12:27:19    2015-07-02 12:27:19
17949    10233    925    2015-09-11 11:32:34    2015-09-11 11:32:34
17950    10274    626    2016-02-15 00:13:44    2016-02-15 00:13:44
17951    15664    628    2015-05-02 05:38:33    2015-05-02 05:38:33
17952    17252    656    2016-04-01 07:44:40    2016-04-01 07:44:40
17953    19724    876    2016-01-25 10:05:35    2016-01-25 10:05:35
17954    15849    883    2016-01-15 23:29:33    2016-01-15 23:29:33
17955    14593    796    2016-02-19 11:25:47    2016-02-19 11:25:47
17956    12523    677    2015-08-27 16:28:07    2015-08-27 16:28:07
17957    16238    867    2016-02-21 23:36:14    2016-02-21 23:36:14
17958    11104    499    2015-09-02 22:46:25    2015-09-02 22:46:25
17959    11175    934    2015-10-06 20:06:55    2015-10-06 20:06:55
17960    13163    673    2016-01-01 08:43:28    2016-01-01 08:43:28
17961    10758    601    2015-10-24 22:58:53    2015-10-24 22:58:53
17962    15394    919    2015-10-23 10:48:28    2015-10-23 10:48:28
17963    13528    682    2015-09-14 22:19:30    2015-09-14 22:19:30
17964    14686    503    2016-04-01 01:32:23    2016-04-01 01:32:23
17965    11547    951    2015-06-08 03:20:20    2015-06-08 03:20:20
17966    10181    787    2015-10-29 23:06:14    2015-10-29 23:06:14
17967    16451    937    2016-02-10 07:24:26    2016-02-10 07:24:26
17968    18892    599    2015-05-22 14:42:52    2015-05-22 14:42:52
17969    14610    690    2016-02-03 12:48:11    2016-02-03 12:48:11
17970    11125    484    2015-06-19 20:55:50    2015-06-19 20:55:50
17971    12682    513    2016-03-28 02:27:39    2016-03-28 02:27:39
17972    11665    938    2015-10-21 15:02:09    2015-10-21 15:02:09
17973    14765    777    2016-04-07 13:40:04    2016-04-07 13:40:04
17974    19898    914    2015-06-26 16:38:42    2015-06-26 16:38:42
17975    18313    933    2016-03-10 19:27:59    2016-03-10 19:27:59
17976    17849    726    2016-01-22 17:45:07    2016-01-22 17:45:07
17977    19602    637    2015-12-30 21:36:23    2015-12-30 21:36:23
17978    12435    525    2015-05-24 13:50:21    2015-05-24 13:50:21
17979    10835    571    2015-07-05 00:54:01    2015-07-05 00:54:01
17980    18641    535    2016-01-15 12:57:12    2016-01-15 12:57:12
17981    10848    822    2015-11-14 19:44:03    2015-11-14 19:44:03
17982    16947    657    2015-07-14 14:25:44    2015-07-14 14:25:44
17983    19610    648    2015-09-05 09:34:46    2015-09-05 09:34:46
17984    12617    567    2015-07-06 18:47:28    2015-07-06 18:47:28
17985    13101    468    2015-07-07 07:16:42    2015-07-07 07:16:42
17986    10674    511    2015-05-20 17:13:22    2015-05-20 17:13:22
17987    17026    566    2015-12-24 12:41:30    2015-12-24 12:41:30
17988    16267    698    2016-03-16 19:20:11    2016-03-16 19:20:11
17989    16857    862    2015-12-01 05:37:18    2015-12-01 05:37:18
17990    11248    620    2015-07-31 06:52:21    2015-07-31 06:52:21
17991    12860    901    2015-11-27 06:31:45    2015-11-27 06:31:45
17992    15647    468    2015-12-08 00:24:54    2015-12-08 00:24:54
17993    16708    846    2016-01-19 16:34:13    2016-01-19 16:34:13
17994    15123    704    2015-09-23 16:10:50    2015-09-23 16:10:50
17995    11762    817    2016-01-19 17:45:51    2016-01-19 17:45:51
17996    13516    927    2015-12-26 23:06:15    2015-12-26 23:06:15
17997    17305    472    2015-09-14 00:04:34    2015-09-14 00:04:34
17998    18903    703    2016-03-05 12:01:03    2016-03-05 12:01:03
17999    13292    886    2015-08-25 18:09:59    2015-08-25 18:09:59
18000    11960    852    2015-07-18 20:51:41    2015-07-18 20:51:41
18001    13298    654    2015-06-20 15:09:09    2015-06-20 15:09:09
18002    10897    529    2016-03-11 23:32:41    2016-03-11 23:32:41
18003    11113    960    2015-06-24 20:31:42    2015-06-24 20:31:42
18004    16997    846    2015-04-27 00:39:31    2015-04-27 00:39:31
18005    10260    924    2015-12-08 08:10:21    2015-12-08 08:10:21
18006    12897    789    2015-05-14 23:44:03    2015-05-14 23:44:03
18007    12762    616    2015-12-27 19:22:31    2015-12-27 19:22:31
18008    11059    629    2016-04-12 05:56:15    2016-04-12 05:56:15
18009    13513    473    2015-07-14 01:30:01    2015-07-14 01:30:01
18010    10694    733    2016-04-03 05:06:20    2016-04-03 05:06:20
18011    15059    667    2015-12-18 07:21:17    2015-12-18 07:21:17
18012    11949    497    2015-05-16 02:38:59    2015-05-16 02:38:59
18013    11559    733    2016-04-20 14:10:03    2016-04-20 14:10:03
18014    19709    622    2016-02-26 10:35:12    2016-02-26 10:35:12
18015    19725    479    2015-05-21 08:00:07    2015-05-21 08:00:07
18016    15501    838    2016-01-31 16:29:07    2016-01-31 16:29:07
18017    15751    910    2016-02-09 16:26:47    2016-02-09 16:26:47
18018    13245    774    2015-12-22 21:53:47    2015-12-22 21:53:47
18019    16942    929    2015-12-08 13:51:21    2015-12-08 13:51:21
18020    13034    583    2016-03-21 14:55:42    2016-03-21 14:55:42
18021    14761    801    2015-09-06 08:11:16    2015-09-06 08:11:16
18022    17077    613    2016-03-06 06:40:51    2016-03-06 06:40:51
18023    14850    893    2015-12-06 11:08:52    2015-12-06 11:08:52
18024    17442    900    2015-04-28 18:05:18    2015-04-28 18:05:18
18025    11006    696    2015-12-17 11:03:01    2015-12-17 11:03:01
18026    11759    942    2016-02-09 22:33:02    2016-02-09 22:33:02
18027    13699    836    2015-04-24 07:13:45    2015-04-24 07:13:45
18028    12774    602    2015-11-20 20:52:53    2015-11-20 20:52:53
18029    18878    576    2015-05-19 20:53:57    2015-05-19 20:53:57
18030    16405    701    2015-12-02 12:10:33    2015-12-02 12:10:33
18031    12882    604    2015-07-14 21:22:04    2015-07-14 21:22:04
18032    14037    832    2015-07-09 02:15:54    2015-07-09 02:15:54
18033    14974    834    2015-04-22 16:15:48    2015-04-22 16:15:48
18034    12025    931    2015-08-29 10:40:45    2015-08-29 10:40:45
18035    16736    900    2016-01-17 08:13:02    2016-01-17 08:13:02
18036    12045    817    2015-05-04 20:16:47    2015-05-04 20:16:47
18037    15040    727    2015-06-21 23:01:42    2015-06-21 23:01:42
18038    11337    480    2016-03-26 10:56:10    2016-03-26 10:56:10
18039    15536    949    2015-06-29 07:47:24    2015-06-29 07:47:24
18040    14452    729    2016-03-22 02:13:50    2016-03-22 02:13:50
18041    16739    844    2015-10-26 14:03:14    2015-10-26 14:03:14
18042    16575    697    2015-10-11 04:16:51    2015-10-11 04:16:51
18043    13518    820    2016-01-19 14:54:50    2016-01-19 14:54:50
18044    12207    949    2015-10-28 10:23:28    2015-10-28 10:23:28
18045    10545    625    2015-09-20 17:31:03    2015-09-20 17:31:03
18046    10695    625    2015-08-30 02:07:36    2015-08-30 02:07:36
18047    19868    505    2015-07-02 05:03:07    2015-07-02 05:03:07
18048    19301    959    2015-11-09 03:57:17    2015-11-09 03:57:17
18049    12431    916    2015-07-31 12:39:00    2015-07-31 12:39:00
18050    13791    933    2016-02-01 04:01:55    2016-02-01 04:01:55
18051    14992    696    2015-11-03 23:03:11    2015-11-03 23:03:11
18052    11682    705    2015-08-11 01:56:54    2015-08-11 01:56:54
18053    16682    946    2015-06-14 13:00:18    2015-06-14 13:00:18
18054    13213    698    2016-01-16 10:52:42    2016-01-16 10:52:42
18055    17417    613    2016-02-03 19:29:34    2016-02-03 19:29:34
18056    11782    898    2015-12-05 08:10:14    2015-12-05 08:10:14
18057    15323    537    2015-09-06 20:07:05    2015-09-06 20:07:05
18058    13533    640    2015-12-23 01:05:08    2015-12-23 01:05:08
18059    11539    666    2015-04-30 22:53:28    2015-04-30 22:53:28
18060    19076    756    2016-01-07 06:42:16    2016-01-07 06:42:16
18061    10388    636    2015-06-29 01:13:55    2015-06-29 01:13:55
18062    10658    683    2015-12-07 22:23:27    2015-12-07 22:23:27
18063    13732    805    2015-10-13 14:09:06    2015-10-13 14:09:06
18064    17105    590    2015-08-15 23:32:30    2015-08-15 23:32:30
18065    17195    784    2015-08-20 15:47:23    2015-08-20 15:47:23
18066    16715    712    2015-09-08 06:15:39    2015-09-08 06:15:39
18067    10951    701    2015-11-30 10:42:22    2015-11-30 10:42:22
18068    13817    916    2015-06-02 06:32:50    2015-06-02 06:32:50
18069    10781    907    2015-08-16 16:16:45    2015-08-16 16:16:45
18070    19014    618    2015-08-26 19:20:29    2015-08-26 19:20:29
18071    16086    599    2015-12-08 15:11:23    2015-12-08 15:11:23
18072    14339    519    2016-01-17 05:35:03    2016-01-17 05:35:03
18073    12825    521    2015-06-27 21:47:01    2015-06-27 21:47:01
18074    10406    729    2015-07-22 21:40:30    2015-07-22 21:40:30
18075    11167    609    2015-12-11 16:34:22    2015-12-11 16:34:22
18076    12072    727    2016-01-02 04:22:25    2016-01-02 04:22:25
18077    18709    659    2015-07-24 16:31:28    2015-07-24 16:31:28
18078    13338    912    2015-10-10 19:41:08    2015-10-10 19:41:08
18079    13967    755    2015-09-07 06:28:30    2015-09-07 06:28:30
18080    12623    538    2015-10-23 07:23:39    2015-10-23 07:23:39
18081    11733    831    2016-02-02 00:05:38    2016-02-02 00:05:38
18082    15136    865    2015-07-13 05:25:01    2015-07-13 05:25:01
18083    19382    805    2015-05-13 14:45:28    2015-05-13 14:45:28
18084    12486    577    2015-09-04 14:07:57    2015-09-04 14:07:57
18085    19789    894    2015-06-22 08:22:47    2015-06-22 08:22:47
18086    15693    805    2016-02-21 09:37:12    2016-02-21 09:37:12
18087    14996    503    2015-07-06 17:13:13    2015-07-06 17:13:13
18088    13814    719    2015-06-25 08:24:56    2015-06-25 08:24:56
18089    19911    518    2015-06-03 01:22:12    2015-06-03 01:22:12
18090    10459    634    2015-06-09 22:50:35    2015-06-09 22:50:35
18091    13726    556    2015-06-12 01:57:18    2015-06-12 01:57:18
18092    18198    828    2015-05-08 14:00:15    2015-05-08 14:00:15
18093    12398    720    2015-04-29 15:51:23    2015-04-29 15:51:23
18094    16780    744    2015-06-23 14:23:41    2015-06-23 14:23:41
18095    14950    878    2015-05-22 21:12:40    2015-05-22 21:12:40
18096    17925    843    2016-01-13 11:29:11    2016-01-13 11:29:11
18097    19977    701    2016-03-02 06:37:30    2016-03-02 06:37:30
18098    11812    941    2016-02-02 13:27:18    2016-02-02 13:27:18
18099    12516    547    2015-12-26 19:56:27    2015-12-26 19:56:27
18100    18860    522    2015-09-07 20:08:52    2015-09-07 20:08:52
18101    20000    811    2015-09-26 06:55:33    2015-09-26 06:55:33
18102    16939    909    2016-02-02 22:07:59    2016-02-02 22:07:59
18103    18753    682    2015-11-04 00:41:32    2015-11-04 00:41:32
18104    11409    624    2016-04-16 12:13:05    2016-04-16 12:13:05
18105    13949    901    2015-09-29 13:21:48    2015-09-29 13:21:48
18106    12392    902    2015-05-11 09:50:37    2015-05-11 09:50:37
18107    15354    598    2015-08-07 20:15:50    2015-08-07 20:15:50
18108    14543    809    2015-05-20 13:11:41    2015-05-20 13:11:41
18109    18207    855    2015-07-12 12:34:24    2015-07-12 12:34:24
18110    18624    891    2015-06-10 05:27:38    2015-06-10 05:27:38
18111    18288    589    2015-10-14 06:38:07    2015-10-14 06:38:07
18112    19313    548    2016-04-17 07:04:48    2016-04-17 07:04:48
18113    12748    603    2016-01-13 02:17:11    2016-01-13 02:17:11
18114    12203    476    2015-10-23 20:04:52    2015-10-23 20:04:52
18115    17196    473    2016-02-07 04:18:09    2016-02-07 04:18:09
18116    19747    862    2015-08-11 08:14:14    2015-08-11 08:14:14
18117    14089    562    2015-06-20 13:17:39    2015-06-20 13:17:39
18118    13848    752    2016-01-22 09:23:10    2016-01-22 09:23:10
18119    11988    829    2015-06-29 19:48:22    2015-06-29 19:48:22
18120    19702    669    2016-02-17 09:45:54    2016-02-17 09:45:54
18121    14169    657    2016-03-26 08:27:24    2016-03-26 08:27:24
18122    11843    812    2015-05-06 13:33:56    2015-05-06 13:33:56
18123    17181    906    2015-05-21 07:09:56    2015-05-21 07:09:56
18124    12062    574    2015-09-11 12:11:29    2015-09-11 12:11:29
18125    14902    519    2016-02-08 19:27:36    2016-02-08 19:27:36
18126    14651    722    2016-04-03 18:28:40    2016-04-03 18:28:40
18127    10276    793    2015-07-29 23:14:02    2015-07-29 23:14:02
18128    14193    933    2015-09-23 05:22:52    2015-09-23 05:22:52
18129    16479    840    2015-09-22 04:29:26    2015-09-22 04:29:26
18130    15604    532    2016-03-24 05:44:06    2016-03-24 05:44:06
18131    13004    702    2015-12-20 15:24:12    2015-12-20 15:24:12
18132    16499    699    2016-01-24 16:56:40    2016-01-24 16:56:40
18133    16428    662    2016-01-25 16:37:59    2016-01-25 16:37:59
18134    11310    537    2015-05-02 15:44:35    2015-05-02 15:44:35
18135    12219    886    2015-09-11 03:06:15    2015-09-11 03:06:15
18136    19531    836    2015-09-25 20:19:41    2015-09-25 20:19:41
18137    12231    943    2016-01-03 02:04:44    2016-01-03 02:04:44
18138    18731    876    2015-12-20 10:31:34    2015-12-20 10:31:34
18139    12872    732    2015-08-13 14:30:17    2015-08-13 14:30:17
18140    13946    725    2015-05-06 09:17:08    2015-05-06 09:17:08
18141    13109    604    2016-02-17 20:05:12    2016-02-17 20:05:12
18142    13522    913    2015-07-24 13:23:36    2015-07-24 13:23:36
18143    19665    743    2015-12-01 00:51:43    2015-12-01 00:51:43
18144    18849    621    2015-07-11 17:52:41    2015-07-11 17:52:41
18145    12477    728    2015-08-26 19:50:28    2015-08-26 19:50:28
18146    18548    931    2015-04-29 09:58:59    2015-04-29 09:58:59
18147    10877    564    2015-04-28 17:41:30    2015-04-28 17:41:30
18148    15668    905    2015-11-02 00:29:23    2015-11-02 00:29:23
18149    15088    701    2015-05-28 23:35:37    2015-05-28 23:35:37
18150    19022    936    2015-12-13 12:27:56    2015-12-13 12:27:56
18151    15376    799    2016-03-06 08:46:13    2016-03-06 08:46:13
18152    19001    861    2015-04-30 15:21:43    2015-04-30 15:21:43
18153    13019    504    2016-03-25 10:32:15    2016-03-25 10:32:15
18154    16746    519    2015-07-02 14:52:47    2015-07-02 14:52:47
18155    12203    950    2016-03-07 06:21:56    2016-03-07 06:21:56
18156    10705    932    2016-04-01 06:18:41    2016-04-01 06:18:41
18157    16026    907    2015-08-06 09:33:52    2015-08-06 09:33:52
18158    15133    797    2016-02-16 09:19:53    2016-02-16 09:19:53
18159    19697    798    2015-07-31 01:33:07    2015-07-31 01:33:07
18160    17647    702    2015-05-28 14:52:59    2015-05-28 14:52:59
18161    12373    887    2016-03-28 15:35:24    2016-03-28 15:35:24
18162    11396    626    2016-03-24 18:29:01    2016-03-24 18:29:01
18163    19610    565    2016-02-07 06:35:40    2016-02-07 06:35:40
18164    10911    678    2015-11-29 03:11:22    2015-11-29 03:11:22
18165    14472    858    2015-05-07 12:59:17    2015-05-07 12:59:17
18166    19413    960    2015-11-07 22:06:42    2015-11-07 22:06:42
18167    13646    797    2016-01-18 09:08:45    2016-01-18 09:08:45
18168    13406    659    2016-01-31 20:39:27    2016-01-31 20:39:27
18169    14563    505    2015-11-17 03:07:42    2015-11-17 03:07:42
18170    19949    638    2016-02-20 21:52:56    2016-02-20 21:52:56
18171    19810    703    2016-02-17 22:40:10    2016-02-17 22:40:10
18172    17318    890    2015-10-27 17:26:55    2015-10-27 17:26:55
18173    14592    569    2015-06-26 08:04:21    2015-06-26 08:04:21
18174    10196    643    2015-12-12 14:35:46    2015-12-12 14:35:46
18175    10365    865    2015-05-10 13:25:19    2015-05-10 13:25:19
18176    19593    527    2015-11-10 16:35:23    2015-11-10 16:35:23
18177    19357    865    2015-05-12 14:07:03    2015-05-12 14:07:03
18178    18914    818    2015-05-13 04:18:04    2015-05-13 04:18:04
18179    16807    803    2015-08-28 14:03:53    2015-08-28 14:03:53
18180    18430    844    2015-11-14 13:09:54    2015-11-14 13:09:54
18181    10682    776    2015-08-13 05:45:12    2015-08-13 05:45:12
18182    10334    863    2015-05-26 23:41:21    2015-05-26 23:41:21
18183    13369    801    2016-03-04 00:04:22    2016-03-04 00:04:22
18184    15105    872    2016-01-21 19:12:06    2016-01-21 19:12:06
18185    18431    471    2016-03-18 15:28:57    2016-03-18 15:28:57
18186    11088    794    2015-10-13 14:37:03    2015-10-13 14:37:03
18187    11939    553    2015-05-19 02:14:33    2015-05-19 02:14:33
18188    14907    534    2015-10-18 16:21:52    2015-10-18 16:21:52
18189    11187    780    2015-11-10 08:57:38    2015-11-10 08:57:38
18190    12389    944    2015-09-18 16:05:26    2015-09-18 16:05:26
18191    17666    910    2015-04-25 19:50:02    2015-04-25 19:50:02
18192    15230    648    2015-10-20 23:53:15    2015-10-20 23:53:15
18193    16239    942    2015-07-20 17:16:44    2015-07-20 17:16:44
18194    14697    803    2015-11-28 22:16:53    2015-11-28 22:16:53
18195    14933    470    2016-03-19 19:07:18    2016-03-19 19:07:18
18196    12773    597    2015-07-20 19:35:37    2015-07-20 19:35:37
18197    14546    941    2016-01-22 18:31:32    2016-01-22 18:31:32
18198    14861    605    2015-08-21 13:45:11    2015-08-21 13:45:11
18199    13268    827    2015-12-12 04:51:46    2015-12-12 04:51:46
18200    17695    776    2016-02-20 09:56:24    2016-02-20 09:56:24
18201    12275    765    2015-10-09 08:15:52    2015-10-09 08:15:52
18202    16861    673    2016-01-26 23:25:15    2016-01-26 23:25:15
18203    11855    727    2016-03-13 23:41:49    2016-03-13 23:41:49
18204    15213    744    2015-12-12 15:48:05    2015-12-12 15:48:05
18205    15031    688    2016-03-22 09:25:11    2016-03-22 09:25:11
18206    17514    742    2015-12-31 12:22:03    2015-12-31 12:22:03
18207    15337    866    2016-03-14 09:09:01    2016-03-14 09:09:01
18208    19509    593    2015-07-05 23:02:41    2015-07-05 23:02:41
18209    16115    639    2015-10-06 03:05:59    2015-10-06 03:05:59
18210    13156    875    2015-04-30 21:34:04    2015-04-30 21:34:04
18211    13634    844    2015-05-29 02:13:55    2015-05-29 02:13:55
18212    12220    771    2015-12-18 14:37:45    2015-12-18 14:37:45
18213    17157    701    2016-01-17 23:47:59    2016-01-17 23:47:59
18214    10713    667    2016-03-07 07:22:56    2016-03-07 07:22:56
18215    17565    636    2015-10-20 08:08:24    2015-10-20 08:08:24
18216    16584    600    2015-06-29 05:21:22    2015-06-29 05:21:22
18217    16872    830    2016-03-21 11:13:39    2016-03-21 11:13:39
18218    11166    578    2016-04-08 00:37:21    2016-04-08 00:37:21
18219    19486    777    2016-01-04 15:55:58    2016-01-04 15:55:58
18220    13507    932    2016-01-23 07:37:09    2016-01-23 07:37:09
18221    11641    799    2016-02-20 12:51:31    2016-02-20 12:51:31
18222    18482    891    2016-02-06 20:16:09    2016-02-06 20:16:09
18223    15159    697    2015-06-14 09:48:33    2015-06-14 09:48:33
18224    10213    630    2015-10-10 21:38:54    2015-10-10 21:38:54
18225    14057    632    2015-06-21 04:37:05    2015-06-21 04:37:05
18226    14912    890    2015-07-15 18:00:52    2015-07-15 18:00:52
18227    13787    940    2015-05-08 03:52:07    2015-05-08 03:52:07
18228    16438    708    2015-05-07 14:45:50    2015-05-07 14:45:50
18229    11726    685    2015-05-20 14:51:37    2015-05-20 14:51:37
18230    18480    741    2016-02-01 13:19:17    2016-02-01 13:19:17
18231    16621    613    2016-04-11 20:17:01    2016-04-11 20:17:01
18232    13417    606    2016-04-06 00:40:59    2016-04-06 00:40:59
18233    11194    689    2016-01-23 06:53:52    2016-01-23 06:53:52
18234    17684    799    2016-03-05 10:55:16    2016-03-05 10:55:16
18235    15531    598    2015-06-23 23:14:27    2015-06-23 23:14:27
18236    11377    949    2015-10-07 17:17:29    2015-10-07 17:17:29
18237    14111    882    2015-04-23 05:29:01    2015-04-23 05:29:01
18238    16834    607    2015-08-12 19:51:07    2015-08-12 19:51:07
18239    10643    742    2015-08-05 13:03:27    2015-08-05 13:03:27
18240    13031    549    2015-06-25 23:33:31    2015-06-25 23:33:31
18241    19621    845    2015-08-28 11:19:02    2015-08-28 11:19:02
18242    12200    636    2015-06-27 12:15:40    2015-06-27 12:15:40
18243    14354    824    2015-12-17 02:38:08    2015-12-17 02:38:08
18244    10368    731    2015-11-30 16:51:16    2015-11-30 16:51:16
18245    18563    941    2015-05-24 11:13:57    2015-05-24 11:13:57
18246    17382    781    2015-10-07 17:19:52    2015-10-07 17:19:52
18247    17094    568    2015-10-03 12:59:39    2015-10-03 12:59:39
18248    17458    677    2015-10-18 13:22:55    2015-10-18 13:22:55
18249    15785    864    2015-06-05 18:58:19    2015-06-05 18:58:19
18250    17343    863    2015-06-04 19:26:31    2015-06-04 19:26:31
18251    15910    689    2016-02-12 16:39:19    2016-02-12 16:39:19
18252    18835    826    2016-01-30 02:02:49    2016-01-30 02:02:49
18253    16457    513    2016-01-13 02:21:01    2016-01-13 02:21:01
18254    15337    592    2015-08-10 12:36:29    2015-08-10 12:36:29
18255    11345    507    2015-06-04 08:03:49    2015-06-04 08:03:49
18256    16546    673    2015-10-25 05:49:01    2015-10-25 05:49:01
18257    19095    521    2016-01-22 06:49:47    2016-01-22 06:49:47
18258    15279    561    2015-10-20 18:00:35    2015-10-20 18:00:35
18259    11478    858    2015-11-12 12:30:07    2015-11-12 12:30:07
18260    13208    627    2015-09-29 17:55:27    2015-09-29 17:55:27
18261    10435    548    2015-05-25 07:30:19    2015-05-25 07:30:19
18262    19821    698    2016-02-05 21:58:29    2016-02-05 21:58:29
18263    17072    718    2015-06-20 21:05:04    2015-06-20 21:05:04
18264    17070    521    2016-03-15 14:07:56    2016-03-15 14:07:56
18265    14916    534    2015-07-16 09:01:50    2015-07-16 09:01:50
18266    12270    741    2015-10-04 20:18:27    2015-10-04 20:18:27
18267    14080    854    2015-12-21 20:31:10    2015-12-21 20:31:10
18268    12380    830    2015-06-09 13:13:55    2015-06-09 13:13:55
18269    17455    812    2015-06-04 14:22:43    2015-06-04 14:22:43
18270    11418    668    2015-08-15 12:23:51    2015-08-15 12:23:51
18271    19632    560    2015-11-12 22:03:27    2015-11-12 22:03:27
18272    16447    902    2015-09-27 11:05:12    2015-09-27 11:05:12
18273    18145    906    2015-10-24 12:04:31    2015-10-24 12:04:31
18274    16355    655    2015-06-15 03:27:03    2015-06-15 03:27:03
18275    12512    467    2016-01-31 02:15:39    2016-01-31 02:15:39
18276    18980    677    2015-12-06 10:08:07    2015-12-06 10:08:07
18277    19124    685    2015-08-22 09:33:14    2015-08-22 09:33:14
18278    11978    659    2015-12-30 20:19:24    2015-12-30 20:19:24
18279    12107    615    2015-07-19 23:10:34    2015-07-19 23:10:34
18280    16982    589    2015-05-02 22:06:12    2015-05-02 22:06:12
18281    10354    674    2016-04-07 07:31:28    2016-04-07 07:31:28
18282    12799    738    2016-03-22 00:20:37    2016-03-22 00:20:37
18283    12391    769    2015-12-27 23:46:04    2015-12-27 23:46:04
18284    12495    542    2015-08-17 11:31:32    2015-08-17 11:31:32
18285    12297    838    2015-09-07 07:32:24    2015-09-07 07:32:24
18286    13182    635    2015-05-20 03:20:12    2015-05-20 03:20:12
18287    18055    920    2015-09-15 16:12:11    2015-09-15 16:12:11
18288    17191    741    2016-04-08 12:25:42    2016-04-08 12:25:42
18289    16780    826    2015-07-09 09:51:21    2015-07-09 09:51:21
18290    14714    485    2015-08-30 19:13:06    2015-08-30 19:13:06
18291    15394    810    2016-01-05 06:04:57    2016-01-05 06:04:57
18292    17017    568    2015-12-02 10:22:01    2015-12-02 10:22:01
18293    15142    546    2015-09-13 21:48:40    2015-09-13 21:48:40
18294    10018    843    2016-03-17 14:21:23    2016-03-17 14:21:23
18295    11281    850    2015-12-24 06:05:35    2015-12-24 06:05:35
18296    17544    751    2016-03-16 03:46:05    2016-03-16 03:46:05
18297    13938    889    2015-10-27 07:13:40    2015-10-27 07:13:40
18298    13700    725    2016-02-06 10:52:56    2016-02-06 10:52:56
18299    10777    941    2015-09-15 20:22:15    2015-09-15 20:22:15
18300    11872    772    2015-08-11 03:11:14    2015-08-11 03:11:14
18301    15807    898    2016-01-29 10:26:09    2016-01-29 10:26:09
18302    19567    843    2015-10-05 20:21:40    2015-10-05 20:21:40
18303    11284    838    2015-10-04 14:21:25    2015-10-04 14:21:25
18304    12033    846    2015-07-27 03:11:26    2015-07-27 03:11:26
18305    12158    923    2015-04-22 05:42:42    2015-04-22 05:42:42
18306    11406    843    2015-06-15 16:33:40    2015-06-15 16:33:40
18307    12268    496    2015-09-25 00:48:16    2015-09-25 00:48:16
18308    14668    562    2015-12-26 07:10:04    2015-12-26 07:10:04
18309    12738    901    2015-11-07 17:29:13    2015-11-07 17:29:13
18310    10256    806    2016-01-07 04:19:42    2016-01-07 04:19:42
18311    14662    901    2016-01-29 06:42:29    2016-01-29 06:42:29
18312    12885    867    2016-02-28 19:53:46    2016-02-28 19:53:46
18313    18079    719    2015-05-31 05:57:23    2015-05-31 05:57:23
18314    12816    870    2016-03-27 05:44:11    2016-03-27 05:44:11
18315    15230    762    2015-05-07 01:39:36    2015-05-07 01:39:36
18316    11695    835    2015-04-29 16:56:02    2015-04-29 16:56:02
18317    13031    526    2015-04-27 21:32:29    2015-04-27 21:32:29
18318    13929    515    2015-05-05 10:56:12    2015-05-05 10:56:12
18319    18437    791    2015-11-24 22:07:31    2015-11-24 22:07:31
18320    10415    888    2016-03-06 07:59:20    2016-03-06 07:59:20
18321    18288    732    2015-07-10 02:14:11    2015-07-10 02:14:11
18322    13917    908    2015-04-22 11:17:48    2015-04-22 11:17:48
18323    15109    709    2016-02-05 08:43:17    2016-02-05 08:43:17
18324    13468    863    2015-05-25 20:56:58    2015-05-25 20:56:58
18325    18178    522    2015-10-29 03:07:20    2015-10-29 03:07:20
18326    16373    718    2015-09-05 14:28:44    2015-09-05 14:28:44
18327    18792    560    2016-04-11 15:04:47    2016-04-11 15:04:47
18328    17792    541    2016-02-03 15:42:52    2016-02-03 15:42:52
18329    11859    903    2015-09-08 15:23:59    2015-09-08 15:23:59
18330    10942    628    2016-02-11 17:27:49    2016-02-11 17:27:49
18331    18788    655    2016-03-25 00:25:32    2016-03-25 00:25:32
18332    14059    701    2015-06-28 01:20:19    2015-06-28 01:20:19
18333    10591    920    2015-09-18 11:55:16    2015-09-18 11:55:16
18334    10217    525    2015-06-10 13:07:04    2015-06-10 13:07:04
18335    16099    929    2015-09-18 10:56:04    2015-09-18 10:56:04
18336    19057    629    2015-07-22 10:52:50    2015-07-22 10:52:50
18337    13011    808    2016-01-20 17:20:35    2016-01-20 17:20:35
18338    13570    579    2015-05-24 23:21:56    2015-05-24 23:21:56
18339    17959    589    2015-06-26 00:35:25    2015-06-26 00:35:25
18340    15083    674    2015-11-28 00:32:36    2015-11-28 00:32:36
18341    18711    469    2015-07-16 12:33:33    2015-07-16 12:33:33
18342    10468    741    2016-01-25 17:22:48    2016-01-25 17:22:48
18343    16271    882    2016-01-02 18:23:46    2016-01-02 18:23:46
18344    15290    894    2015-04-26 07:05:12    2015-04-26 07:05:12
18345    12752    930    2016-02-27 11:16:21    2016-02-27 11:16:21
18346    15237    914    2015-10-29 22:40:34    2015-10-29 22:40:34
18347    17581    561    2015-06-27 20:25:48    2015-06-27 20:25:48
18348    19902    782    2015-04-26 04:22:28    2015-04-26 04:22:28
18349    15427    471    2015-12-14 08:17:42    2015-12-14 08:17:42
18350    16768    907    2016-04-06 19:50:30    2016-04-06 19:50:30
18351    15995    602    2015-09-18 22:57:53    2015-09-18 22:57:53
18352    14753    745    2015-11-01 04:17:01    2015-11-01 04:17:01
18353    17873    610    2015-11-08 13:24:37    2015-11-08 13:24:37
18354    10594    845    2015-06-20 11:09:15    2015-06-20 11:09:15
18355    10834    542    2015-11-25 13:08:57    2015-11-25 13:08:57
18356    15238    675    2015-04-30 01:43:29    2015-04-30 01:43:29
18357    14049    500    2015-05-19 23:09:03    2015-05-19 23:09:03
18358    18677    806    2016-04-05 06:53:31    2016-04-05 06:53:31
18359    18829    620    2015-11-28 14:43:30    2015-11-28 14:43:30
18360    18076    653    2015-11-12 16:23:41    2015-11-12 16:23:41
18361    11755    806    2015-07-02 06:47:56    2015-07-02 06:47:56
18362    14565    929    2015-10-27 05:55:47    2015-10-27 05:55:47
18363    13276    584    2015-09-05 22:25:24    2015-09-05 22:25:24
18364    17583    730    2015-06-09 02:32:03    2015-06-09 02:32:03
18365    16743    599    2015-07-05 20:22:39    2015-07-05 20:22:39
18366    14834    649    2015-11-10 06:12:37    2015-11-10 06:12:37
18367    17473    689    2015-06-24 08:15:13    2015-06-24 08:15:13
18368    15464    518    2015-11-11 00:51:01    2015-11-11 00:51:01
18369    15715    479    2015-07-17 14:35:07    2015-07-17 14:35:07
18370    16801    926    2016-01-10 17:01:02    2016-01-10 17:01:02
18371    12648    910    2015-09-10 13:05:49    2015-09-10 13:05:49
18372    15666    892    2016-03-25 20:49:46    2016-03-25 20:49:46
18373    17374    667    2015-11-18 19:56:40    2015-11-18 19:56:40
18374    18959    518    2016-03-04 17:19:54    2016-03-04 17:19:54
18375    16644    776    2016-04-12 16:12:39    2016-04-12 16:12:39
18376    18766    679    2015-06-10 20:11:11    2015-06-10 20:11:11
18377    12934    846    2015-07-23 11:13:58    2015-07-23 11:13:58
18378    12901    693    2015-12-26 15:21:28    2015-12-26 15:21:28
18379    11370    805    2015-12-31 15:11:26    2015-12-31 15:11:26
18380    18821    856    2015-07-22 19:24:16    2015-07-22 19:24:16
18381    17494    751    2015-10-25 11:58:26    2015-10-25 11:58:26
18382    11344    526    2015-11-12 06:28:06    2015-11-12 06:28:06
18383    13370    652    2015-05-30 03:45:24    2015-05-30 03:45:24
18384    18933    611    2016-01-01 00:24:01    2016-01-01 00:24:01
18385    10609    800    2015-07-28 11:22:05    2015-07-28 11:22:05
18386    15673    825    2016-03-07 01:14:59    2016-03-07 01:14:59
18387    17511    495    2015-10-12 02:55:25    2015-10-12 02:55:25
18388    16343    615    2015-09-03 05:24:52    2015-09-03 05:24:52
18389    18770    855    2015-07-28 13:50:22    2015-07-28 13:50:22
18390    16364    869    2015-07-28 20:40:40    2015-07-28 20:40:40
18391    18717    629    2015-08-13 10:08:49    2015-08-13 10:08:49
18392    15564    572    2016-01-17 09:14:44    2016-01-17 09:14:44
18393    12415    689    2016-01-23 17:39:31    2016-01-23 17:39:31
18394    16609    674    2016-03-25 04:24:57    2016-03-25 04:24:57
18395    14513    843    2015-09-20 19:46:35    2015-09-20 19:46:35
18396    14261    884    2016-03-15 14:50:30    2016-03-15 14:50:30
18397    19912    584    2015-09-14 15:03:10    2015-09-14 15:03:10
18398    16629    827    2015-10-14 12:38:55    2015-10-14 12:38:55
18399    17016    620    2015-06-19 15:36:04    2015-06-19 15:36:04
18400    10269    722    2015-07-12 18:23:44    2015-07-12 18:23:44
18401    15532    564    2015-05-28 18:50:01    2015-05-28 18:50:01
18402    17399    469    2015-07-17 23:49:48    2015-07-17 23:49:48
18403    10195    701    2016-02-05 22:17:42    2016-02-05 22:17:42
18404    11138    476    2016-01-27 09:26:59    2016-01-27 09:26:59
18405    18448    507    2015-08-25 05:06:16    2015-08-25 05:06:16
18406    11107    886    2016-02-15 16:46:42    2016-02-15 16:46:42
18407    12089    747    2015-10-10 18:02:49    2015-10-10 18:02:49
18408    12293    599    2015-05-08 06:08:01    2015-05-08 06:08:01
18409    17501    654    2015-07-24 06:17:36    2015-07-24 06:17:36
18410    12381    832    2016-01-29 13:12:05    2016-01-29 13:12:05
18411    14561    535    2015-04-27 04:15:33    2015-04-27 04:15:33
18412    19613    801    2015-06-19 10:11:08    2015-06-19 10:11:08
18413    19833    483    2016-01-16 13:21:41    2016-01-16 13:21:41
18414    11451    522    2015-09-30 19:16:06    2015-09-30 19:16:06
18415    11882    878    2015-06-19 14:52:46    2015-06-19 14:52:46
18416    10018    478    2016-04-14 11:49:30    2016-04-14 11:49:30
18417    18817    645    2015-07-27 14:20:33    2015-07-27 14:20:33
18418    11287    676    2015-10-01 14:50:21    2015-10-01 14:50:21
18419    17141    914    2015-06-25 20:25:46    2015-06-25 20:25:46
18420    17314    696    2016-01-25 22:40:18    2016-01-25 22:40:18
18421    10182    769    2015-06-18 00:22:56    2015-06-18 00:22:56
18422    11582    944    2015-09-13 23:41:23    2015-09-13 23:41:23
18423    11916    661    2016-03-02 21:54:30    2016-03-02 21:54:30
18424    14666    757    2015-05-07 17:11:05    2015-05-07 17:11:05
18425    16237    885    2015-06-22 14:09:54    2015-06-22 14:09:54
18426    16973    580    2016-04-13 19:50:28    2016-04-13 19:50:28
18427    19616    839    2015-11-16 04:15:25    2015-11-16 04:15:25
18428    17662    932    2016-02-04 23:51:38    2016-02-04 23:51:38
18429    12711    695    2015-08-22 10:35:37    2015-08-22 10:35:37
18430    17597    818    2015-11-06 10:19:22    2015-11-06 10:19:22
18431    16694    737    2016-04-06 01:29:13    2016-04-06 01:29:13
18432    12309    643    2015-07-11 06:59:14    2015-07-11 06:59:14
18433    19624    878    2015-07-27 17:01:33    2015-07-27 17:01:33
18434    13243    803    2015-12-09 06:36:09    2015-12-09 06:36:09
18435    11811    572    2015-06-18 01:50:48    2015-06-18 01:50:48
18436    18672    499    2015-09-02 01:30:19    2015-09-02 01:30:19
18437    16022    585    2015-11-28 00:43:20    2015-11-28 00:43:20
18438    16163    843    2016-03-24 15:51:37    2016-03-24 15:51:37
18439    17333    944    2015-07-31 03:03:45    2015-07-31 03:03:45
18440    15251    719    2015-05-26 22:27:44    2015-05-26 22:27:44
18441    17691    610    2015-09-03 13:03:26    2015-09-03 13:03:26
18442    10466    814    2015-06-05 14:36:47    2015-06-05 14:36:47
18443    15687    741    2015-08-28 09:28:10    2015-08-28 09:28:10
18444    15340    491    2015-09-12 07:05:01    2015-09-12 07:05:01
18445    19430    720    2016-01-19 21:01:50    2016-01-19 21:01:50
18446    13996    619    2016-03-02 23:46:52    2016-03-02 23:46:52
18447    12450    918    2015-12-21 21:39:44    2015-12-21 21:39:44
18448    13868    715    2015-11-01 10:12:22    2015-11-01 10:12:22
18449    17312    951    2015-12-17 13:47:22    2015-12-17 13:47:22
18450    13676    487    2015-05-25 12:46:41    2015-05-25 12:46:41
18451    19632    750    2015-12-17 16:44:22    2015-12-17 16:44:22
18452    13648    794    2016-03-12 21:48:44    2016-03-12 21:48:44
18453    11903    522    2015-10-22 20:27:18    2015-10-22 20:27:18
18454    17000    701    2016-04-20 04:13:05    2016-04-20 04:13:05
18455    17081    955    2015-10-23 00:10:23    2015-10-23 00:10:23
18456    13041    929    2015-08-18 13:45:49    2015-08-18 13:45:49
18457    10143    670    2015-10-01 09:58:56    2015-10-01 09:58:56
18458    12228    840    2015-05-19 07:23:23    2015-05-19 07:23:23
18459    15193    740    2015-10-02 21:00:27    2015-10-02 21:00:27
18460    15238    615    2015-11-23 04:16:21    2015-11-23 04:16:21
18461    16103    819    2016-01-18 11:01:13    2016-01-18 11:01:13
18462    15978    933    2015-10-03 00:49:50    2015-10-03 00:49:50
18463    17632    725    2015-10-30 13:01:25    2015-10-30 13:01:25
18464    17764    833    2015-10-25 04:47:44    2015-10-25 04:47:44
18465    14610    919    2015-07-06 09:44:58    2015-07-06 09:44:58
18466    14759    481    2016-03-28 10:31:24    2016-03-28 10:31:24
18467    16985    716    2015-05-12 22:05:27    2015-05-12 22:05:27
18468    12542    580    2015-06-16 05:01:27    2015-06-16 05:01:27
18469    18970    550    2016-04-04 09:22:57    2016-04-04 09:22:57
18470    10275    911    2015-06-11 16:52:22    2015-06-11 16:52:22
18471    11303    577    2016-02-27 14:32:14    2016-02-27 14:32:14
18472    12150    896    2015-05-12 14:12:23    2015-05-12 14:12:23
18473    12283    740    2015-12-05 03:51:17    2015-12-05 03:51:17
18474    14184    704    2015-08-14 03:04:05    2015-08-14 03:04:05
18475    12788    833    2015-06-19 14:36:55    2015-06-19 14:36:55
18476    15747    793    2016-01-10 18:43:56    2016-01-10 18:43:56
18477    12370    690    2015-05-14 06:44:05    2015-05-14 06:44:05
18478    11662    593    2015-07-10 20:03:33    2015-07-10 20:03:33
18479    12891    741    2015-06-28 15:54:56    2015-06-28 15:54:56
18480    14172    757    2016-02-02 22:56:02    2016-02-02 22:56:02
18481    16230    883    2016-04-07 07:27:57    2016-04-07 07:27:57
18482    17649    719    2015-07-10 12:42:24    2015-07-10 12:42:24
18483    18893    717    2015-08-03 15:04:03    2015-08-03 15:04:03
18484    19677    787    2016-01-04 10:17:30    2016-01-04 10:17:30
18485    19883    648    2015-12-18 03:10:56    2015-12-18 03:10:56
18486    19438    838    2015-09-29 11:50:48    2015-09-29 11:50:48
18487    14934    586    2015-07-16 12:16:53    2015-07-16 12:16:53
18488    12150    503    2016-01-07 21:16:54    2016-01-07 21:16:54
18489    10864    534    2016-01-25 06:36:09    2016-01-25 06:36:09
18490    13724    750    2015-05-27 17:59:49    2015-05-27 17:59:49
18491    19703    933    2016-04-12 17:38:21    2016-04-12 17:38:21
18492    13592    857    2015-08-01 02:22:05    2015-08-01 02:22:05
18493    12310    807    2016-03-12 16:45:09    2016-03-12 16:45:09
18494    15487    859    2015-05-24 01:50:32    2015-05-24 01:50:32
18495    10897    770    2016-01-28 08:46:57    2016-01-28 08:46:57
18496    18177    560    2015-08-18 01:56:11    2015-08-18 01:56:11
18497    10882    790    2015-09-01 23:25:25    2015-09-01 23:25:25
18498    18568    570    2015-11-19 21:02:55    2015-11-19 21:02:55
18499    13104    883    2015-11-01 16:17:57    2015-11-01 16:17:57
18500    15342    727    2015-08-07 02:45:04    2015-08-07 02:45:04
18501    19295    904    2015-07-15 18:57:25    2015-07-15 18:57:25
18502    15132    472    2015-10-15 09:00:07    2015-10-15 09:00:07
18503    10294    784    2015-06-20 03:22:05    2015-06-20 03:22:05
18504    16436    481    2015-08-28 21:15:14    2015-08-28 21:15:14
18505    11355    819    2015-11-20 00:44:01    2015-11-20 00:44:01
18506    17628    595    2015-07-14 20:18:44    2015-07-14 20:18:44
18507    19958    472    2015-05-01 15:50:09    2015-05-01 15:50:09
18508    10595    872    2015-08-03 11:05:45    2015-08-03 11:05:45
18509    18488    776    2015-08-19 01:09:06    2015-08-19 01:09:06
18510    10517    943    2015-06-20 08:28:43    2015-06-20 08:28:43
18511    18656    826    2015-08-19 21:43:11    2015-08-19 21:43:11
18512    11665    831    2015-07-03 10:33:09    2015-07-03 10:33:09
18513    13698    922    2016-02-20 19:03:37    2016-02-20 19:03:37
18514    11536    859    2015-12-05 10:12:50    2015-12-05 10:12:50
18515    13545    612    2015-11-17 13:38:17    2015-11-17 13:38:17
18516    14046    772    2016-01-25 10:02:04    2016-01-25 10:02:04
18517    12807    635    2015-10-04 15:45:18    2015-10-04 15:45:18
18518    18019    506    2016-02-07 07:50:46    2016-02-07 07:50:46
18519    10363    906    2015-07-14 07:48:56    2015-07-14 07:48:56
18520    15301    864    2016-02-11 18:49:52    2016-02-11 18:49:52
18521    12335    677    2015-10-02 23:24:51    2015-10-02 23:24:51
18522    12396    645    2015-12-12 15:05:19    2015-12-12 15:05:19
18523    16850    754    2016-02-02 16:26:00    2016-02-02 16:26:00
18524    14474    956    2015-08-22 20:32:55    2015-08-22 20:32:55
18525    14087    520    2015-12-26 07:14:17    2015-12-26 07:14:17
18526    16513    953    2016-03-05 14:25:02    2016-03-05 14:25:02
18527    14343    779    2015-05-19 11:59:43    2015-05-19 11:59:43
18528    10453    486    2015-09-12 10:32:59    2015-09-12 10:32:59
18529    10146    911    2015-12-03 06:22:24    2015-12-03 06:22:24
18530    16803    843    2016-03-03 21:42:00    2016-03-03 21:42:00
18531    13279    471    2015-11-11 03:13:08    2015-11-11 03:13:08
18532    12998    655    2016-01-31 15:18:32    2016-01-31 15:18:32
18533    11243    756    2015-07-25 21:21:19    2015-07-25 21:21:19
18534    16744    920    2015-07-04 20:50:19    2015-07-04 20:50:19
18535    17822    558    2015-08-31 22:52:43    2015-08-31 22:52:43
18536    16691    786    2015-11-21 00:35:15    2015-11-21 00:35:15
18537    11418    624    2016-02-19 11:45:59    2016-02-19 11:45:59
18538    14778    862    2016-02-21 11:25:34    2016-02-21 11:25:34
18539    16565    716    2015-07-26 09:22:08    2015-07-26 09:22:08
18540    18180    666    2015-10-05 17:25:42    2015-10-05 17:25:42
18541    19561    524    2015-12-20 16:52:31    2015-12-20 16:52:31
18542    19840    489    2015-12-22 09:20:27    2015-12-22 09:20:27
18543    12994    849    2015-12-09 12:33:38    2015-12-09 12:33:38
18544    16043    730    2016-03-20 18:56:37    2016-03-20 18:56:37
18545    12987    741    2015-07-07 16:04:56    2015-07-07 16:04:56
18546    11343    591    2015-08-21 13:33:12    2015-08-21 13:33:12
18547    13940    764    2016-02-11 21:52:36    2016-02-11 21:52:36
18548    11847    528    2015-11-02 10:24:44    2015-11-02 10:24:44
18549    17284    487    2015-10-25 21:06:09    2015-10-25 21:06:09
18550    12929    657    2015-09-06 23:44:07    2015-09-06 23:44:07
18551    17015    782    2015-06-15 04:20:44    2015-06-15 04:20:44
18552    17050    729    2015-05-21 18:03:01    2015-05-21 18:03:01
18553    11861    860    2015-06-02 01:20:17    2015-06-02 01:20:17
18554    18984    941    2015-08-06 06:51:56    2015-08-06 06:51:56
18555    19399    655    2015-11-27 20:11:48    2015-11-27 20:11:48
18556    11235    697    2015-08-02 05:09:37    2015-08-02 05:09:37
18557    14772    506    2015-04-29 19:45:30    2015-04-29 19:45:30
18558    10956    584    2015-06-15 18:55:15    2015-06-15 18:55:15
18559    12982    710    2016-03-30 18:33:02    2016-03-30 18:33:02
18560    17335    569    2015-06-02 06:42:34    2015-06-02 06:42:34
18561    15192    593    2015-05-01 05:45:25    2015-05-01 05:45:25
18562    14787    538    2016-03-28 13:27:43    2016-03-28 13:27:43
18563    11722    529    2016-02-25 09:26:40    2016-02-25 09:26:40
18564    10389    775    2015-08-01 23:58:12    2015-08-01 23:58:12
18565    13041    797    2015-07-10 12:32:01    2015-07-10 12:32:01
18566    16385    607    2016-03-27 08:41:34    2016-03-27 08:41:34
18567    19499    960    2016-03-13 03:08:02    2016-03-13 03:08:02
18568    12262    592    2015-12-21 06:51:39    2015-12-21 06:51:39
18569    13991    516    2015-05-20 21:32:55    2015-05-20 21:32:55
18570    18511    681    2015-07-16 14:47:44    2015-07-16 14:47:44
18571    17652    514    2015-10-06 21:12:07    2015-10-06 21:12:07
18572    15965    472    2016-04-14 07:30:06    2016-04-14 07:30:06
18573    19756    742    2016-03-26 08:29:09    2016-03-26 08:29:09
18574    12027    926    2016-01-12 11:19:16    2016-01-12 11:19:16
18575    10998    782    2015-08-27 03:52:33    2015-08-27 03:52:33
18576    12074    855    2016-04-14 04:57:18    2016-04-14 04:57:18
18577    11269    908    2016-03-06 11:07:53    2016-03-06 11:07:53
18578    13150    784    2015-12-20 08:51:47    2015-12-20 08:51:47
18579    11516    468    2015-12-22 08:02:51    2015-12-22 08:02:51
18580    18490    614    2015-04-25 19:43:04    2015-04-25 19:43:04
18581    18400    627    2016-04-07 19:12:45    2016-04-07 19:12:45
18582    12605    923    2015-06-25 11:29:00    2015-06-25 11:29:00
18583    11092    809    2015-10-01 22:00:00    2015-10-01 22:00:00
18584    19856    942    2015-10-02 04:39:07    2015-10-02 04:39:07
18585    14093    754    2015-07-13 10:06:07    2015-07-13 10:06:07
18586    19736    495    2015-07-03 21:53:24    2015-07-03 21:53:24
18587    13741    501    2016-01-27 03:57:18    2016-01-27 03:57:18
18588    18497    645    2015-07-03 11:15:13    2015-07-03 11:15:13
18589    18360    622    2015-10-26 06:37:12    2015-10-26 06:37:12
18590    17408    895    2016-02-14 09:39:57    2016-02-14 09:39:57
18591    10180    562    2016-03-26 04:03:25    2016-03-26 04:03:25
18592    15400    500    2015-08-20 13:25:14    2015-08-20 13:25:14
18593    10525    920    2015-07-25 17:57:31    2015-07-25 17:57:31
18594    10520    616    2015-11-19 22:16:02    2015-11-19 22:16:02
18595    13593    564    2015-05-15 05:28:45    2015-05-15 05:28:45
18596    11744    765    2015-08-14 18:40:21    2015-08-14 18:40:21
18597    11989    815    2015-07-06 05:17:11    2015-07-06 05:17:11
18598    15018    623    2015-06-17 18:57:10    2015-06-17 18:57:10
18599    15217    681    2016-02-14 01:15:09    2016-02-14 01:15:09
18600    11731    605    2015-05-29 21:14:32    2015-05-29 21:14:32
18601    12812    737    2016-01-23 06:59:50    2016-01-23 06:59:50
18602    15374    852    2015-08-03 18:45:09    2015-08-03 18:45:09
18603    17243    482    2016-01-11 07:55:38    2016-01-11 07:55:38
18604    17509    711    2015-09-04 06:44:16    2015-09-04 06:44:16
18605    14085    882    2015-05-27 18:02:39    2015-05-27 18:02:39
18606    18878    888    2015-10-21 05:13:23    2015-10-21 05:13:23
18607    13270    508    2015-05-21 21:03:27    2015-05-21 21:03:27
18608    19442    758    2015-12-17 23:17:35    2015-12-17 23:17:35
18609    19036    508    2015-10-10 15:10:12    2015-10-10 15:10:12
18610    10325    674    2015-11-27 11:35:56    2015-11-27 11:35:56
18611    11502    935    2015-07-08 10:25:23    2015-07-08 10:25:23
18612    12068    517    2015-08-27 15:06:38    2015-08-27 15:06:38
18613    12196    789    2016-02-02 04:49:18    2016-02-02 04:49:18
18614    17018    833    2015-05-27 09:30:35    2015-05-27 09:30:35
18615    15967    771    2015-07-16 21:28:38    2015-07-16 21:28:38
18616    16550    911    2015-10-03 11:39:23    2015-10-03 11:39:23
18617    14572    870    2016-02-15 12:37:30    2016-02-15 12:37:30
18618    18229    875    2016-04-17 16:03:52    2016-04-17 16:03:52
18619    16646    668    2015-12-08 06:54:07    2015-12-08 06:54:07
18620    13263    657    2015-12-23 17:20:42    2015-12-23 17:20:42
18621    16116    789    2015-09-30 23:55:03    2015-09-30 23:55:03
18622    18165    874    2015-07-13 18:16:59    2015-07-13 18:16:59
18623    10995    682    2015-07-27 05:10:12    2015-07-27 05:10:12
18624    14461    835    2015-05-24 01:38:41    2015-05-24 01:38:41
18625    18071    584    2016-01-14 16:18:31    2016-01-14 16:18:31
18626    10259    852    2016-03-08 12:17:40    2016-03-08 12:17:40
18627    10319    874    2015-11-27 15:22:37    2015-11-27 15:22:37
18628    13050    576    2015-09-05 22:24:36    2015-09-05 22:24:36
18629    10174    810    2015-12-30 21:14:37    2015-12-30 21:14:37
18630    13552    560    2016-03-16 17:54:25    2016-03-16 17:54:25
18631    19611    868    2015-12-28 12:51:11    2015-12-28 12:51:11
18632    10541    696    2015-11-03 23:07:46    2015-11-03 23:07:46
18633    17418    703    2015-05-23 16:23:51    2015-05-23 16:23:51
18634    18044    611    2016-02-07 09:10:02    2016-02-07 09:10:02
18635    11831    582    2015-10-26 17:17:14    2015-10-26 17:17:14
18636    14710    463    2015-09-24 22:15:54    2015-09-24 22:15:54
18637    18321    479    2015-10-26 12:55:15    2015-10-26 12:55:15
18638    17724    716    2016-04-14 07:20:51    2016-04-14 07:20:51
18639    17278    921    2015-08-08 21:40:51    2015-08-08 21:40:51
18640    10705    602    2016-04-11 02:56:11    2016-04-11 02:56:11
18641    13122    895    2015-11-26 08:54:51    2015-11-26 08:54:51
18642    13821    817    2015-08-05 14:03:21    2015-08-05 14:03:21
18643    19884    636    2015-07-21 05:51:20    2015-07-21 05:51:20
18644    19140    562    2015-04-28 03:26:32    2015-04-28 03:26:32
18645    17166    539    2015-10-15 07:15:50    2015-10-15 07:15:50
18646    10979    673    2016-03-01 14:26:20    2016-03-01 14:26:20
18647    17555    616    2015-11-13 07:26:07    2015-11-13 07:26:07
18648    19326    722    2015-08-10 08:39:43    2015-08-10 08:39:43
18649    17518    635    2015-12-13 22:44:22    2015-12-13 22:44:22
18650    10402    959    2015-08-26 22:55:57    2015-08-26 22:55:57
18651    11463    543    2015-07-16 02:47:45    2015-07-16 02:47:45
18652    18414    598    2015-09-29 07:39:54    2015-09-29 07:39:54
18653    11765    944    2015-12-28 17:21:58    2015-12-28 17:21:58
18654    13992    856    2016-03-15 21:07:31    2016-03-15 21:07:31
18655    18052    762    2016-01-21 22:25:50    2016-01-21 22:25:50
18656    19968    588    2016-01-18 02:58:08    2016-01-18 02:58:08
18657    17078    765    2016-04-12 06:46:15    2016-04-12 06:46:15
18658    17292    665    2015-11-13 18:25:12    2015-11-13 18:25:12
18659    12218    624    2015-09-25 10:44:23    2015-09-25 10:44:23
18660    13417    743    2015-07-19 15:44:31    2015-07-19 15:44:31
18661    16512    667    2016-01-29 14:19:41    2016-01-29 14:19:41
18662    12245    932    2015-08-06 06:37:34    2015-08-06 06:37:34
18663    15462    897    2015-05-26 22:45:50    2015-05-26 22:45:50
18664    15100    526    2015-06-07 19:38:58    2015-06-07 19:38:58
18665    13042    466    2015-06-12 08:12:30    2015-06-12 08:12:30
18666    16817    645    2015-08-21 11:36:00    2015-08-21 11:36:00
18667    13124    926    2016-02-01 12:02:47    2016-02-01 12:02:47
18668    18821    952    2015-12-23 08:12:19    2015-12-23 08:12:19
18669    11860    614    2015-05-04 17:38:25    2015-05-04 17:38:25
18670    15466    628    2016-03-20 01:36:51    2016-03-20 01:36:51
18671    13218    892    2015-05-03 06:14:38    2015-05-03 06:14:38
18672    13836    939    2016-01-21 18:38:42    2016-01-21 18:38:42
18673    11237    567    2015-12-02 05:46:24    2015-12-02 05:46:24
18674    19423    599    2016-02-17 15:03:26    2016-02-17 15:03:26
18675    15780    872    2016-03-14 23:07:28    2016-03-14 23:07:28
18676    15168    856    2015-06-30 12:31:51    2015-06-30 12:31:51
18677    17043    889    2015-08-27 07:23:44    2015-08-27 07:23:44
18678    16095    900    2015-10-06 13:52:26    2015-10-06 13:52:26
18679    10385    852    2015-11-13 09:00:47    2015-11-13 09:00:47
18680    19525    851    2015-06-05 01:58:13    2015-06-05 01:58:13
18681    15324    868    2015-07-19 22:58:16    2015-07-19 22:58:16
18682    10260    543    2016-02-08 20:11:31    2016-02-08 20:11:31
18683    18918    892    2015-11-29 10:28:04    2015-11-29 10:28:04
18684    16808    663    2015-08-26 12:03:57    2015-08-26 12:03:57
18685    12729    532    2015-10-02 09:49:16    2015-10-02 09:49:16
18686    15864    887    2015-05-16 19:04:37    2015-05-16 19:04:37
18687    17375    869    2016-03-26 03:52:45    2016-03-26 03:52:45
18688    13655    523    2015-10-20 07:25:39    2015-10-20 07:25:39
18689    17460    522    2016-01-30 06:17:55    2016-01-30 06:17:55
18690    13024    952    2016-01-29 16:49:51    2016-01-29 16:49:51
18691    15004    508    2016-01-31 17:26:49    2016-01-31 17:26:49
18692    18744    832    2016-03-20 09:55:58    2016-03-20 09:55:58
18693    16052    720    2015-05-01 21:33:07    2015-05-01 21:33:07
18694    17229    554    2015-05-14 04:35:32    2015-05-14 04:35:32
18695    10449    761    2015-08-13 02:39:33    2015-08-13 02:39:33
18696    12458    848    2015-05-24 17:25:18    2015-05-24 17:25:18
18697    15292    505    2015-12-20 01:11:44    2015-12-20 01:11:44
18698    10711    940    2015-10-25 23:51:13    2015-10-25 23:51:13
18699    19138    586    2015-11-23 03:21:14    2015-11-23 03:21:14
18700    19280    658    2015-09-06 04:01:14    2015-09-06 04:01:14
18701    16784    861    2015-11-02 20:00:57    2015-11-02 20:00:57
18702    17960    839    2016-03-27 06:14:44    2016-03-27 06:14:44
18703    14056    616    2016-04-10 10:27:08    2016-04-10 10:27:08
18704    13060    481    2015-10-17 10:21:49    2015-10-17 10:21:49
18705    14356    829    2015-11-20 05:14:34    2015-11-20 05:14:34
18706    17404    690    2015-06-23 19:06:53    2015-06-23 19:06:53
18707    11137    875    2015-08-27 23:44:45    2015-08-27 23:44:45
18708    15245    700    2015-06-07 22:19:05    2015-06-07 22:19:05
18709    13298    524    2015-10-20 20:20:22    2015-10-20 20:20:22
18710    12964    588    2015-05-08 01:03:42    2015-05-08 01:03:42
18711    11815    767    2015-08-20 13:49:23    2015-08-20 13:49:23
18712    12107    667    2016-01-04 21:19:15    2016-01-04 21:19:15
18713    13562    766    2015-11-27 07:46:44    2015-11-27 07:46:44
18714    11465    653    2016-03-09 08:41:31    2016-03-09 08:41:31
18715    11645    870    2016-01-06 15:54:30    2016-01-06 15:54:30
18716    14211    582    2015-08-25 14:13:14    2015-08-25 14:13:14
18717    11508    928    2015-05-23 16:39:52    2015-05-23 16:39:52
18718    12608    609    2015-12-07 09:49:40    2015-12-07 09:49:40
18719    11586    686    2016-03-23 14:15:07    2016-03-23 14:15:07
18720    18765    630    2016-02-02 09:02:02    2016-02-02 09:02:02
18721    19040    831    2015-08-12 20:48:07    2015-08-12 20:48:07
18722    10124    911    2015-10-12 20:03:28    2015-10-12 20:03:28
18723    10300    830    2015-05-15 01:31:41    2015-05-15 01:31:41
18724    10553    803    2015-09-13 08:44:10    2015-09-13 08:44:10
18725    19507    513    2016-03-09 03:45:40    2016-03-09 03:45:40
18726    18040    571    2016-02-26 13:44:27    2016-02-26 13:44:27
18727    10878    604    2015-10-07 10:34:08    2015-10-07 10:34:08
18728    12677    626    2016-04-18 14:19:55    2016-04-18 14:19:55
18729    14087    844    2016-02-23 20:47:25    2016-02-23 20:47:25
18730    19866    542    2016-02-01 15:03:16    2016-02-01 15:03:16
18731    17294    707    2015-06-19 01:17:53    2015-06-19 01:17:53
18732    19808    488    2015-05-06 16:30:05    2015-05-06 16:30:05
18733    14900    939    2015-07-02 03:31:35    2015-07-02 03:31:35
18734    18671    815    2016-03-14 16:55:54    2016-03-14 16:55:54
18735    14669    845    2015-11-21 23:25:26    2015-11-21 23:25:26
18736    19146    687    2015-06-04 10:17:03    2015-06-04 10:17:03
18737    18335    906    2015-12-19 14:56:15    2015-12-19 14:56:15
18738    11271    535    2015-10-02 19:00:24    2015-10-02 19:00:24
18739    10261    524    2015-12-17 07:30:04    2015-12-17 07:30:04
18740    18846    848    2016-01-05 21:00:30    2016-01-05 21:00:30
18741    17940    792    2015-06-05 04:50:40    2015-06-05 04:50:40
18742    13061    718    2015-12-24 19:39:14    2015-12-24 19:39:14
18743    12457    771    2015-06-07 04:38:32    2015-06-07 04:38:32
18744    19639    541    2015-08-18 22:30:59    2015-08-18 22:30:59
18745    18714    901    2016-02-18 16:00:49    2016-02-18 16:00:49
18746    18151    713    2016-03-29 01:21:53    2016-03-29 01:21:53
18747    19688    905    2016-03-04 01:13:36    2016-03-04 01:13:36
18748    12305    518    2015-06-24 05:43:55    2015-06-24 05:43:55
18749    11426    811    2015-12-02 15:42:29    2015-12-02 15:42:29
18750    19708    481    2016-03-25 12:48:24    2016-03-25 12:48:24
18751    12578    931    2015-12-08 15:58:25    2015-12-08 15:58:25
18752    16362    597    2016-01-12 18:15:51    2016-01-12 18:15:51
18753    12120    674    2015-08-10 10:23:52    2015-08-10 10:23:52
18754    15873    817    2015-06-21 07:32:17    2015-06-21 07:32:17
18755    18707    741    2016-03-09 00:35:50    2016-03-09 00:35:50
18756    19698    817    2015-12-09 06:37:57    2015-12-09 06:37:57
18757    19695    675    2015-10-10 03:59:06    2015-10-10 03:59:06
18758    14902    486    2015-12-23 00:45:00    2015-12-23 00:45:00
18759    18347    549    2015-05-05 06:09:23    2015-05-05 06:09:23
18760    18208    954    2015-07-25 11:31:13    2015-07-25 11:31:13
18761    10295    597    2016-01-29 06:58:59    2016-01-29 06:58:59
18762    17090    611    2015-12-15 21:18:12    2015-12-15 21:18:12
18763    17541    946    2016-03-12 20:56:20    2016-03-12 20:56:20
18764    16857    715    2015-09-24 22:40:37    2015-09-24 22:40:37
18765    12993    958    2015-10-08 00:00:01    2015-10-08 00:00:01
18766    19922    669    2015-07-08 14:46:52    2015-07-08 14:46:52
18767    18287    601    2015-07-29 05:02:24    2015-07-29 05:02:24
18768    19337    509    2016-03-07 09:02:52    2016-03-07 09:02:52
18769    10222    494    2015-06-24 18:14:48    2015-06-24 18:14:48
18770    10952    601    2016-02-18 01:34:58    2016-02-18 01:34:58
18771    15182    873    2015-12-03 08:14:47    2015-12-03 08:14:47
18772    17444    785    2015-06-06 16:23:02    2015-06-06 16:23:02
18773    16360    724    2015-10-24 14:40:27    2015-10-24 14:40:27
18774    16136    850    2015-05-18 21:49:10    2015-05-18 21:49:10
18775    19620    624    2015-06-12 22:28:40    2015-06-12 22:28:40
18776    14617    463    2016-04-20 09:35:41    2016-04-20 09:35:41
18777    12012    556    2016-03-03 02:50:18    2016-03-03 02:50:18
18778    11299    769    2015-09-08 21:32:09    2015-09-08 21:32:09
18779    14404    869    2015-05-29 23:07:37    2015-05-29 23:07:37
18780    15831    890    2015-11-22 13:58:50    2015-11-22 13:58:50
18781    11833    612    2015-12-12 06:07:14    2015-12-12 06:07:14
18782    17089    562    2016-03-23 23:05:35    2016-03-23 23:05:35
18783    14046    568    2015-10-17 13:15:24    2015-10-17 13:15:24
18784    10265    855    2016-01-08 11:00:26    2016-01-08 11:00:26
18785    14215    630    2015-07-05 21:38:15    2015-07-05 21:38:15
18786    14698    730    2016-04-12 04:14:14    2016-04-12 04:14:14
18787    12572    663    2015-05-22 03:28:01    2015-05-22 03:28:01
18788    16516    580    2016-03-28 09:01:59    2016-03-28 09:01:59
18789    18149    570    2015-09-06 21:27:26    2015-09-06 21:27:26
18790    17905    692    2015-09-14 06:36:41    2015-09-14 06:36:41
18791    15347    496    2015-08-24 03:58:23    2015-08-24 03:58:23
18792    16505    924    2015-12-05 15:37:17    2015-12-05 15:37:17
18793    19167    918    2015-06-28 10:13:46    2015-06-28 10:13:46
18794    13157    768    2015-07-05 21:30:30    2015-07-05 21:30:30
18795    17060    920    2016-01-26 19:19:42    2016-01-26 19:19:42
18796    10154    916    2015-07-11 18:13:55    2015-07-11 18:13:55
18797    10747    793    2016-01-13 03:01:04    2016-01-13 03:01:04
18798    12796    789    2015-09-27 19:50:18    2015-09-27 19:50:18
18799    19438    478    2015-08-11 07:22:05    2015-08-11 07:22:05
18800    17142    549    2015-12-30 18:56:34    2015-12-30 18:56:34
18801    15373    574    2015-04-23 09:02:42    2015-04-23 09:02:42
18802    13036    713    2015-10-04 03:11:23    2015-10-04 03:11:23
18803    19872    946    2015-12-30 22:52:30    2015-12-30 22:52:30
18804    10990    534    2015-11-21 16:00:06    2015-11-21 16:00:06
18805    14823    699    2015-09-06 15:31:44    2015-09-06 15:31:44
18806    15433    566    2015-04-29 03:48:31    2015-04-29 03:48:31
18807    10555    657    2015-07-02 19:08:23    2015-07-02 19:08:23
18808    12166    524    2015-09-11 04:56:05    2015-09-11 04:56:05
18809    19632    942    2015-12-03 13:41:28    2015-12-03 13:41:28
18810    14266    936    2015-08-05 14:47:24    2015-08-05 14:47:24
18811    11913    470    2016-02-04 04:51:19    2016-02-04 04:51:19
18812    18465    692    2015-12-31 18:33:59    2015-12-31 18:33:59
18813    15952    504    2015-07-07 14:34:01    2015-07-07 14:34:01
18814    12079    864    2015-05-09 21:12:51    2015-05-09 21:12:51
18815    18206    901    2016-04-01 15:14:18    2016-04-01 15:14:18
18816    16196    518    2015-08-31 23:15:35    2015-08-31 23:15:35
18817    17104    926    2015-06-04 14:31:05    2015-06-04 14:31:05
18818    10579    812    2016-01-07 09:40:31    2016-01-07 09:40:31
18819    16483    656    2015-09-07 16:45:34    2015-09-07 16:45:34
18820    13923    495    2015-11-17 04:55:42    2015-11-17 04:55:42
18821    14436    956    2015-10-08 08:55:06    2015-10-08 08:55:06
18822    15539    800    2016-04-03 07:26:27    2016-04-03 07:26:27
18823    14099    472    2015-09-03 21:30:44    2015-09-03 21:30:44
18824    13304    607    2015-09-25 17:51:06    2015-09-25 17:51:06
18825    18191    808    2015-09-25 15:23:39    2015-09-25 15:23:39
18826    19343    930    2015-06-06 06:41:30    2015-06-06 06:41:30
18827    12424    716    2015-12-26 07:40:42    2015-12-26 07:40:42
18828    18507    810    2015-09-09 18:47:02    2015-09-09 18:47:02
18829    13427    896    2015-04-29 03:42:32    2015-04-29 03:42:32
18830    18863    849    2016-01-23 10:16:43    2016-01-23 10:16:43
18831    16378    679    2015-10-31 11:36:34    2015-10-31 11:36:34
18832    13267    742    2015-12-01 02:44:30    2015-12-01 02:44:30
18833    17134    507    2015-12-03 21:42:34    2015-12-03 21:42:34
18834    15916    508    2015-07-20 01:33:47    2015-07-20 01:33:47
18835    11205    646    2016-03-05 17:02:18    2016-03-05 17:02:18
18836    13173    477    2015-11-12 18:56:59    2015-11-12 18:56:59
18837    17346    464    2015-04-29 23:45:10    2015-04-29 23:45:10
18838    18169    620    2015-11-14 06:59:49    2015-11-14 06:59:49
18839    11561    664    2016-04-06 18:34:44    2016-04-06 18:34:44
18840    11639    842    2016-03-08 21:33:17    2016-03-08 21:33:17
18841    18439    809    2015-12-09 22:52:00    2015-12-09 22:52:00
18842    17853    622    2015-11-29 23:55:58    2015-11-29 23:55:58
18843    11575    483    2015-12-30 10:50:42    2015-12-30 10:50:42
18844    14908    719    2015-10-11 01:53:05    2015-10-11 01:53:05
18845    15619    785    2015-12-04 08:50:01    2015-12-04 08:50:01
18846    10017    677    2015-05-19 01:56:04    2015-05-19 01:56:04
18847    12724    550    2015-11-26 02:19:13    2015-11-26 02:19:13
18848    16398    592    2015-07-29 02:00:45    2015-07-29 02:00:45
18849    19710    518    2016-04-09 00:11:48    2016-04-09 00:11:48
18850    18875    896    2016-01-27 16:33:49    2016-01-27 16:33:49
18851    14204    595    2015-10-27 18:47:21    2015-10-27 18:47:21
18852    11006    551    2015-11-24 23:10:03    2015-11-24 23:10:03
18853    19304    789    2016-02-04 12:59:00    2016-02-04 12:59:00
18854    11586    944    2016-01-16 04:27:33    2016-01-16 04:27:33
18855    19089    489    2016-02-09 14:32:49    2016-02-09 14:32:49
18856    10125    646    2015-07-14 17:33:02    2015-07-14 17:33:02
18857    13410    872    2015-12-29 23:27:38    2015-12-29 23:27:38
18858    10385    692    2015-10-25 08:43:05    2015-10-25 08:43:05
18859    14081    651    2016-02-02 07:18:36    2016-02-02 07:18:36
18860    14581    474    2015-07-22 13:12:09    2015-07-22 13:12:09
18861    14268    949    2015-11-17 08:41:17    2015-11-17 08:41:17
18862    11348    685    2015-04-24 15:41:11    2015-04-24 15:41:11
18863    12159    769    2016-02-03 22:13:05    2016-02-03 22:13:05
18864    14495    863    2015-10-23 07:41:49    2015-10-23 07:41:49
18865    18016    536    2015-09-27 09:10:52    2015-09-27 09:10:52
18866    15540    736    2015-09-14 06:08:43    2015-09-14 06:08:43
18867    10239    777    2015-05-17 20:50:37    2015-05-17 20:50:37
18868    19301    801    2016-04-11 07:31:55    2016-04-11 07:31:55
18869    12914    520    2015-07-26 04:26:36    2015-07-26 04:26:36
18870    16826    928    2016-01-23 11:26:12    2016-01-23 11:26:12
18871    16020    905    2016-01-28 15:29:44    2016-01-28 15:29:44
18872    14811    951    2015-12-26 18:24:55    2015-12-26 18:24:55
18873    10198    603    2015-04-26 03:43:01    2015-04-26 03:43:01
18874    18021    553    2015-10-28 19:47:56    2015-10-28 19:47:56
18875    12587    913    2015-11-02 20:26:37    2015-11-02 20:26:37
18876    19677    466    2016-03-15 21:16:34    2016-03-15 21:16:34
18877    16575    861    2015-09-13 20:05:23    2015-09-13 20:05:23
18878    14852    754    2015-05-14 08:00:12    2015-05-14 08:00:12
18879    11737    830    2016-02-11 20:01:25    2016-02-11 20:01:25
18880    18518    864    2016-04-14 23:10:38    2016-04-14 23:10:38
18881    15739    665    2015-11-26 17:39:00    2015-11-26 17:39:00
18882    11103    616    2015-09-07 02:02:35    2015-09-07 02:02:35
18883    19943    512    2016-01-21 21:02:02    2016-01-21 21:02:02
18884    14452    743    2016-01-25 01:50:58    2016-01-25 01:50:58
18885    14449    590    2015-10-29 12:09:48    2015-10-29 12:09:48
18886    12357    507    2015-04-24 05:06:05    2015-04-24 05:06:05
18887    12874    825    2016-02-13 22:36:19    2016-02-13 22:36:19
18888    17000    825    2015-12-01 17:03:10    2015-12-01 17:03:10
18889    17150    654    2016-02-28 19:56:32    2016-02-28 19:56:32
18890    12771    931    2015-11-20 03:45:40    2015-11-20 03:45:40
18891    18487    624    2015-06-30 02:44:22    2015-06-30 02:44:22
18892    17036    731    2015-11-02 20:34:06    2015-11-02 20:34:06
18893    16904    484    2015-10-01 06:59:31    2015-10-01 06:59:31
18894    14375    691    2015-12-13 10:29:57    2015-12-13 10:29:57
18895    19091    568    2016-03-16 00:04:53    2016-03-16 00:04:53
18896    10608    542    2015-05-18 01:14:59    2015-05-18 01:14:59
18897    15856    764    2016-03-22 23:08:59    2016-03-22 23:08:59
18898    13046    812    2015-09-14 04:22:23    2015-09-14 04:22:23
18899    16163    562    2016-03-26 07:13:37    2016-03-26 07:13:37
18900    11899    565    2015-10-26 21:18:50    2015-10-26 21:18:50
18901    11486    869    2015-09-23 01:22:47    2015-09-23 01:22:47
18902    12821    463    2015-06-15 10:15:06    2015-06-15 10:15:06
18903    10952    693    2016-03-15 05:39:52    2016-03-15 05:39:52
18904    10634    672    2015-08-10 10:02:23    2015-08-10 10:02:23
18905    12592    663    2015-09-27 21:07:35    2015-09-27 21:07:35
18906    15289    653    2015-09-09 15:16:14    2015-09-09 15:16:14
18907    10444    956    2016-03-04 21:31:20    2016-03-04 21:31:20
18908    12182    591    2016-01-10 20:34:01    2016-01-10 20:34:01
18909    18302    862    2015-07-07 13:29:39    2015-07-07 13:29:39
18910    19789    834    2015-06-06 10:40:55    2015-06-06 10:40:55
18911    10632    837    2015-07-02 22:02:38    2015-07-02 22:02:38
18912    18755    557    2016-04-16 15:18:37    2016-04-16 15:18:37
18913    13223    911    2016-02-01 02:03:58    2016-02-01 02:03:58
18914    16206    888    2016-02-25 23:34:07    2016-02-25 23:34:07
18915    14379    613    2016-02-07 17:23:59    2016-02-07 17:23:59
18916    19051    471    2015-07-07 13:10:28    2015-07-07 13:10:28
18917    14725    911    2015-06-30 00:18:39    2015-06-30 00:18:39
18918    18871    487    2016-01-09 17:31:52    2016-01-09 17:31:52
18919    12032    616    2016-02-17 14:22:31    2016-02-17 14:22:31
18920    12671    755    2016-01-23 22:43:56    2016-01-23 22:43:56
18921    16748    939    2016-03-14 02:46:40    2016-03-14 02:46:40
18922    10914    468    2015-08-02 20:30:56    2015-08-02 20:30:56
18923    11067    649    2016-02-11 05:22:19    2016-02-11 05:22:19
18924    17346    661    2016-03-31 08:32:09    2016-03-31 08:32:09
18925    16105    955    2016-02-12 19:33:09    2016-02-12 19:33:09
18926    15284    473    2015-06-15 01:24:44    2015-06-15 01:24:44
18927    12698    720    2016-03-24 19:11:46    2016-03-24 19:11:46
18928    13218    898    2016-02-26 04:29:07    2016-02-26 04:29:07
18929    16060    623    2015-09-22 10:35:43    2015-09-22 10:35:43
18930    10144    565    2015-05-08 22:34:09    2015-05-08 22:34:09
18931    10678    474    2015-07-16 09:22:39    2015-07-16 09:22:39
18932    15241    629    2015-12-09 09:39:09    2015-12-09 09:39:09
18933    17882    856    2016-03-25 12:20:45    2016-03-25 12:20:45
18934    10834    783    2015-05-16 00:52:22    2015-05-16 00:52:22
18935    13681    926    2015-06-27 18:41:38    2015-06-27 18:41:38
18936    15051    856    2015-09-24 20:56:44    2015-09-24 20:56:44
18937    12877    504    2015-09-02 16:22:23    2015-09-02 16:22:23
18938    18343    612    2015-07-03 08:56:16    2015-07-03 08:56:16
18939    15281    501    2015-07-17 21:39:07    2015-07-17 21:39:07
18940    16406    473    2015-08-22 21:18:22    2015-08-22 21:18:22
18941    15486    930    2015-06-13 07:25:55    2015-06-13 07:25:55
18942    16860    473    2016-03-15 17:33:48    2016-03-15 17:33:48
18943    15887    749    2015-08-05 18:21:11    2015-08-05 18:21:11
18944    17847    528    2015-10-07 07:02:45    2015-10-07 07:02:45
18945    12163    565    2016-01-05 05:37:34    2016-01-05 05:37:34
18946    19339    636    2015-06-30 15:06:51    2015-06-30 15:06:51
18947    13806    502    2015-12-09 13:25:35    2015-12-09 13:25:35
18948    18992    852    2016-02-09 18:46:55    2016-02-09 18:46:55
18949    10909    793    2016-01-21 00:19:54    2016-01-21 00:19:54
18950    10225    523    2015-10-07 06:25:57    2015-10-07 06:25:57
18951    10141    508    2015-07-08 08:55:06    2015-07-08 08:55:06
18952    14911    678    2015-11-25 20:19:13    2015-11-25 20:19:13
18953    12103    550    2015-07-27 07:57:32    2015-07-27 07:57:32
18954    12528    601    2015-06-17 19:08:58    2015-06-17 19:08:58
18955    10829    821    2015-06-13 18:31:51    2015-06-13 18:31:51
18956    13323    882    2015-05-18 22:52:16    2015-05-18 22:52:16
18957    19853    616    2015-08-10 11:05:58    2015-08-10 11:05:58
18958    19276    901    2015-06-24 04:56:06    2015-06-24 04:56:06
18959    13315    743    2015-06-01 00:32:50    2015-06-01 00:32:50
18960    11696    852    2015-12-15 15:00:44    2015-12-15 15:00:44
18961    16762    508    2015-10-23 04:51:32    2015-10-23 04:51:32
18962    15216    522    2015-06-18 05:16:04    2015-06-18 05:16:04
18963    12751    708    2016-01-30 02:35:09    2016-01-30 02:35:09
18964    16099    688    2015-06-12 03:49:35    2015-06-12 03:49:35
18965    17761    937    2016-03-28 02:36:41    2016-03-28 02:36:41
18966    12553    741    2015-08-15 14:08:03    2015-08-15 14:08:03
18967    11905    689    2015-11-25 07:58:50    2015-11-25 07:58:50
18968    16667    566    2015-12-03 05:36:37    2015-12-03 05:36:37
18969    13336    482    2015-12-06 11:31:56    2015-12-06 11:31:56
18970    15303    731    2016-02-14 03:58:06    2016-02-14 03:58:06
18971    14179    632    2015-05-06 22:13:28    2015-05-06 22:13:28
18972    18815    661    2016-02-25 03:47:55    2016-02-25 03:47:55
18973    10108    712    2015-10-24 08:41:38    2015-10-24 08:41:38
18974    19490    755    2016-03-03 15:09:24    2016-03-03 15:09:24
18975    19674    921    2015-12-04 20:07:32    2015-12-04 20:07:32
18976    11398    914    2015-08-01 19:09:36    2015-08-01 19:09:36
18977    11158    913    2016-03-12 02:13:15    2016-03-12 02:13:15
18978    10372    637    2015-08-10 15:57:07    2015-08-10 15:57:07
18979    11465    847    2015-10-08 11:33:43    2015-10-08 11:33:43
18980    19768    791    2015-10-03 11:39:16    2015-10-03 11:39:16
18981    10547    565    2016-01-25 16:40:36    2016-01-25 16:40:36
18982    16329    538    2015-10-28 16:58:57    2015-10-28 16:58:57
18983    11756    636    2015-07-15 11:15:15    2015-07-15 11:15:15
18984    14110    485    2015-09-01 12:08:37    2015-09-01 12:08:37
18985    10162    810    2015-12-27 01:36:02    2015-12-27 01:36:02
18986    12338    818    2015-05-25 20:42:20    2015-05-25 20:42:20
18987    13589    674    2015-11-13 04:47:23    2015-11-13 04:47:23
18988    10496    502    2016-03-11 00:34:23    2016-03-11 00:34:23
18989    17052    778    2016-03-29 13:23:30    2016-03-29 13:23:30
18990    10594    734    2016-01-19 15:00:37    2016-01-19 15:00:37
18991    11264    839    2015-05-28 12:23:25    2015-05-28 12:23:25
18992    16064    627    2016-02-12 01:09:05    2016-02-12 01:09:05
18993    10597    935    2016-03-02 12:42:48    2016-03-02 12:42:48
18994    13637    824    2015-09-03 03:33:24    2015-09-03 03:33:24
18995    14753    774    2015-12-25 14:37:27    2015-12-25 14:37:27
18996    10831    654    2016-02-13 16:35:33    2016-02-13 16:35:33
18997    10702    463    2015-07-14 08:27:16    2015-07-14 08:27:16
18998    10729    579    2016-02-24 23:12:13    2016-02-24 23:12:13
18999    15976    585    2015-05-01 08:14:21    2015-05-01 08:14:21
19000    16729    918    2015-04-26 07:22:44    2015-04-26 07:22:44
19001    12665    643    2016-04-17 14:03:22    2016-04-17 14:03:22
19002    12499    465    2016-04-06 16:16:15    2016-04-06 16:16:15
19003    13888    529    2016-02-06 23:09:09    2016-02-06 23:09:09
19004    19459    932    2015-10-14 19:34:53    2015-10-14 19:34:53
19005    16657    470    2016-01-19 17:34:49    2016-01-19 17:34:49
19006    10930    530    2015-07-14 05:20:40    2015-07-14 05:20:40
19007    13079    621    2015-06-15 02:13:55    2015-06-15 02:13:55
19008    14511    522    2015-09-09 17:09:00    2015-09-09 17:09:00
19009    13701    502    2016-03-24 01:53:45    2016-03-24 01:53:45
19010    13205    528    2015-11-22 01:48:46    2015-11-22 01:48:46
19011    10221    651    2016-04-14 22:13:54    2016-04-14 22:13:54
19012    16244    775    2016-01-21 19:06:28    2016-01-21 19:06:28
19013    15776    944    2016-02-09 11:13:35    2016-02-09 11:13:35
19014    14641    503    2015-07-24 22:47:46    2015-07-24 22:47:46
19015    16406    494    2016-02-23 22:48:19    2016-02-23 22:48:19
19016    12200    739    2015-05-09 20:32:05    2015-05-09 20:32:05
19017    16182    750    2015-05-20 18:07:03    2015-05-20 18:07:03
19018    18202    778    2015-12-28 12:35:46    2015-12-28 12:35:46
19019    15424    524    2015-06-03 05:47:31    2015-06-03 05:47:31
19020    17226    935    2015-10-22 15:26:39    2015-10-22 15:26:39
19021    12262    764    2016-04-05 13:00:26    2016-04-05 13:00:26
19022    19117    730    2015-12-27 06:19:01    2015-12-27 06:19:01
19023    10580    845    2015-05-03 09:06:35    2015-05-03 09:06:35
19024    14615    468    2015-04-23 00:04:45    2015-04-23 00:04:45
19025    13487    884    2016-02-12 16:46:17    2016-02-12 16:46:17
19026    13414    901    2016-02-03 21:57:51    2016-02-03 21:57:51
19027    16747    932    2015-12-22 06:29:16    2015-12-22 06:29:16
19028    15160    856    2015-06-28 11:45:30    2015-06-28 11:45:30
19029    14787    941    2015-11-29 12:50:04    2015-11-29 12:50:04
19030    16139    488    2016-02-28 05:24:42    2016-02-28 05:24:42
19031    15230    769    2015-04-30 06:08:43    2015-04-30 06:08:43
19032    10140    853    2016-01-21 11:52:57    2016-01-21 11:52:57
19033    13998    768    2015-10-09 12:58:25    2015-10-09 12:58:25
19034    16898    853    2015-06-17 00:21:30    2015-06-17 00:21:30
19035    13432    888    2015-08-02 23:43:54    2015-08-02 23:43:54
19036    11318    681    2016-01-24 03:05:19    2016-01-24 03:05:19
19037    17901    683    2015-10-30 00:53:07    2015-10-30 00:53:07
19038    12099    701    2016-02-11 04:00:16    2016-02-11 04:00:16
19039    13763    805    2015-10-19 12:19:33    2015-10-19 12:19:33
19040    17050    635    2015-07-08 13:28:59    2015-07-08 13:28:59
19041    16469    764    2015-07-22 01:06:07    2015-07-22 01:06:07
19042    12435    790    2016-04-16 04:30:48    2016-04-16 04:30:48
19043    16966    920    2016-02-03 02:59:28    2016-02-03 02:59:28
19044    12685    736    2015-06-06 07:44:17    2015-06-06 07:44:17
19045    18977    923    2016-03-03 09:54:49    2016-03-03 09:54:49
19046    15954    773    2015-11-01 23:05:00    2015-11-01 23:05:00
19047    17554    681    2015-05-09 02:04:52    2015-05-09 02:04:52
19048    13247    481    2016-02-13 06:09:20    2016-02-13 06:09:20
19049    18967    524    2015-09-20 02:42:47    2015-09-20 02:42:47
19050    18017    830    2016-01-04 18:33:30    2016-01-04 18:33:30
19051    16569    578    2015-08-18 16:13:11    2015-08-18 16:13:11
19052    15648    952    2015-12-16 07:19:21    2015-12-16 07:19:21
19053    16674    958    2015-05-11 22:30:37    2015-05-11 22:30:37
19054    19211    888    2015-07-14 01:25:48    2015-07-14 01:25:48
19055    14872    609    2015-11-10 18:30:52    2015-11-10 18:30:52
19056    18680    489    2015-09-06 12:56:00    2015-09-06 12:56:00
19057    15644    474    2015-09-01 19:53:39    2015-09-01 19:53:39
19058    11429    652    2015-05-18 08:24:28    2015-05-18 08:24:28
19059    13763    915    2015-07-09 01:12:34    2015-07-09 01:12:34
19060    12273    884    2016-04-14 15:41:00    2016-04-14 15:41:00
19061    16241    536    2015-05-16 21:40:16    2015-05-16 21:40:16
19062    19065    944    2016-02-02 14:07:51    2016-02-02 14:07:51
19063    16333    824    2016-01-24 02:16:45    2016-01-24 02:16:45
19064    10810    793    2015-12-22 12:38:56    2015-12-22 12:38:56
19065    16638    568    2016-01-17 07:59:02    2016-01-17 07:59:02
19066    15026    706    2015-08-31 17:10:08    2015-08-31 17:10:08
19067    10893    489    2015-06-16 02:42:56    2015-06-16 02:42:56
19068    14192    836    2015-08-28 06:44:29    2015-08-28 06:44:29
19069    15249    504    2016-01-27 22:59:32    2016-01-27 22:59:32
19070    12551    551    2015-12-21 23:58:05    2015-12-21 23:58:05
19071    12589    838    2015-08-08 04:49:27    2015-08-08 04:49:27
19072    16809    828    2015-11-03 02:06:05    2015-11-03 02:06:05
19073    15728    953    2016-02-21 08:35:58    2016-02-21 08:35:58
19074    12048    621    2016-02-14 15:37:18    2016-02-14 15:37:18
19075    12537    486    2015-11-22 19:51:42    2015-11-22 19:51:42
19076    16437    932    2016-03-29 00:45:14    2016-03-29 00:45:14
19077    12685    467    2015-08-05 11:17:21    2015-08-05 11:17:21
19078    15847    698    2015-05-21 16:56:43    2015-05-21 16:56:43
19079    15975    960    2015-08-28 22:21:24    2015-08-28 22:21:24
19080    19662    720    2015-05-24 16:52:18    2015-05-24 16:52:18
19081    15947    519    2016-02-09 05:11:36    2016-02-09 05:11:36
19082    13889    807    2015-05-06 21:18:13    2015-05-06 21:18:13
19083    13416    526    2016-01-23 13:43:08    2016-01-23 13:43:08
19084    15555    882    2016-02-25 11:40:05    2016-02-25 11:40:05
19085    12762    888    2015-07-24 06:01:00    2015-07-24 06:01:00
19086    12527    933    2016-03-10 01:29:33    2016-03-10 01:29:33
19087    15969    478    2015-05-13 11:26:45    2015-05-13 11:26:45
19088    11655    479    2016-02-25 08:55:17    2016-02-25 08:55:17
19089    12704    573    2016-03-08 08:07:41    2016-03-08 08:07:41
19090    10965    748    2015-06-09 23:41:46    2015-06-09 23:41:46
19091    16782    677    2015-12-10 11:57:54    2015-12-10 11:57:54
19092    17368    541    2015-07-11 03:58:32    2015-07-11 03:58:32
19093    14040    677    2015-12-26 02:43:36    2015-12-26 02:43:36
19094    16397    788    2015-08-24 21:13:15    2015-08-24 21:13:15
19095    10152    886    2015-07-16 10:47:30    2015-07-16 10:47:30
19096    17407    905    2016-04-09 03:47:29    2016-04-09 03:47:29
19097    12275    620    2015-08-06 10:35:50    2015-08-06 10:35:50
19098    19824    781    2015-05-07 19:05:26    2015-05-07 19:05:26
19099    11722    873    2016-02-04 06:07:56    2016-02-04 06:07:56
19100    16751    696    2015-12-27 22:17:08    2015-12-27 22:17:08
19101    12775    848    2015-08-06 20:44:38    2015-08-06 20:44:38
19102    13733    497    2015-11-04 04:37:45    2015-11-04 04:37:45
19103    19658    628    2015-05-21 14:17:55    2015-05-21 14:17:55
19104    11477    643    2015-12-13 09:17:52    2015-12-13 09:17:52
19105    11209    898    2015-06-21 00:26:10    2015-06-21 00:26:10
19106    12437    854    2016-01-01 16:19:23    2016-01-01 16:19:23
19107    18662    774    2016-03-10 01:03:47    2016-03-10 01:03:47
19108    13968    497    2016-01-30 17:29:36    2016-01-30 17:29:36
19109    19331    495    2015-05-02 00:03:31    2015-05-02 00:03:31
19110    14536    654    2015-07-20 17:45:31    2015-07-20 17:45:31
19111    16374    526    2015-11-23 18:20:08    2015-11-23 18:20:08
19112    14681    657    2015-07-21 19:38:28    2015-07-21 19:38:28
19113    12696    856    2016-02-19 11:05:31    2016-02-19 11:05:31
19114    13483    583    2016-03-21 00:46:26    2016-03-21 00:46:26
19115    18670    642    2015-11-01 08:57:25    2015-11-01 08:57:25
19116    16471    705    2016-01-10 16:03:21    2016-01-10 16:03:21
19117    15236    819    2015-05-25 10:52:49    2015-05-25 10:52:49
19118    12475    744    2015-10-09 19:40:45    2015-10-09 19:40:45
19119    19554    946    2016-01-15 05:40:54    2016-01-15 05:40:54
19120    12559    531    2015-08-17 17:56:53    2015-08-17 17:56:53
19121    14840    517    2015-11-04 23:21:00    2015-11-04 23:21:00
19122    12113    836    2015-11-03 22:46:17    2015-11-03 22:46:17
19123    12115    759    2015-07-13 15:28:30    2015-07-13 15:28:30
19124    18838    599    2015-07-15 17:45:31    2015-07-15 17:45:31
19125    11271    720    2016-04-08 06:49:34    2016-04-08 06:49:34
19126    15662    885    2015-05-16 17:34:57    2015-05-16 17:34:57
19127    13986    754    2015-06-29 08:59:10    2015-06-29 08:59:10
19128    13137    654    2015-07-09 05:36:44    2015-07-09 05:36:44
19129    14818    715    2015-11-24 12:58:47    2015-11-24 12:58:47
19130    17891    756    2016-03-17 10:10:54    2016-03-17 10:10:54
19131    19306    684    2016-03-01 05:19:48    2016-03-01 05:19:48
19132    11499    828    2016-04-11 05:17:14    2016-04-11 05:17:14
19133    18184    900    2015-10-21 02:30:14    2015-10-21 02:30:14
19134    19046    959    2015-08-26 09:36:36    2015-08-26 09:36:36
19135    19956    809    2015-07-31 05:24:50    2015-07-31 05:24:50
19136    14798    737    2016-02-17 05:50:03    2016-02-17 05:50:03
19137    17618    690    2015-08-28 09:32:43    2015-08-28 09:32:43
19138    19175    703    2015-10-18 21:17:55    2015-10-18 21:17:55
19139    18935    465    2015-08-23 05:46:41    2015-08-23 05:46:41
19140    17544    757    2015-08-23 20:52:12    2015-08-23 20:52:12
19141    11642    940    2015-06-13 09:08:22    2015-06-13 09:08:22
19142    15508    878    2016-03-14 08:03:56    2016-03-14 08:03:56
19143    16222    787    2015-08-03 08:07:01    2015-08-03 08:07:01
19144    13177    847    2016-03-08 09:43:22    2016-03-08 09:43:22
19145    11186    832    2015-11-19 18:35:56    2015-11-19 18:35:56
19146    18241    633    2015-06-07 19:09:45    2015-06-07 19:09:45
19147    17621    715    2016-02-07 05:24:43    2016-02-07 05:24:43
19148    17081    918    2015-10-14 16:20:21    2015-10-14 16:20:21
19149    15875    639    2015-05-24 10:52:55    2015-05-24 10:52:55
19150    16790    601    2015-09-20 01:34:35    2015-09-20 01:34:35
19151    15925    661    2015-12-09 03:38:40    2015-12-09 03:38:40
19152    18194    468    2015-07-26 19:24:49    2015-07-26 19:24:49
19153    18638    501    2016-03-29 18:28:43    2016-03-29 18:28:43
19154    14285    785    2015-07-28 21:38:07    2015-07-28 21:38:07
19155    15075    804    2015-08-04 09:31:29    2015-08-04 09:31:29
19156    13970    668    2016-01-06 23:40:12    2016-01-06 23:40:12
19157    10532    775    2015-05-16 09:11:24    2015-05-16 09:11:24
19158    18660    919    2016-01-08 17:53:15    2016-01-08 17:53:15
19159    19735    937    2015-10-08 02:09:18    2015-10-08 02:09:18
19160    10576    871    2015-09-06 22:54:12    2015-09-06 22:54:12
19161    13222    688    2015-07-28 02:02:21    2015-07-28 02:02:21
19162    17269    682    2015-07-28 12:09:12    2015-07-28 12:09:12
19163    14730    855    2016-04-14 18:01:26    2016-04-14 18:01:26
19164    10342    611    2015-11-12 03:47:44    2015-11-12 03:47:44
19165    10259    942    2015-08-10 00:37:21    2015-08-10 00:37:21
19166    19216    854    2015-07-24 01:04:55    2015-07-24 01:04:55
19167    18176    551    2016-02-10 21:15:25    2016-02-10 21:15:25
19168    16562    670    2016-04-03 09:08:31    2016-04-03 09:08:31
19169    12443    802    2016-03-16 03:45:20    2016-03-16 03:45:20
19170    16830    957    2016-02-20 15:38:40    2016-02-20 15:38:40
19171    10314    906    2015-09-14 00:33:18    2015-09-14 00:33:18
19172    13775    910    2015-09-03 21:56:15    2015-09-03 21:56:15
19173    11183    744    2015-11-27 08:15:05    2015-11-27 08:15:05
19174    12987    672    2015-04-27 04:22:50    2015-04-27 04:22:50
19175    13959    606    2015-10-18 23:45:00    2015-10-18 23:45:00
19176    12799    786    2015-09-13 14:31:59    2015-09-13 14:31:59
19177    11114    536    2015-08-20 08:28:19    2015-08-20 08:28:19
19178    17204    855    2015-10-09 12:22:09    2015-10-09 12:22:09
19179    10328    750    2016-02-04 07:41:16    2016-02-04 07:41:16
19180    15166    489    2016-03-12 06:53:12    2016-03-12 06:53:12
19181    16575    547    2015-09-04 23:08:27    2015-09-04 23:08:27
19182    14484    792    2015-11-29 03:51:26    2015-11-29 03:51:26
19183    10355    572    2016-03-28 16:06:29    2016-03-28 16:06:29
19184    10343    793    2015-08-10 09:08:19    2015-08-10 09:08:19
19185    14820    743    2015-09-20 02:05:49    2015-09-20 02:05:49
19186    18471    483    2015-04-29 12:24:41    2015-04-29 12:24:41
19187    16001    824    2015-07-06 15:35:16    2015-07-06 15:35:16
19188    16398    890    2015-07-05 03:16:47    2015-07-05 03:16:47
19189    11518    773    2016-03-31 01:39:16    2016-03-31 01:39:16
19190    13037    789    2015-08-31 14:22:45    2015-08-31 14:22:45
19191    15971    712    2015-09-29 01:27:49    2015-09-29 01:27:49
19192    13982    648    2015-11-15 14:18:59    2015-11-15 14:18:59
19193    11496    903    2015-10-25 00:56:26    2015-10-25 00:56:26
19194    17869    738    2016-02-16 13:44:54    2016-02-16 13:44:54
19195    11744    889    2015-07-21 07:59:47    2015-07-21 07:59:47
19196    18605    543    2015-07-25 13:15:47    2015-07-25 13:15:47
19197    10397    902    2015-12-12 21:10:15    2015-12-12 21:10:15
19198    18797    874    2015-11-22 17:47:38    2015-11-22 17:47:38
19199    15966    955    2015-12-06 19:21:51    2015-12-06 19:21:51
19200    17288    470    2015-05-20 13:42:54    2015-05-20 13:42:54
19201    10739    686    2015-05-20 00:26:48    2015-05-20 00:26:48
19202    17016    648    2015-09-18 04:03:16    2015-09-18 04:03:16
19203    12640    655    2016-01-05 02:56:21    2016-01-05 02:56:21
19204    12210    824    2015-05-17 10:20:11    2015-05-17 10:20:11
19205    10626    721    2015-06-06 10:54:57    2015-06-06 10:54:57
19206    11022    843    2016-04-08 02:23:25    2016-04-08 02:23:25
19207    13700    542    2016-02-02 02:10:09    2016-02-02 02:10:09
19208    12896    797    2015-07-13 05:42:32    2015-07-13 05:42:32
19209    18849    915    2015-07-25 23:02:04    2015-07-25 23:02:04
19210    13213    531    2016-01-12 06:53:42    2016-01-12 06:53:42
19211    13296    742    2015-04-23 03:11:06    2015-04-23 03:11:06
19212    19177    735    2015-07-27 10:30:13    2015-07-27 10:30:13
19213    19931    804    2015-11-18 01:45:31    2015-11-18 01:45:31
19214    17674    814    2016-02-12 13:55:39    2016-02-12 13:55:39
19215    15925    936    2015-06-16 03:19:49    2015-06-16 03:19:49
19216    11913    498    2015-11-17 13:40:16    2015-11-17 13:40:16
19217    19370    576    2016-02-22 07:01:27    2016-02-22 07:01:27
19218    10602    655    2015-07-23 01:27:04    2015-07-23 01:27:04
19219    13281    873    2016-03-12 16:37:54    2016-03-12 16:37:54
19220    13946    761    2015-08-13 18:36:42    2015-08-13 18:36:42
19221    18541    474    2015-11-12 19:03:10    2015-11-12 19:03:10
19222    15334    729    2015-07-07 00:03:23    2015-07-07 00:03:23
19223    19055    787    2015-11-23 21:01:18    2015-11-23 21:01:18
19224    13507    816    2016-03-21 07:08:33    2016-03-21 07:08:33
19225    18662    670    2016-03-24 12:37:00    2016-03-24 12:37:00
19226    19018    704    2016-04-14 21:38:05    2016-04-14 21:38:05
19227    18566    641    2016-02-10 23:57:13    2016-02-10 23:57:13
19228    13253    598    2016-02-05 23:14:40    2016-02-05 23:14:40
19229    18741    795    2015-09-10 07:14:54    2015-09-10 07:14:54
19230    18450    608    2015-05-06 17:00:35    2015-05-06 17:00:35
19231    11294    789    2015-08-27 13:41:21    2015-08-27 13:41:21
19232    13692    693    2016-04-05 01:41:25    2016-04-05 01:41:25
19233    11753    761    2015-05-08 12:49:41    2015-05-08 12:49:41
19234    13787    708    2015-09-03 04:17:28    2015-09-03 04:17:28
19235    16548    823    2015-05-15 22:45:45    2015-05-15 22:45:45
19236    14260    766    2016-01-26 21:46:59    2016-01-26 21:46:59
19237    15987    874    2015-12-22 01:57:15    2015-12-22 01:57:15
19238    14234    937    2016-03-02 05:30:09    2016-03-02 05:30:09
19239    13643    883    2015-11-08 01:56:17    2015-11-08 01:56:17
19240    10833    839    2016-04-09 07:38:54    2016-04-09 07:38:54
19241    17394    894    2015-08-09 02:30:48    2015-08-09 02:30:48
19242    15803    671    2015-08-03 12:04:11    2015-08-03 12:04:11
19243    10850    909    2015-08-18 22:24:53    2015-08-18 22:24:53
19244    15570    811    2016-04-04 22:22:00    2016-04-04 22:22:00
19245    12565    931    2015-12-22 18:23:56    2015-12-22 18:23:56
19246    16541    662    2015-10-30 00:58:46    2015-10-30 00:58:46
19247    16834    779    2015-06-19 12:35:40    2015-06-19 12:35:40
19248    12465    833    2015-10-04 07:37:55    2015-10-04 07:37:55
19249    17710    838    2015-11-08 10:17:06    2015-11-08 10:17:06
19250    10268    709    2015-11-21 09:10:33    2015-11-21 09:10:33
19251    12371    604    2015-05-13 05:43:38    2015-05-13 05:43:38
19252    18392    499    2015-05-06 16:00:41    2015-05-06 16:00:41
19253    12632    708    2015-08-11 19:57:15    2015-08-11 19:57:15
19254    12442    862    2015-05-18 00:00:55    2015-05-18 00:00:55
19255    14374    825    2015-10-23 15:09:49    2015-10-23 15:09:49
19256    16899    571    2015-07-11 08:43:56    2015-07-11 08:43:56
19257    12687    728    2015-10-10 09:02:41    2015-10-10 09:02:41
19258    12410    722    2016-01-30 05:47:02    2016-01-30 05:47:02
19259    14582    749    2016-02-01 03:43:49    2016-02-01 03:43:49
19260    19995    828    2015-09-24 18:15:54    2015-09-24 18:15:54
19261    18592    598    2015-06-13 23:09:34    2015-06-13 23:09:34
19262    17569    746    2016-02-16 01:05:37    2016-02-16 01:05:37
19263    15256    820    2015-06-01 13:47:56    2015-06-01 13:47:56
19264    17003    849    2015-05-06 23:29:34    2015-05-06 23:29:34
19265    13123    571    2015-11-02 23:11:30    2015-11-02 23:11:30
19266    17438    558    2015-05-20 22:43:12    2015-05-20 22:43:12
19267    11906    598    2015-11-27 20:14:32    2015-11-27 20:14:32
19268    14607    812    2016-01-30 07:41:14    2016-01-30 07:41:14
19269    11707    885    2015-10-12 06:16:42    2015-10-12 06:16:42
19270    17610    684    2015-10-18 15:06:01    2015-10-18 15:06:01
19271    11539    773    2016-01-22 04:06:37    2016-01-22 04:06:37
19272    17387    814    2016-01-16 20:10:05    2016-01-16 20:10:05
19273    13676    540    2015-12-27 06:41:21    2015-12-27 06:41:21
19274    15262    612    2016-01-29 09:17:41    2016-01-29 09:17:41
19275    19997    715    2016-01-23 13:03:53    2016-01-23 13:03:53
19276    16100    891    2016-01-19 23:50:46    2016-01-19 23:50:46
19277    10578    883    2016-01-04 13:51:35    2016-01-04 13:51:35
19278    13092    751    2015-08-11 23:46:23    2015-08-11 23:46:23
19279    13377    774    2015-09-27 05:55:46    2015-09-27 05:55:46
19280    11600    560    2016-04-20 05:23:13    2016-04-20 05:23:13
19281    16901    840    2016-02-09 02:00:18    2016-02-09 02:00:18
19282    19391    714    2016-02-02 16:42:07    2016-02-02 16:42:07
19283    12126    721    2015-06-25 10:52:58    2015-06-25 10:52:58
19284    11565    772    2016-01-28 07:40:27    2016-01-28 07:40:27
19285    13753    927    2015-12-17 10:19:11    2015-12-17 10:19:11
19286    16124    638    2015-10-19 14:11:55    2015-10-19 14:11:55
19287    14975    904    2016-01-28 15:58:44    2016-01-28 15:58:44
19288    19540    811    2016-02-13 11:55:20    2016-02-13 11:55:20
19289    15523    575    2016-02-13 05:29:29    2016-02-13 05:29:29
19290    12368    678    2015-10-09 17:40:01    2015-10-09 17:40:01
19291    11092    575    2016-04-19 06:24:41    2016-04-19 06:24:41
19292    14568    661    2015-12-08 03:25:12    2015-12-08 03:25:12
19293    10073    805    2015-07-04 23:37:10    2015-07-04 23:37:10
19294    18166    498    2016-03-12 03:36:19    2016-03-12 03:36:19
19295    12323    605    2015-11-23 17:47:33    2015-11-23 17:47:33
19296    11357    871    2015-12-27 07:42:07    2015-12-27 07:42:07
19297    10574    938    2015-07-16 16:43:55    2015-07-16 16:43:55
19298    11579    851    2016-01-19 18:36:45    2016-01-19 18:36:45
19299    11213    480    2015-10-18 10:00:10    2015-10-18 10:00:10
19300    10925    661    2016-02-18 22:37:16    2016-02-18 22:37:16
19301    12903    659    2015-12-05 10:35:35    2015-12-05 10:35:35
19302    10574    628    2016-03-14 04:12:24    2016-03-14 04:12:24
19303    11237    500    2015-12-24 13:59:10    2015-12-24 13:59:10
19304    14214    568    2015-10-13 09:41:20    2015-10-13 09:41:20
19305    11693    896    2016-04-12 04:07:31    2016-04-12 04:07:31
19306    17113    681    2016-02-14 06:26:12    2016-02-14 06:26:12
19307    10957    776    2015-08-17 07:00:52    2015-08-17 07:00:52
19308    18978    849    2015-11-04 21:08:20    2015-11-04 21:08:20
19309    14754    565    2016-04-14 08:46:51    2016-04-14 08:46:51
19310    12249    598    2016-04-02 03:05:54    2016-04-02 03:05:54
19311    11427    836    2015-08-28 13:20:59    2015-08-28 13:20:59
19312    16401    658    2016-02-01 05:19:51    2016-02-01 05:19:51
19313    18808    816    2015-09-09 09:56:47    2015-09-09 09:56:47
19314    12040    626    2015-07-28 13:53:37    2015-07-28 13:53:37
19315    16492    872    2015-11-29 12:13:20    2015-11-29 12:13:20
19316    19125    909    2016-04-17 10:55:53    2016-04-17 10:55:53
19317    12717    808    2016-02-27 17:23:41    2016-02-27 17:23:41
19318    10576    862    2015-09-26 00:14:56    2015-09-26 00:14:56
19319    10253    951    2016-04-20 12:09:45    2016-04-20 12:09:45
19320    14777    748    2015-08-27 04:52:59    2015-08-27 04:52:59
19321    17624    550    2015-09-27 07:08:35    2015-09-27 07:08:35
19322    17334    836    2015-10-31 05:09:16    2015-10-31 05:09:16
19323    11189    611    2016-01-15 11:59:28    2016-01-15 11:59:28
19324    17750    778    2016-04-18 16:34:03    2016-04-18 16:34:03
19325    10675    839    2015-04-22 23:07:03    2015-04-22 23:07:03
19326    15113    938    2015-09-09 17:38:49    2015-09-09 17:38:49
19327    18165    614    2015-08-05 21:42:18    2015-08-05 21:42:18
19328    12787    589    2016-03-13 00:31:24    2016-03-13 00:31:24
19329    17800    828    2015-09-02 19:18:37    2015-09-02 19:18:37
19330    18610    959    2015-08-12 20:05:20    2015-08-12 20:05:20
19331    16002    834    2015-09-07 21:28:43    2015-09-07 21:28:43
19332    12458    882    2015-09-12 14:00:38    2015-09-12 14:00:38
19333    19431    704    2015-09-25 23:45:27    2015-09-25 23:45:27
19334    11977    921    2015-05-25 02:09:31    2015-05-25 02:09:31
19335    11526    544    2016-03-12 05:11:19    2016-03-12 05:11:19
19336    18721    713    2016-02-02 13:28:14    2016-02-02 13:28:14
19337    17470    816    2015-07-26 19:15:58    2015-07-26 19:15:58
19338    12024    522    2015-09-10 21:15:47    2015-09-10 21:15:47
19339    17062    491    2015-07-29 07:01:08    2015-07-29 07:01:08
19340    19762    683    2015-10-10 18:41:52    2015-10-10 18:41:52
19341    13116    635    2016-01-19 07:37:44    2016-01-19 07:37:44
19342    15941    697    2015-10-24 00:28:15    2015-10-24 00:28:15
19343    14292    498    2015-06-03 18:06:42    2015-06-03 18:06:42
19344    16781    828    2015-11-11 21:27:52    2015-11-11 21:27:52
19345    12190    924    2015-05-30 03:50:17    2015-05-30 03:50:17
19346    11912    733    2015-10-29 19:17:45    2015-10-29 19:17:45
19347    14526    621    2015-08-06 11:34:09    2015-08-06 11:34:09
19348    13514    545    2016-01-11 19:43:45    2016-01-11 19:43:45
19349    19440    659    2015-12-26 03:46:11    2015-12-26 03:46:11
19350    18745    899    2016-03-12 22:04:55    2016-03-12 22:04:55
19351    12373    500    2015-04-26 17:33:01    2015-04-26 17:33:01
19352    17154    482    2016-02-07 07:11:10    2016-02-07 07:11:10
19353    18316    787    2015-12-26 15:33:59    2015-12-26 15:33:59
19354    18029    629    2016-04-16 09:09:22    2016-04-16 09:09:22
19355    16494    765    2015-09-18 14:41:45    2015-09-18 14:41:45
19356    11734    676    2015-06-20 10:07:38    2015-06-20 10:07:38
19357    15871    488    2015-05-30 23:48:51    2015-05-30 23:48:51
19358    19738    958    2015-12-23 11:12:04    2015-12-23 11:12:04
19359    16464    943    2016-03-02 03:51:31    2016-03-02 03:51:31
19360    11777    471    2015-08-01 08:48:29    2015-08-01 08:48:29
19361    18340    820    2015-12-30 01:51:21    2015-12-30 01:51:21
19362    14836    511    2016-04-03 16:30:05    2016-04-03 16:30:05
19363    14223    570    2015-11-26 23:08:15    2015-11-26 23:08:15
19364    13411    486    2016-01-20 02:25:09    2016-01-20 02:25:09
19365    11348    808    2016-03-02 01:21:11    2016-03-02 01:21:11
19366    19780    531    2015-05-14 21:47:13    2015-05-14 21:47:13
19367    17372    496    2015-06-12 08:27:59    2015-06-12 08:27:59
19368    14386    875    2016-03-31 03:20:47    2016-03-31 03:20:47
19369    11217    676    2015-10-08 07:52:40    2015-10-08 07:52:40
19370    19376    794    2015-05-27 00:08:12    2015-05-27 00:08:12
19371    15257    701    2015-06-21 19:54:33    2015-06-21 19:54:33
19372    10842    926    2015-10-07 04:52:58    2015-10-07 04:52:58
19373    15457    474    2016-02-05 22:24:24    2016-02-05 22:24:24
19374    18118    600    2015-12-20 10:57:59    2015-12-20 10:57:59
19375    10182    698    2016-03-27 08:06:08    2016-03-27 08:06:08
19376    19456    483    2015-07-16 03:29:18    2015-07-16 03:29:18
19377    12789    714    2016-01-31 03:05:42    2016-01-31 03:05:42
19378    19013    534    2016-03-20 23:33:52    2016-03-20 23:33:52
19379    17398    556    2016-04-08 05:25:09    2016-04-08 05:25:09
19380    12597    538    2016-02-10 02:31:19    2016-02-10 02:31:19
19381    18588    638    2015-04-24 16:07:52    2015-04-24 16:07:52
19382    18279    819    2015-10-21 08:37:33    2015-10-21 08:37:33
19383    11843    523    2016-03-27 11:53:31    2016-03-27 11:53:31
19384    18596    949    2015-09-21 21:29:30    2015-09-21 21:29:30
19385    10495    883    2015-06-01 16:38:51    2015-06-01 16:38:51
19386    10697    815    2015-10-29 16:49:41    2015-10-29 16:49:41
19387    19806    791    2015-06-24 18:06:43    2015-06-24 18:06:43
19388    18268    606    2015-06-28 06:41:28    2015-06-28 06:41:28
19389    17392    517    2015-08-11 19:40:19    2015-08-11 19:40:19
19390    13837    653    2016-01-20 17:59:05    2016-01-20 17:59:05
19391    16896    592    2015-07-24 15:49:35    2015-07-24 15:49:35
19392    10073    640    2015-04-29 04:22:48    2015-04-29 04:22:48
19393    15621    481    2016-01-21 11:03:50    2016-01-21 11:03:50
19394    13962    510    2015-06-01 08:36:53    2015-06-01 08:36:53
19395    13073    523    2015-08-31 07:39:13    2015-08-31 07:39:13
19396    10673    590    2015-05-15 20:51:27    2015-05-15 20:51:27
19397    19043    709    2015-07-19 13:39:40    2015-07-19 13:39:40
19398    11992    601    2016-02-24 21:19:05    2016-02-24 21:19:05
19399    17262    935    2015-11-11 22:19:28    2015-11-11 22:19:28
19400    17387    913    2015-10-12 15:31:17    2015-10-12 15:31:17
19401    15443    699    2015-10-13 22:16:59    2015-10-13 22:16:59
19402    10862    800    2016-01-05 06:44:09    2016-01-05 06:44:09
19403    15067    909    2016-03-27 06:27:17    2016-03-27 06:27:17
19404    10099    693    2016-02-24 05:39:17    2016-02-24 05:39:17
19405    10211    726    2016-03-01 18:22:50    2016-03-01 18:22:50
19406    15421    961    2016-01-26 13:52:18    2016-01-26 13:52:18
19407    13552    805    2015-12-09 09:39:45    2015-12-09 09:39:45
19408    15297    816    2015-07-17 17:40:20    2015-07-17 17:40:20
19409    10985    486    2015-09-15 18:00:17    2015-09-15 18:00:17
19410    13205    961    2016-01-06 19:51:36    2016-01-06 19:51:36
19411    17276    757    2015-07-18 01:48:38    2015-07-18 01:48:38
19412    15213    703    2015-11-04 22:19:33    2015-11-04 22:19:33
19413    16970    672    2016-03-16 23:33:29    2016-03-16 23:33:29
19414    18940    492    2015-12-23 19:54:47    2015-12-23 19:54:47
19415    11425    655    2015-07-20 19:52:23    2015-07-20 19:52:23
19416    12998    691    2016-01-18 11:28:56    2016-01-18 11:28:56
19417    13416    949    2016-01-30 18:44:31    2016-01-30 18:44:31
19418    16570    710    2016-01-16 00:20:07    2016-01-16 00:20:07
19419    14822    533    2016-03-02 05:59:47    2016-03-02 05:59:47
19420    13052    870    2015-10-18 21:30:19    2015-10-18 21:30:19
19421    16063    560    2016-03-20 07:06:08    2016-03-20 07:06:08
19422    13729    702    2016-03-16 22:03:43    2016-03-16 22:03:43
19423    15814    616    2015-09-22 22:06:27    2015-09-22 22:06:27
19424    11216    961    2015-11-18 06:09:52    2015-11-18 06:09:52
19425    13769    723    2015-09-20 22:06:21    2015-09-20 22:06:21
19426    15983    833    2016-03-27 22:05:31    2016-03-27 22:05:31
19427    12745    573    2015-09-14 02:13:48    2015-09-14 02:13:48
19428    15635    863    2015-05-01 15:44:42    2015-05-01 15:44:42
19429    10155    777    2015-07-12 16:25:42    2015-07-12 16:25:42
19430    19399    603    2015-09-23 01:20:20    2015-09-23 01:20:20
19431    17322    805    2015-09-18 08:19:01    2015-09-18 08:19:01
19432    16953    510    2016-02-22 23:04:08    2016-02-22 23:04:08
19433    11315    487    2016-02-23 22:37:37    2016-02-23 22:37:37
19434    11947    694    2016-04-20 21:02:06    2016-04-20 21:02:06
19435    16111    505    2015-12-17 12:26:34    2015-12-17 12:26:34
19436    11628    605    2015-12-26 15:08:59    2015-12-26 15:08:59
19437    16817    813    2015-08-17 10:17:00    2015-08-17 10:17:00
19438    18238    482    2015-11-27 17:41:30    2015-11-27 17:41:30
19439    11575    540    2016-04-10 22:25:32    2016-04-10 22:25:32
19440    15555    650    2015-07-06 04:05:05    2015-07-06 04:05:05
19441    17322    906    2015-08-31 15:27:37    2015-08-31 15:27:37
19442    11616    919    2015-06-26 05:48:39    2015-06-26 05:48:39
19443    13693    676    2015-11-20 06:28:29    2015-11-20 06:28:29
19444    12061    499    2016-03-10 02:30:54    2016-03-10 02:30:54
19445    13572    491    2016-01-09 20:04:41    2016-01-09 20:04:41
19446    19268    758    2016-01-05 05:03:31    2016-01-05 05:03:31
19447    12271    491    2015-07-03 15:22:45    2015-07-03 15:22:45
19448    18252    870    2015-11-09 20:42:07    2015-11-09 20:42:07
19449    12035    734    2015-08-19 04:32:40    2015-08-19 04:32:40
19450    13146    479    2015-08-30 16:00:25    2015-08-30 16:00:25
19451    13078    487    2016-02-26 15:01:59    2016-02-26 15:01:59
19452    11415    482    2016-03-18 21:06:27    2016-03-18 21:06:27
19453    11027    763    2015-05-07 23:22:40    2015-05-07 23:22:40
19454    16451    599    2015-07-31 03:50:28    2015-07-31 03:50:28
19455    11715    729    2016-04-07 16:05:57    2016-04-07 16:05:57
19456    18648    878    2016-03-03 02:59:15    2016-03-03 02:59:15
19457    16160    643    2015-12-15 03:15:05    2015-12-15 03:15:05
19458    16176    604    2015-07-26 13:48:09    2015-07-26 13:48:09
19459    14611    596    2016-02-16 01:19:07    2016-02-16 01:19:07
19460    15792    764    2015-09-10 17:29:42    2015-09-10 17:29:42
19461    19666    708    2015-09-27 06:08:30    2015-09-27 06:08:30
19462    19071    497    2015-06-19 20:36:24    2015-06-19 20:36:24
19463    10667    497    2016-03-14 12:48:06    2016-03-14 12:48:06
19464    10382    830    2015-11-20 18:33:39    2015-11-20 18:33:39
19465    15141    583    2015-11-27 09:18:57    2015-11-27 09:18:57
19466    18344    654    2015-07-16 21:10:18    2015-07-16 21:10:18
19467    10223    709    2015-11-27 01:27:58    2015-11-27 01:27:58
19468    10618    737    2016-04-03 19:44:25    2016-04-03 19:44:25
19469    15639    926    2015-06-18 23:06:13    2015-06-18 23:06:13
19470    11624    538    2015-08-04 21:31:30    2015-08-04 21:31:30
19471    15635    889    2016-03-05 19:44:16    2016-03-05 19:44:16
19472    15458    901    2015-05-31 17:46:57    2015-05-31 17:46:57
19473    18839    694    2015-09-17 10:02:46    2015-09-17 10:02:46
19474    10574    856    2015-07-30 02:02:05    2015-07-30 02:02:05
19475    11741    959    2015-07-25 12:28:14    2015-07-25 12:28:14
19476    11536    715    2015-06-24 13:55:14    2015-06-24 13:55:14
19477    17287    748    2015-10-04 06:02:18    2015-10-04 06:02:18
19478    10385    530    2015-06-04 06:06:06    2015-06-04 06:06:06
19479    17352    505    2015-08-03 06:49:30    2015-08-03 06:49:30
19480    16107    530    2015-08-29 19:18:50    2015-08-29 19:18:50
19481    18861    761    2015-10-28 22:52:22    2015-10-28 22:52:22
19482    10660    619    2015-07-11 12:08:09    2015-07-11 12:08:09
19483    13934    493    2016-01-27 05:39:25    2016-01-27 05:39:25
19484    18898    604    2015-11-23 03:51:28    2015-11-23 03:51:28
19485    14824    900    2015-05-20 14:25:45    2015-05-20 14:25:45
19486    19677    853    2015-05-06 13:02:40    2015-05-06 13:02:40
19487    17297    940    2015-08-06 01:48:06    2015-08-06 01:48:06
19488    15657    793    2015-07-16 12:41:48    2015-07-16 12:41:48
19489    13496    790    2016-02-21 18:33:23    2016-02-21 18:33:23
19490    13568    865    2015-06-06 14:30:25    2015-06-06 14:30:25
19491    18002    527    2015-11-24 23:35:42    2015-11-24 23:35:42
19492    14351    514    2015-10-29 08:52:32    2015-10-29 08:52:32
19493    19541    499    2015-05-28 17:56:04    2015-05-28 17:56:04
19494    10525    568    2016-03-22 22:09:21    2016-03-22 22:09:21
19495    11740    668    2015-07-05 02:59:55    2015-07-05 02:59:55
19496    12982    771    2015-06-21 22:58:03    2015-06-21 22:58:03
19497    19130    595    2016-01-26 00:07:43    2016-01-26 00:07:43
19498    12296    612    2016-03-14 15:25:33    2016-03-14 15:25:33
19499    15985    679    2015-10-20 04:11:52    2015-10-20 04:11:52
19500    10695    534    2015-05-16 18:52:52    2015-05-16 18:52:52
19501    10383    659    2015-09-10 11:43:22    2015-09-10 11:43:22
19502    19330    918    2015-09-07 10:46:01    2015-09-07 10:46:01
19503    14331    643    2015-05-19 15:47:14    2015-05-19 15:47:14
19504    15752    584    2015-11-13 14:11:50    2015-11-13 14:11:50
19505    12791    787    2015-08-13 09:19:19    2015-08-13 09:19:19
19506    18713    614    2015-06-24 13:05:29    2015-06-24 13:05:29
19507    13769    844    2015-08-31 08:38:39    2015-08-31 08:38:39
19508    15060    869    2015-09-23 17:30:38    2015-09-23 17:30:38
19509    16613    684    2015-10-26 00:01:16    2015-10-26 00:01:16
19510    11756    842    2015-12-27 23:24:46    2015-12-27 23:24:46
19511    12674    558    2015-08-24 21:54:02    2015-08-24 21:54:02
19512    18234    682    2016-04-14 23:40:18    2016-04-14 23:40:18
19513    11990    949    2016-01-04 08:57:12    2016-01-04 08:57:12
19514    16418    480    2015-05-29 09:50:10    2015-05-29 09:50:10
19515    11106    480    2015-08-15 07:34:45    2015-08-15 07:34:45
19516    18189    725    2015-10-09 10:00:31    2015-10-09 10:00:31
19517    10946    892    2016-04-19 08:08:29    2016-04-19 08:08:29
19518    18195    883    2015-08-13 08:30:18    2015-08-13 08:30:18
19519    12830    791    2015-05-14 13:40:03    2015-05-14 13:40:03
19520    11542    554    2016-03-30 21:06:31    2016-03-30 21:06:31
19521    16713    775    2015-10-19 17:51:01    2015-10-19 17:51:01
19522    19638    891    2015-12-15 10:05:18    2015-12-15 10:05:18
19523    19171    609    2016-02-25 21:09:06    2016-02-25 21:09:06
19524    17407    513    2015-10-08 22:21:01    2015-10-08 22:21:01
19525    15167    624    2016-02-27 21:54:58    2016-02-27 21:54:58
19526    12190    715    2015-05-18 00:28:58    2015-05-18 00:28:58
19527    12588    540    2015-11-29 01:26:54    2015-11-29 01:26:54
19528    17023    490    2016-01-12 17:46:09    2016-01-12 17:46:09
19529    10484    559    2015-12-09 12:04:39    2015-12-09 12:04:39
19530    12983    842    2015-07-08 03:05:51    2015-07-08 03:05:51
19531    19653    659    2015-08-03 15:40:32    2015-08-03 15:40:32
19532    17844    876    2015-11-24 21:03:07    2015-11-24 21:03:07
19533    11916    840    2016-01-01 21:07:05    2016-01-01 21:07:05
19534    10964    734    2015-07-17 14:08:26    2015-07-17 14:08:26
19535    15637    766    2015-05-25 01:49:58    2015-05-25 01:49:58
19536    11759    913    2015-04-27 05:05:09    2015-04-27 05:05:09
19537    10618    906    2016-01-27 10:39:59    2016-01-27 10:39:59
19538    16986    852    2016-03-22 17:23:00    2016-03-22 17:23:00
19539    17160    488    2015-11-24 22:03:43    2015-11-24 22:03:43
19540    18525    523    2015-06-08 00:36:44    2015-06-08 00:36:44
19541    16674    779    2015-11-29 22:00:42    2015-11-29 22:00:42
19542    18321    958    2016-03-20 14:05:53    2016-03-20 14:05:53
19543    13006    678    2016-04-02 12:47:32    2016-04-02 12:47:32
19544    19428    870    2015-06-15 09:33:29    2015-06-15 09:33:29
19545    16410    750    2015-05-09 15:26:49    2015-05-09 15:26:49
19546    18459    605    2015-09-29 07:46:40    2015-09-29 07:46:40
19547    15562    844    2015-12-22 22:57:28    2015-12-22 22:57:28
19548    17490    695    2015-12-09 23:21:33    2015-12-09 23:21:33
19549    14938    648    2015-08-20 13:41:32    2015-08-20 13:41:32
19550    15432    582    2015-08-04 20:05:25    2015-08-04 20:05:25
19551    13880    638    2015-11-02 02:29:25    2015-11-02 02:29:25
19552    19003    947    2015-08-25 20:29:41    2015-08-25 20:29:41
19553    13853    854    2016-03-17 08:31:36    2016-03-17 08:31:36
19554    16194    920    2016-02-10 21:05:06    2016-02-10 21:05:06
19555    17370    771    2016-02-10 02:17:27    2016-02-10 02:17:27
19556    13109    509    2015-07-07 06:42:20    2015-07-07 06:42:20
19557    17494    612    2015-06-11 06:25:49    2015-06-11 06:25:49
19558    13695    771    2015-07-28 18:36:31    2015-07-28 18:36:31
19559    19710    584    2016-04-07 10:14:34    2016-04-07 10:14:34
19560    14175    642    2016-01-24 21:39:12    2016-01-24 21:39:12
19561    16702    935    2015-08-09 05:53:18    2015-08-09 05:53:18
19562    12166    920    2015-07-04 10:09:01    2015-07-04 10:09:01
19563    15198    805    2015-09-23 04:20:52    2015-09-23 04:20:52
19564    17944    876    2015-05-12 01:42:21    2015-05-12 01:42:21
19565    13165    544    2016-01-07 03:06:56    2016-01-07 03:06:56
19566    13251    877    2016-02-01 17:31:45    2016-02-01 17:31:45
19567    12417    618    2015-11-19 10:24:30    2015-11-19 10:24:30
19568    10792    886    2016-02-23 02:14:55    2016-02-23 02:14:55
19569    16229    809    2015-12-21 19:11:07    2015-12-21 19:11:07
19570    17777    840    2015-06-22 07:48:06    2015-06-22 07:48:06
19571    19964    953    2016-01-10 13:23:19    2016-01-10 13:23:19
19572    11712    585    2015-10-08 07:22:51    2015-10-08 07:22:51
19573    19473    576    2016-02-24 23:58:23    2016-02-24 23:58:23
19574    10420    812    2015-08-30 11:13:03    2015-08-30 11:13:03
19575    13977    740    2015-04-23 18:47:12    2015-04-23 18:47:12
19576    12322    514    2016-02-13 20:22:22    2016-02-13 20:22:22
19577    16189    657    2015-11-11 07:00:10    2015-11-11 07:00:10
19578    13109    897    2015-12-29 22:42:18    2015-12-29 22:42:18
19579    16252    678    2015-08-11 03:10:12    2015-08-11 03:10:12
19580    12101    510    2015-09-23 06:00:20    2015-09-23 06:00:20
19581    15506    533    2015-04-29 06:33:50    2015-04-29 06:33:50
19582    15681    485    2016-03-10 23:31:05    2016-03-10 23:31:05
19583    12416    563    2015-05-16 15:02:02    2015-05-16 15:02:02
19584    18622    622    2015-07-16 04:18:16    2015-07-16 04:18:16
19585    12292    865    2015-09-16 16:18:10    2015-09-16 16:18:10
19586    15828    909    2015-04-30 03:31:03    2015-04-30 03:31:03
19587    12592    776    2015-06-02 05:58:54    2015-06-02 05:58:54
19588    17173    547    2016-01-10 05:40:24    2016-01-10 05:40:24
19589    11536    606    2015-08-11 17:30:42    2015-08-11 17:30:42
19590    19435    787    2015-12-16 14:07:47    2015-12-16 14:07:47
19591    14355    479    2015-04-29 13:37:43    2015-04-29 13:37:43
19592    15866    671    2015-06-19 05:30:22    2015-06-19 05:30:22
19593    12141    792    2015-09-02 14:45:22    2015-09-02 14:45:22
19594    19288    871    2015-08-09 17:49:16    2015-08-09 17:49:16
19595    17824    802    2015-10-30 22:03:09    2015-10-30 22:03:09
19596    16950    639    2015-12-09 04:02:14    2015-12-09 04:02:14
19597    18998    866    2015-10-20 09:47:23    2015-10-20 09:47:23
19598    14237    568    2016-04-14 02:10:09    2016-04-14 02:10:09
19599    14982    707    2016-02-03 06:56:26    2016-02-03 06:56:26
19600    16635    671    2015-06-01 09:43:09    2015-06-01 09:43:09
19601    18768    746    2015-11-03 07:34:39    2015-11-03 07:34:39
19602    17225    680    2015-06-10 21:08:49    2015-06-10 21:08:49
19603    19174    678    2015-10-28 02:33:35    2015-10-28 02:33:35
19604    14297    936    2016-02-04 00:50:05    2016-02-04 00:50:05
19605    16662    675    2016-03-27 19:16:10    2016-03-27 19:16:10
19606    15365    833    2016-03-11 15:08:27    2016-03-11 15:08:27
19607    10896    529    2015-10-28 14:04:27    2015-10-28 14:04:27
19608    18617    600    2015-08-25 15:33:34    2015-08-25 15:33:34
19609    15450    877    2015-08-06 14:06:29    2015-08-06 14:06:29
19610    15216    794    2015-06-25 01:46:32    2015-06-25 01:46:32
19611    11967    549    2016-03-26 14:28:06    2016-03-26 14:28:06
19612    10077    798    2015-10-31 07:15:23    2015-10-31 07:15:23
19613    14736    593    2015-05-20 12:23:58    2015-05-20 12:23:58
19614    12660    533    2015-07-01 11:23:05    2015-07-01 11:23:05
19615    12192    640    2015-07-24 07:59:48    2015-07-24 07:59:48
19616    19872    600    2015-08-20 13:39:21    2015-08-20 13:39:21
19617    19070    678    2015-10-17 00:22:10    2015-10-17 00:22:10
19618    15206    623    2015-05-30 01:45:51    2015-05-30 01:45:51
19619    18617    760    2015-08-26 03:40:36    2015-08-26 03:40:36
19620    16590    795    2016-04-11 22:04:11    2016-04-11 22:04:11
19621    18015    765    2015-04-27 14:29:52    2015-04-27 14:29:52
19622    19461    862    2015-05-27 01:14:00    2015-05-27 01:14:00
19623    11640    721    2015-11-26 11:31:56    2015-11-26 11:31:56
19624    13034    595    2015-11-20 02:49:38    2015-11-20 02:49:38
19625    13108    795    2015-07-15 11:55:53    2015-07-15 11:55:53
19626    18762    574    2015-06-11 19:53:04    2015-06-11 19:53:04
19627    17633    466    2015-12-21 06:47:11    2015-12-21 06:47:11
19628    13376    539    2015-08-27 02:30:12    2015-08-27 02:30:12
19629    13920    637    2015-12-06 06:43:59    2015-12-06 06:43:59
19630    16330    749    2015-05-03 19:28:53    2015-05-03 19:28:53
19631    13580    570    2015-06-18 02:30:47    2015-06-18 02:30:47
19632    14387    630    2015-10-07 03:31:06    2015-10-07 03:31:06
19633    11645    542    2015-06-19 18:19:33    2015-06-19 18:19:33
19634    14172    809    2015-12-24 19:15:33    2015-12-24 19:15:33
19635    17824    953    2015-12-15 13:13:23    2015-12-15 13:13:23
19636    17143    563    2015-05-30 15:37:42    2015-05-30 15:37:42
19637    17097    614    2016-03-17 02:49:15    2016-03-17 02:49:15
19638    17846    796    2015-06-18 01:49:39    2015-06-18 01:49:39
19639    10280    677    2015-11-07 16:31:34    2015-11-07 16:31:34
19640    18473    717    2015-07-22 12:34:47    2015-07-22 12:34:47
19641    13622    848    2015-06-25 06:25:51    2015-06-25 06:25:51
19642    19006    882    2015-09-09 11:19:28    2015-09-09 11:19:28
19643    13458    793    2015-11-24 19:04:18    2015-11-24 19:04:18
19644    14444    798    2015-08-08 01:10:58    2015-08-08 01:10:58
19645    19580    570    2016-01-21 01:15:35    2016-01-21 01:15:35
19646    17503    636    2016-04-01 13:09:06    2016-04-01 13:09:06
19647    10662    813    2015-12-19 06:31:06    2015-12-19 06:31:06
19648    10398    779    2016-01-14 14:55:31    2016-01-14 14:55:31
19649    18343    737    2015-08-05 18:37:51    2015-08-05 18:37:51
19650    10885    520    2016-04-11 08:24:18    2016-04-11 08:24:18
19651    10207    525    2016-03-30 04:49:59    2016-03-30 04:49:59
19652    18872    541    2016-01-14 00:11:01    2016-01-14 00:11:01
19653    16360    778    2016-03-02 01:05:44    2016-03-02 01:05:44
19654    14421    694    2015-09-27 17:38:19    2015-09-27 17:38:19
19655    14239    654    2016-03-17 12:05:45    2016-03-17 12:05:45
19656    19990    946    2016-03-13 17:12:55    2016-03-13 17:12:55
19657    11544    647    2015-10-12 22:11:53    2015-10-12 22:11:53
19658    13691    757    2015-06-18 19:23:07    2015-06-18 19:23:07
19659    14718    880    2015-08-18 17:56:10    2015-08-18 17:56:10
19660    14626    771    2016-01-19 17:45:15    2016-01-19 17:45:15
19661    19439    574    2015-04-29 17:22:57    2015-04-29 17:22:57
19662    14654    954    2015-09-21 23:30:48    2015-09-21 23:30:48
19663    17051    862    2015-12-03 07:13:56    2015-12-03 07:13:56
19664    15089    739    2016-03-28 01:14:33    2016-03-28 01:14:33
19665    10216    651    2015-04-23 23:55:37    2015-04-23 23:55:37
19666    16451    919    2015-10-04 16:28:19    2015-10-04 16:28:19
19667    10220    743    2015-10-20 06:51:06    2015-10-20 06:51:06
19668    15927    504    2016-03-03 19:16:13    2016-03-03 19:16:13
19669    12000    557    2015-10-09 14:21:05    2015-10-09 14:21:05
19670    17620    949    2015-10-15 15:21:30    2015-10-15 15:21:30
19671    15444    578    2015-09-07 13:46:58    2015-09-07 13:46:58
19672    11390    465    2015-06-10 20:05:27    2015-06-10 20:05:27
19673    11484    931    2015-12-30 18:41:19    2015-12-30 18:41:19
19674    18979    728    2015-07-24 04:22:47    2015-07-24 04:22:47
19675    18858    619    2016-01-27 15:15:21    2016-01-27 15:15:21
19676    19785    857    2015-05-19 22:32:57    2015-05-19 22:32:57
19677    11306    793    2015-11-17 00:19:39    2015-11-17 00:19:39
19678    10866    664    2015-10-18 03:25:58    2015-10-18 03:25:58
19679    11095    755    2015-08-25 19:57:49    2015-08-25 19:57:49
19680    19212    472    2016-02-23 01:57:49    2016-02-23 01:57:49
19681    15466    643    2015-11-10 14:21:14    2015-11-10 14:21:14
19682    14379    560    2015-07-27 07:11:52    2015-07-27 07:11:52
19683    16510    916    2016-02-15 18:46:46    2016-02-15 18:46:46
19684    18620    508    2015-07-04 19:40:32    2015-07-04 19:40:32
19685    11763    478    2015-06-14 03:32:29    2015-06-14 03:32:29
19686    12380    847    2015-12-27 04:52:24    2015-12-27 04:52:24
19687    12698    631    2016-02-05 14:53:31    2016-02-05 14:53:31
19688    11244    710    2015-12-11 10:13:14    2015-12-11 10:13:14
19689    19979    500    2015-06-07 07:42:07    2015-06-07 07:42:07
19690    16452    541    2015-12-16 14:30:01    2015-12-16 14:30:01
19691    18879    578    2015-12-25 02:23:01    2015-12-25 02:23:01
19692    17012    561    2015-11-14 20:00:32    2015-11-14 20:00:32
19693    11235    942    2015-10-17 05:57:55    2015-10-17 05:57:55
19694    10157    551    2015-10-27 22:48:24    2015-10-27 22:48:24
19695    19711    913    2015-11-14 10:11:54    2015-11-14 10:11:54
19696    11536    931    2015-05-27 04:23:46    2015-05-27 04:23:46
19697    16884    936    2016-01-02 23:18:50    2016-01-02 23:18:50
19698    13795    719    2015-11-28 17:54:57    2015-11-28 17:54:57
19699    12837    952    2015-08-12 00:07:56    2015-08-12 00:07:56
19700    15584    919    2015-07-26 20:01:48    2015-07-26 20:01:48
19701    14067    654    2016-03-11 23:38:33    2016-03-11 23:38:33
19702    15389    753    2016-01-23 19:04:29    2016-01-23 19:04:29
19703    14229    701    2016-02-10 06:40:26    2016-02-10 06:40:26
19704    11119    928    2015-12-08 13:24:00    2015-12-08 13:24:00
19705    16129    938    2015-06-06 04:33:16    2015-06-06 04:33:16
19706    15346    949    2016-03-05 17:42:35    2016-03-05 17:42:35
19707    16567    598    2015-10-31 06:35:39    2015-10-31 06:35:39
19708    18210    627    2015-08-15 11:35:00    2015-08-15 11:35:00
19709    16638    687    2015-06-01 13:18:42    2015-06-01 13:18:42
19710    16144    925    2015-10-26 21:49:17    2015-10-26 21:49:17
19711    15910    771    2015-12-19 03:08:06    2015-12-19 03:08:06
19712    10450    814    2015-06-19 01:47:54    2015-06-19 01:47:54
19713    10963    497    2015-05-16 10:35:55    2015-05-16 10:35:55
19714    16355    490    2015-05-25 04:40:50    2015-05-25 04:40:50
19715    15088    617    2016-01-01 18:04:26    2016-01-01 18:04:26
19716    16395    703    2015-08-09 03:37:13    2015-08-09 03:37:13
19717    18690    544    2015-07-11 18:16:20    2015-07-11 18:16:20
19718    14613    574    2015-10-01 01:25:21    2015-10-01 01:25:21
19719    15952    496    2015-05-23 08:58:30    2015-05-23 08:58:30
19720    19049    637    2015-07-07 06:33:51    2015-07-07 06:33:51
19721    16433    870    2016-04-12 23:55:35    2016-04-12 23:55:35
19722    10635    847    2015-07-08 22:46:37    2015-07-08 22:46:37
19723    16066    785    2015-09-18 19:31:30    2015-09-18 19:31:30
19724    11704    794    2015-12-06 13:13:40    2015-12-06 13:13:40
19725    19433    810    2015-12-18 19:29:59    2015-12-18 19:29:59
19726    10923    470    2016-01-17 09:20:37    2016-01-17 09:20:37
19727    18411    613    2015-04-23 04:18:13    2015-04-23 04:18:13
19728    14574    838    2015-07-26 16:03:18    2015-07-26 16:03:18
19729    12936    524    2015-06-16 05:14:06    2015-06-16 05:14:06
19730    16584    822    2015-06-11 16:58:49    2015-06-11 16:58:49
19731    16007    488    2016-04-08 00:48:23    2016-04-08 00:48:23
19732    14980    777    2016-01-23 04:10:46    2016-01-23 04:10:46
19733    16942    558    2015-07-18 17:06:24    2015-07-18 17:06:24
19734    18810    946    2015-11-20 23:55:15    2015-11-20 23:55:15
19735    18346    480    2015-09-26 13:21:03    2015-09-26 13:21:03
19736    19420    918    2015-04-29 12:24:12    2015-04-29 12:24:12
19737    15400    551    2016-02-06 06:25:18    2016-02-06 06:25:18
19738    13631    731    2016-01-17 11:06:45    2016-01-17 11:06:45
19739    17151    814    2015-12-10 00:06:43    2015-12-10 00:06:43
19740    13532    784    2015-09-16 12:33:21    2015-09-16 12:33:21
19741    19031    594    2015-09-09 21:23:53    2015-09-09 21:23:53
19742    10296    653    2015-07-11 04:11:03    2015-07-11 04:11:03
19743    11362    549    2016-03-29 07:32:20    2016-03-29 07:32:20
19744    16564    937    2015-10-29 17:12:15    2015-10-29 17:12:15
19745    17049    595    2015-07-26 07:57:12    2015-07-26 07:57:12
19746    19432    935    2015-07-27 19:59:06    2015-07-27 19:59:06
19747    12389    924    2016-04-15 22:35:39    2016-04-15 22:35:39
19748    11288    773    2016-01-09 17:07:22    2016-01-09 17:07:22
19749    13143    774    2016-02-09 17:40:43    2016-02-09 17:40:43
19750    15421    481    2016-02-15 21:53:18    2016-02-15 21:53:18
19751    11806    537    2015-07-06 12:36:39    2015-07-06 12:36:39
19752    18438    827    2015-11-20 14:14:10    2015-11-20 14:14:10
19753    10826    595    2015-12-30 09:00:25    2015-12-30 09:00:25
19754    13175    777    2015-08-08 22:56:28    2015-08-08 22:56:28
19755    11552    548    2015-09-13 19:46:31    2015-09-13 19:46:31
19756    12243    737    2016-04-09 01:56:49    2016-04-09 01:56:49
19757    14039    959    2015-07-04 10:09:42    2015-07-04 10:09:42
19758    18909    741    2015-06-17 19:29:26    2015-06-17 19:29:26
19759    10683    555    2015-11-16 06:07:43    2015-11-16 06:07:43
19760    19059    883    2015-05-23 09:38:48    2015-05-23 09:38:48
19761    13153    580    2016-04-10 22:53:15    2016-04-10 22:53:15
19762    17994    904    2015-11-14 11:40:50    2015-11-14 11:40:50
19763    12177    644    2015-05-13 00:40:53    2015-05-13 00:40:53
19764    19042    954    2016-04-18 16:43:30    2016-04-18 16:43:30
19765    11740    580    2015-11-19 14:04:29    2015-11-19 14:04:29
19766    18748    472    2015-05-06 14:15:50    2015-05-06 14:15:50
19767    11657    946    2015-08-12 20:36:10    2015-08-12 20:36:10
19768    15874    775    2015-05-12 01:58:15    2015-05-12 01:58:15
19769    16492    477    2015-09-23 21:22:04    2015-09-23 21:22:04
19770    14074    578    2015-09-05 02:33:43    2015-09-05 02:33:43
19771    17885    870    2016-02-14 04:27:32    2016-02-14 04:27:32
19772    14466    494    2015-05-22 04:51:05    2015-05-22 04:51:05
19773    18113    953    2015-12-01 14:45:27    2015-12-01 14:45:27
19774    13191    704    2016-01-23 10:10:43    2016-01-23 10:10:43
19775    14757    783    2015-10-18 04:07:17    2015-10-18 04:07:17
19776    15901    921    2015-12-24 02:46:56    2015-12-24 02:46:56
19777    11594    508    2015-06-11 20:37:59    2015-06-11 20:37:59
19778    15384    641    2015-07-12 16:00:16    2015-07-12 16:00:16
19779    10080    812    2016-03-12 06:20:32    2016-03-12 06:20:32
19780    17405    476    2015-12-01 18:39:44    2015-12-01 18:39:44
19781    10793    507    2016-01-11 17:18:48    2016-01-11 17:18:48
19782    13983    715    2015-05-05 12:57:46    2015-05-05 12:57:46
19783    13109    533    2015-07-23 20:18:17    2015-07-23 20:18:17
19784    19873    845    2015-05-17 12:33:29    2015-05-17 12:33:29
19785    10536    713    2015-05-20 09:50:29    2015-05-20 09:50:29
19786    13573    912    2016-01-20 03:15:36    2016-01-20 03:15:36
19787    12026    640    2016-01-12 00:19:14    2016-01-12 00:19:14
19788    19452    646    2015-10-20 01:18:34    2015-10-20 01:18:34
19789    18627    687    2015-12-03 01:13:27    2015-12-03 01:13:27
19790    12452    785    2015-08-02 03:40:14    2015-08-02 03:40:14
19791    10037    833    2015-09-23 01:26:06    2015-09-23 01:26:06
19792    17962    912    2015-09-22 12:58:05    2015-09-22 12:58:05
19793    16107    644    2016-02-19 18:54:57    2016-02-19 18:54:57
19794    16670    829    2015-10-10 15:15:38    2015-10-10 15:15:38
19795    10870    692    2016-01-07 22:07:05    2016-01-07 22:07:05
19796    19493    691    2016-03-31 07:33:53    2016-03-31 07:33:53
19797    16044    504    2016-01-12 07:09:21    2016-01-12 07:09:21
19798    10655    779    2016-04-17 05:05:14    2016-04-17 05:05:14
19799    13233    722    2015-12-09 23:13:14    2015-12-09 23:13:14
19800    19687    711    2015-05-23 00:54:26    2015-05-23 00:54:26
19801    14501    817    2016-04-08 21:37:38    2016-04-08 21:37:38
19802    13218    945    2015-10-31 17:24:53    2015-10-31 17:24:53
19803    16947    632    2015-12-16 10:42:39    2015-12-16 10:42:39
19804    11985    881    2015-08-17 08:28:05    2015-08-17 08:28:05
19805    15571    589    2016-04-07 05:25:38    2016-04-07 05:25:38
19806    16730    886    2016-04-07 10:06:07    2016-04-07 10:06:07
19807    14536    654    2016-02-22 03:44:31    2016-02-22 03:44:31
19808    11515    533    2015-09-20 16:09:53    2015-09-20 16:09:53
19809    18235    584    2015-09-10 01:31:10    2015-09-10 01:31:10
19810    14149    715    2015-05-28 05:46:14    2015-05-28 05:46:14
19811    12207    581    2016-02-20 03:35:17    2016-02-20 03:35:17
19812    11008    742    2015-09-28 09:53:44    2015-09-28 09:53:44
19813    11803    638    2015-07-15 00:35:51    2015-07-15 00:35:51
19814    15028    626    2015-08-26 23:51:20    2015-08-26 23:51:20
19815    14154    654    2015-08-28 04:12:22    2015-08-28 04:12:22
19816    14922    954    2015-12-04 23:34:20    2015-12-04 23:34:20
19817    10782    539    2015-10-06 21:45:43    2015-10-06 21:45:43
19818    18654    603    2015-11-13 10:51:56    2015-11-13 10:51:56
19819    11331    846    2015-10-26 16:35:37    2015-10-26 16:35:37
19820    14404    711    2015-08-25 09:57:06    2015-08-25 09:57:06
19821    10057    795    2016-04-01 15:21:48    2016-04-01 15:21:48
19822    16764    775    2015-10-11 06:50:11    2015-10-11 06:50:11
19823    18738    915    2015-09-29 23:32:05    2015-09-29 23:32:05
19824    10975    865    2015-11-16 10:12:20    2015-11-16 10:12:20
19825    10680    933    2016-04-11 02:18:46    2016-04-11 02:18:46
19826    14667    849    2015-11-01 10:14:02    2015-11-01 10:14:02
19827    17623    866    2016-03-11 20:46:08    2016-03-11 20:46:08
19828    16626    475    2015-10-05 04:05:45    2015-10-05 04:05:45
19829    19589    626    2016-03-16 12:06:03    2016-03-16 12:06:03
19830    15860    590    2015-08-08 16:34:26    2015-08-08 16:34:26
19831    16440    942    2016-02-19 19:29:15    2016-02-19 19:29:15
19832    16499    532    2016-02-29 03:57:47    2016-02-29 03:57:47
19833    10611    720    2015-11-02 01:41:00    2015-11-02 01:41:00
19834    13768    661    2015-10-12 04:48:11    2015-10-12 04:48:11
19835    11705    721    2016-03-13 18:00:00    2016-03-13 18:00:00
19836    13892    789    2016-03-03 23:55:01    2016-03-03 23:55:01
19837    14151    954    2015-12-12 05:33:34    2015-12-12 05:33:34
19838    13118    687    2015-05-11 09:50:08    2015-05-11 09:50:08
19839    16022    594    2015-09-01 18:21:39    2015-09-01 18:21:39
19840    14736    910    2016-04-05 19:05:45    2016-04-05 19:05:45
19841    12367    594    2015-07-21 23:10:13    2015-07-21 23:10:13
19842    13163    649    2015-08-11 13:19:44    2015-08-11 13:19:44
19843    11901    960    2015-05-26 11:10:25    2015-05-26 11:10:25
19844    10981    576    2016-03-20 13:37:32    2016-03-20 13:37:32
19845    17094    527    2015-07-16 09:40:24    2015-07-16 09:40:24
19846    12211    705    2015-06-13 18:58:43    2015-06-13 18:58:43
19847    17622    728    2016-01-22 17:57:35    2016-01-22 17:57:35
19848    19399    674    2015-04-27 03:56:53    2015-04-27 03:56:53
19849    10454    516    2015-07-05 05:15:32    2015-07-05 05:15:32
19850    12814    849    2015-10-24 04:06:02    2015-10-24 04:06:02
19851    13043    836    2015-09-26 19:55:51    2015-09-26 19:55:51
19852    11400    740    2015-12-14 12:20:25    2015-12-14 12:20:25
19853    17169    943    2016-02-28 14:54:37    2016-02-28 14:54:37
19854    19372    510    2015-07-03 08:39:03    2015-07-03 08:39:03
19855    10353    781    2015-09-07 10:32:24    2015-09-07 10:32:24
19856    10626    623    2015-06-08 21:57:55    2015-06-08 21:57:55
19857    10173    472    2015-06-09 13:52:13    2015-06-09 13:52:13
19858    12976    754    2016-03-03 08:31:38    2016-03-03 08:31:38
19859    10901    695    2015-12-30 17:38:46    2015-12-30 17:38:46
19860    10897    803    2016-03-31 14:55:35    2016-03-31 14:55:35
19861    14406    527    2015-12-06 11:37:30    2015-12-06 11:37:30
19862    19464    868    2015-05-23 08:31:35    2015-05-23 08:31:35
19863    16726    484    2016-03-15 11:08:04    2016-03-15 11:08:04
19864    12214    851    2015-11-11 21:12:03    2015-11-11 21:12:03
19865    12314    921    2016-01-16 17:22:09    2016-01-16 17:22:09
19866    18639    574    2015-11-19 22:16:54    2015-11-19 22:16:54
19867    10019    650    2015-05-08 07:27:09    2015-05-08 07:27:09
19868    13400    540    2015-07-16 17:18:52    2015-07-16 17:18:52
19869    17259    666    2015-12-05 07:30:16    2015-12-05 07:30:16
19870    10818    854    2015-08-10 10:48:54    2015-08-10 10:48:54
19871    11529    594    2015-10-04 11:37:35    2015-10-04 11:37:35
19872    10774    689    2015-12-09 21:50:17    2015-12-09 21:50:17
19873    12047    807    2015-08-30 23:24:20    2015-08-30 23:24:20
19874    11428    523    2015-09-03 06:24:07    2015-09-03 06:24:07
19875    18942    876    2015-11-12 09:54:06    2015-11-12 09:54:06
19876    15766    736    2015-09-22 02:33:13    2015-09-22 02:33:13
19877    18705    797    2015-06-29 07:38:09    2015-06-29 07:38:09
19878    15088    920    2016-01-21 19:40:35    2016-01-21 19:40:35
19879    14039    486    2015-10-24 07:13:17    2015-10-24 07:13:17
19880    19937    934    2015-08-14 11:10:29    2015-08-14 11:10:29
19881    11816    575    2015-10-14 19:14:13    2015-10-14 19:14:13
19882    16375    589    2015-11-09 18:58:19    2015-11-09 18:58:19
19883    19548    669    2016-02-21 23:46:06    2016-02-21 23:46:06
19884    17825    750    2015-06-12 08:12:46    2015-06-12 08:12:46
19885    11214    808    2015-10-01 23:01:40    2015-10-01 23:01:40
19886    17352    757    2016-02-17 14:09:48    2016-02-17 14:09:48
19887    15635    545    2015-09-06 23:06:30    2015-09-06 23:06:30
19888    12124    875    2015-05-12 13:08:27    2015-05-12 13:08:27
19889    10714    646    2016-03-08 06:41:13    2016-03-08 06:41:13
19890    12175    845    2016-02-25 05:50:51    2016-02-25 05:50:51
19891    12938    700    2015-06-11 09:10:03    2015-06-11 09:10:03
19892    12434    925    2015-10-08 10:45:10    2015-10-08 10:45:10
19893    10414    495    2016-03-11 21:21:42    2016-03-11 21:21:42
19894    16385    573    2015-08-10 13:23:25    2015-08-10 13:23:25
19895    14486    940    2015-09-07 20:38:14    2015-09-07 20:38:14
19896    18747    634    2015-07-12 05:57:01    2015-07-12 05:57:01
19897    17672    930    2015-09-24 10:51:39    2015-09-24 10:51:39
19898    15827    549    2015-12-03 03:18:09    2015-12-03 03:18:09
19899    15796    484    2015-11-25 20:41:35    2015-11-25 20:41:35
19900    14449    616    2015-05-06 23:25:19    2015-05-06 23:25:19
19901    19609    907    2016-01-07 22:27:27    2016-01-07 22:27:27
19902    15546    811    2015-05-17 07:59:23    2015-05-17 07:59:23
19903    16757    807    2015-12-26 07:33:21    2015-12-26 07:33:21
19904    12839    828    2015-05-22 23:08:33    2015-05-22 23:08:33
19905    10237    901    2015-12-06 12:29:42    2015-12-06 12:29:42
19906    14727    864    2016-01-19 04:41:11    2016-01-19 04:41:11
19907    15423    902    2015-10-29 08:55:52    2015-10-29 08:55:52
19908    10740    671    2015-11-09 01:30:26    2015-11-09 01:30:26
19909    13265    647    2015-11-25 04:51:53    2015-11-25 04:51:53
19910    13515    767    2015-05-13 05:07:35    2015-05-13 05:07:35
19911    15743    599    2015-10-08 21:02:12    2015-10-08 21:02:12
19912    12723    552    2015-10-21 00:53:42    2015-10-21 00:53:42
19913    18496    851    2015-10-28 02:59:52    2015-10-28 02:59:52
19914    18851    691    2016-04-17 00:20:45    2016-04-17 00:20:45
19915    12459    834    2015-08-16 22:11:51    2015-08-16 22:11:51
19916    18800    594    2015-05-12 07:15:11    2015-05-12 07:15:11
19917    10995    806    2015-09-19 23:20:52    2015-09-19 23:20:52
19918    12350    732    2015-11-29 18:21:56    2015-11-29 18:21:56
19919    10519    592    2015-08-01 06:56:24    2015-08-01 06:56:24
19920    14980    769    2015-08-06 00:06:14    2015-08-06 00:06:14
19921    13006    948    2015-09-30 14:56:20    2015-09-30 14:56:20
19922    13626    906    2016-04-09 20:21:02    2016-04-09 20:21:02
19923    10105    883    2015-11-01 06:41:57    2015-11-01 06:41:57
19924    14509    580    2016-04-11 20:43:29    2016-04-11 20:43:29
19925    12397    769    2015-07-15 18:32:00    2015-07-15 18:32:00
19926    19674    900    2015-11-25 04:33:14    2015-11-25 04:33:14
19927    14416    945    2015-08-02 09:29:13    2015-08-02 09:29:13
19928    10786    856    2015-10-24 12:13:07    2015-10-24 12:13:07
19929    15213    772    2016-02-12 02:48:52    2016-02-12 02:48:52
19930    15939    493    2016-04-04 15:32:31    2016-04-04 15:32:31
19931    15481    591    2015-10-16 08:13:53    2015-10-16 08:13:53
19932    19262    796    2016-04-04 05:47:21    2016-04-04 05:47:21
19933    12338    910    2016-02-02 10:09:21    2016-02-02 10:09:21
19934    14888    795    2015-08-27 13:23:59    2015-08-27 13:23:59
19935    15205    689    2015-06-09 14:46:21    2015-06-09 14:46:21
19936    12150    468    2015-12-11 23:41:53    2015-12-11 23:41:53
19937    15484    542    2015-10-27 17:49:15    2015-10-27 17:49:15
19938    12055    706    2015-08-15 17:59:35    2015-08-15 17:59:35
19939    13345    545    2015-05-11 12:37:44    2015-05-11 12:37:44
19940    18309    747    2015-10-06 09:32:54    2015-10-06 09:32:54
19941    10418    625    2015-09-18 12:36:57    2015-09-18 12:36:57
19942    19419    765    2015-09-08 16:36:41    2015-09-08 16:36:41
19943    17022    622    2016-02-01 20:27:33    2016-02-01 20:27:33
19944    17493    727    2015-11-06 03:03:58    2015-11-06 03:03:58
19945    13937    711    2015-10-21 00:05:59    2015-10-21 00:05:59
19946    12433    527    2016-02-02 22:50:15    2016-02-02 22:50:15
19947    19568    647    2015-12-15 08:36:57    2015-12-15 08:36:57
19948    13907    682    2015-05-27 23:25:25    2015-05-27 23:25:25
19949    17426    645    2015-12-17 01:57:01    2015-12-17 01:57:01
19950    18332    700    2016-02-28 12:13:50    2016-02-28 12:13:50
19951    18591    588    2016-02-26 01:11:34    2016-02-26 01:11:34
19952    14611    749    2015-10-16 04:26:24    2015-10-16 04:26:24
19953    14871    841    2016-01-25 20:20:38    2016-01-25 20:20:38
19954    11373    780    2015-10-26 16:22:35    2015-10-26 16:22:35
19955    19908    590    2016-01-13 20:57:48    2016-01-13 20:57:48
19956    18277    603    2015-10-22 19:51:58    2015-10-22 19:51:58
19957    14119    754    2015-05-26 10:03:42    2015-05-26 10:03:42
19958    18083    718    2016-02-17 11:38:52    2016-02-17 11:38:52
19959    13047    703    2015-10-27 06:25:36    2015-10-27 06:25:36
19960    12261    463    2016-01-06 08:07:43    2016-01-06 08:07:43
19961    10228    727    2016-01-05 00:48:29    2016-01-05 00:48:29
19962    19586    863    2015-07-21 13:14:43    2015-07-21 13:14:43
19963    19370    772    2016-01-09 13:07:47    2016-01-09 13:07:47
19964    17834    474    2015-08-27 02:30:41    2015-08-27 02:30:41
19965    19987    862    2015-12-08 05:42:17    2015-12-08 05:42:17
19966    17138    934    2016-01-04 06:12:37    2016-01-04 06:12:37
19967    15551    682    2015-12-30 00:22:25    2015-12-30 00:22:25
19968    18358    811    2015-11-21 23:07:21    2015-11-21 23:07:21
19969    14303    894    2016-02-22 04:56:50    2016-02-22 04:56:50
19970    19882    467    2015-08-27 12:50:02    2015-08-27 12:50:02
19971    14173    857    2015-08-20 02:43:12    2015-08-20 02:43:12
19972    15412    465    2016-03-10 04:32:07    2016-03-10 04:32:07
19973    18073    642    2016-03-03 11:29:00    2016-03-03 11:29:00
19974    19897    472    2015-08-07 10:34:14    2015-08-07 10:34:14
19975    18319    819    2015-12-08 08:12:36    2015-12-08 08:12:36
19976    16272    651    2016-03-04 20:37:05    2016-03-04 20:37:05
19977    19354    781    2016-01-29 10:38:32    2016-01-29 10:38:32
19978    16226    738    2015-12-05 11:19:48    2015-12-05 11:19:48
19979    11532    807    2016-04-15 17:16:58    2016-04-15 17:16:58
19980    16262    842    2015-10-18 20:46:42    2015-10-18 20:46:42
19981    13243    900    2015-06-08 18:31:13    2015-06-08 18:31:13
19982    12200    957    2015-12-09 06:19:04    2015-12-09 06:19:04
19983    12462    855    2015-08-11 02:54:32    2015-08-11 02:54:32
19984    10060    750    2016-04-02 00:19:35    2016-04-02 00:19:35
19985    17279    760    2015-05-23 15:40:54    2015-05-23 15:40:54
19986    12937    662    2015-07-15 14:20:40    2015-07-15 14:20:40
19987    15804    575    2016-02-26 07:02:58    2016-02-26 07:02:58
19988    19109    481    2015-06-01 06:45:42    2015-06-01 06:45:42
19989    18248    679    2016-03-02 09:59:51    2016-03-02 09:59:51
19990    19222    724    2016-02-11 20:05:20    2016-02-11 20:05:20
19991    10698    863    2016-04-08 10:01:45    2016-04-08 10:01:45
19992    16509    960    2015-06-11 20:56:33    2015-06-11 20:56:33
19993    13684    946    2016-04-07 05:55:52    2016-04-07 05:55:52
19994    13645    811    2015-12-03 15:39:40    2015-12-03 15:39:40
19995    12681    812    2015-05-04 23:12:26    2015-05-04 23:12:26
19996    18129    799    2015-10-22 20:35:58    2015-10-22 20:35:58
19997    17530    898    2015-08-01 01:34:02    2015-08-01 01:34:02
19998    17304    833    2016-01-28 01:06:13    2016-01-28 01:06:13
19999    13969    641    2016-02-01 21:59:11    2016-02-01 21:59:11
20000    16694    588    2016-02-21 23:21:48    2016-02-21 23:21:48
20001    14526    820    2015-05-30 20:47:38    2015-05-30 20:47:38
20002    16029    667    2015-10-17 19:07:00    2015-10-17 19:07:00
20003    17381    714    2015-09-08 23:03:13    2015-09-08 23:03:13
20004    18765    673    2016-03-06 19:16:21    2016-03-06 19:16:21
20005    10826    953    2015-04-22 16:23:12    2015-04-22 16:23:12
20006    10818    713    2016-04-04 12:39:08    2016-04-04 12:39:08
20007    19913    636    2015-09-03 06:24:03    2015-09-03 06:24:03
20008    19971    607    2015-06-29 13:16:17    2015-06-29 13:16:17
20009    17897    820    2015-05-14 11:23:36    2015-05-14 11:23:36
20010    18157    483    2015-11-01 19:23:54    2015-11-01 19:23:54
20011    13146    661    2015-10-10 02:14:33    2015-10-10 02:14:33
20012    13161    493    2016-02-16 11:22:03    2016-02-16 11:22:03
20013    11829    555    2016-01-09 20:21:17    2016-01-09 20:21:17
20014    13626    554    2015-08-01 07:51:13    2015-08-01 07:51:13
20015    17064    750    2015-06-19 05:53:04    2015-06-19 05:53:04
20016    12913    915    2015-08-18 05:36:44    2015-08-18 05:36:44
20017    16872    956    2016-04-20 08:15:56    2016-04-20 08:15:56
20018    11099    853    2016-03-31 22:10:49    2016-03-31 22:10:49
20019    11975    849    2015-07-19 04:26:38    2015-07-19 04:26:38
20020    18189    676    2015-08-21 11:45:26    2015-08-21 11:45:26
20021    10245    838    2015-04-24 16:12:32    2015-04-24 16:12:32
20022    17101    573    2015-08-06 17:35:50    2015-08-06 17:35:50
20023    17766    751    2015-12-15 14:40:39    2015-12-15 14:40:39
20024    18356    833    2015-11-10 22:35:43    2015-11-10 22:35:43
20025    12017    644    2016-02-18 12:27:17    2016-02-18 12:27:17
20026    12695    790    2015-12-12 17:03:03    2015-12-12 17:03:03
20027    18687    893    2016-01-30 12:08:41    2016-01-30 12:08:41
20028    11323    849    2016-03-07 12:16:07    2016-03-07 12:16:07
20029    14534    480    2015-05-28 23:07:25    2015-05-28 23:07:25
20030    17111    728    2015-10-22 19:12:22    2015-10-22 19:12:22
20031    16659    760    2015-07-23 19:09:33    2015-07-23 19:09:33
20032    10828    579    2015-11-02 01:17:02    2015-11-02 01:17:02
20033    13166    515    2015-11-02 06:00:28    2015-11-02 06:00:28
20034    12725    701    2016-03-19 02:23:18    2016-03-19 02:23:18
20035    13141    883    2015-10-08 23:01:14    2015-10-08 23:01:14
20036    11999    859    2015-08-02 00:40:52    2015-08-02 00:40:52
20037    10379    588    2015-06-24 18:41:49    2015-06-24 18:41:49
20038    15973    750    2015-05-22 06:47:13    2015-05-22 06:47:13
20039    13876    885    2015-04-24 09:59:42    2015-04-24 09:59:42
20040    19985    708    2015-11-01 13:28:08    2015-11-01 13:28:08
20041    11685    571    2016-01-08 16:21:33    2016-01-08 16:21:33
20042    17583    939    2015-05-03 01:06:34    2015-05-03 01:06:34
20043    12506    825    2016-04-18 19:22:35    2016-04-18 19:22:35
20044    16691    548    2015-09-20 13:42:11    2015-09-20 13:42:11
20045    16040    492    2016-01-26 23:41:11    2016-01-26 23:41:11
20046    18708    872    2015-06-02 15:48:50    2015-06-02 15:48:50
20047    19017    618    2016-04-17 02:27:54    2016-04-17 02:27:54
20048    12293    486    2015-11-13 16:35:03    2015-11-13 16:35:03
20049    13136    644    2015-06-28 06:30:00    2015-06-28 06:30:00
20050    17944    775    2016-04-11 03:51:45    2016-04-11 03:51:45
20051    12417    814    2016-03-12 22:07:23    2016-03-12 22:07:23
20052    17969    566    2015-06-24 09:58:44    2015-06-24 09:58:44
20053    11263    585    2015-09-05 11:42:46    2015-09-05 11:42:46
20054    14284    894    2015-06-01 18:48:51    2015-06-01 18:48:51
20055    17734    710    2015-10-29 12:31:47    2015-10-29 12:31:47
20056    17808    747    2016-03-05 23:02:19    2016-03-05 23:02:19
20057    18609    620    2016-03-27 04:18:14    2016-03-27 04:18:14
20058    19269    687    2015-09-12 00:35:14    2015-09-12 00:35:14
20059    14521    518    2016-02-28 17:37:09    2016-02-28 17:37:09
20060    19604    547    2015-10-20 13:16:36    2015-10-20 13:16:36
20061    18169    695    2015-09-23 16:31:55    2015-09-23 16:31:55
20062    15809    746    2015-07-11 23:10:17    2015-07-11 23:10:17
20063    17604    602    2015-11-05 06:16:03    2015-11-05 06:16:03
20064    13894    892    2015-05-06 21:50:40    2015-05-06 21:50:40
20065    10687    587    2016-01-22 04:03:06    2016-01-22 04:03:06
20066    14584    549    2015-06-27 10:11:26    2015-06-27 10:11:26
20067    19237    683    2015-06-19 19:57:28    2015-06-19 19:57:28
20068    11496    903    2015-05-02 13:43:01    2015-05-02 13:43:01
20069    15002    917    2015-09-28 23:01:43    2015-09-28 23:01:43
20070    10281    487    2016-04-17 09:39:30    2016-04-17 09:39:30
20071    14963    661    2016-01-10 08:22:24    2016-01-10 08:22:24
20072    12348    898    2016-03-24 15:15:02    2016-03-24 15:15:02
20073    14756    801    2016-02-24 06:36:32    2016-02-24 06:36:32
20074    14214    550    2015-12-04 10:26:56    2015-12-04 10:26:56
20075    14277    471    2015-05-07 14:58:23    2015-05-07 14:58:23
20076    17297    483    2015-09-13 14:37:02    2015-09-13 14:37:02
20077    10758    545    2016-01-16 15:58:59    2016-01-16 15:58:59
20078    18303    692    2015-07-17 09:11:37    2015-07-17 09:11:37
20079    19023    911    2015-08-27 14:04:48    2015-08-27 14:04:48
20080    12507    740    2015-08-09 16:25:49    2015-08-09 16:25:49
20081    14291    664    2016-03-12 15:52:09    2016-03-12 15:52:09
20082    14070    696    2015-07-15 02:37:35    2015-07-15 02:37:35
20083    14478    746    2016-03-21 13:28:51    2016-03-21 13:28:51
20084    15950    935    2015-12-13 10:25:31    2015-12-13 10:25:31
20085    17362    959    2015-10-22 03:24:48    2015-10-22 03:24:48
20086    13691    675    2015-08-18 10:15:49    2015-08-18 10:15:49
20087    16312    745    2015-05-18 10:26:19    2015-05-18 10:26:19
20088    17751    750    2015-06-29 05:33:45    2015-06-29 05:33:45
20089    16388    927    2015-08-02 21:53:38    2015-08-02 21:53:38
20090    17886    930    2015-11-05 05:50:06    2015-11-05 05:50:06
20091    16763    579    2015-11-23 06:23:07    2015-11-23 06:23:07
20092    15008    799    2015-05-24 14:00:33    2015-05-24 14:00:33
20093    15636    753    2015-06-29 07:47:25    2015-06-29 07:47:25
20094    16091    949    2015-05-03 19:17:03    2015-05-03 19:17:03
20095    15049    524    2015-11-01 03:01:48    2015-11-01 03:01:48
20096    18806    724    2016-02-16 17:05:47    2016-02-16 17:05:47
20097    11723    961    2016-02-28 04:28:37    2016-02-28 04:28:37
20098    14744    663    2015-09-03 08:52:19    2015-09-03 08:52:19
20099    19606    664    2015-06-05 10:52:44    2015-06-05 10:52:44
20100    19612    600    2015-07-01 03:09:48    2015-07-01 03:09:48
20101    11689    729    2015-10-19 20:11:10    2015-10-19 20:11:10
20102    13563    815    2016-03-18 13:33:03    2016-03-18 13:33:03
20103    14332    698    2015-07-26 20:00:13    2015-07-26 20:00:13
20104    13047    859    2015-10-30 03:22:46    2015-10-30 03:22:46
20105    14930    655    2015-10-05 02:48:18    2015-10-05 02:48:18
20106    15260    492    2015-12-31 15:45:59    2015-12-31 15:45:59
20107    16397    471    2016-04-05 15:43:24    2016-04-05 15:43:24
20108    19404    812    2015-05-31 08:20:32    2015-05-31 08:20:32
20109    14473    764    2016-01-04 15:53:38    2016-01-04 15:53:38
20110    18040    570    2015-07-10 16:22:24    2015-07-10 16:22:24
20111    19910    612    2015-06-07 09:57:36    2015-06-07 09:57:36
20112    13677    954    2015-12-02 07:46:36    2015-12-02 07:46:36
20113    15502    776    2015-06-15 06:31:40    2015-06-15 06:31:40
20114    14938    844    2015-08-29 17:26:11    2015-08-29 17:26:11
20115    15827    915    2016-01-27 06:31:41    2016-01-27 06:31:41
20116    14116    581    2015-05-06 13:24:10    2015-05-06 13:24:10
20117    17689    897    2016-01-30 05:36:40    2016-01-30 05:36:40
20118    18171    755    2015-11-25 23:21:30    2015-11-25 23:21:30
20119    18214    934    2015-08-01 20:48:31    2015-08-01 20:48:31
20120    14768    624    2015-09-25 09:16:37    2015-09-25 09:16:37
20121    12173    876    2015-07-25 00:18:06    2015-07-25 00:18:06
20122    15717    695    2015-11-14 06:00:59    2015-11-14 06:00:59
20123    15414    743    2016-02-19 04:05:49    2016-02-19 04:05:49
20124    10542    530    2015-10-31 21:45:41    2015-10-31 21:45:41
20125    18945    716    2016-01-13 07:20:22    2016-01-13 07:20:22
20126    10237    733    2015-11-15 02:26:36    2015-11-15 02:26:36
20127    11105    655    2015-09-08 05:07:53    2015-09-08 05:07:53
20128    16236    681    2015-08-01 00:19:46    2015-08-01 00:19:46
20129    10008    716    2016-04-02 10:55:37    2016-04-02 10:55:37
20130    17705    838    2016-04-11 21:07:40    2016-04-11 21:07:40
20131    19694    653    2016-01-23 02:41:30    2016-01-23 02:41:30
20132    19513    521    2015-08-22 19:26:16    2015-08-22 19:26:16
20133    17190    915    2015-06-27 16:13:07    2015-06-27 16:13:07
20134    17253    940    2015-06-06 02:33:06    2015-06-06 02:33:06
20135    17142    563    2016-02-14 03:51:32    2016-02-14 03:51:32
20136    13955    594    2015-08-04 11:31:37    2015-08-04 11:31:37
20137    10784    737    2015-07-22 07:10:55    2015-07-22 07:10:55
20138    10983    642    2015-06-22 06:43:03    2015-06-22 06:43:03
20139    12907    751    2015-07-01 22:43:07    2015-07-01 22:43:07
20140    14188    819    2016-03-24 11:07:03    2016-03-24 11:07:03
20141    13504    876    2015-06-14 18:37:14    2015-06-14 18:37:14
20142    18930    594    2016-03-01 02:47:22    2016-03-01 02:47:22
20143    19861    844    2015-04-23 01:27:20    2015-04-23 01:27:20
20144    19649    894    2015-11-16 20:33:06    2015-11-16 20:33:06
20145    12012    746    2015-07-09 07:28:41    2015-07-09 07:28:41
20146    19994    659    2015-09-03 18:47:10    2015-09-03 18:47:10
20147    17430    823    2015-10-25 23:41:09    2015-10-25 23:41:09
20148    15970    470    2015-08-18 18:51:30    2015-08-18 18:51:30
20149    14563    906    2015-12-16 21:37:09    2015-12-16 21:37:09
20150    11283    692    2015-11-05 16:42:12    2015-11-05 16:42:12
20151    16267    869    2016-02-09 10:18:16    2016-02-09 10:18:16
20152    17900    672    2015-10-12 08:18:39    2015-10-12 08:18:39
20153    14816    603    2015-11-16 06:38:31    2015-11-16 06:38:31
20154    11821    931    2015-08-20 01:35:52    2015-08-20 01:35:52
20155    15745    888    2015-10-28 23:41:31    2015-10-28 23:41:31
20156    18004    738    2015-09-09 19:40:47    2015-09-09 19:40:47
20157    15906    739    2016-03-28 00:58:32    2016-03-28 00:58:32
20158    19975    669    2016-02-05 07:23:19    2016-02-05 07:23:19
20159    14985    697    2015-12-10 01:46:33    2015-12-10 01:46:33
20160    18144    665    2015-07-29 12:37:51    2015-07-29 12:37:51
20161    10968    516    2015-07-21 22:12:11    2015-07-21 22:12:11
20162    19600    701    2016-04-17 15:29:07    2016-04-17 15:29:07
20163    15076    850    2015-07-12 08:45:33    2015-07-12 08:45:33
20164    18036    898    2015-06-02 15:13:51    2015-06-02 15:13:51
20165    13053    698    2015-08-02 06:20:35    2015-08-02 06:20:35
20166    17313    687    2015-06-12 22:18:10    2015-06-12 22:18:10
20167    10646    746    2015-06-29 21:57:31    2015-06-29 21:57:31
20168    18335    470    2016-01-17 19:36:52    2016-01-17 19:36:52
20169    13403    528    2016-03-17 03:22:09    2016-03-17 03:22:09
20170    12864    499    2016-02-23 09:11:18    2016-02-23 09:11:18
20171    16967    589    2015-12-17 00:24:48    2015-12-17 00:24:48
20172    15807    796    2015-05-27 08:11:39    2015-05-27 08:11:39
20173    11015    684    2016-02-13 15:38:01    2016-02-13 15:38:01
20174    18124    861    2015-06-15 08:39:40    2015-06-15 08:39:40
20175    17655    718    2015-05-07 12:34:24    2015-05-07 12:34:24
20176    19592    735    2015-10-29 12:51:19    2015-10-29 12:51:19
20177    11955    936    2015-12-14 23:23:54    2015-12-14 23:23:54
20178    15157    684    2015-12-19 22:26:14    2015-12-19 22:26:14
20179    17611    478    2015-08-11 10:42:22    2015-08-11 10:42:22
20180    12558    802    2015-07-14 16:19:05    2015-07-14 16:19:05
20181    19761    519    2016-02-07 17:27:59    2016-02-07 17:27:59
20182    19905    556    2015-08-20 16:52:36    2015-08-20 16:52:36
20183    10820    763    2015-07-14 09:25:53    2015-07-14 09:25:53
20184    14773    842    2015-10-27 13:53:16    2015-10-27 13:53:16
20185    14514    759    2016-02-13 01:24:41    2016-02-13 01:24:41
20186    15639    715    2015-06-15 16:40:39    2015-06-15 16:40:39
20187    18567    563    2015-05-20 20:50:26    2015-05-20 20:50:26
20188    10498    908    2015-07-13 20:05:15    2015-07-13 20:05:15
20189    10950    629    2016-04-02 07:17:56    2016-04-02 07:17:56
20190    14287    467    2015-11-30 15:36:11    2015-11-30 15:36:11
20191    11753    517    2015-10-10 18:12:17    2015-10-10 18:12:17
20192    12061    611    2015-07-27 05:51:35    2015-07-27 05:51:35
20193    16947    528    2015-07-26 05:45:55    2015-07-26 05:45:55
20194    16809    467    2015-07-03 11:31:34    2015-07-03 11:31:34
20195    10406    501    2015-11-29 05:45:26    2015-11-29 05:45:26
20196    11103    666    2016-03-01 02:20:43    2016-03-01 02:20:43
20197    19008    810    2016-02-17 07:55:03    2016-02-17 07:55:03
20198    17675    736    2015-05-21 06:34:54    2015-05-21 06:34:54
20199    18699    865    2015-12-19 16:09:07    2015-12-19 16:09:07
20200    19776    742    2015-12-05 21:47:45    2015-12-05 21:47:45
20201    12063    670    2015-05-27 02:46:00    2015-05-27 02:46:00
20202    17084    561    2016-03-01 19:28:44    2016-03-01 19:28:44
20203    17016    489    2016-04-15 06:32:51    2016-04-15 06:32:51
20204    14515    530    2015-11-06 12:46:26    2015-11-06 12:46:26
20205    19641    600    2016-02-25 21:52:41    2016-02-25 21:52:41
20206    14803    961    2015-12-28 22:12:41    2015-12-28 22:12:41
20207    17682    527    2016-03-23 05:36:22    2016-03-23 05:36:22
20208    14742    879    2015-06-16 19:58:53    2015-06-16 19:58:53
20209    15781    766    2016-04-04 20:30:46    2016-04-04 20:30:46
20210    15908    668    2015-05-15 06:22:41    2015-05-15 06:22:41
20211    16522    635    2015-09-22 07:40:53    2015-09-22 07:40:53
20212    11689    902    2016-01-13 16:40:42    2016-01-13 16:40:42
20213    16713    935    2015-10-01 15:48:48    2015-10-01 15:48:48
20214    14810    872    2015-04-29 07:45:42    2015-04-29 07:45:42
20215    18724    918    2015-12-16 01:38:29    2015-12-16 01:38:29
20216    13386    813    2016-02-11 17:33:19    2016-02-11 17:33:19
20217    12600    670    2015-12-20 01:37:45    2015-12-20 01:37:45
20218    19563    546    2016-01-19 12:09:59    2016-01-19 12:09:59
20219    10989    744    2016-02-17 22:35:51    2016-02-17 22:35:51
20220    17345    555    2015-06-07 18:45:34    2015-06-07 18:45:34
20221    11939    608    2015-11-15 23:53:12    2015-11-15 23:53:12
20222    15731    891    2015-06-16 16:07:58    2015-06-16 16:07:58
20223    19935    899    2015-08-22 18:56:23    2015-08-22 18:56:23
20224    12286    619    2015-10-05 05:11:14    2015-10-05 05:11:14
20225    13277    700    2015-08-14 16:41:37    2015-08-14 16:41:37
20226    15513    885    2015-06-30 17:03:33    2015-06-30 17:03:33
20227    13514    581    2015-12-12 01:24:30    2015-12-12 01:24:30
20228    13244    556    2015-11-30 13:07:42    2015-11-30 13:07:42
20229    16753    489    2015-12-21 19:00:05    2015-12-21 19:00:05
20230    12424    864    2015-12-18 11:21:04    2015-12-18 11:21:04
20231    16390    513    2015-07-25 13:15:35    2015-07-25 13:15:35
20232    18158    832    2015-12-02 13:37:24    2015-12-02 13:37:24
20233    12271    556    2015-06-22 23:48:13    2015-06-22 23:48:13
20234    15831    521    2015-08-01 21:16:42    2015-08-01 21:16:42
20235    19353    593    2015-06-16 05:08:22    2015-06-16 05:08:22
20236    13490    791    2016-02-17 05:31:13    2016-02-17 05:31:13
20237    13828    485    2015-11-06 19:19:32    2015-11-06 19:19:32
20238    17115    601    2015-10-09 21:22:36    2015-10-09 21:22:36
20239    16447    468    2015-08-27 05:43:42    2015-08-27 05:43:42
20240    18068    606    2015-12-24 20:54:39    2015-12-24 20:54:39
20241    14355    804    2015-05-12 04:54:12    2015-05-12 04:54:12
20242    11449    701    2015-08-02 02:27:32    2015-08-02 02:27:32
20243    19091    635    2016-02-16 17:10:11    2016-02-16 17:10:11
20244    19129    524    2016-03-26 05:49:34    2016-03-26 05:49:34
20245    19739    755    2015-12-10 07:07:40    2015-12-10 07:07:40
20246    16376    845    2015-08-11 08:20:43    2015-08-11 08:20:43
20247    12577    813    2015-11-03 09:22:50    2015-11-03 09:22:50
20248    17436    605    2016-03-28 08:58:20    2016-03-28 08:58:20
20249    10104    808    2015-11-02 19:57:05    2015-11-02 19:57:05
20250    15137    631    2015-12-04 11:55:40    2015-12-04 11:55:40
20251    19472    779    2016-03-24 01:06:59    2016-03-24 01:06:59
20252    17793    660    2015-12-17 10:18:17    2015-12-17 10:18:17
20253    19267    639    2016-03-01 12:20:39    2016-03-01 12:20:39
20254    14851    649    2015-10-10 16:27:47    2015-10-10 16:27:47
20255    12047    893    2016-04-03 06:37:35    2016-04-03 06:37:35
20256    19243    950    2016-02-11 20:56:26    2016-02-11 20:56:26
20257    16697    648    2016-03-07 01:42:23    2016-03-07 01:42:23
20258    16807    605    2016-02-04 07:32:28    2016-02-04 07:32:28
20259    17528    622    2015-12-10 06:34:48    2015-12-10 06:34:48
20260    17378    617    2015-07-07 12:12:54    2015-07-07 12:12:54
20261    19087    954    2015-07-16 20:06:10    2015-07-16 20:06:10
20262    12346    721    2016-04-12 10:34:46    2016-04-12 10:34:46
20263    18330    705    2015-08-29 20:03:29    2015-08-29 20:03:29
20264    14294    758    2016-01-16 05:27:30    2016-01-16 05:27:30
20265    17249    946    2015-06-15 05:33:05    2015-06-15 05:33:05
20266    18592    855    2015-08-21 19:10:43    2015-08-21 19:10:43
20267    11083    538    2015-06-26 01:13:07    2015-06-26 01:13:07
20268    17929    495    2015-06-23 01:05:39    2015-06-23 01:05:39
20269    19323    830    2016-01-17 20:15:44    2016-01-17 20:15:44
20270    19319    468    2015-08-19 19:32:08    2015-08-19 19:32:08
20271    17074    742    2015-11-10 08:26:19    2015-11-10 08:26:19
20272    18752    750    2015-05-07 03:12:31    2015-05-07 03:12:31
20273    15552    466    2015-11-23 21:27:21    2015-11-23 21:27:21
20274    14335    575    2016-01-11 06:45:00    2016-01-11 06:45:00
20275    15759    941    2015-07-13 03:56:01    2015-07-13 03:56:01
20276    11964    622    2015-11-26 15:59:41    2015-11-26 15:59:41
20277    11056    539    2015-04-25 03:30:06    2015-04-25 03:30:06
20278    19672    650    2016-01-26 04:29:54    2016-01-26 04:29:54
20279    18116    805    2016-02-19 04:55:28    2016-02-19 04:55:28
20280    13747    709    2015-10-15 20:49:36    2015-10-15 20:49:36
20281    12020    681    2015-06-12 12:45:26    2015-06-12 12:45:26
20282    17185    625    2016-03-16 08:52:10    2016-03-16 08:52:10
20283    19848    742    2016-03-14 20:57:04    2016-03-14 20:57:04
20284    11631    862    2015-11-21 06:52:47    2015-11-21 06:52:47
20285    17993    875    2015-12-27 17:57:01    2015-12-27 17:57:01
20286    12698    711    2015-12-09 11:30:04    2015-12-09 11:30:04
20287    18437    549    2016-01-22 00:12:57    2016-01-22 00:12:57
20288    13840    653    2015-05-01 19:12:25    2015-05-01 19:12:25
20289    13334    724    2016-01-04 12:59:01    2016-01-04 12:59:01
20290    12951    953    2015-10-22 08:01:05    2015-10-22 08:01:05
20291    12338    641    2015-11-28 21:01:17    2015-11-28 21:01:17
20292    17533    737    2015-11-06 09:31:55    2015-11-06 09:31:55
20293    19790    843    2016-03-17 21:00:04    2016-03-17 21:00:04
20294    15163    793    2015-10-19 04:14:14    2015-10-19 04:14:14
20295    10362    468    2016-02-10 23:58:52    2016-02-10 23:58:52
20296    17014    691    2016-03-26 03:31:07    2016-03-26 03:31:07
20297    16205    502    2015-10-05 16:13:10    2015-10-05 16:13:10
20298    16098    583    2015-11-10 17:17:20    2015-11-10 17:17:20
20299    19715    614    2015-10-30 19:54:17    2015-10-30 19:54:17
20300    13124    761    2015-11-18 05:59:35    2015-11-18 05:59:35
20301    10075    696    2016-01-27 14:01:03    2016-01-27 14:01:03
20302    15973    700    2015-06-16 20:28:20    2015-06-16 20:28:20
20303    15893    725    2016-01-03 17:49:38    2016-01-03 17:49:38
20304    17126    717    2015-06-29 18:39:12    2015-06-29 18:39:12
20305    14728    717    2016-03-07 04:38:41    2016-03-07 04:38:41
20306    16402    940    2016-02-09 06:23:35    2016-02-09 06:23:35
20307    15590    664    2015-09-26 04:00:05    2015-09-26 04:00:05
20308    16898    787    2015-06-06 02:36:51    2015-06-06 02:36:51
20309    19248    713    2015-04-27 20:53:28    2015-04-27 20:53:28
20310    15307    800    2015-05-15 07:16:01    2015-05-15 07:16:01
20311    16211    468    2015-06-26 09:24:47    2015-06-26 09:24:47
20312    16703    581    2015-05-15 06:43:38    2015-05-15 06:43:38
20313    19519    534    2015-12-01 01:38:56    2015-12-01 01:38:56
20314    13464    602    2016-01-06 22:46:58    2016-01-06 22:46:58
20315    18176    787    2015-10-29 15:41:20    2015-10-29 15:41:20
20316    13202    588    2015-07-23 05:35:37    2015-07-23 05:35:37
20317    16516    867    2015-04-28 14:55:01    2015-04-28 14:55:01
20318    16343    543    2015-08-14 02:39:04    2015-08-14 02:39:04
20319    13868    559    2015-04-24 12:09:37    2015-04-24 12:09:37
20320    19155    792    2016-04-15 04:42:50    2016-04-15 04:42:50
20321    18600    468    2016-01-03 02:06:16    2016-01-03 02:06:16
20322    19001    720    2015-11-26 22:57:18    2015-11-26 22:57:18
20323    13364    580    2016-03-20 05:59:49    2016-03-20 05:59:49
20324    17700    484    2015-07-19 11:45:13    2015-07-19 11:45:13
20325    16855    750    2015-07-23 02:49:21    2015-07-23 02:49:21
20326    19595    517    2015-12-06 16:41:34    2015-12-06 16:41:34
20327    12313    863    2016-03-02 14:14:35    2016-03-02 14:14:35
20328    17336    622    2016-04-10 08:18:35    2016-04-10 08:18:35
20329    19510    561    2015-12-07 10:15:03    2015-12-07 10:15:03
20330    19754    630    2015-12-14 16:44:19    2015-12-14 16:44:19
20331    16610    758    2016-04-08 17:09:20    2016-04-08 17:09:20
20332    10220    897    2016-04-18 10:20:24    2016-04-18 10:20:24
20333    15641    721    2015-07-08 08:06:44    2015-07-08 08:06:44
20334    17467    950    2015-12-31 16:48:09    2015-12-31 16:48:09
20335    19255    880    2016-02-08 18:57:20    2016-02-08 18:57:20
20336    16498    558    2015-07-08 18:08:23    2015-07-08 18:08:23
20337    10695    612    2015-08-12 20:11:34    2015-08-12 20:11:34
20338    18697    759    2015-05-19 08:12:57    2015-05-19 08:12:57
20339    11632    862    2015-11-10 05:33:06    2015-11-10 05:33:06
20340    19611    632    2015-05-18 19:58:57    2015-05-18 19:58:57
20341    16904    883    2015-09-14 16:19:45    2015-09-14 16:19:45
20342    18010    585    2016-01-24 05:21:16    2016-01-24 05:21:16
20343    13361    825    2015-11-10 08:14:34    2015-11-10 08:14:34
20344    16118    603    2015-10-31 10:31:19    2015-10-31 10:31:19
20345    19750    813    2016-03-19 08:49:06    2016-03-19 08:49:06
20346    12371    891    2016-01-21 20:53:14    2016-01-21 20:53:14
20347    14979    554    2016-01-29 20:18:33    2016-01-29 20:18:33
20348    14558    469    2015-11-18 04:50:38    2015-11-18 04:50:38
20349    11018    844    2016-03-13 03:19:08    2016-03-13 03:19:08
20350    11969    702    2015-05-05 00:58:40    2015-05-05 00:58:40
20351    15101    495    2016-02-20 07:13:59    2016-02-20 07:13:59
20352    17850    757    2015-09-29 22:53:33    2015-09-29 22:53:33
20353    14762    788    2015-07-18 16:06:48    2015-07-18 16:06:48
20354    15243    710    2015-07-12 11:51:37    2015-07-12 11:51:37
20355    18163    514    2015-10-06 11:41:42    2015-10-06 11:41:42
20356    19168    487    2015-05-14 14:37:22    2015-05-14 14:37:22
20357    12058    592    2015-07-29 02:20:01    2015-07-29 02:20:01
20358    19990    477    2015-12-16 03:04:43    2015-12-16 03:04:43
20359    18865    546    2015-05-05 09:56:06    2015-05-05 09:56:06
20360    15392    912    2016-01-21 04:53:27    2016-01-21 04:53:27
20361    11947    747    2015-07-02 22:23:51    2015-07-02 22:23:51
20362    10126    830    2015-05-15 10:48:30    2015-05-15 10:48:30
20363    12772    677    2015-05-16 05:34:02    2015-05-16 05:34:02
20364    16279    538    2016-02-20 02:50:43    2016-02-20 02:50:43
20365    16949    528    2015-11-22 11:07:32    2015-11-22 11:07:32
20366    13658    682    2015-07-05 15:12:15    2015-07-05 15:12:15
20367    11596    774    2015-10-29 10:53:23    2015-10-29 10:53:23
20368    18149    877    2015-05-05 09:56:58    2015-05-05 09:56:58
20369    14353    713    2015-06-30 07:24:54    2015-06-30 07:24:54
20370    19047    853    2016-01-21 10:38:14    2016-01-21 10:38:14
20371    10981    615    2015-06-28 04:22:31    2015-06-28 04:22:31
20372    16347    625    2016-01-29 01:26:02    2016-01-29 01:26:02
20373    16515    604    2016-03-06 00:45:49    2016-03-06 00:45:49
20374    10907    766    2016-01-14 07:31:59    2016-01-14 07:31:59
20375    13665    595    2016-01-22 20:27:15    2016-01-22 20:27:15
20376    10485    917    2015-05-15 17:32:57    2015-05-15 17:32:57
20377    18159    537    2016-03-20 06:01:49    2016-03-20 06:01:49
20378    15577    704    2015-11-26 19:27:16    2015-11-26 19:27:16
20379    10637    543    2015-12-27 14:17:14    2015-12-27 14:17:14
20380    11787    750    2015-08-06 11:56:15    2015-08-06 11:56:15
20381    12378    643    2016-04-13 11:22:23    2016-04-13 11:22:23
20382    15661    648    2016-04-20 16:12:40    2016-04-20 16:12:40
20383    13912    469    2015-09-27 08:38:03    2015-09-27 08:38:03
20384    19458    825    2016-03-05 17:45:04    2016-03-05 17:45:04
20385    11685    689    2015-07-04 11:36:33    2015-07-04 11:36:33
20386    17057    570    2015-06-30 15:46:30    2015-06-30 15:46:30
20387    10813    644    2015-09-17 12:56:18    2015-09-17 12:56:18
20388    15113    674    2015-12-19 03:57:52    2015-12-19 03:57:52
20389    13534    619    2016-02-07 12:34:35    2016-02-07 12:34:35
20390    18330    560    2015-09-17 21:24:12    2015-09-17 21:24:12
20391    17814    794    2016-01-02 02:56:42    2016-01-02 02:56:42
20392    12746    789    2015-09-28 19:28:22    2015-09-28 19:28:22
20393    16905    799    2015-08-21 19:01:24    2015-08-21 19:01:24
20394    10447    869    2016-02-20 16:44:27    2016-02-20 16:44:27
20395    11105    501    2015-07-24 12:56:30    2015-07-24 12:56:30
20396    13180    741    2015-11-22 19:11:54    2015-11-22 19:11:54
20397    14456    804    2015-07-21 00:16:08    2015-07-21 00:16:08
20398    17409    636    2015-12-06 02:18:24    2015-12-06 02:18:24
20399    19930    851    2015-08-28 06:48:02    2015-08-28 06:48:02
20400    13832    467    2015-11-04 10:47:43    2015-11-04 10:47:43
20401    13642    796    2015-06-17 12:36:29    2015-06-17 12:36:29
20402    17704    693    2015-07-22 13:30:07    2015-07-22 13:30:07
20403    10347    487    2015-07-13 20:27:58    2015-07-13 20:27:58
20404    13226    785    2015-09-01 13:16:35    2015-09-01 13:16:35
20405    15397    774    2016-01-13 17:36:13    2016-01-13 17:36:13
20406    15075    890    2015-05-04 03:23:23    2015-05-04 03:23:23
20407    11930    956    2015-11-07 14:35:30    2015-11-07 14:35:30
20408    11145    879    2015-12-27 21:06:39    2015-12-27 21:06:39
20409    15099    583    2015-08-18 19:07:54    2015-08-18 19:07:54
20410    11323    612    2015-08-07 22:31:14    2015-08-07 22:31:14
20411    10829    724    2015-06-12 03:08:27    2015-06-12 03:08:27
20412    12574    803    2015-08-16 12:04:35    2015-08-16 12:04:35
20413    11882    793    2016-02-01 18:10:11    2016-02-01 18:10:11
20414    18638    850    2015-11-11 20:26:25    2015-11-11 20:26:25
20415    14686    876    2015-08-03 07:42:17    2015-08-03 07:42:17
20416    10856    607    2015-12-19 10:27:31    2015-12-19 10:27:31
20417    14978    744    2016-01-09 04:31:05    2016-01-09 04:31:05
20418    15574    588    2016-02-17 02:59:19    2016-02-17 02:59:19
20419    14945    707    2015-09-30 13:37:18    2015-09-30 13:37:18
20420    17355    702    2015-06-16 04:51:00    2015-06-16 04:51:00
20421    13513    758    2015-07-11 17:32:45    2015-07-11 17:32:45
20422    11817    687    2015-12-18 00:15:12    2015-12-18 00:15:12
20423    15409    888    2016-01-15 20:28:08    2016-01-15 20:28:08
20424    12139    926    2015-11-25 21:47:45    2015-11-25 21:47:45
20425    12328    539    2016-03-24 09:03:27    2016-03-24 09:03:27
20426    10653    673    2015-10-03 12:15:18    2015-10-03 12:15:18
20427    18708    662    2016-02-15 07:40:45    2016-02-15 07:40:45
20428    16958    699    2016-01-03 15:20:12    2016-01-03 15:20:12
20429    11994    921    2015-08-15 03:24:50    2015-08-15 03:24:50
20430    13430    540    2015-05-21 11:51:48    2015-05-21 11:51:48
20431    18864    650    2015-07-17 11:17:23    2015-07-17 11:17:23
20432    18505    555    2015-06-14 05:03:20    2015-06-14 05:03:20
20433    16364    561    2016-02-07 02:31:10    2016-02-07 02:31:10
20434    16663    579    2015-12-20 18:15:03    2015-12-20 18:15:03
20435    14997    959    2015-06-03 11:14:03    2015-06-03 11:14:03
20436    19710    491    2015-07-11 22:20:55    2015-07-11 22:20:55
20437    11188    818    2015-10-14 16:18:16    2015-10-14 16:18:16
20438    11652    534    2016-02-08 04:06:46    2016-02-08 04:06:46
20439    12306    592    2015-10-28 04:55:26    2015-10-28 04:55:26
20440    14235    687    2016-01-17 19:59:50    2016-01-17 19:59:50
20441    12822    518    2015-08-03 01:17:25    2015-08-03 01:17:25
20442    11378    597    2016-01-20 18:14:49    2016-01-20 18:14:49
20443    18843    886    2015-09-16 22:57:26    2015-09-16 22:57:26
20444    17523    831    2015-05-10 08:12:05    2015-05-10 08:12:05
20445    18338    704    2016-02-06 02:25:57    2016-02-06 02:25:57
20446    10600    654    2015-11-30 00:57:08    2015-11-30 00:57:08
20447    19532    631    2016-03-04 07:35:15    2016-03-04 07:35:15
20448    11824    510    2015-09-19 15:03:42    2015-09-19 15:03:42
20449    18998    855    2015-05-31 03:34:59    2015-05-31 03:34:59
20450    17217    540    2016-04-05 13:25:22    2016-04-05 13:25:22
20451    11868    533    2015-07-16 23:59:27    2015-07-16 23:59:27
20452    18377    464    2015-07-10 07:56:48    2015-07-10 07:56:48
20453    14841    907    2015-08-07 19:08:47    2015-08-07 19:08:47
20454    17078    953    2015-10-14 01:34:31    2015-10-14 01:34:31
20455    17329    739    2016-03-12 05:39:40    2016-03-12 05:39:40
20456    13669    832    2015-11-16 03:18:53    2015-11-16 03:18:53
20457    12813    950    2015-11-07 21:58:41    2015-11-07 21:58:41
20458    10753    705    2015-06-10 06:04:36    2015-06-10 06:04:36
20459    14690    896    2015-07-04 16:36:10    2015-07-04 16:36:10
20460    17414    570    2016-02-04 01:37:58    2016-02-04 01:37:58
20461    18506    598    2016-01-07 00:32:25    2016-01-07 00:32:25
20462    12171    930    2016-04-07 18:32:43    2016-04-07 18:32:43
20463    13550    679    2015-09-29 03:18:02    2015-09-29 03:18:02
20464    10776    840    2015-05-22 17:54:31    2015-05-22 17:54:31
20465    13415    463    2015-07-13 13:59:14    2015-07-13 13:59:14
20466    11911    529    2015-08-14 17:28:10    2015-08-14 17:28:10
20467    16947    655    2015-09-29 00:09:52    2015-09-29 00:09:52
20468    17723    742    2016-01-16 23:48:55    2016-01-16 23:48:55
20469    11355    677    2015-12-16 16:47:50    2015-12-16 16:47:50
20470    11365    679    2015-12-22 05:08:44    2015-12-22 05:08:44
20471    12299    811    2015-12-07 23:25:38    2015-12-07 23:25:38
20472    17601    839    2016-02-06 01:50:32    2016-02-06 01:50:32
20473    14073    670    2015-06-11 23:38:40    2015-06-11 23:38:40
20474    12870    624    2015-09-04 07:00:07    2015-09-04 07:00:07
20475    13692    744    2015-06-13 19:09:17    2015-06-13 19:09:17
20476    13390    822    2015-11-11 13:48:05    2015-11-11 13:48:05
20477    11490    469    2015-04-26 08:54:15    2015-04-26 08:54:15
20478    16937    519    2016-04-09 09:51:41    2016-04-09 09:51:41
20479    12753    570    2015-05-05 17:50:43    2015-05-05 17:50:43
20480    15324    548    2015-05-20 22:27:59    2015-05-20 22:27:59
20481    17952    907    2015-07-04 07:18:35    2015-07-04 07:18:35
20482    18563    833    2015-05-14 15:44:42    2015-05-14 15:44:42
20483    14304    721    2015-06-22 21:59:45    2015-06-22 21:59:45
20484    19546    826    2015-07-27 14:27:49    2015-07-27 14:27:49
20485    11908    909    2015-11-05 16:57:31    2015-11-05 16:57:31
20486    19202    885    2016-03-23 00:30:58    2016-03-23 00:30:58
20487    17351    621    2015-08-15 23:41:17    2015-08-15 23:41:17
20488    10798    798    2015-08-05 10:54:26    2015-08-05 10:54:26
20489    13979    879    2015-12-12 23:09:26    2015-12-12 23:09:26
20490    14067    499    2015-10-16 00:00:32    2015-10-16 00:00:32
20491    10956    470    2015-05-08 16:55:11    2015-05-08 16:55:11
20492    17000    767    2015-05-11 12:58:58    2015-05-11 12:58:58
20493    18360    782    2016-01-06 13:53:18    2016-01-06 13:53:18
20494    15457    922    2015-10-07 18:31:14    2015-10-07 18:31:14
20495    13215    488    2015-04-27 20:25:29    2015-04-27 20:25:29
20496    18098    465    2015-07-20 04:16:16    2015-07-20 04:16:16
20497    19958    505    2015-11-20 15:06:34    2015-11-20 15:06:34
20498    12414    858    2016-02-22 17:07:03    2016-02-22 17:07:03
20499    19810    655    2015-09-21 06:33:45    2015-09-21 06:33:45
20500    18617    765    2015-07-15 16:50:16    2015-07-15 16:50:16
20501    12240    783    2016-02-20 08:01:16    2016-02-20 08:01:16
20502    14438    754    2015-08-02 02:36:08    2015-08-02 02:36:08
20503    19564    776    2015-08-05 01:49:08    2015-08-05 01:49:08
20504    17489    900    2015-08-10 02:49:39    2015-08-10 02:49:39
20505    15680    493    2015-09-30 06:24:31    2015-09-30 06:24:31
20506    10075    493    2016-01-12 05:54:38    2016-01-12 05:54:38
20507    15834    790    2015-11-07 12:37:06    2015-11-07 12:37:06
20508    10261    691    2015-05-30 13:57:52    2015-05-30 13:57:52
20509    12226    625    2015-12-26 09:50:38    2015-12-26 09:50:38
20510    15913    584    2015-05-10 00:07:28    2015-05-10 00:07:28
20511    14219    594    2015-07-27 04:25:56    2015-07-27 04:25:56
20512    18825    610    2016-02-29 23:13:22    2016-02-29 23:13:22
20513    16518    872    2016-03-14 22:16:57    2016-03-14 22:16:57
20514    13099    615    2015-06-13 11:49:59    2015-06-13 11:49:59
20515    14769    603    2015-05-12 22:11:48    2015-05-12 22:11:48
20516    13282    892    2015-11-23 13:29:38    2015-11-23 13:29:38
20517    11832    597    2016-01-30 05:33:11    2016-01-30 05:33:11
20518    11539    731    2015-11-25 13:49:13    2015-11-25 13:49:13
20519    14144    478    2015-09-09 23:04:55    2015-09-09 23:04:55
20520    10922    772    2015-06-14 12:46:50    2015-06-14 12:46:50
20521    19625    751    2015-10-20 22:37:19    2015-10-20 22:37:19
20522    19736    838    2015-08-04 03:21:26    2015-08-04 03:21:26
20523    11813    788    2015-10-16 16:59:44    2015-10-16 16:59:44
20524    16966    795    2016-02-07 06:09:20    2016-02-07 06:09:20
20525    19316    528    2016-01-03 13:01:44    2016-01-03 13:01:44
20526    12836    533    2016-03-10 12:52:44    2016-03-10 12:52:44
20527    18793    594    2015-10-03 06:40:02    2015-10-03 06:40:02
20528    17347    723    2015-07-05 00:49:45    2015-07-05 00:49:45
20529    13239    759    2015-08-03 22:55:19    2015-08-03 22:55:19
20530    14095    948    2015-07-15 00:57:15    2015-07-15 00:57:15
20531    18605    576    2016-04-18 01:08:07    2016-04-18 01:08:07
20532    19056    901    2016-01-05 07:21:26    2016-01-05 07:21:26
20533    15903    941    2016-03-17 22:49:51    2016-03-17 22:49:51
20534    16460    842    2016-03-24 16:46:00    2016-03-24 16:46:00
20535    13289    880    2016-04-14 20:05:26    2016-04-14 20:05:26
20536    19419    754    2015-11-16 10:34:05    2015-11-16 10:34:05
20537    18901    860    2015-07-14 08:47:21    2015-07-14 08:47:21
20538    15418    600    2015-05-18 19:41:48    2015-05-18 19:41:48
20539    17553    525    2015-09-18 11:51:57    2015-09-18 11:51:57
20540    14164    529    2015-07-20 10:11:25    2015-07-20 10:11:25
20541    11023    928    2016-02-13 19:56:53    2016-02-13 19:56:53
20542    10992    699    2015-10-29 04:56:13    2015-10-29 04:56:13
20543    10670    787    2015-06-16 12:31:20    2015-06-16 12:31:20
20544    18250    481    2015-07-27 13:35:49    2015-07-27 13:35:49
20545    19991    731    2015-09-18 20:59:48    2015-09-18 20:59:48
20546    13615    740    2015-07-11 22:00:22    2015-07-11 22:00:22
20547    19386    896    2015-10-29 13:20:25    2015-10-29 13:20:25
20548    18183    616    2015-08-05 10:11:47    2015-08-05 10:11:47
20549    18027    650    2016-01-31 05:56:00    2016-01-31 05:56:00
20550    11885    485    2016-02-19 15:09:28    2016-02-19 15:09:28
20551    15682    879    2015-06-25 01:53:13    2015-06-25 01:53:13
20552    19218    762    2015-06-19 03:07:20    2015-06-19 03:07:20
20553    15616    902    2015-10-26 22:25:01    2015-10-26 22:25:01
20554    10627    627    2016-03-15 17:31:07    2016-03-15 17:31:07
20555    17420    902    2015-08-02 08:27:40    2015-08-02 08:27:40
20556    10899    742    2016-01-28 09:34:46    2016-01-28 09:34:46
20557    18655    803    2015-11-07 03:08:31    2015-11-07 03:08:31
20558    18637    755    2015-08-28 21:10:24    2015-08-28 21:10:24
20559    13896    585    2015-08-04 20:04:59    2015-08-04 20:04:59
20560    13368    911    2015-06-14 06:04:13    2015-06-14 06:04:13
20561    14562    909    2015-07-08 03:56:33    2015-07-08 03:56:33
20562    12266    539    2015-05-19 12:32:52    2015-05-19 12:32:52
20563    11604    485    2016-03-18 18:25:36    2016-03-18 18:25:36
20564    11567    499    2016-01-05 07:37:58    2016-01-05 07:37:58
20565    15838    471    2015-12-25 05:09:52    2015-12-25 05:09:52
20566    19006    785    2016-01-21 09:07:52    2016-01-21 09:07:52
20567    12780    580    2015-04-30 13:28:16    2015-04-30 13:28:16
20568    15505    864    2015-06-05 17:48:02    2015-06-05 17:48:02
20569    14072    798    2015-10-17 21:54:16    2015-10-17 21:54:16
20570    14597    535    2015-06-28 14:57:21    2015-06-28 14:57:21
20571    10851    644    2016-01-10 20:59:29    2016-01-10 20:59:29
20572    19114    614    2015-06-05 21:52:35    2015-06-05 21:52:35
20573    13360    802    2016-02-24 02:20:30    2016-02-24 02:20:30
20574    18795    728    2016-01-27 14:34:59    2016-01-27 14:34:59
20575    11936    557    2016-01-31 14:04:39    2016-01-31 14:04:39
20576    18719    815    2015-10-23 19:07:35    2015-10-23 19:07:35
20577    16122    838    2015-05-27 00:03:50    2015-05-27 00:03:50
20578    14210    477    2015-12-07 21:04:35    2015-12-07 21:04:35
20579    11427    861    2015-11-04 05:54:03    2015-11-04 05:54:03
20580    10658    908    2015-10-29 21:00:19    2015-10-29 21:00:19
20581    13862    839    2015-12-30 15:50:03    2015-12-30 15:50:03
20582    10615    588    2016-03-19 23:26:14    2016-03-19 23:26:14
20583    17081    530    2016-03-21 05:27:15    2016-03-21 05:27:15
20584    15102    878    2015-05-12 01:12:17    2015-05-12 01:12:17
20585    15834    463    2016-04-18 22:50:42    2016-04-18 22:50:42
20586    18628    516    2015-08-09 06:29:25    2015-08-09 06:29:25
20587    12551    837    2015-10-24 04:24:53    2015-10-24 04:24:53
20588    19477    732    2016-02-27 06:09:01    2016-02-27 06:09:01
20589    19839    815    2015-08-19 13:29:50    2015-08-19 13:29:50
20590    17757    585    2015-04-24 23:06:27    2015-04-24 23:06:27
20591    12141    875    2016-03-26 18:43:25    2016-03-26 18:43:25
20592    19663    506    2015-11-06 00:27:27    2015-11-06 00:27:27
20593    18898    500    2016-03-15 01:49:55    2016-03-15 01:49:55
20594    14123    635    2015-12-16 19:08:04    2015-12-16 19:08:04
20595    19444    846    2015-10-18 22:08:15    2015-10-18 22:08:15
20596    19813    778    2016-03-14 08:07:55    2016-03-14 08:07:55
20597    16256    843    2016-02-01 04:36:23    2016-02-01 04:36:23
20598    13426    572    2015-07-19 22:12:40    2015-07-19 22:12:40
20599    15880    572    2016-02-04 22:08:48    2016-02-04 22:08:48
20600    16937    934    2016-03-12 12:31:32    2016-03-12 12:31:32
20601    11674    610    2015-06-26 13:06:11    2015-06-26 13:06:11
20602    19868    654    2015-06-28 20:09:51    2015-06-28 20:09:51
20603    18973    728    2015-06-01 17:16:36    2015-06-01 17:16:36
20604    13805    597    2016-02-02 16:48:20    2016-02-02 16:48:20
20605    12079    833    2015-09-10 03:07:36    2015-09-10 03:07:36
20606    13677    705    2016-01-20 11:29:15    2016-01-20 11:29:15
20607    15537    536    2015-07-09 11:04:14    2015-07-09 11:04:14
20608    12195    865    2015-06-25 17:56:49    2015-06-25 17:56:49
20609    11767    821    2016-03-19 05:02:46    2016-03-19 05:02:46
20610    16280    547    2016-01-14 03:51:00    2016-01-14 03:51:00
20611    17490    934    2015-05-10 01:18:02    2015-05-10 01:18:02
20612    13934    468    2015-12-16 05:05:44    2015-12-16 05:05:44
20613    18441    833    2015-05-11 22:17:01    2015-05-11 22:17:01
20614    16284    646    2016-01-18 03:27:55    2016-01-18 03:27:55
20615    14341    513    2015-08-23 07:48:30    2015-08-23 07:48:30
20616    18340    724    2016-04-18 04:20:54    2016-04-18 04:20:54
20617    14668    555    2015-05-09 12:10:52    2015-05-09 12:10:52
20618    11111    506    2015-12-20 20:05:50    2015-12-20 20:05:50
20619    11543    625    2015-06-03 02:55:39    2015-06-03 02:55:39
20620    19746    694    2015-07-03 15:59:33    2015-07-03 15:59:33
20621    19539    672    2015-10-19 05:32:41    2015-10-19 05:32:41
20622    16545    578    2015-08-19 11:01:30    2015-08-19 11:01:30
20623    19055    707    2015-10-15 17:41:52    2015-10-15 17:41:52
20624    13517    672    2016-02-28 06:39:39    2016-02-28 06:39:39
20625    14806    875    2015-04-25 21:49:55    2015-04-25 21:49:55
20626    12986    576    2016-01-13 15:01:48    2016-01-13 15:01:48
20627    16409    768    2015-07-10 08:02:12    2015-07-10 08:02:12
20628    11885    947    2015-09-29 17:17:58    2015-09-29 17:17:58
20629    12984    676    2015-09-21 03:56:11    2015-09-21 03:56:11
20630    13826    924    2015-11-25 01:06:57    2015-11-25 01:06:57
20631    18677    658    2016-01-12 15:28:10    2016-01-12 15:28:10
20632    12892    732    2016-04-13 17:46:15    2016-04-13 17:46:15
20633    13123    749    2015-05-05 11:35:59    2015-05-05 11:35:59
20634    10499    868    2015-07-28 17:35:38    2015-07-28 17:35:38
20635    18713    873    2015-10-13 06:38:23    2015-10-13 06:38:23
20636    12469    547    2015-12-23 21:40:39    2015-12-23 21:40:39
20637    18106    740    2016-03-10 05:31:09    2016-03-10 05:31:09
20638    16586    520    2015-10-18 02:44:45    2015-10-18 02:44:45
20639    19120    598    2015-12-24 16:36:59    2015-12-24 16:36:59
20640    18012    620    2015-07-10 17:43:23    2015-07-10 17:43:23
20641    13963    874    2015-08-21 08:23:32    2015-08-21 08:23:32
20642    10098    841    2015-06-29 17:34:51    2015-06-29 17:34:51
20643    14247    785    2015-07-22 14:32:54    2015-07-22 14:32:54
20644    11168    942    2015-08-15 09:24:37    2015-08-15 09:24:37
20645    14320    845    2015-12-13 10:55:40    2015-12-13 10:55:40
20646    19533    946    2015-05-02 21:08:19    2015-05-02 21:08:19
20647    16604    876    2015-08-30 11:29:15    2015-08-30 11:29:15
20648    13775    566    2015-06-24 02:39:56    2015-06-24 02:39:56
20649    14992    820    2015-08-25 10:17:54    2015-08-25 10:17:54
20650    16207    769    2015-09-30 11:34:16    2015-09-30 11:34:16
20651    11850    476    2015-08-19 04:21:30    2015-08-19 04:21:30
20652    13227    547    2016-03-31 05:03:45    2016-03-31 05:03:45
20653    10894    556    2015-08-02 11:50:06    2015-08-02 11:50:06
20654    13979    566    2015-07-21 08:33:18    2015-07-21 08:33:18
20655    10826    668    2016-01-04 22:54:52    2016-01-04 22:54:52
20656    16453    730    2015-10-17 05:33:34    2015-10-17 05:33:34
20657    13375    789    2016-02-22 23:52:48    2016-02-22 23:52:48
20658    16989    718    2016-04-13 08:38:32    2016-04-13 08:38:32
20659    15913    502    2015-09-08 20:58:55    2015-09-08 20:58:55
20660    12716    751    2015-08-18 17:41:50    2015-08-18 17:41:50
20661    13575    670    2015-10-23 19:20:47    2015-10-23 19:20:47
20662    18393    712    2015-06-14 20:50:17    2015-06-14 20:50:17
20663    16027    798    2015-10-06 00:59:16    2015-10-06 00:59:16
20664    10733    630    2016-03-15 06:16:20    2016-03-15 06:16:20
20665    18008    874    2015-10-07 19:27:08    2015-10-07 19:27:08
20666    12971    501    2015-08-13 18:14:46    2015-08-13 18:14:46
20667    17902    523    2015-10-24 02:53:56    2015-10-24 02:53:56
20668    10847    720    2015-11-04 01:27:36    2015-11-04 01:27:36
20669    13988    767    2016-01-30 05:30:01    2016-01-30 05:30:01
20670    12910    487    2015-07-27 21:20:35    2015-07-27 21:20:35
20671    12472    913    2015-08-24 04:24:28    2015-08-24 04:24:28
20672    15843    883    2015-07-20 18:57:12    2015-07-20 18:57:12
20673    16358    799    2015-10-01 10:12:04    2015-10-01 10:12:04
20674    15100    817    2016-03-24 15:09:06    2016-03-24 15:09:06
20675    16036    464    2015-05-21 15:28:58    2015-05-21 15:28:58
20676    17627    686    2015-11-17 14:52:27    2015-11-17 14:52:27
20677    15691    501    2015-09-28 00:45:51    2015-09-28 00:45:51
20678    19461    653    2015-09-02 00:49:14    2015-09-02 00:49:14
20679    10307    948    2015-11-08 23:43:11    2015-11-08 23:43:11
20680    18687    678    2015-07-27 04:46:13    2015-07-27 04:46:13
20681    10599    619    2015-11-16 20:01:05    2015-11-16 20:01:05
20682    11692    582    2016-02-01 09:20:01    2016-02-01 09:20:01
20683    12050    926    2016-03-05 00:35:49    2016-03-05 00:35:49
20684    11399    877    2016-02-05 07:41:38    2016-02-05 07:41:38
20685    14482    573    2015-07-05 07:20:14    2015-07-05 07:20:14
20686    17872    578    2015-07-28 07:59:47    2015-07-28 07:59:47
20687    16314    652    2015-05-02 08:32:38    2015-05-02 08:32:38
20688    17636    693    2015-10-01 20:29:31    2015-10-01 20:29:31
20689    18180    642    2015-09-02 12:00:58    2015-09-02 12:00:58
20690    15864    697    2016-03-27 20:36:33    2016-03-27 20:36:33
20691    12707    613    2015-09-08 00:39:47    2015-09-08 00:39:47
20692    14805    782    2016-01-09 04:33:18    2016-01-09 04:33:18
20693    18401    716    2016-03-08 16:44:40    2016-03-08 16:44:40
20694    16354    717    2015-07-14 13:58:49    2015-07-14 13:58:49
20695    14440    534    2015-11-13 18:16:45    2015-11-13 18:16:45
20696    15287    622    2015-10-22 16:06:32    2015-10-22 16:06:32
20697    13581    747    2015-07-15 01:25:26    2015-07-15 01:25:26
20698    15536    625    2016-03-07 10:08:08    2016-03-07 10:08:08
20699    17395    686    2015-09-06 02:04:15    2015-09-06 02:04:15
20700    14798    519    2016-04-05 22:19:17    2016-04-05 22:19:17
20701    14192    701    2015-06-09 08:22:11    2015-06-09 08:22:11
20702    14549    771    2015-10-25 16:46:15    2015-10-25 16:46:15
20703    19738    560    2015-10-05 18:28:20    2015-10-05 18:28:20
20704    18327    570    2015-09-07 00:30:53    2015-09-07 00:30:53
20705    14668    756    2015-05-23 06:01:53    2015-05-23 06:01:53
20706    17109    486    2015-11-22 05:23:46    2015-11-22 05:23:46
20707    16960    835    2016-04-04 01:52:29    2016-04-04 01:52:29
20708    12908    770    2015-07-04 00:39:31    2015-07-04 00:39:31
20709    16915    875    2016-03-14 23:07:24    2016-03-14 23:07:24
20710    11810    815    2015-11-19 16:53:13    2015-11-19 16:53:13
20711    19631    526    2015-10-01 21:45:27    2015-10-01 21:45:27
20712    13922    752    2016-03-17 07:50:49    2016-03-17 07:50:49
20713    18879    623    2016-02-12 13:36:17    2016-02-12 13:36:17
20714    14877    669    2015-08-13 22:36:05    2015-08-13 22:36:05
20715    10571    803    2015-05-01 01:24:57    2015-05-01 01:24:57
20716    15205    842    2015-09-30 18:38:36    2015-09-30 18:38:36
20717    18978    540    2015-11-28 18:43:53    2015-11-28 18:43:53
20718    19522    476    2016-01-15 10:39:25    2016-01-15 10:39:25
20719    12095    738    2015-11-27 19:37:42    2015-11-27 19:37:42
20720    19294    920    2016-01-07 19:51:04    2016-01-07 19:51:04
20721    19152    695    2016-03-27 07:48:00    2016-03-27 07:48:00
20722    14318    588    2015-06-30 15:47:13    2015-06-30 15:47:13
20723    13961    900    2015-12-15 10:05:33    2015-12-15 10:05:33
20724    17366    837    2016-01-14 02:56:37    2016-01-14 02:56:37
20725    14854    835    2015-05-02 09:34:52    2015-05-02 09:34:52
20726    19800    634    2015-10-01 17:14:32    2015-10-01 17:14:32
20727    11002    647    2015-08-02 10:45:39    2015-08-02 10:45:39
20728    13516    512    2015-06-01 07:32:42    2015-06-01 07:32:42
20729    15243    764    2016-04-06 13:49:13    2016-04-06 13:49:13
20730    10732    622    2015-07-24 20:34:43    2015-07-24 20:34:43
20731    10649    691    2016-04-15 21:00:07    2016-04-15 21:00:07
20732    16588    588    2016-03-17 01:02:56    2016-03-17 01:02:56
20733    19027    820    2015-12-17 06:03:29    2015-12-17 06:03:29
20734    14404    736    2016-01-13 00:02:39    2016-01-13 00:02:39
20735    11190    770    2015-05-09 10:37:56    2015-05-09 10:37:56
20736    19646    661    2015-05-13 23:59:46    2015-05-13 23:59:46
20737    10183    878    2016-01-13 13:37:39    2016-01-13 13:37:39
20738    19599    796    2015-07-14 03:08:12    2015-07-14 03:08:12
20739    19769    665    2016-01-18 20:30:56    2016-01-18 20:30:56
20740    19961    863    2015-05-24 16:11:42    2015-05-24 16:11:42
20741    14166    767    2016-04-15 08:35:45    2016-04-15 08:35:45
20742    12235    903    2015-05-05 19:38:15    2015-05-05 19:38:15
20743    10057    640    2015-06-01 05:53:02    2015-06-01 05:53:02
20744    11394    473    2015-10-29 02:29:59    2015-10-29 02:29:59
20745    14902    852    2015-11-26 20:46:18    2015-11-26 20:46:18
20746    13459    584    2015-07-27 13:03:40    2015-07-27 13:03:40
20747    10454    579    2016-04-16 07:56:12    2016-04-16 07:56:12
20748    19792    761    2015-10-13 13:46:29    2015-10-13 13:46:29
20749    11665    768    2015-09-07 08:32:51    2015-09-07 08:32:51
20750    11169    623    2016-02-13 02:53:22    2016-02-13 02:53:22
20751    15703    783    2015-08-19 20:50:05    2015-08-19 20:50:05
20752    19166    932    2016-01-02 12:19:15    2016-01-02 12:19:15
20753    13577    524    2015-12-05 16:54:53    2015-12-05 16:54:53
20754    15918    893    2015-11-10 22:11:08    2015-11-10 22:11:08
20755    11427    712    2016-02-16 12:12:34    2016-02-16 12:12:34
20756    19223    750    2015-07-26 05:14:18    2015-07-26 05:14:18
20757    16544    945    2015-06-21 19:14:30    2015-06-21 19:14:30
20758    11891    891    2015-06-15 06:47:33    2015-06-15 06:47:33
20759    16323    634    2015-10-27 10:05:17    2015-10-27 10:05:17
20760    14045    660    2016-01-10 16:34:18    2016-01-10 16:34:18
20761    13722    886    2015-09-20 00:27:47    2015-09-20 00:27:47
20762    19490    507    2015-08-30 21:37:30    2015-08-30 21:37:30
20763    14273    465    2016-03-03 23:54:18    2016-03-03 23:54:18
20764    14197    507    2015-12-06 14:50:33    2015-12-06 14:50:33
20765    10885    768    2015-07-29 10:32:11    2015-07-29 10:32:11
20766    11050    544    2015-06-30 09:41:15    2015-06-30 09:41:15
20767    12527    734    2016-01-24 18:30:43    2016-01-24 18:30:43
20768    18384    866    2016-04-17 06:01:13    2016-04-17 06:01:13
20769    17917    722    2015-12-16 12:39:12    2015-12-16 12:39:12
20770    10607    710    2015-12-15 11:55:50    2015-12-15 11:55:50
20771    14007    669    2015-10-30 06:15:35    2015-10-30 06:15:35
20772    18046    581    2016-04-07 03:46:38    2016-04-07 03:46:38
20773    17430    833    2016-02-01 02:33:06    2016-02-01 02:33:06
20774    19158    854    2015-10-01 02:48:06    2015-10-01 02:48:06
20775    12072    550    2015-05-27 08:42:03    2015-05-27 08:42:03
20776    18008    627    2016-02-06 10:50:51    2016-02-06 10:50:51
20777    14966    627    2015-12-29 18:08:45    2015-12-29 18:08:45
20778    17300    513    2016-03-13 05:36:03    2016-03-13 05:36:03
20779    14416    814    2015-10-29 04:45:35    2015-10-29 04:45:35
20780    14069    815    2016-03-05 16:31:58    2016-03-05 16:31:58
20781    18263    787    2016-01-26 12:38:17    2016-01-26 12:38:17
20782    17003    829    2015-11-08 16:32:01    2015-11-08 16:32:01
20783    10490    786    2015-07-07 18:54:27    2015-07-07 18:54:27
20784    16508    666    2016-01-21 10:21:26    2016-01-21 10:21:26
20785    12614    861    2015-07-04 08:01:40    2015-07-04 08:01:40
20786    14556    828    2016-01-23 01:10:15    2016-01-23 01:10:15
20787    10928    744    2015-05-28 03:55:15    2015-05-28 03:55:15
20788    16945    539    2016-03-09 10:59:40    2016-03-09 10:59:40
20789    13036    730    2015-12-20 10:37:26    2015-12-20 10:37:26
20790    17133    827    2015-07-25 00:13:49    2015-07-25 00:13:49
20791    14577    828    2015-07-31 11:57:58    2015-07-31 11:57:58
20792    16006    522    2016-04-18 14:26:08    2016-04-18 14:26:08
20793    16667    790    2015-05-10 02:28:09    2015-05-10 02:28:09
20794    11385    701    2015-11-01 11:15:35    2015-11-01 11:15:35
20795    19601    661    2015-12-01 14:42:19    2015-12-01 14:42:19
20796    16665    690    2016-03-01 21:46:48    2016-03-01 21:46:48
20797    10602    748    2015-08-22 17:49:07    2015-08-22 17:49:07
20798    15033    845    2015-05-28 20:16:45    2015-05-28 20:16:45
20799    10246    609    2015-12-19 17:34:14    2015-12-19 17:34:14
20800    14616    594    2015-10-13 18:30:17    2015-10-13 18:30:17
20801    11824    945    2015-06-04 04:08:31    2015-06-04 04:08:31
20802    15421    828    2015-08-29 09:57:43    2015-08-29 09:57:43
20803    10452    873    2015-05-12 12:54:25    2015-05-12 12:54:25
20804    11622    907    2015-09-26 02:59:28    2015-09-26 02:59:28
20805    16007    719    2015-04-25 17:35:57    2015-04-25 17:35:57
20806    16678    934    2015-06-09 13:11:47    2015-06-09 13:11:47
20807    12761    504    2015-12-07 23:10:24    2015-12-07 23:10:24
20808    12176    806    2015-12-24 21:34:09    2015-12-24 21:34:09
20809    18638    463    2016-01-10 20:49:47    2016-01-10 20:49:47
20810    14340    693    2015-10-18 05:26:42    2015-10-18 05:26:42
20811    15836    540    2015-05-24 10:52:16    2015-05-24 10:52:16
20812    18162    667    2015-07-15 02:28:46    2015-07-15 02:28:46
20813    16871    526    2015-12-28 19:16:41    2015-12-28 19:16:41
20814    16564    709    2015-10-29 08:16:24    2015-10-29 08:16:24
20815    19447    628    2015-12-05 10:28:40    2015-12-05 10:28:40
20816    13405    939    2015-10-03 21:13:20    2015-10-03 21:13:20
20817    18150    951    2016-03-02 12:43:02    2016-03-02 12:43:02
20818    10414    918    2016-03-25 11:47:14    2016-03-25 11:47:14
20819    11132    683    2015-12-11 01:48:47    2015-12-11 01:48:47
20820    10062    838    2015-07-13 06:08:37    2015-07-13 06:08:37
20821    16667    780    2015-10-23 05:15:02    2015-10-23 05:15:02
20822    10529    518    2015-10-31 20:12:55    2015-10-31 20:12:55
20823    10906    637    2016-01-13 02:42:02    2016-01-13 02:42:02
20824    11924    872    2015-12-04 11:10:39    2015-12-04 11:10:39
20825    18172    866    2016-01-15 04:49:48    2016-01-15 04:49:48
20826    18090    917    2015-11-28 15:22:51    2015-11-28 15:22:51
20827    17923    527    2015-10-12 14:52:34    2015-10-12 14:52:34
20828    15610    463    2015-11-10 03:43:31    2015-11-10 03:43:31
20829    11902    942    2016-04-11 23:13:14    2016-04-11 23:13:14
20830    17356    495    2015-06-11 18:10:14    2015-06-11 18:10:14
20831    12470    782    2015-12-10 12:56:20    2015-12-10 12:56:20
20832    17231    892    2016-03-31 16:49:00    2016-03-31 16:49:00
20833    16110    759    2015-04-25 15:57:52    2015-04-25 15:57:52
20834    11072    854    2015-12-02 15:01:42    2015-12-02 15:01:42
20835    10327    770    2015-12-23 00:44:40    2015-12-23 00:44:40
20836    18391    835    2016-03-28 02:39:31    2016-03-28 02:39:31
20837    16646    877    2015-07-02 06:36:33    2015-07-02 06:36:33
20838    13013    733    2015-07-16 12:38:51    2015-07-16 12:38:51
20839    13408    788    2015-10-12 18:50:11    2015-10-12 18:50:11
20840    17077    534    2016-04-02 06:29:55    2016-04-02 06:29:55
20841    10492    916    2016-01-10 08:44:45    2016-01-10 08:44:45
20842    10794    673    2016-03-24 16:59:35    2016-03-24 16:59:35
20843    13558    647    2015-12-17 22:08:57    2015-12-17 22:08:57
20844    13334    855    2015-09-27 04:12:48    2015-09-27 04:12:48
20845    13111    518    2016-04-20 07:46:39    2016-04-20 07:46:39
20846    19626    951    2015-06-07 03:04:58    2015-06-07 03:04:58
20847    17510    615    2016-01-31 03:27:21    2016-01-31 03:27:21
20848    16248    786    2015-09-24 16:54:15    2015-09-24 16:54:15
20849    12821    705    2015-09-25 04:35:07    2015-09-25 04:35:07
20850    11799    948    2016-01-23 23:48:01    2016-01-23 23:48:01
20851    16182    735    2015-11-16 18:05:21    2015-11-16 18:05:21
20852    11536    601    2016-03-11 13:10:11    2016-03-11 13:10:11
20853    17202    890    2015-11-01 18:08:28    2015-11-01 18:08:28
20854    16542    932    2015-11-14 05:24:54    2015-11-14 05:24:54
20855    14477    658    2016-03-31 20:25:09    2016-03-31 20:25:09
20856    14536    734    2015-08-02 16:26:14    2015-08-02 16:26:14
20857    10704    598    2015-08-30 04:46:30    2015-08-30 04:46:30
20858    18477    799    2016-01-19 22:22:06    2016-01-19 22:22:06
20859    13506    659    2016-01-24 07:28:42    2016-01-24 07:28:42
20860    17853    899    2015-07-18 18:44:02    2015-07-18 18:44:02
20861    19987    553    2015-05-28 09:11:30    2015-05-28 09:11:30
20862    19031    808    2016-04-04 04:53:17    2016-04-04 04:53:17
20863    15270    814    2016-01-13 08:50:52    2016-01-13 08:50:52
20864    19828    494    2015-05-14 00:10:03    2015-05-14 00:10:03
20865    18263    645    2015-06-15 12:00:41    2015-06-15 12:00:41
20866    13636    742    2015-05-09 04:55:57    2015-05-09 04:55:57
20867    15285    770    2015-11-24 07:22:53    2015-11-24 07:22:53
20868    11921    902    2016-03-26 18:52:55    2016-03-26 18:52:55
20869    13139    751    2016-04-16 20:49:59    2016-04-16 20:49:59
20870    10531    536    2015-05-12 11:09:20    2015-05-12 11:09:20
20871    15908    908    2015-06-11 07:50:45    2015-06-11 07:50:45
20872    16177    706    2015-08-14 05:40:48    2015-08-14 05:40:48
20873    19153    558    2016-01-01 12:02:45    2016-01-01 12:02:45
20874    12999    499    2015-10-03 01:39:37    2015-10-03 01:39:37
20875    11859    891    2015-07-27 18:38:58    2015-07-27 18:38:58
20876    15567    745    2015-05-22 02:33:13    2015-05-22 02:33:13
20877    18887    546    2015-11-07 19:25:18    2015-11-07 19:25:18
20878    13213    920    2016-03-07 10:24:21    2016-03-07 10:24:21
20879    13804    751    2015-06-27 00:06:44    2015-06-27 00:06:44
20880    16813    562    2015-08-24 08:21:57    2015-08-24 08:21:57
20881    17772    925    2015-10-25 04:04:29    2015-10-25 04:04:29
20882    11029    641    2015-10-04 18:56:45    2015-10-04 18:56:45
20883    16791    551    2016-04-20 06:01:31    2016-04-20 06:01:31
20884    16839    563    2015-11-06 15:29:13    2015-11-06 15:29:13
20885    14339    607    2015-04-27 05:22:18    2015-04-27 05:22:18
20886    10359    642    2015-11-17 00:21:42    2015-11-17 00:21:42
20887    10474    841    2016-04-08 13:56:35    2016-04-08 13:56:35
20888    13768    547    2016-03-28 20:30:47    2016-03-28 20:30:47
20889    18030    538    2015-12-20 08:58:32    2015-12-20 08:58:32
20890    16670    872    2015-11-11 18:39:56    2015-11-11 18:39:56
20891    17782    650    2015-06-14 18:36:55    2015-06-14 18:36:55
20892    16333    595    2015-07-23 08:07:18    2015-07-23 08:07:18
20893    16636    821    2015-09-10 15:32:33    2015-09-10 15:32:33
20894    12804    804    2015-05-20 13:54:55    2015-05-20 13:54:55
20895    12416    668    2016-02-04 16:14:13    2016-02-04 16:14:13
20896    16216    509    2016-04-13 02:19:00    2016-04-13 02:19:00
20897    15799    696    2015-08-26 06:39:10    2015-08-26 06:39:10
20898    12702    949    2015-08-05 02:08:13    2015-08-05 02:08:13
20899    10099    954    2015-07-27 16:47:43    2015-07-27 16:47:43
20900    13668    713    2016-03-24 04:59:12    2016-03-24 04:59:12
20901    14734    829    2016-03-21 04:12:58    2016-03-21 04:12:58
20902    18626    504    2015-08-21 02:58:02    2015-08-21 02:58:02
20903    17177    877    2015-08-19 11:41:55    2015-08-19 11:41:55
20904    15458    553    2016-02-06 19:30:32    2016-02-06 19:30:32
20905    17590    607    2015-09-30 09:56:25    2015-09-30 09:56:25
20906    14332    610    2015-10-12 22:50:00    2015-10-12 22:50:00
20907    19579    521    2016-01-30 10:27:24    2016-01-30 10:27:24
20908    18830    699    2015-10-18 18:32:13    2015-10-18 18:32:13
20909    19504    859    2015-05-19 09:25:49    2015-05-19 09:25:49
20910    17322    924    2015-07-21 09:06:23    2015-07-21 09:06:23
20911    16672    550    2016-01-02 17:43:40    2016-01-02 17:43:40
20912    13547    918    2015-05-07 00:54:57    2015-05-07 00:54:57
20913    11075    941    2015-12-15 03:07:42    2015-12-15 03:07:42
20914    14610    870    2015-04-25 04:29:27    2015-04-25 04:29:27
20915    18952    509    2015-07-20 14:01:35    2015-07-20 14:01:35
20916    13097    811    2016-02-03 17:25:29    2016-02-03 17:25:29
20917    12358    791    2016-04-13 12:53:26    2016-04-13 12:53:26
20918    18072    791    2015-10-05 19:07:15    2015-10-05 19:07:15
20919    15679    783    2015-12-23 01:33:04    2015-12-23 01:33:04
20920    14608    766    2015-10-18 04:28:26    2015-10-18 04:28:26
20921    19582    912    2015-05-25 04:48:09    2015-05-25 04:48:09
20922    12788    543    2015-04-29 13:04:40    2015-04-29 13:04:40
20923    17526    529    2015-12-04 04:11:47    2015-12-04 04:11:47
20924    13276    721    2015-07-26 08:05:16    2015-07-26 08:05:16
20925    12194    856    2015-12-13 11:34:56    2015-12-13 11:34:56
20926    18465    639    2016-01-21 19:42:25    2016-01-21 19:42:25
20927    19874    590    2015-09-18 13:02:42    2015-09-18 13:02:42
20928    10494    824    2015-11-04 20:09:31    2015-11-04 20:09:31
20929    15896    954    2015-06-27 16:02:34    2015-06-27 16:02:34
20930    12972    525    2015-10-11 10:01:26    2015-10-11 10:01:26
20931    15465    499    2016-02-09 03:31:49    2016-02-09 03:31:49
20932    13686    937    2015-06-10 04:55:21    2015-06-10 04:55:21
20933    10731    897    2015-10-07 22:54:08    2015-10-07 22:54:08
20934    19258    945    2015-04-24 05:50:38    2015-04-24 05:50:38
20935    11443    689    2016-03-17 21:08:50    2016-03-17 21:08:50
20936    14016    835    2015-09-28 11:30:02    2015-09-28 11:30:02
20937    14872    491    2015-10-25 08:29:09    2015-10-25 08:29:09
20938    15318    518    2015-12-13 10:14:59    2015-12-13 10:14:59
20939    15025    805    2015-09-18 08:47:33    2015-09-18 08:47:33
20940    17649    709    2015-08-20 14:06:08    2015-08-20 14:06:08
20941    10530    736    2015-07-11 05:36:38    2015-07-11 05:36:38
20942    12627    697    2015-09-26 01:14:25    2015-09-26 01:14:25
20943    19056    543    2015-11-11 13:46:47    2015-11-11 13:46:47
20944    17707    514    2015-06-07 05:32:06    2015-06-07 05:32:06
20945    14370    690    2016-04-10 17:41:15    2016-04-10 17:41:15
20946    17131    785    2015-11-19 20:42:00    2015-11-19 20:42:00
20947    17947    808    2015-12-18 22:10:41    2015-12-18 22:10:41
20948    12733    569    2015-12-08 08:19:39    2015-12-08 08:19:39
20949    16307    927    2015-05-25 00:46:45    2015-05-25 00:46:45
20950    19147    934    2016-02-19 04:23:03    2016-02-19 04:23:03
20951    18041    500    2015-12-31 16:19:13    2015-12-31 16:19:13
20952    11654    729    2015-05-02 11:15:15    2015-05-02 11:15:15
20953    19869    949    2015-05-11 12:05:57    2015-05-11 12:05:57
20954    19587    538    2016-02-23 08:47:11    2016-02-23 08:47:11
20955    11238    725    2016-02-02 00:53:48    2016-02-02 00:53:48
20956    16885    800    2015-04-28 14:52:48    2015-04-28 14:52:48
20957    10403    715    2015-06-06 17:18:12    2015-06-06 17:18:12
20958    15766    937    2016-03-19 08:33:33    2016-03-19 08:33:33
20959    13688    525    2015-08-23 00:31:27    2015-08-23 00:31:27
20960    10228    715    2015-10-11 11:07:40    2015-10-11 11:07:40
20961    17610    897    2015-09-11 07:43:29    2015-09-11 07:43:29
20962    15250    590    2015-04-24 23:21:35    2015-04-24 23:21:35
20963    17527    609    2016-04-03 23:38:36    2016-04-03 23:38:36
20964    18371    598    2016-02-20 00:33:28    2016-02-20 00:33:28
20965    12022    601    2016-02-15 08:03:21    2016-02-15 08:03:21
20966    15868    865    2015-11-10 00:22:16    2015-11-10 00:22:16
20967    19371    785    2016-03-12 21:50:22    2016-03-12 21:50:22
20968    14061    563    2015-07-06 17:33:18    2015-07-06 17:33:18
20969    10508    564    2015-08-05 03:49:13    2015-08-05 03:49:13
20970    18418    681    2016-03-16 07:14:10    2016-03-16 07:14:10
20971    15702    487    2015-08-20 17:35:17    2015-08-20 17:35:17
20972    12583    718    2015-10-21 01:31:14    2015-10-21 01:31:14
20973    18460    928    2015-09-13 08:25:31    2015-09-13 08:25:31
20974    12329    786    2015-12-28 08:25:11    2015-12-28 08:25:11
20975    18256    619    2016-02-01 20:43:22    2016-02-01 20:43:22
20976    17100    600    2015-09-26 12:15:17    2015-09-26 12:15:17
20977    14796    794    2016-03-26 22:01:35    2016-03-26 22:01:35
20978    17846    794    2016-02-14 23:45:20    2016-02-14 23:45:20
20979    10736    702    2015-05-06 17:07:47    2015-05-06 17:07:47
20980    17709    799    2015-09-01 12:21:49    2015-09-01 12:21:49
20981    15121    699    2015-08-10 04:28:33    2015-08-10 04:28:33
20982    16525    488    2015-06-03 13:07:39    2015-06-03 13:07:39
20983    15923    934    2015-07-15 12:48:24    2015-07-15 12:48:24
20984    10534    668    2015-10-23 13:54:49    2015-10-23 13:54:49
20985    12960    595    2016-01-25 22:31:04    2016-01-25 22:31:04
20986    14168    584    2015-05-16 02:43:40    2015-05-16 02:43:40
20987    19838    953    2015-12-01 19:05:33    2015-12-01 19:05:33
20988    14526    679    2015-07-11 13:41:35    2015-07-11 13:41:35
20989    17250    551    2016-02-03 12:07:47    2016-02-03 12:07:47
20990    12531    827    2016-03-19 00:42:56    2016-03-19 00:42:56
20991    12591    485    2015-05-27 10:44:59    2015-05-27 10:44:59
20992    16138    876    2015-07-01 04:04:50    2015-07-01 04:04:50
20993    11577    742    2015-10-18 01:53:22    2015-10-18 01:53:22
20994    16910    764    2015-08-24 17:17:56    2015-08-24 17:17:56
20995    17713    808    2015-05-06 09:55:32    2015-05-06 09:55:32
20996    13403    661    2016-03-23 09:24:44    2016-03-23 09:24:44
20997    17737    902    2016-02-26 02:15:04    2016-02-26 02:15:04
20998    17367    713    2015-05-12 08:13:00    2015-05-12 08:13:00
20999    13571    545    2015-07-20 03:02:53    2015-07-20 03:02:53
21000    14220    615    2015-09-03 21:48:50    2015-09-03 21:48:50
21001    17877    827    2015-12-26 07:05:26    2015-12-26 07:05:26
21002    13826    938    2015-07-19 21:22:59    2015-07-19 21:22:59
21003    14197    725    2016-04-06 21:48:57    2016-04-06 21:48:57
21004    16576    771    2015-08-02 20:11:43    2015-08-02 20:11:43
21005    11821    928    2015-08-28 16:29:46    2015-08-28 16:29:46
21006    13096    576    2016-02-23 01:20:57    2016-02-23 01:20:57
21007    10102    645    2015-07-24 11:14:29    2015-07-24 11:14:29
21008    15255    891    2015-11-01 20:40:46    2015-11-01 20:40:46
21009    15073    573    2015-08-07 19:11:42    2015-08-07 19:11:42
21010    18173    551    2016-02-27 21:40:00    2016-02-27 21:40:00
21011    12228    864    2016-03-09 10:57:31    2016-03-09 10:57:31
21012    19167    771    2015-06-14 00:47:59    2015-06-14 00:47:59
21013    17953    872    2016-01-31 18:40:10    2016-01-31 18:40:10
21014    10457    506    2015-06-03 13:55:06    2015-06-03 13:55:06
21015    14330    587    2015-08-15 08:21:28    2015-08-15 08:21:28
21016    14989    616    2015-07-31 13:11:13    2015-07-31 13:11:13
21017    18583    558    2015-10-06 09:19:57    2015-10-06 09:19:57
21018    17189    667    2015-05-01 02:24:59    2015-05-01 02:24:59
21019    12517    910    2016-03-02 21:43:53    2016-03-02 21:43:53
21020    15650    711    2016-01-15 16:16:43    2016-01-15 16:16:43
21021    19671    843    2015-08-26 03:12:31    2015-08-26 03:12:31
21022    11727    701    2015-09-24 19:35:39    2015-09-24 19:35:39
21023    12140    701    2015-12-02 21:44:37    2015-12-02 21:44:37
21024    13779    922    2016-02-25 18:17:52    2016-02-25 18:17:52
21025    13352    941    2016-01-13 13:04:52    2016-01-13 13:04:52
21026    17735    783    2015-10-02 02:32:26    2015-10-02 02:32:26
21027    16774    874    2015-06-15 03:52:15    2015-06-15 03:52:15
21028    17145    788    2016-02-07 21:34:22    2016-02-07 21:34:22
21029    19472    792    2016-02-25 07:39:06    2016-02-25 07:39:06
21030    19667    466    2015-10-26 01:30:16    2015-10-26 01:30:16
21031    15667    605    2015-05-23 06:06:08    2015-05-23 06:06:08
21032    18776    915    2015-11-13 08:47:42    2015-11-13 08:47:42
21033    10513    741    2015-05-08 04:41:29    2015-05-08 04:41:29
21034    14363    880    2015-09-29 07:25:02    2015-09-29 07:25:02
21035    10051    584    2015-11-19 14:12:02    2015-11-19 14:12:02
21036    10214    818    2015-07-18 23:51:38    2015-07-18 23:51:38
21037    16994    908    2015-06-29 17:32:53    2015-06-29 17:32:53
21038    19688    761    2015-06-01 21:27:00    2015-06-01 21:27:00
21039    19339    895    2015-04-29 15:37:13    2015-04-29 15:37:13
21040    12041    505    2015-07-21 15:09:47    2015-07-21 15:09:47
21041    15558    875    2015-09-02 17:49:06    2015-09-02 17:49:06
21042    15035    524    2016-03-20 10:59:45    2016-03-20 10:59:45
21043    16080    566    2015-11-23 14:49:34    2015-11-23 14:49:34
21044    19164    675    2015-06-27 08:53:10    2015-06-27 08:53:10
21045    13618    916    2015-06-02 05:55:05    2015-06-02 05:55:05
21046    15331    666    2015-12-16 08:48:48    2015-12-16 08:48:48
21047    17680    661    2015-04-21 23:54:37    2015-04-21 23:54:37
21048    17379    577    2015-12-07 17:45:18    2015-12-07 17:45:18
21049    16099    608    2016-03-12 16:04:50    2016-03-12 16:04:50
21050    13974    880    2015-09-02 12:05:55    2015-09-02 12:05:55
21051    16797    929    2015-05-21 11:55:22    2015-05-21 11:55:22
21052    18091    701    2015-06-28 20:20:32    2015-06-28 20:20:32
21053    15663    549    2015-07-03 16:10:40    2015-07-03 16:10:40
21054    12892    958    2015-04-28 00:19:20    2015-04-28 00:19:20
21055    11814    587    2015-10-27 14:25:40    2015-10-27 14:25:40
21056    16392    945    2015-10-15 16:44:46    2015-10-15 16:44:46
21057    16355    696    2016-02-28 01:54:23    2016-02-28 01:54:23
21058    11074    573    2015-05-07 06:30:44    2015-05-07 06:30:44
21059    15642    640    2015-06-30 20:08:09    2015-06-30 20:08:09
21060    13865    901    2015-11-23 20:50:01    2015-11-23 20:50:01
21061    13630    769    2016-03-09 18:03:26    2016-03-09 18:03:26
21062    19098    883    2016-02-16 18:22:56    2016-02-16 18:22:56
21063    16434    771    2015-06-10 06:16:47    2015-06-10 06:16:47
21064    12715    704    2015-12-07 13:00:08    2015-12-07 13:00:08
21065    11314    617    2016-03-04 10:27:35    2016-03-04 10:27:35
21066    17750    845    2016-04-10 06:01:15    2016-04-10 06:01:15
21067    11374    848    2016-01-17 22:30:22    2016-01-17 22:30:22
21068    10974    749    2015-12-19 04:37:53    2015-12-19 04:37:53
21069    11840    757    2015-11-26 13:31:05    2015-11-26 13:31:05
21070    14701    610    2016-02-07 20:30:12    2016-02-07 20:30:12
21071    11113    810    2015-12-13 12:03:28    2015-12-13 12:03:28
21072    19531    539    2015-05-15 13:27:33    2015-05-15 13:27:33
21073    18888    943    2015-07-25 16:46:20    2015-07-25 16:46:20
21074    13508    511    2016-02-23 08:55:28    2016-02-23 08:55:28
21075    19396    772    2016-01-27 23:45:17    2016-01-27 23:45:17
21076    13946    753    2015-07-15 22:21:23    2015-07-15 22:21:23
21077    12866    493    2015-11-26 05:24:16    2015-11-26 05:24:16
21078    17344    477    2015-04-28 02:35:11    2015-04-28 02:35:11
21079    18118    886    2015-11-24 10:23:30    2015-11-24 10:23:30
21080    10978    774    2016-01-24 06:40:41    2016-01-24 06:40:41
21081    13568    671    2015-06-21 11:00:55    2015-06-21 11:00:55
21082    16166    882    2016-03-04 12:28:37    2016-03-04 12:28:37
21083    16359    524    2016-01-11 16:18:54    2016-01-11 16:18:54
21084    15955    942    2015-09-05 11:04:44    2015-09-05 11:04:44
21085    10448    651    2015-10-13 04:35:12    2015-10-13 04:35:12
21086    19195    507    2015-08-19 10:54:56    2015-08-19 10:54:56
21087    11964    855    2015-11-04 09:14:19    2015-11-04 09:14:19
21088    10948    587    2015-07-11 13:27:03    2015-07-11 13:27:03
21089    15062    711    2015-10-02 08:20:08    2015-10-02 08:20:08
21090    10152    644    2016-04-09 09:23:29    2016-04-09 09:23:29
21091    15036    841    2015-07-11 15:28:20    2015-07-11 15:28:20
21092    17849    590    2016-02-17 12:30:55    2016-02-17 12:30:55
21093    16662    513    2015-07-16 23:41:20    2015-07-16 23:41:20
21094    17029    468    2016-01-11 02:02:20    2016-01-11 02:02:20
21095    18912    818    2015-06-17 03:33:57    2015-06-17 03:33:57
21096    13742    790    2015-08-18 03:56:59    2015-08-18 03:56:59
21097    11778    595    2015-08-03 07:56:02    2015-08-03 07:56:02
21098    15639    494    2016-01-07 03:13:20    2016-01-07 03:13:20
21099    16277    712    2016-03-05 14:56:46    2016-03-05 14:56:46
21100    14851    796    2015-12-05 00:30:17    2015-12-05 00:30:17
21101    11630    523    2015-07-18 03:01:23    2015-07-18 03:01:23
21102    11586    734    2015-09-22 00:17:52    2015-09-22 00:17:52
21103    19489    664    2015-07-13 23:16:20    2015-07-13 23:16:20
21104    11615    543    2015-09-13 13:08:06    2015-09-13 13:08:06
21105    16353    473    2015-06-18 13:35:38    2015-06-18 13:35:38
21106    18211    840    2016-02-18 23:30:09    2016-02-18 23:30:09
21107    12488    879    2016-02-04 19:03:45    2016-02-04 19:03:45
21108    17678    760    2015-10-24 01:20:29    2015-10-24 01:20:29
21109    15626    787    2015-11-28 13:21:21    2015-11-28 13:21:21
21110    12240    770    2015-11-15 23:50:18    2015-11-15 23:50:18
21111    19222    550    2015-11-11 09:58:56    2015-11-11 09:58:56
21112    10687    716    2016-01-21 10:55:37    2016-01-21 10:55:37
21113    11952    564    2016-03-31 05:01:29    2016-03-31 05:01:29
21114    19065    921    2015-09-06 07:45:59    2015-09-06 07:45:59
21115    11177    807    2016-01-10 11:41:50    2016-01-10 11:41:50
21116    16817    660    2015-06-22 17:29:02    2015-06-22 17:29:02
21117    10016    644    2015-10-05 19:38:03    2015-10-05 19:38:03
21118    18391    672    2016-03-05 12:16:39    2016-03-05 12:16:39
21119    16490    567    2015-10-23 05:12:55    2015-10-23 05:12:55
21120    14745    591    2016-02-09 11:52:10    2016-02-09 11:52:10
21121    14677    814    2015-11-10 05:39:29    2015-11-10 05:39:29
21122    16380    819    2015-07-04 00:24:21    2015-07-04 00:24:21
21123    14405    610    2016-02-25 19:35:28    2016-02-25 19:35:28
21124    19534    865    2015-06-30 19:16:14    2015-06-30 19:16:14
21125    19974    729    2015-11-13 05:17:54    2015-11-13 05:17:54
21126    17302    772    2015-08-22 03:18:07    2015-08-22 03:18:07
21127    18490    561    2015-05-12 20:42:14    2015-05-12 20:42:14
21128    11640    635    2015-10-19 05:07:37    2015-10-19 05:07:37
21129    18083    509    2016-04-08 00:03:08    2016-04-08 00:03:08
21130    16500    485    2015-08-14 07:26:20    2015-08-14 07:26:20
21131    10276    834    2016-01-11 01:41:09    2016-01-11 01:41:09
21132    11993    910    2015-11-29 09:09:31    2015-11-29 09:09:31
21133    19788    788    2015-06-01 14:13:37    2015-06-01 14:13:37
21134    11370    711    2016-02-22 16:41:46    2016-02-22 16:41:46
21135    19124    831    2015-05-26 10:57:55    2015-05-26 10:57:55
21136    11792    664    2016-04-11 13:25:36    2016-04-11 13:25:36
21137    16516    556    2015-06-28 06:53:27    2015-06-28 06:53:27
21138    14084    760    2016-01-17 06:57:25    2016-01-17 06:57:25
21139    18440    503    2015-09-02 16:43:59    2015-09-02 16:43:59
21140    14851    785    2015-12-22 13:57:44    2015-12-22 13:57:44
21141    17544    723    2015-12-23 09:18:01    2015-12-23 09:18:01
21142    11030    862    2015-11-06 21:29:47    2015-11-06 21:29:47
21143    16512    927    2015-11-07 17:14:16    2015-11-07 17:14:16
21144    11253    675    2015-12-13 00:33:44    2015-12-13 00:33:44
21145    10821    772    2016-03-20 07:57:20    2016-03-20 07:57:20
21146    12260    722    2015-04-24 18:20:32    2015-04-24 18:20:32
21147    13446    691    2016-02-10 07:19:30    2016-02-10 07:19:30
21148    10213    680    2015-12-15 21:48:36    2015-12-15 21:48:36
21149    17233    542    2015-09-03 17:12:19    2015-09-03 17:12:19
21150    14127    799    2015-12-19 14:40:27    2015-12-19 14:40:27
21151    15372    679    2015-09-04 00:02:08    2015-09-04 00:02:08
21152    19378    840    2016-03-29 03:00:20    2016-03-29 03:00:20
21153    16622    793    2016-04-19 15:18:09    2016-04-19 15:18:09
21154    18431    626    2015-11-03 10:28:06    2015-11-03 10:28:06
21155    17066    474    2015-05-01 04:50:54    2015-05-01 04:50:54
21156    12712    638    2015-07-21 17:53:34    2015-07-21 17:53:34
21157    18898    663    2015-05-02 17:27:10    2015-05-02 17:27:10
21158    14663    705    2015-10-27 08:54:32    2015-10-27 08:54:32
21159    19688    780    2016-01-22 04:20:45    2016-01-22 04:20:45
21160    10396    945    2015-05-29 16:18:02    2015-05-29 16:18:02
21161    10285    477    2015-11-24 03:55:00    2015-11-24 03:55:00
21162    11305    940    2015-07-04 05:02:01    2015-07-04 05:02:01
21163    15761    840    2015-07-10 08:29:04    2015-07-10 08:29:04
21164    12944    908    2016-01-26 13:20:30    2016-01-26 13:20:30
21165    18418    806    2016-03-26 00:12:43    2016-03-26 00:12:43
21166    16720    760    2016-03-27 17:17:35    2016-03-27 17:17:35
21167    15247    828    2016-01-13 18:23:33    2016-01-13 18:23:33
21168    13975    480    2016-03-24 15:37:02    2016-03-24 15:37:02
21169    11595    669    2015-08-30 02:16:39    2015-08-30 02:16:39
21170    11562    563    2016-03-31 01:58:42    2016-03-31 01:58:42
21171    14371    808    2015-10-02 05:40:33    2015-10-02 05:40:33
21172    10604    838    2015-12-12 18:25:37    2015-12-12 18:25:37
21173    14061    644    2015-08-16 12:22:28    2015-08-16 12:22:28
21174    10329    671    2015-12-30 04:27:37    2015-12-30 04:27:37
21175    11171    833    2015-12-27 18:59:10    2015-12-27 18:59:10
21176    18247    862    2015-11-10 12:22:32    2015-11-10 12:22:32
21177    13618    600    2015-09-19 06:41:23    2015-09-19 06:41:23
21178    18614    641    2015-12-24 14:13:03    2015-12-24 14:13:03
21179    14669    836    2015-07-12 07:06:21    2015-07-12 07:06:21
21180    10284    535    2015-10-21 01:17:52    2015-10-21 01:17:52
21181    12296    526    2016-02-29 19:03:16    2016-02-29 19:03:16
21182    14894    931    2015-08-08 07:23:58    2015-08-08 07:23:58
21183    16727    768    2015-10-30 03:15:47    2015-10-30 03:15:47
21184    15380    859    2016-03-04 20:09:20    2016-03-04 20:09:20
21185    13834    509    2015-05-24 05:38:05    2015-05-24 05:38:05
21186    15280    592    2015-05-12 06:57:43    2015-05-12 06:57:43
21187    11763    763    2015-11-17 13:22:42    2015-11-17 13:22:42
21188    19731    729    2015-12-11 03:44:17    2015-12-11 03:44:17
21189    16037    610    2015-04-22 02:03:04    2015-04-22 02:03:04
21190    11808    913    2016-01-03 10:44:52    2016-01-03 10:44:52
21191    11709    619    2015-06-20 11:07:22    2015-06-20 11:07:22
21192    12789    703    2015-05-21 13:50:52    2015-05-21 13:50:52
21193    17071    865    2015-06-10 12:36:18    2015-06-10 12:36:18
21194    11279    643    2015-10-18 17:24:24    2015-10-18 17:24:24
21195    11043    713    2015-11-22 01:26:05    2015-11-22 01:26:05
21196    19556    695    2015-09-25 18:52:16    2015-09-25 18:52:16
21197    16549    782    2016-03-20 07:55:56    2016-03-20 07:55:56
21198    13944    513    2016-04-08 08:31:17    2016-04-08 08:31:17
21199    16974    824    2016-02-02 02:41:11    2016-02-02 02:41:11
21200    10414    543    2015-12-26 17:49:42    2015-12-26 17:49:42
21201    11557    614    2015-10-03 10:58:23    2015-10-03 10:58:23
21202    13495    679    2015-12-02 03:40:12    2015-12-02 03:40:12
21203    17697    470    2016-01-16 16:16:04    2016-01-16 16:16:04
21204    18449    815    2015-11-01 11:42:30    2015-11-01 11:42:30
21205    11328    872    2015-07-05 17:06:50    2015-07-05 17:06:50
21206    19736    601    2015-08-22 09:25:18    2015-08-22 09:25:18
21207    12030    560    2016-01-02 14:20:40    2016-01-02 14:20:40
21208    16823    542    2016-02-08 13:17:36    2016-02-08 13:17:36
21209    14947    574    2015-12-14 09:58:02    2015-12-14 09:58:02
21210    15349    949    2016-03-21 19:04:55    2016-03-21 19:04:55
21211    10307    802    2016-04-14 04:43:45    2016-04-14 04:43:45
21212    15863    724    2015-09-14 15:01:31    2015-09-14 15:01:31
21213    11431    506    2015-12-19 18:37:07    2015-12-19 18:37:07
21214    18853    585    2016-04-15 00:00:02    2016-04-15 00:00:02
21215    14225    957    2016-03-12 04:24:31    2016-03-12 04:24:31
21216    15892    474    2016-03-05 13:21:51    2016-03-05 13:21:51
21217    10515    661    2015-06-15 18:34:09    2015-06-15 18:34:09
21218    11836    917    2015-12-28 19:15:35    2015-12-28 19:15:35
21219    11883    934    2015-12-16 03:22:07    2015-12-16 03:22:07
21220    16173    719    2016-03-31 20:40:18    2016-03-31 20:40:18
21221    12747    856    2016-04-14 04:48:57    2016-04-14 04:48:57
21222    16920    746    2015-11-09 12:07:26    2015-11-09 12:07:26
21223    16545    826    2016-02-25 15:40:20    2016-02-25 15:40:20
21224    12532    893    2016-03-02 11:27:02    2016-03-02 11:27:02
21225    16550    940    2016-02-02 09:24:20    2016-02-02 09:24:20
21226    18721    821    2015-12-17 14:34:41    2015-12-17 14:34:41
21227    16709    832    2015-05-11 11:36:49    2015-05-11 11:36:49
21228    15269    584    2015-09-01 02:45:14    2015-09-01 02:45:14
21229    10770    604    2016-03-11 13:22:55    2016-03-11 13:22:55
21230    19326    719    2016-04-04 08:56:37    2016-04-04 08:56:37
21231    17487    552    2015-05-22 06:55:02    2015-05-22 06:55:02
21232    18225    587    2015-06-07 03:11:08    2015-06-07 03:11:08
21233    14602    606    2016-04-11 12:40:28    2016-04-11 12:40:28
21234    19848    499    2015-08-08 08:40:35    2015-08-08 08:40:35
21235    12369    799    2015-11-26 04:21:24    2015-11-26 04:21:24
21236    16204    650    2015-12-31 20:31:21    2015-12-31 20:31:21
21237    18527    722    2015-05-17 01:53:41    2015-05-17 01:53:41
21238    14109    663    2015-07-15 09:30:11    2015-07-15 09:30:11
21239    18809    830    2015-07-16 20:50:52    2015-07-16 20:50:52
21240    15494    503    2015-04-28 20:28:03    2015-04-28 20:28:03
21241    17679    556    2016-03-06 03:48:51    2016-03-06 03:48:51
21242    19200    747    2016-03-07 07:59:49    2016-03-07 07:59:49
21243    16404    735    2016-03-14 09:58:49    2016-03-14 09:58:49
21244    11592    884    2015-06-17 16:37:51    2015-06-17 16:37:51
21245    13022    912    2016-04-19 20:26:42    2016-04-19 20:26:42
21246    10732    598    2015-07-10 07:12:45    2015-07-10 07:12:45
21247    14325    804    2016-02-18 07:09:57    2016-02-18 07:09:57
21248    11233    929    2015-07-30 16:35:50    2015-07-30 16:35:50
21249    17814    562    2015-08-25 20:44:19    2015-08-25 20:44:19
21250    16641    931    2015-12-14 15:00:58    2015-12-14 15:00:58
21251    13186    686    2016-03-26 06:37:22    2016-03-26 06:37:22
21252    10953    754    2015-10-07 22:19:15    2015-10-07 22:19:15
21253    13452    786    2015-08-12 12:38:56    2015-08-12 12:38:56
21254    13718    655    2015-06-11 03:26:28    2015-06-11 03:26:28
21255    12221    732    2015-06-25 19:12:11    2015-06-25 19:12:11
21256    18524    614    2016-04-10 21:42:40    2016-04-10 21:42:40
21257    17320    603    2015-08-01 16:05:29    2015-08-01 16:05:29
21258    19332    801    2016-04-08 20:30:35    2016-04-08 20:30:35
21259    15566    515    2015-08-03 09:14:14    2015-08-03 09:14:14
21260    10880    816    2015-12-19 18:37:06    2015-12-19 18:37:06
21261    14963    636    2016-01-28 03:37:25    2016-01-28 03:37:25
21262    18500    661    2015-06-01 18:55:57    2015-06-01 18:55:57
21263    13049    881    2015-10-07 13:41:23    2015-10-07 13:41:23
21264    16840    901    2015-07-24 13:40:09    2015-07-24 13:40:09
21265    13956    945    2016-01-28 05:38:41    2016-01-28 05:38:41
21266    11529    818    2015-07-11 22:16:12    2015-07-11 22:16:12
21267    18248    539    2015-05-06 13:05:20    2015-05-06 13:05:20
21268    17572    619    2015-10-04 08:16:45    2015-10-04 08:16:45
21269    12264    663    2015-07-05 01:06:27    2015-07-05 01:06:27
21270    16172    828    2016-01-01 10:45:00    2016-01-01 10:45:00
21271    16246    941    2015-08-21 17:34:21    2015-08-21 17:34:21
21272    19944    764    2015-05-04 22:35:15    2015-05-04 22:35:15
21273    14908    580    2015-07-14 23:41:12    2015-07-14 23:41:12
21274    12863    907    2015-07-15 10:16:49    2015-07-15 10:16:49
21275    16376    677    2015-11-30 05:52:06    2015-11-30 05:52:06
21276    17147    949    2016-03-23 02:48:49    2016-03-23 02:48:49
21277    14979    550    2015-11-29 08:21:57    2015-11-29 08:21:57
21278    17818    747    2015-06-18 07:55:09    2015-06-18 07:55:09
21279    13613    909    2015-10-07 14:11:05    2015-10-07 14:11:05
21280    19722    640    2015-09-21 11:54:37    2015-09-21 11:54:37
21281    17107    541    2015-05-23 20:25:55    2015-05-23 20:25:55
21282    16164    612    2016-03-27 14:29:17    2016-03-27 14:29:17
21283    10026    611    2015-09-06 07:40:09    2015-09-06 07:40:09
21284    19805    671    2016-02-01 01:24:04    2016-02-01 01:24:04
21285    17600    727    2015-07-20 23:32:22    2015-07-20 23:32:22
21286    15457    794    2015-08-10 18:13:15    2015-08-10 18:13:15
21287    14171    834    2015-07-26 23:12:59    2015-07-26 23:12:59
21288    10874    565    2016-02-28 03:37:57    2016-02-28 03:37:57
21289    16090    534    2015-10-01 21:48:29    2015-10-01 21:48:29
21290    13230    693    2015-12-08 15:43:41    2015-12-08 15:43:41
21291    15054    937    2015-07-11 03:20:44    2015-07-11 03:20:44
21292    17601    725    2016-01-18 00:28:59    2016-01-18 00:28:59
21293    10954    752    2015-09-02 08:01:56    2015-09-02 08:01:56
21294    19603    474    2015-09-18 12:58:08    2015-09-18 12:58:08
21295    15112    831    2015-12-17 16:20:26    2015-12-17 16:20:26
21296    15933    519    2016-04-10 23:35:14    2016-04-10 23:35:14
21297    10906    540    2015-10-13 08:00:36    2015-10-13 08:00:36
21298    11167    859    2015-05-15 17:14:09    2015-05-15 17:14:09
21299    10957    836    2016-02-15 17:15:43    2016-02-15 17:15:43
21300    17226    819    2015-08-28 20:18:46    2015-08-28 20:18:46
21301    19330    721    2016-03-07 02:21:46    2016-03-07 02:21:46
21302    19586    641    2016-03-05 03:25:54    2016-03-05 03:25:54
21303    18429    873    2016-03-12 10:22:59    2016-03-12 10:22:59
21304    15519    942    2015-04-24 01:56:47    2015-04-24 01:56:47
21305    10608    928    2015-05-13 08:19:40    2015-05-13 08:19:40
21306    16108    950    2016-02-12 16:15:05    2016-02-12 16:15:05
21307    16044    800    2015-04-29 21:42:39    2015-04-29 21:42:39
21308    15478    875    2015-05-29 23:49:40    2015-05-29 23:49:40
21309    15264    884    2015-09-30 12:26:22    2015-09-30 12:26:22
21310    17526    701    2015-06-13 14:01:05    2015-06-13 14:01:05
21311    10607    515    2015-07-21 06:33:26    2015-07-21 06:33:26
21312    16548    521    2015-05-10 22:46:47    2015-05-10 22:46:47
21313    16244    719    2016-01-12 04:57:15    2016-01-12 04:57:15
21314    11403    656    2015-08-10 02:23:29    2015-08-10 02:23:29
21315    11795    929    2015-07-14 19:15:56    2015-07-14 19:15:56
21316    10662    513    2016-03-30 18:29:52    2016-03-30 18:29:52
21317    14229    696    2016-01-01 13:11:49    2016-01-01 13:11:49
21318    19700    551    2015-07-28 06:46:29    2015-07-28 06:46:29
21319    13246    631    2016-01-26 21:18:37    2016-01-26 21:18:37
21320    17722    635    2016-02-05 23:20:41    2016-02-05 23:20:41
21321    12234    648    2016-02-13 16:53:01    2016-02-13 16:53:01
21322    16374    578    2016-03-08 01:46:28    2016-03-08 01:46:28
21323    15353    901    2016-01-30 13:36:43    2016-01-30 13:36:43
21324    12450    583    2015-08-06 17:09:13    2015-08-06 17:09:13
21325    18565    951    2015-05-19 12:31:05    2015-05-19 12:31:05
21326    17207    774    2015-11-13 08:48:23    2015-11-13 08:48:23
21327    10608    952    2016-01-02 09:03:08    2016-01-02 09:03:08
21328    15563    579    2016-02-12 06:51:50    2016-02-12 06:51:50
21329    13297    769    2015-07-23 10:57:03    2015-07-23 10:57:03
21330    12078    582    2016-03-12 02:04:45    2016-03-12 02:04:45
21331    17452    743    2016-02-26 02:06:02    2016-02-26 02:06:02
21332    18270    629    2016-04-05 21:41:36    2016-04-05 21:41:36
21333    14529    708    2015-10-10 20:35:17    2015-10-10 20:35:17
21334    11695    911    2015-09-02 14:19:31    2015-09-02 14:19:31
21335    18113    624    2016-03-15 20:44:54    2016-03-15 20:44:54
21336    17666    834    2015-11-09 12:17:48    2015-11-09 12:17:48
21337    15938    849    2015-09-25 05:48:02    2015-09-25 05:48:02
21338    12755    834    2015-09-19 20:25:50    2015-09-19 20:25:50
21339    17619    915    2016-04-16 17:27:54    2016-04-16 17:27:54
21340    11593    842    2016-03-07 09:13:32    2016-03-07 09:13:32
21341    18449    961    2016-03-27 23:15:41    2016-03-27 23:15:41
21342    14168    919    2015-10-08 09:48:38    2015-10-08 09:48:38
21343    14678    510    2015-05-05 03:03:17    2015-05-05 03:03:17
21344    18047    747    2015-12-23 07:36:29    2015-12-23 07:36:29
21345    17138    939    2015-10-03 14:50:55    2015-10-03 14:50:55
21346    18065    641    2015-11-03 06:42:54    2015-11-03 06:42:54
21347    13328    627    2016-03-14 06:14:42    2016-03-14 06:14:42
21348    18536    669    2015-10-11 16:17:24    2015-10-11 16:17:24
21349    10654    716    2015-07-31 06:39:35    2015-07-31 06:39:35
21350    19578    465    2015-09-10 19:31:48    2015-09-10 19:31:48
21351    19828    832    2016-04-08 22:52:39    2016-04-08 22:52:39
21352    19700    492    2015-09-19 05:27:13    2015-09-19 05:27:13
21353    16672    740    2015-07-17 05:55:35    2015-07-17 05:55:35
21354    16526    804    2016-02-02 21:07:59    2016-02-02 21:07:59
21355    17767    844    2016-02-29 08:18:30    2016-02-29 08:18:30
21356    10033    778    2015-12-28 18:06:14    2015-12-28 18:06:14
21357    15896    815    2015-10-22 01:56:44    2015-10-22 01:56:44
21358    18943    510    2016-01-14 13:29:18    2016-01-14 13:29:18
21359    18306    950    2015-07-24 17:12:26    2015-07-24 17:12:26
21360    10874    580    2015-08-22 18:04:17    2015-08-22 18:04:17
21361    10936    554    2015-08-27 16:34:38    2015-08-27 16:34:38
21362    14786    873    2015-09-16 01:58:27    2015-09-16 01:58:27
21363    12557    859    2015-10-31 07:15:24    2015-10-31 07:15:24
21364    15725    500    2015-12-04 03:25:15    2015-12-04 03:25:15
21365    17641    562    2015-12-30 11:08:32    2015-12-30 11:08:32
21366    19482    520    2016-04-02 09:08:23    2016-04-02 09:08:23
21367    18840    728    2016-02-25 15:45:22    2016-02-25 15:45:22
21368    18186    727    2015-08-21 05:13:00    2015-08-21 05:13:00
21369    13488    826    2015-08-18 14:57:09    2015-08-18 14:57:09
21370    14937    653    2015-12-15 21:16:27    2015-12-15 21:16:27
21371    10804    592    2015-06-16 23:26:23    2015-06-16 23:26:23
21372    17654    517    2015-10-18 12:10:12    2015-10-18 12:10:12
21373    17345    902    2016-04-11 11:08:57    2016-04-11 11:08:57
21374    13119    857    2016-01-22 08:33:05    2016-01-22 08:33:05
21375    13585    659    2016-03-10 20:03:23    2016-03-10 20:03:23
21376    15842    553    2015-06-25 01:02:01    2015-06-25 01:02:01
21377    13175    506    2015-12-26 19:21:57    2015-12-26 19:21:57
21378    10900    909    2015-07-23 19:29:14    2015-07-23 19:29:14
21379    19896    574    2015-12-30 09:15:17    2015-12-30 09:15:17
21380    18079    585    2016-03-29 02:22:04    2016-03-29 02:22:04
21381    18158    896    2015-12-03 04:17:31    2015-12-03 04:17:31
21382    15161    595    2016-03-05 14:12:18    2016-03-05 14:12:18
21383    19499    753    2015-08-18 04:48:54    2015-08-18 04:48:54
21384    13703    520    2016-01-14 03:39:10    2016-01-14 03:39:10
21385    12981    467    2015-08-17 04:54:19    2015-08-17 04:54:19
21386    14141    509    2015-08-05 03:50:21    2015-08-05 03:50:21
21387    13370    717    2015-08-07 05:39:31    2015-08-07 05:39:31
21388    12364    680    2015-11-26 07:33:14    2015-11-26 07:33:14
21389    13532    583    2015-09-05 19:09:21    2015-09-05 19:09:21
21390    15346    889    2015-09-18 00:33:59    2015-09-18 00:33:59
21391    12419    961    2016-01-06 10:40:40    2016-01-06 10:40:40
21392    11530    612    2015-10-15 07:49:50    2015-10-15 07:49:50
21393    16787    617    2015-07-25 00:12:28    2015-07-25 00:12:28
21394    10759    522    2015-07-12 05:28:43    2015-07-12 05:28:43
21395    17541    797    2016-01-11 16:34:05    2016-01-11 16:34:05
21396    10318    707    2015-06-28 16:14:15    2015-06-28 16:14:15
21397    15875    521    2015-06-03 12:08:44    2015-06-03 12:08:44
21398    16969    840    2015-11-14 22:00:56    2015-11-14 22:00:56
21399    14070    570    2016-04-18 04:29:52    2016-04-18 04:29:52
21400    14419    754    2015-07-15 06:28:28    2015-07-15 06:28:28
21401    15705    837    2015-10-14 20:40:17    2015-10-14 20:40:17
21402    10100    620    2015-10-10 18:22:34    2015-10-10 18:22:34
21403    15307    874    2016-03-18 09:46:20    2016-03-18 09:46:20
21404    13286    665    2015-10-18 03:39:25    2015-10-18 03:39:25
21405    17332    542    2015-06-11 14:58:04    2015-06-11 14:58:04
21406    11634    549    2015-09-14 23:51:19    2015-09-14 23:51:19
21407    10397    778    2015-11-17 06:05:12    2015-11-17 06:05:12
21408    15432    624    2016-03-31 10:57:57    2016-03-31 10:57:57
21409    10335    702    2015-12-14 03:10:37    2015-12-14 03:10:37
21410    16623    958    2015-10-05 17:31:59    2015-10-05 17:31:59
21411    10894    682    2015-05-11 15:40:38    2015-05-11 15:40:38
21412    16277    803    2015-12-08 01:22:45    2015-12-08 01:22:45
21413    19762    671    2015-10-23 12:10:10    2015-10-23 12:10:10
21414    12371    513    2016-02-27 04:55:30    2016-02-27 04:55:30
21415    14200    471    2015-05-18 03:16:19    2015-05-18 03:16:19
21416    16859    534    2016-03-22 07:29:29    2016-03-22 07:29:29
21417    10501    765    2015-09-23 23:39:52    2015-09-23 23:39:52
21418    19358    617    2015-09-28 13:27:06    2015-09-28 13:27:06
21419    13582    486    2015-12-16 04:36:37    2015-12-16 04:36:37
21420    12203    902    2015-12-17 14:14:40    2015-12-17 14:14:40
21421    14880    903    2015-12-23 02:55:55    2015-12-23 02:55:55
21422    11764    786    2015-08-01 21:36:48    2015-08-01 21:36:48
21423    17654    719    2016-01-25 07:42:30    2016-01-25 07:42:30
21424    12077    599    2015-09-17 05:00:19    2015-09-17 05:00:19
21425    14651    533    2016-02-06 18:27:33    2016-02-06 18:27:33
21426    11030    755    2015-09-24 01:04:59    2015-09-24 01:04:59
21427    19565    490    2015-04-25 15:03:25    2015-04-25 15:03:25
21428    13077    870    2015-08-19 19:26:26    2015-08-19 19:26:26
21429    10009    794    2015-10-22 15:16:07    2015-10-22 15:16:07
21430    18070    891    2015-11-26 15:37:43    2015-11-26 15:37:43
21431    14822    508    2015-11-23 04:19:59    2015-11-23 04:19:59
21432    10342    705    2016-03-24 06:53:55    2016-03-24 06:53:55
21433    16986    473    2015-07-20 19:52:52    2015-07-20 19:52:52
21434    12614    893    2015-05-02 14:32:01    2015-05-02 14:32:01
21435    16897    801    2015-05-20 13:07:37    2015-05-20 13:07:37
21436    18961    951    2015-11-22 02:37:46    2015-11-22 02:37:46
21437    19567    478    2015-08-16 09:36:48    2015-08-16 09:36:48
21438    12083    783    2016-01-05 21:31:16    2016-01-05 21:31:16
21439    14207    889    2016-03-25 07:24:53    2016-03-25 07:24:53
21440    19851    958    2016-04-03 20:40:10    2016-04-03 20:40:10
21441    12196    878    2015-12-07 18:03:20    2015-12-07 18:03:20
21442    13618    881    2015-12-17 05:02:14    2015-12-17 05:02:14
21443    15405    888    2016-03-06 03:51:58    2016-03-06 03:51:58
21444    14045    555    2016-02-19 16:32:18    2016-02-19 16:32:18
21445    15078    499    2015-06-16 21:11:08    2015-06-16 21:11:08
21446    18008    590    2015-11-19 12:11:39    2015-11-19 12:11:39
21447    10416    617    2016-04-09 04:22:58    2016-04-09 04:22:58
21448    10013    924    2015-08-12 00:39:31    2015-08-12 00:39:31
21449    10137    872    2016-01-26 12:34:14    2016-01-26 12:34:14
21450    19560    715    2015-06-24 01:25:58    2015-06-24 01:25:58
21451    14264    798    2015-08-10 18:34:34    2015-08-10 18:34:34
21452    18821    486    2015-07-22 08:04:23    2015-07-22 08:04:23
21453    12823    625    2015-06-21 12:04:50    2015-06-21 12:04:50
21454    19598    581    2016-03-25 18:15:49    2016-03-25 18:15:49
21455    19927    921    2015-10-31 11:07:58    2015-10-31 11:07:58
21456    11970    476    2015-08-03 10:36:00    2015-08-03 10:36:00
21457    10944    565    2016-04-09 21:44:32    2016-04-09 21:44:32
21458    18312    874    2016-03-25 15:29:10    2016-03-25 15:29:10
21459    12115    615    2016-01-03 23:10:48    2016-01-03 23:10:48
21460    15402    575    2015-10-15 07:43:40    2015-10-15 07:43:40
21461    11824    614    2016-03-09 11:08:12    2016-03-09 11:08:12
21462    19227    858    2015-07-22 10:25:44    2015-07-22 10:25:44
21463    14897    724    2016-02-27 02:58:11    2016-02-27 02:58:11
21464    11410    776    2015-08-27 07:18:08    2015-08-27 07:18:08
21465    13327    544    2016-03-29 10:38:22    2016-03-29 10:38:22
21466    17782    728    2015-07-22 18:17:28    2015-07-22 18:17:28
21467    12155    730    2016-01-01 22:57:47    2016-01-01 22:57:47
21468    12491    777    2015-04-22 07:45:46    2015-04-22 07:45:46
21469    12519    614    2015-10-13 23:35:18    2015-10-13 23:35:18
21470    17758    845    2015-11-25 21:15:24    2015-11-25 21:15:24
21471    18243    583    2016-02-26 23:44:23    2016-02-26 23:44:23
21472    13766    593    2015-05-15 07:11:18    2015-05-15 07:11:18
21473    10051    868    2016-02-12 09:30:39    2016-02-12 09:30:39
21474    17260    730    2016-02-21 11:49:25    2016-02-21 11:49:25
21475    12716    702    2015-07-14 10:11:39    2015-07-14 10:11:39
21476    15688    875    2015-12-10 18:16:45    2015-12-10 18:16:45
21477    18485    636    2015-06-24 06:03:25    2015-06-24 06:03:25
21478    18419    810    2015-06-20 01:09:04    2015-06-20 01:09:04
21479    12692    954    2016-04-05 21:59:13    2016-04-05 21:59:13
21480    11711    756    2016-02-18 03:19:37    2016-02-18 03:19:37
21481    19284    516    2015-09-20 04:12:07    2015-09-20 04:12:07
21482    19276    555    2015-12-02 14:42:11    2015-12-02 14:42:11
21483    19607    467    2015-06-26 02:47:49    2015-06-26 02:47:49
21484    19408    920    2016-03-27 05:29:57    2016-03-27 05:29:57
21485    10914    478    2016-01-06 17:03:22    2016-01-06 17:03:22
21486    13995    885    2016-01-25 12:13:11    2016-01-25 12:13:11
21487    17629    476    2015-11-07 22:49:29    2015-11-07 22:49:29
21488    17584    910    2015-10-31 05:44:04    2015-10-31 05:44:04
21489    12375    914    2015-07-29 20:25:52    2015-07-29 20:25:52
21490    19392    609    2015-10-05 04:43:01    2015-10-05 04:43:01
21491    14851    581    2016-04-14 03:49:55    2016-04-14 03:49:55
21492    12623    892    2015-07-08 06:34:43    2015-07-08 06:34:43
21493    18843    682    2015-11-08 21:53:46    2015-11-08 21:53:46
21494    14315    596    2015-11-13 05:27:17    2015-11-13 05:27:17
21495    18714    569    2015-12-24 09:36:47    2015-12-24 09:36:47
21496    11018    541    2016-01-13 11:43:06    2016-01-13 11:43:06
21497    16193    522    2015-06-28 12:36:52    2015-06-28 12:36:52
21498    10385    652    2015-11-18 16:58:56    2015-11-18 16:58:56
21499    16120    517    2015-11-26 06:10:10    2015-11-26 06:10:10
21500    10634    734    2016-03-04 00:57:21    2016-03-04 00:57:21
21501    19795    545    2015-05-01 08:05:00    2015-05-01 08:05:00
21502    15363    701    2015-08-26 08:03:19    2015-08-26 08:03:19
21503    18665    937    2015-12-16 14:53:24    2015-12-16 14:53:24
21504    18298    573    2016-01-06 02:21:55    2016-01-06 02:21:55
21505    14738    590    2016-02-27 16:27:55    2016-02-27 16:27:55
21506    10544    912    2016-01-30 00:14:07    2016-01-30 00:14:07
21507    17784    761    2016-04-06 07:25:44    2016-04-06 07:25:44
21508    19610    689    2015-08-21 21:33:02    2015-08-21 21:33:02
21509    15416    469    2015-10-18 00:27:56    2015-10-18 00:27:56
21510    12087    591    2015-07-19 01:22:04    2015-07-19 01:22:04
21511    16322    653    2015-10-06 16:10:41    2015-10-06 16:10:41
21512    11239    514    2015-08-08 02:35:58    2015-08-08 02:35:58
21513    19401    852    2015-08-29 06:32:30    2015-08-29 06:32:30
21514    12263    687    2016-01-18 17:47:54    2016-01-18 17:47:54
21515    17203    636    2015-06-05 12:54:07    2015-06-05 12:54:07
21516    12224    885    2015-06-18 11:46:22    2015-06-18 11:46:22
21517    16414    942    2015-05-12 05:15:12    2015-05-12 05:15:12
21518    18013    619    2015-08-07 15:18:21    2015-08-07 15:18:21
21519    17696    800    2015-12-29 01:23:16    2015-12-29 01:23:16
21520    12484    687    2015-09-05 23:37:02    2015-09-05 23:37:02
21521    11510    906    2015-12-16 21:05:45    2015-12-16 21:05:45
21522    17348    730    2015-05-19 03:46:52    2015-05-19 03:46:52
21523    17877    800    2016-03-30 04:49:04    2016-03-30 04:49:04
21524    15461    498    2015-08-07 12:25:30    2015-08-07 12:25:30
21525    15930    628    2015-10-02 06:21:18    2015-10-02 06:21:18
21526    14478    945    2015-07-06 20:24:16    2015-07-06 20:24:16
21527    11513    758    2016-04-10 12:24:22    2016-04-10 12:24:22
21528    18795    955    2015-10-25 23:15:45    2015-10-25 23:15:45
21529    17942    856    2015-06-01 00:13:22    2015-06-01 00:13:22
21530    19715    871    2015-07-02 01:08:58    2015-07-02 01:08:58
21531    14240    774    2016-01-14 17:49:46    2016-01-14 17:49:46
21532    19644    720    2015-07-16 10:38:06    2015-07-16 10:38:06
21533    14638    882    2016-03-24 10:02:31    2016-03-24 10:02:31
21534    15337    628    2015-05-13 13:39:23    2015-05-13 13:39:23
21535    11943    465    2016-02-29 17:08:53    2016-02-29 17:08:53
21536    12688    889    2015-07-08 17:20:40    2015-07-08 17:20:40
21537    10863    498    2015-10-28 02:17:40    2015-10-28 02:17:40
21538    16637    950    2016-03-30 04:21:59    2016-03-30 04:21:59
21539    12957    842    2015-11-03 14:45:51    2015-11-03 14:45:51
21540    10971    821    2015-06-06 20:38:50    2015-06-06 20:38:50
21541    11202    607    2015-04-24 16:18:11    2015-04-24 16:18:11
21542    18076    621    2016-02-09 02:57:46    2016-02-09 02:57:46
21543    18872    836    2016-03-02 23:19:58    2016-03-02 23:19:58
21544    13665    845    2015-12-12 23:01:55    2015-12-12 23:01:55
21545    11307    709    2015-08-08 07:27:33    2015-08-08 07:27:33
21546    18309    843    2015-09-24 05:54:57    2015-09-24 05:54:57
21547    19356    587    2015-06-25 14:27:38    2015-06-25 14:27:38
21548    13262    781    2015-07-25 21:04:49    2015-07-25 21:04:49
21549    19365    663    2015-07-28 10:19:37    2015-07-28 10:19:37
21550    18692    577    2015-12-04 10:02:47    2015-12-04 10:02:47
21551    10404    933    2015-12-14 05:02:06    2015-12-14 05:02:06
21552    18551    743    2015-11-27 09:46:22    2015-11-27 09:46:22
21553    16671    862    2016-04-05 16:09:14    2016-04-05 16:09:14
21554    13721    685    2015-12-03 14:07:28    2015-12-03 14:07:28
21555    12992    613    2016-04-07 17:06:50    2016-04-07 17:06:50
21556    14578    616    2015-05-15 01:45:43    2015-05-15 01:45:43
21557    13149    540    2015-11-13 01:41:48    2015-11-13 01:41:48
21558    17850    542    2015-10-28 18:41:29    2015-10-28 18:41:29
21559    13575    524    2016-04-13 05:22:09    2016-04-13 05:22:09
21560    10612    817    2016-03-04 05:02:09    2016-03-04 05:02:09
21561    13403    537    2016-01-05 04:36:09    2016-01-05 04:36:09
21562    12923    790    2015-10-14 00:41:11    2015-10-14 00:41:11
21563    12624    691    2015-11-26 17:37:11    2015-11-26 17:37:11
21564    15508    889    2015-11-19 06:38:01    2015-11-19 06:38:01
21565    13588    933    2015-11-19 05:23:41    2015-11-19 05:23:41
21566    18186    550    2015-06-04 11:02:56    2015-06-04 11:02:56
21567    13706    517    2016-03-07 16:39:14    2016-03-07 16:39:14
21568    13687    696    2015-11-25 17:57:22    2015-11-25 17:57:22
21569    18667    542    2016-02-20 05:15:33    2016-02-20 05:15:33
21570    14854    725    2015-12-23 17:31:19    2015-12-23 17:31:19
21571    18002    578    2015-12-21 11:54:57    2015-12-21 11:54:57
21572    12489    583    2016-03-19 09:31:22    2016-03-19 09:31:22
21573    11485    539    2016-01-14 09:18:22    2016-01-14 09:18:22
21574    19888    554    2015-09-21 16:14:39    2015-09-21 16:14:39
21575    18018    952    2016-03-14 05:18:37    2016-03-14 05:18:37
21576    19340    807    2015-12-07 15:57:46    2015-12-07 15:57:46
21577    13166    850    2015-08-13 17:10:05    2015-08-13 17:10:05
21578    19280    633    2015-08-05 22:04:43    2015-08-05 22:04:43
21579    18622    544    2015-08-02 12:10:45    2015-08-02 12:10:45
21580    10019    580    2015-07-12 04:15:44    2015-07-12 04:15:44
21581    12936    769    2015-09-29 18:13:46    2015-09-29 18:13:46
21582    18844    728    2015-07-19 02:48:18    2015-07-19 02:48:18
21583    10346    528    2015-04-27 13:33:56    2015-04-27 13:33:56
21584    19193    733    2015-09-04 18:52:16    2015-09-04 18:52:16
21585    10393    698    2015-08-17 16:49:47    2015-08-17 16:49:47
21586    18217    816    2015-05-14 00:50:54    2015-05-14 00:50:54
21587    19040    866    2016-03-30 10:02:16    2016-03-30 10:02:16
21588    17321    571    2016-01-19 00:22:37    2016-01-19 00:22:37
21589    16807    536    2015-10-04 01:51:09    2015-10-04 01:51:09
21590    16319    596    2016-02-25 07:25:58    2016-02-25 07:25:58
21591    10670    754    2015-09-30 13:53:44    2015-09-30 13:53:44
21592    12194    879    2015-07-24 14:09:27    2015-07-24 14:09:27
21593    15084    508    2015-11-05 13:34:20    2015-11-05 13:34:20
21594    17846    867    2015-06-17 17:06:10    2015-06-17 17:06:10
21595    16029    468    2015-12-31 09:56:08    2015-12-31 09:56:08
21596    16058    860    2015-11-26 23:17:07    2015-11-26 23:17:07
21597    19531    502    2016-03-14 08:54:44    2016-03-14 08:54:44
21598    18749    752    2016-03-13 23:39:09    2016-03-13 23:39:09
21599    18928    740    2015-09-06 04:17:57    2015-09-06 04:17:57
21600    13290    524    2015-10-11 12:34:18    2015-10-11 12:34:18
21601    17678    637    2015-08-12 23:59:30    2015-08-12 23:59:30
21602    16025    816    2016-01-28 23:51:45    2016-01-28 23:51:45
21603    19037    733    2015-05-01 13:57:35    2015-05-01 13:57:35
21604    15820    841    2015-12-08 09:40:45    2015-12-08 09:40:45
21605    13418    803    2016-03-18 12:21:55    2016-03-18 12:21:55
21606    14388    772    2015-07-13 06:27:30    2015-07-13 06:27:30
21607    10911    466    2015-05-26 08:20:29    2015-05-26 08:20:29
21608    10280    540    2015-07-12 10:55:08    2015-07-12 10:55:08
21609    19719    649    2015-06-27 21:45:56    2015-06-27 21:45:56
21610    15773    617    2016-04-02 05:36:21    2016-04-02 05:36:21
21611    15144    535    2015-09-23 18:04:13    2015-09-23 18:04:13
21612    16308    500    2016-01-10 09:39:58    2016-01-10 09:39:58
21613    13141    716    2016-04-19 15:14:46    2016-04-19 15:14:46
21614    17463    812    2016-03-19 11:36:35    2016-03-19 11:36:35
21615    16197    904    2015-09-28 09:41:46    2015-09-28 09:41:46
21616    11540    948    2016-01-13 07:08:36    2016-01-13 07:08:36
21617    11147    821    2016-01-15 07:35:25    2016-01-15 07:35:25
21618    15714    891    2015-06-22 18:25:12    2015-06-22 18:25:12
21619    12363    474    2015-09-22 08:15:05    2015-09-22 08:15:05
21620    15630    667    2015-07-01 16:43:17    2015-07-01 16:43:17
21621    10627    840    2015-07-06 07:26:37    2015-07-06 07:26:37
21622    17655    715    2015-10-22 14:20:56    2015-10-22 14:20:56
21623    16323    751    2015-05-13 14:10:09    2015-05-13 14:10:09
21624    10794    867    2016-02-24 00:17:36    2016-02-24 00:17:36
21625    14558    468    2015-12-14 10:26:52    2015-12-14 10:26:52
21626    12865    527    2016-02-22 23:00:29    2016-02-22 23:00:29
21627    19438    502    2015-04-27 03:22:05    2015-04-27 03:22:05
21628    14696    773    2016-02-12 16:35:57    2016-02-12 16:35:57
21629    15433    635    2015-05-15 08:31:45    2015-05-15 08:31:45
21630    19149    523    2015-12-13 09:14:59    2015-12-13 09:14:59
21631    14360    723    2015-10-15 08:50:16    2015-10-15 08:50:16
21632    16234    722    2016-01-13 06:28:41    2016-01-13 06:28:41
21633    14346    755    2015-09-21 16:12:27    2015-09-21 16:12:27
21634    15313    585    2015-05-16 08:47:33    2015-05-16 08:47:33
21635    19984    641    2015-05-04 00:21:46    2015-05-04 00:21:46
21636    19235    770    2015-10-30 10:04:45    2015-10-30 10:04:45
21637    10555    466    2016-03-29 17:50:24    2016-03-29 17:50:24
21638    17811    570    2015-12-16 21:10:21    2015-12-16 21:10:21
21639    10130    895    2015-07-27 15:55:24    2015-07-27 15:55:24
21640    13282    646    2015-10-07 16:41:27    2015-10-07 16:41:27
21641    16228    932    2015-08-26 20:15:02    2015-08-26 20:15:02
21642    14675    752    2015-12-07 14:29:13    2015-12-07 14:29:13
21643    11606    747    2015-10-27 16:59:15    2015-10-27 16:59:15
21644    18690    737    2016-03-10 06:23:08    2016-03-10 06:23:08
21645    11128    677    2015-05-09 21:06:00    2015-05-09 21:06:00
21646    11688    909    2015-05-10 03:03:56    2015-05-10 03:03:56
21647    12395    484    2015-04-29 11:41:37    2015-04-29 11:41:37
21648    10454    515    2015-10-18 07:16:06    2015-10-18 07:16:06
21649    15760    782    2015-05-10 08:36:16    2015-05-10 08:36:16
21650    11773    466    2015-11-04 20:17:44    2015-11-04 20:17:44
21651    14292    525    2015-07-27 16:45:36    2015-07-27 16:45:36
21652    17764    524    2015-10-22 13:11:38    2015-10-22 13:11:38
21653    13404    826    2015-04-22 17:39:21    2015-04-22 17:39:21
21654    15889    840    2015-07-15 07:32:00    2015-07-15 07:32:00
21655    15131    857    2015-06-01 19:26:44    2015-06-01 19:26:44
21656    10702    745    2016-01-13 20:55:48    2016-01-13 20:55:48
21657    19170    805    2016-03-18 11:33:52    2016-03-18 11:33:52
21658    14627    634    2016-01-26 10:32:37    2016-01-26 10:32:37
21659    14293    558    2015-08-09 19:09:18    2015-08-09 19:09:18
21660    10098    486    2016-03-28 21:58:57    2016-03-28 21:58:57
21661    11675    777    2015-06-19 12:02:37    2015-06-19 12:02:37
21662    12403    502    2016-03-30 07:28:58    2016-03-30 07:28:58
21663    10813    904    2015-10-21 23:59:21    2015-10-21 23:59:21
21664    12047    675    2015-12-20 00:27:36    2015-12-20 00:27:36
21665    11791    934    2016-03-07 07:37:28    2016-03-07 07:37:28
21666    18573    611    2015-05-29 05:58:46    2015-05-29 05:58:46
21667    12581    508    2015-06-19 09:59:59    2015-06-19 09:59:59
21668    15227    659    2016-02-17 00:13:08    2016-02-17 00:13:08
21669    17802    605    2016-03-25 06:43:09    2016-03-25 06:43:09
21670    10998    835    2016-01-22 06:05:06    2016-01-22 06:05:06
21671    18874    479    2016-03-08 09:02:11    2016-03-08 09:02:11
21672    17138    667    2015-04-26 11:23:07    2015-04-26 11:23:07
21673    15013    595    2015-09-15 04:10:57    2015-09-15 04:10:57
21674    12792    808    2016-02-01 11:09:39    2016-02-01 11:09:39
21675    10713    688    2015-06-01 09:26:56    2015-06-01 09:26:56
21676    13800    670    2015-10-06 03:34:37    2015-10-06 03:34:37
21677    12512    884    2016-02-14 20:29:25    2016-02-14 20:29:25
21678    18044    578    2015-05-06 16:56:32    2015-05-06 16:56:32
21679    14376    611    2015-05-29 02:11:26    2015-05-29 02:11:26
21680    12851    477    2016-01-19 12:28:57    2016-01-19 12:28:57
21681    14426    779    2016-02-12 17:46:43    2016-02-12 17:46:43
21682    18242    947    2015-07-05 11:12:32    2015-07-05 11:12:32
21683    12334    678    2015-12-01 01:41:56    2015-12-01 01:41:56
21684    10644    566    2015-07-03 18:30:02    2015-07-03 18:30:02
21685    17949    581    2015-05-22 22:31:31    2015-05-22 22:31:31
21686    18978    866    2015-12-20 19:22:35    2015-12-20 19:22:35
21687    18383    788    2016-03-22 21:50:50    2016-03-22 21:50:50
21688    12685    515    2015-06-04 13:11:58    2015-06-04 13:11:58
21689    17252    635    2015-10-17 06:23:44    2015-10-17 06:23:44
21690    16057    620    2015-11-03 10:41:30    2015-11-03 10:41:30
21691    16720    552    2015-11-17 15:03:59    2015-11-17 15:03:59
21692    18777    825    2016-02-19 01:16:51    2016-02-19 01:16:51
21693    18978    533    2015-04-26 04:06:36    2015-04-26 04:06:36
21694    11389    741    2015-08-25 11:21:36    2015-08-25 11:21:36
21695    19456    640    2015-10-03 08:39:02    2015-10-03 08:39:02
21696    13115    863    2016-01-23 06:45:47    2016-01-23 06:45:47
21697    19385    938    2015-09-13 00:01:22    2015-09-13 00:01:22
21698    18595    463    2015-04-24 07:45:39    2015-04-24 07:45:39
21699    17871    512    2015-09-06 10:47:27    2015-09-06 10:47:27
21700    19369    554    2015-10-06 23:56:59    2015-10-06 23:56:59
21701    17003    913    2015-04-24 02:06:39    2015-04-24 02:06:39
21702    10723    945    2015-07-26 18:10:36    2015-07-26 18:10:36
21703    11972    545    2015-07-30 17:28:51    2015-07-30 17:28:51
21704    13633    801    2015-10-21 13:23:28    2015-10-21 13:23:28
21705    16258    605    2015-08-31 05:55:12    2015-08-31 05:55:12
21706    10949    904    2015-04-30 23:58:58    2015-04-30 23:58:58
21707    17351    467    2016-02-27 00:51:22    2016-02-27 00:51:22
21708    17498    936    2015-09-12 10:55:37    2015-09-12 10:55:37
21709    14907    572    2016-01-03 18:43:40    2016-01-03 18:43:40
21710    14832    698    2016-03-01 19:26:07    2016-03-01 19:26:07
21711    10658    929    2015-09-09 00:15:43    2015-09-09 00:15:43
21712    13171    722    2016-03-31 17:32:30    2016-03-31 17:32:30
21713    12069    863    2015-07-28 01:04:35    2015-07-28 01:04:35
21714    15359    588    2015-08-26 07:32:50    2015-08-26 07:32:50
21715    19269    492    2015-08-15 05:50:34    2015-08-15 05:50:34
21716    19605    701    2015-09-29 19:27:40    2015-09-29 19:27:40
21717    10973    788    2015-11-02 10:27:27    2015-11-02 10:27:27
21718    18941    886    2015-09-28 13:24:38    2015-09-28 13:24:38
21719    19628    647    2015-12-03 21:09:32    2015-12-03 21:09:32
21720    19947    486    2016-03-30 01:14:05    2016-03-30 01:14:05
21721    16206    568    2016-04-02 08:52:55    2016-04-02 08:52:55
21722    17783    843    2015-07-27 19:52:54    2015-07-27 19:52:54
21723    13510    937    2015-10-31 18:53:19    2015-10-31 18:53:19
21724    14833    572    2016-04-02 09:24:24    2016-04-02 09:24:24
21725    18642    733    2016-01-10 15:39:12    2016-01-10 15:39:12
21726    15208    699    2016-01-28 13:40:57    2016-01-28 13:40:57
21727    10940    915    2015-07-28 01:35:06    2015-07-28 01:35:06
21728    17986    873    2015-07-11 00:40:12    2015-07-11 00:40:12
21729    17534    522    2015-05-07 15:34:36    2015-05-07 15:34:36
21730    14357    579    2015-11-06 05:20:04    2015-11-06 05:20:04
21731    12758    679    2015-11-23 02:47:30    2015-11-23 02:47:30
21732    16600    951    2015-10-09 14:56:50    2015-10-09 14:56:50
21733    15012    555    2015-10-27 21:08:41    2015-10-27 21:08:41
21734    19279    729    2016-04-05 10:22:20    2016-04-05 10:22:20
21735    14285    650    2015-05-30 00:08:45    2015-05-30 00:08:45
21736    12521    875    2015-08-30 16:53:20    2015-08-30 16:53:20
21737    14750    664    2015-05-18 09:44:45    2015-05-18 09:44:45
21738    15752    723    2016-04-04 18:42:38    2016-04-04 18:42:38
21739    18635    634    2015-09-15 00:35:16    2015-09-15 00:35:16
21740    10313    471    2016-03-27 03:51:23    2016-03-27 03:51:23
21741    14424    579    2016-04-18 23:32:08    2016-04-18 23:32:08
21742    15915    821    2016-03-21 13:16:12    2016-03-21 13:16:12
21743    16034    829    2015-10-23 09:28:56    2015-10-23 09:28:56
21744    19981    528    2016-04-02 04:45:21    2016-04-02 04:45:21
21745    10790    949    2015-09-14 01:04:13    2015-09-14 01:04:13
21746    17515    517    2015-05-18 10:36:24    2015-05-18 10:36:24
21747    15354    834    2015-07-13 18:12:24    2015-07-13 18:12:24
21748    12225    698    2015-11-20 09:01:57    2015-11-20 09:01:57
21749    12136    613    2016-03-10 14:38:01    2016-03-10 14:38:01
21750    13577    713    2015-09-06 09:07:49    2015-09-06 09:07:49
21751    13635    508    2015-10-04 04:46:03    2015-10-04 04:46:03
21752    11609    883    2015-05-14 16:09:27    2015-05-14 16:09:27
21753    12610    487    2016-02-26 18:08:44    2016-02-26 18:08:44
21754    12028    819    2016-04-15 05:15:11    2016-04-15 05:15:11
21755    12105    640    2015-10-05 13:48:26    2015-10-05 13:48:26
21756    14938    507    2016-04-05 10:11:54    2016-04-05 10:11:54
21757    13236    503    2015-05-05 02:37:26    2015-05-05 02:37:26
21758    17080    860    2015-05-29 04:42:53    2015-05-29 04:42:53
21759    12221    833    2015-11-05 19:42:08    2015-11-05 19:42:08
21760    14596    716    2015-07-19 08:23:56    2015-07-19 08:23:56
21761    10952    523    2015-09-16 23:02:40    2015-09-16 23:02:40
21762    10813    551    2015-12-24 00:52:51    2015-12-24 00:52:51
21763    18412    737    2015-12-29 03:35:34    2015-12-29 03:35:34
21764    15440    693    2015-07-14 23:36:42    2015-07-14 23:36:42
21765    11705    586    2015-11-16 04:52:03    2015-11-16 04:52:03
21766    17484    701    2016-02-17 13:50:36    2016-02-17 13:50:36
21767    12811    936    2015-07-08 20:23:16    2015-07-08 20:23:16
21768    14514    586    2016-04-09 08:33:26    2016-04-09 08:33:26
21769    14235    925    2015-11-25 01:24:02    2015-11-25 01:24:02
21770    19418    865    2015-12-31 02:24:35    2015-12-31 02:24:35
21771    10228    796    2016-03-24 12:36:42    2016-03-24 12:36:42
21772    14732    577    2016-03-06 13:48:50    2016-03-06 13:48:50
21773    19485    524    2015-09-13 01:54:34    2015-09-13 01:54:34
21774    10080    738    2016-01-31 10:10:53    2016-01-31 10:10:53
21775    12747    590    2015-06-14 14:04:38    2015-06-14 14:04:38
21776    13244    761    2016-01-20 15:01:24    2016-01-20 15:01:24
21777    18592    958    2015-06-01 05:37:25    2015-06-01 05:37:25
21778    17549    633    2015-06-13 03:29:21    2015-06-13 03:29:21
21779    13636    810    2015-06-17 07:35:17    2015-06-17 07:35:17
21780    16508    930    2016-01-22 18:35:06    2016-01-22 18:35:06
21781    18925    921    2015-07-09 14:01:55    2015-07-09 14:01:55
21782    16899    909    2015-07-16 04:24:01    2015-07-16 04:24:01
21783    12772    816    2015-05-12 09:10:26    2015-05-12 09:10:26
21784    14225    805    2016-02-15 01:19:09    2016-02-15 01:19:09
21785    19828    770    2015-08-09 10:33:17    2015-08-09 10:33:17
21786    17853    837    2016-01-28 20:19:32    2016-01-28 20:19:32
21787    15956    573    2015-09-28 06:38:08    2015-09-28 06:38:08
21788    16204    565    2016-01-04 15:00:21    2016-01-04 15:00:21
21789    12834    673    2015-10-29 16:45:17    2015-10-29 16:45:17
21790    18133    918    2015-11-30 08:05:37    2015-11-30 08:05:37
21791    15084    848    2015-09-15 16:41:01    2015-09-15 16:41:01
21792    13627    509    2016-01-23 14:03:22    2016-01-23 14:03:22
21793    13783    771    2016-01-03 17:27:16    2016-01-03 17:27:16
21794    19516    493    2015-10-22 14:37:54    2015-10-22 14:37:54
21795    16435    526    2015-11-20 01:54:22    2015-11-20 01:54:22
21796    19362    692    2015-06-01 20:23:45    2015-06-01 20:23:45
21797    18737    472    2015-06-15 07:16:07    2015-06-15 07:16:07
21798    19459    530    2015-07-17 13:15:42    2015-07-17 13:15:42
21799    10196    549    2016-04-08 01:19:59    2016-04-08 01:19:59
21800    17916    737    2015-06-05 16:40:21    2015-06-05 16:40:21
21801    16886    778    2015-07-14 11:48:57    2015-07-14 11:48:57
21802    15024    950    2015-06-30 23:13:11    2015-06-30 23:13:11
21803    15998    922    2015-08-26 06:23:39    2015-08-26 06:23:39
21804    17035    605    2016-02-17 16:00:05    2016-02-17 16:00:05
21805    15121    541    2015-08-17 11:54:55    2015-08-17 11:54:55
21806    10279    879    2015-12-22 20:05:06    2015-12-22 20:05:06
21807    14008    626    2015-06-11 17:26:25    2015-06-11 17:26:25
21808    18891    640    2015-07-13 16:57:34    2015-07-13 16:57:34
21809    17473    699    2015-07-09 20:55:14    2015-07-09 20:55:14
21810    14893    469    2015-11-26 12:57:21    2015-11-26 12:57:21
21811    18399    548    2016-02-27 11:02:13    2016-02-27 11:02:13
21812    12005    934    2015-12-09 09:53:27    2015-12-09 09:53:27
21813    14853    922    2015-06-22 01:28:16    2015-06-22 01:28:16
21814    14590    812    2015-10-01 17:16:12    2015-10-01 17:16:12
21815    11463    635    2016-03-10 11:53:42    2016-03-10 11:53:42
21816    14004    635    2015-11-23 23:03:13    2015-11-23 23:03:13
21817    11688    859    2016-01-25 17:06:09    2016-01-25 17:06:09
21818    10069    559    2015-04-24 11:33:17    2015-04-24 11:33:17
21819    18915    909    2015-10-07 02:54:25    2015-10-07 02:54:25
21820    10622    713    2015-08-31 05:37:50    2015-08-31 05:37:50
21821    10963    928    2016-04-04 12:39:27    2016-04-04 12:39:27
21822    12219    947    2015-05-05 10:20:20    2015-05-05 10:20:20
21823    10745    842    2015-11-10 10:52:19    2015-11-10 10:52:19
21824    14379    709    2015-07-09 04:38:57    2015-07-09 04:38:57
21825    19030    503    2016-04-10 06:33:54    2016-04-10 06:33:54
21826    18670    680    2016-03-13 07:35:43    2016-03-13 07:35:43
21827    15187    543    2015-11-19 16:58:44    2015-11-19 16:58:44
21828    13947    687    2015-12-24 03:45:34    2015-12-24 03:45:34
21829    17417    930    2015-09-28 20:59:54    2015-09-28 20:59:54
21830    13350    659    2015-10-17 11:42:42    2015-10-17 11:42:42
21831    15940    775    2015-06-15 15:08:43    2015-06-15 15:08:43
21832    12586    686    2015-06-19 17:47:14    2015-06-19 17:47:14
21833    11103    852    2015-06-21 04:19:30    2015-06-21 04:19:30
21834    18703    663    2016-02-29 09:42:41    2016-02-29 09:42:41
21835    16992    767    2015-11-11 16:31:33    2015-11-11 16:31:33
21836    15339    891    2015-07-28 12:31:16    2015-07-28 12:31:16
21837    15590    952    2016-02-15 14:36:31    2016-02-15 14:36:31
21838    14275    599    2016-01-31 03:33:12    2016-01-31 03:33:12
21839    15462    633    2015-05-14 13:55:24    2015-05-14 13:55:24
21840    11159    909    2015-12-01 19:23:27    2015-12-01 19:23:27
21841    11608    663    2015-04-26 17:45:39    2015-04-26 17:45:39
21842    12291    519    2015-09-15 02:17:16    2015-09-15 02:17:16
21843    12502    672    2015-12-19 04:10:28    2015-12-19 04:10:28
21844    14644    949    2015-06-09 05:14:27    2015-06-09 05:14:27
21845    11082    508    2015-10-04 01:20:43    2015-10-04 01:20:43
21846    11449    497    2015-12-23 03:17:04    2015-12-23 03:17:04
21847    11242    689    2015-10-02 14:41:15    2015-10-02 14:41:15
21848    13930    917    2015-11-25 19:58:54    2015-11-25 19:58:54
21849    13004    782    2015-08-06 10:48:27    2015-08-06 10:48:27
21850    19374    864    2015-08-15 12:26:41    2015-08-15 12:26:41
21851    19262    809    2015-09-01 09:00:05    2015-09-01 09:00:05
21852    10506    590    2015-06-08 22:08:13    2015-06-08 22:08:13
21853    12143    507    2015-06-26 21:23:36    2015-06-26 21:23:36
21854    17334    496    2015-09-04 07:56:41    2015-09-04 07:56:41
21855    10999    515    2015-12-15 23:24:09    2015-12-15 23:24:09
21856    16365    756    2015-04-28 15:49:23    2015-04-28 15:49:23
21857    10234    610    2015-11-10 07:04:48    2015-11-10 07:04:48
21858    11788    574    2015-07-30 22:18:31    2015-07-30 22:18:31
21859    17224    482    2015-04-28 05:41:52    2015-04-28 05:41:52
21860    16557    905    2016-02-07 08:52:53    2016-02-07 08:52:53
21861    10028    646    2015-12-30 17:16:01    2015-12-30 17:16:01
21862    18015    668    2015-07-08 04:01:52    2015-07-08 04:01:52
21863    13250    469    2016-01-06 16:06:58    2016-01-06 16:06:58
21864    14824    543    2015-07-06 19:18:59    2015-07-06 19:18:59
21865    19964    679    2015-08-10 21:08:35    2015-08-10 21:08:35
21866    11388    670    2016-03-08 15:33:55    2016-03-08 15:33:55
21867    10585    748    2015-06-26 15:21:13    2015-06-26 15:21:13
21868    16680    878    2015-05-31 16:34:08    2015-05-31 16:34:08
21869    12287    803    2016-02-04 02:12:26    2016-02-04 02:12:26
21870    10307    791    2016-01-02 06:52:03    2016-01-02 06:52:03
21871    13846    654    2015-07-29 07:21:49    2015-07-29 07:21:49
21872    19400    922    2015-10-07 00:12:13    2015-10-07 00:12:13
21873    12652    701    2015-09-13 08:24:46    2015-09-13 08:24:46
21874    14175    689    2015-05-17 00:01:20    2015-05-17 00:01:20
21875    12636    583    2016-02-17 07:49:29    2016-02-17 07:49:29
21876    17731    810    2015-08-16 15:00:31    2015-08-16 15:00:31
21877    13453    821    2015-05-15 20:54:04    2015-05-15 20:54:04
21878    19293    936    2015-08-30 05:38:22    2015-08-30 05:38:22
21879    13763    896    2015-08-04 10:14:17    2015-08-04 10:14:17
21880    16223    727    2015-04-30 09:22:06    2015-04-30 09:22:06
21881    18312    727    2015-12-07 13:54:41    2015-12-07 13:54:41
21882    14591    517    2015-07-20 20:32:41    2015-07-20 20:32:41
21883    11405    540    2015-08-16 01:54:11    2015-08-16 01:54:11
21884    10715    930    2015-05-12 00:24:43    2015-05-12 00:24:43
21885    14472    858    2015-07-17 08:09:52    2015-07-17 08:09:52
21886    12003    524    2015-11-03 07:28:16    2015-11-03 07:28:16
21887    14482    646    2015-05-29 11:41:12    2015-05-29 11:41:12
21888    16749    708    2015-07-27 23:37:17    2015-07-27 23:37:17
21889    17147    787    2015-12-29 13:56:39    2015-12-29 13:56:39
21890    12338    623    2016-03-12 21:11:44    2016-03-12 21:11:44
21891    10325    808    2016-03-23 08:13:40    2016-03-23 08:13:40
21892    13278    620    2015-08-07 05:26:39    2015-08-07 05:26:39
21893    15864    783    2016-02-09 19:36:50    2016-02-09 19:36:50
21894    10366    864    2016-01-05 23:36:42    2016-01-05 23:36:42
21895    10261    556    2015-10-28 15:59:51    2015-10-28 15:59:51
21896    11170    610    2016-03-19 10:47:48    2016-03-19 10:47:48
21897    17010    505    2015-11-18 01:49:34    2015-11-18 01:49:34
21898    16199    665    2015-12-06 16:06:33    2015-12-06 16:06:33
21899    13864    828    2015-05-14 05:51:37    2015-05-14 05:51:37
21900    18900    656    2016-04-14 13:10:34    2016-04-14 13:10:34
21901    11281    903    2015-06-30 11:37:28    2015-06-30 11:37:28
21902    12889    853    2016-02-18 14:32:43    2016-02-18 14:32:43
21903    13965    474    2015-06-01 20:46:58    2015-06-01 20:46:58
21904    15090    880    2015-11-27 11:02:50    2015-11-27 11:02:50
21905    19895    856    2015-10-24 01:53:39    2015-10-24 01:53:39
21906    13181    734    2015-11-12 15:58:45    2015-11-12 15:58:45
21907    18650    757    2015-08-09 21:58:49    2015-08-09 21:58:49
21908    19119    730    2015-08-01 06:43:03    2015-08-01 06:43:03
21909    15046    677    2015-09-22 00:54:20    2015-09-22 00:54:20
21910    15085    505    2016-02-21 20:07:06    2016-02-21 20:07:06
21911    16402    551    2015-10-09 12:01:22    2015-10-09 12:01:22
21912    17344    787    2015-06-13 19:41:04    2015-06-13 19:41:04
21913    12709    694    2015-06-23 00:01:46    2015-06-23 00:01:46
21914    14114    638    2016-02-03 18:03:13    2016-02-03 18:03:13
21915    19943    500    2015-11-19 13:56:12    2015-11-19 13:56:12
21916    10671    709    2015-10-13 21:21:09    2015-10-13 21:21:09
21917    12197    688    2015-11-08 07:54:43    2015-11-08 07:54:43
21918    10416    661    2016-02-04 14:08:20    2016-02-04 14:08:20
21919    16684    869    2016-03-08 09:33:14    2016-03-08 09:33:14
21920    15687    669    2016-03-18 02:53:57    2016-03-18 02:53:57
21921    19415    876    2015-05-15 06:53:51    2015-05-15 06:53:51
21922    19617    497    2015-11-21 11:39:56    2015-11-21 11:39:56
21923    16912    828    2015-11-02 22:38:47    2015-11-02 22:38:47
21924    18603    529    2015-07-08 20:02:40    2015-07-08 20:02:40
21925    10619    679    2015-06-10 05:53:03    2015-06-10 05:53:03
21926    17179    647    2016-03-15 11:03:23    2016-03-15 11:03:23
21927    15550    495    2015-11-28 03:52:50    2015-11-28 03:52:50
21928    16683    527    2015-06-21 17:23:20    2015-06-21 17:23:20
21929    18205    592    2015-08-24 02:40:59    2015-08-24 02:40:59
21930    15824    547    2015-08-10 21:23:13    2015-08-10 21:23:13
21931    18741    464    2016-02-19 17:50:33    2016-02-19 17:50:33
21932    12020    732    2015-06-22 20:53:54    2015-06-22 20:53:54
21933    17853    612    2016-03-30 11:26:12    2016-03-30 11:26:12
21934    15898    723    2016-02-04 06:39:00    2016-02-04 06:39:00
21935    17587    596    2015-12-18 04:03:03    2015-12-18 04:03:03
21936    14007    792    2015-09-02 08:18:29    2015-09-02 08:18:29
21937    15151    652    2015-05-05 15:06:35    2015-05-05 15:06:35
21938    17559    739    2016-03-14 13:59:26    2016-03-14 13:59:26
21939    10285    726    2015-07-22 16:36:00    2015-07-22 16:36:00
21940    13021    666    2015-06-07 10:00:35    2015-06-07 10:00:35
21941    17161    581    2016-03-01 09:11:04    2016-03-01 09:11:04
21942    10271    475    2016-03-05 09:41:52    2016-03-05 09:41:52
21943    17178    674    2015-06-25 17:41:47    2015-06-25 17:41:47
21944    16836    517    2015-04-26 10:06:48    2015-04-26 10:06:48
21945    10839    589    2016-03-29 02:46:08    2016-03-29 02:46:08
21946    12708    737    2015-06-25 10:40:08    2015-06-25 10:40:08
21947    12404    483    2015-06-30 09:22:43    2015-06-30 09:22:43
21948    14397    728    2015-06-26 06:05:14    2015-06-26 06:05:14
21949    13780    839    2016-01-10 12:47:18    2016-01-10 12:47:18
21950    14501    613    2015-11-08 20:00:57    2015-11-08 20:00:57
21951    10580    554    2015-08-15 04:10:03    2015-08-15 04:10:03
21952    15593    561    2016-02-23 05:44:40    2016-02-23 05:44:40
21953    17823    808    2016-02-19 16:23:05    2016-02-19 16:23:05
21954    15554    849    2015-05-03 13:24:14    2015-05-03 13:24:14
21955    18424    935    2015-07-23 12:54:33    2015-07-23 12:54:33
21956    18787    658    2015-10-22 22:48:57    2015-10-22 22:48:57
21957    11851    635    2015-09-24 19:21:00    2015-09-24 19:21:00
21958    18700    558    2015-10-30 06:21:39    2015-10-30 06:21:39
21959    12893    485    2015-11-26 05:29:34    2015-11-26 05:29:34
21960    12515    808    2015-10-16 23:59:39    2015-10-16 23:59:39
21961    12850    582    2015-12-22 11:19:21    2015-12-22 11:19:21
21962    18835    463    2016-01-03 00:37:40    2016-01-03 00:37:40
21963    16950    722    2015-06-07 08:29:10    2015-06-07 08:29:10
21964    14661    829    2016-03-21 07:01:10    2016-03-21 07:01:10
21965    14491    903    2015-11-18 11:30:40    2015-11-18 11:30:40
21966    18843    516    2015-11-12 23:07:02    2015-11-12 23:07:02
21967    10667    537    2015-12-06 19:56:04    2015-12-06 19:56:04
21968    18066    811    2015-10-17 00:49:21    2015-10-17 00:49:21
21969    17091    537    2015-11-25 22:39:54    2015-11-25 22:39:54
21970    11314    626    2016-04-09 11:22:47    2016-04-09 11:22:47
21971    19536    904    2015-07-17 21:27:06    2015-07-17 21:27:06
21972    11085    651    2016-04-19 20:12:08    2016-04-19 20:12:08
21973    18711    863    2015-06-15 05:59:03    2015-06-15 05:59:03
21974    17112    752    2015-11-06 06:41:24    2015-11-06 06:41:24
21975    18017    895    2016-01-26 18:25:52    2016-01-26 18:25:52
21976    12573    634    2015-07-16 11:09:33    2015-07-16 11:09:33
21977    16873    959    2015-10-06 13:15:17    2015-10-06 13:15:17
21978    11573    568    2015-08-27 14:10:31    2015-08-27 14:10:31
21979    12809    860    2016-02-21 23:04:32    2016-02-21 23:04:32
21980    15417    682    2016-01-17 06:43:06    2016-01-17 06:43:06
21981    15645    578    2016-01-28 20:25:09    2016-01-28 20:25:09
21982    19146    506    2015-11-09 10:29:50    2015-11-09 10:29:50
21983    18565    933    2016-02-09 12:05:24    2016-02-09 12:05:24
21984    15258    574    2015-05-20 14:23:49    2015-05-20 14:23:49
21985    10463    521    2016-03-03 23:17:43    2016-03-03 23:17:43
21986    16967    916    2015-09-20 11:54:53    2015-09-20 11:54:53
21987    17126    755    2015-07-21 09:15:35    2015-07-21 09:15:35
21988    18943    750    2015-08-11 01:43:52    2015-08-11 01:43:52
21989    16118    955    2015-12-29 10:57:03    2015-12-29 10:57:03
21990    14796    839    2016-03-08 17:10:14    2016-03-08 17:10:14
21991    12668    604    2016-02-06 12:01:07    2016-02-06 12:01:07
21992    15554    517    2015-08-29 08:26:40    2015-08-29 08:26:40
21993    11731    805    2016-01-16 05:41:32    2016-01-16 05:41:32
21994    11569    807    2016-04-02 00:19:16    2016-04-02 00:19:16
21995    18533    545    2016-01-01 10:04:22    2016-01-01 10:04:22
21996    10539    536    2015-12-01 17:33:16    2015-12-01 17:33:16
21997    15016    945    2015-08-10 16:48:39    2015-08-10 16:48:39
21998    18773    543    2016-02-15 01:33:03    2016-02-15 01:33:03
21999    16202    507    2016-01-25 21:21:32    2016-01-25 21:21:32
22000    10121    771    2015-06-02 14:18:04    2015-06-02 14:18:04
22001    14029    885    2015-12-14 11:48:06    2015-12-14 11:48:06
22002    19404    822    2016-03-21 11:58:15    2016-03-21 11:58:15
22003    17493    748    2015-11-17 08:57:43    2015-11-17 08:57:43
22004    10708    465    2015-10-08 12:18:27    2015-10-08 12:18:27
22005    12770    870    2016-02-01 17:43:05    2016-02-01 17:43:05
22006    14575    942    2015-12-17 16:17:32    2015-12-17 16:17:32
22007    11559    540    2015-05-26 03:02:21    2015-05-26 03:02:21
22008    16872    844    2015-08-20 02:38:15    2015-08-20 02:38:15
22009    15423    562    2016-01-21 15:29:53    2016-01-21 15:29:53
22010    15527    486    2016-03-03 21:36:17    2016-03-03 21:36:17
22011    17535    940    2015-09-11 07:58:31    2015-09-11 07:58:31
22012    12076    946    2016-04-13 17:19:06    2016-04-13 17:19:06
22013    12345    771    2016-03-05 05:27:57    2016-03-05 05:27:57
22014    17778    615    2015-05-09 17:04:07    2015-05-09 17:04:07
22015    10603    904    2015-08-30 17:52:05    2015-08-30 17:52:05
22016    13446    744    2015-06-09 17:22:25    2015-06-09 17:22:25
22017    13722    925    2015-11-16 23:58:27    2015-11-16 23:58:27
22018    18338    490    2016-03-31 03:13:52    2016-03-31 03:13:52
22019    10585    755    2015-09-27 07:51:22    2015-09-27 07:51:22
22020    11990    926    2016-01-16 17:48:20    2016-01-16 17:48:20
22021    16590    619    2015-06-08 18:27:52    2015-06-08 18:27:52
22022    18415    577    2015-06-05 10:12:09    2015-06-05 10:12:09
22023    12232    832    2015-10-16 19:17:12    2015-10-16 19:17:12
22024    16303    717    2015-09-03 01:03:20    2015-09-03 01:03:20
22025    18444    949    2015-08-22 08:28:21    2015-08-22 08:28:21
22026    17603    659    2015-08-13 08:03:01    2015-08-13 08:03:01
22027    10389    645    2015-11-27 06:44:49    2015-11-27 06:44:49
22028    12710    546    2015-12-12 20:17:51    2015-12-12 20:17:51
22029    11855    899    2016-03-05 08:44:17    2016-03-05 08:44:17
22030    10867    482    2016-03-25 22:55:59    2016-03-25 22:55:59
22031    13494    557    2016-04-07 14:56:10    2016-04-07 14:56:10
22032    19273    601    2015-09-15 02:23:50    2015-09-15 02:23:50
22033    12530    803    2015-09-23 03:56:46    2015-09-23 03:56:46
22034    11596    788    2015-12-08 12:04:44    2015-12-08 12:04:44
22035    14769    812    2016-03-18 08:43:08    2016-03-18 08:43:08
22036    16493    554    2015-06-30 06:45:02    2015-06-30 06:45:02
22037    18142    715    2015-11-02 13:10:57    2015-11-02 13:10:57
22038    12823    471    2015-05-27 21:13:44    2015-05-27 21:13:44
22039    15145    935    2016-01-30 01:45:54    2016-01-30 01:45:54
22040    16396    819    2015-12-01 12:15:18    2015-12-01 12:15:18
22041    16364    643    2016-03-24 19:41:16    2016-03-24 19:41:16
22042    14741    516    2016-03-15 03:31:00    2016-03-15 03:31:00
22043    13714    787    2016-03-24 15:43:00    2016-03-24 15:43:00
22044    12918    688    2015-10-02 16:32:49    2015-10-02 16:32:49
22045    17242    766    2015-11-21 18:53:39    2015-11-21 18:53:39
22046    13624    600    2015-11-11 12:40:14    2015-11-11 12:40:14
22047    13595    519    2015-06-27 08:02:54    2015-06-27 08:02:54
22048    11625    658    2015-10-01 10:41:27    2015-10-01 10:41:27
22049    11156    889    2016-02-02 14:42:55    2016-02-02 14:42:55
22050    12994    507    2015-08-03 14:54:06    2015-08-03 14:54:06
22051    12489    675    2016-01-28 01:45:57    2016-01-28 01:45:57
22052    11614    829    2016-01-10 19:25:53    2016-01-10 19:25:53
22053    12191    776    2015-12-21 02:09:24    2015-12-21 02:09:24
22054    19016    920    2015-11-29 22:54:19    2015-11-29 22:54:19
22055    17681    942    2015-07-14 00:33:50    2015-07-14 00:33:50
22056    14823    730    2015-07-24 11:11:58    2015-07-24 11:11:58
22057    12374    646    2016-03-02 03:06:44    2016-03-02 03:06:44
22058    19782    571    2015-12-05 05:06:33    2015-12-05 05:06:33
22059    16642    542    2015-09-05 19:57:44    2015-09-05 19:57:44
22060    15906    755    2015-09-09 18:46:25    2015-09-09 18:46:25
22061    18417    831    2015-05-22 01:58:38    2015-05-22 01:58:38
22062    17704    678    2015-12-02 04:00:11    2015-12-02 04:00:11
22063    19648    565    2015-08-16 10:59:00    2015-08-16 10:59:00
22064    14389    583    2015-09-08 18:02:13    2015-09-08 18:02:13
22065    17645    640    2016-04-05 13:21:28    2016-04-05 13:21:28
22066    17668    521    2016-03-23 12:23:49    2016-03-23 12:23:49
22067    19463    509    2015-10-23 08:41:27    2015-10-23 08:41:27
22068    19857    567    2015-11-19 05:44:17    2015-11-19 05:44:17
22069    10588    835    2015-10-17 14:17:52    2015-10-17 14:17:52
22070    19296    804    2016-02-27 01:02:01    2016-02-27 01:02:01
22071    15535    545    2015-08-07 14:07:41    2015-08-07 14:07:41
22072    15480    813    2015-06-29 09:11:33    2015-06-29 09:11:33
22073    19267    851    2015-06-21 08:39:26    2015-06-21 08:39:26
22074    17135    547    2016-04-18 18:20:37    2016-04-18 18:20:37
22075    19894    707    2015-12-20 16:03:33    2015-12-20 16:03:33
22076    19935    961    2015-09-15 14:26:45    2015-09-15 14:26:45
22077    16394    836    2015-05-15 10:51:14    2015-05-15 10:51:14
22078    10686    871    2015-12-13 00:04:44    2015-12-13 00:04:44
22079    14205    592    2015-06-09 03:06:29    2015-06-09 03:06:29
22080    18811    715    2015-11-23 15:28:10    2015-11-23 15:28:10
22081    14301    561    2016-04-20 19:44:47    2016-04-20 19:44:47
22082    18217    924    2015-06-21 01:57:48    2015-06-21 01:57:48
22083    10129    498    2015-05-18 13:22:02    2015-05-18 13:22:02
22084    14862    877    2016-03-07 21:45:14    2016-03-07 21:45:14
22085    17042    569    2015-07-30 19:19:36    2015-07-30 19:19:36
22086    19345    758    2015-07-03 05:09:44    2015-07-03 05:09:44
22087    10721    872    2016-02-11 21:39:49    2016-02-11 21:39:49
22088    14344    510    2015-06-29 02:56:39    2015-06-29 02:56:39
22089    18833    773    2015-08-10 09:34:38    2015-08-10 09:34:38
22090    19128    614    2015-12-04 01:32:27    2015-12-04 01:32:27
22091    11353    625    2016-02-01 05:11:59    2016-02-01 05:11:59
22092    10848    707    2015-12-14 22:21:20    2015-12-14 22:21:20
22093    12316    902    2015-05-06 07:54:13    2015-05-06 07:54:13
22094    19246    824    2015-05-20 08:07:11    2015-05-20 08:07:11
22095    19068    860    2015-06-03 09:39:21    2015-06-03 09:39:21
22096    11808    879    2015-08-23 13:06:15    2015-08-23 13:06:15
22097    19327    904    2016-04-19 18:49:03    2016-04-19 18:49:03
22098    17559    539    2015-12-31 13:40:47    2015-12-31 13:40:47
22099    12649    743    2016-02-25 17:45:51    2016-02-25 17:45:51
22100    17183    823    2015-11-01 16:02:19    2015-11-01 16:02:19
22101    12300    860    2015-10-30 00:40:49    2015-10-30 00:40:49
22102    18820    592    2015-07-01 20:58:55    2015-07-01 20:58:55
22103    13344    686    2015-11-04 19:37:02    2015-11-04 19:37:02
22104    11716    518    2016-01-22 22:01:13    2016-01-22 22:01:13
22105    13420    782    2015-08-12 21:47:57    2015-08-12 21:47:57
22106    12604    844    2015-09-14 02:26:57    2015-09-14 02:26:57
22107    19860    961    2016-04-12 18:14:55    2016-04-12 18:14:55
22108    12779    785    2015-11-12 12:55:49    2015-11-12 12:55:49
22109    12108    705    2015-09-04 11:27:20    2015-09-04 11:27:20
22110    16242    834    2016-02-11 08:03:50    2016-02-11 08:03:50
22111    19617    787    2016-02-26 05:05:23    2016-02-26 05:05:23
22112    10868    821    2015-12-19 02:50:26    2015-12-19 02:50:26
22113    10274    568    2015-05-15 13:04:52    2015-05-15 13:04:52
22114    11465    587    2015-08-13 14:18:50    2015-08-13 14:18:50
22115    18816    751    2015-11-16 10:07:59    2015-11-16 10:07:59
22116    19298    659    2016-03-24 12:31:08    2016-03-24 12:31:08
22117    18013    633    2015-09-25 17:59:26    2015-09-25 17:59:26
22118    18654    466    2015-07-11 23:07:42    2015-07-11 23:07:42
22119    18189    537    2015-11-17 06:44:44    2015-11-17 06:44:44
22120    11032    555    2015-06-20 16:22:05    2015-06-20 16:22:05
22121    14300    954    2015-10-08 10:27:33    2015-10-08 10:27:33
22122    12234    831    2015-06-21 08:09:32    2015-06-21 08:09:32
22123    15698    907    2016-03-14 11:36:13    2016-03-14 11:36:13
22124    16727    682    2016-01-22 14:35:08    2016-01-22 14:35:08
22125    12599    471    2016-01-03 14:04:38    2016-01-03 14:04:38
22126    16360    469    2015-08-27 13:24:32    2015-08-27 13:24:32
22127    12973    585    2016-01-28 05:07:47    2016-01-28 05:07:47
22128    19299    581    2015-12-07 21:56:57    2015-12-07 21:56:57
22129    12870    664    2015-06-22 08:53:17    2015-06-22 08:53:17
22130    14533    912    2016-01-24 06:57:02    2016-01-24 06:57:02
22131    19001    898    2016-03-29 10:48:44    2016-03-29 10:48:44
22132    11851    806    2015-11-09 03:50:55    2015-11-09 03:50:55
22133    11174    653    2015-07-13 13:57:33    2015-07-13 13:57:33
22134    10388    783    2015-08-20 01:00:41    2015-08-20 01:00:41
22135    12425    584    2015-06-13 23:38:18    2015-06-13 23:38:18
22136    11008    715    2016-01-13 23:06:13    2016-01-13 23:06:13
22137    10208    693    2015-10-03 23:14:32    2015-10-03 23:14:32
22138    15085    604    2015-06-04 23:50:04    2015-06-04 23:50:04
22139    15616    748    2015-06-23 14:55:02    2015-06-23 14:55:02
22140    12852    605    2015-09-15 14:01:45    2015-09-15 14:01:45
22141    12118    821    2015-12-27 02:16:36    2015-12-27 02:16:36
22142    17716    503    2015-08-16 17:00:00    2015-08-16 17:00:00
22143    15329    653    2016-03-22 06:26:58    2016-03-22 06:26:58
22144    11822    950    2016-02-07 23:18:49    2016-02-07 23:18:49
22145    15518    512    2015-11-11 19:38:28    2015-11-11 19:38:28
22146    11974    696    2015-11-06 20:36:51    2015-11-06 20:36:51
22147    17289    802    2015-09-21 16:11:44    2015-09-21 16:11:44
22148    14534    820    2015-12-09 17:30:19    2015-12-09 17:30:19
22149    15101    923    2015-11-24 04:36:25    2015-11-24 04:36:25
22150    13253    804    2016-04-09 23:09:20    2016-04-09 23:09:20
22151    14404    484    2016-03-11 13:58:41    2016-03-11 13:58:41
22152    18786    754    2015-10-05 03:14:27    2015-10-05 03:14:27
22153    10946    888    2016-03-18 09:52:49    2016-03-18 09:52:49
22154    12945    758    2016-01-22 04:44:16    2016-01-22 04:44:16
22155    10799    698    2016-01-20 15:31:40    2016-01-20 15:31:40
22156    19663    583    2016-01-22 20:19:42    2016-01-22 20:19:42
22157    19888    570    2015-12-26 23:32:37    2015-12-26 23:32:37
22158    19196    867    2015-05-12 21:48:49    2015-05-12 21:48:49
22159    11648    776    2016-01-07 22:49:33    2016-01-07 22:49:33
22160    17947    737    2015-07-29 19:32:47    2015-07-29 19:32:47
22161    14135    560    2016-04-13 07:25:50    2016-04-13 07:25:50
22162    12818    739    2015-12-03 09:34:35    2015-12-03 09:34:35
22163    10922    555    2015-12-01 08:04:11    2015-12-01 08:04:11
22164    17737    615    2015-12-28 14:23:09    2015-12-28 14:23:09
22165    19193    802    2015-09-20 17:55:39    2015-09-20 17:55:39
22166    13578    750    2015-10-10 19:13:46    2015-10-10 19:13:46
22167    13285    505    2016-04-06 15:09:27    2016-04-06 15:09:27
22168    16283    543    2015-11-08 13:55:30    2015-11-08 13:55:30
22169    11757    570    2015-11-01 08:17:19    2015-11-01 08:17:19
22170    14903    543    2015-08-27 03:01:53    2015-08-27 03:01:53
22171    13477    895    2015-06-26 12:01:12    2015-06-26 12:01:12
22172    15890    847    2015-06-26 09:22:08    2015-06-26 09:22:08
22173    16547    862    2015-12-15 06:31:22    2015-12-15 06:31:22
22174    16392    679    2015-09-11 23:09:58    2015-09-11 23:09:58
22175    13060    833    2016-01-16 14:44:36    2016-01-16 14:44:36
22176    10979    753    2016-03-05 10:19:44    2016-03-05 10:19:44
22177    15598    577    2015-12-26 10:54:14    2015-12-26 10:54:14
22178    18123    546    2016-03-26 11:10:00    2016-03-26 11:10:00
22179    10413    814    2015-08-29 19:01:20    2015-08-29 19:01:20
22180    15084    713    2015-09-13 07:11:21    2015-09-13 07:11:21
22181    17170    815    2015-11-22 21:02:32    2015-11-22 21:02:32
22182    18651    662    2015-09-07 09:41:01    2015-09-07 09:41:01
22183    13067    602    2015-09-05 12:48:00    2015-09-05 12:48:00
22184    12008    695    2016-03-27 00:53:22    2016-03-27 00:53:22
22185    14260    547    2015-07-11 21:22:49    2015-07-11 21:22:49
22186    14077    580    2016-01-17 00:18:04    2016-01-17 00:18:04
22187    13094    721    2016-04-19 10:52:58    2016-04-19 10:52:58
22188    19643    583    2016-01-17 05:02:49    2016-01-17 05:02:49
22189    17158    557    2015-11-26 03:46:13    2015-11-26 03:46:13
22190    19888    845    2015-09-26 14:30:53    2015-09-26 14:30:53
22191    18343    512    2015-12-04 22:21:07    2015-12-04 22:21:07
22192    15645    947    2016-04-04 19:02:02    2016-04-04 19:02:02
22193    15878    620    2015-12-24 22:02:56    2015-12-24 22:02:56
22194    19007    498    2015-07-13 10:44:02    2015-07-13 10:44:02
22195    15448    784    2015-10-08 16:01:32    2015-10-08 16:01:32
22196    18688    860    2015-12-23 23:07:39    2015-12-23 23:07:39
22197    14506    517    2016-01-03 08:14:31    2016-01-03 08:14:31
22198    13184    899    2015-06-05 11:36:48    2015-06-05 11:36:48
22199    19425    484    2015-10-07 13:54:54    2015-10-07 13:54:54
22200    16316    621    2016-02-08 23:25:07    2016-02-08 23:25:07
22201    14492    502    2016-01-06 12:44:41    2016-01-06 12:44:41
22202    15922    475    2015-08-13 17:32:22    2015-08-13 17:32:22
22203    17362    923    2015-08-04 00:22:48    2015-08-04 00:22:48
22204    12740    518    2015-07-07 13:55:56    2015-07-07 13:55:56
22205    13105    599    2015-10-25 09:26:12    2015-10-25 09:26:12
22206    12847    758    2015-05-05 05:45:39    2015-05-05 05:45:39
22207    14207    639    2016-02-17 10:35:10    2016-02-17 10:35:10
22208    12276    645    2016-04-12 11:39:17    2016-04-12 11:39:17
22209    17317    495    2015-04-28 06:07:57    2015-04-28 06:07:57
22210    19855    703    2015-04-28 18:29:46    2015-04-28 18:29:46
22211    15489    833    2016-02-26 09:27:47    2016-02-26 09:27:47
22212    17162    952    2015-06-21 03:47:11    2015-06-21 03:47:11
22213    19245    619    2015-08-24 10:27:35    2015-08-24 10:27:35
22214    10098    755    2015-06-17 00:45:19    2015-06-17 00:45:19
22215    19901    836    2015-09-03 23:31:27    2015-09-03 23:31:27
22216    10452    490    2015-07-30 11:19:30    2015-07-30 11:19:30
22217    16656    560    2015-12-14 20:39:29    2015-12-14 20:39:29
22218    12345    826    2015-06-05 22:16:08    2015-06-05 22:16:08
22219    16508    524    2016-03-16 21:50:21    2016-03-16 21:50:21
22220    15426    484    2015-09-25 11:56:20    2015-09-25 11:56:20
22221    12068    841    2015-05-13 02:10:51    2015-05-13 02:10:51
22222    16357    765    2016-01-21 19:28:39    2016-01-21 19:28:39
22223    12971    608    2016-02-16 03:56:46    2016-02-16 03:56:46
22224    15833    718    2015-06-21 08:18:58    2015-06-21 08:18:58
22225    10835    957    2015-09-25 10:22:15    2015-09-25 10:22:15
22226    19195    823    2016-01-22 13:36:33    2016-01-22 13:36:33
22227    14512    961    2015-05-11 05:06:05    2015-05-11 05:06:05
22228    16673    635    2016-03-11 16:22:35    2016-03-11 16:22:35
22229    19240    476    2015-06-27 07:42:35    2015-06-27 07:42:35
22230    13191    720    2016-01-11 08:00:33    2016-01-11 08:00:33
22231    16034    622    2016-02-26 08:19:55    2016-02-26 08:19:55
22232    11642    789    2015-12-19 10:28:16    2015-12-19 10:28:16
22233    15181    698    2015-10-18 08:42:16    2015-10-18 08:42:16
22234    11535    877    2016-03-12 14:34:10    2016-03-12 14:34:10
22235    19398    901    2015-05-14 09:42:55    2015-05-14 09:42:55
22236    18894    567    2015-09-11 10:32:57    2015-09-11 10:32:57
22237    12316    749    2015-05-09 21:24:15    2015-05-09 21:24:15
22238    12345    692    2015-12-06 17:01:51    2015-12-06 17:01:51
22239    13135    892    2015-10-05 17:31:20    2015-10-05 17:31:20
22240    13395    810    2015-12-05 20:54:00    2015-12-05 20:54:00
22241    12759    860    2015-12-25 22:18:15    2015-12-25 22:18:15
22242    12287    910    2016-01-23 22:34:36    2016-01-23 22:34:36
22243    19470    870    2015-12-08 18:10:36    2015-12-08 18:10:36
22244    14577    926    2015-06-14 10:14:27    2015-06-14 10:14:27
22245    18776    614    2015-06-20 21:30:25    2015-06-20 21:30:25
22246    17551    481    2015-10-05 09:52:22    2015-10-05 09:52:22
22247    14311    468    2016-03-12 03:35:43    2016-03-12 03:35:43
22248    18752    894    2015-06-25 18:58:17    2015-06-25 18:58:17
22249    19844    602    2015-05-20 22:22:21    2015-05-20 22:22:21
22250    19829    849    2015-07-21 17:36:38    2015-07-21 17:36:38
22251    10768    603    2016-01-15 15:12:11    2016-01-15 15:12:11
22252    14402    832    2015-07-09 13:05:40    2015-07-09 13:05:40
22253    13384    944    2016-02-05 04:58:10    2016-02-05 04:58:10
22254    16695    929    2016-02-17 08:16:02    2016-02-17 08:16:02
22255    12517    737    2015-12-10 16:47:45    2015-12-10 16:47:45
22256    10632    778    2016-03-27 07:34:34    2016-03-27 07:34:34
22257    17140    672    2015-08-21 05:52:36    2015-08-21 05:52:36
22258    17105    772    2015-07-03 16:40:43    2015-07-03 16:40:43
22259    19570    729    2015-07-06 15:19:55    2015-07-06 15:19:55
22260    19892    619    2015-07-10 07:59:26    2015-07-10 07:59:26
22261    17165    585    2015-12-24 18:27:59    2015-12-24 18:27:59
22262    19634    915    2015-06-23 05:42:35    2015-06-23 05:42:35
22263    19568    820    2016-02-04 20:18:34    2016-02-04 20:18:34
22264    16331    659    2015-10-26 20:21:34    2015-10-26 20:21:34
22265    18310    633    2016-03-27 15:33:54    2016-03-27 15:33:54
22266    10737    666    2016-04-11 12:53:50    2016-04-11 12:53:50
22267    19876    859    2015-12-25 12:34:41    2015-12-25 12:34:41
22268    17262    703    2016-04-16 10:58:50    2016-04-16 10:58:50
22269    18824    494    2016-02-04 02:53:52    2016-02-04 02:53:52
22270    11454    791    2015-10-09 05:01:28    2015-10-09 05:01:28
22271    14625    906    2015-10-17 03:50:55    2015-10-17 03:50:55
22272    13245    733    2016-04-02 17:49:41    2016-04-02 17:49:41
22273    16001    940    2015-07-08 17:53:15    2015-07-08 17:53:15
22274    17200    628    2015-12-31 07:55:09    2015-12-31 07:55:09
22275    14289    624    2015-07-12 17:47:36    2015-07-12 17:47:36
22276    10034    920    2015-12-12 21:35:09    2015-12-12 21:35:09
22277    14077    707    2016-02-01 09:47:17    2016-02-01 09:47:17
22278    10370    956    2016-01-06 03:24:04    2016-01-06 03:24:04
22279    19491    832    2015-08-27 13:10:59    2015-08-27 13:10:59
22280    17255    752    2015-09-23 07:05:16    2015-09-23 07:05:16
22281    18899    737    2015-10-22 06:47:05    2015-10-22 06:47:05
22282    10824    823    2015-12-12 21:03:33    2015-12-12 21:03:33
22283    16793    728    2015-09-19 01:58:17    2015-09-19 01:58:17
22284    10063    516    2015-06-08 15:56:17    2015-06-08 15:56:17
22285    17525    623    2015-06-06 15:38:45    2015-06-06 15:38:45
22286    15620    745    2015-11-08 17:49:56    2015-11-08 17:49:56
22287    18676    927    2015-09-14 18:15:40    2015-09-14 18:15:40
22288    13007    911    2015-12-09 08:35:26    2015-12-09 08:35:26
22289    16276    767    2016-03-01 12:43:05    2016-03-01 12:43:05
22290    15730    544    2015-10-31 04:54:44    2015-10-31 04:54:44
22291    10047    589    2015-09-03 07:48:30    2015-09-03 07:48:30
22292    18392    855    2016-01-17 21:43:05    2016-01-17 21:43:05
22293    16731    793    2016-03-10 16:01:49    2016-03-10 16:01:49
22294    16168    829    2015-06-08 02:40:07    2015-06-08 02:40:07
22295    17916    793    2015-11-08 02:23:48    2015-11-08 02:23:48
22296    17944    858    2015-07-12 08:24:46    2015-07-12 08:24:46
22297    15014    791    2015-09-30 23:54:48    2015-09-30 23:54:48
22298    13044    913    2016-04-07 18:57:18    2016-04-07 18:57:18
22299    13416    751    2015-09-24 16:09:23    2015-09-24 16:09:23
22300    18083    602    2016-03-10 07:12:57    2016-03-10 07:12:57
22301    17948    813    2015-11-07 00:37:47    2015-11-07 00:37:47
22302    17743    720    2015-06-20 03:29:35    2015-06-20 03:29:35
22303    16683    905    2016-03-25 14:59:18    2016-03-25 14:59:18
22304    13596    548    2015-05-24 22:13:18    2015-05-24 22:13:18
22305    18773    742    2015-04-27 16:47:07    2015-04-27 16:47:07
22306    11640    548    2016-02-17 10:17:34    2016-02-17 10:17:34
22307    14601    853    2015-05-11 13:07:44    2015-05-11 13:07:44
22308    16806    888    2016-03-12 12:09:52    2016-03-12 12:09:52
22309    10272    946    2016-03-08 06:14:30    2016-03-08 06:14:30
22310    14534    780    2015-12-06 08:12:35    2015-12-06 08:12:35
22311    13729    752    2015-12-09 05:00:53    2015-12-09 05:00:53
22312    16589    694    2016-04-04 22:46:45    2016-04-04 22:46:45
22313    18377    960    2016-04-17 21:50:05    2016-04-17 21:50:05
22314    13779    735    2015-11-03 03:28:16    2015-11-03 03:28:16
22315    10261    726    2015-08-05 20:57:01    2015-08-05 20:57:01
22316    10392    917    2015-06-07 04:08:23    2015-06-07 04:08:23
22317    10755    826    2015-08-30 05:15:23    2015-08-30 05:15:23
22318    15578    594    2016-02-11 20:48:09    2016-02-11 20:48:09
22319    10496    730    2016-03-05 05:29:16    2016-03-05 05:29:16
22320    19946    936    2016-03-01 02:47:14    2016-03-01 02:47:14
22321    16784    473    2015-11-17 05:33:41    2015-11-17 05:33:41
22322    16227    771    2015-07-17 20:46:21    2015-07-17 20:46:21
22323    11316    569    2016-04-11 15:01:29    2016-04-11 15:01:29
22324    13091    723    2015-06-16 15:57:00    2015-06-16 15:57:00
22325    18513    710    2016-04-19 06:50:14    2016-04-19 06:50:14
22326    19732    825    2015-12-05 15:23:14    2015-12-05 15:23:14
22327    10175    913    2015-10-12 01:01:26    2015-10-12 01:01:26
22328    11892    795    2015-11-12 17:23:50    2015-11-12 17:23:50
22329    10190    947    2015-10-13 08:35:50    2015-10-13 08:35:50
22330    14481    792    2015-10-03 03:43:07    2015-10-03 03:43:07
22331    10196    611    2015-09-11 18:11:16    2015-09-11 18:11:16
22332    10882    627    2015-10-02 04:24:03    2015-10-02 04:24:03
22333    10192    810    2015-08-07 20:03:05    2015-08-07 20:03:05
22334    16011    873    2016-04-02 05:50:43    2016-04-02 05:50:43
22335    19347    547    2015-08-12 16:15:35    2015-08-12 16:15:35
22336    16752    837    2015-07-21 22:19:50    2015-07-21 22:19:50
22337    18674    821    2016-01-28 07:46:43    2016-01-28 07:46:43
22338    14907    492    2015-12-11 01:36:08    2015-12-11 01:36:08
22339    16838    885    2015-12-03 09:49:19    2015-12-03 09:49:19
22340    10179    897    2015-05-25 20:00:29    2015-05-25 20:00:29
22341    10913    878    2015-10-13 10:50:51    2015-10-13 10:50:51
22342    10841    682    2015-09-26 06:13:40    2015-09-26 06:13:40
22343    19020    680    2015-09-04 04:57:28    2015-09-04 04:57:28
22344    11683    960    2015-08-06 08:23:10    2015-08-06 08:23:10
22345    10269    626    2015-12-17 05:54:07    2015-12-17 05:54:07
22346    11854    905    2015-12-27 01:35:39    2015-12-27 01:35:39
22347    14822    825    2016-03-08 15:09:19    2016-03-08 15:09:19
22348    12870    830    2015-10-11 12:27:57    2015-10-11 12:27:57
22349    16426    926    2015-12-26 14:14:40    2015-12-26 14:14:40
22350    15108    632    2015-11-13 08:57:22    2015-11-13 08:57:22
22351    18813    786    2015-07-30 23:05:32    2015-07-30 23:05:32
22352    12733    871    2015-10-27 21:15:46    2015-10-27 21:15:46
22353    19711    865    2016-01-16 09:14:41    2016-01-16 09:14:41
22354    17836    543    2016-02-20 08:04:58    2016-02-20 08:04:58
22355    12314    860    2015-12-21 06:28:48    2015-12-21 06:28:48
22356    13056    780    2015-11-02 10:14:27    2015-11-02 10:14:27
22357    12524    477    2015-06-02 19:05:04    2015-06-02 19:05:04
22358    10461    901    2015-07-04 00:34:21    2015-07-04 00:34:21
22359    15111    595    2015-11-26 15:32:13    2015-11-26 15:32:13
22360    13920    943    2015-12-11 16:17:33    2015-12-11 16:17:33
22361    17190    509    2015-06-11 10:47:24    2015-06-11 10:47:24
22362    10795    649    2015-08-02 20:03:29    2015-08-02 20:03:29
22363    16231    780    2015-11-19 11:55:01    2015-11-19 11:55:01
22364    18093    759    2015-06-15 03:10:58    2015-06-15 03:10:58
22365    18390    929    2016-04-01 02:03:04    2016-04-01 02:03:04
22366    18480    625    2016-02-15 02:50:06    2016-02-15 02:50:06
22367    14797    926    2015-11-29 23:54:02    2015-11-29 23:54:02
22368    15583    743    2016-02-04 12:08:59    2016-02-04 12:08:59
22369    13972    479    2015-06-24 11:14:11    2015-06-24 11:14:11
22370    15036    748    2015-12-23 08:17:08    2015-12-23 08:17:08
22371    17015    588    2015-10-18 14:26:53    2015-10-18 14:26:53
22372    14299    473    2015-04-22 07:43:15    2015-04-22 07:43:15
22373    12016    553    2015-10-01 09:34:07    2015-10-01 09:34:07
22374    14581    581    2015-11-10 05:35:24    2015-11-10 05:35:24
22375    16583    598    2015-05-22 04:07:07    2015-05-22 04:07:07
22376    10192    842    2015-11-28 05:21:11    2015-11-28 05:21:11
22377    17541    757    2016-02-15 07:45:05    2016-02-15 07:45:05
22378    17720    915    2015-10-26 02:12:16    2015-10-26 02:12:16
22379    10206    598    2015-08-30 19:15:40    2015-08-30 19:15:40
22380    11242    933    2015-10-16 15:22:38    2015-10-16 15:22:38
22381    17810    566    2016-02-22 11:01:34    2016-02-22 11:01:34
22382    18267    959    2015-12-27 17:34:04    2015-12-27 17:34:04
22383    17348    507    2015-05-13 19:05:17    2015-05-13 19:05:17
22384    11235    517    2015-07-23 16:09:59    2015-07-23 16:09:59
22385    12118    563    2015-09-10 21:17:54    2015-09-10 21:17:54
22386    15539    495    2016-02-26 20:06:59    2016-02-26 20:06:59
22387    18165    490    2015-07-14 15:29:05    2015-07-14 15:29:05
22388    13460    875    2015-05-01 16:57:07    2015-05-01 16:57:07
22389    13111    638    2015-06-16 13:33:37    2015-06-16 13:33:37
22390    15015    551    2015-12-31 18:04:01    2015-12-31 18:04:01
22391    14902    583    2015-06-30 11:51:51    2015-06-30 11:51:51
22392    13400    527    2015-11-13 02:49:40    2015-11-13 02:49:40
22393    15824    605    2016-01-30 12:42:03    2016-01-30 12:42:03
22394    19019    719    2015-06-25 23:05:22    2015-06-25 23:05:22
22395    10015    513    2015-06-26 14:23:42    2015-06-26 14:23:42
22396    11733    884    2015-07-29 22:07:04    2015-07-29 22:07:04
22397    17006    653    2015-12-18 22:36:05    2015-12-18 22:36:05
22398    18402    536    2015-11-28 05:56:24    2015-11-28 05:56:24
22399    17137    771    2015-05-15 23:06:24    2015-05-15 23:06:24
22400    17780    784    2016-02-21 07:41:50    2016-02-21 07:41:50
22401    17007    744    2016-02-01 22:16:55    2016-02-01 22:16:55
22402    10669    946    2016-02-11 06:39:22    2016-02-11 06:39:22
22403    13885    878    2015-05-09 13:12:18    2015-05-09 13:12:18
22404    17555    667    2016-03-22 01:44:41    2016-03-22 01:44:41
22405    16880    760    2016-02-11 04:08:36    2016-02-11 04:08:36
22406    13905    931    2015-11-29 19:57:46    2015-11-29 19:57:46
22407    13944    869    2016-01-11 16:32:34    2016-01-11 16:32:34
22408    10211    942    2015-06-09 23:28:37    2015-06-09 23:28:37
22409    18808    562    2015-11-30 20:39:58    2015-11-30 20:39:58
22410    19463    598    2016-03-24 11:11:46    2016-03-24 11:11:46
22411    17298    918    2016-02-10 08:21:48    2016-02-10 08:21:48
22412    11076    687    2015-05-13 04:05:16    2015-05-13 04:05:16
22413    10721    712    2016-03-27 16:01:39    2016-03-27 16:01:39
22414    14117    775    2015-12-26 13:06:00    2015-12-26 13:06:00
22415    19838    884    2016-02-20 23:54:48    2016-02-20 23:54:48
22416    19983    690    2016-03-04 12:31:16    2016-03-04 12:31:16
22417    13551    732    2015-07-28 00:50:15    2015-07-28 00:50:15
22418    12825    477    2015-04-30 11:28:31    2015-04-30 11:28:31
22419    18005    581    2016-02-04 19:15:47    2016-02-04 19:15:47
22420    10196    846    2016-02-26 08:56:34    2016-02-26 08:56:34
22421    17954    934    2016-02-25 22:43:58    2016-02-25 22:43:58
22422    19189    846    2015-04-26 14:22:55    2015-04-26 14:22:55
22423    18498    905    2015-12-28 07:05:48    2015-12-28 07:05:48
22424    12843    649    2015-07-31 13:03:01    2015-07-31 13:03:01
22425    13789    562    2015-07-04 23:58:53    2015-07-04 23:58:53
22426    16767    845    2015-05-04 12:49:43    2015-05-04 12:49:43
22427    12251    908    2016-01-23 21:23:40    2016-01-23 21:23:40
22428    16837    729    2015-06-18 23:30:14    2015-06-18 23:30:14
22429    19841    714    2015-06-02 03:46:31    2015-06-02 03:46:31
22430    17430    567    2015-08-05 14:32:25    2015-08-05 14:32:25
22431    17891    912    2016-03-11 04:37:54    2016-03-11 04:37:54
22432    14348    755    2015-06-01 18:30:58    2015-06-01 18:30:58
22433    12797    694    2016-04-09 13:03:59    2016-04-09 13:03:59
22434    14327    545    2016-02-03 07:44:37    2016-02-03 07:44:37
22435    14715    604    2015-06-17 12:49:11    2015-06-17 12:49:11
22436    17533    620    2016-01-13 18:16:40    2016-01-13 18:16:40
22437    10938    864    2016-01-03 16:15:43    2016-01-03 16:15:43
22438    18572    774    2016-04-12 07:48:20    2016-04-12 07:48:20
22439    16354    785    2015-06-07 21:45:47    2015-06-07 21:45:47
22440    10928    938    2015-10-18 14:44:28    2015-10-18 14:44:28
22441    18257    864    2015-05-26 14:13:31    2015-05-26 14:13:31
22442    18143    516    2015-11-06 20:10:59    2015-11-06 20:10:59
22443    12456    697    2015-05-18 04:55:41    2015-05-18 04:55:41
22444    16483    812    2015-11-20 06:34:32    2015-11-20 06:34:32
22445    16262    622    2015-10-19 13:08:25    2015-10-19 13:08:25
22446    12424    953    2015-05-10 18:00:57    2015-05-10 18:00:57
22447    11103    911    2016-03-02 06:03:05    2016-03-02 06:03:05
22448    15648    531    2015-09-18 01:13:34    2015-09-18 01:13:34
22449    18542    943    2015-12-22 01:49:22    2015-12-22 01:49:22
22450    16773    845    2015-04-30 19:08:58    2015-04-30 19:08:58
22451    13367    814    2016-02-24 08:11:31    2016-02-24 08:11:31
22452    14452    651    2015-08-19 05:01:19    2015-08-19 05:01:19
22453    11916    647    2016-02-14 14:15:09    2016-02-14 14:15:09
22454    16169    864    2015-11-27 09:54:29    2015-11-27 09:54:29
22455    10338    639    2015-08-17 16:43:23    2015-08-17 16:43:23
22456    19699    541    2016-02-03 06:24:50    2016-02-03 06:24:50
22457    10219    590    2015-06-06 22:57:03    2015-06-06 22:57:03
22458    10082    515    2015-06-14 12:30:25    2015-06-14 12:30:25
22459    18152    741    2015-11-15 09:47:36    2015-11-15 09:47:36
22460    13234    909    2016-02-23 06:35:24    2016-02-23 06:35:24
22461    12388    935    2015-06-14 12:27:35    2015-06-14 12:27:35
22462    16859    649    2015-11-28 00:35:18    2015-11-28 00:35:18
22463    14753    540    2016-03-23 21:07:13    2016-03-23 21:07:13
22464    12721    493    2015-06-06 06:44:34    2015-06-06 06:44:34
22465    10737    876    2016-01-29 08:54:02    2016-01-29 08:54:02
22466    13476    765    2016-01-27 12:06:11    2016-01-27 12:06:11
22467    12227    673    2015-12-01 14:21:01    2015-12-01 14:21:01
22468    14094    876    2015-10-27 14:12:16    2015-10-27 14:12:16
22469    10180    475    2016-02-09 21:12:54    2016-02-09 21:12:54
22470    11258    567    2015-05-17 21:20:34    2015-05-17 21:20:34
22471    16553    951    2016-02-15 07:51:41    2016-02-15 07:51:41
22472    10583    725    2015-08-09 19:32:23    2015-08-09 19:32:23
22473    12607    797    2016-04-04 09:59:38    2016-04-04 09:59:38
22474    12425    716    2016-02-13 04:07:56    2016-02-13 04:07:56
22475    16414    661    2015-05-12 06:55:43    2015-05-12 06:55:43
22476    11274    491    2015-12-12 17:44:31    2015-12-12 17:44:31
22477    10976    497    2016-02-09 10:59:39    2016-02-09 10:59:39
22478    15567    722    2016-02-03 20:03:55    2016-02-03 20:03:55
22479    10633    889    2015-09-17 06:15:34    2015-09-17 06:15:34
22480    19042    510    2015-09-30 07:41:40    2015-09-30 07:41:40
22481    17915    667    2015-10-09 13:18:41    2015-10-09 13:18:41
22482    11407    847    2015-09-11 08:31:54    2015-09-11 08:31:54
22483    10107    577    2015-05-24 07:48:10    2015-05-24 07:48:10
22484    18036    490    2016-03-11 02:59:24    2016-03-11 02:59:24
22485    19616    945    2015-06-19 19:28:34    2015-06-19 19:28:34
22486    17874    882    2015-12-08 08:41:37    2015-12-08 08:41:37
22487    19627    495    2015-10-24 18:46:21    2015-10-24 18:46:21
22488    17418    857    2016-03-01 21:26:16    2016-03-01 21:26:16
22489    15176    680    2015-07-03 08:59:20    2015-07-03 08:59:20
22490    15362    958    2016-03-31 22:18:24    2016-03-31 22:18:24
22491    10494    941    2015-10-26 06:01:45    2015-10-26 06:01:45
22492    13841    699    2016-01-26 21:40:41    2016-01-26 21:40:41
22493    16356    626    2015-11-06 21:41:59    2015-11-06 21:41:59
22494    15641    498    2016-02-17 06:01:22    2016-02-17 06:01:22
22495    19029    920    2015-05-16 08:34:24    2015-05-16 08:34:24
22496    15228    772    2016-04-13 08:34:05    2016-04-13 08:34:05
22497    14680    828    2015-08-17 12:41:10    2015-08-17 12:41:10
22498    13717    775    2016-04-07 11:02:21    2016-04-07 11:02:21
22499    12422    831    2015-04-25 16:01:54    2015-04-25 16:01:54
22500    16305    905    2016-04-10 03:13:54    2016-04-10 03:13:54
22501    19875    567    2016-04-16 22:29:11    2016-04-16 22:29:11
22502    12048    636    2015-11-11 04:24:08    2015-11-11 04:24:08
22503    19297    748    2015-09-23 20:51:10    2015-09-23 20:51:10
22504    14039    650    2015-06-25 04:02:23    2015-06-25 04:02:23
22505    10557    544    2016-03-16 11:32:49    2016-03-16 11:32:49
22506    12175    826    2016-03-18 20:53:10    2016-03-18 20:53:10
22507    12815    891    2016-03-11 19:03:28    2016-03-11 19:03:28
22508    19261    793    2015-08-22 07:08:21    2015-08-22 07:08:21
22509    14501    540    2015-07-22 09:43:51    2015-07-22 09:43:51
22510    14463    862    2015-09-01 22:31:19    2015-09-01 22:31:19
22511    12965    747    2015-06-18 03:50:20    2015-06-18 03:50:20
22512    19635    633    2015-11-19 19:00:37    2015-11-19 19:00:37
22513    10288    724    2015-10-26 05:32:06    2015-10-26 05:32:06
22514    18114    607    2015-06-24 02:41:48    2015-06-24 02:41:48
22515    12796    500    2016-01-01 23:15:15    2016-01-01 23:15:15
22516    10674    767    2016-03-16 11:01:15    2016-03-16 11:01:15
22517    16982    809    2016-02-12 18:55:45    2016-02-12 18:55:45
22518    13139    887    2015-05-06 05:35:26    2015-05-06 05:35:26
22519    16019    774    2015-10-24 23:10:52    2015-10-24 23:10:52
22520    13260    938    2016-01-26 21:20:04    2016-01-26 21:20:04
22521    17331    948    2015-11-30 08:04:20    2015-11-30 08:04:20
22522    13190    762    2015-07-26 05:06:23    2015-07-26 05:06:23
22523    18792    896    2015-06-24 10:31:22    2015-06-24 10:31:22
22524    10811    779    2016-01-12 17:24:38    2016-01-12 17:24:38
22525    15698    593    2015-08-23 06:24:47    2015-08-23 06:24:47
22526    15510    695    2016-03-30 16:53:52    2016-03-30 16:53:52
22527    10967    836    2016-01-06 04:19:33    2016-01-06 04:19:33
22528    12228    766    2015-12-06 21:17:01    2015-12-06 21:17:01
22529    16614    495    2015-05-04 14:31:24    2015-05-04 14:31:24
22530    12432    693    2015-06-12 12:57:16    2015-06-12 12:57:16
22531    15079    802    2015-11-05 03:55:50    2015-11-05 03:55:50
22532    15885    822    2015-12-02 15:46:37    2015-12-02 15:46:37
22533    16610    561    2016-04-17 14:29:32    2016-04-17 14:29:32
22534    11309    926    2015-05-02 08:22:02    2015-05-02 08:22:02
22535    11007    725    2015-12-20 21:11:19    2015-12-20 21:11:19
22536    14957    474    2015-05-30 07:32:30    2015-05-30 07:32:30
22537    10018    477    2015-11-11 19:02:51    2015-11-11 19:02:51
22538    10588    642    2016-02-22 20:56:32    2016-02-22 20:56:32
22539    18133    511    2016-04-19 15:12:45    2016-04-19 15:12:45
22540    10349    952    2015-05-22 03:39:57    2015-05-22 03:39:57
22541    10526    609    2015-10-28 07:30:24    2015-10-28 07:30:24
22542    13875    921    2015-08-24 04:38:54    2015-08-24 04:38:54
22543    11416    526    2015-11-23 08:01:55    2015-11-23 08:01:55
22544    19661    802    2015-07-26 04:48:25    2015-07-26 04:48:25
22545    12657    701    2016-01-02 18:24:51    2016-01-02 18:24:51
22546    14464    544    2015-08-27 02:52:00    2015-08-27 02:52:00
22547    16526    534    2016-03-19 11:24:44    2016-03-19 11:24:44
22548    17915    678    2016-01-07 02:36:00    2016-01-07 02:36:00
22549    13098    599    2016-02-06 08:48:52    2016-02-06 08:48:52
22550    18233    615    2015-08-15 03:46:13    2015-08-15 03:46:13
22551    14552    687    2015-11-24 07:46:25    2015-11-24 07:46:25
22552    11371    554    2016-04-15 03:57:37    2016-04-15 03:57:37
22553    17523    957    2016-03-20 16:22:00    2016-03-20 16:22:00
22554    11615    593    2015-10-26 10:32:21    2015-10-26 10:32:21
22555    18810    655    2015-09-03 17:07:30    2015-09-03 17:07:30
22556    18595    670    2015-08-28 15:40:47    2015-08-28 15:40:47
22557    11416    738    2015-05-23 14:53:47    2015-05-23 14:53:47
22558    13476    771    2015-06-07 05:58:25    2015-06-07 05:58:25
22559    10039    734    2016-03-04 19:00:46    2016-03-04 19:00:46
22560    15606    654    2015-10-27 20:40:19    2015-10-27 20:40:19
22561    17829    711    2015-05-14 23:59:26    2015-05-14 23:59:26
22562    13625    767    2015-12-28 08:52:36    2015-12-28 08:52:36
22563    13683    649    2016-02-01 01:19:55    2016-02-01 01:19:55
22564    19964    543    2015-05-27 19:18:04    2015-05-27 19:18:04
22565    12283    876    2015-07-13 10:12:43    2015-07-13 10:12:43
22566    19695    864    2015-04-26 22:07:19    2015-04-26 22:07:19
22567    19492    568    2015-07-16 06:21:22    2015-07-16 06:21:22
22568    18397    687    2015-06-25 23:47:32    2015-06-25 23:47:32
22569    14409    672    2015-07-31 13:52:49    2015-07-31 13:52:49
22570    17422    718    2015-05-11 03:13:43    2015-05-11 03:13:43
22571    14710    497    2015-10-04 20:17:15    2015-10-04 20:17:15
22572    15076    540    2016-01-28 19:28:28    2016-01-28 19:28:28
22573    12632    527    2016-01-28 23:39:55    2016-01-28 23:39:55
22574    19646    534    2016-01-09 00:58:52    2016-01-09 00:58:52
22575    16303    633    2016-01-01 07:10:33    2016-01-01 07:10:33
22576    14462    587    2016-03-18 23:50:36    2016-03-18 23:50:36
22577    17920    505    2015-08-23 22:30:12    2015-08-23 22:30:12
22578    10712    733    2015-12-12 13:45:26    2015-12-12 13:45:26
22579    12687    853    2015-09-27 02:35:37    2015-09-27 02:35:37
22580    13930    771    2016-03-30 19:26:10    2016-03-30 19:26:10
22581    11065    817    2015-11-21 19:52:20    2015-11-21 19:52:20
22582    12036    528    2016-04-19 21:35:29    2016-04-19 21:35:29
22583    19592    889    2015-12-12 11:57:42    2015-12-12 11:57:42
22584    13076    542    2016-01-05 10:33:04    2016-01-05 10:33:04
22585    11294    887    2015-06-24 01:22:07    2015-06-24 01:22:07
22586    13220    888    2015-06-01 18:35:08    2015-06-01 18:35:08
22587    11510    954    2016-01-28 07:08:18    2016-01-28 07:08:18
22588    14706    611    2015-08-14 00:18:08    2015-08-14 00:18:08
22589    15566    703    2015-09-08 06:00:53    2015-09-08 06:00:53
22590    11681    843    2015-12-16 08:39:35    2015-12-16 08:39:35
22591    19584    597    2015-10-22 21:35:06    2015-10-22 21:35:06
22592    11273    915    2016-03-25 03:50:43    2016-03-25 03:50:43
22593    19758    546    2016-02-29 02:46:28    2016-02-29 02:46:28
22594    16839    643    2015-10-09 08:40:58    2015-10-09 08:40:58
22595    14525    737    2015-05-06 23:47:03    2015-05-06 23:47:03
22596    16125    481    2016-01-26 07:55:40    2016-01-26 07:55:40
22597    12449    919    2016-01-12 22:55:22    2016-01-12 22:55:22
22598    15257    565    2015-06-25 22:38:55    2015-06-25 22:38:55
22599    15708    496    2015-09-17 20:57:14    2015-09-17 20:57:14
22600    12361    916    2015-12-30 23:37:53    2015-12-30 23:37:53
22601    17717    827    2016-03-18 02:00:28    2016-03-18 02:00:28
22602    19687    500    2015-08-26 15:58:23    2015-08-26 15:58:23
22603    13277    856    2016-03-12 16:14:43    2016-03-12 16:14:43
22604    11633    730    2015-07-01 23:48:02    2015-07-01 23:48:02
22605    15253    696    2016-01-27 14:17:00    2016-01-27 14:17:00
22606    11668    864    2015-09-01 19:38:41    2015-09-01 19:38:41
22607    18068    855    2015-08-14 02:12:55    2015-08-14 02:12:55
22608    19997    902    2015-09-07 03:31:07    2015-09-07 03:31:07
22609    13306    626    2015-05-22 21:02:08    2015-05-22 21:02:08
22610    19417    498    2015-05-05 02:36:32    2015-05-05 02:36:32
22611    14977    903    2015-05-22 09:05:46    2015-05-22 09:05:46
22612    16431    913    2015-10-05 20:18:05    2015-10-05 20:18:05
22613    16045    781    2016-03-07 15:56:14    2016-03-07 15:56:14
22614    19176    754    2016-04-16 20:37:21    2016-04-16 20:37:21
22615    19033    642    2015-07-10 16:54:09    2015-07-10 16:54:09
22616    14890    603    2016-03-12 05:28:23    2016-03-12 05:28:23
22617    12288    570    2015-11-14 16:36:05    2015-11-14 16:36:05
22618    15182    728    2015-04-24 15:53:58    2015-04-24 15:53:58
22619    11872    670    2015-10-26 03:54:58    2015-10-26 03:54:58
22620    18046    488    2015-07-17 06:49:24    2015-07-17 06:49:24
22621    13997    593    2016-02-12 10:15:33    2016-02-12 10:15:33
22622    11547    653    2015-07-01 04:22:59    2015-07-01 04:22:59
22623    19276    598    2015-10-13 13:52:11    2015-10-13 13:52:11
22624    17805    517    2015-06-24 07:53:54    2015-06-24 07:53:54
22625    17556    648    2015-10-30 15:49:44    2015-10-30 15:49:44
22626    18977    954    2015-12-31 10:20:33    2015-12-31 10:20:33
22627    17038    751    2016-01-25 18:25:09    2016-01-25 18:25:09
22628    14391    644    2015-08-06 09:02:16    2015-08-06 09:02:16
22629    12817    498    2016-04-10 00:22:00    2016-04-10 00:22:00
22630    13039    816    2015-11-12 13:38:02    2015-11-12 13:38:02
22631    19138    678    2016-03-04 22:52:01    2016-03-04 22:52:01
22632    11394    923    2016-01-13 01:09:32    2016-01-13 01:09:32
22633    18162    884    2015-08-07 12:20:05    2015-08-07 12:20:05
22634    10201    678    2015-07-16 08:19:27    2015-07-16 08:19:27
22635    13933    837    2015-10-09 09:13:53    2015-10-09 09:13:53
22636    10520    616    2016-03-16 01:59:32    2016-03-16 01:59:32
22637    16858    785    2015-06-26 14:58:09    2015-06-26 14:58:09
22638    12312    788    2016-01-21 15:39:10    2016-01-21 15:39:10
22639    16431    817    2015-05-18 13:06:57    2015-05-18 13:06:57
22640    16648    811    2015-11-12 13:51:22    2015-11-12 13:51:22
22641    11345    601    2015-09-12 10:01:04    2015-09-12 10:01:04
22642    13911    617    2015-07-03 07:20:41    2015-07-03 07:20:41
22643    11869    692    2016-03-24 10:04:48    2016-03-24 10:04:48
22644    12409    644    2016-03-09 13:42:43    2016-03-09 13:42:43
22645    17892    669    2016-01-11 09:18:31    2016-01-11 09:18:31
22646    11789    634    2016-02-01 03:56:09    2016-02-01 03:56:09
22647    13484    685    2015-05-07 01:14:57    2015-05-07 01:14:57
22648    16146    823    2015-06-16 18:17:13    2015-06-16 18:17:13
22649    11681    727    2015-05-01 06:04:20    2015-05-01 06:04:20
22650    14041    902    2015-12-20 14:15:35    2015-12-20 14:15:35
22651    10459    518    2015-08-13 07:56:36    2015-08-13 07:56:36
22652    19144    736    2015-07-08 06:25:10    2015-07-08 06:25:10
22653    10082    928    2015-08-16 07:02:50    2015-08-16 07:02:50
22654    13790    651    2015-12-18 20:15:56    2015-12-18 20:15:56
22655    16898    905    2015-10-06 06:35:33    2015-10-06 06:35:33
22656    10892    867    2015-12-09 02:05:31    2015-12-09 02:05:31
22657    16113    519    2016-02-07 11:35:55    2016-02-07 11:35:55
22658    12353    537    2016-04-07 12:16:34    2016-04-07 12:16:34
22659    13334    773    2015-05-26 21:08:50    2015-05-26 21:08:50
22660    17545    637    2016-03-27 15:10:18    2016-03-27 15:10:18
22661    13698    642    2015-08-08 09:28:06    2015-08-08 09:28:06
22662    10691    892    2016-01-09 09:50:37    2016-01-09 09:50:37
22663    19426    728    2015-06-19 07:53:15    2015-06-19 07:53:15
22664    11808    481    2016-01-29 03:21:36    2016-01-29 03:21:36
22665    16199    741    2015-06-20 06:34:27    2015-06-20 06:34:27
22666    15241    658    2015-08-09 22:52:15    2015-08-09 22:52:15
22667    17109    787    2016-04-01 04:18:18    2016-04-01 04:18:18
22668    13171    581    2016-02-18 13:32:49    2016-02-18 13:32:49
22669    10405    823    2016-02-01 07:14:27    2016-02-01 07:14:27
22670    13968    547    2015-08-04 00:46:24    2015-08-04 00:46:24
22671    14159    585    2015-05-27 17:04:22    2015-05-27 17:04:22
22672    18898    772    2015-05-12 20:37:35    2015-05-12 20:37:35
22673    10704    647    2016-03-24 16:18:02    2016-03-24 16:18:02
22674    12979    953    2016-01-04 18:29:53    2016-01-04 18:29:53
22675    18235    705    2016-01-15 22:10:23    2016-01-15 22:10:23
22676    16360    500    2016-02-05 08:45:29    2016-02-05 08:45:29
22677    12136    507    2015-12-11 19:23:52    2015-12-11 19:23:52
22678    15485    904    2016-04-03 02:00:06    2016-04-03 02:00:06
22679    19353    809    2015-11-12 05:18:36    2015-11-12 05:18:36
22680    11344    714    2015-07-18 18:38:35    2015-07-18 18:38:35
22681    10310    675    2016-04-19 20:43:48    2016-04-19 20:43:48
22682    11452    912    2015-12-15 20:23:32    2015-12-15 20:23:32
22683    11687    530    2015-09-20 07:06:17    2015-09-20 07:06:17
22684    11858    673    2016-02-11 02:21:49    2016-02-11 02:21:49
22685    12317    724    2016-03-19 04:49:47    2016-03-19 04:49:47
22686    19797    672    2015-08-25 12:22:52    2015-08-25 12:22:52
22687    15365    872    2015-11-20 14:56:50    2015-11-20 14:56:50
22688    10044    791    2016-04-12 22:22:40    2016-04-12 22:22:40
22689    11233    795    2015-12-14 05:14:13    2015-12-14 05:14:13
22690    18921    614    2015-09-05 11:30:23    2015-09-05 11:30:23
22691    12918    571    2016-02-19 09:01:25    2016-02-19 09:01:25
22692    12438    797    2016-02-12 07:11:06    2016-02-12 07:11:06
22693    12309    732    2015-08-30 04:29:44    2015-08-30 04:29:44
22694    17113    757    2015-05-04 21:12:16    2015-05-04 21:12:16
22695    14392    512    2015-09-01 02:22:33    2015-09-01 02:22:33
22696    15519    711    2015-10-07 00:17:43    2015-10-07 00:17:43
22697    18576    731    2015-05-06 06:14:41    2015-05-06 06:14:41
22698    11488    899    2015-05-30 09:35:01    2015-05-30 09:35:01
22699    14147    775    2015-09-05 12:34:21    2015-09-05 12:34:21
22700    11689    560    2016-02-09 01:02:49    2016-02-09 01:02:49
22701    10426    490    2015-06-16 08:37:18    2015-06-16 08:37:18
22702    13661    871    2016-02-12 19:31:20    2016-02-12 19:31:20
22703    10574    487    2015-11-19 11:29:38    2015-11-19 11:29:38
22704    19272    800    2015-07-22 05:01:14    2015-07-22 05:01:14
22705    11087    541    2015-10-13 01:54:11    2015-10-13 01:54:11
22706    11683    684    2016-02-11 21:20:22    2016-02-11 21:20:22
22707    18535    559    2015-09-04 20:01:11    2015-09-04 20:01:11
22708    13975    846    2015-11-03 03:48:51    2015-11-03 03:48:51
22709    13159    939    2015-08-18 21:42:57    2015-08-18 21:42:57
22710    17422    798    2015-09-28 20:49:06    2015-09-28 20:49:06
22711    13395    618    2015-10-26 21:55:23    2015-10-26 21:55:23
22712    17491    888    2016-01-16 16:33:13    2016-01-16 16:33:13
22713    13549    519    2016-03-04 10:27:42    2016-03-04 10:27:42
22714    17021    698    2015-05-30 07:06:12    2015-05-30 07:06:12
22715    17777    932    2015-07-20 22:15:41    2015-07-20 22:15:41
22716    12163    506    2016-02-07 21:37:28    2016-02-07 21:37:28
22717    14383    848    2015-12-16 08:03:58    2015-12-16 08:03:58
22718    19512    906    2016-01-26 17:50:59    2016-01-26 17:50:59
22719    16109    898    2016-01-17 12:16:42    2016-01-17 12:16:42
22720    19296    622    2015-12-09 22:32:07    2015-12-09 22:32:07
22721    17685    738    2015-11-24 21:36:58    2015-11-24 21:36:58
22722    13533    688    2015-07-08 05:12:12    2015-07-08 05:12:12
22723    10637    618    2015-11-13 12:03:00    2015-11-13 12:03:00
22724    12263    892    2015-06-14 03:26:36    2015-06-14 03:26:36
22725    11681    493    2016-03-13 18:37:58    2016-03-13 18:37:58
22726    14626    633    2015-12-10 09:50:37    2015-12-10 09:50:37
22727    19220    570    2015-11-18 11:11:50    2015-11-18 11:11:50
22728    15740    877    2016-02-09 17:26:14    2016-02-09 17:26:14
22729    15240    674    2016-04-04 16:14:12    2016-04-04 16:14:12
22730    11625    584    2015-11-02 11:09:10    2015-11-02 11:09:10
22731    15184    841    2016-03-20 21:42:18    2016-03-20 21:42:18
22732    12290    519    2015-04-27 01:23:50    2015-04-27 01:23:50
22733    17479    527    2015-05-12 13:44:54    2015-05-12 13:44:54
22734    15123    958    2016-01-02 01:59:12    2016-01-02 01:59:12
22735    19609    584    2015-11-26 10:51:28    2015-11-26 10:51:28
22736    10634    621    2016-02-17 00:19:17    2016-02-17 00:19:17
22737    14152    857    2015-12-15 19:42:38    2015-12-15 19:42:38
22738    11426    468    2015-06-07 17:27:41    2015-06-07 17:27:41
22739    14279    909    2015-07-31 06:43:06    2015-07-31 06:43:06
22740    11278    570    2016-01-06 19:43:26    2016-01-06 19:43:26
22741    15559    477    2015-11-17 06:55:38    2015-11-17 06:55:38
22742    19377    585    2016-02-10 09:19:17    2016-02-10 09:19:17
22743    12072    695    2015-06-20 15:25:11    2015-06-20 15:25:11
22744    16715    709    2015-11-25 21:45:57    2015-11-25 21:45:57
22745    15140    601    2016-03-21 08:53:35    2016-03-21 08:53:35
22746    11892    740    2015-10-03 16:36:52    2015-10-03 16:36:52
22747    15025    765    2015-11-01 06:04:51    2015-11-01 06:04:51
22748    16115    831    2016-01-20 15:55:27    2016-01-20 15:55:27
22749    16200    711    2016-02-01 14:33:56    2016-02-01 14:33:56
22750    16073    710    2015-12-24 17:19:37    2015-12-24 17:19:37
22751    18475    731    2015-05-18 01:51:35    2015-05-18 01:51:35
22752    17634    935    2015-08-25 23:01:26    2015-08-25 23:01:26
22753    16435    840    2015-08-22 09:17:53    2015-08-22 09:17:53
22754    10294    533    2015-10-09 08:20:36    2015-10-09 08:20:36
22755    19963    877    2015-06-24 17:09:49    2015-06-24 17:09:49
22756    15982    497    2015-07-05 22:24:13    2015-07-05 22:24:13
22757    13932    569    2015-09-21 11:43:20    2015-09-21 11:43:20
22758    12671    842    2015-12-19 09:56:27    2015-12-19 09:56:27
22759    10073    958    2015-12-31 00:22:32    2015-12-31 00:22:32
22760    10615    812    2016-03-06 23:29:14    2016-03-06 23:29:14
22761    13910    535    2016-02-02 09:28:04    2016-02-02 09:28:04
22762    14942    627    2016-02-17 14:38:16    2016-02-17 14:38:16
22763    11267    902    2015-05-24 05:52:05    2015-05-24 05:52:05
22764    13364    872    2015-09-15 14:11:05    2015-09-15 14:11:05
22765    14437    608    2015-11-14 06:31:50    2015-11-14 06:31:50
22766    19931    577    2016-02-27 22:12:34    2016-02-27 22:12:34
22767    15423    598    2015-10-06 16:03:28    2015-10-06 16:03:28
22768    12998    855    2016-03-29 03:10:05    2016-03-29 03:10:05
22769    15800    709    2015-12-04 00:00:49    2015-12-04 00:00:49
22770    10609    612    2016-03-21 04:27:00    2016-03-21 04:27:00
22771    13619    619    2016-04-01 23:35:32    2016-04-01 23:35:32
22772    11814    471    2015-08-11 01:34:47    2015-08-11 01:34:47
22773    15071    875    2015-09-14 04:20:46    2015-09-14 04:20:46
22774    15300    758    2015-07-30 22:37:16    2015-07-30 22:37:16
22775    16493    725    2015-06-23 22:30:34    2015-06-23 22:30:34
22776    18299    741    2015-12-08 22:56:16    2015-12-08 22:56:16
22777    11109    787    2015-12-11 08:03:18    2015-12-11 08:03:18
22778    19859    776    2015-12-16 06:15:18    2015-12-16 06:15:18
22779    19374    468    2015-12-22 14:06:29    2015-12-22 14:06:29
22780    16513    926    2016-01-13 16:35:30    2016-01-13 16:35:30
22781    15608    802    2015-11-10 04:04:14    2015-11-10 04:04:14
22782    14202    628    2016-01-16 10:45:16    2016-01-16 10:45:16
22783    16239    875    2015-09-28 06:57:08    2015-09-28 06:57:08
22784    16458    635    2015-12-02 12:46:00    2015-12-02 12:46:00
22785    19672    734    2015-06-10 11:14:05    2015-06-10 11:14:05
22786    15730    836    2015-08-20 02:49:15    2015-08-20 02:49:15
22787    17614    617    2016-01-15 13:52:00    2016-01-15 13:52:00
22788    19318    564    2015-06-07 13:58:04    2015-06-07 13:58:04
22789    16035    756    2015-08-14 09:33:14    2015-08-14 09:33:14
22790    11346    606    2016-04-02 08:03:00    2016-04-02 08:03:00
22791    17102    546    2015-05-29 14:19:37    2015-05-29 14:19:37
22792    12578    861    2015-12-03 05:58:04    2015-12-03 05:58:04
22793    12750    570    2016-04-04 06:07:04    2016-04-04 06:07:04
22794    10027    586    2015-06-01 16:36:21    2015-06-01 16:36:21
22795    12860    500    2015-10-15 18:17:45    2015-10-15 18:17:45
22796    19394    776    2016-03-11 03:11:17    2016-03-11 03:11:17
22797    10780    848    2015-05-23 07:52:48    2015-05-23 07:52:48
22798    14664    723    2015-10-06 16:23:21    2015-10-06 16:23:21
22799    15815    897    2015-06-11 08:46:24    2015-06-11 08:46:24
22800    16452    600    2015-12-25 19:06:36    2015-12-25 19:06:36
22801    15108    918    2015-05-23 11:35:54    2015-05-23 11:35:54
22802    16252    791    2015-06-09 02:47:45    2015-06-09 02:47:45
22803    13571    818    2016-03-10 15:25:22    2016-03-10 15:25:22
22804    14639    783    2015-04-23 08:14:13    2015-04-23 08:14:13
22805    14447    715    2015-06-19 02:09:11    2015-06-19 02:09:11
22806    13374    887    2016-02-09 00:59:38    2016-02-09 00:59:38
22807    13463    830    2016-02-15 03:45:52    2016-02-15 03:45:52
22808    15983    806    2015-11-23 18:29:22    2015-11-23 18:29:22
22809    16044    866    2016-03-18 21:28:54    2016-03-18 21:28:54
22810    19720    774    2016-03-06 15:35:24    2016-03-06 15:35:24
22811    11153    911    2015-05-01 00:31:28    2015-05-01 00:31:28
22812    12681    721    2015-11-21 06:41:18    2015-11-21 06:41:18
22813    11113    549    2016-02-29 19:49:39    2016-02-29 19:49:39
22814    11847    901    2015-12-26 02:07:20    2015-12-26 02:07:20
22815    16842    726    2015-05-20 13:39:24    2015-05-20 13:39:24
22816    10274    470    2015-11-19 02:48:58    2015-11-19 02:48:58
22817    18717    680    2016-03-08 16:38:14    2016-03-08 16:38:14
22818    15007    546    2015-12-19 05:45:09    2015-12-19 05:45:09
22819    15940    805    2016-01-14 12:25:38    2016-01-14 12:25:38
22820    18123    752    2016-02-13 14:26:55    2016-02-13 14:26:55
22821    16935    889    2016-01-21 15:45:27    2016-01-21 15:45:27
22822    10035    876    2015-12-20 15:16:37    2015-12-20 15:16:37
22823    17313    909    2016-01-19 03:32:32    2016-01-19 03:32:32
22824    10094    580    2015-09-18 01:13:08    2015-09-18 01:13:08
22825    18527    929    2015-09-08 22:49:13    2015-09-08 22:49:13
22826    18111    606    2016-04-14 03:40:07    2016-04-14 03:40:07
22827    13698    804    2015-12-10 22:50:21    2015-12-10 22:50:21
22828    17638    955    2015-05-27 18:18:24    2015-05-27 18:18:24
22829    18282    648    2015-05-14 06:04:56    2015-05-14 06:04:56
22830    16461    521    2015-10-29 20:00:52    2015-10-29 20:00:52
22831    14579    778    2015-07-10 10:07:57    2015-07-10 10:07:57
22832    12817    625    2015-05-26 09:56:17    2015-05-26 09:56:17
22833    17469    671    2015-12-06 09:32:40    2015-12-06 09:32:40
22834    11090    598    2016-03-15 18:33:14    2016-03-15 18:33:14
22835    19299    793    2016-01-31 02:14:18    2016-01-31 02:14:18
22836    11374    575    2015-08-13 19:06:21    2015-08-13 19:06:21
22837    17242    510    2015-09-20 02:06:35    2015-09-20 02:06:35
22838    15083    730    2015-09-25 16:13:18    2015-09-25 16:13:18
22839    14177    697    2015-06-10 16:31:37    2015-06-10 16:31:37
22840    19453    510    2016-04-14 16:04:34    2016-04-14 16:04:34
22841    15929    833    2015-05-19 08:20:37    2015-05-19 08:20:37
22842    19275    865    2015-07-13 07:47:29    2015-07-13 07:47:29
22843    12906    879    2015-11-24 06:01:11    2015-11-24 06:01:11
22844    13812    672    2015-05-21 16:06:20    2015-05-21 16:06:20
22845    10190    759    2015-12-27 22:27:25    2015-12-27 22:27:25
22846    14971    695    2015-11-20 00:16:11    2015-11-20 00:16:11
22847    16890    801    2015-10-27 14:10:50    2015-10-27 14:10:50
22848    12270    943    2015-11-30 20:59:26    2015-11-30 20:59:26
22849    16706    679    2015-06-30 09:57:55    2015-06-30 09:57:55
22850    11443    854    2015-06-08 08:38:06    2015-06-08 08:38:06
22851    15823    714    2016-01-13 04:20:57    2016-01-13 04:20:57
22852    17927    837    2016-03-28 05:54:25    2016-03-28 05:54:25
22853    10620    809    2015-05-14 10:21:31    2015-05-14 10:21:31
22854    15746    469    2016-01-07 06:05:37    2016-01-07 06:05:37
22855    12589    466    2016-03-19 16:21:30    2016-03-19 16:21:30
22856    15722    553    2015-10-18 06:02:12    2015-10-18 06:02:12
22857    14554    686    2015-11-10 18:05:21    2015-11-10 18:05:21
22858    13223    736    2015-05-30 16:06:02    2015-05-30 16:06:02
22859    11662    708    2015-11-17 18:44:36    2015-11-17 18:44:36
22860    15184    776    2015-04-29 15:40:44    2015-04-29 15:40:44
22861    19797    688    2016-01-18 00:06:39    2016-01-18 00:06:39
22862    19702    787    2015-12-15 17:30:19    2015-12-15 17:30:19
22863    18225    511    2015-11-29 05:56:53    2015-11-29 05:56:53
22864    17302    895    2016-03-03 13:00:50    2016-03-03 13:00:50
22865    10845    705    2015-05-29 06:01:02    2015-05-29 06:01:02
22866    19654    577    2015-10-22 15:09:51    2015-10-22 15:09:51
22867    11580    582    2016-03-29 08:39:43    2016-03-29 08:39:43
22868    17331    788    2016-01-28 23:53:30    2016-01-28 23:53:30
22869    18716    686    2015-06-25 11:02:12    2015-06-25 11:02:12
22870    18523    652    2016-03-31 23:13:37    2016-03-31 23:13:37
22871    18159    931    2015-10-31 14:26:22    2015-10-31 14:26:22
22872    12063    759    2016-02-06 12:05:26    2016-02-06 12:05:26
22873    15236    576    2015-07-19 12:19:20    2015-07-19 12:19:20
22874    19699    488    2015-12-08 20:04:25    2015-12-08 20:04:25
22875    17244    698    2015-06-25 02:53:41    2015-06-25 02:53:41
22876    14494    775    2016-03-18 09:33:22    2016-03-18 09:33:22
22877    12368    605    2015-05-27 23:22:04    2015-05-27 23:22:04
22878    16311    542    2015-10-07 18:11:15    2015-10-07 18:11:15
22879    11211    882    2015-09-01 13:09:08    2015-09-01 13:09:08
22880    14979    939    2016-02-05 23:27:36    2016-02-05 23:27:36
22881    15880    559    2015-11-19 05:11:17    2015-11-19 05:11:17
22882    15297    810    2015-07-09 01:28:33    2015-07-09 01:28:33
22883    18087    678    2015-06-22 06:37:45    2015-06-22 06:37:45
22884    15704    961    2015-06-03 09:15:04    2015-06-03 09:15:04
22885    14853    560    2015-05-13 21:56:05    2015-05-13 21:56:05
22886    17142    529    2016-03-12 08:47:10    2016-03-12 08:47:10
22887    19193    839    2015-09-04 14:48:32    2015-09-04 14:48:32
22888    17900    487    2015-07-10 22:00:06    2015-07-10 22:00:06
22889    10991    579    2016-03-13 12:25:48    2016-03-13 12:25:48
22890    17085    953    2015-07-21 02:09:23    2015-07-21 02:09:23
22891    14762    876    2016-02-03 06:53:57    2016-02-03 06:53:57
22892    16249    519    2015-09-13 03:56:44    2015-09-13 03:56:44
22893    10019    777    2016-03-24 17:34:49    2016-03-24 17:34:49
22894    13163    914    2015-06-14 22:11:38    2015-06-14 22:11:38
22895    15981    745    2015-06-09 05:55:25    2015-06-09 05:55:25
22896    18941    593    2015-07-03 22:30:59    2015-07-03 22:30:59
22897    10801    613    2016-01-17 14:37:13    2016-01-17 14:37:13
22898    12103    893    2015-11-13 05:20:21    2015-11-13 05:20:21
22899    15015    579    2016-03-15 04:27:09    2016-03-15 04:27:09
22900    12363    900    2016-01-14 07:33:41    2016-01-14 07:33:41
22901    13462    855    2015-05-29 07:32:32    2015-05-29 07:32:32
22902    14166    920    2015-07-21 19:32:54    2015-07-21 19:32:54
22903    13530    523    2015-06-24 01:53:07    2015-06-24 01:53:07
22904    18896    667    2015-09-18 14:25:33    2015-09-18 14:25:33
22905    11958    810    2015-11-24 03:11:54    2015-11-24 03:11:54
22906    19728    536    2015-12-01 05:52:58    2015-12-01 05:52:58
22907    12569    782    2015-07-15 09:06:30    2015-07-15 09:06:30
22908    14138    588    2016-01-18 16:28:09    2016-01-18 16:28:09
22909    15974    772    2015-08-15 04:21:20    2015-08-15 04:21:20
22910    10079    589    2016-03-07 16:55:18    2016-03-07 16:55:18
22911    13389    957    2016-02-11 08:29:47    2016-02-11 08:29:47
22912    10807    672    2015-06-23 04:43:26    2015-06-23 04:43:26
22913    19230    505    2016-04-08 11:55:13    2016-04-08 11:55:13
22914    11458    765    2015-05-13 16:15:33    2015-05-13 16:15:33
22915    19502    680    2015-06-04 22:46:41    2015-06-04 22:46:41
22916    16268    838    2016-01-29 07:03:55    2016-01-29 07:03:55
22917    19401    928    2015-11-16 22:06:55    2015-11-16 22:06:55
22918    18174    739    2015-06-03 11:46:50    2015-06-03 11:46:50
22919    16124    911    2015-11-15 19:13:39    2015-11-15 19:13:39
22920    14430    489    2015-06-21 04:06:29    2015-06-21 04:06:29
22921    19643    547    2016-02-02 05:34:50    2016-02-02 05:34:50
22922    17162    646    2016-02-20 17:38:00    2016-02-20 17:38:00
22923    15248    521    2016-02-03 01:28:37    2016-02-03 01:28:37
22924    10074    730    2016-02-24 01:18:32    2016-02-24 01:18:32
22925    17287    562    2015-11-30 18:50:29    2015-11-30 18:50:29
22926    14527    698    2016-03-23 15:23:08    2016-03-23 15:23:08
22927    15506    515    2016-01-30 04:20:50    2016-01-30 04:20:50
22928    17658    475    2015-11-08 14:13:07    2015-11-08 14:13:07
22929    10402    894    2016-01-21 09:55:51    2016-01-21 09:55:51
22930    19959    580    2016-04-02 04:47:27    2016-04-02 04:47:27
22931    10998    606    2016-01-09 00:33:41    2016-01-09 00:33:41
22932    14399    679    2016-01-21 18:44:43    2016-01-21 18:44:43
22933    11625    627    2015-12-31 19:28:36    2015-12-31 19:28:36
22934    14677    924    2015-09-07 18:31:29    2015-09-07 18:31:29
22935    15636    662    2016-04-04 13:50:05    2016-04-04 13:50:05
22936    12315    488    2015-09-05 23:43:52    2015-09-05 23:43:52
22937    14891    582    2015-12-26 16:07:20    2015-12-26 16:07:20
22938    12926    671    2016-03-22 23:04:25    2016-03-22 23:04:25
22939    12425    869    2016-01-01 20:15:02    2016-01-01 20:15:02
22940    15889    949    2015-07-06 04:01:59    2015-07-06 04:01:59
22941    15093    769    2015-07-20 04:51:40    2015-07-20 04:51:40
22942    13691    663    2015-07-22 14:21:57    2015-07-22 14:21:57
22943    19730    724    2016-01-21 23:12:39    2016-01-21 23:12:39
22944    16012    673    2015-12-29 15:10:41    2015-12-29 15:10:41
22945    18131    550    2015-11-12 07:37:31    2015-11-12 07:37:31
22946    10270    834    2015-08-07 21:45:36    2015-08-07 21:45:36
22947    11660    898    2015-11-03 23:40:45    2015-11-03 23:40:45
22948    13611    472    2015-05-04 14:28:47    2015-05-04 14:28:47
22949    13104    777    2015-10-03 00:30:19    2015-10-03 00:30:19
22950    12540    865    2015-11-09 03:57:14    2015-11-09 03:57:14
22951    16406    823    2015-06-13 15:53:52    2015-06-13 15:53:52
22952    17577    577    2016-03-13 13:18:06    2016-03-13 13:18:06
22953    15747    670    2015-09-17 09:50:37    2015-09-17 09:50:37
22954    15816    918    2016-02-01 19:30:46    2016-02-01 19:30:46
22955    16040    733    2015-05-11 22:08:16    2015-05-11 22:08:16
22956    16855    867    2015-05-27 10:19:16    2015-05-27 10:19:16
22957    11803    535    2015-07-30 05:30:51    2015-07-30 05:30:51
22958    12091    742    2016-01-02 11:37:52    2016-01-02 11:37:52
22959    15270    671    2015-12-30 10:39:42    2015-12-30 10:39:42
22960    16187    549    2016-01-31 02:31:34    2016-01-31 02:31:34
22961    17317    921    2016-02-21 09:52:47    2016-02-21 09:52:47
22962    10485    711    2016-03-12 11:05:02    2016-03-12 11:05:02
22963    13526    678    2015-11-11 09:07:12    2015-11-11 09:07:12
22964    10262    570    2015-09-06 05:43:06    2015-09-06 05:43:06
22965    19723    568    2015-07-18 13:10:01    2015-07-18 13:10:01
22966    17977    952    2015-09-15 04:12:24    2015-09-15 04:12:24
22967    11389    791    2016-01-02 09:34:18    2016-01-02 09:34:18
22968    14037    815    2015-09-16 13:29:50    2015-09-16 13:29:50
22969    18145    849    2016-02-23 11:44:35    2016-02-23 11:44:35
22970    19654    756    2015-05-02 11:03:55    2015-05-02 11:03:55
22971    13017    857    2015-04-22 10:20:18    2015-04-22 10:20:18
22972    15386    917    2016-04-18 09:02:00    2016-04-18 09:02:00
22973    15335    788    2016-04-02 22:29:55    2016-04-02 22:29:55
22974    18836    748    2016-01-26 18:38:21    2016-01-26 18:38:21
22975    17323    538    2015-12-29 13:52:07    2015-12-29 13:52:07
22976    12260    579    2016-01-12 17:55:26    2016-01-12 17:55:26
22977    17601    599    2015-11-05 14:09:33    2015-11-05 14:09:33
22978    10830    499    2016-04-13 16:20:27    2016-04-13 16:20:27
22979    11143    635    2015-04-30 10:54:49    2015-04-30 10:54:49
22980    10821    730    2016-01-03 22:03:22    2016-01-03 22:03:22
22981    18233    866    2015-08-19 04:59:34    2015-08-19 04:59:34
22982    10397    874    2016-01-27 14:59:51    2016-01-27 14:59:51
22983    13020    515    2015-06-12 07:48:19    2015-06-12 07:48:19
22984    11758    488    2016-01-06 09:32:58    2016-01-06 09:32:58
22985    10430    465    2015-12-24 02:07:02    2015-12-24 02:07:02
22986    13608    816    2015-10-28 17:19:04    2015-10-28 17:19:04
22987    17712    816    2015-08-12 08:15:40    2015-08-12 08:15:40
22988    14007    680    2016-02-06 05:33:36    2016-02-06 05:33:36
22989    11323    754    2016-01-07 22:59:26    2016-01-07 22:59:26
22990    11429    687    2015-09-16 08:46:11    2015-09-16 08:46:11
22991    12407    857    2015-06-28 07:56:00    2015-06-28 07:56:00
22992    11934    686    2016-04-17 03:07:38    2016-04-17 03:07:38
22993    19970    662    2016-01-19 01:33:53    2016-01-19 01:33:53
22994    12461    702    2016-03-15 10:26:23    2016-03-15 10:26:23
22995    13348    629    2015-08-17 01:46:56    2015-08-17 01:46:56
22996    15709    857    2015-09-16 15:47:14    2015-09-16 15:47:14
22997    17394    837    2016-01-18 13:25:56    2016-01-18 13:25:56
22998    10119    683    2015-06-25 18:01:23    2015-06-25 18:01:23
22999    17224    581    2015-06-21 17:12:36    2015-06-21 17:12:36
23000    14876    919    2015-05-20 01:47:20    2015-05-20 01:47:20
23001    10596    710    2016-02-22 12:53:35    2016-02-22 12:53:35
23002    12880    471    2015-08-31 10:26:47    2015-08-31 10:26:47
23003    16393    619    2015-11-28 06:22:36    2015-11-28 06:22:36
23004    13723    747    2016-01-12 05:08:59    2016-01-12 05:08:59
23005    17750    520    2016-03-02 22:37:51    2016-03-02 22:37:51
23006    17986    568    2016-02-02 17:34:31    2016-02-02 17:34:31
23007    12181    470    2015-12-31 20:10:26    2015-12-31 20:10:26
23008    19325    552    2015-11-15 09:51:56    2015-11-15 09:51:56
23009    18708    621    2015-11-04 02:38:48    2015-11-04 02:38:48
23010    11795    473    2015-08-21 21:06:30    2015-08-21 21:06:30
23011    15140    891    2015-09-15 16:36:40    2015-09-15 16:36:40
23012    15904    713    2015-12-24 18:42:32    2015-12-24 18:42:32
23013    13042    950    2015-06-04 02:49:31    2015-06-04 02:49:31
23014    17193    752    2015-04-27 22:17:28    2015-04-27 22:17:28
23015    14836    837    2015-08-03 00:39:30    2015-08-03 00:39:30
23016    15016    565    2015-06-17 02:55:32    2015-06-17 02:55:32
23017    17008    805    2015-06-03 19:52:53    2015-06-03 19:52:53
23018    17431    680    2015-06-19 23:18:06    2015-06-19 23:18:06
23019    12633    774    2015-06-06 16:14:50    2015-06-06 16:14:50
23020    14822    611    2015-11-02 00:56:01    2015-11-02 00:56:01
23021    16634    715    2015-09-01 03:12:19    2015-09-01 03:12:19
23022    10836    800    2015-12-28 19:46:45    2015-12-28 19:46:45
23023    18953    643    2015-06-26 17:10:16    2015-06-26 17:10:16
23024    10599    935    2016-02-14 20:00:20    2016-02-14 20:00:20
23025    10609    829    2016-03-29 22:11:27    2016-03-29 22:11:27
23026    10261    751    2016-03-29 21:18:28    2016-03-29 21:18:28
23027    17236    814    2015-07-01 03:44:46    2015-07-01 03:44:46
23028    19222    696    2015-08-23 10:30:37    2015-08-23 10:30:37
23029    16247    594    2016-02-14 10:58:16    2016-02-14 10:58:16
23030    12184    511    2015-06-18 05:48:29    2015-06-18 05:48:29
23031    17022    797    2015-09-12 10:49:33    2015-09-12 10:49:33
23032    12932    907    2016-01-26 11:55:06    2016-01-26 11:55:06
23033    10594    817    2016-03-15 08:40:32    2016-03-15 08:40:32
23034    15266    705    2015-12-21 07:26:30    2015-12-21 07:26:30
23035    13647    506    2016-04-18 09:45:03    2016-04-18 09:45:03
23036    14852    679    2016-01-11 13:59:42    2016-01-11 13:59:42
23037    10902    700    2016-01-06 01:00:05    2016-01-06 01:00:05
23038    14603    815    2015-09-09 10:14:11    2015-09-09 10:14:11
23039    12459    741    2016-01-26 03:54:19    2016-01-26 03:54:19
23040    11231    734    2015-11-25 07:53:21    2015-11-25 07:53:21
23041    19234    470    2015-08-24 00:11:16    2015-08-24 00:11:16
23042    14515    595    2015-08-22 04:59:41    2015-08-22 04:59:41
23043    14051    663    2015-08-13 14:55:40    2015-08-13 14:55:40
23044    14716    591    2015-06-08 13:13:45    2015-06-08 13:13:45
23045    14133    498    2015-10-16 19:03:20    2015-10-16 19:03:20
23046    17494    473    2016-01-28 06:15:21    2016-01-28 06:15:21
23047    16366    760    2016-01-24 04:50:17    2016-01-24 04:50:17
23048    13221    477    2016-03-20 23:22:26    2016-03-20 23:22:26
23049    12361    607    2016-02-13 12:58:55    2016-02-13 12:58:55
23050    11348    700    2015-07-26 00:59:17    2015-07-26 00:59:17
23051    16598    559    2015-09-17 18:14:30    2015-09-17 18:14:30
23052    11531    738    2016-03-15 06:36:15    2016-03-15 06:36:15
23053    12432    562    2015-09-27 02:11:17    2015-09-27 02:11:17
23054    15063    815    2015-06-21 19:54:02    2015-06-21 19:54:02
23055    18735    701    2015-12-07 08:12:04    2015-12-07 08:12:04
23056    17880    723    2015-07-13 15:03:28    2015-07-13 15:03:28
23057    11049    891    2015-04-30 02:47:21    2015-04-30 02:47:21
23058    18209    598    2016-03-13 22:20:21    2016-03-13 22:20:21
23059    15404    485    2015-08-09 06:32:15    2015-08-09 06:32:15
23060    13260    734    2015-06-14 13:51:07    2015-06-14 13:51:07
23061    12115    516    2016-02-03 21:44:55    2016-02-03 21:44:55
23062    10826    562    2016-03-24 02:08:10    2016-03-24 02:08:10
23063    14005    531    2015-08-19 16:00:31    2015-08-19 16:00:31
23064    19573    521    2015-05-03 06:58:41    2015-05-03 06:58:41
23065    14151    828    2015-08-13 06:41:58    2015-08-13 06:41:58
23066    13075    794    2016-04-09 11:01:38    2016-04-09 11:01:38
23067    12247    788    2015-06-20 10:42:29    2015-06-20 10:42:29
23068    14107    675    2016-03-29 10:55:09    2016-03-29 10:55:09
23069    13591    782    2015-11-24 20:41:16    2015-11-24 20:41:16
23070    14688    478    2015-08-12 16:31:23    2015-08-12 16:31:23
23071    13728    766    2015-09-13 14:18:51    2015-09-13 14:18:51
23072    14169    843    2015-12-04 10:20:41    2015-12-04 10:20:41
23073    15654    957    2015-04-30 22:18:53    2015-04-30 22:18:53
23074    15950    812    2016-01-06 02:20:36    2016-01-06 02:20:36
23075    13555    905    2015-12-15 08:20:22    2015-12-15 08:20:22
23076    19676    465    2016-01-15 22:34:41    2016-01-15 22:34:41
23077    14856    932    2015-05-11 07:36:31    2015-05-11 07:36:31
23078    18161    577    2015-10-06 22:00:22    2015-10-06 22:00:22
23079    13136    522    2015-11-20 13:20:34    2015-11-20 13:20:34
23080    17035    823    2015-09-29 12:59:01    2015-09-29 12:59:01
23081    10043    942    2015-09-06 12:29:36    2015-09-06 12:29:36
23082    12442    568    2015-10-28 20:45:41    2015-10-28 20:45:41
23083    16907    862    2016-03-18 15:47:31    2016-03-18 15:47:31
23084    16251    632    2015-10-26 16:56:15    2015-10-26 16:56:15
23085    16371    961    2016-04-05 19:37:43    2016-04-05 19:37:43
23086    19736    607    2016-03-29 23:47:15    2016-03-29 23:47:15
23087    13970    620    2015-11-09 19:40:33    2015-11-09 19:40:33
23088    16909    743    2016-02-01 00:14:37    2016-02-01 00:14:37
23089    15454    571    2015-07-07 16:35:03    2015-07-07 16:35:03
23090    12932    820    2015-08-27 11:11:46    2015-08-27 11:11:46
23091    15217    578    2016-01-07 16:55:27    2016-01-07 16:55:27
23092    17467    669    2016-04-07 18:23:16    2016-04-07 18:23:16
23093    14863    789    2016-02-22 03:08:44    2016-02-22 03:08:44
23094    18363    738    2015-12-12 23:09:29    2015-12-12 23:09:29
23095    19591    922    2016-03-22 14:11:34    2016-03-22 14:11:34
23096    18172    868    2015-12-25 02:28:25    2015-12-25 02:28:25
23097    11036    481    2015-06-11 04:10:48    2015-06-11 04:10:48
23098    10045    895    2015-09-15 12:29:09    2015-09-15 12:29:09
23099    10405    805    2015-10-02 04:32:14    2015-10-02 04:32:14
23100    11310    550    2015-07-28 02:27:03    2015-07-28 02:27:03
23101    17327    567    2015-09-10 21:31:17    2015-09-10 21:31:17
23102    18811    832    2015-11-07 18:32:10    2015-11-07 18:32:10
23103    12992    497    2015-09-13 16:59:02    2015-09-13 16:59:02
23104    14354    848    2015-09-30 22:13:09    2015-09-30 22:13:09
23105    13242    818    2015-05-25 12:03:55    2015-05-25 12:03:55
23106    12992    502    2015-06-22 11:36:07    2015-06-22 11:36:07
23107    13625    540    2015-11-28 12:32:27    2015-11-28 12:32:27
23108    18472    851    2016-02-16 18:31:59    2016-02-16 18:31:59
23109    17339    748    2016-02-29 05:09:31    2016-02-29 05:09:31
23110    14916    619    2015-05-02 05:52:47    2015-05-02 05:52:47
23111    17524    909    2016-01-26 13:43:26    2016-01-26 13:43:26
23112    10895    688    2016-02-07 03:12:32    2016-02-07 03:12:32
23113    12901    719    2015-09-12 21:39:41    2015-09-12 21:39:41
23114    19462    908    2015-09-18 14:00:38    2015-09-18 14:00:38
23115    14306    640    2016-04-14 07:50:13    2016-04-14 07:50:13
23116    11692    724    2016-01-29 06:44:39    2016-01-29 06:44:39
23117    17474    808    2015-08-25 00:53:38    2015-08-25 00:53:38
23118    19475    502    2015-07-19 03:03:33    2015-07-19 03:03:33
23119    15596    485    2016-01-13 11:14:30    2016-01-13 11:14:30
23120    16676    623    2015-12-31 22:02:38    2015-12-31 22:02:38
23121    11955    522    2016-03-12 12:36:01    2016-03-12 12:36:01
23122    18593    727    2015-12-22 13:47:43    2015-12-22 13:47:43
23123    16506    644    2016-04-08 13:50:11    2016-04-08 13:50:11
23124    10549    854    2015-08-18 03:29:34    2015-08-18 03:29:34
23125    13434    900    2015-06-28 03:42:38    2015-06-28 03:42:38
23126    11449    782    2016-03-20 03:36:57    2016-03-20 03:36:57
23127    13740    673    2016-03-26 12:16:32    2016-03-26 12:16:32
23128    17921    728    2015-11-14 19:37:02    2015-11-14 19:37:02
23129    12772    552    2015-10-26 11:50:39    2015-10-26 11:50:39
23130    13721    877    2016-03-10 00:13:03    2016-03-10 00:13:03
23131    17843    623    2015-09-23 03:10:06    2015-09-23 03:10:06
23132    17927    528    2016-04-07 11:21:36    2016-04-07 11:21:36
23133    10523    868    2015-12-22 05:07:21    2015-12-22 05:07:21
23134    16264    893    2015-05-14 03:35:32    2015-05-14 03:35:32
23135    19095    768    2015-09-29 08:21:42    2015-09-29 08:21:42
23136    15688    600    2015-10-22 16:52:09    2015-10-22 16:52:09
23137    16352    544    2015-10-11 02:22:13    2015-10-11 02:22:13
23138    18574    619    2016-03-30 22:46:28    2016-03-30 22:46:28
23139    16602    471    2015-07-15 22:37:05    2015-07-15 22:37:05
23140    10750    739    2015-09-13 16:05:44    2015-09-13 16:05:44
23141    11450    780    2016-03-24 14:52:01    2016-03-24 14:52:01
23142    13885    578    2015-09-13 10:33:13    2015-09-13 10:33:13
23143    16087    764    2015-10-17 02:57:57    2015-10-17 02:57:57
23144    12779    554    2015-08-29 08:21:39    2015-08-29 08:21:39
23145    11314    883    2016-02-22 21:29:36    2016-02-22 21:29:36
23146    13323    665    2015-05-31 00:35:23    2015-05-31 00:35:23
23147    14506    698    2016-01-31 20:19:06    2016-01-31 20:19:06
23148    19113    950    2015-06-23 16:50:57    2015-06-23 16:50:57
23149    13823    575    2015-09-22 01:59:30    2015-09-22 01:59:30
23150    14463    520    2016-03-01 01:50:31    2016-03-01 01:50:31
23151    15085    547    2015-07-10 21:22:33    2015-07-10 21:22:33
23152    16091    742    2015-12-22 05:22:04    2015-12-22 05:22:04
23153    15077    519    2015-06-13 01:54:37    2015-06-13 01:54:37
23154    12906    700    2016-01-18 08:34:32    2016-01-18 08:34:32
23155    14808    929    2015-10-12 13:15:48    2015-10-12 13:15:48
23156    18190    867    2015-07-15 12:37:47    2015-07-15 12:37:47
23157    14431    485    2015-05-22 05:03:17    2015-05-22 05:03:17
23158    10973    624    2015-04-30 05:22:06    2015-04-30 05:22:06
23159    14902    916    2016-01-21 17:40:10    2016-01-21 17:40:10
23160    17582    906    2015-04-24 09:14:29    2015-04-24 09:14:29
23161    15641    564    2015-07-14 08:22:32    2015-07-14 08:22:32
23162    15100    678    2015-08-20 07:29:07    2015-08-20 07:29:07
23163    11373    718    2016-01-21 20:35:18    2016-01-21 20:35:18
23164    19304    672    2015-07-12 16:13:13    2015-07-12 16:13:13
23165    14436    831    2016-02-07 04:25:19    2016-02-07 04:25:19
23166    11677    825    2016-04-13 18:51:12    2016-04-13 18:51:12
23167    15602    632    2015-11-21 12:29:29    2015-11-21 12:29:29
23168    16201    778    2016-03-31 07:10:23    2016-03-31 07:10:23
23169    15074    894    2015-11-17 07:13:31    2015-11-17 07:13:31
23170    10233    755    2015-07-29 18:42:27    2015-07-29 18:42:27
23171    16387    698    2015-08-28 13:40:13    2015-08-28 13:40:13
23172    16461    894    2015-07-19 06:41:06    2015-07-19 06:41:06
23173    14857    702    2016-02-19 08:47:23    2016-02-19 08:47:23
23174    11609    880    2016-01-27 02:14:57    2016-01-27 02:14:57
23175    12472    925    2015-05-14 13:51:43    2015-05-14 13:51:43
23176    11742    953    2015-09-28 00:56:00    2015-09-28 00:56:00
23177    18500    497    2015-12-25 16:54:19    2015-12-25 16:54:19
23178    10258    588    2015-08-21 09:46:56    2015-08-21 09:46:56
23179    15759    954    2016-01-09 00:19:11    2016-01-09 00:19:11
23180    17848    775    2015-09-04 14:52:28    2015-09-04 14:52:28
23181    13353    570    2015-07-13 08:09:55    2015-07-13 08:09:55
23182    15205    654    2016-03-23 23:00:00    2016-03-23 23:00:00
23183    16111    482    2015-09-28 12:24:31    2015-09-28 12:24:31
23184    11472    763    2016-02-02 07:29:23    2016-02-02 07:29:23
23185    10539    922    2016-02-20 22:57:55    2016-02-20 22:57:55
23186    17520    575    2015-05-20 06:04:10    2015-05-20 06:04:10
23187    15182    463    2015-08-30 08:14:49    2015-08-30 08:14:49
23188    15238    743    2015-10-25 19:20:21    2015-10-25 19:20:21
23189    13049    940    2015-09-22 18:36:40    2015-09-22 18:36:40
23190    17111    792    2015-10-15 16:05:20    2015-10-15 16:05:20
23191    17208    754    2015-06-29 02:12:41    2015-06-29 02:12:41
23192    14251    641    2016-01-15 07:19:22    2016-01-15 07:19:22
23193    15656    742    2015-09-09 06:33:00    2015-09-09 06:33:00
23194    17251    647    2015-11-21 04:00:28    2015-11-21 04:00:28
23195    16952    483    2015-11-21 17:40:32    2015-11-21 17:40:32
23196    11556    751    2015-11-30 21:33:07    2015-11-30 21:33:07
23197    17242    815    2015-09-17 19:44:47    2015-09-17 19:44:47
23198    10773    704    2016-02-01 17:48:10    2016-02-01 17:48:10
23199    10435    601    2015-11-18 03:18:59    2015-11-18 03:18:59
23200    18856    529    2016-01-25 22:22:39    2016-01-25 22:22:39
23201    17248    958    2015-07-13 15:39:48    2015-07-13 15:39:48
23202    18620    498    2015-08-04 09:33:35    2015-08-04 09:33:35
23203    19484    872    2015-07-29 05:57:51    2015-07-29 05:57:51
23204    11798    935    2015-07-14 03:51:33    2015-07-14 03:51:33
23205    11172    958    2016-01-23 09:15:55    2016-01-23 09:15:55
23206    10864    803    2015-10-12 14:38:23    2015-10-12 14:38:23
23207    13229    730    2015-05-09 04:29:23    2015-05-09 04:29:23
23208    11162    946    2015-09-26 16:02:48    2015-09-26 16:02:48
23209    11725    464    2015-05-10 15:51:56    2015-05-10 15:51:56
23210    11316    624    2016-03-06 04:12:57    2016-03-06 04:12:57
23211    12825    800    2015-05-04 03:02:10    2015-05-04 03:02:10
23212    16110    896    2015-05-04 11:07:58    2015-05-04 11:07:58
23213    14091    921    2015-12-19 08:55:40    2015-12-19 08:55:40
23214    18692    728    2015-07-12 16:34:37    2015-07-12 16:34:37
23215    14934    885    2015-06-13 23:28:34    2015-06-13 23:28:34
23216    10583    776    2015-08-09 11:23:06    2015-08-09 11:23:06
23217    18335    899    2015-12-25 15:29:37    2015-12-25 15:29:37
23218    11298    745    2015-06-29 11:49:36    2015-06-29 11:49:36
23219    18456    604    2016-02-13 07:35:02    2016-02-13 07:35:02
23220    11553    604    2016-01-04 06:54:17    2016-01-04 06:54:17
23221    18812    485    2015-05-24 10:10:51    2015-05-24 10:10:51
23222    12688    872    2016-03-27 22:30:17    2016-03-27 22:30:17
23223    10124    606    2015-11-14 06:40:20    2015-11-14 06:40:20
23224    18587    674    2015-09-28 19:20:42    2015-09-28 19:20:42
23225    14083    899    2015-08-28 15:44:12    2015-08-28 15:44:12
23226    16137    850    2015-09-29 12:01:30    2015-09-29 12:01:30
23227    10097    579    2016-03-06 15:16:48    2016-03-06 15:16:48
23228    19189    503    2016-02-12 04:26:21    2016-02-12 04:26:21
23229    14230    566    2015-06-06 18:07:14    2015-06-06 18:07:14
23230    12038    766    2015-07-20 21:36:59    2015-07-20 21:36:59
23231    16045    578    2015-05-25 15:15:06    2015-05-25 15:15:06
23232    18843    559    2015-08-23 02:07:32    2015-08-23 02:07:32
23233    12080    958    2015-09-01 12:36:55    2015-09-01 12:36:55
23234    19112    565    2016-03-11 21:24:38    2016-03-11 21:24:38
23235    11463    837    2015-12-20 12:25:21    2015-12-20 12:25:21
23236    13129    567    2015-11-17 02:43:34    2015-11-17 02:43:34
23237    18518    490    2015-05-27 16:12:20    2015-05-27 16:12:20
23238    13928    815    2015-05-16 11:48:39    2015-05-16 11:48:39
23239    17881    693    2015-12-26 11:19:19    2015-12-26 11:19:19
23240    11869    636    2016-01-26 14:12:10    2016-01-26 14:12:10
23241    16622    504    2015-05-06 12:31:19    2015-05-06 12:31:19
23242    18015    714    2015-04-23 17:39:50    2015-04-23 17:39:50
23243    19156    886    2015-06-03 13:58:14    2015-06-03 13:58:14
23244    15975    555    2016-02-26 16:26:00    2016-02-26 16:26:00
23245    15738    623    2015-08-19 22:22:32    2015-08-19 22:22:32
23246    11354    580    2015-06-06 10:47:11    2015-06-06 10:47:11
23247    19700    676    2015-11-01 07:00:25    2015-11-01 07:00:25
23248    17173    484    2016-03-22 13:27:16    2016-03-22 13:27:16
23249    14308    653    2015-10-24 00:14:02    2015-10-24 00:14:02
23250    14118    782    2015-12-30 14:13:25    2015-12-30 14:13:25
23251    10822    478    2015-09-05 17:51:45    2015-09-05 17:51:45
23252    10369    741    2015-06-23 02:51:14    2015-06-23 02:51:14
23253    15323    845    2015-08-26 14:00:19    2015-08-26 14:00:19
23254    16175    620    2015-06-11 04:33:37    2015-06-11 04:33:37
23255    10313    877    2016-02-25 16:42:46    2016-02-25 16:42:46
23256    15998    899    2015-07-02 09:05:52    2015-07-02 09:05:52
23257    11333    871    2015-07-26 02:15:12    2015-07-26 02:15:12
23258    15956    677    2015-05-09 01:56:53    2015-05-09 01:56:53
23259    19755    687    2016-03-01 00:00:53    2016-03-01 00:00:53
23260    11484    696    2015-12-24 21:49:43    2015-12-24 21:49:43
23261    13248    756    2015-09-11 12:04:56    2015-09-11 12:04:56
23262    16985    777    2015-07-16 12:32:14    2015-07-16 12:32:14
23263    14767    580    2015-05-27 03:44:41    2015-05-27 03:44:41
23264    11620    596    2015-08-02 20:21:39    2015-08-02 20:21:39
23265    19124    953    2015-07-20 05:59:17    2015-07-20 05:59:17
23266    10170    776    2015-12-11 23:04:38    2015-12-11 23:04:38
23267    16127    577    2015-09-25 23:11:37    2015-09-25 23:11:37
23268    11385    607    2015-08-14 01:35:28    2015-08-14 01:35:28
23269    17542    488    2015-05-26 18:35:50    2015-05-26 18:35:50
23270    10978    558    2015-09-26 05:09:16    2015-09-26 05:09:16
23271    10428    799    2015-05-08 22:06:45    2015-05-08 22:06:45
23272    12005    887    2015-07-02 00:21:31    2015-07-02 00:21:31
23273    12604    482    2015-07-26 21:37:16    2015-07-26 21:37:16
23274    14768    627    2015-07-22 10:26:07    2015-07-22 10:26:07
23275    15249    953    2016-04-02 01:06:31    2016-04-02 01:06:31
23276    14235    956    2015-10-22 07:31:10    2015-10-22 07:31:10
23277    14624    604    2015-05-07 15:56:47    2015-05-07 15:56:47
23278    18762    801    2015-10-12 16:21:43    2015-10-12 16:21:43
23279    10273    885    2015-04-22 12:53:14    2015-04-22 12:53:14
23280    13552    945    2015-08-23 15:29:33    2015-08-23 15:29:33
23281    10207    844    2016-02-28 05:54:28    2016-02-28 05:54:28
23282    16128    526    2016-04-03 06:43:07    2016-04-03 06:43:07
23283    18958    820    2015-12-07 01:46:52    2015-12-07 01:46:52
23284    15043    819    2015-06-22 12:13:34    2015-06-22 12:13:34
23285    13122    489    2015-12-13 16:47:57    2015-12-13 16:47:57
23286    12334    758    2015-06-16 01:00:42    2015-06-16 01:00:42
23287    18611    634    2015-12-01 05:21:32    2015-12-01 05:21:32
23288    19704    659    2015-06-19 17:40:32    2015-06-19 17:40:32
23289    13078    524    2015-07-17 17:53:54    2015-07-17 17:53:54
23290    13918    653    2016-03-27 04:07:38    2016-03-27 04:07:38
23291    19605    577    2015-05-31 10:47:54    2015-05-31 10:47:54
23292    15258    485    2015-07-16 05:56:59    2015-07-16 05:56:59
23293    12423    758    2015-06-23 08:18:39    2015-06-23 08:18:39
23294    19256    670    2015-07-14 21:57:21    2015-07-14 21:57:21
23295    14553    926    2015-10-29 06:17:53    2015-10-29 06:17:53
23296    18263    532    2015-05-12 17:12:38    2015-05-12 17:12:38
23297    14305    804    2015-05-23 02:57:45    2015-05-23 02:57:45
23298    19573    666    2015-05-03 07:22:17    2015-05-03 07:22:17
23299    12903    468    2015-06-10 04:01:03    2015-06-10 04:01:03
23300    17607    675    2016-04-01 22:04:49    2016-04-01 22:04:49
23301    17235    600    2016-01-30 22:29:04    2016-01-30 22:29:04
23302    15667    535    2015-10-15 12:22:54    2015-10-15 12:22:54
23303    18388    480    2015-10-11 07:24:18    2015-10-11 07:24:18
23304    13412    892    2015-06-12 18:17:54    2015-06-12 18:17:54
23305    10219    668    2015-05-13 20:15:11    2015-05-13 20:15:11
23306    17213    705    2016-03-13 20:55:25    2016-03-13 20:55:25
23307    19479    957    2016-03-02 17:17:56    2016-03-02 17:17:56
23308    11518    880    2015-07-18 06:12:03    2015-07-18 06:12:03
23309    17964    500    2015-05-27 00:29:58    2015-05-27 00:29:58
23310    11092    840    2015-05-01 19:03:32    2015-05-01 19:03:32
23311    17242    842    2015-06-07 20:53:54    2015-06-07 20:53:54
23312    16244    502    2016-02-27 13:05:04    2016-02-27 13:05:04
23313    10493    603    2015-12-06 08:07:47    2015-12-06 08:07:47
23314    14541    881    2015-07-17 08:18:28    2015-07-17 08:18:28
23315    14496    747    2016-03-24 21:19:20    2016-03-24 21:19:20
23316    10034    543    2016-03-14 17:42:00    2016-03-14 17:42:00
23317    13216    590    2016-03-02 12:57:37    2016-03-02 12:57:37
23318    13185    705    2015-06-07 12:05:42    2015-06-07 12:05:42
23319    14672    538    2015-10-18 19:03:05    2015-10-18 19:03:05
23320    17021    634    2015-10-02 17:59:24    2015-10-02 17:59:24
23321    14153    901    2016-04-06 19:01:04    2016-04-06 19:01:04
23322    13740    941    2015-12-16 07:15:17    2015-12-16 07:15:17
23323    18493    521    2016-02-05 03:21:24    2016-02-05 03:21:24
23324    18854    636    2016-01-04 09:57:56    2016-01-04 09:57:56
23325    16037    523    2015-10-19 19:02:36    2015-10-19 19:02:36
23326    11124    671    2015-07-21 12:24:55    2015-07-21 12:24:55
23327    16558    722    2016-01-11 09:54:53    2016-01-11 09:54:53
23328    16964    570    2016-03-12 02:39:05    2016-03-12 02:39:05
23329    12415    709    2015-11-12 17:28:10    2015-11-12 17:28:10
23330    15398    582    2015-05-31 20:59:39    2015-05-31 20:59:39
23331    14930    947    2015-06-28 19:20:23    2015-06-28 19:20:23
23332    10136    717    2015-07-03 02:45:37    2015-07-03 02:45:37
23333    17832    604    2015-12-21 13:38:20    2015-12-21 13:38:20
23334    16082    761    2016-01-09 04:43:51    2016-01-09 04:43:51
23335    16343    960    2015-12-18 12:56:12    2015-12-18 12:56:12
23336    15291    824    2016-03-10 23:20:22    2016-03-10 23:20:22
23337    14743    463    2015-12-19 10:53:27    2015-12-19 10:53:27
23338    12019    613    2015-07-21 21:18:37    2015-07-21 21:18:37
23339    14683    474    2015-06-09 08:17:24    2015-06-09 08:17:24
23340    10721    468    2016-01-08 19:31:39    2016-01-08 19:31:39
23341    15057    660    2015-09-23 15:05:10    2015-09-23 15:05:10
23342    18963    800    2015-05-19 13:59:03    2015-05-19 13:59:03
23343    12337    597    2015-10-03 15:11:32    2015-10-03 15:11:32
23344    17394    605    2015-08-29 18:27:07    2015-08-29 18:27:07
23345    14296    913    2016-02-27 14:47:23    2016-02-27 14:47:23
23346    13077    533    2016-02-04 05:27:52    2016-02-04 05:27:52
23347    10303    923    2015-10-27 14:45:10    2015-10-27 14:45:10
23348    11604    854    2015-05-05 18:38:23    2015-05-05 18:38:23
23349    18891    900    2015-05-19 11:49:37    2015-05-19 11:49:37
23350    14126    784    2015-10-15 12:10:33    2015-10-15 12:10:33
23351    12245    639    2015-06-26 04:54:19    2015-06-26 04:54:19
23352    19665    653    2015-08-31 00:15:58    2015-08-31 00:15:58
23353    14829    639    2015-05-20 21:21:11    2015-05-20 21:21:11
23354    18202    599    2015-09-17 21:47:20    2015-09-17 21:47:20
23355    14082    569    2015-07-10 18:49:20    2015-07-10 18:49:20
23356    16287    699    2016-02-12 10:37:30    2016-02-12 10:37:30
23357    13948    613    2015-08-21 23:15:54    2015-08-21 23:15:54
23358    15972    591    2016-04-16 02:58:05    2016-04-16 02:58:05
23359    18587    951    2015-12-28 17:22:02    2015-12-28 17:22:02
23360    17603    739    2015-10-05 11:57:33    2015-10-05 11:57:33
23361    13300    657    2015-10-13 11:18:58    2015-10-13 11:18:58
23362    12128    801    2015-06-07 02:37:15    2015-06-07 02:37:15
23363    11404    693    2015-05-26 00:14:46    2015-05-26 00:14:46
23364    17746    712    2015-12-25 13:26:31    2015-12-25 13:26:31
23365    13480    911    2015-07-28 08:16:37    2015-07-28 08:16:37
23366    13371    827    2015-07-07 14:53:07    2015-07-07 14:53:07
23367    14604    470    2015-05-11 20:18:06    2015-05-11 20:18:06
23368    11602    645    2016-03-23 12:14:21    2016-03-23 12:14:21
23369    14822    938    2015-08-06 10:31:56    2015-08-06 10:31:56
23370    13480    910    2015-05-07 19:22:23    2015-05-07 19:22:23
23371    18453    757    2015-06-01 01:26:07    2015-06-01 01:26:07
23372    10244    918    2015-08-26 18:01:21    2015-08-26 18:01:21
23373    19708    765    2015-08-28 11:00:09    2015-08-28 11:00:09
23374    16259    800    2015-08-21 17:25:41    2015-08-21 17:25:41
23375    13145    827    2015-10-18 15:18:25    2015-10-18 15:18:25
23376    19656    636    2015-10-01 23:53:48    2015-10-01 23:53:48
23377    10585    702    2015-08-25 20:37:27    2015-08-25 20:37:27
23378    11180    950    2016-03-01 21:15:46    2016-03-01 21:15:46
23379    19069    688    2016-02-02 15:58:53    2016-02-02 15:58:53
23380    15152    786    2016-01-24 22:51:18    2016-01-24 22:51:18
23381    19848    808    2015-09-24 11:30:07    2015-09-24 11:30:07
23382    13508    603    2015-06-27 10:59:43    2015-06-27 10:59:43
23383    11027    859    2015-09-29 09:12:57    2015-09-29 09:12:57
23384    17845    517    2016-01-08 19:06:02    2016-01-08 19:06:02
23385    13294    622    2015-05-17 16:33:29    2015-05-17 16:33:29
23386    16688    943    2016-04-11 15:39:36    2016-04-11 15:39:36
23387    10965    541    2016-01-18 21:26:21    2016-01-18 21:26:21
23388    17791    594    2015-08-07 13:03:50    2015-08-07 13:03:50
23389    15722    538    2015-10-08 07:36:09    2015-10-08 07:36:09
23390    19795    627    2015-05-24 20:37:22    2015-05-24 20:37:22
23391    13429    594    2016-02-09 21:14:54    2016-02-09 21:14:54
23392    19879    750    2016-02-12 12:49:24    2016-02-12 12:49:24
23393    12306    638    2015-04-21 22:54:51    2015-04-21 22:54:51
23394    10356    924    2015-06-13 23:44:23    2015-06-13 23:44:23
23395    11546    821    2016-03-25 13:29:44    2016-03-25 13:29:44
23396    10027    824    2015-05-17 11:06:53    2015-05-17 11:06:53
23397    19331    784    2015-11-30 21:44:14    2015-11-30 21:44:14
23398    16583    937    2015-11-02 06:56:52    2015-11-02 06:56:52
23399    11920    953    2015-06-02 14:11:52    2015-06-02 14:11:52
23400    17583    635    2015-09-19 10:54:20    2015-09-19 10:54:20
23401    10494    923    2015-05-13 14:37:55    2015-05-13 14:37:55
23402    10155    726    2015-05-07 20:47:03    2015-05-07 20:47:03
23403    13451    466    2016-02-23 13:33:09    2016-02-23 13:33:09
23404    16103    866    2016-01-05 23:31:58    2016-01-05 23:31:58
23405    15464    623    2016-02-23 18:47:56    2016-02-23 18:47:56
23406    17540    624    2015-06-21 20:47:14    2015-06-21 20:47:14
23407    11858    757    2015-05-11 07:13:40    2015-05-11 07:13:40
23408    19092    711    2015-05-20 16:35:40    2015-05-20 16:35:40
23409    18826    809    2015-12-07 05:21:44    2015-12-07 05:21:44
23410    10972    916    2015-08-08 22:46:29    2015-08-08 22:46:29
23411    19811    672    2015-12-03 15:38:14    2015-12-03 15:38:14
23412    19350    921    2015-06-17 22:32:09    2015-06-17 22:32:09
23413    17185    918    2015-12-02 05:43:30    2015-12-02 05:43:30
23414    13027    822    2015-09-24 10:21:54    2015-09-24 10:21:54
23415    10781    862    2015-05-30 12:02:55    2015-05-30 12:02:55
23416    12457    481    2015-08-01 15:47:31    2015-08-01 15:47:31
23417    13561    821    2015-06-08 10:48:55    2015-06-08 10:48:55
23418    16381    614    2015-05-13 17:29:14    2015-05-13 17:29:14
23419    10251    612    2016-03-12 13:38:32    2016-03-12 13:38:32
23420    11844    937    2015-04-30 02:11:46    2015-04-30 02:11:46
23421    11603    769    2015-08-19 17:22:10    2015-08-19 17:22:10
23422    19250    609    2016-03-11 01:59:44    2016-03-11 01:59:44
23423    15875    887    2016-03-15 00:25:50    2016-03-15 00:25:50
23424    13275    712    2016-03-30 02:06:24    2016-03-30 02:06:24
23425    19283    568    2015-12-29 20:11:37    2015-12-29 20:11:37
23426    13029    852    2015-04-30 20:58:49    2015-04-30 20:58:49
23427    18193    900    2015-12-31 19:55:50    2015-12-31 19:55:50
23428    13337    842    2015-12-08 06:05:25    2015-12-08 06:05:25
23429    11811    756    2015-10-14 23:08:56    2015-10-14 23:08:56
23430    12645    743    2016-04-01 20:15:04    2016-04-01 20:15:04
23431    19788    603    2015-09-20 03:38:33    2015-09-20 03:38:33
23432    13112    744    2016-04-19 08:20:10    2016-04-19 08:20:10
23433    16520    897    2016-02-26 19:32:01    2016-02-26 19:32:01
23434    15718    853    2015-06-23 18:17:06    2015-06-23 18:17:06
23435    19413    723    2015-09-30 18:38:32    2015-09-30 18:38:32
23436    19591    686    2015-11-01 10:06:13    2015-11-01 10:06:13
23437    16655    676    2015-12-06 09:44:36    2015-12-06 09:44:36
23438    11095    959    2015-12-13 06:15:17    2015-12-13 06:15:17
23439    12991    598    2015-05-15 18:09:17    2015-05-15 18:09:17
23440    19505    737    2015-11-23 11:32:34    2015-11-23 11:32:34
23441    12761    693    2016-01-05 19:02:51    2016-01-05 19:02:51
23442    11365    813    2015-05-02 07:56:46    2015-05-02 07:56:46
23443    19999    651    2016-03-06 06:13:34    2016-03-06 06:13:34
23444    11285    656    2016-02-28 16:09:29    2016-02-28 16:09:29
23445    12151    692    2015-10-19 04:38:01    2015-10-19 04:38:01
23446    18297    864    2016-04-07 02:50:18    2016-04-07 02:50:18
23447    11371    833    2016-03-15 03:03:49    2016-03-15 03:03:49
23448    10150    471    2015-10-02 13:50:04    2015-10-02 13:50:04
23449    16327    786    2016-01-31 08:39:31    2016-01-31 08:39:31
23450    18290    678    2015-11-29 15:46:39    2015-11-29 15:46:39
23451    13945    779    2015-11-26 12:06:15    2015-11-26 12:06:15
23452    13602    841    2015-09-03 11:45:01    2015-09-03 11:45:01
23453    13169    674    2015-05-20 10:48:01    2015-05-20 10:48:01
23454    18176    880    2015-05-16 19:11:56    2015-05-16 19:11:56
23455    13423    617    2015-12-30 20:50:27    2015-12-30 20:50:27
23456    12740    697    2016-03-25 22:27:21    2016-03-25 22:27:21
23457    13877    812    2015-10-29 23:50:14    2015-10-29 23:50:14
23458    18799    960    2015-09-13 10:46:40    2015-09-13 10:46:40
23459    10323    558    2015-12-08 00:32:05    2015-12-08 00:32:05
23460    15395    618    2015-09-09 01:24:55    2015-09-09 01:24:55
23461    10169    607    2015-04-29 20:59:03    2015-04-29 20:59:03
23462    14862    675    2016-01-16 17:13:40    2016-01-16 17:13:40
23463    11316    861    2016-02-09 20:26:41    2016-02-09 20:26:41
23464    15142    934    2015-09-27 23:09:47    2015-09-27 23:09:47
23465    18307    844    2015-11-13 21:14:06    2015-11-13 21:14:06
23466    17043    584    2015-08-26 10:56:43    2015-08-26 10:56:43
23467    17036    708    2015-11-29 16:07:09    2015-11-29 16:07:09
23468    12913    654    2015-12-28 06:44:45    2015-12-28 06:44:45
23469    19603    512    2016-02-25 00:34:40    2016-02-25 00:34:40
23470    17626    581    2016-02-04 10:04:29    2016-02-04 10:04:29
23471    19234    745    2015-07-13 14:51:54    2015-07-13 14:51:54
23472    13038    628    2015-11-16 20:39:20    2015-11-16 20:39:20
23473    16243    551    2015-06-22 06:04:46    2015-06-22 06:04:46
23474    17857    710    2016-02-27 12:49:10    2016-02-27 12:49:10
23475    11864    699    2015-06-21 10:49:30    2015-06-21 10:49:30
23476    11805    737    2015-06-15 02:43:06    2015-06-15 02:43:06
23477    14328    584    2015-12-19 07:38:40    2015-12-19 07:38:40
23478    14313    901    2016-01-31 10:00:27    2016-01-31 10:00:27
23479    11532    738    2016-02-28 11:35:26    2016-02-28 11:35:26
23480    15448    472    2015-06-07 14:45:16    2015-06-07 14:45:16
23481    12741    490    2015-11-19 06:00:27    2015-11-19 06:00:27
23482    18835    718    2015-06-06 00:54:10    2015-06-06 00:54:10
23483    14633    531    2015-06-09 19:07:14    2015-06-09 19:07:14
23484    17206    835    2015-08-21 23:24:34    2015-08-21 23:24:34
23485    12152    830    2015-12-15 13:44:02    2015-12-15 13:44:02
23486    14053    831    2015-08-28 23:59:34    2015-08-28 23:59:34
23487    18030    545    2016-01-02 11:28:14    2016-01-02 11:28:14
23488    17534    633    2015-09-12 04:08:55    2015-09-12 04:08:55
23489    18927    620    2016-04-12 01:20:24    2016-04-12 01:20:24
23490    10861    612    2015-09-18 00:06:32    2015-09-18 00:06:32
23491    17258    599    2015-10-15 16:35:38    2015-10-15 16:35:38
23492    18842    761    2016-01-19 07:05:29    2016-01-19 07:05:29
23493    15049    792    2015-09-14 21:18:50    2015-09-14 21:18:50
23494    13903    872    2016-02-09 04:35:20    2016-02-09 04:35:20
23495    12581    884    2016-04-06 21:54:55    2016-04-06 21:54:55
23496    16737    489    2016-04-01 22:43:56    2016-04-01 22:43:56
23497    14411    670    2015-11-19 19:57:15    2015-11-19 19:57:15
23498    10497    634    2015-07-02 22:02:09    2015-07-02 22:02:09
23499    10341    715    2015-08-02 13:30:33    2015-08-02 13:30:33
23500    15204    635    2015-05-22 15:36:43    2015-05-22 15:36:43
23501    12845    894    2016-04-08 03:06:00    2016-04-08 03:06:00
23502    11875    535    2015-07-26 14:36:20    2015-07-26 14:36:20
23503    12449    471    2015-11-26 06:48:02    2015-11-26 06:48:02
23504    16098    494    2015-09-06 18:47:20    2015-09-06 18:47:20
23505    19509    785    2015-04-22 17:21:59    2015-04-22 17:21:59
23506    15395    575    2016-04-17 05:27:32    2016-04-17 05:27:32
23507    16548    693    2016-04-20 11:15:23    2016-04-20 11:15:23
23508    16095    490    2015-12-02 10:25:12    2015-12-02 10:25:12
23509    13137    529    2015-08-31 10:51:31    2015-08-31 10:51:31
23510    13826    793    2015-12-03 09:00:57    2015-12-03 09:00:57
23511    10461    641    2015-12-06 05:13:12    2015-12-06 05:13:12
23512    16157    775    2015-06-28 22:38:04    2015-06-28 22:38:04
23513    13695    569    2015-12-26 08:40:21    2015-12-26 08:40:21
23514    12946    677    2015-10-30 19:22:54    2015-10-30 19:22:54
23515    13169    687    2016-01-15 13:56:16    2016-01-15 13:56:16
23516    17727    680    2015-12-05 21:54:05    2015-12-05 21:54:05
23517    10648    861    2015-09-13 21:26:15    2015-09-13 21:26:15
23518    10514    683    2015-07-11 19:53:30    2015-07-11 19:53:30
23519    15139    703    2016-01-21 20:40:24    2016-01-21 20:40:24
23520    10096    866    2015-12-20 10:24:37    2015-12-20 10:24:37
23521    15829    520    2015-06-21 19:33:59    2015-06-21 19:33:59
23522    17431    623    2015-07-29 01:47:36    2015-07-29 01:47:36
23523    19316    717    2015-11-17 19:26:51    2015-11-17 19:26:51
23524    16453    928    2015-05-12 11:38:09    2015-05-12 11:38:09
23525    10746    766    2016-02-28 04:50:07    2016-02-28 04:50:07
23526    17133    614    2015-10-07 06:01:15    2015-10-07 06:01:15
23527    10294    834    2015-11-14 07:14:30    2015-11-14 07:14:30
23528    13953    476    2016-03-01 12:22:47    2016-03-01 12:22:47
23529    15464    823    2016-04-13 13:37:18    2016-04-13 13:37:18
23530    15085    670    2015-10-01 02:49:35    2015-10-01 02:49:35
23531    15053    672    2016-03-05 04:09:39    2016-03-05 04:09:39
23532    10271    579    2015-07-14 16:59:12    2015-07-14 16:59:12
23533    14822    661    2016-02-19 05:42:00    2016-02-19 05:42:00
23534    17192    888    2015-08-29 20:16:57    2015-08-29 20:16:57
23535    12257    651    2015-08-30 09:27:00    2015-08-30 09:27:00
23536    12864    866    2016-03-09 06:24:35    2016-03-09 06:24:35
23537    15552    912    2016-01-03 09:55:13    2016-01-03 09:55:13
23538    15085    686    2015-11-03 05:50:34    2015-11-03 05:50:34
23539    14241    941    2016-04-19 12:27:51    2016-04-19 12:27:51
23540    10194    465    2016-01-08 22:56:10    2016-01-08 22:56:10
23541    18736    767    2016-02-03 09:43:07    2016-02-03 09:43:07
23542    13226    738    2016-03-19 11:02:07    2016-03-19 11:02:07
23543    16250    712    2015-05-31 12:07:11    2015-05-31 12:07:11
23544    16913    937    2016-03-24 18:58:48    2016-03-24 18:58:48
23545    12717    585    2015-09-08 23:24:36    2015-09-08 23:24:36
23546    10719    474    2016-04-15 20:31:20    2016-04-15 20:31:20
23547    15369    470    2015-06-13 13:43:35    2015-06-13 13:43:35
23548    18464    486    2015-07-19 20:12:39    2015-07-19 20:12:39
23549    16555    575    2015-09-24 00:56:07    2015-09-24 00:56:07
23550    12269    923    2015-12-24 18:05:13    2015-12-24 18:05:13
23551    19178    768    2016-02-10 15:57:03    2016-02-10 15:57:03
23552    15275    691    2016-03-14 11:47:16    2016-03-14 11:47:16
23553    16593    515    2015-12-06 16:40:59    2015-12-06 16:40:59
23554    18886    679    2015-07-04 19:26:54    2015-07-04 19:26:54
23555    11834    678    2015-07-12 04:48:33    2015-07-12 04:48:33
23556    13307    635    2016-03-30 11:09:02    2016-03-30 11:09:02
23557    13919    657    2015-11-02 05:44:37    2015-11-02 05:44:37
23558    12656    806    2015-06-19 06:28:07    2015-06-19 06:28:07
23559    14317    927    2015-05-19 07:29:16    2015-05-19 07:29:16
23560    13207    873    2016-01-01 07:50:17    2016-01-01 07:50:17
23561    17596    639    2015-11-04 18:05:07    2015-11-04 18:05:07
23562    18226    590    2015-06-18 05:39:02    2015-06-18 05:39:02
23563    10055    737    2015-10-07 16:57:00    2015-10-07 16:57:00
23564    16278    688    2015-09-28 03:49:59    2015-09-28 03:49:59
23565    18286    565    2016-02-12 18:41:09    2016-02-12 18:41:09
23566    14993    667    2016-02-28 02:58:56    2016-02-28 02:58:56
23567    15686    929    2015-05-20 10:37:09    2015-05-20 10:37:09
23568    13301    611    2016-02-17 01:58:53    2016-02-17 01:58:53
23569    16964    902    2016-04-16 20:33:42    2016-04-16 20:33:42
23570    14654    589    2016-02-15 00:31:48    2016-02-15 00:31:48
23571    12587    900    2015-08-11 18:33:09    2015-08-11 18:33:09
23572    15389    656    2015-05-26 12:59:06    2015-05-26 12:59:06
23573    16053    773    2015-09-17 19:22:56    2015-09-17 19:22:56
23574    18115    731    2016-02-18 05:11:35    2016-02-18 05:11:35
23575    12662    884    2015-05-01 10:23:26    2015-05-01 10:23:26
23576    10788    898    2015-09-13 16:58:34    2015-09-13 16:58:34
23577    10202    772    2015-10-14 19:58:32    2015-10-14 19:58:32
23578    13206    543    2015-08-26 13:32:04    2015-08-26 13:32:04
23579    17775    473    2016-04-12 17:47:20    2016-04-12 17:47:20
23580    10557    648    2015-09-29 11:01:48    2015-09-29 11:01:48
23581    12772    829    2015-10-29 02:47:42    2015-10-29 02:47:42
23582    16073    557    2015-09-03 08:08:07    2015-09-03 08:08:07
23583    10611    671    2016-02-14 14:38:16    2016-02-14 14:38:16
23584    19480    909    2015-09-26 01:21:29    2015-09-26 01:21:29
23585    15531    537    2015-11-27 23:49:35    2015-11-27 23:49:35
23586    19288    829    2015-05-12 00:02:10    2015-05-12 00:02:10
23587    10852    914    2015-05-24 03:26:39    2015-05-24 03:26:39
23588    13611    773    2015-12-18 08:33:26    2015-12-18 08:33:26
23589    11530    877    2015-06-14 06:45:56    2015-06-14 06:45:56
23590    10620    501    2015-11-25 07:25:41    2015-11-25 07:25:41
23591    10679    839    2015-11-06 02:51:53    2015-11-06 02:51:53
23592    10725    622    2015-07-20 10:43:55    2015-07-20 10:43:55
23593    17484    901    2016-03-26 19:09:13    2016-03-26 19:09:13
23594    14074    608    2015-09-06 15:26:03    2015-09-06 15:26:03
23595    14127    538    2016-03-04 09:22:58    2016-03-04 09:22:58
23596    13064    561    2015-05-15 15:44:02    2015-05-15 15:44:02
23597    13571    661    2015-10-28 11:14:59    2015-10-28 11:14:59
23598    14297    586    2015-06-19 13:45:08    2015-06-19 13:45:08
23599    11493    850    2015-09-11 00:36:41    2015-09-11 00:36:41
23600    13350    795    2016-03-15 05:58:04    2016-03-15 05:58:04
23601    16060    682    2015-07-11 15:30:46    2015-07-11 15:30:46
23602    13780    874    2015-06-07 00:49:39    2015-06-07 00:49:39
23603    19987    660    2015-12-28 20:04:50    2015-12-28 20:04:50
23604    16087    599    2016-03-16 00:12:46    2016-03-16 00:12:46
23605    11856    833    2015-06-23 04:48:31    2015-06-23 04:48:31
23606    15977    935    2015-07-04 23:13:10    2015-07-04 23:13:10
23607    17296    889    2015-12-27 07:48:39    2015-12-27 07:48:39
23608    19213    633    2016-03-06 01:08:11    2016-03-06 01:08:11
23609    13878    551    2015-12-19 06:16:28    2015-12-19 06:16:28
23610    17362    644    2015-11-29 18:04:46    2015-11-29 18:04:46
23611    16492    878    2015-12-29 02:25:15    2015-12-29 02:25:15
23612    10120    618    2015-05-02 05:13:23    2015-05-02 05:13:23
23613    15534    562    2015-10-12 01:23:05    2015-10-12 01:23:05
23614    15988    818    2015-07-05 07:55:12    2015-07-05 07:55:12
23615    14653    879    2016-03-24 20:25:17    2016-03-24 20:25:17
23616    17070    709    2016-03-19 06:33:57    2016-03-19 06:33:57
23617    16570    502    2016-01-24 10:06:46    2016-01-24 10:06:46
23618    13049    603    2016-01-07 23:06:36    2016-01-07 23:06:36
23619    18134    672    2015-09-17 02:11:27    2015-09-17 02:11:27
23620    19824    896    2015-06-19 22:10:21    2015-06-19 22:10:21
23621    10906    887    2015-10-12 03:05:17    2015-10-12 03:05:17
23622    13007    914    2015-09-05 19:34:59    2015-09-05 19:34:59
23623    15473    871    2015-07-03 09:27:29    2015-07-03 09:27:29
23624    17047    665    2015-11-03 21:26:26    2015-11-03 21:26:26
23625    12855    881    2015-05-14 05:18:34    2015-05-14 05:18:34
23626    17867    587    2016-01-02 11:32:25    2016-01-02 11:32:25
23627    15128    486    2016-04-04 21:13:45    2016-04-04 21:13:45
23628    15520    701    2015-09-08 21:48:07    2015-09-08 21:48:07
23629    11125    813    2016-01-12 18:04:21    2016-01-12 18:04:21
23630    19157    905    2015-09-16 10:23:19    2015-09-16 10:23:19
23631    15613    612    2016-03-03 22:20:14    2016-03-03 22:20:14
23632    18883    891    2015-07-01 08:33:31    2015-07-01 08:33:31
23633    14758    740    2015-08-19 05:06:34    2015-08-19 05:06:34
23634    17697    662    2016-01-16 05:57:44    2016-01-16 05:57:44
23635    10987    537    2015-08-05 17:53:14    2015-08-05 17:53:14
23636    17235    909    2016-02-15 21:27:55    2016-02-15 21:27:55
23637    17602    483    2015-06-06 06:12:08    2015-06-06 06:12:08
23638    10628    873    2015-08-16 17:15:19    2015-08-16 17:15:19
23639    10178    833    2016-02-04 20:59:49    2016-02-04 20:59:49
23640    14060    480    2015-12-09 19:00:55    2015-12-09 19:00:55
23641    15767    782    2016-02-06 09:32:59    2016-02-06 09:32:59
23642    13847    463    2015-09-11 16:37:09    2015-09-11 16:37:09
23643    18888    594    2016-02-22 00:42:47    2016-02-22 00:42:47
23644    16614    547    2016-01-21 21:18:12    2016-01-21 21:18:12
23645    19202    814    2015-06-17 09:12:46    2015-06-17 09:12:46
23646    18647    546    2015-04-27 13:50:33    2015-04-27 13:50:33
23647    11743    472    2016-03-14 19:59:04    2016-03-14 19:59:04
23648    13430    833    2015-05-06 11:07:32    2015-05-06 11:07:32
23649    10960    833    2015-04-22 11:47:29    2015-04-22 11:47:29
23650    14368    823    2015-12-12 10:13:33    2015-12-12 10:13:33
23651    12130    700    2015-06-13 16:33:05    2015-06-13 16:33:05
23652    14499    719    2015-10-31 06:20:55    2015-10-31 06:20:55
23653    11685    633    2016-01-10 04:07:23    2016-01-10 04:07:23
23654    18541    878    2015-06-07 08:06:00    2015-06-07 08:06:00
23655    19830    644    2015-09-17 21:09:37    2015-09-17 21:09:37
23656    18157    865    2016-02-01 08:41:05    2016-02-01 08:41:05
23657    18043    956    2015-10-09 14:44:36    2015-10-09 14:44:36
23658    18122    779    2016-03-20 20:53:18    2016-03-20 20:53:18
23659    18981    612    2015-06-08 01:41:17    2015-06-08 01:41:17
23660    17159    640    2015-11-04 05:13:00    2015-11-04 05:13:00
23661    19736    797    2015-06-25 16:50:46    2015-06-25 16:50:46
23662    19956    680    2015-09-28 16:35:39    2015-09-28 16:35:39
23663    18611    761    2015-06-03 12:27:04    2015-06-03 12:27:04
23664    18512    774    2016-04-09 10:01:23    2016-04-09 10:01:23
23665    19603    525    2016-02-04 02:15:37    2016-02-04 02:15:37
23666    18361    499    2016-01-11 23:35:44    2016-01-11 23:35:44
23667    15171    869    2016-02-10 04:47:56    2016-02-10 04:47:56
23668    13494    564    2015-10-10 22:51:23    2015-10-10 22:51:23
23669    10537    599    2015-10-01 14:30:13    2015-10-01 14:30:13
23670    18464    903    2016-03-23 16:09:35    2016-03-23 16:09:35
23671    14862    908    2015-06-25 22:14:19    2015-06-25 22:14:19
23672    12882    903    2015-08-13 03:21:52    2015-08-13 03:21:52
23673    16593    602    2015-10-20 10:25:40    2015-10-20 10:25:40
23674    13983    490    2015-05-09 22:57:06    2015-05-09 22:57:06
23675    19400    915    2016-01-28 13:47:47    2016-01-28 13:47:47
23676    13186    783    2015-06-05 07:01:46    2015-06-05 07:01:46
23677    18284    851    2015-07-29 11:39:44    2015-07-29 11:39:44
23678    11835    824    2015-11-05 02:02:16    2015-11-05 02:02:16
23679    12062    927    2015-08-06 01:12:51    2015-08-06 01:12:51
23680    19162    802    2016-03-30 21:01:16    2016-03-30 21:01:16
23681    15601    574    2016-02-26 14:09:36    2016-02-26 14:09:36
23682    11605    611    2016-04-01 19:16:16    2016-04-01 19:16:16
23683    17118    926    2015-06-21 07:21:21    2015-06-21 07:21:21
23684    15409    555    2015-10-28 01:48:58    2015-10-28 01:48:58
23685    14167    732    2016-01-16 19:03:29    2016-01-16 19:03:29
23686    11416    540    2016-03-09 23:01:11    2016-03-09 23:01:11
23687    18594    920    2015-12-21 21:26:33    2015-12-21 21:26:33
23688    12096    788    2016-02-25 02:10:06    2016-02-25 02:10:06
23689    14247    658    2016-03-05 19:21:41    2016-03-05 19:21:41
23690    11192    920    2015-05-09 00:57:25    2015-05-09 00:57:25
23691    13811    584    2016-01-21 07:43:25    2016-01-21 07:43:25
23692    19050    798    2015-10-07 00:35:19    2015-10-07 00:35:19
23693    16438    935    2016-02-06 16:59:40    2016-02-06 16:59:40
23694    19689    941    2015-08-12 14:08:52    2015-08-12 14:08:52
23695    17722    911    2015-07-31 04:51:43    2015-07-31 04:51:43
23696    16079    476    2016-02-21 04:46:04    2016-02-21 04:46:04
23697    10801    570    2015-07-23 14:00:46    2015-07-23 14:00:46
23698    11270    488    2015-10-27 12:18:48    2015-10-27 12:18:48
23699    19542    479    2015-11-02 23:07:51    2015-11-02 23:07:51
23700    19110    715    2015-05-05 01:07:07    2015-05-05 01:07:07
23701    17141    726    2015-05-13 13:11:37    2015-05-13 13:11:37
23702    17001    888    2015-11-19 15:25:33    2015-11-19 15:25:33
23703    17266    675    2015-08-17 14:55:44    2015-08-17 14:55:44
23704    12066    488    2015-08-24 15:18:13    2015-08-24 15:18:13
23705    17895    591    2015-11-14 18:37:13    2015-11-14 18:37:13
23706    18277    753    2016-01-05 01:32:02    2016-01-05 01:32:02
23707    14840    740    2015-07-03 22:06:50    2015-07-03 22:06:50
23708    15465    896    2015-08-13 12:16:11    2015-08-13 12:16:11
23709    11845    577    2015-11-10 11:20:30    2015-11-10 11:20:30
23710    13888    894    2016-01-31 01:55:24    2016-01-31 01:55:24
23711    12133    723    2016-01-11 05:04:38    2016-01-11 05:04:38
23712    19046    884    2015-10-09 05:16:50    2015-10-09 05:16:50
23713    17726    849    2015-06-08 18:44:29    2015-06-08 18:44:29
23714    19134    826    2015-07-28 23:24:03    2015-07-28 23:24:03
23715    14148    677    2015-06-22 15:00:22    2015-06-22 15:00:22
23716    19667    517    2016-01-08 20:17:32    2016-01-08 20:17:32
23717    10745    614    2016-03-04 20:45:37    2016-03-04 20:45:37
23718    13963    499    2016-02-28 14:54:18    2016-02-28 14:54:18
23719    10190    635    2015-09-26 02:23:38    2015-09-26 02:23:38
23720    14518    950    2015-08-11 01:06:00    2015-08-11 01:06:00
23721    19778    818    2015-04-25 07:45:36    2015-04-25 07:45:36
23722    16544    525    2015-05-04 03:02:12    2015-05-04 03:02:12
23723    19446    793    2015-08-05 00:13:51    2015-08-05 00:13:51
23724    16760    852    2015-09-03 17:44:53    2015-09-03 17:44:53
23725    14149    483    2016-02-15 12:23:01    2016-02-15 12:23:01
23726    17861    515    2016-01-03 17:08:23    2016-01-03 17:08:23
23727    14282    803    2015-08-14 17:07:31    2015-08-14 17:07:31
23728    10224    716    2016-01-21 13:19:51    2016-01-21 13:19:51
23729    17227    784    2016-01-24 23:27:08    2016-01-24 23:27:08
23730    12874    776    2015-09-19 19:35:30    2015-09-19 19:35:30
23731    11282    618    2016-03-07 12:49:44    2016-03-07 12:49:44
23732    12901    582    2016-01-08 05:37:25    2016-01-08 05:37:25
23733    10507    935    2015-08-31 10:57:10    2015-08-31 10:57:10
23734    15335    785    2015-06-13 22:57:04    2015-06-13 22:57:04
23735    13432    893    2015-05-17 02:44:06    2015-05-17 02:44:06
23736    19325    826    2016-01-06 16:38:51    2016-01-06 16:38:51
23737    17843    792    2016-02-02 15:50:46    2016-02-02 15:50:46
23738    11985    941    2015-10-19 04:51:10    2015-10-19 04:51:10
23739    14503    875    2016-04-19 05:41:27    2016-04-19 05:41:27
23740    18848    745    2015-07-02 17:08:50    2015-07-02 17:08:50
23741    17383    889    2015-04-27 14:10:25    2015-04-27 14:10:25
23742    18850    563    2015-06-02 11:44:00    2015-06-02 11:44:00
23743    14998    613    2016-01-08 23:46:08    2016-01-08 23:46:08
23744    12716    884    2016-01-26 18:49:46    2016-01-26 18:49:46
23745    13168    753    2015-10-17 21:09:04    2015-10-17 21:09:04
23746    19162    762    2015-12-02 00:26:42    2015-12-02 00:26:42
23747    18846    617    2015-07-19 02:16:54    2015-07-19 02:16:54
23748    12286    939    2015-11-01 19:44:01    2015-11-01 19:44:01
23749    17739    725    2015-10-10 19:26:19    2015-10-10 19:26:19
23750    12683    851    2016-01-14 03:18:38    2016-01-14 03:18:38
23751    16194    852    2015-12-14 01:06:30    2015-12-14 01:06:30
23752    13582    840    2015-06-03 18:05:33    2015-06-03 18:05:33
23753    10089    890    2015-12-27 07:04:40    2015-12-27 07:04:40
23754    16663    940    2015-10-10 22:07:19    2015-10-10 22:07:19
23755    14815    771    2016-04-12 01:58:40    2016-04-12 01:58:40
23756    13389    785    2015-06-07 21:59:45    2015-06-07 21:59:45
23757    12458    716    2016-03-24 05:21:00    2016-03-24 05:21:00
23758    15199    495    2015-10-16 18:28:51    2015-10-16 18:28:51
23759    11091    817    2016-04-11 13:57:05    2016-04-11 13:57:05
23760    11514    557    2015-05-07 07:34:34    2015-05-07 07:34:34
23761    17404    822    2016-02-16 00:39:38    2016-02-16 00:39:38
23762    13611    805    2015-12-21 20:06:28    2015-12-21 20:06:28
23763    16719    535    2015-05-22 03:07:42    2015-05-22 03:07:42
23764    15118    562    2015-11-27 10:12:06    2015-11-27 10:12:06
23765    14951    956    2015-09-16 19:24:29    2015-09-16 19:24:29
23766    13435    630    2015-11-24 20:39:07    2015-11-24 20:39:07
23767    14833    592    2016-03-01 06:51:25    2016-03-01 06:51:25
23768    10304    724    2015-09-21 05:50:54    2015-09-21 05:50:54
23769    15082    948    2016-02-28 01:59:20    2016-02-28 01:59:20
23770    10107    755    2016-01-04 20:36:54    2016-01-04 20:36:54
23771    15244    720    2015-11-23 18:18:52    2015-11-23 18:18:52
23772    13307    529    2015-12-16 11:25:50    2015-12-16 11:25:50
23773    15905    648    2016-02-10 09:24:31    2016-02-10 09:24:31
23774    15948    764    2015-06-09 05:07:10    2015-06-09 05:07:10
23775    14856    765    2016-04-04 13:35:43    2016-04-04 13:35:43
23776    18320    820    2015-11-05 05:30:19    2015-11-05 05:30:19
23777    17491    541    2015-11-05 21:41:53    2015-11-05 21:41:53
23778    15492    491    2015-08-19 10:17:12    2015-08-19 10:17:12
23779    17966    792    2015-05-09 05:10:11    2015-05-09 05:10:11
23780    16529    813    2015-07-18 21:31:47    2015-07-18 21:31:47
23781    19396    747    2015-06-14 18:48:21    2015-06-14 18:48:21
23782    10068    726    2016-01-12 00:23:46    2016-01-12 00:23:46
23783    13857    527    2015-09-25 13:41:51    2015-09-25 13:41:51
23784    14808    611    2016-04-18 16:30:43    2016-04-18 16:30:43
23785    18090    660    2015-11-07 20:00:09    2015-11-07 20:00:09
23786    16883    647    2015-12-14 20:06:27    2015-12-14 20:06:27
23787    19909    605    2015-05-01 07:32:24    2015-05-01 07:32:24
23788    16887    534    2015-05-01 22:39:55    2015-05-01 22:39:55
23789    13719    489    2015-05-12 15:32:04    2015-05-12 15:32:04
23790    16892    899    2015-10-13 20:08:49    2015-10-13 20:08:49
23791    19026    839    2016-03-22 19:58:28    2016-03-22 19:58:28
23792    17177    628    2015-10-28 10:24:29    2015-10-28 10:24:29
23793    18844    649    2015-12-09 14:54:11    2015-12-09 14:54:11
23794    15775    618    2016-02-17 06:02:57    2016-02-17 06:02:57
23795    17920    789    2016-04-02 04:00:38    2016-04-02 04:00:38
23796    12374    883    2015-11-07 15:57:09    2015-11-07 15:57:09
23797    14244    598    2015-11-11 12:10:59    2015-11-11 12:10:59
23798    14121    626    2015-12-18 23:20:11    2015-12-18 23:20:11
23799    18590    662    2015-12-11 13:38:54    2015-12-11 13:38:54
23800    17604    583    2015-11-27 15:08:30    2015-11-27 15:08:30
23801    14939    662    2015-09-01 07:04:36    2015-09-01 07:04:36
23802    12472    786    2015-12-03 14:21:11    2015-12-03 14:21:11
23803    10546    781    2015-06-22 03:15:55    2015-06-22 03:15:55
23804    15631    575    2015-12-09 15:23:18    2015-12-09 15:23:18
23805    12787    505    2016-04-03 06:27:09    2016-04-03 06:27:09
23806    13119    545    2016-01-20 09:56:45    2016-01-20 09:56:45
23807    15312    625    2015-07-08 23:07:53    2015-07-08 23:07:53
23808    14723    466    2016-04-10 10:49:50    2016-04-10 10:49:50
23809    18073    600    2016-03-25 14:26:26    2016-03-25 14:26:26
23810    17703    597    2015-10-15 07:40:51    2015-10-15 07:40:51
23811    17108    853    2015-04-30 17:03:55    2015-04-30 17:03:55
23812    15744    504    2015-11-16 15:06:36    2015-11-16 15:06:36
23813    15089    476    2015-04-24 17:39:39    2015-04-24 17:39:39
23814    11987    657    2015-07-25 18:05:56    2015-07-25 18:05:56
23815    13134    514    2016-04-03 00:24:04    2016-04-03 00:24:04
23816    16281    959    2016-01-04 21:46:57    2016-01-04 21:46:57
23817    10653    881    2015-07-08 11:32:47    2015-07-08 11:32:47
23818    15487    842    2015-07-09 01:10:40    2015-07-09 01:10:40
23819    19430    510    2016-01-21 03:08:38    2016-01-21 03:08:38
23820    15958    530    2015-05-18 22:13:54    2015-05-18 22:13:54
23821    18421    692    2015-06-20 00:20:31    2015-06-20 00:20:31
23822    18000    915    2015-05-17 05:54:24    2015-05-17 05:54:24
23823    13915    570    2015-07-16 03:23:16    2015-07-16 03:23:16
23824    11369    808    2016-02-11 02:29:22    2016-02-11 02:29:22
23825    17880    960    2016-04-03 16:54:43    2016-04-03 16:54:43
23826    19626    638    2015-10-10 11:50:53    2015-10-10 11:50:53
23827    16796    631    2016-02-17 10:30:42    2016-02-17 10:30:42
23828    12792    561    2015-11-16 21:05:58    2015-11-16 21:05:58
23829    14663    521    2015-05-03 12:06:47    2015-05-03 12:06:47
23830    14154    540    2016-04-04 00:34:01    2016-04-04 00:34:01
23831    19162    552    2016-02-18 02:50:31    2016-02-18 02:50:31
23832    14067    931    2016-01-30 16:16:07    2016-01-30 16:16:07
23833    11395    945    2016-04-16 00:05:20    2016-04-16 00:05:20
23834    16718    536    2015-12-18 09:00:09    2015-12-18 09:00:09
23835    14590    468    2015-10-25 19:52:31    2015-10-25 19:52:31
23836    14052    523    2015-11-14 22:18:32    2015-11-14 22:18:32
23837    19677    464    2015-10-30 15:11:47    2015-10-30 15:11:47
23838    16294    477    2015-10-11 12:58:21    2015-10-11 12:58:21
23839    18265    858    2015-07-26 05:49:04    2015-07-26 05:49:04
23840    12061    867    2016-03-27 10:03:38    2016-03-27 10:03:38
23841    19836    482    2015-10-18 23:07:06    2015-10-18 23:07:06
23842    15293    512    2015-12-12 03:22:05    2015-12-12 03:22:05
23843    15185    556    2015-10-10 02:47:29    2015-10-10 02:47:29
23844    12437    925    2015-12-05 18:03:50    2015-12-05 18:03:50
23845    19917    790    2016-01-07 15:47:14    2016-01-07 15:47:14
23846    15536    534    2015-05-23 06:55:06    2015-05-23 06:55:06
23847    18633    878    2015-07-24 17:08:44    2015-07-24 17:08:44
23848    10877    941    2015-06-17 09:59:42    2015-06-17 09:59:42
23849    12293    713    2015-11-15 09:27:35    2015-11-15 09:27:35
23850    15812    937    2015-09-27 02:13:58    2015-09-27 02:13:58
23851    17194    754    2015-11-14 18:44:41    2015-11-14 18:44:41
23852    18034    474    2015-06-21 06:55:14    2015-06-21 06:55:14
23853    16375    872    2015-07-16 10:05:56    2015-07-16 10:05:56
23854    12222    670    2015-08-23 20:22:23    2015-08-23 20:22:23
23855    10578    656    2016-01-03 21:00:23    2016-01-03 21:00:23
23856    15391    836    2015-09-20 21:09:38    2015-09-20 21:09:38
23857    18559    873    2015-12-14 09:18:21    2015-12-14 09:18:21
23858    19347    867    2015-12-19 07:06:13    2015-12-19 07:06:13
23859    17393    897    2016-03-18 01:06:26    2016-03-18 01:06:26
23860    16256    950    2015-04-22 03:51:55    2015-04-22 03:51:55
23861    15946    906    2016-03-22 04:25:54    2016-03-22 04:25:54
23862    13176    815    2015-09-08 02:49:47    2015-09-08 02:49:47
23863    10041    556    2015-10-19 09:25:21    2015-10-19 09:25:21
23864    11732    929    2015-08-01 12:28:59    2015-08-01 12:28:59
23865    10552    484    2015-11-04 13:58:12    2015-11-04 13:58:12
23866    10840    542    2016-03-07 09:45:55    2016-03-07 09:45:55
23867    17511    592    2016-04-18 15:40:24    2016-04-18 15:40:24
23868    18167    908    2015-04-29 16:57:46    2015-04-29 16:57:46
23869    17874    704    2015-11-01 20:56:33    2015-11-01 20:56:33
23870    12881    535    2016-02-03 22:26:57    2016-02-03 22:26:57
23871    17166    653    2016-01-18 13:49:42    2016-01-18 13:49:42
23872    11232    787    2015-08-21 17:51:33    2015-08-21 17:51:33
23873    11630    746    2015-12-26 01:50:35    2015-12-26 01:50:35
23874    18442    897    2016-02-02 18:43:29    2016-02-02 18:43:29
23875    15303    688    2015-04-28 23:18:54    2015-04-28 23:18:54
23876    17889    799    2015-12-14 05:49:46    2015-12-14 05:49:46
23877    11355    472    2015-07-24 18:38:51    2015-07-24 18:38:51
23878    12382    873    2015-09-12 23:54:38    2015-09-12 23:54:38
23879    12637    516    2016-04-13 11:02:11    2016-04-13 11:02:11
23880    19380    580    2015-10-28 13:39:01    2015-10-28 13:39:01
23881    11772    572    2015-08-31 04:39:56    2015-08-31 04:39:56
23882    10560    604    2015-06-27 04:14:54    2015-06-27 04:14:54
23883    10654    746    2015-08-12 20:46:43    2015-08-12 20:46:43
23884    12474    561    2015-09-17 18:16:27    2015-09-17 18:16:27
23885    18765    727    2016-01-27 00:15:57    2016-01-27 00:15:57
23886    12552    852    2015-08-17 11:04:55    2015-08-17 11:04:55
23887    12765    639    2016-03-18 10:38:41    2016-03-18 10:38:41
23888    10794    512    2015-10-30 01:38:58    2015-10-30 01:38:58
23889    18737    601    2015-09-20 14:49:08    2015-09-20 14:49:08
23890    19424    908    2016-04-02 18:38:41    2016-04-02 18:38:41
23891    10544    756    2015-07-27 00:21:40    2015-07-27 00:21:40
23892    16415    631    2015-12-02 03:16:13    2015-12-02 03:16:13
23893    14555    630    2015-09-19 15:11:15    2015-09-19 15:11:15
23894    17753    682    2015-06-28 14:19:50    2015-06-28 14:19:50
23895    15584    756    2016-03-01 16:48:37    2016-03-01 16:48:37
23896    14335    913    2015-05-22 10:09:32    2015-05-22 10:09:32
23897    17738    877    2015-09-13 22:50:52    2015-09-13 22:50:52
23898    16897    532    2015-05-22 01:48:48    2015-05-22 01:48:48
23899    14069    467    2015-12-20 03:36:07    2015-12-20 03:36:07
23900    17308    936    2016-01-16 06:02:14    2016-01-16 06:02:14
23901    17593    859    2015-10-17 09:10:19    2015-10-17 09:10:19
23902    16493    748    2016-02-06 02:08:39    2016-02-06 02:08:39
23903    18317    873    2015-09-18 11:57:54    2015-09-18 11:57:54
23904    17007    661    2015-11-02 00:55:40    2015-11-02 00:55:40
23905    13473    641    2015-06-12 20:54:23    2015-06-12 20:54:23
23906    14086    828    2015-08-08 21:06:23    2015-08-08 21:06:23
23907    19310    820    2015-07-20 12:29:47    2015-07-20 12:29:47
23908    10299    766    2015-08-15 19:18:33    2015-08-15 19:18:33
23909    14362    873    2015-04-22 19:47:34    2015-04-22 19:47:34
23910    14141    927    2015-06-28 12:37:11    2015-06-28 12:37:11
23911    12689    827    2015-09-12 01:00:56    2015-09-12 01:00:56
23912    12926    701    2015-11-26 09:16:39    2015-11-26 09:16:39
23913    16252    888    2015-08-18 03:38:45    2015-08-18 03:38:45
23914    17139    876    2016-02-10 17:23:52    2016-02-10 17:23:52
23915    18444    538    2016-01-03 01:11:29    2016-01-03 01:11:29
23916    12195    736    2016-01-11 07:03:02    2016-01-11 07:03:02
23917    16687    798    2015-11-10 18:38:50    2015-11-10 18:38:50
23918    15361    787    2015-06-02 12:20:23    2015-06-02 12:20:23
23919    10208    954    2016-01-10 19:32:53    2016-01-10 19:32:53
23920    10732    745    2016-03-29 20:33:16    2016-03-29 20:33:16
23921    18617    767    2015-10-15 02:17:19    2015-10-15 02:17:19
23922    19495    872    2015-04-22 08:45:46    2015-04-22 08:45:46
23923    17023    603    2015-05-30 15:06:55    2015-05-30 15:06:55
23924    18325    582    2015-09-01 12:57:42    2015-09-01 12:57:42
23925    19621    561    2016-01-02 21:44:56    2016-01-02 21:44:56
23926    15286    832    2015-06-16 01:05:17    2015-06-16 01:05:17
23927    12111    563    2016-04-09 02:55:32    2016-04-09 02:55:32
23928    15731    894    2015-12-10 23:53:56    2015-12-10 23:53:56
23929    15842    663    2015-05-03 16:58:28    2015-05-03 16:58:28
23930    16008    959    2015-08-12 21:12:05    2015-08-12 21:12:05
23931    14482    680    2015-12-18 01:28:30    2015-12-18 01:28:30
23932    19173    651    2016-02-25 20:25:39    2016-02-25 20:25:39
23933    14854    659    2016-02-18 10:04:01    2016-02-18 10:04:01
23934    18447    717    2016-01-27 12:29:19    2016-01-27 12:29:19
23935    16009    497    2015-09-24 16:57:26    2015-09-24 16:57:26
23936    10773    470    2015-05-15 19:10:03    2015-05-15 19:10:03
23937    12234    519    2015-08-12 13:42:34    2015-08-12 13:42:34
23938    17120    630    2015-11-29 18:05:36    2015-11-29 18:05:36
23939    13399    477    2015-09-10 14:01:16    2015-09-10 14:01:16
23940    13778    843    2015-05-14 04:47:15    2015-05-14 04:47:15
23941    12702    601    2015-11-17 01:43:25    2015-11-17 01:43:25
23942    13432    463    2016-02-28 11:18:46    2016-02-28 11:18:46
23943    18645    615    2015-08-13 21:53:09    2015-08-13 21:53:09
23944    18344    760    2016-02-08 07:15:40    2016-02-08 07:15:40
23945    18524    705    2015-05-15 10:14:27    2015-05-15 10:14:27
23946    11711    614    2015-07-03 09:43:40    2015-07-03 09:43:40
23947    14253    800    2015-07-20 09:31:17    2015-07-20 09:31:17
23948    18612    758    2015-06-28 19:11:23    2015-06-28 19:11:23
23949    13271    612    2015-11-24 18:22:30    2015-11-24 18:22:30
23950    17539    938    2015-08-01 21:38:14    2015-08-01 21:38:14
23951    15334    851    2016-01-01 10:04:02    2016-01-01 10:04:02
23952    10024    881    2015-04-30 21:56:08    2015-04-30 21:56:08
23953    13786    581    2015-10-07 01:22:30    2015-10-07 01:22:30
23954    17547    875    2015-10-03 09:46:09    2015-10-03 09:46:09
23955    13672    606    2015-12-03 22:27:25    2015-12-03 22:27:25
23956    19520    852    2015-12-02 15:14:39    2015-12-02 15:14:39
23957    18564    605    2015-05-06 08:45:21    2015-05-06 08:45:21
23958    14197    628    2015-08-30 00:53:18    2015-08-30 00:53:18
23959    19711    870    2015-07-26 08:33:20    2015-07-26 08:33:20
23960    17996    669    2015-10-08 16:56:07    2015-10-08 16:56:07
23961    11729    741    2015-07-23 00:34:33    2015-07-23 00:34:33
23962    10119    599    2015-12-20 18:51:05    2015-12-20 18:51:05
23963    15751    942    2016-03-31 05:13:11    2016-03-31 05:13:11
23964    10005    696    2015-12-15 20:01:39    2015-12-15 20:01:39
23965    18664    885    2015-12-08 16:23:44    2015-12-08 16:23:44
23966    18102    580    2016-03-01 06:16:45    2016-03-01 06:16:45
23967    15459    961    2015-08-08 15:00:21    2015-08-08 15:00:21
23968    12558    495    2015-11-02 01:35:06    2015-11-02 01:35:06
23969    13335    810    2015-11-12 16:35:20    2015-11-12 16:35:20
23970    17416    651    2015-10-30 05:50:46    2015-10-30 05:50:46
23971    18392    653    2016-01-24 23:21:58    2016-01-24 23:21:58
23972    12788    777    2015-08-06 22:33:44    2015-08-06 22:33:44
23973    18349    722    2015-11-10 19:25:27    2015-11-10 19:25:27
23974    13640    906    2016-03-05 07:37:25    2016-03-05 07:37:25
23975    16665    627    2015-08-05 17:48:13    2015-08-05 17:48:13
23976    13615    901    2015-09-02 17:13:10    2015-09-02 17:13:10
23977    18674    548    2015-08-24 14:05:07    2015-08-24 14:05:07
23978    11036    640    2016-01-01 05:39:15    2016-01-01 05:39:15
23979    19606    678    2015-10-30 02:53:38    2015-10-30 02:53:38
23980    15941    823    2015-10-01 06:37:39    2015-10-01 06:37:39
23981    10228    703    2015-10-12 04:30:53    2015-10-12 04:30:53
23982    11657    876    2016-02-20 18:27:35    2016-02-20 18:27:35
23983    18502    584    2015-07-06 05:58:53    2015-07-06 05:58:53
23984    17302    568    2016-04-09 23:19:40    2016-04-09 23:19:40
23985    16694    615    2015-09-24 08:23:31    2015-09-24 08:23:31
23986    11022    560    2015-08-11 18:15:32    2015-08-11 18:15:32
23987    11776    555    2015-09-30 02:39:31    2015-09-30 02:39:31
23988    15606    752    2016-04-09 07:58:09    2016-04-09 07:58:09
23989    19034    626    2016-03-22 11:43:38    2016-03-22 11:43:38
23990    11103    894    2015-11-29 16:36:09    2015-11-29 16:36:09
23991    19663    631    2015-08-18 00:24:25    2015-08-18 00:24:25
23992    12731    620    2015-12-27 18:46:22    2015-12-27 18:46:22
23993    19790    795    2015-09-19 11:50:56    2015-09-19 11:50:56
23994    12155    698    2015-07-08 15:25:32    2015-07-08 15:25:32
23995    17079    889    2015-09-10 00:16:53    2015-09-10 00:16:53
23996    14400    717    2015-09-14 06:06:10    2015-09-14 06:06:10
23997    12222    497    2016-04-02 03:42:53    2016-04-02 03:42:53
23998    17583    681    2016-01-03 15:41:20    2016-01-03 15:41:20
23999    19024    883    2016-02-26 07:00:48    2016-02-26 07:00:48
24000    10282    787    2015-08-25 07:32:53    2015-08-25 07:32:53
24001    11255    741    2016-01-20 00:18:39    2016-01-20 00:18:39
24002    10382    778    2016-04-01 19:57:13    2016-04-01 19:57:13
24003    14648    561    2015-10-09 09:28:33    2015-10-09 09:28:33
24004    15106    834    2015-05-14 18:35:33    2015-05-14 18:35:33
24005    15739    797    2015-11-06 04:36:44    2015-11-06 04:36:44
24006    13348    748    2015-11-15 14:12:12    2015-11-15 14:12:12
24007    12113    539    2015-12-14 17:52:15    2015-12-14 17:52:15
24008    13273    465    2015-12-17 17:51:14    2015-12-17 17:51:14
24009    18257    753    2016-04-13 17:19:31    2016-04-13 17:19:31
24010    17201    910    2016-02-14 22:39:27    2016-02-14 22:39:27
24011    19641    837    2015-07-14 03:07:27    2015-07-14 03:07:27
24012    12277    725    2015-08-14 23:42:32    2015-08-14 23:42:32
24013    15986    949    2015-11-29 10:30:17    2015-11-29 10:30:17
24014    15214    662    2015-08-15 10:34:56    2015-08-15 10:34:56
24015    19029    842    2015-10-05 02:04:47    2015-10-05 02:04:47
24016    15824    552    2015-06-16 00:27:27    2015-06-16 00:27:27
24017    15152    910    2015-09-16 03:19:32    2015-09-16 03:19:32
24018    15168    907    2016-01-30 03:17:57    2016-01-30 03:17:57
24019    18505    857    2016-04-06 20:22:50    2016-04-06 20:22:50
24020    16469    710    2015-06-24 03:21:51    2015-06-24 03:21:51
24021    11153    658    2015-09-15 18:36:25    2015-09-15 18:36:25
24022    15931    541    2015-07-07 07:50:24    2015-07-07 07:50:24
24023    12424    638    2015-08-22 17:56:51    2015-08-22 17:56:51
24024    12517    639    2015-06-03 18:21:14    2015-06-03 18:21:14
24025    17212    692    2015-12-27 02:12:37    2015-12-27 02:12:37
24026    16827    735    2015-07-19 11:16:26    2015-07-19 11:16:26
24027    14756    855    2016-03-22 21:42:59    2016-03-22 21:42:59
24028    18317    468    2015-06-04 01:42:34    2015-06-04 01:42:34
24029    12983    766    2015-06-24 08:28:52    2015-06-24 08:28:52
24030    19578    817    2015-11-14 09:08:14    2015-11-14 09:08:14
24031    14703    620    2016-03-01 20:46:59    2016-03-01 20:46:59
24032    13326    893    2016-01-12 04:56:25    2016-01-12 04:56:25
24033    14848    569    2016-04-19 00:51:16    2016-04-19 00:51:16
24034    18133    581    2015-10-31 18:35:21    2015-10-31 18:35:21
24035    14072    584    2015-06-23 09:13:45    2015-06-23 09:13:45
24036    13605    515    2016-01-09 05:44:31    2016-01-09 05:44:31
24037    16364    869    2015-09-04 11:18:30    2015-09-04 11:18:30
24038    17143    612    2016-03-24 12:05:16    2016-03-24 12:05:16
24039    14200    500    2015-12-23 09:34:30    2015-12-23 09:34:30
24040    19333    688    2015-11-09 00:48:50    2015-11-09 00:48:50
24041    15390    541    2015-10-29 03:18:02    2015-10-29 03:18:02
24042    16931    883    2015-07-18 11:39:33    2015-07-18 11:39:33
24043    18408    695    2015-07-09 14:00:38    2015-07-09 14:00:38
24044    13243    697    2015-05-27 07:00:23    2015-05-27 07:00:23
24045    17406    731    2016-02-23 08:46:19    2016-02-23 08:46:19
24046    15316    662    2016-03-29 20:48:20    2016-03-29 20:48:20
24047    14623    907    2016-03-05 15:33:17    2016-03-05 15:33:17
24048    10476    467    2015-08-03 12:46:53    2015-08-03 12:46:53
24049    12897    702    2015-05-03 02:36:18    2015-05-03 02:36:18
24050    12768    686    2016-02-27 07:47:55    2016-02-27 07:47:55
24051    15614    491    2015-07-08 04:19:22    2015-07-08 04:19:22
24052    19870    488    2015-08-28 07:12:05    2015-08-28 07:12:05
24053    14422    852    2016-01-26 14:38:40    2016-01-26 14:38:40
24054    18247    678    2015-06-06 04:51:47    2015-06-06 04:51:47
24055    12369    794    2015-07-29 12:52:14    2015-07-29 12:52:14
24056    18176    753    2015-12-31 19:55:56    2015-12-31 19:55:56
24057    19287    482    2016-02-05 16:09:02    2016-02-05 16:09:02
24058    10212    549    2015-08-13 17:39:55    2015-08-13 17:39:55
24059    15314    792    2016-01-11 11:55:38    2016-01-11 11:55:38
24060    11945    749    2016-01-18 09:36:37    2016-01-18 09:36:37
24061    16326    477    2015-12-29 17:18:47    2015-12-29 17:18:47
24062    19023    913    2016-03-10 22:29:03    2016-03-10 22:29:03
24063    14271    532    2015-09-20 13:17:32    2015-09-20 13:17:32
24064    14022    750    2015-06-10 07:00:11    2015-06-10 07:00:11
24065    17510    764    2015-08-10 20:57:01    2015-08-10 20:57:01
24066    11002    700    2015-09-09 11:39:33    2015-09-09 11:39:33
24067    19899    861    2016-03-15 08:25:42    2016-03-15 08:25:42
24068    16735    559    2015-09-26 07:43:41    2015-09-26 07:43:41
24069    16150    804    2016-04-14 01:00:10    2016-04-14 01:00:10
24070    15173    741    2015-10-06 17:43:31    2015-10-06 17:43:31
24071    18628    546    2015-07-25 17:17:04    2015-07-25 17:17:04
24072    10787    734    2015-08-19 14:30:23    2015-08-19 14:30:23
24073    13573    883    2015-06-14 02:08:50    2015-06-14 02:08:50
24074    12862    819    2015-07-12 00:16:35    2015-07-12 00:16:35
24075    12617    627    2015-08-02 09:19:30    2015-08-02 09:19:30
24076    11477    929    2015-11-12 10:17:47    2015-11-12 10:17:47
24077    13784    792    2015-10-30 16:33:41    2015-10-30 16:33:41
24078    17778    719    2015-12-24 08:38:09    2015-12-24 08:38:09
24079    11317    507    2015-12-09 17:41:22    2015-12-09 17:41:22
24080    17448    584    2015-07-29 07:25:04    2015-07-29 07:25:04
24081    15974    759    2015-08-17 20:09:22    2015-08-17 20:09:22
24082    14208    957    2016-03-08 17:59:20    2016-03-08 17:59:20
24083    19774    716    2015-10-25 16:21:14    2015-10-25 16:21:14
24084    19556    736    2015-07-21 14:01:54    2015-07-21 14:01:54
24085    14521    556    2015-05-08 10:38:43    2015-05-08 10:38:43
24086    16782    847    2015-10-22 21:52:09    2015-10-22 21:52:09
24087    14547    540    2016-01-22 17:41:42    2016-01-22 17:41:42
24088    18550    936    2015-07-24 15:43:09    2015-07-24 15:43:09
24089    16682    668    2015-12-15 12:36:28    2015-12-15 12:36:28
24090    16954    677    2016-02-12 19:48:27    2016-02-12 19:48:27
24091    18681    610    2015-11-30 02:26:43    2015-11-30 02:26:43
24092    11095    547    2015-10-14 20:01:31    2015-10-14 20:01:31
24093    13710    716    2015-06-15 03:51:43    2015-06-15 03:51:43
24094    11157    840    2015-10-18 15:57:53    2015-10-18 15:57:53
24095    10628    937    2016-01-24 18:33:02    2016-01-24 18:33:02
24096    12092    554    2015-08-10 22:45:29    2015-08-10 22:45:29
24097    14470    684    2016-02-02 04:06:39    2016-02-02 04:06:39
24098    12679    728    2016-03-19 11:41:15    2016-03-19 11:41:15
24099    19263    768    2016-04-03 22:03:54    2016-04-03 22:03:54
24100    17033    481    2016-02-08 08:39:26    2016-02-08 08:39:26
24101    15241    463    2016-03-05 12:00:46    2016-03-05 12:00:46
24102    11914    850    2015-08-29 15:35:16    2015-08-29 15:35:16
24103    18408    585    2015-11-08 06:17:11    2015-11-08 06:17:11
24104    12731    705    2015-11-02 16:28:03    2015-11-02 16:28:03
24105    16406    519    2016-04-04 12:11:29    2016-04-04 12:11:29
24106    11321    479    2015-06-12 12:13:55    2015-06-12 12:13:55
24107    10393    586    2016-01-31 19:45:07    2016-01-31 19:45:07
24108    14479    674    2015-10-29 22:54:24    2015-10-29 22:54:24
24109    13814    666    2015-10-18 13:39:22    2015-10-18 13:39:22
24110    14628    762    2016-04-14 04:03:08    2016-04-14 04:03:08
24111    16477    699    2016-03-24 17:45:16    2016-03-24 17:45:16
24112    19828    666    2016-02-24 06:12:11    2016-02-24 06:12:11
24113    18642    940    2015-12-02 12:30:53    2015-12-02 12:30:53
24114    19518    727    2016-03-10 19:54:09    2016-03-10 19:54:09
24115    20000    609    2015-05-04 00:52:54    2015-05-04 00:52:54
24116    15825    758    2016-04-06 13:44:53    2016-04-06 13:44:53
24117    16781    915    2015-07-24 06:45:03    2015-07-24 06:45:03
24118    19091    501    2015-12-29 20:36:34    2015-12-29 20:36:34
24119    11887    738    2015-10-14 06:03:04    2015-10-14 06:03:04
24120    17783    710    2015-07-27 06:36:24    2015-07-27 06:36:24
24121    16779    666    2016-04-07 20:59:22    2016-04-07 20:59:22
24122    17701    696    2016-03-03 04:41:08    2016-03-03 04:41:08
24123    18029    864    2015-07-18 14:17:31    2015-07-18 14:17:31
24124    10939    604    2016-02-08 21:49:55    2016-02-08 21:49:55
24125    15376    772    2015-09-07 08:46:38    2015-09-07 08:46:38
24126    16629    909    2015-07-17 17:05:55    2015-07-17 17:05:55
24127    14433    908    2015-06-08 09:33:00    2015-06-08 09:33:00
24128    16616    939    2015-05-02 05:02:26    2015-05-02 05:02:26
24129    17874    823    2015-10-25 15:22:16    2015-10-25 15:22:16
24130    18736    500    2016-01-15 13:51:37    2016-01-15 13:51:37
24131    17260    756    2015-10-15 01:30:53    2015-10-15 01:30:53
24132    12253    690    2015-05-14 15:48:13    2015-05-14 15:48:13
24133    11237    924    2015-10-16 15:37:52    2015-10-16 15:37:52
24134    16358    680    2016-01-14 06:58:12    2016-01-14 06:58:12
24135    13823    553    2015-09-09 06:59:31    2015-09-09 06:59:31
24136    14375    552    2015-08-08 21:16:04    2015-08-08 21:16:04
24137    17684    798    2015-10-11 15:13:14    2015-10-11 15:13:14
24138    18750    468    2015-11-17 10:40:18    2015-11-17 10:40:18
24139    10733    648    2015-05-07 03:25:54    2015-05-07 03:25:54
24140    14169    595    2015-08-02 03:43:37    2015-08-02 03:43:37
24141    19591    855    2015-09-15 04:39:32    2015-09-15 04:39:32
24142    16856    932    2015-11-26 08:19:46    2015-11-26 08:19:46
24143    14567    531    2015-04-23 16:15:19    2015-04-23 16:15:19
24144    19543    627    2015-12-05 09:33:29    2015-12-05 09:33:29
24145    15729    488    2015-07-19 01:38:35    2015-07-19 01:38:35
24146    15449    798    2016-02-28 15:41:16    2016-02-28 15:41:16
24147    13484    517    2015-11-25 13:39:49    2015-11-25 13:39:49
24148    10449    629    2015-11-19 15:19:58    2015-11-19 15:19:58
24149    16332    676    2016-01-10 18:00:41    2016-01-10 18:00:41
24150    11325    740    2016-02-03 18:09:46    2016-02-03 18:09:46
24151    15301    869    2015-10-30 15:42:12    2015-10-30 15:42:12
24152    11040    611    2016-04-05 00:11:39    2016-04-05 00:11:39
24153    10839    924    2015-07-30 22:57:02    2015-07-30 22:57:02
24154    10066    541    2015-11-03 02:11:00    2015-11-03 02:11:00
24155    18666    948    2015-10-01 09:44:26    2015-10-01 09:44:26
24156    14983    523    2016-03-02 05:16:52    2016-03-02 05:16:52
24157    18307    951    2015-09-29 09:52:55    2015-09-29 09:52:55
24158    11789    926    2015-05-20 05:39:08    2015-05-20 05:39:08
24159    17943    549    2015-07-01 01:28:31    2015-07-01 01:28:31
24160    14546    676    2016-03-14 17:45:52    2016-03-14 17:45:52
24161    10184    741    2015-09-15 13:59:56    2015-09-15 13:59:56
24162    13229    654    2015-09-22 03:58:27    2015-09-22 03:58:27
24163    15406    551    2015-06-06 03:30:28    2015-06-06 03:30:28
24164    12136    743    2015-12-01 10:40:51    2015-12-01 10:40:51
24165    17307    836    2015-07-11 18:06:13    2015-07-11 18:06:13
24166    13343    580    2015-06-24 18:11:20    2015-06-24 18:11:20
24167    13006    859    2015-08-23 23:16:11    2015-08-23 23:16:11
24168    13280    585    2016-04-11 03:44:17    2016-04-11 03:44:17
24169    13492    569    2015-09-01 15:06:10    2015-09-01 15:06:10
24170    11724    873    2015-07-15 02:44:58    2015-07-15 02:44:58
24171    16020    571    2015-07-31 06:42:01    2015-07-31 06:42:01
24172    14241    679    2015-05-06 22:23:47    2015-05-06 22:23:47
24173    13619    552    2015-12-08 12:57:03    2015-12-08 12:57:03
24174    19902    577    2015-08-24 07:52:14    2015-08-24 07:52:14
24175    13081    761    2016-03-17 04:43:53    2016-03-17 04:43:53
24176    16023    673    2015-06-05 15:15:23    2015-06-05 15:15:23
24177    12227    514    2015-06-28 23:44:03    2015-06-28 23:44:03
24178    15765    890    2016-02-25 10:22:45    2016-02-25 10:22:45
24179    12831    548    2015-06-20 11:29:14    2015-06-20 11:29:14
24180    19295    562    2015-06-07 17:53:16    2015-06-07 17:53:16
24181    11103    822    2016-01-06 16:30:37    2016-01-06 16:30:37
24182    10089    637    2015-08-09 17:21:43    2015-08-09 17:21:43
24183    15762    477    2016-03-28 13:51:08    2016-03-28 13:51:08
24184    18144    836    2015-12-30 20:24:05    2015-12-30 20:24:05
24185    17528    556    2016-01-29 05:46:33    2016-01-29 05:46:33
24186    16174    571    2015-09-16 15:47:54    2015-09-16 15:47:54
24187    18606    797    2015-10-23 13:04:30    2015-10-23 13:04:30
24188    15824    878    2016-04-09 23:31:30    2016-04-09 23:31:30
24189    15995    681    2015-06-02 09:14:41    2015-06-02 09:14:41
24190    12863    728    2015-10-01 20:46:01    2015-10-01 20:46:01
24191    14806    892    2015-09-14 07:12:24    2015-09-14 07:12:24
24192    14179    612    2015-07-22 12:00:12    2015-07-22 12:00:12
24193    12032    748    2015-06-23 06:17:16    2015-06-23 06:17:16
24194    12358    549    2015-08-26 22:42:30    2015-08-26 22:42:30
24195    12653    486    2015-12-08 21:26:49    2015-12-08 21:26:49
24196    12550    539    2015-10-24 01:10:01    2015-10-24 01:10:01
24197    16855    691    2015-05-27 05:35:35    2015-05-27 05:35:35
24198    15969    564    2016-01-04 18:02:48    2016-01-04 18:02:48
24199    18885    556    2015-07-26 09:23:04    2015-07-26 09:23:04
24200    19736    698    2015-07-07 15:13:30    2015-07-07 15:13:30
24201    10755    585    2015-06-27 23:33:43    2015-06-27 23:33:43
24202    13567    787    2016-02-15 15:18:41    2016-02-15 15:18:41
24203    19331    696    2015-06-01 07:49:54    2015-06-01 07:49:54
24204    13186    815    2016-01-04 19:45:25    2016-01-04 19:45:25
24205    12868    548    2016-02-26 09:14:01    2016-02-26 09:14:01
24206    12475    922    2016-02-28 16:49:50    2016-02-28 16:49:50
24207    10319    898    2015-11-30 14:08:19    2015-11-30 14:08:19
24208    10574    919    2015-11-15 12:29:53    2015-11-15 12:29:53
24209    17897    734    2015-08-28 19:47:33    2015-08-28 19:47:33
24210    19257    768    2015-12-20 16:41:19    2015-12-20 16:41:19
24211    17146    763    2015-10-04 02:04:38    2015-10-04 02:04:38
24212    18853    678    2015-08-26 08:59:18    2015-08-26 08:59:18
24213    10412    912    2015-08-16 03:17:53    2015-08-16 03:17:53
24214    10442    761    2015-09-02 04:50:41    2015-09-02 04:50:41
24215    14793    513    2015-05-25 17:11:04    2015-05-25 17:11:04
24216    14890    596    2016-01-18 15:18:56    2016-01-18 15:18:56
24217    17726    652    2016-04-06 09:43:09    2016-04-06 09:43:09
24218    19042    693    2015-09-02 10:02:32    2015-09-02 10:02:32
24219    17741    521    2015-05-28 15:33:13    2015-05-28 15:33:13
24220    18195    577    2015-05-22 16:03:43    2015-05-22 16:03:43
24221    15438    772    2015-08-02 13:45:55    2015-08-02 13:45:55
24222    15909    531    2015-11-01 11:41:12    2015-11-01 11:41:12
24223    17530    662    2016-01-20 19:56:45    2016-01-20 19:56:45
24224    16370    844    2015-10-15 14:32:33    2015-10-15 14:32:33
24225    15071    841    2016-03-16 22:18:11    2016-03-16 22:18:11
24226    12432    555    2016-03-17 19:32:52    2016-03-17 19:32:52
24227    15797    960    2015-12-14 11:40:11    2015-12-14 11:40:11
24228    19427    606    2015-05-04 22:34:30    2015-05-04 22:34:30
24229    12941    548    2015-04-28 05:05:40    2015-04-28 05:05:40
24230    14375    935    2015-11-19 19:12:02    2015-11-19 19:12:02
24231    10185    728    2015-09-13 23:41:33    2015-09-13 23:41:33
24232    19668    620    2016-03-22 10:00:57    2016-03-22 10:00:57
24233    13968    737    2015-10-16 16:42:05    2015-10-16 16:42:05
24234    14377    695    2015-12-28 07:25:18    2015-12-28 07:25:18
24235    10526    690    2016-01-05 14:54:51    2016-01-05 14:54:51
24236    17472    695    2016-03-23 11:40:50    2016-03-23 11:40:50
24237    12339    493    2016-01-03 07:56:09    2016-01-03 07:56:09
24238    17820    621    2015-05-07 05:36:17    2015-05-07 05:36:17
24239    17452    662    2015-08-20 17:28:27    2015-08-20 17:28:27
24240    16991    889    2015-09-20 10:00:24    2015-09-20 10:00:24
24241    10225    694    2015-10-07 15:04:40    2015-10-07 15:04:40
24242    14678    586    2015-05-26 12:56:11    2015-05-26 12:56:11
24243    12445    556    2016-02-08 11:19:38    2016-02-08 11:19:38
24244    18867    588    2016-04-02 02:22:44    2016-04-02 02:22:44
24245    10045    566    2015-10-16 17:41:38    2015-10-16 17:41:38
24246    10640    487    2016-02-11 00:23:37    2016-02-11 00:23:37
24247    16058    792    2015-08-31 23:04:11    2015-08-31 23:04:11
24248    16772    494    2015-10-05 03:22:25    2015-10-05 03:22:25
24249    19264    768    2016-04-14 12:15:10    2016-04-14 12:15:10
24250    11994    612    2015-05-08 14:22:27    2015-05-08 14:22:27
24251    17458    621    2015-09-23 12:16:46    2015-09-23 12:16:46
24252    16868    709    2016-01-01 22:10:58    2016-01-01 22:10:58
24253    12708    635    2016-01-18 16:57:29    2016-01-18 16:57:29
24254    15216    944    2016-02-28 02:25:44    2016-02-28 02:25:44
24255    11745    858    2015-10-22 01:21:33    2015-10-22 01:21:33
24256    11847    771    2015-07-03 22:32:43    2015-07-03 22:32:43
24257    11754    751    2015-09-10 06:11:22    2015-09-10 06:11:22
24258    17069    792    2015-07-12 12:39:39    2015-07-12 12:39:39
24259    11244    712    2015-11-20 07:45:02    2015-11-20 07:45:02
24260    11875    638    2015-08-19 16:27:27    2015-08-19 16:27:27
24261    12910    626    2016-04-04 06:48:54    2016-04-04 06:48:54
24262    11228    838    2015-06-21 15:30:13    2015-06-21 15:30:13
24263    11825    759    2015-12-01 16:43:18    2015-12-01 16:43:18
24264    12555    731    2015-06-06 10:25:29    2015-06-06 10:25:29
24265    10065    795    2015-11-28 18:33:26    2015-11-28 18:33:26
24266    11199    571    2015-05-04 07:27:44    2015-05-04 07:27:44
24267    11669    710    2015-08-14 10:14:45    2015-08-14 10:14:45
24268    11690    821    2016-04-04 13:40:29    2016-04-04 13:40:29
24269    12120    939    2015-05-08 00:11:19    2015-05-08 00:11:19
24270    11464    598    2015-08-13 13:24:56    2015-08-13 13:24:56
24271    16063    843    2016-02-26 23:44:20    2016-02-26 23:44:20
24272    18633    842    2015-08-14 14:38:55    2015-08-14 14:38:55
24273    15754    587    2015-06-16 12:48:15    2015-06-16 12:48:15
24274    17451    484    2016-02-09 07:50:40    2016-02-09 07:50:40
24275    10353    514    2015-11-17 19:29:38    2015-11-17 19:29:38
24276    12398    847    2015-11-26 07:22:58    2015-11-26 07:22:58
24277    10997    932    2016-04-16 13:24:36    2016-04-16 13:24:36
24278    19164    567    2015-06-08 10:10:23    2015-06-08 10:10:23
24279    16208    819    2016-01-03 10:30:58    2016-01-03 10:30:58
24280    12045    788    2015-10-21 17:32:26    2015-10-21 17:32:26
24281    12363    863    2015-12-20 00:34:24    2015-12-20 00:34:24
24282    16520    777    2016-03-31 17:44:00    2016-03-31 17:44:00
24283    17308    912    2015-11-17 13:46:33    2015-11-17 13:46:33
24284    10367    793    2015-10-11 09:54:35    2015-10-11 09:54:35
24285    14950    931    2015-11-27 07:01:46    2015-11-27 07:01:46
24286    18439    920    2016-04-05 06:40:05    2016-04-05 06:40:05
24287    19668    845    2015-10-20 06:30:45    2015-10-20 06:30:45
24288    12840    680    2015-06-26 23:30:47    2015-06-26 23:30:47
24289    17940    604    2016-02-09 00:39:28    2016-02-09 00:39:28
24290    11611    927    2015-09-06 02:58:27    2015-09-06 02:58:27
24291    13441    848    2015-09-29 15:34:24    2015-09-29 15:34:24
24292    15318    956    2015-09-19 15:52:43    2015-09-19 15:52:43
24293    18697    903    2015-09-07 14:34:12    2015-09-07 14:34:12
24294    18338    532    2016-04-19 13:27:36    2016-04-19 13:27:36
24295    17675    500    2015-04-27 13:56:54    2015-04-27 13:56:54
24296    13789    902    2015-06-28 03:44:22    2015-06-28 03:44:22
24297    14946    869    2015-05-11 15:48:24    2015-05-11 15:48:24
24298    13784    777    2016-04-03 01:03:22    2016-04-03 01:03:22
24299    13586    835    2015-05-23 03:57:45    2015-05-23 03:57:45
24300    17331    888    2015-04-30 22:22:27    2015-04-30 22:22:27
24301    15599    854    2015-07-27 14:09:14    2015-07-27 14:09:14
24302    11714    808    2015-12-03 02:50:51    2015-12-03 02:50:51
24303    12374    620    2016-01-28 06:37:44    2016-01-28 06:37:44
24304    13272    802    2015-09-25 23:40:47    2015-09-25 23:40:47
24305    17199    574    2015-10-28 19:33:35    2015-10-28 19:33:35
24306    10895    858    2015-10-05 17:39:29    2015-10-05 17:39:29
24307    11827    527    2016-01-31 06:12:54    2016-01-31 06:12:54
24308    13398    608    2015-07-25 02:43:04    2015-07-25 02:43:04
24309    18390    594    2015-06-10 23:40:42    2015-06-10 23:40:42
24310    15657    954    2015-07-31 12:19:24    2015-07-31 12:19:24
24311    13408    742    2015-10-08 19:06:53    2015-10-08 19:06:53
24312    17926    592    2016-04-10 19:42:07    2016-04-10 19:42:07
24313    17059    678    2015-09-30 16:08:22    2015-09-30 16:08:22
24314    17025    740    2016-02-09 01:51:47    2016-02-09 01:51:47
24315    17409    698    2015-11-27 06:06:34    2015-11-27 06:06:34
24316    17343    750    2016-04-15 22:04:27    2016-04-15 22:04:27
24317    11793    582    2015-07-04 01:30:33    2015-07-04 01:30:33
24318    19913    546    2015-10-19 01:32:01    2015-10-19 01:32:01
24319    14557    699    2015-08-26 02:28:43    2015-08-26 02:28:43
24320    16461    649    2015-06-22 19:24:05    2015-06-22 19:24:05
24321    16644    566    2015-10-21 02:24:33    2015-10-21 02:24:33
24322    17816    790    2015-06-18 15:48:28    2015-06-18 15:48:28
24323    14342    753    2015-06-22 08:04:28    2015-06-22 08:04:28
24324    15255    629    2015-10-13 21:55:52    2015-10-13 21:55:52
24325    11674    926    2015-05-21 18:56:15    2015-05-21 18:56:15
24326    14098    738    2015-07-16 01:00:55    2015-07-16 01:00:55
24327    13148    638    2016-02-19 17:42:09    2016-02-19 17:42:09
24328    19994    463    2016-02-04 16:23:17    2016-02-04 16:23:17
24329    19713    491    2015-07-09 11:38:19    2015-07-09 11:38:19
24330    11566    930    2016-01-22 08:32:40    2016-01-22 08:32:40
24331    15210    885    2016-01-29 21:56:58    2016-01-29 21:56:58
24332    18364    802    2016-03-25 20:32:16    2016-03-25 20:32:16
24333    13027    636    2016-01-30 04:54:09    2016-01-30 04:54:09
24334    17862    933    2015-10-24 10:30:40    2015-10-24 10:30:40
24335    18077    581    2015-06-27 04:15:34    2015-06-27 04:15:34
24336    11983    589    2015-06-21 22:48:12    2015-06-21 22:48:12
24337    10251    796    2015-11-27 04:58:35    2015-11-27 04:58:35
24338    17984    678    2016-03-10 19:58:01    2016-03-10 19:58:01
24339    15214    477    2016-01-18 01:09:24    2016-01-18 01:09:24
24340    18781    620    2015-12-12 15:04:48    2015-12-12 15:04:48
24341    15425    815    2016-01-01 11:44:20    2016-01-01 11:44:20
24342    19019    842    2015-08-20 08:00:54    2015-08-20 08:00:54
24343    19729    496    2015-08-06 15:23:20    2015-08-06 15:23:20
24344    16349    704    2016-01-26 19:45:19    2016-01-26 19:45:19
24345    18866    763    2015-07-14 23:39:47    2015-07-14 23:39:47
24346    17615    936    2016-01-16 04:11:17    2016-01-16 04:11:17
24347    15379    861    2015-11-10 16:11:17    2015-11-10 16:11:17
24348    13638    617    2015-08-05 06:25:18    2015-08-05 06:25:18
24349    15439    702    2016-03-21 19:38:39    2016-03-21 19:38:39
24350    15366    946    2016-02-19 00:58:48    2016-02-19 00:58:48
24351    19367    496    2016-03-17 19:51:14    2016-03-17 19:51:14
24352    10396    547    2016-01-15 16:34:12    2016-01-15 16:34:12
24353    12614    800    2015-09-05 14:55:36    2015-09-05 14:55:36
24354    19646    670    2015-07-13 07:25:17    2015-07-13 07:25:17
24355    16229    734    2016-03-05 15:25:09    2016-03-05 15:25:09
24356    12677    641    2016-01-25 22:43:14    2016-01-25 22:43:14
24357    19352    875    2015-11-06 21:07:36    2015-11-06 21:07:36
24358    18422    627    2015-05-31 11:37:23    2015-05-31 11:37:23
24359    17112    880    2016-01-07 06:48:17    2016-01-07 06:48:17
24360    16650    623    2015-08-15 13:10:56    2015-08-15 13:10:56
24361    12407    822    2015-10-26 20:18:11    2015-10-26 20:18:11
24362    11656    492    2015-07-25 17:02:12    2015-07-25 17:02:12
24363    17067    533    2016-04-17 10:31:40    2016-04-17 10:31:40
24364    15033    587    2015-09-01 02:11:44    2015-09-01 02:11:44
24365    18179    683    2016-03-07 01:36:33    2016-03-07 01:36:33
24366    13677    509    2015-07-11 16:22:51    2015-07-11 16:22:51
24367    13235    888    2016-03-09 06:16:49    2016-03-09 06:16:49
24368    18969    564    2015-11-22 16:53:58    2015-11-22 16:53:58
24369    15680    523    2015-05-23 21:20:39    2015-05-23 21:20:39
24370    16416    593    2016-01-11 21:33:41    2016-01-11 21:33:41
24371    10599    821    2016-03-12 00:35:40    2016-03-12 00:35:40
24372    15867    745    2015-05-06 08:20:59    2015-05-06 08:20:59
24373    19839    803    2016-01-15 19:26:03    2016-01-15 19:26:03
24374    16352    781    2015-10-10 06:40:09    2015-10-10 06:40:09
24375    14347    956    2015-06-06 20:28:08    2015-06-06 20:28:08
24376    18048    723    2015-10-16 19:21:03    2015-10-16 19:21:03
24377    15484    775    2015-05-12 06:03:24    2015-05-12 06:03:24
24378    10009    594    2015-07-19 14:49:45    2015-07-19 14:49:45
24379    17874    765    2015-08-27 16:17:56    2015-08-27 16:17:56
24380    13965    546    2015-04-27 19:52:44    2015-04-27 19:52:44
24381    12721    516    2015-11-30 08:12:54    2015-11-30 08:12:54
24382    10300    938    2016-02-15 06:50:17    2016-02-15 06:50:17
24383    17033    555    2015-05-11 12:38:16    2015-05-11 12:38:16
24384    12215    810    2016-01-01 04:58:00    2016-01-01 04:58:00
24385    17556    693    2015-10-03 00:45:13    2015-10-03 00:45:13
24386    10908    692    2015-06-11 19:41:49    2015-06-11 19:41:49
24387    15875    939    2015-07-27 00:38:10    2015-07-27 00:38:10
24388    11805    701    2016-02-02 22:07:42    2016-02-02 22:07:42
24389    10497    476    2015-06-09 00:17:07    2015-06-09 00:17:07
24390    11276    765    2016-03-04 11:19:29    2016-03-04 11:19:29
24391    11285    823    2015-11-10 16:32:57    2015-11-10 16:32:57
24392    18709    483    2015-12-24 13:02:07    2015-12-24 13:02:07
24393    10984    776    2015-05-29 17:38:44    2015-05-29 17:38:44
24394    10886    494    2015-12-31 01:08:43    2015-12-31 01:08:43
24395    10782    738    2016-04-12 05:22:18    2016-04-12 05:22:18
24396    15646    642    2015-12-06 19:57:31    2015-12-06 19:57:31
24397    16905    789    2015-06-27 17:36:59    2015-06-27 17:36:59
24398    17517    467    2015-06-30 12:55:22    2015-06-30 12:55:22
24399    12682    831    2016-02-05 14:36:42    2016-02-05 14:36:42
24400    15625    662    2015-09-17 01:15:51    2015-09-17 01:15:51
24401    12727    559    2016-04-19 13:21:21    2016-04-19 13:21:21
24402    12840    705    2015-08-23 18:27:41    2015-08-23 18:27:41
24403    15253    923    2015-09-27 22:22:47    2015-09-27 22:22:47
24404    13165    506    2015-05-18 03:10:52    2015-05-18 03:10:52
24405    19811    553    2016-02-16 17:20:50    2016-02-16 17:20:50
24406    16503    714    2016-02-12 23:11:57    2016-02-12 23:11:57
24407    12268    894    2016-01-14 23:52:01    2016-01-14 23:52:01
24408    14672    556    2015-04-30 15:44:47    2015-04-30 15:44:47
24409    11028    832    2015-10-03 08:33:04    2015-10-03 08:33:04
24410    12821    587    2016-01-21 23:01:10    2016-01-21 23:01:10
24411    15351    469    2015-11-07 12:04:20    2015-11-07 12:04:20
24412    17974    906    2016-02-05 02:48:03    2016-02-05 02:48:03
24413    12341    578    2015-06-07 08:57:38    2015-06-07 08:57:38
24414    18152    917    2015-09-21 06:34:19    2015-09-21 06:34:19
24415    10358    662    2015-05-14 05:44:38    2015-05-14 05:44:38
24416    19638    870    2015-07-16 11:18:34    2015-07-16 11:18:34
24417    19141    528    2016-02-04 10:55:41    2016-02-04 10:55:41
24418    18173    561    2015-12-12 19:54:32    2015-12-12 19:54:32
24419    17787    787    2015-11-01 00:26:36    2015-11-01 00:26:36
24420    10742    850    2015-05-27 16:06:34    2015-05-27 16:06:34
24421    17642    614    2015-08-29 12:35:27    2015-08-29 12:35:27
24422    18883    673    2015-07-26 02:20:04    2015-07-26 02:20:04
24423    16531    478    2015-12-18 17:24:47    2015-12-18 17:24:47
24424    18516    787    2015-08-21 00:44:48    2015-08-21 00:44:48
24425    12069    804    2015-09-27 19:42:22    2015-09-27 19:42:22
24426    11101    667    2015-10-26 20:30:58    2015-10-26 20:30:58
24427    15080    490    2015-11-01 15:30:19    2015-11-01 15:30:19
24428    14655    517    2015-05-02 10:11:20    2015-05-02 10:11:20
24429    18069    562    2015-10-06 19:34:38    2015-10-06 19:34:38
24430    17492    576    2015-10-30 11:46:44    2015-10-30 11:46:44
24431    19215    696    2015-08-24 13:27:58    2015-08-24 13:27:58
24432    11943    603    2015-11-09 23:47:25    2015-11-09 23:47:25
24433    11233    957    2016-02-25 17:20:31    2016-02-25 17:20:31
24434    15335    726    2015-06-14 18:24:45    2015-06-14 18:24:45
24435    18580    845    2016-03-08 14:02:45    2016-03-08 14:02:45
24436    17977    596    2015-11-14 02:10:31    2015-11-14 02:10:31
24437    18254    938    2016-02-10 13:06:11    2016-02-10 13:06:11
24438    10913    778    2016-01-22 00:29:23    2016-01-22 00:29:23
24439    13634    699    2015-08-06 02:43:46    2015-08-06 02:43:46
24440    14912    880    2015-08-06 18:43:40    2015-08-06 18:43:40
24441    15481    827    2016-01-21 16:42:40    2016-01-21 16:42:40
24442    18314    575    2015-11-01 04:45:33    2015-11-01 04:45:33
24443    11896    575    2015-07-13 20:25:07    2015-07-13 20:25:07
24444    10426    818    2015-08-08 10:04:13    2015-08-08 10:04:13
24445    12990    849    2015-11-07 11:22:11    2015-11-07 11:22:11
24446    14132    831    2015-11-10 18:49:45    2015-11-10 18:49:45
24447    14215    752    2015-08-31 02:45:33    2015-08-31 02:45:33
24448    19678    719    2016-01-17 18:13:20    2016-01-17 18:13:20
24449    15038    555    2015-11-28 06:09:27    2015-11-28 06:09:27
24450    13433    494    2016-01-05 04:34:19    2016-01-05 04:34:19
24451    13059    580    2015-07-26 17:09:16    2015-07-26 17:09:16
24452    14024    598    2015-04-30 05:15:39    2015-04-30 05:15:39
24453    12934    896    2015-04-29 07:49:31    2015-04-29 07:49:31
24454    18658    836    2016-03-29 02:05:21    2016-03-29 02:05:21
24455    10063    606    2016-03-01 14:30:45    2016-03-01 14:30:45
24456    13523    774    2015-12-11 15:05:13    2015-12-11 15:05:13
24457    15975    741    2015-05-12 16:17:14    2015-05-12 16:17:14
24458    18435    782    2015-06-10 07:07:12    2015-06-10 07:07:12
24459    17206    799    2015-04-28 10:28:58    2015-04-28 10:28:58
24460    16848    622    2016-02-28 14:38:36    2016-02-28 14:38:36
24461    12737    687    2015-07-28 02:04:37    2015-07-28 02:04:37
24462    10239    698    2016-04-05 00:29:48    2016-04-05 00:29:48
24463    13810    866    2015-12-11 17:22:50    2015-12-11 17:22:50
24464    16016    572    2015-07-23 10:19:07    2015-07-23 10:19:07
24465    17886    480    2016-02-06 07:16:11    2016-02-06 07:16:11
24466    19168    856    2015-10-29 09:12:41    2015-10-29 09:12:41
24467    10152    762    2015-09-19 06:26:09    2015-09-19 06:26:09
24468    14643    879    2015-07-09 12:48:38    2015-07-09 12:48:38
24469    14973    631    2015-07-24 02:38:50    2015-07-24 02:38:50
24470    12172    915    2015-12-29 13:07:58    2015-12-29 13:07:58
24471    19127    898    2015-11-27 11:40:03    2015-11-27 11:40:03
24472    10707    938    2015-06-26 04:23:20    2015-06-26 04:23:20
24473    11162    826    2016-01-26 04:32:29    2016-01-26 04:32:29
24474    11148    922    2015-12-30 10:23:27    2015-12-30 10:23:27
24475    14099    677    2015-07-23 12:06:35    2015-07-23 12:06:35
24476    18671    663    2015-11-01 14:08:45    2015-11-01 14:08:45
24477    18196    940    2015-05-02 03:17:27    2015-05-02 03:17:27
24478    13028    906    2015-04-23 15:08:54    2015-04-23 15:08:54
24479    12064    515    2016-04-13 07:28:40    2016-04-13 07:28:40
24480    18159    821    2015-06-03 09:28:53    2015-06-03 09:28:53
24481    18406    917    2015-08-11 23:13:19    2015-08-11 23:13:19
24482    13526    641    2015-08-25 14:17:52    2015-08-25 14:17:52
24483    16486    823    2016-04-03 16:11:07    2016-04-03 16:11:07
24484    19392    482    2015-06-05 14:54:28    2015-06-05 14:54:28
24485    11692    849    2015-04-28 05:08:50    2015-04-28 05:08:50
24486    10454    914    2016-01-15 01:51:34    2016-01-15 01:51:34
24487    18477    813    2015-04-25 05:03:42    2015-04-25 05:03:42
24488    19203    516    2015-12-10 20:43:03    2015-12-10 20:43:03
24489    12561    660    2015-08-05 13:33:59    2015-08-05 13:33:59
24490    13736    515    2015-07-18 05:16:37    2015-07-18 05:16:37
24491    13567    520    2015-08-02 06:29:08    2015-08-02 06:29:08
24492    19643    821    2016-01-25 10:58:17    2016-01-25 10:58:17
24493    15964    618    2015-12-29 02:23:30    2015-12-29 02:23:30
24494    15630    640    2015-09-08 07:00:33    2015-09-08 07:00:33
24495    19656    960    2016-03-21 20:46:22    2016-03-21 20:46:22
24496    16129    734    2015-08-07 21:37:37    2015-08-07 21:37:37
24497    12093    600    2015-10-31 20:24:01    2015-10-31 20:24:01
24498    10666    641    2016-01-26 09:43:50    2016-01-26 09:43:50
24499    12570    467    2015-07-09 14:23:39    2015-07-09 14:23:39
24500    10008    850    2015-09-20 07:28:11    2015-09-20 07:28:11
24501    17878    926    2015-08-08 01:48:20    2015-08-08 01:48:20
24502    19269    631    2015-09-25 23:14:59    2015-09-25 23:14:59
24503    18080    599    2015-07-17 12:17:25    2015-07-17 12:17:25
24504    17163    788    2016-03-27 16:30:48    2016-03-27 16:30:48
24505    15616    703    2015-07-28 13:16:22    2015-07-28 13:16:22
24506    19193    924    2015-10-19 23:57:30    2015-10-19 23:57:30
24507    17874    954    2015-07-01 03:23:25    2015-07-01 03:23:25
24508    17348    875    2015-09-11 19:55:05    2015-09-11 19:55:05
24509    12199    622    2016-04-05 23:19:14    2016-04-05 23:19:14
24510    19260    747    2015-11-11 01:03:42    2015-11-11 01:03:42
24511    10951    939    2016-04-10 22:18:54    2016-04-10 22:18:54
24512    13302    839    2015-12-25 04:55:13    2015-12-25 04:55:13
24513    19984    904    2015-08-24 17:43:51    2015-08-24 17:43:51
24514    18706    822    2016-04-12 16:32:42    2016-04-12 16:32:42
24515    16856    816    2015-11-21 22:32:14    2015-11-21 22:32:14
24516    16929    477    2015-09-26 13:00:54    2015-09-26 13:00:54
24517    15183    468    2016-01-18 04:21:19    2016-01-18 04:21:19
24518    18233    921    2016-01-19 04:14:22    2016-01-19 04:14:22
24519    18745    463    2016-02-27 11:49:33    2016-02-27 11:49:33
24520    12761    944    2015-12-15 05:53:20    2015-12-15 05:53:20
24521    11303    589    2016-01-13 07:29:26    2016-01-13 07:29:26
24522    17542    518    2015-06-28 20:28:37    2015-06-28 20:28:37
24523    12941    955    2015-04-25 03:16:37    2015-04-25 03:16:37
24524    11064    938    2015-08-21 03:18:56    2015-08-21 03:18:56
24525    14877    873    2016-03-10 20:14:45    2016-03-10 20:14:45
24526    10330    678    2016-01-23 14:12:39    2016-01-23 14:12:39
24527    19803    490    2016-01-02 22:57:32    2016-01-02 22:57:32
24528    15496    883    2015-08-08 19:46:03    2015-08-08 19:46:03
24529    18149    856    2016-03-01 03:15:56    2016-03-01 03:15:56
24530    13327    652    2015-11-23 15:47:34    2015-11-23 15:47:34
24531    18541    752    2015-07-05 22:46:50    2015-07-05 22:46:50
24532    17460    868    2015-06-08 06:30:38    2015-06-08 06:30:38
24533    17975    643    2016-01-28 05:40:23    2016-01-28 05:40:23
24534    19109    879    2015-09-09 07:36:12    2015-09-09 07:36:12
24535    11273    863    2015-08-01 02:36:11    2015-08-01 02:36:11
24536    17200    816    2015-12-15 09:48:03    2015-12-15 09:48:03
24537    16589    907    2015-09-22 15:49:55    2015-09-22 15:49:55
24538    15494    574    2015-06-04 20:15:56    2015-06-04 20:15:56
24539    10995    821    2015-11-03 04:49:54    2015-11-03 04:49:54
24540    14824    800    2015-12-02 19:17:18    2015-12-02 19:17:18
24541    11298    620    2015-08-01 22:33:29    2015-08-01 22:33:29
24542    18895    596    2015-06-29 18:53:12    2015-06-29 18:53:12
24543    18865    468    2016-04-15 02:34:40    2016-04-15 02:34:40
24544    10697    486    2015-05-22 09:20:08    2015-05-22 09:20:08
24545    10279    686    2015-10-06 16:22:37    2015-10-06 16:22:37
24546    16255    688    2015-05-29 10:07:16    2015-05-29 10:07:16
24547    14265    743    2015-05-15 22:44:07    2015-05-15 22:44:07
24548    17632    653    2016-01-11 08:24:52    2016-01-11 08:24:52
24549    10924    715    2015-05-07 06:57:47    2015-05-07 06:57:47
24550    11792    808    2015-08-30 20:11:12    2015-08-30 20:11:12
24551    13841    644    2015-11-12 06:48:48    2015-11-12 06:48:48
24552    18583    724    2015-12-11 01:45:40    2015-12-11 01:45:40
24553    17935    504    2015-08-02 14:12:39    2015-08-02 14:12:39
24554    15370    620    2016-01-02 18:30:57    2016-01-02 18:30:57
24555    15038    636    2015-06-28 04:42:47    2015-06-28 04:42:47
24556    13785    737    2016-02-22 05:49:53    2016-02-22 05:49:53
24557    15178    709    2016-02-07 18:12:22    2016-02-07 18:12:22
24558    14553    824    2016-01-09 17:40:16    2016-01-09 17:40:16
24559    19639    691    2016-02-15 11:00:48    2016-02-15 11:00:48
24560    19204    940    2015-10-26 06:09:39    2015-10-26 06:09:39
24561    11772    641    2016-02-17 04:50:35    2016-02-17 04:50:35
24562    16344    921    2016-03-18 11:35:13    2016-03-18 11:35:13
24563    10167    786    2015-04-23 06:03:09    2015-04-23 06:03:09
24564    15751    616    2016-04-10 17:48:52    2016-04-10 17:48:52
24565    19861    672    2015-10-16 17:30:58    2015-10-16 17:30:58
24566    18467    512    2015-06-26 15:09:50    2015-06-26 15:09:50
24567    14739    814    2015-08-07 23:37:41    2015-08-07 23:37:41
24568    14905    951    2016-03-22 04:57:02    2016-03-22 04:57:02
24569    17200    948    2015-05-31 08:18:06    2015-05-31 08:18:06
24570    16939    875    2015-06-07 02:38:06    2015-06-07 02:38:06
24571    15789    520    2015-08-10 00:13:53    2015-08-10 00:13:53
24572    11952    621    2015-05-25 11:58:11    2015-05-25 11:58:11
24573    17006    487    2015-05-26 03:42:18    2015-05-26 03:42:18
24574    18593    529    2015-06-12 20:08:10    2015-06-12 20:08:10
24575    13473    923    2016-02-17 14:28:10    2016-02-17 14:28:10
24576    19357    880    2015-07-16 01:38:41    2015-07-16 01:38:41
24577    11119    706    2015-11-14 01:36:30    2015-11-14 01:36:30
24578    11996    521    2016-01-23 02:17:56    2016-01-23 02:17:56
24579    13960    950    2015-07-08 21:19:22    2015-07-08 21:19:22
24580    19114    561    2015-08-07 11:33:42    2015-08-07 11:33:42
24581    17378    631    2015-12-02 19:46:45    2015-12-02 19:46:45
24582    19165    532    2015-11-02 17:44:49    2015-11-02 17:44:49
24583    16255    715    2015-11-24 19:13:39    2015-11-24 19:13:39
24584    15292    647    2015-08-24 23:50:45    2015-08-24 23:50:45
24585    16577    584    2015-06-28 16:36:34    2015-06-28 16:36:34
24586    19774    819    2015-06-25 20:19:07    2015-06-25 20:19:07
24587    17070    918    2015-07-07 04:24:11    2015-07-07 04:24:11
24588    14032    589    2015-10-15 04:42:00    2015-10-15 04:42:00
24589    13008    774    2015-09-07 07:05:06    2015-09-07 07:05:06
24590    18994    490    2016-02-13 16:37:34    2016-02-13 16:37:34
24591    12191    571    2015-07-26 12:33:17    2015-07-26 12:33:17
24592    18488    895    2015-08-14 11:15:45    2015-08-14 11:15:45
24593    12241    653    2015-09-26 23:45:23    2015-09-26 23:45:23
24594    12325    924    2015-11-12 18:20:51    2015-11-12 18:20:51
24595    17925    913    2016-03-09 10:42:35    2016-03-09 10:42:35
24596    16948    655    2015-05-12 06:30:49    2015-05-12 06:30:49
24597    18057    732    2015-06-04 07:58:56    2015-06-04 07:58:56
24598    10909    602    2015-06-09 18:37:33    2015-06-09 18:37:33
24599    12692    795    2016-02-24 18:13:40    2016-02-24 18:13:40
24600    18846    536    2015-11-02 13:55:15    2015-11-02 13:55:15
24601    16437    583    2015-06-15 02:36:41    2015-06-15 02:36:41
24602    16547    626    2016-03-30 07:23:43    2016-03-30 07:23:43
24603    13898    945    2015-09-14 10:00:17    2015-09-14 10:00:17
24604    16469    959    2016-01-16 03:58:10    2016-01-16 03:58:10
24605    17567    862    2016-02-17 09:15:54    2016-02-17 09:15:54
24606    15771    835    2015-10-27 19:17:56    2015-10-27 19:17:56
24607    18475    570    2015-07-23 14:45:34    2015-07-23 14:45:34
24608    19468    832    2016-01-22 05:01:37    2016-01-22 05:01:37
24609    12444    832    2016-03-07 21:52:33    2016-03-07 21:52:33
24610    12774    849    2015-07-01 10:03:36    2015-07-01 10:03:36
24611    12789    729    2016-03-18 00:42:48    2016-03-18 00:42:48
24612    10588    493    2016-03-06 19:23:14    2016-03-06 19:23:14
24613    10531    887    2015-07-11 05:20:54    2015-07-11 05:20:54
24614    19729    688    2016-03-24 00:45:14    2016-03-24 00:45:14
24615    19367    829    2016-04-08 04:53:44    2016-04-08 04:53:44
24616    13454    891    2015-07-08 08:36:33    2015-07-08 08:36:33
24617    11602    584    2015-07-06 07:20:06    2015-07-06 07:20:06
24618    12482    846    2016-04-14 12:11:57    2016-04-14 12:11:57
24619    14389    624    2016-04-19 18:21:32    2016-04-19 18:21:32
24620    19933    899    2015-11-06 02:21:18    2015-11-06 02:21:18
24621    18984    724    2015-09-18 16:19:27    2015-09-18 16:19:27
24622    12875    535    2015-11-12 04:13:36    2015-11-12 04:13:36
24623    18389    802    2015-09-06 13:38:42    2015-09-06 13:38:42
24624    12848    840    2016-04-12 08:51:04    2016-04-12 08:51:04
24625    11939    803    2015-07-01 22:08:59    2015-07-01 22:08:59
24626    19208    501    2015-05-08 13:28:10    2015-05-08 13:28:10
24627    12391    538    2016-01-24 08:41:32    2016-01-24 08:41:32
24628    15963    667    2016-02-07 11:16:01    2016-02-07 11:16:01
24629    18155    481    2015-12-17 03:49:16    2015-12-17 03:49:16
24630    16958    885    2015-08-30 14:55:34    2015-08-30 14:55:34
24631    11642    702    2016-01-15 23:24:07    2016-01-15 23:24:07
24632    10294    745    2015-10-15 12:44:46    2015-10-15 12:44:46
24633    18027    513    2015-10-05 10:33:21    2015-10-05 10:33:21
24634    13751    641    2016-03-04 18:54:02    2016-03-04 18:54:02
24635    18413    697    2015-06-27 15:16:23    2015-06-27 15:16:23
24636    12529    472    2016-02-07 00:03:37    2016-02-07 00:03:37
24637    11501    714    2016-01-07 23:41:23    2016-01-07 23:41:23
24638    18584    467    2016-01-27 08:24:25    2016-01-27 08:24:25
24639    11468    747    2015-07-04 13:54:52    2015-07-04 13:54:52
24640    16558    720    2015-07-13 14:52:12    2015-07-13 14:52:12
24641    13228    470    2016-04-12 19:03:19    2016-04-12 19:03:19
24642    14350    934    2016-03-17 12:08:01    2016-03-17 12:08:01
24643    14005    566    2016-03-17 05:10:23    2016-03-17 05:10:23
24644    11943    593    2015-09-11 23:45:06    2015-09-11 23:45:06
24645    13723    620    2015-10-19 06:38:15    2015-10-19 06:38:15
24646    17616    687    2015-05-05 09:01:52    2015-05-05 09:01:52
24647    11683    844    2015-09-02 08:05:52    2015-09-02 08:05:52
24648    10413    700    2016-01-27 02:01:41    2016-01-27 02:01:41
24649    11996    750    2015-12-14 02:39:10    2015-12-14 02:39:10
24650    18729    934    2015-05-07 03:45:26    2015-05-07 03:45:26
24651    19328    780    2016-02-01 05:26:07    2016-02-01 05:26:07
24652    19486    921    2016-04-06 11:39:32    2016-04-06 11:39:32
24653    16536    725    2016-01-23 20:38:54    2016-01-23 20:38:54
24654    15475    791    2015-12-15 22:09:39    2015-12-15 22:09:39
24655    14022    839    2015-09-24 00:30:17    2015-09-24 00:30:17
24656    13703    716    2016-01-23 05:16:33    2016-01-23 05:16:33
24657    17867    695    2015-10-25 11:55:22    2015-10-25 11:55:22
24658    14902    949    2015-11-01 21:18:48    2015-11-01 21:18:48
24659    10894    533    2015-06-05 09:54:37    2015-06-05 09:54:37
24660    18883    934    2015-10-13 08:03:46    2015-10-13 08:03:46
24661    14988    651    2015-12-09 10:58:06    2015-12-09 10:58:06
24662    15341    641    2016-01-19 12:11:18    2016-01-19 12:11:18
24663    19698    743    2015-08-17 08:59:32    2015-08-17 08:59:32
24664    17228    587    2015-09-16 04:13:34    2015-09-16 04:13:34
24665    16429    509    2015-11-19 08:22:12    2015-11-19 08:22:12
24666    11949    527    2015-05-31 02:10:37    2015-05-31 02:10:37
24667    12959    867    2016-01-19 01:30:35    2016-01-19 01:30:35
24668    19108    843    2015-10-30 17:10:44    2015-10-30 17:10:44
24669    17067    832    2016-02-28 03:11:55    2016-02-28 03:11:55
24670    12241    489    2016-01-02 07:02:23    2016-01-02 07:02:23
24671    14110    776    2015-12-24 12:31:13    2015-12-24 12:31:13
24672    15430    614    2016-04-07 05:24:15    2016-04-07 05:24:15
24673    15899    695    2015-10-04 12:01:56    2015-10-04 12:01:56
24674    19973    679    2015-09-09 22:03:24    2015-09-09 22:03:24
24675    13970    482    2015-11-05 16:27:21    2015-11-05 16:27:21
24676    10674    785    2015-12-08 15:13:12    2015-12-08 15:13:12
24677    19608    798    2015-08-29 03:17:36    2015-08-29 03:17:36
24678    16544    871    2015-06-23 12:30:14    2015-06-23 12:30:14
24679    17254    756    2015-06-09 05:26:15    2015-06-09 05:26:15
24680    16020    767    2015-06-21 03:23:27    2015-06-21 03:23:27
24681    18533    870    2015-05-28 12:28:28    2015-05-28 12:28:28
24682    16908    474    2015-09-04 04:28:14    2015-09-04 04:28:14
24683    10925    815    2015-05-07 17:06:40    2015-05-07 17:06:40
24684    17130    953    2016-03-23 06:36:17    2016-03-23 06:36:17
24685    10368    957    2016-02-18 21:04:36    2016-02-18 21:04:36
24686    13628    847    2016-02-22 06:26:39    2016-02-22 06:26:39
24687    16467    547    2016-01-19 08:01:17    2016-01-19 08:01:17
24688    10755    599    2015-09-10 16:17:24    2015-09-10 16:17:24
24689    17944    475    2015-06-26 14:56:02    2015-06-26 14:56:02
24690    19303    551    2016-03-30 11:14:42    2016-03-30 11:14:42
24691    11797    610    2016-03-03 17:47:29    2016-03-03 17:47:29
24692    13515    935    2015-12-21 22:08:33    2015-12-21 22:08:33
24693    10590    584    2015-09-07 20:24:25    2015-09-07 20:24:25
24694    13543    719    2015-08-20 16:19:25    2015-08-20 16:19:25
24695    12578    862    2015-09-12 23:38:34    2015-09-12 23:38:34
24696    17980    656    2015-12-24 17:07:26    2015-12-24 17:07:26
24697    16878    750    2015-06-06 09:25:22    2015-06-06 09:25:22
24698    14479    688    2015-11-18 21:27:15    2015-11-18 21:27:15
24699    19398    682    2015-11-11 22:14:36    2015-11-11 22:14:36
24700    14020    719    2015-11-14 07:37:30    2015-11-14 07:37:30
24701    11255    697    2015-06-14 06:29:55    2015-06-14 06:29:55
24702    14693    634    2015-10-31 09:53:17    2015-10-31 09:53:17
24703    17264    859    2015-08-01 13:54:27    2015-08-01 13:54:27
24704    16925    696    2016-04-05 17:17:39    2016-04-05 17:17:39
24705    12504    599    2016-01-11 08:22:52    2016-01-11 08:22:52
24706    17147    889    2015-05-08 16:15:59    2015-05-08 16:15:59
24707    13278    932    2015-05-05 02:22:00    2015-05-05 02:22:00
24708    16544    875    2015-12-30 12:02:46    2015-12-30 12:02:46
24709    15566    532    2015-10-10 00:21:23    2015-10-10 00:21:23
24710    11827    831    2016-04-08 06:46:28    2016-04-08 06:46:28
24711    16508    800    2015-12-16 03:15:35    2015-12-16 03:15:35
24712    12468    613    2015-07-20 21:51:37    2015-07-20 21:51:37
24713    11265    513    2015-11-01 14:47:08    2015-11-01 14:47:08
24714    16198    798    2015-11-25 13:21:27    2015-11-25 13:21:27
24715    18137    958    2015-06-30 00:49:52    2015-06-30 00:49:52
24716    12461    831    2015-05-06 23:49:03    2015-05-06 23:49:03
24717    19416    655    2015-10-04 22:28:07    2015-10-04 22:28:07
24718    11413    844    2016-03-05 14:13:15    2016-03-05 14:13:15
24719    14809    947    2015-12-31 16:13:28    2015-12-31 16:13:28
24720    12263    568    2015-05-22 11:25:45    2015-05-22 11:25:45
24721    12119    807    2016-03-09 16:12:10    2016-03-09 16:12:10
24722    12688    718    2015-05-15 11:00:35    2015-05-15 11:00:35
24723    13426    944    2016-02-25 19:05:46    2016-02-25 19:05:46
24724    14856    506    2015-09-13 05:40:56    2015-09-13 05:40:56
24725    16159    702    2016-01-29 13:07:06    2016-01-29 13:07:06
24726    18670    649    2015-05-14 19:20:16    2015-05-14 19:20:16
24727    18827    739    2016-01-16 11:18:35    2016-01-16 11:18:35
24728    12839    619    2016-04-12 18:36:08    2016-04-12 18:36:08
24729    12194    497    2016-02-27 22:56:31    2016-02-27 22:56:31
24730    11695    499    2016-04-13 02:45:42    2016-04-13 02:45:42
24731    13425    585    2016-03-30 22:56:15    2016-03-30 22:56:15
24732    14062    749    2016-03-31 22:37:44    2016-03-31 22:37:44
24733    13851    944    2015-07-09 10:33:24    2015-07-09 10:33:24
24734    15889    637    2016-01-17 09:29:49    2016-01-17 09:29:49
24735    14574    522    2015-12-18 01:52:13    2015-12-18 01:52:13
24736    15051    540    2016-03-28 02:14:58    2016-03-28 02:14:58
24737    17691    580    2015-12-16 15:42:56    2015-12-16 15:42:56
24738    11210    503    2015-09-24 01:26:31    2015-09-24 01:26:31
24739    13175    738    2016-03-02 21:30:33    2016-03-02 21:30:33
24740    15323    586    2016-01-21 09:30:30    2016-01-21 09:30:30
24741    17906    765    2016-02-24 08:08:05    2016-02-24 08:08:05
24742    16323    745    2015-07-28 21:04:42    2015-07-28 21:04:42
24743    16412    866    2015-04-29 22:39:43    2015-04-29 22:39:43
24744    12012    500    2016-04-07 15:26:48    2016-04-07 15:26:48
24745    19213    652    2016-04-09 08:50:38    2016-04-09 08:50:38
24746    14731    794    2015-10-08 12:18:39    2015-10-08 12:18:39
24747    16978    878    2015-05-21 11:06:58    2015-05-21 11:06:58
24748    17027    806    2015-11-14 16:31:53    2015-11-14 16:31:53
24749    17317    574    2015-10-16 06:34:06    2015-10-16 06:34:06
24750    16233    762    2016-01-27 23:16:44    2016-01-27 23:16:44
24751    11444    731    2015-05-05 14:48:40    2015-05-05 14:48:40
24752    13673    651    2016-04-18 16:21:27    2016-04-18 16:21:27
24753    17900    801    2016-01-02 03:01:45    2016-01-02 03:01:45
24754    13346    744    2015-12-06 00:52:45    2015-12-06 00:52:45
24755    10888    751    2016-02-23 13:08:05    2016-02-23 13:08:05
24756    18102    884    2015-12-22 14:17:13    2015-12-22 14:17:13
24757    16971    684    2015-11-28 00:10:04    2015-11-28 00:10:04
24758    16432    658    2016-02-07 12:20:24    2016-02-07 12:20:24
24759    11607    554    2015-10-28 09:47:07    2015-10-28 09:47:07
24760    12697    859    2015-07-26 18:01:16    2015-07-26 18:01:16
24761    13258    854    2015-05-08 00:39:05    2015-05-08 00:39:05
24762    12961    606    2015-09-29 19:22:15    2015-09-29 19:22:15
24763    17174    591    2016-04-17 13:28:00    2016-04-17 13:28:00
24764    12245    806    2015-06-02 17:54:34    2015-06-02 17:54:34
24765    13958    530    2016-03-21 13:00:24    2016-03-21 13:00:24
24766    17057    723    2015-05-28 13:12:50    2015-05-28 13:12:50
24767    12870    950    2015-09-17 03:49:12    2015-09-17 03:49:12
24768    18763    811    2016-02-13 08:49:09    2016-02-13 08:49:09
24769    16474    598    2015-08-20 20:50:47    2015-08-20 20:50:47
24770    14544    943    2016-03-14 04:55:30    2016-03-14 04:55:30
24771    10513    756    2015-05-02 05:20:52    2015-05-02 05:20:52
24772    18942    550    2015-05-17 23:42:34    2015-05-17 23:42:34
24773    17359    540    2016-03-10 13:22:55    2016-03-10 13:22:55
24774    13304    485    2016-01-24 08:21:08    2016-01-24 08:21:08
24775    10141    870    2016-04-07 13:05:46    2016-04-07 13:05:46
24776    10511    758    2015-08-13 18:30:08    2015-08-13 18:30:08
24777    11510    484    2016-01-03 21:42:43    2016-01-03 21:42:43
24778    15875    467    2015-10-26 21:21:59    2015-10-26 21:21:59
24779    12019    903    2015-05-24 08:44:50    2015-05-24 08:44:50
24780    17390    903    2015-05-11 09:22:07    2015-05-11 09:22:07
24781    17957    481    2015-10-13 06:56:48    2015-10-13 06:56:48
24782    18600    751    2015-09-22 22:17:17    2015-09-22 22:17:17
24783    19165    837    2016-03-21 01:59:25    2016-03-21 01:59:25
24784    13461    589    2016-03-08 06:54:21    2016-03-08 06:54:21
24785    17136    912    2015-12-03 05:12:43    2015-12-03 05:12:43
24786    16741    865    2015-07-02 01:56:54    2015-07-02 01:56:54
24787    14127    516    2016-01-27 23:49:03    2016-01-27 23:49:03
24788    17494    558    2016-02-04 06:45:23    2016-02-04 06:45:23
24789    16493    587    2015-10-26 00:13:51    2015-10-26 00:13:51
24790    18024    783    2015-11-13 11:22:35    2015-11-13 11:22:35
24791    14253    807    2015-11-17 12:42:26    2015-11-17 12:42:26
24792    11406    874    2015-12-17 05:33:05    2015-12-17 05:33:05
24793    12863    536    2016-02-16 08:07:59    2016-02-16 08:07:59
24794    12110    892    2015-06-25 08:05:26    2015-06-25 08:05:26
24795    15228    479    2015-08-15 10:07:39    2015-08-15 10:07:39
24796    19695    961    2016-02-02 23:55:37    2016-02-02 23:55:37
24797    10530    648    2015-12-21 08:57:35    2015-12-21 08:57:35
24798    12026    780    2015-12-09 18:08:13    2015-12-09 18:08:13
24799    15617    582    2016-04-07 16:21:34    2016-04-07 16:21:34
24800    15264    584    2015-07-23 12:23:17    2015-07-23 12:23:17
24801    11757    957    2015-09-09 17:16:19    2015-09-09 17:16:19
24802    11345    666    2015-09-30 16:37:29    2015-09-30 16:37:29
24803    14020    750    2015-10-16 02:07:45    2015-10-16 02:07:45
24804    18271    637    2015-05-28 07:53:02    2015-05-28 07:53:02
24805    10397    580    2015-11-29 02:22:00    2015-11-29 02:22:00
24806    16928    569    2015-10-28 18:09:45    2015-10-28 18:09:45
24807    16831    631    2015-12-08 01:30:08    2015-12-08 01:30:08
24808    18252    762    2015-11-02 11:12:03    2015-11-02 11:12:03
24809    11502    512    2015-09-06 07:43:28    2015-09-06 07:43:28
24810    16667    706    2015-06-27 00:27:38    2015-06-27 00:27:38
24811    14027    465    2015-06-18 21:30:26    2015-06-18 21:30:26
24812    15497    625    2016-02-12 10:19:54    2016-02-12 10:19:54
24813    19532    566    2015-08-14 07:03:30    2015-08-14 07:03:30
24814    10280    657    2015-12-21 10:39:42    2015-12-21 10:39:42
24815    10895    557    2015-07-17 00:22:41    2015-07-17 00:22:41
24816    18156    669    2015-09-02 23:30:54    2015-09-02 23:30:54
24817    17837    952    2016-02-21 15:41:21    2016-02-21 15:41:21
24818    17094    718    2016-03-07 02:08:22    2016-03-07 02:08:22
24819    15859    816    2016-02-17 09:56:54    2016-02-17 09:56:54
24820    10950    566    2015-09-15 03:15:53    2015-09-15 03:15:53
24821    10678    562    2015-06-10 10:23:31    2015-06-10 10:23:31
24822    10561    611    2015-12-11 02:30:14    2015-12-11 02:30:14
24823    15027    706    2016-01-28 06:16:24    2016-01-28 06:16:24
24824    18244    880    2016-04-17 08:44:35    2016-04-17 08:44:35
24825    12867    572    2015-08-16 09:34:38    2015-08-16 09:34:38
24826    14473    947    2015-05-24 09:30:45    2015-05-24 09:30:45
24827    16135    554    2016-02-24 05:28:43    2016-02-24 05:28:43
24828    11476    587    2015-07-10 18:11:44    2015-07-10 18:11:44
24829    11392    789    2015-07-31 14:28:08    2015-07-31 14:28:08
24830    15441    606    2015-11-02 17:58:04    2015-11-02 17:58:04
24831    11772    895    2016-02-10 23:13:46    2016-02-10 23:13:46
24832    12187    581    2015-12-11 12:19:08    2015-12-11 12:19:08
24833    19785    764    2016-02-08 06:33:30    2016-02-08 06:33:30
24834    19874    630    2015-11-16 03:50:01    2015-11-16 03:50:01
24835    17546    743    2015-08-02 13:33:57    2015-08-02 13:33:57
24836    13006    576    2015-06-20 07:36:41    2015-06-20 07:36:41
24837    10335    902    2015-08-19 07:04:54    2015-08-19 07:04:54
24838    18046    614    2015-06-26 22:03:41    2015-06-26 22:03:41
24839    10043    598    2015-07-22 06:46:57    2015-07-22 06:46:57
24840    19910    698    2016-03-17 20:16:09    2016-03-17 20:16:09
24841    16186    504    2015-10-25 23:56:02    2015-10-25 23:56:02
24842    14556    692    2015-09-02 08:15:49    2015-09-02 08:15:49
24843    14010    513    2015-07-24 12:39:42    2015-07-24 12:39:42
24844    15372    687    2015-09-21 05:09:09    2015-09-21 05:09:09
24845    15101    593    2015-05-08 23:13:55    2015-05-08 23:13:55
24846    16569    510    2016-02-10 06:21:58    2016-02-10 06:21:58
24847    10938    601    2015-09-17 01:00:43    2015-09-17 01:00:43
24848    10646    925    2015-04-28 12:16:35    2015-04-28 12:16:35
24849    19863    931    2016-03-12 14:43:14    2016-03-12 14:43:14
24850    12045    588    2015-11-20 05:09:56    2015-11-20 05:09:56
24851    13980    788    2015-06-29 20:50:35    2015-06-29 20:50:35
24852    17115    867    2016-04-06 20:09:58    2016-04-06 20:09:58
24853    11160    804    2016-02-15 07:01:36    2016-02-15 07:01:36
24854    15933    801    2015-10-18 18:56:58    2015-10-18 18:56:58
24855    10904    776    2015-07-01 17:22:56    2015-07-01 17:22:56
24856    16517    671    2015-10-01 17:08:13    2015-10-01 17:08:13
24857    17935    736    2015-05-20 05:40:58    2015-05-20 05:40:58
24858    11822    935    2015-06-29 13:57:38    2015-06-29 13:57:38
24859    10055    919    2015-08-11 11:12:07    2015-08-11 11:12:07
24860    15249    692    2015-05-22 02:21:42    2015-05-22 02:21:42
24861    11500    581    2015-10-07 23:36:18    2015-10-07 23:36:18
24862    11567    731    2015-12-25 12:07:26    2015-12-25 12:07:26
24863    14105    475    2015-07-03 01:48:39    2015-07-03 01:48:39
24864    16301    752    2015-07-14 16:49:41    2015-07-14 16:49:41
24865    10856    847    2015-06-11 01:15:04    2015-06-11 01:15:04
24866    11275    677    2015-06-06 10:07:04    2015-06-06 10:07:04
24867    17477    724    2015-07-10 17:01:58    2015-07-10 17:01:58
24868    16418    626    2015-07-25 09:46:16    2015-07-25 09:46:16
24869    18195    929    2016-04-19 18:10:07    2016-04-19 18:10:07
24870    15246    698    2016-04-03 05:16:55    2016-04-03 05:16:55
24871    10192    934    2015-08-26 04:02:46    2015-08-26 04:02:46
24872    15108    766    2016-01-15 07:00:47    2016-01-15 07:00:47
24873    19288    533    2015-06-13 12:02:44    2015-06-13 12:02:44
24874    10754    903    2015-11-02 18:27:22    2015-11-02 18:27:22
24875    17492    628    2015-09-13 03:40:33    2015-09-13 03:40:33
24876    16109    649    2016-03-28 22:48:29    2016-03-28 22:48:29
24877    12781    772    2015-10-21 03:21:32    2015-10-21 03:21:32
24878    12739    523    2016-04-04 16:15:20    2016-04-04 16:15:20
24879    10389    548    2015-11-08 12:41:07    2015-11-08 12:41:07
24880    17000    643    2016-04-15 10:39:53    2016-04-15 10:39:53
24881    10169    759    2015-08-10 12:55:24    2015-08-10 12:55:24
24882    14993    863    2015-08-11 14:54:04    2015-08-11 14:54:04
24883    15034    514    2015-11-04 04:45:47    2015-11-04 04:45:47
24884    16026    788    2016-03-22 10:31:20    2016-03-22 10:31:20
24885    17670    764    2016-02-16 19:50:43    2016-02-16 19:50:43
24886    16938    897    2015-06-01 17:35:28    2015-06-01 17:35:28
24887    19409    645    2016-02-16 16:55:32    2016-02-16 16:55:32
24888    13851    527    2016-03-11 15:23:21    2016-03-11 15:23:21
24889    13548    783    2015-06-30 22:22:04    2015-06-30 22:22:04
24890    12792    884    2015-08-31 13:05:45    2015-08-31 13:05:45
24891    14335    667    2015-11-08 14:29:04    2015-11-08 14:29:04
24892    16617    703    2016-03-03 19:13:18    2016-03-03 19:13:18
24893    18717    896    2015-06-14 15:26:54    2015-06-14 15:26:54
24894    13636    654    2015-09-29 21:22:37    2015-09-29 21:22:37
24895    17651    668    2015-12-28 10:07:42    2015-12-28 10:07:42
24896    10800    489    2016-01-22 23:07:08    2016-01-22 23:07:08
24897    15471    613    2015-12-13 08:28:07    2015-12-13 08:28:07
24898    11567    656    2015-05-25 22:52:55    2015-05-25 22:52:55
24899    15707    662    2016-01-14 23:03:17    2016-01-14 23:03:17
24900    11093    907    2016-01-30 19:56:52    2016-01-30 19:56:52
24901    16893    630    2016-03-04 04:41:39    2016-03-04 04:41:39
24902    11046    708    2015-06-08 05:11:06    2015-06-08 05:11:06
24903    12169    852    2015-07-08 22:42:51    2015-07-08 22:42:51
24904    16607    804    2016-01-09 20:22:28    2016-01-09 20:22:28
24905    15267    727    2015-04-28 09:58:20    2015-04-28 09:58:20
24906    13546    823    2016-03-02 18:46:14    2016-03-02 18:46:14
24907    15794    634    2015-05-10 02:48:10    2015-05-10 02:48:10
24908    17368    603    2015-06-10 10:48:09    2015-06-10 10:48:09
24909    19056    501    2015-08-07 21:53:39    2015-08-07 21:53:39
24910    10588    857    2016-02-03 17:20:19    2016-02-03 17:20:19
24911    16374    948    2015-06-28 08:27:56    2015-06-28 08:27:56
24912    14898    704    2015-10-12 04:16:19    2015-10-12 04:16:19
24913    13063    863    2015-12-09 06:21:51    2015-12-09 06:21:51
24914    14524    707    2016-04-02 13:42:32    2016-04-02 13:42:32
24915    14444    625    2016-01-26 06:46:19    2016-01-26 06:46:19
24916    10353    871    2015-11-13 07:50:17    2015-11-13 07:50:17
24917    18997    809    2015-10-30 19:55:02    2015-10-30 19:55:02
24918    11312    838    2015-12-19 02:25:39    2015-12-19 02:25:39
24919    12283    507    2015-10-20 01:18:55    2015-10-20 01:18:55
24920    15071    815    2015-08-07 19:57:56    2015-08-07 19:57:56
24921    18490    710    2015-11-25 19:26:13    2015-11-25 19:26:13
24922    10992    602    2015-07-16 05:42:49    2015-07-16 05:42:49
24923    15619    615    2015-09-27 03:07:06    2015-09-27 03:07:06
24924    15980    814    2015-06-20 18:20:44    2015-06-20 18:20:44
24925    10515    612    2015-06-30 15:03:17    2015-06-30 15:03:17
24926    17561    490    2015-09-17 22:59:55    2015-09-17 22:59:55
24927    10018    651    2016-01-15 12:00:24    2016-01-15 12:00:24
24928    10218    512    2015-07-08 06:01:39    2015-07-08 06:01:39
24929    13498    865    2016-03-10 22:23:48    2016-03-10 22:23:48
24930    14780    892    2015-11-21 16:26:41    2015-11-21 16:26:41
24931    17188    609    2015-04-23 18:50:24    2015-04-23 18:50:24
24932    13134    868    2015-11-09 06:04:03    2015-11-09 06:04:03
24933    16431    894    2015-11-08 01:03:47    2015-11-08 01:03:47
24934    15845    923    2015-12-27 13:25:23    2015-12-27 13:25:23
24935    15660    717    2015-08-05 22:25:00    2015-08-05 22:25:00
24936    12929    542    2015-09-26 20:43:34    2015-09-26 20:43:34
24937    11430    946    2015-10-21 14:12:57    2015-10-21 14:12:57
24938    12985    893    2015-09-27 23:12:15    2015-09-27 23:12:15
24939    14290    899    2015-07-03 01:38:56    2015-07-03 01:38:56
24940    11424    674    2016-03-19 20:17:00    2016-03-19 20:17:00
24941    18342    567    2015-08-26 12:06:17    2015-08-26 12:06:17
24942    11859    782    2015-05-19 02:45:24    2015-05-19 02:45:24
24943    17515    621    2016-01-15 22:22:08    2016-01-15 22:22:08
24944    10890    734    2015-06-07 05:04:49    2015-06-07 05:04:49
24945    16754    724    2016-04-12 09:20:02    2016-04-12 09:20:02
24946    10300    610    2016-03-07 22:48:51    2016-03-07 22:48:51
24947    15067    947    2015-11-25 06:16:30    2015-11-25 06:16:30
24948    15611    796    2015-12-03 20:17:23    2015-12-03 20:17:23
24949    13211    914    2015-11-14 22:10:26    2015-11-14 22:10:26
24950    13585    519    2015-07-28 01:31:17    2015-07-28 01:31:17
24951    15729    842    2015-11-01 03:02:47    2015-11-01 03:02:47
24952    15414    958    2015-07-30 10:12:37    2015-07-30 10:12:37
24953    11975    571    2015-08-06 21:00:41    2015-08-06 21:00:41
24954    14302    470    2015-06-12 11:21:52    2015-06-12 11:21:52
24955    11750    507    2015-11-13 22:54:22    2015-11-13 22:54:22
24956    11235    728    2015-06-05 14:28:06    2015-06-05 14:28:06
24957    14151    534    2015-09-24 23:21:59    2015-09-24 23:21:59
24958    16984    568    2015-12-25 03:57:26    2015-12-25 03:57:26
24959    16456    934    2015-11-19 15:45:43    2015-11-19 15:45:43
24960    15866    499    2015-06-11 04:32:02    2015-06-11 04:32:02
24961    15720    829    2016-02-26 06:52:06    2016-02-26 06:52:06
24962    14932    792    2015-05-12 04:33:12    2015-05-12 04:33:12
24963    12240    534    2015-05-21 01:00:59    2015-05-21 01:00:59
24964    13269    555    2015-10-18 07:43:09    2015-10-18 07:43:09
24965    16142    472    2015-12-20 16:17:42    2015-12-20 16:17:42
24966    14738    786    2015-04-22 22:27:35    2015-04-22 22:27:35
24967    14844    672    2015-08-28 10:54:55    2015-08-28 10:54:55
24968    10070    745    2015-08-02 20:09:18    2015-08-02 20:09:18
24969    11285    863    2015-12-19 21:40:26    2015-12-19 21:40:26
24970    15041    792    2016-03-10 03:06:47    2016-03-10 03:06:47
24971    14671    773    2016-03-23 11:40:59    2016-03-23 11:40:59
24972    14835    691    2015-08-09 08:45:31    2015-08-09 08:45:31
24973    11625    577    2015-10-08 17:12:18    2015-10-08 17:12:18
24974    19488    936    2015-08-01 09:10:43    2015-08-01 09:10:43
24975    18399    794    2015-05-13 03:44:04    2015-05-13 03:44:04
24976    11695    882    2015-06-09 19:03:44    2015-06-09 19:03:44
24977    14491    856    2015-12-21 13:32:57    2015-12-21 13:32:57
24978    15435    781    2015-12-04 01:19:28    2015-12-04 01:19:28
24979    18797    765    2015-08-21 01:26:18    2015-08-21 01:26:18
24980    12283    829    2016-04-13 13:23:14    2016-04-13 13:23:14
24981    14927    603    2015-10-18 16:07:47    2015-10-18 16:07:47
24982    12101    472    2015-06-19 05:24:45    2015-06-19 05:24:45
24983    12371    898    2016-01-02 22:52:44    2016-01-02 22:52:44
24984    17956    901    2016-02-06 02:52:01    2016-02-06 02:52:01
24985    15499    504    2016-02-24 10:58:52    2016-02-24 10:58:52
24986    14975    642    2015-10-20 16:42:02    2015-10-20 16:42:02
24987    12579    805    2015-08-09 10:05:15    2015-08-09 10:05:15
24988    12703    590    2016-01-02 01:39:02    2016-01-02 01:39:02
24989    18395    720    2015-11-23 20:56:07    2015-11-23 20:56:07
24990    14235    830    2016-02-16 02:32:19    2016-02-16 02:32:19
24991    15133    496    2015-11-12 07:54:27    2015-11-12 07:54:27
24992    10655    909    2015-08-01 21:09:12    2015-08-01 21:09:12
24993    10059    729    2016-02-15 17:54:26    2016-02-15 17:54:26
24994    13797    788    2015-06-18 16:04:54    2015-06-18 16:04:54
24995    10360    928    2016-01-19 12:17:50    2016-01-19 12:17:50
24996    14223    502    2016-04-05 21:31:07    2016-04-05 21:31:07
24997    11611    956    2015-08-03 04:27:31    2015-08-03 04:27:31
24998    12225    797    2015-07-16 22:42:26    2015-07-16 22:42:26
24999    17612    495    2015-08-10 16:03:48    2015-08-10 16:03:48
25000    15104    727    2015-11-10 23:01:07    2015-11-10 23:01:07
25001    16696    584    2015-07-21 22:52:56    2015-07-21 22:52:56
25002    13032    774    2015-05-11 11:24:47    2015-05-11 11:24:47
25003    12079    796    2015-05-05 03:15:43    2015-05-05 03:15:43
25004    11679    723    2015-07-01 23:35:05    2015-07-01 23:35:05
25005    15227    899    2015-12-04 03:06:02    2015-12-04 03:06:02
25006    17492    812    2015-11-01 08:15:58    2015-11-01 08:15:58
25007    10689    657    2015-10-22 22:23:33    2015-10-22 22:23:33
25008    12164    506    2016-02-22 18:20:56    2016-02-22 18:20:56
25009    11660    777    2016-01-05 13:58:42    2016-01-05 13:58:42
25010    10985    897    2016-01-10 05:49:30    2016-01-10 05:49:30
25011    11765    524    2015-05-30 23:25:50    2015-05-30 23:25:50
25012    15826    611    2015-11-11 21:29:09    2015-11-11 21:29:09
25013    19116    842    2015-11-14 19:58:06    2015-11-14 19:58:06
25014    17150    933    2015-08-22 17:01:11    2015-08-22 17:01:11
25015    15377    760    2015-10-18 09:12:09    2015-10-18 09:12:09
25016    19144    931    2015-09-10 01:33:10    2015-09-10 01:33:10
25017    10816    616    2015-06-03 05:21:37    2015-06-03 05:21:37
25018    10002    787    2016-01-19 19:47:56    2016-01-19 19:47:56
25019    18170    598    2015-10-23 19:26:11    2015-10-23 19:26:11
25020    17538    806    2015-12-31 18:41:03    2015-12-31 18:41:03
25021    14092    761    2016-03-28 23:14:21    2016-03-28 23:14:21
25022    13292    884    2015-07-27 01:55:21    2015-07-27 01:55:21
25023    12947    674    2015-08-17 23:05:58    2015-08-17 23:05:58
25024    11642    563    2015-06-26 05:01:34    2015-06-26 05:01:34
25025    11128    481    2015-08-28 21:34:55    2015-08-28 21:34:55
25026    11415    931    2016-03-25 22:58:55    2016-03-25 22:58:55
25027    19932    707    2016-04-08 02:19:52    2016-04-08 02:19:52
25028    19587    845    2015-05-26 17:12:28    2015-05-26 17:12:28
25029    16675    525    2015-08-05 03:52:44    2015-08-05 03:52:44
25030    16096    808    2016-03-07 14:10:48    2016-03-07 14:10:48
25031    18592    817    2015-11-09 10:32:32    2015-11-09 10:32:32
25032    10616    782    2015-06-19 04:10:59    2015-06-19 04:10:59
25033    12039    612    2015-12-17 23:31:48    2015-12-17 23:31:48
25034    19486    937    2015-05-17 15:33:09    2015-05-17 15:33:09
25035    16325    858    2015-08-02 10:33:47    2015-08-02 10:33:47
25036    14085    691    2016-04-19 23:10:28    2016-04-19 23:10:28
25037    14985    486    2015-09-18 21:10:56    2015-09-18 21:10:56
25038    15358    690    2015-09-08 08:38:33    2015-09-08 08:38:33
25039    17819    950    2015-12-20 01:04:04    2015-12-20 01:04:04
25040    16656    954    2015-06-19 18:59:56    2015-06-19 18:59:56
25041    13328    497    2015-08-08 02:22:38    2015-08-08 02:22:38
25042    16605    764    2015-06-01 11:12:37    2015-06-01 11:12:37
25043    18551    532    2015-05-03 07:22:12    2015-05-03 07:22:12
25044    11822    800    2015-05-19 01:51:53    2015-05-19 01:51:53
25045    15350    932    2016-03-29 14:44:30    2016-03-29 14:44:30
25046    19078    828    2015-11-15 16:57:54    2015-11-15 16:57:54
25047    13450    515    2015-08-01 23:33:25    2015-08-01 23:33:25
25048    15537    783    2015-11-30 13:30:22    2015-11-30 13:30:22
25049    12897    854    2016-03-27 16:45:12    2016-03-27 16:45:12
25050    16055    790    2016-04-14 07:38:21    2016-04-14 07:38:21
25051    11630    629    2016-02-16 00:59:02    2016-02-16 00:59:02
25052    12827    933    2016-01-08 15:28:37    2016-01-08 15:28:37
25053    15549    523    2016-02-25 12:31:13    2016-02-25 12:31:13
25054    11803    638    2015-09-30 09:51:38    2015-09-30 09:51:38
25055    13874    508    2015-06-16 01:23:04    2015-06-16 01:23:04
25056    10335    529    2015-08-04 22:13:17    2015-08-04 22:13:17
25057    11629    601    2015-12-23 05:26:07    2015-12-23 05:26:07
25058    15428    890    2015-05-05 14:41:56    2015-05-05 14:41:56
25059    13766    612    2015-05-26 19:44:08    2015-05-26 19:44:08
25060    17027    595    2015-12-09 12:56:16    2015-12-09 12:56:16
25061    11648    552    2016-02-01 20:18:47    2016-02-01 20:18:47
25062    12489    757    2015-12-29 00:15:14    2015-12-29 00:15:14
25063    13045    799    2016-01-21 21:14:12    2016-01-21 21:14:12
25064    13102    741    2015-11-14 06:41:14    2015-11-14 06:41:14
25065    17064    837    2016-01-21 15:29:01    2016-01-21 15:29:01
25066    15799    784    2016-03-18 23:10:46    2016-03-18 23:10:46
25067    11257    862    2016-02-26 20:49:25    2016-02-26 20:49:25
25068    11489    529    2016-02-15 01:34:33    2016-02-15 01:34:33
25069    15431    782    2015-06-07 02:59:12    2015-06-07 02:59:12
25070    19325    922    2016-01-05 20:34:07    2016-01-05 20:34:07
25071    10869    873    2016-01-24 01:28:08    2016-01-24 01:28:08
25072    10115    786    2016-02-12 07:09:42    2016-02-12 07:09:42
25073    18365    683    2015-06-13 16:17:22    2015-06-13 16:17:22
25074    16469    787    2016-01-31 00:41:06    2016-01-31 00:41:06
25075    15368    478    2016-04-18 01:37:29    2016-04-18 01:37:29
25076    19818    813    2015-07-15 03:05:49    2015-07-15 03:05:49
25077    17735    538    2015-12-05 10:07:21    2015-12-05 10:07:21
25078    18086    708    2015-12-20 17:30:32    2015-12-20 17:30:32
25079    18592    519    2016-03-20 10:19:21    2016-03-20 10:19:21
25080    12386    649    2016-02-14 00:34:53    2016-02-14 00:34:53
25081    17393    477    2016-01-31 00:31:58    2016-01-31 00:31:58
25082    19655    725    2015-04-23 07:14:56    2015-04-23 07:14:56
25083    11919    545    2016-02-11 00:02:25    2016-02-11 00:02:25
25084    17411    567    2016-03-08 08:20:06    2016-03-08 08:20:06
25085    18245    648    2016-01-10 04:41:29    2016-01-10 04:41:29
25086    11218    786    2015-11-18 21:19:19    2015-11-18 21:19:19
25087    10895    946    2016-03-02 07:19:06    2016-03-02 07:19:06
25088    14047    742    2015-12-04 16:51:50    2015-12-04 16:51:50
25089    16630    696    2015-06-20 15:22:31    2015-06-20 15:22:31
25090    13119    476    2015-05-30 15:05:09    2015-05-30 15:05:09
25091    17675    862    2015-05-07 22:22:44    2015-05-07 22:22:44
25092    12139    465    2015-07-12 08:49:53    2015-07-12 08:49:53
25093    12793    566    2015-05-09 13:11:13    2015-05-09 13:11:13
25094    12051    815    2016-01-26 14:58:40    2016-01-26 14:58:40
25095    11894    764    2016-01-16 10:26:39    2016-01-16 10:26:39
25096    16732    585    2016-02-19 13:56:01    2016-02-19 13:56:01
25097    18242    865    2016-01-11 07:45:52    2016-01-11 07:45:52
25098    10706    860    2016-01-26 21:40:14    2016-01-26 21:40:14
25099    19132    646    2016-01-09 20:17:51    2016-01-09 20:17:51
25100    17037    572    2016-04-13 18:33:32    2016-04-13 18:33:32
25101    12482    887    2015-05-24 19:52:04    2015-05-24 19:52:04
25102    14527    866    2015-10-12 16:44:46    2015-10-12 16:44:46
25103    18190    739    2015-10-15 05:20:14    2015-10-15 05:20:14
25104    10070    863    2015-05-15 13:11:16    2015-05-15 13:11:16
25105    17277    638    2015-04-24 18:00:14    2015-04-24 18:00:14
25106    10378    921    2016-02-11 08:09:48    2016-02-11 08:09:48
25107    15256    584    2015-08-05 00:41:36    2015-08-05 00:41:36
25108    19672    470    2015-10-25 03:04:54    2015-10-25 03:04:54
25109    14262    959    2015-05-12 02:43:27    2015-05-12 02:43:27
25110    19282    880    2016-01-30 13:40:08    2016-01-30 13:40:08
25111    17714    905    2016-03-07 04:37:09    2016-03-07 04:37:09
25112    13727    807    2016-03-08 07:08:39    2016-03-08 07:08:39
25113    17110    832    2015-07-11 20:08:09    2015-07-11 20:08:09
25114    19265    852    2015-11-06 14:44:54    2015-11-06 14:44:54
25115    16681    701    2015-07-26 04:09:33    2015-07-26 04:09:33
25116    15839    500    2016-03-30 06:45:01    2016-03-30 06:45:01
25117    19794    714    2016-02-24 13:53:01    2016-02-24 13:53:01
25118    14099    588    2015-09-15 23:48:59    2015-09-15 23:48:59
25119    10524    637    2016-02-10 17:37:24    2016-02-10 17:37:24
25120    15217    769    2016-04-04 23:03:01    2016-04-04 23:03:01
25121    17853    951    2015-12-29 03:33:53    2015-12-29 03:33:53
25122    16704    507    2016-04-20 21:23:15    2016-04-20 21:23:15
25123    18883    652    2015-06-25 04:40:06    2015-06-25 04:40:06
25124    19765    907    2015-05-18 23:18:04    2015-05-18 23:18:04
25125    10335    700    2015-12-01 10:51:39    2015-12-01 10:51:39
25126    16924    557    2015-06-25 03:27:05    2015-06-25 03:27:05
25127    17635    794    2015-11-27 07:59:17    2015-11-27 07:59:17
25128    15193    648    2016-01-24 21:26:38    2016-01-24 21:26:38
25129    11385    511    2015-09-15 18:21:58    2015-09-15 18:21:58
25130    11332    667    2015-09-17 13:18:23    2015-09-17 13:18:23
25131    18444    615    2016-03-26 16:12:47    2016-03-26 16:12:47
25132    16196    650    2015-10-16 11:29:40    2015-10-16 11:29:40
25133    12121    611    2016-01-05 01:49:10    2016-01-05 01:49:10
25134    13821    872    2015-06-04 05:12:08    2015-06-04 05:12:08
25135    19210    949    2015-10-04 06:44:54    2015-10-04 06:44:54
25136    18385    586    2015-05-08 05:50:01    2015-05-08 05:50:01
25137    19149    470    2015-09-13 06:58:34    2015-09-13 06:58:34
25138    11260    776    2015-05-19 02:05:15    2015-05-19 02:05:15
25139    11709    625    2015-11-11 19:44:59    2015-11-11 19:44:59
25140    19417    672    2016-01-12 05:25:17    2016-01-12 05:25:17
25141    12608    517    2015-07-02 13:15:20    2015-07-02 13:15:20
25142    18381    819    2016-02-16 05:47:44    2016-02-16 05:47:44
25143    19706    765    2015-10-17 04:26:02    2015-10-17 04:26:02
25144    11065    588    2015-05-26 18:29:21    2015-05-26 18:29:21
25145    14805    904    2016-02-09 11:33:24    2016-02-09 11:33:24
25146    12341    824    2016-02-04 09:43:58    2016-02-04 09:43:58
25147    17597    492    2015-11-29 08:42:21    2015-11-29 08:42:21
25148    16798    961    2015-07-24 06:59:47    2015-07-24 06:59:47
25149    19889    706    2016-04-06 13:02:16    2016-04-06 13:02:16
25150    15470    837    2015-11-08 15:38:28    2015-11-08 15:38:28
25151    19178    925    2016-02-16 08:04:49    2016-02-16 08:04:49
25152    16534    498    2016-02-20 22:31:42    2016-02-20 22:31:42
25153    16122    698    2015-07-22 21:27:28    2015-07-22 21:27:28
25154    15968    742    2015-12-25 11:45:19    2015-12-25 11:45:19
25155    15638    677    2015-05-10 19:31:13    2015-05-10 19:31:13
25156    14639    765    2015-12-20 11:12:54    2015-12-20 11:12:54
25157    18560    483    2016-01-13 23:08:35    2016-01-13 23:08:35
25158    13394    825    2016-02-12 10:08:07    2016-02-12 10:08:07
25159    12129    535    2016-02-11 01:30:06    2016-02-11 01:30:06
25160    17302    611    2015-08-11 07:51:08    2015-08-11 07:51:08
25161    14147    730    2015-04-25 14:14:27    2015-04-25 14:14:27
25162    11877    698    2015-12-16 05:16:08    2015-12-16 05:16:08
25163    10145    843    2015-07-28 11:52:50    2015-07-28 11:52:50
25164    18694    795    2016-01-28 07:07:48    2016-01-28 07:07:48
25165    19945    661    2015-08-15 11:39:13    2015-08-15 11:39:13
25166    12663    651    2015-12-30 20:33:00    2015-12-30 20:33:00
25167    16532    779    2015-08-10 03:01:08    2015-08-10 03:01:08
25168    15436    793    2015-11-15 22:27:47    2015-11-15 22:27:47
25169    13956    537    2015-12-10 08:13:34    2015-12-10 08:13:34
25170    17776    643    2016-01-18 08:04:09    2016-01-18 08:04:09
25171    17079    649    2016-01-21 21:12:30    2016-01-21 21:12:30
25172    12089    765    2015-12-09 23:53:06    2015-12-09 23:53:06
25173    15005    668    2016-03-20 12:32:13    2016-03-20 12:32:13
25174    18963    525    2015-08-20 23:21:11    2015-08-20 23:21:11
25175    14613    510    2015-12-04 08:33:53    2015-12-04 08:33:53
25176    10832    936    2015-12-21 22:01:58    2015-12-21 22:01:58
25177    10169    863    2016-02-12 13:45:50    2016-02-12 13:45:50
25178    13713    630    2015-11-25 03:24:23    2015-11-25 03:24:23
25179    16747    627    2015-07-13 15:27:17    2015-07-13 15:27:17
25180    13301    950    2015-09-03 08:40:28    2015-09-03 08:40:28
25181    18534    920    2015-12-27 23:48:07    2015-12-27 23:48:07
25182    12018    840    2015-09-09 08:26:28    2015-09-09 08:26:28
25183    18413    794    2015-07-02 06:01:19    2015-07-02 06:01:19
25184    15488    852    2015-12-01 23:37:51    2015-12-01 23:37:51
25185    17352    887    2015-05-02 12:57:23    2015-05-02 12:57:23
25186    12557    663    2015-12-12 09:03:01    2015-12-12 09:03:01
25187    10140    636    2015-07-30 10:47:33    2015-07-30 10:47:33
25188    10112    775    2015-08-26 19:56:27    2015-08-26 19:56:27
25189    14638    514    2015-09-18 09:01:07    2015-09-18 09:01:07
25190    19318    479    2016-02-04 05:21:43    2016-02-04 05:21:43
25191    16791    648    2015-09-22 07:39:22    2015-09-22 07:39:22
25192    13250    535    2016-02-28 05:19:10    2016-02-28 05:19:10
25193    10992    479    2015-05-10 14:38:45    2015-05-10 14:38:45
25194    11830    536    2016-01-04 01:31:46    2016-01-04 01:31:46
25195    10964    642    2015-09-09 01:07:12    2015-09-09 01:07:12
25196    18055    772    2015-05-05 10:57:54    2015-05-05 10:57:54
25197    11644    751    2015-07-21 04:50:20    2015-07-21 04:50:20
25198    11912    887    2016-01-18 19:50:51    2016-01-18 19:50:51
25199    19515    784    2015-10-31 20:51:09    2015-10-31 20:51:09
25200    12029    486    2015-08-12 20:17:15    2015-08-12 20:17:15
25201    18253    870    2016-04-16 16:21:16    2016-04-16 16:21:16
25202    17889    520    2015-05-14 18:46:46    2015-05-14 18:46:46
25203    18976    640    2015-10-18 05:00:14    2015-10-18 05:00:14
25204    13084    578    2015-11-18 23:30:01    2015-11-18 23:30:01
25205    10093    501    2015-07-09 11:39:22    2015-07-09 11:39:22
25206    10767    896    2015-05-27 22:19:29    2015-05-27 22:19:29
25207    14061    696    2016-01-17 22:32:01    2016-01-17 22:32:01
25208    14142    607    2015-09-25 12:04:14    2015-09-25 12:04:14
25209    15696    527    2015-12-06 06:59:25    2015-12-06 06:59:25
25210    10828    933    2015-10-05 07:08:22    2015-10-05 07:08:22
25211    17489    684    2015-07-17 00:58:30    2015-07-17 00:58:30
25212    12397    914    2015-09-10 06:34:20    2015-09-10 06:34:20
25213    12630    782    2015-07-26 16:30:59    2015-07-26 16:30:59
25214    12863    800    2015-12-08 05:14:09    2015-12-08 05:14:09
25215    14303    710    2015-04-25 21:00:53    2015-04-25 21:00:53
25216    15067    533    2015-05-29 09:30:12    2015-05-29 09:30:12
25217    10810    900    2015-08-27 13:44:30    2015-08-27 13:44:30
25218    19515    868    2016-01-05 10:35:07    2016-01-05 10:35:07
25219    18295    478    2015-12-25 14:43:36    2015-12-25 14:43:36
25220    14349    875    2015-12-30 01:30:42    2015-12-30 01:30:42
25221    18846    634    2016-03-26 00:26:48    2016-03-26 00:26:48
25222    19481    498    2015-10-19 03:25:26    2015-10-19 03:25:26
25223    19732    569    2015-10-27 16:43:32    2015-10-27 16:43:32
25224    13323    888    2015-09-29 18:35:03    2015-09-29 18:35:03
25225    13330    812    2015-05-08 11:05:10    2015-05-08 11:05:10
25226    19365    863    2015-07-17 11:40:08    2015-07-17 11:40:08
25227    11243    643    2015-07-26 13:48:40    2015-07-26 13:48:40
25228    18114    734    2016-04-17 13:06:37    2016-04-17 13:06:37
25229    19160    495    2015-07-24 05:58:15    2015-07-24 05:58:15
25230    11793    634    2015-07-09 15:16:18    2015-07-09 15:16:18
25231    12149    488    2015-10-05 09:55:19    2015-10-05 09:55:19
25232    15749    867    2015-10-24 18:46:17    2015-10-24 18:46:17
25233    17117    882    2016-01-05 12:42:07    2016-01-05 12:42:07
25234    19876    880    2015-09-13 17:14:43    2015-09-13 17:14:43
25235    15609    867    2016-03-21 07:33:24    2016-03-21 07:33:24
25236    19510    582    2016-01-11 10:19:59    2016-01-11 10:19:59
25237    11744    582    2015-04-28 19:31:51    2015-04-28 19:31:51
25238    11060    644    2016-01-13 17:55:02    2016-01-13 17:55:02
25239    16020    509    2015-09-14 17:50:17    2015-09-14 17:50:17
25240    12539    559    2015-12-22 00:55:40    2015-12-22 00:55:40
25241    14980    708    2015-05-21 02:11:35    2015-05-21 02:11:35
25242    13578    778    2016-01-26 22:34:08    2016-01-26 22:34:08
25243    19149    942    2015-12-29 02:57:50    2015-12-29 02:57:50
25244    18539    469    2016-03-08 11:12:40    2016-03-08 11:12:40
25245    12574    615    2015-08-08 03:12:13    2015-08-08 03:12:13
25246    12907    625    2016-03-28 01:41:16    2016-03-28 01:41:16
25247    10688    828    2016-04-07 07:16:09    2016-04-07 07:16:09
25248    11736    545    2015-08-11 14:57:05    2015-08-11 14:57:05
25249    13319    477    2016-02-09 00:50:19    2016-02-09 00:50:19
25250    13949    679    2015-10-28 11:26:13    2015-10-28 11:26:13
25251    10439    652    2015-12-23 16:13:59    2015-12-23 16:13:59
25252    12164    520    2016-04-07 15:48:37    2016-04-07 15:48:37
25253    14438    902    2015-05-08 17:18:23    2015-05-08 17:18:23
25254    14696    891    2015-10-30 08:55:30    2015-10-30 08:55:30
25255    11352    865    2016-03-25 10:16:27    2016-03-25 10:16:27
25256    17644    766    2016-02-23 19:48:53    2016-02-23 19:48:53
25257    18443    825    2015-09-06 02:57:34    2015-09-06 02:57:34
25258    17817    603    2016-03-14 23:06:42    2016-03-14 23:06:42
25259    10446    739    2015-12-26 11:23:58    2015-12-26 11:23:58
25260    14046    510    2015-10-30 19:13:49    2015-10-30 19:13:49
25261    13233    537    2015-10-21 10:03:25    2015-10-21 10:03:25
25262    19148    555    2015-04-27 04:00:01    2015-04-27 04:00:01
25263    14486    855    2015-09-23 08:56:02    2015-09-23 08:56:02
25264    19897    781    2015-12-25 18:33:10    2015-12-25 18:33:10
25265    10394    774    2016-02-17 04:35:41    2016-02-17 04:35:41
25266    14739    631    2015-09-04 12:51:59    2015-09-04 12:51:59
25267    17237    940    2016-04-17 03:54:31    2016-04-17 03:54:31
25268    17350    952    2016-03-14 21:46:11    2016-03-14 21:46:11
25269    10359    929    2016-02-05 06:01:51    2016-02-05 06:01:51
25270    17780    548    2015-06-08 01:57:01    2015-06-08 01:57:01
25271    11303    950    2016-03-06 23:52:44    2016-03-06 23:52:44
25272    12539    701    2016-03-04 07:17:07    2016-03-04 07:17:07
25273    12700    528    2015-05-15 02:53:20    2015-05-15 02:53:20
25274    14175    602    2016-04-12 01:41:17    2016-04-12 01:41:17
25275    16727    652    2016-03-15 08:26:39    2016-03-15 08:26:39
25276    16693    887    2016-03-21 20:40:43    2016-03-21 20:40:43
25277    15699    810    2015-07-15 10:58:40    2015-07-15 10:58:40
25278    16446    672    2015-11-28 23:29:19    2015-11-28 23:29:19
25279    11369    771    2015-08-01 03:43:20    2015-08-01 03:43:20
25280    13482    637    2016-01-13 18:47:44    2016-01-13 18:47:44
25281    18463    478    2016-01-20 14:30:53    2016-01-20 14:30:53
25282    19976    712    2015-09-18 13:35:49    2015-09-18 13:35:49
25283    18453    567    2015-04-29 05:00:28    2015-04-29 05:00:28
25284    12309    518    2016-02-29 10:57:54    2016-02-29 10:57:54
25285    15640    886    2016-04-13 21:11:22    2016-04-13 21:11:22
25286    16834    795    2015-05-31 04:59:54    2015-05-31 04:59:54
25287    12649    496    2015-11-07 02:23:22    2015-11-07 02:23:22
25288    10218    799    2015-09-30 01:20:31    2015-09-30 01:20:31
25289    17397    745    2016-03-21 15:01:36    2016-03-21 15:01:36
25290    17606    629    2015-11-05 06:39:07    2015-11-05 06:39:07
25291    18728    579    2015-12-09 06:09:24    2015-12-09 06:09:24
25292    11507    636    2015-05-20 20:27:45    2015-05-20 20:27:45
25293    17561    881    2015-06-11 12:56:23    2015-06-11 12:56:23
25294    10816    763    2016-02-20 01:17:05    2016-02-20 01:17:05
25295    16892    724    2015-05-13 23:53:22    2015-05-13 23:53:22
25296    19920    772    2015-11-16 15:01:49    2015-11-16 15:01:49
25297    17109    934    2015-07-27 00:43:14    2015-07-27 00:43:14
25298    15217    631    2016-03-10 17:11:13    2016-03-10 17:11:13
25299    14281    781    2015-07-05 06:09:06    2015-07-05 06:09:06
25300    10724    927    2015-11-01 21:09:23    2015-11-01 21:09:23
25301    18481    663    2015-11-02 07:45:00    2015-11-02 07:45:00
25302    15925    500    2015-11-26 05:04:12    2015-11-26 05:04:12
25303    13725    793    2016-01-07 01:04:48    2016-01-07 01:04:48
25304    12932    846    2016-03-29 01:29:45    2016-03-29 01:29:45
25305    15510    823    2015-05-06 19:18:37    2015-05-06 19:18:37
25306    16428    915    2015-12-06 02:13:49    2015-12-06 02:13:49
25307    16065    895    2015-12-07 11:53:24    2015-12-07 11:53:24
25308    15367    516    2015-05-09 10:43:55    2015-05-09 10:43:55
25309    19260    799    2015-08-29 22:33:48    2015-08-29 22:33:48
25310    15553    763    2016-04-16 19:57:57    2016-04-16 19:57:57
25311    17589    893    2015-04-24 04:33:32    2015-04-24 04:33:32
25312    19963    628    2015-12-17 09:04:41    2015-12-17 09:04:41
25313    12679    646    2015-09-30 13:59:08    2015-09-30 13:59:08
25314    18604    543    2015-09-21 04:14:59    2015-09-21 04:14:59
25315    17052    814    2016-01-20 16:31:10    2016-01-20 16:31:10
25316    19709    575    2016-03-04 12:44:52    2016-03-04 12:44:52
25317    10924    577    2015-11-12 14:05:29    2015-11-12 14:05:29
25318    19141    601    2015-11-24 00:06:08    2015-11-24 00:06:08
25319    16303    754    2015-11-30 01:58:53    2015-11-30 01:58:53
25320    15855    755    2015-08-08 13:25:33    2015-08-08 13:25:33
25321    10095    758    2015-05-12 09:22:04    2015-05-12 09:22:04
25322    10463    514    2015-11-13 12:06:09    2015-11-13 12:06:09
25323    15498    708    2015-09-29 17:16:16    2015-09-29 17:16:16
25324    14675    790    2016-04-02 01:38:32    2016-04-02 01:38:32
25325    16974    539    2015-08-02 06:21:49    2015-08-02 06:21:49
25326    12067    780    2016-02-27 05:19:40    2016-02-27 05:19:40
25327    19240    560    2016-02-26 18:30:09    2016-02-26 18:30:09
25328    16052    542    2015-05-15 13:43:54    2015-05-15 13:43:54
25329    11649    761    2015-10-07 14:56:52    2015-10-07 14:56:52
25330    18460    920    2015-11-19 19:43:35    2015-11-19 19:43:35
25331    15477    739    2015-11-01 11:25:44    2015-11-01 11:25:44
25332    12214    804    2015-06-24 18:52:42    2015-06-24 18:52:42
25333    12470    874    2015-08-29 16:03:57    2015-08-29 16:03:57
25334    13576    617    2015-11-27 06:15:47    2015-11-27 06:15:47
25335    16324    881    2016-01-10 03:21:42    2016-01-10 03:21:42
25336    11658    581    2016-02-08 05:42:47    2016-02-08 05:42:47
25337    14043    679    2015-07-17 10:48:26    2015-07-17 10:48:26
25338    11869    576    2015-04-28 20:03:28    2015-04-28 20:03:28
25339    18358    625    2015-06-25 15:31:51    2015-06-25 15:31:51
25340    11173    761    2015-05-20 22:27:58    2015-05-20 22:27:58
25341    13274    886    2015-06-02 04:03:34    2015-06-02 04:03:34
25342    19283    564    2016-03-19 07:25:25    2016-03-19 07:25:25
25343    15517    793    2015-11-15 12:17:29    2015-11-15 12:17:29
25344    18519    912    2016-01-06 10:50:26    2016-01-06 10:50:26
25345    10331    534    2016-03-08 00:42:00    2016-03-08 00:42:00
25346    10559    842    2016-03-02 02:36:50    2016-03-02 02:36:50
25347    18669    484    2016-04-16 00:29:57    2016-04-16 00:29:57
25348    11509    909    2016-04-04 03:43:35    2016-04-04 03:43:35
25349    17848    872    2016-03-09 10:21:32    2016-03-09 10:21:32
25350    12526    844    2015-07-24 07:54:21    2015-07-24 07:54:21
25351    12487    771    2016-04-19 12:25:20    2016-04-19 12:25:20
25352    14517    770    2015-05-12 11:06:44    2015-05-12 11:06:44
25353    17706    919    2015-07-28 12:56:56    2015-07-28 12:56:56
25354    14528    942    2016-03-18 15:46:06    2016-03-18 15:46:06
25355    15461    551    2015-11-30 23:26:20    2015-11-30 23:26:20
25356    15744    721    2015-11-06 12:57:57    2015-11-06 12:57:57
25357    16565    839    2016-03-10 19:26:32    2016-03-10 19:26:32
25358    13132    572    2015-05-19 00:21:43    2015-05-19 00:21:43
25359    17292    629    2015-06-21 14:31:07    2015-06-21 14:31:07
25360    14739    861    2015-11-17 15:32:42    2015-11-17 15:32:42
25361    19951    495    2015-09-03 02:39:54    2015-09-03 02:39:54
25362    12033    960    2015-08-11 15:34:12    2015-08-11 15:34:12
25363    14144    919    2015-08-19 00:25:57    2015-08-19 00:25:57
25364    14648    704    2016-02-15 14:16:15    2016-02-15 14:16:15
25365    19436    703    2015-07-08 06:24:33    2015-07-08 06:24:33
25366    16836    629    2016-01-13 23:45:37    2016-01-13 23:45:37
25367    10227    839    2015-08-15 00:26:37    2015-08-15 00:26:37
25368    14037    894    2015-08-31 18:01:30    2015-08-31 18:01:30
25369    12259    596    2015-08-19 03:50:17    2015-08-19 03:50:17
25370    14574    865    2015-10-10 18:26:12    2015-10-10 18:26:12
25371    18210    886    2015-08-28 11:41:38    2015-08-28 11:41:38
25372    18338    845    2015-08-23 13:53:15    2015-08-23 13:53:15
25373    18075    797    2015-12-06 00:24:34    2015-12-06 00:24:34
25374    12212    733    2015-09-14 00:11:33    2015-09-14 00:11:33
25375    16927    780    2016-03-12 20:22:25    2016-03-12 20:22:25
25376    16187    552    2016-03-18 16:01:03    2016-03-18 16:01:03
25377    10079    844    2016-01-26 16:36:26    2016-01-26 16:36:26
25378    11886    478    2016-02-13 16:36:31    2016-02-13 16:36:31
25379    15211    869    2015-10-22 12:05:14    2015-10-22 12:05:14
25380    13271    515    2016-03-14 01:47:40    2016-03-14 01:47:40
25381    16377    823    2016-01-09 23:49:22    2016-01-09 23:49:22
25382    15605    707    2015-05-31 16:12:09    2015-05-31 16:12:09
25383    10534    823    2015-07-06 11:49:10    2015-07-06 11:49:10
25384    14309    541    2015-06-26 18:12:46    2015-06-26 18:12:46
25385    14318    954    2015-05-08 02:53:10    2015-05-08 02:53:10
25386    19942    686    2015-08-26 08:05:11    2015-08-26 08:05:11
25387    17175    915    2015-11-27 01:19:49    2015-11-27 01:19:49
25388    16761    509    2016-01-01 10:14:52    2016-01-01 10:14:52
25389    12219    917    2015-12-20 11:11:58    2015-12-20 11:11:58
25390    16530    548    2015-08-23 21:10:41    2015-08-23 21:10:41
25391    14319    742    2015-09-25 07:51:15    2015-09-25 07:51:15
25392    12052    898    2015-07-21 11:11:44    2015-07-21 11:11:44
25393    14439    793    2016-03-24 20:23:54    2016-03-24 20:23:54
25394    17454    464    2015-07-08 06:55:35    2015-07-08 06:55:35
25395    11123    627    2015-10-12 11:51:20    2015-10-12 11:51:20
25396    17469    945    2016-02-17 02:30:18    2016-02-17 02:30:18
25397    15974    776    2015-08-25 19:20:43    2015-08-25 19:20:43
25398    17772    536    2016-01-12 23:02:44    2016-01-12 23:02:44
25399    15062    754    2015-07-16 04:14:13    2015-07-16 04:14:13
25400    15207    568    2015-07-12 17:33:28    2015-07-12 17:33:28
25401    18478    844    2016-01-03 18:04:54    2016-01-03 18:04:54
25402    16813    947    2015-10-19 12:10:54    2015-10-19 12:10:54
25403    16556    745    2015-09-24 01:06:41    2015-09-24 01:06:41
25404    16370    505    2015-05-24 01:21:22    2015-05-24 01:21:22
25405    15493    606    2016-03-01 16:55:53    2016-03-01 16:55:53
25406    15765    635    2015-05-15 14:43:34    2015-05-15 14:43:34
25407    13415    895    2015-09-19 12:21:36    2015-09-19 12:21:36
25408    18146    901    2016-04-15 11:52:47    2016-04-15 11:52:47
25409    17228    709    2016-02-13 03:58:27    2016-02-13 03:58:27
25410    19423    511    2016-04-15 00:56:13    2016-04-15 00:56:13
25411    11380    637    2016-01-03 00:16:05    2016-01-03 00:16:05
25412    13060    614    2015-06-04 23:12:03    2015-06-04 23:12:03
25413    19272    891    2015-12-19 10:58:44    2015-12-19 10:58:44
25414    16658    846    2015-07-27 06:53:54    2015-07-27 06:53:54
25415    18262    850    2015-09-30 07:20:49    2015-09-30 07:20:49
25416    15798    949    2015-04-28 11:48:16    2015-04-28 11:48:16
25417    17359    705    2015-05-27 07:13:24    2015-05-27 07:13:24
25418    12418    954    2015-10-05 01:09:30    2015-10-05 01:09:30
25419    17825    883    2015-11-03 06:42:06    2015-11-03 06:42:06
25420    19848    561    2016-03-02 14:31:12    2016-03-02 14:31:12
25421    12255    608    2015-11-10 03:25:47    2015-11-10 03:25:47
25422    18254    791    2016-03-23 20:27:58    2016-03-23 20:27:58
25423    14345    489    2015-06-24 03:18:25    2015-06-24 03:18:25
25424    17739    680    2015-12-04 00:22:46    2015-12-04 00:22:46
25425    16622    744    2015-05-28 06:04:12    2015-05-28 06:04:12
25426    10723    578    2015-08-06 08:44:23    2015-08-06 08:44:23
25427    15926    778    2016-01-22 21:08:55    2016-01-22 21:08:55
25428    13719    777    2015-07-18 21:42:08    2015-07-18 21:42:08
25429    17313    954    2016-04-17 17:31:18    2016-04-17 17:31:18
25430    12623    734    2015-05-06 11:55:26    2015-05-06 11:55:26
25431    11141    717    2015-07-02 20:07:25    2015-07-02 20:07:25
25432    16308    670    2015-08-26 15:35:07    2015-08-26 15:35:07
25433    10695    819    2016-03-30 14:09:19    2016-03-30 14:09:19
25434    14632    565    2016-03-10 16:52:55    2016-03-10 16:52:55
25435    11877    843    2016-01-03 09:07:52    2016-01-03 09:07:52
25436    15821    627    2016-03-17 20:11:49    2016-03-17 20:11:49
25437    15664    752    2015-08-12 00:54:33    2015-08-12 00:54:33
25438    12776    538    2015-04-29 05:34:24    2015-04-29 05:34:24
25439    12025    815    2016-03-27 07:38:46    2016-03-27 07:38:46
25440    12391    956    2016-01-27 12:45:46    2016-01-27 12:45:46
25441    13651    940    2015-12-22 19:38:19    2015-12-22 19:38:19
25442    11774    940    2015-06-27 06:25:14    2015-06-27 06:25:14
25443    18728    957    2016-04-14 14:53:56    2016-04-14 14:53:56
25444    16105    641    2015-06-01 21:09:48    2015-06-01 21:09:48
25445    10124    565    2015-09-07 22:31:33    2015-09-07 22:31:33
25446    13867    925    2015-09-22 18:43:47    2015-09-22 18:43:47
25447    12441    544    2015-09-17 14:57:04    2015-09-17 14:57:04
25448    10663    561    2015-07-26 10:36:55    2015-07-26 10:36:55
25449    18429    815    2016-03-18 03:47:25    2016-03-18 03:47:25
25450    16735    479    2016-01-24 14:30:54    2016-01-24 14:30:54
25451    14879    887    2015-06-07 22:16:16    2015-06-07 22:16:16
25452    11793    722    2015-08-21 02:46:25    2015-08-21 02:46:25
25453    17957    529    2015-04-27 06:14:55    2015-04-27 06:14:55
25454    11285    666    2015-12-08 17:53:46    2015-12-08 17:53:46
25455    16749    780    2015-07-11 13:13:52    2015-07-11 13:13:52
25456    15071    731    2016-04-09 22:49:15    2016-04-09 22:49:15
25457    13503    718    2015-12-09 03:46:01    2015-12-09 03:46:01
25458    16954    686    2015-05-21 17:54:31    2015-05-21 17:54:31
25459    11942    540    2015-07-22 03:17:28    2015-07-22 03:17:28
25460    17438    557    2015-06-05 22:00:05    2015-06-05 22:00:05
25461    17423    501    2015-08-09 17:52:54    2015-08-09 17:52:54
25462    15670    652    2015-11-17 00:51:31    2015-11-17 00:51:31
25463    15466    500    2015-07-31 12:10:49    2015-07-31 12:10:49
25464    16880    589    2015-05-16 09:12:15    2015-05-16 09:12:15
25465    13020    760    2015-08-03 02:23:15    2015-08-03 02:23:15
25466    18270    853    2016-01-05 12:50:10    2016-01-05 12:50:10
25467    18748    644    2015-08-29 13:41:28    2015-08-29 13:41:28
25468    14765    953    2015-06-10 16:46:09    2015-06-10 16:46:09
25469    11929    829    2016-03-21 11:30:09    2016-03-21 11:30:09
25470    13945    769    2015-05-30 06:47:33    2015-05-30 06:47:33
25471    18282    804    2015-12-01 09:47:15    2015-12-01 09:47:15
25472    14599    468    2016-03-23 06:11:14    2016-03-23 06:11:14
25473    16251    497    2016-02-14 08:32:55    2016-02-14 08:32:55
25474    13482    626    2015-07-05 23:05:28    2015-07-05 23:05:28
25475    11052    874    2015-09-06 13:39:40    2015-09-06 13:39:40
25476    15891    648    2015-04-22 03:13:54    2015-04-22 03:13:54
25477    12107    560    2016-04-20 07:04:59    2016-04-20 07:04:59
25478    13599    819    2015-07-04 03:23:13    2015-07-04 03:23:13
25479    17267    615    2015-05-22 14:52:35    2015-05-22 14:52:35
25480    10626    763    2015-12-27 04:38:01    2015-12-27 04:38:01
25481    15210    506    2016-02-13 19:10:02    2016-02-13 19:10:02
25482    13392    842    2015-05-20 00:38:47    2015-05-20 00:38:47
25483    19001    719    2015-12-08 12:22:30    2015-12-08 12:22:30
25484    10965    816    2015-06-10 15:48:33    2015-06-10 15:48:33
25485    17764    862    2015-06-05 12:01:49    2015-06-05 12:01:49
25486    10362    547    2016-03-24 04:42:46    2016-03-24 04:42:46
25487    14456    743    2015-07-26 10:28:02    2015-07-26 10:28:02
25488    14028    877    2015-10-16 23:36:53    2015-10-16 23:36:53
25489    17750    877    2015-09-17 08:49:00    2015-09-17 08:49:00
25490    15785    883    2015-06-28 02:02:15    2015-06-28 02:02:15
25491    18923    872    2016-03-06 18:26:17    2016-03-06 18:26:17
25492    15318    639    2015-06-07 18:53:56    2015-06-07 18:53:56
25493    13470    851    2015-09-30 22:14:16    2015-09-30 22:14:16
25494    15073    666    2015-12-24 19:16:02    2015-12-24 19:16:02
25495    19596    611    2015-09-21 17:31:05    2015-09-21 17:31:05
25496    18977    550    2015-09-12 21:28:32    2015-09-12 21:28:32
25497    18130    720    2016-02-27 19:39:01    2016-02-27 19:39:01
25498    12344    814    2015-07-18 20:22:09    2015-07-18 20:22:09
25499    16501    873    2016-01-13 16:21:12    2016-01-13 16:21:12
25500    12744    803    2016-01-23 02:11:31    2016-01-23 02:11:31
25501    12374    751    2016-02-01 20:12:08    2016-02-01 20:12:08
25502    19510    465    2015-12-22 21:46:00    2015-12-22 21:46:00
25503    10311    930    2015-12-04 09:30:46    2015-12-04 09:30:46
25504    19065    882    2015-11-12 09:17:23    2015-11-12 09:17:23
25505    11028    534    2015-06-02 17:49:03    2015-06-02 17:49:03
25506    13665    846    2015-11-17 15:50:41    2015-11-17 15:50:41
25507    13662    827    2015-08-31 04:09:14    2015-08-31 04:09:14
25508    13326    926    2015-07-25 14:34:17    2015-07-25 14:34:17
25509    16782    547    2016-01-30 13:45:56    2016-01-30 13:45:56
25510    15875    919    2015-09-26 08:49:36    2015-09-26 08:49:36
25511    13802    950    2015-07-30 11:24:00    2015-07-30 11:24:00
25512    14112    849    2015-08-02 06:31:06    2015-08-02 06:31:06
25513    13919    908    2016-01-22 16:51:29    2016-01-22 16:51:29
25514    11787    766    2015-07-25 07:26:32    2015-07-25 07:26:32
25515    17084    629    2015-12-13 23:34:07    2015-12-13 23:34:07
25516    10142    853    2015-04-24 08:41:07    2015-04-24 08:41:07
25517    17995    566    2015-09-09 15:36:02    2015-09-09 15:36:02
25518    15306    868    2015-05-01 22:08:25    2015-05-01 22:08:25
25519    15327    557    2016-02-23 17:07:55    2016-02-23 17:07:55
25520    15240    531    2015-08-04 08:43:07    2015-08-04 08:43:07
25521    13260    736    2015-09-29 09:06:33    2015-09-29 09:06:33
25522    12341    494    2015-09-17 04:55:55    2015-09-17 04:55:55
25523    19255    785    2015-10-16 05:26:36    2015-10-16 05:26:36
25524    16013    605    2015-08-15 12:49:07    2015-08-15 12:49:07
25525    18034    803    2016-04-10 21:37:41    2016-04-10 21:37:41
25526    16465    561    2015-08-13 18:27:40    2015-08-13 18:27:40
25527    16820    606    2015-11-11 18:47:08    2015-11-11 18:47:08
25528    14621    776    2015-12-21 03:09:12    2015-12-21 03:09:12
25529    14728    700    2015-10-18 01:22:26    2015-10-18 01:22:26
25530    19615    713    2016-04-03 04:20:21    2016-04-03 04:20:21
25531    17126    548    2015-11-29 23:42:20    2015-11-29 23:42:20
25532    12416    553    2015-12-22 18:52:16    2015-12-22 18:52:16
25533    14082    603    2015-10-02 19:25:22    2015-10-02 19:25:22
25534    19217    601    2016-01-18 20:41:39    2016-01-18 20:41:39
25535    11047    467    2015-12-19 06:29:35    2015-12-19 06:29:35
25536    18660    553    2015-12-09 17:17:35    2015-12-09 17:17:35
25537    14499    752    2015-08-25 16:49:12    2015-08-25 16:49:12
25538    11827    494    2015-11-05 20:04:12    2015-11-05 20:04:12
25539    13898    580    2015-11-23 12:30:59    2015-11-23 12:30:59
25540    18617    486    2015-10-15 18:23:54    2015-10-15 18:23:54
25541    11460    666    2016-04-11 17:32:28    2016-04-11 17:32:28
25542    17963    559    2015-11-16 15:41:03    2015-11-16 15:41:03
25543    17516    573    2015-07-22 11:15:10    2015-07-22 11:15:10
25544    14821    687    2016-03-14 14:23:55    2016-03-14 14:23:55
25545    12122    708    2015-06-10 05:52:39    2015-06-10 05:52:39
25546    12538    917    2015-06-25 16:19:25    2015-06-25 16:19:25
25547    13532    482    2016-03-25 00:18:32    2016-03-25 00:18:32
25548    13121    893    2016-02-18 04:25:01    2016-02-18 04:25:01
25549    11744    660    2016-04-04 22:04:43    2016-04-04 22:04:43
25550    17118    692    2016-03-10 10:44:52    2016-03-10 10:44:52
25551    17039    878    2015-07-04 22:46:16    2015-07-04 22:46:16
25552    12926    554    2015-05-03 23:23:13    2015-05-03 23:23:13
25553    11574    467    2015-11-05 23:04:11    2015-11-05 23:04:11
25554    12635    768    2015-06-23 17:58:16    2015-06-23 17:58:16
25555    16225    489    2015-10-18 05:08:34    2015-10-18 05:08:34
25556    10548    845    2015-11-16 16:59:12    2015-11-16 16:59:12
25557    15299    749    2015-08-04 11:41:56    2015-08-04 11:41:56
25558    17530    556    2016-03-09 05:12:32    2016-03-09 05:12:32
25559    12673    598    2016-04-09 18:51:46    2016-04-09 18:51:46
25560    17978    537    2015-06-12 15:02:35    2015-06-12 15:02:35
25561    19803    816    2015-10-20 04:52:52    2015-10-20 04:52:52
25562    16391    775    2015-07-05 06:35:23    2015-07-05 06:35:23
25563    17768    848    2016-03-04 10:18:53    2016-03-04 10:18:53
25564    18814    557    2015-07-19 14:06:19    2015-07-19 14:06:19
25565    11968    750    2016-03-06 00:04:15    2016-03-06 00:04:15
25566    12976    499    2015-07-25 04:01:04    2015-07-25 04:01:04
25567    19383    546    2015-09-14 07:41:52    2015-09-14 07:41:52
25568    17424    705    2015-10-24 21:19:03    2015-10-24 21:19:03
25569    17241    838    2015-06-23 01:53:20    2015-06-23 01:53:20
25570    18153    834    2015-06-17 01:03:16    2015-06-17 01:03:16
25571    12458    717    2015-08-16 23:08:44    2015-08-16 23:08:44
25572    17753    642    2016-01-05 07:36:30    2016-01-05 07:36:30
25573    16827    940    2015-10-22 11:43:04    2015-10-22 11:43:04
25574    10570    798    2015-11-18 18:52:11    2015-11-18 18:52:11
25575    11950    791    2015-12-01 12:37:43    2015-12-01 12:37:43
25576    13769    725    2015-10-21 18:56:10    2015-10-21 18:56:10
25577    17517    734    2015-06-26 02:44:34    2015-06-26 02:44:34
25578    17829    683    2015-10-25 15:40:28    2015-10-25 15:40:28
25579    12314    911    2015-08-22 13:35:59    2015-08-22 13:35:59
25580    14970    610    2015-08-29 10:36:17    2015-08-29 10:36:17
25581    16272    946    2016-02-04 01:10:09    2016-02-04 01:10:09
25582    19690    779    2016-03-11 06:34:20    2016-03-11 06:34:20
25583    17972    843    2015-06-20 20:53:52    2015-06-20 20:53:52
25584    16711    625    2016-03-01 14:42:18    2016-03-01 14:42:18
25585    18166    576    2015-10-14 02:00:00    2015-10-14 02:00:00
25586    18922    773    2015-05-29 07:18:10    2015-05-29 07:18:10
25587    17715    647    2015-10-16 21:22:16    2015-10-16 21:22:16
25588    14775    917    2015-10-17 07:28:11    2015-10-17 07:28:11
25589    14397    681    2015-10-17 08:52:23    2015-10-17 08:52:23
25590    19951    533    2015-06-10 20:01:04    2015-06-10 20:01:04
25591    12305    823    2015-08-10 16:10:32    2015-08-10 16:10:32
25592    15989    741    2015-10-28 01:40:38    2015-10-28 01:40:38
25593    13741    716    2015-09-03 00:43:07    2015-09-03 00:43:07
25594    10769    867    2016-01-20 12:04:20    2016-01-20 12:04:20
25595    12499    775    2015-10-28 06:54:48    2015-10-28 06:54:48
25596    12435    741    2015-11-13 21:11:45    2015-11-13 21:11:45
25597    12366    747    2015-12-18 23:02:12    2015-12-18 23:02:12
25598    19272    691    2016-02-10 23:45:48    2016-02-10 23:45:48
25599    11643    848    2015-11-17 20:40:25    2015-11-17 20:40:25
25600    14445    927    2016-03-13 14:49:15    2016-03-13 14:49:15
25601    15967    709    2016-02-04 02:13:11    2016-02-04 02:13:11
25602    16356    489    2016-02-05 11:55:46    2016-02-05 11:55:46
25603    17025    629    2015-05-05 02:55:55    2015-05-05 02:55:55
25604    15039    689    2016-02-10 08:16:58    2016-02-10 08:16:58
25605    15901    523    2015-04-25 02:59:20    2015-04-25 02:59:20
25606    17805    555    2015-10-21 10:25:46    2015-10-21 10:25:46
25607    19218    881    2015-06-24 20:22:02    2015-06-24 20:22:02
25608    13728    665    2015-09-15 10:02:59    2015-09-15 10:02:59
25609    15833    923    2016-03-24 03:48:46    2016-03-24 03:48:46
25610    18298    635    2015-11-19 18:18:08    2015-11-19 18:18:08
25611    11659    884    2015-12-29 02:41:59    2015-12-29 02:41:59
25612    15512    858    2015-07-17 22:01:04    2015-07-17 22:01:04
25613    14293    893    2015-11-14 00:32:00    2015-11-14 00:32:00
25614    17075    950    2015-05-14 10:50:49    2015-05-14 10:50:49
25615    17253    733    2015-10-22 20:39:02    2015-10-22 20:39:02
25616    11334    949    2016-04-07 10:02:33    2016-04-07 10:02:33
25617    18517    895    2015-06-25 01:49:52    2015-06-25 01:49:52
25618    18934    612    2015-08-19 11:04:47    2015-08-19 11:04:47
25619    16070    684    2015-04-22 16:48:11    2015-04-22 16:48:11
25620    14017    931    2015-12-26 13:58:13    2015-12-26 13:58:13
25621    12187    845    2015-12-12 14:49:08    2015-12-12 14:49:08
25622    17323    554    2015-10-10 21:07:52    2015-10-10 21:07:52
25623    15401    834    2015-05-10 03:38:17    2015-05-10 03:38:17
25624    10987    694    2015-06-25 10:01:18    2015-06-25 10:01:18
25625    11714    465    2015-09-07 23:22:29    2015-09-07 23:22:29
25626    13659    921    2016-04-12 12:58:35    2016-04-12 12:58:35
25627    18169    849    2015-06-09 20:58:34    2015-06-09 20:58:34
25628    12047    684    2015-12-09 12:04:05    2015-12-09 12:04:05
25629    10242    512    2016-02-12 03:13:15    2016-02-12 03:13:15
25630    10116    482    2016-01-24 15:08:44    2016-01-24 15:08:44
25631    11674    819    2016-02-15 11:50:41    2016-02-15 11:50:41
25632    17859    883    2015-12-28 04:43:51    2015-12-28 04:43:51
25633    12036    781    2016-02-02 05:42:22    2016-02-02 05:42:22
25634    14353    946    2015-08-15 14:27:05    2015-08-15 14:27:05
25635    18567    923    2015-10-20 21:53:39    2015-10-20 21:53:39
25636    15598    561    2015-12-30 20:07:18    2015-12-30 20:07:18
25637    17938    551    2015-09-23 03:21:00    2015-09-23 03:21:00
25638    12984    802    2015-06-27 10:21:46    2015-06-27 10:21:46
25639    12955    545    2016-03-05 16:29:14    2016-03-05 16:29:14
25640    15911    941    2015-05-05 11:04:02    2015-05-05 11:04:02
25641    17318    847    2015-12-08 12:24:55    2015-12-08 12:24:55
25642    17142    531    2015-12-18 06:36:46    2015-12-18 06:36:46
25643    13514    495    2016-04-16 05:47:39    2016-04-16 05:47:39
25644    14668    482    2016-03-08 17:50:53    2016-03-08 17:50:53
25645    19624    719    2015-09-19 21:10:40    2015-09-19 21:10:40
25646    15841    814    2015-08-22 19:47:58    2015-08-22 19:47:58
25647    14450    739    2016-02-02 20:01:59    2016-02-02 20:01:59
25648    18524    724    2016-04-02 15:25:30    2016-04-02 15:25:30
25649    17920    732    2015-09-14 19:44:16    2015-09-14 19:44:16
25650    16301    479    2016-01-25 21:51:55    2016-01-25 21:51:55
25651    14485    592    2015-06-15 04:51:48    2015-06-15 04:51:48
25652    15971    848    2015-06-30 21:37:30    2015-06-30 21:37:30
25653    13738    474    2015-07-07 12:22:37    2015-07-07 12:22:37
25654    11594    605    2015-07-31 17:27:24    2015-07-31 17:27:24
25655    19605    806    2015-11-21 02:45:22    2015-11-21 02:45:22
25656    10773    703    2015-08-07 21:49:13    2015-08-07 21:49:13
25657    10632    640    2015-09-24 18:08:30    2015-09-24 18:08:30
25658    17130    947    2015-11-23 23:59:03    2015-11-23 23:59:03
25659    18006    663    2015-11-26 13:26:01    2015-11-26 13:26:01
25660    14272    632    2016-03-14 17:14:11    2016-03-14 17:14:11
25661    12127    837    2016-04-04 16:12:22    2016-04-04 16:12:22
25662    19314    658    2015-06-06 04:35:08    2015-06-06 04:35:08
25663    10871    869    2015-06-27 01:08:40    2015-06-27 01:08:40
25664    16032    773    2015-04-25 03:49:47    2015-04-25 03:49:47
25665    10148    913    2015-08-03 19:41:26    2015-08-03 19:41:26
25666    10315    907    2015-04-25 21:59:22    2015-04-25 21:59:22
25667    15443    513    2015-09-14 19:37:04    2015-09-14 19:37:04
25668    16009    544    2016-03-07 16:59:35    2016-03-07 16:59:35
25669    17150    625    2015-06-15 07:11:16    2015-06-15 07:11:16
25670    17418    714    2016-01-13 16:18:59    2016-01-13 16:18:59
25671    18993    486    2015-07-29 14:29:55    2015-07-29 14:29:55
25672    11461    856    2016-02-08 09:22:24    2016-02-08 09:22:24
25673    19602    876    2015-05-10 22:17:20    2015-05-10 22:17:20
25674    14670    489    2016-04-12 04:07:42    2016-04-12 04:07:42
25675    13886    843    2016-04-03 09:25:17    2016-04-03 09:25:17
25676    19760    830    2015-12-21 13:55:40    2015-12-21 13:55:40
25677    19187    752    2016-03-14 08:43:54    2016-03-14 08:43:54
25678    13057    709    2015-06-21 06:38:21    2015-06-21 06:38:21
25679    19565    773    2015-11-12 14:51:18    2015-11-12 14:51:18
25680    18671    763    2015-09-20 18:36:35    2015-09-20 18:36:35
25681    14439    720    2016-04-19 12:27:59    2016-04-19 12:27:59
25682    15771    697    2015-05-21 01:47:12    2015-05-21 01:47:12
25683    11733    663    2015-12-04 09:39:40    2015-12-04 09:39:40
25684    16145    574    2016-03-20 16:07:00    2016-03-20 16:07:00
25685    10121    883    2016-02-10 17:33:45    2016-02-10 17:33:45
25686    10337    552    2015-07-18 10:30:45    2015-07-18 10:30:45
25687    16653    559    2016-01-21 08:17:21    2016-01-21 08:17:21
25688    18624    654    2015-07-28 08:00:56    2015-07-28 08:00:56
25689    17177    640    2015-05-27 02:42:01    2015-05-27 02:42:01
25690    19190    617    2015-11-18 22:53:53    2015-11-18 22:53:53
25691    15789    780    2015-12-11 20:38:06    2015-12-11 20:38:06
25692    10565    785    2015-12-05 12:02:46    2015-12-05 12:02:46
25693    14516    901    2016-02-13 10:46:48    2016-02-13 10:46:48
25694    17884    818    2015-11-14 20:14:06    2015-11-14 20:14:06
25695    19009    866    2015-12-27 01:26:46    2015-12-27 01:26:46
25696    11114    742    2016-01-27 22:37:52    2016-01-27 22:37:52
25697    15001    710    2016-02-19 00:18:15    2016-02-19 00:18:15
25698    11518    633    2015-07-15 05:23:19    2015-07-15 05:23:19
25699    14028    732    2015-06-02 07:09:31    2015-06-02 07:09:31
25700    18103    844    2016-03-07 19:15:33    2016-03-07 19:15:33
25701    14096    899    2015-09-12 15:31:33    2015-09-12 15:31:33
25702    16880    641    2015-10-23 21:33:23    2015-10-23 21:33:23
25703    11857    559    2015-12-03 09:23:56    2015-12-03 09:23:56
25704    11124    764    2015-08-25 23:22:58    2015-08-25 23:22:58
25705    14158    714    2015-12-13 06:16:13    2015-12-13 06:16:13
25706    15898    861    2015-10-28 03:39:00    2015-10-28 03:39:00
25707    10806    961    2015-11-30 05:35:32    2015-11-30 05:35:32
25708    14611    503    2015-10-30 12:13:16    2015-10-30 12:13:16
25709    12534    464    2016-01-06 07:03:09    2016-01-06 07:03:09
25710    18730    866    2016-03-10 18:00:32    2016-03-10 18:00:32
25711    15870    609    2015-07-07 16:59:33    2015-07-07 16:59:33
25712    19078    857    2016-03-13 21:13:55    2016-03-13 21:13:55
25713    14141    805    2016-03-16 00:38:50    2016-03-16 00:38:50
25714    14000    627    2015-11-10 10:36:20    2015-11-10 10:36:20
25715    12579    596    2015-08-21 07:44:02    2015-08-21 07:44:02
25716    19108    659    2015-07-19 15:39:59    2015-07-19 15:39:59
25717    17457    786    2015-08-16 06:46:47    2015-08-16 06:46:47
25718    19119    730    2015-10-10 16:23:11    2015-10-10 16:23:11
25719    18657    794    2015-12-30 22:29:55    2015-12-30 22:29:55
25720    17702    899    2016-03-12 05:31:43    2016-03-12 05:31:43
25721    10099    943    2016-02-11 12:44:56    2016-02-11 12:44:56
25722    19137    896    2015-06-27 17:59:29    2015-06-27 17:59:29
25723    19228    890    2015-11-25 16:19:17    2015-11-25 16:19:17
25724    18722    554    2015-10-23 14:54:29    2015-10-23 14:54:29
25725    14933    565    2015-05-16 07:30:55    2015-05-16 07:30:55
25726    19912    560    2015-11-24 05:38:45    2015-11-24 05:38:45
25727    13279    961    2015-08-20 12:52:36    2015-08-20 12:52:36
25728    14136    607    2016-01-18 23:59:48    2016-01-18 23:59:48
25729    18636    768    2016-03-14 21:05:49    2016-03-14 21:05:49
25730    12629    691    2016-02-02 00:46:28    2016-02-02 00:46:28
25731    17834    909    2015-07-30 12:11:05    2015-07-30 12:11:05
25732    13080    764    2015-04-28 13:57:30    2015-04-28 13:57:30
25733    17790    749    2015-10-05 00:19:21    2015-10-05 00:19:21
25734    12065    813    2015-06-19 01:19:39    2015-06-19 01:19:39
25735    15400    673    2015-05-19 02:10:31    2015-05-19 02:10:31
25736    11361    717    2015-10-13 05:08:36    2015-10-13 05:08:36
25737    10243    728    2015-08-18 02:34:03    2015-08-18 02:34:03
25738    19340    782    2016-03-15 05:50:50    2016-03-15 05:50:50
25739    15514    859    2015-07-30 08:09:07    2015-07-30 08:09:07
25740    13671    552    2015-07-05 07:27:06    2015-07-05 07:27:06
25741    18096    904    2015-07-20 22:06:33    2015-07-20 22:06:33
25742    10937    562    2015-08-16 14:06:08    2015-08-16 14:06:08
25743    13589    534    2015-06-20 11:13:04    2015-06-20 11:13:04
25744    18829    478    2015-08-05 10:41:48    2015-08-05 10:41:48
25745    14790    753    2016-01-22 20:57:03    2016-01-22 20:57:03
25746    15729    899    2015-05-31 11:17:03    2015-05-31 11:17:03
25747    16476    710    2016-04-14 15:16:24    2016-04-14 15:16:24
25748    18860    654    2015-04-29 19:40:14    2015-04-29 19:40:14
25749    11592    912    2015-07-05 05:40:19    2015-07-05 05:40:19
25750    19452    769    2016-02-29 20:07:05    2016-02-29 20:07:05
25751    18955    508    2015-05-06 22:46:21    2015-05-06 22:46:21
25752    12861    791    2015-11-01 22:49:54    2015-11-01 22:49:54
25753    16335    648    2015-08-07 03:46:35    2015-08-07 03:46:35
25754    10070    823    2015-10-31 10:40:01    2015-10-31 10:40:01
25755    11513    850    2015-12-20 06:40:51    2015-12-20 06:40:51
25756    14957    914    2015-11-28 23:03:21    2015-11-28 23:03:21
25757    17468    891    2016-03-31 09:28:50    2016-03-31 09:28:50
25758    17262    693    2015-08-16 02:26:18    2015-08-16 02:26:18
25759    10453    507    2016-01-25 11:40:37    2016-01-25 11:40:37
25760    17875    493    2015-11-09 13:57:04    2015-11-09 13:57:04
25761    17626    747    2015-08-29 05:08:01    2015-08-29 05:08:01
25762    13380    802    2016-04-18 23:03:00    2016-04-18 23:03:00
25763    13256    913    2015-10-07 13:00:34    2015-10-07 13:00:34
25764    11053    654    2015-06-03 14:54:43    2015-06-03 14:54:43
25765    14749    627    2015-09-23 17:32:16    2015-09-23 17:32:16
25766    13559    837    2016-03-25 20:21:41    2016-03-25 20:21:41
25767    15234    688    2015-10-19 14:37:07    2015-10-19 14:37:07
25768    16740    950    2016-04-14 19:36:09    2016-04-14 19:36:09
25769    14321    866    2016-03-02 13:13:31    2016-03-02 13:13:31
25770    19659    721    2015-12-11 00:57:24    2015-12-11 00:57:24
25771    10448    560    2015-10-31 23:12:11    2015-10-31 23:12:11
25772    17008    881    2015-10-22 07:57:59    2015-10-22 07:57:59
25773    16042    820    2015-11-12 23:54:05    2015-11-12 23:54:05
25774    19831    539    2015-05-11 02:51:09    2015-05-11 02:51:09
25775    10249    496    2015-10-12 04:36:27    2015-10-12 04:36:27
25776    18529    829    2015-05-06 03:41:01    2015-05-06 03:41:01
25777    12498    830    2015-06-08 15:37:11    2015-06-08 15:37:11
25778    18011    769    2016-03-26 10:52:23    2016-03-26 10:52:23
25779    14331    753    2016-04-09 16:17:03    2016-04-09 16:17:03
25780    16792    642    2015-08-31 05:56:33    2015-08-31 05:56:33
25781    13233    658    2015-07-12 01:23:23    2015-07-12 01:23:23
25782    11029    872    2015-07-26 08:32:25    2015-07-26 08:32:25
25783    14235    750    2015-11-30 14:08:46    2015-11-30 14:08:46
25784    13684    803    2016-03-17 15:18:55    2016-03-17 15:18:55
25785    19447    721    2015-09-15 03:53:34    2015-09-15 03:53:34
25786    10922    550    2016-03-05 16:10:55    2016-03-05 16:10:55
25787    11117    699    2016-02-05 08:40:44    2016-02-05 08:40:44
25788    12082    743    2015-08-05 07:02:11    2015-08-05 07:02:11
25789    19364    755    2015-08-24 08:43:38    2015-08-24 08:43:38
25790    13124    823    2016-03-25 03:56:10    2016-03-25 03:56:10
25791    18086    666    2015-06-24 13:59:19    2015-06-24 13:59:19
25792    10778    495    2016-04-13 18:06:05    2016-04-13 18:06:05
25793    15948    777    2016-03-13 20:39:30    2016-03-13 20:39:30
25794    18231    690    2016-04-11 02:15:38    2016-04-11 02:15:38
25795    13576    646    2015-06-21 02:11:51    2015-06-21 02:11:51
25796    18979    952    2015-11-24 04:16:22    2015-11-24 04:16:22
25797    14425    773    2016-02-25 11:00:54    2016-02-25 11:00:54
25798    13120    702    2015-12-14 15:07:18    2015-12-14 15:07:18
25799    16744    552    2016-02-25 07:02:22    2016-02-25 07:02:22
25800    13912    537    2016-01-14 14:25:03    2016-01-14 14:25:03
25801    13609    588    2016-02-28 02:33:22    2016-02-28 02:33:22
25802    17477    574    2016-01-01 04:13:47    2016-01-01 04:13:47
25803    19313    936    2015-10-13 19:44:05    2015-10-13 19:44:05
25804    11934    691    2015-07-30 14:56:32    2015-07-30 14:56:32
25805    14923    657    2015-09-13 10:39:49    2015-09-13 10:39:49
25806    17402    536    2016-04-16 21:15:24    2016-04-16 21:15:24
25807    16595    780    2015-10-06 00:01:02    2015-10-06 00:01:02
25808    16767    707    2015-10-10 00:10:41    2015-10-10 00:10:41
25809    14252    647    2015-12-14 15:42:05    2015-12-14 15:42:05
25810    12706    702    2016-02-22 05:05:04    2016-02-22 05:05:04
25811    11849    612    2015-05-06 03:43:41    2015-05-06 03:43:41
25812    12938    790    2015-08-14 01:51:41    2015-08-14 01:51:41
25813    12730    507    2015-04-27 00:54:43    2015-04-27 00:54:43
25814    12029    707    2015-05-18 17:29:41    2015-05-18 17:29:41
25815    17563    764    2016-04-06 09:56:28    2016-04-06 09:56:28
25816    16000    526    2016-02-20 00:26:48    2016-02-20 00:26:48
25817    13716    474    2015-10-25 09:23:27    2015-10-25 09:23:27
25818    10748    500    2015-07-29 18:56:22    2015-07-29 18:56:22
25819    13408    595    2015-10-01 03:51:20    2015-10-01 03:51:20
25820    10132    558    2015-08-24 12:02:15    2015-08-24 12:02:15
25821    18003    785    2016-02-16 10:59:48    2016-02-16 10:59:48
25822    12905    658    2015-11-06 03:14:00    2015-11-06 03:14:00
25823    14730    670    2016-02-10 02:53:00    2016-02-10 02:53:00
25824    11246    640    2015-07-09 14:05:25    2015-07-09 14:05:25
25825    14613    575    2015-06-12 21:15:00    2015-06-12 21:15:00
25826    18807    561    2015-04-29 12:52:07    2015-04-29 12:52:07
25827    17286    698    2015-07-17 15:40:59    2015-07-17 15:40:59
25828    12844    613    2015-05-26 06:07:52    2015-05-26 06:07:52
25829    13785    885    2015-12-27 16:54:58    2015-12-27 16:54:58
25830    12685    926    2015-09-16 17:50:39    2015-09-16 17:50:39
25831    18338    851    2015-06-30 12:57:52    2015-06-30 12:57:52
25832    11405    552    2015-09-06 07:37:15    2015-09-06 07:37:15
25833    10581    478    2015-05-17 17:26:44    2015-05-17 17:26:44
25834    16071    855    2016-02-11 14:52:52    2016-02-11 14:52:52
25835    12149    875    2016-03-21 20:42:27    2016-03-21 20:42:27
25836    10164    936    2015-10-12 19:31:58    2015-10-12 19:31:58
25837    13348    897    2016-01-23 21:46:41    2016-01-23 21:46:41
25838    12144    612    2016-03-30 16:36:35    2016-03-30 16:36:35
25839    15602    865    2015-07-19 06:42:58    2015-07-19 06:42:58
25840    16490    571    2016-01-30 08:54:14    2016-01-30 08:54:14
25841    14070    847    2015-10-22 14:38:57    2015-10-22 14:38:57
25842    11687    568    2016-01-21 08:00:50    2016-01-21 08:00:50
25843    19031    597    2015-09-07 11:26:20    2015-09-07 11:26:20
25844    12778    485    2016-02-14 00:28:59    2016-02-14 00:28:59
25845    13155    515    2016-04-01 23:26:36    2016-04-01 23:26:36
25846    19840    484    2015-07-12 08:13:19    2015-07-12 08:13:19
25847    13998    678    2016-04-06 05:25:23    2016-04-06 05:25:23
25848    13428    941    2015-08-29 16:32:54    2015-08-29 16:32:54
25849    18883    537    2016-03-09 06:47:21    2016-03-09 06:47:21
25850    19450    502    2015-04-26 01:07:55    2015-04-26 01:07:55
25851    17013    536    2015-08-23 06:05:13    2015-08-23 06:05:13
25852    19649    593    2015-11-14 22:31:01    2015-11-14 22:31:01
25853    17626    549    2015-09-18 12:03:22    2015-09-18 12:03:22
25854    14641    677    2015-06-04 23:01:36    2015-06-04 23:01:36
25855    13890    749    2015-12-12 22:36:45    2015-12-12 22:36:45
25856    15340    742    2015-08-17 12:58:26    2015-08-17 12:58:26
25857    13734    524    2016-02-27 12:57:56    2016-02-27 12:57:56
25858    14421    480    2016-03-06 17:49:25    2016-03-06 17:49:25
25859    10113    681    2016-04-05 02:31:48    2016-04-05 02:31:48
25860    13479    669    2015-10-13 14:54:13    2015-10-13 14:54:13
25861    19155    632    2016-03-25 04:34:02    2016-03-25 04:34:02
25862    18849    555    2015-07-06 12:54:05    2015-07-06 12:54:05
25863    11160    835    2015-10-26 00:37:04    2015-10-26 00:37:04
25864    12079    480    2015-08-19 07:01:33    2015-08-19 07:01:33
25865    13476    466    2015-06-29 07:46:40    2015-06-29 07:46:40
25866    10669    812    2015-06-11 05:45:58    2015-06-11 05:45:58
25867    10165    675    2015-07-19 22:53:49    2015-07-19 22:53:49
25868    19017    721    2015-09-09 09:48:52    2015-09-09 09:48:52
25869    18161    688    2015-07-15 22:04:03    2015-07-15 22:04:03
25870    19084    857    2015-07-26 01:49:27    2015-07-26 01:49:27
25871    11633    567    2015-09-02 04:55:00    2015-09-02 04:55:00
25872    17825    900    2016-02-22 11:45:24    2016-02-22 11:45:24
25873    15850    758    2015-07-05 13:33:06    2015-07-05 13:33:06
25874    12275    881    2016-02-10 16:25:23    2016-02-10 16:25:23
25875    18612    820    2016-04-17 02:34:15    2016-04-17 02:34:15
25876    18211    581    2015-08-19 22:16:23    2015-08-19 22:16:23
25877    10939    539    2015-10-07 21:10:12    2015-10-07 21:10:12
25878    10586    604    2015-10-01 08:42:05    2015-10-01 08:42:05
25879    17454    924    2015-05-27 18:44:55    2015-05-27 18:44:55
25880    16520    675    2015-09-23 09:14:05    2015-09-23 09:14:05
25881    14058    650    2015-05-31 16:21:06    2015-05-31 16:21:06
25882    11832    876    2015-09-27 12:49:16    2015-09-27 12:49:16
25883    18721    597    2016-02-29 13:42:43    2016-02-29 13:42:43
25884    15145    763    2015-08-19 16:50:14    2015-08-19 16:50:14
25885    12977    883    2015-11-18 22:26:31    2015-11-18 22:26:31
25886    14370    680    2016-04-01 14:36:45    2016-04-01 14:36:45
25887    18818    763    2015-09-15 02:04:51    2015-09-15 02:04:51
25888    18331    741    2015-11-21 08:38:12    2015-11-21 08:38:12
25889    12030    872    2016-04-15 17:53:47    2016-04-15 17:53:47
25890    18518    518    2015-08-09 23:54:40    2015-08-09 23:54:40
25891    16282    954    2016-02-21 18:17:32    2016-02-21 18:17:32
25892    16259    514    2016-03-29 04:11:44    2016-03-29 04:11:44
25893    12016    610    2016-03-01 09:22:14    2016-03-01 09:22:14
25894    18579    884    2015-09-25 16:07:57    2015-09-25 16:07:57
25895    15584    513    2016-04-05 18:29:03    2016-04-05 18:29:03
25896    17283    650    2016-03-30 09:00:13    2016-03-30 09:00:13
25897    13039    542    2015-06-02 17:55:33    2015-06-02 17:55:33
25898    18790    614    2015-12-26 23:20:09    2015-12-26 23:20:09
25899    14125    842    2016-01-27 14:23:01    2016-01-27 14:23:01
25900    12544    824    2015-06-20 05:35:40    2015-06-20 05:35:40
25901    18089    784    2015-07-29 18:19:37    2015-07-29 18:19:37
25902    17510    517    2015-10-17 14:31:00    2015-10-17 14:31:00
25903    13938    790    2015-06-04 11:27:22    2015-06-04 11:27:22
25904    12626    703    2015-12-22 09:28:25    2015-12-22 09:28:25
25905    10011    914    2015-11-26 01:30:03    2015-11-26 01:30:03
25906    13886    819    2016-01-13 01:12:19    2016-01-13 01:12:19
25907    12199    667    2016-01-07 21:28:10    2016-01-07 21:28:10
25908    12790    779    2016-04-09 14:24:58    2016-04-09 14:24:58
25909    14509    945    2015-09-17 01:10:38    2015-09-17 01:10:38
25910    10619    943    2016-03-30 14:45:41    2016-03-30 14:45:41
25911    19585    813    2015-07-26 08:57:52    2015-07-26 08:57:52
25912    16936    804    2016-04-14 00:25:51    2016-04-14 00:25:51
25913    12752    692    2015-06-12 04:25:56    2015-06-12 04:25:56
25914    15234    680    2016-04-01 10:32:25    2016-04-01 10:32:25
25915    11371    961    2015-12-03 07:40:26    2015-12-03 07:40:26
25916    16660    747    2016-01-30 20:33:46    2016-01-30 20:33:46
25917    16629    621    2015-08-04 03:42:00    2015-08-04 03:42:00
25918    13541    470    2016-03-14 00:28:03    2016-03-14 00:28:03
25919    14512    729    2016-01-31 02:46:11    2016-01-31 02:46:11
25920    13754    747    2015-09-03 17:21:33    2015-09-03 17:21:33
25921    15691    854    2015-07-03 14:18:04    2015-07-03 14:18:04
25922    15216    578    2015-05-13 13:46:01    2015-05-13 13:46:01
25923    17687    512    2015-05-14 07:50:41    2015-05-14 07:50:41
25924    19415    880    2016-04-18 17:51:45    2016-04-18 17:51:45
25925    19016    660    2015-08-10 10:40:01    2015-08-10 10:40:01
25926    10648    941    2015-07-17 14:04:37    2015-07-17 14:04:37
25927    17897    582    2015-08-22 16:05:06    2015-08-22 16:05:06
25928    14642    645    2015-09-25 17:37:55    2015-09-25 17:37:55
25929    17232    674    2015-07-03 00:09:16    2015-07-03 00:09:16
25930    18269    825    2015-08-01 02:38:40    2015-08-01 02:38:40
25931    18188    957    2015-12-12 23:45:52    2015-12-12 23:45:52
25932    14474    878    2015-11-14 22:14:35    2015-11-14 22:14:35
25933    15726    583    2015-10-10 13:24:43    2015-10-10 13:24:43
25934    19328    541    2015-06-13 13:54:03    2015-06-13 13:54:03
25935    10146    743    2016-03-19 02:28:51    2016-03-19 02:28:51
25936    14298    942    2015-05-25 13:01:35    2015-05-25 13:01:35
25937    16925    686    2015-07-14 16:57:02    2015-07-14 16:57:02
25938    15495    957    2015-05-22 02:24:47    2015-05-22 02:24:47
25939    13248    893    2015-08-01 18:37:07    2015-08-01 18:37:07
25940    17233    866    2015-07-14 02:51:21    2015-07-14 02:51:21
25941    10670    715    2015-12-06 10:13:56    2015-12-06 10:13:56
25942    18141    840    2015-10-18 13:24:08    2015-10-18 13:24:08
25943    11845    948    2015-09-28 13:50:11    2015-09-28 13:50:11
25944    19516    566    2015-09-27 11:24:52    2015-09-27 11:24:52
25945    16092    874    2015-08-08 07:18:19    2015-08-08 07:18:19
25946    14241    517    2015-12-01 08:26:23    2015-12-01 08:26:23
25947    12340    697    2015-12-23 16:25:34    2015-12-23 16:25:34
25948    19493    657    2016-03-14 04:02:43    2016-03-14 04:02:43
25949    18658    767    2016-01-13 04:08:14    2016-01-13 04:08:14
25950    11912    619    2015-09-23 11:17:23    2015-09-23 11:17:23
25951    10067    465    2016-03-25 09:51:20    2016-03-25 09:51:20
25952    15861    602    2016-02-25 23:00:45    2016-02-25 23:00:45
25953    16471    752    2015-10-10 10:29:07    2015-10-10 10:29:07
25954    14612    918    2016-03-30 16:07:56    2016-03-30 16:07:56
25955    11904    618    2016-02-14 16:44:35    2016-02-14 16:44:35
25956    15138    847    2015-10-02 05:08:56    2015-10-02 05:08:56
25957    17819    611    2015-05-30 12:36:00    2015-05-30 12:36:00
25958    13136    646    2015-07-04 11:27:35    2015-07-04 11:27:35
25959    12389    525    2016-03-11 05:33:05    2016-03-11 05:33:05
25960    16718    774    2016-01-27 06:21:03    2016-01-27 06:21:03
25961    16961    601    2015-08-21 01:59:06    2015-08-21 01:59:06
25962    18711    559    2015-10-19 13:11:37    2015-10-19 13:11:37
25963    19817    688    2015-05-19 08:39:03    2015-05-19 08:39:03
25964    17678    581    2015-11-28 12:10:03    2015-11-28 12:10:03
25965    17246    913    2016-02-19 10:19:46    2016-02-19 10:19:46
25966    13114    804    2015-04-24 09:15:31    2015-04-24 09:15:31
25967    10518    595    2016-04-05 16:32:54    2016-04-05 16:32:54
25968    10953    595    2015-09-18 05:33:55    2015-09-18 05:33:55
25969    13732    852    2016-04-11 08:54:34    2016-04-11 08:54:34
25970    19112    795    2015-11-11 18:23:31    2015-11-11 18:23:31
25971    15857    543    2016-03-03 04:55:23    2016-03-03 04:55:23
25972    15268    643    2015-10-17 18:24:35    2015-10-17 18:24:35
25973    13097    671    2015-07-13 03:01:01    2015-07-13 03:01:01
25974    10588    681    2016-02-15 06:32:48    2016-02-15 06:32:48
25975    14316    858    2015-08-14 15:54:45    2015-08-14 15:54:45
25976    13823    561    2016-04-10 19:58:16    2016-04-10 19:58:16
25977    10786    756    2016-01-21 06:19:39    2016-01-21 06:19:39
25978    13587    554    2016-03-31 11:40:44    2016-03-31 11:40:44
25979    16862    807    2015-11-11 12:31:44    2015-11-11 12:31:44
25980    16194    870    2015-06-11 23:40:15    2015-06-11 23:40:15
25981    16093    516    2015-08-22 06:18:35    2015-08-22 06:18:35
25982    12395    661    2016-02-29 12:21:09    2016-02-29 12:21:09
25983    11951    869    2015-09-03 09:24:01    2015-09-03 09:24:01
25984    16430    926    2015-05-12 08:04:03    2015-05-12 08:04:03
25985    18156    936    2015-08-09 01:50:12    2015-08-09 01:50:12
25986    10825    610    2015-07-15 08:14:50    2015-07-15 08:14:50
25987    12786    591    2015-07-02 01:20:33    2015-07-02 01:20:33
25988    11823    784    2016-03-02 01:17:55    2016-03-02 01:17:55
25989    19861    850    2015-08-08 04:15:16    2015-08-08 04:15:16
25990    11777    582    2016-01-12 21:20:05    2016-01-12 21:20:05
25991    17912    553    2015-09-09 07:17:37    2015-09-09 07:17:37
25992    18760    669    2015-10-21 11:21:58    2015-10-21 11:21:58
25993    12082    596    2015-12-27 06:13:41    2015-12-27 06:13:41
25994    16539    958    2016-03-22 17:04:34    2016-03-22 17:04:34
25995    12072    570    2015-07-10 16:08:43    2015-07-10 16:08:43
25996    19120    836    2015-04-22 01:20:54    2015-04-22 01:20:54
25997    16992    863    2016-03-27 02:04:19    2016-03-27 02:04:19
25998    18575    609    2015-10-12 23:17:11    2015-10-12 23:17:11
25999    14228    682    2015-05-28 10:16:09    2015-05-28 10:16:09
26000    15799    502    2015-08-25 00:26:37    2015-08-25 00:26:37
26001    14338    932    2015-11-11 18:49:42    2015-11-11 18:49:42
26002    15218    947    2015-12-22 15:40:39    2015-12-22 15:40:39
26003    18487    737    2015-11-06 17:13:11    2015-11-06 17:13:11
26004    11354    639    2015-10-20 21:39:26    2015-10-20 21:39:26
26005    17419    719    2015-10-05 10:15:14    2015-10-05 10:15:14
26006    14549    622    2015-05-27 08:01:06    2015-05-27 08:01:06
26007    11023    478    2015-06-05 15:31:01    2015-06-05 15:31:01
26008    15132    699    2015-12-18 00:51:28    2015-12-18 00:51:28
26009    17258    887    2015-09-06 02:41:08    2015-09-06 02:41:08
26010    18997    757    2015-12-07 06:23:15    2015-12-07 06:23:15
26011    10993    805    2015-05-16 08:17:02    2015-05-16 08:17:02
26012    19397    950    2016-01-27 00:29:17    2016-01-27 00:29:17
26013    19275    714    2015-12-19 20:10:48    2015-12-19 20:10:48
26014    17173    742    2015-11-19 02:37:26    2015-11-19 02:37:26
26015    11864    893    2016-03-29 15:20:21    2016-03-29 15:20:21
26016    12942    587    2015-06-12 10:45:43    2015-06-12 10:45:43
26017    18582    816    2015-11-29 19:15:18    2015-11-29 19:15:18
26018    14212    714    2015-09-18 09:11:27    2015-09-18 09:11:27
26019    18637    618    2015-06-09 23:48:49    2015-06-09 23:48:49
26020    12448    805    2015-10-16 19:03:36    2015-10-16 19:03:36
26021    16695    780    2015-10-17 21:42:05    2015-10-17 21:42:05
26022    19205    647    2015-06-29 12:05:34    2015-06-29 12:05:34
26023    13134    750    2016-03-03 04:57:00    2016-03-03 04:57:00
26024    14159    598    2015-10-21 15:24:36    2015-10-21 15:24:36
26025    18291    848    2015-07-26 04:59:35    2015-07-26 04:59:35
26026    13195    711    2016-03-06 15:53:16    2016-03-06 15:53:16
26027    11391    538    2015-12-29 13:28:13    2015-12-29 13:28:13
26028    19366    638    2015-06-01 20:10:35    2015-06-01 20:10:35
26029    11726    623    2015-10-29 01:02:29    2015-10-29 01:02:29
26030    15090    912    2016-03-03 21:09:52    2016-03-03 21:09:52
26031    16203    532    2015-05-18 22:36:42    2015-05-18 22:36:42
26032    11785    918    2015-12-18 13:05:42    2015-12-18 13:05:42
26033    16387    833    2015-09-16 13:49:20    2015-09-16 13:49:20
26034    15440    665    2016-03-17 06:43:07    2016-03-17 06:43:07
26035    11811    922    2015-05-28 18:14:33    2015-05-28 18:14:33
26036    16914    694    2015-07-17 04:27:50    2015-07-17 04:27:50
26037    14684    761    2015-06-06 19:59:32    2015-06-06 19:59:32
26038    13030    782    2015-05-09 17:23:47    2015-05-09 17:23:47
26039    13600    880    2015-09-12 14:13:35    2015-09-12 14:13:35
26040    10300    788    2015-12-24 19:53:09    2015-12-24 19:53:09
26041    16272    825    2015-07-05 00:55:14    2015-07-05 00:55:14
26042    12413    812    2015-12-29 11:30:39    2015-12-29 11:30:39
26043    15878    562    2016-01-01 11:17:57    2016-01-01 11:17:57
26044    17186    952    2015-07-02 05:50:58    2015-07-02 05:50:58
26045    18726    717    2015-09-24 12:33:38    2015-09-24 12:33:38
26046    19925    950    2015-05-28 22:23:38    2015-05-28 22:23:38
26047    16564    833    2016-01-21 03:52:08    2016-01-21 03:52:08
26048    19937    723    2015-06-09 05:12:50    2015-06-09 05:12:50
26049    13092    659    2015-05-10 07:13:03    2015-05-10 07:13:03
26050    16983    756    2015-06-04 10:49:37    2015-06-04 10:49:37
26051    13908    739    2016-01-11 08:29:33    2016-01-11 08:29:33
26052    14175    837    2015-12-04 04:45:56    2015-12-04 04:45:56
26053    14243    857    2015-10-09 07:12:34    2015-10-09 07:12:34
26054    18128    671    2015-11-14 22:00:42    2015-11-14 22:00:42
26055    10272    524    2015-09-10 23:51:46    2015-09-10 23:51:46
26056    15009    465    2015-09-16 11:11:14    2015-09-16 11:11:14
26057    16192    511    2016-02-16 23:48:29    2016-02-16 23:48:29
26058    14781    698    2015-06-17 04:02:46    2015-06-17 04:02:46
26059    19715    587    2015-05-03 07:27:13    2015-05-03 07:27:13
26060    13879    778    2015-04-22 19:10:21    2015-04-22 19:10:21
26061    16795    908    2016-02-04 15:12:27    2016-02-04 15:12:27
26062    14294    613    2016-04-10 12:14:27    2016-04-10 12:14:27
26063    15821    671    2015-07-31 22:52:44    2015-07-31 22:52:44
26064    14004    586    2015-07-04 05:00:58    2015-07-04 05:00:58
26065    16648    840    2015-06-18 19:11:53    2015-06-18 19:11:53
26066    12254    669    2015-08-06 10:13:19    2015-08-06 10:13:19
26067    18139    586    2015-04-24 03:27:56    2015-04-24 03:27:56
26068    19303    650    2016-03-08 23:50:13    2016-03-08 23:50:13
26069    17860    619    2016-02-15 21:24:56    2016-02-15 21:24:56
26070    11653    671    2015-11-08 17:01:27    2015-11-08 17:01:27
26071    16570    793    2015-11-12 20:27:39    2015-11-12 20:27:39
26072    19523    614    2015-07-11 20:09:04    2015-07-11 20:09:04
26073    13759    774    2015-07-22 21:52:48    2015-07-22 21:52:48
26074    18073    896    2015-09-05 13:28:17    2015-09-05 13:28:17
26075    12668    525    2016-01-05 11:07:53    2016-01-05 11:07:53
26076    12773    579    2015-11-18 23:45:12    2015-11-18 23:45:12
26077    16514    503    2015-08-10 05:47:00    2015-08-10 05:47:00
26078    12426    528    2015-08-08 23:15:54    2015-08-08 23:15:54
26079    18300    840    2015-04-25 09:44:12    2015-04-25 09:44:12
26080    19547    738    2015-12-17 11:11:45    2015-12-17 11:11:45
26081    11511    491    2016-04-10 07:11:24    2016-04-10 07:11:24
26082    13917    654    2016-02-04 19:53:35    2016-02-04 19:53:35
26083    11997    848    2016-02-17 19:19:35    2016-02-17 19:19:35
26084    19061    671    2015-12-01 03:14:59    2015-12-01 03:14:59
26085    12556    579    2016-01-15 15:09:23    2016-01-15 15:09:23
26086    13561    848    2015-10-24 12:37:23    2015-10-24 12:37:23
26087    18865    556    2015-10-19 22:50:11    2015-10-19 22:50:11
26088    14026    891    2015-05-20 10:10:03    2015-05-20 10:10:03
26089    17656    576    2016-02-19 02:38:48    2016-02-19 02:38:48
26090    15119    782    2015-09-13 02:35:33    2015-09-13 02:35:33
26091    16163    573    2015-04-26 02:37:10    2015-04-26 02:37:10
26092    19223    923    2015-07-04 14:25:35    2015-07-04 14:25:35
26093    17956    775    2015-12-15 05:18:19    2015-12-15 05:18:19
26094    13675    891    2015-07-24 22:16:45    2015-07-24 22:16:45
26095    15639    874    2015-12-05 23:33:35    2015-12-05 23:33:35
26096    14764    874    2015-08-31 02:15:44    2015-08-31 02:15:44
26097    14341    788    2016-01-13 21:44:48    2016-01-13 21:44:48
26098    16113    497    2016-03-01 03:31:50    2016-03-01 03:31:50
26099    17495    604    2016-03-16 13:08:42    2016-03-16 13:08:42
26100    14072    779    2015-06-10 18:45:21    2015-06-10 18:45:21
26101    10761    754    2016-01-18 11:33:26    2016-01-18 11:33:26
26102    19438    605    2016-02-25 03:25:10    2016-02-25 03:25:10
26103    14774    805    2015-11-17 21:34:23    2015-11-17 21:34:23
26104    14957    680    2015-12-09 22:44:47    2015-12-09 22:44:47
26105    12469    805    2015-09-23 14:38:00    2015-09-23 14:38:00
26106    12767    960    2015-07-29 03:00:51    2015-07-29 03:00:51
26107    18147    826    2015-08-29 05:07:44    2015-08-29 05:07:44
26108    13147    758    2016-02-08 06:04:49    2016-02-08 06:04:49
26109    17068    942    2015-12-24 02:52:12    2015-12-24 02:52:12
26110    14613    666    2015-05-28 03:11:57    2015-05-28 03:11:57
26111    18405    535    2015-10-16 14:50:50    2015-10-16 14:50:50
26112    13540    892    2015-09-13 13:59:45    2015-09-13 13:59:45
26113    18791    463    2015-12-17 07:19:07    2015-12-17 07:19:07
26114    16011    500    2016-03-23 00:01:32    2016-03-23 00:01:32
26115    10406    807    2016-03-15 12:38:38    2016-03-15 12:38:38
26116    17143    642    2016-04-03 09:58:09    2016-04-03 09:58:09
26117    11060    816    2015-09-18 11:38:17    2015-09-18 11:38:17
26118    10212    651    2015-12-04 16:27:07    2015-12-04 16:27:07
26119    13288    534    2016-01-24 14:10:47    2016-01-24 14:10:47
26120    16209    721    2015-12-15 11:00:03    2015-12-15 11:00:03
26121    10452    720    2015-05-25 03:23:05    2015-05-25 03:23:05
26122    16589    716    2015-12-10 14:09:18    2015-12-10 14:09:18
26123    15121    519    2015-09-24 16:18:23    2015-09-24 16:18:23
26124    11378    619    2016-01-23 23:16:42    2016-01-23 23:16:42
26125    17354    914    2015-08-31 22:42:53    2015-08-31 22:42:53
26126    19837    587    2015-10-13 13:08:36    2015-10-13 13:08:36
26127    19448    888    2016-01-07 02:17:59    2016-01-07 02:17:59
26128    11883    514    2015-11-09 08:56:59    2015-11-09 08:56:59
26129    14268    715    2015-04-29 16:42:26    2015-04-29 16:42:26
26130    14892    762    2015-07-06 04:04:54    2015-07-06 04:04:54
26131    11971    771    2015-07-03 02:44:58    2015-07-03 02:44:58
26132    16549    482    2015-09-19 07:50:54    2015-09-19 07:50:54
26133    13461    734    2015-10-26 10:46:49    2015-10-26 10:46:49
26134    19363    565    2015-05-22 00:01:06    2015-05-22 00:01:06
26135    10310    494    2016-02-15 14:26:16    2016-02-15 14:26:16
26136    18611    463    2015-10-23 13:30:55    2015-10-23 13:30:55
26137    10008    471    2016-03-21 21:08:02    2016-03-21 21:08:02
26138    15040    601    2016-03-20 00:56:28    2016-03-20 00:56:28
26139    14745    684    2015-05-12 08:26:18    2015-05-12 08:26:18
26140    14213    608    2015-06-06 01:47:35    2015-06-06 01:47:35
26141    14551    486    2015-07-11 00:59:21    2015-07-11 00:59:21
26142    19900    500    2015-08-02 00:56:05    2015-08-02 00:56:05
26143    13143    701    2015-05-05 22:37:55    2015-05-05 22:37:55
26144    10468    729    2016-01-13 09:48:16    2016-01-13 09:48:16
26145    18522    940    2015-08-05 05:52:33    2015-08-05 05:52:33
26146    18414    571    2015-09-11 13:57:38    2015-09-11 13:57:38
26147    13880    783    2015-07-30 00:27:03    2015-07-30 00:27:03
26148    16096    559    2016-03-09 16:34:13    2016-03-09 16:34:13
26149    17399    868    2016-03-03 17:02:02    2016-03-03 17:02:02
26150    16716    913    2015-10-10 15:10:51    2015-10-10 15:10:51
26151    17472    616    2015-08-08 11:34:38    2015-08-08 11:34:38
26152    10178    562    2015-07-04 16:51:44    2015-07-04 16:51:44
26153    16151    869    2015-05-08 20:09:45    2015-05-08 20:09:45
26154    10449    538    2016-03-22 17:34:59    2016-03-22 17:34:59
26155    19366    927    2015-11-12 20:01:16    2015-11-12 20:01:16
26156    13567    511    2015-08-06 23:40:53    2015-08-06 23:40:53
26157    13651    937    2016-02-10 12:05:02    2016-02-10 12:05:02
26158    11980    479    2015-12-30 17:37:58    2015-12-30 17:37:58
26159    11629    897    2015-08-19 17:27:17    2015-08-19 17:27:17
26160    16530    615    2015-11-26 00:16:47    2015-11-26 00:16:47
26161    16610    534    2015-12-01 19:56:37    2015-12-01 19:56:37
26162    12248    611    2016-03-31 00:27:34    2016-03-31 00:27:34
26163    16915    920    2016-02-04 11:42:33    2016-02-04 11:42:33
26164    13954    642    2016-04-15 09:22:03    2016-04-15 09:22:03
26165    19716    884    2015-12-05 23:28:15    2015-12-05 23:28:15
26166    11008    762    2016-02-23 11:15:10    2016-02-23 11:15:10
26167    12102    586    2015-06-14 06:05:18    2015-06-14 06:05:18
26168    15148    726    2015-08-08 23:57:28    2015-08-08 23:57:28
26169    17554    553    2016-04-02 19:29:46    2016-04-02 19:29:46
26170    11390    644    2015-11-01 11:53:58    2015-11-01 11:53:58
26171    14003    631    2015-12-29 02:44:59    2015-12-29 02:44:59
26172    16068    805    2015-12-09 13:07:44    2015-12-09 13:07:44
26173    13298    734    2015-10-11 00:27:43    2015-10-11 00:27:43
26174    17946    886    2015-08-18 10:36:21    2015-08-18 10:36:21
26175    18542    912    2015-06-07 15:44:58    2015-06-07 15:44:58
26176    10360    874    2015-10-21 21:19:47    2015-10-21 21:19:47
26177    17905    619    2016-03-26 04:51:27    2016-03-26 04:51:27
26178    13105    960    2015-12-21 15:38:24    2015-12-21 15:38:24
26179    19347    752    2016-04-01 21:16:46    2016-04-01 21:16:46
26180    10989    868    2016-02-04 13:01:38    2016-02-04 13:01:38
26181    15640    703    2016-04-07 14:58:29    2016-04-07 14:58:29
26182    18889    685    2016-02-24 16:36:44    2016-02-24 16:36:44
26183    15038    704    2015-04-22 00:27:40    2015-04-22 00:27:40
26184    13541    489    2016-01-05 17:47:40    2016-01-05 17:47:40
26185    11121    930    2015-05-02 15:38:03    2015-05-02 15:38:03
26186    18381    714    2015-10-13 08:48:47    2015-10-13 08:48:47
26187    13096    520    2016-04-12 04:21:25    2016-04-12 04:21:25
26188    17364    505    2016-02-12 01:10:06    2016-02-12 01:10:06
26189    13855    522    2015-06-22 18:54:35    2015-06-22 18:54:35
26190    14820    747    2015-07-24 09:56:19    2015-07-24 09:56:19
26191    16213    889    2015-04-26 14:44:41    2015-04-26 14:44:41
26192    11821    552    2015-08-24 19:01:30    2015-08-24 19:01:30
26193    12961    583    2015-11-30 00:20:12    2015-11-30 00:20:12
26194    15652    902    2015-09-22 07:28:44    2015-09-22 07:28:44
26195    18403    893    2015-09-26 22:00:49    2015-09-26 22:00:49
26196    15535    766    2015-09-16 03:48:00    2015-09-16 03:48:00
26197    15705    888    2016-03-01 09:12:56    2016-03-01 09:12:56
26198    13722    648    2016-01-28 03:02:30    2016-01-28 03:02:30
26199    12707    478    2016-03-27 10:34:31    2016-03-27 10:34:31
26200    19552    961    2015-09-11 00:37:11    2015-09-11 00:37:11
26201    14882    666    2015-08-30 22:46:12    2015-08-30 22:46:12
26202    11948    762    2015-12-16 13:27:30    2015-12-16 13:27:30
26203    10008    782    2016-02-27 05:59:48    2016-02-27 05:59:48
26204    10920    578    2016-01-08 17:45:40    2016-01-08 17:45:40
26205    10258    699    2015-06-29 01:55:58    2015-06-29 01:55:58
26206    18561    814    2016-02-05 21:36:36    2016-02-05 21:36:36
26207    10531    851    2016-04-20 17:59:52    2016-04-20 17:59:52
26208    10301    595    2015-11-03 07:21:56    2015-11-03 07:21:56
26209    14615    599    2015-09-25 18:18:38    2015-09-25 18:18:38
26210    10454    494    2015-12-21 16:41:01    2015-12-21 16:41:01
26211    18728    811    2015-11-30 14:08:00    2015-11-30 14:08:00
26212    19646    532    2015-06-13 07:07:48    2015-06-13 07:07:48
26213    10522    695    2016-04-19 17:46:24    2016-04-19 17:46:24
26214    15018    954    2016-02-07 23:02:32    2016-02-07 23:02:32
26215    17037    641    2015-07-28 07:49:04    2015-07-28 07:49:04
26216    14949    653    2016-04-14 21:39:13    2016-04-14 21:39:13
26217    13231    952    2015-09-11 02:02:41    2015-09-11 02:02:41
26218    13274    907    2015-05-11 17:41:47    2015-05-11 17:41:47
26219    12685    707    2015-08-16 07:42:35    2015-08-16 07:42:35
26220    15332    831    2016-02-03 18:55:27    2016-02-03 18:55:27
26221    18096    809    2015-10-26 12:13:32    2015-10-26 12:13:32
26222    12850    899    2015-08-24 18:16:32    2015-08-24 18:16:32
26223    11093    505    2015-12-03 07:23:05    2015-12-03 07:23:05
26224    19237    508    2016-01-27 17:32:07    2016-01-27 17:32:07
26225    11435    598    2016-01-13 09:56:50    2016-01-13 09:56:50
26226    13232    843    2015-11-29 05:36:08    2015-11-29 05:36:08
26227    14330    548    2016-03-30 04:01:25    2016-03-30 04:01:25
26228    12758    527    2015-07-20 23:36:29    2015-07-20 23:36:29
26229    13574    611    2016-01-06 06:52:39    2016-01-06 06:52:39
26230    13325    869    2015-10-30 01:06:11    2015-10-30 01:06:11
26231    12935    931    2016-01-23 11:09:06    2016-01-23 11:09:06
26232    17559    474    2016-03-31 03:48:44    2016-03-31 03:48:44
26233    15390    701    2015-08-20 05:49:28    2015-08-20 05:49:28
26234    15865    813    2016-03-02 03:43:21    2016-03-02 03:43:21
26235    11513    578    2015-06-02 10:26:11    2015-06-02 10:26:11
26236    13257    659    2016-02-10 03:53:29    2016-02-10 03:53:29
26237    16446    601    2015-04-24 08:04:17    2015-04-24 08:04:17
26238    12240    537    2015-10-08 11:22:11    2015-10-08 11:22:11
26239    15449    932    2015-07-31 17:51:24    2015-07-31 17:51:24
26240    19664    607    2015-07-10 06:43:32    2015-07-10 06:43:32
26241    12962    882    2015-12-03 01:44:00    2015-12-03 01:44:00
26242    11271    818    2015-09-19 07:51:32    2015-09-19 07:51:32
26243    15843    662    2016-01-16 16:23:40    2016-01-16 16:23:40
26244    18404    628    2015-04-22 08:25:53    2015-04-22 08:25:53
26245    12849    643    2015-05-05 21:10:43    2015-05-05 21:10:43
26246    17200    876    2015-10-21 15:43:41    2015-10-21 15:43:41
26247    10449    749    2015-12-11 06:22:01    2015-12-11 06:22:01
26248    12973    577    2016-03-02 06:20:08    2016-03-02 06:20:08
26249    17551    946    2016-04-19 16:51:06    2016-04-19 16:51:06
26250    12880    901    2016-03-10 03:34:18    2016-03-10 03:34:18
26251    16818    658    2015-09-28 16:32:28    2015-09-28 16:32:28
26252    19998    953    2015-09-28 22:32:49    2015-09-28 22:32:49
26253    18641    758    2016-02-18 11:06:46    2016-02-18 11:06:46
26254    11115    476    2015-05-10 07:01:59    2015-05-10 07:01:59
26255    17765    582    2015-12-15 03:23:35    2015-12-15 03:23:35
26256    14681    854    2016-03-20 02:51:03    2016-03-20 02:51:03
26257    16674    927    2015-05-13 19:54:55    2015-05-13 19:54:55
26258    18340    508    2015-09-19 06:13:37    2015-09-19 06:13:37
26259    16314    689    2015-08-24 02:20:51    2015-08-24 02:20:51
26260    17619    683    2015-10-22 05:46:48    2015-10-22 05:46:48
26261    14624    915    2015-06-17 01:45:06    2015-06-17 01:45:06
26262    11344    505    2015-12-08 06:53:59    2015-12-08 06:53:59
26263    16636    742    2016-01-27 08:18:32    2016-01-27 08:18:32
26264    12360    749    2016-04-11 15:52:57    2016-04-11 15:52:57
26265    13773    902    2015-09-13 06:23:02    2015-09-13 06:23:02
26266    10083    539    2015-12-05 11:59:24    2015-12-05 11:59:24
26267    19886    588    2016-01-22 19:41:57    2016-01-22 19:41:57
26268    18273    703    2015-06-15 21:05:12    2015-06-15 21:05:12
26269    15864    527    2015-05-23 09:58:29    2015-05-23 09:58:29
26270    12305    602    2015-10-02 00:53:02    2015-10-02 00:53:02
26271    16882    950    2015-12-12 00:10:27    2015-12-12 00:10:27
26272    12561    903    2015-06-13 18:19:24    2015-06-13 18:19:24
26273    10041    618    2015-10-20 12:29:21    2015-10-20 12:29:21
26274    18159    540    2015-05-24 09:24:22    2015-05-24 09:24:22
26275    18009    873    2015-06-11 13:43:36    2015-06-11 13:43:36
26276    15253    849    2016-04-15 06:17:56    2016-04-15 06:17:56
26277    18308    653    2015-04-23 14:06:08    2015-04-23 14:06:08
26278    17686    905    2016-02-09 07:54:49    2016-02-09 07:54:49
26279    13009    873    2015-11-16 17:05:00    2015-11-16 17:05:00
26280    18835    643    2015-08-21 04:33:03    2015-08-21 04:33:03
26281    10262    712    2015-06-19 11:16:36    2015-06-19 11:16:36
26282    17694    896    2016-01-24 09:56:03    2016-01-24 09:56:03
26283    13485    508    2015-05-17 06:08:22    2015-05-17 06:08:22
26284    15610    872    2016-02-23 15:33:37    2016-02-23 15:33:37
26285    12950    869    2016-02-27 08:20:31    2016-02-27 08:20:31
26286    12946    937    2015-06-17 14:22:53    2015-06-17 14:22:53
26287    14804    599    2015-10-19 14:28:20    2015-10-19 14:28:20
26288    14764    885    2016-03-03 06:32:21    2016-03-03 06:32:21
26289    18214    485    2015-09-27 10:17:34    2015-09-27 10:17:34
26290    15228    758    2016-03-08 17:45:10    2016-03-08 17:45:10
26291    14594    657    2016-01-02 15:22:54    2016-01-02 15:22:54
26292    16864    574    2015-10-10 23:46:50    2015-10-10 23:46:50
26293    13449    800    2016-01-14 06:49:01    2016-01-14 06:49:01
26294    19911    505    2015-04-27 18:49:18    2015-04-27 18:49:18
26295    13380    530    2015-07-15 23:44:00    2015-07-15 23:44:00
26296    16736    652    2015-08-10 13:00:54    2015-08-10 13:00:54
26297    13313    957    2015-07-05 07:12:29    2015-07-05 07:12:29
26298    17010    741    2015-11-18 23:03:16    2015-11-18 23:03:16
26299    13358    506    2015-08-27 22:39:17    2015-08-27 22:39:17
26300    15357    842    2015-11-07 18:35:59    2015-11-07 18:35:59
26301    18899    873    2016-03-24 21:02:34    2016-03-24 21:02:34
26302    14763    749    2015-04-23 00:17:27    2015-04-23 00:17:27
26303    13413    547    2015-05-04 18:59:14    2015-05-04 18:59:14
26304    17891    834    2015-06-30 18:23:19    2015-06-30 18:23:19
26305    16742    564    2015-11-04 02:33:12    2015-11-04 02:33:12
26306    11166    626    2016-01-06 15:24:22    2016-01-06 15:24:22
26307    17346    751    2015-12-05 03:37:00    2015-12-05 03:37:00
26308    14071    853    2015-10-16 05:48:00    2015-10-16 05:48:00
26309    10475    860    2015-08-19 12:52:35    2015-08-19 12:52:35
26310    19313    477    2016-04-10 11:18:55    2016-04-10 11:18:55
26311    10744    512    2015-06-30 11:16:33    2015-06-30 11:16:33
26312    18746    584    2015-12-26 08:14:51    2015-12-26 08:14:51
26313    17097    773    2015-06-01 07:29:00    2015-06-01 07:29:00
26314    13138    580    2015-09-22 01:31:31    2015-09-22 01:31:31
26315    14676    743    2015-09-07 20:14:35    2015-09-07 20:14:35
26316    13143    887    2015-08-15 20:17:49    2015-08-15 20:17:49
26317    13561    658    2015-11-06 14:58:46    2015-11-06 14:58:46
26318    14422    512    2015-05-30 22:23:11    2015-05-30 22:23:11
26319    18721    940    2015-12-16 22:35:17    2015-12-16 22:35:17
26320    18138    641    2016-03-17 15:54:19    2016-03-17 15:54:19
26321    14566    597    2015-12-10 08:05:17    2015-12-10 08:05:17
26322    14201    692    2015-06-09 18:54:44    2015-06-09 18:54:44
26323    18151    531    2015-07-12 16:10:46    2015-07-12 16:10:46
26324    13018    752    2016-01-27 21:56:13    2016-01-27 21:56:13
26325    17705    859    2015-06-03 03:38:02    2015-06-03 03:38:02
26326    18380    751    2015-11-12 15:23:57    2015-11-12 15:23:57
26327    18094    784    2016-04-17 21:16:13    2016-04-17 21:16:13
26328    17252    959    2015-10-28 08:22:34    2015-10-28 08:22:34
26329    14857    922    2015-09-01 11:51:22    2015-09-01 11:51:22
26330    15308    917    2016-02-03 06:02:19    2016-02-03 06:02:19
26331    16564    509    2015-06-23 22:33:15    2015-06-23 22:33:15
26332    16343    553    2016-03-15 23:26:44    2016-03-15 23:26:44
26333    11625    481    2015-06-05 08:09:18    2015-06-05 08:09:18
26334    15545    532    2015-12-23 05:05:42    2015-12-23 05:05:42
26335    10413    638    2016-01-28 03:20:10    2016-01-28 03:20:10
26336    13129    878    2015-06-05 16:39:27    2015-06-05 16:39:27
26337    16563    804    2015-11-03 12:10:14    2015-11-03 12:10:14
26338    12850    743    2015-09-10 11:03:11    2015-09-10 11:03:11
26339    19522    939    2015-08-20 10:39:28    2015-08-20 10:39:28
26340    15779    944    2015-08-26 08:56:15    2015-08-26 08:56:15
26341    14263    494    2015-08-07 10:07:28    2015-08-07 10:07:28
26342    13642    807    2016-01-23 11:02:53    2016-01-23 11:02:53
26343    17671    773    2016-01-27 12:57:10    2016-01-27 12:57:10
26344    10259    703    2015-10-03 14:54:48    2015-10-03 14:54:48
26345    16876    768    2015-11-26 17:12:16    2015-11-26 17:12:16
26346    11885    631    2015-08-01 13:26:14    2015-08-01 13:26:14
26347    14881    894    2016-03-13 18:40:22    2016-03-13 18:40:22
26348    13287    665    2016-02-25 15:02:23    2016-02-25 15:02:23
26349    14086    506    2015-12-09 23:45:44    2015-12-09 23:45:44
26350    14184    638    2015-09-05 22:21:29    2015-09-05 22:21:29
26351    12930    659    2015-06-26 11:49:02    2015-06-26 11:49:02
26352    16606    579    2015-07-09 01:23:04    2015-07-09 01:23:04
26353    13001    604    2015-06-30 04:08:25    2015-06-30 04:08:25
26354    14008    907    2016-03-24 16:13:17    2016-03-24 16:13:17
26355    18172    513    2015-12-20 06:53:34    2015-12-20 06:53:34
26356    13956    958    2015-08-27 16:33:24    2015-08-27 16:33:24
26357    14490    887    2016-02-21 07:21:45    2016-02-21 07:21:45
26358    10231    557    2016-01-29 17:33:50    2016-01-29 17:33:50
26359    12605    587    2015-04-27 14:11:26    2015-04-27 14:11:26
26360    10396    666    2016-03-22 21:58:39    2016-03-22 21:58:39
26361    12678    866    2015-08-09 16:17:51    2015-08-09 16:17:51
26362    15034    545    2016-02-04 11:41:31    2016-02-04 11:41:31
26363    13998    516    2015-11-27 12:49:39    2015-11-27 12:49:39
26364    17226    729    2016-01-25 19:36:42    2016-01-25 19:36:42
26365    15928    624    2015-12-19 06:21:12    2015-12-19 06:21:12
26366    11191    700    2015-09-11 00:41:11    2015-09-11 00:41:11
26367    10921    799    2016-03-30 01:43:51    2016-03-30 01:43:51
26368    13429    652    2015-12-02 06:28:26    2015-12-02 06:28:26
26369    18503    890    2015-09-20 15:20:47    2015-09-20 15:20:47
26370    13510    675    2015-09-19 20:32:26    2015-09-19 20:32:26
26371    11434    855    2015-05-24 08:00:15    2015-05-24 08:00:15
26372    19364    525    2016-03-14 22:00:17    2016-03-14 22:00:17
26373    11462    516    2015-07-10 09:53:41    2015-07-10 09:53:41
26374    19954    729    2015-11-09 04:38:08    2015-11-09 04:38:08
26375    18250    586    2015-05-19 13:17:15    2015-05-19 13:17:15
26376    16766    737    2015-09-10 05:45:24    2015-09-10 05:45:24
26377    14218    804    2015-06-10 12:23:37    2015-06-10 12:23:37
26378    16864    880    2016-03-05 12:55:53    2016-03-05 12:55:53
26379    14275    793    2015-07-16 11:54:40    2015-07-16 11:54:40
26380    12413    938    2015-11-24 09:23:43    2015-11-24 09:23:43
26381    17816    765    2015-05-22 11:13:25    2015-05-22 11:13:25
26382    15272    561    2016-01-14 19:06:04    2016-01-14 19:06:04
26383    11485    876    2016-01-09 07:45:55    2016-01-09 07:45:55
26384    11015    494    2015-08-29 07:25:21    2015-08-29 07:25:21
26385    12410    801    2016-04-18 16:02:00    2016-04-18 16:02:00
26386    17297    762    2015-11-22 22:06:32    2015-11-22 22:06:32
26387    19574    686    2015-10-11 01:50:15    2015-10-11 01:50:15
26388    17594    680    2015-08-13 07:41:03    2015-08-13 07:41:03
26389    14517    810    2015-08-19 11:42:06    2015-08-19 11:42:06
26390    16411    691    2015-08-08 20:02:59    2015-08-08 20:02:59
26391    10969    913    2015-10-26 16:59:42    2015-10-26 16:59:42
26392    16723    700    2015-06-03 22:14:23    2015-06-03 22:14:23
26393    13718    753    2016-03-06 04:39:24    2016-03-06 04:39:24
26394    18307    899    2015-10-08 20:31:37    2015-10-08 20:31:37
26395    16205    959    2015-10-13 23:09:31    2015-10-13 23:09:31
26396    10922    860    2015-05-30 08:39:51    2015-05-30 08:39:51
26397    15117    757    2016-02-29 13:42:01    2016-02-29 13:42:01
26398    18178    490    2016-04-13 13:23:56    2016-04-13 13:23:56
26399    18612    814    2016-02-07 18:30:40    2016-02-07 18:30:40
26400    17396    850    2016-04-16 17:31:34    2016-04-16 17:31:34
26401    11404    483    2016-02-24 22:30:27    2016-02-24 22:30:27
26402    12089    536    2016-04-08 00:53:58    2016-04-08 00:53:58
26403    13234    786    2016-02-21 00:03:34    2016-02-21 00:03:34
26404    15091    695    2016-02-17 10:13:33    2016-02-17 10:13:33
26405    18753    564    2016-03-11 23:20:49    2016-03-11 23:20:49
26406    14246    562    2016-03-08 09:09:23    2016-03-08 09:09:23
26407    15339    946    2016-03-21 10:02:09    2016-03-21 10:02:09
26408    16806    829    2016-03-13 05:02:36    2016-03-13 05:02:36
26409    13658    883    2016-04-10 10:39:55    2016-04-10 10:39:55
26410    10033    651    2016-03-11 07:52:50    2016-03-11 07:52:50
26411    12257    598    2016-02-14 13:10:48    2016-02-14 13:10:48
26412    19996    703    2016-04-17 12:56:29    2016-04-17 12:56:29
26413    11843    761    2016-02-22 17:07:58    2016-02-22 17:07:58
26414    13668    677    2016-04-07 14:33:48    2016-04-07 14:33:48
26415    18260    500    2016-02-20 02:11:14    2016-02-20 02:11:14
26416    19605    502    2016-01-31 02:55:13    2016-01-31 02:55:13
26417    16794    609    2016-02-06 14:01:16    2016-02-06 14:01:16
26418    17349    764    2016-01-31 19:07:57    2016-01-31 19:07:57
26419    13974    799    2016-03-19 10:12:36    2016-03-19 10:12:36
26420    16972    531    2016-02-23 08:21:41    2016-02-23 08:21:41
26421    13625    950    2016-04-02 07:04:46    2016-04-02 07:04:46
26422    19949    803    2016-03-31 23:16:34    2016-03-31 23:16:34
26423    16208    879    2016-04-04 01:21:16    2016-04-04 01:21:16
26424    13545    528    2016-02-07 02:07:51    2016-02-07 02:07:51
26425    16481    543    2016-01-25 13:08:23    2016-01-25 13:08:23
26426    10217    812    2016-01-23 10:50:09    2016-01-23 10:50:09
26427    13123    578    2016-02-04 08:22:22    2016-02-04 08:22:22
26428    15457    636    2016-03-09 06:40:53    2016-03-09 06:40:53
26429    15527    851    2016-03-28 22:30:19    2016-03-28 22:30:19
26430    13225    954    2016-02-18 04:05:20    2016-02-18 04:05:20
26431    16828    531    2016-02-29 16:30:10    2016-02-29 16:30:10
26432    15231    827    2016-01-22 10:51:09    2016-01-22 10:51:09
26433    10565    484    2016-02-26 13:22:28    2016-02-26 13:22:28
26434    18064    695    2016-02-10 02:35:29    2016-02-10 02:35:29
26435    13705    535    2016-03-21 03:26:22    2016-03-21 03:26:22
26436    16457    849    2016-01-23 00:05:40    2016-01-23 00:05:40
26437    14095    510    2016-04-01 15:25:34    2016-04-01 15:25:34
26438    19058    952    2016-04-13 20:50:26    2016-04-13 20:50:26
26439    13350    563    2016-02-20 20:03:27    2016-02-20 20:03:27
26440    19257    555    2016-03-12 11:33:02    2016-03-12 11:33:02
26441    10678    671    2016-03-07 20:56:54    2016-03-07 20:56:54
26442    18555    529    2016-04-01 23:19:17    2016-04-01 23:19:17
26443    13685    860    2016-02-15 15:46:25    2016-02-15 15:46:25
26444    15470    596    2016-01-28 05:03:53    2016-01-28 05:03:53
26445    19386    810    2016-02-04 19:09:23    2016-02-04 19:09:23
26446    14763    701    2016-04-16 18:58:32    2016-04-16 18:58:32
26447    19726    841    2016-02-09 07:48:36    2016-02-09 07:48:36
26448    15520    577    2016-02-27 10:22:08    2016-02-27 10:22:08
26449    18600    858    2016-02-17 05:39:25    2016-02-17 05:39:25
26450    18263    955    2016-03-11 06:25:26    2016-03-11 06:25:26
26451    10276    628    2016-02-13 12:44:18    2016-02-13 12:44:18
26452    16438    543    2016-03-31 20:17:16    2016-03-31 20:17:16
26453    10162    741    2016-03-10 15:59:18    2016-03-10 15:59:18
26454    15161    554    2016-03-22 07:49:14    2016-03-22 07:49:14
26455    11014    603    2016-03-14 06:36:59    2016-03-14 06:36:59
26456    18722    904    2016-04-18 21:38:02    2016-04-18 21:38:02
26457    13196    505    2016-03-31 20:04:18    2016-03-31 20:04:18
26458    11911    517    2016-02-22 09:56:32    2016-02-22 09:56:32
26459    19297    561    2016-01-31 03:12:23    2016-01-31 03:12:23
26460    18838    634    2016-03-28 22:51:55    2016-03-28 22:51:55
26461    14921    950    2016-03-11 11:35:24    2016-03-11 11:35:24
26462    18142    785    2016-02-14 18:23:58    2016-02-14 18:23:58
26463    15993    645    2016-03-12 10:10:19    2016-03-12 10:10:19
26464    18005    954    2016-02-23 12:36:58    2016-02-23 12:36:58
26465    16505    819    2016-03-14 03:45:58    2016-03-14 03:45:58
26466    19453    920    2016-03-22 17:05:15    2016-03-22 17:05:15
26467    14320    891    2016-03-15 10:09:39    2016-03-15 10:09:39
26468    11800    926    2016-04-03 08:14:18    2016-04-03 08:14:18
26469    13625    937    2016-04-12 00:36:46    2016-04-12 00:36:46
26470    18592    769    2016-02-15 12:12:35    2016-02-15 12:12:35
26471    10488    914    2016-03-02 16:51:27    2016-03-02 16:51:27
26472    10835    891    2016-02-18 09:40:15    2016-02-18 09:40:15
26473    10404    571    2016-01-27 00:52:34    2016-01-27 00:52:34
26474    19040    923    2016-02-14 02:55:23    2016-02-14 02:55:23
26475    17440    698    2016-03-16 01:32:15    2016-03-16 01:32:15
26476    15216    712    2016-03-18 01:33:25    2016-03-18 01:33:25
26477    12630    823    2016-01-24 21:02:52    2016-01-24 21:02:52
26478    14158    957    2016-03-10 00:25:21    2016-03-10 00:25:21
26479    15943    662    2016-02-08 03:41:52    2016-02-08 03:41:52
26480    14679    520    2016-02-23 04:46:57    2016-02-23 04:46:57
26481    10673    830    2016-04-18 16:43:28    2016-04-18 16:43:28
26482    17220    563    2016-02-17 23:39:41    2016-02-17 23:39:41
26483    19077    746    2016-02-22 06:54:03    2016-02-22 06:54:03
26484    13063    473    2016-03-26 01:46:48    2016-03-26 01:46:48
26485    17973    706    2016-02-19 13:38:20    2016-02-19 13:38:20
26486    10847    797    2016-02-05 17:58:52    2016-02-05 17:58:52
26487    12789    956    2016-03-17 07:58:14    2016-03-17 07:58:14
26488    16653    729    2016-04-06 19:40:10    2016-04-06 19:40:10
26489    18525    600    2016-04-11 01:46:11    2016-04-11 01:46:11
26490    10096    816    2016-02-02 18:58:14    2016-02-02 18:58:14
26491    18437    472    2016-04-17 19:36:44    2016-04-17 19:36:44
26492    14612    881    2016-04-01 19:06:39    2016-04-01 19:06:39
26493    12541    697    2016-03-04 05:07:24    2016-03-04 05:07:24
26494    11405    798    2016-01-26 17:21:23    2016-01-26 17:21:23
26495    14442    629    2016-03-20 16:21:25    2016-03-20 16:21:25
26496    14501    939    2016-02-13 03:22:22    2016-02-13 03:22:22
26497    12017    697    2016-02-06 09:27:42    2016-02-06 09:27:42
26498    17918    665    2016-02-22 08:44:13    2016-02-22 08:44:13
26499    12222    957    2016-04-09 12:19:53    2016-04-09 12:19:53
26500    12023    644    2016-01-26 05:33:14    2016-01-26 05:33:14
26501    18232    773    2016-02-02 05:31:41    2016-02-02 05:31:41
26502    10614    921    2016-04-13 12:51:36    2016-04-13 12:51:36
26503    17937    868    2016-04-09 00:43:45    2016-04-09 00:43:45
26504    10999    501    2016-02-21 02:36:26    2016-02-21 02:36:26
26505    14553    766    2016-02-20 01:34:36    2016-02-20 01:34:36
26506    14589    732    2016-03-27 15:46:54    2016-03-27 15:46:54
26507    12144    886    2016-04-04 21:56:05    2016-04-04 21:56:05
26508    12605    504    2016-01-22 07:38:41    2016-01-22 07:38:41
26509    10288    673    2016-01-23 23:03:29    2016-01-23 23:03:29
26510    13756    744    2016-03-26 19:06:48    2016-03-26 19:06:48
26511    18104    514    2016-01-23 14:13:55    2016-01-23 14:13:55
26512    17171    613    2016-02-01 06:59:28    2016-02-01 06:59:28
26513    16347    493    2016-02-22 04:55:00    2016-02-22 04:55:00
26514    13263    935    2016-02-13 17:10:56    2016-02-13 17:10:56
26515    10757    498    2016-04-09 06:22:42    2016-04-09 06:22:42
26516    13265    676    2016-02-02 16:57:36    2016-02-02 16:57:36
26517    19231    518    2016-04-17 20:06:39    2016-04-17 20:06:39
26518    14024    815    2016-01-27 05:56:43    2016-01-27 05:56:43
26519    15144    920    2016-02-17 13:14:15    2016-02-17 13:14:15
26520    15481    696    2016-04-20 14:53:00    2016-04-20 14:53:00
26521    10738    813    2016-03-07 21:08:02    2016-03-07 21:08:02
26522    15860    492    2016-03-21 21:28:01    2016-03-21 21:28:01
26523    12180    627    2016-04-07 15:29:15    2016-04-07 15:29:15
26524    11823    824    2016-03-06 18:57:36    2016-03-06 18:57:36
26525    11182    837    2016-03-15 19:28:00    2016-03-15 19:28:00
26526    16210    847    2016-03-21 21:46:03    2016-03-21 21:46:03
26527    10049    634    2016-02-07 20:46:28    2016-02-07 20:46:28
26528    10519    636    2016-03-02 06:44:06    2016-03-02 06:44:06
26529    15566    574    2016-02-16 18:34:53    2016-02-16 18:34:53
26530    17819    931    2016-03-27 04:44:30    2016-03-27 04:44:30
26531    10491    850    2016-02-12 01:09:57    2016-02-12 01:09:57
26532    12507    667    2016-02-13 04:27:44    2016-02-13 04:27:44
26533    19201    829    2016-02-21 09:58:11    2016-02-21 09:58:11
26534    16437    858    2016-04-10 14:51:46    2016-04-10 14:51:46
26535    12179    533    2016-04-13 02:40:48    2016-04-13 02:40:48
26536    15578    865    2016-02-10 14:12:37    2016-02-10 14:12:37
26537    11295    757    2016-02-15 20:51:34    2016-02-15 20:51:34
26538    14845    840    2016-02-18 22:52:16    2016-02-18 22:52:16
26539    12324    756    2016-01-31 10:37:53    2016-01-31 10:37:53
26540    14402    755    2016-03-19 11:53:10    2016-03-19 11:53:10
26541    14150    860    2016-04-03 20:28:12    2016-04-03 20:28:12
26542    12957    590    2016-02-11 07:23:32    2016-02-11 07:23:32
26543    17646    590    2016-02-07 09:44:55    2016-02-07 09:44:55
26544    10453    484    2016-02-06 06:42:33    2016-02-06 06:42:33
26545    12596    857    2016-03-04 05:00:01    2016-03-04 05:00:01
26546    19454    644    2016-03-30 03:33:44    2016-03-30 03:33:44
26547    13025    785    2016-02-03 13:48:10    2016-02-03 13:48:10
26548    11444    749    2016-01-26 09:01:41    2016-01-26 09:01:41
26549    12990    762    2016-04-10 08:02:18    2016-04-10 08:02:18
26550    13157    587    2016-02-23 22:15:51    2016-02-23 22:15:51
26551    14644    610    2016-04-01 05:51:12    2016-04-01 05:51:12
26552    19235    952    2016-03-01 07:28:12    2016-03-01 07:28:12
26553    11618    544    2016-04-06 10:23:06    2016-04-06 10:23:06
26554    19403    548    2016-03-12 17:54:50    2016-03-12 17:54:50
26555    10851    669    2016-04-19 14:59:46    2016-04-19 14:59:46
26556    16517    857    2016-03-17 17:35:53    2016-03-17 17:35:53
26557    18595    794    2016-04-01 23:39:04    2016-04-01 23:39:04
26558    11877    558    2016-03-12 10:15:28    2016-03-12 10:15:28
26559    13722    468    2016-03-25 16:31:29    2016-03-25 16:31:29
26560    18406    715    2016-01-24 23:26:13    2016-01-24 23:26:13
26561    16463    839    2016-02-23 04:51:34    2016-02-23 04:51:34
26562    16258    582    2016-03-01 15:17:43    2016-03-01 15:17:43
26563    19125    545    2016-02-09 08:42:33    2016-02-09 08:42:33
26564    15945    774    2016-02-12 01:21:07    2016-02-12 01:21:07
26565    14619    480    2016-01-25 18:25:25    2016-01-25 18:25:25
26566    17435    931    2016-02-20 19:53:28    2016-02-20 19:53:28
26567    17709    645    2016-02-25 07:18:54    2016-02-25 07:18:54
26568    14487    944    2016-01-27 19:22:04    2016-01-27 19:22:04
26569    17496    822    2016-04-12 11:40:59    2016-04-12 11:40:59
26570    19509    856    2016-03-26 06:05:09    2016-03-26 06:05:09
26571    19418    899    2016-04-07 17:09:10    2016-04-07 17:09:10
26572    18059    724    2016-01-27 04:43:41    2016-01-27 04:43:41
26573    18367    465    2016-03-13 00:10:33    2016-03-13 00:10:33
26574    12847    676    2016-03-11 23:20:38    2016-03-11 23:20:38
26575    11644    737    2016-02-05 20:15:42    2016-02-05 20:15:42
26576    12185    679    2016-01-31 16:57:25    2016-01-31 16:57:25
26577    19948    636    2016-03-15 21:50:18    2016-03-15 21:50:18
26578    19273    801    2016-02-01 00:42:11    2016-02-01 00:42:11
26579    19205    777    2016-02-01 10:51:46    2016-02-01 10:51:46
26580    15660    601    2016-03-27 22:30:28    2016-03-27 22:30:28
26581    15409    639    2016-01-23 11:53:16    2016-01-23 11:53:16
26582    19887    903    2016-01-24 02:27:15    2016-01-24 02:27:15
26583    16234    837    2016-04-15 10:09:12    2016-04-15 10:09:12
26584    17996    857    2016-03-22 01:03:10    2016-03-22 01:03:10
26585    15215    784    2016-04-12 05:52:59    2016-04-12 05:52:59
26586    15638    819    2016-01-25 13:34:11    2016-01-25 13:34:11
26587    19165    491    2016-03-20 12:31:19    2016-03-20 12:31:19
26588    12973    786    2016-03-20 04:11:27    2016-03-20 04:11:27
26589    19418    483    2016-01-29 04:58:17    2016-01-29 04:58:17
26590    11389    749    2016-02-13 23:04:35    2016-02-13 23:04:35
26591    19547    755    2016-03-16 14:38:11    2016-03-16 14:38:11
26592    15654    646    2016-02-03 17:43:13    2016-02-03 17:43:13
26593    11093    715    2016-02-02 02:32:49    2016-02-02 02:32:49
26594    18284    797    2016-02-07 19:02:14    2016-02-07 19:02:14
26595    13587    890    2016-02-20 19:27:12    2016-02-20 19:27:12
26596    17322    728    2016-03-28 10:55:23    2016-03-28 10:55:23
26597    13300    547    2016-01-28 23:01:09    2016-01-28 23:01:09
26598    18422    746    2016-03-21 00:46:35    2016-03-21 00:46:35
26599    18061    887    2016-03-20 09:51:06    2016-03-20 09:51:06
26600    18297    953    2016-03-15 08:51:41    2016-03-15 08:51:41
26601    13875    506    2016-02-12 18:40:59    2016-02-12 18:40:59
26602    18060    523    2016-03-27 18:05:02    2016-03-27 18:05:02
26603    12588    944    2016-03-24 15:02:19    2016-03-24 15:02:19
26604    11926    600    2016-04-16 04:33:38    2016-04-16 04:33:38
26605    13627    751    2016-02-29 08:36:56    2016-02-29 08:36:56
26606    11759    820    2016-02-05 14:04:12    2016-02-05 14:04:12
26607    13202    700    2016-02-27 06:08:14    2016-02-27 06:08:14
26608    16666    731    2016-02-27 01:45:18    2016-02-27 01:45:18
26609    18448    616    2016-02-19 16:47:01    2016-02-19 16:47:01
26610    18251    599    2016-03-23 15:29:52    2016-03-23 15:29:52
26611    11500    636    2016-04-19 22:26:16    2016-04-19 22:26:16
26612    10121    934    2016-03-25 21:03:11    2016-03-25 21:03:11
26613    12849    541    2016-04-19 22:57:34    2016-04-19 22:57:34
26614    16473    864    2016-03-02 21:06:17    2016-03-02 21:06:17
26615    15765    850    2016-02-02 22:53:09    2016-02-02 22:53:09
26616    12187    660    2016-03-30 10:18:53    2016-03-30 10:18:53
26617    10997    513    2016-02-14 14:38:18    2016-02-14 14:38:18
26618    10370    493    2016-02-21 14:24:36    2016-02-21 14:24:36
26619    15133    581    2016-03-05 10:01:47    2016-03-05 10:01:47
26620    15682    501    2016-02-26 19:33:19    2016-02-26 19:33:19
26621    16306    666    2016-02-29 04:34:16    2016-02-29 04:34:16
26622    10399    825    2016-01-28 07:40:18    2016-01-28 07:40:18
26623    19649    938    2016-02-06 08:03:55    2016-02-06 08:03:55
26624    18561    564    2016-03-18 12:11:57    2016-03-18 12:11:57
26625    10234    741    2016-02-15 14:47:20    2016-02-15 14:47:20
26626    11295    835    2016-03-11 18:50:45    2016-03-11 18:50:45
26627    17176    837    2016-03-04 11:59:20    2016-03-04 11:59:20
26628    11614    915    2016-02-07 08:20:51    2016-02-07 08:20:51
26629    13559    507    2016-03-25 22:35:55    2016-03-25 22:35:55
26630    19810    718    2016-03-20 13:19:25    2016-03-20 13:19:25
26631    15690    609    2016-03-31 11:17:41    2016-03-31 11:17:41
26632    15645    941    2016-01-26 16:22:02    2016-01-26 16:22:02
26633    17652    694    2016-02-23 05:28:02    2016-02-23 05:28:02
26634    11066    612    2016-03-15 21:25:14    2016-03-15 21:25:14
26635    19549    596    2016-01-22 06:49:00    2016-01-22 06:49:00
26636    19187    725    2016-02-03 22:37:10    2016-02-03 22:37:10
26637    10547    810    2016-03-10 15:31:17    2016-03-10 15:31:17
26638    16313    522    2016-01-26 18:23:08    2016-01-26 18:23:08
26639    19265    499    2016-01-26 10:33:42    2016-01-26 10:33:42
26640    15046    464    2016-03-30 19:05:13    2016-03-30 19:05:13
26641    12316    850    2016-04-06 07:14:07    2016-04-06 07:14:07
26642    11093    940    2016-04-05 01:02:12    2016-04-05 01:02:12
26643    14801    552    2016-03-10 01:38:00    2016-03-10 01:38:00
26644    14089    573    2016-03-17 23:11:27    2016-03-17 23:11:27
26645    15126    869    2016-02-04 19:45:05    2016-02-04 19:45:05
26646    12679    797    2016-03-27 11:07:41    2016-03-27 11:07:41
26647    10138    777    2016-02-23 04:15:22    2016-02-23 04:15:22
26648    16180    851    2016-03-01 22:15:41    2016-03-01 22:15:41
26649    18996    904    2016-02-25 05:44:29    2016-02-25 05:44:29
26650    16104    612    2016-04-15 15:56:33    2016-04-15 15:56:33
26651    12845    637    2016-03-11 04:29:44    2016-03-11 04:29:44
26652    10092    687    2016-03-16 11:46:29    2016-03-16 11:46:29
26653    10865    951    2016-03-23 21:20:34    2016-03-23 21:20:34
26654    14366    922    2016-03-13 17:06:07    2016-03-13 17:06:07
26655    19464    475    2016-01-25 15:53:30    2016-01-25 15:53:30
26656    12677    928    2016-01-23 11:26:31    2016-01-23 11:26:31
26657    12954    799    2016-03-09 21:51:37    2016-03-09 21:51:37
26658    18186    694    2016-02-16 20:21:30    2016-02-16 20:21:30
26659    13580    645    2016-03-17 21:42:15    2016-03-17 21:42:15
26660    17090    796    2016-04-01 20:18:32    2016-04-01 20:18:32
26661    13184    810    2016-04-09 04:28:19    2016-04-09 04:28:19
26662    14721    830    2016-02-28 16:58:53    2016-02-28 16:58:53
26663    11380    690    2016-02-02 02:50:17    2016-02-02 02:50:17
26664    19546    502    2016-02-03 09:26:20    2016-02-03 09:26:20
26665    19675    832    2016-03-14 02:42:04    2016-03-14 02:42:04
26666    19273    911    2016-03-18 00:36:32    2016-03-18 00:36:32
26667    11748    689    2016-03-25 13:35:57    2016-03-25 13:35:57
26668    17998    814    2016-03-24 02:40:43    2016-03-24 02:40:43
26669    15152    521    2016-02-05 04:46:07    2016-02-05 04:46:07
26670    19504    864    2016-04-06 23:03:14    2016-04-06 23:03:14
26671    14726    842    2016-01-28 12:22:14    2016-01-28 12:22:14
26672    12165    570    2016-03-02 23:53:05    2016-03-02 23:53:05
26673    16481    835    2016-04-20 11:39:09    2016-04-20 11:39:09
26674    18811    588    2016-03-31 04:50:43    2016-03-31 04:50:43
26675    15588    755    2016-04-14 18:21:23    2016-04-14 18:21:23
26676    16871    659    2016-03-20 10:12:57    2016-03-20 10:12:57
26677    11579    803    2016-02-24 18:00:30    2016-02-24 18:00:30
26678    16376    722    2016-02-05 03:54:05    2016-02-05 03:54:05
26679    15024    503    2016-03-01 04:46:53    2016-03-01 04:46:53
26680    11904    910    2016-03-01 15:39:28    2016-03-01 15:39:28
26681    12541    468    2016-03-20 12:23:15    2016-03-20 12:23:15
26682    18250    650    2016-03-12 11:33:17    2016-03-12 11:33:17
26683    11489    805    2016-03-23 00:13:39    2016-03-23 00:13:39
26684    13054    939    2016-04-13 04:58:45    2016-04-13 04:58:45
26685    11676    484    2016-02-23 07:39:01    2016-02-23 07:39:01
26686    16765    741    2016-02-03 06:29:34    2016-02-03 06:29:34
26687    12497    883    2016-04-16 01:26:52    2016-04-16 01:26:52
26688    10237    959    2016-03-02 12:50:17    2016-03-02 12:50:17
26689    17785    957    2016-03-17 18:21:06    2016-03-17 18:21:06
26690    15553    868    2016-02-11 03:55:32    2016-02-11 03:55:32
26691    15766    738    2016-03-01 22:18:57    2016-03-01 22:18:57
26692    19599    624    2016-03-28 02:39:00    2016-03-28 02:39:00
26693    18649    710    2016-04-14 19:03:18    2016-04-14 19:03:18
26694    18392    795    2016-03-22 23:06:46    2016-03-22 23:06:46
26695    17288    825    2016-04-05 02:12:54    2016-04-05 02:12:54
26696    10414    795    2016-02-27 10:03:00    2016-02-27 10:03:00
26697    11756    663    2016-02-26 17:50:05    2016-02-26 17:50:05
26698    15128    743    2016-01-27 08:24:52    2016-01-27 08:24:52
26699    16456    956    2016-04-13 20:18:23    2016-04-13 20:18:23
26700    10584    778    2016-04-12 06:27:41    2016-04-12 06:27:41
26701    12148    939    2016-01-30 07:27:43    2016-01-30 07:27:43
26702    11664    470    2016-02-10 05:12:29    2016-02-10 05:12:29
26703    12643    622    2016-02-29 20:48:55    2016-02-29 20:48:55
26704    12171    767    2016-02-21 15:29:31    2016-02-21 15:29:31
26705    19877    676    2016-03-06 16:48:35    2016-03-06 16:48:35
26706    12636    836    2016-03-03 01:27:46    2016-03-03 01:27:46
26707    10655    492    2016-03-16 02:27:37    2016-03-16 02:27:37
26708    12346    839    2016-04-02 00:06:24    2016-04-02 00:06:24
26709    14990    706    2016-01-31 23:08:41    2016-01-31 23:08:41
26710    13935    575    2016-02-23 10:04:33    2016-02-23 10:04:33
26711    14490    932    2016-03-19 16:36:30    2016-03-19 16:36:30
26712    11312    833    2016-01-28 04:13:57    2016-01-28 04:13:57
26713    11810    771    2016-04-18 16:07:22    2016-04-18 16:07:22
26714    14334    535    2016-02-18 09:19:05    2016-02-18 09:19:05
26715    16124    752    2016-04-14 07:07:22    2016-04-14 07:07:22
26716    11339    831    2016-02-21 05:55:26    2016-02-21 05:55:26
26717    15800    650    2016-02-02 16:04:18    2016-02-02 16:04:18
26718    13160    480    2016-03-18 18:00:22    2016-03-18 18:00:22
26719    16398    505    2016-03-26 02:36:58    2016-03-26 02:36:58
26720    16823    473    2016-02-06 09:44:15    2016-02-06 09:44:15
26721    17513    860    2016-03-16 04:28:10    2016-03-16 04:28:10
26722    18733    794    2016-03-23 23:23:39    2016-03-23 23:23:39
26723    16378    650    2016-02-29 03:22:00    2016-02-29 03:22:00
26724    13410    887    2016-03-11 09:53:43    2016-03-11 09:53:43
26725    17905    627    2016-04-10 21:58:35    2016-04-10 21:58:35
26726    19350    836    2016-03-23 07:55:23    2016-03-23 07:55:23
26727    13970    535    2016-02-09 07:44:33    2016-02-09 07:44:33
26728    11183    566    2016-04-10 19:42:29    2016-04-10 19:42:29
26729    18007    737    2016-04-13 08:26:09    2016-04-13 08:26:09
26730    12245    832    2016-04-06 07:55:35    2016-04-06 07:55:35
26731    14296    625    2016-04-04 13:05:27    2016-04-04 13:05:27
26732    17149    728    2016-02-11 18:42:41    2016-02-11 18:42:41
26733    12192    500    2016-04-15 11:28:37    2016-04-15 11:28:37
26734    12650    618    2016-03-25 04:44:17    2016-03-25 04:44:17
26735    13857    670    2016-03-26 12:04:43    2016-03-26 12:04:43
26736    11655    800    2016-01-30 12:41:56    2016-01-30 12:41:56
26737    19684    739    2016-02-07 08:50:41    2016-02-07 08:50:41
26738    16711    680    2016-02-15 20:19:56    2016-02-15 20:19:56
26739    12801    702    2016-03-26 15:42:49    2016-03-26 15:42:49
26740    12312    759    2016-02-01 16:25:08    2016-02-01 16:25:08
26741    17651    846    2016-02-01 03:37:02    2016-02-01 03:37:02
26742    15700    551    2016-03-07 07:29:03    2016-03-07 07:29:03
26743    16941    864    2016-04-05 02:48:59    2016-04-05 02:48:59
26744    15258    919    2016-02-02 09:33:16    2016-02-02 09:33:16
26745    10645    953    2016-04-15 19:23:09    2016-04-15 19:23:09
26746    10751    803    2016-04-06 18:11:50    2016-04-06 18:11:50
26747    14173    584    2016-03-07 10:12:09    2016-03-07 10:12:09
26748    13294    604    2016-03-12 10:53:37    2016-03-12 10:53:37
26749    10891    779    2016-04-06 07:04:26    2016-04-06 07:04:26
26750    14264    617    2016-04-17 16:26:45    2016-04-17 16:26:45
26751    13130    823    2016-04-13 21:48:55    2016-04-13 21:48:55
26752    10797    890    2016-02-21 04:03:49    2016-02-21 04:03:49
26753    13447    958    2016-03-29 09:37:54    2016-03-29 09:37:54
26754    12263    960    2016-03-24 02:47:37    2016-03-24 02:47:37
26755    10276    551    2016-04-11 15:08:53    2016-04-11 15:08:53
26756    14086    945    2016-04-03 00:28:13    2016-04-03 00:28:13
26757    11575    800    2016-02-26 20:27:13    2016-02-26 20:27:13
26758    10393    591    2016-02-04 21:33:39    2016-02-04 21:33:39
26759    10848    740    2016-03-07 11:37:29    2016-03-07 11:37:29
26760    11308    655    2016-01-27 23:49:03    2016-01-27 23:49:03
26761    18268    815    2016-01-29 14:56:35    2016-01-29 14:56:35
26762    19203    574    2016-02-20 22:35:28    2016-02-20 22:35:28
26763    17829    620    2016-03-16 00:21:36    2016-03-16 00:21:36
26764    14762    861    2016-02-25 08:39:09    2016-02-25 08:39:09
26765    12469    736    2016-03-09 05:57:45    2016-03-09 05:57:45
26766    14136    930    2016-04-08 04:13:53    2016-04-08 04:13:53
26767    12736    702    2016-02-21 19:16:27    2016-02-21 19:16:27
26768    16161    579    2016-01-24 14:40:48    2016-01-24 14:40:48
26769    10260    683    2016-03-05 08:08:31    2016-03-05 08:08:31
26770    19590    690    2016-03-04 08:08:31    2016-03-04 08:08:31
26771    18037    738    2016-01-28 01:48:36    2016-01-28 01:48:36
26772    16250    477    2016-03-07 20:55:09    2016-03-07 20:55:09
26773    17407    952    2016-04-17 02:51:26    2016-04-17 02:51:26
26774    16512    913    2016-02-03 15:17:08    2016-02-03 15:17:08
26775    14651    746    2016-04-20 13:07:44    2016-04-20 13:07:44
26776    12017    624    2016-04-01 01:49:02    2016-04-01 01:49:02
26777    15522    930    2016-02-22 01:17:04    2016-02-22 01:17:04
26778    11728    737    2016-02-27 01:44:42    2016-02-27 01:44:42
26779    11809    710    2016-03-25 11:42:53    2016-03-25 11:42:53
26780    11312    882    2016-03-22 02:49:23    2016-03-22 02:49:23
26781    19321    863    2016-02-23 11:00:00    2016-02-23 11:00:00
26782    18747    874    2016-03-13 12:32:35    2016-03-13 12:32:35
26783    10794    823    2016-03-30 03:03:57    2016-03-30 03:03:57
26784    18720    518    2016-04-18 04:24:28    2016-04-18 04:24:28
26785    15316    692    2016-03-01 17:05:08    2016-03-01 17:05:08
26786    13887    660    2016-03-19 04:43:51    2016-03-19 04:43:51
26787    19831    872    2016-02-20 09:36:18    2016-02-20 09:36:18
26788    13010    928    2016-04-04 20:02:57    2016-04-04 20:02:57
26789    14668    537    2016-02-17 10:03:15    2016-02-17 10:03:15
26790    12133    570    2016-01-27 23:05:14    2016-01-27 23:05:14
26791    17828    847    2016-02-22 19:52:49    2016-02-22 19:52:49
26792    17649    872    2016-02-21 18:36:15    2016-02-21 18:36:15
26793    18584    702    2016-01-27 12:40:28    2016-01-27 12:40:28
26794    13396    940    2016-04-15 21:16:17    2016-04-15 21:16:17
26795    10619    684    2016-02-23 08:40:06    2016-02-23 08:40:06
26796    14173    476    2016-04-01 23:48:08    2016-04-01 23:48:08
26797    13792    927    2016-01-23 09:18:40    2016-01-23 09:18:40
26798    16739    738    2016-02-26 03:54:03    2016-02-26 03:54:03
26799    11008    864    2016-03-12 02:15:52    2016-03-12 02:15:52
26800    19894    824    2016-02-09 16:22:59    2016-02-09 16:22:59
26801    12135    693    2016-02-19 05:06:36    2016-02-19 05:06:36
26802    15666    656    2016-03-02 04:00:01    2016-03-02 04:00:01
26803    16408    849    2016-04-19 07:50:43    2016-04-19 07:50:43
26804    15102    939    2016-04-06 08:26:26    2016-04-06 08:26:26
26805    13818    937    2016-02-10 16:36:34    2016-02-10 16:36:34
26806    17338    672    2016-04-04 08:37:30    2016-04-04 08:37:30
26807    16795    554    2016-04-10 03:39:43    2016-04-10 03:39:43
26808    16105    545    2016-03-15 00:37:28    2016-03-15 00:37:28
26809    14927    679    2016-01-23 23:53:18    2016-01-23 23:53:18
26810    16700    614    2016-03-20 01:32:19    2016-03-20 01:32:19
26811    13575    946    2016-04-18 08:08:17    2016-04-18 08:08:17
26812    19241    823    2016-01-28 09:08:33    2016-01-28 09:08:33
26813    18359    907    2016-03-20 15:11:55    2016-03-20 15:11:55
26814    18965    784    2016-02-12 12:48:54    2016-02-12 12:48:54
26815    13271    506    2016-04-14 05:22:25    2016-04-14 05:22:25
26816    17309    912    2016-03-08 05:03:34    2016-03-08 05:03:34
26817    16495    516    2016-04-07 12:25:35    2016-04-07 12:25:35
26818    15398    487    2016-04-18 16:21:46    2016-04-18 16:21:46
26819    14049    667    2016-02-11 09:53:58    2016-02-11 09:53:58
26820    17414    795    2016-04-19 10:12:36    2016-04-19 10:12:36
26821    19658    737    2016-02-03 04:42:08    2016-02-03 04:42:08
26822    12922    716    2016-04-20 05:52:08    2016-04-20 05:52:08
26823    19806    595    2016-02-04 11:19:21    2016-02-04 11:19:21
26824    13966    530    2016-02-22 13:49:59    2016-02-22 13:49:59
26825    15493    885    2016-02-11 16:00:32    2016-02-11 16:00:32
26826    10589    942    2016-01-23 04:35:22    2016-01-23 04:35:22
26827    10505    885    2016-03-28 14:06:45    2016-03-28 14:06:45
26828    10810    775    2016-03-08 21:29:17    2016-03-08 21:29:17
26829    14736    852    2016-02-18 02:09:54    2016-02-18 02:09:54
26830    16408    750    2016-01-24 22:30:28    2016-01-24 22:30:28
26831    19133    905    2016-01-28 13:43:51    2016-01-28 13:43:51
26832    11349    701    2016-01-22 04:07:20    2016-01-22 04:07:20
26833    14560    685    2016-02-12 12:40:10    2016-02-12 12:40:10
26834    12741    503    2016-04-03 12:10:11    2016-04-03 12:10:11
26835    10696    519    2016-04-04 18:35:40    2016-04-04 18:35:40
26836    14577    886    2016-02-11 23:44:40    2016-02-11 23:44:40
26837    12452    958    2016-03-28 19:00:51    2016-03-28 19:00:51
26838    17573    637    2016-02-29 23:45:46    2016-02-29 23:45:46
26839    14939    499    2016-01-27 14:42:26    2016-01-27 14:42:26
26840    18763    763    2016-02-27 08:20:46    2016-02-27 08:20:46
26841    16171    548    2016-02-13 16:16:22    2016-02-13 16:16:22
26842    13673    912    2016-03-21 08:10:07    2016-03-21 08:10:07
26843    19379    560    2016-04-08 10:08:54    2016-04-08 10:08:54
26844    15428    703    2016-04-12 20:33:08    2016-04-12 20:33:08
26845    13476    871    2016-02-17 03:52:38    2016-02-17 03:52:38
26846    18545    932    2016-04-06 07:34:01    2016-04-06 07:34:01
26847    12615    835    2016-03-02 11:40:53    2016-03-02 11:40:53
26848    15618    594    2016-02-11 06:20:47    2016-02-11 06:20:47
26849    12963    840    2016-02-03 14:06:15    2016-02-03 14:06:15
26850    12239    835    2016-03-29 03:20:02    2016-03-29 03:20:02
26851    18193    696    2016-02-26 01:05:52    2016-02-26 01:05:52
26852    17568    702    2016-04-08 05:17:17    2016-04-08 05:17:17
26853    15189    486    2016-04-07 06:33:19    2016-04-07 06:33:19
26854    10356    748    2016-03-06 03:24:14    2016-03-06 03:24:14
26855    17188    893    2016-03-09 05:23:40    2016-03-09 05:23:40
26856    13622    566    2016-01-28 09:43:39    2016-01-28 09:43:39
26857    12701    678    2016-02-08 23:29:48    2016-02-08 23:29:48
26858    15794    478    2016-03-07 10:20:15    2016-03-07 10:20:15
26859    18549    523    2016-03-06 05:36:47    2016-03-06 05:36:47
26860    14461    628    2016-03-07 13:08:52    2016-03-07 13:08:52
26861    11015    710    2016-04-11 12:15:59    2016-04-11 12:15:59
26862    10557    863    2016-02-05 17:31:04    2016-02-05 17:31:04
26863    19493    496    2016-03-01 03:28:06    2016-03-01 03:28:06
26864    10221    786    2016-02-29 03:49:41    2016-02-29 03:49:41
26865    17629    497    2016-03-19 21:21:34    2016-03-19 21:21:34
26866    13850    559    2016-02-18 20:31:41    2016-02-18 20:31:41
26867    13943    632    2016-03-26 20:27:39    2016-03-26 20:27:39
26868    14900    755    2016-02-04 01:43:46    2016-02-04 01:43:46
26869    19558    673    2016-02-13 05:33:37    2016-02-13 05:33:37
26870    15978    866    2016-04-04 11:13:06    2016-04-04 11:13:06
26871    10274    766    2016-02-05 20:54:00    2016-02-05 20:54:00
26872    17445    889    2016-04-07 10:20:26    2016-04-07 10:20:26
26873    11762    561    2016-01-25 07:34:01    2016-01-25 07:34:01
26874    17153    482    2016-02-18 01:24:06    2016-02-18 01:24:06
26875    14580    858    2016-04-10 07:14:05    2016-04-10 07:14:05
26876    10926    756    2016-02-03 08:45:20    2016-02-03 08:45:20
26877    19133    954    2016-01-22 04:18:13    2016-01-22 04:18:13
26878    16802    831    2016-02-11 08:14:16    2016-02-11 08:14:16
26879    13680    899    2016-01-28 02:24:53    2016-01-28 02:24:53
26880    17544    537    2016-03-18 23:22:37    2016-03-18 23:22:37
26881    14622    781    2016-03-28 08:19:03    2016-03-28 08:19:03
26882    11457    767    2016-02-19 10:30:46    2016-02-19 10:30:46
26883    18188    642    2016-02-10 10:52:22    2016-02-10 10:52:22
26884    15168    765    2016-02-25 08:02:08    2016-02-25 08:02:08
26885    15264    626    2016-03-16 22:54:10    2016-03-16 22:54:10
26886    19710    700    2016-03-29 03:07:12    2016-03-29 03:07:12
26887    15162    773    2016-03-01 12:52:31    2016-03-01 12:52:31
26888    16425    841    2016-02-29 22:17:43    2016-02-29 22:17:43
26889    19084    931    2016-02-18 13:06:50    2016-02-18 13:06:50
26890    10600    957    2016-03-20 21:35:57    2016-03-20 21:35:57
26891    14336    468    2016-02-26 22:05:04    2016-02-26 22:05:04
26892    15473    547    2016-04-03 09:10:00    2016-04-03 09:10:00
26893    19796    914    2016-03-21 04:45:54    2016-03-21 04:45:54
26894    15939    930    2016-03-03 19:32:31    2016-03-03 19:32:31
26895    16284    554    2016-02-12 10:25:04    2016-02-12 10:25:04
26896    19071    809    2016-02-26 13:35:20    2016-02-26 13:35:20
26897    16499    523    2016-03-02 02:46:43    2016-03-02 02:46:43
26898    12892    605    2016-02-12 16:36:15    2016-02-12 16:36:15
26899    10316    808    2016-01-24 01:38:39    2016-01-24 01:38:39
26900    13318    727    2016-03-12 03:01:04    2016-03-12 03:01:04
26901    10272    502    2016-02-12 18:20:10    2016-02-12 18:20:10
26902    14574    628    2016-04-15 03:50:33    2016-04-15 03:50:33
26903    13279    643    2016-02-05 08:44:20    2016-02-05 08:44:20
26904    18228    709    2016-02-24 04:29:14    2016-02-24 04:29:14
26905    17957    501    2016-01-31 19:59:22    2016-01-31 19:59:22
26906    18350    576    2016-02-22 07:39:39    2016-02-22 07:39:39
26907    11557    542    2016-03-28 01:16:05    2016-03-28 01:16:05
26908    19721    895    2016-04-17 15:28:35    2016-04-17 15:28:35
26909    19610    520    2016-02-22 00:21:56    2016-02-22 00:21:56
26910    12516    863    2016-04-04 11:42:40    2016-04-04 11:42:40
26911    10381    676    2016-03-16 12:23:05    2016-03-16 12:23:05
26912    18535    539    2016-01-29 16:56:46    2016-01-29 16:56:46
26913    11915    616    2016-02-28 08:31:39    2016-02-28 08:31:39
26914    15856    591    2016-04-11 03:59:12    2016-04-11 03:59:12
26915    16953    835    2016-02-05 01:03:18    2016-02-05 01:03:18
26916    17393    862    2016-04-17 00:04:54    2016-04-17 00:04:54
26917    11276    623    2016-03-30 10:04:51    2016-03-30 10:04:51
26918    18050    611    2016-03-22 10:21:21    2016-03-22 10:21:21
26919    18190    734    2016-03-27 22:16:23    2016-03-27 22:16:23
26920    17434    535    2016-03-31 23:23:58    2016-03-31 23:23:58
26921    14378    508    2016-04-15 18:07:32    2016-04-15 18:07:32
26922    17006    487    2016-01-24 07:47:34    2016-01-24 07:47:34
26923    18588    705    2016-03-21 03:24:12    2016-03-21 03:24:12
26924    11233    694    2016-02-19 18:48:24    2016-02-19 18:48:24
26925    11245    729    2016-04-11 17:37:50    2016-04-11 17:37:50
26926    12994    597    2016-02-14 20:24:42    2016-02-14 20:24:42
26927    13890    488    2016-02-25 18:56:36    2016-02-25 18:56:36
26928    14206    679    2016-02-27 19:34:01    2016-02-27 19:34:01
26929    15650    662    2016-02-24 00:05:03    2016-02-24 00:05:03
26930    16914    618    2016-02-26 06:27:28    2016-02-26 06:27:28
26931    13288    613    2016-04-20 15:19:48    2016-04-20 15:19:48
26932    11598    883    2016-01-25 08:22:20    2016-01-25 08:22:20
26933    11290    740    2016-03-06 03:49:45    2016-03-06 03:49:45
26934    16207    701    2016-03-29 16:13:17    2016-03-29 16:13:17
26935    15487    831    2016-02-06 07:11:58    2016-02-06 07:11:58
26936    11173    799    2016-02-10 17:34:04    2016-02-10 17:34:04
26937    11995    639    2016-02-01 20:00:31    2016-02-01 20:00:31
26938    18736    651    2016-03-04 13:47:16    2016-03-04 13:47:16
26939    12029    573    2016-03-10 16:25:29    2016-03-10 16:25:29
26940    10165    610    2016-03-24 12:30:13    2016-03-24 12:30:13
26941    17401    768    2016-04-06 19:04:07    2016-04-06 19:04:07
26942    12087    795    2016-04-19 22:13:28    2016-04-19 22:13:28
26943    16653    841    2016-03-11 07:06:21    2016-03-11 07:06:21
26944    19224    854    2016-01-22 10:04:06    2016-01-22 10:04:06
26945    16722    486    2016-01-31 07:53:38    2016-01-31 07:53:38
26946    11129    733    2016-04-07 00:47:46    2016-04-07 00:47:46
26947    13708    546    2016-04-17 10:51:13    2016-04-17 10:51:13
26948    15353    619    2016-03-23 04:44:40    2016-03-23 04:44:40
26949    19411    884    2016-01-23 22:44:45    2016-01-23 22:44:45
26950    19514    631    2016-02-16 01:14:29    2016-02-16 01:14:29
26951    13435    782    2016-04-07 00:14:44    2016-04-07 00:14:44
26952    16513    768    2016-04-17 17:49:03    2016-04-17 17:49:03
26953    10952    875    2016-02-01 03:10:20    2016-02-01 03:10:20
26954    18658    733    2016-02-08 01:25:20    2016-02-08 01:25:20
26955    14768    957    2016-02-27 18:58:55    2016-02-27 18:58:55
26956    17623    628    2016-04-02 05:58:23    2016-04-02 05:58:23
26957    19569    570    2016-02-21 20:41:45    2016-02-21 20:41:45
26958    17235    958    2016-03-27 01:30:37    2016-03-27 01:30:37
26959    19232    851    2016-03-08 03:05:04    2016-03-08 03:05:04
26960    11613    906    2016-04-15 12:31:09    2016-04-15 12:31:09
26961    11926    939    2016-02-16 13:09:52    2016-02-16 13:09:52
26962    14428    948    2016-01-27 03:01:06    2016-01-27 03:01:06
26963    15776    705    2016-02-11 09:32:16    2016-02-11 09:32:16
26964    10983    948    2016-03-02 22:45:45    2016-03-02 22:45:45
26965    17173    721    2016-04-01 00:00:55    2016-04-01 00:00:55
26966    13236    754    2016-03-18 14:42:19    2016-03-18 14:42:19
26967    16198    468    2016-02-12 10:04:23    2016-02-12 10:04:23
26968    17763    755    2016-02-10 10:26:04    2016-02-10 10:26:04
26969    15992    570    2016-01-29 02:40:40    2016-01-29 02:40:40
26970    13533    529    2016-01-25 07:21:18    2016-01-25 07:21:18
26971    12352    516    2016-03-13 07:53:21    2016-03-13 07:53:21
26972    11432    953    2016-03-21 02:25:59    2016-03-21 02:25:59
26973    10837    663    2016-04-16 21:07:48    2016-04-16 21:07:48
26974    11752    803    2016-04-02 21:53:28    2016-04-02 21:53:28
26975    12711    745    2016-03-09 03:59:16    2016-03-09 03:59:16
26976    16686    475    2016-03-05 15:03:21    2016-03-05 15:03:21
26977    10547    665    2016-03-17 14:36:38    2016-03-17 14:36:38
26978    13690    941    2016-02-01 09:38:12    2016-02-01 09:38:12
26979    12868    577    2016-03-14 05:55:55    2016-03-14 05:55:55
26980    19280    751    2016-04-11 06:01:48    2016-04-11 06:01:48
26981    13482    791    2016-02-29 00:01:57    2016-02-29 00:01:57
26982    19550    803    2016-02-26 06:15:01    2016-02-26 06:15:01
26983    17191    664    2016-02-02 02:22:55    2016-02-02 02:22:55
26984    16632    467    2016-02-12 09:55:05    2016-02-12 09:55:05
26985    14880    838    2016-01-24 22:02:27    2016-01-24 22:02:27
26986    18081    911    2016-03-22 10:07:49    2016-03-22 10:07:49
26987    16901    476    2016-03-08 03:12:29    2016-03-08 03:12:29
26988    17308    825    2016-02-22 19:53:56    2016-02-22 19:53:56
26989    11279    893    2016-03-04 19:23:46    2016-03-04 19:23:46
26990    14657    733    2016-03-31 03:53:33    2016-03-31 03:53:33
26991    18626    488    2016-02-20 11:48:50    2016-02-20 11:48:50
26992    19213    678    2016-03-26 17:46:28    2016-03-26 17:46:28
26993    17521    758    2016-02-12 03:22:07    2016-02-12 03:22:07
26994    12298    626    2016-02-18 01:36:13    2016-02-18 01:36:13
26995    19269    695    2016-02-19 01:47:18    2016-02-19 01:47:18
26996    11860    940    2016-02-15 23:20:21    2016-02-15 23:20:21
26997    19707    769    2016-01-30 18:36:06    2016-01-30 18:36:06
26998    15161    830    2016-04-14 15:58:24    2016-04-14 15:58:24
26999    17658    709    2016-03-25 21:09:10    2016-03-25 21:09:10
27000    15381    947    2016-02-01 16:40:57    2016-02-01 16:40:57
27001    16934    602    2016-03-29 14:55:53    2016-03-29 14:55:53
27002    14242    767    2016-02-06 18:44:07    2016-02-06 18:44:07
27003    14335    928    2016-03-02 20:49:36    2016-03-02 20:49:36
27004    15026    791    2016-03-23 09:15:04    2016-03-23 09:15:04
27005    19793    722    2016-03-25 23:19:32    2016-03-25 23:19:32
27006    19603    922    2016-02-07 04:21:20    2016-02-07 04:21:20
27007    19282    745    2016-01-22 22:57:58    2016-01-22 22:57:58
27008    14698    935    2016-01-30 12:39:56    2016-01-30 12:39:56
27009    15944    507    2016-01-27 02:51:15    2016-01-27 02:51:15
27010    16906    825    2016-03-07 02:48:59    2016-03-07 02:48:59
27011    10855    789    2016-02-17 05:47:45    2016-02-17 05:47:45
27012    15662    861    2016-02-16 05:50:06    2016-02-16 05:50:06
27013    18484    649    2016-03-06 04:12:09    2016-03-06 04:12:09
27014    18202    557    2016-03-20 15:55:37    2016-03-20 15:55:37
27015    11903    891    2016-02-20 15:43:08    2016-02-20 15:43:08
27016    19861    920    2016-04-02 16:49:02    2016-04-02 16:49:02
27017    12138    883    2016-04-16 03:12:35    2016-04-16 03:12:35
27018    17799    834    2016-02-18 14:56:37    2016-02-18 14:56:37
27019    15581    732    2016-04-01 06:02:12    2016-04-01 06:02:12
27020    12153    652    2016-01-23 09:21:29    2016-01-23 09:21:29
27021    12879    519    2016-04-07 15:30:45    2016-04-07 15:30:45
27022    19506    946    2016-03-19 12:52:32    2016-03-19 12:52:32
27023    14304    719    2016-04-03 03:43:27    2016-04-03 03:43:27
27024    12793    500    2016-01-26 09:33:10    2016-01-26 09:33:10
27025    16713    680    2016-01-25 03:41:38    2016-01-25 03:41:38
27026    19482    918    2016-03-18 23:38:24    2016-03-18 23:38:24
27027    12735    490    2016-03-23 08:05:24    2016-03-23 08:05:24
27028    17250    930    2016-04-16 14:37:12    2016-04-16 14:37:12
27029    17895    564    2016-02-17 16:45:22    2016-02-17 16:45:22
27030    11985    684    2016-02-13 10:27:54    2016-02-13 10:27:54
27031    18781    530    2016-01-31 17:00:25    2016-01-31 17:00:25
27032    14095    945    2016-04-18 15:35:08    2016-04-18 15:35:08
27033    18690    629    2016-04-05 03:56:43    2016-04-05 03:56:43
27034    11634    654    2016-03-27 10:17:09    2016-03-27 10:17:09
27035    10264    788    2016-04-06 08:42:13    2016-04-06 08:42:13
27036    14241    547    2016-02-20 21:28:22    2016-02-20 21:28:22
27037    14116    558    2016-03-05 19:03:16    2016-03-05 19:03:16
27038    19532    628    2016-03-23 22:38:07    2016-03-23 22:38:07
27039    11387    518    2016-02-26 14:55:43    2016-02-26 14:55:43
27040    10037    722    2016-03-10 13:10:48    2016-03-10 13:10:48
27041    12186    631    2016-03-03 00:09:52    2016-03-03 00:09:52
27042    17467    566    2016-04-16 13:29:46    2016-04-16 13:29:46
27043    10898    522    2016-03-15 01:10:22    2016-03-15 01:10:22
27044    19523    783    2016-01-24 05:10:11    2016-01-24 05:10:11
27045    13261    538    2016-03-17 23:44:18    2016-03-17 23:44:18
27046    14304    713    2016-01-25 00:52:13    2016-01-25 00:52:13
27047    17483    806    2016-03-07 14:37:14    2016-03-07 14:37:14
27048    13914    817    2016-02-13 11:08:39    2016-02-13 11:08:39
27049    11515    791    2016-02-29 22:11:21    2016-02-29 22:11:21
27050    16376    723    2016-04-02 00:21:13    2016-04-02 00:21:13
27051    12293    693    2016-04-11 23:19:23    2016-04-11 23:19:23
27052    10586    810    2016-04-13 13:32:19    2016-04-13 13:32:19
27053    12148    520    2016-03-29 00:46:16    2016-03-29 00:46:16
27054    15695    582    2016-02-13 10:26:06    2016-02-13 10:26:06
27055    16905    574    2016-04-18 00:08:35    2016-04-18 00:08:35
27056    16532    905    2016-01-29 23:55:38    2016-01-29 23:55:38
27057    17763    894    2016-01-30 12:06:06    2016-01-30 12:06:06
27058    11276    821    2016-03-11 03:24:36    2016-03-11 03:24:36
27059    18299    662    2016-03-01 05:35:01    2016-03-01 05:35:01
27060    15785    534    2016-01-30 04:41:23    2016-01-30 04:41:23
27061    10712    749    2016-02-24 12:10:28    2016-02-24 12:10:28
27062    14706    703    2016-02-18 00:25:31    2016-02-18 00:25:31
27063    10756    598    2016-02-22 13:48:05    2016-02-22 13:48:05
27064    14727    856    2016-03-20 16:23:23    2016-03-20 16:23:23
27065    15079    876    2016-03-28 07:45:56    2016-03-28 07:45:56
27066    13004    612    2016-02-09 21:48:18    2016-02-09 21:48:18
27067    18479    815    2016-02-21 15:36:24    2016-02-21 15:36:24
27068    16867    809    2016-02-14 22:49:52    2016-02-14 22:49:52
27069    10313    957    2016-02-27 00:58:10    2016-02-27 00:58:10
27070    14058    750    2016-03-28 08:28:38    2016-03-28 08:28:38
27071    17482    739    2016-02-06 09:43:39    2016-02-06 09:43:39
27072    16148    623    2016-02-20 06:35:06    2016-02-20 06:35:06
27073    13786    664    2016-02-04 20:04:49    2016-02-04 20:04:49
27074    12910    881    2016-04-09 01:26:37    2016-04-09 01:26:37
27075    19918    471    2016-03-16 13:12:12    2016-03-16 13:12:12
27076    14576    759    2016-03-07 01:43:42    2016-03-07 01:43:42
27077    18551    541    2016-04-03 06:33:22    2016-04-03 06:33:22
27078    13530    875    2016-03-07 16:17:35    2016-03-07 16:17:35
27079    13207    838    2016-02-03 08:11:18    2016-02-03 08:11:18
27080    18259    858    2016-03-14 22:13:38    2016-03-14 22:13:38
27081    15981    663    2016-02-13 05:50:57    2016-02-13 05:50:57
27082    14095    483    2016-04-12 13:37:29    2016-04-12 13:37:29
27083    14518    592    2016-04-06 02:41:19    2016-04-06 02:41:19
27084    14371    625    2016-01-29 15:14:24    2016-01-29 15:14:24
27085    15632    618    2016-02-28 00:59:26    2016-02-28 00:59:26
27086    15432    661    2016-03-03 06:17:58    2016-03-03 06:17:58
27087    17037    804    2016-02-11 02:31:34    2016-02-11 02:31:34
27088    11830    643    2016-03-16 21:53:39    2016-03-16 21:53:39
27089    16001    679    2016-04-14 07:06:08    2016-04-14 07:06:08
27090    11070    611    2016-02-06 00:12:05    2016-02-06 00:12:05
27091    12099    806    2016-03-11 08:10:11    2016-03-11 08:10:11
27092    16038    554    2016-02-04 18:21:12    2016-02-04 18:21:12
27093    10899    625    2016-04-10 01:09:27    2016-04-10 01:09:27
27094    14848    925    2016-02-21 19:51:44    2016-02-21 19:51:44
27095    14939    792    2016-02-02 21:59:20    2016-02-02 21:59:20
27096    10989    783    2016-03-29 12:44:21    2016-03-29 12:44:21
27097    13919    730    2016-02-21 16:58:31    2016-02-21 16:58:31
27098    18866    749    2016-04-10 13:10:46    2016-04-10 13:10:46
27099    19124    598    2016-04-06 11:02:04    2016-04-06 11:02:04
27100    13110    652    2016-03-25 01:11:00    2016-03-25 01:11:00
27101    13637    805    2016-02-10 22:15:13    2016-02-10 22:15:13
27102    14717    774    2016-02-13 01:09:26    2016-02-13 01:09:26
27103    16207    653    2016-03-10 12:45:53    2016-03-10 12:45:53
27104    14564    502    2016-01-23 14:01:26    2016-01-23 14:01:26
27105    12755    637    2016-04-18 23:50:38    2016-04-18 23:50:38
27106    11325    526    2016-02-05 03:56:23    2016-02-05 03:56:23
27107    14886    525    2016-02-28 06:02:49    2016-02-28 06:02:49
27108    15335    879    2016-02-20 06:52:28    2016-02-20 06:52:28
27109    17902    911    2016-03-29 20:36:42    2016-03-29 20:36:42
27110    13047    569    2016-03-07 17:34:40    2016-03-07 17:34:40
27111    13033    742    2016-03-12 03:07:36    2016-03-12 03:07:36
27112    15770    916    2016-03-08 21:37:24    2016-03-08 21:37:24
27113    15268    739    2016-03-25 03:43:39    2016-03-25 03:43:39
27114    11614    681    2016-02-01 12:48:55    2016-02-01 12:48:55
27115    14332    749    2016-03-20 16:24:31    2016-03-20 16:24:31
27116    15436    815    2016-02-05 00:51:33    2016-02-05 00:51:33
27117    18084    770    2016-02-22 09:40:36    2016-02-22 09:40:36
27118    12124    759    2016-03-09 11:39:08    2016-03-09 11:39:08
27119    14458    857    2016-04-18 02:22:35    2016-04-18 02:22:35
27120    16343    769    2016-03-05 20:34:41    2016-03-05 20:34:41
27121    14742    585    2016-03-23 03:34:14    2016-03-23 03:34:14
27122    12094    470    2016-02-03 13:20:33    2016-02-03 13:20:33
27123    10025    821    2016-01-31 23:09:29    2016-01-31 23:09:29
27124    11929    646    2016-02-21 12:55:52    2016-02-21 12:55:52
27125    13515    736    2016-03-21 10:37:22    2016-03-21 10:37:22
27126    14181    805    2016-04-17 11:03:13    2016-04-17 11:03:13
27127    17121    874    2016-04-01 07:52:19    2016-04-01 07:52:19
27128    14422    766    2016-04-04 15:16:36    2016-04-04 15:16:36
27129    17978    592    2016-03-20 02:17:00    2016-03-20 02:17:00
27130    13645    692    2016-04-20 13:56:18    2016-04-20 13:56:18
27131    18021    507    2016-02-15 17:35:28    2016-02-15 17:35:28
27132    10973    722    2016-03-09 07:47:06    2016-03-09 07:47:06
27133    15423    708    2016-01-31 00:26:00    2016-01-31 00:26:00
27134    17079    754    2016-02-06 09:35:18    2016-02-06 09:35:18
27135    11974    466    2016-02-17 06:07:44    2016-02-17 06:07:44
27136    16015    698    2016-03-26 09:05:00    2016-03-26 09:05:00
27137    16881    837    2016-01-30 23:51:06    2016-01-30 23:51:06
27138    13173    783    2016-03-29 09:21:34    2016-03-29 09:21:34
27139    19735    757    2016-01-28 13:28:08    2016-01-28 13:28:08
27140    19577    881    2016-04-09 14:23:48    2016-04-09 14:23:48
27141    17792    654    2016-03-16 00:03:26    2016-03-16 00:03:26
27142    18865    641    2016-04-20 19:08:43    2016-04-20 19:08:43
27143    19373    546    2016-04-17 11:08:44    2016-04-17 11:08:44
27144    12996    829    2016-03-12 04:26:37    2016-03-12 04:26:37
27145    14191    767    2016-03-21 04:55:35    2016-03-21 04:55:35
27146    11964    756    2016-03-25 14:59:59    2016-03-25 14:59:59
27147    16800    801    2016-01-29 17:04:45    2016-01-29 17:04:45
27148    13581    700    2016-02-13 05:54:13    2016-02-13 05:54:13
27149    15671    803    2016-03-16 22:52:50    2016-03-16 22:52:50
27150    16361    513    2016-02-03 20:03:36    2016-02-03 20:03:36
27151    18260    615    2016-03-21 11:34:24    2016-03-21 11:34:24
27152    11253    685    2016-02-20 20:00:32    2016-02-20 20:00:32
27153    12037    755    2016-04-18 03:09:37    2016-04-18 03:09:37
27154    14338    961    2016-03-22 21:28:31    2016-03-22 21:28:31
27155    18876    671    2016-03-30 01:22:08    2016-03-30 01:22:08
27156    17864    597    2016-03-08 00:43:20    2016-03-08 00:43:20
27157    15477    541    2016-02-14 09:41:44    2016-02-14 09:41:44
27158    16667    743    2016-04-18 15:04:06    2016-04-18 15:04:06
27159    13132    868    2016-03-08 10:01:22    2016-03-08 10:01:22
27160    11460    517    2016-02-05 15:17:51    2016-02-05 15:17:51
27161    16140    711    2016-04-16 07:24:10    2016-04-16 07:24:10
27162    12233    475    2016-03-31 23:56:20    2016-03-31 23:56:20
27163    17721    703    2016-02-17 22:15:21    2016-02-17 22:15:21
27164    16622    694    2016-04-16 10:39:41    2016-04-16 10:39:41
27165    14148    569    2016-02-03 21:33:22    2016-02-03 21:33:22
27166    18453    670    2016-04-12 20:39:27    2016-04-12 20:39:27
27167    12931    514    2016-02-29 02:59:29    2016-02-29 02:59:29
27168    13464    489    2016-03-19 18:35:26    2016-03-19 18:35:26
27169    19372    685    2016-04-17 17:44:06    2016-04-17 17:44:06
27170    19398    599    2016-01-28 06:58:52    2016-01-28 06:58:52
27171    11061    782    2016-02-27 02:11:56    2016-02-27 02:11:56
27172    16958    538    2016-03-12 13:29:54    2016-03-12 13:29:54
27173    19370    471    2016-03-24 15:53:25    2016-03-24 15:53:25
27174    14361    784    2016-03-15 12:04:20    2016-03-15 12:04:20
27175    13338    789    2016-02-17 15:29:01    2016-02-17 15:29:01
27176    14029    642    2016-03-25 11:10:35    2016-03-25 11:10:35
27177    16044    815    2016-03-08 12:13:10    2016-03-08 12:13:10
27178    19026    635    2016-04-01 08:52:59    2016-04-01 08:52:59
27179    18780    853    2016-04-13 21:59:10    2016-04-13 21:59:10
27180    17993    837    2016-02-29 07:03:17    2016-02-29 07:03:17
27181    14350    553    2016-04-05 11:17:18    2016-04-05 11:17:18
27182    16239    791    2016-03-02 05:45:38    2016-03-02 05:45:38
27183    18026    745    2016-02-05 19:57:17    2016-02-05 19:57:17
27184    18403    876    2016-04-05 02:19:14    2016-04-05 02:19:14
27185    16730    580    2016-02-01 12:27:41    2016-02-01 12:27:41
27186    12162    777    2016-03-08 22:03:34    2016-03-08 22:03:34
27187    15224    779    2016-02-15 15:08:40    2016-02-15 15:08:40
27188    14208    875    2016-03-03 18:40:21    2016-03-03 18:40:21
27189    18851    508    2016-03-13 03:11:04    2016-03-13 03:11:04
27190    17806    657    2016-02-01 07:27:34    2016-02-01 07:27:34
27191    15648    783    2016-01-29 00:37:58    2016-01-29 00:37:58
27192    14637    628    2016-02-03 21:52:46    2016-02-03 21:52:46
27193    18239    692    2016-01-26 02:02:44    2016-01-26 02:02:44
27194    10762    959    2016-02-01 17:37:41    2016-02-01 17:37:41
27195    11354    728    2016-02-18 07:38:27    2016-02-18 07:38:27
27196    10146    760    2016-02-24 15:27:49    2016-02-24 15:27:49
27197    13293    801    2016-03-22 08:22:03    2016-03-22 08:22:03
27198    15495    668    2016-02-06 23:19:58    2016-02-06 23:19:58
27199    16546    896    2016-03-09 19:41:58    2016-03-09 19:41:58
27200    14644    572    2016-03-01 12:17:45    2016-03-01 12:17:45
27201    12252    936    2016-04-19 06:23:06    2016-04-19 06:23:06
27202    18451    595    2016-02-09 17:28:49    2016-02-09 17:28:49
27203    11740    508    2016-04-07 11:17:05    2016-04-07 11:17:05
27204    18522    632    2016-01-26 18:56:46    2016-01-26 18:56:46
27205    18622    772    2016-01-27 07:26:45    2016-01-27 07:26:45
27206    17253    947    2016-04-04 10:23:38    2016-04-04 10:23:38
27207    16066    539    2016-03-03 02:24:39    2016-03-03 02:24:39
27208    12068    465    2016-02-27 17:40:00    2016-02-27 17:40:00
27209    17787    637    2016-03-12 12:02:00    2016-03-12 12:02:00
27210    17555    570    2016-02-28 11:55:26    2016-02-28 11:55:26
27211    13820    656    2016-03-13 08:29:28    2016-03-13 08:29:28
27212    14688    536    2016-03-24 01:59:27    2016-03-24 01:59:27
27213    19639    570    2016-02-24 15:52:30    2016-02-24 15:52:30
27214    15517    536    2016-03-01 18:01:34    2016-03-01 18:01:34
27215    14789    906    2016-02-13 07:10:22    2016-02-13 07:10:22
27216    14362    624    2016-03-24 05:03:59    2016-03-24 05:03:59
27217    13419    521    2016-02-11 16:02:48    2016-02-11 16:02:48
27218    18900    919    2016-02-04 01:24:44    2016-02-04 01:24:44
27219    15258    493    2016-01-29 21:55:25    2016-01-29 21:55:25
27220    17836    741    2016-01-24 08:04:26    2016-01-24 08:04:26
27221    13004    748    2016-02-28 06:55:47    2016-02-28 06:55:47
27222    16101    854    2016-04-01 05:41:53    2016-04-01 05:41:53
27223    14598    755    2016-04-17 16:44:22    2016-04-17 16:44:22
27224    11717    612    2016-03-05 14:55:24    2016-03-05 14:55:24
27225    11572    798    2016-04-01 03:10:50    2016-04-01 03:10:50
27226    14291    751    2016-01-26 13:22:30    2016-01-26 13:22:30
27227    14652    815    2016-03-07 03:31:36    2016-03-07 03:31:36
27228    14633    598    2016-03-15 09:34:51    2016-03-15 09:34:51
27229    14929    478    2016-03-28 14:40:15    2016-03-28 14:40:15
27230    15704    726    2016-04-18 03:03:33    2016-04-18 03:03:33
27231    14248    572    2016-03-22 04:16:39    2016-03-22 04:16:39
27232    12815    737    2016-04-06 10:37:00    2016-04-06 10:37:00
27233    18395    651    2016-01-24 13:51:44    2016-01-24 13:51:44
27234    10279    713    2016-03-05 12:44:22    2016-03-05 12:44:22
27235    10156    780    2016-01-31 00:28:06    2016-01-31 00:28:06
27236    18009    633    2016-01-26 10:05:58    2016-01-26 10:05:58
27237    11501    781    2016-03-24 06:03:54    2016-03-24 06:03:54
27238    12217    590    2016-04-15 19:37:01    2016-04-15 19:37:01
27239    18419    854    2016-04-12 21:19:52    2016-04-12 21:19:52
27240    18733    751    2016-03-31 13:40:29    2016-03-31 13:40:29
27241    18258    556    2016-03-16 01:22:36    2016-03-16 01:22:36
27242    12001    744    2016-03-02 01:58:41    2016-03-02 01:58:41
27243    16639    622    2016-04-15 00:03:32    2016-04-15 00:03:32
27244    13114    544    2016-02-02 14:46:23    2016-02-02 14:46:23
27245    12336    495    2016-02-02 20:33:56    2016-02-02 20:33:56
27246    12698    520    2016-03-09 17:03:23    2016-03-09 17:03:23
27247    18340    914    2016-02-25 08:59:29    2016-02-25 08:59:29
27248    17605    521    2016-03-24 13:26:08    2016-03-24 13:26:08
27249    16881    887    2016-04-10 15:56:34    2016-04-10 15:56:34
27250    11338    510    2016-02-05 07:22:27    2016-02-05 07:22:27
27251    19124    769    2016-02-23 01:52:27    2016-02-23 01:52:27
27252    17803    932    2016-04-16 18:48:26    2016-04-16 18:48:26
27253    17286    913    2016-04-20 10:45:06    2016-04-20 10:45:06
27254    17659    822    2016-02-26 18:38:56    2016-02-26 18:38:56
27255    12897    715    2016-02-10 18:24:23    2016-02-10 18:24:23
27256    11188    618    2016-01-26 18:25:46    2016-01-26 18:25:46
27257    15495    812    2016-02-29 02:49:22    2016-02-29 02:49:22
27258    17624    885    2016-02-03 14:54:34    2016-02-03 14:54:34
27259    15596    860    2016-01-22 16:41:29    2016-01-22 16:41:29
27260    13089    809    2016-01-30 08:22:39    2016-01-30 08:22:39
27261    10822    832    2016-04-02 16:33:19    2016-04-02 16:33:19
27262    17121    631    2016-03-02 12:30:33    2016-03-02 12:30:33
27263    17861    515    2016-04-11 23:46:11    2016-04-11 23:46:11
27264    13423    655    2016-03-02 21:38:43    2016-03-02 21:38:43
27265    15789    856    2016-03-27 21:04:42    2016-03-27 21:04:42
27266    18682    565    2016-03-15 11:14:18    2016-03-15 11:14:18
27267    18453    571    2016-03-05 11:54:52    2016-03-05 11:54:52
27268    16309    584    2016-03-07 00:36:33    2016-03-07 00:36:33
27269    17832    877    2016-03-09 11:29:54    2016-03-09 11:29:54
27270    15191    524    2016-03-19 20:48:11    2016-03-19 20:48:11
27271    10138    555    2016-03-22 04:27:26    2016-03-22 04:27:26
27272    10653    621    2016-04-14 05:41:45    2016-04-14 05:41:45
27273    18252    927    2016-04-10 10:55:48    2016-04-10 10:55:48
27274    15113    875    2016-02-05 02:08:05    2016-02-05 02:08:05
27275    11903    508    2016-02-22 13:16:13    2016-02-22 13:16:13
27276    13157    642    2016-02-12 08:55:05    2016-02-12 08:55:05
27277    18613    497    2016-03-23 23:02:40    2016-03-23 23:02:40
27278    12051    664    2016-02-15 05:24:49    2016-02-15 05:24:49
27279    19771    882    2016-02-01 21:51:38    2016-02-01 21:51:38
27280    17715    842    2016-04-11 15:58:59    2016-04-11 15:58:59
27281    12152    520    2016-02-12 21:43:25    2016-02-12 21:43:25
27282    19893    502    2016-02-15 13:16:49    2016-02-15 13:16:49
27283    19971    731    2016-03-31 12:29:42    2016-03-31 12:29:42
27284    16812    946    2016-02-09 19:12:56    2016-02-09 19:12:56
27285    15277    552    2016-03-09 00:49:16    2016-03-09 00:49:16
27286    16468    825    2016-02-10 18:04:00    2016-02-10 18:04:00
27287    14361    639    2016-01-26 14:29:52    2016-01-26 14:29:52
27288    13188    877    2016-03-22 08:11:22    2016-03-22 08:11:22
27289    10033    877    2016-01-25 22:34:40    2016-01-25 22:34:40
27290    13569    884    2016-02-21 02:40:27    2016-02-21 02:40:27
27291    16134    514    2016-02-23 06:44:00    2016-02-23 06:44:00
27292    11970    930    2016-02-11 12:45:19    2016-02-11 12:45:19
27293    18691    561    2016-03-28 02:46:51    2016-03-28 02:46:51
27294    18130    549    2016-03-17 15:19:33    2016-03-17 15:19:33
27295    14520    813    2016-02-17 09:07:15    2016-02-17 09:07:15
27296    19266    902    2016-02-24 18:14:30    2016-02-24 18:14:30
27297    13503    624    2016-04-10 00:14:43    2016-04-10 00:14:43
27298    11203    479    2016-01-23 13:58:07    2016-01-23 13:58:07
27299    14858    508    2016-03-02 15:04:54    2016-03-02 15:04:54
27300    13010    951    2016-03-15 12:07:07    2016-03-15 12:07:07
27301    10062    565    2016-04-03 03:56:24    2016-04-03 03:56:24
27302    11551    706    2016-03-07 05:29:04    2016-03-07 05:29:04
27303    19222    506    2016-01-25 21:52:57    2016-01-25 21:52:57
27304    14286    612    2016-03-12 22:17:21    2016-03-12 22:17:21
27305    11395    527    2016-03-10 17:53:56    2016-03-10 17:53:56
27306    16929    737    2016-03-13 05:42:16    2016-03-13 05:42:16
27307    15708    533    2016-04-03 13:06:28    2016-04-03 13:06:28
27308    16762    859    2016-01-29 06:20:20    2016-01-29 06:20:20
27309    11827    708    2016-03-30 19:15:48    2016-03-30 19:15:48
27310    12691    505    2016-03-12 04:12:28    2016-03-12 04:12:28
27311    10095    625    2016-02-18 08:32:09    2016-02-18 08:32:09
27312    15203    805    2016-02-01 01:28:10    2016-02-01 01:28:10
27313    14822    739    2016-04-05 08:57:02    2016-04-05 08:57:02
27314    17117    826    2016-04-16 20:31:31    2016-04-16 20:31:31
27315    11365    664    2016-01-22 23:17:10    2016-01-22 23:17:10
27316    18365    750    2016-04-02 15:34:09    2016-04-02 15:34:09
27317    14433    755    2016-03-30 03:12:52    2016-03-30 03:12:52
27318    14193    606    2016-02-21 20:22:01    2016-02-21 20:22:01
27319    19539    863    2016-03-05 10:23:19    2016-03-05 10:23:19
27320    11773    872    2016-03-15 05:46:07    2016-03-15 05:46:07
27321    11130    760    2016-03-10 08:11:06    2016-03-10 08:11:06
27322    11494    639    2016-04-07 22:46:47    2016-04-07 22:46:47
27323    12869    545    2016-04-20 08:08:59    2016-04-20 08:08:59
27324    16401    873    2016-03-16 12:14:55    2016-03-16 12:14:55
27325    19389    699    2016-03-15 17:29:53    2016-03-15 17:29:53
27326    11045    876    2016-02-18 23:43:38    2016-02-18 23:43:38
27327    19082    775    2016-04-04 21:55:42    2016-04-04 21:55:42
27328    18320    788    2016-02-11 17:18:03    2016-02-11 17:18:03
27329    13087    498    2016-03-02 20:06:55    2016-03-02 20:06:55
27330    15318    750    2016-02-13 17:08:07    2016-02-13 17:08:07
27331    10588    698    2016-04-10 01:11:54    2016-04-10 01:11:54
27332    10305    562    2016-03-26 14:36:11    2016-03-26 14:36:11
27333    17574    864    2016-02-23 18:17:30    2016-02-23 18:17:30
27334    11886    938    2016-02-22 14:03:32    2016-02-22 14:03:32
27335    12820    776    2016-03-28 07:52:32    2016-03-28 07:52:32
27336    15519    498    2016-02-26 08:46:22    2016-02-26 08:46:22
27337    15254    499    2016-04-15 01:47:24    2016-04-15 01:47:24
27338    14964    744    2016-04-09 09:50:31    2016-04-09 09:50:31
27339    12672    856    2016-04-11 04:00:53    2016-04-11 04:00:53
27340    14765    610    2016-03-07 09:55:48    2016-03-07 09:55:48
27341    13877    913    2016-03-24 12:51:20    2016-03-24 12:51:20
27342    15490    944    2016-02-02 21:11:18    2016-02-02 21:11:18
27343    16076    533    2016-04-05 07:23:30    2016-04-05 07:23:30
27344    17842    780    2016-03-11 06:36:23    2016-03-11 06:36:23
27345    17592    923    2016-02-08 18:23:34    2016-02-08 18:23:34
27346    14369    953    2016-02-27 09:29:35    2016-02-27 09:29:35
27347    14652    790    2016-03-30 16:15:44    2016-03-30 16:15:44
27348    16351    628    2016-04-13 06:28:22    2016-04-13 06:28:22
27349    18347    689    2016-04-08 11:57:14    2016-04-08 11:57:14
27350    12194    575    2016-04-08 11:02:56    2016-04-08 11:02:56
27351    15545    673    2016-04-07 02:56:29    2016-04-07 02:56:29
27352    15908    528    2016-02-29 23:38:23    2016-02-29 23:38:23
27353    11919    939    2016-03-04 14:01:37    2016-03-04 14:01:37
27354    11305    951    2016-03-27 05:49:13    2016-03-27 05:49:13
27355    11373    728    2016-02-10 11:09:35    2016-02-10 11:09:35
27356    11346    659    2016-03-30 15:13:00    2016-03-30 15:13:00
27357    13561    706    2016-03-13 10:28:41    2016-03-13 10:28:41
27358    15735    685    2016-01-23 10:01:20    2016-01-23 10:01:20
27359    11693    680    2016-03-06 15:57:43    2016-03-06 15:57:43
27360    13975    499    2016-02-14 04:00:40    2016-02-14 04:00:40
27361    13133    883    2016-04-13 19:12:18    2016-04-13 19:12:18
27362    16404    517    2016-03-23 23:30:02    2016-03-23 23:30:02
27363    15878    547    2016-02-11 16:46:26    2016-02-11 16:46:26
27364    18885    507    2016-04-20 19:39:21    2016-04-20 19:39:21
27365    16271    489    2016-04-14 05:56:29    2016-04-14 05:56:29
27366    10040    671    2016-03-02 01:55:31    2016-03-02 01:55:31
27367    19803    614    2016-02-23 07:21:32    2016-02-23 07:21:32
27368    11197    941    2016-01-24 11:07:18    2016-01-24 11:07:18
27369    11059    788    2016-02-04 05:11:40    2016-02-04 05:11:40
27370    12350    832    2016-02-10 02:29:47    2016-02-10 02:29:47
27371    13012    942    2016-03-18 02:20:13    2016-03-18 02:20:13
27372    10322    959    2016-01-28 13:27:40    2016-01-28 13:27:40
27373    11669    710    2016-02-17 10:56:17    2016-02-17 10:56:17
27374    13164    786    2016-03-27 16:32:33    2016-03-27 16:32:33
27375    10837    686    2016-03-16 20:52:02    2016-03-16 20:52:02
27376    14091    958    2016-03-03 11:46:52    2016-03-03 11:46:52
27377    10815    578    2016-04-02 16:31:04    2016-04-02 16:31:04
27378    17423    900    2016-02-17 18:48:53    2016-02-17 18:48:53
27379    17199    674    2016-03-08 14:29:29    2016-03-08 14:29:29
27380    12194    726    2016-03-14 23:03:14    2016-03-14 23:03:14
27381    11067    860    2016-03-05 16:01:18    2016-03-05 16:01:18
27382    11591    941    2016-03-06 07:47:10    2016-03-06 07:47:10
27383    15438    529    2016-03-30 04:59:11    2016-03-30 04:59:11
27384    13750    906    2016-04-05 01:17:07    2016-04-05 01:17:07
27385    17063    923    2016-02-08 03:56:58    2016-02-08 03:56:58
27386    15914    825    2016-04-20 14:06:16    2016-04-20 14:06:16
27387    15102    500    2016-03-31 22:20:16    2016-03-31 22:20:16
27388    13494    782    2016-03-17 03:21:28    2016-03-17 03:21:28
27389    12223    865    2016-03-12 16:52:11    2016-03-12 16:52:11
27390    18665    624    2016-03-01 15:06:33    2016-03-01 15:06:33
27391    16230    605    2016-04-13 09:04:12    2016-04-13 09:04:12
27392    14126    882    2016-02-27 02:11:47    2016-02-27 02:11:47
27393    12465    913    2016-03-26 11:52:27    2016-03-26 11:52:27
27394    18231    916    2016-04-02 09:19:44    2016-04-02 09:19:44
27395    14404    598    2016-04-16 00:39:24    2016-04-16 00:39:24
27396    15446    671    2016-04-04 14:16:48    2016-04-04 14:16:48
27397    12849    688    2016-02-06 10:44:50    2016-02-06 10:44:50
27398    17367    506    2016-03-14 11:23:13    2016-03-14 11:23:13
27399    13959    501    2016-02-17 13:33:51    2016-02-17 13:33:51
27400    15555    742    2016-04-10 08:51:05    2016-04-10 08:51:05
27401    14726    522    2016-01-23 17:15:20    2016-01-23 17:15:20
27402    18194    841    2016-02-25 17:08:51    2016-02-25 17:08:51
27403    14537    712    2016-04-08 12:45:42    2016-04-08 12:45:42
27404    16620    769    2016-01-25 08:42:39    2016-01-25 08:42:39
27405    13165    816    2016-02-05 21:35:00    2016-02-05 21:35:00
27406    14756    872    2016-03-16 14:54:39    2016-03-16 14:54:39
27407    19350    643    2016-04-02 15:37:19    2016-04-02 15:37:19
27408    17407    649    2016-02-09 22:13:56    2016-02-09 22:13:56
27409    11240    801    2016-01-23 08:00:05    2016-01-23 08:00:05
27410    19859    534    2016-02-01 02:24:30    2016-02-01 02:24:30
27411    13919    803    2016-02-05 02:25:39    2016-02-05 02:25:39
27412    19179    874    2016-02-05 04:25:15    2016-02-05 04:25:15
27413    14160    961    2016-03-31 19:55:44    2016-03-31 19:55:44
27414    17666    922    2016-03-16 08:58:02    2016-03-16 08:58:02
27415    14285    929    2016-01-28 05:19:12    2016-01-28 05:19:12
27416    13632    570    2016-03-26 16:47:40    2016-03-26 16:47:40
27417    14232    760    2016-01-31 03:03:30    2016-01-31 03:03:30
27418    17418    759    2016-04-17 07:48:47    2016-04-17 07:48:47
27419    12768    896    2016-03-05 12:36:36    2016-03-05 12:36:36
27420    17355    944    2016-03-10 16:51:45    2016-03-10 16:51:45
27421    11022    766    2016-02-09 04:26:36    2016-02-09 04:26:36
27422    13136    957    2016-03-01 21:14:18    2016-03-01 21:14:18
27423    16666    634    2016-02-18 12:46:27    2016-02-18 12:46:27
27424    14645    500    2016-01-22 10:13:22    2016-01-22 10:13:22
27425    15534    475    2016-03-10 23:02:12    2016-03-10 23:02:12
27426    18703    623    2016-02-18 00:41:02    2016-02-18 00:41:02
27427    18362    551    2016-02-19 21:24:36    2016-02-19 21:24:36
27428    19388    647    2016-03-05 15:29:59    2016-03-05 15:29:59
27429    12032    603    2016-04-18 04:20:12    2016-04-18 04:20:12
27430    18473    874    2016-02-28 07:27:08    2016-02-28 07:27:08
27431    12848    565    2016-02-16 13:08:40    2016-02-16 13:08:40
27432    13596    777    2016-02-26 22:30:04    2016-02-26 22:30:04
27433    18189    476    2016-04-10 12:54:38    2016-04-10 12:54:38
27434    13704    807    2016-01-27 21:31:20    2016-01-27 21:31:20
27435    18033    691    2016-02-03 19:50:10    2016-02-03 19:50:10
27436    19010    697    2016-02-05 06:41:34    2016-02-05 06:41:34
27437    10880    574    2016-03-08 07:32:26    2016-03-08 07:32:26
27438    18814    746    2016-02-06 03:45:07    2016-02-06 03:45:07
27439    17361    542    2016-01-26 07:16:13    2016-01-26 07:16:13
27440    19973    876    2016-01-25 00:18:15    2016-01-25 00:18:15
27441    11033    947    2016-03-02 11:45:45    2016-03-02 11:45:45
27442    16654    689    2016-03-09 21:45:27    2016-03-09 21:45:27
27443    12296    799    2016-02-14 07:16:03    2016-02-14 07:16:03
27444    10366    685    2016-02-18 20:56:23    2016-02-18 20:56:23
27445    19993    792    2016-04-17 14:34:16    2016-04-17 14:34:16
27446    15758    595    2016-01-26 15:52:32    2016-01-26 15:52:32
27447    11458    648    2016-04-16 04:28:21    2016-04-16 04:28:21
27448    16313    673    2016-02-02 06:29:48    2016-02-02 06:29:48
27449    11788    562    2016-04-16 09:03:46    2016-04-16 09:03:46
27450    12644    845    2016-03-22 10:12:46    2016-03-22 10:12:46
27451    17530    486    2016-03-11 06:06:44    2016-03-11 06:06:44
27452    17102    522    2016-02-26 13:30:07    2016-02-26 13:30:07
27453    14876    608    2016-02-19 19:21:04    2016-02-19 19:21:04
27454    15710    542    2016-03-23 16:55:05    2016-03-23 16:55:05
27455    16902    589    2016-02-24 18:30:06    2016-02-24 18:30:06
27456    10154    863    2016-03-14 11:37:38    2016-03-14 11:37:38
27457    15729    630    2016-02-22 04:30:25    2016-02-22 04:30:25
27458    19273    733    2016-04-19 21:19:07    2016-04-19 21:19:07
27459    16258    772    2016-02-19 01:35:42    2016-02-19 01:35:42
27460    18600    583    2016-02-15 20:27:49    2016-02-15 20:27:49
27461    14935    674    2016-02-13 04:50:55    2016-02-13 04:50:55
27462    11553    923    2016-04-14 20:54:05    2016-04-14 20:54:05
27463    14986    835    2016-03-27 14:09:38    2016-03-27 14:09:38
27464    15365    598    2016-02-22 00:58:26    2016-02-22 00:58:26
27465    12718    840    2016-02-02 21:22:42    2016-02-02 21:22:42
27466    15039    830    2016-03-16 08:58:45    2016-03-16 08:58:45
27467    17353    500    2016-04-11 00:23:13    2016-04-11 00:23:13
27468    17609    545    2016-03-08 02:49:19    2016-03-08 02:49:19
27469    17692    897    2016-03-18 10:32:53    2016-03-18 10:32:53
27470    13931    786    2016-02-09 20:27:13    2016-02-09 20:27:13
27471    17099    672    2016-03-05 07:35:36    2016-03-05 07:35:36
27472    16029    939    2016-01-24 15:30:20    2016-01-24 15:30:20
27473    14284    590    2016-01-24 23:55:39    2016-01-24 23:55:39
27474    17500    744    2016-02-11 17:44:17    2016-02-11 17:44:17
27475    14407    872    2016-04-15 08:22:31    2016-04-15 08:22:31
27476    17320    673    2016-03-09 20:04:16    2016-03-09 20:04:16
27477    11366    485    2016-03-15 15:22:22    2016-03-15 15:22:22
27478    17017    538    2016-02-29 09:05:38    2016-02-29 09:05:38
27479    11634    467    2016-02-15 04:47:31    2016-02-15 04:47:31
27480    14489    511    2016-03-12 04:29:03    2016-03-12 04:29:03
27481    17054    550    2016-02-27 21:35:34    2016-02-27 21:35:34
27482    13082    708    2016-03-05 07:43:22    2016-03-05 07:43:22
27483    10012    717    2016-01-26 14:09:20    2016-01-26 14:09:20
27484    17587    676    2016-03-22 11:20:56    2016-03-22 11:20:56
27485    15172    922    2016-04-15 09:29:14    2016-04-15 09:29:14
27486    16753    789    2016-03-15 19:44:17    2016-03-15 19:44:17
27487    17073    612    2016-03-22 09:59:54    2016-03-22 09:59:54
27488    15788    855    2016-03-08 06:57:53    2016-03-08 06:57:53
27489    19514    835    2016-03-06 08:37:45    2016-03-06 08:37:45
27490    13028    821    2016-01-28 22:00:14    2016-01-28 22:00:14
27491    13395    544    2016-03-13 13:03:03    2016-03-13 13:03:03
27492    10048    651    2016-03-17 23:19:12    2016-03-17 23:19:12
27493    16475    567    2016-02-11 19:45:41    2016-02-11 19:45:41
27494    12765    665    2016-03-23 16:19:38    2016-03-23 16:19:38
27495    13149    655    2016-02-24 21:29:47    2016-02-24 21:29:47
27496    17505    765    2016-03-22 18:40:20    2016-03-22 18:40:20
27497    11878    706    2016-02-07 13:24:00    2016-02-07 13:24:00
27498    15726    577    2016-02-09 08:17:21    2016-02-09 08:17:21
27499    13097    469    2016-04-19 17:18:15    2016-04-19 17:18:15
27500    11847    818    2016-04-08 15:30:17    2016-04-08 15:30:17
27501    13063    654    2016-03-28 14:20:09    2016-03-28 14:20:09
27502    11441    806    2016-04-16 23:04:50    2016-04-16 23:04:50
27503    13098    943    2016-03-24 11:44:36    2016-03-24 11:44:36
27504    16015    788    2016-02-22 13:51:49    2016-02-22 13:51:49
27505    11848    507    2016-02-02 15:23:45    2016-02-02 15:23:45
27506    14317    588    2016-04-15 00:22:09    2016-04-15 00:22:09
27507    10741    720    2016-01-22 19:33:01    2016-01-22 19:33:01
27508    10981    844    2016-04-04 07:48:11    2016-04-04 07:48:11
27509    15908    509    2016-03-28 20:49:24    2016-03-28 20:49:24
27510    19198    777    2016-03-13 11:56:57    2016-03-13 11:56:57
27511    19962    934    2016-02-21 20:47:06    2016-02-21 20:47:06
27512    13262    731    2016-02-07 04:50:43    2016-02-07 04:50:43
27513    13938    708    2016-02-12 14:24:30    2016-02-12 14:24:30
27514    10155    741    2016-02-12 00:54:43    2016-02-12 00:54:43
27515    11901    846    2016-04-01 07:51:27    2016-04-01 07:51:27
27516    17471    832    2016-02-25 00:54:13    2016-02-25 00:54:13
27517    18807    670    2016-03-03 09:59:30    2016-03-03 09:59:30
27518    13156    848    2016-03-30 08:33:20    2016-03-30 08:33:20
27519    12828    738    2016-01-24 04:35:32    2016-01-24 04:35:32
27520    19236    959    2016-02-06 03:09:39    2016-02-06 03:09:39
27521    16944    716    2016-02-11 02:01:13    2016-02-11 02:01:13
27522    17714    494    2016-04-13 00:08:49    2016-04-13 00:08:49
27523    16035    579    2016-03-11 14:18:52    2016-03-11 14:18:52
27524    13316    653    2016-03-24 14:40:49    2016-03-24 14:40:49
27525    12723    505    2016-03-08 22:47:31    2016-03-08 22:47:31
27526    10979    800    2016-02-29 16:58:06    2016-02-29 16:58:06
27527    10296    662    2016-03-31 02:47:58    2016-03-31 02:47:58
27528    11639    517    2016-03-08 20:24:20    2016-03-08 20:24:20
27529    15014    470    2016-04-01 13:30:03    2016-04-01 13:30:03
27530    14823    478    2016-03-13 06:19:50    2016-03-13 06:19:50
27531    10236    961    2016-03-27 15:05:05    2016-03-27 15:05:05
27532    12299    802    2016-04-14 08:04:50    2016-04-14 08:04:50
27533    11962    931    2016-03-20 19:40:49    2016-03-20 19:40:49
27534    16355    483    2016-04-09 20:27:58    2016-04-09 20:27:58
27535    14609    655    2016-03-23 07:53:20    2016-03-23 07:53:20
27536    18346    563    2016-03-03 20:59:23    2016-03-03 20:59:23
27537    14257    825    2016-03-07 18:35:53    2016-03-07 18:35:53
27538    17305    787    2016-02-21 07:00:52    2016-02-21 07:00:52
27539    14532    511    2016-02-20 15:04:28    2016-02-20 15:04:28
27540    16845    737    2016-01-25 14:45:27    2016-01-25 14:45:27
27541    19846    933    2016-02-28 22:13:56    2016-02-28 22:13:56
27542    17992    599    2016-03-03 21:03:36    2016-03-03 21:03:36
27543    17280    805    2016-02-13 15:23:16    2016-02-13 15:23:16
27544    15946    496    2016-03-26 12:44:44    2016-03-26 12:44:44
27545    19471    636    2016-02-05 21:19:44    2016-02-05 21:19:44
27546    12161    704    2016-03-18 10:50:12    2016-03-18 10:50:12
27547    14478    535    2016-01-29 21:20:40    2016-01-29 21:20:40
27548    14875    934    2016-04-04 22:44:49    2016-04-04 22:44:49
27549    13358    810    2016-03-01 14:08:31    2016-03-01 14:08:31
27550    18734    568    2016-02-01 22:26:28    2016-02-01 22:26:28
27551    10327    844    2016-02-18 13:06:06    2016-02-18 13:06:06
27552    15546    866    2016-04-12 22:59:49    2016-04-12 22:59:49
27553    19947    787    2016-04-14 23:13:32    2016-04-14 23:13:32
27554    11777    758    2016-01-30 17:35:53    2016-01-30 17:35:53
27555    15950    814    2016-02-07 20:01:34    2016-02-07 20:01:34
27556    15874    510    2016-03-17 17:41:43    2016-03-17 17:41:43
27557    15035    560    2016-03-26 03:06:38    2016-03-26 03:06:38
27558    19122    771    2016-01-26 00:01:48    2016-01-26 00:01:48
27559    14538    561    2016-03-01 10:11:42    2016-03-01 10:11:42
27560    14153    735    2016-02-19 20:38:15    2016-02-19 20:38:15
27561    10702    521    2016-03-27 00:05:44    2016-03-27 00:05:44
27562    17465    546    2016-04-14 13:31:18    2016-04-14 13:31:18
27563    18611    670    2016-02-01 01:28:47    2016-02-01 01:28:47
27564    19949    671    2016-02-19 06:55:17    2016-02-19 06:55:17
27565    18535    840    2016-01-27 03:40:02    2016-01-27 03:40:02
27566    17714    652    2016-03-24 10:37:38    2016-03-24 10:37:38
27567    16459    808    2016-04-02 07:43:46    2016-04-02 07:43:46
27568    10307    756    2016-04-18 10:13:30    2016-04-18 10:13:30
27569    17765    655    2016-03-22 22:20:36    2016-03-22 22:20:36
27570    10735    646    2016-03-07 13:55:44    2016-03-07 13:55:44
27571    11856    907    2016-03-07 10:51:30    2016-03-07 10:51:30
27572    17189    468    2016-03-13 17:04:47    2016-03-13 17:04:47
27573    19927    778    2016-04-05 07:42:17    2016-04-05 07:42:17
27574    14605    681    2016-01-27 15:39:44    2016-01-27 15:39:44
27575    16851    919    2016-03-26 02:20:00    2016-03-26 02:20:00
27576    17702    858    2016-02-19 00:37:31    2016-02-19 00:37:31
27577    12337    816    2016-04-01 15:38:13    2016-04-01 15:38:13
27578    19932    655    2016-04-13 21:34:10    2016-04-13 21:34:10
27579    13733    718    2016-02-01 11:07:03    2016-02-01 11:07:03
27580    17994    481    2016-02-10 02:17:32    2016-02-10 02:17:32
27581    14965    568    2016-03-28 21:52:04    2016-03-28 21:52:04
27582    12273    549    2016-03-08 14:34:27    2016-03-08 14:34:27
27583    16426    744    2016-03-05 07:46:40    2016-03-05 07:46:40
27584    17731    668    2016-02-23 15:58:44    2016-02-23 15:58:44
27585    14138    674    2016-03-01 14:01:38    2016-03-01 14:01:38
27586    13739    796    2016-04-10 20:39:21    2016-04-10 20:39:21
27587    13874    777    2016-03-17 04:27:14    2016-03-17 04:27:14
27588    15343    789    2016-03-28 00:56:17    2016-03-28 00:56:17
27589    19544    675    2016-03-16 00:51:11    2016-03-16 00:51:11
27590    12859    839    2016-03-19 10:58:29    2016-03-19 10:58:29
27591    16663    827    2016-04-07 13:14:01    2016-04-07 13:14:01
27592    19908    711    2016-02-17 17:01:28    2016-02-17 17:01:28
27593    15371    621    2016-04-01 09:16:14    2016-04-01 09:16:14
27594    18908    669    2016-02-11 06:07:14    2016-02-11 06:07:14
27595    17590    825    2016-03-23 00:43:28    2016-03-23 00:43:28
27596    10495    549    2016-02-17 01:41:10    2016-02-17 01:41:10
27597    17266    918    2016-02-28 23:30:26    2016-02-28 23:30:26
27598    12406    916    2016-04-14 18:20:38    2016-04-14 18:20:38
27599    17164    767    2016-03-22 12:16:03    2016-03-22 12:16:03
27600    15122    800    2016-02-11 07:18:06    2016-02-11 07:18:06
27601    17482    509    2016-02-13 14:20:14    2016-02-13 14:20:14
27602    16561    703    2016-03-15 20:16:39    2016-03-15 20:16:39
27603    15639    683    2016-04-04 17:23:17    2016-04-04 17:23:17
27604    12205    759    2016-02-15 21:00:51    2016-02-15 21:00:51
27605    14057    617    2016-01-29 06:02:11    2016-01-29 06:02:11
27606    12269    639    2016-03-26 06:24:11    2016-03-26 06:24:11
27607    10954    821    2016-02-24 05:06:58    2016-02-24 05:06:58
27608    10965    958    2016-02-13 07:50:17    2016-02-13 07:50:17
27609    16294    548    2016-04-10 12:26:25    2016-04-10 12:26:25
27610    15460    875    2016-02-24 22:20:14    2016-02-24 22:20:14
27611    13281    807    2016-03-21 22:21:15    2016-03-21 22:21:15
27612    12643    554    2016-04-12 15:21:23    2016-04-12 15:21:23
27613    16111    931    2016-02-23 22:18:38    2016-02-23 22:18:38
27614    11165    858    2016-03-05 18:35:32    2016-03-05 18:35:32
27615    10066    787    2016-04-14 16:17:50    2016-04-14 16:17:50
27616    15192    852    2016-02-24 20:46:50    2016-02-24 20:46:50
27617    15315    530    2016-04-12 19:30:18    2016-04-12 19:30:18
27618    10091    809    2016-03-05 20:30:03    2016-03-05 20:30:03
27619    16188    888    2016-02-12 18:15:54    2016-02-12 18:15:54
27620    15418    583    2016-03-15 17:26:02    2016-03-15 17:26:02
27621    10325    568    2016-02-17 06:13:03    2016-02-17 06:13:03
27622    19731    704    2016-02-03 00:07:32    2016-02-03 00:07:32
27623    14895    657    2016-01-26 19:02:49    2016-01-26 19:02:49
27624    12627    904    2016-03-27 21:13:54    2016-03-27 21:13:54
27625    16446    540    2016-03-28 21:25:04    2016-03-28 21:25:04
27626    12495    955    2016-01-25 04:13:14    2016-01-25 04:13:14
27627    13209    867    2016-03-02 01:59:07    2016-03-02 01:59:07
27628    18526    728    2016-04-12 11:32:07    2016-04-12 11:32:07
27629    12091    541    2016-02-08 18:38:36    2016-02-08 18:38:36
27630    12935    892    2016-01-27 21:13:24    2016-01-27 21:13:24
27631    13173    508    2016-04-08 22:17:23    2016-04-08 22:17:23
27632    11700    931    2016-04-09 04:59:29    2016-04-09 04:59:29
27633    11441    794    2016-04-08 12:38:41    2016-04-08 12:38:41
27634    11856    607    2016-01-26 22:45:31    2016-01-26 22:45:31
27635    15538    626    2016-04-14 21:47:06    2016-04-14 21:47:06
27636    12192    775    2016-03-06 03:49:02    2016-03-06 03:49:02
27637    11351    943    2016-04-20 19:02:56    2016-04-20 19:02:56
27638    11476    652    2016-02-21 21:17:45    2016-02-21 21:17:45
27639    18198    638    2016-03-24 06:36:52    2016-03-24 06:36:52
27640    16852    649    2016-02-09 20:28:18    2016-02-09 20:28:18
27641    14793    920    2016-02-13 01:34:30    2016-02-13 01:34:30
27642    11403    552    2016-02-17 20:17:48    2016-02-17 20:17:48
27643    11441    601    2016-02-07 08:20:16    2016-02-07 08:20:16
27644    10011    656    2016-03-13 16:49:57    2016-03-13 16:49:57
27645    19259    686    2016-04-15 15:17:25    2016-04-15 15:17:25
27646    14839    507    2016-04-03 23:51:17    2016-04-03 23:51:17
27647    15622    944    2016-02-11 19:14:43    2016-02-11 19:14:43
27648    12521    847    2016-02-21 02:39:44    2016-02-21 02:39:44
27649    12774    768    2016-03-19 11:02:19    2016-03-19 11:02:19
27650    15629    657    2016-03-30 09:30:36    2016-03-30 09:30:36
27651    12718    858    2016-02-08 10:09:57    2016-02-08 10:09:57
27652    11853    568    2016-02-07 09:52:20    2016-02-07 09:52:20
27653    12232    851    2016-03-27 11:36:22    2016-03-27 11:36:22
27654    19907    563    2016-02-09 13:08:20    2016-02-09 13:08:20
27655    16620    772    2016-01-28 15:51:34    2016-01-28 15:51:34
27656    10416    822    2016-01-26 12:40:24    2016-01-26 12:40:24
27657    13736    561    2016-02-05 04:33:45    2016-02-05 04:33:45
27658    18871    831    2016-02-19 12:49:16    2016-02-19 12:49:16
27659    18581    850    2016-02-25 05:03:53    2016-02-25 05:03:53
27660    14681    794    2016-01-25 14:46:47    2016-01-25 14:46:47
27661    19540    644    2016-04-13 11:25:39    2016-04-13 11:25:39
27662    14566    653    2016-02-24 15:46:27    2016-02-24 15:46:27
27663    11525    863    2016-03-27 23:15:17    2016-03-27 23:15:17
27664    13272    761    2016-03-15 21:17:59    2016-03-15 21:17:59
27665    12552    487    2016-04-16 21:41:35    2016-04-16 21:41:35
27666    19002    691    2016-01-23 19:15:47    2016-01-23 19:15:47
27667    10789    882    2016-01-30 12:43:21    2016-01-30 12:43:21
27668    10668    922    2016-04-17 20:33:05    2016-04-17 20:33:05
27669    13372    687    2016-04-10 23:47:29    2016-04-10 23:47:29
27670    11128    648    2016-02-17 18:13:17    2016-02-17 18:13:17
27671    14213    686    2016-03-20 10:25:19    2016-03-20 10:25:19
27672    17794    642    2016-04-11 14:33:58    2016-04-11 14:33:58
27673    15067    831    2016-01-29 04:11:00    2016-01-29 04:11:00
27674    18925    851    2016-02-21 22:21:43    2016-02-21 22:21:43
27675    16080    844    2016-03-14 21:18:45    2016-03-14 21:18:45
27676    11942    882    2016-02-24 18:40:02    2016-02-24 18:40:02
27677    18495    793    2016-03-10 09:59:23    2016-03-10 09:59:23
27678    18292    835    2016-02-01 04:48:07    2016-02-01 04:48:07
27679    12094    791    2016-03-29 05:24:42    2016-03-29 05:24:42
27680    15971    673    2016-02-16 04:55:10    2016-02-16 04:55:10
27681    17594    703    2016-02-04 05:42:37    2016-02-04 05:42:37
27682    14451    888    2016-04-16 06:51:19    2016-04-16 06:51:19
27683    11200    902    2016-04-12 22:06:25    2016-04-12 22:06:25
27684    16780    900    2016-02-12 15:49:32    2016-02-12 15:49:32
27685    11247    543    2016-03-20 23:50:55    2016-03-20 23:50:55
27686    17422    471    2016-02-25 04:32:48    2016-02-25 04:32:48
27687    15449    488    2016-01-31 14:35:44    2016-01-31 14:35:44
27688    10394    844    2016-02-16 05:06:40    2016-02-16 05:06:40
27689    15868    759    2016-03-21 01:53:58    2016-03-21 01:53:58
27690    17166    622    2016-02-04 04:07:16    2016-02-04 04:07:16
27691    15404    739    2016-04-15 05:18:22    2016-04-15 05:18:22
27692    19388    702    2016-03-05 10:07:40    2016-03-05 10:07:40
27693    19370    823    2016-02-15 10:29:58    2016-02-15 10:29:58
27694    17210    592    2016-02-22 04:53:52    2016-02-22 04:53:52
27695    18547    633    2016-02-24 08:33:24    2016-02-24 08:33:24
27696    10975    528    2016-03-16 14:04:46    2016-03-16 14:04:46
27697    10921    861    2016-01-22 12:57:20    2016-01-22 12:57:20
27698    10718    691    2016-01-22 09:17:59    2016-01-22 09:17:59
27699    12158    538    2016-04-02 13:24:47    2016-04-02 13:24:47
27700    17924    592    2016-02-28 06:07:34    2016-02-28 06:07:34
27701    15645    668    2016-01-22 21:15:38    2016-01-22 21:15:38
27702    16843    598    2016-04-08 16:51:48    2016-04-08 16:51:48
27703    19026    468    2016-03-10 21:54:27    2016-03-10 21:54:27
27704    18605    507    2016-03-21 16:58:45    2016-03-21 16:58:45
27705    18830    473    2016-02-11 11:04:37    2016-02-11 11:04:37
27706    19853    577    2016-04-19 15:41:29    2016-04-19 15:41:29
27707    11867    471    2016-04-07 14:59:08    2016-04-07 14:59:08
27708    18470    958    2016-01-23 06:47:35    2016-01-23 06:47:35
27709    11532    874    2016-02-23 06:47:26    2016-02-23 06:47:26
27710    19263    621    2016-03-23 07:07:03    2016-03-23 07:07:03
27711    11547    659    2016-02-27 11:37:06    2016-02-27 11:37:06
27712    13976    643    2016-03-26 13:35:20    2016-03-26 13:35:20
27713    19549    702    2016-02-02 13:37:37    2016-02-02 13:37:37
27714    14175    915    2016-03-10 08:32:22    2016-03-10 08:32:22
27715    16821    534    2016-02-13 07:56:51    2016-02-13 07:56:51
27716    17937    924    2016-02-09 07:13:15    2016-02-09 07:13:15
27717    12249    771    2016-03-11 22:41:46    2016-03-11 22:41:46
27718    16747    754    2016-02-29 04:04:11    2016-02-29 04:04:11
27719    10681    647    2016-03-24 16:53:51    2016-03-24 16:53:51
27720    18619    856    2016-02-05 20:42:16    2016-02-05 20:42:16
27721    16917    612    2016-04-10 17:11:29    2016-04-10 17:11:29
27722    12535    610    2016-04-18 20:26:44    2016-04-18 20:26:44
27723    15602    887    2016-04-05 22:03:40    2016-04-05 22:03:40
27724    11984    953    2016-03-07 23:58:12    2016-03-07 23:58:12
27725    16897    709    2016-02-11 12:25:29    2016-02-11 12:25:29
27726    10922    563    2016-03-17 08:15:09    2016-03-17 08:15:09
27727    16422    943    2016-01-26 07:45:22    2016-01-26 07:45:22
27728    12293    572    2016-02-25 15:56:54    2016-02-25 15:56:54
27729    17400    917    2016-03-01 20:04:30    2016-03-01 20:04:30
27730    16116    936    2016-01-27 04:56:18    2016-01-27 04:56:18
27731    16105    593    2016-01-27 11:12:14    2016-01-27 11:12:14
27732    17135    710    2016-02-03 12:11:29    2016-02-03 12:11:29
27733    18434    532    2016-04-18 05:20:05    2016-04-18 05:20:05
27734    11955    675    2016-02-20 22:47:30    2016-02-20 22:47:30
27735    11362    691    2016-01-31 17:18:43    2016-01-31 17:18:43
27736    15737    744    2016-01-25 01:03:54    2016-01-25 01:03:54
27737    10802    897    2016-02-15 22:04:01    2016-02-15 22:04:01
27738    19184    709    2016-01-30 10:47:35    2016-01-30 10:47:35
27739    19626    507    2016-02-29 14:34:16    2016-02-29 14:34:16
27740    17222    468    2016-03-21 02:41:35    2016-03-21 02:41:35
27741    12264    787    2016-04-03 05:26:22    2016-04-03 05:26:22
27742    14679    838    2016-01-29 13:07:40    2016-01-29 13:07:40
27743    11454    530    2016-02-18 21:55:18    2016-02-18 21:55:18
27744    18398    720    2016-03-17 13:20:50    2016-03-17 13:20:50
27745    13448    701    2016-04-04 21:56:05    2016-04-04 21:56:05
27746    10272    929    2016-04-19 10:34:07    2016-04-19 10:34:07
27747    18881    531    2016-03-11 06:17:42    2016-03-11 06:17:42
27748    10607    752    2016-01-26 02:22:21    2016-01-26 02:22:21
27749    11307    656    2016-03-22 23:55:33    2016-03-22 23:55:33
27750    12945    625    2016-03-02 21:02:23    2016-03-02 21:02:23
27751    12097    642    2016-02-29 07:17:23    2016-02-29 07:17:23
27752    17302    580    2016-03-26 03:48:54    2016-03-26 03:48:54
27753    13690    708    2016-01-28 17:56:42    2016-01-28 17:56:42
27754    13179    870    2016-03-26 20:19:49    2016-03-26 20:19:49
27755    15564    633    2016-04-20 08:23:37    2016-04-20 08:23:37
27756    14774    503    2016-04-02 16:55:46    2016-04-02 16:55:46
27757    11130    941    2016-03-02 08:13:33    2016-03-02 08:13:33
27758    10751    507    2016-01-22 15:41:04    2016-01-22 15:41:04
27759    16602    703    2016-03-21 07:12:14    2016-03-21 07:12:14
27760    11684    473    2016-03-02 14:22:47    2016-03-02 14:22:47
27761    16367    649    2016-02-25 14:53:27    2016-02-25 14:53:27
27762    10209    920    2016-03-27 15:52:52    2016-03-27 15:52:52
27763    13700    782    2016-02-23 00:08:50    2016-02-23 00:08:50
27764    19604    839    2016-02-11 14:54:39    2016-02-11 14:54:39
27765    11704    953    2016-03-04 14:15:54    2016-03-04 14:15:54
27766    16635    498    2016-03-10 16:43:14    2016-03-10 16:43:14
27767    12989    719    2016-03-30 14:59:11    2016-03-30 14:59:11
27768    13380    895    2016-02-06 18:15:38    2016-02-06 18:15:38
27769    10522    902    2016-04-11 17:35:28    2016-04-11 17:35:28
27770    14464    813    2016-03-21 13:11:00    2016-03-21 13:11:00
27771    10146    829    2016-03-15 15:42:32    2016-03-15 15:42:32
27772    16892    525    2016-02-01 11:24:25    2016-02-01 11:24:25
27773    16217    931    2016-04-04 15:33:46    2016-04-04 15:33:46
27774    17454    688    2016-03-16 16:24:09    2016-03-16 16:24:09
27775    13337    725    2016-04-05 20:16:10    2016-04-05 20:16:10
27776    17891    491    2016-02-23 17:16:58    2016-02-23 17:16:58
27777    13971    784    2016-04-11 01:34:58    2016-04-11 01:34:58
27778    15090    560    2016-02-15 07:52:20    2016-02-15 07:52:20
27779    19736    711    2016-03-04 04:09:14    2016-03-04 04:09:14
27780    11304    642    2016-02-25 23:13:07    2016-02-25 23:13:07
27781    17787    792    2016-03-10 04:02:45    2016-03-10 04:02:45
27782    13141    708    2016-04-05 02:26:21    2016-04-05 02:26:21
27783    13065    574    2016-03-04 04:33:57    2016-03-04 04:33:57
27784    14514    664    2016-04-11 14:47:57    2016-04-11 14:47:57
27785    16670    579    2016-03-08 21:46:13    2016-03-08 21:46:13
27786    16980    594    2016-01-30 03:09:04    2016-01-30 03:09:04
27787    12637    583    2016-04-20 04:48:07    2016-04-20 04:48:07
27788    10510    600    2016-04-18 21:13:30    2016-04-18 21:13:30
27789    16609    744    2016-03-25 18:50:10    2016-03-25 18:50:10
27790    18145    692    2016-04-01 03:57:47    2016-04-01 03:57:47
27791    14221    529    2016-02-04 06:42:23    2016-02-04 06:42:23
27792    14761    808    2016-03-21 00:10:31    2016-03-21 00:10:31
27793    13645    678    2016-03-10 04:32:45    2016-03-10 04:32:45
27794    12868    593    2016-02-05 12:09:02    2016-02-05 12:09:02
27795    12168    493    2016-03-01 17:10:16    2016-03-01 17:10:16
27796    17276    680    2016-03-16 01:12:30    2016-03-16 01:12:30
27797    15289    627    2016-03-01 13:38:13    2016-03-01 13:38:13
27798    15585    468    2016-03-15 18:37:16    2016-03-15 18:37:16
27799    12114    561    2016-03-25 22:45:20    2016-03-25 22:45:20
27800    15447    626    2016-03-01 08:38:05    2016-03-01 08:38:05
27801    18943    785    2016-04-10 00:34:54    2016-04-10 00:34:54
27802    11198    840    2016-02-16 14:07:30    2016-02-16 14:07:30
27803    15191    475    2016-02-10 00:05:00    2016-02-10 00:05:00
27804    16374    651    2016-04-11 12:39:23    2016-04-11 12:39:23
27805    15387    519    2016-03-24 06:43:13    2016-03-24 06:43:13
27806    19088    730    2016-02-26 12:54:19    2016-02-26 12:54:19
27807    11955    926    2016-03-01 12:39:05    2016-03-01 12:39:05
27808    16214    606    2016-02-13 16:42:58    2016-02-13 16:42:58
27809    14170    857    2016-02-19 03:55:46    2016-02-19 03:55:46
27810    19371    670    2016-03-07 23:43:40    2016-03-07 23:43:40
27811    19936    947    2016-02-16 00:06:41    2016-02-16 00:06:41
27812    14014    688    2016-02-07 02:59:13    2016-02-07 02:59:13
27813    11754    844    2016-02-05 21:54:59    2016-02-05 21:54:59
27814    14897    475    2016-03-19 18:48:23    2016-03-19 18:48:23
27815    16060    521    2016-04-14 06:21:39    2016-04-14 06:21:39
27816    16056    505    2016-02-04 17:03:58    2016-02-04 17:03:58
27817    13649    609    2016-03-19 17:01:08    2016-03-19 17:01:08
27818    18757    696    2016-02-22 09:59:31    2016-02-22 09:59:31
27819    19148    630    2016-03-17 16:01:29    2016-03-17 16:01:29
27820    17678    623    2016-03-02 06:08:00    2016-03-02 06:08:00
27821    14113    537    2016-04-16 22:23:26    2016-04-16 22:23:26
27822    19838    701    2016-04-14 16:11:40    2016-04-14 16:11:40
27823    17796    700    2016-04-07 18:50:01    2016-04-07 18:50:01
27824    18274    663    2016-03-10 01:22:45    2016-03-10 01:22:45
27825    14942    922    2016-02-26 02:35:54    2016-02-26 02:35:54
27826    10990    821    2016-03-16 22:19:15    2016-03-16 22:19:15
27827    12258    826    2016-04-17 13:39:22    2016-04-17 13:39:22
27828    10205    492    2016-02-20 20:32:30    2016-02-20 20:32:30
27829    18431    527    2016-03-12 01:49:47    2016-03-12 01:49:47
27830    14258    685    2016-01-24 04:31:39    2016-01-24 04:31:39
27831    12192    590    2016-02-20 13:50:51    2016-02-20 13:50:51
27832    14400    550    2016-04-09 08:36:20    2016-04-09 08:36:20
27833    14702    914    2016-03-26 13:49:01    2016-03-26 13:49:01
27834    15809    956    2016-03-03 09:32:13    2016-03-03 09:32:13
27835    15835    818    2016-03-31 11:47:20    2016-03-31 11:47:20
27836    19133    502    2016-04-10 11:35:07    2016-04-10 11:35:07
27837    16983    883    2016-02-03 16:42:13    2016-02-03 16:42:13
27838    18432    641    2016-02-21 19:51:49    2016-02-21 19:51:49
27839    13752    542    2016-02-21 13:28:51    2016-02-21 13:28:51
27840    18006    729    2016-02-12 00:57:40    2016-02-12 00:57:40
27841    13946    851    2016-02-02 06:07:29    2016-02-02 06:07:29
27842    13669    533    2016-04-08 22:36:54    2016-04-08 22:36:54
27843    11914    864    2016-02-10 06:48:25    2016-02-10 06:48:25
27844    15847    700    2016-02-01 22:14:42    2016-02-01 22:14:42
27845    18868    753    2016-03-24 05:26:46    2016-03-24 05:26:46
27846    18484    486    2016-03-15 11:17:32    2016-03-15 11:17:32
27847    17226    813    2016-02-18 07:59:40    2016-02-18 07:59:40
27848    12285    606    2016-04-07 23:40:40    2016-04-07 23:40:40
27849    14713    788    2016-02-06 18:26:59    2016-02-06 18:26:59
27850    12026    737    2016-04-08 12:18:38    2016-04-08 12:18:38
27851    14147    676    2016-04-03 18:45:11    2016-04-03 18:45:11
27852    11532    470    2016-02-08 22:15:49    2016-02-08 22:15:49
27853    10663    943    2016-03-01 12:34:44    2016-03-01 12:34:44
27854    16421    744    2016-03-09 16:52:38    2016-03-09 16:52:38
27855    10170    666    2016-03-02 00:46:08    2016-03-02 00:46:08
27856    17774    558    2016-03-24 07:22:34    2016-03-24 07:22:34
27857    14155    708    2016-02-21 07:24:22    2016-02-21 07:24:22
27858    10251    671    2016-02-15 21:53:27    2016-02-15 21:53:27
27859    19879    631    2016-04-19 16:57:25    2016-04-19 16:57:25
27860    11381    857    2016-04-12 12:25:51    2016-04-12 12:25:51
27861    10376    887    2016-03-04 07:06:37    2016-03-04 07:06:37
27862    13285    573    2016-04-10 10:31:40    2016-04-10 10:31:40
27863    12665    907    2016-03-01 11:14:12    2016-03-01 11:14:12
27864    12615    836    2016-04-17 02:48:32    2016-04-17 02:48:32
27865    18266    654    2016-04-06 01:33:18    2016-04-06 01:33:18
27866    15983    704    2016-02-20 16:08:49    2016-02-20 16:08:49
27867    13339    781    2016-02-18 19:10:33    2016-02-18 19:10:33
27868    16513    661    2016-02-04 04:43:20    2016-02-04 04:43:20
27869    10434    750    2016-03-29 11:37:12    2016-03-29 11:37:12
27870    10869    951    2016-03-01 03:59:10    2016-03-01 03:59:10
27871    17372    536    2016-03-24 03:37:15    2016-03-24 03:37:15
27872    12916    938    2016-03-13 16:52:10    2016-03-13 16:52:10
27873    13016    959    2016-04-11 01:54:23    2016-04-11 01:54:23
27874    15589    684    2016-03-16 01:37:30    2016-03-16 01:37:30
27875    17942    562    2016-04-06 05:01:14    2016-04-06 05:01:14
27876    15428    484    2016-03-06 22:30:09    2016-03-06 22:30:09
27877    13637    947    2016-04-14 15:00:23    2016-04-14 15:00:23
27878    16782    783    2016-02-22 15:39:40    2016-02-22 15:39:40
27879    11169    783    2016-01-25 15:00:16    2016-01-25 15:00:16
27880    19758    584    2016-03-09 03:27:40    2016-03-09 03:27:40
27881    19553    771    2016-04-14 22:52:16    2016-04-14 22:52:16
27882    19198    508    2016-04-18 03:29:42    2016-04-18 03:29:42
27883    14056    567    2016-04-15 18:48:12    2016-04-15 18:48:12
27884    18874    860    2016-04-10 22:17:37    2016-04-10 22:17:37
27885    18033    506    2016-01-31 17:34:01    2016-01-31 17:34:01
27886    14484    959    2016-03-10 16:19:42    2016-03-10 16:19:42
27887    10429    634    2016-03-28 16:53:12    2016-03-28 16:53:12
27888    16838    640    2016-01-26 16:03:28    2016-01-26 16:03:28
27889    13725    570    2016-01-31 04:20:08    2016-01-31 04:20:08
27890    18678    549    2016-03-14 04:06:15    2016-03-14 04:06:15
27891    19246    796    2016-02-21 15:16:37    2016-02-21 15:16:37
27892    17734    730    2016-02-26 08:50:02    2016-02-26 08:50:02
27893    15950    711    2016-04-12 02:49:00    2016-04-12 02:49:00
27894    17635    912    2016-04-17 18:25:51    2016-04-17 18:25:51
27895    15470    612    2016-02-13 22:02:03    2016-02-13 22:02:03
27896    17558    960    2016-02-10 00:58:45    2016-02-10 00:58:45
27897    17699    662    2016-02-20 00:51:28    2016-02-20 00:51:28
27898    10241    700    2016-03-08 06:46:14    2016-03-08 06:46:14
27899    13907    629    2016-02-19 13:02:33    2016-02-19 13:02:33
27900    19864    597    2016-03-17 01:46:45    2016-03-17 01:46:45
27901    16131    855    2016-03-10 15:50:21    2016-03-10 15:50:21
27902    11062    928    2016-03-02 01:50:23    2016-03-02 01:50:23
27903    18134    682    2016-02-13 20:40:35    2016-02-13 20:40:35
27904    18089    547    2016-02-05 03:52:10    2016-02-05 03:52:10
27905    18485    726    2016-02-16 06:31:34    2016-02-16 06:31:34
27906    17508    652    2016-02-07 03:13:54    2016-02-07 03:13:54
27907    11767    645    2016-04-04 09:31:11    2016-04-04 09:31:11
27908    13592    833    2016-03-31 22:52:16    2016-03-31 22:52:16
27909    17940    915    2016-01-29 21:33:49    2016-01-29 21:33:49
27910    19107    475    2016-03-09 02:47:42    2016-03-09 02:47:42
27911    13623    760    2016-03-31 17:54:30    2016-03-31 17:54:30
27912    17742    627    2016-02-24 02:16:52    2016-02-24 02:16:52
27913    10158    733    2016-03-18 08:31:21    2016-03-18 08:31:21
27914    10637    958    2016-03-07 18:22:23    2016-03-07 18:22:23
27915    16244    900    2016-04-10 15:41:59    2016-04-10 15:41:59
27916    18867    937    2016-03-04 00:18:08    2016-03-04 00:18:08
27917    18874    882    2016-03-27 22:00:30    2016-03-27 22:00:30
27918    15029    664    2016-04-20 06:14:59    2016-04-20 06:14:59
27919    11277    727    2016-04-11 21:20:58    2016-04-11 21:20:58
27920    14583    929    2016-03-11 20:37:11    2016-03-11 20:37:11
27921    11369    616    2016-04-17 08:01:18    2016-04-17 08:01:18
27922    10118    539    2016-02-05 05:19:21    2016-02-05 05:19:21
27923    12916    865    2016-03-21 00:56:16    2016-03-21 00:56:16
27924    19874    689    2016-01-23 22:28:04    2016-01-23 22:28:04
27925    11188    465    2016-04-08 05:30:55    2016-04-08 05:30:55
27926    11838    645    2016-03-30 22:37:37    2016-03-30 22:37:37
27927    17524    666    2016-03-14 16:00:12    2016-03-14 16:00:12
27928    14813    908    2016-02-01 04:43:39    2016-02-01 04:43:39
27929    16749    870    2016-04-12 10:24:15    2016-04-12 10:24:15
27930    11407    655    2016-02-05 01:55:41    2016-02-05 01:55:41
27931    11681    856    2016-03-09 02:49:19    2016-03-09 02:49:19
27932    16218    598    2016-02-27 09:41:52    2016-02-27 09:41:52
27933    19787    800    2016-04-10 21:11:57    2016-04-10 21:11:57
27934    15167    828    2016-02-16 23:09:55    2016-02-16 23:09:55
27935    17873    948    2016-04-15 23:43:02    2016-04-15 23:43:02
27936    12797    923    2016-02-10 23:11:03    2016-02-10 23:11:03
27937    17568    777    2016-03-08 04:24:31    2016-03-08 04:24:31
27938    10676    518    2016-04-12 00:43:35    2016-04-12 00:43:35
27939    13173    500    2016-03-04 08:34:24    2016-03-04 08:34:24
27940    12255    807    2016-03-18 15:31:22    2016-03-18 15:31:22
27941    14681    815    2016-03-06 18:10:52    2016-03-06 18:10:52
27942    15721    735    2016-02-01 21:41:31    2016-02-01 21:41:31
27943    10950    551    2016-01-28 14:37:43    2016-01-28 14:37:43
27944    12696    830    2016-01-30 11:57:54    2016-01-30 11:57:54
27945    11247    808    2016-02-20 16:53:52    2016-02-20 16:53:52
27946    10031    755    2016-03-21 14:21:45    2016-03-21 14:21:45
27947    19222    639    2016-03-15 07:28:32    2016-03-15 07:28:32
27948    18071    771    2016-02-11 11:44:06    2016-02-11 11:44:06
27949    17911    804    2016-03-02 06:58:20    2016-03-02 06:58:20
27950    13602    573    2016-02-19 09:33:18    2016-02-19 09:33:18
27951    14895    689    2016-02-21 06:15:40    2016-02-21 06:15:40
27952    12402    792    2016-02-25 06:33:39    2016-02-25 06:33:39
27953    19764    771    2016-02-07 01:32:39    2016-02-07 01:32:39
27954    10608    641    2016-04-04 10:03:52    2016-04-04 10:03:52
27955    10449    795    2016-03-08 18:19:04    2016-03-08 18:19:04
27956    14340    503    2016-02-09 21:11:23    2016-02-09 21:11:23
27957    17278    797    2016-03-11 15:56:08    2016-03-11 15:56:08
27958    14567    844    2016-03-13 04:30:43    2016-03-13 04:30:43
27959    12755    525    2016-02-19 12:37:10    2016-02-19 12:37:10
27960    13036    658    2016-02-08 02:00:24    2016-02-08 02:00:24
27961    16754    749    2016-03-23 10:03:01    2016-03-23 10:03:01
27962    14120    761    2016-02-09 19:42:38    2016-02-09 19:42:38
27963    11986    499    2016-04-12 04:16:40    2016-04-12 04:16:40
27964    10311    862    2016-02-24 00:27:27    2016-02-24 00:27:27
27965    13530    560    2016-02-06 19:29:43    2016-02-06 19:29:43
27966    16520    871    2016-02-23 11:51:47    2016-02-23 11:51:47
27967    14806    647    2016-04-12 14:20:17    2016-04-12 14:20:17
27968    11123    914    2016-02-06 23:45:20    2016-02-06 23:45:20
27969    16663    867    2016-04-07 19:43:11    2016-04-07 19:43:11
27970    15615    644    2016-01-29 21:39:28    2016-01-29 21:39:28
27971    19464    545    2016-03-15 14:45:59    2016-03-15 14:45:59
27972    13544    498    2016-02-29 18:01:38    2016-02-29 18:01:38
27973    17601    916    2016-01-29 00:01:41    2016-01-29 00:01:41
27974    10698    768    2016-04-01 15:19:36    2016-04-01 15:19:36
27975    19924    556    2016-02-26 17:35:56    2016-02-26 17:35:56
27976    12722    889    2016-02-27 19:15:31    2016-02-27 19:15:31
27977    18531    680    2016-04-13 08:32:06    2016-04-13 08:32:06
27978    12514    527    2016-02-24 02:47:01    2016-02-24 02:47:01
27979    15363    562    2016-03-24 06:30:56    2016-03-24 06:30:56
27980    10417    689    2016-04-13 08:58:32    2016-04-13 08:58:32
27981    17990    672    2016-02-02 22:31:59    2016-02-02 22:31:59
27982    17227    899    2016-02-09 10:17:10    2016-02-09 10:17:10
27983    15214    555    2016-02-04 07:54:55    2016-02-04 07:54:55
27984    15248    896    2016-01-23 17:52:23    2016-01-23 17:52:23
27985    15679    698    2016-02-18 21:49:02    2016-02-18 21:49:02
27986    18472    506    2016-02-10 23:15:10    2016-02-10 23:15:10
27987    15417    646    2016-04-20 16:42:25    2016-04-20 16:42:25
27988    17424    465    2016-01-27 22:47:47    2016-01-27 22:47:47
27989    18849    464    2016-03-24 05:40:11    2016-03-24 05:40:11
27990    18007    622    2016-01-29 07:19:29    2016-01-29 07:19:29
27991    12765    787    2016-02-26 22:53:55    2016-02-26 22:53:55
27992    15429    930    2016-04-19 17:52:40    2016-04-19 17:52:40
27993    10321    546    2016-04-15 01:33:53    2016-04-15 01:33:53
27994    16671    796    2016-02-23 17:50:25    2016-02-23 17:50:25
27995    15914    716    2016-04-18 19:36:35    2016-04-18 19:36:35
27996    15689    593    2016-04-01 01:59:48    2016-04-01 01:59:48
27997    10251    789    2016-01-23 00:55:46    2016-01-23 00:55:46
27998    17963    463    2016-03-06 21:26:31    2016-03-06 21:26:31
27999    15715    635    2016-03-09 03:31:11    2016-03-09 03:31:11
28000    15199    890    2016-02-06 18:57:13    2016-02-06 18:57:13
28001    11302    691    2016-03-06 11:05:04    2016-03-06 11:05:04
28002    12686    801    2016-01-26 05:20:17    2016-01-26 05:20:17
28003    19183    893    2016-03-06 06:22:27    2016-03-06 06:22:27
28004    13169    933    2016-04-10 19:27:45    2016-04-10 19:27:45
28005    19030    648    2016-04-15 05:00:23    2016-04-15 05:00:23
28006    19900    598    2016-03-01 16:37:19    2016-03-01 16:37:19
28007    14999    701    2016-04-14 20:22:13    2016-04-14 20:22:13
28008    14684    721    2016-04-03 02:11:57    2016-04-03 02:11:57
28009    19030    635    2016-02-13 03:19:42    2016-02-13 03:19:42
28010    13929    573    2016-02-13 15:50:17    2016-02-13 15:50:17
28011    12395    942    2016-02-26 15:34:12    2016-02-26 15:34:12
28012    18543    533    2016-02-10 04:51:54    2016-02-10 04:51:54
28013    15288    701    2016-03-25 16:02:57    2016-03-25 16:02:57
28014    17596    679    2016-03-20 13:25:06    2016-03-20 13:25:06
28015    14933    705    2016-03-14 23:25:41    2016-03-14 23:25:41
28016    17265    700    2016-04-18 19:07:56    2016-04-18 19:07:56
28017    10043    718    2016-02-12 04:39:28    2016-02-12 04:39:28
28018    19093    652    2016-04-02 05:59:43    2016-04-02 05:59:43
28019    19601    938    2016-04-16 14:28:04    2016-04-16 14:28:04
28020    18475    751    2016-03-26 17:35:46    2016-03-26 17:35:46
28021    10528    507    2016-03-15 01:19:24    2016-03-15 01:19:24
28022    15098    764    2016-04-06 19:48:43    2016-04-06 19:48:43
28023    15292    561    2016-01-30 04:26:37    2016-01-30 04:26:37
28024    14903    463    2016-02-08 17:26:02    2016-02-08 17:26:02
28025    19767    883    2016-03-12 01:07:22    2016-03-12 01:07:22
28026    19519    585    2016-01-26 20:59:18    2016-01-26 20:59:18
28027    10711    566    2016-03-04 21:37:02    2016-03-04 21:37:02
28028    13633    624    2016-04-14 03:01:04    2016-04-14 03:01:04
28029    12797    919    2016-03-04 16:55:22    2016-03-04 16:55:22
28030    18540    625    2016-02-18 12:37:29    2016-02-18 12:37:29
28031    15558    687    2016-03-27 19:47:34    2016-03-27 19:47:34
28032    12268    675    2016-03-10 04:38:39    2016-03-10 04:38:39
28033    17578    930    2016-02-10 10:10:23    2016-02-10 10:10:23
28034    16156    730    2016-03-16 19:54:46    2016-03-16 19:54:46
28035    18749    691    2016-04-10 22:24:15    2016-04-10 22:24:15
28036    10039    943    2016-04-18 23:18:55    2016-04-18 23:18:55
28037    12967    542    2016-03-07 18:53:08    2016-03-07 18:53:08
28038    14646    599    2016-01-22 06:41:06    2016-01-22 06:41:06
28039    18679    936    2016-02-24 07:52:16    2016-02-24 07:52:16
28040    19320    499    2016-03-16 12:13:26    2016-03-16 12:13:26
28041    10564    525    2016-01-30 05:31:07    2016-01-30 05:31:07
28042    11131    694    2016-03-06 03:05:09    2016-03-06 03:05:09
28043    19383    678    2016-03-03 19:22:29    2016-03-03 19:22:29
28044    15873    544    2016-03-24 09:10:25    2016-03-24 09:10:25
28045    15742    816    2016-02-15 23:31:51    2016-02-15 23:31:51
28046    19482    576    2016-02-12 21:08:26    2016-02-12 21:08:26
28047    17648    920    2016-01-27 01:31:00    2016-01-27 01:31:00
28048    15748    833    2016-02-21 18:38:55    2016-02-21 18:38:55
28049    14233    557    2016-02-29 15:14:16    2016-02-29 15:14:16
28050    16465    554    2016-04-20 17:17:02    2016-04-20 17:17:02
28051    15703    822    2016-02-01 12:32:41    2016-02-01 12:32:41
28052    17278    899    2016-03-02 12:40:45    2016-03-02 12:40:45
28053    14706    597    2016-02-01 01:50:50    2016-02-01 01:50:50
28054    10300    746    2016-03-08 22:15:15    2016-03-08 22:15:15
28055    14766    871    2016-04-14 01:46:41    2016-04-14 01:46:41
28056    12315    809    2016-02-04 13:08:24    2016-02-04 13:08:24
28057    15523    529    2016-03-24 05:09:58    2016-03-24 05:09:58
28058    19283    670    2016-02-08 19:53:54    2016-02-08 19:53:54
28059    16278    856    2016-03-22 18:32:40    2016-03-22 18:32:40
28060    17138    501    2016-02-08 17:15:07    2016-02-08 17:15:07
28061    14907    652    2016-03-25 01:38:26    2016-03-25 01:38:26
28062    16656    735    2016-02-23 03:00:46    2016-02-23 03:00:46
28063    13309    559    2016-03-25 08:52:22    2016-03-25 08:52:22
28064    19779    951    2016-02-23 09:00:03    2016-02-23 09:00:03
28065    13449    665    2016-02-05 03:18:48    2016-02-05 03:18:48
28066    12424    562    2016-04-18 12:32:42    2016-04-18 12:32:42
28067    19419    581    2016-02-06 02:10:22    2016-02-06 02:10:22
28068    15782    728    2016-01-31 02:54:20    2016-01-31 02:54:20
28069    16369    735    2016-03-02 12:02:57    2016-03-02 12:02:57
28070    12424    823    2016-01-28 11:28:06    2016-01-28 11:28:06
28071    15953    839    2016-04-02 16:56:46    2016-04-02 16:56:46
28072    12607    808    2016-02-06 16:41:42    2016-02-06 16:41:42
28073    18084    764    2016-02-02 01:56:29    2016-02-02 01:56:29
28074    14394    959    2016-03-16 04:09:24    2016-03-16 04:09:24
28075    11227    866    2016-02-17 19:18:22    2016-02-17 19:18:22
28076    13621    643    2016-01-25 04:21:36    2016-01-25 04:21:36
28077    15637    492    2016-02-17 03:50:53    2016-02-17 03:50:53
28078    10259    913    2016-02-26 08:01:04    2016-02-26 08:01:04
28079    10682    669    2016-02-11 10:37:37    2016-02-11 10:37:37
28080    15288    748    2016-03-23 20:12:35    2016-03-23 20:12:35
28081    14484    933    2016-03-15 07:28:15    2016-03-15 07:28:15
28082    18619    841    2016-03-08 19:20:52    2016-03-08 19:20:52
28083    18982    888    2016-02-07 05:07:04    2016-02-07 05:07:04
28084    10648    768    2016-02-10 16:04:59    2016-02-10 16:04:59
28085    10305    754    2016-02-14 14:38:54    2016-02-14 14:38:54
28086    17917    938    2016-04-17 13:23:29    2016-04-17 13:23:29
28087    15351    518    2016-04-11 04:55:54    2016-04-11 04:55:54
28088    12791    907    2016-03-03 14:50:10    2016-03-03 14:50:10
28089    16752    573    2016-03-05 15:11:22    2016-03-05 15:11:22
28090    10052    874    2016-04-05 11:32:38    2016-04-05 11:32:38
28091    15141    521    2016-03-01 07:25:42    2016-03-01 07:25:42
28092    10087    926    2016-04-10 05:01:23    2016-04-10 05:01:23
28093    10076    646    2016-02-13 02:11:41    2016-02-13 02:11:41
28094    14982    786    2016-03-28 22:02:22    2016-03-28 22:02:22
28095    14455    628    2016-01-28 02:31:21    2016-01-28 02:31:21
28096    14320    477    2016-04-13 10:13:41    2016-04-13 10:13:41
28097    10326    925    2016-03-25 03:57:41    2016-03-25 03:57:41
28098    18871    613    2016-04-07 19:55:28    2016-04-07 19:55:28
28099    16217    665    2016-03-07 02:36:41    2016-03-07 02:36:41
28100    14029    707    2016-03-09 11:33:56    2016-03-09 11:33:56
28101    17933    891    2016-02-21 02:24:28    2016-02-21 02:24:28
28102    14068    736    2016-02-29 05:02:56    2016-02-29 05:02:56
28103    11451    939    2016-01-22 22:51:08    2016-01-22 22:51:08
28104    14378    916    2016-04-05 18:47:06    2016-04-05 18:47:06
28105    14321    734    2016-03-09 22:07:16    2016-03-09 22:07:16
28106    13636    724    2016-04-12 07:04:33    2016-04-12 07:04:33
28107    17634    840    2016-04-20 19:24:18    2016-04-20 19:24:18
28108    10004    570    2016-03-21 08:15:53    2016-03-21 08:15:53
28109    19668    771    2016-04-07 21:46:58    2016-04-07 21:46:58
28110    16201    941    2016-02-27 02:17:29    2016-02-27 02:17:29
28111    13791    722    2016-03-13 03:08:58    2016-03-13 03:08:58
28112    11306    899    2016-02-29 12:46:41    2016-02-29 12:46:41
28113    12413    497    2016-03-06 02:25:23    2016-03-06 02:25:23
28114    13750    798    2016-02-16 14:16:34    2016-02-16 14:16:34
28115    10088    956    2016-02-19 09:09:41    2016-02-19 09:09:41
28116    14862    662    2016-02-15 20:28:40    2016-02-15 20:28:40
28117    17825    641    2016-01-26 12:03:56    2016-01-26 12:03:56
28118    19059    782    2016-02-20 00:29:32    2016-02-20 00:29:32
28119    12307    723    2016-03-05 12:29:07    2016-03-05 12:29:07
28120    11125    707    2016-04-16 20:13:47    2016-04-16 20:13:47
28121    16743    753    2016-03-06 03:05:02    2016-03-06 03:05:02
28122    15270    575    2016-03-15 09:02:08    2016-03-15 09:02:08
28123    13739    819    2016-03-12 15:21:58    2016-03-12 15:21:58
28124    16418    533    2016-02-18 14:36:08    2016-02-18 14:36:08
28125    10307    874    2016-03-16 02:31:39    2016-03-16 02:31:39
28126    10279    579    2016-01-29 11:07:23    2016-01-29 11:07:23
28127    14836    786    2016-02-13 13:24:48    2016-02-13 13:24:48
28128    14041    936    2016-04-04 09:20:39    2016-04-04 09:20:39
28129    13853    580    2016-02-17 02:38:30    2016-02-17 02:38:30
28130    14378    755    2016-02-10 13:06:17    2016-02-10 13:06:17
28131    15774    955    2016-02-28 07:45:09    2016-02-28 07:45:09
28132    14715    803    2016-02-18 13:22:55    2016-02-18 13:22:55
28133    16367    897    2016-03-27 16:30:29    2016-03-27 16:30:29
28134    18766    844    2016-02-04 14:34:38    2016-02-04 14:34:38
28135    17579    813    2016-04-08 02:24:01    2016-04-08 02:24:01
28136    16323    492    2016-02-07 14:19:39    2016-02-07 14:19:39
28137    15689    896    2016-02-21 16:57:25    2016-02-21 16:57:25
28138    11305    716    2016-03-26 14:12:27    2016-03-26 14:12:27
28139    14543    836    2016-04-10 14:12:49    2016-04-10 14:12:49
28140    13743    537    2016-02-13 20:06:07    2016-02-13 20:06:07
28141    13104    866    2016-03-06 13:32:51    2016-03-06 13:32:51
28142    17506    848    2016-02-17 06:11:16    2016-02-17 06:11:16
28143    16810    853    2016-03-14 20:53:45    2016-03-14 20:53:45
28144    12408    740    2016-02-15 05:29:01    2016-02-15 05:29:01
28145    17554    702    2016-02-20 06:24:55    2016-02-20 06:24:55
28146    16828    788    2016-03-29 13:47:29    2016-03-29 13:47:29
28147    11678    556    2016-01-29 04:45:23    2016-01-29 04:45:23
28148    17336    593    2016-01-25 02:28:12    2016-01-25 02:28:12
28149    15507    751    2016-04-10 10:13:29    2016-04-10 10:13:29
28150    16294    593    2016-02-14 15:04:54    2016-02-14 15:04:54
28151    13846    865    2016-04-04 13:15:51    2016-04-04 13:15:51
28152    16501    699    2016-02-20 19:57:51    2016-02-20 19:57:51
28153    14267    689    2016-02-15 10:58:58    2016-02-15 10:58:58
28154    16065    647    2016-01-31 20:51:39    2016-01-31 20:51:39
28155    11023    501    2016-04-13 06:58:55    2016-04-13 06:58:55
28156    19564    800    2016-02-10 07:35:51    2016-02-10 07:35:51
28157    17828    799    2016-01-23 18:05:25    2016-01-23 18:05:25
28158    17099    672    2016-03-01 10:49:20    2016-03-01 10:49:20
28159    18403    669    2016-03-05 13:05:38    2016-03-05 13:05:38
28160    15500    773    2016-04-02 01:36:28    2016-04-02 01:36:28
28161    16728    923    2016-04-17 14:18:25    2016-04-17 14:18:25
28162    14350    657    2016-04-13 22:59:49    2016-04-13 22:59:49
28163    10270    886    2016-03-07 18:16:20    2016-03-07 18:16:20
28164    18215    492    2016-03-29 12:40:56    2016-03-29 12:40:56
28165    18535    606    2016-02-06 23:30:54    2016-02-06 23:30:54
28166    10632    950    2016-02-18 13:26:22    2016-02-18 13:26:22
28167    19154    868    2016-02-05 19:28:29    2016-02-05 19:28:29
28168    18645    946    2016-01-26 08:01:02    2016-01-26 08:01:02
28169    10781    788    2016-02-11 08:10:45    2016-02-11 08:10:45
28170    10227    760    2016-02-21 04:23:09    2016-02-21 04:23:09
28171    10441    672    2016-04-18 04:58:07    2016-04-18 04:58:07
28172    18216    569    2016-03-19 01:56:10    2016-03-19 01:56:10
28173    15313    523    2016-03-15 16:04:46    2016-03-15 16:04:46
28174    14575    911    2016-04-02 01:24:57    2016-04-02 01:24:57
28175    14151    853    2016-01-29 07:41:20    2016-01-29 07:41:20
28176    18876    948    2016-01-24 13:58:56    2016-01-24 13:58:56
28177    18122    811    2016-04-20 05:49:37    2016-04-20 05:49:37
28178    10775    642    2016-04-19 04:48:32    2016-04-19 04:48:32
28179    13565    748    2016-03-05 09:13:48    2016-03-05 09:13:48
28180    12444    540    2016-04-14 11:26:00    2016-04-14 11:26:00
28181    16171    765    2016-02-18 21:19:15    2016-02-18 21:19:15
28182    14613    542    2016-03-14 07:46:02    2016-03-14 07:46:02
28183    12099    465    2016-04-09 13:27:20    2016-04-09 13:27:20
28184    12833    829    2016-01-31 18:31:51    2016-01-31 18:31:51
28185    13633    477    2016-03-12 01:13:13    2016-03-12 01:13:13
28186    18584    910    2016-02-22 08:51:45    2016-02-22 08:51:45
28187    16240    505    2016-04-17 02:30:22    2016-04-17 02:30:22
28188    18443    830    2016-01-31 00:49:48    2016-01-31 00:49:48
28189    15918    493    2016-01-31 00:47:52    2016-01-31 00:47:52
28190    17911    818    2016-03-09 03:07:00    2016-03-09 03:07:00
28191    13342    512    2016-03-03 03:16:55    2016-03-03 03:16:55
28192    16735    944    2016-03-22 08:11:27    2016-03-22 08:11:27
28193    13319    490    2016-02-22 16:31:20    2016-02-22 16:31:20
28194    19520    761    2016-02-11 01:56:57    2016-02-11 01:56:57
28195    18324    822    2016-03-28 07:17:15    2016-03-28 07:17:15
28196    19259    634    2016-04-05 18:05:50    2016-04-05 18:05:50
28197    18089    715    2016-03-10 11:07:41    2016-03-10 11:07:41
28198    12836    724    2016-03-20 19:42:09    2016-03-20 19:42:09
28199    18505    736    2016-04-11 14:47:08    2016-04-11 14:47:08
28200    14091    877    2016-03-30 04:33:38    2016-03-30 04:33:38
28201    19888    640    2016-02-23 00:16:38    2016-02-23 00:16:38
28202    12328    511    2016-01-27 09:07:32    2016-01-27 09:07:32
28203    17199    711    2016-02-04 15:14:17    2016-02-04 15:14:17
28204    18144    607    2016-03-13 17:27:55    2016-03-13 17:27:55
28205    18120    531    2016-04-08 19:08:07    2016-04-08 19:08:07
28206    15669    619    2016-04-18 12:42:48    2016-04-18 12:42:48
28207    12848    732    2016-02-16 04:22:57    2016-02-16 04:22:57
28208    19646    771    2016-03-21 17:20:08    2016-03-21 17:20:08
28209    10176    711    2016-02-12 19:13:02    2016-02-12 19:13:02
28210    14888    857    2016-01-26 14:11:25    2016-01-26 14:11:25
28211    12564    760    2016-03-29 06:21:08    2016-03-29 06:21:08
28212    13627    779    2016-02-14 05:05:57    2016-02-14 05:05:57
28213    10369    827    2016-02-05 20:45:22    2016-02-05 20:45:22
28214    15601    885    2016-03-23 13:08:28    2016-03-23 13:08:28
28215    15876    689    2016-02-20 05:20:12    2016-02-20 05:20:12
28216    13025    687    2016-04-04 09:03:35    2016-04-04 09:03:35
28217    13646    697    2016-01-25 00:34:13    2016-01-25 00:34:13
28218    18898    689    2016-03-21 10:50:43    2016-03-21 10:50:43
28219    11899    826    2016-03-26 11:10:56    2016-03-26 11:10:56
28220    12883    791    2016-04-20 21:21:03    2016-04-20 21:21:03
28221    13965    777    2016-02-29 22:42:10    2016-02-29 22:42:10
28222    16593    623    2016-02-20 01:21:57    2016-02-20 01:21:57
28223    15364    865    2016-02-13 11:44:01    2016-02-13 11:44:01
28224    12036    832    2016-03-20 20:49:48    2016-03-20 20:49:48
28225    17543    921    2016-02-24 19:45:12    2016-02-24 19:45:12
28226    11239    633    2016-03-19 22:21:52    2016-03-19 22:21:52
28227    18657    521    2016-03-20 15:59:54    2016-03-20 15:59:54
28228    14958    609    2016-02-15 03:35:29    2016-02-15 03:35:29
28229    13200    479    2016-02-10 19:08:12    2016-02-10 19:08:12
28230    14715    588    2016-02-09 21:08:02    2016-02-09 21:08:02
28231    10839    746    2016-04-10 23:26:38    2016-04-10 23:26:38
28232    10085    667    2016-04-12 10:04:23    2016-04-12 10:04:23
28233    11544    867    2016-03-03 08:50:50    2016-03-03 08:50:50
28234    18037    664    2016-03-03 09:23:44    2016-03-03 09:23:44
28235    12272    550    2016-03-21 22:34:03    2016-03-21 22:34:03
28236    15799    650    2016-03-03 22:26:20    2016-03-03 22:26:20
28237    15880    921    2016-03-31 14:33:49    2016-03-31 14:33:49
28238    17603    637    2016-04-04 08:50:14    2016-04-04 08:50:14
28239    18033    761    2016-04-10 02:49:20    2016-04-10 02:49:20
28240    11248    938    2016-02-08 18:38:40    2016-02-08 18:38:40
28241    19492    895    2016-03-05 10:24:02    2016-03-05 10:24:02
28242    18204    746    2016-03-27 02:21:14    2016-03-27 02:21:14
28243    17202    551    2016-03-11 03:56:11    2016-03-11 03:56:11
28244    14238    469    2016-02-29 08:21:29    2016-02-29 08:21:29
28245    15589    579    2016-01-27 09:41:55    2016-01-27 09:41:55
28246    18915    525    2016-01-26 17:44:33    2016-01-26 17:44:33
28247    18803    708    2016-03-05 04:04:58    2016-03-05 04:04:58
28248    11479    868    2016-03-16 11:47:02    2016-03-16 11:47:02
28249    17692    681    2016-04-15 11:49:05    2016-04-15 11:49:05
28250    15601    740    2016-01-22 05:33:38    2016-01-22 05:33:38
28251    16094    932    2016-03-17 20:35:30    2016-03-17 20:35:30
28252    13731    843    2016-02-27 19:50:30    2016-02-27 19:50:30
28253    10575    610    2016-04-02 10:58:35    2016-04-02 10:58:35
28254    18831    614    2016-02-11 21:30:24    2016-02-11 21:30:24
28255    15352    766    2016-02-22 09:24:14    2016-02-22 09:24:14
28256    17383    757    2016-04-20 03:12:43    2016-04-20 03:12:43
28257    15707    961    2016-02-10 12:37:31    2016-02-10 12:37:31
28258    16368    925    2016-04-05 20:02:57    2016-04-05 20:02:57
28259    16317    607    2016-01-26 10:35:37    2016-01-26 10:35:37
28260    13633    830    2016-02-15 12:41:09    2016-02-15 12:41:09
28261    14782    919    2016-04-20 21:14:57    2016-04-20 21:14:57
28262    11137    772    2016-02-29 15:02:30    2016-02-29 15:02:30
28263    14867    785    2016-01-24 09:21:12    2016-01-24 09:21:12
28264    14074    731    2016-02-12 12:02:38    2016-02-12 12:02:38
28265    11269    657    2016-04-07 11:10:29    2016-04-07 11:10:29
28266    15075    826    2016-03-16 11:30:28    2016-03-16 11:30:28
28267    19118    582    2016-02-22 17:24:48    2016-02-22 17:24:48
28268    14443    508    2016-01-28 02:58:32    2016-01-28 02:58:32
28269    18120    517    2016-04-08 21:43:37    2016-04-08 21:43:37
28270    10006    576    2016-03-20 09:32:19    2016-03-20 09:32:19
28271    14950    567    2016-02-05 04:04:52    2016-02-05 04:04:52
28272    11098    940    2016-04-11 10:41:35    2016-04-11 10:41:35
28273    15088    774    2016-03-08 06:29:15    2016-03-08 06:29:15
28274    10279    771    2016-02-10 21:54:56    2016-02-10 21:54:56
28275    18571    743    2016-04-09 12:31:29    2016-04-09 12:31:29
28276    11025    898    2016-02-12 03:08:47    2016-02-12 03:08:47
28277    10743    543    2016-03-28 07:08:21    2016-03-28 07:08:21
28278    18164    655    2016-02-18 14:29:13    2016-02-18 14:29:13
28279    19316    910    2016-02-05 21:12:44    2016-02-05 21:12:44
28280    14268    659    2016-04-07 01:57:10    2016-04-07 01:57:10
28281    19158    836    2016-03-07 22:43:34    2016-03-07 22:43:34
28282    18947    638    2016-02-12 09:42:22    2016-02-12 09:42:22
28283    16858    866    2016-03-30 18:03:14    2016-03-30 18:03:14
28284    15241    732    2016-02-04 19:42:08    2016-02-04 19:42:08
28285    13799    856    2016-03-10 06:00:06    2016-03-10 06:00:06
28286    11619    831    2016-03-26 11:25:00    2016-03-26 11:25:00
28287    19333    847    2016-03-07 00:50:02    2016-03-07 00:50:02
28288    18130    627    2016-04-12 12:23:06    2016-04-12 12:23:06
28289    15127    734    2016-03-10 17:52:07    2016-03-10 17:52:07
28290    13716    463    2016-02-06 08:05:18    2016-02-06 08:05:18
28291    14268    537    2016-02-17 17:39:14    2016-02-17 17:39:14
28292    17771    920    2016-04-06 07:39:33    2016-04-06 07:39:33
28293    19360    676    2016-04-01 03:14:14    2016-04-01 03:14:14
28294    19380    802    2016-02-27 09:47:56    2016-02-27 09:47:56
28295    11298    922    2016-03-15 15:32:33    2016-03-15 15:32:33
28296    17594    571    2016-02-16 03:59:47    2016-02-16 03:59:47
28297    18936    804    2016-04-13 02:25:42    2016-04-13 02:25:42
28298    18672    532    2016-03-05 08:25:25    2016-03-05 08:25:25
28299    19810    619    2016-01-24 00:21:36    2016-01-24 00:21:36
28300    11237    495    2016-01-30 20:59:28    2016-01-30 20:59:28
28301    10959    553    2016-01-27 11:11:04    2016-01-27 11:11:04
28302    17580    593    2016-04-11 07:45:20    2016-04-11 07:45:20
28303    18773    954    2016-02-22 12:40:06    2016-02-22 12:40:06
28304    15323    539    2016-03-18 11:30:44    2016-03-18 11:30:44
28305    11421    574    2016-01-25 05:41:39    2016-01-25 05:41:39
28306    17190    547    2016-04-14 05:18:01    2016-04-14 05:18:01
28307    12678    517    2016-02-12 01:04:28    2016-02-12 01:04:28
28308    18428    577    2016-03-16 10:35:41    2016-03-16 10:35:41
28309    18755    898    2016-04-07 11:00:57    2016-04-07 11:00:57
28310    15711    494    2016-02-29 17:12:36    2016-02-29 17:12:36
28311    18429    622    2016-01-25 20:15:41    2016-01-25 20:15:41
28312    17845    744    2016-02-21 02:52:19    2016-02-21 02:52:19
28313    18276    872    2016-02-09 12:19:07    2016-02-09 12:19:07
28314    16499    771    2016-03-19 18:26:10    2016-03-19 18:26:10
28315    15914    893    2016-02-04 11:07:38    2016-02-04 11:07:38
28316    16516    469    2016-03-06 19:53:53    2016-03-06 19:53:53
28317    12866    545    2016-04-08 16:25:36    2016-04-08 16:25:36
28318    17630    612    2016-04-14 15:45:51    2016-04-14 15:45:51
28319    11651    906    2016-03-05 01:15:10    2016-03-05 01:15:10
28320    18793    773    2016-03-14 01:06:18    2016-03-14 01:06:18
28321    15541    730    2016-03-08 19:42:02    2016-03-08 19:42:02
28322    12696    743    2016-04-05 19:07:09    2016-04-05 19:07:09
28323    15027    474    2016-04-17 07:45:26    2016-04-17 07:45:26
28324    13107    813    2016-04-04 13:25:46    2016-04-04 13:25:46
28325    12176    602    2016-03-01 06:11:03    2016-03-01 06:11:03
28326    10672    743    2016-03-08 17:30:22    2016-03-08 17:30:22
28327    19462    637    2016-03-25 01:15:42    2016-03-25 01:15:42
28328    14485    641    2016-01-29 02:02:14    2016-01-29 02:02:14
28329    10123    518    2016-02-24 23:24:32    2016-02-24 23:24:32
28330    16976    726    2016-01-31 20:03:18    2016-01-31 20:03:18
28331    16736    496    2016-04-08 20:19:28    2016-04-08 20:19:28
28332    10624    696    2016-04-16 15:52:00    2016-04-16 15:52:00
28333    19655    834    2016-02-01 05:00:42    2016-02-01 05:00:42
28334    16613    549    2016-04-07 01:38:53    2016-04-07 01:38:53
28335    15270    864    2016-03-20 07:20:42    2016-03-20 07:20:42
28336    13492    675    2016-04-16 23:09:42    2016-04-16 23:09:42
28337    17903    916    2016-03-28 15:40:23    2016-03-28 15:40:23
28338    17705    770    2016-02-29 22:32:30    2016-02-29 22:32:30
28339    12203    587    2016-04-16 06:04:21    2016-04-16 06:04:21
28340    14097    782    2016-01-23 20:57:51    2016-01-23 20:57:51
28341    16685    474    2016-02-26 03:51:54    2016-02-26 03:51:54
28342    11986    877    2016-04-14 01:47:50    2016-04-14 01:47:50
28343    12084    511    2016-03-08 22:28:20    2016-03-08 22:28:20
28344    13900    747    2016-03-24 08:07:10    2016-03-24 08:07:10
28345    13263    895    2016-03-22 12:09:11    2016-03-22 12:09:11
28346    10510    690    2016-03-11 19:16:49    2016-03-11 19:16:49
28347    15945    476    2016-02-23 14:22:42    2016-02-23 14:22:42
28348    18499    606    2016-03-26 16:36:06    2016-03-26 16:36:06
28349    13216    946    2016-02-04 04:30:55    2016-02-04 04:30:55
28350    19541    825    2016-04-11 17:58:36    2016-04-11 17:58:36
28351    12356    922    2016-01-24 17:18:51    2016-01-24 17:18:51
28352    12874    554    2016-04-04 16:47:29    2016-04-04 16:47:29
28353    17048    734    2016-02-17 07:41:15    2016-02-17 07:41:15
28354    18740    598    2016-04-02 03:42:41    2016-04-02 03:42:41
28355    12655    765    2016-03-20 18:24:11    2016-03-20 18:24:11
28356    10783    485    2016-02-22 01:14:23    2016-02-22 01:14:23
28357    18018    507    2016-04-03 04:56:02    2016-04-03 04:56:02
28358    13517    803    2016-02-01 09:38:15    2016-02-01 09:38:15
28359    11352    681    2016-04-02 02:44:37    2016-04-02 02:44:37
28360    18898    609    2016-02-22 15:37:40    2016-02-22 15:37:40
28361    10605    902    2016-02-12 03:54:10    2016-02-12 03:54:10
28362    15756    525    2016-02-04 12:43:18    2016-02-04 12:43:18
28363    13779    603    2016-01-28 01:27:06    2016-01-28 01:27:06
28364    18577    496    2016-04-18 10:55:32    2016-04-18 10:55:32
28365    17063    488    2016-03-12 10:01:36    2016-03-12 10:01:36
28366    11349    735    2016-03-23 20:18:14    2016-03-23 20:18:14
28367    10296    820    2016-04-16 03:46:00    2016-04-16 03:46:00
28368    17387    748    2016-04-01 16:23:57    2016-04-01 16:23:57
28369    12359    506    2016-02-08 20:04:26    2016-02-08 20:04:26
28370    18655    903    2016-02-17 05:01:01    2016-02-17 05:01:01
28371    15763    750    2016-01-31 05:23:56    2016-01-31 05:23:56
28372    18534    492    2016-03-24 04:53:01    2016-03-24 04:53:01
28373    15316    901    2016-02-17 19:02:03    2016-02-17 19:02:03
28374    11844    869    2016-04-18 11:44:25    2016-04-18 11:44:25
28375    18117    543    2016-03-28 07:43:04    2016-03-28 07:43:04
28376    16577    803    2016-02-15 23:23:48    2016-02-15 23:23:48
28377    13164    618    2016-02-29 21:01:15    2016-02-29 21:01:15
28378    17486    752    2016-04-12 16:22:40    2016-04-12 16:22:40
28379    12027    675    2016-04-01 21:10:47    2016-04-01 21:10:47
28380    10702    515    2016-04-13 17:56:25    2016-04-13 17:56:25
28381    15943    483    2016-02-10 22:39:33    2016-02-10 22:39:33
28382    10002    685    2016-02-11 02:19:46    2016-02-11 02:19:46
28383    18243    720    2016-01-28 03:13:45    2016-01-28 03:13:45
28384    11207    795    2016-04-11 05:18:01    2016-04-11 05:18:01
28385    19190    783    2016-04-02 20:23:47    2016-04-02 20:23:47
28386    15243    504    2016-01-27 02:08:48    2016-01-27 02:08:48
28387    12198    716    2016-03-30 23:02:25    2016-03-30 23:02:25
28388    13788    900    2016-03-13 17:30:14    2016-03-13 17:30:14
28389    13928    921    2016-03-19 18:59:30    2016-03-19 18:59:30
28390    11588    495    2016-02-07 07:10:57    2016-02-07 07:10:57
28391    16568    805    2016-03-23 07:08:33    2016-03-23 07:08:33
28392    10277    653    2016-02-01 05:09:38    2016-02-01 05:09:38
28393    19848    603    2016-02-13 04:13:35    2016-02-13 04:13:35
28394    18201    518    2016-03-29 04:08:20    2016-03-29 04:08:20
28395    14459    533    2016-01-29 15:53:56    2016-01-29 15:53:56
28396    12268    850    2016-03-05 03:17:54    2016-03-05 03:17:54
28397    17833    794    2016-04-04 14:34:12    2016-04-04 14:34:12
28398    14270    902    2016-03-26 09:55:27    2016-03-26 09:55:27
28399    19690    863    2016-03-14 13:42:56    2016-03-14 13:42:56
28400    10538    519    2016-01-27 07:00:12    2016-01-27 07:00:12
28401    10613    509    2016-02-11 15:28:52    2016-02-11 15:28:52
28402    13230    541    2016-03-26 13:39:08    2016-03-26 13:39:08
28403    10104    503    2016-04-09 16:22:59    2016-04-09 16:22:59
28404    10561    511    2016-04-19 18:14:23    2016-04-19 18:14:23
28405    18978    538    2016-02-14 08:59:36    2016-02-14 08:59:36
28406    14715    647    2016-04-10 19:22:49    2016-04-10 19:22:49
28407    17826    855    2016-02-02 11:27:30    2016-02-02 11:27:30
28408    14571    490    2016-04-18 11:49:04    2016-04-18 11:49:04
28409    13886    907    2016-02-03 21:15:15    2016-02-03 21:15:15
28410    19278    675    2016-04-02 16:40:49    2016-04-02 16:40:49
28411    14626    860    2016-03-14 10:39:20    2016-03-14 10:39:20
28412    17591    752    2016-03-30 18:43:20    2016-03-30 18:43:20
28413    12104    707    2016-03-08 06:28:17    2016-03-08 06:28:17
28414    13603    792    2016-02-03 17:41:28    2016-02-03 17:41:28
28415    14158    518    2016-03-30 04:29:23    2016-03-30 04:29:23
28416    13283    597    2016-02-18 03:05:21    2016-02-18 03:05:21
28417    18174    512    2016-02-27 06:15:55    2016-02-27 06:15:55
28418    17961    877    2016-03-02 18:30:31    2016-03-02 18:30:31
28419    19799    837    2016-02-20 19:21:56    2016-02-20 19:21:56
28420    19109    625    2016-03-24 04:27:33    2016-03-24 04:27:33
28421    12010    467    2016-02-26 10:40:14    2016-02-26 10:40:14
28422    18006    609    2016-04-17 04:32:09    2016-04-17 04:32:09
28423    11077    650    2016-01-28 19:09:06    2016-01-28 19:09:06
28424    10972    791    2016-03-04 02:38:00    2016-03-04 02:38:00
28425    16954    946    2016-03-17 03:51:59    2016-03-17 03:51:59
28426    16095    832    2016-03-28 07:36:05    2016-03-28 07:36:05
28427    18574    519    2016-02-11 14:05:07    2016-02-11 14:05:07
28428    10553    769    2016-01-26 23:32:57    2016-01-26 23:32:57
28429    15335    492    2016-03-18 21:13:06    2016-03-18 21:13:06
28430    19558    917    2016-02-13 00:03:19    2016-02-13 00:03:19
28431    14214    623    2016-02-08 05:13:01    2016-02-08 05:13:01
28432    12211    679    2016-04-19 11:03:10    2016-04-19 11:03:10
28433    11688    700    2016-01-31 23:21:11    2016-01-31 23:21:11
28434    13580    690    2016-03-18 17:32:23    2016-03-18 17:32:23
28435    18335    950    2016-03-09 05:14:49    2016-03-09 05:14:49
28436    17232    700    2016-02-04 17:31:22    2016-02-04 17:31:22
28437    18407    843    2016-02-11 14:54:33    2016-02-11 14:54:33
28438    19886    476    2016-03-18 05:11:51    2016-03-18 05:11:51
28439    13587    947    2016-03-17 05:50:24    2016-03-17 05:50:24
28440    13436    906    2016-03-06 05:27:13    2016-03-06 05:27:13
28441    15513    546    2016-02-04 09:23:24    2016-02-04 09:23:24
28442    12359    845    2016-03-11 20:53:16    2016-03-11 20:53:16
28443    10663    915    2016-04-12 20:37:21    2016-04-12 20:37:21
28444    18255    769    2016-04-14 14:24:16    2016-04-14 14:24:16
28445    15122    570    2016-02-03 15:31:43    2016-02-03 15:31:43
28446    16658    873    2016-04-14 18:19:14    2016-04-14 18:19:14
28447    10430    931    2016-02-06 00:38:23    2016-02-06 00:38:23
28448    19459    892    2016-04-01 14:31:03    2016-04-01 14:31:03
28449    10203    489    2016-03-17 06:41:38    2016-03-17 06:41:38
28450    10583    628    2016-02-05 14:34:27    2016-02-05 14:34:27
28451    12315    493    2016-01-28 18:48:02    2016-01-28 18:48:02
28452    16266    852    2016-02-26 08:37:02    2016-02-26 08:37:02
28453    10214    521    2016-03-25 01:42:01    2016-03-25 01:42:01
28454    12497    563    2016-03-25 04:58:13    2016-03-25 04:58:13
28455    11717    743    2016-04-18 20:05:00    2016-04-18 20:05:00
28456    19796    725    2016-03-15 10:17:10    2016-03-15 10:17:10
28457    15107    472    2016-02-15 21:51:29    2016-02-15 21:51:29
28458    17885    896    2016-03-15 05:10:49    2016-03-15 05:10:49
28459    16693    776    2016-02-29 10:46:29    2016-02-29 10:46:29
28460    10998    674    2016-01-25 23:13:21    2016-01-25 23:13:21
28461    15480    757    2016-04-08 23:51:20    2016-04-08 23:51:20
28462    12327    730    2016-02-07 22:45:53    2016-02-07 22:45:53
28463    19599    953    2016-01-28 08:34:32    2016-01-28 08:34:32
28464    16962    882    2016-03-18 09:11:16    2016-03-18 09:11:16
28465    10209    783    2016-04-19 11:00:43    2016-04-19 11:00:43
28466    16266    555    2016-03-21 00:55:54    2016-03-21 00:55:54
28467    11685    906    2016-01-28 18:09:29    2016-01-28 18:09:29
28468    19578    731    2016-03-30 10:20:37    2016-03-30 10:20:37
28469    12443    865    2016-02-13 07:17:08    2016-02-13 07:17:08
28470    13565    676    2016-03-04 04:10:10    2016-03-04 04:10:10
28471    13404    581    2016-03-14 14:27:33    2016-03-14 14:27:33
28472    18098    520    2016-04-17 06:18:04    2016-04-17 06:18:04
28473    15779    885    2016-01-22 18:52:58    2016-01-22 18:52:58
28474    10801    512    2016-03-02 05:22:22    2016-03-02 05:22:22
28475    15592    804    2016-04-06 06:01:34    2016-04-06 06:01:34
28476    16364    669    2016-03-31 10:55:10    2016-03-31 10:55:10
28477    19119    768    2016-01-22 12:58:45    2016-01-22 12:58:45
28478    15236    865    2016-02-26 22:23:25    2016-02-26 22:23:25
28479    17128    704    2016-02-07 10:55:06    2016-02-07 10:55:06
28480    10657    802    2016-01-27 16:53:08    2016-01-27 16:53:08
28481    18044    879    2016-01-25 07:51:39    2016-01-25 07:51:39
28482    19225    930    2016-04-12 18:27:02    2016-04-12 18:27:02
28483    10292    466    2016-02-23 09:52:19    2016-02-23 09:52:19
28484    18424    548    2016-02-16 18:52:55    2016-02-16 18:52:55
28485    19565    846    2016-04-08 09:08:08    2016-04-08 09:08:08
28486    12844    944    2016-03-05 22:32:34    2016-03-05 22:32:34
28487    13675    693    2016-04-09 20:45:04    2016-04-09 20:45:04
28488    10121    708    2016-03-20 16:51:36    2016-03-20 16:51:36
28489    15357    573    2016-04-05 06:52:07    2016-04-05 06:52:07
28490    11321    789    2016-04-07 01:51:26    2016-04-07 01:51:26
28491    19186    686    2016-01-30 08:29:11    2016-01-30 08:29:11
28492    16869    835    2016-01-27 18:15:34    2016-01-27 18:15:34
28493    11387    471    2016-02-06 20:05:46    2016-02-06 20:05:46
28494    14352    860    2016-01-28 00:06:18    2016-01-28 00:06:18
28495    10515    835    2016-04-02 13:42:02    2016-04-02 13:42:02
28496    15851    852    2016-02-15 16:38:25    2016-02-15 16:38:25
28497    11306    929    2016-03-31 01:17:22    2016-03-31 01:17:22
28498    11360    503    2016-01-27 21:19:28    2016-01-27 21:19:28
28499    17913    519    2016-04-18 18:36:47    2016-04-18 18:36:47
28500    14925    578    2016-03-29 21:09:28    2016-03-29 21:09:28
28501    14118    594    2016-04-14 15:59:57    2016-04-14 15:59:57
28502    16378    671    2016-02-13 20:35:16    2016-02-13 20:35:16
28503    10167    864    2016-03-13 18:27:40    2016-03-13 18:27:40
28504    16590    515    2016-04-16 01:57:07    2016-04-16 01:57:07
28505    13538    655    2016-03-09 16:36:25    2016-03-09 16:36:25
28506    19048    503    2016-02-20 02:40:07    2016-02-20 02:40:07
28507    11004    764    2016-04-03 12:31:54    2016-04-03 12:31:54
28508    18274    723    2016-03-18 06:11:15    2016-03-18 06:11:15
28509    18756    480    2016-02-27 02:13:10    2016-02-27 02:13:10
28510    16808    700    2016-02-22 13:04:20    2016-02-22 13:04:20
28511    19381    686    2016-04-03 07:37:06    2016-04-03 07:37:06
28512    18877    551    2016-03-17 00:37:14    2016-03-17 00:37:14
28513    10176    536    2016-03-10 07:09:15    2016-03-10 07:09:15
28514    15426    761    2016-03-15 21:57:53    2016-03-15 21:57:53
28515    10056    655    2016-02-29 04:46:56    2016-02-29 04:46:56
28516    10492    762    2016-02-21 13:03:55    2016-02-21 13:03:55
28517    13399    673    2016-02-08 16:27:57    2016-02-08 16:27:57
28518    17103    469    2016-04-04 07:50:07    2016-04-04 07:50:07
28519    13222    617    2016-04-17 07:26:07    2016-04-17 07:26:07
28520    15660    463    2016-02-19 05:14:17    2016-02-19 05:14:17
28521    16261    959    2016-01-23 20:40:33    2016-01-23 20:40:33
28522    14207    958    2016-02-19 02:33:36    2016-02-19 02:33:36
28523    11640    780    2016-03-31 15:08:27    2016-03-31 15:08:27
28524    19615    701    2016-04-03 18:21:40    2016-04-03 18:21:40
28525    13258    684    2016-01-24 21:25:24    2016-01-24 21:25:24
28526    17557    679    2016-02-22 23:31:07    2016-02-22 23:31:07
28527    19987    883    2016-04-03 02:24:04    2016-04-03 02:24:04
28528    15302    904    2016-04-17 19:00:56    2016-04-17 19:00:56
28529    17772    588    2016-03-16 13:30:52    2016-03-16 13:30:52
28530    13706    846    2016-04-02 02:49:38    2016-04-02 02:49:38
28531    11946    718    2016-01-30 01:56:03    2016-01-30 01:56:03
28532    12992    945    2016-02-21 21:56:43    2016-02-21 21:56:43
28533    13189    517    2016-03-14 10:13:22    2016-03-14 10:13:22
28534    17096    535    2016-02-19 06:41:50    2016-02-19 06:41:50
28535    17297    950    2016-01-28 07:56:22    2016-01-28 07:56:22
28536    19927    640    2016-03-28 12:23:11    2016-03-28 12:23:11
28537    13033    702    2016-03-12 09:19:55    2016-03-12 09:19:55
28538    16805    734    2016-02-01 17:41:40    2016-02-01 17:41:40
28539    10936    490    2016-03-03 04:30:50    2016-03-03 04:30:50
28540    13822    733    2016-01-24 20:53:39    2016-01-24 20:53:39
28541    18340    689    2016-02-26 12:20:34    2016-02-26 12:20:34
28542    17945    789    2016-01-27 20:31:59    2016-01-27 20:31:59
28543    13738    565    2016-03-14 08:10:14    2016-03-14 08:10:14
28544    12827    617    2016-04-12 09:39:29    2016-04-12 09:39:29
28545    16706    720    2016-03-06 08:31:04    2016-03-06 08:31:04
28546    10567    711    2016-01-24 17:55:17    2016-01-24 17:55:17
28547    18559    571    2016-03-18 07:41:54    2016-03-18 07:41:54
28548    13610    642    2016-03-29 06:29:35    2016-03-29 06:29:35
28549    15129    610    2016-04-09 05:29:46    2016-04-09 05:29:46
28550    13383    957    2016-02-23 01:59:08    2016-02-23 01:59:08
28551    10707    770    2016-03-05 16:36:14    2016-03-05 16:36:14
28552    13653    569    2016-02-09 07:33:17    2016-02-09 07:33:17
28553    12609    501    2016-01-25 20:07:06    2016-01-25 20:07:06
28554    18494    833    2016-03-13 15:54:05    2016-03-13 15:54:05
28555    10819    680    2016-02-16 08:52:03    2016-02-16 08:52:03
28556    10372    918    2016-02-21 04:24:26    2016-02-21 04:24:26
28557    15756    950    2016-04-19 14:34:30    2016-04-19 14:34:30
28558    14660    529    2016-04-14 13:51:18    2016-04-14 13:51:18
28559    19266    596    2016-04-03 18:34:09    2016-04-03 18:34:09
28560    12556    637    2016-04-07 15:13:34    2016-04-07 15:13:34
28561    18855    573    2016-02-06 08:55:13    2016-02-06 08:55:13
28562    12571    674    2016-04-15 01:41:36    2016-04-15 01:41:36
28563    19714    865    2016-02-18 17:51:18    2016-02-18 17:51:18
28564    14041    817    2016-04-11 16:38:13    2016-04-11 16:38:13
28565    16051    932    2016-02-05 23:17:38    2016-02-05 23:17:38
28566    10905    665    2016-01-27 20:46:02    2016-01-27 20:46:02
28567    11094    888    2016-03-03 13:10:49    2016-03-03 13:10:49
28568    12168    899    2016-04-13 14:56:15    2016-04-13 14:56:15
28569    13989    606    2016-02-04 06:23:05    2016-02-04 06:23:05
28570    10672    810    2016-03-28 13:12:04    2016-03-28 13:12:04
28571    11711    780    2016-02-13 14:28:29    2016-02-13 14:28:29
28572    12095    834    2016-02-10 11:33:58    2016-02-10 11:33:58
28573    18287    724    2016-02-15 17:10:20    2016-02-15 17:10:20
28574    13481    729    2016-04-07 20:18:33    2016-04-07 20:18:33
28575    14981    677    2016-01-26 12:09:38    2016-01-26 12:09:38
28576    16641    473    2016-02-29 05:02:45    2016-02-29 05:02:45
28577    16215    568    2016-04-19 11:39:16    2016-04-19 11:39:16
28578    10820    788    2016-03-03 04:31:04    2016-03-03 04:31:04
28579    18679    774    2016-04-17 21:25:43    2016-04-17 21:25:43
28580    15517    751    2016-02-12 12:39:27    2016-02-12 12:39:27
28581    14193    958    2016-02-04 00:43:01    2016-02-04 00:43:01
28582    15217    573    2016-02-01 14:44:07    2016-02-01 14:44:07
28583    18192    758    2016-03-05 03:50:45    2016-03-05 03:50:45
28584    12680    729    2016-03-15 23:24:27    2016-03-15 23:24:27
28585    12469    569    2016-01-25 23:56:13    2016-01-25 23:56:13
28586    19191    670    2016-04-15 16:43:35    2016-04-15 16:43:35
28587    11141    597    2016-04-12 04:21:19    2016-04-12 04:21:19
28588    12188    544    2016-02-03 17:51:15    2016-02-03 17:51:15
28589    18958    865    2016-03-26 10:59:11    2016-03-26 10:59:11
28590    10569    635    2016-03-09 11:35:57    2016-03-09 11:35:57
28591    18987    915    2016-02-18 00:35:53    2016-02-18 00:35:53
28592    12593    831    2016-02-22 13:29:19    2016-02-22 13:29:19
28593    19924    638    2016-04-20 19:34:28    2016-04-20 19:34:28
28594    18435    705    2016-02-20 09:49:41    2016-02-20 09:49:41
28595    11793    533    2016-04-16 21:03:19    2016-04-16 21:03:19
28596    16963    890    2016-04-14 20:14:30    2016-04-14 20:14:30
28597    11406    830    2016-02-13 16:21:13    2016-02-13 16:21:13
28598    19857    769    2016-03-28 07:34:14    2016-03-28 07:34:14
28599    19619    718    2016-04-05 15:43:01    2016-04-05 15:43:01
28600    12552    856    2016-02-02 00:20:56    2016-02-02 00:20:56
28601    11664    955    2016-03-26 00:32:36    2016-03-26 00:32:36
28602    16153    596    2016-02-12 07:38:14    2016-02-12 07:38:14
28603    13384    769    2016-03-17 22:02:34    2016-03-17 22:02:34
28604    19111    565    2016-03-13 23:26:28    2016-03-13 23:26:28
28605    13403    949    2016-03-07 04:19:04    2016-03-07 04:19:04
28606    13080    548    2016-03-22 06:52:58    2016-03-22 06:52:58
28607    12276    719    2016-03-08 17:13:29    2016-03-08 17:13:29
28608    14306    463    2016-03-31 15:08:21    2016-03-31 15:08:21
28609    18877    515    2016-02-16 12:15:34    2016-02-16 12:15:34
28610    18750    744    2016-02-21 13:49:17    2016-02-21 13:49:17
28611    15121    617    2016-02-20 10:38:16    2016-02-20 10:38:16
28612    16482    734    2016-04-16 08:46:36    2016-04-16 08:46:36
28613    11228    586    2016-04-14 04:03:16    2016-04-14 04:03:16
28614    15880    852    2016-02-18 18:46:02    2016-02-18 18:46:02
28615    13453    897    2016-03-04 04:19:17    2016-03-04 04:19:17
28616    16358    518    2016-01-25 06:53:47    2016-01-25 06:53:47
28617    15513    724    2016-03-08 02:43:50    2016-03-08 02:43:50
28618    12757    852    2016-02-23 15:20:08    2016-02-23 15:20:08
28619    13847    852    2016-04-10 21:45:45    2016-04-10 21:45:45
28620    11252    824    2016-03-09 15:34:21    2016-03-09 15:34:21
28621    19568    840    2016-01-23 12:17:28    2016-01-23 12:17:28
28622    14408    549    2016-03-29 19:48:56    2016-03-29 19:48:56
28623    12730    914    2016-03-09 04:42:07    2016-03-09 04:42:07
28624    10612    637    2016-02-08 19:12:34    2016-02-08 19:12:34
28625    12645    639    2016-02-10 18:36:14    2016-02-10 18:36:14
28626    16534    590    2016-01-30 16:09:51    2016-01-30 16:09:51
28627    16670    960    2016-02-21 04:00:33    2016-02-21 04:00:33
28628    18712    484    2016-03-18 17:11:02    2016-03-18 17:11:02
28629    11044    651    2016-03-04 17:11:53    2016-03-04 17:11:53
28630    13620    498    2016-02-13 19:00:21    2016-02-13 19:00:21
28631    14597    643    2016-03-22 03:21:11    2016-03-22 03:21:11
28632    19360    916    2016-03-11 14:16:43    2016-03-11 14:16:43
28633    14101    942    2016-04-09 12:32:08    2016-04-09 12:32:08
28634    10765    889    2016-02-21 08:30:59    2016-02-21 08:30:59
28635    19779    731    2016-04-05 11:31:57    2016-04-05 11:31:57
28636    15737    945    2016-02-12 19:12:35    2016-02-12 19:12:35
28637    12180    592    2016-04-06 04:16:13    2016-04-06 04:16:13
28638    16866    487    2016-02-29 23:07:22    2016-02-29 23:07:22
28639    13149    721    2016-03-23 00:01:28    2016-03-23 00:01:28
28640    10911    527    2016-02-01 17:58:07    2016-02-01 17:58:07
28641    13965    608    2016-02-10 13:47:51    2016-02-10 13:47:51
28642    13582    888    2016-02-06 13:12:09    2016-02-06 13:12:09
28643    19934    745    2016-01-25 06:12:33    2016-01-25 06:12:33
28644    12659    939    2016-02-19 23:19:34    2016-02-19 23:19:34
28645    13168    887    2016-02-01 01:07:30    2016-02-01 01:07:30
28646    15403    535    2016-03-23 12:08:22    2016-03-23 12:08:22
28647    15379    626    2016-03-08 03:13:48    2016-03-08 03:13:48
28648    15639    955    2016-03-07 11:37:10    2016-03-07 11:37:10
28649    18800    883    2016-02-12 20:06:49    2016-02-12 20:06:49
28650    15396    719    2016-01-27 01:41:25    2016-01-27 01:41:25
28651    14066    653    2016-01-26 06:39:13    2016-01-26 06:39:13
28652    17436    503    2016-03-28 12:43:39    2016-03-28 12:43:39
28653    18910    801    2016-01-22 23:41:21    2016-01-22 23:41:21
28654    17404    583    2016-01-24 20:47:25    2016-01-24 20:47:25
28655    15416    712    2016-02-02 22:24:53    2016-02-02 22:24:53
28656    18450    775    2016-03-13 04:16:19    2016-03-13 04:16:19
28657    11077    867    2016-02-21 08:15:51    2016-02-21 08:15:51
28658    16345    659    2016-04-19 01:37:21    2016-04-19 01:37:21
28659    19060    604    2016-02-05 05:29:29    2016-02-05 05:29:29
28660    13760    882    2016-02-27 07:57:59    2016-02-27 07:57:59
28661    17640    718    2016-03-08 12:56:51    2016-03-08 12:56:51
28662    10200    861    2016-01-28 16:41:16    2016-01-28 16:41:16
28663    14751    898    2016-02-26 15:52:38    2016-02-26 15:52:38
28664    10161    590    2016-02-29 16:03:43    2016-02-29 16:03:43
28665    15916    773    2016-03-21 22:14:02    2016-03-21 22:14:02
28666    17664    576    2016-04-15 03:38:57    2016-04-15 03:38:57
28667    18693    581    2016-01-24 15:24:24    2016-01-24 15:24:24
28668    19115    562    2016-02-01 14:32:18    2016-02-01 14:32:18
28669    16201    738    2016-01-26 05:50:14    2016-01-26 05:50:14
28670    18988    841    2016-02-28 17:49:03    2016-02-28 17:49:03
28671    16799    514    2016-02-13 18:16:24    2016-02-13 18:16:24
28672    16125    588    2016-02-29 23:55:09    2016-02-29 23:55:09
28673    17062    493    2016-01-25 20:34:19    2016-01-25 20:34:19
28674    11091    665    2016-04-05 03:55:08    2016-04-05 03:55:08
28675    15474    772    2016-04-14 12:19:12    2016-04-14 12:19:12
28676    14565    697    2016-02-06 21:26:53    2016-02-06 21:26:53
28677    10388    866    2016-02-18 16:27:08    2016-02-18 16:27:08
28678    13256    485    2016-03-06 10:03:35    2016-03-06 10:03:35
28679    12155    623    2016-02-02 00:48:34    2016-02-02 00:48:34
28680    17624    863    2016-04-02 12:27:15    2016-04-02 12:27:15
28681    10661    947    2016-03-21 01:14:37    2016-03-21 01:14:37
28682    14233    885    2016-02-18 07:21:43    2016-02-18 07:21:43
28683    10306    517    2016-02-12 15:47:41    2016-02-12 15:47:41
28684    10429    794    2016-02-16 06:15:20    2016-02-16 06:15:20
28685    19113    670    2016-02-12 15:11:12    2016-02-12 15:11:12
28686    12674    876    2016-03-04 09:12:53    2016-03-04 09:12:53
28687    19661    617    2016-03-21 18:48:29    2016-03-21 18:48:29
28688    16391    893    2016-04-12 05:37:20    2016-04-12 05:37:20
28689    13112    843    2016-03-13 09:08:05    2016-03-13 09:08:05
28690    11175    812    2016-04-14 18:12:23    2016-04-14 18:12:23
28691    12656    475    2016-03-28 15:33:24    2016-03-28 15:33:24
28692    18512    807    2016-03-23 08:36:18    2016-03-23 08:36:18
28693    11875    679    2016-01-29 11:13:16    2016-01-29 11:13:16
28694    11816    701    2016-03-13 17:49:05    2016-03-13 17:49:05
28695    17011    497    2016-02-09 02:22:36    2016-02-09 02:22:36
28696    14614    575    2016-02-11 14:16:28    2016-02-11 14:16:28
28697    16115    771    2016-03-27 22:59:46    2016-03-27 22:59:46
28698    16897    784    2016-04-16 20:06:10    2016-04-16 20:06:10
28699    14967    766    2016-02-12 07:14:46    2016-02-12 07:14:46
28700    11945    599    2016-04-15 14:27:56    2016-04-15 14:27:56
28701    12694    837    2016-01-29 11:14:38    2016-01-29 11:14:38
28702    10368    531    2016-04-04 15:21:52    2016-04-04 15:21:52
28703    14992    959    2016-03-14 20:50:27    2016-03-14 20:50:27
28704    16941    637    2016-03-29 06:33:40    2016-03-29 06:33:40
28705    12621    727    2016-02-15 11:27:02    2016-02-15 11:27:02
28706    10550    908    2016-03-22 18:32:18    2016-03-22 18:32:18
28707    15626    910    2016-01-26 06:53:23    2016-01-26 06:53:23
28708    17642    521    2016-01-31 03:19:22    2016-01-31 03:19:22
28709    18121    560    2016-03-01 18:46:47    2016-03-01 18:46:47
28710    14936    713    2016-03-27 00:29:09    2016-03-27 00:29:09
28711    17981    888    2016-02-25 13:17:25    2016-02-25 13:17:25
28712    11473    893    2016-01-24 15:43:52    2016-01-24 15:43:52
28713    16144    567    2016-02-14 10:45:43    2016-02-14 10:45:43
28714    12469    495    2016-02-03 10:12:33    2016-02-03 10:12:33
28715    12680    778    2016-02-13 19:30:37    2016-02-13 19:30:37
28716    16793    957    2016-04-13 22:01:15    2016-04-13 22:01:15
28717    14295    952    2016-03-14 23:07:10    2016-03-14 23:07:10
28718    18618    889    2016-03-31 01:36:09    2016-03-31 01:36:09
28719    19967    762    2016-01-27 21:09:19    2016-01-27 21:09:19
28720    13970    879    2016-03-16 18:42:01    2016-03-16 18:42:01
28721    11471    820    2016-04-03 13:45:28    2016-04-03 13:45:28
28722    14020    547    2016-02-07 06:42:47    2016-02-07 06:42:47
28723    15646    597    2016-02-24 00:36:03    2016-02-24 00:36:03
28724    14237    590    2016-03-03 09:08:41    2016-03-03 09:08:41
28725    18123    493    2016-01-26 02:50:58    2016-01-26 02:50:58
28726    12135    677    2016-01-30 14:12:17    2016-01-30 14:12:17
28727    19478    944    2016-04-14 01:28:43    2016-04-14 01:28:43
28728    19006    731    2016-02-03 11:28:58    2016-02-03 11:28:58
28729    13645    922    2016-04-19 08:56:25    2016-04-19 08:56:25
28730    11429    690    2016-02-04 10:03:11    2016-02-04 10:03:11
28731    13893    692    2016-04-15 18:10:55    2016-04-15 18:10:55
28732    19995    847    2016-04-15 05:23:12    2016-04-15 05:23:12
28733    17021    655    2016-03-25 11:26:07    2016-03-25 11:26:07
28734    13045    738    2016-02-08 16:07:21    2016-02-08 16:07:21
28735    17639    591    2016-02-19 14:56:55    2016-02-19 14:56:55
28736    10916    797    2016-04-17 02:03:02    2016-04-17 02:03:02
28737    11378    918    2016-01-26 13:40:39    2016-01-26 13:40:39
28738    13134    892    2016-03-25 19:42:38    2016-03-25 19:42:38
28739    19745    957    2016-02-03 19:20:07    2016-02-03 19:20:07
28740    12679    586    2016-02-24 19:46:02    2016-02-24 19:46:02
28741    19624    554    2016-03-13 10:58:52    2016-03-13 10:58:52
28742    15572    602    2016-04-09 06:01:33    2016-04-09 06:01:33
28743    13255    733    2016-02-12 03:32:26    2016-02-12 03:32:26
28744    19581    747    2016-01-23 14:53:53    2016-01-23 14:53:53
28745    15354    958    2016-03-13 19:12:27    2016-03-13 19:12:27
28746    14162    522    2016-03-26 05:32:50    2016-03-26 05:32:50
28747    17184    733    2016-03-13 00:47:09    2016-03-13 00:47:09
28748    16939    664    2016-03-07 06:27:14    2016-03-07 06:27:14
28749    10139    551    2016-02-20 01:41:51    2016-02-20 01:41:51
28750    14234    956    2016-04-07 20:40:01    2016-04-07 20:40:01
28751    15423    487    2016-03-23 05:43:44    2016-03-23 05:43:44
28752    10522    634    2016-03-23 20:41:15    2016-03-23 20:41:15
28753    11138    869    2016-01-30 02:25:58    2016-01-30 02:25:58
28754    14272    790    2016-04-14 01:23:39    2016-04-14 01:23:39
28755    11790    882    2016-03-02 07:55:25    2016-03-02 07:55:25
28756    10415    681    2016-03-30 17:31:03    2016-03-30 17:31:03
28757    13211    805    2016-03-22 20:02:08    2016-03-22 20:02:08
28758    17873    692    2016-03-26 21:58:01    2016-03-26 21:58:01
28759    10783    901    2016-02-05 04:46:30    2016-02-05 04:46:30
28760    12401    624    2016-02-28 13:45:29    2016-02-28 13:45:29
28761    12287    569    2016-04-16 21:41:59    2016-04-16 21:41:59
28762    17873    734    2016-02-01 12:40:16    2016-02-01 12:40:16
28763    13885    524    2016-04-20 03:48:33    2016-04-20 03:48:33
28764    12772    809    2016-04-03 13:40:37    2016-04-03 13:40:37
28765    16740    674    2016-02-11 04:53:51    2016-02-11 04:53:51
28766    19931    591    2016-03-13 23:55:31    2016-03-13 23:55:31
28767    10112    556    2016-02-19 20:38:47    2016-02-19 20:38:47
28768    19043    793    2016-04-12 18:47:36    2016-04-12 18:47:36
28769    13049    653    2016-04-12 05:06:56    2016-04-12 05:06:56
28770    15245    772    2016-02-12 08:52:53    2016-02-12 08:52:53
28771    16791    610    2016-01-29 09:33:36    2016-01-29 09:33:36
28772    18345    594    2016-03-18 17:43:52    2016-03-18 17:43:52
28773    15435    627    2016-04-17 11:30:52    2016-04-17 11:30:52
28774    14167    827    2016-03-06 23:45:53    2016-03-06 23:45:53
28775    16348    830    2016-03-05 06:33:57    2016-03-05 06:33:57
28776    10070    650    2016-03-10 09:28:36    2016-03-10 09:28:36
28777    11667    592    2016-01-27 02:40:33    2016-01-27 02:40:33
28778    16616    664    2016-02-04 07:26:26    2016-02-04 07:26:26
28779    11164    674    2016-04-14 06:51:21    2016-04-14 06:51:21
28780    15209    887    2016-02-27 17:38:24    2016-02-27 17:38:24
28781    12121    492    2016-04-18 08:17:38    2016-04-18 08:17:38
28782    10401    473    2016-03-11 09:19:00    2016-03-11 09:19:00
28783    15636    532    2016-03-22 21:45:14    2016-03-22 21:45:14
28784    19216    574    2016-02-02 09:40:00    2016-02-02 09:40:00
28785    11561    897    2016-01-26 17:59:02    2016-01-26 17:59:02
28786    11716    619    2016-03-10 17:01:25    2016-03-10 17:01:25
28787    13474    772    2016-03-05 11:35:56    2016-03-05 11:35:56
28788    14606    761    2016-04-15 08:43:18    2016-04-15 08:43:18
28789    18341    737    2016-01-23 05:54:38    2016-01-23 05:54:38
28790    14181    910    2016-02-23 10:01:55    2016-02-23 10:01:55
28791    11191    814    2016-03-16 19:50:42    2016-03-16 19:50:42
28792    18537    655    2016-01-30 09:28:38    2016-01-30 09:28:38
28793    19761    946    2016-02-26 19:44:55    2016-02-26 19:44:55
28794    12698    755    2016-02-18 12:04:53    2016-02-18 12:04:53
28795    13659    855    2016-03-30 15:24:26    2016-03-30 15:24:26
28796    14686    481    2016-03-22 14:03:03    2016-03-22 14:03:03
28797    12255    832    2016-04-11 06:40:58    2016-04-11 06:40:58
28798    14409    902    2016-04-01 07:50:05    2016-04-01 07:50:05
28799    10510    805    2016-03-12 16:03:33    2016-03-12 16:03:33
28800    12328    672    2016-03-25 17:47:15    2016-03-25 17:47:15
28801    19416    779    2016-03-05 04:35:49    2016-03-05 04:35:49
28802    12924    870    2016-04-02 14:54:05    2016-04-02 14:54:05
28803    13079    855    2016-03-08 20:08:03    2016-03-08 20:08:03
28804    17917    718    2016-04-08 03:57:30    2016-04-08 03:57:30
28805    12391    741    2016-03-10 18:15:49    2016-03-10 18:15:49
28806    12693    599    2016-02-26 16:56:54    2016-02-26 16:56:54
28807    17190    668    2016-03-11 20:37:30    2016-03-11 20:37:30
28808    12204    826    2016-04-01 11:27:35    2016-04-01 11:27:35
28809    16638    952    2016-02-27 19:58:08    2016-02-27 19:58:08
28810    17639    933    2016-03-24 06:54:12    2016-03-24 06:54:12
28811    19232    865    2016-04-08 07:26:40    2016-04-08 07:26:40
28812    17049    914    2016-04-01 01:04:13    2016-04-01 01:04:13
28813    12627    845    2016-04-13 14:47:13    2016-04-13 14:47:13
28814    11482    798    2016-02-08 01:23:42    2016-02-08 01:23:42
28815    15412    697    2016-04-16 13:42:16    2016-04-16 13:42:16
28816    18201    960    2016-03-10 17:14:50    2016-03-10 17:14:50
28817    19635    790    2016-02-24 11:58:36    2016-02-24 11:58:36
28818    13174    478    2016-04-02 14:46:22    2016-04-02 14:46:22
28819    18498    481    2016-02-01 10:24:04    2016-02-01 10:24:04
28820    13676    764    2016-01-23 01:37:01    2016-01-23 01:37:01
28821    12968    812    2016-02-29 20:00:21    2016-02-29 20:00:21
28822    11552    491    2016-03-28 23:08:10    2016-03-28 23:08:10
28823    12158    667    2016-03-17 00:57:32    2016-03-17 00:57:32
28824    10912    582    2016-03-02 06:34:04    2016-03-02 06:34:04
28825    11028    861    2016-03-27 09:10:30    2016-03-27 09:10:30
28826    14951    619    2016-03-25 19:08:30    2016-03-25 19:08:30
28827    11801    573    2016-03-31 01:43:53    2016-03-31 01:43:53
28828    19031    761    2016-03-15 02:59:25    2016-03-15 02:59:25
28829    10909    642    2016-04-04 00:47:42    2016-04-04 00:47:42
28830    11956    537    2016-03-11 10:47:34    2016-03-11 10:47:34
28831    19943    836    2016-03-23 02:02:11    2016-03-23 02:02:11
28832    18118    886    2016-03-06 19:56:21    2016-03-06 19:56:21
28833    16354    793    2016-03-03 13:51:27    2016-03-03 13:51:27
28834    18597    661    2016-01-22 16:32:43    2016-01-22 16:32:43
28835    11517    835    2016-02-20 12:06:33    2016-02-20 12:06:33
28836    13168    851    2016-03-26 01:55:47    2016-03-26 01:55:47
28837    19431    614    2016-03-08 12:24:03    2016-03-08 12:24:03
28838    18421    472    2016-04-20 13:05:37    2016-04-20 13:05:37
28839    10158    632    2016-04-11 08:03:28    2016-04-11 08:03:28
28840    10339    596    2016-01-30 17:07:25    2016-01-30 17:07:25
28841    15709    681    2016-03-19 22:57:22    2016-03-19 22:57:22
28842    12452    840    2016-04-14 09:22:49    2016-04-14 09:22:49
28843    13822    527    2016-03-26 22:45:09    2016-03-26 22:45:09
28844    13412    735    2016-03-11 11:33:27    2016-03-11 11:33:27
28845    14905    907    2016-02-07 20:46:04    2016-02-07 20:46:04
28846    14959    478    2016-03-19 03:54:21    2016-03-19 03:54:21
28847    15858    569    2016-02-02 09:15:40    2016-02-02 09:15:40
28848    17808    503    2016-03-09 04:57:44    2016-03-09 04:57:44
28849    11060    555    2016-04-19 22:25:39    2016-04-19 22:25:39
28850    14981    480    2016-03-14 11:15:54    2016-03-14 11:15:54
28851    12118    881    2016-04-09 01:42:24    2016-04-09 01:42:24
28852    19434    712    2016-02-06 20:28:22    2016-02-06 20:28:22
28853    11256    554    2016-03-14 15:54:51    2016-03-14 15:54:51
28854    14282    934    2016-01-22 18:33:46    2016-01-22 18:33:46
28855    19343    559    2016-03-16 09:44:25    2016-03-16 09:44:25
28856    12599    467    2016-04-13 21:05:21    2016-04-13 21:05:21
28857    11599    758    2016-01-24 11:34:29    2016-01-24 11:34:29
28858    16450    633    2016-01-22 17:19:06    2016-01-22 17:19:06
28859    16022    761    2016-03-18 22:27:12    2016-03-18 22:27:12
28860    18350    939    2016-02-05 02:34:23    2016-02-05 02:34:23
28861    14516    791    2016-04-02 18:45:54    2016-04-02 18:45:54
28862    14333    918    2016-03-08 17:11:16    2016-03-08 17:11:16
28863    11931    750    2016-03-14 22:12:06    2016-03-14 22:12:06
28864    10781    950    2016-02-11 20:03:31    2016-02-11 20:03:31
28865    14414    622    2016-02-02 19:44:48    2016-02-02 19:44:48
28866    12408    482    2016-02-25 13:28:36    2016-02-25 13:28:36
28867    12073    838    2016-04-17 06:21:25    2016-04-17 06:21:25
28868    17790    958    2016-02-01 03:09:37    2016-02-01 03:09:37
28869    14845    766    2016-04-15 01:21:31    2016-04-15 01:21:31
28870    10184    606    2016-02-06 08:26:48    2016-02-06 08:26:48
28871    16238    517    2016-03-13 12:13:51    2016-03-13 12:13:51
28872    19008    542    2016-01-23 23:29:35    2016-01-23 23:29:35
28873    17626    640    2016-04-20 16:42:26    2016-04-20 16:42:26
28874    18497    753    2016-03-26 02:58:11    2016-03-26 02:58:11
28875    13479    711    2016-03-19 17:18:37    2016-03-19 17:18:37
28876    11320    795    2016-04-09 10:20:01    2016-04-09 10:20:01
28877    15910    628    2016-03-05 12:11:16    2016-03-05 12:11:16
28878    13848    494    2016-02-16 06:41:02    2016-02-16 06:41:02
28879    19463    626    2016-03-12 17:21:04    2016-03-12 17:21:04
28880    13334    891    2016-03-29 07:12:42    2016-03-29 07:12:42
28881    13074    751    2016-02-29 04:59:31    2016-02-29 04:59:31
28882    15437    818    2016-04-13 03:53:53    2016-04-13 03:53:53
28883    15147    676    2016-03-16 01:58:59    2016-03-16 01:58:59
28884    10763    683    2016-03-02 12:55:48    2016-03-02 12:55:48
28885    16735    809    2016-03-01 09:49:56    2016-03-01 09:49:56
28886    12079    763    2016-03-22 12:24:42    2016-03-22 12:24:42
28887    10660    655    2016-03-29 10:18:04    2016-03-29 10:18:04
28888    10635    837    2016-02-10 03:05:35    2016-02-10 03:05:35
28889    10639    476    2016-03-30 00:37:20    2016-03-30 00:37:20
28890    15820    545    2016-03-11 21:13:59    2016-03-11 21:13:59
28891    14682    866    2016-03-14 16:23:21    2016-03-14 16:23:21
28892    14348    676    2016-02-13 22:06:32    2016-02-13 22:06:32
28893    13688    795    2016-03-24 10:29:42    2016-03-24 10:29:42
28894    13838    667    2016-04-17 14:54:00    2016-04-17 14:54:00
28895    17959    564    2016-04-09 17:14:35    2016-04-09 17:14:35
28896    15861    710    2016-03-19 08:25:30    2016-03-19 08:25:30
28897    10181    858    2016-03-18 07:51:40    2016-03-18 07:51:40
28898    15430    881    2016-04-01 00:46:26    2016-04-01 00:46:26
28899    16377    526    2016-04-04 14:47:39    2016-04-04 14:47:39
28900    16074    674    2016-01-31 03:14:00    2016-01-31 03:14:00
28901    17267    955    2016-02-10 13:49:29    2016-02-10 13:49:29
28902    15622    465    2016-02-11 04:39:48    2016-02-11 04:39:48
28903    14781    755    2016-02-27 07:33:24    2016-02-27 07:33:24
28904    12113    933    2016-04-19 13:54:23    2016-04-19 13:54:23
28905    16932    918    2016-03-15 12:55:23    2016-03-15 12:55:23
28906    15808    501    2016-03-06 19:20:47    2016-03-06 19:20:47
28907    13186    930    2016-02-08 01:56:07    2016-02-08 01:56:07
28908    13518    530    2016-04-01 01:28:39    2016-04-01 01:28:39
28909    16582    883    2016-02-08 18:58:40    2016-02-08 18:58:40
28910    13182    926    2016-02-20 15:52:47    2016-02-20 15:52:47
28911    14235    666    2016-03-23 07:44:50    2016-03-23 07:44:50
28912    18347    721    2016-03-20 03:02:18    2016-03-20 03:02:18
28913    11752    862    2016-04-18 21:53:00    2016-04-18 21:53:00
28914    18350    723    2016-02-09 03:51:02    2016-02-09 03:51:02
28915    12406    773    2016-04-14 15:21:55    2016-04-14 15:21:55
28916    12478    691    2016-03-25 05:44:10    2016-03-25 05:44:10
28917    19881    463    2016-03-04 22:01:58    2016-03-04 22:01:58
28918    10038    478    2016-02-22 11:28:37    2016-02-22 11:28:37
28919    14889    850    2016-03-10 02:22:31    2016-03-10 02:22:31
28920    19821    481    2016-02-01 19:02:34    2016-02-01 19:02:34
28921    15363    481    2016-04-05 00:39:56    2016-04-05 00:39:56
28922    10013    590    2016-02-27 05:19:53    2016-02-27 05:19:53
28923    11381    743    2016-03-03 01:16:50    2016-03-03 01:16:50
28924    17475    600    2016-01-30 00:33:21    2016-01-30 00:33:21
28925    11272    867    2016-04-09 19:21:35    2016-04-09 19:21:35
28926    12860    633    2016-03-24 18:07:06    2016-03-24 18:07:06
28927    15768    797    2016-04-11 08:39:28    2016-04-11 08:39:28
28928    14406    706    2016-02-06 23:47:17    2016-02-06 23:47:17
28929    12007    661    2016-01-28 00:21:11    2016-01-28 00:21:11
28930    14192    712    2016-03-22 20:38:18    2016-03-22 20:38:18
28931    13774    471    2016-04-07 19:01:55    2016-04-07 19:01:55
28932    17017    586    2016-02-14 14:22:37    2016-02-14 14:22:37
28933    15740    694    2016-03-23 11:06:14    2016-03-23 11:06:14
28934    16369    885    2016-03-17 18:22:24    2016-03-17 18:22:24
28935    12883    575    2016-03-19 05:26:17    2016-03-19 05:26:17
28936    17396    781    2016-01-24 07:15:31    2016-01-24 07:15:31
28937    14085    858    2016-02-24 03:54:50    2016-02-24 03:54:50
28938    17454    767    2016-03-14 20:30:22    2016-03-14 20:30:22
28939    10863    742    2016-03-04 06:45:57    2016-03-04 06:45:57
28940    12740    521    2016-03-14 22:11:02    2016-03-14 22:11:02
28941    12635    729    2016-02-02 18:53:02    2016-02-02 18:53:02
28942    14630    631    2016-02-28 13:26:25    2016-02-28 13:26:25
28943    17170    511    2016-02-24 20:49:34    2016-02-24 20:49:34
28944    10086    505    2016-02-29 02:19:32    2016-02-29 02:19:32
28945    11630    940    2016-04-12 17:28:32    2016-04-12 17:28:32
28946    19577    850    2016-03-26 04:43:04    2016-03-26 04:43:04
28947    18321    679    2016-01-26 09:19:35    2016-01-26 09:19:35
28948    10473    708    2016-03-28 05:28:38    2016-03-28 05:28:38
28949    12751    580    2016-02-10 12:46:37    2016-02-10 12:46:37
28950    13765    675    2016-02-07 09:49:56    2016-02-07 09:49:56
28951    14616    580    2016-03-16 20:53:08    2016-03-16 20:53:08
28952    10933    606    2016-02-17 21:55:03    2016-02-17 21:55:03
28953    15867    893    2016-04-10 17:37:20    2016-04-10 17:37:20
28954    18579    570    2016-03-11 02:27:18    2016-03-11 02:27:18
28955    14892    520    2016-04-14 06:43:17    2016-04-14 06:43:17
28956    13007    940    2016-02-08 17:42:08    2016-02-08 17:42:08
28957    19941    952    2016-01-22 06:59:07    2016-01-22 06:59:07
28958    18158    843    2016-02-18 10:37:03    2016-02-18 10:37:03
28959    18380    764    2016-04-17 23:58:55    2016-04-17 23:58:55
28960    15109    588    2016-04-06 22:28:03    2016-04-06 22:28:03
28961    17161    699    2016-04-06 02:05:59    2016-04-06 02:05:59
28962    14183    814    2016-03-17 04:26:46    2016-03-17 04:26:46
28963    13117    890    2016-04-17 23:05:57    2016-04-17 23:05:57
28964    18624    713    2016-04-12 19:22:16    2016-04-12 19:22:16
28965    15617    475    2016-04-19 06:21:41    2016-04-19 06:21:41
28966    10694    754    2016-03-18 21:36:10    2016-03-18 21:36:10
28967    14864    611    2016-02-19 13:27:29    2016-02-19 13:27:29
28968    18586    916    2016-04-13 20:07:38    2016-04-13 20:07:38
28969    17544    510    2016-01-23 05:15:43    2016-01-23 05:15:43
28970    10941    857    2016-04-03 22:39:13    2016-04-03 22:39:13
28971    15827    788    2016-01-29 04:24:08    2016-01-29 04:24:08
28972    16960    755    2016-03-09 21:38:19    2016-03-09 21:38:19
28973    15870    689    2016-02-21 18:20:13    2016-02-21 18:20:13
28974    14051    547    2016-03-14 22:12:10    2016-03-14 22:12:10
28975    19752    570    2016-03-03 14:58:24    2016-03-03 14:58:24
28976    16191    923    2016-03-07 21:02:19    2016-03-07 21:02:19
28977    15603    669    2016-04-13 09:13:38    2016-04-13 09:13:38
28978    19059    477    2016-03-29 09:12:44    2016-03-29 09:12:44
28979    18370    766    2016-02-22 04:07:10    2016-02-22 04:07:10
28980    19627    727    2016-01-23 17:47:09    2016-01-23 17:47:09
28981    12512    489    2016-03-27 23:17:37    2016-03-27 23:17:37
28982    19188    836    2016-04-14 01:42:40    2016-04-14 01:42:40
28983    11375    615    2016-03-29 06:12:08    2016-03-29 06:12:08
28984    13123    524    2016-03-28 10:23:09    2016-03-28 10:23:09
28985    16220    737    2016-03-28 16:33:19    2016-03-28 16:33:19
28986    12281    654    2016-01-31 17:09:04    2016-01-31 17:09:04
28987    16836    930    2016-02-19 15:44:09    2016-02-19 15:44:09
28988    17193    592    2016-03-06 08:35:27    2016-03-06 08:35:27
28989    17381    923    2016-04-10 20:07:41    2016-04-10 20:07:41
28990    16845    731    2016-03-03 23:39:46    2016-03-03 23:39:46
28991    17744    612    2016-04-20 10:42:20    2016-04-20 10:42:20
28992    14651    679    2016-04-05 02:44:11    2016-04-05 02:44:11
28993    14195    925    2016-02-23 17:47:31    2016-02-23 17:47:31
28994    11228    700    2016-02-28 09:21:47    2016-02-28 09:21:47
28995    16577    788    2016-02-16 03:24:39    2016-02-16 03:24:39
28996    19632    895    2016-03-23 02:01:00    2016-03-23 02:01:00
28997    19406    813    2016-01-31 16:22:27    2016-01-31 16:22:27
28998    10761    777    2016-03-19 00:27:17    2016-03-19 00:27:17
28999    12645    932    2016-04-19 18:32:18    2016-04-19 18:32:18
29000    19579    937    2016-01-22 20:06:27    2016-01-22 20:06:27
29001    12392    715    2016-02-12 08:39:18    2016-02-12 08:39:18
29002    15058    950    2016-04-11 12:48:47    2016-04-11 12:48:47
29003    15743    935    2016-02-07 14:39:32    2016-02-07 14:39:32
29004    16865    921    2016-03-14 00:17:05    2016-03-14 00:17:05
29005    17644    878    2016-03-15 21:32:02    2016-03-15 21:32:02
29006    14391    579    2016-04-14 15:11:59    2016-04-14 15:11:59
29007    10981    744    2016-04-02 03:02:07    2016-04-02 03:02:07
29008    18008    717    2016-02-08 05:52:05    2016-02-08 05:52:05
29009    13213    624    2016-03-01 02:49:57    2016-03-01 02:49:57
29010    11307    929    2016-02-16 16:20:34    2016-02-16 16:20:34
29011    18342    629    2016-03-27 18:29:02    2016-03-27 18:29:02
29012    12924    868    2016-02-29 01:32:26    2016-02-29 01:32:26
29013    10707    564    2016-03-28 11:15:32    2016-03-28 11:15:32
29014    11369    657    2016-02-29 04:07:57    2016-02-29 04:07:57
29015    11994    908    2016-03-12 05:27:08    2016-03-12 05:27:08
29016    17470    960    2016-02-06 09:43:51    2016-02-06 09:43:51
29017    17185    501    2016-02-13 10:55:55    2016-02-13 10:55:55
29018    11188    754    2016-04-14 16:33:19    2016-04-14 16:33:19
29019    16129    804    2016-02-14 00:41:00    2016-02-14 00:41:00
29020    19900    851    2016-03-27 20:05:48    2016-03-27 20:05:48
29021    18665    549    2016-01-28 06:37:04    2016-01-28 06:37:04
29022    14975    866    2016-02-10 17:16:00    2016-02-10 17:16:00
29023    14799    543    2016-01-24 06:24:36    2016-01-24 06:24:36
29024    10115    669    2016-02-25 23:58:00    2016-02-25 23:58:00
29025    12117    634    2016-01-31 08:46:11    2016-01-31 08:46:11
29026    10544    609    2016-04-09 14:48:47    2016-04-09 14:48:47
29027    19917    500    2016-02-29 18:44:24    2016-02-29 18:44:24
29028    19305    511    2016-01-23 06:33:55    2016-01-23 06:33:55
29029    12427    699    2016-03-05 10:01:32    2016-03-05 10:01:32
29030    17963    626    2016-04-19 10:09:19    2016-04-19 10:09:19
29031    17134    771    2016-04-16 19:55:14    2016-04-16 19:55:14
29032    19409    685    2016-02-11 08:53:30    2016-02-11 08:53:30
29033    16387    725    2016-03-06 09:43:47    2016-03-06 09:43:47
29034    15587    947    2016-03-16 03:15:33    2016-03-16 03:15:33
29035    18944    878    2016-03-22 23:15:17    2016-03-22 23:15:17
29036    15880    600    2016-03-19 19:28:32    2016-03-19 19:28:32
29037    11282    592    2016-03-29 04:12:09    2016-03-29 04:12:09
29038    15711    751    2016-03-10 18:17:55    2016-03-10 18:17:55
29039    17812    800    2016-03-13 15:07:04    2016-03-13 15:07:04
29040    15670    520    2016-04-06 02:01:56    2016-04-06 02:01:56
29041    17217    939    2016-03-25 02:28:26    2016-03-25 02:28:26
29042    15748    472    2016-02-15 02:15:22    2016-02-15 02:15:22
29043    12562    477    2016-02-22 05:00:35    2016-02-22 05:00:35
29044    12112    631    2016-04-20 17:41:43    2016-04-20 17:41:43
29045    10087    601    2016-02-06 15:35:23    2016-02-06 15:35:23
29046    17485    693    2016-03-30 09:43:32    2016-03-30 09:43:32
29047    18886    835    2016-03-13 16:33:47    2016-03-13 16:33:47
29048    10307    936    2016-03-14 05:07:56    2016-03-14 05:07:56
29049    15367    545    2016-01-22 18:12:34    2016-01-22 18:12:34
29050    13420    822    2016-04-07 09:00:59    2016-04-07 09:00:59
29051    10380    778    2016-02-21 03:51:37    2016-02-21 03:51:37
29052    13759    483    2016-04-02 12:30:15    2016-04-02 12:30:15
29053    16599    749    2016-02-17 23:40:32    2016-02-17 23:40:32
29054    16896    523    2016-03-08 04:33:30    2016-03-08 04:33:30
29055    12610    571    2016-01-24 18:11:07    2016-01-24 18:11:07
29056    19757    891    2016-03-11 10:42:20    2016-03-11 10:42:20
29057    11088    924    2016-03-26 11:16:38    2016-03-26 11:16:38
29058    10286    583    2016-02-23 11:31:33    2016-02-23 11:31:33
29059    14664    857    2016-04-11 10:51:47    2016-04-11 10:51:47
29060    15422    552    2016-02-24 18:42:44    2016-02-24 18:42:44
29061    12238    818    2016-02-14 10:51:39    2016-02-14 10:51:39
29062    16993    867    2016-01-25 10:05:16    2016-01-25 10:05:16
29063    10197    945    2016-01-23 14:38:11    2016-01-23 14:38:11
29064    14663    529    2016-01-22 11:00:01    2016-01-22 11:00:01
29065    11968    932    2016-04-11 00:04:59    2016-04-11 00:04:59
29066    18824    511    2016-02-08 17:13:31    2016-02-08 17:13:31
29067    10902    909    2016-03-20 23:55:52    2016-03-20 23:55:52
29068    12307    735    2016-04-12 03:53:05    2016-04-12 03:53:05
29069    15296    836    2016-04-08 07:40:50    2016-04-08 07:40:50
29070    14468    838    2016-04-14 16:42:40    2016-04-14 16:42:40
29071    17205    760    2016-01-23 17:26:05    2016-01-23 17:26:05
29072    11448    546    2016-02-05 18:50:07    2016-02-05 18:50:07
29073    14366    837    2016-03-04 01:33:42    2016-03-04 01:33:42
29074    10920    642    2016-02-08 09:26:53    2016-02-08 09:26:53
29075    17412    948    2016-04-05 18:27:16    2016-04-05 18:27:16
29076    10048    638    2016-03-16 13:56:09    2016-03-16 13:56:09
29077    17922    524    2016-02-13 01:55:03    2016-02-13 01:55:03
29078    19331    672    2016-01-30 15:48:08    2016-01-30 15:48:08
29079    13128    489    2016-03-17 08:21:11    2016-03-17 08:21:11
29080    16380    834    2016-04-09 00:22:51    2016-04-09 00:22:51
29081    15728    924    2016-03-14 21:52:44    2016-03-14 21:52:44
29082    12469    698    2016-01-30 06:02:28    2016-01-30 06:02:28
29083    13073    578    2016-03-17 19:14:36    2016-03-17 19:14:36
29084    12745    534    2016-03-19 17:54:58    2016-03-19 17:54:58
29085    18927    492    2016-01-25 20:10:54    2016-01-25 20:10:54
29086    14703    869    2016-03-24 22:29:43    2016-03-24 22:29:43
29087    18917    928    2016-02-14 20:01:53    2016-02-14 20:01:53
29088    13174    853    2016-03-13 22:34:50    2016-03-13 22:34:50
29089    12926    954    2016-03-02 00:20:37    2016-03-02 00:20:37
29090    17456    917    2016-02-21 02:09:05    2016-02-21 02:09:05
29091    12992    542    2016-02-04 22:41:10    2016-02-04 22:41:10
29092    18554    504    2016-04-15 08:18:13    2016-04-15 08:18:13
29093    15592    765    2016-02-18 06:27:52    2016-02-18 06:27:52
29094    12060    472    2016-03-14 23:31:01    2016-03-14 23:31:01
29095    10505    900    2016-02-20 06:52:00    2016-02-20 06:52:00
29096    11884    597    2016-02-11 05:27:53    2016-02-11 05:27:53
29097    14717    483    2016-01-24 11:08:01    2016-01-24 11:08:01
29098    12171    511    2016-02-20 04:10:41    2016-02-20 04:10:41
29099    10881    911    2016-03-30 17:40:02    2016-03-30 17:40:02
29100    13077    632    2016-02-06 02:43:19    2016-02-06 02:43:19
29101    12186    882    2016-03-24 09:39:22    2016-03-24 09:39:22
29102    18253    537    2016-03-27 05:10:33    2016-03-27 05:10:33
29103    16284    765    2016-02-26 19:06:25    2016-02-26 19:06:25
29104    10647    538    2016-02-15 06:16:26    2016-02-15 06:16:26
29105    12871    947    2016-02-02 17:58:23    2016-02-02 17:58:23
29106    10438    901    2016-03-23 09:24:15    2016-03-23 09:24:15
29107    15972    946    2016-03-09 16:01:31    2016-03-09 16:01:31
29108    15407    878    2016-02-23 09:22:45    2016-02-23 09:22:45
29109    13339    650    2016-03-14 13:28:34    2016-03-14 13:28:34
29110    11556    600    2016-01-31 08:46:14    2016-01-31 08:46:14
29111    19449    635    2016-02-20 13:28:54    2016-02-20 13:28:54
29112    12962    521    2016-03-25 07:24:52    2016-03-25 07:24:52
29113    13213    615    2016-04-16 01:06:41    2016-04-16 01:06:41
29114    13667    608    2016-03-31 21:36:48    2016-03-31 21:36:48
29115    15720    608    2016-02-06 16:03:25    2016-02-06 16:03:25
29116    12522    855    2016-03-21 16:08:26    2016-03-21 16:08:26
29117    15594    503    2016-02-27 19:42:13    2016-02-27 19:42:13
29118    16426    818    2016-04-14 17:24:37    2016-04-14 17:24:37
29119    18276    881    2016-03-23 20:35:00    2016-03-23 20:35:00
29120    12774    917    2016-01-22 20:11:31    2016-01-22 20:11:31
29121    16952    663    2016-04-10 19:16:53    2016-04-10 19:16:53
29122    12871    701    2016-04-01 11:39:25    2016-04-01 11:39:25
29123    13708    853    2016-04-19 17:37:01    2016-04-19 17:37:01
29124    11847    673    2016-04-16 07:09:22    2016-04-16 07:09:22
29125    16544    797    2016-02-16 01:59:24    2016-02-16 01:59:24
29126    13763    777    2016-03-24 01:20:46    2016-03-24 01:20:46
29127    15263    855    2016-03-16 16:43:37    2016-03-16 16:43:37
29128    18282    490    2016-03-11 23:49:09    2016-03-11 23:49:09
29129    16970    489    2016-01-29 19:59:12    2016-01-29 19:59:12
29130    15413    522    2016-03-16 07:49:45    2016-03-16 07:49:45
29131    19947    581    2016-01-30 09:48:33    2016-01-30 09:48:33
29132    11612    587    2016-02-15 05:04:09    2016-02-15 05:04:09
29133    19265    877    2016-02-13 03:14:30    2016-02-13 03:14:30
29134    16677    870    2016-01-29 23:03:48    2016-01-29 23:03:48
29135    15111    480    2016-03-29 02:17:30    2016-03-29 02:17:30
29136    15237    632    2016-03-27 09:28:26    2016-03-27 09:28:26
29137    10480    617    2016-02-06 10:35:48    2016-02-06 10:35:48
29138    13624    683    2016-03-19 06:49:05    2016-03-19 06:49:05
29139    11260    613    2016-02-16 01:51:20    2016-02-16 01:51:20
29140    16670    856    2016-03-28 06:26:29    2016-03-28 06:26:29
29141    18577    923    2016-02-24 07:53:05    2016-02-24 07:53:05
29142    16678    723    2016-03-02 06:11:53    2016-03-02 06:11:53
29143    10260    693    2016-02-08 05:17:18    2016-02-08 05:17:18
29144    16143    512    2016-02-15 15:33:51    2016-02-15 15:33:51
29145    16381    944    2016-03-24 12:15:43    2016-03-24 12:15:43
29146    13881    629    2016-04-15 22:50:20    2016-04-15 22:50:20
29147    15911    556    2016-03-24 01:50:52    2016-03-24 01:50:52
29148    12120    848    2016-03-31 04:28:45    2016-03-31 04:28:45
29149    19004    911    2016-03-17 20:03:13    2016-03-17 20:03:13
29150    12255    775    2016-03-26 21:24:57    2016-03-26 21:24:57
29151    12907    902    2016-04-01 12:28:15    2016-04-01 12:28:15
29152    18324    818    2016-01-24 13:45:57    2016-01-24 13:45:57
29153    12224    822    2016-03-08 00:29:31    2016-03-08 00:29:31
29154    16692    759    2016-03-17 18:16:24    2016-03-17 18:16:24
29155    19830    724    2016-01-25 10:41:18    2016-01-25 10:41:18
29156    12229    852    2016-02-14 22:32:57    2016-02-14 22:32:57
29157    14258    820    2016-02-20 17:51:40    2016-02-20 17:51:40
29158    18836    611    2016-03-01 00:45:51    2016-03-01 00:45:51
29159    12196    726    2016-03-10 02:48:36    2016-03-10 02:48:36
29160    18327    771    2016-04-19 22:01:52    2016-04-19 22:01:52
29161    18582    594    2016-04-18 10:59:43    2016-04-18 10:59:43
29162    15513    662    2016-04-11 01:43:48    2016-04-11 01:43:48
29163    14608    713    2016-02-08 10:23:00    2016-02-08 10:23:00
29164    18022    767    2016-02-23 23:52:42    2016-02-23 23:52:42
29165    13547    604    2016-01-23 16:34:30    2016-01-23 16:34:30
29166    12031    578    2016-03-10 05:51:08    2016-03-10 05:51:08
29167    17216    657    2016-04-03 19:03:21    2016-04-03 19:03:21
29168    12767    563    2016-02-06 02:04:15    2016-02-06 02:04:15
29169    18451    804    2016-03-15 23:44:04    2016-03-15 23:44:04
29170    19780    921    2016-04-11 09:12:46    2016-04-11 09:12:46
29171    13563    779    2016-04-10 00:59:55    2016-04-10 00:59:55
29172    13044    587    2016-03-01 23:30:39    2016-03-01 23:30:39
29173    17952    501    2016-03-26 13:23:25    2016-03-26 13:23:25
29174    10611    527    2016-02-18 10:12:43    2016-02-18 10:12:43
29175    13500    866    2016-02-07 15:43:39    2016-02-07 15:43:39
29176    14977    810    2016-03-23 02:17:48    2016-03-23 02:17:48
29177    12523    587    2016-04-19 21:01:08    2016-04-19 21:01:08
29178    17136    656    2016-04-19 21:15:42    2016-04-19 21:15:42
29179    13601    469    2016-02-15 15:55:13    2016-02-15 15:55:13
29180    18803    738    2016-03-16 22:26:42    2016-03-16 22:26:42
29181    17275    811    2016-03-14 01:04:57    2016-03-14 01:04:57
29182    11010    628    2016-03-22 17:02:48    2016-03-22 17:02:48
29183    18848    552    2016-04-14 02:32:30    2016-04-14 02:32:30
29184    14616    827    2016-03-10 20:16:43    2016-03-10 20:16:43
29185    13478    713    2016-03-28 02:40:10    2016-03-28 02:40:10
29186    15422    778    2016-03-24 13:37:48    2016-03-24 13:37:48
29187    14864    896    2016-04-01 03:45:04    2016-04-01 03:45:04
29188    14285    845    2016-04-16 09:47:21    2016-04-16 09:47:21
29189    14080    511    2016-01-31 02:11:58    2016-01-31 02:11:58
29190    13578    729    2016-03-07 04:48:34    2016-03-07 04:48:34
29191    18362    505    2016-03-07 18:21:20    2016-03-07 18:21:20
29192    12392    543    2016-04-12 02:15:20    2016-04-12 02:15:20
29193    11109    649    2016-02-24 22:06:40    2016-02-24 22:06:40
29194    10617    496    2016-02-06 13:31:47    2016-02-06 13:31:47
29195    19321    620    2016-02-29 23:44:47    2016-02-29 23:44:47
29196    16902    915    2016-04-10 06:48:00    2016-04-10 06:48:00
29197    17875    667    2016-04-09 05:56:35    2016-04-09 05:56:35
29198    17051    489    2016-03-17 13:44:15    2016-03-17 13:44:15
29199    15824    498    2016-01-22 03:11:40    2016-01-22 03:11:40
29200    17613    592    2016-03-22 03:43:20    2016-03-22 03:43:20
29201    11902    474    2016-01-28 06:06:22    2016-01-28 06:06:22
29202    18866    594    2016-03-28 23:49:37    2016-03-28 23:49:37
29203    17109    542    2016-04-09 19:00:21    2016-04-09 19:00:21
29204    13401    590    2016-03-20 06:45:03    2016-03-20 06:45:03
29205    15680    891    2016-03-16 02:05:12    2016-03-16 02:05:12
29206    12301    618    2016-04-18 19:45:41    2016-04-18 19:45:41
29207    12243    956    2016-02-14 18:00:44    2016-02-14 18:00:44
29208    18521    577    2016-03-29 07:58:45    2016-03-29 07:58:45
29209    15496    529    2016-04-02 02:27:32    2016-04-02 02:27:32
29210    17963    831    2016-02-18 05:32:46    2016-02-18 05:32:46
29211    11016    730    2016-01-24 17:44:58    2016-01-24 17:44:58
29212    15045    535    2016-02-20 03:38:56    2016-02-20 03:38:56
29213    16195    771    2016-01-31 08:22:50    2016-01-31 08:22:50
29214    18314    883    2016-03-27 18:00:41    2016-03-27 18:00:41
29215    16144    827    2016-03-28 01:38:26    2016-03-28 01:38:26
29216    12599    961    2016-02-09 05:43:04    2016-02-09 05:43:04
29217    16095    716    2016-03-29 00:56:05    2016-03-29 00:56:05
29218    17101    473    2016-03-20 16:15:52    2016-03-20 16:15:52
29219    16800    579    2016-02-02 00:59:57    2016-02-02 00:59:57
29220    11803    775    2016-04-07 01:50:32    2016-04-07 01:50:32
29221    10919    820    2016-02-28 01:32:10    2016-02-28 01:32:10
29222    19203    528    2016-03-01 05:55:28    2016-03-01 05:55:28
29223    11998    788    2016-02-25 04:52:09    2016-02-25 04:52:09
29224    10715    521    2016-03-04 22:44:30    2016-03-04 22:44:30
29225    15065    701    2016-03-17 13:59:33    2016-03-17 13:59:33
29226    11296    945    2016-02-17 07:15:41    2016-02-17 07:15:41
29227    13417    936    2016-03-28 23:40:11    2016-03-28 23:40:11
29228    13004    684    2016-02-08 14:49:05    2016-02-08 14:49:05
29229    18267    693    2016-01-25 17:51:13    2016-01-25 17:51:13
29230    10007    503    2016-02-04 22:51:58    2016-02-04 22:51:58
29231    13155    654    2016-02-15 01:19:30    2016-02-15 01:19:30
29232    11305    536    2016-02-12 03:01:30    2016-02-12 03:01:30
29233    11417    814    2016-03-28 01:09:45    2016-03-28 01:09:45
29234    14617    622    2016-03-09 12:57:19    2016-03-09 12:57:19
29235    16215    788    2016-02-29 21:57:16    2016-02-29 21:57:16
29236    11939    829    2016-04-12 21:17:03    2016-04-12 21:17:03
29237    12778    547    2016-01-22 04:26:41    2016-01-22 04:26:41
29238    15046    648    2016-02-25 07:14:56    2016-02-25 07:14:56
29239    18403    796    2016-03-06 09:12:21    2016-03-06 09:12:21
29240    17346    571    2016-02-21 15:49:22    2016-02-21 15:49:22
29241    10588    739    2016-04-19 14:07:57    2016-04-19 14:07:57
29242    15505    727    2016-03-26 01:36:16    2016-03-26 01:36:16
29243    13324    757    2016-02-08 02:51:40    2016-02-08 02:51:40
29244    11702    832    2016-02-07 08:24:44    2016-02-07 08:24:44
29245    16915    535    2016-03-03 01:37:01    2016-03-03 01:37:01
29246    10038    560    2016-04-12 07:16:37    2016-04-12 07:16:37
29247    19751    824    2016-02-10 09:46:41    2016-02-10 09:46:41
29248    18767    678    2016-03-28 08:59:49    2016-03-28 08:59:49
29249    19384    530    2016-03-04 08:19:55    2016-03-04 08:19:55
29250    14267    810    2016-02-07 12:46:39    2016-02-07 12:46:39
29251    13020    505    2016-02-28 03:02:00    2016-02-28 03:02:00
29252    14767    500    2016-03-06 01:03:34    2016-03-06 01:03:34
29253    16342    855    2016-04-16 12:16:21    2016-04-16 12:16:21
29254    11517    677    2016-03-29 10:34:55    2016-03-29 10:34:55
29255    17126    827    2016-03-06 15:12:28    2016-03-06 15:12:28
29256    10392    649    2016-03-12 10:41:07    2016-03-12 10:41:07
29257    18429    793    2016-04-01 09:20:30    2016-04-01 09:20:30
29258    15921    486    2016-03-11 20:51:58    2016-03-11 20:51:58
29259    10603    746    2016-01-26 09:11:17    2016-01-26 09:11:17
29260    18490    828    2016-04-03 12:34:54    2016-04-03 12:34:54
29261    14874    795    2016-04-12 00:02:37    2016-04-12 00:02:37
29262    19652    682    2016-04-05 00:56:18    2016-04-05 00:56:18
29263    18865    944    2016-02-12 21:50:49    2016-02-12 21:50:49
29264    12610    522    2016-03-04 03:50:58    2016-03-04 03:50:58
29265    12062    523    2016-04-03 09:55:06    2016-04-03 09:55:06
29266    13916    477    2016-02-05 21:34:18    2016-02-05 21:34:18
29267    14767    934    2016-03-30 13:42:31    2016-03-30 13:42:31
29268    17782    735    2016-04-18 19:27:08    2016-04-18 19:27:08
29269    12190    605    2016-03-06 11:59:22    2016-03-06 11:59:22
29270    12687    583    2016-03-07 23:33:19    2016-03-07 23:33:19
29271    11806    655    2016-02-14 20:38:31    2016-02-14 20:38:31
29272    15929    760    2016-03-30 03:33:41    2016-03-30 03:33:41
29273    13248    745    2016-03-26 08:55:19    2016-03-26 08:55:19
29274    13657    817    2016-02-18 02:32:34    2016-02-18 02:32:34
29275    10373    692    2016-02-15 16:35:21    2016-02-15 16:35:21
29276    11985    530    2016-03-27 10:09:37    2016-03-27 10:09:37
29277    16120    685    2016-02-17 23:52:46    2016-02-17 23:52:46
29278    15546    783    2016-03-02 02:32:24    2016-03-02 02:32:24
29279    12007    769    2016-04-20 10:39:06    2016-04-20 10:39:06
29280    14275    602    2016-03-19 01:45:30    2016-03-19 01:45:30
29281    16399    674    2016-01-27 09:35:31    2016-01-27 09:35:31
29282    19673    873    2016-02-17 08:31:49    2016-02-17 08:31:49
29283    13001    713    2016-03-20 03:13:08    2016-03-20 03:13:08
29284    11890    527    2016-04-18 07:39:04    2016-04-18 07:39:04
29285    16610    819    2016-03-08 13:12:59    2016-03-08 13:12:59
29286    19214    505    2016-03-16 02:06:32    2016-03-16 02:06:32
29287    19610    472    2016-02-14 14:55:11    2016-02-14 14:55:11
29288    12399    546    2016-04-07 20:03:38    2016-04-07 20:03:38
29289    17454    762    2016-03-25 04:30:10    2016-03-25 04:30:10
29290    14410    545    2016-04-14 16:08:09    2016-04-14 16:08:09
29291    13233    683    2016-02-20 10:28:32    2016-02-20 10:28:32
29292    13869    505    2016-02-22 19:30:40    2016-02-22 19:30:40
29293    16621    572    2016-03-25 07:45:25    2016-03-25 07:45:25
29294    15709    708    2016-03-20 06:45:50    2016-03-20 06:45:50
29295    11744    955    2016-03-25 01:22:46    2016-03-25 01:22:46
29296    17271    945    2016-02-12 07:15:54    2016-02-12 07:15:54
29297    14739    903    2016-02-02 11:01:26    2016-02-02 11:01:26
29298    10311    877    2016-03-18 01:43:11    2016-03-18 01:43:11
29299    11978    944    2016-02-28 09:28:35    2016-02-28 09:28:35
29300    15800    887    2016-04-05 19:03:59    2016-04-05 19:03:59
29301    19785    640    2016-03-14 00:53:59    2016-03-14 00:53:59
29302    12802    863    2016-03-11 07:24:22    2016-03-11 07:24:22
29303    11496    811    2016-03-09 17:27:17    2016-03-09 17:27:17
29304    12507    954    2016-02-03 10:21:51    2016-02-03 10:21:51
29305    15420    501    2016-02-27 14:06:46    2016-02-27 14:06:46
29306    16612    689    2016-04-17 00:23:54    2016-04-17 00:23:54
29307    15394    543    2016-02-29 22:08:49    2016-02-29 22:08:49
29308    16359    555    2016-02-13 10:51:37    2016-02-13 10:51:37
29309    19998    781    2016-02-16 06:32:24    2016-02-16 06:32:24
29310    13997    786    2016-01-22 06:42:07    2016-01-22 06:42:07
29311    17273    878    2016-04-09 05:11:39    2016-04-09 05:11:39
29312    15002    609    2016-02-15 06:08:33    2016-02-15 06:08:33
29313    11694    904    2016-04-10 13:24:19    2016-04-10 13:24:19
29314    16823    621    2016-04-04 06:20:49    2016-04-04 06:20:49
29315    12508    803    2016-01-29 23:21:59    2016-01-29 23:21:59
29316    18111    553    2016-01-27 13:40:46    2016-01-27 13:40:46
29317    10965    863    2016-01-26 08:40:24    2016-01-26 08:40:24
29318    11766    748    2016-02-11 19:01:20    2016-02-11 19:01:20
29319    13203    763    2016-04-08 03:15:21    2016-04-08 03:15:21
29320    18579    543    2016-02-19 07:47:15    2016-02-19 07:47:15
29321    14522    512    2016-03-20 01:32:47    2016-03-20 01:32:47
29322    14350    673    2016-02-07 21:34:32    2016-02-07 21:34:32
29323    11243    827    2016-04-01 06:34:20    2016-04-01 06:34:20
29324    16717    474    2016-03-25 19:42:13    2016-03-25 19:42:13
29325    12108    475    2016-02-16 06:42:21    2016-02-16 06:42:21
29326    19674    675    2016-03-16 03:13:53    2016-03-16 03:13:53
29327    16355    739    2016-01-25 20:50:52    2016-01-25 20:50:52
29328    17289    700    2016-03-11 02:04:12    2016-03-11 02:04:12
29329    13721    758    2016-03-14 01:25:26    2016-03-14 01:25:26
29330    16837    869    2016-02-01 16:10:43    2016-02-01 16:10:43
29331    17675    556    2016-04-12 21:28:08    2016-04-12 21:28:08
29332    18868    938    2016-03-03 04:02:41    2016-03-03 04:02:41
29333    10064    744    2016-04-18 18:08:36    2016-04-18 18:08:36
29334    11459    703    2016-02-26 01:02:07    2016-02-26 01:02:07
29335    16788    728    2016-03-16 07:47:09    2016-03-16 07:47:09
29336    19854    592    2016-02-05 16:29:41    2016-02-05 16:29:41
29337    14446    931    2016-02-28 19:57:50    2016-02-28 19:57:50
29338    16143    758    2016-03-30 11:00:18    2016-03-30 11:00:18
29339    12494    644    2016-02-02 03:48:44    2016-02-02 03:48:44
29340    10921    701    2016-03-04 17:54:49    2016-03-04 17:54:49
29341    18691    753    2016-03-11 23:44:41    2016-03-11 23:44:41
29342    11371    616    2016-01-26 04:34:58    2016-01-26 04:34:58
29343    12130    632    2016-02-26 10:22:21    2016-02-26 10:22:21
29344    17840    822    2016-03-21 15:22:02    2016-03-21 15:22:02
29345    10071    659    2016-01-26 10:15:31    2016-01-26 10:15:31
29346    10520    616    2016-02-25 13:42:29    2016-02-25 13:42:29
29347    13123    569    2016-02-03 10:31:30    2016-02-03 10:31:30
29348    19423    786    2016-04-20 17:23:58    2016-04-20 17:23:58
29349    12155    620    2016-03-13 22:37:53    2016-03-13 22:37:53
29350    13040    749    2016-04-03 22:58:24    2016-04-03 22:58:24
29351    11337    588    2016-02-16 00:54:26    2016-02-16 00:54:26
29352    17855    587    2016-03-01 01:58:53    2016-03-01 01:58:53
29353    16920    562    2016-01-29 05:34:28    2016-01-29 05:34:28
29354    11400    609    2016-03-29 09:07:36    2016-03-29 09:07:36
29355    13911    882    2016-04-03 23:23:20    2016-04-03 23:23:20
29356    18303    759    2016-02-10 08:20:38    2016-02-10 08:20:38
29357    14416    792    2016-01-24 22:33:28    2016-01-24 22:33:28
29358    12098    739    2016-01-22 07:43:35    2016-01-22 07:43:35
29359    15709    650    2016-02-19 20:56:05    2016-02-19 20:56:05
29360    17243    658    2016-02-23 07:49:43    2016-02-23 07:49:43
29361    10251    651    2016-03-30 07:04:28    2016-03-30 07:04:28
29362    15566    673    2016-03-03 00:15:33    2016-03-03 00:15:33
29363    11669    919    2016-02-29 09:03:08    2016-02-29 09:03:08
29364    12095    572    2016-02-20 09:36:22    2016-02-20 09:36:22
29365    18837    937    2016-03-07 05:36:20    2016-03-07 05:36:20
29366    11078    521    2016-03-31 08:42:40    2016-03-31 08:42:40
29367    15586    949    2016-03-07 10:25:56    2016-03-07 10:25:56
29368    15076    553    2016-04-17 22:27:50    2016-04-17 22:27:50
29369    13036    476    2016-04-15 15:03:07    2016-04-15 15:03:07
29370    19289    728    2016-01-31 02:56:14    2016-01-31 02:56:14
29371    11383    883    2016-03-30 18:13:17    2016-03-30 18:13:17
29372    15661    538    2016-02-27 11:42:50    2016-02-27 11:42:50
29373    16096    651    2016-01-29 16:49:04    2016-01-29 16:49:04
29374    12383    925    2016-02-05 15:59:12    2016-02-05 15:59:12
29375    17619    849    2016-01-30 03:05:01    2016-01-30 03:05:01
29376    18223    934    2016-02-13 21:53:11    2016-02-13 21:53:11
29377    15648    817    2016-03-05 22:41:15    2016-03-05 22:41:15
29378    15299    649    2016-01-31 00:35:04    2016-01-31 00:35:04
29379    19331    572    2016-04-17 12:41:04    2016-04-17 12:41:04
29380    14607    710    2016-04-12 00:01:59    2016-04-12 00:01:59
29381    14971    755    2016-03-06 06:20:18    2016-03-06 06:20:18
29382    13189    508    2016-03-19 13:45:24    2016-03-19 13:45:24
29383    15220    697    2016-03-20 00:43:29    2016-03-20 00:43:29
29384    15613    829    2016-01-31 18:54:14    2016-01-31 18:54:14
29385    13737    562    2016-01-28 21:49:44    2016-01-28 21:49:44
29386    10536    571    2016-03-21 06:28:53    2016-03-21 06:28:53
29387    12636    559    2016-04-07 08:40:36    2016-04-07 08:40:36
29388    14712    795    2016-03-20 22:16:50    2016-03-20 22:16:50
29389    15984    508    2016-04-10 02:26:26    2016-04-10 02:26:26
29390    18693    627    2016-02-01 23:50:30    2016-02-01 23:50:30
29391    15124    748    2016-04-07 20:11:32    2016-04-07 20:11:32
29392    18834    656    2016-04-20 09:29:45    2016-04-20 09:29:45
29393    16472    713    2016-03-03 07:44:14    2016-03-03 07:44:14
29394    19403    864    2016-01-25 02:43:00    2016-01-25 02:43:00
29395    14776    480    2016-02-24 13:02:34    2016-02-24 13:02:34
29396    14844    667    2016-01-26 01:25:36    2016-01-26 01:25:36
29397    13488    660    2016-03-16 06:29:36    2016-03-16 06:29:36
29398    16713    773    2016-04-17 06:57:38    2016-04-17 06:57:38
29399    19452    520    2016-01-23 01:54:39    2016-01-23 01:54:39
29400    12294    842    2016-02-28 13:29:42    2016-02-28 13:29:42
29401    15661    621    2016-03-21 04:08:34    2016-03-21 04:08:34
29402    19526    740    2016-03-06 19:49:51    2016-03-06 19:49:51
29403    11621    892    2016-01-28 20:49:10    2016-01-28 20:49:10
29404    19076    708    2016-02-25 15:28:35    2016-02-25 15:28:35
29405    19026    537    2016-03-22 06:42:49    2016-03-22 06:42:49
29406    11389    499    2016-03-17 18:50:15    2016-03-17 18:50:15
29407    15224    737    2016-02-16 06:26:14    2016-02-16 06:26:14
29408    15772    578    2016-03-09 01:32:53    2016-03-09 01:32:53
29409    13052    882    2016-02-20 14:08:51    2016-02-20 14:08:51
29410    18570    902    2016-02-18 08:43:05    2016-02-18 08:43:05
29411    12208    957    2016-04-05 23:40:44    2016-04-05 23:40:44
29412    19690    485    2016-01-25 13:36:16    2016-01-25 13:36:16
29413    13238    948    2016-03-24 17:13:49    2016-03-24 17:13:49
29414    14345    591    2016-02-19 03:33:12    2016-02-19 03:33:12
29415    18042    957    2016-03-17 21:56:04    2016-03-17 21:56:04
29416    16821    879    2016-02-28 05:54:06    2016-02-28 05:54:06
29417    18430    933    2016-04-02 05:42:32    2016-04-02 05:42:32
29418    12174    826    2016-03-07 13:11:21    2016-03-07 13:11:21
29419    14796    654    2016-02-14 10:53:37    2016-02-14 10:53:37
29420    16824    932    2016-03-19 15:28:07    2016-03-19 15:28:07
29421    10389    959    2016-04-07 20:59:42    2016-04-07 20:59:42
29422    16732    570    2016-04-18 04:49:33    2016-04-18 04:49:33
29423    11395    754    2016-01-31 11:23:19    2016-01-31 11:23:19
29424    16371    542    2016-04-07 13:53:11    2016-04-07 13:53:11
29425    18679    698    2016-04-13 08:03:57    2016-04-13 08:03:57
29426    10263    922    2016-04-10 11:37:46    2016-04-10 11:37:46
29427    12538    908    2016-02-03 05:15:25    2016-02-03 05:15:25
29428    17143    583    2016-04-01 07:15:24    2016-04-01 07:15:24
29429    16839    708    2016-02-23 18:01:00    2016-02-23 18:01:00
29430    13909    611    2016-02-04 12:35:39    2016-02-04 12:35:39
29431    19779    780    2016-02-22 09:20:01    2016-02-22 09:20:01
29432    17529    542    2016-03-10 11:55:34    2016-03-10 11:55:34
29433    19621    885    2016-02-17 09:14:20    2016-02-17 09:14:20
29434    14238    631    2016-02-19 17:28:12    2016-02-19 17:28:12
29435    13182    771    2016-02-05 19:03:27    2016-02-05 19:03:27
29436    13053    594    2016-04-07 20:15:11    2016-04-07 20:15:11
29437    14763    699    2016-03-17 19:16:13    2016-03-17 19:16:13
29438    11794    502    2016-04-14 05:07:01    2016-04-14 05:07:01
29439    15358    681    2016-03-20 08:30:48    2016-03-20 08:30:48
29440    14071    739    2016-04-08 15:22:01    2016-04-08 15:22:01
29441    19915    597    2016-02-10 10:18:56    2016-02-10 10:18:56
29442    14298    837    2016-02-01 21:41:28    2016-02-01 21:41:28
29443    10133    950    2016-03-21 08:59:34    2016-03-21 08:59:34
29444    11515    644    2016-03-16 09:05:51    2016-03-16 09:05:51
29445    19570    746    2016-03-13 17:09:51    2016-03-13 17:09:51
29446    14495    526    2016-03-23 17:07:48    2016-03-23 17:07:48
29447    15685    545    2016-04-10 14:57:10    2016-04-10 14:57:10
29448    18274    694    2016-04-06 02:43:21    2016-04-06 02:43:21
29449    19533    891    2016-02-28 18:24:25    2016-02-28 18:24:25
29450    15695    910    2016-02-21 23:04:14    2016-02-21 23:04:14
29451    11171    729    2016-04-15 05:04:06    2016-04-15 05:04:06
29452    16846    847    2016-03-19 16:04:02    2016-03-19 16:04:02
29453    19841    753    2016-01-27 17:27:07    2016-01-27 17:27:07
29454    11388    691    2016-04-17 05:07:18    2016-04-17 05:07:18
29455    16076    945    2016-03-14 11:30:19    2016-03-14 11:30:19
29456    15255    791    2016-04-19 07:49:22    2016-04-19 07:49:22
29457    17386    541    2016-03-14 07:29:44    2016-03-14 07:29:44
29458    10634    498    2016-02-25 21:53:47    2016-02-25 21:53:47
29459    13789    767    2016-03-29 04:37:42    2016-03-29 04:37:42
29460    14211    758    2016-03-06 22:15:28    2016-03-06 22:15:28
29461    11485    658    2016-02-01 23:20:12    2016-02-01 23:20:12
29462    11981    712    2016-01-24 07:05:42    2016-01-24 07:05:42
29463    10496    546    2016-04-20 05:40:29    2016-04-20 05:40:29
29464    14781    911    2016-03-02 03:27:44    2016-03-02 03:27:44
29465    12192    901    2016-01-30 14:33:35    2016-01-30 14:33:35
29466    10671    632    2016-02-02 03:09:01    2016-02-02 03:09:01
29467    13479    942    2016-04-02 00:45:07    2016-04-02 00:45:07
29468    18949    787    2016-01-28 07:57:13    2016-01-28 07:57:13
29469    15905    720    2016-01-27 21:40:29    2016-01-27 21:40:29
29470    16983    865    2016-02-18 13:32:07    2016-02-18 13:32:07
29471    18878    887    2016-01-25 01:43:16    2016-01-25 01:43:16
29472    15488    503    2016-03-31 06:39:48    2016-03-31 06:39:48
29473    18508    783    2016-01-29 03:17:59    2016-01-29 03:17:59
29474    19600    472    2016-01-27 13:36:42    2016-01-27 13:36:42
29475    14400    843    2016-02-01 19:32:17    2016-02-01 19:32:17
29476    14369    646    2016-04-17 07:39:18    2016-04-17 07:39:18
29477    17283    710    2016-01-28 22:08:06    2016-01-28 22:08:06
29478    19590    824    2016-04-19 22:48:41    2016-04-19 22:48:41
29479    13503    912    2016-03-23 01:35:09    2016-03-23 01:35:09
29480    11622    647    2016-04-11 17:25:42    2016-04-11 17:25:42
29481    13408    805    2016-02-04 15:12:20    2016-02-04 15:12:20
29482    13746    688    2016-01-30 18:48:43    2016-01-30 18:48:43
29483    14082    883    2016-04-06 13:30:39    2016-04-06 13:30:39
29484    16652    624    2016-02-08 08:21:39    2016-02-08 08:21:39
29485    11475    823    2016-02-22 06:58:11    2016-02-22 06:58:11
29486    11173    946    2016-03-09 19:51:50    2016-03-09 19:51:50
29487    18418    791    2016-02-12 06:55:44    2016-02-12 06:55:44
29488    18087    702    2016-03-26 01:49:30    2016-03-26 01:49:30
29489    13006    723    2016-02-08 05:17:45    2016-02-08 05:17:45
29490    17018    609    2016-01-28 00:44:12    2016-01-28 00:44:12
29491    19673    954    2016-04-12 11:45:00    2016-04-12 11:45:00
29492    15953    845    2016-02-24 16:01:09    2016-02-24 16:01:09
29493    10978    876    2016-03-21 20:17:02    2016-03-21 20:17:02
29494    14351    666    2016-03-31 15:04:57    2016-03-31 15:04:57
29495    11603    678    2016-02-06 19:57:14    2016-02-06 19:57:14
29496    19001    736    2016-02-05 19:52:03    2016-02-05 19:52:03
29497    13401    501    2016-03-30 23:19:06    2016-03-30 23:19:06
29498    13765    690    2016-03-06 07:35:27    2016-03-06 07:35:27
29499    14333    745    2016-03-10 09:28:52    2016-03-10 09:28:52
29500    15145    554    2016-02-01 22:02:14    2016-02-01 22:02:14
29501    15780    870    2016-04-06 17:02:07    2016-04-06 17:02:07
29502    11786    867    2016-02-26 15:28:23    2016-02-26 15:28:23
29503    10114    516    2016-04-19 05:54:23    2016-04-19 05:54:23
29504    18739    564    2016-04-08 22:52:15    2016-04-08 22:52:15
29505    12256    816    2016-03-26 12:27:18    2016-03-26 12:27:18
29506    11952    485    2016-03-07 10:02:02    2016-03-07 10:02:02
29507    14784    960    2016-01-29 05:21:29    2016-01-29 05:21:29
29508    14157    733    2016-04-04 15:20:34    2016-04-04 15:20:34
29509    18707    680    2016-02-15 16:56:30    2016-02-15 16:56:30
29510    13465    791    2016-03-08 13:06:18    2016-03-08 13:06:18
29511    11252    707    2016-04-17 22:03:30    2016-04-17 22:03:30
29512    12479    912    2016-02-08 19:32:53    2016-02-08 19:32:53
29513    13781    557    2016-02-19 21:32:03    2016-02-19 21:32:03
29514    17920    642    2016-03-07 21:09:41    2016-03-07 21:09:41
29515    18189    509    2016-03-28 07:39:03    2016-03-28 07:39:03
29516    19738    529    2016-04-01 11:23:56    2016-04-01 11:23:56
29517    19184    552    2016-03-12 10:19:00    2016-03-12 10:19:00
29518    15152    621    2016-03-27 23:51:49    2016-03-27 23:51:49
29519    19884    958    2016-01-31 13:06:41    2016-01-31 13:06:41
29520    15032    931    2016-04-01 19:25:22    2016-04-01 19:25:22
29521    19352    747    2016-03-13 17:25:58    2016-03-13 17:25:58
29522    19771    738    2016-02-06 21:00:31    2016-02-06 21:00:31
29523    17688    793    2016-02-26 16:59:31    2016-02-26 16:59:31
29524    11606    855    2016-02-08 13:18:04    2016-02-08 13:18:04
29525    14800    561    2016-04-19 07:55:53    2016-04-19 07:55:53
29526    12488    523    2016-03-29 17:53:55    2016-03-29 17:53:55
29527    16269    794    2016-03-28 17:12:12    2016-03-28 17:12:12
29528    15994    590    2016-01-26 06:23:57    2016-01-26 06:23:57
29529    13351    521    2016-02-04 12:23:12    2016-02-04 12:23:12
29530    18869    686    2016-03-03 23:44:59    2016-03-03 23:44:59
29531    19802    770    2016-04-10 09:51:39    2016-04-10 09:51:39
29532    11954    611    2016-03-14 05:49:29    2016-03-14 05:49:29
29533    19627    606    2016-01-31 11:06:10    2016-01-31 11:06:10
29534    15879    514    2016-04-14 01:44:35    2016-04-14 01:44:35
29535    16740    867    2016-02-26 15:15:17    2016-02-26 15:15:17
29536    11599    697    2016-03-22 05:51:51    2016-03-22 05:51:51
29537    17982    788    2016-02-09 03:20:47    2016-02-09 03:20:47
29538    14959    728    2016-02-28 11:47:19    2016-02-28 11:47:19
29539    10869    505    2016-04-02 13:12:26    2016-04-02 13:12:26
29540    12614    575    2016-04-12 20:27:54    2016-04-12 20:27:54
29541    18001    644    2016-04-08 09:11:30    2016-04-08 09:11:30
29542    18940    591    2016-02-18 09:24:51    2016-02-18 09:24:51
29543    11273    902    2016-03-18 13:19:02    2016-03-18 13:19:02
29544    11342    579    2016-03-31 06:05:29    2016-03-31 06:05:29
29545    19816    645    2016-03-24 14:27:15    2016-03-24 14:27:15
29546    14173    627    2016-03-01 04:03:10    2016-03-01 04:03:10
29547    15784    904    2016-02-25 21:54:54    2016-02-25 21:54:54
29548    10703    549    2016-02-09 17:55:30    2016-02-09 17:55:30
29549    12617    874    2016-03-14 05:53:36    2016-03-14 05:53:36
29550    17590    645    2016-02-28 18:38:56    2016-02-28 18:38:56
29551    14328    528    2016-02-27 16:51:50    2016-02-27 16:51:50
29552    18049    765    2016-03-10 12:17:39    2016-03-10 12:17:39
29553    15125    706    2016-02-02 09:21:51    2016-02-02 09:21:51
29554    19332    804    2016-01-30 03:08:11    2016-01-30 03:08:11
29555    11002    558    2016-03-01 21:39:50    2016-03-01 21:39:50
29556    18585    865    2016-03-30 23:17:10    2016-03-30 23:17:10
29557    15286    600    2016-03-14 03:24:29    2016-03-14 03:24:29
29558    15574    840    2016-03-18 16:48:55    2016-03-18 16:48:55
29559    13932    823    2016-04-07 02:58:28    2016-04-07 02:58:28
29560    14096    922    2016-01-29 20:18:43    2016-01-29 20:18:43
29561    13184    701    2016-03-06 01:46:37    2016-03-06 01:46:37
29562    18080    778    2016-03-01 21:22:12    2016-03-01 21:22:12
29563    18208    526    2016-04-06 18:54:47    2016-04-06 18:54:47
29564    16792    961    2016-01-22 04:09:35    2016-01-22 04:09:35
29565    19940    921    2016-02-10 07:47:20    2016-02-10 07:47:20
29566    14135    557    2016-03-02 05:29:10    2016-03-02 05:29:10
29567    18549    474    2016-03-21 08:29:12    2016-03-21 08:29:12
29568    16815    634    2016-02-28 18:00:22    2016-02-28 18:00:22
29569    13293    465    2016-03-20 15:33:07    2016-03-20 15:33:07
29570    16391    774    2016-03-12 11:26:38    2016-03-12 11:26:38
29571    14451    658    2016-02-11 01:03:31    2016-02-11 01:03:31
29572    13888    470    2016-02-03 19:18:00    2016-02-03 19:18:00
29573    10203    793    2016-02-16 21:05:54    2016-02-16 21:05:54
29574    14416    760    2016-01-23 12:11:45    2016-01-23 12:11:45
29575    10053    673    2016-03-27 17:01:31    2016-03-27 17:01:31
29576    17622    839    2016-02-07 06:09:52    2016-02-07 06:09:52
29577    17505    628    2016-04-13 17:18:37    2016-04-13 17:18:37
29578    16382    850    2016-04-17 07:04:23    2016-04-17 07:04:23
29579    12406    534    2016-02-02 04:17:57    2016-02-02 04:17:57
29580    15817    801    2016-01-24 04:23:50    2016-01-24 04:23:50
29581    18032    755    2016-02-04 19:17:26    2016-02-04 19:17:26
29582    11526    923    2016-04-08 22:04:21    2016-04-08 22:04:21
29583    11217    678    2016-02-24 11:02:42    2016-02-24 11:02:42
29584    12167    716    2016-04-04 12:13:44    2016-04-04 12:13:44
29585    10525    675    2016-04-02 01:00:50    2016-04-02 01:00:50
29586    10880    868    2016-02-24 17:14:36    2016-02-24 17:14:36
29587    11425    718    2016-04-10 19:10:21    2016-04-10 19:10:21
29588    12934    489    2016-03-21 04:49:08    2016-03-21 04:49:08
29589    18752    562    2016-02-29 06:54:32    2016-02-29 06:54:32
29590    14493    666    2016-01-31 04:24:57    2016-01-31 04:24:57
29591    19897    654    2016-02-22 02:57:30    2016-02-22 02:57:30
29592    19928    480    2016-03-26 19:39:02    2016-03-26 19:39:02
29593    11429    719    2016-01-24 15:56:52    2016-01-24 15:56:52
29594    10113    938    2016-01-25 01:02:14    2016-01-25 01:02:14
29595    14285    730    2016-03-04 20:18:14    2016-03-04 20:18:14
29596    15998    529    2016-03-21 23:09:08    2016-03-21 23:09:08
29597    14424    911    2016-02-07 21:55:17    2016-02-07 21:55:17
29598    18459    589    2016-01-29 10:18:59    2016-01-29 10:18:59
29599    12801    745    2016-03-03 21:51:21    2016-03-03 21:51:21
29600    19779    698    2016-01-26 15:22:12    2016-01-26 15:22:12
29601    14073    585    2016-02-17 08:40:11    2016-02-17 08:40:11
29602    10364    843    2016-03-28 16:35:49    2016-03-28 16:35:49
29603    14109    635    2016-03-13 21:53:01    2016-03-13 21:53:01
29604    13688    728    2016-01-25 17:55:20    2016-01-25 17:55:20
29605    15138    693    2016-04-20 15:28:40    2016-04-20 15:28:40
29606    18470    616    2016-04-17 00:50:47    2016-04-17 00:50:47
29607    19767    789    2016-03-01 22:48:04    2016-03-01 22:48:04
29608    13537    794    2016-03-02 06:25:35    2016-03-02 06:25:35
29609    12208    736    2016-02-09 20:02:56    2016-02-09 20:02:56
29610    16211    560    2016-02-20 07:08:39    2016-02-20 07:08:39
29611    16375    960    2016-02-06 19:56:19    2016-02-06 19:56:19
29612    15437    549    2016-04-01 06:12:35    2016-04-01 06:12:35
29613    10813    854    2016-04-06 11:11:09    2016-04-06 11:11:09
29614    16896    518    2016-02-05 05:07:39    2016-02-05 05:07:39
29615    18600    675    2016-02-06 15:19:30    2016-02-06 15:19:30
29616    18420    683    2016-01-29 22:20:48    2016-01-29 22:20:48
29617    10788    494    2016-03-21 19:51:27    2016-03-21 19:51:27
29618    14081    603    2016-02-01 20:05:02    2016-02-01 20:05:02
29619    12867    762    2016-04-14 07:28:06    2016-04-14 07:28:06
29620    18237    515    2016-04-20 10:56:38    2016-04-20 10:56:38
29621    17979    799    2016-03-22 21:47:38    2016-03-22 21:47:38
29622    10654    750    2016-03-16 07:50:56    2016-03-16 07:50:56
29623    14962    905    2016-02-03 19:07:05    2016-02-03 19:07:05
29624    17545    571    2016-04-12 10:09:05    2016-04-12 10:09:05
29625    17803    746    2016-04-01 03:29:55    2016-04-01 03:29:55
29626    14924    662    2016-02-26 17:13:55    2016-02-26 17:13:55
29627    17734    951    2016-03-10 19:46:33    2016-03-10 19:46:33
29628    14779    871    2016-04-06 21:57:19    2016-04-06 21:57:19
29629    13207    576    2016-02-25 18:41:29    2016-02-25 18:41:29
29630    13417    509    2016-04-14 13:21:57    2016-04-14 13:21:57
29631    11969    523    2016-01-23 03:02:21    2016-01-23 03:02:21
29632    11934    745    2016-01-29 22:14:54    2016-01-29 22:14:54
29633    12493    806    2016-04-06 03:44:24    2016-04-06 03:44:24
29634    18355    730    2016-02-04 17:15:36    2016-02-04 17:15:36
29635    15872    608    2016-02-11 02:10:57    2016-02-11 02:10:57
29636    13459    816    2016-04-02 08:35:48    2016-04-02 08:35:48
29637    11504    950    2016-02-26 18:59:08    2016-02-26 18:59:08
29638    17126    684    2016-04-19 15:25:12    2016-04-19 15:25:12
29639    11033    728    2016-02-18 06:16:21    2016-02-18 06:16:21
29640    11389    820    2016-01-31 18:11:11    2016-01-31 18:11:11
29641    10611    595    2016-02-29 23:42:29    2016-02-29 23:42:29
29642    10489    843    2016-04-18 05:48:09    2016-04-18 05:48:09
29643    17247    731    2016-03-09 22:17:24    2016-03-09 22:17:24
29644    14424    541    2016-02-27 16:18:49    2016-02-27 16:18:49
29645    18926    822    2016-02-24 05:50:19    2016-02-24 05:50:19
29646    15975    910    2016-02-28 09:57:29    2016-02-28 09:57:29
29647    13615    830    2016-02-19 21:59:36    2016-02-19 21:59:36
29648    11657    700    2016-01-31 01:14:59    2016-01-31 01:14:59
29649    17828    593    2016-03-18 21:52:56    2016-03-18 21:52:56
29650    17855    745    2016-01-27 20:40:59    2016-01-27 20:40:59
29651    18486    863    2016-02-07 19:43:58    2016-02-07 19:43:58
29652    18283    806    2016-04-20 20:11:38    2016-04-20 20:11:38
29653    10850    463    2016-03-06 19:12:43    2016-03-06 19:12:43
29654    15399    503    2016-04-07 07:04:27    2016-04-07 07:04:27
29655    18193    886    2016-03-15 22:01:41    2016-03-15 22:01:41
29656    10708    803    2016-03-29 02:03:15    2016-03-29 02:03:15
29657    13083    569    2016-03-05 23:40:16    2016-03-05 23:40:16
29658    10843    789    2016-03-23 00:41:16    2016-03-23 00:41:16
29659    15830    647    2016-02-04 13:15:54    2016-02-04 13:15:54
29660    14122    619    2016-02-17 01:48:57    2016-02-17 01:48:57
29661    12755    817    2016-03-05 21:03:40    2016-03-05 21:03:40
29662    16653    711    2016-03-03 01:54:50    2016-03-03 01:54:50
29663    11153    874    2016-02-05 07:48:57    2016-02-05 07:48:57
29664    12719    890    2016-01-29 04:04:38    2016-01-29 04:04:38
29665    16445    836    2016-03-10 08:34:25    2016-03-10 08:34:25
29666    15427    620    2016-04-05 10:39:01    2016-04-05 10:39:01
29667    12259    629    2016-02-02 03:04:28    2016-02-02 03:04:28
29668    12539    956    2016-01-29 14:17:25    2016-01-29 14:17:25
29669    14842    527    2016-02-15 09:06:48    2016-02-15 09:06:48
29670    17239    603    2016-02-28 18:51:41    2016-02-28 18:51:41
29671    13003    682    2016-03-30 13:05:59    2016-03-30 13:05:59
29672    13162    947    2016-02-01 09:25:07    2016-02-01 09:25:07
29673    14388    471    2016-03-04 00:27:05    2016-03-04 00:27:05
29674    10015    610    2016-04-16 04:34:07    2016-04-16 04:34:07
29675    13917    829    2016-02-28 22:10:24    2016-02-28 22:10:24
29676    16086    593    2016-02-14 22:35:43    2016-02-14 22:35:43
29677    18813    901    2016-03-01 21:43:51    2016-03-01 21:43:51
29678    11348    470    2016-03-30 03:43:47    2016-03-30 03:43:47
29679    19818    770    2016-04-12 13:07:36    2016-04-12 13:07:36
29680    15998    520    2016-04-07 08:39:16    2016-04-07 08:39:16
29681    17274    614    2016-02-23 09:10:58    2016-02-23 09:10:58
29682    16998    500    2016-03-09 23:01:23    2016-03-09 23:01:23
29683    13637    833    2016-03-15 10:38:42    2016-03-15 10:38:42
29684    13181    660    2016-01-22 14:42:23    2016-01-22 14:42:23
29685    10229    599    2016-04-10 20:35:29    2016-04-10 20:35:29
29686    11283    519    2016-04-04 05:14:54    2016-04-04 05:14:54
29687    13527    512    2016-02-11 17:59:44    2016-02-11 17:59:44
29688    14477    560    2016-01-31 23:43:55    2016-01-31 23:43:55
29689    10254    723    2016-03-16 12:38:11    2016-03-16 12:38:11
29690    18131    951    2016-01-30 00:19:54    2016-01-30 00:19:54
29691    15899    849    2016-01-25 03:31:28    2016-01-25 03:31:28
29692    15583    955    2016-03-20 11:03:51    2016-03-20 11:03:51
29693    18189    618    2016-02-17 23:26:15    2016-02-17 23:26:15
29694    17574    884    2016-03-10 12:28:53    2016-03-10 12:28:53
29695    13045    756    2016-03-29 15:11:35    2016-03-29 15:11:35
29696    11723    798    2016-02-01 19:40:12    2016-02-01 19:40:12
29697    17519    554    2016-04-17 01:08:17    2016-04-17 01:08:17
29698    16331    607    2016-02-29 17:20:30    2016-02-29 17:20:30
29699    14973    888    2016-04-15 18:09:34    2016-04-15 18:09:34
29700    16816    576    2016-03-27 20:38:43    2016-03-27 20:38:43
29701    16500    479    2016-02-09 10:07:54    2016-02-09 10:07:54
29702    17205    867    2016-04-19 08:11:10    2016-04-19 08:11:10
29703    14032    714    2016-02-07 11:30:21    2016-02-07 11:30:21
29704    10316    654    2016-03-29 12:34:35    2016-03-29 12:34:35
29705    18609    675    2016-03-14 09:39:23    2016-03-14 09:39:23
29706    11705    656    2016-03-21 13:39:43    2016-03-21 13:39:43
29707    15603    870    2016-03-11 19:32:14    2016-03-11 19:32:14
29708    13350    765    2016-04-19 20:35:15    2016-04-19 20:35:15
29709    12630    703    2016-03-02 13:06:25    2016-03-02 13:06:25
29710    18964    693    2016-04-19 04:08:36    2016-04-19 04:08:36
29711    10323    915    2016-01-24 09:19:00    2016-01-24 09:19:00
29712    17651    881    2016-03-28 14:37:27    2016-03-28 14:37:27
29713    15381    586    2016-03-19 23:24:19    2016-03-19 23:24:19
29714    17667    785    2016-03-22 01:50:48    2016-03-22 01:50:48
29715    10060    864    2016-02-05 22:43:12    2016-02-05 22:43:12
29716    12983    929    2016-03-06 05:17:52    2016-03-06 05:17:52
29717    19634    931    2016-01-23 07:39:30    2016-01-23 07:39:30
29718    18936    548    2016-04-18 16:40:30    2016-04-18 16:40:30
29719    18188    593    2016-02-24 09:54:24    2016-02-24 09:54:24
29720    15976    746    2016-03-06 03:22:02    2016-03-06 03:22:02
29721    16820    635    2016-02-19 14:18:51    2016-02-19 14:18:51
29722    13559    779    2016-02-07 12:46:42    2016-02-07 12:46:42
29723    18361    575    2016-01-25 15:56:53    2016-01-25 15:56:53
29724    16241    516    2016-04-01 05:06:19    2016-04-01 05:06:19
29725    14321    935    2016-04-01 15:30:25    2016-04-01 15:30:25
29726    11601    943    2016-03-01 03:20:22    2016-03-01 03:20:22
29727    13369    777    2016-03-16 04:53:25    2016-03-16 04:53:25
29728    18316    872    2016-04-20 20:45:00    2016-04-20 20:45:00
29729    10913    875    2016-03-17 15:48:52    2016-03-17 15:48:52
29730    12832    870    2016-04-04 20:10:20    2016-04-04 20:10:20
29731    13836    874    2016-01-29 07:40:47    2016-01-29 07:40:47
29732    13737    711    2016-03-19 09:21:53    2016-03-19 09:21:53
29733    13424    498    2016-04-05 14:50:06    2016-04-05 14:50:06
29734    12615    568    2016-02-01 16:07:31    2016-02-01 16:07:31
29735    14382    641    2016-03-15 22:35:14    2016-03-15 22:35:14
29736    12501    796    2016-04-09 14:45:24    2016-04-09 14:45:24
29737    14594    926    2016-03-21 06:14:46    2016-03-21 06:14:46
29738    18956    947    2016-02-08 12:23:02    2016-02-08 12:23:02
29739    13177    497    2016-03-04 03:23:46    2016-03-04 03:23:46
29740    19213    578    2016-03-31 09:13:20    2016-03-31 09:13:20
29741    19288    602    2016-02-19 18:05:26    2016-02-19 18:05:26
29742    18056    489    2016-02-08 23:28:53    2016-02-08 23:28:53
29743    17631    832    2016-03-06 20:16:33    2016-03-06 20:16:33
29744    17482    835    2016-02-15 00:53:54    2016-02-15 00:53:54
29745    15331    789    2016-04-20 00:14:55    2016-04-20 00:14:55
29746    19818    697    2016-03-24 20:00:01    2016-03-24 20:00:01
29747    19793    619    2016-03-17 09:23:12    2016-03-17 09:23:12
29748    17939    566    2016-03-18 00:44:17    2016-03-18 00:44:17
29749    10093    774    2016-03-07 19:56:32    2016-03-07 19:56:32
29750    12943    505    2016-03-30 11:44:14    2016-03-30 11:44:14
29751    17824    630    2016-02-09 11:30:05    2016-02-09 11:30:05
29752    15952    540    2016-03-02 17:21:19    2016-03-02 17:21:19
29753    18361    812    2016-01-24 22:03:14    2016-01-24 22:03:14
29754    13400    635    2016-03-05 09:31:50    2016-03-05 09:31:50
29755    14028    883    2016-03-01 22:30:01    2016-03-01 22:30:01
29756    13912    471    2016-01-24 19:21:02    2016-01-24 19:21:02
29757    14670    671    2016-03-09 18:12:00    2016-03-09 18:12:00
29758    15586    854    2016-03-24 10:15:43    2016-03-24 10:15:43
29759    12146    913    2016-01-31 23:31:51    2016-01-31 23:31:51
29760    18585    884    2016-03-09 12:59:13    2016-03-09 12:59:13
29761    14186    946    2016-03-15 12:57:51    2016-03-15 12:57:51
29762    19390    796    2016-03-29 21:39:36    2016-03-29 21:39:36
29763    19309    611    2016-02-24 04:29:13    2016-02-24 04:29:13
29764    18034    945    2016-02-29 04:46:15    2016-02-29 04:46:15
29765    12696    862    2016-01-27 20:00:00    2016-01-27 20:00:00
29766    11577    800    2016-03-18 11:09:28    2016-03-18 11:09:28
29767    15966    527    2016-02-27 23:07:44    2016-02-27 23:07:44
29768    14325    550    2016-03-08 03:39:45    2016-03-08 03:39:45
29769    10521    528    2016-04-17 03:57:36    2016-04-17 03:57:36
29770    15141    651    2016-02-06 22:14:47    2016-02-06 22:14:47
29771    16446    469    2016-04-12 00:51:01    2016-04-12 00:51:01
29772    17608    755    2016-03-15 04:26:15    2016-03-15 04:26:15
29773    17772    705    2016-02-15 11:29:53    2016-02-15 11:29:53
29774    11280    788    2016-04-10 12:15:34    2016-04-10 12:15:34
29775    12873    494    2016-01-30 03:56:40    2016-01-30 03:56:40
29776    10138    511    2016-01-25 14:45:32    2016-01-25 14:45:32
29777    19557    887    2016-01-29 23:08:31    2016-01-29 23:08:31
29778    11580    870    2016-02-28 20:24:04    2016-02-28 20:24:04
29779    10500    573    2016-02-11 07:46:22    2016-02-11 07:46:22
29780    13831    913    2016-03-18 13:58:53    2016-03-18 13:58:53
29781    13721    892    2016-03-26 14:58:49    2016-03-26 14:58:49
29782    11523    636    2016-03-26 18:07:37    2016-03-26 18:07:37
29783    15657    783    2016-04-06 04:55:08    2016-04-06 04:55:08
29784    17867    823    2016-03-01 16:30:00    2016-03-01 16:30:00
29785    11780    724    2016-03-21 04:26:44    2016-03-21 04:26:44
29786    11726    687    2016-02-03 14:21:33    2016-02-03 14:21:33
29787    14434    924    2016-03-29 03:58:56    2016-03-29 03:58:56
29788    17084    544    2016-02-25 14:20:00    2016-02-25 14:20:00
29789    14179    605    2016-03-14 18:25:59    2016-03-14 18:25:59
29790    11820    910    2016-02-14 11:10:48    2016-02-14 11:10:48
29791    11891    583    2016-03-13 02:32:39    2016-03-13 02:32:39
29792    12422    681    2016-03-14 00:01:50    2016-03-14 00:01:50
29793    13818    958    2016-03-31 01:52:56    2016-03-31 01:52:56
29794    12096    612    2016-02-07 05:14:38    2016-02-07 05:14:38
29795    16115    476    2016-02-20 06:47:00    2016-02-20 06:47:00
29796    16517    730    2016-03-18 05:58:01    2016-03-18 05:58:01
29797    12315    575    2016-04-11 21:52:26    2016-04-11 21:52:26
29798    14217    541    2016-02-21 22:21:29    2016-02-21 22:21:29
29799    16966    781    2016-01-25 05:11:03    2016-01-25 05:11:03
29800    13621    875    2016-03-11 19:13:44    2016-03-11 19:13:44
29801    11148    568    2016-02-17 22:10:11    2016-02-17 22:10:11
29802    17647    555    2016-04-09 22:28:03    2016-04-09 22:28:03
29803    15715    555    2016-03-31 21:17:09    2016-03-31 21:17:09
29804    13640    808    2016-02-17 20:39:01    2016-02-17 20:39:01
29805    13784    548    2016-01-22 13:05:18    2016-01-22 13:05:18
29806    16814    701    2016-03-09 11:28:11    2016-03-09 11:28:11
29807    15890    668    2016-03-30 01:48:29    2016-03-30 01:48:29
29808    13267    749    2016-03-07 01:57:33    2016-03-07 01:57:33
29809    19795    730    2016-04-08 11:25:12    2016-04-08 11:25:12
29810    15295    879    2016-04-18 03:10:08    2016-04-18 03:10:08
29811    18005    837    2016-03-24 19:50:13    2016-03-24 19:50:13
29812    12721    776    2016-01-29 21:14:23    2016-01-29 21:14:23
29813    17385    503    2016-02-14 19:11:14    2016-02-14 19:11:14
29814    17518    913    2016-02-17 01:16:08    2016-02-17 01:16:08
29815    17268    531    2016-03-15 13:12:10    2016-03-15 13:12:10
29816    17488    947    2016-03-21 14:00:14    2016-03-21 14:00:14
29817    18453    729    2016-02-04 19:17:09    2016-02-04 19:17:09
29818    18813    637    2016-01-30 04:29:14    2016-01-30 04:29:14
29819    19357    642    2016-03-03 05:31:42    2016-03-03 05:31:42
29820    16329    785    2016-03-08 04:37:22    2016-03-08 04:37:22
29821    10316    885    2016-03-16 09:52:35    2016-03-16 09:52:35
29822    19428    882    2016-01-28 23:48:45    2016-01-28 23:48:45
29823    15579    466    2016-03-26 14:48:14    2016-03-26 14:48:14
29824    10257    694    2016-02-10 03:48:33    2016-02-10 03:48:33
29825    19082    712    2016-02-10 03:57:13    2016-02-10 03:57:13
29826    16259    764    2016-02-29 18:10:01    2016-02-29 18:10:01
29827    19346    836    2016-04-04 04:12:01    2016-04-04 04:12:01
29828    15790    935    2016-03-14 08:17:41    2016-03-14 08:17:41
29829    15058    753    2016-03-04 03:21:56    2016-03-04 03:21:56
29830    18271    632    2016-03-23 22:25:01    2016-03-23 22:25:01
29831    18338    597    2016-02-27 10:50:02    2016-02-27 10:50:02
29832    11307    752    2016-02-02 07:50:42    2016-02-02 07:50:42
29833    12069    853    2016-03-23 13:20:30    2016-03-23 13:20:30
29834    18207    890    2016-04-17 19:25:27    2016-04-17 19:25:27
29835    18371    697    2016-04-03 06:35:55    2016-04-03 06:35:55
29836    13075    483    2016-03-05 21:33:27    2016-03-05 21:33:27
29837    14086    722    2016-02-23 09:47:15    2016-02-23 09:47:15
29838    12719    473    2016-03-04 19:23:10    2016-03-04 19:23:10
29839    12727    796    2016-04-12 00:20:58    2016-04-12 00:20:58
29840    10038    914    2016-04-17 18:10:05    2016-04-17 18:10:05
29841    16481    611    2016-02-05 18:38:53    2016-02-05 18:38:53
29842    12003    488    2016-03-29 18:02:46    2016-03-29 18:02:46
29843    15942    763    2016-03-20 09:04:19    2016-03-20 09:04:19
29844    11980    888    2016-02-08 12:47:48    2016-02-08 12:47:48
29845    10135    718    2016-03-20 04:44:26    2016-03-20 04:44:26
29846    10846    778    2016-02-26 06:07:55    2016-02-26 06:07:55
29847    17446    769    2016-02-16 21:03:50    2016-02-16 21:03:50
29848    15698    618    2016-04-14 15:59:36    2016-04-14 15:59:36
29849    15699    707    2016-01-29 03:12:19    2016-01-29 03:12:19
29850    14059    562    2016-03-22 20:11:33    2016-03-22 20:11:33
29851    16990    813    2016-03-14 05:04:40    2016-03-14 05:04:40
29852    15291    893    2016-03-29 14:32:07    2016-03-29 14:32:07
29853    15527    616    2016-02-04 16:50:28    2016-02-04 16:50:28
29854    16692    780    2016-03-29 10:34:39    2016-03-29 10:34:39
29855    10518    485    2016-03-30 14:07:27    2016-03-30 14:07:27
29856    10232    538    2016-03-18 12:30:49    2016-03-18 12:30:49
29857    11699    615    2016-01-23 10:21:59    2016-01-23 10:21:59
29858    18663    942    2016-04-09 06:56:30    2016-04-09 06:56:30
29859    12396    468    2016-01-31 16:31:55    2016-01-31 16:31:55
29860    18872    521    2016-03-08 07:55:08    2016-03-08 07:55:08
29861    13259    477    2016-03-08 18:08:21    2016-03-08 18:08:21
29862    13540    774    2016-03-26 20:57:33    2016-03-26 20:57:33
29863    14734    715    2016-03-24 11:39:18    2016-03-24 11:39:18
29864    17334    677    2016-01-26 13:44:00    2016-01-26 13:44:00
29865    15272    630    2016-02-04 23:17:36    2016-02-04 23:17:36
29866    18993    553    2016-03-03 12:14:55    2016-03-03 12:14:55
29867    11046    524    2016-04-19 02:53:13    2016-04-19 02:53:13
29868    19115    887    2016-02-29 01:49:53    2016-02-29 01:49:53
29869    14895    519    2016-03-27 02:23:34    2016-03-27 02:23:34
29870    14892    674    2016-03-13 03:16:10    2016-03-13 03:16:10
29871    16077    470    2016-03-22 17:38:45    2016-03-22 17:38:45
29872    16724    749    2016-04-12 00:28:10    2016-04-12 00:28:10
29873    15772    600    2016-04-01 11:09:35    2016-04-01 11:09:35
29874    10958    534    2016-02-09 08:57:21    2016-02-09 08:57:21
29875    17883    843    2016-03-25 07:19:02    2016-03-25 07:19:02
29876    19345    563    2016-03-11 12:48:08    2016-03-11 12:48:08
29877    16655    677    2016-04-13 18:50:42    2016-04-13 18:50:42
29878    15959    936    2016-04-20 14:30:37    2016-04-20 14:30:37
29879    14047    793    2016-02-08 15:10:11    2016-02-08 15:10:11
29880    15017    686    2016-02-13 05:23:18    2016-02-13 05:23:18
29881    16335    857    2016-04-11 09:55:55    2016-04-11 09:55:55
29882    11355    768    2016-01-28 07:48:48    2016-01-28 07:48:48
29883    11146    502    2016-02-21 21:11:02    2016-02-21 21:11:02
29884    14521    935    2016-02-18 13:47:16    2016-02-18 13:47:16
29885    13333    539    2016-01-29 15:53:22    2016-01-29 15:53:22
29886    18468    606    2016-04-19 03:25:22    2016-04-19 03:25:22
29887    14059    675    2016-01-27 00:20:22    2016-01-27 00:20:22
29888    18558    554    2016-02-23 18:51:08    2016-02-23 18:51:08
29889    17549    536    2016-03-23 23:46:56    2016-03-23 23:46:56
29890    17182    629    2016-04-18 07:48:51    2016-04-18 07:48:51
29891    12740    829    2016-02-04 13:24:53    2016-02-04 13:24:53
29892    13287    847    2016-02-26 03:12:20    2016-02-26 03:12:20
29893    13562    651    2016-01-22 11:03:00    2016-01-22 11:03:00
29894    10721    607    2016-02-01 20:00:59    2016-02-01 20:00:59
29895    10593    939    2016-03-08 15:59:39    2016-03-08 15:59:39
29896    13711    572    2016-03-27 03:09:15    2016-03-27 03:09:15
29897    12228    886    2016-04-14 06:55:14    2016-04-14 06:55:14
29898    16223    504    2016-03-24 11:45:24    2016-03-24 11:45:24
29899    11278    783    2016-04-17 01:32:43    2016-04-17 01:32:43
29900    18275    547    2016-03-13 05:27:07    2016-03-13 05:27:07
29901    17798    684    2016-02-03 02:41:42    2016-02-03 02:41:42
29902    17010    742    2016-04-17 04:07:59    2016-04-17 04:07:59
29903    10050    528    2016-01-23 07:37:57    2016-01-23 07:37:57
29904    16794    545    2016-04-12 05:11:06    2016-04-12 05:11:06
29905    11435    553    2016-04-07 20:39:26    2016-04-07 20:39:26
29906    18752    503    2016-04-17 02:31:59    2016-04-17 02:31:59
29907    18157    832    2016-04-14 02:59:26    2016-04-14 02:59:26
29908    10831    463    2016-02-09 08:52:38    2016-02-09 08:52:38
29909    10114    603    2016-03-25 10:25:05    2016-03-25 10:25:05
29910    18200    821    2016-02-29 12:39:58    2016-02-29 12:39:58
29911    19705    757    2016-02-22 18:50:46    2016-02-22 18:50:46
29912    16890    700    2016-03-19 03:29:44    2016-03-19 03:29:44
29913    18707    656    2016-01-27 20:39:00    2016-01-27 20:39:00
29914    18005    522    2016-02-11 20:14:42    2016-02-11 20:14:42
29915    18033    789    2016-02-14 16:01:23    2016-02-14 16:01:23
29916    18513    537    2016-03-13 00:15:12    2016-03-13 00:15:12
29917    19519    502    2016-02-06 01:54:34    2016-02-06 01:54:34
29918    10716    609    2016-04-17 02:36:48    2016-04-17 02:36:48
29919    19711    868    2016-02-23 13:55:30    2016-02-23 13:55:30
29920    17881    813    2016-03-22 05:22:39    2016-03-22 05:22:39
29921    17442    685    2016-02-02 16:35:00    2016-02-02 16:35:00
29922    18710    480    2016-02-06 07:55:59    2016-02-06 07:55:59
29923    16089    679    2016-03-01 16:17:44    2016-03-01 16:17:44
29924    16928    589    2016-02-17 08:29:54    2016-02-17 08:29:54
29925    14663    899    2016-01-27 07:23:12    2016-01-27 07:23:12
29926    18474    641    2016-04-02 10:11:44    2016-04-02 10:11:44
29927    15689    798    2016-04-02 19:45:08    2016-04-02 19:45:08
29928    13431    947    2016-04-17 10:05:04    2016-04-17 10:05:04
29929    17968    766    2016-02-19 15:00:25    2016-02-19 15:00:25
29930    11580    611    2016-03-08 00:30:57    2016-03-08 00:30:57
29931    13456    927    2016-02-20 02:24:36    2016-02-20 02:24:36
29932    17700    608    2016-04-16 09:22:29    2016-04-16 09:22:29
29933    17432    496    2016-02-07 14:56:05    2016-02-07 14:56:05
29934    10202    482    2016-02-12 06:37:37    2016-02-12 06:37:37
29935    18221    782    2016-04-05 17:16:08    2016-04-05 17:16:08
29936    10314    667    2016-01-29 07:02:11    2016-01-29 07:02:11
29937    13385    683    2016-01-25 06:38:33    2016-01-25 06:38:33
29938    15319    939    2016-03-02 19:11:51    2016-03-02 19:11:51
29939    15004    538    2016-03-08 02:07:44    2016-03-08 02:07:44
29940    19625    483    2016-04-15 16:57:37    2016-04-15 16:57:37
29941    10993    652    2016-03-17 10:09:33    2016-03-17 10:09:33
29942    13754    582    2016-02-21 03:20:05    2016-02-21 03:20:05
29943    16004    627    2016-02-09 07:44:22    2016-02-09 07:44:22
29944    18474    547    2016-04-15 06:12:57    2016-04-15 06:12:57
29945    12151    722    2016-03-25 12:21:19    2016-03-25 12:21:19
29946    14907    505    2016-01-31 08:24:37    2016-01-31 08:24:37
29947    11122    905    2016-02-28 09:57:28    2016-02-28 09:57:28
29948    10039    470    2016-02-21 11:22:47    2016-02-21 11:22:47
29949    16435    894    2016-01-26 12:28:17    2016-01-26 12:28:17
29950    11890    520    2016-03-09 15:38:09    2016-03-09 15:38:09
29951    11444    850    2016-02-14 23:04:41    2016-02-14 23:04:41
29952    18533    529    2016-02-04 03:07:44    2016-02-04 03:07:44
29953    16788    601    2016-04-04 13:39:01    2016-04-04 13:39:01
29954    12580    644    2016-03-02 06:16:15    2016-03-02 06:16:15
29955    11975    565    2016-02-04 09:39:50    2016-02-04 09:39:50
29956    16400    835    2016-01-24 20:19:11    2016-01-24 20:19:11
29957    18234    506    2016-02-21 06:11:44    2016-02-21 06:11:44
29958    19880    676    2016-02-21 19:07:55    2016-02-21 19:07:55
29959    17320    550    2016-04-05 09:53:12    2016-04-05 09:53:12
29960    19337    716    2016-02-14 20:08:55    2016-02-14 20:08:55
29961    18117    483    2016-01-31 10:30:13    2016-01-31 10:30:13
29962    10258    466    2016-02-22 01:18:34    2016-02-22 01:18:34
29963    17030    600    2016-04-13 07:25:20    2016-04-13 07:25:20
29964    13046    557    2016-02-28 22:09:42    2016-02-28 22:09:42
29965    12620    566    2016-03-03 03:14:20    2016-03-03 03:14:20
29966    11165    735    2016-04-05 23:55:46    2016-04-05 23:55:46
29967    14571    702    2016-04-18 23:07:30    2016-04-18 23:07:30
29968    16670    799    2016-03-28 12:05:28    2016-03-28 12:05:28
29969    17229    758    2016-04-10 23:34:05    2016-04-10 23:34:05
29970    12953    569    2016-03-23 15:52:19    2016-03-23 15:52:19
29971    18873    953    2016-01-25 14:10:06    2016-01-25 14:10:06
29972    16322    697    2016-04-14 16:43:08    2016-04-14 16:43:08
29973    14662    584    2016-03-11 17:01:01    2016-03-11 17:01:01
29974    19444    844    2016-03-25 20:38:10    2016-03-25 20:38:10
29975    12917    913    2016-01-31 13:50:32    2016-01-31 13:50:32
29976    12379    868    2016-03-16 16:58:47    2016-03-16 16:58:47
29977    11581    859    2016-03-05 03:10:35    2016-03-05 03:10:35
29978    19794    499    2016-04-18 20:00:07    2016-04-18 20:00:07
29979    12900    833    2016-02-10 10:34:54    2016-02-10 10:34:54
29980    14151    881    2016-04-16 01:43:33    2016-04-16 01:43:33
29981    11279    930    2016-01-26 13:26:52    2016-01-26 13:26:52
29982    19836    629    2016-04-02 11:06:09    2016-04-02 11:06:09
29983    12113    841    2016-02-05 05:45:26    2016-02-05 05:45:26
29984    18603    639    2016-03-20 08:24:31    2016-03-20 08:24:31
29985    12716    527    2016-03-02 12:25:36    2016-03-02 12:25:36
29986    15038    711    2016-03-09 06:30:45    2016-03-09 06:30:45
29987    17734    953    2016-03-26 10:38:21    2016-03-26 10:38:21
29988    18911    609    2016-03-23 09:16:28    2016-03-23 09:16:28
29989    18314    864    2016-02-15 20:44:21    2016-02-15 20:44:21
29990    11205    958    2016-02-16 05:43:02    2016-02-16 05:43:02
29991    10374    780    2016-03-20 02:54:40    2016-03-20 02:54:40
29992    13906    924    2016-03-09 09:19:26    2016-03-09 09:19:26
29993    16087    653    2016-01-26 01:18:33    2016-01-26 01:18:33
29994    18339    688    2016-03-01 21:57:30    2016-03-01 21:57:30
29995    10835    605    2016-03-25 19:28:15    2016-03-25 19:28:15
29996    15462    625    2016-02-19 04:11:53    2016-02-19 04:11:53
29997    16606    924    2016-02-14 02:47:59    2016-02-14 02:47:59
29998    17240    628    2016-01-23 12:53:03    2016-01-23 12:53:03
29999    19220    851    2016-03-13 06:51:53    2016-03-13 06:51:53
30000    11333    840    2016-01-24 16:47:38    2016-01-24 16:47:38
30001    14981    653    2016-03-01 05:55:20    2016-03-01 05:55:20
30002    16640    704    2016-03-09 15:56:41    2016-03-09 15:56:41
30003    15413    764    2016-03-27 16:17:49    2016-03-27 16:17:49
30004    14898    794    2016-02-08 08:36:50    2016-02-08 08:36:50
30005    18800    766    2016-02-28 08:10:07    2016-02-28 08:10:07
30006    13186    677    2016-02-16 14:23:21    2016-02-16 14:23:21
30007    18207    811    2016-03-19 21:50:37    2016-03-19 21:50:37
30008    10013    714    2016-03-27 12:35:38    2016-03-27 12:35:38
30009    13684    629    2016-04-11 06:36:52    2016-04-11 06:36:52
30010    15995    691    2016-03-28 16:57:01    2016-03-28 16:57:01
30011    12000    781    2016-03-11 17:02:30    2016-03-11 17:02:30
30012    19049    628    2016-03-18 16:43:00    2016-03-18 16:43:00
30013    15197    807    2016-04-12 11:32:24    2016-04-12 11:32:24
30014    16384    546    2016-03-10 20:12:06    2016-03-10 20:12:06
30015    11270    680    2016-04-08 15:59:42    2016-04-08 15:59:42
30016    14173    791    2016-02-08 16:13:20    2016-02-08 16:13:20
30017    13453    918    2016-02-02 09:47:49    2016-02-02 09:47:49
30018    18873    682    2016-04-09 08:12:46    2016-04-09 08:12:46
30019    15639    932    2016-04-16 01:26:23    2016-04-16 01:26:23
30020    13615    874    2016-04-11 21:19:24    2016-04-11 21:19:24
30021    14514    779    2016-02-03 04:49:30    2016-02-03 04:49:30
30022    10507    524    2016-04-09 00:55:32    2016-04-09 00:55:32
30023    14468    827    2016-04-17 08:22:33    2016-04-17 08:22:33
30024    10973    614    2016-02-23 18:30:14    2016-02-23 18:30:14
30025    15036    955    2016-03-18 19:50:30    2016-03-18 19:50:30
30026    17422    957    2016-04-14 02:02:54    2016-04-14 02:02:54
30027    13232    953    2016-03-09 05:37:21    2016-03-09 05:37:21
30028    10582    577    2016-01-30 13:24:36    2016-01-30 13:24:36
30029    14913    483    2016-03-16 14:40:11    2016-03-16 14:40:11
30030    15762    497    2016-03-27 10:47:25    2016-03-27 10:47:25
30031    11039    737    2016-02-09 03:04:46    2016-02-09 03:04:46
30032    10386    697    2016-03-16 05:03:15    2016-03-16 05:03:15
30033    13359    471    2016-04-19 19:12:18    2016-04-19 19:12:18
30034    14862    792    2016-03-27 21:04:41    2016-03-27 21:04:41
30035    11384    703    2016-03-25 18:44:50    2016-03-25 18:44:50
30036    11088    834    2016-04-03 14:29:58    2016-04-03 14:29:58
30037    13261    505    2016-03-21 07:09:44    2016-03-21 07:09:44
30038    12246    862    2016-04-18 12:54:39    2016-04-18 12:54:39
30039    19471    686    2016-01-24 02:14:36    2016-01-24 02:14:36
30040    13753    480    2016-03-15 16:44:53    2016-03-15 16:44:53
30041    15462    644    2016-04-14 09:04:50    2016-04-14 09:04:50
30042    16388    877    2016-03-02 14:28:36    2016-03-02 14:28:36
30043    15185    685    2016-04-20 16:24:09    2016-04-20 16:24:09
30044    16058    466    2016-03-12 22:47:13    2016-03-12 22:47:13
30045    11964    708    2016-01-22 13:43:41    2016-01-22 13:43:41
30046    17071    583    2016-03-13 16:57:06    2016-03-13 16:57:06
30047    10294    579    2016-03-15 11:56:37    2016-03-15 11:56:37
30048    11830    587    2016-02-09 13:08:51    2016-02-09 13:08:51
30049    10519    708    2016-02-01 21:31:45    2016-02-01 21:31:45
30050    18881    834    2016-02-25 17:00:15    2016-02-25 17:00:15
30051    19228    829    2016-02-01 01:56:42    2016-02-01 01:56:42
30052    15575    737    2016-03-26 16:20:24    2016-03-26 16:20:24
30053    10140    670    2016-03-18 11:50:06    2016-03-18 11:50:06
30054    13845    735    2016-02-17 17:00:29    2016-02-17 17:00:29
30055    14705    706    2016-04-19 08:21:20    2016-04-19 08:21:20
30056    14087    679    2016-03-19 10:30:21    2016-03-19 10:30:21
30057    12171    944    2016-04-04 13:36:31    2016-04-04 13:36:31
30058    11359    914    2016-02-22 19:47:52    2016-02-22 19:47:52
30059    13552    494    2016-02-04 04:50:24    2016-02-04 04:50:24
30060    14637    532    2016-03-31 07:01:52    2016-03-31 07:01:52
30061    11170    558    2016-02-17 18:41:37    2016-02-17 18:41:37
30062    19450    898    2016-04-10 01:18:02    2016-04-10 01:18:02
30063    19952    583    2016-02-15 07:09:20    2016-02-15 07:09:20
30064    19301    639    2016-03-31 07:01:58    2016-03-31 07:01:58
30065    18664    615    2016-04-04 00:18:21    2016-04-04 00:18:21
30066    11622    597    2016-03-22 02:01:55    2016-03-22 02:01:55
30067    15939    951    2016-02-02 02:00:04    2016-02-02 02:00:04
30068    15341    780    2016-02-23 04:33:18    2016-02-23 04:33:18
30069    19393    829    2016-04-09 21:06:01    2016-04-09 21:06:01
30070    15861    936    2016-03-26 19:19:52    2016-03-26 19:19:52
30071    12038    817    2016-03-28 03:15:17    2016-03-28 03:15:17
30072    13845    688    2016-02-06 09:04:41    2016-02-06 09:04:41
30073    16285    685    2016-04-19 23:16:10    2016-04-19 23:16:10
30074    11859    794    2016-04-14 06:24:53    2016-04-14 06:24:53
30075    11344    610    2016-04-20 04:47:46    2016-04-20 04:47:46
30076    17884    834    2016-02-21 08:51:30    2016-02-21 08:51:30
30077    17414    601    2016-02-08 05:05:07    2016-02-08 05:05:07
30078    18670    789    2016-03-25 05:54:22    2016-03-25 05:54:22
30079    18778    486    2016-02-07 18:57:11    2016-02-07 18:57:11
30080    15637    610    2016-02-19 18:13:58    2016-02-19 18:13:58
30081    18284    530    2016-04-10 04:18:32    2016-04-10 04:18:32
30082    13093    866    2016-03-22 12:34:08    2016-03-22 12:34:08
30083    10997    955    2016-04-13 16:15:05    2016-04-13 16:15:05
30084    18651    466    2016-02-12 21:36:44    2016-02-12 21:36:44
30085    12386    950    2016-03-21 17:22:14    2016-03-21 17:22:14
30086    12109    510    2016-02-17 11:35:21    2016-02-17 11:35:21
30087    13846    746    2016-03-25 21:41:45    2016-03-25 21:41:45
30088    18495    807    2016-04-16 07:02:56    2016-04-16 07:02:56
30089    10349    521    2016-01-31 01:03:57    2016-01-31 01:03:57
30090    18668    533    2016-03-24 06:12:03    2016-03-24 06:12:03
30091    18873    735    2016-02-02 07:01:26    2016-02-02 07:01:26
30092    18557    946    2016-03-08 06:16:41    2016-03-08 06:16:41
30093    15134    838    2016-03-09 17:43:48    2016-03-09 17:43:48
30094    19889    800    2016-02-04 00:30:10    2016-02-04 00:30:10
30095    10252    816    2016-03-21 14:25:32    2016-03-21 14:25:32
30096    10660    482    2016-03-31 21:57:17    2016-03-31 21:57:17
30097    16271    601    2016-03-07 03:52:04    2016-03-07 03:52:04
30098    17551    629    2016-03-18 12:57:10    2016-03-18 12:57:10
30099    16116    607    2016-04-02 20:16:45    2016-04-02 20:16:45
30100    15599    848    2016-02-06 10:20:24    2016-02-06 10:20:24
30101    11397    794    2016-02-15 22:56:59    2016-02-15 22:56:59
30102    18808    672    2016-02-20 09:20:19    2016-02-20 09:20:19
30103    11190    777    2016-04-01 18:28:06    2016-04-01 18:28:06
30104    18091    505    2016-04-07 23:34:32    2016-04-07 23:34:32
30105    17808    705    2016-04-09 16:58:30    2016-04-09 16:58:30
30106    14413    542    2016-02-14 12:09:04    2016-02-14 12:09:04
30107    12359    947    2016-04-14 19:10:26    2016-04-14 19:10:26
30108    16178    515    2016-04-02 08:45:38    2016-04-02 08:45:38
30109    17084    646    2016-04-08 19:46:31    2016-04-08 19:46:31
30110    13859    935    2016-01-29 21:32:18    2016-01-29 21:32:18
30111    15354    848    2016-03-20 06:21:06    2016-03-20 06:21:06
30112    15177    477    2016-03-27 04:59:16    2016-03-27 04:59:16
30113    12252    795    2016-02-27 19:11:43    2016-02-27 19:11:43
30114    17158    578    2016-03-11 23:33:27    2016-03-11 23:33:27
30115    16301    820    2016-04-08 04:17:27    2016-04-08 04:17:27
30116    11114    925    2016-02-09 00:16:16    2016-02-09 00:16:16
30117    15696    486    2016-02-17 10:41:49    2016-02-17 10:41:49
30118    16959    750    2016-03-02 04:00:39    2016-03-02 04:00:39
30119    17721    956    2016-03-01 22:00:08    2016-03-01 22:00:08
30120    11716    479    2016-04-03 08:04:32    2016-04-03 08:04:32
30121    16778    835    2016-03-27 21:07:40    2016-03-27 21:07:40
30122    12277    478    2016-04-09 05:41:20    2016-04-09 05:41:20
30123    15785    533    2016-03-21 17:57:13    2016-03-21 17:57:13
30124    13274    768    2016-04-02 03:44:20    2016-04-02 03:44:20
30125    16575    902    2016-03-08 18:44:17    2016-03-08 18:44:17
30126    12346    623    2016-03-24 00:04:30    2016-03-24 00:04:30
30127    13961    758    2016-02-24 07:17:13    2016-02-24 07:17:13
30128    10232    747    2016-04-05 16:26:46    2016-04-05 16:26:46
30129    15698    643    2016-04-16 04:27:57    2016-04-16 04:27:57
30130    13481    682    2016-03-28 21:36:04    2016-03-28 21:36:04
30131    16699    477    2016-02-03 00:28:58    2016-02-03 00:28:58
30132    12419    657    2016-04-10 00:48:40    2016-04-10 00:48:40
30133    10216    664    2016-02-17 21:51:08    2016-02-17 21:51:08
30134    10131    912    2016-04-10 12:20:05    2016-04-10 12:20:05
30135    17195    627    2016-02-13 09:24:53    2016-02-13 09:24:53
30136    12978    568    2016-04-17 11:39:11    2016-04-17 11:39:11
30137    12396    865    2016-02-04 14:22:00    2016-02-04 14:22:00
30138    10658    846    2016-02-25 20:58:19    2016-02-25 20:58:19
30139    19483    829    2016-01-28 19:08:16    2016-01-28 19:08:16
30140    12188    670    2016-02-10 15:22:13    2016-02-10 15:22:13
30141    15644    669    2016-03-16 05:32:28    2016-03-16 05:32:28
30142    17933    758    2016-03-24 17:24:05    2016-03-24 17:24:05
30143    10566    833    2016-03-10 10:15:02    2016-03-10 10:15:02
30144    14120    715    2016-03-31 22:29:10    2016-03-31 22:29:10
30145    10895    815    2016-04-10 15:07:49    2016-04-10 15:07:49
30146    14466    714    2016-03-02 08:39:54    2016-03-02 08:39:54
30147    17015    755    2016-03-10 00:07:30    2016-03-10 00:07:30
30148    19160    709    2016-04-15 03:58:36    2016-04-15 03:58:36
30149    16134    659    2016-03-11 17:15:02    2016-03-11 17:15:02
30150    12437    612    2016-03-27 17:04:29    2016-03-27 17:04:29
30151    14331    546    2016-02-25 03:55:54    2016-02-25 03:55:54
30152    16452    542    2016-01-27 20:33:09    2016-01-27 20:33:09
30153    12501    482    2016-03-09 08:55:27    2016-03-09 08:55:27
30154    16931    783    2016-04-12 05:27:05    2016-04-12 05:27:05
30155    12130    747    2016-03-04 12:05:56    2016-03-04 12:05:56
30156    19877    545    2016-03-22 22:57:42    2016-03-22 22:57:42
30157    18686    748    2016-01-28 05:22:00    2016-01-28 05:22:00
30158    15057    498    2016-01-24 16:11:50    2016-01-24 16:11:50
30159    13360    497    2016-02-23 07:43:13    2016-02-23 07:43:13
30160    13691    915    2016-02-05 08:41:36    2016-02-05 08:41:36
30161    14674    802    2016-02-22 02:07:34    2016-02-22 02:07:34
30162    18792    698    2016-03-31 07:36:48    2016-03-31 07:36:48
30163    13831    632    2016-02-29 13:41:55    2016-02-29 13:41:55
30164    17270    689    2016-03-19 23:25:19    2016-03-19 23:25:19
30165    10597    594    2016-03-11 10:19:11    2016-03-11 10:19:11
30166    19281    865    2016-01-22 13:56:48    2016-01-22 13:56:48
30167    13486    745    2016-03-16 06:20:36    2016-03-16 06:20:36
30168    15919    604    2016-04-15 09:36:10    2016-04-15 09:36:10
30169    15254    740    2016-03-20 18:29:58    2016-03-20 18:29:58
30170    19268    587    2016-01-25 05:58:29    2016-01-25 05:58:29
30171    12099    655    2016-01-31 02:19:09    2016-01-31 02:19:09
30172    19727    777    2016-04-16 21:32:55    2016-04-16 21:32:55
30173    16420    702    2016-03-06 08:26:09    2016-03-06 08:26:09
30174    11341    737    2016-02-13 07:54:29    2016-02-13 07:54:29
30175    11343    753    2016-03-15 15:43:37    2016-03-15 15:43:37
30176    12483    946    2016-02-03 20:13:13    2016-02-03 20:13:13
30177    16020    600    2016-03-21 15:42:16    2016-03-21 15:42:16
30178    10487    521    2016-02-08 06:00:25    2016-02-08 06:00:25
30179    10113    751    2016-04-02 21:15:16    2016-04-02 21:15:16
30180    16305    935    2016-02-04 21:20:34    2016-02-04 21:20:34
30181    18194    574    2016-03-23 00:06:29    2016-03-23 00:06:29
30182    13361    621    2016-01-30 12:02:00    2016-01-30 12:02:00
30183    13204    573    2016-02-11 22:31:14    2016-02-11 22:31:14
30184    14954    666    2016-02-20 09:57:24    2016-02-20 09:57:24
30185    13193    660    2016-02-07 07:59:20    2016-02-07 07:59:20
30186    18706    916    2016-02-10 20:01:04    2016-02-10 20:01:04
30187    12255    530    2016-02-05 13:35:00    2016-02-05 13:35:00
30188    19214    669    2016-03-28 19:32:01    2016-03-28 19:32:01
30189    18132    691    2016-01-27 10:37:09    2016-01-27 10:37:09
30190    14874    578    2016-02-17 06:12:27    2016-02-17 06:12:27
30191    11227    817    2016-02-19 06:42:08    2016-02-19 06:42:08
30192    11291    742    2016-02-14 04:49:04    2016-02-14 04:49:04
30193    18996    958    2016-03-28 18:23:54    2016-03-28 18:23:54
30194    16580    476    2016-01-22 03:55:04    2016-01-22 03:55:04
30195    18807    523    2016-04-02 17:57:03    2016-04-02 17:57:03
30196    10469    941    2016-03-04 16:34:44    2016-03-04 16:34:44
30197    14456    736    2016-04-18 11:37:29    2016-04-18 11:37:29
30198    11081    679    2016-02-03 11:10:01    2016-02-03 11:10:01
30199    15607    480    2016-04-06 22:53:02    2016-04-06 22:53:02
30200    14491    833    2016-02-10 03:54:39    2016-02-10 03:54:39
30201    11280    559    2016-02-26 19:22:48    2016-02-26 19:22:48
30202    11646    678    2016-01-29 23:54:27    2016-01-29 23:54:27
30203    17877    635    2016-02-03 07:19:35    2016-02-03 07:19:35
30204    14726    956    2016-03-25 23:22:07    2016-03-25 23:22:07
30205    19140    624    2016-03-27 18:43:02    2016-03-27 18:43:02
30206    18616    693    2016-02-04 10:45:15    2016-02-04 10:45:15
30207    15278    697    2016-04-08 18:36:22    2016-04-08 18:36:22
30208    10612    913    2016-03-21 11:33:19    2016-03-21 11:33:19
30209    13878    625    2016-01-26 06:35:28    2016-01-26 06:35:28
30210    11415    606    2016-03-23 15:44:58    2016-03-23 15:44:58
30211    12352    759    2016-03-13 19:27:46    2016-03-13 19:27:46
30212    16764    622    2016-02-14 18:01:51    2016-02-14 18:01:51
30213    16748    598    2016-03-30 14:17:39    2016-03-30 14:17:39
30214    16359    633    2016-02-03 08:32:39    2016-02-03 08:32:39
30215    13411    797    2016-04-05 01:13:52    2016-04-05 01:13:52
30216    14098    921    2016-03-26 19:55:27    2016-03-26 19:55:27
30217    19460    608    2016-03-11 00:35:53    2016-03-11 00:35:53
30218    10612    804    2016-03-05 15:44:28    2016-03-05 15:44:28
30219    15974    665    2016-03-12 12:29:55    2016-03-12 12:29:55
30220    15465    848    2016-03-25 03:00:12    2016-03-25 03:00:12
30221    10267    755    2016-04-06 01:24:43    2016-04-06 01:24:43
30222    15784    614    2016-03-29 20:27:25    2016-03-29 20:27:25
30223    12366    793    2016-03-07 17:29:32    2016-03-07 17:29:32
30224    15995    721    2016-01-29 08:34:56    2016-01-29 08:34:56
30225    15942    469    2016-04-19 16:40:39    2016-04-19 16:40:39
30226    18785    588    2016-04-06 07:10:44    2016-04-06 07:10:44
30227    15668    466    2016-04-05 16:17:04    2016-04-05 16:17:04
30228    19377    591    2016-01-29 23:54:08    2016-01-29 23:54:08
30229    16121    611    2016-03-11 11:17:26    2016-03-11 11:17:26
30230    15214    926    2016-03-05 13:37:32    2016-03-05 13:37:32
30231    15384    725    2016-03-23 17:59:57    2016-03-23 17:59:57
30232    10326    825    2016-04-15 00:20:05    2016-04-15 00:20:05
30233    12183    579    2016-03-26 06:42:39    2016-03-26 06:42:39
30234    15268    880    2016-03-11 11:45:02    2016-03-11 11:45:02
30235    10010    488    2016-02-11 12:32:30    2016-02-11 12:32:30
30236    16528    739    2016-02-03 09:05:25    2016-02-03 09:05:25
30237    11182    878    2016-01-28 03:27:36    2016-01-28 03:27:36
30238    11078    759    2016-04-13 16:41:40    2016-04-13 16:41:40
30239    12382    886    2016-04-03 08:37:37    2016-04-03 08:37:37
30240    15476    827    2016-02-18 08:30:19    2016-02-18 08:30:19
30241    12880    861    2016-03-11 05:24:36    2016-03-11 05:24:36
30242    16017    759    2016-03-21 23:46:01    2016-03-21 23:46:01
30243    14157    732    2016-02-02 17:11:43    2016-02-02 17:11:43
30244    10977    912    2016-03-20 15:54:00    2016-03-20 15:54:00
30245    17504    950    2016-03-23 09:42:36    2016-03-23 09:42:36
30246    12725    947    2016-03-19 12:06:38    2016-03-19 12:06:38
30247    16137    602    2016-01-28 07:09:21    2016-01-28 07:09:21
30248    12252    795    2016-01-26 19:26:57    2016-01-26 19:26:57
30249    12545    840    2016-02-21 15:59:02    2016-02-21 15:59:02
30250    14055    884    2016-04-10 13:11:28    2016-04-10 13:11:28
30251    14740    825    2016-01-23 12:13:57    2016-01-23 12:13:57
30252    11323    721    2016-04-08 22:13:16    2016-04-08 22:13:16
30253    11402    468    2016-02-08 03:51:06    2016-02-08 03:51:06
30254    19171    628    2016-02-19 17:05:24    2016-02-19 17:05:24
30255    19650    510    2016-03-19 23:58:49    2016-03-19 23:58:49
30256    11633    531    2016-03-11 03:03:33    2016-03-11 03:03:33
30257    12777    576    2016-04-13 21:07:15    2016-04-13 21:07:15
30258    19079    878    2016-02-20 02:11:17    2016-02-20 02:11:17
30259    16530    503    2016-03-22 07:46:15    2016-03-22 07:46:15
30260    16778    917    2016-03-29 20:05:01    2016-03-29 20:05:01
30261    19341    956    2016-03-28 20:24:59    2016-03-28 20:24:59
30262    15166    519    2016-02-04 00:41:13    2016-02-04 00:41:13
30263    15707    900    2016-04-20 06:46:49    2016-04-20 06:46:49
30264    11150    519    2016-03-21 20:28:58    2016-03-21 20:28:58
30265    12617    562    2016-04-01 08:19:13    2016-04-01 08:19:13
30266    12134    594    2016-02-10 23:16:14    2016-02-10 23:16:14
30267    12069    788    2016-04-13 18:12:23    2016-04-13 18:12:23
30268    14776    666    2016-02-24 23:57:57    2016-02-24 23:57:57
30269    18476    538    2016-03-20 08:02:54    2016-03-20 08:02:54
30270    11171    717    2016-02-11 21:57:25    2016-02-11 21:57:25
30271    12563    931    2016-02-21 15:06:16    2016-02-21 15:06:16
30272    14502    754    2016-01-30 16:42:18    2016-01-30 16:42:18
30273    15402    745    2016-04-08 14:57:19    2016-04-08 14:57:19
30274    15327    499    2016-03-24 07:16:33    2016-03-24 07:16:33
30275    16009    776    2016-03-19 06:13:13    2016-03-19 06:13:13
30276    18557    643    2016-02-10 11:05:06    2016-02-10 11:05:06
30277    16085    711    2016-03-12 08:18:05    2016-03-12 08:18:05
30278    12424    880    2016-03-07 07:01:15    2016-03-07 07:01:15
30279    12050    594    2016-03-31 19:04:23    2016-03-31 19:04:23
30280    10187    546    2016-02-26 10:38:23    2016-02-26 10:38:23
30281    16389    562    2016-03-27 06:17:25    2016-03-27 06:17:25
30282    19649    523    2016-04-19 21:15:14    2016-04-19 21:15:14
30283    11141    754    2016-02-12 08:15:06    2016-02-12 08:15:06
30284    11989    719    2016-02-19 10:48:04    2016-02-19 10:48:04
30285    19187    652    2016-02-15 17:37:03    2016-02-15 17:37:03
30286    14292    746    2016-04-10 22:32:21    2016-04-10 22:32:21
30287    10064    689    2016-02-22 09:11:48    2016-02-22 09:11:48
30288    16812    749    2016-04-18 04:01:56    2016-04-18 04:01:56
30289    11056    729    2016-03-10 18:16:14    2016-03-10 18:16:14
30290    10543    741    2016-04-10 13:53:15    2016-04-10 13:53:15
30291    14108    906    2016-03-11 22:20:52    2016-03-11 22:20:52
30292    19351    727    2016-02-28 00:52:12    2016-02-28 00:52:12
30293    17220    509    2016-04-19 21:34:50    2016-04-19 21:34:50
30294    16957    928    2016-02-16 00:33:09    2016-02-16 00:33:09
30295    17156    527    2016-03-06 15:57:43    2016-03-06 15:57:43
30296    19856    577    2016-03-26 01:04:53    2016-03-26 01:04:53
30297    15429    756    2016-02-09 19:52:55    2016-02-09 19:52:55
30298    19445    495    2016-02-26 02:57:41    2016-02-26 02:57:41
30299    10467    540    2016-02-14 23:11:21    2016-02-14 23:11:21
30300    14890    629    2016-01-31 22:50:57    2016-01-31 22:50:57
30301    18244    882    2016-03-12 18:23:05    2016-03-12 18:23:05
30302    16992    737    2016-02-19 04:01:40    2016-02-19 04:01:40
30303    12491    748    2016-02-21 01:12:26    2016-02-21 01:12:26
30304    18153    917    2016-03-05 02:15:32    2016-03-05 02:15:32
30305    11754    692    2016-02-14 12:51:56    2016-02-14 12:51:56
30306    11645    929    2016-03-05 02:15:13    2016-03-05 02:15:13
30307    12343    775    2016-02-16 12:22:47    2016-02-16 12:22:47
30308    17414    469    2016-03-13 17:37:55    2016-03-13 17:37:55
30309    12251    946    2016-04-11 15:30:35    2016-04-11 15:30:35
30310    17899    574    2016-03-07 02:11:50    2016-03-07 02:11:50
30311    18608    627    2016-04-17 16:50:57    2016-04-17 16:50:57
30312    19951    746    2016-02-09 07:02:43    2016-02-09 07:02:43
30313    16755    723    2016-01-31 23:51:49    2016-01-31 23:51:49
30314    10876    782    2016-02-08 19:35:52    2016-02-08 19:35:52
30315    19202    540    2016-03-12 05:40:22    2016-03-12 05:40:22
30316    15971    876    2016-03-05 13:03:22    2016-03-05 13:03:22
30317    16555    925    2016-04-01 19:53:07    2016-04-01 19:53:07
30318    17400    636    2016-03-02 00:58:58    2016-03-02 00:58:58
30319    12466    478    2016-04-15 07:49:56    2016-04-15 07:49:56
30320    17293    956    2016-03-25 17:17:03    2016-03-25 17:17:03
30321    17723    691    2016-03-04 04:04:07    2016-03-04 04:04:07
30322    19758    776    2016-02-17 15:12:21    2016-02-17 15:12:21
30323    11029    737    2016-02-04 00:09:25    2016-02-04 00:09:25
30324    11606    870    2016-02-04 05:06:52    2016-02-04 05:06:52
30325    10426    662    2016-04-16 09:38:48    2016-04-16 09:38:48
30326    11369    802    2016-04-18 05:24:01    2016-04-18 05:24:01
30327    18731    890    2016-03-17 03:48:54    2016-03-17 03:48:54
30328    17261    707    2016-04-07 23:01:51    2016-04-07 23:01:51
30329    15512    720    2016-02-27 09:16:46    2016-02-27 09:16:46
30330    19270    520    2016-02-04 01:11:49    2016-02-04 01:11:49
30331    17560    958    2016-04-05 12:57:10    2016-04-05 12:57:10
30332    16707    647    2016-03-03 15:58:00    2016-03-03 15:58:00
30333    11842    879    2016-03-10 05:43:50    2016-03-10 05:43:50
30334    11029    857    2016-01-28 05:23:13    2016-01-28 05:23:13
30335    14193    505    2016-02-15 18:44:21    2016-02-15 18:44:21
30336    10021    814    2016-03-18 18:52:46    2016-03-18 18:52:46
30337    11717    914    2016-04-01 16:35:57    2016-04-01 16:35:57
30338    12448    819    2016-04-14 10:44:32    2016-04-14 10:44:32
30339    15251    491    2016-02-09 09:45:30    2016-02-09 09:45:30
30340    17500    592    2016-04-07 21:25:09    2016-04-07 21:25:09
30341    18736    605    2016-01-24 09:41:53    2016-01-24 09:41:53
30342    18234    859    2016-02-07 06:19:34    2016-02-07 06:19:34
30343    13163    790    2016-03-28 17:48:41    2016-03-28 17:48:41
30344    13822    807    2016-01-29 03:18:00    2016-01-29 03:18:00
30345    11378    917    2016-01-27 18:10:18    2016-01-27 18:10:18
30346    17464    893    2016-01-31 01:35:47    2016-01-31 01:35:47
30347    11609    632    2016-02-25 14:02:50    2016-02-25 14:02:50
30348    19200    755    2016-02-05 17:11:52    2016-02-05 17:11:52
30349    16822    550    2016-03-25 18:13:54    2016-03-25 18:13:54
30350    19618    940    2016-02-26 02:36:42    2016-02-26 02:36:42
30351    15687    847    2016-01-24 02:52:07    2016-01-24 02:52:07
30352    12587    924    2016-01-28 14:43:52    2016-01-28 14:43:52
30353    18469    837    2016-01-29 10:24:58    2016-01-29 10:24:58
30354    10013    656    2016-02-09 04:05:09    2016-02-09 04:05:09
30355    16314    571    2016-02-15 22:42:39    2016-02-15 22:42:39
30356    13428    915    2016-04-02 09:42:56    2016-04-02 09:42:56
30357    12504    696    2016-02-07 12:16:30    2016-02-07 12:16:30
30358    16275    897    2016-02-22 17:19:57    2016-02-22 17:19:57
30359    19505    860    2016-02-23 07:15:10    2016-02-23 07:15:10
30360    13890    876    2016-02-08 08:20:04    2016-02-08 08:20:04
30361    11117    540    2016-01-25 18:00:33    2016-01-25 18:00:33
30362    17733    651    2016-02-01 17:47:30    2016-02-01 17:47:30
30363    13171    497    2016-03-28 02:43:26    2016-03-28 02:43:26
30364    13883    822    2016-03-29 19:33:34    2016-03-29 19:33:34
30365    11118    471    2016-03-01 21:11:25    2016-03-01 21:11:25
30366    17442    477    2016-03-08 06:25:49    2016-03-08 06:25:49
30367    12765    827    2016-04-19 12:43:21    2016-04-19 12:43:21
30368    19658    873    2016-04-15 23:28:12    2016-04-15 23:28:12
30369    19040    704    2016-04-17 19:39:24    2016-04-17 19:39:24
30370    10807    487    2016-03-04 17:18:17    2016-03-04 17:18:17
30371    15399    664    2016-04-01 16:50:28    2016-04-01 16:50:28
30372    14310    672    2016-01-22 19:14:53    2016-01-22 19:14:53
30373    14309    782    2016-04-02 12:33:27    2016-04-02 12:33:27
30374    19629    931    2016-03-09 04:51:04    2016-03-09 04:51:04
30375    19570    550    2016-03-24 13:17:39    2016-03-24 13:17:39
30376    14965    726    2016-03-08 01:42:25    2016-03-08 01:42:25
30377    18036    505    2016-03-11 17:22:58    2016-03-11 17:22:58
30378    17263    575    2016-03-16 15:41:12    2016-03-16 15:41:12
30379    16874    793    2016-04-19 13:54:02    2016-04-19 13:54:02
30380    18455    644    2016-04-13 10:41:05    2016-04-13 10:41:05
30381    15181    871    2016-03-11 00:02:35    2016-03-11 00:02:35
30382    10306    736    2016-04-05 11:42:23    2016-04-05 11:42:23
30383    17339    548    2016-02-13 16:32:41    2016-02-13 16:32:41
30384    14829    584    2016-02-16 15:56:36    2016-02-16 15:56:36
30385    16001    556    2016-01-29 03:29:19    2016-01-29 03:29:19
30386    18827    524    2016-02-22 23:44:48    2016-02-22 23:44:48
30387    17547    665    2016-02-02 17:49:05    2016-02-02 17:49:05
30388    18169    794    2016-04-19 01:01:12    2016-04-19 01:01:12
30389    16568    906    2016-02-17 21:57:26    2016-02-17 21:57:26
30390    14806    552    2016-02-10 14:05:11    2016-02-10 14:05:11
30391    15578    834    2016-03-09 06:12:41    2016-03-09 06:12:41
30392    18245    716    2016-02-06 09:57:52    2016-02-06 09:57:52
30393    12036    699    2016-04-14 09:21:38    2016-04-14 09:21:38
30394    11204    893    2016-03-07 20:56:32    2016-03-07 20:56:32
30395    10303    524    2016-02-05 02:20:51    2016-02-05 02:20:51
30396    14824    563    2016-04-04 02:11:19    2016-04-04 02:11:19
30397    13942    859    2016-03-19 11:37:42    2016-03-19 11:37:42
30398    16408    800    2016-04-05 13:36:50    2016-04-05 13:36:50
30399    19859    639    2016-04-20 09:23:47    2016-04-20 09:23:47
30400    12740    915    2016-02-29 22:37:32    2016-02-29 22:37:32
30401    16673    481    2016-01-28 11:32:20    2016-01-28 11:32:20
30402    13572    942    2016-03-16 08:28:28    2016-03-16 08:28:28
30403    14716    586    2016-02-12 12:21:31    2016-02-12 12:21:31
30404    18166    781    2016-03-03 07:29:30    2016-03-03 07:29:30
30405    13920    864    2016-02-03 15:27:26    2016-02-03 15:27:26
30406    10866    708    2016-02-05 03:40:25    2016-02-05 03:40:25
30407    18325    801    2016-03-03 04:23:36    2016-03-03 04:23:36
30408    13784    570    2016-02-16 14:36:49    2016-02-16 14:36:49
30409    10968    788    2016-02-25 22:39:43    2016-02-25 22:39:43
30410    17596    513    2016-04-19 03:36:03    2016-04-19 03:36:03
30411    17662    492    2016-02-19 06:01:29    2016-02-19 06:01:29
30412    12343    882    2016-03-03 04:00:16    2016-03-03 04:00:16
30413    10397    476    2016-01-25 18:57:43    2016-01-25 18:57:43
30414    18830    953    2016-04-18 16:01:03    2016-04-18 16:01:03
30415    13743    645    2016-01-29 19:32:27    2016-01-29 19:32:27
30416    16159    505    2016-03-10 13:00:01    2016-03-10 13:00:01
30417    17337    903    2016-03-08 07:40:44    2016-03-08 07:40:44
30418    12537    544    2016-04-06 16:39:43    2016-04-06 16:39:43
30419    16563    846    2016-03-22 09:47:10    2016-03-22 09:47:10
30420    19870    466    2016-03-10 17:39:34    2016-03-10 17:39:34
30421    17195    533    2016-04-07 11:50:38    2016-04-07 11:50:38
30422    15547    950    2016-02-01 04:38:51    2016-02-01 04:38:51
30423    13170    855    2016-03-28 18:38:30    2016-03-28 18:38:30
30424    18147    593    2016-02-21 13:15:43    2016-02-21 13:15:43
30425    15204    735    2016-01-31 08:10:03    2016-01-31 08:10:03
30426    13321    696    2016-04-06 06:43:46    2016-04-06 06:43:46
30427    16756    899    2016-02-14 06:54:42    2016-02-14 06:54:42
30428    15585    725    2016-03-28 00:15:24    2016-03-28 00:15:24
30429    16269    755    2016-04-15 17:36:16    2016-04-15 17:36:16
30430    11292    872    2016-03-28 10:31:36    2016-03-28 10:31:36
30431    13119    850    2016-04-14 05:16:36    2016-04-14 05:16:36
30432    17543    572    2016-04-10 17:57:40    2016-04-10 17:57:40
30433    18975    466    2016-02-07 21:06:49    2016-02-07 21:06:49
30434    12728    565    2016-02-12 18:27:21    2016-02-12 18:27:21
30435    14723    677    2016-02-17 04:07:13    2016-02-17 04:07:13
30436    12924    749    2016-02-24 11:55:53    2016-02-24 11:55:53
30437    10723    490    2016-02-13 15:00:29    2016-02-13 15:00:29
30438    16132    754    2016-03-31 01:49:48    2016-03-31 01:49:48
30439    11571    747    2016-02-12 11:05:29    2016-02-12 11:05:29
30440    10842    822    2016-02-18 04:12:59    2016-02-18 04:12:59
30441    13290    706    2016-02-11 14:01:33    2016-02-11 14:01:33
30442    14363    662    2016-02-17 09:06:32    2016-02-17 09:06:32
30443    19553    846    2016-03-03 14:18:37    2016-03-03 14:18:37
30444    13608    598    2016-02-13 16:07:59    2016-02-13 16:07:59
30445    12599    478    2016-04-19 07:12:12    2016-04-19 07:12:12
30446    16752    597    2016-02-27 13:17:47    2016-02-27 13:17:47
30447    15780    766    2016-04-16 05:47:04    2016-04-16 05:47:04
30448    12269    579    2016-01-23 20:16:14    2016-01-23 20:16:14
30449    18376    730    2016-01-28 21:32:53    2016-01-28 21:32:53
30450    14276    675    2016-03-19 18:36:36    2016-03-19 18:36:36
30451    14292    885    2016-03-29 09:12:49    2016-03-29 09:12:49
30452    10101    528    2016-03-11 05:30:19    2016-03-11 05:30:19
30453    11929    609    2016-02-04 15:08:44    2016-02-04 15:08:44
30454    14298    914    2016-03-28 00:17:51    2016-03-28 00:17:51
30455    14731    483    2016-03-03 04:43:55    2016-03-03 04:43:55
30456    12950    618    2016-02-08 00:11:38    2016-02-08 00:11:38
30457    12607    924    2016-02-22 01:30:54    2016-02-22 01:30:54
30458    17491    668    2016-03-25 07:31:05    2016-03-25 07:31:05
30459    10263    727    2016-02-29 11:15:28    2016-02-29 11:15:28
30460    15225    895    2016-02-11 14:18:25    2016-02-11 14:18:25
30461    14072    581    2016-02-06 14:59:49    2016-02-06 14:59:49
30462    16195    501    2016-04-03 02:35:30    2016-04-03 02:35:30
30463    14211    640    2016-02-26 06:12:35    2016-02-26 06:12:35
30464    11039    859    2016-02-09 23:44:15    2016-02-09 23:44:15
30465    15534    715    2016-02-25 01:44:38    2016-02-25 01:44:38
30466    11615    568    2016-02-17 02:20:02    2016-02-17 02:20:02
30467    14137    868    2016-02-18 20:01:53    2016-02-18 20:01:53
30468    14519    874    2016-03-30 01:43:25    2016-03-30 01:43:25
30469    18678    931    2016-03-11 21:10:17    2016-03-11 21:10:17
30470    14020    733    2016-04-17 12:19:21    2016-04-17 12:19:21
30471    11055    713    2016-04-16 20:18:15    2016-04-16 20:18:15
30472    18561    803    2016-02-18 10:05:06    2016-02-18 10:05:06
30473    13715    865    2016-03-08 04:17:43    2016-03-08 04:17:43
30474    15923    465    2016-03-14 11:39:35    2016-03-14 11:39:35
30475    14727    714    2016-03-06 14:51:58    2016-03-06 14:51:58
30476    16936    851    2016-02-19 08:07:24    2016-02-19 08:07:24
30477    15641    482    2016-03-21 18:58:23    2016-03-21 18:58:23
30478    14790    649    2016-03-05 20:15:57    2016-03-05 20:15:57
30479    13146    565    2016-03-22 00:16:58    2016-03-22 00:16:58
30480    18482    628    2016-03-21 12:35:02    2016-03-21 12:35:02
30481    18173    584    2016-02-20 05:39:52    2016-02-20 05:39:52
30482    14284    472    2016-02-20 02:15:49    2016-02-20 02:15:49
30483    16638    575    2016-03-06 11:12:05    2016-03-06 11:12:05
30484    10458    909    2016-02-02 13:38:32    2016-02-02 13:38:32
30485    15508    729    2016-02-03 19:28:05    2016-02-03 19:28:05
30486    10543    545    2016-03-07 06:02:12    2016-03-07 06:02:12
30487    17754    552    2016-02-21 15:25:05    2016-02-21 15:25:05
30488    13916    488    2016-03-04 15:55:17    2016-03-04 15:55:17
30489    14468    723    2016-04-08 00:37:08    2016-04-08 00:37:08
30490    17856    844    2016-04-14 10:23:46    2016-04-14 10:23:46
30491    19865    895    2016-03-04 02:46:19    2016-03-04 02:46:19
30492    18007    936    2016-03-23 15:43:00    2016-03-23 15:43:00
30493    12188    941    2016-03-14 18:32:00    2016-03-14 18:32:00
30494    19058    501    2016-04-05 02:58:48    2016-04-05 02:58:48
30495    19722    804    2016-03-06 02:13:32    2016-03-06 02:13:32
30496    16842    522    2016-03-29 09:34:52    2016-03-29 09:34:52
30497    19714    861    2016-03-09 18:58:34    2016-03-09 18:58:34
30498    17035    707    2016-03-26 21:38:05    2016-03-26 21:38:05
30499    14343    769    2016-04-13 10:02:30    2016-04-13 10:02:30
30500    19253    956    2016-02-01 16:27:45    2016-02-01 16:27:45
30501    11922    868    2016-02-03 09:26:01    2016-02-03 09:26:01
30502    12235    520    2016-02-12 16:55:35    2016-02-12 16:55:35
30503    13811    756    2016-03-21 07:37:23    2016-03-21 07:37:23
30504    18325    547    2016-02-07 11:06:00    2016-02-07 11:06:00
30505    19504    816    2016-03-27 13:20:25    2016-03-27 13:20:25
30506    15851    654    2016-02-04 03:24:44    2016-02-04 03:24:44
30507    15429    706    2016-01-30 17:34:29    2016-01-30 17:34:29
30508    13203    688    2016-03-22 20:23:52    2016-03-22 20:23:52
30509    18185    496    2016-03-18 22:05:09    2016-03-18 22:05:09
30510    19698    626    2016-01-26 12:29:32    2016-01-26 12:29:32
30511    10296    750    2016-04-11 05:22:32    2016-04-11 05:22:32
30512    18145    721    2016-04-07 06:53:23    2016-04-07 06:53:23
30513    15031    843    2016-01-22 03:43:52    2016-01-22 03:43:52
30514    19735    722    2016-03-20 23:54:38    2016-03-20 23:54:38
30515    19377    792    2016-04-04 21:35:16    2016-04-04 21:35:16
30516    11468    866    2016-03-07 10:21:25    2016-03-07 10:21:25
30517    11709    535    2016-04-04 17:35:02    2016-04-04 17:35:02
30518    19262    907    2016-03-25 07:09:53    2016-03-25 07:09:53
30519    10668    616    2016-03-13 21:07:13    2016-03-13 21:07:13
30520    16270    580    2016-02-06 02:59:29    2016-02-06 02:59:29
30521    11873    688    2016-02-03 11:50:10    2016-02-03 11:50:10
30522    13901    747    2016-04-15 05:52:44    2016-04-15 05:52:44
30523    14574    699    2016-03-25 08:10:42    2016-03-25 08:10:42
30524    11689    755    2016-03-04 10:51:54    2016-03-04 10:51:54
30525    14406    572    2016-04-01 23:29:40    2016-04-01 23:29:40
30526    13850    584    2016-04-10 13:40:42    2016-04-10 13:40:42
30527    12240    494    2016-04-04 00:36:32    2016-04-04 00:36:32
30528    12423    493    2016-02-29 12:56:04    2016-02-29 12:56:04
30529    19291    639    2016-04-13 15:49:21    2016-04-13 15:49:21
30530    19172    808    2016-04-18 21:21:03    2016-04-18 21:21:03
30531    11212    818    2016-03-20 23:35:10    2016-03-20 23:35:10
30532    18441    527    2016-03-13 22:01:08    2016-03-13 22:01:08
30533    16713    562    2016-03-05 19:13:54    2016-03-05 19:13:54
30534    16389    660    2016-02-03 10:32:23    2016-02-03 10:32:23
30535    15121    670    2016-03-29 13:21:27    2016-03-29 13:21:27
30536    15618    582    2016-01-28 11:44:22    2016-01-28 11:44:22
30537    17476    873    2016-02-22 16:30:32    2016-02-22 16:30:32
30538    13493    913    2016-04-02 19:52:24    2016-04-02 19:52:24
30539    10997    877    2016-04-06 16:34:12    2016-04-06 16:34:12
30540    15094    722    2016-04-12 23:43:32    2016-04-12 23:43:32
30541    17140    730    2016-03-15 23:04:37    2016-03-15 23:04:37
30542    10436    672    2016-03-22 19:09:57    2016-03-22 19:09:57
30543    14728    705    2016-04-03 00:27:32    2016-04-03 00:27:32
30544    10472    925    2016-02-07 10:53:45    2016-02-07 10:53:45
30545    19439    500    2016-04-05 05:00:32    2016-04-05 05:00:32
30546    13431    752    2016-03-07 13:26:00    2016-03-07 13:26:00
30547    16590    651    2016-03-25 04:31:58    2016-03-25 04:31:58
30548    19730    518    2016-04-09 03:33:05    2016-04-09 03:33:05
30549    11638    533    2016-04-20 09:27:15    2016-04-20 09:27:15
30550    17445    826    2016-03-25 10:29:54    2016-03-25 10:29:54
30551    13634    756    2016-04-15 00:10:21    2016-04-15 00:10:21
30552    12338    659    2016-03-28 02:52:21    2016-03-28 02:52:21
30553    14559    663    2016-01-29 10:52:48    2016-01-29 10:52:48
30554    15575    616    2016-03-29 19:46:55    2016-03-29 19:46:55
30555    17905    618    2016-02-20 13:36:06    2016-02-20 13:36:06
30556    19262    526    2016-04-01 21:32:40    2016-04-01 21:32:40
30557    18505    600    2016-03-11 04:50:34    2016-03-11 04:50:34
30558    19185    746    2016-04-19 22:23:44    2016-04-19 22:23:44
30559    15222    689    2016-02-11 22:48:58    2016-02-11 22:48:58
30560    16182    707    2016-02-14 02:38:04    2016-02-14 02:38:04
30561    10052    583    2016-04-08 06:58:53    2016-04-08 06:58:53
30562    13801    725    2016-04-03 16:18:53    2016-04-03 16:18:53
30563    13243    510    2016-03-21 14:38:11    2016-03-21 14:38:11
30564    18133    850    2016-03-18 06:16:20    2016-03-18 06:16:20
30565    15088    463    2016-04-09 13:07:02    2016-04-09 13:07:02
30566    13287    633    2016-02-16 08:39:20    2016-02-16 08:39:20
30567    17753    864    2016-03-18 11:49:52    2016-03-18 11:49:52
30568    19025    471    2016-02-17 07:05:44    2016-02-17 07:05:44
30569    19897    608    2016-03-29 05:27:04    2016-03-29 05:27:04
30570    19341    647    2016-03-21 23:54:56    2016-03-21 23:54:56
30571    13597    602    2016-04-19 05:27:14    2016-04-19 05:27:14
30572    19429    775    2016-02-11 09:42:01    2016-02-11 09:42:01
30573    11860    518    2016-02-26 00:36:33    2016-02-26 00:36:33
30574    18328    629    2016-02-26 06:47:16    2016-02-26 06:47:16
30575    19557    711    2016-03-20 08:31:11    2016-03-20 08:31:11
30576    18788    591    2016-01-26 12:52:18    2016-01-26 12:52:18
30577    15397    471    2016-02-26 04:07:00    2016-02-26 04:07:00
30578    12357    572    2016-01-22 14:46:39    2016-01-22 14:46:39
30579    16211    642    2016-03-05 17:28:53    2016-03-05 17:28:53
30580    13831    686    2016-03-15 20:13:33    2016-03-15 20:13:33
30581    12975    721    2016-02-28 19:08:56    2016-02-28 19:08:56
30582    16073    931    2016-04-09 15:19:39    2016-04-09 15:19:39
30583    10830    668    2016-02-16 07:45:56    2016-02-16 07:45:56
30584    19686    520    2016-03-28 07:53:08    2016-03-28 07:53:08
30585    17080    534    2016-04-08 13:39:11    2016-04-08 13:39:11
30586    11870    605    2016-04-07 05:06:57    2016-04-07 05:06:57
30587    13738    603    2016-03-06 09:24:29    2016-03-06 09:24:29
30588    18811    579    2016-04-12 02:11:50    2016-04-12 02:11:50
30589    11521    896    2016-02-26 19:53:52    2016-02-26 19:53:52
30590    17331    536    2016-03-12 03:23:51    2016-03-12 03:23:51
30591    17356    642    2016-03-30 02:50:30    2016-03-30 02:50:30
30592    10759    543    2016-02-01 10:44:18    2016-02-01 10:44:18
30593    14866    502    2016-03-17 16:38:46    2016-03-17 16:38:46
30594    19017    834    2016-01-25 03:33:23    2016-01-25 03:33:23
30595    15069    787    2016-03-24 02:26:11    2016-03-24 02:26:11
30596    10419    575    2016-01-22 16:06:48    2016-01-22 16:06:48
30597    14981    527    2016-03-18 00:20:00    2016-03-18 00:20:00
30598    19716    749    2016-02-23 08:01:05    2016-02-23 08:01:05
30599    14189    594    2016-02-03 20:19:38    2016-02-03 20:19:38
30600    12481    595    2016-02-13 16:05:54    2016-02-13 16:05:54
30601    15651    524    2016-03-02 22:54:19    2016-03-02 22:54:19
30602    17232    769    2016-04-15 01:14:38    2016-04-15 01:14:38
30603    19301    612    2016-04-07 06:33:16    2016-04-07 06:33:16
30604    18933    825    2016-01-31 07:52:24    2016-01-31 07:52:24
30605    12518    837    2016-04-11 09:55:15    2016-04-11 09:55:15
30606    11473    836    2016-03-08 00:14:23    2016-03-08 00:14:23
30607    12179    632    2016-01-26 22:09:53    2016-01-26 22:09:53
30608    11952    856    2016-03-13 16:45:34    2016-03-13 16:45:34
30609    16682    803    2016-02-04 00:21:56    2016-02-04 00:21:56
30610    10853    738    2016-01-25 15:07:28    2016-01-25 15:07:28
30611    18194    642    2016-02-08 20:44:15    2016-02-08 20:44:15
30612    14584    951    2016-03-19 07:28:59    2016-03-19 07:28:59
30613    10842    833    2016-02-28 12:44:31    2016-02-28 12:44:31
30614    11977    719    2016-01-23 00:16:40    2016-01-23 00:16:40
30615    11722    711    2016-02-24 18:24:15    2016-02-24 18:24:15
30616    14535    570    2016-01-31 11:30:22    2016-01-31 11:30:22
30617    14738    644    2016-02-22 20:19:54    2016-02-22 20:19:54
30618    12757    796    2016-02-17 05:08:15    2016-02-17 05:08:15
30619    19848    709    2016-04-08 22:34:31    2016-04-08 22:34:31
30620    14141    644    2016-02-01 13:18:53    2016-02-01 13:18:53
30621    11027    563    2016-03-24 18:38:11    2016-03-24 18:38:11
30622    15276    775    2016-02-26 14:29:04    2016-02-26 14:29:04
30623    16573    874    2016-02-26 02:49:51    2016-02-26 02:49:51
30624    13259    520    2016-02-04 04:45:07    2016-02-04 04:45:07
30625    13117    758    2016-02-10 11:42:32    2016-02-10 11:42:32
30626    19744    582    2016-03-17 08:42:16    2016-03-17 08:42:16
30627    13906    780    2016-03-16 01:27:21    2016-03-16 01:27:21
30628    18866    917    2016-03-09 13:43:34    2016-03-09 13:43:34
30629    13674    881    2016-02-06 04:00:52    2016-02-06 04:00:52
30630    12170    567    2016-02-28 13:19:21    2016-02-28 13:19:21
30631    11331    507    2016-01-30 19:46:44    2016-01-30 19:46:44
30632    11505    530    2016-01-29 23:35:52    2016-01-29 23:35:52
30633    19730    925    2016-04-11 23:32:48    2016-04-11 23:32:48
30634    19855    577    2016-03-28 02:29:22    2016-03-28 02:29:22
30635    16060    550    2016-02-21 07:25:58    2016-02-21 07:25:58
30636    10815    826    2016-02-11 10:55:00    2016-02-11 10:55:00
30637    15805    709    2016-04-08 19:43:51    2016-04-08 19:43:51
30638    10750    692    2016-02-13 17:30:58    2016-02-13 17:30:58
30639    10119    493    2016-03-02 17:55:56    2016-03-02 17:55:56
30640    14222    725    2016-02-02 01:36:55    2016-02-02 01:36:55
30641    18592    693    2016-04-05 05:40:44    2016-04-05 05:40:44
30642    16713    891    2016-04-01 07:08:15    2016-04-01 07:08:15
30643    13260    544    2016-01-25 02:58:16    2016-01-25 02:58:16
30644    14805    671    2016-03-19 06:04:35    2016-03-19 06:04:35
30645    16144    879    2016-02-22 17:16:49    2016-02-22 17:16:49
30646    13016    902    2016-01-26 23:56:03    2016-01-26 23:56:03
30647    18813    649    2016-02-16 00:59:30    2016-02-16 00:59:30
30648    13339    693    2016-03-24 11:00:08    2016-03-24 11:00:08
30649    15070    798    2016-01-31 13:50:04    2016-01-31 13:50:04
30650    13972    860    2016-02-11 05:09:13    2016-02-11 05:09:13
30651    14578    915    2016-01-23 00:01:12    2016-01-23 00:01:12
30652    17498    654    2016-03-13 09:52:02    2016-03-13 09:52:02
30653    19620    572    2016-02-06 12:10:28    2016-02-06 12:10:28
30654    15293    528    2016-02-11 22:22:46    2016-02-11 22:22:46
30655    11697    498    2016-02-27 20:52:31    2016-02-27 20:52:31
30656    10490    913    2016-02-28 06:32:13    2016-02-28 06:32:13
30657    11606    803    2016-03-13 20:56:58    2016-03-13 20:56:58
30658    13921    883    2016-03-31 00:50:34    2016-03-31 00:50:34
30659    14328    622    2016-03-02 21:18:20    2016-03-02 21:18:20
30660    19773    691    2016-01-22 03:47:33    2016-01-22 03:47:33
30661    13601    678    2016-02-19 15:19:27    2016-02-19 15:19:27
30662    13154    834    2016-02-13 05:16:21    2016-02-13 05:16:21
30663    18409    562    2016-02-25 15:29:34    2016-02-25 15:29:34
30664    13455    753    2016-03-31 19:09:05    2016-03-31 19:09:05
30665    14198    897    2016-04-10 08:57:32    2016-04-10 08:57:32
30666    14027    483    2016-03-01 16:25:03    2016-03-01 16:25:03
30667    13047    653    2016-02-02 21:29:00    2016-02-02 21:29:00
30668    15472    740    2016-03-15 10:10:04    2016-03-15 10:10:04
30669    12230    483    2016-03-24 02:19:31    2016-03-24 02:19:31
30670    10771    620    2016-02-25 21:00:13    2016-02-25 21:00:13
30671    19029    780    2016-03-14 11:57:47    2016-03-14 11:57:47
30672    10285    888    2016-03-12 23:13:21    2016-03-12 23:13:21
30673    12436    497    2016-01-25 10:33:36    2016-01-25 10:33:36
30674    19116    567    2016-03-01 17:09:58    2016-03-01 17:09:58
30675    14735    833    2016-02-22 15:57:38    2016-02-22 15:57:38
30676    12121    682    2016-01-30 13:47:47    2016-01-30 13:47:47
30677    11733    562    2016-03-02 01:46:54    2016-03-02 01:46:54
30678    15294    653    2016-02-21 13:37:08    2016-02-21 13:37:08
30679    15257    549    2016-02-07 12:21:01    2016-02-07 12:21:01
30680    14240    877    2016-02-12 14:12:13    2016-02-12 14:12:13
30681    17659    493    2016-04-02 04:31:22    2016-04-02 04:31:22
30682    14296    535    2016-02-03 01:02:21    2016-02-03 01:02:21
30683    10462    772    2016-04-11 06:42:16    2016-04-11 06:42:16
30684    13341    898    2016-03-31 01:20:03    2016-03-31 01:20:03
30685    19314    645    2016-02-17 18:31:16    2016-02-17 18:31:16
30686    10232    489    2016-02-14 11:58:05    2016-02-14 11:58:05
30687    10093    840    2016-03-12 20:18:40    2016-03-12 20:18:40
30688    15445    772    2016-04-03 01:31:27    2016-04-03 01:31:27
30689    19063    865    2016-02-17 12:25:19    2016-02-17 12:25:19
30690    16256    672    2016-02-08 19:27:22    2016-02-08 19:27:22
30691    14315    722    2016-01-22 13:23:41    2016-01-22 13:23:41
30692    11785    541    2016-03-05 06:57:31    2016-03-05 06:57:31
30693    11731    806    2016-04-10 06:07:31    2016-04-10 06:07:31
30694    16794    835    2016-02-26 13:05:04    2016-02-26 13:05:04
30695    11072    853    2016-03-27 13:44:05    2016-03-27 13:44:05
30696    16081    623    2016-02-15 11:48:02    2016-02-15 11:48:02
30697    11341    554    2016-02-21 23:34:26    2016-02-21 23:34:26
30698    11824    760    2016-04-12 08:04:29    2016-04-12 08:04:29
30699    14109    592    2016-02-23 17:34:28    2016-02-23 17:34:28
30700    12342    777    2016-02-25 17:34:10    2016-02-25 17:34:10
30701    12174    736    2016-03-01 16:46:03    2016-03-01 16:46:03
30702    13408    710    2016-03-20 14:03:21    2016-03-20 14:03:21
30703    15169    917    2016-03-12 15:06:38    2016-03-12 15:06:38
30704    11947    824    2016-02-01 01:18:02    2016-02-01 01:18:02
30705    17592    584    2016-04-04 12:43:50    2016-04-04 12:43:50
30706    11589    512    2016-04-18 04:04:23    2016-04-18 04:04:23
30707    19691    536    2016-01-26 08:10:35    2016-01-26 08:10:35
30708    13488    698    2016-02-29 23:07:35    2016-02-29 23:07:35
30709    19821    677    2016-03-28 04:38:15    2016-03-28 04:38:15
30710    16833    603    2016-02-21 11:50:07    2016-02-21 11:50:07
30711    18034    532    2016-03-21 20:21:27    2016-03-21 20:21:27
30712    19721    893    2016-02-11 19:20:21    2016-02-11 19:20:21
30713    19522    534    2016-04-07 10:10:41    2016-04-07 10:10:41
30714    12381    566    2016-02-16 03:25:37    2016-02-16 03:25:37
30715    19845    654    2016-02-23 09:26:56    2016-02-23 09:26:56
30716    18093    845    2016-03-14 08:07:35    2016-03-14 08:07:35
30717    17977    943    2016-03-31 09:00:57    2016-03-31 09:00:57
30718    13008    572    2016-02-17 15:37:13    2016-02-17 15:37:13
30719    17215    938    2016-02-11 17:12:08    2016-02-11 17:12:08
30720    18696    626    2016-02-09 05:52:05    2016-02-09 05:52:05
30721    19543    485    2016-02-06 05:25:52    2016-02-06 05:25:52
30722    12840    716    2016-04-12 14:12:27    2016-04-12 14:12:27
30723    19866    732    2016-03-10 12:24:32    2016-03-10 12:24:32
30724    10600    948    2016-02-02 00:22:11    2016-02-02 00:22:11
30725    19211    743    2016-02-09 08:03:34    2016-02-09 08:03:34
30726    18635    808    2016-03-05 20:42:28    2016-03-05 20:42:28
30727    19309    764    2016-04-16 11:23:20    2016-04-16 11:23:20
30728    11531    936    2016-04-15 23:21:36    2016-04-15 23:21:36
30729    12912    869    2016-03-08 03:51:13    2016-03-08 03:51:13
30730    17471    895    2016-02-22 05:27:23    2016-02-22 05:27:23
30731    18736    492    2016-03-17 18:47:28    2016-03-17 18:47:28
30732    11569    485    2016-03-13 03:28:35    2016-03-13 03:28:35
30733    12157    876    2016-04-02 17:26:01    2016-04-02 17:26:01
30734    13744    720    2016-04-18 08:38:20    2016-04-18 08:38:20
30735    18585    516    2016-04-19 13:15:09    2016-04-19 13:15:09
30736    15886    486    2016-03-02 15:03:14    2016-03-02 15:03:14
30737    10668    789    2016-02-14 02:53:02    2016-02-14 02:53:02
30738    19428    863    2016-04-04 09:24:19    2016-04-04 09:24:19
30739    12537    832    2016-04-15 16:43:45    2016-04-15 16:43:45
30740    14313    889    2016-02-16 19:27:36    2016-02-16 19:27:36
30741    19677    490    2016-02-26 14:44:33    2016-02-26 14:44:33
30742    18999    655    2016-03-09 23:33:12    2016-03-09 23:33:12
30743    14847    872    2016-01-31 14:57:08    2016-01-31 14:57:08
30744    14846    752    2016-02-06 10:19:45    2016-02-06 10:19:45
30745    13611    915    2016-02-28 23:42:01    2016-02-28 23:42:01
30746    15295    568    2016-03-12 21:21:21    2016-03-12 21:21:21
30747    10392    509    2016-02-19 23:19:40    2016-02-19 23:19:40
30748    12300    502    2016-03-03 11:34:37    2016-03-03 11:34:37
30749    12489    730    2016-03-11 20:25:42    2016-03-11 20:25:42
30750    10580    780    2016-03-14 02:41:24    2016-03-14 02:41:24
30751    14055    880    2016-03-04 00:59:47    2016-03-04 00:59:47
30752    11516    533    2016-03-23 18:05:38    2016-03-23 18:05:38
30753    16404    498    2016-02-14 13:38:20    2016-02-14 13:38:20
30754    18226    859    2016-02-06 17:48:45    2016-02-06 17:48:45
30755    17057    584    2016-03-11 09:48:54    2016-03-11 09:48:54
30756    14955    812    2016-04-11 12:15:30    2016-04-11 12:15:30
30757    11688    515    2016-03-11 08:34:14    2016-03-11 08:34:14
30758    14925    960    2016-03-05 04:41:04    2016-03-05 04:41:04
30759    16418    484    2016-02-19 21:48:03    2016-02-19 21:48:03
30760    12983    681    2016-02-19 21:17:22    2016-02-19 21:17:22
30761    13530    746    2016-03-19 12:22:46    2016-03-19 12:22:46
30762    13855    633    2016-02-29 04:18:46    2016-02-29 04:18:46
30763    11425    549    2016-02-22 03:33:53    2016-02-22 03:33:53
30764    13515    868    2016-02-10 00:17:39    2016-02-10 00:17:39
30765    13654    543    2016-01-22 12:34:15    2016-01-22 12:34:15
30766    16527    543    2016-01-23 02:45:14    2016-01-23 02:45:14
30767    14860    486    2016-02-03 21:32:05    2016-02-03 21:32:05
30768    16813    473    2016-02-18 19:21:14    2016-02-18 19:21:14
30769    10697    958    2016-03-24 19:41:19    2016-03-24 19:41:19
30770    19328    689    2016-02-15 05:57:09    2016-02-15 05:57:09
30771    12818    723    2016-04-07 10:37:58    2016-04-07 10:37:58
30772    11124    732    2016-01-31 21:07:08    2016-01-31 21:07:08
30773    10691    948    2016-03-29 04:02:44    2016-03-29 04:02:44
30774    14708    749    2016-03-14 11:05:20    2016-03-14 11:05:20
30775    19982    552    2016-01-27 03:37:15    2016-01-27 03:37:15
30776    10538    818    2016-02-16 04:31:46    2016-02-16 04:31:46
30777    14670    714    2016-03-26 11:58:00    2016-03-26 11:58:00
30778    15485    790    2016-02-14 04:21:56    2016-02-14 04:21:56
30779    17830    521    2016-03-07 19:18:17    2016-03-07 19:18:17
30780    19055    948    2016-03-27 12:44:44    2016-03-27 12:44:44
30781    13346    959    2016-03-23 12:05:52    2016-03-23 12:05:52
30782    19192    476    2016-02-03 16:12:37    2016-02-03 16:12:37
30783    14008    471    2016-02-29 06:44:01    2016-02-29 06:44:01
30784    11545    812    2016-03-22 03:30:15    2016-03-22 03:30:15
30785    10247    916    2016-03-08 04:57:11    2016-03-08 04:57:11
30786    11605    765    2016-02-14 16:56:56    2016-02-14 16:56:56
30787    17995    555    2016-02-20 14:30:23    2016-02-20 14:30:23
30788    13425    577    2016-02-23 23:09:39    2016-02-23 23:09:39
30789    10834    469    2016-04-20 16:05:13    2016-04-20 16:05:13
30790    19026    480    2016-01-28 15:30:31    2016-01-28 15:30:31
30791    19683    871    2016-02-17 00:48:09    2016-02-17 00:48:09
30792    18705    866    2016-03-21 08:14:29    2016-03-21 08:14:29
30793    10803    574    2016-03-19 20:00:06    2016-03-19 20:00:06
30794    18299    800    2016-04-09 16:09:08    2016-04-09 16:09:08
30795    11467    591    2016-02-20 21:14:01    2016-02-20 21:14:01
30796    10583    671    2016-02-03 04:36:37    2016-02-03 04:36:37
30797    12245    800    2016-04-19 05:24:17    2016-04-19 05:24:17
30798    13658    756    2016-04-03 02:59:38    2016-04-03 02:59:38
30799    14959    957    2016-04-14 03:56:48    2016-04-14 03:56:48
30800    11061    804    2016-04-20 18:25:05    2016-04-20 18:25:05
30801    14787    744    2016-03-21 22:32:50    2016-03-21 22:32:50
30802    16589    623    2016-03-20 04:40:02    2016-03-20 04:40:02
30803    12888    958    2016-04-15 17:35:58    2016-04-15 17:35:58
30804    10743    700    2016-04-17 20:32:05    2016-04-17 20:32:05
30805    13032    604    2016-02-08 08:34:14    2016-02-08 08:34:14
30806    14317    531    2016-03-06 17:16:55    2016-03-06 17:16:55
30807    12582    484    2016-03-17 08:45:17    2016-03-17 08:45:17
30808    18298    957    2016-03-31 00:10:31    2016-03-31 00:10:31
30809    11833    498    2016-03-09 21:11:34    2016-03-09 21:11:34
30810    12349    544    2016-02-25 19:04:56    2016-02-25 19:04:56
30811    17020    541    2016-03-30 05:59:57    2016-03-30 05:59:57
30812    12744    768    2016-04-07 04:07:16    2016-04-07 04:07:16
30813    19334    667    2016-02-03 10:48:11    2016-02-03 10:48:11
30814    19851    517    2016-02-14 12:27:14    2016-02-14 12:27:14
30815    17728    584    2016-02-22 17:10:38    2016-02-22 17:10:38
30816    10530    676    2016-02-02 07:21:41    2016-02-02 07:21:41
30817    12664    579    2016-04-02 02:50:35    2016-04-02 02:50:35
30818    17027    752    2016-03-08 01:10:18    2016-03-08 01:10:18
30819    19898    484    2016-03-06 07:09:20    2016-03-06 07:09:20
30820    17111    871    2016-02-09 13:38:47    2016-02-09 13:38:47
30821    18136    909    2016-03-08 03:58:45    2016-03-08 03:58:45
30822    16358    947    2016-02-14 06:01:16    2016-02-14 06:01:16
30823    15766    807    2016-03-02 14:41:24    2016-03-02 14:41:24
30824    11527    544    2016-04-05 19:36:20    2016-04-05 19:36:20
30825    19748    920    2016-04-02 16:56:18    2016-04-02 16:56:18
30826    17822    480    2016-03-30 22:50:30    2016-03-30 22:50:30
30827    12307    770    2016-04-10 02:07:12    2016-04-10 02:07:12
30828    14281    526    2016-02-27 12:11:37    2016-02-27 12:11:37
30829    12997    715    2016-03-05 13:07:06    2016-03-05 13:07:06
30830    16456    608    2016-02-23 22:57:55    2016-02-23 22:57:55
30831    17179    923    2016-02-09 00:13:11    2016-02-09 00:13:11
30832    14263    833    2016-02-08 12:22:27    2016-02-08 12:22:27
30833    19224    852    2016-02-03 10:48:05    2016-02-03 10:48:05
30834    12982    562    2016-03-19 13:03:54    2016-03-19 13:03:54
30835    18374    849    2016-03-07 02:00:48    2016-03-07 02:00:48
30836    13547    764    2016-03-01 20:09:10    2016-03-01 20:09:10
30837    18270    840    2016-01-23 10:16:30    2016-01-23 10:16:30
30838    17504    941    2016-03-29 09:43:08    2016-03-29 09:43:08
30839    12591    805    2016-03-06 18:29:29    2016-03-06 18:29:29
30840    10155    874    2016-02-13 23:22:27    2016-02-13 23:22:27
30841    14331    533    2016-03-10 14:23:07    2016-03-10 14:23:07
30842    10527    650    2016-02-13 05:58:46    2016-02-13 05:58:46
30843    16442    600    2016-02-27 21:54:37    2016-02-27 21:54:37
30844    10670    624    2016-02-19 02:30:04    2016-02-19 02:30:04
30845    14345    707    2016-03-13 07:09:46    2016-03-13 07:09:46
30846    13310    581    2016-03-24 00:25:53    2016-03-24 00:25:53
30847    18115    664    2016-03-02 18:20:43    2016-03-02 18:20:43
30848    14653    686    2016-01-26 21:33:44    2016-01-26 21:33:44
30849    12099    468    2016-04-05 11:52:38    2016-04-05 11:52:38
30850    17991    707    2016-02-25 01:39:17    2016-02-25 01:39:17
30851    13038    819    2016-02-28 23:07:08    2016-02-28 23:07:08
30852    10980    611    2016-04-05 21:06:35    2016-04-05 21:06:35
30853    19937    513    2016-02-14 00:08:54    2016-02-14 00:08:54
30854    19348    922    2016-01-27 13:14:47    2016-01-27 13:14:47
30855    18545    886    2016-03-27 02:55:15    2016-03-27 02:55:15
30856    13119    782    2016-02-25 09:37:01    2016-02-25 09:37:01
30857    19402    911    2016-02-22 10:57:48    2016-02-22 10:57:48
30858    18273    538    2016-02-25 03:17:18    2016-02-25 03:17:18
30859    18337    921    2016-03-30 22:21:03    2016-03-30 22:21:03
30860    16786    763    2016-03-29 14:55:26    2016-03-29 14:55:26
30861    19928    707    2016-02-27 05:23:21    2016-02-27 05:23:21
30862    14723    871    2016-03-05 16:14:13    2016-03-05 16:14:13
30863    17391    822    2016-02-25 10:41:24    2016-02-25 10:41:24
30864    19327    665    2016-03-04 23:44:54    2016-03-04 23:44:54
30865    19149    899    2016-02-03 17:58:54    2016-02-03 17:58:54
30866    15179    464    2016-04-19 02:48:49    2016-04-19 02:48:49
30867    16146    863    2016-04-17 10:40:54    2016-04-17 10:40:54
30868    14216    695    2016-03-26 07:46:30    2016-03-26 07:46:30
30869    19752    866    2016-01-23 09:57:21    2016-01-23 09:57:21
30870    17307    601    2016-04-03 22:00:30    2016-04-03 22:00:30
30871    12272    483    2016-03-01 09:34:06    2016-03-01 09:34:06
30872    17941    544    2016-04-14 18:35:59    2016-04-14 18:35:59
30873    18627    845    2016-01-26 01:12:44    2016-01-26 01:12:44
30874    10858    740    2016-03-13 23:48:07    2016-03-13 23:48:07
30875    18612    638    2016-04-11 18:02:45    2016-04-11 18:02:45
30876    18652    644    2016-04-19 13:22:03    2016-04-19 13:22:03
30877    18438    801    2016-01-22 10:56:25    2016-01-22 10:56:25
30878    11380    699    2016-02-25 23:24:35    2016-02-25 23:24:35
30879    13199    956    2016-02-01 08:37:40    2016-02-01 08:37:40
30880    13735    488    2016-03-06 22:14:14    2016-03-06 22:14:14
30881    11641    859    2016-02-02 22:47:04    2016-02-02 22:47:04
30882    15584    703    2016-01-30 16:01:10    2016-01-30 16:01:10
30883    15091    945    2016-03-16 22:28:06    2016-03-16 22:28:06
30884    19690    531    2016-03-30 18:50:08    2016-03-30 18:50:08
30885    11545    494    2016-03-26 19:28:38    2016-03-26 19:28:38
30886    13949    718    2016-03-06 01:35:05    2016-03-06 01:35:05
30887    11572    736    2016-03-27 21:17:17    2016-03-27 21:17:17
30888    14494    501    2016-02-02 00:55:11    2016-02-02 00:55:11
30889    17115    892    2016-04-02 07:58:27    2016-04-02 07:58:27
30890    18344    476    2016-03-09 00:18:25    2016-03-09 00:18:25
30891    16614    479    2016-03-23 22:24:20    2016-03-23 22:24:20
30892    17250    746    2016-04-14 15:23:46    2016-04-14 15:23:46
30893    17836    644    2016-02-10 22:07:23    2016-02-10 22:07:23
30894    15216    605    2016-03-20 21:03:29    2016-03-20 21:03:29
30895    14886    518    2016-01-30 12:42:45    2016-01-30 12:42:45
30896    19482    871    2016-01-29 12:03:56    2016-01-29 12:03:56
30897    15772    600    2016-03-03 12:55:50    2016-03-03 12:55:50
30898    19384    887    2016-04-03 16:38:14    2016-04-03 16:38:14
30899    16641    825    2016-02-03 02:04:11    2016-02-03 02:04:11
30900    12932    852    2016-03-29 01:34:46    2016-03-29 01:34:46
30901    19313    881    2016-04-02 10:39:02    2016-04-02 10:39:02
30902    16346    731    2016-02-12 08:08:28    2016-02-12 08:08:28
30903    15520    931    2016-02-22 00:16:42    2016-02-22 00:16:42
30904    13690    959    2016-03-07 09:31:00    2016-03-07 09:31:00
30905    17073    815    2016-02-26 11:25:39    2016-02-26 11:25:39
30906    16531    525    2016-01-22 16:14:14    2016-01-22 16:14:14
30907    18436    895    2016-04-18 03:40:36    2016-04-18 03:40:36
30908    15473    870    2016-01-30 03:05:13    2016-01-30 03:05:13
30909    16939    947    2016-03-15 18:36:02    2016-03-15 18:36:02
30910    17147    686    2016-04-13 08:34:49    2016-04-13 08:34:49
30911    15457    728    2016-01-29 02:44:38    2016-01-29 02:44:38
30912    15132    917    2016-04-19 19:04:16    2016-04-19 19:04:16
30913    14518    834    2016-03-06 20:36:18    2016-03-06 20:36:18
30914    17809    883    2016-04-08 14:46:19    2016-04-08 14:46:19
30915    16903    512    2016-02-04 18:37:38    2016-02-04 18:37:38
30916    18285    540    2016-03-28 19:12:12    2016-03-28 19:12:12
30917    14837    837    2016-03-19 18:03:28    2016-03-19 18:03:28
30918    18666    877    2016-03-04 07:37:45    2016-03-04 07:37:45
30919    17379    917    2016-03-26 05:18:58    2016-03-26 05:18:58
30920    16613    773    2016-02-25 15:41:28    2016-02-25 15:41:28
30921    13838    950    2016-02-03 20:50:07    2016-02-03 20:50:07
30922    15077    619    2016-04-10 12:45:18    2016-04-10 12:45:18
30923    13605    570    2016-02-11 00:27:30    2016-02-11 00:27:30
30924    12386    692    2016-03-17 04:05:24    2016-03-17 04:05:24
30925    13388    701    2016-03-30 13:08:36    2016-03-30 13:08:36
30926    12524    561    2016-02-03 01:41:51    2016-02-03 01:41:51
30927    19570    580    2016-02-03 11:52:27    2016-02-03 11:52:27
30928    14711    953    2016-04-02 21:13:19    2016-04-02 21:13:19
30929    19966    912    2016-03-08 01:59:58    2016-03-08 01:59:58
30930    14193    883    2016-02-03 06:17:09    2016-02-03 06:17:09
30931    18180    721    2016-04-09 05:58:26    2016-04-09 05:58:26
30932    15859    934    2016-02-27 23:23:39    2016-02-27 23:23:39
30933    15026    470    2016-03-06 22:20:57    2016-03-06 22:20:57
30934    11454    688    2016-02-01 01:21:17    2016-02-01 01:21:17
30935    14752    531    2016-02-22 09:55:24    2016-02-22 09:55:24
30936    12925    495    2016-04-17 02:28:41    2016-04-17 02:28:41
30937    13711    911    2016-02-12 04:23:09    2016-02-12 04:23:09
30938    19317    797    2016-02-28 21:38:09    2016-02-28 21:38:09
30939    16238    931    2016-03-11 01:28:14    2016-03-11 01:28:14
30940    14931    638    2016-03-05 08:56:20    2016-03-05 08:56:20
30941    11687    470    2016-04-02 11:46:31    2016-04-02 11:46:31
30942    13513    585    2016-04-07 15:54:05    2016-04-07 15:54:05
30943    13827    563    2016-03-18 19:14:50    2016-03-18 19:14:50
30944    18822    606    2016-02-14 05:58:00    2016-02-14 05:58:00
30945    10771    955    2016-03-08 20:37:28    2016-03-08 20:37:28
30946    11478    494    2016-02-15 02:41:40    2016-02-15 02:41:40
30947    18611    632    2016-03-01 11:19:26    2016-03-01 11:19:26
30948    13442    714    2016-03-29 00:51:21    2016-03-29 00:51:21
30949    17978    750    2016-02-29 23:37:23    2016-02-29 23:37:23
30950    12643    859    2016-02-16 17:11:30    2016-02-16 17:11:30
30951    12299    925    2016-02-23 15:32:14    2016-02-23 15:32:14
30952    13285    772    2016-03-14 05:16:25    2016-03-14 05:16:25
30953    19694    789    2016-03-15 10:04:11    2016-03-15 10:04:11
30954    14216    526    2016-03-03 23:06:51    2016-03-03 23:06:51
30955    17872    526    2016-03-16 16:10:54    2016-03-16 16:10:54
30956    18831    915    2016-03-01 07:17:05    2016-03-01 07:17:05
30957    14514    683    2016-02-25 18:46:00    2016-02-25 18:46:00
30958    17461    904    2016-04-20 15:29:25    2016-04-20 15:29:25
30959    17648    508    2016-03-28 05:20:03    2016-03-28 05:20:03
30960    14974    648    2016-02-18 02:38:37    2016-02-18 02:38:37
30961    19405    596    2016-03-30 04:45:28    2016-03-30 04:45:28
30962    13762    513    2016-04-12 09:51:19    2016-04-12 09:51:19
30963    14807    712    2016-01-24 17:16:13    2016-01-24 17:16:13
30964    18696    569    2016-04-19 13:45:00    2016-04-19 13:45:00
30965    14164    884    2016-02-13 08:50:46    2016-02-13 08:50:46
30966    18071    915    2016-03-19 22:29:09    2016-03-19 22:29:09
30967    13277    914    2016-02-29 21:15:35    2016-02-29 21:15:35
30968    15319    753    2016-02-10 07:14:40    2016-02-10 07:14:40
30969    17603    689    2016-03-17 13:28:44    2016-03-17 13:28:44
30970    19925    704    2016-03-11 20:44:38    2016-03-11 20:44:38
30971    16877    650    2016-02-15 02:04:47    2016-02-15 02:04:47
30972    14015    517    2016-02-02 10:47:59    2016-02-02 10:47:59
30973    11350    642    2016-01-30 02:54:09    2016-01-30 02:54:09
30974    12448    479    2016-04-10 20:23:55    2016-04-10 20:23:55
30975    19308    740    2016-03-31 09:02:32    2016-03-31 09:02:32
30976    11499    781    2016-03-29 13:09:55    2016-03-29 13:09:55
30977    12145    484    2016-03-27 18:55:26    2016-03-27 18:55:26
30978    14500    574    2016-01-23 06:45:57    2016-01-23 06:45:57
30979    10147    862    2016-04-16 11:55:58    2016-04-16 11:55:58
30980    13069    933    2016-02-29 20:25:39    2016-02-29 20:25:39
30981    16685    807    2016-02-03 11:54:23    2016-02-03 11:54:23
30982    10824    602    2016-03-17 19:48:29    2016-03-17 19:48:29
30983    14146    622    2016-04-03 13:22:46    2016-04-03 13:22:46
30984    18051    775    2016-04-11 03:00:38    2016-04-11 03:00:38
30985    13947    481    2016-04-19 14:15:28    2016-04-19 14:15:28
30986    16535    896    2016-02-25 11:10:32    2016-02-25 11:10:32
30987    12422    578    2016-04-05 10:19:02    2016-04-05 10:19:02
30988    10569    530    2016-02-04 13:46:21    2016-02-04 13:46:21
30989    15051    732    2016-04-08 02:36:36    2016-04-08 02:36:36
30990    14541    856    2016-03-12 21:54:28    2016-03-12 21:54:28
30991    17786    688    2016-04-13 17:35:19    2016-04-13 17:35:19
30992    11138    605    2016-02-06 23:56:16    2016-02-06 23:56:16
30993    18384    793    2016-04-16 04:27:33    2016-04-16 04:27:33
30994    12280    465    2016-02-28 05:53:50    2016-02-28 05:53:50
30995    14365    799    2016-02-15 18:30:46    2016-02-15 18:30:46
30996    11704    600    2016-01-23 12:14:35    2016-01-23 12:14:35
30997    16959    928    2016-04-20 13:59:59    2016-04-20 13:59:59
30998    16452    552    2016-04-10 21:11:31    2016-04-10 21:11:31
30999    15308    903    2016-03-03 22:29:43    2016-03-03 22:29:43
31000    16930    902    2016-02-10 05:46:08    2016-02-10 05:46:08
31001    11298    596    2016-02-15 23:30:43    2016-02-15 23:30:43
31002    11406    701    2016-01-28 08:47:12    2016-01-28 08:47:12
31003    19838    921    2016-03-08 13:27:12    2016-03-08 13:27:12
31004    16016    597    2016-01-30 02:33:47    2016-01-30 02:33:47
31005    13707    480    2016-03-07 10:47:36    2016-03-07 10:47:36
31006    10480    841    2016-04-16 10:07:51    2016-04-16 10:07:51
31007    18277    937    2016-03-02 20:56:30    2016-03-02 20:56:30
31008    10206    542    2016-04-20 21:39:52    2016-04-20 21:39:52
31009    15522    654    2016-04-01 16:45:37    2016-04-01 16:45:37
31010    14730    857    2016-03-04 07:28:15    2016-03-04 07:28:15
31011    18140    854    2016-03-23 18:05:56    2016-03-23 18:05:56
31012    13791    555    2016-03-20 05:15:47    2016-03-20 05:15:47
31013    19333    777    2016-02-17 07:41:37    2016-02-17 07:41:37
31014    12358    579    2016-04-12 20:23:57    2016-04-12 20:23:57
31015    10592    608    2016-04-12 16:16:45    2016-04-12 16:16:45
31016    17482    739    2016-03-12 05:40:42    2016-03-12 05:40:42
31017    19068    571    2016-02-20 12:02:37    2016-02-20 12:02:37
31018    16541    771    2016-03-23 09:06:07    2016-03-23 09:06:07
31019    12251    523    2016-03-02 14:59:19    2016-03-02 14:59:19
31020    14207    611    2016-02-01 02:27:36    2016-02-01 02:27:36
31021    12972    589    2016-02-06 17:33:03    2016-02-06 17:33:03
31022    10990    886    2016-02-13 19:35:00    2016-02-13 19:35:00
31023    16037    608    2016-02-27 07:33:55    2016-02-27 07:33:55
31024    14065    885    2016-02-11 02:02:21    2016-02-11 02:02:21
31025    15631    914    2016-04-10 18:59:28    2016-04-10 18:59:28
31026    11252    620    2016-04-17 06:41:23    2016-04-17 06:41:23
31027    10018    673    2016-04-18 11:59:50    2016-04-18 11:59:50
31028    10701    740    2016-04-04 09:07:51    2016-04-04 09:07:51
31029    18935    884    2016-03-30 12:03:44    2016-03-30 12:03:44
31030    17202    951    2016-03-11 21:04:30    2016-03-11 21:04:30
31031    12280    786    2016-02-11 23:19:34    2016-02-11 23:19:34
31032    18885    569    2016-03-06 05:35:02    2016-03-06 05:35:02
31033    18407    893    2016-03-05 19:33:12    2016-03-05 19:33:12
31034    12694    551    2016-01-23 16:09:24    2016-01-23 16:09:24
31035    13928    524    2016-02-08 16:36:14    2016-02-08 16:36:14
31036    12520    710    2016-03-18 19:25:48    2016-03-18 19:25:48
31037    11964    894    2016-03-13 07:53:49    2016-03-13 07:53:49
31038    12389    747    2016-03-29 22:18:31    2016-03-29 22:18:31
31039    15771    649    2016-04-16 12:30:09    2016-04-16 12:30:09
31040    15540    655    2016-02-04 02:00:39    2016-02-04 02:00:39
31041    14929    614    2016-03-18 06:41:29    2016-03-18 06:41:29
31042    13738    595    2016-03-28 10:31:37    2016-03-28 10:31:37
31043    10127    580    2016-02-23 07:22:42    2016-02-23 07:22:42
31044    18820    748    2016-04-18 10:17:09    2016-04-18 10:17:09
31045    13630    725    2016-03-17 21:36:05    2016-03-17 21:36:05
31046    19348    932    2016-02-02 19:31:17    2016-02-02 19:31:17
31047    13166    742    2016-02-07 06:20:19    2016-02-07 06:20:19
31048    10800    672    2016-03-24 13:47:56    2016-03-24 13:47:56
31049    14303    893    2016-04-04 23:06:41    2016-04-04 23:06:41
31050    14954    605    2016-03-27 22:02:48    2016-03-27 22:02:48
31051    18190    934    2016-03-25 16:29:48    2016-03-25 16:29:48
31052    16886    732    2016-03-06 09:22:05    2016-03-06 09:22:05
31053    17956    888    2016-02-21 09:42:31    2016-02-21 09:42:31
31054    15150    702    2016-02-06 13:26:26    2016-02-06 13:26:26
31055    10411    834    2016-02-17 00:59:24    2016-02-17 00:59:24
31056    19700    874    2016-03-09 06:23:11    2016-03-09 06:23:11
31057    16251    716    2016-01-24 12:48:58    2016-01-24 12:48:58
31058    15907    902    2016-03-24 03:55:02    2016-03-24 03:55:02
31059    13423    544    2016-03-25 19:42:23    2016-03-25 19:42:23
31060    12057    959    2016-03-26 15:16:01    2016-03-26 15:16:01
31061    13106    857    2016-02-09 09:25:54    2016-02-09 09:25:54
31062    10432    901    2016-03-15 05:18:56    2016-03-15 05:18:56
31063    16765    738    2016-02-14 11:48:50    2016-02-14 11:48:50
31064    11034    956    2016-03-08 05:19:54    2016-03-08 05:19:54
31065    12139    780    2016-03-30 19:28:14    2016-03-30 19:28:14
31066    12755    709    2016-03-17 22:10:30    2016-03-17 22:10:30
31067    19780    878    2016-02-08 03:07:59    2016-02-08 03:07:59
31068    14606    734    2016-04-03 18:24:43    2016-04-03 18:24:43
31069    12270    626    2016-02-07 01:55:11    2016-02-07 01:55:11
31070    10353    680    2016-04-15 00:48:01    2016-04-15 00:48:01
31071    12229    599    2016-03-10 16:30:46    2016-03-10 16:30:46
31072    12324    539    2016-03-11 02:03:52    2016-03-11 02:03:52
31073    18466    664    2016-04-07 06:08:15    2016-04-07 06:08:15
31074    12262    512    2016-02-02 21:16:02    2016-02-02 21:16:02
31075    14143    735    2016-02-18 22:31:46    2016-02-18 22:31:46
31076    19902    583    2016-02-12 14:51:16    2016-02-12 14:51:16
31077    19648    868    2016-02-19 08:54:26    2016-02-19 08:54:26
31078    11412    772    2016-03-02 00:12:24    2016-03-02 00:12:24
31079    12750    564    2016-01-29 02:36:35    2016-01-29 02:36:35
31080    10514    807    2016-02-08 19:44:56    2016-02-08 19:44:56
31081    17311    795    2016-01-25 01:58:50    2016-01-25 01:58:50
31082    11381    913    2016-02-29 18:40:00    2016-02-29 18:40:00
31083    18925    940    2016-03-29 01:44:00    2016-03-29 01:44:00
31084    11561    884    2016-03-08 06:51:42    2016-03-08 06:51:42
31085    18249    564    2016-01-23 01:25:00    2016-01-23 01:25:00
31086    12632    775    2016-03-01 02:34:15    2016-03-01 02:34:15
31087    11752    553    2016-02-23 01:15:28    2016-02-23 01:15:28
31088    16783    903    2016-03-21 19:48:31    2016-03-21 19:48:31
31089    18068    882    2016-02-16 16:30:58    2016-02-16 16:30:58
31090    19432    720    2016-03-30 09:57:15    2016-03-30 09:57:15
31091    16440    552    2016-02-23 09:21:29    2016-02-23 09:21:29
31092    17894    726    2016-04-15 03:37:32    2016-04-15 03:37:32
31093    11004    751    2016-02-10 11:01:41    2016-02-10 11:01:41
31094    18469    857    2016-04-06 19:44:39    2016-04-06 19:44:39
31095    19385    831    2016-04-17 00:41:10    2016-04-17 00:41:10
31096    13367    654    2016-04-05 06:24:28    2016-04-05 06:24:28
31097    13699    665    2016-02-25 19:15:17    2016-02-25 19:15:17
31098    11159    580    2016-01-23 18:15:06    2016-01-23 18:15:06
31099    19396    927    2016-03-17 20:33:49    2016-03-17 20:33:49
31100    15074    606    2016-01-31 11:56:38    2016-01-31 11:56:38
31101    19313    463    2016-03-06 07:38:14    2016-03-06 07:38:14
31102    19979    518    2016-02-16 07:50:44    2016-02-16 07:50:44
31103    11061    834    2016-04-14 08:06:32    2016-04-14 08:06:32
31104    14750    511    2016-02-19 20:19:30    2016-02-19 20:19:30
31105    16469    752    2016-04-15 00:42:43    2016-04-15 00:42:43
31106    15791    838    2016-04-04 05:30:09    2016-04-04 05:30:09
31107    15554    728    2016-03-25 20:06:17    2016-03-25 20:06:17
31108    16884    932    2016-04-08 07:35:48    2016-04-08 07:35:48
31109    19748    660    2016-03-27 22:37:32    2016-03-27 22:37:32
31110    11424    707    2016-04-12 09:20:08    2016-04-12 09:20:08
31111    13681    645    2016-03-02 05:08:11    2016-03-02 05:08:11
31112    13711    488    2016-03-04 10:13:05    2016-03-04 10:13:05
31113    19029    793    2016-02-21 11:28:55    2016-02-21 11:28:55
31114    10845    465    2016-03-23 03:40:24    2016-03-23 03:40:24
31115    13009    657    2016-03-23 05:13:30    2016-03-23 05:13:30
31116    18037    684    2016-02-11 20:13:39    2016-02-11 20:13:39
31117    13380    582    2016-03-03 18:14:23    2016-03-03 18:14:23
31118    13350    881    2016-02-17 12:37:21    2016-02-17 12:37:21
31119    12811    570    2016-04-05 15:49:09    2016-04-05 15:49:09
31120    12224    908    2016-02-07 04:56:35    2016-02-07 04:56:35
31121    10433    934    2016-04-03 20:56:02    2016-04-03 20:56:02
31122    11394    837    2016-02-16 21:23:00    2016-02-16 21:23:00
31123    11849    930    2016-04-08 04:11:36    2016-04-08 04:11:36
31124    17722    934    2016-02-05 03:08:57    2016-02-05 03:08:57
31125    11738    753    2016-03-14 20:13:19    2016-03-14 20:13:19
31126    13746    560    2016-04-01 05:17:18    2016-04-01 05:17:18
31127    15194    502    2016-02-24 03:24:09    2016-02-24 03:24:09
31128    19206    653    2016-03-31 01:57:43    2016-03-31 01:57:43
31129    15951    929    2016-01-25 18:25:20    2016-01-25 18:25:20
31130    15289    870    2016-01-31 01:24:28    2016-01-31 01:24:28
31131    19826    484    2016-01-26 23:30:31    2016-01-26 23:30:31
31132    15734    906    2016-01-25 19:28:08    2016-01-25 19:28:08
31133    11316    477    2016-03-25 17:47:13    2016-03-25 17:47:13
31134    14372    503    2016-03-05 17:58:59    2016-03-05 17:58:59
31135    16031    511    2016-04-01 05:03:16    2016-04-01 05:03:16
31136    15251    767    2016-01-25 13:11:29    2016-01-25 13:11:29
31137    15604    914    2016-03-03 19:34:59    2016-03-03 19:34:59
31138    15389    669    2016-04-07 11:57:44    2016-04-07 11:57:44
31139    15995    746    2016-03-29 13:19:58    2016-03-29 13:19:58
31140    11426    945    2016-04-11 18:55:46    2016-04-11 18:55:46
31141    18996    732    2016-03-11 11:21:22    2016-03-11 11:21:22
31142    10332    946    2016-04-10 05:53:14    2016-04-10 05:53:14
31143    13219    730    2016-03-05 23:57:09    2016-03-05 23:57:09
31144    10420    700    2016-04-11 11:50:22    2016-04-11 11:50:22
31145    16653    818    2016-02-11 12:11:06    2016-02-11 12:11:06
31146    17885    582    2016-03-15 13:41:29    2016-03-15 13:41:29
31147    10592    502    2016-03-12 12:28:34    2016-03-12 12:28:34
31148    12867    736    2016-03-06 14:07:21    2016-03-06 14:07:21
31149    19207    777    2016-03-07 11:38:25    2016-03-07 11:38:25
31150    19251    487    2016-04-18 21:07:54    2016-04-18 21:07:54
31151    15028    724    2016-04-05 00:43:18    2016-04-05 00:43:18
31152    13331    832    2016-02-05 07:26:52    2016-02-05 07:26:52
31153    16553    481    2016-03-29 12:47:50    2016-03-29 12:47:50
31154    11613    522    2016-03-08 12:24:14    2016-03-08 12:24:14
31155    13432    525    2016-04-18 19:59:50    2016-04-18 19:59:50
31156    16420    746    2016-04-19 00:32:06    2016-04-19 00:32:06
31157    17338    868    2016-04-10 20:12:56    2016-04-10 20:12:56
31158    13656    697    2016-02-10 12:57:46    2016-02-10 12:57:46
31159    18928    926    2016-03-13 12:00:08    2016-03-13 12:00:08
31160    17968    843    2016-02-28 03:46:38    2016-02-28 03:46:38
31161    18976    861    2016-01-31 22:34:31    2016-01-31 22:34:31
31162    18178    783    2016-03-17 07:19:33    2016-03-17 07:19:33
31163    19053    480    2016-03-29 06:14:28    2016-03-29 06:14:28
31164    13676    890    2016-03-25 05:26:16    2016-03-25 05:26:16
31165    14518    670    2016-02-25 09:35:46    2016-02-25 09:35:46
31166    18997    758    2016-04-06 02:49:20    2016-04-06 02:49:20
31167    19718    881    2016-04-13 13:14:18    2016-04-13 13:14:18
31168    17113    902    2016-03-05 19:15:06    2016-03-05 19:15:06
31169    19271    684    2016-03-11 22:01:26    2016-03-11 22:01:26
31170    12400    568    2016-04-06 08:41:41    2016-04-06 08:41:41
31171    15773    780    2016-02-24 19:15:29    2016-02-24 19:15:29
31172    13924    750    2016-02-17 12:21:27    2016-02-17 12:21:27
31173    10659    960    2016-02-12 04:54:56    2016-02-12 04:54:56
31174    15693    889    2016-03-18 23:51:23    2016-03-18 23:51:23
31175    12581    842    2016-03-01 15:29:07    2016-03-01 15:29:07
31176    15418    725    2016-04-03 21:29:57    2016-04-03 21:29:57
31177    10205    486    2016-01-31 06:08:46    2016-01-31 06:08:46
31178    15714    783    2016-02-22 08:28:58    2016-02-22 08:28:58
31179    12268    956    2016-02-23 13:59:04    2016-02-23 13:59:04
31180    18367    793    2016-02-02 16:50:00    2016-02-02 16:50:00
31181    13911    952    2016-02-09 18:50:54    2016-02-09 18:50:54
31182    14290    550    2016-03-02 16:36:49    2016-03-02 16:36:49
31183    11517    864    2016-01-28 20:35:17    2016-01-28 20:35:17
31184    11123    924    2016-03-10 20:32:34    2016-03-10 20:32:34
31185    16854    643    2016-04-03 03:29:54    2016-04-03 03:29:54
31186    13769    617    2016-02-02 03:14:59    2016-02-02 03:14:59
31187    15284    764    2016-04-12 08:09:00    2016-04-12 08:09:00
31188    15428    666    2016-04-08 18:05:15    2016-04-08 18:05:15
31189    17358    856    2016-03-23 14:22:51    2016-03-23 14:22:51
31190    12352    824    2016-03-25 18:45:47    2016-03-25 18:45:47
31191    10074    553    2016-02-03 10:58:43    2016-02-03 10:58:43
31192    16014    725    2016-02-18 19:13:55    2016-02-18 19:13:55
31193    12065    547    2016-01-24 21:06:01    2016-01-24 21:06:01
31194    15403    659    2016-03-03 21:20:00    2016-03-03 21:20:00
31195    19111    872    2016-04-16 13:39:45    2016-04-16 13:39:45
31196    17843    574    2016-01-22 02:53:20    2016-01-22 02:53:20
31197    13951    621    2016-02-12 02:14:25    2016-02-12 02:14:25
31198    13669    907    2016-02-20 15:15:09    2016-02-20 15:15:09
31199    18927    949    2016-04-12 17:03:25    2016-04-12 17:03:25
31200    16786    940    2016-03-25 21:08:29    2016-03-25 21:08:29
31201    16680    484    2016-03-10 16:17:43    2016-03-10 16:17:43
31202    13474    769    2016-02-29 02:14:58    2016-02-29 02:14:58
31203    15421    809    2016-04-04 08:41:52    2016-04-04 08:41:52
31204    13219    679    2016-02-24 08:52:27    2016-02-24 08:52:27
31205    11284    772    2016-02-22 04:35:38    2016-02-22 04:35:38
31206    12231    510    2016-02-01 11:05:38    2016-02-01 11:05:38
31207    11031    464    2016-02-26 03:33:51    2016-02-26 03:33:51
31208    15364    727    2016-04-16 14:53:40    2016-04-16 14:53:40
31209    11559    650    2016-02-28 23:54:59    2016-02-28 23:54:59
31210    13923    657    2016-02-04 19:02:42    2016-02-04 19:02:42
31211    13134    680    2016-01-29 09:59:25    2016-01-29 09:59:25
31212    18147    631    2016-04-16 20:32:21    2016-04-16 20:32:21
31213    14059    721    2016-02-01 06:07:09    2016-02-01 06:07:09
31214    10008    556    2016-02-10 12:55:46    2016-02-10 12:55:46
31215    11775    502    2016-02-04 00:26:23    2016-02-04 00:26:23
31216    10144    495    2016-04-09 23:54:05    2016-04-09 23:54:05
31217    11188    554    2016-03-07 09:13:18    2016-03-07 09:13:18
31218    10468    921    2016-02-04 17:53:38    2016-02-04 17:53:38
31219    13314    822    2016-01-29 00:48:03    2016-01-29 00:48:03
31220    12520    602    2016-02-23 00:18:33    2016-02-23 00:18:33
31221    15753    656    2016-04-06 22:11:34    2016-04-06 22:11:34
31222    14485    596    2016-04-09 06:39:55    2016-04-09 06:39:55
31223    11382    959    2016-01-29 20:12:16    2016-01-29 20:12:16
31224    16927    472    2016-03-20 02:29:51    2016-03-20 02:29:51
31225    17524    775    2016-04-01 12:17:55    2016-04-01 12:17:55
31226    19317    832    2016-02-15 12:20:40    2016-02-15 12:20:40
31227    19781    855    2016-03-25 19:07:22    2016-03-25 19:07:22
31228    11018    785    2016-02-25 05:34:57    2016-02-25 05:34:57
31229    12830    827    2016-02-09 05:04:33    2016-02-09 05:04:33
31230    11844    691    2016-02-29 18:47:08    2016-02-29 18:47:08
31231    11232    945    2016-01-29 14:48:01    2016-01-29 14:48:01
31232    11008    888    2016-03-22 20:56:00    2016-03-22 20:56:00
31233    14810    519    2016-03-31 11:32:57    2016-03-31 11:32:57
31234    10419    682    2016-03-27 22:51:30    2016-03-27 22:51:30
31235    10610    608    2016-03-28 05:49:41    2016-03-28 05:49:41
31236    12317    776    2016-03-01 01:10:30    2016-03-01 01:10:30
31237    17910    545    2016-02-26 22:04:21    2016-02-26 22:04:21
31238    15620    768    2016-03-20 03:14:22    2016-03-20 03:14:22
31239    17753    956    2016-03-05 18:42:19    2016-03-05 18:42:19
31240    12549    578    2016-02-17 02:09:15    2016-02-17 02:09:15
31241    10491    705    2016-02-21 10:20:24    2016-02-21 10:20:24
31242    11710    884    2016-03-01 09:41:50    2016-03-01 09:41:50
31243    19400    521    2016-03-18 06:28:43    2016-03-18 06:28:43
31244    13530    520    2016-03-11 07:59:15    2016-03-11 07:59:15
31245    18854    727    2016-02-18 17:03:49    2016-02-18 17:03:49
31246    13596    554    2016-03-13 13:17:56    2016-03-13 13:17:56
31247    12530    864    2016-02-12 04:02:47    2016-02-12 04:02:47
31248    18145    881    2016-03-20 23:30:13    2016-03-20 23:30:13
31249    17647    905    2016-04-16 09:45:04    2016-04-16 09:45:04
31250    19985    692    2016-02-26 22:06:03    2016-02-26 22:06:03
31251    14991    858    2016-03-23 07:56:19    2016-03-23 07:56:19
31252    15179    832    2016-04-12 06:31:40    2016-04-12 06:31:40
31253    10884    830    2016-03-16 19:29:39    2016-03-16 19:29:39
31254    16429    915    2016-04-12 18:27:17    2016-04-12 18:27:17
31255    18040    552    2016-02-20 11:40:35    2016-02-20 11:40:35
31256    13813    474    2016-03-13 22:02:08    2016-03-13 22:02:08
31257    10528    888    2016-03-13 23:37:31    2016-03-13 23:37:31
31258    16801    702    2016-01-26 06:30:55    2016-01-26 06:30:55
31259    13499    873    2016-03-17 10:36:37    2016-03-17 10:36:37
31260    19410    844    2016-04-09 02:57:37    2016-04-09 02:57:37
31261    16422    618    2016-02-21 23:18:20    2016-02-21 23:18:20
31262    13756    606    2016-03-03 21:33:28    2016-03-03 21:33:28
31263    19478    882    2016-02-25 23:17:49    2016-02-25 23:17:49
31264    10062    688    2016-02-02 20:07:30    2016-02-02 20:07:30
31265    15121    872    2016-02-02 05:06:20    2016-02-02 05:06:20
31266    16660    707    2016-04-02 15:01:52    2016-04-02 15:01:52
31267    14160    743    2016-02-06 13:56:16    2016-02-06 13:56:16
31268    12844    901    2016-02-16 22:31:32    2016-02-16 22:31:32
31269    13300    540    2016-03-30 02:46:04    2016-03-30 02:46:04
31270    10906    592    2016-02-22 18:09:53    2016-02-22 18:09:53
31271    17584    569    2016-01-30 18:36:02    2016-01-30 18:36:02
31272    10765    777    2016-04-04 23:13:53    2016-04-04 23:13:53
31273    13378    837    2016-03-31 06:26:10    2016-03-31 06:26:10
31274    12952    809    2016-02-01 19:05:27    2016-02-01 19:05:27
31275    19053    575    2016-02-20 05:00:25    2016-02-20 05:00:25
31276    15084    735    2016-01-24 07:28:36    2016-01-24 07:28:36
31277    13283    621    2016-04-01 19:44:17    2016-04-01 19:44:17
31278    14985    465    2016-04-14 13:19:29    2016-04-14 13:19:29
31279    11147    717    2016-02-12 11:41:16    2016-02-12 11:41:16
31280    19378    510    2016-01-25 08:14:12    2016-01-25 08:14:12
31281    14000    755    2016-01-30 15:19:35    2016-01-30 15:19:35
31282    16330    581    2016-04-12 05:47:26    2016-04-12 05:47:26
31283    11462    852    2016-03-12 16:46:07    2016-03-12 16:46:07
31284    15636    641    2016-03-20 21:07:33    2016-03-20 21:07:33
31285    13754    623    2016-02-02 07:02:27    2016-02-02 07:02:27
31286    12559    715    2016-02-06 22:49:15    2016-02-06 22:49:15
31287    15061    709    2016-02-23 12:22:02    2016-02-23 12:22:02
31288    14972    759    2016-02-14 22:23:50    2016-02-14 22:23:50
31289    13471    829    2016-04-14 17:17:00    2016-04-14 17:17:00
31290    17652    782    2016-04-07 12:50:23    2016-04-07 12:50:23
31291    18288    848    2016-01-23 22:22:50    2016-01-23 22:22:50
31292    12117    535    2016-03-12 19:50:18    2016-03-12 19:50:18
31293    11527    708    2016-03-27 03:58:26    2016-03-27 03:58:26
31294    18562    838    2016-02-21 01:30:46    2016-02-21 01:30:46
31295    15191    489    2016-02-02 15:34:12    2016-02-02 15:34:12
31296    12563    549    2016-02-04 03:20:03    2016-02-04 03:20:03
31297    18325    539    2016-02-10 08:16:16    2016-02-10 08:16:16
31298    15654    903    2016-04-05 03:16:14    2016-04-05 03:16:14
31299    17807    872    2016-02-19 08:05:15    2016-02-19 08:05:15
31300    11078    889    2016-01-23 07:03:03    2016-01-23 07:03:03
31301    12723    730    2016-03-08 20:40:18    2016-03-08 20:40:18
31302    13414    596    2016-02-05 23:44:30    2016-02-05 23:44:30
31303    12903    590    2016-02-14 20:23:12    2016-02-14 20:23:12
31304    19034    959    2016-03-15 17:27:31    2016-03-15 17:27:31
31305    17038    549    2016-02-27 08:37:48    2016-02-27 08:37:48
31306    14329    824    2016-03-03 19:28:24    2016-03-03 19:28:24
31307    10757    565    2016-04-09 06:39:57    2016-04-09 06:39:57
31308    10134    540    2016-02-06 19:20:59    2016-02-06 19:20:59
31309    14796    680    2016-02-02 20:36:57    2016-02-02 20:36:57
31310    16566    948    2016-03-22 11:12:07    2016-03-22 11:12:07
31311    16793    591    2016-04-02 19:21:27    2016-04-02 19:21:27
31312    11634    733    2016-03-05 01:24:31    2016-03-05 01:24:31
31313    14339    743    2016-02-11 16:04:04    2016-02-11 16:04:04
31314    12692    711    2016-02-13 05:45:10    2016-02-13 05:45:10
31315    16123    668    2016-02-03 14:44:02    2016-02-03 14:44:02
31316    11974    874    2016-02-23 08:28:46    2016-02-23 08:28:46
31317    15315    789    2016-02-02 15:05:36    2016-02-02 15:05:36
31318    11820    779    2016-01-25 07:37:35    2016-01-25 07:37:35
31319    18975    490    2016-03-28 14:14:58    2016-03-28 14:14:58
31320    12495    478    2016-02-20 11:31:52    2016-02-20 11:31:52
31321    19873    527    2016-02-28 14:23:45    2016-02-28 14:23:45
31322    12450    770    2016-02-01 07:52:27    2016-02-01 07:52:27
31323    11163    775    2016-04-05 18:17:06    2016-04-05 18:17:06
31324    19298    834    2016-01-27 02:18:46    2016-01-27 02:18:46
31325    10514    819    2016-02-29 07:30:52    2016-02-29 07:30:52
31326    16682    746    2016-02-07 01:16:53    2016-02-07 01:16:53
31327    15395    481    2016-03-20 16:56:28    2016-03-20 16:56:28
31328    11160    602    2016-01-27 15:04:34    2016-01-27 15:04:34
31329    14234    746    2016-04-02 04:41:47    2016-04-02 04:41:47
31330    19149    479    2016-02-21 05:09:18    2016-02-21 05:09:18
31331    14168    917    2016-02-27 20:10:28    2016-02-27 20:10:28
31332    14796    600    2016-03-03 10:11:54    2016-03-03 10:11:54
31333    18343    545    2016-03-06 00:21:23    2016-03-06 00:21:23
31334    10071    663    2016-04-07 08:46:37    2016-04-07 08:46:37
31335    16960    688    2016-03-25 17:13:43    2016-03-25 17:13:43
31336    15290    555    2016-04-06 15:40:50    2016-04-06 15:40:50
31337    15755    533    2016-03-22 06:49:05    2016-03-22 06:49:05
31338    14764    789    2016-04-16 11:08:31    2016-04-16 11:08:31
31339    13839    665    2016-04-19 15:03:13    2016-04-19 15:03:13
31340    10122    778    2016-01-25 03:45:24    2016-01-25 03:45:24
31341    12733    805    2016-03-06 17:35:33    2016-03-06 17:35:33
31342    11398    896    2016-03-09 12:54:54    2016-03-09 12:54:54
31343    12942    704    2016-02-14 07:55:05    2016-02-14 07:55:05
31344    19224    650    2016-03-07 13:57:33    2016-03-07 13:57:33
31345    13188    626    2016-02-14 04:55:18    2016-02-14 04:55:18
31346    12985    891    2016-03-28 07:05:57    2016-03-28 07:05:57
31347    15523    808    2016-01-22 14:09:20    2016-01-22 14:09:20
31348    15727    693    2016-02-16 22:19:25    2016-02-16 22:19:25
31349    16964    935    2016-04-15 16:07:28    2016-04-15 16:07:28
31350    15486    570    2016-02-21 05:11:46    2016-02-21 05:11:46
31351    12040    798    2016-02-29 11:43:06    2016-02-29 11:43:06
31352    16116    912    2016-01-27 13:20:58    2016-01-27 13:20:58
31353    14087    856    2016-02-03 07:30:37    2016-02-03 07:30:37
31354    19291    949    2016-02-07 21:03:46    2016-02-07 21:03:46
31355    11969    480    2016-04-07 20:52:33    2016-04-07 20:52:33
31356    18011    606    2016-04-09 18:29:40    2016-04-09 18:29:40
31357    12851    633    2016-02-13 05:59:11    2016-02-13 05:59:11
31358    13660    536    2016-03-16 06:37:24    2016-03-16 06:37:24
31359    15181    508    2016-04-04 12:11:23    2016-04-04 12:11:23
31360    10518    509    2016-01-27 06:18:28    2016-01-27 06:18:28
31361    13029    788    2016-02-18 00:30:39    2016-02-18 00:30:39
31362    14538    794    2016-01-30 12:16:54    2016-01-30 12:16:54
31363    18631    935    2016-03-09 01:31:17    2016-03-09 01:31:17
31364    14464    661    2016-03-16 15:50:55    2016-03-16 15:50:55
31365    13084    730    2016-02-07 03:51:49    2016-02-07 03:51:49
31366    14722    867    2016-03-21 06:02:27    2016-03-21 06:02:27
31367    19579    549    2016-02-11 04:32:16    2016-02-11 04:32:16
31368    14757    470    2016-03-22 00:17:45    2016-03-22 00:17:45
31369    17610    742    2016-02-23 07:02:51    2016-02-23 07:02:51
31370    16833    947    2016-01-27 07:22:25    2016-01-27 07:22:25
31371    16820    750    2016-02-24 22:36:38    2016-02-24 22:36:38
31372    10701    793    2016-04-11 16:36:49    2016-04-11 16:36:49
31373    19828    606    2016-03-25 20:15:03    2016-03-25 20:15:03
31374    11532    513    2016-04-20 12:04:24    2016-04-20 12:04:24
31375    10435    477    2016-04-11 02:00:18    2016-04-11 02:00:18
31376    14841    829    2016-02-15 09:58:59    2016-02-15 09:58:59
31377    16030    946    2016-03-11 03:57:57    2016-03-11 03:57:57
31378    19360    517    2016-02-22 16:29:37    2016-02-22 16:29:37
31379    19303    848    2016-03-28 02:07:56    2016-03-28 02:07:56
31380    15169    779    2016-02-11 10:15:10    2016-02-11 10:15:10
31381    10476    512    2016-02-06 00:35:42    2016-02-06 00:35:42
31382    13492    699    2016-04-10 20:16:08    2016-04-10 20:16:08
31383    13097    736    2016-03-18 12:32:28    2016-03-18 12:32:28
31384    17571    612    2016-02-04 04:59:49    2016-02-04 04:59:49
31385    12930    735    2016-03-21 09:43:30    2016-03-21 09:43:30
31386    13152    838    2016-03-05 19:27:13    2016-03-05 19:27:13
31387    15717    656    2016-03-07 02:45:28    2016-03-07 02:45:28
31388    16727    912    2016-04-07 12:39:16    2016-04-07 12:39:16
31389    19254    603    2016-04-02 02:49:07    2016-04-02 02:49:07
31390    17435    556    2016-03-03 05:05:33    2016-03-03 05:05:33
31391    15583    675    2016-02-08 16:34:48    2016-02-08 16:34:48
31392    15846    733    2016-02-10 21:14:50    2016-02-10 21:14:50
31393    13626    859    2016-04-06 13:57:20    2016-04-06 13:57:20
31394    11900    573    2016-02-28 03:34:48    2016-02-28 03:34:48
31395    18766    490    2016-01-26 19:44:10    2016-01-26 19:44:10
31396    15246    899    2016-03-17 03:01:43    2016-03-17 03:01:43
31397    15742    935    2016-04-10 07:00:13    2016-04-10 07:00:13
31398    17443    955    2016-04-08 09:11:02    2016-04-08 09:11:02
31399    11378    797    2016-04-01 11:42:46    2016-04-01 11:42:46
31400    10619    899    2016-03-30 12:53:00    2016-03-30 12:53:00
31401    10428    742    2016-04-17 03:55:12    2016-04-17 03:55:12
31402    18037    737    2016-02-08 20:47:06    2016-02-08 20:47:06
31403    12095    769    2016-04-08 00:15:14    2016-04-08 00:15:14
31404    13266    824    2016-03-11 14:44:15    2016-03-11 14:44:15
31405    12981    480    2016-04-15 04:42:08    2016-04-15 04:42:08
31406    19486    552    2016-04-18 19:30:37    2016-04-18 19:30:37
31407    19381    836    2016-03-29 07:05:54    2016-03-29 07:05:54
31408    17288    762    2016-02-06 22:46:03    2016-02-06 22:46:03
31409    17291    851    2016-03-02 06:32:00    2016-03-02 06:32:00
31410    12283    803    2016-02-20 12:29:40    2016-02-20 12:29:40
31411    16207    880    2016-03-16 05:35:04    2016-03-16 05:35:04
31412    16222    609    2016-02-12 06:37:26    2016-02-12 06:37:26
31413    12642    915    2016-03-20 06:49:26    2016-03-20 06:49:26
31414    13119    786    2016-02-20 04:58:12    2016-02-20 04:58:12
31415    13181    492    2016-03-04 03:08:20    2016-03-04 03:08:20
31416    12433    677    2016-02-08 16:46:02    2016-02-08 16:46:02
31417    16156    669    2016-02-22 22:26:20    2016-02-22 22:26:20
31418    17570    793    2016-03-18 12:52:54    2016-03-18 12:52:54
31419    17451    634    2016-01-28 10:37:28    2016-01-28 10:37:28
31420    10847    858    2016-02-19 16:15:14    2016-02-19 16:15:14
31421    16615    747    2016-01-26 17:16:02    2016-01-26 17:16:02
31422    15210    559    2016-02-16 20:22:19    2016-02-16 20:22:19
31423    16048    508    2016-01-30 09:10:45    2016-01-30 09:10:45
31424    16092    589    2016-02-14 19:00:14    2016-02-14 19:00:14
31425    15123    638    2016-02-29 04:58:52    2016-02-29 04:58:52
31426    10217    544    2016-03-27 14:35:53    2016-03-27 14:35:53
31427    16124    727    2016-03-19 13:06:27    2016-03-19 13:06:27
31428    14647    546    2016-01-23 15:57:14    2016-01-23 15:57:14
31429    17283    621    2016-04-09 11:22:46    2016-04-09 11:22:46
31430    14279    635    2016-01-29 00:23:51    2016-01-29 00:23:51
31431    17794    741    2016-01-25 19:37:07    2016-01-25 19:37:07
31432    15075    814    2016-04-10 06:45:35    2016-04-10 06:45:35
31433    11284    511    2016-04-13 19:16:48    2016-04-13 19:16:48
31434    10906    856    2016-03-19 00:04:48    2016-03-19 00:04:48
31435    14317    812    2016-03-28 07:19:02    2016-03-28 07:19:02
31436    10422    667    2016-03-18 03:53:54    2016-03-18 03:53:54
31437    17202    900    2016-02-19 08:56:53    2016-02-19 08:56:53
31438    14638    658    2016-02-17 21:15:04    2016-02-17 21:15:04
31439    16828    555    2016-03-09 03:55:08    2016-03-09 03:55:08
31440    15680    662    2016-03-08 11:45:38    2016-03-08 11:45:38
31441    12799    508    2016-01-21 23:43:10    2016-01-21 23:43:10
31442    11288    525    2016-02-04 19:35:38    2016-02-04 19:35:38
31443    19330    693    2016-04-11 08:42:15    2016-04-11 08:42:15
31444    19245    490    2016-04-01 15:04:57    2016-04-01 15:04:57
31445    12669    948    2016-02-13 13:02:29    2016-02-13 13:02:29
31446    13449    918    2016-04-04 14:36:17    2016-04-04 14:36:17
31447    13922    643    2016-04-05 04:30:47    2016-04-05 04:30:47
31448    12854    647    2016-04-08 15:51:41    2016-04-08 15:51:41
31449    11686    917    2016-02-05 07:44:25    2016-02-05 07:44:25
31450    13323    671    2016-02-12 17:33:07    2016-02-12 17:33:07
31451    18805    503    2016-04-19 04:10:52    2016-04-19 04:10:52
31452    10743    896    2016-04-02 20:20:45    2016-04-02 20:20:45
31453    17154    649    2016-02-11 21:32:50    2016-02-11 21:32:50
31454    15801    834    2016-04-16 20:19:06    2016-04-16 20:19:06
31455    17560    872    2016-04-09 13:02:27    2016-04-09 13:02:27
31456    15028    932    2016-03-27 20:39:44    2016-03-27 20:39:44
31457    13336    548    2016-04-03 16:29:42    2016-04-03 16:29:42
31458    13182    948    2016-04-06 22:17:23    2016-04-06 22:17:23
31459    16614    833    2016-04-05 17:46:09    2016-04-05 17:46:09
31460    18194    574    2016-03-23 04:06:07    2016-03-23 04:06:07
31461    11881    719    2016-04-06 18:59:06    2016-04-06 18:59:06
31462    11441    865    2016-04-11 11:26:17    2016-04-11 11:26:17
31463    17967    701    2016-02-14 10:32:29    2016-02-14 10:32:29
31464    17134    582    2016-02-12 10:21:49    2016-02-12 10:21:49
31465    11966    463    2016-02-07 04:22:18    2016-02-07 04:22:18
31466    16102    554    2016-03-21 11:02:29    2016-03-21 11:02:29
31467    17131    548    2016-02-24 09:31:45    2016-02-24 09:31:45
31468    17860    784    2016-04-18 16:09:42    2016-04-18 16:09:42
31469    15432    762    2016-01-22 23:47:21    2016-01-22 23:47:21
31470    16161    622    2016-02-15 08:00:45    2016-02-15 08:00:45
31471    17813    740    2016-03-25 22:59:18    2016-03-25 22:59:18
31472    10539    931    2016-03-18 05:51:13    2016-03-18 05:51:13
31473    15834    713    2016-03-23 04:24:37    2016-03-23 04:24:37
31474    17135    872    2016-03-04 00:02:28    2016-03-04 00:02:28
31475    16259    882    2016-03-13 09:36:40    2016-03-13 09:36:40
31476    12386    511    2016-01-28 12:13:32    2016-01-28 12:13:32
31477    14019    820    2016-02-16 06:36:18    2016-02-16 06:36:18
31478    17536    671    2016-02-02 08:54:47    2016-02-02 08:54:47
31479    13732    498    2016-02-21 21:53:34    2016-02-21 21:53:34
31480    18772    581    2016-02-10 04:26:02    2016-02-10 04:26:02
31481    13337    860    2016-04-07 04:53:20    2016-04-07 04:53:20
31482    13236    485    2016-02-04 07:18:55    2016-02-04 07:18:55
31483    13028    485    2016-02-23 18:47:31    2016-02-23 18:47:31
31484    15175    884    2016-02-23 10:21:22    2016-02-23 10:21:22
31485    10515    845    2016-02-19 13:49:20    2016-02-19 13:49:20
31486    17035    961    2016-02-01 23:33:24    2016-02-01 23:33:24
31487    13148    576    2016-02-15 01:19:55    2016-02-15 01:19:55
31488    11220    503    2016-02-29 21:44:40    2016-02-29 21:44:40
31489    12027    796    2016-02-04 04:20:51    2016-02-04 04:20:51
31490    15885    672    2016-02-16 06:21:07    2016-02-16 06:21:07
31491    13045    770    2016-02-13 05:08:53    2016-02-13 05:08:53
31492    11028    730    2016-02-20 00:44:39    2016-02-20 00:44:39
31493    11038    840    2016-03-03 20:04:26    2016-03-03 20:04:26
31494    14271    902    2016-02-15 13:58:16    2016-02-15 13:58:16
31495    18031    564    2016-01-23 18:55:44    2016-01-23 18:55:44
31496    12760    931    2016-02-03 08:40:54    2016-02-03 08:40:54
31497    11663    667    2016-01-26 07:57:21    2016-01-26 07:57:21
31498    13658    530    2016-01-22 01:49:04    2016-01-22 01:49:04
31499    10715    897    2016-04-04 10:44:25    2016-04-04 10:44:25
31500    18913    642    2016-03-09 09:12:23    2016-03-09 09:12:23
31501    13296    636    2016-01-24 06:35:43    2016-01-24 06:35:43
31502    19759    517    2016-03-10 20:34:50    2016-03-10 20:34:50
31503    17562    561    2016-01-23 13:55:07    2016-01-23 13:55:07
31504    12922    529    2016-02-18 08:16:33    2016-02-18 08:16:33
31505    14638    624    2016-02-11 11:07:44    2016-02-11 11:07:44
31506    18380    858    2016-01-25 15:26:12    2016-01-25 15:26:12
31507    16155    803    2016-02-04 20:35:41    2016-02-04 20:35:41
31508    16595    505    2016-02-28 19:29:54    2016-02-28 19:29:54
31509    19950    622    2016-03-27 23:10:47    2016-03-27 23:10:47
31510    14597    626    2016-04-19 06:03:55    2016-04-19 06:03:55
31511    14623    595    2016-04-19 06:27:01    2016-04-19 06:27:01
31512    18075    590    2016-03-08 20:24:16    2016-03-08 20:24:16
31513    17079    736    2016-02-20 02:10:38    2016-02-20 02:10:38
31514    12231    890    2016-04-06 16:44:43    2016-04-06 16:44:43
31515    15303    805    2016-02-06 02:41:53    2016-02-06 02:41:53
31516    15582    621    2016-04-18 00:38:31    2016-04-18 00:38:31
31517    14355    716    2016-03-29 18:58:21    2016-03-29 18:58:21
31518    18890    579    2016-02-04 06:51:37    2016-02-04 06:51:37
31519    13632    943    2016-01-30 01:24:25    2016-01-30 01:24:25
31520    19532    944    2016-04-19 15:54:12    2016-04-19 15:54:12
31521    18486    681    2016-03-06 16:45:22    2016-03-06 16:45:22
31522    19164    557    2016-04-09 23:03:48    2016-04-09 23:03:48
31523    15256    641    2016-04-18 13:04:05    2016-04-18 13:04:05
31524    14008    703    2016-03-12 22:02:35    2016-03-12 22:02:35
31525    14997    851    2016-02-12 15:31:48    2016-02-12 15:31:48
31526    17366    884    2016-02-23 11:31:48    2016-02-23 11:31:48
31527    12227    636    2016-02-25 03:37:00    2016-02-25 03:37:00
31528    12345    493    2016-02-23 11:16:38    2016-02-23 11:16:38
31529    16839    643    2016-02-28 18:25:15    2016-02-28 18:25:15
31530    10519    916    2016-02-13 06:07:22    2016-02-13 06:07:22
31531    19863    721    2016-03-08 16:38:09    2016-03-08 16:38:09
31532    13696    557    2016-03-30 21:24:58    2016-03-30 21:24:58
31533    18865    767    2016-01-29 03:56:13    2016-01-29 03:56:13
31534    12674    654    2016-02-26 10:13:47    2016-02-26 10:13:47
31535    15829    609    2016-03-30 03:52:00    2016-03-30 03:52:00
31536    11549    732    2016-04-02 15:42:46    2016-04-02 15:42:46
31537    15990    832    2016-04-04 06:17:56    2016-04-04 06:17:56
31538    11760    712    2016-02-18 16:18:44    2016-02-18 16:18:44
31539    15892    958    2016-02-13 05:34:35    2016-02-13 05:34:35
31540    18744    802    2016-03-15 20:09:55    2016-03-15 20:09:55
31541    13460    822    2016-02-24 11:32:50    2016-02-24 11:32:50
31542    12516    927    2016-02-26 19:48:19    2016-02-26 19:48:19
31543    19796    845    2016-02-02 15:09:26    2016-02-02 15:09:26
31544    13773    559    2016-01-27 02:38:42    2016-01-27 02:38:42
31545    19195    799    2016-03-04 00:42:17    2016-03-04 00:42:17
31546    19693    692    2016-04-11 06:47:32    2016-04-11 06:47:32
31547    10344    606    2016-03-27 22:37:49    2016-03-27 22:37:49
31548    19043    565    2016-02-18 11:45:16    2016-02-18 11:45:16
31549    10834    484    2016-04-03 13:32:28    2016-04-03 13:32:28
31550    10664    568    2016-03-07 23:34:09    2016-03-07 23:34:09
31551    12020    501    2016-03-16 13:09:15    2016-03-16 13:09:15
31552    10362    629    2016-02-15 05:54:51    2016-02-15 05:54:51
31553    19066    831    2016-04-01 13:46:53    2016-04-01 13:46:53
31554    17489    946    2016-02-13 13:28:03    2016-02-13 13:28:03
31555    11082    960    2016-03-16 04:00:29    2016-03-16 04:00:29
31556    14289    940    2016-03-23 16:35:01    2016-03-23 16:35:01
31557    14776    768    2016-02-29 10:20:21    2016-02-29 10:20:21
31558    15044    604    2016-04-08 16:05:12    2016-04-08 16:05:12
31559    17678    958    2016-02-08 18:24:26    2016-02-08 18:24:26
31560    16623    771    2016-02-11 12:33:38    2016-02-11 12:33:38
31561    11928    818    2016-04-20 02:03:34    2016-04-20 02:03:34
31562    11397    610    2016-02-24 00:08:16    2016-02-24 00:08:16
31563    18085    574    2016-04-03 12:02:52    2016-04-03 12:02:52
31564    16344    922    2016-02-18 07:15:26    2016-02-18 07:15:26
31565    10301    615    2016-02-18 10:07:22    2016-02-18 10:07:22
31566    11566    628    2016-04-17 18:03:57    2016-04-17 18:03:57
31567    19850    694    2016-01-26 21:35:51    2016-01-26 21:35:51
31568    11425    797    2016-02-03 22:38:15    2016-02-03 22:38:15
31569    19328    496    2016-04-12 22:02:49    2016-04-12 22:02:49
31570    18972    601    2016-02-27 19:46:47    2016-02-27 19:46:47
31571    12201    746    2016-02-18 05:40:34    2016-02-18 05:40:34
31572    16499    545    2016-02-27 02:01:47    2016-02-27 02:01:47
31573    11181    865    2016-02-03 03:45:38    2016-02-03 03:45:38
31574    16182    788    2016-01-22 13:23:57    2016-01-22 13:23:57
31575    16546    773    2016-02-08 21:06:19    2016-02-08 21:06:19
31576    13704    820    2016-04-02 22:58:57    2016-04-02 22:58:57
31577    12087    616    2016-03-20 03:24:50    2016-03-20 03:24:50
31578    19835    558    2016-01-23 09:56:47    2016-01-23 09:56:47
31579    15860    802    2016-04-03 14:16:05    2016-04-03 14:16:05
31580    14933    512    2016-01-26 11:39:27    2016-01-26 11:39:27
31581    11853    832    2016-02-22 01:54:20    2016-02-22 01:54:20
31582    13991    603    2016-02-13 18:14:14    2016-02-13 18:14:14
31583    15637    632    2016-04-12 20:30:28    2016-04-12 20:30:28
31584    10119    493    2016-03-07 03:38:08    2016-03-07 03:38:08
31585    19529    611    2016-04-16 13:47:50    2016-04-16 13:47:50
31586    17773    615    2016-02-23 04:06:32    2016-02-23 04:06:32
31587    18469    676    2016-02-12 20:41:40    2016-02-12 20:41:40
31588    19453    692    2016-03-24 00:23:52    2016-03-24 00:23:52
31589    15567    510    2016-02-12 00:21:24    2016-02-12 00:21:24
31590    11213    562    2016-01-30 19:39:58    2016-01-30 19:39:58
31591    18773    484    2016-04-15 06:05:16    2016-04-15 06:05:16
31592    19650    796    2016-02-19 06:56:23    2016-02-19 06:56:23
31593    10901    483    2016-03-05 01:14:01    2016-03-05 01:14:01
31594    13396    712    2016-03-24 02:39:25    2016-03-24 02:39:25
31595    18685    726    2016-04-15 12:02:46    2016-04-15 12:02:46
31596    15262    643    2016-03-08 04:35:25    2016-03-08 04:35:25
31597    19126    956    2016-01-29 13:02:38    2016-01-29 13:02:38
31598    16455    871    2016-02-03 00:09:35    2016-02-03 00:09:35
31599    10466    917    2016-04-05 06:24:54    2016-04-05 06:24:54
31600    12622    881    2016-03-23 06:04:29    2016-03-23 06:04:29
31601    10934    767    2016-02-12 23:37:01    2016-02-12 23:37:01
31602    17542    913    2016-04-06 16:27:33    2016-04-06 16:27:33
31603    11190    599    2016-04-03 00:20:05    2016-04-03 00:20:05
31604    12615    687    2016-02-08 01:48:18    2016-02-08 01:48:18
31605    11894    869    2016-02-15 11:27:38    2016-02-15 11:27:38
31606    12994    570    2016-01-29 15:57:13    2016-01-29 15:57:13
31607    11614    615    2016-02-04 00:38:43    2016-02-04 00:38:43
31608    12256    515    2016-03-30 00:45:03    2016-03-30 00:45:03
31609    18596    563    2016-01-26 18:25:15    2016-01-26 18:25:15
31610    17426    470    2016-02-26 21:12:40    2016-02-26 21:12:40
31611    14211    588    2016-04-15 00:02:53    2016-04-15 00:02:53
31612    19973    557    2016-03-30 06:05:56    2016-03-30 06:05:56
31613    18802    838    2016-02-09 04:24:53    2016-02-09 04:24:53
31614    14123    591    2016-03-23 01:36:35    2016-03-23 01:36:35
31615    14095    758    2016-01-26 09:09:26    2016-01-26 09:09:26
31616    19111    587    2016-03-07 23:14:55    2016-03-07 23:14:55
31617    19911    742    2016-04-01 08:42:50    2016-04-01 08:42:50
31618    13790    955    2016-04-08 14:38:40    2016-04-08 14:38:40
31619    12248    942    2016-04-20 14:48:01    2016-04-20 14:48:01
31620    10698    750    2016-02-11 03:05:01    2016-02-11 03:05:01
31621    13215    820    2016-04-09 02:07:38    2016-04-09 02:07:38
31622    17143    625    2016-01-25 13:19:16    2016-01-25 13:19:16
31623    15778    952    2016-04-17 08:48:08    2016-04-17 08:48:08
31624    14060    826    2016-03-28 09:46:39    2016-03-28 09:46:39
31625    19746    466    2016-02-13 20:55:03    2016-02-13 20:55:03
31626    15977    602    2016-03-04 01:26:43    2016-03-04 01:26:43
31627    10340    845    2016-02-26 13:13:22    2016-02-26 13:13:22
31628    19834    753    2016-04-11 23:32:41    2016-04-11 23:32:41
31629    19361    569    2016-03-27 12:30:38    2016-03-27 12:30:38
31630    12826    618    2016-04-05 12:24:35    2016-04-05 12:24:35
31631    14940    746    2016-02-07 08:45:05    2016-02-07 08:45:05
31632    13488    532    2016-02-26 14:30:03    2016-02-26 14:30:03
31633    10724    891    2016-03-16 11:28:59    2016-03-16 11:28:59
31634    11361    881    2016-04-19 07:04:23    2016-04-19 07:04:23
31635    11260    503    2016-04-13 00:24:42    2016-04-13 00:24:42
31636    14028    542    2016-01-29 14:26:09    2016-01-29 14:26:09
31637    13252    667    2016-04-18 14:05:15    2016-04-18 14:05:15
31638    14141    756    2016-02-29 05:05:16    2016-02-29 05:05:16
31639    18650    593    2016-03-28 01:10:57    2016-03-28 01:10:57
31640    13280    749    2016-03-01 06:42:46    2016-03-01 06:42:46
31641    16381    581    2016-02-10 17:50:49    2016-02-10 17:50:49
31642    19778    817    2016-02-29 14:23:22    2016-02-29 14:23:22
31643    10892    889    2016-02-23 11:29:56    2016-02-23 11:29:56
31644    18516    894    2016-01-31 19:56:43    2016-01-31 19:56:43
31645    14457    634    2016-03-03 12:56:42    2016-03-03 12:56:42
31646    13080    767    2016-03-17 04:17:43    2016-03-17 04:17:43
31647    10845    497    2016-03-21 18:23:04    2016-03-21 18:23:04
31648    18444    701    2016-02-09 04:19:33    2016-02-09 04:19:33
31649    17313    711    2016-04-07 23:47:43    2016-04-07 23:47:43
31650    16831    466    2016-03-12 17:17:00    2016-03-12 17:17:00
31651    10915    498    2016-02-29 09:52:08    2016-02-29 09:52:08
31652    11920    562    2016-02-07 15:07:20    2016-02-07 15:07:20
31653    15504    713    2016-02-28 23:47:17    2016-02-28 23:47:17
31654    14727    688    2016-03-04 01:34:45    2016-03-04 01:34:45
31655    19808    594    2016-02-05 15:36:02    2016-02-05 15:36:02
31656    17469    533    2016-03-16 13:19:31    2016-03-16 13:19:31
31657    17069    505    2016-03-26 04:37:58    2016-03-26 04:37:58
31658    18834    625    2016-04-01 20:12:21    2016-04-01 20:12:21
31659    17319    694    2016-03-01 17:38:38    2016-03-01 17:38:38
31660    15621    582    2016-03-26 09:11:09    2016-03-26 09:11:09
31661    12032    734    2016-04-11 12:52:35    2016-04-11 12:52:35
31662    11153    772    2016-04-06 16:12:21    2016-04-06 16:12:21
31663    13524    833    2016-02-09 03:14:47    2016-02-09 03:14:47
31664    19650    554    2016-03-11 16:39:34    2016-03-11 16:39:34
31665    13242    663    2016-02-29 10:21:50    2016-02-29 10:21:50
31666    15781    520    2016-02-06 21:37:26    2016-02-06 21:37:26
31667    15108    866    2016-02-02 16:35:16    2016-02-02 16:35:16
31668    11660    832    2016-03-18 16:32:35    2016-03-18 16:32:35
31669    15698    867    2016-02-24 10:06:45    2016-02-24 10:06:45
31670    16690    658    2016-04-13 22:51:46    2016-04-13 22:51:46
31671    10868    922    2016-03-28 19:23:03    2016-03-28 19:23:03
31672    16285    864    2016-04-20 12:07:53    2016-04-20 12:07:53
31673    12053    751    2016-03-03 07:22:42    2016-03-03 07:22:42
31674    10647    921    2016-04-10 19:34:53    2016-04-10 19:34:53
31675    15126    675    2016-03-20 12:24:56    2016-03-20 12:24:56
31676    16065    887    2016-04-20 14:59:51    2016-04-20 14:59:51
31677    17584    850    2016-02-04 11:10:49    2016-02-04 11:10:49
31678    18049    937    2016-04-13 12:49:28    2016-04-13 12:49:28
31679    13762    506    2016-02-11 07:10:24    2016-02-11 07:10:24
31680    10804    920    2016-03-30 11:53:44    2016-03-30 11:53:44
31681    16339    644    2016-02-22 15:23:21    2016-02-22 15:23:21
31682    11042    892    2016-04-20 15:45:28    2016-04-20 15:45:28
31683    12960    841    2016-02-21 06:38:06    2016-02-21 06:38:06
31684    12200    597    2016-01-28 10:52:08    2016-01-28 10:52:08
31685    17599    809    2016-03-08 10:58:24    2016-03-08 10:58:24
31686    19043    660    2016-03-09 10:42:00    2016-03-09 10:42:00
31687    13366    534    2016-02-27 17:38:29    2016-02-27 17:38:29
31688    17083    884    2016-03-11 13:17:16    2016-03-11 13:17:16
31689    13017    710    2016-03-10 19:10:07    2016-03-10 19:10:07
31690    17989    623    2016-03-02 11:26:07    2016-03-02 11:26:07
31691    15340    476    2016-01-25 06:04:43    2016-01-25 06:04:43
31692    17500    645    2016-04-06 05:04:49    2016-04-06 05:04:49
31693    11262    948    2016-04-02 04:24:08    2016-04-02 04:24:08
31694    17392    502    2016-04-08 15:44:54    2016-04-08 15:44:54
31695    11109    665    2016-03-13 17:55:15    2016-03-13 17:55:15
31696    12714    607    2016-04-20 00:15:41    2016-04-20 00:15:41
31697    17296    876    2016-02-15 12:32:13    2016-02-15 12:32:13
31698    15359    541    2016-04-11 21:47:12    2016-04-11 21:47:12
31699    12110    796    2016-01-24 09:08:00    2016-01-24 09:08:00
31700    18253    793    2016-02-24 19:05:30    2016-02-24 19:05:30
31701    11309    717    2016-02-11 10:17:43    2016-02-11 10:17:43
31702    11973    651    2016-02-13 22:39:01    2016-02-13 22:39:01
31703    15147    885    2016-03-24 14:50:01    2016-03-24 14:50:01
31704    13762    739    2016-04-16 22:06:43    2016-04-16 22:06:43
31705    14876    780    2016-03-31 19:01:24    2016-03-31 19:01:24
31706    11675    930    2016-02-16 03:55:56    2016-02-16 03:55:56
31707    15089    543    2016-02-19 05:27:35    2016-02-19 05:27:35
31708    18423    906    2016-02-09 18:03:39    2016-02-09 18:03:39
31709    16413    880    2016-01-24 11:19:50    2016-01-24 11:19:50
31710    17486    632    2016-02-17 20:42:19    2016-02-17 20:42:19
31711    12323    646    2016-01-23 23:34:00    2016-01-23 23:34:00
31712    14479    628    2016-01-24 06:19:06    2016-01-24 06:19:06
31713    17018    892    2016-04-05 02:58:53    2016-04-05 02:58:53
31714    16568    543    2016-03-27 07:13:39    2016-03-27 07:13:39
31715    11897    734    2016-04-11 23:20:32    2016-04-11 23:20:32
31716    15791    521    2016-02-02 01:30:28    2016-02-02 01:30:28
31717    18897    855    2016-03-26 01:29:36    2016-03-26 01:29:36
31718    15936    939    2016-02-01 06:05:21    2016-02-01 06:05:21
31719    13578    472    2016-03-15 18:07:51    2016-03-15 18:07:51
31720    16909    726    2016-02-13 05:03:30    2016-02-13 05:03:30
31721    12710    765    2016-04-16 20:33:15    2016-04-16 20:33:15
31722    13866    720    2016-03-16 02:01:01    2016-03-16 02:01:01
31723    17918    794    2016-03-07 14:23:35    2016-03-07 14:23:35
31724    10868    813    2016-02-22 09:33:48    2016-02-22 09:33:48
31725    10540    816    2016-02-24 05:33:06    2016-02-24 05:33:06
31726    18727    503    2016-02-20 06:09:27    2016-02-20 06:09:27
31727    19262    517    2016-02-15 06:13:48    2016-02-15 06:13:48
31728    13273    522    2016-02-10 09:12:37    2016-02-10 09:12:37
31729    15221    688    2016-01-29 23:25:41    2016-01-29 23:25:41
31730    11230    782    2016-04-09 04:42:50    2016-04-09 04:42:50
31731    19457    732    2016-03-07 08:43:30    2016-03-07 08:43:30
31732    10926    580    2016-01-26 10:04:00    2016-01-26 10:04:00
31733    16461    715    2016-03-21 11:17:20    2016-03-21 11:17:20
31734    18083    780    2016-03-28 16:51:46    2016-03-28 16:51:46
31735    16786    725    2016-03-11 01:14:15    2016-03-11 01:14:15
31736    10100    568    2016-04-06 15:08:51    2016-04-06 15:08:51
31737    16696    868    2016-01-23 20:51:42    2016-01-23 20:51:42
31738    12265    739    2016-01-30 02:50:19    2016-01-30 02:50:19
31739    14205    566    2016-02-11 18:16:27    2016-02-11 18:16:27
31740    16147    933    2016-03-11 20:49:38    2016-03-11 20:49:38
31741    18474    607    2016-02-08 04:53:21    2016-02-08 04:53:21
31742    19798    671    2016-03-30 09:35:54    2016-03-30 09:35:54
31743    17980    870    2016-01-29 14:31:43    2016-01-29 14:31:43
31744    19635    928    2016-02-23 22:41:19    2016-02-23 22:41:19
31745    19887    876    2016-02-27 09:34:42    2016-02-27 09:34:42
31746    14704    953    2016-03-25 00:44:02    2016-03-25 00:44:02
31747    13223    941    2016-04-20 05:13:57    2016-04-20 05:13:57
31748    15033    950    2016-02-29 04:15:27    2016-02-29 04:15:27
31749    11095    892    2016-04-18 09:26:14    2016-04-18 09:26:14
31750    18909    741    2016-01-26 05:32:56    2016-01-26 05:32:56
31751    16822    859    2016-03-31 02:27:22    2016-03-31 02:27:22
31752    13802    684    2016-04-02 15:30:02    2016-04-02 15:30:02
31753    12711    516    2016-03-15 00:49:11    2016-03-15 00:49:11
31754    10263    954    2016-02-17 22:26:24    2016-02-17 22:26:24
31755    16000    789    2016-03-27 10:16:49    2016-03-27 10:16:49
31756    19566    703    2016-04-02 17:59:44    2016-04-02 17:59:44
31757    14779    945    2016-04-15 07:46:35    2016-04-15 07:46:35
31758    19527    508    2016-01-24 09:38:53    2016-01-24 09:38:53
31759    12552    739    2016-03-17 18:11:50    2016-03-17 18:11:50
31760    15991    772    2016-04-17 16:28:22    2016-04-17 16:28:22
31761    10395    580    2016-03-12 22:16:37    2016-03-12 22:16:37
31762    14432    812    2016-03-30 21:11:43    2016-03-30 21:11:43
31763    10396    900    2016-03-15 15:54:31    2016-03-15 15:54:31
31764    14439    933    2016-03-07 13:06:17    2016-03-07 13:06:17
31765    18745    743    2016-03-28 06:37:30    2016-03-28 06:37:30
31766    17160    949    2016-03-24 23:18:20    2016-03-24 23:18:20
31767    14146    810    2016-03-25 02:59:13    2016-03-25 02:59:13
31768    12715    680    2016-02-16 23:37:26    2016-02-16 23:37:26
31769    13048    757    2016-04-20 05:58:49    2016-04-20 05:58:49
31770    13172    728    2016-02-03 16:19:51    2016-02-03 16:19:51
31771    15541    812    2016-03-29 12:00:55    2016-03-29 12:00:55
31772    17211    477    2016-03-20 04:31:59    2016-03-20 04:31:59
31773    10160    708    2016-01-24 02:40:31    2016-01-24 02:40:31
31774    17568    808    2016-01-28 09:25:42    2016-01-28 09:25:42
31775    18696    487    2016-04-01 20:43:59    2016-04-01 20:43:59
31776    16941    829    2016-01-30 00:44:42    2016-01-30 00:44:42
31777    13839    775    2016-02-10 18:05:50    2016-02-10 18:05:50
31778    16787    901    2016-04-19 22:22:55    2016-04-19 22:22:55
31779    14673    594    2016-02-18 12:47:49    2016-02-18 12:47:49
31780    12091    858    2016-03-30 12:25:26    2016-03-30 12:25:26
31781    19897    766    2016-04-10 20:24:00    2016-04-10 20:24:00
31782    17168    858    2016-02-24 14:59:51    2016-02-24 14:59:51
31783    16203    903    2016-01-26 10:06:39    2016-01-26 10:06:39
31784    17668    747    2016-02-29 17:41:44    2016-02-29 17:41:44
31785    19456    841    2016-02-12 06:12:58    2016-02-12 06:12:58
31786    17924    617    2016-04-12 13:38:29    2016-04-12 13:38:29
31787    12254    625    2016-01-27 09:14:35    2016-01-27 09:14:35
31788    19497    734    2016-02-29 19:53:11    2016-02-29 19:53:11
31789    17932    826    2016-02-29 22:22:53    2016-02-29 22:22:53
31790    11360    816    2016-04-17 15:25:21    2016-04-17 15:25:21
31791    10093    912    2016-03-20 04:45:39    2016-03-20 04:45:39
31792    19743    944    2016-03-15 02:55:02    2016-03-15 02:55:02
31793    15364    637    2016-03-19 17:14:42    2016-03-19 17:14:42
31794    18884    891    2016-01-25 13:46:33    2016-01-25 13:46:33
31795    19703    676    2016-03-25 07:16:08    2016-03-25 07:16:08
31796    16591    583    2016-02-02 16:51:17    2016-02-02 16:51:17
31797    14825    901    2016-03-04 12:57:21    2016-03-04 12:57:21
31798    19633    489    2016-04-06 07:20:29    2016-04-06 07:20:29
31799    17215    627    2016-04-20 08:30:09    2016-04-20 08:30:09
31800    10806    593    2016-04-18 02:50:42    2016-04-18 02:50:42
31801    14906    956    2016-02-12 15:07:32    2016-02-12 15:07:32
31802    13847    670    2016-03-17 10:30:11    2016-03-17 10:30:11
31803    19692    778    2016-02-27 07:17:48    2016-02-27 07:17:48
31804    18630    749    2016-04-16 00:58:46    2016-04-16 00:58:46
31805    12047    705    2016-02-25 07:14:33    2016-02-25 07:14:33
31806    19014    697    2016-04-10 22:04:13    2016-04-10 22:04:13
31807    14989    591    2016-04-09 01:45:07    2016-04-09 01:45:07
31808    10208    478    2016-02-28 10:01:29    2016-02-28 10:01:29
31809    17487    830    2016-02-22 08:05:24    2016-02-22 08:05:24
31810    16744    473    2016-03-03 12:41:01    2016-03-03 12:41:01
31811    14204    856    2016-04-09 09:25:26    2016-04-09 09:25:26
31812    12148    680    2016-02-24 11:25:45    2016-02-24 11:25:45
31813    15825    542    2016-02-17 08:54:39    2016-02-17 08:54:39
31814    15898    956    2016-03-22 13:19:20    2016-03-22 13:19:20
31815    16959    897    2016-04-02 05:33:15    2016-04-02 05:33:15
31816    15828    474    2016-04-03 22:28:53    2016-04-03 22:28:53
31817    14011    694    2016-01-25 18:55:20    2016-01-25 18:55:20
31818    19920    840    2016-02-24 05:27:44    2016-02-24 05:27:44
31819    19169    841    2016-03-04 18:05:10    2016-03-04 18:05:10
31820    17258    855    2016-02-22 18:06:45    2016-02-22 18:06:45
31821    14774    945    2016-04-19 10:28:48    2016-04-19 10:28:48
31822    18816    937    2016-04-19 07:14:53    2016-04-19 07:14:53
31823    18542    589    2016-02-21 11:52:56    2016-02-21 11:52:56
31824    14225    637    2016-01-24 03:25:49    2016-01-24 03:25:49
31825    16311    716    2016-03-08 10:45:06    2016-03-08 10:45:06
31826    18770    835    2016-01-27 03:39:53    2016-01-27 03:39:53
31827    10633    589    2016-04-10 06:36:10    2016-04-10 06:36:10
31828    16059    915    2016-04-13 09:46:42    2016-04-13 09:46:42
31829    16656    530    2016-01-28 01:45:13    2016-01-28 01:45:13
31830    16772    678    2016-02-12 10:35:34    2016-02-12 10:35:34
31831    12189    716    2016-01-30 20:57:01    2016-01-30 20:57:01
31832    16187    463    2016-04-02 04:22:05    2016-04-02 04:22:05
31833    14461    502    2016-04-04 13:00:10    2016-04-04 13:00:10
31834    18745    631    2016-03-21 08:35:10    2016-03-21 08:35:10
31835    11462    564    2016-03-21 08:22:25    2016-03-21 08:22:25
31836    11896    895    2016-03-25 18:56:50    2016-03-25 18:56:50
31837    13003    721    2016-04-15 03:00:32    2016-04-15 03:00:32
31838    16234    861    2016-02-10 18:57:09    2016-02-10 18:57:09
31839    17978    818    2016-03-31 17:47:30    2016-03-31 17:47:30
31840    12692    874    2016-01-24 21:18:19    2016-01-24 21:18:19
31841    14547    654    2016-04-20 11:34:47    2016-04-20 11:34:47
31842    13409    924    2016-01-31 20:37:15    2016-01-31 20:37:15
31843    16623    778    2016-03-26 12:55:25    2016-03-26 12:55:25
31844    13995    778    2016-03-11 00:49:52    2016-03-11 00:49:52
31845    17564    467    2016-02-16 01:00:43    2016-02-16 01:00:43
31846    12236    828    2016-04-19 09:20:05    2016-04-19 09:20:05
31847    12186    777    2016-04-19 15:22:00    2016-04-19 15:22:00
31848    16270    555    2016-03-23 03:25:12    2016-03-23 03:25:12
31849    14329    535    2016-01-23 21:06:41    2016-01-23 21:06:41
31850    15006    924    2016-04-18 05:56:34    2016-04-18 05:56:34
31851    18224    830    2016-02-28 13:15:48    2016-02-28 13:15:48
31852    17048    836    2016-03-04 01:47:35    2016-03-04 01:47:35
31853    14893    566    2016-01-27 07:57:27    2016-01-27 07:57:27
31854    17604    706    2016-03-20 00:15:50    2016-03-20 00:15:50
31855    15938    947    2016-04-02 17:46:46    2016-04-02 17:46:46
31856    15563    580    2016-02-21 18:52:18    2016-02-21 18:52:18
31857    11105    474    2016-04-12 13:38:51    2016-04-12 13:38:51
31858    14097    892    2016-03-24 19:59:36    2016-03-24 19:59:36
31859    10673    669    2016-03-26 09:53:49    2016-03-26 09:53:49
31860    11280    942    2016-01-24 09:50:41    2016-01-24 09:50:41
31861    18748    479    2016-02-24 12:35:04    2016-02-24 12:35:04
31862    11619    562    2016-04-08 15:14:16    2016-04-08 15:14:16
31863    13739    649    2016-04-06 12:21:45    2016-04-06 12:21:45
31864    15761    846    2016-02-10 18:51:42    2016-02-10 18:51:42
31865    16530    879    2016-03-10 10:49:40    2016-03-10 10:49:40
31866    13296    953    2016-03-21 07:55:10    2016-03-21 07:55:10
31867    17282    678    2016-03-06 11:25:40    2016-03-06 11:25:40
31868    12131    653    2016-01-29 00:38:37    2016-01-29 00:38:37
31869    13184    593    2016-02-08 17:22:49    2016-02-08 17:22:49
31870    12000    602    2016-01-25 07:03:08    2016-01-25 07:03:08
31871    14995    702    2016-03-03 09:07:25    2016-03-03 09:07:25
31872    19715    924    2016-03-28 06:24:27    2016-03-28 06:24:27
31873    18418    587    2016-04-12 07:47:21    2016-04-12 07:47:21
31874    19968    530    2016-02-03 12:26:51    2016-02-03 12:26:51
31875    16127    751    2016-03-13 13:29:22    2016-03-13 13:29:22
31876    11377    700    2016-03-27 04:47:54    2016-03-27 04:47:54
31877    10995    670    2016-01-29 00:23:40    2016-01-29 00:23:40
31878    18502    629    2016-02-05 19:59:17    2016-02-05 19:59:17
31879    13333    483    2016-02-17 03:07:31    2016-02-17 03:07:31
31880    11559    896    2016-03-19 07:45:09    2016-03-19 07:45:09
31881    12420    502    2016-02-27 07:44:23    2016-02-27 07:44:23
31882    16716    648    2016-04-16 04:55:47    2016-04-16 04:55:47
31883    17636    857    2016-02-08 02:06:26    2016-02-08 02:06:26
31884    15883    957    2016-03-10 10:11:41    2016-03-10 10:11:41
31885    12898    681    2016-04-09 17:42:09    2016-04-09 17:42:09
31886    19717    765    2016-04-19 08:25:50    2016-04-19 08:25:50
31887    19668    586    2016-03-21 04:52:47    2016-03-21 04:52:47
31888    19119    722    2016-03-24 10:37:25    2016-03-24 10:37:25
31889    18936    669    2016-01-30 08:58:06    2016-01-30 08:58:06
31890    17842    845    2016-02-08 00:21:24    2016-02-08 00:21:24
31891    13106    752    2016-03-26 12:02:39    2016-03-26 12:02:39
31892    13173    831    2016-03-27 23:29:59    2016-03-27 23:29:59
31893    19240    554    2016-02-08 17:35:47    2016-02-08 17:35:47
31894    10257    944    2016-01-29 15:51:38    2016-01-29 15:51:38
31895    10256    485    2016-04-04 13:57:41    2016-04-04 13:57:41
31896    16470    748    2016-02-08 02:21:39    2016-02-08 02:21:39
31897    10350    956    2016-02-07 22:11:12    2016-02-07 22:11:12
31898    16474    653    2016-02-04 20:32:39    2016-02-04 20:32:39
31899    13336    644    2016-02-04 21:42:27    2016-02-04 21:42:27
31900    15850    625    2016-02-26 15:40:29    2016-02-26 15:40:29
31901    15888    934    2016-03-10 21:59:14    2016-03-10 21:59:14
31902    10362    801    2016-03-03 22:33:04    2016-03-03 22:33:04
31903    12497    506    2016-02-09 06:24:51    2016-02-09 06:24:51
31904    12300    870    2016-01-22 15:56:39    2016-01-22 15:56:39
31905    19685    714    2016-03-20 02:26:07    2016-03-20 02:26:07
31906    18406    938    2016-04-20 21:37:34    2016-04-20 21:37:34
31907    11903    872    2016-02-01 08:07:43    2016-02-01 08:07:43
31908    16690    645    2016-03-04 19:02:18    2016-03-04 19:02:18
31909    18500    917    2016-03-16 22:11:39    2016-03-16 22:11:39
31910    12170    927    2016-02-29 01:11:28    2016-02-29 01:11:28
31911    16147    742    2016-01-26 13:23:07    2016-01-26 13:23:07
31912    11168    810    2016-02-05 07:46:16    2016-02-05 07:46:16
31913    16037    911    2016-01-27 16:16:47    2016-01-27 16:16:47
31914    10404    851    2016-03-24 13:36:13    2016-03-24 13:36:13
31915    15029    947    2016-04-11 13:25:19    2016-04-11 13:25:19
31916    11388    894    2016-04-07 17:54:26    2016-04-07 17:54:26
31917    18703    778    2016-01-28 16:16:11    2016-01-28 16:16:11
31918    13893    677    2016-03-12 10:19:37    2016-03-12 10:19:37
31919    18990    661    2016-03-02 08:58:14    2016-03-02 08:58:14
31920    18072    807    2016-02-26 14:05:53    2016-02-26 14:05:53
31921    10681    888    2016-03-26 11:37:00    2016-03-26 11:37:00
31922    16095    595    2016-04-18 09:26:30    2016-04-18 09:26:30
31923    10448    732    2016-01-22 10:51:46    2016-01-22 10:51:46
31924    13267    791    2016-04-10 21:32:36    2016-04-10 21:32:36
31925    12532    584    2016-03-09 08:12:03    2016-03-09 08:12:03
31926    11236    538    2016-04-02 17:57:47    2016-04-02 17:57:47
31927    19155    570    2016-02-02 01:37:13    2016-02-02 01:37:13
31928    11783    725    2016-02-21 00:48:06    2016-02-21 00:48:06
31929    16816    590    2016-01-25 17:43:14    2016-01-25 17:43:14
31930    17665    783    2016-02-13 00:26:26    2016-02-13 00:26:26
31931    14003    546    2016-03-17 18:22:30    2016-03-17 18:22:30
31932    15830    798    2016-04-13 04:45:46    2016-04-13 04:45:46
31933    19047    620    2016-02-08 02:37:10    2016-02-08 02:37:10
31934    15159    918    2016-04-08 04:27:51    2016-04-08 04:27:51
31935    14167    691    2016-04-17 02:32:19    2016-04-17 02:32:19
31936    11611    877    2016-04-09 00:24:29    2016-04-09 00:24:29
31937    19854    843    2016-04-19 04:17:30    2016-04-19 04:17:30
31938    17608    564    2016-03-19 01:55:32    2016-03-19 01:55:32
31939    19913    939    2016-01-31 22:40:23    2016-01-31 22:40:23
31940    15001    955    2016-03-11 21:22:07    2016-03-11 21:22:07
31941    14365    858    2016-04-03 09:44:37    2016-04-03 09:44:37
31942    13215    719    2016-01-29 03:32:01    2016-01-29 03:32:01
31943    16033    483    2016-03-13 08:41:31    2016-03-13 08:41:31
31944    15937    527    2016-04-11 17:33:29    2016-04-11 17:33:29
31945    19518    920    2016-03-07 16:43:23    2016-03-07 16:43:23
31946    18571    615    2016-02-02 07:53:47    2016-02-02 07:53:47
31947    11061    957    2016-03-23 21:35:08    2016-03-23 21:35:08
31948    18969    914    2016-01-27 21:27:33    2016-01-27 21:27:33
31949    13589    885    2016-02-16 14:05:03    2016-02-16 14:05:03
31950    18290    958    2016-02-05 01:09:11    2016-02-05 01:09:11
31951    12410    752    2016-02-07 16:46:19    2016-02-07 16:46:19
31952    18973    474    2016-03-24 11:46:54    2016-03-24 11:46:54
31953    15820    865    2016-03-08 23:10:12    2016-03-08 23:10:12
31954    18414    682    2016-04-11 15:35:27    2016-04-11 15:35:27
31955    11538    856    2016-03-25 22:33:52    2016-03-25 22:33:52
31956    11719    931    2016-02-19 02:09:43    2016-02-19 02:09:43
31957    16186    494    2016-03-25 04:49:02    2016-03-25 04:49:02
31958    12386    961    2016-04-16 03:40:25    2016-04-16 03:40:25
31959    15946    478    2016-02-02 08:24:53    2016-02-02 08:24:53
31960    13757    915    2016-02-09 04:53:20    2016-02-09 04:53:20
31961    11577    949    2016-03-17 10:55:02    2016-03-17 10:55:02
31962    13901    841    2016-04-02 00:08:19    2016-04-02 00:08:19
31963    16534    600    2016-02-03 16:05:03    2016-02-03 16:05:03
31964    18168    930    2016-04-16 15:14:50    2016-04-16 15:14:50
31965    15600    858    2016-02-29 23:39:13    2016-02-29 23:39:13
31966    16690    618    2016-02-04 07:49:28    2016-02-04 07:49:28
31967    11724    606    2016-04-02 14:13:08    2016-04-02 14:13:08
31968    14722    824    2016-03-10 23:14:19    2016-03-10 23:14:19
31969    19999    827    2016-04-13 21:45:54    2016-04-13 21:45:54
31970    12701    487    2016-03-03 15:23:56    2016-03-03 15:23:56
31971    10660    958    2016-02-08 12:13:16    2016-02-08 12:13:16
31972    10606    665    2016-03-22 19:58:47    2016-03-22 19:58:47
31973    17576    472    2016-02-16 19:43:31    2016-02-16 19:43:31
31974    17282    489    2016-04-15 20:45:41    2016-04-15 20:45:41
31975    19922    499    2016-01-22 18:42:05    2016-01-22 18:42:05
31976    12286    580    2016-02-06 07:54:34    2016-02-06 07:54:34
31977    19120    746    2016-03-15 23:21:00    2016-03-15 23:21:00
31978    19376    894    2016-04-01 14:47:27    2016-04-01 14:47:27
31979    11427    573    2016-04-05 12:18:55    2016-04-05 12:18:55
31980    16892    871    2016-02-06 07:25:12    2016-02-06 07:25:12
31981    18929    599    2016-03-09 08:25:58    2016-03-09 08:25:58
31982    14050    607    2016-03-22 06:11:35    2016-03-22 06:11:35
31983    19032    830    2016-04-12 19:41:49    2016-04-12 19:41:49
31984    16098    837    2016-02-08 19:46:33    2016-02-08 19:46:33
31985    12902    803    2016-03-01 16:43:20    2016-03-01 16:43:20
31986    19956    721    2016-03-09 03:31:39    2016-03-09 03:31:39
31987    19513    676    2016-02-04 00:12:46    2016-02-04 00:12:46
31988    14087    671    2016-04-19 11:15:22    2016-04-19 11:15:22
31989    18453    746    2016-03-24 14:04:00    2016-03-24 14:04:00
31990    13007    812    2016-04-06 19:13:50    2016-04-06 19:13:50
31991    11519    855    2016-03-02 14:57:31    2016-03-02 14:57:31
31992    18681    545    2016-01-25 22:24:39    2016-01-25 22:24:39
31993    15124    750    2016-03-05 05:59:42    2016-03-05 05:59:42
31994    12174    600    2016-02-13 22:02:30    2016-02-13 22:02:30
31995    17718    467    2016-04-10 02:46:27    2016-04-10 02:46:27
31996    16079    846    2016-03-03 18:40:59    2016-03-03 18:40:59
31997    13705    556    2016-03-02 10:37:31    2016-03-02 10:37:31
31998    16424    728    2016-03-03 09:19:00    2016-03-03 09:19:00
31999    17361    710    2016-02-17 08:48:40    2016-02-17 08:48:40
32000    10015    605    2016-04-17 06:42:50    2016-04-17 06:42:50
32001    17678    673    2016-04-03 00:21:30    2016-04-03 00:21:30
32002    15268    534    2016-04-14 10:21:24    2016-04-14 10:21:24
32003    13269    609    2016-04-03 07:58:20    2016-04-03 07:58:20
32004    14273    792    2016-01-24 18:49:23    2016-01-24 18:49:23
32005    15984    501    2016-04-07 00:58:14    2016-04-07 00:58:14
32006    15826    551    2016-02-17 12:26:01    2016-02-17 12:26:01
32007    19553    671    2016-01-27 08:38:00    2016-01-27 08:38:00
32008    18482    682    2016-02-18 20:26:54    2016-02-18 20:26:54
32009    10009    860    2016-02-24 08:51:45    2016-02-24 08:51:45
32010    18061    795    2016-01-27 10:25:05    2016-01-27 10:25:05
32011    19581    923    2016-03-11 05:12:38    2016-03-11 05:12:38
32012    15123    595    2016-01-27 22:35:55    2016-01-27 22:35:55
32013    10182    469    2016-04-12 03:35:45    2016-04-12 03:35:45
32014    12168    928    2016-02-10 08:32:24    2016-02-10 08:32:24
32015    14439    659    2016-03-31 00:56:22    2016-03-31 00:56:22
32016    11482    862    2016-02-07 20:32:46    2016-02-07 20:32:46
32017    18760    724    2016-02-23 09:06:01    2016-02-23 09:06:01
32018    18740    642    2016-03-18 14:09:46    2016-03-18 14:09:46
32019    13932    795    2016-03-22 10:03:01    2016-03-22 10:03:01
32020    18172    644    2016-04-01 04:24:31    2016-04-01 04:24:31
32021    13209    885    2016-04-09 09:23:22    2016-04-09 09:23:22
32022    13525    805    2016-02-29 19:41:05    2016-02-29 19:41:05
32023    10792    540    2016-03-30 04:40:42    2016-03-30 04:40:42
32024    11945    642    2016-03-15 08:21:39    2016-03-15 08:21:39
32025    15554    672    2016-02-15 19:30:30    2016-02-15 19:30:30
32026    18289    480    2016-04-05 12:43:50    2016-04-05 12:43:50
32027    15417    844    2016-04-20 07:35:41    2016-04-20 07:35:41
32028    16660    543    2016-04-03 08:04:39    2016-04-03 08:04:39
32029    10292    522    2016-01-29 21:59:47    2016-01-29 21:59:47
32030    18536    580    2016-03-21 01:07:00    2016-03-21 01:07:00
32031    11831    746    2016-02-19 03:05:31    2016-02-19 03:05:31
32032    14721    921    2016-03-04 16:41:41    2016-03-04 16:41:41
32033    14280    829    2016-03-07 19:43:14    2016-03-07 19:43:14
32034    13756    779    2016-02-03 19:13:17    2016-02-03 19:13:17
32035    15986    951    2016-03-12 02:29:14    2016-03-12 02:29:14
32036    17541    728    2016-04-19 23:46:47    2016-04-19 23:46:47
32037    15155    766    2016-04-14 03:21:43    2016-04-14 03:21:43
32038    10369    633    2016-03-12 23:54:49    2016-03-12 23:54:49
32039    14506    535    2016-02-22 16:33:24    2016-02-22 16:33:24
32040    12028    847    2016-03-19 03:57:58    2016-03-19 03:57:58
32041    12530    903    2016-04-07 11:19:34    2016-04-07 11:19:34
32042    10541    894    2016-04-11 19:57:06    2016-04-11 19:57:06
32043    15147    611    2016-01-26 20:45:00    2016-01-26 20:45:00
32044    16718    898    2016-04-20 00:33:15    2016-04-20 00:33:15
32045    16088    666    2016-03-19 09:32:32    2016-03-19 09:32:32
32046    16508    791    2016-04-15 20:09:04    2016-04-15 20:09:04
32047    17024    634    2016-03-05 09:11:41    2016-03-05 09:11:41
32048    10436    669    2016-04-14 12:48:09    2016-04-14 12:48:09
32049    17652    697    2016-03-09 17:34:05    2016-03-09 17:34:05
32050    13466    726    2016-03-20 09:07:31    2016-03-20 09:07:31
32051    19503    585    2016-02-01 21:57:16    2016-02-01 21:57:16
32052    18205    664    2016-02-13 10:54:11    2016-02-13 10:54:11
32053    12672    486    2016-03-17 04:29:22    2016-03-17 04:29:22
32054    11679    846    2016-03-28 05:31:38    2016-03-28 05:31:38
32055    10951    463    2016-01-25 00:51:09    2016-01-25 00:51:09
32056    16339    921    2016-02-16 07:50:46    2016-02-16 07:50:46
32057    13365    794    2016-01-24 10:54:40    2016-01-24 10:54:40
32058    18156    712    2016-02-07 13:34:23    2016-02-07 13:34:23
32059    15101    699    2016-02-27 02:43:07    2016-02-27 02:43:07
32060    18622    701    2016-03-03 15:43:56    2016-03-03 15:43:56
32061    11568    597    2016-03-30 22:54:14    2016-03-30 22:54:14
32062    14485    656    2016-03-05 12:36:48    2016-03-05 12:36:48
32063    13474    689    2016-01-25 08:00:25    2016-01-25 08:00:25
32064    18685    799    2016-01-22 14:43:30    2016-01-22 14:43:30
32065    19175    889    2016-02-03 03:19:26    2016-02-03 03:19:26
32066    14882    741    2016-04-04 12:57:27    2016-04-04 12:57:27
32067    19721    731    2016-01-31 16:48:53    2016-01-31 16:48:53
32068    18526    730    2016-02-27 19:24:10    2016-02-27 19:24:10
32069    10969    868    2016-04-05 12:16:45    2016-04-05 12:16:45
32070    15159    684    2016-01-27 17:04:12    2016-01-27 17:04:12
32071    14473    868    2016-04-07 16:30:54    2016-04-07 16:30:54
32072    19325    811    2016-04-18 02:34:17    2016-04-18 02:34:17
32073    17725    591    2016-03-25 04:59:27    2016-03-25 04:59:27
32074    18559    569    2016-04-12 12:48:45    2016-04-12 12:48:45
32075    11863    743    2016-03-28 23:39:20    2016-03-28 23:39:20
32076    17137    959    2016-02-19 18:09:48    2016-02-19 18:09:48
32077    13931    798    2016-04-13 03:35:27    2016-04-13 03:35:27
32078    14269    481    2016-02-17 01:00:52    2016-02-17 01:00:52
32079    12496    509    2016-03-06 02:27:14    2016-03-06 02:27:14
32080    19541    517    2016-04-06 17:08:51    2016-04-06 17:08:51
32081    13169    657    2016-02-23 07:01:45    2016-02-23 07:01:45
32082    19122    535    2016-04-13 04:49:58    2016-04-13 04:49:58
32083    10336    522    2016-03-12 12:29:40    2016-03-12 12:29:40
32084    11889    872    2016-02-15 15:50:46    2016-02-15 15:50:46
32085    15604    692    2016-02-02 18:47:00    2016-02-02 18:47:00
32086    10249    848    2016-03-13 23:48:58    2016-03-13 23:48:58
32087    18679    512    2016-02-24 07:02:04    2016-02-24 07:02:04
32088    14396    549    2016-04-18 13:31:05    2016-04-18 13:31:05
32089    11528    517    2016-02-14 11:18:54    2016-02-14 11:18:54
32090    16772    683    2016-04-17 09:58:29    2016-04-17 09:58:29
32091    13615    557    2016-03-10 12:10:55    2016-03-10 12:10:55
32092    12267    527    2016-02-29 09:28:10    2016-02-29 09:28:10
32093    12176    544    2016-02-02 16:34:47    2016-02-02 16:34:47
32094    13214    803    2016-02-26 07:02:06    2016-02-26 07:02:06
32095    19815    504    2016-01-22 03:11:17    2016-01-22 03:11:17
32096    13460    738    2016-02-29 06:01:08    2016-02-29 06:01:08
32097    17077    750    2016-03-16 20:00:00    2016-03-16 20:00:00
32098    17414    672    2016-03-03 15:20:19    2016-03-03 15:20:19
32099    16622    535    2016-02-17 09:54:31    2016-02-17 09:54:31
32100    14334    849    2016-02-19 19:53:31    2016-02-19 19:53:31
32101    13140    931    2016-03-28 10:33:00    2016-03-28 10:33:00
32102    15708    940    2016-04-15 20:06:09    2016-04-15 20:06:09
32103    16678    609    2016-02-26 10:50:47    2016-02-26 10:50:47
32104    18570    961    2016-03-17 07:27:15    2016-03-17 07:27:15
32105    12696    485    2016-03-05 04:16:50    2016-03-05 04:16:50
32106    17214    480    2016-03-05 13:59:27    2016-03-05 13:59:27
32107    15176    821    2016-04-08 00:13:51    2016-04-08 00:13:51
32108    16841    777    2016-04-01 02:54:11    2016-04-01 02:54:11
32109    15608    930    2016-02-09 05:24:04    2016-02-09 05:24:04
32110    11832    499    2016-04-14 17:20:18    2016-04-14 17:20:18
32111    17313    793    2016-02-28 17:16:34    2016-02-28 17:16:34
32112    11125    896    2016-02-05 05:54:14    2016-02-05 05:54:14
32113    18391    879    2016-01-27 14:16:41    2016-01-27 14:16:41
32114    18449    906    2016-02-11 03:35:11    2016-02-11 03:35:11
32115    13905    842    2016-02-29 10:13:42    2016-02-29 10:13:42
32116    10644    552    2016-04-07 22:48:34    2016-04-07 22:48:34
32117    14697    654    2016-01-25 14:56:43    2016-01-25 14:56:43
32118    16541    465    2016-01-31 11:31:04    2016-01-31 11:31:04
32119    18608    481    2016-03-17 02:40:05    2016-03-17 02:40:05
32120    18277    954    2016-03-05 03:35:37    2016-03-05 03:35:37
32121    11527    603    2016-03-20 02:11:22    2016-03-20 02:11:22
32122    19548    906    2016-02-22 00:21:44    2016-02-22 00:21:44
32123    10143    562    2016-04-19 18:22:56    2016-04-19 18:22:56
32124    11853    661    2016-02-25 15:23:06    2016-02-25 15:23:06
32125    19021    853    2016-02-11 16:37:39    2016-02-11 16:37:39
32126    13141    725    2016-03-19 09:58:03    2016-03-19 09:58:03
32127    15297    551    2016-04-18 03:47:05    2016-04-18 03:47:05
32128    14345    950    2016-01-23 01:47:31    2016-01-23 01:47:31
32129    12038    928    2016-03-20 16:07:24    2016-03-20 16:07:24
32130    10086    756    2016-04-16 00:18:50    2016-04-16 00:18:50
32131    16161    734    2016-04-06 16:19:56    2016-04-06 16:19:56
32132    19835    638    2016-01-23 06:27:25    2016-01-23 06:27:25
32133    15402    578    2016-02-28 16:04:20    2016-02-28 16:04:20
32134    17815    641    2016-03-07 20:58:39    2016-03-07 20:58:39
32135    11599    875    2016-03-22 08:56:22    2016-03-22 08:56:22
32136    10438    864    2016-03-07 07:06:10    2016-03-07 07:06:10
32137    11534    732    2016-02-11 22:28:12    2016-02-11 22:28:12
32138    18166    630    2016-02-26 07:00:17    2016-02-26 07:00:17
32139    14795    641    2016-02-03 13:24:22    2016-02-03 13:24:22
32140    14932    750    2016-01-29 05:55:26    2016-01-29 05:55:26
32141    11549    832    2016-01-26 13:27:58    2016-01-26 13:27:58
32142    19997    770    2016-02-12 09:00:02    2016-02-12 09:00:02
32143    10255    843    2016-04-12 08:28:40    2016-04-12 08:28:40
32144    12710    648    2016-04-18 05:54:01    2016-04-18 05:54:01
32145    17050    526    2016-01-24 07:17:07    2016-01-24 07:17:07
32146    19872    484    2016-04-11 09:08:02    2016-04-11 09:08:02
32147    18151    909    2016-03-11 01:57:23    2016-03-11 01:57:23
32148    11487    849    2016-03-19 21:24:50    2016-03-19 21:24:50
32149    10295    752    2016-03-23 16:39:38    2016-03-23 16:39:38
32150    18613    676    2016-03-14 23:57:59    2016-03-14 23:57:59
32151    18953    841    2016-03-03 09:33:42    2016-03-03 09:33:42
32152    13767    738    2016-02-25 08:11:22    2016-02-25 08:11:22
32153    17507    555    2016-02-09 20:05:20    2016-02-09 20:05:20
32154    12495    757    2016-02-07 04:02:37    2016-02-07 04:02:37
32155    12290    912    2016-02-16 09:45:48    2016-02-16 09:45:48
32156    18387    853    2016-03-26 12:08:30    2016-03-26 12:08:30
32157    10753    767    2016-04-14 00:45:22    2016-04-14 00:45:22
32158    17356    799    2016-03-02 23:23:19    2016-03-02 23:23:19
32159    17718    492    2016-03-11 00:55:54    2016-03-11 00:55:54
32160    10809    488    2016-03-08 18:46:42    2016-03-08 18:46:42
32161    11426    781    2016-03-09 08:44:08    2016-03-09 08:44:08
32162    12205    553    2016-03-23 03:27:12    2016-03-23 03:27:12
32163    14195    673    2016-04-13 07:08:38    2016-04-13 07:08:38
32164    17795    555    2016-04-05 03:05:03    2016-04-05 03:05:03
32165    11918    749    2016-04-16 18:38:11    2016-04-16 18:38:11
32166    17349    771    2016-03-26 04:10:50    2016-03-26 04:10:50
32167    17452    784    2016-02-16 02:44:08    2016-02-16 02:44:08
32168    10447    500    2016-03-15 14:44:37    2016-03-15 14:44:37
32169    17000    892    2016-02-26 14:46:29    2016-02-26 14:46:29
32170    19477    746    2016-03-06 10:01:45    2016-03-06 10:01:45
32171    11448    805    2016-02-04 04:15:23    2016-02-04 04:15:23
32172    17736    943    2016-03-06 13:31:43    2016-03-06 13:31:43
32173    10646    918    2016-02-23 12:51:03    2016-02-23 12:51:03
32174    18618    880    2016-02-25 19:45:16    2016-02-25 19:45:16
32175    12395    664    2016-03-07 13:16:37    2016-03-07 13:16:37
32176    15812    698    2016-02-26 19:20:31    2016-02-26 19:20:31
32177    18247    657    2016-02-06 01:59:01    2016-02-06 01:59:01
32178    19646    463    2016-04-01 08:02:25    2016-04-01 08:02:25
32179    18753    477    2016-02-26 01:14:38    2016-02-26 01:14:38
32180    11257    826    2016-04-03 14:13:47    2016-04-03 14:13:47
32181    15444    519    2016-04-10 00:43:56    2016-04-10 00:43:56
32182    13207    908    2016-02-05 04:11:43    2016-02-05 04:11:43
32183    18201    843    2016-02-16 19:54:18    2016-02-16 19:54:18
32184    19166    718    2016-02-03 08:10:32    2016-02-03 08:10:32
32185    13212    648    2016-04-13 17:26:23    2016-04-13 17:26:23
32186    19917    471    2016-02-11 13:54:29    2016-02-11 13:54:29
32187    14866    906    2016-04-10 13:37:28    2016-04-10 13:37:28
32188    16864    644    2016-02-28 18:07:00    2016-02-28 18:07:00
32189    18164    740    2016-03-08 03:38:58    2016-03-08 03:38:58
32190    13345    694    2016-03-30 11:43:31    2016-03-30 11:43:31
32191    14036    812    2016-01-27 05:27:45    2016-01-27 05:27:45
32192    14955    658    2016-02-11 01:46:59    2016-02-11 01:46:59
32193    13152    742    2016-02-18 06:10:28    2016-02-18 06:10:28
32194    13916    792    2016-02-07 03:29:36    2016-02-07 03:29:36
32195    14400    578    2016-04-13 02:31:33    2016-04-13 02:31:33
32196    19689    924    2016-03-27 12:37:09    2016-03-27 12:37:09
32197    17141    720    2016-01-28 15:41:51    2016-01-28 15:41:51
32198    19641    700    2016-04-13 05:29:46    2016-04-13 05:29:46
32199    16479    895    2016-04-16 08:34:41    2016-04-16 08:34:41
32200    11829    905    2016-01-27 06:30:46    2016-01-27 06:30:46
32201    17962    830    2016-04-17 05:58:00    2016-04-17 05:58:00
32202    19908    602    2016-02-12 23:42:46    2016-02-12 23:42:46
32203    15047    886    2016-03-27 22:07:56    2016-03-27 22:07:56
32204    19372    618    2016-03-26 03:44:29    2016-03-26 03:44:29
32205    16938    482    2016-02-18 19:45:02    2016-02-18 19:45:02
32206    14520    527    2016-03-23 15:57:47    2016-03-23 15:57:47
32207    18295    534    2016-02-07 04:05:27    2016-02-07 04:05:27
32208    10746    690    2016-04-19 16:52:14    2016-04-19 16:52:14
32209    14686    673    2016-04-19 18:46:18    2016-04-19 18:46:18
32210    17624    512    2016-02-26 14:01:21    2016-02-26 14:01:21
32211    18914    829    2016-03-03 17:32:15    2016-03-03 17:32:15
32212    16808    942    2016-02-05 06:24:15    2016-02-05 06:24:15
32213    16883    658    2016-02-20 19:21:29    2016-02-20 19:21:29
32214    12014    835    2016-03-28 21:58:18    2016-03-28 21:58:18
32215    14826    931    2016-02-17 09:12:07    2016-02-17 09:12:07
32216    11580    494    2016-03-05 14:36:34    2016-03-05 14:36:34
32217    18241    548    2016-03-31 00:12:34    2016-03-31 00:12:34
32218    15204    653    2016-04-11 05:31:40    2016-04-11 05:31:40
32219    13803    517    2016-02-09 03:05:42    2016-02-09 03:05:42
32220    11124    824    2016-01-28 01:40:47    2016-01-28 01:40:47
32221    13003    878    2016-02-16 12:10:48    2016-02-16 12:10:48
32222    17144    826    2016-03-21 18:06:55    2016-03-21 18:06:55
32223    12646    640    2016-02-12 04:49:55    2016-02-12 04:49:55
32224    15730    760    2016-03-27 04:07:19    2016-03-27 04:07:19
32225    19458    875    2016-02-22 18:52:30    2016-02-22 18:52:30
32226    10069    840    2016-03-10 20:32:04    2016-03-10 20:32:04
32227    15177    552    2016-03-17 18:26:24    2016-03-17 18:26:24
32228    18635    589    2016-04-07 01:45:15    2016-04-07 01:45:15
32229    17662    606    2016-04-05 19:53:04    2016-04-05 19:53:04
32230    16447    606    2016-02-29 09:51:54    2016-02-29 09:51:54
32231    14761    540    2016-03-24 20:02:28    2016-03-24 20:02:28
32232    12673    718    2016-03-20 20:36:08    2016-03-20 20:36:08
32233    18252    903    2016-02-26 08:45:28    2016-02-26 08:45:28
32234    12777    521    2016-02-08 10:03:02    2016-02-08 10:03:02
32235    14217    482    2016-03-17 08:27:20    2016-03-17 08:27:20
32236    17682    939    2016-02-29 04:27:22    2016-02-29 04:27:22
32237    11931    744    2016-04-07 12:59:47    2016-04-07 12:59:47
32238    12864    734    2016-01-30 02:29:52    2016-01-30 02:29:52
32239    19279    524    2016-04-08 10:52:16    2016-04-08 10:52:16
32240    13157    685    2016-02-09 05:15:44    2016-02-09 05:15:44
32241    18151    704    2016-02-04 05:42:02    2016-02-04 05:42:02
32242    10346    760    2016-01-31 04:59:05    2016-01-31 04:59:05
32243    16816    686    2016-04-18 14:49:07    2016-04-18 14:49:07
32244    15408    924    2016-03-15 22:44:40    2016-03-15 22:44:40
32245    16076    505    2016-02-22 19:44:57    2016-02-22 19:44:57
32246    16505    733    2016-04-16 22:49:56    2016-04-16 22:49:56
32247    19738    745    2016-03-24 17:00:18    2016-03-24 17:00:18
32248    17370    694    2016-03-07 04:48:05    2016-03-07 04:48:05
32249    17071    488    2016-03-17 13:35:56    2016-03-17 13:35:56
32250    10141    603    2016-03-29 08:03:58    2016-03-29 08:03:58
32251    15473    694    2016-04-05 01:25:11    2016-04-05 01:25:11
32252    14649    575    2016-03-12 08:29:10    2016-03-12 08:29:10
32253    14088    917    2016-01-28 13:02:36    2016-01-28 13:02:36
32254    15678    596    2016-02-08 12:07:13    2016-02-08 12:07:13
32255    15573    679    2016-03-02 01:25:45    2016-03-02 01:25:45
32256    15125    687    2016-03-14 20:12:01    2016-03-14 20:12:01
32257    19832    669    2016-02-17 19:27:18    2016-02-17 19:27:18
32258    16598    559    2016-01-27 11:40:21    2016-01-27 11:40:21
32259    15994    530    2016-04-10 03:57:27    2016-04-10 03:57:27
32260    15676    776    2016-02-07 09:24:40    2016-02-07 09:24:40
32261    18861    493    2016-02-17 13:34:13    2016-02-17 13:34:13
32262    16986    532    2016-02-05 05:26:36    2016-02-05 05:26:36
32263    10181    581    2016-04-13 16:13:53    2016-04-13 16:13:53
32264    12128    790    2016-04-02 07:54:50    2016-04-02 07:54:50
32265    13568    621    2016-04-13 08:59:42    2016-04-13 08:59:42
32266    14330    529    2016-03-07 09:15:10    2016-03-07 09:15:10
32267    15528    955    2016-03-23 19:50:10    2016-03-23 19:50:10
32268    14462    902    2016-04-16 14:08:44    2016-04-16 14:08:44
32269    13122    551    2016-02-22 12:02:13    2016-02-22 12:02:13
32270    19788    697    2016-02-03 19:44:04    2016-02-03 19:44:04
32271    19966    757    2016-04-10 19:28:36    2016-04-10 19:28:36
32272    16871    477    2016-03-07 02:07:58    2016-03-07 02:07:58
32273    18232    777    2016-03-14 14:30:07    2016-03-14 14:30:07
32274    14245    764    2016-03-29 08:49:53    2016-03-29 08:49:53
32275    14088    734    2016-03-27 01:04:49    2016-03-27 01:04:49
32276    15007    707    2016-04-11 09:37:55    2016-04-11 09:37:55
32277    12401    501    2016-04-15 20:05:28    2016-04-15 20:05:28
32278    14579    891    2016-02-20 12:57:52    2016-02-20 12:57:52
32279    17413    521    2016-02-03 07:09:17    2016-02-03 07:09:17
32280    10123    651    2016-01-28 03:44:24    2016-01-28 03:44:24
32281    15246    792    2016-03-26 04:29:37    2016-03-26 04:29:37
32282    18410    546    2016-03-16 07:38:00    2016-03-16 07:38:00
32283    18161    585    2016-03-03 08:25:08    2016-03-03 08:25:08
32284    14097    840    2016-03-17 07:36:56    2016-03-17 07:36:56
32285    16090    662    2016-02-21 02:03:39    2016-02-21 02:03:39
32286    16020    854    2016-02-16 10:01:21    2016-02-16 10:01:21
32287    16955    728    2016-04-02 02:09:58    2016-04-02 02:09:58
32288    13270    762    2016-01-31 09:50:44    2016-01-31 09:50:44
32289    18246    742    2016-02-21 00:07:20    2016-02-21 00:07:20
32290    14166    954    2016-02-28 23:33:26    2016-02-28 23:33:26
32291    18758    758    2016-03-25 01:31:04    2016-03-25 01:31:04
32292    16775    560    2016-02-24 01:03:53    2016-02-24 01:03:53
32293    19228    872    2016-02-14 12:26:40    2016-02-14 12:26:40
32294    17827    673    2016-03-27 02:46:27    2016-03-27 02:46:27
32295    19462    830    2016-03-25 13:27:10    2016-03-25 13:27:10
32296    15626    883    2016-01-29 01:35:06    2016-01-29 01:35:06
32297    10793    714    2016-04-20 14:07:10    2016-04-20 14:07:10
32298    15082    498    2016-01-26 20:33:54    2016-01-26 20:33:54
32299    11205    820    2016-02-26 00:32:11    2016-02-26 00:32:11
32300    17965    936    2016-04-17 21:20:09    2016-04-17 21:20:09
32301    13266    584    2016-03-07 19:52:49    2016-03-07 19:52:49
32302    10270    948    2016-03-29 22:46:17    2016-03-29 22:46:17
32303    13261    636    2016-02-20 01:09:08    2016-02-20 01:09:08
32304    17046    579    2016-03-21 12:49:17    2016-03-21 12:49:17
32305    14713    593    2016-03-20 16:58:53    2016-03-20 16:58:53
32306    18685    566    2016-02-25 00:19:59    2016-02-25 00:19:59
32307    12055    697    2016-03-20 10:28:39    2016-03-20 10:28:39
32308    12193    494    2016-04-04 19:54:46    2016-04-04 19:54:46
32309    10097    538    2016-03-01 03:59:13    2016-03-01 03:59:13
32310    11621    760    2016-04-08 16:37:04    2016-04-08 16:37:04
32311    16196    715    2016-02-01 03:10:43    2016-02-01 03:10:43
32312    11566    872    2016-03-27 12:38:26    2016-03-27 12:38:26
32313    11885    682    2016-04-18 12:08:00    2016-04-18 12:08:00
32314    19605    468    2016-03-14 18:23:37    2016-03-14 18:23:37
32315    10993    620    2016-04-01 04:42:22    2016-04-01 04:42:22
32316    12284    864    2016-04-12 23:35:34    2016-04-12 23:35:34
32317    10579    782    2016-02-10 17:54:35    2016-02-10 17:54:35
32318    14793    929    2016-03-16 08:19:07    2016-03-16 08:19:07
32319    16585    959    2016-04-17 08:02:42    2016-04-17 08:02:42
32320    17504    899    2016-02-29 07:17:39    2016-02-29 07:17:39
32321    12104    943    2016-01-26 15:56:46    2016-01-26 15:56:46
32322    14707    589    2016-03-03 14:58:18    2016-03-03 14:58:18
32323    11305    795    2016-01-26 01:05:16    2016-01-26 01:05:16
32324    18798    831    2016-03-13 17:31:04    2016-03-13 17:31:04
32325    19133    838    2016-03-15 03:23:39    2016-03-15 03:23:39
32326    17939    729    2016-01-30 15:04:02    2016-01-30 15:04:02
32327    18026    557    2016-02-29 12:00:15    2016-02-29 12:00:15
32328    10796    812    2016-02-24 05:21:01    2016-02-24 05:21:01
32329    16369    949    2016-02-02 18:11:40    2016-02-02 18:11:40
32330    11821    512    2016-04-13 21:39:25    2016-04-13 21:39:25
32331    10394    525    2016-03-30 22:38:12    2016-03-30 22:38:12
32332    14265    472    2016-03-27 10:14:48    2016-03-27 10:14:48
32333    16209    606    2016-03-23 08:13:06    2016-03-23 08:13:06
32334    15355    834    2016-04-08 22:02:59    2016-04-08 22:02:59
32335    14093    564    2016-01-31 02:42:31    2016-01-31 02:42:31
32336    19227    835    2016-04-12 11:55:30    2016-04-12 11:55:30
32337    12339    795    2016-01-30 05:04:30    2016-01-30 05:04:30
32338    18012    743    2016-04-14 12:13:38    2016-04-14 12:13:38
32339    11022    911    2016-02-15 21:20:03    2016-02-15 21:20:03
32340    10961    545    2016-02-14 06:35:35    2016-02-14 06:35:35
32341    17164    872    2016-01-27 15:04:27    2016-01-27 15:04:27
32342    19688    867    2016-01-29 09:32:27    2016-01-29 09:32:27
32343    16209    729    2016-02-17 13:59:35    2016-02-17 13:59:35
32344    18968    540    2016-04-03 06:38:07    2016-04-03 06:38:07
32345    13350    757    2016-04-13 13:28:07    2016-04-13 13:28:07
32346    12336    913    2016-02-11 12:35:23    2016-02-11 12:35:23
32347    15909    909    2016-04-02 09:09:55    2016-04-02 09:09:55
32348    10584    939    2016-04-17 22:48:58    2016-04-17 22:48:58
32349    18520    587    2016-03-21 00:10:34    2016-03-21 00:10:34
32350    11756    677    2016-03-31 06:25:00    2016-03-31 06:25:00
32351    17624    914    2016-04-19 19:45:36    2016-04-19 19:45:36
32352    14007    533    2016-02-05 11:56:24    2016-02-05 11:56:24
32353    12525    691    2016-04-06 10:04:28    2016-04-06 10:04:28
32354    17963    675    2016-02-16 15:15:45    2016-02-16 15:15:45
32355    17132    564    2016-02-03 17:48:32    2016-02-03 17:48:32
32356    15347    842    2016-02-28 04:47:27    2016-02-28 04:47:27
32357    17024    899    2016-02-17 14:34:54    2016-02-17 14:34:54
32358    16578    659    2016-03-11 21:25:57    2016-03-11 21:25:57
32359    18820    648    2016-02-14 14:56:38    2016-02-14 14:56:38
32360    19539    924    2016-03-23 04:38:18    2016-03-23 04:38:18
32361    17036    825    2016-02-19 06:40:53    2016-02-19 06:40:53
32362    17817    886    2016-01-31 18:59:55    2016-01-31 18:59:55
32363    16596    860    2016-03-02 10:03:29    2016-03-02 10:03:29
32364    13587    659    2016-03-19 18:02:30    2016-03-19 18:02:30
32365    14660    510    2016-02-19 15:11:25    2016-02-19 15:11:25
32366    12041    550    2016-03-16 15:40:52    2016-03-16 15:40:52
32367    12913    658    2016-03-03 05:15:59    2016-03-03 05:15:59
32368    11093    925    2016-04-14 09:20:20    2016-04-14 09:20:20
32369    13702    602    2016-03-21 06:16:47    2016-03-21 06:16:47
32370    19889    634    2016-04-01 19:42:35    2016-04-01 19:42:35
32371    13683    549    2016-02-20 04:56:22    2016-02-20 04:56:22
32372    14336    897    2016-02-27 03:18:40    2016-02-27 03:18:40
32373    11392    955    2016-02-24 14:45:13    2016-02-24 14:45:13
32374    17852    600    2016-02-29 02:46:29    2016-02-29 02:46:29
32375    19643    942    2016-02-10 04:33:03    2016-02-10 04:33:03
32376    10549    691    2016-04-17 00:55:01    2016-04-17 00:55:01
32377    16442    594    2016-02-23 09:35:28    2016-02-23 09:35:28
32378    18225    576    2016-02-14 23:10:01    2016-02-14 23:10:01
32379    17904    477    2016-03-28 17:41:44    2016-03-28 17:41:44
32380    17818    717    2016-02-25 13:12:08    2016-02-25 13:12:08
32381    13273    651    2016-03-11 22:44:31    2016-03-11 22:44:31
32382    11618    642    2016-04-09 09:03:53    2016-04-09 09:03:53
32383    10965    700    2016-02-01 04:08:01    2016-02-01 04:08:01
32384    11271    488    2016-02-26 08:34:47    2016-02-26 08:34:47
32385    11164    493    2016-03-07 07:48:07    2016-03-07 07:48:07
32386    12339    925    2016-02-07 16:14:05    2016-02-07 16:14:05
32387    18009    523    2016-02-09 10:16:08    2016-02-09 10:16:08
32388    14371    612    2016-04-04 10:24:58    2016-04-04 10:24:58
32389    17333    759    2016-03-27 17:36:37    2016-03-27 17:36:37
32390    19687    957    2016-03-22 20:01:17    2016-03-22 20:01:17
32391    13114    842    2016-02-26 19:00:16    2016-02-26 19:00:16
32392    14260    831    2016-03-30 15:58:07    2016-03-30 15:58:07
32393    12670    649    2016-03-16 02:22:36    2016-03-16 02:22:36
32394    18906    539    2016-03-19 04:43:02    2016-03-19 04:43:02
32395    10355    696    2016-01-31 20:09:16    2016-01-31 20:09:16
32396    14170    855    2016-02-25 22:02:45    2016-02-25 22:02:45
32397    17559    722    2016-03-30 16:30:17    2016-03-30 16:30:17
32398    13723    520    2016-02-28 15:48:51    2016-02-28 15:48:51
32399    19883    578    2016-03-26 19:11:30    2016-03-26 19:11:30
32400    11699    715    2016-04-02 15:08:54    2016-04-02 15:08:54
32401    16992    862    2016-03-08 19:04:10    2016-03-08 19:04:10
32402    15562    491    2016-02-20 07:30:00    2016-02-20 07:30:00
32403    11516    726    2016-02-04 09:05:30    2016-02-04 09:05:30
32404    10105    921    2016-04-03 00:41:51    2016-04-03 00:41:51
32405    17194    579    2016-04-04 15:35:51    2016-04-04 15:35:51
32406    16301    501    2016-04-02 01:30:23    2016-04-02 01:30:23
32407    10994    737    2016-04-07 07:42:57    2016-04-07 07:42:57
32408    18168    629    2016-03-09 18:02:08    2016-03-09 18:02:08
32409    14125    653    2016-03-28 06:37:04    2016-03-28 06:37:04
32410    10124    792    2016-04-16 19:32:14    2016-04-16 19:32:14
32411    18870    646    2016-01-23 06:19:57    2016-01-23 06:19:57
32412    17484    745    2016-04-06 00:43:33    2016-04-06 00:43:33
32413    16136    577    2016-03-07 03:41:28    2016-03-07 03:41:28
32414    19945    700    2016-01-27 05:19:21    2016-01-27 05:19:21
32415    13509    761    2016-04-19 13:50:56    2016-04-19 13:50:56
32416    18698    570    2016-04-12 03:32:03    2016-04-12 03:32:03
32417    17275    669    2016-03-14 16:59:40    2016-03-14 16:59:40
32418    12862    717    2016-03-27 19:26:23    2016-03-27 19:26:23
32419    14615    776    2016-02-10 02:59:42    2016-02-10 02:59:42
32420    12494    621    2016-02-25 18:55:38    2016-02-25 18:55:38
32421    10640    741    2016-02-20 09:16:48    2016-02-20 09:16:48
32422    11986    892    2016-03-25 01:30:14    2016-03-25 01:30:14
32423    16047    804    2016-03-03 12:18:44    2016-03-03 12:18:44
32424    14708    907    2016-01-23 20:13:57    2016-01-23 20:13:57
32425    12791    832    2016-02-20 16:19:20    2016-02-20 16:19:20
32426    13733    890    2016-03-22 18:13:07    2016-03-22 18:13:07
32427    11466    811    2016-02-01 22:59:38    2016-02-01 22:59:38
32428    13189    891    2016-01-25 15:21:18    2016-01-25 15:21:18
32429    18212    845    2016-02-25 20:45:34    2016-02-25 20:45:34
32430    12046    664    2016-02-21 14:29:01    2016-02-21 14:29:01
32431    14377    763    2016-02-28 19:49:38    2016-02-28 19:49:38
32432    12343    476    2016-04-02 03:12:59    2016-04-02 03:12:59
32433    15484    953    2016-02-15 14:53:43    2016-02-15 14:53:43
32434    16256    730    2016-02-17 07:23:43    2016-02-17 07:23:43
32435    15363    800    2016-03-15 05:55:45    2016-03-15 05:55:45
32436    14686    737    2016-04-04 07:52:27    2016-04-04 07:52:27
32437    13912    817    2016-03-31 09:52:58    2016-03-31 09:52:58
32438    11508    934    2016-02-07 18:57:20    2016-02-07 18:57:20
32439    11461    809    2016-01-27 23:15:06    2016-01-27 23:15:06
32440    13745    723    2016-03-10 10:50:04    2016-03-10 10:50:04
32441    13656    925    2016-02-11 16:46:33    2016-02-11 16:46:33
32442    16830    955    2016-04-07 22:28:11    2016-04-07 22:28:11
32443    16037    960    2016-03-11 12:16:44    2016-03-11 12:16:44
32444    10526    834    2016-03-25 22:13:23    2016-03-25 22:13:23
32445    17952    950    2016-03-19 07:56:37    2016-03-19 07:56:37
32446    18100    679    2016-01-27 08:56:57    2016-01-27 08:56:57
32447    16091    831    2016-02-24 13:42:37    2016-02-24 13:42:37
32448    14196    565    2016-02-11 21:59:19    2016-02-11 21:59:19
32449    12645    543    2016-03-18 13:53:47    2016-03-18 13:53:47
32450    14298    499    2016-02-10 21:17:41    2016-02-10 21:17:41
32451    18043    872    2016-02-04 22:12:15    2016-02-04 22:12:15
32452    14181    549    2016-03-04 15:43:15    2016-03-04 15:43:15
32453    14803    631    2016-01-24 13:24:20    2016-01-24 13:24:20
32454    14975    745    2016-01-27 08:42:20    2016-01-27 08:42:20
32455    12050    629    2016-04-07 06:59:54    2016-04-07 06:59:54
32456    13575    564    2016-01-24 11:28:12    2016-01-24 11:28:12
32457    16503    583    2016-03-11 03:11:41    2016-03-11 03:11:41
32458    15035    755    2016-02-18 11:28:41    2016-02-18 11:28:41
32459    19582    792    2016-03-21 11:59:45    2016-03-21 11:59:45
32460    18878    913    2016-03-25 05:39:54    2016-03-25 05:39:54
32461    19269    703    2016-01-30 05:15:18    2016-01-30 05:15:18
32462    19910    899    2016-03-29 11:25:55    2016-03-29 11:25:55
32463    11775    565    2016-03-14 11:12:18    2016-03-14 11:12:18
32464    19975    949    2016-03-30 23:56:35    2016-03-30 23:56:35
32465    18352    894    2016-01-28 09:46:25    2016-01-28 09:46:25
32466    10368    671    2016-04-17 01:55:24    2016-04-17 01:55:24
32467    13596    604    2016-01-24 11:35:22    2016-01-24 11:35:22
32468    15507    928    2016-03-24 02:42:31    2016-03-24 02:42:31
32469    11519    787    2016-04-15 09:12:05    2016-04-15 09:12:05
32470    10255    817    2016-03-03 11:34:10    2016-03-03 11:34:10
32471    10849    599    2016-03-07 07:20:32    2016-03-07 07:20:32
32472    10402    759    2016-02-20 00:24:41    2016-02-20 00:24:41
32473    14134    810    2016-04-12 21:53:32    2016-04-12 21:53:32
32474    19054    597    2016-02-24 00:08:49    2016-02-24 00:08:49
32475    12267    625    2016-03-01 00:57:28    2016-03-01 00:57:28
32476    15912    957    2016-01-30 23:22:55    2016-01-30 23:22:55
32477    13352    622    2016-03-11 14:30:06    2016-03-11 14:30:06
32478    14943    866    2016-03-06 20:27:42    2016-03-06 20:27:42
32479    13494    688    2016-04-19 18:21:48    2016-04-19 18:21:48
32480    11389    817    2016-03-29 15:28:26    2016-03-29 15:28:26
32481    14243    822    2016-01-25 02:17:28    2016-01-25 02:17:28
32482    13040    526    2016-04-17 14:00:37    2016-04-17 14:00:37
32483    19201    717    2016-03-24 06:13:52    2016-03-24 06:13:52
32484    13803    695    2016-04-12 01:05:55    2016-04-12 01:05:55
32485    11386    491    2016-04-07 13:01:37    2016-04-07 13:01:37
32486    15804    681    2016-01-25 10:14:43    2016-01-25 10:14:43
32487    15970    556    2016-03-22 09:05:14    2016-03-22 09:05:14
32488    17877    475    2016-03-20 21:08:01    2016-03-20 21:08:01
32489    11502    631    2016-02-01 21:16:17    2016-02-01 21:16:17
32490    13517    909    2016-03-28 23:43:17    2016-03-28 23:43:17
32491    17878    593    2016-02-25 00:14:34    2016-02-25 00:14:34
32492    14332    921    2016-04-19 12:13:09    2016-04-19 12:13:09
32493    13359    797    2016-03-03 09:19:02    2016-03-03 09:19:02
32494    17215    698    2016-04-16 16:31:10    2016-04-16 16:31:10
32495    18946    845    2016-04-20 06:33:35    2016-04-20 06:33:35
32496    17748    782    2016-02-03 05:05:45    2016-02-03 05:05:45
32497    14756    685    2016-04-06 18:08:11    2016-04-06 18:08:11
32498    11563    915    2016-03-03 02:38:51    2016-03-03 02:38:51
32499    11020    497    2016-02-07 18:24:02    2016-02-07 18:24:02
32500    11555    593    2016-03-06 14:29:06    2016-03-06 14:29:06
32501    11905    900    2016-02-11 16:46:39    2016-02-11 16:46:39
32502    11082    845    2016-03-08 02:03:14    2016-03-08 02:03:14
32503    19286    783    2016-04-04 12:30:13    2016-04-04 12:30:13
32504    11318    556    2016-01-23 02:03:31    2016-01-23 02:03:31
32505    14666    757    2016-03-07 21:16:26    2016-03-07 21:16:26
32506    10344    847    2016-03-05 00:14:24    2016-03-05 00:14:24
32507    18425    805    2016-03-20 08:00:30    2016-03-20 08:00:30
32508    17158    906    2016-03-18 05:33:16    2016-03-18 05:33:16
32509    14652    794    2016-03-22 07:09:03    2016-03-22 07:09:03
32510    13167    718    2016-02-18 18:28:40    2016-02-18 18:28:40
32511    19771    842    2016-04-07 22:55:51    2016-04-07 22:55:51
32512    15872    715    2016-03-15 15:31:43    2016-03-15 15:31:43
32513    17486    629    2016-03-06 04:14:22    2016-03-06 04:14:22
32514    17126    560    2016-03-31 09:59:16    2016-03-31 09:59:16
32515    14092    927    2016-03-24 21:19:27    2016-03-24 21:19:27
32516    10790    864    2016-04-17 22:45:51    2016-04-17 22:45:51
32517    10368    712    2016-04-01 01:26:21    2016-04-01 01:26:21
32518    10454    549    2016-02-17 14:13:48    2016-02-17 14:13:48
32519    11681    615    2016-03-10 14:22:09    2016-03-10 14:22:09
32520    12240    916    2016-02-16 11:16:38    2016-02-16 11:16:38
32521    18383    523    2016-02-03 22:55:21    2016-02-03 22:55:21
32522    15002    942    2016-03-27 08:52:33    2016-03-27 08:52:33
32523    10385    569    2016-02-11 22:13:22    2016-02-11 22:13:22
32524    11291    732    2016-04-02 16:08:16    2016-04-02 16:08:16
32525    17913    921    2016-03-08 06:46:34    2016-03-08 06:46:34
32526    15077    484    2016-03-19 17:52:45    2016-03-19 17:52:45
32527    17206    544    2016-01-27 01:15:56    2016-01-27 01:15:56
32528    13130    471    2016-01-31 02:37:38    2016-01-31 02:37:38
32529    16438    895    2016-02-07 07:35:57    2016-02-07 07:35:57
32530    18428    777    2016-02-14 09:36:21    2016-02-14 09:36:21
32531    11789    647    2016-01-23 06:50:07    2016-01-23 06:50:07
32532    19058    648    2016-03-28 21:49:00    2016-03-28 21:49:00
32533    14627    669    2016-02-21 22:50:31    2016-02-21 22:50:31
32534    13670    837    2016-03-10 08:53:47    2016-03-10 08:53:47
32535    19090    727    2016-03-28 08:49:04    2016-03-28 08:49:04
32536    19865    699    2016-04-10 07:01:17    2016-04-10 07:01:17
32537    17094    552    2016-03-25 06:04:12    2016-03-25 06:04:12
32538    10880    688    2016-03-25 21:50:35    2016-03-25 21:50:35
32539    14398    721    2016-02-10 01:46:13    2016-02-10 01:46:13
32540    18295    597    2016-02-18 01:02:43    2016-02-18 01:02:43
32541    19326    806    2016-04-11 13:30:41    2016-04-11 13:30:41
32542    18889    717    2016-03-18 00:19:07    2016-03-18 00:19:07
32543    12736    518    2016-02-16 07:44:47    2016-02-16 07:44:47
32544    13579    577    2016-03-07 00:52:52    2016-03-07 00:52:52
32545    16041    715    2016-03-09 12:05:25    2016-03-09 12:05:25
32546    14761    951    2016-02-13 20:38:32    2016-02-13 20:38:32
32547    13028    622    2016-02-05 17:43:15    2016-02-05 17:43:15
32548    10128    696    2016-02-11 06:52:51    2016-02-11 06:52:51
32549    18936    618    2016-02-08 09:34:23    2016-02-08 09:34:23
32550    18926    515    2016-02-25 15:11:13    2016-02-25 15:11:13
32551    18783    615    2016-04-12 22:29:18    2016-04-12 22:29:18
32552    11194    560    2016-03-19 08:01:37    2016-03-19 08:01:37
32553    17991    869    2016-02-15 16:53:41    2016-02-15 16:53:41
32554    14674    756    2016-04-19 13:19:57    2016-04-19 13:19:57
32555    17334    549    2016-02-07 12:48:16    2016-02-07 12:48:16
32556    19528    808    2016-02-25 18:25:53    2016-02-25 18:25:53
32557    16232    493    2016-03-18 23:10:38    2016-03-18 23:10:38
32558    17414    571    2016-03-21 04:29:14    2016-03-21 04:29:14
32559    13567    947    2016-02-12 09:50:13    2016-02-12 09:50:13
32560    13530    756    2016-02-28 07:41:57    2016-02-28 07:41:57
32561    14338    882    2016-02-12 20:33:04    2016-02-12 20:33:04
32562    16626    581    2016-02-28 00:34:22    2016-02-28 00:34:22
32563    15092    758    2016-02-27 09:39:22    2016-02-27 09:39:22
32564    11963    846    2016-03-11 00:42:34    2016-03-11 00:42:34
32565    14917    803    2016-01-31 23:19:46    2016-01-31 23:19:46
32566    11913    536    2016-02-19 06:52:08    2016-02-19 06:52:08
32567    18013    696    2016-04-18 20:44:53    2016-04-18 20:44:53
32568    17023    857    2016-04-01 18:25:48    2016-04-01 18:25:48
32569    15972    570    2016-04-16 07:40:14    2016-04-16 07:40:14
32570    12928    677    2016-02-26 17:14:24    2016-02-26 17:14:24
32571    19064    858    2016-02-26 11:33:17    2016-02-26 11:33:17
32572    12642    923    2016-02-21 02:58:29    2016-02-21 02:58:29
32573    19126    520    2016-03-12 03:51:25    2016-03-12 03:51:25
32574    17857    947    2016-02-10 02:16:03    2016-02-10 02:16:03
32575    16620    705    2016-02-12 13:56:41    2016-02-12 13:56:41
32576    19882    945    2016-03-05 21:38:41    2016-03-05 21:38:41
32577    11606    581    2016-02-25 23:37:03    2016-02-25 23:37:03
32578    15545    487    2016-02-23 19:42:22    2016-02-23 19:42:22
32579    13214    841    2016-04-16 01:21:45    2016-04-16 01:21:45
32580    11637    616    2016-03-24 05:58:08    2016-03-24 05:58:08
32581    16045    939    2016-02-08 16:09:20    2016-02-08 16:09:20
32582    19762    751    2016-04-09 15:48:24    2016-04-09 15:48:24
32583    10433    878    2016-01-24 08:21:36    2016-01-24 08:21:36
32584    15270    574    2016-01-29 21:01:23    2016-01-29 21:01:23
32585    10551    522    2016-03-25 06:40:02    2016-03-25 06:40:02
32586    10942    724    2016-01-27 04:14:33    2016-01-27 04:14:33
32587    12680    490    2016-04-07 16:04:10    2016-04-07 16:04:10
32588    11912    467    2016-03-04 15:45:52    2016-03-04 15:45:52
32589    18576    553    2016-02-03 12:13:51    2016-02-03 12:13:51
32590    18783    761    2016-02-14 07:35:11    2016-02-14 07:35:11
32591    12093    884    2016-03-02 13:31:21    2016-03-02 13:31:21
32592    16885    839    2016-02-24 01:33:17    2016-02-24 01:33:17
32593    18156    744    2016-04-19 11:01:34    2016-04-19 11:01:34
32594    12953    708    2016-04-16 23:21:22    2016-04-16 23:21:22
32595    10141    618    2016-04-16 14:18:10    2016-04-16 14:18:10
32596    18641    530    2016-01-23 01:00:25    2016-01-23 01:00:25
32597    13737    714    2016-02-27 09:51:55    2016-02-27 09:51:55
32598    18081    949    2016-02-21 01:21:44    2016-02-21 01:21:44
32599    11746    727    2016-03-15 00:55:43    2016-03-15 00:55:43
32600    10347    933    2016-02-20 02:48:12    2016-02-20 02:48:12
32601    10456    873    2016-04-15 02:35:10    2016-04-15 02:35:10
32602    15640    608    2016-04-12 22:27:56    2016-04-12 22:27:56
32603    13013    601    2016-02-10 00:28:06    2016-02-10 00:28:06
32604    16087    906    2016-03-02 13:46:08    2016-03-02 13:46:08
32605    16147    519    2016-02-06 01:38:54    2016-02-06 01:38:54
32606    14747    959    2016-04-19 14:09:27    2016-04-19 14:09:27
32607    13067    661    2016-04-18 09:41:56    2016-04-18 09:41:56
32608    17963    579    2016-02-22 06:58:10    2016-02-22 06:58:10
32609    10653    638    2016-02-27 21:47:46    2016-02-27 21:47:46
32610    17322    924    2016-02-26 11:28:09    2016-02-26 11:28:09
32611    16702    536    2016-01-23 19:15:42    2016-01-23 19:15:42
32612    15835    793    2016-03-12 08:34:01    2016-03-12 08:34:01
32613    15863    517    2016-04-18 05:35:15    2016-04-18 05:35:15
32614    14290    937    2016-03-05 14:32:31    2016-03-05 14:32:31
32615    12912    903    2016-03-15 00:43:54    2016-03-15 00:43:54
32616    19722    880    2016-02-07 11:52:48    2016-02-07 11:52:48
32617    16777    535    2016-01-23 19:37:53    2016-01-23 19:37:53
32618    14701    484    2016-04-06 19:11:11    2016-04-06 19:11:11
32619    15917    666    2016-03-19 20:21:11    2016-03-19 20:21:11
32620    11167    728    2016-03-28 10:34:01    2016-03-28 10:34:01
32621    17138    664    2016-03-08 03:00:10    2016-03-08 03:00:10
32622    15036    736    2016-02-08 06:51:09    2016-02-08 06:51:09
32623    12354    810    2016-04-08 02:09:38    2016-04-08 02:09:38
32624    18197    800    2016-02-04 16:12:39    2016-02-04 16:12:39
32625    19210    902    2016-02-21 09:56:19    2016-02-21 09:56:19
32626    10924    755    2016-03-16 08:52:39    2016-03-16 08:52:39
32627    17414    886    2016-02-22 13:28:58    2016-02-22 13:28:58
32628    10730    759    2016-03-31 21:52:34    2016-03-31 21:52:34
32629    11430    518    2016-03-24 10:35:09    2016-03-24 10:35:09
32630    11756    688    2016-03-15 19:42:20    2016-03-15 19:42:20
32631    12725    921    2016-02-02 09:27:39    2016-02-02 09:27:39
32632    17772    603    2016-02-21 07:07:31    2016-02-21 07:07:31
32633    15850    885    2016-02-13 19:39:26    2016-02-13 19:39:26
32634    14122    910    2016-04-11 13:26:38    2016-04-11 13:26:38
32635    14723    635    2016-01-25 01:23:42    2016-01-25 01:23:42
32636    16758    594    2016-01-28 07:17:09    2016-01-28 07:17:09
32637    16599    468    2016-01-30 16:01:25    2016-01-30 16:01:25
32638    14860    706    2016-04-17 13:57:09    2016-04-17 13:57:09
32639    14038    775    2016-02-18 00:40:12    2016-02-18 00:40:12
32640    17339    730    2016-03-01 05:57:31    2016-03-01 05:57:31
32641    18610    667    2016-02-18 01:39:27    2016-02-18 01:39:27
32642    14942    612    2016-03-30 14:53:56    2016-03-30 14:53:56
32643    16718    573    2016-03-11 09:45:55    2016-03-11 09:45:55
32644    14135    718    2016-04-17 09:21:55    2016-04-17 09:21:55
32645    11666    692    2016-01-25 12:58:26    2016-01-25 12:58:26
32646    14923    837    2016-04-16 22:27:45    2016-04-16 22:27:45
32647    16301    833    2016-03-27 17:56:00    2016-03-27 17:56:00
32648    15602    794    2016-02-24 11:06:25    2016-02-24 11:06:25
32649    18801    848    2016-04-08 06:40:10    2016-04-08 06:40:10
32650    10215    762    2016-03-21 12:02:20    2016-03-21 12:02:20
32651    12880    742    2016-02-29 11:12:52    2016-02-29 11:12:52
32652    15962    555    2016-03-30 23:46:49    2016-03-30 23:46:49
32653    19963    941    2016-02-25 01:09:51    2016-02-25 01:09:51
32654    12073    535    2016-02-18 11:04:56    2016-02-18 11:04:56
32655    15890    645    2016-01-23 03:24:56    2016-01-23 03:24:56
32656    16958    774    2016-04-01 18:23:37    2016-04-01 18:23:37
32657    14415    646    2016-04-18 22:10:48    2016-04-18 22:10:48
32658    10694    669    2016-02-12 20:17:00    2016-02-12 20:17:00
32659    17700    570    2016-02-25 00:01:25    2016-02-25 00:01:25
32660    15153    711    2016-01-31 06:09:21    2016-01-31 06:09:21
32661    15232    570    2016-03-17 11:50:05    2016-03-17 11:50:05
32662    19397    921    2016-02-14 21:10:41    2016-02-14 21:10:41
32663    18807    473    2016-02-03 17:02:01    2016-02-03 17:02:01
32664    10961    731    2016-04-02 18:58:32    2016-04-02 18:58:32
32665    14282    757    2016-03-23 02:38:12    2016-03-23 02:38:12
32666    18460    617    2016-01-29 12:07:58    2016-01-29 12:07:58
32667    10036    672    2016-04-12 09:35:41    2016-04-12 09:35:41
32668    14938    644    2016-03-02 15:57:33    2016-03-02 15:57:33
32669    13207    528    2016-03-25 05:03:30    2016-03-25 05:03:30
32670    16379    860    2016-01-27 02:52:23    2016-01-27 02:52:23
32671    17712    859    2016-03-08 22:32:19    2016-03-08 22:32:19
32672    14233    686    2016-04-08 13:00:53    2016-04-08 13:00:53
32673    11041    533    2016-03-31 07:22:44    2016-03-31 07:22:44
32674    16073    956    2016-03-27 10:20:51    2016-03-27 10:20:51
32675    19584    698    2016-02-25 11:37:45    2016-02-25 11:37:45
32676    17878    677    2016-03-22 13:00:38    2016-03-22 13:00:38
32677    13370    540    2016-02-24 05:11:02    2016-02-24 05:11:02
32678    11403    682    2016-02-08 00:35:37    2016-02-08 00:35:37
32679    17743    804    2016-02-08 20:49:49    2016-02-08 20:49:49
32680    14650    822    2016-02-16 00:52:17    2016-02-16 00:52:17
32681    10722    637    2016-04-01 23:00:02    2016-04-01 23:00:02
32682    18255    550    2016-02-22 20:07:24    2016-02-22 20:07:24
32683    11326    871    2016-04-18 23:20:45    2016-04-18 23:20:45
32684    16925    514    2016-02-15 03:49:19    2016-02-15 03:49:19
32685    16897    757    2016-03-17 00:03:37    2016-03-17 00:03:37
32686    16093    638    2016-03-29 14:46:57    2016-03-29 14:46:57
32687    15670    879    2016-01-26 15:45:14    2016-01-26 15:45:14
32688    10308    845    2016-04-14 03:04:20    2016-04-14 03:04:20
32689    15482    644    2016-01-25 00:49:00    2016-01-25 00:49:00
32690    10381    620    2016-01-25 03:22:08    2016-01-25 03:22:08
32691    10996    728    2016-03-01 12:48:27    2016-03-01 12:48:27
32692    19896    650    2016-02-15 06:09:37    2016-02-15 06:09:37
32693    16024    777    2016-03-15 22:48:39    2016-03-15 22:48:39
32694    17033    959    2016-02-05 06:15:01    2016-02-05 06:15:01
32695    12883    636    2016-02-01 11:32:26    2016-02-01 11:32:26
32696    16863    561    2016-04-03 01:43:35    2016-04-03 01:43:35
32697    17026    686    2016-03-03 04:25:39    2016-03-03 04:25:39
32698    19752    550    2016-03-06 17:27:47    2016-03-06 17:27:47
32699    19373    662    2016-01-23 20:10:13    2016-01-23 20:10:13
32700    11037    766    2016-04-08 20:58:53    2016-04-08 20:58:53
32701    11849    748    2016-03-19 03:21:54    2016-03-19 03:21:54
32702    19492    840    2016-03-14 23:27:31    2016-03-14 23:27:31
32703    11944    725    2016-01-28 08:18:41    2016-01-28 08:18:41
32704    14503    821    2016-03-30 04:39:54    2016-03-30 04:39:54
32705    13350    750    2016-02-14 15:24:36    2016-02-14 15:24:36
32706    15758    919    2016-02-28 01:56:35    2016-02-28 01:56:35
32707    17208    512    2016-03-16 01:25:01    2016-03-16 01:25:01
32708    10509    579    2016-04-13 17:47:53    2016-04-13 17:47:53
32709    16181    828    2016-02-04 12:59:10    2016-02-04 12:59:10
32710    10866    933    2016-02-09 10:46:53    2016-02-09 10:46:53
32711    14015    788    2016-02-27 09:00:49    2016-02-27 09:00:49
32712    16276    887    2016-04-03 03:38:07    2016-04-03 03:38:07
32713    15468    590    2016-02-18 02:56:38    2016-02-18 02:56:38
32714    10571    521    2016-02-29 01:05:16    2016-02-29 01:05:16
32715    13112    703    2016-01-27 23:20:26    2016-01-27 23:20:26
32716    13369    589    2016-04-18 01:50:04    2016-04-18 01:50:04
32717    19329    518    2016-02-08 02:19:36    2016-02-08 02:19:36
32718    10701    745    2016-01-28 07:22:29    2016-01-28 07:22:29
32719    15298    663    2016-02-29 23:19:25    2016-02-29 23:19:25
32720    12328    896    2016-01-25 15:37:31    2016-01-25 15:37:31
32721    19906    908    2016-02-22 03:24:57    2016-02-22 03:24:57
32722    16191    723    2016-02-22 04:13:46    2016-02-22 04:13:46
32723    13658    466    2016-03-22 05:08:51    2016-03-22 05:08:51
32724    16104    610    2016-03-27 18:45:29    2016-03-27 18:45:29
32725    12786    604    2016-03-21 03:58:27    2016-03-21 03:58:27
32726    14146    954    2016-02-15 17:38:46    2016-02-15 17:38:46
32727    18025    647    2016-03-26 08:35:13    2016-03-26 08:35:13
32728    18098    557    2016-01-25 01:34:32    2016-01-25 01:34:32
32729    17355    922    2016-03-09 23:38:38    2016-03-09 23:38:38
32730    15589    552    2016-03-17 04:46:03    2016-03-17 04:46:03
32731    18180    895    2016-02-10 08:25:31    2016-02-10 08:25:31
32732    11496    529    2016-02-08 09:23:57    2016-02-08 09:23:57
32733    12292    928    2016-02-12 05:57:18    2016-02-12 05:57:18
32734    17790    626    2016-03-15 11:16:42    2016-03-15 11:16:42
32735    14638    818    2016-03-08 08:23:20    2016-03-08 08:23:20
32736    15896    513    2016-01-28 07:53:24    2016-01-28 07:53:24
32737    12171    492    2016-02-04 08:11:41    2016-02-04 08:11:41
32738    14684    731    2016-03-28 12:08:08    2016-03-28 12:08:08
32739    14290    835    2016-02-26 21:58:04    2016-02-26 21:58:04
32740    10150    520    2016-03-29 18:40:39    2016-03-29 18:40:39
32741    14673    778    2016-01-24 21:56:33    2016-01-24 21:56:33
32742    19190    464    2016-03-26 05:02:34    2016-03-26 05:02:34
32743    18008    824    2016-03-14 06:52:51    2016-03-14 06:52:51
32744    15097    958    2016-03-02 06:16:27    2016-03-02 06:16:27
32745    13147    842    2016-04-11 16:49:23    2016-04-11 16:49:23
32746    17057    508    2016-02-04 23:33:15    2016-02-04 23:33:15
32747    15733    486    2016-02-19 05:25:22    2016-02-19 05:25:22
32748    17786    539    2016-02-26 01:01:50    2016-02-26 01:01:50
32749    15842    726    2016-04-02 10:47:33    2016-04-02 10:47:33
32750    15342    893    2016-02-21 14:07:43    2016-02-21 14:07:43
32751    19592    952    2016-03-03 20:11:26    2016-03-03 20:11:26
32752    13236    734    2016-02-07 12:55:47    2016-02-07 12:55:47
32753    17609    866    2016-03-28 21:03:37    2016-03-28 21:03:37
32754    11431    512    2016-03-18 20:24:46    2016-03-18 20:24:46
32755    10696    961    2016-02-24 23:19:11    2016-02-24 23:19:11
32756    18047    571    2016-02-13 22:20:29    2016-02-13 22:20:29
32757    13069    890    2016-02-25 21:39:24    2016-02-25 21:39:24
32758    10392    535    2016-04-13 01:49:03    2016-04-13 01:49:03
32759    13001    604    2016-04-07 05:37:33    2016-04-07 05:37:33
32760    17586    674    2016-01-26 08:36:54    2016-01-26 08:36:54
32761    15362    873    2016-02-01 12:46:08    2016-02-01 12:46:08
32762    15695    694    2016-02-14 11:14:47    2016-02-14 11:14:47
32763    15291    514    2016-04-10 18:33:35    2016-04-10 18:33:35
32764    17428    506    2016-02-08 11:30:56    2016-02-08 11:30:56
32765    15734    648    2016-02-29 05:09:42    2016-02-29 05:09:42
32766    17765    772    2016-04-11 16:03:34    2016-04-11 16:03:34
32767    16531    581    2016-01-24 13:22:03    2016-01-24 13:22:03
32768    14692    791    2016-04-11 11:24:33    2016-04-11 11:24:33
32769    19635    784    2016-03-21 16:17:44    2016-03-21 16:17:44
32770    11724    543    2016-04-06 00:27:42    2016-04-06 00:27:42
32771    12532    956    2016-03-12 09:18:30    2016-03-12 09:18:30
32772    17963    572    2016-01-26 00:39:33    2016-01-26 00:39:33
32773    17528    561    2016-02-02 13:15:56    2016-02-02 13:15:56
32774    13212    482    2016-02-07 18:05:36    2016-02-07 18:05:36
32775    17015    680    2016-02-06 12:19:28    2016-02-06 12:19:28
32776    13995    698    2016-02-27 07:58:04    2016-02-27 07:58:04
32777    11286    576    2016-02-27 23:53:51    2016-02-27 23:53:51
32778    14147    870    2016-02-08 02:37:09    2016-02-08 02:37:09
32779    13170    637    2016-01-23 21:20:47    2016-01-23 21:20:47
32780    18962    876    2016-04-06 09:02:33    2016-04-06 09:02:33
32781    19355    551    2016-02-07 21:28:40    2016-02-07 21:28:40
32782    11267    931    2016-01-28 22:16:43    2016-01-28 22:16:43
32783    19291    632    2016-01-24 06:27:24    2016-01-24 06:27:24
32784    16052    889    2016-03-23 09:12:03    2016-03-23 09:12:03
32785    14486    955    2016-03-11 13:28:05    2016-03-11 13:28:05
32786    19142    506    2016-02-10 08:12:56    2016-02-10 08:12:56
32787    12473    490    2016-03-11 22:17:48    2016-03-11 22:17:48
32788    18551    784    2016-03-03 17:19:27    2016-03-03 17:19:27
32789    16550    643    2016-02-04 14:14:46    2016-02-04 14:14:46
32790    15069    535    2016-03-29 02:43:26    2016-03-29 02:43:26
32791    18349    499    2016-02-23 20:24:33    2016-02-23 20:24:33
32792    16720    944    2016-03-18 11:32:32    2016-03-18 11:32:32
32793    16194    935    2016-03-07 17:36:13    2016-03-07 17:36:13
32794    10689    553    2016-02-08 08:47:53    2016-02-08 08:47:53
32795    12443    679    2016-02-09 02:26:28    2016-02-09 02:26:28
32796    14445    900    2016-02-29 08:13:09    2016-02-29 08:13:09
32797    17512    839    2016-02-04 00:01:42    2016-02-04 00:01:42
32798    11588    793    2016-01-24 03:27:21    2016-01-24 03:27:21
32799    16335    753    2016-03-19 02:14:00    2016-03-19 02:14:00
32800    14870    473    2016-04-07 07:51:31    2016-04-07 07:51:31
32801    12562    844    2016-03-26 10:26:34    2016-03-26 10:26:34
32802    11831    876    2016-03-30 11:25:49    2016-03-30 11:25:49
32803    15907    536    2016-01-28 05:06:07    2016-01-28 05:06:07
32804    13699    569    2016-02-07 08:47:18    2016-02-07 08:47:18
32805    18161    601    2016-04-04 07:40:05    2016-04-04 07:40:05
32806    17844    773    2016-02-08 12:29:43    2016-02-08 12:29:43
32807    16524    620    2016-02-16 04:33:58    2016-02-16 04:33:58
32808    19828    902    2016-03-15 10:40:22    2016-03-15 10:40:22
32809    12995    646    2016-02-28 06:29:35    2016-02-28 06:29:35
32810    17304    629    2016-03-29 07:19:12    2016-03-29 07:19:12
32811    16462    472    2016-02-10 10:41:52    2016-02-10 10:41:52
32812    16753    646    2016-04-08 11:50:58    2016-04-08 11:50:58
32813    19448    576    2016-02-21 18:05:06    2016-02-21 18:05:06
32814    10782    858    2016-03-05 02:52:05    2016-03-05 02:52:05
32815    15583    545    2016-03-16 12:38:47    2016-03-16 12:38:47
32816    14388    780    2016-03-31 09:05:35    2016-03-31 09:05:35
32817    14026    892    2016-02-21 04:47:28    2016-02-21 04:47:28
32818    11734    549    2016-03-26 10:47:04    2016-03-26 10:47:04
32819    14836    764    2016-01-31 23:57:02    2016-01-31 23:57:02
32820    11086    588    2016-04-07 15:24:35    2016-04-07 15:24:35
32821    14229    622    2016-04-20 03:14:03    2016-04-20 03:14:03
32822    19766    758    2016-03-05 22:52:17    2016-03-05 22:52:17
32823    14099    674    2016-04-17 01:11:43    2016-04-17 01:11:43
32824    15904    865    2016-01-24 16:03:48    2016-01-24 16:03:48
32825    18939    798    2016-01-23 07:01:53    2016-01-23 07:01:53
32826    17183    532    2016-03-12 01:30:20    2016-03-12 01:30:20
32827    11329    669    2016-02-26 02:26:15    2016-02-26 02:26:15
32828    10734    666    2016-04-02 14:59:52    2016-04-02 14:59:52
32829    15790    495    2016-03-20 09:21:24    2016-03-20 09:21:24
32830    16364    488    2016-02-27 11:06:25    2016-02-27 11:06:25
32831    19182    783    2016-01-29 17:59:00    2016-01-29 17:59:00
32832    15887    669    2016-03-23 00:46:50    2016-03-23 00:46:50
32833    15258    692    2016-01-22 22:49:10    2016-01-22 22:49:10
32834    12917    608    2016-02-11 12:28:08    2016-02-11 12:28:08
32835    19619    466    2016-02-23 10:06:15    2016-02-23 10:06:15
32836    10946    631    2016-02-06 05:32:34    2016-02-06 05:32:34
32837    12550    767    2016-03-27 15:17:37    2016-03-27 15:17:37
32838    10847    934    2016-04-03 14:11:40    2016-04-03 14:11:40
32839    17090    516    2016-02-19 07:20:51    2016-02-19 07:20:51
32840    10882    558    2016-03-16 19:49:11    2016-03-16 19:49:11
32841    17979    546    2016-04-13 00:43:53    2016-04-13 00:43:53
32842    18557    510    2016-02-13 00:42:22    2016-02-13 00:42:22
32843    14727    629    2016-04-14 01:30:10    2016-04-14 01:30:10
32844    16024    699    2016-03-19 22:37:02    2016-03-19 22:37:02
32845    13790    676    2016-03-20 02:08:13    2016-03-20 02:08:13
32846    15652    491    2016-03-27 09:41:20    2016-03-27 09:41:20
32847    16577    674    2016-02-23 03:24:33    2016-02-23 03:24:33
32848    10169    534    2016-03-02 04:56:57    2016-03-02 04:56:57
32849    17788    768    2016-01-30 07:24:29    2016-01-30 07:24:29
32850    12544    751    2016-04-08 16:20:34    2016-04-08 16:20:34
32851    10966    856    2016-03-01 06:23:44    2016-03-01 06:23:44
32852    15719    710    2016-03-07 21:53:30    2016-03-07 21:53:30
32853    11414    813    2016-02-18 17:05:02    2016-02-18 17:05:02
32854    14807    628    2016-04-05 06:14:40    2016-04-05 06:14:40
32855    14541    531    2016-04-05 21:53:42    2016-04-05 21:53:42
32856    15882    960    2016-04-05 01:46:55    2016-04-05 01:46:55
32857    18415    514    2016-03-11 04:39:18    2016-03-11 04:39:18
32858    17631    773    2016-03-27 08:06:20    2016-03-27 08:06:20
32859    14039    684    2016-03-01 09:05:26    2016-03-01 09:05:26
32860    11703    564    2016-04-18 22:15:17    2016-04-18 22:15:17
32861    14651    919    2016-02-08 04:35:30    2016-02-08 04:35:30
32862    12098    776    2016-03-01 05:21:31    2016-03-01 05:21:31
32863    13657    593    2016-03-31 16:14:04    2016-03-31 16:14:04
32864    16283    797    2016-03-30 07:10:07    2016-03-30 07:10:07
32865    13580    680    2016-03-05 04:55:34    2016-03-05 04:55:34
32866    12929    539    2016-03-31 05:16:46    2016-03-31 05:16:46
32867    11448    722    2016-03-27 09:50:50    2016-03-27 09:50:50
32868    14872    856    2016-01-27 17:05:25    2016-01-27 17:05:25
32869    15647    912    2016-04-06 19:11:56    2016-04-06 19:11:56
32870    15743    843    2016-04-11 19:16:30    2016-04-11 19:16:30
32871    10334    570    2016-04-12 22:10:56    2016-04-12 22:10:56
32872    13021    522    2016-03-02 12:01:45    2016-03-02 12:01:45
32873    19135    737    2016-02-18 11:28:11    2016-02-18 11:28:11
32874    12581    843    2016-04-02 03:04:10    2016-04-02 03:04:10
32875    17997    566    2016-03-24 04:15:36    2016-03-24 04:15:36
32876    12454    862    2016-03-01 16:36:12    2016-03-01 16:36:12
32877    12082    661    2016-02-10 00:17:56    2016-02-10 00:17:56
32878    14020    781    2016-03-21 02:10:57    2016-03-21 02:10:57
32879    11706    813    2016-03-02 23:00:05    2016-03-02 23:00:05
32880    15758    726    2016-03-17 19:17:42    2016-03-17 19:17:42
32881    18670    839    2016-01-24 13:40:17    2016-01-24 13:40:17
32882    19260    696    2016-03-06 15:03:42    2016-03-06 15:03:42
32883    18531    653    2016-04-03 04:14:32    2016-04-03 04:14:32
32884    19467    673    2016-02-17 02:22:28    2016-02-17 02:22:28
32885    11332    728    2016-04-08 20:38:37    2016-04-08 20:38:37
32886    13362    560    2016-02-24 03:16:37    2016-02-24 03:16:37
32887    19241    958    2016-04-01 22:06:03    2016-04-01 22:06:03
32888    14267    735    2016-04-19 10:11:50    2016-04-19 10:11:50
32889    14647    526    2016-04-03 06:25:50    2016-04-03 06:25:50
32890    17207    787    2016-02-05 15:19:43    2016-02-05 15:19:43
32891    10007    845    2016-04-17 01:45:17    2016-04-17 01:45:17
32892    14993    810    2016-01-24 06:02:56    2016-01-24 06:02:56
32893    14677    520    2016-01-25 10:34:15    2016-01-25 10:34:15
32894    11312    819    2016-01-28 06:47:20    2016-01-28 06:47:20
32895    16617    839    2016-03-01 19:54:01    2016-03-01 19:54:01
32896    19810    736    2016-03-10 23:29:34    2016-03-10 23:29:34
32897    13333    537    2016-04-12 08:07:02    2016-04-12 08:07:02
32898    17163    795    2016-03-27 23:59:41    2016-03-27 23:59:41
32899    17466    954    2016-03-19 03:58:20    2016-03-19 03:58:20
32900    10260    813    2016-03-29 12:10:43    2016-03-29 12:10:43
32901    17969    943    2016-04-04 10:47:32    2016-04-04 10:47:32
32902    19892    961    2016-03-16 03:48:26    2016-03-16 03:48:26
32903    14437    825    2016-02-08 06:13:08    2016-02-08 06:13:08
32904    14338    741    2016-03-02 11:03:09    2016-03-02 11:03:09
32905    18131    543    2016-04-07 16:49:24    2016-04-07 16:49:24
32906    15049    633    2016-02-25 15:31:10    2016-02-25 15:31:10
32907    14667    552    2016-03-23 19:26:39    2016-03-23 19:26:39
32908    11240    721    2016-03-09 11:50:46    2016-03-09 11:50:46
32909    12639    639    2016-04-14 06:33:34    2016-04-14 06:33:34
32910    16750    497    2016-02-02 19:14:05    2016-02-02 19:14:05
32911    12371    875    2016-04-15 12:16:00    2016-04-15 12:16:00
32912    13447    480    2016-04-14 04:14:26    2016-04-14 04:14:26
32913    10215    632    2016-02-25 08:01:01    2016-02-25 08:01:01
32914    16193    579    2016-02-19 04:00:27    2016-02-19 04:00:27
32915    16077    918    2016-02-18 08:18:47    2016-02-18 08:18:47
32916    17737    744    2016-02-05 06:49:37    2016-02-05 06:49:37
32917    13488    953    2016-01-25 04:32:48    2016-01-25 04:32:48
32918    19716    474    2016-03-02 18:00:35    2016-03-02 18:00:35
32919    14906    492    2016-02-21 23:48:11    2016-02-21 23:48:11
32920    11260    579    2016-01-28 10:33:34    2016-01-28 10:33:34
32921    12597    624    2016-02-15 21:47:48    2016-02-15 21:47:48
32922    14839    467    2016-02-08 00:09:04    2016-02-08 00:09:04
32923    19664    911    2016-03-05 14:28:05    2016-03-05 14:28:05
32924    14960    586    2016-04-04 17:38:02    2016-04-04 17:38:02
32925    11878    491    2016-04-02 19:01:21    2016-04-02 19:01:21
32926    12018    597    2016-02-22 17:20:10    2016-02-22 17:20:10
32927    10858    537    2016-02-05 09:47:44    2016-02-05 09:47:44
32928    19574    818    2016-03-18 18:14:48    2016-03-18 18:14:48
32929    13603    837    2016-02-27 16:30:14    2016-02-27 16:30:14
32930    17623    568    2016-02-06 08:10:59    2016-02-06 08:10:59
32931    13155    705    2016-03-17 13:31:16    2016-03-17 13:31:16
32932    15089    775    2016-03-17 20:33:34    2016-03-17 20:33:34
32933    10202    803    2016-04-03 01:08:43    2016-04-03 01:08:43
32934    16308    720    2016-02-11 08:46:49    2016-02-11 08:46:49
32935    13308    710    2016-02-16 01:22:15    2016-02-16 01:22:15
32936    18184    576    2016-02-27 15:15:12    2016-02-27 15:15:12
32937    14584    855    2016-04-06 18:13:22    2016-04-06 18:13:22
32938    16009    514    2016-04-02 04:45:09    2016-04-02 04:45:09
32939    11097    597    2016-03-16 04:05:46    2016-03-16 04:05:46
32940    12898    555    2016-03-29 07:04:11    2016-03-29 07:04:11
32941    12418    939    2016-03-16 18:34:23    2016-03-16 18:34:23
32942    18447    777    2016-04-11 00:09:52    2016-04-11 00:09:52
32943    13324    717    2016-02-29 05:53:04    2016-02-29 05:53:04
32944    10400    843    2016-01-29 12:16:26    2016-01-29 12:16:26
32945    12061    495    2016-04-09 20:53:15    2016-04-09 20:53:15
32946    15187    952    2016-03-14 03:46:52    2016-03-14 03:46:52
32947    15877    465    2016-03-02 16:49:04    2016-03-02 16:49:04
32948    13293    903    2016-01-30 02:51:50    2016-01-30 02:51:50
32949    11328    465    2016-03-30 14:10:54    2016-03-30 14:10:54
32950    13103    954    2016-03-07 03:56:38    2016-03-07 03:56:38
32951    12715    643    2016-02-12 20:47:58    2016-02-12 20:47:58
32952    12867    581    2016-02-08 13:10:45    2016-02-08 13:10:45
32953    16619    466    2016-02-05 19:32:49    2016-02-05 19:32:49
32954    19546    823    2016-04-07 12:00:54    2016-04-07 12:00:54
32955    12675    553    2016-02-28 12:16:47    2016-02-28 12:16:47
32956    15661    771    2016-03-12 04:19:39    2016-03-12 04:19:39
32957    13758    493    2016-03-14 02:26:57    2016-03-14 02:26:57
32958    10976    877    2016-03-01 00:37:58    2016-03-01 00:37:58
32959    16084    493    2016-01-28 02:59:52    2016-01-28 02:59:52
32960    13766    726    2016-02-28 23:25:45    2016-02-28 23:25:45
32961    17929    464    2016-03-09 12:46:40    2016-03-09 12:46:40
32962    12953    497    2016-03-06 08:25:21    2016-03-06 08:25:21
32963    17064    930    2016-03-16 11:41:58    2016-03-16 11:41:58
32964    16524    719    2016-03-16 12:42:08    2016-03-16 12:42:08
32965    16154    755    2016-04-05 11:42:07    2016-04-05 11:42:07
32966    14052    580    2016-02-08 09:30:02    2016-02-08 09:30:02
32967    15112    595    2016-02-27 20:30:36    2016-02-27 20:30:36
32968    15674    501    2016-03-19 14:04:29    2016-03-19 14:04:29
32969    17886    729    2016-03-06 02:29:51    2016-03-06 02:29:51
32970    11503    685    2016-02-27 08:25:41    2016-02-27 08:25:41
32971    12489    859    2016-03-11 20:36:50    2016-03-11 20:36:50
32972    18314    512    2016-03-16 01:58:12    2016-03-16 01:58:12
32973    15823    757    2016-03-21 02:03:10    2016-03-21 02:03:10
32974    15342    586    2016-01-28 12:46:28    2016-01-28 12:46:28
32975    15266    949    2016-04-09 01:22:56    2016-04-09 01:22:56
32976    10290    759    2016-01-24 02:53:21    2016-01-24 02:53:21
32977    13031    706    2016-02-18 06:54:48    2016-02-18 06:54:48
32978    14535    620    2016-04-06 11:18:32    2016-04-06 11:18:32
32979    13087    612    2016-03-28 14:17:16    2016-03-28 14:17:16
32980    14070    957    2016-03-28 07:12:30    2016-03-28 07:12:30
32981    13636    783    2016-04-03 05:33:24    2016-04-03 05:33:24
32982    18507    724    2016-01-28 16:33:04    2016-01-28 16:33:04
32983    19148    557    2016-04-07 12:09:17    2016-04-07 12:09:17
32984    11811    592    2016-02-03 00:50:13    2016-02-03 00:50:13
32985    14084    802    2016-04-17 02:29:29    2016-04-17 02:29:29
32986    17906    727    2016-02-25 02:11:01    2016-02-25 02:11:01
32987    15047    840    2016-03-09 03:28:39    2016-03-09 03:28:39
32988    19684    599    2016-04-12 17:30:34    2016-04-12 17:30:34
32989    16608    478    2016-03-18 08:57:00    2016-03-18 08:57:00
32990    12207    508    2016-01-26 02:11:24    2016-01-26 02:11:24
32991    12424    498    2016-03-14 06:46:05    2016-03-14 06:46:05
32992    18569    824    2016-02-19 01:43:26    2016-02-19 01:43:26
32993    13745    570    2016-02-16 22:38:10    2016-02-16 22:38:10
32994    13108    548    2016-03-29 23:47:26    2016-03-29 23:47:26
32995    14683    866    2016-03-26 21:56:19    2016-03-26 21:56:19
32996    18767    845    2016-02-26 11:42:01    2016-02-26 11:42:01
32997    15205    657    2016-02-23 18:50:21    2016-02-23 18:50:21
32998    12322    617    2016-04-13 18:57:23    2016-04-13 18:57:23
32999    14084    751    2016-04-12 11:55:58    2016-04-12 11:55:58
33000    16495    947    2016-04-06 20:52:55    2016-04-06 20:52:55
33001    13826    644    2016-02-02 09:43:18    2016-02-02 09:43:18
33002    14885    707    2016-02-08 13:08:19    2016-02-08 13:08:19
33003    19751    651    2016-03-10 14:28:58    2016-03-10 14:28:58
33004    18954    523    2016-04-11 07:35:36    2016-04-11 07:35:36
33005    13668    517    2016-03-26 04:43:40    2016-03-26 04:43:40
33006    12276    895    2016-03-27 14:47:15    2016-03-27 14:47:15
33007    13246    886    2016-03-29 02:51:30    2016-03-29 02:51:30
33008    14947    761    2016-02-09 00:12:44    2016-02-09 00:12:44
33009    18295    807    2016-02-11 03:39:55    2016-02-11 03:39:55
33010    10514    572    2016-04-04 18:38:28    2016-04-04 18:38:28
33011    19202    934    2016-03-13 16:29:02    2016-03-13 16:29:02
33012    14482    582    2016-02-16 23:49:08    2016-02-16 23:49:08
33013    11830    845    2016-02-13 08:51:18    2016-02-13 08:51:18
33014    11097    783    2016-02-21 02:21:18    2016-02-21 02:21:18
33015    14267    493    2016-01-25 23:21:53    2016-01-25 23:21:53
33016    14505    842    2016-03-02 01:22:33    2016-03-02 01:22:33
33017    14845    769    2016-01-28 01:55:26    2016-01-28 01:55:26
33018    10795    830    2016-03-20 04:34:38    2016-03-20 04:34:38
33019    14716    722    2016-02-25 07:19:07    2016-02-25 07:19:07
33020    15023    528    2016-01-26 21:12:25    2016-01-26 21:12:25
33021    19733    792    2016-03-20 21:26:31    2016-03-20 21:26:31
33022    14281    675    2016-04-11 15:30:53    2016-04-11 15:30:53
33023    13908    650    2016-03-22 23:05:30    2016-03-22 23:05:30
33024    19521    914    2016-02-12 22:10:44    2016-02-12 22:10:44
33025    13817    880    2016-01-22 18:53:04    2016-01-22 18:53:04
33026    14586    590    2016-02-11 04:38:27    2016-02-11 04:38:27
33027    12876    782    2016-04-08 19:30:26    2016-04-08 19:30:26
33028    15641    540    2016-02-28 20:31:56    2016-02-28 20:31:56
33029    18552    851    2016-03-06 06:42:45    2016-03-06 06:42:45
33030    19714    677    2016-02-08 00:11:34    2016-02-08 00:11:34
33031    17160    819    2016-03-02 06:15:37    2016-03-02 06:15:37
33032    19052    913    2016-02-16 20:12:02    2016-02-16 20:12:02
33033    12076    618    2016-01-28 12:20:21    2016-01-28 12:20:21
33034    19991    519    2016-02-26 18:45:14    2016-02-26 18:45:14
33035    13760    751    2016-02-05 11:58:23    2016-02-05 11:58:23
33036    17479    500    2016-04-16 15:54:15    2016-04-16 15:54:15
33037    13414    836    2016-03-26 11:15:00    2016-03-26 11:15:00
33038    11310    610    2016-03-30 19:53:24    2016-03-30 19:53:24
33039    13913    666    2016-04-03 05:23:06    2016-04-03 05:23:06
33040    10621    948    2016-03-29 02:25:28    2016-03-29 02:25:28
33041    19976    900    2016-02-23 02:37:07    2016-02-23 02:37:07
33042    12439    850    2016-02-03 15:17:04    2016-02-03 15:17:04
33043    19191    483    2016-01-29 18:56:16    2016-01-29 18:56:16
33044    15534    578    2016-04-01 23:35:57    2016-04-01 23:35:57
33045    14993    798    2016-01-23 17:34:12    2016-01-23 17:34:12
33046    10953    919    2016-03-10 23:26:37    2016-03-10 23:26:37
33047    14796    766    2016-02-26 23:45:17    2016-02-26 23:45:17
33048    16582    696    2016-03-17 14:22:23    2016-03-17 14:22:23
33049    17859    657    2016-01-23 05:49:44    2016-01-23 05:49:44
33050    16661    470    2016-03-31 23:26:05    2016-03-31 23:26:05
33051    17101    660    2016-02-01 02:06:10    2016-02-01 02:06:10
33052    14365    733    2016-04-13 05:26:56    2016-04-13 05:26:56
33053    19124    796    2016-02-14 10:27:02    2016-02-14 10:27:02
33054    18968    634    2016-04-01 15:10:35    2016-04-01 15:10:35
33055    15808    469    2016-01-30 13:51:43    2016-01-30 13:51:43
33056    12968    721    2016-02-19 08:01:56    2016-02-19 08:01:56
33057    15056    653    2016-01-30 13:43:40    2016-01-30 13:43:40
33058    11221    600    2016-01-30 06:45:42    2016-01-30 06:45:42
33059    12238    510    2016-03-29 08:54:45    2016-03-29 08:54:45
33060    13274    750    2016-02-18 00:17:37    2016-02-18 00:17:37
33061    17327    466    2016-02-17 12:26:00    2016-02-17 12:26:00
33062    19222    721    2016-02-20 17:56:33    2016-02-20 17:56:33
33063    11105    895    2016-03-30 23:32:21    2016-03-30 23:32:21
33064    10660    769    2016-02-14 18:26:19    2016-02-14 18:26:19
33065    13128    952    2016-02-16 06:41:04    2016-02-16 06:41:04
33066    12294    493    2016-03-30 06:31:10    2016-03-30 06:31:10
33067    19229    512    2016-04-11 10:03:34    2016-04-11 10:03:34
33068    13831    705    2016-02-20 01:20:50    2016-02-20 01:20:50
33069    15558    817    2016-03-01 02:53:41    2016-03-01 02:53:41
33070    14966    514    2016-02-11 15:23:09    2016-02-11 15:23:09
33071    19309    580    2016-03-17 04:52:45    2016-03-17 04:52:45
33072    10866    569    2016-04-05 04:54:32    2016-04-05 04:54:32
33073    15981    923    2016-01-31 15:00:37    2016-01-31 15:00:37
33074    13186    577    2016-01-24 18:56:08    2016-01-24 18:56:08
33075    16999    650    2016-02-27 14:22:51    2016-02-27 14:22:51
33076    12790    677    2016-01-31 11:37:47    2016-01-31 11:37:47
33077    19209    713    2016-03-27 03:10:39    2016-03-27 03:10:39
33078    19977    507    2016-03-24 20:21:19    2016-03-24 20:21:19
33079    14870    485    2016-03-15 04:16:06    2016-03-15 04:16:06
33080    14016    570    2016-03-29 05:42:16    2016-03-29 05:42:16
33081    16119    887    2016-01-30 11:23:31    2016-01-30 11:23:31
33082    12604    733    2016-02-03 00:17:20    2016-02-03 00:17:20
33083    19263    783    2016-03-06 06:02:04    2016-03-06 06:02:04
33084    18540    726    2016-03-18 13:34:52    2016-03-18 13:34:52
33085    13277    540    2016-03-09 20:45:15    2016-03-09 20:45:15
33086    15965    858    2016-01-22 18:20:36    2016-01-22 18:20:36
33087    12460    473    2016-04-02 17:37:28    2016-04-02 17:37:28
33088    15646    689    2016-02-09 07:21:31    2016-02-09 07:21:31
33089    10698    552    2016-01-29 15:20:45    2016-01-29 15:20:45
33090    17954    650    2016-03-08 16:42:25    2016-03-08 16:42:25
33091    13544    946    2016-01-28 19:32:18    2016-01-28 19:32:18
33092    14312    491    2016-02-27 20:51:29    2016-02-27 20:51:29
33093    17566    859    2016-04-13 04:36:40    2016-04-13 04:36:40
33094    19470    633    2016-02-25 11:51:38    2016-02-25 11:51:38
33095    15884    864    2016-03-26 12:42:29    2016-03-26 12:42:29
33096    10619    906    2016-03-18 04:38:08    2016-03-18 04:38:08
33097    13373    475    2016-02-22 14:44:02    2016-02-22 14:44:02
33098    13974    897    2016-02-04 02:24:32    2016-02-04 02:24:32
33099    11147    748    2016-03-01 11:29:58    2016-03-01 11:29:58
33100    14939    548    2016-02-13 01:31:04    2016-02-13 01:31:04
33101    17054    722    2016-02-24 21:00:35    2016-02-24 21:00:35
33102    18807    579    2016-02-11 16:25:31    2016-02-11 16:25:31
33103    11638    791    2016-03-31 13:17:29    2016-03-31 13:17:29
33104    13516    598    2016-02-01 05:17:52    2016-02-01 05:17:52
33105    12118    925    2016-02-16 12:24:58    2016-02-16 12:24:58
33106    10791    485    2016-03-21 13:05:10    2016-03-21 13:05:10
33107    18415    646    2016-04-15 16:59:09    2016-04-15 16:59:09
33108    15233    821    2016-04-09 22:52:36    2016-04-09 22:52:36
33109    18383    666    2016-03-07 14:11:25    2016-03-07 14:11:25
33110    12098    473    2016-04-06 00:30:03    2016-04-06 00:30:03
33111    18380    706    2016-02-23 14:55:19    2016-02-23 14:55:19
33112    14847    745    2016-03-27 12:08:57    2016-03-27 12:08:57
33113    19123    836    2016-01-25 16:22:49    2016-01-25 16:22:49
33114    14169    819    2016-02-03 02:58:36    2016-02-03 02:58:36
33115    12070    829    2016-04-01 13:54:14    2016-04-01 13:54:14
33116    14083    799    2016-02-01 18:43:57    2016-02-01 18:43:57
33117    14118    612    2016-01-22 03:07:40    2016-01-22 03:07:40
33118    14195    942    2016-04-15 20:46:50    2016-04-15 20:46:50
33119    13037    766    2016-03-14 16:59:55    2016-03-14 16:59:55
33120    17068    860    2016-03-23 12:03:31    2016-03-23 12:03:31
33121    16007    539    2016-02-07 11:37:28    2016-02-07 11:37:28
33122    15628    773    2016-03-30 22:49:18    2016-03-30 22:49:18
33123    14575    526    2016-03-15 01:42:52    2016-03-15 01:42:52
33124    15817    637    2016-04-02 14:29:01    2016-04-02 14:29:01
33125    17959    676    2016-02-22 02:59:15    2016-02-22 02:59:15
33126    18287    760    2016-04-03 18:29:33    2016-04-03 18:29:33
33127    14861    917    2016-03-22 00:46:47    2016-03-22 00:46:47
33128    11064    501    2016-02-18 22:11:05    2016-02-18 22:11:05
33129    10507    628    2016-04-14 15:42:48    2016-04-14 15:42:48
33130    16213    803    2016-02-17 02:27:31    2016-02-17 02:27:31
33131    15854    553    2016-01-29 12:02:23    2016-01-29 12:02:23
33132    16760    752    2016-03-04 00:38:19    2016-03-04 00:38:19
33133    13711    749    2016-03-13 10:51:28    2016-03-13 10:51:28
33134    17270    505    2016-02-19 02:52:33    2016-02-19 02:52:33
33135    19675    907    2016-01-30 05:30:16    2016-01-30 05:30:16
33136    17886    854    2016-04-13 22:31:00    2016-04-13 22:31:00
33137    13566    846    2016-04-03 05:12:09    2016-04-03 05:12:09
33138    14341    474    2016-02-10 07:15:15    2016-02-10 07:15:15
33139    10831    933    2016-04-14 09:25:47    2016-04-14 09:25:47
33140    16204    888    2016-03-05 19:25:57    2016-03-05 19:25:57
33141    12620    960    2016-02-08 04:10:16    2016-02-08 04:10:16
33142    19145    823    2016-02-01 14:35:13    2016-02-01 14:35:13
33143    17646    641    2016-02-01 12:02:28    2016-02-01 12:02:28
33144    12932    596    2016-03-28 15:19:50    2016-03-28 15:19:50
33145    16934    569    2016-04-06 13:02:18    2016-04-06 13:02:18
33146    11892    744    2016-01-29 06:07:48    2016-01-29 06:07:48
33147    18688    684    2016-03-10 00:21:51    2016-03-10 00:21:51
33148    10619    581    2016-04-16 19:12:28    2016-04-16 19:12:28
33149    15047    728    2016-03-08 03:49:57    2016-03-08 03:49:57
33150    12826    912    2016-03-03 18:26:20    2016-03-03 18:26:20
33151    16583    576    2016-03-07 06:47:53    2016-03-07 06:47:53
33152    18581    729    2016-02-23 17:38:46    2016-02-23 17:38:46
33153    16070    629    2016-03-17 00:46:26    2016-03-17 00:46:26
33154    12213    475    2016-02-19 14:21:40    2016-02-19 14:21:40
33155    10668    747    2016-02-29 04:15:38    2016-02-29 04:15:38
33156    10139    900    2016-04-03 07:51:11    2016-04-03 07:51:11
33157    13155    872    2016-02-09 22:18:31    2016-02-09 22:18:31
33158    14585    515    2016-03-26 12:00:31    2016-03-26 12:00:31
33159    19764    673    2016-03-22 06:02:09    2016-03-22 06:02:09
33160    18912    781    2016-03-10 15:22:20    2016-03-10 15:22:20
33161    16133    574    2016-02-11 05:51:36    2016-02-11 05:51:36
33162    12537    775    2016-03-15 04:39:27    2016-03-15 04:39:27
33163    12080    532    2016-03-06 01:19:05    2016-03-06 01:19:05
33164    18877    897    2016-02-26 04:46:36    2016-02-26 04:46:36
33165    15882    904    2016-03-01 12:12:22    2016-03-01 12:12:22
33166    17404    572    2016-03-02 03:41:05    2016-03-02 03:41:05
33167    11878    750    2016-02-27 21:53:10    2016-02-27 21:53:10
33168    16553    607    2016-01-31 04:54:24    2016-01-31 04:54:24
33169    19886    629    2016-02-25 04:09:28    2016-02-25 04:09:28
33170    18302    613    2016-02-09 04:58:06    2016-02-09 04:58:06
33171    16746    776    2016-01-28 10:35:09    2016-01-28 10:35:09
33172    14837    676    2016-02-02 15:22:17    2016-02-02 15:22:17
33173    16686    870    2016-04-13 07:58:35    2016-04-13 07:58:35
33174    15696    871    2016-04-19 01:19:20    2016-04-19 01:19:20
33175    14775    927    2016-03-06 00:24:36    2016-03-06 00:24:36
33176    15649    609    2016-02-08 07:43:10    2016-02-08 07:43:10
33177    12553    645    2016-04-19 19:59:03    2016-04-19 19:59:03
33178    18660    644    2016-01-27 09:58:03    2016-01-27 09:58:03
33179    15578    804    2016-02-28 03:12:52    2016-02-28 03:12:52
33180    15549    594    2016-04-11 13:29:14    2016-04-11 13:29:14
33181    17107    768    2016-03-20 08:47:05    2016-03-20 08:47:05
33182    16438    714    2016-02-12 15:58:32    2016-02-12 15:58:32
33183    16164    957    2016-04-14 02:17:49    2016-04-14 02:17:49
33184    13225    636    2016-03-08 14:23:58    2016-03-08 14:23:58
33185    11083    506    2016-03-29 22:48:35    2016-03-29 22:48:35
33186    13189    960    2016-03-05 11:36:37    2016-03-05 11:36:37
33187    14774    776    2016-01-28 21:55:43    2016-01-28 21:55:43
33188    10925    721    2016-03-01 10:30:33    2016-03-01 10:30:33
33189    16616    762    2016-03-30 06:30:50    2016-03-30 06:30:50
33190    16828    622    2016-01-30 14:50:34    2016-01-30 14:50:34
33191    10314    624    2016-01-29 14:46:31    2016-01-29 14:46:31
33192    15479    808    2016-03-14 18:55:34    2016-03-14 18:55:34
33193    16481    821    2016-04-06 06:54:27    2016-04-06 06:54:27
33194    10692    618    2016-04-18 23:38:58    2016-04-18 23:38:58
33195    17074    779    2016-04-11 19:15:22    2016-04-11 19:15:22
33196    19336    720    2016-04-15 02:51:47    2016-04-15 02:51:47
33197    15194    600    2016-02-01 16:50:27    2016-02-01 16:50:27
33198    17145    781    2016-04-10 23:39:21    2016-04-10 23:39:21
33199    12548    545    2016-03-12 20:25:56    2016-03-12 20:25:56
33200    12977    756    2016-02-04 05:57:45    2016-02-04 05:57:45
33201    16239    469    2016-02-07 16:46:51    2016-02-07 16:46:51
33202    17206    849    2016-03-15 02:41:21    2016-03-15 02:41:21
33203    14188    469    2016-03-12 12:20:40    2016-03-12 12:20:40
33204    17907    484    2016-03-31 08:36:43    2016-03-31 08:36:43
33205    17635    881    2016-04-03 01:03:16    2016-04-03 01:03:16
33206    10947    754    2016-02-13 19:15:05    2016-02-13 19:15:05
33207    17760    612    2016-02-25 12:45:41    2016-02-25 12:45:41
33208    16877    729    2016-03-08 05:08:04    2016-03-08 05:08:04
33209    11804    835    2016-03-01 20:22:30    2016-03-01 20:22:30
33210    16514    863    2016-02-17 08:09:46    2016-02-17 08:09:46
33211    16571    610    2016-02-21 10:47:06    2016-02-21 10:47:06
33212    16284    785    2016-01-24 12:26:40    2016-01-24 12:26:40
33213    15503    799    2016-02-25 17:45:52    2016-02-25 17:45:52
33214    13586    890    2016-03-31 02:36:49    2016-03-31 02:36:49
33215    16233    751    2016-04-18 10:40:33    2016-04-18 10:40:33
33216    14892    693    2016-04-17 10:30:10    2016-04-17 10:30:10
33217    10220    763    2016-02-10 06:34:05    2016-02-10 06:34:05
33218    16484    717    2016-04-18 21:04:17    2016-04-18 21:04:17
33219    19899    849    2016-02-11 01:13:30    2016-02-11 01:13:30
33220    18972    754    2016-04-13 10:00:37    2016-04-13 10:00:37
33221    19587    743    2016-03-08 13:38:45    2016-03-08 13:38:45
33222    18472    937    2016-03-05 03:55:46    2016-03-05 03:55:46
33223    19406    759    2016-04-12 23:01:21    2016-04-12 23:01:21
33224    16782    645    2016-02-03 01:17:45    2016-02-03 01:17:45
33225    17250    944    2016-04-07 20:10:15    2016-04-07 20:10:15
33226    13125    766    2016-04-15 11:00:48    2016-04-15 11:00:48
33227    16418    644    2016-01-28 16:45:42    2016-01-28 16:45:42
33228    12402    555    2016-02-19 05:55:44    2016-02-19 05:55:44
33229    16580    781    2016-01-29 01:55:36    2016-01-29 01:55:36
33230    19533    929    2016-04-12 18:05:14    2016-04-12 18:05:14
33231    19769    794    2016-03-28 19:46:22    2016-03-28 19:46:22
33232    10758    849    2016-02-04 21:00:57    2016-02-04 21:00:57
33233    15514    764    2016-03-19 11:14:28    2016-03-19 11:14:28
33234    19347    538    2016-04-17 23:44:21    2016-04-17 23:44:21
33235    12611    752    2016-04-01 20:22:29    2016-04-01 20:22:29
33236    15281    559    2016-03-16 03:29:52    2016-03-16 03:29:52
33237    13341    636    2016-04-10 17:19:18    2016-04-10 17:19:18
33238    19005    726    2016-01-28 20:33:05    2016-01-28 20:33:05
33239    17516    946    2016-02-11 14:12:05    2016-02-11 14:12:05
33240    10095    698    2016-03-07 16:20:54    2016-03-07 16:20:54
33241    12511    751    2016-04-17 23:50:02    2016-04-17 23:50:02
33242    13909    591    2016-03-18 11:07:55    2016-03-18 11:07:55
33243    12668    919    2016-03-17 20:03:59    2016-03-17 20:03:59
33244    13794    592    2016-02-28 19:05:46    2016-02-28 19:05:46
33245    10413    944    2016-04-08 20:09:33    2016-04-08 20:09:33
33246    17690    828    2016-02-21 23:44:42    2016-02-21 23:44:42
33247    18838    663    2016-02-13 01:19:08    2016-02-13 01:19:08
33248    11269    520    2016-02-13 12:03:18    2016-02-13 12:03:18
33249    12078    693    2016-04-05 06:08:56    2016-04-05 06:08:56
33250    19252    787    2016-04-08 16:36:14    2016-04-08 16:36:14
33251    16613    821    2016-04-18 20:13:14    2016-04-18 20:13:14
33252    11917    505    2016-02-28 04:07:45    2016-02-28 04:07:45
33253    13027    626    2016-03-18 13:23:18    2016-03-18 13:23:18
33254    12997    679    2016-02-05 19:07:47    2016-02-05 19:07:47
33255    17984    596    2016-02-29 11:42:20    2016-02-29 11:42:20
33256    17080    547    2016-04-09 13:23:35    2016-04-09 13:23:35
33257    12262    676    2016-02-16 04:25:28    2016-02-16 04:25:28
33258    11620    766    2016-03-03 23:08:42    2016-03-03 23:08:42
33259    19250    584    2016-02-08 20:38:08    2016-02-08 20:38:08
33260    16458    663    2016-02-13 05:16:21    2016-02-13 05:16:21
33261    16245    709    2016-03-28 20:40:24    2016-03-28 20:40:24
33262    10223    885    2016-02-06 23:23:54    2016-02-06 23:23:54
33263    13981    666    2016-02-05 05:02:13    2016-02-05 05:02:13
33264    15761    935    2016-02-21 08:09:10    2016-02-21 08:09:10
33265    12329    741    2016-03-17 03:19:37    2016-03-17 03:19:37
33266    10584    840    2016-03-07 08:24:50    2016-03-07 08:24:50
33267    11779    572    2016-04-12 02:08:13    2016-04-12 02:08:13
33268    15173    593    2016-02-12 00:25:27    2016-02-12 00:25:27
33269    17671    768    2016-03-21 16:55:15    2016-03-21 16:55:15
33270    14264    831    2016-02-04 06:50:12    2016-02-04 06:50:12
33271    15415    555    2016-03-27 10:38:59    2016-03-27 10:38:59
33272    15626    548    2016-02-13 19:20:42    2016-02-13 19:20:42
33273    13148    467    2016-02-22 17:44:11    2016-02-22 17:44:11
33274    19857    606    2016-02-22 15:33:58    2016-02-22 15:33:58
33275    17545    483    2016-04-14 10:51:58    2016-04-14 10:51:58
33276    16529    868    2016-02-17 01:16:09    2016-02-17 01:16:09
33277    17056    584    2016-02-13 15:29:14    2016-02-13 15:29:14
33278    17753    724    2016-03-31 19:54:56    2016-03-31 19:54:56
33279    12853    645    2016-04-11 10:35:56    2016-04-11 10:35:56
33280    15759    532    2016-03-20 16:59:04    2016-03-20 16:59:04
33281    17415    621    2016-01-21 23:36:09    2016-01-21 23:36:09
33282    17303    490    2016-04-15 21:26:29    2016-04-15 21:26:29
33283    13804    647    2016-04-14 23:29:19    2016-04-14 23:29:19
33284    11172    605    2016-04-03 04:01:29    2016-04-03 04:01:29
33285    15348    754    2016-03-31 01:13:15    2016-03-31 01:13:15
33286    19040    500    2016-02-11 05:18:04    2016-02-11 05:18:04
33287    14821    903    2016-03-24 11:56:31    2016-03-24 11:56:31
33288    19739    772    2016-04-13 15:06:48    2016-04-13 15:06:48
33289    15722    856    2016-03-21 20:42:02    2016-03-21 20:42:02
33290    16828    481    2016-01-22 00:29:34    2016-01-22 00:29:34
33291    12305    915    2016-03-14 01:28:52    2016-03-14 01:28:52
33292    10187    493    2016-02-06 01:14:34    2016-02-06 01:14:34
33293    12449    565    2016-04-04 13:33:36    2016-04-04 13:33:36
33294    17234    642    2016-03-08 05:52:55    2016-03-08 05:52:55
33295    13295    745    2016-02-23 12:56:38    2016-02-23 12:56:38
33296    16414    909    2016-04-11 23:41:37    2016-04-11 23:41:37
33297    19830    899    2016-02-11 06:57:00    2016-02-11 06:57:00
33298    19250    485    2016-02-25 02:12:50    2016-02-25 02:12:50
33299    10029    875    2016-04-08 19:16:22    2016-04-08 19:16:22
33300    13946    531    2016-02-17 09:21:35    2016-02-17 09:21:35
33301    11146    624    2016-03-05 20:36:15    2016-03-05 20:36:15
33302    19853    619    2016-03-30 06:43:39    2016-03-30 06:43:39
33303    13410    714    2016-02-03 21:34:55    2016-02-03 21:34:55
33304    13200    828    2016-02-15 00:53:11    2016-02-15 00:53:11
33305    12887    561    2016-03-26 19:49:39    2016-03-26 19:49:39
33306    19374    847    2016-01-25 11:28:07    2016-01-25 11:28:07
33307    13150    805    2016-02-25 12:41:44    2016-02-25 12:41:44
33308    10368    928    2016-03-24 10:32:08    2016-03-24 10:32:08
33309    17386    803    2016-01-23 15:35:59    2016-01-23 15:35:59
33310    17815    910    2016-03-06 00:14:56    2016-03-06 00:14:56
33311    13531    956    2016-04-02 09:42:01    2016-04-02 09:42:01
33312    11472    671    2016-02-24 18:16:32    2016-02-24 18:16:32
33313    18125    811    2016-02-24 19:32:58    2016-02-24 19:32:58
33314    12966    550    2016-03-01 06:42:05    2016-03-01 06:42:05
33315    15559    933    2016-04-15 18:24:29    2016-04-15 18:24:29
33316    14437    944    2016-02-09 13:22:38    2016-02-09 13:22:38
33317    18578    766    2016-03-31 23:29:23    2016-03-31 23:29:23
33318    12052    623    2016-04-18 17:25:26    2016-04-18 17:25:26
33319    12088    743    2016-02-20 21:59:24    2016-02-20 21:59:24
33320    19038    733    2016-04-12 00:56:13    2016-04-12 00:56:13
33321    12444    614    2016-02-23 14:03:59    2016-02-23 14:03:59
33322    11216    534    2016-02-01 02:42:08    2016-02-01 02:42:08
33323    13846    493    2016-02-19 01:21:25    2016-02-19 01:21:25
33324    12254    732    2016-03-06 04:56:25    2016-03-06 04:56:25
33325    10800    959    2016-03-18 03:21:37    2016-03-18 03:21:37
33326    10232    696    2016-04-18 22:56:27    2016-04-18 22:56:27
33327    18276    821    2016-02-10 05:43:41    2016-02-10 05:43:41
33328    11974    738    2016-03-27 23:45:15    2016-03-27 23:45:15
33329    12497    590    2016-03-29 19:51:31    2016-03-29 19:51:31
33330    13007    491    2016-04-18 05:03:46    2016-04-18 05:03:46
33331    16104    806    2016-04-18 01:10:20    2016-04-18 01:10:20
33332    14098    630    2016-04-04 18:56:37    2016-04-04 18:56:37
33333    15556    469    2016-04-03 20:52:42    2016-04-03 20:52:42
33334    12454    603    2016-03-13 00:01:25    2016-03-13 00:01:25
33335    12905    806    2016-03-06 13:54:33    2016-03-06 13:54:33
33336    13674    492    2016-03-05 11:24:40    2016-03-05 11:24:40
33337    11359    893    2016-04-13 21:12:20    2016-04-13 21:12:20
33338    16568    801    2016-02-12 16:03:23    2016-02-12 16:03:23
33339    12823    884    2016-04-09 13:53:18    2016-04-09 13:53:18
33340    13436    705    2016-02-12 12:06:09    2016-02-12 12:06:09
33341    15237    897    2016-03-12 13:46:24    2016-03-12 13:46:24
33342    15276    941    2016-01-25 03:32:15    2016-01-25 03:32:15
33343    16768    514    2016-04-14 18:02:19    2016-04-14 18:02:19
33344    12760    652    2016-03-03 06:32:06    2016-03-03 06:32:06
33345    16451    643    2016-02-10 00:50:31    2016-02-10 00:50:31
33346    19477    803    2016-04-17 12:28:25    2016-04-17 12:28:25
33347    18900    538    2016-02-26 15:13:16    2016-02-26 15:13:16
33348    12551    849    2016-03-15 01:11:37    2016-03-15 01:11:37
33349    15915    799    2016-02-17 00:22:51    2016-02-17 00:22:51
33350    15645    630    2016-04-11 10:52:14    2016-04-11 10:52:14
33351    14973    840    2016-02-13 15:22:50    2016-02-13 15:22:50
33352    12086    912    2016-03-02 12:10:45    2016-03-02 12:10:45
33353    19352    660    2016-02-10 06:59:02    2016-02-10 06:59:02
33354    19459    827    2016-04-14 08:51:09    2016-04-14 08:51:09
33355    13682    753    2016-02-20 05:15:29    2016-02-20 05:15:29
33356    14653    613    2016-03-08 16:11:50    2016-03-08 16:11:50
33357    11824    871    2016-03-05 11:30:24    2016-03-05 11:30:24
33358    18117    754    2016-02-27 22:43:01    2016-02-27 22:43:01
33359    19514    686    2016-04-10 10:50:27    2016-04-10 10:50:27
33360    16506    847    2016-02-11 07:55:46    2016-02-11 07:55:46
33361    14199    590    2016-04-07 21:44:10    2016-04-07 21:44:10
33362    16507    488    2016-04-19 18:17:35    2016-04-19 18:17:35
33363    14430    647    2016-03-31 08:34:57    2016-03-31 08:34:57
33364    15028    729    2016-02-21 16:04:24    2016-02-21 16:04:24
33365    19192    801    2016-02-18 06:57:25    2016-02-18 06:57:25
33366    19847    945    2016-02-07 08:21:12    2016-02-07 08:21:12
33367    15120    501    2016-02-07 09:45:20    2016-02-07 09:45:20
33368    11864    842    2016-02-16 20:27:28    2016-02-16 20:27:28
33369    16364    756    2016-04-15 18:17:39    2016-04-15 18:17:39
33370    18895    552    2016-04-07 02:43:35    2016-04-07 02:43:35
33371    18606    671    2016-03-11 09:45:51    2016-03-11 09:45:51
33372    14079    758    2016-03-07 21:25:01    2016-03-07 21:25:01
33373    18766    557    2016-04-04 12:00:10    2016-04-04 12:00:10
33374    18701    896    2016-02-05 19:57:59    2016-02-05 19:57:59
33375    17328    785    2016-03-21 21:16:54    2016-03-21 21:16:54
33376    14039    549    2016-04-03 06:12:07    2016-04-03 06:12:07
33377    15198    815    2016-02-25 07:52:48    2016-02-25 07:52:48
33378    14143    882    2016-04-12 02:13:59    2016-04-12 02:13:59
33379    11902    902    2016-02-28 11:06:45    2016-02-28 11:06:45
33380    14092    486    2016-03-21 23:08:23    2016-03-21 23:08:23
33381    14756    952    2016-02-15 12:04:00    2016-02-15 12:04:00
33382    10819    904    2016-04-03 11:51:10    2016-04-03 11:51:10
33383    16842    673    2016-02-10 09:35:52    2016-02-10 09:35:52
33384    12279    873    2016-03-14 19:22:57    2016-03-14 19:22:57
33385    14639    851    2016-02-04 04:20:46    2016-02-04 04:20:46
33386    12305    784    2016-01-25 07:40:49    2016-01-25 07:40:49
33387    11463    752    2016-04-01 17:34:21    2016-04-01 17:34:21
33388    19057    710    2016-04-11 13:20:36    2016-04-11 13:20:36
33389    17658    469    2016-03-17 05:53:18    2016-03-17 05:53:18
33390    18850    946    2016-04-17 16:47:11    2016-04-17 16:47:11
33391    12609    950    2016-02-06 11:22:09    2016-02-06 11:22:09
33392    19485    656    2016-02-19 06:44:12    2016-02-19 06:44:12
33393    17528    900    2016-02-07 23:47:45    2016-02-07 23:47:45
33394    10035    534    2016-02-19 22:09:03    2016-02-19 22:09:03
33395    10498    859    2016-03-30 10:00:26    2016-03-30 10:00:26
33396    10882    773    2016-02-21 20:10:28    2016-02-21 20:10:28
33397    16803    667    2016-04-10 09:27:38    2016-04-10 09:27:38
33398    16835    744    2016-03-09 21:47:22    2016-03-09 21:47:22
33399    14302    478    2016-03-08 04:04:33    2016-03-08 04:04:33
33400    13290    682    2016-04-10 16:37:21    2016-04-10 16:37:21
33401    16002    711    2016-03-17 11:44:04    2016-03-17 11:44:04
33402    11933    698    2016-04-18 00:32:20    2016-04-18 00:32:20
33403    19702    682    2016-04-16 10:12:14    2016-04-16 10:12:14
33404    19997    851    2016-03-31 06:43:08    2016-03-31 06:43:08
33405    19613    569    2016-03-04 15:48:05    2016-03-04 15:48:05
33406    13364    668    2016-02-22 09:22:25    2016-02-22 09:22:25
33407    19066    794    2016-02-01 10:05:45    2016-02-01 10:05:45
33408    11566    474    2016-02-27 12:10:32    2016-02-27 12:10:32
33409    13318    871    2016-04-01 09:28:44    2016-04-01 09:28:44
33410    17029    674    2016-04-13 15:58:36    2016-04-13 15:58:36
33411    18425    463    2016-03-16 16:38:55    2016-03-16 16:38:55
33412    19936    743    2016-02-26 21:36:23    2016-02-26 21:36:23
33413    16359    765    2016-03-05 03:48:19    2016-03-05 03:48:19
33414    16111    880    2016-04-01 10:36:29    2016-04-01 10:36:29
33415    15395    789    2016-03-23 14:45:19    2016-03-23 14:45:19
33416    11139    626    2016-02-20 11:44:26    2016-02-20 11:44:26
33417    12416    920    2016-02-10 13:16:17    2016-02-10 13:16:17
33418    15613    872    2016-02-11 03:01:21    2016-02-11 03:01:21
33419    11516    604    2016-02-17 11:56:08    2016-02-17 11:56:08
33420    16419    611    2016-02-22 21:48:08    2016-02-22 21:48:08
33421    15404    555    2016-02-23 19:39:46    2016-02-23 19:39:46
33422    14289    544    2016-04-16 01:04:36    2016-04-16 01:04:36
33423    18624    509    2016-02-07 04:02:32    2016-02-07 04:02:32
33424    12831    857    2016-02-26 16:06:58    2016-02-26 16:06:58
33425    12884    583    2016-02-16 06:56:25    2016-02-16 06:56:25
33426    14976    707    2016-02-13 06:03:44    2016-02-13 06:03:44
33427    17111    862    2016-03-11 10:35:44    2016-03-11 10:35:44
33428    17605    834    2016-04-06 14:34:22    2016-04-06 14:34:22
33429    17846    618    2016-03-30 15:17:24    2016-03-30 15:17:24
33430    18144    534    2016-02-15 10:09:51    2016-02-15 10:09:51
33431    14577    756    2016-04-18 04:54:44    2016-04-18 04:54:44
33432    12693    616    2016-02-11 00:37:26    2016-02-11 00:37:26
33433    15586    545    2016-02-01 08:17:09    2016-02-01 08:17:09
33434    17542    854    2016-02-15 08:57:47    2016-02-15 08:57:47
33435    15762    548    2016-02-19 13:36:00    2016-02-19 13:36:00
33436    16358    902    2016-02-17 21:55:11    2016-02-17 21:55:11
33437    10508    887    2016-02-12 14:16:24    2016-02-12 14:16:24
33438    13127    485    2016-02-20 04:59:40    2016-02-20 04:59:40
33439    12936    563    2016-02-06 04:46:58    2016-02-06 04:46:58
33440    10688    523    2016-02-28 22:17:08    2016-02-28 22:17:08
33441    10641    949    2016-03-15 03:04:05    2016-03-15 03:04:05
33442    10233    821    2016-03-26 03:45:44    2016-03-26 03:45:44
33443    10671    752    2016-02-24 21:51:03    2016-02-24 21:51:03
33444    16967    589    2016-01-31 03:48:58    2016-01-31 03:48:58
33445    15060    710    2016-04-08 18:37:32    2016-04-08 18:37:32
33446    16187    828    2016-02-07 02:18:59    2016-02-07 02:18:59
33447    19101    596    2016-03-09 05:42:31    2016-03-09 05:42:31
33448    15537    523    2016-03-16 03:24:28    2016-03-16 03:24:28
33449    13778    715    2016-01-22 02:02:46    2016-01-22 02:02:46
33450    12721    744    2016-04-17 09:37:35    2016-04-17 09:37:35
33451    16297    693    2016-03-17 14:20:53    2016-03-17 14:20:53
33452    15788    747    2016-01-24 19:11:30    2016-01-24 19:11:30
33453    17347    710    2016-03-10 04:12:07    2016-03-10 04:12:07
33454    12273    844    2016-02-05 01:01:35    2016-02-05 01:01:35
33455    15119    738    2016-02-29 23:38:42    2016-02-29 23:38:42
33456    15154    474    2016-02-19 04:13:06    2016-02-19 04:13:06
33457    18751    497    2016-01-28 03:59:27    2016-01-28 03:59:27
33458    13372    857    2016-03-23 02:40:21    2016-03-23 02:40:21
33459    17304    799    2016-04-08 21:45:10    2016-04-08 21:45:10
33460    17979    659    2016-02-29 16:05:27    2016-02-29 16:05:27
33461    19830    515    2016-04-02 11:22:05    2016-04-02 11:22:05
33462    15014    729    2016-04-08 10:04:49    2016-04-08 10:04:49
33463    16481    622    2016-02-16 18:25:15    2016-02-16 18:25:15
33464    10277    921    2016-04-18 14:38:22    2016-04-18 14:38:22
33465    18360    578    2016-03-12 03:39:51    2016-03-12 03:39:51
33466    19027    771    2016-02-02 16:31:13    2016-02-02 16:31:13
33467    11507    511    2016-02-01 23:52:18    2016-02-01 23:52:18
33468    14340    625    2016-03-20 00:11:58    2016-03-20 00:11:58
33469    10764    497    2016-02-01 02:00:21    2016-02-01 02:00:21
33470    16403    520    2016-02-08 09:29:17    2016-02-08 09:29:17
33471    16795    784    2016-03-11 10:52:10    2016-03-11 10:52:10
33472    12217    917    2016-03-31 19:11:32    2016-03-31 19:11:32
33473    18435    664    2016-03-20 19:32:39    2016-03-20 19:32:39
33474    15843    516    2016-02-14 20:12:36    2016-02-14 20:12:36
33475    17550    480    2016-04-20 16:45:20    2016-04-20 16:45:20
33476    15218    808    2016-03-08 17:54:15    2016-03-08 17:54:15
33477    17837    874    2016-04-09 18:49:34    2016-04-09 18:49:34
33478    17224    691    2016-04-13 07:26:07    2016-04-13 07:26:07
33479    18861    534    2016-02-07 07:29:42    2016-02-07 07:29:42
33480    15447    601    2016-04-15 23:37:04    2016-04-15 23:37:04
33481    17040    862    2016-04-08 13:53:51    2016-04-08 13:53:51
33482    14462    755    2016-02-25 20:06:13    2016-02-25 20:06:13
33483    15016    539    2016-04-03 00:47:59    2016-04-03 00:47:59
33484    13797    642    2016-04-05 23:58:17    2016-04-05 23:58:17
33485    17682    652    2016-03-17 15:42:21    2016-03-17 15:42:21
33486    13659    466    2016-02-20 22:26:01    2016-02-20 22:26:01
33487    17702    585    2016-04-18 19:17:13    2016-04-18 19:17:13
33488    11031    934    2016-03-02 15:58:47    2016-03-02 15:58:47
33489    11632    901    2016-02-05 12:38:46    2016-02-05 12:38:46
33490    10250    941    2016-04-02 17:31:41    2016-04-02 17:31:41
33491    10306    954    2016-02-16 11:31:53    2016-02-16 11:31:53
33492    14217    479    2016-03-14 04:41:22    2016-03-14 04:41:22
33493    11948    547    2016-03-11 09:08:18    2016-03-11 09:08:18
33494    11090    878    2016-04-16 19:34:48    2016-04-16 19:34:48
33495    18610    707    2016-04-13 04:32:35    2016-04-13 04:32:35
33496    12404    525    2016-02-09 22:50:16    2016-02-09 22:50:16
33497    15133    821    2016-03-22 22:26:18    2016-03-22 22:26:18
33498    16973    646    2016-03-16 08:39:12    2016-03-16 08:39:12
33499    17186    698    2016-04-01 05:17:16    2016-04-01 05:17:16
33500    10740    959    2016-04-05 23:54:35    2016-04-05 23:54:35
33501    10160    892    2016-02-23 04:40:53    2016-02-23 04:40:53
33502    17497    749    2016-04-05 14:45:40    2016-04-05 14:45:40
33503    16425    527    2016-03-12 05:47:58    2016-03-12 05:47:58
33504    16904    527    2016-02-01 01:48:50    2016-02-01 01:48:50
33505    14638    904    2016-04-03 01:49:13    2016-04-03 01:49:13
33506    13656    869    2016-03-20 10:44:13    2016-03-20 10:44:13
33507    10361    543    2016-03-08 15:54:42    2016-03-08 15:54:42
33508    10374    541    2016-03-24 21:14:44    2016-03-24 21:14:44
33509    15908    704    2016-01-23 04:39:16    2016-01-23 04:39:16
33510    10794    575    2016-02-15 01:29:10    2016-02-15 01:29:10
33511    14690    589    2016-03-09 18:38:04    2016-03-09 18:38:04
33512    15181    603    2016-02-01 15:55:22    2016-02-01 15:55:22
33513    16316    584    2016-03-06 00:13:04    2016-03-06 00:13:04
33514    15289    669    2016-04-20 13:59:21    2016-04-20 13:59:21
33515    15232    465    2016-02-26 04:37:58    2016-02-26 04:37:58
33516    13411    629    2016-01-25 08:01:51    2016-01-25 08:01:51
33517    17830    637    2016-03-04 10:42:41    2016-03-04 10:42:41
33518    13857    549    2016-04-20 10:21:09    2016-04-20 10:21:09
33519    10968    633    2016-03-29 23:04:08    2016-03-29 23:04:08
33520    19528    658    2016-04-13 21:10:49    2016-04-13 21:10:49
33521    15703    671    2016-02-13 22:32:12    2016-02-13 22:32:12
33522    16305    712    2016-01-28 13:57:42    2016-01-28 13:57:42
33523    13917    907    2016-02-12 18:59:21    2016-02-12 18:59:21
33524    17331    901    2016-03-19 22:44:09    2016-03-19 22:44:09
33525    16850    518    2016-02-12 08:28:30    2016-02-12 08:28:30
33526    16577    863    2016-03-16 21:30:58    2016-03-16 21:30:58
33527    10149    709    2016-02-02 22:59:03    2016-02-02 22:59:03
33528    19347    577    2016-02-03 11:15:04    2016-02-03 11:15:04
33529    10805    658    2016-04-05 11:05:28    2016-04-05 11:05:28
33530    17609    879    2016-03-22 22:51:23    2016-03-22 22:51:23
33531    14879    716    2016-03-04 02:14:10    2016-03-04 02:14:10
33532    15375    925    2016-04-13 08:56:30    2016-04-13 08:56:30
33533    19991    941    2016-02-06 07:58:27    2016-02-06 07:58:27
33534    16704    783    2016-03-27 04:03:53    2016-03-27 04:03:53
33535    19344    682    2016-03-02 21:40:25    2016-03-02 21:40:25
33536    12399    692    2016-03-11 12:25:16    2016-03-11 12:25:16
33537    19043    876    2016-02-07 09:14:40    2016-02-07 09:14:40
33538    10547    761    2016-02-20 04:00:02    2016-02-20 04:00:02
33539    17647    879    2016-03-17 20:22:41    2016-03-17 20:22:41
33540    17352    809    2016-02-16 21:22:47    2016-02-16 21:22:47
33541    15465    761    2016-02-17 07:38:56    2016-02-17 07:38:56
33542    13957    509    2016-03-09 12:07:44    2016-03-09 12:07:44
33543    11932    591    2016-04-03 11:54:09    2016-04-03 11:54:09
33544    19185    463    2016-04-11 23:46:28    2016-04-11 23:46:28
33545    12160    624    2016-02-11 01:05:23    2016-02-11 01:05:23
33546    15637    480    2016-03-03 00:21:59    2016-03-03 00:21:59
33547    11671    585    2016-04-01 01:45:02    2016-04-01 01:45:02
33548    18276    562    2016-03-31 00:38:13    2016-03-31 00:38:13
33549    16070    479    2016-04-15 06:24:12    2016-04-15 06:24:12
33550    12017    582    2016-03-11 18:00:02    2016-03-11 18:00:02
33551    11441    675    2016-03-01 23:35:09    2016-03-01 23:35:09
33552    10914    957    2016-02-05 02:16:33    2016-02-05 02:16:33
33553    15559    660    2016-01-31 00:08:38    2016-01-31 00:08:38
33554    17509    529    2016-02-22 18:24:44    2016-02-22 18:24:44
33555    18070    686    2016-01-24 18:41:21    2016-01-24 18:41:21
33556    11532    579    2016-03-23 03:31:55    2016-03-23 03:31:55
33557    19609    837    2016-02-12 17:48:07    2016-02-12 17:48:07
33558    19729    614    2016-02-17 12:42:55    2016-02-17 12:42:55
33559    12752    806    2016-04-04 23:36:05    2016-04-04 23:36:05
33560    18772    592    2016-02-27 14:31:13    2016-02-27 14:31:13
33561    13250    777    2016-01-27 06:05:38    2016-01-27 06:05:38
33562    14799    838    2016-03-22 06:22:33    2016-03-22 06:22:33
33563    13805    951    2016-02-24 01:56:00    2016-02-24 01:56:00
33564    16642    465    2016-01-28 02:19:20    2016-01-28 02:19:20
33565    19358    548    2016-02-12 20:15:43    2016-02-12 20:15:43
33566    13587    647    2016-03-29 09:14:46    2016-03-29 09:14:46
33567    11175    850    2016-04-18 12:54:05    2016-04-18 12:54:05
33568    17774    484    2016-04-02 04:14:53    2016-04-02 04:14:53
33569    15780    888    2016-03-24 07:32:06    2016-03-24 07:32:06
33570    13275    795    2016-02-02 08:38:55    2016-02-02 08:38:55
33571    18036    650    2016-02-29 20:54:11    2016-02-29 20:54:11
33572    18448    840    2016-02-27 17:27:36    2016-02-27 17:27:36
33573    14274    670    2016-03-09 00:48:25    2016-03-09 00:48:25
33574    19088    468    2016-03-03 08:37:02    2016-03-03 08:37:02
33575    13398    765    2016-02-26 10:52:02    2016-02-26 10:52:02
33576    18113    594    2016-04-18 21:05:44    2016-04-18 21:05:44
33577    15762    915    2016-02-22 17:20:40    2016-02-22 17:20:40
33578    10157    570    2016-03-02 17:50:06    2016-03-02 17:50:06
33579    19457    873    2016-01-28 22:36:37    2016-01-28 22:36:37
33580    12404    541    2016-03-04 06:39:42    2016-03-04 06:39:42
33581    10447    798    2016-04-18 08:39:34    2016-04-18 08:39:34
33582    15302    807    2016-03-21 00:07:49    2016-03-21 00:07:49
33583    11923    717    2016-04-01 15:02:49    2016-04-01 15:02:49
33584    12868    866    2016-04-16 14:20:03    2016-04-16 14:20:03
33585    16454    632    2016-02-21 16:10:11    2016-02-21 16:10:11
33586    17130    488    2016-04-06 19:11:02    2016-04-06 19:11:02
33587    14017    669    2016-02-18 12:50:17    2016-02-18 12:50:17
33588    19697    815    2016-02-11 01:07:07    2016-02-11 01:07:07
33589    11774    909    2016-03-16 23:31:10    2016-03-16 23:31:10
33590    10619    917    2016-02-19 06:40:17    2016-02-19 06:40:17
33591    17006    494    2016-03-25 07:00:43    2016-03-25 07:00:43
33592    16222    714    2016-02-18 17:13:05    2016-02-18 17:13:05
33593    12467    773    2016-01-25 15:33:52    2016-01-25 15:33:52
33594    19439    941    2016-01-21 23:16:45    2016-01-21 23:16:45
33595    19596    807    2016-02-04 16:20:48    2016-02-04 16:20:48
33596    10402    951    2016-04-05 11:17:08    2016-04-05 11:17:08
33597    13283    532    2016-02-05 16:06:09    2016-02-05 16:06:09
33598    17992    847    2016-04-14 06:25:50    2016-04-14 06:25:50
33599    13588    782    2016-02-18 13:16:25    2016-02-18 13:16:25
33600    16762    949    2016-03-16 05:31:50    2016-03-16 05:31:50
33601    11620    622    2016-02-07 02:27:22    2016-02-07 02:27:22
33602    12846    656    2016-03-29 01:08:37    2016-03-29 01:08:37
33603    10995    733    2016-02-12 21:59:59    2016-02-12 21:59:59
33604    16860    957    2016-03-10 08:45:20    2016-03-10 08:45:20
33605    15354    795    2016-03-09 15:34:47    2016-03-09 15:34:47
33606    17876    534    2016-04-16 17:12:21    2016-04-16 17:12:21
33607    17015    800    2016-04-14 03:16:50    2016-04-14 03:16:50
33608    15733    735    2016-02-08 15:38:24    2016-02-08 15:38:24
33609    19401    706    2016-03-25 12:09:44    2016-03-25 12:09:44
33610    15039    636    2016-04-11 21:37:48    2016-04-11 21:37:48
33611    10571    509    2016-01-31 09:14:33    2016-01-31 09:14:33
33612    10141    843    2016-01-29 22:11:45    2016-01-29 22:11:45
33613    17220    689    2016-03-10 21:12:58    2016-03-10 21:12:58
33614    13734    801    2016-02-22 23:16:43    2016-02-22 23:16:43
33615    10737    498    2016-03-09 03:43:45    2016-03-09 03:43:45
33616    18966    912    2016-03-16 16:56:38    2016-03-16 16:56:38
33617    16485    813    2016-04-11 21:41:49    2016-04-11 21:41:49
33618    16741    597    2016-02-14 10:29:34    2016-02-14 10:29:34
33619    17635    522    2016-04-19 14:11:01    2016-04-19 14:11:01
33620    14505    473    2016-02-03 15:25:10    2016-02-03 15:25:10
33621    19016    498    2016-03-10 01:38:26    2016-03-10 01:38:26
33622    12886    724    2016-02-05 20:24:39    2016-02-05 20:24:39
33623    19534    946    2016-03-29 19:06:36    2016-03-29 19:06:36
33624    13245    859    2016-03-20 19:44:39    2016-03-20 19:44:39
33625    14838    706    2016-03-05 14:29:26    2016-03-05 14:29:26
33626    10058    796    2016-02-13 17:39:36    2016-02-13 17:39:36
33627    18648    960    2016-04-15 00:11:25    2016-04-15 00:11:25
33628    13989    599    2016-01-28 19:48:46    2016-01-28 19:48:46
33629    18188    822    2016-04-19 14:15:39    2016-04-19 14:15:39
33630    17117    911    2016-02-27 09:14:36    2016-02-27 09:14:36
33631    10170    548    2016-03-10 06:30:47    2016-03-10 06:30:47
33632    15747    798    2016-02-18 19:40:46    2016-02-18 19:40:46
33633    14595    594    2016-02-28 04:09:44    2016-02-28 04:09:44
33634    14449    610    2016-03-26 21:22:12    2016-03-26 21:22:12
33635    18461    653    2016-03-11 18:33:09    2016-03-11 18:33:09
33636    17214    903    2016-04-11 19:24:00    2016-04-11 19:24:00
33637    11119    778    2016-01-28 15:30:22    2016-01-28 15:30:22
33638    15597    908    2016-03-27 20:09:46    2016-03-27 20:09:46
33639    18237    952    2016-03-08 15:25:31    2016-03-08 15:25:31
33640    16046    685    2016-04-04 08:29:05    2016-04-04 08:29:05
33641    13328    725    2016-03-15 06:38:21    2016-03-15 06:38:21
33642    16450    650    2016-02-05 07:55:29    2016-02-05 07:55:29
33643    16263    477    2016-03-19 17:20:27    2016-03-19 17:20:27
33644    16368    869    2016-02-22 15:42:04    2016-02-22 15:42:04
33645    10791    543    2016-02-26 22:57:45    2016-02-26 22:57:45
33646    11600    769    2016-03-30 10:20:22    2016-03-30 10:20:22
33647    10153    922    2016-03-30 09:16:37    2016-03-30 09:16:37
33648    15526    882    2016-04-11 02:43:28    2016-04-11 02:43:28
33649    17802    764    2016-03-15 23:30:26    2016-03-15 23:30:26
33650    19473    537    2016-02-12 14:46:04    2016-02-12 14:46:04
33651    10220    472    2016-03-25 06:22:47    2016-03-25 06:22:47
33652    13556    906    2016-03-08 21:59:27    2016-03-08 21:59:27
33653    13927    922    2016-03-17 00:06:41    2016-03-17 00:06:41
33654    17182    729    2016-02-13 02:55:20    2016-02-13 02:55:20
33655    15067    632    2016-02-13 22:57:34    2016-02-13 22:57:34
33656    19982    670    2016-03-16 01:02:34    2016-03-16 01:02:34
33657    15093    585    2016-02-12 23:42:03    2016-02-12 23:42:03
33658    11012    782    2016-02-05 00:59:33    2016-02-05 00:59:33
33659    18948    790    2016-02-06 22:47:01    2016-02-06 22:47:01
33660    19272    795    2016-04-10 06:20:42    2016-04-10 06:20:42
33661    19042    928    2016-04-01 17:57:27    2016-04-01 17:57:27
33662    15195    770    2016-01-26 10:18:38    2016-01-26 10:18:38
33663    14475    713    2016-04-03 13:34:02    2016-04-03 13:34:02
33664    10007    769    2016-04-07 09:47:06    2016-04-07 09:47:06
33665    19946    680    2016-01-23 17:02:10    2016-01-23 17:02:10
33666    18632    498    2016-04-04 09:50:41    2016-04-04 09:50:41
33667    14492    739    2016-03-11 11:43:11    2016-03-11 11:43:11
33668    15995    683    2016-04-09 06:37:34    2016-04-09 06:37:34
33669    18925    498    2016-02-21 12:11:00    2016-02-21 12:11:00
33670    13985    487    2016-03-16 01:20:35    2016-03-16 01:20:35
33671    19886    663    2016-03-26 15:42:24    2016-03-26 15:42:24
33672    16758    769    2016-02-10 04:09:00    2016-02-10 04:09:00
33673    10203    913    2016-03-08 23:58:42    2016-03-08 23:58:42
33674    19493    854    2016-01-25 12:51:20    2016-01-25 12:51:20
33675    16980    689    2016-03-21 22:25:33    2016-03-21 22:25:33
33676    15792    496    2016-01-24 00:53:34    2016-01-24 00:53:34
33677    17724    685    2016-03-18 11:26:12    2016-03-18 11:26:12
33678    10102    883    2016-02-22 13:49:03    2016-02-22 13:49:03
33679    10449    888    2016-04-13 01:04:02    2016-04-13 01:04:02
33680    10573    473    2016-04-02 09:25:59    2016-04-02 09:25:59
33681    14453    494    2016-02-11 03:31:38    2016-02-11 03:31:38
33682    18287    543    2016-02-08 18:29:38    2016-02-08 18:29:38
33683    12997    595    2016-01-23 13:45:25    2016-01-23 13:45:25
33684    17643    710    2016-04-01 11:01:49    2016-04-01 11:01:49
33685    19347    805    2016-03-28 19:47:22    2016-03-28 19:47:22
33686    19011    523    2016-01-29 02:46:55    2016-01-29 02:46:55
33687    15446    729    2016-03-02 23:50:22    2016-03-02 23:50:22
33688    18360    731    2016-03-16 00:25:51    2016-03-16 00:25:51
33689    13930    690    2016-04-05 00:20:48    2016-04-05 00:20:48
33690    17108    808    2016-04-14 00:24:08    2016-04-14 00:24:08
33691    17139    801    2016-03-18 15:22:12    2016-03-18 15:22:12
33692    12974    837    2016-04-15 07:50:19    2016-04-15 07:50:19
33693    17546    694    2016-03-08 11:48:27    2016-03-08 11:48:27
33694    12836    879    2016-02-08 14:06:44    2016-02-08 14:06:44
33695    11700    626    2016-02-14 10:11:49    2016-02-14 10:11:49
33696    12624    466    2016-03-14 02:39:19    2016-03-14 02:39:19
33697    16194    550    2016-02-02 13:49:20    2016-02-02 13:49:20
33698    19352    914    2016-03-14 16:30:57    2016-03-14 16:30:57
33699    12640    687    2016-03-20 22:01:45    2016-03-20 22:01:45
33700    17522    948    2016-02-09 06:35:25    2016-02-09 06:35:25
33701    10163    508    2016-03-30 20:35:26    2016-03-30 20:35:26
33702    17201    794    2016-01-22 01:09:27    2016-01-22 01:09:27
33703    16294    680    2016-02-08 06:49:38    2016-02-08 06:49:38
33704    12679    709    2016-04-12 12:45:11    2016-04-12 12:45:11
33705    18268    555    2016-02-15 16:19:58    2016-02-15 16:19:58
33706    19211    577    2016-03-16 00:09:04    2016-03-16 00:09:04
33707    12945    739    2016-02-10 06:52:40    2016-02-10 06:52:40
33708    14232    516    2016-02-12 21:16:49    2016-02-12 21:16:49
33709    13764    717    2016-03-31 03:14:17    2016-03-31 03:14:17
33710    15930    812    2016-04-01 22:10:02    2016-04-01 22:10:02
33711    13597    834    2016-02-22 06:56:03    2016-02-22 06:56:03
33712    15691    678    2016-04-13 08:59:47    2016-04-13 08:59:47
33713    18450    523    2016-02-10 18:47:57    2016-02-10 18:47:57
33714    13844    479    2016-04-04 20:03:40    2016-04-04 20:03:40
33715    15688    876    2016-04-05 21:05:36    2016-04-05 21:05:36
33716    12504    800    2016-01-31 07:14:17    2016-01-31 07:14:17
33717    15151    854    2016-02-23 00:25:00    2016-02-23 00:25:00
33718    13117    497    2016-03-24 11:38:21    2016-03-24 11:38:21
33719    19659    488    2016-02-20 12:10:06    2016-02-20 12:10:06
33720    13731    798    2016-04-17 07:20:05    2016-04-17 07:20:05
33721    13143    889    2016-03-26 18:09:38    2016-03-26 18:09:38
33722    11996    797    2016-01-27 06:16:18    2016-01-27 06:16:18
33723    17154    641    2016-01-23 19:02:44    2016-01-23 19:02:44
33724    18061    522    2016-03-29 18:29:39    2016-03-29 18:29:39
33725    13013    747    2016-02-05 19:39:48    2016-02-05 19:39:48
33726    18911    783    2016-04-17 23:46:32    2016-04-17 23:46:32
33727    18060    833    2016-03-04 11:59:14    2016-03-04 11:59:14
33728    19718    820    2016-02-12 09:16:33    2016-02-12 09:16:33
33729    12602    935    2016-03-12 14:12:25    2016-03-12 14:12:25
33730    19643    479    2016-03-19 19:22:57    2016-03-19 19:22:57
33731    15017    737    2016-03-16 18:42:38    2016-03-16 18:42:38
33732    14599    919    2016-03-24 22:23:05    2016-03-24 22:23:05
33733    19422    815    2016-03-05 05:41:55    2016-03-05 05:41:55
33734    18535    891    2016-03-21 15:07:32    2016-03-21 15:07:32
33735    15097    509    2016-03-02 04:59:06    2016-03-02 04:59:06
33736    13270    878    2016-02-15 16:13:24    2016-02-15 16:13:24
33737    13529    709    2016-01-30 18:16:13    2016-01-30 18:16:13
33738    18381    562    2016-04-15 20:47:01    2016-04-15 20:47:01
33739    11778    545    2016-02-02 23:56:41    2016-02-02 23:56:41
33740    11896    705    2016-02-21 09:39:44    2016-02-21 09:39:44
33741    12857    831    2016-02-20 23:44:13    2016-02-20 23:44:13
33742    19611    938    2016-01-24 12:04:18    2016-01-24 12:04:18
33743    18261    868    2016-04-18 05:05:38    2016-04-18 05:05:38
33744    18222    716    2016-03-06 00:18:11    2016-03-06 00:18:11
33745    16476    493    2016-01-25 23:54:15    2016-01-25 23:54:15
33746    18912    491    2016-02-15 16:23:18    2016-02-15 16:23:18
33747    15824    960    2016-02-22 21:42:19    2016-02-22 21:42:19
33748    15291    578    2016-02-26 06:11:19    2016-02-26 06:11:19
33749    15541    750    2016-02-17 15:34:28    2016-02-17 15:34:28
33750    19807    839    2016-02-09 06:00:37    2016-02-09 06:00:37
33751    16748    469    2016-03-27 23:55:27    2016-03-27 23:55:27
33752    14668    627    2016-04-12 11:34:40    2016-04-12 11:34:40
33753    18519    487    2016-04-03 00:12:49    2016-04-03 00:12:49
33754    15509    803    2016-04-17 10:43:10    2016-04-17 10:43:10
33755    18117    501    2016-01-24 07:00:05    2016-01-24 07:00:05
33756    10494    590    2016-03-17 18:15:13    2016-03-17 18:15:13
33757    14044    606    2016-01-26 15:15:04    2016-01-26 15:15:04
33758    13963    507    2016-02-19 04:55:10    2016-02-19 04:55:10
33759    16010    686    2016-02-08 04:26:14    2016-02-08 04:26:14
33760    10701    560    2016-02-03 18:27:48    2016-02-03 18:27:48
33761    15891    690    2016-03-03 21:00:36    2016-03-03 21:00:36
33762    13549    677    2016-02-08 23:16:17    2016-02-08 23:16:17
33763    13651    759    2016-03-07 09:40:59    2016-03-07 09:40:59
33764    18763    537    2016-04-14 08:19:04    2016-04-14 08:19:04
33765    16529    518    2016-04-05 00:44:08    2016-04-05 00:44:08
33766    16206    879    2016-02-22 12:14:53    2016-02-22 12:14:53
33767    13800    932    2016-02-08 18:17:31    2016-02-08 18:17:31
33768    14115    607    2016-04-03 10:54:53    2016-04-03 10:54:53
33769    19045    522    2016-04-13 03:26:34    2016-04-13 03:26:34
33770    13930    825    2016-01-27 14:41:28    2016-01-27 14:41:28
33771    10430    807    2016-03-27 22:56:00    2016-03-27 22:56:00
33772    12330    705    2016-03-10 23:35:05    2016-03-10 23:35:05
33773    13147    774    2016-03-23 11:13:24    2016-03-23 11:13:24
33774    14890    864    2016-04-10 08:33:29    2016-04-10 08:33:29
33775    11638    640    2016-02-26 17:12:34    2016-02-26 17:12:34
33776    11341    768    2016-03-11 18:36:46    2016-03-11 18:36:46
33777    17250    629    2016-01-22 05:49:28    2016-01-22 05:49:28
33778    16212    819    2016-02-16 05:19:25    2016-02-16 05:19:25
33779    14552    873    2016-04-05 01:46:04    2016-04-05 01:46:04
33780    13902    573    2016-04-08 22:57:45    2016-04-08 22:57:45
33781    18711    557    2016-01-30 21:03:24    2016-01-30 21:03:24
33782    14449    627    2016-02-02 20:00:49    2016-02-02 20:00:49
33783    15107    933    2016-03-21 13:32:36    2016-03-21 13:32:36
33784    16558    940    2016-04-11 00:28:35    2016-04-11 00:28:35
33785    13030    753    2016-03-04 16:10:50    2016-03-04 16:10:50
33786    18300    653    2016-04-15 18:47:01    2016-04-15 18:47:01
33787    12805    820    2016-03-17 20:09:24    2016-03-17 20:09:24
33788    11037    730    2016-04-02 06:54:36    2016-04-02 06:54:36
33789    16001    952    2016-02-11 23:00:32    2016-02-11 23:00:32
33790    17690    508    2016-04-20 16:19:23    2016-04-20 16:19:23
33791    19649    640    2016-03-06 21:33:07    2016-03-06 21:33:07
33792    19533    566    2016-03-17 13:48:10    2016-03-17 13:48:10
33793    10173    803    2016-03-10 22:14:14    2016-03-10 22:14:14
33794    14776    883    2016-03-09 09:02:35    2016-03-09 09:02:35
33795    19243    686    2016-03-30 14:20:00    2016-03-30 14:20:00
33796    13555    630    2016-02-08 20:55:41    2016-02-08 20:55:41
33797    11975    662    2016-03-19 22:57:47    2016-03-19 22:57:47
33798    19537    556    2016-03-24 08:57:36    2016-03-24 08:57:36
33799    10311    643    2016-04-08 14:50:18    2016-04-08 14:50:18
33800    11792    563    2016-01-31 17:21:20    2016-01-31 17:21:20
33801    12875    903    2016-03-30 10:04:18    2016-03-30 10:04:18
33802    11318    605    2016-02-06 21:37:28    2016-02-06 21:37:28
33803    13826    765    2016-02-13 01:03:52    2016-02-13 01:03:52
33804    14346    859    2016-02-22 12:56:50    2016-02-22 12:56:50
33805    15016    812    2016-04-08 17:12:52    2016-04-08 17:12:52
33806    15601    895    2016-04-12 21:00:53    2016-04-12 21:00:53
33807    18997    886    2016-04-06 18:11:13    2016-04-06 18:11:13
33808    17813    763    2016-04-16 11:21:53    2016-04-16 11:21:53
33809    18153    695    2016-01-25 10:31:36    2016-01-25 10:31:36
33810    15836    890    2016-01-23 09:06:36    2016-01-23 09:06:36
33811    13545    553    2016-03-01 23:30:02    2016-03-01 23:30:02
33812    17636    541    2016-03-28 02:28:05    2016-03-28 02:28:05
33813    11775    911    2016-03-28 11:35:24    2016-03-28 11:35:24
33814    16151    823    2016-03-23 01:57:01    2016-03-23 01:57:01
33815    14976    717    2016-01-30 13:31:11    2016-01-30 13:31:11
33816    15131    801    2016-03-26 02:58:38    2016-03-26 02:58:38
33817    13471    679    2016-03-01 12:18:32    2016-03-01 12:18:32
33818    13890    816    2016-03-21 23:43:09    2016-03-21 23:43:09
33819    10783    935    2016-02-15 03:34:32    2016-02-15 03:34:32
33820    19652    547    2016-02-17 15:35:18    2016-02-17 15:35:18
33821    17640    752    2016-03-28 16:35:02    2016-03-28 16:35:02
33822    16278    676    2016-04-03 14:10:42    2016-04-03 14:10:42
33823    17587    472    2016-01-31 06:11:05    2016-01-31 06:11:05
33824    17943    890    2016-02-25 17:42:13    2016-02-25 17:42:13
33825    19778    948    2016-04-01 02:30:05    2016-04-01 02:30:05
33826    18940    589    2016-02-17 04:18:53    2016-02-17 04:18:53
33827    15689    902    2016-02-17 19:31:23    2016-02-17 19:31:23
33828    15192    784    2016-03-03 10:40:45    2016-03-03 10:40:45
33829    17478    484    2016-02-17 01:39:46    2016-02-17 01:39:46
33830    17489    578    2016-01-25 12:35:04    2016-01-25 12:35:04
33831    14875    604    2016-04-09 23:46:53    2016-04-09 23:46:53
33832    16352    828    2016-03-16 13:17:23    2016-03-16 13:17:23
33833    16181    478    2016-03-25 18:33:24    2016-03-25 18:33:24
33834    11309    697    2016-03-11 19:28:37    2016-03-11 19:28:37
33835    12249    904    2016-01-29 17:58:25    2016-01-29 17:58:25
33836    18519    847    2016-04-12 02:58:55    2016-04-12 02:58:55
33837    19659    706    2016-04-10 02:38:45    2016-04-10 02:38:45
33838    17206    527    2016-01-25 01:18:38    2016-01-25 01:18:38
33839    19877    834    2016-01-28 20:40:52    2016-01-28 20:40:52
33840    15193    959    2016-03-18 06:56:52    2016-03-18 06:56:52
33841    12330    925    2016-04-11 07:55:23    2016-04-11 07:55:23
33842    16571    655    2016-03-06 13:50:23    2016-03-06 13:50:23
33843    17775    659    2016-02-22 10:55:31    2016-02-22 10:55:31
33844    17490    711    2016-03-21 03:09:56    2016-03-21 03:09:56
33845    12544    797    2016-01-30 05:28:50    2016-01-30 05:28:50
33846    14942    492    2016-04-19 03:28:57    2016-04-19 03:28:57
33847    10230    940    2016-03-22 15:05:51    2016-03-22 15:05:51
33848    10383    808    2016-01-25 23:42:57    2016-01-25 23:42:57
33849    13311    546    2016-03-23 06:02:04    2016-03-23 06:02:04
33850    15985    922    2016-01-27 20:31:50    2016-01-27 20:31:50
33851    13303    947    2016-01-31 17:03:21    2016-01-31 17:03:21
33852    11268    756    2016-02-13 13:07:52    2016-02-13 13:07:52
33853    18346    543    2016-02-24 04:52:19    2016-02-24 04:52:19
33854    10934    776    2016-02-14 13:03:52    2016-02-14 13:03:52
33855    10384    687    2016-02-02 08:25:43    2016-02-02 08:25:43
33856    13222    898    2016-03-12 18:49:05    2016-03-12 18:49:05
33857    12306    827    2016-03-12 14:58:31    2016-03-12 14:58:31
33858    17323    732    2016-04-11 17:46:05    2016-04-11 17:46:05
33859    10881    498    2016-02-02 07:04:16    2016-02-02 07:04:16
33860    15559    798    2016-03-21 10:52:21    2016-03-21 10:52:21
33861    17446    744    2016-02-29 07:59:55    2016-02-29 07:59:55
33862    18910    630    2016-03-10 21:02:27    2016-03-10 21:02:27
33863    10217    736    2016-04-14 15:32:20    2016-04-14 15:32:20
33864    18806    876    2016-04-06 02:28:16    2016-04-06 02:28:16
33865    16983    530    2016-02-13 05:11:26    2016-02-13 05:11:26
33866    15516    664    2016-03-24 15:50:28    2016-03-24 15:50:28
33867    17283    844    2016-03-25 00:10:16    2016-03-25 00:10:16
33868    12243    614    2016-03-01 18:37:51    2016-03-01 18:37:51
33869    19838    553    2016-02-24 08:15:31    2016-02-24 08:15:31
33870    17155    748    2016-02-12 18:50:24    2016-02-12 18:50:24
33871    14612    539    2016-02-04 19:58:34    2016-02-04 19:58:34
33872    18646    704    2016-02-15 13:33:43    2016-02-15 13:33:43
33873    16125    628    2016-02-09 04:14:35    2016-02-09 04:14:35
33874    12628    784    2016-02-01 20:49:01    2016-02-01 20:49:01
33875    17414    821    2016-02-23 19:18:51    2016-02-23 19:18:51
33876    16967    837    2016-02-05 17:35:02    2016-02-05 17:35:02
33877    16461    771    2016-03-29 21:23:10    2016-03-29 21:23:10
33878    18503    858    2016-01-31 00:44:56    2016-01-31 00:44:56
33879    12665    803    2016-03-27 18:03:46    2016-03-27 18:03:46
33880    11524    835    2016-03-08 08:14:00    2016-03-08 08:14:00
33881    17422    581    2016-02-23 18:48:44    2016-02-23 18:48:44
33882    16528    507    2016-02-11 00:30:39    2016-02-11 00:30:39
33883    10733    651    2016-03-20 09:06:12    2016-03-20 09:06:12
33884    13378    840    2016-03-27 09:55:53    2016-03-27 09:55:53
33885    14554    549    2016-01-26 00:32:15    2016-01-26 00:32:15
33886    15902    484    2016-02-11 11:02:00    2016-02-11 11:02:00
33887    11316    822    2016-02-06 23:01:30    2016-02-06 23:01:30
33888    16298    913    2016-04-19 14:52:08    2016-04-19 14:52:08
33889    12381    742    2016-02-28 08:29:07    2016-02-28 08:29:07
33890    18572    672    2016-03-08 20:18:55    2016-03-08 20:18:55
33891    19634    721    2016-03-15 19:59:40    2016-03-15 19:59:40
33892    11526    833    2016-02-13 14:17:11    2016-02-13 14:17:11
33893    11293    906    2016-03-16 20:41:53    2016-03-16 20:41:53
33894    15003    710    2016-04-04 10:50:42    2016-04-04 10:50:42
33895    11064    925    2016-02-24 05:20:17    2016-02-24 05:20:17
33896    10298    604    2016-04-05 19:59:48    2016-04-05 19:59:48
33897    13024    943    2016-02-06 11:22:23    2016-02-06 11:22:23
33898    17193    903    2016-02-17 13:44:30    2016-02-17 13:44:30
33899    11115    922    2016-03-22 06:05:56    2016-03-22 06:05:56
33900    17935    930    2016-03-31 20:25:06    2016-03-31 20:25:06
33901    15341    746    2016-03-22 01:46:55    2016-03-22 01:46:55
33902    11562    744    2016-02-28 01:10:26    2016-02-28 01:10:26
33903    16275    887    2016-03-27 08:22:20    2016-03-27 08:22:20
33904    18751    534    2016-02-18 18:24:50    2016-02-18 18:24:50
33905    11400    688    2016-03-16 02:57:25    2016-03-16 02:57:25
33906    11792    628    2016-03-01 01:02:48    2016-03-01 01:02:48
33907    16962    820    2016-02-28 21:54:53    2016-02-28 21:54:53
33908    18526    593    2016-02-11 22:37:39    2016-02-11 22:37:39
33909    14154    478    2016-02-29 06:17:55    2016-02-29 06:17:55
33910    19409    610    2016-02-15 15:43:19    2016-02-15 15:43:19
33911    19726    616    2016-01-26 16:52:29    2016-01-26 16:52:29
33912    11383    949    2016-04-01 08:47:49    2016-04-01 08:47:49
33913    19960    898    2016-02-07 11:21:03    2016-02-07 11:21:03
33914    12800    950    2016-03-24 09:48:21    2016-03-24 09:48:21
33915    19619    859    2016-02-01 14:57:26    2016-02-01 14:57:26
33916    18131    782    2016-04-06 05:11:48    2016-04-06 05:11:48
33917    14810    933    2016-01-26 07:15:12    2016-01-26 07:15:12
33918    18270    646    2016-02-22 02:25:09    2016-02-22 02:25:09
33919    17682    804    2016-02-16 23:34:19    2016-02-16 23:34:19
33920    12679    809    2016-04-11 01:55:42    2016-04-11 01:55:42
33921    13053    801    2016-02-05 22:09:29    2016-02-05 22:09:29
33922    12362    578    2016-02-29 04:28:13    2016-02-29 04:28:13
33923    18715    912    2016-03-26 23:50:56    2016-03-26 23:50:56
33924    15777    950    2016-04-02 18:49:12    2016-04-02 18:49:12
33925    10115    852    2016-04-14 00:24:37    2016-04-14 00:24:37
33926    11573    900    2016-02-24 09:47:49    2016-02-24 09:47:49
33927    14297    708    2016-02-04 04:24:16    2016-02-04 04:24:16
33928    15337    589    2016-03-24 16:13:08    2016-03-24 16:13:08
33929    18770    796    2016-03-25 08:41:06    2016-03-25 08:41:06
33930    19329    605    2016-02-13 00:59:10    2016-02-13 00:59:10
33931    16201    613    2016-03-05 08:43:14    2016-03-05 08:43:14
33932    16815    555    2016-04-17 22:40:24    2016-04-17 22:40:24
33933    13053    516    2016-03-20 15:23:20    2016-03-20 15:23:20
33934    19527    711    2016-04-02 08:19:43    2016-04-02 08:19:43
33935    14644    858    2016-02-09 07:46:35    2016-02-09 07:46:35
33936    13557    704    2016-03-20 19:17:16    2016-03-20 19:17:16
33937    10483    674    2016-03-01 14:21:02    2016-03-01 14:21:02
33938    11770    709    2016-03-23 10:03:20    2016-03-23 10:03:20
33939    11540    799    2016-03-14 02:09:36    2016-03-14 02:09:36
33940    15444    662    2016-03-05 07:01:46    2016-03-05 07:01:46
33941    15052    565    2016-01-29 14:31:17    2016-01-29 14:31:17
33942    11016    514    2016-03-12 18:14:54    2016-03-12 18:14:54
33943    14737    632    2016-04-09 12:34:22    2016-04-09 12:34:22
33944    19656    475    2016-04-07 19:48:46    2016-04-07 19:48:46
33945    18258    541    2016-04-05 15:42:03    2016-04-05 15:42:03
33946    16330    922    2016-04-09 10:41:38    2016-04-09 10:41:38
33947    15342    801    2016-02-09 23:30:31    2016-02-09 23:30:31
33948    10864    568    2016-02-14 20:36:30    2016-02-14 20:36:30
33949    16551    855    2016-03-15 02:28:01    2016-03-15 02:28:01
33950    11006    808    2016-04-04 09:13:25    2016-04-04 09:13:25
33951    11479    880    2016-03-29 14:28:37    2016-03-29 14:28:37
33952    10113    861    2016-02-28 05:17:18    2016-02-28 05:17:18
33953    17536    571    2016-03-08 07:42:10    2016-03-08 07:42:10
33954    11056    862    2016-02-04 01:41:58    2016-02-04 01:41:58
33955    16418    631    2016-03-29 01:16:45    2016-03-29 01:16:45
33956    16525    915    2016-02-05 12:32:34    2016-02-05 12:32:34
33957    12349    631    2016-01-26 00:07:19    2016-01-26 00:07:19
33958    13756    733    2016-04-15 08:02:26    2016-04-15 08:02:26
33959    10560    879    2016-02-22 00:18:08    2016-02-22 00:18:08
33960    13327    626    2016-02-01 14:17:53    2016-02-01 14:17:53
33961    16731    528    2016-03-29 04:32:14    2016-03-29 04:32:14
33962    11431    467    2016-03-25 09:58:27    2016-03-25 09:58:27
33963    15017    792    2016-01-23 13:07:14    2016-01-23 13:07:14
33964    14618    655    2016-03-14 12:18:29    2016-03-14 12:18:29
33965    19665    501    2016-04-10 17:13:33    2016-04-10 17:13:33
33966    15997    820    2016-02-12 01:59:58    2016-02-12 01:59:58
33967    14240    907    2016-03-13 06:24:06    2016-03-13 06:24:06
33968    16278    781    2016-03-01 11:26:39    2016-03-01 11:26:39
33969    15838    843    2016-02-27 17:02:13    2016-02-27 17:02:13
33970    19966    804    2016-02-11 19:04:09    2016-02-11 19:04:09
33971    14003    958    2016-02-26 06:14:16    2016-02-26 06:14:16
33972    14958    537    2016-04-15 10:06:58    2016-04-15 10:06:58
33973    19741    711    2016-02-29 01:02:47    2016-02-29 01:02:47
33974    12237    577    2016-03-24 03:05:41    2016-03-24 03:05:41
33975    16719    571    2016-02-06 18:32:54    2016-02-06 18:32:54
33976    19218    533    2016-03-12 13:50:52    2016-03-12 13:50:52
33977    17979    474    2016-04-04 08:59:24    2016-04-04 08:59:24
33978    16998    724    2016-02-23 12:40:00    2016-02-23 12:40:00
33979    11283    540    2016-03-07 10:41:45    2016-03-07 10:41:45
33980    18766    509    2016-03-29 13:53:21    2016-03-29 13:53:21
33981    14294    535    2016-02-07 23:49:39    2016-02-07 23:49:39
33982    13431    708    2016-03-09 09:52:41    2016-03-09 09:52:41
33983    19930    500    2016-03-18 09:35:16    2016-03-18 09:35:16
33984    16588    612    2016-04-08 16:48:51    2016-04-08 16:48:51
33985    17047    859    2016-02-24 15:21:20    2016-02-24 15:21:20
33986    19927    898    2016-04-04 09:35:03    2016-04-04 09:35:03
33987    13991    917    2016-02-14 02:00:06    2016-02-14 02:00:06
33988    17023    959    2016-03-16 01:25:35    2016-03-16 01:25:35
33989    19625    911    2016-03-09 17:48:30    2016-03-09 17:48:30
33990    18142    785    2016-03-18 00:14:29    2016-03-18 00:14:29
33991    19482    656    2016-03-08 05:47:42    2016-03-08 05:47:42
33992    15923    751    2016-03-15 16:57:43    2016-03-15 16:57:43
33993    17470    820    2016-04-19 14:56:04    2016-04-19 14:56:04
33994    17214    846    2016-03-30 04:39:38    2016-03-30 04:39:38
33995    11507    508    2016-02-08 15:57:24    2016-02-08 15:57:24
33996    10209    890    2016-03-24 14:08:00    2016-03-24 14:08:00
33997    13177    770    2016-03-02 14:47:16    2016-03-02 14:47:16
33998    18374    510    2016-02-12 05:58:48    2016-02-12 05:58:48
33999    13554    523    2016-03-31 17:07:36    2016-03-31 17:07:36
34000    12477    539    2016-02-08 07:10:14    2016-02-08 07:10:14
34001    16471    771    2016-02-10 20:31:09    2016-02-10 20:31:09
34002    11703    754    2016-04-10 16:08:01    2016-04-10 16:08:01
34003    18652    613    2016-03-14 08:41:33    2016-03-14 08:41:33
34004    14175    794    2016-04-05 22:41:12    2016-04-05 22:41:12
34005    17442    476    2016-04-16 02:57:03    2016-04-16 02:57:03
34006    10890    812    2016-03-24 00:51:26    2016-03-24 00:51:26
34007    16828    530    2016-03-18 06:51:58    2016-03-18 06:51:58
34008    15287    761    2016-03-17 10:05:01    2016-03-17 10:05:01
34009    14311    828    2016-02-19 09:21:47    2016-02-19 09:21:47
34010    14707    861    2016-02-03 02:48:55    2016-02-03 02:48:55
34011    17766    864    2016-04-15 12:42:30    2016-04-15 12:42:30
34012    10274    872    2016-02-16 01:19:47    2016-02-16 01:19:47
34013    12625    528    2016-04-06 12:20:48    2016-04-06 12:20:48
34014    13482    468    2016-03-21 06:05:31    2016-03-21 06:05:31
34015    11941    879    2016-03-14 21:28:03    2016-03-14 21:28:03
34016    13216    846    2016-02-29 03:15:21    2016-02-29 03:15:21
34017    12839    550    2016-03-08 07:23:36    2016-03-08 07:23:36
34018    18659    819    2016-02-05 15:01:25    2016-02-05 15:01:25
34019    12307    826    2016-03-29 17:33:45    2016-03-29 17:33:45
34020    12040    611    2016-04-05 16:44:31    2016-04-05 16:44:31
34021    12378    911    2016-03-18 07:10:06    2016-03-18 07:10:06
34022    12884    906    2016-02-05 03:01:01    2016-02-05 03:01:01
34023    10617    503    2016-02-02 23:00:54    2016-02-02 23:00:54
34024    12151    920    2016-01-28 03:01:20    2016-01-28 03:01:20
34025    10738    776    2016-01-24 20:11:26    2016-01-24 20:11:26
34026    19325    807    2016-02-09 15:58:43    2016-02-09 15:58:43
34027    12522    872    2016-01-31 12:21:27    2016-01-31 12:21:27
34028    11312    642    2016-02-06 11:17:58    2016-02-06 11:17:58
34029    14312    830    2016-03-08 00:07:45    2016-03-08 00:07:45
34030    10522    877    2016-02-27 01:03:26    2016-02-27 01:03:26
34031    14203    872    2016-03-07 10:25:52    2016-03-07 10:25:52
34032    10646    640    2016-02-06 06:45:04    2016-02-06 06:45:04
34033    13636    861    2016-02-02 04:49:25    2016-02-02 04:49:25
34034    14074    777    2016-04-02 00:09:06    2016-04-02 00:09:06
34035    12832    914    2016-01-23 05:15:18    2016-01-23 05:15:18
34036    18319    922    2016-02-11 02:26:16    2016-02-11 02:26:16
34037    18459    752    2016-04-02 02:34:27    2016-04-02 02:34:27
34038    12846    867    2016-02-08 01:56:58    2016-02-08 01:56:58
34039    18176    511    2016-03-06 08:59:22    2016-03-06 08:59:22
34040    17207    623    2016-01-31 00:05:24    2016-01-31 00:05:24
34041    17608    560    2016-02-18 19:31:56    2016-02-18 19:31:56
34042    14267    618    2016-02-20 11:29:47    2016-02-20 11:29:47
34043    12988    931    2016-03-29 11:55:37    2016-03-29 11:55:37
34044    12170    932    2016-04-11 10:26:50    2016-04-11 10:26:50
34045    16197    588    2016-04-15 10:41:13    2016-04-15 10:41:13
34046    19510    885    2016-04-01 01:53:43    2016-04-01 01:53:43
34047    15990    627    2016-03-07 01:17:38    2016-03-07 01:17:38
34048    19920    743    2016-03-15 14:20:22    2016-03-15 14:20:22
34049    16943    479    2016-04-07 00:38:13    2016-04-07 00:38:13
34050    14695    941    2016-02-13 02:49:38    2016-02-13 02:49:38
34051    11383    550    2016-03-18 23:37:07    2016-03-18 23:37:07
34052    15971    876    2016-02-14 23:58:01    2016-02-14 23:58:01
34053    10412    669    2016-03-21 09:10:10    2016-03-21 09:10:10
34054    12964    609    2016-03-06 16:46:15    2016-03-06 16:46:15
34055    16469    844    2016-04-01 06:48:48    2016-04-01 06:48:48
34056    19518    662    2016-03-09 06:03:04    2016-03-09 06:03:04
34057    16448    869    2016-04-20 15:39:56    2016-04-20 15:39:56
34058    10810    793    2016-02-18 01:23:13    2016-02-18 01:23:13
34059    16137    679    2016-01-31 22:34:08    2016-01-31 22:34:08
34060    10751    837    2016-02-07 08:35:00    2016-02-07 08:35:00
34061    11333    747    2016-04-15 09:24:58    2016-04-15 09:24:58
34062    19553    882    2016-03-31 04:26:15    2016-03-31 04:26:15
34063    11378    652    2016-03-04 21:53:40    2016-03-04 21:53:40
34064    18769    658    2016-03-12 15:38:37    2016-03-12 15:38:37
34065    12534    608    2016-03-29 10:38:18    2016-03-29 10:38:18
34066    19535    700    2016-03-25 20:46:40    2016-03-25 20:46:40
34067    18486    830    2016-03-29 04:50:17    2016-03-29 04:50:17
34068    14561    725    2016-04-17 17:35:17    2016-04-17 17:35:17
34069    17395    710    2016-03-27 11:09:58    2016-03-27 11:09:58
34070    11459    958    2016-02-01 06:31:11    2016-02-01 06:31:11
34071    18898    750    2016-03-28 02:33:46    2016-03-28 02:33:46
34072    10248    955    2016-04-18 10:42:50    2016-04-18 10:42:50
34073    14662    566    2016-03-04 04:25:31    2016-03-04 04:25:31
34074    15906    741    2016-01-30 01:21:39    2016-01-30 01:21:39
34075    17482    945    2016-04-10 12:55:20    2016-04-10 12:55:20
34076    18521    679    2016-02-17 12:44:05    2016-02-17 12:44:05
34077    14913    545    2016-04-08 00:09:36    2016-04-08 00:09:36
34078    10518    621    2016-04-13 16:15:06    2016-04-13 16:15:06
34079    15285    765    2016-03-28 02:55:57    2016-03-28 02:55:57
34080    10566    616    2016-01-29 12:32:03    2016-01-29 12:32:03
34081    17511    932    2016-04-09 20:38:38    2016-04-09 20:38:38
34082    16092    676    2016-02-03 07:39:31    2016-02-03 07:39:31
34083    19848    734    2016-02-16 23:45:02    2016-02-16 23:45:02
34084    13282    631    2016-04-11 04:26:44    2016-04-11 04:26:44
34085    14299    651    2016-03-29 21:43:24    2016-03-29 21:43:24
34086    18364    645    2016-02-08 03:55:10    2016-02-08 03:55:10
34087    12333    591    2016-03-16 14:12:24    2016-03-16 14:12:24
34088    13002    851    2016-04-16 02:46:12    2016-04-16 02:46:12
34089    16931    610    2016-02-13 00:45:53    2016-02-13 00:45:53
34090    17101    818    2016-02-10 15:26:44    2016-02-10 15:26:44
34091    15511    682    2016-03-07 08:08:56    2016-03-07 08:08:56
34092    19675    722    2016-01-30 02:06:23    2016-01-30 02:06:23
34093    19153    746    2016-04-17 12:00:42    2016-04-17 12:00:42
34094    13626    927    2016-02-17 02:30:28    2016-02-17 02:30:28
34095    17312    864    2016-03-23 01:18:01    2016-03-23 01:18:01
34096    14085    829    2016-02-12 16:35:04    2016-02-12 16:35:04
34097    11772    496    2016-03-06 08:55:57    2016-03-06 08:55:57
34098    10568    472    2016-04-08 07:06:40    2016-04-08 07:06:40
34099    12692    904    2016-01-26 17:31:34    2016-01-26 17:31:34
34100    15915    630    2016-02-07 01:43:03    2016-02-07 01:43:03
34101    13578    872    2016-03-16 23:46:35    2016-03-16 23:46:35
34102    15837    621    2016-02-20 14:35:37    2016-02-20 14:35:37
34103    13172    600    2016-03-07 12:40:23    2016-03-07 12:40:23
34104    17183    798    2016-01-29 04:44:04    2016-01-29 04:44:04
34105    13964    896    2016-03-21 08:02:23    2016-03-21 08:02:23
34106    13988    836    2016-03-26 11:40:31    2016-03-26 11:40:31
34107    16834    875    2016-02-11 18:01:26    2016-02-11 18:01:26
34108    17280    943    2016-02-10 17:10:34    2016-02-10 17:10:34
34109    19986    809    2016-03-17 07:01:05    2016-03-17 07:01:05
34110    17133    952    2016-03-08 12:43:24    2016-03-08 12:43:24
34111    14701    580    2016-02-10 11:53:58    2016-02-10 11:53:58
34112    15309    486    2016-01-25 20:24:59    2016-01-25 20:24:59
34113    19528    557    2016-03-14 00:58:08    2016-03-14 00:58:08
34114    13150    588    2016-04-17 04:09:30    2016-04-17 04:09:30
34115    13550    722    2016-02-08 19:37:44    2016-02-08 19:37:44
34116    16357    723    2016-04-04 08:49:25    2016-04-04 08:49:25
34117    12814    940    2016-02-26 18:13:10    2016-02-26 18:13:10
34118    14906    723    2016-03-02 16:08:31    2016-03-02 16:08:31
34119    16662    770    2016-03-21 15:14:35    2016-03-21 15:14:35
34120    17143    655    2016-03-27 19:35:27    2016-03-27 19:35:27
34121    14521    612    2016-01-22 16:08:55    2016-01-22 16:08:55
34122    13749    936    2016-02-19 19:39:01    2016-02-19 19:39:01
34123    19776    748    2016-04-15 15:36:19    2016-04-15 15:36:19
34124    15086    805    2016-04-03 15:14:01    2016-04-03 15:14:01
34125    17476    669    2016-04-15 03:35:12    2016-04-15 03:35:12
34126    14117    859    2016-03-23 05:49:34    2016-03-23 05:49:34
34127    10174    543    2016-02-01 14:01:34    2016-02-01 14:01:34
34128    10203    888    2016-02-06 03:44:34    2016-02-06 03:44:34
34129    11049    765    2016-04-12 15:51:45    2016-04-12 15:51:45
34130    17415    560    2016-04-04 22:24:00    2016-04-04 22:24:00
34131    15582    923    2016-04-05 23:50:49    2016-04-05 23:50:49
34132    11617    674    2016-02-03 07:12:36    2016-02-03 07:12:36
34133    18343    539    2016-03-07 13:10:13    2016-03-07 13:10:13
34134    15890    655    2016-02-06 09:07:08    2016-02-06 09:07:08
34135    16233    809    2016-03-25 14:24:51    2016-03-25 14:24:51
34136    10776    591    2016-02-27 07:23:03    2016-02-27 07:23:03
34137    15667    788    2016-01-29 23:24:48    2016-01-29 23:24:48
34138    14192    600    2016-03-16 01:54:11    2016-03-16 01:54:11
34139    12015    468    2016-01-26 18:53:01    2016-01-26 18:53:01
34140    15834    692    2016-01-31 19:13:47    2016-01-31 19:13:47
34141    16434    526    2016-03-01 12:20:55    2016-03-01 12:20:55
34142    16522    513    2016-03-03 19:23:50    2016-03-03 19:23:50
34143    10907    848    2016-04-20 00:03:38    2016-04-20 00:03:38
34144    18310    785    2016-02-25 20:32:57    2016-02-25 20:32:57
34145    14556    857    2016-01-28 12:19:41    2016-01-28 12:19:41
34146    12977    600    2016-04-17 05:15:56    2016-04-17 05:15:56
34147    10901    583    2016-01-26 09:55:48    2016-01-26 09:55:48
34148    11130    944    2016-02-19 08:37:39    2016-02-19 08:37:39
34149    19695    712    2016-04-19 18:16:57    2016-04-19 18:16:57
34150    12792    901    2016-03-20 04:46:46    2016-03-20 04:46:46
34151    12615    829    2016-02-29 13:49:17    2016-02-29 13:49:17
34152    13250    873    2016-03-21 02:15:55    2016-03-21 02:15:55
34153    10311    938    2016-02-02 06:49:34    2016-02-02 06:49:34
34154    12202    794    2016-03-03 21:56:47    2016-03-03 21:56:47
34155    11259    572    2016-02-27 00:47:58    2016-02-27 00:47:58
34156    17944    641    2016-02-10 00:50:06    2016-02-10 00:50:06
34157    11793    907    2016-03-12 23:56:40    2016-03-12 23:56:40
34158    18737    688    2016-04-19 14:56:19    2016-04-19 14:56:19
34159    11962    943    2016-02-04 05:57:02    2016-02-04 05:57:02
34160    10948    602    2016-02-29 13:53:07    2016-02-29 13:53:07
34161    19622    930    2016-01-31 21:30:25    2016-01-31 21:30:25
34162    12888    503    2016-04-14 06:23:36    2016-04-14 06:23:36
34163    19514    502    2016-03-29 09:40:20    2016-03-29 09:40:20
34164    15505    785    2016-02-06 11:44:56    2016-02-06 11:44:56
34165    18836    938    2016-02-11 00:02:27    2016-02-11 00:02:27
34166    17855    871    2016-03-19 22:46:38    2016-03-19 22:46:38
34167    16412    941    2016-02-13 20:28:44    2016-02-13 20:28:44
34168    18109    515    2016-02-26 06:37:35    2016-02-26 06:37:35
34169    14527    860    2016-02-12 18:15:11    2016-02-12 18:15:11
34170    10460    726    2016-04-07 23:42:59    2016-04-07 23:42:59
34171    12280    505    2016-02-12 07:05:16    2016-02-12 07:05:16
34172    13074    878    2016-02-13 04:57:46    2016-02-13 04:57:46
34173    10673    532    2016-04-18 04:13:15    2016-04-18 04:13:15
34174    14473    814    2016-03-04 13:37:35    2016-03-04 13:37:35
34175    15168    678    2016-03-18 07:42:08    2016-03-18 07:42:08
34176    19660    779    2016-02-20 19:35:30    2016-02-20 19:35:30
34177    19205    877    2016-02-14 10:30:20    2016-02-14 10:30:20
34178    18705    699    2016-03-05 10:41:26    2016-03-05 10:41:26
34179    10260    813    2016-01-31 14:16:21    2016-01-31 14:16:21
34180    18657    482    2016-03-20 15:36:40    2016-03-20 15:36:40
34181    11114    659    2016-02-02 09:43:18    2016-02-02 09:43:18
34182    19518    700    2016-02-01 09:04:50    2016-02-01 09:04:50
34183    17003    519    2016-03-31 01:02:25    2016-03-31 01:02:25
34184    17313    793    2016-03-10 16:20:17    2016-03-10 16:20:17
34185    19301    559    2016-03-28 20:48:22    2016-03-28 20:48:22
34186    16396    687    2016-03-22 20:43:36    2016-03-22 20:43:36
34187    19610    652    2016-03-01 04:25:38    2016-03-01 04:25:38
34188    19485    609    2016-01-30 20:32:49    2016-01-30 20:32:49
34189    12736    796    2016-03-31 17:20:15    2016-03-31 17:20:15
34190    17829    468    2016-02-02 15:33:46    2016-02-02 15:33:46
34191    18304    521    2016-03-16 07:43:42    2016-03-16 07:43:42
34192    15341    922    2016-01-31 21:46:08    2016-01-31 21:46:08
34193    10328    471    2016-04-13 12:36:30    2016-04-13 12:36:30
34194    19641    478    2016-02-05 17:49:26    2016-02-05 17:49:26
34195    15647    932    2016-03-22 22:33:58    2016-03-22 22:33:58
34196    12566    823    2016-02-19 11:36:23    2016-02-19 11:36:23
34197    10359    597    2016-02-11 07:11:00    2016-02-11 07:11:00
34198    10923    778    2016-02-29 06:52:31    2016-02-29 06:52:31
34199    14764    672    2016-02-20 13:31:42    2016-02-20 13:31:42
34200    13487    745    2016-01-27 05:33:31    2016-01-27 05:33:31
34201    14350    602    2016-02-20 00:23:32    2016-02-20 00:23:32
34202    17252    887    2016-03-11 03:53:00    2016-03-11 03:53:00
34203    12150    554    2016-01-23 19:29:39    2016-01-23 19:29:39
34204    19406    843    2016-04-17 02:38:53    2016-04-17 02:38:53
34205    10441    759    2016-03-01 11:04:51    2016-03-01 11:04:51
34206    14068    878    2016-02-05 16:12:04    2016-02-05 16:12:04
34207    18597    941    2016-02-04 23:38:52    2016-02-04 23:38:52
34208    13053    555    2016-03-14 02:29:30    2016-03-14 02:29:30
34209    16951    638    2016-03-21 09:58:18    2016-03-21 09:58:18
34210    12212    765    2016-02-17 05:04:48    2016-02-17 05:04:48
34211    15725    847    2016-02-22 12:07:41    2016-02-22 12:07:41
34212    17570    775    2016-02-23 21:40:17    2016-02-23 21:40:17
34213    17992    486    2016-03-06 20:14:53    2016-03-06 20:14:53
34214    13514    791    2016-03-11 04:01:16    2016-03-11 04:01:16
34215    12441    623    2016-03-14 21:26:41    2016-03-14 21:26:41
34216    16013    713    2016-04-09 22:15:03    2016-04-09 22:15:03
34217    16347    823    2016-04-01 23:16:30    2016-04-01 23:16:30
34218    17103    741    2016-03-22 22:59:22    2016-03-22 22:59:22
34219    17699    849    2016-02-05 13:31:07    2016-02-05 13:31:07
34220    10458    862    2016-01-30 09:25:24    2016-01-30 09:25:24
34221    12431    570    2016-04-17 10:46:58    2016-04-17 10:46:58
34222    17965    612    2016-04-10 17:34:29    2016-04-10 17:34:29
34223    12875    745    2016-04-20 21:01:23    2016-04-20 21:01:23
34224    14671    571    2016-04-07 19:08:54    2016-04-07 19:08:54
34225    13290    554    2016-03-04 09:32:20    2016-03-04 09:32:20
34226    10433    743    2016-01-31 16:17:07    2016-01-31 16:17:07
34227    17936    954    2016-03-04 17:56:49    2016-03-04 17:56:49
34228    14204    617    2016-02-17 04:18:29    2016-02-17 04:18:29
34229    16131    953    2016-02-10 07:51:54    2016-02-10 07:51:54
34230    10128    775    2016-03-21 17:40:48    2016-03-21 17:40:48
34231    17336    663    2016-02-17 23:40:15    2016-02-17 23:40:15
34232    14521    771    2016-02-24 08:18:00    2016-02-24 08:18:00
34233    18911    803    2016-03-17 16:59:55    2016-03-17 16:59:55
34234    14365    621    2016-02-21 19:33:46    2016-02-21 19:33:46
34235    13519    844    2016-03-28 04:53:27    2016-03-28 04:53:27
34236    13504    824    2016-04-18 00:41:09    2016-04-18 00:41:09
34237    18506    478    2016-01-27 05:47:25    2016-01-27 05:47:25
34238    17570    831    2016-04-03 00:32:24    2016-04-03 00:32:24
34239    12006    840    2016-02-20 15:09:39    2016-02-20 15:09:39
34240    19548    948    2016-02-06 00:43:11    2016-02-06 00:43:11
34241    12027    484    2016-03-13 01:25:25    2016-03-13 01:25:25
34242    14438    714    2016-01-26 09:59:23    2016-01-26 09:59:23
34243    18792    473    2016-02-14 00:05:32    2016-02-14 00:05:32
34244    14424    658    2016-04-19 09:15:52    2016-04-19 09:15:52
34245    19864    913    2016-02-20 08:17:50    2016-02-20 08:17:50
34246    13460    889    2016-04-17 09:16:00    2016-04-17 09:16:00
34247    13359    570    2016-02-01 08:43:34    2016-02-01 08:43:34
34248    13769    885    2016-03-16 16:28:21    2016-03-16 16:28:21
34249    18478    957    2016-03-24 00:33:54    2016-03-24 00:33:54
34250    17851    518    2016-03-24 13:36:17    2016-03-24 13:36:17
34251    12629    868    2016-04-13 08:25:09    2016-04-13 08:25:09
34252    13825    600    2016-01-25 09:57:17    2016-01-25 09:57:17
34253    17853    800    2016-03-10 07:04:07    2016-03-10 07:04:07
34254    10010    886    2016-04-03 13:28:24    2016-04-03 13:28:24
34255    19140    556    2016-03-31 16:29:02    2016-03-31 16:29:02
34256    15817    515    2016-01-31 22:26:26    2016-01-31 22:26:26
34257    18990    806    2016-02-06 10:26:33    2016-02-06 10:26:33
34258    19766    851    2016-03-03 22:41:15    2016-03-03 22:41:15
34259    10615    746    2016-04-12 14:19:53    2016-04-12 14:19:53
34260    12540    688    2016-04-16 09:26:09    2016-04-16 09:26:09
34261    11301    937    2016-04-17 23:08:38    2016-04-17 23:08:38
34262    18065    738    2016-02-03 16:13:21    2016-02-03 16:13:21
34263    18365    555    2016-04-05 21:53:20    2016-04-05 21:53:20
34264    15747    488    2016-04-09 23:48:33    2016-04-09 23:48:33
34265    16074    655    2016-01-24 14:27:23    2016-01-24 14:27:23
34266    19065    755    2016-03-29 18:31:00    2016-03-29 18:31:00
34267    16102    690    2016-03-18 10:49:23    2016-03-18 10:49:23
34268    17973    838    2016-04-18 00:40:58    2016-04-18 00:40:58
34269    19739    620    2016-03-25 03:10:39    2016-03-25 03:10:39
34270    19400    956    2016-03-19 05:45:35    2016-03-19 05:45:35
34271    16747    765    2016-04-10 03:42:14    2016-04-10 03:42:14
34272    12892    717    2016-03-16 02:06:43    2016-03-16 02:06:43
34273    16843    547    2016-03-25 08:56:42    2016-03-25 08:56:42
34274    18183    479    2016-04-04 15:41:46    2016-04-04 15:41:46
34275    15593    641    2016-03-20 20:17:42    2016-03-20 20:17:42
34276    16064    711    2016-02-13 07:58:17    2016-02-13 07:58:17
34277    14332    578    2016-03-25 09:01:30    2016-03-25 09:01:30
34278    13405    839    2016-01-24 17:10:41    2016-01-24 17:10:41
34279    15077    589    2016-02-12 03:28:25    2016-02-12 03:28:25
34280    18152    723    2016-01-28 23:59:25    2016-01-28 23:59:25
34281    13070    523    2016-01-25 02:43:15    2016-01-25 02:43:15
34282    18542    915    2016-01-28 18:28:26    2016-01-28 18:28:26
34283    10282    740    2016-02-08 00:15:30    2016-02-08 00:15:30
34284    18248    830    2016-02-15 05:09:55    2016-02-15 05:09:55
34285    14109    472    2016-04-20 18:22:31    2016-04-20 18:22:31
34286    11176    862    2016-02-16 20:41:32    2016-02-16 20:41:32
34287    13752    582    2016-02-03 07:44:04    2016-02-03 07:44:04
34288    10501    913    2016-02-05 18:16:02    2016-02-05 18:16:02
34289    11226    764    2016-03-12 10:29:34    2016-03-12 10:29:34
34290    12708    760    2016-03-19 01:34:05    2016-03-19 01:34:05
34291    13856    531    2016-04-02 14:02:24    2016-04-02 14:02:24
34292    15628    542    2016-03-03 15:37:04    2016-03-03 15:37:04
34293    16071    514    2016-03-02 07:59:20    2016-03-02 07:59:20
34294    13475    601    2016-01-25 00:57:15    2016-01-25 00:57:15
34295    19788    725    2016-04-05 10:05:14    2016-04-05 10:05:14
34296    12183    752    2016-02-16 23:19:03    2016-02-16 23:19:03
34297    11526    760    2016-01-25 03:56:45    2016-01-25 03:56:45
34298    17516    659    2016-03-15 15:37:42    2016-03-15 15:37:42
34299    11700    491    2016-03-28 08:16:16    2016-03-28 08:16:16
34300    13834    948    2016-03-26 12:31:05    2016-03-26 12:31:05
34301    12501    595    2016-02-20 05:21:04    2016-02-20 05:21:04
34302    14142    650    2016-03-16 16:30:17    2016-03-16 16:30:17
34303    18566    808    2016-03-22 12:09:02    2016-03-22 12:09:02
34304    13386    593    2016-02-04 04:06:57    2016-02-04 04:06:57
34305    19060    677    2016-04-12 09:11:29    2016-04-12 09:11:29
34306    16387    949    2016-03-19 03:46:12    2016-03-19 03:46:12
34307    18214    645    2016-04-08 22:57:05    2016-04-08 22:57:05
34308    13698    921    2016-04-08 17:39:43    2016-04-08 17:39:43
34309    10316    626    2016-01-24 11:58:04    2016-01-24 11:58:04
34310    13049    575    2016-03-05 21:09:34    2016-03-05 21:09:34
34311    18457    917    2016-03-10 23:44:02    2016-03-10 23:44:02
34312    10625    777    2016-02-15 20:43:51    2016-02-15 20:43:51
34313    19479    646    2016-04-11 14:25:24    2016-04-11 14:25:24
34314    19754    914    2016-03-03 03:53:58    2016-03-03 03:53:58
34315    16942    689    2016-03-25 15:52:22    2016-03-25 15:52:22
34316    16273    586    2016-04-10 08:31:00    2016-04-10 08:31:00
34317    13372    732    2016-03-31 01:23:15    2016-03-31 01:23:15
34318    18076    927    2016-02-06 19:06:42    2016-02-06 19:06:42
34319    15677    503    2016-03-01 22:15:26    2016-03-01 22:15:26
34320    11476    518    2016-03-29 21:10:43    2016-03-29 21:10:43
34321    19797    651    2016-01-27 17:32:25    2016-01-27 17:32:25
34322    11950    510    2016-02-07 09:31:51    2016-02-07 09:31:51
34323    13710    707    2016-02-29 16:16:34    2016-02-29 16:16:34
34324    17526    936    2016-03-16 20:28:53    2016-03-16 20:28:53
34325    19703    619    2016-01-26 17:04:43    2016-01-26 17:04:43
34326    16063    466    2016-04-10 08:24:20    2016-04-10 08:24:20
34327    16845    672    2016-03-27 20:46:42    2016-03-27 20:46:42
34328    11774    839    2016-03-28 14:16:27    2016-03-28 14:16:27
34329    12596    919    2016-01-25 22:43:26    2016-01-25 22:43:26
34330    18016    496    2016-03-27 22:16:36    2016-03-27 22:16:36
34331    16213    510    2016-04-08 13:00:57    2016-04-08 13:00:57
34332    18001    883    2016-04-07 00:15:31    2016-04-07 00:15:31
34333    13105    662    2016-04-05 00:38:24    2016-04-05 00:38:24
34334    15761    518    2016-03-11 00:28:04    2016-03-11 00:28:04
34335    14679    465    2016-03-08 16:49:05    2016-03-08 16:49:05
34336    14047    658    2016-02-03 05:11:37    2016-02-03 05:11:37
34337    13872    757    2016-02-24 17:22:02    2016-02-24 17:22:02
34338    11086    763    2016-01-31 22:34:55    2016-01-31 22:34:55
34339    18113    792    2016-03-19 06:08:17    2016-03-19 06:08:17
34340    10390    752    2016-02-13 13:14:06    2016-02-13 13:14:06
34341    13365    609    2016-02-03 06:45:30    2016-02-03 06:45:30
34342    16691    878    2016-04-05 22:39:41    2016-04-05 22:39:41
34343    11506    741    2016-01-31 23:07:45    2016-01-31 23:07:45
34344    17272    665    2016-03-13 09:42:56    2016-03-13 09:42:56
34345    16726    894    2016-03-18 08:39:46    2016-03-18 08:39:46
34346    14619    664    2016-04-14 02:41:47    2016-04-14 02:41:47
34347    15276    961    2016-04-02 17:11:54    2016-04-02 17:11:54
34348    12478    845    2016-01-29 12:58:52    2016-01-29 12:58:52
34349    18024    570    2016-03-27 20:57:55    2016-03-27 20:57:55
34350    18767    918    2016-03-21 20:51:43    2016-03-21 20:51:43
34351    10908    527    2016-02-04 14:16:39    2016-02-04 14:16:39
34352    10108    707    2016-03-22 16:37:39    2016-03-22 16:37:39
34353    19305    510    2016-01-26 09:21:49    2016-01-26 09:21:49
34354    12544    599    2016-02-27 02:29:12    2016-02-27 02:29:12
34355    11807    525    2016-02-17 04:54:37    2016-02-17 04:54:37
34356    16168    662    2016-02-05 15:48:25    2016-02-05 15:48:25
34357    14343    645    2016-04-07 16:25:44    2016-04-07 16:25:44
34358    16177    949    2016-01-25 01:36:56    2016-01-25 01:36:56
34359    13454    482    2016-02-25 10:54:22    2016-02-25 10:54:22
34360    16656    486    2016-02-26 12:00:15    2016-02-26 12:00:15
34361    10683    748    2016-01-22 20:25:59    2016-01-22 20:25:59
34362    11767    532    2016-02-23 06:27:19    2016-02-23 06:27:19
34363    13424    487    2016-04-01 18:27:43    2016-04-01 18:27:43
34364    11962    873    2016-03-06 08:48:38    2016-03-06 08:48:38
34365    18935    838    2016-02-25 21:36:28    2016-02-25 21:36:28
34366    12876    512    2016-03-17 05:54:25    2016-03-17 05:54:25
34367    15405    498    2016-03-19 10:36:24    2016-03-19 10:36:24
34368    13626    527    2016-04-03 12:23:08    2016-04-03 12:23:08
34369    15891    530    2016-04-15 03:22:18    2016-04-15 03:22:18
34370    14324    630    2016-04-18 20:32:05    2016-04-18 20:32:05
34371    19780    670    2016-02-21 00:36:40    2016-02-21 00:36:40
34372    18016    505    2016-02-27 12:35:40    2016-02-27 12:35:40
34373    18394    557    2016-02-21 13:23:36    2016-02-21 13:23:36
34374    12923    518    2016-02-04 05:26:40    2016-02-04 05:26:40
34375    17336    526    2016-02-04 04:37:33    2016-02-04 04:37:33
34376    11622    914    2016-02-16 11:28:43    2016-02-16 11:28:43
34377    18884    842    2016-02-19 02:09:59    2016-02-19 02:09:59
34378    16227    621    2016-02-03 22:41:02    2016-02-03 22:41:02
34379    16604    828    2016-03-07 11:25:33    2016-03-07 11:25:33
34380    11411    618    2016-04-05 19:38:01    2016-04-05 19:38:01
34381    17665    635    2016-02-24 16:03:25    2016-02-24 16:03:25
34382    10695    960    2016-04-08 07:32:17    2016-04-08 07:32:17
34383    10989    826    2016-04-16 03:52:20    2016-04-16 03:52:20
34384    10166    801    2016-04-03 15:38:33    2016-04-03 15:38:33
34385    15946    828    2016-02-11 15:31:01    2016-02-11 15:31:01
34386    11951    743    2016-01-31 08:43:22    2016-01-31 08:43:22
34387    14239    779    2016-04-14 23:07:44    2016-04-14 23:07:44
34388    10259    725    2016-04-09 08:08:42    2016-04-09 08:08:42
34389    18200    522    2016-03-06 05:56:54    2016-03-06 05:56:54
34390    14290    909    2016-02-02 17:10:15    2016-02-02 17:10:15
34391    12043    737    2016-03-03 23:07:32    2016-03-03 23:07:32
34392    16567    826    2016-04-10 04:28:14    2016-04-10 04:28:14
34393    14968    499    2016-03-29 18:44:56    2016-03-29 18:44:56
34394    10697    855    2016-02-22 07:23:11    2016-02-22 07:23:11
34395    11653    642    2016-04-10 00:23:42    2016-04-10 00:23:42
34396    15332    628    2016-02-02 15:35:04    2016-02-02 15:35:04
34397    18682    535    2016-03-23 13:05:57    2016-03-23 13:05:57
34398    17061    716    2016-02-11 08:44:10    2016-02-11 08:44:10
34399    17399    657    2016-02-13 23:58:56    2016-02-13 23:58:56
34400    18481    492    2016-01-31 03:13:20    2016-01-31 03:13:20
34401    17401    817    2016-03-13 14:38:15    2016-03-13 14:38:15
34402    11016    912    2016-02-13 12:22:01    2016-02-13 12:22:01
34403    10174    834    2016-02-24 10:18:11    2016-02-24 10:18:11
34404    15524    547    2016-03-26 13:52:03    2016-03-26 13:52:03
34405    12363    637    2016-01-30 08:42:57    2016-01-30 08:42:57
34406    16748    541    2016-02-24 06:00:03    2016-02-24 06:00:03
34407    17604    943    2016-02-09 19:47:45    2016-02-09 19:47:45
34408    15542    868    2016-03-31 03:21:42    2016-03-31 03:21:42
34409    19416    682    2016-03-20 08:59:38    2016-03-20 08:59:38
34410    15141    647    2016-04-04 20:18:22    2016-04-04 20:18:22
34411    10647    769    2016-03-18 23:32:25    2016-03-18 23:32:25
34412    10735    826    2016-03-04 12:45:46    2016-03-04 12:45:46
34413    14646    469    2016-04-01 02:01:13    2016-04-01 02:01:13
34414    15581    900    2016-02-17 16:27:06    2016-02-17 16:27:06
34415    18711    673    2016-03-13 20:30:26    2016-03-13 20:30:26
34416    17876    557    2016-03-04 07:40:58    2016-03-04 07:40:58
34417    14324    678    2016-04-11 10:01:14    2016-04-11 10:01:14
34418    17232    520    2016-03-30 10:44:36    2016-03-30 10:44:36
34419    18317    556    2016-03-16 20:33:09    2016-03-16 20:33:09
34420    13975    564    2016-02-21 10:55:35    2016-02-21 10:55:35
34421    10467    697    2016-03-15 13:13:10    2016-03-15 13:13:10
34422    14941    546    2016-02-12 06:05:43    2016-02-12 06:05:43
34423    15015    608    2016-01-28 22:17:13    2016-01-28 22:17:13
34424    13255    915    2016-02-06 01:26:17    2016-02-06 01:26:17
34425    10550    759    2016-04-05 18:02:18    2016-04-05 18:02:18
34426    15627    826    2016-04-20 05:00:25    2016-04-20 05:00:25
34427    15065    558    2016-04-15 16:51:23    2016-04-15 16:51:23
34428    13856    589    2016-02-06 23:57:58    2016-02-06 23:57:58
34429    16785    806    2016-03-21 00:13:26    2016-03-21 00:13:26
34430    13875    563    2016-01-30 09:24:53    2016-01-30 09:24:53
34431    17483    707    2016-01-30 23:58:34    2016-01-30 23:58:34
34432    14080    691    2016-03-08 05:02:21    2016-03-08 05:02:21
34433    13307    870    2016-03-28 14:26:10    2016-03-28 14:26:10
34434    14805    488    2016-02-20 23:15:41    2016-02-20 23:15:41
34435    12337    821    2016-02-19 01:38:05    2016-02-19 01:38:05
34436    17242    482    2016-02-17 14:28:02    2016-02-17 14:28:02
34437    18769    716    2016-02-03 15:37:26    2016-02-03 15:37:26
34438    12990    637    2016-03-15 21:29:34    2016-03-15 21:29:34
34439    16762    811    2016-03-30 09:48:08    2016-03-30 09:48:08
34440    10099    853    2016-02-15 19:10:06    2016-02-15 19:10:06
34441    11049    695    2016-04-15 16:25:34    2016-04-15 16:25:34
34442    14146    955    2016-01-31 21:58:15    2016-01-31 21:58:15
34443    13991    853    2016-03-06 00:28:09    2016-03-06 00:28:09
34444    10052    922    2016-03-10 13:27:17    2016-03-10 13:27:17
34445    19437    930    2016-02-27 17:19:36    2016-02-27 17:19:36
34446    16176    907    2016-04-20 04:45:43    2016-04-20 04:45:43
34447    17516    911    2016-03-05 11:40:30    2016-03-05 11:40:30
34448    10152    736    2016-02-17 09:21:44    2016-02-17 09:21:44
34449    11920    863    2016-02-20 15:38:21    2016-02-20 15:38:21
34450    17962    713    2016-02-10 00:19:02    2016-02-10 00:19:02
34451    10570    514    2016-02-20 22:21:51    2016-02-20 22:21:51
34452    10649    774    2016-02-28 07:33:28    2016-02-28 07:33:28
34453    19200    747    2016-02-28 20:49:35    2016-02-28 20:49:35
34454    11619    605    2016-03-19 23:33:38    2016-03-19 23:33:38
34455    17919    710    2016-02-09 03:10:48    2016-02-09 03:10:48
34456    17530    554    2016-03-10 13:12:08    2016-03-10 13:12:08
34457    14882    942    2016-03-23 11:58:05    2016-03-23 11:58:05
34458    18810    627    2016-04-10 10:15:31    2016-04-10 10:15:31
34459    15012    826    2016-03-21 15:58:10    2016-03-21 15:58:10
34460    14112    618    2016-03-01 12:31:25    2016-03-01 12:31:25
34461    18054    555    2016-02-08 12:37:26    2016-02-08 12:37:26
34462    11985    616    2016-02-04 20:17:49    2016-02-04 20:17:49
34463    11948    523    2016-02-10 07:34:04    2016-02-10 07:34:04
34464    19956    781    2016-02-13 09:35:49    2016-02-13 09:35:49
34465    14307    573    2016-02-25 10:55:30    2016-02-25 10:55:30
34466    11336    785    2016-03-28 23:47:01    2016-03-28 23:47:01
34467    14325    769    2016-02-02 14:59:19    2016-02-02 14:59:19
34468    13593    772    2016-04-06 14:26:26    2016-04-06 14:26:26
34469    19462    591    2016-02-01 03:08:40    2016-02-01 03:08:40
34470    13562    686    2016-04-09 11:11:47    2016-04-09 11:11:47
34471    19549    914    2016-02-26 00:44:27    2016-02-26 00:44:27
34472    16039    622    2016-02-12 06:46:50    2016-02-12 06:46:50
34473    15646    924    2016-03-11 17:46:08    2016-03-11 17:46:08
34474    10061    658    2016-02-03 10:31:13    2016-02-03 10:31:13
34475    15312    935    2016-04-01 16:41:20    2016-04-01 16:41:20
34476    17587    703    2016-02-12 15:54:12    2016-02-12 15:54:12
34477    18559    696    2016-03-13 17:49:27    2016-03-13 17:49:27
34478    11897    939    2016-04-10 15:13:57    2016-04-10 15:13:57
34479    11583    881    2016-03-24 08:06:05    2016-03-24 08:06:05
34480    13911    658    2016-04-08 08:30:39    2016-04-08 08:30:39
34481    14592    622    2016-03-23 10:51:29    2016-03-23 10:51:29
34482    18492    699    2016-02-15 21:33:18    2016-02-15 21:33:18
34483    10425    655    2016-02-24 15:22:29    2016-02-24 15:22:29
34484    18708    772    2016-03-09 19:21:47    2016-03-09 19:21:47
34485    14130    926    2016-04-13 18:00:48    2016-04-13 18:00:48
34486    15551    872    2016-02-03 01:58:56    2016-02-03 01:58:56
34487    18883    637    2016-04-17 03:55:04    2016-04-17 03:55:04
34488    14730    827    2016-03-30 05:17:34    2016-03-30 05:17:34
34489    15142    792    2016-03-12 21:54:05    2016-03-12 21:54:05
34490    10710    914    2016-03-01 22:37:54    2016-03-01 22:37:54
34491    14155    576    2016-02-03 14:32:56    2016-02-03 14:32:56
34492    12265    871    2016-04-06 06:05:23    2016-04-06 06:05:23
34493    17899    502    2016-03-26 17:42:34    2016-03-26 17:42:34
34494    17479    535    2016-02-16 18:14:11    2016-02-16 18:14:11
34495    18828    511    2016-01-30 14:38:49    2016-01-30 14:38:49
34496    12895    889    2016-02-21 13:57:42    2016-02-21 13:57:42
34497    12678    674    2016-03-22 10:43:30    2016-03-22 10:43:30
34498    17687    652    2016-02-25 01:00:18    2016-02-25 01:00:18
34499    11952    783    2016-04-05 05:09:16    2016-04-05 05:09:16
34500    13308    492    2016-04-09 20:22:03    2016-04-09 20:22:03
34501    13686    931    2016-03-25 10:56:40    2016-03-25 10:56:40
34502    16678    637    2016-03-01 17:58:40    2016-03-01 17:58:40
34503    11932    867    2016-02-09 00:56:48    2016-02-09 00:56:48
34504    19454    659    2016-02-14 12:23:34    2016-02-14 12:23:34
34505    12157    932    2016-04-16 11:13:21    2016-04-16 11:13:21
34506    13576    630    2016-02-27 16:14:16    2016-02-27 16:14:16
34507    12689    849    2016-01-31 19:27:23    2016-01-31 19:27:23
34508    15325    512    2016-01-29 07:10:18    2016-01-29 07:10:18
34509    11801    876    2016-02-14 09:21:35    2016-02-14 09:21:35
34510    15315    618    2016-03-10 01:17:51    2016-03-10 01:17:51
34511    16618    600    2016-01-28 05:41:11    2016-01-28 05:41:11
34512    15196    739    2016-02-24 18:37:36    2016-02-24 18:37:36
34513    14359    947    2016-01-25 22:14:27    2016-01-25 22:14:27
34514    13054    774    2016-02-06 01:50:06    2016-02-06 01:50:06
34515    14859    876    2016-02-06 07:10:49    2016-02-06 07:10:49
34516    14359    768    2016-04-07 16:40:15    2016-04-07 16:40:15
34517    13155    648    2016-04-09 09:02:17    2016-04-09 09:02:17
34518    10713    554    2016-03-14 18:19:01    2016-03-14 18:19:01
34519    13291    696    2016-04-04 12:04:32    2016-04-04 12:04:32
34520    12856    544    2016-02-29 01:10:08    2016-02-29 01:10:08
34521    12928    505    2016-04-09 21:49:14    2016-04-09 21:49:14
34522    12812    691    2016-02-19 16:50:15    2016-02-19 16:50:15
34523    12699    696    2016-02-21 03:45:05    2016-02-21 03:45:05
34524    14878    808    2016-01-27 03:03:45    2016-01-27 03:03:45
34525    15970    871    2016-02-29 14:14:00    2016-02-29 14:14:00
34526    16770    682    2016-01-26 18:53:41    2016-01-26 18:53:41
34527    14508    480    2016-03-02 16:19:21    2016-03-02 16:19:21
34528    16780    692    2016-03-18 02:00:06    2016-03-18 02:00:06
34529    19030    802    2016-02-14 11:06:49    2016-02-14 11:06:49
34530    16949    621    2016-02-06 16:28:37    2016-02-06 16:28:37
34531    14162    955    2016-04-05 08:11:14    2016-04-05 08:11:14
34532    12324    486    2016-02-10 17:00:25    2016-02-10 17:00:25
34533    10439    854    2016-02-23 08:07:57    2016-02-23 08:07:57
34534    15574    927    2016-04-05 09:15:11    2016-04-05 09:15:11
34535    10552    857    2016-02-20 08:54:57    2016-02-20 08:54:57
34536    15092    933    2016-03-08 03:58:17    2016-03-08 03:58:17
34537    12435    496    2016-03-18 16:43:55    2016-03-18 16:43:55
34538    16083    608    2016-02-19 20:32:45    2016-02-19 20:32:45
34539    19897    526    2016-01-24 19:46:35    2016-01-24 19:46:35
34540    16631    684    2016-02-18 17:22:32    2016-02-18 17:22:32
34541    10986    813    2016-02-14 10:32:48    2016-02-14 10:32:48
34542    12278    788    2016-02-22 01:25:38    2016-02-22 01:25:38
34543    11768    671    2016-04-11 14:56:24    2016-04-11 14:56:24
34544    15805    660    2016-03-22 01:52:01    2016-03-22 01:52:01
34545    18171    588    2016-03-06 01:06:49    2016-03-06 01:06:49
34546    19235    580    2016-02-21 10:47:01    2016-02-21 10:47:01
34547    17314    483    2016-04-14 00:54:14    2016-04-14 00:54:14
34548    15914    803    2016-03-29 02:21:05    2016-03-29 02:21:05
34549    18523    675    2016-03-12 02:23:07    2016-03-12 02:23:07
34550    15611    688    2016-03-18 14:14:40    2016-03-18 14:14:40
34551    13124    645    2016-02-16 09:04:05    2016-02-16 09:04:05
34552    15572    486    2016-02-27 08:45:05    2016-02-27 08:45:05
34553    11183    569    2016-01-25 01:00:53    2016-01-25 01:00:53
34554    10733    507    2016-03-12 20:28:16    2016-03-12 20:28:16
34555    12754    902    2016-04-08 09:52:15    2016-04-08 09:52:15
34556    10823    718    2016-02-05 04:36:01    2016-02-05 04:36:01
34557    11599    874    2016-03-06 11:40:05    2016-03-06 11:40:05
34558    19782    776    2016-04-01 19:57:30    2016-04-01 19:57:30
34559    11253    665    2016-02-02 04:12:31    2016-02-02 04:12:31
34560    16442    504    2016-01-23 19:15:08    2016-01-23 19:15:08
34561    19597    874    2016-02-12 11:26:07    2016-02-12 11:26:07
34562    19158    797    2016-02-14 10:02:17    2016-02-14 10:02:17
34563    14341    588    2016-04-11 14:13:26    2016-04-11 14:13:26
34564    11434    676    2016-03-22 19:08:53    2016-03-22 19:08:53
34565    12997    631    2016-04-17 01:20:42    2016-04-17 01:20:42
34566    14969    762    2016-02-14 02:50:32    2016-02-14 02:50:32
34567    12356    927    2016-01-24 15:17:09    2016-01-24 15:17:09
34568    18956    793    2016-03-01 02:25:57    2016-03-01 02:25:57
34569    10678    762    2016-02-07 04:43:07    2016-02-07 04:43:07
34570    17690    664    2016-01-30 20:03:45    2016-01-30 20:03:45
34571    13183    624    2016-03-01 04:10:59    2016-03-01 04:10:59
34572    12354    805    2016-02-27 12:15:54    2016-02-27 12:15:54
34573    17239    668    2016-02-25 19:02:48    2016-02-25 19:02:48
34574    14217    939    2016-02-07 18:47:02    2016-02-07 18:47:02
34575    17099    913    2016-03-19 00:08:20    2016-03-19 00:08:20
34576    13973    474    2016-02-14 01:53:00    2016-02-14 01:53:00
34577    10134    529    2016-04-04 12:08:54    2016-04-04 12:08:54
34578    15332    657    2016-04-08 05:02:53    2016-04-08 05:02:53
34579    14189    928    2016-01-27 22:57:48    2016-01-27 22:57:48
34580    15733    785    2016-02-03 22:57:05    2016-02-03 22:57:05
34581    15988    663    2016-03-13 20:32:22    2016-03-13 20:32:22
34582    19008    775    2016-02-27 00:35:54    2016-02-27 00:35:54
34583    12950    796    2016-03-17 05:27:32    2016-03-17 05:27:32
34584    10753    829    2016-02-03 15:45:43    2016-02-03 15:45:43
34585    12365    659    2016-02-29 08:42:50    2016-02-29 08:42:50
34586    14165    920    2016-04-04 21:57:52    2016-04-04 21:57:52
34587    16841    869    2016-03-15 08:39:46    2016-03-15 08:39:46
34588    10556    532    2016-02-19 08:06:54    2016-02-19 08:06:54
34589    11173    665    2016-03-19 12:58:28    2016-03-19 12:58:28
34590    17467    496    2016-04-15 14:20:00    2016-04-15 14:20:00
34591    16051    694    2016-03-17 21:35:06    2016-03-17 21:35:06
34592    15845    471    2016-01-26 17:48:45    2016-01-26 17:48:45
34593    11362    890    2016-04-20 07:48:26    2016-04-20 07:48:26
34594    12929    756    2016-02-01 01:28:25    2016-02-01 01:28:25
34595    12713    611    2016-02-07 12:29:39    2016-02-07 12:29:39
34596    19506    867    2016-02-02 14:00:59    2016-02-02 14:00:59
34597    19676    814    2016-03-18 05:05:42    2016-03-18 05:05:42
34598    15947    530    2016-03-05 08:52:21    2016-03-05 08:52:21
34599    14656    709    2016-02-07 00:08:09    2016-02-07 00:08:09
34600    16839    695    2016-02-16 00:34:30    2016-02-16 00:34:30
34601    18466    666    2016-03-01 01:41:11    2016-03-01 01:41:11
34602    13690    598    2016-04-03 08:57:41    2016-04-03 08:57:41
34603    16238    848    2016-04-09 06:16:08    2016-04-09 06:16:08
34604    18405    569    2016-04-16 14:30:29    2016-04-16 14:30:29
34605    15070    547    2016-01-27 06:19:53    2016-01-27 06:19:53
34606    10280    842    2016-02-20 12:19:09    2016-02-20 12:19:09
34607    17751    961    2016-03-18 11:18:38    2016-03-18 11:18:38
34608    16521    901    2016-02-07 12:16:37    2016-02-07 12:16:37
34609    15495    602    2016-02-26 05:59:07    2016-02-26 05:59:07
34610    19848    821    2016-04-02 15:20:32    2016-04-02 15:20:32
34611    18844    874    2016-01-22 19:10:14    2016-01-22 19:10:14
34612    11304    564    2016-01-23 08:01:36    2016-01-23 08:01:36
34613    13056    799    2016-04-18 00:08:43    2016-04-18 00:08:43
34614    19238    665    2016-01-30 11:45:27    2016-01-30 11:45:27
34615    17591    509    2016-01-24 01:44:30    2016-01-24 01:44:30
34616    13546    887    2016-04-03 02:04:05    2016-04-03 02:04:05
34617    17779    530    2016-02-06 21:47:27    2016-02-06 21:47:27
34618    17469    582    2016-02-19 18:41:26    2016-02-19 18:41:26
34619    18622    552    2016-01-25 08:33:03    2016-01-25 08:33:03
34620    18319    836    2016-04-03 21:24:06    2016-04-03 21:24:06
34621    11694    913    2016-03-09 11:26:13    2016-03-09 11:26:13
34622    19637    473    2016-03-02 00:34:35    2016-03-02 00:34:35
34623    10739    939    2016-03-29 18:46:29    2016-03-29 18:46:29
34624    11693    903    2016-04-11 23:58:47    2016-04-11 23:58:47
34625    17586    698    2016-04-02 10:47:32    2016-04-02 10:47:32
34626    18182    706    2016-02-26 00:51:50    2016-02-26 00:51:50
34627    14045    960    2016-02-23 21:46:49    2016-02-23 21:46:49
34628    14364    586    2016-03-15 00:35:13    2016-03-15 00:35:13
34629    16141    578    2016-03-09 10:49:36    2016-03-09 10:49:36
34630    15211    736    2016-01-24 21:17:26    2016-01-24 21:17:26
34631    11471    772    2016-02-23 12:18:38    2016-02-23 12:18:38
34632    15480    677    2016-03-17 10:24:32    2016-03-17 10:24:32
34633    16458    936    2016-03-06 04:01:56    2016-03-06 04:01:56
34634    13233    637    2016-02-15 02:33:03    2016-02-15 02:33:03
34635    17371    568    2016-02-10 04:31:46    2016-02-10 04:31:46
34636    19487    816    2016-04-03 04:46:54    2016-04-03 04:46:54
34637    19499    868    2016-02-01 20:20:32    2016-02-01 20:20:32
34638    15918    699    2016-02-01 11:12:58    2016-02-01 11:12:58
34639    18307    695    2016-04-15 18:23:08    2016-04-15 18:23:08
34640    15689    483    2016-01-23 21:15:12    2016-01-23 21:15:12
34641    12901    926    2016-01-28 11:56:39    2016-01-28 11:56:39
34642    11142    712    2016-03-05 19:57:22    2016-03-05 19:57:22
34643    14875    473    2016-03-28 10:58:50    2016-03-28 10:58:50
34644    17869    844    2016-01-25 07:01:54    2016-01-25 07:01:54
34645    17028    795    2016-02-16 12:29:04    2016-02-16 12:29:04
34646    16495    861    2016-01-27 04:53:55    2016-01-27 04:53:55
34647    11481    911    2016-04-04 20:55:08    2016-04-04 20:55:08
34648    19584    888    2016-04-06 15:37:33    2016-04-06 15:37:33
34649    13252    896    2016-03-05 12:22:26    2016-03-05 12:22:26
34650    12513    756    2016-04-03 00:10:16    2016-04-03 00:10:16
34651    18823    931    2016-02-14 14:56:51    2016-02-14 14:56:51
34652    13922    473    2016-01-31 12:59:20    2016-01-31 12:59:20
34653    12846    810    2016-01-25 07:28:53    2016-01-25 07:28:53
34654    14286    466    2016-02-23 14:04:01    2016-02-23 14:04:01
34655    17692    704    2016-03-15 11:42:14    2016-03-15 11:42:14
34656    12129    932    2016-03-17 19:15:00    2016-03-17 19:15:00
34657    16661    687    2016-02-09 02:06:37    2016-02-09 02:06:37
34658    19025    595    2016-03-07 14:35:35    2016-03-07 14:35:35
34659    17576    663    2016-02-08 04:30:48    2016-02-08 04:30:48
34660    14764    617    2016-02-25 02:16:46    2016-02-25 02:16:46
34661    12637    877    2016-02-17 18:29:47    2016-02-17 18:29:47
34662    12552    732    2016-04-11 11:41:50    2016-04-11 11:41:50
34663    14947    552    2016-03-29 11:18:03    2016-03-29 11:18:03
34664    14351    649    2016-02-28 21:36:38    2016-02-28 21:36:38
34665    15889    903    2016-03-25 19:52:05    2016-03-25 19:52:05
34666    17620    555    2016-03-21 05:28:09    2016-03-21 05:28:09
34667    16807    508    2016-03-25 08:42:27    2016-03-25 08:42:27
34668    10521    787    2016-03-18 02:40:19    2016-03-18 02:40:19
34669    18399    559    2016-02-14 03:12:04    2016-02-14 03:12:04
34670    13251    948    2016-02-25 05:45:41    2016-02-25 05:45:41
34671    13081    893    2016-03-08 19:25:00    2016-03-08 19:25:00
34672    12485    483    2016-02-16 19:00:53    2016-02-16 19:00:53
34673    19809    472    2016-02-24 14:48:40    2016-02-24 14:48:40
34674    19809    643    2016-03-14 00:54:54    2016-03-14 00:54:54
34675    16501    767    2016-02-27 07:33:44    2016-02-27 07:33:44
34676    10284    604    2016-03-23 03:05:28    2016-03-23 03:05:28
34677    13414    589    2016-02-17 04:03:44    2016-02-17 04:03:44
34678    10843    762    2016-02-21 18:52:33    2016-02-21 18:52:33
34679    12615    735    2016-03-19 06:08:51    2016-03-19 06:08:51
34680    19425    956    2016-04-10 20:29:33    2016-04-10 20:29:33
34681    18622    686    2016-04-13 20:18:36    2016-04-13 20:18:36
34682    10969    545    2016-03-09 21:06:59    2016-03-09 21:06:59
34683    15734    886    2016-04-05 01:33:08    2016-04-05 01:33:08
34684    19729    603    2016-03-20 00:55:47    2016-03-20 00:55:47
34685    18180    843    2016-01-28 12:20:12    2016-01-28 12:20:12
34686    13019    571    2016-02-23 23:03:37    2016-02-23 23:03:37
34687    18441    658    2016-04-08 05:48:32    2016-04-08 05:48:32
34688    13031    845    2016-03-20 01:30:02    2016-03-20 01:30:02
34689    10311    549    2016-03-08 15:15:41    2016-03-08 15:15:41
34690    19502    464    2016-04-01 23:06:15    2016-04-01 23:06:15
34691    15364    637    2016-03-02 22:41:30    2016-03-02 22:41:30
34692    11312    883    2016-03-29 07:05:09    2016-03-29 07:05:09
34693    15771    761    2016-04-20 16:49:31    2016-04-20 16:49:31
34694    19318    900    2016-03-22 20:26:22    2016-03-22 20:26:22
34695    10427    778    2016-02-19 14:28:37    2016-02-19 14:28:37
34696    11450    607    2016-02-08 04:53:25    2016-02-08 04:53:25
34697    12955    652    2016-02-10 14:11:40    2016-02-10 14:11:40
34698    15752    889    2016-04-16 02:54:08    2016-04-16 02:54:08
34699    18162    838    2016-03-01 10:04:49    2016-03-01 10:04:49
34700    16443    783    2016-03-23 15:32:11    2016-03-23 15:32:11
34701    10325    772    2016-04-19 00:01:11    2016-04-19 00:01:11
34702    15093    867    2016-02-08 15:05:55    2016-02-08 15:05:55
34703    16299    685    2016-04-09 09:22:25    2016-04-09 09:22:25
34704    12700    892    2016-02-03 18:10:46    2016-02-03 18:10:46
34705    16116    554    2016-04-01 02:49:25    2016-04-01 02:49:25
34706    15288    487    2016-02-07 19:43:36    2016-02-07 19:43:36
34707    13588    898    2016-04-20 01:18:44    2016-04-20 01:18:44
34708    16869    871    2016-03-14 19:52:55    2016-03-14 19:52:55
34709    13265    942    2016-04-14 13:30:58    2016-04-14 13:30:58
34710    11757    894    2016-01-25 22:32:21    2016-01-25 22:32:21
34711    15285    622    2016-03-05 11:24:55    2016-03-05 11:24:55
34712    14231    706    2016-02-11 06:29:54    2016-02-11 06:29:54
34713    18368    730    2016-03-09 21:14:37    2016-03-09 21:14:37
34714    17769    656    2016-03-09 16:24:03    2016-03-09 16:24:03
34715    12827    678    2016-03-26 22:58:39    2016-03-26 22:58:39
34716    13751    576    2016-02-16 04:39:35    2016-02-16 04:39:35
34717    15971    859    2016-02-27 00:01:02    2016-02-27 00:01:02
34718    14006    584    2016-02-15 03:46:18    2016-02-15 03:46:18
34719    16524    761    2016-03-28 15:12:32    2016-03-28 15:12:32
34720    11557    563    2016-03-11 19:44:15    2016-03-11 19:44:15
34721    12078    883    2016-02-10 09:50:35    2016-02-10 09:50:35
34722    19975    912    2016-03-13 00:17:29    2016-03-13 00:17:29
34723    10502    769    2016-03-18 02:46:09    2016-03-18 02:46:09
34724    17578    936    2016-02-08 15:37:39    2016-02-08 15:37:39
34725    13527    779    2016-04-17 10:32:55    2016-04-17 10:32:55
34726    10608    856    2016-02-07 21:23:17    2016-02-07 21:23:17
34727    13159    822    2016-02-28 19:04:51    2016-02-28 19:04:51
34728    17136    786    2016-04-01 00:53:58    2016-04-01 00:53:58
34729    13747    949    2016-03-16 15:12:20    2016-03-16 15:12:20
34730    14455    937    2016-01-23 15:44:01    2016-01-23 15:44:01
34731    14663    716    2016-03-31 09:45:25    2016-03-31 09:45:25
34732    11299    930    2016-02-07 06:19:40    2016-02-07 06:19:40
34733    13982    770    2016-01-31 07:13:12    2016-01-31 07:13:12
34734    11056    564    2016-02-28 01:51:36    2016-02-28 01:51:36
34735    18163    805    2016-04-06 19:14:39    2016-04-06 19:14:39
34736    18187    950    2016-04-12 01:21:54    2016-04-12 01:21:54
34737    15797    868    2016-03-23 14:45:56    2016-03-23 14:45:56
34738    15969    604    2016-02-15 06:23:12    2016-02-15 06:23:12
34739    13820    667    2016-03-12 07:01:17    2016-03-12 07:01:17
34740    11789    938    2016-04-16 13:03:32    2016-04-16 13:03:32
34741    18103    823    2016-03-14 22:05:45    2016-03-14 22:05:45
34742    13651    642    2016-03-27 20:57:08    2016-03-27 20:57:08
34743    12254    789    2016-03-04 15:13:50    2016-03-04 15:13:50
34744    18495    923    2016-04-02 22:20:57    2016-04-02 22:20:57
34745    14152    484    2016-03-12 23:30:00    2016-03-12 23:30:00
34746    10187    597    2016-03-22 13:46:12    2016-03-22 13:46:12
34747    10902    572    2016-04-03 16:40:32    2016-04-03 16:40:32
34748    12827    614    2016-01-25 10:50:00    2016-01-25 10:50:00
34749    11262    928    2016-04-09 01:16:15    2016-04-09 01:16:15
34750    15666    614    2016-04-03 01:22:41    2016-04-03 01:22:41
34751    12558    780    2016-02-28 02:33:35    2016-02-28 02:33:35
34752    14953    798    2016-03-12 17:03:19    2016-03-12 17:03:19
34753    16200    882    2016-04-13 09:45:57    2016-04-13 09:45:57
34754    12322    931    2016-02-11 04:48:01    2016-02-11 04:48:01
34755    11840    688    2016-02-29 15:07:48    2016-02-29 15:07:48
34756    13762    476    2016-02-06 12:54:17    2016-02-06 12:54:17
34757    15836    824    2016-02-07 19:38:42    2016-02-07 19:38:42
34758    14341    506    2016-03-09 09:13:54    2016-03-09 09:13:54
34759    12847    846    2016-04-17 08:01:57    2016-04-17 08:01:57
34760    11023    911    2016-02-22 14:34:04    2016-02-22 14:34:04
34761    17419    481    2016-01-22 21:13:29    2016-01-22 21:13:29
34762    10317    623    2016-02-16 09:27:21    2016-02-16 09:27:21
34763    18053    785    2016-04-14 07:23:36    2016-04-14 07:23:36
34764    10688    781    2016-03-11 05:30:29    2016-03-11 05:30:29
34765    17202    866    2016-03-23 06:26:45    2016-03-23 06:26:45
34766    11177    894    2016-04-11 01:40:00    2016-04-11 01:40:00
34767    10655    579    2016-02-17 09:02:47    2016-02-17 09:02:47
34768    16750    591    2016-03-02 14:40:54    2016-03-02 14:40:54
34769    10199    938    2016-02-19 04:04:28    2016-02-19 04:04:28
34770    17208    755    2016-03-02 06:23:26    2016-03-02 06:23:26
34771    12484    749    2016-04-03 14:45:45    2016-04-03 14:45:45
34772    11046    887    2016-03-24 18:21:29    2016-03-24 18:21:29
34773    18385    803    2016-03-18 13:06:41    2016-03-18 13:06:41
34774    15355    731    2016-04-15 06:59:50    2016-04-15 06:59:50
34775    18319    878    2016-02-21 04:57:48    2016-02-21 04:57:48
34776    10389    862    2016-03-21 16:26:08    2016-03-21 16:26:08
34777    15859    563    2016-02-12 03:20:26    2016-02-12 03:20:26
34778    14421    582    2016-04-05 07:47:59    2016-04-05 07:47:59
34779    10320    560    2016-04-05 00:24:13    2016-04-05 00:24:13
34780    17205    941    2016-01-26 00:58:40    2016-01-26 00:58:40
34781    15276    918    2016-04-17 14:20:59    2016-04-17 14:20:59
34782    17034    832    2016-02-08 05:42:27    2016-02-08 05:42:27
34783    16321    751    2016-04-09 15:32:17    2016-04-09 15:32:17
34784    13835    490    2016-01-31 20:07:21    2016-01-31 20:07:21
34785    17370    672    2016-03-07 23:25:48    2016-03-07 23:25:48
34786    12749    586    2016-02-22 16:43:36    2016-02-22 16:43:36
34787    14215    538    2016-01-29 19:58:10    2016-01-29 19:58:10
34788    18147    480    2016-03-09 22:50:04    2016-03-09 22:50:04
34789    13609    509    2016-02-23 18:08:23    2016-02-23 18:08:23
34790    12201    876    2016-02-04 22:02:29    2016-02-04 22:02:29
34791    14753    842    2016-01-30 09:41:05    2016-01-30 09:41:05
34792    14439    779    2016-03-17 07:12:02    2016-03-17 07:12:02
34793    11988    725    2016-02-03 02:53:32    2016-02-03 02:53:32
34794    17306    640    2016-03-29 16:05:47    2016-03-29 16:05:47
34795    11215    747    2016-04-20 17:21:24    2016-04-20 17:21:24
34796    10556    717    2016-03-16 21:22:26    2016-03-16 21:22:26
34797    12682    679    2016-02-19 15:55:57    2016-02-19 15:55:57
34798    13699    847    2016-02-23 18:00:12    2016-02-23 18:00:12
34799    19852    838    2016-03-31 12:05:44    2016-03-31 12:05:44
34800    16237    927    2016-02-29 23:10:42    2016-02-29 23:10:42
34801    16981    894    2016-01-30 08:28:41    2016-01-30 08:28:41
34802    18780    755    2016-04-04 09:58:39    2016-04-04 09:58:39
34803    13888    626    2016-02-24 09:26:21    2016-02-24 09:26:21
34804    19533    835    2016-03-17 00:51:59    2016-03-17 00:51:59
34805    14939    521    2016-02-19 21:06:46    2016-02-19 21:06:46
34806    16715    663    2016-03-19 00:51:21    2016-03-19 00:51:21
34807    12287    475    2016-04-18 06:23:38    2016-04-18 06:23:38
34808    12491    633    2016-02-15 00:44:16    2016-02-15 00:44:16
34809    15881    791    2016-03-16 23:59:03    2016-03-16 23:59:03
34810    10694    897    2016-02-07 09:10:59    2016-02-07 09:10:59
34811    14345    527    2016-03-04 00:46:25    2016-03-04 00:46:25
34812    16046    884    2016-02-20 05:50:04    2016-02-20 05:50:04
34813    12897    720    2016-03-20 13:09:32    2016-03-20 13:09:32
34814    11137    834    2016-01-29 16:04:53    2016-01-29 16:04:53
34815    19147    717    2016-03-11 17:53:37    2016-03-11 17:53:37
34816    17370    787    2016-02-03 03:31:28    2016-02-03 03:31:28
34817    14269    678    2016-02-02 01:11:58    2016-02-02 01:11:58
34818    10163    683    2016-02-08 19:10:07    2016-02-08 19:10:07
34819    10760    929    2016-03-25 04:01:08    2016-03-25 04:01:08
34820    10992    951    2016-01-28 23:28:28    2016-01-28 23:28:28
34821    10916    789    2016-02-27 20:45:03    2016-02-27 20:45:03
34822    14150    908    2016-02-14 15:30:23    2016-02-14 15:30:23
34823    14355    817    2016-04-15 00:15:32    2016-04-15 00:15:32
34824    12404    771    2016-02-29 22:18:47    2016-02-29 22:18:47
34825    14081    642    2016-04-11 13:17:45    2016-04-11 13:17:45
34826    15960    913    2016-03-07 19:43:55    2016-03-07 19:43:55
34827    13909    958    2016-03-01 07:50:37    2016-03-01 07:50:37
34828    19495    579    2016-01-31 07:44:27    2016-01-31 07:44:27
34829    18749    562    2016-04-09 00:01:21    2016-04-09 00:01:21
34830    12628    615    2016-04-01 09:12:48    2016-04-01 09:12:48
34831    14051    691    2016-03-23 18:20:28    2016-03-23 18:20:28
34832    14930    837    2016-02-22 19:15:18    2016-02-22 19:15:18
34833    15347    770    2016-01-30 07:20:38    2016-01-30 07:20:38
34834    16073    514    2016-03-29 19:15:13    2016-03-29 19:15:13
34835    18722    950    2016-02-21 17:23:38    2016-02-21 17:23:38
34836    18320    552    2016-04-06 17:05:33    2016-04-06 17:05:33
34837    10170    497    2016-02-24 08:57:40    2016-02-24 08:57:40
34838    14571    610    2016-04-19 14:32:15    2016-04-19 14:32:15
34839    11774    908    2016-04-13 07:23:38    2016-04-13 07:23:38
34840    15483    949    2016-02-16 18:46:34    2016-02-16 18:46:34
34841    13972    913    2016-03-20 03:21:18    2016-03-20 03:21:18
34842    10242    693    2016-02-10 12:18:47    2016-02-10 12:18:47
34843    10081    826    2016-02-19 08:42:41    2016-02-19 08:42:41
34844    12427    531    2016-03-26 04:03:28    2016-03-26 04:03:28
34845    10502    710    2016-02-16 10:26:18    2016-02-16 10:26:18
34846    11911    471    2016-01-27 12:33:42    2016-01-27 12:33:42
34847    13624    745    2016-03-04 02:46:55    2016-03-04 02:46:55
34848    17720    479    2016-02-27 23:21:04    2016-02-27 23:21:04
34849    12953    757    2016-02-24 23:18:52    2016-02-24 23:18:52
34850    14486    758    2016-01-23 16:53:09    2016-01-23 16:53:09
34851    17427    852    2016-04-20 02:08:39    2016-04-20 02:08:39
34852    16338    591    2016-04-03 17:50:50    2016-04-03 17:50:50
34853    13387    688    2016-03-28 10:11:37    2016-03-28 10:11:37
34854    15057    809    2016-02-19 08:42:23    2016-02-19 08:42:23
34855    14186    924    2016-02-23 00:51:40    2016-02-23 00:51:40
34856    14380    555    2016-03-04 01:54:37    2016-03-04 01:54:37
34857    16768    527    2016-01-24 15:28:34    2016-01-24 15:28:34
34858    16805    803    2016-02-23 14:31:49    2016-02-23 14:31:49
34859    15740    724    2016-02-01 04:48:21    2016-02-01 04:48:21
34860    16416    511    2016-04-12 21:17:23    2016-04-12 21:17:23
34861    10594    800    2016-02-19 06:19:04    2016-02-19 06:19:04
34862    11200    924    2016-01-31 00:26:27    2016-01-31 00:26:27
34863    18653    552    2016-02-02 12:12:56    2016-02-02 12:12:56
34864    15238    624    2016-02-28 04:40:41    2016-02-28 04:40:41
34865    19678    526    2016-03-02 00:04:29    2016-03-02 00:04:29
34866    11792    936    2016-04-04 19:13:06    2016-04-04 19:13:06
34867    15514    606    2016-02-17 04:17:29    2016-02-17 04:17:29
34868    15992    861    2016-01-29 04:47:28    2016-01-29 04:47:28
34869    15827    680    2016-04-12 19:11:24    2016-04-12 19:11:24
34870    16019    716    2016-03-26 00:36:40    2016-03-26 00:36:40
34871    19903    630    2016-04-14 07:44:46    2016-04-14 07:44:46
34872    19097    750    2016-02-05 14:54:53    2016-02-05 14:54:53
34873    12451    527    2016-03-29 04:07:43    2016-03-29 04:07:43
34874    14309    724    2016-01-30 04:16:48    2016-01-30 04:16:48
34875    17992    540    2016-03-30 12:51:33    2016-03-30 12:51:33
34876    17615    695    2016-02-15 03:28:57    2016-02-15 03:28:57
34877    12932    527    2016-04-16 08:23:40    2016-04-16 08:23:40
34878    14607    715    2016-04-20 08:20:41    2016-04-20 08:20:41
34879    13699    701    2016-02-15 03:12:51    2016-02-15 03:12:51
34880    18121    548    2016-02-15 13:21:28    2016-02-15 13:21:28
34881    14318    633    2016-03-29 20:52:53    2016-03-29 20:52:53
34882    10415    847    2016-01-30 22:57:16    2016-01-30 22:57:16
34883    18186    580    2016-03-02 23:55:28    2016-03-02 23:55:28
34884    18652    909    2016-03-05 12:21:31    2016-03-05 12:21:31
34885    10478    623    2016-03-29 14:04:32    2016-03-29 14:04:32
34886    14852    546    2016-02-18 06:09:37    2016-02-18 06:09:37
34887    15210    898    2016-04-14 03:41:30    2016-04-14 03:41:30
34888    11057    573    2016-03-09 12:39:12    2016-03-09 12:39:12
34889    19668    730    2016-04-03 08:10:26    2016-04-03 08:10:26
34890    17687    661    2016-02-05 10:00:47    2016-02-05 10:00:47
34891    12154    724    2016-02-06 04:57:49    2016-02-06 04:57:49
34892    18038    827    2016-02-04 10:06:08    2016-02-04 10:06:08
34893    14160    855    2016-04-02 09:07:24    2016-04-02 09:07:24
34894    13322    640    2016-02-11 20:07:01    2016-02-11 20:07:01
34895    14657    487    2016-03-14 06:35:27    2016-03-14 06:35:27
34896    12682    508    2016-03-30 21:37:10    2016-03-30 21:37:10
34897    19556    549    2016-04-14 19:20:42    2016-04-14 19:20:42
34898    12065    821    2016-03-31 03:50:00    2016-03-31 03:50:00
34899    19537    838    2016-04-09 23:09:24    2016-04-09 23:09:24
34900    12175    867    2016-01-24 11:28:28    2016-01-24 11:28:28
34901    17034    766    2016-01-26 15:12:11    2016-01-26 15:12:11
34902    12236    864    2016-04-09 20:53:36    2016-04-09 20:53:36
34903    10124    478    2016-04-04 03:13:10    2016-04-04 03:13:10
34904    17798    879    2016-03-08 11:09:04    2016-03-08 11:09:04
34905    14060    599    2016-02-13 14:40:19    2016-02-13 14:40:19
34906    13580    568    2016-04-07 19:34:45    2016-04-07 19:34:45
34907    13328    928    2016-04-07 09:42:15    2016-04-07 09:42:15
34908    12104    788    2016-01-24 19:16:48    2016-01-24 19:16:48
34909    11156    882    2016-04-14 04:09:11    2016-04-14 04:09:11
34910    19343    628    2016-04-07 14:24:09    2016-04-07 14:24:09
34911    17403    553    2016-02-22 22:00:08    2016-02-22 22:00:08
34912    14194    622    2016-03-09 13:41:49    2016-03-09 13:41:49
34913    15320    842    2016-02-26 09:57:15    2016-02-26 09:57:15
34914    10805    903    2016-03-27 20:56:04    2016-03-27 20:56:04
34915    10004    823    2016-02-28 07:39:15    2016-02-28 07:39:15
34916    12249    590    2016-02-02 15:56:03    2016-02-02 15:56:03
34917    18077    776    2016-03-20 18:58:26    2016-03-20 18:58:26
34918    12173    574    2016-03-19 19:54:34    2016-03-19 19:54:34
34919    19550    618    2016-02-03 11:38:15    2016-02-03 11:38:15
34920    13343    902    2016-01-26 04:53:59    2016-01-26 04:53:59
34921    15378    538    2016-03-02 18:13:40    2016-03-02 18:13:40
34922    14636    943    2016-03-15 09:18:30    2016-03-15 09:18:30
34923    16013    643    2016-04-09 06:58:43    2016-04-09 06:58:43
34924    11555    547    2016-03-02 21:02:43    2016-03-02 21:02:43
34925    14986    866    2016-02-04 10:37:06    2016-02-04 10:37:06
34926    16091    943    2016-04-11 10:56:46    2016-04-11 10:56:46
34927    15755    564    2016-02-10 01:56:43    2016-02-10 01:56:43
34928    13225    703    2016-02-27 16:59:07    2016-02-27 16:59:07
34929    16545    797    2016-03-04 18:01:19    2016-03-04 18:01:19
34930    14866    773    2016-03-22 15:51:33    2016-03-22 15:51:33
34931    15282    850    2016-03-08 04:39:52    2016-03-08 04:39:52
34932    15885    947    2016-02-03 16:22:42    2016-02-03 16:22:42
34933    17335    600    2016-03-05 13:06:03    2016-03-05 13:06:03
34934    19985    789    2016-03-20 15:46:57    2016-03-20 15:46:57
34935    12769    909    2016-02-26 21:26:16    2016-02-26 21:26:16
34936    19097    564    2016-04-13 03:41:12    2016-04-13 03:41:12
34937    11552    790    2016-02-20 04:20:49    2016-02-20 04:20:49
34938    18410    788    2016-03-04 14:39:28    2016-03-04 14:39:28
34939    15502    557    2016-01-27 08:28:32    2016-01-27 08:28:32
34940    10066    876    2016-02-14 15:18:27    2016-02-14 15:18:27
34941    13945    835    2016-02-06 20:39:29    2016-02-06 20:39:29
34942    19965    480    2016-01-31 14:04:41    2016-01-31 14:04:41
34943    13080    897    2016-02-05 14:08:24    2016-02-05 14:08:24
34944    16105    690    2016-02-24 01:47:37    2016-02-24 01:47:37
34945    17794    653    2016-03-17 21:02:04    2016-03-17 21:02:04
34946    17378    656    2016-04-09 10:19:56    2016-04-09 10:19:56
34947    12597    909    2016-03-01 18:59:04    2016-03-01 18:59:04
34948    14767    800    2016-04-17 16:36:07    2016-04-17 16:36:07
34949    12271    719    2016-03-26 00:48:46    2016-03-26 00:48:46
34950    13763    885    2016-03-17 07:39:03    2016-03-17 07:39:03
34951    12323    960    2016-02-11 15:44:55    2016-02-11 15:44:55
34952    14403    617    2016-01-22 18:41:31    2016-01-22 18:41:31
34953    17235    546    2016-03-10 15:47:27    2016-03-10 15:47:27
34954    12932    724    2016-02-28 14:10:31    2016-02-28 14:10:31
34955    15126    778    2016-04-18 12:41:58    2016-04-18 12:41:58
34956    18012    567    2016-04-13 00:52:20    2016-04-13 00:52:20
34957    17366    606    2016-03-11 16:56:27    2016-03-11 16:56:27
34958    15299    483    2016-02-23 13:39:21    2016-02-23 13:39:21
34959    17454    671    2016-03-06 13:59:59    2016-03-06 13:59:59
34960    13168    586    2016-03-24 01:00:32    2016-03-24 01:00:32
34961    18168    686    2016-04-11 11:32:09    2016-04-11 11:32:09
34962    16973    890    2016-02-04 18:36:57    2016-02-04 18:36:57
34963    15912    483    2016-03-23 16:11:41    2016-03-23 16:11:41
34964    17943    940    2016-02-13 18:03:59    2016-02-13 18:03:59
34965    13104    813    2016-01-23 16:53:41    2016-01-23 16:53:41
34966    19000    716    2016-03-28 04:59:04    2016-03-28 04:59:04
34967    19935    863    2016-01-28 11:10:02    2016-01-28 11:10:02
34968    17895    784    2016-02-06 02:57:24    2016-02-06 02:57:24
34969    15864    622    2016-03-28 19:54:35    2016-03-28 19:54:35
34970    17868    595    2016-03-01 23:19:57    2016-03-01 23:19:57
34971    14605    512    2016-02-07 00:52:07    2016-02-07 00:52:07
34972    13971    537    2016-02-03 03:14:03    2016-02-03 03:14:03
34973    17220    784    2016-01-28 18:43:06    2016-01-28 18:43:06
34974    15083    778    2016-03-31 03:19:13    2016-03-31 03:19:13
34975    10677    519    2016-03-22 03:17:08    2016-03-22 03:17:08
34976    17228    513    2016-02-03 23:02:37    2016-02-03 23:02:37
34977    16488    691    2016-04-03 15:37:19    2016-04-03 15:37:19
34978    14408    894    2016-02-01 03:54:24    2016-02-01 03:54:24
34979    10766    490    2016-03-17 04:44:43    2016-03-17 04:44:43
34980    12018    844    2016-03-07 09:28:17    2016-03-07 09:28:17
34981    18205    540    2016-03-05 15:02:11    2016-03-05 15:02:11
34982    11187    864    2016-01-27 15:07:12    2016-01-27 15:07:12
34983    19881    648    2016-01-27 06:24:06    2016-01-27 06:24:06
34984    13995    797    2016-03-22 11:46:50    2016-03-22 11:46:50
34985    14357    754    2016-01-26 06:42:37    2016-01-26 06:42:37
34986    14127    765    2016-02-25 23:21:10    2016-02-25 23:21:10
34987    11279    746    2016-04-04 19:10:36    2016-04-04 19:10:36
34988    17470    590    2016-02-08 09:37:38    2016-02-08 09:37:38
34989    16818    746    2016-04-15 12:51:50    2016-04-15 12:51:50
34990    16061    818    2016-02-25 08:57:08    2016-02-25 08:57:08
34991    17983    700    2016-01-22 17:21:49    2016-01-22 17:21:49
34992    13081    716    2016-02-13 18:02:48    2016-02-13 18:02:48
34993    11354    789    2016-03-11 00:25:09    2016-03-11 00:25:09
34994    16662    875    2016-03-24 05:47:58    2016-03-24 05:47:58
34995    15807    805    2016-01-22 16:45:42    2016-01-22 16:45:42
34996    19976    958    2016-02-11 23:31:24    2016-02-11 23:31:24
34997    13011    695    2016-03-31 16:38:34    2016-03-31 16:38:34
34998    13782    477    2016-03-08 10:45:44    2016-03-08 10:45:44
34999    10115    950    2016-02-29 15:48:12    2016-02-29 15:48:12
35000    19526    899    2016-03-26 12:25:24    2016-03-26 12:25:24
35001    12928    548    2016-01-26 06:48:55    2016-01-26 06:48:55
35002    14812    793    2016-02-29 14:53:18    2016-02-29 14:53:18
35003    14183    621    2016-02-11 18:29:32    2016-02-11 18:29:32
35004    15161    548    2016-02-10 19:45:09    2016-02-10 19:45:09
35005    17454    546    2016-03-30 05:08:42    2016-03-30 05:08:42
35006    13595    613    2016-02-07 17:43:49    2016-02-07 17:43:49
35007    14903    707    2016-02-04 21:07:23    2016-02-04 21:07:23
35008    19719    640    2016-03-07 23:29:44    2016-03-07 23:29:44
35009    14417    717    2016-03-04 16:16:56    2016-03-04 16:16:56
35010    14033    565    2016-03-23 21:49:36    2016-03-23 21:49:36
35011    10520    608    2016-02-10 17:03:54    2016-02-10 17:03:54
35012    16527    708    2016-01-27 08:30:00    2016-01-27 08:30:00
35013    16105    722    2016-03-02 05:45:00    2016-03-02 05:45:00
35014    19122    862    2016-04-10 22:50:22    2016-04-10 22:50:22
35015    10761    959    2016-02-24 08:39:37    2016-02-24 08:39:37
35016    13692    908    2016-03-02 22:22:57    2016-03-02 22:22:57
35017    13679    911    2016-04-15 19:09:47    2016-04-15 19:09:47
35018    13104    933    2016-02-06 20:50:28    2016-02-06 20:50:28
35019    15931    804    2016-03-04 21:23:37    2016-03-04 21:23:37
35020    11699    870    2016-02-26 03:15:04    2016-02-26 03:15:04
35021    19104    477    2016-04-07 05:52:00    2016-04-07 05:52:00
35022    19512    567    2016-02-25 16:50:35    2016-02-25 16:50:35
35023    14629    876    2016-01-26 20:36:21    2016-01-26 20:36:21
35024    10872    498    2016-04-18 04:15:00    2016-04-18 04:15:00
35025    14110    535    2016-04-01 15:47:00    2016-04-01 15:47:00
35026    14056    651    2016-01-31 16:20:17    2016-01-31 16:20:17
35027    10192    567    2016-03-16 16:12:38    2016-03-16 16:12:38
35028    15250    676    2016-02-19 20:05:26    2016-02-19 20:05:26
35029    17806    510    2016-03-02 07:29:45    2016-03-02 07:29:45
35030    14360    627    2016-04-08 06:15:26    2016-04-08 06:15:26
35031    16518    614    2016-01-27 03:25:21    2016-01-27 03:25:21
35032    12968    955    2016-02-07 04:50:44    2016-02-07 04:50:44
35033    13434    512    2016-02-12 00:07:53    2016-02-12 00:07:53
35034    16584    777    2016-02-07 12:04:40    2016-02-07 12:04:40
35035    10115    734    2016-02-28 03:29:28    2016-02-28 03:29:28
35036    17075    887    2016-03-26 10:12:50    2016-03-26 10:12:50
35037    19692    886    2016-04-09 00:26:36    2016-04-09 00:26:36
35038    18953    673    2016-03-30 09:24:37    2016-03-30 09:24:37
35039    14610    901    2016-04-10 06:05:11    2016-04-10 06:05:11
35040    13797    554    2016-02-13 11:12:39    2016-02-13 11:12:39
35041    17585    737    2016-04-18 05:58:14    2016-04-18 05:58:14
35042    12501    698    2016-01-22 22:22:06    2016-01-22 22:22:06
35043    19790    813    2016-04-09 21:28:57    2016-04-09 21:28:57
35044    14690    761    2016-02-03 17:43:35    2016-02-03 17:43:35
35045    11615    676    2016-02-25 04:33:14    2016-02-25 04:33:14
35046    14062    687    2016-02-12 02:06:00    2016-02-12 02:06:00
35047    18418    716    2016-03-22 13:29:30    2016-03-22 13:29:30
35048    14754    884    2016-01-27 10:13:25    2016-01-27 10:13:25
35049    17050    841    2016-02-06 14:43:09    2016-02-06 14:43:09
35050    15658    702    2016-03-29 00:03:53    2016-03-29 00:03:53
35051    16747    733    2016-03-24 17:25:20    2016-03-24 17:25:20
35052    17194    847    2016-02-17 15:28:26    2016-02-17 15:28:26
35053    12743    867    2016-04-11 17:34:43    2016-04-11 17:34:43
35054    11493    696    2016-03-14 00:24:09    2016-03-14 00:24:09
35055    18336    870    2016-01-24 20:04:23    2016-01-24 20:04:23
35056    18973    558    2016-03-22 11:29:20    2016-03-22 11:29:20
35057    16473    476    2016-02-19 19:18:27    2016-02-19 19:18:27
35058    15474    538    2016-02-03 15:09:58    2016-02-03 15:09:58
35059    12594    725    2016-02-07 03:59:08    2016-02-07 03:59:08
35060    15466    565    2016-03-16 11:27:16    2016-03-16 11:27:16
35061    12947    931    2016-01-29 10:49:26    2016-01-29 10:49:26
35062    14415    900    2016-04-13 03:43:43    2016-04-13 03:43:43
35063    19898    695    2016-03-07 06:42:10    2016-03-07 06:42:10
35064    18604    844    2016-02-08 09:45:11    2016-02-08 09:45:11
35065    18151    496    2016-02-05 20:23:14    2016-02-05 20:23:14
35066    12718    740    2016-03-30 23:43:16    2016-03-30 23:43:16
35067    18294    720    2016-03-17 03:00:49    2016-03-17 03:00:49
35068    13298    765    2016-01-29 07:00:27    2016-01-29 07:00:27
35069    19148    721    2016-04-06 17:39:53    2016-04-06 17:39:53
35070    17474    592    2016-02-21 07:27:09    2016-02-21 07:27:09
35071    19112    867    2016-03-22 14:57:31    2016-03-22 14:57:31
35072    14654    781    2016-03-15 13:20:07    2016-03-15 13:20:07
35073    19788    840    2016-02-18 12:25:15    2016-02-18 12:25:15
35074    17373    898    2016-04-11 13:57:17    2016-04-11 13:57:17
35075    13423    520    2016-03-23 04:18:40    2016-03-23 04:18:40
35076    12730    940    2016-01-24 04:08:17    2016-01-24 04:08:17
35077    16145    887    2016-03-06 07:46:05    2016-03-06 07:46:05
35078    11028    848    2016-02-13 09:15:36    2016-02-13 09:15:36
35079    15834    905    2016-04-10 23:12:45    2016-04-10 23:12:45
35080    13632    864    2016-04-03 16:40:01    2016-04-03 16:40:01
35081    14624    495    2016-02-29 12:40:22    2016-02-29 12:40:22
35082    12492    538    2016-02-05 20:17:30    2016-02-05 20:17:30
35083    12693    900    2016-02-21 10:51:59    2016-02-21 10:51:59
35084    18910    713    2016-01-31 08:55:02    2016-01-31 08:55:02
35085    16450    712    2016-04-20 18:44:12    2016-04-20 18:44:12
35086    15212    737    2016-03-07 14:13:55    2016-03-07 14:13:55
35087    14483    613    2016-01-26 05:10:35    2016-01-26 05:10:35
35088    18963    578    2016-03-04 07:29:26    2016-03-04 07:29:26
35089    19126    570    2016-04-07 22:11:01    2016-04-07 22:11:01
35090    11386    544    2016-04-07 18:52:53    2016-04-07 18:52:53
35091    13724    797    2016-02-04 14:07:09    2016-02-04 14:07:09
35092    12067    605    2016-03-02 05:32:19    2016-03-02 05:32:19
35093    14357    713    2016-02-06 09:26:22    2016-02-06 09:26:22
35094    12981    692    2016-02-12 04:01:03    2016-02-12 04:01:03
35095    18051    940    2016-03-03 03:25:59    2016-03-03 03:25:59
35096    12592    911    2016-02-27 21:48:31    2016-02-27 21:48:31
35097    16725    494    2016-02-13 05:39:00    2016-02-13 05:39:00
35098    19037    659    2016-02-10 12:12:44    2016-02-10 12:12:44
35099    18318    946    2016-04-10 20:07:00    2016-04-10 20:07:00
35100    10312    483    2016-03-28 13:27:34    2016-03-28 13:27:34
35101    11272    753    2016-03-09 15:48:41    2016-03-09 15:48:41
35102    13061    927    2016-04-16 00:29:57    2016-04-16 00:29:57
35103    18782    929    2016-04-20 03:26:21    2016-04-20 03:26:21
35104    10268    802    2016-02-08 19:42:33    2016-02-08 19:42:33
35105    17784    755    2016-03-06 09:39:55    2016-03-06 09:39:55
35106    13922    631    2016-03-11 11:26:40    2016-03-11 11:26:40
35107    18286    556    2016-02-25 14:56:19    2016-02-25 14:56:19
35108    17182    753    2016-03-05 10:38:52    2016-03-05 10:38:52
35109    11339    712    2016-02-20 09:01:47    2016-02-20 09:01:47
35110    13687    527    2016-04-03 07:58:36    2016-04-03 07:58:36
35111    17062    465    2016-04-06 22:35:45    2016-04-06 22:35:45
35112    19398    791    2016-02-11 10:02:44    2016-02-11 10:02:44
35113    15578    740    2016-02-04 04:42:45    2016-02-04 04:42:45
35114    12999    590    2016-02-27 03:02:04    2016-02-27 03:02:04
35115    11851    800    2016-04-19 06:12:29    2016-04-19 06:12:29
35116    17092    729    2016-02-11 18:53:27    2016-02-11 18:53:27
35117    10227    477    2016-03-26 14:17:26    2016-03-26 14:17:26
35118    19266    717    2016-03-31 12:27:05    2016-03-31 12:27:05
35119    15768    871    2016-02-16 03:54:46    2016-02-16 03:54:46
35120    11497    463    2016-01-26 17:38:38    2016-01-26 17:38:38
35121    18532    581    2016-02-10 05:56:47    2016-02-10 05:56:47
35122    17129    793    2016-02-17 10:19:31    2016-02-17 10:19:31
35123    11173    644    2016-02-22 14:18:54    2016-02-22 14:18:54
35124    16595    810    2016-04-01 00:10:14    2016-04-01 00:10:14
35125    11287    526    2016-02-26 00:28:19    2016-02-26 00:28:19
35126    14406    952    2016-01-31 21:30:44    2016-01-31 21:30:44
35127    12213    827    2016-04-17 21:43:57    2016-04-17 21:43:57
35128    12143    873    2016-02-14 11:19:24    2016-02-14 11:19:24
35129    15149    955    2016-01-31 03:37:19    2016-01-31 03:37:19
35130    16833    733    2016-03-09 19:44:48    2016-03-09 19:44:48
35131    19027    706    2016-04-05 05:35:38    2016-04-05 05:35:38
35132    10741    841    2016-02-10 13:52:20    2016-02-10 13:52:20
35133    11727    858    2016-03-28 16:41:19    2016-03-28 16:41:19
35134    14468    683    2016-04-16 04:29:13    2016-04-16 04:29:13
35135    13329    548    2016-04-02 15:53:38    2016-04-02 15:53:38
35136    14255    660    2016-04-13 06:32:04    2016-04-13 06:32:04
35137    12671    824    2016-03-01 14:31:22    2016-03-01 14:31:22
35138    10537    952    2016-03-30 01:54:06    2016-03-30 01:54:06
35139    12667    645    2016-04-12 00:59:44    2016-04-12 00:59:44
35140    12591    740    2016-04-05 07:58:53    2016-04-05 07:58:53
35141    15691    772    2016-03-23 03:36:02    2016-03-23 03:36:02
35142    18860    696    2016-04-07 11:07:51    2016-04-07 11:07:51
35143    13006    770    2016-03-13 22:01:37    2016-03-13 22:01:37
35144    11120    696    2016-02-28 09:25:06    2016-02-28 09:25:06
35145    17250    930    2016-02-05 15:55:30    2016-02-05 15:55:30
35146    17468    723    2016-04-03 21:25:30    2016-04-03 21:25:30
35147    15442    878    2016-02-20 01:53:56    2016-02-20 01:53:56
35148    17202    750    2016-03-08 15:23:46    2016-03-08 15:23:46
35149    17137    721    2016-03-18 02:09:02    2016-03-18 02:09:02
35150    18583    518    2016-04-19 19:03:33    2016-04-19 19:03:33
35151    13159    959    2016-01-28 13:00:25    2016-01-28 13:00:25
35152    14180    570    2016-02-24 08:25:02    2016-02-24 08:25:02
35153    10177    760    2016-03-27 00:21:15    2016-03-27 00:21:15
35154    19005    811    2016-02-13 02:01:07    2016-02-13 02:01:07
35155    12962    690    2016-02-29 14:54:58    2016-02-29 14:54:58
35156    15160    813    2016-03-03 05:21:34    2016-03-03 05:21:34
35157    17368    604    2016-04-08 11:00:10    2016-04-08 11:00:10
35158    16191    752    2016-03-28 05:51:18    2016-03-28 05:51:18
35159    15326    738    2016-03-27 22:27:40    2016-03-27 22:27:40
35160    14984    509    2016-03-20 04:51:36    2016-03-20 04:51:36
35161    17429    759    2016-04-10 09:15:37    2016-04-10 09:15:37
35162    15398    477    2016-02-05 17:39:42    2016-02-05 17:39:42
35163    12623    605    2016-02-12 12:17:38    2016-02-12 12:17:38
35164    18892    854    2016-03-20 07:50:44    2016-03-20 07:50:44
35165    18141    787    2016-04-13 00:50:14    2016-04-13 00:50:14
35166    19482    516    2016-03-01 02:12:51    2016-03-01 02:12:51
35167    17818    772    2016-03-30 18:51:36    2016-03-30 18:51:36
35168    13362    755    2016-02-11 22:09:41    2016-02-11 22:09:41
35169    14060    802    2016-02-12 11:55:14    2016-02-12 11:55:14
35170    11504    632    2016-02-18 08:11:42    2016-02-18 08:11:42
35171    14607    906    2016-02-13 17:05:01    2016-02-13 17:05:01
35172    19569    921    2016-02-15 14:07:28    2016-02-15 14:07:28
35173    11755    782    2016-02-11 15:08:28    2016-02-11 15:08:28
35174    18814    900    2016-04-02 15:49:39    2016-04-02 15:49:39
35175    19871    776    2016-03-24 01:05:10    2016-03-24 01:05:10
35176    10388    620    2016-02-06 16:42:43    2016-02-06 16:42:43
35177    18462    573    2016-02-19 10:58:04    2016-02-19 10:58:04
35178    17365    883    2016-02-07 18:32:02    2016-02-07 18:32:02
35179    19366    865    2016-03-02 09:33:35    2016-03-02 09:33:35
35180    19103    754    2016-02-19 20:20:14    2016-02-19 20:20:14
35181    17204    762    2016-02-04 17:10:47    2016-02-04 17:10:47
35182    10517    564    2016-03-26 02:51:50    2016-03-26 02:51:50
35183    11968    731    2016-03-07 12:08:46    2016-03-07 12:08:46
35184    15102    850    2016-03-21 06:00:20    2016-03-21 06:00:20
35185    13080    515    2016-01-31 11:45:55    2016-01-31 11:45:55
35186    15965    690    2016-03-31 05:31:27    2016-03-31 05:31:27
35187    14924    537    2016-04-01 07:28:27    2016-04-01 07:28:27
35188    10326    539    2016-03-18 00:27:50    2016-03-18 00:27:50
35189    10212    835    2016-02-27 00:41:46    2016-02-27 00:41:46
35190    18671    721    2016-02-23 04:32:24    2016-02-23 04:32:24
35191    15098    827    2016-02-15 02:14:27    2016-02-15 02:14:27
35192    14781    481    2016-01-24 21:30:24    2016-01-24 21:30:24
35193    11107    743    2016-03-08 09:56:49    2016-03-08 09:56:49
35194    18926    542    2016-04-13 07:54:13    2016-04-13 07:54:13
35195    13007    671    2016-03-21 07:24:07    2016-03-21 07:24:07
35196    18079    542    2016-03-04 00:32:03    2016-03-04 00:32:03
35197    10693    710    2016-02-01 21:40:57    2016-02-01 21:40:57
35198    13301    524    2016-02-08 15:16:14    2016-02-08 15:16:14
35199    19498    487    2016-03-02 18:10:13    2016-03-02 18:10:13
35200    18513    873    2016-02-11 02:11:09    2016-02-11 02:11:09
35201    17015    841    2016-03-26 03:33:17    2016-03-26 03:33:17
35202    12211    716    2016-03-30 22:01:57    2016-03-30 22:01:57
35203    18172    587    2016-02-24 10:48:39    2016-02-24 10:48:39
35204    13170    919    2016-03-04 02:04:33    2016-03-04 02:04:33
35205    13021    938    2016-02-15 07:11:09    2016-02-15 07:11:09
35206    19056    868    2016-04-20 07:38:05    2016-04-20 07:38:05
35207    14968    736    2016-04-03 00:53:35    2016-04-03 00:53:35
35208    17484    678    2016-02-10 05:29:05    2016-02-10 05:29:05
35209    10079    696    2016-02-09 09:07:33    2016-02-09 09:07:33
35210    19256    551    2016-02-06 10:03:01    2016-02-06 10:03:01
35211    17539    931    2016-03-27 10:01:57    2016-03-27 10:01:57
35212    16217    540    2016-01-31 15:33:35    2016-01-31 15:33:35
35213    11471    798    2016-04-14 21:05:30    2016-04-14 21:05:30
35214    14545    466    2016-04-03 13:19:34    2016-04-03 13:19:34
35215    11765    730    2016-02-14 06:38:48    2016-02-14 06:38:48
35216    19870    882    2016-04-04 09:31:25    2016-04-04 09:31:25
35217    14353    665    2016-01-27 12:02:59    2016-01-27 12:02:59
35218    19490    557    2016-04-20 11:29:08    2016-04-20 11:29:08
35219    16326    932    2016-03-03 13:24:36    2016-03-03 13:24:36
35220    15942    663    2016-02-25 15:47:56    2016-02-25 15:47:56
35221    10165    716    2016-03-06 06:25:08    2016-03-06 06:25:08
35222    12801    951    2016-04-01 05:34:02    2016-04-01 05:34:02
35223    17591    602    2016-04-10 11:39:52    2016-04-10 11:39:52
35224    17900    961    2016-03-02 22:46:18    2016-03-02 22:46:18
35225    13185    624    2016-03-15 23:29:04    2016-03-15 23:29:04
35226    15429    908    2016-02-18 02:51:01    2016-02-18 02:51:01
35227    18808    901    2016-03-16 11:08:10    2016-03-16 11:08:10
35228    17082    935    2016-03-30 05:23:44    2016-03-30 05:23:44
35229    12329    857    2016-02-09 16:10:46    2016-02-09 16:10:46
35230    13116    723    2016-02-01 08:45:30    2016-02-01 08:45:30
35231    18550    755    2016-04-06 01:23:28    2016-04-06 01:23:28
35232    12144    744    2016-02-16 08:05:09    2016-02-16 08:05:09
35233    16667    484    2016-02-11 02:15:38    2016-02-11 02:15:38
35234    19745    494    2016-01-28 22:25:05    2016-01-28 22:25:05
35235    13697    546    2016-03-12 21:08:25    2016-03-12 21:08:25
35236    11550    501    2016-04-08 01:06:44    2016-04-08 01:06:44
35237    10389    828    2016-01-30 18:09:47    2016-01-30 18:09:47
35238    14297    608    2016-03-03 06:45:13    2016-03-03 06:45:13
35239    17992    786    2016-02-09 01:34:10    2016-02-09 01:34:10
35240    15323    670    2016-03-26 08:36:40    2016-03-26 08:36:40
35241    14684    731    2016-03-24 23:25:46    2016-03-24 23:25:46
35242    18463    759    2016-02-22 06:20:40    2016-02-22 06:20:40
35243    18793    745    2016-04-12 18:58:04    2016-04-12 18:58:04
35244    15420    952    2016-02-11 09:53:45    2016-02-11 09:53:45
35245    12161    729    2016-03-10 07:56:16    2016-03-10 07:56:16
35246    14604    752    2016-03-06 16:42:46    2016-03-06 16:42:46
35247    15054    865    2016-03-30 07:37:57    2016-03-30 07:37:57
35248    10321    648    2016-04-20 08:43:54    2016-04-20 08:43:54
35249    11732    665    2016-03-02 06:12:06    2016-03-02 06:12:06
35250    11910    892    2016-02-16 04:08:56    2016-02-16 04:08:56
35251    18144    511    2016-02-25 04:49:43    2016-02-25 04:49:43
35252    18525    698    2016-02-09 21:10:20    2016-02-09 21:10:20
35253    12665    823    2016-02-26 18:41:30    2016-02-26 18:41:30
35254    11510    636    2016-02-14 19:16:14    2016-02-14 19:16:14
35255    12123    485    2016-03-19 18:14:25    2016-03-19 18:14:25
35256    12626    785    2016-01-23 16:06:31    2016-01-23 16:06:31
35257    19351    810    2016-01-26 12:46:23    2016-01-26 12:46:23
35258    16522    738    2016-04-10 17:34:56    2016-04-10 17:34:56
35259    18283    583    2016-02-16 02:31:16    2016-02-16 02:31:16
35260    13520    467    2016-04-10 22:38:29    2016-04-10 22:38:29
35261    15727    499    2016-01-30 17:01:57    2016-01-30 17:01:57
35262    19595    961    2016-04-11 01:39:10    2016-04-11 01:39:10
35263    10839    835    2016-01-29 10:53:19    2016-01-29 10:53:19
35264    17395    903    2016-02-17 11:32:21    2016-02-17 11:32:21
35265    14738    580    2016-01-24 15:00:11    2016-01-24 15:00:11
35266    19090    682    2016-02-07 03:33:01    2016-02-07 03:33:01
35267    11458    542    2016-03-25 18:00:37    2016-03-25 18:00:37
35268    18996    866    2016-01-25 05:37:42    2016-01-25 05:37:42
35269    13842    688    2016-03-11 19:06:39    2016-03-11 19:06:39
35270    17352    828    2016-03-15 06:37:59    2016-03-15 06:37:59
35271    10058    958    2016-03-13 13:00:02    2016-03-13 13:00:02
35272    12369    520    2016-03-14 18:20:42    2016-03-14 18:20:42
35273    16625    694    2016-03-02 19:20:26    2016-03-02 19:20:26
35274    15704    707    2016-04-11 10:31:42    2016-04-11 10:31:42
35275    17029    485    2016-03-28 05:23:18    2016-03-28 05:23:18
35276    10972    930    2016-02-25 10:23:16    2016-02-25 10:23:16
35277    14159    562    2016-03-15 11:42:04    2016-03-15 11:42:04
35278    10026    471    2016-03-27 10:54:53    2016-03-27 10:54:53
35279    17159    804    2016-02-21 14:06:50    2016-02-21 14:06:50
35280    14869    894    2016-04-01 11:15:38    2016-04-01 11:15:38
35281    17600    882    2016-04-09 09:18:42    2016-04-09 09:18:42
35282    18489    716    2016-02-27 17:42:34    2016-02-27 17:42:34
35283    19828    840    2016-03-15 01:48:21    2016-03-15 01:48:21
35284    16847    505    2016-02-14 11:11:06    2016-02-14 11:11:06
35285    11497    772    2016-02-22 16:28:06    2016-02-22 16:28:06
35286    10998    732    2016-04-14 09:39:08    2016-04-14 09:39:08
35287    16517    959    2016-04-19 18:47:17    2016-04-19 18:47:17
35288    16202    463    2016-01-27 01:42:10    2016-01-27 01:42:10
35289    15918    550    2016-03-28 14:47:44    2016-03-28 14:47:44
35290    19873    771    2016-03-29 20:00:32    2016-03-29 20:00:32
35291    12541    763    2016-03-02 05:24:19    2016-03-02 05:24:19
35292    17082    656    2016-04-02 12:24:41    2016-04-02 12:24:41
35293    11988    918    2016-02-10 04:19:19    2016-02-10 04:19:19
35294    13464    960    2016-02-08 22:16:05    2016-02-08 22:16:05
35295    12292    539    2016-03-02 01:21:40    2016-03-02 01:21:40
35296    12771    885    2016-03-20 15:42:09    2016-03-20 15:42:09
35297    17618    809    2016-03-21 00:27:09    2016-03-21 00:27:09
35298    14104    517    2016-03-26 14:52:00    2016-03-26 14:52:00
35299    12576    945    2016-02-22 14:19:55    2016-02-22 14:19:55
35300    11988    652    2016-02-29 23:02:19    2016-02-29 23:02:19
35301    18762    580    2016-01-30 20:02:56    2016-01-30 20:02:56
35302    16665    871    2016-01-27 13:06:53    2016-01-27 13:06:53
35303    14799    476    2016-04-05 23:40:17    2016-04-05 23:40:17
35304    10475    796    2016-04-02 23:49:55    2016-04-02 23:49:55
35305    14465    654    2016-04-07 17:36:44    2016-04-07 17:36:44
35306    11637    635    2016-04-17 21:43:26    2016-04-17 21:43:26
35307    17774    757    2016-04-08 18:21:56    2016-04-08 18:21:56
35308    14285    853    2016-04-08 09:43:14    2016-04-08 09:43:14
35309    18868    841    2016-03-12 12:15:45    2016-03-12 12:15:45
35310    19684    526    2016-01-23 07:17:10    2016-01-23 07:17:10
35311    18459    922    2016-02-07 03:37:11    2016-02-07 03:37:11
35312    17848    544    2016-03-02 20:54:39    2016-03-02 20:54:39
35313    16238    608    2016-04-04 02:37:32    2016-04-04 02:37:32
35314    16065    756    2016-02-12 10:09:02    2016-02-12 10:09:02
35315    15463    496    2016-04-07 10:30:23    2016-04-07 10:30:23
35316    19956    784    2016-03-03 01:44:43    2016-03-03 01:44:43
35317    13531    773    2016-03-25 20:20:21    2016-03-25 20:20:21
35318    17657    552    2016-03-07 18:16:51    2016-03-07 18:16:51
35319    11494    622    2016-04-08 16:21:37    2016-04-08 16:21:37
35320    11977    756    2016-03-01 22:21:39    2016-03-01 22:21:39
35321    14897    943    2016-02-26 21:32:59    2016-02-26 21:32:59
35322    16447    632    2016-02-17 03:01:40    2016-02-17 03:01:40
35323    17287    807    2016-03-17 21:04:38    2016-03-17 21:04:38
35324    17716    613    2016-01-22 10:44:52    2016-01-22 10:44:52
35325    12718    625    2016-04-07 09:16:09    2016-04-07 09:16:09
35326    16076    527    2016-03-05 10:39:35    2016-03-05 10:39:35
35327    11899    899    2016-04-07 05:40:15    2016-04-07 05:40:15
35328    12906    545    2016-03-26 23:40:24    2016-03-26 23:40:24
35329    18302    737    2016-02-25 17:24:47    2016-02-25 17:24:47
35330    19341    546    2016-02-18 22:39:37    2016-02-18 22:39:37
35331    11217    679    2016-03-23 08:36:27    2016-03-23 08:36:27
35332    14303    508    2016-03-15 21:46:37    2016-03-15 21:46:37
35333    12552    941    2016-02-07 00:33:27    2016-02-07 00:33:27
35334    19634    805    2016-02-11 08:32:58    2016-02-11 08:32:58
35335    17247    559    2016-03-26 04:34:54    2016-03-26 04:34:54
35336    10067    676    2016-01-27 01:00:43    2016-01-27 01:00:43
35337    14143    645    2016-03-26 06:32:48    2016-03-26 06:32:48
35338    10478    486    2016-03-08 04:25:07    2016-03-08 04:25:07
35339    14565    872    2016-03-21 07:34:18    2016-03-21 07:34:18
35340    14090    807    2016-04-01 06:23:53    2016-04-01 06:23:53
35341    18524    478    2016-01-24 00:37:49    2016-01-24 00:37:49
35342    14329    501    2016-02-11 01:11:51    2016-02-11 01:11:51
35343    10809    903    2016-01-25 05:07:35    2016-01-25 05:07:35
35344    15713    580    2016-02-10 22:46:30    2016-02-10 22:46:30
35345    17752    783    2016-03-15 12:17:37    2016-03-15 12:17:37
35346    12830    512    2016-04-16 09:55:43    2016-04-16 09:55:43
35347    16722    911    2016-03-01 16:16:23    2016-03-01 16:16:23
35348    12923    820    2016-03-19 13:56:08    2016-03-19 13:56:08
35349    17095    887    2016-03-11 05:04:03    2016-03-11 05:04:03
35350    11151    885    2016-03-02 19:54:45    2016-03-02 19:54:45
35351    10982    660    2016-04-10 12:01:41    2016-04-10 12:01:41
35352    19149    773    2016-03-29 04:50:17    2016-03-29 04:50:17
35353    13192    960    2016-04-05 12:15:39    2016-04-05 12:15:39
35354    13754    681    2016-02-04 01:33:40    2016-02-04 01:33:40
35355    16595    583    2016-03-11 03:52:26    2016-03-11 03:52:26
35356    15091    814    2016-03-05 22:10:33    2016-03-05 22:10:33
35357    19683    878    2016-03-30 16:44:57    2016-03-30 16:44:57
35358    10715    710    2016-03-04 12:55:19    2016-03-04 12:55:19
35359    16713    805    2016-01-24 23:16:37    2016-01-24 23:16:37
35360    16799    584    2016-03-04 20:36:37    2016-03-04 20:36:37
35361    19611    534    2016-03-06 20:02:06    2016-03-06 20:02:06
35362    10882    559    2016-02-08 00:00:43    2016-02-08 00:00:43
35363    10722    922    2016-02-27 01:40:54    2016-02-27 01:40:54
35364    18228    807    2016-02-29 11:50:48    2016-02-29 11:50:48
35365    13739    684    2016-02-25 05:22:42    2016-02-25 05:22:42
35366    13221    896    2016-01-28 05:39:51    2016-01-28 05:39:51
35367    15964    817    2016-03-22 08:23:48    2016-03-22 08:23:48
35368    11454    662    2016-04-11 16:32:07    2016-04-11 16:32:07
35369    19578    620    2016-02-27 06:33:51    2016-02-27 06:33:51
35370    17240    665    2016-03-13 10:01:41    2016-03-13 10:01:41
35371    19815    542    2016-03-22 20:56:13    2016-03-22 20:56:13
35372    11988    772    2016-02-29 12:13:24    2016-02-29 12:13:24
35373    13025    561    2016-02-21 07:07:00    2016-02-21 07:07:00
35374    10054    627    2016-04-08 14:21:34    2016-04-08 14:21:34
35375    12752    878    2016-02-09 15:03:41    2016-02-09 15:03:41
35376    18572    789    2016-03-03 16:04:01    2016-03-03 16:04:01
35377    14632    624    2016-02-29 11:10:20    2016-02-29 11:10:20
35378    15761    708    2016-01-25 10:51:05    2016-01-25 10:51:05
35379    12357    644    2016-04-10 06:38:01    2016-04-10 06:38:01
35380    10880    719    2016-04-10 07:53:02    2016-04-10 07:53:02
35381    14353    954    2016-01-27 15:36:50    2016-01-27 15:36:50
35382    18691    489    2016-02-09 07:08:25    2016-02-09 07:08:25
35383    12971    864    2016-03-23 04:27:23    2016-03-23 04:27:23
35384    10407    672    2016-04-15 07:12:31    2016-04-15 07:12:31
35385    18555    476    2016-03-02 15:05:19    2016-03-02 15:05:19
35386    10765    684    2016-02-21 02:33:34    2016-02-21 02:33:34
35387    10154    523    2016-02-03 15:24:50    2016-02-03 15:24:50
35388    14000    890    2016-04-13 04:42:12    2016-04-13 04:42:12
35389    13297    524    2016-04-12 13:49:50    2016-04-12 13:49:50
35390    13307    946    2016-01-24 03:37:04    2016-01-24 03:37:04
35391    15875    712    2016-02-22 09:47:26    2016-02-22 09:47:26
35392    16916    549    2016-04-02 03:07:47    2016-04-02 03:07:47
35393    18077    795    2016-03-06 22:50:55    2016-03-06 22:50:55
35394    13874    482    2016-02-27 14:46:15    2016-02-27 14:46:15
35395    14826    656    2016-02-08 08:45:53    2016-02-08 08:45:53
35396    17724    862    2016-02-06 00:42:58    2016-02-06 00:42:58
35397    10245    791    2016-02-05 22:17:59    2016-02-05 22:17:59
35398    12487    489    2016-01-26 09:45:26    2016-01-26 09:45:26
35399    10771    591    2016-02-15 23:43:29    2016-02-15 23:43:29
35400    12922    722    2016-03-04 22:37:24    2016-03-04 22:37:24
35401    13096    550    2016-02-01 00:09:53    2016-02-01 00:09:53
35402    15477    828    2016-01-28 19:12:16    2016-01-28 19:12:16
35403    18405    953    2016-04-01 10:58:13    2016-04-01 10:58:13
35404    18793    560    2016-02-29 18:46:45    2016-02-29 18:46:45
35405    11838    907    2016-04-19 13:23:01    2016-04-19 13:23:01
35406    10780    736    2016-01-30 09:56:50    2016-01-30 09:56:50
35407    17268    709    2016-02-07 18:52:06    2016-02-07 18:52:06
35408    11474    604    2016-04-14 15:34:58    2016-04-14 15:34:58
35409    18012    716    2016-02-26 01:12:55    2016-02-26 01:12:55
35410    16566    881    2016-03-31 22:00:13    2016-03-31 22:00:13
35411    10585    843    2016-04-16 11:56:00    2016-04-16 11:56:00
35412    18824    585    2016-01-30 09:29:57    2016-01-30 09:29:57
35413    12693    534    2016-03-15 17:26:23    2016-03-15 17:26:23
35414    13120    892    2016-03-13 23:33:31    2016-03-13 23:33:31
35415    13012    508    2016-03-22 21:01:43    2016-03-22 21:01:43
35416    15174    711    2016-02-05 07:53:00    2016-02-05 07:53:00
35417    13566    859    2016-03-09 17:59:19    2016-03-09 17:59:19
35418    11210    702    2016-02-01 20:02:04    2016-02-01 20:02:04
35419    10693    955    2016-03-22 07:52:07    2016-03-22 07:52:07
35420    13105    821    2016-01-25 03:57:56    2016-01-25 03:57:56
35421    11081    811    2016-02-05 03:31:53    2016-02-05 03:31:53
35422    15277    677    2016-02-21 18:01:23    2016-02-21 18:01:23
35423    18694    681    2016-03-22 19:23:38    2016-03-22 19:23:38
35424    12583    906    2016-04-11 08:20:52    2016-04-11 08:20:52
35425    15911    674    2016-03-27 10:49:58    2016-03-27 10:49:58
35426    17526    580    2016-03-20 06:26:18    2016-03-20 06:26:18
35427    11944    656    2016-04-14 08:43:23    2016-04-14 08:43:23
35428    18345    489    2016-04-05 02:01:24    2016-04-05 02:01:24
35429    18616    624    2016-01-30 11:55:11    2016-01-30 11:55:11
35430    19228    928    2016-02-22 12:47:21    2016-02-22 12:47:21
35431    18083    710    2016-03-16 03:12:47    2016-03-16 03:12:47
35432    11742    920    2016-02-12 10:31:32    2016-02-12 10:31:32
35433    15970    928    2016-02-01 07:03:46    2016-02-01 07:03:46
35434    18034    653    2016-03-01 19:51:52    2016-03-01 19:51:52
35435    13977    712    2016-03-01 19:08:29    2016-03-01 19:08:29
35436    14214    698    2016-02-02 02:54:22    2016-02-02 02:54:22
35437    18165    630    2016-04-14 09:25:50    2016-04-14 09:25:50
35438    15865    633    2016-02-06 00:49:57    2016-02-06 00:49:57
35439    10334    921    2016-02-27 01:20:47    2016-02-27 01:20:47
35440    11921    954    2016-03-20 08:44:33    2016-03-20 08:44:33
35441    16007    713    2016-03-29 09:17:02    2016-03-29 09:17:02
35442    16228    923    2016-01-28 10:44:23    2016-01-28 10:44:23
35443    12978    918    2016-02-08 14:03:06    2016-02-08 14:03:06
35444    13010    535    2016-03-09 20:37:18    2016-03-09 20:37:18
35445    14526    467    2016-04-04 17:58:36    2016-04-04 17:58:36
35446    15725    839    2016-03-06 19:42:21    2016-03-06 19:42:21
35447    10313    534    2016-02-27 19:26:19    2016-02-27 19:26:19
35448    19852    516    2016-03-01 22:30:17    2016-03-01 22:30:17
35449    16052    615    2016-04-14 15:57:11    2016-04-14 15:57:11
35450    17846    646    2016-02-03 20:11:16    2016-02-03 20:11:16
35451    13409    831    2016-01-24 11:36:56    2016-01-24 11:36:56
35452    14129    730    2016-01-27 21:05:22    2016-01-27 21:05:22
35453    12331    530    2016-04-02 22:36:35    2016-04-02 22:36:35
35454    19732    476    2016-03-11 12:39:45    2016-03-11 12:39:45
35455    16962    673    2016-01-31 12:09:45    2016-01-31 12:09:45
35456    17266    887    2016-04-07 22:34:25    2016-04-07 22:34:25
35457    13965    741    2016-02-16 14:38:12    2016-02-16 14:38:12
35458    18406    852    2016-02-20 17:56:14    2016-02-20 17:56:14
35459    15567    864    2016-03-21 09:04:18    2016-03-21 09:04:18
35460    14517    721    2016-02-19 05:14:15    2016-02-19 05:14:15
35461    13117    679    2016-01-29 02:33:59    2016-01-29 02:33:59
35462    17962    883    2016-04-15 17:18:21    2016-04-15 17:18:21
35463    17123    500    2016-04-03 15:49:03    2016-04-03 15:49:03
35464    10049    951    2016-02-01 23:06:52    2016-02-01 23:06:52
35465    15271    875    2016-02-15 02:49:13    2016-02-15 02:49:13
35466    18387    867    2016-04-18 16:05:39    2016-04-18 16:05:39
35467    19507    947    2016-02-10 23:47:13    2016-02-10 23:47:13
35468    17550    854    2016-04-03 11:16:07    2016-04-03 11:16:07
35469    12807    644    2016-01-27 16:42:59    2016-01-27 16:42:59
35470    15190    655    2016-02-16 20:28:33    2016-02-16 20:28:33
35471    11724    718    2016-04-10 15:41:55    2016-04-10 15:41:55
35472    14706    961    2016-01-26 10:53:53    2016-01-26 10:53:53
35473    18384    825    2016-02-26 23:09:36    2016-02-26 23:09:36
35474    15806    525    2016-03-24 02:36:14    2016-03-24 02:36:14
35475    16412    927    2016-04-10 08:30:31    2016-04-10 08:30:31
35476    12801    757    2016-02-13 08:08:16    2016-02-13 08:08:16
35477    14946    958    2016-04-01 09:25:37    2016-04-01 09:25:37
35478    15698    602    2016-03-16 08:10:38    2016-03-16 08:10:38
35479    17092    545    2016-03-27 16:55:36    2016-03-27 16:55:36
35480    11405    487    2016-03-24 06:54:28    2016-03-24 06:54:28
35481    17276    753    2016-03-04 00:35:40    2016-03-04 00:35:40
35482    18009    922    2016-04-17 06:58:38    2016-04-17 06:58:38
35483    16179    882    2016-03-27 11:26:57    2016-03-27 11:26:57
35484    18265    476    2016-04-20 03:50:40    2016-04-20 03:50:40
35485    11023    774    2016-01-29 22:54:12    2016-01-29 22:54:12
35486    18492    843    2016-04-20 00:46:29    2016-04-20 00:46:29
35487    14913    697    2016-02-16 20:32:09    2016-02-16 20:32:09
35488    11338    560    2016-04-14 12:10:08    2016-04-14 12:10:08
35489    18170    741    2016-04-05 19:45:18    2016-04-05 19:45:18
35490    14177    570    2016-01-25 01:48:06    2016-01-25 01:48:06
35491    14744    875    2016-01-28 15:13:16    2016-01-28 15:13:16
35492    10293    851    2016-02-18 21:49:09    2016-02-18 21:49:09
35493    12306    625    2016-03-11 22:46:26    2016-03-11 22:46:26
35494    11944    504    2016-03-03 06:29:32    2016-03-03 06:29:32
35495    19256    521    2016-03-15 16:02:54    2016-03-15 16:02:54
35496    15779    815    2016-02-10 12:32:01    2016-02-10 12:32:01
35497    16048    771    2016-04-01 01:15:07    2016-04-01 01:15:07
35498    13748    805    2016-03-08 02:10:54    2016-03-08 02:10:54
35499    12648    573    2016-02-25 15:21:34    2016-02-25 15:21:34
35500    15910    608    2016-02-17 20:05:07    2016-02-17 20:05:07
35501    19531    849    2016-02-09 02:57:08    2016-02-09 02:57:08
35502    15258    750    2016-03-20 17:35:08    2016-03-20 17:35:08
35503    19580    668    2016-04-13 17:18:34    2016-04-13 17:18:34
35504    16911    590    2016-03-15 23:59:41    2016-03-15 23:59:41
35505    12018    632    2016-02-12 11:37:13    2016-02-12 11:37:13
35506    10840    855    2016-03-25 01:14:50    2016-03-25 01:14:50
35507    11598    781    2016-03-06 18:13:02    2016-03-06 18:13:02
35508    18659    680    2016-02-19 02:22:46    2016-02-19 02:22:46
35509    16817    797    2016-01-26 12:57:48    2016-01-26 12:57:48
35510    14014    711    2016-03-17 13:46:04    2016-03-17 13:46:04
35511    18200    687    2016-04-18 10:37:40    2016-04-18 10:37:40
35512    18114    488    2016-03-03 00:22:26    2016-03-03 00:22:26
35513    16951    587    2016-03-08 02:52:37    2016-03-08 02:52:37
35514    16537    519    2016-02-18 03:07:39    2016-02-18 03:07:39
35515    18354    488    2016-02-23 11:20:47    2016-02-23 11:20:47
35516    11693    657    2016-02-15 20:23:49    2016-02-15 20:23:49
35517    12519    663    2016-01-30 12:08:11    2016-01-30 12:08:11
35518    15007    533    2016-04-12 17:58:02    2016-04-12 17:58:02
35519    16189    949    2016-02-02 04:26:17    2016-02-02 04:26:17
35520    12453    820    2016-03-28 07:07:59    2016-03-28 07:07:59
35521    16745    542    2016-02-19 23:01:43    2016-02-19 23:01:43
35522    11258    711    2016-01-28 18:31:56    2016-01-28 18:31:56
35523    16637    622    2016-02-22 03:34:00    2016-02-22 03:34:00
35524    18098    649    2016-03-02 01:52:03    2016-03-02 01:52:03
35525    18905    815    2016-02-22 19:25:15    2016-02-22 19:25:15
35526    19275    472    2016-02-06 23:17:03    2016-02-06 23:17:03
35527    19631    495    2016-02-05 09:58:39    2016-02-05 09:58:39
35528    13301    711    2016-02-07 16:05:58    2016-02-07 16:05:58
35529    19752    655    2016-02-22 14:20:21    2016-02-22 14:20:21
35530    12101    534    2016-03-26 21:46:14    2016-03-26 21:46:14
35531    18944    694    2016-04-08 13:52:24    2016-04-08 13:52:24
35532    11346    702    2016-04-12 20:32:08    2016-04-12 20:32:08
35533    11230    552    2016-03-05 02:23:23    2016-03-05 02:23:23
35534    10826    773    2016-04-03 04:54:37    2016-04-03 04:54:37
35535    16111    538    2016-02-22 03:31:06    2016-02-22 03:31:06
35536    14983    815    2016-03-27 02:46:17    2016-03-27 02:46:17
35537    10911    498    2016-04-11 11:10:56    2016-04-11 11:10:56
35538    17966    703    2016-04-16 22:22:23    2016-04-16 22:22:23
35539    13312    665    2016-01-28 19:31:44    2016-01-28 19:31:44
35540    19685    841    2016-03-06 12:58:13    2016-03-06 12:58:13
35541    16267    492    2016-03-14 04:49:14    2016-03-14 04:49:14
35542    10235    832    2016-04-15 22:38:54    2016-04-15 22:38:54
35543    19703    638    2016-03-15 15:19:12    2016-03-15 15:19:12
35544    16581    516    2016-02-29 04:21:51    2016-02-29 04:21:51
35545    19472    673    2016-03-14 09:04:06    2016-03-14 09:04:06
35546    15241    726    2016-02-19 08:37:50    2016-02-19 08:37:50
35547    11654    625    2016-03-13 11:43:12    2016-03-13 11:43:12
35548    15298    734    2016-02-20 20:13:12    2016-02-20 20:13:12
35549    17149    517    2016-02-19 09:59:47    2016-02-19 09:59:47
35550    10591    552    2016-04-08 10:50:05    2016-04-08 10:50:05
35551    13910    768    2016-02-28 20:25:53    2016-02-28 20:25:53
35552    18135    803    2016-03-09 13:03:31    2016-03-09 13:03:31
35553    10520    843    2016-03-10 12:32:58    2016-03-10 12:32:58
35554    14534    650    2016-04-06 12:39:49    2016-04-06 12:39:49
35555    18088    591    2016-02-10 18:44:56    2016-02-10 18:44:56
35556    16711    664    2016-01-30 14:12:03    2016-01-30 14:12:03
35557    13555    617    2016-02-11 00:07:29    2016-02-11 00:07:29
35558    13927    931    2016-04-18 09:17:51    2016-04-18 09:17:51
35559    15526    944    2016-03-25 18:16:58    2016-03-25 18:16:58
35560    19573    579    2016-02-20 12:26:14    2016-02-20 12:26:14
35561    16546    834    2016-02-24 08:30:58    2016-02-24 08:30:58
35562    19189    799    2016-04-07 15:42:23    2016-04-07 15:42:23
35563    12464    878    2016-04-12 15:06:48    2016-04-12 15:06:48
35564    13959    758    2016-03-29 19:05:45    2016-03-29 19:05:45
35565    11165    646    2016-04-12 00:28:13    2016-04-12 00:28:13
35566    19655    490    2016-03-01 18:40:41    2016-03-01 18:40:41
35567    16042    597    2016-03-01 20:53:26    2016-03-01 20:53:26
35568    12185    906    2016-03-20 02:30:00    2016-03-20 02:30:00
35569    15639    921    2016-04-08 00:41:22    2016-04-08 00:41:22
35570    12924    469    2016-02-02 14:32:40    2016-02-02 14:32:40
35571    18012    846    2016-04-18 12:41:59    2016-04-18 12:41:59
35572    12609    525    2016-02-16 20:43:28    2016-02-16 20:43:28
35573    15184    863    2016-04-17 12:49:43    2016-04-17 12:49:43
35574    17018    700    2016-04-14 10:23:07    2016-04-14 10:23:07
35575    11585    906    2016-03-11 13:14:47    2016-03-11 13:14:47
35576    14590    933    2016-04-04 22:05:59    2016-04-04 22:05:59
35577    17598    651    2016-03-08 08:54:44    2016-03-08 08:54:44
35578    11788    601    2016-03-13 15:01:41    2016-03-13 15:01:41
35579    12857    893    2016-02-10 16:56:30    2016-02-10 16:56:30
35580    11956    890    2016-01-29 05:20:09    2016-01-29 05:20:09
35581    12924    757    2016-02-13 13:10:20    2016-02-13 13:10:20
35582    11783    924    2016-04-18 01:48:22    2016-04-18 01:48:22
35583    15444    856    2016-04-09 08:48:20    2016-04-09 08:48:20
35584    18924    939    2016-04-14 21:28:29    2016-04-14 21:28:29
35585    16401    870    2016-04-13 16:37:46    2016-04-13 16:37:46
35586    11918    883    2016-04-16 17:22:31    2016-04-16 17:22:31
35587    12438    729    2016-03-07 21:41:44    2016-03-07 21:41:44
35588    16031    574    2016-04-19 08:06:14    2016-04-19 08:06:14
35589    13592    825    2016-02-10 15:04:53    2016-02-10 15:04:53
35590    14916    463    2016-02-23 16:44:45    2016-02-23 16:44:45
35591    10720    895    2016-03-06 14:41:50    2016-03-06 14:41:50
35592    15673    506    2016-02-13 12:06:11    2016-02-13 12:06:11
35593    15554    957    2016-04-17 05:34:19    2016-04-17 05:34:19
35594    16059    596    2016-04-06 08:56:56    2016-04-06 08:56:56
35595    12967    916    2016-01-23 05:12:49    2016-01-23 05:12:49
35596    12011    554    2016-02-16 15:11:59    2016-02-16 15:11:59
35597    18989    938    2016-02-07 21:09:44    2016-02-07 21:09:44
35598    19085    877    2016-02-06 21:31:37    2016-02-06 21:31:37
35599    18780    518    2016-04-13 10:53:10    2016-04-13 10:53:10
35600    16514    593    2016-01-23 20:06:53    2016-01-23 20:06:53
35601    19167    802    2016-02-25 14:42:50    2016-02-25 14:42:50
35602    16550    568    2016-02-02 00:26:03    2016-02-02 00:26:03
35603    19472    696    2016-01-25 01:36:50    2016-01-25 01:36:50
35604    14267    581    2016-03-13 17:34:33    2016-03-13 17:34:33
35605    18756    825    2016-03-07 19:15:54    2016-03-07 19:15:54
35606    16802    774    2016-02-08 11:18:59    2016-02-08 11:18:59
35607    12243    485    2016-03-27 18:57:28    2016-03-27 18:57:28
35608    19230    668    2016-03-24 10:53:46    2016-03-24 10:53:46
35609    19388    731    2016-01-25 14:14:35    2016-01-25 14:14:35
35610    13667    780    2016-01-25 08:38:15    2016-01-25 08:38:15
35611    18740    678    2016-04-08 11:38:14    2016-04-08 11:38:14
35612    12266    842    2016-04-04 03:29:09    2016-04-04 03:29:09
35613    10181    493    2016-02-07 23:11:03    2016-02-07 23:11:03
35614    10772    810    2016-02-26 22:23:55    2016-02-26 22:23:55
35615    16681    927    2016-03-16 21:26:54    2016-03-16 21:26:54
35616    17712    936    2016-02-23 21:22:58    2016-02-23 21:22:58
35617    12342    864    2016-03-05 20:14:17    2016-03-05 20:14:17
35618    10479    696    2016-03-01 10:49:26    2016-03-01 10:49:26
35619    16590    554    2016-03-27 23:50:43    2016-03-27 23:50:43
35620    19302    912    2016-03-17 06:55:22    2016-03-17 06:55:22
35621    15185    890    2016-04-12 03:57:09    2016-04-12 03:57:09
35622    12705    898    2016-03-19 10:28:50    2016-03-19 10:28:50
35623    16329    709    2016-01-25 06:41:10    2016-01-25 06:41:10
35624    14596    759    2016-03-12 02:46:16    2016-03-12 02:46:16
35625    19091    792    2016-01-31 04:30:53    2016-01-31 04:30:53
35626    18254    603    2016-02-23 02:44:56    2016-02-23 02:44:56
35627    10254    958    2016-04-02 01:57:32    2016-04-02 01:57:32
35628    12361    597    2016-04-16 20:03:32    2016-04-16 20:03:32
35629    11297    758    2016-01-29 19:02:12    2016-01-29 19:02:12
35630    13432    622    2016-03-03 19:48:08    2016-03-03 19:48:08
35631    18383    571    2016-04-02 15:08:07    2016-04-02 15:08:07
35632    15396    864    2016-01-29 12:06:17    2016-01-29 12:06:17
35633    13695    943    2016-03-19 17:17:52    2016-03-19 17:17:52
35634    19751    772    2016-01-26 05:55:26    2016-01-26 05:55:26
35635    11585    789    2016-04-01 05:00:51    2016-04-01 05:00:51
35636    14491    880    2016-04-07 09:19:27    2016-04-07 09:19:27
35637    16983    800    2016-02-18 23:51:06    2016-02-18 23:51:06
35638    16888    823    2016-03-13 22:42:14    2016-03-13 22:42:14
35639    13322    519    2016-02-02 17:54:48    2016-02-02 17:54:48
35640    12817    904    2016-03-20 08:29:19    2016-03-20 08:29:19
35641    10010    583    2016-01-24 01:11:17    2016-01-24 01:11:17
35642    14916    660    2016-03-31 23:04:42    2016-03-31 23:04:42
35643    15069    489    2016-02-17 02:39:49    2016-02-17 02:39:49
35644    15992    603    2016-02-06 23:15:08    2016-02-06 23:15:08
35645    12790    755    2016-02-05 12:02:33    2016-02-05 12:02:33
35646    14922    665    2016-02-09 15:26:10    2016-02-09 15:26:10
35647    12624    947    2016-02-17 23:45:44    2016-02-17 23:45:44
35648    18576    564    2016-04-07 16:38:17    2016-04-07 16:38:17
35649    10573    737    2016-03-22 13:41:56    2016-03-22 13:41:56
35650    12814    693    2016-02-22 16:25:36    2016-02-22 16:25:36
35651    13401    602    2016-02-26 20:45:24    2016-02-26 20:45:24
35652    10040    662    2016-03-19 03:42:25    2016-03-19 03:42:25
35653    11140    747    2016-04-02 10:00:21    2016-04-02 10:00:21
35654    10025    479    2016-02-22 23:32:47    2016-02-22 23:32:47
35655    19599    701    2016-03-18 19:32:27    2016-03-18 19:32:27
35656    12233    882    2016-02-01 20:17:08    2016-02-01 20:17:08
35657    15992    541    2016-03-29 13:11:26    2016-03-29 13:11:26
35658    10348    561    2016-04-05 15:03:11    2016-04-05 15:03:11
35659    14997    681    2016-02-29 16:45:37    2016-02-29 16:45:37
35660    18031    510    2016-04-04 18:32:45    2016-04-04 18:32:45
35661    14953    939    2016-03-28 16:44:19    2016-03-28 16:44:19
35662    17446    755    2016-02-08 08:16:35    2016-02-08 08:16:35
35663    10968    900    2016-04-04 03:31:03    2016-04-04 03:31:03
35664    11019    669    2016-03-04 22:27:23    2016-03-04 22:27:23
35665    10744    913    2016-04-03 22:11:58    2016-04-03 22:11:58
35666    14469    936    2016-01-29 05:21:51    2016-01-29 05:21:51
35667    17397    843    2016-02-13 13:37:53    2016-02-13 13:37:53
35668    13555    630    2016-03-15 18:50:52    2016-03-15 18:50:52
35669    19949    540    2016-01-28 06:15:07    2016-01-28 06:15:07
35670    13269    849    2016-04-07 18:19:46    2016-04-07 18:19:46
35671    13042    797    2016-04-04 02:13:51    2016-04-04 02:13:51
35672    12566    813    2016-02-02 12:06:37    2016-02-02 12:06:37
35673    18838    745    2016-02-05 20:42:24    2016-02-05 20:42:24
35674    14374    869    2016-02-28 05:00:38    2016-02-28 05:00:38
35675    16732    900    2016-03-31 07:28:55    2016-03-31 07:28:55
35676    10577    959    2016-03-28 00:41:12    2016-03-28 00:41:12
35677    15301    630    2016-02-27 07:43:08    2016-02-27 07:43:08
35678    12032    844    2016-03-03 20:08:11    2016-03-03 20:08:11
35679    14538    737    2016-02-12 09:35:28    2016-02-12 09:35:28
35680    18344    534    2016-02-19 05:45:05    2016-02-19 05:45:05
35681    15467    722    2016-02-17 00:29:31    2016-02-17 00:29:31
35682    16960    927    2016-01-31 10:46:30    2016-01-31 10:46:30
35683    13013    823    2016-02-07 04:03:07    2016-02-07 04:03:07
35684    13835    741    2016-02-20 12:32:44    2016-02-20 12:32:44
35685    17267    621    2016-02-06 07:43:26    2016-02-06 07:43:26
35686    18608    595    2016-04-16 00:11:14    2016-04-16 00:11:14
35687    17979    909    2016-01-25 04:33:30    2016-01-25 04:33:30
35688    11786    636    2016-02-19 04:04:18    2016-02-19 04:04:18
35689    19443    625    2016-03-04 04:13:26    2016-03-04 04:13:26
35690    14667    700    2016-02-13 13:10:56    2016-02-13 13:10:56
35691    14884    863    2016-04-05 14:33:17    2016-04-05 14:33:17
35692    15696    719    2016-04-18 13:10:06    2016-04-18 13:10:06
35693    13002    945    2016-04-12 03:59:18    2016-04-12 03:59:18
35694    17658    712    2016-04-10 19:39:42    2016-04-10 19:39:42
35695    14945    656    2016-03-03 03:40:32    2016-03-03 03:40:32
35696    10979    570    2016-01-24 23:49:10    2016-01-24 23:49:10
35697    14852    866    2016-01-31 09:10:48    2016-01-31 09:10:48
35698    12654    833    2016-04-13 17:08:25    2016-04-13 17:08:25
35699    14791    530    2016-01-26 18:51:59    2016-01-26 18:51:59
35700    19003    793    2016-02-28 08:50:58    2016-02-28 08:50:58
35701    18553    512    2016-03-05 20:30:26    2016-03-05 20:30:26
35702    14936    783    2016-03-24 23:12:29    2016-03-24 23:12:29
35703    19827    767    2016-02-28 12:33:04    2016-02-28 12:33:04
35704    15995    918    2016-03-08 08:17:05    2016-03-08 08:17:05
35705    10676    560    2016-02-25 05:33:33    2016-02-25 05:33:33
35706    17662    718    2016-03-14 12:33:05    2016-03-14 12:33:05
35707    15091    595    2016-02-05 10:59:14    2016-02-05 10:59:14
35708    15122    945    2016-03-30 16:36:10    2016-03-30 16:36:10
35709    13784    775    2016-03-06 02:24:56    2016-03-06 02:24:56
35710    17497    687    2016-01-27 06:25:05    2016-01-27 06:25:05
35711    14737    923    2016-01-29 07:08:22    2016-01-29 07:08:22
35712    19589    701    2016-03-04 06:21:46    2016-03-04 06:21:46
35713    16781    858    2016-04-20 07:12:53    2016-04-20 07:12:53
35714    18713    584    2016-04-01 16:00:04    2016-04-01 16:00:04
35715    13925    473    2016-04-08 18:04:19    2016-04-08 18:04:19
35716    12638    875    2016-03-23 13:00:13    2016-03-23 13:00:13
35717    19220    715    2016-03-16 21:48:02    2016-03-16 21:48:02
35718    11425    510    2016-04-01 08:42:34    2016-04-01 08:42:34
35719    11773    933    2016-04-04 04:05:58    2016-04-04 04:05:58
35720    15557    463    2016-04-14 02:37:33    2016-04-14 02:37:33
35721    13511    628    2016-03-26 21:28:40    2016-03-26 21:28:40
35722    17692    639    2016-02-19 17:39:27    2016-02-19 17:39:27
35723    10611    807    2016-02-13 04:41:09    2016-02-13 04:41:09
35724    11225    933    2016-02-25 19:34:45    2016-02-25 19:34:45
35725    17293    868    2016-03-13 19:18:11    2016-03-13 19:18:11
35726    17483    610    2016-02-28 22:36:29    2016-02-28 22:36:29
35727    17786    829    2016-03-30 00:34:27    2016-03-30 00:34:27
35728    19464    808    2016-02-19 19:41:48    2016-02-19 19:41:48
35729    19662    824    2016-02-16 00:16:27    2016-02-16 00:16:27
35730    17090    909    2016-01-30 04:17:11    2016-01-30 04:17:11
35731    17305    522    2016-02-01 15:06:46    2016-02-01 15:06:46
35732    14218    802    2016-03-20 00:29:49    2016-03-20 00:29:49
35733    18021    603    2016-02-05 07:46:32    2016-02-05 07:46:32
35734    19234    635    2016-02-02 18:52:38    2016-02-02 18:52:38
35735    13424    598    2016-03-09 16:39:58    2016-03-09 16:39:58
35736    18469    500    2016-02-24 18:19:20    2016-02-24 18:19:20
35737    14966    890    2016-03-21 19:15:36    2016-03-21 19:15:36
35738    10538    907    2016-01-28 07:38:52    2016-01-28 07:38:52
35739    15722    729    2016-03-26 16:45:10    2016-03-26 16:45:10
35740    18932    760    2016-04-09 23:50:47    2016-04-09 23:50:47
35741    12030    802    2016-02-18 21:13:30    2016-02-18 21:13:30
35742    11955    695    2016-01-23 04:30:30    2016-01-23 04:30:30
35743    14550    921    2016-03-25 18:53:40    2016-03-25 18:53:40
35744    15270    722    2016-03-10 12:37:23    2016-03-10 12:37:23
35745    10965    748    2016-02-04 04:57:19    2016-02-04 04:57:19
35746    10777    762    2016-02-27 15:38:16    2016-02-27 15:38:16
35747    11545    849    2016-02-29 00:25:01    2016-02-29 00:25:01
35748    16630    679    2016-02-02 06:29:37    2016-02-02 06:29:37
35749    16307    591    2016-03-22 06:24:04    2016-03-22 06:24:04
35750    11097    890    2016-03-02 08:12:43    2016-03-02 08:12:43
35751    18776    661    2016-04-10 04:01:39    2016-04-10 04:01:39
35752    19989    601    2016-03-05 22:01:29    2016-03-05 22:01:29
35753    12268    658    2016-02-10 16:26:55    2016-02-10 16:26:55
35754    18299    828    2016-02-05 04:02:18    2016-02-05 04:02:18
35755    13922    484    2016-02-24 18:55:10    2016-02-24 18:55:10
35756    19667    874    2016-03-22 06:34:48    2016-03-22 06:34:48
35757    15898    641    2016-01-24 00:51:41    2016-01-24 00:51:41
35758    18210    469    2016-03-15 08:14:36    2016-03-15 08:14:36
35759    10708    707    2016-03-23 02:40:09    2016-03-23 02:40:09
35760    13795    554    2016-01-28 15:26:44    2016-01-28 15:26:44
35761    10667    930    2016-03-23 13:35:08    2016-03-23 13:35:08
35762    13630    607    2016-04-06 12:22:22    2016-04-06 12:22:22
35763    10155    899    2016-03-16 18:17:38    2016-03-16 18:17:38
35764    14073    707    2016-02-16 05:02:44    2016-02-16 05:02:44
35765    12574    956    2016-02-06 18:45:53    2016-02-06 18:45:53
35766    17903    784    2016-03-17 11:48:23    2016-03-17 11:48:23
35767    10674    551    2016-04-07 07:09:23    2016-04-07 07:09:23
35768    15846    649    2016-03-21 01:18:10    2016-03-21 01:18:10
35769    12172    846    2016-02-15 19:17:27    2016-02-15 19:17:27
35770    16600    594    2016-02-26 23:41:17    2016-02-26 23:41:17
35771    11999    663    2016-03-11 12:33:29    2016-03-11 12:33:29
35772    13965    568    2016-03-02 08:32:44    2016-03-02 08:32:44
35773    19568    947    2016-03-09 08:14:01    2016-03-09 08:14:01
35774    17800    810    2016-02-21 22:53:33    2016-02-21 22:53:33
35775    10574    858    2016-03-30 18:04:43    2016-03-30 18:04:43
35776    11753    672    2016-02-16 16:04:10    2016-02-16 16:04:10
35777    11519    578    2016-01-29 13:40:37    2016-01-29 13:40:37
35778    13153    644    2016-02-25 05:20:35    2016-02-25 05:20:35
35779    13591    511    2016-02-29 05:59:07    2016-02-29 05:59:07
35780    13736    863    2016-02-11 07:18:36    2016-02-11 07:18:36
35781    19282    673    2016-03-24 21:43:33    2016-03-24 21:43:33
35782    14373    863    2016-03-03 01:08:54    2016-03-03 01:08:54
35783    13740    726    2016-03-07 21:53:22    2016-03-07 21:53:22
35784    19517    534    2016-03-25 04:22:39    2016-03-25 04:22:39
35785    17831    771    2016-02-23 00:45:07    2016-02-23 00:45:07
35786    15719    824    2016-02-16 13:03:09    2016-02-16 13:03:09
35787    10627    825    2016-02-08 07:19:21    2016-02-08 07:19:21
35788    14829    899    2016-03-21 08:04:31    2016-03-21 08:04:31
35789    11431    719    2016-04-01 00:45:15    2016-04-01 00:45:15
35790    14219    499    2016-04-08 01:48:53    2016-04-08 01:48:53
35791    18154    791    2016-02-04 13:28:55    2016-02-04 13:28:55
35792    13048    547    2016-03-13 05:47:35    2016-03-13 05:47:35
35793    18422    603    2016-01-24 07:55:25    2016-01-24 07:55:25
35794    12161    621    2016-03-10 22:48:02    2016-03-10 22:48:02
35795    16290    611    2016-02-28 04:37:02    2016-02-28 04:37:02
35796    14656    960    2016-03-18 18:09:44    2016-03-18 18:09:44
35797    10496    796    2016-02-21 17:46:50    2016-02-21 17:46:50
35798    10217    697    2016-03-27 08:32:06    2016-03-27 08:32:06
35799    17127    701    2016-04-07 23:07:55    2016-04-07 23:07:55
35800    16426    468    2016-02-26 19:52:46    2016-02-26 19:52:46
35801    19316    755    2016-03-22 06:39:55    2016-03-22 06:39:55
35802    10157    832    2016-03-15 17:58:08    2016-03-15 17:58:08
35803    16952    844    2016-04-17 00:44:22    2016-04-17 00:44:22
35804    18645    853    2016-01-28 01:41:40    2016-01-28 01:41:40
35805    12914    814    2016-04-05 23:13:09    2016-04-05 23:13:09
35806    19941    620    2016-04-11 14:47:40    2016-04-11 14:47:40
35807    14626    601    2016-02-21 06:41:30    2016-02-21 06:41:30
35808    14013    859    2016-02-11 13:08:20    2016-02-11 13:08:20
35809    16793    827    2016-01-29 02:38:31    2016-01-29 02:38:31
35810    12316    713    2016-03-09 08:20:15    2016-03-09 08:20:15
35811    12429    839    2016-01-27 22:06:01    2016-01-27 22:06:01
35812    14040    771    2016-03-19 18:41:06    2016-03-19 18:41:06
35813    11525    631    2016-03-02 14:12:30    2016-03-02 14:12:30
35814    15664    849    2016-01-27 21:25:07    2016-01-27 21:25:07
35815    18145    930    2016-03-13 15:25:41    2016-03-13 15:25:41
35816    11270    785    2016-03-26 09:56:37    2016-03-26 09:56:37
35817    14062    923    2016-03-16 19:23:33    2016-03-16 19:23:33
35818    10343    710    2016-01-23 01:21:02    2016-01-23 01:21:02
35819    19212    694    2016-02-29 22:11:19    2016-02-29 22:11:19
35820    11309    566    2016-02-07 06:31:44    2016-02-07 06:31:44
35821    13638    565    2016-03-26 09:47:23    2016-03-26 09:47:23
35822    11074    775    2016-02-13 01:38:10    2016-02-13 01:38:10
35823    16747    928    2016-04-07 04:17:03    2016-04-07 04:17:03
35824    14887    879    2016-03-31 07:56:05    2016-03-31 07:56:05
35825    16662    786    2016-03-27 08:03:01    2016-03-27 08:03:01
35826    13355    805    2016-03-09 23:36:20    2016-03-09 23:36:20
35827    13624    901    2016-03-14 00:36:56    2016-03-14 00:36:56
35828    15434    777    2016-03-20 19:31:51    2016-03-20 19:31:51
35829    16838    607    2016-02-11 09:54:07    2016-02-11 09:54:07
35830    14355    887    2016-01-25 09:55:24    2016-01-25 09:55:24
35831    11802    739    2016-02-29 01:52:45    2016-02-29 01:52:45
35832    11599    687    2016-03-18 05:41:01    2016-03-18 05:41:01
35833    15259    684    2016-04-16 06:41:58    2016-04-16 06:41:58
35834    17920    792    2016-03-26 17:24:30    2016-03-26 17:24:30
35835    13331    840    2016-02-08 17:58:46    2016-02-08 17:58:46
35836    19407    665    2016-03-07 20:23:50    2016-03-07 20:23:50
35837    17520    592    2016-03-07 16:37:02    2016-03-07 16:37:02
35838    16843    579    2016-02-07 10:19:22    2016-02-07 10:19:22
35839    14658    660    2016-02-14 13:49:46    2016-02-14 13:49:46
35840    19765    908    2016-01-22 17:37:51    2016-01-22 17:37:51
35841    17881    739    2016-03-06 02:22:24    2016-03-06 02:22:24
35842    14369    501    2016-02-17 17:45:33    2016-02-17 17:45:33
35843    16902    872    2016-01-24 03:31:20    2016-01-24 03:31:20
35844    16438    832    2016-04-08 08:33:05    2016-04-08 08:33:05
35845    13841    726    2016-02-26 20:37:28    2016-02-26 20:37:28
35846    13400    563    2016-01-31 09:59:26    2016-01-31 09:59:26
35847    15432    951    2016-03-02 23:38:44    2016-03-02 23:38:44
35848    12891    898    2016-01-27 04:41:55    2016-01-27 04:41:55
35849    10528    568    2016-02-05 23:05:33    2016-02-05 23:05:33
35850    16530    604    2016-02-04 07:07:55    2016-02-04 07:07:55
35851    11287    730    2016-01-27 18:14:39    2016-01-27 18:14:39
35852    16561    792    2016-02-11 14:47:15    2016-02-11 14:47:15
35853    16364    942    2016-02-13 07:34:53    2016-02-13 07:34:53
35854    17090    938    2016-03-21 07:08:24    2016-03-21 07:08:24
35855    14303    494    2016-02-09 16:10:42    2016-02-09 16:10:42
35856    10239    951    2016-03-09 19:03:52    2016-03-09 19:03:52
35857    10909    947    2016-03-20 23:47:48    2016-03-20 23:47:48
35858    11714    533    2016-02-13 16:32:23    2016-02-13 16:32:23
35859    13197    859    2016-03-22 17:06:56    2016-03-22 17:06:56
35860    17923    745    2016-04-02 06:15:53    2016-04-02 06:15:53
35861    19155    503    2016-02-10 13:11:57    2016-02-10 13:11:57
35862    10895    848    2016-02-13 17:42:57    2016-02-13 17:42:57
35863    13319    708    2016-03-03 22:08:34    2016-03-03 22:08:34
35864    13174    882    2016-03-23 22:01:39    2016-03-23 22:01:39
35865    13040    547    2016-04-07 15:15:56    2016-04-07 15:15:56
35866    19712    815    2016-04-09 02:34:29    2016-04-09 02:34:29
35867    17873    532    2016-03-19 09:17:42    2016-03-19 09:17:42
35868    13325    640    2016-04-09 22:09:48    2016-04-09 22:09:48
35869    14494    540    2016-01-22 07:43:57    2016-01-22 07:43:57
35870    13832    693    2016-02-20 10:22:48    2016-02-20 10:22:48
35871    16756    892    2016-01-27 13:14:31    2016-01-27 13:14:31
35872    13028    908    2016-02-22 07:03:42    2016-02-22 07:03:42
35873    13535    930    2016-03-21 17:18:49    2016-03-21 17:18:49
35874    13599    502    2016-02-19 21:55:39    2016-02-19 21:55:39
35875    19971    804    2016-03-04 12:18:34    2016-03-04 12:18:34
35876    16589    645    2016-04-18 05:41:37    2016-04-18 05:41:37
35877    15913    868    2016-03-17 20:42:40    2016-03-17 20:42:40
35878    15383    692    2016-04-12 09:31:38    2016-04-12 09:31:38
35879    15739    744    2016-02-27 20:28:31    2016-02-27 20:28:31
35880    13127    546    2016-03-01 07:09:38    2016-03-01 07:09:38
35881    13308    470    2016-03-31 20:22:11    2016-03-31 20:22:11
35882    10489    605    2016-02-03 05:05:20    2016-02-03 05:05:20
35883    14731    586    2016-03-26 08:24:02    2016-03-26 08:24:02
35884    12725    904    2016-03-22 09:47:39    2016-03-22 09:47:39
35885    12753    482    2016-03-01 21:32:32    2016-03-01 21:32:32
35886    15120    534    2016-04-16 05:44:18    2016-04-16 05:44:18
35887    16700    553    2016-04-03 11:45:52    2016-04-03 11:45:52
35888    13400    682    2016-03-12 11:34:28    2016-03-12 11:34:28
35889    18644    605    2016-04-03 20:01:56    2016-04-03 20:01:56
35890    19034    583    2016-03-31 15:36:42    2016-03-31 15:36:42
35891    17304    631    2016-04-10 05:19:15    2016-04-10 05:19:15
35892    14796    833    2016-04-18 05:17:34    2016-04-18 05:17:34
35893    16324    622    2016-04-12 10:45:01    2016-04-12 10:45:01
35894    19072    634    2016-03-05 23:13:33    2016-03-05 23:13:33
35895    12648    817    2016-02-26 06:33:57    2016-02-26 06:33:57
35896    17223    715    2016-03-05 12:07:34    2016-03-05 12:07:34
35897    19754    565    2016-02-11 23:25:42    2016-02-11 23:25:42
35898    17017    884    2016-03-14 01:46:28    2016-03-14 01:46:28
35899    18188    600    2016-02-15 20:33:49    2016-02-15 20:33:49
35900    12955    540    2016-02-23 15:57:32    2016-02-23 15:57:32
35901    11891    555    2016-03-13 21:14:31    2016-03-13 21:14:31
35902    12320    569    2016-03-28 10:23:31    2016-03-28 10:23:31
35903    11812    569    2016-02-03 14:59:22    2016-02-03 14:59:22
35904    11704    870    2016-02-05 18:20:19    2016-02-05 18:20:19
35905    12671    875    2016-02-20 23:21:35    2016-02-20 23:21:35
35906    15594    930    2016-02-07 09:14:41    2016-02-07 09:14:41
35907    19739    733    2016-04-05 06:37:13    2016-04-05 06:37:13
35908    14336    856    2016-04-18 03:50:54    2016-04-18 03:50:54
35909    14643    682    2016-02-12 19:18:03    2016-02-12 19:18:03
35910    10549    761    2016-02-20 16:11:30    2016-02-20 16:11:30
35911    14174    599    2016-04-19 03:54:14    2016-04-19 03:54:14
35912    19105    904    2016-03-06 14:00:34    2016-03-06 14:00:34
35913    16969    764    2016-03-03 19:34:38    2016-03-03 19:34:38
35914    14358    617    2016-03-22 01:39:46    2016-03-22 01:39:46
35915    15347    950    2016-04-17 17:40:35    2016-04-17 17:40:35
35916    12369    525    2016-03-19 07:22:31    2016-03-19 07:22:31
35917    14479    633    2016-02-01 07:27:29    2016-02-01 07:27:29
35918    15292    547    2016-03-15 23:06:10    2016-03-15 23:06:10
35919    17351    730    2016-04-17 01:15:35    2016-04-17 01:15:35
35920    14437    709    2016-02-17 01:53:49    2016-02-17 01:53:49
35921    17090    768    2016-03-17 09:01:31    2016-03-17 09:01:31
35922    15714    690    2016-02-03 23:50:41    2016-02-03 23:50:41
35923    12494    633    2016-01-26 10:39:28    2016-01-26 10:39:28
35924    15596    761    2016-04-16 03:14:29    2016-04-16 03:14:29
35925    18880    755    2016-02-19 18:36:29    2016-02-19 18:36:29
35926    10797    636    2016-04-11 00:39:43    2016-04-11 00:39:43
35927    15477    751    2016-03-22 04:22:27    2016-03-22 04:22:27
35928    16102    501    2016-04-16 20:31:14    2016-04-16 20:31:14
35929    17532    604    2016-03-17 06:20:54    2016-03-17 06:20:54
35930    13050    702    2016-02-29 08:57:34    2016-02-29 08:57:34
35931    11772    660    2016-02-19 07:12:08    2016-02-19 07:12:08
35932    17857    756    2016-02-13 00:27:01    2016-02-13 00:27:01
35933    16139    523    2016-02-11 17:36:11    2016-02-11 17:36:11
35934    15171    685    2016-02-04 01:49:12    2016-02-04 01:49:12
35935    14410    607    2016-02-16 18:37:51    2016-02-16 18:37:51
35936    18396    865    2016-02-13 00:58:19    2016-02-13 00:58:19
35937    11742    823    2016-02-23 17:26:05    2016-02-23 17:26:05
35938    12881    695    2016-03-24 07:50:55    2016-03-24 07:50:55
35939    15159    670    2016-03-15 02:32:48    2016-03-15 02:32:48
35940    11895    537    2016-02-16 10:39:13    2016-02-16 10:39:13
35941    10162    765    2016-03-19 16:05:03    2016-03-19 16:05:03
35942    16873    740    2016-04-11 19:38:04    2016-04-11 19:38:04
35943    19342    665    2016-03-10 21:36:00    2016-03-10 21:36:00
35944    10973    703    2016-02-26 03:33:09    2016-02-26 03:33:09
35945    19071    827    2016-03-14 09:53:45    2016-03-14 09:53:45
35946    15576    599    2016-03-01 01:19:52    2016-03-01 01:19:52
35947    18375    821    2016-03-17 12:24:32    2016-03-17 12:24:32
35948    10089    960    2016-03-12 14:46:01    2016-03-12 14:46:01
35949    18564    701    2016-01-28 17:53:01    2016-01-28 17:53:01
35950    13181    616    2016-04-15 12:40:52    2016-04-15 12:40:52
35951    14966    743    2016-02-06 03:45:26    2016-02-06 03:45:26
35952    12552    918    2016-04-02 08:18:09    2016-04-02 08:18:09
35953    10910    920    2016-03-19 09:05:25    2016-03-19 09:05:25
35954    15832    713    2016-02-25 10:47:53    2016-02-25 10:47:53
35955    15275    677    2016-02-17 20:24:05    2016-02-17 20:24:05
35956    18848    517    2016-04-16 22:14:32    2016-04-16 22:14:32
35957    18830    627    2016-04-14 08:08:50    2016-04-14 08:08:50
35958    14317    854    2016-04-01 21:50:46    2016-04-01 21:50:46
35959    19564    866    2016-03-23 16:27:09    2016-03-23 16:27:09
35960    13766    516    2016-03-27 19:51:15    2016-03-27 19:51:15
35961    19460    463    2016-02-20 21:55:41    2016-02-20 21:55:41
35962    11240    509    2016-02-18 13:55:29    2016-02-18 13:55:29
35963    10474    463    2016-03-11 18:13:27    2016-03-11 18:13:27
35964    17644    503    2016-02-09 15:44:48    2016-02-09 15:44:48
35965    13500    641    2016-02-08 19:38:10    2016-02-08 19:38:10
35966    15198    871    2016-01-30 18:41:02    2016-01-30 18:41:02
35967    10907    468    2016-03-31 22:45:38    2016-03-31 22:45:38
35968    17007    643    2016-02-21 08:33:29    2016-02-21 08:33:29
35969    15824    886    2016-04-02 12:21:08    2016-04-02 12:21:08
35970    16496    816    2016-04-12 04:40:11    2016-04-12 04:40:11
35971    17112    509    2016-01-27 06:42:12    2016-01-27 06:42:12
35972    16727    882    2016-02-21 17:36:59    2016-02-21 17:36:59
35973    10601    506    2016-01-27 16:46:53    2016-01-27 16:46:53
35974    16899    917    2016-03-26 21:21:44    2016-03-26 21:21:44
35975    10703    825    2016-04-02 07:35:29    2016-04-02 07:35:29
35976    10020    891    2016-02-12 17:10:57    2016-02-12 17:10:57
35977    12399    936    2016-02-13 02:02:41    2016-02-13 02:02:41
35978    14413    541    2016-03-05 13:15:56    2016-03-05 13:15:56
35979    10926    510    2016-03-24 17:21:48    2016-03-24 17:21:48
35980    11777    759    2016-02-22 20:14:37    2016-02-22 20:14:37
35981    11817    796    2016-02-12 05:44:00    2016-02-12 05:44:00
35982    14586    792    2016-03-02 02:32:31    2016-03-02 02:32:31
35983    12813    892    2016-03-29 06:43:41    2016-03-29 06:43:41
35984    14675    740    2016-03-18 04:37:48    2016-03-18 04:37:48
35985    19784    711    2016-02-11 07:10:35    2016-02-11 07:10:35
35986    16266    591    2016-02-11 06:19:40    2016-02-11 06:19:40
35987    13983    791    2016-02-18 19:10:12    2016-02-18 19:10:12
35988    19573    700    2016-04-05 08:20:47    2016-04-05 08:20:47
35989    19971    636    2016-03-14 17:36:27    2016-03-14 17:36:27
35990    11350    533    2016-03-15 22:21:05    2016-03-15 22:21:05
35991    11954    583    2016-03-06 18:23:39    2016-03-06 18:23:39
35992    14653    690    2016-04-01 03:58:44    2016-04-01 03:58:44
35993    11604    498    2016-03-17 00:58:10    2016-03-17 00:58:10
35994    14339    595    2016-04-03 04:10:46    2016-04-03 04:10:46
35995    19585    619    2016-03-20 15:05:39    2016-03-20 15:05:39
35996    11400    710    2016-04-04 21:15:33    2016-04-04 21:15:33
35997    16791    952    2016-01-31 07:27:00    2016-01-31 07:27:00
35998    13844    496    2016-03-09 16:02:42    2016-03-09 16:02:42
35999    18155    563    2016-03-03 16:40:48    2016-03-03 16:40:48
36000    19428    607    2016-04-14 16:21:02    2016-04-14 16:21:02
36001    17702    857    2016-02-05 05:43:30    2016-02-05 05:43:30
36002    17326    884    2016-03-14 17:32:08    2016-03-14 17:32:08
36003    17295    933    2016-03-14 07:31:57    2016-03-14 07:31:57
36004    12687    901    2016-01-27 06:32:23    2016-01-27 06:32:23
36005    18936    781    2016-02-27 11:59:27    2016-02-27 11:59:27
36006    11614    698    2016-02-22 05:32:53    2016-02-22 05:32:53
36007    15856    611    2016-02-19 05:31:15    2016-02-19 05:31:15
36008    11199    612    2016-03-25 19:33:38    2016-03-25 19:33:38
36009    17215    894    2016-01-22 01:40:48    2016-01-22 01:40:48
36010    17125    946    2016-02-21 10:58:13    2016-02-21 10:58:13
36011    14312    554    2016-02-01 08:26:17    2016-02-01 08:26:17
36012    13117    543    2016-03-04 21:28:07    2016-03-04 21:28:07
36013    15376    659    2016-03-23 00:26:37    2016-03-23 00:26:37
36014    11972    589    2016-04-01 23:03:42    2016-04-01 23:03:42
36015    19370    680    2016-01-31 17:59:50    2016-01-31 17:59:50
36016    19434    536    2016-03-27 03:57:52    2016-03-27 03:57:52
36017    16668    801    2016-01-27 23:58:34    2016-01-27 23:58:34
36018    12508    693    2016-01-23 23:48:12    2016-01-23 23:48:12
36019    16012    701    2016-02-22 13:02:30    2016-02-22 13:02:30
36020    18880    731    2016-04-10 23:17:02    2016-04-10 23:17:02
36021    13450    672    2016-03-29 08:45:42    2016-03-29 08:45:42
36022    12729    928    2016-03-17 04:06:10    2016-03-17 04:06:10
36023    16873    886    2016-03-05 17:59:12    2016-03-05 17:59:12
36024    17938    560    2016-01-24 23:07:50    2016-01-24 23:07:50
36025    10217    750    2016-03-29 06:40:57    2016-03-29 06:40:57
36026    11069    775    2016-01-31 13:37:19    2016-01-31 13:37:19
36027    14016    589    2016-02-03 01:41:58    2016-02-03 01:41:58
36028    14982    795    2016-02-18 17:29:41    2016-02-18 17:29:41
36029    13409    648    2016-03-07 14:06:09    2016-03-07 14:06:09
36030    13919    814    2016-03-22 06:59:55    2016-03-22 06:59:55
36031    11988    882    2016-01-30 15:38:19    2016-01-30 15:38:19
36032    10877    718    2016-03-23 11:14:29    2016-03-23 11:14:29
36033    16724    532    2016-02-13 23:36:12    2016-02-13 23:36:12
36034    12936    796    2016-03-03 23:48:32    2016-03-03 23:48:32
36035    17277    712    2016-01-25 12:49:50    2016-01-25 12:49:50
36036    17427    755    2016-02-04 13:15:16    2016-02-04 13:15:16
36037    11226    643    2016-03-15 19:37:48    2016-03-15 19:37:48
36038    15926    937    2016-04-02 01:00:38    2016-04-02 01:00:38
36039    14246    755    2016-04-04 09:53:54    2016-04-04 09:53:54
36040    14275    529    2016-01-25 19:58:29    2016-01-25 19:58:29
36041    19762    893    2016-02-09 07:47:29    2016-02-09 07:47:29
36042    11948    674    2016-01-29 18:44:29    2016-01-29 18:44:29
36043    17609    782    2016-01-27 23:49:37    2016-01-27 23:49:37
36044    10537    730    2016-03-17 19:25:12    2016-03-17 19:25:12
36045    12475    533    2016-01-25 18:05:26    2016-01-25 18:05:26
36046    16949    833    2016-03-05 21:19:49    2016-03-05 21:19:49
36047    12911    574    2016-03-31 19:10:56    2016-03-31 19:10:56
36048    14026    627    2016-02-14 13:36:54    2016-02-14 13:36:54
36049    13612    676    2016-02-17 03:17:40    2016-02-17 03:17:40
36050    16874    932    2016-02-03 09:40:17    2016-02-03 09:40:17
36051    15285    827    2016-03-05 02:23:48    2016-03-05 02:23:48
36052    17228    736    2016-04-07 19:45:45    2016-04-07 19:45:45
36053    12514    680    2016-02-17 08:14:35    2016-02-17 08:14:35
36054    12224    707    2016-02-02 05:37:26    2016-02-02 05:37:26
36055    17888    566    2016-03-25 15:14:24    2016-03-25 15:14:24
36056    18951    477    2016-03-18 20:50:44    2016-03-18 20:50:44
36057    12581    622    2016-03-22 01:09:43    2016-03-22 01:09:43
36058    14531    774    2016-02-24 19:54:44    2016-02-24 19:54:44
36059    18450    942    2016-03-24 23:54:44    2016-03-24 23:54:44
36060    11802    800    2016-02-01 07:55:29    2016-02-01 07:55:29
36061    15869    685    2016-02-02 01:08:15    2016-02-02 01:08:15
36062    11850    479    2016-01-25 19:08:35    2016-01-25 19:08:35
36063    12543    480    2016-02-29 06:46:25    2016-02-29 06:46:25
36064    17305    580    2016-03-24 11:32:02    2016-03-24 11:32:02
36065    14630    882    2016-03-27 23:54:01    2016-03-27 23:54:01
36066    13944    578    2016-03-20 13:46:03    2016-03-20 13:46:03
36067    18464    955    2016-04-17 04:13:24    2016-04-17 04:13:24
36068    18900    490    2016-03-20 04:06:04    2016-03-20 04:06:04
36069    19204    470    2016-04-16 06:12:52    2016-04-16 06:12:52
36070    18926    693    2016-01-22 21:51:35    2016-01-22 21:51:35
36071    16030    469    2016-02-19 03:59:48    2016-02-19 03:59:48
36072    17834    961    2016-03-02 11:17:51    2016-03-02 11:17:51
36073    14511    839    2016-02-15 16:59:35    2016-02-15 16:59:35
36074    13201    920    2016-02-09 22:40:31    2016-02-09 22:40:31
36075    14592    833    2016-02-20 06:04:44    2016-02-20 06:04:44
36076    19871    659    2016-02-21 03:48:43    2016-02-21 03:48:43
36077    16131    617    2016-02-14 17:26:40    2016-02-14 17:26:40
36078    14129    851    2016-04-12 18:52:50    2016-04-12 18:52:50
36079    10175    831    2016-03-13 13:56:12    2016-03-13 13:56:12
36080    15840    873    2016-02-10 14:41:04    2016-02-10 14:41:04
36081    15998    717    2016-02-10 22:40:04    2016-02-10 22:40:04
36082    19908    539    2016-03-17 00:13:46    2016-03-17 00:13:46
36083    14620    677    2016-03-17 18:33:59    2016-03-17 18:33:59
36084    12305    888    2016-03-17 19:25:17    2016-03-17 19:25:17
36085    16813    463    2016-01-28 17:19:19    2016-01-28 17:19:19
36086    15054    805    2016-03-21 13:47:37    2016-03-21 13:47:37
36087    13794    569    2016-03-25 14:26:43    2016-03-25 14:26:43
36088    16670    612    2016-01-25 23:54:26    2016-01-25 23:54:26
36089    12462    589    2016-03-20 14:14:34    2016-03-20 14:14:34
36090    16015    693    2016-04-17 21:33:10    2016-04-17 21:33:10
36091    18192    707    2016-03-22 09:19:16    2016-03-22 09:19:16
36092    13923    928    2016-02-13 01:42:43    2016-02-13 01:42:43
36093    13426    905    2016-04-06 02:36:15    2016-04-06 02:36:15
36094    19093    722    2016-02-21 23:11:36    2016-02-21 23:11:36
36095    18025    848    2016-03-15 10:11:12    2016-03-15 10:11:12
36096    19049    916    2016-04-14 03:17:10    2016-04-14 03:17:10
36097    16919    578    2016-02-06 03:41:20    2016-02-06 03:41:20
36098    18284    729    2016-03-30 14:12:49    2016-03-30 14:12:49
36099    16381    558    2016-02-29 04:37:15    2016-02-29 04:37:15
36100    18617    751    2016-03-04 01:41:43    2016-03-04 01:41:43
36101    13978    875    2016-02-12 18:04:25    2016-02-12 18:04:25
36102    12386    621    2016-02-15 15:00:13    2016-02-15 15:00:13
36103    16851    781    2016-01-28 11:09:52    2016-01-28 11:09:52
36104    10904    913    2016-03-02 15:35:56    2016-03-02 15:35:56
36105    16088    662    2016-01-27 02:41:22    2016-01-27 02:41:22
36106    18930    837    2016-02-12 02:51:02    2016-02-12 02:51:02
36107    18738    830    2016-04-15 23:01:34    2016-04-15 23:01:34
36108    19167    772    2016-03-09 17:51:26    2016-03-09 17:51:26
36109    15552    539    2016-02-17 02:05:49    2016-02-17 02:05:49
36110    13230    644    2016-02-03 21:05:13    2016-02-03 21:05:13
36111    10055    909    2016-02-19 11:08:06    2016-02-19 11:08:06
36112    15558    726    2016-03-19 18:12:30    2016-03-19 18:12:30
36113    11281    640    2016-03-31 18:25:58    2016-03-31 18:25:58
36114    11524    841    2016-02-06 03:31:17    2016-02-06 03:31:17
36115    12652    475    2016-02-05 19:12:40    2016-02-05 19:12:40
36116    19387    519    2016-02-16 00:29:12    2016-02-16 00:29:12
36117    17842    550    2016-03-17 05:46:24    2016-03-17 05:46:24
36118    15509    469    2016-04-14 04:49:45    2016-04-14 04:49:45
36119    15149    510    2016-02-16 08:00:00    2016-02-16 08:00:00
36120    14513    799    2016-03-18 16:15:56    2016-03-18 16:15:56
36121    15538    826    2016-02-20 23:05:04    2016-02-20 23:05:04
36122    19813    541    2016-04-17 04:30:06    2016-04-17 04:30:06
36123    15117    907    2016-04-15 10:39:38    2016-04-15 10:39:38
36124    12198    747    2016-02-06 04:26:42    2016-02-06 04:26:42
36125    11592    918    2016-03-15 05:34:45    2016-03-15 05:34:45
36126    14436    570    2016-02-13 08:21:03    2016-02-13 08:21:03
36127    19526    916    2016-04-01 01:33:34    2016-04-01 01:33:34
36128    19778    939    2016-02-03 05:17:18    2016-02-03 05:17:18
36129    14832    867    2016-04-05 16:53:11    2016-04-05 16:53:11
36130    18601    667    2016-02-13 16:26:26    2016-02-13 16:26:26
36131    18312    848    2016-02-14 04:13:39    2016-02-14 04:13:39
36132    18930    488    2016-02-13 20:18:16    2016-02-13 20:18:16
36133    19005    944    2016-04-16 16:28:16    2016-04-16 16:28:16
36134    17279    646    2016-02-24 12:59:34    2016-02-24 12:59:34
36135    12775    742    2016-04-10 01:27:05    2016-04-10 01:27:05
36136    14866    959    2016-03-07 18:21:15    2016-03-07 18:21:15
36137    12304    765    2016-04-01 00:49:20    2016-04-01 00:49:20
36138    12763    916    2016-03-18 07:18:02    2016-03-18 07:18:02
36139    19821    618    2016-01-29 07:48:26    2016-01-29 07:48:26
36140    10421    688    2016-03-01 23:19:22    2016-03-01 23:19:22
36141    13506    687    2016-03-09 20:57:49    2016-03-09 20:57:49
36142    10874    848    2016-03-12 16:31:18    2016-03-12 16:31:18
36143    19459    773    2016-03-01 14:34:52    2016-03-01 14:34:52
36144    10189    668    2016-02-07 09:47:27    2016-02-07 09:47:27
36145    19970    752    2016-02-28 09:04:37    2016-02-28 09:04:37
36146    19439    944    2016-02-05 05:14:55    2016-02-05 05:14:55
36147    18099    502    2016-02-14 02:51:50    2016-02-14 02:51:50
36148    13498    712    2016-03-29 02:29:41    2016-03-29 02:29:41
36149    18294    479    2016-03-25 22:13:58    2016-03-25 22:13:58
36150    15239    842    2016-02-07 15:21:13    2016-02-07 15:21:13
36151    12167    479    2016-04-15 08:10:33    2016-04-15 08:10:33
36152    19178    845    2016-03-19 06:27:36    2016-03-19 06:27:36
36153    19032    568    2016-03-14 10:22:15    2016-03-14 10:22:15
36154    11661    905    2016-03-23 17:19:04    2016-03-23 17:19:04
36155    15966    624    2016-04-03 11:58:23    2016-04-03 11:58:23
36156    14218    537    2016-03-28 12:46:30    2016-03-28 12:46:30
36157    15559    604    2016-02-07 08:46:49    2016-02-07 08:46:49
36158    12255    523    2016-03-08 05:44:08    2016-03-08 05:44:08
36159    11465    532    2016-01-30 21:25:43    2016-01-30 21:25:43
36160    14835    944    2016-04-10 21:18:40    2016-04-10 21:18:40
36161    13463    519    2016-02-12 09:43:02    2016-02-12 09:43:02
36162    11816    826    2016-01-31 02:20:04    2016-01-31 02:20:04
36163    10458    493    2016-04-08 11:04:50    2016-04-08 11:04:50
36164    16254    779    2016-02-18 09:26:40    2016-02-18 09:26:40
36165    12657    634    2016-04-08 17:00:50    2016-04-08 17:00:50
36166    10638    530    2016-03-31 23:34:09    2016-03-31 23:34:09
36167    11165    727    2016-03-20 06:01:36    2016-03-20 06:01:36
36168    10169    500    2016-03-14 15:23:36    2016-03-14 15:23:36
36169    12721    613    2016-04-07 16:01:24    2016-04-07 16:01:24
36170    11550    834    2016-02-16 22:54:50    2016-02-16 22:54:50
36171    16870    698    2016-02-20 00:20:33    2016-02-20 00:20:33
36172    17248    851    2016-02-20 03:32:21    2016-02-20 03:32:21
36173    13772    631    2016-02-28 15:19:55    2016-02-28 15:19:55
36174    16180    557    2016-04-13 20:53:50    2016-04-13 20:53:50
36175    15719    565    2016-02-25 01:23:10    2016-02-25 01:23:10
36176    16113    719    2016-02-29 11:11:39    2016-02-29 11:11:39
36177    16252    646    2016-04-03 15:34:45    2016-04-03 15:34:45
36178    16985    676    2016-03-31 05:46:14    2016-03-31 05:46:14
36179    18980    636    2016-03-18 12:21:34    2016-03-18 12:21:34
36180    15393    830    2016-04-20 07:25:36    2016-04-20 07:25:36
36181    11121    672    2016-03-01 11:47:09    2016-03-01 11:47:09
36182    17429    753    2016-03-25 20:26:59    2016-03-25 20:26:59
36183    15877    853    2016-02-27 04:39:59    2016-02-27 04:39:59
36184    14693    557    2016-03-27 17:55:30    2016-03-27 17:55:30
36185    16340    744    2016-02-07 04:33:50    2016-02-07 04:33:50
36186    16008    916    2016-03-04 20:37:18    2016-03-04 20:37:18
36187    17113    803    2016-01-22 14:24:21    2016-01-22 14:24:21
36188    12396    821    2016-03-10 00:41:18    2016-03-10 00:41:18
36189    16182    825    2016-03-10 14:47:25    2016-03-10 14:47:25
36190    17149    924    2016-04-15 07:58:49    2016-04-15 07:58:49
36191    11954    715    2016-04-01 14:16:53    2016-04-01 14:16:53
36192    10002    820    2016-02-07 21:48:40    2016-02-07 21:48:40
36193    16347    635    2016-02-14 23:40:06    2016-02-14 23:40:06
36194    19577    738    2016-02-28 10:57:01    2016-02-28 10:57:01
36195    10926    876    2016-02-22 17:03:48    2016-02-22 17:03:48
36196    19651    551    2016-04-04 15:58:47    2016-04-04 15:58:47
36197    15163    850    2016-02-12 09:22:42    2016-02-12 09:22:42
36198    10675    478    2016-01-27 06:41:53    2016-01-27 06:41:53
36199    17758    815    2016-03-16 09:50:31    2016-03-16 09:50:31
36200    18604    754    2016-04-03 23:44:06    2016-04-03 23:44:06
36201    12107    946    2016-02-18 09:22:17    2016-02-18 09:22:17
36202    10865    955    2016-02-25 20:03:30    2016-02-25 20:03:30
36203    15369    835    2016-04-02 07:20:36    2016-04-02 07:20:36
36204    14798    482    2016-02-22 04:36:40    2016-02-22 04:36:40
36205    15226    556    2016-04-16 03:57:05    2016-04-16 03:57:05
36206    11399    645    2016-01-22 17:16:02    2016-01-22 17:16:02
36207    13511    534    2016-01-26 05:50:52    2016-01-26 05:50:52
36208    16676    745    2016-04-17 05:56:14    2016-04-17 05:56:14
36209    10105    812    2016-03-27 14:43:29    2016-03-27 14:43:29
36210    16023    561    2016-02-04 12:57:09    2016-02-04 12:57:09
36211    12370    480    2016-02-25 09:39:13    2016-02-25 09:39:13
36212    15661    532    2016-04-15 10:39:48    2016-04-15 10:39:48
36213    14810    567    2016-02-03 06:55:36    2016-02-03 06:55:36
36214    19576    949    2016-04-14 23:10:10    2016-04-14 23:10:10
36215    18063    936    2016-03-20 21:40:13    2016-03-20 21:40:13
36216    10512    882    2016-04-07 15:26:12    2016-04-07 15:26:12
36217    19246    931    2016-04-01 19:26:51    2016-04-01 19:26:51
36218    12570    521    2016-02-10 19:36:26    2016-02-10 19:36:26
36219    15816    871    2016-04-13 00:11:31    2016-04-13 00:11:31
36220    16265    723    2016-02-21 02:54:49    2016-02-21 02:54:49
36221    15061    673    2016-02-23 16:25:10    2016-02-23 16:25:10
36222    14932    532    2016-02-06 18:06:25    2016-02-06 18:06:25
36223    13471    609    2016-02-10 23:17:27    2016-02-10 23:17:27
36224    15048    894    2016-04-09 20:56:46    2016-04-09 20:56:46
36225    15060    571    2016-03-24 04:27:03    2016-03-24 04:27:03
36226    18580    842    2016-02-28 02:03:09    2016-02-28 02:03:09
36227    17691    637    2016-02-16 07:16:08    2016-02-16 07:16:08
36228    15574    672    2016-02-26 13:44:51    2016-02-26 13:44:51
36229    13344    481    2016-01-22 01:03:38    2016-01-22 01:03:38
36230    11728    542    2016-03-05 00:00:28    2016-03-05 00:00:28
36231    12534    691    2016-02-12 18:44:17    2016-02-12 18:44:17
36232    11887    804    2016-04-05 11:43:47    2016-04-05 11:43:47
36233    14078    650    2016-03-21 22:22:52    2016-03-21 22:22:52
36234    14412    494    2016-02-22 20:05:30    2016-02-22 20:05:30
36235    12309    922    2016-03-11 09:04:49    2016-03-11 09:04:49
36236    17130    682    2016-03-16 05:49:24    2016-03-16 05:49:24
36237    13717    748    2016-04-19 08:26:14    2016-04-19 08:26:14
36238    19078    605    2016-04-19 15:56:47    2016-04-19 15:56:47
36239    17300    767    2016-03-10 04:52:06    2016-03-10 04:52:06
36240    19616    659    2016-04-12 13:24:34    2016-04-12 13:24:34
36241    19799    638    2016-02-16 00:13:25    2016-02-16 00:13:25
36242    17842    491    2016-01-22 02:13:56    2016-01-22 02:13:56
36243    16616    873    2016-03-09 19:49:32    2016-03-09 19:49:32
36244    12860    475    2016-03-17 07:54:47    2016-03-17 07:54:47
36245    18232    605    2016-04-15 23:11:46    2016-04-15 23:11:46
36246    11512    467    2016-04-01 13:34:15    2016-04-01 13:34:15
36247    16830    503    2016-02-20 17:27:54    2016-02-20 17:27:54
36248    17701    608    2016-03-10 01:10:37    2016-03-10 01:10:37
36249    13518    612    2016-02-21 00:51:16    2016-02-21 00:51:16
36250    17594    503    2016-02-26 22:25:28    2016-02-26 22:25:28
36251    15713    508    2016-02-17 08:41:35    2016-02-17 08:41:35
36252    18047    530    2016-04-07 22:29:33    2016-04-07 22:29:33
36253    12350    721    2016-03-24 10:40:49    2016-03-24 10:40:49
36254    12109    907    2016-03-14 06:33:16    2016-03-14 06:33:16
36255    10956    552    2016-04-01 05:11:34    2016-04-01 05:11:34
36256    16843    750    2016-03-06 09:51:53    2016-03-06 09:51:53
36257    12344    625    2016-01-29 08:46:41    2016-01-29 08:46:41
36258    11792    506    2016-03-19 21:14:46    2016-03-19 21:14:46
36259    11531    740    2016-03-19 13:02:50    2016-03-19 13:02:50
36260    16451    629    2016-03-07 06:22:53    2016-03-07 06:22:53
36261    10120    906    2016-03-15 19:17:56    2016-03-15 19:17:56
36262    16761    529    2016-02-10 15:08:58    2016-02-10 15:08:58
36263    19536    489    2016-03-30 00:37:32    2016-03-30 00:37:32
36264    18571    881    2016-01-31 05:44:26    2016-01-31 05:44:26
36265    11252    544    2016-02-10 14:53:46    2016-02-10 14:53:46
36266    11270    477    2016-02-07 22:17:01    2016-02-07 22:17:01
36267    10720    500    2016-03-26 04:41:03    2016-03-26 04:41:03
36268    12926    722    2016-04-14 17:34:20    2016-04-14 17:34:20
36269    13178    728    2016-04-08 22:28:11    2016-04-08 22:28:11
36270    18090    761    2016-02-28 17:40:05    2016-02-28 17:40:05
36271    10558    794    2016-03-04 14:56:50    2016-03-04 14:56:50
36272    11011    787    2016-02-09 10:40:53    2016-02-09 10:40:53
36273    15646    487    2016-02-07 10:38:40    2016-02-07 10:38:40
36274    12358    522    2016-03-19 22:10:42    2016-03-19 22:10:42
36275    18602    744    2016-02-13 11:00:14    2016-02-13 11:00:14
36276    18760    593    2016-04-11 05:36:31    2016-04-11 05:36:31
36277    16678    527    2016-02-06 15:22:55    2016-02-06 15:22:55
36278    18905    674    2016-02-03 04:13:37    2016-02-03 04:13:37
36279    13301    495    2016-02-07 11:18:07    2016-02-07 11:18:07
36280    12938    700    2016-02-20 09:25:14    2016-02-20 09:25:14
36281    19960    830    2016-02-18 16:47:30    2016-02-18 16:47:30
36282    19240    801    2016-01-24 15:03:37    2016-01-24 15:03:37
36283    13457    959    2016-03-16 17:34:51    2016-03-16 17:34:51
36284    17869    860    2016-01-23 21:57:04    2016-01-23 21:57:04
36285    10342    863    2016-02-28 13:53:08    2016-02-28 13:53:08
36286    11809    802    2016-01-23 14:05:47    2016-01-23 14:05:47
36287    12454    752    2016-04-02 15:04:49    2016-04-02 15:04:49
36288    15688    757    2016-03-24 01:23:18    2016-03-24 01:23:18
36289    15760    498    2016-02-18 23:23:38    2016-02-18 23:23:38
36290    16690    607    2016-03-09 20:48:57    2016-03-09 20:48:57
36291    19290    587    2016-04-20 01:55:19    2016-04-20 01:55:19
36292    15279    744    2016-02-19 01:04:04    2016-02-19 01:04:04
36293    10664    812    2016-03-18 17:07:05    2016-03-18 17:07:05
36294    13953    599    2016-03-14 08:26:45    2016-03-14 08:26:45
36295    10159    946    2016-04-05 10:41:15    2016-04-05 10:41:15
36296    14090    505    2016-02-16 08:28:36    2016-02-16 08:28:36
36297    19227    621    2016-02-07 23:48:24    2016-02-07 23:48:24
36298    12563    826    2016-03-04 22:30:36    2016-03-04 22:30:36
36299    15392    712    2016-02-17 21:28:02    2016-02-17 21:28:02
36300    14011    897    2016-02-10 16:03:45    2016-02-10 16:03:45
36301    18111    804    2016-04-10 01:24:55    2016-04-10 01:24:55
36302    11735    648    2016-03-28 11:46:23    2016-03-28 11:46:23
36303    19259    841    2016-02-17 17:19:21    2016-02-17 17:19:21
36304    18692    753    2016-04-15 05:40:32    2016-04-15 05:40:32
36305    19283    776    2016-03-16 21:36:26    2016-03-16 21:36:26
36306    18891    524    2016-03-06 11:11:39    2016-03-06 11:11:39
36307    17126    558    2016-03-17 22:56:11    2016-03-17 22:56:11
36308    10994    950    2016-01-27 09:58:55    2016-01-27 09:58:55
36309    12691    944    2016-04-08 04:29:39    2016-04-08 04:29:39
36310    19097    524    2016-03-31 07:30:46    2016-03-31 07:30:46
36311    14097    819    2016-03-18 05:58:22    2016-03-18 05:58:22
36312    12623    690    2016-02-29 00:33:00    2016-02-29 00:33:00
36313    19953    814    2016-03-05 19:23:02    2016-03-05 19:23:02
36314    12915    852    2016-01-27 04:02:32    2016-01-27 04:02:32
36315    13363    923    2016-01-26 02:22:35    2016-01-26 02:22:35
36316    18676    735    2016-02-24 04:07:07    2016-02-24 04:07:07
36317    14564    625    2016-01-25 20:46:45    2016-01-25 20:46:45
36318    18905    955    2016-02-12 12:26:47    2016-02-12 12:26:47
36319    13289    481    2016-04-03 13:35:56    2016-04-03 13:35:56
36320    18841    568    2016-03-12 15:53:47    2016-03-12 15:53:47
36321    19463    515    2016-01-23 19:48:41    2016-01-23 19:48:41
36322    19388    781    2016-02-26 19:26:08    2016-02-26 19:26:08
36323    15241    789    2016-04-10 05:28:02    2016-04-10 05:28:02
36324    19511    924    2016-04-13 18:48:55    2016-04-13 18:48:55
36325    11232    476    2016-02-03 01:21:21    2016-02-03 01:21:21
36326    12631    848    2016-03-15 22:55:05    2016-03-15 22:55:05
36327    11653    625    2016-02-09 05:27:22    2016-02-09 05:27:22
36328    18862    726    2016-02-08 21:20:06    2016-02-08 21:20:06
36329    18853    699    2016-04-14 12:42:55    2016-04-14 12:42:55
36330    16727    653    2016-04-09 09:22:34    2016-04-09 09:22:34
36331    14875    668    2016-03-26 07:38:57    2016-03-26 07:38:57
36332    10127    736    2016-03-22 09:10:09    2016-03-22 09:10:09
36333    15784    595    2016-02-27 07:23:49    2016-02-27 07:23:49
36334    16610    720    2016-04-05 07:52:29    2016-04-05 07:52:29
36335    18775    735    2016-03-22 11:44:33    2016-03-22 11:44:33
36336    13549    623    2016-03-25 10:40:24    2016-03-25 10:40:24
36337    16313    545    2016-02-23 07:07:13    2016-02-23 07:07:13
36338    11792    585    2016-03-06 14:33:21    2016-03-06 14:33:21
36339    12017    883    2016-04-20 20:55:43    2016-04-20 20:55:43
36340    19561    750    2016-04-03 23:18:29    2016-04-03 23:18:29
36341    18819    574    2016-03-25 05:18:10    2016-03-25 05:18:10
36342    17750    638    2016-04-08 13:32:56    2016-04-08 13:32:56
36343    19696    586    2016-03-21 00:14:41    2016-03-21 00:14:41
36344    11397    559    2016-04-19 04:40:47    2016-04-19 04:40:47
36345    14578    736    2016-03-15 10:34:29    2016-03-15 10:34:29
36346    13442    607    2016-02-29 13:00:25    2016-02-29 13:00:25
36347    15995    911    2016-01-25 22:48:10    2016-01-25 22:48:10
36348    15615    586    2016-03-18 04:37:55    2016-03-18 04:37:55
36349    13985    523    2016-01-31 04:55:15    2016-01-31 04:55:15
36350    17695    531    2016-02-17 20:41:49    2016-02-17 20:41:49
36351    15321    825    2016-03-04 20:26:23    2016-03-04 20:26:23
36352    12504    568    2016-03-18 05:20:58    2016-03-18 05:20:58
36353    15882    785    2016-02-02 09:02:43    2016-02-02 09:02:43
36354    18663    555    2016-02-10 11:25:28    2016-02-10 11:25:28
36355    10379    838    2016-02-26 14:24:26    2016-02-26 14:24:26
36356    17523    687    2016-04-12 14:07:48    2016-04-12 14:07:48
36357    17037    596    2016-02-07 02:28:20    2016-02-07 02:28:20
36358    11320    604    2016-03-02 05:03:04    2016-03-02 05:03:04
36359    17304    676    2016-02-14 20:42:02    2016-02-14 20:42:02
36360    17118    906    2016-04-07 04:20:35    2016-04-07 04:20:35
36361    16935    854    2016-02-09 04:41:49    2016-02-09 04:41:49
36362    14421    604    2016-02-28 13:25:21    2016-02-28 13:25:21
36363    15956    588    2016-03-31 17:33:50    2016-03-31 17:33:50
36364    14249    872    2016-02-08 21:24:35    2016-02-08 21:24:35
36365    13800    795    2016-03-04 00:36:13    2016-03-04 00:36:13
36366    13032    961    2016-03-12 09:25:20    2016-03-12 09:25:20
36367    10724    503    2016-03-03 14:03:17    2016-03-03 14:03:17
36368    18384    638    2016-01-29 05:16:00    2016-01-29 05:16:00
36369    11335    836    2016-04-19 11:09:28    2016-04-19 11:09:28
36370    12699    519    2016-03-18 07:30:15    2016-03-18 07:30:15
36371    11470    945    2016-04-02 05:08:46    2016-04-02 05:08:46
36372    10039    644    2016-04-15 02:22:55    2016-04-15 02:22:55
36373    15046    654    2016-03-23 08:12:58    2016-03-23 08:12:58
36374    16950    577    2016-02-23 00:15:43    2016-02-23 00:15:43
36375    13373    704    2016-04-11 04:46:04    2016-04-11 04:46:04
36376    13769    639    2016-02-16 13:56:57    2016-02-16 13:56:57
36377    16265    939    2016-04-05 09:57:21    2016-04-05 09:57:21
36378    10150    787    2016-03-16 14:24:03    2016-03-16 14:24:03
36379    14621    829    2016-04-09 21:25:47    2016-04-09 21:25:47
36380    17534    534    2016-02-18 18:25:45    2016-02-18 18:25:45
36381    10782    941    2016-01-29 03:26:30    2016-01-29 03:26:30
36382    15031    901    2016-04-12 15:16:30    2016-04-12 15:16:30
36383    18429    597    2016-03-12 14:01:46    2016-03-12 14:01:46
36384    10304    583    2016-01-24 01:25:04    2016-01-24 01:25:04
36385    12227    521    2016-04-18 23:54:02    2016-04-18 23:54:02
36386    12201    666    2016-02-24 07:22:12    2016-02-24 07:22:12
36387    11731    581    2016-02-22 00:46:55    2016-02-22 00:46:55
36388    14428    782    2016-03-26 08:51:13    2016-03-26 08:51:13
36389    13938    759    2016-03-08 18:32:33    2016-03-08 18:32:33
36390    19460    739    2016-01-22 07:05:16    2016-01-22 07:05:16
36391    18018    496    2016-03-02 11:47:11    2016-03-02 11:47:11
36392    13311    587    2016-02-01 10:17:41    2016-02-01 10:17:41
36393    15731    732    2016-04-03 22:05:38    2016-04-03 22:05:38
36394    19237    834    2016-03-22 11:39:45    2016-03-22 11:39:45
36395    18783    813    2016-02-27 04:27:27    2016-02-27 04:27:27
36396    15673    533    2016-02-25 19:13:42    2016-02-25 19:13:42
36397    14952    737    2016-03-20 23:47:17    2016-03-20 23:47:17
36398    10084    863    2016-04-10 13:14:12    2016-04-10 13:14:12
36399    12335    676    2016-03-30 21:47:46    2016-03-30 21:47:46
36400    10746    891    2016-04-14 07:26:45    2016-04-14 07:26:45
36401    16457    733    2016-04-10 06:10:01    2016-04-10 06:10:01
36402    14061    820    2016-04-06 09:00:30    2016-04-06 09:00:30
36403    11564    636    2016-03-25 10:54:36    2016-03-25 10:54:36
36404    12557    942    2016-04-11 17:32:37    2016-04-11 17:32:37
36405    13833    523    2016-04-04 16:35:56    2016-04-04 16:35:56
36406    19413    475    2016-03-27 11:23:48    2016-03-27 11:23:48
36407    10591    645    2016-03-31 14:11:55    2016-03-31 14:11:55
36408    17771    680    2016-04-19 15:00:59    2016-04-19 15:00:59
36409    17540    848    2016-04-12 18:51:59    2016-04-12 18:51:59
36410    10088    709    2016-03-23 22:39:58    2016-03-23 22:39:58
36411    13916    479    2016-04-08 16:56:02    2016-04-08 16:56:02
36412    10184    723    2016-04-12 01:19:03    2016-04-12 01:19:03
36413    12607    776    2016-04-12 13:09:43    2016-04-12 13:09:43
36414    17847    807    2016-04-16 03:44:08    2016-04-16 03:44:08
36415    18279    650    2016-03-31 03:05:12    2016-03-31 03:05:12
36416    16751    865    2016-03-31 14:56:55    2016-03-31 14:56:55
36417    10705    600    2016-03-22 18:04:27    2016-03-22 18:04:27
36418    15122    489    2016-04-06 08:18:51    2016-04-06 08:18:51
36419    11030    598    2016-03-30 19:18:29    2016-03-30 19:18:29
36420    17526    804    2016-03-29 06:19:59    2016-03-29 06:19:59
36421    17361    497    2016-04-18 11:52:09    2016-04-18 11:52:09
36422    10404    565    2016-04-01 05:01:24    2016-04-01 05:01:24
36423    11993    919    2016-04-12 04:51:46    2016-04-12 04:51:46
36424    14870    856    2016-04-06 13:45:47    2016-04-06 13:45:47
36425    12233    956    2016-04-02 20:09:06    2016-04-02 20:09:06
36426    11207    757    2016-03-22 22:53:34    2016-03-22 22:53:34
36427    13905    592    2016-04-12 07:09:20    2016-04-12 07:09:20
36428    14306    516    2016-04-07 16:21:38    2016-04-07 16:21:38
36429    14582    782    2016-04-02 22:55:55    2016-04-02 22:55:55
36430    13833    629    2016-04-18 09:19:11    2016-04-18 09:19:11
36431    11175    854    2016-03-24 09:50:13    2016-03-24 09:50:13
36432    14742    531    2016-03-28 07:19:54    2016-03-28 07:19:54
36433    10900    876    2016-03-22 07:53:31    2016-03-22 07:53:31
36434    14476    583    2016-03-29 15:01:27    2016-03-29 15:01:27
36435    19932    666    2016-04-18 20:26:56    2016-04-18 20:26:56
36436    10930    487    2016-03-30 15:53:51    2016-03-30 15:53:51
36437    18043    881    2016-04-07 08:02:31    2016-04-07 08:02:31
36438    19923    619    2016-03-22 08:46:56    2016-03-22 08:46:56
36439    17705    517    2016-03-31 08:03:52    2016-03-31 08:03:52
36440    18486    584    2016-03-29 04:49:53    2016-03-29 04:49:53
36441    17932    692    2016-03-24 14:19:22    2016-03-24 14:19:22
36442    16568    773    2016-04-18 07:31:33    2016-04-18 07:31:33
36443    15778    543    2016-04-18 20:23:30    2016-04-18 20:23:30
36444    11678    623    2016-03-30 17:43:26    2016-03-30 17:43:26
36445    15559    684    2016-03-23 11:04:35    2016-03-23 11:04:35
36446    11577    701    2016-04-02 08:26:18    2016-04-02 08:26:18
36447    17599    502    2016-04-19 19:23:38    2016-04-19 19:23:38
36448    12656    466    2016-04-14 09:08:38    2016-04-14 09:08:38
36449    18262    527    2016-03-23 16:20:39    2016-03-23 16:20:39
36450    10816    741    2016-04-05 22:40:32    2016-04-05 22:40:32
36451    15824    940    2016-04-18 11:04:40    2016-04-18 11:04:40
36452    12067    805    2016-03-24 15:31:41    2016-03-24 15:31:41
36453    11704    603    2016-04-14 17:14:24    2016-04-14 17:14:24
36454    15077    499    2016-03-24 02:16:17    2016-03-24 02:16:17
36455    16639    665    2016-03-24 03:39:05    2016-03-24 03:39:05
36456    17444    488    2016-04-06 03:12:56    2016-04-06 03:12:56
36457    17242    677    2016-04-16 21:27:18    2016-04-16 21:27:18
36458    14725    797    2016-03-24 19:48:36    2016-03-24 19:48:36
36459    18423    774    2016-04-06 22:52:44    2016-04-06 22:52:44
36460    18829    618    2016-03-23 13:23:00    2016-03-23 13:23:00
36461    12440    809    2016-04-20 11:27:29    2016-04-20 11:27:29
36462    13240    708    2016-04-18 12:32:55    2016-04-18 12:32:55
36463    13841    786    2016-04-18 14:05:24    2016-04-18 14:05:24
36464    16339    672    2016-04-10 20:14:29    2016-04-10 20:14:29
36465    10742    669    2016-04-20 06:53:29    2016-04-20 06:53:29
36466    15555    615    2016-04-01 21:27:35    2016-04-01 21:27:35
36467    11513    798    2016-04-10 12:44:29    2016-04-10 12:44:29
36468    12865    834    2016-03-28 16:50:49    2016-03-28 16:50:49
36469    16484    600    2016-04-06 16:19:46    2016-04-06 16:19:46
36470    18400    616    2016-03-29 22:53:16    2016-03-29 22:53:16
36471    16220    573    2016-04-12 18:42:36    2016-04-12 18:42:36
36472    13037    743    2016-04-01 05:37:36    2016-04-01 05:37:36
36473    11613    910    2016-03-21 23:17:54    2016-03-21 23:17:54
36474    14545    791    2016-04-19 13:10:20    2016-04-19 13:10:20
36475    13487    933    2016-04-11 13:05:30    2016-04-11 13:05:30
36476    11436    723    2016-04-05 09:41:05    2016-04-05 09:41:05
36477    11847    569    2016-04-13 17:35:43    2016-04-13 17:35:43
36478    19239    552    2016-04-15 08:05:34    2016-04-15 08:05:34
36479    15375    804    2016-04-18 05:58:51    2016-04-18 05:58:51
36480    11984    729    2016-04-01 15:24:06    2016-04-01 15:24:06
36481    18085    843    2016-04-06 14:34:59    2016-04-06 14:34:59
36482    11129    899    2016-04-04 04:03:44    2016-04-04 04:03:44
36483    11197    559    2016-04-15 13:25:36    2016-04-15 13:25:36
36484    17095    744    2016-04-03 15:58:29    2016-04-03 15:58:29
36485    15383    654    2016-03-24 20:36:37    2016-03-24 20:36:37
36486    16532    576    2016-04-03 10:40:52    2016-04-03 10:40:52
36487    15435    833    2016-04-09 11:23:10    2016-04-09 11:23:10
36488    17525    575    2016-03-24 05:00:37    2016-03-24 05:00:37
36489    16952    841    2016-03-23 08:22:14    2016-03-23 08:22:14
36490    12738    570    2016-04-13 00:41:49    2016-04-13 00:41:49
36491    13781    466    2016-04-03 07:30:16    2016-04-03 07:30:16
36492    14358    939    2016-03-29 03:48:48    2016-03-29 03:48:48
36493    14238    654    2016-03-30 02:58:02    2016-03-30 02:58:02
36494    15431    528    2016-04-02 05:34:27    2016-04-02 05:34:27
36495    10420    475    2016-04-16 12:29:05    2016-04-16 12:29:05
36496    13216    939    2016-04-15 12:02:31    2016-04-15 12:02:31
36497    14633    558    2016-03-30 18:32:51    2016-03-30 18:32:51
36498    12425    813    2016-04-20 13:27:08    2016-04-20 13:27:08
36499    13736    663    2016-04-03 14:52:54    2016-04-03 14:52:54
36500    18324    961    2016-04-11 14:46:48    2016-04-11 14:46:48
36501    18879    601    2016-03-24 00:04:28    2016-03-24 00:04:28
36502    14620    944    2016-04-19 05:18:48    2016-04-19 05:18:48
36503    15855    815    2016-03-24 00:33:46    2016-03-24 00:33:46
36504    17069    496    2016-04-13 07:28:03    2016-04-13 07:28:03
36505    14831    902    2016-04-01 05:28:50    2016-04-01 05:28:50
36506    13515    849    2016-04-16 13:51:19    2016-04-16 13:51:19
36507    17662    563    2016-03-26 08:01:07    2016-03-26 08:01:07
36508    17691    751    2016-03-23 16:48:46    2016-03-23 16:48:46
36509    12967    822    2016-03-28 06:02:36    2016-03-28 06:02:36
36510    11052    865    2016-03-30 00:46:48    2016-03-30 00:46:48
36511    15020    777    2016-04-07 19:32:38    2016-04-07 19:32:38
36512    15109    931    2016-04-18 12:27:02    2016-04-18 12:27:02
36513    19731    678    2016-04-16 17:19:35    2016-04-16 17:19:35
36514    17530    888    2016-03-27 10:44:27    2016-03-27 10:44:27
36515    14980    498    2016-04-20 07:22:48    2016-04-20 07:22:48
36516    13663    628    2016-04-10 11:41:23    2016-04-10 11:41:23
36517    11565    638    2016-04-03 23:33:27    2016-04-03 23:33:27
36518    13891    896    2016-03-22 15:33:19    2016-03-22 15:33:19
36519    18815    655    2016-04-13 16:14:33    2016-04-13 16:14:33
36520    16105    590    2016-04-18 12:52:47    2016-04-18 12:52:47
36521    14892    711    2016-03-31 02:15:07    2016-03-31 02:15:07
36522    16471    825    2016-04-16 03:46:01    2016-04-16 03:46:01
36523    18904    720    2016-04-17 09:05:51    2016-04-17 09:05:51
36524    10304    544    2016-04-14 14:15:57    2016-04-14 14:15:57
36525    17606    651    2016-03-22 02:47:33    2016-03-22 02:47:33
36526    19377    726    2016-04-06 09:36:42    2016-04-06 09:36:42
36527    11413    731    2016-04-14 03:34:00    2016-04-14 03:34:00
36528    12054    687    2016-04-17 03:15:45    2016-04-17 03:15:45
36529    12470    818    2016-04-14 22:12:08    2016-04-14 22:12:08
36530    18357    789    2016-03-28 02:13:53    2016-03-28 02:13:53
36531    15021    514    2016-03-27 02:58:47    2016-03-27 02:58:47
36532    19105    656    2016-03-26 21:51:14    2016-03-26 21:51:14
36533    17988    598    2016-03-24 14:24:32    2016-03-24 14:24:32
36534    11444    635    2016-04-20 17:26:06    2016-04-20 17:26:06
36535    16854    843    2016-04-12 11:34:44    2016-04-12 11:34:44
36536    17146    467    2016-04-10 17:32:38    2016-04-10 17:32:38
36537    15507    511    2016-04-01 11:02:00    2016-04-01 11:02:00
36538    15701    595    2016-04-08 18:19:41    2016-04-08 18:19:41
36539    12784    661    2016-04-06 10:39:48    2016-04-06 10:39:48
36540    12740    573    2016-04-17 19:25:20    2016-04-17 19:25:20
36541    11274    791    2016-04-12 20:57:15    2016-04-12 20:57:15
36542    15669    897    2016-03-22 22:41:02    2016-03-22 22:41:02
36543    19808    749    2016-03-31 18:52:07    2016-03-31 18:52:07
36544    15982    882    2016-03-23 07:13:28    2016-03-23 07:13:28
36545    12109    794    2016-03-29 14:39:09    2016-03-29 14:39:09
36546    14099    567    2016-03-30 12:36:57    2016-03-30 12:36:57
36547    14866    837    2016-04-03 13:54:16    2016-04-03 13:54:16
36548    12031    578    2016-04-17 09:59:16    2016-04-17 09:59:16
36549    10618    509    2016-04-13 17:23:15    2016-04-13 17:23:15
36550    18636    812    2016-03-26 21:59:01    2016-03-26 21:59:01
36551    10387    540    2016-04-09 12:49:07    2016-04-09 12:49:07
36552    15550    614    2016-04-11 18:10:43    2016-04-11 18:10:43
36553    11533    949    2016-04-05 04:17:25    2016-04-05 04:17:25
36554    16762    614    2016-04-05 07:03:18    2016-04-05 07:03:18
36555    17613    860    2016-04-07 09:55:18    2016-04-07 09:55:18
36556    13709    724    2016-03-21 23:30:41    2016-03-21 23:30:41
36557    14772    826    2016-04-01 07:45:35    2016-04-01 07:45:35
36558    16438    800    2016-04-04 10:31:19    2016-04-04 10:31:19
36559    15593    834    2016-03-31 12:43:01    2016-03-31 12:43:01
36560    11976    572    2016-03-29 07:44:04    2016-03-29 07:44:04
36561    11061    926    2016-04-17 16:33:45    2016-04-17 16:33:45
36562    12043    854    2016-04-16 07:06:46    2016-04-16 07:06:46
36563    10294    668    2016-04-19 08:33:02    2016-04-19 08:33:02
36564    12745    660    2016-04-11 13:54:13    2016-04-11 13:54:13
36565    13667    496    2016-04-07 14:36:35    2016-04-07 14:36:35
36566    12249    494    2016-03-27 17:30:41    2016-03-27 17:30:41
36567    15696    562    2016-04-13 17:58:34    2016-04-13 17:58:34
36568    16221    536    2016-04-13 20:20:27    2016-04-13 20:20:27
36569    16826    523    2016-03-22 12:03:15    2016-03-22 12:03:15
36570    18511    945    2016-03-25 05:47:29    2016-03-25 05:47:29
36571    10378    770    2016-04-11 21:21:31    2016-04-11 21:21:31
36572    13167    613    2016-03-24 22:44:12    2016-03-24 22:44:12
36573    12659    480    2016-04-15 12:45:35    2016-04-15 12:45:35
36574    12613    527    2016-04-17 08:37:05    2016-04-17 08:37:05
36575    19841    724    2016-03-29 20:27:41    2016-03-29 20:27:41
36576    12228    923    2016-03-27 08:43:17    2016-03-27 08:43:17
36577    14662    745    2016-03-25 21:35:13    2016-03-25 21:35:13
36578    11083    884    2016-04-09 16:27:34    2016-04-09 16:27:34
36579    13317    667    2016-04-03 11:17:15    2016-04-03 11:17:15
36580    11515    807    2016-04-07 15:00:45    2016-04-07 15:00:45
36581    16055    799    2016-04-04 02:37:16    2016-04-04 02:37:16
36582    18272    519    2016-04-15 21:58:55    2016-04-15 21:58:55
36583    14327    717    2016-04-08 23:54:44    2016-04-08 23:54:44
36584    19505    864    2016-04-10 12:08:02    2016-04-10 12:08:02
36585    19638    471    2016-04-03 19:28:45    2016-04-03 19:28:45
36586    17165    820    2016-04-11 14:09:31    2016-04-11 14:09:31
36587    16369    762    2016-04-14 08:52:27    2016-04-14 08:52:27
36588    10861    590    2016-04-06 19:37:17    2016-04-06 19:37:17
36589    12577    944    2016-03-27 16:17:08    2016-03-27 16:17:08
36590    18709    631    2016-04-12 13:21:08    2016-04-12 13:21:08
36591    19856    759    2016-04-17 15:39:26    2016-04-17 15:39:26
36592    13194    680    2016-03-27 04:04:56    2016-03-27 04:04:56
36593    16599    609    2016-03-28 17:32:34    2016-03-28 17:32:34
36594    14482    774    2016-04-15 10:07:50    2016-04-15 10:07:50
36595    16454    761    2016-04-18 20:00:37    2016-04-18 20:00:37
36596    18805    709    2016-03-27 22:27:21    2016-03-27 22:27:21
36597    10826    796    2016-04-20 20:05:41    2016-04-20 20:05:41
36598    14787    660    2016-04-02 06:27:40    2016-04-02 06:27:40
36599    10163    489    2016-04-19 09:15:15    2016-04-19 09:15:15
36600    12331    849    2016-04-10 19:02:05    2016-04-10 19:02:05
36601    14469    927    2016-04-04 20:17:10    2016-04-04 20:17:10
36602    18685    683    2016-04-05 17:55:28    2016-04-05 17:55:28
36603    16531    933    2016-03-27 19:13:17    2016-03-27 19:13:17
36604    12825    903    2016-04-19 05:05:17    2016-04-19 05:05:17
36605    13467    474    2016-04-06 14:26:05    2016-04-06 14:26:05
36606    10012    928    2016-04-05 01:44:09    2016-04-05 01:44:09
36607    11639    502    2016-04-01 16:48:13    2016-04-01 16:48:13
36608    13000    694    2016-03-25 02:09:59    2016-03-25 02:09:59
36609    18044    719    2016-03-26 09:33:38    2016-03-26 09:33:38
36610    12387    728    2016-04-15 05:01:35    2016-04-15 05:01:35
36611    10054    858    2016-04-07 16:17:50    2016-04-07 16:17:50
36612    11641    788    2016-04-05 05:57:21    2016-04-05 05:57:21
36613    14086    743    2016-04-05 17:38:16    2016-04-05 17:38:16
36614    12470    767    2016-04-18 12:02:10    2016-04-18 12:02:10
36615    19317    887    2016-04-17 07:31:48    2016-04-17 07:31:48
36616    15902    657    2016-04-07 04:44:34    2016-04-07 04:44:34
36617    10846    786    2016-04-05 08:57:35    2016-04-05 08:57:35
36618    14895    958    2016-04-12 11:40:44    2016-04-12 11:40:44
36619    19511    465    2016-04-19 05:42:31    2016-04-19 05:42:31
36620    14844    474    2016-03-29 22:35:34    2016-03-29 22:35:34
36621    18754    875    2016-03-22 09:34:54    2016-03-22 09:34:54
36622    16144    657    2016-04-01 06:38:22    2016-04-01 06:38:22
36623    18275    906    2016-04-02 16:47:17    2016-04-02 16:47:17
36624    11684    700    2016-03-31 22:25:17    2016-03-31 22:25:17
36625    19156    762    2016-03-29 19:28:32    2016-03-29 19:28:32
36626    18191    477    2016-04-10 20:26:52    2016-04-10 20:26:52
36627    17564    833    2016-03-31 18:20:03    2016-03-31 18:20:03
36628    13748    523    2016-04-05 12:54:51    2016-04-05 12:54:51
36629    18227    950    2016-04-09 23:49:17    2016-04-09 23:49:17
36630    17382    956    2016-04-06 08:12:20    2016-04-06 08:12:20
36631    10793    551    2016-03-28 12:58:46    2016-03-28 12:58:46
36632    14070    950    2016-04-09 01:08:19    2016-04-09 01:08:19
36633    13715    759    2016-04-10 19:14:35    2016-04-10 19:14:35
36634    14801    527    2016-03-22 21:31:27    2016-03-22 21:31:27
36635    13302    581    2016-03-30 08:54:34    2016-03-30 08:54:34
36636    14801    554    2016-04-08 22:18:52    2016-04-08 22:18:52
36637    16444    497    2016-04-03 21:48:33    2016-04-03 21:48:33
36638    11745    952    2016-03-28 07:26:43    2016-03-28 07:26:43
36639    16604    523    2016-04-02 21:45:06    2016-04-02 21:45:06
36640    16332    659    2016-04-20 20:00:28    2016-04-20 20:00:28
36641    16941    711    2016-04-09 03:08:23    2016-04-09 03:08:23
36642    17781    954    2016-04-12 11:08:08    2016-04-12 11:08:08
36643    12104    575    2016-04-04 00:54:44    2016-04-04 00:54:44
36644    11241    923    2016-03-25 08:10:10    2016-03-25 08:10:10
36645    13334    509    2016-04-03 19:29:12    2016-04-03 19:29:12
36646    13490    586    2016-04-01 13:07:47    2016-04-01 13:07:47
36647    17016    725    2016-04-08 08:14:23    2016-04-08 08:14:23
36648    13563    747    2016-04-05 05:21:27    2016-04-05 05:21:27
36649    16023    903    2016-04-19 20:23:15    2016-04-19 20:23:15
36650    19908    691    2016-04-05 04:01:56    2016-04-05 04:01:56
36651    11833    739    2016-04-16 21:38:19    2016-04-16 21:38:19
36652    16792    886    2016-04-17 05:55:30    2016-04-17 05:55:30
36653    11330    767    2016-04-14 01:13:04    2016-04-14 01:13:04
36654    11771    819    2016-04-05 20:15:57    2016-04-05 20:15:57
36655    14915    882    2016-04-19 07:32:54    2016-04-19 07:32:54
36656    15145    870    2016-04-16 08:26:41    2016-04-16 08:26:41
36657    14927    637    2016-04-15 21:19:48    2016-04-15 21:19:48
36658    10841    755    2016-03-25 04:49:06    2016-03-25 04:49:06
36659    14135    810    2016-04-20 03:49:38    2016-04-20 03:49:38
36660    12559    751    2016-04-13 14:04:10    2016-04-13 14:04:10
36661    10249    890    2016-03-24 21:01:21    2016-03-24 21:01:21
36662    11569    478    2016-04-18 02:05:39    2016-04-18 02:05:39
36663    16773    814    2016-03-26 19:53:30    2016-03-26 19:53:30
36664    11947    880    2016-04-02 12:17:36    2016-04-02 12:17:36
36665    17779    695    2016-04-09 00:55:41    2016-04-09 00:55:41
36666    11153    736    2016-03-22 23:00:44    2016-03-22 23:00:44
36667    10457    483    2016-04-09 22:44:13    2016-04-09 22:44:13
36668    16623    862    2016-04-20 10:10:44    2016-04-20 10:10:44
36669    13860    710    2016-04-17 15:09:22    2016-04-17 15:09:22
36670    17019    913    2016-04-02 18:09:27    2016-04-02 18:09:27
36671    15443    604    2016-04-12 12:17:48    2016-04-12 12:17:48
36672    11564    699    2016-04-03 07:49:22    2016-04-03 07:49:22
36673    17260    633    2016-03-31 08:56:35    2016-03-31 08:56:35
36674    16262    560    2016-03-31 10:24:13    2016-03-31 10:24:13
36675    17770    824    2016-03-27 04:23:42    2016-03-27 04:23:42
36676    14992    790    2016-03-29 12:48:47    2016-03-29 12:48:47
36677    16646    630    2016-04-17 06:19:16    2016-04-17 06:19:16
36678    10387    881    2016-04-03 08:09:40    2016-04-03 08:09:40
36679    10710    763    2016-04-17 09:50:23    2016-04-17 09:50:23
36680    19822    749    2016-04-06 19:12:47    2016-04-06 19:12:47
36681    18191    846    2016-04-10 01:47:28    2016-04-10 01:47:28
36682    14732    464    2016-04-17 21:14:23    2016-04-17 21:14:23
36683    16812    810    2016-04-09 15:11:32    2016-04-09 15:11:32
36684    15181    633    2016-04-12 23:17:04    2016-04-12 23:17:04
36685    10288    521    2016-04-16 15:24:55    2016-04-16 15:24:55
36686    13302    464    2016-04-20 11:35:19    2016-04-20 11:35:19
36687    15882    499    2016-04-05 11:37:46    2016-04-05 11:37:46
36688    19744    634    2016-04-05 23:23:04    2016-04-05 23:23:04
36689    14523    637    2016-04-11 11:47:11    2016-04-11 11:47:11
36690    10632    895    2016-04-01 15:04:17    2016-04-01 15:04:17
36691    16137    861    2016-04-13 20:24:17    2016-04-13 20:24:17
36692    18357    874    2016-04-03 10:31:51    2016-04-03 10:31:51
36693    11740    688    2016-04-16 16:08:22    2016-04-16 16:08:22
36694    10242    649    2016-04-03 23:55:14    2016-04-03 23:55:14
36695    17455    668    2016-04-08 00:05:40    2016-04-08 00:05:40
36696    17384    613    2016-04-02 20:57:40    2016-04-02 20:57:40
36697    16253    714    2016-04-19 02:04:03    2016-04-19 02:04:03
36698    16052    594    2016-04-09 07:00:46    2016-04-09 07:00:46
36699    19840    472    2016-04-20 17:58:08    2016-04-20 17:58:08
36700    18399    705    2016-04-05 14:27:14    2016-04-05 14:27:14
36701    14701    895    2016-04-16 00:39:08    2016-04-16 00:39:08
36702    14636    774    2016-03-27 07:16:00    2016-03-27 07:16:00
36703    13914    891    2016-04-14 20:13:40    2016-04-14 20:13:40
36704    10576    491    2016-04-13 18:01:56    2016-04-13 18:01:56
36705    18302    544    2016-04-06 21:52:40    2016-04-06 21:52:40
36706    13308    935    2016-03-24 19:11:22    2016-03-24 19:11:22
36707    17332    650    2016-04-09 02:37:00    2016-04-09 02:37:00
36708    14954    951    2016-03-29 09:04:16    2016-03-29 09:04:16
36709    19501    532    2016-03-29 05:41:32    2016-03-29 05:41:32
36710    15294    551    2016-04-03 06:09:04    2016-04-03 06:09:04
36711    11275    777    2016-03-30 23:40:12    2016-03-30 23:40:12
36712    16245    625    2016-04-13 07:00:29    2016-04-13 07:00:29
36713    11601    466    2016-04-05 15:38:31    2016-04-05 15:38:31
36714    14241    505    2016-03-23 02:27:00    2016-03-23 02:27:00
36715    11490    761    2016-03-30 03:37:10    2016-03-30 03:37:10
36716    10585    723    2016-03-22 07:05:24    2016-03-22 07:05:24
36717    17834    777    2016-03-29 05:47:31    2016-03-29 05:47:31
36718    12240    630    2016-04-13 19:24:35    2016-04-13 19:24:35
36719    13560    898    2016-03-29 03:51:59    2016-03-29 03:51:59
36720    11092    915    2016-04-01 02:39:26    2016-04-01 02:39:26
36721    16956    920    2016-04-07 07:57:23    2016-04-07 07:57:23
36722    15719    883    2016-04-13 04:25:20    2016-04-13 04:25:20
36723    19741    672    2016-04-20 17:12:05    2016-04-20 17:12:05
36724    18430    517    2016-03-31 11:25:41    2016-03-31 11:25:41
36725    11145    767    2016-04-11 07:38:05    2016-04-11 07:38:05
36726    12719    640    2016-03-24 17:30:50    2016-03-24 17:30:50
36727    13426    854    2016-04-09 14:05:04    2016-04-09 14:05:04
36728    15231    704    2016-04-20 08:42:31    2016-04-20 08:42:31
36729    14974    751    2016-04-10 14:17:22    2016-04-10 14:17:22
36730    11340    916    2016-04-14 22:09:35    2016-04-14 22:09:35
36731    18872    493    2016-04-05 03:46:00    2016-04-05 03:46:00
36732    13471    585    2016-03-23 02:49:58    2016-03-23 02:49:58
36733    15487    956    2016-04-18 09:46:09    2016-04-18 09:46:09
36734    18787    922    2016-03-30 08:44:50    2016-03-30 08:44:50
36735    14159    818    2016-04-07 00:05:58    2016-04-07 00:05:58
36736    12710    582    2016-04-15 04:44:18    2016-04-15 04:44:18
36737    18692    844    2016-03-29 18:24:31    2016-03-29 18:24:31
36738    16096    541    2016-03-23 21:26:44    2016-03-23 21:26:44
36739    14905    901    2016-04-05 06:11:51    2016-04-05 06:11:51
36740    16381    710    2016-04-10 23:32:38    2016-04-10 23:32:38
36741    14475    578    2016-03-29 17:32:46    2016-03-29 17:32:46
36742    11614    573    2016-04-11 14:48:44    2016-04-11 14:48:44
36743    14935    584    2016-04-08 03:28:54    2016-04-08 03:28:54
36744    14911    656    2016-03-23 06:32:58    2016-03-23 06:32:58
36745    13761    811    2016-04-05 06:07:13    2016-04-05 06:07:13
36746    12313    877    2016-04-12 21:06:58    2016-04-12 21:06:58
36747    12097    554    2016-03-31 01:45:46    2016-03-31 01:45:46
36748    11417    940    2016-03-25 09:11:56    2016-03-25 09:11:56
36749    13432    544    2016-03-29 15:02:09    2016-03-29 15:02:09
36750    14964    944    2016-03-22 18:27:30    2016-03-22 18:27:30
36751    11695    746    2016-03-26 23:27:34    2016-03-26 23:27:34
36752    14253    764    2016-04-19 21:57:30    2016-04-19 21:57:30
36753    11911    497    2016-03-26 05:30:43    2016-03-26 05:30:43
36754    11031    841    2016-04-18 22:28:41    2016-04-18 22:28:41
36755    19307    748    2016-03-23 21:24:53    2016-03-23 21:24:53
36756    11039    948    2016-04-13 01:27:47    2016-04-13 01:27:47
36757    19775    641    2016-03-23 22:34:05    2016-03-23 22:34:05
36758    14943    824    2016-04-15 09:10:06    2016-04-15 09:10:06
36759    13559    565    2016-03-26 01:45:35    2016-03-26 01:45:35
36760    17621    708    2016-03-30 11:09:17    2016-03-30 11:09:17
36761    14101    757    2016-04-11 04:33:56    2016-04-11 04:33:56
36762    12177    544    2016-04-16 13:37:04    2016-04-16 13:37:04
36763    15544    559    2016-04-05 22:51:09    2016-04-05 22:51:09
36764    15216    729    2016-04-05 12:31:41    2016-04-05 12:31:41
36765    17583    637    2016-04-18 14:57:37    2016-04-18 14:57:37
36766    13645    955    2016-03-22 00:10:10    2016-03-22 00:10:10
36767    13605    957    2016-04-16 19:38:13    2016-04-16 19:38:13
36768    10870    536    2016-04-10 12:47:55    2016-04-10 12:47:55
36769    10521    546    2016-04-01 14:38:09    2016-04-01 14:38:09
36770    16032    491    2016-04-02 01:00:07    2016-04-02 01:00:07
36771    13061    537    2016-04-11 15:57:05    2016-04-11 15:57:05
36772    15215    874    2016-04-14 21:31:39    2016-04-14 21:31:39
36773    11175    889    2016-04-10 23:09:51    2016-04-10 23:09:51
36774    18161    705    2016-04-03 05:26:09    2016-04-03 05:26:09
36775    12070    601    2016-04-08 03:42:54    2016-04-08 03:42:54
36776    10605    586    2016-04-16 17:11:54    2016-04-16 17:11:54
36777    11230    537    2016-04-12 22:08:39    2016-04-12 22:08:39
36778    10358    730    2016-04-09 22:22:54    2016-04-09 22:22:54
36779    11484    500    2016-03-24 06:43:54    2016-03-24 06:43:54
36780    11460    607    2016-04-04 05:57:30    2016-04-04 05:57:30
36781    15709    781    2016-03-30 17:39:29    2016-03-30 17:39:29
36782    18438    700    2016-03-23 11:16:02    2016-03-23 11:16:02
36783    18318    511    2016-04-15 21:00:28    2016-04-15 21:00:28
36784    19091    530    2016-04-17 06:39:27    2016-04-17 06:39:27
36785    17660    701    2016-04-20 12:28:15    2016-04-20 12:28:15
36786    10963    640    2016-04-03 08:51:52    2016-04-03 08:51:52
36787    14337    949    2016-03-22 09:04:52    2016-03-22 09:04:52
36788    15834    696    2016-04-11 17:35:02    2016-04-11 17:35:02
36789    15142    694    2016-04-03 08:13:43    2016-04-03 08:13:43
36790    17043    536    2016-04-11 02:08:28    2016-04-11 02:08:28
36791    14454    737    2016-04-17 17:33:42    2016-04-17 17:33:42
36792    15122    568    2016-04-03 21:30:42    2016-04-03 21:30:42
36793    12349    902    2016-04-12 18:32:33    2016-04-12 18:32:33
36794    12906    464    2016-03-28 22:35:49    2016-03-28 22:35:49
36795    13054    663    2016-04-12 04:14:17    2016-04-12 04:14:17
36796    17789    960    2016-04-01 15:16:20    2016-04-01 15:16:20
36797    12522    753    2016-04-12 01:23:17    2016-04-12 01:23:17
36798    12211    824    2016-04-02 01:03:14    2016-04-02 01:03:14
36799    18087    537    2016-04-15 08:47:25    2016-04-15 08:47:25
36800    15120    878    2016-03-29 17:04:55    2016-03-29 17:04:55
36801    16182    865    2016-04-17 03:41:21    2016-04-17 03:41:21
36802    14081    717    2016-04-14 22:38:08    2016-04-14 22:38:08
36803    14492    586    2016-03-30 18:08:25    2016-03-30 18:08:25
36804    12589    495    2016-03-25 16:29:29    2016-03-25 16:29:29
36805    15990    934    2016-04-04 08:03:42    2016-04-04 08:03:42
36806    16292    551    2016-04-18 10:52:48    2016-04-18 10:52:48
36807    13401    837    2016-03-24 18:37:01    2016-03-24 18:37:01
36808    19455    529    2016-03-25 04:44:49    2016-03-25 04:44:49
36809    13711    707    2016-04-11 13:30:43    2016-04-11 13:30:43
36810    17261    676    2016-04-03 22:20:37    2016-04-03 22:20:37
36811    14291    924    2016-04-11 08:21:17    2016-04-11 08:21:17
36812    12220    846    2016-04-17 19:24:26    2016-04-17 19:24:26
36813    10837    466    2016-04-15 00:55:31    2016-04-15 00:55:31
36814    10316    526    2016-04-05 09:01:11    2016-04-05 09:01:11
36815    10059    803    2016-04-02 06:37:06    2016-04-02 06:37:06
36816    14210    908    2016-04-04 00:24:36    2016-04-04 00:24:36
36817    19894    469    2016-04-07 22:45:56    2016-04-07 22:45:56
36818    15295    736    2016-04-05 04:37:46    2016-04-05 04:37:46
36819    11831    775    2016-04-19 23:13:39    2016-04-19 23:13:39
36820    19506    878    2016-04-07 13:59:46    2016-04-07 13:59:46
36821    19985    890    2016-04-03 00:43:17    2016-04-03 00:43:17
36822    16012    623    2016-04-11 16:33:24    2016-04-11 16:33:24
36823    19973    727    2016-04-04 16:27:31    2016-04-04 16:27:31
36824    11948    486    2016-04-10 17:05:39    2016-04-10 17:05:39
36825    16790    957    2016-04-06 05:07:54    2016-04-06 05:07:54
36826    13595    818    2016-03-27 18:50:20    2016-03-27 18:50:20
36827    14049    841    2016-04-10 13:41:29    2016-04-10 13:41:29
36828    12492    623    2016-04-15 19:01:17    2016-04-15 19:01:17
36829    13901    833    2016-04-12 14:27:44    2016-04-12 14:27:44
36830    13328    773    2016-04-05 17:56:55    2016-04-05 17:56:55
36831    14112    617    2016-03-29 13:50:25    2016-03-29 13:50:25
36832    16036    659    2016-04-17 14:05:07    2016-04-17 14:05:07
36833    12494    795    2016-03-24 14:29:21    2016-03-24 14:29:21
36834    12894    686    2016-03-25 17:09:05    2016-03-25 17:09:05
36835    10849    931    2016-04-04 09:58:37    2016-04-04 09:58:37
36836    10818    902    2016-04-15 22:25:44    2016-04-15 22:25:44
36837    14940    527    2016-04-17 07:53:58    2016-04-17 07:53:58
36838    17973    813    2016-04-04 10:58:36    2016-04-04 10:58:36
36839    17689    737    2016-04-20 07:59:47    2016-04-20 07:59:47
36840    13295    744    2016-03-27 17:27:10    2016-03-27 17:27:10
36841    17069    780    2016-03-30 02:31:44    2016-03-30 02:31:44
36842    19942    480    2016-04-10 09:16:27    2016-04-10 09:16:27
36843    10321    855    2016-04-04 04:24:54    2016-04-04 04:24:54
36844    16589    661    2016-03-28 13:33:25    2016-03-28 13:33:25
36845    17279    928    2016-03-24 16:26:03    2016-03-24 16:26:03
36846    18656    550    2016-03-26 09:31:59    2016-03-26 09:31:59
36847    12995    591    2016-04-11 04:08:31    2016-04-11 04:08:31
36848    12848    806    2016-03-25 09:37:44    2016-03-25 09:37:44
36849    10665    794    2016-03-26 17:49:44    2016-03-26 17:49:44
36850    15999    485    2016-04-06 17:04:21    2016-04-06 17:04:21
36851    19439    842    2016-04-15 00:20:34    2016-04-15 00:20:34
36852    14641    664    2016-03-25 06:59:44    2016-03-25 06:59:44
36853    15223    568    2016-04-01 07:26:48    2016-04-01 07:26:48
36854    14474    858    2016-04-10 23:21:40    2016-04-10 23:21:40
36855    20000    466    2016-03-31 18:32:28    2016-03-31 18:32:28
36856    17116    953    2016-03-22 02:49:55    2016-03-22 02:49:55
36857    12508    609    2016-04-05 13:32:53    2016-04-05 13:32:53
36858    18789    827    2016-03-22 12:27:07    2016-03-22 12:27:07
36859    14200    504    2016-03-31 21:38:17    2016-03-31 21:38:17
36860    17116    477    2016-04-13 11:38:28    2016-04-13 11:38:28
36861    15462    640    2016-03-30 16:19:45    2016-03-30 16:19:45
36862    12410    702    2016-04-08 22:40:34    2016-04-08 22:40:34
36863    18660    542    2016-04-16 07:20:39    2016-04-16 07:20:39
36864    14786    679    2016-04-20 04:35:56    2016-04-20 04:35:56
36865    14213    523    2016-03-24 13:30:40    2016-03-24 13:30:40
36866    11540    640    2016-04-18 22:21:36    2016-04-18 22:21:36
36867    12228    892    2016-04-18 17:20:01    2016-04-18 17:20:01
36868    15653    857    2016-04-02 03:21:05    2016-04-02 03:21:05
36869    12499    927    2016-04-03 13:10:26    2016-04-03 13:10:26
36870    15098    757    2016-04-16 10:40:43    2016-04-16 10:40:43
36871    16747    490    2016-03-27 23:27:43    2016-03-27 23:27:43
36872    15043    490    2016-04-15 01:07:21    2016-04-15 01:07:21
36873    11121    530    2016-04-03 02:56:18    2016-04-03 02:56:18
36874    17575    606    2016-04-02 21:51:26    2016-04-02 21:51:26
36875    11966    661    2016-03-30 18:50:01    2016-03-30 18:50:01
36876    14434    885    2016-03-28 14:59:11    2016-03-28 14:59:11
36877    15607    779    2016-03-31 17:08:32    2016-03-31 17:08:32
36878    19970    781    2016-04-16 09:56:20    2016-04-16 09:56:20
36879    11327    896    2016-04-16 23:14:39    2016-04-16 23:14:39
36880    13320    540    2016-03-31 14:56:11    2016-03-31 14:56:11
36881    17936    874    2016-04-08 06:08:24    2016-04-08 06:08:24
36882    19588    649    2016-04-14 12:12:14    2016-04-14 12:12:14
36883    16461    856    2016-04-06 02:13:49    2016-04-06 02:13:49
36884    15869    675    2016-03-30 16:38:54    2016-03-30 16:38:54
36885    14620    651    2016-04-12 14:38:03    2016-04-12 14:38:03
36886    12934    576    2016-04-16 12:06:38    2016-04-16 12:06:38
36887    11221    905    2016-04-17 11:36:51    2016-04-17 11:36:51
36888    17900    617    2016-04-04 10:00:00    2016-04-04 10:00:00
36889    18008    752    2016-03-30 08:12:19    2016-03-30 08:12:19
36890    19589    485    2016-04-15 00:15:29    2016-04-15 00:15:29
36891    15854    678    2016-04-14 12:06:02    2016-04-14 12:06:02
36892    18395    488    2016-03-26 13:30:40    2016-03-26 13:30:40
36893    12760    808    2016-04-17 08:55:32    2016-04-17 08:55:32
36894    11053    755    2016-04-09 06:00:34    2016-04-09 06:00:34
36895    14460    683    2016-04-05 04:06:53    2016-04-05 04:06:53
36896    17367    872    2016-03-24 22:29:30    2016-03-24 22:29:30
36897    12630    895    2016-04-01 21:16:14    2016-04-01 21:16:14
36898    15798    607    2016-04-08 08:48:56    2016-04-08 08:48:56
36899    13490    649    2016-04-08 16:25:19    2016-04-08 16:25:19
36900    10564    721    2016-04-17 04:57:02    2016-04-17 04:57:02
36901    19838    519    2016-04-18 03:50:40    2016-04-18 03:50:40
36902    11894    883    2016-04-16 12:48:46    2016-04-16 12:48:46
36903    13131    788    2016-04-18 09:38:12    2016-04-18 09:38:12
36904    18104    922    2016-04-12 16:47:53    2016-04-12 16:47:53
36905    14358    908    2016-04-18 04:13:26    2016-04-18 04:13:26
36906    13435    940    2016-03-24 05:19:27    2016-03-24 05:19:27
36907    19812    890    2016-04-15 00:56:10    2016-04-15 00:56:10
36908    11109    599    2016-04-16 01:06:30    2016-04-16 01:06:30
36909    13144    465    2016-03-28 10:17:34    2016-03-28 10:17:34
36910    15577    866    2016-04-06 04:09:17    2016-04-06 04:09:17
36911    19682    859    2016-04-12 14:29:52    2016-04-12 14:29:52
36912    18866    559    2016-04-06 00:59:40    2016-04-06 00:59:40
36913    19602    821    2016-04-10 10:09:22    2016-04-10 10:09:22
36914    12978    706    2016-03-29 09:06:55    2016-03-29 09:06:55
36915    14831    675    2016-04-02 00:30:41    2016-04-02 00:30:41
36916    10920    545    2016-03-31 06:07:18    2016-03-31 06:07:18
36917    16546    733    2016-04-07 11:35:29    2016-04-07 11:35:29
36918    11356    513    2016-03-31 07:47:33    2016-03-31 07:47:33
36919    11975    568    2016-03-28 04:17:05    2016-03-28 04:17:05
36920    19835    794    2016-04-03 07:19:40    2016-04-03 07:19:40
36921    15287    610    2016-03-29 00:48:10    2016-03-29 00:48:10
36922    15461    487    2016-04-16 02:30:46    2016-04-16 02:30:46
36923    17792    954    2016-04-15 03:58:10    2016-04-15 03:58:10
36924    16653    578    2016-04-18 00:43:38    2016-04-18 00:43:38
36925    10846    835    2016-03-23 07:43:57    2016-03-23 07:43:57
36926    17050    830    2016-04-07 00:27:15    2016-04-07 00:27:15
36927    12873    891    2016-04-18 01:54:13    2016-04-18 01:54:13
36928    13690    947    2016-04-11 18:03:56    2016-04-11 18:03:56
36929    12431    508    2016-04-04 07:35:16    2016-04-04 07:35:16
36930    14350    551    2016-03-25 13:32:23    2016-03-25 13:32:23
36931    13557    718    2016-03-30 12:33:12    2016-03-30 12:33:12
36932    17751    792    2016-04-09 08:00:16    2016-04-09 08:00:16
36933    16744    513    2016-04-04 14:11:35    2016-04-04 14:11:35
36934    14032    478    2016-04-19 11:37:50    2016-04-19 11:37:50
36935    11093    691    2016-04-07 11:17:30    2016-04-07 11:17:30
36936    11819    703    2016-03-24 06:53:49    2016-03-24 06:53:49
36937    11350    504    2016-04-03 02:04:09    2016-04-03 02:04:09
36938    10721    631    2016-04-04 20:38:14    2016-04-04 20:38:14
36939    14183    760    2016-03-23 22:53:59    2016-03-23 22:53:59
36940    11304    508    2016-04-18 21:07:33    2016-04-18 21:07:33
36941    15385    517    2016-04-13 11:49:06    2016-04-13 11:49:06
36942    12850    565    2016-04-07 09:50:42    2016-04-07 09:50:42
36943    13745    669    2016-04-19 10:20:45    2016-04-19 10:20:45
36944    17994    735    2016-04-01 10:54:40    2016-04-01 10:54:40
36945    13276    752    2016-03-30 15:16:22    2016-03-30 15:16:22
36946    19212    757    2016-03-28 23:42:24    2016-03-28 23:42:24
36947    15575    691    2016-04-19 15:48:16    2016-04-19 15:48:16
36948    13344    671    2016-04-16 12:17:18    2016-04-16 12:17:18
36949    17027    644    2016-04-14 20:35:50    2016-04-14 20:35:50
36950    15129    918    2016-04-18 18:57:27    2016-04-18 18:57:27
36951    11207    536    2016-03-27 08:33:16    2016-03-27 08:33:16
36952    15181    874    2016-04-13 04:11:50    2016-04-13 04:11:50
36953    10746    544    2016-03-22 11:05:54    2016-03-22 11:05:54
36954    13038    579    2016-03-25 03:33:44    2016-03-25 03:33:44
36955    15979    726    2016-04-10 02:25:56    2016-04-10 02:25:56
36956    18611    807    2016-03-21 23:29:02    2016-03-21 23:29:02
36957    18864    891    2016-04-11 03:49:08    2016-04-11 03:49:08
36958    18713    860    2016-04-09 21:01:01    2016-04-09 21:01:01
36959    18374    685    2016-04-16 11:19:30    2016-04-16 11:19:30
36960    18838    647    2016-03-29 23:47:55    2016-03-29 23:47:55
36961    16424    646    2016-03-24 07:19:05    2016-03-24 07:19:05
36962    14765    733    2016-03-22 00:21:26    2016-03-22 00:21:26
36963    12756    900    2016-04-09 07:40:51    2016-04-09 07:40:51
36964    15926    770    2016-04-11 15:05:35    2016-04-11 15:05:35
36965    17837    624    2016-04-13 23:26:04    2016-04-13 23:26:04
36966    16737    496    2016-04-12 11:39:56    2016-04-12 11:39:56
36967    12610    829    2016-03-31 02:51:39    2016-03-31 02:51:39
36968    19778    778    2016-04-01 08:32:18    2016-04-01 08:32:18
36969    13357    519    2016-04-19 07:11:39    2016-04-19 07:11:39
36970    13266    729    2016-03-26 18:32:48    2016-03-26 18:32:48
36971    12655    695    2016-03-29 23:20:36    2016-03-29 23:20:36
36972    17379    545    2016-04-12 00:17:47    2016-04-12 00:17:47
36973    19478    700    2016-03-26 00:09:03    2016-03-26 00:09:03
36974    18062    660    2016-03-22 07:43:08    2016-03-22 07:43:08
36975    19792    959    2016-04-03 16:19:42    2016-04-03 16:19:42
36976    16813    744    2016-04-16 03:17:05    2016-04-16 03:17:05
36977    16030    897    2016-04-04 07:22:24    2016-04-04 07:22:24
36978    17740    825    2016-03-30 18:41:05    2016-03-30 18:41:05
36979    14327    942    2016-04-16 17:10:05    2016-04-16 17:10:05
36980    18045    484    2016-03-29 17:19:42    2016-03-29 17:19:42
36981    17246    722    2016-04-12 04:01:54    2016-04-12 04:01:54
36982    10567    630    2016-04-15 08:45:20    2016-04-15 08:45:20
36983    11165    629    2016-03-26 11:10:56    2016-03-26 11:10:56
36984    19460    703    2016-04-02 21:26:23    2016-04-02 21:26:23
36985    19572    682    2016-04-14 06:55:57    2016-04-14 06:55:57
36986    15614    499    2016-03-30 13:34:03    2016-03-30 13:34:03
36987    19269    904    2016-04-16 13:18:55    2016-04-16 13:18:55
36988    19471    797    2016-04-06 20:32:23    2016-04-06 20:32:23
36989    16944    627    2016-03-28 00:11:22    2016-03-28 00:11:22
36990    11861    560    2016-04-18 22:25:26    2016-04-18 22:25:26
36991    12957    681    2016-04-03 08:49:49    2016-04-03 08:49:49
36992    14712    686    2016-04-19 23:02:35    2016-04-19 23:02:35
36993    14302    555    2016-04-08 23:05:45    2016-04-08 23:05:45
36994    17890    592    2016-03-27 03:11:04    2016-03-27 03:11:04
36995    15945    727    2016-04-13 13:37:22    2016-04-13 13:37:22
36996    11835    621    2016-04-18 06:23:44    2016-04-18 06:23:44
36997    19137    494    2016-04-09 05:51:40    2016-04-09 05:51:40
36998    18313    535    2016-04-17 06:44:09    2016-04-17 06:44:09
36999    12964    530    2016-04-01 11:46:50    2016-04-01 11:46:50
37000    19685    905    2016-04-18 21:42:15    2016-04-18 21:42:15
37001    11565    769    2016-03-24 23:03:20    2016-03-24 23:03:20
37002    14394    800    2016-03-25 20:03:34    2016-03-25 20:03:34
37003    16622    631    2016-04-01 14:28:49    2016-04-01 14:28:49
37004    10173    708    2016-04-06 03:30:33    2016-04-06 03:30:33
37005    15763    503    2016-03-30 04:15:45    2016-03-30 04:15:45
37006    10403    585    2016-04-03 01:45:38    2016-04-03 01:45:38
37007    17981    710    2016-04-13 03:53:15    2016-04-13 03:53:15
37008    16645    955    2016-04-12 09:48:50    2016-04-12 09:48:50
37009    16529    632    2016-04-16 14:27:26    2016-04-16 14:27:26
37010    16029    930    2016-04-14 02:10:40    2016-04-14 02:10:40
37011    15684    557    2016-04-19 17:34:46    2016-04-19 17:34:46
37012    15010    854    2016-03-31 16:51:20    2016-03-31 16:51:20
37013    13350    779    2016-03-30 04:04:17    2016-03-30 04:04:17
37014    13303    663    2016-04-10 22:23:35    2016-04-10 22:23:35
37015    11937    948    2016-03-28 17:07:19    2016-03-28 17:07:19
37016    11431    651    2016-04-04 12:24:03    2016-04-04 12:24:03
37017    16942    583    2016-04-02 21:01:38    2016-04-02 21:01:38
37018    10394    576    2016-04-14 09:06:42    2016-04-14 09:06:42
37019    14080    523    2016-04-01 06:42:04    2016-04-01 06:42:04
37020    19553    885    2016-04-20 06:51:21    2016-04-20 06:51:21
37021    11069    477    2016-04-14 20:01:13    2016-04-14 20:01:13
37022    13520    749    2016-03-29 03:36:46    2016-03-29 03:36:46
37023    10254    635    2016-03-30 14:46:59    2016-03-30 14:46:59
37024    13466    658    2016-04-15 08:20:45    2016-04-15 08:20:45
37025    17116    882    2016-03-22 05:20:52    2016-03-22 05:20:52
37026    13763    890    2016-04-01 08:20:41    2016-04-01 08:20:41
37027    11871    954    2016-04-19 18:45:16    2016-04-19 18:45:16
37028    10952    464    2016-04-09 07:01:03    2016-04-09 07:01:03
37029    19164    675    2016-03-24 17:39:53    2016-03-24 17:39:53
37030    18732    913    2016-04-07 10:30:33    2016-04-07 10:30:33
37031    16172    852    2016-04-09 20:14:49    2016-04-09 20:14:49
37032    15667    763    2016-04-01 08:11:56    2016-04-01 08:11:56
37033    10221    615    2016-03-31 00:44:43    2016-03-31 00:44:43
37034    10515    706    2016-04-17 10:03:39    2016-04-17 10:03:39
37035    13356    475    2016-04-06 13:16:40    2016-04-06 13:16:40
37036    11053    619    2016-04-07 07:39:41    2016-04-07 07:39:41
37037    18819    697    2016-04-13 23:02:29    2016-04-13 23:02:29
37038    11165    601    2016-04-10 14:51:48    2016-04-10 14:51:48
37039    13735    787    2016-04-17 21:05:19    2016-04-17 21:05:19
37040    12359    689    2016-04-13 10:57:22    2016-04-13 10:57:22
37041    15447    916    2016-04-20 21:50:24    2016-04-20 21:50:24
37042    15223    830    2016-04-17 16:35:02    2016-04-17 16:35:02
37043    18680    775    2016-04-18 06:26:10    2016-04-18 06:26:10
37044    19762    550    2016-04-14 00:22:42    2016-04-14 00:22:42
37045    12968    840    2016-03-31 09:31:33    2016-03-31 09:31:33
37046    11799    627    2016-03-25 01:30:11    2016-03-25 01:30:11
37047    19686    917    2016-04-08 08:52:39    2016-04-08 08:52:39
37048    19480    526    2016-04-04 02:03:23    2016-04-04 02:03:23
37049    14129    584    2016-03-31 23:39:19    2016-03-31 23:39:19
37050    16826    761    2016-03-30 21:47:27    2016-03-30 21:47:27
37051    13749    531    2016-04-06 12:31:51    2016-04-06 12:31:51
37052    12888    848    2016-04-11 11:12:10    2016-04-11 11:12:10
37053    19618    507    2016-03-29 21:47:13    2016-03-29 21:47:13
37054    18212    790    2016-03-25 00:03:45    2016-03-25 00:03:45
37055    11561    960    2016-03-28 09:59:53    2016-03-28 09:59:53
37056    14219    700    2016-03-25 01:49:20    2016-03-25 01:49:20
37057    10349    612    2016-04-13 22:06:00    2016-04-13 22:06:00
37058    11241    700    2016-04-10 03:38:23    2016-04-10 03:38:23
37059    18006    669    2016-03-27 11:20:31    2016-03-27 11:20:31
37060    10353    558    2016-04-02 00:38:42    2016-04-02 00:38:42
37061    14305    852    2016-04-04 21:17:39    2016-04-04 21:17:39
37062    12485    780    2016-04-02 20:28:51    2016-04-02 20:28:51
37063    16594    492    2016-03-29 15:55:21    2016-03-29 15:55:21
37064    12322    584    2016-04-17 17:56:57    2016-04-17 17:56:57
37065    17902    614    2016-03-27 15:27:46    2016-03-27 15:27:46
37066    19940    829    2016-03-25 15:59:25    2016-03-25 15:59:25
37067    11755    787    2016-03-24 19:12:30    2016-03-24 19:12:30
37068    15961    570    2016-04-01 11:40:10    2016-04-01 11:40:10
37069    13931    844    2016-04-10 17:39:57    2016-04-10 17:39:57
37070    15745    473    2016-04-14 00:55:20    2016-04-14 00:55:20
37071    14079    762    2016-03-29 14:37:52    2016-03-29 14:37:52
37072    11287    531    2016-04-06 08:30:31    2016-04-06 08:30:31
37073    16613    693    2016-03-27 07:30:51    2016-03-27 07:30:51
37074    12612    921    2016-04-15 02:13:26    2016-04-15 02:13:26
37075    19441    575    2016-03-30 00:16:10    2016-03-30 00:16:10
37076    16291    771    2016-04-07 23:39:52    2016-04-07 23:39:52
37077    18997    824    2016-04-19 15:36:37    2016-04-19 15:36:37
37078    19504    506    2016-04-20 18:46:20    2016-04-20 18:46:20
37079    13060    939    2016-04-15 05:51:23    2016-04-15 05:51:23
37080    13811    749    2016-04-02 23:27:04    2016-04-02 23:27:04
37081    15229    957    2016-03-23 17:10:53    2016-03-23 17:10:53
37082    18060    609    2016-04-18 19:17:47    2016-04-18 19:17:47
37083    14802    919    2016-03-31 15:20:10    2016-03-31 15:20:10
37084    19950    555    2016-04-14 08:51:46    2016-04-14 08:51:46
37085    12617    741    2016-04-14 01:57:56    2016-04-14 01:57:56
37086    18562    948    2016-04-07 03:46:09    2016-04-07 03:46:09
37087    13027    719    2016-04-04 13:33:08    2016-04-04 13:33:08
37088    14609    529    2016-04-02 11:06:46    2016-04-02 11:06:46
37089    19471    925    2016-04-13 09:46:46    2016-04-13 09:46:46
37090    17941    940    2016-04-18 05:33:49    2016-04-18 05:33:49
37091    15326    751    2016-03-30 23:20:29    2016-03-30 23:20:29
37092    18240    529    2016-04-13 08:59:22    2016-04-13 08:59:22
37093    16024    588    2016-04-06 10:23:43    2016-04-06 10:23:43
37094    19540    731    2016-04-14 02:55:21    2016-04-14 02:55:21
37095    14547    539    2016-04-11 22:47:06    2016-04-11 22:47:06
37096    14409    613    2016-03-22 11:41:50    2016-03-22 11:41:50
37097    14136    806    2016-03-25 22:33:33    2016-03-25 22:33:33
37098    17803    586    2016-04-08 05:13:18    2016-04-08 05:13:18
37099    18085    833    2016-04-02 12:58:59    2016-04-02 12:58:59
37100    19982    915    2016-03-24 18:32:51    2016-03-24 18:32:51
37101    17607    799    2016-04-08 19:34:10    2016-04-08 19:34:10
37102    11229    762    2016-04-07 12:19:29    2016-04-07 12:19:29
37103    11845    756    2016-03-31 04:50:54    2016-03-31 04:50:54
37104    13236    890    2016-04-13 00:14:10    2016-04-13 00:14:10
37105    18777    584    2016-04-06 09:53:24    2016-04-06 09:53:24
37106    16022    879    2016-03-31 00:24:46    2016-03-31 00:24:46
37107    16800    698    2016-04-19 07:27:29    2016-04-19 07:27:29
37108    12338    792    2016-04-16 23:04:23    2016-04-16 23:04:23
37109    12204    661    2016-03-30 18:46:36    2016-03-30 18:46:36
37110    12576    527    2016-03-30 21:36:54    2016-03-30 21:36:54
37111    12586    493    2016-04-13 04:40:49    2016-04-13 04:40:49
37112    14791    553    2016-04-10 03:03:24    2016-04-10 03:03:24
37113    18628    703    2016-04-17 03:43:24    2016-04-17 03:43:24
37114    18775    601    2016-04-12 07:41:11    2016-04-12 07:41:11
37115    16022    845    2016-04-08 07:36:42    2016-04-08 07:36:42
37116    19085    949    2016-03-27 06:31:44    2016-03-27 06:31:44
37117    14442    474    2016-04-08 18:23:52    2016-04-08 18:23:52
37118    14530    879    2016-04-15 11:34:52    2016-04-15 11:34:52
37119    12079    463    2016-04-01 05:49:11    2016-04-01 05:49:11
37120    17071    698    2016-04-08 00:00:05    2016-04-08 00:00:05
37121    18575    624    2016-03-22 22:44:31    2016-03-22 22:44:31
37122    11185    897    2016-04-02 00:39:08    2016-04-02 00:39:08
37123    16416    849    2016-04-11 17:12:48    2016-04-11 17:12:48
37124    10164    470    2016-04-19 06:23:09    2016-04-19 06:23:09
37125    14222    487    2016-03-30 08:24:13    2016-03-30 08:24:13
37126    13331    847    2016-04-14 00:21:49    2016-04-14 00:21:49
37127    10187    467    2016-04-07 10:03:45    2016-04-07 10:03:45
37128    16382    628    2016-04-02 14:35:44    2016-04-02 14:35:44
37129    11137    656    2016-03-24 19:36:12    2016-03-24 19:36:12
37130    18544    719    2016-03-27 00:26:19    2016-03-27 00:26:19
37131    15164    872    2016-04-18 15:20:07    2016-04-18 15:20:07
37132    18960    482    2016-04-06 18:52:16    2016-04-06 18:52:16
37133    11710    923    2016-04-20 01:09:14    2016-04-20 01:09:14
37134    10219    889    2016-04-01 05:04:45    2016-04-01 05:04:45
37135    13030    468    2016-04-09 04:22:50    2016-04-09 04:22:50
37136    17460    855    2016-04-02 05:43:04    2016-04-02 05:43:04
37137    18266    518    2016-03-27 01:06:23    2016-03-27 01:06:23
37138    15208    537    2016-04-09 03:01:37    2016-04-09 03:01:37
37139    14024    732    2016-04-05 12:47:30    2016-04-05 12:47:30
37140    12864    676    2016-04-16 20:58:48    2016-04-16 20:58:48
37141    14996    704    2016-04-13 02:34:20    2016-04-13 02:34:20
37142    15475    706    2016-04-13 02:50:18    2016-04-13 02:50:18
37143    13095    583    2016-04-13 08:26:17    2016-04-13 08:26:17
37144    19660    854    2016-04-20 15:35:09    2016-04-20 15:35:09
37145    12419    954    2016-04-11 16:01:30    2016-04-11 16:01:30
37146    17351    622    2016-04-06 22:03:59    2016-04-06 22:03:59
37147    11693    594    2016-04-18 19:14:58    2016-04-18 19:14:58
37148    14850    613    2016-04-17 02:39:43    2016-04-17 02:39:43
37149    16782    921    2016-04-18 17:41:21    2016-04-18 17:41:21
37150    12214    742    2016-03-31 17:31:06    2016-03-31 17:31:06
37151    19280    779    2016-04-08 04:21:40    2016-04-08 04:21:40
37152    11213    709    2016-03-22 17:08:23    2016-03-22 17:08:23
37153    16361    465    2016-04-20 07:26:01    2016-04-20 07:26:01
37154    10940    760    2016-04-09 04:23:54    2016-04-09 04:23:54
37155    19394    933    2016-03-23 07:11:42    2016-03-23 07:11:42
37156    18309    473    2016-04-05 02:30:11    2016-04-05 02:30:11
37157    19585    881    2016-03-28 04:51:34    2016-03-28 04:51:34
37158    13158    928    2016-03-23 16:14:03    2016-03-23 16:14:03
37159    18520    691    2016-04-10 19:08:05    2016-04-10 19:08:05
37160    14138    607    2016-04-05 14:37:36    2016-04-05 14:37:36
37161    11487    897    2016-04-10 22:12:52    2016-04-10 22:12:52
37162    14331    877    2016-04-12 04:05:42    2016-04-12 04:05:42
37163    12522    482    2016-04-14 11:26:17    2016-04-14 11:26:17
37164    15749    802    2016-04-06 19:16:49    2016-04-06 19:16:49
37165    12120    958    2016-03-30 08:41:10    2016-03-30 08:41:10
37166    16228    906    2016-04-16 18:52:07    2016-04-16 18:52:07
37167    13910    469    2016-03-22 02:51:04    2016-03-22 02:51:04
37168    19767    611    2016-04-07 11:01:35    2016-04-07 11:01:35
37169    11629    789    2016-04-01 02:09:13    2016-04-01 02:09:13
37170    15473    584    2016-04-01 03:54:38    2016-04-01 03:54:38
37171    17406    813    2016-04-13 22:23:25    2016-04-13 22:23:25
37172    10595    817    2016-04-12 07:53:54    2016-04-12 07:53:54
37173    12198    504    2016-04-07 06:29:01    2016-04-07 06:29:01
37174    15047    846    2016-04-20 07:33:14    2016-04-20 07:33:14
37175    17318    876    2016-04-06 00:08:53    2016-04-06 00:08:53
37176    19107    584    2016-04-10 05:56:13    2016-04-10 05:56:13
37177    14164    623    2016-03-29 08:37:18    2016-03-29 08:37:18
37178    18675    756    2016-03-28 00:21:44    2016-03-28 00:21:44
37179    18870    494    2016-04-13 02:53:09    2016-04-13 02:53:09
37180    17638    927    2016-04-08 22:34:28    2016-04-08 22:34:28
37181    11535    752    2016-04-13 21:00:11    2016-04-13 21:00:11
37182    13942    769    2016-04-07 11:38:39    2016-04-07 11:38:39
37183    11592    771    2016-03-31 17:00:09    2016-03-31 17:00:09
37184    17794    674    2016-03-26 06:14:29    2016-03-26 06:14:29
37185    19281    907    2016-04-13 15:07:39    2016-04-13 15:07:39
37186    13000    549    2016-04-06 20:33:56    2016-04-06 20:33:56
37187    19489    690    2016-04-04 21:23:46    2016-04-04 21:23:46
37188    13244    556    2016-04-13 11:12:23    2016-04-13 11:12:23
37189    18609    808    2016-03-27 10:47:26    2016-03-27 10:47:26
37190    12172    520    2016-03-28 04:48:14    2016-03-28 04:48:14
37191    12654    540    2016-03-31 06:25:45    2016-03-31 06:25:45
37192    12124    830    2016-04-19 10:50:33    2016-04-19 10:50:33
37193    17043    762    2016-04-04 12:09:02    2016-04-04 12:09:02
37194    10203    668    2016-04-01 09:21:29    2016-04-01 09:21:29
37195    17859    751    2016-04-14 09:12:00    2016-04-14 09:12:00
37196    15271    602    2016-04-02 16:07:07    2016-04-02 16:07:07
37197    12762    677    2016-04-20 01:29:09    2016-04-20 01:29:09
37198    19244    507    2016-04-13 00:14:53    2016-04-13 00:14:53
37199    17419    499    2016-04-13 05:03:59    2016-04-13 05:03:59
37200    12970    899    2016-04-09 08:28:34    2016-04-09 08:28:34
37201    14907    468    2016-03-27 00:55:29    2016-03-27 00:55:29
37202    13811    692    2016-04-12 11:23:18    2016-04-12 11:23:18
37203    14036    708    2016-03-26 19:32:26    2016-03-26 19:32:26
37204    18240    479    2016-03-28 02:27:28    2016-03-28 02:27:28
37205    11662    946    2016-03-23 21:26:35    2016-03-23 21:26:35
37206    14530    821    2016-04-03 17:23:17    2016-04-03 17:23:17
37207    17040    665    2016-04-12 13:35:50    2016-04-12 13:35:50
37208    11965    860    2016-04-08 22:59:40    2016-04-08 22:59:40
37209    19124    875    2016-03-25 16:43:36    2016-03-25 16:43:36
37210    10273    745    2016-03-26 05:30:08    2016-03-26 05:30:08
37211    11295    589    2016-04-17 20:15:35    2016-04-17 20:15:35
37212    10591    554    2016-04-16 08:25:53    2016-04-16 08:25:53
37213    19869    714    2016-03-27 00:56:58    2016-03-27 00:56:58
37214    16783    707    2016-03-29 08:35:18    2016-03-29 08:35:18
37215    15760    634    2016-04-10 14:31:31    2016-04-10 14:31:31
37216    14669    896    2016-03-25 01:32:07    2016-03-25 01:32:07
37217    11076    561    2016-04-10 11:52:12    2016-04-10 11:52:12
37218    12114    811    2016-03-31 06:57:04    2016-03-31 06:57:04
37219    10386    819    2016-04-09 05:47:50    2016-04-09 05:47:50
37220    10103    937    2016-03-31 07:41:14    2016-03-31 07:41:14
37221    16848    773    2016-04-19 15:35:01    2016-04-19 15:35:01
37222    15472    811    2016-04-13 15:37:06    2016-04-13 15:37:06
37223    11826    783    2016-04-08 16:35:36    2016-04-08 16:35:36
37224    12896    688    2016-03-27 02:33:04    2016-03-27 02:33:04
37225    11753    940    2016-04-01 09:06:10    2016-04-01 09:06:10
37226    15606    831    2016-03-29 02:48:48    2016-03-29 02:48:48
37227    16731    648    2016-03-22 13:25:46    2016-03-22 13:25:46
37228    13740    790    2016-04-15 02:15:37    2016-04-15 02:15:37
37229    18750    936    2016-04-18 20:57:41    2016-04-18 20:57:41
37230    15386    882    2016-04-13 01:31:58    2016-04-13 01:31:58
37231    11483    885    2016-03-22 17:11:43    2016-03-22 17:11:43
37232    14263    929    2016-04-17 05:09:25    2016-04-17 05:09:25
37233    10401    913    2016-04-14 15:15:48    2016-04-14 15:15:48
37234    17903    945    2016-04-08 08:36:35    2016-04-08 08:36:35
37235    14197    521    2016-04-02 03:22:14    2016-04-02 03:22:14
37236    14759    887    2016-04-05 07:54:42    2016-04-05 07:54:42
37237    11019    755    2016-03-30 12:50:47    2016-03-30 12:50:47
37238    10393    566    2016-03-28 16:41:49    2016-03-28 16:41:49
37239    11745    507    2016-04-13 10:07:01    2016-04-13 10:07:01
37240    11223    582    2016-04-09 23:19:25    2016-04-09 23:19:25
37241    14702    509    2016-04-03 16:27:13    2016-04-03 16:27:13
37242    19044    954    2016-04-12 22:41:22    2016-04-12 22:41:22
37243    15972    629    2016-04-04 06:13:32    2016-04-04 06:13:32
37244    13993    633    2016-04-04 22:17:43    2016-04-04 22:17:43
37245    17783    805    2016-04-16 02:45:47    2016-04-16 02:45:47
37246    15728    862    2016-03-22 01:14:26    2016-03-22 01:14:26
37247    15009    673    2016-03-29 23:39:34    2016-03-29 23:39:34
37248    14509    494    2016-04-11 15:33:03    2016-04-11 15:33:03
37249    15657    752    2016-03-25 11:44:02    2016-03-25 11:44:02
37250    15023    575    2016-03-30 07:46:02    2016-03-30 07:46:02
37251    15004    623    2016-04-04 16:39:22    2016-04-04 16:39:22
37252    17114    649    2016-03-25 07:30:22    2016-03-25 07:30:22
37253    12685    946    2016-04-07 15:33:15    2016-04-07 15:33:15
37254    14077    697    2016-04-14 12:24:39    2016-04-14 12:24:39
37255    17510    895    2016-04-10 17:17:00    2016-04-10 17:17:00
37256    14875    849    2016-04-13 20:36:13    2016-04-13 20:36:13
37257    15431    903    2016-04-06 00:17:45    2016-04-06 00:17:45
37258    11188    676    2016-03-31 07:48:25    2016-03-31 07:48:25
37259    18937    936    2016-04-04 04:34:22    2016-04-04 04:34:22
37260    17972    760    2016-04-04 13:25:54    2016-04-04 13:25:54
37261    17517    780    2016-03-29 20:59:03    2016-03-29 20:59:03
37262    18250    706    2016-04-16 03:31:51    2016-04-16 03:31:51
37263    12465    670    2016-04-15 07:23:09    2016-04-15 07:23:09
37264    19352    579    2016-04-02 09:29:51    2016-04-02 09:29:51
37265    11805    940    2016-04-11 03:16:28    2016-04-11 03:16:28
37266    18420    608    2016-03-26 06:28:51    2016-03-26 06:28:51
37267    15707    844    2016-04-14 06:31:47    2016-04-14 06:31:47
37268    16686    683    2016-04-10 01:01:45    2016-04-10 01:01:45
37269    11647    538    2016-04-19 00:58:07    2016-04-19 00:58:07
37270    18622    959    2016-03-27 15:36:44    2016-03-27 15:36:44
37271    11100    943    2016-03-22 00:44:26    2016-03-22 00:44:26
37272    17252    706    2016-04-01 10:09:08    2016-04-01 10:09:08
37273    17250    636    2016-03-28 21:26:19    2016-03-28 21:26:19
37274    19961    869    2016-03-31 23:23:26    2016-03-31 23:23:26
37275    16093    741    2016-04-15 22:49:51    2016-04-15 22:49:51
37276    14700    861    2016-04-14 10:44:21    2016-04-14 10:44:21
37277    15277    852    2016-04-12 13:32:02    2016-04-12 13:32:02
37278    16823    485    2016-03-23 17:19:23    2016-03-23 17:19:23
37279    10302    697    2016-03-24 15:29:05    2016-03-24 15:29:05
37280    14780    882    2016-04-03 08:24:40    2016-04-03 08:24:40
37281    18549    896    2016-04-20 12:26:03    2016-04-20 12:26:03
37282    13882    758    2016-04-07 04:33:23    2016-04-07 04:33:23
37283    12024    775    2016-04-03 16:23:28    2016-04-03 16:23:28
37284    12416    956    2016-04-06 05:30:47    2016-04-06 05:30:47
37285    16278    669    2016-04-11 00:24:53    2016-04-11 00:24:53
37286    10874    742    2016-04-06 20:26:07    2016-04-06 20:26:07
37287    12034    815    2016-04-12 14:21:23    2016-04-12 14:21:23
37288    19630    488    2016-04-15 04:41:16    2016-04-15 04:41:16
37289    14152    670    2016-03-31 01:10:55    2016-03-31 01:10:55
37290    16992    524    2016-03-30 09:25:45    2016-03-30 09:25:45
37291    11522    661    2016-03-30 23:36:27    2016-03-30 23:36:27
37292    14259    474    2016-04-02 03:52:44    2016-04-02 03:52:44
37293    13244    533    2016-04-14 10:26:28    2016-04-14 10:26:28
37294    18254    559    2016-04-06 02:16:53    2016-04-06 02:16:53
37295    15491    825    2016-04-16 17:01:55    2016-04-16 17:01:55
37296    16683    844    2016-04-18 23:56:27    2016-04-18 23:56:27
37297    15563    941    2016-04-09 19:41:04    2016-04-09 19:41:04
37298    12888    759    2016-04-16 00:51:29    2016-04-16 00:51:29
37299    16845    706    2016-04-12 23:19:41    2016-04-12 23:19:41
37300    17923    816    2016-04-14 03:08:49    2016-04-14 03:08:49
37301    18321    700    2016-03-28 14:53:06    2016-03-28 14:53:06
37302    19961    648    2016-04-06 19:59:48    2016-04-06 19:59:48
37303    15284    777    2016-04-09 07:00:52    2016-04-09 07:00:52
37304    13538    704    2016-03-24 12:35:06    2016-03-24 12:35:06
37305    12035    645    2016-03-26 06:43:33    2016-03-26 06:43:33
37306    13245    795    2016-04-17 09:25:56    2016-04-17 09:25:56
37307    17000    776    2016-04-01 19:44:41    2016-04-01 19:44:41
37308    10676    473    2016-03-26 19:25:23    2016-03-26 19:25:23
37309    14233    469    2016-04-14 07:06:09    2016-04-14 07:06:09
37310    14767    833    2016-04-02 21:26:57    2016-04-02 21:26:57
37311    13303    578    2016-03-28 18:56:06    2016-03-28 18:56:06
37312    18352    630    2016-03-26 08:25:30    2016-03-26 08:25:30
37313    17390    643    2016-03-28 01:56:58    2016-03-28 01:56:58
37314    14906    834    2016-03-24 14:49:08    2016-03-24 14:49:08
37315    14403    890    2016-04-02 08:31:03    2016-04-02 08:31:03
37316    14349    644    2016-04-05 20:07:33    2016-04-05 20:07:33
37317    14144    605    2016-03-22 07:40:00    2016-03-22 07:40:00
37318    19700    841    2016-04-19 11:14:07    2016-04-19 11:14:07
37319    19480    493    2016-03-28 19:59:03    2016-03-28 19:59:03
37320    19014    915    2016-04-04 09:23:45    2016-04-04 09:23:45
37321    10542    676    2016-04-08 06:56:58    2016-04-08 06:56:58
37322    18467    622    2016-04-07 16:48:50    2016-04-07 16:48:50
37323    18649    589    2016-03-23 02:23:07    2016-03-23 02:23:07
37324    16877    727    2016-04-03 21:32:48    2016-04-03 21:32:48
37325    14641    464    2016-04-14 02:10:04    2016-04-14 02:10:04
37326    11533    684    2016-04-01 11:49:47    2016-04-01 11:49:47
37327    12796    483    2016-04-07 03:42:03    2016-04-07 03:42:03
37328    14784    677    2016-04-20 02:07:26    2016-04-20 02:07:26
37329    14027    528    2016-03-27 05:07:19    2016-03-27 05:07:19
37330    19000    612    2016-03-25 18:02:05    2016-03-25 18:02:05
37331    19994    584    2016-04-13 12:56:45    2016-04-13 12:56:45
37332    19701    566    2016-04-20 21:51:09    2016-04-20 21:51:09
37333    15518    857    2016-04-20 13:39:17    2016-04-20 13:39:17
37334    16788    788    2016-04-14 20:28:13    2016-04-14 20:28:13
37335    16507    642    2016-04-06 20:34:06    2016-04-06 20:34:06
37336    10059    888    2016-04-04 10:52:33    2016-04-04 10:52:33
37337    14947    785    2016-04-07 03:00:44    2016-04-07 03:00:44
37338    15540    870    2016-04-13 18:47:45    2016-04-13 18:47:45
37339    17210    661    2016-03-22 23:27:26    2016-03-22 23:27:26
37340    17635    558    2016-04-06 22:11:51    2016-04-06 22:11:51
37341    16559    808    2016-04-17 00:04:24    2016-04-17 00:04:24
37342    13323    476    2016-04-14 16:27:30    2016-04-14 16:27:30
37343    16991    961    2016-04-06 07:51:21    2016-04-06 07:51:21
37344    11000    725    2016-04-14 11:06:43    2016-04-14 11:06:43
37345    15409    724    2016-04-09 11:04:39    2016-04-09 11:04:39
37346    14955    484    2016-04-10 20:21:52    2016-04-10 20:21:52
37347    14066    860    2016-04-08 23:14:24    2016-04-08 23:14:24
37348    18853    692    2016-04-03 00:11:07    2016-04-03 00:11:07
37349    18035    894    2016-03-25 20:24:47    2016-03-25 20:24:47
37350    10555    954    2016-04-11 16:55:44    2016-04-11 16:55:44
37351    19359    745    2016-04-11 04:41:44    2016-04-11 04:41:44
37352    17624    593    2016-04-12 15:54:55    2016-04-12 15:54:55
37353    16210    465    2016-04-20 16:05:20    2016-04-20 16:05:20
37354    18264    892    2016-04-04 02:44:25    2016-04-04 02:44:25
37355    10210    602    2016-04-06 01:14:02    2016-04-06 01:14:02
37356    14138    628    2016-04-12 00:51:36    2016-04-12 00:51:36
37357    13843    781    2016-03-22 13:45:55    2016-03-22 13:45:55
37358    14470    598    2016-04-17 18:05:13    2016-04-17 18:05:13
37359    16027    895    2016-04-13 19:39:15    2016-04-13 19:39:15
37360    16522    794    2016-03-23 18:17:27    2016-03-23 18:17:27
37361    15724    922    2016-03-25 16:28:50    2016-03-25 16:28:50
37362    18795    577    2016-03-24 02:14:51    2016-03-24 02:14:51
37363    11678    600    2016-03-29 22:55:40    2016-03-29 22:55:40
37364    17364    655    2016-04-03 12:38:10    2016-04-03 12:38:10
37365    15853    491    2016-04-18 11:49:34    2016-04-18 11:49:34
37366    15915    522    2016-04-19 16:20:35    2016-04-19 16:20:35
37367    14982    932    2016-03-24 18:58:28    2016-03-24 18:58:28
37368    11489    891    2016-04-02 16:34:03    2016-04-02 16:34:03
37369    12240    800    2016-03-26 07:19:43    2016-03-26 07:19:43
37370    10987    590    2016-04-05 05:41:21    2016-04-05 05:41:21
37371    13096    883    2016-04-15 00:05:07    2016-04-15 00:05:07
37372    10906    880    2016-03-22 07:19:45    2016-03-22 07:19:45
37373    15276    889    2016-03-25 04:30:19    2016-03-25 04:30:19
37374    18672    615    2016-04-11 22:15:29    2016-04-11 22:15:29
37375    10079    840    2016-04-04 09:16:17    2016-04-04 09:16:17
37376    14117    928    2016-04-07 04:14:49    2016-04-07 04:14:49
37377    12877    508    2016-03-26 16:03:30    2016-03-26 16:03:30
37378    14369    527    2016-04-12 10:35:24    2016-04-12 10:35:24
37379    19455    687    2016-04-01 12:01:20    2016-04-01 12:01:20
37380    16020    824    2016-04-01 09:34:19    2016-04-01 09:34:19
37381    10354    724    2016-04-03 05:31:25    2016-04-03 05:31:25
37382    18980    779    2016-03-31 02:53:17    2016-03-31 02:53:17
37383    12194    740    2016-03-29 14:16:30    2016-03-29 14:16:30
37384    10050    551    2016-03-28 02:45:26    2016-03-28 02:45:26
37385    18859    582    2016-04-02 04:36:55    2016-04-02 04:36:55
37386    10717    845    2016-03-22 20:23:48    2016-03-22 20:23:48
37387    14239    598    2016-04-18 18:18:25    2016-04-18 18:18:25
37388    17924    488    2016-04-02 11:15:58    2016-04-02 11:15:58
37389    13968    717    2016-04-10 19:53:18    2016-04-10 19:53:18
37390    18257    744    2016-03-30 12:37:01    2016-03-30 12:37:01
37391    13117    508    2016-04-10 18:24:42    2016-04-10 18:24:42
37392    16439    886    2016-03-27 10:20:21    2016-03-27 10:20:21
37393    16665    584    2016-04-14 08:41:00    2016-04-14 08:41:00
37394    14524    477    2016-04-02 05:00:24    2016-04-02 05:00:24
37395    12706    576    2016-04-06 20:08:55    2016-04-06 20:08:55
37396    12689    607    2016-03-22 21:47:50    2016-03-22 21:47:50
37397    16533    500    2016-03-25 19:28:27    2016-03-25 19:28:27
37398    20001    778    2016-10-14 08:00:00    2016-10-14 08:00:00
37399    20001    549    2016-10-14 10:09:00    2016-10-14 10:09:00
37400    20001    478    2016-10-14 11:18:00    2016-10-14 11:18:00
37401    20001    715    2016-10-14 11:15:00    2016-10-14 11:15:00
37402    20001    703    2016-10-14 19:08:00    2016-10-14 19:08:00
37403    20002    823    2016-10-14 07:29:00    2016-10-14 07:29:00
37404    20002    510    2016-10-14 14:45:00    2016-10-14 14:45:00
37405    20002    560    2016-10-14 05:50:00    2016-10-14 05:50:00
37406    20002    547    2016-10-14 10:40:00    2016-10-14 10:40:00
37407    20002    823    2016-10-14 14:12:00    2016-10-14 14:12:00
37408    20003    874    2016-10-14 21:06:00    2016-10-14 21:06:00
37409    20003    829    2016-10-14 09:46:00    2016-10-14 09:46:00
37410    20003    924    2016-10-14 10:09:00    2016-10-14 10:09:00
37411    20003    737    2016-10-14 09:05:00    2016-10-14 09:05:00
37412    20003    895    2016-10-14 22:55:00    2016-10-14 22:55:00
37413    20004    636    2016-10-14 10:09:00    2016-10-14 10:09:00
37414    20004    889    2016-10-14 02:43:00    2016-10-14 02:43:00
37415    20004    677    2016-10-14 13:49:00    2016-10-14 13:49:00
37416    20004    767    2016-10-14 08:43:00    2016-10-14 08:43:00
37417    20004    868    2016-10-14 06:07:00    2016-10-14 06:07:00
37418    20005    952    2016-10-14 23:58:00    2016-10-14 23:58:00
37419    20005    540    2016-10-14 06:00:00    2016-10-14 06:00:00
37420    20005    705    2016-10-14 11:14:00    2016-10-14 11:14:00
37421    20005    869    2016-10-14 14:09:00    2016-10-14 14:09:00
37422    20005    774    2016-10-14 06:54:00    2016-10-14 06:54:00
37423    20006    539    2016-10-14 16:30:00    2016-10-14 16:30:00
37424    20006    641    2016-10-14 07:24:00    2016-10-14 07:24:00
37425    20006    629    2016-10-14 05:52:00    2016-10-14 05:52:00
37426    20006    768    2016-10-14 20:16:00    2016-10-14 20:16:00
37427    20006    960    2016-10-14 08:52:00    2016-10-14 08:52:00
37428    20007    588    2016-10-14 23:04:00    2016-10-14 23:04:00
37429    20007    704    2016-10-14 02:38:00    2016-10-14 02:38:00
37430    20007    551    2016-10-14 16:10:00    2016-10-14 16:10:00
37431    20007    716    2016-10-14 07:41:00    2016-10-14 07:41:00
37432    20007    585    2016-10-14 22:55:00    2016-10-14 22:55:00
37433    20008    530    2016-10-14 17:09:00    2016-10-14 17:09:00
37434    20008    620    2016-10-14 06:10:00    2016-10-14 06:10:00
37435    20008    731    2016-10-14 03:39:00    2016-10-14 03:39:00
37436    20008    838    2016-10-14 14:25:00    2016-10-14 14:25:00
37437    20008    735    2016-10-14 16:24:00    2016-10-14 16:24:00
37438    20009    719    2016-10-14 18:49:00    2016-10-14 18:49:00
37439    20009    492    2016-10-14 10:36:00    2016-10-14 10:36:00
37440    20009    770    2016-10-14 18:12:00    2016-10-14 18:12:00
37441    20009    845    2016-10-14 18:25:00    2016-10-14 18:25:00
37442    20009    742    2016-10-14 06:32:00    2016-10-14 06:32:00
37443    20010    839    2016-10-14 04:45:00    2016-10-14 04:45:00
37444    20010    595    2016-10-14 17:21:00    2016-10-14 17:21:00
37445    20010    958    2016-10-14 21:09:00    2016-10-14 21:09:00
37446    20010    912    2016-10-14 16:24:00    2016-10-14 16:24:00
37447    20010    841    2016-10-14 19:43:00    2016-10-14 19:43:00
37448    20011    530    2016-10-14 12:03:00    2016-10-14 12:03:00
37449    20011    802    2016-10-14 15:05:00    2016-10-14 15:05:00
37450    20011    486    2016-10-14 15:39:00    2016-10-14 15:39:00
37451    20011    612    2016-10-14 06:44:00    2016-10-14 06:44:00
37452    20011    719    2016-10-14 16:00:00    2016-10-14 16:00:00
37453    20012    786    2016-10-14 23:20:00    2016-10-14 23:20:00
37454    20012    864    2016-10-14 14:49:00    2016-10-14 14:49:00
37455    20012    612    2016-10-14 23:46:00    2016-10-14 23:46:00
37456    20012    794    2016-10-14 20:20:00    2016-10-14 20:20:00
37457    20012    841    2016-10-14 17:41:00    2016-10-14 17:41:00
37458    20013    780    2016-10-14 08:43:00    2016-10-14 08:43:00
37459    20013    505    2016-10-14 15:02:00    2016-10-14 15:02:00
37460    20013    813    2016-10-14 01:37:00    2016-10-14 01:37:00
37461    20013    595    2016-10-14 02:08:00    2016-10-14 02:08:00
37462    20013    670    2016-10-14 21:17:00    2016-10-14 21:17:00
37463    20014    576    2016-10-14 10:10:00    2016-10-14 10:10:00
37464    20014    563    2016-10-14 04:37:00    2016-10-14 04:37:00
37465    20014    707    2016-10-14 15:20:00    2016-10-14 15:20:00
37466    20014    528    2016-10-14 06:44:00    2016-10-14 06:44:00
37467    20014    776    2016-10-14 15:32:00    2016-10-14 15:32:00
37468    20015    799    2016-10-14 12:24:00    2016-10-14 12:24:00
37469    20015    888    2016-10-14 18:08:00    2016-10-14 18:08:00
37470    20015    656    2016-10-14 09:53:00    2016-10-14 09:53:00
37471    20015    589    2016-10-14 07:10:00    2016-10-14 07:10:00
37472    20015    590    2016-10-14 13:28:00    2016-10-14 13:28:00
37473    20016    542    2016-10-14 13:02:00    2016-10-14 13:02:00
37474    20016    782    2016-10-14 11:23:00    2016-10-14 11:23:00
37475    20016    603    2016-10-14 17:33:00    2016-10-14 17:33:00
37476    20016    497    2016-10-14 18:09:00    2016-10-14 18:09:00
37477    20016    503    2016-10-14 04:06:00    2016-10-14 04:06:00
37478    20017    940    2016-10-14 09:42:00    2016-10-14 09:42:00
37479    20017    707    2016-10-14 12:24:00    2016-10-14 12:24:00
37480    20017    706    2016-10-14 17:42:00    2016-10-14 17:42:00
37481    20017    878    2016-10-14 06:08:00    2016-10-14 06:08:00
37482    20017    487    2016-10-14 01:26:00    2016-10-14 01:26:00
37483    20018    899    2016-10-14 22:30:00    2016-10-14 22:30:00
37484    20018    950    2016-10-14 18:17:00    2016-10-14 18:17:00
37485    20018    746    2016-10-14 16:08:00    2016-10-14 16:08:00
37486    20018    738    2016-10-14 20:48:00    2016-10-14 20:48:00
37487    20018    864    2016-10-14 11:59:00    2016-10-14 11:59:00
37488    20019    888    2016-10-14 04:38:00    2016-10-14 04:38:00
37489    20019    589    2016-10-14 21:02:00    2016-10-14 21:02:00
37490    20019    900    2016-10-14 09:35:00    2016-10-14 09:35:00
37491    20019    663    2016-10-14 14:55:00    2016-10-14 14:55:00
37492    20019    867    2016-10-14 19:26:00    2016-10-14 19:26:00
37493    20020    744    2016-10-14 03:09:00    2016-10-14 03:09:00
37494    20020    810    2016-10-14 01:59:00    2016-10-14 01:59:00
37495    20020    863    2016-10-14 05:27:00    2016-10-14 05:27:00
37496    20020    862    2016-10-14 11:08:00    2016-10-14 11:08:00
37497    20020    791    2016-10-14 20:23:00    2016-10-14 20:23:00
37498    20021    774    2016-10-14 22:25:00    2016-10-14 22:25:00
37499    20021    934    2016-10-14 09:11:00    2016-10-14 09:11:00
37500    20021    898    2016-10-14 17:30:00    2016-10-14 17:30:00
37501    20021    908    2016-10-14 23:23:00    2016-10-14 23:23:00
37502    20021    805    2016-10-14 01:38:00    2016-10-14 01:38:00
37503    20022    916    2016-10-13 18:20:00    2016-10-13 18:20:00
37504    20022    952    2016-10-13 08:43:00    2016-10-13 08:43:00
37505    20022    632    2016-10-13 18:48:00    2016-10-13 18:48:00
37506    20022    508    2016-10-13 09:15:00    2016-10-13 09:15:00
37507    20022    578    2016-10-13 01:27:00    2016-10-13 01:27:00
37508    20023    569    2016-10-13 20:36:00    2016-10-13 20:36:00
37509    20023    916    2016-10-13 18:52:00    2016-10-13 18:52:00
37510    20023    687    2016-10-13 08:50:00    2016-10-13 08:50:00
37511    20023    687    2016-10-13 09:12:00    2016-10-13 09:12:00
37512    20023    871    2016-10-13 11:34:00    2016-10-13 11:34:00
37513    20024    894    2016-10-13 07:09:00    2016-10-13 07:09:00
37514    20024    816    2016-10-13 10:58:00    2016-10-13 10:58:00
37515    20024    730    2016-10-13 01:58:00    2016-10-13 01:58:00
37516    20024    794    2016-10-13 20:11:00    2016-10-13 20:11:00
37517    20024    516    2016-10-13 04:54:00    2016-10-13 04:54:00
37518    20025    520    2016-10-13 20:15:00    2016-10-13 20:15:00
37519    20025    709    2016-10-13 05:13:00    2016-10-13 05:13:00
37520    20025    607    2016-10-13 19:30:00    2016-10-13 19:30:00
37521    20025    917    2016-10-13 18:51:00    2016-10-13 18:51:00
37522    20025    763    2016-10-13 13:06:00    2016-10-13 13:06:00
37523    20026    652    2016-10-13 19:33:00    2016-10-13 19:33:00
37524    20026    645    2016-10-13 14:06:00    2016-10-13 14:06:00
37525    20026    872    2016-10-13 18:07:00    2016-10-13 18:07:00
37526    20026    797    2016-10-13 03:01:00    2016-10-13 03:01:00
37527    20026    791    2016-10-13 07:33:00    2016-10-13 07:33:00
37528    20027    744    2016-10-13 22:02:00    2016-10-13 22:02:00
37529    20027    560    2016-10-13 06:00:00    2016-10-13 06:00:00
37530    20027    676    2016-10-13 01:45:00    2016-10-13 01:45:00
37531    20027    669    2016-10-13 07:32:00    2016-10-13 07:32:00
37532    20027    939    2016-10-13 17:52:00    2016-10-13 17:52:00
37533    20028    843    2016-10-13 11:23:00    2016-10-13 11:23:00
37534    20028    738    2016-10-13 06:50:00    2016-10-13 06:50:00
37535    20028    719    2016-10-13 08:29:00    2016-10-13 08:29:00
37536    20028    545    2016-10-13 05:13:00    2016-10-13 05:13:00
37537    20028    799    2016-10-13 10:47:00    2016-10-13 10:47:00
37538    20029    693    2016-10-13 13:32:00    2016-10-13 13:32:00
37539    20029    767    2016-10-13 02:57:00    2016-10-13 02:57:00
37540    20029    771    2016-10-13 20:10:00    2016-10-13 20:10:00
37541    20029    468    2016-10-13 18:11:00    2016-10-13 18:11:00
37542    20029    638    2016-10-13 07:13:00    2016-10-13 07:13:00
37543    20030    857    2016-10-13 11:44:00    2016-10-13 11:44:00
37544    20030    696    2016-10-13 19:33:00    2016-10-13 19:33:00
37545    20030    677    2016-10-13 16:51:00    2016-10-13 16:51:00
37546    20030    663    2016-10-13 22:31:00    2016-10-13 22:31:00
37547    20030    541    2016-10-13 13:19:00    2016-10-13 13:19:00
37548    20031    759    2016-10-13 19:35:00    2016-10-13 19:35:00
37549    20031    739    2016-10-13 09:47:00    2016-10-13 09:47:00
37550    20031    611    2016-10-13 05:05:00    2016-10-13 05:05:00
37551    20031    842    2016-10-13 04:10:00    2016-10-13 04:10:00
37552    20031    663    2016-10-13 02:56:00    2016-10-13 02:56:00
37553    20032    635    2016-10-13 10:34:00    2016-10-13 10:34:00
37554    20032    638    2016-10-13 18:54:00    2016-10-13 18:54:00
37555    20032    598    2016-10-13 16:57:00    2016-10-13 16:57:00
37556    20032    653    2016-10-13 05:10:00    2016-10-13 05:10:00
37557    20032    768    2016-10-13 04:44:00    2016-10-13 04:44:00
37558    20033    920    2016-10-13 20:30:00    2016-10-13 20:30:00
37559    20033    742    2016-10-13 12:13:00    2016-10-13 12:13:00
37560    20033    507    2016-10-13 06:44:00    2016-10-13 06:44:00
37561    20033    747    2016-10-13 07:22:00    2016-10-13 07:22:00
37562    20033    473    2016-10-13 10:33:00    2016-10-13 10:33:00
37563    20034    663    2016-10-13 18:34:00    2016-10-13 18:34:00
37564    20034    665    2016-10-13 03:55:00    2016-10-13 03:55:00
37565    20034    805    2016-10-13 15:33:00    2016-10-13 15:33:00
37566    20034    830    2016-10-13 03:32:00    2016-10-13 03:32:00
37567    20034    950    2016-10-13 05:27:00    2016-10-13 05:27:00
37568    20035    943    2016-10-13 03:32:00    2016-10-13 03:32:00
37569    20035    929    2016-10-13 04:58:00    2016-10-13 04:58:00
37570    20035    621    2016-10-13 01:42:00    2016-10-13 01:42:00
37571    20035    930    2016-10-13 07:19:00    2016-10-13 07:19:00
37572    20035    633    2016-10-13 19:18:00    2016-10-13 19:18:00
37573    20036    846    2016-10-13 20:56:00    2016-10-13 20:56:00
37574    20036    541    2016-10-13 13:36:00    2016-10-13 13:36:00
37575    20036    809    2016-10-13 05:09:00    2016-10-13 05:09:00
37576    20036    893    2016-10-13 03:14:00    2016-10-13 03:14:00
37577    20036    898    2016-10-13 19:00:00    2016-10-13 19:00:00
37578    20037    502    2016-10-13 09:54:00    2016-10-13 09:54:00
37579    20037    776    2016-10-13 01:49:00    2016-10-13 01:49:00
37580    20037    554    2016-10-13 03:25:00    2016-10-13 03:25:00
37581    20037    466    2016-10-13 11:17:00    2016-10-13 11:17:00
37582    20037    638    2016-10-13 15:03:00    2016-10-13 15:03:00
37583    20038    875    2016-10-13 18:00:00    2016-10-13 18:00:00
37584    20038    607    2016-10-13 14:43:00    2016-10-13 14:43:00
37585    20038    709    2016-10-13 18:48:00    2016-10-13 18:48:00
37586    20038    658    2016-10-13 23:05:00    2016-10-13 23:05:00
37587    20038    822    2016-10-13 21:37:00    2016-10-13 21:37:00
37588    20039    737    2016-10-13 16:27:00    2016-10-13 16:27:00
37589    20039    463    2016-10-13 02:00:00    2016-10-13 02:00:00
37590    20039    501    2016-10-13 20:34:00    2016-10-13 20:34:00
37591    20039    767    2016-10-13 19:54:00    2016-10-13 19:54:00
37592    20039    559    2016-10-13 04:50:00    2016-10-13 04:50:00
37593    20040    835    2016-10-13 06:30:00    2016-10-13 06:30:00
37594    20040    591    2016-10-13 09:42:00    2016-10-13 09:42:00
37595    20040    609    2016-10-13 21:20:00    2016-10-13 21:20:00
37596    20040    481    2016-10-13 23:24:00    2016-10-13 23:24:00
37597    20040    662    2016-10-13 08:13:00    2016-10-13 08:13:00
37598    20041    933    2016-10-13 19:28:00    2016-10-13 19:28:00
37599    20041    511    2016-10-13 17:25:00    2016-10-13 17:25:00
37600    20041    585    2016-10-13 21:40:00    2016-10-13 21:40:00
37601    20041    565    2016-10-13 17:13:00    2016-10-13 17:13:00
37602    20041    937    2016-10-13 17:20:00    2016-10-13 17:20:00
37603    20042    867    2016-10-13 19:50:00    2016-10-13 19:50:00
37604    20042    666    2016-10-13 02:57:00    2016-10-13 02:57:00
37605    20042    540    2016-10-13 12:56:00    2016-10-13 12:56:00
37606    20042    742    2016-10-13 12:25:00    2016-10-13 12:25:00
37607    20042    496    2016-10-13 13:17:00    2016-10-13 13:17:00
37608    20043    677    2016-10-13 09:53:00    2016-10-13 09:53:00
37609    20043    480    2016-10-13 01:57:00    2016-10-13 01:57:00
37610    20043    526    2016-10-13 18:09:00    2016-10-13 18:09:00
37611    20043    787    2016-10-13 19:20:00    2016-10-13 19:20:00
37612    20043    491    2016-10-13 21:58:00    2016-10-13 21:58:00
37613    20044    473    2016-10-13 13:18:00    2016-10-13 13:18:00
37614    20044    623    2016-10-13 12:27:00    2016-10-13 12:27:00
37615    20044    758    2016-10-13 23:57:00    2016-10-13 23:57:00
37616    20044    825    2016-10-13 05:55:00    2016-10-13 05:55:00
37617    20044    763    2016-10-13 01:51:00    2016-10-13 01:51:00
37618    20045    772    2016-10-13 03:23:00    2016-10-13 03:23:00
37619    20045    609    2016-10-13 08:15:00    2016-10-13 08:15:00
37620    20045    765    2016-10-13 10:32:00    2016-10-13 10:32:00
37621    20045    880    2016-10-13 05:14:00    2016-10-13 05:14:00
37622    20045    515    2016-10-13 20:41:00    2016-10-13 20:41:00
37623    20046    730    2016-10-13 05:28:00    2016-10-13 05:28:00
37624    20046    890    2016-10-13 17:45:00    2016-10-13 17:45:00
37625    20046    726    2016-10-13 20:38:00    2016-10-13 20:38:00
37626    20046    728    2016-10-13 16:46:00    2016-10-13 16:46:00
37627    20046    632    2016-10-13 15:15:00    2016-10-13 15:15:00
37628    20047    844    2016-10-13 07:30:00    2016-10-13 07:30:00
37629    20047    488    2016-10-13 04:37:00    2016-10-13 04:37:00
37630    20047    908    2016-10-13 18:51:00    2016-10-13 18:51:00
37631    20047    597    2016-10-13 10:00:00    2016-10-13 10:00:00
37632    20047    917    2016-10-13 09:56:00    2016-10-13 09:56:00
37633    20048    811    2016-10-13 01:04:00    2016-10-13 01:04:00
37634    20048    898    2016-10-13 02:57:00    2016-10-13 02:57:00
37635    20048    806    2016-10-13 10:58:00    2016-10-13 10:58:00
37636    20048    595    2016-10-13 11:52:00    2016-10-13 11:52:00
37637    20048    920    2016-10-13 07:27:00    2016-10-13 07:27:00
37638    20049    774    2016-10-13 08:27:00    2016-10-13 08:27:00
37639    20049    876    2016-10-13 02:33:00    2016-10-13 02:33:00
37640    20049    654    2016-10-13 07:00:00    2016-10-13 07:00:00
37641    20049    672    2016-10-13 01:47:00    2016-10-13 01:47:00
37642    20049    551    2016-10-13 05:41:00    2016-10-13 05:41:00
37643    20050    806    2016-10-13 22:29:00    2016-10-13 22:29:00
37644    20050    670    2016-10-13 04:44:00    2016-10-13 04:44:00
37645    20050    853    2016-10-13 21:03:00    2016-10-13 21:03:00
37646    20050    609    2016-10-13 15:35:00    2016-10-13 15:35:00
37647    20050    716    2016-10-13 13:51:00    2016-10-13 13:51:00
37648    20051    604    2016-10-13 03:29:00    2016-10-13 03:29:00
37649    20051    928    2016-10-13 17:10:00    2016-10-13 17:10:00
37650    20051    538    2016-10-13 07:48:00    2016-10-13 07:48:00
37651    20051    614    2016-10-13 19:43:00    2016-10-13 19:43:00
37652    20051    582    2016-10-13 13:41:00    2016-10-13 13:41:00
37653    20052    848    2016-10-13 06:49:00    2016-10-13 06:49:00
37654    20052    860    2016-10-13 20:49:00    2016-10-13 20:49:00
37655    20052    470    2016-10-13 11:23:00    2016-10-13 11:23:00
37656    20052    484    2016-10-13 05:12:00    2016-10-13 05:12:00
37657    20052    800    2016-10-13 07:31:00    2016-10-13 07:31:00
37658    20053    927    2016-10-13 07:13:00    2016-10-13 07:13:00
37659    20053    627    2016-10-13 05:56:00    2016-10-13 05:56:00
37660    20053    789    2016-10-13 20:09:00    2016-10-13 20:09:00
37661    20053    549    2016-10-13 16:26:00    2016-10-13 16:26:00
37662    20053    731    2016-10-13 19:37:00    2016-10-13 19:37:00
37663    20054    542    2016-10-13 10:07:00    2016-10-13 10:07:00
37664    20054    920    2016-10-13 01:50:00    2016-10-13 01:50:00
37665    20054    739    2016-10-13 04:52:00    2016-10-13 04:52:00
37666    20054    620    2016-10-13 03:04:00    2016-10-13 03:04:00
37667    20054    716    2016-10-13 09:04:00    2016-10-13 09:04:00
37668    20055    937    2016-10-13 04:12:00    2016-10-13 04:12:00
37669    20055    611    2016-10-13 10:35:00    2016-10-13 10:35:00
37670    20055    880    2016-10-13 10:29:00    2016-10-13 10:29:00
37671    20055    682    2016-10-13 13:34:00    2016-10-13 13:34:00
37672    20055    552    2016-10-13 19:20:00    2016-10-13 19:20:00
37673    20056    612    2016-10-13 07:42:00    2016-10-13 07:42:00
37674    20056    935    2016-10-13 01:35:00    2016-10-13 01:35:00
37675    20056    929    2016-10-13 12:49:00    2016-10-13 12:49:00
37676    20056    895    2016-10-13 14:36:00    2016-10-13 14:36:00
37677    20056    588    2016-10-13 23:48:00    2016-10-13 23:48:00
37678    20057    712    2016-10-13 22:57:00    2016-10-13 22:57:00
37679    20057    893    2016-10-13 07:09:00    2016-10-13 07:09:00
37680    20057    741    2016-10-13 22:21:00    2016-10-13 22:21:00
37681    20057    780    2016-10-13 01:13:00    2016-10-13 01:13:00
37682    20057    956    2016-10-13 11:35:00    2016-10-13 11:35:00
37683    20058    542    2016-10-13 09:33:00    2016-10-13 09:33:00
37684    20058    864    2016-10-13 08:06:00    2016-10-13 08:06:00
37685    20058    799    2016-10-13 22:54:00    2016-10-13 22:54:00
37686    20058    830    2016-10-13 14:42:00    2016-10-13 14:42:00
37687    20058    635    2016-10-13 11:04:00    2016-10-13 11:04:00
37688    20059    590    2016-10-13 08:21:00    2016-10-13 08:21:00
37689    20059    930    2016-10-13 07:50:00    2016-10-13 07:50:00
37690    20059    805    2016-10-13 02:35:00    2016-10-13 02:35:00
37691    20059    674    2016-10-13 19:55:00    2016-10-13 19:55:00
37692    20059    635    2016-10-13 05:00:00    2016-10-13 05:00:00
37693    20060    745    2016-10-13 11:44:00    2016-10-13 11:44:00
37694    20060    673    2016-10-13 18:42:00    2016-10-13 18:42:00
37695    20060    549    2016-10-13 14:39:00    2016-10-13 14:39:00
37696    20060    583    2016-10-13 06:11:00    2016-10-13 06:11:00
37697    20060    600    2016-10-13 09:46:00    2016-10-13 09:46:00
37698    20061    721    2016-10-13 18:30:00    2016-10-13 18:30:00
37699    20061    604    2016-10-13 20:38:00    2016-10-13 20:38:00
37700    20061    775    2016-10-13 12:05:00    2016-10-13 12:05:00
37701    20061    506    2016-10-13 14:44:00    2016-10-13 14:44:00
37702    20061    870    2016-10-13 12:05:00    2016-10-13 12:05:00
37703    20062    569    2016-10-13 15:01:00    2016-10-13 15:01:00
37704    20062    714    2016-10-13 23:37:00    2016-10-13 23:37:00
37705    20062    681    2016-10-13 06:25:00    2016-10-13 06:25:00
37706    20062    710    2016-10-13 05:58:00    2016-10-13 05:58:00
37707    20062    948    2016-10-13 10:53:00    2016-10-13 10:53:00
37708    20063    836    2016-10-13 16:41:00    2016-10-13 16:41:00
37709    20063    500    2016-10-13 21:17:00    2016-10-13 21:17:00
37710    20063    908    2016-10-13 07:44:00    2016-10-13 07:44:00
37711    20063    749    2016-10-13 02:40:00    2016-10-13 02:40:00
37712    20063    521    2016-10-13 15:52:00    2016-10-13 15:52:00
37713    20064    564    2016-10-13 16:52:00    2016-10-13 16:52:00
37714    20064    651    2016-10-13 04:26:00    2016-10-13 04:26:00
37715    20064    472    2016-10-13 15:50:00    2016-10-13 15:50:00
37716    20064    851    2016-10-13 16:03:00    2016-10-13 16:03:00
37717    20064    748    2016-10-13 05:21:00    2016-10-13 05:21:00
37718    20065    841    2016-10-13 18:11:00    2016-10-13 18:11:00
37719    20065    750    2016-10-13 03:11:00    2016-10-13 03:11:00
37720    20065    633    2016-10-13 10:48:00    2016-10-13 10:48:00
37721    20065    688    2016-10-13 01:15:00    2016-10-13 01:15:00
37722    20065    545    2016-10-13 15:04:00    2016-10-13 15:04:00
37723    20066    953    2016-10-13 16:20:00    2016-10-13 16:20:00
37724    20066    795    2016-10-13 23:33:00    2016-10-13 23:33:00
37725    20066    864    2016-10-13 14:38:00    2016-10-13 14:38:00
37726    20066    929    2016-10-13 10:51:00    2016-10-13 10:51:00
37727    20066    617    2016-10-13 10:15:00    2016-10-13 10:15:00
37728    20067    709    2016-10-13 03:35:00    2016-10-13 03:35:00
37729    20067    669    2016-10-13 02:38:00    2016-10-13 02:38:00
37730    20067    943    2016-10-13 03:20:00    2016-10-13 03:20:00
37731    20067    731    2016-10-13 23:16:00    2016-10-13 23:16:00
37732    20067    795    2016-10-13 14:08:00    2016-10-13 14:08:00
37733    20068    499    2016-10-13 20:44:00    2016-10-13 20:44:00
37734    20068    579    2016-10-13 16:51:00    2016-10-13 16:51:00
37735    20068    700    2016-10-13 03:41:00    2016-10-13 03:41:00
37736    20068    704    2016-10-13 11:29:00    2016-10-13 11:29:00
37737    20068    463    2016-10-13 04:22:00    2016-10-13 04:22:00
37738    20069    595    2016-10-13 03:44:00    2016-10-13 03:44:00
37739    20069    876    2016-10-13 08:39:00    2016-10-13 08:39:00
37740    20069    939    2016-10-13 14:41:00    2016-10-13 14:41:00
37741    20069    654    2016-10-13 13:36:00    2016-10-13 13:36:00
37742    20069    830    2016-10-13 21:38:00    2016-10-13 21:38:00
37743    20070    805    2016-10-13 09:57:00    2016-10-13 09:57:00
37744    20070    573    2016-10-13 12:01:00    2016-10-13 12:01:00
37745    20070    943    2016-10-13 07:39:00    2016-10-13 07:39:00
37746    20070    475    2016-10-13 02:26:00    2016-10-13 02:26:00
37747    20070    656    2016-10-13 05:47:00    2016-10-13 05:47:00
37748    20071    630    2016-10-13 15:05:00    2016-10-13 15:05:00
37749    20071    831    2016-10-13 17:07:00    2016-10-13 17:07:00
37750    20071    773    2016-10-13 06:21:00    2016-10-13 06:21:00
37751    20071    697    2016-10-14 00:00:00    2016-10-14 00:00:00
37752    20071    680    2016-10-13 06:18:00    2016-10-13 06:18:00
37753    20072    768    2016-10-13 15:51:00    2016-10-13 15:51:00
37754    20072    859    2016-10-13 09:51:00    2016-10-13 09:51:00
37755    20072    655    2016-10-13 01:55:00    2016-10-13 01:55:00
37756    20072    646    2016-10-13 08:13:00    2016-10-13 08:13:00
37757    20072    915    2016-10-13 05:22:00    2016-10-13 05:22:00
37758    20073    770    2016-10-13 19:21:00    2016-10-13 19:21:00
37759    20073    540    2016-10-13 01:30:00    2016-10-13 01:30:00
37760    20073    920    2016-10-13 11:31:00    2016-10-13 11:31:00
37761    20073    538    2016-10-13 17:56:00    2016-10-13 17:56:00
37762    20073    725    2016-10-13 17:03:00    2016-10-13 17:03:00
37763    20074    929    2016-10-13 13:02:00    2016-10-13 13:02:00
37764    20074    574    2016-10-13 06:32:00    2016-10-13 06:32:00
37765    20074    533    2016-10-13 02:20:00    2016-10-13 02:20:00
37766    20074    544    2016-10-13 08:55:00    2016-10-13 08:55:00
37767    20074    847    2016-10-13 09:33:00    2016-10-13 09:33:00
37768    20075    900    2016-10-12 04:14:00    2016-10-12 04:14:00
37769    20075    933    2016-10-12 04:06:00    2016-10-12 04:06:00
37770    20075    539    2016-10-12 14:42:00    2016-10-12 14:42:00
37771    20075    742    2016-10-12 19:17:00    2016-10-12 19:17:00
37772    20075    527    2016-10-12 22:56:00    2016-10-12 22:56:00
37773    20076    563    2016-10-12 11:29:00    2016-10-12 11:29:00
37774    20076    823    2016-10-12 21:41:00    2016-10-12 21:41:00
37775    20076    590    2016-10-12 19:36:00    2016-10-12 19:36:00
37776    20076    868    2016-10-12 18:40:00    2016-10-12 18:40:00
37777    20076    930    2016-10-12 17:09:00    2016-10-12 17:09:00
37778    20077    543    2016-10-12 19:10:00    2016-10-12 19:10:00
37779    20077    612    2016-10-12 19:17:00    2016-10-12 19:17:00
37780    20077    817    2016-10-12 12:12:00    2016-10-12 12:12:00
37781    20077    573    2016-10-12 12:46:00    2016-10-12 12:46:00
37782    20077    955    2016-10-12 02:23:00    2016-10-12 02:23:00
37783    20078    513    2016-10-12 14:20:00    2016-10-12 14:20:00
37784    20078    863    2016-10-12 10:16:00    2016-10-12 10:16:00
37785    20078    763    2016-10-12 06:06:00    2016-10-12 06:06:00
37786    20078    819    2016-10-12 08:07:00    2016-10-12 08:07:00
37787    20078    788    2016-10-12 14:33:00    2016-10-12 14:33:00
37788    20079    811    2016-10-12 17:32:00    2016-10-12 17:32:00
37789    20079    949    2016-10-12 04:14:00    2016-10-12 04:14:00
37790    20079    961    2016-10-12 10:10:00    2016-10-12 10:10:00
37791    20079    916    2016-10-12 19:14:00    2016-10-12 19:14:00
37792    20079    686    2016-10-12 12:44:00    2016-10-12 12:44:00
37793    20080    716    2016-10-12 17:39:00    2016-10-12 17:39:00
37794    20080    521    2016-10-12 15:37:00    2016-10-12 15:37:00
37795    20080    643    2016-10-12 21:06:00    2016-10-12 21:06:00
37796    20080    625    2016-10-12 02:48:00    2016-10-12 02:48:00
37797    20080    932    2016-10-12 09:12:00    2016-10-12 09:12:00
37798    20081    576    2016-10-12 13:46:00    2016-10-12 13:46:00
37799    20081    689    2016-10-12 22:48:00    2016-10-12 22:48:00
37800    20081    834    2016-10-12 12:47:00    2016-10-12 12:47:00
37801    20081    543    2016-10-12 13:00:00    2016-10-12 13:00:00
37802    20081    851    2016-10-12 03:28:00    2016-10-12 03:28:00
37803    20082    637    2016-10-12 19:47:00    2016-10-12 19:47:00
37804    20082    949    2016-10-12 06:32:00    2016-10-12 06:32:00
37805    20082    590    2016-10-12 10:30:00    2016-10-12 10:30:00
37806    20082    808    2016-10-12 11:52:00    2016-10-12 11:52:00
37807    20082    526    2016-10-12 17:53:00    2016-10-12 17:53:00
37808    20083    736    2016-10-12 08:53:00    2016-10-12 08:53:00
37809    20083    724    2016-10-12 17:56:00    2016-10-12 17:56:00
37810    20083    860    2016-10-12 21:49:00    2016-10-12 21:49:00
37811    20083    556    2016-10-12 19:48:00    2016-10-12 19:48:00
37812    20083    496    2016-10-12 17:06:00    2016-10-12 17:06:00
37813    20084    591    2016-10-12 12:39:00    2016-10-12 12:39:00
37814    20084    938    2016-10-12 16:19:00    2016-10-12 16:19:00
37815    20084    799    2016-10-12 13:49:00    2016-10-12 13:49:00
37816    20084    750    2016-10-12 22:48:00    2016-10-12 22:48:00
37817    20084    774    2016-10-12 07:32:00    2016-10-12 07:32:00
37818    20085    566    2016-10-12 23:20:00    2016-10-12 23:20:00
37819    20085    596    2016-10-12 04:19:00    2016-10-12 04:19:00
37820    20085    483    2016-10-12 13:36:00    2016-10-12 13:36:00
37821    20085    484    2016-10-12 07:31:00    2016-10-12 07:31:00
37822    20085    954    2016-10-12 12:35:00    2016-10-12 12:35:00
37823    20086    779    2016-10-12 15:47:00    2016-10-12 15:47:00
37824    20086    538    2016-10-12 20:27:00    2016-10-12 20:27:00
37825    20086    858    2016-10-12 15:42:00    2016-10-12 15:42:00
37826    20086    724    2016-10-12 06:59:00    2016-10-12 06:59:00
37827    20086    708    2016-10-12 10:45:00    2016-10-12 10:45:00
37828    20087    654    2016-10-12 14:49:00    2016-10-12 14:49:00
37829    20087    475    2016-10-12 20:50:00    2016-10-12 20:50:00
37830    20087    929    2016-10-12 18:47:00    2016-10-12 18:47:00
37831    20087    648    2016-10-12 19:27:00    2016-10-12 19:27:00
37832    20087    707    2016-10-12 22:56:00    2016-10-12 22:56:00
37833    20088    623    2016-10-12 13:05:00    2016-10-12 13:05:00
37834    20088    788    2016-10-12 12:25:00    2016-10-12 12:25:00
37835    20088    539    2016-10-12 12:42:00    2016-10-12 12:42:00
37836    20088    704    2016-10-12 11:14:00    2016-10-12 11:14:00
37837    20088    897    2016-10-12 11:06:00    2016-10-12 11:06:00
37838    20089    564    2016-10-12 05:30:00    2016-10-12 05:30:00
37839    20089    810    2016-10-12 18:20:00    2016-10-12 18:20:00
37840    20089    895    2016-10-12 18:13:00    2016-10-12 18:13:00
37841    20089    889    2016-10-12 02:39:00    2016-10-12 02:39:00
37842    20089    874    2016-10-12 22:26:00    2016-10-12 22:26:00
37843    20090    497    2016-10-12 18:26:00    2016-10-12 18:26:00
37844    20090    829    2016-10-12 01:33:00    2016-10-12 01:33:00
37845    20090    947    2016-10-12 21:02:00    2016-10-12 21:02:00
37846    20090    867    2016-10-12 05:36:00    2016-10-12 05:36:00
37847    20090    794    2016-10-12 04:30:00    2016-10-12 04:30:00
37848    20091    703    2016-10-12 04:47:00    2016-10-12 04:47:00
37849    20091    801    2016-10-12 08:27:00    2016-10-12 08:27:00
37850    20091    567    2016-10-12 22:28:00    2016-10-12 22:28:00
37851    20091    958    2016-10-12 07:00:00    2016-10-12 07:00:00
37852    20091    866    2016-10-12 15:35:00    2016-10-12 15:35:00
37853    20092    955    2016-10-12 22:03:00    2016-10-12 22:03:00
37854    20092    568    2016-10-12 21:26:00    2016-10-12 21:26:00
37855    20092    899    2016-10-12 18:31:00    2016-10-12 18:31:00
37856    20092    608    2016-10-12 21:20:00    2016-10-12 21:20:00
37857    20092    821    2016-10-12 02:14:00    2016-10-12 02:14:00
37858    20093    611    2016-10-12 06:00:00    2016-10-12 06:00:00
37859    20093    783    2016-10-12 18:32:00    2016-10-12 18:32:00
37860    20093    841    2016-10-12 06:43:00    2016-10-12 06:43:00
37861    20093    689    2016-10-12 15:24:00    2016-10-12 15:24:00
37862    20093    805    2016-10-12 05:09:00    2016-10-12 05:09:00
37863    20094    521    2016-10-12 21:09:00    2016-10-12 21:09:00
37864    20094    659    2016-10-12 09:30:00    2016-10-12 09:30:00
37865    20094    854    2016-10-12 12:36:00    2016-10-12 12:36:00
37866    20094    580    2016-10-12 18:44:00    2016-10-12 18:44:00
37867    20094    603    2016-10-12 16:49:00    2016-10-12 16:49:00
37868    20095    506    2016-10-12 01:13:00    2016-10-12 01:13:00
37869    20095    898    2016-10-12 02:39:00    2016-10-12 02:39:00
37870    20095    897    2016-10-12 17:53:00    2016-10-12 17:53:00
37871    20095    912    2016-10-12 01:35:00    2016-10-12 01:35:00
37872    20095    957    2016-10-12 06:26:00    2016-10-12 06:26:00
37873    20096    870    2016-10-12 11:15:00    2016-10-12 11:15:00
37874    20096    561    2016-10-12 07:51:00    2016-10-12 07:51:00
37875    20096    915    2016-10-12 18:52:00    2016-10-12 18:52:00
37876    20096    793    2016-10-12 14:55:00    2016-10-12 14:55:00
37877    20096    847    2016-10-12 23:26:00    2016-10-12 23:26:00
37878    20097    811    2016-10-12 01:14:00    2016-10-12 01:14:00
37879    20097    816    2016-10-12 19:21:00    2016-10-12 19:21:00
37880    20097    475    2016-10-12 14:03:00    2016-10-12 14:03:00
37881    20097    756    2016-10-12 11:17:00    2016-10-12 11:17:00
37882    20097    708    2016-10-12 23:41:00    2016-10-12 23:41:00
37883    20098    499    2016-10-12 09:00:00    2016-10-12 09:00:00
37884    20098    803    2016-10-12 01:42:00    2016-10-12 01:42:00
37885    20098    484    2016-10-12 16:27:00    2016-10-12 16:27:00
37886    20098    676    2016-10-12 10:14:00    2016-10-12 10:14:00
37887    20098    720    2016-10-12 02:06:00    2016-10-12 02:06:00
37888    20099    848    2016-10-12 07:03:00    2016-10-12 07:03:00
37889    20099    767    2016-10-12 05:15:00    2016-10-12 05:15:00
37890    20099    548    2016-10-12 13:10:00    2016-10-12 13:10:00
37891    20099    679    2016-10-12 09:24:00    2016-10-12 09:24:00
37892    20099    531    2016-10-12 21:54:00    2016-10-12 21:54:00
37893    20100    753    2016-10-12 22:21:00    2016-10-12 22:21:00
37894    20100    533    2016-10-12 09:08:00    2016-10-12 09:08:00
37895    20100    593    2016-10-12 17:04:00    2016-10-12 17:04:00
37896    20100    838    2016-10-12 16:41:00    2016-10-12 16:41:00
37897    20100    806    2016-10-12 05:23:00    2016-10-12 05:23:00
37898    20101    595    2016-10-12 03:01:00    2016-10-12 03:01:00
37899    20101    935    2016-10-12 13:56:00    2016-10-12 13:56:00
37900    20101    490    2016-10-12 10:05:00    2016-10-12 10:05:00
37901    20101    617    2016-10-12 21:21:00    2016-10-12 21:21:00
37902    20101    831    2016-10-12 14:14:00    2016-10-12 14:14:00
37903    20102    917    2016-10-12 17:08:00    2016-10-12 17:08:00
37904    20102    486    2016-10-12 22:00:00    2016-10-12 22:00:00
37905    20102    479    2016-10-12 07:34:00    2016-10-12 07:34:00
37906    20102    524    2016-10-12 02:59:00    2016-10-12 02:59:00
37907    20102    772    2016-10-12 07:21:00    2016-10-12 07:21:00
37908    20103    755    2016-10-12 17:22:00    2016-10-12 17:22:00
37909    20103    828    2016-10-12 18:13:00    2016-10-12 18:13:00
37910    20103    813    2016-10-12 11:54:00    2016-10-12 11:54:00
37911    20103    888    2016-10-12 17:16:00    2016-10-12 17:16:00
37912    20103    784    2016-10-12 13:20:00    2016-10-12 13:20:00
37913    20104    816    2016-10-12 09:51:00    2016-10-12 09:51:00
37914    20104    501    2016-10-12 01:13:00    2016-10-12 01:13:00
37915    20104    911    2016-10-12 18:30:00    2016-10-12 18:30:00
37916    20104    555    2016-10-12 09:55:00    2016-10-12 09:55:00
37917    20104    693    2016-10-12 16:42:00    2016-10-12 16:42:00
37918    20105    578    2016-10-12 16:20:00    2016-10-12 16:20:00
37919    20105    485    2016-10-12 22:16:00    2016-10-12 22:16:00
37920    20105    616    2016-10-12 21:19:00    2016-10-12 21:19:00
37921    20105    813    2016-10-12 09:48:00    2016-10-12 09:48:00
37922    20105    858    2016-10-12 07:02:00    2016-10-12 07:02:00
37923    20106    594    2016-10-12 01:28:00    2016-10-12 01:28:00
37924    20106    697    2016-10-12 20:19:00    2016-10-12 20:19:00
37925    20106    822    2016-10-12 06:37:00    2016-10-12 06:37:00
37926    20106    716    2016-10-12 11:44:00    2016-10-12 11:44:00
37927    20106    734    2016-10-12 22:16:00    2016-10-12 22:16:00
37928    20107    542    2016-10-12 18:42:00    2016-10-12 18:42:00
37929    20107    784    2016-10-12 12:29:00    2016-10-12 12:29:00
37930    20107    953    2016-10-12 02:21:00    2016-10-12 02:21:00
37931    20107    624    2016-10-12 18:06:00    2016-10-12 18:06:00
37932    20107    715    2016-10-12 02:57:00    2016-10-12 02:57:00
37933    20108    887    2016-10-12 12:54:00    2016-10-12 12:54:00
37934    20108    868    2016-10-12 23:25:00    2016-10-12 23:25:00
37935    20108    938    2016-10-12 13:58:00    2016-10-12 13:58:00
37936    20108    959    2016-10-12 08:15:00    2016-10-12 08:15:00
37937    20108    553    2016-10-12 18:00:00    2016-10-12 18:00:00
37938    20109    778    2016-10-12 05:41:00    2016-10-12 05:41:00
37939    20109    688    2016-10-12 11:44:00    2016-10-12 11:44:00
37940    20109    707    2016-10-12 20:33:00    2016-10-12 20:33:00
37941    20109    912    2016-10-12 04:52:00    2016-10-12 04:52:00
37942    20109    707    2016-10-12 08:00:00    2016-10-12 08:00:00
37943    20110    750    2016-10-12 16:02:00    2016-10-12 16:02:00
37944    20110    600    2016-10-12 23:43:00    2016-10-12 23:43:00
37945    20110    867    2016-10-12 21:35:00    2016-10-12 21:35:00
37946    20110    786    2016-10-12 17:32:00    2016-10-12 17:32:00
37947    20110    647    2016-10-12 10:30:00    2016-10-12 10:30:00
37948    20111    677    2016-10-12 09:41:00    2016-10-12 09:41:00
37949    20111    949    2016-10-12 07:51:00    2016-10-12 07:51:00
37950    20111    924    2016-10-12 23:19:00    2016-10-12 23:19:00
37951    20111    770    2016-10-12 17:12:00    2016-10-12 17:12:00
37952    20111    599    2016-10-12 07:07:00    2016-10-12 07:07:00
37953    20112    896    2016-10-12 17:20:00    2016-10-12 17:20:00
37954    20112    664    2016-10-12 08:03:00    2016-10-12 08:03:00
37955    20112    756    2016-10-12 13:17:00    2016-10-12 13:17:00
37956    20112    862    2016-10-12 22:19:00    2016-10-12 22:19:00
37957    20112    671    2016-10-12 17:29:00    2016-10-12 17:29:00
37958    20113    941    2016-10-12 22:28:00    2016-10-12 22:28:00
37959    20113    656    2016-10-12 09:48:00    2016-10-12 09:48:00
37960    20113    941    2016-10-12 17:50:00    2016-10-12 17:50:00
37961    20113    784    2016-10-12 10:15:00    2016-10-12 10:15:00
37962    20113    517    2016-10-12 20:24:00    2016-10-12 20:24:00
37963    20114    776    2016-10-12 10:53:00    2016-10-12 10:53:00
37964    20114    647    2016-10-12 15:00:00    2016-10-12 15:00:00
37965    20114    653    2016-10-12 19:07:00    2016-10-12 19:07:00
37966    20114    551    2016-10-12 07:25:00    2016-10-12 07:25:00
37967    20114    741    2016-10-12 19:18:00    2016-10-12 19:18:00
37968    20115    784    2016-10-12 23:02:00    2016-10-12 23:02:00
37969    20115    856    2016-10-12 17:14:00    2016-10-12 17:14:00
37970    20115    638    2016-10-12 16:25:00    2016-10-12 16:25:00
37971    20115    910    2016-10-12 19:09:00    2016-10-12 19:09:00
37972    20115    553    2016-10-12 19:15:00    2016-10-12 19:15:00
37973    20116    556    2016-10-12 12:52:00    2016-10-12 12:52:00
37974    20116    727    2016-10-12 07:51:00    2016-10-12 07:51:00
37975    20116    681    2016-10-12 06:33:00    2016-10-12 06:33:00
37976    20116    728    2016-10-12 05:06:00    2016-10-12 05:06:00
37977    20116    790    2016-10-12 15:09:00    2016-10-12 15:09:00
37978    20117    794    2016-10-12 18:38:00    2016-10-12 18:38:00
37979    20117    787    2016-10-12 09:04:00    2016-10-12 09:04:00
37980    20117    783    2016-10-12 17:40:00    2016-10-12 17:40:00
37981    20117    532    2016-10-12 20:46:00    2016-10-12 20:46:00
37982    20117    765    2016-10-12 04:01:00    2016-10-12 04:01:00
37983    20118    560    2016-10-12 06:08:00    2016-10-12 06:08:00
37984    20118    539    2016-10-12 10:29:00    2016-10-12 10:29:00
37985    20118    523    2016-10-12 16:08:00    2016-10-12 16:08:00
37986    20118    923    2016-10-12 14:42:00    2016-10-12 14:42:00
37987    20118    669    2016-10-12 10:57:00    2016-10-12 10:57:00
37988    20119    948    2016-10-12 20:49:00    2016-10-12 20:49:00
37989    20119    543    2016-10-12 18:55:00    2016-10-12 18:55:00
37990    20119    829    2016-10-12 12:05:00    2016-10-12 12:05:00
37991    20119    574    2016-10-12 23:10:00    2016-10-12 23:10:00
37992    20119    593    2016-10-12 03:18:00    2016-10-12 03:18:00
37993    20120    511    2016-10-12 14:36:00    2016-10-12 14:36:00
37994    20120    776    2016-10-12 21:38:00    2016-10-12 21:38:00
37995    20120    645    2016-10-12 17:09:00    2016-10-12 17:09:00
37996    20120    884    2016-10-12 04:30:00    2016-10-12 04:30:00
37997    20120    496    2016-10-12 03:24:00    2016-10-12 03:24:00
37998    20121    735    2016-10-12 14:59:00    2016-10-12 14:59:00
37999    20121    517    2016-10-12 18:03:00    2016-10-12 18:03:00
38000    20121    645    2016-10-12 11:16:00    2016-10-12 11:16:00
38001    20121    899    2016-10-12 14:39:00    2016-10-12 14:39:00
38002    20121    950    2016-10-12 08:56:00    2016-10-12 08:56:00
38003    20122    484    2016-10-12 08:05:00    2016-10-12 08:05:00
38004    20122    750    2016-10-12 09:58:00    2016-10-12 09:58:00
38005    20122    698    2016-10-12 09:41:00    2016-10-12 09:41:00
38006    20122    780    2016-10-12 01:01:00    2016-10-12 01:01:00
38007    20122    482    2016-10-12 06:50:00    2016-10-12 06:50:00
38008    20123    506    2016-10-12 10:00:00    2016-10-12 10:00:00
38009    20123    604    2016-10-12 02:48:00    2016-10-12 02:48:00
38010    20123    951    2016-10-12 08:09:00    2016-10-12 08:09:00
38011    20123    793    2016-10-12 13:53:00    2016-10-12 13:53:00
38012    20123    703    2016-10-12 03:10:00    2016-10-12 03:10:00
38013    20124    940    2016-10-12 21:38:00    2016-10-12 21:38:00
38014    20124    939    2016-10-12 01:38:00    2016-10-12 01:38:00
38015    20124    871    2016-10-12 15:31:00    2016-10-12 15:31:00
38016    20124    699    2016-10-12 13:57:00    2016-10-12 13:57:00
38017    20124    480    2016-10-12 13:00:00    2016-10-12 13:00:00
38018    20125    526    2016-10-12 16:45:00    2016-10-12 16:45:00
38019    20125    925    2016-10-12 07:11:00    2016-10-12 07:11:00
38020    20125    888    2016-10-12 07:09:00    2016-10-12 07:09:00
38021    20125    561    2016-10-12 12:20:00    2016-10-12 12:20:00
38022    20125    625    2016-10-12 12:35:00    2016-10-12 12:35:00
38023    20126    856    2016-10-12 14:40:00    2016-10-12 14:40:00
38024    20126    769    2016-10-12 09:21:00    2016-10-12 09:21:00
38025    20126    538    2016-10-12 23:41:00    2016-10-12 23:41:00
38026    20126    745    2016-10-12 21:54:00    2016-10-12 21:54:00
38027    20126    814    2016-10-12 12:14:00    2016-10-12 12:14:00
38028    20127    881    2016-10-12 21:33:00    2016-10-12 21:33:00
38029    20127    956    2016-10-12 04:22:00    2016-10-12 04:22:00
38030    20127    634    2016-10-12 22:55:00    2016-10-12 22:55:00
38031    20127    889    2016-10-12 18:15:00    2016-10-12 18:15:00
38032    20127    693    2016-10-12 22:00:00    2016-10-12 22:00:00
38033    20128    499    2016-10-12 15:31:00    2016-10-12 15:31:00
38034    20128    894    2016-10-12 15:00:00    2016-10-12 15:00:00
38035    20128    648    2016-10-12 21:44:00    2016-10-12 21:44:00
38036    20128    815    2016-10-12 02:05:00    2016-10-12 02:05:00
38037    20128    610    2016-10-12 07:47:00    2016-10-12 07:47:00
38038    20129    503    2016-10-12 20:26:00    2016-10-12 20:26:00
38039    20129    652    2016-10-12 10:28:00    2016-10-12 10:28:00
38040    20129    802    2016-10-12 21:49:00    2016-10-12 21:49:00
38041    20129    784    2016-10-12 13:35:00    2016-10-12 13:35:00
38042    20129    541    2016-10-12 11:39:00    2016-10-12 11:39:00
38043    20130    850    2016-10-12 01:04:00    2016-10-12 01:04:00
38044    20130    903    2016-10-12 11:33:00    2016-10-12 11:33:00
38045    20130    865    2016-10-12 02:50:00    2016-10-12 02:50:00
38046    20130    558    2016-10-12 09:00:00    2016-10-12 09:00:00
38047    20130    593    2016-10-12 23:44:00    2016-10-12 23:44:00
38048    20131    763    2016-10-12 04:00:00    2016-10-12 04:00:00
38049    20131    933    2016-10-12 22:27:00    2016-10-12 22:27:00
38050    20131    826    2016-10-12 15:09:00    2016-10-12 15:09:00
38051    20131    567    2016-10-12 06:32:00    2016-10-12 06:32:00
38052    20131    601    2016-10-12 18:14:00    2016-10-12 18:14:00
38053    20132    646    2016-10-12 07:20:00    2016-10-12 07:20:00
38054    20132    490    2016-10-12 03:48:00    2016-10-12 03:48:00
38055    20132    823    2016-10-12 17:46:00    2016-10-12 17:46:00
38056    20132    961    2016-10-12 18:26:00    2016-10-12 18:26:00
38057    20132    645    2016-10-12 21:15:00    2016-10-12 21:15:00
38058    20133    477    2016-10-12 05:28:00    2016-10-12 05:28:00
38059    20133    930    2016-10-12 22:54:00    2016-10-12 22:54:00
38060    20133    857    2016-10-12 12:00:00    2016-10-12 12:00:00
38061    20133    855    2016-10-12 16:59:00    2016-10-12 16:59:00
38062    20133    686    2016-10-12 20:31:00    2016-10-12 20:31:00
38063    20134    524    2016-10-12 16:42:00    2016-10-12 16:42:00
38064    20134    705    2016-10-12 04:10:00    2016-10-12 04:10:00
38065    20134    524    2016-10-12 19:51:00    2016-10-12 19:51:00
38066    20134    931    2016-10-12 22:33:00    2016-10-12 22:33:00
38067    20134    741    2016-10-12 20:34:00    2016-10-12 20:34:00
38068    20135    861    2016-10-12 15:04:00    2016-10-12 15:04:00
38069    20135    512    2016-10-12 03:25:00    2016-10-12 03:25:00
38070    20135    869    2016-10-12 09:32:00    2016-10-12 09:32:00
38071    20135    765    2016-10-12 12:52:00    2016-10-12 12:52:00
38072    20135    531    2016-10-12 11:16:00    2016-10-12 11:16:00
38073    20136    933    2016-10-12 18:11:00    2016-10-12 18:11:00
38074    20136    639    2016-10-12 18:58:00    2016-10-12 18:58:00
38075    20136    741    2016-10-12 03:53:00    2016-10-12 03:53:00
38076    20136    626    2016-10-12 17:37:00    2016-10-12 17:37:00
38077    20136    562    2016-10-12 11:24:00    2016-10-12 11:24:00
38078    20137    706    2016-10-12 19:43:00    2016-10-12 19:43:00
38079    20137    652    2016-10-12 02:58:00    2016-10-12 02:58:00
38080    20137    955    2016-10-12 08:40:00    2016-10-12 08:40:00
38081    20137    808    2016-10-12 23:39:00    2016-10-12 23:39:00
38082    20137    949    2016-10-12 23:58:00    2016-10-12 23:58:00
38083    20138    706    2016-10-12 21:16:00    2016-10-12 21:16:00
38084    20138    919    2016-10-12 07:07:00    2016-10-12 07:07:00
38085    20138    835    2016-10-12 11:20:00    2016-10-12 11:20:00
38086    20138    883    2016-10-12 05:24:00    2016-10-12 05:24:00
38087    20138    509    2016-10-12 15:53:00    2016-10-12 15:53:00
38088    20139    479    2016-10-12 05:35:00    2016-10-12 05:35:00
38089    20139    518    2016-10-12 13:26:00    2016-10-12 13:26:00
38090    20139    502    2016-10-12 17:45:00    2016-10-12 17:45:00
38091    20139    550    2016-10-12 14:14:00    2016-10-12 14:14:00
38092    20139    899    2016-10-12 08:19:00    2016-10-12 08:19:00
38093    20140    713    2016-10-12 20:45:00    2016-10-12 20:45:00
38094    20140    613    2016-10-12 09:34:00    2016-10-12 09:34:00
38095    20140    605    2016-10-12 22:32:00    2016-10-12 22:32:00
38096    20140    722    2016-10-12 01:19:00    2016-10-12 01:19:00
38097    20140    521    2016-10-12 15:49:00    2016-10-12 15:49:00
38098    20141    812    2016-10-12 07:41:00    2016-10-12 07:41:00
38099    20141    671    2016-10-12 13:48:00    2016-10-12 13:48:00
38100    20141    821    2016-10-12 08:05:00    2016-10-12 08:05:00
38101    20141    899    2016-10-12 23:05:00    2016-10-12 23:05:00
38102    20141    672    2016-10-12 20:48:00    2016-10-12 20:48:00
38103    20142    489    2016-10-12 13:45:00    2016-10-12 13:45:00
38104    20142    465    2016-10-12 03:40:00    2016-10-12 03:40:00
38105    20142    813    2016-10-12 01:46:00    2016-10-12 01:46:00
38106    20142    723    2016-10-12 12:49:00    2016-10-12 12:49:00
38107    20142    783    2016-10-12 09:47:00    2016-10-12 09:47:00
38108    20143    503    2016-10-12 09:55:00    2016-10-12 09:55:00
38109    20143    848    2016-10-12 18:00:00    2016-10-12 18:00:00
38110    20143    502    2016-10-12 12:25:00    2016-10-12 12:25:00
38111    20143    524    2016-10-12 11:23:00    2016-10-12 11:23:00
38112    20143    842    2016-10-12 22:43:00    2016-10-12 22:43:00
38113    20144    780    2016-10-12 16:34:00    2016-10-12 16:34:00
38114    20144    726    2016-10-12 07:16:00    2016-10-12 07:16:00
38115    20144    609    2016-10-12 07:44:00    2016-10-12 07:44:00
38116    20144    755    2016-10-12 15:00:00    2016-10-12 15:00:00
38117    20144    834    2016-10-12 03:08:00    2016-10-12 03:08:00
38118    20145    734    2016-10-12 11:09:00    2016-10-12 11:09:00
38119    20145    583    2016-10-12 17:58:00    2016-10-12 17:58:00
38120    20145    724    2016-10-12 05:20:00    2016-10-12 05:20:00
38121    20145    769    2016-10-12 22:56:00    2016-10-12 22:56:00
38122    20145    812    2016-10-12 21:56:00    2016-10-12 21:56:00
38123    20146    818    2016-10-12 11:45:00    2016-10-12 11:45:00
38124    20146    719    2016-10-12 17:32:00    2016-10-12 17:32:00
38125    20146    951    2016-10-12 03:00:00    2016-10-12 03:00:00
38126    20146    679    2016-10-12 03:58:00    2016-10-12 03:58:00
38127    20146    718    2016-10-12 04:39:00    2016-10-12 04:39:00
38128    20147    668    2016-10-12 21:01:00    2016-10-12 21:01:00
38129    20147    634    2016-10-12 23:32:00    2016-10-12 23:32:00
38130    20147    755    2016-10-12 17:59:00    2016-10-12 17:59:00
38131    20147    670    2016-10-12 12:00:00    2016-10-12 12:00:00
38132    20147    508    2016-10-12 20:41:00    2016-10-12 20:41:00
38133    20148    618    2016-10-12 08:15:00    2016-10-12 08:15:00
38134    20148    643    2016-10-12 11:01:00    2016-10-12 11:01:00
38135    20148    814    2016-10-12 10:12:00    2016-10-12 10:12:00
38136    20148    624    2016-10-12 22:47:00    2016-10-12 22:47:00
38137    20148    876    2016-10-12 22:41:00    2016-10-12 22:41:00
38138    20149    816    2016-10-12 08:01:00    2016-10-12 08:01:00
38139    20149    753    2016-10-12 11:38:00    2016-10-12 11:38:00
38140    20149    606    2016-10-12 15:29:00    2016-10-12 15:29:00
38141    20149    721    2016-10-12 02:28:00    2016-10-12 02:28:00
38142    20149    652    2016-10-12 02:42:00    2016-10-12 02:42:00
38143    20150    953    2016-10-12 18:00:00    2016-10-12 18:00:00
38144    20150    767    2016-10-12 11:26:00    2016-10-12 11:26:00
38145    20150    529    2016-10-12 02:48:00    2016-10-12 02:48:00
38146    20150    610    2016-10-12 13:50:00    2016-10-12 13:50:00
38147    20150    644    2016-10-12 20:52:00    2016-10-12 20:52:00
38148    20151    855    2016-10-12 19:49:00    2016-10-12 19:49:00
38149    20151    699    2016-10-12 18:17:00    2016-10-12 18:17:00
38150    20151    751    2016-10-12 04:54:00    2016-10-12 04:54:00
38151    20151    655    2016-10-12 12:23:00    2016-10-12 12:23:00
38152    20151    715    2016-10-12 17:04:00    2016-10-12 17:04:00
38153    20152    739    2016-10-12 01:47:00    2016-10-12 01:47:00
38154    20152    932    2016-10-12 14:33:00    2016-10-12 14:33:00
38155    20152    819    2016-10-12 02:49:00    2016-10-12 02:49:00
38156    20152    618    2016-10-12 16:51:00    2016-10-12 16:51:00
38157    20152    780    2016-10-12 01:14:00    2016-10-12 01:14:00
38158    20153    653    2016-10-11 01:53:00    2016-10-11 01:53:00
38159    20153    868    2016-10-11 20:32:00    2016-10-11 20:32:00
38160    20153    825    2016-10-11 05:51:00    2016-10-11 05:51:00
38161    20153    552    2016-10-11 02:52:00    2016-10-11 02:52:00
38162    20153    822    2016-10-11 15:22:00    2016-10-11 15:22:00
38163    20154    582    2016-10-11 19:10:00    2016-10-11 19:10:00
38164    20154    611    2016-10-11 18:10:00    2016-10-11 18:10:00
38165    20154    641    2016-10-11 05:02:00    2016-10-11 05:02:00
38166    20154    739    2016-10-11 18:24:00    2016-10-11 18:24:00
38167    20154    795    2016-10-11 09:01:00    2016-10-11 09:01:00
38168    20155    513    2016-10-11 02:18:00    2016-10-11 02:18:00
38169    20155    615    2016-10-11 12:46:00    2016-10-11 12:46:00
38170    20155    823    2016-10-11 06:32:00    2016-10-11 06:32:00
38171    20155    660    2016-10-11 15:07:00    2016-10-11 15:07:00
38172    20155    618    2016-10-11 15:00:00    2016-10-11 15:00:00
38173    20156    854    2016-10-11 23:54:00    2016-10-11 23:54:00
38174    20156    956    2016-10-11 02:57:00    2016-10-11 02:57:00
38175    20156    541    2016-10-11 15:58:00    2016-10-11 15:58:00
38176    20156    511    2016-10-11 21:37:00    2016-10-11 21:37:00
38177    20156    730    2016-10-11 21:26:00    2016-10-11 21:26:00
38178    20157    865    2016-10-11 03:10:00    2016-10-11 03:10:00
38179    20157    842    2016-10-11 22:58:00    2016-10-11 22:58:00
38180    20157    483    2016-10-11 08:24:00    2016-10-11 08:24:00
38181    20157    929    2016-10-11 22:33:00    2016-10-11 22:33:00
38182    20157    517    2016-10-11 15:32:00    2016-10-11 15:32:00
38183    20158    661    2016-10-11 01:29:00    2016-10-11 01:29:00
38184    20158    861    2016-10-11 23:14:00    2016-10-11 23:14:00
38185    20158    626    2016-10-11 14:15:00    2016-10-11 14:15:00
38186    20158    509    2016-10-11 07:48:00    2016-10-11 07:48:00
38187    20158    941    2016-10-11 04:35:00    2016-10-11 04:35:00
38188    20159    612    2016-10-11 22:23:00    2016-10-11 22:23:00
38189    20159    595    2016-10-11 09:12:00    2016-10-11 09:12:00
38190    20159    754    2016-10-11 06:58:00    2016-10-11 06:58:00
38191    20159    779    2016-10-11 01:40:00    2016-10-11 01:40:00
38192    20159    552    2016-10-11 23:42:00    2016-10-11 23:42:00
38193    20160    854    2016-10-11 14:21:00    2016-10-11 14:21:00
38194    20160    672    2016-10-11 19:54:00    2016-10-11 19:54:00
38195    20160    481    2016-10-11 13:49:00    2016-10-11 13:49:00
38196    20160    726    2016-10-11 06:08:00    2016-10-11 06:08:00
38197    20160    943    2016-10-11 21:46:00    2016-10-11 21:46:00
38198    20161    957    2016-10-10 04:57:00    2016-10-10 04:57:00
38199    20161    607    2016-10-10 17:18:00    2016-10-10 17:18:00
38200    20161    704    2016-10-10 16:08:00    2016-10-10 16:08:00
38201    20161    712    2016-10-10 21:40:00    2016-10-10 21:40:00
38202    20161    845    2016-10-10 16:52:00    2016-10-10 16:52:00
38203    20162    656    2016-10-10 02:04:00    2016-10-10 02:04:00
38204    20162    500    2016-10-10 08:38:00    2016-10-10 08:38:00
38205    20162    911    2016-10-10 15:05:00    2016-10-10 15:05:00
38206    20162    706    2016-10-10 13:21:00    2016-10-10 13:21:00
38207    20162    788    2016-10-10 12:18:00    2016-10-10 12:18:00
38208    20163    712    2016-10-10 22:17:00    2016-10-10 22:17:00
38209    20163    567    2016-10-10 02:45:00    2016-10-10 02:45:00
38210    20163    758    2016-10-10 22:19:00    2016-10-10 22:19:00
38211    20163    870    2016-10-10 12:20:00    2016-10-10 12:20:00
38212    20163    492    2016-10-10 17:02:00    2016-10-10 17:02:00
38213    20164    750    2016-10-10 03:50:00    2016-10-10 03:50:00
38214    20164    587    2016-10-10 01:37:00    2016-10-10 01:37:00
38215    20164    696    2016-10-10 01:20:00    2016-10-10 01:20:00
38216    20164    893    2016-10-10 11:14:00    2016-10-10 11:14:00
38217    20164    664    2016-10-10 09:36:00    2016-10-10 09:36:00
38218    20165    741    2016-10-10 02:13:00    2016-10-10 02:13:00
38219    20165    757    2016-10-10 04:39:00    2016-10-10 04:39:00
38220    20165    478    2016-10-10 14:47:00    2016-10-10 14:47:00
38221    20165    947    2016-10-10 12:10:00    2016-10-10 12:10:00
38222    20165    891    2016-10-10 03:52:00    2016-10-10 03:52:00
38223    20166    948    2016-10-10 11:53:00    2016-10-10 11:53:00
38224    20166    887    2016-10-10 03:40:00    2016-10-10 03:40:00
38225    20166    569    2016-10-10 17:04:00    2016-10-10 17:04:00
38226    20166    771    2016-10-10 21:19:00    2016-10-10 21:19:00
38227    20166    629    2016-10-10 09:34:00    2016-10-10 09:34:00
38228    20167    702    2016-10-10 20:33:00    2016-10-10 20:33:00
38229    20167    713    2016-10-10 12:40:00    2016-10-10 12:40:00
38230    20167    778    2016-10-10 12:25:00    2016-10-10 12:25:00
38231    20167    910    2016-10-10 02:04:00    2016-10-10 02:04:00
38232    20167    821    2016-10-10 12:27:00    2016-10-10 12:27:00
38233    20168    931    2016-10-10 23:45:00    2016-10-10 23:45:00
38234    20168    902    2016-10-10 23:39:00    2016-10-10 23:39:00
38235    20168    507    2016-10-10 11:08:00    2016-10-10 11:08:00
38236    20168    782    2016-10-10 05:58:00    2016-10-10 05:58:00
38237    20168    744    2016-10-10 21:11:00    2016-10-10 21:11:00
38238    20169    931    2016-10-10 12:56:00    2016-10-10 12:56:00
38239    20169    588    2016-10-10 10:38:00    2016-10-10 10:38:00
38240    20169    949    2016-10-10 07:08:00    2016-10-10 07:08:00
38241    20169    705    2016-10-10 05:44:00    2016-10-10 05:44:00
38242    20169    503    2016-10-10 04:49:00    2016-10-10 04:49:00
38243    20170    526    2016-10-10 05:41:00    2016-10-10 05:41:00
38244    20170    896    2016-10-10 11:53:00    2016-10-10 11:53:00
38245    20170    750    2016-10-10 01:37:00    2016-10-10 01:37:00
38246    20170    595    2016-10-10 07:29:00    2016-10-10 07:29:00
38247    20170    945    2016-10-10 18:49:00    2016-10-10 18:49:00
38248    20171    908    2016-10-10 08:51:00    2016-10-10 08:51:00
38249    20171    667    2016-10-10 02:44:00    2016-10-10 02:44:00
38250    20171    853    2016-10-10 06:56:00    2016-10-10 06:56:00
38251    20171    570    2016-10-10 06:09:00    2016-10-10 06:09:00
38252    20171    479    2016-10-10 23:10:00    2016-10-10 23:10:00
38253    20172    824    2016-10-10 02:21:00    2016-10-10 02:21:00
38254    20172    645    2016-10-10 19:11:00    2016-10-10 19:11:00
38255    20172    477    2016-10-10 07:01:00    2016-10-10 07:01:00
38256    20172    750    2016-10-10 15:39:00    2016-10-10 15:39:00
38257    20172    668    2016-10-10 08:13:00    2016-10-10 08:13:00
38258    20173    775    2016-10-10 06:12:00    2016-10-10 06:12:00
38259    20173    630    2016-10-10 09:36:00    2016-10-10 09:36:00
38260    20173    928    2016-10-10 01:03:00    2016-10-10 01:03:00
38261    20173    707    2016-10-10 17:05:00    2016-10-10 17:05:00
38262    20173    539    2016-10-10 06:43:00    2016-10-10 06:43:00
38263    20174    543    2016-10-10 13:35:00    2016-10-10 13:35:00
38264    20174    638    2016-10-10 01:55:00    2016-10-10 01:55:00
38265    20174    631    2016-10-10 01:12:00    2016-10-10 01:12:00
38266    20174    793    2016-10-10 16:14:00    2016-10-10 16:14:00
38267    20174    788    2016-10-10 01:14:00    2016-10-10 01:14:00
38268    20175    676    2016-10-10 18:19:00    2016-10-10 18:19:00
38269    20175    491    2016-10-10 03:00:00    2016-10-10 03:00:00
38270    20175    896    2016-10-10 17:48:00    2016-10-10 17:48:00
38271    20175    774    2016-10-10 02:47:00    2016-10-10 02:47:00
38272    20175    516    2016-10-10 05:03:00    2016-10-10 05:03:00
38273    20176    624    2016-10-10 05:45:00    2016-10-10 05:45:00
38274    20176    656    2016-10-10 21:51:00    2016-10-10 21:51:00
38275    20176    815    2016-10-10 18:18:00    2016-10-10 18:18:00
38276    20176    484    2016-10-10 18:02:00    2016-10-10 18:02:00
38277    20176    470    2016-10-10 05:25:00    2016-10-10 05:25:00
38278    20177    565    2016-10-10 16:03:00    2016-10-10 16:03:00
38279    20177    815    2016-10-10 07:34:00    2016-10-10 07:34:00
38280    20177    595    2016-10-10 06:50:00    2016-10-10 06:50:00
38281    20177    622    2016-10-10 01:43:00    2016-10-10 01:43:00
38282    20177    486    2016-10-10 20:14:00    2016-10-10 20:14:00
38283    20178    947    2016-10-10 01:22:00    2016-10-10 01:22:00
38284    20178    598    2016-10-10 02:29:00    2016-10-10 02:29:00
38285    20178    652    2016-10-10 01:55:00    2016-10-10 01:55:00
38286    20178    831    2016-10-10 18:53:00    2016-10-10 18:53:00
38287    20178    555    2016-10-10 06:20:00    2016-10-10 06:20:00
38288    20179    486    2016-10-10 21:53:00    2016-10-10 21:53:00
38289    20179    581    2016-10-10 02:31:00    2016-10-10 02:31:00
38290    20179    690    2016-10-10 09:59:00    2016-10-10 09:59:00
38291    20179    575    2016-10-10 05:14:00    2016-10-10 05:14:00
38292    20179    598    2016-10-10 05:03:00    2016-10-10 05:03:00
38293    20180    938    2016-10-10 20:05:00    2016-10-10 20:05:00
38294    20180    579    2016-10-10 20:53:00    2016-10-10 20:53:00
38295    20180    906    2016-10-10 19:58:00    2016-10-10 19:58:00
38296    20180    670    2016-10-10 18:42:00    2016-10-10 18:42:00
38297    20180    789    2016-10-10 22:03:00    2016-10-10 22:03:00
38298    20181    866    2016-10-10 16:59:00    2016-10-10 16:59:00
38299    20181    647    2016-10-10 04:07:00    2016-10-10 04:07:00
38300    20181    542    2016-10-10 02:11:00    2016-10-10 02:11:00
38301    20181    939    2016-10-10 18:54:00    2016-10-10 18:54:00
38302    20181    631    2016-10-10 05:22:00    2016-10-10 05:22:00
38303    20182    794    2016-10-10 03:34:00    2016-10-10 03:34:00
38304    20182    850    2016-10-10 21:46:00    2016-10-10 21:46:00
38305    20182    563    2016-10-10 21:17:00    2016-10-10 21:17:00
38306    20182    614    2016-10-10 23:29:00    2016-10-10 23:29:00
38307    20182    925    2016-10-10 19:48:00    2016-10-10 19:48:00
38308    20183    567    2016-10-10 11:04:00    2016-10-10 11:04:00
38309    20183    948    2016-10-10 21:02:00    2016-10-10 21:02:00
38310    20183    867    2016-10-10 11:23:00    2016-10-10 11:23:00
38311    20183    907    2016-10-10 12:05:00    2016-10-10 12:05:00
38312    20183    685    2016-10-10 21:36:00    2016-10-10 21:36:00
38313    20184    615    2016-10-10 08:03:00    2016-10-10 08:03:00
38314    20184    743    2016-10-10 01:12:00    2016-10-10 01:12:00
38315    20184    839    2016-10-10 19:54:00    2016-10-10 19:54:00
38316    20184    831    2016-10-10 01:14:00    2016-10-10 01:14:00
38317    20184    479    2016-10-10 18:36:00    2016-10-10 18:36:00
38318    20185    906    2016-10-10 10:12:00    2016-10-10 10:12:00
38319    20185    749    2016-10-10 15:49:00    2016-10-10 15:49:00
38320    20185    510    2016-10-10 21:29:00    2016-10-10 21:29:00
38321    20185    957    2016-10-10 23:36:00    2016-10-10 23:36:00
38322    20185    723    2016-10-10 23:36:00    2016-10-10 23:36:00
38323    20186    541    2016-10-09 13:43:00    2016-10-09 13:43:00
38324    20186    521    2016-10-09 07:01:00    2016-10-09 07:01:00
38325    20186    568    2016-10-09 11:41:00    2016-10-09 11:41:00
38326    20186    727    2016-10-09 01:57:00    2016-10-09 01:57:00
38327    20186    812    2016-10-09 12:54:00    2016-10-09 12:54:00
38328    20187    813    2016-10-09 22:36:00    2016-10-09 22:36:00
38329    20187    481    2016-10-09 01:03:00    2016-10-09 01:03:00
38330    20187    849    2016-10-09 14:05:00    2016-10-09 14:05:00
38331    20187    885    2016-10-09 03:46:00    2016-10-09 03:46:00
38332    20187    488    2016-10-09 21:25:00    2016-10-09 21:25:00
38333    20188    575    2016-10-09 03:25:00    2016-10-09 03:25:00
38334    20188    811    2016-10-09 07:28:00    2016-10-09 07:28:00
38335    20188    946    2016-10-09 23:51:00    2016-10-09 23:51:00
38336    20188    841    2016-10-09 01:56:00    2016-10-09 01:56:00
38337    20188    685    2016-10-09 12:29:00    2016-10-09 12:29:00
38338    20189    497    2016-10-09 16:53:00    2016-10-09 16:53:00
38339    20189    476    2016-10-09 12:50:00    2016-10-09 12:50:00
38340    20189    959    2016-10-09 21:16:00    2016-10-09 21:16:00
38341    20189    711    2016-10-09 02:58:00    2016-10-09 02:58:00
38342    20189    710    2016-10-09 17:35:00    2016-10-09 17:35:00
38343    20190    718    2016-10-09 09:51:00    2016-10-09 09:51:00
38344    20190    857    2016-10-09 22:36:00    2016-10-09 22:36:00
38345    20190    646    2016-10-09 05:27:00    2016-10-09 05:27:00
38346    20190    673    2016-10-09 22:16:00    2016-10-09 22:16:00
38347    20190    633    2016-10-09 01:38:00    2016-10-09 01:38:00
38348    20191    553    2016-10-09 05:06:00    2016-10-09 05:06:00
38349    20191    864    2016-10-09 18:37:00    2016-10-09 18:37:00
38350    20191    791    2016-10-09 19:59:00    2016-10-09 19:59:00
38351    20191    659    2016-10-09 04:47:00    2016-10-09 04:47:00
38352    20191    839    2016-10-09 14:04:00    2016-10-09 14:04:00
38353    20192    852    2016-10-09 08:47:00    2016-10-09 08:47:00
38354    20192    537    2016-10-09 20:08:00    2016-10-09 20:08:00
38355    20192    931    2016-10-09 06:26:00    2016-10-09 06:26:00
38356    20192    946    2016-10-09 16:49:00    2016-10-09 16:49:00
38357    20192    733    2016-10-09 23:21:00    2016-10-09 23:21:00
38358    20193    518    2016-10-09 18:50:00    2016-10-09 18:50:00
38359    20193    532    2016-10-09 22:51:00    2016-10-09 22:51:00
38360    20193    600    2016-10-09 23:54:00    2016-10-09 23:54:00
38361    20193    929    2016-10-09 18:00:00    2016-10-09 18:00:00
38362    20193    818    2016-10-09 02:36:00    2016-10-09 02:36:00
38363    20194    814    2016-10-09 20:06:00    2016-10-09 20:06:00
38364    20194    791    2016-10-09 15:02:00    2016-10-09 15:02:00
38365    20194    639    2016-10-09 08:01:00    2016-10-09 08:01:00
38366    20194    627    2016-10-09 13:41:00    2016-10-09 13:41:00
38367    20194    872    2016-10-09 10:43:00    2016-10-09 10:43:00
38368    20195    827    2016-10-09 22:02:00    2016-10-09 22:02:00
38369    20195    651    2016-10-09 10:58:00    2016-10-09 10:58:00
38370    20195    797    2016-10-09 03:00:00    2016-10-09 03:00:00
38371    20195    871    2016-10-09 04:38:00    2016-10-09 04:38:00
38372    20195    811    2016-10-09 17:59:00    2016-10-09 17:59:00
38373    20196    782    2016-10-09 22:12:00    2016-10-09 22:12:00
38374    20196    675    2016-10-09 11:02:00    2016-10-09 11:02:00
38375    20196    879    2016-10-09 20:08:00    2016-10-09 20:08:00
38376    20196    879    2016-10-09 05:31:00    2016-10-09 05:31:00
38377    20196    719    2016-10-09 16:55:00    2016-10-09 16:55:00
38378    20197    668    2016-10-09 03:48:00    2016-10-09 03:48:00
38379    20197    723    2016-10-09 06:49:00    2016-10-09 06:49:00
38380    20197    588    2016-10-09 20:36:00    2016-10-09 20:36:00
38381    20197    938    2016-10-09 07:50:00    2016-10-09 07:50:00
38382    20197    741    2016-10-09 17:50:00    2016-10-09 17:50:00
38383    20198    826    2016-10-09 02:20:00    2016-10-09 02:20:00
38384    20198    639    2016-10-09 11:10:00    2016-10-09 11:10:00
38385    20198    714    2016-10-09 13:59:00    2016-10-09 13:59:00
38386    20198    749    2016-10-09 21:33:00    2016-10-09 21:33:00
38387    20198    709    2016-10-09 14:41:00    2016-10-09 14:41:00
38388    20199    563    2016-10-09 01:57:00    2016-10-09 01:57:00
38389    20199    471    2016-10-09 07:57:00    2016-10-09 07:57:00
38390    20199    680    2016-10-09 05:45:00    2016-10-09 05:45:00
38391    20199    774    2016-10-09 06:19:00    2016-10-09 06:19:00
38392    20199    900    2016-10-09 13:55:00    2016-10-09 13:55:00
38393    20200    665    2016-10-09 13:25:00    2016-10-09 13:25:00
38394    20200    566    2016-10-09 18:48:00    2016-10-09 18:48:00
38395    20200    711    2016-10-09 08:26:00    2016-10-09 08:26:00
38396    20200    856    2016-10-09 15:02:00    2016-10-09 15:02:00
38397    20200    668    2016-10-09 06:26:00    2016-10-09 06:26:00
38398    20201    680    2016-10-10 00:00:00    2016-10-10 00:00:00
38399    20201    480    2016-10-09 11:20:00    2016-10-09 11:20:00
38400    20201    871    2016-10-09 11:50:00    2016-10-09 11:50:00
38401    20201    739    2016-10-09 15:15:00    2016-10-09 15:15:00
38402    20201    739    2016-10-09 11:35:00    2016-10-09 11:35:00
38403    20202    661    2016-10-09 13:54:00    2016-10-09 13:54:00
38404    20202    617    2016-10-09 12:27:00    2016-10-09 12:27:00
38405    20202    525    2016-10-09 20:04:00    2016-10-09 20:04:00
38406    20202    526    2016-10-09 03:46:00    2016-10-09 03:46:00
38407    20202    817    2016-10-09 22:44:00    2016-10-09 22:44:00
38408    20203    821    2016-10-09 13:00:00    2016-10-09 13:00:00
38409    20203    861    2016-10-09 21:19:00    2016-10-09 21:19:00
38410    20203    784    2016-10-09 14:12:00    2016-10-09 14:12:00
38411    20203    871    2016-10-09 20:27:00    2016-10-09 20:27:00
38412    20203    612    2016-10-09 23:34:00    2016-10-09 23:34:00
38413    20204    692    2016-10-09 21:51:00    2016-10-09 21:51:00
38414    20204    733    2016-10-09 15:04:00    2016-10-09 15:04:00
38415    20204    558    2016-10-09 10:07:00    2016-10-09 10:07:00
38416    20204    696    2016-10-09 11:07:00    2016-10-09 11:07:00
38417    20204    698    2016-10-09 01:45:00    2016-10-09 01:45:00
38418    20205    742    2016-10-09 07:16:00    2016-10-09 07:16:00
38419    20205    624    2016-10-09 18:46:00    2016-10-09 18:46:00
38420    20205    548    2016-10-09 03:49:00    2016-10-09 03:49:00
38421    20205    498    2016-10-09 19:45:00    2016-10-09 19:45:00
38422    20205    851    2016-10-09 19:55:00    2016-10-09 19:55:00
38423    20206    640    2016-10-09 02:00:00    2016-10-09 02:00:00
38424    20206    660    2016-10-09 11:14:00    2016-10-09 11:14:00
38425    20206    621    2016-10-09 03:51:00    2016-10-09 03:51:00
38426    20206    534    2016-10-09 21:51:00    2016-10-09 21:51:00
38427    20206    515    2016-10-09 14:49:00    2016-10-09 14:49:00
38428    20207    732    2016-10-09 18:29:00    2016-10-09 18:29:00
38429    20207    534    2016-10-09 10:04:00    2016-10-09 10:04:00
38430    20207    597    2016-10-09 15:14:00    2016-10-09 15:14:00
38431    20207    520    2016-10-09 15:47:00    2016-10-09 15:47:00
38432    20207    562    2016-10-09 08:25:00    2016-10-09 08:25:00
38433    20208    626    2016-10-09 20:33:00    2016-10-09 20:33:00
38434    20208    691    2016-10-09 19:16:00    2016-10-09 19:16:00
38435    20208    564    2016-10-09 01:29:00    2016-10-09 01:29:00
38436    20208    532    2016-10-09 19:26:00    2016-10-09 19:26:00
38437    20208    691    2016-10-09 09:22:00    2016-10-09 09:22:00
38438    20209    899    2016-10-09 17:29:00    2016-10-09 17:29:00
38439    20209    587    2016-10-09 20:08:00    2016-10-09 20:08:00
38440    20209    954    2016-10-09 02:39:00    2016-10-09 02:39:00
38441    20209    875    2016-10-09 11:35:00    2016-10-09 11:35:00
38442    20209    748    2016-10-09 14:00:00    2016-10-09 14:00:00
38443    20210    627    2016-10-09 22:45:00    2016-10-09 22:45:00
38444    20210    743    2016-10-09 21:56:00    2016-10-09 21:56:00
38445    20210    566    2016-10-09 13:09:00    2016-10-09 13:09:00
38446    20210    688    2016-10-09 22:08:00    2016-10-09 22:08:00
38447    20210    939    2016-10-09 14:34:00    2016-10-09 14:34:00
38448    20211    797    2016-10-09 01:39:00    2016-10-09 01:39:00
38449    20211    521    2016-10-09 22:12:00    2016-10-09 22:12:00
38450    20211    584    2016-10-09 07:45:00    2016-10-09 07:45:00
38451    20211    902    2016-10-09 23:06:00    2016-10-09 23:06:00
38452    20211    793    2016-10-09 02:09:00    2016-10-09 02:09:00
38453    20212    779    2016-10-09 19:15:00    2016-10-09 19:15:00
38454    20212    813    2016-10-09 17:26:00    2016-10-09 17:26:00
38455    20212    610    2016-10-09 09:56:00    2016-10-09 09:56:00
38456    20212    627    2016-10-09 14:59:00    2016-10-09 14:59:00
38457    20212    501    2016-10-09 14:00:00    2016-10-09 14:00:00
38458    20213    648    2016-10-09 16:44:00    2016-10-09 16:44:00
38459    20213    485    2016-10-09 06:15:00    2016-10-09 06:15:00
38460    20213    544    2016-10-09 02:17:00    2016-10-09 02:17:00
38461    20213    496    2016-10-09 05:27:00    2016-10-09 05:27:00
38462    20213    549    2016-10-09 22:22:00    2016-10-09 22:22:00
38463    20214    642    2016-10-09 16:02:00    2016-10-09 16:02:00
38464    20214    497    2016-10-09 13:59:00    2016-10-09 13:59:00
38465    20214    503    2016-10-09 14:07:00    2016-10-09 14:07:00
38466    20214    901    2016-10-09 02:49:00    2016-10-09 02:49:00
38467    20214    679    2016-10-09 23:25:00    2016-10-09 23:25:00
38468    20215    783    2016-10-09 04:20:00    2016-10-09 04:20:00
38469    20215    536    2016-10-09 06:31:00    2016-10-09 06:31:00
38470    20215    708    2016-10-09 21:05:00    2016-10-09 21:05:00
38471    20215    596    2016-10-09 14:13:00    2016-10-09 14:13:00
38472    20215    496    2016-10-09 10:00:00    2016-10-09 10:00:00
38473    20216    906    2016-10-09 21:31:00    2016-10-09 21:31:00
38474    20216    650    2016-10-09 15:38:00    2016-10-09 15:38:00
38475    20216    690    2016-10-09 04:25:00    2016-10-09 04:25:00
38476    20216    837    2016-10-09 19:08:00    2016-10-09 19:08:00
38477    20216    500    2016-10-09 01:38:00    2016-10-09 01:38:00
38478    20217    850    2016-10-09 05:17:00    2016-10-09 05:17:00
38479    20217    805    2016-10-09 01:28:00    2016-10-09 01:28:00
38480    20217    938    2016-10-09 11:13:00    2016-10-09 11:13:00
38481    20217    620    2016-10-09 18:58:00    2016-10-09 18:58:00
38482    20217    771    2016-10-09 01:45:00    2016-10-09 01:45:00
38483    20218    478    2016-10-09 19:38:00    2016-10-09 19:38:00
38484    20218    762    2016-10-09 13:01:00    2016-10-09 13:01:00
38485    20218    775    2016-10-09 23:49:00    2016-10-09 23:49:00
38486    20218    872    2016-10-09 14:39:00    2016-10-09 14:39:00
38487    20218    596    2016-10-09 02:55:00    2016-10-09 02:55:00
38488    20219    539    2016-10-09 01:31:00    2016-10-09 01:31:00
38489    20219    934    2016-10-09 13:53:00    2016-10-09 13:53:00
38490    20219    617    2016-10-09 03:31:00    2016-10-09 03:31:00
38491    20219    515    2016-10-09 04:26:00    2016-10-09 04:26:00
38492    20219    723    2016-10-09 15:02:00    2016-10-09 15:02:00
38493    20220    904    2016-10-09 15:15:00    2016-10-09 15:15:00
38494    20220    939    2016-10-09 06:21:00    2016-10-09 06:21:00
38495    20220    881    2016-10-09 15:41:00    2016-10-09 15:41:00
38496    20220    576    2016-10-09 12:18:00    2016-10-09 12:18:00
38497    20220    583    2016-10-09 21:24:00    2016-10-09 21:24:00
38498    20221    626    2016-10-09 09:35:00    2016-10-09 09:35:00
38499    20221    768    2016-10-09 08:10:00    2016-10-09 08:10:00
38500    20221    510    2016-10-09 15:26:00    2016-10-09 15:26:00
38501    20221    685    2016-10-09 11:07:00    2016-10-09 11:07:00
38502    20221    910    2016-10-09 21:48:00    2016-10-09 21:48:00
38503    20222    594    2016-10-09 23:21:00    2016-10-09 23:21:00
38504    20222    945    2016-10-09 07:18:00    2016-10-09 07:18:00
38505    20222    838    2016-10-09 06:38:00    2016-10-09 06:38:00
38506    20222    546    2016-10-09 08:44:00    2016-10-09 08:44:00
38507    20222    518    2016-10-09 21:48:00    2016-10-09 21:48:00
38508    20223    799    2016-10-09 10:28:00    2016-10-09 10:28:00
38509    20223    826    2016-10-09 15:20:00    2016-10-09 15:20:00
38510    20223    743    2016-10-09 16:50:00    2016-10-09 16:50:00
38511    20223    502    2016-10-09 01:04:00    2016-10-09 01:04:00
38512    20223    473    2016-10-09 11:14:00    2016-10-09 11:14:00
38513    20224    699    2016-10-09 05:08:00    2016-10-09 05:08:00
38514    20224    939    2016-10-09 12:57:00    2016-10-09 12:57:00
38515    20224    476    2016-10-09 16:33:00    2016-10-09 16:33:00
38516    20224    918    2016-10-09 17:12:00    2016-10-09 17:12:00
38517    20224    895    2016-10-09 17:47:00    2016-10-09 17:47:00
38518    20225    728    2016-10-09 04:24:00    2016-10-09 04:24:00
38519    20225    637    2016-10-09 04:58:00    2016-10-09 04:58:00
38520    20225    490    2016-10-09 21:48:00    2016-10-09 21:48:00
38521    20225    897    2016-10-09 12:03:00    2016-10-09 12:03:00
38522    20225    625    2016-10-09 09:12:00    2016-10-09 09:12:00
38523    20226    673    2016-10-09 06:54:00    2016-10-09 06:54:00
38524    20226    929    2016-10-09 15:45:00    2016-10-09 15:45:00
38525    20226    674    2016-10-09 23:12:00    2016-10-09 23:12:00
38526    20226    639    2016-10-09 12:28:00    2016-10-09 12:28:00
38527    20226    906    2016-10-09 19:06:00    2016-10-09 19:06:00
38528    20227    488    2016-10-09 19:35:00    2016-10-09 19:35:00
38529    20227    931    2016-10-09 22:09:00    2016-10-09 22:09:00
38530    20227    944    2016-10-09 06:48:00    2016-10-09 06:48:00
38531    20227    535    2016-10-09 14:59:00    2016-10-09 14:59:00
38532    20227    632    2016-10-09 15:42:00    2016-10-09 15:42:00
38533    20228    826    2016-10-09 02:49:00    2016-10-09 02:49:00
38534    20228    691    2016-10-09 14:34:00    2016-10-09 14:34:00
38535    20228    676    2016-10-09 10:17:00    2016-10-09 10:17:00
38536    20228    803    2016-10-09 13:47:00    2016-10-09 13:47:00
38537    20228    618    2016-10-09 11:08:00    2016-10-09 11:08:00
38538    20229    961    2016-10-09 09:16:00    2016-10-09 09:16:00
38539    20229    621    2016-10-09 12:50:00    2016-10-09 12:50:00
38540    20229    869    2016-10-09 05:30:00    2016-10-09 05:30:00
38541    20229    523    2016-10-09 05:33:00    2016-10-09 05:33:00
38542    20229    667    2016-10-09 01:30:00    2016-10-09 01:30:00
38543    20230    682    2016-10-09 06:16:00    2016-10-09 06:16:00
38544    20230    478    2016-10-09 12:45:00    2016-10-09 12:45:00
38545    20230    858    2016-10-09 18:30:00    2016-10-09 18:30:00
38546    20230    613    2016-10-09 03:25:00    2016-10-09 03:25:00
38547    20230    667    2016-10-09 18:59:00    2016-10-09 18:59:00
38548    20231    539    2016-10-09 06:45:00    2016-10-09 06:45:00
38549    20231    620    2016-10-09 19:11:00    2016-10-09 19:11:00
38550    20231    901    2016-10-09 11:36:00    2016-10-09 11:36:00
38551    20231    809    2016-10-09 23:42:00    2016-10-09 23:42:00
38552    20231    859    2016-10-09 15:11:00    2016-10-09 15:11:00
38553    20232    608    2016-10-09 09:10:00    2016-10-09 09:10:00
38554    20232    724    2016-10-09 14:29:00    2016-10-09 14:29:00
38555    20232    647    2016-10-09 17:56:00    2016-10-09 17:56:00
38556    20232    661    2016-10-09 08:08:00    2016-10-09 08:08:00
38557    20232    740    2016-10-09 01:07:00    2016-10-09 01:07:00
38558    20233    632    2016-10-09 16:55:00    2016-10-09 16:55:00
38559    20233    575    2016-10-09 07:17:00    2016-10-09 07:17:00
38560    20233    922    2016-10-09 14:38:00    2016-10-09 14:38:00
38561    20233    465    2016-10-09 21:15:00    2016-10-09 21:15:00
38562    20233    721    2016-10-09 02:59:00    2016-10-09 02:59:00
38563    20234    931    2016-10-09 22:05:00    2016-10-09 22:05:00
38564    20234    792    2016-10-09 14:13:00    2016-10-09 14:13:00
38565    20234    583    2016-10-09 13:51:00    2016-10-09 13:51:00
38566    20234    921    2016-10-09 04:26:00    2016-10-09 04:26:00
38567    20234    576    2016-10-09 18:11:00    2016-10-09 18:11:00
38568    20235    931    2016-10-09 18:55:00    2016-10-09 18:55:00
38569    20235    848    2016-10-09 14:03:00    2016-10-09 14:03:00
38570    20235    688    2016-10-09 08:12:00    2016-10-09 08:12:00
38571    20235    728    2016-10-09 18:10:00    2016-10-09 18:10:00
38572    20235    696    2016-10-09 15:26:00    2016-10-09 15:26:00
38573    20236    726    2016-10-09 07:38:00    2016-10-09 07:38:00
38574    20236    479    2016-10-09 23:06:00    2016-10-09 23:06:00
38575    20236    588    2016-10-09 09:41:00    2016-10-09 09:41:00
38576    20236    548    2016-10-09 05:15:00    2016-10-09 05:15:00
38577    20236    515    2016-10-09 16:36:00    2016-10-09 16:36:00
38578    20237    705    2016-10-09 05:55:00    2016-10-09 05:55:00
38579    20237    699    2016-10-09 11:10:00    2016-10-09 11:10:00
38580    20237    923    2016-10-09 20:53:00    2016-10-09 20:53:00
38581    20237    648    2016-10-09 09:16:00    2016-10-09 09:16:00
38582    20237    866    2016-10-09 03:53:00    2016-10-09 03:53:00
38583    20238    549    2016-10-09 16:41:00    2016-10-09 16:41:00
38584    20238    786    2016-10-09 05:27:00    2016-10-09 05:27:00
38585    20238    673    2016-10-09 03:58:00    2016-10-09 03:58:00
38586    20238    923    2016-10-09 13:25:00    2016-10-09 13:25:00
38587    20238    570    2016-10-09 07:21:00    2016-10-09 07:21:00
38588    20239    538    2016-10-09 02:55:00    2016-10-09 02:55:00
38589    20239    492    2016-10-09 04:44:00    2016-10-09 04:44:00
38590    20239    803    2016-10-09 23:10:00    2016-10-09 23:10:00
38591    20239    960    2016-10-09 05:31:00    2016-10-09 05:31:00
38592    20239    718    2016-10-09 21:37:00    2016-10-09 21:37:00
38593    20240    638    2016-10-09 21:19:00    2016-10-09 21:19:00
38594    20240    538    2016-10-09 16:56:00    2016-10-09 16:56:00
38595    20240    574    2016-10-09 13:26:00    2016-10-09 13:26:00
38596    20240    957    2016-10-09 09:45:00    2016-10-09 09:45:00
38597    20240    809    2016-10-09 18:21:00    2016-10-09 18:21:00
38598    20241    469    2016-10-09 21:00:00    2016-10-09 21:00:00
38599    20241    649    2016-10-09 05:48:00    2016-10-09 05:48:00
38600    20241    479    2016-10-10 00:00:00    2016-10-10 00:00:00
38601    20241    490    2016-10-09 05:55:00    2016-10-09 05:55:00
38602    20241    797    2016-10-09 17:30:00    2016-10-09 17:30:00
38603    20242    508    2016-10-09 14:18:00    2016-10-09 14:18:00
38604    20242    621    2016-10-09 10:30:00    2016-10-09 10:30:00
38605    20242    753    2016-10-09 01:46:00    2016-10-09 01:46:00
38606    20242    538    2016-10-09 18:45:00    2016-10-09 18:45:00
38607    20242    520    2016-10-09 03:10:00    2016-10-09 03:10:00
38608    20243    888    2016-10-09 04:36:00    2016-10-09 04:36:00
38609    20243    614    2016-10-09 06:35:00    2016-10-09 06:35:00
38610    20243    938    2016-10-09 07:52:00    2016-10-09 07:52:00
38611    20243    752    2016-10-09 02:11:00    2016-10-09 02:11:00
38612    20243    742    2016-10-09 18:47:00    2016-10-09 18:47:00
38613    20244    829    2016-10-09 07:30:00    2016-10-09 07:30:00
38614    20244    477    2016-10-09 18:23:00    2016-10-09 18:23:00
38615    20244    543    2016-10-09 20:24:00    2016-10-09 20:24:00
38616    20244    796    2016-10-09 10:11:00    2016-10-09 10:11:00
38617    20244    748    2016-10-09 10:39:00    2016-10-09 10:39:00
38618    20245    767    2016-10-09 03:03:00    2016-10-09 03:03:00
38619    20245    512    2016-10-09 02:00:00    2016-10-09 02:00:00
38620    20245    809    2016-10-09 17:51:00    2016-10-09 17:51:00
38621    20245    929    2016-10-09 03:20:00    2016-10-09 03:20:00
38622    20245    725    2016-10-09 05:28:00    2016-10-09 05:28:00
38623    20246    845    2016-10-09 13:11:00    2016-10-09 13:11:00
38624    20246    881    2016-10-09 08:34:00    2016-10-09 08:34:00
38625    20246    475    2016-10-09 19:24:00    2016-10-09 19:24:00
38626    20246    785    2016-10-09 08:14:00    2016-10-09 08:14:00
38627    20246    481    2016-10-09 16:19:00    2016-10-09 16:19:00
38628    20247    745    2016-10-09 05:07:00    2016-10-09 05:07:00
38629    20247    832    2016-10-09 16:28:00    2016-10-09 16:28:00
38630    20247    502    2016-10-09 07:50:00    2016-10-09 07:50:00
38631    20247    857    2016-10-09 03:59:00    2016-10-09 03:59:00
38632    20247    705    2016-10-09 10:26:00    2016-10-09 10:26:00
38633    20248    509    2016-10-09 12:00:00    2016-10-09 12:00:00
38634    20248    771    2016-10-09 03:00:00    2016-10-09 03:00:00
38635    20248    834    2016-10-09 10:23:00    2016-10-09 10:23:00
38636    20248    885    2016-10-09 04:55:00    2016-10-09 04:55:00
38637    20248    616    2016-10-09 05:05:00    2016-10-09 05:05:00
38638    20249    665    2016-10-09 05:28:00    2016-10-09 05:28:00
38639    20249    759    2016-10-09 10:45:00    2016-10-09 10:45:00
38640    20249    814    2016-10-09 05:00:00    2016-10-09 05:00:00
38641    20249    958    2016-10-09 03:49:00    2016-10-09 03:49:00
38642    20249    901    2016-10-09 12:20:00    2016-10-09 12:20:00
38643    20250    513    2016-10-09 11:41:00    2016-10-09 11:41:00
38644    20250    475    2016-10-09 08:56:00    2016-10-09 08:56:00
38645    20250    765    2016-10-09 15:35:00    2016-10-09 15:35:00
38646    20250    791    2016-10-09 17:33:00    2016-10-09 17:33:00
38647    20250    951    2016-10-09 12:36:00    2016-10-09 12:36:00
38648    20251    749    2016-10-17 01:43:00    2016-10-17 01:43:00
38649    20251    776    2016-10-17 06:21:00    2016-10-17 06:21:00
38650    20251    744    2016-10-17 22:55:00    2016-10-17 22:55:00
38651    20251    586    2016-10-17 01:35:00    2016-10-17 01:35:00
38652    20251    534    2016-10-17 20:35:00    2016-10-17 20:35:00
38653    20252    760    2016-10-17 05:36:00    2016-10-17 05:36:00
38654    20252    587    2016-10-17 08:54:00    2016-10-17 08:54:00
38655    20252    568    2016-10-17 10:03:00    2016-10-17 10:03:00
38656    20252    619    2016-10-17 05:59:00    2016-10-17 05:59:00
38657    20252    664    2016-10-17 06:05:00    2016-10-17 06:05:00
38658    20253    549    2016-10-17 22:32:00    2016-10-17 22:32:00
38659    20253    574    2016-10-17 17:58:00    2016-10-17 17:58:00
38660    20253    532    2016-10-17 03:44:00    2016-10-17 03:44:00
38661    20253    749    2016-10-17 10:06:00    2016-10-17 10:06:00
38662    20253    592    2016-10-17 19:41:00    2016-10-17 19:41:00
38663    20254    846    2016-10-17 11:45:00    2016-10-17 11:45:00
38664    20254    594    2016-10-17 23:15:00    2016-10-17 23:15:00
38665    20254    956    2016-10-17 05:23:00    2016-10-17 05:23:00
38666    20254    518    2016-10-17 22:22:00    2016-10-17 22:22:00
38667    20254    594    2016-10-17 16:53:00    2016-10-17 16:53:00
38668    20255    826    2016-10-17 14:12:00    2016-10-17 14:12:00
38669    20255    645    2016-10-17 14:40:00    2016-10-17 14:40:00
38670    20255    745    2016-10-17 10:20:00    2016-10-17 10:20:00
38671    20255    800    2016-10-17 03:04:00    2016-10-17 03:04:00
38672    20255    612    2016-10-17 19:09:00    2016-10-17 19:09:00
38673    20256    561    2016-10-17 16:34:00    2016-10-17 16:34:00
38674    20256    534    2016-10-17 06:26:00    2016-10-17 06:26:00
38675    20256    738    2016-10-17 11:05:00    2016-10-17 11:05:00
38676    20256    675    2016-10-17 03:39:00    2016-10-17 03:39:00
38677    20256    919    2016-10-17 07:34:00    2016-10-17 07:34:00
38678    20257    852    2016-10-17 20:00:00    2016-10-17 20:00:00
38679    20257    674    2016-10-17 02:21:00    2016-10-17 02:21:00
38680    20257    561    2016-10-17 06:11:00    2016-10-17 06:11:00
38681    20257    874    2016-10-17 19:57:00    2016-10-17 19:57:00
38682    20257    849    2016-10-17 04:43:00    2016-10-17 04:43:00
38683    20258    898    2016-10-17 07:49:00    2016-10-17 07:49:00
38684    20258    517    2016-10-17 09:18:00    2016-10-17 09:18:00
38685    20258    766    2016-10-17 04:05:00    2016-10-17 04:05:00
38686    20258    752    2016-10-17 08:23:00    2016-10-17 08:23:00
38687    20258    577    2016-10-17 20:54:00    2016-10-17 20:54:00
38688    20259    850    2016-10-17 10:32:00    2016-10-17 10:32:00
38689    20259    651    2016-10-17 14:29:00    2016-10-17 14:29:00
38690    20259    686    2016-10-17 19:15:00    2016-10-17 19:15:00
38691    20259    815    2016-10-17 15:13:00    2016-10-17 15:13:00
38692    20259    599    2016-10-17 12:59:00    2016-10-17 12:59:00
38693    20260    841    2016-10-17 09:47:00    2016-10-17 09:47:00
38694    20260    873    2016-10-17 13:32:00    2016-10-17 13:32:00
38695    20260    816    2016-10-17 23:03:00    2016-10-17 23:03:00
38696    20260    954    2016-10-17 18:13:00    2016-10-17 18:13:00
38697    20260    782    2016-10-17 22:51:00    2016-10-17 22:51:00
38698    20261    744    2016-10-17 07:15:00    2016-10-17 07:15:00
38699    20261    798    2016-10-17 20:30:00    2016-10-17 20:30:00
38700    20261    567    2016-10-17 11:47:00    2016-10-17 11:47:00
38701    20261    700    2016-10-17 01:32:00    2016-10-17 01:32:00
38702    20261    558    2016-10-17 15:04:00    2016-10-17 15:04:00
38703    20262    654    2016-10-17 15:56:00    2016-10-17 15:56:00
38704    20262    773    2016-10-17 01:04:00    2016-10-17 01:04:00
38705    20262    508    2016-10-17 04:05:00    2016-10-17 04:05:00
38706    20262    673    2016-10-17 11:04:00    2016-10-17 11:04:00
38707    20262    561    2016-10-17 18:20:00    2016-10-17 18:20:00
38708    20263    584    2016-10-17 03:04:00    2016-10-17 03:04:00
38709    20263    744    2016-10-17 11:15:00    2016-10-17 11:15:00
38710    20263    627    2016-10-17 13:41:00    2016-10-17 13:41:00
38711    20263    763    2016-10-17 11:13:00    2016-10-17 11:13:00
38712    20263    540    2016-10-17 12:21:00    2016-10-17 12:21:00
38713    20264    912    2016-10-17 20:10:00    2016-10-17 20:10:00
38714    20264    649    2016-10-17 18:09:00    2016-10-17 18:09:00
38715    20264    620    2016-10-17 13:33:00    2016-10-17 13:33:00
38716    20264    626    2016-10-17 13:20:00    2016-10-17 13:20:00
38717    20264    478    2016-10-17 18:57:00    2016-10-17 18:57:00
38718    20265    873    2016-10-17 01:39:00    2016-10-17 01:39:00
38719    20265    821    2016-10-17 06:00:00    2016-10-17 06:00:00
38720    20265    853    2016-10-17 21:43:00    2016-10-17 21:43:00
38721    20265    735    2016-10-17 08:08:00    2016-10-17 08:08:00
38722    20265    814    2016-10-17 02:36:00    2016-10-17 02:36:00
38723    20266    761    2016-10-17 21:29:00    2016-10-17 21:29:00
38724    20266    870    2016-10-17 05:00:00    2016-10-17 05:00:00
38725    20266    778    2016-10-17 04:04:00    2016-10-17 04:04:00
38726    20266    638    2016-10-17 01:28:00    2016-10-17 01:28:00
38727    20266    652    2016-10-17 12:18:00    2016-10-17 12:18:00
38728    20267    720    2016-10-17 20:53:00    2016-10-17 20:53:00
38729    20267    866    2016-10-17 02:36:00    2016-10-17 02:36:00
38730    20267    834    2016-10-17 21:17:00    2016-10-17 21:17:00
38731    20267    605    2016-10-17 11:47:00    2016-10-17 11:47:00
38732    20267    813    2016-10-17 20:57:00    2016-10-17 20:57:00
38733    20268    505    2016-10-17 03:04:00    2016-10-17 03:04:00
38734    20268    917    2016-10-17 15:48:00    2016-10-17 15:48:00
38735    20268    748    2016-10-17 15:30:00    2016-10-17 15:30:00
38736    20268    666    2016-10-17 04:31:00    2016-10-17 04:31:00
38737    20268    894    2016-10-17 08:13:00    2016-10-17 08:13:00
38738    20269    508    2016-10-17 19:11:00    2016-10-17 19:11:00
38739    20269    520    2016-10-17 19:15:00    2016-10-17 19:15:00
38740    20269    554    2016-10-17 22:33:00    2016-10-17 22:33:00
38741    20269    641    2016-10-17 01:58:00    2016-10-17 01:58:00
38742    20269    953    2016-10-17 03:46:00    2016-10-17 03:46:00
38743    20270    775    2016-10-17 17:18:00    2016-10-17 17:18:00
38744    20270    579    2016-10-17 13:54:00    2016-10-17 13:54:00
38745    20270    679    2016-10-17 13:22:00    2016-10-17 13:22:00
38746    20270    604    2016-10-17 07:44:00    2016-10-17 07:44:00
38747    20270    545    2016-10-17 04:20:00    2016-10-17 04:20:00
38748    20271    925    2016-10-17 01:03:00    2016-10-17 01:03:00
38749    20271    820    2016-10-17 05:22:00    2016-10-17 05:22:00
38750    20271    472    2016-10-17 10:22:00    2016-10-17 10:22:00
38751    20271    806    2016-10-17 11:19:00    2016-10-17 11:19:00
38752    20271    534    2016-10-17 07:52:00    2016-10-17 07:52:00
38753    20272    939    2016-10-17 04:27:00    2016-10-17 04:27:00
38754    20272    483    2016-10-17 18:48:00    2016-10-17 18:48:00
38755    20272    625    2016-10-17 03:26:00    2016-10-17 03:26:00
38756    20272    890    2016-10-17 21:25:00    2016-10-17 21:25:00
38757    20272    868    2016-10-17 13:22:00    2016-10-17 13:22:00
38758    20273    882    2016-10-17 12:07:00    2016-10-17 12:07:00
38759    20273    876    2016-10-17 07:55:00    2016-10-17 07:55:00
38760    20273    479    2016-10-17 10:15:00    2016-10-17 10:15:00
38761    20273    583    2016-10-17 04:05:00    2016-10-17 04:05:00
38762    20273    471    2016-10-17 02:27:00    2016-10-17 02:27:00
38763    20274    798    2016-10-17 18:25:00    2016-10-17 18:25:00
38764    20274    527    2016-10-17 09:00:00    2016-10-17 09:00:00
38765    20274    554    2016-10-17 03:53:00    2016-10-17 03:53:00
38766    20274    617    2016-10-17 22:03:00    2016-10-17 22:03:00
38767    20274    563    2016-10-17 23:17:00    2016-10-17 23:17:00
38768    20275    769    2016-10-17 03:55:00    2016-10-17 03:55:00
38769    20275    866    2016-10-17 17:44:00    2016-10-17 17:44:00
38770    20275    624    2016-10-17 20:39:00    2016-10-17 20:39:00
38771    20275    693    2016-10-17 17:04:00    2016-10-17 17:04:00
38772    20275    588    2016-10-17 14:58:00    2016-10-17 14:58:00
38773    20276    605    2016-10-17 21:05:00    2016-10-17 21:05:00
38774    20276    759    2016-10-17 11:17:00    2016-10-17 11:17:00
38775    20276    560    2016-10-17 06:35:00    2016-10-17 06:35:00
38776    20276    945    2016-10-17 13:53:00    2016-10-17 13:53:00
38777    20276    540    2016-10-17 06:09:00    2016-10-17 06:09:00
38778    20277    918    2016-10-17 10:15:00    2016-10-17 10:15:00
38779    20277    735    2016-10-17 03:02:00    2016-10-17 03:02:00
38780    20277    927    2016-10-17 08:13:00    2016-10-17 08:13:00
38781    20277    747    2016-10-17 11:01:00    2016-10-17 11:01:00
38782    20277    731    2016-10-17 19:52:00    2016-10-17 19:52:00
38783    20278    907    2016-10-17 19:37:00    2016-10-17 19:37:00
38784    20278    867    2016-10-17 01:06:00    2016-10-17 01:06:00
38785    20278    816    2016-10-17 07:03:00    2016-10-17 07:03:00
38786    20278    551    2016-10-17 14:55:00    2016-10-17 14:55:00
38787    20278    828    2016-10-17 11:38:00    2016-10-17 11:38:00
38788    20279    491    2016-10-17 02:00:00    2016-10-17 02:00:00
38789    20279    779    2016-10-17 18:25:00    2016-10-17 18:25:00
38790    20279    786    2016-10-17 09:53:00    2016-10-17 09:53:00
38791    20279    917    2016-10-17 12:00:00    2016-10-17 12:00:00
38792    20279    627    2016-10-17 04:21:00    2016-10-17 04:21:00
38793    20280    765    2016-10-17 02:04:00    2016-10-17 02:04:00
38794    20280    884    2016-10-17 07:41:00    2016-10-17 07:41:00
38795    20280    491    2016-10-17 08:23:00    2016-10-17 08:23:00
38796    20280    798    2016-10-17 22:11:00    2016-10-17 22:11:00
38797    20280    913    2016-10-17 05:52:00    2016-10-17 05:52:00
38798    20281    877    2016-10-17 15:42:00    2016-10-17 15:42:00
38799    20281    755    2016-10-17 07:11:00    2016-10-17 07:11:00
38800    20281    728    2016-10-17 05:36:00    2016-10-17 05:36:00
38801    20281    834    2016-10-17 22:40:00    2016-10-17 22:40:00
38802    20281    879    2016-10-17 19:56:00    2016-10-17 19:56:00
38803    20282    809    2016-10-17 21:36:00    2016-10-17 21:36:00
38804    20282    941    2016-10-17 21:59:00    2016-10-17 21:59:00
38805    20282    752    2016-10-17 12:40:00    2016-10-17 12:40:00
38806    20282    512    2016-10-17 04:23:00    2016-10-17 04:23:00
38807    20282    922    2016-10-17 22:12:00    2016-10-17 22:12:00
38808    20283    603    2016-10-17 09:22:00    2016-10-17 09:22:00
38809    20283    782    2016-10-17 19:44:00    2016-10-17 19:44:00
38810    20283    560    2016-10-17 17:19:00    2016-10-17 17:19:00
38811    20283    704    2016-10-17 18:01:00    2016-10-17 18:01:00
38812    20283    607    2016-10-17 21:00:00    2016-10-17 21:00:00
38813    20284    605    2016-10-17 04:08:00    2016-10-17 04:08:00
38814    20284    502    2016-10-17 06:34:00    2016-10-17 06:34:00
38815    20284    659    2016-10-17 23:05:00    2016-10-17 23:05:00
38816    20284    634    2016-10-17 08:26:00    2016-10-17 08:26:00
38817    20284    583    2016-10-17 18:08:00    2016-10-17 18:08:00
38818    20285    791    2016-10-17 17:17:00    2016-10-17 17:17:00
38819    20285    581    2016-10-17 17:35:00    2016-10-17 17:35:00
38820    20285    593    2016-10-17 02:45:00    2016-10-17 02:45:00
38821    20285    657    2016-10-17 13:48:00    2016-10-17 13:48:00
38822    20285    480    2016-10-17 06:17:00    2016-10-17 06:17:00
38823    20286    523    2016-10-17 21:33:00    2016-10-17 21:33:00
38824    20286    878    2016-10-17 22:21:00    2016-10-17 22:21:00
38825    20286    479    2016-10-17 09:43:00    2016-10-17 09:43:00
38826    20286    502    2016-10-17 13:51:00    2016-10-17 13:51:00
38827    20286    757    2016-10-17 21:50:00    2016-10-17 21:50:00
38828    20287    931    2016-10-17 11:45:00    2016-10-17 11:45:00
38829    20287    623    2016-10-17 11:31:00    2016-10-17 11:31:00
38830    20287    539    2016-10-17 01:59:00    2016-10-17 01:59:00
38831    20287    879    2016-10-17 11:37:00    2016-10-17 11:37:00
38832    20287    680    2016-10-17 22:17:00    2016-10-17 22:17:00
38833    20288    782    2016-10-17 23:35:00    2016-10-17 23:35:00
38834    20288    857    2016-10-17 17:55:00    2016-10-17 17:55:00
38835    20288    528    2016-10-17 10:08:00    2016-10-17 10:08:00
38836    20288    681    2016-10-17 23:48:00    2016-10-17 23:48:00
38837    20288    587    2016-10-17 01:59:00    2016-10-17 01:59:00
38838    20289    784    2016-10-17 21:56:00    2016-10-17 21:56:00
38839    20289    582    2016-10-17 15:37:00    2016-10-17 15:37:00
38840    20289    465    2016-10-17 10:02:00    2016-10-17 10:02:00
38841    20289    606    2016-10-17 22:09:00    2016-10-17 22:09:00
38842    20289    610    2016-10-17 07:05:00    2016-10-17 07:05:00
38843    20290    665    2016-10-17 18:36:00    2016-10-17 18:36:00
38844    20290    696    2016-10-17 10:12:00    2016-10-17 10:12:00
38845    20290    763    2016-10-17 14:00:00    2016-10-17 14:00:00
38846    20290    540    2016-10-17 18:08:00    2016-10-17 18:08:00
38847    20290    602    2016-10-17 16:24:00    2016-10-17 16:24:00
38848    20291    534    2016-10-17 17:46:00    2016-10-17 17:46:00
38849    20291    549    2016-10-17 05:21:00    2016-10-17 05:21:00
38850    20291    880    2016-10-17 21:13:00    2016-10-17 21:13:00
38851    20291    779    2016-10-17 01:52:00    2016-10-17 01:52:00
38852    20291    921    2016-10-17 02:35:00    2016-10-17 02:35:00
38853    20292    898    2016-10-17 07:28:00    2016-10-17 07:28:00
38854    20292    548    2016-10-17 19:42:00    2016-10-17 19:42:00
38855    20292    697    2016-10-17 17:17:00    2016-10-17 17:17:00
38856    20292    870    2016-10-17 11:37:00    2016-10-17 11:37:00
38857    20292    682    2016-10-17 01:53:00    2016-10-17 01:53:00
38858    20293    630    2016-10-17 21:38:00    2016-10-17 21:38:00
38859    20293    490    2016-10-17 20:32:00    2016-10-17 20:32:00
38860    20293    873    2016-10-17 07:35:00    2016-10-17 07:35:00
38861    20293    930    2016-10-17 15:50:00    2016-10-17 15:50:00
38862    20293    549    2016-10-17 02:06:00    2016-10-17 02:06:00
38863    20294    863    2016-10-17 04:39:00    2016-10-17 04:39:00
38864    20294    811    2016-10-17 23:00:00    2016-10-17 23:00:00
38865    20294    836    2016-10-17 10:45:00    2016-10-17 10:45:00
38866    20294    938    2016-10-17 19:04:00    2016-10-17 19:04:00
38867    20294    664    2016-10-17 03:28:00    2016-10-17 03:28:00
38868    20295    728    2016-10-17 02:25:00    2016-10-17 02:25:00
38869    20295    647    2016-10-17 19:07:00    2016-10-17 19:07:00
38870    20295    715    2016-10-17 03:56:00    2016-10-17 03:56:00
38871    20295    839    2016-10-17 20:35:00    2016-10-17 20:35:00
38872    20295    474    2016-10-17 07:15:00    2016-10-17 07:15:00
38873    20296    948    2016-10-17 16:00:00    2016-10-17 16:00:00
38874    20296    550    2016-10-17 13:13:00    2016-10-17 13:13:00
38875    20296    598    2016-10-17 15:00:00    2016-10-17 15:00:00
38876    20296    648    2016-10-17 14:19:00    2016-10-17 14:19:00
38877    20296    481    2016-10-17 16:20:00    2016-10-17 16:20:00
38878    20297    666    2016-10-17 18:44:00    2016-10-17 18:44:00
38879    20297    795    2016-10-17 20:31:00    2016-10-17 20:31:00
38880    20297    494    2016-10-17 12:23:00    2016-10-17 12:23:00
38881    20297    783    2016-10-17 18:59:00    2016-10-17 18:59:00
38882    20297    930    2016-10-17 13:55:00    2016-10-17 13:55:00
38883    20298    800    2016-10-17 11:22:00    2016-10-17 11:22:00
38884    20298    551    2016-10-17 21:01:00    2016-10-17 21:01:00
38885    20298    693    2016-10-17 18:29:00    2016-10-17 18:29:00
38886    20298    594    2016-10-17 09:33:00    2016-10-17 09:33:00
38887    20298    840    2016-10-17 03:20:00    2016-10-17 03:20:00
38888    20299    515    2016-10-17 04:06:00    2016-10-17 04:06:00
38889    20299    947    2016-10-17 09:54:00    2016-10-17 09:54:00
38890    20299    937    2016-10-17 17:18:00    2016-10-17 17:18:00
38891    20299    897    2016-10-17 22:37:00    2016-10-17 22:37:00
38892    20299    618    2016-10-17 16:48:00    2016-10-17 16:48:00
38893    20300    588    2016-10-17 13:24:00    2016-10-17 13:24:00
38894    20300    864    2016-10-17 03:37:00    2016-10-17 03:37:00
38895    20300    495    2016-10-17 10:16:00    2016-10-17 10:16:00
38896    20300    536    2016-10-17 21:53:00    2016-10-17 21:53:00
38897    20300    528    2016-10-17 03:55:00    2016-10-17 03:55:00
38898    20301    719    2016-10-17 08:31:00    2016-10-17 08:31:00
38899    20301    901    2016-10-17 07:48:00    2016-10-17 07:48:00
38900    20301    541    2016-10-17 07:14:00    2016-10-17 07:14:00
38901    20301    657    2016-10-17 17:34:00    2016-10-17 17:34:00
38902    20301    745    2016-10-17 01:36:00    2016-10-17 01:36:00
38903    20302    847    2016-10-17 15:21:00    2016-10-17 15:21:00
38904    20302    570    2016-10-17 09:15:00    2016-10-17 09:15:00
38905    20302    616    2016-10-17 22:05:00    2016-10-17 22:05:00
38906    20302    889    2016-10-17 15:04:00    2016-10-17 15:04:00
38907    20302    819    2016-10-17 10:11:00    2016-10-17 10:11:00
38908    20303    808    2016-10-17 15:18:00    2016-10-17 15:18:00
38909    20303    918    2016-10-17 17:55:00    2016-10-17 17:55:00
38910    20303    786    2016-10-17 11:05:00    2016-10-17 11:05:00
38911    20303    671    2016-10-17 11:39:00    2016-10-17 11:39:00
38912    20303    936    2016-10-17 18:03:00    2016-10-17 18:03:00
38913    20304    753    2016-10-17 11:18:00    2016-10-17 11:18:00
38914    20304    542    2016-10-17 04:16:00    2016-10-17 04:16:00
38915    20304    937    2016-10-17 10:57:00    2016-10-17 10:57:00
38916    20304    759    2016-10-17 02:04:00    2016-10-17 02:04:00
38917    20304    693    2016-10-17 06:33:00    2016-10-17 06:33:00
38918    20305    483    2016-10-17 02:03:00    2016-10-17 02:03:00
38919    20305    851    2016-10-17 12:15:00    2016-10-17 12:15:00
38920    20305    774    2016-10-17 16:24:00    2016-10-17 16:24:00
38921    20305    681    2016-10-17 06:01:00    2016-10-17 06:01:00
38922    20305    656    2016-10-17 10:36:00    2016-10-17 10:36:00
38923    20306    560    2016-10-17 21:05:00    2016-10-17 21:05:00
38924    20306    832    2016-10-17 07:02:00    2016-10-17 07:02:00
38925    20306    873    2016-10-17 17:12:00    2016-10-17 17:12:00
38926    20306    555    2016-10-17 08:44:00    2016-10-17 08:44:00
38927    20306    536    2016-10-17 01:37:00    2016-10-17 01:37:00
38928    20307    648    2016-10-17 03:13:00    2016-10-17 03:13:00
38929    20307    837    2016-10-17 09:00:00    2016-10-17 09:00:00
38930    20307    572    2016-10-17 08:47:00    2016-10-17 08:47:00
38931    20307    664    2016-10-17 12:46:00    2016-10-17 12:46:00
38932    20307    685    2016-10-17 02:21:00    2016-10-17 02:21:00
38933    20308    501    2016-10-14 03:00:00    2016-10-14 03:00:00
38934    20308    800    2016-10-14 18:34:00    2016-10-14 18:34:00
38935    20308    717    2016-10-14 01:21:00    2016-10-14 01:21:00
38936    20308    504    2016-10-14 09:44:00    2016-10-14 09:44:00
38937    20308    507    2016-10-14 12:08:00    2016-10-14 12:08:00
38938    20309    507    2016-10-14 13:40:00    2016-10-14 13:40:00
38939    20309    838    2016-10-14 01:03:00    2016-10-14 01:03:00
38940    20309    810    2016-10-14 12:46:00    2016-10-14 12:46:00
38941    20309    718    2016-10-14 03:44:00    2016-10-14 03:44:00
38942    20309    660    2016-10-14 14:18:00    2016-10-14 14:18:00
38943    20310    883    2016-10-14 18:53:00    2016-10-14 18:53:00
38944    20310    813    2016-10-14 16:24:00    2016-10-14 16:24:00
38945    20310    941    2016-10-14 19:20:00    2016-10-14 19:20:00
38946    20310    907    2016-10-14 16:23:00    2016-10-14 16:23:00
38947    20310    879    2016-10-14 15:00:00    2016-10-14 15:00:00
38948    20311    662    2016-10-14 21:22:00    2016-10-14 21:22:00
38949    20311    468    2016-10-14 05:40:00    2016-10-14 05:40:00
38950    20311    626    2016-10-14 11:05:00    2016-10-14 11:05:00
38951    20311    780    2016-10-14 09:26:00    2016-10-14 09:26:00
38952    20311    711    2016-10-14 03:18:00    2016-10-14 03:18:00
38953    20312    821    2016-10-14 18:03:00    2016-10-14 18:03:00
38954    20312    896    2016-10-14 17:22:00    2016-10-14 17:22:00
38955    20312    621    2016-10-14 23:41:00    2016-10-14 23:41:00
38956    20312    793    2016-10-14 16:05:00    2016-10-14 16:05:00
38957    20312    755    2016-10-14 11:16:00    2016-10-14 11:16:00
38958    20313    927    2016-10-14 12:09:00    2016-10-14 12:09:00
38959    20313    768    2016-10-14 17:09:00    2016-10-14 17:09:00
38960    20313    904    2016-10-14 13:27:00    2016-10-14 13:27:00
38961    20313    862    2016-10-14 09:39:00    2016-10-14 09:39:00
38962    20313    645    2016-10-14 05:21:00    2016-10-14 05:21:00
38963    20314    810    2016-10-14 15:15:00    2016-10-14 15:15:00
38964    20314    867    2016-10-14 14:38:00    2016-10-14 14:38:00
38965    20314    770    2016-10-14 01:28:00    2016-10-14 01:28:00
38966    20314    907    2016-10-14 20:24:00    2016-10-14 20:24:00
38967    20314    848    2016-10-14 19:11:00    2016-10-14 19:11:00
38968    20315    620    2016-10-14 03:39:00    2016-10-14 03:39:00
38969    20315    882    2016-10-14 22:50:00    2016-10-14 22:50:00
38970    20315    515    2016-10-14 10:03:00    2016-10-14 10:03:00
38971    20315    666    2016-10-14 11:05:00    2016-10-14 11:05:00
38972    20315    559    2016-10-14 20:07:00    2016-10-14 20:07:00
38973    20316    951    2016-10-14 01:53:00    2016-10-14 01:53:00
38974    20316    720    2016-10-14 03:23:00    2016-10-14 03:23:00
38975    20316    706    2016-10-14 15:12:00    2016-10-14 15:12:00
38976    20316    948    2016-10-14 17:06:00    2016-10-14 17:06:00
38977    20316    599    2016-10-14 11:03:00    2016-10-14 11:03:00
38978    20317    543    2016-10-14 23:16:00    2016-10-14 23:16:00
38979    20317    533    2016-10-14 10:00:00    2016-10-14 10:00:00
38980    20317    813    2016-10-14 07:52:00    2016-10-14 07:52:00
38981    20317    835    2016-10-14 07:38:00    2016-10-14 07:38:00
38982    20317    670    2016-10-14 09:16:00    2016-10-14 09:16:00
38983    20318    655    2016-10-14 19:02:00    2016-10-14 19:02:00
38984    20318    781    2016-10-14 04:50:00    2016-10-14 04:50:00
38985    20318    589    2016-10-14 08:09:00    2016-10-14 08:09:00
38986    20318    613    2016-10-14 06:23:00    2016-10-14 06:23:00
38987    20318    806    2016-10-14 21:21:00    2016-10-14 21:21:00
38988    20319    870    2016-10-14 23:22:00    2016-10-14 23:22:00
38989    20319    836    2016-10-14 09:24:00    2016-10-14 09:24:00
38990    20319    652    2016-10-14 04:49:00    2016-10-14 04:49:00
38991    20319    469    2016-10-14 07:58:00    2016-10-14 07:58:00
38992    20319    641    2016-10-14 22:03:00    2016-10-14 22:03:00
38993    20320    467    2016-10-14 19:59:00    2016-10-14 19:59:00
38994    20320    466    2016-10-14 14:17:00    2016-10-14 14:17:00
38995    20320    482    2016-10-14 04:09:00    2016-10-14 04:09:00
38996    20320    731    2016-10-14 21:14:00    2016-10-14 21:14:00
38997    20320    918    2016-10-14 14:23:00    2016-10-14 14:23:00
38998    20321    516    2016-10-14 01:31:00    2016-10-14 01:31:00
38999    20321    645    2016-10-14 05:32:00    2016-10-14 05:32:00
39000    20321    631    2016-10-14 14:13:00    2016-10-14 14:13:00
39001    20321    737    2016-10-14 06:06:00    2016-10-14 06:06:00
39002    20321    846    2016-10-14 15:28:00    2016-10-14 15:28:00
39003    20322    920    2016-10-14 23:00:00    2016-10-14 23:00:00
39004    20322    482    2016-10-14 09:42:00    2016-10-14 09:42:00
39005    20322    775    2016-10-14 13:47:00    2016-10-14 13:47:00
39006    20322    801    2016-10-14 23:00:00    2016-10-14 23:00:00
39007    20322    500    2016-10-14 04:35:00    2016-10-14 04:35:00
39008    20323    820    2016-10-14 03:29:00    2016-10-14 03:29:00
39009    20323    465    2016-10-14 05:01:00    2016-10-14 05:01:00
39010    20323    853    2016-10-14 04:06:00    2016-10-14 04:06:00
39011    20323    733    2016-10-14 19:02:00    2016-10-14 19:02:00
39012    20323    787    2016-10-14 13:10:00    2016-10-14 13:10:00
39013    20324    613    2016-10-14 09:29:00    2016-10-14 09:29:00
39014    20324    562    2016-10-14 16:26:00    2016-10-14 16:26:00
39015    20324    944    2016-10-14 08:58:00    2016-10-14 08:58:00
39016    20324    655    2016-10-14 10:46:00    2016-10-14 10:46:00
39017    20324    954    2016-10-14 09:09:00    2016-10-14 09:09:00
39018    20325    506    2016-10-14 07:46:00    2016-10-14 07:46:00
39019    20325    892    2016-10-14 18:29:00    2016-10-14 18:29:00
39020    20325    665    2016-10-14 09:18:00    2016-10-14 09:18:00
39021    20325    480    2016-10-14 21:10:00    2016-10-14 21:10:00
39022    20325    686    2016-10-14 09:16:00    2016-10-14 09:16:00
39023    20326    712    2016-10-14 19:00:00    2016-10-14 19:00:00
39024    20326    811    2016-10-14 19:08:00    2016-10-14 19:08:00
39025    20326    687    2016-10-14 01:07:00    2016-10-14 01:07:00
39026    20326    857    2016-10-14 07:57:00    2016-10-14 07:57:00
39027    20326    677    2016-10-14 14:22:00    2016-10-14 14:22:00
39028    20327    534    2016-10-14 07:41:00    2016-10-14 07:41:00
39029    20327    620    2016-10-14 15:13:00    2016-10-14 15:13:00
39030    20327    691    2016-10-14 14:53:00    2016-10-14 14:53:00
39031    20327    562    2016-10-14 04:30:00    2016-10-14 04:30:00
39032    20327    830    2016-10-14 09:28:00    2016-10-14 09:28:00
39033    20328    610    2016-10-14 08:18:00    2016-10-14 08:18:00
39034    20328    709    2016-10-14 03:52:00    2016-10-14 03:52:00
39035    20328    830    2016-10-14 14:21:00    2016-10-14 14:21:00
39036    20328    619    2016-10-14 03:13:00    2016-10-14 03:13:00
39037    20328    792    2016-10-14 09:25:00    2016-10-14 09:25:00
39038    20329    632    2016-10-14 03:12:00    2016-10-14 03:12:00
39039    20329    632    2016-10-14 14:28:00    2016-10-14 14:28:00
39040    20329    542    2016-10-14 11:37:00    2016-10-14 11:37:00
39041    20329    544    2016-10-14 22:26:00    2016-10-14 22:26:00
39042    20329    823    2016-10-14 10:30:00    2016-10-14 10:30:00
39043    20330    890    2016-10-14 02:45:00    2016-10-14 02:45:00
39044    20330    919    2016-10-14 15:53:00    2016-10-14 15:53:00
39045    20330    564    2016-10-14 06:03:00    2016-10-14 06:03:00
39046    20330    947    2016-10-14 08:57:00    2016-10-14 08:57:00
39047    20330    953    2016-10-14 09:46:00    2016-10-14 09:46:00
39048    20331    700    2016-10-14 19:08:00    2016-10-14 19:08:00
39049    20331    552    2016-10-14 22:00:00    2016-10-14 22:00:00
39050    20331    794    2016-10-14 01:31:00    2016-10-14 01:31:00
39051    20331    571    2016-10-14 18:00:00    2016-10-14 18:00:00
39052    20331    613    2016-10-14 08:07:00    2016-10-14 08:07:00
39053    20332    491    2016-10-14 04:40:00    2016-10-14 04:40:00
39054    20332    690    2016-10-14 16:11:00    2016-10-14 16:11:00
39055    20332    657    2016-10-14 17:07:00    2016-10-14 17:07:00
39056    20332    637    2016-10-14 09:43:00    2016-10-14 09:43:00
39057    20332    716    2016-10-14 02:27:00    2016-10-14 02:27:00
39058    20333    637    2016-10-14 18:23:00    2016-10-14 18:23:00
39059    20333    626    2016-10-14 15:19:00    2016-10-14 15:19:00
39060    20333    481    2016-10-14 14:28:00    2016-10-14 14:28:00
39061    20333    691    2016-10-14 16:04:00    2016-10-14 16:04:00
39062    20333    506    2016-10-14 09:26:00    2016-10-14 09:26:00
39063    20334    748    2016-10-14 14:36:00    2016-10-14 14:36:00
39064    20334    585    2016-10-14 03:06:00    2016-10-14 03:06:00
39065    20334    890    2016-10-14 18:11:00    2016-10-14 18:11:00
39066    20334    832    2016-10-14 16:27:00    2016-10-14 16:27:00
39067    20334    888    2016-10-14 02:48:00    2016-10-14 02:48:00
39068    20335    821    2016-10-14 16:47:00    2016-10-14 16:47:00
39069    20335    918    2016-10-14 08:51:00    2016-10-14 08:51:00
39070    20335    526    2016-10-14 19:08:00    2016-10-14 19:08:00
39071    20335    899    2016-10-14 14:52:00    2016-10-14 14:52:00
39072    20335    755    2016-10-14 03:25:00    2016-10-14 03:25:00
39073    20336    944    2016-10-14 10:47:00    2016-10-14 10:47:00
39074    20336    700    2016-10-14 07:36:00    2016-10-14 07:36:00
39075    20336    542    2016-10-14 01:07:00    2016-10-14 01:07:00
39076    20336    702    2016-10-14 11:20:00    2016-10-14 11:20:00
39077    20336    940    2016-10-14 20:26:00    2016-10-14 20:26:00
39078    20337    882    2016-10-14 08:50:00    2016-10-14 08:50:00
39079    20337    480    2016-10-14 07:15:00    2016-10-14 07:15:00
39080    20337    835    2016-10-14 21:30:00    2016-10-14 21:30:00
39081    20337    479    2016-10-14 06:40:00    2016-10-14 06:40:00
39082    20337    559    2016-10-14 03:31:00    2016-10-14 03:31:00
39083    20338    798    2016-10-14 21:58:00    2016-10-14 21:58:00
39084    20338    603    2016-10-14 14:48:00    2016-10-14 14:48:00
39085    20338    734    2016-10-14 04:13:00    2016-10-14 04:13:00
39086    20338    852    2016-10-14 23:05:00    2016-10-14 23:05:00
39087    20338    625    2016-10-14 10:53:00    2016-10-14 10:53:00
39088    20339    541    2016-10-14 12:55:00    2016-10-14 12:55:00
39089    20339    936    2016-10-14 16:44:00    2016-10-14 16:44:00
39090    20339    647    2016-10-14 02:04:00    2016-10-14 02:04:00
39091    20339    703    2016-10-14 23:47:00    2016-10-14 23:47:00
39092    20339    544    2016-10-14 15:53:00    2016-10-14 15:53:00
39093    20340    778    2016-10-14 23:43:00    2016-10-14 23:43:00
39094    20340    848    2016-10-14 11:08:00    2016-10-14 11:08:00
39095    20340    858    2016-10-14 01:57:00    2016-10-14 01:57:00
39096    20340    822    2016-10-14 04:44:00    2016-10-14 04:44:00
39097    20340    826    2016-10-14 09:45:00    2016-10-14 09:45:00
39098    20341    805    2016-10-14 10:39:00    2016-10-14 10:39:00
39099    20341    907    2016-10-14 04:23:00    2016-10-14 04:23:00
39100    20341    933    2016-10-14 21:40:00    2016-10-14 21:40:00
39101    20341    768    2016-10-14 13:11:00    2016-10-14 13:11:00
39102    20341    641    2016-10-14 03:37:00    2016-10-14 03:37:00
39103    20342    923    2016-10-14 07:05:00    2016-10-14 07:05:00
39104    20342    563    2016-10-14 09:36:00    2016-10-14 09:36:00
39105    20342    742    2016-10-14 10:41:00    2016-10-14 10:41:00
39106    20342    822    2016-10-14 21:18:00    2016-10-14 21:18:00
39107    20342    741    2016-10-14 12:18:00    2016-10-14 12:18:00
39108    20343    588    2016-10-14 09:16:00    2016-10-14 09:16:00
39109    20343    602    2016-10-14 06:22:00    2016-10-14 06:22:00
39110    20343    568    2016-10-14 11:57:00    2016-10-14 11:57:00
39111    20343    906    2016-10-14 10:35:00    2016-10-14 10:35:00
39112    20343    793    2016-10-14 23:44:00    2016-10-14 23:44:00
39113    20344    834    2016-10-14 14:59:00    2016-10-14 14:59:00
39114    20344    491    2016-10-14 02:30:00    2016-10-14 02:30:00
39115    20344    628    2016-10-14 19:56:00    2016-10-14 19:56:00
39116    20344    667    2016-10-14 13:46:00    2016-10-14 13:46:00
39117    20344    786    2016-10-14 06:36:00    2016-10-14 06:36:00
39118    20345    896    2016-10-14 04:49:00    2016-10-14 04:49:00
39119    20345    674    2016-10-14 15:40:00    2016-10-14 15:40:00
39120    20345    682    2016-10-14 04:02:00    2016-10-14 04:02:00
39121    20345    562    2016-10-14 18:11:00    2016-10-14 18:11:00
39122    20345    890    2016-10-14 14:05:00    2016-10-14 14:05:00
39123    20346    552    2016-10-14 03:15:00    2016-10-14 03:15:00
39124    20346    816    2016-10-14 07:47:00    2016-10-14 07:47:00
39125    20346    911    2016-10-14 08:39:00    2016-10-14 08:39:00
39126    20346    704    2016-10-14 06:45:00    2016-10-14 06:45:00
39127    20346    630    2016-10-14 06:02:00    2016-10-14 06:02:00
39128    20347    792    2016-10-14 16:12:00    2016-10-14 16:12:00
39129    20347    927    2016-10-14 21:35:00    2016-10-14 21:35:00
39130    20347    951    2016-10-14 04:55:00    2016-10-14 04:55:00
39131    20347    687    2016-10-14 22:30:00    2016-10-14 22:30:00
39132    20347    929    2016-10-14 14:53:00    2016-10-14 14:53:00
39133    20348    803    2016-10-14 20:39:00    2016-10-14 20:39:00
39134    20348    522    2016-10-14 15:41:00    2016-10-14 15:41:00
39135    20348    853    2016-10-14 23:41:00    2016-10-14 23:41:00
39136    20348    683    2016-10-14 18:28:00    2016-10-14 18:28:00
39137    20348    611    2016-10-14 15:49:00    2016-10-14 15:49:00
39138    20349    776    2016-10-14 23:02:00    2016-10-14 23:02:00
39139    20349    725    2016-10-14 14:06:00    2016-10-14 14:06:00
39140    20349    765    2016-10-14 03:15:00    2016-10-14 03:15:00
39141    20349    570    2016-10-14 16:46:00    2016-10-14 16:46:00
39142    20349    630    2016-10-14 10:06:00    2016-10-14 10:06:00
39143    20350    556    2016-10-14 08:00:00    2016-10-14 08:00:00
39144    20350    814    2016-10-14 14:55:00    2016-10-14 14:55:00
39145    20350    869    2016-10-14 17:20:00    2016-10-14 17:20:00
39146    20350    468    2016-10-14 18:36:00    2016-10-14 18:36:00
39147    20350    714    2016-10-14 11:43:00    2016-10-14 11:43:00
39148    20351    746    2016-10-14 16:29:00    2016-10-14 16:29:00
39149    20351    692    2016-10-14 22:08:00    2016-10-14 22:08:00
39150    20351    875    2016-10-14 05:40:00    2016-10-14 05:40:00
39151    20351    591    2016-10-14 16:33:00    2016-10-14 16:33:00
39152    20351    709    2016-10-14 03:21:00    2016-10-14 03:21:00
39153    20352    749    2016-10-24 21:15:00    2016-10-24 21:15:00
39154    20352    683    2016-10-24 20:26:00    2016-10-24 20:26:00
39155    20352    886    2016-10-24 04:00:00    2016-10-24 04:00:00
39156    20352    644    2016-10-24 16:38:00    2016-10-24 16:38:00
39157    20352    600    2016-10-24 17:02:00    2016-10-24 17:02:00
39158    20353    682    2016-10-24 15:59:00    2016-10-24 15:59:00
39159    20353    521    2016-10-24 06:09:00    2016-10-24 06:09:00
39160    20353    733    2016-10-24 03:28:00    2016-10-24 03:28:00
39161    20353    760    2016-10-24 10:32:00    2016-10-24 10:32:00
39162    20353    955    2016-10-24 14:04:00    2016-10-24 14:04:00
39163    20354    512    2016-10-24 10:05:00    2016-10-24 10:05:00
39164    20354    854    2016-10-24 20:07:00    2016-10-24 20:07:00
39165    20354    942    2016-10-24 06:13:00    2016-10-24 06:13:00
39166    20354    945    2016-10-24 15:49:00    2016-10-24 15:49:00
39167    20354    593    2016-10-24 21:36:00    2016-10-24 21:36:00
39168    20355    488    2016-10-24 13:04:00    2016-10-24 13:04:00
39169    20355    901    2016-10-24 18:47:00    2016-10-24 18:47:00
39170    20355    790    2016-10-24 11:51:00    2016-10-24 11:51:00
39171    20355    742    2016-10-24 08:19:00    2016-10-24 08:19:00
39172    20355    500    2016-10-24 09:55:00    2016-10-24 09:55:00
39173    20356    812    2016-10-24 13:32:00    2016-10-24 13:32:00
39174    20356    852    2016-10-24 19:36:00    2016-10-24 19:36:00
39175    20356    485    2016-10-24 02:26:00    2016-10-24 02:26:00
39176    20356    534    2016-10-24 08:51:00    2016-10-24 08:51:00
39177    20356    649    2016-10-24 10:06:00    2016-10-24 10:06:00
39178    20357    815    2016-10-24 01:38:00    2016-10-24 01:38:00
39179    20357    945    2016-10-24 04:27:00    2016-10-24 04:27:00
39180    20357    534    2016-10-24 11:32:00    2016-10-24 11:32:00
39181    20357    748    2016-10-24 15:58:00    2016-10-24 15:58:00
39182    20357    474    2016-10-24 18:46:00    2016-10-24 18:46:00
39183    20358    742    2016-10-24 03:41:00    2016-10-24 03:41:00
39184    20358    625    2016-10-24 06:05:00    2016-10-24 06:05:00
39185    20358    588    2016-10-24 21:36:00    2016-10-24 21:36:00
39186    20358    731    2016-10-24 21:20:00    2016-10-24 21:20:00
39187    20358    758    2016-10-24 05:56:00    2016-10-24 05:56:00
39188    20359    618    2016-10-24 13:08:00    2016-10-24 13:08:00
39189    20359    958    2016-10-24 02:07:00    2016-10-24 02:07:00
39190    20359    526    2016-10-24 23:20:00    2016-10-24 23:20:00
39191    20359    608    2016-10-24 19:29:00    2016-10-24 19:29:00
39192    20359    700    2016-10-24 19:36:00    2016-10-24 19:36:00
39193    20360    701    2016-10-24 12:53:00    2016-10-24 12:53:00
39194    20360    711    2016-10-24 15:11:00    2016-10-24 15:11:00
39195    20360    498    2016-10-24 19:33:00    2016-10-24 19:33:00
39196    20360    494    2016-10-24 23:53:00    2016-10-24 23:53:00
39197    20360    629    2016-10-24 22:32:00    2016-10-24 22:32:00
39198    20361    915    2016-10-24 16:02:00    2016-10-24 16:02:00
39199    20361    472    2016-10-24 04:11:00    2016-10-24 04:11:00
39200    20361    760    2016-10-24 10:58:00    2016-10-24 10:58:00
39201    20361    738    2016-10-24 10:15:00    2016-10-24 10:15:00
39202    20361    525    2016-10-24 21:28:00    2016-10-24 21:28:00
39203    20362    658    2016-10-24 06:23:00    2016-10-24 06:23:00
39204    20362    517    2016-10-24 02:52:00    2016-10-24 02:52:00
39205    20362    593    2016-10-24 05:31:00    2016-10-24 05:31:00
39206    20362    874    2016-10-24 01:40:00    2016-10-24 01:40:00
39207    20362    864    2016-10-24 21:50:00    2016-10-24 21:50:00
39208    20363    584    2016-10-24 13:37:00    2016-10-24 13:37:00
39209    20363    592    2016-10-24 11:26:00    2016-10-24 11:26:00
39210    20363    476    2016-10-24 10:44:00    2016-10-24 10:44:00
39211    20363    840    2016-10-24 06:48:00    2016-10-24 06:48:00
39212    20363    627    2016-10-24 16:11:00    2016-10-24 16:11:00
39213    20364    860    2016-10-24 07:54:00    2016-10-24 07:54:00
39214    20364    820    2016-10-24 14:10:00    2016-10-24 14:10:00
39215    20364    688    2016-10-24 14:03:00    2016-10-24 14:03:00
39216    20364    727    2016-10-24 05:18:00    2016-10-24 05:18:00
39217    20364    688    2016-10-24 15:24:00    2016-10-24 15:24:00
39218    20365    602    2016-10-24 19:09:00    2016-10-24 19:09:00
39219    20365    913    2016-10-24 05:42:00    2016-10-24 05:42:00
39220    20365    620    2016-10-24 18:34:00    2016-10-24 18:34:00
39221    20365    788    2016-10-24 16:11:00    2016-10-24 16:11:00
39222    20365    892    2016-10-24 03:31:00    2016-10-24 03:31:00
39223    20366    652    2016-10-25 23:26:00    2016-10-25 23:26:00
39224    20366    846    2016-10-25 16:41:00    2016-10-25 16:41:00
39225    20366    555    2016-10-25 05:52:00    2016-10-25 05:52:00
39226    20366    518    2016-10-25 04:24:00    2016-10-25 04:24:00
39227    20366    933    2016-10-25 22:43:00    2016-10-25 22:43:00
39228    20367    554    2016-10-25 02:04:00    2016-10-25 02:04:00
39229    20367    643    2016-10-25 05:18:00    2016-10-25 05:18:00
39230    20367    515    2016-10-25 23:45:00    2016-10-25 23:45:00
39231    20367    654    2016-10-25 23:22:00    2016-10-25 23:22:00
39232    20367    739    2016-10-25 15:52:00    2016-10-25 15:52:00
39233    20368    931    2016-10-25 21:12:00    2016-10-25 21:12:00
39234    20368    641    2016-10-25 13:10:00    2016-10-25 13:10:00
39235    20368    942    2016-10-25 19:08:00    2016-10-25 19:08:00
39236    20368    773    2016-10-25 10:42:00    2016-10-25 10:42:00
39237    20368    504    2016-10-25 18:05:00    2016-10-25 18:05:00
39238    20369    701    2016-10-25 02:56:00    2016-10-25 02:56:00
39239    20369    654    2016-10-25 11:44:00    2016-10-25 11:44:00
39240    20369    469    2016-10-25 16:01:00    2016-10-25 16:01:00
39241    20369    671    2016-10-25 20:27:00    2016-10-25 20:27:00
39242    20369    698    2016-10-25 07:31:00    2016-10-25 07:31:00
39243    20370    536    2016-10-25 05:03:00    2016-10-25 05:03:00
39244    20370    847    2016-10-25 11:08:00    2016-10-25 11:08:00
39245    20370    858    2016-10-25 05:45:00    2016-10-25 05:45:00
39246    20370    898    2016-10-25 03:28:00    2016-10-25 03:28:00
39247    20370    742    2016-10-25 10:12:00    2016-10-25 10:12:00
39248    20371    909    2016-10-25 14:53:00    2016-10-25 14:53:00
39249    20371    883    2016-10-25 13:05:00    2016-10-25 13:05:00
39250    20371    848    2016-10-25 05:10:00    2016-10-25 05:10:00
39251    20371    950    2016-10-25 18:06:00    2016-10-25 18:06:00
39252    20371    695    2016-10-25 20:12:00    2016-10-25 20:12:00
39253    20372    675    2016-10-25 21:59:00    2016-10-25 21:59:00
39254    20372    637    2016-10-25 14:00:00    2016-10-25 14:00:00
39255    20372    546    2016-10-25 20:43:00    2016-10-25 20:43:00
39256    20372    471    2016-10-25 09:53:00    2016-10-25 09:53:00
39257    20372    839    2016-10-25 06:52:00    2016-10-25 06:52:00
39258    20373    614    2016-10-25 10:18:00    2016-10-25 10:18:00
39259    20373    731    2016-10-25 13:44:00    2016-10-25 13:44:00
39260    20373    674    2016-10-25 20:33:00    2016-10-25 20:33:00
39261    20373    775    2016-10-25 05:12:00    2016-10-25 05:12:00
39262    20373    494    2016-10-25 11:20:00    2016-10-25 11:20:00
39263    20374    796    2016-10-25 22:16:00    2016-10-25 22:16:00
39264    20374    664    2016-10-25 23:19:00    2016-10-25 23:19:00
39265    20374    631    2016-10-25 02:54:00    2016-10-25 02:54:00
39266    20374    942    2016-10-25 03:37:00    2016-10-25 03:37:00
39267    20374    916    2016-10-25 14:10:00    2016-10-25 14:10:00
39268    20375    795    2016-10-25 01:41:00    2016-10-25 01:41:00
39269    20375    700    2016-10-25 12:29:00    2016-10-25 12:29:00
39270    20375    476    2016-10-25 10:40:00    2016-10-25 10:40:00
39271    20375    938    2016-10-25 14:02:00    2016-10-25 14:02:00
39272    20375    582    2016-10-25 05:47:00    2016-10-25 05:47:00
39273    20376    508    2016-10-25 12:00:00    2016-10-25 12:00:00
39274    20376    576    2016-10-25 04:04:00    2016-10-25 04:04:00
39275    20376    861    2016-10-25 05:00:00    2016-10-25 05:00:00
39276    20376    889    2016-10-25 21:01:00    2016-10-25 21:01:00
39277    20376    882    2016-10-25 01:05:00    2016-10-25 01:05:00
39278    20377    881    2016-10-25 21:03:00    2016-10-25 21:03:00
39279    20377    769    2016-10-25 04:46:00    2016-10-25 04:46:00
39280    20377    908    2016-10-25 19:40:00    2016-10-25 19:40:00
39281    20377    499    2016-10-25 23:35:00    2016-10-25 23:35:00
39282    20377    703    2016-10-25 12:50:00    2016-10-25 12:50:00
39283    20378    687    2016-10-25 04:29:00    2016-10-25 04:29:00
39284    20378    859    2016-10-25 19:37:00    2016-10-25 19:37:00
39285    20378    606    2016-10-25 03:52:00    2016-10-25 03:52:00
39286    20378    946    2016-10-25 03:27:00    2016-10-25 03:27:00
39287    20378    822    2016-10-25 11:01:00    2016-10-25 11:01:00
39288    20379    795    2016-10-25 01:13:00    2016-10-25 01:13:00
39289    20379    653    2016-10-25 23:18:00    2016-10-25 23:18:00
39290    20379    560    2016-10-25 21:05:00    2016-10-25 21:05:00
39291    20379    506    2016-10-25 21:39:00    2016-10-25 21:39:00
39292    20379    523    2016-10-25 17:56:00    2016-10-25 17:56:00
39293    20380    773    2016-10-25 23:24:00    2016-10-25 23:24:00
39294    20380    814    2016-10-25 12:06:00    2016-10-25 12:06:00
39295    20380    908    2016-10-25 20:17:00    2016-10-25 20:17:00
39296    20380    529    2016-10-25 04:56:00    2016-10-25 04:56:00
39297    20380    819    2016-10-25 16:01:00    2016-10-25 16:01:00
39298    20381    770    2016-10-25 21:39:00    2016-10-25 21:39:00
39299    20381    829    2016-10-25 22:21:00    2016-10-25 22:21:00
39300    20381    479    2016-10-25 07:44:00    2016-10-25 07:44:00
39301    20381    672    2016-10-25 19:45:00    2016-10-25 19:45:00
39302    20381    765    2016-10-25 10:50:00    2016-10-25 10:50:00
39303    20382    501    2016-10-25 18:32:00    2016-10-25 18:32:00
39304    20382    517    2016-10-25 16:45:00    2016-10-25 16:45:00
39305    20382    501    2016-10-25 04:40:00    2016-10-25 04:40:00
39306    20382    674    2016-10-25 08:52:00    2016-10-25 08:52:00
39307    20382    743    2016-10-25 09:22:00    2016-10-25 09:22:00
39308    20383    678    2016-10-25 12:58:00    2016-10-25 12:58:00
39309    20383    879    2016-10-25 23:34:00    2016-10-25 23:34:00
39310    20383    775    2016-10-25 23:00:00    2016-10-25 23:00:00
39311    20383    520    2016-10-25 15:44:00    2016-10-25 15:44:00
39312    20383    728    2016-10-25 12:55:00    2016-10-25 12:55:00
39313    20384    581    2016-10-25 05:55:00    2016-10-25 05:55:00
39314    20384    921    2016-10-25 11:33:00    2016-10-25 11:33:00
39315    20384    707    2016-10-25 06:56:00    2016-10-25 06:56:00
39316    20384    892    2016-10-25 22:23:00    2016-10-25 22:23:00
39317    20384    793    2016-10-25 23:56:00    2016-10-25 23:56:00
39318    20385    464    2016-10-25 03:00:00    2016-10-25 03:00:00
39319    20385    621    2016-10-25 05:17:00    2016-10-25 05:17:00
39320    20385    518    2016-10-25 15:11:00    2016-10-25 15:11:00
39321    20385    633    2016-10-25 17:57:00    2016-10-25 17:57:00
39322    20385    929    2016-10-25 03:39:00    2016-10-25 03:39:00
39323    20386    609    2016-10-25 11:42:00    2016-10-25 11:42:00
39324    20386    644    2016-10-25 05:13:00    2016-10-25 05:13:00
39325    20386    601    2016-10-25 19:37:00    2016-10-25 19:37:00
39326    20386    566    2016-10-25 18:02:00    2016-10-25 18:02:00
39327    20386    823    2016-10-25 23:23:00    2016-10-25 23:23:00
39328    20387    951    2016-10-25 17:51:00    2016-10-25 17:51:00
39329    20387    585    2016-10-25 17:27:00    2016-10-25 17:27:00
39330    20387    507    2016-10-25 12:17:00    2016-10-25 12:17:00
39331    20387    922    2016-10-25 20:25:00    2016-10-25 20:25:00
39332    20387    872    2016-10-25 11:41:00    2016-10-25 11:41:00
39333    20388    866    2016-10-25 10:58:00    2016-10-25 10:58:00
39334    20388    789    2016-10-25 08:23:00    2016-10-25 08:23:00
39335    20388    498    2016-10-25 08:20:00    2016-10-25 08:20:00
39336    20388    607    2016-10-25 03:04:00    2016-10-25 03:04:00
39337    20388    662    2016-10-25 12:25:00    2016-10-25 12:25:00
39338    20389    862    2016-10-25 09:20:00    2016-10-25 09:20:00
39339    20389    907    2016-10-25 18:39:00    2016-10-25 18:39:00
39340    20389    784    2016-10-25 06:57:00    2016-10-25 06:57:00
39341    20389    501    2016-10-25 17:45:00    2016-10-25 17:45:00
39342    20389    941    2016-10-25 01:02:00    2016-10-25 01:02:00
39343    20390    482    2016-10-25 15:46:00    2016-10-25 15:46:00
39344    20390    706    2016-10-25 16:04:00    2016-10-25 16:04:00
39345    20390    816    2016-10-25 20:32:00    2016-10-25 20:32:00
39346    20390    945    2016-10-25 20:17:00    2016-10-25 20:17:00
39347    20390    750    2016-10-25 09:41:00    2016-10-25 09:41:00
39348    20391    954    2016-10-25 06:21:00    2016-10-25 06:21:00
39349    20391    693    2016-10-25 23:58:00    2016-10-25 23:58:00
39350    20391    545    2016-10-25 23:49:00    2016-10-25 23:49:00
39351    20391    480    2016-10-25 17:23:00    2016-10-25 17:23:00
39352    20391    596    2016-10-25 03:05:00    2016-10-25 03:05:00
39353    20392    691    2016-10-25 05:01:00    2016-10-25 05:01:00
39354    20392    577    2016-10-25 22:50:00    2016-10-25 22:50:00
39355    20392    850    2016-10-25 12:35:00    2016-10-25 12:35:00
39356    20392    874    2016-10-25 06:04:00    2016-10-25 06:04:00
39357    20392    686    2016-10-25 06:32:00    2016-10-25 06:32:00
39358    20393    912    2016-10-25 07:01:00    2016-10-25 07:01:00
39359    20393    786    2016-10-25 01:55:00    2016-10-25 01:55:00
39360    20393    915    2016-10-25 17:34:00    2016-10-25 17:34:00
39361    20393    605    2016-10-25 11:54:00    2016-10-25 11:54:00
39362    20393    803    2016-10-25 03:19:00    2016-10-25 03:19:00
39363    20394    775    2016-10-25 22:16:00    2016-10-25 22:16:00
39364    20394    822    2016-10-25 18:10:00    2016-10-25 18:10:00
39365    20394    823    2016-10-25 04:33:00    2016-10-25 04:33:00
39366    20394    792    2016-10-25 11:13:00    2016-10-25 11:13:00
39367    20394    940    2016-10-25 05:30:00    2016-10-25 05:30:00
39368    20395    555    2016-10-25 09:50:00    2016-10-25 09:50:00
39369    20395    513    2016-10-25 02:35:00    2016-10-25 02:35:00
39370    20395    632    2016-10-25 18:37:00    2016-10-25 18:37:00
39371    20395    760    2016-10-25 19:20:00    2016-10-25 19:20:00
39372    20395    958    2016-10-25 18:14:00    2016-10-25 18:14:00
39373    20396    940    2016-10-25 03:47:00    2016-10-25 03:47:00
39374    20396    827    2016-10-25 23:20:00    2016-10-25 23:20:00
39375    20396    935    2016-10-25 21:59:00    2016-10-25 21:59:00
39376    20396    869    2016-10-25 09:31:00    2016-10-25 09:31:00
39377    20396    655    2016-10-25 06:49:00    2016-10-25 06:49:00
39378    20397    943    2016-10-25 18:37:00    2016-10-25 18:37:00
39379    20397    710    2016-10-25 17:06:00    2016-10-25 17:06:00
39380    20397    827    2016-10-25 21:03:00    2016-10-25 21:03:00
39381    20397    958    2016-10-25 07:00:00    2016-10-25 07:00:00
39382    20397    881    2016-10-25 17:55:00    2016-10-25 17:55:00
39383    20398    722    2016-10-25 18:13:00    2016-10-25 18:13:00
39384    20398    807    2016-10-25 17:33:00    2016-10-25 17:33:00
39385    20398    856    2016-10-25 16:12:00    2016-10-25 16:12:00
39386    20398    850    2016-10-25 21:29:00    2016-10-25 21:29:00
39387    20398    598    2016-10-25 14:21:00    2016-10-25 14:21:00
39388    20399    812    2016-10-25 21:02:00    2016-10-25 21:02:00
39389    20399    953    2016-10-25 15:52:00    2016-10-25 15:52:00
39390    20399    685    2016-10-25 07:35:00    2016-10-25 07:35:00
39391    20399    578    2016-10-25 07:07:00    2016-10-25 07:07:00
39392    20399    507    2016-10-25 16:00:00    2016-10-25 16:00:00
39393    20400    687    2016-10-25 11:18:00    2016-10-25 11:18:00
39394    20400    872    2016-10-25 08:04:00    2016-10-25 08:04:00
39395    20400    479    2016-10-25 08:28:00    2016-10-25 08:28:00
39396    20400    700    2016-10-25 10:26:00    2016-10-25 10:26:00
39397    20400    728    2016-10-25 15:46:00    2016-10-25 15:46:00
39398    20401    824    2016-10-25 19:01:00    2016-10-25 19:01:00
39399    20401    956    2016-10-25 15:06:00    2016-10-25 15:06:00
39400    20401    686    2016-10-25 06:04:00    2016-10-25 06:04:00
39401    20401    605    2016-10-25 22:04:00    2016-10-25 22:04:00
39402    20401    743    2016-10-25 05:15:00    2016-10-25 05:15:00
39403    20402    648    2016-10-25 01:33:00    2016-10-25 01:33:00
39404    20402    817    2016-10-25 15:22:00    2016-10-25 15:22:00
39405    20402    954    2016-10-25 02:39:00    2016-10-25 02:39:00
39406    20402    469    2016-10-25 04:20:00    2016-10-25 04:20:00
39407    20402    948    2016-10-25 12:45:00    2016-10-25 12:45:00
39408    20403    818    2016-10-25 08:14:00    2016-10-25 08:14:00
39409    20403    589    2016-10-25 02:10:00    2016-10-25 02:10:00
39410    20403    927    2016-10-25 09:43:00    2016-10-25 09:43:00
39411    20403    716    2016-10-25 08:00:00    2016-10-25 08:00:00
39412    20403    881    2016-10-25 01:45:00    2016-10-25 01:45:00
39413    20404    874    2016-10-25 23:01:00    2016-10-25 23:01:00
39414    20404    806    2016-10-25 04:13:00    2016-10-25 04:13:00
39415    20404    694    2016-10-25 15:46:00    2016-10-25 15:46:00
39416    20404    801    2016-10-25 17:21:00    2016-10-25 17:21:00
39417    20404    488    2016-10-25 21:49:00    2016-10-25 21:49:00
39418    20405    744    2016-10-25 12:20:00    2016-10-25 12:20:00
39419    20405    604    2016-10-25 01:54:00    2016-10-25 01:54:00
39420    20405    760    2016-10-25 02:39:00    2016-10-25 02:39:00
39421    20405    836    2016-10-25 14:19:00    2016-10-25 14:19:00
39422    20405    497    2016-10-25 17:24:00    2016-10-25 17:24:00
39423    20406    823    2016-10-25 18:13:00    2016-10-25 18:13:00
39424    20406    688    2016-10-25 21:10:00    2016-10-25 21:10:00
39425    20406    861    2016-10-25 18:36:00    2016-10-25 18:36:00
39426    20406    636    2016-10-25 21:53:00    2016-10-25 21:53:00
39427    20406    896    2016-10-25 06:47:00    2016-10-25 06:47:00
39428    20407    544    2016-10-25 12:33:00    2016-10-25 12:33:00
39429    20407    527    2016-10-25 07:38:00    2016-10-25 07:38:00
39430    20407    838    2016-10-25 12:39:00    2016-10-25 12:39:00
39431    20407    472    2016-10-25 16:28:00    2016-10-25 16:28:00
39432    20407    739    2016-10-25 11:24:00    2016-10-25 11:24:00
39433    20408    958    2016-10-25 15:00:00    2016-10-25 15:00:00
39434    20408    760    2016-10-25 16:29:00    2016-10-25 16:29:00
39435    20408    633    2016-10-25 03:06:00    2016-10-25 03:06:00
39436    20408    691    2016-10-25 23:15:00    2016-10-25 23:15:00
39437    20408    942    2016-10-25 20:50:00    2016-10-25 20:50:00
39438    20409    751    2016-10-25 19:25:00    2016-10-25 19:25:00
39439    20409    467    2016-10-25 15:13:00    2016-10-25 15:13:00
39440    20409    480    2016-10-25 01:23:00    2016-10-25 01:23:00
39441    20409    713    2016-10-25 10:36:00    2016-10-25 10:36:00
39442    20409    862    2016-10-25 16:41:00    2016-10-25 16:41:00
39443    20410    782    2016-10-25 16:05:00    2016-10-25 16:05:00
39444    20410    807    2016-10-25 04:32:00    2016-10-25 04:32:00
39445    20410    635    2016-10-25 15:51:00    2016-10-25 15:51:00
39446    20410    811    2016-10-25 20:08:00    2016-10-25 20:08:00
39447    20410    539    2016-10-25 22:10:00    2016-10-25 22:10:00
39448    20411    795    2016-10-25 22:09:00    2016-10-25 22:09:00
39449    20411    863    2016-10-25 19:16:00    2016-10-25 19:16:00
39450    20411    827    2016-10-25 07:49:00    2016-10-25 07:49:00
39451    20411    512    2016-10-25 10:51:00    2016-10-25 10:51:00
39452    20411    931    2016-10-25 03:15:00    2016-10-25 03:15:00
39453    20412    732    2016-10-25 14:48:00    2016-10-25 14:48:00
39454    20412    782    2016-10-25 08:22:00    2016-10-25 08:22:00
39455    20412    496    2016-10-25 05:31:00    2016-10-25 05:31:00
39456    20412    901    2016-10-25 11:11:00    2016-10-25 11:11:00
39457    20412    491    2016-10-25 05:08:00    2016-10-25 05:08:00
39458    20413    798    2016-10-25 22:17:00    2016-10-25 22:17:00
39459    20413    910    2016-10-25 12:49:00    2016-10-25 12:49:00
39460    20413    917    2016-10-25 14:11:00    2016-10-25 14:11:00
39461    20413    628    2016-10-25 12:26:00    2016-10-25 12:26:00
39462    20413    816    2016-10-25 14:01:00    2016-10-25 14:01:00
39463    20414    857    2016-10-25 17:57:00    2016-10-25 17:57:00
39464    20414    886    2016-10-25 01:17:00    2016-10-25 01:17:00
39465    20414    594    2016-10-25 18:28:00    2016-10-25 18:28:00
39466    20414    502    2016-10-25 21:17:00    2016-10-25 21:17:00
39467    20414    952    2016-10-25 22:52:00    2016-10-25 22:52:00
39468    20415    909    2016-10-25 19:05:00    2016-10-25 19:05:00
39469    20415    875    2016-10-25 12:01:00    2016-10-25 12:01:00
39470    20415    816    2016-10-25 20:02:00    2016-10-25 20:02:00
39471    20415    770    2016-10-25 05:46:00    2016-10-25 05:46:00
39472    20415    632    2016-10-25 18:28:00    2016-10-25 18:28:00
39473    20416    840    2016-10-25 08:28:00    2016-10-25 08:28:00
39474    20416    924    2016-10-25 11:59:00    2016-10-25 11:59:00
39475    20416    704    2016-10-25 09:20:00    2016-10-25 09:20:00
39476    20416    485    2016-10-25 17:24:00    2016-10-25 17:24:00
39477    20416    634    2016-10-25 14:03:00    2016-10-25 14:03:00
39478    20417    617    2016-10-25 01:35:00    2016-10-25 01:35:00
39479    20417    469    2016-10-25 02:25:00    2016-10-25 02:25:00
39480    20417    536    2016-10-25 07:23:00    2016-10-25 07:23:00
39481    20417    714    2016-10-25 10:21:00    2016-10-25 10:21:00
39482    20417    832    2016-10-25 22:14:00    2016-10-25 22:14:00
39483    20418    815    2016-10-25 04:34:00    2016-10-25 04:34:00
39484    20418    923    2016-10-25 23:14:00    2016-10-25 23:14:00
39485    20418    690    2016-10-25 14:47:00    2016-10-25 14:47:00
39486    20418    736    2016-10-25 22:00:00    2016-10-25 22:00:00
39487    20418    727    2016-10-25 22:56:00    2016-10-25 22:56:00
39488    20419    476    2016-10-25 08:05:00    2016-10-25 08:05:00
39489    20419    787    2016-10-25 14:22:00    2016-10-25 14:22:00
39490    20419    540    2016-10-25 20:33:00    2016-10-25 20:33:00
39491    20419    547    2016-10-25 23:35:00    2016-10-25 23:35:00
39492    20419    653    2016-10-25 03:00:00    2016-10-25 03:00:00
39493    20420    484    2016-10-25 19:25:00    2016-10-25 19:25:00
39494    20420    714    2016-10-25 19:25:00    2016-10-25 19:25:00
39495    20420    475    2016-10-25 03:10:00    2016-10-25 03:10:00
39496    20420    934    2016-10-25 02:37:00    2016-10-25 02:37:00
39497    20420    555    2016-10-25 23:38:00    2016-10-25 23:38:00
39498    20421    720    2016-10-25 06:36:00    2016-10-25 06:36:00
39499    20421    866    2016-10-25 18:51:00    2016-10-25 18:51:00
39500    20421    622    2016-10-25 03:37:00    2016-10-25 03:37:00
39501    20421    704    2016-10-25 08:07:00    2016-10-25 08:07:00
39502    20421    611    2016-10-25 22:14:00    2016-10-25 22:14:00
39503    20422    854    2016-10-25 22:25:00    2016-10-25 22:25:00
39504    20422    590    2016-10-25 20:27:00    2016-10-25 20:27:00
39505    20422    744    2016-10-25 10:07:00    2016-10-25 10:07:00
39506    20422    681    2016-10-25 14:11:00    2016-10-25 14:11:00
39507    20422    549    2016-10-25 14:02:00    2016-10-25 14:02:00
39508    20423    800    2016-10-25 06:00:00    2016-10-25 06:00:00
39509    20423    617    2016-10-25 15:51:00    2016-10-25 15:51:00
39510    20423    684    2016-10-25 18:29:00    2016-10-25 18:29:00
39511    20423    693    2016-10-25 14:22:00    2016-10-25 14:22:00
39512    20423    677    2016-10-25 18:53:00    2016-10-25 18:53:00
39513    20424    591    2016-10-25 13:32:00    2016-10-25 13:32:00
39514    20424    671    2016-10-25 02:20:00    2016-10-25 02:20:00
39515    20424    885    2016-10-25 11:04:00    2016-10-25 11:04:00
39516    20424    788    2016-10-25 23:23:00    2016-10-25 23:23:00
39517    20424    911    2016-10-25 04:36:00    2016-10-25 04:36:00
39518    20425    916    2016-10-26 18:22:00    2016-10-26 18:22:00
39519    20425    702    2016-10-26 09:27:00    2016-10-26 09:27:00
39520    20425    934    2016-10-26 13:58:00    2016-10-26 13:58:00
39521    20425    694    2016-10-26 17:01:00    2016-10-26 17:01:00
39522    20425    514    2016-10-26 02:20:00    2016-10-26 02:20:00
39523    20426    521    2016-10-26 22:32:00    2016-10-26 22:32:00
39524    20426    944    2016-10-26 10:02:00    2016-10-26 10:02:00
39525    20426    596    2016-10-26 11:25:00    2016-10-26 11:25:00
39526    20426    946    2016-10-26 07:52:00    2016-10-26 07:52:00
39527    20426    583    2016-10-26 10:32:00    2016-10-26 10:32:00
39528    20427    924    2016-10-26 19:30:00    2016-10-26 19:30:00
39529    20427    800    2016-10-26 05:56:00    2016-10-26 05:56:00
39530    20427    690    2016-10-26 07:50:00    2016-10-26 07:50:00
39531    20427    597    2016-10-26 06:19:00    2016-10-26 06:19:00
39532    20427    465    2016-10-26 14:41:00    2016-10-26 14:41:00
39533    20428    961    2016-10-26 09:27:00    2016-10-26 09:27:00
39534    20428    690    2016-10-26 10:18:00    2016-10-26 10:18:00
39535    20428    949    2016-10-26 06:23:00    2016-10-26 06:23:00
39536    20428    642    2016-10-26 14:19:00    2016-10-26 14:19:00
39537    20428    742    2016-10-26 21:23:00    2016-10-26 21:23:00
39538    20429    711    2016-10-26 04:35:00    2016-10-26 04:35:00
39539    20429    629    2016-10-26 12:11:00    2016-10-26 12:11:00
39540    20429    877    2016-10-26 13:20:00    2016-10-26 13:20:00
39541    20429    541    2016-10-26 01:05:00    2016-10-26 01:05:00
39542    20429    651    2016-10-26 14:11:00    2016-10-26 14:11:00
39543    20430    810    2016-10-26 20:01:00    2016-10-26 20:01:00
39544    20430    522    2016-10-26 09:50:00    2016-10-26 09:50:00
39545    20430    858    2016-10-26 23:52:00    2016-10-26 23:52:00
39546    20430    888    2016-10-26 11:08:00    2016-10-26 11:08:00
39547    20430    728    2016-10-26 21:30:00    2016-10-26 21:30:00
39548    20431    496    2016-10-26 03:39:00    2016-10-26 03:39:00
39549    20431    581    2016-10-26 20:00:00    2016-10-26 20:00:00
39550    20431    733    2016-10-26 11:29:00    2016-10-26 11:29:00
39551    20431    485    2016-10-26 13:04:00    2016-10-26 13:04:00
39552    20431    594    2016-10-26 07:45:00    2016-10-26 07:45:00
39553    20432    842    2016-10-26 07:53:00    2016-10-26 07:53:00
39554    20432    547    2016-10-26 08:34:00    2016-10-26 08:34:00
39555    20432    802    2016-10-26 17:42:00    2016-10-26 17:42:00
39556    20432    880    2016-10-26 11:06:00    2016-10-26 11:06:00
39557    20432    794    2016-10-26 01:25:00    2016-10-26 01:25:00
39558    20433    622    2016-10-26 14:09:00    2016-10-26 14:09:00
39559    20433    859    2016-10-26 01:29:00    2016-10-26 01:29:00
39560    20433    601    2016-10-26 19:03:00    2016-10-26 19:03:00
39561    20433    498    2016-10-26 07:03:00    2016-10-26 07:03:00
39562    20433    658    2016-10-26 01:33:00    2016-10-26 01:33:00
39563    20434    740    2016-10-26 12:24:00    2016-10-26 12:24:00
39564    20434    687    2016-10-26 19:54:00    2016-10-26 19:54:00
39565    20434    632    2016-10-26 01:52:00    2016-10-26 01:52:00
39566    20434    698    2016-10-26 13:27:00    2016-10-26 13:27:00
39567    20434    802    2016-10-26 21:20:00    2016-10-26 21:20:00
39568    20435    917    2016-10-26 23:05:00    2016-10-26 23:05:00
39569    20435    658    2016-10-26 02:26:00    2016-10-26 02:26:00
39570    20435    580    2016-10-26 07:26:00    2016-10-26 07:26:00
39571    20435    585    2016-10-26 11:43:00    2016-10-26 11:43:00
39572    20435    835    2016-10-26 07:16:00    2016-10-26 07:16:00
39573    20436    604    2016-10-26 13:40:00    2016-10-26 13:40:00
39574    20436    527    2016-10-26 14:16:00    2016-10-26 14:16:00
39575    20436    671    2016-10-26 11:10:00    2016-10-26 11:10:00
39576    20436    594    2016-10-26 14:01:00    2016-10-26 14:01:00
39577    20436    889    2016-10-26 21:33:00    2016-10-26 21:33:00
39578    20437    543    2016-10-26 05:52:00    2016-10-26 05:52:00
39579    20437    556    2016-10-26 21:10:00    2016-10-26 21:10:00
39580    20437    659    2016-10-26 07:44:00    2016-10-26 07:44:00
39581    20437    838    2016-10-26 12:22:00    2016-10-26 12:22:00
39582    20437    852    2016-10-26 13:56:00    2016-10-26 13:56:00
39583    20438    547    2016-10-26 23:57:00    2016-10-26 23:57:00
39584    20438    717    2016-10-26 21:34:00    2016-10-26 21:34:00
39585    20438    943    2016-10-26 22:42:00    2016-10-26 22:42:00
39586    20438    581    2016-10-26 05:52:00    2016-10-26 05:52:00
39587    20438    752    2016-10-26 08:53:00    2016-10-26 08:53:00
39588    20439    572    2016-10-26 07:55:00    2016-10-26 07:55:00
39589    20439    647    2016-10-26 06:13:00    2016-10-26 06:13:00
39590    20439    619    2016-10-26 16:38:00    2016-10-26 16:38:00
39591    20439    807    2016-10-26 17:11:00    2016-10-26 17:11:00
39592    20439    833    2016-10-26 15:46:00    2016-10-26 15:46:00
39593    20440    826    2016-10-26 03:21:00    2016-10-26 03:21:00
39594    20440    553    2016-10-26 03:43:00    2016-10-26 03:43:00
39595    20440    670    2016-10-26 08:44:00    2016-10-26 08:44:00
39596    20440    580    2016-10-26 15:37:00    2016-10-26 15:37:00
39597    20440    519    2016-10-26 06:52:00    2016-10-26 06:52:00
39598    20441    494    2016-10-26 12:33:00    2016-10-26 12:33:00
39599    20441    634    2016-10-26 20:36:00    2016-10-26 20:36:00
39600    20441    711    2016-10-26 06:23:00    2016-10-26 06:23:00
39601    20441    936    2016-10-26 04:16:00    2016-10-26 04:16:00
39602    20441    821    2016-10-26 18:14:00    2016-10-26 18:14:00
39603    20442    525    2016-10-26 01:57:00    2016-10-26 01:57:00
39604    20442    947    2016-10-26 13:24:00    2016-10-26 13:24:00
39605    20442    491    2016-10-26 21:57:00    2016-10-26 21:57:00
39606    20442    839    2016-10-26 13:18:00    2016-10-26 13:18:00
39607    20442    726    2016-10-26 06:19:00    2016-10-26 06:19:00
39608    20443    880    2016-10-26 01:57:00    2016-10-26 01:57:00
39609    20443    697    2016-10-26 20:41:00    2016-10-26 20:41:00
39610    20443    600    2016-10-26 07:16:00    2016-10-26 07:16:00
39611    20443    847    2016-10-26 20:11:00    2016-10-26 20:11:00
39612    20443    539    2016-10-26 17:07:00    2016-10-26 17:07:00
39613    20444    896    2016-10-26 14:05:00    2016-10-26 14:05:00
39614    20444    506    2016-10-26 03:40:00    2016-10-26 03:40:00
39615    20444    551    2016-10-26 12:02:00    2016-10-26 12:02:00
39616    20444    486    2016-10-26 10:26:00    2016-10-26 10:26:00
39617    20444    682    2016-10-26 06:25:00    2016-10-26 06:25:00
39618    20445    680    2016-10-26 09:10:00    2016-10-26 09:10:00
39619    20445    753    2016-10-26 02:11:00    2016-10-26 02:11:00
39620    20445    635    2016-10-26 23:03:00    2016-10-26 23:03:00
39621    20445    569    2016-10-26 18:37:00    2016-10-26 18:37:00
39622    20445    871    2016-10-26 17:50:00    2016-10-26 17:50:00
39623    20446    635    2016-10-26 08:27:00    2016-10-26 08:27:00
39624    20446    651    2016-10-26 16:25:00    2016-10-26 16:25:00
39625    20446    715    2016-10-26 13:18:00    2016-10-26 13:18:00
39626    20446    609    2016-10-26 06:18:00    2016-10-26 06:18:00
39627    20446    642    2016-10-26 13:48:00    2016-10-26 13:48:00
39628    20447    697    2016-10-26 15:45:00    2016-10-26 15:45:00
39629    20447    625    2016-10-26 03:58:00    2016-10-26 03:58:00
39630    20447    544    2016-10-26 03:23:00    2016-10-26 03:23:00
39631    20447    910    2016-10-26 16:34:00    2016-10-26 16:34:00
39632    20447    606    2016-10-26 19:55:00    2016-10-26 19:55:00
39633    20448    921    2016-10-26 02:04:00    2016-10-26 02:04:00
39634    20448    632    2016-10-26 18:37:00    2016-10-26 18:37:00
39635    20448    708    2016-10-26 08:22:00    2016-10-26 08:22:00
39636    20448    931    2016-10-26 20:13:00    2016-10-26 20:13:00
39637    20448    531    2016-10-26 18:09:00    2016-10-26 18:09:00
39638    20449    652    2016-10-26 03:11:00    2016-10-26 03:11:00
39639    20449    750    2016-10-26 09:56:00    2016-10-26 09:56:00
39640    20449    833    2016-10-26 21:00:00    2016-10-26 21:00:00
39641    20449    651    2016-10-26 22:55:00    2016-10-26 22:55:00
39642    20449    914    2016-10-26 03:00:00    2016-10-26 03:00:00
39643    20450    726    2016-10-26 21:22:00    2016-10-26 21:22:00
39644    20450    826    2016-10-26 08:12:00    2016-10-26 08:12:00
39645    20450    916    2016-10-26 02:00:00    2016-10-26 02:00:00
39646    20450    487    2016-10-26 12:30:00    2016-10-26 12:30:00
39647    20450    577    2016-10-26 07:49:00    2016-10-26 07:49:00
39648    20451    939    2016-10-26 16:41:00    2016-10-26 16:41:00
39649    20451    934    2016-10-26 10:31:00    2016-10-26 10:31:00
39650    20451    494    2016-10-26 23:07:00    2016-10-26 23:07:00
39651    20451    896    2016-10-26 22:14:00    2016-10-26 22:14:00
39652    20451    605    2016-10-26 09:17:00    2016-10-26 09:17:00
39653    20452    841    2016-10-26 10:05:00    2016-10-26 10:05:00
39654    20452    889    2016-10-26 12:10:00    2016-10-26 12:10:00
39655    20452    868    2016-10-26 20:28:00    2016-10-26 20:28:00
39656    20452    702    2016-10-26 11:39:00    2016-10-26 11:39:00
39657    20452    592    2016-10-26 18:46:00    2016-10-26 18:46:00
39658    20453    891    2016-10-26 20:20:00    2016-10-26 20:20:00
39659    20453    788    2016-10-26 10:03:00    2016-10-26 10:03:00
39660    20453    938    2016-10-26 04:03:00    2016-10-26 04:03:00
39661    20453    556    2016-10-26 01:10:00    2016-10-26 01:10:00
39662    20453    675    2016-10-26 21:43:00    2016-10-26 21:43:00
39663    20454    642    2016-10-26 08:48:00    2016-10-26 08:48:00
39664    20454    496    2016-10-26 06:46:00    2016-10-26 06:46:00
39665    20454    718    2016-10-26 21:09:00    2016-10-26 21:09:00
39666    20454    467    2016-10-26 20:58:00    2016-10-26 20:58:00
39667    20454    709    2016-10-26 12:12:00    2016-10-26 12:12:00
39668    20455    922    2016-10-26 15:57:00    2016-10-26 15:57:00
39669    20455    734    2016-10-26 06:30:00    2016-10-26 06:30:00
39670    20455    549    2016-10-26 05:00:00    2016-10-26 05:00:00
39671    20455    476    2016-10-26 05:06:00    2016-10-26 05:06:00
39672    20455    551    2016-10-26 13:33:00    2016-10-26 13:33:00
39673    20456    705    2016-10-26 17:20:00    2016-10-26 17:20:00
39674    20456    895    2016-10-26 16:29:00    2016-10-26 16:29:00
39675    20456    740    2016-10-26 14:49:00    2016-10-26 14:49:00
39676    20456    749    2016-10-26 07:42:00    2016-10-26 07:42:00
39677    20456    702    2016-10-26 20:01:00    2016-10-26 20:01:00
39678    20457    465    2016-10-26 21:16:00    2016-10-26 21:16:00
39679    20457    691    2016-10-26 22:06:00    2016-10-26 22:06:00
39680    20457    475    2016-10-26 04:47:00    2016-10-26 04:47:00
39681    20457    874    2016-10-26 02:18:00    2016-10-26 02:18:00
39682    20457    925    2016-10-26 18:03:00    2016-10-26 18:03:00
39683    20458    862    2016-10-26 13:12:00    2016-10-26 13:12:00
39684    20458    546    2016-10-26 23:07:00    2016-10-26 23:07:00
39685    20458    821    2016-10-26 03:43:00    2016-10-26 03:43:00
39686    20458    539    2016-10-26 16:01:00    2016-10-26 16:01:00
39687    20458    775    2016-10-26 17:15:00    2016-10-26 17:15:00
39688    20459    769    2016-10-26 10:42:00    2016-10-26 10:42:00
39689    20459    598    2016-10-26 22:45:00    2016-10-26 22:45:00
39690    20459    494    2016-10-26 18:21:00    2016-10-26 18:21:00
39691    20459    605    2016-10-26 03:57:00    2016-10-26 03:57:00
39692    20459    558    2016-10-26 04:45:00    2016-10-26 04:45:00
39693    20460    705    2016-10-26 15:17:00    2016-10-26 15:17:00
39694    20460    745    2016-10-26 04:54:00    2016-10-26 04:54:00
39695    20460    769    2016-10-26 05:58:00    2016-10-26 05:58:00
39696    20460    813    2016-10-26 16:13:00    2016-10-26 16:13:00
39697    20460    732    2016-10-26 04:02:00    2016-10-26 04:02:00
39698    20461    720    2016-10-26 05:48:00    2016-10-26 05:48:00
39699    20461    923    2016-10-26 12:30:00    2016-10-26 12:30:00
39700    20461    828    2016-10-26 10:04:00    2016-10-26 10:04:00
39701    20461    590    2016-10-26 20:07:00    2016-10-26 20:07:00
39702    20461    574    2016-10-26 23:30:00    2016-10-26 23:30:00
39703    20462    815    2016-10-26 17:25:00    2016-10-26 17:25:00
39704    20462    721    2016-10-26 20:52:00    2016-10-26 20:52:00
39705    20462    628    2016-10-26 14:55:00    2016-10-26 14:55:00
39706    20462    474    2016-10-26 16:38:00    2016-10-26 16:38:00
39707    20462    878    2016-10-26 15:48:00    2016-10-26 15:48:00
39708    20463    669    2016-10-26 19:13:00    2016-10-26 19:13:00
39709    20463    700    2016-10-26 02:57:00    2016-10-26 02:57:00
39710    20463    641    2016-10-26 02:21:00    2016-10-26 02:21:00
39711    20463    604    2016-10-26 10:36:00    2016-10-26 10:36:00
39712    20463    779    2016-10-26 20:37:00    2016-10-26 20:37:00
39713    20464    717    2016-10-26 01:17:00    2016-10-26 01:17:00
39714    20464    886    2016-10-26 19:43:00    2016-10-26 19:43:00
39715    20464    954    2016-10-26 10:24:00    2016-10-26 10:24:00
39716    20464    875    2016-10-26 19:12:00    2016-10-26 19:12:00
39717    20464    503    2016-10-26 18:42:00    2016-10-26 18:42:00
39718    20465    943    2016-10-26 23:41:00    2016-10-26 23:41:00
39719    20465    830    2016-10-26 04:13:00    2016-10-26 04:13:00
39720    20465    919    2016-10-26 03:28:00    2016-10-26 03:28:00
39721    20465    712    2016-10-26 13:10:00    2016-10-26 13:10:00
39722    20465    680    2016-10-26 11:45:00    2016-10-26 11:45:00
39723    20466    898    2016-10-26 18:19:00    2016-10-26 18:19:00
39724    20466    957    2016-10-26 17:01:00    2016-10-26 17:01:00
39725    20466    857    2016-10-26 13:21:00    2016-10-26 13:21:00
39726    20466    638    2016-10-26 19:16:00    2016-10-26 19:16:00
39727    20466    475    2016-10-26 07:31:00    2016-10-26 07:31:00
39728    20467    915    2016-10-26 04:47:00    2016-10-26 04:47:00
39729    20467    722    2016-10-26 04:30:00    2016-10-26 04:30:00
39730    20467    499    2016-10-26 03:38:00    2016-10-26 03:38:00
39731    20467    647    2016-10-26 23:57:00    2016-10-26 23:57:00
39732    20467    953    2016-10-26 13:52:00    2016-10-26 13:52:00
39733    20468    812    2016-10-26 01:01:00    2016-10-26 01:01:00
39734    20468    850    2016-10-26 11:13:00    2016-10-26 11:13:00
39735    20468    767    2016-10-26 10:52:00    2016-10-26 10:52:00
39736    20468    506    2016-10-26 06:26:00    2016-10-26 06:26:00
39737    20468    634    2016-10-26 14:55:00    2016-10-26 14:55:00
39738    20469    920    2016-10-26 07:49:00    2016-10-26 07:49:00
39739    20469    933    2016-10-26 23:59:00    2016-10-26 23:59:00
39740    20469    955    2016-10-26 01:46:00    2016-10-26 01:46:00
39741    20469    579    2016-10-26 11:25:00    2016-10-26 11:25:00
39742    20469    903    2016-10-26 02:47:00    2016-10-26 02:47:00
39743    20470    628    2016-10-26 04:33:00    2016-10-26 04:33:00
39744    20470    711    2016-10-26 21:08:00    2016-10-26 21:08:00
39745    20470    896    2016-10-26 19:58:00    2016-10-26 19:58:00
39746    20470    923    2016-10-26 22:22:00    2016-10-26 22:22:00
39747    20470    481    2016-10-26 20:45:00    2016-10-26 20:45:00
39748    20471    540    2016-10-26 22:10:00    2016-10-26 22:10:00
39749    20471    798    2016-10-26 17:55:00    2016-10-26 17:55:00
39750    20471    839    2016-10-26 23:27:00    2016-10-26 23:27:00
39751    20471    551    2016-10-26 04:38:00    2016-10-26 04:38:00
39752    20471    579    2016-10-26 20:26:00    2016-10-26 20:26:00
39753    20472    690    2016-10-26 16:02:00    2016-10-26 16:02:00
39754    20472    874    2016-10-26 12:10:00    2016-10-26 12:10:00
39755    20472    886    2016-10-26 02:25:00    2016-10-26 02:25:00
39756    20472    869    2016-10-26 11:15:00    2016-10-26 11:15:00
39757    20472    485    2016-10-26 05:48:00    2016-10-26 05:48:00
39758    20473    941    2016-10-26 02:21:00    2016-10-26 02:21:00
39759    20473    629    2016-10-26 02:45:00    2016-10-26 02:45:00
39760    20473    712    2016-10-26 16:25:00    2016-10-26 16:25:00
39761    20473    607    2016-10-26 17:45:00    2016-10-26 17:45:00
39762    20473    769    2016-10-26 07:17:00    2016-10-26 07:17:00
39763    20474    665    2016-10-26 20:55:00    2016-10-26 20:55:00
39764    20474    559    2016-10-26 07:16:00    2016-10-26 07:16:00
39765    20474    719    2016-10-26 19:38:00    2016-10-26 19:38:00
39766    20474    672    2016-10-26 04:31:00    2016-10-26 04:31:00
39767    20474    466    2016-10-26 12:25:00    2016-10-26 12:25:00
39768    20475    835    2016-10-26 23:48:00    2016-10-26 23:48:00
39769    20475    470    2016-10-26 21:27:00    2016-10-26 21:27:00
39770    20475    605    2016-10-26 07:44:00    2016-10-26 07:44:00
39771    20475    603    2016-10-26 18:17:00    2016-10-26 18:17:00
39772    20475    880    2016-10-26 22:23:00    2016-10-26 22:23:00
39773    20476    518    2016-10-26 22:21:00    2016-10-26 22:21:00
39774    20476    878    2016-10-26 18:05:00    2016-10-26 18:05:00
39775    20476    931    2016-10-26 10:35:00    2016-10-26 10:35:00
39776    20476    729    2016-10-26 06:42:00    2016-10-26 06:42:00
39777    20476    619    2016-10-26 17:14:00    2016-10-26 17:14:00
39778    20477    956    2016-10-26 13:56:00    2016-10-26 13:56:00
39779    20477    490    2016-10-26 23:22:00    2016-10-26 23:22:00
39780    20477    658    2016-10-26 04:53:00    2016-10-26 04:53:00
39781    20477    929    2016-10-26 12:04:00    2016-10-26 12:04:00
39782    20477    715    2016-10-26 20:13:00    2016-10-26 20:13:00
39783    20478    469    2016-10-26 20:05:00    2016-10-26 20:05:00
39784    20478    913    2016-10-26 06:10:00    2016-10-26 06:10:00
39785    20478    476    2016-10-26 09:47:00    2016-10-26 09:47:00
39786    20478    876    2016-10-26 19:09:00    2016-10-26 19:09:00
39787    20478    790    2016-10-26 13:26:00    2016-10-26 13:26:00
39788    20479    846    2016-10-26 01:25:00    2016-10-26 01:25:00
39789    20479    503    2016-10-26 14:00:00    2016-10-26 14:00:00
39790    20479    916    2016-10-26 07:14:00    2016-10-26 07:14:00
39791    20479    563    2016-10-26 11:40:00    2016-10-26 11:40:00
39792    20479    653    2016-10-26 18:18:00    2016-10-26 18:18:00
39793    20480    951    2016-10-26 15:15:00    2016-10-26 15:15:00
39794    20480    908    2016-10-26 14:44:00    2016-10-26 14:44:00
39795    20480    961    2016-10-26 15:48:00    2016-10-26 15:48:00
39796    20480    787    2016-10-26 16:18:00    2016-10-26 16:18:00
39797    20480    837    2016-10-26 18:08:00    2016-10-26 18:08:00
39798    20481    734    2016-10-26 16:27:00    2016-10-26 16:27:00
39799    20481    875    2016-10-26 21:05:00    2016-10-26 21:05:00
39800    20481    586    2016-10-26 08:14:00    2016-10-26 08:14:00
39801    20481    519    2016-10-26 19:50:00    2016-10-26 19:50:00
39802    20481    662    2016-10-26 01:54:00    2016-10-26 01:54:00
39803    20482    816    2016-10-26 03:57:00    2016-10-26 03:57:00
39804    20482    758    2016-10-26 03:51:00    2016-10-26 03:51:00
39805    20482    533    2016-10-26 02:31:00    2016-10-26 02:31:00
39806    20482    513    2016-10-26 20:55:00    2016-10-26 20:55:00
39807    20482    917    2016-10-26 17:29:00    2016-10-26 17:29:00
39808    20483    944    2016-10-26 08:15:00    2016-10-26 08:15:00
39809    20483    768    2016-10-26 06:26:00    2016-10-26 06:26:00
39810    20483    667    2016-10-26 19:01:00    2016-10-26 19:01:00
39811    20483    687    2016-10-26 11:28:00    2016-10-26 11:28:00
39812    20483    961    2016-10-26 18:32:00    2016-10-26 18:32:00
39813    20484    901    2016-10-26 13:31:00    2016-10-26 13:31:00
39814    20484    691    2016-10-26 08:40:00    2016-10-26 08:40:00
39815    20484    575    2016-10-26 11:37:00    2016-10-26 11:37:00
39816    20484    534    2016-10-26 03:00:00    2016-10-26 03:00:00
39817    20484    569    2016-10-26 11:37:00    2016-10-26 11:37:00
39818    20485    568    2016-10-26 05:06:00    2016-10-26 05:06:00
39819    20485    693    2016-10-26 20:59:00    2016-10-26 20:59:00
39820    20485    513    2016-10-26 02:39:00    2016-10-26 02:39:00
39821    20485    853    2016-10-26 22:24:00    2016-10-26 22:24:00
39822    20485    796    2016-10-26 14:46:00    2016-10-26 14:46:00
39823    20486    805    2016-10-26 14:20:00    2016-10-26 14:20:00
39824    20486    856    2016-10-26 09:35:00    2016-10-26 09:35:00
39825    20486    931    2016-10-26 07:32:00    2016-10-26 07:32:00
39826    20486    621    2016-10-26 10:43:00    2016-10-26 10:43:00
39827    20486    777    2016-10-26 10:50:00    2016-10-26 10:50:00
39828    20487    508    2016-10-26 03:42:00    2016-10-26 03:42:00
39829    20487    938    2016-10-26 03:53:00    2016-10-26 03:53:00
39830    20487    766    2016-10-26 04:51:00    2016-10-26 04:51:00
39831    20487    842    2016-10-26 21:40:00    2016-10-26 21:40:00
39832    20487    939    2016-10-26 02:50:00    2016-10-26 02:50:00
39833    20488    646    2016-10-26 08:06:00    2016-10-26 08:06:00
39834    20488    883    2016-10-26 07:37:00    2016-10-26 07:37:00
39835    20488    612    2016-10-26 09:42:00    2016-10-26 09:42:00
39836    20488    956    2016-10-26 10:18:00    2016-10-26 10:18:00
39837    20488    930    2016-10-26 04:33:00    2016-10-26 04:33:00
39838    20489    733    2016-10-26 22:14:00    2016-10-26 22:14:00
39839    20489    907    2016-10-26 12:22:00    2016-10-26 12:22:00
39840    20489    720    2016-10-26 21:48:00    2016-10-26 21:48:00
39841    20489    776    2016-10-26 06:25:00    2016-10-26 06:25:00
39842    20489    925    2016-10-26 10:07:00    2016-10-26 10:07:00
39843    20490    584    2016-10-26 14:59:00    2016-10-26 14:59:00
39844    20490    591    2016-10-26 08:43:00    2016-10-26 08:43:00
39845    20490    846    2016-10-26 17:40:00    2016-10-26 17:40:00
39846    20490    706    2016-10-26 02:17:00    2016-10-26 02:17:00
39847    20490    597    2016-10-26 23:16:00    2016-10-26 23:16:00
39848    20491    877    2016-10-26 19:42:00    2016-10-26 19:42:00
39849    20491    737    2016-10-26 13:29:00    2016-10-26 13:29:00
39850    20491    594    2016-10-26 22:22:00    2016-10-26 22:22:00
39851    20491    932    2016-10-26 04:43:00    2016-10-26 04:43:00
39852    20491    817    2016-10-26 22:37:00    2016-10-26 22:37:00
39853    20492    781    2016-10-26 14:52:00    2016-10-26 14:52:00
39854    20492    869    2016-10-26 09:06:00    2016-10-26 09:06:00
39855    20492    639    2016-10-26 16:30:00    2016-10-26 16:30:00
39856    20492    827    2016-10-26 06:03:00    2016-10-26 06:03:00
39857    20492    914    2016-10-26 12:53:00    2016-10-26 12:53:00
39858    20493    752    2016-10-26 13:29:00    2016-10-26 13:29:00
39859    20493    779    2016-10-26 07:02:00    2016-10-26 07:02:00
39860    20493    900    2016-10-26 14:21:00    2016-10-26 14:21:00
39861    20493    465    2016-10-26 05:43:00    2016-10-26 05:43:00
39862    20493    855    2016-10-26 16:13:00    2016-10-26 16:13:00
39863    20494    676    2016-10-26 16:22:00    2016-10-26 16:22:00
39864    20494    841    2016-10-26 06:45:00    2016-10-26 06:45:00
39865    20494    516    2016-10-26 17:50:00    2016-10-26 17:50:00
39866    20494    859    2016-10-26 04:06:00    2016-10-26 04:06:00
39867    20494    763    2016-10-26 18:35:00    2016-10-26 18:35:00
39868    20495    775    2016-10-26 04:36:00    2016-10-26 04:36:00
39869    20495    899    2016-10-26 03:52:00    2016-10-26 03:52:00
39870    20495    794    2016-10-26 13:40:00    2016-10-26 13:40:00
39871    20495    513    2016-10-26 02:08:00    2016-10-26 02:08:00
39872    20495    720    2016-10-26 22:18:00    2016-10-26 22:18:00
39873    20496    942    2016-10-26 09:27:00    2016-10-26 09:27:00
39874    20496    495    2016-10-26 21:10:00    2016-10-26 21:10:00
39875    20496    961    2016-10-26 07:24:00    2016-10-26 07:24:00
39876    20496    960    2016-10-26 12:04:00    2016-10-26 12:04:00
39877    20496    733    2016-10-26 14:50:00    2016-10-26 14:50:00
39878    20497    822    2016-10-26 05:22:00    2016-10-26 05:22:00
39879    20497    827    2016-10-26 01:54:00    2016-10-26 01:54:00
39880    20497    515    2016-10-26 07:28:00    2016-10-26 07:28:00
39881    20497    791    2016-10-26 18:00:00    2016-10-26 18:00:00
39882    20497    891    2016-10-26 21:05:00    2016-10-26 21:05:00
39883    20498    742    2016-10-26 13:45:00    2016-10-26 13:45:00
39884    20498    490    2016-10-26 06:29:00    2016-10-26 06:29:00
39885    20498    493    2016-10-26 04:54:00    2016-10-26 04:54:00
39886    20498    728    2016-10-26 18:16:00    2016-10-26 18:16:00
39887    20498    641    2016-10-26 20:33:00    2016-10-26 20:33:00
39888    20499    735    2016-10-26 13:39:00    2016-10-26 13:39:00
39889    20499    597    2016-10-26 10:27:00    2016-10-26 10:27:00
39890    20499    546    2016-10-26 06:05:00    2016-10-26 06:05:00
39891    20499    647    2016-10-26 17:07:00    2016-10-26 17:07:00
39892    20499    725    2016-10-26 06:42:00    2016-10-26 06:42:00
39893    20500    824    2016-10-26 12:11:00    2016-10-26 12:11:00
39894    20500    877    2016-10-26 07:37:00    2016-10-26 07:37:00
39895    20500    715    2016-10-26 16:45:00    2016-10-26 16:45:00
39896    20500    661    2016-10-26 18:20:00    2016-10-26 18:20:00
39897    20500    465    2016-10-26 19:31:00    2016-10-26 19:31:00
39898    20501    909    2016-10-26 14:21:00    2016-10-26 14:21:00
39899    20501    928    2016-10-26 02:32:00    2016-10-26 02:32:00
39900    20501    597    2016-10-26 22:38:00    2016-10-26 22:38:00
39901    20501    931    2016-10-26 01:16:00    2016-10-26 01:16:00
39902    20501    835    2016-10-26 23:09:00    2016-10-26 23:09:00
39903    20502    505    2016-10-26 13:06:00    2016-10-26 13:06:00
39904    20502    890    2016-10-26 09:38:00    2016-10-26 09:38:00
39905    20502    649    2016-10-26 17:34:00    2016-10-26 17:34:00
39906    20502    662    2016-10-26 11:26:00    2016-10-26 11:26:00
39907    20502    859    2016-10-26 23:45:00    2016-10-26 23:45:00
39908    20503    773    2016-10-26 13:16:00    2016-10-26 13:16:00
39909    20503    938    2016-10-26 06:55:00    2016-10-26 06:55:00
39910    20503    933    2016-10-26 21:55:00    2016-10-26 21:55:00
39911    20503    850    2016-10-26 07:05:00    2016-10-26 07:05:00
39912    20503    902    2016-10-26 15:11:00    2016-10-26 15:11:00
39913    20504    507    2016-10-26 05:33:00    2016-10-26 05:33:00
39914    20504    616    2016-10-26 13:43:00    2016-10-26 13:43:00
39915    20504    542    2016-10-26 15:12:00    2016-10-26 15:12:00
39916    20504    568    2016-10-26 19:18:00    2016-10-26 19:18:00
39917    20504    723    2016-10-26 12:33:00    2016-10-26 12:33:00
39918    20505    505    2016-10-26 17:23:00    2016-10-26 17:23:00
39919    20505    951    2016-10-26 05:01:00    2016-10-26 05:01:00
39920    20505    615    2016-10-26 12:00:00    2016-10-26 12:00:00
39921    20505    858    2016-10-26 02:09:00    2016-10-26 02:09:00
39922    20505    817    2016-10-26 05:06:00    2016-10-26 05:06:00
39923    20506    821    2016-10-26 17:50:00    2016-10-26 17:50:00
39924    20506    642    2016-10-26 11:02:00    2016-10-26 11:02:00
39925    20506    814    2016-10-26 01:28:00    2016-10-26 01:28:00
39926    20506    865    2016-10-26 22:45:00    2016-10-26 22:45:00
39927    20506    554    2016-10-26 10:24:00    2016-10-26 10:24:00
39928    20507    696    2016-10-26 19:45:00    2016-10-26 19:45:00
39929    20507    892    2016-10-26 03:44:00    2016-10-26 03:44:00
39930    20507    822    2016-10-26 15:14:00    2016-10-26 15:14:00
39931    20507    556    2016-10-26 02:04:00    2016-10-26 02:04:00
39932    20507    614    2016-10-26 14:51:00    2016-10-26 14:51:00
39933    20508    668    2016-10-26 22:43:00    2016-10-26 22:43:00
39934    20508    671    2016-10-26 19:30:00    2016-10-26 19:30:00
39935    20508    529    2016-10-26 02:57:00    2016-10-26 02:57:00
39936    20508    778    2016-10-26 09:34:00    2016-10-26 09:34:00
39937    20508    465    2016-10-26 21:33:00    2016-10-26 21:33:00
39938    20509    616    2016-10-26 09:01:00    2016-10-26 09:01:00
39939    20509    957    2016-10-26 19:03:00    2016-10-26 19:03:00
39940    20509    478    2016-10-26 05:54:00    2016-10-26 05:54:00
39941    20509    907    2016-10-26 10:54:00    2016-10-26 10:54:00
39942    20509    535    2016-10-26 23:12:00    2016-10-26 23:12:00
39943    20510    501    2016-10-26 18:11:00    2016-10-26 18:11:00
39944    20510    787    2016-10-27 00:00:00    2016-10-27 00:00:00
39945    20510    818    2016-10-26 07:19:00    2016-10-26 07:19:00
39946    20510    942    2016-10-26 02:34:00    2016-10-26 02:34:00
39947    20510    900    2016-10-26 19:41:00    2016-10-26 19:41:00
39948    20511    747    2016-10-26 20:50:00    2016-10-26 20:50:00
39949    20511    546    2016-10-26 20:06:00    2016-10-26 20:06:00
39950    20511    917    2016-10-26 21:16:00    2016-10-26 21:16:00
39951    20511    557    2016-10-26 14:32:00    2016-10-26 14:32:00
39952    20511    865    2016-10-26 22:52:00    2016-10-26 22:52:00
39953    20512    528    2016-10-26 02:55:00    2016-10-26 02:55:00
39954    20512    859    2016-10-26 04:40:00    2016-10-26 04:40:00
39955    20512    803    2016-10-26 13:43:00    2016-10-26 13:43:00
39956    20512    696    2016-10-26 22:48:00    2016-10-26 22:48:00
39957    20512    498    2016-10-26 19:59:00    2016-10-26 19:59:00
39958    20513    736    2016-10-26 06:27:00    2016-10-26 06:27:00
39959    20513    686    2016-10-26 08:32:00    2016-10-26 08:32:00
39960    20513    828    2016-10-26 02:57:00    2016-10-26 02:57:00
39961    20513    608    2016-10-26 04:20:00    2016-10-26 04:20:00
39962    20513    619    2016-10-26 09:23:00    2016-10-26 09:23:00
39963    20514    838    2016-10-26 05:47:00    2016-10-26 05:47:00
39964    20514    565    2016-10-26 01:25:00    2016-10-26 01:25:00
39965    20514    875    2016-10-26 14:06:00    2016-10-26 14:06:00
39966    20514    749    2016-10-26 16:19:00    2016-10-26 16:19:00
39967    20514    932    2016-10-26 16:55:00    2016-10-26 16:55:00
39968    20515    916    2016-10-26 05:27:00    2016-10-26 05:27:00
39969    20515    902    2016-10-26 14:30:00    2016-10-26 14:30:00
39970    20515    636    2016-10-26 04:34:00    2016-10-26 04:34:00
39971    20515    789    2016-10-26 18:48:00    2016-10-26 18:48:00
39972    20515    670    2016-10-26 07:15:00    2016-10-26 07:15:00
39973    20516    723    2016-10-26 06:47:00    2016-10-26 06:47:00
39974    20516    855    2016-10-26 18:12:00    2016-10-26 18:12:00
39975    20516    805    2016-10-26 23:03:00    2016-10-26 23:03:00
39976    20516    571    2016-10-26 15:51:00    2016-10-26 15:51:00
39977    20516    710    2016-10-26 04:04:00    2016-10-26 04:04:00
39978    20517    777    2016-10-26 01:19:00    2016-10-26 01:19:00
39979    20517    835    2016-10-26 15:55:00    2016-10-26 15:55:00
39980    20517    844    2016-10-26 20:21:00    2016-10-26 20:21:00
39981    20517    638    2016-10-26 12:20:00    2016-10-26 12:20:00
39982    20517    825    2016-10-26 21:13:00    2016-10-26 21:13:00
39983    20518    668    2016-10-26 23:02:00    2016-10-26 23:02:00
39984    20518    756    2016-10-26 13:11:00    2016-10-26 13:11:00
39985    20518    842    2016-10-26 01:03:00    2016-10-26 01:03:00
39986    20518    681    2016-10-26 23:57:00    2016-10-26 23:57:00
39987    20518    693    2016-10-26 09:58:00    2016-10-26 09:58:00
39988    20519    932    2016-10-26 03:32:00    2016-10-26 03:32:00
39989    20519    916    2016-10-26 04:15:00    2016-10-26 04:15:00
39990    20519    751    2016-10-26 22:57:00    2016-10-26 22:57:00
39991    20519    706    2016-10-26 16:14:00    2016-10-26 16:14:00
39992    20519    909    2016-10-26 03:30:00    2016-10-26 03:30:00
39993    20520    602    2016-10-26 23:33:00    2016-10-26 23:33:00
39994    20520    880    2016-10-26 14:32:00    2016-10-26 14:32:00
39995    20520    644    2016-10-26 07:52:00    2016-10-26 07:52:00
39996    20520    801    2016-10-26 04:43:00    2016-10-26 04:43:00
39997    20520    751    2016-10-26 04:36:00    2016-10-26 04:36:00
39998    20521    940    2016-10-26 14:02:00    2016-10-26 14:02:00
39999    20521    899    2016-10-26 13:13:00    2016-10-26 13:13:00
40000    20521    718    2016-10-26 14:28:00    2016-10-26 14:28:00
40001    20521    961    2016-10-26 04:39:00    2016-10-26 04:39:00
40002    20521    940    2016-10-26 14:46:00    2016-10-26 14:46:00
40003    20522    831    2016-10-26 01:51:00    2016-10-26 01:51:00
40004    20522    737    2016-10-26 05:36:00    2016-10-26 05:36:00
40005    20522    937    2016-10-26 16:23:00    2016-10-26 16:23:00
40006    20522    900    2016-10-26 12:13:00    2016-10-26 12:13:00
40007    20522    582    2016-10-26 11:42:00    2016-10-26 11:42:00
40008    20523    470    2016-10-27 01:04:00    2016-10-27 01:04:00
40009    20523    807    2016-10-27 21:08:00    2016-10-27 21:08:00
40010    20523    524    2016-10-27 17:50:00    2016-10-27 17:50:00
40011    20523    912    2016-10-27 04:55:00    2016-10-27 04:55:00
40012    20523    912    2016-10-27 04:51:00    2016-10-27 04:51:00
40013    20524    667    2016-10-27 16:20:00    2016-10-27 16:20:00
40014    20524    621    2016-10-27 03:41:00    2016-10-27 03:41:00
40015    20524    549    2016-10-27 01:50:00    2016-10-27 01:50:00
40016    20524    675    2016-10-27 04:42:00    2016-10-27 04:42:00
40017    20524    899    2016-10-27 10:05:00    2016-10-27 10:05:00
40018    20525    736    2016-10-27 09:14:00    2016-10-27 09:14:00
40019    20525    712    2016-10-27 21:11:00    2016-10-27 21:11:00
40020    20525    883    2016-10-27 20:25:00    2016-10-27 20:25:00
40021    20525    647    2016-10-27 10:35:00    2016-10-27 10:35:00
40022    20525    566    2016-10-27 03:52:00    2016-10-27 03:52:00
40023    20526    688    2016-10-27 06:52:00    2016-10-27 06:52:00
40024    20526    860    2016-10-27 16:04:00    2016-10-27 16:04:00
40025    20526    709    2016-10-27 14:13:00    2016-10-27 14:13:00
40026    20526    814    2016-10-27 08:59:00    2016-10-27 08:59:00
40027    20526    841    2016-10-27 02:14:00    2016-10-27 02:14:00
40028    20527    574    2016-10-27 16:29:00    2016-10-27 16:29:00
40029    20527    909    2016-10-27 22:32:00    2016-10-27 22:32:00
40030    20527    481    2016-10-27 16:14:00    2016-10-27 16:14:00
40031    20527    910    2016-10-27 12:24:00    2016-10-27 12:24:00
40032    20527    669    2016-10-27 13:37:00    2016-10-27 13:37:00
40033    20528    895    2016-10-27 22:27:00    2016-10-27 22:27:00
40034    20528    805    2016-10-27 08:25:00    2016-10-27 08:25:00
40035    20528    804    2016-10-27 11:00:00    2016-10-27 11:00:00
40036    20528    771    2016-10-27 14:20:00    2016-10-27 14:20:00
40037    20528    583    2016-10-27 10:29:00    2016-10-27 10:29:00
40038    20529    775    2016-10-27 08:59:00    2016-10-27 08:59:00
40039    20529    553    2016-10-27 16:21:00    2016-10-27 16:21:00
40040    20529    531    2016-10-27 11:51:00    2016-10-27 11:51:00
40041    20529    847    2016-10-27 04:00:00    2016-10-27 04:00:00
40042    20529    898    2016-10-27 17:50:00    2016-10-27 17:50:00
40043    20530    487    2016-10-27 14:06:00    2016-10-27 14:06:00
40044    20530    748    2016-10-27 04:42:00    2016-10-27 04:42:00
40045    20530    831    2016-10-27 13:53:00    2016-10-27 13:53:00
40046    20530    930    2016-10-27 07:59:00    2016-10-27 07:59:00
40047    20530    698    2016-10-27 23:16:00    2016-10-27 23:16:00
40048    20531    882    2016-10-28 16:24:00    2016-10-28 16:24:00
40049    20531    705    2016-10-28 14:56:00    2016-10-28 14:56:00
40050    20531    771    2016-10-28 09:02:00    2016-10-28 09:02:00
40051    20531    804    2016-10-28 23:57:00    2016-10-28 23:57:00
40052    20531    882    2016-10-28 05:25:00    2016-10-28 05:25:00
40053    20532    564    2016-10-28 12:09:00    2016-10-28 12:09:00
40054    20532    516    2016-10-28 08:31:00    2016-10-28 08:31:00
40055    20532    546    2016-10-28 17:33:00    2016-10-28 17:33:00
40056    20532    638    2016-10-28 07:07:00    2016-10-28 07:07:00
40057    20532    595    2016-10-28 07:19:00    2016-10-28 07:19:00
40058    20533    930    2016-10-28 03:49:00    2016-10-28 03:49:00
40059    20533    679    2016-10-28 18:40:00    2016-10-28 18:40:00
40060    20533    463    2016-10-28 01:18:00    2016-10-28 01:18:00
40061    20533    540    2016-10-28 17:47:00    2016-10-28 17:47:00
40062    20533    948    2016-10-28 11:51:00    2016-10-28 11:51:00
40063    20534    756    2016-10-28 14:20:00    2016-10-28 14:20:00
40064    20534    684    2016-10-28 21:27:00    2016-10-28 21:27:00
40065    20534    884    2016-10-28 19:39:00    2016-10-28 19:39:00
40066    20534    662    2016-10-28 02:27:00    2016-10-28 02:27:00
40067    20534    468    2016-10-28 01:06:00    2016-10-28 01:06:00
40068    20535    557    2016-10-28 07:12:00    2016-10-28 07:12:00
40069    20535    755    2016-10-28 15:06:00    2016-10-28 15:06:00
40070    20535    720    2016-10-28 11:43:00    2016-10-28 11:43:00
40071    20535    885    2016-10-28 04:16:00    2016-10-28 04:16:00
40072    20535    771    2016-10-28 20:04:00    2016-10-28 20:04:00
40073    20536    656    2016-10-28 21:58:00    2016-10-28 21:58:00
40074    20536    474    2016-10-28 10:33:00    2016-10-28 10:33:00
40075    20536    867    2016-10-28 17:21:00    2016-10-28 17:21:00
40076    20536    463    2016-10-28 17:50:00    2016-10-28 17:50:00
40077    20536    959    2016-10-28 01:27:00    2016-10-28 01:27:00
40078    20537    742    2016-10-28 07:17:00    2016-10-28 07:17:00
40079    20537    479    2016-10-28 23:44:00    2016-10-28 23:44:00
40080    20537    774    2016-10-28 05:26:00    2016-10-28 05:26:00
40081    20537    604    2016-10-28 08:10:00    2016-10-28 08:10:00
40082    20537    836    2016-10-28 23:35:00    2016-10-28 23:35:00
40083    20538    815    2016-10-28 03:31:00    2016-10-28 03:31:00
40084    20538    487    2016-10-28 14:33:00    2016-10-28 14:33:00
40085    20538    487    2016-10-28 01:51:00    2016-10-28 01:51:00
40086    20538    846    2016-10-28 08:55:00    2016-10-28 08:55:00
40087    20538    683    2016-10-28 12:47:00    2016-10-28 12:47:00
40088    20539    742    2016-10-28 17:53:00    2016-10-28 17:53:00
40089    20539    555    2016-10-28 01:47:00    2016-10-28 01:47:00
40090    20539    592    2016-10-28 22:20:00    2016-10-28 22:20:00
40091    20539    819    2016-10-28 12:38:00    2016-10-28 12:38:00
40092    20539    578    2016-10-28 04:33:00    2016-10-28 04:33:00
40093    20540    803    2016-10-28 04:54:00    2016-10-28 04:54:00
40094    20540    671    2016-10-28 07:45:00    2016-10-28 07:45:00
40095    20540    895    2016-10-28 03:56:00    2016-10-28 03:56:00
40096    20540    639    2016-10-28 22:40:00    2016-10-28 22:40:00
40097    20540    874    2016-10-28 12:50:00    2016-10-28 12:50:00
40098    20541    488    2016-10-28 10:33:00    2016-10-28 10:33:00
40099    20541    465    2016-10-28 08:41:00    2016-10-28 08:41:00
40100    20541    811    2016-10-28 18:10:00    2016-10-28 18:10:00
40101    20541    610    2016-10-28 10:28:00    2016-10-28 10:28:00
40102    20541    879    2016-10-28 18:21:00    2016-10-28 18:21:00
40103    20542    912    2016-10-28 07:45:00    2016-10-28 07:45:00
40104    20542    740    2016-10-28 17:24:00    2016-10-28 17:24:00
40105    20542    565    2016-10-28 14:55:00    2016-10-28 14:55:00
40106    20542    868    2016-10-28 09:57:00    2016-10-28 09:57:00
40107    20542    646    2016-10-28 11:45:00    2016-10-28 11:45:00
40108    20543    934    2016-10-28 04:01:00    2016-10-28 04:01:00
40109    20543    741    2016-10-28 07:31:00    2016-10-28 07:31:00
40110    20543    676    2016-10-28 06:21:00    2016-10-28 06:21:00
40111    20543    562    2016-10-28 13:12:00    2016-10-28 13:12:00
40112    20543    535    2016-10-28 09:37:00    2016-10-28 09:37:00
40113    20544    834    2016-10-28 11:14:00    2016-10-28 11:14:00
40114    20544    479    2016-10-28 16:09:00    2016-10-28 16:09:00
40115    20544    674    2016-10-28 10:53:00    2016-10-28 10:53:00
40116    20544    665    2016-10-28 15:48:00    2016-10-28 15:48:00
40117    20544    926    2016-10-28 17:43:00    2016-10-28 17:43:00
40118    20545    755    2016-10-28 03:31:00    2016-10-28 03:31:00
40119    20545    855    2016-10-28 07:33:00    2016-10-28 07:33:00
40120    20545    769    2016-10-28 02:02:00    2016-10-28 02:02:00
40121    20545    478    2016-10-28 15:20:00    2016-10-28 15:20:00
40122    20545    828    2016-10-28 18:00:00    2016-10-28 18:00:00
40123    20546    470    2016-10-28 19:01:00    2016-10-28 19:01:00
40124    20546    776    2016-10-28 09:19:00    2016-10-28 09:19:00
40125    20546    680    2016-10-28 09:22:00    2016-10-28 09:22:00
40126    20546    576    2016-10-28 21:42:00    2016-10-28 21:42:00
40127    20546    863    2016-10-28 15:03:00    2016-10-28 15:03:00
40128    20547    899    2016-10-28 13:40:00    2016-10-28 13:40:00
40129    20547    734    2016-10-28 01:53:00    2016-10-28 01:53:00
40130    20547    684    2016-10-28 11:00:00    2016-10-28 11:00:00
40131    20547    528    2016-10-28 15:21:00    2016-10-28 15:21:00
40132    20547    705    2016-10-28 03:39:00    2016-10-28 03:39:00
40133    20548    783    2016-10-28 16:42:00    2016-10-28 16:42:00
40134    20548    739    2016-10-28 05:49:00    2016-10-28 05:49:00
40135    20548    658    2016-10-28 14:28:00    2016-10-28 14:28:00
40136    20548    885    2016-10-28 01:37:00    2016-10-28 01:37:00
40137    20548    896    2016-10-28 12:49:00    2016-10-28 12:49:00
40138    20549    509    2016-10-28 04:10:00    2016-10-28 04:10:00
40139    20549    892    2016-10-28 23:24:00    2016-10-28 23:24:00
40140    20549    487    2016-10-28 22:50:00    2016-10-28 22:50:00
40141    20549    925    2016-10-28 08:23:00    2016-10-28 08:23:00
40142    20549    816    2016-10-28 05:50:00    2016-10-28 05:50:00
40143    20550    475    2016-10-28 15:26:00    2016-10-28 15:26:00
40144    20550    686    2016-10-28 21:19:00    2016-10-28 21:19:00
40145    20550    563    2016-10-28 20:32:00    2016-10-28 20:32:00
40146    20550    474    2016-10-28 01:10:00    2016-10-28 01:10:00
40147    20550    623    2016-10-28 18:45:00    2016-10-28 18:45:00
40148    20551    509    2016-10-28 13:44:00    2016-10-28 13:44:00
40149    20551    631    2016-10-28 01:55:00    2016-10-28 01:55:00
40150    20551    856    2016-10-28 13:40:00    2016-10-28 13:40:00
40151    20551    656    2016-10-28 10:33:00    2016-10-28 10:33:00
40152    20551    685    2016-10-28 22:00:00    2016-10-28 22:00:00
40153    20552    672    2016-10-28 11:20:00    2016-10-28 11:20:00
40154    20552    672    2016-10-28 11:45:00    2016-10-28 11:45:00
40155    20552    486    2016-10-28 01:55:00    2016-10-28 01:55:00
40156    20552    646    2016-10-28 01:14:00    2016-10-28 01:14:00
40157    20552    698    2016-10-28 14:35:00    2016-10-28 14:35:00
40158    20553    747    2016-10-28 01:29:00    2016-10-28 01:29:00
40159    20553    826    2016-10-28 19:54:00    2016-10-28 19:54:00
40160    20553    901    2016-10-28 08:54:00    2016-10-28 08:54:00
40161    20553    775    2016-10-28 08:41:00    2016-10-28 08:41:00
40162    20553    888    2016-10-28 09:37:00    2016-10-28 09:37:00
40163    20554    688    2016-10-28 15:32:00    2016-10-28 15:32:00
40164    20554    787    2016-10-28 18:19:00    2016-10-28 18:19:00
40165    20554    619    2016-10-28 09:13:00    2016-10-28 09:13:00
40166    20554    583    2016-10-28 23:45:00    2016-10-28 23:45:00
40167    20554    854    2016-10-28 18:57:00    2016-10-28 18:57:00
40168    20555    543    2016-10-28 02:49:00    2016-10-28 02:49:00
40169    20555    760    2016-10-28 14:38:00    2016-10-28 14:38:00
40170    20555    680    2016-10-28 12:51:00    2016-10-28 12:51:00
40171    20555    515    2016-10-28 11:18:00    2016-10-28 11:18:00
40172    20555    958    2016-10-28 23:25:00    2016-10-28 23:25:00
40173    20556    745    2016-10-28 10:13:00    2016-10-28 10:13:00
40174    20556    558    2016-10-28 22:11:00    2016-10-28 22:11:00
40175    20556    582    2016-10-28 09:09:00    2016-10-28 09:09:00
40176    20556    845    2016-10-28 22:43:00    2016-10-28 22:43:00
40177    20556    894    2016-10-28 17:16:00    2016-10-28 17:16:00
40178    20557    543    2016-10-28 13:27:00    2016-10-28 13:27:00
40179    20557    658    2016-10-28 12:23:00    2016-10-28 12:23:00
40180    20557    796    2016-10-28 16:15:00    2016-10-28 16:15:00
40181    20557    778    2016-10-28 03:51:00    2016-10-28 03:51:00
40182    20557    468    2016-10-28 17:16:00    2016-10-28 17:16:00
40183    20558    955    2016-10-28 16:46:00    2016-10-28 16:46:00
40184    20558    693    2016-10-28 11:27:00    2016-10-28 11:27:00
40185    20558    624    2016-10-28 08:33:00    2016-10-28 08:33:00
40186    20558    674    2016-10-28 02:30:00    2016-10-28 02:30:00
40187    20558    751    2016-10-28 19:49:00    2016-10-28 19:49:00
40188    20559    475    2016-10-28 18:17:00    2016-10-28 18:17:00
40189    20559    588    2016-10-28 23:32:00    2016-10-28 23:32:00
40190    20559    473    2016-10-28 07:13:00    2016-10-28 07:13:00
40191    20559    690    2016-10-28 18:12:00    2016-10-28 18:12:00
40192    20559    897    2016-10-28 09:14:00    2016-10-28 09:14:00
40193    20560    673    2016-10-28 11:37:00    2016-10-28 11:37:00
40194    20560    601    2016-10-28 05:57:00    2016-10-28 05:57:00
40195    20560    598    2016-10-28 12:00:00    2016-10-28 12:00:00
40196    20560    551    2016-10-28 22:37:00    2016-10-28 22:37:00
40197    20560    832    2016-10-28 17:03:00    2016-10-28 17:03:00
40198    20561    804    2016-10-28 16:23:00    2016-10-28 16:23:00
40199    20561    874    2016-10-28 17:46:00    2016-10-28 17:46:00
40200    20561    532    2016-10-28 10:53:00    2016-10-28 10:53:00
40201    20561    769    2016-10-28 10:48:00    2016-10-28 10:48:00
40202    20561    520    2016-10-28 05:42:00    2016-10-28 05:42:00
40203    20562    470    2016-10-28 12:59:00    2016-10-28 12:59:00
40204    20562    517    2016-10-28 20:29:00    2016-10-28 20:29:00
40205    20562    716    2016-10-28 21:48:00    2016-10-28 21:48:00
40206    20562    803    2016-10-28 12:00:00    2016-10-28 12:00:00
40207    20562    713    2016-10-28 05:09:00    2016-10-28 05:09:00
40208    20563    766    2016-10-28 08:22:00    2016-10-28 08:22:00
40209    20563    847    2016-10-28 22:18:00    2016-10-28 22:18:00
40210    20563    942    2016-10-28 19:41:00    2016-10-28 19:41:00
40211    20563    587    2016-10-28 04:08:00    2016-10-28 04:08:00
40212    20563    795    2016-10-28 11:46:00    2016-10-28 11:46:00
40213    20564    725    2016-10-28 20:50:00    2016-10-28 20:50:00
40214    20564    598    2016-10-28 06:54:00    2016-10-28 06:54:00
40215    20564    642    2016-10-28 22:12:00    2016-10-28 22:12:00
40216    20564    691    2016-10-28 04:30:00    2016-10-28 04:30:00
40217    20564    467    2016-10-28 03:04:00    2016-10-28 03:04:00
40218    20565    713    2016-10-28 02:55:00    2016-10-28 02:55:00
40219    20565    643    2016-10-28 16:31:00    2016-10-28 16:31:00
40220    20565    669    2016-10-28 08:26:00    2016-10-28 08:26:00
40221    20565    940    2016-10-28 17:31:00    2016-10-28 17:31:00
40222    20565    806    2016-10-28 18:42:00    2016-10-28 18:42:00
40223    20566    680    2016-10-28 07:13:00    2016-10-28 07:13:00
40224    20566    880    2016-10-28 21:31:00    2016-10-28 21:31:00
40225    20566    613    2016-10-28 04:52:00    2016-10-28 04:52:00
40226    20566    743    2016-10-28 19:23:00    2016-10-28 19:23:00
40227    20566    491    2016-10-28 17:48:00    2016-10-28 17:48:00
40228    20567    650    2016-10-28 07:58:00    2016-10-28 07:58:00
40229    20567    531    2016-10-28 13:26:00    2016-10-28 13:26:00
40230    20567    956    2016-10-28 12:41:00    2016-10-28 12:41:00
40231    20567    561    2016-10-28 08:40:00    2016-10-28 08:40:00
40232    20567    614    2016-10-28 17:32:00    2016-10-28 17:32:00
40233    20568    485    2016-10-28 06:56:00    2016-10-28 06:56:00
40234    20568    788    2016-10-28 04:14:00    2016-10-28 04:14:00
40235    20568    642    2016-10-28 18:21:00    2016-10-28 18:21:00
40236    20568    790    2016-10-28 02:50:00    2016-10-28 02:50:00
40237    20568    511    2016-10-28 01:02:00    2016-10-28 01:02:00
40238    20569    474    2016-10-28 01:14:00    2016-10-28 01:14:00
40239    20569    843    2016-10-28 01:30:00    2016-10-28 01:30:00
40240    20569    675    2016-10-28 16:33:00    2016-10-28 16:33:00
40241    20569    880    2016-10-28 03:17:00    2016-10-28 03:17:00
40242    20569    636    2016-10-28 18:58:00    2016-10-28 18:58:00
40243    20570    480    2016-10-28 08:33:00    2016-10-28 08:33:00
40244    20570    521    2016-10-28 16:39:00    2016-10-28 16:39:00
40245    20570    807    2016-10-28 05:37:00    2016-10-28 05:37:00
40246    20570    621    2016-10-28 02:48:00    2016-10-28 02:48:00
40247    20570    766    2016-10-28 02:20:00    2016-10-28 02:20:00
40248    20571    864    2016-10-28 21:00:00    2016-10-28 21:00:00
40249    20571    584    2016-10-28 14:32:00    2016-10-28 14:32:00
40250    20571    815    2016-10-28 17:31:00    2016-10-28 17:31:00
40251    20571    944    2016-10-28 13:02:00    2016-10-28 13:02:00
40252    20571    640    2016-10-28 20:09:00    2016-10-28 20:09:00
40253    20572    752    2016-10-28 02:55:00    2016-10-28 02:55:00
40254    20572    610    2016-10-28 10:56:00    2016-10-28 10:56:00
40255    20572    780    2016-10-28 02:12:00    2016-10-28 02:12:00
40256    20572    648    2016-10-28 05:16:00    2016-10-28 05:16:00
40257    20572    563    2016-10-28 14:21:00    2016-10-28 14:21:00
40258    20573    616    2016-10-28 10:38:00    2016-10-28 10:38:00
40259    20573    803    2016-10-28 23:55:00    2016-10-28 23:55:00
40260    20573    471    2016-10-28 19:31:00    2016-10-28 19:31:00
40261    20573    491    2016-10-28 12:32:00    2016-10-28 12:32:00
40262    20573    696    2016-10-28 02:04:00    2016-10-28 02:04:00
40263    20574    538    2016-10-28 09:47:00    2016-10-28 09:47:00
40264    20574    681    2016-10-28 05:47:00    2016-10-28 05:47:00
40265    20574    767    2016-10-28 12:18:00    2016-10-28 12:18:00
40266    20574    720    2016-10-28 06:17:00    2016-10-28 06:17:00
40267    20574    941    2016-10-28 22:29:00    2016-10-28 22:29:00
40268    20575    602    2016-10-28 17:13:00    2016-10-28 17:13:00
40269    20575    699    2016-10-28 23:15:00    2016-10-28 23:15:00
40270    20575    825    2016-10-28 01:39:00    2016-10-28 01:39:00
40271    20575    926    2016-10-28 13:27:00    2016-10-28 13:27:00
40272    20575    720    2016-10-28 09:51:00    2016-10-28 09:51:00
40273    20576    463    2016-10-28 06:08:00    2016-10-28 06:08:00
40274    20576    927    2016-10-28 15:29:00    2016-10-28 15:29:00
40275    20576    507    2016-10-28 08:57:00    2016-10-28 08:57:00
40276    20576    672    2016-10-28 02:57:00    2016-10-28 02:57:00
40277    20576    511    2016-10-28 15:34:00    2016-10-28 15:34:00
40278    20577    819    2016-10-28 20:24:00    2016-10-28 20:24:00
40279    20577    950    2016-10-28 19:54:00    2016-10-28 19:54:00
40280    20577    934    2016-10-28 19:48:00    2016-10-28 19:48:00
40281    20577    697    2016-10-28 13:44:00    2016-10-28 13:44:00
40282    20577    826    2016-10-28 15:10:00    2016-10-28 15:10:00
40283    20578    632    2016-10-28 04:56:00    2016-10-28 04:56:00
40284    20578    515    2016-10-28 23:28:00    2016-10-28 23:28:00
40285    20578    921    2016-10-28 05:00:00    2016-10-28 05:00:00
40286    20578    950    2016-10-28 10:53:00    2016-10-28 10:53:00
40287    20578    674    2016-10-28 15:18:00    2016-10-28 15:18:00
40288    20579    675    2016-10-28 23:27:00    2016-10-28 23:27:00
40289    20579    862    2016-10-28 06:58:00    2016-10-28 06:58:00
40290    20579    737    2016-10-28 02:59:00    2016-10-28 02:59:00
40291    20579    574    2016-10-28 19:50:00    2016-10-28 19:50:00
40292    20579    805    2016-10-28 14:17:00    2016-10-28 14:17:00
40293    20580    812    2016-10-28 08:16:00    2016-10-28 08:16:00
40294    20580    890    2016-10-28 15:42:00    2016-10-28 15:42:00
40295    20580    476    2016-10-28 07:15:00    2016-10-28 07:15:00
40296    20580    565    2016-10-28 03:54:00    2016-10-28 03:54:00
40297    20580    816    2016-10-28 19:23:00    2016-10-28 19:23:00
40298    20581    853    2016-10-28 12:26:00    2016-10-28 12:26:00
40299    20581    664    2016-10-28 18:18:00    2016-10-28 18:18:00
40300    20581    920    2016-10-28 18:09:00    2016-10-28 18:09:00
40301    20581    828    2016-10-28 23:18:00    2016-10-28 23:18:00
40302    20581    503    2016-10-28 16:23:00    2016-10-28 16:23:00
40303    20582    684    2016-10-28 04:34:00    2016-10-28 04:34:00
40304    20582    540    2016-10-28 07:02:00    2016-10-28 07:02:00
40305    20582    959    2016-10-28 02:33:00    2016-10-28 02:33:00
40306    20582    631    2016-10-28 09:17:00    2016-10-28 09:17:00
40307    20582    911    2016-10-28 07:50:00    2016-10-28 07:50:00
40308    20583    488    2016-10-28 13:11:00    2016-10-28 13:11:00
40309    20583    573    2016-10-28 08:40:00    2016-10-28 08:40:00
40310    20583    694    2016-10-28 18:19:00    2016-10-28 18:19:00
40311    20583    492    2016-10-28 03:59:00    2016-10-28 03:59:00
40312    20583    765    2016-10-28 23:00:00    2016-10-28 23:00:00
40313    20584    759    2016-10-28 17:50:00    2016-10-28 17:50:00
40314    20584    470    2016-10-28 09:08:00    2016-10-28 09:08:00
40315    20584    936    2016-10-28 15:34:00    2016-10-28 15:34:00
40316    20584    658    2016-10-28 14:00:00    2016-10-28 14:00:00
40317    20584    791    2016-10-28 06:17:00    2016-10-28 06:17:00
40318    20585    468    2016-10-28 02:04:00    2016-10-28 02:04:00
40319    20585    713    2016-10-28 01:18:00    2016-10-28 01:18:00
40320    20585    838    2016-10-28 02:43:00    2016-10-28 02:43:00
40321    20585    848    2016-10-28 14:13:00    2016-10-28 14:13:00
40322    20585    510    2016-10-28 06:34:00    2016-10-28 06:34:00
40323    20586    489    2016-10-28 04:58:00    2016-10-28 04:58:00
40324    20586    622    2016-10-28 07:49:00    2016-10-28 07:49:00
40325    20586    579    2016-10-28 11:24:00    2016-10-28 11:24:00
40326    20586    811    2016-10-28 06:48:00    2016-10-28 06:48:00
40327    20586    799    2016-10-28 02:04:00    2016-10-28 02:04:00
40328    20587    603    2016-10-28 14:59:00    2016-10-28 14:59:00
40329    20587    795    2016-10-28 16:02:00    2016-10-28 16:02:00
40330    20587    900    2016-10-28 23:54:00    2016-10-28 23:54:00
40331    20587    922    2016-10-28 05:59:00    2016-10-28 05:59:00
40332    20587    748    2016-10-28 08:30:00    2016-10-28 08:30:00
40333    20588    823    2016-10-28 09:23:00    2016-10-28 09:23:00
40334    20588    792    2016-10-28 03:09:00    2016-10-28 03:09:00
40335    20588    691    2016-10-28 05:13:00    2016-10-28 05:13:00
40336    20588    535    2016-10-28 04:57:00    2016-10-28 04:57:00
40337    20588    542    2016-10-28 03:46:00    2016-10-28 03:46:00
40338    20589    831    2016-10-28 06:18:00    2016-10-28 06:18:00
40339    20589    950    2016-10-28 04:22:00    2016-10-28 04:22:00
40340    20589    472    2016-10-28 21:49:00    2016-10-28 21:49:00
40341    20589    861    2016-10-28 18:46:00    2016-10-28 18:46:00
40342    20589    756    2016-10-28 08:43:00    2016-10-28 08:43:00
40343    20590    573    2016-10-28 13:52:00    2016-10-28 13:52:00
40344    20590    812    2016-10-28 21:56:00    2016-10-28 21:56:00
40345    20590    784    2016-10-28 18:00:00    2016-10-28 18:00:00
40346    20590    815    2016-10-28 13:54:00    2016-10-28 13:54:00
40347    20590    890    2016-10-28 05:24:00    2016-10-28 05:24:00
40348    20591    640    2016-10-28 18:27:00    2016-10-28 18:27:00
40349    20591    667    2016-10-28 19:46:00    2016-10-28 19:46:00
40350    20591    930    2016-10-28 09:00:00    2016-10-28 09:00:00
40351    20591    627    2016-10-28 03:47:00    2016-10-28 03:47:00
40352    20591    621    2016-10-28 15:37:00    2016-10-28 15:37:00
40353    20592    513    2016-10-28 14:07:00    2016-10-28 14:07:00
40354    20592    835    2016-10-28 06:16:00    2016-10-28 06:16:00
40355    20592    586    2016-10-28 17:49:00    2016-10-28 17:49:00
40356    20592    676    2016-10-28 03:33:00    2016-10-28 03:33:00
40357    20592    580    2016-10-28 06:39:00    2016-10-28 06:39:00
40358    20593    651    2016-10-28 20:16:00    2016-10-28 20:16:00
40359    20593    623    2016-10-28 16:35:00    2016-10-28 16:35:00
40360    20593    509    2016-10-28 08:38:00    2016-10-28 08:38:00
40361    20593    684    2016-10-28 09:39:00    2016-10-28 09:39:00
40362    20593    858    2016-10-28 19:19:00    2016-10-28 19:19:00
40363    20594    652    2016-10-28 07:43:00    2016-10-28 07:43:00
40364    20594    531    2016-10-28 02:12:00    2016-10-28 02:12:00
40365    20594    685    2016-10-28 08:44:00    2016-10-28 08:44:00
40366    20594    487    2016-10-28 15:36:00    2016-10-28 15:36:00
40367    20594    902    2016-10-28 05:14:00    2016-10-28 05:14:00
40368    20595    920    2016-10-28 20:22:00    2016-10-28 20:22:00
40369    20595    849    2016-10-28 05:02:00    2016-10-28 05:02:00
40370    20595    807    2016-10-28 19:18:00    2016-10-28 19:18:00
40371    20595    507    2016-10-28 07:36:00    2016-10-28 07:36:00
40372    20595    747    2016-10-28 09:32:00    2016-10-28 09:32:00
40373    20596    724    2016-10-28 05:05:00    2016-10-28 05:05:00
40374    20596    870    2016-10-28 14:10:00    2016-10-28 14:10:00
40375    20596    522    2016-10-28 05:39:00    2016-10-28 05:39:00
40376    20596    541    2016-10-28 05:04:00    2016-10-28 05:04:00
40377    20596    700    2016-10-28 17:33:00    2016-10-28 17:33:00
40378    20597    847    2016-10-28 04:24:00    2016-10-28 04:24:00
40379    20597    652    2016-10-28 06:09:00    2016-10-28 06:09:00
40380    20597    548    2016-10-28 17:43:00    2016-10-28 17:43:00
40381    20597    473    2016-10-28 22:01:00    2016-10-28 22:01:00
40382    20597    644    2016-10-28 01:08:00    2016-10-28 01:08:00
40383    20598    632    2016-10-28 16:15:00    2016-10-28 16:15:00
40384    20598    897    2016-10-28 04:21:00    2016-10-28 04:21:00
40385    20598    852    2016-10-28 14:02:00    2016-10-28 14:02:00
40386    20598    878    2016-10-28 20:02:00    2016-10-28 20:02:00
40387    20598    605    2016-10-28 01:07:00    2016-10-28 01:07:00
40388    20599    666    2016-10-28 12:53:00    2016-10-28 12:53:00
40389    20599    504    2016-10-28 15:35:00    2016-10-28 15:35:00
40390    20599    924    2016-10-28 09:42:00    2016-10-28 09:42:00
40391    20599    717    2016-10-28 14:10:00    2016-10-28 14:10:00
40392    20599    737    2016-10-28 03:29:00    2016-10-28 03:29:00
40393    20600    471    2016-10-28 12:40:00    2016-10-28 12:40:00
40394    20600    669    2016-10-28 20:21:00    2016-10-28 20:21:00
40395    20600    585    2016-10-28 06:14:00    2016-10-28 06:14:00
40396    20600    465    2016-10-28 18:43:00    2016-10-28 18:43:00
40397    20600    853    2016-10-28 18:41:00    2016-10-28 18:41:00
40398    20601    665    2016-10-28 14:55:00    2016-10-28 14:55:00
40399    20601    520    2016-10-28 04:00:00    2016-10-28 04:00:00
40400    20601    940    2016-10-28 08:51:00    2016-10-28 08:51:00
40401    20601    550    2016-10-28 11:39:00    2016-10-28 11:39:00
40402    20601    693    2016-10-28 09:46:00    2016-10-28 09:46:00
40403    20602    842    2016-10-29 20:28:00    2016-10-29 20:28:00
40404    20602    776    2016-10-29 13:35:00    2016-10-29 13:35:00
40405    20602    513    2016-10-29 11:52:00    2016-10-29 11:52:00
40406    20602    542    2016-10-29 19:14:00    2016-10-29 19:14:00
40407    20602    542    2016-10-29 20:18:00    2016-10-29 20:18:00
40408    20603    506    2016-10-29 15:27:00    2016-10-29 15:27:00
40409    20603    851    2016-10-29 20:18:00    2016-10-29 20:18:00
40410    20603    687    2016-10-29 01:50:00    2016-10-29 01:50:00
40411    20603    587    2016-10-29 20:28:00    2016-10-29 20:28:00
40412    20603    671    2016-10-29 04:29:00    2016-10-29 04:29:00
40413    20604    710    2016-10-29 11:30:00    2016-10-29 11:30:00
40414    20604    557    2016-10-29 17:25:00    2016-10-29 17:25:00
40415    20604    704    2016-10-29 01:03:00    2016-10-29 01:03:00
40416    20604    757    2016-10-29 13:58:00    2016-10-29 13:58:00
40417    20604    650    2016-10-29 01:27:00    2016-10-29 01:27:00
40418    20605    707    2016-10-29 02:16:00    2016-10-29 02:16:00
40419    20605    805    2016-10-29 05:35:00    2016-10-29 05:35:00
40420    20605    840    2016-10-29 20:42:00    2016-10-29 20:42:00
40421    20605    654    2016-10-29 10:30:00    2016-10-29 10:30:00
40422    20605    945    2016-10-29 17:36:00    2016-10-29 17:36:00
40423    20606    919    2016-10-29 21:59:00    2016-10-29 21:59:00
40424    20606    526    2016-10-29 14:54:00    2016-10-29 14:54:00
40425    20606    571    2016-10-29 13:32:00    2016-10-29 13:32:00
40426    20606    706    2016-10-29 20:22:00    2016-10-29 20:22:00
40427    20606    481    2016-10-29 16:08:00    2016-10-29 16:08:00
40428    20607    800    2016-10-29 08:15:00    2016-10-29 08:15:00
40429    20607    931    2016-10-29 14:45:00    2016-10-29 14:45:00
40430    20607    673    2016-10-29 20:27:00    2016-10-29 20:27:00
40431    20607    957    2016-10-29 02:39:00    2016-10-29 02:39:00
40432    20607    583    2016-10-29 01:06:00    2016-10-29 01:06:00
40433    20608    491    2016-10-29 05:45:00    2016-10-29 05:45:00
40434    20608    889    2016-10-29 08:42:00    2016-10-29 08:42:00
40435    20608    648    2016-10-29 06:24:00    2016-10-29 06:24:00
40436    20608    821    2016-10-29 03:50:00    2016-10-29 03:50:00
40437    20608    731    2016-10-29 04:31:00    2016-10-29 04:31:00
40438    20609    921    2016-10-30 19:57:00    2016-10-30 19:57:00
40439    20609    826    2016-10-30 10:49:00    2016-10-30 10:49:00
40440    20609    581    2016-10-30 15:02:00    2016-10-30 15:02:00
40441    20609    766    2016-10-30 17:46:00    2016-10-30 17:46:00
40442    20609    947    2016-10-30 09:14:00    2016-10-30 09:14:00
40443    20610    561    2016-10-30 10:25:00    2016-10-30 10:25:00
40444    20610    825    2016-10-30 19:05:00    2016-10-30 19:05:00
40445    20610    676    2016-10-30 08:54:00    2016-10-30 08:54:00
40446    20610    492    2016-10-30 02:02:00    2016-10-30 02:02:00
40447    20610    875    2016-10-30 23:10:00    2016-10-30 23:10:00
40448    20611    688    2016-10-30 08:26:00    2016-10-30 08:26:00
40449    20611    614    2016-10-30 22:20:00    2016-10-30 22:20:00
40450    20611    850    2016-10-30 03:33:00    2016-10-30 03:33:00
40451    20611    605    2016-10-30 05:08:00    2016-10-30 05:08:00
40452    20611    583    2016-10-30 21:27:00    2016-10-30 21:27:00
40453    20612    867    2016-10-30 06:17:00    2016-10-30 06:17:00
40454    20612    920    2016-10-30 20:29:00    2016-10-30 20:29:00
40455    20612    727    2016-10-30 15:28:00    2016-10-30 15:28:00
40456    20612    572    2016-10-30 01:49:00    2016-10-30 01:49:00
40457    20612    508    2016-10-30 05:46:00    2016-10-30 05:46:00
40458    20613    802    2016-10-30 20:58:00    2016-10-30 20:58:00
40459    20613    609    2016-10-30 12:54:00    2016-10-30 12:54:00
40460    20613    616    2016-10-30 17:52:00    2016-10-30 17:52:00
40461    20613    852    2016-10-30 23:12:00    2016-10-30 23:12:00
40462    20613    886    2016-10-30 04:19:00    2016-10-30 04:19:00
40463    20614    891    2016-10-30 12:52:00    2016-10-30 12:52:00
40464    20614    808    2016-10-30 01:36:00    2016-10-30 01:36:00
40465    20614    700    2016-10-30 08:04:00    2016-10-30 08:04:00
40466    20614    933    2016-10-30 07:13:00    2016-10-30 07:13:00
40467    20614    772    2016-10-30 15:31:00    2016-10-30 15:31:00
40468    20615    545    2016-10-30 23:21:00    2016-10-30 23:21:00
40469    20615    480    2016-10-30 22:16:00    2016-10-30 22:16:00
40470    20615    777    2016-10-30 06:18:00    2016-10-30 06:18:00
40471    20615    669    2016-10-30 13:36:00    2016-10-30 13:36:00
40472    20615    877    2016-10-30 21:22:00    2016-10-30 21:22:00
40473    20616    783    2016-10-30 13:39:00    2016-10-30 13:39:00
40474    20616    884    2016-10-30 07:47:00    2016-10-30 07:47:00
40475    20616    515    2016-10-30 06:47:00    2016-10-30 06:47:00
40476    20616    899    2016-10-30 16:42:00    2016-10-30 16:42:00
40477    20616    734    2016-10-30 21:57:00    2016-10-30 21:57:00
40478    20617    698    2016-10-30 20:50:00    2016-10-30 20:50:00
40479    20617    544    2016-10-30 19:04:00    2016-10-30 19:04:00
40480    20617    861    2016-10-30 22:22:00    2016-10-30 22:22:00
40481    20617    471    2016-10-30 06:01:00    2016-10-30 06:01:00
40482    20617    559    2016-10-30 12:56:00    2016-10-30 12:56:00
40483    20618    736    2016-10-30 10:53:00    2016-10-30 10:53:00
40484    20618    893    2016-10-30 16:38:00    2016-10-30 16:38:00
40485    20618    548    2016-10-30 15:38:00    2016-10-30 15:38:00
40486    20618    642    2016-10-30 07:45:00    2016-10-30 07:45:00
40487    20618    923    2016-10-30 19:16:00    2016-10-30 19:16:00
40488    20619    750    2016-10-30 13:59:00    2016-10-30 13:59:00
40489    20619    772    2016-10-30 14:29:00    2016-10-30 14:29:00
40490    20619    552    2016-10-30 17:41:00    2016-10-30 17:41:00
40491    20619    919    2016-10-30 16:34:00    2016-10-30 16:34:00
40492    20619    546    2016-10-30 04:34:00    2016-10-30 04:34:00
40493    20620    498    2016-10-30 11:51:00    2016-10-30 11:51:00
40494    20620    958    2016-10-30 23:32:00    2016-10-30 23:32:00
40495    20620    891    2016-10-30 18:04:00    2016-10-30 18:04:00
40496    20620    677    2016-10-30 08:26:00    2016-10-30 08:26:00
40497    20620    508    2016-10-30 01:20:00    2016-10-30 01:20:00
40498    20621    510    2016-10-30 20:44:00    2016-10-30 20:44:00
40499    20621    532    2016-10-30 03:12:00    2016-10-30 03:12:00
40500    20621    897    2016-10-30 16:54:00    2016-10-30 16:54:00
40501    20621    736    2016-10-30 08:08:00    2016-10-30 08:08:00
40502    20621    668    2016-10-30 22:42:00    2016-10-30 22:42:00
40503    20622    824    2016-10-30 07:53:00    2016-10-30 07:53:00
40504    20622    563    2016-10-30 23:09:00    2016-10-30 23:09:00
40505    20622    631    2016-10-30 07:00:00    2016-10-30 07:00:00
40506    20622    846    2016-10-30 03:03:00    2016-10-30 03:03:00
40507    20622    686    2016-10-30 03:07:00    2016-10-30 03:07:00
40508    20623    889    2016-10-30 15:14:00    2016-10-30 15:14:00
40509    20623    509    2016-10-30 17:34:00    2016-10-30 17:34:00
40510    20623    590    2016-10-30 13:23:00    2016-10-30 13:23:00
40511    20623    510    2016-10-30 01:55:00    2016-10-30 01:55:00
40512    20623    516    2016-10-30 10:46:00    2016-10-30 10:46:00
40513    20624    620    2016-10-30 06:15:00    2016-10-30 06:15:00
40514    20624    785    2016-10-30 11:11:00    2016-10-30 11:11:00
40515    20624    705    2016-10-30 07:55:00    2016-10-30 07:55:00
40516    20624    623    2016-10-30 13:51:00    2016-10-30 13:51:00
40517    20624    659    2016-10-30 12:53:00    2016-10-30 12:53:00
40518    20625    916    2016-10-30 01:50:00    2016-10-30 01:50:00
40519    20625    750    2016-10-30 14:12:00    2016-10-30 14:12:00
40520    20625    850    2016-10-30 20:34:00    2016-10-30 20:34:00
40521    20625    753    2016-10-30 10:45:00    2016-10-30 10:45:00
40522    20625    732    2016-10-30 19:03:00    2016-10-30 19:03:00
40523    20626    537    2016-10-30 08:54:00    2016-10-30 08:54:00
40524    20626    591    2016-10-30 15:30:00    2016-10-30 15:30:00
40525    20626    573    2016-10-30 23:00:00    2016-10-30 23:00:00
40526    20626    895    2016-10-30 18:57:00    2016-10-30 18:57:00
40527    20626    847    2016-10-30 15:10:00    2016-10-30 15:10:00
40528    20627    531    2016-10-30 04:26:00    2016-10-30 04:26:00
40529    20627    573    2016-10-30 10:35:00    2016-10-30 10:35:00
40530    20627    892    2016-10-30 19:09:00    2016-10-30 19:09:00
40531    20627    584    2016-10-30 21:44:00    2016-10-30 21:44:00
40532    20627    622    2016-10-30 07:19:00    2016-10-30 07:19:00
40533    20628    929    2016-10-30 10:45:00    2016-10-30 10:45:00
40534    20628    674    2016-10-30 01:39:00    2016-10-30 01:39:00
40535    20628    575    2016-10-30 14:46:00    2016-10-30 14:46:00
40536    20628    714    2016-10-30 17:05:00    2016-10-30 17:05:00
40537    20628    828    2016-10-30 23:42:00    2016-10-30 23:42:00
40538    20629    863    2016-10-30 06:28:00    2016-10-30 06:28:00
40539    20629    764    2016-10-30 14:37:00    2016-10-30 14:37:00
40540    20629    512    2016-10-30 15:49:00    2016-10-30 15:49:00
40541    20629    825    2016-10-30 18:24:00    2016-10-30 18:24:00
40542    20629    609    2016-10-30 16:42:00    2016-10-30 16:42:00
40543    20630    481    2016-10-30 08:20:00    2016-10-30 08:20:00
40544    20630    790    2016-10-30 10:10:00    2016-10-30 10:10:00
40545    20630    608    2016-10-30 11:59:00    2016-10-30 11:59:00
40546    20630    540    2016-10-30 03:36:00    2016-10-30 03:36:00
40547    20630    908    2016-10-30 13:33:00    2016-10-30 13:33:00
40548    20631    636    2016-10-30 14:55:00    2016-10-30 14:55:00
40549    20631    703    2016-10-30 13:30:00    2016-10-30 13:30:00
40550    20631    919    2016-10-30 17:26:00    2016-10-30 17:26:00
40551    20631    526    2016-10-30 13:39:00    2016-10-30 13:39:00
40552    20631    521    2016-10-30 06:21:00    2016-10-30 06:21:00
40553    20632    944    2016-10-30 08:24:00    2016-10-30 08:24:00
40554    20632    937    2016-10-30 05:35:00    2016-10-30 05:35:00
40555    20632    670    2016-10-30 06:56:00    2016-10-30 06:56:00
40556    20632    717    2016-10-30 05:18:00    2016-10-30 05:18:00
40557    20632    760    2016-10-30 04:03:00    2016-10-30 04:03:00
40558    20633    940    2016-10-30 14:04:00    2016-10-30 14:04:00
40559    20633    691    2016-10-30 06:05:00    2016-10-30 06:05:00
40560    20633    544    2016-10-30 19:22:00    2016-10-30 19:22:00
40561    20633    511    2016-10-30 20:39:00    2016-10-30 20:39:00
40562    20633    732    2016-10-30 05:21:00    2016-10-30 05:21:00
40563    20634    654    2016-10-30 07:05:00    2016-10-30 07:05:00
40564    20634    581    2016-10-30 15:06:00    2016-10-30 15:06:00
40565    20634    603    2016-10-30 06:59:00    2016-10-30 06:59:00
40566    20634    896    2016-10-30 20:32:00    2016-10-30 20:32:00
40567    20634    611    2016-10-30 04:39:00    2016-10-30 04:39:00
40568    20635    692    2016-10-30 09:38:00    2016-10-30 09:38:00
40569    20635    677    2016-10-30 01:52:00    2016-10-30 01:52:00
40570    20635    738    2016-10-30 06:57:00    2016-10-30 06:57:00
40571    20635    881    2016-10-30 16:05:00    2016-10-30 16:05:00
40572    20635    959    2016-10-30 14:00:00    2016-10-30 14:00:00
40573    20636    560    2016-10-30 09:46:00    2016-10-30 09:46:00
40574    20636    580    2016-10-30 18:08:00    2016-10-30 18:08:00
40575    20636    937    2016-10-30 17:05:00    2016-10-30 17:05:00
40576    20636    639    2016-10-30 21:53:00    2016-10-30 21:53:00
40577    20636    779    2016-10-30 14:53:00    2016-10-30 14:53:00
40578    20637    510    2016-10-30 01:08:00    2016-10-30 01:08:00
40579    20637    523    2016-10-30 23:18:00    2016-10-30 23:18:00
40580    20637    704    2016-10-30 04:21:00    2016-10-30 04:21:00
40581    20637    542    2016-10-30 21:39:00    2016-10-30 21:39:00
40582    20637    706    2016-10-30 09:13:00    2016-10-30 09:13:00
40583    20638    554    2016-10-30 17:30:00    2016-10-30 17:30:00
40584    20638    817    2016-10-30 17:56:00    2016-10-30 17:56:00
40585    20638    492    2016-10-30 21:32:00    2016-10-30 21:32:00
40586    20638    875    2016-10-30 01:08:00    2016-10-30 01:08:00
40587    20638    809    2016-10-30 04:39:00    2016-10-30 04:39:00
40588    20639    503    2016-10-30 16:57:00    2016-10-30 16:57:00
40589    20639    808    2016-10-30 14:27:00    2016-10-30 14:27:00
40590    20639    479    2016-10-30 01:40:00    2016-10-30 01:40:00
40591    20639    797    2016-10-30 12:47:00    2016-10-30 12:47:00
40592    20639    717    2016-10-30 13:53:00    2016-10-30 13:53:00
40593    20640    869    2016-10-30 05:31:00    2016-10-30 05:31:00
40594    20640    807    2016-10-30 03:53:00    2016-10-30 03:53:00
40595    20640    737    2016-10-30 08:14:00    2016-10-30 08:14:00
40596    20640    518    2016-10-30 23:04:00    2016-10-30 23:04:00
40597    20640    841    2016-10-30 21:04:00    2016-10-30 21:04:00
40598    20641    961    2016-10-30 02:46:00    2016-10-30 02:46:00
40599    20641    902    2016-10-30 17:00:00    2016-10-30 17:00:00
40600    20641    797    2016-10-30 13:40:00    2016-10-30 13:40:00
40601    20641    513    2016-10-30 23:14:00    2016-10-30 23:14:00
40602    20641    605    2016-10-30 18:34:00    2016-10-30 18:34:00
40603    20642    763    2016-10-30 16:25:00    2016-10-30 16:25:00
40604    20642    638    2016-10-30 02:04:00    2016-10-30 02:04:00
40605    20642    824    2016-10-30 18:43:00    2016-10-30 18:43:00
40606    20642    839    2016-10-30 01:04:00    2016-10-30 01:04:00
40607    20642    668    2016-10-30 07:04:00    2016-10-30 07:04:00
40608    20643    719    2016-10-30 15:57:00    2016-10-30 15:57:00
40609    20643    655    2016-10-30 22:00:00    2016-10-30 22:00:00
40610    20643    825    2016-10-30 11:22:00    2016-10-30 11:22:00
40611    20643    671    2016-10-30 22:38:00    2016-10-30 22:38:00
40612    20643    480    2016-10-30 05:27:00    2016-10-30 05:27:00
40613    20644    736    2016-10-30 16:25:00    2016-10-30 16:25:00
40614    20644    755    2016-10-30 01:18:00    2016-10-30 01:18:00
40615    20644    686    2016-10-30 12:50:00    2016-10-30 12:50:00
40616    20644    788    2016-10-30 03:25:00    2016-10-30 03:25:00
40617    20644    482    2016-10-30 02:00:00    2016-10-30 02:00:00
40618    20645    854    2016-10-30 05:15:00    2016-10-30 05:15:00
40619    20645    922    2016-10-30 20:25:00    2016-10-30 20:25:00
40620    20645    946    2016-10-30 21:00:00    2016-10-30 21:00:00
40621    20645    709    2016-10-30 07:10:00    2016-10-30 07:10:00
40622    20645    807    2016-10-30 23:16:00    2016-10-30 23:16:00
40623    20646    725    2016-10-30 19:38:00    2016-10-30 19:38:00
40624    20646    758    2016-10-30 21:20:00    2016-10-30 21:20:00
40625    20646    614    2016-10-30 22:39:00    2016-10-30 22:39:00
40626    20646    639    2016-10-30 19:11:00    2016-10-30 19:11:00
40627    20646    594    2016-10-30 10:41:00    2016-10-30 10:41:00
40628    20647    473    2016-10-30 20:08:00    2016-10-30 20:08:00
40629    20647    817    2016-10-30 08:10:00    2016-10-30 08:10:00
40630    20647    827    2016-10-30 01:07:00    2016-10-30 01:07:00
40631    20647    732    2016-10-30 22:29:00    2016-10-30 22:29:00
40632    20647    466    2016-10-30 22:57:00    2016-10-30 22:57:00
40633    20648    954    2016-10-30 20:55:00    2016-10-30 20:55:00
40634    20648    828    2016-10-30 08:18:00    2016-10-30 08:18:00
40635    20648    468    2016-10-30 07:38:00    2016-10-30 07:38:00
40636    20648    894    2016-10-30 11:10:00    2016-10-30 11:10:00
40637    20648    474    2016-10-30 15:06:00    2016-10-30 15:06:00
40638    20649    813    2016-10-30 06:20:00    2016-10-30 06:20:00
40639    20649    647    2016-10-30 03:29:00    2016-10-30 03:29:00
40640    20649    840    2016-10-30 15:51:00    2016-10-30 15:51:00
40641    20649    931    2016-10-30 14:40:00    2016-10-30 14:40:00
40642    20649    678    2016-10-30 11:17:00    2016-10-30 11:17:00
40643    20650    925    2016-10-30 10:49:00    2016-10-30 10:49:00
40644    20650    582    2016-10-30 11:29:00    2016-10-30 11:29:00
40645    20650    686    2016-10-30 15:36:00    2016-10-30 15:36:00
40646    20650    581    2016-10-30 07:13:00    2016-10-30 07:13:00
40647    20650    635    2016-10-30 19:47:00    2016-10-30 19:47:00
40648    20651    739    2016-10-30 17:15:00    2016-10-30 17:15:00
40649    20651    607    2016-10-30 19:21:00    2016-10-30 19:21:00
40650    20651    793    2016-10-30 16:22:00    2016-10-30 16:22:00
40651    20651    487    2016-10-30 17:32:00    2016-10-30 17:32:00
40652    20651    579    2016-10-30 12:00:00    2016-10-30 12:00:00
40653    20652    622    2016-10-30 13:02:00    2016-10-30 13:02:00
40654    20652    696    2016-10-30 05:18:00    2016-10-30 05:18:00
40655    20652    601    2016-10-30 19:52:00    2016-10-30 19:52:00
40656    20652    781    2016-10-30 07:24:00    2016-10-30 07:24:00
40657    20652    583    2016-10-30 19:24:00    2016-10-30 19:24:00
40658    20653    710    2016-10-30 18:47:00    2016-10-30 18:47:00
40659    20653    821    2016-10-30 03:49:00    2016-10-30 03:49:00
40660    20653    864    2016-10-30 08:32:00    2016-10-30 08:32:00
40661    20653    500    2016-10-30 13:29:00    2016-10-30 13:29:00
40662    20653    752    2016-10-30 10:16:00    2016-10-30 10:16:00
40663    20654    581    2016-10-30 12:31:00    2016-10-30 12:31:00
40664    20654    949    2016-10-30 03:08:00    2016-10-30 03:08:00
40665    20654    544    2016-10-30 10:11:00    2016-10-30 10:11:00
40666    20654    961    2016-10-30 23:46:00    2016-10-30 23:46:00
40667    20654    755    2016-10-30 04:30:00    2016-10-30 04:30:00
40668    20655    812    2016-10-30 21:26:00    2016-10-30 21:26:00
40669    20655    501    2016-10-30 11:00:00    2016-10-30 11:00:00
40670    20655    479    2016-10-30 07:42:00    2016-10-30 07:42:00
40671    20655    516    2016-10-30 07:43:00    2016-10-30 07:43:00
40672    20655    843    2016-10-30 21:05:00    2016-10-30 21:05:00
40673    20656    617    2016-10-30 05:05:00    2016-10-30 05:05:00
40674    20656    518    2016-10-30 01:01:00    2016-10-30 01:01:00
40675    20656    518    2016-10-30 13:54:00    2016-10-30 13:54:00
40676    20656    804    2016-10-30 20:00:00    2016-10-30 20:00:00
40677    20656    841    2016-10-30 17:24:00    2016-10-30 17:24:00
40678    20657    554    2016-10-30 12:00:00    2016-10-30 12:00:00
40679    20657    762    2016-10-30 22:34:00    2016-10-30 22:34:00
40680    20657    641    2016-10-30 03:30:00    2016-10-30 03:30:00
40681    20657    644    2016-10-30 02:28:00    2016-10-30 02:28:00
40682    20657    513    2016-10-30 16:10:00    2016-10-30 16:10:00
40683    20658    599    2016-10-30 02:05:00    2016-10-30 02:05:00
40684    20658    643    2016-10-30 06:25:00    2016-10-30 06:25:00
40685    20658    917    2016-10-30 12:13:00    2016-10-30 12:13:00
40686    20658    650    2016-10-30 14:17:00    2016-10-30 14:17:00
40687    20658    726    2016-10-30 09:24:00    2016-10-30 09:24:00
40688    20659    778    2016-10-30 15:24:00    2016-10-30 15:24:00
40689    20659    680    2016-10-30 14:32:00    2016-10-30 14:32:00
40690    20659    743    2016-10-30 02:05:00    2016-10-30 02:05:00
40691    20659    566    2016-10-30 18:44:00    2016-10-30 18:44:00
40692    20659    932    2016-10-30 16:14:00    2016-10-30 16:14:00
40693    20660    828    2016-10-30 04:35:00    2016-10-30 04:35:00
40694    20660    549    2016-10-30 13:20:00    2016-10-30 13:20:00
40695    20660    949    2016-10-30 18:19:00    2016-10-30 18:19:00
40696    20660    575    2016-10-30 09:59:00    2016-10-30 09:59:00
40697    20660    825    2016-10-30 08:00:00    2016-10-30 08:00:00
40698    20661    908    2016-10-30 18:45:00    2016-10-30 18:45:00
40699    20661    621    2016-10-30 21:02:00    2016-10-30 21:02:00
40700    20661    794    2016-10-30 18:09:00    2016-10-30 18:09:00
40701    20661    766    2016-10-30 17:17:00    2016-10-30 17:17:00
40702    20661    491    2016-10-30 19:11:00    2016-10-30 19:11:00
40703    20662    719    2016-10-30 20:23:00    2016-10-30 20:23:00
40704    20662    840    2016-10-30 18:52:00    2016-10-30 18:52:00
40705    20662    672    2016-10-30 20:23:00    2016-10-30 20:23:00
40706    20662    489    2016-10-30 10:24:00    2016-10-30 10:24:00
40707    20662    890    2016-10-30 17:57:00    2016-10-30 17:57:00
40708    20663    534    2016-10-30 13:43:00    2016-10-30 13:43:00
40709    20663    819    2016-10-30 17:05:00    2016-10-30 17:05:00
40710    20663    625    2016-10-30 01:03:00    2016-10-30 01:03:00
40711    20663    739    2016-10-30 04:07:00    2016-10-30 04:07:00
40712    20663    950    2016-10-30 05:32:00    2016-10-30 05:32:00
40713    20664    871    2016-10-30 14:17:00    2016-10-30 14:17:00
40714    20664    729    2016-10-30 05:12:00    2016-10-30 05:12:00
40715    20664    773    2016-10-30 10:35:00    2016-10-30 10:35:00
40716    20664    788    2016-10-30 17:22:00    2016-10-30 17:22:00
40717    20664    799    2016-10-30 12:01:00    2016-10-30 12:01:00
40718    20665    556    2016-10-30 08:04:00    2016-10-30 08:04:00
40719    20665    958    2016-10-30 10:59:00    2016-10-30 10:59:00
40720    20665    593    2016-10-30 06:09:00    2016-10-30 06:09:00
40721    20665    720    2016-10-30 13:02:00    2016-10-30 13:02:00
40722    20665    927    2016-10-30 01:53:00    2016-10-30 01:53:00
40723    20666    898    2016-10-30 07:29:00    2016-10-30 07:29:00
40724    20666    697    2016-10-30 14:18:00    2016-10-30 14:18:00
40725    20666    483    2016-10-30 15:59:00    2016-10-30 15:59:00
40726    20666    737    2016-10-30 06:41:00    2016-10-30 06:41:00
40727    20666    660    2016-10-30 23:28:00    2016-10-30 23:28:00
40728    20667    796    2016-10-30 01:53:00    2016-10-30 01:53:00
40729    20667    567    2016-10-30 08:51:00    2016-10-30 08:51:00
40730    20667    671    2016-10-30 22:46:00    2016-10-30 22:46:00
40731    20667    730    2016-10-30 14:29:00    2016-10-30 14:29:00
40732    20667    697    2016-10-30 07:42:00    2016-10-30 07:42:00
40733    20668    675    2016-10-30 07:35:00    2016-10-30 07:35:00
40734    20668    892    2016-10-30 22:30:00    2016-10-30 22:30:00
40735    20668    895    2016-10-30 20:27:00    2016-10-30 20:27:00
40736    20668    938    2016-10-30 16:02:00    2016-10-30 16:02:00
40737    20668    787    2016-10-30 18:19:00    2016-10-30 18:19:00
40738    20669    833    2016-10-30 06:10:00    2016-10-30 06:10:00
40739    20669    599    2016-10-30 14:03:00    2016-10-30 14:03:00
40740    20669    802    2016-10-30 18:35:00    2016-10-30 18:35:00
40741    20669    613    2016-10-30 11:20:00    2016-10-30 11:20:00
40742    20669    869    2016-10-30 17:59:00    2016-10-30 17:59:00
40743    20670    560    2016-10-30 22:15:00    2016-10-30 22:15:00
40744    20670    800    2016-10-30 10:40:00    2016-10-30 10:40:00
40745    20670    819    2016-10-30 14:02:00    2016-10-30 14:02:00
40746    20670    723    2016-10-30 18:47:00    2016-10-30 18:47:00
40747    20670    749    2016-10-30 05:25:00    2016-10-30 05:25:00
40748    20671    796    2016-10-30 23:45:00    2016-10-30 23:45:00
40749    20671    668    2016-10-30 08:35:00    2016-10-30 08:35:00
40750    20671    821    2016-10-30 17:35:00    2016-10-30 17:35:00
40751    20671    523    2016-10-30 20:42:00    2016-10-30 20:42:00
40752    20671    470    2016-10-30 21:17:00    2016-10-30 21:17:00
40753    20672    720    2016-10-30 15:37:00    2016-10-30 15:37:00
40754    20672    755    2016-10-30 23:00:00    2016-10-30 23:00:00
40755    20672    738    2016-10-30 23:46:00    2016-10-30 23:46:00
40756    20672    474    2016-10-30 03:11:00    2016-10-30 03:11:00
40757    20672    518    2016-10-30 12:52:00    2016-10-30 12:52:00
40758    20673    669    2016-10-30 22:49:00    2016-10-30 22:49:00
40759    20673    822    2016-10-30 06:59:00    2016-10-30 06:59:00
40760    20673    490    2016-10-30 16:49:00    2016-10-30 16:49:00
40761    20673    819    2016-10-30 04:38:00    2016-10-30 04:38:00
40762    20673    949    2016-10-30 09:44:00    2016-10-30 09:44:00
40763    20674    535    2016-10-30 05:56:00    2016-10-30 05:56:00
40764    20674    539    2016-10-30 21:26:00    2016-10-30 21:26:00
40765    20674    678    2016-10-30 19:58:00    2016-10-30 19:58:00
40766    20674    957    2016-10-30 01:12:00    2016-10-30 01:12:00
40767    20674    506    2016-10-30 02:46:00    2016-10-30 02:46:00
40768    20675    484    2016-10-30 14:07:00    2016-10-30 14:07:00
40769    20675    568    2016-10-30 17:06:00    2016-10-30 17:06:00
40770    20675    619    2016-10-30 04:14:00    2016-10-30 04:14:00
40771    20675    931    2016-10-30 01:35:00    2016-10-30 01:35:00
40772    20675    505    2016-10-30 09:49:00    2016-10-30 09:49:00
40773    20676    564    2016-10-30 06:45:00    2016-10-30 06:45:00
40774    20676    859    2016-10-30 18:10:00    2016-10-30 18:10:00
40775    20676    836    2016-10-30 11:02:00    2016-10-30 11:02:00
40776    20676    885    2016-10-30 17:20:00    2016-10-30 17:20:00
40777    20676    463    2016-10-30 01:21:00    2016-10-30 01:21:00
40778    20677    832    2016-10-30 23:11:00    2016-10-30 23:11:00
40779    20677    947    2016-10-30 03:36:00    2016-10-30 03:36:00
40780    20677    640    2016-10-30 21:05:00    2016-10-30 21:05:00
40781    20677    748    2016-10-30 13:54:00    2016-10-30 13:54:00
40782    20677    627    2016-10-30 14:53:00    2016-10-30 14:53:00
40783    20678    960    2016-10-30 05:58:00    2016-10-30 05:58:00
40784    20678    797    2016-10-30 21:11:00    2016-10-30 21:11:00
40785    20678    648    2016-10-30 21:19:00    2016-10-30 21:19:00
40786    20678    566    2016-10-30 15:05:00    2016-10-30 15:05:00
40787    20678    637    2016-10-30 01:10:00    2016-10-30 01:10:00
40788    20679    954    2016-10-30 03:58:00    2016-10-30 03:58:00
40789    20679    890    2016-10-30 14:30:00    2016-10-30 14:30:00
40790    20679    777    2016-10-30 08:50:00    2016-10-30 08:50:00
40791    20679    482    2016-10-30 23:52:00    2016-10-30 23:52:00
40792    20679    949    2016-10-30 01:12:00    2016-10-30 01:12:00
40793    20680    918    2016-10-30 03:38:00    2016-10-30 03:38:00
40794    20680    855    2016-10-30 04:40:00    2016-10-30 04:40:00
40795    20680    633    2016-10-30 09:05:00    2016-10-30 09:05:00
40796    20680    566    2016-10-30 15:16:00    2016-10-30 15:16:00
40797    20680    538    2016-10-30 12:59:00    2016-10-30 12:59:00
40798    20681    757    2016-10-30 17:55:00    2016-10-30 17:55:00
40799    20681    784    2016-10-30 10:07:00    2016-10-30 10:07:00
40800    20681    468    2016-10-30 08:26:00    2016-10-30 08:26:00
40801    20681    832    2016-10-30 22:30:00    2016-10-30 22:30:00
40802    20681    708    2016-10-30 16:37:00    2016-10-30 16:37:00
40803    20682    756    2016-10-30 13:13:00    2016-10-30 13:13:00
40804    20682    852    2016-10-30 10:55:00    2016-10-30 10:55:00
40805    20682    549    2016-10-30 18:25:00    2016-10-30 18:25:00
40806    20682    822    2016-10-30 08:43:00    2016-10-30 08:43:00
40807    20682    835    2016-10-30 14:10:00    2016-10-30 14:10:00
40808    20683    503    2016-10-30 12:18:00    2016-10-30 12:18:00
40809    20683    515    2016-10-30 11:49:00    2016-10-30 11:49:00
40810    20683    820    2016-10-30 03:13:00    2016-10-30 03:13:00
40811    20683    570    2016-10-30 16:57:00    2016-10-30 16:57:00
40812    20683    957    2016-10-30 11:19:00    2016-10-30 11:19:00
40813    20684    535    2016-10-30 19:00:00    2016-10-30 19:00:00
40814    20684    745    2016-10-30 21:28:00    2016-10-30 21:28:00
40815    20684    902    2016-10-30 15:36:00    2016-10-30 15:36:00
40816    20684    906    2016-10-30 21:15:00    2016-10-30 21:15:00
40817    20684    942    2016-10-30 15:49:00    2016-10-30 15:49:00
40818    20685    789    2016-10-30 22:40:00    2016-10-30 22:40:00
40819    20685    474    2016-10-30 13:49:00    2016-10-30 13:49:00
40820    20685    683    2016-10-30 22:51:00    2016-10-30 22:51:00
40821    20685    922    2016-10-30 09:42:00    2016-10-30 09:42:00
40822    20685    868    2016-10-30 15:59:00    2016-10-30 15:59:00
40823    20686    754    2016-10-30 16:49:00    2016-10-30 16:49:00
40824    20686    561    2016-10-30 03:47:00    2016-10-30 03:47:00
40825    20686    705    2016-10-30 01:41:00    2016-10-30 01:41:00
40826    20686    572    2016-10-30 22:41:00    2016-10-30 22:41:00
40827    20686    694    2016-10-30 20:48:00    2016-10-30 20:48:00
40828    20687    948    2016-10-30 22:41:00    2016-10-30 22:41:00
40829    20687    515    2016-10-30 02:59:00    2016-10-30 02:59:00
40830    20687    661    2016-10-30 05:56:00    2016-10-30 05:56:00
40831    20687    836    2016-10-30 19:36:00    2016-10-30 19:36:00
40832    20687    642    2016-10-30 22:39:00    2016-10-30 22:39:00
40833    20688    731    2016-10-30 12:49:00    2016-10-30 12:49:00
40834    20688    515    2016-10-30 11:27:00    2016-10-30 11:27:00
40835    20688    536    2016-10-30 13:39:00    2016-10-30 13:39:00
40836    20688    808    2016-10-30 18:52:00    2016-10-30 18:52:00
40837    20688    927    2016-10-30 06:59:00    2016-10-30 06:59:00
40838    20689    574    2016-10-30 17:26:00    2016-10-30 17:26:00
40839    20689    944    2016-10-30 05:48:00    2016-10-30 05:48:00
40840    20689    710    2016-10-30 20:40:00    2016-10-30 20:40:00
40841    20689    715    2016-10-30 04:56:00    2016-10-30 04:56:00
40842    20689    663    2016-10-30 17:53:00    2016-10-30 17:53:00
40843    20690    875    2016-10-31 01:57:00    2016-10-31 01:57:00
40844    20690    509    2016-10-31 21:37:00    2016-10-31 21:37:00
40845    20690    570    2016-10-31 10:48:00    2016-10-31 10:48:00
40846    20690    468    2016-10-31 04:36:00    2016-10-31 04:36:00
40847    20690    593    2016-10-31 11:04:00    2016-10-31 11:04:00
40848    20691    488    2016-10-31 01:07:00    2016-10-31 01:07:00
40849    20691    551    2016-10-31 05:51:00    2016-10-31 05:51:00
40850    20691    957    2016-10-31 12:12:00    2016-10-31 12:12:00
40851    20691    670    2016-10-31 11:58:00    2016-10-31 11:58:00
40852    20691    609    2016-10-31 23:53:00    2016-10-31 23:53:00
40853    20692    726    2016-10-31 11:00:00    2016-10-31 11:00:00
40854    20692    783    2016-10-31 16:30:00    2016-10-31 16:30:00
40855    20692    642    2016-10-31 11:23:00    2016-10-31 11:23:00
40856    20692    526    2016-10-31 22:33:00    2016-10-31 22:33:00
40857    20692    878    2016-10-31 14:18:00    2016-10-31 14:18:00
40858    20693    643    2016-10-31 14:01:00    2016-10-31 14:01:00
40859    20693    627    2016-10-31 17:20:00    2016-10-31 17:20:00
40860    20693    645    2016-10-31 18:10:00    2016-10-31 18:10:00
40861    20693    752    2016-10-31 13:35:00    2016-10-31 13:35:00
40862    20693    728    2016-10-31 11:29:00    2016-10-31 11:29:00
40863    20694    751    2016-10-31 11:03:00    2016-10-31 11:03:00
40864    20694    689    2016-10-31 09:39:00    2016-10-31 09:39:00
40865    20694    949    2016-10-31 20:47:00    2016-10-31 20:47:00
40866    20694    710    2016-10-31 07:40:00    2016-10-31 07:40:00
40867    20694    562    2016-10-31 23:03:00    2016-10-31 23:03:00
40868    20695    547    2016-10-31 15:38:00    2016-10-31 15:38:00
40869    20695    946    2016-10-31 05:25:00    2016-10-31 05:25:00
40870    20695    710    2016-10-31 04:10:00    2016-10-31 04:10:00
40871    20695    788    2016-10-31 21:01:00    2016-10-31 21:01:00
40872    20695    940    2016-10-31 03:05:00    2016-10-31 03:05:00
40873    20696    519    2016-10-31 07:28:00    2016-10-31 07:28:00
40874    20696    580    2016-10-31 06:03:00    2016-10-31 06:03:00
40875    20696    729    2016-10-31 16:41:00    2016-10-31 16:41:00
40876    20696    787    2016-10-31 14:02:00    2016-10-31 14:02:00
40877    20696    801    2016-10-31 09:53:00    2016-10-31 09:53:00
40878    20697    646    2016-10-31 04:47:00    2016-10-31 04:47:00
40879    20697    760    2016-10-31 12:21:00    2016-10-31 12:21:00
40880    20697    693    2016-10-31 06:47:00    2016-10-31 06:47:00
40881    20697    595    2016-10-31 12:55:00    2016-10-31 12:55:00
40882    20697    854    2016-10-31 05:00:00    2016-10-31 05:00:00
40883    20698    834    2016-10-31 16:24:00    2016-10-31 16:24:00
40884    20698    639    2016-10-31 17:43:00    2016-10-31 17:43:00
40885    20698    650    2016-10-31 08:09:00    2016-10-31 08:09:00
40886    20698    504    2016-10-31 13:23:00    2016-10-31 13:23:00
40887    20698    895    2016-10-31 17:52:00    2016-10-31 17:52:00
40888    20699    833    2016-10-31 23:46:00    2016-10-31 23:46:00
40889    20699    691    2016-10-31 01:35:00    2016-10-31 01:35:00
40890    20699    735    2016-10-31 21:33:00    2016-10-31 21:33:00
40891    20699    766    2016-10-31 06:25:00    2016-10-31 06:25:00
40892    20699    489    2016-10-31 16:42:00    2016-10-31 16:42:00
40893    20700    836    2016-10-31 10:50:00    2016-10-31 10:50:00
40894    20700    480    2016-10-31 02:20:00    2016-10-31 02:20:00
40895    20700    893    2016-10-31 08:46:00    2016-10-31 08:46:00
40896    20700    811    2016-10-31 11:03:00    2016-10-31 11:03:00
40897    20700    873    2016-10-31 15:23:00    2016-10-31 15:23:00
40898    20701    907    2016-10-31 10:23:00    2016-10-31 10:23:00
40899    20701    760    2016-10-31 23:47:00    2016-10-31 23:47:00
40900    20701    890    2016-10-31 01:58:00    2016-10-31 01:58:00
40901    20701    693    2016-10-31 11:44:00    2016-10-31 11:44:00
40902    20701    663    2016-10-31 06:42:00    2016-10-31 06:42:00
40903    20702    905    2016-10-31 19:18:00    2016-10-31 19:18:00
40904    20702    469    2016-10-31 22:14:00    2016-10-31 22:14:00
40905    20702    769    2016-10-31 23:11:00    2016-10-31 23:11:00
40906    20702    591    2016-10-31 06:30:00    2016-10-31 06:30:00
40907    20702    466    2016-10-31 12:36:00    2016-10-31 12:36:00
40908    20703    824    2016-10-31 06:06:00    2016-10-31 06:06:00
40909    20703    892    2016-10-31 09:11:00    2016-10-31 09:11:00
40910    20703    854    2016-10-31 18:58:00    2016-10-31 18:58:00
40911    20703    609    2016-10-31 02:38:00    2016-10-31 02:38:00
40912    20703    551    2016-10-31 07:26:00    2016-10-31 07:26:00
40913    20704    680    2016-10-31 18:04:00    2016-10-31 18:04:00
40914    20704    698    2016-10-31 09:14:00    2016-10-31 09:14:00
40915    20704    916    2016-10-31 20:14:00    2016-10-31 20:14:00
40916    20704    515    2016-10-31 13:03:00    2016-10-31 13:03:00
40917    20704    666    2016-10-31 04:24:00    2016-10-31 04:24:00
40918    20705    808    2016-10-31 15:55:00    2016-10-31 15:55:00
40919    20705    903    2016-10-31 21:48:00    2016-10-31 21:48:00
40920    20705    799    2016-10-31 13:58:00    2016-10-31 13:58:00
40921    20705    727    2016-10-31 20:03:00    2016-10-31 20:03:00
40922    20705    529    2016-10-31 15:07:00    2016-10-31 15:07:00
40923    20706    506    2016-10-31 04:20:00    2016-10-31 04:20:00
40924    20706    556    2016-10-31 20:09:00    2016-10-31 20:09:00
40925    20706    736    2016-10-31 15:22:00    2016-10-31 15:22:00
40926    20706    825    2016-10-31 08:15:00    2016-10-31 08:15:00
40927    20706    518    2016-10-31 01:18:00    2016-10-31 01:18:00
40928    20707    548    2016-10-31 14:16:00    2016-10-31 14:16:00
40929    20707    594    2016-10-31 06:14:00    2016-10-31 06:14:00
40930    20707    631    2016-10-31 11:59:00    2016-10-31 11:59:00
40931    20707    598    2016-10-31 15:14:00    2016-10-31 15:14:00
40932    20707    521    2016-10-31 08:52:00    2016-10-31 08:52:00
40933    20708    662    2016-10-31 22:47:00    2016-10-31 22:47:00
40934    20708    590    2016-10-31 02:11:00    2016-10-31 02:11:00
40935    20708    953    2016-10-31 05:18:00    2016-10-31 05:18:00
40936    20708    569    2016-10-31 17:50:00    2016-10-31 17:50:00
40937    20708    679    2016-10-31 22:35:00    2016-10-31 22:35:00
40938    20709    580    2016-10-31 12:42:00    2016-10-31 12:42:00
40939    20709    839    2016-10-31 23:57:00    2016-10-31 23:57:00
40940    20709    859    2016-10-31 08:25:00    2016-10-31 08:25:00
40941    20709    844    2016-10-31 10:35:00    2016-10-31 10:35:00
40942    20709    932    2016-10-31 16:32:00    2016-10-31 16:32:00
40943    20710    832    2016-10-31 18:03:00    2016-10-31 18:03:00
40944    20710    741    2016-10-31 01:17:00    2016-10-31 01:17:00
40945    20710    689    2016-10-31 16:16:00    2016-10-31 16:16:00
40946    20710    706    2016-10-31 09:58:00    2016-10-31 09:58:00
40947    20710    640    2016-10-31 21:56:00    2016-10-31 21:56:00
40948    20711    507    2016-10-31 03:57:00    2016-10-31 03:57:00
40949    20711    827    2016-10-31 22:30:00    2016-10-31 22:30:00
40950    20711    909    2016-10-31 20:58:00    2016-10-31 20:58:00
40951    20711    826    2016-10-31 22:56:00    2016-10-31 22:56:00
40952    20711    711    2016-10-31 07:03:00    2016-10-31 07:03:00
40953    20712    507    2016-10-31 16:37:00    2016-10-31 16:37:00
40954    20712    509    2016-10-31 23:55:00    2016-10-31 23:55:00
40955    20712    533    2016-10-31 14:45:00    2016-10-31 14:45:00
40956    20712    740    2016-10-31 21:21:00    2016-10-31 21:21:00
40957    20712    485    2016-10-31 21:05:00    2016-10-31 21:05:00
40958    20713    572    2016-10-31 21:46:00    2016-10-31 21:46:00
40959    20713    536    2016-10-31 15:02:00    2016-10-31 15:02:00
40960    20713    944    2016-10-31 04:12:00    2016-10-31 04:12:00
40961    20713    938    2016-10-31 20:42:00    2016-10-31 20:42:00
40962    20713    870    2016-10-31 09:26:00    2016-10-31 09:26:00
40963    20714    775    2016-10-31 19:47:00    2016-10-31 19:47:00
40964    20714    911    2016-10-31 13:38:00    2016-10-31 13:38:00
40965    20714    785    2016-10-31 19:22:00    2016-10-31 19:22:00
40966    20714    709    2016-10-31 08:39:00    2016-10-31 08:39:00
40967    20714    948    2016-10-31 03:41:00    2016-10-31 03:41:00
40968    20715    731    2016-10-31 13:36:00    2016-10-31 13:36:00
40969    20715    700    2016-10-31 18:12:00    2016-10-31 18:12:00
40970    20715    535    2016-10-31 11:07:00    2016-10-31 11:07:00
40971    20715    804    2016-10-31 10:13:00    2016-10-31 10:13:00
40972    20715    560    2016-10-31 22:53:00    2016-10-31 22:53:00
40973    20716    636    2016-10-31 04:06:00    2016-10-31 04:06:00
40974    20716    626    2016-10-31 11:30:00    2016-10-31 11:30:00
40975    20716    688    2016-10-31 18:47:00    2016-10-31 18:47:00
40976    20716    848    2016-10-31 14:34:00    2016-10-31 14:34:00
40977    20716    861    2016-10-31 05:31:00    2016-10-31 05:31:00
40978    20717    600    2016-10-31 10:23:00    2016-10-31 10:23:00
40979    20717    627    2016-10-31 06:19:00    2016-10-31 06:19:00
40980    20717    773    2016-10-31 13:45:00    2016-10-31 13:45:00
40981    20717    547    2016-10-31 05:10:00    2016-10-31 05:10:00
40982    20717    844    2016-10-31 21:33:00    2016-10-31 21:33:00
40983    20718    588    2016-10-31 15:27:00    2016-10-31 15:27:00
40984    20718    772    2016-10-31 18:35:00    2016-10-31 18:35:00
40985    20718    581    2016-10-31 23:34:00    2016-10-31 23:34:00
40986    20718    648    2016-10-31 21:19:00    2016-10-31 21:19:00
40987    20718    634    2016-10-31 18:35:00    2016-10-31 18:35:00
40988    20719    748    2016-10-31 09:26:00    2016-10-31 09:26:00
40989    20719    769    2016-10-31 13:45:00    2016-10-31 13:45:00
40990    20719    556    2016-10-31 19:23:00    2016-10-31 19:23:00
40991    20719    892    2016-10-31 20:30:00    2016-10-31 20:30:00
40992    20719    918    2016-10-31 04:33:00    2016-10-31 04:33:00
40993    20720    531    2016-10-31 15:50:00    2016-10-31 15:50:00
40994    20720    502    2016-10-31 06:21:00    2016-10-31 06:21:00
40995    20720    911    2016-10-31 12:03:00    2016-10-31 12:03:00
40996    20720    700    2016-10-31 17:03:00    2016-10-31 17:03:00
40997    20720    721    2016-10-31 01:20:00    2016-10-31 01:20:00
40998    20721    680    2016-10-31 04:24:00    2016-10-31 04:24:00
40999    20721    610    2016-10-31 20:27:00    2016-10-31 20:27:00
41000    20721    715    2016-10-31 22:13:00    2016-10-31 22:13:00
41001    20721    660    2016-10-31 06:26:00    2016-10-31 06:26:00
41002    20721    822    2016-10-31 13:02:00    2016-10-31 13:02:00
41003    20722    787    2016-10-31 05:43:00    2016-10-31 05:43:00
41004    20722    685    2016-10-31 09:34:00    2016-10-31 09:34:00
41005    20722    839    2016-10-31 10:30:00    2016-10-31 10:30:00
41006    20722    614    2016-10-31 06:44:00    2016-10-31 06:44:00
41007    20722    665    2016-10-31 17:48:00    2016-10-31 17:48:00
41008    20723    640    2016-11-01 15:47:00    2016-11-01 15:47:00
41009    20723    779    2016-11-01 18:46:00    2016-11-01 18:46:00
41010    20723    828    2016-11-01 14:13:00    2016-11-01 14:13:00
41011    20723    609    2016-11-01 05:23:00    2016-11-01 05:23:00
41012    20723    535    2016-11-01 06:54:00    2016-11-01 06:54:00
41013    20724    897    2016-11-01 16:51:00    2016-11-01 16:51:00
41014    20724    690    2016-11-01 17:24:00    2016-11-01 17:24:00
41015    20724    704    2016-11-01 14:52:00    2016-11-01 14:52:00
41016    20724    671    2016-11-01 18:24:00    2016-11-01 18:24:00
41017    20724    710    2016-11-01 06:25:00    2016-11-01 06:25:00
41018    20725    867    2016-11-01 10:29:00    2016-11-01 10:29:00
41019    20725    552    2016-11-01 08:43:00    2016-11-01 08:43:00
41020    20725    951    2016-11-01 07:24:00    2016-11-01 07:24:00
41021    20725    612    2016-11-01 11:02:00    2016-11-01 11:02:00
41022    20725    841    2016-11-01 15:54:00    2016-11-01 15:54:00
41023    20726    697    2016-11-01 19:40:00    2016-11-01 19:40:00
41024    20726    499    2016-11-01 07:23:00    2016-11-01 07:23:00
41025    20726    952    2016-11-01 08:46:00    2016-11-01 08:46:00
41026    20726    522    2016-11-01 18:54:00    2016-11-01 18:54:00
41027    20726    595    2016-11-01 09:48:00    2016-11-01 09:48:00
41028    20727    509    2016-11-01 23:28:00    2016-11-01 23:28:00
41029    20727    905    2016-11-01 12:18:00    2016-11-01 12:18:00
41030    20727    728    2016-11-01 20:45:00    2016-11-01 20:45:00
41031    20727    745    2016-11-01 17:33:00    2016-11-01 17:33:00
41032    20727    568    2016-11-01 05:47:00    2016-11-01 05:47:00
41033    20728    625    2016-11-01 05:33:00    2016-11-01 05:33:00
41034    20728    877    2016-11-01 22:05:00    2016-11-01 22:05:00
41035    20728    472    2016-11-01 04:49:00    2016-11-01 04:49:00
41036    20728    701    2016-11-01 21:42:00    2016-11-01 21:42:00
41037    20728    547    2016-11-01 08:38:00    2016-11-01 08:38:00
41038    20729    782    2016-11-01 14:44:00    2016-11-01 14:44:00
41039    20729    890    2016-11-01 15:24:00    2016-11-01 15:24:00
41040    20729    783    2016-11-01 05:24:00    2016-11-01 05:24:00
41041    20729    497    2016-11-01 23:01:00    2016-11-01 23:01:00
41042    20729    918    2016-11-01 20:34:00    2016-11-01 20:34:00
41043    20730    669    2016-11-01 10:05:00    2016-11-01 10:05:00
41044    20730    577    2016-11-01 07:02:00    2016-11-01 07:02:00
41045    20730    905    2016-11-01 20:30:00    2016-11-01 20:30:00
41046    20730    647    2016-11-01 02:50:00    2016-11-01 02:50:00
41047    20730    537    2016-11-01 18:49:00    2016-11-01 18:49:00
41048    20731    891    2016-11-01 06:20:00    2016-11-01 06:20:00
41049    20731    937    2016-11-01 22:48:00    2016-11-01 22:48:00
41050    20731    803    2016-11-01 11:25:00    2016-11-01 11:25:00
41051    20731    588    2016-11-01 04:44:00    2016-11-01 04:44:00
41052    20731    844    2016-11-01 07:26:00    2016-11-01 07:26:00
41053    20732    549    2016-11-01 09:39:00    2016-11-01 09:39:00
41054    20732    638    2016-11-01 14:42:00    2016-11-01 14:42:00
41055    20732    578    2016-11-01 06:46:00    2016-11-01 06:46:00
41056    20732    903    2016-11-01 23:52:00    2016-11-01 23:52:00
41057    20732    906    2016-11-01 14:03:00    2016-11-01 14:03:00
41058    20733    698    2016-11-01 15:03:00    2016-11-01 15:03:00
41059    20733    913    2016-11-01 10:40:00    2016-11-01 10:40:00
41060    20733    861    2016-11-01 20:52:00    2016-11-01 20:52:00
41061    20733    931    2016-11-01 23:25:00    2016-11-01 23:25:00
41062    20733    891    2016-11-01 13:39:00    2016-11-01 13:39:00
41063    20734    892    2016-11-01 10:41:00    2016-11-01 10:41:00
41064    20734    927    2016-11-01 15:25:00    2016-11-01 15:25:00
41065    20734    515    2016-11-01 18:05:00    2016-11-01 18:05:00
41066    20734    478    2016-11-01 09:00:00    2016-11-01 09:00:00
41067    20734    886    2016-11-01 23:15:00    2016-11-01 23:15:00
41068    20735    629    2016-11-01 04:55:00    2016-11-01 04:55:00
41069    20735    679    2016-11-01 15:10:00    2016-11-01 15:10:00
41070    20735    528    2016-11-01 16:55:00    2016-11-01 16:55:00
41071    20735    471    2016-11-01 19:22:00    2016-11-01 19:22:00
41072    20735    889    2016-11-01 03:46:00    2016-11-01 03:46:00
41073    20736    939    2016-11-01 19:49:00    2016-11-01 19:49:00
41074    20736    565    2016-11-01 11:22:00    2016-11-01 11:22:00
41075    20736    513    2016-11-01 22:02:00    2016-11-01 22:02:00
41076    20736    492    2016-11-01 18:38:00    2016-11-01 18:38:00
41077    20736    701    2016-11-01 03:09:00    2016-11-01 03:09:00
41078    20737    488    2016-11-01 03:26:00    2016-11-01 03:26:00
41079    20737    728    2016-11-01 12:10:00    2016-11-01 12:10:00
41080    20737    781    2016-11-01 21:47:00    2016-11-01 21:47:00
41081    20737    843    2016-11-01 15:54:00    2016-11-01 15:54:00
41082    20737    843    2016-11-01 17:40:00    2016-11-01 17:40:00
41083    20738    826    2016-11-01 10:11:00    2016-11-01 10:11:00
41084    20738    926    2016-11-01 01:59:00    2016-11-01 01:59:00
41085    20738    651    2016-11-01 04:56:00    2016-11-01 04:56:00
41086    20738    597    2016-11-01 17:43:00    2016-11-01 17:43:00
41087    20738    654    2016-11-01 17:05:00    2016-11-01 17:05:00
41088    20739    516    2016-11-01 01:08:00    2016-11-01 01:08:00
41089    20739    885    2016-11-01 10:07:00    2016-11-01 10:07:00
41090    20739    476    2016-11-01 09:58:00    2016-11-01 09:58:00
41091    20739    905    2016-11-01 16:34:00    2016-11-01 16:34:00
41092    20739    650    2016-11-01 03:24:00    2016-11-01 03:24:00
41093    20740    468    2016-11-01 18:18:00    2016-11-01 18:18:00
41094    20740    815    2016-11-01 05:36:00    2016-11-01 05:36:00
41095    20740    910    2016-11-01 17:22:00    2016-11-01 17:22:00
41096    20740    482    2016-11-01 08:11:00    2016-11-01 08:11:00
41097    20740    693    2016-11-01 06:57:00    2016-11-01 06:57:00
41098    20741    783    2016-11-01 14:10:00    2016-11-01 14:10:00
41099    20741    701    2016-11-01 06:51:00    2016-11-01 06:51:00
41100    20741    508    2016-11-01 20:25:00    2016-11-01 20:25:00
41101    20741    757    2016-11-01 18:43:00    2016-11-01 18:43:00
41102    20741    855    2016-11-01 16:53:00    2016-11-01 16:53:00
41103    20742    615    2016-11-01 08:40:00    2016-11-01 08:40:00
41104    20742    568    2016-11-01 20:08:00    2016-11-01 20:08:00
41105    20742    758    2016-11-01 02:04:00    2016-11-01 02:04:00
41106    20742    755    2016-11-01 10:47:00    2016-11-01 10:47:00
41107    20742    762    2016-11-01 19:55:00    2016-11-01 19:55:00
41108    20743    500    2016-11-01 19:09:00    2016-11-01 19:09:00
41109    20743    838    2016-11-01 19:38:00    2016-11-01 19:38:00
41110    20743    876    2016-11-01 15:09:00    2016-11-01 15:09:00
41111    20743    801    2016-11-01 15:53:00    2016-11-01 15:53:00
41112    20743    854    2016-11-01 21:07:00    2016-11-01 21:07:00
41113    20744    472    2016-11-01 17:01:00    2016-11-01 17:01:00
41114    20744    580    2016-11-01 13:55:00    2016-11-01 13:55:00
41115    20744    485    2016-11-01 11:56:00    2016-11-01 11:56:00
41116    20744    736    2016-11-01 22:31:00    2016-11-01 22:31:00
41117    20744    792    2016-11-01 20:46:00    2016-11-01 20:46:00
41118    20745    709    2016-11-01 15:46:00    2016-11-01 15:46:00
41119    20745    623    2016-11-01 15:19:00    2016-11-01 15:19:00
41120    20745    715    2016-11-01 20:04:00    2016-11-01 20:04:00
41121    20745    728    2016-11-01 03:06:00    2016-11-01 03:06:00
41122    20745    497    2016-11-01 23:10:00    2016-11-01 23:10:00
41123    20746    792    2016-11-01 22:10:00    2016-11-01 22:10:00
41124    20746    778    2016-11-01 16:54:00    2016-11-01 16:54:00
41125    20746    930    2016-11-01 02:29:00    2016-11-01 02:29:00
41126    20746    770    2016-11-01 19:18:00    2016-11-01 19:18:00
41127    20746    752    2016-11-01 14:51:00    2016-11-01 14:51:00
41128    20747    762    2016-11-01 06:14:00    2016-11-01 06:14:00
41129    20747    918    2016-11-01 18:05:00    2016-11-01 18:05:00
41130    20747    701    2016-11-01 14:23:00    2016-11-01 14:23:00
41131    20747    613    2016-11-01 17:20:00    2016-11-01 17:20:00
41132    20747    640    2016-11-01 03:12:00    2016-11-01 03:12:00
41133    20748    883    2016-11-01 12:01:00    2016-11-01 12:01:00
41134    20748    937    2016-11-01 08:28:00    2016-11-01 08:28:00
41135    20748    545    2016-11-01 05:18:00    2016-11-01 05:18:00
41136    20748    806    2016-11-01 01:32:00    2016-11-01 01:32:00
41137    20748    935    2016-11-01 05:06:00    2016-11-01 05:06:00
41138    20749    543    2016-11-01 17:37:00    2016-11-01 17:37:00
41139    20749    735    2016-11-01 09:35:00    2016-11-01 09:35:00
41140    20749    638    2016-11-01 08:15:00    2016-11-01 08:15:00
41141    20749    514    2016-11-01 11:58:00    2016-11-01 11:58:00
41142    20749    848    2016-11-01 19:27:00    2016-11-01 19:27:00
41143    20750    754    2016-11-01 12:51:00    2016-11-01 12:51:00
41144    20750    910    2016-11-01 22:23:00    2016-11-01 22:23:00
41145    20750    806    2016-11-01 22:34:00    2016-11-01 22:34:00
41146    20750    788    2016-11-01 07:05:00    2016-11-01 07:05:00
41147    20750    952    2016-11-01 23:22:00    2016-11-01 23:22:00
41148    20751    893    2016-11-01 04:43:00    2016-11-01 04:43:00
41149    20751    568    2016-11-01 15:55:00    2016-11-01 15:55:00
41150    20751    519    2016-11-01 15:31:00    2016-11-01 15:31:00
41151    20751    909    2016-11-01 15:00:00    2016-11-01 15:00:00
41152    20751    685    2016-11-01 14:53:00    2016-11-01 14:53:00
41153    20752    559    2016-11-01 16:09:00    2016-11-01 16:09:00
41154    20752    782    2016-11-01 22:01:00    2016-11-01 22:01:00
41155    20752    753    2016-11-01 16:19:00    2016-11-01 16:19:00
41156    20752    752    2016-11-01 21:18:00    2016-11-01 21:18:00
41157    20752    483    2016-11-01 12:38:00    2016-11-01 12:38:00
41158    20753    878    2016-11-01 18:59:00    2016-11-01 18:59:00
41159    20753    715    2016-11-01 15:34:00    2016-11-01 15:34:00
41160    20753    567    2016-11-01 03:54:00    2016-11-01 03:54:00
41161    20753    907    2016-11-01 06:07:00    2016-11-01 06:07:00
41162    20753    609    2016-11-01 21:18:00    2016-11-01 21:18:00
41163    20754    624    2016-11-01 12:25:00    2016-11-01 12:25:00
41164    20754    893    2016-11-01 20:25:00    2016-11-01 20:25:00
41165    20754    956    2016-11-01 06:27:00    2016-11-01 06:27:00
41166    20754    949    2016-11-01 20:38:00    2016-11-01 20:38:00
41167    20754    744    2016-11-01 18:27:00    2016-11-01 18:27:00
41168    20755    532    2016-11-01 11:21:00    2016-11-01 11:21:00
41169    20755    548    2016-11-01 10:30:00    2016-11-01 10:30:00
41170    20755    735    2016-11-01 09:21:00    2016-11-01 09:21:00
41171    20755    689    2016-11-01 06:31:00    2016-11-01 06:31:00
41172    20755    568    2016-11-01 10:18:00    2016-11-01 10:18:00
41173    20756    612    2016-11-01 01:52:00    2016-11-01 01:52:00
41174    20756    707    2016-11-01 18:27:00    2016-11-01 18:27:00
41175    20756    901    2016-11-01 13:35:00    2016-11-01 13:35:00
41176    20756    864    2016-11-01 16:20:00    2016-11-01 16:20:00
41177    20756    693    2016-11-01 08:39:00    2016-11-01 08:39:00
41178    20757    547    2016-11-01 10:09:00    2016-11-01 10:09:00
41179    20757    868    2016-11-01 08:50:00    2016-11-01 08:50:00
41180    20757    789    2016-11-01 09:40:00    2016-11-01 09:40:00
41181    20757    568    2016-11-01 13:22:00    2016-11-01 13:22:00
41182    20757    826    2016-11-01 16:24:00    2016-11-01 16:24:00
41183    20758    935    2016-11-01 06:59:00    2016-11-01 06:59:00
41184    20758    649    2016-11-01 17:02:00    2016-11-01 17:02:00
41185    20758    915    2016-11-01 03:15:00    2016-11-01 03:15:00
41186    20758    786    2016-11-01 07:57:00    2016-11-01 07:57:00
41187    20758    768    2016-11-01 22:59:00    2016-11-01 22:59:00
41188    20759    626    2016-11-01 19:28:00    2016-11-01 19:28:00
41189    20759    867    2016-11-01 22:08:00    2016-11-01 22:08:00
41190    20759    828    2016-11-01 09:27:00    2016-11-01 09:27:00
41191    20759    470    2016-11-01 05:00:00    2016-11-01 05:00:00
41192    20759    667    2016-11-01 17:02:00    2016-11-01 17:02:00
41193    20760    914    2016-11-01 14:26:00    2016-11-01 14:26:00
41194    20760    908    2016-11-01 21:08:00    2016-11-01 21:08:00
41195    20760    590    2016-11-01 13:32:00    2016-11-01 13:32:00
41196    20760    865    2016-11-01 21:38:00    2016-11-01 21:38:00
41197    20760    686    2016-11-01 13:45:00    2016-11-01 13:45:00
41198    20761    498    2016-11-01 17:48:00    2016-11-01 17:48:00
41199    20761    572    2016-11-01 09:44:00    2016-11-01 09:44:00
41200    20761    678    2016-11-01 10:40:00    2016-11-01 10:40:00
41201    20761    961    2016-11-01 21:13:00    2016-11-01 21:13:00
41202    20761    650    2016-11-01 08:02:00    2016-11-01 08:02:00
41203    20762    486    2016-11-01 09:13:00    2016-11-01 09:13:00
41204    20762    852    2016-11-01 03:53:00    2016-11-01 03:53:00
41205    20762    587    2016-11-01 19:43:00    2016-11-01 19:43:00
41206    20762    937    2016-11-01 06:21:00    2016-11-01 06:21:00
41207    20762    813    2016-11-01 06:13:00    2016-11-01 06:13:00
41208    20763    812    2016-11-01 03:41:00    2016-11-01 03:41:00
41209    20763    632    2016-11-01 07:30:00    2016-11-01 07:30:00
41210    20763    956    2016-11-01 13:33:00    2016-11-01 13:33:00
41211    20763    953    2016-11-01 08:22:00    2016-11-01 08:22:00
41212    20763    690    2016-11-01 22:22:00    2016-11-01 22:22:00
41213    20764    755    2016-11-01 17:08:00    2016-11-01 17:08:00
41214    20764    523    2016-11-01 20:45:00    2016-11-01 20:45:00
41215    20764    819    2016-11-01 17:20:00    2016-11-01 17:20:00
41216    20764    538    2016-11-01 03:20:00    2016-11-01 03:20:00
41217    20764    812    2016-11-01 23:27:00    2016-11-01 23:27:00
41218    20765    697    2016-11-01 01:25:00    2016-11-01 01:25:00
41219    20765    587    2016-11-01 10:34:00    2016-11-01 10:34:00
41220    20765    885    2016-11-01 17:19:00    2016-11-01 17:19:00
41221    20765    762    2016-11-01 21:57:00    2016-11-01 21:57:00
41222    20765    954    2016-11-01 04:25:00    2016-11-01 04:25:00
41223    20766    943    2016-11-01 15:19:00    2016-11-01 15:19:00
41224    20766    929    2016-11-01 12:34:00    2016-11-01 12:34:00
41225    20766    877    2016-11-01 13:45:00    2016-11-01 13:45:00
41226    20766    903    2016-11-01 12:42:00    2016-11-01 12:42:00
41227    20766    536    2016-11-01 04:31:00    2016-11-01 04:31:00
41228    20767    673    2016-11-01 02:42:00    2016-11-01 02:42:00
41229    20767    916    2016-11-01 07:21:00    2016-11-01 07:21:00
41230    20767    681    2016-11-01 03:49:00    2016-11-01 03:49:00
41231    20767    710    2016-11-01 02:47:00    2016-11-01 02:47:00
41232    20767    777    2016-11-01 16:50:00    2016-11-01 16:50:00
41233    20768    864    2016-11-01 20:28:00    2016-11-01 20:28:00
41234    20768    935    2016-11-01 05:47:00    2016-11-01 05:47:00
41235    20768    929    2016-11-01 19:06:00    2016-11-01 19:06:00
41236    20768    771    2016-11-01 20:00:00    2016-11-01 20:00:00
41237    20768    636    2016-11-01 21:10:00    2016-11-01 21:10:00
41238    20769    564    2016-11-01 09:26:00    2016-11-01 09:26:00
41239    20769    710    2016-11-01 15:09:00    2016-11-01 15:09:00
41240    20769    929    2016-11-01 03:36:00    2016-11-01 03:36:00
41241    20769    763    2016-11-01 20:02:00    2016-11-01 20:02:00
41242    20769    836    2016-11-01 22:09:00    2016-11-01 22:09:00
41243    20770    761    2016-11-01 10:39:00    2016-11-01 10:39:00
41244    20770    720    2016-11-01 14:45:00    2016-11-01 14:45:00
41245    20770    815    2016-11-01 02:37:00    2016-11-01 02:37:00
41246    20770    565    2016-11-01 21:29:00    2016-11-01 21:29:00
41247    20770    615    2016-11-01 07:32:00    2016-11-01 07:32:00
41248    20771    484    2016-11-01 15:02:00    2016-11-01 15:02:00
41249    20771    575    2016-11-01 01:41:00    2016-11-01 01:41:00
41250    20771    875    2016-11-01 19:36:00    2016-11-01 19:36:00
41251    20771    560    2016-11-01 05:32:00    2016-11-01 05:32:00
41252    20771    611    2016-11-01 02:58:00    2016-11-01 02:58:00
41253    20772    686    2016-11-01 10:08:00    2016-11-01 10:08:00
41254    20772    658    2016-11-01 04:53:00    2016-11-01 04:53:00
41255    20772    802    2016-11-01 02:08:00    2016-11-01 02:08:00
41256    20772    857    2016-11-01 06:56:00    2016-11-01 06:56:00
41257    20772    538    2016-11-01 13:07:00    2016-11-01 13:07:00
41258    20773    617    2016-11-01 15:40:00    2016-11-01 15:40:00
41259    20773    906    2016-11-01 09:24:00    2016-11-01 09:24:00
41260    20773    502    2016-11-01 10:27:00    2016-11-01 10:27:00
41261    20773    466    2016-11-01 03:06:00    2016-11-01 03:06:00
41262    20773    580    2016-11-01 03:30:00    2016-11-01 03:30:00
41263    20774    604    2016-11-01 18:11:00    2016-11-01 18:11:00
41264    20774    467    2016-11-01 19:41:00    2016-11-01 19:41:00
41265    20774    541    2016-11-01 16:50:00    2016-11-01 16:50:00
41266    20774    946    2016-11-01 13:23:00    2016-11-01 13:23:00
41267    20774    727    2016-11-01 23:22:00    2016-11-01 23:22:00
41268    20775    559    2016-11-01 19:18:00    2016-11-01 19:18:00
41269    20775    525    2016-11-01 21:41:00    2016-11-01 21:41:00
41270    20775    923    2016-11-01 06:37:00    2016-11-01 06:37:00
41271    20775    472    2016-11-01 20:46:00    2016-11-01 20:46:00
41272    20775    870    2016-11-01 23:31:00    2016-11-01 23:31:00
41273    20776    742    2016-11-01 13:41:00    2016-11-01 13:41:00
41274    20776    948    2016-11-01 15:46:00    2016-11-01 15:46:00
41275    20776    747    2016-11-01 14:43:00    2016-11-01 14:43:00
41276    20776    709    2016-11-01 21:00:00    2016-11-01 21:00:00
41277    20776    616    2016-11-01 21:40:00    2016-11-01 21:40:00
41278    20777    576    2016-11-01 15:12:00    2016-11-01 15:12:00
41279    20777    631    2016-11-01 23:09:00    2016-11-01 23:09:00
41280    20777    801    2016-11-01 20:58:00    2016-11-01 20:58:00
41281    20777    680    2016-11-01 23:00:00    2016-11-01 23:00:00
41282    20777    640    2016-11-01 15:22:00    2016-11-01 15:22:00
41283    20778    729    2016-11-01 06:51:00    2016-11-01 06:51:00
41284    20778    587    2016-11-01 12:49:00    2016-11-01 12:49:00
41285    20778    522    2016-11-01 16:43:00    2016-11-01 16:43:00
41286    20778    957    2016-11-01 02:35:00    2016-11-01 02:35:00
41287    20778    944    2016-11-01 02:57:00    2016-11-01 02:57:00
41288    20779    841    2016-11-01 08:57:00    2016-11-01 08:57:00
41289    20779    587    2016-11-01 01:29:00    2016-11-01 01:29:00
41290    20779    558    2016-11-01 06:29:00    2016-11-01 06:29:00
41291    20779    695    2016-11-01 18:24:00    2016-11-01 18:24:00
41292    20779    805    2016-11-01 15:33:00    2016-11-01 15:33:00
41293    20780    891    2016-11-01 13:18:00    2016-11-01 13:18:00
41294    20780    534    2016-11-01 14:36:00    2016-11-01 14:36:00
41295    20780    521    2016-11-01 14:50:00    2016-11-01 14:50:00
41296    20780    956    2016-11-01 15:20:00    2016-11-01 15:20:00
41297    20780    806    2016-11-01 07:48:00    2016-11-01 07:48:00
41298    20781    916    2016-11-01 07:39:00    2016-11-01 07:39:00
41299    20781    591    2016-11-01 15:34:00    2016-11-01 15:34:00
41300    20781    948    2016-11-01 18:30:00    2016-11-01 18:30:00
41301    20781    466    2016-11-01 06:04:00    2016-11-01 06:04:00
41302    20781    468    2016-11-01 22:00:00    2016-11-01 22:00:00
41303    20782    930    2016-11-01 21:19:00    2016-11-01 21:19:00
41304    20782    828    2016-11-01 03:53:00    2016-11-01 03:53:00
41305    20782    536    2016-11-01 02:14:00    2016-11-01 02:14:00
41306    20782    921    2016-11-01 04:53:00    2016-11-01 04:53:00
41307    20782    627    2016-11-01 08:19:00    2016-11-01 08:19:00
41308    20783    712    2016-11-01 06:55:00    2016-11-01 06:55:00
41309    20783    754    2016-11-01 10:26:00    2016-11-01 10:26:00
41310    20783    955    2016-11-01 11:59:00    2016-11-01 11:59:00
41311    20783    470    2016-11-01 03:47:00    2016-11-01 03:47:00
41312    20783    912    2016-11-01 11:30:00    2016-11-01 11:30:00
41313    20784    707    2016-11-01 20:15:00    2016-11-01 20:15:00
41314    20784    768    2016-11-01 23:00:00    2016-11-01 23:00:00
41315    20784    530    2016-11-01 09:56:00    2016-11-01 09:56:00
41316    20784    580    2016-11-01 03:28:00    2016-11-01 03:28:00
41317    20784    596    2016-11-01 17:43:00    2016-11-01 17:43:00
41318    20785    820    2016-11-01 20:47:00    2016-11-01 20:47:00
41319    20785    613    2016-11-01 13:01:00    2016-11-01 13:01:00
41320    20785    553    2016-11-01 14:33:00    2016-11-01 14:33:00
41321    20785    739    2016-11-01 07:24:00    2016-11-01 07:24:00
41322    20785    841    2016-11-01 05:42:00    2016-11-01 05:42:00
41323    20786    543    2016-11-01 12:10:00    2016-11-01 12:10:00
41324    20786    531    2016-11-01 11:07:00    2016-11-01 11:07:00
41325    20786    855    2016-11-01 22:29:00    2016-11-01 22:29:00
41326    20786    874    2016-11-01 12:08:00    2016-11-01 12:08:00
41327    20786    492    2016-11-01 14:20:00    2016-11-01 14:20:00
41328    20787    820    2016-11-01 16:44:00    2016-11-01 16:44:00
41329    20787    785    2016-11-01 04:55:00    2016-11-01 04:55:00
41330    20787    882    2016-11-01 05:55:00    2016-11-01 05:55:00
41331    20787    786    2016-11-01 08:15:00    2016-11-01 08:15:00
41332    20787    641    2016-11-01 05:05:00    2016-11-01 05:05:00
41333    20788    700    2016-11-01 20:32:00    2016-11-01 20:32:00
41334    20788    905    2016-11-01 12:47:00    2016-11-01 12:47:00
41335    20788    758    2016-11-01 20:27:00    2016-11-01 20:27:00
41336    20788    667    2016-11-01 06:45:00    2016-11-01 06:45:00
41337    20788    494    2016-11-01 01:44:00    2016-11-01 01:44:00
41338    20789    533    2016-11-01 02:53:00    2016-11-01 02:53:00
41339    20789    782    2016-11-01 22:54:00    2016-11-01 22:54:00
41340    20789    553    2016-11-01 09:43:00    2016-11-01 09:43:00
41341    20789    861    2016-11-01 03:09:00    2016-11-01 03:09:00
41342    20789    580    2016-11-01 06:26:00    2016-11-01 06:26:00
41343    20790    895    2016-11-01 04:28:00    2016-11-01 04:28:00
41344    20790    680    2016-11-01 11:25:00    2016-11-01 11:25:00
41345    20790    557    2016-11-01 06:51:00    2016-11-01 06:51:00
41346    20790    649    2016-11-01 16:02:00    2016-11-01 16:02:00
41347    20790    838    2016-11-01 13:12:00    2016-11-01 13:12:00
41348    20791    465    2016-11-01 23:58:00    2016-11-01 23:58:00
41349    20791    713    2016-11-01 05:23:00    2016-11-01 05:23:00
41350    20791    665    2016-11-01 23:59:00    2016-11-01 23:59:00
41351    20791    546    2016-11-01 03:39:00    2016-11-01 03:39:00
41352    20791    889    2016-11-01 19:38:00    2016-11-01 19:38:00
41353    20792    915    2016-11-01 04:15:00    2016-11-01 04:15:00
41354    20792    931    2016-11-01 14:38:00    2016-11-01 14:38:00
41355    20792    958    2016-11-01 02:31:00    2016-11-01 02:31:00
41356    20792    856    2016-11-01 18:57:00    2016-11-01 18:57:00
41357    20792    742    2016-11-01 04:03:00    2016-11-01 04:03:00
41358    20793    717    2016-11-01 03:49:00    2016-11-01 03:49:00
41359    20793    542    2016-11-01 19:49:00    2016-11-01 19:49:00
41360    20793    511    2016-11-01 12:58:00    2016-11-01 12:58:00
41361    20793    794    2016-11-01 13:16:00    2016-11-01 13:16:00
41362    20793    639    2016-11-01 17:39:00    2016-11-01 17:39:00
41363    20794    896    2016-11-02 03:31:00    2016-11-02 03:31:00
41364    20794    548    2016-11-02 20:11:00    2016-11-02 20:11:00
41365    20794    774    2016-11-02 02:36:00    2016-11-02 02:36:00
41366    20794    481    2016-11-02 08:21:00    2016-11-02 08:21:00
41367    20794    862    2016-11-02 08:58:00    2016-11-02 08:58:00
41368    20795    467    2016-11-02 03:35:00    2016-11-02 03:35:00
41369    20795    689    2016-11-02 18:29:00    2016-11-02 18:29:00
41370    20795    807    2016-11-02 17:04:00    2016-11-02 17:04:00
41371    20795    499    2016-11-02 06:31:00    2016-11-02 06:31:00
41372    20795    717    2016-11-02 16:08:00    2016-11-02 16:08:00
41373    20796    720    2016-11-02 11:35:00    2016-11-02 11:35:00
41374    20796    641    2016-11-02 21:03:00    2016-11-02 21:03:00
41375    20796    938    2016-11-02 21:25:00    2016-11-02 21:25:00
41376    20796    676    2016-11-02 18:16:00    2016-11-02 18:16:00
41377    20796    883    2016-11-02 11:00:00    2016-11-02 11:00:00
41378    20797    801    2016-11-02 21:31:00    2016-11-02 21:31:00
41379    20797    879    2016-11-02 03:15:00    2016-11-02 03:15:00
41380    20797    601    2016-11-02 06:37:00    2016-11-02 06:37:00
41381    20797    475    2016-11-02 01:46:00    2016-11-02 01:46:00
41382    20797    512    2016-11-02 17:33:00    2016-11-02 17:33:00
41383    20798    587    2016-11-02 13:12:00    2016-11-02 13:12:00
41384    20798    648    2016-11-02 01:08:00    2016-11-02 01:08:00
41385    20798    734    2016-11-02 19:54:00    2016-11-02 19:54:00
41386    20798    930    2016-11-02 06:30:00    2016-11-02 06:30:00
41387    20798    935    2016-11-02 06:21:00    2016-11-02 06:21:00
41388    20799    851    2016-11-02 01:13:00    2016-11-02 01:13:00
41389    20799    627    2016-11-02 12:01:00    2016-11-02 12:01:00
41390    20799    888    2016-11-02 22:11:00    2016-11-02 22:11:00
41391    20799    516    2016-11-02 12:59:00    2016-11-02 12:59:00
41392    20799    662    2016-11-02 13:53:00    2016-11-02 13:53:00
41393    20800    501    2016-11-02 09:59:00    2016-11-02 09:59:00
41394    20800    854    2016-11-02 05:39:00    2016-11-02 05:39:00
41395    20800    793    2016-11-02 15:48:00    2016-11-02 15:48:00
41396    20800    467    2016-11-02 18:01:00    2016-11-02 18:01:00
41397    20800    835    2016-11-02 03:53:00    2016-11-02 03:53:00
41398    20801    622    2016-11-02 23:47:00    2016-11-02 23:47:00
41399    20801    748    2016-11-02 04:58:00    2016-11-02 04:58:00
41400    20801    701    2016-11-02 11:11:00    2016-11-02 11:11:00
41401    20801    789    2016-11-02 13:24:00    2016-11-02 13:24:00
41402    20801    479    2016-11-02 13:31:00    2016-11-02 13:31:00
41403    20802    713    2016-11-02 04:19:00    2016-11-02 04:19:00
41404    20802    701    2016-11-02 17:57:00    2016-11-02 17:57:00
41405    20802    955    2016-11-02 09:36:00    2016-11-02 09:36:00
41406    20802    657    2016-11-02 06:06:00    2016-11-02 06:06:00
41407    20802    625    2016-11-02 04:41:00    2016-11-02 04:41:00
41408    20803    902    2016-11-02 03:27:00    2016-11-02 03:27:00
41409    20803    662    2016-11-02 18:50:00    2016-11-02 18:50:00
41410    20803    856    2016-11-02 07:10:00    2016-11-02 07:10:00
41411    20803    892    2016-11-02 15:39:00    2016-11-02 15:39:00
41412    20803    512    2016-11-02 22:21:00    2016-11-02 22:21:00
41413    20804    927    2016-11-02 15:12:00    2016-11-02 15:12:00
41414    20804    837    2016-11-02 21:21:00    2016-11-02 21:21:00
41415    20804    741    2016-11-02 02:57:00    2016-11-02 02:57:00
41416    20804    490    2016-11-02 03:42:00    2016-11-02 03:42:00
41417    20804    835    2016-11-02 13:49:00    2016-11-02 13:49:00
41418    20805    828    2016-11-02 05:15:00    2016-11-02 05:15:00
41419    20805    718    2016-11-02 07:56:00    2016-11-02 07:56:00
41420    20805    496    2016-11-02 17:58:00    2016-11-02 17:58:00
41421    20805    597    2016-11-02 15:13:00    2016-11-02 15:13:00
41422    20805    681    2016-11-02 05:14:00    2016-11-02 05:14:00
41423    20806    479    2016-11-02 04:43:00    2016-11-02 04:43:00
41424    20806    481    2016-11-02 19:46:00    2016-11-02 19:46:00
41425    20806    596    2016-11-02 13:47:00    2016-11-02 13:47:00
41426    20806    645    2016-11-02 14:55:00    2016-11-02 14:55:00
41427    20806    682    2016-11-02 13:10:00    2016-11-02 13:10:00
41428    20807    898    2016-11-02 04:19:00    2016-11-02 04:19:00
41429    20807    959    2016-11-02 22:55:00    2016-11-02 22:55:00
41430    20807    890    2016-11-02 14:57:00    2016-11-02 14:57:00
41431    20807    720    2016-11-02 07:07:00    2016-11-02 07:07:00
41432    20807    907    2016-11-02 17:06:00    2016-11-02 17:06:00
41433    20808    801    2016-11-02 05:20:00    2016-11-02 05:20:00
41434    20808    762    2016-11-02 12:27:00    2016-11-02 12:27:00
41435    20808    788    2016-11-02 23:03:00    2016-11-02 23:03:00
41436    20808    667    2016-11-02 05:37:00    2016-11-02 05:37:00
41437    20808    585    2016-11-02 14:00:00    2016-11-02 14:00:00
41438    20809    692    2016-11-02 10:42:00    2016-11-02 10:42:00
41439    20809    913    2016-11-02 02:02:00    2016-11-02 02:02:00
41440    20809    625    2016-11-02 11:05:00    2016-11-02 11:05:00
41441    20809    807    2016-11-02 02:28:00    2016-11-02 02:28:00
41442    20809    873    2016-11-02 22:44:00    2016-11-02 22:44:00
41443    20810    630    2016-11-02 21:28:00    2016-11-02 21:28:00
41444    20810    846    2016-11-02 13:11:00    2016-11-02 13:11:00
41445    20810    518    2016-11-02 20:23:00    2016-11-02 20:23:00
41446    20810    704    2016-11-02 20:51:00    2016-11-02 20:51:00
41447    20810    796    2016-11-02 13:39:00    2016-11-02 13:39:00
41448    20811    894    2016-11-02 19:05:00    2016-11-02 19:05:00
41449    20811    497    2016-11-02 16:30:00    2016-11-02 16:30:00
41450    20811    591    2016-11-02 11:13:00    2016-11-02 11:13:00
41451    20811    842    2016-11-02 17:48:00    2016-11-02 17:48:00
41452    20811    799    2016-11-02 12:48:00    2016-11-02 12:48:00
41453    20812    635    2016-11-02 09:12:00    2016-11-02 09:12:00
41454    20812    791    2016-11-02 02:42:00    2016-11-02 02:42:00
41455    20812    827    2016-11-02 03:26:00    2016-11-02 03:26:00
41456    20812    927    2016-11-02 14:13:00    2016-11-02 14:13:00
41457    20812    745    2016-11-02 21:02:00    2016-11-02 21:02:00
41458    20813    843    2016-11-02 06:00:00    2016-11-02 06:00:00
41459    20813    464    2016-11-02 16:49:00    2016-11-02 16:49:00
41460    20813    553    2016-11-02 14:21:00    2016-11-02 14:21:00
41461    20813    522    2016-11-02 23:53:00    2016-11-02 23:53:00
41462    20813    936    2016-11-02 11:28:00    2016-11-02 11:28:00
41463    20814    666    2016-11-02 16:15:00    2016-11-02 16:15:00
41464    20814    554    2016-11-02 07:59:00    2016-11-02 07:59:00
41465    20814    588    2016-11-02 13:33:00    2016-11-02 13:33:00
41466    20814    851    2016-11-02 11:31:00    2016-11-02 11:31:00
41467    20814    568    2016-11-02 04:15:00    2016-11-02 04:15:00
41468    20815    959    2016-11-02 07:44:00    2016-11-02 07:44:00
41469    20815    556    2016-11-02 02:59:00    2016-11-02 02:59:00
41470    20815    675    2016-11-02 04:25:00    2016-11-02 04:25:00
41471    20815    758    2016-11-02 10:45:00    2016-11-02 10:45:00
41472    20815    913    2016-11-02 23:41:00    2016-11-02 23:41:00
41473    20816    526    2016-11-02 16:53:00    2016-11-02 16:53:00
41474    20816    812    2016-11-02 23:35:00    2016-11-02 23:35:00
41475    20816    959    2016-11-02 12:53:00    2016-11-02 12:53:00
41476    20816    590    2016-11-02 04:25:00    2016-11-02 04:25:00
41477    20816    574    2016-11-02 08:00:00    2016-11-02 08:00:00
41478    20817    499    2016-11-02 02:02:00    2016-11-02 02:02:00
41479    20817    903    2016-11-02 04:58:00    2016-11-02 04:58:00
41480    20817    823    2016-11-02 20:52:00    2016-11-02 20:52:00
41481    20817    633    2016-11-02 17:50:00    2016-11-02 17:50:00
41482    20817    729    2016-11-02 17:37:00    2016-11-02 17:37:00
41483    20818    807    2016-11-02 11:39:00    2016-11-02 11:39:00
41484    20818    748    2016-11-02 15:22:00    2016-11-02 15:22:00
41485    20818    670    2016-11-02 19:09:00    2016-11-02 19:09:00
41486    20818    583    2016-11-02 16:07:00    2016-11-02 16:07:00
41487    20818    697    2016-11-02 10:43:00    2016-11-02 10:43:00
41488    20819    624    2016-11-02 17:53:00    2016-11-02 17:53:00
41489    20819    682    2016-11-02 01:24:00    2016-11-02 01:24:00
41490    20819    538    2016-11-02 12:30:00    2016-11-02 12:30:00
41491    20819    643    2016-11-02 18:03:00    2016-11-02 18:03:00
41492    20819    752    2016-11-02 11:04:00    2016-11-02 11:04:00
41493    20820    556    2016-11-02 12:19:00    2016-11-02 12:19:00
41494    20820    698    2016-11-02 19:48:00    2016-11-02 19:48:00
41495    20820    667    2016-11-02 23:52:00    2016-11-02 23:52:00
41496    20820    793    2016-11-02 23:46:00    2016-11-02 23:46:00
41497    20820    906    2016-11-02 20:52:00    2016-11-02 20:52:00
41498    20821    533    2016-11-02 03:01:00    2016-11-02 03:01:00
41499    20821    958    2016-11-02 05:15:00    2016-11-02 05:15:00
41500    20821    906    2016-11-02 03:30:00    2016-11-02 03:30:00
41501    20821    788    2016-11-02 09:21:00    2016-11-02 09:21:00
41502    20821    808    2016-11-02 16:00:00    2016-11-02 16:00:00
41503    20822    677    2016-11-02 21:09:00    2016-11-02 21:09:00
41504    20822    624    2016-11-02 09:25:00    2016-11-02 09:25:00
41505    20822    473    2016-11-02 08:05:00    2016-11-02 08:05:00
41506    20822    961    2016-11-02 03:05:00    2016-11-02 03:05:00
41507    20822    899    2016-11-02 06:35:00    2016-11-02 06:35:00
41508    20823    684    2016-11-02 10:53:00    2016-11-02 10:53:00
41509    20823    894    2016-11-02 05:21:00    2016-11-02 05:21:00
41510    20823    885    2016-11-02 04:24:00    2016-11-02 04:24:00
41511    20823    466    2016-11-02 16:53:00    2016-11-02 16:53:00
41512    20823    503    2016-11-02 22:11:00    2016-11-02 22:11:00
41513    20824    733    2016-11-02 08:04:00    2016-11-02 08:04:00
41514    20824    584    2016-11-02 22:52:00    2016-11-02 22:52:00
41515    20824    524    2016-11-02 13:56:00    2016-11-02 13:56:00
41516    20824    782    2016-11-02 04:07:00    2016-11-02 04:07:00
41517    20824    759    2016-11-02 12:25:00    2016-11-02 12:25:00
41518    20825    674    2016-11-02 15:46:00    2016-11-02 15:46:00
41519    20825    958    2016-11-02 23:20:00    2016-11-02 23:20:00
41520    20825    819    2016-11-02 08:05:00    2016-11-02 08:05:00
41521    20825    943    2016-11-02 03:50:00    2016-11-02 03:50:00
41522    20825    515    2016-11-02 18:41:00    2016-11-02 18:41:00
41523    20826    522    2016-11-02 18:50:00    2016-11-02 18:50:00
41524    20826    488    2016-11-02 21:38:00    2016-11-02 21:38:00
41525    20826    933    2016-11-02 18:57:00    2016-11-02 18:57:00
41526    20826    596    2016-11-02 11:26:00    2016-11-02 11:26:00
41527    20826    731    2016-11-02 13:21:00    2016-11-02 13:21:00
41528    20827    728    2016-11-02 23:35:00    2016-11-02 23:35:00
41529    20827    466    2016-11-02 05:19:00    2016-11-02 05:19:00
41530    20827    485    2016-11-02 17:34:00    2016-11-02 17:34:00
41531    20827    924    2016-11-02 04:40:00    2016-11-02 04:40:00
41532    20827    637    2016-11-02 10:17:00    2016-11-02 10:17:00
41533    20828    939    2016-11-03 10:50:00    2016-11-03 10:50:00
41534    20828    763    2016-11-03 23:37:00    2016-11-03 23:37:00
41535    20828    648    2016-11-03 08:14:00    2016-11-03 08:14:00
41536    20828    548    2016-11-03 06:22:00    2016-11-03 06:22:00
41537    20828    481    2016-11-03 13:50:00    2016-11-03 13:50:00
41538    20829    820    2016-11-03 22:52:00    2016-11-03 22:52:00
41539    20829    727    2016-11-03 15:53:00    2016-11-03 15:53:00
41540    20829    955    2016-11-03 09:21:00    2016-11-03 09:21:00
41541    20829    794    2016-11-03 05:26:00    2016-11-03 05:26:00
41542    20829    631    2016-11-03 20:06:00    2016-11-03 20:06:00
41543    20830    803    2016-11-03 07:41:00    2016-11-03 07:41:00
41544    20830    562    2016-11-03 11:30:00    2016-11-03 11:30:00
41545    20830    912    2016-11-03 12:35:00    2016-11-03 12:35:00
41546    20830    472    2016-11-03 09:33:00    2016-11-03 09:33:00
41547    20830    656    2016-11-03 11:00:00    2016-11-03 11:00:00
41548    20831    860    2016-11-03 15:06:00    2016-11-03 15:06:00
41549    20831    670    2016-11-03 04:25:00    2016-11-03 04:25:00
41550    20831    466    2016-11-03 12:11:00    2016-11-03 12:11:00
41551    20831    645    2016-11-03 17:34:00    2016-11-03 17:34:00
41552    20831    713    2016-11-03 21:57:00    2016-11-03 21:57:00
41553    20832    472    2016-11-03 06:43:00    2016-11-03 06:43:00
41554    20832    499    2016-11-03 13:34:00    2016-11-03 13:34:00
41555    20832    743    2016-11-03 07:28:00    2016-11-03 07:28:00
41556    20832    885    2016-11-03 12:36:00    2016-11-03 12:36:00
41557    20832    939    2016-11-03 15:51:00    2016-11-03 15:51:00
41558    20833    907    2016-11-03 01:48:00    2016-11-03 01:48:00
41559    20833    474    2016-11-03 04:02:00    2016-11-03 04:02:00
41560    20833    890    2016-11-03 17:48:00    2016-11-03 17:48:00
41561    20833    814    2016-11-03 16:59:00    2016-11-03 16:59:00
41562    20833    474    2016-11-03 17:15:00    2016-11-03 17:15:00
41563    20834    514    2016-11-03 16:21:00    2016-11-03 16:21:00
41564    20834    512    2016-11-03 08:39:00    2016-11-03 08:39:00
41565    20834    819    2016-11-03 12:18:00    2016-11-03 12:18:00
41566    20834    912    2016-11-03 06:32:00    2016-11-03 06:32:00
41567    20834    796    2016-11-03 17:18:00    2016-11-03 17:18:00
41568    20835    961    2016-11-03 03:04:00    2016-11-03 03:04:00
41569    20835    768    2016-11-03 01:41:00    2016-11-03 01:41:00
41570    20835    881    2016-11-03 04:21:00    2016-11-03 04:21:00
41571    20835    527    2016-11-03 08:54:00    2016-11-03 08:54:00
41572    20835    496    2016-11-03 20:00:00    2016-11-03 20:00:00
41573    20836    583    2016-11-03 13:49:00    2016-11-03 13:49:00
41574    20836    633    2016-11-03 23:24:00    2016-11-03 23:24:00
41575    20836    497    2016-11-03 07:52:00    2016-11-03 07:52:00
41576    20836    684    2016-11-03 03:00:00    2016-11-03 03:00:00
41577    20836    571    2016-11-03 21:14:00    2016-11-03 21:14:00
41578    20837    893    2016-11-03 12:52:00    2016-11-03 12:52:00
41579    20837    643    2016-11-03 13:19:00    2016-11-03 13:19:00
41580    20837    542    2016-11-03 21:03:00    2016-11-03 21:03:00
41581    20837    883    2016-11-03 06:43:00    2016-11-03 06:43:00
41582    20837    782    2016-11-03 10:01:00    2016-11-03 10:01:00
41583    20838    493    2016-11-03 13:34:00    2016-11-03 13:34:00
41584    20838    798    2016-11-03 16:51:00    2016-11-03 16:51:00
41585    20838    783    2016-11-03 14:52:00    2016-11-03 14:52:00
41586    20838    750    2016-11-03 02:13:00    2016-11-03 02:13:00
41587    20838    585    2016-11-03 07:39:00    2016-11-03 07:39:00
41588    20839    472    2016-11-03 11:19:00    2016-11-03 11:19:00
41589    20839    763    2016-11-03 13:48:00    2016-11-03 13:48:00
41590    20839    903    2016-11-03 15:36:00    2016-11-03 15:36:00
41591    20839    919    2016-11-03 09:47:00    2016-11-03 09:47:00
41592    20839    862    2016-11-03 07:17:00    2016-11-03 07:17:00
41593    20840    602    2016-11-03 06:28:00    2016-11-03 06:28:00
41594    20840    853    2016-11-03 05:17:00    2016-11-03 05:17:00
41595    20840    530    2016-11-03 05:00:00    2016-11-03 05:00:00
41596    20840    490    2016-11-03 04:35:00    2016-11-03 04:35:00
41597    20840    957    2016-11-03 19:52:00    2016-11-03 19:52:00
41598    20841    695    2016-11-03 06:54:00    2016-11-03 06:54:00
41599    20841    766    2016-11-03 11:46:00    2016-11-03 11:46:00
41600    20841    634    2016-11-03 10:33:00    2016-11-03 10:33:00
41601    20841    592    2016-11-03 16:35:00    2016-11-03 16:35:00
41602    20841    813    2016-11-03 03:24:00    2016-11-03 03:24:00
41603    20842    943    2016-11-03 05:51:00    2016-11-03 05:51:00
41604    20842    730    2016-11-03 07:17:00    2016-11-03 07:17:00
41605    20842    896    2016-11-03 03:47:00    2016-11-03 03:47:00
41606    20842    657    2016-11-03 10:54:00    2016-11-03 10:54:00
41607    20842    738    2016-11-03 11:00:00    2016-11-03 11:00:00
41608    20843    549    2016-11-03 06:25:00    2016-11-03 06:25:00
41609    20843    473    2016-11-03 22:57:00    2016-11-03 22:57:00
41610    20843    713    2016-11-03 04:00:00    2016-11-03 04:00:00
41611    20843    788    2016-11-03 10:56:00    2016-11-03 10:56:00
41612    20843    572    2016-11-03 22:22:00    2016-11-03 22:22:00
41613    20844    771    2016-11-03 10:21:00    2016-11-03 10:21:00
41614    20844    957    2016-11-03 23:42:00    2016-11-03 23:42:00
41615    20844    626    2016-11-03 14:47:00    2016-11-03 14:47:00
41616    20844    751    2016-11-03 15:07:00    2016-11-03 15:07:00
41617    20844    624    2016-11-03 23:12:00    2016-11-03 23:12:00
41618    20845    874    2016-11-03 03:12:00    2016-11-03 03:12:00
41619    20845    591    2016-11-03 09:28:00    2016-11-03 09:28:00
41620    20845    494    2016-11-03 10:30:00    2016-11-03 10:30:00
41621    20845    566    2016-11-03 16:57:00    2016-11-03 16:57:00
41622    20845    693    2016-11-03 01:13:00    2016-11-03 01:13:00
41623    20846    778    2016-11-03 03:34:00    2016-11-03 03:34:00
41624    20846    687    2016-11-03 17:51:00    2016-11-03 17:51:00
41625    20846    665    2016-11-03 05:37:00    2016-11-03 05:37:00
41626    20846    652    2016-11-03 21:32:00    2016-11-03 21:32:00
41627    20846    802    2016-11-03 21:31:00    2016-11-03 21:31:00
41628    20847    896    2016-11-03 11:50:00    2016-11-03 11:50:00
41629    20847    957    2016-11-03 20:58:00    2016-11-03 20:58:00
41630    20847    652    2016-11-03 02:48:00    2016-11-03 02:48:00
41631    20847    547    2016-11-03 03:26:00    2016-11-03 03:26:00
41632    20847    614    2016-11-03 13:23:00    2016-11-03 13:23:00
41633    20848    704    2016-11-03 05:39:00    2016-11-03 05:39:00
41634    20848    823    2016-11-03 22:53:00    2016-11-03 22:53:00
41635    20848    781    2016-11-03 21:27:00    2016-11-03 21:27:00
41636    20848    749    2016-11-03 18:52:00    2016-11-03 18:52:00
41637    20848    480    2016-11-03 05:18:00    2016-11-03 05:18:00
41638    20849    795    2016-11-03 14:14:00    2016-11-03 14:14:00
41639    20849    709    2016-11-03 03:10:00    2016-11-03 03:10:00
41640    20849    841    2016-11-03 05:05:00    2016-11-03 05:05:00
41641    20849    814    2016-11-03 21:28:00    2016-11-03 21:28:00
41642    20849    714    2016-11-03 20:47:00    2016-11-03 20:47:00
41643    20850    675    2016-11-03 19:55:00    2016-11-03 19:55:00
41644    20850    887    2016-11-03 18:18:00    2016-11-03 18:18:00
41645    20850    924    2016-11-03 14:34:00    2016-11-03 14:34:00
41646    20850    475    2016-11-03 16:31:00    2016-11-03 16:31:00
41647    20850    917    2016-11-03 07:07:00    2016-11-03 07:07:00
41648    20851    838    2016-11-03 01:36:00    2016-11-03 01:36:00
41649    20851    941    2016-11-03 10:35:00    2016-11-03 10:35:00
41650    20851    471    2016-11-03 10:55:00    2016-11-03 10:55:00
41651    20851    851    2016-11-03 12:00:00    2016-11-03 12:00:00
41652    20851    676    2016-11-03 03:14:00    2016-11-03 03:14:00
41653    20852    753    2016-11-03 01:12:00    2016-11-03 01:12:00
41654    20852    616    2016-11-03 07:47:00    2016-11-03 07:47:00
41655    20852    470    2016-11-03 11:37:00    2016-11-03 11:37:00
41656    20852    627    2016-11-03 03:49:00    2016-11-03 03:49:00
41657    20852    567    2016-11-03 02:33:00    2016-11-03 02:33:00
41658    20853    558    2016-11-03 08:54:00    2016-11-03 08:54:00
41659    20853    754    2016-11-03 05:41:00    2016-11-03 05:41:00
41660    20853    482    2016-11-03 19:00:00    2016-11-03 19:00:00
41661    20853    488    2016-11-03 18:40:00    2016-11-03 18:40:00
41662    20853    715    2016-11-03 03:48:00    2016-11-03 03:48:00
41663    20854    587    2016-11-03 09:09:00    2016-11-03 09:09:00
41664    20854    892    2016-11-03 10:54:00    2016-11-03 10:54:00
41665    20854    735    2016-11-03 20:12:00    2016-11-03 20:12:00
41666    20854    667    2016-11-03 16:22:00    2016-11-03 16:22:00
41667    20854    838    2016-11-03 11:44:00    2016-11-03 11:44:00
41668    20855    634    2016-11-03 23:11:00    2016-11-03 23:11:00
41669    20855    759    2016-11-03 04:10:00    2016-11-03 04:10:00
41670    20855    909    2016-11-03 04:36:00    2016-11-03 04:36:00
41671    20855    554    2016-11-03 17:44:00    2016-11-03 17:44:00
41672    20855    475    2016-11-03 05:35:00    2016-11-03 05:35:00
41673    20856    560    2016-11-03 15:46:00    2016-11-03 15:46:00
41674    20856    686    2016-11-03 12:19:00    2016-11-03 12:19:00
41675    20856    847    2016-11-03 18:20:00    2016-11-03 18:20:00
41676    20856    908    2016-11-03 10:41:00    2016-11-03 10:41:00
41677    20856    487    2016-11-03 08:12:00    2016-11-03 08:12:00
41678    20857    520    2016-11-03 12:39:00    2016-11-03 12:39:00
41679    20857    674    2016-11-03 08:51:00    2016-11-03 08:51:00
41680    20857    545    2016-11-03 11:54:00    2016-11-03 11:54:00
41681    20857    663    2016-11-03 21:42:00    2016-11-03 21:42:00
41682    20857    575    2016-11-03 20:57:00    2016-11-03 20:57:00
41683    20858    910    2016-11-03 07:50:00    2016-11-03 07:50:00
41684    20858    608    2016-11-03 15:46:00    2016-11-03 15:46:00
41685    20858    519    2016-11-03 19:14:00    2016-11-03 19:14:00
41686    20858    563    2016-11-03 03:48:00    2016-11-03 03:48:00
41687    20858    711    2016-11-03 01:32:00    2016-11-03 01:32:00
41688    20859    651    2016-11-03 01:01:00    2016-11-03 01:01:00
41689    20859    961    2016-11-03 01:49:00    2016-11-03 01:49:00
41690    20859    640    2016-11-03 07:05:00    2016-11-03 07:05:00
41691    20859    584    2016-11-03 13:06:00    2016-11-03 13:06:00
41692    20859    582    2016-11-03 03:59:00    2016-11-03 03:59:00
41693    20860    649    2016-11-03 20:22:00    2016-11-03 20:22:00
41694    20860    561    2016-11-03 21:34:00    2016-11-03 21:34:00
41695    20860    865    2016-11-03 12:19:00    2016-11-03 12:19:00
41696    20860    619    2016-11-03 11:45:00    2016-11-03 11:45:00
41697    20860    760    2016-11-03 01:54:00    2016-11-03 01:54:00
41698    20861    558    2016-11-04 22:10:00    2016-11-04 22:10:00
41699    20861    771    2016-11-04 16:31:00    2016-11-04 16:31:00
41700    20861    497    2016-11-04 15:45:00    2016-11-04 15:45:00
41701    20861    604    2016-11-04 15:17:00    2016-11-04 15:17:00
41702    20861    558    2016-11-04 09:52:00    2016-11-04 09:52:00
41703    20862    934    2016-11-04 04:51:00    2016-11-04 04:51:00
41704    20862    471    2016-11-04 15:18:00    2016-11-04 15:18:00
41705    20862    559    2016-11-04 22:22:00    2016-11-04 22:22:00
41706    20862    565    2016-11-04 18:07:00    2016-11-04 18:07:00
41707    20862    821    2016-11-04 12:09:00    2016-11-04 12:09:00
41708    20863    586    2016-11-04 10:47:00    2016-11-04 10:47:00
41709    20863    800    2016-11-04 09:13:00    2016-11-04 09:13:00
41710    20863    784    2016-11-04 23:17:00    2016-11-04 23:17:00
41711    20863    922    2016-11-04 03:12:00    2016-11-04 03:12:00
41712    20863    799    2016-11-04 08:13:00    2016-11-04 08:13:00
41713    20864    633    2016-11-04 21:38:00    2016-11-04 21:38:00
41714    20864    736    2016-11-04 09:33:00    2016-11-04 09:33:00
41715    20864    580    2016-11-04 13:18:00    2016-11-04 13:18:00
41716    20864    476    2016-11-04 17:46:00    2016-11-04 17:46:00
41717    20864    937    2016-11-04 06:37:00    2016-11-04 06:37:00
41718    20865    696    2016-11-04 17:50:00    2016-11-04 17:50:00
41719    20865    944    2016-11-04 19:59:00    2016-11-04 19:59:00
41720    20865    541    2016-11-04 17:19:00    2016-11-04 17:19:00
41721    20865    728    2016-11-04 02:00:00    2016-11-04 02:00:00
41722    20865    516    2016-11-04 21:03:00    2016-11-04 21:03:00
41723    20866    588    2016-11-04 11:36:00    2016-11-04 11:36:00
41724    20866    928    2016-11-04 09:12:00    2016-11-04 09:12:00
41725    20866    878    2016-11-04 23:27:00    2016-11-04 23:27:00
41726    20866    949    2016-11-04 20:35:00    2016-11-04 20:35:00
41727    20866    512    2016-11-04 02:44:00    2016-11-04 02:44:00
41728    20867    835    2016-11-04 08:22:00    2016-11-04 08:22:00
41729    20867    750    2016-11-04 15:14:00    2016-11-04 15:14:00
41730    20867    753    2016-11-04 21:41:00    2016-11-04 21:41:00
41731    20867    783    2016-11-04 09:44:00    2016-11-04 09:44:00
41732    20867    765    2016-11-04 17:26:00    2016-11-04 17:26:00
41733    20868    794    2016-11-04 03:28:00    2016-11-04 03:28:00
41734    20868    679    2016-11-04 21:01:00    2016-11-04 21:01:00
41735    20868    824    2016-11-04 19:24:00    2016-11-04 19:24:00
41736    20868    769    2016-11-04 16:14:00    2016-11-04 16:14:00
41737    20868    614    2016-11-04 05:08:00    2016-11-04 05:08:00
41738    20869    639    2016-11-04 01:05:00    2016-11-04 01:05:00
41739    20869    685    2016-11-04 01:04:00    2016-11-04 01:04:00
41740    20869    868    2016-11-04 03:09:00    2016-11-04 03:09:00
41741    20869    710    2016-11-04 14:49:00    2016-11-04 14:49:00
41742    20869    556    2016-11-04 02:33:00    2016-11-04 02:33:00
41743    20870    709    2016-11-04 12:44:00    2016-11-04 12:44:00
41744    20870    619    2016-11-04 13:24:00    2016-11-04 13:24:00
41745    20870    572    2016-11-04 02:26:00    2016-11-04 02:26:00
41746    20870    728    2016-11-04 12:31:00    2016-11-04 12:31:00
41747    20870    790    2016-11-04 04:10:00    2016-11-04 04:10:00
41748    20871    805    2016-11-04 04:29:00    2016-11-04 04:29:00
41749    20871    719    2016-11-04 10:43:00    2016-11-04 10:43:00
41750    20871    602    2016-11-04 18:21:00    2016-11-04 18:21:00
41751    20871    871    2016-11-04 18:52:00    2016-11-04 18:52:00
41752    20871    937    2016-11-04 04:41:00    2016-11-04 04:41:00
41753    20872    504    2016-11-04 21:33:00    2016-11-04 21:33:00
41754    20872    579    2016-11-04 18:20:00    2016-11-04 18:20:00
41755    20872    499    2016-11-04 18:36:00    2016-11-04 18:36:00
41756    20872    807    2016-11-04 02:47:00    2016-11-04 02:47:00
41757    20872    536    2016-11-04 02:13:00    2016-11-04 02:13:00
41758    20873    759    2016-11-04 15:08:00    2016-11-04 15:08:00
41759    20873    467    2016-11-04 10:29:00    2016-11-04 10:29:00
41760    20873    593    2016-11-04 20:50:00    2016-11-04 20:50:00
41761    20873    743    2016-11-04 05:46:00    2016-11-04 05:46:00
41762    20873    520    2016-11-04 02:40:00    2016-11-04 02:40:00
41763    20874    491    2016-11-05 07:07:00    2016-11-05 07:07:00
41764    20874    569    2016-11-05 09:37:00    2016-11-05 09:37:00
41765    20874    761    2016-11-05 06:21:00    2016-11-05 06:21:00
41766    20874    689    2016-11-05 22:19:00    2016-11-05 22:19:00
41767    20874    568    2016-11-05 10:44:00    2016-11-05 10:44:00
41768    20875    940    2016-11-05 21:08:00    2016-11-05 21:08:00
41769    20875    746    2016-11-05 09:54:00    2016-11-05 09:54:00
41770    20875    784    2016-11-05 06:03:00    2016-11-05 06:03:00
41771    20875    647    2016-11-05 04:51:00    2016-11-05 04:51:00
41772    20875    782    2016-11-05 15:07:00    2016-11-05 15:07:00
41773    20876    787    2016-11-05 06:01:00    2016-11-05 06:01:00
41774    20876    645    2016-11-05 21:29:00    2016-11-05 21:29:00
41775    20876    494    2016-11-05 05:07:00    2016-11-05 05:07:00
41776    20876    648    2016-11-05 06:45:00    2016-11-05 06:45:00
41777    20876    837    2016-11-05 04:31:00    2016-11-05 04:31:00
41778    20877    737    2016-11-05 15:20:00    2016-11-05 15:20:00
41779    20877    871    2016-11-05 01:46:00    2016-11-05 01:46:00
41780    20877    758    2016-11-05 10:21:00    2016-11-05 10:21:00
41781    20877    557    2016-11-05 09:31:00    2016-11-05 09:31:00
41782    20877    643    2016-11-05 09:16:00    2016-11-05 09:16:00
41783    20878    817    2016-11-05 22:33:00    2016-11-05 22:33:00
41784    20878    548    2016-11-05 07:31:00    2016-11-05 07:31:00
41785    20878    586    2016-11-05 17:07:00    2016-11-05 17:07:00
41786    20878    549    2016-11-05 04:58:00    2016-11-05 04:58:00
41787    20878    938    2016-11-05 14:39:00    2016-11-05 14:39:00
41788    20879    691    2016-11-05 08:24:00    2016-11-05 08:24:00
41789    20879    939    2016-11-05 12:50:00    2016-11-05 12:50:00
41790    20879    556    2016-11-05 03:41:00    2016-11-05 03:41:00
41791    20879    616    2016-11-05 22:58:00    2016-11-05 22:58:00
41792    20879    552    2016-11-05 13:44:00    2016-11-05 13:44:00
41793    20880    759    2016-11-05 15:36:00    2016-11-05 15:36:00
41794    20880    573    2016-11-05 20:51:00    2016-11-05 20:51:00
41795    20880    856    2016-11-05 02:12:00    2016-11-05 02:12:00
41796    20880    955    2016-11-05 18:23:00    2016-11-05 18:23:00
41797    20880    503    2016-11-05 03:42:00    2016-11-05 03:42:00
41798    20881    866    2016-11-05 12:05:00    2016-11-05 12:05:00
41799    20881    661    2016-11-05 21:32:00    2016-11-05 21:32:00
41800    20881    743    2016-11-05 21:25:00    2016-11-05 21:25:00
41801    20881    905    2016-11-05 15:46:00    2016-11-05 15:46:00
41802    20881    628    2016-11-05 02:11:00    2016-11-05 02:11:00
41803    20882    561    2016-11-05 02:29:00    2016-11-05 02:29:00
41804    20882    792    2016-11-05 10:09:00    2016-11-05 10:09:00
41805    20882    921    2016-11-05 02:11:00    2016-11-05 02:11:00
41806    20882    619    2016-11-05 22:28:00    2016-11-05 22:28:00
41807    20882    883    2016-11-05 12:28:00    2016-11-05 12:28:00
41808    20883    569    2016-11-05 20:19:00    2016-11-05 20:19:00
41809    20883    918    2016-11-05 20:04:00    2016-11-05 20:04:00
41810    20883    902    2016-11-05 03:50:00    2016-11-05 03:50:00
41811    20883    662    2016-11-05 04:11:00    2016-11-05 04:11:00
41812    20883    612    2016-11-05 18:49:00    2016-11-05 18:49:00
41813    20884    747    2016-11-05 12:18:00    2016-11-05 12:18:00
41814    20884    582    2016-11-05 02:21:00    2016-11-05 02:21:00
41815    20884    820    2016-11-05 16:08:00    2016-11-05 16:08:00
41816    20884    688    2016-11-05 08:40:00    2016-11-05 08:40:00
41817    20884    574    2016-11-05 04:07:00    2016-11-05 04:07:00
41818    20885    547    2016-11-05 15:49:00    2016-11-05 15:49:00
41819    20885    647    2016-11-05 19:39:00    2016-11-05 19:39:00
41820    20885    548    2016-11-05 14:32:00    2016-11-05 14:32:00
41821    20885    948    2016-11-05 04:21:00    2016-11-05 04:21:00
41822    20885    585    2016-11-05 07:48:00    2016-11-05 07:48:00
41823    20886    734    2016-11-05 14:49:00    2016-11-05 14:49:00
41824    20886    586    2016-11-05 04:38:00    2016-11-05 04:38:00
41825    20886    839    2016-11-05 06:44:00    2016-11-05 06:44:00
41826    20886    839    2016-11-05 07:46:00    2016-11-05 07:46:00
41827    20886    574    2016-11-05 14:48:00    2016-11-05 14:48:00
41828    20887    927    2016-11-05 08:07:00    2016-11-05 08:07:00
41829    20887    805    2016-11-05 02:28:00    2016-11-05 02:28:00
41830    20887    789    2016-11-05 03:21:00    2016-11-05 03:21:00
41831    20887    484    2016-11-05 07:09:00    2016-11-05 07:09:00
41832    20887    858    2016-11-05 02:29:00    2016-11-05 02:29:00
41833    20888    885    2016-11-05 22:01:00    2016-11-05 22:01:00
41834    20888    903    2016-11-05 17:24:00    2016-11-05 17:24:00
41835    20888    732    2016-11-05 01:28:00    2016-11-05 01:28:00
41836    20888    839    2016-11-05 03:47:00    2016-11-05 03:47:00
41837    20888    709    2016-11-05 23:12:00    2016-11-05 23:12:00
41838    20889    470    2016-11-05 10:05:00    2016-11-05 10:05:00
41839    20889    828    2016-11-05 14:22:00    2016-11-05 14:22:00
41840    20889    569    2016-11-05 02:03:00    2016-11-05 02:03:00
41841    20889    488    2016-11-05 08:52:00    2016-11-05 08:52:00
41842    20889    498    2016-11-05 09:02:00    2016-11-05 09:02:00
41843    20890    748    2016-11-06 22:17:00    2016-11-06 22:17:00
41844    20890    873    2016-11-06 06:51:00    2016-11-06 06:51:00
41845    20890    646    2016-11-06 11:04:00    2016-11-06 11:04:00
41846    20890    555    2016-11-06 13:29:00    2016-11-06 13:29:00
41847    20890    755    2016-11-06 17:37:00    2016-11-06 17:37:00
41848    20891    626    2016-11-06 01:00:00    2016-11-06 01:00:00
41849    20891    546    2016-11-06 16:46:00    2016-11-06 16:46:00
41850    20891    668    2016-11-06 16:50:00    2016-11-06 16:50:00
41851    20891    824    2016-11-06 13:21:00    2016-11-06 13:21:00
41852    20891    562    2016-11-06 18:24:00    2016-11-06 18:24:00
41853    20892    799    2016-11-06 16:39:00    2016-11-06 16:39:00
41854    20892    493    2016-11-06 19:31:00    2016-11-06 19:31:00
41855    20892    621    2016-11-06 15:29:00    2016-11-06 15:29:00
41856    20892    763    2016-11-06 08:26:00    2016-11-06 08:26:00
41857    20892    577    2016-11-06 16:01:00    2016-11-06 16:01:00
41858    20893    912    2016-11-06 04:47:00    2016-11-06 04:47:00
41859    20893    577    2016-11-06 02:11:00    2016-11-06 02:11:00
41860    20893    617    2016-11-06 19:02:00    2016-11-06 19:02:00
41861    20893    705    2016-11-06 10:40:00    2016-11-06 10:40:00
41862    20893    779    2016-11-06 05:07:00    2016-11-06 05:07:00
41863    20894    534    2016-11-06 04:39:00    2016-11-06 04:39:00
41864    20894    900    2016-11-06 05:16:00    2016-11-06 05:16:00
41865    20894    831    2016-11-06 22:14:00    2016-11-06 22:14:00
41866    20894    639    2016-11-06 11:46:00    2016-11-06 11:46:00
41867    20894    796    2016-11-06 13:49:00    2016-11-06 13:49:00
41868    20895    810    2016-11-06 23:11:00    2016-11-06 23:11:00
41869    20895    765    2016-11-06 06:18:00    2016-11-06 06:18:00
41870    20895    603    2016-11-06 10:53:00    2016-11-06 10:53:00
41871    20895    470    2016-11-06 18:50:00    2016-11-06 18:50:00
41872    20895    877    2016-11-06 03:16:00    2016-11-06 03:16:00
41873    20896    630    2016-11-06 22:38:00    2016-11-06 22:38:00
41874    20896    846    2016-11-06 17:48:00    2016-11-06 17:48:00
41875    20896    937    2016-11-06 09:07:00    2016-11-06 09:07:00
41876    20896    825    2016-11-06 09:36:00    2016-11-06 09:36:00
41877    20896    512    2016-11-06 20:10:00    2016-11-06 20:10:00
41878    20897    941    2016-11-06 14:13:00    2016-11-06 14:13:00
41879    20897    612    2016-11-06 09:51:00    2016-11-06 09:51:00
41880    20897    690    2016-11-06 16:57:00    2016-11-06 16:57:00
41881    20897    624    2016-11-06 05:00:00    2016-11-06 05:00:00
41882    20897    829    2016-11-06 05:07:00    2016-11-06 05:07:00
41883    20898    834    2016-11-06 09:53:00    2016-11-06 09:53:00
41884    20898    954    2016-11-06 12:17:00    2016-11-06 12:17:00
41885    20898    735    2016-11-06 06:25:00    2016-11-06 06:25:00
41886    20898    567    2016-11-06 20:32:00    2016-11-06 20:32:00
41887    20898    763    2016-11-06 07:00:00    2016-11-06 07:00:00
41888    20899    907    2016-11-06 22:19:00    2016-11-06 22:19:00
41889    20899    804    2016-11-06 01:01:00    2016-11-06 01:01:00
41890    20899    803    2016-11-06 06:40:00    2016-11-06 06:40:00
41891    20899    783    2016-11-06 07:04:00    2016-11-06 07:04:00
41892    20899    565    2016-11-06 05:23:00    2016-11-06 05:23:00
41893    20900    502    2016-11-06 13:34:00    2016-11-06 13:34:00
41894    20900    570    2016-11-06 02:11:00    2016-11-06 02:11:00
41895    20900    489    2016-11-06 17:09:00    2016-11-06 17:09:00
41896    20900    952    2016-11-06 21:40:00    2016-11-06 21:40:00
41897    20900    817    2016-11-06 10:56:00    2016-11-06 10:56:00
41898    20901    957    2016-11-06 14:35:00    2016-11-06 14:35:00
41899    20901    918    2016-11-06 05:26:00    2016-11-06 05:26:00
41900    20901    470    2016-11-06 14:21:00    2016-11-06 14:21:00
41901    20901    513    2016-11-06 02:44:00    2016-11-06 02:44:00
41902    20901    800    2016-11-06 11:15:00    2016-11-06 11:15:00
41903    20902    655    2016-11-06 08:34:00    2016-11-06 08:34:00
41904    20902    931    2016-11-06 09:10:00    2016-11-06 09:10:00
41905    20902    945    2016-11-06 02:17:00    2016-11-06 02:17:00
41906    20902    543    2016-11-06 20:00:00    2016-11-06 20:00:00
41907    20902    893    2016-11-06 03:56:00    2016-11-06 03:56:00
41908    20903    838    2016-11-06 18:58:00    2016-11-06 18:58:00
41909    20903    617    2016-11-06 19:19:00    2016-11-06 19:19:00
41910    20903    474    2016-11-06 09:01:00    2016-11-06 09:01:00
41911    20903    936    2016-11-06 01:30:00    2016-11-06 01:30:00
41912    20903    850    2016-11-06 05:19:00    2016-11-06 05:19:00
41913    20904    942    2016-11-06 23:39:00    2016-11-06 23:39:00
41914    20904    877    2016-11-06 17:41:00    2016-11-06 17:41:00
41915    20904    693    2016-11-06 05:15:00    2016-11-06 05:15:00
41916    20904    911    2016-11-06 02:55:00    2016-11-06 02:55:00
41917    20904    533    2016-11-06 03:07:00    2016-11-06 03:07:00
41918    20905    519    2016-11-06 23:47:00    2016-11-06 23:47:00
41919    20905    832    2016-11-06 03:06:00    2016-11-06 03:06:00
41920    20905    735    2016-11-06 13:23:00    2016-11-06 13:23:00
41921    20905    902    2016-11-06 01:41:00    2016-11-06 01:41:00
41922    20905    496    2016-11-06 05:37:00    2016-11-06 05:37:00
41923    20906    679    2016-11-06 01:43:00    2016-11-06 01:43:00
41924    20906    542    2016-11-06 19:23:00    2016-11-06 19:23:00
41925    20906    875    2016-11-06 15:30:00    2016-11-06 15:30:00
41926    20906    752    2016-11-06 03:22:00    2016-11-06 03:22:00
41927    20906    576    2016-11-06 06:13:00    2016-11-06 06:13:00
41928    20907    725    2016-11-06 18:56:00    2016-11-06 18:56:00
41929    20907    705    2016-11-06 01:08:00    2016-11-06 01:08:00
41930    20907    519    2016-11-06 15:45:00    2016-11-06 15:45:00
41931    20907    900    2016-11-06 04:56:00    2016-11-06 04:56:00
41932    20907    727    2016-11-06 14:37:00    2016-11-06 14:37:00
41933    20908    506    2016-11-06 23:29:00    2016-11-06 23:29:00
41934    20908    868    2016-11-06 14:34:00    2016-11-06 14:34:00
41935    20908    532    2016-11-06 06:40:00    2016-11-06 06:40:00
41936    20908    850    2016-11-06 17:54:00    2016-11-06 17:54:00
41937    20908    731    2016-11-06 16:16:00    2016-11-06 16:16:00
41938    20909    855    2016-11-06 01:49:00    2016-11-06 01:49:00
41939    20909    701    2016-11-06 07:38:00    2016-11-06 07:38:00
41940    20909    814    2016-11-06 11:42:00    2016-11-06 11:42:00
41941    20909    862    2016-11-06 01:10:00    2016-11-06 01:10:00
41942    20909    742    2016-11-06 09:54:00    2016-11-06 09:54:00
41943    20910    513    2016-11-06 07:35:00    2016-11-06 07:35:00
41944    20910    807    2016-11-06 15:36:00    2016-11-06 15:36:00
41945    20910    746    2016-11-06 15:17:00    2016-11-06 15:17:00
41946    20910    954    2016-11-06 14:57:00    2016-11-06 14:57:00
41947    20910    834    2016-11-06 03:45:00    2016-11-06 03:45:00
41948    20911    733    2016-11-06 07:25:00    2016-11-06 07:25:00
41949    20911    589    2016-11-06 22:47:00    2016-11-06 22:47:00
41950    20911    617    2016-11-06 13:52:00    2016-11-06 13:52:00
41951    20911    615    2016-11-06 22:19:00    2016-11-06 22:19:00
41952    20911    724    2016-11-06 12:36:00    2016-11-06 12:36:00
41953    20912    512    2016-11-06 07:33:00    2016-11-06 07:33:00
41954    20912    719    2016-11-06 13:30:00    2016-11-06 13:30:00
41955    20912    672    2016-11-06 02:47:00    2016-11-06 02:47:00
41956    20912    721    2016-11-06 01:40:00    2016-11-06 01:40:00
41957    20912    820    2016-11-06 19:59:00    2016-11-06 19:59:00
41958    20913    666    2016-11-06 20:48:00    2016-11-06 20:48:00
41959    20913    575    2016-11-06 10:06:00    2016-11-06 10:06:00
41960    20913    673    2016-11-06 11:10:00    2016-11-06 11:10:00
41961    20913    792    2016-11-06 11:33:00    2016-11-06 11:33:00
41962    20913    935    2016-11-06 01:11:00    2016-11-06 01:11:00
41963    20914    718    2016-11-06 14:38:00    2016-11-06 14:38:00
41964    20914    843    2016-11-06 14:15:00    2016-11-06 14:15:00
41965    20914    892    2016-11-06 05:05:00    2016-11-06 05:05:00
41966    20914    500    2016-11-06 05:29:00    2016-11-06 05:29:00
41967    20914    719    2016-11-06 10:41:00    2016-11-06 10:41:00
41968    20915    897    2016-11-06 07:59:00    2016-11-06 07:59:00
41969    20915    916    2016-11-06 07:03:00    2016-11-06 07:03:00
41970    20915    775    2016-11-06 03:05:00    2016-11-06 03:05:00
41971    20915    794    2016-11-06 04:50:00    2016-11-06 04:50:00
41972    20915    672    2016-11-06 23:13:00    2016-11-06 23:13:00
41973    20916    624    2016-11-06 08:31:00    2016-11-06 08:31:00
41974    20916    467    2016-11-06 18:19:00    2016-11-06 18:19:00
41975    20916    841    2016-11-06 15:17:00    2016-11-06 15:17:00
41976    20916    529    2016-11-06 15:33:00    2016-11-06 15:33:00
41977    20916    675    2016-11-06 03:42:00    2016-11-06 03:42:00
41978    20917    639    2016-11-06 15:00:00    2016-11-06 15:00:00
41979    20917    653    2016-11-06 04:48:00    2016-11-06 04:48:00
41980    20917    606    2016-11-06 08:36:00    2016-11-06 08:36:00
41981    20917    488    2016-11-06 12:13:00    2016-11-06 12:13:00
41982    20917    911    2016-11-06 09:44:00    2016-11-06 09:44:00
41983    20918    772    2016-11-06 01:27:00    2016-11-06 01:27:00
41984    20918    739    2016-11-06 08:16:00    2016-11-06 08:16:00
41985    20918    814    2016-11-06 04:37:00    2016-11-06 04:37:00
41986    20918    555    2016-11-06 05:00:00    2016-11-06 05:00:00
41987    20918    737    2016-11-06 23:26:00    2016-11-06 23:26:00
41988    20919    613    2016-11-06 16:50:00    2016-11-06 16:50:00
41989    20919    694    2016-11-06 08:50:00    2016-11-06 08:50:00
41990    20919    522    2016-11-06 04:09:00    2016-11-06 04:09:00
41991    20919    549    2016-11-06 01:02:00    2016-11-06 01:02:00
41992    20919    534    2016-11-06 19:50:00    2016-11-06 19:50:00
41993    20920    785    2016-11-06 04:04:00    2016-11-06 04:04:00
41994    20920    527    2016-11-06 13:25:00    2016-11-06 13:25:00
41995    20920    961    2016-11-06 20:44:00    2016-11-06 20:44:00
41996    20920    602    2016-11-06 20:46:00    2016-11-06 20:46:00
41997    20920    600    2016-11-06 16:45:00    2016-11-06 16:45:00
41998    20921    635    2016-11-06 02:53:00    2016-11-06 02:53:00
41999    20921    483    2016-11-06 13:30:00    2016-11-06 13:30:00
42000    20921    483    2016-11-06 05:15:00    2016-11-06 05:15:00
42001    20921    845    2016-11-06 14:06:00    2016-11-06 14:06:00
42002    20921    526    2016-11-06 07:26:00    2016-11-06 07:26:00
42003    20922    661    2016-11-06 20:03:00    2016-11-06 20:03:00
42004    20922    556    2016-11-06 07:33:00    2016-11-06 07:33:00
42005    20922    946    2016-11-06 11:10:00    2016-11-06 11:10:00
42006    20922    677    2016-11-06 18:21:00    2016-11-06 18:21:00
42007    20922    587    2016-11-06 06:45:00    2016-11-06 06:45:00
42008    20923    840    2016-11-06 04:27:00    2016-11-06 04:27:00
42009    20923    676    2016-11-06 21:46:00    2016-11-06 21:46:00
42010    20923    859    2016-11-06 20:16:00    2016-11-06 20:16:00
42011    20923    779    2016-11-06 19:26:00    2016-11-06 19:26:00
42012    20923    624    2016-11-06 18:17:00    2016-11-06 18:17:00
42013    20924    580    2016-11-06 12:27:00    2016-11-06 12:27:00
42014    20924    812    2016-11-06 04:55:00    2016-11-06 04:55:00
42015    20924    878    2016-11-06 07:45:00    2016-11-06 07:45:00
42016    20924    475    2016-11-06 14:13:00    2016-11-06 14:13:00
42017    20924    536    2016-11-06 12:21:00    2016-11-06 12:21:00
42018    20925    831    2016-11-06 17:10:00    2016-11-06 17:10:00
42019    20925    553    2016-11-06 20:20:00    2016-11-06 20:20:00
42020    20925    892    2016-11-06 04:03:00    2016-11-06 04:03:00
42021    20925    512    2016-11-06 05:43:00    2016-11-06 05:43:00
42022    20925    921    2016-11-06 04:02:00    2016-11-06 04:02:00
42023    20926    802    2016-11-06 12:54:00    2016-11-06 12:54:00
42024    20926    720    2016-11-06 15:15:00    2016-11-06 15:15:00
42025    20926    728    2016-11-06 18:31:00    2016-11-06 18:31:00
42026    20926    477    2016-11-06 16:41:00    2016-11-06 16:41:00
42027    20926    520    2016-11-06 17:12:00    2016-11-06 17:12:00
42028    20927    856    2016-11-06 16:13:00    2016-11-06 16:13:00
42029    20927    752    2016-11-06 10:36:00    2016-11-06 10:36:00
42030    20927    837    2016-11-06 11:50:00    2016-11-06 11:50:00
42031    20927    583    2016-11-06 08:00:00    2016-11-06 08:00:00
42032    20927    629    2016-11-06 17:07:00    2016-11-06 17:07:00
42033    20928    826    2016-11-06 10:20:00    2016-11-06 10:20:00
42034    20928    671    2016-11-06 07:50:00    2016-11-06 07:50:00
42035    20928    772    2016-11-06 04:33:00    2016-11-06 04:33:00
42036    20928    888    2016-11-06 06:43:00    2016-11-06 06:43:00
42037    20928    746    2016-11-06 13:37:00    2016-11-06 13:37:00
42038    20929    844    2016-11-06 14:43:00    2016-11-06 14:43:00
42039    20929    616    2016-11-06 17:55:00    2016-11-06 17:55:00
42040    20929    836    2016-11-06 02:44:00    2016-11-06 02:44:00
42041    20929    671    2016-11-06 14:06:00    2016-11-06 14:06:00
42042    20929    893    2016-11-06 21:56:00    2016-11-06 21:56:00
42043    20930    833    2016-11-06 17:41:00    2016-11-06 17:41:00
42044    20930    828    2016-11-06 07:44:00    2016-11-06 07:44:00
42045    20930    903    2016-11-06 16:44:00    2016-11-06 16:44:00
42046    20930    580    2016-11-06 08:26:00    2016-11-06 08:26:00
42047    20930    862    2016-11-06 16:31:00    2016-11-06 16:31:00
42048    20931    528    2016-11-06 20:49:00    2016-11-06 20:49:00
42049    20931    806    2016-11-06 22:08:00    2016-11-06 22:08:00
42050    20931    899    2016-11-06 17:14:00    2016-11-06 17:14:00
42051    20931    885    2016-11-06 10:57:00    2016-11-06 10:57:00
42052    20931    833    2016-11-06 17:14:00    2016-11-06 17:14:00
42053    20932    926    2016-11-06 13:15:00    2016-11-06 13:15:00
42054    20932    690    2016-11-06 20:51:00    2016-11-06 20:51:00
42055    20932    887    2016-11-06 06:26:00    2016-11-06 06:26:00
42056    20932    629    2016-11-06 15:20:00    2016-11-06 15:20:00
42057    20932    829    2016-11-06 19:36:00    2016-11-06 19:36:00
42058    20933    682    2016-11-06 11:18:00    2016-11-06 11:18:00
42059    20933    903    2016-11-06 20:29:00    2016-11-06 20:29:00
42060    20933    939    2016-11-06 19:04:00    2016-11-06 19:04:00
42061    20933    859    2016-11-06 09:31:00    2016-11-06 09:31:00
42062    20933    691    2016-11-06 10:41:00    2016-11-06 10:41:00
42063    20934    741    2016-11-06 14:53:00    2016-11-06 14:53:00
42064    20934    593    2016-11-06 21:59:00    2016-11-06 21:59:00
42065    20934    500    2016-11-06 08:53:00    2016-11-06 08:53:00
42066    20934    563    2016-11-06 01:00:00    2016-11-06 01:00:00
42067    20934    946    2016-11-06 15:13:00    2016-11-06 15:13:00
42068    20935    715    2016-11-06 15:26:00    2016-11-06 15:26:00
42069    20935    817    2016-11-06 06:45:00    2016-11-06 06:45:00
42070    20935    680    2016-11-06 22:18:00    2016-11-06 22:18:00
42071    20935    840    2016-11-06 17:29:00    2016-11-06 17:29:00
42072    20935    573    2016-11-06 06:54:00    2016-11-06 06:54:00
42073    20936    936    2016-11-06 06:40:00    2016-11-06 06:40:00
42074    20936    734    2016-11-06 20:16:00    2016-11-06 20:16:00
42075    20936    524    2016-11-06 06:50:00    2016-11-06 06:50:00
42076    20936    863    2016-11-06 09:15:00    2016-11-06 09:15:00
42077    20936    858    2016-11-06 23:46:00    2016-11-06 23:46:00
42078    20937    690    2016-11-06 22:42:00    2016-11-06 22:42:00
42079    20937    633    2016-11-06 16:38:00    2016-11-06 16:38:00
42080    20937    586    2016-11-06 14:44:00    2016-11-06 14:44:00
42081    20937    465    2016-11-06 11:27:00    2016-11-06 11:27:00
42082    20937    768    2016-11-06 05:03:00    2016-11-06 05:03:00
42083    20938    912    2016-11-06 01:52:00    2016-11-06 01:52:00
42084    20938    713    2016-11-06 20:22:00    2016-11-06 20:22:00
42085    20938    716    2016-11-06 21:12:00    2016-11-06 21:12:00
42086    20938    887    2016-11-06 07:43:00    2016-11-06 07:43:00
42087    20938    570    2016-11-06 09:13:00    2016-11-06 09:13:00
42088    20939    542    2016-11-06 06:38:00    2016-11-06 06:38:00
42089    20939    504    2016-11-06 14:09:00    2016-11-06 14:09:00
42090    20939    809    2016-11-06 15:25:00    2016-11-06 15:25:00
42091    20939    705    2016-11-06 19:39:00    2016-11-06 19:39:00
42092    20939    518    2016-11-06 01:26:00    2016-11-06 01:26:00
42093    20940    630    2016-11-06 09:47:00    2016-11-06 09:47:00
42094    20940    509    2016-11-06 01:07:00    2016-11-06 01:07:00
42095    20940    604    2016-11-06 20:51:00    2016-11-06 20:51:00
42096    20940    564    2016-11-06 23:57:00    2016-11-06 23:57:00
42097    20940    841    2016-11-06 23:46:00    2016-11-06 23:46:00
42098    20941    668    2016-11-06 17:04:00    2016-11-06 17:04:00
42099    20941    752    2016-11-06 12:03:00    2016-11-06 12:03:00
42100    20941    678    2016-11-06 22:56:00    2016-11-06 22:56:00
42101    20941    887    2016-11-06 02:40:00    2016-11-06 02:40:00
42102    20941    932    2016-11-06 14:30:00    2016-11-06 14:30:00
42103    20942    706    2016-11-06 06:52:00    2016-11-06 06:52:00
42104    20942    661    2016-11-06 12:29:00    2016-11-06 12:29:00
42105    20942    708    2016-11-06 18:33:00    2016-11-06 18:33:00
42106    20942    545    2016-11-06 11:28:00    2016-11-06 11:28:00
42107    20942    756    2016-11-06 13:53:00    2016-11-06 13:53:00
42108    20943    879    2016-11-06 18:02:00    2016-11-06 18:02:00
42109    20943    939    2016-11-06 13:37:00    2016-11-06 13:37:00
42110    20943    830    2016-11-06 17:16:00    2016-11-06 17:16:00
42111    20943    848    2016-11-06 08:26:00    2016-11-06 08:26:00
42112    20943    736    2016-11-06 02:08:00    2016-11-06 02:08:00
42113    20944    960    2016-11-06 19:47:00    2016-11-06 19:47:00
42114    20944    624    2016-11-06 07:08:00    2016-11-06 07:08:00
42115    20944    524    2016-11-06 03:59:00    2016-11-06 03:59:00
42116    20944    770    2016-11-06 05:50:00    2016-11-06 05:50:00
42117    20944    846    2016-11-06 13:36:00    2016-11-06 13:36:00
42118    20945    534    2016-11-06 13:06:00    2016-11-06 13:06:00
42119    20945    583    2016-11-06 11:48:00    2016-11-06 11:48:00
42120    20945    834    2016-11-06 18:31:00    2016-11-06 18:31:00
42121    20945    848    2016-11-06 13:15:00    2016-11-06 13:15:00
42122    20945    503    2016-11-06 07:38:00    2016-11-06 07:38:00
42123    20946    928    2016-11-06 22:38:00    2016-11-06 22:38:00
42124    20946    759    2016-11-06 08:26:00    2016-11-06 08:26:00
42125    20946    512    2016-11-06 12:23:00    2016-11-06 12:23:00
42126    20946    788    2016-11-06 18:40:00    2016-11-06 18:40:00
42127    20946    672    2016-11-06 10:03:00    2016-11-06 10:03:00
42128    20947    793    2016-11-06 03:43:00    2016-11-06 03:43:00
42129    20947    764    2016-11-06 02:10:00    2016-11-06 02:10:00
42130    20947    868    2016-11-06 08:34:00    2016-11-06 08:34:00
42131    20947    536    2016-11-06 03:17:00    2016-11-06 03:17:00
42132    20947    635    2016-11-06 23:03:00    2016-11-06 23:03:00
42133    20948    873    2016-11-06 15:06:00    2016-11-06 15:06:00
42134    20948    524    2016-11-06 21:08:00    2016-11-06 21:08:00
42135    20948    576    2016-11-06 19:58:00    2016-11-06 19:58:00
42136    20948    875    2016-11-06 03:46:00    2016-11-06 03:46:00
42137    20948    793    2016-11-06 20:35:00    2016-11-06 20:35:00
42138    20949    742    2016-11-06 13:57:00    2016-11-06 13:57:00
42139    20949    885    2016-11-06 01:19:00    2016-11-06 01:19:00
42140    20949    812    2016-11-06 07:14:00    2016-11-06 07:14:00
42141    20949    652    2016-11-06 13:09:00    2016-11-06 13:09:00
42142    20949    632    2016-11-06 07:38:00    2016-11-06 07:38:00
42143    20950    706    2016-11-06 22:53:00    2016-11-06 22:53:00
42144    20950    932    2016-11-06 12:29:00    2016-11-06 12:29:00
42145    20950    873    2016-11-06 13:55:00    2016-11-06 13:55:00
42146    20950    908    2016-11-06 02:26:00    2016-11-06 02:26:00
42147    20950    722    2016-11-06 23:17:00    2016-11-06 23:17:00
42148    20951    772    2016-11-06 05:24:00    2016-11-06 05:24:00
42149    20951    935    2016-11-06 23:16:00    2016-11-06 23:16:00
42150    20951    850    2016-11-06 20:56:00    2016-11-06 20:56:00
42151    20951    870    2016-11-06 13:49:00    2016-11-06 13:49:00
42152    20951    636    2016-11-06 09:09:00    2016-11-06 09:09:00
42153    20952    478    2016-11-06 06:49:00    2016-11-06 06:49:00
42154    20952    494    2016-11-06 11:29:00    2016-11-06 11:29:00
42155    20952    627    2016-11-06 17:37:00    2016-11-06 17:37:00
42156    20952    562    2016-11-06 13:19:00    2016-11-06 13:19:00
42157    20952    678    2016-11-06 15:14:00    2016-11-06 15:14:00
42158    20953    763    2016-11-06 23:19:00    2016-11-06 23:19:00
42159    20953    897    2016-11-06 02:13:00    2016-11-06 02:13:00
42160    20953    735    2016-11-06 09:52:00    2016-11-06 09:52:00
42161    20953    957    2016-11-06 02:08:00    2016-11-06 02:08:00
42162    20953    807    2016-11-06 18:37:00    2016-11-06 18:37:00
42163    20954    862    2016-11-06 14:01:00    2016-11-06 14:01:00
42164    20954    799    2016-11-06 15:46:00    2016-11-06 15:46:00
42165    20954    736    2016-11-06 01:04:00    2016-11-06 01:04:00
42166    20954    691    2016-11-06 01:36:00    2016-11-06 01:36:00
42167    20954    771    2016-11-06 11:33:00    2016-11-06 11:33:00
42168    20955    761    2016-11-06 09:08:00    2016-11-06 09:08:00
42169    20955    614    2016-11-06 23:55:00    2016-11-06 23:55:00
42170    20955    900    2016-11-06 20:46:00    2016-11-06 20:46:00
42171    20955    471    2016-11-06 11:04:00    2016-11-06 11:04:00
42172    20955    535    2016-11-06 09:39:00    2016-11-06 09:39:00
42173    20956    543    2016-11-06 06:15:00    2016-11-06 06:15:00
42174    20956    519    2016-11-06 19:00:00    2016-11-06 19:00:00
42175    20956    850    2016-11-06 18:43:00    2016-11-06 18:43:00
42176    20956    578    2016-11-06 23:23:00    2016-11-06 23:23:00
42177    20956    830    2016-11-06 22:51:00    2016-11-06 22:51:00
42178    20957    908    2016-11-06 03:23:00    2016-11-06 03:23:00
42179    20957    683    2016-11-06 11:59:00    2016-11-06 11:59:00
42180    20957    839    2016-11-06 07:48:00    2016-11-06 07:48:00
42181    20957    878    2016-11-06 10:57:00    2016-11-06 10:57:00
42182    20957    891    2016-11-06 19:47:00    2016-11-06 19:47:00
42183    20958    701    2016-11-06 15:55:00    2016-11-06 15:55:00
42184    20958    571    2016-11-06 10:51:00    2016-11-06 10:51:00
42185    20958    907    2016-11-06 11:03:00    2016-11-06 11:03:00
42186    20958    919    2016-11-06 09:47:00    2016-11-06 09:47:00
42187    20958    704    2016-11-06 19:08:00    2016-11-06 19:08:00
42188    20959    662    2016-11-06 03:56:00    2016-11-06 03:56:00
42189    20959    525    2016-11-06 02:59:00    2016-11-06 02:59:00
42190    20959    846    2016-11-06 04:35:00    2016-11-06 04:35:00
42191    20959    477    2016-11-06 17:47:00    2016-11-06 17:47:00
42192    20959    817    2016-11-06 17:56:00    2016-11-06 17:56:00
42193    20960    843    2016-11-06 05:24:00    2016-11-06 05:24:00
42194    20960    653    2016-11-06 07:37:00    2016-11-06 07:37:00
42195    20960    729    2016-11-06 13:05:00    2016-11-06 13:05:00
42196    20960    722    2016-11-06 02:29:00    2016-11-06 02:29:00
42197    20960    912    2016-11-06 23:02:00    2016-11-06 23:02:00
42198    20961    485    2016-11-06 04:36:00    2016-11-06 04:36:00
42199    20961    524    2016-11-06 14:35:00    2016-11-06 14:35:00
42200    20961    855    2016-11-06 18:59:00    2016-11-06 18:59:00
42201    20961    901    2016-11-06 06:28:00    2016-11-06 06:28:00
42202    20961    841    2016-11-06 12:10:00    2016-11-06 12:10:00
42203    20962    712    2016-11-06 16:18:00    2016-11-06 16:18:00
42204    20962    902    2016-11-06 04:18:00    2016-11-06 04:18:00
42205    20962    487    2016-11-06 03:17:00    2016-11-06 03:17:00
42206    20962    587    2016-11-06 01:53:00    2016-11-06 01:53:00
42207    20962    605    2016-11-06 18:51:00    2016-11-06 18:51:00
42208    20963    698    2016-11-06 20:13:00    2016-11-06 20:13:00
42209    20963    598    2016-11-06 20:26:00    2016-11-06 20:26:00
42210    20963    701    2016-11-06 20:33:00    2016-11-06 20:33:00
42211    20963    587    2016-11-06 16:39:00    2016-11-06 16:39:00
42212    20963    914    2016-11-06 03:27:00    2016-11-06 03:27:00
42213    20964    692    2016-11-06 23:21:00    2016-11-06 23:21:00
42214    20964    933    2016-11-06 12:00:00    2016-11-06 12:00:00
42215    20964    514    2016-11-06 16:31:00    2016-11-06 16:31:00
42216    20964    656    2016-11-06 15:36:00    2016-11-06 15:36:00
42217    20964    736    2016-11-06 11:35:00    2016-11-06 11:35:00
42218    20965    541    2016-11-06 11:23:00    2016-11-06 11:23:00
42219    20965    574    2016-11-06 20:59:00    2016-11-06 20:59:00
42220    20965    476    2016-11-06 04:50:00    2016-11-06 04:50:00
42221    20965    694    2016-11-06 23:06:00    2016-11-06 23:06:00
42222    20965    819    2016-11-06 13:42:00    2016-11-06 13:42:00
42223    20966    944    2016-11-06 16:36:00    2016-11-06 16:36:00
42224    20966    887    2016-11-06 07:49:00    2016-11-06 07:49:00
42225    20966    934    2016-11-06 14:24:00    2016-11-06 14:24:00
42226    20966    577    2016-11-06 17:16:00    2016-11-06 17:16:00
42227    20966    911    2016-11-06 18:59:00    2016-11-06 18:59:00
42228    20967    682    2016-11-06 12:37:00    2016-11-06 12:37:00
42229    20967    646    2016-11-06 12:23:00    2016-11-06 12:23:00
42230    20967    670    2016-11-06 16:05:00    2016-11-06 16:05:00
42231    20967    960    2016-11-06 02:45:00    2016-11-06 02:45:00
42232    20967    604    2016-11-06 06:53:00    2016-11-06 06:53:00
42233    20968    708    2016-11-07 01:08:00    2016-11-07 01:08:00
42234    20968    477    2016-11-07 10:52:00    2016-11-07 10:52:00
42235    20968    463    2016-11-07 14:49:00    2016-11-07 14:49:00
42236    20968    846    2016-11-07 21:48:00    2016-11-07 21:48:00
42237    20968    476    2016-11-07 18:06:00    2016-11-07 18:06:00
42238    20969    659    2016-11-07 09:01:00    2016-11-07 09:01:00
42239    20969    747    2016-11-07 20:26:00    2016-11-07 20:26:00
42240    20969    522    2016-11-07 09:24:00    2016-11-07 09:24:00
42241    20969    867    2016-11-07 19:25:00    2016-11-07 19:25:00
42242    20969    642    2016-11-07 06:35:00    2016-11-07 06:35:00
42243    20970    512    2016-11-07 14:18:00    2016-11-07 14:18:00
42244    20970    556    2016-11-07 22:36:00    2016-11-07 22:36:00
42245    20970    809    2016-11-07 14:20:00    2016-11-07 14:20:00
42246    20970    936    2016-11-07 21:14:00    2016-11-07 21:14:00
42247    20970    686    2016-11-07 07:48:00    2016-11-07 07:48:00
42248    20971    695    2016-11-07 11:02:00    2016-11-07 11:02:00
42249    20971    877    2016-11-07 22:40:00    2016-11-07 22:40:00
42250    20971    478    2016-11-07 22:03:00    2016-11-07 22:03:00
42251    20971    544    2016-11-07 18:35:00    2016-11-07 18:35:00
42252    20971    786    2016-11-07 14:14:00    2016-11-07 14:14:00
42253    20972    733    2016-11-07 22:20:00    2016-11-07 22:20:00
42254    20972    592    2016-11-07 20:29:00    2016-11-07 20:29:00
42255    20972    890    2016-11-07 14:02:00    2016-11-07 14:02:00
42256    20972    658    2016-11-07 20:07:00    2016-11-07 20:07:00
42257    20972    738    2016-11-07 18:44:00    2016-11-07 18:44:00
42258    20973    722    2016-11-07 19:56:00    2016-11-07 19:56:00
42259    20973    652    2016-11-07 23:32:00    2016-11-07 23:32:00
42260    20973    641    2016-11-07 20:47:00    2016-11-07 20:47:00
42261    20973    785    2016-11-07 22:16:00    2016-11-07 22:16:00
42262    20973    757    2016-11-07 13:58:00    2016-11-07 13:58:00
42263    20974    823    2016-11-07 16:53:00    2016-11-07 16:53:00
42264    20974    806    2016-11-07 01:00:00    2016-11-07 01:00:00
42265    20974    781    2016-11-07 15:42:00    2016-11-07 15:42:00
42266    20974    715    2016-11-07 16:30:00    2016-11-07 16:30:00
42267    20974    469    2016-11-07 09:54:00    2016-11-07 09:54:00
42268    20975    829    2016-11-07 21:21:00    2016-11-07 21:21:00
42269    20975    629    2016-11-07 15:28:00    2016-11-07 15:28:00
42270    20975    871    2016-11-07 04:15:00    2016-11-07 04:15:00
42271    20975    563    2016-11-07 12:15:00    2016-11-07 12:15:00
42272    20975    798    2016-11-07 05:38:00    2016-11-07 05:38:00
42273    20976    596    2016-11-07 13:03:00    2016-11-07 13:03:00
42274    20976    641    2016-11-07 14:13:00    2016-11-07 14:13:00
42275    20976    702    2016-11-07 23:17:00    2016-11-07 23:17:00
42276    20976    867    2016-11-07 11:00:00    2016-11-07 11:00:00
42277    20976    787    2016-11-07 23:08:00    2016-11-07 23:08:00
42278    20977    471    2016-11-07 01:51:00    2016-11-07 01:51:00
42279    20977    624    2016-11-07 23:02:00    2016-11-07 23:02:00
42280    20977    640    2016-11-07 06:09:00    2016-11-07 06:09:00
42281    20977    926    2016-11-07 22:24:00    2016-11-07 22:24:00
42282    20977    910    2016-11-07 02:43:00    2016-11-07 02:43:00
42283    20978    628    2016-11-07 13:19:00    2016-11-07 13:19:00
42284    20978    478    2016-11-07 19:46:00    2016-11-07 19:46:00
42285    20978    509    2016-11-07 13:25:00    2016-11-07 13:25:00
42286    20978    529    2016-11-07 05:13:00    2016-11-07 05:13:00
42287    20978    606    2016-11-07 22:14:00    2016-11-07 22:14:00
42288    20979    782    2016-11-07 22:32:00    2016-11-07 22:32:00
42289    20979    877    2016-11-07 18:45:00    2016-11-07 18:45:00
42290    20979    842    2016-11-07 11:40:00    2016-11-07 11:40:00
42291    20979    737    2016-11-07 09:41:00    2016-11-07 09:41:00
42292    20979    889    2016-11-07 23:33:00    2016-11-07 23:33:00
42293    20980    706    2016-11-07 22:50:00    2016-11-07 22:50:00
42294    20980    741    2016-11-07 12:54:00    2016-11-07 12:54:00
42295    20980    745    2016-11-07 12:46:00    2016-11-07 12:46:00
42296    20980    958    2016-11-07 02:33:00    2016-11-07 02:33:00
42297    20980    605    2016-11-07 07:18:00    2016-11-07 07:18:00
42298    20981    936    2016-11-07 11:27:00    2016-11-07 11:27:00
42299    20981    666    2016-11-07 16:03:00    2016-11-07 16:03:00
42300    20981    518    2016-11-07 08:28:00    2016-11-07 08:28:00
42301    20981    650    2016-11-07 05:26:00    2016-11-07 05:26:00
42302    20981    521    2016-11-07 05:40:00    2016-11-07 05:40:00
42303    20982    673    2016-11-07 10:44:00    2016-11-07 10:44:00
42304    20982    751    2016-11-07 07:31:00    2016-11-07 07:31:00
42305    20982    788    2016-11-07 12:58:00    2016-11-07 12:58:00
42306    20982    834    2016-11-07 18:31:00    2016-11-07 18:31:00
42307    20982    672    2016-11-07 04:20:00    2016-11-07 04:20:00
42308    20983    895    2016-11-07 11:48:00    2016-11-07 11:48:00
42309    20983    586    2016-11-07 10:02:00    2016-11-07 10:02:00
42310    20983    806    2016-11-07 22:08:00    2016-11-07 22:08:00
42311    20983    677    2016-11-07 18:12:00    2016-11-07 18:12:00
42312    20983    726    2016-11-07 23:39:00    2016-11-07 23:39:00
42313    20984    504    2016-11-07 08:32:00    2016-11-07 08:32:00
42314    20984    615    2016-11-07 08:46:00    2016-11-07 08:46:00
42315    20984    934    2016-11-07 17:07:00    2016-11-07 17:07:00
42316    20984    798    2016-11-07 04:38:00    2016-11-07 04:38:00
42317    20984    840    2016-11-07 11:36:00    2016-11-07 11:36:00
42318    20985    694    2016-11-07 02:45:00    2016-11-07 02:45:00
42319    20985    643    2016-11-07 22:28:00    2016-11-07 22:28:00
42320    20985    761    2016-11-07 15:16:00    2016-11-07 15:16:00
42321    20985    520    2016-11-07 23:54:00    2016-11-07 23:54:00
42322    20985    736    2016-11-07 14:30:00    2016-11-07 14:30:00
42323    20986    575    2016-11-07 19:59:00    2016-11-07 19:59:00
42324    20986    658    2016-11-07 02:11:00    2016-11-07 02:11:00
42325    20986    705    2016-11-07 23:28:00    2016-11-07 23:28:00
42326    20986    623    2016-11-07 01:22:00    2016-11-07 01:22:00
42327    20986    652    2016-11-07 22:59:00    2016-11-07 22:59:00
42328    20987    802    2016-11-07 13:28:00    2016-11-07 13:28:00
42329    20987    932    2016-11-07 23:33:00    2016-11-07 23:33:00
42330    20987    514    2016-11-07 20:22:00    2016-11-07 20:22:00
42331    20987    496    2016-11-07 11:44:00    2016-11-07 11:44:00
42332    20987    779    2016-11-07 15:50:00    2016-11-07 15:50:00
42333    20988    585    2016-11-07 15:23:00    2016-11-07 15:23:00
42334    20988    738    2016-11-07 17:16:00    2016-11-07 17:16:00
42335    20988    912    2016-11-07 03:00:00    2016-11-07 03:00:00
42336    20988    470    2016-11-07 01:23:00    2016-11-07 01:23:00
42337    20988    882    2016-11-07 23:24:00    2016-11-07 23:24:00
42338    20989    603    2016-11-07 17:52:00    2016-11-07 17:52:00
42339    20989    631    2016-11-07 23:10:00    2016-11-07 23:10:00
42340    20989    797    2016-11-07 15:48:00    2016-11-07 15:48:00
42341    20989    782    2016-11-07 04:53:00    2016-11-07 04:53:00
42342    20989    867    2016-11-07 19:28:00    2016-11-07 19:28:00
42343    20990    946    2016-11-07 09:36:00    2016-11-07 09:36:00
42344    20990    873    2016-11-07 23:58:00    2016-11-07 23:58:00
42345    20990    714    2016-11-07 22:35:00    2016-11-07 22:35:00
42346    20990    641    2016-11-07 13:06:00    2016-11-07 13:06:00
42347    20990    701    2016-11-07 06:33:00    2016-11-07 06:33:00
42348    20991    573    2016-11-07 14:41:00    2016-11-07 14:41:00
42349    20991    676    2016-11-07 13:58:00    2016-11-07 13:58:00
42350    20991    652    2016-11-07 05:37:00    2016-11-07 05:37:00
42351    20991    470    2016-11-07 01:27:00    2016-11-07 01:27:00
42352    20991    849    2016-11-07 22:28:00    2016-11-07 22:28:00
42353    20992    588    2016-11-07 15:28:00    2016-11-07 15:28:00
42354    20992    668    2016-11-07 13:06:00    2016-11-07 13:06:00
42355    20992    644    2016-11-07 17:37:00    2016-11-07 17:37:00
42356    20992    650    2016-11-07 19:31:00    2016-11-07 19:31:00
42357    20992    615    2016-11-07 09:38:00    2016-11-07 09:38:00
42358    20993    819    2016-11-07 19:59:00    2016-11-07 19:59:00
42359    20993    657    2016-11-07 17:39:00    2016-11-07 17:39:00
42360    20993    639    2016-11-07 15:36:00    2016-11-07 15:36:00
42361    20993    531    2016-11-07 01:41:00    2016-11-07 01:41:00
42362    20993    788    2016-11-07 19:40:00    2016-11-07 19:40:00
42363    20994    472    2016-11-07 03:59:00    2016-11-07 03:59:00
42364    20994    672    2016-11-07 15:08:00    2016-11-07 15:08:00
42365    20994    653    2016-11-07 11:55:00    2016-11-07 11:55:00
42366    20994    824    2016-11-07 04:59:00    2016-11-07 04:59:00
42367    20994    642    2016-11-07 13:55:00    2016-11-07 13:55:00
42368    20995    593    2016-11-07 23:30:00    2016-11-07 23:30:00
42369    20995    906    2016-11-07 14:11:00    2016-11-07 14:11:00
42370    20995    580    2016-11-07 19:18:00    2016-11-07 19:18:00
42371    20995    688    2016-11-07 04:55:00    2016-11-07 04:55:00
42372    20995    541    2016-11-07 09:38:00    2016-11-07 09:38:00
42373    20996    887    2016-11-07 22:30:00    2016-11-07 22:30:00
42374    20996    930    2016-11-07 05:30:00    2016-11-07 05:30:00
42375    20996    749    2016-11-07 06:31:00    2016-11-07 06:31:00
42376    20996    891    2016-11-07 10:52:00    2016-11-07 10:52:00
42377    20996    694    2016-11-07 19:19:00    2016-11-07 19:19:00
42378    20997    530    2016-11-07 06:30:00    2016-11-07 06:30:00
42379    20997    901    2016-11-07 14:33:00    2016-11-07 14:33:00
42380    20997    720    2016-11-07 08:43:00    2016-11-07 08:43:00
42381    20997    866    2016-11-07 15:52:00    2016-11-07 15:52:00
42382    20997    508    2016-11-07 12:43:00    2016-11-07 12:43:00
42383    20998    463    2016-11-07 13:28:00    2016-11-07 13:28:00
42384    20998    709    2016-11-07 14:33:00    2016-11-07 14:33:00
42385    20998    755    2016-11-07 03:59:00    2016-11-07 03:59:00
42386    20998    635    2016-11-07 01:16:00    2016-11-07 01:16:00
42387    20998    682    2016-11-07 05:30:00    2016-11-07 05:30:00
42388    20999    736    2016-11-07 18:57:00    2016-11-07 18:57:00
42389    20999    860    2016-11-07 05:26:00    2016-11-07 05:26:00
42390    20999    887    2016-11-07 06:10:00    2016-11-07 06:10:00
42391    20999    486    2016-11-07 03:54:00    2016-11-07 03:54:00
42392    20999    739    2016-11-07 20:39:00    2016-11-07 20:39:00
42393    21000    771    2016-11-07 06:47:00    2016-11-07 06:47:00
42394    21000    836    2016-11-07 16:09:00    2016-11-07 16:09:00
42395    21000    954    2016-11-07 15:41:00    2016-11-07 15:41:00
42396    21000    896    2016-11-07 12:54:00    2016-11-07 12:54:00
42397    21000    591    2016-11-07 18:54:00    2016-11-07 18:54:00
42398    21001    868    2016-11-07 02:42:00    2016-11-07 02:42:00
42399    21001    603    2016-11-07 10:28:00    2016-11-07 10:28:00
42400    21001    636    2016-11-07 08:42:00    2016-11-07 08:42:00
42401    21001    768    2016-11-07 17:39:00    2016-11-07 17:39:00
42402    21001    527    2016-11-07 17:26:00    2016-11-07 17:26:00
42403    21002    765    2016-11-07 18:28:00    2016-11-07 18:28:00
42404    21002    577    2016-11-07 08:56:00    2016-11-07 08:56:00
42405    21002    906    2016-11-07 17:55:00    2016-11-07 17:55:00
42406    21002    531    2016-11-07 15:33:00    2016-11-07 15:33:00
42407    21002    548    2016-11-07 08:02:00    2016-11-07 08:02:00
42408    21003    795    2016-11-07 18:55:00    2016-11-07 18:55:00
42409    21003    810    2016-11-07 22:53:00    2016-11-07 22:53:00
42410    21003    553    2016-11-07 19:54:00    2016-11-07 19:54:00
42411    21003    822    2016-11-07 15:51:00    2016-11-07 15:51:00
42412    21003    609    2016-11-07 16:35:00    2016-11-07 16:35:00
42413    21004    614    2016-11-08 01:08:00    2016-11-08 01:08:00
42414    21004    821    2016-11-08 05:25:00    2016-11-08 05:25:00
42415    21004    785    2016-11-08 07:06:00    2016-11-08 07:06:00
42416    21004    609    2016-11-08 01:45:00    2016-11-08 01:45:00
42417    21004    647    2016-11-08 22:40:00    2016-11-08 22:40:00
42418    21005    829    2016-11-08 18:24:00    2016-11-08 18:24:00
42419    21005    497    2016-11-08 14:27:00    2016-11-08 14:27:00
42420    21005    741    2016-11-08 03:13:00    2016-11-08 03:13:00
42421    21005    816    2016-11-08 01:16:00    2016-11-08 01:16:00
42422    21005    605    2016-11-08 15:53:00    2016-11-08 15:53:00
42423    21006    491    2016-11-08 07:33:00    2016-11-08 07:33:00
42424    21006    790    2016-11-08 11:01:00    2016-11-08 11:01:00
42425    21006    696    2016-11-08 15:05:00    2016-11-08 15:05:00
42426    21006    904    2016-11-08 02:00:00    2016-11-08 02:00:00
42427    21006    898    2016-11-08 16:53:00    2016-11-08 16:53:00
42428    21007    898    2016-11-08 11:05:00    2016-11-08 11:05:00
42429    21007    900    2016-11-08 15:11:00    2016-11-08 15:11:00
42430    21007    897    2016-11-08 16:46:00    2016-11-08 16:46:00
42431    21007    617    2016-11-08 15:42:00    2016-11-08 15:42:00
42432    21007    829    2016-11-08 07:34:00    2016-11-08 07:34:00
42433    21008    924    2016-11-08 13:29:00    2016-11-08 13:29:00
42434    21008    746    2016-11-08 20:41:00    2016-11-08 20:41:00
42435    21008    773    2016-11-08 04:26:00    2016-11-08 04:26:00
42436    21008    565    2016-11-08 12:45:00    2016-11-08 12:45:00
42437    21008    787    2016-11-08 19:03:00    2016-11-08 19:03:00
42438    21009    651    2016-11-08 02:35:00    2016-11-08 02:35:00
42439    21009    774    2016-11-08 11:05:00    2016-11-08 11:05:00
42440    21009    746    2016-11-08 18:15:00    2016-11-08 18:15:00
42441    21009    557    2016-11-08 01:01:00    2016-11-08 01:01:00
42442    21009    833    2016-11-08 05:33:00    2016-11-08 05:33:00
42443    21010    652    2016-11-08 11:13:00    2016-11-08 11:13:00
42444    21010    798    2016-11-08 23:27:00    2016-11-08 23:27:00
42445    21010    834    2016-11-08 13:05:00    2016-11-08 13:05:00
42446    21010    716    2016-11-08 02:03:00    2016-11-08 02:03:00
42447    21010    816    2016-11-08 07:06:00    2016-11-08 07:06:00
42448    21011    715    2016-11-08 11:24:00    2016-11-08 11:24:00
42449    21011    853    2016-11-08 13:21:00    2016-11-08 13:21:00
42450    21011    518    2016-11-08 18:23:00    2016-11-08 18:23:00
42451    21011    725    2016-11-08 20:46:00    2016-11-08 20:46:00
42452    21011    597    2016-11-08 16:39:00    2016-11-08 16:39:00
42453    21012    563    2016-11-08 14:17:00    2016-11-08 14:17:00
42454    21012    733    2016-11-08 06:32:00    2016-11-08 06:32:00
42455    21012    931    2016-11-08 06:26:00    2016-11-08 06:26:00
42456    21012    654    2016-11-08 07:24:00    2016-11-08 07:24:00
42457    21012    903    2016-11-08 04:52:00    2016-11-08 04:52:00
42458    21013    940    2016-11-08 05:12:00    2016-11-08 05:12:00
42459    21013    702    2016-11-08 05:33:00    2016-11-08 05:33:00
42460    21013    885    2016-11-08 07:43:00    2016-11-08 07:43:00
42461    21013    669    2016-11-08 15:30:00    2016-11-08 15:30:00
42462    21013    663    2016-11-08 20:20:00    2016-11-08 20:20:00
42463    21014    704    2016-11-08 02:47:00    2016-11-08 02:47:00
42464    21014    757    2016-11-08 04:07:00    2016-11-08 04:07:00
42465    21014    827    2016-11-08 05:07:00    2016-11-08 05:07:00
42466    21014    836    2016-11-08 13:58:00    2016-11-08 13:58:00
42467    21014    614    2016-11-08 20:09:00    2016-11-08 20:09:00
42468    21015    670    2016-11-08 12:01:00    2016-11-08 12:01:00
42469    21015    937    2016-11-08 07:01:00    2016-11-08 07:01:00
42470    21015    894    2016-11-08 18:59:00    2016-11-08 18:59:00
42471    21015    911    2016-11-08 18:28:00    2016-11-08 18:28:00
42472    21015    757    2016-11-08 12:55:00    2016-11-08 12:55:00
42473    21016    524    2016-11-08 01:54:00    2016-11-08 01:54:00
42474    21016    930    2016-11-08 20:39:00    2016-11-08 20:39:00
42475    21016    671    2016-11-08 08:38:00    2016-11-08 08:38:00
42476    21016    538    2016-11-08 07:23:00    2016-11-08 07:23:00
42477    21016    845    2016-11-08 08:10:00    2016-11-08 08:10:00
42478    21017    671    2016-11-08 17:39:00    2016-11-08 17:39:00
42479    21017    504    2016-11-08 14:51:00    2016-11-08 14:51:00
42480    21017    693    2016-11-08 09:25:00    2016-11-08 09:25:00
42481    21017    765    2016-11-08 07:30:00    2016-11-08 07:30:00
42482    21017    470    2016-11-08 18:16:00    2016-11-08 18:16:00
42483    21018    852    2016-11-08 11:29:00    2016-11-08 11:29:00
42484    21018    850    2016-11-08 10:05:00    2016-11-08 10:05:00
42485    21018    570    2016-11-08 09:03:00    2016-11-08 09:03:00
42486    21018    771    2016-11-08 15:03:00    2016-11-08 15:03:00
42487    21018    727    2016-11-08 14:20:00    2016-11-08 14:20:00
42488    21019    683    2016-11-08 06:39:00    2016-11-08 06:39:00
42489    21019    547    2016-11-08 11:49:00    2016-11-08 11:49:00
42490    21019    520    2016-11-08 13:42:00    2016-11-08 13:42:00
42491    21019    771    2016-11-08 16:12:00    2016-11-08 16:12:00
42492    21019    587    2016-11-08 14:44:00    2016-11-08 14:44:00
42493    21020    829    2016-11-08 02:09:00    2016-11-08 02:09:00
42494    21020    522    2016-11-08 17:04:00    2016-11-08 17:04:00
42495    21020    668    2016-11-08 09:15:00    2016-11-08 09:15:00
42496    21020    906    2016-11-08 20:57:00    2016-11-08 20:57:00
42497    21020    530    2016-11-08 05:21:00    2016-11-08 05:21:00
42498    21021    935    2016-11-08 11:02:00    2016-11-08 11:02:00
42499    21021    744    2016-11-08 23:46:00    2016-11-08 23:46:00
42500    21021    699    2016-11-08 01:18:00    2016-11-08 01:18:00
42501    21021    735    2016-11-08 03:52:00    2016-11-08 03:52:00
42502    21021    539    2016-11-08 16:20:00    2016-11-08 16:20:00
42503    21022    500    2016-11-08 06:53:00    2016-11-08 06:53:00
42504    21022    943    2016-11-08 13:39:00    2016-11-08 13:39:00
42505    21022    650    2016-11-08 05:03:00    2016-11-08 05:03:00
42506    21022    522    2016-11-08 17:57:00    2016-11-08 17:57:00
42507    21022    643    2016-11-08 05:06:00    2016-11-08 05:06:00
42508    21023    621    2016-11-08 07:38:00    2016-11-08 07:38:00
42509    21023    834    2016-11-08 05:34:00    2016-11-08 05:34:00
42510    21023    855    2016-11-08 15:39:00    2016-11-08 15:39:00
42511    21023    849    2016-11-08 14:28:00    2016-11-08 14:28:00
42512    21023    820    2016-11-08 19:56:00    2016-11-08 19:56:00
42513    21024    798    2016-11-08 12:08:00    2016-11-08 12:08:00
42514    21024    817    2016-11-08 19:36:00    2016-11-08 19:36:00
42515    21024    752    2016-11-08 15:39:00    2016-11-08 15:39:00
42516    21024    484    2016-11-08 21:50:00    2016-11-08 21:50:00
42517    21024    723    2016-11-08 09:11:00    2016-11-08 09:11:00
42518    21025    923    2016-11-08 20:25:00    2016-11-08 20:25:00
42519    21025    518    2016-11-08 06:20:00    2016-11-08 06:20:00
42520    21025    909    2016-11-08 16:20:00    2016-11-08 16:20:00
42521    21025    674    2016-11-08 04:00:00    2016-11-08 04:00:00
42522    21025    925    2016-11-08 22:00:00    2016-11-08 22:00:00
42523    21026    723    2016-11-08 22:48:00    2016-11-08 22:48:00
42524    21026    956    2016-11-08 08:16:00    2016-11-08 08:16:00
42525    21026    901    2016-11-08 06:06:00    2016-11-08 06:06:00
42526    21026    849    2016-11-08 09:22:00    2016-11-08 09:22:00
42527    21026    822    2016-11-08 13:27:00    2016-11-08 13:27:00
42528    21027    833    2016-11-08 06:04:00    2016-11-08 06:04:00
42529    21027    882    2016-11-08 23:01:00    2016-11-08 23:01:00
42530    21027    815    2016-11-08 04:49:00    2016-11-08 04:49:00
42531    21027    653    2016-11-08 03:35:00    2016-11-08 03:35:00
42532    21027    702    2016-11-08 13:05:00    2016-11-08 13:05:00
42533    21028    663    2016-11-08 07:56:00    2016-11-08 07:56:00
42534    21028    802    2016-11-08 20:16:00    2016-11-08 20:16:00
42535    21028    857    2016-11-08 08:49:00    2016-11-08 08:49:00
42536    21028    605    2016-11-08 05:49:00    2016-11-08 05:49:00
42537    21028    502    2016-11-08 21:43:00    2016-11-08 21:43:00
42538    21029    931    2016-11-08 22:36:00    2016-11-08 22:36:00
42539    21029    886    2016-11-08 14:37:00    2016-11-08 14:37:00
42540    21029    577    2016-11-08 14:29:00    2016-11-08 14:29:00
42541    21029    929    2016-11-08 22:29:00    2016-11-08 22:29:00
42542    21029    463    2016-11-08 13:57:00    2016-11-08 13:57:00
42543    21030    699    2016-11-08 11:00:00    2016-11-08 11:00:00
42544    21030    706    2016-11-08 17:43:00    2016-11-08 17:43:00
42545    21030    523    2016-11-08 18:42:00    2016-11-08 18:42:00
42546    21030    941    2016-11-08 01:34:00    2016-11-08 01:34:00
42547    21030    535    2016-11-08 05:39:00    2016-11-08 05:39:00
42548    21031    750    2016-11-08 12:01:00    2016-11-08 12:01:00
42549    21031    674    2016-11-08 14:55:00    2016-11-08 14:55:00
42550    21031    476    2016-11-08 16:44:00    2016-11-08 16:44:00
42551    21031    488    2016-11-08 03:07:00    2016-11-08 03:07:00
42552    21031    579    2016-11-08 18:08:00    2016-11-08 18:08:00
42553    21032    560    2016-11-08 14:49:00    2016-11-08 14:49:00
42554    21032    743    2016-11-08 04:45:00    2016-11-08 04:45:00
42555    21032    639    2016-11-08 23:55:00    2016-11-08 23:55:00
42556    21032    783    2016-11-08 11:48:00    2016-11-08 11:48:00
42557    21032    733    2016-11-08 04:43:00    2016-11-08 04:43:00
42558    21033    794    2016-11-08 21:06:00    2016-11-08 21:06:00
42559    21033    775    2016-11-08 23:15:00    2016-11-08 23:15:00
42560    21033    778    2016-11-08 14:29:00    2016-11-08 14:29:00
42561    21033    687    2016-11-08 02:58:00    2016-11-08 02:58:00
42562    21033    497    2016-11-08 02:12:00    2016-11-08 02:12:00
42563    21034    578    2016-11-08 03:44:00    2016-11-08 03:44:00
42564    21034    856    2016-11-08 23:30:00    2016-11-08 23:30:00
42565    21034    776    2016-11-08 15:54:00    2016-11-08 15:54:00
42566    21034    495    2016-11-08 07:38:00    2016-11-08 07:38:00
42567    21034    670    2016-11-08 23:33:00    2016-11-08 23:33:00
42568    21035    802    2016-11-08 06:51:00    2016-11-08 06:51:00
42569    21035    637    2016-11-08 08:04:00    2016-11-08 08:04:00
42570    21035    623    2016-11-08 08:15:00    2016-11-08 08:15:00
42571    21035    635    2016-11-08 11:19:00    2016-11-08 11:19:00
42572    21035    757    2016-11-08 22:41:00    2016-11-08 22:41:00
42573    21036    827    2016-11-08 05:38:00    2016-11-08 05:38:00
42574    21036    825    2016-11-08 20:35:00    2016-11-08 20:35:00
42575    21036    894    2016-11-08 17:35:00    2016-11-08 17:35:00
42576    21036    538    2016-11-08 01:30:00    2016-11-08 01:30:00
42577    21036    894    2016-11-08 15:40:00    2016-11-08 15:40:00
42578    21037    954    2016-11-08 23:16:00    2016-11-08 23:16:00
42579    21037    874    2016-11-08 11:27:00    2016-11-08 11:27:00
42580    21037    884    2016-11-08 16:17:00    2016-11-08 16:17:00
42581    21037    705    2016-11-08 16:52:00    2016-11-08 16:52:00
42582    21037    806    2016-11-08 15:40:00    2016-11-08 15:40:00
42583    21038    508    2016-11-08 13:31:00    2016-11-08 13:31:00
42584    21038    755    2016-11-08 17:05:00    2016-11-08 17:05:00
42585    21038    789    2016-11-08 13:23:00    2016-11-08 13:23:00
42586    21038    689    2016-11-08 17:04:00    2016-11-08 17:04:00
42587    21038    933    2016-11-08 15:13:00    2016-11-08 15:13:00
42588    21039    694    2016-11-08 14:02:00    2016-11-08 14:02:00
42589    21039    690    2016-11-08 05:14:00    2016-11-08 05:14:00
42590    21039    490    2016-11-08 17:50:00    2016-11-08 17:50:00
42591    21039    629    2016-11-08 22:36:00    2016-11-08 22:36:00
42592    21039    842    2016-11-08 15:55:00    2016-11-08 15:55:00
42593    21040    811    2016-11-08 19:03:00    2016-11-08 19:03:00
42594    21040    495    2016-11-08 09:47:00    2016-11-08 09:47:00
42595    21040    864    2016-11-08 01:08:00    2016-11-08 01:08:00
42596    21040    789    2016-11-08 21:18:00    2016-11-08 21:18:00
42597    21040    520    2016-11-08 11:54:00    2016-11-08 11:54:00
42598    21041    614    2016-11-08 07:21:00    2016-11-08 07:21:00
42599    21041    947    2016-11-08 17:10:00    2016-11-08 17:10:00
42600    21041    470    2016-11-08 08:38:00    2016-11-08 08:38:00
42601    21041    729    2016-11-08 20:53:00    2016-11-08 20:53:00
42602    21041    660    2016-11-08 02:13:00    2016-11-08 02:13:00
42603    21042    785    2016-11-08 01:13:00    2016-11-08 01:13:00
42604    21042    532    2016-11-08 09:00:00    2016-11-08 09:00:00
42605    21042    794    2016-11-08 06:48:00    2016-11-08 06:48:00
42606    21042    537    2016-11-08 18:47:00    2016-11-08 18:47:00
42607    21042    698    2016-11-08 19:38:00    2016-11-08 19:38:00
42608    21043    876    2016-11-08 22:18:00    2016-11-08 22:18:00
42609    21043    592    2016-11-08 08:56:00    2016-11-08 08:56:00
42610    21043    900    2016-11-08 15:23:00    2016-11-08 15:23:00
42611    21043    955    2016-11-08 09:45:00    2016-11-08 09:45:00
42612    21043    499    2016-11-08 21:19:00    2016-11-08 21:19:00
42613    21044    869    2016-11-08 15:05:00    2016-11-08 15:05:00
42614    21044    938    2016-11-08 21:54:00    2016-11-08 21:54:00
42615    21044    544    2016-11-08 13:57:00    2016-11-08 13:57:00
42616    21044    624    2016-11-08 14:45:00    2016-11-08 14:45:00
42617    21044    859    2016-11-08 04:36:00    2016-11-08 04:36:00
42618    21045    709    2016-11-09 05:37:00    2016-11-09 05:37:00
42619    21045    931    2016-11-09 13:53:00    2016-11-09 13:53:00
42620    21045    696    2016-11-09 14:52:00    2016-11-09 14:52:00
42621    21045    721    2016-11-09 17:58:00    2016-11-09 17:58:00
42622    21045    808    2016-11-09 08:31:00    2016-11-09 08:31:00
42623    21046    605    2016-11-09 04:53:00    2016-11-09 04:53:00
42624    21046    480    2016-11-09 04:34:00    2016-11-09 04:34:00
42625    21046    887    2016-11-09 03:53:00    2016-11-09 03:53:00
42626    21046    745    2016-11-09 05:28:00    2016-11-09 05:28:00
42627    21046    642    2016-11-09 23:46:00    2016-11-09 23:46:00
42628    21047    876    2016-11-09 18:51:00    2016-11-09 18:51:00
42629    21047    864    2016-11-09 14:31:00    2016-11-09 14:31:00
42630    21047    641    2016-11-09 12:40:00    2016-11-09 12:40:00
42631    21047    815    2016-11-09 16:59:00    2016-11-09 16:59:00
42632    21047    942    2016-11-09 09:20:00    2016-11-09 09:20:00
42633    21048    810    2016-11-09 22:00:00    2016-11-09 22:00:00
42634    21048    959    2016-11-09 03:19:00    2016-11-09 03:19:00
42635    21048    488    2016-11-09 17:54:00    2016-11-09 17:54:00
42636    21048    738    2016-11-09 07:19:00    2016-11-09 07:19:00
42637    21048    481    2016-11-09 13:12:00    2016-11-09 13:12:00
42638    21049    640    2016-11-09 04:43:00    2016-11-09 04:43:00
42639    21049    888    2016-11-09 13:13:00    2016-11-09 13:13:00
42640    21049    702    2016-11-09 01:56:00    2016-11-09 01:56:00
42641    21049    515    2016-11-09 05:59:00    2016-11-09 05:59:00
42642    21049    783    2016-11-09 16:19:00    2016-11-09 16:19:00
42643    21050    561    2016-11-09 22:23:00    2016-11-09 22:23:00
42644    21050    881    2016-11-09 08:57:00    2016-11-09 08:57:00
42645    21050    836    2016-11-09 20:09:00    2016-11-09 20:09:00
42646    21050    820    2016-11-09 07:16:00    2016-11-09 07:16:00
42647    21050    848    2016-11-09 04:22:00    2016-11-09 04:22:00
42648    21051    518    2016-11-09 11:10:00    2016-11-09 11:10:00
42649    21051    875    2016-11-09 08:18:00    2016-11-09 08:18:00
42650    21051    624    2016-11-09 11:45:00    2016-11-09 11:45:00
42651    21051    951    2016-11-09 15:32:00    2016-11-09 15:32:00
42652    21051    874    2016-11-09 02:58:00    2016-11-09 02:58:00
42653    21052    832    2016-11-09 15:10:00    2016-11-09 15:10:00
42654    21052    585    2016-11-09 22:13:00    2016-11-09 22:13:00
42655    21052    890    2016-11-09 12:28:00    2016-11-09 12:28:00
42656    21052    871    2016-11-09 07:13:00    2016-11-09 07:13:00
42657    21052    550    2016-11-09 16:36:00    2016-11-09 16:36:00
42658    21053    940    2016-11-09 10:19:00    2016-11-09 10:19:00
42659    21053    798    2016-11-09 19:17:00    2016-11-09 19:17:00
42660    21053    715    2016-11-09 16:58:00    2016-11-09 16:58:00
42661    21053    880    2016-11-09 16:51:00    2016-11-09 16:51:00
42662    21053    562    2016-11-09 14:38:00    2016-11-09 14:38:00
42663    21054    710    2016-11-09 23:00:00    2016-11-09 23:00:00
42664    21054    950    2016-11-09 16:22:00    2016-11-09 16:22:00
42665    21054    824    2016-11-09 19:14:00    2016-11-09 19:14:00
42666    21054    580    2016-11-09 02:08:00    2016-11-09 02:08:00
42667    21054    827    2016-11-09 01:51:00    2016-11-09 01:51:00
42668    21055    857    2016-11-09 14:14:00    2016-11-09 14:14:00
42669    21055    829    2016-11-09 17:43:00    2016-11-09 17:43:00
42670    21055    484    2016-11-09 06:33:00    2016-11-09 06:33:00
42671    21055    898    2016-11-09 22:23:00    2016-11-09 22:23:00
42672    21055    589    2016-11-09 17:11:00    2016-11-09 17:11:00
42673    21056    815    2016-11-09 03:53:00    2016-11-09 03:53:00
42674    21056    695    2016-11-09 01:51:00    2016-11-09 01:51:00
42675    21056    929    2016-11-09 05:48:00    2016-11-09 05:48:00
42676    21056    859    2016-11-09 16:23:00    2016-11-09 16:23:00
42677    21056    778    2016-11-09 09:18:00    2016-11-09 09:18:00
42678    21057    925    2016-11-09 14:12:00    2016-11-09 14:12:00
42679    21057    560    2016-11-09 13:42:00    2016-11-09 13:42:00
42680    21057    960    2016-11-09 17:38:00    2016-11-09 17:38:00
42681    21057    944    2016-11-09 06:02:00    2016-11-09 06:02:00
42682    21057    471    2016-11-09 13:12:00    2016-11-09 13:12:00
42683    21058    757    2016-11-09 08:00:00    2016-11-09 08:00:00
42684    21058    712    2016-11-09 10:37:00    2016-11-09 10:37:00
42685    21058    691    2016-11-09 22:57:00    2016-11-09 22:57:00
42686    21058    509    2016-11-09 02:00:00    2016-11-09 02:00:00
42687    21058    626    2016-11-09 21:19:00    2016-11-09 21:19:00
42688    21059    870    2016-11-09 06:03:00    2016-11-09 06:03:00
42689    21059    752    2016-11-09 20:00:00    2016-11-09 20:00:00
42690    21059    859    2016-11-09 18:00:00    2016-11-09 18:00:00
42691    21059    798    2016-11-09 10:45:00    2016-11-09 10:45:00
42692    21059    653    2016-11-09 23:05:00    2016-11-09 23:05:00
42693    21060    651    2016-11-09 14:04:00    2016-11-09 14:04:00
42694    21060    614    2016-11-09 23:19:00    2016-11-09 23:19:00
42695    21060    872    2016-11-09 09:05:00    2016-11-09 09:05:00
42696    21060    639    2016-11-09 20:08:00    2016-11-09 20:08:00
42697    21060    842    2016-11-09 13:40:00    2016-11-09 13:40:00
42698    21061    808    2016-11-09 19:38:00    2016-11-09 19:38:00
42699    21061    960    2016-11-09 21:33:00    2016-11-09 21:33:00
42700    21061    496    2016-11-09 18:15:00    2016-11-09 18:15:00
42701    21061    703    2016-11-09 01:53:00    2016-11-09 01:53:00
42702    21061    719    2016-11-09 16:13:00    2016-11-09 16:13:00
42703    21062    504    2016-11-09 21:36:00    2016-11-09 21:36:00
42704    21062    832    2016-11-09 07:07:00    2016-11-09 07:07:00
42705    21062    556    2016-11-09 02:41:00    2016-11-09 02:41:00
42706    21062    555    2016-11-09 06:31:00    2016-11-09 06:31:00
42707    21062    921    2016-11-09 08:54:00    2016-11-09 08:54:00
42708    21063    783    2016-11-09 02:30:00    2016-11-09 02:30:00
42709    21063    667    2016-11-09 04:31:00    2016-11-09 04:31:00
42710    21063    643    2016-11-09 07:52:00    2016-11-09 07:52:00
42711    21063    494    2016-11-09 09:42:00    2016-11-09 09:42:00
42712    21063    782    2016-11-09 20:39:00    2016-11-09 20:39:00
42713    21064    543    2016-11-09 06:08:00    2016-11-09 06:08:00
42714    21064    824    2016-11-09 11:57:00    2016-11-09 11:57:00
42715    21064    601    2016-11-09 20:37:00    2016-11-09 20:37:00
42716    21064    539    2016-11-09 16:45:00    2016-11-09 16:45:00
42717    21064    520    2016-11-09 16:45:00    2016-11-09 16:45:00
42718    21065    854    2016-11-09 11:04:00    2016-11-09 11:04:00
42719    21065    949    2016-11-09 08:54:00    2016-11-09 08:54:00
42720    21065    472    2016-11-09 22:45:00    2016-11-09 22:45:00
42721    21065    798    2016-11-09 07:07:00    2016-11-09 07:07:00
42722    21065    500    2016-11-09 17:28:00    2016-11-09 17:28:00
42723    21066    686    2016-11-09 21:22:00    2016-11-09 21:22:00
42724    21066    945    2016-11-09 07:02:00    2016-11-09 07:02:00
42725    21066    920    2016-11-09 22:10:00    2016-11-09 22:10:00
42726    21066    795    2016-11-09 04:42:00    2016-11-09 04:42:00
42727    21066    638    2016-11-09 02:26:00    2016-11-09 02:26:00
42728    21067    744    2016-11-09 09:38:00    2016-11-09 09:38:00
42729    21067    516    2016-11-09 01:20:00    2016-11-09 01:20:00
42730    21067    888    2016-11-09 22:18:00    2016-11-09 22:18:00
42731    21067    782    2016-11-09 05:30:00    2016-11-09 05:30:00
42732    21067    518    2016-11-09 09:36:00    2016-11-09 09:36:00
42733    21068    871    2016-11-09 15:33:00    2016-11-09 15:33:00
42734    21068    629    2016-11-09 02:00:00    2016-11-09 02:00:00
42735    21068    833    2016-11-09 08:08:00    2016-11-09 08:08:00
42736    21068    868    2016-11-09 10:29:00    2016-11-09 10:29:00
42737    21068    885    2016-11-09 10:36:00    2016-11-09 10:36:00
42738    21069    496    2016-11-09 14:59:00    2016-11-09 14:59:00
42739    21069    909    2016-11-09 06:06:00    2016-11-09 06:06:00
42740    21069    617    2016-11-09 10:06:00    2016-11-09 10:06:00
42741    21069    942    2016-11-09 02:11:00    2016-11-09 02:11:00
42742    21069    932    2016-11-09 09:21:00    2016-11-09 09:21:00
42743    21070    554    2016-11-09 04:48:00    2016-11-09 04:48:00
42744    21070    726    2016-11-09 18:01:00    2016-11-09 18:01:00
42745    21070    704    2016-11-09 21:04:00    2016-11-09 21:04:00
42746    21070    822    2016-11-09 09:05:00    2016-11-09 09:05:00
42747    21070    645    2016-11-09 15:52:00    2016-11-09 15:52:00
42748    21071    687    2016-11-09 08:38:00    2016-11-09 08:38:00
42749    21071    872    2016-11-09 14:28:00    2016-11-09 14:28:00
42750    21071    653    2016-11-09 08:46:00    2016-11-09 08:46:00
42751    21071    566    2016-11-09 14:49:00    2016-11-09 14:49:00
42752    21071    918    2016-11-09 21:43:00    2016-11-09 21:43:00
42753    21072    875    2016-11-10 05:18:00    2016-11-10 05:18:00
42754    21072    747    2016-11-10 13:55:00    2016-11-10 13:55:00
42755    21072    760    2016-11-10 19:19:00    2016-11-10 19:19:00
42756    21072    733    2016-11-10 09:50:00    2016-11-10 09:50:00
42757    21072    521    2016-11-10 03:27:00    2016-11-10 03:27:00
42758    21073    466    2016-11-10 17:57:00    2016-11-10 17:57:00
42759    21073    849    2016-11-10 15:44:00    2016-11-10 15:44:00
42760    21073    528    2016-11-10 02:03:00    2016-11-10 02:03:00
42761    21073    910    2016-11-10 14:17:00    2016-11-10 14:17:00
42762    21073    637    2016-11-10 04:42:00    2016-11-10 04:42:00
42763    21074    854    2016-11-10 21:59:00    2016-11-10 21:59:00
42764    21074    852    2016-11-10 03:41:00    2016-11-10 03:41:00
42765    21074    922    2016-11-10 14:40:00    2016-11-10 14:40:00
42766    21074    482    2016-11-10 01:38:00    2016-11-10 01:38:00
42767    21074    638    2016-11-10 14:50:00    2016-11-10 14:50:00
42768    21075    547    2016-11-10 14:34:00    2016-11-10 14:34:00
42769    21075    856    2016-11-10 06:40:00    2016-11-10 06:40:00
42770    21075    910    2016-11-10 12:14:00    2016-11-10 12:14:00
42771    21075    642    2016-11-10 18:26:00    2016-11-10 18:26:00
42772    21075    948    2016-11-10 06:14:00    2016-11-10 06:14:00
42773    21076    927    2016-11-10 08:45:00    2016-11-10 08:45:00
42774    21076    568    2016-11-10 20:56:00    2016-11-10 20:56:00
42775    21076    555    2016-11-10 13:40:00    2016-11-10 13:40:00
42776    21076    927    2016-11-10 08:06:00    2016-11-10 08:06:00
42777    21076    657    2016-11-10 16:00:00    2016-11-10 16:00:00
42778    21077    487    2016-11-10 13:14:00    2016-11-10 13:14:00
42779    21077    763    2016-11-10 13:18:00    2016-11-10 13:18:00
42780    21077    531    2016-11-10 18:50:00    2016-11-10 18:50:00
42781    21077    845    2016-11-10 23:14:00    2016-11-10 23:14:00
42782    21077    682    2016-11-10 17:27:00    2016-11-10 17:27:00
42783    21078    781    2016-11-10 12:44:00    2016-11-10 12:44:00
42784    21078    808    2016-11-10 22:17:00    2016-11-10 22:17:00
42785    21078    596    2016-11-10 15:06:00    2016-11-10 15:06:00
42786    21078    476    2016-11-10 18:56:00    2016-11-10 18:56:00
42787    21078    873    2016-11-10 08:21:00    2016-11-10 08:21:00
42788    21079    702    2016-11-10 03:31:00    2016-11-10 03:31:00
42789    21079    881    2016-11-10 08:43:00    2016-11-10 08:43:00
42790    21079    522    2016-11-10 02:57:00    2016-11-10 02:57:00
42791    21079    689    2016-11-10 07:58:00    2016-11-10 07:58:00
42792    21079    669    2016-11-10 06:28:00    2016-11-10 06:28:00
42793    21080    523    2016-11-10 06:24:00    2016-11-10 06:24:00
42794    21080    896    2016-11-10 09:19:00    2016-11-10 09:19:00
42795    21080    646    2016-11-10 06:19:00    2016-11-10 06:19:00
42796    21080    793    2016-11-10 01:40:00    2016-11-10 01:40:00
42797    21080    631    2016-11-10 09:13:00    2016-11-10 09:13:00
42798    21081    569    2016-11-10 13:58:00    2016-11-10 13:58:00
42799    21081    782    2016-11-10 06:15:00    2016-11-10 06:15:00
42800    21081    665    2016-11-10 04:35:00    2016-11-10 04:35:00
42801    21081    743    2016-11-10 05:07:00    2016-11-10 05:07:00
42802    21081    563    2016-11-10 15:20:00    2016-11-10 15:20:00
42803    21082    917    2016-11-10 07:01:00    2016-11-10 07:01:00
42804    21082    840    2016-11-10 01:23:00    2016-11-10 01:23:00
42805    21082    709    2016-11-10 08:57:00    2016-11-10 08:57:00
42806    21082    508    2016-11-10 11:38:00    2016-11-10 11:38:00
42807    21082    907    2016-11-10 09:22:00    2016-11-10 09:22:00
42808    21083    789    2016-11-10 12:21:00    2016-11-10 12:21:00
42809    21083    566    2016-11-10 02:55:00    2016-11-10 02:55:00
42810    21083    558    2016-11-10 08:41:00    2016-11-10 08:41:00
42811    21083    766    2016-11-10 16:20:00    2016-11-10 16:20:00
42812    21083    540    2016-11-10 11:23:00    2016-11-10 11:23:00
42813    21084    818    2016-11-10 10:35:00    2016-11-10 10:35:00
42814    21084    887    2016-11-10 02:23:00    2016-11-10 02:23:00
42815    21084    715    2016-11-10 15:14:00    2016-11-10 15:14:00
42816    21084    809    2016-11-10 03:56:00    2016-11-10 03:56:00
42817    21084    664    2016-11-10 10:02:00    2016-11-10 10:02:00
42818    21085    848    2016-11-10 12:31:00    2016-11-10 12:31:00
42819    21085    930    2016-11-10 18:26:00    2016-11-10 18:26:00
42820    21085    695    2016-11-10 23:26:00    2016-11-10 23:26:00
42821    21085    627    2016-11-10 19:39:00    2016-11-10 19:39:00
42822    21085    738    2016-11-10 11:32:00    2016-11-10 11:32:00
42823    21086    725    2016-11-10 18:48:00    2016-11-10 18:48:00
42824    21086    574    2016-11-10 01:22:00    2016-11-10 01:22:00
42825    21086    923    2016-11-10 08:08:00    2016-11-10 08:08:00
42826    21086    493    2016-11-10 19:25:00    2016-11-10 19:25:00
42827    21086    544    2016-11-10 17:51:00    2016-11-10 17:51:00
42828    21087    587    2016-11-10 20:17:00    2016-11-10 20:17:00
42829    21087    575    2016-11-10 14:36:00    2016-11-10 14:36:00
42830    21087    853    2016-11-10 16:43:00    2016-11-10 16:43:00
42831    21087    917    2016-11-10 18:47:00    2016-11-10 18:47:00
42832    21087    530    2016-11-10 22:00:00    2016-11-10 22:00:00
42833    21088    735    2016-11-10 08:42:00    2016-11-10 08:42:00
42834    21088    799    2016-11-10 05:09:00    2016-11-10 05:09:00
42835    21088    683    2016-11-10 04:18:00    2016-11-10 04:18:00
42836    21088    651    2016-11-10 01:32:00    2016-11-10 01:32:00
42837    21088    813    2016-11-10 17:15:00    2016-11-10 17:15:00
42838    21089    646    2016-11-10 21:29:00    2016-11-10 21:29:00
42839    21089    959    2016-11-10 06:23:00    2016-11-10 06:23:00
42840    21089    568    2016-11-10 13:00:00    2016-11-10 13:00:00
42841    21089    961    2016-11-10 22:00:00    2016-11-10 22:00:00
42842    21089    757    2016-11-10 02:39:00    2016-11-10 02:39:00
42843    21090    896    2016-11-10 09:52:00    2016-11-10 09:52:00
42844    21090    753    2016-11-10 10:55:00    2016-11-10 10:55:00
42845    21090    896    2016-11-10 07:54:00    2016-11-10 07:54:00
42846    21090    642    2016-11-10 06:44:00    2016-11-10 06:44:00
42847    21090    535    2016-11-10 01:10:00    2016-11-10 01:10:00
42848    21091    595    2016-11-10 11:22:00    2016-11-10 11:22:00
42849    21091    495    2016-11-10 04:54:00    2016-11-10 04:54:00
42850    21091    521    2016-11-10 22:14:00    2016-11-10 22:14:00
42851    21091    482    2016-11-10 13:16:00    2016-11-10 13:16:00
42852    21091    666    2016-11-10 09:57:00    2016-11-10 09:57:00
42853    21092    573    2016-11-11 14:55:00    2016-11-11 14:55:00
42854    21092    510    2016-11-11 19:54:00    2016-11-11 19:54:00
42855    21092    831    2016-11-11 17:20:00    2016-11-11 17:20:00
42856    21092    882    2016-11-11 14:24:00    2016-11-11 14:24:00
42857    21092    868    2016-11-11 14:02:00    2016-11-11 14:02:00
42858    21093    565    2016-11-11 17:01:00    2016-11-11 17:01:00
42859    21093    881    2016-11-11 23:35:00    2016-11-11 23:35:00
42860    21093    493    2016-11-11 17:27:00    2016-11-11 17:27:00
42861    21093    589    2016-11-11 10:01:00    2016-11-11 10:01:00
42862    21093    734    2016-11-11 21:27:00    2016-11-11 21:27:00
42863    21094    801    2016-11-11 18:48:00    2016-11-11 18:48:00
42864    21094    527    2016-11-11 09:51:00    2016-11-11 09:51:00
42865    21094    747    2016-11-11 01:50:00    2016-11-11 01:50:00
42866    21094    543    2016-11-11 23:43:00    2016-11-11 23:43:00
42867    21094    595    2016-11-11 12:35:00    2016-11-11 12:35:00
42868    21095    743    2016-11-11 15:42:00    2016-11-11 15:42:00
42869    21095    634    2016-11-11 01:49:00    2016-11-11 01:49:00
42870    21095    524    2016-11-11 06:46:00    2016-11-11 06:46:00
42871    21095    904    2016-11-11 22:33:00    2016-11-11 22:33:00
42872    21095    943    2016-11-11 12:24:00    2016-11-11 12:24:00
42873    21096    465    2016-11-11 02:13:00    2016-11-11 02:13:00
42874    21096    590    2016-11-11 14:33:00    2016-11-11 14:33:00
42875    21096    539    2016-11-11 09:48:00    2016-11-11 09:48:00
42876    21096    682    2016-11-11 04:09:00    2016-11-11 04:09:00
42877    21096    651    2016-11-11 17:56:00    2016-11-11 17:56:00
42878    21097    852    2016-11-11 02:49:00    2016-11-11 02:49:00
42879    21097    870    2016-11-11 17:22:00    2016-11-11 17:22:00
42880    21097    849    2016-11-11 21:07:00    2016-11-11 21:07:00
42881    21097    730    2016-11-11 12:13:00    2016-11-11 12:13:00
42882    21097    692    2016-11-11 11:04:00    2016-11-11 11:04:00
42883    21098    694    2016-11-11 05:54:00    2016-11-11 05:54:00
42884    21098    743    2016-11-11 15:39:00    2016-11-11 15:39:00
42885    21098    609    2016-11-11 22:27:00    2016-11-11 22:27:00
42886    21098    694    2016-11-11 22:18:00    2016-11-11 22:18:00
42887    21098    838    2016-11-11 10:23:00    2016-11-11 10:23:00
42888    21099    891    2016-11-11 05:57:00    2016-11-11 05:57:00
42889    21099    770    2016-11-11 10:10:00    2016-11-11 10:10:00
42890    21099    530    2016-11-11 21:21:00    2016-11-11 21:21:00
42891    21099    469    2016-11-11 21:19:00    2016-11-11 21:19:00
42892    21099    752    2016-11-11 17:21:00    2016-11-11 17:21:00
42893    21100    766    2016-11-11 08:15:00    2016-11-11 08:15:00
42894    21100    921    2016-11-11 02:11:00    2016-11-11 02:11:00
42895    21100    574    2016-11-11 19:47:00    2016-11-11 19:47:00
42896    21100    847    2016-11-11 04:32:00    2016-11-11 04:32:00
42897    21100    826    2016-11-11 18:02:00    2016-11-11 18:02:00
42898    21101    634    2016-11-11 15:01:00    2016-11-11 15:01:00
42899    21101    899    2016-11-11 18:22:00    2016-11-11 18:22:00
42900    21101    679    2016-11-11 13:41:00    2016-11-11 13:41:00
42901    21101    662    2016-11-11 18:52:00    2016-11-11 18:52:00
42902    21101    468    2016-11-11 10:04:00    2016-11-11 10:04:00
42903    21102    626    2016-11-11 13:22:00    2016-11-11 13:22:00
42904    21102    613    2016-11-11 15:30:00    2016-11-11 15:30:00
42905    21102    560    2016-11-11 17:36:00    2016-11-11 17:36:00
42906    21102    845    2016-11-11 19:40:00    2016-11-11 19:40:00
42907    21102    519    2016-11-11 22:31:00    2016-11-11 22:31:00
42908    21103    602    2016-11-11 20:16:00    2016-11-11 20:16:00
42909    21103    644    2016-11-11 05:32:00    2016-11-11 05:32:00
42910    21103    702    2016-11-11 22:11:00    2016-11-11 22:11:00
42911    21103    895    2016-11-11 06:30:00    2016-11-11 06:30:00
42912    21103    465    2016-11-11 14:23:00    2016-11-11 14:23:00
42913    21104    955    2016-11-11 01:03:00    2016-11-11 01:03:00
42914    21104    552    2016-11-11 23:13:00    2016-11-11 23:13:00
42915    21104    662    2016-11-11 18:32:00    2016-11-11 18:32:00
42916    21104    754    2016-11-11 18:58:00    2016-11-11 18:58:00
42917    21104    658    2016-11-11 19:12:00    2016-11-11 19:12:00
42918    21105    877    2016-11-11 16:53:00    2016-11-11 16:53:00
42919    21105    699    2016-11-11 09:42:00    2016-11-11 09:42:00
42920    21105    596    2016-11-11 21:49:00    2016-11-11 21:49:00
42921    21105    648    2016-11-11 19:57:00    2016-11-11 19:57:00
42922    21105    876    2016-11-11 22:19:00    2016-11-11 22:19:00
42923    21106    838    2016-11-11 22:54:00    2016-11-11 22:54:00
42924    21106    515    2016-11-11 06:11:00    2016-11-11 06:11:00
42925    21106    544    2016-11-11 11:33:00    2016-11-11 11:33:00
42926    21106    590    2016-11-11 13:41:00    2016-11-11 13:41:00
42927    21106    828    2016-11-11 02:29:00    2016-11-11 02:29:00
42928    21107    498    2016-11-11 06:16:00    2016-11-11 06:16:00
42929    21107    528    2016-11-11 06:19:00    2016-11-11 06:19:00
42930    21107    864    2016-11-11 05:11:00    2016-11-11 05:11:00
42931    21107    944    2016-11-11 18:34:00    2016-11-11 18:34:00
42932    21107    881    2016-11-11 02:09:00    2016-11-11 02:09:00
42933    21108    537    2016-11-11 13:54:00    2016-11-11 13:54:00
42934    21108    599    2016-11-11 15:00:00    2016-11-11 15:00:00
42935    21108    950    2016-11-11 23:12:00    2016-11-11 23:12:00
42936    21108    527    2016-11-11 17:49:00    2016-11-11 17:49:00
42937    21108    531    2016-11-11 21:11:00    2016-11-11 21:11:00
42938    21109    771    2016-11-11 08:25:00    2016-11-11 08:25:00
42939    21109    471    2016-11-11 19:23:00    2016-11-11 19:23:00
42940    21109    911    2016-11-11 02:32:00    2016-11-11 02:32:00
42941    21109    741    2016-11-11 14:53:00    2016-11-11 14:53:00
42942    21109    885    2016-11-11 20:25:00    2016-11-11 20:25:00
42943    21110    701    2016-11-11 22:37:00    2016-11-11 22:37:00
42944    21110    503    2016-11-11 17:28:00    2016-11-11 17:28:00
42945    21110    594    2016-11-11 18:52:00    2016-11-11 18:52:00
42946    21110    867    2016-11-11 12:32:00    2016-11-11 12:32:00
42947    21110    616    2016-11-11 05:00:00    2016-11-11 05:00:00
42948    21111    944    2016-11-11 16:42:00    2016-11-11 16:42:00
42949    21111    923    2016-11-11 12:28:00    2016-11-11 12:28:00
42950    21111    712    2016-11-11 01:37:00    2016-11-11 01:37:00
42951    21111    709    2016-11-11 18:53:00    2016-11-11 18:53:00
42952    21111    919    2016-11-11 04:11:00    2016-11-11 04:11:00
42953    21112    591    2016-11-11 15:55:00    2016-11-11 15:55:00
42954    21112    609    2016-11-11 04:26:00    2016-11-11 04:26:00
42955    21112    883    2016-11-11 14:11:00    2016-11-11 14:11:00
42956    21112    609    2016-11-11 09:06:00    2016-11-11 09:06:00
42957    21112    489    2016-11-11 14:28:00    2016-11-11 14:28:00
42958    21113    695    2016-11-11 04:58:00    2016-11-11 04:58:00
42959    21113    659    2016-11-11 16:58:00    2016-11-11 16:58:00
42960    21113    472    2016-11-11 03:44:00    2016-11-11 03:44:00
42961    21113    552    2016-11-11 08:50:00    2016-11-11 08:50:00
42962    21113    737    2016-11-11 17:46:00    2016-11-11 17:46:00
42963    21114    660    2016-11-11 15:23:00    2016-11-11 15:23:00
42964    21114    732    2016-11-11 20:24:00    2016-11-11 20:24:00
42965    21114    835    2016-11-11 23:29:00    2016-11-11 23:29:00
42966    21114    467    2016-11-11 14:32:00    2016-11-11 14:32:00
42967    21114    850    2016-11-11 13:15:00    2016-11-11 13:15:00
42968    21115    552    2016-11-11 13:53:00    2016-11-11 13:53:00
42969    21115    488    2016-11-11 17:11:00    2016-11-11 17:11:00
42970    21115    947    2016-11-11 13:06:00    2016-11-11 13:06:00
42971    21115    693    2016-11-11 13:52:00    2016-11-11 13:52:00
42972    21115    533    2016-11-11 06:20:00    2016-11-11 06:20:00
42973    21116    482    2016-11-11 15:37:00    2016-11-11 15:37:00
42974    21116    738    2016-11-11 09:29:00    2016-11-11 09:29:00
42975    21116    531    2016-11-11 15:23:00    2016-11-11 15:23:00
42976    21116    760    2016-11-11 07:47:00    2016-11-11 07:47:00
42977    21116    629    2016-11-11 17:46:00    2016-11-11 17:46:00
42978    21117    676    2016-11-11 22:00:00    2016-11-11 22:00:00
42979    21117    931    2016-11-11 21:18:00    2016-11-11 21:18:00
42980    21117    681    2016-11-11 15:20:00    2016-11-11 15:20:00
42981    21117    947    2016-11-11 22:35:00    2016-11-11 22:35:00
42982    21117    924    2016-11-11 19:14:00    2016-11-11 19:14:00
42983    21118    602    2016-11-11 15:30:00    2016-11-11 15:30:00
42984    21118    815    2016-11-11 15:52:00    2016-11-11 15:52:00
42985    21118    685    2016-11-11 18:53:00    2016-11-11 18:53:00
42986    21118    592    2016-11-11 18:09:00    2016-11-11 18:09:00
42987    21118    633    2016-11-11 05:42:00    2016-11-11 05:42:00
42988    21119    891    2016-11-11 14:17:00    2016-11-11 14:17:00
42989    21119    952    2016-11-11 03:15:00    2016-11-11 03:15:00
42990    21119    816    2016-11-11 04:56:00    2016-11-11 04:56:00
42991    21119    741    2016-11-11 19:59:00    2016-11-11 19:59:00
42992    21119    536    2016-11-11 12:59:00    2016-11-11 12:59:00
42993    21120    860    2016-11-11 10:53:00    2016-11-11 10:53:00
42994    21120    611    2016-11-11 05:02:00    2016-11-11 05:02:00
42995    21120    545    2016-11-11 13:47:00    2016-11-11 13:47:00
42996    21120    573    2016-11-11 06:10:00    2016-11-11 06:10:00
42997    21120    596    2016-11-11 20:25:00    2016-11-11 20:25:00
42998    21121    933    2016-11-11 08:20:00    2016-11-11 08:20:00
42999    21121    508    2016-11-11 06:13:00    2016-11-11 06:13:00
43000    21121    860    2016-11-11 07:23:00    2016-11-11 07:23:00
43001    21121    709    2016-11-11 06:23:00    2016-11-11 06:23:00
43002    21121    636    2016-11-11 16:26:00    2016-11-11 16:26:00
43003    21122    732    2016-11-11 05:53:00    2016-11-11 05:53:00
43004    21122    901    2016-11-11 19:27:00    2016-11-11 19:27:00
43005    21122    932    2016-11-11 01:20:00    2016-11-11 01:20:00
43006    21122    496    2016-11-11 22:16:00    2016-11-11 22:16:00
43007    21122    614    2016-11-11 12:21:00    2016-11-11 12:21:00
43008    21123    721    2016-11-11 09:02:00    2016-11-11 09:02:00
43009    21123    525    2016-11-11 09:18:00    2016-11-11 09:18:00
43010    21123    692    2016-11-11 04:35:00    2016-11-11 04:35:00
43011    21123    670    2016-11-11 04:03:00    2016-11-11 04:03:00
43012    21123    886    2016-11-11 01:30:00    2016-11-11 01:30:00
43013    21124    885    2016-11-11 14:24:00    2016-11-11 14:24:00
43014    21124    689    2016-11-11 10:02:00    2016-11-11 10:02:00
43015    21124    578    2016-11-11 17:00:00    2016-11-11 17:00:00
43016    21124    945    2016-11-11 03:41:00    2016-11-11 03:41:00
43017    21124    853    2016-11-11 14:55:00    2016-11-11 14:55:00
43018    21125    493    2016-11-11 12:06:00    2016-11-11 12:06:00
43019    21125    590    2016-11-11 04:51:00    2016-11-11 04:51:00
43020    21125    733    2016-11-11 21:10:00    2016-11-11 21:10:00
43021    21125    895    2016-11-11 07:18:00    2016-11-11 07:18:00
43022    21125    645    2016-11-11 23:50:00    2016-11-11 23:50:00
43023    21126    890    2016-11-11 08:34:00    2016-11-11 08:34:00
43024    21126    869    2016-11-11 14:04:00    2016-11-11 14:04:00
43025    21126    866    2016-11-11 21:03:00    2016-11-11 21:03:00
43026    21126    686    2016-11-11 11:39:00    2016-11-11 11:39:00
43027    21126    885    2016-11-11 04:07:00    2016-11-11 04:07:00
43028    21127    881    2016-11-11 11:00:00    2016-11-11 11:00:00
43029    21127    823    2016-11-11 05:03:00    2016-11-11 05:03:00
43030    21127    596    2016-11-11 01:49:00    2016-11-11 01:49:00
43031    21127    546    2016-11-11 20:34:00    2016-11-11 20:34:00
43032    21127    746    2016-11-11 16:49:00    2016-11-11 16:49:00
43033    21128    886    2016-11-11 03:32:00    2016-11-11 03:32:00
43034    21128    701    2016-11-11 18:13:00    2016-11-11 18:13:00
43035    21128    518    2016-11-11 08:31:00    2016-11-11 08:31:00
43036    21128    805    2016-11-11 10:15:00    2016-11-11 10:15:00
43037    21128    823    2016-11-11 14:00:00    2016-11-11 14:00:00
43038    21129    664    2016-11-11 19:00:00    2016-11-11 19:00:00
43039    21129    744    2016-11-11 07:51:00    2016-11-11 07:51:00
43040    21129    895    2016-11-11 21:25:00    2016-11-11 21:25:00
43041    21129    538    2016-11-11 07:34:00    2016-11-11 07:34:00
43042    21129    785    2016-11-11 15:31:00    2016-11-11 15:31:00
43043    21130    649    2016-11-11 04:24:00    2016-11-11 04:24:00
43044    21130    647    2016-11-11 10:39:00    2016-11-11 10:39:00
43045    21130    912    2016-11-11 20:18:00    2016-11-11 20:18:00
43046    21130    811    2016-11-11 08:37:00    2016-11-11 08:37:00
43047    21130    491    2016-11-11 12:45:00    2016-11-11 12:45:00
43048    21131    487    2016-11-11 20:14:00    2016-11-11 20:14:00
43049    21131    806    2016-11-11 21:42:00    2016-11-11 21:42:00
43050    21131    496    2016-11-11 19:13:00    2016-11-11 19:13:00
43051    21131    476    2016-11-11 20:00:00    2016-11-11 20:00:00
43052    21131    884    2016-11-11 05:24:00    2016-11-11 05:24:00
43053    21132    569    2016-11-11 18:39:00    2016-11-11 18:39:00
43054    21132    720    2016-11-11 13:09:00    2016-11-11 13:09:00
43055    21132    610    2016-11-11 13:49:00    2016-11-11 13:49:00
43056    21132    473    2016-11-11 16:48:00    2016-11-11 16:48:00
43057    21132    737    2016-11-11 04:45:00    2016-11-11 04:45:00
43058    21133    704    2016-11-11 17:55:00    2016-11-11 17:55:00
43059    21133    584    2016-11-11 09:48:00    2016-11-11 09:48:00
43060    21133    551    2016-11-11 23:42:00    2016-11-11 23:42:00
43061    21133    656    2016-11-11 03:51:00    2016-11-11 03:51:00
43062    21133    933    2016-11-11 18:09:00    2016-11-11 18:09:00
43063    21134    648    2016-11-11 22:25:00    2016-11-11 22:25:00
43064    21134    567    2016-11-11 14:13:00    2016-11-11 14:13:00
43065    21134    842    2016-11-11 09:42:00    2016-11-11 09:42:00
43066    21134    530    2016-11-11 14:49:00    2016-11-11 14:49:00
43067    21134    553    2016-11-11 19:56:00    2016-11-11 19:56:00
43068    21135    932    2016-11-11 16:42:00    2016-11-11 16:42:00
43069    21135    492    2016-11-11 07:46:00    2016-11-11 07:46:00
43070    21135    631    2016-11-11 02:22:00    2016-11-11 02:22:00
43071    21135    727    2016-11-11 18:54:00    2016-11-11 18:54:00
43072    21135    543    2016-11-11 12:28:00    2016-11-11 12:28:00
43073    21136    553    2016-11-11 06:41:00    2016-11-11 06:41:00
43074    21136    917    2016-11-11 10:53:00    2016-11-11 10:53:00
43075    21136    941    2016-11-11 10:35:00    2016-11-11 10:35:00
43076    21136    944    2016-11-11 20:23:00    2016-11-11 20:23:00
43077    21136    940    2016-11-11 04:25:00    2016-11-11 04:25:00
43078    21137    628    2016-11-11 21:44:00    2016-11-11 21:44:00
43079    21137    731    2016-11-11 13:18:00    2016-11-11 13:18:00
43080    21137    513    2016-11-11 05:15:00    2016-11-11 05:15:00
43081    21137    712    2016-11-11 05:46:00    2016-11-11 05:46:00
43082    21137    647    2016-11-11 16:50:00    2016-11-11 16:50:00
43083    21138    652    2016-11-11 11:43:00    2016-11-11 11:43:00
43084    21138    773    2016-11-11 02:18:00    2016-11-11 02:18:00
43085    21138    921    2016-11-11 12:52:00    2016-11-11 12:52:00
43086    21138    948    2016-11-11 04:29:00    2016-11-11 04:29:00
43087    21138    954    2016-11-11 14:27:00    2016-11-11 14:27:00
43088    21139    614    2016-11-11 15:30:00    2016-11-11 15:30:00
43089    21139    775    2016-11-11 19:02:00    2016-11-11 19:02:00
43090    21139    646    2016-11-11 21:00:00    2016-11-11 21:00:00
43091    21139    825    2016-11-11 15:13:00    2016-11-11 15:13:00
43092    21139    723    2016-11-11 12:00:00    2016-11-11 12:00:00
43093    21140    623    2016-11-11 19:00:00    2016-11-11 19:00:00
43094    21140    578    2016-11-11 20:46:00    2016-11-11 20:46:00
43095    21140    519    2016-11-11 10:13:00    2016-11-11 10:13:00
43096    21140    558    2016-11-11 11:19:00    2016-11-11 11:19:00
43097    21140    775    2016-11-11 23:26:00    2016-11-11 23:26:00
43098    21141    884    2016-11-11 21:20:00    2016-11-11 21:20:00
43099    21141    958    2016-11-11 23:29:00    2016-11-11 23:29:00
43100    21141    821    2016-11-11 13:10:00    2016-11-11 13:10:00
43101    21141    911    2016-11-11 18:52:00    2016-11-11 18:52:00
43102    21141    626    2016-11-11 05:11:00    2016-11-11 05:11:00
43103    21142    716    2016-11-11 03:01:00    2016-11-11 03:01:00
43104    21142    801    2016-11-11 10:23:00    2016-11-11 10:23:00
43105    21142    727    2016-11-11 06:32:00    2016-11-11 06:32:00
43106    21142    618    2016-11-11 02:19:00    2016-11-11 02:19:00
43107    21142    743    2016-11-11 13:47:00    2016-11-11 13:47:00
43108    21143    881    2016-11-11 05:31:00    2016-11-11 05:31:00
43109    21143    463    2016-11-11 08:24:00    2016-11-11 08:24:00
43110    21143    493    2016-11-11 06:03:00    2016-11-11 06:03:00
43111    21143    594    2016-11-11 01:40:00    2016-11-11 01:40:00
43112    21143    716    2016-11-11 23:10:00    2016-11-11 23:10:00
43113    21144    643    2016-11-11 04:29:00    2016-11-11 04:29:00
43114    21144    477    2016-11-11 10:51:00    2016-11-11 10:51:00
43115    21144    639    2016-11-11 10:58:00    2016-11-11 10:58:00
43116    21144    507    2016-11-11 07:55:00    2016-11-11 07:55:00
43117    21144    877    2016-11-11 07:04:00    2016-11-11 07:04:00
43118    21145    885    2016-11-11 01:56:00    2016-11-11 01:56:00
43119    21145    930    2016-11-11 06:53:00    2016-11-11 06:53:00
43120    21145    512    2016-11-11 07:42:00    2016-11-11 07:42:00
43121    21145    743    2016-11-11 22:36:00    2016-11-11 22:36:00
43122    21145    773    2016-11-11 11:36:00    2016-11-11 11:36:00
43123    21146    604    2016-11-11 04:58:00    2016-11-11 04:58:00
43124    21146    920    2016-11-11 20:17:00    2016-11-11 20:17:00
43125    21146    829    2016-11-11 20:53:00    2016-11-11 20:53:00
43126    21146    494    2016-11-11 04:55:00    2016-11-11 04:55:00
43127    21146    933    2016-11-11 04:00:00    2016-11-11 04:00:00
43128    21147    901    2016-11-11 12:11:00    2016-11-11 12:11:00
43129    21147    663    2016-11-11 04:51:00    2016-11-11 04:51:00
43130    21147    545    2016-11-11 08:36:00    2016-11-11 08:36:00
43131    21147    747    2016-11-11 19:26:00    2016-11-11 19:26:00
43132    21147    792    2016-11-11 07:57:00    2016-11-11 07:57:00
43133    21148    639    2016-11-11 04:47:00    2016-11-11 04:47:00
43134    21148    645    2016-11-11 07:15:00    2016-11-11 07:15:00
43135    21148    933    2016-11-11 08:26:00    2016-11-11 08:26:00
43136    21148    880    2016-11-11 20:31:00    2016-11-11 20:31:00
43137    21148    800    2016-11-11 22:17:00    2016-11-11 22:17:00
43138    21149    651    2016-11-11 17:53:00    2016-11-11 17:53:00
43139    21149    771    2016-11-11 15:25:00    2016-11-11 15:25:00
43140    21149    684    2016-11-11 23:17:00    2016-11-11 23:17:00
43141    21149    514    2016-11-11 09:58:00    2016-11-11 09:58:00
43142    21149    797    2016-11-11 01:31:00    2016-11-11 01:31:00
43143    21150    770    2016-11-11 07:40:00    2016-11-11 07:40:00
43144    21150    638    2016-11-11 06:44:00    2016-11-11 06:44:00
43145    21150    534    2016-11-11 10:16:00    2016-11-11 10:16:00
43146    21150    489    2016-11-11 19:11:00    2016-11-11 19:11:00
43147    21150    593    2016-11-11 18:32:00    2016-11-11 18:32:00
43148    21151    868    2016-11-11 20:20:00    2016-11-11 20:20:00
43149    21151    758    2016-11-11 18:43:00    2016-11-11 18:43:00
43150    21151    715    2016-11-11 19:19:00    2016-11-11 19:19:00
43151    21151    722    2016-11-11 17:42:00    2016-11-11 17:42:00
43152    21151    564    2016-11-11 12:58:00    2016-11-11 12:58:00
43153    21152    822    2016-11-11 21:20:00    2016-11-11 21:20:00
43154    21152    796    2016-11-11 10:44:00    2016-11-11 10:44:00
43155    21152    575    2016-11-11 03:32:00    2016-11-11 03:32:00
43156    21152    913    2016-11-11 18:33:00    2016-11-11 18:33:00
43157    21152    903    2016-11-11 13:12:00    2016-11-11 13:12:00
43158    21153    706    2016-11-11 17:49:00    2016-11-11 17:49:00
43159    21153    821    2016-11-11 12:37:00    2016-11-11 12:37:00
43160    21153    880    2016-11-11 02:12:00    2016-11-11 02:12:00
43161    21153    535    2016-11-11 11:20:00    2016-11-11 11:20:00
43162    21153    731    2016-11-11 22:17:00    2016-11-11 22:17:00
43163    21154    596    2016-11-11 20:11:00    2016-11-11 20:11:00
43164    21154    511    2016-11-11 13:01:00    2016-11-11 13:01:00
43165    21154    764    2016-11-11 14:13:00    2016-11-11 14:13:00
43166    21154    867    2016-11-11 13:03:00    2016-11-11 13:03:00
43167    21154    472    2016-11-11 07:48:00    2016-11-11 07:48:00
43168    21155    704    2016-11-11 01:08:00    2016-11-11 01:08:00
43169    21155    794    2016-11-11 17:44:00    2016-11-11 17:44:00
43170    21155    910    2016-11-11 19:54:00    2016-11-11 19:54:00
43171    21155    929    2016-11-11 06:48:00    2016-11-11 06:48:00
43172    21155    643    2016-11-11 19:34:00    2016-11-11 19:34:00
43173    21156    590    2016-11-11 10:41:00    2016-11-11 10:41:00
43174    21156    519    2016-11-11 13:18:00    2016-11-11 13:18:00
43175    21156    847    2016-11-11 13:33:00    2016-11-11 13:33:00
43176    21156    787    2016-11-11 04:50:00    2016-11-11 04:50:00
43177    21156    645    2016-11-11 23:51:00    2016-11-11 23:51:00
43178    21157    586    2016-11-11 12:16:00    2016-11-11 12:16:00
43179    21157    730    2016-11-11 21:48:00    2016-11-11 21:48:00
43180    21157    829    2016-11-11 07:46:00    2016-11-11 07:46:00
43181    21157    853    2016-11-11 04:55:00    2016-11-11 04:55:00
43182    21157    728    2016-11-11 04:31:00    2016-11-11 04:31:00
43183    21158    497    2016-11-11 21:20:00    2016-11-11 21:20:00
43184    21158    712    2016-11-11 21:35:00    2016-11-11 21:35:00
43185    21158    797    2016-11-11 03:06:00    2016-11-11 03:06:00
43186    21158    601    2016-11-11 03:51:00    2016-11-11 03:51:00
43187    21158    896    2016-11-11 12:30:00    2016-11-11 12:30:00
43188    21159    851    2016-11-11 08:48:00    2016-11-11 08:48:00
43189    21159    677    2016-11-11 17:38:00    2016-11-11 17:38:00
43190    21159    769    2016-11-11 19:59:00    2016-11-11 19:59:00
43191    21159    776    2016-11-11 01:11:00    2016-11-11 01:11:00
43192    21159    633    2016-11-11 10:13:00    2016-11-11 10:13:00
43193    21160    589    2016-11-11 06:58:00    2016-11-11 06:58:00
43194    21160    706    2016-11-11 23:29:00    2016-11-11 23:29:00
43195    21160    745    2016-11-11 08:46:00    2016-11-11 08:46:00
43196    21160    472    2016-11-11 10:57:00    2016-11-11 10:57:00
43197    21160    465    2016-11-11 09:54:00    2016-11-11 09:54:00
43198    21161    472    2016-11-11 23:05:00    2016-11-11 23:05:00
43199    21161    498    2016-11-11 01:45:00    2016-11-11 01:45:00
43200    21161    502    2016-11-11 08:39:00    2016-11-11 08:39:00
43201    21161    831    2016-11-11 01:52:00    2016-11-11 01:52:00
43202    21161    704    2016-11-11 23:28:00    2016-11-11 23:28:00
43203    21162    624    2016-11-11 01:35:00    2016-11-11 01:35:00
43204    21162    800    2016-11-11 10:55:00    2016-11-11 10:55:00
43205    21162    845    2016-11-11 02:29:00    2016-11-11 02:29:00
43206    21162    698    2016-11-11 11:18:00    2016-11-11 11:18:00
43207    21162    594    2016-11-11 17:53:00    2016-11-11 17:53:00
43208    21163    752    2016-11-11 09:34:00    2016-11-11 09:34:00
43209    21163    744    2016-11-11 08:08:00    2016-11-11 08:08:00
43210    21163    862    2016-11-11 19:44:00    2016-11-11 19:44:00
43211    21163    694    2016-11-11 12:48:00    2016-11-11 12:48:00
43212    21163    594    2016-11-11 16:03:00    2016-11-11 16:03:00
43213    21164    647    2016-11-11 15:16:00    2016-11-11 15:16:00
43214    21164    717    2016-11-11 10:12:00    2016-11-11 10:12:00
43215    21164    522    2016-11-11 03:41:00    2016-11-11 03:41:00
43216    21164    927    2016-11-11 11:08:00    2016-11-11 11:08:00
43217    21164    862    2016-11-11 17:19:00    2016-11-11 17:19:00
43218    21165    489    2016-11-11 09:00:00    2016-11-11 09:00:00
43219    21165    750    2016-11-11 15:35:00    2016-11-11 15:35:00
43220    21165    870    2016-11-11 22:53:00    2016-11-11 22:53:00
43221    21165    714    2016-11-11 17:03:00    2016-11-11 17:03:00
43222    21165    542    2016-11-11 05:16:00    2016-11-11 05:16:00
43223    21166    869    2016-11-11 09:58:00    2016-11-11 09:58:00
43224    21166    927    2016-11-11 05:46:00    2016-11-11 05:46:00
43225    21166    748    2016-11-11 08:49:00    2016-11-11 08:49:00
43226    21166    796    2016-11-11 07:14:00    2016-11-11 07:14:00
43227    21166    611    2016-11-11 16:29:00    2016-11-11 16:29:00
43228    21167    793    2016-11-11 06:33:00    2016-11-11 06:33:00
43229    21167    881    2016-11-11 04:38:00    2016-11-11 04:38:00
43230    21167    673    2016-11-11 08:34:00    2016-11-11 08:34:00
43231    21167    484    2016-11-11 10:19:00    2016-11-11 10:19:00
43232    21167    491    2016-11-11 09:24:00    2016-11-11 09:24:00
43233    21168    917    2016-11-11 21:13:00    2016-11-11 21:13:00
43234    21168    464    2016-11-11 14:53:00    2016-11-11 14:53:00
43235    21168    858    2016-11-11 18:45:00    2016-11-11 18:45:00
43236    21168    773    2016-11-11 02:20:00    2016-11-11 02:20:00
43237    21168    838    2016-11-11 18:12:00    2016-11-11 18:12:00
43238    21169    529    2016-11-11 22:59:00    2016-11-11 22:59:00
43239    21169    728    2016-11-11 21:41:00    2016-11-11 21:41:00
43240    21169    478    2016-11-11 19:53:00    2016-11-11 19:53:00
43241    21169    768    2016-11-11 20:43:00    2016-11-11 20:43:00
43242    21169    831    2016-11-11 08:29:00    2016-11-11 08:29:00
43243    21170    773    2016-11-11 04:26:00    2016-11-11 04:26:00
43244    21170    475    2016-11-11 06:52:00    2016-11-11 06:52:00
43245    21170    617    2016-11-11 17:03:00    2016-11-11 17:03:00
43246    21170    504    2016-11-11 09:18:00    2016-11-11 09:18:00
43247    21170    784    2016-11-11 13:04:00    2016-11-11 13:04:00
43248    21171    832    2016-11-11 06:41:00    2016-11-11 06:41:00
43249    21171    680    2016-11-11 16:07:00    2016-11-11 16:07:00
43250    21171    583    2016-11-11 03:46:00    2016-11-11 03:46:00
43251    21171    483    2016-11-11 11:13:00    2016-11-11 11:13:00
43252    21171    726    2016-11-11 09:03:00    2016-11-11 09:03:00
43253    21172    875    2016-11-11 19:49:00    2016-11-11 19:49:00
43254    21172    828    2016-11-11 21:12:00    2016-11-11 21:12:00
43255    21172    521    2016-11-11 09:58:00    2016-11-11 09:58:00
43256    21172    520    2016-11-11 06:44:00    2016-11-11 06:44:00
43257    21172    692    2016-11-11 21:55:00    2016-11-11 21:55:00
43258    21173    656    2016-11-11 11:49:00    2016-11-11 11:49:00
43259    21173    763    2016-11-11 04:19:00    2016-11-11 04:19:00
43260    21173    867    2016-11-11 04:53:00    2016-11-11 04:53:00
43261    21173    734    2016-11-11 09:48:00    2016-11-11 09:48:00
43262    21173    529    2016-11-11 15:10:00    2016-11-11 15:10:00
43263    21174    933    2016-11-11 01:49:00    2016-11-11 01:49:00
43264    21174    600    2016-11-11 14:20:00    2016-11-11 14:20:00
43265    21174    924    2016-11-11 04:47:00    2016-11-11 04:47:00
43266    21174    794    2016-11-11 01:31:00    2016-11-11 01:31:00
43267    21174    625    2016-11-11 20:31:00    2016-11-11 20:31:00
43268    21175    851    2016-11-11 06:44:00    2016-11-11 06:44:00
43269    21175    516    2016-11-11 23:59:00    2016-11-11 23:59:00
43270    21175    733    2016-11-11 22:59:00    2016-11-11 22:59:00
43271    21175    786    2016-11-11 21:58:00    2016-11-11 21:58:00
43272    21175    832    2016-11-11 19:51:00    2016-11-11 19:51:00
43273    21176    613    2016-11-11 20:38:00    2016-11-11 20:38:00
43274    21176    753    2016-11-11 07:39:00    2016-11-11 07:39:00
43275    21176    646    2016-11-11 20:30:00    2016-11-11 20:30:00
43276    21176    872    2016-11-11 18:28:00    2016-11-11 18:28:00
43277    21176    676    2016-11-11 21:29:00    2016-11-11 21:29:00
43278    21177    551    2016-11-12 12:14:00    2016-11-12 12:14:00
43279    21177    549    2016-11-12 14:16:00    2016-11-12 14:16:00
43280    21177    768    2016-11-12 16:46:00    2016-11-12 16:46:00
43281    21177    785    2016-11-12 22:44:00    2016-11-12 22:44:00
43282    21177    570    2016-11-12 09:28:00    2016-11-12 09:28:00
43283    21178    482    2016-11-12 04:24:00    2016-11-12 04:24:00
43284    21178    550    2016-11-12 18:00:00    2016-11-12 18:00:00
43285    21178    727    2016-11-12 17:15:00    2016-11-12 17:15:00
43286    21178    648    2016-11-12 01:19:00    2016-11-12 01:19:00
43287    21178    680    2016-11-12 14:17:00    2016-11-12 14:17:00
43288    21179    729    2016-11-12 15:24:00    2016-11-12 15:24:00
43289    21179    856    2016-11-12 06:52:00    2016-11-12 06:52:00
43290    21179    723    2016-11-12 21:03:00    2016-11-12 21:03:00
43291    21179    703    2016-11-12 16:20:00    2016-11-12 16:20:00
43292    21179    830    2016-11-12 14:57:00    2016-11-12 14:57:00
43293    21180    519    2016-11-12 04:27:00    2016-11-12 04:27:00
43294    21180    504    2016-11-12 02:23:00    2016-11-12 02:23:00
43295    21180    864    2016-11-12 03:26:00    2016-11-12 03:26:00
43296    21180    477    2016-11-12 09:25:00    2016-11-12 09:25:00
43297    21180    679    2016-11-12 10:16:00    2016-11-12 10:16:00
43298    21181    591    2016-11-12 12:02:00    2016-11-12 12:02:00
43299    21181    582    2016-11-12 06:30:00    2016-11-12 06:30:00
43300    21181    615    2016-11-12 02:28:00    2016-11-12 02:28:00
43301    21181    517    2016-11-12 09:12:00    2016-11-12 09:12:00
43302    21181    605    2016-11-12 17:34:00    2016-11-12 17:34:00
43303    21182    517    2016-11-12 07:02:00    2016-11-12 07:02:00
43304    21182    464    2016-11-12 10:07:00    2016-11-12 10:07:00
43305    21182    695    2016-11-12 11:01:00    2016-11-12 11:01:00
43306    21182    733    2016-11-12 06:25:00    2016-11-12 06:25:00
43307    21182    658    2016-11-12 11:32:00    2016-11-12 11:32:00
43308    21183    641    2016-11-12 02:18:00    2016-11-12 02:18:00
43309    21183    674    2016-11-12 04:16:00    2016-11-12 04:16:00
43310    21183    876    2016-11-12 11:48:00    2016-11-12 11:48:00
43311    21183    569    2016-11-12 08:46:00    2016-11-12 08:46:00
43312    21183    934    2016-11-12 07:20:00    2016-11-12 07:20:00
43313    21184    750    2016-11-12 14:59:00    2016-11-12 14:59:00
43314    21184    796    2016-11-12 15:37:00    2016-11-12 15:37:00
43315    21184    586    2016-11-12 03:31:00    2016-11-12 03:31:00
43316    21184    641    2016-11-12 12:15:00    2016-11-12 12:15:00
43317    21184    541    2016-11-12 03:09:00    2016-11-12 03:09:00
43318    21185    723    2016-11-12 22:45:00    2016-11-12 22:45:00
43319    21185    732    2016-11-12 10:10:00    2016-11-12 10:10:00
43320    21185    693    2016-11-12 07:19:00    2016-11-12 07:19:00
43321    21185    893    2016-11-12 21:38:00    2016-11-12 21:38:00
43322    21185    551    2016-11-12 04:07:00    2016-11-12 04:07:00
43323    21186    574    2016-11-12 17:00:00    2016-11-12 17:00:00
43324    21186    816    2016-11-12 10:26:00    2016-11-12 10:26:00
43325    21186    710    2016-11-12 12:18:00    2016-11-12 12:18:00
43326    21186    629    2016-11-12 21:33:00    2016-11-12 21:33:00
43327    21186    686    2016-11-12 15:22:00    2016-11-12 15:22:00
43328    21187    896    2016-11-12 20:44:00    2016-11-12 20:44:00
43329    21187    957    2016-11-12 20:42:00    2016-11-12 20:42:00
43330    21187    942    2016-11-12 14:37:00    2016-11-12 14:37:00
43331    21187    801    2016-11-12 10:26:00    2016-11-12 10:26:00
43332    21187    624    2016-11-12 04:30:00    2016-11-12 04:30:00
43333    21188    637    2016-11-12 22:34:00    2016-11-12 22:34:00
43334    21188    467    2016-11-12 23:09:00    2016-11-12 23:09:00
43335    21188    525    2016-11-12 04:13:00    2016-11-12 04:13:00
43336    21188    693    2016-11-12 02:17:00    2016-11-12 02:17:00
43337    21188    886    2016-11-12 10:30:00    2016-11-12 10:30:00
43338    21189    929    2016-11-12 14:06:00    2016-11-12 14:06:00
43339    21189    882    2016-11-12 08:23:00    2016-11-12 08:23:00
43340    21189    718    2016-11-12 17:53:00    2016-11-12 17:53:00
43341    21189    750    2016-11-12 19:43:00    2016-11-12 19:43:00
43342    21189    649    2016-11-12 23:35:00    2016-11-12 23:35:00
43343    21190    788    2016-11-12 17:41:00    2016-11-12 17:41:00
43344    21190    662    2016-11-12 15:56:00    2016-11-12 15:56:00
43345    21190    937    2016-11-12 11:59:00    2016-11-12 11:59:00
43346    21190    937    2016-11-12 13:23:00    2016-11-12 13:23:00
43347    21190    842    2016-11-12 13:45:00    2016-11-12 13:45:00
43348    21191    870    2016-11-12 21:03:00    2016-11-12 21:03:00
43349    21191    631    2016-11-12 18:15:00    2016-11-12 18:15:00
43350    21191    642    2016-11-12 05:53:00    2016-11-12 05:53:00
43351    21191    684    2016-11-12 06:20:00    2016-11-12 06:20:00
43352    21191    755    2016-11-12 06:12:00    2016-11-12 06:12:00
43353    21192    680    2016-11-12 11:42:00    2016-11-12 11:42:00
43354    21192    878    2016-11-12 19:23:00    2016-11-12 19:23:00
43355    21192    713    2016-11-12 15:25:00    2016-11-12 15:25:00
43356    21192    597    2016-11-12 01:31:00    2016-11-12 01:31:00
43357    21192    843    2016-11-12 05:51:00    2016-11-12 05:51:00
43358    21193    833    2016-11-12 17:46:00    2016-11-12 17:46:00
43359    21193    941    2016-11-12 20:22:00    2016-11-12 20:22:00
43360    21193    671    2016-11-12 21:49:00    2016-11-12 21:49:00
43361    21193    950    2016-11-12 03:01:00    2016-11-12 03:01:00
43362    21193    619    2016-11-12 13:46:00    2016-11-12 13:46:00
43363    21194    745    2016-11-12 16:14:00    2016-11-12 16:14:00
43364    21194    529    2016-11-12 18:00:00    2016-11-12 18:00:00
43365    21194    729    2016-11-12 14:43:00    2016-11-12 14:43:00
43366    21194    707    2016-11-12 20:22:00    2016-11-12 20:22:00
43367    21194    663    2016-11-12 11:17:00    2016-11-12 11:17:00
43368    21195    757    2016-11-12 12:58:00    2016-11-12 12:58:00
43369    21195    689    2016-11-12 12:41:00    2016-11-12 12:41:00
43370    21195    730    2016-11-12 06:11:00    2016-11-12 06:11:00
43371    21195    567    2016-11-12 22:12:00    2016-11-12 22:12:00
43372    21195    877    2016-11-12 06:59:00    2016-11-12 06:59:00
43373    21196    906    2016-11-12 22:18:00    2016-11-12 22:18:00
43374    21196    916    2016-11-12 20:21:00    2016-11-12 20:21:00
43375    21196    717    2016-11-12 04:15:00    2016-11-12 04:15:00
43376    21196    489    2016-11-12 11:24:00    2016-11-12 11:24:00
43377    21196    719    2016-11-12 16:59:00    2016-11-12 16:59:00
43378    21197    582    2016-11-12 14:40:00    2016-11-12 14:40:00
43379    21197    581    2016-11-12 10:08:00    2016-11-12 10:08:00
43380    21197    536    2016-11-12 07:58:00    2016-11-12 07:58:00
43381    21197    911    2016-11-12 11:00:00    2016-11-12 11:00:00
43382    21197    578    2016-11-12 13:50:00    2016-11-12 13:50:00
43383    21198    753    2016-11-12 22:02:00    2016-11-12 22:02:00
43384    21198    479    2016-11-12 22:49:00    2016-11-12 22:49:00
43385    21198    557    2016-11-12 01:49:00    2016-11-12 01:49:00
43386    21198    706    2016-11-12 11:51:00    2016-11-12 11:51:00
43387    21198    616    2016-11-12 23:22:00    2016-11-12 23:22:00
43388    21199    666    2016-11-12 16:58:00    2016-11-12 16:58:00
43389    21199    959    2016-11-12 05:35:00    2016-11-12 05:35:00
43390    21199    784    2016-11-12 23:53:00    2016-11-12 23:53:00
43391    21199    549    2016-11-12 10:36:00    2016-11-12 10:36:00
43392    21199    634    2016-11-12 02:01:00    2016-11-12 02:01:00
43393    21200    779    2016-11-12 14:07:00    2016-11-12 14:07:00
43394    21200    678    2016-11-12 05:17:00    2016-11-12 05:17:00
43395    21200    715    2016-11-12 11:12:00    2016-11-12 11:12:00
43396    21200    808    2016-11-12 23:29:00    2016-11-12 23:29:00
43397    21200    616    2016-11-12 04:00:00    2016-11-12 04:00:00
43398    21201    525    2016-11-12 22:45:00    2016-11-12 22:45:00
43399    21201    951    2016-11-12 03:14:00    2016-11-12 03:14:00
43400    21201    694    2016-11-12 13:17:00    2016-11-12 13:17:00
43401    21201    463    2016-11-12 14:03:00    2016-11-12 14:03:00
43402    21201    690    2016-11-12 08:11:00    2016-11-12 08:11:00
43403    21202    540    2016-11-12 04:33:00    2016-11-12 04:33:00
43404    21202    670    2016-11-12 12:26:00    2016-11-12 12:26:00
43405    21202    720    2016-11-12 06:03:00    2016-11-12 06:03:00
43406    21202    737    2016-11-12 23:28:00    2016-11-12 23:28:00
43407    21202    874    2016-11-12 07:10:00    2016-11-12 07:10:00
43408    21203    627    2016-11-12 06:36:00    2016-11-12 06:36:00
43409    21203    689    2016-11-12 14:17:00    2016-11-12 14:17:00
43410    21203    900    2016-11-12 20:04:00    2016-11-12 20:04:00
43411    21203    844    2016-11-12 02:11:00    2016-11-12 02:11:00
43412    21203    899    2016-11-12 10:06:00    2016-11-12 10:06:00
43413    21204    755    2016-11-12 18:40:00    2016-11-12 18:40:00
43414    21204    593    2016-11-12 02:42:00    2016-11-12 02:42:00
43415    21204    733    2016-11-12 03:06:00    2016-11-12 03:06:00
43416    21204    818    2016-11-12 22:06:00    2016-11-12 22:06:00
43417    21204    675    2016-11-12 06:09:00    2016-11-12 06:09:00
43418    21205    903    2016-11-12 06:48:00    2016-11-12 06:48:00
43419    21205    932    2016-11-12 21:36:00    2016-11-12 21:36:00
43420    21205    833    2016-11-12 07:47:00    2016-11-12 07:47:00
43421    21205    526    2016-11-12 20:44:00    2016-11-12 20:44:00
43422    21205    525    2016-11-12 20:37:00    2016-11-12 20:37:00
43423    21206    779    2016-11-12 07:08:00    2016-11-12 07:08:00
43424    21206    842    2016-11-12 04:36:00    2016-11-12 04:36:00
43425    21206    818    2016-11-12 17:09:00    2016-11-12 17:09:00
43426    21206    823    2016-11-12 20:00:00    2016-11-12 20:00:00
43427    21206    604    2016-11-12 14:34:00    2016-11-12 14:34:00
43428    21207    903    2016-11-12 13:50:00    2016-11-12 13:50:00
43429    21207    694    2016-11-12 01:16:00    2016-11-12 01:16:00
43430    21207    949    2016-11-12 04:53:00    2016-11-12 04:53:00
43431    21207    661    2016-11-12 12:44:00    2016-11-12 12:44:00
43432    21207    622    2016-11-12 14:13:00    2016-11-12 14:13:00
43433    21208    656    2016-11-12 19:08:00    2016-11-12 19:08:00
43434    21208    899    2016-11-12 18:18:00    2016-11-12 18:18:00
43435    21208    552    2016-11-12 11:50:00    2016-11-12 11:50:00
43436    21208    881    2016-11-12 22:35:00    2016-11-12 22:35:00
43437    21208    776    2016-11-12 04:01:00    2016-11-12 04:01:00
43438    21209    556    2016-11-12 06:44:00    2016-11-12 06:44:00
43439    21209    661    2016-11-12 11:50:00    2016-11-12 11:50:00
43440    21209    688    2016-11-12 18:05:00    2016-11-12 18:05:00
43441    21209    857    2016-11-12 22:19:00    2016-11-12 22:19:00
43442    21209    629    2016-11-12 22:44:00    2016-11-12 22:44:00
43443    21210    905    2016-11-12 10:51:00    2016-11-12 10:51:00
43444    21210    771    2016-11-12 10:46:00    2016-11-12 10:46:00
43445    21210    717    2016-11-12 11:29:00    2016-11-12 11:29:00
43446    21210    767    2016-11-12 02:19:00    2016-11-12 02:19:00
43447    21210    595    2016-11-12 12:07:00    2016-11-12 12:07:00
43448    21211    844    2016-11-12 01:47:00    2016-11-12 01:47:00
43449    21211    682    2016-11-12 06:47:00    2016-11-12 06:47:00
43450    21211    502    2016-11-12 22:25:00    2016-11-12 22:25:00
43451    21211    486    2016-11-12 13:36:00    2016-11-12 13:36:00
43452    21211    657    2016-11-12 12:58:00    2016-11-12 12:58:00
43453    21212    961    2016-11-12 12:04:00    2016-11-12 12:04:00
43454    21212    651    2016-11-12 08:05:00    2016-11-12 08:05:00
43455    21212    634    2016-11-12 10:33:00    2016-11-12 10:33:00
43456    21212    641    2016-11-12 04:52:00    2016-11-12 04:52:00
43457    21212    689    2016-11-12 07:31:00    2016-11-12 07:31:00
43458    21213    767    2016-11-12 19:25:00    2016-11-12 19:25:00
43459    21213    898    2016-11-12 20:42:00    2016-11-12 20:42:00
43460    21213    549    2016-11-12 20:55:00    2016-11-12 20:55:00
43461    21213    816    2016-11-12 23:01:00    2016-11-12 23:01:00
43462    21213    564    2016-11-12 08:57:00    2016-11-12 08:57:00
43463    21214    577    2016-11-12 20:24:00    2016-11-12 20:24:00
43464    21214    485    2016-11-12 02:19:00    2016-11-12 02:19:00
43465    21214    737    2016-11-12 01:34:00    2016-11-12 01:34:00
43466    21214    898    2016-11-12 15:28:00    2016-11-12 15:28:00
43467    21214    728    2016-11-12 11:35:00    2016-11-12 11:35:00
43468    21215    567    2016-11-12 09:14:00    2016-11-12 09:14:00
43469    21215    941    2016-11-12 10:39:00    2016-11-12 10:39:00
43470    21215    585    2016-11-12 06:40:00    2016-11-12 06:40:00
43471    21215    931    2016-11-12 17:24:00    2016-11-12 17:24:00
43472    21215    683    2016-11-12 17:11:00    2016-11-12 17:11:00
43473    21216    584    2016-11-12 18:36:00    2016-11-12 18:36:00
43474    21216    591    2016-11-12 14:41:00    2016-11-12 14:41:00
43475    21216    891    2016-11-12 06:09:00    2016-11-12 06:09:00
43476    21216    806    2016-11-12 18:41:00    2016-11-12 18:41:00
43477    21216    477    2016-11-12 02:55:00    2016-11-12 02:55:00
43478    21217    880    2016-11-12 10:37:00    2016-11-12 10:37:00
43479    21217    907    2016-11-12 01:50:00    2016-11-12 01:50:00
43480    21217    952    2016-11-12 08:34:00    2016-11-12 08:34:00
43481    21217    795    2016-11-12 07:32:00    2016-11-12 07:32:00
43482    21217    570    2016-11-12 05:47:00    2016-11-12 05:47:00
43483    21218    632    2016-11-12 13:01:00    2016-11-12 13:01:00
43484    21218    681    2016-11-12 19:34:00    2016-11-12 19:34:00
43485    21218    537    2016-11-12 08:29:00    2016-11-12 08:29:00
43486    21218    726    2016-11-12 02:45:00    2016-11-12 02:45:00
43487    21218    796    2016-11-12 12:49:00    2016-11-12 12:49:00
43488    21219    957    2016-11-12 17:42:00    2016-11-12 17:42:00
43489    21219    679    2016-11-12 09:03:00    2016-11-12 09:03:00
43490    21219    783    2016-11-12 03:39:00    2016-11-12 03:39:00
43491    21219    650    2016-11-12 18:39:00    2016-11-12 18:39:00
43492    21219    907    2016-11-12 16:26:00    2016-11-12 16:26:00
43493    21220    795    2016-11-12 02:14:00    2016-11-12 02:14:00
43494    21220    744    2016-11-12 11:38:00    2016-11-12 11:38:00
43495    21220    694    2016-11-12 07:09:00    2016-11-12 07:09:00
43496    21220    776    2016-11-12 19:51:00    2016-11-12 19:51:00
43497    21220    763    2016-11-12 09:14:00    2016-11-12 09:14:00
43498    21221    706    2016-11-12 07:40:00    2016-11-12 07:40:00
43499    21221    822    2016-11-12 19:42:00    2016-11-12 19:42:00
43500    21221    848    2016-11-12 21:21:00    2016-11-12 21:21:00
43501    21221    756    2016-11-12 23:44:00    2016-11-12 23:44:00
43502    21221    913    2016-11-12 21:30:00    2016-11-12 21:30:00
43503    21222    930    2016-11-12 05:09:00    2016-11-12 05:09:00
43504    21222    598    2016-11-12 05:16:00    2016-11-12 05:16:00
43505    21222    725    2016-11-12 02:30:00    2016-11-12 02:30:00
43506    21222    679    2016-11-12 05:23:00    2016-11-12 05:23:00
43507    21222    558    2016-11-12 21:13:00    2016-11-12 21:13:00
43508    21223    913    2016-11-12 11:03:00    2016-11-12 11:03:00
43509    21223    675    2016-11-12 08:15:00    2016-11-12 08:15:00
43510    21223    688    2016-11-12 13:53:00    2016-11-12 13:53:00
43511    21223    626    2016-11-12 12:50:00    2016-11-12 12:50:00
43512    21223    724    2016-11-12 14:02:00    2016-11-12 14:02:00
43513    21224    857    2016-11-12 15:31:00    2016-11-12 15:31:00
43514    21224    711    2016-11-12 14:55:00    2016-11-12 14:55:00
43515    21224    683    2016-11-12 23:02:00    2016-11-12 23:02:00
43516    21224    755    2016-11-12 03:51:00    2016-11-12 03:51:00
43517    21224    840    2016-11-12 03:47:00    2016-11-12 03:47:00
43518    21225    862    2016-11-12 04:46:00    2016-11-12 04:46:00
43519    21225    825    2016-11-12 19:25:00    2016-11-12 19:25:00
43520    21225    590    2016-11-12 19:14:00    2016-11-12 19:14:00
43521    21225    787    2016-11-12 16:39:00    2016-11-12 16:39:00
43522    21225    688    2016-11-12 03:17:00    2016-11-12 03:17:00
43523    21226    539    2016-11-12 08:52:00    2016-11-12 08:52:00
43524    21226    474    2016-11-12 12:00:00    2016-11-12 12:00:00
43525    21226    788    2016-11-12 21:28:00    2016-11-12 21:28:00
43526    21226    618    2016-11-12 03:51:00    2016-11-12 03:51:00
43527    21226    503    2016-11-12 05:38:00    2016-11-12 05:38:00
43528    21227    502    2016-11-12 23:35:00    2016-11-12 23:35:00
43529    21227    777    2016-11-12 04:01:00    2016-11-12 04:01:00
43530    21227    624    2016-11-12 01:52:00    2016-11-12 01:52:00
43531    21227    601    2016-11-12 19:39:00    2016-11-12 19:39:00
43532    21227    690    2016-11-12 14:09:00    2016-11-12 14:09:00
43533    21228    513    2016-11-12 21:18:00    2016-11-12 21:18:00
43534    21228    519    2016-11-12 19:19:00    2016-11-12 19:19:00
43535    21228    883    2016-11-12 23:00:00    2016-11-12 23:00:00
43536    21228    531    2016-11-12 18:43:00    2016-11-12 18:43:00
43537    21228    694    2016-11-12 12:18:00    2016-11-12 12:18:00
43538    21229    583    2016-11-12 10:33:00    2016-11-12 10:33:00
43539    21229    753    2016-11-12 03:05:00    2016-11-12 03:05:00
43540    21229    817    2016-11-12 10:50:00    2016-11-12 10:50:00
43541    21229    828    2016-11-12 23:10:00    2016-11-12 23:10:00
43542    21229    683    2016-11-12 20:42:00    2016-11-12 20:42:00
43543    21230    874    2016-11-12 18:05:00    2016-11-12 18:05:00
43544    21230    885    2016-11-12 20:00:00    2016-11-12 20:00:00
43545    21230    611    2016-11-12 07:01:00    2016-11-12 07:01:00
43546    21230    927    2016-11-12 16:03:00    2016-11-12 16:03:00
43547    21230    547    2016-11-12 08:01:00    2016-11-12 08:01:00
43548    21231    836    2016-11-12 20:30:00    2016-11-12 20:30:00
43549    21231    890    2016-11-12 19:06:00    2016-11-12 19:06:00
43550    21231    769    2016-11-12 02:04:00    2016-11-12 02:04:00
43551    21231    774    2016-11-12 09:43:00    2016-11-12 09:43:00
43552    21231    960    2016-11-12 11:15:00    2016-11-12 11:15:00
43553    21232    754    2016-11-12 13:57:00    2016-11-12 13:57:00
43554    21232    482    2016-11-12 11:03:00    2016-11-12 11:03:00
43555    21232    551    2016-11-12 05:20:00    2016-11-12 05:20:00
43556    21232    720    2016-11-12 18:51:00    2016-11-12 18:51:00
43557    21232    785    2016-11-12 11:34:00    2016-11-12 11:34:00
43558    21233    777    2016-11-12 05:20:00    2016-11-12 05:20:00
43559    21233    865    2016-11-12 06:04:00    2016-11-12 06:04:00
43560    21233    525    2016-11-12 04:00:00    2016-11-12 04:00:00
43561    21233    898    2016-11-12 22:54:00    2016-11-12 22:54:00
43562    21233    487    2016-11-12 17:08:00    2016-11-12 17:08:00
43563    21234    601    2016-11-12 08:31:00    2016-11-12 08:31:00
43564    21234    526    2016-11-12 07:54:00    2016-11-12 07:54:00
43565    21234    918    2016-11-12 08:44:00    2016-11-12 08:44:00
43566    21234    490    2016-11-12 13:32:00    2016-11-12 13:32:00
43567    21234    814    2016-11-12 01:46:00    2016-11-12 01:46:00
43568    21235    651    2016-11-12 14:41:00    2016-11-12 14:41:00
43569    21235    959    2016-11-12 01:07:00    2016-11-12 01:07:00
43570    21235    708    2016-11-12 19:13:00    2016-11-12 19:13:00
43571    21235    662    2016-11-12 06:06:00    2016-11-12 06:06:00
43572    21235    630    2016-11-12 08:30:00    2016-11-12 08:30:00
43573    21236    616    2016-11-12 21:53:00    2016-11-12 21:53:00
43574    21236    525    2016-11-12 13:47:00    2016-11-12 13:47:00
43575    21236    643    2016-11-12 19:30:00    2016-11-12 19:30:00
43576    21236    605    2016-11-12 22:59:00    2016-11-12 22:59:00
43577    21236    529    2016-11-12 13:32:00    2016-11-12 13:32:00
43578    21237    603    2016-11-12 07:14:00    2016-11-12 07:14:00
43579    21237    469    2016-11-12 22:05:00    2016-11-12 22:05:00
43580    21237    816    2016-11-12 22:27:00    2016-11-12 22:27:00
43581    21237    864    2016-11-12 23:50:00    2016-11-12 23:50:00
43582    21237    723    2016-11-12 07:03:00    2016-11-12 07:03:00
43583    21238    718    2016-11-12 01:41:00    2016-11-12 01:41:00
43584    21238    526    2016-11-12 17:16:00    2016-11-12 17:16:00
43585    21238    613    2016-11-12 20:07:00    2016-11-12 20:07:00
43586    21238    941    2016-11-12 08:31:00    2016-11-12 08:31:00
43587    21238    914    2016-11-12 23:31:00    2016-11-12 23:31:00
43588    21239    463    2016-11-12 12:26:00    2016-11-12 12:26:00
43589    21239    640    2016-11-12 03:08:00    2016-11-12 03:08:00
43590    21239    480    2016-11-12 08:59:00    2016-11-12 08:59:00
43591    21239    711    2016-11-12 22:55:00    2016-11-12 22:55:00
43592    21239    863    2016-11-12 08:43:00    2016-11-12 08:43:00
43593    21240    669    2016-11-12 13:19:00    2016-11-12 13:19:00
43594    21240    856    2016-11-12 15:11:00    2016-11-12 15:11:00
43595    21240    508    2016-11-12 04:34:00    2016-11-12 04:34:00
43596    21240    674    2016-11-12 16:35:00    2016-11-12 16:35:00
43597    21240    707    2016-11-12 22:36:00    2016-11-12 22:36:00
43598    21241    497    2016-11-12 23:40:00    2016-11-12 23:40:00
43599    21241    566    2016-11-12 05:55:00    2016-11-12 05:55:00
43600    21241    804    2016-11-12 09:46:00    2016-11-12 09:46:00
43601    21241    775    2016-11-12 21:39:00    2016-11-12 21:39:00
43602    21241    570    2016-11-12 12:50:00    2016-11-12 12:50:00
43603    21242    716    2016-11-12 15:39:00    2016-11-12 15:39:00
43604    21242    953    2016-11-12 08:54:00    2016-11-12 08:54:00
43605    21242    494    2016-11-12 05:45:00    2016-11-12 05:45:00
43606    21242    521    2016-11-12 09:54:00    2016-11-12 09:54:00
43607    21242    710    2016-11-12 20:11:00    2016-11-12 20:11:00
43608    21243    576    2016-11-12 03:44:00    2016-11-12 03:44:00
43609    21243    893    2016-11-12 09:17:00    2016-11-12 09:17:00
43610    21243    548    2016-11-12 20:03:00    2016-11-12 20:03:00
43611    21243    511    2016-11-12 11:11:00    2016-11-12 11:11:00
43612    21243    762    2016-11-12 15:10:00    2016-11-12 15:10:00
43613    21244    761    2016-11-12 02:48:00    2016-11-12 02:48:00
43614    21244    926    2016-11-12 13:35:00    2016-11-12 13:35:00
43615    21244    738    2016-11-12 17:53:00    2016-11-12 17:53:00
43616    21244    659    2016-11-12 16:21:00    2016-11-12 16:21:00
43617    21244    472    2016-11-12 15:06:00    2016-11-12 15:06:00
43618    21245    527    2016-11-12 03:15:00    2016-11-12 03:15:00
43619    21245    774    2016-11-12 16:20:00    2016-11-12 16:20:00
43620    21245    644    2016-11-12 22:18:00    2016-11-12 22:18:00
43621    21245    656    2016-11-12 15:59:00    2016-11-12 15:59:00
43622    21245    825    2016-11-12 05:02:00    2016-11-12 05:02:00
43623    21246    530    2016-11-12 12:08:00    2016-11-12 12:08:00
43624    21246    584    2016-11-12 23:19:00    2016-11-12 23:19:00
43625    21246    882    2016-11-12 09:45:00    2016-11-12 09:45:00
43626    21246    659    2016-11-12 06:40:00    2016-11-12 06:40:00
43627    21246    491    2016-11-12 20:46:00    2016-11-12 20:46:00
43628    21247    540    2016-11-12 13:42:00    2016-11-12 13:42:00
43629    21247    815    2016-11-12 19:46:00    2016-11-12 19:46:00
43630    21247    542    2016-11-12 14:26:00    2016-11-12 14:26:00
43631    21247    806    2016-11-12 10:00:00    2016-11-12 10:00:00
43632    21247    484    2016-11-12 04:32:00    2016-11-12 04:32:00
43633    21248    939    2016-11-12 05:02:00    2016-11-12 05:02:00
43634    21248    817    2016-11-12 01:02:00    2016-11-12 01:02:00
43635    21248    477    2016-11-12 01:19:00    2016-11-12 01:19:00
43636    21248    472    2016-11-12 12:50:00    2016-11-12 12:50:00
43637    21248    767    2016-11-12 16:06:00    2016-11-12 16:06:00
43638    21249    723    2016-11-12 23:42:00    2016-11-12 23:42:00
43639    21249    573    2016-11-12 01:14:00    2016-11-12 01:14:00
43640    21249    545    2016-11-12 01:40:00    2016-11-12 01:40:00
43641    21249    534    2016-11-12 13:58:00    2016-11-12 13:58:00
43642    21249    954    2016-11-12 20:30:00    2016-11-12 20:30:00
43643    21250    920    2016-11-12 17:48:00    2016-11-12 17:48:00
43644    21250    849    2016-11-12 04:29:00    2016-11-12 04:29:00
43645    21250    516    2016-11-12 19:05:00    2016-11-12 19:05:00
43646    21250    714    2016-11-12 18:38:00    2016-11-12 18:38:00
43647    21250    515    2016-11-12 23:38:00    2016-11-12 23:38:00
43648    21251    555    2016-11-12 01:31:00    2016-11-12 01:31:00
43649    21251    889    2016-11-12 03:12:00    2016-11-12 03:12:00
43650    21251    621    2016-11-12 10:53:00    2016-11-12 10:53:00
43651    21251    747    2016-11-12 19:34:00    2016-11-12 19:34:00
43652    21251    829    2016-11-12 23:35:00    2016-11-12 23:35:00
43653    21252    666    2016-11-13 08:16:00    2016-11-13 08:16:00
43654    21252    791    2016-11-13 19:50:00    2016-11-13 19:50:00
43655    21252    769    2016-11-13 16:43:00    2016-11-13 16:43:00
43656    21252    628    2016-11-13 11:03:00    2016-11-13 11:03:00
43657    21252    747    2016-11-13 23:02:00    2016-11-13 23:02:00
43658    21253    844    2016-11-13 21:32:00    2016-11-13 21:32:00
43659    21253    846    2016-11-13 14:48:00    2016-11-13 14:48:00
43660    21253    665    2016-11-13 07:44:00    2016-11-13 07:44:00
43661    21253    527    2016-11-13 01:46:00    2016-11-13 01:46:00
43662    21253    931    2016-11-13 19:22:00    2016-11-13 19:22:00
43663    21254    590    2016-11-13 20:57:00    2016-11-13 20:57:00
43664    21254    808    2016-11-13 13:31:00    2016-11-13 13:31:00
43665    21254    531    2016-11-13 15:19:00    2016-11-13 15:19:00
43666    21254    595    2016-11-13 16:20:00    2016-11-13 16:20:00
43667    21254    765    2016-11-13 11:41:00    2016-11-13 11:41:00
43668    21255    666    2016-11-13 08:07:00    2016-11-13 08:07:00
43669    21255    500    2016-11-13 20:34:00    2016-11-13 20:34:00
43670    21255    577    2016-11-13 20:15:00    2016-11-13 20:15:00
43671    21255    780    2016-11-13 22:02:00    2016-11-13 22:02:00
43672    21255    501    2016-11-13 22:22:00    2016-11-13 22:22:00
43673    21256    525    2016-11-13 01:06:00    2016-11-13 01:06:00
43674    21256    787    2016-11-13 03:27:00    2016-11-13 03:27:00
43675    21256    614    2016-11-13 08:16:00    2016-11-13 08:16:00
43676    21256    655    2016-11-13 09:18:00    2016-11-13 09:18:00
43677    21256    544    2016-11-13 08:26:00    2016-11-13 08:26:00
43678    21257    876    2016-11-13 06:46:00    2016-11-13 06:46:00
43679    21257    780    2016-11-13 14:14:00    2016-11-13 14:14:00
43680    21257    605    2016-11-13 20:20:00    2016-11-13 20:20:00
43681    21257    663    2016-11-13 07:31:00    2016-11-13 07:31:00
43682    21257    940    2016-11-13 16:42:00    2016-11-13 16:42:00
43683    21258    472    2016-11-13 13:41:00    2016-11-13 13:41:00
43684    21258    630    2016-11-13 05:19:00    2016-11-13 05:19:00
43685    21258    959    2016-11-13 14:18:00    2016-11-13 14:18:00
43686    21258    543    2016-11-13 05:51:00    2016-11-13 05:51:00
43687    21258    668    2016-11-13 06:26:00    2016-11-13 06:26:00
43688    21259    906    2016-11-13 10:39:00    2016-11-13 10:39:00
43689    21259    907    2016-11-13 12:55:00    2016-11-13 12:55:00
43690    21259    884    2016-11-13 20:04:00    2016-11-13 20:04:00
43691    21259    811    2016-11-13 15:02:00    2016-11-13 15:02:00
43692    21259    504    2016-11-13 23:56:00    2016-11-13 23:56:00
43693    21260    721    2016-11-13 12:01:00    2016-11-13 12:01:00
43694    21260    637    2016-11-13 16:21:00    2016-11-13 16:21:00
43695    21260    627    2016-11-13 05:31:00    2016-11-13 05:31:00
43696    21260    725    2016-11-13 04:52:00    2016-11-13 04:52:00
43697    21260    671    2016-11-13 14:08:00    2016-11-13 14:08:00
43698    21261    557    2016-11-13 04:42:00    2016-11-13 04:42:00
43699    21261    645    2016-11-13 16:30:00    2016-11-13 16:30:00
43700    21261    465    2016-11-13 16:28:00    2016-11-13 16:28:00
43701    21261    820    2016-11-13 23:30:00    2016-11-13 23:30:00
43702    21261    667    2016-11-13 08:16:00    2016-11-13 08:16:00
43703    21262    937    2016-11-13 12:28:00    2016-11-13 12:28:00
43704    21262    632    2016-11-13 15:33:00    2016-11-13 15:33:00
43705    21262    798    2016-11-13 15:13:00    2016-11-13 15:13:00
43706    21262    722    2016-11-13 08:41:00    2016-11-13 08:41:00
43707    21262    839    2016-11-13 21:41:00    2016-11-13 21:41:00
43708    21263    760    2016-11-13 23:34:00    2016-11-13 23:34:00
43709    21263    595    2016-11-13 01:24:00    2016-11-13 01:24:00
43710    21263    807    2016-11-13 07:36:00    2016-11-13 07:36:00
43711    21263    770    2016-11-13 22:07:00    2016-11-13 22:07:00
43712    21263    589    2016-11-13 11:02:00    2016-11-13 11:02:00
43713    21264    486    2016-11-13 14:13:00    2016-11-13 14:13:00
43714    21264    788    2016-11-13 05:38:00    2016-11-13 05:38:00
43715    21264    521    2016-11-13 15:29:00    2016-11-13 15:29:00
43716    21264    743    2016-11-13 01:34:00    2016-11-13 01:34:00
43717    21264    944    2016-11-13 23:34:00    2016-11-13 23:34:00
43718    21265    783    2016-11-13 18:54:00    2016-11-13 18:54:00
43719    21265    555    2016-11-13 07:47:00    2016-11-13 07:47:00
43720    21265    521    2016-11-13 07:52:00    2016-11-13 07:52:00
43721    21265    868    2016-11-13 22:03:00    2016-11-13 22:03:00
43722    21265    851    2016-11-13 10:20:00    2016-11-13 10:20:00
43723    21266    569    2016-11-13 08:58:00    2016-11-13 08:58:00
43724    21266    624    2016-11-13 13:56:00    2016-11-13 13:56:00
43725    21266    868    2016-11-13 16:46:00    2016-11-13 16:46:00
43726    21266    567    2016-11-13 08:37:00    2016-11-13 08:37:00
43727    21266    945    2016-11-13 09:36:00    2016-11-13 09:36:00
43728    21267    574    2016-11-13 03:50:00    2016-11-13 03:50:00
43729    21267    527    2016-11-13 19:29:00    2016-11-13 19:29:00
43730    21267    711    2016-11-13 06:43:00    2016-11-13 06:43:00
43731    21267    616    2016-11-13 02:46:00    2016-11-13 02:46:00
43732    21267    833    2016-11-13 21:10:00    2016-11-13 21:10:00
43733    21268    787    2016-11-13 16:23:00    2016-11-13 16:23:00
43734    21268    950    2016-11-13 21:15:00    2016-11-13 21:15:00
43735    21268    481    2016-11-13 22:10:00    2016-11-13 22:10:00
43736    21268    755    2016-11-13 18:56:00    2016-11-13 18:56:00
43737    21268    862    2016-11-13 12:06:00    2016-11-13 12:06:00
43738    21269    948    2016-11-13 15:07:00    2016-11-13 15:07:00
43739    21269    664    2016-11-13 03:41:00    2016-11-13 03:41:00
43740    21269    491    2016-11-13 13:50:00    2016-11-13 13:50:00
43741    21269    503    2016-11-13 04:32:00    2016-11-13 04:32:00
43742    21269    634    2016-11-13 01:04:00    2016-11-13 01:04:00
43743    21270    819    2016-11-13 05:22:00    2016-11-13 05:22:00
43744    21270    666    2016-11-13 10:06:00    2016-11-13 10:06:00
43745    21270    943    2016-11-13 12:15:00    2016-11-13 12:15:00
43746    21270    875    2016-11-13 03:00:00    2016-11-13 03:00:00
43747    21270    706    2016-11-13 18:20:00    2016-11-13 18:20:00
43748    21271    795    2016-11-13 18:25:00    2016-11-13 18:25:00
43749    21271    806    2016-11-13 05:33:00    2016-11-13 05:33:00
43750    21271    724    2016-11-13 07:34:00    2016-11-13 07:34:00
43751    21271    956    2016-11-13 21:11:00    2016-11-13 21:11:00
43752    21271    799    2016-11-13 23:06:00    2016-11-13 23:06:00
43753    21272    820    2016-11-13 17:52:00    2016-11-13 17:52:00
43754    21272    880    2016-11-13 02:09:00    2016-11-13 02:09:00
43755    21272    855    2016-11-13 01:26:00    2016-11-13 01:26:00
43756    21272    799    2016-11-13 12:17:00    2016-11-13 12:17:00
43757    21272    514    2016-11-13 13:06:00    2016-11-13 13:06:00
43758    21273    556    2016-11-13 14:50:00    2016-11-13 14:50:00
43759    21273    505    2016-11-13 09:26:00    2016-11-13 09:26:00
43760    21273    576    2016-11-13 18:28:00    2016-11-13 18:28:00
43761    21273    617    2016-11-13 12:00:00    2016-11-13 12:00:00
43762    21273    872    2016-11-13 11:59:00    2016-11-13 11:59:00
43763    21274    610    2016-11-13 14:24:00    2016-11-13 14:24:00
43764    21274    887    2016-11-13 20:46:00    2016-11-13 20:46:00
43765    21274    535    2016-11-13 02:30:00    2016-11-13 02:30:00
43766    21274    754    2016-11-13 20:02:00    2016-11-13 20:02:00
43767    21274    564    2016-11-13 02:50:00    2016-11-13 02:50:00
43768    21275    949    2016-11-13 08:15:00    2016-11-13 08:15:00
43769    21275    744    2016-11-13 23:22:00    2016-11-13 23:22:00
43770    21275    618    2016-11-13 11:23:00    2016-11-13 11:23:00
43771    21275    582    2016-11-13 19:31:00    2016-11-13 19:31:00
43772    21275    631    2016-11-13 07:43:00    2016-11-13 07:43:00
43773    21276    535    2016-11-13 10:56:00    2016-11-13 10:56:00
43774    21276    499    2016-11-13 23:41:00    2016-11-13 23:41:00
43775    21276    692    2016-11-13 17:24:00    2016-11-13 17:24:00
43776    21276    771    2016-11-13 17:59:00    2016-11-13 17:59:00
43777    21276    891    2016-11-13 18:42:00    2016-11-13 18:42:00
43778    21277    466    2016-11-13 03:38:00    2016-11-13 03:38:00
43779    21277    961    2016-11-13 10:42:00    2016-11-13 10:42:00
43780    21277    495    2016-11-13 19:34:00    2016-11-13 19:34:00
43781    21277    728    2016-11-13 07:54:00    2016-11-13 07:54:00
43782    21277    732    2016-11-13 01:14:00    2016-11-13 01:14:00
43783    21278    638    2016-11-13 08:17:00    2016-11-13 08:17:00
43784    21278    914    2016-11-13 10:34:00    2016-11-13 10:34:00
43785    21278    941    2016-11-13 20:59:00    2016-11-13 20:59:00
43786    21278    674    2016-11-13 22:13:00    2016-11-13 22:13:00
43787    21278    644    2016-11-13 21:08:00    2016-11-13 21:08:00
43788    21279    776    2016-11-13 23:43:00    2016-11-13 23:43:00
43789    21279    567    2016-11-13 14:01:00    2016-11-13 14:01:00
43790    21279    834    2016-11-13 18:10:00    2016-11-13 18:10:00
43791    21279    768    2016-11-13 20:04:00    2016-11-13 20:04:00
43792    21279    631    2016-11-14 00:00:00    2016-11-14 00:00:00
43793    21280    669    2016-11-13 12:32:00    2016-11-13 12:32:00
43794    21280    909    2016-11-13 18:06:00    2016-11-13 18:06:00
43795    21280    934    2016-11-13 22:08:00    2016-11-13 22:08:00
43796    21280    655    2016-11-13 09:47:00    2016-11-13 09:47:00
43797    21280    922    2016-11-13 19:16:00    2016-11-13 19:16:00
43798    21281    594    2016-11-13 15:49:00    2016-11-13 15:49:00
43799    21281    612    2016-11-13 07:44:00    2016-11-13 07:44:00
43800    21281    688    2016-11-13 02:24:00    2016-11-13 02:24:00
43801    21281    560    2016-11-13 12:58:00    2016-11-13 12:58:00
43802    21281    609    2016-11-13 23:00:00    2016-11-13 23:00:00
43803    21282    776    2016-11-13 04:35:00    2016-11-13 04:35:00
43804    21282    831    2016-11-13 21:20:00    2016-11-13 21:20:00
43805    21282    620    2016-11-13 07:02:00    2016-11-13 07:02:00
43806    21282    951    2016-11-13 20:15:00    2016-11-13 20:15:00
43807    21282    740    2016-11-13 10:07:00    2016-11-13 10:07:00
43808    21283    794    2016-11-13 03:27:00    2016-11-13 03:27:00
43809    21283    603    2016-11-13 06:22:00    2016-11-13 06:22:00
43810    21283    845    2016-11-13 07:53:00    2016-11-13 07:53:00
43811    21283    540    2016-11-13 03:41:00    2016-11-13 03:41:00
43812    21283    663    2016-11-13 16:00:00    2016-11-13 16:00:00
43813    21284    906    2016-11-13 12:00:00    2016-11-13 12:00:00
43814    21284    817    2016-11-13 04:40:00    2016-11-13 04:40:00
43815    21284    507    2016-11-13 13:50:00    2016-11-13 13:50:00
43816    21284    527    2016-11-13 09:37:00    2016-11-13 09:37:00
43817    21284    793    2016-11-13 09:27:00    2016-11-13 09:27:00
43818    21285    487    2016-11-13 13:22:00    2016-11-13 13:22:00
43819    21285    849    2016-11-13 22:30:00    2016-11-13 22:30:00
43820    21285    490    2016-11-13 13:19:00    2016-11-13 13:19:00
43821    21285    669    2016-11-13 02:42:00    2016-11-13 02:42:00
43822    21285    509    2016-11-13 19:01:00    2016-11-13 19:01:00
43823    21286    585    2016-11-13 14:55:00    2016-11-13 14:55:00
43824    21286    763    2016-11-13 01:34:00    2016-11-13 01:34:00
43825    21286    587    2016-11-13 20:20:00    2016-11-13 20:20:00
43826    21286    651    2016-11-13 17:35:00    2016-11-13 17:35:00
43827    21286    880    2016-11-13 12:43:00    2016-11-13 12:43:00
43828    21287    861    2016-11-13 22:20:00    2016-11-13 22:20:00
43829    21287    681    2016-11-13 06:12:00    2016-11-13 06:12:00
43830    21287    691    2016-11-13 23:51:00    2016-11-13 23:51:00
43831    21287    730    2016-11-13 09:23:00    2016-11-13 09:23:00
43832    21287    521    2016-11-13 01:23:00    2016-11-13 01:23:00
43833    21288    922    2016-11-13 10:00:00    2016-11-13 10:00:00
43834    21288    774    2016-11-13 05:49:00    2016-11-13 05:49:00
43835    21288    781    2016-11-13 07:22:00    2016-11-13 07:22:00
43836    21288    516    2016-11-13 20:38:00    2016-11-13 20:38:00
43837    21288    754    2016-11-13 13:25:00    2016-11-13 13:25:00
43838    21289    832    2016-11-13 22:13:00    2016-11-13 22:13:00
43839    21289    483    2016-11-13 15:04:00    2016-11-13 15:04:00
43840    21289    919    2016-11-13 23:22:00    2016-11-13 23:22:00
43841    21289    771    2016-11-13 22:48:00    2016-11-13 22:48:00
43842    21289    724    2016-11-13 04:35:00    2016-11-13 04:35:00
43843    21290    580    2016-11-13 03:09:00    2016-11-13 03:09:00
43844    21290    715    2016-11-13 19:53:00    2016-11-13 19:53:00
43845    21290    792    2016-11-13 13:32:00    2016-11-13 13:32:00
43846    21290    708    2016-11-13 04:00:00    2016-11-13 04:00:00
43847    21290    789    2016-11-13 15:04:00    2016-11-13 15:04:00
43848    21291    631    2016-11-13 17:01:00    2016-11-13 17:01:00
43849    21291    628    2016-11-13 08:51:00    2016-11-13 08:51:00
43850    21291    916    2016-11-13 17:57:00    2016-11-13 17:57:00
43851    21291    678    2016-11-13 13:48:00    2016-11-13 13:48:00
43852    21291    586    2016-11-13 20:39:00    2016-11-13 20:39:00
43853    21292    899    2016-11-13 14:52:00    2016-11-13 14:52:00
43854    21292    679    2016-11-13 19:06:00    2016-11-13 19:06:00
43855    21292    813    2016-11-13 21:58:00    2016-11-13 21:58:00
43856    21292    499    2016-11-13 01:34:00    2016-11-13 01:34:00
43857    21292    957    2016-11-13 17:15:00    2016-11-13 17:15:00
43858    21293    463    2016-11-13 01:39:00    2016-11-13 01:39:00
43859    21293    660    2016-11-13 23:38:00    2016-11-13 23:38:00
43860    21293    576    2016-11-13 17:44:00    2016-11-13 17:44:00
43861    21293    805    2016-11-13 11:46:00    2016-11-13 11:46:00
43862    21293    830    2016-11-13 05:20:00    2016-11-13 05:20:00
43863    21294    528    2016-11-13 22:46:00    2016-11-13 22:46:00
43864    21294    631    2016-11-13 18:36:00    2016-11-13 18:36:00
43865    21294    897    2016-11-13 16:11:00    2016-11-13 16:11:00
43866    21294    684    2016-11-13 17:38:00    2016-11-13 17:38:00
43867    21294    730    2016-11-13 12:30:00    2016-11-13 12:30:00
43868    21295    840    2016-11-13 09:24:00    2016-11-13 09:24:00
43869    21295    954    2016-11-13 22:30:00    2016-11-13 22:30:00
43870    21295    530    2016-11-13 07:59:00    2016-11-13 07:59:00
43871    21295    703    2016-11-13 04:52:00    2016-11-13 04:52:00
43872    21295    715    2016-11-13 20:14:00    2016-11-13 20:14:00
43873    21296    945    2016-11-13 09:13:00    2016-11-13 09:13:00
43874    21296    535    2016-11-13 02:26:00    2016-11-13 02:26:00
43875    21296    713    2016-11-13 22:51:00    2016-11-13 22:51:00
43876    21296    884    2016-11-13 10:23:00    2016-11-13 10:23:00
43877    21296    537    2016-11-13 18:02:00    2016-11-13 18:02:00
43878    21297    768    2016-11-13 16:46:00    2016-11-13 16:46:00
43879    21297    853    2016-11-13 10:17:00    2016-11-13 10:17:00
43880    21297    840    2016-11-13 08:13:00    2016-11-13 08:13:00
43881    21297    545    2016-11-13 21:06:00    2016-11-13 21:06:00
43882    21297    490    2016-11-13 21:51:00    2016-11-13 21:51:00
43883    21298    574    2016-11-13 15:51:00    2016-11-13 15:51:00
43884    21298    946    2016-11-13 22:13:00    2016-11-13 22:13:00
43885    21298    493    2016-11-13 16:26:00    2016-11-13 16:26:00
43886    21298    785    2016-11-13 23:31:00    2016-11-13 23:31:00
43887    21298    759    2016-11-13 08:33:00    2016-11-13 08:33:00
43888    21299    806    2016-11-13 13:40:00    2016-11-13 13:40:00
43889    21299    913    2016-11-13 22:39:00    2016-11-13 22:39:00
43890    21299    535    2016-11-13 20:58:00    2016-11-13 20:58:00
43891    21299    610    2016-11-13 13:52:00    2016-11-13 13:52:00
43892    21299    570    2016-11-13 13:47:00    2016-11-13 13:47:00
43893    21300    928    2016-11-13 17:45:00    2016-11-13 17:45:00
43894    21300    491    2016-11-13 06:51:00    2016-11-13 06:51:00
43895    21300    863    2016-11-13 07:47:00    2016-11-13 07:47:00
43896    21300    545    2016-11-13 03:04:00    2016-11-13 03:04:00
43897    21300    496    2016-11-13 23:15:00    2016-11-13 23:15:00
43898    21301    958    2016-11-13 18:20:00    2016-11-13 18:20:00
43899    21301    951    2016-11-13 04:38:00    2016-11-13 04:38:00
43900    21301    799    2016-11-13 14:28:00    2016-11-13 14:28:00
43901    21301    762    2016-11-13 08:02:00    2016-11-13 08:02:00
43902    21301    916    2016-11-13 05:16:00    2016-11-13 05:16:00
43903    21302    702    2016-11-13 17:57:00    2016-11-13 17:57:00
43904    21302    754    2016-11-13 17:51:00    2016-11-13 17:51:00
43905    21302    921    2016-11-13 23:46:00    2016-11-13 23:46:00
43906    21302    736    2016-11-13 12:32:00    2016-11-13 12:32:00
43907    21302    942    2016-11-13 22:55:00    2016-11-13 22:55:00
43908    21303    916    2016-11-13 11:02:00    2016-11-13 11:02:00
43909    21303    913    2016-11-13 05:36:00    2016-11-13 05:36:00
43910    21303    582    2016-11-13 04:28:00    2016-11-13 04:28:00
43911    21303    776    2016-11-13 13:06:00    2016-11-13 13:06:00
43912    21303    545    2016-11-13 12:55:00    2016-11-13 12:55:00
43913    21304    682    2016-11-13 12:00:00    2016-11-13 12:00:00
43914    21304    951    2016-11-13 07:39:00    2016-11-13 07:39:00
43915    21304    767    2016-11-13 05:29:00    2016-11-13 05:29:00
43916    21304    855    2016-11-13 07:22:00    2016-11-13 07:22:00
43917    21304    943    2016-11-13 15:12:00    2016-11-13 15:12:00
43918    21305    654    2016-11-13 20:13:00    2016-11-13 20:13:00
43919    21305    692    2016-11-13 18:40:00    2016-11-13 18:40:00
43920    21305    474    2016-11-13 09:38:00    2016-11-13 09:38:00
43921    21305    800    2016-11-13 19:37:00    2016-11-13 19:37:00
43922    21305    857    2016-11-13 07:57:00    2016-11-13 07:57:00
43923    21306    777    2016-11-13 15:47:00    2016-11-13 15:47:00
43924    21306    859    2016-11-13 05:35:00    2016-11-13 05:35:00
43925    21306    745    2016-11-13 09:03:00    2016-11-13 09:03:00
43926    21306    616    2016-11-13 01:56:00    2016-11-13 01:56:00
43927    21306    526    2016-11-13 08:19:00    2016-11-13 08:19:00
43928    21307    512    2016-11-13 21:35:00    2016-11-13 21:35:00
43929    21307    718    2016-11-13 01:51:00    2016-11-13 01:51:00
43930    21307    563    2016-11-13 01:25:00    2016-11-13 01:25:00
43931    21307    866    2016-11-13 14:56:00    2016-11-13 14:56:00
43932    21307    719    2016-11-13 12:44:00    2016-11-13 12:44:00
43933    21308    876    2016-11-13 10:52:00    2016-11-13 10:52:00
43934    21308    819    2016-11-13 14:11:00    2016-11-13 14:11:00
43935    21308    614    2016-11-13 03:13:00    2016-11-13 03:13:00
43936    21308    623    2016-11-13 09:54:00    2016-11-13 09:54:00
43937    21308    724    2016-11-13 07:02:00    2016-11-13 07:02:00
43938    21309    761    2016-11-13 19:23:00    2016-11-13 19:23:00
43939    21309    765    2016-11-13 21:55:00    2016-11-13 21:55:00
43940    21309    675    2016-11-13 06:30:00    2016-11-13 06:30:00
43941    21309    883    2016-11-13 03:39:00    2016-11-13 03:39:00
43942    21309    921    2016-11-13 06:40:00    2016-11-13 06:40:00
43943    21310    480    2016-11-13 19:00:00    2016-11-13 19:00:00
43944    21310    780    2016-11-13 05:08:00    2016-11-13 05:08:00
43945    21310    611    2016-11-13 05:34:00    2016-11-13 05:34:00
43946    21310    782    2016-11-13 01:28:00    2016-11-13 01:28:00
43947    21310    578    2016-11-13 15:16:00    2016-11-13 15:16:00
43948    21311    725    2016-11-13 22:18:00    2016-11-13 22:18:00
43949    21311    798    2016-11-13 05:14:00    2016-11-13 05:14:00
43950    21311    788    2016-11-13 08:05:00    2016-11-13 08:05:00
43951    21311    770    2016-11-13 02:47:00    2016-11-13 02:47:00
43952    21311    871    2016-11-13 15:08:00    2016-11-13 15:08:00
43953    21312    799    2016-11-13 03:13:00    2016-11-13 03:13:00
43954    21312    898    2016-11-13 07:06:00    2016-11-13 07:06:00
43955    21312    877    2016-11-13 18:43:00    2016-11-13 18:43:00
43956    21312    831    2016-11-13 21:57:00    2016-11-13 21:57:00
43957    21312    651    2016-11-13 22:48:00    2016-11-13 22:48:00
43958    21313    662    2016-11-13 17:55:00    2016-11-13 17:55:00
43959    21313    727    2016-11-13 15:15:00    2016-11-13 15:15:00
43960    21313    497    2016-11-13 21:33:00    2016-11-13 21:33:00
43961    21313    654    2016-11-13 16:29:00    2016-11-13 16:29:00
43962    21313    564    2016-11-13 23:29:00    2016-11-13 23:29:00
43963    21314    473    2016-11-13 15:26:00    2016-11-13 15:26:00
43964    21314    600    2016-11-13 10:19:00    2016-11-13 10:19:00
43965    21314    479    2016-11-13 06:57:00    2016-11-13 06:57:00
43966    21314    660    2016-11-13 21:37:00    2016-11-13 21:37:00
43967    21314    875    2016-11-13 23:53:00    2016-11-13 23:53:00
43968    21315    794    2016-11-13 04:24:00    2016-11-13 04:24:00
43969    21315    924    2016-11-13 07:30:00    2016-11-13 07:30:00
43970    21315    941    2016-11-13 21:09:00    2016-11-13 21:09:00
43971    21315    910    2016-11-13 12:10:00    2016-11-13 12:10:00
43972    21315    677    2016-11-13 05:20:00    2016-11-13 05:20:00
43973    21316    503    2016-11-13 17:11:00    2016-11-13 17:11:00
43974    21316    897    2016-11-13 06:09:00    2016-11-13 06:09:00
43975    21316    525    2016-11-13 15:08:00    2016-11-13 15:08:00
43976    21316    887    2016-11-13 04:26:00    2016-11-13 04:26:00
43977    21316    850    2016-11-13 11:29:00    2016-11-13 11:29:00
43978    21317    901    2016-11-13 07:36:00    2016-11-13 07:36:00
43979    21317    912    2016-11-13 01:53:00    2016-11-13 01:53:00
43980    21317    531    2016-11-13 20:53:00    2016-11-13 20:53:00
43981    21317    516    2016-11-13 22:02:00    2016-11-13 22:02:00
43982    21317    531    2016-11-13 21:36:00    2016-11-13 21:36:00
43983    21318    852    2016-11-13 16:00:00    2016-11-13 16:00:00
43984    21318    953    2016-11-13 08:16:00    2016-11-13 08:16:00
43985    21318    914    2016-11-13 03:42:00    2016-11-13 03:42:00
43986    21318    464    2016-11-13 17:20:00    2016-11-13 17:20:00
43987    21318    561    2016-11-13 09:51:00    2016-11-13 09:51:00
43988    21319    645    2016-11-13 17:48:00    2016-11-13 17:48:00
43989    21319    477    2016-11-13 16:02:00    2016-11-13 16:02:00
43990    21319    766    2016-11-13 09:50:00    2016-11-13 09:50:00
43991    21319    723    2016-11-13 16:53:00    2016-11-13 16:53:00
43992    21319    634    2016-11-13 16:05:00    2016-11-13 16:05:00
43993    21320    805    2016-11-13 02:05:00    2016-11-13 02:05:00
43994    21320    653    2016-11-13 05:53:00    2016-11-13 05:53:00
43995    21320    938    2016-11-13 20:54:00    2016-11-13 20:54:00
43996    21320    806    2016-11-13 21:41:00    2016-11-13 21:41:00
43997    21320    466    2016-11-13 15:06:00    2016-11-13 15:06:00
43998    21321    471    2016-11-13 04:42:00    2016-11-13 04:42:00
43999    21321    926    2016-11-13 12:02:00    2016-11-13 12:02:00
44000    21321    465    2016-11-13 14:50:00    2016-11-13 14:50:00
44001    21321    763    2016-11-13 09:38:00    2016-11-13 09:38:00
44002    21321    557    2016-11-13 20:34:00    2016-11-13 20:34:00
44003    21322    762    2016-11-13 15:26:00    2016-11-13 15:26:00
44004    21322    544    2016-11-13 10:01:00    2016-11-13 10:01:00
44005    21322    847    2016-11-13 17:01:00    2016-11-13 17:01:00
44006    21322    509    2016-11-13 20:29:00    2016-11-13 20:29:00
44007    21322    636    2016-11-13 21:41:00    2016-11-13 21:41:00
44008    21323    549    2016-11-13 07:44:00    2016-11-13 07:44:00
44009    21323    896    2016-11-13 11:43:00    2016-11-13 11:43:00
44010    21323    564    2016-11-13 03:13:00    2016-11-13 03:13:00
44011    21323    897    2016-11-13 22:01:00    2016-11-13 22:01:00
44012    21323    517    2016-11-13 16:03:00    2016-11-13 16:03:00
44013    21324    850    2016-11-13 02:45:00    2016-11-13 02:45:00
44014    21324    681    2016-11-13 21:42:00    2016-11-13 21:42:00
44015    21324    867    2016-11-13 04:38:00    2016-11-13 04:38:00
44016    21324    564    2016-11-13 20:58:00    2016-11-13 20:58:00
44017    21324    693    2016-11-13 01:42:00    2016-11-13 01:42:00
44018    21325    911    2016-11-13 16:59:00    2016-11-13 16:59:00
44019    21325    848    2016-11-13 22:18:00    2016-11-13 22:18:00
44020    21325    878    2016-11-13 05:16:00    2016-11-13 05:16:00
44021    21325    942    2016-11-13 19:37:00    2016-11-13 19:37:00
44022    21325    672    2016-11-13 02:35:00    2016-11-13 02:35:00
44023    21326    532    2016-11-13 17:37:00    2016-11-13 17:37:00
44024    21326    629    2016-11-13 12:00:00    2016-11-13 12:00:00
44025    21326    765    2016-11-13 05:10:00    2016-11-13 05:10:00
44026    21326    477    2016-11-13 02:06:00    2016-11-13 02:06:00
44027    21326    939    2016-11-13 09:51:00    2016-11-13 09:51:00
44028    21327    880    2016-11-13 18:38:00    2016-11-13 18:38:00
44029    21327    723    2016-11-13 23:51:00    2016-11-13 23:51:00
44030    21327    672    2016-11-13 21:18:00    2016-11-13 21:18:00
44031    21327    611    2016-11-13 17:08:00    2016-11-13 17:08:00
44032    21327    906    2016-11-13 09:55:00    2016-11-13 09:55:00
44033    21328    893    2016-11-13 21:17:00    2016-11-13 21:17:00
44034    21328    720    2016-11-13 21:17:00    2016-11-13 21:17:00
44035    21328    860    2016-11-13 05:08:00    2016-11-13 05:08:00
44036    21328    793    2016-11-13 04:01:00    2016-11-13 04:01:00
44037    21328    892    2016-11-13 05:00:00    2016-11-13 05:00:00
44038    21329    629    2016-11-13 15:38:00    2016-11-13 15:38:00
44039    21329    777    2016-11-13 17:42:00    2016-11-13 17:42:00
44040    21329    815    2016-11-13 20:44:00    2016-11-13 20:44:00
44041    21329    882    2016-11-13 22:53:00    2016-11-13 22:53:00
44042    21329    706    2016-11-13 16:03:00    2016-11-13 16:03:00
44043    21330    820    2016-11-13 04:01:00    2016-11-13 04:01:00
44044    21330    851    2016-11-13 14:33:00    2016-11-13 14:33:00
44045    21330    817    2016-11-13 05:36:00    2016-11-13 05:36:00
44046    21330    898    2016-11-13 01:18:00    2016-11-13 01:18:00
44047    21330    878    2016-11-13 18:51:00    2016-11-13 18:51:00
44048    21331    868    2016-11-13 09:14:00    2016-11-13 09:14:00
44049    21331    674    2016-11-13 04:27:00    2016-11-13 04:27:00
44050    21331    879    2016-11-13 11:40:00    2016-11-13 11:40:00
44051    21331    510    2016-11-13 20:03:00    2016-11-13 20:03:00
44052    21331    922    2016-11-13 22:54:00    2016-11-13 22:54:00
44053    21332    515    2016-11-13 17:48:00    2016-11-13 17:48:00
44054    21332    797    2016-11-13 09:20:00    2016-11-13 09:20:00
44055    21332    624    2016-11-13 11:54:00    2016-11-13 11:54:00
44056    21332    702    2016-11-13 13:13:00    2016-11-13 13:13:00
44057    21332    525    2016-11-13 02:11:00    2016-11-13 02:11:00
44058    21333    716    2016-11-13 01:07:00    2016-11-13 01:07:00
44059    21333    720    2016-11-13 12:13:00    2016-11-13 12:13:00
44060    21333    484    2016-11-13 02:18:00    2016-11-13 02:18:00
44061    21333    472    2016-11-13 13:17:00    2016-11-13 13:17:00
44062    21333    847    2016-11-13 06:12:00    2016-11-13 06:12:00
44063    21334    580    2016-11-13 14:42:00    2016-11-13 14:42:00
44064    21334    840    2016-11-13 18:04:00    2016-11-13 18:04:00
44065    21334    614    2016-11-13 04:16:00    2016-11-13 04:16:00
44066    21334    637    2016-11-13 16:41:00    2016-11-13 16:41:00
44067    21334    508    2016-11-13 18:52:00    2016-11-13 18:52:00
44068    21335    731    2016-11-13 23:20:00    2016-11-13 23:20:00
44069    21335    857    2016-11-13 15:20:00    2016-11-13 15:20:00
44070    21335    704    2016-11-13 19:09:00    2016-11-13 19:09:00
44071    21335    515    2016-11-13 08:34:00    2016-11-13 08:34:00
44072    21335    881    2016-11-13 12:42:00    2016-11-13 12:42:00
44073    21336    772    2016-11-13 21:59:00    2016-11-13 21:59:00
44074    21336    863    2016-11-13 19:32:00    2016-11-13 19:32:00
44075    21336    873    2016-11-13 09:43:00    2016-11-13 09:43:00
44076    21336    465    2016-11-13 01:00:00    2016-11-13 01:00:00
44077    21336    463    2016-11-13 18:27:00    2016-11-13 18:27:00
44078    21337    896    2016-11-13 18:04:00    2016-11-13 18:04:00
44079    21337    567    2016-11-13 08:08:00    2016-11-13 08:08:00
44080    21337    942    2016-11-13 03:55:00    2016-11-13 03:55:00
44081    21337    590    2016-11-13 06:00:00    2016-11-13 06:00:00
44082    21337    739    2016-11-13 15:00:00    2016-11-13 15:00:00
44083    21338    813    2016-11-13 03:47:00    2016-11-13 03:47:00
44084    21338    466    2016-11-13 23:05:00    2016-11-13 23:05:00
44085    21338    611    2016-11-13 17:51:00    2016-11-13 17:51:00
44086    21338    652    2016-11-13 13:57:00    2016-11-13 13:57:00
44087    21338    688    2016-11-13 03:53:00    2016-11-13 03:53:00
44088    21339    577    2016-11-13 18:35:00    2016-11-13 18:35:00
44089    21339    524    2016-11-13 07:54:00    2016-11-13 07:54:00
44090    21339    647    2016-11-13 07:37:00    2016-11-13 07:37:00
44091    21339    887    2016-11-13 13:58:00    2016-11-13 13:58:00
44092    21339    637    2016-11-13 09:26:00    2016-11-13 09:26:00
44093    21340    805    2016-11-13 22:28:00    2016-11-13 22:28:00
44094    21340    678    2016-11-13 03:31:00    2016-11-13 03:31:00
44095    21340    623    2016-11-13 08:09:00    2016-11-13 08:09:00
44096    21340    552    2016-11-13 09:27:00    2016-11-13 09:27:00
44097    21340    853    2016-11-13 22:56:00    2016-11-13 22:56:00
44098    21341    631    2016-11-13 04:42:00    2016-11-13 04:42:00
44099    21341    560    2016-11-13 13:22:00    2016-11-13 13:22:00
44100    21341    881    2016-11-13 22:30:00    2016-11-13 22:30:00
44101    21341    504    2016-11-13 15:44:00    2016-11-13 15:44:00
44102    21341    855    2016-11-13 09:00:00    2016-11-13 09:00:00
44103    21342    589    2016-11-13 13:37:00    2016-11-13 13:37:00
44104    21342    840    2016-11-13 03:31:00    2016-11-13 03:31:00
44105    21342    524    2016-11-13 03:38:00    2016-11-13 03:38:00
44106    21342    936    2016-11-13 08:28:00    2016-11-13 08:28:00
44107    21342    871    2016-11-13 18:44:00    2016-11-13 18:44:00
44108    21343    636    2016-11-13 08:05:00    2016-11-13 08:05:00
44109    21343    472    2016-11-13 07:20:00    2016-11-13 07:20:00
44110    21343    737    2016-11-13 14:45:00    2016-11-13 14:45:00
44111    21343    802    2016-11-13 09:31:00    2016-11-13 09:31:00
44112    21343    714    2016-11-13 12:04:00    2016-11-13 12:04:00
44113    21344    469    2016-11-13 01:22:00    2016-11-13 01:22:00
44114    21344    489    2016-11-13 14:00:00    2016-11-13 14:00:00
44115    21344    621    2016-11-13 10:22:00    2016-11-13 10:22:00
44116    21344    724    2016-11-13 13:48:00    2016-11-13 13:48:00
44117    21344    572    2016-11-13 11:45:00    2016-11-13 11:45:00
44118    21345    657    2016-11-13 13:47:00    2016-11-13 13:47:00
44119    21345    820    2016-11-13 14:08:00    2016-11-13 14:08:00
44120    21345    556    2016-11-13 19:16:00    2016-11-13 19:16:00
44121    21345    729    2016-11-13 17:18:00    2016-11-13 17:18:00
44122    21345    644    2016-11-13 19:24:00    2016-11-13 19:24:00
44123    21346    864    2016-11-13 09:58:00    2016-11-13 09:58:00
44124    21346    703    2016-11-13 16:52:00    2016-11-13 16:52:00
44125    21346    802    2016-11-13 01:11:00    2016-11-13 01:11:00
44126    21346    527    2016-11-13 23:37:00    2016-11-13 23:37:00
44127    21346    533    2016-11-13 21:37:00    2016-11-13 21:37:00
44128    21347    908    2016-11-13 19:54:00    2016-11-13 19:54:00
44129    21347    792    2016-11-13 12:02:00    2016-11-13 12:02:00
44130    21347    725    2016-11-13 09:38:00    2016-11-13 09:38:00
44131    21347    853    2016-11-13 11:12:00    2016-11-13 11:12:00
44132    21347    941    2016-11-13 17:43:00    2016-11-13 17:43:00
44133    21348    739    2016-11-13 06:32:00    2016-11-13 06:32:00
44134    21348    755    2016-11-13 14:18:00    2016-11-13 14:18:00
44135    21348    953    2016-11-13 17:50:00    2016-11-13 17:50:00
44136    21348    908    2016-11-13 21:13:00    2016-11-13 21:13:00
44137    21348    904    2016-11-13 07:19:00    2016-11-13 07:19:00
44138    21349    718    2016-11-14 12:47:00    2016-11-14 12:47:00
44139    21349    691    2016-11-14 04:55:00    2016-11-14 04:55:00
44140    21349    561    2016-11-14 05:42:00    2016-11-14 05:42:00
44141    21349    815    2016-11-14 21:03:00    2016-11-14 21:03:00
44142    21349    844    2016-11-14 23:54:00    2016-11-14 23:54:00
44143    21350    507    2016-11-14 02:29:00    2016-11-14 02:29:00
44144    21350    793    2016-11-14 08:06:00    2016-11-14 08:06:00
44145    21350    802    2016-11-14 06:37:00    2016-11-14 06:37:00
44146    21350    571    2016-11-14 15:46:00    2016-11-14 15:46:00
44147    21350    470    2016-11-14 21:00:00    2016-11-14 21:00:00
44148    21351    774    2016-11-14 15:56:00    2016-11-14 15:56:00
44149    21351    884    2016-11-14 11:09:00    2016-11-14 11:09:00
44150    21351    933    2016-11-14 03:18:00    2016-11-14 03:18:00
44151    21351    658    2016-11-14 07:23:00    2016-11-14 07:23:00
44152    21351    487    2016-11-14 19:01:00    2016-11-14 19:01:00
44153    21352    724    2016-11-14 20:01:00    2016-11-14 20:01:00
44154    21352    471    2016-11-14 18:18:00    2016-11-14 18:18:00
44155    21352    961    2016-11-14 06:01:00    2016-11-14 06:01:00
44156    21352    891    2016-11-14 23:19:00    2016-11-14 23:19:00
44157    21352    502    2016-11-14 15:49:00    2016-11-14 15:49:00
44158    21353    920    2016-11-14 06:52:00    2016-11-14 06:52:00
44159    21353    743    2016-11-14 12:10:00    2016-11-14 12:10:00
44160    21353    935    2016-11-14 21:30:00    2016-11-14 21:30:00
44161    21353    890    2016-11-14 15:00:00    2016-11-14 15:00:00
44162    21353    793    2016-11-14 10:16:00    2016-11-14 10:16:00
44163    21354    672    2016-11-14 10:16:00    2016-11-14 10:16:00
44164    21354    903    2016-11-14 12:22:00    2016-11-14 12:22:00
44165    21354    530    2016-11-14 04:01:00    2016-11-14 04:01:00
44166    21354    562    2016-11-14 13:53:00    2016-11-14 13:53:00
44167    21354    635    2016-11-14 16:06:00    2016-11-14 16:06:00
44168    21355    740    2016-11-14 01:03:00    2016-11-14 01:03:00
44169    21355    673    2016-11-14 20:48:00    2016-11-14 20:48:00
44170    21355    961    2016-11-14 02:51:00    2016-11-14 02:51:00
44171    21355    608    2016-11-14 16:39:00    2016-11-14 16:39:00
44172    21355    959    2016-11-14 06:12:00    2016-11-14 06:12:00
44173    21356    550    2016-11-14 16:07:00    2016-11-14 16:07:00
44174    21356    672    2016-11-14 02:14:00    2016-11-14 02:14:00
44175    21356    475    2016-11-14 10:41:00    2016-11-14 10:41:00
44176    21356    890    2016-11-14 16:56:00    2016-11-14 16:56:00
44177    21356    668    2016-11-14 23:14:00    2016-11-14 23:14:00
44178    21357    534    2016-11-14 05:50:00    2016-11-14 05:50:00
44179    21357    584    2016-11-14 23:52:00    2016-11-14 23:52:00
44180    21357    482    2016-11-14 20:57:00    2016-11-14 20:57:00
44181    21357    600    2016-11-14 11:08:00    2016-11-14 11:08:00
44182    21357    726    2016-11-14 04:54:00    2016-11-14 04:54:00
44183    21358    865    2016-11-14 01:36:00    2016-11-14 01:36:00
44184    21358    686    2016-11-14 19:39:00    2016-11-14 19:39:00
44185    21358    718    2016-11-14 06:41:00    2016-11-14 06:41:00
44186    21358    478    2016-11-14 08:58:00    2016-11-14 08:58:00
44187    21358    583    2016-11-14 19:51:00    2016-11-14 19:51:00
44188    21359    931    2016-11-14 08:26:00    2016-11-14 08:26:00
44189    21359    862    2016-11-14 06:29:00    2016-11-14 06:29:00
44190    21359    747    2016-11-14 11:26:00    2016-11-14 11:26:00
44191    21359    894    2016-11-14 17:00:00    2016-11-14 17:00:00
44192    21359    671    2016-11-14 08:59:00    2016-11-14 08:59:00
44193    21360    627    2016-11-14 14:34:00    2016-11-14 14:34:00
44194    21360    773    2016-11-14 01:23:00    2016-11-14 01:23:00
44195    21360    510    2016-11-14 04:29:00    2016-11-14 04:29:00
44196    21360    732    2016-11-14 18:24:00    2016-11-14 18:24:00
44197    21360    485    2016-11-14 06:37:00    2016-11-14 06:37:00
44198    21361    806    2016-11-14 18:42:00    2016-11-14 18:42:00
44199    21361    663    2016-11-14 13:35:00    2016-11-14 13:35:00
44200    21361    928    2016-11-14 14:17:00    2016-11-14 14:17:00
44201    21361    502    2016-11-14 23:25:00    2016-11-14 23:25:00
44202    21361    733    2016-11-14 11:59:00    2016-11-14 11:59:00
44203    21362    882    2016-11-14 20:56:00    2016-11-14 20:56:00
44204    21362    901    2016-11-14 01:33:00    2016-11-14 01:33:00
44205    21362    884    2016-11-14 16:59:00    2016-11-14 16:59:00
44206    21362    815    2016-11-14 03:50:00    2016-11-14 03:50:00
44207    21362    953    2016-11-14 14:12:00    2016-11-14 14:12:00
44208    21363    912    2016-11-14 14:27:00    2016-11-14 14:27:00
44209    21363    724    2016-11-14 02:27:00    2016-11-14 02:27:00
44210    21363    905    2016-11-14 05:30:00    2016-11-14 05:30:00
44211    21363    596    2016-11-14 22:07:00    2016-11-14 22:07:00
44212    21363    707    2016-11-14 14:23:00    2016-11-14 14:23:00
44213    21364    657    2016-11-14 13:46:00    2016-11-14 13:46:00
44214    21364    509    2016-11-14 08:30:00    2016-11-14 08:30:00
44215    21364    481    2016-11-14 17:16:00    2016-11-14 17:16:00
44216    21364    926    2016-11-14 21:56:00    2016-11-14 21:56:00
44217    21364    725    2016-11-14 21:43:00    2016-11-14 21:43:00
44218    21365    893    2016-11-14 12:23:00    2016-11-14 12:23:00
44219    21365    467    2016-11-14 15:00:00    2016-11-14 15:00:00
44220    21365    771    2016-11-14 13:47:00    2016-11-14 13:47:00
44221    21365    837    2016-11-14 05:51:00    2016-11-14 05:51:00
44222    21365    902    2016-11-14 12:01:00    2016-11-14 12:01:00
44223    21366    848    2016-11-14 16:43:00    2016-11-14 16:43:00
44224    21366    902    2016-11-14 01:28:00    2016-11-14 01:28:00
44225    21366    753    2016-11-14 09:30:00    2016-11-14 09:30:00
44226    21366    744    2016-11-14 22:20:00    2016-11-14 22:20:00
44227    21366    802    2016-11-14 20:35:00    2016-11-14 20:35:00
44228    21367    776    2016-11-14 06:00:00    2016-11-14 06:00:00
44229    21367    671    2016-11-14 17:08:00    2016-11-14 17:08:00
44230    21367    690    2016-11-14 18:06:00    2016-11-14 18:06:00
44231    21367    789    2016-11-14 20:31:00    2016-11-14 20:31:00
44232    21367    814    2016-11-14 01:02:00    2016-11-14 01:02:00
44233    21368    946    2016-11-14 22:36:00    2016-11-14 22:36:00
44234    21368    547    2016-11-14 07:34:00    2016-11-14 07:34:00
44235    21368    537    2016-11-14 06:56:00    2016-11-14 06:56:00
44236    21368    632    2016-11-14 06:25:00    2016-11-14 06:25:00
44237    21368    658    2016-11-14 12:53:00    2016-11-14 12:53:00
44238    21369    706    2016-11-14 09:06:00    2016-11-14 09:06:00
44239    21369    808    2016-11-14 08:28:00    2016-11-14 08:28:00
44240    21369    523    2016-11-14 20:25:00    2016-11-14 20:25:00
44241    21369    652    2016-11-14 13:21:00    2016-11-14 13:21:00
44242    21369    658    2016-11-14 09:38:00    2016-11-14 09:38:00
44243    21370    799    2016-11-14 11:13:00    2016-11-14 11:13:00
44244    21370    807    2016-11-14 08:49:00    2016-11-14 08:49:00
44245    21370    573    2016-11-14 04:21:00    2016-11-14 04:21:00
44246    21370    602    2016-11-14 23:16:00    2016-11-14 23:16:00
44247    21370    539    2016-11-14 11:03:00    2016-11-14 11:03:00
44248    21371    698    2016-11-14 04:41:00    2016-11-14 04:41:00
44249    21371    955    2016-11-14 02:08:00    2016-11-14 02:08:00
44250    21371    811    2016-11-14 16:00:00    2016-11-14 16:00:00
44251    21371    554    2016-11-14 23:15:00    2016-11-14 23:15:00
44252    21371    537    2016-11-14 02:20:00    2016-11-14 02:20:00
44253    21372    633    2016-11-14 13:33:00    2016-11-14 13:33:00
44254    21372    860    2016-11-14 22:16:00    2016-11-14 22:16:00
44255    21372    807    2016-11-14 20:26:00    2016-11-14 20:26:00
44256    21372    793    2016-11-14 10:52:00    2016-11-14 10:52:00
44257    21372    809    2016-11-14 21:06:00    2016-11-14 21:06:00
44258    21373    480    2016-11-14 04:02:00    2016-11-14 04:02:00
44259    21373    887    2016-11-14 15:41:00    2016-11-14 15:41:00
44260    21373    947    2016-11-14 12:31:00    2016-11-14 12:31:00
44261    21373    874    2016-11-14 18:56:00    2016-11-14 18:56:00
44262    21373    498    2016-11-14 08:13:00    2016-11-14 08:13:00
44263    21374    593    2016-11-14 10:39:00    2016-11-14 10:39:00
44264    21374    480    2016-11-14 18:39:00    2016-11-14 18:39:00
44265    21374    674    2016-11-14 04:36:00    2016-11-14 04:36:00
44266    21374    575    2016-11-14 19:04:00    2016-11-14 19:04:00
44267    21374    521    2016-11-14 05:48:00    2016-11-14 05:48:00
44268    21375    546    2016-11-14 17:25:00    2016-11-14 17:25:00
44269    21375    747    2016-11-14 18:18:00    2016-11-14 18:18:00
44270    21375    661    2016-11-14 11:54:00    2016-11-14 11:54:00
44271    21375    606    2016-11-14 05:16:00    2016-11-14 05:16:00
44272    21375    585    2016-11-14 19:50:00    2016-11-14 19:50:00
44273    21376    573    2016-11-14 23:51:00    2016-11-14 23:51:00
44274    21376    936    2016-11-14 10:55:00    2016-11-14 10:55:00
44275    21376    755    2016-11-14 09:45:00    2016-11-14 09:45:00
44276    21376    519    2016-11-14 06:07:00    2016-11-14 06:07:00
44277    21376    868    2016-11-14 03:08:00    2016-11-14 03:08:00
44278    21377    679    2016-11-14 18:43:00    2016-11-14 18:43:00
44279    21377    713    2016-11-14 20:31:00    2016-11-14 20:31:00
44280    21377    519    2016-11-14 12:58:00    2016-11-14 12:58:00
44281    21377    657    2016-11-14 17:24:00    2016-11-14 17:24:00
44282    21377    467    2016-11-14 23:45:00    2016-11-14 23:45:00
44283    21378    854    2016-11-14 10:51:00    2016-11-14 10:51:00
44284    21378    796    2016-11-14 07:28:00    2016-11-14 07:28:00
44285    21378    593    2016-11-14 18:37:00    2016-11-14 18:37:00
44286    21378    939    2016-11-14 21:19:00    2016-11-14 21:19:00
44287    21378    898    2016-11-14 08:43:00    2016-11-14 08:43:00
44288    21379    507    2016-11-15 11:12:00    2016-11-15 11:12:00
44289    21379    743    2016-11-15 16:22:00    2016-11-15 16:22:00
44290    21379    580    2016-11-15 05:00:00    2016-11-15 05:00:00
44291    21379    910    2016-11-15 16:13:00    2016-11-15 16:13:00
44292    21379    809    2016-11-15 22:04:00    2016-11-15 22:04:00
44293    21380    577    2016-11-15 14:21:00    2016-11-15 14:21:00
44294    21380    557    2016-11-15 15:57:00    2016-11-15 15:57:00
44295    21380    745    2016-11-15 10:36:00    2016-11-15 10:36:00
44296    21380    734    2016-11-15 23:58:00    2016-11-15 23:58:00
44297    21380    637    2016-11-15 18:58:00    2016-11-15 18:58:00
44298    21381    546    2016-11-15 16:39:00    2016-11-15 16:39:00
44299    21381    618    2016-11-15 22:05:00    2016-11-15 22:05:00
44300    21381    490    2016-11-15 01:30:00    2016-11-15 01:30:00
44301    21381    478    2016-11-15 04:46:00    2016-11-15 04:46:00
44302    21381    723    2016-11-15 04:15:00    2016-11-15 04:15:00
44303    21382    865    2016-11-15 04:21:00    2016-11-15 04:21:00
44304    21382    650    2016-11-15 14:41:00    2016-11-15 14:41:00
44305    21382    642    2016-11-15 12:40:00    2016-11-15 12:40:00
44306    21382    915    2016-11-15 14:14:00    2016-11-15 14:14:00
44307    21382    527    2016-11-15 05:16:00    2016-11-15 05:16:00
44308    21383    504    2016-11-15 12:07:00    2016-11-15 12:07:00
44309    21383    545    2016-11-15 09:19:00    2016-11-15 09:19:00
44310    21383    736    2016-11-15 10:18:00    2016-11-15 10:18:00
44311    21383    713    2016-11-15 10:31:00    2016-11-15 10:31:00
44312    21383    753    2016-11-15 19:54:00    2016-11-15 19:54:00
44313    21384    657    2016-11-15 10:15:00    2016-11-15 10:15:00
44314    21384    620    2016-11-15 22:36:00    2016-11-15 22:36:00
44315    21384    698    2016-11-15 15:15:00    2016-11-15 15:15:00
44316    21384    709    2016-11-15 02:29:00    2016-11-15 02:29:00
44317    21384    560    2016-11-15 12:50:00    2016-11-15 12:50:00
44318    21385    660    2016-11-15 21:01:00    2016-11-15 21:01:00
44319    21385    774    2016-11-15 06:45:00    2016-11-15 06:45:00
44320    21385    467    2016-11-15 10:38:00    2016-11-15 10:38:00
44321    21385    951    2016-11-15 23:12:00    2016-11-15 23:12:00
44322    21385    906    2016-11-15 17:21:00    2016-11-15 17:21:00
44323    21386    889    2016-11-15 15:55:00    2016-11-15 15:55:00
44324    21386    684    2016-11-15 17:53:00    2016-11-15 17:53:00
44325    21386    757    2016-11-15 03:17:00    2016-11-15 03:17:00
44326    21386    654    2016-11-15 16:01:00    2016-11-15 16:01:00
44327    21386    772    2016-11-15 04:20:00    2016-11-15 04:20:00
44328    21387    836    2016-11-15 06:31:00    2016-11-15 06:31:00
44329    21387    647    2016-11-15 13:08:00    2016-11-15 13:08:00
44330    21387    913    2016-11-15 03:03:00    2016-11-15 03:03:00
44331    21387    592    2016-11-15 15:47:00    2016-11-15 15:47:00
44332    21387    791    2016-11-15 04:56:00    2016-11-15 04:56:00
44333    21388    555    2016-11-15 18:52:00    2016-11-15 18:52:00
44334    21388    954    2016-11-15 16:16:00    2016-11-15 16:16:00
44335    21388    958    2016-11-15 17:56:00    2016-11-15 17:56:00
44336    21388    701    2016-11-15 15:18:00    2016-11-15 15:18:00
44337    21388    705    2016-11-15 03:51:00    2016-11-15 03:51:00
44338    21389    517    2016-11-15 05:41:00    2016-11-15 05:41:00
44339    21389    844    2016-11-15 22:53:00    2016-11-15 22:53:00
44340    21389    887    2016-11-15 17:40:00    2016-11-15 17:40:00
44341    21389    716    2016-11-15 05:44:00    2016-11-15 05:44:00
44342    21389    470    2016-11-15 18:34:00    2016-11-15 18:34:00
44343    21390    761    2016-11-15 12:39:00    2016-11-15 12:39:00
44344    21390    614    2016-11-15 14:55:00    2016-11-15 14:55:00
44345    21390    841    2016-11-15 03:09:00    2016-11-15 03:09:00
44346    21390    607    2016-11-15 08:54:00    2016-11-15 08:54:00
44347    21390    887    2016-11-15 06:45:00    2016-11-15 06:45:00
44348    21391    639    2016-11-15 01:21:00    2016-11-15 01:21:00
44349    21391    717    2016-11-15 05:33:00    2016-11-15 05:33:00
44350    21391    790    2016-11-15 20:03:00    2016-11-15 20:03:00
44351    21391    710    2016-11-15 11:21:00    2016-11-15 11:21:00
44352    21391    838    2016-11-15 10:14:00    2016-11-15 10:14:00
44353    21392    861    2016-11-15 20:04:00    2016-11-15 20:04:00
44354    21392    609    2016-11-15 12:13:00    2016-11-15 12:13:00
44355    21392    789    2016-11-15 10:26:00    2016-11-15 10:26:00
44356    21392    831    2016-11-15 07:38:00    2016-11-15 07:38:00
44357    21392    912    2016-11-15 17:11:00    2016-11-15 17:11:00
44358    21393    500    2016-11-15 07:54:00    2016-11-15 07:54:00
44359    21393    747    2016-11-15 17:13:00    2016-11-15 17:13:00
44360    21393    801    2016-11-15 20:27:00    2016-11-15 20:27:00
44361    21393    785    2016-11-15 21:22:00    2016-11-15 21:22:00
44362    21393    482    2016-11-15 01:15:00    2016-11-15 01:15:00
44363    21394    836    2016-11-15 16:30:00    2016-11-15 16:30:00
44364    21394    736    2016-11-15 22:31:00    2016-11-15 22:31:00
44365    21394    605    2016-11-15 16:24:00    2016-11-15 16:24:00
44366    21394    874    2016-11-15 06:18:00    2016-11-15 06:18:00
44367    21394    934    2016-11-15 04:35:00    2016-11-15 04:35:00
44368    21395    696    2016-11-15 06:46:00    2016-11-15 06:46:00
44369    21395    509    2016-11-15 07:10:00    2016-11-15 07:10:00
44370    21395    490    2016-11-15 13:10:00    2016-11-15 13:10:00
44371    21395    485    2016-11-15 20:05:00    2016-11-15 20:05:00
44372    21395    720    2016-11-15 02:07:00    2016-11-15 02:07:00
44373    21396    949    2016-11-15 01:26:00    2016-11-15 01:26:00
44374    21396    920    2016-11-15 20:04:00    2016-11-15 20:04:00
44375    21396    809    2016-11-15 14:48:00    2016-11-15 14:48:00
44376    21396    735    2016-11-15 02:51:00    2016-11-15 02:51:00
44377    21396    552    2016-11-15 16:45:00    2016-11-15 16:45:00
44378    21397    768    2016-11-15 05:29:00    2016-11-15 05:29:00
44379    21397    792    2016-11-15 08:25:00    2016-11-15 08:25:00
44380    21397    831    2016-11-15 16:12:00    2016-11-15 16:12:00
44381    21397    645    2016-11-15 15:45:00    2016-11-15 15:45:00
44382    21397    525    2016-11-15 20:39:00    2016-11-15 20:39:00
44383    21398    495    2016-11-15 20:46:00    2016-11-15 20:46:00
44384    21398    519    2016-11-15 20:43:00    2016-11-15 20:43:00
44385    21398    657    2016-11-15 10:43:00    2016-11-15 10:43:00
44386    21398    468    2016-11-15 14:10:00    2016-11-15 14:10:00
44387    21398    605    2016-11-15 18:31:00    2016-11-15 18:31:00
44388    21399    521    2016-11-15 18:44:00    2016-11-15 18:44:00
44389    21399    614    2016-11-15 23:53:00    2016-11-15 23:53:00
44390    21399    557    2016-11-15 18:18:00    2016-11-15 18:18:00
44391    21399    706    2016-11-15 11:15:00    2016-11-15 11:15:00
44392    21399    683    2016-11-15 22:07:00    2016-11-15 22:07:00
44393    21400    895    2016-11-15 01:54:00    2016-11-15 01:54:00
44394    21400    746    2016-11-15 13:35:00    2016-11-15 13:35:00
44395    21400    573    2016-11-15 03:42:00    2016-11-15 03:42:00
44396    21400    534    2016-11-15 13:43:00    2016-11-15 13:43:00
44397    21400    788    2016-11-15 15:02:00    2016-11-15 15:02:00
44398    21401    737    2016-11-15 21:02:00    2016-11-15 21:02:00
44399    21401    630    2016-11-15 02:09:00    2016-11-15 02:09:00
44400    21401    752    2016-11-15 22:13:00    2016-11-15 22:13:00
44401    21401    783    2016-11-15 03:21:00    2016-11-15 03:21:00
44402    21401    739    2016-11-15 18:08:00    2016-11-15 18:08:00
44403    21402    505    2016-11-15 04:48:00    2016-11-15 04:48:00
44404    21402    538    2016-11-15 15:55:00    2016-11-15 15:55:00
44405    21402    939    2016-11-15 23:25:00    2016-11-15 23:25:00
44406    21402    957    2016-11-15 06:37:00    2016-11-15 06:37:00
44407    21402    835    2016-11-15 03:23:00    2016-11-15 03:23:00
44408    21403    517    2016-11-15 13:03:00    2016-11-15 13:03:00
44409    21403    748    2016-11-15 11:15:00    2016-11-15 11:15:00
44410    21403    655    2016-11-15 08:23:00    2016-11-15 08:23:00
44411    21403    958    2016-11-15 23:11:00    2016-11-15 23:11:00
44412    21403    797    2016-11-15 21:53:00    2016-11-15 21:53:00
44413    21404    720    2016-11-15 13:36:00    2016-11-15 13:36:00
44414    21404    893    2016-11-15 23:36:00    2016-11-15 23:36:00
44415    21404    890    2016-11-15 22:40:00    2016-11-15 22:40:00
44416    21404    510    2016-11-15 16:08:00    2016-11-15 16:08:00
44417    21404    887    2016-11-15 01:31:00    2016-11-15 01:31:00
44418    21405    477    2016-11-15 23:01:00    2016-11-15 23:01:00
44419    21405    752    2016-11-15 07:53:00    2016-11-15 07:53:00
44420    21405    578    2016-11-15 20:01:00    2016-11-15 20:01:00
44421    21405    898    2016-11-15 16:13:00    2016-11-15 16:13:00
44422    21405    686    2016-11-15 22:00:00    2016-11-15 22:00:00
44423    21406    842    2016-11-15 20:42:00    2016-11-15 20:42:00
44424    21406    725    2016-11-15 22:50:00    2016-11-15 22:50:00
44425    21406    474    2016-11-15 03:03:00    2016-11-15 03:03:00
44426    21406    610    2016-11-15 07:51:00    2016-11-15 07:51:00
44427    21406    697    2016-11-15 07:23:00    2016-11-15 07:23:00
44428    21407    569    2016-11-15 16:48:00    2016-11-15 16:48:00
44429    21407    704    2016-11-15 06:41:00    2016-11-15 06:41:00
44430    21407    520    2016-11-15 06:23:00    2016-11-15 06:23:00
44431    21407    928    2016-11-15 18:48:00    2016-11-15 18:48:00
44432    21407    715    2016-11-15 06:45:00    2016-11-15 06:45:00
44433    21408    916    2016-11-15 10:04:00    2016-11-15 10:04:00
44434    21408    554    2016-11-15 21:50:00    2016-11-15 21:50:00
44435    21408    826    2016-11-15 08:57:00    2016-11-15 08:57:00
44436    21408    794    2016-11-15 07:14:00    2016-11-15 07:14:00
44437    21408    767    2016-11-15 15:22:00    2016-11-15 15:22:00
44438    21409    618    2016-11-15 20:50:00    2016-11-15 20:50:00
44439    21409    658    2016-11-15 22:24:00    2016-11-15 22:24:00
44440    21409    905    2016-11-15 06:25:00    2016-11-15 06:25:00
44441    21409    859    2016-11-15 15:29:00    2016-11-15 15:29:00
44442    21409    772    2016-11-15 20:55:00    2016-11-15 20:55:00
44443    21410    638    2016-11-15 22:30:00    2016-11-15 22:30:00
44444    21410    637    2016-11-15 17:51:00    2016-11-15 17:51:00
44445    21410    646    2016-11-15 08:35:00    2016-11-15 08:35:00
44446    21410    543    2016-11-15 04:26:00    2016-11-15 04:26:00
44447    21410    519    2016-11-15 05:11:00    2016-11-15 05:11:00
44448    21411    762    2016-11-15 09:32:00    2016-11-15 09:32:00
44449    21411    509    2016-11-15 04:00:00    2016-11-15 04:00:00
44450    21411    667    2016-11-15 02:00:00    2016-11-15 02:00:00
44451    21411    553    2016-11-15 23:12:00    2016-11-15 23:12:00
44452    21411    939    2016-11-15 04:14:00    2016-11-15 04:14:00
44453    21412    747    2016-11-15 08:44:00    2016-11-15 08:44:00
44454    21412    683    2016-11-15 16:56:00    2016-11-15 16:56:00
44455    21412    560    2016-11-15 18:00:00    2016-11-15 18:00:00
44456    21412    539    2016-11-15 08:36:00    2016-11-15 08:36:00
44457    21412    650    2016-11-15 11:15:00    2016-11-15 11:15:00
44458    21413    636    2016-11-15 06:29:00    2016-11-15 06:29:00
44459    21413    722    2016-11-15 22:37:00    2016-11-15 22:37:00
44460    21413    810    2016-11-15 07:00:00    2016-11-15 07:00:00
44461    21413    483    2016-11-15 06:53:00    2016-11-15 06:53:00
44462    21413    525    2016-11-15 05:28:00    2016-11-15 05:28:00
44463    21414    472    2016-11-15 20:33:00    2016-11-15 20:33:00
44464    21414    770    2016-11-15 20:52:00    2016-11-15 20:52:00
44465    21414    888    2016-11-15 16:00:00    2016-11-15 16:00:00
44466    21414    669    2016-11-15 03:24:00    2016-11-15 03:24:00
44467    21414    710    2016-11-15 09:30:00    2016-11-15 09:30:00
44468    21415    866    2016-11-15 18:39:00    2016-11-15 18:39:00
44469    21415    523    2016-11-15 18:53:00    2016-11-15 18:53:00
44470    21415    732    2016-11-15 23:26:00    2016-11-15 23:26:00
44471    21415    632    2016-11-15 11:15:00    2016-11-15 11:15:00
44472    21415    635    2016-11-15 08:26:00    2016-11-15 08:26:00
44473    21416    659    2016-11-15 18:29:00    2016-11-15 18:29:00
44474    21416    788    2016-11-15 18:26:00    2016-11-15 18:26:00
44475    21416    910    2016-11-15 16:53:00    2016-11-15 16:53:00
44476    21416    532    2016-11-15 06:08:00    2016-11-15 06:08:00
44477    21416    904    2016-11-15 04:37:00    2016-11-15 04:37:00
44478    21417    565    2016-11-15 01:20:00    2016-11-15 01:20:00
44479    21417    556    2016-11-15 15:10:00    2016-11-15 15:10:00
44480    21417    782    2016-11-15 05:06:00    2016-11-15 05:06:00
44481    21417    941    2016-11-15 15:20:00    2016-11-15 15:20:00
44482    21417    545    2016-11-15 02:56:00    2016-11-15 02:56:00
44483    21418    732    2016-11-15 23:50:00    2016-11-15 23:50:00
44484    21418    781    2016-11-15 12:22:00    2016-11-15 12:22:00
44485    21418    778    2016-11-15 07:01:00    2016-11-15 07:01:00
44486    21418    575    2016-11-15 06:02:00    2016-11-15 06:02:00
44487    21418    767    2016-11-15 20:57:00    2016-11-15 20:57:00
44488    21419    816    2016-11-15 15:40:00    2016-11-15 15:40:00
44489    21419    753    2016-11-15 04:59:00    2016-11-15 04:59:00
44490    21419    596    2016-11-15 09:30:00    2016-11-15 09:30:00
44491    21419    780    2016-11-15 06:22:00    2016-11-15 06:22:00
44492    21419    945    2016-11-15 11:43:00    2016-11-15 11:43:00
44493    21420    712    2016-11-15 09:00:00    2016-11-15 09:00:00
44494    21420    584    2016-11-15 14:32:00    2016-11-15 14:32:00
44495    21420    959    2016-11-15 14:18:00    2016-11-15 14:18:00
44496    21420    713    2016-11-15 12:21:00    2016-11-15 12:21:00
44497    21420    521    2016-11-15 08:27:00    2016-11-15 08:27:00
44498    21421    597    2016-11-15 02:12:00    2016-11-15 02:12:00
44499    21421    946    2016-11-15 10:19:00    2016-11-15 10:19:00
44500    21421    879    2016-11-15 03:27:00    2016-11-15 03:27:00
44501    21421    851    2016-11-15 04:24:00    2016-11-15 04:24:00
44502    21421    641    2016-11-15 07:26:00    2016-11-15 07:26:00
44503    21422    502    2016-11-15 14:20:00    2016-11-15 14:20:00
44504    21422    708    2016-11-15 09:26:00    2016-11-15 09:26:00
44505    21422    740    2016-11-15 10:36:00    2016-11-15 10:36:00
44506    21422    920    2016-11-15 12:22:00    2016-11-15 12:22:00
44507    21422    744    2016-11-15 12:22:00    2016-11-15 12:22:00
44508    21423    474    2016-11-15 16:34:00    2016-11-15 16:34:00
44509    21423    567    2016-11-15 20:11:00    2016-11-15 20:11:00
44510    21423    542    2016-11-15 01:56:00    2016-11-15 01:56:00
44511    21423    688    2016-11-15 05:06:00    2016-11-15 05:06:00
44512    21423    681    2016-11-15 17:25:00    2016-11-15 17:25:00
44513    21424    871    2016-11-15 15:37:00    2016-11-15 15:37:00
44514    21424    790    2016-11-15 11:08:00    2016-11-15 11:08:00
44515    21424    778    2016-11-15 01:29:00    2016-11-15 01:29:00
44516    21424    587    2016-11-15 13:58:00    2016-11-15 13:58:00
44517    21424    862    2016-11-15 16:51:00    2016-11-15 16:51:00
44518    21425    766    2016-11-15 21:39:00    2016-11-15 21:39:00
44519    21425    578    2016-11-15 17:37:00    2016-11-15 17:37:00
44520    21425    766    2016-11-15 07:23:00    2016-11-15 07:23:00
44521    21425    688    2016-11-15 18:18:00    2016-11-15 18:18:00
44522    21425    910    2016-11-15 23:38:00    2016-11-15 23:38:00
44523    21426    623    2016-11-15 15:58:00    2016-11-15 15:58:00
44524    21426    604    2016-11-15 11:37:00    2016-11-15 11:37:00
44525    21426    630    2016-11-15 22:38:00    2016-11-15 22:38:00
44526    21426    873    2016-11-15 17:39:00    2016-11-15 17:39:00
44527    21426    489    2016-11-15 14:39:00    2016-11-15 14:39:00
44528    21427    560    2016-11-16 20:23:00    2016-11-16 20:23:00
44529    21427    542    2016-11-16 05:41:00    2016-11-16 05:41:00
44530    21427    688    2016-11-16 05:11:00    2016-11-16 05:11:00
44531    21427    938    2016-11-16 22:39:00    2016-11-16 22:39:00
44532    21427    900    2016-11-16 14:44:00    2016-11-16 14:44:00
44533    21428    525    2016-11-16 04:26:00    2016-11-16 04:26:00
44534    21428    814    2016-11-16 09:55:00    2016-11-16 09:55:00
44535    21428    556    2016-11-16 05:31:00    2016-11-16 05:31:00
44536    21428    889    2016-11-16 11:27:00    2016-11-16 11:27:00
44537    21428    924    2016-11-16 08:51:00    2016-11-16 08:51:00
44538    21429    491    2016-11-16 13:47:00    2016-11-16 13:47:00
44539    21429    551    2016-11-16 14:00:00    2016-11-16 14:00:00
44540    21429    490    2016-11-16 07:31:00    2016-11-16 07:31:00
44541    21429    819    2016-11-16 10:33:00    2016-11-16 10:33:00
44542    21429    752    2016-11-16 08:44:00    2016-11-16 08:44:00
44543    21430    902    2016-11-16 06:35:00    2016-11-16 06:35:00
44544    21430    490    2016-11-16 16:18:00    2016-11-16 16:18:00
44545    21430    535    2016-11-16 20:35:00    2016-11-16 20:35:00
44546    21430    786    2016-11-16 11:31:00    2016-11-16 11:31:00
44547    21430    707    2016-11-16 11:45:00    2016-11-16 11:45:00
44548    21431    855    2016-11-16 21:49:00    2016-11-16 21:49:00
44549    21431    661    2016-11-16 22:36:00    2016-11-16 22:36:00
44550    21431    846    2016-11-16 08:58:00    2016-11-16 08:58:00
44551    21431    899    2016-11-16 16:26:00    2016-11-16 16:26:00
44552    21431    690    2016-11-16 14:38:00    2016-11-16 14:38:00
44553    21432    859    2016-11-16 12:44:00    2016-11-16 12:44:00
44554    21432    901    2016-11-16 04:08:00    2016-11-16 04:08:00
44555    21432    751    2016-11-16 11:20:00    2016-11-16 11:20:00
44556    21432    528    2016-11-16 16:02:00    2016-11-16 16:02:00
44557    21432    841    2016-11-16 09:13:00    2016-11-16 09:13:00
44558    21433    583    2016-11-16 13:24:00    2016-11-16 13:24:00
44559    21433    686    2016-11-16 04:43:00    2016-11-16 04:43:00
44560    21433    821    2016-11-16 01:08:00    2016-11-16 01:08:00
44561    21433    806    2016-11-16 22:19:00    2016-11-16 22:19:00
44562    21433    926    2016-11-16 20:36:00    2016-11-16 20:36:00
44563    21434    768    2016-11-16 17:32:00    2016-11-16 17:32:00
44564    21434    564    2016-11-16 10:24:00    2016-11-16 10:24:00
44565    21434    575    2016-11-16 02:01:00    2016-11-16 02:01:00
44566    21434    492    2016-11-16 21:42:00    2016-11-16 21:42:00
44567    21434    922    2016-11-16 07:21:00    2016-11-16 07:21:00
44568    21435    649    2016-11-16 14:06:00    2016-11-16 14:06:00
44569    21435    917    2016-11-16 15:00:00    2016-11-16 15:00:00
44570    21435    472    2016-11-16 12:31:00    2016-11-16 12:31:00
44571    21435    632    2016-11-16 14:17:00    2016-11-16 14:17:00
44572    21435    885    2016-11-16 05:20:00    2016-11-16 05:20:00
44573    21436    626    2016-11-16 15:23:00    2016-11-16 15:23:00
44574    21436    642    2016-11-16 07:42:00    2016-11-16 07:42:00
44575    21436    603    2016-11-16 09:58:00    2016-11-16 09:58:00
44576    21436    623    2016-11-16 19:36:00    2016-11-16 19:36:00
44577    21436    888    2016-11-16 06:54:00    2016-11-16 06:54:00
44578    21437    900    2016-11-16 19:25:00    2016-11-16 19:25:00
44579    21437    780    2016-11-16 10:57:00    2016-11-16 10:57:00
44580    21437    876    2016-11-16 05:09:00    2016-11-16 05:09:00
44581    21437    802    2016-11-16 04:09:00    2016-11-16 04:09:00
44582    21437    572    2016-11-16 17:00:00    2016-11-16 17:00:00
44583    21438    772    2016-11-16 02:11:00    2016-11-16 02:11:00
44584    21438    670    2016-11-16 20:12:00    2016-11-16 20:12:00
44585    21438    481    2016-11-16 18:25:00    2016-11-16 18:25:00
44586    21438    880    2016-11-16 10:58:00    2016-11-16 10:58:00
44587    21438    690    2016-11-16 21:40:00    2016-11-16 21:40:00
44588    21439    903    2016-11-16 17:44:00    2016-11-16 17:44:00
44589    21439    508    2016-11-16 21:44:00    2016-11-16 21:44:00
44590    21439    655    2016-11-16 19:53:00    2016-11-16 19:53:00
44591    21439    892    2016-11-16 07:38:00    2016-11-16 07:38:00
44592    21439    526    2016-11-16 15:59:00    2016-11-16 15:59:00
44593    21440    491    2016-11-16 10:59:00    2016-11-16 10:59:00
44594    21440    769    2016-11-16 04:54:00    2016-11-16 04:54:00
44595    21440    806    2016-11-16 08:46:00    2016-11-16 08:46:00
44596    21440    561    2016-11-16 14:35:00    2016-11-16 14:35:00
44597    21440    489    2016-11-16 09:58:00    2016-11-16 09:58:00
44598    21441    688    2016-11-16 20:20:00    2016-11-16 20:20:00
44599    21441    761    2016-11-16 15:59:00    2016-11-16 15:59:00
44600    21441    677    2016-11-16 22:19:00    2016-11-16 22:19:00
44601    21441    610    2016-11-16 18:45:00    2016-11-16 18:45:00
44602    21441    520    2016-11-16 18:10:00    2016-11-16 18:10:00
44603    21442    699    2016-11-16 11:34:00    2016-11-16 11:34:00
44604    21442    784    2016-11-16 06:57:00    2016-11-16 06:57:00
44605    21442    618    2016-11-16 14:16:00    2016-11-16 14:16:00
44606    21442    872    2016-11-16 15:30:00    2016-11-16 15:30:00
44607    21442    795    2016-11-16 19:23:00    2016-11-16 19:23:00
44608    21443    526    2016-11-16 19:00:00    2016-11-16 19:00:00
44609    21443    870    2016-11-16 07:51:00    2016-11-16 07:51:00
44610    21443    810    2016-11-16 12:56:00    2016-11-16 12:56:00
44611    21443    677    2016-11-16 07:28:00    2016-11-16 07:28:00
44612    21443    673    2016-11-16 22:59:00    2016-11-16 22:59:00
44613    21444    648    2016-11-16 12:37:00    2016-11-16 12:37:00
44614    21444    663    2016-11-16 23:11:00    2016-11-16 23:11:00
44615    21444    862    2016-11-16 16:28:00    2016-11-16 16:28:00
44616    21444    949    2016-11-16 18:53:00    2016-11-16 18:53:00
44617    21444    627    2016-11-16 03:07:00    2016-11-16 03:07:00
44618    21445    604    2016-11-16 04:38:00    2016-11-16 04:38:00
44619    21445    584    2016-11-16 02:14:00    2016-11-16 02:14:00
44620    21445    883    2016-11-16 07:42:00    2016-11-16 07:42:00
44621    21445    706    2016-11-16 08:55:00    2016-11-16 08:55:00
44622    21445    668    2016-11-16 17:42:00    2016-11-16 17:42:00
44623    21446    466    2016-11-16 06:14:00    2016-11-16 06:14:00
44624    21446    640    2016-11-16 08:16:00    2016-11-16 08:16:00
44625    21446    610    2016-11-16 03:26:00    2016-11-16 03:26:00
44626    21446    647    2016-11-16 10:36:00    2016-11-16 10:36:00
44627    21446    501    2016-11-16 08:19:00    2016-11-16 08:19:00
44628    21447    914    2016-11-16 08:36:00    2016-11-16 08:36:00
44629    21447    905    2016-11-16 19:31:00    2016-11-16 19:31:00
44630    21447    645    2016-11-16 01:08:00    2016-11-16 01:08:00
44631    21447    506    2016-11-16 22:41:00    2016-11-16 22:41:00
44632    21447    682    2016-11-16 22:32:00    2016-11-16 22:32:00
44633    21448    879    2016-11-16 23:34:00    2016-11-16 23:34:00
44634    21448    595    2016-11-16 23:29:00    2016-11-16 23:29:00
44635    21448    637    2016-11-16 03:02:00    2016-11-16 03:02:00
44636    21448    521    2016-11-16 04:18:00    2016-11-16 04:18:00
44637    21448    825    2016-11-16 17:17:00    2016-11-16 17:17:00
44638    21449    672    2016-11-16 04:44:00    2016-11-16 04:44:00
44639    21449    961    2016-11-16 17:35:00    2016-11-16 17:35:00
44640    21449    507    2016-11-16 04:40:00    2016-11-16 04:40:00
44641    21449    600    2016-11-16 05:05:00    2016-11-16 05:05:00
44642    21449    725    2016-11-16 21:32:00    2016-11-16 21:32:00
44643    21450    931    2016-11-16 15:27:00    2016-11-16 15:27:00
44644    21450    709    2016-11-16 22:28:00    2016-11-16 22:28:00
44645    21450    847    2016-11-16 18:46:00    2016-11-16 18:46:00
44646    21450    483    2016-11-16 19:53:00    2016-11-16 19:53:00
44647    21450    937    2016-11-16 18:46:00    2016-11-16 18:46:00
44648    21451    501    2016-11-16 08:46:00    2016-11-16 08:46:00
44649    21451    542    2016-11-16 20:11:00    2016-11-16 20:11:00
44650    21451    703    2016-11-16 10:33:00    2016-11-16 10:33:00
44651    21451    524    2016-11-16 22:48:00    2016-11-16 22:48:00
44652    21451    944    2016-11-16 11:16:00    2016-11-16 11:16:00
44653    21452    712    2016-11-16 11:04:00    2016-11-16 11:04:00
44654    21452    847    2016-11-16 14:55:00    2016-11-16 14:55:00
44655    21452    523    2016-11-16 06:41:00    2016-11-16 06:41:00
44656    21452    743    2016-11-16 07:19:00    2016-11-16 07:19:00
44657    21452    509    2016-11-16 12:35:00    2016-11-16 12:35:00
44658    21453    528    2016-11-16 13:00:00    2016-11-16 13:00:00
44659    21453    546    2016-11-16 14:45:00    2016-11-16 14:45:00
44660    21453    586    2016-11-16 14:11:00    2016-11-16 14:11:00
44661    21453    576    2016-11-16 07:30:00    2016-11-16 07:30:00
44662    21453    464    2016-11-16 12:00:00    2016-11-16 12:00:00
44663    21454    837    2016-11-16 11:03:00    2016-11-16 11:03:00
44664    21454    840    2016-11-16 05:42:00    2016-11-16 05:42:00
44665    21454    663    2016-11-16 06:03:00    2016-11-16 06:03:00
44666    21454    649    2016-11-16 21:06:00    2016-11-16 21:06:00
44667    21454    761    2016-11-16 08:35:00    2016-11-16 08:35:00
44668    21455    489    2016-11-16 10:18:00    2016-11-16 10:18:00
44669    21455    675    2016-11-16 15:44:00    2016-11-16 15:44:00
44670    21455    662    2016-11-16 02:33:00    2016-11-16 02:33:00
44671    21455    843    2016-11-16 01:58:00    2016-11-16 01:58:00
44672    21455    789    2016-11-16 17:35:00    2016-11-16 17:35:00
44673    21456    887    2016-11-16 21:01:00    2016-11-16 21:01:00
44674    21456    952    2016-11-16 11:37:00    2016-11-16 11:37:00
44675    21456    635    2016-11-16 15:45:00    2016-11-16 15:45:00
44676    21456    733    2016-11-16 08:29:00    2016-11-16 08:29:00
44677    21456    655    2016-11-16 21:51:00    2016-11-16 21:51:00
44678    21457    717    2016-11-16 11:31:00    2016-11-16 11:31:00
44679    21457    815    2016-11-16 05:52:00    2016-11-16 05:52:00
44680    21457    710    2016-11-16 21:32:00    2016-11-16 21:32:00
44681    21457    463    2016-11-16 20:47:00    2016-11-16 20:47:00
44682    21457    764    2016-11-16 07:19:00    2016-11-16 07:19:00
44683    21458    899    2016-11-16 16:03:00    2016-11-16 16:03:00
44684    21458    509    2016-11-16 12:31:00    2016-11-16 12:31:00
44685    21458    539    2016-11-16 23:19:00    2016-11-16 23:19:00
44686    21458    709    2016-11-16 11:24:00    2016-11-16 11:24:00
44687    21458    933    2016-11-16 14:38:00    2016-11-16 14:38:00
44688    21459    502    2016-11-16 15:16:00    2016-11-16 15:16:00
44689    21459    853    2016-11-16 06:44:00    2016-11-16 06:44:00
44690    21459    470    2016-11-16 14:11:00    2016-11-16 14:11:00
44691    21459    544    2016-11-16 15:32:00    2016-11-16 15:32:00
44692    21459    670    2016-11-16 15:39:00    2016-11-16 15:39:00
44693    21460    871    2016-11-16 09:32:00    2016-11-16 09:32:00
44694    21460    584    2016-11-16 05:39:00    2016-11-16 05:39:00
44695    21460    858    2016-11-16 05:02:00    2016-11-16 05:02:00
44696    21460    875    2016-11-16 18:11:00    2016-11-16 18:11:00
44697    21460    553    2016-11-16 16:11:00    2016-11-16 16:11:00
44698    21461    617    2016-11-16 06:02:00    2016-11-16 06:02:00
44699    21461    784    2016-11-16 12:50:00    2016-11-16 12:50:00
44700    21461    954    2016-11-16 02:00:00    2016-11-16 02:00:00
44701    21461    760    2016-11-16 19:09:00    2016-11-16 19:09:00
44702    21461    765    2016-11-16 11:58:00    2016-11-16 11:58:00
44703    21462    606    2016-11-16 18:18:00    2016-11-16 18:18:00
44704    21462    570    2016-11-16 10:03:00    2016-11-16 10:03:00
44705    21462    763    2016-11-16 22:07:00    2016-11-16 22:07:00
44706    21462    786    2016-11-16 16:39:00    2016-11-16 16:39:00
44707    21462    758    2016-11-16 10:22:00    2016-11-16 10:22:00
44708    21463    670    2016-11-16 20:29:00    2016-11-16 20:29:00
44709    21463    884    2016-11-16 22:05:00    2016-11-16 22:05:00
44710    21463    709    2016-11-16 06:33:00    2016-11-16 06:33:00
44711    21463    641    2016-11-16 21:56:00    2016-11-16 21:56:00
44712    21463    743    2016-11-16 19:04:00    2016-11-16 19:04:00
44713    21464    869    2016-11-16 19:29:00    2016-11-16 19:29:00
44714    21464    934    2016-11-16 21:03:00    2016-11-16 21:03:00
44715    21464    817    2016-11-16 09:38:00    2016-11-16 09:38:00
44716    21464    559    2016-11-16 07:07:00    2016-11-16 07:07:00
44717    21464    585    2016-11-16 04:29:00    2016-11-16 04:29:00
44718    21465    812    2016-11-16 04:10:00    2016-11-16 04:10:00
44719    21465    578    2016-11-16 03:59:00    2016-11-16 03:59:00
44720    21465    717    2016-11-16 13:23:00    2016-11-16 13:23:00
44721    21465    487    2016-11-16 18:26:00    2016-11-16 18:26:00
44722    21465    624    2016-11-16 09:50:00    2016-11-16 09:50:00
44723    21466    858    2016-11-16 20:54:00    2016-11-16 20:54:00
44724    21466    710    2016-11-16 14:05:00    2016-11-16 14:05:00
44725    21466    696    2016-11-16 01:44:00    2016-11-16 01:44:00
44726    21466    504    2016-11-16 02:51:00    2016-11-16 02:51:00
44727    21466    927    2016-11-16 13:37:00    2016-11-16 13:37:00
44728    21467    469    2016-11-16 11:38:00    2016-11-16 11:38:00
44729    21467    918    2016-11-16 22:22:00    2016-11-16 22:22:00
44730    21467    837    2016-11-16 20:37:00    2016-11-16 20:37:00
44731    21467    937    2016-11-16 20:06:00    2016-11-16 20:06:00
44732    21467    465    2016-11-16 01:50:00    2016-11-16 01:50:00
44733    21468    644    2016-11-16 19:38:00    2016-11-16 19:38:00
44734    21468    584    2016-11-16 13:58:00    2016-11-16 13:58:00
44735    21468    799    2016-11-16 21:08:00    2016-11-16 21:08:00
44736    21468    627    2016-11-16 07:44:00    2016-11-16 07:44:00
44737    21468    557    2016-11-16 08:40:00    2016-11-16 08:40:00
44738    21469    644    2016-11-16 06:50:00    2016-11-16 06:50:00
44739    21469    577    2016-11-16 04:43:00    2016-11-16 04:43:00
44740    21469    951    2016-11-16 18:50:00    2016-11-16 18:50:00
44741    21469    576    2016-11-16 06:00:00    2016-11-16 06:00:00
44742    21469    886    2016-11-16 22:53:00    2016-11-16 22:53:00
44743    21470    567    2016-11-16 10:25:00    2016-11-16 10:25:00
44744    21470    636    2016-11-16 11:19:00    2016-11-16 11:19:00
44745    21470    674    2016-11-16 11:53:00    2016-11-16 11:53:00
44746    21470    577    2016-11-16 19:08:00    2016-11-16 19:08:00
44747    21470    885    2016-11-16 04:00:00    2016-11-16 04:00:00
44748    21471    703    2016-11-16 17:36:00    2016-11-16 17:36:00
44749    21471    690    2016-11-16 06:02:00    2016-11-16 06:02:00
44750    21471    790    2016-11-16 10:46:00    2016-11-16 10:46:00
44751    21471    596    2016-11-16 23:31:00    2016-11-16 23:31:00
44752    21471    899    2016-11-16 04:43:00    2016-11-16 04:43:00
44753    21472    775    2016-11-16 11:34:00    2016-11-16 11:34:00
44754    21472    876    2016-11-16 22:06:00    2016-11-16 22:06:00
44755    21472    951    2016-11-16 05:05:00    2016-11-16 05:05:00
44756    21472    911    2016-11-16 14:40:00    2016-11-16 14:40:00
44757    21472    887    2016-11-16 18:39:00    2016-11-16 18:39:00
44758    21473    473    2016-11-16 09:02:00    2016-11-16 09:02:00
44759    21473    933    2016-11-16 13:33:00    2016-11-16 13:33:00
44760    21473    568    2016-11-16 22:05:00    2016-11-16 22:05:00
44761    21473    677    2016-11-16 10:58:00    2016-11-16 10:58:00
44762    21473    929    2016-11-16 15:46:00    2016-11-16 15:46:00
44763    21474    802    2016-11-16 12:57:00    2016-11-16 12:57:00
44764    21474    615    2016-11-16 06:35:00    2016-11-16 06:35:00
44765    21474    643    2016-11-16 13:42:00    2016-11-16 13:42:00
44766    21474    889    2016-11-16 17:16:00    2016-11-16 17:16:00
44767    21474    925    2016-11-16 20:33:00    2016-11-16 20:33:00
44768    21475    723    2016-11-16 02:24:00    2016-11-16 02:24:00
44769    21475    502    2016-11-16 04:11:00    2016-11-16 04:11:00
44770    21475    794    2016-11-16 11:39:00    2016-11-16 11:39:00
44771    21475    938    2016-11-16 04:09:00    2016-11-16 04:09:00
44772    21475    705    2016-11-16 21:14:00    2016-11-16 21:14:00
44773    21476    466    2016-11-16 17:08:00    2016-11-16 17:08:00
44774    21476    736    2016-11-16 20:43:00    2016-11-16 20:43:00
44775    21476    697    2016-11-16 12:53:00    2016-11-16 12:53:00
44776    21476    679    2016-11-16 23:20:00    2016-11-16 23:20:00
44777    21476    744    2016-11-16 17:10:00    2016-11-16 17:10:00
44778    21477    479    2016-11-16 09:06:00    2016-11-16 09:06:00
44779    21477    712    2016-11-16 10:57:00    2016-11-16 10:57:00
44780    21477    820    2016-11-16 23:31:00    2016-11-16 23:31:00
44781    21477    878    2016-11-16 05:15:00    2016-11-16 05:15:00
44782    21477    560    2016-11-16 23:10:00    2016-11-16 23:10:00
44783    21478    715    2016-11-16 21:46:00    2016-11-16 21:46:00
44784    21478    657    2016-11-16 10:52:00    2016-11-16 10:52:00
44785    21478    882    2016-11-16 02:10:00    2016-11-16 02:10:00
44786    21478    677    2016-11-16 21:22:00    2016-11-16 21:22:00
44787    21478    930    2016-11-16 20:50:00    2016-11-16 20:50:00
44788    21479    500    2016-11-16 10:27:00    2016-11-16 10:27:00
44789    21479    761    2016-11-16 12:24:00    2016-11-16 12:24:00
44790    21479    887    2016-11-16 09:30:00    2016-11-16 09:30:00
44791    21479    534    2016-11-16 11:31:00    2016-11-16 11:31:00
44792    21479    738    2016-11-16 19:12:00    2016-11-16 19:12:00
44793    21480    504    2016-11-16 05:55:00    2016-11-16 05:55:00
44794    21480    704    2016-11-16 15:48:00    2016-11-16 15:48:00
44795    21480    909    2016-11-16 22:54:00    2016-11-16 22:54:00
44796    21480    745    2016-11-16 03:56:00    2016-11-16 03:56:00
44797    21480    471    2016-11-16 16:03:00    2016-11-16 16:03:00
44798    21481    670    2016-11-16 02:04:00    2016-11-16 02:04:00
44799    21481    948    2016-11-16 20:40:00    2016-11-16 20:40:00
44800    21481    902    2016-11-16 03:14:00    2016-11-16 03:14:00
44801    21481    798    2016-11-16 16:35:00    2016-11-16 16:35:00
44802    21481    631    2016-11-16 13:47:00    2016-11-16 13:47:00
44803    21482    666    2016-11-16 03:02:00    2016-11-16 03:02:00
44804    21482    834    2016-11-16 07:11:00    2016-11-16 07:11:00
44805    21482    486    2016-11-16 21:42:00    2016-11-16 21:42:00
44806    21482    481    2016-11-16 15:49:00    2016-11-16 15:49:00
44807    21482    542    2016-11-16 22:06:00    2016-11-16 22:06:00
44808    21483    949    2016-11-16 18:14:00    2016-11-16 18:14:00
44809    21483    715    2016-11-16 21:27:00    2016-11-16 21:27:00
44810    21483    929    2016-11-16 13:38:00    2016-11-16 13:38:00
44811    21483    630    2016-11-16 15:08:00    2016-11-16 15:08:00
44812    21483    959    2016-11-16 18:22:00    2016-11-16 18:22:00
44813    21484    898    2016-11-16 03:35:00    2016-11-16 03:35:00
44814    21484    576    2016-11-16 03:45:00    2016-11-16 03:45:00
44815    21484    478    2016-11-16 02:15:00    2016-11-16 02:15:00
44816    21484    801    2016-11-16 14:00:00    2016-11-16 14:00:00
44817    21484    463    2016-11-16 05:00:00    2016-11-16 05:00:00
44818    21485    956    2016-11-16 23:25:00    2016-11-16 23:25:00
44819    21485    823    2016-11-16 05:21:00    2016-11-16 05:21:00
44820    21485    544    2016-11-16 16:45:00    2016-11-16 16:45:00
44821    21485    603    2016-11-16 02:52:00    2016-11-16 02:52:00
44822    21485    864    2016-11-16 20:08:00    2016-11-16 20:08:00
44823    21486    661    2016-11-16 08:04:00    2016-11-16 08:04:00
44824    21486    763    2016-11-16 01:17:00    2016-11-16 01:17:00
44825    21486    662    2016-11-16 18:08:00    2016-11-16 18:08:00
44826    21486    521    2016-11-16 13:05:00    2016-11-16 13:05:00
44827    21486    613    2016-11-16 15:34:00    2016-11-16 15:34:00
44828    21487    885    2016-11-16 12:00:00    2016-11-16 12:00:00
44829    21487    644    2016-11-16 13:30:00    2016-11-16 13:30:00
44830    21487    820    2016-11-16 14:47:00    2016-11-16 14:47:00
44831    21487    939    2016-11-16 05:36:00    2016-11-16 05:36:00
44832    21487    926    2016-11-16 21:11:00    2016-11-16 21:11:00
44833    21488    673    2016-11-16 06:57:00    2016-11-16 06:57:00
44834    21488    556    2016-11-16 17:14:00    2016-11-16 17:14:00
44835    21488    552    2016-11-16 19:20:00    2016-11-16 19:20:00
44836    21488    662    2016-11-16 05:49:00    2016-11-16 05:49:00
44837    21488    858    2016-11-16 13:47:00    2016-11-16 13:47:00
44838    21489    958    2016-11-16 11:43:00    2016-11-16 11:43:00
44839    21489    625    2016-11-16 19:45:00    2016-11-16 19:45:00
44840    21489    592    2016-11-16 02:29:00    2016-11-16 02:29:00
44841    21489    780    2016-11-16 03:46:00    2016-11-16 03:46:00
44842    21489    747    2016-11-16 02:26:00    2016-11-16 02:26:00
44843    21490    934    2016-11-16 04:46:00    2016-11-16 04:46:00
44844    21490    778    2016-11-16 19:13:00    2016-11-16 19:13:00
44845    21490    940    2016-11-16 08:05:00    2016-11-16 08:05:00
44846    21490    675    2016-11-16 06:22:00    2016-11-16 06:22:00
44847    21490    685    2016-11-16 19:01:00    2016-11-16 19:01:00
44848    21491    551    2016-11-16 08:09:00    2016-11-16 08:09:00
44849    21491    776    2016-11-16 07:21:00    2016-11-16 07:21:00
44850    21491    924    2016-11-16 12:11:00    2016-11-16 12:11:00
44851    21491    588    2016-11-16 08:50:00    2016-11-16 08:50:00
44852    21491    481    2016-11-16 10:03:00    2016-11-16 10:03:00
44853    21492    692    2016-11-16 10:08:00    2016-11-16 10:08:00
44854    21492    894    2016-11-16 15:55:00    2016-11-16 15:55:00
44855    21492    716    2016-11-16 13:49:00    2016-11-16 13:49:00
44856    21492    624    2016-11-16 19:31:00    2016-11-16 19:31:00
44857    21492    834    2016-11-16 15:04:00    2016-11-16 15:04:00
44858    21493    639    2016-11-16 07:16:00    2016-11-16 07:16:00
44859    21493    896    2016-11-16 13:32:00    2016-11-16 13:32:00
44860    21493    655    2016-11-16 03:26:00    2016-11-16 03:26:00
44861    21493    921    2016-11-16 12:56:00    2016-11-16 12:56:00
44862    21493    819    2016-11-16 10:41:00    2016-11-16 10:41:00
44863    21494    695    2016-11-16 01:14:00    2016-11-16 01:14:00
44864    21494    713    2016-11-16 19:00:00    2016-11-16 19:00:00
44865    21494    954    2016-11-16 21:32:00    2016-11-16 21:32:00
44866    21494    668    2016-11-16 11:53:00    2016-11-16 11:53:00
44867    21494    718    2016-11-16 12:24:00    2016-11-16 12:24:00
44868    21495    961    2016-11-16 13:58:00    2016-11-16 13:58:00
44869    21495    673    2016-11-16 15:30:00    2016-11-16 15:30:00
44870    21495    843    2016-11-16 12:31:00    2016-11-16 12:31:00
44871    21495    627    2016-11-16 05:24:00    2016-11-16 05:24:00
44872    21495    535    2016-11-16 06:48:00    2016-11-16 06:48:00
44873    21496    905    2016-11-16 05:54:00    2016-11-16 05:54:00
44874    21496    906    2016-11-16 05:06:00    2016-11-16 05:06:00
44875    21496    729    2016-11-16 08:31:00    2016-11-16 08:31:00
44876    21496    786    2016-11-16 05:01:00    2016-11-16 05:01:00
44877    21496    504    2016-11-16 09:19:00    2016-11-16 09:19:00
44878    21497    846    2016-11-17 12:51:00    2016-11-17 12:51:00
44879    21497    852    2016-11-17 18:10:00    2016-11-17 18:10:00
44880    21497    580    2016-11-17 20:19:00    2016-11-17 20:19:00
44881    21497    552    2016-11-17 04:28:00    2016-11-17 04:28:00
44882    21497    855    2016-11-17 18:39:00    2016-11-17 18:39:00
44883    21498    739    2016-11-17 09:17:00    2016-11-17 09:17:00
44884    21498    608    2016-11-17 18:58:00    2016-11-17 18:58:00
44885    21498    678    2016-11-17 14:18:00    2016-11-17 14:18:00
44886    21498    902    2016-11-17 19:43:00    2016-11-17 19:43:00
44887    21498    736    2016-11-17 12:14:00    2016-11-17 12:14:00
44888    21499    952    2016-11-17 20:01:00    2016-11-17 20:01:00
44889    21499    847    2016-11-17 03:57:00    2016-11-17 03:57:00
44890    21499    644    2016-11-17 13:59:00    2016-11-17 13:59:00
44891    21499    803    2016-11-17 11:04:00    2016-11-17 11:04:00
44892    21499    947    2016-11-17 14:59:00    2016-11-17 14:59:00
44893    21500    472    2016-11-17 06:41:00    2016-11-17 06:41:00
44894    21500    607    2016-11-17 04:30:00    2016-11-17 04:30:00
44895    21500    553    2016-11-17 20:41:00    2016-11-17 20:41:00
44896    21500    636    2016-11-17 04:00:00    2016-11-17 04:00:00
44897    21500    644    2016-11-17 18:49:00    2016-11-17 18:49:00
44898    21501    883    2016-11-17 18:57:00    2016-11-17 18:57:00
44899    21501    736    2016-11-17 11:57:00    2016-11-17 11:57:00
44900    21501    491    2016-11-17 12:52:00    2016-11-17 12:52:00
44901    21501    832    2016-11-17 16:09:00    2016-11-17 16:09:00
44902    21501    769    2016-11-17 14:23:00    2016-11-17 14:23:00
44903    21502    849    2016-11-17 10:33:00    2016-11-17 10:33:00
44904    21502    824    2016-11-17 17:31:00    2016-11-17 17:31:00
44905    21502    925    2016-11-17 20:37:00    2016-11-17 20:37:00
44906    21502    615    2016-11-17 19:26:00    2016-11-17 19:26:00
44907    21502    771    2016-11-17 10:16:00    2016-11-17 10:16:00
44908    21503    789    2016-11-17 12:17:00    2016-11-17 12:17:00
44909    21503    814    2016-11-17 02:48:00    2016-11-17 02:48:00
44910    21503    758    2016-11-17 13:04:00    2016-11-17 13:04:00
44911    21503    875    2016-11-17 06:18:00    2016-11-17 06:18:00
44912    21503    751    2016-11-17 22:44:00    2016-11-17 22:44:00
44913    21504    680    2016-11-17 07:42:00    2016-11-17 07:42:00
44914    21504    537    2016-11-17 16:11:00    2016-11-17 16:11:00
44915    21504    735    2016-11-17 08:40:00    2016-11-17 08:40:00
44916    21504    685    2016-11-17 14:30:00    2016-11-17 14:30:00
44917    21504    817    2016-11-17 12:49:00    2016-11-17 12:49:00
44918    21505    913    2016-11-17 16:30:00    2016-11-17 16:30:00
44919    21505    523    2016-11-17 16:10:00    2016-11-17 16:10:00
44920    21505    755    2016-11-17 13:59:00    2016-11-17 13:59:00
44921    21505    578    2016-11-17 08:16:00    2016-11-17 08:16:00
44922    21505    754    2016-11-17 10:00:00    2016-11-17 10:00:00
44923    21506    915    2016-11-17 18:31:00    2016-11-17 18:31:00
44924    21506    759    2016-11-17 03:32:00    2016-11-17 03:32:00
44925    21506    895    2016-11-17 10:34:00    2016-11-17 10:34:00
44926    21506    467    2016-11-17 14:49:00    2016-11-17 14:49:00
44927    21506    657    2016-11-17 15:53:00    2016-11-17 15:53:00
44928    21507    602    2016-11-17 20:05:00    2016-11-17 20:05:00
44929    21507    518    2016-11-17 08:22:00    2016-11-17 08:22:00
44930    21507    707    2016-11-17 04:15:00    2016-11-17 04:15:00
44931    21507    752    2016-11-17 19:35:00    2016-11-17 19:35:00
44932    21507    788    2016-11-17 22:58:00    2016-11-17 22:58:00
44933    21508    525    2016-11-17 06:29:00    2016-11-17 06:29:00
44934    21508    647    2016-11-17 13:14:00    2016-11-17 13:14:00
44935    21508    660    2016-11-17 16:56:00    2016-11-17 16:56:00
44936    21508    870    2016-11-17 11:41:00    2016-11-17 11:41:00
44937    21508    465    2016-11-17 07:46:00    2016-11-17 07:46:00
44938    21509    581    2016-11-17 02:46:00    2016-11-17 02:46:00
44939    21509    942    2016-11-17 05:23:00    2016-11-17 05:23:00
44940    21509    948    2016-11-17 14:46:00    2016-11-17 14:46:00
44941    21509    958    2016-11-17 23:38:00    2016-11-17 23:38:00
44942    21509    811    2016-11-17 12:41:00    2016-11-17 12:41:00
44943    21510    584    2016-11-17 05:58:00    2016-11-17 05:58:00
44944    21510    656    2016-11-17 11:00:00    2016-11-17 11:00:00
44945    21510    878    2016-11-17 22:54:00    2016-11-17 22:54:00
44946    21510    517    2016-11-17 07:19:00    2016-11-17 07:19:00
44947    21510    740    2016-11-17 02:52:00    2016-11-17 02:52:00
44948    21511    739    2016-11-17 03:51:00    2016-11-17 03:51:00
44949    21511    933    2016-11-17 08:40:00    2016-11-17 08:40:00
44950    21511    956    2016-11-17 04:01:00    2016-11-17 04:01:00
44951    21511    636    2016-11-17 22:10:00    2016-11-17 22:10:00
44952    21511    891    2016-11-17 20:33:00    2016-11-17 20:33:00
44953    21512    932    2016-11-17 19:04:00    2016-11-17 19:04:00
44954    21512    600    2016-11-17 01:12:00    2016-11-17 01:12:00
44955    21512    654    2016-11-17 09:42:00    2016-11-17 09:42:00
44956    21512    906    2016-11-17 23:24:00    2016-11-17 23:24:00
44957    21512    728    2016-11-17 12:42:00    2016-11-17 12:42:00
44958    21513    822    2016-11-17 03:38:00    2016-11-17 03:38:00
44959    21513    490    2016-11-17 09:47:00    2016-11-17 09:47:00
44960    21513    689    2016-11-17 14:12:00    2016-11-17 14:12:00
44961    21513    893    2016-11-17 08:05:00    2016-11-17 08:05:00
44962    21513    750    2016-11-17 21:08:00    2016-11-17 21:08:00
44963    21514    773    2016-11-17 17:08:00    2016-11-17 17:08:00
44964    21514    832    2016-11-17 08:29:00    2016-11-17 08:29:00
44965    21514    799    2016-11-17 17:31:00    2016-11-17 17:31:00
44966    21514    532    2016-11-17 12:37:00    2016-11-17 12:37:00
44967    21514    911    2016-11-17 20:44:00    2016-11-17 20:44:00
44968    21515    753    2016-11-17 01:22:00    2016-11-17 01:22:00
44969    21515    891    2016-11-17 23:53:00    2016-11-17 23:53:00
44970    21515    812    2016-11-17 10:35:00    2016-11-17 10:35:00
44971    21515    939    2016-11-17 03:28:00    2016-11-17 03:28:00
44972    21515    749    2016-11-17 23:33:00    2016-11-17 23:33:00
44973    21516    688    2016-11-17 15:39:00    2016-11-17 15:39:00
44974    21516    741    2016-11-17 06:34:00    2016-11-17 06:34:00
44975    21516    464    2016-11-17 02:01:00    2016-11-17 02:01:00
44976    21516    884    2016-11-17 02:47:00    2016-11-17 02:47:00
44977    21516    543    2016-11-17 17:58:00    2016-11-17 17:58:00
44978    21517    755    2016-11-17 08:49:00    2016-11-17 08:49:00
44979    21517    571    2016-11-17 02:06:00    2016-11-17 02:06:00
44980    21517    948    2016-11-17 19:03:00    2016-11-17 19:03:00
44981    21517    830    2016-11-17 23:40:00    2016-11-17 23:40:00
44982    21517    611    2016-11-17 07:56:00    2016-11-17 07:56:00
44983    21518    477    2016-11-17 04:03:00    2016-11-17 04:03:00
44984    21518    487    2016-11-17 21:23:00    2016-11-17 21:23:00
44985    21518    817    2016-11-17 09:36:00    2016-11-17 09:36:00
44986    21518    664    2016-11-17 10:20:00    2016-11-17 10:20:00
44987    21518    481    2016-11-17 17:02:00    2016-11-17 17:02:00
44988    21519    513    2016-11-17 13:00:00    2016-11-17 13:00:00
44989    21519    603    2016-11-17 10:06:00    2016-11-17 10:06:00
44990    21519    651    2016-11-17 18:37:00    2016-11-17 18:37:00
44991    21519    844    2016-11-17 13:54:00    2016-11-17 13:54:00
44992    21519    719    2016-11-17 23:50:00    2016-11-17 23:50:00
44993    21520    812    2016-11-17 10:14:00    2016-11-17 10:14:00
44994    21520    493    2016-11-17 01:23:00    2016-11-17 01:23:00
44995    21520    472    2016-11-17 17:39:00    2016-11-17 17:39:00
44996    21520    803    2016-11-17 03:15:00    2016-11-17 03:15:00
44997    21520    891    2016-11-17 17:35:00    2016-11-17 17:35:00
44998    21521    936    2016-11-17 09:03:00    2016-11-17 09:03:00
44999    21521    771    2016-11-17 23:26:00    2016-11-17 23:26:00
45000    21521    545    2016-11-17 14:41:00    2016-11-17 14:41:00
45001    21521    882    2016-11-17 16:51:00    2016-11-17 16:51:00
45002    21521    911    2016-11-17 07:30:00    2016-11-17 07:30:00
45003    21522    567    2016-11-17 03:45:00    2016-11-17 03:45:00
45004    21522    528    2016-11-17 17:17:00    2016-11-17 17:17:00
45005    21522    933    2016-11-17 22:38:00    2016-11-17 22:38:00
45006    21522    728    2016-11-17 06:01:00    2016-11-17 06:01:00
45007    21522    837    2016-11-17 09:34:00    2016-11-17 09:34:00
45008    21523    784    2016-11-17 15:47:00    2016-11-17 15:47:00
45009    21523    480    2016-11-17 05:31:00    2016-11-17 05:31:00
45010    21523    617    2016-11-17 20:42:00    2016-11-17 20:42:00
45011    21523    754    2016-11-17 14:43:00    2016-11-17 14:43:00
45012    21523    744    2016-11-17 02:54:00    2016-11-17 02:54:00
45013    21524    742    2016-11-17 20:37:00    2016-11-17 20:37:00
45014    21524    937    2016-11-17 05:16:00    2016-11-17 05:16:00
45015    21524    537    2016-11-17 21:09:00    2016-11-17 21:09:00
45016    21524    806    2016-11-17 08:49:00    2016-11-17 08:49:00
45017    21524    559    2016-11-17 17:12:00    2016-11-17 17:12:00
45018    21525    605    2016-11-17 01:36:00    2016-11-17 01:36:00
45019    21525    562    2016-11-17 07:08:00    2016-11-17 07:08:00
45020    21525    624    2016-11-17 20:15:00    2016-11-17 20:15:00
45021    21525    608    2016-11-17 18:36:00    2016-11-17 18:36:00
45022    21525    547    2016-11-17 04:19:00    2016-11-17 04:19:00
45023    21526    784    2016-11-17 03:51:00    2016-11-17 03:51:00
45024    21526    747    2016-11-17 16:05:00    2016-11-17 16:05:00
45025    21526    821    2016-11-17 22:06:00    2016-11-17 22:06:00
45026    21526    814    2016-11-17 15:19:00    2016-11-17 15:19:00
45027    21526    917    2016-11-17 19:31:00    2016-11-17 19:31:00
45028    21527    790    2016-11-17 21:50:00    2016-11-17 21:50:00
45029    21527    808    2016-11-17 05:16:00    2016-11-17 05:16:00
45030    21527    804    2016-11-17 01:52:00    2016-11-17 01:52:00
45031    21527    757    2016-11-17 06:46:00    2016-11-17 06:46:00
45032    21527    899    2016-11-17 10:46:00    2016-11-17 10:46:00
45033    21528    497    2016-11-17 13:55:00    2016-11-17 13:55:00
45034    21528    916    2016-11-17 16:39:00    2016-11-17 16:39:00
45035    21528    523    2016-11-17 19:08:00    2016-11-17 19:08:00
45036    21528    512    2016-11-17 08:33:00    2016-11-17 08:33:00
45037    21528    525    2016-11-17 22:50:00    2016-11-17 22:50:00
45038    21529    746    2016-11-17 22:50:00    2016-11-17 22:50:00
45039    21529    823    2016-11-17 17:05:00    2016-11-17 17:05:00
45040    21529    845    2016-11-17 03:31:00    2016-11-17 03:31:00
45041    21529    853    2016-11-17 08:45:00    2016-11-17 08:45:00
45042    21529    932    2016-11-17 19:49:00    2016-11-17 19:49:00
45043    21530    679    2016-11-17 17:08:00    2016-11-17 17:08:00
45044    21530    812    2016-11-17 14:00:00    2016-11-17 14:00:00
45045    21530    867    2016-11-17 12:58:00    2016-11-17 12:58:00
45046    21530    946    2016-11-17 03:28:00    2016-11-17 03:28:00
45047    21530    935    2016-11-17 17:29:00    2016-11-17 17:29:00
45048    21531    748    2016-11-17 08:20:00    2016-11-17 08:20:00
45049    21531    488    2016-11-17 21:24:00    2016-11-17 21:24:00
45050    21531    925    2016-11-17 18:47:00    2016-11-17 18:47:00
45051    21531    723    2016-11-17 18:48:00    2016-11-17 18:48:00
45052    21531    466    2016-11-17 12:29:00    2016-11-17 12:29:00
45053    21532    837    2016-11-17 19:38:00    2016-11-17 19:38:00
45054    21532    913    2016-11-17 13:52:00    2016-11-17 13:52:00
45055    21532    588    2016-11-17 14:45:00    2016-11-17 14:45:00
45056    21532    693    2016-11-17 18:45:00    2016-11-17 18:45:00
45057    21532    915    2016-11-17 02:20:00    2016-11-17 02:20:00
45058    21533    925    2016-11-17 19:58:00    2016-11-17 19:58:00
45059    21533    815    2016-11-17 09:08:00    2016-11-17 09:08:00
45060    21533    824    2016-11-17 14:23:00    2016-11-17 14:23:00
45061    21533    612    2016-11-17 07:33:00    2016-11-17 07:33:00
45062    21533    520    2016-11-17 13:00:00    2016-11-17 13:00:00
45063    21534    577    2016-11-17 21:14:00    2016-11-17 21:14:00
45064    21534    856    2016-11-17 20:48:00    2016-11-17 20:48:00
45065    21534    645    2016-11-17 15:37:00    2016-11-17 15:37:00
45066    21534    491    2016-11-17 04:04:00    2016-11-17 04:04:00
45067    21534    818    2016-11-17 14:03:00    2016-11-17 14:03:00
45068    21535    886    2016-11-17 05:05:00    2016-11-17 05:05:00
45069    21535    928    2016-11-17 09:05:00    2016-11-17 09:05:00
45070    21535    953    2016-11-17 16:53:00    2016-11-17 16:53:00
45071    21535    547    2016-11-17 01:31:00    2016-11-17 01:31:00
45072    21535    562    2016-11-17 15:58:00    2016-11-17 15:58:00
45073    21536    857    2016-11-17 15:50:00    2016-11-17 15:50:00
45074    21536    581    2016-11-17 14:25:00    2016-11-17 14:25:00
45075    21536    519    2016-11-17 13:01:00    2016-11-17 13:01:00
45076    21536    884    2016-11-17 07:09:00    2016-11-17 07:09:00
45077    21536    602    2016-11-17 06:29:00    2016-11-17 06:29:00
45078    21537    826    2016-11-17 07:35:00    2016-11-17 07:35:00
45079    21537    615    2016-11-17 03:23:00    2016-11-17 03:23:00
45080    21537    775    2016-11-17 21:30:00    2016-11-17 21:30:00
45081    21537    738    2016-11-17 15:30:00    2016-11-17 15:30:00
45082    21537    714    2016-11-17 22:42:00    2016-11-17 22:42:00
45083    21538    824    2016-11-17 22:43:00    2016-11-17 22:43:00
45084    21538    696    2016-11-17 06:41:00    2016-11-17 06:41:00
45085    21538    815    2016-11-17 03:33:00    2016-11-17 03:33:00
45086    21538    906    2016-11-17 23:39:00    2016-11-17 23:39:00
45087    21538    900    2016-11-17 22:59:00    2016-11-17 22:59:00
45088    21539    633    2016-11-17 04:43:00    2016-11-17 04:43:00
45089    21539    864    2016-11-17 13:19:00    2016-11-17 13:19:00
45090    21539    636    2016-11-17 08:32:00    2016-11-17 08:32:00
45091    21539    593    2016-11-17 21:40:00    2016-11-17 21:40:00
45092    21539    653    2016-11-17 12:32:00    2016-11-17 12:32:00
45093    21540    824    2016-11-18 23:43:00    2016-11-18 23:43:00
45094    21540    594    2016-11-18 02:14:00    2016-11-18 02:14:00
45095    21540    926    2016-11-18 18:05:00    2016-11-18 18:05:00
45096    21540    923    2016-11-18 20:18:00    2016-11-18 20:18:00
45097    21540    534    2016-11-18 09:51:00    2016-11-18 09:51:00
45098    21541    504    2016-11-18 09:35:00    2016-11-18 09:35:00
45099    21541    507    2016-11-18 16:52:00    2016-11-18 16:52:00
45100    21541    464    2016-11-18 11:03:00    2016-11-18 11:03:00
45101    21541    810    2016-11-18 15:42:00    2016-11-18 15:42:00
45102    21541    811    2016-11-18 12:12:00    2016-11-18 12:12:00
45103    21542    545    2016-11-18 18:03:00    2016-11-18 18:03:00
45104    21542    659    2016-11-18 18:00:00    2016-11-18 18:00:00
45105    21542    928    2016-11-18 13:54:00    2016-11-18 13:54:00
45106    21542    706    2016-11-18 10:12:00    2016-11-18 10:12:00
45107    21542    639    2016-11-18 18:46:00    2016-11-18 18:46:00
45108    21543    723    2016-11-18 03:52:00    2016-11-18 03:52:00
45109    21543    482    2016-11-18 18:35:00    2016-11-18 18:35:00
45110    21543    790    2016-11-18 03:38:00    2016-11-18 03:38:00
45111    21543    614    2016-11-18 15:11:00    2016-11-18 15:11:00
45112    21543    833    2016-11-18 23:14:00    2016-11-18 23:14:00
45113    21544    465    2016-11-18 19:45:00    2016-11-18 19:45:00
45114    21544    573    2016-11-18 03:19:00    2016-11-18 03:19:00
45115    21544    843    2016-11-18 15:48:00    2016-11-18 15:48:00
45116    21544    577    2016-11-18 13:03:00    2016-11-18 13:03:00
45117    21544    898    2016-11-18 18:18:00    2016-11-18 18:18:00
45118    21545    804    2016-11-18 20:49:00    2016-11-18 20:49:00
45119    21545    494    2016-11-18 01:45:00    2016-11-18 01:45:00
45120    21545    953    2016-11-18 08:13:00    2016-11-18 08:13:00
45121    21545    535    2016-11-18 20:37:00    2016-11-18 20:37:00
45122    21545    606    2016-11-18 01:46:00    2016-11-18 01:46:00
45123    21546    590    2016-11-18 21:34:00    2016-11-18 21:34:00
45124    21546    958    2016-11-18 11:31:00    2016-11-18 11:31:00
45125    21546    482    2016-11-18 06:52:00    2016-11-18 06:52:00
45126    21546    770    2016-11-18 02:55:00    2016-11-18 02:55:00
45127    21546    800    2016-11-18 11:08:00    2016-11-18 11:08:00
45128    21547    519    2016-11-18 12:26:00    2016-11-18 12:26:00
45129    21547    476    2016-11-18 19:00:00    2016-11-18 19:00:00
45130    21547    539    2016-11-18 12:47:00    2016-11-18 12:47:00
45131    21547    836    2016-11-18 08:21:00    2016-11-18 08:21:00
45132    21547    779    2016-11-18 14:35:00    2016-11-18 14:35:00
45133    21548    822    2016-11-18 13:12:00    2016-11-18 13:12:00
45134    21548    925    2016-11-18 15:34:00    2016-11-18 15:34:00
45135    21548    469    2016-11-18 23:48:00    2016-11-18 23:48:00
45136    21548    948    2016-11-18 07:16:00    2016-11-18 07:16:00
45137    21548    778    2016-11-18 07:04:00    2016-11-18 07:04:00
45138    21549    511    2016-11-18 08:04:00    2016-11-18 08:04:00
45139    21549    694    2016-11-18 16:52:00    2016-11-18 16:52:00
45140    21549    716    2016-11-18 03:01:00    2016-11-18 03:01:00
45141    21549    862    2016-11-18 20:51:00    2016-11-18 20:51:00
45142    21549    754    2016-11-18 13:30:00    2016-11-18 13:30:00
45143    21550    798    2016-11-18 09:38:00    2016-11-18 09:38:00
45144    21550    822    2016-11-18 08:45:00    2016-11-18 08:45:00
45145    21550    681    2016-11-18 09:44:00    2016-11-18 09:44:00
45146    21550    919    2016-11-18 10:55:00    2016-11-18 10:55:00
45147    21550    479    2016-11-18 06:35:00    2016-11-18 06:35:00
45148    21551    704    2016-11-18 20:58:00    2016-11-18 20:58:00
45149    21551    603    2016-11-18 03:18:00    2016-11-18 03:18:00
45150    21551    735    2016-11-18 11:23:00    2016-11-18 11:23:00
45151    21551    573    2016-11-18 07:58:00    2016-11-18 07:58:00
45152    21551    799    2016-11-18 21:37:00    2016-11-18 21:37:00
45153    21552    718    2016-11-18 22:26:00    2016-11-18 22:26:00
45154    21552    736    2016-11-18 16:03:00    2016-11-18 16:03:00
45155    21552    687    2016-11-18 21:27:00    2016-11-18 21:27:00
45156    21552    850    2016-11-18 22:35:00    2016-11-18 22:35:00
45157    21552    873    2016-11-18 01:59:00    2016-11-18 01:59:00
45158    21553    915    2016-11-18 18:12:00    2016-11-18 18:12:00
45159    21553    821    2016-11-18 07:06:00    2016-11-18 07:06:00
45160    21553    580    2016-11-18 22:04:00    2016-11-18 22:04:00
45161    21553    789    2016-11-18 04:20:00    2016-11-18 04:20:00
45162    21553    515    2016-11-18 23:58:00    2016-11-18 23:58:00
45163    21554    767    2016-11-18 09:24:00    2016-11-18 09:24:00
45164    21554    901    2016-11-18 06:38:00    2016-11-18 06:38:00
45165    21554    877    2016-11-18 08:00:00    2016-11-18 08:00:00
45166    21554    868    2016-11-18 08:25:00    2016-11-18 08:25:00
45167    21554    502    2016-11-18 22:14:00    2016-11-18 22:14:00
45168    21555    807    2016-11-18 06:23:00    2016-11-18 06:23:00
45169    21555    609    2016-11-18 08:09:00    2016-11-18 08:09:00
45170    21555    938    2016-11-18 07:35:00    2016-11-18 07:35:00
45171    21555    946    2016-11-18 22:59:00    2016-11-18 22:59:00
45172    21555    589    2016-11-18 13:28:00    2016-11-18 13:28:00
45173    21556    495    2016-11-18 11:54:00    2016-11-18 11:54:00
45174    21556    519    2016-11-18 20:17:00    2016-11-18 20:17:00
45175    21556    602    2016-11-18 13:27:00    2016-11-18 13:27:00
45176    21556    828    2016-11-18 09:24:00    2016-11-18 09:24:00
45177    21556    621    2016-11-18 11:41:00    2016-11-18 11:41:00
45178    21557    677    2016-11-18 08:39:00    2016-11-18 08:39:00
45179    21557    919    2016-11-18 13:32:00    2016-11-18 13:32:00
45180    21557    597    2016-11-18 20:31:00    2016-11-18 20:31:00
45181    21557    694    2016-11-18 18:46:00    2016-11-18 18:46:00
45182    21557    696    2016-11-18 19:40:00    2016-11-18 19:40:00
45183    21558    675    2016-11-18 01:49:00    2016-11-18 01:49:00
45184    21558    699    2016-11-18 17:46:00    2016-11-18 17:46:00
45185    21558    932    2016-11-18 02:14:00    2016-11-18 02:14:00
45186    21558    812    2016-11-18 08:46:00    2016-11-18 08:46:00
45187    21558    878    2016-11-18 19:00:00    2016-11-18 19:00:00
45188    21559    897    2016-11-18 11:09:00    2016-11-18 11:09:00
45189    21559    705    2016-11-18 10:40:00    2016-11-18 10:40:00
45190    21559    673    2016-11-18 17:46:00    2016-11-18 17:46:00
45191    21559    928    2016-11-18 03:53:00    2016-11-18 03:53:00
45192    21559    751    2016-11-18 14:08:00    2016-11-18 14:08:00
45193    21560    548    2016-11-18 07:30:00    2016-11-18 07:30:00
45194    21560    951    2016-11-18 08:33:00    2016-11-18 08:33:00
45195    21560    691    2016-11-18 05:46:00    2016-11-18 05:46:00
45196    21560    602    2016-11-18 10:46:00    2016-11-18 10:46:00
45197    21560    463    2016-11-18 19:37:00    2016-11-18 19:37:00
45198    21561    548    2016-11-18 14:41:00    2016-11-18 14:41:00
45199    21561    920    2016-11-18 23:27:00    2016-11-18 23:27:00
45200    21561    710    2016-11-18 15:13:00    2016-11-18 15:13:00
45201    21561    845    2016-11-18 19:43:00    2016-11-18 19:43:00
45202    21561    489    2016-11-18 12:40:00    2016-11-18 12:40:00
45203    21562    474    2016-11-18 18:10:00    2016-11-18 18:10:00
45204    21562    759    2016-11-18 10:34:00    2016-11-18 10:34:00
45205    21562    719    2016-11-18 23:40:00    2016-11-18 23:40:00
45206    21562    817    2016-11-18 18:31:00    2016-11-18 18:31:00
45207    21562    752    2016-11-18 10:21:00    2016-11-18 10:21:00
45208    21563    578    2016-11-18 02:40:00    2016-11-18 02:40:00
45209    21563    589    2016-11-18 03:59:00    2016-11-18 03:59:00
45210    21563    606    2016-11-18 22:42:00    2016-11-18 22:42:00
45211    21563    760    2016-11-18 11:35:00    2016-11-18 11:35:00
45212    21563    856    2016-11-18 16:29:00    2016-11-18 16:29:00
45213    21564    710    2016-11-18 02:25:00    2016-11-18 02:25:00
45214    21564    658    2016-11-18 05:48:00    2016-11-18 05:48:00
45215    21564    925    2016-11-18 02:08:00    2016-11-18 02:08:00
45216    21564    751    2016-11-18 21:28:00    2016-11-18 21:28:00
45217    21564    608    2016-11-18 13:26:00    2016-11-18 13:26:00
45218    21565    882    2016-11-19 06:57:00    2016-11-19 06:57:00
45219    21565    604    2016-11-19 15:05:00    2016-11-19 15:05:00
45220    21565    822    2016-11-19 22:23:00    2016-11-19 22:23:00
45221    21565    629    2016-11-19 13:45:00    2016-11-19 13:45:00
45222    21565    673    2016-11-19 06:33:00    2016-11-19 06:33:00
45223    21566    687    2016-11-19 11:36:00    2016-11-19 11:36:00
45224    21566    714    2016-11-19 19:55:00    2016-11-19 19:55:00
45225    21566    882    2016-11-19 07:47:00    2016-11-19 07:47:00
45226    21566    463    2016-11-19 12:18:00    2016-11-19 12:18:00
45227    21566    508    2016-11-19 13:21:00    2016-11-19 13:21:00
45228    21567    598    2016-11-19 19:19:00    2016-11-19 19:19:00
45229    21567    520    2016-11-19 08:11:00    2016-11-19 08:11:00
45230    21567    642    2016-11-19 17:24:00    2016-11-19 17:24:00
45231    21567    677    2016-11-19 19:05:00    2016-11-19 19:05:00
45232    21567    712    2016-11-19 10:06:00    2016-11-19 10:06:00
45233    21568    625    2016-11-19 17:24:00    2016-11-19 17:24:00
45234    21568    573    2016-11-19 23:23:00    2016-11-19 23:23:00
45235    21568    741    2016-11-19 21:18:00    2016-11-19 21:18:00
45236    21568    560    2016-11-19 11:43:00    2016-11-19 11:43:00
45237    21568    820    2016-11-19 07:30:00    2016-11-19 07:30:00
45238    21569    789    2016-11-19 04:18:00    2016-11-19 04:18:00
45239    21569    704    2016-11-19 02:08:00    2016-11-19 02:08:00
45240    21569    740    2016-11-19 06:32:00    2016-11-19 06:32:00
45241    21569    636    2016-11-19 12:36:00    2016-11-19 12:36:00
45242    21569    857    2016-11-19 01:12:00    2016-11-19 01:12:00
45243    21570    683    2016-11-19 11:31:00    2016-11-19 11:31:00
45244    21570    522    2016-11-19 05:40:00    2016-11-19 05:40:00
45245    21570    649    2016-11-19 20:57:00    2016-11-19 20:57:00
45246    21570    919    2016-11-19 14:00:00    2016-11-19 14:00:00
45247    21570    481    2016-11-19 08:16:00    2016-11-19 08:16:00
45248    21571    467    2016-11-19 21:54:00    2016-11-19 21:54:00
45249    21571    534    2016-11-19 17:20:00    2016-11-19 17:20:00
45250    21571    568    2016-11-19 16:29:00    2016-11-19 16:29:00
45251    21571    487    2016-11-19 02:36:00    2016-11-19 02:36:00
45252    21571    525    2016-11-19 05:41:00    2016-11-19 05:41:00
45253    21572    841    2016-11-19 20:00:00    2016-11-19 20:00:00
45254    21572    913    2016-11-19 01:57:00    2016-11-19 01:57:00
45255    21572    781    2016-11-19 12:18:00    2016-11-19 12:18:00
45256    21572    570    2016-11-19 05:59:00    2016-11-19 05:59:00
45257    21572    533    2016-11-19 02:56:00    2016-11-19 02:56:00
45258    21573    947    2016-11-19 12:03:00    2016-11-19 12:03:00
45259    21573    924    2016-11-19 13:36:00    2016-11-19 13:36:00
45260    21573    656    2016-11-19 02:54:00    2016-11-19 02:54:00
45261    21573    550    2016-11-19 15:37:00    2016-11-19 15:37:00
45262    21573    487    2016-11-19 03:04:00    2016-11-19 03:04:00
45263    21574    800    2016-11-19 09:11:00    2016-11-19 09:11:00
45264    21574    618    2016-11-19 08:33:00    2016-11-19 08:33:00
45265    21574    921    2016-11-19 07:13:00    2016-11-19 07:13:00
45266    21574    694    2016-11-19 13:12:00    2016-11-19 13:12:00
45267    21574    887    2016-11-19 06:31:00    2016-11-19 06:31:00
45268    21575    565    2016-11-19 02:40:00    2016-11-19 02:40:00
45269    21575    613    2016-11-19 06:34:00    2016-11-19 06:34:00
45270    21575    659    2016-11-19 09:15:00    2016-11-19 09:15:00
45271    21575    608    2016-11-19 21:14:00    2016-11-19 21:14:00
45272    21575    722    2016-11-19 22:47:00    2016-11-19 22:47:00
45273    21576    635    2016-11-19 07:31:00    2016-11-19 07:31:00
45274    21576    677    2016-11-19 01:15:00    2016-11-19 01:15:00
45275    21576    912    2016-11-19 03:01:00    2016-11-19 03:01:00
45276    21576    602    2016-11-19 07:29:00    2016-11-19 07:29:00
45277    21576    845    2016-11-19 19:26:00    2016-11-19 19:26:00
45278    21577    592    2016-11-19 19:35:00    2016-11-19 19:35:00
45279    21577    787    2016-11-19 22:55:00    2016-11-19 22:55:00
45280    21577    763    2016-11-19 08:04:00    2016-11-19 08:04:00
45281    21577    802    2016-11-19 04:37:00    2016-11-19 04:37:00
45282    21577    610    2016-11-19 04:56:00    2016-11-19 04:56:00
45283    21578    573    2016-11-19 12:53:00    2016-11-19 12:53:00
45284    21578    690    2016-11-19 23:58:00    2016-11-19 23:58:00
45285    21578    514    2016-11-19 03:48:00    2016-11-19 03:48:00
45286    21578    774    2016-11-19 05:13:00    2016-11-19 05:13:00
45287    21578    627    2016-11-19 19:47:00    2016-11-19 19:47:00
45288    21579    864    2016-11-19 10:36:00    2016-11-19 10:36:00
45289    21579    707    2016-11-19 04:08:00    2016-11-19 04:08:00
45290    21579    950    2016-11-19 19:32:00    2016-11-19 19:32:00
45291    21579    784    2016-11-19 16:18:00    2016-11-19 16:18:00
45292    21579    899    2016-11-19 16:44:00    2016-11-19 16:44:00
45293    21580    597    2016-11-19 17:41:00    2016-11-19 17:41:00
45294    21580    815    2016-11-19 04:37:00    2016-11-19 04:37:00
45295    21580    644    2016-11-19 14:27:00    2016-11-19 14:27:00
45296    21580    572    2016-11-19 09:55:00    2016-11-19 09:55:00
45297    21580    512    2016-11-19 16:31:00    2016-11-19 16:31:00
45298    21581    840    2016-11-19 21:23:00    2016-11-19 21:23:00
45299    21581    499    2016-11-19 01:01:00    2016-11-19 01:01:00
45300    21581    539    2016-11-19 06:18:00    2016-11-19 06:18:00
45301    21581    898    2016-11-19 03:08:00    2016-11-19 03:08:00
45302    21581    600    2016-11-19 19:53:00    2016-11-19 19:53:00
45303    21582    470    2016-11-19 04:06:00    2016-11-19 04:06:00
45304    21582    761    2016-11-19 19:10:00    2016-11-19 19:10:00
45305    21582    568    2016-11-19 01:14:00    2016-11-19 01:14:00
45306    21582    885    2016-11-19 23:28:00    2016-11-19 23:28:00
45307    21582    833    2016-11-19 19:24:00    2016-11-19 19:24:00
45308    21583    532    2016-11-19 06:51:00    2016-11-19 06:51:00
45309    21583    774    2016-11-19 17:25:00    2016-11-19 17:25:00
45310    21583    646    2016-11-19 17:51:00    2016-11-19 17:51:00
45311    21583    647    2016-11-19 19:39:00    2016-11-19 19:39:00
45312    21583    843    2016-11-19 21:42:00    2016-11-19 21:42:00
45313    21584    940    2016-11-19 07:49:00    2016-11-19 07:49:00
45314    21584    961    2016-11-19 13:23:00    2016-11-19 13:23:00
45315    21584    785    2016-11-19 04:28:00    2016-11-19 04:28:00
45316    21584    503    2016-11-19 06:29:00    2016-11-19 06:29:00
45317    21584    588    2016-11-19 07:40:00    2016-11-19 07:40:00
45318    21585    595    2016-11-19 13:15:00    2016-11-19 13:15:00
45319    21585    768    2016-11-19 12:48:00    2016-11-19 12:48:00
45320    21585    619    2016-11-19 11:30:00    2016-11-19 11:30:00
45321    21585    720    2016-11-19 15:22:00    2016-11-19 15:22:00
45322    21585    789    2016-11-19 03:48:00    2016-11-19 03:48:00
45323    21586    866    2016-11-19 14:10:00    2016-11-19 14:10:00
45324    21586    960    2016-11-19 21:42:00    2016-11-19 21:42:00
45325    21586    857    2016-11-19 21:19:00    2016-11-19 21:19:00
45326    21586    496    2016-11-19 14:52:00    2016-11-19 14:52:00
45327    21586    566    2016-11-19 13:46:00    2016-11-19 13:46:00
45328    21587    805    2016-11-19 06:35:00    2016-11-19 06:35:00
45329    21587    623    2016-11-19 02:27:00    2016-11-19 02:27:00
45330    21587    941    2016-11-19 19:13:00    2016-11-19 19:13:00
45331    21587    591    2016-11-19 06:37:00    2016-11-19 06:37:00
45332    21587    924    2016-11-19 21:50:00    2016-11-19 21:50:00
45333    21588    771    2016-11-19 02:24:00    2016-11-19 02:24:00
45334    21588    761    2016-11-19 23:14:00    2016-11-19 23:14:00
45335    21588    749    2016-11-19 19:59:00    2016-11-19 19:59:00
45336    21588    689    2016-11-19 07:02:00    2016-11-19 07:02:00
45337    21588    904    2016-11-19 08:16:00    2016-11-19 08:16:00
45338    21589    584    2016-11-19 05:08:00    2016-11-19 05:08:00
45339    21589    531    2016-11-19 09:33:00    2016-11-19 09:33:00
45340    21589    655    2016-11-19 21:42:00    2016-11-19 21:42:00
45341    21589    754    2016-11-19 22:57:00    2016-11-19 22:57:00
45342    21589    817    2016-11-19 13:16:00    2016-11-19 13:16:00
45343    21590    480    2016-11-19 03:28:00    2016-11-19 03:28:00
45344    21590    815    2016-11-19 10:43:00    2016-11-19 10:43:00
45345    21590    532    2016-11-19 11:30:00    2016-11-19 11:30:00
45346    21590    868    2016-11-19 15:17:00    2016-11-19 15:17:00
45347    21590    505    2016-11-19 16:57:00    2016-11-19 16:57:00
45348    21591    932    2016-11-19 11:29:00    2016-11-19 11:29:00
45349    21591    953    2016-11-19 16:50:00    2016-11-19 16:50:00
45350    21591    610    2016-11-19 08:52:00    2016-11-19 08:52:00
45351    21591    866    2016-11-19 08:28:00    2016-11-19 08:28:00
45352    21591    770    2016-11-19 09:29:00    2016-11-19 09:29:00
45353    21592    580    2016-11-19 15:45:00    2016-11-19 15:45:00
45354    21592    571    2016-11-19 21:31:00    2016-11-19 21:31:00
45355    21592    494    2016-11-19 10:05:00    2016-11-19 10:05:00
45356    21592    937    2016-11-19 21:15:00    2016-11-19 21:15:00
45357    21592    484    2016-11-19 07:55:00    2016-11-19 07:55:00
45358    21593    823    2016-11-19 20:39:00    2016-11-19 20:39:00
45359    21593    595    2016-11-19 12:52:00    2016-11-19 12:52:00
45360    21593    528    2016-11-19 08:13:00    2016-11-19 08:13:00
45361    21593    476    2016-11-19 14:32:00    2016-11-19 14:32:00
45362    21593    654    2016-11-19 19:00:00    2016-11-19 19:00:00
45363    21594    587    2016-11-19 01:51:00    2016-11-19 01:51:00
45364    21594    511    2016-11-19 12:55:00    2016-11-19 12:55:00
45365    21594    619    2016-11-19 18:05:00    2016-11-19 18:05:00
45366    21594    542    2016-11-19 19:14:00    2016-11-19 19:14:00
45367    21594    548    2016-11-19 12:23:00    2016-11-19 12:23:00
45368    21595    807    2016-11-19 07:21:00    2016-11-19 07:21:00
45369    21595    627    2016-11-19 05:19:00    2016-11-19 05:19:00
45370    21595    886    2016-11-19 08:03:00    2016-11-19 08:03:00
45371    21595    957    2016-11-19 13:38:00    2016-11-19 13:38:00
45372    21595    646    2016-11-19 01:36:00    2016-11-19 01:36:00
45373    21596    705    2016-11-19 19:31:00    2016-11-19 19:31:00
45374    21596    722    2016-11-19 18:12:00    2016-11-19 18:12:00
45375    21596    860    2016-11-19 20:25:00    2016-11-19 20:25:00
45376    21596    481    2016-11-19 03:11:00    2016-11-19 03:11:00
45377    21596    613    2016-11-19 13:35:00    2016-11-19 13:35:00
45378    21597    590    2016-11-19 13:22:00    2016-11-19 13:22:00
45379    21597    769    2016-11-19 20:34:00    2016-11-19 20:34:00
45380    21597    511    2016-11-19 03:27:00    2016-11-19 03:27:00
45381    21597    543    2016-11-19 10:33:00    2016-11-19 10:33:00
45382    21597    527    2016-11-19 09:14:00    2016-11-19 09:14:00
45383    21598    876    2016-11-19 10:16:00    2016-11-19 10:16:00
45384    21598    558    2016-11-19 03:51:00    2016-11-19 03:51:00
45385    21598    872    2016-11-19 20:02:00    2016-11-19 20:02:00
45386    21598    918    2016-11-19 01:25:00    2016-11-19 01:25:00
45387    21598    848    2016-11-19 23:19:00    2016-11-19 23:19:00
45388    21599    739    2016-11-19 23:12:00    2016-11-19 23:12:00
45389    21599    960    2016-11-19 09:37:00    2016-11-19 09:37:00
45390    21599    540    2016-11-19 12:24:00    2016-11-19 12:24:00
45391    21599    550    2016-11-19 10:58:00    2016-11-19 10:58:00
45392    21599    790    2016-11-19 18:05:00    2016-11-19 18:05:00
45393    21600    856    2016-11-19 12:58:00    2016-11-19 12:58:00
45394    21600    649    2016-11-19 12:22:00    2016-11-19 12:22:00
45395    21600    466    2016-11-19 10:18:00    2016-11-19 10:18:00
45396    21600    482    2016-11-19 16:00:00    2016-11-19 16:00:00
45397    21600    680    2016-11-19 20:56:00    2016-11-19 20:56:00
45398    21601    868    2016-11-19 12:32:00    2016-11-19 12:32:00
45399    21601    728    2016-11-19 22:03:00    2016-11-19 22:03:00
45400    21601    668    2016-11-19 17:28:00    2016-11-19 17:28:00
45401    21601    819    2016-11-19 04:13:00    2016-11-19 04:13:00
45402    21601    787    2016-11-19 06:26:00    2016-11-19 06:26:00
45403    21602    947    2016-11-19 18:43:00    2016-11-19 18:43:00
45404    21602    586    2016-11-19 23:12:00    2016-11-19 23:12:00
45405    21602    814    2016-11-19 05:16:00    2016-11-19 05:16:00
45406    21602    544    2016-11-19 13:48:00    2016-11-19 13:48:00
45407    21602    736    2016-11-19 17:42:00    2016-11-19 17:42:00
45408    21603    929    2016-11-19 18:32:00    2016-11-19 18:32:00
45409    21603    848    2016-11-19 04:56:00    2016-11-19 04:56:00
45410    21603    873    2016-11-19 07:51:00    2016-11-19 07:51:00
45411    21603    501    2016-11-19 08:25:00    2016-11-19 08:25:00
45412    21603    520    2016-11-19 02:11:00    2016-11-19 02:11:00
45413    21604    605    2016-11-19 11:33:00    2016-11-19 11:33:00
45414    21604    519    2016-11-19 06:18:00    2016-11-19 06:18:00
45415    21604    757    2016-11-19 12:14:00    2016-11-19 12:14:00
45416    21604    939    2016-11-19 01:50:00    2016-11-19 01:50:00
45417    21604    712    2016-11-19 02:10:00    2016-11-19 02:10:00
45418    21605    897    2016-11-19 02:02:00    2016-11-19 02:02:00
45419    21605    672    2016-11-19 18:49:00    2016-11-19 18:49:00
45420    21605    847    2016-11-19 14:18:00    2016-11-19 14:18:00
45421    21605    584    2016-11-19 02:36:00    2016-11-19 02:36:00
45422    21605    884    2016-11-19 09:26:00    2016-11-19 09:26:00
45423    21606    643    2016-11-19 19:52:00    2016-11-19 19:52:00
45424    21606    763    2016-11-19 01:49:00    2016-11-19 01:49:00
45425    21606    612    2016-11-19 09:26:00    2016-11-19 09:26:00
45426    21606    690    2016-11-19 22:33:00    2016-11-19 22:33:00
45427    21606    765    2016-11-19 22:56:00    2016-11-19 22:56:00
45428    21607    665    2016-11-19 19:27:00    2016-11-19 19:27:00
45429    21607    827    2016-11-19 16:35:00    2016-11-19 16:35:00
45430    21607    490    2016-11-19 02:55:00    2016-11-19 02:55:00
45431    21607    466    2016-11-19 18:18:00    2016-11-19 18:18:00
45432    21607    916    2016-11-19 17:55:00    2016-11-19 17:55:00
45433    21608    529    2016-11-19 07:35:00    2016-11-19 07:35:00
45434    21608    669    2016-11-19 08:46:00    2016-11-19 08:46:00
45435    21608    505    2016-11-19 06:00:00    2016-11-19 06:00:00
45436    21608    627    2016-11-19 19:05:00    2016-11-19 19:05:00
45437    21608    607    2016-11-19 23:15:00    2016-11-19 23:15:00
45438    21609    579    2016-11-19 23:21:00    2016-11-19 23:21:00
45439    21609    711    2016-11-19 19:42:00    2016-11-19 19:42:00
45440    21609    681    2016-11-19 06:33:00    2016-11-19 06:33:00
45441    21609    474    2016-11-19 12:27:00    2016-11-19 12:27:00
45442    21609    703    2016-11-19 16:32:00    2016-11-19 16:32:00
45443    21610    619    2016-11-19 10:22:00    2016-11-19 10:22:00
45444    21610    866    2016-11-19 13:25:00    2016-11-19 13:25:00
45445    21610    938    2016-11-19 01:08:00    2016-11-19 01:08:00
45446    21610    531    2016-11-19 22:55:00    2016-11-19 22:55:00
45447    21610    527    2016-11-19 20:26:00    2016-11-19 20:26:00
45448    21611    741    2016-11-19 11:15:00    2016-11-19 11:15:00
45449    21611    551    2016-11-19 11:12:00    2016-11-19 11:12:00
45450    21611    626    2016-11-19 19:48:00    2016-11-19 19:48:00
45451    21611    536    2016-11-19 20:31:00    2016-11-19 20:31:00
45452    21611    527    2016-11-19 12:54:00    2016-11-19 12:54:00
45453    21612    895    2016-11-19 23:16:00    2016-11-19 23:16:00
45454    21612    726    2016-11-19 03:35:00    2016-11-19 03:35:00
45455    21612    946    2016-11-19 10:27:00    2016-11-19 10:27:00
45456    21612    505    2016-11-19 21:41:00    2016-11-19 21:41:00
45457    21612    905    2016-11-19 16:54:00    2016-11-19 16:54:00
45458    21613    883    2016-11-19 21:19:00    2016-11-19 21:19:00
45459    21613    867    2016-11-19 18:41:00    2016-11-19 18:41:00
45460    21613    822    2016-11-19 10:49:00    2016-11-19 10:49:00
45461    21613    691    2016-11-19 19:13:00    2016-11-19 19:13:00
45462    21613    808    2016-11-19 15:09:00    2016-11-19 15:09:00
45463    21614    829    2016-11-19 19:17:00    2016-11-19 19:17:00
45464    21614    532    2016-11-19 20:00:00    2016-11-19 20:00:00
45465    21614    530    2016-11-19 09:21:00    2016-11-19 09:21:00
45466    21614    721    2016-11-19 19:07:00    2016-11-19 19:07:00
45467    21614    724    2016-11-19 08:30:00    2016-11-19 08:30:00
45468    21615    812    2016-11-19 06:44:00    2016-11-19 06:44:00
45469    21615    527    2016-11-19 18:00:00    2016-11-19 18:00:00
45470    21615    631    2016-11-19 16:05:00    2016-11-19 16:05:00
45471    21615    832    2016-11-19 17:45:00    2016-11-19 17:45:00
45472    21615    693    2016-11-19 15:30:00    2016-11-19 15:30:00
45473    21616    483    2016-11-19 08:03:00    2016-11-19 08:03:00
45474    21616    853    2016-11-19 21:39:00    2016-11-19 21:39:00
45475    21616    857    2016-11-19 21:24:00    2016-11-19 21:24:00
45476    21616    830    2016-11-19 23:38:00    2016-11-19 23:38:00
45477    21616    954    2016-11-19 10:03:00    2016-11-19 10:03:00
45478    21617    496    2016-11-19 07:18:00    2016-11-19 07:18:00
45479    21617    647    2016-11-19 16:09:00    2016-11-19 16:09:00
45480    21617    631    2016-11-19 09:12:00    2016-11-19 09:12:00
45481    21617    471    2016-11-19 18:46:00    2016-11-19 18:46:00
45482    21617    638    2016-11-19 07:36:00    2016-11-19 07:36:00
45483    21618    828    2016-11-19 18:04:00    2016-11-19 18:04:00
45484    21618    670    2016-11-19 01:53:00    2016-11-19 01:53:00
45485    21618    704    2016-11-19 19:16:00    2016-11-19 19:16:00
45486    21618    601    2016-11-19 17:48:00    2016-11-19 17:48:00
45487    21618    783    2016-11-19 23:56:00    2016-11-19 23:56:00
45488    21619    576    2016-11-19 05:24:00    2016-11-19 05:24:00
45489    21619    860    2016-11-19 11:04:00    2016-11-19 11:04:00
45490    21619    717    2016-11-19 21:02:00    2016-11-19 21:02:00
45491    21619    958    2016-11-19 16:31:00    2016-11-19 16:31:00
45492    21619    652    2016-11-19 20:17:00    2016-11-19 20:17:00
45493    21620    581    2016-11-19 04:00:00    2016-11-19 04:00:00
45494    21620    915    2016-11-19 02:07:00    2016-11-19 02:07:00
45495    21620    616    2016-11-19 01:45:00    2016-11-19 01:45:00
45496    21620    808    2016-11-19 18:44:00    2016-11-19 18:44:00
45497    21620    560    2016-11-19 09:28:00    2016-11-19 09:28:00
45498    21621    660    2016-11-19 15:00:00    2016-11-19 15:00:00
45499    21621    499    2016-11-19 18:52:00    2016-11-19 18:52:00
45500    21621    667    2016-11-19 22:00:00    2016-11-19 22:00:00
45501    21621    946    2016-11-19 20:13:00    2016-11-19 20:13:00
45502    21621    649    2016-11-19 04:54:00    2016-11-19 04:54:00
45503    21622    619    2016-11-19 18:45:00    2016-11-19 18:45:00
45504    21622    849    2016-11-19 21:43:00    2016-11-19 21:43:00
45505    21622    849    2016-11-19 12:10:00    2016-11-19 12:10:00
45506    21622    792    2016-11-19 06:21:00    2016-11-19 06:21:00
45507    21622    799    2016-11-19 01:38:00    2016-11-19 01:38:00
45508    21623    533    2016-11-19 09:24:00    2016-11-19 09:24:00
45509    21623    570    2016-11-19 16:16:00    2016-11-19 16:16:00
45510    21623    728    2016-11-19 22:06:00    2016-11-19 22:06:00
45511    21623    759    2016-11-19 10:44:00    2016-11-19 10:44:00
45512    21623    660    2016-11-19 08:38:00    2016-11-19 08:38:00
45513    21624    542    2016-11-19 06:36:00    2016-11-19 06:36:00
45514    21624    860    2016-11-19 20:51:00    2016-11-19 20:51:00
45515    21624    597    2016-11-19 23:47:00    2016-11-19 23:47:00
45516    21624    934    2016-11-19 14:29:00    2016-11-19 14:29:00
45517    21624    858    2016-11-19 23:05:00    2016-11-19 23:05:00
45518    21625    660    2016-11-19 11:02:00    2016-11-19 11:02:00
45519    21625    736    2016-11-19 23:42:00    2016-11-19 23:42:00
45520    21625    653    2016-11-19 16:10:00    2016-11-19 16:10:00
45521    21625    665    2016-11-19 11:45:00    2016-11-19 11:45:00
45522    21625    683    2016-11-19 10:26:00    2016-11-19 10:26:00
45523    21626    786    2016-11-19 08:25:00    2016-11-19 08:25:00
45524    21626    511    2016-11-19 12:17:00    2016-11-19 12:17:00
45525    21626    789    2016-11-19 09:11:00    2016-11-19 09:11:00
45526    21626    536    2016-11-19 01:15:00    2016-11-19 01:15:00
45527    21626    573    2016-11-19 15:33:00    2016-11-19 15:33:00
45528    21627    769    2016-11-19 21:11:00    2016-11-19 21:11:00
45529    21627    727    2016-11-19 01:00:00    2016-11-19 01:00:00
45530    21627    558    2016-11-19 02:43:00    2016-11-19 02:43:00
45531    21627    890    2016-11-19 05:54:00    2016-11-19 05:54:00
45532    21627    470    2016-11-19 12:48:00    2016-11-19 12:48:00
45533    21628    893    2016-11-19 01:20:00    2016-11-19 01:20:00
45534    21628    681    2016-11-19 10:40:00    2016-11-19 10:40:00
45535    21628    826    2016-11-19 04:11:00    2016-11-19 04:11:00
45536    21628    592    2016-11-19 20:24:00    2016-11-19 20:24:00
45537    21628    697    2016-11-19 23:16:00    2016-11-19 23:16:00
45538    21629    933    2016-11-19 15:42:00    2016-11-19 15:42:00
45539    21629    873    2016-11-19 20:07:00    2016-11-19 20:07:00
45540    21629    666    2016-11-19 05:50:00    2016-11-19 05:50:00
45541    21629    697    2016-11-19 21:22:00    2016-11-19 21:22:00
45542    21629    491    2016-11-19 06:42:00    2016-11-19 06:42:00
45543    21630    688    2016-11-19 17:29:00    2016-11-19 17:29:00
45544    21630    549    2016-11-19 02:07:00    2016-11-19 02:07:00
45545    21630    701    2016-11-19 15:45:00    2016-11-19 15:45:00
45546    21630    666    2016-11-19 03:33:00    2016-11-19 03:33:00
45547    21630    960    2016-11-19 08:00:00    2016-11-19 08:00:00
45548    21631    656    2016-11-19 11:54:00    2016-11-19 11:54:00
45549    21631    790    2016-11-19 15:29:00    2016-11-19 15:29:00
45550    21631    886    2016-11-19 15:46:00    2016-11-19 15:46:00
45551    21631    910    2016-11-19 20:28:00    2016-11-19 20:28:00
45552    21631    873    2016-11-19 23:42:00    2016-11-19 23:42:00
45553    21632    476    2016-11-19 16:07:00    2016-11-19 16:07:00
45554    21632    721    2016-11-19 22:23:00    2016-11-19 22:23:00
45555    21632    724    2016-11-19 04:02:00    2016-11-19 04:02:00
45556    21632    884    2016-11-19 15:03:00    2016-11-19 15:03:00
45557    21632    738    2016-11-19 05:54:00    2016-11-19 05:54:00
45558    21633    620    2016-11-19 13:21:00    2016-11-19 13:21:00
45559    21633    775    2016-11-19 15:40:00    2016-11-19 15:40:00
45560    21633    853    2016-11-19 03:17:00    2016-11-19 03:17:00
45561    21633    554    2016-11-19 21:08:00    2016-11-19 21:08:00
45562    21633    809    2016-11-19 03:55:00    2016-11-19 03:55:00
45563    21634    839    2016-11-19 02:03:00    2016-11-19 02:03:00
45564    21634    494    2016-11-19 18:40:00    2016-11-19 18:40:00
45565    21634    701    2016-11-19 07:47:00    2016-11-19 07:47:00
45566    21634    739    2016-11-19 21:04:00    2016-11-19 21:04:00
45567    21634    500    2016-11-19 19:19:00    2016-11-19 19:19:00
45568    21635    501    2016-11-19 21:21:00    2016-11-19 21:21:00
45569    21635    619    2016-11-19 10:29:00    2016-11-19 10:29:00
45570    21635    850    2016-11-19 10:05:00    2016-11-19 10:05:00
45571    21635    540    2016-11-19 16:00:00    2016-11-19 16:00:00
45572    21635    798    2016-11-19 01:54:00    2016-11-19 01:54:00
45573    21636    944    2016-11-19 21:20:00    2016-11-19 21:20:00
45574    21636    658    2016-11-19 18:06:00    2016-11-19 18:06:00
45575    21636    587    2016-11-19 12:03:00    2016-11-19 12:03:00
45576    21636    741    2016-11-19 23:31:00    2016-11-19 23:31:00
45577    21636    525    2016-11-19 17:10:00    2016-11-19 17:10:00
45578    21637    611    2016-11-20 18:08:00    2016-11-20 18:08:00
45579    21637    524    2016-11-20 12:31:00    2016-11-20 12:31:00
45580    21637    758    2016-11-20 11:14:00    2016-11-20 11:14:00
45581    21637    660    2016-11-20 06:09:00    2016-11-20 06:09:00
45582    21637    818    2016-11-20 17:14:00    2016-11-20 17:14:00
45583    21638    532    2016-11-20 11:02:00    2016-11-20 11:02:00
45584    21638    942    2016-11-20 18:40:00    2016-11-20 18:40:00
45585    21638    684    2016-11-20 22:48:00    2016-11-20 22:48:00
45586    21638    833    2016-11-20 19:22:00    2016-11-20 19:22:00
45587    21638    743    2016-11-20 22:21:00    2016-11-20 22:21:00
45588    21639    729    2016-11-20 03:01:00    2016-11-20 03:01:00
45589    21639    901    2016-11-20 20:09:00    2016-11-20 20:09:00
45590    21639    570    2016-11-20 11:12:00    2016-11-20 11:12:00
45591    21639    870    2016-11-20 16:26:00    2016-11-20 16:26:00
45592    21639    757    2016-11-20 09:09:00    2016-11-20 09:09:00
45593    21640    689    2016-11-20 09:18:00    2016-11-20 09:18:00
45594    21640    642    2016-11-20 08:18:00    2016-11-20 08:18:00
45595    21640    750    2016-11-20 16:24:00    2016-11-20 16:24:00
45596    21640    709    2016-11-20 23:32:00    2016-11-20 23:32:00
45597    21640    815    2016-11-20 06:47:00    2016-11-20 06:47:00
45598    21641    805    2016-11-20 18:00:00    2016-11-20 18:00:00
45599    21641    957    2016-11-20 12:10:00    2016-11-20 12:10:00
45600    21641    765    2016-11-20 20:01:00    2016-11-20 20:01:00
45601    21641    778    2016-11-20 09:10:00    2016-11-20 09:10:00
45602    21641    743    2016-11-20 01:34:00    2016-11-20 01:34:00
45603    21642    517    2016-11-20 13:12:00    2016-11-20 13:12:00
45604    21642    645    2016-11-20 13:38:00    2016-11-20 13:38:00
45605    21642    875    2016-11-20 19:00:00    2016-11-20 19:00:00
45606    21642    949    2016-11-20 07:15:00    2016-11-20 07:15:00
45607    21642    536    2016-11-20 17:38:00    2016-11-20 17:38:00
45608    21643    944    2016-11-20 10:18:00    2016-11-20 10:18:00
45609    21643    709    2016-11-20 15:57:00    2016-11-20 15:57:00
45610    21643    484    2016-11-20 04:50:00    2016-11-20 04:50:00
45611    21643    763    2016-11-20 02:28:00    2016-11-20 02:28:00
45612    21643    948    2016-11-20 13:19:00    2016-11-20 13:19:00
45613    21644    708    2016-11-20 16:36:00    2016-11-20 16:36:00
45614    21644    507    2016-11-20 22:11:00    2016-11-20 22:11:00
45615    21644    652    2016-11-20 09:18:00    2016-11-20 09:18:00
45616    21644    632    2016-11-20 19:15:00    2016-11-20 19:15:00
45617    21644    941    2016-11-20 19:32:00    2016-11-20 19:32:00
45618    21645    833    2016-11-20 20:05:00    2016-11-20 20:05:00
45619    21645    952    2016-11-20 20:22:00    2016-11-20 20:22:00
45620    21645    691    2016-11-20 19:33:00    2016-11-20 19:33:00
45621    21645    570    2016-11-20 18:19:00    2016-11-20 18:19:00
45622    21645    843    2016-11-20 08:55:00    2016-11-20 08:55:00
45623    21646    791    2016-11-20 15:53:00    2016-11-20 15:53:00
45624    21646    780    2016-11-20 22:11:00    2016-11-20 22:11:00
45625    21646    624    2016-11-20 13:15:00    2016-11-20 13:15:00
45626    21646    900    2016-11-20 17:56:00    2016-11-20 17:56:00
45627    21646    932    2016-11-20 03:03:00    2016-11-20 03:03:00
45628    21647    862    2016-11-20 05:12:00    2016-11-20 05:12:00
45629    21647    497    2016-11-20 04:15:00    2016-11-20 04:15:00
45630    21647    650    2016-11-20 03:26:00    2016-11-20 03:26:00
45631    21647    910    2016-11-20 23:25:00    2016-11-20 23:25:00
45632    21647    940    2016-11-20 08:22:00    2016-11-20 08:22:00
45633    21648    869    2016-11-20 05:13:00    2016-11-20 05:13:00
45634    21648    553    2016-11-20 19:57:00    2016-11-20 19:57:00
45635    21648    860    2016-11-20 10:13:00    2016-11-20 10:13:00
45636    21648    483    2016-11-20 10:24:00    2016-11-20 10:24:00
45637    21648    570    2016-11-20 07:01:00    2016-11-20 07:01:00
45638    21649    942    2016-11-20 02:50:00    2016-11-20 02:50:00
45639    21649    600    2016-11-20 03:00:00    2016-11-20 03:00:00
45640    21649    645    2016-11-20 09:38:00    2016-11-20 09:38:00
45641    21649    760    2016-11-20 02:32:00    2016-11-20 02:32:00
45642    21649    836    2016-11-20 21:05:00    2016-11-20 21:05:00
45643    21650    849    2016-11-20 16:15:00    2016-11-20 16:15:00
45644    21650    642    2016-11-20 09:56:00    2016-11-20 09:56:00
45645    21650    814    2016-11-20 23:45:00    2016-11-20 23:45:00
45646    21650    941    2016-11-20 02:52:00    2016-11-20 02:52:00
45647    21650    914    2016-11-20 14:58:00    2016-11-20 14:58:00
45648    21651    652    2016-11-20 23:54:00    2016-11-20 23:54:00
45649    21651    831    2016-11-20 05:52:00    2016-11-20 05:52:00
45650    21651    838    2016-11-20 03:10:00    2016-11-20 03:10:00
45651    21651    961    2016-11-20 11:42:00    2016-11-20 11:42:00
45652    21651    542    2016-11-20 01:14:00    2016-11-20 01:14:00
45653    21652    945    2016-11-20 06:07:00    2016-11-20 06:07:00
45654    21652    649    2016-11-20 09:53:00    2016-11-20 09:53:00
45655    21652    943    2016-11-20 06:20:00    2016-11-20 06:20:00
45656    21652    852    2016-11-20 20:48:00    2016-11-20 20:48:00
45657    21652    885    2016-11-20 02:22:00    2016-11-20 02:22:00
45658    21653    935    2016-11-20 03:12:00    2016-11-20 03:12:00
45659    21653    869    2016-11-20 02:33:00    2016-11-20 02:33:00
45660    21653    772    2016-11-20 14:07:00    2016-11-20 14:07:00
45661    21653    628    2016-11-20 18:52:00    2016-11-20 18:52:00
45662    21653    589    2016-11-20 04:50:00    2016-11-20 04:50:00
45663    21654    816    2016-11-20 19:21:00    2016-11-20 19:21:00
45664    21654    566    2016-11-20 13:31:00    2016-11-20 13:31:00
45665    21654    486    2016-11-20 06:59:00    2016-11-20 06:59:00
45666    21654    801    2016-11-20 04:37:00    2016-11-20 04:37:00
45667    21654    861    2016-11-20 22:58:00    2016-11-20 22:58:00
45668    21655    870    2016-11-20 07:21:00    2016-11-20 07:21:00
45669    21655    933    2016-11-20 16:32:00    2016-11-20 16:32:00
45670    21655    529    2016-11-20 05:51:00    2016-11-20 05:51:00
45671    21655    760    2016-11-20 20:02:00    2016-11-20 20:02:00
45672    21655    660    2016-11-20 18:18:00    2016-11-20 18:18:00
45673    21656    790    2016-11-20 22:51:00    2016-11-20 22:51:00
45674    21656    600    2016-11-20 19:38:00    2016-11-20 19:38:00
45675    21656    513    2016-11-20 19:34:00    2016-11-20 19:34:00
45676    21656    620    2016-11-20 15:17:00    2016-11-20 15:17:00
45677    21656    657    2016-11-20 07:25:00    2016-11-20 07:25:00
45678    21657    616    2016-11-20 09:37:00    2016-11-20 09:37:00
45679    21657    800    2016-11-20 23:03:00    2016-11-20 23:03:00
45680    21657    704    2016-11-20 09:36:00    2016-11-20 09:36:00
45681    21657    960    2016-11-20 06:38:00    2016-11-20 06:38:00
45682    21657    935    2016-11-20 07:08:00    2016-11-20 07:08:00
45683    21658    799    2016-11-20 04:22:00    2016-11-20 04:22:00
45684    21658    469    2016-11-20 03:34:00    2016-11-20 03:34:00
45685    21658    702    2016-11-20 22:13:00    2016-11-20 22:13:00
45686    21658    825    2016-11-20 02:57:00    2016-11-20 02:57:00
45687    21658    464    2016-11-20 22:06:00    2016-11-20 22:06:00
45688    21659    510    2016-11-20 17:13:00    2016-11-20 17:13:00
45689    21659    809    2016-11-20 21:57:00    2016-11-20 21:57:00
45690    21659    878    2016-11-20 10:20:00    2016-11-20 10:20:00
45691    21659    522    2016-11-20 06:22:00    2016-11-20 06:22:00
45692    21659    469    2016-11-20 22:53:00    2016-11-20 22:53:00
45693    21660    801    2016-11-20 13:33:00    2016-11-20 13:33:00
45694    21660    940    2016-11-20 09:11:00    2016-11-20 09:11:00
45695    21660    893    2016-11-20 12:21:00    2016-11-20 12:21:00
45696    21660    697    2016-11-20 14:59:00    2016-11-20 14:59:00
45697    21660    642    2016-11-20 11:53:00    2016-11-20 11:53:00
45698    21661    954    2016-11-20 15:55:00    2016-11-20 15:55:00
45699    21661    486    2016-11-20 06:29:00    2016-11-20 06:29:00
45700    21661    946    2016-11-20 17:56:00    2016-11-20 17:56:00
45701    21661    673    2016-11-20 06:12:00    2016-11-20 06:12:00
45702    21661    666    2016-11-20 09:36:00    2016-11-20 09:36:00
45703    21662    829    2016-11-20 21:14:00    2016-11-20 21:14:00
45704    21662    607    2016-11-20 10:40:00    2016-11-20 10:40:00
45705    21662    465    2016-11-20 12:12:00    2016-11-20 12:12:00
45706    21662    819    2016-11-20 01:45:00    2016-11-20 01:45:00
45707    21662    761    2016-11-20 15:23:00    2016-11-20 15:23:00
45708    21663    610    2016-11-20 17:47:00    2016-11-20 17:47:00
45709    21663    694    2016-11-20 14:00:00    2016-11-20 14:00:00
45710    21663    915    2016-11-20 18:51:00    2016-11-20 18:51:00
45711    21663    478    2016-11-20 08:49:00    2016-11-20 08:49:00
45712    21663    885    2016-11-20 22:21:00    2016-11-20 22:21:00
45713    21664    587    2016-11-20 19:27:00    2016-11-20 19:27:00
45714    21664    718    2016-11-20 05:12:00    2016-11-20 05:12:00
45715    21664    804    2016-11-20 02:22:00    2016-11-20 02:22:00
45716    21664    889    2016-11-20 11:52:00    2016-11-20 11:52:00
45717    21664    595    2016-11-20 05:11:00    2016-11-20 05:11:00
45718    21665    619    2016-11-20 21:30:00    2016-11-20 21:30:00
45719    21665    496    2016-11-20 11:55:00    2016-11-20 11:55:00
45720    21665    475    2016-11-20 08:49:00    2016-11-20 08:49:00
45721    21665    647    2016-11-20 06:28:00    2016-11-20 06:28:00
45722    21665    917    2016-11-20 06:59:00    2016-11-20 06:59:00
45723    21666    892    2016-11-20 12:43:00    2016-11-20 12:43:00
45724    21666    520    2016-11-20 09:16:00    2016-11-20 09:16:00
45725    21666    499    2016-11-20 21:04:00    2016-11-20 21:04:00
45726    21666    754    2016-11-20 03:03:00    2016-11-20 03:03:00
45727    21666    628    2016-11-20 08:07:00    2016-11-20 08:07:00
45728    21667    832    2016-11-20 13:57:00    2016-11-20 13:57:00
45729    21667    531    2016-11-20 09:50:00    2016-11-20 09:50:00
45730    21667    887    2016-11-20 13:35:00    2016-11-20 13:35:00
45731    21667    561    2016-11-20 19:03:00    2016-11-20 19:03:00
45732    21667    933    2016-11-20 05:07:00    2016-11-20 05:07:00
45733    21668    783    2016-11-20 09:38:00    2016-11-20 09:38:00
45734    21668    902    2016-11-20 08:06:00    2016-11-20 08:06:00
45735    21668    906    2016-11-20 16:18:00    2016-11-20 16:18:00
45736    21668    893    2016-11-20 03:32:00    2016-11-20 03:32:00
45737    21668    928    2016-11-20 06:08:00    2016-11-20 06:08:00
45738    21669    798    2016-11-20 08:24:00    2016-11-20 08:24:00
45739    21669    573    2016-11-20 07:38:00    2016-11-20 07:38:00
45740    21669    548    2016-11-20 01:45:00    2016-11-20 01:45:00
45741    21669    938    2016-11-20 08:08:00    2016-11-20 08:08:00
45742    21669    641    2016-11-20 23:31:00    2016-11-20 23:31:00
45743    21670    833    2016-11-20 03:32:00    2016-11-20 03:32:00
45744    21670    819    2016-11-20 19:35:00    2016-11-20 19:35:00
45745    21670    552    2016-11-20 16:33:00    2016-11-20 16:33:00
45746    21670    854    2016-11-20 21:00:00    2016-11-20 21:00:00
45747    21670    611    2016-11-20 18:42:00    2016-11-20 18:42:00
45748    21671    850    2016-11-20 10:28:00    2016-11-20 10:28:00
45749    21671    739    2016-11-20 21:14:00    2016-11-20 21:14:00
45750    21671    944    2016-11-20 04:39:00    2016-11-20 04:39:00
45751    21671    772    2016-11-20 17:40:00    2016-11-20 17:40:00
45752    21671    753    2016-11-20 21:18:00    2016-11-20 21:18:00
45753    21672    609    2016-11-20 09:33:00    2016-11-20 09:33:00
45754    21672    603    2016-11-20 10:19:00    2016-11-20 10:19:00
45755    21672    792    2016-11-20 04:10:00    2016-11-20 04:10:00
45756    21672    509    2016-11-20 11:46:00    2016-11-20 11:46:00
45757    21672    724    2016-11-20 05:12:00    2016-11-20 05:12:00
45758    21673    756    2016-11-20 23:14:00    2016-11-20 23:14:00
45759    21673    553    2016-11-20 08:10:00    2016-11-20 08:10:00
45760    21673    582    2016-11-20 11:31:00    2016-11-20 11:31:00
45761    21673    629    2016-11-20 07:14:00    2016-11-20 07:14:00
45762    21673    906    2016-11-20 20:56:00    2016-11-20 20:56:00
45763    21674    570    2016-11-20 04:04:00    2016-11-20 04:04:00
45764    21674    780    2016-11-20 19:31:00    2016-11-20 19:31:00
45765    21674    868    2016-11-20 02:05:00    2016-11-20 02:05:00
45766    21674    922    2016-11-20 13:20:00    2016-11-20 13:20:00
45767    21674    920    2016-11-20 23:25:00    2016-11-20 23:25:00
45768    21675    792    2016-11-20 14:04:00    2016-11-20 14:04:00
45769    21675    545    2016-11-20 18:08:00    2016-11-20 18:08:00
45770    21675    561    2016-11-20 17:22:00    2016-11-20 17:22:00
45771    21675    706    2016-11-20 09:37:00    2016-11-20 09:37:00
45772    21675    471    2016-11-20 13:47:00    2016-11-20 13:47:00
45773    21676    626    2016-11-20 08:27:00    2016-11-20 08:27:00
45774    21676    820    2016-11-20 20:33:00    2016-11-20 20:33:00
45775    21676    864    2016-11-20 11:15:00    2016-11-20 11:15:00
45776    21676    833    2016-11-20 16:44:00    2016-11-20 16:44:00
45777    21676    513    2016-11-20 07:55:00    2016-11-20 07:55:00
45778    21677    877    2016-11-20 23:00:00    2016-11-20 23:00:00
45779    21677    717    2016-11-20 13:09:00    2016-11-20 13:09:00
45780    21677    617    2016-11-20 17:25:00    2016-11-20 17:25:00
45781    21677    790    2016-11-20 12:52:00    2016-11-20 12:52:00
45782    21677    705    2016-11-20 17:27:00    2016-11-20 17:27:00
45783    21678    540    2016-11-20 18:56:00    2016-11-20 18:56:00
45784    21678    842    2016-11-20 20:00:00    2016-11-20 20:00:00
45785    21678    888    2016-11-20 07:06:00    2016-11-20 07:06:00
45786    21678    693    2016-11-20 19:26:00    2016-11-20 19:26:00
45787    21678    799    2016-11-20 17:57:00    2016-11-20 17:57:00
45788    21679    696    2016-11-20 08:36:00    2016-11-20 08:36:00
45789    21679    849    2016-11-20 03:30:00    2016-11-20 03:30:00
45790    21679    476    2016-11-20 03:29:00    2016-11-20 03:29:00
45791    21679    551    2016-11-20 13:20:00    2016-11-20 13:20:00
45792    21679    478    2016-11-20 16:12:00    2016-11-20 16:12:00
45793    21680    466    2016-11-20 04:33:00    2016-11-20 04:33:00
45794    21680    507    2016-11-20 21:51:00    2016-11-20 21:51:00
45795    21680    584    2016-11-20 01:08:00    2016-11-20 01:08:00
45796    21680    751    2016-11-20 12:37:00    2016-11-20 12:37:00
45797    21680    946    2016-11-20 07:17:00    2016-11-20 07:17:00
45798    21681    861    2016-11-20 08:37:00    2016-11-20 08:37:00
45799    21681    498    2016-11-20 17:11:00    2016-11-20 17:11:00
45800    21681    506    2016-11-20 08:46:00    2016-11-20 08:46:00
45801    21681    906    2016-11-20 21:21:00    2016-11-20 21:21:00
45802    21681    676    2016-11-20 15:52:00    2016-11-20 15:52:00
45803    21682    510    2016-11-20 23:23:00    2016-11-20 23:23:00
45804    21682    723    2016-11-20 20:48:00    2016-11-20 20:48:00
45805    21682    612    2016-11-20 12:24:00    2016-11-20 12:24:00
45806    21682    522    2016-11-20 03:53:00    2016-11-20 03:53:00
45807    21682    605    2016-11-20 04:20:00    2016-11-20 04:20:00
45808    21683    656    2016-11-20 23:05:00    2016-11-20 23:05:00
45809    21683    554    2016-11-20 04:59:00    2016-11-20 04:59:00
45810    21683    670    2016-11-20 02:10:00    2016-11-20 02:10:00
45811    21683    660    2016-11-20 01:06:00    2016-11-20 01:06:00
45812    21683    637    2016-11-20 09:48:00    2016-11-20 09:48:00
45813    21684    542    2016-11-20 19:23:00    2016-11-20 19:23:00
45814    21684    713    2016-11-20 06:25:00    2016-11-20 06:25:00
45815    21684    847    2016-11-20 19:08:00    2016-11-20 19:08:00
45816    21684    700    2016-11-20 18:12:00    2016-11-20 18:12:00
45817    21684    673    2016-11-20 03:37:00    2016-11-20 03:37:00
45818    21685    924    2016-11-20 02:19:00    2016-11-20 02:19:00
45819    21685    556    2016-11-20 14:32:00    2016-11-20 14:32:00
45820    21685    542    2016-11-20 04:47:00    2016-11-20 04:47:00
45821    21685    520    2016-11-20 08:19:00    2016-11-20 08:19:00
45822    21685    492    2016-11-20 13:26:00    2016-11-20 13:26:00
45823    21686    591    2016-11-20 02:39:00    2016-11-20 02:39:00
45824    21686    536    2016-11-20 14:29:00    2016-11-20 14:29:00
45825    21686    565    2016-11-20 06:44:00    2016-11-20 06:44:00
45826    21686    961    2016-11-20 19:15:00    2016-11-20 19:15:00
45827    21686    524    2016-11-20 16:54:00    2016-11-20 16:54:00
45828    21687    842    2016-11-20 04:25:00    2016-11-20 04:25:00
45829    21687    564    2016-11-20 18:26:00    2016-11-20 18:26:00
45830    21687    558    2016-11-20 18:08:00    2016-11-20 18:08:00
45831    21687    792    2016-11-20 15:13:00    2016-11-20 15:13:00
45832    21687    580    2016-11-20 20:23:00    2016-11-20 20:23:00
45833    21688    915    2016-11-20 20:00:00    2016-11-20 20:00:00
45834    21688    557    2016-11-20 04:16:00    2016-11-20 04:16:00
45835    21688    646    2016-11-20 16:36:00    2016-11-20 16:36:00
45836    21688    722    2016-11-20 12:35:00    2016-11-20 12:35:00
45837    21688    836    2016-11-20 17:17:00    2016-11-20 17:17:00
45838    21689    470    2016-11-20 12:56:00    2016-11-20 12:56:00
45839    21689    836    2016-11-20 23:03:00    2016-11-20 23:03:00
45840    21689    742    2016-11-20 07:07:00    2016-11-20 07:07:00
45841    21689    558    2016-11-20 13:09:00    2016-11-20 13:09:00
45842    21689    913    2016-11-20 07:12:00    2016-11-20 07:12:00
45843    21690    466    2016-11-20 06:17:00    2016-11-20 06:17:00
45844    21690    546    2016-11-20 05:45:00    2016-11-20 05:45:00
45845    21690    854    2016-11-20 11:42:00    2016-11-20 11:42:00
45846    21690    896    2016-11-20 21:32:00    2016-11-20 21:32:00
45847    21690    582    2016-11-20 04:51:00    2016-11-20 04:51:00
45848    21691    750    2016-11-20 01:32:00    2016-11-20 01:32:00
45849    21691    809    2016-11-20 19:34:00    2016-11-20 19:34:00
45850    21691    648    2016-11-20 15:56:00    2016-11-20 15:56:00
45851    21691    687    2016-11-20 02:28:00    2016-11-20 02:28:00
45852    21691    943    2016-11-20 03:37:00    2016-11-20 03:37:00
45853    21692    740    2016-11-20 06:44:00    2016-11-20 06:44:00
45854    21692    578    2016-11-20 08:28:00    2016-11-20 08:28:00
45855    21692    593    2016-11-20 19:11:00    2016-11-20 19:11:00
45856    21692    621    2016-11-20 20:30:00    2016-11-20 20:30:00
45857    21692    515    2016-11-20 03:26:00    2016-11-20 03:26:00
45858    21693    621    2016-11-20 22:30:00    2016-11-20 22:30:00
45859    21693    594    2016-11-20 11:28:00    2016-11-20 11:28:00
45860    21693    664    2016-11-20 09:26:00    2016-11-20 09:26:00
45861    21693    864    2016-11-20 22:54:00    2016-11-20 22:54:00
45862    21693    637    2016-11-20 03:19:00    2016-11-20 03:19:00
45863    21694    524    2016-11-20 02:12:00    2016-11-20 02:12:00
45864    21694    549    2016-11-20 18:21:00    2016-11-20 18:21:00
45865    21694    769    2016-11-20 08:24:00    2016-11-20 08:24:00
45866    21694    906    2016-11-20 09:08:00    2016-11-20 09:08:00
45867    21694    743    2016-11-20 16:53:00    2016-11-20 16:53:00
45868    21695    888    2016-11-20 05:32:00    2016-11-20 05:32:00
45869    21695    912    2016-11-20 12:23:00    2016-11-20 12:23:00
45870    21695    734    2016-11-20 08:50:00    2016-11-20 08:50:00
45871    21695    586    2016-11-20 16:48:00    2016-11-20 16:48:00
45872    21695    753    2016-11-20 23:58:00    2016-11-20 23:58:00
45873    21696    938    2016-11-20 19:27:00    2016-11-20 19:27:00
45874    21696    834    2016-11-20 09:26:00    2016-11-20 09:26:00
45875    21696    528    2016-11-20 15:14:00    2016-11-20 15:14:00
45876    21696    570    2016-11-20 20:02:00    2016-11-20 20:02:00
45877    21696    529    2016-11-20 18:17:00    2016-11-20 18:17:00
45878    21697    484    2016-11-21 13:59:00    2016-11-21 13:59:00
45879    21697    526    2016-11-21 04:47:00    2016-11-21 04:47:00
45880    21697    486    2016-11-21 18:29:00    2016-11-21 18:29:00
45881    21697    857    2016-11-21 20:53:00    2016-11-21 20:53:00
45882    21697    538    2016-11-21 02:33:00    2016-11-21 02:33:00
45883    21698    888    2016-11-21 02:09:00    2016-11-21 02:09:00
45884    21698    594    2016-11-21 17:00:00    2016-11-21 17:00:00
45885    21698    771    2016-11-21 23:00:00    2016-11-21 23:00:00
45886    21698    703    2016-11-21 07:11:00    2016-11-21 07:11:00
45887    21698    548    2016-11-21 04:29:00    2016-11-21 04:29:00
45888    21699    735    2016-11-21 03:24:00    2016-11-21 03:24:00
45889    21699    874    2016-11-21 12:33:00    2016-11-21 12:33:00
45890    21699    560    2016-11-21 12:06:00    2016-11-21 12:06:00
45891    21699    761    2016-11-21 05:18:00    2016-11-21 05:18:00
45892    21699    684    2016-11-21 13:25:00    2016-11-21 13:25:00
45893    21700    810    2016-11-21 01:50:00    2016-11-21 01:50:00
45894    21700    519    2016-11-21 07:12:00    2016-11-21 07:12:00
45895    21700    927    2016-11-21 19:43:00    2016-11-21 19:43:00
45896    21700    898    2016-11-21 11:25:00    2016-11-21 11:25:00
45897    21700    474    2016-11-21 11:05:00    2016-11-21 11:05:00
45898    21701    710    2016-11-21 12:30:00    2016-11-21 12:30:00
45899    21701    535    2016-11-21 01:34:00    2016-11-21 01:34:00
45900    21701    818    2016-11-21 07:26:00    2016-11-21 07:26:00
45901    21701    839    2016-11-21 16:41:00    2016-11-21 16:41:00
45902    21701    577    2016-11-21 11:07:00    2016-11-21 11:07:00
45903    21702    541    2016-11-21 01:05:00    2016-11-21 01:05:00
45904    21702    480    2016-11-21 15:47:00    2016-11-21 15:47:00
45905    21702    698    2016-11-21 16:32:00    2016-11-21 16:32:00
45906    21702    902    2016-11-21 17:03:00    2016-11-21 17:03:00
45907    21702    474    2016-11-21 21:22:00    2016-11-21 21:22:00
45908    21703    642    2016-11-21 06:57:00    2016-11-21 06:57:00
45909    21703    532    2016-11-21 17:33:00    2016-11-21 17:33:00
45910    21703    945    2016-11-21 14:41:00    2016-11-21 14:41:00
45911    21703    488    2016-11-21 18:07:00    2016-11-21 18:07:00
45912    21703    820    2016-11-21 03:07:00    2016-11-21 03:07:00
45913    21704    600    2016-11-21 09:39:00    2016-11-21 09:39:00
45914    21704    846    2016-11-21 05:34:00    2016-11-21 05:34:00
45915    21704    484    2016-11-21 21:50:00    2016-11-21 21:50:00
45916    21704    621    2016-11-21 18:13:00    2016-11-21 18:13:00
45917    21704    906    2016-11-21 08:20:00    2016-11-21 08:20:00
45918    21705    866    2016-11-21 07:10:00    2016-11-21 07:10:00
45919    21705    898    2016-11-21 07:01:00    2016-11-21 07:01:00
45920    21705    783    2016-11-21 16:49:00    2016-11-21 16:49:00
45921    21705    643    2016-11-21 09:24:00    2016-11-21 09:24:00
45922    21705    472    2016-11-21 17:41:00    2016-11-21 17:41:00
45923    21706    734    2016-11-21 19:31:00    2016-11-21 19:31:00
45924    21706    767    2016-11-21 21:37:00    2016-11-21 21:37:00
45925    21706    604    2016-11-21 16:35:00    2016-11-21 16:35:00
45926    21706    886    2016-11-21 13:14:00    2016-11-21 13:14:00
45927    21706    798    2016-11-21 04:20:00    2016-11-21 04:20:00
45928    21707    622    2016-11-21 06:17:00    2016-11-21 06:17:00
45929    21707    860    2016-11-21 10:54:00    2016-11-21 10:54:00
45930    21707    956    2016-11-21 04:55:00    2016-11-21 04:55:00
45931    21707    516    2016-11-21 05:47:00    2016-11-21 05:47:00
45932    21707    590    2016-11-21 15:16:00    2016-11-21 15:16:00
45933    21708    904    2016-11-21 11:45:00    2016-11-21 11:45:00
45934    21708    872    2016-11-21 06:30:00    2016-11-21 06:30:00
45935    21708    607    2016-11-21 15:37:00    2016-11-21 15:37:00
45936    21708    777    2016-11-21 07:06:00    2016-11-21 07:06:00
45937    21708    731    2016-11-21 19:08:00    2016-11-21 19:08:00
45938    21709    947    2016-11-21 18:00:00    2016-11-21 18:00:00
45939    21709    865    2016-11-21 11:39:00    2016-11-21 11:39:00
45940    21709    817    2016-11-21 19:19:00    2016-11-21 19:19:00
45941    21709    601    2016-11-21 21:51:00    2016-11-21 21:51:00
45942    21709    593    2016-11-21 19:54:00    2016-11-21 19:54:00
45943    21710    650    2016-11-21 19:16:00    2016-11-21 19:16:00
45944    21710    776    2016-11-21 08:37:00    2016-11-21 08:37:00
45945    21710    765    2016-11-21 22:18:00    2016-11-21 22:18:00
45946    21710    616    2016-11-21 22:41:00    2016-11-21 22:41:00
45947    21710    815    2016-11-21 22:25:00    2016-11-21 22:25:00
45948    21711    579    2016-11-21 18:02:00    2016-11-21 18:02:00
45949    21711    828    2016-11-21 23:00:00    2016-11-21 23:00:00
45950    21711    757    2016-11-21 03:37:00    2016-11-21 03:37:00
45951    21711    869    2016-11-21 05:51:00    2016-11-21 05:51:00
45952    21711    861    2016-11-21 03:18:00    2016-11-21 03:18:00
45953    21712    684    2016-11-21 21:02:00    2016-11-21 21:02:00
45954    21712    477    2016-11-21 18:00:00    2016-11-21 18:00:00
45955    21712    745    2016-11-21 22:37:00    2016-11-21 22:37:00
45956    21712    674    2016-11-21 07:45:00    2016-11-21 07:45:00
45957    21712    551    2016-11-21 10:08:00    2016-11-21 10:08:00
45958    21713    845    2016-11-21 19:27:00    2016-11-21 19:27:00
45959    21713    840    2016-11-21 21:39:00    2016-11-21 21:39:00
45960    21713    522    2016-11-21 06:33:00    2016-11-21 06:33:00
45961    21713    525    2016-11-21 21:15:00    2016-11-21 21:15:00
45962    21713    933    2016-11-21 08:25:00    2016-11-21 08:25:00
45963    21714    856    2016-11-21 06:46:00    2016-11-21 06:46:00
45964    21714    750    2016-11-21 14:19:00    2016-11-21 14:19:00
45965    21714    540    2016-11-21 07:46:00    2016-11-21 07:46:00
45966    21714    518    2016-11-21 05:48:00    2016-11-21 05:48:00
45967    21714    624    2016-11-21 16:22:00    2016-11-21 16:22:00
45968    21715    915    2016-11-21 15:02:00    2016-11-21 15:02:00
45969    21715    606    2016-11-21 03:24:00    2016-11-21 03:24:00
45970    21715    569    2016-11-21 22:16:00    2016-11-21 22:16:00
45971    21715    845    2016-11-21 15:44:00    2016-11-21 15:44:00
45972    21715    589    2016-11-21 01:51:00    2016-11-21 01:51:00
45973    21716    838    2016-11-21 01:46:00    2016-11-21 01:46:00
45974    21716    695    2016-11-21 02:02:00    2016-11-21 02:02:00
45975    21716    647    2016-11-21 12:56:00    2016-11-21 12:56:00
45976    21716    784    2016-11-21 05:52:00    2016-11-21 05:52:00
45977    21716    596    2016-11-21 20:16:00    2016-11-21 20:16:00
45978    21717    888    2016-11-21 16:15:00    2016-11-21 16:15:00
45979    21717    596    2016-11-21 22:53:00    2016-11-21 22:53:00
45980    21717    743    2016-11-21 18:11:00    2016-11-21 18:11:00
45981    21717    891    2016-11-21 09:18:00    2016-11-21 09:18:00
45982    21717    603    2016-11-21 13:54:00    2016-11-21 13:54:00
45983    21718    959    2016-11-21 15:32:00    2016-11-21 15:32:00
45984    21718    814    2016-11-21 09:56:00    2016-11-21 09:56:00
45985    21718    468    2016-11-21 05:20:00    2016-11-21 05:20:00
45986    21718    587    2016-11-21 15:01:00    2016-11-21 15:01:00
45987    21718    860    2016-11-21 09:59:00    2016-11-21 09:59:00
45988    21719    798    2016-11-21 10:23:00    2016-11-21 10:23:00
45989    21719    854    2016-11-21 08:08:00    2016-11-21 08:08:00
45990    21719    655    2016-11-21 15:58:00    2016-11-21 15:58:00
45991    21719    760    2016-11-21 21:29:00    2016-11-21 21:29:00
45992    21719    847    2016-11-21 05:55:00    2016-11-21 05:55:00
45993    21720    845    2016-11-21 08:38:00    2016-11-21 08:38:00
45994    21720    725    2016-11-21 22:49:00    2016-11-21 22:49:00
45995    21720    867    2016-11-21 07:46:00    2016-11-21 07:46:00
45996    21720    659    2016-11-21 08:18:00    2016-11-21 08:18:00
45997    21720    894    2016-11-21 07:47:00    2016-11-21 07:47:00
45998    21721    889    2016-11-21 17:24:00    2016-11-21 17:24:00
45999    21721    895    2016-11-21 08:47:00    2016-11-21 08:47:00
46000    21721    648    2016-11-21 21:58:00    2016-11-21 21:58:00
46001    21721    536    2016-11-21 17:48:00    2016-11-21 17:48:00
46002    21721    537    2016-11-21 01:19:00    2016-11-21 01:19:00
46003    21722    488    2016-11-21 06:00:00    2016-11-21 06:00:00
46004    21722    623    2016-11-21 10:24:00    2016-11-21 10:24:00
46005    21722    778    2016-11-21 23:15:00    2016-11-21 23:15:00
46006    21722    595    2016-11-21 03:52:00    2016-11-21 03:52:00
46007    21722    805    2016-11-21 14:12:00    2016-11-21 14:12:00
46008    21723    687    2016-11-21 09:19:00    2016-11-21 09:19:00
46009    21723    523    2016-11-21 10:48:00    2016-11-21 10:48:00
46010    21723    657    2016-11-21 08:53:00    2016-11-21 08:53:00
46011    21723    631    2016-11-21 03:41:00    2016-11-21 03:41:00
46012    21723    821    2016-11-21 16:55:00    2016-11-21 16:55:00
46013    21724    818    2016-11-21 22:11:00    2016-11-21 22:11:00
46014    21724    751    2016-11-21 13:56:00    2016-11-21 13:56:00
46015    21724    515    2016-11-21 01:51:00    2016-11-21 01:51:00
46016    21724    645    2016-11-21 16:00:00    2016-11-21 16:00:00
46017    21724    647    2016-11-21 05:41:00    2016-11-21 05:41:00
46018    21725    765    2016-11-21 21:28:00    2016-11-21 21:28:00
46019    21725    696    2016-11-21 23:04:00    2016-11-21 23:04:00
46020    21725    748    2016-11-21 14:00:00    2016-11-21 14:00:00
46021    21725    726    2016-11-21 23:11:00    2016-11-21 23:11:00
46022    21725    736    2016-11-21 06:12:00    2016-11-21 06:12:00
46023    21726    735    2016-11-21 01:30:00    2016-11-21 01:30:00
46024    21726    657    2016-11-21 13:53:00    2016-11-21 13:53:00
46025    21726    754    2016-11-21 06:15:00    2016-11-21 06:15:00
46026    21726    530    2016-11-21 05:00:00    2016-11-21 05:00:00
46027    21726    832    2016-11-21 12:10:00    2016-11-21 12:10:00
46028    21727    602    2016-11-21 11:18:00    2016-11-21 11:18:00
46029    21727    924    2016-11-22 00:00:00    2016-11-22 00:00:00
46030    21727    633    2016-11-21 15:01:00    2016-11-21 15:01:00
46031    21727    867    2016-11-21 06:12:00    2016-11-21 06:12:00
46032    21727    766    2016-11-21 12:05:00    2016-11-21 12:05:00
46033    21728    944    2016-11-21 09:03:00    2016-11-21 09:03:00
46034    21728    669    2016-11-21 10:43:00    2016-11-21 10:43:00
46035    21728    754    2016-11-21 05:35:00    2016-11-21 05:35:00
46036    21728    564    2016-11-21 17:38:00    2016-11-21 17:38:00
46037    21728    739    2016-11-21 06:39:00    2016-11-21 06:39:00
46038    21729    631    2016-11-21 21:19:00    2016-11-21 21:19:00
46039    21729    940    2016-11-21 16:35:00    2016-11-21 16:35:00
46040    21729    951    2016-11-21 11:38:00    2016-11-21 11:38:00
46041    21729    484    2016-11-21 23:04:00    2016-11-21 23:04:00
46042    21729    904    2016-11-21 03:08:00    2016-11-21 03:08:00
46043    21730    547    2016-11-21 04:59:00    2016-11-21 04:59:00
46044    21730    857    2016-11-21 20:56:00    2016-11-21 20:56:00
46045    21730    745    2016-11-21 23:03:00    2016-11-21 23:03:00
46046    21730    767    2016-11-21 19:37:00    2016-11-21 19:37:00
46047    21730    517    2016-11-21 19:56:00    2016-11-21 19:56:00
46048    21731    597    2016-11-21 08:18:00    2016-11-21 08:18:00
46049    21731    925    2016-11-21 03:02:00    2016-11-21 03:02:00
46050    21731    471    2016-11-21 06:40:00    2016-11-21 06:40:00
46051    21731    585    2016-11-21 01:17:00    2016-11-21 01:17:00
46052    21731    670    2016-11-21 20:30:00    2016-11-21 20:30:00
46053    21732    694    2016-11-21 08:34:00    2016-11-21 08:34:00
46054    21732    826    2016-11-21 06:54:00    2016-11-21 06:54:00
46055    21732    650    2016-11-21 10:26:00    2016-11-21 10:26:00
46056    21732    927    2016-11-21 05:02:00    2016-11-21 05:02:00
46057    21732    487    2016-11-21 04:02:00    2016-11-21 04:02:00
46058    21733    948    2016-11-21 01:41:00    2016-11-21 01:41:00
46059    21733    813    2016-11-21 06:32:00    2016-11-21 06:32:00
46060    21733    587    2016-11-21 15:34:00    2016-11-21 15:34:00
46061    21733    777    2016-11-21 22:58:00    2016-11-21 22:58:00
46062    21733    750    2016-11-21 13:46:00    2016-11-21 13:46:00
46063    21734    522    2016-11-21 23:38:00    2016-11-21 23:38:00
46064    21734    525    2016-11-21 20:29:00    2016-11-21 20:29:00
46065    21734    683    2016-11-21 08:41:00    2016-11-21 08:41:00
46066    21734    717    2016-11-21 01:06:00    2016-11-21 01:06:00
46067    21734    654    2016-11-21 03:20:00    2016-11-21 03:20:00
46068    21735    925    2016-11-21 10:29:00    2016-11-21 10:29:00
46069    21735    671    2016-11-21 11:59:00    2016-11-21 11:59:00
46070    21735    480    2016-11-21 18:49:00    2016-11-21 18:49:00
46071    21735    720    2016-11-21 07:17:00    2016-11-21 07:17:00
46072    21735    903    2016-11-21 08:59:00    2016-11-21 08:59:00
46073    21736    644    2016-11-21 09:07:00    2016-11-21 09:07:00
46074    21736    718    2016-11-21 03:08:00    2016-11-21 03:08:00
46075    21736    913    2016-11-21 21:01:00    2016-11-21 21:01:00
46076    21736    589    2016-11-21 12:49:00    2016-11-21 12:49:00
46077    21736    616    2016-11-21 06:04:00    2016-11-21 06:04:00
46078    21737    885    2016-11-21 22:28:00    2016-11-21 22:28:00
46079    21737    781    2016-11-21 04:10:00    2016-11-21 04:10:00
46080    21737    619    2016-11-21 19:26:00    2016-11-21 19:26:00
46081    21737    678    2016-11-21 08:40:00    2016-11-21 08:40:00
46082    21737    682    2016-11-21 23:51:00    2016-11-21 23:51:00
46083    21738    807    2016-11-21 10:06:00    2016-11-21 10:06:00
46084    21738    895    2016-11-21 21:12:00    2016-11-21 21:12:00
46085    21738    932    2016-11-21 09:49:00    2016-11-21 09:49:00
46086    21738    515    2016-11-21 09:08:00    2016-11-21 09:08:00
46087    21738    824    2016-11-21 11:30:00    2016-11-21 11:30:00
46088    21739    520    2016-11-21 03:02:00    2016-11-21 03:02:00
46089    21739    531    2016-11-21 22:29:00    2016-11-21 22:29:00
46090    21739    647    2016-11-21 01:40:00    2016-11-21 01:40:00
46091    21739    689    2016-11-21 19:13:00    2016-11-21 19:13:00
46092    21739    710    2016-11-21 22:03:00    2016-11-21 22:03:00
46093    21740    808    2016-11-21 21:27:00    2016-11-21 21:27:00
46094    21740    871    2016-11-21 03:03:00    2016-11-21 03:03:00
46095    21740    788    2016-11-21 05:21:00    2016-11-21 05:21:00
46096    21740    627    2016-11-21 21:10:00    2016-11-21 21:10:00
46097    21740    657    2016-11-21 06:07:00    2016-11-21 06:07:00
46098    21741    565    2016-11-21 06:14:00    2016-11-21 06:14:00
46099    21741    626    2016-11-21 09:10:00    2016-11-21 09:10:00
46100    21741    724    2016-11-21 08:41:00    2016-11-21 08:41:00
46101    21741    864    2016-11-21 02:27:00    2016-11-21 02:27:00
46102    21741    828    2016-11-21 05:22:00    2016-11-21 05:22:00
46103    21742    567    2016-11-21 09:03:00    2016-11-21 09:03:00
46104    21742    490    2016-11-21 08:22:00    2016-11-21 08:22:00
46105    21742    471    2016-11-21 04:54:00    2016-11-21 04:54:00
46106    21742    634    2016-11-21 02:09:00    2016-11-21 02:09:00
46107    21742    845    2016-11-21 04:10:00    2016-11-21 04:10:00
46108    21743    952    2016-11-21 05:11:00    2016-11-21 05:11:00
46109    21743    772    2016-11-21 01:30:00    2016-11-21 01:30:00
46110    21743    542    2016-11-21 10:46:00    2016-11-21 10:46:00
46111    21743    500    2016-11-21 09:22:00    2016-11-21 09:22:00
46112    21743    544    2016-11-21 18:10:00    2016-11-21 18:10:00
46113    21744    637    2016-11-21 07:47:00    2016-11-21 07:47:00
46114    21744    837    2016-11-21 15:14:00    2016-11-21 15:14:00
46115    21744    635    2016-11-21 01:42:00    2016-11-21 01:42:00
46116    21744    793    2016-11-21 01:02:00    2016-11-21 01:02:00
46117    21744    844    2016-11-21 06:43:00    2016-11-21 06:43:00
46118    21745    504    2016-11-21 07:44:00    2016-11-21 07:44:00
46119    21745    846    2016-11-21 09:43:00    2016-11-21 09:43:00
46120    21745    535    2016-11-21 02:49:00    2016-11-21 02:49:00
46121    21745    765    2016-11-21 06:55:00    2016-11-21 06:55:00
46122    21745    643    2016-11-21 21:37:00    2016-11-21 21:37:00
46123    21746    791    2016-11-21 13:37:00    2016-11-21 13:37:00
46124    21746    870    2016-11-21 22:28:00    2016-11-21 22:28:00
46125    21746    578    2016-11-21 02:55:00    2016-11-21 02:55:00
46126    21746    670    2016-11-21 03:36:00    2016-11-21 03:36:00
46127    21746    469    2016-11-21 03:40:00    2016-11-21 03:40:00
46128    21747    658    2016-11-21 06:13:00    2016-11-21 06:13:00
46129    21747    474    2016-11-21 17:01:00    2016-11-21 17:01:00
46130    21747    768    2016-11-21 14:14:00    2016-11-21 14:14:00
46131    21747    489    2016-11-21 09:04:00    2016-11-21 09:04:00
46132    21747    507    2016-11-21 02:54:00    2016-11-21 02:54:00
46133    21748    856    2016-11-21 06:42:00    2016-11-21 06:42:00
46134    21748    646    2016-11-21 18:03:00    2016-11-21 18:03:00
46135    21748    870    2016-11-21 11:41:00    2016-11-21 11:41:00
46136    21748    807    2016-11-21 02:20:00    2016-11-21 02:20:00
46137    21748    732    2016-11-21 16:18:00    2016-11-21 16:18:00
46138    21749    722    2016-11-21 01:25:00    2016-11-21 01:25:00
46139    21749    904    2016-11-21 22:32:00    2016-11-21 22:32:00
46140    21749    663    2016-11-21 15:47:00    2016-11-21 15:47:00
46141    21749    784    2016-11-21 20:22:00    2016-11-21 20:22:00
46142    21749    466    2016-11-21 19:42:00    2016-11-21 19:42:00
46143    21750    906    2016-11-21 04:23:00    2016-11-21 04:23:00
46144    21750    874    2016-11-21 16:43:00    2016-11-21 16:43:00
46145    21750    567    2016-11-21 09:35:00    2016-11-21 09:35:00
46146    21750    720    2016-11-21 02:57:00    2016-11-21 02:57:00
46147    21750    575    2016-11-21 17:56:00    2016-11-21 17:56:00
46148    21751    703    2016-11-21 21:00:00    2016-11-21 21:00:00
46149    21751    773    2016-11-21 21:39:00    2016-11-21 21:39:00
46150    21751    826    2016-11-21 20:15:00    2016-11-21 20:15:00
46151    21751    787    2016-11-21 15:09:00    2016-11-21 15:09:00
46152    21751    682    2016-11-21 07:27:00    2016-11-21 07:27:00
46153    21752    544    2016-11-21 13:33:00    2016-11-21 13:33:00
46154    21752    483    2016-11-21 11:29:00    2016-11-21 11:29:00
46155    21752    472    2016-11-21 09:35:00    2016-11-21 09:35:00
46156    21752    523    2016-11-21 03:28:00    2016-11-21 03:28:00
46157    21752    567    2016-11-21 05:27:00    2016-11-21 05:27:00
46158    21753    708    2016-11-21 12:10:00    2016-11-21 12:10:00
46159    21753    857    2016-11-21 11:58:00    2016-11-21 11:58:00
46160    21753    820    2016-11-21 14:01:00    2016-11-21 14:01:00
46161    21753    700    2016-11-21 15:01:00    2016-11-21 15:01:00
46162    21753    836    2016-11-21 09:34:00    2016-11-21 09:34:00
46163    21754    721    2016-11-21 01:09:00    2016-11-21 01:09:00
46164    21754    583    2016-11-21 23:22:00    2016-11-21 23:22:00
46165    21754    636    2016-11-21 03:31:00    2016-11-21 03:31:00
46166    21754    680    2016-11-21 16:08:00    2016-11-21 16:08:00
46167    21754    776    2016-11-21 18:25:00    2016-11-21 18:25:00
46168    21755    959    2016-11-21 20:14:00    2016-11-21 20:14:00
46169    21755    644    2016-11-21 07:47:00    2016-11-21 07:47:00
46170    21755    819    2016-11-21 22:43:00    2016-11-21 22:43:00
46171    21755    802    2016-11-21 20:46:00    2016-11-21 20:46:00
46172    21755    732    2016-11-21 21:18:00    2016-11-21 21:18:00
46173    21756    510    2016-11-21 19:27:00    2016-11-21 19:27:00
46174    21756    656    2016-11-21 21:33:00    2016-11-21 21:33:00
46175    21756    620    2016-11-21 13:17:00    2016-11-21 13:17:00
46176    21756    848    2016-11-21 11:52:00    2016-11-21 11:52:00
46177    21756    505    2016-11-21 08:06:00    2016-11-21 08:06:00
46178    21757    656    2016-11-21 16:17:00    2016-11-21 16:17:00
46179    21757    692    2016-11-21 21:57:00    2016-11-21 21:57:00
46180    21757    511    2016-11-21 18:00:00    2016-11-21 18:00:00
46181    21757    841    2016-11-21 15:33:00    2016-11-21 15:33:00
46182    21757    896    2016-11-21 11:46:00    2016-11-21 11:46:00
46183    21758    958    2016-11-21 18:27:00    2016-11-21 18:27:00
46184    21758    917    2016-11-21 19:41:00    2016-11-21 19:41:00
46185    21758    852    2016-11-21 02:58:00    2016-11-21 02:58:00
46186    21758    508    2016-11-21 05:42:00    2016-11-21 05:42:00
46187    21758    571    2016-11-21 01:57:00    2016-11-21 01:57:00
46188    21759    527    2016-11-21 04:36:00    2016-11-21 04:36:00
46189    21759    466    2016-11-21 08:55:00    2016-11-21 08:55:00
46190    21759    949    2016-11-21 04:46:00    2016-11-21 04:46:00
46191    21759    752    2016-11-21 05:07:00    2016-11-21 05:07:00
46192    21759    875    2016-11-21 14:49:00    2016-11-21 14:49:00
46193    21760    604    2016-11-21 08:37:00    2016-11-21 08:37:00
46194    21760    644    2016-11-21 12:09:00    2016-11-21 12:09:00
46195    21760    627    2016-11-21 04:47:00    2016-11-21 04:47:00
46196    21760    686    2016-11-21 15:53:00    2016-11-21 15:53:00
46197    21760    596    2016-11-21 14:03:00    2016-11-21 14:03:00
46198    21761    785    2016-11-21 15:04:00    2016-11-21 15:04:00
46199    21761    735    2016-11-21 13:10:00    2016-11-21 13:10:00
46200    21761    836    2016-11-21 23:34:00    2016-11-21 23:34:00
46201    21761    762    2016-11-21 18:59:00    2016-11-21 18:59:00
46202    21761    796    2016-11-21 21:45:00    2016-11-21 21:45:00
46203    21762    642    2016-11-21 12:29:00    2016-11-21 12:29:00
46204    21762    499    2016-11-21 15:23:00    2016-11-21 15:23:00
46205    21762    514    2016-11-21 22:03:00    2016-11-21 22:03:00
46206    21762    740    2016-11-21 10:35:00    2016-11-21 10:35:00
46207    21762    839    2016-11-21 01:54:00    2016-11-21 01:54:00
46208    21763    563    2016-11-21 18:25:00    2016-11-21 18:25:00
46209    21763    686    2016-11-21 05:57:00    2016-11-21 05:57:00
46210    21763    548    2016-11-21 23:17:00    2016-11-21 23:17:00
46211    21763    553    2016-11-21 06:56:00    2016-11-21 06:56:00
46212    21763    947    2016-11-21 06:33:00    2016-11-21 06:33:00
46213    21764    824    2016-11-21 05:02:00    2016-11-21 05:02:00
46214    21764    766    2016-11-21 12:01:00    2016-11-21 12:01:00
46215    21764    554    2016-11-21 14:48:00    2016-11-21 14:48:00
46216    21764    919    2016-11-21 15:51:00    2016-11-21 15:51:00
46217    21764    566    2016-11-21 18:49:00    2016-11-21 18:49:00
46218    21765    655    2016-11-21 08:26:00    2016-11-21 08:26:00
46219    21765    922    2016-11-21 21:53:00    2016-11-21 21:53:00
46220    21765    672    2016-11-21 11:29:00    2016-11-21 11:29:00
46221    21765    670    2016-11-21 05:38:00    2016-11-21 05:38:00
46222    21765    483    2016-11-21 03:11:00    2016-11-21 03:11:00
46223    21766    539    2016-11-21 13:51:00    2016-11-21 13:51:00
46224    21766    868    2016-11-21 08:50:00    2016-11-21 08:50:00
46225    21766    530    2016-11-21 20:21:00    2016-11-21 20:21:00
46226    21766    957    2016-11-21 08:52:00    2016-11-21 08:52:00
46227    21766    829    2016-11-21 23:59:00    2016-11-21 23:59:00
46228    21767    545    2016-11-21 12:50:00    2016-11-21 12:50:00
46229    21767    725    2016-11-21 20:55:00    2016-11-21 20:55:00
46230    21767    938    2016-11-21 02:50:00    2016-11-21 02:50:00
46231    21767    472    2016-11-21 11:16:00    2016-11-21 11:16:00
46232    21767    751    2016-11-21 18:00:00    2016-11-21 18:00:00
46233    21768    676    2016-11-21 06:01:00    2016-11-21 06:01:00
46234    21768    809    2016-11-21 03:08:00    2016-11-21 03:08:00
46235    21768    469    2016-11-21 17:22:00    2016-11-21 17:22:00
46236    21768    514    2016-11-21 07:53:00    2016-11-21 07:53:00
46237    21768    603    2016-11-21 05:44:00    2016-11-21 05:44:00
46238    21769    727    2016-11-21 17:14:00    2016-11-21 17:14:00
46239    21769    697    2016-11-21 22:08:00    2016-11-21 22:08:00
46240    21769    688    2016-11-21 21:10:00    2016-11-21 21:10:00
46241    21769    566    2016-11-21 14:59:00    2016-11-21 14:59:00
46242    21769    577    2016-11-21 04:51:00    2016-11-21 04:51:00
46243    21770    591    2016-11-21 11:18:00    2016-11-21 11:18:00
46244    21770    750    2016-11-21 01:11:00    2016-11-21 01:11:00
46245    21770    816    2016-11-21 15:24:00    2016-11-21 15:24:00
46246    21770    838    2016-11-21 17:16:00    2016-11-21 17:16:00
46247    21770    556    2016-11-21 23:50:00    2016-11-21 23:50:00
46248    21771    881    2016-11-21 01:51:00    2016-11-21 01:51:00
46249    21771    935    2016-11-21 06:28:00    2016-11-21 06:28:00
46250    21771    679    2016-11-21 09:00:00    2016-11-21 09:00:00
46251    21771    795    2016-11-21 02:11:00    2016-11-21 02:11:00
46252    21771    953    2016-11-21 01:07:00    2016-11-21 01:07:00
46253    21772    532    2016-11-21 05:51:00    2016-11-21 05:51:00
46254    21772    584    2016-11-21 11:52:00    2016-11-21 11:52:00
46255    21772    851    2016-11-21 02:45:00    2016-11-21 02:45:00
46256    21772    490    2016-11-21 09:15:00    2016-11-21 09:15:00
46257    21772    623    2016-11-21 19:00:00    2016-11-21 19:00:00
46258    21773    851    2016-11-21 11:21:00    2016-11-21 11:21:00
46259    21773    760    2016-11-21 02:04:00    2016-11-21 02:04:00
46260    21773    804    2016-11-21 04:55:00    2016-11-21 04:55:00
46261    21773    501    2016-11-21 15:43:00    2016-11-21 15:43:00
46262    21773    712    2016-11-21 20:09:00    2016-11-21 20:09:00
46263    21774    957    2016-11-21 04:12:00    2016-11-21 04:12:00
46264    21774    820    2016-11-21 12:38:00    2016-11-21 12:38:00
46265    21774    662    2016-11-21 04:59:00    2016-11-21 04:59:00
46266    21774    652    2016-11-21 18:22:00    2016-11-21 18:22:00
46267    21774    850    2016-11-21 03:20:00    2016-11-21 03:20:00
46268    21775    566    2016-11-21 17:36:00    2016-11-21 17:36:00
46269    21775    792    2016-11-21 13:05:00    2016-11-21 13:05:00
46270    21775    894    2016-11-21 07:31:00    2016-11-21 07:31:00
46271    21775    600    2016-11-21 18:45:00    2016-11-21 18:45:00
46272    21775    656    2016-11-21 21:06:00    2016-11-21 21:06:00
46273    21776    731    2016-11-21 01:06:00    2016-11-21 01:06:00
46274    21776    612    2016-11-21 09:52:00    2016-11-21 09:52:00
46275    21776    654    2016-11-21 11:47:00    2016-11-21 11:47:00
46276    21776    814    2016-11-21 01:50:00    2016-11-21 01:50:00
46277    21776    809    2016-11-21 23:21:00    2016-11-21 23:21:00
46278    21777    490    2016-11-21 11:00:00    2016-11-21 11:00:00
46279    21777    592    2016-11-21 11:41:00    2016-11-21 11:41:00
46280    21777    548    2016-11-21 14:42:00    2016-11-21 14:42:00
46281    21777    517    2016-11-21 15:43:00    2016-11-21 15:43:00
46282    21777    626    2016-11-21 09:58:00    2016-11-21 09:58:00
46283    21778    651    2016-11-21 19:17:00    2016-11-21 19:17:00
46284    21778    638    2016-11-21 21:31:00    2016-11-21 21:31:00
46285    21778    894    2016-11-21 08:02:00    2016-11-21 08:02:00
46286    21778    790    2016-11-21 01:47:00    2016-11-21 01:47:00
46287    21778    838    2016-11-21 14:23:00    2016-11-21 14:23:00
46288    21779    662    2016-11-21 08:12:00    2016-11-21 08:12:00
46289    21779    627    2016-11-21 09:24:00    2016-11-21 09:24:00
46290    21779    689    2016-11-21 17:53:00    2016-11-21 17:53:00
46291    21779    919    2016-11-21 16:59:00    2016-11-21 16:59:00
46292    21779    900    2016-11-21 20:23:00    2016-11-21 20:23:00
46293    21780    589    2016-11-21 20:46:00    2016-11-21 20:46:00
46294    21780    831    2016-11-21 10:57:00    2016-11-21 10:57:00
46295    21780    721    2016-11-21 12:16:00    2016-11-21 12:16:00
46296    21780    626    2016-11-21 01:46:00    2016-11-21 01:46:00
46297    21780    675    2016-11-21 09:44:00    2016-11-21 09:44:00
46298    21781    582    2016-11-21 21:00:00    2016-11-21 21:00:00
46299    21781    838    2016-11-21 08:27:00    2016-11-21 08:27:00
46300    21781    469    2016-11-21 09:26:00    2016-11-21 09:26:00
46301    21781    528    2016-11-21 13:16:00    2016-11-21 13:16:00
46302    21781    593    2016-11-21 22:42:00    2016-11-21 22:42:00
46303    21782    796    2016-11-21 21:45:00    2016-11-21 21:45:00
46304    21782    656    2016-11-21 13:00:00    2016-11-21 13:00:00
46305    21782    540    2016-11-21 16:17:00    2016-11-21 16:17:00
46306    21782    928    2016-11-21 05:11:00    2016-11-21 05:11:00
46307    21782    797    2016-11-21 09:03:00    2016-11-21 09:03:00
46308    21783    729    2016-11-21 15:23:00    2016-11-21 15:23:00
46309    21783    865    2016-11-21 21:12:00    2016-11-21 21:12:00
46310    21783    951    2016-11-21 08:56:00    2016-11-21 08:56:00
46311    21783    475    2016-11-21 01:25:00    2016-11-21 01:25:00
46312    21783    937    2016-11-21 18:35:00    2016-11-21 18:35:00
46313    21784    773    2016-11-22 15:49:00    2016-11-22 15:49:00
46314    21784    638    2016-11-22 10:49:00    2016-11-22 10:49:00
46315    21784    547    2016-11-22 07:16:00    2016-11-22 07:16:00
46316    21784    938    2016-11-22 23:48:00    2016-11-22 23:48:00
46317    21784    692    2016-11-22 11:34:00    2016-11-22 11:34:00
46318    21785    796    2016-11-22 09:03:00    2016-11-22 09:03:00
46319    21785    501    2016-11-22 22:42:00    2016-11-22 22:42:00
46320    21785    674    2016-11-22 04:02:00    2016-11-22 04:02:00
46321    21785    677    2016-11-22 18:26:00    2016-11-22 18:26:00
46322    21785    525    2016-11-22 08:43:00    2016-11-22 08:43:00
46323    21786    812    2016-11-22 07:00:00    2016-11-22 07:00:00
46324    21786    662    2016-11-22 22:34:00    2016-11-22 22:34:00
46325    21786    855    2016-11-22 01:21:00    2016-11-22 01:21:00
46326    21786    862    2016-11-22 20:39:00    2016-11-22 20:39:00
46327    21786    475    2016-11-22 20:19:00    2016-11-22 20:19:00
46328    21787    812    2016-11-22 15:12:00    2016-11-22 15:12:00
46329    21787    814    2016-11-22 08:37:00    2016-11-22 08:37:00
46330    21787    655    2016-11-22 15:28:00    2016-11-22 15:28:00
46331    21787    534    2016-11-22 13:17:00    2016-11-22 13:17:00
46332    21787    905    2016-11-22 21:29:00    2016-11-22 21:29:00
46333    21788    594    2016-11-22 09:41:00    2016-11-22 09:41:00
46334    21788    499    2016-11-22 21:34:00    2016-11-22 21:34:00
46335    21788    565    2016-11-22 05:26:00    2016-11-22 05:26:00
46336    21788    625    2016-11-22 11:45:00    2016-11-22 11:45:00
46337    21788    753    2016-11-22 23:38:00    2016-11-22 23:38:00
46338    21789    822    2016-11-22 11:36:00    2016-11-22 11:36:00
46339    21789    813    2016-11-22 04:24:00    2016-11-22 04:24:00
46340    21789    835    2016-11-22 11:39:00    2016-11-22 11:39:00
46341    21789    833    2016-11-22 16:14:00    2016-11-22 16:14:00
46342    21789    761    2016-11-22 16:53:00    2016-11-22 16:53:00
46343    21790    807    2016-11-22 16:34:00    2016-11-22 16:34:00
46344    21790    540    2016-11-22 05:18:00    2016-11-22 05:18:00
46345    21790    622    2016-11-22 12:19:00    2016-11-22 12:19:00
46346    21790    551    2016-11-22 13:44:00    2016-11-22 13:44:00
46347    21790    913    2016-11-22 03:22:00    2016-11-22 03:22:00
46348    21791    841    2016-11-22 08:26:00    2016-11-22 08:26:00
46349    21791    706    2016-11-22 08:04:00    2016-11-22 08:04:00
46350    21791    661    2016-11-22 19:51:00    2016-11-22 19:51:00
46351    21791    677    2016-11-22 17:22:00    2016-11-22 17:22:00
46352    21791    777    2016-11-22 18:27:00    2016-11-22 18:27:00
46353    21792    707    2016-11-22 07:22:00    2016-11-22 07:22:00
46354    21792    697    2016-11-22 16:14:00    2016-11-22 16:14:00
46355    21792    598    2016-11-22 23:37:00    2016-11-22 23:37:00
46356    21792    831    2016-11-22 20:44:00    2016-11-22 20:44:00
46357    21792    628    2016-11-22 10:44:00    2016-11-22 10:44:00
46358    21793    492    2016-11-22 02:48:00    2016-11-22 02:48:00
46359    21793    900    2016-11-22 17:09:00    2016-11-22 17:09:00
46360    21793    557    2016-11-22 22:11:00    2016-11-22 22:11:00
46361    21793    623    2016-11-22 21:17:00    2016-11-22 21:17:00
46362    21793    802    2016-11-22 03:03:00    2016-11-22 03:03:00
46363    21794    671    2016-11-22 16:41:00    2016-11-22 16:41:00
46364    21794    933    2016-11-22 08:15:00    2016-11-22 08:15:00
46365    21794    879    2016-11-22 06:42:00    2016-11-22 06:42:00
46366    21794    891    2016-11-22 17:27:00    2016-11-22 17:27:00
46367    21794    857    2016-11-22 10:40:00    2016-11-22 10:40:00
46368    21795    939    2016-11-22 18:50:00    2016-11-22 18:50:00
46369    21795    676    2016-11-22 23:30:00    2016-11-22 23:30:00
46370    21795    708    2016-11-22 17:16:00    2016-11-22 17:16:00
46371    21795    913    2016-11-22 03:08:00    2016-11-22 03:08:00
46372    21795    468    2016-11-22 14:42:00    2016-11-22 14:42:00
46373    21796    593    2016-11-22 10:54:00    2016-11-22 10:54:00
46374    21796    937    2016-11-22 08:10:00    2016-11-22 08:10:00
46375    21796    886    2016-11-22 13:34:00    2016-11-22 13:34:00
46376    21796    511    2016-11-22 03:29:00    2016-11-22 03:29:00
46377    21796    631    2016-11-22 20:07:00    2016-11-22 20:07:00
46378    21797    580    2016-11-22 11:33:00    2016-11-22 11:33:00
46379    21797    753    2016-11-22 11:19:00    2016-11-22 11:19:00
46380    21797    466    2016-11-22 13:39:00    2016-11-22 13:39:00
46381    21797    951    2016-11-22 11:00:00    2016-11-22 11:00:00
46382    21797    677    2016-11-22 02:34:00    2016-11-22 02:34:00
46383    21798    584    2016-11-22 12:05:00    2016-11-22 12:05:00
46384    21798    863    2016-11-22 21:51:00    2016-11-22 21:51:00
46385    21798    858    2016-11-22 19:18:00    2016-11-22 19:18:00
46386    21798    525    2016-11-22 21:20:00    2016-11-22 21:20:00
46387    21798    693    2016-11-22 18:37:00    2016-11-22 18:37:00
46388    21799    612    2016-11-22 06:36:00    2016-11-22 06:36:00
46389    21799    571    2016-11-22 04:30:00    2016-11-22 04:30:00
46390    21799    599    2016-11-22 12:58:00    2016-11-22 12:58:00
46391    21799    636    2016-11-22 03:04:00    2016-11-22 03:04:00
46392    21799    617    2016-11-22 13:37:00    2016-11-22 13:37:00
46393    21800    596    2016-11-22 20:53:00    2016-11-22 20:53:00
46394    21800    737    2016-11-22 16:25:00    2016-11-22 16:25:00
46395    21800    619    2016-11-22 07:53:00    2016-11-22 07:53:00
46396    21800    529    2016-11-22 17:32:00    2016-11-22 17:32:00
46397    21800    820    2016-11-22 21:26:00    2016-11-22 21:26:00
46398    21801    675    2016-11-22 12:26:00    2016-11-22 12:26:00
46399    21801    554    2016-11-22 18:27:00    2016-11-22 18:27:00
46400    21801    725    2016-11-22 23:02:00    2016-11-22 23:02:00
46401    21801    841    2016-11-22 07:51:00    2016-11-22 07:51:00
46402    21801    735    2016-11-22 14:05:00    2016-11-22 14:05:00
46403    21802    790    2016-11-22 10:30:00    2016-11-22 10:30:00
46404    21802    846    2016-11-22 09:40:00    2016-11-22 09:40:00
46405    21802    733    2016-11-22 17:08:00    2016-11-22 17:08:00
46406    21802    872    2016-11-22 15:42:00    2016-11-22 15:42:00
46407    21802    961    2016-11-22 03:10:00    2016-11-22 03:10:00
46408    21803    932    2016-11-22 16:01:00    2016-11-22 16:01:00
46409    21803    702    2016-11-22 02:39:00    2016-11-22 02:39:00
46410    21803    873    2016-11-22 12:52:00    2016-11-22 12:52:00
46411    21803    954    2016-11-22 02:33:00    2016-11-22 02:33:00
46412    21803    613    2016-11-22 23:27:00    2016-11-22 23:27:00
46413    21804    674    2016-11-22 13:11:00    2016-11-22 13:11:00
46414    21804    513    2016-11-22 18:52:00    2016-11-22 18:52:00
46415    21804    756    2016-11-22 05:06:00    2016-11-22 05:06:00
46416    21804    582    2016-11-22 12:06:00    2016-11-22 12:06:00
46417    21804    841    2016-11-22 14:40:00    2016-11-22 14:40:00
46418    21805    586    2016-11-22 10:47:00    2016-11-22 10:47:00
46419    21805    749    2016-11-22 18:38:00    2016-11-22 18:38:00
46420    21805    862    2016-11-22 07:06:00    2016-11-22 07:06:00
46421    21805    766    2016-11-22 05:26:00    2016-11-22 05:26:00
46422    21805    847    2016-11-22 06:53:00    2016-11-22 06:53:00
46423    21806    606    2016-11-22 17:12:00    2016-11-22 17:12:00
46424    21806    802    2016-11-22 07:24:00    2016-11-22 07:24:00
46425    21806    851    2016-11-22 13:52:00    2016-11-22 13:52:00
46426    21806    469    2016-11-22 14:35:00    2016-11-22 14:35:00
46427    21806    833    2016-11-22 08:59:00    2016-11-22 08:59:00
46428    21807    887    2016-11-22 17:03:00    2016-11-22 17:03:00
46429    21807    572    2016-11-22 05:32:00    2016-11-22 05:32:00
46430    21807    572    2016-11-22 04:28:00    2016-11-22 04:28:00
46431    21807    748    2016-11-22 09:03:00    2016-11-22 09:03:00
46432    21807    852    2016-11-22 15:15:00    2016-11-22 15:15:00
46433    21808    666    2016-11-22 15:37:00    2016-11-22 15:37:00
46434    21808    707    2016-11-22 03:22:00    2016-11-22 03:22:00
46435    21808    621    2016-11-22 22:48:00    2016-11-22 22:48:00
46436    21808    597    2016-11-22 04:50:00    2016-11-22 04:50:00
46437    21808    530    2016-11-22 02:36:00    2016-11-22 02:36:00
46438    21809    769    2016-11-22 03:42:00    2016-11-22 03:42:00
46439    21809    791    2016-11-22 17:44:00    2016-11-22 17:44:00
46440    21809    831    2016-11-22 21:00:00    2016-11-22 21:00:00
46441    21809    595    2016-11-22 03:57:00    2016-11-22 03:57:00
46442    21809    711    2016-11-22 03:32:00    2016-11-22 03:32:00
46443    21810    779    2016-11-22 01:25:00    2016-11-22 01:25:00
46444    21810    690    2016-11-22 20:13:00    2016-11-22 20:13:00
46445    21810    749    2016-11-22 03:17:00    2016-11-22 03:17:00
46446    21810    864    2016-11-22 12:38:00    2016-11-22 12:38:00
46447    21810    588    2016-11-22 21:16:00    2016-11-22 21:16:00
46448    21811    476    2016-11-22 08:15:00    2016-11-22 08:15:00
46449    21811    654    2016-11-22 19:29:00    2016-11-22 19:29:00
46450    21811    747    2016-11-22 19:25:00    2016-11-22 19:25:00
46451    21811    665    2016-11-22 14:25:00    2016-11-22 14:25:00
46452    21811    845    2016-11-22 07:31:00    2016-11-22 07:31:00
46453    21812    708    2016-11-22 04:12:00    2016-11-22 04:12:00
46454    21812    536    2016-11-22 22:36:00    2016-11-22 22:36:00
46455    21812    862    2016-11-22 08:34:00    2016-11-22 08:34:00
46456    21812    535    2016-11-22 19:51:00    2016-11-22 19:51:00
46457    21812    952    2016-11-22 08:36:00    2016-11-22 08:36:00
46458    21813    531    2016-11-22 07:53:00    2016-11-22 07:53:00
46459    21813    936    2016-11-22 15:59:00    2016-11-22 15:59:00
46460    21813    508    2016-11-22 23:50:00    2016-11-22 23:50:00
46461    21813    745    2016-11-22 05:20:00    2016-11-22 05:20:00
46462    21813    858    2016-11-22 15:06:00    2016-11-22 15:06:00
46463    21814    788    2016-11-22 08:54:00    2016-11-22 08:54:00
46464    21814    841    2016-11-22 11:32:00    2016-11-22 11:32:00
46465    21814    809    2016-11-22 03:23:00    2016-11-22 03:23:00
46466    21814    559    2016-11-22 12:11:00    2016-11-22 12:11:00
46467    21814    606    2016-11-22 01:36:00    2016-11-22 01:36:00
46468    21815    680    2016-11-22 01:52:00    2016-11-22 01:52:00
46469    21815    612    2016-11-22 21:23:00    2016-11-22 21:23:00
46470    21815    757    2016-11-22 22:10:00    2016-11-22 22:10:00
46471    21815    841    2016-11-22 22:19:00    2016-11-22 22:19:00
46472    21815    552    2016-11-22 12:53:00    2016-11-22 12:53:00
46473    21816    467    2016-11-22 04:42:00    2016-11-22 04:42:00
46474    21816    925    2016-11-22 09:10:00    2016-11-22 09:10:00
46475    21816    484    2016-11-22 23:21:00    2016-11-22 23:21:00
46476    21816    756    2016-11-22 04:01:00    2016-11-22 04:01:00
46477    21816    559    2016-11-22 06:41:00    2016-11-22 06:41:00
46478    21817    839    2016-11-22 23:39:00    2016-11-22 23:39:00
46479    21817    832    2016-11-22 05:19:00    2016-11-22 05:19:00
46480    21817    657    2016-11-22 06:52:00    2016-11-22 06:52:00
46481    21817    626    2016-11-22 06:40:00    2016-11-22 06:40:00
46482    21817    854    2016-11-22 10:56:00    2016-11-22 10:56:00
46483    21818    538    2016-11-22 09:02:00    2016-11-22 09:02:00
46484    21818    526    2016-11-22 16:27:00    2016-11-22 16:27:00
46485    21818    676    2016-11-22 13:33:00    2016-11-22 13:33:00
46486    21818    925    2016-11-22 17:24:00    2016-11-22 17:24:00
46487    21818    595    2016-11-22 13:42:00    2016-11-22 13:42:00
46488    21819    960    2016-11-22 03:01:00    2016-11-22 03:01:00
46489    21819    615    2016-11-22 23:00:00    2016-11-22 23:00:00
46490    21819    756    2016-11-22 17:07:00    2016-11-22 17:07:00
46491    21819    778    2016-11-22 23:03:00    2016-11-22 23:03:00
46492    21819    715    2016-11-22 08:38:00    2016-11-22 08:38:00
46493    21820    690    2016-11-22 16:05:00    2016-11-22 16:05:00
46494    21820    539    2016-11-22 08:03:00    2016-11-22 08:03:00
46495    21820    754    2016-11-22 04:38:00    2016-11-22 04:38:00
46496    21820    822    2016-11-22 14:23:00    2016-11-22 14:23:00
46497    21820    650    2016-11-22 09:56:00    2016-11-22 09:56:00
46498    21821    911    2016-11-22 13:04:00    2016-11-22 13:04:00
46499    21821    623    2016-11-22 05:20:00    2016-11-22 05:20:00
46500    21821    573    2016-11-22 16:54:00    2016-11-22 16:54:00
46501    21821    956    2016-11-22 05:57:00    2016-11-22 05:57:00
46502    21821    850    2016-11-22 10:00:00    2016-11-22 10:00:00
46503    21822    644    2016-11-22 04:19:00    2016-11-22 04:19:00
46504    21822    715    2016-11-22 13:30:00    2016-11-22 13:30:00
46505    21822    577    2016-11-22 11:35:00    2016-11-22 11:35:00
46506    21822    531    2016-11-22 11:22:00    2016-11-22 11:22:00
46507    21822    643    2016-11-22 09:38:00    2016-11-22 09:38:00
46508    21823    679    2016-11-22 12:13:00    2016-11-22 12:13:00
46509    21823    752    2016-11-22 16:42:00    2016-11-22 16:42:00
46510    21823    901    2016-11-22 13:58:00    2016-11-22 13:58:00
46511    21823    734    2016-11-22 06:15:00    2016-11-22 06:15:00
46512    21823    556    2016-11-22 19:56:00    2016-11-22 19:56:00
46513    21824    589    2016-11-22 09:34:00    2016-11-22 09:34:00
46514    21824    467    2016-11-22 19:21:00    2016-11-22 19:21:00
46515    21824    797    2016-11-22 05:00:00    2016-11-22 05:00:00
46516    21824    516    2016-11-22 22:03:00    2016-11-22 22:03:00
46517    21824    673    2016-11-22 11:10:00    2016-11-22 11:10:00
46518    21825    530    2016-11-22 09:09:00    2016-11-22 09:09:00
46519    21825    617    2016-11-22 06:44:00    2016-11-22 06:44:00
46520    21825    821    2016-11-22 04:14:00    2016-11-22 04:14:00
46521    21825    529    2016-11-22 18:42:00    2016-11-22 18:42:00
46522    21825    889    2016-11-22 15:46:00    2016-11-22 15:46:00
46523    21826    484    2016-11-22 09:59:00    2016-11-22 09:59:00
46524    21826    495    2016-11-22 22:42:00    2016-11-22 22:42:00
46525    21826    607    2016-11-22 01:56:00    2016-11-22 01:56:00
46526    21826    873    2016-11-22 07:50:00    2016-11-22 07:50:00
46527    21826    932    2016-11-22 04:06:00    2016-11-22 04:06:00
46528    21827    869    2016-11-22 17:33:00    2016-11-22 17:33:00
46529    21827    715    2016-11-22 07:37:00    2016-11-22 07:37:00
46530    21827    933    2016-11-22 19:27:00    2016-11-22 19:27:00
46531    21827    943    2016-11-22 19:12:00    2016-11-22 19:12:00
46532    21827    792    2016-11-22 07:30:00    2016-11-22 07:30:00
46533    21828    470    2016-11-22 10:07:00    2016-11-22 10:07:00
46534    21828    778    2016-11-22 19:29:00    2016-11-22 19:29:00
46535    21828    934    2016-11-22 16:35:00    2016-11-22 16:35:00
46536    21828    630    2016-11-22 02:07:00    2016-11-22 02:07:00
46537    21828    930    2016-11-22 19:05:00    2016-11-22 19:05:00
46538    21829    655    2016-11-22 04:24:00    2016-11-22 04:24:00
46539    21829    697    2016-11-22 09:52:00    2016-11-22 09:52:00
46540    21829    766    2016-11-22 10:41:00    2016-11-22 10:41:00
46541    21829    799    2016-11-22 14:30:00    2016-11-22 14:30:00
46542    21829    616    2016-11-22 15:34:00    2016-11-22 15:34:00
46543    21830    882    2016-11-22 09:36:00    2016-11-22 09:36:00
46544    21830    897    2016-11-22 16:40:00    2016-11-22 16:40:00
46545    21830    651    2016-11-22 20:04:00    2016-11-22 20:04:00
46546    21830    693    2016-11-22 13:21:00    2016-11-22 13:21:00
46547    21830    840    2016-11-22 15:53:00    2016-11-22 15:53:00
46548    21831    643    2016-11-22 04:45:00    2016-11-22 04:45:00
46549    21831    693    2016-11-22 10:14:00    2016-11-22 10:14:00
46550    21831    823    2016-11-22 06:11:00    2016-11-22 06:11:00
46551    21831    830    2016-11-22 20:27:00    2016-11-22 20:27:00
46552    21831    920    2016-11-22 09:01:00    2016-11-22 09:01:00
46553    21832    903    2016-11-22 20:54:00    2016-11-22 20:54:00
46554    21832    883    2016-11-22 22:00:00    2016-11-22 22:00:00
46555    21832    561    2016-11-22 11:35:00    2016-11-22 11:35:00
46556    21832    909    2016-11-22 16:22:00    2016-11-22 16:22:00
46557    21832    774    2016-11-22 09:22:00    2016-11-22 09:22:00
46558    21833    574    2016-11-22 21:26:00    2016-11-22 21:26:00
46559    21833    499    2016-11-22 14:10:00    2016-11-22 14:10:00
46560    21833    671    2016-11-22 18:09:00    2016-11-22 18:09:00
46561    21833    828    2016-11-22 02:55:00    2016-11-22 02:55:00
46562    21833    692    2016-11-22 17:07:00    2016-11-22 17:07:00
46563    21834    735    2016-11-22 22:07:00    2016-11-22 22:07:00
46564    21834    875    2016-11-22 07:24:00    2016-11-22 07:24:00
46565    21834    907    2016-11-22 20:52:00    2016-11-22 20:52:00
46566    21834    483    2016-11-22 17:33:00    2016-11-22 17:33:00
46567    21834    599    2016-11-22 18:21:00    2016-11-22 18:21:00
46568    21835    885    2016-11-22 23:56:00    2016-11-22 23:56:00
46569    21835    719    2016-11-22 10:22:00    2016-11-22 10:22:00
46570    21835    473    2016-11-22 04:39:00    2016-11-22 04:39:00
46571    21835    947    2016-11-22 19:27:00    2016-11-22 19:27:00
46572    21835    668    2016-11-22 16:28:00    2016-11-22 16:28:00
46573    21836    911    2016-11-22 13:02:00    2016-11-22 13:02:00
46574    21836    579    2016-11-22 22:00:00    2016-11-22 22:00:00
46575    21836    881    2016-11-22 16:26:00    2016-11-22 16:26:00
46576    21836    931    2016-11-22 23:57:00    2016-11-22 23:57:00
46577    21836    928    2016-11-22 20:24:00    2016-11-22 20:24:00
46578    21837    796    2016-11-22 21:53:00    2016-11-22 21:53:00
46579    21837    742    2016-11-22 09:41:00    2016-11-22 09:41:00
46580    21837    681    2016-11-22 14:55:00    2016-11-22 14:55:00
46581    21837    604    2016-11-22 05:23:00    2016-11-22 05:23:00
46582    21837    931    2016-11-22 21:54:00    2016-11-22 21:54:00
46583    21838    513    2016-11-22 13:31:00    2016-11-22 13:31:00
46584    21838    730    2016-11-22 09:01:00    2016-11-22 09:01:00
46585    21838    603    2016-11-22 22:59:00    2016-11-22 22:59:00
46586    21838    693    2016-11-22 13:17:00    2016-11-22 13:17:00
46587    21838    679    2016-11-22 12:57:00    2016-11-22 12:57:00
46588    21839    946    2016-11-22 22:36:00    2016-11-22 22:36:00
46589    21839    692    2016-11-22 10:57:00    2016-11-22 10:57:00
46590    21839    714    2016-11-22 18:09:00    2016-11-22 18:09:00
46591    21839    906    2016-11-22 02:32:00    2016-11-22 02:32:00
46592    21839    881    2016-11-22 02:58:00    2016-11-22 02:58:00
46593    21840    909    2016-11-22 16:29:00    2016-11-22 16:29:00
46594    21840    489    2016-11-22 22:56:00    2016-11-22 22:56:00
46595    21840    481    2016-11-22 21:17:00    2016-11-22 21:17:00
46596    21840    613    2016-11-22 14:03:00    2016-11-22 14:03:00
46597    21840    631    2016-11-22 20:32:00    2016-11-22 20:32:00
46598    21841    887    2016-11-22 04:33:00    2016-11-22 04:33:00
46599    21841    513    2016-11-22 11:02:00    2016-11-22 11:02:00
46600    21841    592    2016-11-22 05:34:00    2016-11-22 05:34:00
46601    21841    471    2016-11-22 22:15:00    2016-11-22 22:15:00
46602    21841    656    2016-11-22 01:55:00    2016-11-22 01:55:00
46603    21842    690    2016-11-22 11:57:00    2016-11-22 11:57:00
46604    21842    619    2016-11-22 18:25:00    2016-11-22 18:25:00
46605    21842    856    2016-11-22 17:40:00    2016-11-22 17:40:00
46606    21842    942    2016-11-22 03:18:00    2016-11-22 03:18:00
46607    21842    760    2016-11-22 15:00:00    2016-11-22 15:00:00
46608    21843    910    2016-11-22 01:01:00    2016-11-22 01:01:00
46609    21843    718    2016-11-22 18:05:00    2016-11-22 18:05:00
46610    21843    519    2016-11-22 22:06:00    2016-11-22 22:06:00
46611    21843    815    2016-11-22 18:39:00    2016-11-22 18:39:00
46612    21843    568    2016-11-22 19:51:00    2016-11-22 19:51:00
46613    21844    739    2016-11-22 02:08:00    2016-11-22 02:08:00
46614    21844    846    2016-11-22 05:04:00    2016-11-22 05:04:00
46615    21844    590    2016-11-22 15:26:00    2016-11-22 15:26:00
46616    21844    844    2016-11-22 22:51:00    2016-11-22 22:51:00
46617    21844    887    2016-11-22 19:51:00    2016-11-22 19:51:00
46618    21845    707    2016-11-22 05:03:00    2016-11-22 05:03:00
46619    21845    465    2016-11-22 07:29:00    2016-11-22 07:29:00
46620    21845    657    2016-11-22 02:01:00    2016-11-22 02:01:00
46621    21845    608    2016-11-22 21:56:00    2016-11-22 21:56:00
46622    21845    835    2016-11-22 08:01:00    2016-11-22 08:01:00
46623    21846    837    2016-11-22 19:39:00    2016-11-22 19:39:00
46624    21846    689    2016-11-22 07:54:00    2016-11-22 07:54:00
46625    21846    620    2016-11-22 16:14:00    2016-11-22 16:14:00
46626    21846    643    2016-11-22 16:32:00    2016-11-22 16:32:00
46627    21846    848    2016-11-22 06:26:00    2016-11-22 06:26:00
46628    21847    539    2016-11-22 17:10:00    2016-11-22 17:10:00
46629    21847    844    2016-11-22 02:00:00    2016-11-22 02:00:00
46630    21847    791    2016-11-22 09:30:00    2016-11-22 09:30:00
46631    21847    545    2016-11-22 06:49:00    2016-11-22 06:49:00
46632    21847    920    2016-11-22 04:26:00    2016-11-22 04:26:00
46633    21848    568    2016-11-22 07:35:00    2016-11-22 07:35:00
46634    21848    498    2016-11-22 21:31:00    2016-11-22 21:31:00
46635    21848    761    2016-11-22 23:06:00    2016-11-22 23:06:00
46636    21848    660    2016-11-22 10:10:00    2016-11-22 10:10:00
46637    21848    743    2016-11-22 12:05:00    2016-11-22 12:05:00
46638    21849    949    2016-11-22 04:00:00    2016-11-22 04:00:00
46639    21849    611    2016-11-22 03:29:00    2016-11-22 03:29:00
46640    21849    842    2016-11-22 01:05:00    2016-11-22 01:05:00
46641    21849    764    2016-11-22 05:46:00    2016-11-22 05:46:00
46642    21849    729    2016-11-22 02:56:00    2016-11-22 02:56:00
46643    21850    706    2016-11-22 06:35:00    2016-11-22 06:35:00
46644    21850    835    2016-11-22 06:36:00    2016-11-22 06:36:00
46645    21850    932    2016-11-22 11:56:00    2016-11-22 11:56:00
46646    21850    833    2016-11-22 14:44:00    2016-11-22 14:44:00
46647    21850    712    2016-11-22 23:36:00    2016-11-22 23:36:00
46648    21851    863    2016-11-22 14:41:00    2016-11-22 14:41:00
46649    21851    531    2016-11-22 12:32:00    2016-11-22 12:32:00
46650    21851    627    2016-11-22 11:53:00    2016-11-22 11:53:00
46651    21851    647    2016-11-22 17:52:00    2016-11-22 17:52:00
46652    21851    593    2016-11-22 06:46:00    2016-11-22 06:46:00
46653    21852    601    2016-11-22 04:57:00    2016-11-22 04:57:00
46654    21852    598    2016-11-22 16:11:00    2016-11-22 16:11:00
46655    21852    783    2016-11-22 06:15:00    2016-11-22 06:15:00
46656    21852    829    2016-11-22 23:27:00    2016-11-22 23:27:00
46657    21852    525    2016-11-22 04:27:00    2016-11-22 04:27:00
46658    21853    509    2016-11-22 08:38:00    2016-11-22 08:38:00
46659    21853    602    2016-11-22 22:47:00    2016-11-22 22:47:00
46660    21853    556    2016-11-22 23:36:00    2016-11-22 23:36:00
46661    21853    552    2016-11-22 09:20:00    2016-11-22 09:20:00
46662    21853    703    2016-11-22 03:33:00    2016-11-22 03:33:00
46663    21854    919    2016-11-22 02:24:00    2016-11-22 02:24:00
46664    21854    573    2016-11-22 08:50:00    2016-11-22 08:50:00
46665    21854    497    2016-11-22 11:42:00    2016-11-22 11:42:00
46666    21854    468    2016-11-22 14:32:00    2016-11-22 14:32:00
46667    21854    631    2016-11-22 12:04:00    2016-11-22 12:04:00
46668    21855    818    2016-11-22 18:30:00    2016-11-22 18:30:00
46669    21855    556    2016-11-22 12:39:00    2016-11-22 12:39:00
46670    21855    642    2016-11-22 18:04:00    2016-11-22 18:04:00
46671    21855    942    2016-11-22 22:22:00    2016-11-22 22:22:00
46672    21855    588    2016-11-22 17:00:00    2016-11-22 17:00:00
46673    21856    725    2016-11-22 01:40:00    2016-11-22 01:40:00
46674    21856    935    2016-11-22 13:04:00    2016-11-22 13:04:00
46675    21856    804    2016-11-22 13:05:00    2016-11-22 13:05:00
46676    21856    495    2016-11-22 01:39:00    2016-11-22 01:39:00
46677    21856    557    2016-11-22 19:23:00    2016-11-22 19:23:00
46678    21857    516    2016-11-22 21:00:00    2016-11-22 21:00:00
46679    21857    741    2016-11-22 22:08:00    2016-11-22 22:08:00
46680    21857    493    2016-11-22 05:57:00    2016-11-22 05:57:00
46681    21857    807    2016-11-22 13:12:00    2016-11-22 13:12:00
46682    21857    799    2016-11-22 10:01:00    2016-11-22 10:01:00
46683    21858    779    2016-11-22 15:14:00    2016-11-22 15:14:00
46684    21858    806    2016-11-22 03:26:00    2016-11-22 03:26:00
46685    21858    589    2016-11-22 01:52:00    2016-11-22 01:52:00
46686    21858    583    2016-11-22 18:48:00    2016-11-22 18:48:00
46687    21858    749    2016-11-22 19:24:00    2016-11-22 19:24:00
46688    21859    624    2016-11-22 19:54:00    2016-11-22 19:54:00
46689    21859    588    2016-11-22 03:15:00    2016-11-22 03:15:00
46690    21859    778    2016-11-22 13:40:00    2016-11-22 13:40:00
46691    21859    860    2016-11-22 10:03:00    2016-11-22 10:03:00
46692    21859    959    2016-11-22 22:48:00    2016-11-22 22:48:00
46693    21860    532    2016-11-22 11:28:00    2016-11-22 11:28:00
46694    21860    571    2016-11-22 08:25:00    2016-11-22 08:25:00
46695    21860    532    2016-11-22 02:07:00    2016-11-22 02:07:00
46696    21860    597    2016-11-22 19:12:00    2016-11-22 19:12:00
46697    21860    555    2016-11-22 18:50:00    2016-11-22 18:50:00
46698    21861    745    2016-11-22 14:37:00    2016-11-22 14:37:00
46699    21861    935    2016-11-22 20:11:00    2016-11-22 20:11:00
46700    21861    499    2016-11-22 05:00:00    2016-11-22 05:00:00
46701    21861    895    2016-11-22 16:42:00    2016-11-22 16:42:00
46702    21861    920    2016-11-22 16:00:00    2016-11-22 16:00:00
46703    21862    906    2016-11-22 23:22:00    2016-11-22 23:22:00
46704    21862    794    2016-11-22 05:32:00    2016-11-22 05:32:00
46705    21862    903    2016-11-22 08:57:00    2016-11-22 08:57:00
46706    21862    769    2016-11-22 16:47:00    2016-11-22 16:47:00
46707    21862    672    2016-11-22 03:22:00    2016-11-22 03:22:00
46708    21863    779    2016-11-23 02:29:00    2016-11-23 02:29:00
46709    21863    599    2016-11-23 20:02:00    2016-11-23 20:02:00
46710    21863    660    2016-11-23 06:23:00    2016-11-23 06:23:00
46711    21863    566    2016-11-23 20:34:00    2016-11-23 20:34:00
46712    21863    606    2016-11-23 10:51:00    2016-11-23 10:51:00
46713    21864    825    2016-11-23 08:51:00    2016-11-23 08:51:00
46714    21864    541    2016-11-23 19:41:00    2016-11-23 19:41:00
46715    21864    653    2016-11-23 23:00:00    2016-11-23 23:00:00
46716    21864    612    2016-11-23 18:49:00    2016-11-23 18:49:00
46717    21864    805    2016-11-23 15:11:00    2016-11-23 15:11:00
46718    21865    900    2016-11-23 07:00:00    2016-11-23 07:00:00
46719    21865    961    2016-11-23 19:47:00    2016-11-23 19:47:00
46720    21865    626    2016-11-23 10:08:00    2016-11-23 10:08:00
46721    21865    822    2016-11-23 15:10:00    2016-11-23 15:10:00
46722    21865    642    2016-11-23 04:17:00    2016-11-23 04:17:00
46723    21866    502    2016-11-23 21:43:00    2016-11-23 21:43:00
46724    21866    628    2016-11-23 03:07:00    2016-11-23 03:07:00
46725    21866    499    2016-11-23 20:32:00    2016-11-23 20:32:00
46726    21866    766    2016-11-23 03:27:00    2016-11-23 03:27:00
46727    21866    550    2016-11-23 11:44:00    2016-11-23 11:44:00
46728    21867    754    2016-11-23 04:11:00    2016-11-23 04:11:00
46729    21867    833    2016-11-23 16:54:00    2016-11-23 16:54:00
46730    21867    912    2016-11-23 01:41:00    2016-11-23 01:41:00
46731    21867    492    2016-11-23 22:54:00    2016-11-23 22:54:00
46732    21867    723    2016-11-23 09:17:00    2016-11-23 09:17:00
46733    21868    498    2016-11-23 15:33:00    2016-11-23 15:33:00
46734    21868    683    2016-11-23 05:44:00    2016-11-23 05:44:00
46735    21868    585    2016-11-23 11:17:00    2016-11-23 11:17:00
46736    21868    571    2016-11-23 03:16:00    2016-11-23 03:16:00
46737    21868    692    2016-11-23 22:05:00    2016-11-23 22:05:00
46738    21869    648    2016-11-23 17:56:00    2016-11-23 17:56:00
46739    21869    828    2016-11-23 20:40:00    2016-11-23 20:40:00
46740    21869    857    2016-11-23 02:40:00    2016-11-23 02:40:00
46741    21869    934    2016-11-23 21:21:00    2016-11-23 21:21:00
46742    21869    542    2016-11-23 07:07:00    2016-11-23 07:07:00
46743    21870    839    2016-11-23 02:12:00    2016-11-23 02:12:00
46744    21870    931    2016-11-23 07:52:00    2016-11-23 07:52:00
46745    21870    506    2016-11-23 13:41:00    2016-11-23 13:41:00
46746    21870    577    2016-11-23 03:54:00    2016-11-23 03:54:00
46747    21870    804    2016-11-23 03:19:00    2016-11-23 03:19:00
46748    21871    835    2016-11-23 05:40:00    2016-11-23 05:40:00
46749    21871    758    2016-11-23 22:00:00    2016-11-23 22:00:00
46750    21871    526    2016-11-23 02:00:00    2016-11-23 02:00:00
46751    21871    900    2016-11-23 13:11:00    2016-11-23 13:11:00
46752    21871    945    2016-11-23 09:57:00    2016-11-23 09:57:00
46753    21872    869    2016-11-23 13:22:00    2016-11-23 13:22:00
46754    21872    945    2016-11-23 17:36:00    2016-11-23 17:36:00
46755    21872    835    2016-11-23 16:43:00    2016-11-23 16:43:00
46756    21872    867    2016-11-23 06:48:00    2016-11-23 06:48:00
46757    21872    766    2016-11-23 18:24:00    2016-11-23 18:24:00
46758    21873    860    2016-11-23 06:36:00    2016-11-23 06:36:00
46759    21873    582    2016-11-23 03:15:00    2016-11-23 03:15:00
46760    21873    896    2016-11-23 22:59:00    2016-11-23 22:59:00
46761    21873    745    2016-11-23 19:14:00    2016-11-23 19:14:00
46762    21873    739    2016-11-23 03:28:00    2016-11-23 03:28:00
46763    21874    528    2016-11-23 17:21:00    2016-11-23 17:21:00
46764    21874    746    2016-11-23 21:32:00    2016-11-23 21:32:00
46765    21874    608    2016-11-23 11:13:00    2016-11-23 11:13:00
46766    21874    696    2016-11-23 02:50:00    2016-11-23 02:50:00
46767    21874    721    2016-11-23 21:21:00    2016-11-23 21:21:00
46768    21875    483    2016-11-23 22:11:00    2016-11-23 22:11:00
46769    21875    873    2016-11-23 13:08:00    2016-11-23 13:08:00
46770    21875    903    2016-11-23 22:25:00    2016-11-23 22:25:00
46771    21875    654    2016-11-23 18:37:00    2016-11-23 18:37:00
46772    21875    559    2016-11-23 11:02:00    2016-11-23 11:02:00
46773    21876    763    2016-11-23 11:10:00    2016-11-23 11:10:00
46774    21876    754    2016-11-23 18:37:00    2016-11-23 18:37:00
46775    21876    926    2016-11-23 17:45:00    2016-11-23 17:45:00
46776    21876    478    2016-11-23 06:10:00    2016-11-23 06:10:00
46777    21876    860    2016-11-23 07:36:00    2016-11-23 07:36:00
46778    21877    530    2016-11-23 22:14:00    2016-11-23 22:14:00
46779    21877    712    2016-11-23 18:11:00    2016-11-23 18:11:00
46780    21877    888    2016-11-23 12:02:00    2016-11-23 12:02:00
46781    21877    850    2016-11-23 04:21:00    2016-11-23 04:21:00
46782    21877    551    2016-11-23 14:48:00    2016-11-23 14:48:00
46783    21878    687    2016-11-23 05:21:00    2016-11-23 05:21:00
46784    21878    769    2016-11-23 05:21:00    2016-11-23 05:21:00
46785    21878    592    2016-11-23 17:55:00    2016-11-23 17:55:00
46786    21878    568    2016-11-23 23:27:00    2016-11-23 23:27:00
46787    21878    670    2016-11-23 01:52:00    2016-11-23 01:52:00
46788    21879    725    2016-11-23 17:19:00    2016-11-23 17:19:00
46789    21879    742    2016-11-23 22:51:00    2016-11-23 22:51:00
46790    21879    743    2016-11-23 23:19:00    2016-11-23 23:19:00
46791    21879    849    2016-11-23 03:58:00    2016-11-23 03:58:00
46792    21879    543    2016-11-23 11:44:00    2016-11-23 11:44:00
46793    21880    662    2016-11-23 15:26:00    2016-11-23 15:26:00
46794    21880    664    2016-11-23 09:06:00    2016-11-23 09:06:00
46795    21880    889    2016-11-23 02:52:00    2016-11-23 02:52:00
46796    21880    697    2016-11-23 10:10:00    2016-11-23 10:10:00
46797    21880    737    2016-11-23 20:53:00    2016-11-23 20:53:00
46798    21881    547    2016-11-23 12:01:00    2016-11-23 12:01:00
46799    21881    857    2016-11-23 14:53:00    2016-11-23 14:53:00
46800    21881    504    2016-11-23 03:39:00    2016-11-23 03:39:00
46801    21881    779    2016-11-23 12:56:00    2016-11-23 12:56:00
46802    21881    953    2016-11-23 16:08:00    2016-11-23 16:08:00
46803    21882    546    2016-11-23 04:52:00    2016-11-23 04:52:00
46804    21882    707    2016-11-23 12:21:00    2016-11-23 12:21:00
46805    21882    845    2016-11-23 16:24:00    2016-11-23 16:24:00
46806    21882    570    2016-11-23 09:47:00    2016-11-23 09:47:00
46807    21882    650    2016-11-23 10:33:00    2016-11-23 10:33:00
46808    21883    911    2016-11-23 15:03:00    2016-11-23 15:03:00
46809    21883    507    2016-11-23 10:06:00    2016-11-23 10:06:00
46810    21883    663    2016-11-23 20:53:00    2016-11-23 20:53:00
46811    21883    909    2016-11-23 06:32:00    2016-11-23 06:32:00
46812    21883    563    2016-11-23 05:52:00    2016-11-23 05:52:00
46813    21884    844    2016-11-23 23:58:00    2016-11-23 23:58:00
46814    21884    947    2016-11-23 18:29:00    2016-11-23 18:29:00
46815    21884    914    2016-11-23 08:42:00    2016-11-23 08:42:00
46816    21884    679    2016-11-23 02:18:00    2016-11-23 02:18:00
46817    21884    633    2016-11-23 15:16:00    2016-11-23 15:16:00
46818    21885    949    2016-11-23 22:32:00    2016-11-23 22:32:00
46819    21885    553    2016-11-23 22:00:00    2016-11-23 22:00:00
46820    21885    864    2016-11-23 11:43:00    2016-11-23 11:43:00
46821    21885    505    2016-11-23 10:33:00    2016-11-23 10:33:00
46822    21885    717    2016-11-23 13:12:00    2016-11-23 13:12:00
46823    21886    740    2016-11-23 09:14:00    2016-11-23 09:14:00
46824    21886    663    2016-11-23 07:38:00    2016-11-23 07:38:00
46825    21886    659    2016-11-23 20:26:00    2016-11-23 20:26:00
46826    21886    908    2016-11-23 08:53:00    2016-11-23 08:53:00
46827    21886    485    2016-11-23 14:38:00    2016-11-23 14:38:00
46828    21887    481    2016-11-23 05:44:00    2016-11-23 05:44:00
46829    21887    918    2016-11-23 16:59:00    2016-11-23 16:59:00
46830    21887    551    2016-11-23 09:25:00    2016-11-23 09:25:00
46831    21887    563    2016-11-23 08:19:00    2016-11-23 08:19:00
46832    21887    864    2016-11-23 07:44:00    2016-11-23 07:44:00
46833    21888    758    2016-11-23 19:54:00    2016-11-23 19:54:00
46834    21888    741    2016-11-23 09:55:00    2016-11-23 09:55:00
46835    21888    879    2016-11-23 07:14:00    2016-11-23 07:14:00
46836    21888    563    2016-11-23 02:34:00    2016-11-23 02:34:00
46837    21888    708    2016-11-23 10:34:00    2016-11-23 10:34:00
46838    21889    475    2016-11-24 19:15:00    2016-11-24 19:15:00
46839    21889    862    2016-11-24 10:47:00    2016-11-24 10:47:00
46840    21889    913    2016-11-24 12:21:00    2016-11-24 12:21:00
46841    21889    735    2016-11-24 01:48:00    2016-11-24 01:48:00
46842    21889    635    2016-11-24 17:10:00    2016-11-24 17:10:00
46843    21890    604    2016-11-24 18:54:00    2016-11-24 18:54:00
46844    21890    660    2016-11-24 09:32:00    2016-11-24 09:32:00
46845    21890    681    2016-11-24 02:08:00    2016-11-24 02:08:00
46846    21890    573    2016-11-24 10:44:00    2016-11-24 10:44:00
46847    21890    955    2016-11-24 13:23:00    2016-11-24 13:23:00
46848    21891    568    2016-11-24 20:41:00    2016-11-24 20:41:00
46849    21891    501    2016-11-24 23:13:00    2016-11-24 23:13:00
46850    21891    491    2016-11-24 17:42:00    2016-11-24 17:42:00
46851    21891    845    2016-11-24 20:39:00    2016-11-24 20:39:00
46852    21891    875    2016-11-24 14:05:00    2016-11-24 14:05:00
46853    21892    686    2016-11-24 08:23:00    2016-11-24 08:23:00
46854    21892    880    2016-11-24 01:18:00    2016-11-24 01:18:00
46855    21892    710    2016-11-24 11:15:00    2016-11-24 11:15:00
46856    21892    753    2016-11-24 21:10:00    2016-11-24 21:10:00
46857    21892    523    2016-11-24 22:39:00    2016-11-24 22:39:00
46858    21893    642    2016-11-24 12:45:00    2016-11-24 12:45:00
46859    21893    755    2016-11-24 15:26:00    2016-11-24 15:26:00
46860    21893    812    2016-11-24 14:27:00    2016-11-24 14:27:00
46861    21893    773    2016-11-24 14:19:00    2016-11-24 14:19:00
46862    21893    718    2016-11-24 06:01:00    2016-11-24 06:01:00
46863    21894    628    2016-11-24 02:44:00    2016-11-24 02:44:00
46864    21894    738    2016-11-24 05:39:00    2016-11-24 05:39:00
46865    21894    933    2016-11-24 02:48:00    2016-11-24 02:48:00
46866    21894    660    2016-11-24 06:39:00    2016-11-24 06:39:00
46867    21894    602    2016-11-24 08:54:00    2016-11-24 08:54:00
46868    21895    515    2016-11-24 04:50:00    2016-11-24 04:50:00
46869    21895    775    2016-11-24 20:18:00    2016-11-24 20:18:00
46870    21895    820    2016-11-24 09:13:00    2016-11-24 09:13:00
46871    21895    715    2016-11-24 12:46:00    2016-11-24 12:46:00
46872    21895    750    2016-11-24 18:44:00    2016-11-24 18:44:00
46873    21896    633    2016-11-24 15:47:00    2016-11-24 15:47:00
46874    21896    671    2016-11-24 11:34:00    2016-11-24 11:34:00
46875    21896    765    2016-11-24 12:33:00    2016-11-24 12:33:00
46876    21896    722    2016-11-24 18:52:00    2016-11-24 18:52:00
46877    21896    837    2016-11-24 09:31:00    2016-11-24 09:31:00
46878    21897    542    2016-11-24 09:54:00    2016-11-24 09:54:00
46879    21897    464    2016-11-24 12:26:00    2016-11-24 12:26:00
46880    21897    540    2016-11-24 09:14:00    2016-11-24 09:14:00
46881    21897    656    2016-11-24 03:26:00    2016-11-24 03:26:00
46882    21897    917    2016-11-24 03:38:00    2016-11-24 03:38:00
46883    21898    871    2016-11-24 20:05:00    2016-11-24 20:05:00
46884    21898    686    2016-11-24 01:53:00    2016-11-24 01:53:00
46885    21898    636    2016-11-24 19:44:00    2016-11-24 19:44:00
46886    21898    552    2016-11-24 18:48:00    2016-11-24 18:48:00
46887    21898    769    2016-11-24 03:22:00    2016-11-24 03:22:00
46888    21899    867    2016-11-24 18:31:00    2016-11-24 18:31:00
46889    21899    485    2016-11-24 16:17:00    2016-11-24 16:17:00
46890    21899    511    2016-11-24 10:27:00    2016-11-24 10:27:00
46891    21899    888    2016-11-24 03:14:00    2016-11-24 03:14:00
46892    21899    553    2016-11-24 12:04:00    2016-11-24 12:04:00
46893    21900    469    2016-11-24 18:26:00    2016-11-24 18:26:00
46894    21900    805    2016-11-24 23:17:00    2016-11-24 23:17:00
46895    21900    920    2016-11-24 22:03:00    2016-11-24 22:03:00
46896    21900    519    2016-11-24 21:45:00    2016-11-24 21:45:00
46897    21900    505    2016-11-24 04:53:00    2016-11-24 04:53:00
46898    21901    566    2016-11-24 20:29:00    2016-11-24 20:29:00
46899    21901    659    2016-11-24 05:28:00    2016-11-24 05:28:00
46900    21901    788    2016-11-24 07:51:00    2016-11-24 07:51:00
46901    21901    781    2016-11-24 03:07:00    2016-11-24 03:07:00
46902    21901    812    2016-11-24 12:37:00    2016-11-24 12:37:00
46903    21902    701    2016-11-24 06:51:00    2016-11-24 06:51:00
46904    21902    475    2016-11-24 03:05:00    2016-11-24 03:05:00
46905    21902    547    2016-11-24 16:50:00    2016-11-24 16:50:00
46906    21902    914    2016-11-24 20:13:00    2016-11-24 20:13:00
46907    21902    603    2016-11-24 21:23:00    2016-11-24 21:23:00
46908    21903    600    2016-11-24 03:42:00    2016-11-24 03:42:00
46909    21903    570    2016-11-24 15:07:00    2016-11-24 15:07:00
46910    21903    629    2016-11-24 08:09:00    2016-11-24 08:09:00
46911    21903    729    2016-11-24 13:50:00    2016-11-24 13:50:00
46912    21903    737    2016-11-24 01:57:00    2016-11-24 01:57:00
46913    21904    553    2016-11-24 10:07:00    2016-11-24 10:07:00
46914    21904    589    2016-11-24 03:59:00    2016-11-24 03:59:00
46915    21904    541    2016-11-24 18:33:00    2016-11-24 18:33:00
46916    21904    735    2016-11-24 02:25:00    2016-11-24 02:25:00
46917    21904    744    2016-11-24 12:20:00    2016-11-24 12:20:00
46918    21905    696    2016-11-24 16:52:00    2016-11-24 16:52:00
46919    21905    598    2016-11-24 17:44:00    2016-11-24 17:44:00
46920    21905    856    2016-11-24 20:33:00    2016-11-24 20:33:00
46921    21905    579    2016-11-24 09:17:00    2016-11-24 09:17:00
46922    21905    853    2016-11-24 20:13:00    2016-11-24 20:13:00
46923    21906    651    2016-11-24 10:32:00    2016-11-24 10:32:00
46924    21906    573    2016-11-24 11:51:00    2016-11-24 11:51:00
46925    21906    465    2016-11-24 20:13:00    2016-11-24 20:13:00
46926    21906    738    2016-11-24 19:12:00    2016-11-24 19:12:00
46927    21906    695    2016-11-24 15:03:00    2016-11-24 15:03:00
46928    21907    715    2016-11-24 15:10:00    2016-11-24 15:10:00
46929    21907    465    2016-11-24 10:47:00    2016-11-24 10:47:00
46930    21907    634    2016-11-24 09:42:00    2016-11-24 09:42:00
46931    21907    630    2016-11-24 10:23:00    2016-11-24 10:23:00
46932    21907    827    2016-11-24 18:41:00    2016-11-24 18:41:00
46933    21908    699    2016-11-24 04:00:00    2016-11-24 04:00:00
46934    21908    865    2016-11-24 15:11:00    2016-11-24 15:11:00
46935    21908    681    2016-11-24 19:42:00    2016-11-24 19:42:00
46936    21908    734    2016-11-24 07:56:00    2016-11-24 07:56:00
46937    21908    933    2016-11-24 09:33:00    2016-11-24 09:33:00
46938    21909    895    2016-11-24 22:10:00    2016-11-24 22:10:00
46939    21909    927    2016-11-24 01:47:00    2016-11-24 01:47:00
46940    21909    935    2016-11-24 11:16:00    2016-11-24 11:16:00
46941    21909    926    2016-11-24 21:47:00    2016-11-24 21:47:00
46942    21909    514    2016-11-24 07:17:00    2016-11-24 07:17:00
46943    21910    472    2016-11-24 09:19:00    2016-11-24 09:19:00
46944    21910    833    2016-11-24 14:10:00    2016-11-24 14:10:00
46945    21910    783    2016-11-24 08:33:00    2016-11-24 08:33:00
46946    21910    639    2016-11-24 11:59:00    2016-11-24 11:59:00
46947    21910    695    2016-11-24 22:11:00    2016-11-24 22:11:00
46948    21911    834    2016-11-24 01:04:00    2016-11-24 01:04:00
46949    21911    687    2016-11-24 20:18:00    2016-11-24 20:18:00
46950    21911    843    2016-11-24 03:26:00    2016-11-24 03:26:00
46951    21911    731    2016-11-24 23:34:00    2016-11-24 23:34:00
46952    21911    805    2016-11-24 06:57:00    2016-11-24 06:57:00
46953    21912    944    2016-11-24 22:21:00    2016-11-24 22:21:00
46954    21912    670    2016-11-24 14:47:00    2016-11-24 14:47:00
46955    21912    911    2016-11-24 23:29:00    2016-11-24 23:29:00
46956    21912    854    2016-11-24 08:11:00    2016-11-24 08:11:00
46957    21912    911    2016-11-24 13:44:00    2016-11-24 13:44:00
46958    21913    906    2016-11-24 10:07:00    2016-11-24 10:07:00
46959    21913    625    2016-11-24 11:34:00    2016-11-24 11:34:00
46960    21913    602    2016-11-24 11:45:00    2016-11-24 11:45:00
46961    21913    689    2016-11-24 16:59:00    2016-11-24 16:59:00
46962    21913    586    2016-11-24 01:27:00    2016-11-24 01:27:00
46963    21914    660    2016-11-24 18:43:00    2016-11-24 18:43:00
46964    21914    582    2016-11-24 23:11:00    2016-11-24 23:11:00
46965    21914    470    2016-11-24 22:21:00    2016-11-24 22:21:00
46966    21914    514    2016-11-24 06:42:00    2016-11-24 06:42:00
46967    21914    794    2016-11-24 21:04:00    2016-11-24 21:04:00
46968    21915    744    2016-11-24 12:35:00    2016-11-24 12:35:00
46969    21915    553    2016-11-24 14:54:00    2016-11-24 14:54:00
46970    21915    882    2016-11-24 06:05:00    2016-11-24 06:05:00
46971    21915    915    2016-11-24 12:44:00    2016-11-24 12:44:00
46972    21915    614    2016-11-24 13:44:00    2016-11-24 13:44:00
46973    21916    945    2016-11-24 05:35:00    2016-11-24 05:35:00
46974    21916    567    2016-11-24 03:19:00    2016-11-24 03:19:00
46975    21916    949    2016-11-24 12:05:00    2016-11-24 12:05:00
46976    21916    590    2016-11-24 10:12:00    2016-11-24 10:12:00
46977    21916    800    2016-11-24 06:15:00    2016-11-24 06:15:00
46978    21917    506    2016-11-24 02:42:00    2016-11-24 02:42:00
46979    21917    877    2016-11-24 12:10:00    2016-11-24 12:10:00
46980    21917    561    2016-11-24 14:28:00    2016-11-24 14:28:00
46981    21917    491    2016-11-24 14:50:00    2016-11-24 14:50:00
46982    21917    881    2016-11-24 14:32:00    2016-11-24 14:32:00
46983    21918    673    2016-11-24 21:17:00    2016-11-24 21:17:00
46984    21918    491    2016-11-24 18:23:00    2016-11-24 18:23:00
46985    21918    497    2016-11-24 11:57:00    2016-11-24 11:57:00
46986    21918    882    2016-11-24 07:11:00    2016-11-24 07:11:00
46987    21918    545    2016-11-24 21:24:00    2016-11-24 21:24:00
46988    21919    536    2016-11-24 03:48:00    2016-11-24 03:48:00
46989    21919    828    2016-11-24 11:14:00    2016-11-24 11:14:00
46990    21919    617    2016-11-24 10:36:00    2016-11-24 10:36:00
46991    21919    742    2016-11-24 10:16:00    2016-11-24 10:16:00
46992    21919    648    2016-11-24 04:23:00    2016-11-24 04:23:00
46993    21920    694    2016-11-24 20:07:00    2016-11-24 20:07:00
46994    21920    755    2016-11-24 13:10:00    2016-11-24 13:10:00
46995    21920    875    2016-11-24 17:11:00    2016-11-24 17:11:00
46996    21920    520    2016-11-24 19:45:00    2016-11-24 19:45:00
46997    21920    606    2016-11-24 05:08:00    2016-11-24 05:08:00
46998    21921    709    2016-11-24 06:53:00    2016-11-24 06:53:00
46999    21921    516    2016-11-24 07:46:00    2016-11-24 07:46:00
47000    21921    774    2016-11-24 16:05:00    2016-11-24 16:05:00
47001    21921    611    2016-11-24 23:00:00    2016-11-24 23:00:00
47002    21921    801    2016-11-24 05:33:00    2016-11-24 05:33:00
47003    21922    909    2016-11-24 21:25:00    2016-11-24 21:25:00
47004    21922    717    2016-11-24 09:43:00    2016-11-24 09:43:00
47005    21922    527    2016-11-24 15:17:00    2016-11-24 15:17:00
47006    21922    588    2016-11-24 21:32:00    2016-11-24 21:32:00
47007    21922    920    2016-11-24 13:30:00    2016-11-24 13:30:00
47008    21923    524    2016-11-24 02:16:00    2016-11-24 02:16:00
47009    21923    602    2016-11-24 21:22:00    2016-11-24 21:22:00
47010    21923    488    2016-11-24 12:46:00    2016-11-24 12:46:00
47011    21923    677    2016-11-24 22:18:00    2016-11-24 22:18:00
47012    21923    836    2016-11-24 14:01:00    2016-11-24 14:01:00
47013    21924    867    2016-11-24 18:10:00    2016-11-24 18:10:00
47014    21924    857    2016-11-24 13:20:00    2016-11-24 13:20:00
47015    21924    521    2016-11-24 21:26:00    2016-11-24 21:26:00
47016    21924    511    2016-11-24 01:52:00    2016-11-24 01:52:00
47017    21924    526    2016-11-24 06:49:00    2016-11-24 06:49:00
47018    21925    656    2016-11-24 04:10:00    2016-11-24 04:10:00
47019    21925    789    2016-11-24 04:02:00    2016-11-24 04:02:00
47020    21925    683    2016-11-24 15:14:00    2016-11-24 15:14:00
47021    21925    464    2016-11-24 12:49:00    2016-11-24 12:49:00
47022    21925    555    2016-11-24 20:39:00    2016-11-24 20:39:00
47023    21926    656    2016-11-24 02:43:00    2016-11-24 02:43:00
47024    21926    678    2016-11-24 15:10:00    2016-11-24 15:10:00
47025    21926    956    2016-11-24 14:22:00    2016-11-24 14:22:00
47026    21926    921    2016-11-24 16:06:00    2016-11-24 16:06:00
47027    21926    757    2016-11-24 02:06:00    2016-11-24 02:06:00
47028    21927    849    2016-11-24 05:24:00    2016-11-24 05:24:00
47029    21927    942    2016-11-24 13:24:00    2016-11-24 13:24:00
47030    21927    590    2016-11-24 22:39:00    2016-11-24 22:39:00
47031    21927    914    2016-11-24 12:50:00    2016-11-24 12:50:00
47032    21927    857    2016-11-24 19:46:00    2016-11-24 19:46:00
47033    21928    769    2016-11-24 06:46:00    2016-11-24 06:46:00
47034    21928    660    2016-11-24 05:51:00    2016-11-24 05:51:00
47035    21928    485    2016-11-24 05:56:00    2016-11-24 05:56:00
47036    21928    869    2016-11-24 15:54:00    2016-11-24 15:54:00
47037    21928    564    2016-11-24 09:58:00    2016-11-24 09:58:00
47038    21929    677    2016-11-24 10:55:00    2016-11-24 10:55:00
47039    21929    492    2016-11-24 22:52:00    2016-11-24 22:52:00
47040    21929    646    2016-11-24 16:00:00    2016-11-24 16:00:00
47041    21929    759    2016-11-24 09:53:00    2016-11-24 09:53:00
47042    21929    540    2016-11-24 15:45:00    2016-11-24 15:45:00
47043    21930    647    2016-11-24 17:00:00    2016-11-24 17:00:00
47044    21930    733    2016-11-24 09:56:00    2016-11-24 09:56:00
47045    21930    862    2016-11-24 05:15:00    2016-11-24 05:15:00
47046    21930    696    2016-11-24 18:43:00    2016-11-24 18:43:00
47047    21930    694    2016-11-24 08:46:00    2016-11-24 08:46:00
47048    21931    886    2016-11-24 23:59:00    2016-11-24 23:59:00
47049    21931    866    2016-11-24 18:59:00    2016-11-24 18:59:00
47050    21931    661    2016-11-24 07:52:00    2016-11-24 07:52:00
47051    21931    901    2016-11-24 09:39:00    2016-11-24 09:39:00
47052    21931    726    2016-11-24 18:30:00    2016-11-24 18:30:00
47053    21932    605    2016-11-24 20:29:00    2016-11-24 20:29:00
47054    21932    479    2016-11-24 17:03:00    2016-11-24 17:03:00
47055    21932    601    2016-11-24 02:13:00    2016-11-24 02:13:00
47056    21932    683    2016-11-24 04:14:00    2016-11-24 04:14:00
47057    21932    745    2016-11-24 10:33:00    2016-11-24 10:33:00
47058    21933    532    2016-11-24 05:11:00    2016-11-24 05:11:00
47059    21933    564    2016-11-24 16:50:00    2016-11-24 16:50:00
47060    21933    544    2016-11-24 14:14:00    2016-11-24 14:14:00
47061    21933    555    2016-11-24 20:24:00    2016-11-24 20:24:00
47062    21933    506    2016-11-24 19:31:00    2016-11-24 19:31:00
47063    21934    650    2016-11-24 13:41:00    2016-11-24 13:41:00
47064    21934    875    2016-11-24 06:28:00    2016-11-24 06:28:00
47065    21934    561    2016-11-24 17:25:00    2016-11-24 17:25:00
47066    21934    884    2016-11-24 11:57:00    2016-11-24 11:57:00
47067    21934    653    2016-11-24 12:05:00    2016-11-24 12:05:00
47068    21935    807    2016-11-24 07:59:00    2016-11-24 07:59:00
47069    21935    682    2016-11-24 15:47:00    2016-11-24 15:47:00
47070    21935    661    2016-11-24 13:30:00    2016-11-24 13:30:00
47071    21935    603    2016-11-24 14:15:00    2016-11-24 14:15:00
47072    21935    813    2016-11-24 15:14:00    2016-11-24 15:14:00
47073    21936    736    2016-11-24 17:57:00    2016-11-24 17:57:00
47074    21936    534    2016-11-24 12:53:00    2016-11-24 12:53:00
47075    21936    869    2016-11-24 22:46:00    2016-11-24 22:46:00
47076    21936    521    2016-11-24 09:49:00    2016-11-24 09:49:00
47077    21936    666    2016-11-24 21:26:00    2016-11-24 21:26:00
47078    21937    739    2016-11-24 15:19:00    2016-11-24 15:19:00
47079    21937    798    2016-11-24 02:22:00    2016-11-24 02:22:00
47080    21937    794    2016-11-24 23:30:00    2016-11-24 23:30:00
47081    21937    588    2016-11-24 17:36:00    2016-11-24 17:36:00
47082    21937    862    2016-11-24 16:11:00    2016-11-24 16:11:00
47083    21938    788    2016-11-24 04:52:00    2016-11-24 04:52:00
47084    21938    869    2016-11-24 11:04:00    2016-11-24 11:04:00
47085    21938    543    2016-11-24 10:33:00    2016-11-24 10:33:00
47086    21938    961    2016-11-24 19:03:00    2016-11-24 19:03:00
47087    21938    552    2016-11-24 04:15:00    2016-11-24 04:15:00
47088    21939    779    2016-11-24 22:15:00    2016-11-24 22:15:00
47089    21939    629    2016-11-24 08:02:00    2016-11-24 08:02:00
47090    21939    746    2016-11-24 11:58:00    2016-11-24 11:58:00
47091    21939    500    2016-11-24 10:27:00    2016-11-24 10:27:00
47092    21939    847    2016-11-24 14:34:00    2016-11-24 14:34:00
47093    21940    941    2016-11-24 15:37:00    2016-11-24 15:37:00
47094    21940    796    2016-11-24 15:38:00    2016-11-24 15:38:00
47095    21940    656    2016-11-24 07:11:00    2016-11-24 07:11:00
47096    21940    561    2016-11-24 16:33:00    2016-11-24 16:33:00
47097    21940    927    2016-11-24 22:53:00    2016-11-24 22:53:00
47098    21941    794    2016-11-24 21:34:00    2016-11-24 21:34:00
47099    21941    592    2016-11-24 07:27:00    2016-11-24 07:27:00
47100    21941    744    2016-11-24 16:20:00    2016-11-24 16:20:00
47101    21941    928    2016-11-24 18:57:00    2016-11-24 18:57:00
47102    21941    622    2016-11-24 03:28:00    2016-11-24 03:28:00
47103    21942    761    2016-11-24 12:37:00    2016-11-24 12:37:00
47104    21942    612    2016-11-24 19:51:00    2016-11-24 19:51:00
47105    21942    780    2016-11-24 03:08:00    2016-11-24 03:08:00
47106    21942    590    2016-11-24 13:38:00    2016-11-24 13:38:00
47107    21942    625    2016-11-24 15:32:00    2016-11-24 15:32:00
47108    21943    722    2016-11-24 13:18:00    2016-11-24 13:18:00
47109    21943    846    2016-11-24 10:06:00    2016-11-24 10:06:00
47110    21943    522    2016-11-24 19:07:00    2016-11-24 19:07:00
47111    21943    667    2016-11-24 17:36:00    2016-11-24 17:36:00
47112    21943    860    2016-11-24 09:16:00    2016-11-24 09:16:00
47113    21944    648    2016-11-25 11:16:00    2016-11-25 11:16:00
47114    21944    859    2016-11-25 16:54:00    2016-11-25 16:54:00
47115    21944    558    2016-11-25 06:40:00    2016-11-25 06:40:00
47116    21944    811    2016-11-25 20:43:00    2016-11-25 20:43:00
47117    21944    555    2016-11-25 15:56:00    2016-11-25 15:56:00
47118    21945    844    2016-11-25 10:06:00    2016-11-25 10:06:00
47119    21945    915    2016-11-25 12:37:00    2016-11-25 12:37:00
47120    21945    873    2016-11-25 13:00:00    2016-11-25 13:00:00
47121    21945    819    2016-11-25 05:24:00    2016-11-25 05:24:00
47122    21945    820    2016-11-25 09:23:00    2016-11-25 09:23:00
47123    21946    893    2016-11-25 07:36:00    2016-11-25 07:36:00
47124    21946    646    2016-11-25 10:25:00    2016-11-25 10:25:00
47125    21946    713    2016-11-25 08:59:00    2016-11-25 08:59:00
47126    21946    589    2016-11-25 07:37:00    2016-11-25 07:37:00
47127    21946    640    2016-11-25 21:36:00    2016-11-25 21:36:00
47128    21947    743    2016-11-25 23:24:00    2016-11-25 23:24:00
47129    21947    855    2016-11-25 11:42:00    2016-11-25 11:42:00
47130    21947    496    2016-11-25 15:14:00    2016-11-25 15:14:00
47131    21947    790    2016-11-25 02:11:00    2016-11-25 02:11:00
47132    21947    914    2016-11-25 16:25:00    2016-11-25 16:25:00
47133    21948    610    2016-11-25 02:53:00    2016-11-25 02:53:00
47134    21948    879    2016-11-25 08:09:00    2016-11-25 08:09:00
47135    21948    882    2016-11-25 05:55:00    2016-11-25 05:55:00
47136    21948    475    2016-11-25 03:38:00    2016-11-25 03:38:00
47137    21948    473    2016-11-25 10:10:00    2016-11-25 10:10:00
47138    21949    494    2016-11-25 07:52:00    2016-11-25 07:52:00
47139    21949    612    2016-11-25 09:36:00    2016-11-25 09:36:00
47140    21949    622    2016-11-25 11:08:00    2016-11-25 11:08:00
47141    21949    496    2016-11-25 14:48:00    2016-11-25 14:48:00
47142    21949    735    2016-11-25 22:26:00    2016-11-25 22:26:00
47143    21950    543    2016-11-25 04:04:00    2016-11-25 04:04:00
47144    21950    668    2016-11-25 19:05:00    2016-11-25 19:05:00
47145    21950    697    2016-11-25 12:31:00    2016-11-25 12:31:00
47146    21950    683    2016-11-25 04:36:00    2016-11-25 04:36:00
47147    21950    608    2016-11-25 20:42:00    2016-11-25 20:42:00
47148    21951    723    2016-11-25 13:08:00    2016-11-25 13:08:00
47149    21951    860    2016-11-25 05:15:00    2016-11-25 05:15:00
47150    21951    603    2016-11-25 07:02:00    2016-11-25 07:02:00
47151    21951    655    2016-11-25 04:52:00    2016-11-25 04:52:00
47152    21951    841    2016-11-25 08:49:00    2016-11-25 08:49:00
47153    21952    951    2016-11-25 16:21:00    2016-11-25 16:21:00
47154    21952    813    2016-11-25 23:05:00    2016-11-25 23:05:00
47155    21952    907    2016-11-25 07:57:00    2016-11-25 07:57:00
47156    21952    544    2016-11-25 02:43:00    2016-11-25 02:43:00
47157    21952    559    2016-11-25 18:32:00    2016-11-25 18:32:00
47158    21953    675    2016-11-25 01:54:00    2016-11-25 01:54:00
47159    21953    872    2016-11-25 02:44:00    2016-11-25 02:44:00
47160    21953    482    2016-11-25 21:42:00    2016-11-25 21:42:00
47161    21953    658    2016-11-25 11:15:00    2016-11-25 11:15:00
47162    21953    916    2016-11-25 08:18:00    2016-11-25 08:18:00
47163    21954    524    2016-11-25 20:53:00    2016-11-25 20:53:00
47164    21954    628    2016-11-25 01:45:00    2016-11-25 01:45:00
47165    21954    715    2016-11-25 13:47:00    2016-11-25 13:47:00
47166    21954    926    2016-11-25 11:45:00    2016-11-25 11:45:00
47167    21954    596    2016-11-25 06:55:00    2016-11-25 06:55:00
47168    21955    763    2016-11-25 15:23:00    2016-11-25 15:23:00
47169    21955    553    2016-11-25 01:22:00    2016-11-25 01:22:00
47170    21955    758    2016-11-25 14:34:00    2016-11-25 14:34:00
47171    21955    592    2016-11-25 14:01:00    2016-11-25 14:01:00
47172    21955    733    2016-11-25 20:42:00    2016-11-25 20:42:00
47173    21956    881    2016-11-25 06:32:00    2016-11-25 06:32:00
47174    21956    894    2016-11-25 06:01:00    2016-11-25 06:01:00
47175    21956    562    2016-11-25 13:55:00    2016-11-25 13:55:00
47176    21956    719    2016-11-25 08:53:00    2016-11-25 08:53:00
47177    21956    766    2016-11-25 15:20:00    2016-11-25 15:20:00
47178    21957    510    2016-11-25 19:49:00    2016-11-25 19:49:00
47179    21957    958    2016-11-25 22:12:00    2016-11-25 22:12:00
47180    21957    638    2016-11-25 07:18:00    2016-11-25 07:18:00
47181    21957    892    2016-11-25 13:11:00    2016-11-25 13:11:00
47182    21957    675    2016-11-25 08:08:00    2016-11-25 08:08:00
47183    21958    596    2016-11-25 16:37:00    2016-11-25 16:37:00
47184    21958    651    2016-11-25 19:11:00    2016-11-25 19:11:00
47185    21958    849    2016-11-25 12:10:00    2016-11-25 12:10:00
47186    21958    886    2016-11-25 10:31:00    2016-11-25 10:31:00
47187    21958    605    2016-11-25 10:05:00    2016-11-25 10:05:00
47188    21959    477    2016-11-25 04:17:00    2016-11-25 04:17:00
47189    21959    559    2016-11-25 08:22:00    2016-11-25 08:22:00
47190    21959    647    2016-11-25 19:20:00    2016-11-25 19:20:00
47191    21959    703    2016-11-25 17:39:00    2016-11-25 17:39:00
47192    21959    677    2016-11-25 05:16:00    2016-11-25 05:16:00
47193    21960    467    2016-11-25 09:40:00    2016-11-25 09:40:00
47194    21960    682    2016-11-25 19:10:00    2016-11-25 19:10:00
47195    21960    544    2016-11-25 08:31:00    2016-11-25 08:31:00
47196    21960    648    2016-11-25 22:26:00    2016-11-25 22:26:00
47197    21960    662    2016-11-25 17:54:00    2016-11-25 17:54:00
47198    21961    711    2016-11-25 19:00:00    2016-11-25 19:00:00
47199    21961    753    2016-11-25 15:47:00    2016-11-25 15:47:00
47200    21961    794    2016-11-25 01:58:00    2016-11-25 01:58:00
47201    21961    941    2016-11-25 02:03:00    2016-11-25 02:03:00
47202    21961    951    2016-11-25 06:44:00    2016-11-25 06:44:00
47203    21962    645    2016-11-25 02:52:00    2016-11-25 02:52:00
47204    21962    869    2016-11-25 02:16:00    2016-11-25 02:16:00
47205    21962    603    2016-11-25 11:27:00    2016-11-25 11:27:00
47206    21962    947    2016-11-25 06:35:00    2016-11-25 06:35:00
47207    21962    597    2016-11-25 11:05:00    2016-11-25 11:05:00
47208    21963    603    2016-11-25 07:39:00    2016-11-25 07:39:00
47209    21963    877    2016-11-25 23:28:00    2016-11-25 23:28:00
47210    21963    833    2016-11-25 07:10:00    2016-11-25 07:10:00
47211    21963    566    2016-11-25 15:55:00    2016-11-25 15:55:00
47212    21963    483    2016-11-25 05:01:00    2016-11-25 05:01:00
47213    21964    473    2016-11-25 12:55:00    2016-11-25 12:55:00
47214    21964    579    2016-11-25 03:02:00    2016-11-25 03:02:00
47215    21964    869    2016-11-25 02:32:00    2016-11-25 02:32:00
47216    21964    670    2016-11-25 21:37:00    2016-11-25 21:37:00
47217    21964    562    2016-11-25 18:02:00    2016-11-25 18:02:00
47218    21965    667    2016-11-25 08:41:00    2016-11-25 08:41:00
47219    21965    893    2016-11-25 17:17:00    2016-11-25 17:17:00
47220    21965    496    2016-11-25 14:27:00    2016-11-25 14:27:00
47221    21965    596    2016-11-25 03:40:00    2016-11-25 03:40:00
47222    21965    940    2016-11-25 18:53:00    2016-11-25 18:53:00
47223    21966    697    2016-11-25 22:05:00    2016-11-25 22:05:00
47224    21966    522    2016-11-25 08:19:00    2016-11-25 08:19:00
47225    21966    879    2016-11-25 11:33:00    2016-11-25 11:33:00
47226    21966    821    2016-11-25 04:10:00    2016-11-25 04:10:00
47227    21966    728    2016-11-25 02:44:00    2016-11-25 02:44:00
47228    21967    510    2016-11-25 08:06:00    2016-11-25 08:06:00
47229    21967    619    2016-11-25 10:00:00    2016-11-25 10:00:00
47230    21967    930    2016-11-25 05:49:00    2016-11-25 05:49:00
47231    21967    841    2016-11-25 07:16:00    2016-11-25 07:16:00
47232    21967    472    2016-11-25 01:11:00    2016-11-25 01:11:00
47233    21968    842    2016-11-25 13:40:00    2016-11-25 13:40:00
47234    21968    764    2016-11-25 08:16:00    2016-11-25 08:16:00
47235    21968    637    2016-11-25 15:14:00    2016-11-25 15:14:00
47236    21968    472    2016-11-25 07:34:00    2016-11-25 07:34:00
47237    21968    829    2016-11-25 17:27:00    2016-11-25 17:27:00
47238    21969    749    2016-11-25 12:05:00    2016-11-25 12:05:00
47239    21969    631    2016-11-25 17:17:00    2016-11-25 17:17:00
47240    21969    899    2016-11-25 16:34:00    2016-11-25 16:34:00
47241    21969    710    2016-11-25 11:02:00    2016-11-25 11:02:00
47242    21969    505    2016-11-25 19:46:00    2016-11-25 19:46:00
47243    21970    646    2016-11-25 07:48:00    2016-11-25 07:48:00
47244    21970    817    2016-11-25 23:08:00    2016-11-25 23:08:00
47245    21970    706    2016-11-25 06:55:00    2016-11-25 06:55:00
47246    21970    746    2016-11-25 11:10:00    2016-11-25 11:10:00
47247    21970    523    2016-11-25 02:31:00    2016-11-25 02:31:00
47248    21971    891    2016-11-25 13:28:00    2016-11-25 13:28:00
47249    21971    961    2016-11-25 13:30:00    2016-11-25 13:30:00
47250    21971    627    2016-11-25 12:24:00    2016-11-25 12:24:00
47251    21971    886    2016-11-25 07:42:00    2016-11-25 07:42:00
47252    21971    807    2016-11-25 12:27:00    2016-11-25 12:27:00
47253    21972    542    2016-11-25 23:43:00    2016-11-25 23:43:00
47254    21972    743    2016-11-25 19:32:00    2016-11-25 19:32:00
47255    21972    874    2016-11-25 14:45:00    2016-11-25 14:45:00
47256    21972    961    2016-11-25 08:08:00    2016-11-25 08:08:00
47257    21972    946    2016-11-25 05:13:00    2016-11-25 05:13:00
47258    21973    547    2016-11-25 10:13:00    2016-11-25 10:13:00
47259    21973    750    2016-11-25 19:34:00    2016-11-25 19:34:00
47260    21973    893    2016-11-25 13:01:00    2016-11-25 13:01:00
47261    21973    852    2016-11-25 17:53:00    2016-11-25 17:53:00
47262    21973    790    2016-11-25 20:37:00    2016-11-25 20:37:00
47263    21974    881    2016-11-25 15:52:00    2016-11-25 15:52:00
47264    21974    951    2016-11-25 20:13:00    2016-11-25 20:13:00
47265    21974    580    2016-11-25 20:56:00    2016-11-25 20:56:00
47266    21974    785    2016-11-25 18:50:00    2016-11-25 18:50:00
47267    21974    828    2016-11-25 01:33:00    2016-11-25 01:33:00
47268    21975    576    2016-11-25 07:50:00    2016-11-25 07:50:00
47269    21975    581    2016-11-25 16:54:00    2016-11-25 16:54:00
47270    21975    583    2016-11-25 12:06:00    2016-11-25 12:06:00
47271    21975    635    2016-11-25 16:44:00    2016-11-25 16:44:00
47272    21975    517    2016-11-25 15:19:00    2016-11-25 15:19:00
47273    21976    934    2016-11-25 21:23:00    2016-11-25 21:23:00
47274    21976    702    2016-11-25 04:46:00    2016-11-25 04:46:00
47275    21976    511    2016-11-25 16:05:00    2016-11-25 16:05:00
47276    21976    517    2016-11-25 05:15:00    2016-11-25 05:15:00
47277    21976    492    2016-11-25 02:51:00    2016-11-25 02:51:00
47278    21977    771    2016-11-25 16:39:00    2016-11-25 16:39:00
47279    21977    508    2016-11-25 06:12:00    2016-11-25 06:12:00
47280    21977    836    2016-11-25 22:14:00    2016-11-25 22:14:00
47281    21977    645    2016-11-25 01:20:00    2016-11-25 01:20:00
47282    21977    870    2016-11-25 16:11:00    2016-11-25 16:11:00
47283    21978    703    2016-11-25 07:36:00    2016-11-25 07:36:00
47284    21978    470    2016-11-25 10:08:00    2016-11-25 10:08:00
47285    21978    691    2016-11-25 06:03:00    2016-11-25 06:03:00
47286    21978    771    2016-11-25 09:38:00    2016-11-25 09:38:00
47287    21978    779    2016-11-25 23:14:00    2016-11-25 23:14:00
47288    21979    784    2016-11-25 02:38:00    2016-11-25 02:38:00
47289    21979    848    2016-11-25 16:53:00    2016-11-25 16:53:00
47290    21979    664    2016-11-25 06:44:00    2016-11-25 06:44:00
47291    21979    565    2016-11-25 21:47:00    2016-11-25 21:47:00
47292    21979    684    2016-11-25 19:05:00    2016-11-25 19:05:00
47293    21980    650    2016-11-25 15:52:00    2016-11-25 15:52:00
47294    21980    757    2016-11-25 20:18:00    2016-11-25 20:18:00
47295    21980    701    2016-11-25 23:54:00    2016-11-25 23:54:00
47296    21980    559    2016-11-25 15:55:00    2016-11-25 15:55:00
47297    21980    811    2016-11-25 06:31:00    2016-11-25 06:31:00
47298    21981    675    2016-11-25 08:56:00    2016-11-25 08:56:00
47299    21981    768    2016-11-25 23:10:00    2016-11-25 23:10:00
47300    21981    468    2016-11-25 17:39:00    2016-11-25 17:39:00
47301    21981    684    2016-11-25 08:59:00    2016-11-25 08:59:00
47302    21981    762    2016-11-25 12:17:00    2016-11-25 12:17:00
47303    21982    478    2016-11-25 22:21:00    2016-11-25 22:21:00
47304    21982    793    2016-11-25 23:57:00    2016-11-25 23:57:00
47305    21982    910    2016-11-25 09:21:00    2016-11-25 09:21:00
47306    21982    743    2016-11-25 16:20:00    2016-11-25 16:20:00
47307    21982    711    2016-11-25 04:12:00    2016-11-25 04:12:00
47308    21983    705    2016-11-25 12:53:00    2016-11-25 12:53:00
47309    21983    816    2016-11-25 13:08:00    2016-11-25 13:08:00
47310    21983    628    2016-11-25 03:09:00    2016-11-25 03:09:00
47311    21983    839    2016-11-25 09:14:00    2016-11-25 09:14:00
47312    21983    712    2016-11-25 14:32:00    2016-11-25 14:32:00
47313    21984    587    2016-11-25 12:16:00    2016-11-25 12:16:00
47314    21984    799    2016-11-25 08:54:00    2016-11-25 08:54:00
47315    21984    555    2016-11-25 15:20:00    2016-11-25 15:20:00
47316    21984    879    2016-11-25 17:47:00    2016-11-25 17:47:00
47317    21984    866    2016-11-25 21:27:00    2016-11-25 21:27:00
47318    21985    519    2016-11-25 09:06:00    2016-11-25 09:06:00
47319    21985    724    2016-11-25 10:25:00    2016-11-25 10:25:00
47320    21985    947    2016-11-25 14:23:00    2016-11-25 14:23:00
47321    21985    639    2016-11-25 04:35:00    2016-11-25 04:35:00
47322    21985    637    2016-11-25 02:03:00    2016-11-25 02:03:00
47323    21986    494    2016-11-25 02:41:00    2016-11-25 02:41:00
47324    21986    691    2016-11-25 08:58:00    2016-11-25 08:58:00
47325    21986    821    2016-11-25 04:29:00    2016-11-25 04:29:00
47326    21986    682    2016-11-25 16:25:00    2016-11-25 16:25:00
47327    21986    626    2016-11-25 05:32:00    2016-11-25 05:32:00
47328    21987    796    2016-11-25 07:02:00    2016-11-25 07:02:00
47329    21987    812    2016-11-25 06:23:00    2016-11-25 06:23:00
47330    21987    775    2016-11-25 19:05:00    2016-11-25 19:05:00
47331    21987    860    2016-11-25 22:45:00    2016-11-25 22:45:00
47332    21987    503    2016-11-25 19:00:00    2016-11-25 19:00:00
47333    21988    959    2016-11-25 01:06:00    2016-11-25 01:06:00
47334    21988    768    2016-11-25 22:41:00    2016-11-25 22:41:00
47335    21988    821    2016-11-25 11:48:00    2016-11-25 11:48:00
47336    21988    614    2016-11-25 09:41:00    2016-11-25 09:41:00
47337    21988    662    2016-11-25 15:41:00    2016-11-25 15:41:00
47338    21989    782    2016-11-25 05:13:00    2016-11-25 05:13:00
47339    21989    863    2016-11-25 09:36:00    2016-11-25 09:36:00
47340    21989    940    2016-11-25 09:45:00    2016-11-25 09:45:00
47341    21989    468    2016-11-25 23:26:00    2016-11-25 23:26:00
47342    21989    564    2016-11-25 01:45:00    2016-11-25 01:45:00
47343    21990    608    2016-11-25 01:01:00    2016-11-25 01:01:00
47344    21990    489    2016-11-25 11:53:00    2016-11-25 11:53:00
47345    21990    575    2016-11-25 12:24:00    2016-11-25 12:24:00
47346    21990    586    2016-11-25 16:00:00    2016-11-25 16:00:00
47347    21990    829    2016-11-25 03:38:00    2016-11-25 03:38:00
47348    21991    568    2016-11-25 10:17:00    2016-11-25 10:17:00
47349    21991    783    2016-11-25 17:24:00    2016-11-25 17:24:00
47350    21991    689    2016-11-25 04:02:00    2016-11-25 04:02:00
47351    21991    660    2016-11-25 20:47:00    2016-11-25 20:47:00
47352    21991    848    2016-11-25 17:47:00    2016-11-25 17:47:00
47353    21992    757    2016-11-25 14:32:00    2016-11-25 14:32:00
47354    21992    511    2016-11-25 12:28:00    2016-11-25 12:28:00
47355    21992    810    2016-11-25 17:39:00    2016-11-25 17:39:00
47356    21992    905    2016-11-25 12:07:00    2016-11-25 12:07:00
47357    21992    473    2016-11-25 09:08:00    2016-11-25 09:08:00
47358    21993    766    2016-11-25 16:55:00    2016-11-25 16:55:00
47359    21993    656    2016-11-25 16:51:00    2016-11-25 16:51:00
47360    21993    602    2016-11-25 09:13:00    2016-11-25 09:13:00
47361    21993    559    2016-11-25 06:49:00    2016-11-25 06:49:00
47362    21993    811    2016-11-25 20:18:00    2016-11-25 20:18:00
47363    21994    536    2016-11-25 14:13:00    2016-11-25 14:13:00
47364    21994    905    2016-11-25 02:00:00    2016-11-25 02:00:00
47365    21994    882    2016-11-25 10:50:00    2016-11-25 10:50:00
47366    21994    637    2016-11-25 23:44:00    2016-11-25 23:44:00
47367    21994    725    2016-11-25 03:51:00    2016-11-25 03:51:00
47368    21995    641    2016-11-25 03:05:00    2016-11-25 03:05:00
47369    21995    812    2016-11-25 04:28:00    2016-11-25 04:28:00
47370    21995    781    2016-11-25 13:17:00    2016-11-25 13:17:00
47371    21995    520    2016-11-25 06:44:00    2016-11-25 06:44:00
47372    21995    716    2016-11-25 08:26:00    2016-11-25 08:26:00
47373    21996    683    2016-11-25 02:40:00    2016-11-25 02:40:00
47374    21996    587    2016-11-25 01:25:00    2016-11-25 01:25:00
47375    21996    879    2016-11-25 09:50:00    2016-11-25 09:50:00
47376    21996    477    2016-11-25 03:04:00    2016-11-25 03:04:00
47377    21996    832    2016-11-25 10:04:00    2016-11-25 10:04:00
47378    21997    678    2016-11-25 23:17:00    2016-11-25 23:17:00
47379    21997    487    2016-11-25 01:25:00    2016-11-25 01:25:00
47380    21997    501    2016-11-25 11:45:00    2016-11-25 11:45:00
47381    21997    883    2016-11-25 03:27:00    2016-11-25 03:27:00
47382    21997    872    2016-11-25 13:46:00    2016-11-25 13:46:00
47383    21998    660    2016-11-25 23:08:00    2016-11-25 23:08:00
47384    21998    862    2016-11-25 10:53:00    2016-11-25 10:53:00
47385    21998    482    2016-11-25 12:41:00    2016-11-25 12:41:00
47386    21998    883    2016-11-25 20:28:00    2016-11-25 20:28:00
47387    21998    466    2016-11-25 17:04:00    2016-11-25 17:04:00
47388    21999    704    2016-11-25 19:39:00    2016-11-25 19:39:00
47389    21999    607    2016-11-25 02:11:00    2016-11-25 02:11:00
47390    21999    737    2016-11-25 19:05:00    2016-11-25 19:05:00
47391    21999    631    2016-11-25 05:18:00    2016-11-25 05:18:00
47392    21999    596    2016-11-25 16:58:00    2016-11-25 16:58:00
47393    22000    496    2016-11-25 01:39:00    2016-11-25 01:39:00
47394    22000    491    2016-11-25 10:58:00    2016-11-25 10:58:00
47395    22000    613    2016-11-25 14:01:00    2016-11-25 14:01:00
47396    22000    842    2016-11-25 15:00:00    2016-11-25 15:00:00
47397    22000    485    2016-11-25 06:41:00    2016-11-25 06:41:00
47398    22001    590    2016-11-25 04:39:00    2016-11-25 04:39:00
47399    22001    961    2016-11-25 21:16:00    2016-11-25 21:16:00
47400    22001    909    2016-11-25 23:15:00    2016-11-25 23:15:00
47401    22001    731    2016-11-25 02:10:00    2016-11-25 02:10:00
47402    22001    668    2016-11-25 16:20:00    2016-11-25 16:20:00
47403    22002    849    2016-11-25 09:47:00    2016-11-25 09:47:00
47404    22002    869    2016-11-25 20:10:00    2016-11-25 20:10:00
47405    22002    653    2016-11-25 19:48:00    2016-11-25 19:48:00
47406    22002    621    2016-11-25 04:56:00    2016-11-25 04:56:00
47407    22002    511    2016-11-25 06:40:00    2016-11-25 06:40:00
47408    22003    615    2016-11-25 22:05:00    2016-11-25 22:05:00
47409    22003    876    2016-11-25 12:56:00    2016-11-25 12:56:00
47410    22003    515    2016-11-25 04:23:00    2016-11-25 04:23:00
47411    22003    761    2016-11-25 01:12:00    2016-11-25 01:12:00
47412    22003    706    2016-11-25 16:23:00    2016-11-25 16:23:00
47413    22004    731    2016-11-25 11:52:00    2016-11-25 11:52:00
47414    22004    653    2016-11-25 19:26:00    2016-11-25 19:26:00
47415    22004    731    2016-11-25 21:46:00    2016-11-25 21:46:00
47416    22004    566    2016-11-25 18:39:00    2016-11-25 18:39:00
47417    22004    516    2016-11-25 09:56:00    2016-11-25 09:56:00
47418    22005    682    2016-11-25 22:01:00    2016-11-25 22:01:00
47419    22005    658    2016-11-25 14:04:00    2016-11-25 14:04:00
47420    22005    710    2016-11-25 11:27:00    2016-11-25 11:27:00
47421    22005    650    2016-11-25 01:06:00    2016-11-25 01:06:00
47422    22005    775    2016-11-25 07:12:00    2016-11-25 07:12:00
47423    22006    511    2016-11-25 17:08:00    2016-11-25 17:08:00
47424    22006    643    2016-11-25 03:34:00    2016-11-25 03:34:00
47425    22006    499    2016-11-25 06:10:00    2016-11-25 06:10:00
47426    22006    666    2016-11-25 07:33:00    2016-11-25 07:33:00
47427    22006    703    2016-11-25 19:35:00    2016-11-25 19:35:00
47428    22007    472    2016-11-26 02:54:00    2016-11-26 02:54:00
47429    22007    836    2016-11-26 09:13:00    2016-11-26 09:13:00
47430    22007    958    2016-11-26 02:23:00    2016-11-26 02:23:00
47431    22007    791    2016-11-26 16:01:00    2016-11-26 16:01:00
47432    22007    466    2016-11-26 02:43:00    2016-11-26 02:43:00
47433    22008    594    2016-11-26 05:08:00    2016-11-26 05:08:00
47434    22008    960    2016-11-26 12:51:00    2016-11-26 12:51:00
47435    22008    847    2016-11-26 11:00:00    2016-11-26 11:00:00
47436    22008    589    2016-11-26 19:25:00    2016-11-26 19:25:00
47437    22008    805    2016-11-26 09:54:00    2016-11-26 09:54:00
47438    22009    785    2016-11-26 10:26:00    2016-11-26 10:26:00
47439    22009    764    2016-11-26 08:11:00    2016-11-26 08:11:00
47440    22009    667    2016-11-26 07:30:00    2016-11-26 07:30:00
47441    22009    513    2016-11-26 19:37:00    2016-11-26 19:37:00
47442    22009    923    2016-11-26 15:50:00    2016-11-26 15:50:00
47443    22010    676    2016-11-26 07:19:00    2016-11-26 07:19:00
47444    22010    781    2016-11-26 06:07:00    2016-11-26 06:07:00
47445    22010    560    2016-11-26 03:39:00    2016-11-26 03:39:00
47446    22010    502    2016-11-26 14:57:00    2016-11-26 14:57:00
47447    22010    886    2016-11-26 01:47:00    2016-11-26 01:47:00
47448    22011    725    2016-11-26 23:01:00    2016-11-26 23:01:00
47449    22011    507    2016-11-26 09:12:00    2016-11-26 09:12:00
47450    22011    612    2016-11-26 10:07:00    2016-11-26 10:07:00
47451    22011    763    2016-11-26 13:10:00    2016-11-26 13:10:00
47452    22011    594    2016-11-26 22:10:00    2016-11-26 22:10:00
47453    22012    532    2016-11-26 01:53:00    2016-11-26 01:53:00
47454    22012    643    2016-11-26 17:40:00    2016-11-26 17:40:00
47455    22012    847    2016-11-26 04:09:00    2016-11-26 04:09:00
47456    22012    655    2016-11-26 13:12:00    2016-11-26 13:12:00
47457    22012    612    2016-11-26 09:59:00    2016-11-26 09:59:00
47458    22013    482    2016-11-26 02:58:00    2016-11-26 02:58:00
47459    22013    935    2016-11-26 06:40:00    2016-11-26 06:40:00
47460    22013    905    2016-11-26 05:53:00    2016-11-26 05:53:00
47461    22013    959    2016-11-26 23:31:00    2016-11-26 23:31:00
47462    22013    539    2016-11-26 06:58:00    2016-11-26 06:58:00
47463    22014    567    2016-11-26 18:09:00    2016-11-26 18:09:00
47464    22014    846    2016-11-26 09:45:00    2016-11-26 09:45:00
47465    22014    590    2016-11-26 14:44:00    2016-11-26 14:44:00
47466    22014    944    2016-11-26 18:53:00    2016-11-26 18:53:00
47467    22014    554    2016-11-26 12:14:00    2016-11-26 12:14:00
47468    22015    599    2016-11-26 18:18:00    2016-11-26 18:18:00
47469    22015    659    2016-11-26 15:01:00    2016-11-26 15:01:00
47470    22015    694    2016-11-26 05:47:00    2016-11-26 05:47:00
47471    22015    536    2016-11-26 22:48:00    2016-11-26 22:48:00
47472    22015    650    2016-11-26 23:55:00    2016-11-26 23:55:00
47473    22016    669    2016-11-26 15:56:00    2016-11-26 15:56:00
47474    22016    555    2016-11-26 18:25:00    2016-11-26 18:25:00
47475    22016    665    2016-11-26 06:32:00    2016-11-26 06:32:00
47476    22016    765    2016-11-26 06:26:00    2016-11-26 06:26:00
47477    22016    694    2016-11-26 11:29:00    2016-11-26 11:29:00
47478    22017    768    2016-11-26 17:23:00    2016-11-26 17:23:00
47479    22017    679    2016-11-26 03:05:00    2016-11-26 03:05:00
47480    22017    689    2016-11-26 06:30:00    2016-11-26 06:30:00
47481    22017    609    2016-11-26 04:02:00    2016-11-26 04:02:00
47482    22017    572    2016-11-26 14:55:00    2016-11-26 14:55:00
47483    22018    509    2016-11-26 09:22:00    2016-11-26 09:22:00
47484    22018    753    2016-11-26 05:04:00    2016-11-26 05:04:00
47485    22018    692    2016-11-26 03:23:00    2016-11-26 03:23:00
47486    22018    514    2016-11-26 06:49:00    2016-11-26 06:49:00
47487    22018    500    2016-11-26 16:58:00    2016-11-26 16:58:00
47488    22019    494    2016-11-26 10:28:00    2016-11-26 10:28:00
47489    22019    914    2016-11-26 19:06:00    2016-11-26 19:06:00
47490    22019    520    2016-11-26 03:27:00    2016-11-26 03:27:00
47491    22019    952    2016-11-26 08:54:00    2016-11-26 08:54:00
47492    22019    806    2016-11-26 15:52:00    2016-11-26 15:52:00
47493    22020    703    2016-11-26 08:43:00    2016-11-26 08:43:00
47494    22020    629    2016-11-26 07:31:00    2016-11-26 07:31:00
47495    22020    834    2016-11-26 01:08:00    2016-11-26 01:08:00
47496    22020    823    2016-11-26 04:27:00    2016-11-26 04:27:00
47497    22020    541    2016-11-26 16:14:00    2016-11-26 16:14:00
47498    22021    579    2016-11-26 21:17:00    2016-11-26 21:17:00
47499    22021    572    2016-11-26 19:30:00    2016-11-26 19:30:00
47500    22021    950    2016-11-26 12:45:00    2016-11-26 12:45:00
47501    22021    816    2016-11-26 11:26:00    2016-11-26 11:26:00
47502    22021    786    2016-11-26 04:36:00    2016-11-26 04:36:00
47503    22022    770    2016-11-26 19:15:00    2016-11-26 19:15:00
47504    22022    896    2016-11-26 13:07:00    2016-11-26 13:07:00
47505    22022    915    2016-11-26 11:40:00    2016-11-26 11:40:00
47506    22022    466    2016-11-26 19:42:00    2016-11-26 19:42:00
47507    22022    909    2016-11-26 01:08:00    2016-11-26 01:08:00
47508    22023    630    2016-11-26 14:59:00    2016-11-26 14:59:00
47509    22023    900    2016-11-26 03:24:00    2016-11-26 03:24:00
47510    22023    765    2016-11-26 13:58:00    2016-11-26 13:58:00
47511    22023    674    2016-11-26 22:16:00    2016-11-26 22:16:00
47512    22023    670    2016-11-26 01:12:00    2016-11-26 01:12:00
47513    22024    639    2016-11-26 15:23:00    2016-11-26 15:23:00
47514    22024    725    2016-11-26 20:43:00    2016-11-26 20:43:00
47515    22024    612    2016-11-26 02:09:00    2016-11-26 02:09:00
47516    22024    467    2016-11-26 22:50:00    2016-11-26 22:50:00
47517    22024    478    2016-11-26 05:50:00    2016-11-26 05:50:00
47518    22025    899    2016-11-26 22:40:00    2016-11-26 22:40:00
47519    22025    578    2016-11-26 15:00:00    2016-11-26 15:00:00
47520    22025    869    2016-11-26 11:52:00    2016-11-26 11:52:00
47521    22025    553    2016-11-26 07:46:00    2016-11-26 07:46:00
47522    22025    604    2016-11-26 11:51:00    2016-11-26 11:51:00
47523    22026    796    2016-11-26 04:17:00    2016-11-26 04:17:00
47524    22026    606    2016-11-26 15:57:00    2016-11-26 15:57:00
47525    22026    709    2016-11-26 04:13:00    2016-11-26 04:13:00
47526    22026    767    2016-11-26 04:20:00    2016-11-26 04:20:00
47527    22026    532    2016-11-26 15:38:00    2016-11-26 15:38:00
47528    22027    877    2016-11-26 18:28:00    2016-11-26 18:28:00
47529    22027    903    2016-11-26 18:50:00    2016-11-26 18:50:00
47530    22027    664    2016-11-26 23:53:00    2016-11-26 23:53:00
47531    22027    834    2016-11-26 17:20:00    2016-11-26 17:20:00
47532    22027    578    2016-11-26 11:58:00    2016-11-26 11:58:00
47533    22028    716    2016-11-26 10:48:00    2016-11-26 10:48:00
47534    22028    884    2016-11-26 23:30:00    2016-11-26 23:30:00
47535    22028    527    2016-11-26 03:24:00    2016-11-26 03:24:00
47536    22028    608    2016-11-26 20:12:00    2016-11-26 20:12:00
47537    22028    633    2016-11-26 17:33:00    2016-11-26 17:33:00
47538    22029    933    2016-11-26 14:42:00    2016-11-26 14:42:00
47539    22029    935    2016-11-26 06:44:00    2016-11-26 06:44:00
47540    22029    814    2016-11-26 17:15:00    2016-11-26 17:15:00
47541    22029    571    2016-11-26 01:06:00    2016-11-26 01:06:00
47542    22029    639    2016-11-26 15:16:00    2016-11-26 15:16:00
47543    22030    517    2016-11-26 22:38:00    2016-11-26 22:38:00
47544    22030    617    2016-11-26 16:42:00    2016-11-26 16:42:00
47545    22030    522    2016-11-26 23:18:00    2016-11-26 23:18:00
47546    22030    911    2016-11-26 06:03:00    2016-11-26 06:03:00
47547    22030    485    2016-11-26 10:43:00    2016-11-26 10:43:00
47548    22031    563    2016-11-26 15:51:00    2016-11-26 15:51:00
47549    22031    950    2016-11-26 07:51:00    2016-11-26 07:51:00
47550    22031    595    2016-11-26 04:11:00    2016-11-26 04:11:00
47551    22031    957    2016-11-26 14:48:00    2016-11-26 14:48:00
47552    22031    934    2016-11-26 07:36:00    2016-11-26 07:36:00
47553    22032    546    2016-11-26 05:02:00    2016-11-26 05:02:00
47554    22032    648    2016-11-26 21:29:00    2016-11-26 21:29:00
47555    22032    579    2016-11-26 22:09:00    2016-11-26 22:09:00
47556    22032    755    2016-11-26 17:07:00    2016-11-26 17:07:00
47557    22032    640    2016-11-26 08:21:00    2016-11-26 08:21:00
47558    22033    681    2016-11-26 04:46:00    2016-11-26 04:46:00
47559    22033    782    2016-11-26 23:56:00    2016-11-26 23:56:00
47560    22033    851    2016-11-26 10:09:00    2016-11-26 10:09:00
47561    22033    734    2016-11-26 01:29:00    2016-11-26 01:29:00
47562    22033    899    2016-11-26 15:30:00    2016-11-26 15:30:00
47563    22034    899    2016-11-26 01:02:00    2016-11-26 01:02:00
47564    22034    874    2016-11-26 03:42:00    2016-11-26 03:42:00
47565    22034    672    2016-11-26 03:33:00    2016-11-26 03:33:00
47566    22034    590    2016-11-26 16:26:00    2016-11-26 16:26:00
47567    22034    794    2016-11-26 21:55:00    2016-11-26 21:55:00
47568    22035    487    2016-11-26 03:44:00    2016-11-26 03:44:00
47569    22035    761    2016-11-26 14:00:00    2016-11-26 14:00:00
47570    22035    879    2016-11-26 10:30:00    2016-11-26 10:30:00
47571    22035    805    2016-11-26 21:10:00    2016-11-26 21:10:00
47572    22035    930    2016-11-26 20:42:00    2016-11-26 20:42:00
47573    22036    949    2016-11-26 17:07:00    2016-11-26 17:07:00
47574    22036    711    2016-11-26 04:18:00    2016-11-26 04:18:00
47575    22036    666    2016-11-26 21:40:00    2016-11-26 21:40:00
47576    22036    549    2016-11-26 04:33:00    2016-11-26 04:33:00
47577    22036    923    2016-11-26 10:53:00    2016-11-26 10:53:00
47578    22037    645    2016-11-26 22:26:00    2016-11-26 22:26:00
47579    22037    702    2016-11-26 16:43:00    2016-11-26 16:43:00
47580    22037    783    2016-11-26 17:42:00    2016-11-26 17:42:00
47581    22037    582    2016-11-26 23:43:00    2016-11-26 23:43:00
47582    22037    890    2016-11-26 05:10:00    2016-11-26 05:10:00
47583    22038    799    2016-11-26 07:49:00    2016-11-26 07:49:00
47584    22038    861    2016-11-26 09:50:00    2016-11-26 09:50:00
47585    22038    522    2016-11-26 16:47:00    2016-11-26 16:47:00
47586    22038    745    2016-11-26 20:14:00    2016-11-26 20:14:00
47587    22038    510    2016-11-26 21:51:00    2016-11-26 21:51:00
47588    22039    548    2016-11-26 20:33:00    2016-11-26 20:33:00
47589    22039    610    2016-11-26 15:36:00    2016-11-26 15:36:00
47590    22039    797    2016-11-26 21:22:00    2016-11-26 21:22:00
47591    22039    954    2016-11-26 15:44:00    2016-11-26 15:44:00
47592    22039    674    2016-11-26 06:39:00    2016-11-26 06:39:00
47593    22040    733    2016-11-26 19:02:00    2016-11-26 19:02:00
47594    22040    912    2016-11-26 08:05:00    2016-11-26 08:05:00
47595    22040    868    2016-11-26 21:40:00    2016-11-26 21:40:00
47596    22040    838    2016-11-26 01:40:00    2016-11-26 01:40:00
47597    22040    792    2016-11-26 13:04:00    2016-11-26 13:04:00
47598    22041    734    2016-11-26 01:38:00    2016-11-26 01:38:00
47599    22041    759    2016-11-26 01:14:00    2016-11-26 01:14:00
47600    22041    485    2016-11-26 04:45:00    2016-11-26 04:45:00
47601    22041    933    2016-11-26 06:52:00    2016-11-26 06:52:00
47602    22041    497    2016-11-26 15:52:00    2016-11-26 15:52:00
47603    22042    844    2016-11-26 17:04:00    2016-11-26 17:04:00
47604    22042    953    2016-11-26 17:49:00    2016-11-26 17:49:00
47605    22042    833    2016-11-26 09:30:00    2016-11-26 09:30:00
47606    22042    631    2016-11-26 02:22:00    2016-11-26 02:22:00
47607    22042    880    2016-11-26 12:29:00    2016-11-26 12:29:00
47608    22043    819    2016-11-26 12:32:00    2016-11-26 12:32:00
47609    22043    908    2016-11-26 05:46:00    2016-11-26 05:46:00
47610    22043    672    2016-11-26 23:22:00    2016-11-26 23:22:00
47611    22043    711    2016-11-26 12:59:00    2016-11-26 12:59:00
47612    22043    650    2016-11-26 09:02:00    2016-11-26 09:02:00
47613    22044    559    2016-11-26 16:07:00    2016-11-26 16:07:00
47614    22044    567    2016-11-26 06:04:00    2016-11-26 06:04:00
47615    22044    776    2016-11-26 21:32:00    2016-11-26 21:32:00
47616    22044    627    2016-11-26 11:21:00    2016-11-26 11:21:00
47617    22044    508    2016-11-26 01:37:00    2016-11-26 01:37:00
47618    22045    661    2016-11-26 19:14:00    2016-11-26 19:14:00
47619    22045    601    2016-11-26 03:59:00    2016-11-26 03:59:00
47620    22045    959    2016-11-26 23:55:00    2016-11-26 23:55:00
47621    22045    570    2016-11-26 08:36:00    2016-11-26 08:36:00
47622    22045    827    2016-11-26 02:10:00    2016-11-26 02:10:00
47623    22046    704    2016-11-26 17:54:00    2016-11-26 17:54:00
47624    22046    676    2016-11-26 07:04:00    2016-11-26 07:04:00
47625    22046    724    2016-11-26 05:41:00    2016-11-26 05:41:00
47626    22046    733    2016-11-26 06:18:00    2016-11-26 06:18:00
47627    22046    594    2016-11-26 07:33:00    2016-11-26 07:33:00
47628    22047    848    2016-11-26 21:07:00    2016-11-26 21:07:00
47629    22047    509    2016-11-26 04:21:00    2016-11-26 04:21:00
47630    22047    640    2016-11-26 23:52:00    2016-11-26 23:52:00
47631    22047    465    2016-11-26 15:41:00    2016-11-26 15:41:00
47632    22047    535    2016-11-26 11:37:00    2016-11-26 11:37:00
47633    22048    490    2016-11-26 06:06:00    2016-11-26 06:06:00
47634    22048    599    2016-11-26 01:58:00    2016-11-26 01:58:00
47635    22048    477    2016-11-26 21:25:00    2016-11-26 21:25:00
47636    22048    728    2016-11-26 11:03:00    2016-11-26 11:03:00
47637    22048    778    2016-11-26 16:39:00    2016-11-26 16:39:00
47638    22049    956    2016-11-26 04:41:00    2016-11-26 04:41:00
47639    22049    714    2016-11-26 16:45:00    2016-11-26 16:45:00
47640    22049    875    2016-11-26 21:32:00    2016-11-26 21:32:00
47641    22049    613    2016-11-26 21:14:00    2016-11-26 21:14:00
47642    22049    725    2016-11-26 13:47:00    2016-11-26 13:47:00
47643    22050    850    2016-11-26 07:11:00    2016-11-26 07:11:00
47644    22050    844    2016-11-26 12:44:00    2016-11-26 12:44:00
47645    22050    855    2016-11-26 11:06:00    2016-11-26 11:06:00
47646    22050    615    2016-11-26 01:21:00    2016-11-26 01:21:00
47647    22050    504    2016-11-26 11:45:00    2016-11-26 11:45:00
47648    22051    591    2016-11-26 17:30:00    2016-11-26 17:30:00
47649    22051    504    2016-11-26 06:10:00    2016-11-26 06:10:00
47650    22051    850    2016-11-26 19:05:00    2016-11-26 19:05:00
47651    22051    779    2016-11-26 05:46:00    2016-11-26 05:46:00
47652    22051    558    2016-11-26 13:16:00    2016-11-26 13:16:00
47653    22052    815    2016-11-26 10:08:00    2016-11-26 10:08:00
47654    22052    743    2016-11-26 19:33:00    2016-11-26 19:33:00
47655    22052    552    2016-11-26 22:11:00    2016-11-26 22:11:00
47656    22052    528    2016-11-26 22:21:00    2016-11-26 22:21:00
47657    22052    939    2016-11-26 18:47:00    2016-11-26 18:47:00
47658    22053    540    2016-11-26 05:34:00    2016-11-26 05:34:00
47659    22053    779    2016-11-26 07:08:00    2016-11-26 07:08:00
47660    22053    637    2016-11-26 14:45:00    2016-11-26 14:45:00
47661    22053    492    2016-11-26 20:38:00    2016-11-26 20:38:00
47662    22053    608    2016-11-26 10:28:00    2016-11-26 10:28:00
47663    22054    720    2016-11-26 05:39:00    2016-11-26 05:39:00
47664    22054    666    2016-11-26 18:01:00    2016-11-26 18:01:00
47665    22054    642    2016-11-26 11:34:00    2016-11-26 11:34:00
47666    22054    531    2016-11-26 01:13:00    2016-11-26 01:13:00
47667    22054    717    2016-11-26 12:26:00    2016-11-26 12:26:00
47668    22055    660    2016-11-26 04:06:00    2016-11-26 04:06:00
47669    22055    542    2016-11-26 18:01:00    2016-11-26 18:01:00
47670    22055    602    2016-11-26 10:18:00    2016-11-26 10:18:00
47671    22055    874    2016-11-26 20:11:00    2016-11-26 20:11:00
47672    22055    580    2016-11-26 03:15:00    2016-11-26 03:15:00
47673    22056    757    2016-11-26 10:54:00    2016-11-26 10:54:00
47674    22056    592    2016-11-26 05:30:00    2016-11-26 05:30:00
47675    22056    564    2016-11-26 07:51:00    2016-11-26 07:51:00
47676    22056    931    2016-11-26 11:39:00    2016-11-26 11:39:00
47677    22056    684    2016-11-26 11:11:00    2016-11-26 11:11:00
47678    22057    649    2016-11-26 20:21:00    2016-11-26 20:21:00
47679    22057    803    2016-11-26 20:12:00    2016-11-26 20:12:00
47680    22057    546    2016-11-26 22:58:00    2016-11-26 22:58:00
47681    22057    911    2016-11-26 21:29:00    2016-11-26 21:29:00
47682    22057    638    2016-11-26 02:25:00    2016-11-26 02:25:00
47683    22058    891    2016-11-26 11:32:00    2016-11-26 11:32:00
47684    22058    742    2016-11-26 05:30:00    2016-11-26 05:30:00
47685    22058    545    2016-11-26 08:13:00    2016-11-26 08:13:00
47686    22058    645    2016-11-26 18:27:00    2016-11-26 18:27:00
47687    22058    536    2016-11-26 15:08:00    2016-11-26 15:08:00
47688    22059    685    2016-11-26 14:00:00    2016-11-26 14:00:00
47689    22059    840    2016-11-26 13:49:00    2016-11-26 13:49:00
47690    22059    920    2016-11-26 17:53:00    2016-11-26 17:53:00
47691    22059    485    2016-11-26 19:45:00    2016-11-26 19:45:00
47692    22059    594    2016-11-26 15:33:00    2016-11-26 15:33:00
47693    22060    601    2016-11-26 01:16:00    2016-11-26 01:16:00
47694    22060    777    2016-11-26 23:31:00    2016-11-26 23:31:00
47695    22060    652    2016-11-26 10:21:00    2016-11-26 10:21:00
47696    22060    481    2016-11-26 12:00:00    2016-11-26 12:00:00
47697    22060    661    2016-11-26 16:58:00    2016-11-26 16:58:00
47698    22061    697    2016-11-26 13:52:00    2016-11-26 13:52:00
47699    22061    959    2016-11-26 04:45:00    2016-11-26 04:45:00
47700    22061    623    2016-11-26 08:37:00    2016-11-26 08:37:00
47701    22061    794    2016-11-26 09:47:00    2016-11-26 09:47:00
47702    22061    659    2016-11-26 06:41:00    2016-11-26 06:41:00
47703    22062    743    2016-11-26 22:02:00    2016-11-26 22:02:00
47704    22062    464    2016-11-26 21:32:00    2016-11-26 21:32:00
47705    22062    485    2016-11-26 06:27:00    2016-11-26 06:27:00
47706    22062    511    2016-11-26 02:14:00    2016-11-26 02:14:00
47707    22062    892    2016-11-26 10:20:00    2016-11-26 10:20:00
47708    22063    849    2016-11-26 11:32:00    2016-11-26 11:32:00
47709    22063    707    2016-11-26 09:15:00    2016-11-26 09:15:00
47710    22063    866    2016-11-26 06:03:00    2016-11-26 06:03:00
47711    22063    526    2016-11-26 14:02:00    2016-11-26 14:02:00
47712    22063    579    2016-11-26 14:44:00    2016-11-26 14:44:00
47713    22064    728    2016-11-26 21:43:00    2016-11-26 21:43:00
47714    22064    903    2016-11-26 19:50:00    2016-11-26 19:50:00
47715    22064    867    2016-11-26 02:04:00    2016-11-26 02:04:00
47716    22064    949    2016-11-26 08:21:00    2016-11-26 08:21:00
47717    22064    588    2016-11-26 11:27:00    2016-11-26 11:27:00
47718    22065    842    2016-11-26 17:08:00    2016-11-26 17:08:00
47719    22065    847    2016-11-26 16:19:00    2016-11-26 16:19:00
47720    22065    524    2016-11-26 12:00:00    2016-11-26 12:00:00
47721    22065    893    2016-11-26 05:27:00    2016-11-26 05:27:00
47722    22065    911    2016-11-26 10:47:00    2016-11-26 10:47:00
47723    22066    720    2016-11-26 10:38:00    2016-11-26 10:38:00
47724    22066    575    2016-11-26 07:41:00    2016-11-26 07:41:00
47725    22066    509    2016-11-26 07:55:00    2016-11-26 07:55:00
47726    22066    534    2016-11-26 18:35:00    2016-11-26 18:35:00
47727    22066    519    2016-11-26 18:59:00    2016-11-26 18:59:00
47728    22067    819    2016-11-26 03:05:00    2016-11-26 03:05:00
47729    22067    654    2016-11-26 15:45:00    2016-11-26 15:45:00
47730    22067    818    2016-11-26 20:18:00    2016-11-26 20:18:00
47731    22067    799    2016-11-26 06:39:00    2016-11-26 06:39:00
47732    22067    746    2016-11-26 20:09:00    2016-11-26 20:09:00
47733    22068    535    2016-11-26 01:35:00    2016-11-26 01:35:00
47734    22068    791    2016-11-26 16:44:00    2016-11-26 16:44:00
47735    22068    840    2016-11-26 01:58:00    2016-11-26 01:58:00
47736    22068    801    2016-11-26 23:14:00    2016-11-26 23:14:00
47737    22068    726    2016-11-26 02:41:00    2016-11-26 02:41:00
47738    22069    695    2016-11-26 15:41:00    2016-11-26 15:41:00
47739    22069    548    2016-11-26 19:17:00    2016-11-26 19:17:00
47740    22069    906    2016-11-26 21:41:00    2016-11-26 21:41:00
47741    22069    814    2016-11-26 01:16:00    2016-11-26 01:16:00
47742    22069    584    2016-11-26 14:00:00    2016-11-26 14:00:00
47743    22070    869    2016-11-26 07:55:00    2016-11-26 07:55:00
47744    22070    533    2016-11-26 08:21:00    2016-11-26 08:21:00
47745    22070    522    2016-11-26 12:27:00    2016-11-26 12:27:00
47746    22070    538    2016-11-26 07:10:00    2016-11-26 07:10:00
47747    22070    770    2016-11-26 13:34:00    2016-11-26 13:34:00
47748    22071    533    2016-11-26 03:27:00    2016-11-26 03:27:00
47749    22071    573    2016-11-26 11:30:00    2016-11-26 11:30:00
47750    22071    573    2016-11-26 04:19:00    2016-11-26 04:19:00
47751    22071    945    2016-11-26 07:39:00    2016-11-26 07:39:00
47752    22071    607    2016-11-26 04:58:00    2016-11-26 04:58:00
47753    22072    566    2016-11-26 22:24:00    2016-11-26 22:24:00
47754    22072    951    2016-11-26 17:22:00    2016-11-26 17:22:00
47755    22072    832    2016-11-26 16:50:00    2016-11-26 16:50:00
47756    22072    482    2016-11-26 21:12:00    2016-11-26 21:12:00
47757    22072    563    2016-11-26 05:52:00    2016-11-26 05:52:00
47758    22073    742    2016-11-26 06:44:00    2016-11-26 06:44:00
47759    22073    942    2016-11-26 10:42:00    2016-11-26 10:42:00
47760    22073    799    2016-11-26 18:13:00    2016-11-26 18:13:00
47761    22073    953    2016-11-26 14:03:00    2016-11-26 14:03:00
47762    22073    557    2016-11-26 03:33:00    2016-11-26 03:33:00
47763    22074    895    2016-11-26 17:56:00    2016-11-26 17:56:00
47764    22074    652    2016-11-26 23:03:00    2016-11-26 23:03:00
47765    22074    623    2016-11-26 19:00:00    2016-11-26 19:00:00
47766    22074    835    2016-11-26 10:07:00    2016-11-26 10:07:00
47767    22074    665    2016-11-26 01:33:00    2016-11-26 01:33:00
47768    22075    630    2016-11-26 11:17:00    2016-11-26 11:17:00
47769    22075    579    2016-11-26 18:12:00    2016-11-26 18:12:00
47770    22075    623    2016-11-26 05:00:00    2016-11-26 05:00:00
47771    22075    511    2016-11-26 09:17:00    2016-11-26 09:17:00
47772    22075    811    2016-11-26 06:12:00    2016-11-26 06:12:00
47773    22076    626    2016-11-26 12:58:00    2016-11-26 12:58:00
47774    22076    488    2016-11-26 09:54:00    2016-11-26 09:54:00
47775    22076    481    2016-11-26 19:56:00    2016-11-26 19:56:00
47776    22076    736    2016-11-26 18:18:00    2016-11-26 18:18:00
47777    22076    704    2016-11-26 10:51:00    2016-11-26 10:51:00
47778    22077    923    2016-11-26 12:19:00    2016-11-26 12:19:00
47779    22077    669    2016-11-26 04:23:00    2016-11-26 04:23:00
47780    22077    495    2016-11-26 06:56:00    2016-11-26 06:56:00
47781    22077    955    2016-11-26 08:18:00    2016-11-26 08:18:00
47782    22077    518    2016-11-26 18:20:00    2016-11-26 18:20:00
47783    22078    867    2016-11-26 23:24:00    2016-11-26 23:24:00
47784    22078    589    2016-11-26 04:00:00    2016-11-26 04:00:00
47785    22078    846    2016-11-26 12:04:00    2016-11-26 12:04:00
47786    22078    761    2016-11-26 04:57:00    2016-11-26 04:57:00
47787    22078    558    2016-11-26 17:02:00    2016-11-26 17:02:00
47788    22079    922    2016-11-26 04:43:00    2016-11-26 04:43:00
47789    22079    745    2016-11-26 22:46:00    2016-11-26 22:46:00
47790    22079    813    2016-11-26 10:48:00    2016-11-26 10:48:00
47791    22079    734    2016-11-26 20:48:00    2016-11-26 20:48:00
47792    22079    960    2016-11-26 18:31:00    2016-11-26 18:31:00
47793    22080    478    2016-11-26 16:17:00    2016-11-26 16:17:00
47794    22080    789    2016-11-26 02:57:00    2016-11-26 02:57:00
47795    22080    478    2016-11-26 22:57:00    2016-11-26 22:57:00
47796    22080    474    2016-11-26 03:10:00    2016-11-26 03:10:00
47797    22080    612    2016-11-26 17:17:00    2016-11-26 17:17:00
47798    22081    952    2016-11-26 04:39:00    2016-11-26 04:39:00
47799    22081    795    2016-11-26 04:54:00    2016-11-26 04:54:00
47800    22081    555    2016-11-26 22:19:00    2016-11-26 22:19:00
47801    22081    943    2016-11-26 15:08:00    2016-11-26 15:08:00
47802    22081    902    2016-11-26 19:08:00    2016-11-26 19:08:00
47803    22082    501    2016-11-26 02:00:00    2016-11-26 02:00:00
47804    22082    538    2016-11-26 02:32:00    2016-11-26 02:32:00
47805    22082    753    2016-11-26 11:28:00    2016-11-26 11:28:00
47806    22082    588    2016-11-26 07:22:00    2016-11-26 07:22:00
47807    22082    485    2016-11-26 17:11:00    2016-11-26 17:11:00
47808    22083    722    2016-11-26 23:26:00    2016-11-26 23:26:00
47809    22083    492    2016-11-26 15:45:00    2016-11-26 15:45:00
47810    22083    733    2016-11-26 10:53:00    2016-11-26 10:53:00
47811    22083    676    2016-11-26 08:09:00    2016-11-26 08:09:00
47812    22083    817    2016-11-26 10:00:00    2016-11-26 10:00:00
47813    22084    621    2016-11-26 21:08:00    2016-11-26 21:08:00
47814    22084    955    2016-11-26 22:38:00    2016-11-26 22:38:00
47815    22084    684    2016-11-26 15:07:00    2016-11-26 15:07:00
47816    22084    888    2016-11-26 03:58:00    2016-11-26 03:58:00
47817    22084    639    2016-11-26 19:57:00    2016-11-26 19:57:00
47818    22085    917    2016-11-26 11:31:00    2016-11-26 11:31:00
47819    22085    890    2016-11-26 04:23:00    2016-11-26 04:23:00
47820    22085    778    2016-11-26 06:51:00    2016-11-26 06:51:00
47821    22085    621    2016-11-26 13:00:00    2016-11-26 13:00:00
47822    22085    582    2016-11-26 05:51:00    2016-11-26 05:51:00
47823    22086    676    2016-11-26 08:08:00    2016-11-26 08:08:00
47824    22086    894    2016-11-26 14:32:00    2016-11-26 14:32:00
47825    22086    618    2016-11-26 20:50:00    2016-11-26 20:50:00
47826    22086    518    2016-11-26 08:36:00    2016-11-26 08:36:00
47827    22086    715    2016-11-26 10:04:00    2016-11-26 10:04:00
47828    22087    736    2016-11-26 20:09:00    2016-11-26 20:09:00
47829    22087    553    2016-11-26 14:45:00    2016-11-26 14:45:00
47830    22087    944    2016-11-26 23:50:00    2016-11-26 23:50:00
47831    22087    655    2016-11-26 19:56:00    2016-11-26 19:56:00
47832    22087    924    2016-11-26 12:10:00    2016-11-26 12:10:00
47833    22088    643    2016-11-26 19:10:00    2016-11-26 19:10:00
47834    22088    886    2016-11-26 17:28:00    2016-11-26 17:28:00
47835    22088    808    2016-11-26 21:34:00    2016-11-26 21:34:00
47836    22088    680    2016-11-26 18:19:00    2016-11-26 18:19:00
47837    22088    746    2016-11-26 10:48:00    2016-11-26 10:48:00
47838    22089    841    2016-11-26 10:23:00    2016-11-26 10:23:00
47839    22089    589    2016-11-26 05:58:00    2016-11-26 05:58:00
47840    22089    893    2016-11-26 09:34:00    2016-11-26 09:34:00
47841    22089    475    2016-11-26 22:33:00    2016-11-26 22:33:00
47842    22089    630    2016-11-26 14:03:00    2016-11-26 14:03:00
47843    22090    906    2016-11-26 04:11:00    2016-11-26 04:11:00
47844    22090    477    2016-11-26 04:32:00    2016-11-26 04:32:00
47845    22090    789    2016-11-26 10:52:00    2016-11-26 10:52:00
47846    22090    831    2016-11-26 23:20:00    2016-11-26 23:20:00
47847    22090    545    2016-11-26 22:20:00    2016-11-26 22:20:00
47848    22091    827    2016-11-26 03:16:00    2016-11-26 03:16:00
47849    22091    572    2016-11-26 07:40:00    2016-11-26 07:40:00
47850    22091    731    2016-11-26 23:58:00    2016-11-26 23:58:00
47851    22091    519    2016-11-26 05:31:00    2016-11-26 05:31:00
47852    22091    891    2016-11-26 18:04:00    2016-11-26 18:04:00
47853    22092    697    2016-11-26 11:54:00    2016-11-26 11:54:00
47854    22092    550    2016-11-26 01:47:00    2016-11-26 01:47:00
47855    22092    852    2016-11-26 09:51:00    2016-11-26 09:51:00
47856    22092    828    2016-11-26 10:29:00    2016-11-26 10:29:00
47857    22092    646    2016-11-26 03:49:00    2016-11-26 03:49:00
47858    22093    829    2016-11-26 07:27:00    2016-11-26 07:27:00
47859    22093    838    2016-11-26 16:03:00    2016-11-26 16:03:00
47860    22093    605    2016-11-26 21:00:00    2016-11-26 21:00:00
47861    22093    719    2016-11-26 17:57:00    2016-11-26 17:57:00
47862    22093    720    2016-11-26 03:29:00    2016-11-26 03:29:00
47863    22094    693    2016-11-26 23:12:00    2016-11-26 23:12:00
47864    22094    628    2016-11-26 21:35:00    2016-11-26 21:35:00
47865    22094    764    2016-11-26 19:59:00    2016-11-26 19:59:00
47866    22094    862    2016-11-26 03:47:00    2016-11-26 03:47:00
47867    22094    495    2016-11-26 01:32:00    2016-11-26 01:32:00
47868    22095    944    2016-11-26 18:40:00    2016-11-26 18:40:00
47869    22095    525    2016-11-26 05:18:00    2016-11-26 05:18:00
47870    22095    821    2016-11-26 16:42:00    2016-11-26 16:42:00
47871    22095    523    2016-11-26 19:39:00    2016-11-26 19:39:00
47872    22095    814    2016-11-26 10:18:00    2016-11-26 10:18:00
47873    22096    668    2016-11-26 05:15:00    2016-11-26 05:15:00
47874    22096    824    2016-11-26 07:00:00    2016-11-26 07:00:00
47875    22096    661    2016-11-26 13:32:00    2016-11-26 13:32:00
47876    22096    468    2016-11-26 13:17:00    2016-11-26 13:17:00
47877    22096    790    2016-11-26 22:31:00    2016-11-26 22:31:00
47878    22097    599    2016-11-26 18:33:00    2016-11-26 18:33:00
47879    22097    742    2016-11-26 09:15:00    2016-11-26 09:15:00
47880    22097    482    2016-11-26 06:53:00    2016-11-26 06:53:00
47881    22097    481    2016-11-26 13:34:00    2016-11-26 13:34:00
47882    22097    691    2016-11-26 06:45:00    2016-11-26 06:45:00
47883    22098    467    2016-11-26 09:55:00    2016-11-26 09:55:00
47884    22098    667    2016-11-26 22:05:00    2016-11-26 22:05:00
47885    22098    875    2016-11-26 15:54:00    2016-11-26 15:54:00
47886    22098    925    2016-11-26 18:47:00    2016-11-26 18:47:00
47887    22098    709    2016-11-26 18:31:00    2016-11-26 18:31:00
47888    22099    791    2016-11-26 15:09:00    2016-11-26 15:09:00
47889    22099    549    2016-11-26 18:00:00    2016-11-26 18:00:00
47890    22099    891    2016-11-26 17:38:00    2016-11-26 17:38:00
47891    22099    815    2016-11-26 16:51:00    2016-11-26 16:51:00
47892    22099    851    2016-11-26 21:18:00    2016-11-26 21:18:00
47893    22100    818    2016-11-26 08:46:00    2016-11-26 08:46:00
47894    22100    690    2016-11-26 08:21:00    2016-11-26 08:21:00
47895    22100    611    2016-11-26 06:01:00    2016-11-26 06:01:00
47896    22100    676    2016-11-26 17:08:00    2016-11-26 17:08:00
47897    22100    632    2016-11-26 21:01:00    2016-11-26 21:01:00
47898    22101    565    2016-11-26 11:20:00    2016-11-26 11:20:00
47899    22101    851    2016-11-26 16:18:00    2016-11-26 16:18:00
47900    22101    926    2016-11-26 10:27:00    2016-11-26 10:27:00
47901    22101    935    2016-11-26 15:28:00    2016-11-26 15:28:00
47902    22101    700    2016-11-26 15:04:00    2016-11-26 15:04:00
47903    22102    902    2016-11-26 16:01:00    2016-11-26 16:01:00
47904    22102    939    2016-11-26 01:31:00    2016-11-26 01:31:00
47905    22102    850    2016-11-26 06:14:00    2016-11-26 06:14:00
47906    22102    952    2016-11-26 15:44:00    2016-11-26 15:44:00
47907    22102    808    2016-11-26 03:39:00    2016-11-26 03:39:00
47908    22103    594    2016-11-26 06:52:00    2016-11-26 06:52:00
47909    22103    882    2016-11-26 05:06:00    2016-11-26 05:06:00
47910    22103    846    2016-11-26 21:39:00    2016-11-26 21:39:00
47911    22103    617    2016-11-26 16:51:00    2016-11-26 16:51:00
47912    22103    776    2016-11-26 05:12:00    2016-11-26 05:12:00
47913    22104    572    2016-11-26 20:10:00    2016-11-26 20:10:00
47914    22104    467    2016-11-26 22:11:00    2016-11-26 22:11:00
47915    22104    848    2016-11-26 15:37:00    2016-11-26 15:37:00
47916    22104    544    2016-11-26 22:20:00    2016-11-26 22:20:00
47917    22104    562    2016-11-26 04:51:00    2016-11-26 04:51:00
47918    22105    630    2016-11-26 21:37:00    2016-11-26 21:37:00
47919    22105    820    2016-11-26 02:46:00    2016-11-26 02:46:00
47920    22105    895    2016-11-26 04:56:00    2016-11-26 04:56:00
47921    22105    896    2016-11-26 19:49:00    2016-11-26 19:49:00
47922    22105    650    2016-11-26 17:25:00    2016-11-26 17:25:00
47923    22106    788    2016-11-27 17:22:00    2016-11-27 17:22:00
47924    22106    749    2016-11-27 06:33:00    2016-11-27 06:33:00
47925    22106    527    2016-11-27 12:56:00    2016-11-27 12:56:00
47926    22106    642    2016-11-27 20:36:00    2016-11-27 20:36:00
47927    22106    676    2016-11-27 01:05:00    2016-11-27 01:05:00
47928    22107    512    2016-11-27 14:05:00    2016-11-27 14:05:00
47929    22107    494    2016-11-27 04:42:00    2016-11-27 04:42:00
47930    22107    464    2016-11-27 11:54:00    2016-11-27 11:54:00
47931    22107    610    2016-11-27 22:36:00    2016-11-27 22:36:00
47932    22107    641    2016-11-27 13:41:00    2016-11-27 13:41:00
47933    22108    741    2016-11-27 01:12:00    2016-11-27 01:12:00
47934    22108    937    2016-11-27 19:48:00    2016-11-27 19:48:00
47935    22108    783    2016-11-27 11:20:00    2016-11-27 11:20:00
47936    22108    510    2016-11-27 09:00:00    2016-11-27 09:00:00
47937    22108    669    2016-11-27 17:47:00    2016-11-27 17:47:00
47938    22109    547    2016-11-27 20:30:00    2016-11-27 20:30:00
47939    22109    773    2016-11-27 06:44:00    2016-11-27 06:44:00
47940    22109    511    2016-11-27 21:52:00    2016-11-27 21:52:00
47941    22109    526    2016-11-27 05:31:00    2016-11-27 05:31:00
47942    22109    770    2016-11-27 21:28:00    2016-11-27 21:28:00
47943    22110    531    2016-11-27 18:38:00    2016-11-27 18:38:00
47944    22110    619    2016-11-27 03:18:00    2016-11-27 03:18:00
47945    22110    709    2016-11-27 01:30:00    2016-11-27 01:30:00
47946    22110    537    2016-11-27 11:49:00    2016-11-27 11:49:00
47947    22110    825    2016-11-27 02:04:00    2016-11-27 02:04:00
47948    22111    778    2016-11-27 15:54:00    2016-11-27 15:54:00
47949    22111    669    2016-11-27 10:29:00    2016-11-27 10:29:00
47950    22111    805    2016-11-27 21:31:00    2016-11-27 21:31:00
47951    22111    473    2016-11-27 13:54:00    2016-11-27 13:54:00
47952    22111    800    2016-11-27 14:39:00    2016-11-27 14:39:00
47953    22112    592    2016-11-27 03:53:00    2016-11-27 03:53:00
47954    22112    704    2016-11-27 23:10:00    2016-11-27 23:10:00
47955    22112    677    2016-11-27 23:52:00    2016-11-27 23:52:00
47956    22112    696    2016-11-27 19:50:00    2016-11-27 19:50:00
47957    22112    906    2016-11-27 05:27:00    2016-11-27 05:27:00
47958    22113    635    2016-11-27 05:16:00    2016-11-27 05:16:00
47959    22113    855    2016-11-27 02:55:00    2016-11-27 02:55:00
47960    22113    954    2016-11-27 12:49:00    2016-11-27 12:49:00
47961    22113    673    2016-11-27 12:27:00    2016-11-27 12:27:00
47962    22113    630    2016-11-27 20:07:00    2016-11-27 20:07:00
47963    22114    716    2016-11-27 20:50:00    2016-11-27 20:50:00
47964    22114    620    2016-11-27 15:43:00    2016-11-27 15:43:00
47965    22114    818    2016-11-27 09:21:00    2016-11-27 09:21:00
47966    22114    872    2016-11-27 21:56:00    2016-11-27 21:56:00
47967    22114    961    2016-11-27 23:49:00    2016-11-27 23:49:00
47968    22115    465    2016-11-27 21:11:00    2016-11-27 21:11:00
47969    22115    480    2016-11-27 22:22:00    2016-11-27 22:22:00
47970    22115    729    2016-11-27 20:46:00    2016-11-27 20:46:00
47971    22115    606    2016-11-27 23:39:00    2016-11-27 23:39:00
47972    22115    788    2016-11-27 02:56:00    2016-11-27 02:56:00
47973    22116    677    2016-11-27 05:44:00    2016-11-27 05:44:00
47974    22116    624    2016-11-27 03:33:00    2016-11-27 03:33:00
47975    22116    521    2016-11-27 16:18:00    2016-11-27 16:18:00
47976    22116    504    2016-11-27 14:31:00    2016-11-27 14:31:00
47977    22116    497    2016-11-27 11:12:00    2016-11-27 11:12:00
47978    22117    481    2016-11-27 23:22:00    2016-11-27 23:22:00
47979    22117    567    2016-11-27 11:11:00    2016-11-27 11:11:00
47980    22117    928    2016-11-27 13:00:00    2016-11-27 13:00:00
47981    22117    598    2016-11-27 04:37:00    2016-11-27 04:37:00
47982    22117    551    2016-11-27 13:57:00    2016-11-27 13:57:00
47983    22118    848    2016-11-27 21:00:00    2016-11-27 21:00:00
47984    22118    711    2016-11-27 08:38:00    2016-11-27 08:38:00
47985    22118    671    2016-11-27 11:28:00    2016-11-27 11:28:00
47986    22118    691    2016-11-27 07:07:00    2016-11-27 07:07:00
47987    22118    559    2016-11-27 22:35:00    2016-11-27 22:35:00
47988    22119    472    2016-11-27 14:02:00    2016-11-27 14:02:00
47989    22119    901    2016-11-27 02:18:00    2016-11-27 02:18:00
47990    22119    499    2016-11-27 16:49:00    2016-11-27 16:49:00
47991    22119    960    2016-11-27 19:08:00    2016-11-27 19:08:00
47992    22119    956    2016-11-27 14:37:00    2016-11-27 14:37:00
47993    22120    546    2016-11-27 04:17:00    2016-11-27 04:17:00
47994    22120    558    2016-11-27 07:00:00    2016-11-27 07:00:00
47995    22120    741    2016-11-27 06:00:00    2016-11-27 06:00:00
47996    22120    694    2016-11-27 15:59:00    2016-11-27 15:59:00
47997    22120    568    2016-11-27 16:55:00    2016-11-27 16:55:00
47998    22121    700    2016-11-27 10:27:00    2016-11-27 10:27:00
47999    22121    849    2016-11-27 06:19:00    2016-11-27 06:19:00
48000    22121    853    2016-11-27 23:45:00    2016-11-27 23:45:00
48001    22121    603    2016-11-27 12:00:00    2016-11-27 12:00:00
48002    22121    810    2016-11-27 14:01:00    2016-11-27 14:01:00
48003    22122    569    2016-11-27 07:51:00    2016-11-27 07:51:00
48004    22122    726    2016-11-27 11:16:00    2016-11-27 11:16:00
48005    22122    689    2016-11-27 22:07:00    2016-11-27 22:07:00
48006    22122    569    2016-11-27 15:03:00    2016-11-27 15:03:00
48007    22122    913    2016-11-27 16:33:00    2016-11-27 16:33:00
48008    22123    806    2016-11-27 05:46:00    2016-11-27 05:46:00
48009    22123    907    2016-11-27 16:52:00    2016-11-27 16:52:00
48010    22123    855    2016-11-27 20:40:00    2016-11-27 20:40:00
48011    22123    544    2016-11-27 13:39:00    2016-11-27 13:39:00
48012    22123    655    2016-11-27 16:02:00    2016-11-27 16:02:00
48013    22124    567    2016-11-27 18:51:00    2016-11-27 18:51:00
48014    22124    665    2016-11-27 09:19:00    2016-11-27 09:19:00
48015    22124    552    2016-11-27 23:37:00    2016-11-27 23:37:00
48016    22124    753    2016-11-27 11:00:00    2016-11-27 11:00:00
48017    22124    818    2016-11-27 15:38:00    2016-11-27 15:38:00
48018    22125    476    2016-11-27 23:57:00    2016-11-27 23:57:00
48019    22125    767    2016-11-27 01:32:00    2016-11-27 01:32:00
48020    22125    597    2016-11-27 13:58:00    2016-11-27 13:58:00
48021    22125    597    2016-11-27 06:53:00    2016-11-27 06:53:00
48022    22125    876    2016-11-27 01:17:00    2016-11-27 01:17:00
48023    22126    547    2016-11-27 04:45:00    2016-11-27 04:45:00
48024    22126    952    2016-11-27 11:50:00    2016-11-27 11:50:00
48025    22126    633    2016-11-27 14:54:00    2016-11-27 14:54:00
48026    22126    746    2016-11-27 12:08:00    2016-11-27 12:08:00
48027    22126    876    2016-11-27 08:50:00    2016-11-27 08:50:00
48028    22127    868    2016-11-27 21:00:00    2016-11-27 21:00:00
48029    22127    508    2016-11-27 08:30:00    2016-11-27 08:30:00
48030    22127    629    2016-11-27 09:33:00    2016-11-27 09:33:00
48031    22127    901    2016-11-27 18:42:00    2016-11-27 18:42:00
48032    22127    578    2016-11-27 11:00:00    2016-11-27 11:00:00
48033    22128    961    2016-11-27 09:41:00    2016-11-27 09:41:00
48034    22128    609    2016-11-27 06:31:00    2016-11-27 06:31:00
48035    22128    941    2016-11-27 10:54:00    2016-11-27 10:54:00
48036    22128    739    2016-11-27 10:40:00    2016-11-27 10:40:00
48037    22128    639    2016-11-27 01:30:00    2016-11-27 01:30:00
48038    22129    857    2016-11-27 08:32:00    2016-11-27 08:32:00
48039    22129    659    2016-11-27 19:21:00    2016-11-27 19:21:00
48040    22129    588    2016-11-27 17:51:00    2016-11-27 17:51:00
48041    22129    550    2016-11-27 17:13:00    2016-11-27 17:13:00
48042    22129    795    2016-11-27 17:28:00    2016-11-27 17:28:00
48043    22130    886    2016-11-27 20:36:00    2016-11-27 20:36:00
48044    22130    844    2016-11-27 08:13:00    2016-11-27 08:13:00
48045    22130    808    2016-11-27 01:30:00    2016-11-27 01:30:00
48046    22130    524    2016-11-27 07:00:00    2016-11-27 07:00:00
48047    22130    751    2016-11-27 04:12:00    2016-11-27 04:12:00
48048    22131    592    2016-11-27 12:43:00    2016-11-27 12:43:00
48049    22131    848    2016-11-27 11:30:00    2016-11-27 11:30:00
48050    22131    791    2016-11-27 14:36:00    2016-11-27 14:36:00
48051    22131    610    2016-11-27 15:02:00    2016-11-27 15:02:00
48052    22131    544    2016-11-27 18:59:00    2016-11-27 18:59:00
48053    22132    494    2016-11-27 01:59:00    2016-11-27 01:59:00
48054    22132    471    2016-11-27 10:14:00    2016-11-27 10:14:00
48055    22132    696    2016-11-27 22:08:00    2016-11-27 22:08:00
48056    22132    840    2016-11-27 06:34:00    2016-11-27 06:34:00
48057    22132    773    2016-11-27 05:56:00    2016-11-27 05:56:00
48058    22133    712    2016-11-27 07:46:00    2016-11-27 07:46:00
48059    22133    744    2016-11-27 03:46:00    2016-11-27 03:46:00
48060    22133    640    2016-11-27 14:11:00    2016-11-27 14:11:00
48061    22133    633    2016-11-27 02:04:00    2016-11-27 02:04:00
48062    22133    817    2016-11-27 21:52:00    2016-11-27 21:52:00
48063    22134    746    2016-11-27 20:12:00    2016-11-27 20:12:00
48064    22134    470    2016-11-27 05:56:00    2016-11-27 05:56:00
48065    22134    555    2016-11-27 11:43:00    2016-11-27 11:43:00
48066    22134    877    2016-11-27 13:06:00    2016-11-27 13:06:00
48067    22134    698    2016-11-27 19:37:00    2016-11-27 19:37:00
48068    22135    640    2016-11-27 14:16:00    2016-11-27 14:16:00
48069    22135    525    2016-11-27 07:12:00    2016-11-27 07:12:00
48070    22135    778    2016-11-27 20:22:00    2016-11-27 20:22:00
48071    22135    688    2016-11-27 19:29:00    2016-11-27 19:29:00
48072    22135    831    2016-11-27 07:54:00    2016-11-27 07:54:00
48073    22136    728    2016-11-27 23:35:00    2016-11-27 23:35:00
48074    22136    675    2016-11-27 05:21:00    2016-11-27 05:21:00
48075    22136    532    2016-11-27 16:44:00    2016-11-27 16:44:00
48076    22136    861    2016-11-27 06:48:00    2016-11-27 06:48:00
48077    22136    481    2016-11-27 23:28:00    2016-11-27 23:28:00
48078    22137    780    2016-11-27 21:56:00    2016-11-27 21:56:00
48079    22137    840    2016-11-27 22:50:00    2016-11-27 22:50:00
48080    22137    776    2016-11-27 03:42:00    2016-11-27 03:42:00
48081    22137    505    2016-11-27 19:37:00    2016-11-27 19:37:00
48082    22137    479    2016-11-27 16:18:00    2016-11-27 16:18:00
48083    22138    617    2016-11-27 05:03:00    2016-11-27 05:03:00
48084    22138    785    2016-11-27 10:51:00    2016-11-27 10:51:00
48085    22138    953    2016-11-27 18:38:00    2016-11-27 18:38:00
48086    22138    943    2016-11-27 03:35:00    2016-11-27 03:35:00
48087    22138    895    2016-11-27 17:17:00    2016-11-27 17:17:00
48088    22139    863    2016-11-27 13:47:00    2016-11-27 13:47:00
48089    22139    893    2016-11-27 04:48:00    2016-11-27 04:48:00
48090    22139    839    2016-11-27 11:09:00    2016-11-27 11:09:00
48091    22139    710    2016-11-27 05:49:00    2016-11-27 05:49:00
48092    22139    716    2016-11-27 09:45:00    2016-11-27 09:45:00
48093    22140    580    2016-11-27 18:59:00    2016-11-27 18:59:00
48094    22140    821    2016-11-27 07:59:00    2016-11-27 07:59:00
48095    22140    702    2016-11-27 14:20:00    2016-11-27 14:20:00
48096    22140    681    2016-11-27 13:50:00    2016-11-27 13:50:00
48097    22140    523    2016-11-27 14:19:00    2016-11-27 14:19:00
48098    22141    470    2016-11-27 14:25:00    2016-11-27 14:25:00
48099    22141    572    2016-11-27 05:49:00    2016-11-27 05:49:00
48100    22141    486    2016-11-27 12:00:00    2016-11-27 12:00:00
48101    22141    564    2016-11-27 14:03:00    2016-11-27 14:03:00
48102    22141    481    2016-11-27 06:27:00    2016-11-27 06:27:00
48103    22142    857    2016-11-27 02:57:00    2016-11-27 02:57:00
48104    22142    944    2016-11-27 16:29:00    2016-11-27 16:29:00
48105    22142    468    2016-11-27 16:28:00    2016-11-27 16:28:00
48106    22142    725    2016-11-27 13:31:00    2016-11-27 13:31:00
48107    22142    758    2016-11-27 17:41:00    2016-11-27 17:41:00
48108    22143    698    2016-11-27 04:07:00    2016-11-27 04:07:00
48109    22143    683    2016-11-27 01:30:00    2016-11-27 01:30:00
48110    22143    492    2016-11-27 01:02:00    2016-11-27 01:02:00
48111    22143    518    2016-11-27 01:04:00    2016-11-27 01:04:00
48112    22143    881    2016-11-27 03:35:00    2016-11-27 03:35:00
48113    22144    711    2016-11-27 21:55:00    2016-11-27 21:55:00
48114    22144    585    2016-11-27 06:45:00    2016-11-27 06:45:00
48115    22144    937    2016-11-27 21:03:00    2016-11-27 21:03:00
48116    22144    472    2016-11-27 09:00:00    2016-11-27 09:00:00
48117    22144    523    2016-11-27 09:03:00    2016-11-27 09:03:00
48118    22145    768    2016-11-27 17:42:00    2016-11-27 17:42:00
48119    22145    898    2016-11-27 14:00:00    2016-11-27 14:00:00
48120    22145    499    2016-11-27 02:35:00    2016-11-27 02:35:00
48121    22145    495    2016-11-27 07:47:00    2016-11-27 07:47:00
48122    22145    938    2016-11-27 17:45:00    2016-11-27 17:45:00
48123    22146    926    2016-11-27 23:12:00    2016-11-27 23:12:00
48124    22146    891    2016-11-27 23:10:00    2016-11-27 23:10:00
48125    22146    575    2016-11-27 16:23:00    2016-11-27 16:23:00
48126    22146    663    2016-11-27 17:22:00    2016-11-27 17:22:00
48127    22146    492    2016-11-27 07:03:00    2016-11-27 07:03:00
48128    22147    600    2016-11-27 14:50:00    2016-11-27 14:50:00
48129    22147    482    2016-11-27 09:35:00    2016-11-27 09:35:00
48130    22147    907    2016-11-27 18:00:00    2016-11-27 18:00:00
48131    22147    747    2016-11-27 22:57:00    2016-11-27 22:57:00
48132    22147    895    2016-11-27 21:11:00    2016-11-27 21:11:00
48133    22148    860    2016-11-27 08:54:00    2016-11-27 08:54:00
48134    22148    584    2016-11-27 05:39:00    2016-11-27 05:39:00
48135    22148    780    2016-11-27 09:08:00    2016-11-27 09:08:00
48136    22148    868    2016-11-27 12:00:00    2016-11-27 12:00:00
48137    22148    776    2016-11-27 09:37:00    2016-11-27 09:37:00
48138    22149    801    2016-11-27 12:16:00    2016-11-27 12:16:00
48139    22149    908    2016-11-27 16:47:00    2016-11-27 16:47:00
48140    22149    873    2016-11-27 04:51:00    2016-11-27 04:51:00
48141    22149    625    2016-11-27 17:31:00    2016-11-27 17:31:00
48142    22149    608    2016-11-27 04:47:00    2016-11-27 04:47:00
48143    22150    500    2016-11-27 16:36:00    2016-11-27 16:36:00
48144    22150    732    2016-11-27 16:49:00    2016-11-27 16:49:00
48145    22150    647    2016-11-27 16:20:00    2016-11-27 16:20:00
48146    22150    660    2016-11-27 18:47:00    2016-11-27 18:47:00
48147    22150    943    2016-11-27 20:42:00    2016-11-27 20:42:00
48148    22151    672    2016-11-27 06:34:00    2016-11-27 06:34:00
48149    22151    726    2016-11-27 13:11:00    2016-11-27 13:11:00
48150    22151    870    2016-11-27 02:28:00    2016-11-27 02:28:00
48151    22151    795    2016-11-27 23:23:00    2016-11-27 23:23:00
48152    22151    704    2016-11-27 18:43:00    2016-11-27 18:43:00
48153    22152    931    2016-11-27 10:03:00    2016-11-27 10:03:00
48154    22152    564    2016-11-27 10:56:00    2016-11-27 10:56:00
48155    22152    784    2016-11-27 22:23:00    2016-11-27 22:23:00
48156    22152    723    2016-11-27 23:52:00    2016-11-27 23:52:00
48157    22152    745    2016-11-27 19:11:00    2016-11-27 19:11:00
48158    22153    761    2016-11-27 11:50:00    2016-11-27 11:50:00
48159    22153    688    2016-11-27 23:15:00    2016-11-27 23:15:00
48160    22153    898    2016-11-27 15:56:00    2016-11-27 15:56:00
48161    22153    682    2016-11-27 22:54:00    2016-11-27 22:54:00
48162    22153    781    2016-11-27 18:47:00    2016-11-27 18:47:00
48163    22154    890    2016-11-27 06:23:00    2016-11-27 06:23:00
48164    22154    532    2016-11-27 17:20:00    2016-11-27 17:20:00
48165    22154    743    2016-11-27 08:04:00    2016-11-27 08:04:00
48166    22154    757    2016-11-27 07:03:00    2016-11-27 07:03:00
48167    22154    593    2016-11-27 19:22:00    2016-11-27 19:22:00
48168    22155    669    2016-11-27 05:10:00    2016-11-27 05:10:00
48169    22155    851    2016-11-27 18:33:00    2016-11-27 18:33:00
48170    22155    842    2016-11-27 18:37:00    2016-11-27 18:37:00
48171    22155    702    2016-11-27 17:32:00    2016-11-27 17:32:00
48172    22155    478    2016-11-27 16:03:00    2016-11-27 16:03:00
48173    22156    759    2016-11-27 02:00:00    2016-11-27 02:00:00
48174    22156    608    2016-11-27 14:55:00    2016-11-27 14:55:00
48175    22156    796    2016-11-27 06:20:00    2016-11-27 06:20:00
48176    22156    805    2016-11-27 20:00:00    2016-11-27 20:00:00
48177    22156    552    2016-11-27 06:30:00    2016-11-27 06:30:00
48178    22157    848    2016-11-27 22:16:00    2016-11-27 22:16:00
48179    22157    874    2016-11-27 08:16:00    2016-11-27 08:16:00
48180    22157    751    2016-11-27 17:27:00    2016-11-27 17:27:00
48181    22157    837    2016-11-27 10:01:00    2016-11-27 10:01:00
48182    22157    487    2016-11-27 17:56:00    2016-11-27 17:56:00
48183    22158    641    2016-11-27 11:39:00    2016-11-27 11:39:00
48184    22158    513    2016-11-27 01:47:00    2016-11-27 01:47:00
48185    22158    466    2016-11-27 10:02:00    2016-11-27 10:02:00
48186    22158    566    2016-11-27 02:17:00    2016-11-27 02:17:00
48187    22158    648    2016-11-27 04:39:00    2016-11-27 04:39:00
48188    22159    492    2016-11-27 09:17:00    2016-11-27 09:17:00
48189    22159    728    2016-11-27 04:55:00    2016-11-27 04:55:00
48190    22159    609    2016-11-27 21:42:00    2016-11-27 21:42:00
48191    22159    916    2016-11-27 18:07:00    2016-11-27 18:07:00
48192    22159    496    2016-11-27 16:47:00    2016-11-27 16:47:00
48193    22160    812    2016-11-27 19:17:00    2016-11-27 19:17:00
48194    22160    865    2016-11-27 15:15:00    2016-11-27 15:15:00
48195    22160    822    2016-11-27 03:40:00    2016-11-27 03:40:00
48196    22160    709    2016-11-27 10:16:00    2016-11-27 10:16:00
48197    22160    805    2016-11-27 04:51:00    2016-11-27 04:51:00
48198    22161    739    2016-11-27 11:08:00    2016-11-27 11:08:00
48199    22161    786    2016-11-27 17:51:00    2016-11-27 17:51:00
48200    22161    805    2016-11-27 01:02:00    2016-11-27 01:02:00
48201    22161    895    2016-11-27 09:16:00    2016-11-27 09:16:00
48202    22161    481    2016-11-27 16:25:00    2016-11-27 16:25:00
48203    22162    501    2016-11-27 01:01:00    2016-11-27 01:01:00
48204    22162    829    2016-11-27 03:32:00    2016-11-27 03:32:00
48205    22162    791    2016-11-27 03:41:00    2016-11-27 03:41:00
48206    22162    735    2016-11-27 22:24:00    2016-11-27 22:24:00
48207    22162    536    2016-11-27 12:54:00    2016-11-27 12:54:00
48208    22163    799    2016-11-27 09:40:00    2016-11-27 09:40:00
48209    22163    893    2016-11-27 15:00:00    2016-11-27 15:00:00
48210    22163    642    2016-11-27 11:35:00    2016-11-27 11:35:00
48211    22163    583    2016-11-27 11:34:00    2016-11-27 11:34:00
48212    22163    705    2016-11-27 22:29:00    2016-11-27 22:29:00
48213    22164    494    2016-11-27 05:27:00    2016-11-27 05:27:00
48214    22164    714    2016-11-27 19:35:00    2016-11-27 19:35:00
48215    22164    607    2016-11-27 14:14:00    2016-11-27 14:14:00
48216    22164    818    2016-11-27 21:03:00    2016-11-27 21:03:00
48217    22164    925    2016-11-27 12:11:00    2016-11-27 12:11:00
48218    22165    923    2016-11-27 11:11:00    2016-11-27 11:11:00
48219    22165    562    2016-11-27 10:15:00    2016-11-27 10:15:00
48220    22165    737    2016-11-27 23:51:00    2016-11-27 23:51:00
48221    22165    512    2016-11-27 19:20:00    2016-11-27 19:20:00
48222    22165    522    2016-11-27 13:01:00    2016-11-27 13:01:00
48223    22166    903    2016-11-27 07:16:00    2016-11-27 07:16:00
48224    22166    621    2016-11-27 11:51:00    2016-11-27 11:51:00
48225    22166    606    2016-11-27 20:27:00    2016-11-27 20:27:00
48226    22166    843    2016-11-27 21:52:00    2016-11-27 21:52:00
48227    22166    898    2016-11-27 18:58:00    2016-11-27 18:58:00
48228    22167    749    2016-11-27 19:00:00    2016-11-27 19:00:00
48229    22167    707    2016-11-27 05:02:00    2016-11-27 05:02:00
48230    22167    823    2016-11-27 19:29:00    2016-11-27 19:29:00
48231    22167    690    2016-11-27 15:37:00    2016-11-27 15:37:00
48232    22167    891    2016-11-27 06:10:00    2016-11-27 06:10:00
48233    22168    884    2016-11-27 07:37:00    2016-11-27 07:37:00
48234    22168    688    2016-11-27 14:41:00    2016-11-27 14:41:00
48235    22168    610    2016-11-27 19:53:00    2016-11-27 19:53:00
48236    22168    502    2016-11-27 02:41:00    2016-11-27 02:41:00
48237    22168    615    2016-11-27 09:56:00    2016-11-27 09:56:00
48238    22169    729    2016-11-27 18:23:00    2016-11-27 18:23:00
48239    22169    685    2016-11-27 02:19:00    2016-11-27 02:19:00
48240    22169    902    2016-11-27 14:07:00    2016-11-27 14:07:00
48241    22169    521    2016-11-27 17:10:00    2016-11-27 17:10:00
48242    22169    739    2016-11-27 09:33:00    2016-11-27 09:33:00
48243    22170    609    2016-11-27 15:18:00    2016-11-27 15:18:00
48244    22170    497    2016-11-27 13:27:00    2016-11-27 13:27:00
48245    22170    949    2016-11-27 17:36:00    2016-11-27 17:36:00
48246    22170    622    2016-11-27 06:55:00    2016-11-27 06:55:00
48247    22170    940    2016-11-27 16:03:00    2016-11-27 16:03:00
48248    22171    659    2016-11-27 05:35:00    2016-11-27 05:35:00
48249    22171    499    2016-11-27 12:06:00    2016-11-27 12:06:00
48250    22171    707    2016-11-27 13:36:00    2016-11-27 13:36:00
48251    22171    525    2016-11-27 02:52:00    2016-11-27 02:52:00
48252    22171    590    2016-11-27 21:06:00    2016-11-27 21:06:00
48253    22172    468    2016-11-27 06:35:00    2016-11-27 06:35:00
48254    22172    535    2016-11-27 11:14:00    2016-11-27 11:14:00
48255    22172    907    2016-11-27 02:25:00    2016-11-27 02:25:00
48256    22172    624    2016-11-27 14:27:00    2016-11-27 14:27:00
48257    22172    890    2016-11-27 22:11:00    2016-11-27 22:11:00
48258    22173    923    2016-11-27 14:25:00    2016-11-27 14:25:00
48259    22173    611    2016-11-27 18:28:00    2016-11-27 18:28:00
48260    22173    910    2016-11-27 02:56:00    2016-11-27 02:56:00
48261    22173    784    2016-11-27 16:29:00    2016-11-27 16:29:00
48262    22173    747    2016-11-27 21:12:00    2016-11-27 21:12:00
48263    22174    889    2016-11-27 10:57:00    2016-11-27 10:57:00
48264    22174    467    2016-11-27 05:10:00    2016-11-27 05:10:00
48265    22174    581    2016-11-27 16:46:00    2016-11-27 16:46:00
48266    22174    750    2016-11-27 02:24:00    2016-11-27 02:24:00
48267    22174    767    2016-11-27 02:57:00    2016-11-27 02:57:00
48268    22175    944    2016-11-27 12:21:00    2016-11-27 12:21:00
48269    22175    870    2016-11-27 16:15:00    2016-11-27 16:15:00
48270    22175    620    2016-11-27 09:05:00    2016-11-27 09:05:00
48271    22175    707    2016-11-27 09:21:00    2016-11-27 09:21:00
48272    22175    911    2016-11-27 22:12:00    2016-11-27 22:12:00
48273    22176    605    2016-11-27 05:19:00    2016-11-27 05:19:00
48274    22176    487    2016-11-27 19:26:00    2016-11-27 19:26:00
48275    22176    743    2016-11-27 23:29:00    2016-11-27 23:29:00
48276    22176    525    2016-11-27 14:26:00    2016-11-27 14:26:00
48277    22176    693    2016-11-27 04:38:00    2016-11-27 04:38:00
48278    22177    637    2016-11-27 01:39:00    2016-11-27 01:39:00
48279    22177    644    2016-11-27 13:07:00    2016-11-27 13:07:00
48280    22177    616    2016-11-27 06:31:00    2016-11-27 06:31:00
48281    22177    798    2016-11-27 21:00:00    2016-11-27 21:00:00
48282    22177    815    2016-11-27 04:27:00    2016-11-27 04:27:00
48283    22178    753    2016-11-27 16:49:00    2016-11-27 16:49:00
48284    22178    618    2016-11-27 17:25:00    2016-11-27 17:25:00
48285    22178    866    2016-11-27 17:35:00    2016-11-27 17:35:00
48286    22178    827    2016-11-27 03:29:00    2016-11-27 03:29:00
48287    22178    926    2016-11-27 11:20:00    2016-11-27 11:20:00
48288    22179    556    2016-11-27 01:41:00    2016-11-27 01:41:00
48289    22179    571    2016-11-27 16:09:00    2016-11-27 16:09:00
48290    22179    914    2016-11-27 18:52:00    2016-11-27 18:52:00
48291    22179    845    2016-11-27 15:13:00    2016-11-27 15:13:00
48292    22179    708    2016-11-27 13:08:00    2016-11-27 13:08:00
48293    22180    830    2016-11-27 12:08:00    2016-11-27 12:08:00
48294    22180    794    2016-11-27 13:20:00    2016-11-27 13:20:00
48295    22180    822    2016-11-27 19:40:00    2016-11-27 19:40:00
48296    22180    614    2016-11-27 05:39:00    2016-11-27 05:39:00
48297    22180    503    2016-11-27 04:13:00    2016-11-27 04:13:00
48298    22181    770    2016-11-27 10:15:00    2016-11-27 10:15:00
48299    22181    881    2016-11-27 10:51:00    2016-11-27 10:51:00
48300    22181    803    2016-11-27 06:53:00    2016-11-27 06:53:00
48301    22181    480    2016-11-27 18:29:00    2016-11-27 18:29:00
48302    22181    554    2016-11-27 14:05:00    2016-11-27 14:05:00
48303    22182    765    2016-11-27 22:52:00    2016-11-27 22:52:00
48304    22182    924    2016-11-27 14:45:00    2016-11-27 14:45:00
48305    22182    625    2016-11-27 02:12:00    2016-11-27 02:12:00
48306    22182    612    2016-11-27 15:09:00    2016-11-27 15:09:00
48307    22182    478    2016-11-27 20:44:00    2016-11-27 20:44:00
48308    22183    921    2016-11-27 23:38:00    2016-11-27 23:38:00
48309    22183    610    2016-11-27 09:14:00    2016-11-27 09:14:00
48310    22183    687    2016-11-27 04:39:00    2016-11-27 04:39:00
48311    22183    928    2016-11-27 03:49:00    2016-11-27 03:49:00
48312    22183    864    2016-11-27 11:38:00    2016-11-27 11:38:00
48313    22184    533    2016-11-27 07:11:00    2016-11-27 07:11:00
48314    22184    759    2016-11-27 11:10:00    2016-11-27 11:10:00
48315    22184    703    2016-11-27 16:14:00    2016-11-27 16:14:00
48316    22184    506    2016-11-27 05:59:00    2016-11-27 05:59:00
48317    22184    555    2016-11-27 12:20:00    2016-11-27 12:20:00
48318    22185    871    2016-11-27 07:40:00    2016-11-27 07:40:00
48319    22185    937    2016-11-27 15:00:00    2016-11-27 15:00:00
48320    22185    919    2016-11-27 13:24:00    2016-11-27 13:24:00
48321    22185    933    2016-11-27 03:23:00    2016-11-27 03:23:00
48322    22185    479    2016-11-27 22:27:00    2016-11-27 22:27:00
48323    22186    615    2016-11-27 02:32:00    2016-11-27 02:32:00
48324    22186    914    2016-11-27 10:36:00    2016-11-27 10:36:00
48325    22186    700    2016-11-27 15:52:00    2016-11-27 15:52:00
48326    22186    956    2016-11-27 18:50:00    2016-11-27 18:50:00
48327    22186    531    2016-11-27 17:00:00    2016-11-27 17:00:00
48328    22187    746    2016-11-27 07:15:00    2016-11-27 07:15:00
48329    22187    538    2016-11-27 10:03:00    2016-11-27 10:03:00
48330    22187    798    2016-11-27 10:20:00    2016-11-27 10:20:00
48331    22187    630    2016-11-27 21:47:00    2016-11-27 21:47:00
48332    22187    480    2016-11-27 09:46:00    2016-11-27 09:46:00
48333    22188    730    2016-11-27 12:58:00    2016-11-27 12:58:00
48334    22188    495    2016-11-27 23:46:00    2016-11-27 23:46:00
48335    22188    945    2016-11-27 23:01:00    2016-11-27 23:01:00
48336    22188    796    2016-11-27 22:57:00    2016-11-27 22:57:00
48337    22188    910    2016-11-27 08:28:00    2016-11-27 08:28:00
48338    22189    942    2016-11-27 11:03:00    2016-11-27 11:03:00
48339    22189    791    2016-11-27 01:20:00    2016-11-27 01:20:00
48340    22189    850    2016-11-27 09:12:00    2016-11-27 09:12:00
48341    22189    837    2016-11-27 22:49:00    2016-11-27 22:49:00
48342    22189    920    2016-11-27 06:34:00    2016-11-27 06:34:00
48343    22190    925    2016-11-27 14:01:00    2016-11-27 14:01:00
48344    22190    795    2016-11-27 14:45:00    2016-11-27 14:45:00
48345    22190    743    2016-11-27 07:37:00    2016-11-27 07:37:00
48346    22190    515    2016-11-27 01:46:00    2016-11-27 01:46:00
48347    22190    578    2016-11-27 01:44:00    2016-11-27 01:44:00
48348    22191    473    2016-11-27 05:33:00    2016-11-27 05:33:00
48349    22191    565    2016-11-27 14:21:00    2016-11-27 14:21:00
48350    22191    791    2016-11-27 03:04:00    2016-11-27 03:04:00
48351    22191    792    2016-11-27 06:57:00    2016-11-27 06:57:00
48352    22191    758    2016-11-27 01:44:00    2016-11-27 01:44:00
48353    22192    691    2016-11-27 20:19:00    2016-11-27 20:19:00
48354    22192    948    2016-11-27 17:57:00    2016-11-27 17:57:00
48355    22192    645    2016-11-27 08:04:00    2016-11-27 08:04:00
48356    22192    565    2016-11-27 02:44:00    2016-11-27 02:44:00
48357    22192    498    2016-11-27 18:04:00    2016-11-27 18:04:00
48358    22193    853    2016-11-27 12:47:00    2016-11-27 12:47:00
48359    22193    608    2016-11-27 11:02:00    2016-11-27 11:02:00
48360    22193    680    2016-11-27 13:26:00    2016-11-27 13:26:00
48361    22193    714    2016-11-27 23:13:00    2016-11-27 23:13:00
48362    22193    499    2016-11-27 11:36:00    2016-11-27 11:36:00
48363    22194    794    2016-11-27 15:39:00    2016-11-27 15:39:00
48364    22194    645    2016-11-27 18:41:00    2016-11-27 18:41:00
48365    22194    884    2016-11-27 23:23:00    2016-11-27 23:23:00
48366    22194    580    2016-11-27 22:32:00    2016-11-27 22:32:00
48367    22194    813    2016-11-27 10:36:00    2016-11-27 10:36:00
48368    22195    903    2016-11-27 13:23:00    2016-11-27 13:23:00
48369    22195    879    2016-11-27 20:00:00    2016-11-27 20:00:00
48370    22195    605    2016-11-27 05:39:00    2016-11-27 05:39:00
48371    22195    659    2016-11-27 07:54:00    2016-11-27 07:54:00
48372    22195    949    2016-11-27 08:03:00    2016-11-27 08:03:00
48373    22196    819    2016-11-27 09:11:00    2016-11-27 09:11:00
48374    22196    612    2016-11-27 22:29:00    2016-11-27 22:29:00
48375    22196    716    2016-11-27 23:40:00    2016-11-27 23:40:00
48376    22196    615    2016-11-27 12:44:00    2016-11-27 12:44:00
48377    22196    773    2016-11-27 15:32:00    2016-11-27 15:32:00
48378    22197    952    2016-11-27 01:10:00    2016-11-27 01:10:00
48379    22197    530    2016-11-27 03:21:00    2016-11-27 03:21:00
48380    22197    893    2016-11-27 11:54:00    2016-11-27 11:54:00
48381    22197    862    2016-11-27 12:53:00    2016-11-27 12:53:00
48382    22197    898    2016-11-27 06:08:00    2016-11-27 06:08:00
48383    22198    498    2016-11-27 22:09:00    2016-11-27 22:09:00
48385    22198    776    2016-11-27 21:21:00    2016-11-27 21:21:00
48386    22198    838    2016-11-27 12:11:00    2016-11-27 12:11:00
48387    22198    932    2016-11-27 17:35:00    2016-11-27 17:35:00
48388    22199    594    2016-11-27 09:06:00    2016-11-27 09:06:00
48389    22199    483    2016-11-27 20:16:00    2016-11-27 20:16:00
48390    22199    565    2016-11-27 05:12:00    2016-11-27 05:12:00
48391    22199    896    2016-11-27 12:51:00    2016-11-27 12:51:00
48392    22199    772    2016-11-27 13:07:00    2016-11-27 13:07:00
48393    22200    733    2016-11-27 20:19:00    2016-11-27 20:19:00
48394    22200    512    2016-11-27 11:27:00    2016-11-27 11:27:00
48395    22200    569    2016-11-27 23:25:00    2016-11-27 23:25:00
48396    22200    493    2016-11-27 07:29:00    2016-11-27 07:29:00
48397    22200    500    2016-11-27 17:37:00    2016-11-27 17:37:00
48398    22201    474    2016-11-27 03:31:00    2016-11-27 03:31:00
48399    22201    799    2016-11-27 15:27:00    2016-11-27 15:27:00
48400    22201    851    2016-11-27 01:58:00    2016-11-27 01:58:00
48401    22201    493    2016-11-27 13:31:00    2016-11-27 13:31:00
48402    22201    891    2016-11-27 11:29:00    2016-11-27 11:29:00
48403    22202    892    2016-11-27 17:20:00    2016-11-27 17:20:00
48404    22202    787    2016-11-27 23:12:00    2016-11-27 23:12:00
48405    22202    690    2016-11-27 21:17:00    2016-11-27 21:17:00
48406    22202    502    2016-11-27 23:50:00    2016-11-27 23:50:00
48407    22202    901    2016-11-27 03:35:00    2016-11-27 03:35:00
48408    22203    542    2016-11-28 19:16:00    2016-11-28 19:16:00
48409    22203    662    2016-11-28 18:27:00    2016-11-28 18:27:00
48410    22203    652    2016-11-28 18:23:00    2016-11-28 18:23:00
48411    22203    593    2016-11-28 18:13:00    2016-11-28 18:13:00
48412    22203    788    2016-11-28 15:14:00    2016-11-28 15:14:00
48413    22204    702    2016-11-28 13:12:00    2016-11-28 13:12:00
48414    22204    658    2016-11-28 16:32:00    2016-11-28 16:32:00
48415    22204    495    2016-11-28 16:24:00    2016-11-28 16:24:00
48416    22204    848    2016-11-28 21:14:00    2016-11-28 21:14:00
48417    22204    527    2016-11-28 12:19:00    2016-11-28 12:19:00
48418    22205    721    2016-11-28 02:55:00    2016-11-28 02:55:00
48419    22205    527    2016-11-28 17:37:00    2016-11-28 17:37:00
48420    22205    622    2016-11-28 03:28:00    2016-11-28 03:28:00
48421    22205    805    2016-11-28 22:37:00    2016-11-28 22:37:00
48422    22205    791    2016-11-28 15:16:00    2016-11-28 15:16:00
48423    22206    873    2016-11-28 13:23:00    2016-11-28 13:23:00
48424    22206    596    2016-11-28 20:17:00    2016-11-28 20:17:00
48425    22206    508    2016-11-28 18:22:00    2016-11-28 18:22:00
48426    22206    495    2016-11-28 10:24:00    2016-11-28 10:24:00
48427    22206    672    2016-11-28 14:37:00    2016-11-28 14:37:00
48428    22207    727    2016-11-28 02:47:00    2016-11-28 02:47:00
48429    22207    595    2016-11-28 19:43:00    2016-11-28 19:43:00
48430    22207    815    2016-11-28 11:31:00    2016-11-28 11:31:00
48431    22207    883    2016-11-28 02:15:00    2016-11-28 02:15:00
48432    22207    802    2016-11-28 04:08:00    2016-11-28 04:08:00
48433    22208    603    2016-11-28 03:44:00    2016-11-28 03:44:00
48434    22208    545    2016-11-28 20:06:00    2016-11-28 20:06:00
48435    22208    559    2016-11-28 17:36:00    2016-11-28 17:36:00
48436    22208    671    2016-11-28 18:04:00    2016-11-28 18:04:00
48437    22208    605    2016-11-28 20:55:00    2016-11-28 20:55:00
48438    22209    896    2016-11-28 23:22:00    2016-11-28 23:22:00
48439    22209    866    2016-11-28 22:43:00    2016-11-28 22:43:00
48440    22209    713    2016-11-28 14:29:00    2016-11-28 14:29:00
48441    22209    917    2016-11-28 23:03:00    2016-11-28 23:03:00
48442    22209    779    2016-11-28 04:03:00    2016-11-28 04:03:00
48443    22210    650    2016-11-28 16:17:00    2016-11-28 16:17:00
48444    22210    532    2016-11-28 03:22:00    2016-11-28 03:22:00
48445    22210    729    2016-11-28 17:37:00    2016-11-28 17:37:00
48446    22210    524    2016-11-28 06:36:00    2016-11-28 06:36:00
48447    22210    848    2016-11-28 11:54:00    2016-11-28 11:54:00
48448    22211    467    2016-11-28 01:17:00    2016-11-28 01:17:00
48449    22211    506    2016-11-28 09:25:00    2016-11-28 09:25:00
48450    22211    665    2016-11-28 04:00:00    2016-11-28 04:00:00
48451    22211    898    2016-11-28 10:39:00    2016-11-28 10:39:00
48452    22211    836    2016-11-28 03:30:00    2016-11-28 03:30:00
48453    22212    631    2016-11-28 21:04:00    2016-11-28 21:04:00
48454    22212    670    2016-11-28 13:17:00    2016-11-28 13:17:00
48455    22212    498    2016-11-28 12:54:00    2016-11-28 12:54:00
48456    22212    480    2016-11-28 04:35:00    2016-11-28 04:35:00
48457    22212    857    2016-11-28 14:40:00    2016-11-28 14:40:00
48458    22213    641    2016-11-28 09:56:00    2016-11-28 09:56:00
48459    22213    497    2016-11-28 02:21:00    2016-11-28 02:21:00
48460    22213    540    2016-11-28 23:23:00    2016-11-28 23:23:00
48461    22213    541    2016-11-28 16:58:00    2016-11-28 16:58:00
48462    22213    577    2016-11-28 08:48:00    2016-11-28 08:48:00
48463    22214    934    2016-11-28 04:11:00    2016-11-28 04:11:00
48464    22214    572    2016-11-28 06:01:00    2016-11-28 06:01:00
48465    22214    644    2016-11-28 05:11:00    2016-11-28 05:11:00
48466    22214    942    2016-11-28 03:23:00    2016-11-28 03:23:00
48467    22214    680    2016-11-28 17:36:00    2016-11-28 17:36:00
48468    22215    718    2016-11-28 07:49:00    2016-11-28 07:49:00
48469    22215    567    2016-11-28 10:59:00    2016-11-28 10:59:00
48470    22215    948    2016-11-28 23:01:00    2016-11-28 23:01:00
48471    22215    866    2016-11-28 15:48:00    2016-11-28 15:48:00
48472    22215    806    2016-11-28 11:15:00    2016-11-28 11:15:00
48473    22216    879    2016-11-28 19:55:00    2016-11-28 19:55:00
48474    22216    680    2016-11-28 19:22:00    2016-11-28 19:22:00
48475    22216    724    2016-11-28 12:26:00    2016-11-28 12:26:00
48476    22216    781    2016-11-28 11:23:00    2016-11-28 11:23:00
48477    22216    646    2016-11-28 08:41:00    2016-11-28 08:41:00
48478    22217    527    2016-11-28 17:00:00    2016-11-28 17:00:00
48479    22217    701    2016-11-28 21:42:00    2016-11-28 21:42:00
48480    22217    700    2016-11-28 16:03:00    2016-11-28 16:03:00
48481    22217    711    2016-11-28 22:05:00    2016-11-28 22:05:00
48482    22217    909    2016-11-28 21:00:00    2016-11-28 21:00:00
48483    22218    949    2016-11-28 19:49:00    2016-11-28 19:49:00
48484    22218    694    2016-11-28 11:59:00    2016-11-28 11:59:00
48485    22218    695    2016-11-28 17:06:00    2016-11-28 17:06:00
48486    22218    599    2016-11-28 09:57:00    2016-11-28 09:57:00
48487    22218    664    2016-11-28 12:15:00    2016-11-28 12:15:00
48488    22219    681    2016-11-28 21:34:00    2016-11-28 21:34:00
48489    22219    928    2016-11-28 23:12:00    2016-11-28 23:12:00
48490    22219    783    2016-11-28 19:41:00    2016-11-28 19:41:00
48491    22219    655    2016-11-28 15:02:00    2016-11-28 15:02:00
48492    22219    522    2016-11-28 05:12:00    2016-11-28 05:12:00
48493    22220    653    2016-11-28 07:52:00    2016-11-28 07:52:00
48494    22220    468    2016-11-28 11:39:00    2016-11-28 11:39:00
48495    22220    950    2016-11-28 11:00:00    2016-11-28 11:00:00
48496    22220    734    2016-11-28 01:09:00    2016-11-28 01:09:00
48497    22220    947    2016-11-28 07:51:00    2016-11-28 07:51:00
48498    22221    502    2016-11-28 06:50:00    2016-11-28 06:50:00
48499    22221    960    2016-11-28 18:00:00    2016-11-28 18:00:00
48500    22221    835    2016-11-28 04:21:00    2016-11-28 04:21:00
48501    22221    834    2016-11-28 10:26:00    2016-11-28 10:26:00
48502    22221    628    2016-11-28 12:39:00    2016-11-28 12:39:00
48503    22222    493    2016-11-28 07:50:00    2016-11-28 07:50:00
48504    22222    924    2016-11-28 21:56:00    2016-11-28 21:56:00
48505    22222    861    2016-11-28 21:21:00    2016-11-28 21:21:00
48506    22222    742    2016-11-28 21:10:00    2016-11-28 21:10:00
48507    22222    724    2016-11-28 23:53:00    2016-11-28 23:53:00
48508    22223    463    2016-11-28 04:52:00    2016-11-28 04:52:00
48509    22223    839    2016-11-28 09:01:00    2016-11-28 09:01:00
48510    22223    822    2016-11-28 21:57:00    2016-11-28 21:57:00
48511    22223    492    2016-11-28 05:53:00    2016-11-28 05:53:00
48512    22223    881    2016-11-28 21:00:00    2016-11-28 21:00:00
48513    22224    543    2016-11-28 02:01:00    2016-11-28 02:01:00
48514    22224    936    2016-11-28 13:20:00    2016-11-28 13:20:00
48515    22224    824    2016-11-28 15:48:00    2016-11-28 15:48:00
48516    22224    787    2016-11-28 14:09:00    2016-11-28 14:09:00
48517    22224    727    2016-11-28 21:45:00    2016-11-28 21:45:00
48518    22225    686    2016-11-28 12:25:00    2016-11-28 12:25:00
48519    22225    872    2016-11-28 02:31:00    2016-11-28 02:31:00
48520    22225    520    2016-11-28 06:33:00    2016-11-28 06:33:00
48521    22225    571    2016-11-28 12:14:00    2016-11-28 12:14:00
48522    22225    726    2016-11-28 07:06:00    2016-11-28 07:06:00
48523    22226    607    2016-11-28 10:38:00    2016-11-28 10:38:00
48524    22226    916    2016-11-28 03:24:00    2016-11-28 03:24:00
48525    22226    626    2016-11-28 22:30:00    2016-11-28 22:30:00
48526    22226    539    2016-11-28 05:00:00    2016-11-28 05:00:00
48527    22226    601    2016-11-28 15:55:00    2016-11-28 15:55:00
48528    22227    797    2016-11-28 06:37:00    2016-11-28 06:37:00
48529    22227    588    2016-11-28 11:43:00    2016-11-28 11:43:00
48530    22227    697    2016-11-28 19:57:00    2016-11-28 19:57:00
48531    22227    507    2016-11-28 09:31:00    2016-11-28 09:31:00
48532    22227    526    2016-11-28 15:09:00    2016-11-28 15:09:00
48533    22228    622    2016-11-28 11:28:00    2016-11-28 11:28:00
48534    22228    737    2016-11-28 04:58:00    2016-11-28 04:58:00
48535    22228    712    2016-11-28 08:38:00    2016-11-28 08:38:00
48536    22228    601    2016-11-28 09:36:00    2016-11-28 09:36:00
48537    22228    903    2016-11-28 17:09:00    2016-11-28 17:09:00
48538    22229    495    2016-11-28 11:46:00    2016-11-28 11:46:00
48539    22229    567    2016-11-28 22:18:00    2016-11-28 22:18:00
48540    22229    791    2016-11-28 23:57:00    2016-11-28 23:57:00
48541    22229    756    2016-11-28 06:58:00    2016-11-28 06:58:00
48542    22229    499    2016-11-28 07:16:00    2016-11-28 07:16:00
48543    22230    650    2016-11-28 18:52:00    2016-11-28 18:52:00
48544    22230    494    2016-11-28 11:00:00    2016-11-28 11:00:00
48545    22230    530    2016-11-28 01:07:00    2016-11-28 01:07:00
48546    22230    743    2016-11-28 06:50:00    2016-11-28 06:50:00
48547    22230    701    2016-11-28 17:58:00    2016-11-28 17:58:00
48548    22231    521    2016-11-28 12:16:00    2016-11-28 12:16:00
48549    22231    783    2016-11-28 18:06:00    2016-11-28 18:06:00
48550    22231    804    2016-11-28 14:24:00    2016-11-28 14:24:00
48551    22231    583    2016-11-28 23:01:00    2016-11-28 23:01:00
48552    22231    938    2016-11-28 14:47:00    2016-11-28 14:47:00
48553    22232    946    2016-11-28 15:27:00    2016-11-28 15:27:00
48554    22232    761    2016-11-28 12:18:00    2016-11-28 12:18:00
48555    22232    946    2016-11-28 22:34:00    2016-11-28 22:34:00
48556    22232    528    2016-11-28 19:58:00    2016-11-28 19:58:00
48557    22232    897    2016-11-28 08:04:00    2016-11-28 08:04:00
48558    22233    476    2016-11-28 17:53:00    2016-11-28 17:53:00
48559    22233    578    2016-11-28 19:08:00    2016-11-28 19:08:00
48560    22233    558    2016-11-28 06:36:00    2016-11-28 06:36:00
48561    22233    924    2016-11-28 12:25:00    2016-11-28 12:25:00
48562    22233    648    2016-11-28 12:43:00    2016-11-28 12:43:00
48563    22234    760    2016-11-28 21:02:00    2016-11-28 21:02:00
48564    22234    849    2016-11-28 11:49:00    2016-11-28 11:49:00
48565    22234    859    2016-11-28 15:17:00    2016-11-28 15:17:00
48566    22234    693    2016-11-28 14:03:00    2016-11-28 14:03:00
48567    22234    829    2016-11-28 19:46:00    2016-11-28 19:46:00
48568    22235    644    2016-11-28 09:51:00    2016-11-28 09:51:00
48569    22235    874    2016-11-28 05:28:00    2016-11-28 05:28:00
48570    22235    811    2016-11-28 02:05:00    2016-11-28 02:05:00
48571    22235    624    2016-11-28 14:40:00    2016-11-28 14:40:00
48572    22235    670    2016-11-28 09:18:00    2016-11-28 09:18:00
48573    22236    748    2016-11-28 22:45:00    2016-11-28 22:45:00
48574    22236    726    2016-11-28 18:38:00    2016-11-28 18:38:00
48575    22236    755    2016-11-28 20:56:00    2016-11-28 20:56:00
48576    22236    614    2016-11-28 15:46:00    2016-11-28 15:46:00
48577    22236    463    2016-11-28 05:26:00    2016-11-28 05:26:00
48578    22237    552    2016-11-28 02:42:00    2016-11-28 02:42:00
48579    22237    633    2016-11-28 11:10:00    2016-11-28 11:10:00
48580    22237    784    2016-11-28 06:54:00    2016-11-28 06:54:00
48581    22237    891    2016-11-28 16:14:00    2016-11-28 16:14:00
48582    22237    611    2016-11-28 16:14:00    2016-11-28 16:14:00
48583    22238    726    2016-11-28 15:55:00    2016-11-28 15:55:00
48584    22238    931    2016-11-28 03:39:00    2016-11-28 03:39:00
48585    22238    550    2016-11-28 20:11:00    2016-11-28 20:11:00
48586    22238    756    2016-11-28 09:47:00    2016-11-28 09:47:00
48587    22238    672    2016-11-28 07:37:00    2016-11-28 07:37:00
48588    22239    611    2016-11-28 12:05:00    2016-11-28 12:05:00
48589    22239    855    2016-11-28 17:18:00    2016-11-28 17:18:00
48590    22239    490    2016-11-28 22:32:00    2016-11-28 22:32:00
48591    22239    505    2016-11-28 05:46:00    2016-11-28 05:46:00
48592    22239    597    2016-11-28 17:02:00    2016-11-28 17:02:00
48593    22240    789    2016-11-28 15:32:00    2016-11-28 15:32:00
48594    22240    492    2016-11-28 17:00:00    2016-11-28 17:00:00
48595    22240    676    2016-11-28 23:57:00    2016-11-28 23:57:00
48596    22240    594    2016-11-28 08:58:00    2016-11-28 08:58:00
48597    22240    569    2016-11-28 07:43:00    2016-11-28 07:43:00
48598    22241    625    2016-11-28 07:54:00    2016-11-28 07:54:00
48599    22241    803    2016-11-28 08:37:00    2016-11-28 08:37:00
48600    22241    867    2016-11-28 08:14:00    2016-11-28 08:14:00
48601    22241    640    2016-11-28 09:32:00    2016-11-28 09:32:00
48602    22241    814    2016-11-28 15:37:00    2016-11-28 15:37:00
48603    22242    575    2016-11-28 19:40:00    2016-11-28 19:40:00
48604    22242    463    2016-11-28 22:50:00    2016-11-28 22:50:00
48605    22242    605    2016-11-28 23:44:00    2016-11-28 23:44:00
48606    22242    562    2016-11-28 20:25:00    2016-11-28 20:25:00
48607    22242    552    2016-11-28 20:24:00    2016-11-28 20:24:00
48608    22243    829    2016-11-28 17:40:00    2016-11-28 17:40:00
48609    22243    793    2016-11-28 10:25:00    2016-11-28 10:25:00
48610    22243    678    2016-11-28 08:00:00    2016-11-28 08:00:00
48611    22243    922    2016-11-28 20:27:00    2016-11-28 20:27:00
48612    22243    842    2016-11-28 09:30:00    2016-11-28 09:30:00
48613    22244    860    2016-11-28 02:44:00    2016-11-28 02:44:00
48614    22244    729    2016-11-28 10:01:00    2016-11-28 10:01:00
48615    22244    927    2016-11-28 08:27:00    2016-11-28 08:27:00
48616    22244    891    2016-11-28 12:51:00    2016-11-28 12:51:00
48617    22244    788    2016-11-28 16:36:00    2016-11-28 16:36:00
48618    22245    780    2016-11-28 04:55:00    2016-11-28 04:55:00
48619    22245    787    2016-11-28 18:56:00    2016-11-28 18:56:00
48620    22245    740    2016-11-28 22:14:00    2016-11-28 22:14:00
48621    22245    525    2016-11-28 09:42:00    2016-11-28 09:42:00
48622    22245    764    2016-11-28 02:32:00    2016-11-28 02:32:00
48623    22246    598    2016-11-28 07:36:00    2016-11-28 07:36:00
48624    22246    657    2016-11-28 20:11:00    2016-11-28 20:11:00
48625    22246    955    2016-11-28 06:34:00    2016-11-28 06:34:00
48626    22246    856    2016-11-28 21:46:00    2016-11-28 21:46:00
48627    22246    817    2016-11-28 19:45:00    2016-11-28 19:45:00
48628    22247    520    2016-11-28 10:56:00    2016-11-28 10:56:00
48629    22247    727    2016-11-28 18:31:00    2016-11-28 18:31:00
48630    22247    484    2016-11-28 12:17:00    2016-11-28 12:17:00
48631    22247    598    2016-11-28 03:28:00    2016-11-28 03:28:00
48632    22247    537    2016-11-28 04:16:00    2016-11-28 04:16:00
48633    22248    783    2016-11-28 08:19:00    2016-11-28 08:19:00
48634    22248    604    2016-11-28 08:07:00    2016-11-28 08:07:00
48635    22248    631    2016-11-28 14:43:00    2016-11-28 14:43:00
48636    22248    479    2016-11-28 19:32:00    2016-11-28 19:32:00
48637    22248    779    2016-11-28 17:27:00    2016-11-28 17:27:00
48638    22249    626    2016-11-28 20:41:00    2016-11-28 20:41:00
48639    22249    872    2016-11-28 02:01:00    2016-11-28 02:01:00
48640    22249    621    2016-11-28 08:46:00    2016-11-28 08:46:00
48641    22249    666    2016-11-28 07:37:00    2016-11-28 07:37:00
48642    22249    473    2016-11-28 09:19:00    2016-11-28 09:19:00
48643    22250    882    2016-11-28 04:14:00    2016-11-28 04:14:00
48644    22250    908    2016-11-28 15:01:00    2016-11-28 15:01:00
48645    22250    717    2016-11-28 11:23:00    2016-11-28 11:23:00
48646    22250    945    2016-11-28 04:43:00    2016-11-28 04:43:00
48647    22250    813    2016-11-28 17:14:00    2016-11-28 17:14:00
48648    22251    943    2016-11-28 09:10:00    2016-11-28 09:10:00
48649    22251    464    2016-11-28 23:13:00    2016-11-28 23:13:00
48650    22251    909    2016-11-28 11:23:00    2016-11-28 11:23:00
48651    22251    646    2016-11-28 23:26:00    2016-11-28 23:26:00
48652    22251    658    2016-11-28 14:11:00    2016-11-28 14:11:00
48653    22252    640    2016-11-28 05:36:00    2016-11-28 05:36:00
48654    22252    576    2016-11-28 22:00:00    2016-11-28 22:00:00
48655    22252    652    2016-11-28 02:29:00    2016-11-28 02:29:00
48656    22252    494    2016-11-28 13:09:00    2016-11-28 13:09:00
48657    22252    800    2016-11-28 11:37:00    2016-11-28 11:37:00
48658    22253    774    2016-11-28 20:28:00    2016-11-28 20:28:00
48659    22253    862    2016-11-28 08:55:00    2016-11-28 08:55:00
48660    22253    917    2016-11-28 21:08:00    2016-11-28 21:08:00
48661    22253    921    2016-11-28 18:24:00    2016-11-28 18:24:00
48662    22253    906    2016-11-28 01:19:00    2016-11-28 01:19:00
48663    22254    913    2016-11-28 09:09:00    2016-11-28 09:09:00
48664    22254    804    2016-11-28 16:32:00    2016-11-28 16:32:00
48665    22254    706    2016-11-28 05:23:00    2016-11-28 05:23:00
48666    22254    467    2016-11-28 11:31:00    2016-11-28 11:31:00
48667    22254    678    2016-11-28 11:33:00    2016-11-28 11:33:00
48668    22255    930    2016-11-28 23:39:00    2016-11-28 23:39:00
48669    22255    733    2016-11-28 20:18:00    2016-11-28 20:18:00
48670    22255    961    2016-11-28 13:52:00    2016-11-28 13:52:00
48671    22255    627    2016-11-28 15:22:00    2016-11-28 15:22:00
48672    22255    485    2016-11-28 08:02:00    2016-11-28 08:02:00
48673    22256    940    2016-11-28 12:13:00    2016-11-28 12:13:00
48674    22256    857    2016-11-28 02:29:00    2016-11-28 02:29:00
48675    22256    674    2016-11-28 01:25:00    2016-11-28 01:25:00
48676    22256    864    2016-11-28 18:35:00    2016-11-28 18:35:00
48677    22256    632    2016-11-28 23:02:00    2016-11-28 23:02:00
48678    22257    882    2016-11-28 05:01:00    2016-11-28 05:01:00
48679    22257    807    2016-11-28 07:11:00    2016-11-28 07:11:00
48680    22257    936    2016-11-28 18:14:00    2016-11-28 18:14:00
48681    22257    938    2016-11-28 03:33:00    2016-11-28 03:33:00
48682    22257    789    2016-11-28 20:39:00    2016-11-28 20:39:00
48683    22258    741    2016-11-28 07:01:00    2016-11-28 07:01:00
48684    22258    815    2016-11-28 16:30:00    2016-11-28 16:30:00
48685    22258    537    2016-11-28 09:35:00    2016-11-28 09:35:00
48686    22258    757    2016-11-28 07:59:00    2016-11-28 07:59:00
48687    22258    961    2016-11-28 16:09:00    2016-11-28 16:09:00
48688    22259    645    2016-11-28 07:37:00    2016-11-28 07:37:00
48689    22259    698    2016-11-28 14:14:00    2016-11-28 14:14:00
48690    22259    575    2016-11-28 18:11:00    2016-11-28 18:11:00
48691    22259    772    2016-11-28 02:23:00    2016-11-28 02:23:00
48692    22259    655    2016-11-28 22:06:00    2016-11-28 22:06:00
48693    22260    569    2016-11-28 07:31:00    2016-11-28 07:31:00
48694    22260    580    2016-11-28 02:33:00    2016-11-28 02:33:00
48695    22260    491    2016-11-28 20:15:00    2016-11-28 20:15:00
48696    22260    911    2016-11-28 17:19:00    2016-11-28 17:19:00
48697    22260    733    2016-11-28 07:03:00    2016-11-28 07:03:00
48698    22261    775    2016-11-28 11:25:00    2016-11-28 11:25:00
48699    22261    704    2016-11-28 08:27:00    2016-11-28 08:27:00
48700    22261    534    2016-11-28 11:02:00    2016-11-28 11:02:00
48701    22261    840    2016-11-28 16:49:00    2016-11-28 16:49:00
48702    22261    819    2016-11-28 18:16:00    2016-11-28 18:16:00
48703    22262    924    2016-11-28 22:04:00    2016-11-28 22:04:00
48704    22262    906    2016-11-28 20:54:00    2016-11-28 20:54:00
48705    22262    575    2016-11-28 05:56:00    2016-11-28 05:56:00
48706    22262    627    2016-11-28 18:46:00    2016-11-28 18:46:00
48707    22262    760    2016-11-28 11:31:00    2016-11-28 11:31:00
48708    22263    930    2016-11-28 09:55:00    2016-11-28 09:55:00
48709    22263    961    2016-11-28 02:00:00    2016-11-28 02:00:00
48710    22263    899    2016-11-28 08:56:00    2016-11-28 08:56:00
48711    22263    856    2016-11-28 16:41:00    2016-11-28 16:41:00
48712    22263    887    2016-11-28 06:14:00    2016-11-28 06:14:00
48713    22264    740    2016-11-28 10:54:00    2016-11-28 10:54:00
48714    22264    713    2016-11-28 17:17:00    2016-11-28 17:17:00
48715    22264    767    2016-11-28 21:17:00    2016-11-28 21:17:00
48716    22264    682    2016-11-28 18:57:00    2016-11-28 18:57:00
48717    22264    957    2016-11-28 03:54:00    2016-11-28 03:54:00
48718    22265    956    2016-11-28 10:56:00    2016-11-28 10:56:00
48719    22265    794    2016-11-28 12:56:00    2016-11-28 12:56:00
48720    22265    555    2016-11-28 11:38:00    2016-11-28 11:38:00
48721    22265    511    2016-11-28 03:37:00    2016-11-28 03:37:00
48722    22265    514    2016-11-28 08:58:00    2016-11-28 08:58:00
48723    22266    530    2016-11-28 03:16:00    2016-11-28 03:16:00
48724    22266    566    2016-11-28 16:14:00    2016-11-28 16:14:00
48725    22266    518    2016-11-28 18:05:00    2016-11-28 18:05:00
48726    22266    756    2016-11-28 14:26:00    2016-11-28 14:26:00
48727    22266    739    2016-11-28 12:10:00    2016-11-28 12:10:00
48728    22267    533    2016-11-28 08:43:00    2016-11-28 08:43:00
48729    22267    484    2016-11-28 07:49:00    2016-11-28 07:49:00
48730    22267    666    2016-11-28 11:30:00    2016-11-28 11:30:00
48731    22267    875    2016-11-28 23:29:00    2016-11-28 23:29:00
48732    22267    608    2016-11-28 07:56:00    2016-11-28 07:56:00
48733    22268    515    2016-11-28 16:11:00    2016-11-28 16:11:00
48734    22268    954    2016-11-28 10:33:00    2016-11-28 10:33:00
48735    22268    654    2016-11-28 05:10:00    2016-11-28 05:10:00
48736    22268    715    2016-11-28 15:39:00    2016-11-28 15:39:00
48737    22268    668    2016-11-28 23:06:00    2016-11-28 23:06:00
48738    22269    508    2016-11-28 21:08:00    2016-11-28 21:08:00
48739    22269    853    2016-11-28 15:45:00    2016-11-28 15:45:00
48740    22269    850    2016-11-28 17:45:00    2016-11-28 17:45:00
48741    22269    715    2016-11-28 11:00:00    2016-11-28 11:00:00
48742    22269    831    2016-11-28 22:51:00    2016-11-28 22:51:00
48743    22270    496    2016-11-28 05:34:00    2016-11-28 05:34:00
48744    22270    466    2016-11-28 20:18:00    2016-11-28 20:18:00
48745    22270    466    2016-11-28 16:32:00    2016-11-28 16:32:00
48746    22270    688    2016-11-28 03:52:00    2016-11-28 03:52:00
48747    22270    864    2016-11-28 09:39:00    2016-11-28 09:39:00
48748    22271    653    2016-11-28 03:21:00    2016-11-28 03:21:00
48749    22271    830    2016-11-28 10:42:00    2016-11-28 10:42:00
48750    22271    576    2016-11-28 02:15:00    2016-11-28 02:15:00
48751    22271    602    2016-11-28 16:06:00    2016-11-28 16:06:00
48752    22271    820    2016-11-28 02:39:00    2016-11-28 02:39:00
48753    22272    723    2016-11-28 01:47:00    2016-11-28 01:47:00
48754    22272    851    2016-11-28 04:34:00    2016-11-28 04:34:00
48755    22272    532    2016-11-28 13:30:00    2016-11-28 13:30:00
48756    22272    912    2016-11-28 07:05:00    2016-11-28 07:05:00
48757    22272    513    2016-11-28 23:47:00    2016-11-28 23:47:00
48758    22273    555    2016-11-28 03:26:00    2016-11-28 03:26:00
48759    22273    937    2016-11-28 17:51:00    2016-11-28 17:51:00
48760    22273    845    2016-11-28 22:21:00    2016-11-28 22:21:00
48761    22273    719    2016-11-28 09:53:00    2016-11-28 09:53:00
48762    22273    925    2016-11-28 14:27:00    2016-11-28 14:27:00
48763    22274    913    2016-11-29 00:00:00    2016-11-29 00:00:00
48764    22274    879    2016-11-28 06:22:00    2016-11-28 06:22:00
48765    22274    502    2016-11-28 11:48:00    2016-11-28 11:48:00
48766    22274    837    2016-11-28 21:32:00    2016-11-28 21:32:00
48767    22274    751    2016-11-28 03:41:00    2016-11-28 03:41:00
48768    22275    617    2016-11-28 08:41:00    2016-11-28 08:41:00
48769    22275    890    2016-11-28 08:51:00    2016-11-28 08:51:00
48770    22275    831    2016-11-28 11:10:00    2016-11-28 11:10:00
48771    22275    588    2016-11-28 05:36:00    2016-11-28 05:36:00
48772    22275    928    2016-11-28 14:13:00    2016-11-28 14:13:00
48773    22276    566    2016-11-28 16:47:00    2016-11-28 16:47:00
48774    22276    656    2016-11-28 02:13:00    2016-11-28 02:13:00
48775    22276    651    2016-11-28 11:00:00    2016-11-28 11:00:00
48776    22276    821    2016-11-28 14:07:00    2016-11-28 14:07:00
48777    22276    739    2016-11-28 01:02:00    2016-11-28 01:02:00
48778    22277    809    2016-11-28 18:06:00    2016-11-28 18:06:00
48779    22277    753    2016-11-28 14:31:00    2016-11-28 14:31:00
48780    22277    890    2016-11-28 22:19:00    2016-11-28 22:19:00
48781    22277    731    2016-11-28 16:37:00    2016-11-28 16:37:00
48782    22277    658    2016-11-28 23:12:00    2016-11-28 23:12:00
48783    22278    745    2016-11-28 17:32:00    2016-11-28 17:32:00
48784    22278    471    2016-11-28 15:12:00    2016-11-28 15:12:00
48785    22278    707    2016-11-28 18:57:00    2016-11-28 18:57:00
48786    22278    957    2016-11-28 06:27:00    2016-11-28 06:27:00
48787    22278    878    2016-11-28 13:06:00    2016-11-28 13:06:00
48788    22279    867    2016-11-28 23:19:00    2016-11-28 23:19:00
48789    22279    559    2016-11-28 20:39:00    2016-11-28 20:39:00
48790    22279    468    2016-11-28 01:50:00    2016-11-28 01:50:00
48791    22279    717    2016-11-28 03:08:00    2016-11-28 03:08:00
48792    22279    531    2016-11-28 08:19:00    2016-11-28 08:19:00
48793    22280    853    2016-11-28 15:56:00    2016-11-28 15:56:00
48794    22280    925    2016-11-28 23:15:00    2016-11-28 23:15:00
48795    22280    613    2016-11-28 06:24:00    2016-11-28 06:24:00
48796    22280    702    2016-11-28 02:16:00    2016-11-28 02:16:00
48797    22280    495    2016-11-28 18:36:00    2016-11-28 18:36:00
48798    22281    726    2016-11-28 20:38:00    2016-11-28 20:38:00
48799    22281    949    2016-11-28 14:46:00    2016-11-28 14:46:00
48800    22281    792    2016-11-28 19:03:00    2016-11-28 19:03:00
48801    22281    857    2016-11-28 01:38:00    2016-11-28 01:38:00
48802    22281    575    2016-11-28 12:32:00    2016-11-28 12:32:00
48803    22282    605    2016-11-28 14:49:00    2016-11-28 14:49:00
48804    22282    958    2016-11-28 04:42:00    2016-11-28 04:42:00
48805    22282    609    2016-11-28 13:52:00    2016-11-28 13:52:00
48806    22282    656    2016-11-28 02:16:00    2016-11-28 02:16:00
48807    22282    603    2016-11-28 02:27:00    2016-11-28 02:27:00
48808    22283    731    2016-11-28 23:59:00    2016-11-28 23:59:00
48809    22283    816    2016-11-28 03:42:00    2016-11-28 03:42:00
48810    22283    495    2016-11-28 23:20:00    2016-11-28 23:20:00
48811    22283    720    2016-11-28 10:07:00    2016-11-28 10:07:00
48812    22283    482    2016-11-28 17:29:00    2016-11-28 17:29:00
48813    22284    534    2016-11-28 22:02:00    2016-11-28 22:02:00
48814    22284    613    2016-11-28 05:51:00    2016-11-28 05:51:00
48815    22284    808    2016-11-28 18:59:00    2016-11-28 18:59:00
48816    22284    751    2016-11-28 15:06:00    2016-11-28 15:06:00
48817    22284    901    2016-11-28 13:59:00    2016-11-28 13:59:00
48818    22285    772    2016-11-28 19:08:00    2016-11-28 19:08:00
48819    22285    472    2016-11-28 16:29:00    2016-11-28 16:29:00
48820    22285    495    2016-11-28 22:43:00    2016-11-28 22:43:00
48821    22285    745    2016-11-28 12:00:00    2016-11-28 12:00:00
48822    22285    555    2016-11-28 09:38:00    2016-11-28 09:38:00
48823    22286    703    2016-11-28 22:59:00    2016-11-28 22:59:00
48824    22286    706    2016-11-28 17:48:00    2016-11-28 17:48:00
48825    22286    627    2016-11-28 11:12:00    2016-11-28 11:12:00
48826    22286    856    2016-11-28 14:20:00    2016-11-28 14:20:00
48827    22286    549    2016-11-28 13:44:00    2016-11-28 13:44:00
48828    22287    668    2016-11-29 12:37:00    2016-11-29 12:37:00
48829    22287    837    2016-11-29 14:48:00    2016-11-29 14:48:00
48830    22287    886    2016-11-29 14:32:00    2016-11-29 14:32:00
48831    22287    646    2016-11-29 06:13:00    2016-11-29 06:13:00
48832    22287    803    2016-11-29 17:56:00    2016-11-29 17:56:00
48833    22288    911    2016-11-29 19:44:00    2016-11-29 19:44:00
48834    22288    759    2016-11-29 07:15:00    2016-11-29 07:15:00
48835    22288    861    2016-11-29 14:29:00    2016-11-29 14:29:00
48836    22288    879    2016-11-29 01:00:00    2016-11-29 01:00:00
48837    22288    712    2016-11-29 07:14:00    2016-11-29 07:14:00
48838    22289    652    2016-11-29 18:31:00    2016-11-29 18:31:00
48839    22289    650    2016-11-29 19:34:00    2016-11-29 19:34:00
48840    22289    614    2016-11-29 10:53:00    2016-11-29 10:53:00
48841    22289    851    2016-11-29 16:16:00    2016-11-29 16:16:00
48842    22289    641    2016-11-29 10:11:00    2016-11-29 10:11:00
48843    22290    763    2016-11-29 02:18:00    2016-11-29 02:18:00
48844    22290    807    2016-11-29 08:28:00    2016-11-29 08:28:00
48845    22290    959    2016-11-29 08:49:00    2016-11-29 08:49:00
48846    22290    680    2016-11-29 22:32:00    2016-11-29 22:32:00
48847    22290    839    2016-11-29 03:54:00    2016-11-29 03:54:00
48848    22291    798    2016-11-29 10:05:00    2016-11-29 10:05:00
48849    22291    933    2016-11-29 15:52:00    2016-11-29 15:52:00
48850    22291    502    2016-11-29 11:24:00    2016-11-29 11:24:00
48851    22291    781    2016-11-29 12:28:00    2016-11-29 12:28:00
48852    22291    701    2016-11-29 07:45:00    2016-11-29 07:45:00
48853    22292    872    2016-11-29 15:51:00    2016-11-29 15:51:00
48854    22292    467    2016-11-29 07:23:00    2016-11-29 07:23:00
48855    22292    770    2016-11-29 06:42:00    2016-11-29 06:42:00
48856    22292    852    2016-11-29 21:25:00    2016-11-29 21:25:00
48857    22292    880    2016-11-29 05:22:00    2016-11-29 05:22:00
48858    22293    567    2016-11-29 14:04:00    2016-11-29 14:04:00
48859    22293    931    2016-11-29 22:52:00    2016-11-29 22:52:00
48860    22293    695    2016-11-29 03:10:00    2016-11-29 03:10:00
48861    22293    494    2016-11-29 16:38:00    2016-11-29 16:38:00
48862    22293    748    2016-11-29 04:44:00    2016-11-29 04:44:00
48863    22294    524    2016-11-29 05:16:00    2016-11-29 05:16:00
48864    22294    640    2016-11-29 06:30:00    2016-11-29 06:30:00
48865    22294    901    2016-11-29 08:22:00    2016-11-29 08:22:00
48866    22294    463    2016-11-29 05:49:00    2016-11-29 05:49:00
48867    22294    658    2016-11-29 16:53:00    2016-11-29 16:53:00
48868    22295    570    2016-11-29 20:48:00    2016-11-29 20:48:00
48869    22295    493    2016-11-29 11:34:00    2016-11-29 11:34:00
48870    22295    473    2016-11-29 22:04:00    2016-11-29 22:04:00
48871    22295    797    2016-11-29 13:48:00    2016-11-29 13:48:00
48872    22295    825    2016-11-29 22:38:00    2016-11-29 22:38:00
48873    22296    865    2016-11-29 07:40:00    2016-11-29 07:40:00
48874    22296    670    2016-11-29 16:34:00    2016-11-29 16:34:00
48875    22296    581    2016-11-29 01:45:00    2016-11-29 01:45:00
48876    22296    595    2016-11-29 14:07:00    2016-11-29 14:07:00
48877    22296    688    2016-11-29 03:28:00    2016-11-29 03:28:00
48878    22297    494    2016-11-29 06:33:00    2016-11-29 06:33:00
48879    22297    639    2016-11-29 06:56:00    2016-11-29 06:56:00
48880    22297    489    2016-11-29 05:30:00    2016-11-29 05:30:00
48881    22297    726    2016-11-29 09:32:00    2016-11-29 09:32:00
48882    22297    697    2016-11-29 22:08:00    2016-11-29 22:08:00
48883    22298    768    2016-11-29 18:27:00    2016-11-29 18:27:00
48884    22298    955    2016-11-29 12:17:00    2016-11-29 12:17:00
48885    22298    662    2016-11-29 04:16:00    2016-11-29 04:16:00
48886    22298    811    2016-11-29 19:52:00    2016-11-29 19:52:00
48887    22298    752    2016-11-29 04:05:00    2016-11-29 04:05:00
48888    22299    683    2016-11-30 00:00:00    2016-11-30 00:00:00
48889    22299    492    2016-11-29 05:13:00    2016-11-29 05:13:00
48890    22299    671    2016-11-29 22:46:00    2016-11-29 22:46:00
48891    22299    552    2016-11-29 15:54:00    2016-11-29 15:54:00
48892    22299    856    2016-11-29 22:54:00    2016-11-29 22:54:00
48893    22300    891    2016-11-30 23:51:00    2016-11-30 23:51:00
48894    22300    609    2016-11-30 16:57:00    2016-11-30 16:57:00
48895    22300    666    2016-11-30 14:10:00    2016-11-30 14:10:00
48896    22300    553    2016-11-30 22:19:00    2016-11-30 22:19:00
48897    22300    939    2016-11-30 21:44:00    2016-11-30 21:44:00
48898    22301    832    2016-11-30 19:32:00    2016-11-30 19:32:00
48899    22301    766    2016-11-30 06:31:00    2016-11-30 06:31:00
48900    22301    836    2016-11-30 07:16:00    2016-11-30 07:16:00
48901    22301    745    2016-11-30 07:05:00    2016-11-30 07:05:00
48902    22301    904    2016-11-30 05:09:00    2016-11-30 05:09:00
48903    22302    515    2016-11-30 18:27:00    2016-11-30 18:27:00
48904    22302    770    2016-11-30 11:01:00    2016-11-30 11:01:00
48905    22302    784    2016-11-30 11:40:00    2016-11-30 11:40:00
48906    22302    521    2016-11-30 15:08:00    2016-11-30 15:08:00
48907    22302    531    2016-11-30 20:07:00    2016-11-30 20:07:00
48908    22303    514    2016-11-30 12:38:00    2016-11-30 12:38:00
48909    22303    647    2016-11-30 18:00:00    2016-11-30 18:00:00
48910    22303    960    2016-11-30 07:12:00    2016-11-30 07:12:00
48911    22303    820    2016-11-30 01:22:00    2016-11-30 01:22:00
48912    22303    472    2016-11-30 11:54:00    2016-11-30 11:54:00
48913    22304    488    2016-11-30 16:58:00    2016-11-30 16:58:00
48914    22304    937    2016-11-30 11:12:00    2016-11-30 11:12:00
48915    22304    845    2016-11-30 23:15:00    2016-11-30 23:15:00
48916    22304    890    2016-11-30 05:35:00    2016-11-30 05:35:00
48917    22304    582    2016-11-30 03:50:00    2016-11-30 03:50:00
48918    22305    880    2016-11-30 09:21:00    2016-11-30 09:21:00
48919    22305    642    2016-11-30 22:15:00    2016-11-30 22:15:00
48920    22305    855    2016-11-30 18:40:00    2016-11-30 18:40:00
48921    22305    690    2016-11-30 11:00:00    2016-11-30 11:00:00
48922    22305    886    2016-11-30 05:30:00    2016-11-30 05:30:00
48923    22306    714    2016-11-30 11:08:00    2016-11-30 11:08:00
48924    22306    921    2016-11-30 16:11:00    2016-11-30 16:11:00
48925    22306    816    2016-11-30 12:10:00    2016-11-30 12:10:00
48926    22306    725    2016-11-30 13:39:00    2016-11-30 13:39:00
48927    22306    584    2016-11-30 09:52:00    2016-11-30 09:52:00
48928    22307    659    2016-11-30 23:15:00    2016-11-30 23:15:00
48929    22307    670    2016-11-30 02:13:00    2016-11-30 02:13:00
48930    22307    872    2016-11-30 20:51:00    2016-11-30 20:51:00
48931    22307    582    2016-11-30 23:02:00    2016-11-30 23:02:00
48932    22307    657    2016-11-30 15:03:00    2016-11-30 15:03:00
48933    22308    700    2016-11-30 12:21:00    2016-11-30 12:21:00
48934    22308    474    2016-11-30 10:25:00    2016-11-30 10:25:00
48935    22308    850    2016-11-30 07:59:00    2016-11-30 07:59:00
48936    22308    611    2016-11-30 04:49:00    2016-11-30 04:49:00
48937    22308    602    2016-11-30 04:54:00    2016-11-30 04:54:00
48938    22309    751    2016-11-30 12:53:00    2016-11-30 12:53:00
48939    22309    741    2016-11-30 22:52:00    2016-11-30 22:52:00
48940    22309    723    2016-11-30 14:20:00    2016-11-30 14:20:00
48941    22309    616    2016-11-30 17:46:00    2016-11-30 17:46:00
48942    22309    783    2016-11-30 17:01:00    2016-11-30 17:01:00
48943    22310    739    2016-11-30 09:16:00    2016-11-30 09:16:00
48944    22310    720    2016-11-30 06:04:00    2016-11-30 06:04:00
48945    22310    676    2016-11-30 20:39:00    2016-11-30 20:39:00
48946    22310    543    2016-11-30 09:19:00    2016-11-30 09:19:00
48947    22310    775    2016-11-30 15:49:00    2016-11-30 15:49:00
48948    22311    698    2016-11-30 22:09:00    2016-11-30 22:09:00
48949    22311    874    2016-11-30 13:58:00    2016-11-30 13:58:00
48950    22311    944    2016-11-30 02:43:00    2016-11-30 02:43:00
48951    22311    541    2016-11-30 22:12:00    2016-11-30 22:12:00
48952    22311    754    2016-11-30 10:09:00    2016-11-30 10:09:00
48953    22312    699    2016-11-30 17:59:00    2016-11-30 17:59:00
48954    22312    875    2016-11-30 17:40:00    2016-11-30 17:40:00
48955    22312    676    2016-11-30 18:03:00    2016-11-30 18:03:00
48956    22312    829    2016-11-30 20:38:00    2016-11-30 20:38:00
48957    22312    871    2016-11-30 15:02:00    2016-11-30 15:02:00
48958    22313    851    2016-11-30 18:17:00    2016-11-30 18:17:00
48959    22313    927    2016-11-30 01:44:00    2016-11-30 01:44:00
48960    22313    748    2016-11-30 20:27:00    2016-11-30 20:27:00
48961    22313    653    2016-11-30 05:46:00    2016-11-30 05:46:00
48962    22313    955    2016-11-30 02:16:00    2016-11-30 02:16:00
48963    22314    859    2016-11-30 06:30:00    2016-11-30 06:30:00
48964    22314    943    2016-11-30 06:30:00    2016-11-30 06:30:00
48965    22314    777    2016-11-30 23:56:00    2016-11-30 23:56:00
48966    22314    603    2016-11-30 03:40:00    2016-11-30 03:40:00
48967    22314    510    2016-11-30 20:14:00    2016-11-30 20:14:00
48968    22315    539    2016-11-30 02:10:00    2016-11-30 02:10:00
48969    22315    743    2016-11-30 05:31:00    2016-11-30 05:31:00
48970    22315    853    2016-11-30 12:45:00    2016-11-30 12:45:00
48971    22315    679    2016-11-30 10:59:00    2016-11-30 10:59:00
48972    22315    840    2016-11-30 22:08:00    2016-11-30 22:08:00
48973    22316    782    2016-11-30 04:45:00    2016-11-30 04:45:00
48974    22316    800    2016-11-30 10:31:00    2016-11-30 10:31:00
48975    22316    664    2016-11-30 01:36:00    2016-11-30 01:36:00
48976    22316    800    2016-11-30 13:57:00    2016-11-30 13:57:00
48977    22316    590    2016-11-30 09:36:00    2016-11-30 09:36:00
48978    22317    958    2016-11-30 03:34:00    2016-11-30 03:34:00
48979    22317    872    2016-11-30 20:20:00    2016-11-30 20:20:00
48980    22317    773    2016-11-30 07:23:00    2016-11-30 07:23:00
48981    22317    494    2016-11-30 19:24:00    2016-11-30 19:24:00
48982    22317    701    2016-11-30 07:09:00    2016-11-30 07:09:00
48983    22318    865    2016-11-30 06:45:00    2016-11-30 06:45:00
48984    22318    586    2016-11-30 16:41:00    2016-11-30 16:41:00
48985    22318    701    2016-11-30 21:09:00    2016-11-30 21:09:00
48986    22318    583    2016-11-30 19:32:00    2016-11-30 19:32:00
48987    22318    912    2016-11-30 04:43:00    2016-11-30 04:43:00
48988    22319    845    2016-11-30 22:32:00    2016-11-30 22:32:00
48989    22319    485    2016-11-30 08:01:00    2016-11-30 08:01:00
48990    22319    778    2016-11-30 08:43:00    2016-11-30 08:43:00
48991    22319    597    2016-11-30 14:23:00    2016-11-30 14:23:00
48992    22319    649    2016-11-30 10:58:00    2016-11-30 10:58:00
48993    22320    536    2016-11-30 14:16:00    2016-11-30 14:16:00
48994    22320    954    2016-11-30 23:12:00    2016-11-30 23:12:00
48995    22320    802    2016-11-30 04:05:00    2016-11-30 04:05:00
48996    22320    554    2016-11-30 12:33:00    2016-11-30 12:33:00
48997    22320    545    2016-11-30 16:20:00    2016-11-30 16:20:00
48998    22321    716    2016-11-30 03:42:00    2016-11-30 03:42:00
48999    22321    537    2016-11-30 22:00:00    2016-11-30 22:00:00
49000    22321    737    2016-11-30 06:03:00    2016-11-30 06:03:00
49001    22321    526    2016-11-30 06:52:00    2016-11-30 06:52:00
49002    22321    831    2016-11-30 10:09:00    2016-11-30 10:09:00
49003    22322    663    2016-11-30 16:54:00    2016-11-30 16:54:00
49004    22322    941    2016-11-30 21:35:00    2016-11-30 21:35:00
49005    22322    501    2016-11-30 15:25:00    2016-11-30 15:25:00
49006    22322    840    2016-11-30 08:47:00    2016-11-30 08:47:00
49007    22322    936    2016-11-30 09:22:00    2016-11-30 09:22:00
49008    22323    659    2016-11-30 14:18:00    2016-11-30 14:18:00
49009    22323    525    2016-11-30 02:54:00    2016-11-30 02:54:00
49010    22323    464    2016-11-30 03:23:00    2016-11-30 03:23:00
49011    22323    547    2016-11-30 11:14:00    2016-11-30 11:14:00
49012    22323    942    2016-11-30 09:17:00    2016-11-30 09:17:00
49013    22324    833    2016-11-30 14:43:00    2016-11-30 14:43:00
49014    22324    801    2016-11-30 14:34:00    2016-11-30 14:34:00
49015    22324    521    2016-11-30 02:48:00    2016-11-30 02:48:00
49016    22324    897    2016-11-30 16:15:00    2016-11-30 16:15:00
49017    22324    786    2016-11-30 07:32:00    2016-11-30 07:32:00
49018    22325    838    2016-11-30 03:41:00    2016-11-30 03:41:00
49019    22325    799    2016-11-30 17:22:00    2016-11-30 17:22:00
49020    22325    513    2016-11-30 08:31:00    2016-11-30 08:31:00
49021    22325    730    2016-11-30 05:11:00    2016-11-30 05:11:00
49022    22325    583    2016-11-30 13:21:00    2016-11-30 13:21:00
49023    22326    904    2016-11-30 15:31:00    2016-11-30 15:31:00
49024    22326    832    2016-11-30 17:12:00    2016-11-30 17:12:00
49025    22326    700    2016-11-30 19:01:00    2016-11-30 19:01:00
49026    22326    606    2016-11-30 14:16:00    2016-11-30 14:16:00
49027    22326    476    2016-11-30 22:09:00    2016-11-30 22:09:00
49028    22327    625    2016-11-30 05:11:00    2016-11-30 05:11:00
49029    22327    818    2016-11-30 21:25:00    2016-11-30 21:25:00
49030    22327    895    2016-11-30 01:39:00    2016-11-30 01:39:00
49031    22327    550    2016-11-30 13:09:00    2016-11-30 13:09:00
49032    22327    704    2016-11-30 10:44:00    2016-11-30 10:44:00
49033    22328    628    2016-11-30 11:28:00    2016-11-30 11:28:00
49034    22328    921    2016-11-30 14:59:00    2016-11-30 14:59:00
49035    22328    616    2016-11-30 14:16:00    2016-11-30 14:16:00
49036    22328    844    2016-11-30 18:47:00    2016-11-30 18:47:00
49037    22328    777    2016-11-30 13:23:00    2016-11-30 13:23:00
49038    22329    644    2016-11-30 23:23:00    2016-11-30 23:23:00
49039    22329    811    2016-11-30 09:22:00    2016-11-30 09:22:00
49040    22329    916    2016-11-30 03:45:00    2016-11-30 03:45:00
49041    22329    734    2016-11-30 06:32:00    2016-11-30 06:32:00
49042    22329    484    2016-11-30 16:45:00    2016-11-30 16:45:00
49043    22330    623    2016-11-30 07:55:00    2016-11-30 07:55:00
49044    22330    471    2016-11-30 23:57:00    2016-11-30 23:57:00
49045    22330    505    2016-11-30 10:47:00    2016-11-30 10:47:00
49046    22330    781    2016-11-30 17:43:00    2016-11-30 17:43:00
49047    22330    730    2016-11-30 14:49:00    2016-11-30 14:49:00
49048    22331    598    2016-11-30 22:56:00    2016-11-30 22:56:00
49049    22331    824    2016-11-30 05:14:00    2016-11-30 05:14:00
49050    22331    706    2016-11-30 23:06:00    2016-11-30 23:06:00
49051    22331    602    2016-11-30 23:44:00    2016-11-30 23:44:00
49052    22331    821    2016-11-30 14:32:00    2016-11-30 14:32:00
49053    22332    645    2016-11-30 14:02:00    2016-11-30 14:02:00
49054    22332    678    2016-11-30 09:28:00    2016-11-30 09:28:00
49055    22332    777    2016-11-30 19:00:00    2016-11-30 19:00:00
49056    22332    747    2016-11-30 01:47:00    2016-11-30 01:47:00
49057    22332    518    2016-11-30 13:45:00    2016-11-30 13:45:00
49058    22333    489    2016-11-30 21:24:00    2016-11-30 21:24:00
49059    22333    945    2016-11-30 19:56:00    2016-11-30 19:56:00
49060    22333    775    2016-11-30 18:35:00    2016-11-30 18:35:00
49061    22333    636    2016-11-30 11:49:00    2016-11-30 11:49:00
49062    22333    805    2016-11-30 09:54:00    2016-11-30 09:54:00
49063    22334    930    2016-11-30 22:18:00    2016-11-30 22:18:00
49064    22334    583    2016-11-30 09:02:00    2016-11-30 09:02:00
49065    22334    956    2016-11-30 08:50:00    2016-11-30 08:50:00
49066    22334    560    2016-11-30 08:38:00    2016-11-30 08:38:00
49067    22334    745    2016-11-30 08:39:00    2016-11-30 08:39:00
49068    22335    867    2016-11-30 05:30:00    2016-11-30 05:30:00
49069    22335    545    2016-11-30 18:43:00    2016-11-30 18:43:00
49070    22335    901    2016-11-30 23:02:00    2016-11-30 23:02:00
49071    22335    823    2016-11-30 13:06:00    2016-11-30 13:06:00
49072    22335    939    2016-11-30 13:29:00    2016-11-30 13:29:00
49073    22336    542    2016-11-30 20:38:00    2016-11-30 20:38:00
49074    22336    556    2016-11-30 17:54:00    2016-11-30 17:54:00
49075    22336    918    2016-11-30 11:07:00    2016-11-30 11:07:00
49076    22336    588    2016-11-30 23:19:00    2016-11-30 23:19:00
49077    22336    872    2016-11-30 05:09:00    2016-11-30 05:09:00
49078    22337    819    2016-11-30 21:42:00    2016-11-30 21:42:00
49079    22337    791    2016-11-30 08:56:00    2016-11-30 08:56:00
49080    22337    512    2016-11-30 18:38:00    2016-11-30 18:38:00
49081    22337    569    2016-11-30 14:50:00    2016-11-30 14:50:00
49082    22337    807    2016-11-30 14:32:00    2016-11-30 14:32:00
49083    22338    635    2016-11-30 01:58:00    2016-11-30 01:58:00
49084    22338    883    2016-11-30 20:22:00    2016-11-30 20:22:00
49085    22338    580    2016-11-30 20:47:00    2016-11-30 20:47:00
49086    22338    606    2016-11-30 16:27:00    2016-11-30 16:27:00
49087    22338    567    2016-11-30 08:57:00    2016-11-30 08:57:00
49088    22339    894    2016-11-30 09:49:00    2016-11-30 09:49:00
49089    22339    527    2016-11-30 01:38:00    2016-11-30 01:38:00
49090    22339    892    2016-11-30 15:27:00    2016-11-30 15:27:00
49091    22339    604    2016-11-30 17:07:00    2016-11-30 17:07:00
49092    22339    606    2016-11-30 14:08:00    2016-11-30 14:08:00
49093    22340    950    2016-11-30 11:12:00    2016-11-30 11:12:00
49094    22340    539    2016-11-30 10:14:00    2016-11-30 10:14:00
49095    22340    501    2016-11-30 10:01:00    2016-11-30 10:01:00
49096    22340    742    2016-11-30 03:56:00    2016-11-30 03:56:00
49097    22340    622    2016-11-30 20:20:00    2016-11-30 20:20:00
49098    22341    615    2016-11-30 23:32:00    2016-11-30 23:32:00
49099    22341    860    2016-11-30 06:49:00    2016-11-30 06:49:00
49100    22341    501    2016-11-30 17:39:00    2016-11-30 17:39:00
49101    22341    884    2016-11-30 14:26:00    2016-11-30 14:26:00
49102    22341    750    2016-11-30 03:45:00    2016-11-30 03:45:00
49103    22342    816    2016-11-30 19:19:00    2016-11-30 19:19:00
49104    22342    894    2016-11-30 17:29:00    2016-11-30 17:29:00
49105    22342    753    2016-11-30 23:47:00    2016-11-30 23:47:00
49106    22342    620    2016-11-30 17:09:00    2016-11-30 17:09:00
49107    22342    935    2016-11-30 22:30:00    2016-11-30 22:30:00
49108    22343    742    2016-11-30 07:42:00    2016-11-30 07:42:00
49109    22343    885    2016-11-30 03:54:00    2016-11-30 03:54:00
49110    22343    528    2016-11-30 11:28:00    2016-11-30 11:28:00
49111    22343    793    2016-11-30 04:25:00    2016-11-30 04:25:00
49112    22343    944    2016-11-30 16:36:00    2016-11-30 16:36:00
49113    22344    753    2016-11-30 15:27:00    2016-11-30 15:27:00
49114    22344    696    2016-11-30 18:03:00    2016-11-30 18:03:00
49115    22344    583    2016-11-30 15:24:00    2016-11-30 15:24:00
49116    22344    780    2016-11-30 10:13:00    2016-11-30 10:13:00
49117    22344    792    2016-11-30 14:30:00    2016-11-30 14:30:00
49118    22345    796    2016-11-30 02:38:00    2016-11-30 02:38:00
49119    22345    917    2016-11-30 15:00:00    2016-11-30 15:00:00
49120    22345    899    2016-11-30 08:06:00    2016-11-30 08:06:00
49121    22345    918    2016-11-30 20:51:00    2016-11-30 20:51:00
49122    22345    568    2016-11-30 19:33:00    2016-11-30 19:33:00
49123    22346    498    2016-11-30 19:25:00    2016-11-30 19:25:00
49124    22346    793    2016-11-30 23:10:00    2016-11-30 23:10:00
49125    22346    843    2016-11-30 10:28:00    2016-11-30 10:28:00
49126    22346    946    2016-11-30 08:44:00    2016-11-30 08:44:00
49127    22346    802    2016-11-30 21:29:00    2016-11-30 21:29:00
49128    22347    632    2016-11-30 07:51:00    2016-11-30 07:51:00
49129    22347    569    2016-11-30 17:04:00    2016-11-30 17:04:00
49130    22347    739    2016-11-30 11:07:00    2016-11-30 11:07:00
49131    22347    783    2016-11-30 16:00:00    2016-11-30 16:00:00
49132    22347    854    2016-11-30 14:28:00    2016-11-30 14:28:00
49133    22348    476    2016-11-30 15:05:00    2016-11-30 15:05:00
49134    22348    831    2016-11-30 21:10:00    2016-11-30 21:10:00
49135    22348    684    2016-11-30 18:59:00    2016-11-30 18:59:00
49136    22348    508    2016-11-30 20:06:00    2016-11-30 20:06:00
49137    22348    531    2016-11-30 16:47:00    2016-11-30 16:47:00
49138    22349    785    2016-11-30 03:57:00    2016-11-30 03:57:00
49139    22349    463    2016-11-30 09:30:00    2016-11-30 09:30:00
49140    22349    699    2016-11-30 16:45:00    2016-11-30 16:45:00
49141    22349    598    2016-11-30 10:37:00    2016-11-30 10:37:00
49142    22349    902    2016-11-30 18:41:00    2016-11-30 18:41:00
49143    22350    481    2016-11-30 16:50:00    2016-11-30 16:50:00
49144    22350    692    2016-11-30 18:19:00    2016-11-30 18:19:00
49145    22350    939    2016-11-30 17:46:00    2016-11-30 17:46:00
49146    22350    505    2016-11-30 21:25:00    2016-11-30 21:25:00
49147    22350    627    2016-11-30 05:23:00    2016-11-30 05:23:00
49148    22351    660    2016-11-30 18:11:00    2016-11-30 18:11:00
49149    22351    595    2016-11-30 21:41:00    2016-11-30 21:41:00
49150    22351    576    2016-11-30 18:39:00    2016-11-30 18:39:00
49151    22351    493    2016-11-30 12:22:00    2016-11-30 12:22:00
49152    22351    941    2016-11-30 08:28:00    2016-11-30 08:28:00
49153    22352    731    2016-11-30 08:34:00    2016-11-30 08:34:00
49154    22352    697    2016-11-30 16:46:00    2016-11-30 16:46:00
49155    22352    617    2016-11-30 17:54:00    2016-11-30 17:54:00
49156    22352    860    2016-11-30 09:26:00    2016-11-30 09:26:00
49157    22352    557    2016-11-30 05:19:00    2016-11-30 05:19:00
49158    22353    470    2016-11-30 15:06:00    2016-11-30 15:06:00
49159    22353    588    2016-11-30 11:47:00    2016-11-30 11:47:00
49160    22353    626    2016-11-30 16:37:00    2016-11-30 16:37:00
49161    22353    625    2016-11-30 13:03:00    2016-11-30 13:03:00
49162    22353    569    2016-11-30 22:40:00    2016-11-30 22:40:00
49163    22354    474    2016-11-30 04:24:00    2016-11-30 04:24:00
49164    22354    764    2016-11-30 22:42:00    2016-11-30 22:42:00
49165    22354    556    2016-11-30 09:54:00    2016-11-30 09:54:00
49166    22354    903    2016-11-30 06:07:00    2016-11-30 06:07:00
49167    22354    812    2016-11-30 07:22:00    2016-11-30 07:22:00
49168    22355    585    2016-11-30 11:29:00    2016-11-30 11:29:00
49169    22355    496    2016-11-30 10:30:00    2016-11-30 10:30:00
49170    22355    519    2016-11-30 07:40:00    2016-11-30 07:40:00
49171    22355    883    2016-11-30 01:30:00    2016-11-30 01:30:00
49172    22355    682    2016-11-30 13:41:00    2016-11-30 13:41:00
49173    22356    883    2016-11-30 01:27:00    2016-11-30 01:27:00
49174    22356    866    2016-11-30 23:03:00    2016-11-30 23:03:00
49175    22356    718    2016-11-30 14:11:00    2016-11-30 14:11:00
49176    22356    897    2016-11-30 07:48:00    2016-11-30 07:48:00
49177    22356    785    2016-11-30 04:09:00    2016-11-30 04:09:00
49178    22357    542    2016-11-30 07:14:00    2016-11-30 07:14:00
49179    22357    676    2016-12-01 00:00:00    2016-12-01 00:00:00
49180    22357    766    2016-11-30 02:13:00    2016-11-30 02:13:00
49181    22357    876    2016-11-30 23:47:00    2016-11-30 23:47:00
49182    22357    616    2016-11-30 23:52:00    2016-11-30 23:52:00
49183    22358    616    2016-11-30 06:40:00    2016-11-30 06:40:00
49184    22358    766    2016-11-30 12:29:00    2016-11-30 12:29:00
49185    22358    666    2016-11-30 22:15:00    2016-11-30 22:15:00
49186    22358    793    2016-11-30 13:52:00    2016-11-30 13:52:00
49187    22358    953    2016-11-30 04:11:00    2016-11-30 04:11:00
49188    22359    469    2016-11-30 17:52:00    2016-11-30 17:52:00
49189    22359    786    2016-11-30 02:09:00    2016-11-30 02:09:00
49190    22359    822    2016-11-30 09:10:00    2016-11-30 09:10:00
49191    22359    654    2016-11-30 23:56:00    2016-11-30 23:56:00
49192    22359    939    2016-11-30 08:06:00    2016-11-30 08:06:00
49193    22360    533    2016-11-30 11:00:00    2016-11-30 11:00:00
49194    22360    471    2016-11-30 08:58:00    2016-11-30 08:58:00
49195    22360    531    2016-11-30 01:08:00    2016-11-30 01:08:00
49196    22360    612    2016-11-30 02:57:00    2016-11-30 02:57:00
49197    22360    692    2016-11-30 06:10:00    2016-11-30 06:10:00
49198    22361    758    2016-11-30 02:20:00    2016-11-30 02:20:00
49199    22361    604    2016-11-30 04:51:00    2016-11-30 04:51:00
49200    22361    680    2016-11-30 01:54:00    2016-11-30 01:54:00
49201    22361    575    2016-11-30 04:06:00    2016-11-30 04:06:00
49202    22361    824    2016-11-30 10:01:00    2016-11-30 10:01:00
49203    22362    576    2016-11-30 01:22:00    2016-11-30 01:22:00
49204    22362    530    2016-11-30 08:42:00    2016-11-30 08:42:00
49205    22362    470    2016-11-30 18:03:00    2016-11-30 18:03:00
49206    22362    569    2016-11-30 06:33:00    2016-11-30 06:33:00
49207    22362    717    2016-11-30 17:29:00    2016-11-30 17:29:00
49208    22363    490    2016-11-30 12:36:00    2016-11-30 12:36:00
49209    22363    572    2016-11-30 05:20:00    2016-11-30 05:20:00
49210    22363    536    2016-11-30 10:43:00    2016-11-30 10:43:00
49211    22363    807    2016-11-30 16:12:00    2016-11-30 16:12:00
49212    22363    870    2016-11-30 18:40:00    2016-11-30 18:40:00
49213    22364    748    2016-11-30 16:26:00    2016-11-30 16:26:00
49214    22364    739    2016-11-30 05:00:00    2016-11-30 05:00:00
49215    22364    879    2016-11-30 12:51:00    2016-11-30 12:51:00
49216    22364    637    2016-11-30 21:42:00    2016-11-30 21:42:00
49217    22364    628    2016-11-30 09:00:00    2016-11-30 09:00:00
49218    22365    816    2016-11-30 11:27:00    2016-11-30 11:27:00
49219    22365    605    2016-11-30 22:10:00    2016-11-30 22:10:00
49220    22365    813    2016-11-30 12:52:00    2016-11-30 12:52:00
49221    22365    696    2016-11-30 21:50:00    2016-11-30 21:50:00
49222    22365    665    2016-11-30 10:46:00    2016-11-30 10:46:00
49223    22366    800    2016-11-30 09:33:00    2016-11-30 09:33:00
49224    22366    812    2016-11-30 10:42:00    2016-11-30 10:42:00
49225    22366    570    2016-11-30 23:52:00    2016-11-30 23:52:00
49226    22366    621    2016-11-30 09:21:00    2016-11-30 09:21:00
49227    22366    644    2016-11-30 08:43:00    2016-11-30 08:43:00
49228    22367    647    2016-11-30 08:20:00    2016-11-30 08:20:00
49229    22367    491    2016-11-30 17:15:00    2016-11-30 17:15:00
49230    22367    813    2016-11-30 19:34:00    2016-11-30 19:34:00
49231    22367    570    2016-11-30 01:35:00    2016-11-30 01:35:00
49232    22367    573    2016-11-30 23:54:00    2016-11-30 23:54:00
49233    22368    901    2016-11-30 12:06:00    2016-11-30 12:06:00
49234    22368    596    2016-11-30 22:54:00    2016-11-30 22:54:00
49235    22368    923    2016-11-30 05:53:00    2016-11-30 05:53:00
49236    22368    926    2016-11-30 15:11:00    2016-11-30 15:11:00
49237    22368    915    2016-11-30 15:58:00    2016-11-30 15:58:00
49238    22369    812    2016-11-30 21:12:00    2016-11-30 21:12:00
49239    22369    556    2016-11-30 15:40:00    2016-11-30 15:40:00
49240    22369    601    2016-11-30 06:53:00    2016-11-30 06:53:00
49241    22369    657    2016-11-30 18:56:00    2016-11-30 18:56:00
49242    22369    632    2016-11-30 18:23:00    2016-11-30 18:23:00
49243    22370    943    2016-11-30 09:00:00    2016-11-30 09:00:00
49244    22370    563    2016-11-30 21:48:00    2016-11-30 21:48:00
49245    22370    548    2016-11-30 08:24:00    2016-11-30 08:24:00
49246    22370    912    2016-11-30 09:25:00    2016-11-30 09:25:00
49247    22370    832    2016-11-30 15:28:00    2016-11-30 15:28:00
49248    22371    605    2016-11-30 04:35:00    2016-11-30 04:35:00
49249    22371    541    2016-11-30 02:14:00    2016-11-30 02:14:00
49250    22371    525    2016-11-30 07:55:00    2016-11-30 07:55:00
49251    22371    723    2016-11-30 14:43:00    2016-11-30 14:43:00
49252    22371    844    2016-11-30 20:00:00    2016-11-30 20:00:00
49253    22372    761    2016-11-30 07:40:00    2016-11-30 07:40:00
49254    22372    524    2016-11-30 10:01:00    2016-11-30 10:01:00
49255    22372    629    2016-11-30 11:49:00    2016-11-30 11:49:00
49256    22372    936    2016-11-30 01:20:00    2016-11-30 01:20:00
49257    22372    842    2016-11-30 16:31:00    2016-11-30 16:31:00
49258    22373    804    2016-11-30 13:54:00    2016-11-30 13:54:00
49259    22373    810    2016-11-30 11:53:00    2016-11-30 11:53:00
49260    22373    776    2016-11-30 10:50:00    2016-11-30 10:50:00
49261    22373    947    2016-11-30 15:33:00    2016-11-30 15:33:00
49262    22373    488    2016-11-30 22:16:00    2016-11-30 22:16:00
49263    22374    951    2016-11-30 05:00:00    2016-11-30 05:00:00
49264    22374    649    2016-11-30 06:08:00    2016-11-30 06:08:00
49265    22374    750    2016-11-30 02:54:00    2016-11-30 02:54:00
49266    22374    846    2016-11-30 08:29:00    2016-11-30 08:29:00
49267    22374    789    2016-11-30 10:26:00    2016-11-30 10:26:00
49268    22375    754    2016-11-30 15:03:00    2016-11-30 15:03:00
49269    22375    504    2016-11-30 08:42:00    2016-11-30 08:42:00
49270    22375    577    2016-11-30 13:34:00    2016-11-30 13:34:00
49271    22375    520    2016-11-30 11:49:00    2016-11-30 11:49:00
49272    22375    549    2016-11-30 21:56:00    2016-11-30 21:56:00
49273    22376    697    2016-11-30 18:49:00    2016-11-30 18:49:00
49274    22376    934    2016-11-30 03:46:00    2016-11-30 03:46:00
49275    22376    666    2016-11-30 21:49:00    2016-11-30 21:49:00
49276    22376    907    2016-11-30 22:11:00    2016-11-30 22:11:00
49277    22376    542    2016-11-30 19:28:00    2016-11-30 19:28:00
49278    22377    492    2016-11-30 12:19:00    2016-11-30 12:19:00
49279    22377    547    2016-11-30 17:46:00    2016-11-30 17:46:00
49280    22377    902    2016-11-30 23:19:00    2016-11-30 23:19:00
49281    22377    762    2016-11-30 04:02:00    2016-11-30 04:02:00
49282    22377    855    2016-11-30 07:17:00    2016-11-30 07:17:00
49283    22378    601    2016-11-30 18:47:00    2016-11-30 18:47:00
49284    22378    523    2016-11-30 04:48:00    2016-11-30 04:48:00
49285    22378    844    2016-11-30 06:40:00    2016-11-30 06:40:00
49286    22378    880    2016-11-30 01:46:00    2016-11-30 01:46:00
49287    22378    895    2016-11-30 08:48:00    2016-11-30 08:48:00
49288    22379    621    2016-11-30 09:34:00    2016-11-30 09:34:00
49289    22379    542    2016-11-30 04:51:00    2016-11-30 04:51:00
49290    22379    817    2016-11-30 04:15:00    2016-11-30 04:15:00
49291    22379    910    2016-11-30 14:06:00    2016-11-30 14:06:00
49292    22379    600    2016-11-30 06:00:00    2016-11-30 06:00:00
49293    22380    634    2016-11-30 21:30:00    2016-11-30 21:30:00
49294    22380    558    2016-11-30 23:34:00    2016-11-30 23:34:00
49295    22380    775    2016-11-30 18:22:00    2016-11-30 18:22:00
49296    22380    689    2016-11-30 14:45:00    2016-11-30 14:45:00
49297    22380    780    2016-11-30 03:05:00    2016-11-30 03:05:00
49298    22381    793    2016-11-30 14:02:00    2016-11-30 14:02:00
49299    22381    649    2016-11-30 02:52:00    2016-11-30 02:52:00
49300    22381    950    2016-11-30 23:13:00    2016-11-30 23:13:00
49301    22381    676    2016-11-30 22:41:00    2016-11-30 22:41:00
49302    22381    534    2016-11-30 04:24:00    2016-11-30 04:24:00
49303    22382    577    2016-11-30 04:07:00    2016-11-30 04:07:00
49304    22382    603    2016-11-30 02:41:00    2016-11-30 02:41:00
49305    22382    686    2016-11-30 10:12:00    2016-11-30 10:12:00
49306    22382    689    2016-11-30 02:42:00    2016-11-30 02:42:00
49307    22382    582    2016-11-30 07:17:00    2016-11-30 07:17:00
49308    22383    890    2016-11-30 14:39:00    2016-11-30 14:39:00
49309    22383    896    2016-11-30 09:57:00    2016-11-30 09:57:00
49310    22383    655    2016-11-30 13:03:00    2016-11-30 13:03:00
49311    22383    808    2016-11-30 06:34:00    2016-11-30 06:34:00
49312    22383    511    2016-11-30 02:12:00    2016-11-30 02:12:00
49313    22384    726    2016-11-30 02:52:00    2016-11-30 02:52:00
49314    22384    773    2016-11-30 09:52:00    2016-11-30 09:52:00
49315    22384    876    2016-11-30 13:40:00    2016-11-30 13:40:00
49316    22384    902    2016-11-30 17:52:00    2016-11-30 17:52:00
49317    22384    790    2016-11-30 16:18:00    2016-11-30 16:18:00
49318    22385    903    2016-11-30 15:51:00    2016-11-30 15:51:00
49319    22385    590    2016-11-30 12:34:00    2016-11-30 12:34:00
49320    22385    864    2016-11-30 03:01:00    2016-11-30 03:01:00
49321    22385    844    2016-11-30 07:02:00    2016-11-30 07:02:00
49322    22385    504    2016-11-30 06:18:00    2016-11-30 06:18:00
49323    22386    513    2016-11-30 11:56:00    2016-11-30 11:56:00
49324    22386    751    2016-11-30 09:31:00    2016-11-30 09:31:00
49325    22386    468    2016-11-30 09:18:00    2016-11-30 09:18:00
49326    22386    931    2016-11-30 15:11:00    2016-11-30 15:11:00
49327    22386    506    2016-11-30 18:14:00    2016-11-30 18:14:00
49328    22387    522    2016-11-30 22:48:00    2016-11-30 22:48:00
49329    22387    832    2016-11-30 05:12:00    2016-11-30 05:12:00
49330    22387    942    2016-11-30 09:12:00    2016-11-30 09:12:00
49331    22387    942    2016-11-30 08:09:00    2016-11-30 08:09:00
49332    22387    952    2016-11-30 19:01:00    2016-11-30 19:01:00
49333    22388    842    2016-11-30 19:14:00    2016-11-30 19:14:00
49334    22388    626    2016-11-30 09:03:00    2016-11-30 09:03:00
49335    22388    773    2016-11-30 09:54:00    2016-11-30 09:54:00
49336    22388    833    2016-11-30 08:19:00    2016-11-30 08:19:00
49337    22388    605    2016-11-30 14:00:00    2016-11-30 14:00:00
49338    22389    643    2016-11-30 17:45:00    2016-11-30 17:45:00
49339    22389    631    2016-11-30 01:01:00    2016-11-30 01:01:00
49340    22389    629    2016-11-30 03:16:00    2016-11-30 03:16:00
49341    22389    718    2016-11-30 19:02:00    2016-11-30 19:02:00
49342    22389    633    2016-11-30 08:00:00    2016-11-30 08:00:00
48384    \N    565    2016-11-27 10:13:00    2016-12-01 20:07:09.931276
49343    22390    847    2016-12-01 21:17:00    2016-12-01 21:17:00
49344    22390    532    2016-12-01 06:13:00    2016-12-01 06:13:00
49345    22390    647    2016-12-01 06:10:00    2016-12-01 06:10:00
49346    22390    797    2016-12-01 20:41:00    2016-12-01 20:41:00
49347    22390    907    2016-12-01 06:50:00    2016-12-01 06:50:00
49348    22391    468    2016-12-01 11:31:00    2016-12-01 11:31:00
49349    22391    713    2016-12-01 03:02:00    2016-12-01 03:02:00
49350    22391    778    2016-12-01 23:05:00    2016-12-01 23:05:00
49351    22391    912    2016-12-01 05:22:00    2016-12-01 05:22:00
49352    22391    941    2016-12-01 04:14:00    2016-12-01 04:14:00
49353    22392    748    2016-12-01 14:20:00    2016-12-01 14:20:00
49354    22392    643    2016-12-01 15:50:00    2016-12-01 15:50:00
49355    22392    807    2016-12-01 08:18:00    2016-12-01 08:18:00
49356    22392    655    2016-12-01 17:06:00    2016-12-01 17:06:00
49357    22392    866    2016-12-01 15:22:00    2016-12-01 15:22:00
49358    22393    691    2016-12-01 16:20:00    2016-12-01 16:20:00
49359    22393    688    2016-12-01 16:18:00    2016-12-01 16:18:00
49360    22393    538    2016-12-01 03:13:00    2016-12-01 03:13:00
49361    22393    727    2016-12-01 05:05:00    2016-12-01 05:05:00
49362    22393    960    2016-12-01 17:28:00    2016-12-01 17:28:00
49363    22394    477    2016-12-01 03:15:00    2016-12-01 03:15:00
49364    22394    737    2016-12-01 05:54:00    2016-12-01 05:54:00
49365    22394    671    2016-12-01 08:32:00    2016-12-01 08:32:00
49366    22394    534    2016-12-01 18:46:00    2016-12-01 18:46:00
49367    22394    890    2016-12-01 12:08:00    2016-12-01 12:08:00
49368    22395    541    2016-12-01 22:19:00    2016-12-01 22:19:00
49369    22395    668    2016-12-01 16:33:00    2016-12-01 16:33:00
49370    22395    681    2016-12-01 03:59:00    2016-12-01 03:59:00
49371    22395    709    2016-12-01 17:25:00    2016-12-01 17:25:00
49372    22395    854    2016-12-01 18:00:00    2016-12-01 18:00:00
49373    22396    669    2016-12-01 02:06:00    2016-12-01 02:06:00
49374    22396    938    2016-12-01 15:42:00    2016-12-01 15:42:00
49375    22396    582    2016-12-01 14:42:00    2016-12-01 14:42:00
49376    22396    932    2016-12-01 21:17:00    2016-12-01 21:17:00
49377    22396    948    2016-12-01 08:21:00    2016-12-01 08:21:00
49378    22397    507    2016-12-01 23:02:00    2016-12-01 23:02:00
49379    22397    610    2016-12-01 15:11:00    2016-12-01 15:11:00
49380    22397    547    2016-12-01 22:35:00    2016-12-01 22:35:00
49381    22397    834    2016-12-01 01:36:00    2016-12-01 01:36:00
49382    22397    825    2016-12-01 17:39:00    2016-12-01 17:39:00
49383    22398    581    2016-12-01 03:45:00    2016-12-01 03:45:00
49384    22398    797    2016-12-01 03:59:00    2016-12-01 03:59:00
49385    22398    940    2016-12-01 15:18:00    2016-12-01 15:18:00
49386    22398    476    2016-12-01 06:25:00    2016-12-01 06:25:00
49387    22398    596    2016-12-01 23:40:00    2016-12-01 23:40:00
49388    22399    544    2016-12-01 03:25:00    2016-12-01 03:25:00
49389    22399    776    2016-12-01 07:13:00    2016-12-01 07:13:00
49390    22399    674    2016-12-01 16:05:00    2016-12-01 16:05:00
49391    22399    484    2016-12-01 07:17:00    2016-12-01 07:17:00
49392    22399    680    2016-12-01 18:23:00    2016-12-01 18:23:00
49393    22400    654    2016-12-01 19:09:00    2016-12-01 19:09:00
49394    22400    558    2016-12-01 09:45:00    2016-12-01 09:45:00
49395    22400    827    2016-12-01 01:49:00    2016-12-01 01:49:00
49396    22400    561    2016-12-01 21:32:00    2016-12-01 21:32:00
49397    22400    598    2016-12-01 17:12:00    2016-12-01 17:12:00
49398    22401    479    2016-12-01 07:13:00    2016-12-01 07:13:00
49399    22401    629    2016-12-01 23:58:00    2016-12-01 23:58:00
49400    22401    662    2016-12-01 12:59:00    2016-12-01 12:59:00
49401    22401    819    2016-12-01 06:54:00    2016-12-01 06:54:00
49402    22401    582    2016-12-01 04:42:00    2016-12-01 04:42:00
49403    22402    466    2016-12-01 21:38:00    2016-12-01 21:38:00
49404    22402    563    2016-12-01 19:37:00    2016-12-01 19:37:00
49405    22402    727    2016-12-01 13:18:00    2016-12-01 13:18:00
49406    22402    818    2016-12-01 01:45:00    2016-12-01 01:45:00
49407    22402    793    2016-12-01 17:13:00    2016-12-01 17:13:00
49408    22403    823    2016-12-01 13:20:00    2016-12-01 13:20:00
49409    22403    623    2016-12-01 04:09:00    2016-12-01 04:09:00
49410    22403    468    2016-12-01 06:04:00    2016-12-01 06:04:00
49411    22403    610    2016-12-01 16:50:00    2016-12-01 16:50:00
49412    22403    652    2016-12-01 10:25:00    2016-12-01 10:25:00
49413    22404    932    2016-12-01 13:27:00    2016-12-01 13:27:00
49414    22404    697    2016-12-01 03:55:00    2016-12-01 03:55:00
49415    22404    697    2016-12-01 08:00:00    2016-12-01 08:00:00
49416    22404    860    2016-12-01 22:36:00    2016-12-01 22:36:00
49417    22404    846    2016-12-01 21:27:00    2016-12-01 21:27:00
49418    22405    615    2016-12-01 21:11:00    2016-12-01 21:11:00
49419    22405    524    2016-12-01 15:18:00    2016-12-01 15:18:00
49420    22405    630    2016-12-01 03:55:00    2016-12-01 03:55:00
49421    22405    756    2016-12-01 22:53:00    2016-12-01 22:53:00
49422    22405    944    2016-12-01 06:03:00    2016-12-01 06:03:00
49423    22406    877    2016-12-01 18:16:00    2016-12-01 18:16:00
49424    22406    745    2016-12-01 21:15:00    2016-12-01 21:15:00
49425    22406    691    2016-12-01 19:38:00    2016-12-01 19:38:00
49426    22406    694    2016-12-01 14:37:00    2016-12-01 14:37:00
49427    22406    633    2016-12-01 21:12:00    2016-12-01 21:12:00
49428    22407    840    2016-12-01 03:16:00    2016-12-01 03:16:00
49429    22407    908    2016-12-01 03:48:00    2016-12-01 03:48:00
49430    22407    680    2016-12-01 19:09:00    2016-12-01 19:09:00
49431    22407    555    2016-12-01 07:45:00    2016-12-01 07:45:00
49432    22407    556    2016-12-01 12:17:00    2016-12-01 12:17:00
49433    22408    653    2016-12-02 20:05:00    2016-12-02 20:05:00
49434    22408    743    2016-12-02 06:13:00    2016-12-02 06:13:00
49435    22408    875    2016-12-02 07:55:00    2016-12-02 07:55:00
49436    22408    835    2016-12-02 15:28:00    2016-12-02 15:28:00
49437    22408    524    2016-12-02 18:16:00    2016-12-02 18:16:00
49438    22409    896    2016-12-02 17:42:00    2016-12-02 17:42:00
49439    22409    531    2016-12-02 06:30:00    2016-12-02 06:30:00
49440    22409    577    2016-12-02 13:27:00    2016-12-02 13:27:00
49441    22409    700    2016-12-02 17:56:00    2016-12-02 17:56:00
49442    22409    524    2016-12-03 00:00:00    2016-12-03 00:00:00
49443    22410    743    2016-12-02 23:08:00    2016-12-02 23:08:00
49444    22410    472    2016-12-02 21:17:00    2016-12-02 21:17:00
49445    22410    583    2016-12-02 17:44:00    2016-12-02 17:44:00
49446    22410    650    2016-12-02 10:19:00    2016-12-02 10:19:00
49447    22410    707    2016-12-02 23:09:00    2016-12-02 23:09:00
49448    22411    467    2016-12-02 13:12:00    2016-12-02 13:12:00
49449    22411    867    2016-12-02 18:00:00    2016-12-02 18:00:00
49450    22411    779    2016-12-02 20:39:00    2016-12-02 20:39:00
49451    22411    731    2016-12-02 19:23:00    2016-12-02 19:23:00
49452    22411    854    2016-12-02 04:53:00    2016-12-02 04:53:00
49453    22412    708    2016-12-02 02:37:00    2016-12-02 02:37:00
49454    22412    735    2016-12-02 14:05:00    2016-12-02 14:05:00
49455    22412    566    2016-12-02 15:28:00    2016-12-02 15:28:00
49456    22412    770    2016-12-02 01:02:00    2016-12-02 01:02:00
49457    22412    772    2016-12-02 19:59:00    2016-12-02 19:59:00
49458    22413    834    2016-12-02 19:30:00    2016-12-02 19:30:00
49459    22413    475    2016-12-02 16:40:00    2016-12-02 16:40:00
49460    22413    505    2016-12-02 21:39:00    2016-12-02 21:39:00
49461    22413    908    2016-12-02 18:41:00    2016-12-02 18:41:00
49462    22413    840    2016-12-02 16:38:00    2016-12-02 16:38:00
49463    22414    679    2016-12-02 09:42:00    2016-12-02 09:42:00
49464    22414    603    2016-12-02 09:32:00    2016-12-02 09:32:00
49465    22414    482    2016-12-02 10:18:00    2016-12-02 10:18:00
49466    22414    692    2016-12-02 06:24:00    2016-12-02 06:24:00
49467    22414    488    2016-12-02 07:08:00    2016-12-02 07:08:00
49468    22415    584    2016-12-02 16:20:00    2016-12-02 16:20:00
49469    22415    941    2016-12-02 13:00:00    2016-12-02 13:00:00
49470    22415    577    2016-12-02 02:44:00    2016-12-02 02:44:00
49471    22415    690    2016-12-02 05:01:00    2016-12-02 05:01:00
49472    22415    887    2016-12-02 14:03:00    2016-12-02 14:03:00
49473    22416    929    2016-12-02 10:42:00    2016-12-02 10:42:00
49474    22416    589    2016-12-02 18:58:00    2016-12-02 18:58:00
49475    22416    468    2016-12-02 17:55:00    2016-12-02 17:55:00
49476    22416    623    2016-12-02 03:26:00    2016-12-02 03:26:00
49477    22416    908    2016-12-02 06:10:00    2016-12-02 06:10:00
49478    22417    558    2016-12-02 22:02:00    2016-12-02 22:02:00
49479    22417    805    2016-12-02 19:52:00    2016-12-02 19:52:00
49480    22417    948    2016-12-02 04:53:00    2016-12-02 04:53:00
49481    22417    686    2016-12-02 17:07:00    2016-12-02 17:07:00
49482    22417    862    2016-12-02 09:07:00    2016-12-02 09:07:00
49483    22418    552    2016-12-02 22:00:00    2016-12-02 22:00:00
49484    22418    784    2016-12-02 08:55:00    2016-12-02 08:55:00
49485    22418    884    2016-12-02 06:31:00    2016-12-02 06:31:00
49486    22418    646    2016-12-02 09:58:00    2016-12-02 09:58:00
49487    22418    759    2016-12-02 11:42:00    2016-12-02 11:42:00
49488    22419    800    2016-12-02 18:40:00    2016-12-02 18:40:00
49489    22419    935    2016-12-02 05:11:00    2016-12-02 05:11:00
49490    22419    714    2016-12-02 17:00:00    2016-12-02 17:00:00
49491    22419    723    2016-12-02 12:47:00    2016-12-02 12:47:00
49492    22419    728    2016-12-02 08:23:00    2016-12-02 08:23:00
49493    22420    500    2016-12-02 14:24:00    2016-12-02 14:24:00
49494    22420    527    2016-12-02 05:28:00    2016-12-02 05:28:00
49495    22420    562    2016-12-02 12:51:00    2016-12-02 12:51:00
49496    22420    601    2016-12-02 20:02:00    2016-12-02 20:02:00
49497    22420    954    2016-12-02 17:50:00    2016-12-02 17:50:00
49498    22421    607    2016-12-02 17:27:00    2016-12-02 17:27:00
49499    22421    926    2016-12-02 04:31:00    2016-12-02 04:31:00
49500    22421    748    2016-12-02 16:16:00    2016-12-02 16:16:00
49501    22421    876    2016-12-02 20:53:00    2016-12-02 20:53:00
49502    22421    766    2016-12-02 01:44:00    2016-12-02 01:44:00
49503    22422    853    2016-12-02 07:07:00    2016-12-02 07:07:00
49504    22422    955    2016-12-02 17:01:00    2016-12-02 17:01:00
49505    22422    539    2016-12-02 01:04:00    2016-12-02 01:04:00
49506    22422    830    2016-12-02 05:07:00    2016-12-02 05:07:00
49507    22422    561    2016-12-02 03:17:00    2016-12-02 03:17:00
49508    22423    750    2016-12-03 23:15:00    2016-12-03 23:15:00
49509    22423    591    2016-12-03 06:48:00    2016-12-03 06:48:00
49510    22423    773    2016-12-03 18:42:00    2016-12-03 18:42:00
49511    22423    624    2016-12-03 13:42:00    2016-12-03 13:42:00
49512    22423    840    2016-12-03 18:35:00    2016-12-03 18:35:00
49513    22424    635    2016-12-03 19:58:00    2016-12-03 19:58:00
49514    22424    915    2016-12-03 22:14:00    2016-12-03 22:14:00
49515    22424    735    2016-12-03 17:16:00    2016-12-03 17:16:00
49516    22424    837    2016-12-03 15:29:00    2016-12-03 15:29:00
49517    22424    934    2016-12-03 01:17:00    2016-12-03 01:17:00
49518    22425    548    2016-12-03 04:21:00    2016-12-03 04:21:00
49519    22425    537    2016-12-03 01:09:00    2016-12-03 01:09:00
49520    22425    925    2016-12-03 11:07:00    2016-12-03 11:07:00
49521    22425    706    2016-12-03 10:18:00    2016-12-03 10:18:00
49522    22425    553    2016-12-03 10:09:00    2016-12-03 10:09:00
49523    22426    659    2016-12-03 23:40:00    2016-12-03 23:40:00
49524    22426    559    2016-12-03 08:18:00    2016-12-03 08:18:00
49525    22426    465    2016-12-03 08:30:00    2016-12-03 08:30:00
49526    22426    487    2016-12-03 09:20:00    2016-12-03 09:20:00
49527    22426    800    2016-12-03 05:42:00    2016-12-03 05:42:00
49528    22427    942    2016-12-03 15:09:00    2016-12-03 15:09:00
49529    22427    589    2016-12-03 22:20:00    2016-12-03 22:20:00
49530    22427    585    2016-12-03 20:29:00    2016-12-03 20:29:00
49531    22427    705    2016-12-03 19:16:00    2016-12-03 19:16:00
49532    22427    811    2016-12-03 15:28:00    2016-12-03 15:28:00
49533    22428    469    2016-12-03 05:13:00    2016-12-03 05:13:00
49534    22428    618    2016-12-03 12:04:00    2016-12-03 12:04:00
49535    22428    579    2016-12-03 03:38:00    2016-12-03 03:38:00
49536    22428    810    2016-12-03 06:44:00    2016-12-03 06:44:00
49537    22428    606    2016-12-03 12:19:00    2016-12-03 12:19:00
49538    22429    863    2016-12-03 02:42:00    2016-12-03 02:42:00
49539    22429    622    2016-12-03 11:00:00    2016-12-03 11:00:00
49540    22429    474    2016-12-03 13:51:00    2016-12-03 13:51:00
49541    22429    639    2016-12-03 19:49:00    2016-12-03 19:49:00
49542    22429    566    2016-12-03 22:53:00    2016-12-03 22:53:00
49543    22430    566    2016-12-03 02:31:00    2016-12-03 02:31:00
49544    22430    567    2016-12-03 16:57:00    2016-12-03 16:57:00
49545    22430    598    2016-12-03 21:41:00    2016-12-03 21:41:00
49546    22430    661    2016-12-03 10:24:00    2016-12-03 10:24:00
49547    22430    746    2016-12-03 22:29:00    2016-12-03 22:29:00
49548    22431    499    2016-12-03 05:20:00    2016-12-03 05:20:00
49549    22431    852    2016-12-03 01:46:00    2016-12-03 01:46:00
49550    22431    674    2016-12-03 07:32:00    2016-12-03 07:32:00
49551    22431    553    2016-12-03 10:45:00    2016-12-03 10:45:00
49552    22431    570    2016-12-03 22:06:00    2016-12-03 22:06:00
49553    22432    926    2016-12-03 08:07:00    2016-12-03 08:07:00
49554    22432    498    2016-12-03 13:29:00    2016-12-03 13:29:00
49555    22432    587    2016-12-03 11:38:00    2016-12-03 11:38:00
49556    22432    953    2016-12-03 12:16:00    2016-12-03 12:16:00
49557    22432    696    2016-12-03 03:11:00    2016-12-03 03:11:00
49558    22433    622    2016-12-03 20:59:00    2016-12-03 20:59:00
49559    22433    519    2016-12-03 16:00:00    2016-12-03 16:00:00
49560    22433    751    2016-12-03 12:17:00    2016-12-03 12:17:00
49561    22433    824    2016-12-03 13:53:00    2016-12-03 13:53:00
49562    22433    556    2016-12-03 23:00:00    2016-12-03 23:00:00
49563    22434    787    2016-12-03 17:23:00    2016-12-03 17:23:00
49564    22434    585    2016-12-03 05:35:00    2016-12-03 05:35:00
49565    22434    764    2016-12-03 17:07:00    2016-12-03 17:07:00
49566    22434    640    2016-12-03 11:05:00    2016-12-03 11:05:00
49567    22434    743    2016-12-03 13:28:00    2016-12-03 13:28:00
49568    22435    792    2016-12-03 11:01:00    2016-12-03 11:01:00
49569    22435    710    2016-12-03 07:19:00    2016-12-03 07:19:00
49570    22435    473    2016-12-03 04:12:00    2016-12-03 04:12:00
49571    22435    630    2016-12-03 17:25:00    2016-12-03 17:25:00
49572    22435    921    2016-12-03 11:31:00    2016-12-03 11:31:00
49573    22436    470    2016-12-03 03:49:00    2016-12-03 03:49:00
49574    22436    830    2016-12-03 07:17:00    2016-12-03 07:17:00
49575    22436    617    2016-12-03 18:46:00    2016-12-03 18:46:00
49576    22436    529    2016-12-03 12:45:00    2016-12-03 12:45:00
49577    22436    899    2016-12-03 04:08:00    2016-12-03 04:08:00
49578    22437    535    2016-12-03 14:43:00    2016-12-03 14:43:00
49579    22437    553    2016-12-03 20:42:00    2016-12-03 20:42:00
49580    22437    528    2016-12-03 20:32:00    2016-12-03 20:32:00
49581    22437    890    2016-12-03 02:24:00    2016-12-03 02:24:00
49582    22437    590    2016-12-03 03:57:00    2016-12-03 03:57:00
49583    22438    655    2016-12-03 23:40:00    2016-12-03 23:40:00
49584    22438    806    2016-12-03 09:00:00    2016-12-03 09:00:00
49585    22438    585    2016-12-03 05:38:00    2016-12-03 05:38:00
49586    22438    532    2016-12-03 13:26:00    2016-12-03 13:26:00
49587    22438    847    2016-12-03 02:05:00    2016-12-03 02:05:00
49588    22439    490    2016-12-03 09:42:00    2016-12-03 09:42:00
49589    22439    875    2016-12-03 12:15:00    2016-12-03 12:15:00
49590    22439    509    2016-12-03 11:04:00    2016-12-03 11:04:00
49591    22439    905    2016-12-03 08:42:00    2016-12-03 08:42:00
49592    22439    843    2016-12-03 17:53:00    2016-12-03 17:53:00
49593    22440    904    2016-12-03 22:55:00    2016-12-03 22:55:00
49594    22440    951    2016-12-03 11:55:00    2016-12-03 11:55:00
49595    22440    841    2016-12-03 17:01:00    2016-12-03 17:01:00
49596    22440    672    2016-12-03 14:23:00    2016-12-03 14:23:00
49597    22440    555    2016-12-03 04:00:00    2016-12-03 04:00:00
49598    22441    700    2016-12-03 21:34:00    2016-12-03 21:34:00
49599    22441    680    2016-12-03 08:14:00    2016-12-03 08:14:00
49600    22441    684    2016-12-03 06:38:00    2016-12-03 06:38:00
49601    22441    555    2016-12-03 14:51:00    2016-12-03 14:51:00
49602    22441    759    2016-12-03 23:10:00    2016-12-03 23:10:00
49603    22442    575    2016-12-03 10:33:00    2016-12-03 10:33:00
49604    22442    934    2016-12-03 21:55:00    2016-12-03 21:55:00
49605    22442    802    2016-12-03 07:22:00    2016-12-03 07:22:00
49606    22442    940    2016-12-03 10:07:00    2016-12-03 10:07:00
49607    22442    763    2016-12-03 09:58:00    2016-12-03 09:58:00
49608    22443    730    2016-12-03 21:48:00    2016-12-03 21:48:00
49609    22443    629    2016-12-03 02:26:00    2016-12-03 02:26:00
49610    22443    652    2016-12-03 05:59:00    2016-12-03 05:59:00
49611    22443    898    2016-12-03 14:34:00    2016-12-03 14:34:00
49612    22443    961    2016-12-03 13:17:00    2016-12-03 13:17:00
49613    22444    838    2016-12-03 17:04:00    2016-12-03 17:04:00
49614    22444    748    2016-12-03 03:44:00    2016-12-03 03:44:00
49615    22444    950    2016-12-03 13:22:00    2016-12-03 13:22:00
49616    22444    667    2016-12-03 22:20:00    2016-12-03 22:20:00
49617    22444    624    2016-12-03 18:42:00    2016-12-03 18:42:00
49618    22445    579    2016-12-03 16:57:00    2016-12-03 16:57:00
49619    22445    600    2016-12-03 14:42:00    2016-12-03 14:42:00
49620    22445    918    2016-12-03 10:43:00    2016-12-03 10:43:00
49621    22445    473    2016-12-04 00:00:00    2016-12-04 00:00:00
49622    22445    841    2016-12-03 20:02:00    2016-12-03 20:02:00
49623    22446    790    2016-12-03 08:45:00    2016-12-03 08:45:00
49624    22446    950    2016-12-03 23:42:00    2016-12-03 23:42:00
49625    22446    923    2016-12-03 17:33:00    2016-12-03 17:33:00
49626    22446    506    2016-12-03 13:55:00    2016-12-03 13:55:00
49627    22446    534    2016-12-03 13:51:00    2016-12-03 13:51:00
49628    22447    675    2016-12-03 07:23:00    2016-12-03 07:23:00
49629    22447    879    2016-12-03 03:28:00    2016-12-03 03:28:00
49630    22447    709    2016-12-03 15:05:00    2016-12-03 15:05:00
49631    22447    507    2016-12-03 14:16:00    2016-12-03 14:16:00
49632    22447    934    2016-12-03 16:31:00    2016-12-03 16:31:00
49633    22448    602    2016-12-03 23:53:00    2016-12-03 23:53:00
49634    22448    899    2016-12-03 08:51:00    2016-12-03 08:51:00
49635    22448    908    2016-12-03 20:06:00    2016-12-03 20:06:00
49636    22448    749    2016-12-03 03:47:00    2016-12-03 03:47:00
49637    22448    903    2016-12-03 05:42:00    2016-12-03 05:42:00
49638    22449    925    2016-12-03 10:48:00    2016-12-03 10:48:00
49639    22449    958    2016-12-03 08:48:00    2016-12-03 08:48:00
49640    22449    638    2016-12-03 17:49:00    2016-12-03 17:49:00
49641    22449    886    2016-12-03 05:10:00    2016-12-03 05:10:00
49642    22449    710    2016-12-03 01:57:00    2016-12-03 01:57:00
49643    22450    642    2016-12-03 01:27:00    2016-12-03 01:27:00
49644    22450    919    2016-12-03 14:28:00    2016-12-03 14:28:00
49645    22450    661    2016-12-03 17:50:00    2016-12-03 17:50:00
49646    22450    766    2016-12-03 21:04:00    2016-12-03 21:04:00
49647    22450    541    2016-12-03 05:55:00    2016-12-03 05:55:00
49648    22451    652    2016-12-03 22:53:00    2016-12-03 22:53:00
49649    22451    778    2016-12-03 20:01:00    2016-12-03 20:01:00
49650    22451    938    2016-12-03 20:42:00    2016-12-03 20:42:00
49651    22451    708    2016-12-03 06:47:00    2016-12-03 06:47:00
49652    22451    596    2016-12-03 05:12:00    2016-12-03 05:12:00
49653    22452    582    2016-12-03 02:12:00    2016-12-03 02:12:00
49654    22452    513    2016-12-03 03:05:00    2016-12-03 03:05:00
49655    22452    541    2016-12-03 11:21:00    2016-12-03 11:21:00
49656    22452    660    2016-12-03 20:07:00    2016-12-03 20:07:00
49657    22452    956    2016-12-03 05:01:00    2016-12-03 05:01:00
49658    22453    632    2016-12-03 11:16:00    2016-12-03 11:16:00
49659    22453    537    2016-12-03 23:23:00    2016-12-03 23:23:00
49660    22453    816    2016-12-03 07:22:00    2016-12-03 07:22:00
49661    22453    591    2016-12-03 03:29:00    2016-12-03 03:29:00
49662    22453    775    2016-12-03 18:15:00    2016-12-03 18:15:00
49663    22454    490    2016-12-03 15:05:00    2016-12-03 15:05:00
49664    22454    682    2016-12-03 02:58:00    2016-12-03 02:58:00
49665    22454    510    2016-12-03 17:14:00    2016-12-03 17:14:00
49666    22454    479    2016-12-03 04:21:00    2016-12-03 04:21:00
49667    22454    651    2016-12-03 09:15:00    2016-12-03 09:15:00
49668    22455    480    2016-12-03 22:21:00    2016-12-03 22:21:00
49669    22455    924    2016-12-03 06:31:00    2016-12-03 06:31:00
49670    22455    817    2016-12-03 02:58:00    2016-12-03 02:58:00
49671    22455    781    2016-12-03 11:38:00    2016-12-03 11:38:00
49672    22455    755    2016-12-03 13:21:00    2016-12-03 13:21:00
49673    22456    583    2016-12-03 13:41:00    2016-12-03 13:41:00
49674    22456    899    2016-12-03 23:10:00    2016-12-03 23:10:00
49675    22456    860    2016-12-03 06:42:00    2016-12-03 06:42:00
49676    22456    829    2016-12-03 22:46:00    2016-12-03 22:46:00
49677    22456    463    2016-12-03 05:36:00    2016-12-03 05:36:00
49678    22457    559    2016-12-03 04:19:00    2016-12-03 04:19:00
49679    22457    811    2016-12-03 02:46:00    2016-12-03 02:46:00
49680    22457    825    2016-12-03 21:37:00    2016-12-03 21:37:00
49681    22457    521    2016-12-03 13:33:00    2016-12-03 13:33:00
49682    22457    690    2016-12-03 22:37:00    2016-12-03 22:37:00
49683    22458    810    2016-12-03 07:17:00    2016-12-03 07:17:00
49684    22458    938    2016-12-03 18:00:00    2016-12-03 18:00:00
49685    22458    833    2016-12-03 03:44:00    2016-12-03 03:44:00
49686    22458    706    2016-12-03 08:07:00    2016-12-03 08:07:00
49687    22458    706    2016-12-03 14:44:00    2016-12-03 14:44:00
49688    22459    581    2016-12-03 21:43:00    2016-12-03 21:43:00
49689    22459    498    2016-12-03 04:36:00    2016-12-03 04:36:00
49690    22459    947    2016-12-03 18:37:00    2016-12-03 18:37:00
49691    22459    872    2016-12-03 04:37:00    2016-12-03 04:37:00
49692    22459    473    2016-12-03 08:01:00    2016-12-03 08:01:00
49693    22460    517    2016-12-03 12:14:00    2016-12-03 12:14:00
49694    22460    656    2016-12-03 01:30:00    2016-12-03 01:30:00
49695    22460    574    2016-12-03 09:20:00    2016-12-03 09:20:00
49696    22460    483    2016-12-03 10:58:00    2016-12-03 10:58:00
49697    22460    916    2016-12-03 23:13:00    2016-12-03 23:13:00
49698    22461    814    2016-12-03 05:20:00    2016-12-03 05:20:00
49699    22461    957    2016-12-03 23:18:00    2016-12-03 23:18:00
49700    22461    876    2016-12-03 20:25:00    2016-12-03 20:25:00
49701    22461    746    2016-12-03 09:09:00    2016-12-03 09:09:00
49702    22461    518    2016-12-03 08:16:00    2016-12-03 08:16:00
49703    22462    532    2016-12-03 05:01:00    2016-12-03 05:01:00
49704    22462    562    2016-12-03 12:59:00    2016-12-03 12:59:00
49705    22462    734    2016-12-03 22:37:00    2016-12-03 22:37:00
49706    22462    803    2016-12-03 04:12:00    2016-12-03 04:12:00
49707    22462    730    2016-12-03 11:59:00    2016-12-03 11:59:00
49708    22463    583    2016-12-03 16:32:00    2016-12-03 16:32:00
49709    22463    584    2016-12-03 15:28:00    2016-12-03 15:28:00
49710    22463    801    2016-12-03 12:50:00    2016-12-03 12:50:00
49711    22463    937    2016-12-03 11:05:00    2016-12-03 11:05:00
49712    22463    875    2016-12-03 14:00:00    2016-12-03 14:00:00
49713    22464    620    2016-12-03 14:05:00    2016-12-03 14:05:00
49714    22464    846    2016-12-03 05:35:00    2016-12-03 05:35:00
49715    22464    499    2016-12-03 15:16:00    2016-12-03 15:16:00
49716    22464    484    2016-12-03 12:30:00    2016-12-03 12:30:00
49717    22464    765    2016-12-03 09:34:00    2016-12-03 09:34:00
49718    22465    755    2016-12-03 20:59:00    2016-12-03 20:59:00
49719    22465    631    2016-12-03 21:28:00    2016-12-03 21:28:00
49720    22465    649    2016-12-03 23:38:00    2016-12-03 23:38:00
49721    22465    493    2016-12-03 23:55:00    2016-12-03 23:55:00
49722    22465    759    2016-12-03 05:16:00    2016-12-03 05:16:00
49723    22466    931    2016-12-03 05:23:00    2016-12-03 05:23:00
49724    22466    695    2016-12-03 09:36:00    2016-12-03 09:36:00
49725    22466    608    2016-12-03 01:13:00    2016-12-03 01:13:00
49726    22466    481    2016-12-03 16:47:00    2016-12-03 16:47:00
49727    22466    570    2016-12-03 02:32:00    2016-12-03 02:32:00
49728    22467    561    2016-12-03 17:47:00    2016-12-03 17:47:00
49729    22467    656    2016-12-03 22:27:00    2016-12-03 22:27:00
49730    22467    560    2016-12-03 17:02:00    2016-12-03 17:02:00
49731    22467    619    2016-12-03 11:00:00    2016-12-03 11:00:00
49732    22467    511    2016-12-03 03:36:00    2016-12-03 03:36:00
49733    22468    730    2016-12-03 06:46:00    2016-12-03 06:46:00
49734    22468    667    2016-12-03 23:29:00    2016-12-03 23:29:00
49735    22468    782    2016-12-03 06:22:00    2016-12-03 06:22:00
49736    22468    843    2016-12-03 20:09:00    2016-12-03 20:09:00
49737    22468    784    2016-12-03 16:51:00    2016-12-03 16:51:00
49738    22469    755    2016-12-03 08:41:00    2016-12-03 08:41:00
49739    22469    783    2016-12-03 02:53:00    2016-12-03 02:53:00
49740    22469    733    2016-12-03 02:23:00    2016-12-03 02:23:00
49741    22469    484    2016-12-03 23:10:00    2016-12-03 23:10:00
49742    22469    600    2016-12-03 07:45:00    2016-12-03 07:45:00
49743    22470    660    2016-12-03 13:19:00    2016-12-03 13:19:00
49744    22470    529    2016-12-03 06:29:00    2016-12-03 06:29:00
49745    22470    545    2016-12-03 12:20:00    2016-12-03 12:20:00
49746    22470    489    2016-12-03 12:14:00    2016-12-03 12:14:00
49747    22470    541    2016-12-03 08:03:00    2016-12-03 08:03:00
49748    22471    741    2016-12-03 11:12:00    2016-12-03 11:12:00
49749    22471    664    2016-12-03 20:00:00    2016-12-03 20:00:00
49750    22471    905    2016-12-03 10:58:00    2016-12-03 10:58:00
49751    22471    945    2016-12-03 13:04:00    2016-12-03 13:04:00
49752    22471    489    2016-12-03 19:08:00    2016-12-03 19:08:00
49753    22472    537    2016-12-03 04:47:00    2016-12-03 04:47:00
49754    22472    887    2016-12-03 14:21:00    2016-12-03 14:21:00
49755    22472    520    2016-12-03 18:15:00    2016-12-03 18:15:00
49756    22472    520    2016-12-03 09:00:00    2016-12-03 09:00:00
49757    22472    814    2016-12-03 15:17:00    2016-12-03 15:17:00
49758    22473    926    2016-12-03 08:35:00    2016-12-03 08:35:00
49759    22473    466    2016-12-03 11:42:00    2016-12-03 11:42:00
49760    22473    778    2016-12-03 09:36:00    2016-12-03 09:36:00
49761    22473    808    2016-12-03 08:48:00    2016-12-03 08:48:00
49762    22473    754    2016-12-03 06:51:00    2016-12-03 06:51:00
49763    22474    661    2016-12-03 04:09:00    2016-12-03 04:09:00
49764    22474    464    2016-12-03 17:40:00    2016-12-03 17:40:00
49765    22474    952    2016-12-03 19:38:00    2016-12-03 19:38:00
49766    22474    855    2016-12-03 20:11:00    2016-12-03 20:11:00
49767    22474    624    2016-12-03 02:33:00    2016-12-03 02:33:00
49768    22475    815    2016-12-03 20:16:00    2016-12-03 20:16:00
49769    22475    883    2016-12-03 12:11:00    2016-12-03 12:11:00
49770    22475    653    2016-12-03 19:43:00    2016-12-03 19:43:00
49771    22475    693    2016-12-03 04:38:00    2016-12-03 04:38:00
49772    22475    885    2016-12-03 20:56:00    2016-12-03 20:56:00
49773    22476    677    2016-12-03 05:01:00    2016-12-03 05:01:00
49774    22476    573    2016-12-03 09:19:00    2016-12-03 09:19:00
49775    22476    846    2016-12-03 04:01:00    2016-12-03 04:01:00
49776    22476    593    2016-12-03 20:43:00    2016-12-03 20:43:00
49777    22476    507    2016-12-03 10:10:00    2016-12-03 10:10:00
49778    22477    468    2016-12-03 10:01:00    2016-12-03 10:01:00
49779    22477    846    2016-12-03 10:45:00    2016-12-03 10:45:00
49780    22477    829    2016-12-03 08:22:00    2016-12-03 08:22:00
49781    22477    945    2016-12-03 11:54:00    2016-12-03 11:54:00
49782    22477    713    2016-12-03 15:33:00    2016-12-03 15:33:00
49783    22478    841    2016-12-03 11:31:00    2016-12-03 11:31:00
49784    22478    713    2016-12-03 10:21:00    2016-12-03 10:21:00
49785    22478    912    2016-12-03 20:44:00    2016-12-03 20:44:00
49786    22478    698    2016-12-03 19:33:00    2016-12-03 19:33:00
49787    22478    660    2016-12-03 20:22:00    2016-12-03 20:22:00
49788    22479    857    2016-12-03 03:51:00    2016-12-03 03:51:00
49789    22479    786    2016-12-03 06:27:00    2016-12-03 06:27:00
49790    22479    795    2016-12-03 02:44:00    2016-12-03 02:44:00
49791    22479    881    2016-12-03 15:22:00    2016-12-03 15:22:00
49792    22479    584    2016-12-03 07:33:00    2016-12-03 07:33:00
49793    22480    775    2016-12-03 23:16:00    2016-12-03 23:16:00
49794    22480    568    2016-12-03 13:39:00    2016-12-03 13:39:00
49795    22480    912    2016-12-03 11:39:00    2016-12-03 11:39:00
49796    22480    867    2016-12-03 15:56:00    2016-12-03 15:56:00
49797    22480    710    2016-12-03 17:46:00    2016-12-03 17:46:00
49798    22481    788    2016-12-03 14:23:00    2016-12-03 14:23:00
49799    22481    941    2016-12-03 13:38:00    2016-12-03 13:38:00
49800    22481    640    2016-12-03 17:51:00    2016-12-03 17:51:00
49801    22481    872    2016-12-03 09:45:00    2016-12-03 09:45:00
49802    22481    948    2016-12-03 06:07:00    2016-12-03 06:07:00
49803    22482    541    2016-12-03 08:17:00    2016-12-03 08:17:00
49805    22482    635    2016-12-03 22:00:00    2016-12-03 22:00:00
49806    22482    946    2016-12-03 03:26:00    2016-12-03 03:26:00
49807    22482    463    2016-12-03 10:19:00    2016-12-03 10:19:00
49808    22483    467    2016-12-03 08:27:00    2016-12-03 08:27:00
49809    22483    695    2016-12-03 07:43:00    2016-12-03 07:43:00
49810    22483    520    2016-12-03 04:46:00    2016-12-03 04:46:00
49811    22483    758    2016-12-03 18:58:00    2016-12-03 18:58:00
49812    22483    629    2016-12-03 03:29:00    2016-12-03 03:29:00
49813    22484    914    2016-12-03 02:46:00    2016-12-03 02:46:00
49814    22484    811    2016-12-03 21:38:00    2016-12-03 21:38:00
49815    22484    626    2016-12-03 19:00:00    2016-12-03 19:00:00
49816    22484    885    2016-12-03 21:21:00    2016-12-03 21:21:00
49817    22484    824    2016-12-03 21:23:00    2016-12-03 21:23:00
49818    22485    678    2016-12-03 01:48:00    2016-12-03 01:48:00
49819    22485    879    2016-12-03 23:08:00    2016-12-03 23:08:00
49820    22485    587    2016-12-03 11:37:00    2016-12-03 11:37:00
49821    22485    671    2016-12-03 12:37:00    2016-12-03 12:37:00
49822    22485    914    2016-12-03 21:53:00    2016-12-03 21:53:00
49823    22486    929    2016-12-03 21:22:00    2016-12-03 21:22:00
49824    22486    856    2016-12-03 15:34:00    2016-12-03 15:34:00
49825    22486    931    2016-12-03 12:30:00    2016-12-03 12:30:00
49826    22486    657    2016-12-03 16:02:00    2016-12-03 16:02:00
49827    22486    855    2016-12-03 18:44:00    2016-12-03 18:44:00
49828    22487    485    2016-12-03 18:14:00    2016-12-03 18:14:00
49829    22487    693    2016-12-03 12:35:00    2016-12-03 12:35:00
49830    22487    755    2016-12-03 05:10:00    2016-12-03 05:10:00
49831    22487    908    2016-12-03 05:41:00    2016-12-03 05:41:00
49832    22487    893    2016-12-03 21:36:00    2016-12-03 21:36:00
49833    22488    508    2016-12-03 15:32:00    2016-12-03 15:32:00
49834    22488    861    2016-12-03 01:40:00    2016-12-03 01:40:00
49835    22488    887    2016-12-03 16:55:00    2016-12-03 16:55:00
49836    22488    696    2016-12-03 04:19:00    2016-12-03 04:19:00
49837    22488    641    2016-12-03 10:09:00    2016-12-03 10:09:00
49838    22489    521    2016-12-03 20:22:00    2016-12-03 20:22:00
49839    22489    918    2016-12-03 02:23:00    2016-12-03 02:23:00
49840    22489    745    2016-12-03 18:48:00    2016-12-03 18:48:00
49841    22489    678    2016-12-03 11:27:00    2016-12-03 11:27:00
49842    22489    869    2016-12-03 23:00:00    2016-12-03 23:00:00
49843    22490    503    2016-12-03 17:14:00    2016-12-03 17:14:00
49844    22490    703    2016-12-03 08:26:00    2016-12-03 08:26:00
49845    22490    494    2016-12-04 00:00:00    2016-12-04 00:00:00
49846    22490    960    2016-12-03 03:20:00    2016-12-03 03:20:00
49847    22490    659    2016-12-03 01:11:00    2016-12-03 01:11:00
49848    22491    636    2016-12-03 03:16:00    2016-12-03 03:16:00
49849    22491    876    2016-12-03 06:27:00    2016-12-03 06:27:00
49850    22491    848    2016-12-03 11:58:00    2016-12-03 11:58:00
49851    22491    585    2016-12-03 19:57:00    2016-12-03 19:57:00
49852    22491    788    2016-12-03 21:40:00    2016-12-03 21:40:00
49853    22492    928    2016-12-03 02:48:00    2016-12-03 02:48:00
49854    22492    786    2016-12-03 05:37:00    2016-12-03 05:37:00
49855    22492    777    2016-12-03 19:54:00    2016-12-03 19:54:00
49856    22492    782    2016-12-03 06:40:00    2016-12-03 06:40:00
49857    22492    484    2016-12-03 14:26:00    2016-12-03 14:26:00
49858    22493    875    2016-12-04 04:58:00    2016-12-04 04:58:00
49859    22493    865    2016-12-04 06:14:00    2016-12-04 06:14:00
49860    22493    544    2016-12-04 22:44:00    2016-12-04 22:44:00
49861    22493    811    2016-12-04 16:18:00    2016-12-04 16:18:00
49862    22493    621    2016-12-04 12:20:00    2016-12-04 12:20:00
49863    22494    774    2016-12-04 06:14:00    2016-12-04 06:14:00
49864    22494    946    2016-12-04 16:29:00    2016-12-04 16:29:00
49865    22494    867    2016-12-04 13:45:00    2016-12-04 13:45:00
49866    22494    640    2016-12-04 11:35:00    2016-12-04 11:35:00
49867    22494    885    2016-12-04 11:40:00    2016-12-04 11:40:00
49868    22495    858    2016-12-04 20:56:00    2016-12-04 20:56:00
49869    22495    798    2016-12-04 09:12:00    2016-12-04 09:12:00
49870    22495    480    2016-12-04 20:09:00    2016-12-04 20:09:00
49871    22495    888    2016-12-04 06:09:00    2016-12-04 06:09:00
49872    22495    791    2016-12-04 10:43:00    2016-12-04 10:43:00
49873    22496    572    2016-12-04 16:47:00    2016-12-04 16:47:00
49874    22496    769    2016-12-04 21:15:00    2016-12-04 21:15:00
49875    22496    534    2016-12-04 17:05:00    2016-12-04 17:05:00
49876    22496    682    2016-12-04 13:06:00    2016-12-04 13:06:00
49877    22496    615    2016-12-04 15:05:00    2016-12-04 15:05:00
49878    22497    853    2016-12-04 02:29:00    2016-12-04 02:29:00
49879    22497    520    2016-12-04 05:46:00    2016-12-04 05:46:00
49880    22497    794    2016-12-04 17:51:00    2016-12-04 17:51:00
49881    22497    533    2016-12-04 08:27:00    2016-12-04 08:27:00
49882    22497    731    2016-12-04 18:00:00    2016-12-04 18:00:00
49883    22498    501    2016-12-04 02:35:00    2016-12-04 02:35:00
49884    22498    583    2016-12-04 06:55:00    2016-12-04 06:55:00
49885    22498    734    2016-12-04 18:09:00    2016-12-04 18:09:00
49886    22498    824    2016-12-04 02:16:00    2016-12-04 02:16:00
49887    22498    610    2016-12-04 11:38:00    2016-12-04 11:38:00
49888    22499    625    2016-12-04 01:14:00    2016-12-04 01:14:00
49889    22499    756    2016-12-04 08:04:00    2016-12-04 08:04:00
49890    22499    485    2016-12-04 17:46:00    2016-12-04 17:46:00
49891    22499    604    2016-12-04 01:54:00    2016-12-04 01:54:00
49892    22499    586    2016-12-04 22:41:00    2016-12-04 22:41:00
49893    22500    650    2016-12-04 03:03:00    2016-12-04 03:03:00
49894    22500    734    2016-12-04 18:24:00    2016-12-04 18:24:00
49895    22500    632    2016-12-04 20:18:00    2016-12-04 20:18:00
49896    22500    615    2016-12-04 12:12:00    2016-12-04 12:12:00
49897    22500    702    2016-12-04 06:07:00    2016-12-04 06:07:00
49898    22501    586    2016-12-04 22:24:00    2016-12-04 22:24:00
49899    22501    637    2016-12-04 23:46:00    2016-12-04 23:46:00
49900    22501    702    2016-12-04 14:30:00    2016-12-04 14:30:00
49901    22501    797    2016-12-04 06:41:00    2016-12-04 06:41:00
49902    22501    622    2016-12-04 07:33:00    2016-12-04 07:33:00
49903    22502    763    2016-12-04 16:31:00    2016-12-04 16:31:00
49904    22502    482    2016-12-04 19:07:00    2016-12-04 19:07:00
49905    22502    475    2016-12-04 02:49:00    2016-12-04 02:49:00
49906    22502    564    2016-12-04 23:08:00    2016-12-04 23:08:00
49907    22502    508    2016-12-04 11:04:00    2016-12-04 11:04:00
49908    22503    956    2016-12-04 16:46:00    2016-12-04 16:46:00
49909    22503    738    2016-12-04 10:40:00    2016-12-04 10:40:00
49910    22503    763    2016-12-04 14:56:00    2016-12-04 14:56:00
49911    22503    869    2016-12-04 02:55:00    2016-12-04 02:55:00
49912    22503    505    2016-12-04 22:29:00    2016-12-04 22:29:00
49913    22504    747    2016-12-04 11:38:00    2016-12-04 11:38:00
49914    22504    952    2016-12-04 03:15:00    2016-12-04 03:15:00
49915    22504    509    2016-12-04 19:00:00    2016-12-04 19:00:00
49916    22504    631    2016-12-04 21:34:00    2016-12-04 21:34:00
49917    22504    521    2016-12-04 09:39:00    2016-12-04 09:39:00
49918    22505    576    2016-12-04 08:51:00    2016-12-04 08:51:00
49919    22505    478    2016-12-04 04:32:00    2016-12-04 04:32:00
49920    22505    852    2016-12-04 02:01:00    2016-12-04 02:01:00
49921    22505    817    2016-12-04 16:46:00    2016-12-04 16:46:00
49922    22505    675    2016-12-04 07:51:00    2016-12-04 07:51:00
49923    22506    799    2016-12-05 19:58:00    2016-12-05 19:58:00
49924    22506    953    2016-12-05 07:18:00    2016-12-05 07:18:00
49925    22506    543    2016-12-05 11:50:00    2016-12-05 11:50:00
49926    22506    772    2016-12-05 12:32:00    2016-12-05 12:32:00
49927    22506    712    2016-12-05 22:17:00    2016-12-05 22:17:00
49928    22507    719    2016-12-05 18:49:00    2016-12-05 18:49:00
49929    22507    570    2016-12-05 16:00:00    2016-12-05 16:00:00
49930    22507    639    2016-12-05 16:26:00    2016-12-05 16:26:00
49931    22507    850    2016-12-05 13:18:00    2016-12-05 13:18:00
49932    22507    544    2016-12-05 12:04:00    2016-12-05 12:04:00
49933    22508    768    2016-12-05 23:03:00    2016-12-05 23:03:00
49934    22508    684    2016-12-05 02:42:00    2016-12-05 02:42:00
49935    22508    685    2016-12-05 02:58:00    2016-12-05 02:58:00
49936    22508    569    2016-12-05 03:00:00    2016-12-05 03:00:00
49937    22508    512    2016-12-05 12:20:00    2016-12-05 12:20:00
49938    22509    784    2016-12-05 01:17:00    2016-12-05 01:17:00
49939    22509    478    2016-12-05 23:10:00    2016-12-05 23:10:00
49940    22509    477    2016-12-05 14:39:00    2016-12-05 14:39:00
49941    22509    880    2016-12-05 09:30:00    2016-12-05 09:30:00
49942    22509    740    2016-12-05 16:17:00    2016-12-05 16:17:00
49943    22510    575    2016-12-05 06:06:00    2016-12-05 06:06:00
49944    22510    697    2016-12-05 09:29:00    2016-12-05 09:29:00
49945    22510    508    2016-12-05 01:27:00    2016-12-05 01:27:00
49946    22510    611    2016-12-05 03:29:00    2016-12-05 03:29:00
49947    22510    464    2016-12-05 14:39:00    2016-12-05 14:39:00
49948    22511    926    2016-12-05 02:38:00    2016-12-05 02:38:00
49949    22511    539    2016-12-05 06:46:00    2016-12-05 06:46:00
49950    22511    690    2016-12-05 17:49:00    2016-12-05 17:49:00
49951    22511    742    2016-12-05 07:51:00    2016-12-05 07:51:00
49952    22511    737    2016-12-05 04:20:00    2016-12-05 04:20:00
49953    22512    611    2016-12-05 05:42:00    2016-12-05 05:42:00
49954    22512    691    2016-12-05 19:36:00    2016-12-05 19:36:00
49955    22512    642    2016-12-05 13:36:00    2016-12-05 13:36:00
49956    22512    675    2016-12-05 15:16:00    2016-12-05 15:16:00
49957    22512    813    2016-12-05 06:10:00    2016-12-05 06:10:00
49958    22513    865    2016-12-05 02:00:00    2016-12-05 02:00:00
49959    22513    673    2016-12-05 07:13:00    2016-12-05 07:13:00
49960    22513    821    2016-12-05 06:59:00    2016-12-05 06:59:00
49961    22513    578    2016-12-05 11:18:00    2016-12-05 11:18:00
49962    22513    527    2016-12-05 08:24:00    2016-12-05 08:24:00
49963    22514    806    2016-12-05 23:57:00    2016-12-05 23:57:00
49964    22514    896    2016-12-05 19:23:00    2016-12-05 19:23:00
49965    22514    910    2016-12-05 02:37:00    2016-12-05 02:37:00
49966    22514    652    2016-12-05 17:38:00    2016-12-05 17:38:00
49967    22514    735    2016-12-05 07:51:00    2016-12-05 07:51:00
49968    22515    928    2016-12-05 17:01:00    2016-12-05 17:01:00
49969    22515    934    2016-12-05 10:26:00    2016-12-05 10:26:00
49970    22515    772    2016-12-05 18:29:00    2016-12-05 18:29:00
49971    22515    680    2016-12-05 12:14:00    2016-12-05 12:14:00
49972    22515    709    2016-12-05 21:17:00    2016-12-05 21:17:00
49973    22516    885    2016-12-05 22:45:00    2016-12-05 22:45:00
49974    22516    679    2016-12-05 22:05:00    2016-12-05 22:05:00
49975    22516    799    2016-12-05 09:33:00    2016-12-05 09:33:00
49976    22516    811    2016-12-05 22:00:00    2016-12-05 22:00:00
49977    22516    603    2016-12-05 09:15:00    2016-12-05 09:15:00
49978    22517    816    2016-12-05 01:18:00    2016-12-05 01:18:00
49979    22517    501    2016-12-05 15:10:00    2016-12-05 15:10:00
49980    22517    942    2016-12-05 15:05:00    2016-12-05 15:05:00
49981    22517    487    2016-12-05 08:01:00    2016-12-05 08:01:00
49982    22517    636    2016-12-05 06:00:00    2016-12-05 06:00:00
49983    22518    816    2016-12-05 11:34:00    2016-12-05 11:34:00
49984    22518    841    2016-12-05 08:23:00    2016-12-05 08:23:00
49985    22518    621    2016-12-05 03:00:00    2016-12-05 03:00:00
49986    22518    551    2016-12-05 02:50:00    2016-12-05 02:50:00
49987    22518    953    2016-12-05 10:17:00    2016-12-05 10:17:00
49988    22519    582    2016-12-05 23:00:00    2016-12-05 23:00:00
49989    22519    785    2016-12-05 12:07:00    2016-12-05 12:07:00
49990    22519    899    2016-12-05 07:18:00    2016-12-05 07:18:00
49991    22519    932    2016-12-05 06:09:00    2016-12-05 06:09:00
49992    22519    855    2016-12-05 09:02:00    2016-12-05 09:02:00
49993    22520    867    2016-12-05 10:00:00    2016-12-05 10:00:00
49994    22520    893    2016-12-05 10:18:00    2016-12-05 10:18:00
49995    22520    540    2016-12-05 23:00:00    2016-12-05 23:00:00
49996    22520    540    2016-12-05 18:45:00    2016-12-05 18:45:00
49997    22520    797    2016-12-05 06:35:00    2016-12-05 06:35:00
49998    22521    798    2016-12-05 15:31:00    2016-12-05 15:31:00
49999    22521    464    2016-12-05 06:55:00    2016-12-05 06:55:00
50000    22521    902    2016-12-05 11:33:00    2016-12-05 11:33:00
50001    22521    738    2016-12-05 12:17:00    2016-12-05 12:17:00
50002    22521    923    2016-12-05 12:04:00    2016-12-05 12:04:00
50003    22522    521    2016-12-05 10:00:00    2016-12-05 10:00:00
50004    22522    787    2016-12-05 16:25:00    2016-12-05 16:25:00
50005    22522    810    2016-12-05 06:55:00    2016-12-05 06:55:00
50006    22522    697    2016-12-05 08:34:00    2016-12-05 08:34:00
50007    22522    882    2016-12-05 11:17:00    2016-12-05 11:17:00
50008    22523    954    2016-12-05 22:02:00    2016-12-05 22:02:00
50009    22523    519    2016-12-05 17:42:00    2016-12-05 17:42:00
50010    22523    817    2016-12-05 09:48:00    2016-12-05 09:48:00
50011    22523    645    2016-12-05 20:37:00    2016-12-05 20:37:00
50012    22523    715    2016-12-05 18:09:00    2016-12-05 18:09:00
50013    22524    961    2016-12-06 16:39:00    2016-12-06 16:39:00
50014    22524    526    2016-12-06 12:04:00    2016-12-06 12:04:00
50015    22524    799    2016-12-06 19:14:00    2016-12-06 19:14:00
50016    22524    714    2016-12-06 06:13:00    2016-12-06 06:13:00
50017    22524    592    2016-12-06 01:25:00    2016-12-06 01:25:00
50018    22525    590    2016-12-06 01:44:00    2016-12-06 01:44:00
50019    22525    562    2016-12-06 19:24:00    2016-12-06 19:24:00
50020    22525    694    2016-12-06 17:57:00    2016-12-06 17:57:00
50021    22525    855    2016-12-06 17:00:00    2016-12-06 17:00:00
50022    22525    872    2016-12-06 11:19:00    2016-12-06 11:19:00
50023    22526    562    2016-12-06 18:13:00    2016-12-06 18:13:00
50024    22526    715    2016-12-06 08:40:00    2016-12-06 08:40:00
50025    22526    897    2016-12-06 12:11:00    2016-12-06 12:11:00
50026    22526    639    2016-12-06 08:28:00    2016-12-06 08:28:00
50027    22526    556    2016-12-06 07:08:00    2016-12-06 07:08:00
50028    22527    740    2016-12-06 12:23:00    2016-12-06 12:23:00
50029    22527    667    2016-12-06 06:52:00    2016-12-06 06:52:00
50030    22527    503    2016-12-06 12:15:00    2016-12-06 12:15:00
50031    22527    712    2016-12-06 16:39:00    2016-12-06 16:39:00
50032    22527    942    2016-12-06 17:59:00    2016-12-06 17:59:00
50033    22528    794    2016-12-06 12:59:00    2016-12-06 12:59:00
50034    22528    683    2016-12-06 03:08:00    2016-12-06 03:08:00
50035    22528    823    2016-12-06 13:59:00    2016-12-06 13:59:00
50036    22528    670    2016-12-06 14:07:00    2016-12-06 14:07:00
50037    22528    489    2016-12-06 22:57:00    2016-12-06 22:57:00
50038    22529    673    2016-12-06 03:22:00    2016-12-06 03:22:00
50039    22529    628    2016-12-06 14:00:00    2016-12-06 14:00:00
50040    22529    656    2016-12-06 07:23:00    2016-12-06 07:23:00
50041    22529    862    2016-12-06 21:55:00    2016-12-06 21:55:00
50042    22529    894    2016-12-06 01:23:00    2016-12-06 01:23:00
50043    22530    681    2016-12-06 01:04:00    2016-12-06 01:04:00
50044    22530    922    2016-12-06 15:28:00    2016-12-06 15:28:00
50045    22530    502    2016-12-06 04:17:00    2016-12-06 04:17:00
50046    22530    687    2016-12-06 10:55:00    2016-12-06 10:55:00
50047    22530    468    2016-12-06 02:06:00    2016-12-06 02:06:00
50048    22531    620    2016-12-06 22:24:00    2016-12-06 22:24:00
50049    22531    637    2016-12-06 12:13:00    2016-12-06 12:13:00
50050    22531    604    2016-12-06 03:51:00    2016-12-06 03:51:00
50051    22531    518    2016-12-06 06:22:00    2016-12-06 06:22:00
50052    22531    772    2016-12-06 23:42:00    2016-12-06 23:42:00
50053    22532    750    2016-12-06 05:04:00    2016-12-06 05:04:00
50054    22532    762    2016-12-06 07:42:00    2016-12-06 07:42:00
50055    22532    555    2016-12-06 23:19:00    2016-12-06 23:19:00
50056    22532    635    2016-12-06 19:44:00    2016-12-06 19:44:00
50057    22532    946    2016-12-06 12:05:00    2016-12-06 12:05:00
50058    22533    741    2016-12-06 08:06:00    2016-12-06 08:06:00
50059    22533    737    2016-12-06 09:34:00    2016-12-06 09:34:00
50060    22533    945    2016-12-06 23:35:00    2016-12-06 23:35:00
50061    22533    528    2016-12-06 20:32:00    2016-12-06 20:32:00
50062    22533    731    2016-12-06 03:48:00    2016-12-06 03:48:00
50063    22534    774    2016-12-06 02:34:00    2016-12-06 02:34:00
50064    22534    541    2016-12-06 08:02:00    2016-12-06 08:02:00
50065    22534    477    2016-12-06 01:08:00    2016-12-06 01:08:00
50066    22534    774    2016-12-06 17:29:00    2016-12-06 17:29:00
50067    22534    610    2016-12-06 20:10:00    2016-12-06 20:10:00
50068    22535    513    2016-12-06 04:03:00    2016-12-06 04:03:00
50069    22535    668    2016-12-06 09:42:00    2016-12-06 09:42:00
50070    22535    631    2016-12-06 10:45:00    2016-12-06 10:45:00
50071    22535    930    2016-12-06 11:25:00    2016-12-06 11:25:00
50072    22535    532    2016-12-06 22:02:00    2016-12-06 22:02:00
50073    22536    714    2016-12-06 08:00:00    2016-12-06 08:00:00
50074    22536    492    2016-12-06 19:13:00    2016-12-06 19:13:00
50075    22536    929    2016-12-06 16:54:00    2016-12-06 16:54:00
50076    22536    511    2016-12-06 23:13:00    2016-12-06 23:13:00
50077    22536    471    2016-12-06 18:36:00    2016-12-06 18:36:00
50078    22537    696    2016-12-06 22:04:00    2016-12-06 22:04:00
50079    22537    760    2016-12-06 08:07:00    2016-12-06 08:07:00
50080    22537    541    2016-12-06 03:44:00    2016-12-06 03:44:00
50081    22537    898    2016-12-06 10:24:00    2016-12-06 10:24:00
50082    22537    913    2016-12-06 09:57:00    2016-12-06 09:57:00
50083    22538    639    2016-12-06 20:14:00    2016-12-06 20:14:00
50084    22538    944    2016-12-06 09:04:00    2016-12-06 09:04:00
50085    22538    776    2016-12-06 06:05:00    2016-12-06 06:05:00
50086    22538    601    2016-12-06 06:11:00    2016-12-06 06:11:00
50087    22538    807    2016-12-06 02:38:00    2016-12-06 02:38:00
50088    22539    950    2016-12-06 22:57:00    2016-12-06 22:57:00
50089    22539    749    2016-12-06 06:25:00    2016-12-06 06:25:00
50090    22539    715    2016-12-06 17:03:00    2016-12-06 17:03:00
50091    22539    723    2016-12-06 13:39:00    2016-12-06 13:39:00
50092    22539    464    2016-12-06 22:41:00    2016-12-06 22:41:00
50093    22540    603    2016-12-06 09:21:00    2016-12-06 09:21:00
50094    22540    944    2016-12-06 19:51:00    2016-12-06 19:51:00
50095    22540    882    2016-12-06 05:15:00    2016-12-06 05:15:00
50096    22540    718    2016-12-06 11:17:00    2016-12-06 11:17:00
50097    22540    679    2016-12-06 04:31:00    2016-12-06 04:31:00
50098    22541    855    2016-12-06 05:43:00    2016-12-06 05:43:00
50099    22541    668    2016-12-06 22:54:00    2016-12-06 22:54:00
50100    22541    488    2016-12-06 11:20:00    2016-12-06 11:20:00
50101    22541    518    2016-12-06 01:00:00    2016-12-06 01:00:00
50102    22541    921    2016-12-06 02:28:00    2016-12-06 02:28:00
50103    22542    756    2016-12-06 21:22:00    2016-12-06 21:22:00
50104    22542    801    2016-12-06 18:52:00    2016-12-06 18:52:00
50105    22542    850    2016-12-06 03:44:00    2016-12-06 03:44:00
50106    22542    498    2016-12-06 11:49:00    2016-12-06 11:49:00
50107    22542    724    2016-12-06 22:56:00    2016-12-06 22:56:00
50108    22543    583    2016-12-06 09:07:00    2016-12-06 09:07:00
50109    22543    681    2016-12-06 05:18:00    2016-12-06 05:18:00
50110    22543    710    2016-12-06 07:47:00    2016-12-06 07:47:00
50111    22543    597    2016-12-06 06:40:00    2016-12-06 06:40:00
50112    22543    861    2016-12-06 03:22:00    2016-12-06 03:22:00
50113    22544    884    2016-12-06 15:48:00    2016-12-06 15:48:00
50114    22544    880    2016-12-06 17:03:00    2016-12-06 17:03:00
50115    22544    823    2016-12-06 09:59:00    2016-12-06 09:59:00
50116    22544    521    2016-12-06 21:33:00    2016-12-06 21:33:00
50117    22544    882    2016-12-06 19:07:00    2016-12-06 19:07:00
50118    22545    924    2016-12-06 07:01:00    2016-12-06 07:01:00
50119    22545    687    2016-12-06 08:51:00    2016-12-06 08:51:00
50120    22545    695    2016-12-06 02:29:00    2016-12-06 02:29:00
50121    22545    562    2016-12-06 06:33:00    2016-12-06 06:33:00
50122    22545    926    2016-12-06 21:38:00    2016-12-06 21:38:00
50123    22546    961    2016-12-06 02:18:00    2016-12-06 02:18:00
50124    22546    889    2016-12-06 01:48:00    2016-12-06 01:48:00
50125    22546    840    2016-12-06 20:10:00    2016-12-06 20:10:00
50126    22546    941    2016-12-06 23:51:00    2016-12-06 23:51:00
50127    22546    823    2016-12-06 22:31:00    2016-12-06 22:31:00
50128    22547    587    2016-12-06 18:09:00    2016-12-06 18:09:00
50129    22547    647    2016-12-06 22:10:00    2016-12-06 22:10:00
50130    22547    729    2016-12-06 13:43:00    2016-12-06 13:43:00
50131    22547    571    2016-12-06 09:49:00    2016-12-06 09:49:00
50132    22547    936    2016-12-06 10:30:00    2016-12-06 10:30:00
50133    22548    691    2016-12-06 16:36:00    2016-12-06 16:36:00
50134    22548    581    2016-12-06 12:11:00    2016-12-06 12:11:00
50135    22548    899    2016-12-06 07:11:00    2016-12-06 07:11:00
50136    22548    940    2016-12-06 20:18:00    2016-12-06 20:18:00
50137    22548    742    2016-12-06 07:22:00    2016-12-06 07:22:00
50138    22549    772    2016-12-06 11:37:00    2016-12-06 11:37:00
50139    22549    744    2016-12-06 09:51:00    2016-12-06 09:51:00
50140    22549    796    2016-12-06 19:12:00    2016-12-06 19:12:00
50141    22549    699    2016-12-06 20:10:00    2016-12-06 20:10:00
50142    22549    483    2016-12-06 06:47:00    2016-12-06 06:47:00
50143    22550    577    2016-12-06 15:58:00    2016-12-06 15:58:00
50144    22550    890    2016-12-06 09:53:00    2016-12-06 09:53:00
50145    22550    717    2016-12-06 11:09:00    2016-12-06 11:09:00
50146    22550    468    2016-12-06 07:25:00    2016-12-06 07:25:00
50147    22550    541    2016-12-06 18:37:00    2016-12-06 18:37:00
50148    22551    813    2016-12-06 18:13:00    2016-12-06 18:13:00
50149    22551    872    2016-12-06 10:16:00    2016-12-06 10:16:00
50150    22551    574    2016-12-06 07:35:00    2016-12-06 07:35:00
50151    22551    951    2016-12-06 07:56:00    2016-12-06 07:56:00
50152    22551    558    2016-12-06 13:43:00    2016-12-06 13:43:00
50153    22552    947    2016-12-06 12:50:00    2016-12-06 12:50:00
50154    22552    749    2016-12-06 02:52:00    2016-12-06 02:52:00
50155    22552    907    2016-12-06 06:36:00    2016-12-06 06:36:00
50156    22552    554    2016-12-06 22:37:00    2016-12-06 22:37:00
50157    22552    904    2016-12-06 07:29:00    2016-12-06 07:29:00
50158    22553    829    2016-12-06 05:37:00    2016-12-06 05:37:00
50159    22553    507    2016-12-06 23:48:00    2016-12-06 23:48:00
50160    22553    860    2016-12-06 02:35:00    2016-12-06 02:35:00
50161    22553    728    2016-12-06 20:54:00    2016-12-06 20:54:00
50162    22553    679    2016-12-06 13:19:00    2016-12-06 13:19:00
50163    22554    614    2016-12-06 12:39:00    2016-12-06 12:39:00
50164    22554    638    2016-12-06 05:34:00    2016-12-06 05:34:00
50165    22554    667    2016-12-06 11:04:00    2016-12-06 11:04:00
50166    22554    845    2016-12-06 18:02:00    2016-12-06 18:02:00
50167    22554    944    2016-12-06 14:12:00    2016-12-06 14:12:00
50168    22555    777    2016-12-06 07:01:00    2016-12-06 07:01:00
50169    22555    738    2016-12-06 10:14:00    2016-12-06 10:14:00
50170    22555    505    2016-12-06 05:14:00    2016-12-06 05:14:00
50171    22555    602    2016-12-06 06:12:00    2016-12-06 06:12:00
50172    22555    871    2016-12-06 19:59:00    2016-12-06 19:59:00
50173    22556    639    2016-12-06 18:56:00    2016-12-06 18:56:00
50174    22556    776    2016-12-06 02:24:00    2016-12-06 02:24:00
50175    22556    640    2016-12-06 12:09:00    2016-12-06 12:09:00
50176    22556    505    2016-12-06 14:05:00    2016-12-06 14:05:00
50177    22556    817    2016-12-06 10:35:00    2016-12-06 10:35:00
50178    22557    569    2016-12-06 21:57:00    2016-12-06 21:57:00
50179    22557    521    2016-12-06 10:26:00    2016-12-06 10:26:00
50180    22557    864    2016-12-06 10:02:00    2016-12-06 10:02:00
50181    22557    760    2016-12-06 08:51:00    2016-12-06 08:51:00
50182    22557    624    2016-12-06 07:30:00    2016-12-06 07:30:00
50183    22558    472    2016-12-06 13:51:00    2016-12-06 13:51:00
50184    22558    762    2016-12-06 20:42:00    2016-12-06 20:42:00
50185    22558    839    2016-12-06 10:26:00    2016-12-06 10:26:00
50186    22558    574    2016-12-06 19:23:00    2016-12-06 19:23:00
50187    22558    739    2016-12-06 02:36:00    2016-12-06 02:36:00
50188    22559    823    2016-12-06 14:40:00    2016-12-06 14:40:00
50189    22559    464    2016-12-06 07:24:00    2016-12-06 07:24:00
50190    22559    532    2016-12-06 14:39:00    2016-12-06 14:39:00
50191    22559    812    2016-12-06 12:45:00    2016-12-06 12:45:00
50192    22559    581    2016-12-06 07:51:00    2016-12-06 07:51:00
50193    22560    626    2016-12-06 06:56:00    2016-12-06 06:56:00
50194    22560    912    2016-12-06 22:22:00    2016-12-06 22:22:00
50195    22560    468    2016-12-06 17:53:00    2016-12-06 17:53:00
50196    22560    887    2016-12-06 18:45:00    2016-12-06 18:45:00
50197    22560    822    2016-12-06 03:45:00    2016-12-06 03:45:00
50198    22561    552    2016-12-06 02:34:00    2016-12-06 02:34:00
50199    22561    823    2016-12-06 23:10:00    2016-12-06 23:10:00
50200    22561    661    2016-12-06 01:15:00    2016-12-06 01:15:00
50201    22561    562    2016-12-06 13:10:00    2016-12-06 13:10:00
50202    22561    600    2016-12-06 15:03:00    2016-12-06 15:03:00
50203    22562    783    2016-12-06 05:18:00    2016-12-06 05:18:00
50204    22562    858    2016-12-06 04:05:00    2016-12-06 04:05:00
50205    22562    517    2016-12-06 23:43:00    2016-12-06 23:43:00
50206    22562    960    2016-12-06 02:38:00    2016-12-06 02:38:00
50207    22562    947    2016-12-06 22:48:00    2016-12-06 22:48:00
50208    22563    929    2016-12-06 15:13:00    2016-12-06 15:13:00
50209    22563    687    2016-12-06 18:15:00    2016-12-06 18:15:00
50210    22563    515    2016-12-06 07:46:00    2016-12-06 07:46:00
50211    22563    825    2016-12-06 09:51:00    2016-12-06 09:51:00
50212    22563    709    2016-12-06 14:37:00    2016-12-06 14:37:00
50213    22564    831    2016-12-06 14:39:00    2016-12-06 14:39:00
50214    22564    539    2016-12-06 09:07:00    2016-12-06 09:07:00
50215    22564    674    2016-12-06 18:52:00    2016-12-06 18:52:00
50216    22564    470    2016-12-06 02:42:00    2016-12-06 02:42:00
50217    22564    563    2016-12-06 05:23:00    2016-12-06 05:23:00
50218    22565    681    2016-12-06 14:24:00    2016-12-06 14:24:00
50219    22565    893    2016-12-06 17:23:00    2016-12-06 17:23:00
50220    22565    531    2016-12-06 03:31:00    2016-12-06 03:31:00
50221    22565    930    2016-12-06 13:30:00    2016-12-06 13:30:00
50222    22565    877    2016-12-06 03:03:00    2016-12-06 03:03:00
50223    22566    703    2016-12-06 06:36:00    2016-12-06 06:36:00
50224    22566    541    2016-12-06 18:00:00    2016-12-06 18:00:00
50225    22566    714    2016-12-06 20:13:00    2016-12-06 20:13:00
50226    22566    694    2016-12-06 15:34:00    2016-12-06 15:34:00
50227    22566    731    2016-12-06 16:03:00    2016-12-06 16:03:00
50228    22567    941    2016-12-06 09:54:00    2016-12-06 09:54:00
50229    22567    918    2016-12-06 13:08:00    2016-12-06 13:08:00
50230    22567    532    2016-12-06 10:59:00    2016-12-06 10:59:00
50231    22567    888    2016-12-06 20:47:00    2016-12-06 20:47:00
50232    22567    684    2016-12-06 19:55:00    2016-12-06 19:55:00
50233    22568    739    2016-12-06 02:40:00    2016-12-06 02:40:00
50234    22568    807    2016-12-06 01:36:00    2016-12-06 01:36:00
50235    22568    867    2016-12-06 22:37:00    2016-12-06 22:37:00
50236    22568    892    2016-12-06 16:27:00    2016-12-06 16:27:00
50237    22568    593    2016-12-06 12:04:00    2016-12-06 12:04:00
50238    22569    649    2016-12-06 20:36:00    2016-12-06 20:36:00
50239    22569    589    2016-12-06 21:50:00    2016-12-06 21:50:00
50240    22569    752    2016-12-06 13:02:00    2016-12-06 13:02:00
50241    22569    523    2016-12-06 04:35:00    2016-12-06 04:35:00
50242    22569    620    2016-12-06 12:37:00    2016-12-06 12:37:00
50243    22570    501    2016-12-06 15:35:00    2016-12-06 15:35:00
50244    22570    832    2016-12-06 11:36:00    2016-12-06 11:36:00
50245    22570    698    2016-12-06 17:53:00    2016-12-06 17:53:00
50246    22570    502    2016-12-06 09:54:00    2016-12-06 09:54:00
50247    22570    917    2016-12-06 22:27:00    2016-12-06 22:27:00
50248    22571    914    2016-12-06 08:30:00    2016-12-06 08:30:00
50249    22571    771    2016-12-06 21:52:00    2016-12-06 21:52:00
50250    22571    543    2016-12-06 04:08:00    2016-12-06 04:08:00
50251    22571    943    2016-12-06 04:40:00    2016-12-06 04:40:00
50252    22571    858    2016-12-06 07:34:00    2016-12-06 07:34:00
50253    22572    703    2016-12-06 09:10:00    2016-12-06 09:10:00
50254    22572    951    2016-12-06 07:37:00    2016-12-06 07:37:00
50255    22572    538    2016-12-06 19:00:00    2016-12-06 19:00:00
50256    22572    489    2016-12-06 07:03:00    2016-12-06 07:03:00
50257    22572    517    2016-12-06 11:04:00    2016-12-06 11:04:00
50258    22573    539    2016-12-06 13:11:00    2016-12-06 13:11:00
50259    22573    659    2016-12-06 07:49:00    2016-12-06 07:49:00
50260    22573    528    2016-12-06 06:28:00    2016-12-06 06:28:00
50261    22573    937    2016-12-06 03:28:00    2016-12-06 03:28:00
50262    22573    890    2016-12-06 07:20:00    2016-12-06 07:20:00
50263    22574    695    2016-12-06 23:25:00    2016-12-06 23:25:00
50264    22574    480    2016-12-06 06:27:00    2016-12-06 06:27:00
50265    22574    595    2016-12-06 11:05:00    2016-12-06 11:05:00
50266    22574    568    2016-12-06 20:17:00    2016-12-06 20:17:00
50267    22574    632    2016-12-06 23:22:00    2016-12-06 23:22:00
50268    22575    479    2016-12-06 05:23:00    2016-12-06 05:23:00
50269    22575    722    2016-12-06 15:07:00    2016-12-06 15:07:00
50270    22575    500    2016-12-06 07:00:00    2016-12-06 07:00:00
50271    22575    805    2016-12-06 22:37:00    2016-12-06 22:37:00
50272    22575    491    2016-12-06 19:43:00    2016-12-06 19:43:00
50273    22576    653    2016-12-06 14:44:00    2016-12-06 14:44:00
50274    22576    825    2016-12-06 18:42:00    2016-12-06 18:42:00
50275    22576    757    2016-12-06 16:32:00    2016-12-06 16:32:00
50276    22576    828    2016-12-06 06:37:00    2016-12-06 06:37:00
50277    22576    882    2016-12-06 19:16:00    2016-12-06 19:16:00
50278    22577    663    2016-12-06 14:31:00    2016-12-06 14:31:00
50279    22577    544    2016-12-06 12:32:00    2016-12-06 12:32:00
50280    22577    920    2016-12-06 06:59:00    2016-12-06 06:59:00
50281    22577    575    2016-12-06 12:26:00    2016-12-06 12:26:00
50282    22577    654    2016-12-06 15:19:00    2016-12-06 15:19:00
50283    22578    471    2016-12-06 02:57:00    2016-12-06 02:57:00
50284    22578    887    2016-12-06 05:51:00    2016-12-06 05:51:00
50285    22578    728    2016-12-06 08:43:00    2016-12-06 08:43:00
50286    22578    646    2016-12-06 01:32:00    2016-12-06 01:32:00
50287    22578    921    2016-12-06 12:21:00    2016-12-06 12:21:00
50288    22579    851    2016-12-06 13:22:00    2016-12-06 13:22:00
50289    22579    945    2016-12-06 20:07:00    2016-12-06 20:07:00
50290    22579    837    2016-12-06 14:41:00    2016-12-06 14:41:00
50291    22579    829    2016-12-06 16:44:00    2016-12-06 16:44:00
50292    22579    934    2016-12-06 01:12:00    2016-12-06 01:12:00
50293    22580    912    2016-12-06 17:12:00    2016-12-06 17:12:00
50294    22580    521    2016-12-06 01:34:00    2016-12-06 01:34:00
50295    22580    827    2016-12-06 15:51:00    2016-12-06 15:51:00
50296    22580    497    2016-12-06 08:03:00    2016-12-06 08:03:00
50297    22580    829    2016-12-06 06:17:00    2016-12-06 06:17:00
50298    22581    481    2016-12-06 03:21:00    2016-12-06 03:21:00
50299    22581    532    2016-12-06 18:56:00    2016-12-06 18:56:00
50300    22581    699    2016-12-06 14:51:00    2016-12-06 14:51:00
50301    22581    729    2016-12-06 09:42:00    2016-12-06 09:42:00
50302    22581    727    2016-12-06 09:03:00    2016-12-06 09:03:00
50303    22582    591    2016-12-06 02:02:00    2016-12-06 02:02:00
50304    22582    602    2016-12-06 01:40:00    2016-12-06 01:40:00
50305    22582    687    2016-12-06 01:27:00    2016-12-06 01:27:00
50306    22582    873    2016-12-06 14:09:00    2016-12-06 14:09:00
50307    22582    748    2016-12-06 16:52:00    2016-12-06 16:52:00
50308    22583    766    2016-12-06 19:53:00    2016-12-06 19:53:00
50309    22583    826    2016-12-06 22:12:00    2016-12-06 22:12:00
50310    22583    669    2016-12-06 22:20:00    2016-12-06 22:20:00
50311    22583    934    2016-12-06 07:56:00    2016-12-06 07:56:00
50312    22583    885    2016-12-06 18:13:00    2016-12-06 18:13:00
50313    22584    781    2016-12-06 05:39:00    2016-12-06 05:39:00
50314    22584    811    2016-12-06 03:27:00    2016-12-06 03:27:00
50315    22584    676    2016-12-06 10:57:00    2016-12-06 10:57:00
50316    22584    620    2016-12-06 13:16:00    2016-12-06 13:16:00
50317    22584    631    2016-12-06 12:03:00    2016-12-06 12:03:00
50318    22585    806    2016-12-06 18:15:00    2016-12-06 18:15:00
50319    22585    675    2016-12-06 19:28:00    2016-12-06 19:28:00
50320    22585    543    2016-12-06 18:48:00    2016-12-06 18:48:00
50321    22585    777    2016-12-06 22:18:00    2016-12-06 22:18:00
50322    22585    850    2016-12-06 10:22:00    2016-12-06 10:22:00
50323    22586    871    2016-12-06 01:36:00    2016-12-06 01:36:00
50324    22586    575    2016-12-06 04:14:00    2016-12-06 04:14:00
50325    22586    694    2016-12-06 15:00:00    2016-12-06 15:00:00
50326    22586    562    2016-12-06 10:03:00    2016-12-06 10:03:00
50327    22586    539    2016-12-06 10:50:00    2016-12-06 10:50:00
50328    22587    592    2016-12-06 23:43:00    2016-12-06 23:43:00
50329    22587    718    2016-12-06 13:21:00    2016-12-06 13:21:00
50330    22587    745    2016-12-06 20:18:00    2016-12-06 20:18:00
50331    22587    632    2016-12-06 13:48:00    2016-12-06 13:48:00
50332    22587    547    2016-12-06 07:32:00    2016-12-06 07:32:00
50333    22588    501    2016-12-06 07:23:00    2016-12-06 07:23:00
50334    22588    662    2016-12-06 04:22:00    2016-12-06 04:22:00
50335    22588    682    2016-12-06 14:28:00    2016-12-06 14:28:00
50336    22588    584    2016-12-06 23:42:00    2016-12-06 23:42:00
50337    22588    734    2016-12-06 06:55:00    2016-12-06 06:55:00
50338    22589    878    2016-12-06 11:30:00    2016-12-06 11:30:00
50339    22589    804    2016-12-06 03:46:00    2016-12-06 03:46:00
50340    22589    585    2016-12-06 10:13:00    2016-12-06 10:13:00
50341    22589    643    2016-12-06 22:41:00    2016-12-06 22:41:00
50342    22589    665    2016-12-06 08:06:00    2016-12-06 08:06:00
50343    22590    817    2016-12-06 12:28:00    2016-12-06 12:28:00
50344    22590    922    2016-12-06 17:57:00    2016-12-06 17:57:00
50345    22590    686    2016-12-06 14:11:00    2016-12-06 14:11:00
50346    22590    769    2016-12-06 09:11:00    2016-12-06 09:11:00
50347    22590    796    2016-12-06 01:44:00    2016-12-06 01:44:00
50348    22591    784    2016-12-06 23:34:00    2016-12-06 23:34:00
50349    22591    916    2016-12-06 18:15:00    2016-12-06 18:15:00
50350    22591    506    2016-12-06 18:37:00    2016-12-06 18:37:00
50351    22591    499    2016-12-06 08:14:00    2016-12-06 08:14:00
50352    22591    493    2016-12-06 09:57:00    2016-12-06 09:57:00
50353    22592    519    2016-12-06 12:44:00    2016-12-06 12:44:00
50354    22592    767    2016-12-06 23:35:00    2016-12-06 23:35:00
50355    22592    794    2016-12-06 17:28:00    2016-12-06 17:28:00
50356    22592    587    2016-12-06 09:20:00    2016-12-06 09:20:00
50357    22592    866    2016-12-06 23:55:00    2016-12-06 23:55:00
50358    22593    749    2016-12-06 06:00:00    2016-12-06 06:00:00
50359    22593    802    2016-12-06 03:25:00    2016-12-06 03:25:00
50360    22593    914    2016-12-06 16:07:00    2016-12-06 16:07:00
50361    22593    886    2016-12-06 06:44:00    2016-12-06 06:44:00
50362    22593    686    2016-12-06 19:23:00    2016-12-06 19:23:00
50363    22594    652    2016-12-06 01:56:00    2016-12-06 01:56:00
50364    22594    561    2016-12-06 13:31:00    2016-12-06 13:31:00
50365    22594    533    2016-12-06 16:14:00    2016-12-06 16:14:00
50366    22594    804    2016-12-06 15:03:00    2016-12-06 15:03:00
50367    22594    737    2016-12-06 17:58:00    2016-12-06 17:58:00
50368    22595    783    2016-12-06 04:25:00    2016-12-06 04:25:00
50369    22595    605    2016-12-06 16:16:00    2016-12-06 16:16:00
50370    22595    487    2016-12-06 23:20:00    2016-12-06 23:20:00
50371    22595    788    2016-12-06 23:27:00    2016-12-06 23:27:00
50372    22595    927    2016-12-06 12:07:00    2016-12-06 12:07:00
50373    22596    930    2016-12-06 09:34:00    2016-12-06 09:34:00
50374    22596    511    2016-12-06 05:12:00    2016-12-06 05:12:00
50375    22596    810    2016-12-06 14:11:00    2016-12-06 14:11:00
50376    22596    713    2016-12-06 17:36:00    2016-12-06 17:36:00
50377    22596    730    2016-12-06 16:13:00    2016-12-06 16:13:00
50378    22597    904    2016-12-06 06:20:00    2016-12-06 06:20:00
50379    22597    535    2016-12-06 16:46:00    2016-12-06 16:46:00
50380    22597    627    2016-12-06 21:09:00    2016-12-06 21:09:00
50381    22597    697    2016-12-06 02:47:00    2016-12-06 02:47:00
50382    22597    475    2016-12-06 01:00:00    2016-12-06 01:00:00
50383    22598    881    2016-12-06 20:50:00    2016-12-06 20:50:00
50384    22598    557    2016-12-06 08:58:00    2016-12-06 08:58:00
50385    22598    804    2016-12-06 09:17:00    2016-12-06 09:17:00
50386    22598    746    2016-12-06 15:30:00    2016-12-06 15:30:00
50387    22598    708    2016-12-06 23:41:00    2016-12-06 23:41:00
50388    22599    502    2016-12-06 18:29:00    2016-12-06 18:29:00
50389    22599    600    2016-12-06 02:35:00    2016-12-06 02:35:00
50390    22599    868    2016-12-06 20:41:00    2016-12-06 20:41:00
50391    22599    668    2016-12-06 17:34:00    2016-12-06 17:34:00
50392    22599    602    2016-12-06 02:22:00    2016-12-06 02:22:00
50393    22600    768    2016-12-06 03:12:00    2016-12-06 03:12:00
50394    22600    735    2016-12-06 23:23:00    2016-12-06 23:23:00
50395    22600    573    2016-12-06 20:20:00    2016-12-06 20:20:00
50396    22600    480    2016-12-06 22:07:00    2016-12-06 22:07:00
50397    22600    904    2016-12-06 13:25:00    2016-12-06 13:25:00
50398    22601    600    2016-12-06 09:15:00    2016-12-06 09:15:00
50399    22601    517    2016-12-06 06:06:00    2016-12-06 06:06:00
50400    22601    733    2016-12-06 17:00:00    2016-12-06 17:00:00
50401    22601    581    2016-12-06 03:40:00    2016-12-06 03:40:00
50402    22601    743    2016-12-06 17:19:00    2016-12-06 17:19:00
50403    22602    822    2016-12-06 05:52:00    2016-12-06 05:52:00
50404    22602    711    2016-12-06 23:26:00    2016-12-06 23:26:00
50405    22602    633    2016-12-06 07:36:00    2016-12-06 07:36:00
50406    22602    591    2016-12-06 09:30:00    2016-12-06 09:30:00
50407    22602    937    2016-12-06 13:00:00    2016-12-06 13:00:00
50408    22603    935    2016-12-06 23:36:00    2016-12-06 23:36:00
50409    22603    858    2016-12-06 17:08:00    2016-12-06 17:08:00
50410    22603    600    2016-12-06 12:50:00    2016-12-06 12:50:00
50411    22603    802    2016-12-06 14:40:00    2016-12-06 14:40:00
50412    22603    715    2016-12-06 16:56:00    2016-12-06 16:56:00
50413    22604    741    2016-12-07 04:51:00    2016-12-07 04:51:00
50414    22604    468    2016-12-07 22:36:00    2016-12-07 22:36:00
50415    22604    813    2016-12-07 22:25:00    2016-12-07 22:25:00
50416    22604    530    2016-12-07 21:16:00    2016-12-07 21:16:00
50417    22604    502    2016-12-07 17:51:00    2016-12-07 17:51:00
50418    22605    817    2016-12-07 09:38:00    2016-12-07 09:38:00
50419    22605    902    2016-12-07 13:56:00    2016-12-07 13:56:00
50420    22605    598    2016-12-07 10:36:00    2016-12-07 10:36:00
50421    22605    930    2016-12-07 06:21:00    2016-12-07 06:21:00
50422    22605    463    2016-12-07 05:57:00    2016-12-07 05:57:00
50423    22606    670    2016-12-07 14:44:00    2016-12-07 14:44:00
50424    22606    847    2016-12-07 20:24:00    2016-12-07 20:24:00
50425    22606    828    2016-12-07 23:00:00    2016-12-07 23:00:00
50426    22606    624    2016-12-07 15:39:00    2016-12-07 15:39:00
50427    22606    896    2016-12-07 15:00:00    2016-12-07 15:00:00
50428    22607    887    2016-12-07 13:44:00    2016-12-07 13:44:00
50429    22607    802    2016-12-07 02:13:00    2016-12-07 02:13:00
50430    22607    464    2016-12-07 08:25:00    2016-12-07 08:25:00
50431    22607    664    2016-12-07 08:27:00    2016-12-07 08:27:00
50432    22607    802    2016-12-07 21:21:00    2016-12-07 21:21:00
50433    22608    647    2016-12-07 16:56:00    2016-12-07 16:56:00
50434    22608    824    2016-12-07 09:16:00    2016-12-07 09:16:00
50435    22608    682    2016-12-07 14:07:00    2016-12-07 14:07:00
50436    22608    916    2016-12-07 23:15:00    2016-12-07 23:15:00
50437    22608    880    2016-12-07 20:41:00    2016-12-07 20:41:00
50438    22609    777    2016-12-07 07:29:00    2016-12-07 07:29:00
50439    22609    599    2016-12-07 18:59:00    2016-12-07 18:59:00
50440    22609    937    2016-12-07 10:20:00    2016-12-07 10:20:00
50441    22609    918    2016-12-07 02:00:00    2016-12-07 02:00:00
50442    22609    497    2016-12-07 09:36:00    2016-12-07 09:36:00
50443    22610    507    2016-12-07 11:12:00    2016-12-07 11:12:00
50444    22610    466    2016-12-07 16:23:00    2016-12-07 16:23:00
50445    22610    762    2016-12-07 18:20:00    2016-12-07 18:20:00
50446    22610    799    2016-12-07 07:11:00    2016-12-07 07:11:00
50447    22610    860    2016-12-07 11:08:00    2016-12-07 11:08:00
50448    22611    940    2016-12-07 03:59:00    2016-12-07 03:59:00
50449    22611    798    2016-12-07 09:13:00    2016-12-07 09:13:00
50450    22611    756    2016-12-07 22:58:00    2016-12-07 22:58:00
50451    22611    923    2016-12-07 09:39:00    2016-12-07 09:39:00
50452    22611    836    2016-12-07 22:48:00    2016-12-07 22:48:00
50453    22612    752    2016-12-07 03:09:00    2016-12-07 03:09:00
50454    22612    742    2016-12-07 16:19:00    2016-12-07 16:19:00
50455    22612    709    2016-12-07 03:19:00    2016-12-07 03:19:00
50456    22612    674    2016-12-07 01:22:00    2016-12-07 01:22:00
50457    22612    948    2016-12-07 23:22:00    2016-12-07 23:22:00
50458    22613    957    2016-12-07 06:47:00    2016-12-07 06:47:00
50459    22613    647    2016-12-07 21:23:00    2016-12-07 21:23:00
50460    22613    764    2016-12-07 17:50:00    2016-12-07 17:50:00
50461    22613    604    2016-12-07 19:33:00    2016-12-07 19:33:00
50462    22613    582    2016-12-07 19:37:00    2016-12-07 19:37:00
50463    22614    862    2016-12-07 11:28:00    2016-12-07 11:28:00
50464    22614    709    2016-12-07 01:38:00    2016-12-07 01:38:00
50465    22614    586    2016-12-07 16:28:00    2016-12-07 16:28:00
50466    22614    810    2016-12-07 20:57:00    2016-12-07 20:57:00
50467    22614    564    2016-12-07 02:35:00    2016-12-07 02:35:00
50468    22615    913    2016-12-07 17:48:00    2016-12-07 17:48:00
50469    22615    736    2016-12-07 10:34:00    2016-12-07 10:34:00
50470    22615    811    2016-12-07 10:00:00    2016-12-07 10:00:00
50471    22615    736    2016-12-07 12:21:00    2016-12-07 12:21:00
50472    22615    531    2016-12-07 02:46:00    2016-12-07 02:46:00
50473    22616    959    2016-12-07 16:21:00    2016-12-07 16:21:00
50474    22616    905    2016-12-07 19:42:00    2016-12-07 19:42:00
50475    22616    885    2016-12-07 06:55:00    2016-12-07 06:55:00
50476    22616    777    2016-12-07 17:53:00    2016-12-07 17:53:00
50477    22616    872    2016-12-07 09:44:00    2016-12-07 09:44:00
50478    22617    949    2016-12-07 06:09:00    2016-12-07 06:09:00
50479    22617    937    2016-12-07 08:48:00    2016-12-07 08:48:00
50480    22617    600    2016-12-07 12:37:00    2016-12-07 12:37:00
50481    22617    532    2016-12-07 14:55:00    2016-12-07 14:55:00
50482    22617    826    2016-12-07 02:00:00    2016-12-07 02:00:00
50483    22618    636    2016-12-07 20:54:00    2016-12-07 20:54:00
50484    22618    703    2016-12-07 23:00:00    2016-12-07 23:00:00
50485    22618    737    2016-12-07 18:14:00    2016-12-07 18:14:00
50486    22618    571    2016-12-07 14:20:00    2016-12-07 14:20:00
50487    22618    959    2016-12-07 09:00:00    2016-12-07 09:00:00
50488    22619    716    2016-12-07 16:46:00    2016-12-07 16:46:00
50489    22619    692    2016-12-07 23:05:00    2016-12-07 23:05:00
50490    22619    505    2016-12-07 02:31:00    2016-12-07 02:31:00
50491    22619    620    2016-12-07 11:36:00    2016-12-07 11:36:00
50492    22619    491    2016-12-07 07:51:00    2016-12-07 07:51:00
50493    22620    649    2016-12-07 05:09:00    2016-12-07 05:09:00
50494    22620    940    2016-12-07 16:21:00    2016-12-07 16:21:00
50495    22620    574    2016-12-07 23:46:00    2016-12-07 23:46:00
50496    22620    958    2016-12-07 09:05:00    2016-12-07 09:05:00
50497    22620    932    2016-12-07 23:30:00    2016-12-07 23:30:00
50498    22621    595    2016-12-07 04:18:00    2016-12-07 04:18:00
50499    22621    804    2016-12-07 07:09:00    2016-12-07 07:09:00
50500    22621    686    2016-12-07 06:04:00    2016-12-07 06:04:00
50501    22621    896    2016-12-07 18:46:00    2016-12-07 18:46:00
50502    22621    903    2016-12-07 01:31:00    2016-12-07 01:31:00
50503    22622    561    2016-12-07 14:42:00    2016-12-07 14:42:00
50504    22622    806    2016-12-07 15:33:00    2016-12-07 15:33:00
50505    22622    937    2016-12-07 16:07:00    2016-12-07 16:07:00
50506    22622    601    2016-12-07 21:31:00    2016-12-07 21:31:00
50507    22622    609    2016-12-07 18:32:00    2016-12-07 18:32:00
50508    22623    794    2016-12-07 18:10:00    2016-12-07 18:10:00
50509    22623    719    2016-12-07 22:42:00    2016-12-07 22:42:00
50510    22623    928    2016-12-07 20:18:00    2016-12-07 20:18:00
50511    22623    608    2016-12-07 15:11:00    2016-12-07 15:11:00
50512    22623    696    2016-12-07 14:09:00    2016-12-07 14:09:00
50513    22624    939    2016-12-07 08:05:00    2016-12-07 08:05:00
50514    22624    827    2016-12-07 10:29:00    2016-12-07 10:29:00
50515    22624    722    2016-12-07 12:20:00    2016-12-07 12:20:00
50516    22624    858    2016-12-07 16:37:00    2016-12-07 16:37:00
50517    22624    931    2016-12-07 21:50:00    2016-12-07 21:50:00
50518    22625    896    2016-12-07 01:33:00    2016-12-07 01:33:00
50519    22625    895    2016-12-07 22:57:00    2016-12-07 22:57:00
50520    22625    723    2016-12-07 19:14:00    2016-12-07 19:14:00
50521    22625    874    2016-12-07 02:35:00    2016-12-07 02:35:00
50522    22625    515    2016-12-07 22:31:00    2016-12-07 22:31:00
50523    22626    468    2016-12-07 01:26:00    2016-12-07 01:26:00
50524    22626    587    2016-12-07 21:47:00    2016-12-07 21:47:00
50525    22626    468    2016-12-07 21:17:00    2016-12-07 21:17:00
50526    22626    855    2016-12-07 16:47:00    2016-12-07 16:47:00
50527    22626    688    2016-12-07 01:02:00    2016-12-07 01:02:00
50528    22627    914    2016-12-07 13:53:00    2016-12-07 13:53:00
50529    22627    695    2016-12-07 05:15:00    2016-12-07 05:15:00
50530    22627    831    2016-12-07 12:24:00    2016-12-07 12:24:00
50531    22627    490    2016-12-07 15:13:00    2016-12-07 15:13:00
50532    22627    809    2016-12-07 02:19:00    2016-12-07 02:19:00
50533    22628    477    2016-12-07 08:38:00    2016-12-07 08:38:00
50534    22628    775    2016-12-07 09:28:00    2016-12-07 09:28:00
50535    22628    691    2016-12-07 03:38:00    2016-12-07 03:38:00
50536    22628    674    2016-12-07 04:03:00    2016-12-07 04:03:00
50537    22628    588    2016-12-07 20:32:00    2016-12-07 20:32:00
50538    22629    656    2016-12-07 13:44:00    2016-12-07 13:44:00
50539    22629    786    2016-12-07 09:28:00    2016-12-07 09:28:00
50540    22629    736    2016-12-07 03:16:00    2016-12-07 03:16:00
50541    22629    671    2016-12-07 04:36:00    2016-12-07 04:36:00
50542    22629    797    2016-12-07 02:09:00    2016-12-07 02:09:00
50543    22630    671    2016-12-07 23:31:00    2016-12-07 23:31:00
50544    22630    558    2016-12-07 17:24:00    2016-12-07 17:24:00
50545    22630    549    2016-12-07 16:09:00    2016-12-07 16:09:00
50546    22630    712    2016-12-07 01:18:00    2016-12-07 01:18:00
50547    22630    855    2016-12-07 04:39:00    2016-12-07 04:39:00
50548    22631    782    2016-12-07 18:11:00    2016-12-07 18:11:00
50549    22631    871    2016-12-07 19:30:00    2016-12-07 19:30:00
50550    22631    598    2016-12-07 08:50:00    2016-12-07 08:50:00
50551    22631    567    2016-12-07 09:16:00    2016-12-07 09:16:00
50552    22631    667    2016-12-07 10:14:00    2016-12-07 10:14:00
50553    22632    744    2016-12-07 07:16:00    2016-12-07 07:16:00
50554    22632    834    2016-12-07 06:57:00    2016-12-07 06:57:00
50555    22632    660    2016-12-07 20:27:00    2016-12-07 20:27:00
50556    22632    934    2016-12-07 07:03:00    2016-12-07 07:03:00
50557    22632    919    2016-12-07 12:09:00    2016-12-07 12:09:00
50558    22633    891    2016-12-07 06:57:00    2016-12-07 06:57:00
50559    22633    848    2016-12-07 13:23:00    2016-12-07 13:23:00
50560    22633    724    2016-12-07 14:02:00    2016-12-07 14:02:00
50561    22633    694    2016-12-07 04:53:00    2016-12-07 04:53:00
50562    22633    839    2016-12-07 07:22:00    2016-12-07 07:22:00
50563    22634    613    2016-12-07 17:10:00    2016-12-07 17:10:00
50564    22634    828    2016-12-07 11:38:00    2016-12-07 11:38:00
50565    22634    925    2016-12-07 17:19:00    2016-12-07 17:19:00
50566    22634    828    2016-12-07 23:57:00    2016-12-07 23:57:00
50567    22634    833    2016-12-07 22:33:00    2016-12-07 22:33:00
50568    22635    732    2016-12-07 03:30:00    2016-12-07 03:30:00
50569    22635    799    2016-12-07 04:04:00    2016-12-07 04:04:00
50570    22635    860    2016-12-07 10:16:00    2016-12-07 10:16:00
50571    22635    619    2016-12-07 12:34:00    2016-12-07 12:34:00
50572    22635    844    2016-12-07 02:21:00    2016-12-07 02:21:00
50573    22636    929    2016-12-07 13:30:00    2016-12-07 13:30:00
50574    22636    876    2016-12-07 03:20:00    2016-12-07 03:20:00
50575    22636    689    2016-12-07 05:30:00    2016-12-07 05:30:00
50576    22636    585    2016-12-07 11:30:00    2016-12-07 11:30:00
50577    22636    661    2016-12-07 14:13:00    2016-12-07 14:13:00
50578    22637    723    2016-12-07 17:09:00    2016-12-07 17:09:00
50579    22637    878    2016-12-07 19:17:00    2016-12-07 19:17:00
50580    22637    467    2016-12-07 13:45:00    2016-12-07 13:45:00
50581    22637    550    2016-12-07 18:58:00    2016-12-07 18:58:00
50582    22637    680    2016-12-07 02:27:00    2016-12-07 02:27:00
50583    22638    653    2016-12-07 07:53:00    2016-12-07 07:53:00
50584    22638    764    2016-12-07 08:12:00    2016-12-07 08:12:00
50585    22638    620    2016-12-07 01:49:00    2016-12-07 01:49:00
50586    22638    885    2016-12-07 23:08:00    2016-12-07 23:08:00
50587    22638    945    2016-12-07 18:59:00    2016-12-07 18:59:00
50588    22639    658    2016-12-07 23:57:00    2016-12-07 23:57:00
50589    22639    763    2016-12-07 23:55:00    2016-12-07 23:55:00
50590    22639    685    2016-12-07 23:25:00    2016-12-07 23:25:00
50591    22639    522    2016-12-07 07:26:00    2016-12-07 07:26:00
50592    22639    463    2016-12-07 21:09:00    2016-12-07 21:09:00
50593    22640    896    2016-12-07 23:31:00    2016-12-07 23:31:00
50594    22640    664    2016-12-07 13:47:00    2016-12-07 13:47:00
50595    22640    743    2016-12-07 15:47:00    2016-12-07 15:47:00
50596    22640    832    2016-12-07 11:00:00    2016-12-07 11:00:00
50597    22640    745    2016-12-07 03:57:00    2016-12-07 03:57:00
50598    22641    727    2016-12-07 05:07:00    2016-12-07 05:07:00
50599    22641    774    2016-12-07 04:53:00    2016-12-07 04:53:00
50600    22641    941    2016-12-07 07:56:00    2016-12-07 07:56:00
50601    22641    805    2016-12-07 05:56:00    2016-12-07 05:56:00
50602    22641    920    2016-12-07 06:28:00    2016-12-07 06:28:00
50603    22642    476    2016-12-07 20:33:00    2016-12-07 20:33:00
50604    22642    622    2016-12-07 05:46:00    2016-12-07 05:46:00
50605    22642    941    2016-12-07 18:29:00    2016-12-07 18:29:00
50606    22642    900    2016-12-07 15:20:00    2016-12-07 15:20:00
50607    22642    577    2016-12-07 14:07:00    2016-12-07 14:07:00
50608    22643    513    2016-12-07 15:45:00    2016-12-07 15:45:00
50609    22643    796    2016-12-07 16:52:00    2016-12-07 16:52:00
50610    22643    891    2016-12-07 06:26:00    2016-12-07 06:26:00
50611    22643    678    2016-12-07 04:52:00    2016-12-07 04:52:00
50612    22643    773    2016-12-07 11:08:00    2016-12-07 11:08:00
50613    22644    755    2016-12-07 16:24:00    2016-12-07 16:24:00
50614    22644    803    2016-12-07 16:48:00    2016-12-07 16:48:00
50615    22644    672    2016-12-07 10:54:00    2016-12-07 10:54:00
50616    22644    623    2016-12-07 17:57:00    2016-12-07 17:57:00
50617    22644    502    2016-12-07 09:44:00    2016-12-07 09:44:00
50618    22645    601    2016-12-07 13:28:00    2016-12-07 13:28:00
50619    22645    736    2016-12-07 07:10:00    2016-12-07 07:10:00
50620    22645    953    2016-12-07 01:53:00    2016-12-07 01:53:00
50621    22645    485    2016-12-07 12:10:00    2016-12-07 12:10:00
50622    22645    500    2016-12-07 04:31:00    2016-12-07 04:31:00
50623    22646    874    2016-12-07 19:11:00    2016-12-07 19:11:00
50624    22646    910    2016-12-07 17:02:00    2016-12-07 17:02:00
50625    22646    597    2016-12-07 21:19:00    2016-12-07 21:19:00
50626    22646    580    2016-12-07 17:18:00    2016-12-07 17:18:00
50627    22646    682    2016-12-07 06:57:00    2016-12-07 06:57:00
50628    22647    491    2016-12-07 07:20:00    2016-12-07 07:20:00
50629    22647    495    2016-12-07 07:10:00    2016-12-07 07:10:00
50630    22647    805    2016-12-07 14:19:00    2016-12-07 14:19:00
50631    22647    662    2016-12-07 20:50:00    2016-12-07 20:50:00
50632    22647    863    2016-12-07 18:21:00    2016-12-07 18:21:00
50633    22648    658    2016-12-07 12:00:00    2016-12-07 12:00:00
50634    22648    820    2016-12-07 16:38:00    2016-12-07 16:38:00
50635    22648    925    2016-12-07 22:01:00    2016-12-07 22:01:00
50636    22648    792    2016-12-07 12:57:00    2016-12-07 12:57:00
50637    22648    725    2016-12-07 01:21:00    2016-12-07 01:21:00
50638    22649    867    2016-12-07 13:57:00    2016-12-07 13:57:00
50639    22649    655    2016-12-07 03:53:00    2016-12-07 03:53:00
50640    22649    703    2016-12-07 15:56:00    2016-12-07 15:56:00
50641    22649    650    2016-12-07 20:51:00    2016-12-07 20:51:00
50642    22649    610    2016-12-07 16:58:00    2016-12-07 16:58:00
50643    22650    917    2016-12-07 03:58:00    2016-12-07 03:58:00
50644    22650    935    2016-12-07 07:12:00    2016-12-07 07:12:00
50645    22650    861    2016-12-07 20:47:00    2016-12-07 20:47:00
50646    22650    600    2016-12-07 10:39:00    2016-12-07 10:39:00
50647    22650    893    2016-12-07 08:14:00    2016-12-07 08:14:00
50648    22651    552    2016-12-07 18:38:00    2016-12-07 18:38:00
50649    22651    504    2016-12-07 13:20:00    2016-12-07 13:20:00
50650    22651    828    2016-12-07 02:59:00    2016-12-07 02:59:00
50651    22651    668    2016-12-07 11:38:00    2016-12-07 11:38:00
50652    22651    916    2016-12-07 22:03:00    2016-12-07 22:03:00
50653    22652    763    2016-12-07 03:47:00    2016-12-07 03:47:00
50654    22652    931    2016-12-07 20:31:00    2016-12-07 20:31:00
50655    22652    947    2016-12-07 06:09:00    2016-12-07 06:09:00
50656    22652    733    2016-12-07 20:02:00    2016-12-07 20:02:00
50657    22652    489    2016-12-07 13:48:00    2016-12-07 13:48:00
50658    22653    485    2016-12-07 03:05:00    2016-12-07 03:05:00
50659    22653    938    2016-12-07 03:02:00    2016-12-07 03:02:00
50660    22653    707    2016-12-07 07:02:00    2016-12-07 07:02:00
50661    22653    661    2016-12-07 03:39:00    2016-12-07 03:39:00
50662    22653    567    2016-12-07 17:44:00    2016-12-07 17:44:00
50663    22654    581    2016-12-07 21:49:00    2016-12-07 21:49:00
50664    22654    912    2016-12-07 17:01:00    2016-12-07 17:01:00
50665    22654    703    2016-12-07 10:08:00    2016-12-07 10:08:00
50666    22654    783    2016-12-07 14:52:00    2016-12-07 14:52:00
50667    22654    504    2016-12-07 07:45:00    2016-12-07 07:45:00
50668    22655    724    2016-12-07 04:00:00    2016-12-07 04:00:00
50669    22655    761    2016-12-07 19:17:00    2016-12-07 19:17:00
50670    22655    791    2016-12-07 16:42:00    2016-12-07 16:42:00
50671    22655    622    2016-12-07 03:22:00    2016-12-07 03:22:00
50672    22655    847    2016-12-07 22:55:00    2016-12-07 22:55:00
50673    22656    767    2016-12-07 17:15:00    2016-12-07 17:15:00
50674    22656    759    2016-12-07 09:07:00    2016-12-07 09:07:00
50675    22656    870    2016-12-07 23:13:00    2016-12-07 23:13:00
50676    22656    888    2016-12-07 09:47:00    2016-12-07 09:47:00
50677    22656    914    2016-12-07 20:30:00    2016-12-07 20:30:00
50678    22657    825    2016-12-07 15:51:00    2016-12-07 15:51:00
50679    22657    507    2016-12-07 22:17:00    2016-12-07 22:17:00
50680    22657    582    2016-12-07 15:01:00    2016-12-07 15:01:00
50681    22657    769    2016-12-07 23:52:00    2016-12-07 23:52:00
50682    22657    854    2016-12-07 08:28:00    2016-12-07 08:28:00
50683    22658    708    2016-12-07 07:39:00    2016-12-07 07:39:00
50684    22658    528    2016-12-07 13:19:00    2016-12-07 13:19:00
50685    22658    678    2016-12-07 19:06:00    2016-12-07 19:06:00
50686    22658    781    2016-12-07 06:41:00    2016-12-07 06:41:00
50687    22658    596    2016-12-07 10:27:00    2016-12-07 10:27:00
50688    22659    913    2016-12-07 17:29:00    2016-12-07 17:29:00
50689    22659    895    2016-12-07 05:25:00    2016-12-07 05:25:00
50690    22659    616    2016-12-07 16:44:00    2016-12-07 16:44:00
50691    22659    764    2016-12-07 11:57:00    2016-12-07 11:57:00
50692    22659    861    2016-12-07 18:15:00    2016-12-07 18:15:00
50693    22660    789    2016-12-07 11:08:00    2016-12-07 11:08:00
50694    22660    611    2016-12-07 23:10:00    2016-12-07 23:10:00
50695    22660    822    2016-12-07 06:05:00    2016-12-07 06:05:00
50696    22660    951    2016-12-07 12:22:00    2016-12-07 12:22:00
50697    22660    638    2016-12-07 08:35:00    2016-12-07 08:35:00
50698    22661    827    2016-12-07 02:04:00    2016-12-07 02:04:00
50699    22661    809    2016-12-07 19:09:00    2016-12-07 19:09:00
50700    22661    509    2016-12-07 16:16:00    2016-12-07 16:16:00
50701    22661    834    2016-12-07 12:26:00    2016-12-07 12:26:00
50702    22661    846    2016-12-07 01:48:00    2016-12-07 01:48:00
50703    22662    549    2016-12-07 01:28:00    2016-12-07 01:28:00
50704    22662    948    2016-12-07 06:54:00    2016-12-07 06:54:00
50705    22662    543    2016-12-07 14:45:00    2016-12-07 14:45:00
50706    22662    740    2016-12-07 21:16:00    2016-12-07 21:16:00
50707    22662    934    2016-12-07 22:11:00    2016-12-07 22:11:00
50708    22663    637    2016-12-07 15:27:00    2016-12-07 15:27:00
50709    22663    835    2016-12-07 01:31:00    2016-12-07 01:31:00
50710    22663    931    2016-12-07 20:26:00    2016-12-07 20:26:00
50711    22663    829    2016-12-07 07:44:00    2016-12-07 07:44:00
50712    22663    484    2016-12-07 05:23:00    2016-12-07 05:23:00
50713    22664    517    2016-12-07 03:20:00    2016-12-07 03:20:00
50714    22664    509    2016-12-07 18:07:00    2016-12-07 18:07:00
50715    22664    885    2016-12-07 19:52:00    2016-12-07 19:52:00
50716    22664    677    2016-12-07 02:04:00    2016-12-07 02:04:00
50717    22664    483    2016-12-07 17:19:00    2016-12-07 17:19:00
50718    22665    888    2016-12-07 18:49:00    2016-12-07 18:49:00
50719    22665    767    2016-12-07 10:45:00    2016-12-07 10:45:00
50720    22665    859    2016-12-07 10:16:00    2016-12-07 10:16:00
50721    22665    521    2016-12-07 23:52:00    2016-12-07 23:52:00
50722    22665    581    2016-12-07 08:28:00    2016-12-07 08:28:00
50723    22666    771    2016-12-08 21:53:00    2016-12-08 21:53:00
50724    22666    490    2016-12-08 19:39:00    2016-12-08 19:39:00
50725    22666    642    2016-12-08 18:15:00    2016-12-08 18:15:00
50726    22666    705    2016-12-08 19:55:00    2016-12-08 19:55:00
50727    22666    889    2016-12-08 17:46:00    2016-12-08 17:46:00
50728    22667    574    2016-12-08 11:13:00    2016-12-08 11:13:00
50729    22667    534    2016-12-08 19:00:00    2016-12-08 19:00:00
50730    22667    507    2016-12-08 06:39:00    2016-12-08 06:39:00
50731    22667    824    2016-12-08 20:47:00    2016-12-08 20:47:00
50732    22667    531    2016-12-08 19:56:00    2016-12-08 19:56:00
50733    22668    575    2016-12-08 03:45:00    2016-12-08 03:45:00
50734    22668    757    2016-12-08 02:59:00    2016-12-08 02:59:00
50735    22668    815    2016-12-08 03:33:00    2016-12-08 03:33:00
50736    22668    563    2016-12-08 23:38:00    2016-12-08 23:38:00
50737    22668    806    2016-12-08 06:33:00    2016-12-08 06:33:00
50738    22669    869    2016-12-08 14:23:00    2016-12-08 14:23:00
50739    22669    763    2016-12-08 13:46:00    2016-12-08 13:46:00
50740    22669    941    2016-12-08 22:35:00    2016-12-08 22:35:00
50741    22669    607    2016-12-08 05:48:00    2016-12-08 05:48:00
50742    22669    532    2016-12-08 10:50:00    2016-12-08 10:50:00
50743    22670    505    2016-12-08 09:20:00    2016-12-08 09:20:00
50744    22670    715    2016-12-08 08:39:00    2016-12-08 08:39:00
50745    22670    885    2016-12-08 01:35:00    2016-12-08 01:35:00
50746    22670    660    2016-12-08 13:44:00    2016-12-08 13:44:00
50747    22670    703    2016-12-08 23:54:00    2016-12-08 23:54:00
50748    22671    464    2016-12-08 09:02:00    2016-12-08 09:02:00
50749    22671    787    2016-12-08 03:21:00    2016-12-08 03:21:00
50750    22671    511    2016-12-08 13:54:00    2016-12-08 13:54:00
50751    22671    625    2016-12-08 21:11:00    2016-12-08 21:11:00
50752    22671    912    2016-12-08 10:39:00    2016-12-08 10:39:00
50753    22672    767    2016-12-08 17:36:00    2016-12-08 17:36:00
50754    22672    512    2016-12-08 04:27:00    2016-12-08 04:27:00
50755    22672    868    2016-12-08 03:18:00    2016-12-08 03:18:00
50756    22672    834    2016-12-08 06:47:00    2016-12-08 06:47:00
50757    22672    768    2016-12-08 22:11:00    2016-12-08 22:11:00
50758    22673    698    2016-12-08 05:44:00    2016-12-08 05:44:00
50759    22673    607    2016-12-08 11:30:00    2016-12-08 11:30:00
50760    22673    781    2016-12-08 03:07:00    2016-12-08 03:07:00
50761    22673    909    2016-12-08 23:45:00    2016-12-08 23:45:00
50762    22673    768    2016-12-08 14:10:00    2016-12-08 14:10:00
50763    22674    500    2016-12-08 04:54:00    2016-12-08 04:54:00
50764    22674    891    2016-12-08 17:17:00    2016-12-08 17:17:00
50765    22674    762    2016-12-08 14:00:00    2016-12-08 14:00:00
50766    22674    501    2016-12-08 08:34:00    2016-12-08 08:34:00
50767    22674    557    2016-12-08 03:44:00    2016-12-08 03:44:00
50768    22675    651    2016-12-08 07:33:00    2016-12-08 07:33:00
50769    22675    716    2016-12-08 17:12:00    2016-12-08 17:12:00
50770    22675    547    2016-12-08 05:37:00    2016-12-08 05:37:00
50771    22675    500    2016-12-08 18:41:00    2016-12-08 18:41:00
50772    22675    624    2016-12-08 16:57:00    2016-12-08 16:57:00
50773    22676    740    2016-12-08 12:06:00    2016-12-08 12:06:00
50774    22676    493    2016-12-08 11:43:00    2016-12-08 11:43:00
50775    22676    897    2016-12-08 18:42:00    2016-12-08 18:42:00
50776    22676    816    2016-12-08 01:07:00    2016-12-08 01:07:00
50777    22676    480    2016-12-08 21:36:00    2016-12-08 21:36:00
50778    22677    589    2016-12-08 21:16:00    2016-12-08 21:16:00
50779    22677    689    2016-12-08 12:42:00    2016-12-08 12:42:00
50780    22677    535    2016-12-08 19:14:00    2016-12-08 19:14:00
50781    22677    566    2016-12-08 22:11:00    2016-12-08 22:11:00
50782    22677    602    2016-12-08 17:12:00    2016-12-08 17:12:00
50783    22678    625    2016-12-08 07:03:00    2016-12-08 07:03:00
50784    22678    788    2016-12-08 11:36:00    2016-12-08 11:36:00
50785    22678    542    2016-12-08 12:54:00    2016-12-08 12:54:00
50786    22678    763    2016-12-08 10:22:00    2016-12-08 10:22:00
50787    22678    533    2016-12-08 20:26:00    2016-12-08 20:26:00
50788    22679    618    2016-12-08 17:06:00    2016-12-08 17:06:00
50789    22679    860    2016-12-08 20:21:00    2016-12-08 20:21:00
50790    22679    822    2016-12-08 10:02:00    2016-12-08 10:02:00
50791    22679    476    2016-12-08 22:12:00    2016-12-08 22:12:00
50792    22679    892    2016-12-08 07:28:00    2016-12-08 07:28:00
50793    22680    724    2016-12-08 18:37:00    2016-12-08 18:37:00
50794    22680    908    2016-12-08 01:42:00    2016-12-08 01:42:00
50795    22680    956    2016-12-08 01:47:00    2016-12-08 01:47:00
50796    22680    917    2016-12-08 16:01:00    2016-12-08 16:01:00
50797    22680    768    2016-12-08 17:00:00    2016-12-08 17:00:00
50798    22681    826    2016-12-08 17:00:00    2016-12-08 17:00:00
50799    22681    946    2016-12-08 19:38:00    2016-12-08 19:38:00
50800    22681    654    2016-12-08 21:09:00    2016-12-08 21:09:00
50801    22681    556    2016-12-08 17:53:00    2016-12-08 17:53:00
50802    22681    506    2016-12-08 18:06:00    2016-12-08 18:06:00
50803    22682    507    2016-12-08 03:56:00    2016-12-08 03:56:00
50804    22682    591    2016-12-08 09:24:00    2016-12-08 09:24:00
50805    22682    467    2016-12-08 14:45:00    2016-12-08 14:45:00
50806    22682    559    2016-12-08 12:07:00    2016-12-08 12:07:00
50807    22682    815    2016-12-08 10:30:00    2016-12-08 10:30:00
50808    22683    882    2016-12-08 14:47:00    2016-12-08 14:47:00
50809    22683    536    2016-12-08 10:57:00    2016-12-08 10:57:00
50810    22683    663    2016-12-08 06:56:00    2016-12-08 06:56:00
50811    22683    779    2016-12-08 19:11:00    2016-12-08 19:11:00
50812    22683    563    2016-12-08 10:25:00    2016-12-08 10:25:00
50813    22684    884    2016-12-08 17:55:00    2016-12-08 17:55:00
50814    22684    626    2016-12-08 18:29:00    2016-12-08 18:29:00
50815    22684    466    2016-12-08 16:13:00    2016-12-08 16:13:00
50816    22684    480    2016-12-08 05:31:00    2016-12-08 05:31:00
50817    22684    604    2016-12-08 11:06:00    2016-12-08 11:06:00
50818    22685    809    2016-12-08 14:47:00    2016-12-08 14:47:00
50819    22685    869    2016-12-08 17:07:00    2016-12-08 17:07:00
50820    22685    485    2016-12-08 18:16:00    2016-12-08 18:16:00
50821    22685    628    2016-12-08 04:51:00    2016-12-08 04:51:00
50822    22685    801    2016-12-08 02:16:00    2016-12-08 02:16:00
50823    22686    554    2016-12-08 12:04:00    2016-12-08 12:04:00
50824    22686    561    2016-12-08 10:29:00    2016-12-08 10:29:00
50825    22686    624    2016-12-08 06:14:00    2016-12-08 06:14:00
50826    22686    521    2016-12-08 19:55:00    2016-12-08 19:55:00
50827    22686    571    2016-12-08 19:14:00    2016-12-08 19:14:00
50828    22687    817    2016-12-08 01:32:00    2016-12-08 01:32:00
50829    22687    809    2016-12-08 13:01:00    2016-12-08 13:01:00
50830    22687    953    2016-12-08 22:12:00    2016-12-08 22:12:00
50831    22687    705    2016-12-08 01:53:00    2016-12-08 01:53:00
50832    22687    497    2016-12-08 18:53:00    2016-12-08 18:53:00
50833    22688    482    2016-12-08 23:28:00    2016-12-08 23:28:00
50834    22688    686    2016-12-08 22:00:00    2016-12-08 22:00:00
50835    22688    495    2016-12-08 20:17:00    2016-12-08 20:17:00
50836    22688    897    2016-12-08 10:36:00    2016-12-08 10:36:00
50837    22688    688    2016-12-08 18:08:00    2016-12-08 18:08:00
50838    22689    849    2016-12-08 04:14:00    2016-12-08 04:14:00
50839    22689    544    2016-12-08 06:38:00    2016-12-08 06:38:00
50840    22689    641    2016-12-08 11:19:00    2016-12-08 11:19:00
50841    22689    486    2016-12-08 20:09:00    2016-12-08 20:09:00
50842    22689    821    2016-12-08 11:53:00    2016-12-08 11:53:00
50843    22690    675    2016-12-08 03:04:00    2016-12-08 03:04:00
50844    22690    841    2016-12-08 23:16:00    2016-12-08 23:16:00
50845    22690    898    2016-12-08 06:30:00    2016-12-08 06:30:00
50846    22690    717    2016-12-08 17:32:00    2016-12-08 17:32:00
50847    22690    505    2016-12-08 22:59:00    2016-12-08 22:59:00
50848    22691    700    2016-12-08 05:41:00    2016-12-08 05:41:00
50849    22691    820    2016-12-08 11:34:00    2016-12-08 11:34:00
50850    22691    650    2016-12-08 09:32:00    2016-12-08 09:32:00
50851    22691    747    2016-12-08 12:43:00    2016-12-08 12:43:00
50852    22691    544    2016-12-08 16:09:00    2016-12-08 16:09:00
50853    22692    571    2016-12-08 16:10:00    2016-12-08 16:10:00
50854    22692    693    2016-12-08 13:01:00    2016-12-08 13:01:00
50855    22692    774    2016-12-08 14:52:00    2016-12-08 14:52:00
50856    22692    702    2016-12-08 03:50:00    2016-12-08 03:50:00
50857    22692    843    2016-12-08 13:33:00    2016-12-08 13:33:00
50858    22693    896    2016-12-08 11:12:00    2016-12-08 11:12:00
50859    22693    888    2016-12-08 08:39:00    2016-12-08 08:39:00
50860    22693    899    2016-12-08 22:06:00    2016-12-08 22:06:00
50861    22693    814    2016-12-08 15:35:00    2016-12-08 15:35:00
50862    22693    875    2016-12-08 11:05:00    2016-12-08 11:05:00
50863    22694    914    2016-12-08 01:18:00    2016-12-08 01:18:00
50864    22694    848    2016-12-08 22:57:00    2016-12-08 22:57:00
50865    22694    482    2016-12-08 12:22:00    2016-12-08 12:22:00
50866    22694    623    2016-12-08 04:21:00    2016-12-08 04:21:00
50867    22694    494    2016-12-08 17:22:00    2016-12-08 17:22:00
50868    22695    950    2016-12-08 01:07:00    2016-12-08 01:07:00
50869    22695    693    2016-12-08 05:36:00    2016-12-08 05:36:00
50870    22695    845    2016-12-08 03:27:00    2016-12-08 03:27:00
50871    22695    802    2016-12-08 09:00:00    2016-12-08 09:00:00
50872    22695    477    2016-12-08 17:12:00    2016-12-08 17:12:00
50873    22696    596    2016-12-08 18:02:00    2016-12-08 18:02:00
50874    22696    557    2016-12-08 10:10:00    2016-12-08 10:10:00
50875    22696    598    2016-12-08 05:13:00    2016-12-08 05:13:00
50876    22696    932    2016-12-08 08:20:00    2016-12-08 08:20:00
50877    22696    655    2016-12-08 18:25:00    2016-12-08 18:25:00
50878    22697    708    2016-12-08 08:24:00    2016-12-08 08:24:00
50879    22697    795    2016-12-08 21:32:00    2016-12-08 21:32:00
50880    22697    933    2016-12-08 22:36:00    2016-12-08 22:36:00
50881    22697    918    2016-12-08 08:30:00    2016-12-08 08:30:00
50882    22697    791    2016-12-08 01:53:00    2016-12-08 01:53:00
50883    22698    683    2016-12-08 07:00:00    2016-12-08 07:00:00
50884    22698    519    2016-12-08 06:07:00    2016-12-08 06:07:00
50885    22698    538    2016-12-08 14:27:00    2016-12-08 14:27:00
50886    22698    957    2016-12-08 06:35:00    2016-12-08 06:35:00
50887    22698    689    2016-12-08 12:14:00    2016-12-08 12:14:00
50888    22699    646    2016-12-08 18:17:00    2016-12-08 18:17:00
50889    22699    591    2016-12-08 06:56:00    2016-12-08 06:56:00
50890    22699    784    2016-12-08 14:22:00    2016-12-08 14:22:00
50891    22699    730    2016-12-08 09:46:00    2016-12-08 09:46:00
50892    22699    915    2016-12-08 23:21:00    2016-12-08 23:21:00
50893    22700    723    2016-12-08 12:12:00    2016-12-08 12:12:00
50894    22700    614    2016-12-08 16:40:00    2016-12-08 16:40:00
50895    22700    652    2016-12-08 18:40:00    2016-12-08 18:40:00
50896    22700    704    2016-12-08 11:02:00    2016-12-08 11:02:00
50897    22700    546    2016-12-08 11:05:00    2016-12-08 11:05:00
50898    22701    892    2016-12-09 04:30:00    2016-12-09 04:30:00
50899    22701    843    2016-12-09 09:57:00    2016-12-09 09:57:00
50900    22701    916    2016-12-09 16:56:00    2016-12-09 16:56:00
50901    22701    774    2016-12-09 04:38:00    2016-12-09 04:38:00
50902    22701    723    2016-12-09 12:15:00    2016-12-09 12:15:00
50903    22702    518    2016-12-09 22:41:00    2016-12-09 22:41:00
50904    22702    572    2016-12-09 17:35:00    2016-12-09 17:35:00
50905    22702    673    2016-12-09 14:20:00    2016-12-09 14:20:00
50906    22702    748    2016-12-09 17:17:00    2016-12-09 17:17:00
50907    22702    745    2016-12-09 04:46:00    2016-12-09 04:46:00
50908    22703    493    2016-12-09 16:48:00    2016-12-09 16:48:00
50909    22703    898    2016-12-09 15:01:00    2016-12-09 15:01:00
50910    22703    823    2016-12-09 02:32:00    2016-12-09 02:32:00
50911    22703    610    2016-12-09 18:09:00    2016-12-09 18:09:00
50912    22703    883    2016-12-09 03:37:00    2016-12-09 03:37:00
50913    22704    558    2016-12-09 09:05:00    2016-12-09 09:05:00
50914    22704    758    2016-12-09 22:17:00    2016-12-09 22:17:00
50915    22704    660    2016-12-09 13:31:00    2016-12-09 13:31:00
50916    22704    471    2016-12-09 05:30:00    2016-12-09 05:30:00
50917    22704    821    2016-12-09 07:54:00    2016-12-09 07:54:00
50918    22705    878    2016-12-09 21:27:00    2016-12-09 21:27:00
50919    22705    580    2016-12-09 01:25:00    2016-12-09 01:25:00
50920    22705    951    2016-12-09 20:35:00    2016-12-09 20:35:00
50921    22705    788    2016-12-09 04:24:00    2016-12-09 04:24:00
50922    22705    712    2016-12-09 16:02:00    2016-12-09 16:02:00
50923    22706    524    2016-12-09 05:47:00    2016-12-09 05:47:00
50924    22706    574    2016-12-09 15:47:00    2016-12-09 15:47:00
50925    22706    612    2016-12-09 22:45:00    2016-12-09 22:45:00
50926    22706    487    2016-12-09 14:06:00    2016-12-09 14:06:00
50927    22706    569    2016-12-09 15:08:00    2016-12-09 15:08:00
50928    22707    472    2016-12-09 10:07:00    2016-12-09 10:07:00
50929    22707    874    2016-12-09 20:47:00    2016-12-09 20:47:00
50930    22707    574    2016-12-09 19:54:00    2016-12-09 19:54:00
50931    22707    561    2016-12-09 03:27:00    2016-12-09 03:27:00
50932    22707    499    2016-12-09 15:06:00    2016-12-09 15:06:00
50933    22708    606    2016-12-09 21:55:00    2016-12-09 21:55:00
50934    22708    566    2016-12-09 23:32:00    2016-12-09 23:32:00
50935    22708    557    2016-12-09 20:44:00    2016-12-09 20:44:00
50936    22708    821    2016-12-09 20:35:00    2016-12-09 20:35:00
50937    22708    521    2016-12-09 03:46:00    2016-12-09 03:46:00
50938    22709    548    2016-12-09 21:42:00    2016-12-09 21:42:00
50939    22709    642    2016-12-09 13:15:00    2016-12-09 13:15:00
50940    22709    721    2016-12-09 08:25:00    2016-12-09 08:25:00
50941    22709    806    2016-12-09 15:28:00    2016-12-09 15:28:00
50942    22709    846    2016-12-09 04:39:00    2016-12-09 04:39:00
50943    22710    935    2016-12-09 14:05:00    2016-12-09 14:05:00
50944    22710    681    2016-12-09 11:21:00    2016-12-09 11:21:00
50945    22710    750    2016-12-09 21:43:00    2016-12-09 21:43:00
50946    22710    654    2016-12-09 20:32:00    2016-12-09 20:32:00
50947    22710    499    2016-12-09 12:11:00    2016-12-09 12:11:00
50948    22711    547    2016-12-09 10:32:00    2016-12-09 10:32:00
50949    22711    579    2016-12-09 23:44:00    2016-12-09 23:44:00
50950    22711    751    2016-12-09 08:37:00    2016-12-09 08:37:00
50951    22711    660    2016-12-09 08:43:00    2016-12-09 08:43:00
50952    22711    697    2016-12-09 23:51:00    2016-12-09 23:51:00
50953    22712    808    2016-12-09 04:15:00    2016-12-09 04:15:00
50954    22712    530    2016-12-09 04:47:00    2016-12-09 04:47:00
50955    22712    480    2016-12-09 08:52:00    2016-12-09 08:52:00
50956    22712    947    2016-12-09 07:37:00    2016-12-09 07:37:00
50957    22712    466    2016-12-09 23:25:00    2016-12-09 23:25:00
50958    22713    493    2016-12-09 21:46:00    2016-12-09 21:46:00
50959    22713    652    2016-12-09 20:39:00    2016-12-09 20:39:00
50960    22713    953    2016-12-09 05:43:00    2016-12-09 05:43:00
50961    22713    532    2016-12-09 03:59:00    2016-12-09 03:59:00
50962    22713    958    2016-12-09 20:09:00    2016-12-09 20:09:00
50963    22714    809    2016-12-09 03:54:00    2016-12-09 03:54:00
50964    22714    933    2016-12-09 22:25:00    2016-12-09 22:25:00
50965    22714    645    2016-12-09 09:23:00    2016-12-09 09:23:00
50966    22714    786    2016-12-09 19:44:00    2016-12-09 19:44:00
50967    22714    931    2016-12-09 13:23:00    2016-12-09 13:23:00
50968    22715    558    2016-12-09 21:50:00    2016-12-09 21:50:00
50969    22715    844    2016-12-09 07:25:00    2016-12-09 07:25:00
50970    22715    483    2016-12-09 11:42:00    2016-12-09 11:42:00
50971    22715    651    2016-12-09 08:08:00    2016-12-09 08:08:00
50972    22715    879    2016-12-09 02:20:00    2016-12-09 02:20:00
50973    22716    931    2016-12-09 11:19:00    2016-12-09 11:19:00
50974    22716    655    2016-12-09 01:52:00    2016-12-09 01:52:00
50975    22716    927    2016-12-09 03:24:00    2016-12-09 03:24:00
50976    22716    629    2016-12-09 07:27:00    2016-12-09 07:27:00
50977    22716    867    2016-12-09 05:11:00    2016-12-09 05:11:00
50978    22717    478    2016-12-09 18:09:00    2016-12-09 18:09:00
50979    22717    545    2016-12-09 22:19:00    2016-12-09 22:19:00
50980    22717    769    2016-12-09 13:41:00    2016-12-09 13:41:00
50981    22717    729    2016-12-09 21:02:00    2016-12-09 21:02:00
50982    22717    550    2016-12-09 23:08:00    2016-12-09 23:08:00
50983    22718    839    2016-12-09 02:54:00    2016-12-09 02:54:00
50984    22718    597    2016-12-09 02:29:00    2016-12-09 02:29:00
50985    22718    574    2016-12-09 08:10:00    2016-12-09 08:10:00
50986    22718    786    2016-12-09 08:32:00    2016-12-09 08:32:00
50987    22718    522    2016-12-09 17:56:00    2016-12-09 17:56:00
50988    22719    528    2016-12-09 15:00:00    2016-12-09 15:00:00
50989    22719    900    2016-12-09 23:42:00    2016-12-09 23:42:00
50990    22719    704    2016-12-09 09:12:00    2016-12-09 09:12:00
50991    22719    773    2016-12-09 04:07:00    2016-12-09 04:07:00
50992    22719    911    2016-12-09 04:07:00    2016-12-09 04:07:00
50993    22720    619    2016-12-09 21:28:00    2016-12-09 21:28:00
50994    22720    961    2016-12-09 18:00:00    2016-12-09 18:00:00
50995    22720    574    2016-12-09 19:07:00    2016-12-09 19:07:00
50996    22720    761    2016-12-09 13:53:00    2016-12-09 13:53:00
50997    22720    900    2016-12-09 15:07:00    2016-12-09 15:07:00
50998    22721    890    2016-12-09 15:49:00    2016-12-09 15:49:00
50999    22721    544    2016-12-09 11:13:00    2016-12-09 11:13:00
51000    22721    583    2016-12-09 16:54:00    2016-12-09 16:54:00
51001    22721    760    2016-12-09 01:24:00    2016-12-09 01:24:00
51002    22721    577    2016-12-09 09:51:00    2016-12-09 09:51:00
51003    22722    951    2016-12-09 01:21:00    2016-12-09 01:21:00
51004    22722    756    2016-12-09 19:32:00    2016-12-09 19:32:00
51005    22722    894    2016-12-09 22:22:00    2016-12-09 22:22:00
51006    22722    737    2016-12-09 04:45:00    2016-12-09 04:45:00
51007    22722    838    2016-12-09 17:25:00    2016-12-09 17:25:00
51008    22723    632    2016-12-09 01:12:00    2016-12-09 01:12:00
51009    22723    758    2016-12-09 06:09:00    2016-12-09 06:09:00
51010    22723    822    2016-12-09 18:42:00    2016-12-09 18:42:00
51011    22723    564    2016-12-09 14:58:00    2016-12-09 14:58:00
51012    22723    790    2016-12-09 16:28:00    2016-12-09 16:28:00
51013    22724    543    2016-12-09 10:14:00    2016-12-09 10:14:00
51014    22724    669    2016-12-09 16:12:00    2016-12-09 16:12:00
51015    22724    578    2016-12-09 14:57:00    2016-12-09 14:57:00
51016    22724    505    2016-12-09 14:02:00    2016-12-09 14:02:00
51017    22724    556    2016-12-09 03:28:00    2016-12-09 03:28:00
51018    22725    806    2016-12-09 04:35:00    2016-12-09 04:35:00
51019    22725    534    2016-12-09 01:06:00    2016-12-09 01:06:00
51020    22725    488    2016-12-09 06:50:00    2016-12-09 06:50:00
51021    22725    764    2016-12-09 11:36:00    2016-12-09 11:36:00
51022    22725    583    2016-12-09 09:29:00    2016-12-09 09:29:00
51023    22726    742    2016-12-09 18:46:00    2016-12-09 18:46:00
51024    22726    467    2016-12-09 14:32:00    2016-12-09 14:32:00
51025    22726    794    2016-12-09 19:28:00    2016-12-09 19:28:00
51026    22726    521    2016-12-09 21:00:00    2016-12-09 21:00:00
51027    22726    703    2016-12-09 06:16:00    2016-12-09 06:16:00
51028    22727    944    2016-12-09 11:45:00    2016-12-09 11:45:00
51029    22727    742    2016-12-09 18:00:00    2016-12-09 18:00:00
51030    22727    763    2016-12-09 23:04:00    2016-12-09 23:04:00
51031    22727    821    2016-12-09 10:06:00    2016-12-09 10:06:00
51032    22727    538    2016-12-09 23:47:00    2016-12-09 23:47:00
51033    22728    838    2016-12-09 21:37:00    2016-12-09 21:37:00
51034    22728    788    2016-12-09 07:13:00    2016-12-09 07:13:00
51035    22728    630    2016-12-09 06:40:00    2016-12-09 06:40:00
51036    22728    668    2016-12-09 23:03:00    2016-12-09 23:03:00
51037    22728    559    2016-12-09 05:18:00    2016-12-09 05:18:00
51038    22729    623    2016-12-09 07:30:00    2016-12-09 07:30:00
51039    22729    617    2016-12-09 11:33:00    2016-12-09 11:33:00
51040    22729    685    2016-12-09 05:49:00    2016-12-09 05:49:00
51041    22729    851    2016-12-09 14:38:00    2016-12-09 14:38:00
51042    22729    944    2016-12-09 11:48:00    2016-12-09 11:48:00
51043    22730    912    2016-12-09 12:32:00    2016-12-09 12:32:00
51044    22730    592    2016-12-09 20:53:00    2016-12-09 20:53:00
51045    22730    903    2016-12-09 04:46:00    2016-12-09 04:46:00
51046    22730    674    2016-12-09 18:28:00    2016-12-09 18:28:00
51047    22730    906    2016-12-09 12:00:00    2016-12-09 12:00:00
51048    22731    953    2016-12-09 17:10:00    2016-12-09 17:10:00
51049    22731    650    2016-12-09 18:16:00    2016-12-09 18:16:00
51050    22731    765    2016-12-09 08:28:00    2016-12-09 08:28:00
51051    22731    645    2016-12-09 16:01:00    2016-12-09 16:01:00
51052    22731    846    2016-12-09 02:32:00    2016-12-09 02:32:00
51053    22732    886    2016-12-09 10:28:00    2016-12-09 10:28:00
51054    22732    707    2016-12-09 15:51:00    2016-12-09 15:51:00
51055    22732    530    2016-12-09 17:14:00    2016-12-09 17:14:00
51056    22732    516    2016-12-09 05:37:00    2016-12-09 05:37:00
51057    22732    928    2016-12-09 14:11:00    2016-12-09 14:11:00
51058    22733    580    2016-12-09 04:23:00    2016-12-09 04:23:00
51059    22733    843    2016-12-09 07:20:00    2016-12-09 07:20:00
51060    22733    677    2016-12-09 18:41:00    2016-12-09 18:41:00
51061    22733    870    2016-12-09 14:31:00    2016-12-09 14:31:00
51062    22733    865    2016-12-09 09:27:00    2016-12-09 09:27:00
51063    22734    717    2016-12-09 17:26:00    2016-12-09 17:26:00
51064    22734    917    2016-12-09 05:27:00    2016-12-09 05:27:00
51065    22734    645    2016-12-09 13:57:00    2016-12-09 13:57:00
51066    22734    526    2016-12-09 05:55:00    2016-12-09 05:55:00
51067    22734    779    2016-12-09 06:14:00    2016-12-09 06:14:00
51068    22735    555    2016-12-09 22:31:00    2016-12-09 22:31:00
51069    22735    635    2016-12-09 14:54:00    2016-12-09 14:54:00
51070    22735    588    2016-12-09 16:46:00    2016-12-09 16:46:00
51071    22735    473    2016-12-09 14:47:00    2016-12-09 14:47:00
51072    22735    846    2016-12-09 09:27:00    2016-12-09 09:27:00
51073    22736    670    2016-12-09 22:04:00    2016-12-09 22:04:00
51074    22736    828    2016-12-09 16:26:00    2016-12-09 16:26:00
51075    22736    722    2016-12-09 03:33:00    2016-12-09 03:33:00
51076    22736    803    2016-12-09 05:10:00    2016-12-09 05:10:00
51077    22736    906    2016-12-09 21:00:00    2016-12-09 21:00:00
51078    22737    864    2016-12-09 03:29:00    2016-12-09 03:29:00
51079    22737    721    2016-12-09 04:40:00    2016-12-09 04:40:00
51080    22737    697    2016-12-09 21:59:00    2016-12-09 21:59:00
51081    22737    956    2016-12-09 02:14:00    2016-12-09 02:14:00
51082    22737    772    2016-12-09 16:29:00    2016-12-09 16:29:00
51083    22738    836    2016-12-09 19:28:00    2016-12-09 19:28:00
51084    22738    739    2016-12-09 18:18:00    2016-12-09 18:18:00
51085    22738    540    2016-12-09 20:00:00    2016-12-09 20:00:00
51086    22738    838    2016-12-09 04:43:00    2016-12-09 04:43:00
51087    22738    572    2016-12-09 14:26:00    2016-12-09 14:26:00
51088    22739    575    2016-12-09 06:25:00    2016-12-09 06:25:00
51089    22739    816    2016-12-09 21:06:00    2016-12-09 21:06:00
51090    22739    731    2016-12-09 09:20:00    2016-12-09 09:20:00
51091    22739    602    2016-12-09 16:05:00    2016-12-09 16:05:00
51092    22739    914    2016-12-09 08:38:00    2016-12-09 08:38:00
51093    22740    523    2016-12-09 06:59:00    2016-12-09 06:59:00
51094    22740    898    2016-12-09 11:18:00    2016-12-09 11:18:00
51095    22740    806    2016-12-09 15:43:00    2016-12-09 15:43:00
51096    22740    921    2016-12-09 02:20:00    2016-12-09 02:20:00
51097    22740    591    2016-12-09 12:34:00    2016-12-09 12:34:00
51098    22741    681    2016-12-09 04:53:00    2016-12-09 04:53:00
51099    22741    476    2016-12-09 21:00:00    2016-12-09 21:00:00
51100    22741    481    2016-12-09 23:17:00    2016-12-09 23:17:00
51101    22741    495    2016-12-09 02:41:00    2016-12-09 02:41:00
51102    22741    847    2016-12-09 18:54:00    2016-12-09 18:54:00
51103    22742    903    2016-12-09 08:05:00    2016-12-09 08:05:00
51104    22742    628    2016-12-09 04:35:00    2016-12-09 04:35:00
51105    22742    922    2016-12-09 08:45:00    2016-12-09 08:45:00
51106    22742    749    2016-12-09 20:37:00    2016-12-09 20:37:00
51107    22742    736    2016-12-09 04:42:00    2016-12-09 04:42:00
51108    22743    633    2016-12-09 07:14:00    2016-12-09 07:14:00
51109    22743    490    2016-12-09 15:50:00    2016-12-09 15:50:00
51110    22743    516    2016-12-09 10:00:00    2016-12-09 10:00:00
51111    22743    550    2016-12-09 03:05:00    2016-12-09 03:05:00
51112    22743    799    2016-12-09 11:30:00    2016-12-09 11:30:00
51113    22744    498    2016-12-09 13:14:00    2016-12-09 13:14:00
51114    22744    833    2016-12-09 20:53:00    2016-12-09 20:53:00
51115    22744    590    2016-12-09 04:03:00    2016-12-09 04:03:00
51116    22744    896    2016-12-09 07:18:00    2016-12-09 07:18:00
51117    22744    733    2016-12-09 05:20:00    2016-12-09 05:20:00
51118    22745    827    2016-12-09 22:09:00    2016-12-09 22:09:00
51119    22745    934    2016-12-09 12:03:00    2016-12-09 12:03:00
51120    22745    476    2016-12-09 13:24:00    2016-12-09 13:24:00
51121    22745    905    2016-12-09 21:13:00    2016-12-09 21:13:00
51122    22745    782    2016-12-09 08:02:00    2016-12-09 08:02:00
51123    22746    708    2016-12-09 02:44:00    2016-12-09 02:44:00
51124    22746    866    2016-12-09 04:00:00    2016-12-09 04:00:00
51125    22746    762    2016-12-09 15:26:00    2016-12-09 15:26:00
51126    22746    851    2016-12-09 19:52:00    2016-12-09 19:52:00
51127    22746    564    2016-12-09 20:13:00    2016-12-09 20:13:00
51128    22747    654    2016-12-09 04:24:00    2016-12-09 04:24:00
51129    22747    665    2016-12-09 03:51:00    2016-12-09 03:51:00
51130    22747    552    2016-12-09 10:34:00    2016-12-09 10:34:00
51131    22747    757    2016-12-09 01:17:00    2016-12-09 01:17:00
51132    22747    670    2016-12-09 07:09:00    2016-12-09 07:09:00
51133    22748    520    2016-12-09 13:36:00    2016-12-09 13:36:00
51134    22748    911    2016-12-09 12:42:00    2016-12-09 12:42:00
51135    22748    564    2016-12-09 05:21:00    2016-12-09 05:21:00
51136    22748    517    2016-12-09 06:48:00    2016-12-09 06:48:00
51137    22748    623    2016-12-09 01:27:00    2016-12-09 01:27:00
51138    22749    870    2016-12-09 07:18:00    2016-12-09 07:18:00
51139    22749    810    2016-12-09 09:18:00    2016-12-09 09:18:00
51140    22749    864    2016-12-09 01:17:00    2016-12-09 01:17:00
51141    22749    706    2016-12-09 03:16:00    2016-12-09 03:16:00
51142    22749    921    2016-12-09 10:07:00    2016-12-09 10:07:00
51143    22750    625    2016-12-09 11:36:00    2016-12-09 11:36:00
51144    22750    865    2016-12-09 22:40:00    2016-12-09 22:40:00
51145    22750    681    2016-12-09 03:15:00    2016-12-09 03:15:00
51146    22750    749    2016-12-09 02:23:00    2016-12-09 02:23:00
51147    22750    927    2016-12-09 17:13:00    2016-12-09 17:13:00
51148    22751    919    2016-12-09 15:54:00    2016-12-09 15:54:00
51149    22751    751    2016-12-09 03:35:00    2016-12-09 03:35:00
51150    22751    847    2016-12-09 11:41:00    2016-12-09 11:41:00
51151    22751    941    2016-12-09 23:26:00    2016-12-09 23:26:00
51152    22751    631    2016-12-09 10:03:00    2016-12-09 10:03:00
51153    22752    725    2016-12-09 02:12:00    2016-12-09 02:12:00
51154    22752    818    2016-12-09 08:47:00    2016-12-09 08:47:00
51155    22752    555    2016-12-09 22:13:00    2016-12-09 22:13:00
51156    22752    934    2016-12-09 19:05:00    2016-12-09 19:05:00
51157    22752    482    2016-12-09 15:15:00    2016-12-09 15:15:00
51158    22753    625    2016-12-09 21:20:00    2016-12-09 21:20:00
51159    22753    909    2016-12-09 14:06:00    2016-12-09 14:06:00
51160    22753    621    2016-12-09 20:54:00    2016-12-09 20:54:00
51161    22753    719    2016-12-09 15:44:00    2016-12-09 15:44:00
51162    22753    845    2016-12-09 03:18:00    2016-12-09 03:18:00
51163    22754    646    2016-12-09 06:09:00    2016-12-09 06:09:00
51164    22754    802    2016-12-09 07:33:00    2016-12-09 07:33:00
51165    22754    585    2016-12-09 10:46:00    2016-12-09 10:46:00
51166    22754    807    2016-12-09 18:41:00    2016-12-09 18:41:00
51167    22754    537    2016-12-09 17:32:00    2016-12-09 17:32:00
51168    22755    692    2016-12-09 03:48:00    2016-12-09 03:48:00
51169    22755    685    2016-12-09 03:13:00    2016-12-09 03:13:00
51170    22755    954    2016-12-09 16:29:00    2016-12-09 16:29:00
51171    22755    596    2016-12-09 10:59:00    2016-12-09 10:59:00
51172    22755    927    2016-12-09 06:53:00    2016-12-09 06:53:00
51173    22756    767    2016-12-09 18:29:00    2016-12-09 18:29:00
51174    22756    776    2016-12-09 01:45:00    2016-12-09 01:45:00
51175    22756    613    2016-12-09 08:41:00    2016-12-09 08:41:00
51176    22756    892    2016-12-09 06:02:00    2016-12-09 06:02:00
51177    22756    733    2016-12-09 21:23:00    2016-12-09 21:23:00
51178    22757    835    2016-12-10 20:04:00    2016-12-10 20:04:00
51179    22757    819    2016-12-10 14:03:00    2016-12-10 14:03:00
51180    22757    772    2016-12-10 03:36:00    2016-12-10 03:36:00
51181    22757    486    2016-12-10 12:46:00    2016-12-10 12:46:00
51182    22757    715    2016-12-10 21:26:00    2016-12-10 21:26:00
51183    22758    842    2016-12-10 12:50:00    2016-12-10 12:50:00
51184    22758    839    2016-12-10 21:51:00    2016-12-10 21:51:00
51185    22758    835    2016-12-10 05:43:00    2016-12-10 05:43:00
51186    22758    523    2016-12-10 05:44:00    2016-12-10 05:44:00
51187    22758    755    2016-12-10 15:39:00    2016-12-10 15:39:00
51188    22759    866    2016-12-10 18:49:00    2016-12-10 18:49:00
51189    22759    771    2016-12-10 04:17:00    2016-12-10 04:17:00
51190    22759    909    2016-12-10 14:48:00    2016-12-10 14:48:00
51191    22759    480    2016-12-10 06:44:00    2016-12-10 06:44:00
51192    22759    800    2016-12-10 15:29:00    2016-12-10 15:29:00
51193    22760    805    2016-12-10 16:44:00    2016-12-10 16:44:00
51194    22760    579    2016-12-10 03:52:00    2016-12-10 03:52:00
51195    22760    860    2016-12-10 18:58:00    2016-12-10 18:58:00
51196    22760    944    2016-12-10 21:03:00    2016-12-10 21:03:00
51197    22760    843    2016-12-10 12:32:00    2016-12-10 12:32:00
51198    22761    885    2016-12-10 06:34:00    2016-12-10 06:34:00
51199    22761    633    2016-12-10 04:42:00    2016-12-10 04:42:00
51200    22761    848    2016-12-10 20:09:00    2016-12-10 20:09:00
51201    22761    478    2016-12-10 05:00:00    2016-12-10 05:00:00
51202    22761    559    2016-12-10 03:19:00    2016-12-10 03:19:00
51203    22762    897    2016-12-10 08:46:00    2016-12-10 08:46:00
51204    22762    560    2016-12-10 11:25:00    2016-12-10 11:25:00
51205    22762    895    2016-12-10 17:27:00    2016-12-10 17:27:00
51206    22762    467    2016-12-10 02:35:00    2016-12-10 02:35:00
51207    22762    730    2016-12-10 20:24:00    2016-12-10 20:24:00
51208    22763    930    2016-12-10 09:09:00    2016-12-10 09:09:00
51209    22763    626    2016-12-10 04:08:00    2016-12-10 04:08:00
51210    22763    646    2016-12-10 02:12:00    2016-12-10 02:12:00
51211    22763    604    2016-12-10 08:05:00    2016-12-10 08:05:00
51212    22763    498    2016-12-10 08:48:00    2016-12-10 08:48:00
51213    22764    582    2016-12-10 16:33:00    2016-12-10 16:33:00
51214    22764    839    2016-12-10 10:21:00    2016-12-10 10:21:00
51215    22764    635    2016-12-10 02:07:00    2016-12-10 02:07:00
51216    22764    703    2016-12-10 09:47:00    2016-12-10 09:47:00
51217    22764    843    2016-12-10 15:32:00    2016-12-10 15:32:00
51218    22765    668    2016-12-10 20:04:00    2016-12-10 20:04:00
51219    22765    607    2016-12-10 06:54:00    2016-12-10 06:54:00
51220    22765    780    2016-12-10 02:04:00    2016-12-10 02:04:00
51221    22765    911    2016-12-10 06:49:00    2016-12-10 06:49:00
51222    22765    785    2016-12-10 06:14:00    2016-12-10 06:14:00
51223    22766    566    2016-12-10 02:22:00    2016-12-10 02:22:00
51224    22766    814    2016-12-10 22:23:00    2016-12-10 22:23:00
51225    22766    794    2016-12-10 10:17:00    2016-12-10 10:17:00
51226    22766    709    2016-12-10 17:33:00    2016-12-10 17:33:00
51227    22766    669    2016-12-10 20:32:00    2016-12-10 20:32:00
51228    22767    531    2016-12-10 09:34:00    2016-12-10 09:34:00
51229    22767    487    2016-12-10 14:33:00    2016-12-10 14:33:00
51230    22767    676    2016-12-10 09:41:00    2016-12-10 09:41:00
51231    22767    797    2016-12-10 19:47:00    2016-12-10 19:47:00
51232    22767    607    2016-12-10 05:52:00    2016-12-10 05:52:00
51233    22768    669    2016-12-10 17:43:00    2016-12-10 17:43:00
51234    22768    651    2016-12-10 04:44:00    2016-12-10 04:44:00
51235    22768    913    2016-12-10 10:09:00    2016-12-10 10:09:00
51236    22768    840    2016-12-10 05:53:00    2016-12-10 05:53:00
51237    22768    656    2016-12-10 09:56:00    2016-12-10 09:56:00
51238    22769    507    2016-12-10 18:42:00    2016-12-10 18:42:00
51239    22769    959    2016-12-10 11:40:00    2016-12-10 11:40:00
51240    22769    628    2016-12-10 17:48:00    2016-12-10 17:48:00
51241    22769    528    2016-12-10 15:25:00    2016-12-10 15:25:00
51242    22769    947    2016-12-10 22:51:00    2016-12-10 22:51:00
51243    22770    949    2016-12-10 23:06:00    2016-12-10 23:06:00
51244    22770    587    2016-12-10 18:14:00    2016-12-10 18:14:00
51245    22770    508    2016-12-10 21:53:00    2016-12-10 21:53:00
51246    22770    562    2016-12-10 17:08:00    2016-12-10 17:08:00
51247    22770    706    2016-12-10 15:01:00    2016-12-10 15:01:00
51248    22771    609    2016-12-10 16:50:00    2016-12-10 16:50:00
51249    22771    501    2016-12-10 19:59:00    2016-12-10 19:59:00
51250    22771    937    2016-12-10 10:44:00    2016-12-10 10:44:00
51251    22771    713    2016-12-10 14:02:00    2016-12-10 14:02:00
51252    22771    634    2016-12-10 14:57:00    2016-12-10 14:57:00
51253    22772    575    2016-12-10 08:11:00    2016-12-10 08:11:00
51254    22772    603    2016-12-10 11:50:00    2016-12-10 11:50:00
51255    22772    676    2016-12-10 13:01:00    2016-12-10 13:01:00
51256    22772    791    2016-12-10 01:05:00    2016-12-10 01:05:00
51257    22772    782    2016-12-10 21:23:00    2016-12-10 21:23:00
51258    22773    658    2016-12-10 14:52:00    2016-12-10 14:52:00
51259    22773    557    2016-12-10 09:01:00    2016-12-10 09:01:00
51260    22773    683    2016-12-10 09:24:00    2016-12-10 09:24:00
51261    22773    668    2016-12-10 01:10:00    2016-12-10 01:10:00
51262    22773    477    2016-12-10 17:00:00    2016-12-10 17:00:00
51263    22774    942    2016-12-10 16:29:00    2016-12-10 16:29:00
51264    22774    527    2016-12-10 04:51:00    2016-12-10 04:51:00
51265    22774    590    2016-12-10 18:37:00    2016-12-10 18:37:00
51266    22774    797    2016-12-10 01:14:00    2016-12-10 01:14:00
51267    22774    837    2016-12-10 10:58:00    2016-12-10 10:58:00
51268    22775    891    2016-12-10 07:44:00    2016-12-10 07:44:00
51269    22775    711    2016-12-10 01:50:00    2016-12-10 01:50:00
51270    22775    594    2016-12-10 18:31:00    2016-12-10 18:31:00
51271    22775    525    2016-12-10 17:00:00    2016-12-10 17:00:00
51272    22775    921    2016-12-10 04:33:00    2016-12-10 04:33:00
51273    22776    646    2016-12-10 06:44:00    2016-12-10 06:44:00
51274    22776    787    2016-12-10 23:27:00    2016-12-10 23:27:00
51275    22776    859    2016-12-10 06:40:00    2016-12-10 06:40:00
51276    22776    587    2016-12-10 04:36:00    2016-12-10 04:36:00
51277    22776    616    2016-12-10 05:08:00    2016-12-10 05:08:00
51278    22777    862    2016-12-10 17:55:00    2016-12-10 17:55:00
51279    22777    718    2016-12-10 06:28:00    2016-12-10 06:28:00
51280    22777    565    2016-12-10 11:49:00    2016-12-10 11:49:00
51281    22777    932    2016-12-10 09:22:00    2016-12-10 09:22:00
51282    22777    899    2016-12-10 05:56:00    2016-12-10 05:56:00
51283    22778    825    2016-12-10 01:59:00    2016-12-10 01:59:00
51284    22778    808    2016-12-10 09:30:00    2016-12-10 09:30:00
51285    22778    661    2016-12-10 23:27:00    2016-12-10 23:27:00
51286    22778    692    2016-12-10 19:32:00    2016-12-10 19:32:00
51287    22778    734    2016-12-10 05:18:00    2016-12-10 05:18:00
51288    22779    486    2016-12-10 10:04:00    2016-12-10 10:04:00
51289    22779    514    2016-12-10 06:49:00    2016-12-10 06:49:00
51290    22779    908    2016-12-10 12:59:00    2016-12-10 12:59:00
51291    22779    519    2016-12-10 02:20:00    2016-12-10 02:20:00
51292    22779    560    2016-12-10 02:03:00    2016-12-10 02:03:00
51293    22780    523    2016-12-10 12:55:00    2016-12-10 12:55:00
51294    22780    713    2016-12-10 13:24:00    2016-12-10 13:24:00
51295    22780    787    2016-12-10 04:07:00    2016-12-10 04:07:00
51296    22780    920    2016-12-10 21:43:00    2016-12-10 21:43:00
51297    22780    579    2016-12-10 18:44:00    2016-12-10 18:44:00
51298    22781    919    2016-12-10 17:53:00    2016-12-10 17:53:00
51299    22781    721    2016-12-10 12:53:00    2016-12-10 12:53:00
51300    22781    813    2016-12-10 13:41:00    2016-12-10 13:41:00
51301    22781    886    2016-12-10 17:55:00    2016-12-10 17:55:00
51302    22781    489    2016-12-10 17:59:00    2016-12-10 17:59:00
51303    22782    652    2016-12-10 11:02:00    2016-12-10 11:02:00
51304    22782    863    2016-12-10 21:06:00    2016-12-10 21:06:00
51305    22782    887    2016-12-10 08:02:00    2016-12-10 08:02:00
51306    22782    793    2016-12-10 01:12:00    2016-12-10 01:12:00
51307    22782    882    2016-12-10 13:53:00    2016-12-10 13:53:00
51308    22783    487    2016-12-10 10:14:00    2016-12-10 10:14:00
51309    22783    789    2016-12-10 09:18:00    2016-12-10 09:18:00
51310    22783    925    2016-12-10 12:38:00    2016-12-10 12:38:00
51311    22783    694    2016-12-10 09:23:00    2016-12-10 09:23:00
51312    22783    959    2016-12-10 12:13:00    2016-12-10 12:13:00
51313    22784    608    2016-12-10 03:08:00    2016-12-10 03:08:00
51314    22784    492    2016-12-10 01:13:00    2016-12-10 01:13:00
51315    22784    838    2016-12-10 16:27:00    2016-12-10 16:27:00
51316    22784    705    2016-12-10 16:54:00    2016-12-10 16:54:00
51317    22784    791    2016-12-10 10:51:00    2016-12-10 10:51:00
51318    22785    644    2016-12-10 19:00:00    2016-12-10 19:00:00
51319    22785    960    2016-12-10 08:01:00    2016-12-10 08:01:00
51320    22785    861    2016-12-10 16:28:00    2016-12-10 16:28:00
51321    22785    658    2016-12-10 03:05:00    2016-12-10 03:05:00
51322    22785    873    2016-12-10 06:54:00    2016-12-10 06:54:00
51323    22786    620    2016-12-10 23:23:00    2016-12-10 23:23:00
51324    22786    828    2016-12-10 20:07:00    2016-12-10 20:07:00
51325    22786    727    2016-12-10 22:24:00    2016-12-10 22:24:00
51326    22786    831    2016-12-10 03:36:00    2016-12-10 03:36:00
51327    22786    621    2016-12-10 08:06:00    2016-12-10 08:06:00
51328    22787    742    2016-12-10 09:39:00    2016-12-10 09:39:00
51329    22787    752    2016-12-10 07:04:00    2016-12-10 07:04:00
51330    22787    899    2016-12-10 14:59:00    2016-12-10 14:59:00
51331    22787    483    2016-12-10 02:07:00    2016-12-10 02:07:00
51332    22787    657    2016-12-10 15:23:00    2016-12-10 15:23:00
51333    22788    801    2016-12-10 21:02:00    2016-12-10 21:02:00
51334    22788    734    2016-12-10 02:30:00    2016-12-10 02:30:00
51335    22788    622    2016-12-10 08:30:00    2016-12-10 08:30:00
51336    22788    677    2016-12-10 02:40:00    2016-12-10 02:40:00
51337    22788    863    2016-12-10 06:33:00    2016-12-10 06:33:00
51338    22789    844    2016-12-10 09:56:00    2016-12-10 09:56:00
51339    22789    637    2016-12-10 02:52:00    2016-12-10 02:52:00
51340    22789    949    2016-12-10 22:55:00    2016-12-10 22:55:00
51341    22789    913    2016-12-10 22:11:00    2016-12-10 22:11:00
51342    22789    923    2016-12-10 20:43:00    2016-12-10 20:43:00
51343    22790    581    2016-12-10 15:44:00    2016-12-10 15:44:00
51344    22790    839    2016-12-10 14:04:00    2016-12-10 14:04:00
51345    22790    767    2016-12-10 19:26:00    2016-12-10 19:26:00
51346    22790    512    2016-12-10 02:34:00    2016-12-10 02:34:00
51347    22790    853    2016-12-10 22:28:00    2016-12-10 22:28:00
51348    22791    594    2016-12-10 02:46:00    2016-12-10 02:46:00
51349    22791    664    2016-12-10 18:39:00    2016-12-10 18:39:00
51350    22791    936    2016-12-10 22:37:00    2016-12-10 22:37:00
51351    22791    678    2016-12-10 04:21:00    2016-12-10 04:21:00
51352    22791    738    2016-12-10 23:56:00    2016-12-10 23:56:00
51353    22792    654    2016-12-10 06:06:00    2016-12-10 06:06:00
51354    22792    795    2016-12-10 12:58:00    2016-12-10 12:58:00
51355    22792    680    2016-12-10 21:46:00    2016-12-10 21:46:00
51356    22792    743    2016-12-10 12:27:00    2016-12-10 12:27:00
51357    22792    494    2016-12-10 14:52:00    2016-12-10 14:52:00
51358    22793    957    2016-12-10 15:01:00    2016-12-10 15:01:00
51359    22793    816    2016-12-10 14:22:00    2016-12-10 14:22:00
51360    22793    613    2016-12-10 04:20:00    2016-12-10 04:20:00
51361    22793    956    2016-12-10 05:33:00    2016-12-10 05:33:00
51362    22793    713    2016-12-10 13:40:00    2016-12-10 13:40:00
51363    22794    530    2016-12-10 06:00:00    2016-12-10 06:00:00
51364    22794    806    2016-12-10 18:43:00    2016-12-10 18:43:00
51365    22794    765    2016-12-10 02:17:00    2016-12-10 02:17:00
51366    22794    612    2016-12-10 18:02:00    2016-12-10 18:02:00
51367    22794    676    2016-12-10 08:48:00    2016-12-10 08:48:00
51368    22795    835    2016-12-10 05:14:00    2016-12-10 05:14:00
51369    22795    775    2016-12-10 21:03:00    2016-12-10 21:03:00
51370    22795    715    2016-12-10 12:45:00    2016-12-10 12:45:00
51371    22795    856    2016-12-10 04:22:00    2016-12-10 04:22:00
51372    22795    475    2016-12-10 11:50:00    2016-12-10 11:50:00
51373    22796    559    2016-12-10 23:59:00    2016-12-10 23:59:00
51374    22796    887    2016-12-10 17:28:00    2016-12-10 17:28:00
51375    22796    894    2016-12-10 02:03:00    2016-12-10 02:03:00
51376    22796    600    2016-12-10 19:21:00    2016-12-10 19:21:00
51377    22796    960    2016-12-10 21:04:00    2016-12-10 21:04:00
51378    22797    859    2016-12-10 13:04:00    2016-12-10 13:04:00
51379    22797    579    2016-12-10 09:56:00    2016-12-10 09:56:00
51380    22797    943    2016-12-10 06:05:00    2016-12-10 06:05:00
51381    22797    618    2016-12-10 08:19:00    2016-12-10 08:19:00
51382    22797    509    2016-12-10 17:40:00    2016-12-10 17:40:00
51383    22798    565    2016-12-10 23:41:00    2016-12-10 23:41:00
51384    22798    680    2016-12-10 12:59:00    2016-12-10 12:59:00
51385    22798    660    2016-12-10 09:07:00    2016-12-10 09:07:00
51386    22798    917    2016-12-10 01:28:00    2016-12-10 01:28:00
51387    22798    525    2016-12-10 14:16:00    2016-12-10 14:16:00
51388    22799    927    2016-12-10 16:00:00    2016-12-10 16:00:00
51389    22799    579    2016-12-10 14:14:00    2016-12-10 14:14:00
51390    22799    868    2016-12-10 08:14:00    2016-12-10 08:14:00
51391    22799    826    2016-12-10 19:05:00    2016-12-10 19:05:00
51392    22799    473    2016-12-10 06:40:00    2016-12-10 06:40:00
51393    22800    477    2016-12-10 18:53:00    2016-12-10 18:53:00
51394    22800    644    2016-12-10 03:54:00    2016-12-10 03:54:00
51395    22800    913    2016-12-10 11:05:00    2016-12-10 11:05:00
51396    22800    604    2016-12-10 21:33:00    2016-12-10 21:33:00
51397    22800    514    2016-12-10 16:30:00    2016-12-10 16:30:00
51398    22801    714    2016-12-10 17:35:00    2016-12-10 17:35:00
51399    22801    482    2016-12-10 01:16:00    2016-12-10 01:16:00
51400    22801    945    2016-12-10 18:41:00    2016-12-10 18:41:00
51401    22801    549    2016-12-10 01:48:00    2016-12-10 01:48:00
51402    22801    466    2016-12-10 10:47:00    2016-12-10 10:47:00
51403    22802    880    2016-12-10 14:04:00    2016-12-10 14:04:00
51404    22802    961    2016-12-10 07:24:00    2016-12-10 07:24:00
51405    22802    755    2016-12-10 18:33:00    2016-12-10 18:33:00
51406    22802    776    2016-12-10 14:53:00    2016-12-10 14:53:00
51407    22802    733    2016-12-10 20:25:00    2016-12-10 20:25:00
51408    22803    768    2016-12-10 09:20:00    2016-12-10 09:20:00
51409    22803    712    2016-12-10 19:09:00    2016-12-10 19:09:00
51410    22803    788    2016-12-10 16:27:00    2016-12-10 16:27:00
51411    22803    640    2016-12-10 13:10:00    2016-12-10 13:10:00
51412    22803    847    2016-12-10 17:10:00    2016-12-10 17:10:00
51413    22804    836    2016-12-10 21:38:00    2016-12-10 21:38:00
51414    22804    611    2016-12-10 18:46:00    2016-12-10 18:46:00
51415    22804    634    2016-12-10 10:08:00    2016-12-10 10:08:00
51416    22804    604    2016-12-10 23:37:00    2016-12-10 23:37:00
51417    22804    846    2016-12-10 07:22:00    2016-12-10 07:22:00
51418    22805    726    2016-12-10 18:05:00    2016-12-10 18:05:00
51419    22805    786    2016-12-10 04:23:00    2016-12-10 04:23:00
51420    22805    843    2016-12-10 20:03:00    2016-12-10 20:03:00
51421    22805    740    2016-12-10 06:45:00    2016-12-10 06:45:00
51422    22805    506    2016-12-10 08:33:00    2016-12-10 08:33:00
51423    22806    854    2016-12-10 21:00:00    2016-12-10 21:00:00
51424    22806    853    2016-12-10 18:13:00    2016-12-10 18:13:00
51425    22806    508    2016-12-10 23:11:00    2016-12-10 23:11:00
51426    22806    684    2016-12-10 06:58:00    2016-12-10 06:58:00
51427    22806    737    2016-12-10 07:46:00    2016-12-10 07:46:00
51428    22807    622    2016-12-10 15:05:00    2016-12-10 15:05:00
51429    22807    860    2016-12-10 08:00:00    2016-12-10 08:00:00
51430    22807    765    2016-12-10 21:55:00    2016-12-10 21:55:00
51431    22807    543    2016-12-10 01:30:00    2016-12-10 01:30:00
51432    22807    511    2016-12-10 12:57:00    2016-12-10 12:57:00
51433    22808    734    2016-12-10 13:00:00    2016-12-10 13:00:00
51434    22808    830    2016-12-10 07:33:00    2016-12-10 07:33:00
51435    22808    794    2016-12-10 03:07:00    2016-12-10 03:07:00
51436    22808    628    2016-12-10 18:15:00    2016-12-10 18:15:00
51437    22808    471    2016-12-10 22:02:00    2016-12-10 22:02:00
51438    22809    698    2016-12-10 01:43:00    2016-12-10 01:43:00
51439    22809    909    2016-12-10 23:00:00    2016-12-10 23:00:00
51440    22809    900    2016-12-10 12:10:00    2016-12-10 12:10:00
51441    22809    724    2016-12-10 11:43:00    2016-12-10 11:43:00
51442    22809    959    2016-12-10 09:55:00    2016-12-10 09:55:00
51443    22810    545    2016-12-10 12:00:00    2016-12-10 12:00:00
51444    22810    468    2016-12-10 02:39:00    2016-12-10 02:39:00
51445    22810    488    2016-12-10 07:54:00    2016-12-10 07:54:00
51446    22810    479    2016-12-10 01:13:00    2016-12-10 01:13:00
51447    22810    853    2016-12-10 07:00:00    2016-12-10 07:00:00
51448    22811    587    2016-12-10 12:14:00    2016-12-10 12:14:00
51449    22811    496    2016-12-10 23:44:00    2016-12-10 23:44:00
51450    22811    576    2016-12-10 13:58:00    2016-12-10 13:58:00
51451    22811    679    2016-12-10 04:13:00    2016-12-10 04:13:00
51452    22811    611    2016-12-10 20:21:00    2016-12-10 20:21:00
51453    22812    703    2016-12-10 09:33:00    2016-12-10 09:33:00
51454    22812    764    2016-12-10 19:27:00    2016-12-10 19:27:00
51455    22812    614    2016-12-10 05:52:00    2016-12-10 05:52:00
51456    22812    548    2016-12-10 18:00:00    2016-12-10 18:00:00
51457    22812    743    2016-12-10 04:19:00    2016-12-10 04:19:00
51458    22813    696    2016-12-10 21:09:00    2016-12-10 21:09:00
51459    22813    961    2016-12-10 02:35:00    2016-12-10 02:35:00
51460    22813    777    2016-12-10 21:16:00    2016-12-10 21:16:00
51461    22813    706    2016-12-10 20:09:00    2016-12-10 20:09:00
51462    22813    939    2016-12-10 12:18:00    2016-12-10 12:18:00
51463    22814    614    2016-12-10 20:53:00    2016-12-10 20:53:00
51464    22814    553    2016-12-10 13:48:00    2016-12-10 13:48:00
51465    22814    487    2016-12-10 04:41:00    2016-12-10 04:41:00
51466    22814    512    2016-12-10 13:29:00    2016-12-10 13:29:00
51467    22814    572    2016-12-10 17:29:00    2016-12-10 17:29:00
51468    22815    524    2016-12-10 10:19:00    2016-12-10 10:19:00
51469    22815    812    2016-12-10 16:52:00    2016-12-10 16:52:00
51470    22815    617    2016-12-10 01:46:00    2016-12-10 01:46:00
51471    22815    477    2016-12-10 23:24:00    2016-12-10 23:24:00
51472    22815    670    2016-12-10 10:45:00    2016-12-10 10:45:00
51473    22816    581    2016-12-10 02:20:00    2016-12-10 02:20:00
51474    22816    563    2016-12-10 06:41:00    2016-12-10 06:41:00
51475    22816    863    2016-12-10 09:37:00    2016-12-10 09:37:00
51476    22816    910    2016-12-10 01:58:00    2016-12-10 01:58:00
51477    22816    845    2016-12-10 19:14:00    2016-12-10 19:14:00
51478    22817    611    2016-12-10 17:37:00    2016-12-10 17:37:00
51479    22817    611    2016-12-10 03:02:00    2016-12-10 03:02:00
51480    22817    528    2016-12-10 03:42:00    2016-12-10 03:42:00
51481    22817    727    2016-12-10 03:30:00    2016-12-10 03:30:00
51482    22817    809    2016-12-10 19:34:00    2016-12-10 19:34:00
51483    22818    897    2016-12-10 09:29:00    2016-12-10 09:29:00
51484    22818    609    2016-12-10 15:04:00    2016-12-10 15:04:00
51485    22818    789    2016-12-10 07:06:00    2016-12-10 07:06:00
51486    22818    865    2016-12-10 12:32:00    2016-12-10 12:32:00
51487    22818    631    2016-12-10 11:56:00    2016-12-10 11:56:00
51488    22819    836    2016-12-10 01:41:00    2016-12-10 01:41:00
51489    22819    553    2016-12-10 13:58:00    2016-12-10 13:58:00
51490    22819    484    2016-12-10 08:52:00    2016-12-10 08:52:00
51491    22819    726    2016-12-10 16:17:00    2016-12-10 16:17:00
51492    22819    705    2016-12-10 19:10:00    2016-12-10 19:10:00
51493    22820    728    2016-12-10 15:25:00    2016-12-10 15:25:00
51494    22820    817    2016-12-10 06:14:00    2016-12-10 06:14:00
51495    22820    632    2016-12-10 16:12:00    2016-12-10 16:12:00
51496    22820    549    2016-12-10 17:52:00    2016-12-10 17:52:00
51497    22820    678    2016-12-10 06:37:00    2016-12-10 06:37:00
51498    22821    664    2016-12-10 12:59:00    2016-12-10 12:59:00
51499    22821    900    2016-12-10 23:27:00    2016-12-10 23:27:00
51500    22821    600    2016-12-10 07:01:00    2016-12-10 07:01:00
51501    22821    601    2016-12-10 02:35:00    2016-12-10 02:35:00
51502    22821    566    2016-12-10 20:04:00    2016-12-10 20:04:00
51503    22822    601    2016-12-10 03:38:00    2016-12-10 03:38:00
51504    22822    781    2016-12-10 04:56:00    2016-12-10 04:56:00
51505    22822    903    2016-12-10 12:38:00    2016-12-10 12:38:00
51506    22822    689    2016-12-10 06:08:00    2016-12-10 06:08:00
51507    22822    875    2016-12-10 16:02:00    2016-12-10 16:02:00
51508    22823    550    2016-12-10 21:51:00    2016-12-10 21:51:00
51509    22823    547    2016-12-10 15:09:00    2016-12-10 15:09:00
51510    22823    577    2016-12-10 07:50:00    2016-12-10 07:50:00
51511    22823    792    2016-12-10 20:24:00    2016-12-10 20:24:00
51512    22823    892    2016-12-10 08:15:00    2016-12-10 08:15:00
51513    22824    753    2016-12-10 04:57:00    2016-12-10 04:57:00
51514    22824    745    2016-12-10 02:49:00    2016-12-10 02:49:00
51515    22824    939    2016-12-10 19:15:00    2016-12-10 19:15:00
51516    22824    670    2016-12-10 05:30:00    2016-12-10 05:30:00
51517    22824    517    2016-12-10 21:49:00    2016-12-10 21:49:00
51518    22825    504    2016-12-10 14:11:00    2016-12-10 14:11:00
51519    22825    873    2016-12-10 02:02:00    2016-12-10 02:02:00
51520    22825    915    2016-12-10 07:30:00    2016-12-10 07:30:00
51521    22825    615    2016-12-10 22:47:00    2016-12-10 22:47:00
51522    22825    824    2016-12-10 17:11:00    2016-12-10 17:11:00
51523    22826    749    2016-12-10 22:52:00    2016-12-10 22:52:00
51524    22826    728    2016-12-10 21:58:00    2016-12-10 21:58:00
51525    22826    708    2016-12-10 03:32:00    2016-12-10 03:32:00
51526    22826    882    2016-12-10 17:43:00    2016-12-10 17:43:00
51527    22826    537    2016-12-10 09:51:00    2016-12-10 09:51:00
51528    22827    817    2016-12-10 07:31:00    2016-12-10 07:31:00
51529    22827    813    2016-12-10 16:09:00    2016-12-10 16:09:00
51530    22827    648    2016-12-10 09:57:00    2016-12-10 09:57:00
51531    22827    641    2016-12-10 18:31:00    2016-12-10 18:31:00
51532    22827    740    2016-12-10 20:14:00    2016-12-10 20:14:00
51533    22828    953    2016-12-10 01:07:00    2016-12-10 01:07:00
51534    22828    585    2016-12-10 09:29:00    2016-12-10 09:29:00
51535    22828    628    2016-12-10 15:46:00    2016-12-10 15:46:00
51536    22828    626    2016-12-10 12:08:00    2016-12-10 12:08:00
51537    22828    693    2016-12-10 05:48:00    2016-12-10 05:48:00
51538    22829    685    2016-12-10 20:06:00    2016-12-10 20:06:00
51539    22829    692    2016-12-10 12:38:00    2016-12-10 12:38:00
51540    22829    515    2016-12-10 02:44:00    2016-12-10 02:44:00
51541    22829    723    2016-12-10 22:00:00    2016-12-10 22:00:00
51542    22829    772    2016-12-10 13:18:00    2016-12-10 13:18:00
51543    22830    903    2016-12-10 05:13:00    2016-12-10 05:13:00
51544    22830    872    2016-12-10 16:17:00    2016-12-10 16:17:00
51545    22830    497    2016-12-10 03:26:00    2016-12-10 03:26:00
51546    22830    794    2016-12-10 18:00:00    2016-12-10 18:00:00
51547    22830    691    2016-12-10 02:26:00    2016-12-10 02:26:00
51548    22831    940    2016-12-10 03:49:00    2016-12-10 03:49:00
51549    22831    645    2016-12-10 12:57:00    2016-12-10 12:57:00
51550    22831    723    2016-12-10 21:33:00    2016-12-10 21:33:00
51551    22831    695    2016-12-10 18:03:00    2016-12-10 18:03:00
51552    22831    540    2016-12-10 07:16:00    2016-12-10 07:16:00
51553    22832    863    2016-12-10 19:33:00    2016-12-10 19:33:00
51554    22832    694    2016-12-10 15:47:00    2016-12-10 15:47:00
51555    22832    843    2016-12-10 15:08:00    2016-12-10 15:08:00
51556    22832    554    2016-12-10 18:45:00    2016-12-10 18:45:00
51557    22832    707    2016-12-10 11:00:00    2016-12-10 11:00:00
51558    22833    923    2016-12-10 11:56:00    2016-12-10 11:56:00
51559    22833    590    2016-12-10 02:21:00    2016-12-10 02:21:00
51560    22833    710    2016-12-10 18:40:00    2016-12-10 18:40:00
51561    22833    658    2016-12-10 14:50:00    2016-12-10 14:50:00
51562    22833    688    2016-12-10 03:27:00    2016-12-10 03:27:00
51563    22834    541    2016-12-10 13:03:00    2016-12-10 13:03:00
51564    22834    581    2016-12-10 19:12:00    2016-12-10 19:12:00
51565    22834    844    2016-12-10 22:53:00    2016-12-10 22:53:00
51566    22834    945    2016-12-10 21:43:00    2016-12-10 21:43:00
51567    22834    599    2016-12-10 13:04:00    2016-12-10 13:04:00
51568    22835    557    2016-12-10 13:02:00    2016-12-10 13:02:00
51569    22835    912    2016-12-10 13:47:00    2016-12-10 13:47:00
51570    22835    654    2016-12-10 23:46:00    2016-12-10 23:46:00
51571    22835    591    2016-12-10 22:42:00    2016-12-10 22:42:00
51572    22835    906    2016-12-10 12:19:00    2016-12-10 12:19:00
51573    22836    642    2016-12-10 18:05:00    2016-12-10 18:05:00
51574    22836    746    2016-12-10 10:41:00    2016-12-10 10:41:00
51575    22836    735    2016-12-10 04:00:00    2016-12-10 04:00:00
51576    22836    939    2016-12-10 05:55:00    2016-12-10 05:55:00
51577    22836    874    2016-12-10 11:49:00    2016-12-10 11:49:00
51578    22837    707    2016-12-10 18:43:00    2016-12-10 18:43:00
51579    22837    548    2016-12-10 13:01:00    2016-12-10 13:01:00
51580    22837    641    2016-12-10 01:53:00    2016-12-10 01:53:00
51581    22837    640    2016-12-10 13:56:00    2016-12-10 13:56:00
51582    22837    598    2016-12-10 11:47:00    2016-12-10 11:47:00
51583    22838    891    2016-12-10 02:59:00    2016-12-10 02:59:00
51584    22838    646    2016-12-10 02:46:00    2016-12-10 02:46:00
51585    22838    703    2016-12-10 04:03:00    2016-12-10 04:03:00
51586    22838    611    2016-12-10 06:05:00    2016-12-10 06:05:00
51587    22838    810    2016-12-10 08:03:00    2016-12-10 08:03:00
51588    22839    638    2016-12-10 15:07:00    2016-12-10 15:07:00
51589    22839    852    2016-12-10 11:55:00    2016-12-10 11:55:00
51590    22839    819    2016-12-10 04:46:00    2016-12-10 04:46:00
51591    22839    857    2016-12-10 14:05:00    2016-12-10 14:05:00
51592    22839    711    2016-12-10 03:45:00    2016-12-10 03:45:00
51593    22840    749    2016-12-10 18:43:00    2016-12-10 18:43:00
51594    22840    639    2016-12-10 22:31:00    2016-12-10 22:31:00
51595    22840    680    2016-12-10 18:20:00    2016-12-10 18:20:00
51596    22840    876    2016-12-10 15:58:00    2016-12-10 15:58:00
51597    22840    734    2016-12-10 01:13:00    2016-12-10 01:13:00
51598    22841    631    2016-12-10 02:50:00    2016-12-10 02:50:00
51599    22841    637    2016-12-10 21:58:00    2016-12-10 21:58:00
51600    22841    697    2016-12-10 10:46:00    2016-12-10 10:46:00
51601    22841    716    2016-12-10 04:00:00    2016-12-10 04:00:00
51602    22841    676    2016-12-10 20:23:00    2016-12-10 20:23:00
51603    22842    861    2016-12-10 03:06:00    2016-12-10 03:06:00
51604    22842    640    2016-12-10 21:14:00    2016-12-10 21:14:00
51605    22842    609    2016-12-10 11:42:00    2016-12-10 11:42:00
51606    22842    719    2016-12-10 16:54:00    2016-12-10 16:54:00
51607    22842    893    2016-12-10 18:03:00    2016-12-10 18:03:00
51608    22843    643    2016-12-10 06:06:00    2016-12-10 06:06:00
51609    22843    942    2016-12-10 08:24:00    2016-12-10 08:24:00
51610    22843    583    2016-12-10 15:06:00    2016-12-10 15:06:00
51611    22843    886    2016-12-10 05:19:00    2016-12-10 05:19:00
51612    22843    785    2016-12-10 15:03:00    2016-12-10 15:03:00
51613    22844    718    2016-12-10 05:11:00    2016-12-10 05:11:00
51614    22844    669    2016-12-10 11:03:00    2016-12-10 11:03:00
51615    22844    602    2016-12-10 23:37:00    2016-12-10 23:37:00
51616    22844    485    2016-12-10 12:42:00    2016-12-10 12:42:00
51617    22844    533    2016-12-10 16:23:00    2016-12-10 16:23:00
51618    22845    741    2016-12-10 17:41:00    2016-12-10 17:41:00
51619    22845    613    2016-12-10 11:44:00    2016-12-10 11:44:00
51620    22845    652    2016-12-10 05:30:00    2016-12-10 05:30:00
51621    22845    887    2016-12-10 05:58:00    2016-12-10 05:58:00
51622    22845    924    2016-12-10 02:31:00    2016-12-10 02:31:00
51623    22846    614    2016-12-10 18:42:00    2016-12-10 18:42:00
51624    22846    562    2016-12-10 15:47:00    2016-12-10 15:47:00
51625    22846    927    2016-12-10 19:19:00    2016-12-10 19:19:00
51626    22846    581    2016-12-10 21:23:00    2016-12-10 21:23:00
51627    22846    731    2016-12-10 07:01:00    2016-12-10 07:01:00
51628    22847    725    2016-12-10 08:40:00    2016-12-10 08:40:00
51629    22847    681    2016-12-10 04:59:00    2016-12-10 04:59:00
51630    22847    756    2016-12-10 18:34:00    2016-12-10 18:34:00
51631    22847    633    2016-12-10 23:06:00    2016-12-10 23:06:00
51632    22847    735    2016-12-10 21:10:00    2016-12-10 21:10:00
51633    22848    855    2016-12-10 12:01:00    2016-12-10 12:01:00
51634    22848    664    2016-12-10 16:45:00    2016-12-10 16:45:00
51635    22848    710    2016-12-10 04:13:00    2016-12-10 04:13:00
51636    22848    731    2016-12-10 22:51:00    2016-12-10 22:51:00
51637    22848    468    2016-12-10 16:06:00    2016-12-10 16:06:00
51638    22849    920    2016-12-10 07:00:00    2016-12-10 07:00:00
51639    22849    635    2016-12-10 23:34:00    2016-12-10 23:34:00
51640    22849    866    2016-12-10 07:13:00    2016-12-10 07:13:00
51641    22849    930    2016-12-10 09:33:00    2016-12-10 09:33:00
51642    22849    952    2016-12-10 10:21:00    2016-12-10 10:21:00
51643    22850    613    2016-12-10 02:16:00    2016-12-10 02:16:00
51644    22850    663    2016-12-10 16:27:00    2016-12-10 16:27:00
51645    22850    632    2016-12-10 20:06:00    2016-12-10 20:06:00
51646    22850    473    2016-12-10 18:53:00    2016-12-10 18:53:00
51647    22850    530    2016-12-10 07:53:00    2016-12-10 07:53:00
51648    22851    950    2016-12-10 05:34:00    2016-12-10 05:34:00
51649    22851    908    2016-12-10 03:46:00    2016-12-10 03:46:00
51650    22851    841    2016-12-10 12:34:00    2016-12-10 12:34:00
51651    22851    927    2016-12-10 20:25:00    2016-12-10 20:25:00
51652    22851    637    2016-12-10 15:07:00    2016-12-10 15:07:00
51653    22852    555    2016-12-10 10:37:00    2016-12-10 10:37:00
51654    22852    655    2016-12-10 02:32:00    2016-12-10 02:32:00
51655    22852    658    2016-12-10 10:13:00    2016-12-10 10:13:00
51656    22852    618    2016-12-10 19:27:00    2016-12-10 19:27:00
51657    22852    880    2016-12-10 08:20:00    2016-12-10 08:20:00
51658    22853    610    2016-12-10 17:58:00    2016-12-10 17:58:00
51659    22853    602    2016-12-10 07:49:00    2016-12-10 07:49:00
51660    22853    596    2016-12-10 23:22:00    2016-12-10 23:22:00
51661    22853    797    2016-12-10 08:44:00    2016-12-10 08:44:00
51662    22853    890    2016-12-10 16:43:00    2016-12-10 16:43:00
51663    22854    524    2016-12-10 13:00:00    2016-12-10 13:00:00
51664    22854    908    2016-12-10 01:41:00    2016-12-10 01:41:00
51665    22854    750    2016-12-10 19:52:00    2016-12-10 19:52:00
51666    22854    758    2016-12-10 03:00:00    2016-12-10 03:00:00
51667    22854    635    2016-12-10 07:40:00    2016-12-10 07:40:00
51668    22855    823    2016-12-10 17:20:00    2016-12-10 17:20:00
51669    22855    689    2016-12-10 01:45:00    2016-12-10 01:45:00
51670    22855    676    2016-12-10 23:06:00    2016-12-10 23:06:00
51671    22855    671    2016-12-10 09:02:00    2016-12-10 09:02:00
51672    22855    926    2016-12-10 19:54:00    2016-12-10 19:54:00
51673    22856    548    2016-12-10 13:45:00    2016-12-10 13:45:00
51674    22856    954    2016-12-10 01:31:00    2016-12-10 01:31:00
51675    22856    562    2016-12-10 18:10:00    2016-12-10 18:10:00
51676    22856    465    2016-12-10 10:32:00    2016-12-10 10:32:00
51677    22856    582    2016-12-10 08:13:00    2016-12-10 08:13:00
51678    22857    507    2016-12-11 13:26:00    2016-12-11 13:26:00
51679    22857    610    2016-12-11 21:14:00    2016-12-11 21:14:00
51680    22857    848    2016-12-11 09:02:00    2016-12-11 09:02:00
51681    22857    956    2016-12-11 02:24:00    2016-12-11 02:24:00
51682    22857    515    2016-12-11 23:23:00    2016-12-11 23:23:00
51683    22858    473    2016-12-11 09:31:00    2016-12-11 09:31:00
51684    22858    721    2016-12-11 05:04:00    2016-12-11 05:04:00
51685    22858    850    2016-12-11 13:00:00    2016-12-11 13:00:00
51686    22858    554    2016-12-11 18:52:00    2016-12-11 18:52:00
51687    22858    738    2016-12-11 12:27:00    2016-12-11 12:27:00
51688    22859    479    2016-12-11 13:01:00    2016-12-11 13:01:00
51689    22859    631    2016-12-11 03:07:00    2016-12-11 03:07:00
51690    22859    596    2016-12-11 06:52:00    2016-12-11 06:52:00
51691    22859    543    2016-12-11 21:06:00    2016-12-11 21:06:00
51692    22859    840    2016-12-11 02:45:00    2016-12-11 02:45:00
51693    22860    959    2016-12-11 15:33:00    2016-12-11 15:33:00
51694    22860    841    2016-12-11 23:07:00    2016-12-11 23:07:00
51695    22860    848    2016-12-11 07:25:00    2016-12-11 07:25:00
51696    22860    615    2016-12-11 11:12:00    2016-12-11 11:12:00
51697    22860    960    2016-12-11 06:09:00    2016-12-11 06:09:00
51698    22861    624    2016-12-11 20:24:00    2016-12-11 20:24:00
51699    22861    864    2016-12-11 06:13:00    2016-12-11 06:13:00
51700    22861    587    2016-12-11 08:26:00    2016-12-11 08:26:00
51701    22861    877    2016-12-11 20:59:00    2016-12-11 20:59:00
51702    22861    664    2016-12-11 18:33:00    2016-12-11 18:33:00
51703    22862    536    2016-12-11 04:22:00    2016-12-11 04:22:00
51704    22862    633    2016-12-11 08:50:00    2016-12-11 08:50:00
51705    22862    521    2016-12-11 06:39:00    2016-12-11 06:39:00
51706    22862    715    2016-12-11 02:58:00    2016-12-11 02:58:00
51707    22862    793    2016-12-11 21:59:00    2016-12-11 21:59:00
51708    22863    695    2016-12-11 22:39:00    2016-12-11 22:39:00
51709    22863    945    2016-12-11 02:55:00    2016-12-11 02:55:00
51710    22863    911    2016-12-11 01:42:00    2016-12-11 01:42:00
51711    22863    862    2016-12-11 07:10:00    2016-12-11 07:10:00
51712    22863    857    2016-12-11 16:16:00    2016-12-11 16:16:00
51713    22864    917    2016-12-11 08:48:00    2016-12-11 08:48:00
51714    22864    537    2016-12-11 08:22:00    2016-12-11 08:22:00
51715    22864    598    2016-12-11 08:54:00    2016-12-11 08:54:00
51716    22864    749    2016-12-11 02:03:00    2016-12-11 02:03:00
51717    22864    782    2016-12-11 02:53:00    2016-12-11 02:53:00
51718    22865    753    2016-12-11 05:36:00    2016-12-11 05:36:00
51719    22865    578    2016-12-11 05:18:00    2016-12-11 05:18:00
51720    22865    942    2016-12-11 12:21:00    2016-12-11 12:21:00
51721    22865    539    2016-12-11 15:18:00    2016-12-11 15:18:00
51722    22865    883    2016-12-11 13:50:00    2016-12-11 13:50:00
51723    22866    545    2016-12-11 01:33:00    2016-12-11 01:33:00
51724    22866    892    2016-12-11 01:55:00    2016-12-11 01:55:00
51725    22866    736    2016-12-11 15:50:00    2016-12-11 15:50:00
51726    22866    585    2016-12-11 12:25:00    2016-12-11 12:25:00
51727    22866    818    2016-12-11 08:07:00    2016-12-11 08:07:00
51728    22867    721    2016-12-11 17:43:00    2016-12-11 17:43:00
51729    22867    536    2016-12-11 12:47:00    2016-12-11 12:47:00
51730    22867    836    2016-12-11 03:16:00    2016-12-11 03:16:00
51731    22867    797    2016-12-11 12:09:00    2016-12-11 12:09:00
51732    22867    874    2016-12-11 04:28:00    2016-12-11 04:28:00
51733    22868    872    2016-12-11 20:32:00    2016-12-11 20:32:00
51734    22868    524    2016-12-11 11:18:00    2016-12-11 11:18:00
51735    22868    528    2016-12-11 16:29:00    2016-12-11 16:29:00
51736    22868    805    2016-12-11 16:36:00    2016-12-11 16:36:00
51737    22868    679    2016-12-11 05:01:00    2016-12-11 05:01:00
51738    22869    550    2016-12-11 11:13:00    2016-12-11 11:13:00
51739    22869    510    2016-12-11 23:10:00    2016-12-11 23:10:00
51740    22869    757    2016-12-11 02:40:00    2016-12-11 02:40:00
51741    22869    705    2016-12-11 20:36:00    2016-12-11 20:36:00
51742    22869    551    2016-12-11 20:16:00    2016-12-11 20:16:00
51743    22870    685    2016-12-11 05:37:00    2016-12-11 05:37:00
51744    22870    833    2016-12-11 23:00:00    2016-12-11 23:00:00
51745    22870    721    2016-12-11 19:56:00    2016-12-11 19:56:00
51746    22870    640    2016-12-11 18:17:00    2016-12-11 18:17:00
51747    22870    474    2016-12-11 09:39:00    2016-12-11 09:39:00
51748    22871    704    2016-12-11 05:15:00    2016-12-11 05:15:00
51749    22871    826    2016-12-11 01:17:00    2016-12-11 01:17:00
51750    22871    672    2016-12-11 05:26:00    2016-12-11 05:26:00
51751    22871    863    2016-12-11 12:19:00    2016-12-11 12:19:00
51752    22871    724    2016-12-11 18:23:00    2016-12-11 18:23:00
51753    22872    746    2016-12-11 06:23:00    2016-12-11 06:23:00
51754    22872    662    2016-12-11 20:06:00    2016-12-11 20:06:00
51755    22872    703    2016-12-11 07:58:00    2016-12-11 07:58:00
51756    22872    766    2016-12-11 03:23:00    2016-12-11 03:23:00
51757    22872    605    2016-12-11 07:29:00    2016-12-11 07:29:00
51758    22873    535    2016-12-11 11:59:00    2016-12-11 11:59:00
51759    22873    905    2016-12-11 22:06:00    2016-12-11 22:06:00
51760    22873    752    2016-12-11 21:47:00    2016-12-11 21:47:00
51761    22873    737    2016-12-11 06:40:00    2016-12-11 06:40:00
51762    22873    500    2016-12-11 16:10:00    2016-12-11 16:10:00
51763    22874    956    2016-12-11 17:32:00    2016-12-11 17:32:00
51764    22874    626    2016-12-11 20:58:00    2016-12-11 20:58:00
51765    22874    552    2016-12-11 13:22:00    2016-12-11 13:22:00
51766    22874    660    2016-12-11 14:04:00    2016-12-11 14:04:00
51767    22874    592    2016-12-11 03:02:00    2016-12-11 03:02:00
51768    22875    536    2016-12-11 09:23:00    2016-12-11 09:23:00
51769    22875    722    2016-12-11 02:52:00    2016-12-11 02:52:00
51770    22875    604    2016-12-11 06:29:00    2016-12-11 06:29:00
51771    22875    550    2016-12-11 05:30:00    2016-12-11 05:30:00
51772    22875    872    2016-12-11 10:27:00    2016-12-11 10:27:00
51773    22876    540    2016-12-11 03:42:00    2016-12-11 03:42:00
51774    22876    665    2016-12-11 09:46:00    2016-12-11 09:46:00
51775    22876    470    2016-12-11 02:56:00    2016-12-11 02:56:00
51776    22876    532    2016-12-11 14:54:00    2016-12-11 14:54:00
51777    22876    838    2016-12-11 04:35:00    2016-12-11 04:35:00
51778    22877    778    2016-12-11 17:27:00    2016-12-11 17:27:00
51779    22877    881    2016-12-11 03:10:00    2016-12-11 03:10:00
51780    22877    561    2016-12-11 08:52:00    2016-12-11 08:52:00
51781    22877    772    2016-12-11 04:27:00    2016-12-11 04:27:00
51782    22877    924    2016-12-11 02:05:00    2016-12-11 02:05:00
51783    22878    481    2016-12-11 17:28:00    2016-12-11 17:28:00
51784    22878    555    2016-12-11 10:58:00    2016-12-11 10:58:00
51785    22878    934    2016-12-11 04:42:00    2016-12-11 04:42:00
51786    22878    811    2016-12-11 15:46:00    2016-12-11 15:46:00
51787    22878    911    2016-12-11 17:51:00    2016-12-11 17:51:00
51788    22879    666    2016-12-11 20:32:00    2016-12-11 20:32:00
51789    22879    832    2016-12-11 18:18:00    2016-12-11 18:18:00
51790    22879    607    2016-12-11 20:33:00    2016-12-11 20:33:00
51791    22879    558    2016-12-11 02:49:00    2016-12-11 02:49:00
51792    22879    480    2016-12-11 21:30:00    2016-12-11 21:30:00
51793    22880    608    2016-12-11 12:00:00    2016-12-11 12:00:00
51794    22880    839    2016-12-11 07:11:00    2016-12-11 07:11:00
51795    22880    888    2016-12-11 14:00:00    2016-12-11 14:00:00
51796    22880    837    2016-12-11 04:02:00    2016-12-11 04:02:00
51797    22880    896    2016-12-11 17:24:00    2016-12-11 17:24:00
51798    22881    511    2016-12-11 15:17:00    2016-12-11 15:17:00
51799    22881    484    2016-12-11 08:28:00    2016-12-11 08:28:00
51800    22881    732    2016-12-11 21:25:00    2016-12-11 21:25:00
51801    22881    929    2016-12-11 13:10:00    2016-12-11 13:10:00
51802    22881    898    2016-12-11 23:12:00    2016-12-11 23:12:00
51803    22882    685    2016-12-11 12:42:00    2016-12-11 12:42:00
51804    22882    600    2016-12-11 10:41:00    2016-12-11 10:41:00
51805    22882    805    2016-12-11 17:15:00    2016-12-11 17:15:00
51806    22882    887    2016-12-11 07:05:00    2016-12-11 07:05:00
51807    22882    811    2016-12-11 04:16:00    2016-12-11 04:16:00
51808    22883    694    2016-12-11 14:28:00    2016-12-11 14:28:00
51809    22883    580    2016-12-11 03:52:00    2016-12-11 03:52:00
51810    22883    633    2016-12-11 06:57:00    2016-12-11 06:57:00
51811    22883    648    2016-12-11 03:07:00    2016-12-11 03:07:00
51812    22883    761    2016-12-11 04:10:00    2016-12-11 04:10:00
51813    22884    919    2016-12-11 21:21:00    2016-12-11 21:21:00
51814    22884    873    2016-12-11 07:05:00    2016-12-11 07:05:00
51815    22884    581    2016-12-11 14:55:00    2016-12-11 14:55:00
51816    22884    771    2016-12-11 15:24:00    2016-12-11 15:24:00
51817    22884    651    2016-12-11 23:45:00    2016-12-11 23:45:00
51818    22885    714    2016-12-11 16:41:00    2016-12-11 16:41:00
51819    22885    531    2016-12-11 02:02:00    2016-12-11 02:02:00
51820    22885    777    2016-12-11 16:32:00    2016-12-11 16:32:00
51821    22885    874    2016-12-11 18:22:00    2016-12-11 18:22:00
51822    22885    746    2016-12-11 13:34:00    2016-12-11 13:34:00
51823    22886    666    2016-12-11 14:50:00    2016-12-11 14:50:00
51824    22886    590    2016-12-11 22:54:00    2016-12-11 22:54:00
51825    22886    479    2016-12-11 18:33:00    2016-12-11 18:33:00
51826    22886    719    2016-12-11 14:31:00    2016-12-11 14:31:00
51827    22886    885    2016-12-11 08:25:00    2016-12-11 08:25:00
51828    22887    583    2016-12-11 15:06:00    2016-12-11 15:06:00
51829    22887    935    2016-12-11 19:46:00    2016-12-11 19:46:00
51830    22887    793    2016-12-11 11:59:00    2016-12-11 11:59:00
51831    22887    737    2016-12-11 20:46:00    2016-12-11 20:46:00
51832    22887    788    2016-12-11 19:22:00    2016-12-11 19:22:00
51833    22888    541    2016-12-11 21:40:00    2016-12-11 21:40:00
51834    22888    784    2016-12-11 04:52:00    2016-12-11 04:52:00
51835    22888    877    2016-12-11 19:31:00    2016-12-11 19:31:00
51836    22888    675    2016-12-11 23:10:00    2016-12-11 23:10:00
51837    22888    468    2016-12-11 01:28:00    2016-12-11 01:28:00
51838    22889    944    2016-12-11 15:56:00    2016-12-11 15:56:00
51839    22889    541    2016-12-11 17:49:00    2016-12-11 17:49:00
51840    22889    731    2016-12-11 01:56:00    2016-12-11 01:56:00
51841    22889    467    2016-12-11 17:52:00    2016-12-11 17:52:00
51842    22889    890    2016-12-11 15:02:00    2016-12-11 15:02:00
51843    22890    526    2016-12-11 08:24:00    2016-12-11 08:24:00
51844    22890    729    2016-12-11 19:47:00    2016-12-11 19:47:00
51845    22890    863    2016-12-11 07:37:00    2016-12-11 07:37:00
51846    22890    715    2016-12-11 03:31:00    2016-12-11 03:31:00
51847    22890    464    2016-12-11 06:58:00    2016-12-11 06:58:00
51848    22891    839    2016-12-12 08:30:00    2016-12-12 08:30:00
51849    22891    498    2016-12-12 23:20:00    2016-12-12 23:20:00
51850    22891    792    2016-12-12 01:40:00    2016-12-12 01:40:00
51851    22891    851    2016-12-12 20:42:00    2016-12-12 20:42:00
51852    22891    752    2016-12-12 08:39:00    2016-12-12 08:39:00
51853    22892    583    2016-12-12 01:39:00    2016-12-12 01:39:00
51854    22892    883    2016-12-12 22:23:00    2016-12-12 22:23:00
51855    22892    645    2016-12-12 17:46:00    2016-12-12 17:46:00
51856    22892    469    2016-12-12 01:54:00    2016-12-12 01:54:00
51857    22892    617    2016-12-12 18:51:00    2016-12-12 18:51:00
51858    22893    886    2016-12-12 20:46:00    2016-12-12 20:46:00
51859    22893    597    2016-12-12 01:05:00    2016-12-12 01:05:00
51860    22893    530    2016-12-12 05:21:00    2016-12-12 05:21:00
51861    22893    551    2016-12-12 11:59:00    2016-12-12 11:59:00
51862    22893    480    2016-12-12 07:32:00    2016-12-12 07:32:00
51863    22894    900    2016-12-12 22:52:00    2016-12-12 22:52:00
51864    22894    518    2016-12-12 05:55:00    2016-12-12 05:55:00
51865    22894    805    2016-12-12 01:24:00    2016-12-12 01:24:00
51866    22894    654    2016-12-12 06:20:00    2016-12-12 06:20:00
51867    22894    721    2016-12-12 05:00:00    2016-12-12 05:00:00
51868    22895    616    2016-12-12 21:35:00    2016-12-12 21:35:00
51869    22895    610    2016-12-12 06:22:00    2016-12-12 06:22:00
51870    22895    683    2016-12-12 15:42:00    2016-12-12 15:42:00
51871    22895    691    2016-12-12 05:24:00    2016-12-12 05:24:00
51872    22895    958    2016-12-12 09:01:00    2016-12-12 09:01:00
51873    22896    617    2016-12-12 20:49:00    2016-12-12 20:49:00
51874    22896    655    2016-12-12 09:45:00    2016-12-12 09:45:00
51875    22896    726    2016-12-12 16:25:00    2016-12-12 16:25:00
51876    22896    926    2016-12-12 06:28:00    2016-12-12 06:28:00
51877    22896    831    2016-12-12 09:33:00    2016-12-12 09:33:00
51878    22897    917    2016-12-12 13:53:00    2016-12-12 13:53:00
51879    22897    806    2016-12-12 02:31:00    2016-12-12 02:31:00
51880    22897    642    2016-12-12 10:20:00    2016-12-12 10:20:00
51881    22897    669    2016-12-12 01:30:00    2016-12-12 01:30:00
51882    22897    544    2016-12-12 13:52:00    2016-12-12 13:52:00
51883    22898    588    2016-12-12 11:21:00    2016-12-12 11:21:00
51884    22898    912    2016-12-12 05:53:00    2016-12-12 05:53:00
51885    22898    523    2016-12-12 05:39:00    2016-12-12 05:39:00
51886    22898    537    2016-12-12 20:29:00    2016-12-12 20:29:00
51887    22898    866    2016-12-12 05:07:00    2016-12-12 05:07:00
51888    22899    769    2016-12-12 21:39:00    2016-12-12 21:39:00
51889    22899    777    2016-12-12 02:10:00    2016-12-12 02:10:00
51890    22899    536    2016-12-12 13:15:00    2016-12-12 13:15:00
51891    22899    591    2016-12-12 20:05:00    2016-12-12 20:05:00
51892    22899    871    2016-12-12 21:40:00    2016-12-12 21:40:00
51893    22900    464    2016-12-12 17:15:00    2016-12-12 17:15:00
51894    22900    898    2016-12-12 07:23:00    2016-12-12 07:23:00
51895    22900    809    2016-12-12 11:21:00    2016-12-12 11:21:00
51896    22900    586    2016-12-12 22:22:00    2016-12-12 22:22:00
51897    22900    896    2016-12-12 14:50:00    2016-12-12 14:50:00
51898    22901    785    2016-12-12 02:33:00    2016-12-12 02:33:00
51899    22901    820    2016-12-12 13:24:00    2016-12-12 13:24:00
51900    22901    719    2016-12-12 17:57:00    2016-12-12 17:57:00
51901    22901    843    2016-12-12 22:59:00    2016-12-12 22:59:00
51902    22901    474    2016-12-12 03:51:00    2016-12-12 03:51:00
51903    22902    758    2016-12-12 17:55:00    2016-12-12 17:55:00
51904    22902    707    2016-12-12 14:01:00    2016-12-12 14:01:00
51905    22902    510    2016-12-12 03:41:00    2016-12-12 03:41:00
51906    22902    801    2016-12-12 13:28:00    2016-12-12 13:28:00
51907    22902    882    2016-12-12 10:55:00    2016-12-12 10:55:00
51908    22903    524    2016-12-12 18:23:00    2016-12-12 18:23:00
51909    22903    470    2016-12-12 19:00:00    2016-12-12 19:00:00
51910    22903    609    2016-12-12 12:47:00    2016-12-12 12:47:00
51911    22903    770    2016-12-12 02:50:00    2016-12-12 02:50:00
51912    22903    710    2016-12-12 20:22:00    2016-12-12 20:22:00
51913    22904    910    2016-12-12 23:21:00    2016-12-12 23:21:00
51914    22904    702    2016-12-12 07:05:00    2016-12-12 07:05:00
51915    22904    693    2016-12-12 22:49:00    2016-12-12 22:49:00
51916    22904    495    2016-12-12 09:25:00    2016-12-12 09:25:00
51917    22904    738    2016-12-12 22:50:00    2016-12-12 22:50:00
51918    22905    894    2016-12-12 12:01:00    2016-12-12 12:01:00
51919    22905    766    2016-12-12 19:03:00    2016-12-12 19:03:00
51920    22905    912    2016-12-12 20:11:00    2016-12-12 20:11:00
51921    22905    687    2016-12-12 21:44:00    2016-12-12 21:44:00
51922    22905    662    2016-12-12 02:45:00    2016-12-12 02:45:00
51923    22906    535    2016-12-12 09:21:00    2016-12-12 09:21:00
51924    22906    557    2016-12-12 17:24:00    2016-12-12 17:24:00
51925    22906    953    2016-12-12 23:07:00    2016-12-12 23:07:00
51926    22906    935    2016-12-12 20:35:00    2016-12-12 20:35:00
51927    22906    924    2016-12-12 16:00:00    2016-12-12 16:00:00
51928    22907    466    2016-12-12 08:36:00    2016-12-12 08:36:00
51929    22907    584    2016-12-12 23:48:00    2016-12-12 23:48:00
51930    22907    789    2016-12-12 20:02:00    2016-12-12 20:02:00
51931    22907    467    2016-12-12 03:32:00    2016-12-12 03:32:00
51932    22907    729    2016-12-12 23:23:00    2016-12-12 23:23:00
51933    22908    664    2016-12-12 09:44:00    2016-12-12 09:44:00
51934    22908    657    2016-12-12 06:33:00    2016-12-12 06:33:00
51935    22908    702    2016-12-12 11:25:00    2016-12-12 11:25:00
51936    22908    872    2016-12-12 04:51:00    2016-12-12 04:51:00
51937    22908    698    2016-12-12 05:00:00    2016-12-12 05:00:00
51938    22909    809    2016-12-12 08:25:00    2016-12-12 08:25:00
51939    22909    481    2016-12-12 22:42:00    2016-12-12 22:42:00
51940    22909    713    2016-12-12 20:56:00    2016-12-12 20:56:00
51941    22909    742    2016-12-12 21:41:00    2016-12-12 21:41:00
51942    22909    826    2016-12-12 01:52:00    2016-12-12 01:52:00
51943    22910    787    2016-12-12 04:45:00    2016-12-12 04:45:00
51944    22910    892    2016-12-12 05:35:00    2016-12-12 05:35:00
51945    22910    547    2016-12-12 04:56:00    2016-12-12 04:56:00
51946    22910    702    2016-12-12 21:40:00    2016-12-12 21:40:00
51947    22910    726    2016-12-12 03:38:00    2016-12-12 03:38:00
51948    22911    836    2016-12-12 15:53:00    2016-12-12 15:53:00
51949    22911    811    2016-12-12 08:56:00    2016-12-12 08:56:00
51950    22911    663    2016-12-12 03:59:00    2016-12-12 03:59:00
51951    22911    957    2016-12-12 03:37:00    2016-12-12 03:37:00
51952    22911    468    2016-12-12 11:26:00    2016-12-12 11:26:00
51953    22912    687    2016-12-12 19:09:00    2016-12-12 19:09:00
51954    22912    591    2016-12-12 14:16:00    2016-12-12 14:16:00
51955    22912    468    2016-12-12 09:40:00    2016-12-12 09:40:00
51956    22912    643    2016-12-12 07:27:00    2016-12-12 07:27:00
51957    22912    615    2016-12-12 15:36:00    2016-12-12 15:36:00
51958    22913    853    2016-12-12 15:02:00    2016-12-12 15:02:00
51959    22913    526    2016-12-12 22:20:00    2016-12-12 22:20:00
51960    22913    468    2016-12-12 22:33:00    2016-12-12 22:33:00
51961    22913    473    2016-12-12 06:00:00    2016-12-12 06:00:00
51962    22913    484    2016-12-12 06:06:00    2016-12-12 06:06:00
51963    22914    932    2016-12-12 20:43:00    2016-12-12 20:43:00
51964    22914    939    2016-12-12 07:50:00    2016-12-12 07:50:00
51965    22914    531    2016-12-12 17:36:00    2016-12-12 17:36:00
51966    22914    855    2016-12-12 23:11:00    2016-12-12 23:11:00
51967    22914    716    2016-12-12 09:49:00    2016-12-12 09:49:00
51968    22915    770    2016-12-12 05:41:00    2016-12-12 05:41:00
51969    22915    706    2016-12-12 20:39:00    2016-12-12 20:39:00
51970    22915    657    2016-12-12 16:33:00    2016-12-12 16:33:00
51971    22915    738    2016-12-12 17:33:00    2016-12-12 17:33:00
51972    22915    624    2016-12-12 12:24:00    2016-12-12 12:24:00
51973    22916    569    2016-12-12 07:41:00    2016-12-12 07:41:00
51974    22916    585    2016-12-12 23:34:00    2016-12-12 23:34:00
51975    22916    816    2016-12-12 10:36:00    2016-12-12 10:36:00
51976    22916    596    2016-12-12 04:36:00    2016-12-12 04:36:00
51977    22916    869    2016-12-12 12:14:00    2016-12-12 12:14:00
51978    22917    617    2016-12-12 22:06:00    2016-12-12 22:06:00
51979    22917    936    2016-12-12 04:43:00    2016-12-12 04:43:00
51980    22917    545    2016-12-12 20:30:00    2016-12-12 20:30:00
51981    22917    760    2016-12-12 13:09:00    2016-12-12 13:09:00
51982    22917    753    2016-12-12 07:29:00    2016-12-12 07:29:00
51983    22918    934    2016-12-13 19:40:00    2016-12-13 19:40:00
51984    22918    469    2016-12-13 18:27:00    2016-12-13 18:27:00
51985    22918    847    2016-12-13 03:37:00    2016-12-13 03:37:00
51986    22918    615    2016-12-13 03:17:00    2016-12-13 03:17:00
51987    22918    571    2016-12-13 21:00:00    2016-12-13 21:00:00
51988    22919    770    2016-12-13 18:02:00    2016-12-13 18:02:00
51989    22919    504    2016-12-13 21:16:00    2016-12-13 21:16:00
51990    22919    928    2016-12-13 19:29:00    2016-12-13 19:29:00
51991    22919    733    2016-12-13 22:58:00    2016-12-13 22:58:00
51992    22919    541    2016-12-13 16:12:00    2016-12-13 16:12:00
51993    22920    629    2016-12-13 10:43:00    2016-12-13 10:43:00
51994    22920    670    2016-12-13 10:47:00    2016-12-13 10:47:00
51995    22920    549    2016-12-13 04:37:00    2016-12-13 04:37:00
51996    22920    599    2016-12-13 10:36:00    2016-12-13 10:36:00
51997    22920    761    2016-12-13 02:49:00    2016-12-13 02:49:00
51998    22921    948    2016-12-13 18:40:00    2016-12-13 18:40:00
51999    22921    678    2016-12-13 07:10:00    2016-12-13 07:10:00
52000    22921    699    2016-12-13 23:33:00    2016-12-13 23:33:00
52001    22921    754    2016-12-13 09:47:00    2016-12-13 09:47:00
52002    22921    482    2016-12-13 21:01:00    2016-12-13 21:01:00
52003    22922    675    2016-12-13 04:14:00    2016-12-13 04:14:00
52004    22922    737    2016-12-13 02:00:00    2016-12-13 02:00:00
52005    22922    659    2016-12-13 21:02:00    2016-12-13 21:02:00
52006    22922    667    2016-12-13 11:40:00    2016-12-13 11:40:00
52007    22922    933    2016-12-13 12:38:00    2016-12-13 12:38:00
52008    22923    687    2016-12-13 04:25:00    2016-12-13 04:25:00
52009    22923    881    2016-12-13 23:01:00    2016-12-13 23:01:00
52010    22923    514    2016-12-13 04:49:00    2016-12-13 04:49:00
52011    22923    921    2016-12-13 20:52:00    2016-12-13 20:52:00
52012    22923    746    2016-12-13 11:33:00    2016-12-13 11:33:00
52013    22924    734    2016-12-13 06:57:00    2016-12-13 06:57:00
52014    22924    649    2016-12-13 17:59:00    2016-12-13 17:59:00
52015    22924    496    2016-12-13 03:45:00    2016-12-13 03:45:00
52016    22924    749    2016-12-13 15:19:00    2016-12-13 15:19:00
52017    22924    753    2016-12-13 06:51:00    2016-12-13 06:51:00
52018    22925    937    2016-12-13 15:56:00    2016-12-13 15:56:00
52019    22925    736    2016-12-13 18:46:00    2016-12-13 18:46:00
52020    22925    869    2016-12-13 12:24:00    2016-12-13 12:24:00
52021    22925    474    2016-12-13 01:45:00    2016-12-13 01:45:00
52022    22925    845    2016-12-13 17:57:00    2016-12-13 17:57:00
52023    22926    614    2016-12-13 20:39:00    2016-12-13 20:39:00
52024    22926    876    2016-12-13 04:51:00    2016-12-13 04:51:00
52025    22926    946    2016-12-13 07:34:00    2016-12-13 07:34:00
52026    22926    740    2016-12-13 10:16:00    2016-12-13 10:16:00
52027    22926    959    2016-12-13 18:05:00    2016-12-13 18:05:00
52028    22927    533    2016-12-13 22:13:00    2016-12-13 22:13:00
52029    22927    788    2016-12-13 04:56:00    2016-12-13 04:56:00
52030    22927    736    2016-12-13 16:17:00    2016-12-13 16:17:00
52031    22927    502    2016-12-13 18:37:00    2016-12-13 18:37:00
52032    22927    494    2016-12-13 18:18:00    2016-12-13 18:18:00
52033    22928    925    2016-12-13 18:19:00    2016-12-13 18:19:00
52034    22928    854    2016-12-13 04:48:00    2016-12-13 04:48:00
52035    22928    818    2016-12-13 20:49:00    2016-12-13 20:49:00
52036    22928    555    2016-12-13 11:27:00    2016-12-13 11:27:00
52037    22928    690    2016-12-13 21:03:00    2016-12-13 21:03:00
52038    22929    728    2016-12-13 08:48:00    2016-12-13 08:48:00
52039    22929    502    2016-12-13 08:41:00    2016-12-13 08:41:00
52040    22929    532    2016-12-13 09:08:00    2016-12-13 09:08:00
52041    22929    702    2016-12-13 06:49:00    2016-12-13 06:49:00
52042    22929    752    2016-12-13 03:13:00    2016-12-13 03:13:00
52043    22930    620    2016-12-13 08:05:00    2016-12-13 08:05:00
52044    22930    877    2016-12-13 10:23:00    2016-12-13 10:23:00
52045    22930    919    2016-12-13 20:03:00    2016-12-13 20:03:00
52046    22930    499    2016-12-13 22:29:00    2016-12-13 22:29:00
52047    22930    501    2016-12-13 07:36:00    2016-12-13 07:36:00
52048    22931    709    2016-12-13 20:06:00    2016-12-13 20:06:00
52049    22931    507    2016-12-13 17:12:00    2016-12-13 17:12:00
52050    22931    934    2016-12-13 08:39:00    2016-12-13 08:39:00
52051    22931    714    2016-12-13 15:55:00    2016-12-13 15:55:00
52052    22931    687    2016-12-13 08:51:00    2016-12-13 08:51:00
52053    22932    721    2016-12-13 06:17:00    2016-12-13 06:17:00
52054    22932    840    2016-12-13 22:03:00    2016-12-13 22:03:00
52055    22932    847    2016-12-13 08:21:00    2016-12-13 08:21:00
52056    22932    635    2016-12-13 17:07:00    2016-12-13 17:07:00
52057    22932    911    2016-12-13 03:00:00    2016-12-13 03:00:00
52058    22933    484    2016-12-13 09:21:00    2016-12-13 09:21:00
52059    22933    897    2016-12-13 02:05:00    2016-12-13 02:05:00
52060    22933    885    2016-12-13 12:20:00    2016-12-13 12:20:00
52061    22933    537    2016-12-13 08:43:00    2016-12-13 08:43:00
52062    22933    693    2016-12-13 15:20:00    2016-12-13 15:20:00
52063    22934    699    2016-12-13 22:13:00    2016-12-13 22:13:00
52064    22934    886    2016-12-13 18:18:00    2016-12-13 18:18:00
52065    22934    510    2016-12-13 11:27:00    2016-12-13 11:27:00
52066    22934    829    2016-12-13 04:56:00    2016-12-13 04:56:00
52067    22934    618    2016-12-13 20:45:00    2016-12-13 20:45:00
52068    22935    928    2016-12-13 05:22:00    2016-12-13 05:22:00
52069    22935    566    2016-12-13 22:48:00    2016-12-13 22:48:00
52070    22935    927    2016-12-13 06:01:00    2016-12-13 06:01:00
52071    22935    477    2016-12-13 10:47:00    2016-12-13 10:47:00
52072    22935    653    2016-12-13 09:24:00    2016-12-13 09:24:00
52073    22936    506    2016-12-13 04:32:00    2016-12-13 04:32:00
52074    22936    803    2016-12-13 05:00:00    2016-12-13 05:00:00
52075    22936    863    2016-12-13 01:24:00    2016-12-13 01:24:00
52076    22936    931    2016-12-13 21:46:00    2016-12-13 21:46:00
52077    22936    595    2016-12-13 15:10:00    2016-12-13 15:10:00
52078    22937    781    2016-12-13 06:00:00    2016-12-13 06:00:00
52079    22937    761    2016-12-13 01:17:00    2016-12-13 01:17:00
52080    22937    630    2016-12-13 21:23:00    2016-12-13 21:23:00
52081    22937    842    2016-12-13 15:35:00    2016-12-13 15:35:00
52082    22937    640    2016-12-13 02:11:00    2016-12-13 02:11:00
52083    22938    793    2016-12-13 17:13:00    2016-12-13 17:13:00
52084    22938    815    2016-12-13 05:32:00    2016-12-13 05:32:00
52085    22938    835    2016-12-13 06:20:00    2016-12-13 06:20:00
52086    22938    953    2016-12-13 15:25:00    2016-12-13 15:25:00
52087    22938    499    2016-12-13 04:19:00    2016-12-13 04:19:00
52088    22939    487    2016-12-13 14:48:00    2016-12-13 14:48:00
52089    22939    785    2016-12-13 17:56:00    2016-12-13 17:56:00
52090    22939    822    2016-12-13 01:05:00    2016-12-13 01:05:00
52091    22939    471    2016-12-13 08:10:00    2016-12-13 08:10:00
52092    22939    930    2016-12-13 17:37:00    2016-12-13 17:37:00
52093    22940    744    2016-12-13 09:49:00    2016-12-13 09:49:00
52094    22940    681    2016-12-13 18:35:00    2016-12-13 18:35:00
52095    22940    530    2016-12-13 18:11:00    2016-12-13 18:11:00
52096    22940    627    2016-12-13 02:13:00    2016-12-13 02:13:00
52097    22940    933    2016-12-13 14:30:00    2016-12-13 14:30:00
52098    22941    721    2016-12-13 16:16:00    2016-12-13 16:16:00
52099    22941    479    2016-12-13 09:42:00    2016-12-13 09:42:00
52100    22941    756    2016-12-13 14:35:00    2016-12-13 14:35:00
52101    22941    482    2016-12-13 20:07:00    2016-12-13 20:07:00
52102    22941    900    2016-12-13 06:29:00    2016-12-13 06:29:00
52103    22942    691    2016-12-13 15:36:00    2016-12-13 15:36:00
52104    22942    649    2016-12-13 18:46:00    2016-12-13 18:46:00
52105    22942    496    2016-12-13 01:09:00    2016-12-13 01:09:00
52106    22942    753    2016-12-13 18:32:00    2016-12-13 18:32:00
52107    22942    854    2016-12-13 13:33:00    2016-12-13 13:33:00
52108    22943    662    2016-12-13 04:28:00    2016-12-13 04:28:00
52109    22943    787    2016-12-13 22:47:00    2016-12-13 22:47:00
52110    22943    628    2016-12-13 15:25:00    2016-12-13 15:25:00
52111    22943    592    2016-12-13 07:58:00    2016-12-13 07:58:00
52112    22943    716    2016-12-13 02:31:00    2016-12-13 02:31:00
52113    22944    511    2016-12-13 20:32:00    2016-12-13 20:32:00
52114    22944    785    2016-12-13 19:10:00    2016-12-13 19:10:00
52115    22944    507    2016-12-13 12:17:00    2016-12-13 12:17:00
52116    22944    894    2016-12-13 06:02:00    2016-12-13 06:02:00
52117    22944    674    2016-12-13 16:17:00    2016-12-13 16:17:00
52118    22945    556    2016-12-13 12:23:00    2016-12-13 12:23:00
52119    22945    707    2016-12-13 11:44:00    2016-12-13 11:44:00
52120    22945    507    2016-12-13 11:19:00    2016-12-13 11:19:00
52121    22945    525    2016-12-13 21:47:00    2016-12-13 21:47:00
52122    22945    476    2016-12-13 02:18:00    2016-12-13 02:18:00
52123    22946    714    2016-12-13 19:53:00    2016-12-13 19:53:00
52124    22946    628    2016-12-13 22:03:00    2016-12-13 22:03:00
52125    22946    929    2016-12-13 08:21:00    2016-12-13 08:21:00
52126    22946    695    2016-12-13 02:44:00    2016-12-13 02:44:00
52127    22946    802    2016-12-13 13:44:00    2016-12-13 13:44:00
52128    22947    776    2016-12-13 14:18:00    2016-12-13 14:18:00
52129    22947    960    2016-12-13 04:35:00    2016-12-13 04:35:00
52130    22947    572    2016-12-13 17:07:00    2016-12-13 17:07:00
52131    22947    743    2016-12-13 14:16:00    2016-12-13 14:16:00
52132    22947    680    2016-12-13 12:22:00    2016-12-13 12:22:00
52133    22948    693    2016-12-13 08:13:00    2016-12-13 08:13:00
52134    22948    681    2016-12-13 09:37:00    2016-12-13 09:37:00
52135    22948    937    2016-12-13 12:26:00    2016-12-13 12:26:00
52136    22948    701    2016-12-13 11:10:00    2016-12-13 11:10:00
52137    22948    633    2016-12-13 17:33:00    2016-12-13 17:33:00
52138    22949    563    2016-12-13 14:03:00    2016-12-13 14:03:00
52139    22949    739    2016-12-13 15:59:00    2016-12-13 15:59:00
52140    22949    705    2016-12-13 09:22:00    2016-12-13 09:22:00
52141    22949    879    2016-12-13 17:49:00    2016-12-13 17:49:00
52142    22949    715    2016-12-13 14:48:00    2016-12-13 14:48:00
52143    22950    955    2016-12-13 11:59:00    2016-12-13 11:59:00
52144    22950    712    2016-12-13 08:15:00    2016-12-13 08:15:00
52145    22950    466    2016-12-13 23:19:00    2016-12-13 23:19:00
52146    22950    781    2016-12-13 19:24:00    2016-12-13 19:24:00
52147    22950    664    2016-12-13 03:04:00    2016-12-13 03:04:00
52148    22951    643    2016-12-13 20:23:00    2016-12-13 20:23:00
52149    22951    675    2016-12-13 04:31:00    2016-12-13 04:31:00
52150    22951    480    2016-12-13 09:58:00    2016-12-13 09:58:00
52151    22951    906    2016-12-13 01:09:00    2016-12-13 01:09:00
52152    22951    468    2016-12-13 20:29:00    2016-12-13 20:29:00
52153    22952    788    2016-12-13 02:20:00    2016-12-13 02:20:00
52154    22952    658    2016-12-13 08:08:00    2016-12-13 08:08:00
52155    22952    682    2016-12-13 21:54:00    2016-12-13 21:54:00
52156    22952    841    2016-12-13 21:46:00    2016-12-13 21:46:00
52157    22952    749    2016-12-13 19:56:00    2016-12-13 19:56:00
52158    22953    749    2016-12-13 01:40:00    2016-12-13 01:40:00
52159    22953    840    2016-12-13 09:29:00    2016-12-13 09:29:00
52160    22953    826    2016-12-13 07:27:00    2016-12-13 07:27:00
52161    22953    658    2016-12-13 13:18:00    2016-12-13 13:18:00
52162    22953    750    2016-12-13 09:20:00    2016-12-13 09:20:00
52163    22954    808    2016-12-13 17:12:00    2016-12-13 17:12:00
52164    22954    914    2016-12-13 03:11:00    2016-12-13 03:11:00
52165    22954    475    2016-12-13 13:40:00    2016-12-13 13:40:00
52166    22954    836    2016-12-13 22:47:00    2016-12-13 22:47:00
52167    22954    892    2016-12-13 03:01:00    2016-12-13 03:01:00
52168    22955    875    2016-12-13 13:14:00    2016-12-13 13:14:00
52169    22955    849    2016-12-13 06:37:00    2016-12-13 06:37:00
52170    22955    620    2016-12-13 22:19:00    2016-12-13 22:19:00
52171    22955    850    2016-12-13 07:18:00    2016-12-13 07:18:00
52172    22955    898    2016-12-13 09:50:00    2016-12-13 09:50:00
52173    22956    883    2016-12-13 18:47:00    2016-12-13 18:47:00
52174    22956    759    2016-12-13 21:57:00    2016-12-13 21:57:00
52175    22956    521    2016-12-13 19:27:00    2016-12-13 19:27:00
52176    22956    473    2016-12-13 11:21:00    2016-12-13 11:21:00
52177    22956    778    2016-12-13 03:04:00    2016-12-13 03:04:00
52178    22957    493    2016-12-13 05:20:00    2016-12-13 05:20:00
52179    22957    855    2016-12-13 09:36:00    2016-12-13 09:36:00
52180    22957    726    2016-12-13 03:58:00    2016-12-13 03:58:00
52181    22957    927    2016-12-13 11:33:00    2016-12-13 11:33:00
52182    22957    896    2016-12-13 08:05:00    2016-12-13 08:05:00
52183    22958    871    2016-12-13 22:00:00    2016-12-13 22:00:00
52184    22958    531    2016-12-13 18:23:00    2016-12-13 18:23:00
52185    22958    771    2016-12-13 08:21:00    2016-12-13 08:21:00
52186    22958    773    2016-12-13 18:10:00    2016-12-13 18:10:00
52187    22958    716    2016-12-13 11:04:00    2016-12-13 11:04:00
52188    22959    825    2016-12-13 14:11:00    2016-12-13 14:11:00
52189    22959    860    2016-12-13 06:45:00    2016-12-13 06:45:00
52190    22959    751    2016-12-13 08:23:00    2016-12-13 08:23:00
52191    22959    893    2016-12-13 18:57:00    2016-12-13 18:57:00
52192    22959    507    2016-12-13 21:43:00    2016-12-13 21:43:00
52193    22960    557    2016-12-13 19:21:00    2016-12-13 19:21:00
52194    22960    862    2016-12-13 23:15:00    2016-12-13 23:15:00
52195    22960    487    2016-12-13 02:04:00    2016-12-13 02:04:00
52196    22960    684    2016-12-13 13:35:00    2016-12-13 13:35:00
52197    22960    513    2016-12-13 14:49:00    2016-12-13 14:49:00
52198    22961    819    2016-12-13 18:16:00    2016-12-13 18:16:00
52199    22961    541    2016-12-13 10:16:00    2016-12-13 10:16:00
52200    22961    784    2016-12-13 20:51:00    2016-12-13 20:51:00
52201    22961    598    2016-12-13 13:42:00    2016-12-13 13:42:00
52202    22961    821    2016-12-13 22:49:00    2016-12-13 22:49:00
52203    22962    820    2016-12-13 14:00:00    2016-12-13 14:00:00
52204    22962    872    2016-12-13 06:02:00    2016-12-13 06:02:00
52205    22962    520    2016-12-13 05:20:00    2016-12-13 05:20:00
52206    22962    682    2016-12-13 11:53:00    2016-12-13 11:53:00
52207    22962    667    2016-12-13 14:01:00    2016-12-13 14:01:00
52208    22963    701    2016-12-13 04:14:00    2016-12-13 04:14:00
52209    22963    483    2016-12-13 07:38:00    2016-12-13 07:38:00
52210    22963    556    2016-12-13 19:12:00    2016-12-13 19:12:00
52211    22963    644    2016-12-13 17:35:00    2016-12-13 17:35:00
52212    22963    783    2016-12-13 02:11:00    2016-12-13 02:11:00
52213    22964    918    2016-12-13 13:45:00    2016-12-13 13:45:00
52214    22964    517    2016-12-13 03:09:00    2016-12-13 03:09:00
52215    22964    764    2016-12-13 09:13:00    2016-12-13 09:13:00
52216    22964    485    2016-12-13 19:09:00    2016-12-13 19:09:00
52217    22964    712    2016-12-13 03:05:00    2016-12-13 03:05:00
52218    22965    906    2016-12-13 10:45:00    2016-12-13 10:45:00
52219    22965    650    2016-12-13 09:37:00    2016-12-13 09:37:00
52220    22965    549    2016-12-13 20:52:00    2016-12-13 20:52:00
52221    22965    865    2016-12-13 13:08:00    2016-12-13 13:08:00
52222    22965    949    2016-12-13 17:59:00    2016-12-13 17:59:00
52223    22966    735    2016-12-13 06:09:00    2016-12-13 06:09:00
52224    22966    890    2016-12-13 04:03:00    2016-12-13 04:03:00
52225    22966    808    2016-12-13 07:37:00    2016-12-13 07:37:00
52226    22966    876    2016-12-13 06:16:00    2016-12-13 06:16:00
52227    22966    832    2016-12-13 18:08:00    2016-12-13 18:08:00
52228    22967    814    2016-12-13 01:22:00    2016-12-13 01:22:00
52229    22967    780    2016-12-13 19:59:00    2016-12-13 19:59:00
52230    22967    618    2016-12-13 16:17:00    2016-12-13 16:17:00
52231    22967    912    2016-12-13 13:55:00    2016-12-13 13:55:00
52232    22967    913    2016-12-13 21:54:00    2016-12-13 21:54:00
52233    22968    693    2016-12-13 06:00:00    2016-12-13 06:00:00
52234    22968    744    2016-12-13 08:02:00    2016-12-13 08:02:00
52235    22968    841    2016-12-13 15:51:00    2016-12-13 15:51:00
52236    22968    669    2016-12-13 19:47:00    2016-12-13 19:47:00
52237    22968    627    2016-12-13 11:11:00    2016-12-13 11:11:00
52238    22969    774    2016-12-13 18:27:00    2016-12-13 18:27:00
52239    22969    845    2016-12-13 01:57:00    2016-12-13 01:57:00
52240    22969    538    2016-12-13 11:02:00    2016-12-13 11:02:00
52241    22969    881    2016-12-13 01:19:00    2016-12-13 01:19:00
52242    22969    807    2016-12-13 17:41:00    2016-12-13 17:41:00
52243    22970    837    2016-12-13 19:10:00    2016-12-13 19:10:00
52244    22970    903    2016-12-13 19:35:00    2016-12-13 19:35:00
52245    22970    785    2016-12-13 07:39:00    2016-12-13 07:39:00
52246    22970    709    2016-12-13 13:51:00    2016-12-13 13:51:00
52247    22970    603    2016-12-13 16:27:00    2016-12-13 16:27:00
52248    22971    904    2016-12-13 20:34:00    2016-12-13 20:34:00
52249    22971    929    2016-12-13 15:15:00    2016-12-13 15:15:00
52250    22971    819    2016-12-13 03:39:00    2016-12-13 03:39:00
52251    22971    523    2016-12-13 05:03:00    2016-12-13 05:03:00
52252    22971    815    2016-12-13 23:10:00    2016-12-13 23:10:00
52253    22972    811    2016-12-13 16:36:00    2016-12-13 16:36:00
52254    22972    815    2016-12-13 04:48:00    2016-12-13 04:48:00
52255    22972    704    2016-12-13 23:05:00    2016-12-13 23:05:00
52256    22972    913    2016-12-13 14:25:00    2016-12-13 14:25:00
52257    22972    508    2016-12-13 14:24:00    2016-12-13 14:24:00
52258    22973    475    2016-12-13 22:31:00    2016-12-13 22:31:00
52259    22973    728    2016-12-13 23:14:00    2016-12-13 23:14:00
52260    22973    840    2016-12-13 01:10:00    2016-12-13 01:10:00
52261    22973    558    2016-12-13 01:12:00    2016-12-13 01:12:00
52262    22973    871    2016-12-13 01:09:00    2016-12-13 01:09:00
52263    22974    714    2016-12-13 07:41:00    2016-12-13 07:41:00
52264    22974    642    2016-12-13 21:23:00    2016-12-13 21:23:00
52265    22974    639    2016-12-13 12:16:00    2016-12-13 12:16:00
52266    22974    914    2016-12-13 18:15:00    2016-12-13 18:15:00
52267    22974    669    2016-12-13 05:02:00    2016-12-13 05:02:00
52268    22975    913    2016-12-13 11:35:00    2016-12-13 11:35:00
52269    22975    851    2016-12-13 09:09:00    2016-12-13 09:09:00
52270    22975    799    2016-12-13 03:44:00    2016-12-13 03:44:00
52271    22975    535    2016-12-13 15:12:00    2016-12-13 15:12:00
52272    22975    507    2016-12-13 10:08:00    2016-12-13 10:08:00
52273    22976    519    2016-12-13 18:04:00    2016-12-13 18:04:00
52274    22976    519    2016-12-13 17:22:00    2016-12-13 17:22:00
52275    22976    702    2016-12-13 01:32:00    2016-12-13 01:32:00
52276    22976    535    2016-12-13 19:48:00    2016-12-13 19:48:00
52277    22976    807    2016-12-13 02:25:00    2016-12-13 02:25:00
52278    22977    813    2016-12-13 17:44:00    2016-12-13 17:44:00
52279    22977    584    2016-12-13 06:48:00    2016-12-13 06:48:00
52280    22977    713    2016-12-13 13:04:00    2016-12-13 13:04:00
52281    22977    786    2016-12-13 18:02:00    2016-12-13 18:02:00
52282    22977    668    2016-12-13 20:28:00    2016-12-13 20:28:00
52283    22978    936    2016-12-13 09:22:00    2016-12-13 09:22:00
52284    22978    644    2016-12-13 11:23:00    2016-12-13 11:23:00
52285    22978    617    2016-12-13 22:28:00    2016-12-13 22:28:00
52286    22978    854    2016-12-13 01:01:00    2016-12-13 01:01:00
52287    22978    634    2016-12-13 10:19:00    2016-12-13 10:19:00
52288    22979    619    2016-12-13 05:59:00    2016-12-13 05:59:00
52289    22979    724    2016-12-13 16:53:00    2016-12-13 16:53:00
52290    22979    556    2016-12-13 03:03:00    2016-12-13 03:03:00
52291    22979    561    2016-12-13 01:19:00    2016-12-13 01:19:00
52292    22979    863    2016-12-13 21:43:00    2016-12-13 21:43:00
52293    22980    501    2016-12-13 03:49:00    2016-12-13 03:49:00
52294    22980    919    2016-12-13 16:32:00    2016-12-13 16:32:00
52295    22980    580    2016-12-13 12:40:00    2016-12-13 12:40:00
52296    22980    776    2016-12-13 04:58:00    2016-12-13 04:58:00
52297    22980    558    2016-12-13 14:02:00    2016-12-13 14:02:00
52298    22981    580    2016-12-13 02:19:00    2016-12-13 02:19:00
52299    22981    924    2016-12-13 21:51:00    2016-12-13 21:51:00
52300    22981    815    2016-12-13 19:01:00    2016-12-13 19:01:00
52301    22981    597    2016-12-13 16:06:00    2016-12-13 16:06:00
52302    22981    465    2016-12-13 10:59:00    2016-12-13 10:59:00
52303    22982    551    2016-12-13 05:06:00    2016-12-13 05:06:00
52304    22982    603    2016-12-13 02:55:00    2016-12-13 02:55:00
52305    22982    669    2016-12-13 09:23:00    2016-12-13 09:23:00
52306    22982    463    2016-12-13 16:32:00    2016-12-13 16:32:00
52307    22982    673    2016-12-13 01:42:00    2016-12-13 01:42:00
52308    22983    622    2016-12-13 08:58:00    2016-12-13 08:58:00
52309    22983    892    2016-12-13 12:19:00    2016-12-13 12:19:00
52310    22983    893    2016-12-13 03:03:00    2016-12-13 03:03:00
52311    22983    643    2016-12-13 18:38:00    2016-12-13 18:38:00
52312    22983    872    2016-12-13 22:01:00    2016-12-13 22:01:00
52313    22984    470    2016-12-13 04:30:00    2016-12-13 04:30:00
52314    22984    793    2016-12-13 06:48:00    2016-12-13 06:48:00
52315    22984    677    2016-12-13 03:39:00    2016-12-13 03:39:00
52316    22984    546    2016-12-13 06:37:00    2016-12-13 06:37:00
52317    22984    577    2016-12-13 17:00:00    2016-12-13 17:00:00
52318    22985    761    2016-12-13 15:33:00    2016-12-13 15:33:00
52319    22985    623    2016-12-13 12:52:00    2016-12-13 12:52:00
52320    22985    709    2016-12-13 02:22:00    2016-12-13 02:22:00
52321    22985    900    2016-12-13 06:10:00    2016-12-13 06:10:00
52322    22985    924    2016-12-13 06:06:00    2016-12-13 06:06:00
52323    22986    652    2016-12-13 03:51:00    2016-12-13 03:51:00
52324    22986    955    2016-12-13 20:58:00    2016-12-13 20:58:00
52325    22986    844    2016-12-13 10:50:00    2016-12-13 10:50:00
52326    22986    651    2016-12-13 05:41:00    2016-12-13 05:41:00
52327    22986    635    2016-12-13 15:26:00    2016-12-13 15:26:00
52328    22987    891    2016-12-13 11:58:00    2016-12-13 11:58:00
52329    22987    733    2016-12-13 01:52:00    2016-12-13 01:52:00
52330    22987    940    2016-12-13 13:28:00    2016-12-13 13:28:00
52331    22987    564    2016-12-13 15:28:00    2016-12-13 15:28:00
52332    22987    684    2016-12-13 15:26:00    2016-12-13 15:26:00
52333    22988    554    2016-12-13 11:42:00    2016-12-13 11:42:00
52334    22988    684    2016-12-13 18:13:00    2016-12-13 18:13:00
52335    22988    749    2016-12-13 05:02:00    2016-12-13 05:02:00
52336    22988    843    2016-12-13 20:01:00    2016-12-13 20:01:00
52337    22988    563    2016-12-13 10:24:00    2016-12-13 10:24:00
52338    22989    512    2016-12-13 04:59:00    2016-12-13 04:59:00
52339    22989    780    2016-12-13 07:16:00    2016-12-13 07:16:00
52340    22989    536    2016-12-13 03:26:00    2016-12-13 03:26:00
52341    22989    947    2016-12-13 21:56:00    2016-12-13 21:56:00
52342    22989    677    2016-12-13 01:33:00    2016-12-13 01:33:00
52343    22990    527    2016-12-13 16:38:00    2016-12-13 16:38:00
52344    22990    825    2016-12-13 03:50:00    2016-12-13 03:50:00
52345    22990    695    2016-12-13 16:59:00    2016-12-13 16:59:00
52346    22990    922    2016-12-13 02:22:00    2016-12-13 02:22:00
52347    22990    847    2016-12-13 07:25:00    2016-12-13 07:25:00
52348    22991    469    2016-12-13 09:16:00    2016-12-13 09:16:00
52349    22991    697    2016-12-13 05:08:00    2016-12-13 05:08:00
52350    22991    861    2016-12-13 01:35:00    2016-12-13 01:35:00
52351    22991    938    2016-12-13 20:25:00    2016-12-13 20:25:00
52352    22991    903    2016-12-13 10:33:00    2016-12-13 10:33:00
52353    22992    799    2016-12-13 14:08:00    2016-12-13 14:08:00
52354    22992    711    2016-12-13 04:25:00    2016-12-13 04:25:00
52355    22992    622    2016-12-13 06:01:00    2016-12-13 06:01:00
52356    22992    785    2016-12-13 06:59:00    2016-12-13 06:59:00
52357    22992    777    2016-12-13 22:47:00    2016-12-13 22:47:00
49804    \N    952    2016-12-03 14:39:00    2016-12-14 17:30:34.10496
52358    22993    527    2016-12-14 04:52:00    2016-12-14 04:52:00
52359    22993    711    2016-12-14 08:25:00    2016-12-14 08:25:00
52360    22993    726    2016-12-14 10:19:00    2016-12-14 10:19:00
52361    22993    910    2016-12-14 20:50:00    2016-12-14 20:50:00
52362    22993    730    2016-12-14 08:15:00    2016-12-14 08:15:00
52363    22994    917    2016-12-14 08:54:00    2016-12-14 08:54:00
52364    22994    866    2016-12-14 13:54:00    2016-12-14 13:54:00
52365    22994    737    2016-12-14 16:58:00    2016-12-14 16:58:00
52366    22994    469    2016-12-14 12:52:00    2016-12-14 12:52:00
52367    22994    503    2016-12-14 02:06:00    2016-12-14 02:06:00
52368    22995    696    2016-12-14 15:35:00    2016-12-14 15:35:00
52369    22995    537    2016-12-14 11:42:00    2016-12-14 11:42:00
52370    22995    617    2016-12-14 17:14:00    2016-12-14 17:14:00
52371    22995    607    2016-12-14 08:05:00    2016-12-14 08:05:00
52372    22995    514    2016-12-14 23:52:00    2016-12-14 23:52:00
52373    22996    904    2016-12-14 08:29:00    2016-12-14 08:29:00
52374    22996    605    2016-12-14 18:00:00    2016-12-14 18:00:00
52375    22996    903    2016-12-14 01:22:00    2016-12-14 01:22:00
52376    22996    510    2016-12-14 15:44:00    2016-12-14 15:44:00
52377    22996    733    2016-12-14 22:07:00    2016-12-14 22:07:00
52378    22997    907    2016-12-14 09:37:00    2016-12-14 09:37:00
52379    22997    517    2016-12-14 07:54:00    2016-12-14 07:54:00
52380    22997    510    2016-12-14 17:45:00    2016-12-14 17:45:00
52381    22997    817    2016-12-14 10:11:00    2016-12-14 10:11:00
52382    22997    600    2016-12-14 09:52:00    2016-12-14 09:52:00
52383    22998    696    2016-12-14 05:30:00    2016-12-14 05:30:00
52384    22998    471    2016-12-14 04:55:00    2016-12-14 04:55:00
52385    22998    961    2016-12-14 18:41:00    2016-12-14 18:41:00
52386    22998    653    2016-12-14 14:44:00    2016-12-14 14:44:00
52387    22998    585    2016-12-14 03:18:00    2016-12-14 03:18:00
52388    22999    735    2016-12-14 23:46:00    2016-12-14 23:46:00
52389    22999    487    2016-12-14 06:39:00    2016-12-14 06:39:00
52390    22999    519    2016-12-14 16:08:00    2016-12-14 16:08:00
52391    22999    754    2016-12-14 13:13:00    2016-12-14 13:13:00
52392    22999    644    2016-12-14 12:06:00    2016-12-14 12:06:00
52393    23000    482    2016-12-14 04:21:00    2016-12-14 04:21:00
52394    23000    661    2016-12-14 05:35:00    2016-12-14 05:35:00
52395    23000    698    2016-12-14 02:37:00    2016-12-14 02:37:00
52396    23000    941    2016-12-14 11:01:00    2016-12-14 11:01:00
52397    23000    836    2016-12-14 16:48:00    2016-12-14 16:48:00
52398    23001    514    2016-12-14 09:27:00    2016-12-14 09:27:00
52399    23001    480    2016-12-14 14:31:00    2016-12-14 14:31:00
52400    23001    897    2016-12-14 01:48:00    2016-12-14 01:48:00
52401    23001    472    2016-12-14 07:22:00    2016-12-14 07:22:00
52402    23001    942    2016-12-14 19:50:00    2016-12-14 19:50:00
52403    23002    603    2016-12-14 09:32:00    2016-12-14 09:32:00
52404    23002    908    2016-12-14 17:29:00    2016-12-14 17:29:00
52405    23002    518    2016-12-14 10:17:00    2016-12-14 10:17:00
52406    23002    842    2016-12-14 07:57:00    2016-12-14 07:57:00
52407    23002    871    2016-12-14 04:21:00    2016-12-14 04:21:00
52408    23003    510    2016-12-14 02:40:00    2016-12-14 02:40:00
52409    23003    682    2016-12-14 19:37:00    2016-12-14 19:37:00
52410    23003    942    2016-12-14 20:58:00    2016-12-14 20:58:00
52411    23003    694    2016-12-14 23:04:00    2016-12-14 23:04:00
52412    23003    624    2016-12-14 01:43:00    2016-12-14 01:43:00
52413    23004    838    2016-12-14 13:59:00    2016-12-14 13:59:00
52414    23004    745    2016-12-14 18:13:00    2016-12-14 18:13:00
52415    23004    725    2016-12-14 08:00:00    2016-12-14 08:00:00
52416    23004    683    2016-12-14 22:42:00    2016-12-14 22:42:00
52417    23004    936    2016-12-14 05:15:00    2016-12-14 05:15:00
52418    23005    464    2016-12-14 12:40:00    2016-12-14 12:40:00
52419    23005    670    2016-12-14 07:21:00    2016-12-14 07:21:00
52420    23005    686    2016-12-14 17:15:00    2016-12-14 17:15:00
52421    23005    884    2016-12-14 23:15:00    2016-12-14 23:15:00
52422    23005    813    2016-12-14 22:03:00    2016-12-14 22:03:00
52423    23006    838    2016-12-14 01:59:00    2016-12-14 01:59:00
52424    23006    702    2016-12-14 10:00:00    2016-12-14 10:00:00
52425    23006    494    2016-12-14 02:43:00    2016-12-14 02:43:00
52426    23006    476    2016-12-14 21:21:00    2016-12-14 21:21:00
52427    23006    599    2016-12-14 02:58:00    2016-12-14 02:58:00
52428    23007    663    2016-12-14 01:18:00    2016-12-14 01:18:00
52429    23007    796    2016-12-14 02:37:00    2016-12-14 02:37:00
52430    23007    811    2016-12-14 03:48:00    2016-12-14 03:48:00
52431    23007    704    2016-12-14 05:11:00    2016-12-14 05:11:00
52432    23007    789    2016-12-14 16:52:00    2016-12-14 16:52:00
52433    23008    894    2016-12-14 22:25:00    2016-12-14 22:25:00
52434    23008    483    2016-12-14 01:22:00    2016-12-14 01:22:00
52435    23008    826    2016-12-14 02:08:00    2016-12-14 02:08:00
52436    23008    893    2016-12-14 06:57:00    2016-12-14 06:57:00
52437    23008    740    2016-12-14 21:51:00    2016-12-14 21:51:00
52438    23009    959    2016-12-14 14:55:00    2016-12-14 14:55:00
52439    23009    818    2016-12-14 05:57:00    2016-12-14 05:57:00
52440    23009    694    2016-12-14 07:14:00    2016-12-14 07:14:00
52441    23009    929    2016-12-14 10:30:00    2016-12-14 10:30:00
52442    23009    765    2016-12-14 20:08:00    2016-12-14 20:08:00
52443    23010    713    2016-12-14 13:19:00    2016-12-14 13:19:00
52444    23010    530    2016-12-14 21:45:00    2016-12-14 21:45:00
52445    23010    818    2016-12-14 05:30:00    2016-12-14 05:30:00
52446    23010    560    2016-12-14 08:32:00    2016-12-14 08:32:00
52447    23010    872    2016-12-14 21:09:00    2016-12-14 21:09:00
52448    23011    613    2016-12-14 03:24:00    2016-12-14 03:24:00
52449    23011    841    2016-12-14 03:38:00    2016-12-14 03:38:00
52450    23011    774    2016-12-14 09:53:00    2016-12-14 09:53:00
52451    23011    524    2016-12-14 23:56:00    2016-12-14 23:56:00
52452    23011    826    2016-12-14 03:52:00    2016-12-14 03:52:00
52453    23012    782    2016-12-14 03:17:00    2016-12-14 03:17:00
52454    23012    467    2016-12-14 05:21:00    2016-12-14 05:21:00
52455    23012    500    2016-12-14 02:32:00    2016-12-14 02:32:00
52456    23012    801    2016-12-14 11:15:00    2016-12-14 11:15:00
52457    23012    613    2016-12-14 20:58:00    2016-12-14 20:58:00
52458    23013    557    2016-12-14 19:56:00    2016-12-14 19:56:00
52459    23013    729    2016-12-14 14:58:00    2016-12-14 14:58:00
52460    23013    799    2016-12-14 04:49:00    2016-12-14 04:49:00
52461    23013    770    2016-12-14 21:01:00    2016-12-14 21:01:00
52462    23013    910    2016-12-14 06:47:00    2016-12-14 06:47:00
52463    23014    623    2016-12-15 11:09:00    2016-12-15 11:09:00
52464    23014    578    2016-12-15 22:45:00    2016-12-15 22:45:00
52465    23014    583    2016-12-15 03:15:00    2016-12-15 03:15:00
52466    23014    934    2016-12-15 14:34:00    2016-12-15 14:34:00
52467    23014    643    2016-12-15 22:29:00    2016-12-15 22:29:00
52468    23015    769    2016-12-15 18:33:00    2016-12-15 18:33:00
52469    23015    585    2016-12-15 20:40:00    2016-12-15 20:40:00
52470    23015    581    2016-12-15 14:13:00    2016-12-15 14:13:00
52471    23015    921    2016-12-15 08:43:00    2016-12-15 08:43:00
52472    23015    919    2016-12-15 17:05:00    2016-12-15 17:05:00
52473    23016    545    2016-12-15 09:46:00    2016-12-15 09:46:00
52474    23016    506    2016-12-15 11:24:00    2016-12-15 11:24:00
52475    23016    848    2016-12-15 01:10:00    2016-12-15 01:10:00
52476    23016    710    2016-12-15 22:56:00    2016-12-15 22:56:00
52477    23016    910    2016-12-15 22:53:00    2016-12-15 22:53:00
52478    23017    666    2016-12-15 21:52:00    2016-12-15 21:52:00
52479    23017    598    2016-12-15 22:41:00    2016-12-15 22:41:00
52480    23017    800    2016-12-15 10:28:00    2016-12-15 10:28:00
52481    23017    918    2016-12-15 13:40:00    2016-12-15 13:40:00
52482    23017    480    2016-12-15 17:14:00    2016-12-15 17:14:00
52483    23018    510    2016-12-15 18:50:00    2016-12-15 18:50:00
52484    23018    503    2016-12-15 20:33:00    2016-12-15 20:33:00
52485    23018    808    2016-12-15 20:25:00    2016-12-15 20:25:00
52486    23018    721    2016-12-15 20:03:00    2016-12-15 20:03:00
52487    23018    765    2016-12-15 06:35:00    2016-12-15 06:35:00
52488    23019    690    2016-12-15 15:00:00    2016-12-15 15:00:00
52489    23019    783    2016-12-15 16:08:00    2016-12-15 16:08:00
52490    23019    852    2016-12-15 08:08:00    2016-12-15 08:08:00
52491    23019    765    2016-12-15 16:25:00    2016-12-15 16:25:00
52492    23019    860    2016-12-15 22:59:00    2016-12-15 22:59:00
52493    23020    786    2016-12-15 23:20:00    2016-12-15 23:20:00
52494    23020    951    2016-12-15 12:32:00    2016-12-15 12:32:00
52495    23020    482    2016-12-15 14:05:00    2016-12-15 14:05:00
52496    23020    745    2016-12-15 04:45:00    2016-12-15 04:45:00
52497    23020    898    2016-12-15 20:59:00    2016-12-15 20:59:00
52498    23021    584    2016-12-15 11:36:00    2016-12-15 11:36:00
52499    23021    961    2016-12-15 08:06:00    2016-12-15 08:06:00
52500    23021    629    2016-12-15 16:54:00    2016-12-15 16:54:00
52501    23021    673    2016-12-15 01:41:00    2016-12-15 01:41:00
52502    23021    511    2016-12-15 12:23:00    2016-12-15 12:23:00
52503    23022    616    2016-12-15 19:39:00    2016-12-15 19:39:00
52504    23022    659    2016-12-15 02:45:00    2016-12-15 02:45:00
52505    23022    825    2016-12-15 21:25:00    2016-12-15 21:25:00
52506    23022    741    2016-12-15 13:24:00    2016-12-15 13:24:00
52507    23022    914    2016-12-15 10:42:00    2016-12-15 10:42:00
52508    23023    896    2016-12-15 22:26:00    2016-12-15 22:26:00
52509    23023    736    2016-12-15 12:35:00    2016-12-15 12:35:00
52510    23023    781    2016-12-15 21:14:00    2016-12-15 21:14:00
52511    23023    520    2016-12-15 17:16:00    2016-12-15 17:16:00
52512    23023    841    2016-12-15 23:01:00    2016-12-15 23:01:00
52513    23024    666    2016-12-15 23:51:00    2016-12-15 23:51:00
52514    23024    531    2016-12-15 16:55:00    2016-12-15 16:55:00
52515    23024    913    2016-12-15 13:37:00    2016-12-15 13:37:00
52516    23024    517    2016-12-15 23:44:00    2016-12-15 23:44:00
52517    23024    927    2016-12-15 21:07:00    2016-12-15 21:07:00
52518    23025    542    2016-12-15 23:16:00    2016-12-15 23:16:00
52519    23025    627    2016-12-15 08:05:00    2016-12-15 08:05:00
52520    23025    581    2016-12-15 01:33:00    2016-12-15 01:33:00
52521    23025    606    2016-12-15 03:09:00    2016-12-15 03:09:00
52522    23025    734    2016-12-15 12:35:00    2016-12-15 12:35:00
52523    23026    556    2016-12-15 13:08:00    2016-12-15 13:08:00
52524    23026    677    2016-12-15 12:50:00    2016-12-15 12:50:00
52525    23026    630    2016-12-15 19:15:00    2016-12-15 19:15:00
52526    23026    757    2016-12-15 06:39:00    2016-12-15 06:39:00
52527    23026    551    2016-12-15 09:45:00    2016-12-15 09:45:00
52528    23027    849    2016-12-15 02:51:00    2016-12-15 02:51:00
52529    23027    845    2016-12-15 02:20:00    2016-12-15 02:20:00
52530    23027    799    2016-12-15 01:33:00    2016-12-15 01:33:00
52531    23027    679    2016-12-15 09:13:00    2016-12-15 09:13:00
52532    23027    856    2016-12-15 17:28:00    2016-12-15 17:28:00
52533    23028    792    2016-12-15 04:03:00    2016-12-15 04:03:00
52534    23028    562    2016-12-15 13:40:00    2016-12-15 13:40:00
52535    23028    687    2016-12-15 13:36:00    2016-12-15 13:36:00
52536    23028    584    2016-12-15 08:00:00    2016-12-15 08:00:00
52537    23028    727    2016-12-15 16:33:00    2016-12-15 16:33:00
52538    23029    670    2016-12-15 09:00:00    2016-12-15 09:00:00
52539    23029    636    2016-12-15 23:51:00    2016-12-15 23:51:00
52540    23029    659    2016-12-15 17:53:00    2016-12-15 17:53:00
52541    23029    715    2016-12-15 03:33:00    2016-12-15 03:33:00
52542    23029    885    2016-12-15 07:15:00    2016-12-15 07:15:00
52543    23030    909    2016-12-15 04:16:00    2016-12-15 04:16:00
52544    23030    882    2016-12-15 14:34:00    2016-12-15 14:34:00
52545    23030    606    2016-12-15 23:30:00    2016-12-15 23:30:00
52546    23030    495    2016-12-15 10:39:00    2016-12-15 10:39:00
52547    23030    936    2016-12-15 17:34:00    2016-12-15 17:34:00
52548    23031    783    2016-12-15 19:44:00    2016-12-15 19:44:00
52549    23031    895    2016-12-15 02:11:00    2016-12-15 02:11:00
52550    23031    923    2016-12-15 19:45:00    2016-12-15 19:45:00
52551    23031    875    2016-12-15 10:34:00    2016-12-15 10:34:00
52552    23031    840    2016-12-15 22:14:00    2016-12-15 22:14:00
52553    23032    491    2016-12-15 14:55:00    2016-12-15 14:55:00
52554    23032    929    2016-12-15 03:36:00    2016-12-15 03:36:00
52555    23032    543    2016-12-15 15:16:00    2016-12-15 15:16:00
52556    23032    472    2016-12-15 18:34:00    2016-12-15 18:34:00
52557    23032    831    2016-12-15 06:32:00    2016-12-15 06:32:00
52558    23033    607    2016-12-15 11:40:00    2016-12-15 11:40:00
52559    23033    490    2016-12-15 10:49:00    2016-12-15 10:49:00
52560    23033    487    2016-12-15 12:26:00    2016-12-15 12:26:00
52561    23033    555    2016-12-15 18:13:00    2016-12-15 18:13:00
52562    23033    847    2016-12-15 01:52:00    2016-12-15 01:52:00
52563    23034    641    2016-12-15 15:54:00    2016-12-15 15:54:00
52564    23034    862    2016-12-15 12:38:00    2016-12-15 12:38:00
52565    23034    474    2016-12-15 02:12:00    2016-12-15 02:12:00
52566    23034    850    2016-12-15 04:04:00    2016-12-15 04:04:00
52567    23034    877    2016-12-15 22:28:00    2016-12-15 22:28:00
52568    23035    880    2016-12-15 18:45:00    2016-12-15 18:45:00
52569    23035    920    2016-12-15 20:00:00    2016-12-15 20:00:00
52570    23035    530    2016-12-15 13:02:00    2016-12-15 13:02:00
52571    23035    619    2016-12-15 03:07:00    2016-12-15 03:07:00
52572    23035    634    2016-12-15 21:09:00    2016-12-15 21:09:00
52573    23036    744    2016-12-15 02:32:00    2016-12-15 02:32:00
52574    23036    803    2016-12-15 16:57:00    2016-12-15 16:57:00
52575    23036    477    2016-12-15 14:43:00    2016-12-15 14:43:00
52576    23036    535    2016-12-15 21:37:00    2016-12-15 21:37:00
52577    23036    882    2016-12-15 04:52:00    2016-12-15 04:52:00
52578    23037    779    2016-12-15 23:31:00    2016-12-15 23:31:00
52579    23037    526    2016-12-15 11:05:00    2016-12-15 11:05:00
52580    23037    717    2016-12-15 14:33:00    2016-12-15 14:33:00
52581    23037    472    2016-12-15 12:54:00    2016-12-15 12:54:00
52582    23037    549    2016-12-15 12:22:00    2016-12-15 12:22:00
52583    23038    662    2016-12-15 01:58:00    2016-12-15 01:58:00
52584    23038    532    2016-12-15 12:44:00    2016-12-15 12:44:00
52585    23038    894    2016-12-15 06:32:00    2016-12-15 06:32:00
52586    23038    730    2016-12-15 19:05:00    2016-12-15 19:05:00
52587    23038    511    2016-12-15 20:11:00    2016-12-15 20:11:00
52588    23039    479    2016-12-15 19:58:00    2016-12-15 19:58:00
52589    23039    551    2016-12-15 12:38:00    2016-12-15 12:38:00
52590    23039    537    2016-12-15 17:01:00    2016-12-15 17:01:00
52591    23039    948    2016-12-15 12:44:00    2016-12-15 12:44:00
52592    23039    556    2016-12-15 18:07:00    2016-12-15 18:07:00
52593    23040    567    2016-12-15 19:53:00    2016-12-15 19:53:00
52594    23040    826    2016-12-15 22:37:00    2016-12-15 22:37:00
52595    23040    942    2016-12-15 09:54:00    2016-12-15 09:54:00
52596    23040    857    2016-12-15 18:37:00    2016-12-15 18:37:00
52597    23040    780    2016-12-15 17:45:00    2016-12-15 17:45:00
52598    23041    946    2016-12-15 10:22:00    2016-12-15 10:22:00
52599    23041    480    2016-12-15 10:36:00    2016-12-15 10:36:00
52600    23041    538    2016-12-15 08:58:00    2016-12-15 08:58:00
52601    23041    797    2016-12-15 10:08:00    2016-12-15 10:08:00
52602    23041    954    2016-12-15 16:04:00    2016-12-15 16:04:00
52603    23042    751    2016-12-15 13:40:00    2016-12-15 13:40:00
52604    23042    888    2016-12-15 22:11:00    2016-12-15 22:11:00
52605    23042    585    2016-12-15 19:51:00    2016-12-15 19:51:00
52606    23042    530    2016-12-15 19:00:00    2016-12-15 19:00:00
52607    23042    914    2016-12-15 04:55:00    2016-12-15 04:55:00
52608    23043    666    2016-12-15 19:33:00    2016-12-15 19:33:00
52609    23043    653    2016-12-15 08:27:00    2016-12-15 08:27:00
52610    23043    631    2016-12-15 04:30:00    2016-12-15 04:30:00
52611    23043    722    2016-12-15 13:38:00    2016-12-15 13:38:00
52612    23043    701    2016-12-15 21:08:00    2016-12-15 21:08:00
52613    23044    610    2016-12-15 16:16:00    2016-12-15 16:16:00
52614    23044    677    2016-12-15 18:12:00    2016-12-15 18:12:00
52615    23044    810    2016-12-15 03:49:00    2016-12-15 03:49:00
52616    23044    544    2016-12-15 17:19:00    2016-12-15 17:19:00
52617    23044    663    2016-12-15 15:56:00    2016-12-15 15:56:00
52618    23045    811    2016-12-15 07:55:00    2016-12-15 07:55:00
52619    23045    679    2016-12-15 14:46:00    2016-12-15 14:46:00
52620    23045    688    2016-12-15 03:48:00    2016-12-15 03:48:00
52621    23045    579    2016-12-15 04:54:00    2016-12-15 04:54:00
52622    23045    958    2016-12-15 07:26:00    2016-12-15 07:26:00
52623    23046    772    2016-12-15 17:44:00    2016-12-15 17:44:00
52624    23046    951    2016-12-15 06:42:00    2016-12-15 06:42:00
52625    23046    959    2016-12-15 22:30:00    2016-12-15 22:30:00
52626    23046    865    2016-12-15 11:46:00    2016-12-15 11:46:00
52627    23046    471    2016-12-15 03:11:00    2016-12-15 03:11:00
52628    23047    788    2016-12-15 01:34:00    2016-12-15 01:34:00
52629    23047    616    2016-12-15 18:57:00    2016-12-15 18:57:00
52630    23047    733    2016-12-15 15:08:00    2016-12-15 15:08:00
52631    23047    886    2016-12-15 20:58:00    2016-12-15 20:58:00
52632    23047    716    2016-12-15 04:00:00    2016-12-15 04:00:00
52633    23048    810    2016-12-15 15:42:00    2016-12-15 15:42:00
52634    23048    934    2016-12-15 01:38:00    2016-12-15 01:38:00
52635    23048    604    2016-12-15 11:50:00    2016-12-15 11:50:00
52636    23048    504    2016-12-15 18:02:00    2016-12-15 18:02:00
52637    23048    868    2016-12-15 06:29:00    2016-12-15 06:29:00
52638    23049    957    2016-12-15 23:54:00    2016-12-15 23:54:00
52639    23049    898    2016-12-15 13:35:00    2016-12-15 13:35:00
52640    23049    545    2016-12-15 11:30:00    2016-12-15 11:30:00
52641    23049    868    2016-12-15 06:56:00    2016-12-15 06:56:00
52642    23049    861    2016-12-15 03:48:00    2016-12-15 03:48:00
52643    23050    950    2016-12-15 02:21:00    2016-12-15 02:21:00
52644    23050    699    2016-12-15 08:42:00    2016-12-15 08:42:00
52645    23050    884    2016-12-15 16:52:00    2016-12-15 16:52:00
52646    23050    578    2016-12-15 10:33:00    2016-12-15 10:33:00
52647    23050    673    2016-12-15 21:57:00    2016-12-15 21:57:00
52648    23051    538    2016-12-15 01:51:00    2016-12-15 01:51:00
52649    23051    549    2016-12-15 22:24:00    2016-12-15 22:24:00
52650    23051    594    2016-12-15 05:38:00    2016-12-15 05:38:00
52651    23051    695    2016-12-15 19:46:00    2016-12-15 19:46:00
52652    23051    672    2016-12-15 15:34:00    2016-12-15 15:34:00
52653    23052    653    2016-12-15 07:18:00    2016-12-15 07:18:00
52654    23052    729    2016-12-15 16:43:00    2016-12-15 16:43:00
52655    23052    883    2016-12-15 22:36:00    2016-12-15 22:36:00
52656    23052    735    2016-12-15 06:43:00    2016-12-15 06:43:00
52657    23052    736    2016-12-15 11:47:00    2016-12-15 11:47:00
52658    23053    631    2016-12-15 23:01:00    2016-12-15 23:01:00
52659    23053    537    2016-12-15 11:24:00    2016-12-15 11:24:00
52660    23053    914    2016-12-15 02:38:00    2016-12-15 02:38:00
52661    23053    651    2016-12-15 15:53:00    2016-12-15 15:53:00
52662    23053    832    2016-12-15 05:01:00    2016-12-15 05:01:00
52663    23054    525    2016-12-15 01:59:00    2016-12-15 01:59:00
52664    23054    785    2016-12-15 21:47:00    2016-12-15 21:47:00
52665    23054    612    2016-12-15 01:32:00    2016-12-15 01:32:00
52666    23054    464    2016-12-15 07:30:00    2016-12-15 07:30:00
52667    23054    661    2016-12-15 14:30:00    2016-12-15 14:30:00
52668    23055    695    2016-12-15 03:54:00    2016-12-15 03:54:00
52669    23055    833    2016-12-15 15:17:00    2016-12-15 15:17:00
52670    23055    930    2016-12-15 10:50:00    2016-12-15 10:50:00
52671    23055    504    2016-12-15 04:53:00    2016-12-15 04:53:00
52672    23055    920    2016-12-15 17:11:00    2016-12-15 17:11:00
52673    23056    480    2016-12-15 10:23:00    2016-12-15 10:23:00
52674    23056    930    2016-12-15 03:21:00    2016-12-15 03:21:00
52675    23056    800    2016-12-15 10:46:00    2016-12-15 10:46:00
52676    23056    849    2016-12-15 11:42:00    2016-12-15 11:42:00
52677    23056    654    2016-12-15 04:01:00    2016-12-15 04:01:00
52678    23057    600    2016-12-15 14:47:00    2016-12-15 14:47:00
52679    23057    838    2016-12-15 21:12:00    2016-12-15 21:12:00
52680    23057    826    2016-12-15 01:55:00    2016-12-15 01:55:00
52681    23057    631    2016-12-15 06:26:00    2016-12-15 06:26:00
52682    23057    910    2016-12-15 04:07:00    2016-12-15 04:07:00
52683    23058    550    2016-12-15 02:14:00    2016-12-15 02:14:00
52684    23058    943    2016-12-15 11:32:00    2016-12-15 11:32:00
52685    23058    744    2016-12-15 04:05:00    2016-12-15 04:05:00
52686    23058    908    2016-12-15 05:04:00    2016-12-15 05:04:00
52687    23058    931    2016-12-15 07:37:00    2016-12-15 07:37:00
52688    23059    501    2016-12-15 17:44:00    2016-12-15 17:44:00
52689    23059    888    2016-12-15 02:00:00    2016-12-15 02:00:00
52690    23059    849    2016-12-15 18:11:00    2016-12-15 18:11:00
52691    23059    960    2016-12-15 10:21:00    2016-12-15 10:21:00
52692    23059    810    2016-12-15 05:06:00    2016-12-15 05:06:00
52693    23060    615    2016-12-15 15:33:00    2016-12-15 15:33:00
52694    23060    804    2016-12-15 16:25:00    2016-12-15 16:25:00
52695    23060    893    2016-12-15 11:14:00    2016-12-15 11:14:00
52696    23060    895    2016-12-15 18:00:00    2016-12-15 18:00:00
52697    23060    961    2016-12-15 03:22:00    2016-12-15 03:22:00
52698    23061    531    2016-12-15 01:45:00    2016-12-15 01:45:00
52699    23061    888    2016-12-15 22:41:00    2016-12-15 22:41:00
52700    23061    897    2016-12-15 07:17:00    2016-12-15 07:17:00
52701    23061    935    2016-12-15 14:50:00    2016-12-15 14:50:00
52702    23061    699    2016-12-15 07:15:00    2016-12-15 07:15:00
52703    23062    823    2016-12-15 12:37:00    2016-12-15 12:37:00
52704    23062    851    2016-12-15 12:15:00    2016-12-15 12:15:00
52705    23062    868    2016-12-15 07:48:00    2016-12-15 07:48:00
52706    23062    710    2016-12-15 09:13:00    2016-12-15 09:13:00
52707    23062    811    2016-12-15 18:59:00    2016-12-15 18:59:00
52708    23063    605    2016-12-15 04:05:00    2016-12-15 04:05:00
52709    23063    640    2016-12-15 12:47:00    2016-12-15 12:47:00
52710    23063    956    2016-12-15 18:28:00    2016-12-15 18:28:00
52711    23063    502    2016-12-15 23:33:00    2016-12-15 23:33:00
52712    23063    495    2016-12-15 15:43:00    2016-12-15 15:43:00
52713    23064    923    2016-12-15 23:50:00    2016-12-15 23:50:00
52714    23064    600    2016-12-15 08:50:00    2016-12-15 08:50:00
52715    23064    548    2016-12-15 17:24:00    2016-12-15 17:24:00
52716    23064    465    2016-12-15 17:08:00    2016-12-15 17:08:00
52717    23064    673    2016-12-15 01:21:00    2016-12-15 01:21:00
52718    23065    649    2016-12-15 15:58:00    2016-12-15 15:58:00
52719    23065    530    2016-12-15 12:22:00    2016-12-15 12:22:00
52720    23065    850    2016-12-15 17:54:00    2016-12-15 17:54:00
52721    23065    559    2016-12-15 05:02:00    2016-12-15 05:02:00
52722    23065    741    2016-12-15 20:51:00    2016-12-15 20:51:00
52723    23066    537    2016-12-15 12:39:00    2016-12-15 12:39:00
52724    23066    944    2016-12-15 17:18:00    2016-12-15 17:18:00
52725    23066    662    2016-12-15 21:56:00    2016-12-15 21:56:00
52726    23066    667    2016-12-15 04:00:00    2016-12-15 04:00:00
52727    23066    914    2016-12-15 03:37:00    2016-12-15 03:37:00
52728    23067    635    2016-12-15 10:08:00    2016-12-15 10:08:00
52729    23067    852    2016-12-15 10:48:00    2016-12-15 10:48:00
52730    23067    585    2016-12-15 20:17:00    2016-12-15 20:17:00
52731    23067    698    2016-12-15 01:12:00    2016-12-15 01:12:00
52732    23067    855    2016-12-15 07:03:00    2016-12-15 07:03:00
52733    23068    478    2016-12-15 01:48:00    2016-12-15 01:48:00
52734    23068    599    2016-12-15 11:27:00    2016-12-15 11:27:00
52735    23068    842    2016-12-15 19:03:00    2016-12-15 19:03:00
52736    23068    773    2016-12-15 01:14:00    2016-12-15 01:14:00
52737    23068    944    2016-12-15 05:57:00    2016-12-15 05:57:00
52738    23069    590    2016-12-15 08:47:00    2016-12-15 08:47:00
52739    23069    782    2016-12-15 23:36:00    2016-12-15 23:36:00
52740    23069    568    2016-12-15 13:00:00    2016-12-15 13:00:00
52741    23069    810    2016-12-15 09:29:00    2016-12-15 09:29:00
52742    23069    509    2016-12-15 22:04:00    2016-12-15 22:04:00
52743    23070    621    2016-12-15 14:13:00    2016-12-15 14:13:00
52744    23070    866    2016-12-15 13:31:00    2016-12-15 13:31:00
52745    23070    751    2016-12-15 12:25:00    2016-12-15 12:25:00
52746    23070    860    2016-12-15 16:36:00    2016-12-15 16:36:00
52747    23070    614    2016-12-15 20:53:00    2016-12-15 20:53:00
52748    23071    757    2016-12-15 13:57:00    2016-12-15 13:57:00
52749    23071    760    2016-12-15 23:04:00    2016-12-15 23:04:00
52750    23071    637    2016-12-15 13:34:00    2016-12-15 13:34:00
52751    23071    765    2016-12-15 15:41:00    2016-12-15 15:41:00
52752    23071    617    2016-12-15 21:22:00    2016-12-15 21:22:00
52753    23072    563    2016-12-15 11:15:00    2016-12-15 11:15:00
52754    23072    487    2016-12-15 09:54:00    2016-12-15 09:54:00
52755    23072    817    2016-12-15 02:53:00    2016-12-15 02:53:00
52756    23072    657    2016-12-15 16:14:00    2016-12-15 16:14:00
52757    23072    927    2016-12-15 18:48:00    2016-12-15 18:48:00
52758    23073    775    2016-12-15 17:35:00    2016-12-15 17:35:00
52759    23073    649    2016-12-15 22:57:00    2016-12-15 22:57:00
52760    23073    806    2016-12-15 11:00:00    2016-12-15 11:00:00
52761    23073    571    2016-12-15 22:50:00    2016-12-15 22:50:00
52762    23073    814    2016-12-15 16:50:00    2016-12-15 16:50:00
52763    23074    779    2016-12-15 13:11:00    2016-12-15 13:11:00
52764    23074    690    2016-12-15 18:43:00    2016-12-15 18:43:00
52765    23074    669    2016-12-15 11:44:00    2016-12-15 11:44:00
52766    23074    938    2016-12-15 10:06:00    2016-12-15 10:06:00
52767    23074    772    2016-12-15 15:47:00    2016-12-15 15:47:00
52768    23075    679    2016-12-15 08:07:00    2016-12-15 08:07:00
52769    23075    566    2016-12-15 17:14:00    2016-12-15 17:14:00
52770    23075    552    2016-12-15 02:16:00    2016-12-15 02:16:00
52771    23075    928    2016-12-15 08:47:00    2016-12-15 08:47:00
52772    23075    556    2016-12-15 09:03:00    2016-12-15 09:03:00
52773    23076    670    2016-12-15 23:36:00    2016-12-15 23:36:00
52774    23076    867    2016-12-15 13:52:00    2016-12-15 13:52:00
52775    23076    586    2016-12-15 06:26:00    2016-12-15 06:26:00
52776    23076    556    2016-12-15 13:04:00    2016-12-15 13:04:00
52777    23076    748    2016-12-15 23:54:00    2016-12-15 23:54:00
52778    23077    707    2016-12-15 11:22:00    2016-12-15 11:22:00
52779    23077    894    2016-12-15 15:21:00    2016-12-15 15:21:00
52780    23077    780    2016-12-15 19:16:00    2016-12-15 19:16:00
52781    23077    897    2016-12-15 08:08:00    2016-12-15 08:08:00
52782    23077    820    2016-12-15 09:59:00    2016-12-15 09:59:00
52783    23078    684    2016-12-15 17:17:00    2016-12-15 17:17:00
52784    23078    467    2016-12-15 15:23:00    2016-12-15 15:23:00
52785    23078    887    2016-12-15 09:08:00    2016-12-15 09:08:00
52786    23078    913    2016-12-15 20:34:00    2016-12-15 20:34:00
52787    23078    765    2016-12-15 06:45:00    2016-12-15 06:45:00
52788    23079    714    2016-12-15 09:30:00    2016-12-15 09:30:00
52789    23079    851    2016-12-15 07:35:00    2016-12-15 07:35:00
52790    23079    888    2016-12-15 09:10:00    2016-12-15 09:10:00
52791    23079    809    2016-12-15 04:37:00    2016-12-15 04:37:00
52792    23079    814    2016-12-15 12:45:00    2016-12-15 12:45:00
52793    23080    724    2016-12-15 07:49:00    2016-12-15 07:49:00
52794    23080    500    2016-12-15 14:20:00    2016-12-15 14:20:00
52795    23080    501    2016-12-15 22:55:00    2016-12-15 22:55:00
52796    23080    579    2016-12-15 03:02:00    2016-12-15 03:02:00
52797    23080    603    2016-12-15 04:42:00    2016-12-15 04:42:00
52798    23081    861    2016-12-15 03:20:00    2016-12-15 03:20:00
52799    23081    759    2016-12-15 19:18:00    2016-12-15 19:18:00
52800    23081    944    2016-12-15 14:40:00    2016-12-15 14:40:00
52801    23081    494    2016-12-15 04:24:00    2016-12-15 04:24:00
52802    23081    563    2016-12-15 13:32:00    2016-12-15 13:32:00
52803    23082    600    2016-12-15 18:22:00    2016-12-15 18:22:00
52804    23082    521    2016-12-15 10:28:00    2016-12-15 10:28:00
52805    23082    878    2016-12-15 10:20:00    2016-12-15 10:20:00
52806    23082    835    2016-12-15 05:44:00    2016-12-15 05:44:00
52807    23082    946    2016-12-15 01:40:00    2016-12-15 01:40:00
52808    23083    830    2016-12-15 04:56:00    2016-12-15 04:56:00
52809    23083    535    2016-12-15 08:29:00    2016-12-15 08:29:00
52810    23083    539    2016-12-15 09:20:00    2016-12-15 09:20:00
52811    23083    837    2016-12-15 13:40:00    2016-12-15 13:40:00
52812    23083    790    2016-12-15 12:44:00    2016-12-15 12:44:00
52813    23084    885    2016-12-15 19:51:00    2016-12-15 19:51:00
52814    23084    695    2016-12-15 05:03:00    2016-12-15 05:03:00
52815    23084    547    2016-12-15 03:45:00    2016-12-15 03:45:00
52816    23084    615    2016-12-15 07:14:00    2016-12-15 07:14:00
52817    23084    519    2016-12-15 04:36:00    2016-12-15 04:36:00
52818    23085    576    2016-12-15 22:54:00    2016-12-15 22:54:00
52819    23085    751    2016-12-15 20:29:00    2016-12-15 20:29:00
52820    23085    823    2016-12-15 14:56:00    2016-12-15 14:56:00
52821    23085    524    2016-12-15 15:12:00    2016-12-15 15:12:00
52822    23085    914    2016-12-15 21:05:00    2016-12-15 21:05:00
52823    23086    524    2016-12-15 14:44:00    2016-12-15 14:44:00
52824    23086    641    2016-12-15 15:36:00    2016-12-15 15:36:00
52825    23086    853    2016-12-15 08:57:00    2016-12-15 08:57:00
52826    23086    910    2016-12-15 05:51:00    2016-12-15 05:51:00
52827    23086    651    2016-12-15 14:37:00    2016-12-15 14:37:00
52828    23087    612    2016-12-15 03:38:00    2016-12-15 03:38:00
52829    23087    881    2016-12-15 21:56:00    2016-12-15 21:56:00
52830    23087    831    2016-12-15 12:17:00    2016-12-15 12:17:00
52831    23087    744    2016-12-15 07:41:00    2016-12-15 07:41:00
52832    23087    716    2016-12-15 13:40:00    2016-12-15 13:40:00
52833    23088    868    2016-12-15 04:15:00    2016-12-15 04:15:00
52834    23088    811    2016-12-15 10:28:00    2016-12-15 10:28:00
52835    23088    655    2016-12-15 03:00:00    2016-12-15 03:00:00
52836    23088    758    2016-12-15 22:16:00    2016-12-15 22:16:00
52837    23088    583    2016-12-15 16:07:00    2016-12-15 16:07:00
52838    23089    840    2016-12-15 04:41:00    2016-12-15 04:41:00
52839    23089    522    2016-12-15 17:14:00    2016-12-15 17:14:00
52840    23089    620    2016-12-15 18:49:00    2016-12-15 18:49:00
52841    23089    699    2016-12-15 06:22:00    2016-12-15 06:22:00
52842    23089    784    2016-12-15 04:03:00    2016-12-15 04:03:00
52843    23090    922    2016-12-15 17:13:00    2016-12-15 17:13:00
52844    23090    961    2016-12-15 07:02:00    2016-12-15 07:02:00
52845    23090    844    2016-12-15 08:19:00    2016-12-15 08:19:00
52846    23090    918    2016-12-15 10:58:00    2016-12-15 10:58:00
52847    23090    939    2016-12-15 20:17:00    2016-12-15 20:17:00
52848    23091    671    2016-12-15 20:33:00    2016-12-15 20:33:00
52849    23091    488    2016-12-15 12:26:00    2016-12-15 12:26:00
52850    23091    529    2016-12-15 15:46:00    2016-12-15 15:46:00
52851    23091    590    2016-12-15 22:24:00    2016-12-15 22:24:00
52852    23091    747    2016-12-15 15:29:00    2016-12-15 15:29:00
52853    23092    510    2016-12-15 21:04:00    2016-12-15 21:04:00
52854    23092    621    2016-12-15 11:18:00    2016-12-15 11:18:00
52855    23092    526    2016-12-15 14:47:00    2016-12-15 14:47:00
52856    23092    637    2016-12-15 11:14:00    2016-12-15 11:14:00
52857    23092    720    2016-12-15 02:27:00    2016-12-15 02:27:00
52858    23093    472    2016-12-15 12:36:00    2016-12-15 12:36:00
52859    23093    930    2016-12-15 14:03:00    2016-12-15 14:03:00
52860    23093    677    2016-12-15 18:14:00    2016-12-15 18:14:00
52861    23093    877    2016-12-15 13:38:00    2016-12-15 13:38:00
52862    23093    568    2016-12-15 01:35:00    2016-12-15 01:35:00
52863    23094    774    2016-12-15 09:29:00    2016-12-15 09:29:00
52864    23094    471    2016-12-15 18:59:00    2016-12-15 18:59:00
52865    23094    857    2016-12-15 19:46:00    2016-12-15 19:46:00
52866    23094    482    2016-12-15 21:26:00    2016-12-15 21:26:00
52867    23094    699    2016-12-15 01:38:00    2016-12-15 01:38:00
52868    23095    823    2016-12-15 06:10:00    2016-12-15 06:10:00
52869    23095    813    2016-12-15 14:26:00    2016-12-15 14:26:00
52870    23095    809    2016-12-15 21:04:00    2016-12-15 21:04:00
52871    23095    545    2016-12-15 05:15:00    2016-12-15 05:15:00
52872    23095    774    2016-12-15 18:00:00    2016-12-15 18:00:00
52873    23096    647    2016-12-15 18:28:00    2016-12-15 18:28:00
52874    23096    899    2016-12-15 17:26:00    2016-12-15 17:26:00
52875    23096    906    2016-12-15 03:41:00    2016-12-15 03:41:00
52876    23096    855    2016-12-15 18:48:00    2016-12-15 18:48:00
52877    23096    921    2016-12-15 04:36:00    2016-12-15 04:36:00
52878    23097    686    2016-12-15 08:44:00    2016-12-15 08:44:00
52879    23097    782    2016-12-15 04:42:00    2016-12-15 04:42:00
52880    23097    901    2016-12-15 16:00:00    2016-12-15 16:00:00
52881    23097    842    2016-12-15 18:37:00    2016-12-15 18:37:00
52882    23097    682    2016-12-15 01:55:00    2016-12-15 01:55:00
52883    23098    525    2016-12-15 15:46:00    2016-12-15 15:46:00
52884    23098    542    2016-12-15 16:05:00    2016-12-15 16:05:00
52885    23098    749    2016-12-15 01:26:00    2016-12-15 01:26:00
52886    23098    586    2016-12-15 14:29:00    2016-12-15 14:29:00
52887    23098    879    2016-12-15 16:39:00    2016-12-15 16:39:00
52888    23099    611    2016-12-15 21:49:00    2016-12-15 21:49:00
52889    23099    891    2016-12-15 12:53:00    2016-12-15 12:53:00
52890    23099    792    2016-12-15 18:23:00    2016-12-15 18:23:00
52891    23099    917    2016-12-15 02:35:00    2016-12-15 02:35:00
52892    23099    649    2016-12-15 20:11:00    2016-12-15 20:11:00
52893    23100    695    2016-12-15 16:07:00    2016-12-15 16:07:00
52894    23100    906    2016-12-15 10:30:00    2016-12-15 10:30:00
52895    23100    764    2016-12-15 16:17:00    2016-12-15 16:17:00
52896    23100    811    2016-12-15 12:34:00    2016-12-15 12:34:00
52897    23100    486    2016-12-15 22:44:00    2016-12-15 22:44:00
52898    23101    945    2016-12-15 17:21:00    2016-12-15 17:21:00
52899    23101    858    2016-12-15 17:32:00    2016-12-15 17:32:00
52900    23101    533    2016-12-15 22:53:00    2016-12-15 22:53:00
52901    23101    749    2016-12-15 18:29:00    2016-12-15 18:29:00
52902    23101    684    2016-12-15 05:00:00    2016-12-15 05:00:00
52903    23102    571    2016-12-15 04:01:00    2016-12-15 04:01:00
52904    23102    934    2016-12-15 06:03:00    2016-12-15 06:03:00
52905    23102    603    2016-12-15 17:16:00    2016-12-15 17:16:00
52906    23102    537    2016-12-15 15:30:00    2016-12-15 15:30:00
52907    23102    486    2016-12-15 04:11:00    2016-12-15 04:11:00
52908    23103    620    2016-12-15 01:04:00    2016-12-15 01:04:00
52909    23103    575    2016-12-15 11:08:00    2016-12-15 11:08:00
52910    23103    881    2016-12-15 12:20:00    2016-12-15 12:20:00
52911    23103    809    2016-12-15 11:20:00    2016-12-15 11:20:00
52912    23103    713    2016-12-15 01:17:00    2016-12-15 01:17:00
52913    23104    927    2016-12-15 08:44:00    2016-12-15 08:44:00
52914    23104    955    2016-12-15 13:35:00    2016-12-15 13:35:00
52915    23104    495    2016-12-15 15:00:00    2016-12-15 15:00:00
52916    23104    832    2016-12-15 23:25:00    2016-12-15 23:25:00
52917    23104    498    2016-12-15 12:35:00    2016-12-15 12:35:00
52918    23105    556    2016-12-15 13:27:00    2016-12-15 13:27:00
52919    23105    880    2016-12-15 13:33:00    2016-12-15 13:33:00
52920    23105    682    2016-12-15 03:46:00    2016-12-15 03:46:00
52921    23105    611    2016-12-15 16:22:00    2016-12-15 16:22:00
52922    23105    874    2016-12-15 13:30:00    2016-12-15 13:30:00
52923    23106    887    2016-12-15 06:37:00    2016-12-15 06:37:00
52924    23106    903    2016-12-15 14:05:00    2016-12-15 14:05:00
52925    23106    662    2016-12-15 05:51:00    2016-12-15 05:51:00
52926    23106    794    2016-12-15 15:35:00    2016-12-15 15:35:00
52927    23106    696    2016-12-15 18:25:00    2016-12-15 18:25:00
52928    23107    641    2016-12-15 13:57:00    2016-12-15 13:57:00
52929    23107    641    2016-12-15 10:07:00    2016-12-15 10:07:00
52930    23107    527    2016-12-15 06:54:00    2016-12-15 06:54:00
52931    23107    570    2016-12-15 17:50:00    2016-12-15 17:50:00
52932    23107    525    2016-12-15 13:25:00    2016-12-15 13:25:00
52933    23108    949    2016-12-15 03:50:00    2016-12-15 03:50:00
52934    23108    654    2016-12-15 07:41:00    2016-12-15 07:41:00
52935    23108    634    2016-12-15 15:09:00    2016-12-15 15:09:00
52936    23108    830    2016-12-15 11:42:00    2016-12-15 11:42:00
52937    23108    819    2016-12-15 17:28:00    2016-12-15 17:28:00
52938    23109    846    2016-12-16 17:25:00    2016-12-16 17:25:00
52939    23109    929    2016-12-16 11:34:00    2016-12-16 11:34:00
52940    23109    701    2016-12-16 07:59:00    2016-12-16 07:59:00
52941    23109    620    2016-12-16 01:11:00    2016-12-16 01:11:00
52942    23109    908    2016-12-16 09:18:00    2016-12-16 09:18:00
52943    23110    631    2016-12-16 01:19:00    2016-12-16 01:19:00
52944    23110    676    2016-12-16 17:21:00    2016-12-16 17:21:00
52945    23110    535    2016-12-16 04:33:00    2016-12-16 04:33:00
52946    23110    855    2016-12-16 04:39:00    2016-12-16 04:39:00
52947    23110    679    2016-12-16 01:07:00    2016-12-16 01:07:00
52948    23111    706    2016-12-16 21:40:00    2016-12-16 21:40:00
52949    23111    766    2016-12-16 01:11:00    2016-12-16 01:11:00
52950    23111    820    2016-12-16 17:55:00    2016-12-16 17:55:00
52951    23111    606    2016-12-16 15:09:00    2016-12-16 15:09:00
52952    23111    634    2016-12-16 12:22:00    2016-12-16 12:22:00
52953    23112    785    2016-12-16 14:00:00    2016-12-16 14:00:00
52954    23112    902    2016-12-16 22:11:00    2016-12-16 22:11:00
52955    23112    824    2016-12-16 05:38:00    2016-12-16 05:38:00
52956    23112    577    2016-12-16 22:01:00    2016-12-16 22:01:00
52957    23112    524    2016-12-16 18:39:00    2016-12-16 18:39:00
52958    23113    822    2016-12-16 08:40:00    2016-12-16 08:40:00
52959    23113    518    2016-12-16 19:41:00    2016-12-16 19:41:00
52960    23113    893    2016-12-16 07:39:00    2016-12-16 07:39:00
52961    23113    826    2016-12-16 17:22:00    2016-12-16 17:22:00
52962    23113    955    2016-12-16 07:30:00    2016-12-16 07:30:00
52963    23114    911    2016-12-16 04:55:00    2016-12-16 04:55:00
52964    23114    716    2016-12-16 08:39:00    2016-12-16 08:39:00
52965    23114    467    2016-12-16 12:33:00    2016-12-16 12:33:00
52966    23114    831    2016-12-16 21:45:00    2016-12-16 21:45:00
52967    23114    663    2016-12-16 02:19:00    2016-12-16 02:19:00
52968    23115    467    2016-12-16 04:41:00    2016-12-16 04:41:00
52969    23115    872    2016-12-16 17:00:00    2016-12-16 17:00:00
52970    23115    885    2016-12-16 18:01:00    2016-12-16 18:01:00
52971    23115    893    2016-12-16 03:19:00    2016-12-16 03:19:00
52972    23115    517    2016-12-16 18:48:00    2016-12-16 18:48:00
52973    23116    923    2016-12-16 22:04:00    2016-12-16 22:04:00
52974    23116    641    2016-12-16 20:43:00    2016-12-16 20:43:00
52975    23116    654    2016-12-16 06:41:00    2016-12-16 06:41:00
52976    23116    695    2016-12-16 10:43:00    2016-12-16 10:43:00
52977    23116    509    2016-12-16 21:02:00    2016-12-16 21:02:00
52978    23117    714    2016-12-16 15:08:00    2016-12-16 15:08:00
52979    23117    668    2016-12-16 13:46:00    2016-12-16 13:46:00
52980    23117    603    2016-12-16 22:50:00    2016-12-16 22:50:00
52981    23117    862    2016-12-16 22:51:00    2016-12-16 22:51:00
52982    23117    804    2016-12-16 23:33:00    2016-12-16 23:33:00
52983    23118    936    2016-12-16 20:31:00    2016-12-16 20:31:00
52984    23118    781    2016-12-16 15:09:00    2016-12-16 15:09:00
52985    23118    524    2016-12-16 03:42:00    2016-12-16 03:42:00
52986    23118    539    2016-12-16 06:31:00    2016-12-16 06:31:00
52987    23118    516    2016-12-16 22:28:00    2016-12-16 22:28:00
52988    23119    856    2016-12-16 06:20:00    2016-12-16 06:20:00
52989    23119    811    2016-12-16 07:39:00    2016-12-16 07:39:00
52990    23119    924    2016-12-16 21:51:00    2016-12-16 21:51:00
52991    23119    828    2016-12-16 02:58:00    2016-12-16 02:58:00
52992    23119    696    2016-12-16 19:44:00    2016-12-16 19:44:00
52993    23120    803    2016-12-16 10:00:00    2016-12-16 10:00:00
52994    23120    483    2016-12-16 11:17:00    2016-12-16 11:17:00
52995    23120    540    2016-12-16 08:24:00    2016-12-16 08:24:00
52996    23120    601    2016-12-16 17:36:00    2016-12-16 17:36:00
52997    23120    912    2016-12-16 21:21:00    2016-12-16 21:21:00
52998    23121    776    2016-12-16 19:54:00    2016-12-16 19:54:00
52999    23121    609    2016-12-16 19:50:00    2016-12-16 19:50:00
53000    23121    655    2016-12-16 06:04:00    2016-12-16 06:04:00
53001    23121    776    2016-12-16 12:36:00    2016-12-16 12:36:00
53002    23121    588    2016-12-16 14:59:00    2016-12-16 14:59:00
53003    23122    652    2016-12-16 05:55:00    2016-12-16 05:55:00
53004    23122    801    2016-12-16 23:47:00    2016-12-16 23:47:00
53005    23122    787    2016-12-16 07:24:00    2016-12-16 07:24:00
53006    23122    599    2016-12-16 11:36:00    2016-12-16 11:36:00
53007    23122    785    2016-12-16 20:44:00    2016-12-16 20:44:00
53008    23123    465    2016-12-16 23:06:00    2016-12-16 23:06:00
53009    23123    782    2016-12-16 18:52:00    2016-12-16 18:52:00
53010    23123    701    2016-12-16 09:53:00    2016-12-16 09:53:00
53011    23123    901    2016-12-16 04:06:00    2016-12-16 04:06:00
53012    23123    547    2016-12-16 08:38:00    2016-12-16 08:38:00
53013    23124    727    2016-12-17 21:33:00    2016-12-17 21:33:00
53014    23124    740    2016-12-17 01:17:00    2016-12-17 01:17:00
53015    23124    464    2016-12-17 22:16:00    2016-12-17 22:16:00
53016    23124    616    2016-12-17 04:28:00    2016-12-17 04:28:00
53017    23124    693    2016-12-17 17:17:00    2016-12-17 17:17:00
53018    23125    608    2016-12-17 01:39:00    2016-12-17 01:39:00
53019    23125    523    2016-12-17 19:38:00    2016-12-17 19:38:00
53020    23125    646    2016-12-17 10:23:00    2016-12-17 10:23:00
53021    23125    641    2016-12-17 08:37:00    2016-12-17 08:37:00
53022    23125    873    2016-12-17 01:33:00    2016-12-17 01:33:00
53023    23126    607    2016-12-17 16:53:00    2016-12-17 16:53:00
53024    23126    738    2016-12-17 06:53:00    2016-12-17 06:53:00
53025    23126    570    2016-12-17 01:12:00    2016-12-17 01:12:00
53026    23126    539    2016-12-17 22:46:00    2016-12-17 22:46:00
53027    23126    932    2016-12-17 09:29:00    2016-12-17 09:29:00
53028    23127    960    2016-12-17 15:59:00    2016-12-17 15:59:00
53029    23127    504    2016-12-17 02:46:00    2016-12-17 02:46:00
53030    23127    789    2016-12-17 04:53:00    2016-12-17 04:53:00
53031    23127    612    2016-12-17 04:01:00    2016-12-17 04:01:00
53032    23127    533    2016-12-17 06:52:00    2016-12-17 06:52:00
53033    23128    578    2016-12-17 04:13:00    2016-12-17 04:13:00
53034    23128    778    2016-12-17 11:48:00    2016-12-17 11:48:00
53035    23128    922    2016-12-17 05:51:00    2016-12-17 05:51:00
53036    23128    940    2016-12-17 21:26:00    2016-12-17 21:26:00
53037    23128    821    2016-12-17 14:16:00    2016-12-17 14:16:00
53038    23129    652    2016-12-17 22:31:00    2016-12-17 22:31:00
53039    23129    728    2016-12-17 20:12:00    2016-12-17 20:12:00
53040    23129    883    2016-12-17 18:10:00    2016-12-17 18:10:00
53041    23129    546    2016-12-17 03:00:00    2016-12-17 03:00:00
53042    23129    705    2016-12-17 02:10:00    2016-12-17 02:10:00
53043    23130    782    2016-12-17 09:34:00    2016-12-17 09:34:00
53044    23130    588    2016-12-17 10:36:00    2016-12-17 10:36:00
53045    23130    589    2016-12-17 18:36:00    2016-12-17 18:36:00
53046    23130    676    2016-12-17 23:11:00    2016-12-17 23:11:00
53047    23130    864    2016-12-17 20:38:00    2016-12-17 20:38:00
53048    23131    678    2016-12-17 05:12:00    2016-12-17 05:12:00
53049    23131    809    2016-12-17 18:37:00    2016-12-17 18:37:00
53050    23131    942    2016-12-17 17:42:00    2016-12-17 17:42:00
53051    23131    585    2016-12-17 23:25:00    2016-12-17 23:25:00
53052    23131    541    2016-12-17 10:39:00    2016-12-17 10:39:00
53053    23132    640    2016-12-17 12:43:00    2016-12-17 12:43:00
53054    23132    678    2016-12-17 21:36:00    2016-12-17 21:36:00
53055    23132    757    2016-12-17 01:27:00    2016-12-17 01:27:00
53056    23132    769    2016-12-17 03:19:00    2016-12-17 03:19:00
53057    23132    873    2016-12-17 08:20:00    2016-12-17 08:20:00
53058    23133    774    2016-12-17 13:32:00    2016-12-17 13:32:00
53059    23133    479    2016-12-17 20:48:00    2016-12-17 20:48:00
53060    23133    863    2016-12-17 19:14:00    2016-12-17 19:14:00
53061    23133    946    2016-12-17 22:01:00    2016-12-17 22:01:00
53062    23133    756    2016-12-17 15:55:00    2016-12-17 15:55:00
53063    23134    720    2016-12-17 02:05:00    2016-12-17 02:05:00
53064    23134    730    2016-12-17 13:35:00    2016-12-17 13:35:00
53065    23134    710    2016-12-17 11:27:00    2016-12-17 11:27:00
53066    23134    956    2016-12-17 18:12:00    2016-12-17 18:12:00
53067    23134    571    2016-12-17 23:33:00    2016-12-17 23:33:00
53068    23135    592    2016-12-17 06:40:00    2016-12-17 06:40:00
53069    23135    703    2016-12-17 05:18:00    2016-12-17 05:18:00
53070    23135    720    2016-12-17 04:18:00    2016-12-17 04:18:00
53071    23135    600    2016-12-17 01:49:00    2016-12-17 01:49:00
53072    23135    704    2016-12-17 04:54:00    2016-12-17 04:54:00
53073    23136    752    2016-12-17 06:03:00    2016-12-17 06:03:00
53074    23136    663    2016-12-17 17:27:00    2016-12-17 17:27:00
53075    23136    938    2016-12-17 18:32:00    2016-12-17 18:32:00
53076    23136    633    2016-12-17 23:26:00    2016-12-17 23:26:00
53077    23136    593    2016-12-17 03:05:00    2016-12-17 03:05:00
53078    23137    938    2016-12-17 19:59:00    2016-12-17 19:59:00
53079    23137    570    2016-12-17 05:06:00    2016-12-17 05:06:00
53080    23137    947    2016-12-17 09:24:00    2016-12-17 09:24:00
53081    23137    812    2016-12-17 23:45:00    2016-12-17 23:45:00
53082    23137    899    2016-12-17 22:44:00    2016-12-17 22:44:00
53083    23138    827    2016-12-17 08:06:00    2016-12-17 08:06:00
53084    23138    711    2016-12-17 08:27:00    2016-12-17 08:27:00
53085    23138    538    2016-12-17 02:15:00    2016-12-17 02:15:00
53086    23138    794    2016-12-17 18:54:00    2016-12-17 18:54:00
53087    23138    602    2016-12-17 11:29:00    2016-12-17 11:29:00
53088    23139    713    2016-12-17 22:40:00    2016-12-17 22:40:00
53089    23139    799    2016-12-17 09:00:00    2016-12-17 09:00:00
53090    23139    652    2016-12-17 04:40:00    2016-12-17 04:40:00
53091    23139    859    2016-12-17 16:30:00    2016-12-17 16:30:00
53092    23139    874    2016-12-17 21:24:00    2016-12-17 21:24:00
53093    23140    812    2016-12-17 10:23:00    2016-12-17 10:23:00
53094    23140    863    2016-12-17 22:55:00    2016-12-17 22:55:00
53095    23140    960    2016-12-17 18:39:00    2016-12-17 18:39:00
53096    23140    850    2016-12-17 07:19:00    2016-12-17 07:19:00
53097    23140    644    2016-12-17 03:38:00    2016-12-17 03:38:00
53098    23141    924    2016-12-17 04:01:00    2016-12-17 04:01:00
53099    23141    758    2016-12-17 07:39:00    2016-12-17 07:39:00
53100    23141    718    2016-12-17 14:04:00    2016-12-17 14:04:00
53101    23141    638    2016-12-17 01:32:00    2016-12-17 01:32:00
53102    23141    829    2016-12-17 18:10:00    2016-12-17 18:10:00
53103    23142    568    2016-12-17 08:48:00    2016-12-17 08:48:00
53104    23142    539    2016-12-17 20:52:00    2016-12-17 20:52:00
53105    23142    571    2016-12-17 11:51:00    2016-12-17 11:51:00
53106    23142    474    2016-12-17 21:42:00    2016-12-17 21:42:00
53107    23142    532    2016-12-17 05:54:00    2016-12-17 05:54:00
53108    23143    953    2016-12-17 16:57:00    2016-12-17 16:57:00
53109    23143    560    2016-12-17 13:42:00    2016-12-17 13:42:00
53110    23143    661    2016-12-17 13:17:00    2016-12-17 13:17:00
53111    23143    777    2016-12-17 08:10:00    2016-12-17 08:10:00
53112    23143    821    2016-12-17 16:02:00    2016-12-17 16:02:00
53113    23144    841    2016-12-17 07:58:00    2016-12-17 07:58:00
53114    23144    507    2016-12-17 21:26:00    2016-12-17 21:26:00
53115    23144    850    2016-12-17 23:16:00    2016-12-17 23:16:00
53116    23144    524    2016-12-17 21:08:00    2016-12-17 21:08:00
53117    23144    843    2016-12-17 16:32:00    2016-12-17 16:32:00
53118    23145    845    2016-12-17 18:23:00    2016-12-17 18:23:00
53119    23145    483    2016-12-17 20:40:00    2016-12-17 20:40:00
53120    23145    732    2016-12-17 19:18:00    2016-12-17 19:18:00
53121    23145    521    2016-12-17 21:00:00    2016-12-17 21:00:00
53122    23145    697    2016-12-17 17:34:00    2016-12-17 17:34:00
53123    23146    911    2016-12-17 08:55:00    2016-12-17 08:55:00
53124    23146    482    2016-12-17 10:17:00    2016-12-17 10:17:00
53125    23146    847    2016-12-17 02:00:00    2016-12-17 02:00:00
53126    23146    884    2016-12-17 18:37:00    2016-12-17 18:37:00
53127    23146    547    2016-12-17 04:46:00    2016-12-17 04:46:00
53128    23147    505    2016-12-17 06:18:00    2016-12-17 06:18:00
53129    23147    741    2016-12-17 07:03:00    2016-12-17 07:03:00
53130    23147    490    2016-12-17 07:54:00    2016-12-17 07:54:00
53131    23147    531    2016-12-17 10:46:00    2016-12-17 10:46:00
53132    23147    907    2016-12-17 12:45:00    2016-12-17 12:45:00
53133    23148    902    2016-12-17 14:23:00    2016-12-17 14:23:00
53134    23148    817    2016-12-17 11:32:00    2016-12-17 11:32:00
53135    23148    786    2016-12-17 15:17:00    2016-12-17 15:17:00
53136    23148    761    2016-12-17 13:21:00    2016-12-17 13:21:00
53137    23148    893    2016-12-17 21:00:00    2016-12-17 21:00:00
53138    23149    781    2016-12-17 11:48:00    2016-12-17 11:48:00
53139    23149    883    2016-12-17 07:39:00    2016-12-17 07:39:00
53140    23149    656    2016-12-17 18:30:00    2016-12-17 18:30:00
53141    23149    818    2016-12-17 20:57:00    2016-12-17 20:57:00
53142    23149    891    2016-12-17 03:58:00    2016-12-17 03:58:00
53143    23150    897    2016-12-17 06:35:00    2016-12-17 06:35:00
53144    23150    813    2016-12-17 06:10:00    2016-12-17 06:10:00
53145    23150    816    2016-12-17 13:24:00    2016-12-17 13:24:00
53146    23150    794    2016-12-17 21:10:00    2016-12-17 21:10:00
53147    23150    936    2016-12-17 23:47:00    2016-12-17 23:47:00
53148    23151    809    2016-12-17 20:29:00    2016-12-17 20:29:00
53149    23151    683    2016-12-17 03:52:00    2016-12-17 03:52:00
53150    23151    729    2016-12-17 15:44:00    2016-12-17 15:44:00
53151    23151    529    2016-12-17 07:21:00    2016-12-17 07:21:00
53152    23151    767    2016-12-17 22:54:00    2016-12-17 22:54:00
53153    23152    741    2016-12-17 18:17:00    2016-12-17 18:17:00
53154    23152    790    2016-12-17 21:28:00    2016-12-17 21:28:00
53155    23152    618    2016-12-17 16:42:00    2016-12-17 16:42:00
53156    23152    484    2016-12-17 06:25:00    2016-12-17 06:25:00
53157    23152    917    2016-12-17 20:03:00    2016-12-17 20:03:00
53158    23153    562    2016-12-17 17:36:00    2016-12-17 17:36:00
53159    23153    667    2016-12-17 21:35:00    2016-12-17 21:35:00
53160    23153    688    2016-12-17 05:34:00    2016-12-17 05:34:00
53161    23153    870    2016-12-17 05:37:00    2016-12-17 05:37:00
53162    23153    732    2016-12-17 10:50:00    2016-12-17 10:50:00
53163    23154    497    2016-12-17 01:28:00    2016-12-17 01:28:00
53164    23154    504    2016-12-17 07:26:00    2016-12-17 07:26:00
53165    23154    745    2016-12-17 10:59:00    2016-12-17 10:59:00
53166    23154    635    2016-12-17 02:23:00    2016-12-17 02:23:00
53167    23154    754    2016-12-17 07:10:00    2016-12-17 07:10:00
53168    23155    562    2016-12-17 18:45:00    2016-12-17 18:45:00
53169    23155    498    2016-12-17 14:07:00    2016-12-17 14:07:00
53170    23155    472    2016-12-17 14:05:00    2016-12-17 14:05:00
53171    23155    497    2016-12-17 09:01:00    2016-12-17 09:01:00
53172    23155    714    2016-12-17 20:35:00    2016-12-17 20:35:00
53173    23156    709    2016-12-17 06:34:00    2016-12-17 06:34:00
53174    23156    929    2016-12-17 18:44:00    2016-12-17 18:44:00
53175    23156    689    2016-12-17 19:13:00    2016-12-17 19:13:00
53176    23156    904    2016-12-17 12:06:00    2016-12-17 12:06:00
53177    23156    745    2016-12-17 23:05:00    2016-12-17 23:05:00
53178    23157    663    2016-12-17 13:50:00    2016-12-17 13:50:00
53179    23157    821    2016-12-17 04:25:00    2016-12-17 04:25:00
53180    23157    560    2016-12-17 22:28:00    2016-12-17 22:28:00
53181    23157    911    2016-12-17 21:39:00    2016-12-17 21:39:00
53182    23157    677    2016-12-17 13:01:00    2016-12-17 13:01:00
53183    23158    532    2016-12-17 14:27:00    2016-12-17 14:27:00
53184    23158    930    2016-12-17 04:33:00    2016-12-17 04:33:00
53185    23158    782    2016-12-17 01:57:00    2016-12-17 01:57:00
53186    23158    951    2016-12-17 19:44:00    2016-12-17 19:44:00
53187    23158    488    2016-12-17 07:03:00    2016-12-17 07:03:00
53188    23159    523    2016-12-17 08:57:00    2016-12-17 08:57:00
53189    23159    479    2016-12-17 10:15:00    2016-12-17 10:15:00
53190    23159    476    2016-12-17 21:25:00    2016-12-17 21:25:00
53191    23159    617    2016-12-17 06:12:00    2016-12-17 06:12:00
53192    23159    882    2016-12-17 08:32:00    2016-12-17 08:32:00
53193    23160    802    2016-12-17 12:59:00    2016-12-17 12:59:00
53194    23160    813    2016-12-17 22:23:00    2016-12-17 22:23:00
53195    23160    674    2016-12-17 11:44:00    2016-12-17 11:44:00
53196    23160    838    2016-12-17 08:19:00    2016-12-17 08:19:00
53197    23160    595    2016-12-17 20:32:00    2016-12-17 20:32:00
53198    23161    850    2016-12-17 19:54:00    2016-12-17 19:54:00
53199    23161    589    2016-12-17 01:00:00    2016-12-17 01:00:00
53200    23161    547    2016-12-17 07:25:00    2016-12-17 07:25:00
53201    23161    590    2016-12-17 20:21:00    2016-12-17 20:21:00
53202    23161    509    2016-12-17 21:05:00    2016-12-17 21:05:00
53203    23162    596    2016-12-17 19:02:00    2016-12-17 19:02:00
53204    23162    892    2016-12-17 07:25:00    2016-12-17 07:25:00
53205    23162    929    2016-12-17 20:36:00    2016-12-17 20:36:00
53206    23162    828    2016-12-17 17:59:00    2016-12-17 17:59:00
53207    23162    492    2016-12-17 10:12:00    2016-12-17 10:12:00
53208    23163    798    2016-12-17 17:09:00    2016-12-17 17:09:00
53209    23163    637    2016-12-17 01:45:00    2016-12-17 01:45:00
53210    23163    742    2016-12-17 02:54:00    2016-12-17 02:54:00
53211    23163    874    2016-12-17 06:46:00    2016-12-17 06:46:00
53212    23163    471    2016-12-17 11:26:00    2016-12-17 11:26:00
53213    23164    822    2016-12-17 12:25:00    2016-12-17 12:25:00
53214    23164    727    2016-12-17 01:08:00    2016-12-17 01:08:00
53215    23164    766    2016-12-17 23:19:00    2016-12-17 23:19:00
53216    23164    925    2016-12-17 21:08:00    2016-12-17 21:08:00
53217    23164    808    2016-12-17 17:36:00    2016-12-17 17:36:00
53218    23165    684    2016-12-17 08:23:00    2016-12-17 08:23:00
53219    23165    917    2016-12-17 19:53:00    2016-12-17 19:53:00
53220    23165    499    2016-12-17 15:01:00    2016-12-17 15:01:00
53221    23165    843    2016-12-17 08:10:00    2016-12-17 08:10:00
53222    23165    900    2016-12-17 11:49:00    2016-12-17 11:49:00
53223    23166    844    2016-12-17 12:25:00    2016-12-17 12:25:00
53224    23166    907    2016-12-17 16:40:00    2016-12-17 16:40:00
53225    23166    480    2016-12-17 05:46:00    2016-12-17 05:46:00
53226    23166    657    2016-12-17 07:15:00    2016-12-17 07:15:00
53227    23166    709    2016-12-17 07:10:00    2016-12-17 07:10:00
53228    23167    914    2016-12-17 18:51:00    2016-12-17 18:51:00
53229    23167    844    2016-12-17 20:51:00    2016-12-17 20:51:00
53230    23167    869    2016-12-17 23:18:00    2016-12-17 23:18:00
53231    23167    746    2016-12-17 12:55:00    2016-12-17 12:55:00
53232    23167    775    2016-12-17 11:12:00    2016-12-17 11:12:00
53233    23168    872    2016-12-17 21:17:00    2016-12-17 21:17:00
53234    23168    468    2016-12-17 10:13:00    2016-12-17 10:13:00
53235    23168    835    2016-12-17 05:03:00    2016-12-17 05:03:00
53236    23168    668    2016-12-17 15:18:00    2016-12-17 15:18:00
53237    23168    640    2016-12-17 02:56:00    2016-12-17 02:56:00
53238    23169    707    2016-12-17 16:18:00    2016-12-17 16:18:00
53239    23169    583    2016-12-17 04:07:00    2016-12-17 04:07:00
53240    23169    938    2016-12-17 05:26:00    2016-12-17 05:26:00
53241    23169    922    2016-12-17 15:15:00    2016-12-17 15:15:00
53242    23169    762    2016-12-17 21:02:00    2016-12-17 21:02:00
53243    23170    835    2016-12-17 03:54:00    2016-12-17 03:54:00
53244    23170    906    2016-12-17 11:40:00    2016-12-17 11:40:00
53245    23170    541    2016-12-17 19:42:00    2016-12-17 19:42:00
53246    23170    899    2016-12-17 18:38:00    2016-12-17 18:38:00
53247    23170    474    2016-12-17 12:01:00    2016-12-17 12:01:00
53248    23171    858    2016-12-17 17:57:00    2016-12-17 17:57:00
53249    23171    491    2016-12-17 15:05:00    2016-12-17 15:05:00
53250    23171    921    2016-12-17 19:55:00    2016-12-17 19:55:00
53251    23171    469    2016-12-17 19:54:00    2016-12-17 19:54:00
53252    23171    876    2016-12-17 01:01:00    2016-12-17 01:01:00
53253    23172    554    2016-12-17 12:41:00    2016-12-17 12:41:00
53254    23172    939    2016-12-17 08:50:00    2016-12-17 08:50:00
53255    23172    646    2016-12-17 17:50:00    2016-12-17 17:50:00
53256    23172    939    2016-12-17 12:39:00    2016-12-17 12:39:00
53257    23172    895    2016-12-17 01:01:00    2016-12-17 01:01:00
53258    23173    615    2016-12-17 03:04:00    2016-12-17 03:04:00
53259    23173    883    2016-12-17 05:16:00    2016-12-17 05:16:00
53260    23173    808    2016-12-17 20:05:00    2016-12-17 20:05:00
53261    23173    811    2016-12-17 13:43:00    2016-12-17 13:43:00
53262    23173    580    2016-12-17 09:15:00    2016-12-17 09:15:00
53263    23174    592    2016-12-17 03:43:00    2016-12-17 03:43:00
53264    23174    611    2016-12-17 18:18:00    2016-12-17 18:18:00
53265    23174    666    2016-12-17 10:07:00    2016-12-17 10:07:00
53266    23174    753    2016-12-17 07:22:00    2016-12-17 07:22:00
53267    23174    924    2016-12-17 20:58:00    2016-12-17 20:58:00
53268    23175    924    2016-12-17 07:25:00    2016-12-17 07:25:00
53269    23175    808    2016-12-17 09:40:00    2016-12-17 09:40:00
53270    23175    656    2016-12-17 22:54:00    2016-12-17 22:54:00
53271    23175    836    2016-12-17 18:16:00    2016-12-17 18:16:00
53272    23175    828    2016-12-17 08:56:00    2016-12-17 08:56:00
53273    23176    656    2016-12-17 06:54:00    2016-12-17 06:54:00
53274    23176    518    2016-12-17 20:44:00    2016-12-17 20:44:00
53275    23176    619    2016-12-17 17:30:00    2016-12-17 17:30:00
53276    23176    921    2016-12-17 14:40:00    2016-12-17 14:40:00
53277    23176    559    2016-12-17 18:18:00    2016-12-17 18:18:00
53278    23177    705    2016-12-17 03:25:00    2016-12-17 03:25:00
53279    23177    484    2016-12-17 09:45:00    2016-12-17 09:45:00
53280    23177    472    2016-12-17 14:25:00    2016-12-17 14:25:00
53281    23177    685    2016-12-17 12:47:00    2016-12-17 12:47:00
53282    23177    892    2016-12-17 03:31:00    2016-12-17 03:31:00
53283    23178    907    2016-12-17 09:11:00    2016-12-17 09:11:00
53284    23178    582    2016-12-17 06:50:00    2016-12-17 06:50:00
53285    23178    471    2016-12-17 22:02:00    2016-12-17 22:02:00
53286    23178    885    2016-12-17 10:42:00    2016-12-17 10:42:00
53287    23178    788    2016-12-17 12:22:00    2016-12-17 12:22:00
53288    23179    878    2016-12-18 01:51:00    2016-12-18 01:51:00
53289    23179    670    2016-12-18 12:20:00    2016-12-18 12:20:00
53290    23179    493    2016-12-18 21:03:00    2016-12-18 21:03:00
53291    23179    758    2016-12-18 06:28:00    2016-12-18 06:28:00
53292    23179    656    2016-12-18 18:07:00    2016-12-18 18:07:00
53293    23180    744    2016-12-18 22:15:00    2016-12-18 22:15:00
53294    23180    909    2016-12-18 02:06:00    2016-12-18 02:06:00
53295    23180    549    2016-12-18 06:58:00    2016-12-18 06:58:00
53296    23180    524    2016-12-18 09:29:00    2016-12-18 09:29:00
53297    23180    743    2016-12-18 02:33:00    2016-12-18 02:33:00
53298    23181    957    2016-12-18 21:32:00    2016-12-18 21:32:00
53299    23181    659    2016-12-18 02:27:00    2016-12-18 02:27:00
53300    23181    718    2016-12-18 21:33:00    2016-12-18 21:33:00
53301    23181    645    2016-12-18 20:05:00    2016-12-18 20:05:00
53302    23181    628    2016-12-18 04:25:00    2016-12-18 04:25:00
53303    23182    932    2016-12-18 10:20:00    2016-12-18 10:20:00
53304    23182    891    2016-12-18 05:43:00    2016-12-18 05:43:00
53305    23182    646    2016-12-18 11:04:00    2016-12-18 11:04:00
53306    23182    464    2016-12-18 19:48:00    2016-12-18 19:48:00
53307    23182    945    2016-12-18 19:36:00    2016-12-18 19:36:00
53308    23183    732    2016-12-18 23:15:00    2016-12-18 23:15:00
53309    23183    737    2016-12-18 17:50:00    2016-12-18 17:50:00
53310    23183    587    2016-12-18 15:57:00    2016-12-18 15:57:00
53311    23183    744    2016-12-18 07:15:00    2016-12-18 07:15:00
53312    23183    768    2016-12-18 05:18:00    2016-12-18 05:18:00
53313    23184    868    2016-12-18 20:16:00    2016-12-18 20:16:00
53314    23184    927    2016-12-18 09:47:00    2016-12-18 09:47:00
53315    23184    606    2016-12-18 11:40:00    2016-12-18 11:40:00
53316    23184    538    2016-12-18 16:45:00    2016-12-18 16:45:00
53317    23184    520    2016-12-18 14:14:00    2016-12-18 14:14:00
53318    23185    718    2016-12-18 03:43:00    2016-12-18 03:43:00
53319    23185    470    2016-12-18 16:05:00    2016-12-18 16:05:00
53320    23185    505    2016-12-18 07:02:00    2016-12-18 07:02:00
53321    23185    562    2016-12-18 11:15:00    2016-12-18 11:15:00
53322    23185    493    2016-12-18 12:42:00    2016-12-18 12:42:00
53323    23186    673    2016-12-18 18:10:00    2016-12-18 18:10:00
53324    23186    954    2016-12-18 14:21:00    2016-12-18 14:21:00
53325    23186    512    2016-12-18 03:53:00    2016-12-18 03:53:00
53326    23186    800    2016-12-18 08:52:00    2016-12-18 08:52:00
53327    23186    868    2016-12-18 02:24:00    2016-12-18 02:24:00
53328    23187    810    2016-12-18 01:11:00    2016-12-18 01:11:00
53329    23187    631    2016-12-18 01:23:00    2016-12-18 01:23:00
53330    23187    885    2016-12-18 13:40:00    2016-12-18 13:40:00
53331    23187    513    2016-12-18 12:04:00    2016-12-18 12:04:00
53332    23187    558    2016-12-18 09:20:00    2016-12-18 09:20:00
53333    23188    515    2016-12-18 21:31:00    2016-12-18 21:31:00
53334    23188    880    2016-12-18 21:41:00    2016-12-18 21:41:00
53335    23188    646    2016-12-18 03:39:00    2016-12-18 03:39:00
53336    23188    494    2016-12-18 04:26:00    2016-12-18 04:26:00
53337    23188    945    2016-12-18 23:32:00    2016-12-18 23:32:00
53338    23189    493    2016-12-18 20:20:00    2016-12-18 20:20:00
53339    23189    584    2016-12-18 15:51:00    2016-12-18 15:51:00
53340    23189    890    2016-12-18 18:00:00    2016-12-18 18:00:00
53341    23189    536    2016-12-18 12:17:00    2016-12-18 12:17:00
53342    23189    946    2016-12-18 04:36:00    2016-12-18 04:36:00
53343    23190    586    2016-12-18 09:40:00    2016-12-18 09:40:00
53344    23190    712    2016-12-18 06:14:00    2016-12-18 06:14:00
53345    23190    624    2016-12-18 01:57:00    2016-12-18 01:57:00
53346    23190    769    2016-12-18 17:58:00    2016-12-18 17:58:00
53347    23190    617    2016-12-18 07:06:00    2016-12-18 07:06:00
53348    23191    955    2016-12-18 02:19:00    2016-12-18 02:19:00
53349    23191    604    2016-12-18 09:23:00    2016-12-18 09:23:00
53350    23191    759    2016-12-18 04:49:00    2016-12-18 04:49:00
53351    23191    906    2016-12-18 03:01:00    2016-12-18 03:01:00
53352    23191    881    2016-12-18 01:24:00    2016-12-18 01:24:00
53353    23192    913    2016-12-18 13:09:00    2016-12-18 13:09:00
53354    23192    568    2016-12-18 21:19:00    2016-12-18 21:19:00
53355    23192    616    2016-12-18 18:44:00    2016-12-18 18:44:00
53356    23192    658    2016-12-18 02:30:00    2016-12-18 02:30:00
53357    23192    575    2016-12-18 16:07:00    2016-12-18 16:07:00
53358    23193    785    2016-12-18 22:08:00    2016-12-18 22:08:00
53359    23193    625    2016-12-18 15:07:00    2016-12-18 15:07:00
53360    23193    758    2016-12-18 13:13:00    2016-12-18 13:13:00
53361    23193    920    2016-12-18 14:15:00    2016-12-18 14:15:00
53362    23193    498    2016-12-18 08:52:00    2016-12-18 08:52:00
53363    23194    883    2016-12-18 12:52:00    2016-12-18 12:52:00
53364    23194    660    2016-12-18 15:00:00    2016-12-18 15:00:00
53365    23194    588    2016-12-18 22:57:00    2016-12-18 22:57:00
53366    23194    686    2016-12-18 14:27:00    2016-12-18 14:27:00
53367    23194    729    2016-12-18 22:03:00    2016-12-18 22:03:00
53368    23195    897    2016-12-18 02:06:00    2016-12-18 02:06:00
53369    23195    521    2016-12-18 20:46:00    2016-12-18 20:46:00
53370    23195    841    2016-12-18 23:49:00    2016-12-18 23:49:00
53371    23195    603    2016-12-18 18:48:00    2016-12-18 18:48:00
53372    23195    767    2016-12-18 06:02:00    2016-12-18 06:02:00
53373    23196    731    2016-12-18 14:28:00    2016-12-18 14:28:00
53374    23196    610    2016-12-18 11:43:00    2016-12-18 11:43:00
53375    23196    953    2016-12-18 10:51:00    2016-12-18 10:51:00
53376    23196    526    2016-12-18 13:27:00    2016-12-18 13:27:00
53377    23196    476    2016-12-18 07:44:00    2016-12-18 07:44:00
53378    23197    896    2016-12-18 17:50:00    2016-12-18 17:50:00
53379    23197    674    2016-12-18 23:17:00    2016-12-18 23:17:00
53380    23197    782    2016-12-18 11:58:00    2016-12-18 11:58:00
53381    23197    709    2016-12-18 11:48:00    2016-12-18 11:48:00
53382    23197    469    2016-12-18 06:08:00    2016-12-18 06:08:00
53383    23198    545    2016-12-18 17:18:00    2016-12-18 17:18:00
53384    23198    722    2016-12-18 12:18:00    2016-12-18 12:18:00
53385    23198    664    2016-12-18 10:33:00    2016-12-18 10:33:00
53386    23198    468    2016-12-18 23:49:00    2016-12-18 23:49:00
53387    23198    571    2016-12-18 15:21:00    2016-12-18 15:21:00
53388    23199    851    2016-12-18 15:21:00    2016-12-18 15:21:00
53389    23199    598    2016-12-18 06:21:00    2016-12-18 06:21:00
53390    23199    668    2016-12-18 02:42:00    2016-12-18 02:42:00
53391    23199    869    2016-12-18 15:33:00    2016-12-18 15:33:00
53392    23199    579    2016-12-18 02:52:00    2016-12-18 02:52:00
53393    23200    946    2016-12-18 18:15:00    2016-12-18 18:15:00
53394    23200    605    2016-12-18 23:00:00    2016-12-18 23:00:00
53395    23200    891    2016-12-18 16:31:00    2016-12-18 16:31:00
53396    23200    668    2016-12-18 10:35:00    2016-12-18 10:35:00
53397    23200    465    2016-12-18 01:43:00    2016-12-18 01:43:00
53398    23201    503    2016-12-18 13:59:00    2016-12-18 13:59:00
53399    23201    603    2016-12-18 19:34:00    2016-12-18 19:34:00
53400    23201    801    2016-12-18 06:53:00    2016-12-18 06:53:00
53401    23201    954    2016-12-18 16:49:00    2016-12-18 16:49:00
53402    23201    865    2016-12-18 15:57:00    2016-12-18 15:57:00
53403    23202    943    2016-12-18 04:45:00    2016-12-18 04:45:00
53404    23202    468    2016-12-18 07:28:00    2016-12-18 07:28:00
53405    23202    525    2016-12-18 05:30:00    2016-12-18 05:30:00
53406    23202    744    2016-12-18 04:21:00    2016-12-18 04:21:00
53407    23202    755    2016-12-18 20:18:00    2016-12-18 20:18:00
53408    23203    901    2016-12-18 12:38:00    2016-12-18 12:38:00
53409    23203    469    2016-12-18 06:01:00    2016-12-18 06:01:00
53410    23203    675    2016-12-18 20:28:00    2016-12-18 20:28:00
53411    23203    742    2016-12-18 09:32:00    2016-12-18 09:32:00
53412    23203    926    2016-12-18 05:51:00    2016-12-18 05:51:00
53413    23204    925    2016-12-18 21:46:00    2016-12-18 21:46:00
53414    23204    612    2016-12-18 07:15:00    2016-12-18 07:15:00
53415    23204    617    2016-12-18 06:13:00    2016-12-18 06:13:00
53416    23204    953    2016-12-18 02:33:00    2016-12-18 02:33:00
53417    23204    920    2016-12-18 14:05:00    2016-12-18 14:05:00
53418    23205    853    2016-12-18 11:19:00    2016-12-18 11:19:00
53419    23205    576    2016-12-18 13:53:00    2016-12-18 13:53:00
53420    23205    550    2016-12-18 23:43:00    2016-12-18 23:43:00
53421    23205    854    2016-12-18 18:13:00    2016-12-18 18:13:00
53422    23205    643    2016-12-18 10:28:00    2016-12-18 10:28:00
53423    23206    786    2016-12-18 20:57:00    2016-12-18 20:57:00
53424    23206    956    2016-12-18 05:43:00    2016-12-18 05:43:00
53425    23206    857    2016-12-18 02:19:00    2016-12-18 02:19:00
53426    23206    540    2016-12-18 06:26:00    2016-12-18 06:26:00
53427    23206    705    2016-12-18 03:10:00    2016-12-18 03:10:00
53428    23207    835    2016-12-18 12:12:00    2016-12-18 12:12:00
53429    23207    881    2016-12-18 19:04:00    2016-12-18 19:04:00
53430    23207    796    2016-12-18 18:32:00    2016-12-18 18:32:00
53431    23207    835    2016-12-18 14:28:00    2016-12-18 14:28:00
53432    23207    581    2016-12-18 03:55:00    2016-12-18 03:55:00
53433    23208    895    2016-12-18 02:16:00    2016-12-18 02:16:00
53434    23208    871    2016-12-18 03:17:00    2016-12-18 03:17:00
53435    23208    900    2016-12-18 12:00:00    2016-12-18 12:00:00
53436    23208    559    2016-12-18 20:22:00    2016-12-18 20:22:00
53437    23208    920    2016-12-18 18:20:00    2016-12-18 18:20:00
53438    23209    905    2016-12-18 07:04:00    2016-12-18 07:04:00
53439    23209    693    2016-12-18 21:21:00    2016-12-18 21:21:00
53440    23209    809    2016-12-18 11:51:00    2016-12-18 11:51:00
53441    23209    886    2016-12-18 02:27:00    2016-12-18 02:27:00
53442    23209    813    2016-12-18 17:00:00    2016-12-18 17:00:00
53443    23210    750    2016-12-18 04:00:00    2016-12-18 04:00:00
53444    23210    800    2016-12-18 03:46:00    2016-12-18 03:46:00
53445    23210    573    2016-12-18 01:51:00    2016-12-18 01:51:00
53446    23210    633    2016-12-18 21:38:00    2016-12-18 21:38:00
53447    23210    488    2016-12-18 23:12:00    2016-12-18 23:12:00
53448    23211    576    2016-12-18 17:25:00    2016-12-18 17:25:00
53449    23211    859    2016-12-18 04:00:00    2016-12-18 04:00:00
53450    23211    564    2016-12-18 03:03:00    2016-12-18 03:03:00
53451    23211    648    2016-12-18 03:48:00    2016-12-18 03:48:00
53452    23211    930    2016-12-18 01:03:00    2016-12-18 01:03:00
53453    23212    889    2016-12-18 10:28:00    2016-12-18 10:28:00
53454    23212    510    2016-12-18 05:06:00    2016-12-18 05:06:00
53455    23212    618    2016-12-18 05:51:00    2016-12-18 05:51:00
53456    23212    827    2016-12-18 14:43:00    2016-12-18 14:43:00
53457    23212    492    2016-12-18 07:22:00    2016-12-18 07:22:00
53458    23213    523    2016-12-18 16:50:00    2016-12-18 16:50:00
53459    23213    481    2016-12-18 15:11:00    2016-12-18 15:11:00
53460    23213    692    2016-12-18 14:01:00    2016-12-18 14:01:00
53461    23213    641    2016-12-18 17:27:00    2016-12-18 17:27:00
53462    23213    869    2016-12-18 15:01:00    2016-12-18 15:01:00
53463    23214    704    2016-12-18 08:23:00    2016-12-18 08:23:00
53464    23214    959    2016-12-18 04:29:00    2016-12-18 04:29:00
53465    23214    499    2016-12-18 06:09:00    2016-12-18 06:09:00
53466    23214    931    2016-12-18 12:29:00    2016-12-18 12:29:00
53467    23214    586    2016-12-18 19:01:00    2016-12-18 19:01:00
53468    23215    914    2016-12-18 12:39:00    2016-12-18 12:39:00
53469    23215    593    2016-12-18 08:59:00    2016-12-18 08:59:00
53470    23215    521    2016-12-18 19:18:00    2016-12-18 19:18:00
53471    23215    597    2016-12-18 05:05:00    2016-12-18 05:05:00
53472    23215    590    2016-12-18 17:48:00    2016-12-18 17:48:00
53473    23216    856    2016-12-18 14:22:00    2016-12-18 14:22:00
53474    23216    514    2016-12-18 14:27:00    2016-12-18 14:27:00
53475    23216    579    2016-12-18 06:12:00    2016-12-18 06:12:00
53476    23216    500    2016-12-18 10:43:00    2016-12-18 10:43:00
53477    23216    628    2016-12-18 04:41:00    2016-12-18 04:41:00
53478    23217    672    2016-12-18 11:02:00    2016-12-18 11:02:00
53479    23217    956    2016-12-18 18:23:00    2016-12-18 18:23:00
53480    23217    956    2016-12-18 01:28:00    2016-12-18 01:28:00
53481    23217    792    2016-12-18 03:53:00    2016-12-18 03:53:00
53482    23217    749    2016-12-18 15:10:00    2016-12-18 15:10:00
53483    23218    946    2016-12-18 07:26:00    2016-12-18 07:26:00
53484    23218    543    2016-12-18 16:01:00    2016-12-18 16:01:00
53485    23218    489    2016-12-18 12:27:00    2016-12-18 12:27:00
53486    23218    520    2016-12-18 21:50:00    2016-12-18 21:50:00
53487    23218    742    2016-12-18 10:38:00    2016-12-18 10:38:00
53488    23219    478    2016-12-18 07:51:00    2016-12-18 07:51:00
53489    23219    531    2016-12-18 21:11:00    2016-12-18 21:11:00
53490    23219    858    2016-12-18 10:46:00    2016-12-18 10:46:00
53491    23219    594    2016-12-18 17:36:00    2016-12-18 17:36:00
53492    23219    687    2016-12-18 23:02:00    2016-12-18 23:02:00
53493    23220    556    2016-12-18 22:34:00    2016-12-18 22:34:00
53494    23220    867    2016-12-18 06:33:00    2016-12-18 06:33:00
53495    23220    508    2016-12-18 23:00:00    2016-12-18 23:00:00
53496    23220    575    2016-12-18 06:17:00    2016-12-18 06:17:00
53497    23220    746    2016-12-18 22:51:00    2016-12-18 22:51:00
53498    23221    613    2016-12-18 09:20:00    2016-12-18 09:20:00
53499    23221    629    2016-12-18 05:22:00    2016-12-18 05:22:00
53500    23221    607    2016-12-18 04:04:00    2016-12-18 04:04:00
53501    23221    736    2016-12-18 03:23:00    2016-12-18 03:23:00
53502    23221    582    2016-12-18 19:00:00    2016-12-18 19:00:00
53503    23222    483    2016-12-18 13:49:00    2016-12-18 13:49:00
53504    23222    553    2016-12-18 13:34:00    2016-12-18 13:34:00
53505    23222    926    2016-12-18 07:31:00    2016-12-18 07:31:00
53506    23222    623    2016-12-18 17:39:00    2016-12-18 17:39:00
53507    23222    658    2016-12-18 04:25:00    2016-12-18 04:25:00
53508    23223    573    2016-12-18 15:14:00    2016-12-18 15:14:00
53509    23223    735    2016-12-18 16:24:00    2016-12-18 16:24:00
53510    23223    485    2016-12-18 14:58:00    2016-12-18 14:58:00
53511    23223    573    2016-12-18 03:09:00    2016-12-18 03:09:00
53512    23223    759    2016-12-18 23:03:00    2016-12-18 23:03:00
53513    23224    669    2016-12-18 07:48:00    2016-12-18 07:48:00
53514    23224    731    2016-12-18 10:26:00    2016-12-18 10:26:00
53515    23224    765    2016-12-18 14:00:00    2016-12-18 14:00:00
53516    23224    513    2016-12-18 20:33:00    2016-12-18 20:33:00
53517    23224    561    2016-12-18 07:15:00    2016-12-18 07:15:00
53518    23225    826    2016-12-18 15:38:00    2016-12-18 15:38:00
53519    23225    787    2016-12-18 05:32:00    2016-12-18 05:32:00
53520    23225    798    2016-12-18 01:53:00    2016-12-18 01:53:00
53521    23225    679    2016-12-18 15:39:00    2016-12-18 15:39:00
53522    23225    536    2016-12-18 09:14:00    2016-12-18 09:14:00
53523    23226    518    2016-12-18 12:21:00    2016-12-18 12:21:00
53524    23226    748    2016-12-18 17:38:00    2016-12-18 17:38:00
53525    23226    914    2016-12-18 07:28:00    2016-12-18 07:28:00
53526    23226    764    2016-12-18 09:39:00    2016-12-18 09:39:00
53527    23226    709    2016-12-18 01:12:00    2016-12-18 01:12:00
53528    23227    867    2016-12-18 14:03:00    2016-12-18 14:03:00
53529    23227    697    2016-12-18 17:12:00    2016-12-18 17:12:00
53530    23227    503    2016-12-18 02:27:00    2016-12-18 02:27:00
53531    23227    874    2016-12-18 06:47:00    2016-12-18 06:47:00
53532    23227    571    2016-12-18 03:22:00    2016-12-18 03:22:00
53533    23228    883    2016-12-18 11:15:00    2016-12-18 11:15:00
53534    23228    560    2016-12-18 19:20:00    2016-12-18 19:20:00
53535    23228    795    2016-12-18 02:22:00    2016-12-18 02:22:00
53536    23228    951    2016-12-18 18:48:00    2016-12-18 18:48:00
53537    23228    878    2016-12-18 13:50:00    2016-12-18 13:50:00
53538    23229    873    2016-12-18 20:29:00    2016-12-18 20:29:00
53539    23229    945    2016-12-18 22:51:00    2016-12-18 22:51:00
53540    23229    506    2016-12-18 05:26:00    2016-12-18 05:26:00
53541    23229    954    2016-12-18 23:17:00    2016-12-18 23:17:00
53542    23229    598    2016-12-18 02:00:00    2016-12-18 02:00:00
53543    23230    898    2016-12-18 02:38:00    2016-12-18 02:38:00
53544    23230    770    2016-12-18 11:57:00    2016-12-18 11:57:00
53545    23230    617    2016-12-18 01:28:00    2016-12-18 01:28:00
53546    23230    724    2016-12-18 19:07:00    2016-12-18 19:07:00
53547    23230    828    2016-12-18 23:42:00    2016-12-18 23:42:00
53548    23231    541    2016-12-18 09:01:00    2016-12-18 09:01:00
53549    23231    819    2016-12-18 20:55:00    2016-12-18 20:55:00
53550    23231    793    2016-12-18 16:00:00    2016-12-18 16:00:00
53551    23231    845    2016-12-18 05:12:00    2016-12-18 05:12:00
53552    23231    517    2016-12-18 20:09:00    2016-12-18 20:09:00
53553    23232    496    2016-12-18 12:08:00    2016-12-18 12:08:00
53554    23232    496    2016-12-18 21:39:00    2016-12-18 21:39:00
53555    23232    804    2016-12-18 02:11:00    2016-12-18 02:11:00
53556    23232    573    2016-12-18 03:19:00    2016-12-18 03:19:00
53557    23232    889    2016-12-18 12:39:00    2016-12-18 12:39:00
53558    23233    695    2016-12-18 19:59:00    2016-12-18 19:59:00
53559    23233    637    2016-12-18 06:01:00    2016-12-18 06:01:00
53560    23233    938    2016-12-18 11:46:00    2016-12-18 11:46:00
53561    23233    799    2016-12-18 07:08:00    2016-12-18 07:08:00
53562    23233    924    2016-12-18 21:44:00    2016-12-18 21:44:00
53563    23234    879    2016-12-18 11:32:00    2016-12-18 11:32:00
53564    23234    703    2016-12-18 06:47:00    2016-12-18 06:47:00
53565    23234    552    2016-12-18 02:04:00    2016-12-18 02:04:00
53566    23234    521    2016-12-18 09:05:00    2016-12-18 09:05:00
53567    23234    891    2016-12-18 06:51:00    2016-12-18 06:51:00
53568    23235    474    2016-12-18 13:45:00    2016-12-18 13:45:00
53569    23235    803    2016-12-18 08:40:00    2016-12-18 08:40:00
53570    23235    528    2016-12-18 05:29:00    2016-12-18 05:29:00
53571    23235    579    2016-12-18 03:56:00    2016-12-18 03:56:00
53572    23235    472    2016-12-18 19:14:00    2016-12-18 19:14:00
53573    23236    615    2016-12-18 07:23:00    2016-12-18 07:23:00
53574    23236    507    2016-12-18 15:48:00    2016-12-18 15:48:00
53575    23236    564    2016-12-18 01:55:00    2016-12-18 01:55:00
53576    23236    835    2016-12-18 09:53:00    2016-12-18 09:53:00
53577    23236    866    2016-12-18 09:33:00    2016-12-18 09:33:00
53578    23237    733    2016-12-18 22:00:00    2016-12-18 22:00:00
53579    23237    549    2016-12-18 22:06:00    2016-12-18 22:06:00
53580    23237    587    2016-12-18 06:22:00    2016-12-18 06:22:00
53581    23237    774    2016-12-18 10:17:00    2016-12-18 10:17:00
53582    23237    760    2016-12-18 12:29:00    2016-12-18 12:29:00
53583    23238    585    2016-12-18 15:46:00    2016-12-18 15:46:00
53584    23238    897    2016-12-18 01:52:00    2016-12-18 01:52:00
53585    23238    795    2016-12-18 19:07:00    2016-12-18 19:07:00
53586    23238    534    2016-12-18 02:18:00    2016-12-18 02:18:00
53587    23238    605    2016-12-18 11:36:00    2016-12-18 11:36:00
53588    23239    590    2016-12-18 08:22:00    2016-12-18 08:22:00
53589    23239    591    2016-12-18 18:06:00    2016-12-18 18:06:00
53590    23239    612    2016-12-18 20:48:00    2016-12-18 20:48:00
53591    23239    790    2016-12-18 10:17:00    2016-12-18 10:17:00
53592    23239    628    2016-12-18 12:58:00    2016-12-18 12:58:00
53593    23240    855    2016-12-18 17:30:00    2016-12-18 17:30:00
53594    23240    896    2016-12-18 18:42:00    2016-12-18 18:42:00
53595    23240    624    2016-12-18 13:45:00    2016-12-18 13:45:00
53596    23240    497    2016-12-18 07:30:00    2016-12-18 07:30:00
53597    23240    522    2016-12-18 23:06:00    2016-12-18 23:06:00
53598    23241    902    2016-12-18 06:58:00    2016-12-18 06:58:00
53599    23241    474    2016-12-18 20:08:00    2016-12-18 20:08:00
53600    23241    466    2016-12-18 08:01:00    2016-12-18 08:01:00
53601    23241    543    2016-12-18 01:30:00    2016-12-18 01:30:00
53602    23241    868    2016-12-18 16:37:00    2016-12-18 16:37:00
53603    23242    550    2016-12-18 02:23:00    2016-12-18 02:23:00
53604    23242    656    2016-12-18 05:56:00    2016-12-18 05:56:00
53605    23242    874    2016-12-18 19:16:00    2016-12-18 19:16:00
53606    23242    481    2016-12-18 19:01:00    2016-12-18 19:01:00
53607    23242    930    2016-12-18 11:15:00    2016-12-18 11:15:00
53608    23243    517    2016-12-18 03:02:00    2016-12-18 03:02:00
53609    23243    755    2016-12-18 16:51:00    2016-12-18 16:51:00
53610    23243    669    2016-12-18 04:11:00    2016-12-18 04:11:00
53611    23243    858    2016-12-18 06:27:00    2016-12-18 06:27:00
53612    23243    690    2016-12-18 12:37:00    2016-12-18 12:37:00
53613    23244    618    2016-12-18 23:35:00    2016-12-18 23:35:00
53614    23244    882    2016-12-18 16:36:00    2016-12-18 16:36:00
53615    23244    741    2016-12-18 01:15:00    2016-12-18 01:15:00
53616    23244    805    2016-12-18 17:14:00    2016-12-18 17:14:00
53617    23244    713    2016-12-18 23:41:00    2016-12-18 23:41:00
53618    23245    800    2016-12-18 19:36:00    2016-12-18 19:36:00
53619    23245    628    2016-12-18 17:09:00    2016-12-18 17:09:00
53620    23245    515    2016-12-18 04:16:00    2016-12-18 04:16:00
53621    23245    643    2016-12-18 11:55:00    2016-12-18 11:55:00
53622    23245    595    2016-12-18 19:04:00    2016-12-18 19:04:00
53623    23246    489    2016-12-18 01:58:00    2016-12-18 01:58:00
53624    23246    909    2016-12-18 11:28:00    2016-12-18 11:28:00
53625    23246    800    2016-12-18 15:05:00    2016-12-18 15:05:00
53626    23246    859    2016-12-18 22:50:00    2016-12-18 22:50:00
53627    23246    949    2016-12-18 16:48:00    2016-12-18 16:48:00
53628    23247    853    2016-12-18 07:12:00    2016-12-18 07:12:00
53629    23247    602    2016-12-18 19:41:00    2016-12-18 19:41:00
53630    23247    623    2016-12-18 11:16:00    2016-12-18 11:16:00
53631    23247    772    2016-12-18 19:47:00    2016-12-18 19:47:00
53632    23247    500    2016-12-18 22:22:00    2016-12-18 22:22:00
53633    23248    819    2016-12-18 23:29:00    2016-12-18 23:29:00
53634    23248    762    2016-12-18 14:03:00    2016-12-18 14:03:00
53635    23248    880    2016-12-18 11:21:00    2016-12-18 11:21:00
53636    23248    801    2016-12-18 14:57:00    2016-12-18 14:57:00
53637    23248    632    2016-12-18 19:15:00    2016-12-18 19:15:00
53638    23249    602    2016-12-18 23:37:00    2016-12-18 23:37:00
53639    23249    813    2016-12-18 03:30:00    2016-12-18 03:30:00
53640    23249    898    2016-12-18 18:25:00    2016-12-18 18:25:00
53641    23249    838    2016-12-18 12:55:00    2016-12-18 12:55:00
53642    23249    833    2016-12-18 02:00:00    2016-12-18 02:00:00
53643    23250    884    2016-12-18 07:13:00    2016-12-18 07:13:00
53644    23250    910    2016-12-18 16:10:00    2016-12-18 16:10:00
53645    23250    697    2016-12-18 11:17:00    2016-12-18 11:17:00
53646    23250    725    2016-12-18 05:29:00    2016-12-18 05:29:00
53647    23250    622    2016-12-18 17:36:00    2016-12-18 17:36:00
53648    23251    880    2016-12-18 08:58:00    2016-12-18 08:58:00
53649    23251    634    2016-12-18 06:05:00    2016-12-18 06:05:00
53650    23251    507    2016-12-18 17:40:00    2016-12-18 17:40:00
53651    23251    827    2016-12-18 21:31:00    2016-12-18 21:31:00
53652    23251    846    2016-12-18 16:31:00    2016-12-18 16:31:00
53653    23252    805    2016-12-18 11:00:00    2016-12-18 11:00:00
53654    23252    701    2016-12-18 15:16:00    2016-12-18 15:16:00
53655    23252    912    2016-12-18 19:39:00    2016-12-18 19:39:00
53656    23252    726    2016-12-18 18:12:00    2016-12-18 18:12:00
53657    23252    848    2016-12-18 11:53:00    2016-12-18 11:53:00
53658    23253    659    2016-12-18 14:58:00    2016-12-18 14:58:00
53659    23253    801    2016-12-18 03:22:00    2016-12-18 03:22:00
53660    23253    914    2016-12-18 13:47:00    2016-12-18 13:47:00
53661    23253    764    2016-12-18 14:59:00    2016-12-18 14:59:00
53662    23253    802    2016-12-18 15:49:00    2016-12-18 15:49:00
53663    23254    942    2016-12-18 07:45:00    2016-12-18 07:45:00
53664    23254    688    2016-12-18 11:31:00    2016-12-18 11:31:00
53665    23254    881    2016-12-18 11:32:00    2016-12-18 11:32:00
53666    23254    742    2016-12-18 13:47:00    2016-12-18 13:47:00
53667    23254    824    2016-12-18 13:38:00    2016-12-18 13:38:00
53668    23255    638    2016-12-18 01:50:00    2016-12-18 01:50:00
53669    23255    886    2016-12-18 14:12:00    2016-12-18 14:12:00
53670    23255    781    2016-12-18 15:29:00    2016-12-18 15:29:00
53671    23255    669    2016-12-18 23:40:00    2016-12-18 23:40:00
53672    23255    538    2016-12-18 11:58:00    2016-12-18 11:58:00
53673    23256    611    2016-12-18 07:46:00    2016-12-18 07:46:00
53674    23256    768    2016-12-18 02:30:00    2016-12-18 02:30:00
53675    23256    472    2016-12-18 03:37:00    2016-12-18 03:37:00
53676    23256    599    2016-12-18 17:02:00    2016-12-18 17:02:00
53677    23256    606    2016-12-18 18:09:00    2016-12-18 18:09:00
53678    23257    573    2016-12-18 03:16:00    2016-12-18 03:16:00
53679    23257    914    2016-12-18 14:01:00    2016-12-18 14:01:00
53680    23257    915    2016-12-18 10:06:00    2016-12-18 10:06:00
53681    23257    961    2016-12-18 09:58:00    2016-12-18 09:58:00
53682    23257    570    2016-12-18 04:12:00    2016-12-18 04:12:00
53683    23258    795    2016-12-19 15:30:00    2016-12-19 15:30:00
53684    23258    593    2016-12-19 23:20:00    2016-12-19 23:20:00
53685    23258    930    2016-12-19 07:27:00    2016-12-19 07:27:00
53686    23258    629    2016-12-19 12:25:00    2016-12-19 12:25:00
53687    23258    485    2016-12-19 13:32:00    2016-12-19 13:32:00
53688    23259    735    2016-12-19 11:12:00    2016-12-19 11:12:00
53689    23259    584    2016-12-19 20:02:00    2016-12-19 20:02:00
53690    23259    642    2016-12-19 13:48:00    2016-12-19 13:48:00
53691    23259    656    2016-12-19 23:36:00    2016-12-19 23:36:00
53692    23259    588    2016-12-19 09:53:00    2016-12-19 09:53:00
53693    23260    849    2016-12-19 23:16:00    2016-12-19 23:16:00
53694    23260    733    2016-12-19 14:14:00    2016-12-19 14:14:00
53695    23260    845    2016-12-19 06:47:00    2016-12-19 06:47:00
53696    23260    943    2016-12-19 11:31:00    2016-12-19 11:31:00
53697    23260    676    2016-12-19 01:53:00    2016-12-19 01:53:00
53698    23261    926    2016-12-19 12:13:00    2016-12-19 12:13:00
53699    23261    582    2016-12-19 18:46:00    2016-12-19 18:46:00
53700    23261    674    2016-12-19 02:40:00    2016-12-19 02:40:00
53701    23261    922    2016-12-19 06:37:00    2016-12-19 06:37:00
53702    23261    863    2016-12-19 07:57:00    2016-12-19 07:57:00
53703    23262    874    2016-12-19 06:34:00    2016-12-19 06:34:00
53704    23262    820    2016-12-19 17:01:00    2016-12-19 17:01:00
53705    23262    919    2016-12-19 12:14:00    2016-12-19 12:14:00
53706    23262    826    2016-12-19 20:04:00    2016-12-19 20:04:00
53707    23262    655    2016-12-19 17:13:00    2016-12-19 17:13:00
53708    23263    699    2016-12-19 21:43:00    2016-12-19 21:43:00
53709    23263    946    2016-12-19 05:27:00    2016-12-19 05:27:00
53710    23263    591    2016-12-19 20:34:00    2016-12-19 20:34:00
53711    23263    910    2016-12-19 23:39:00    2016-12-19 23:39:00
53712    23263    755    2016-12-19 03:07:00    2016-12-19 03:07:00
53713    23264    721    2016-12-19 19:52:00    2016-12-19 19:52:00
53714    23264    642    2016-12-19 19:11:00    2016-12-19 19:11:00
53715    23264    848    2016-12-19 07:17:00    2016-12-19 07:17:00
53716    23264    689    2016-12-19 16:23:00    2016-12-19 16:23:00
53717    23264    902    2016-12-19 04:08:00    2016-12-19 04:08:00
53718    23265    716    2016-12-19 20:30:00    2016-12-19 20:30:00
53719    23265    771    2016-12-19 22:51:00    2016-12-19 22:51:00
53720    23265    850    2016-12-19 20:19:00    2016-12-19 20:19:00
53721    23265    561    2016-12-19 05:30:00    2016-12-19 05:30:00
53722    23265    627    2016-12-19 14:31:00    2016-12-19 14:31:00
53723    23266    538    2016-12-19 09:07:00    2016-12-19 09:07:00
53724    23266    638    2016-12-19 20:10:00    2016-12-19 20:10:00
53725    23266    887    2016-12-19 14:18:00    2016-12-19 14:18:00
53726    23266    777    2016-12-19 21:34:00    2016-12-19 21:34:00
53727    23266    643    2016-12-19 10:04:00    2016-12-19 10:04:00
53728    23267    914    2016-12-19 22:36:00    2016-12-19 22:36:00
53729    23267    496    2016-12-19 11:59:00    2016-12-19 11:59:00
53730    23267    582    2016-12-19 18:36:00    2016-12-19 18:36:00
53731    23267    786    2016-12-19 11:10:00    2016-12-19 11:10:00
53732    23267    794    2016-12-19 18:51:00    2016-12-19 18:51:00
53733    23268    666    2016-12-19 12:34:00    2016-12-19 12:34:00
53734    23268    634    2016-12-19 17:15:00    2016-12-19 17:15:00
53735    23268    552    2016-12-19 06:57:00    2016-12-19 06:57:00
53736    23268    493    2016-12-19 19:23:00    2016-12-19 19:23:00
53737    23268    792    2016-12-19 15:33:00    2016-12-19 15:33:00
53738    23269    827    2016-12-19 09:43:00    2016-12-19 09:43:00
53739    23269    613    2016-12-19 14:20:00    2016-12-19 14:20:00
53740    23269    744    2016-12-19 10:34:00    2016-12-19 10:34:00
53741    23269    504    2016-12-19 05:15:00    2016-12-19 05:15:00
53742    23269    577    2016-12-19 18:40:00    2016-12-19 18:40:00
53743    23270    548    2016-12-19 09:03:00    2016-12-19 09:03:00
53744    23270    562    2016-12-19 15:43:00    2016-12-19 15:43:00
53745    23270    501    2016-12-19 05:27:00    2016-12-19 05:27:00
53746    23270    731    2016-12-19 06:38:00    2016-12-19 06:38:00
53747    23270    855    2016-12-19 21:58:00    2016-12-19 21:58:00
53748    23271    727    2016-12-19 22:21:00    2016-12-19 22:21:00
53749    23271    658    2016-12-19 10:21:00    2016-12-19 10:21:00
53750    23271    798    2016-12-19 17:56:00    2016-12-19 17:56:00
53751    23271    577    2016-12-19 03:59:00    2016-12-19 03:59:00
53752    23271    608    2016-12-19 18:10:00    2016-12-19 18:10:00
53753    23272    600    2016-12-19 06:43:00    2016-12-19 06:43:00
53754    23272    556    2016-12-19 12:25:00    2016-12-19 12:25:00
53755    23272    796    2016-12-19 10:35:00    2016-12-19 10:35:00
53756    23272    816    2016-12-19 23:23:00    2016-12-19 23:23:00
53757    23272    592    2016-12-19 17:53:00    2016-12-19 17:53:00
53758    23273    700    2016-12-19 21:53:00    2016-12-19 21:53:00
53759    23273    524    2016-12-19 22:59:00    2016-12-19 22:59:00
53760    23273    702    2016-12-19 20:13:00    2016-12-19 20:13:00
53761    23273    684    2016-12-19 03:39:00    2016-12-19 03:39:00
53762    23273    668    2016-12-19 14:39:00    2016-12-19 14:39:00
53763    23274    684    2016-12-19 11:21:00    2016-12-19 11:21:00
53764    23274    566    2016-12-19 22:18:00    2016-12-19 22:18:00
53765    23274    652    2016-12-19 01:03:00    2016-12-19 01:03:00
53766    23274    871    2016-12-19 03:04:00    2016-12-19 03:04:00
53767    23274    654    2016-12-19 04:02:00    2016-12-19 04:02:00
53768    23275    770    2016-12-19 22:29:00    2016-12-19 22:29:00
53769    23275    807    2016-12-19 14:10:00    2016-12-19 14:10:00
53770    23275    936    2016-12-19 12:46:00    2016-12-19 12:46:00
53771    23275    926    2016-12-19 23:52:00    2016-12-19 23:52:00
53772    23275    624    2016-12-19 06:00:00    2016-12-19 06:00:00
53773    23276    792    2016-12-19 15:16:00    2016-12-19 15:16:00
53774    23276    708    2016-12-19 19:28:00    2016-12-19 19:28:00
53775    23276    496    2016-12-19 09:39:00    2016-12-19 09:39:00
53776    23276    752    2016-12-19 05:29:00    2016-12-19 05:29:00
53777    23276    806    2016-12-19 16:36:00    2016-12-19 16:36:00
53778    23277    878    2016-12-19 09:26:00    2016-12-19 09:26:00
53779    23277    955    2016-12-19 17:12:00    2016-12-19 17:12:00
53780    23277    777    2016-12-19 04:17:00    2016-12-19 04:17:00
53781    23277    845    2016-12-19 11:19:00    2016-12-19 11:19:00
53782    23277    911    2016-12-19 08:50:00    2016-12-19 08:50:00
53783    23278    800    2016-12-19 11:48:00    2016-12-19 11:48:00
53784    23278    576    2016-12-19 21:44:00    2016-12-19 21:44:00
53785    23278    539    2016-12-19 10:16:00    2016-12-19 10:16:00
53786    23278    795    2016-12-19 21:08:00    2016-12-19 21:08:00
53787    23278    941    2016-12-19 08:14:00    2016-12-19 08:14:00
53788    23279    741    2016-12-19 11:57:00    2016-12-19 11:57:00
53789    23279    703    2016-12-19 11:24:00    2016-12-19 11:24:00
53790    23279    842    2016-12-19 01:43:00    2016-12-19 01:43:00
53791    23279    464    2016-12-19 23:32:00    2016-12-19 23:32:00
53792    23279    857    2016-12-19 04:59:00    2016-12-19 04:59:00
53793    23280    605    2016-12-19 20:12:00    2016-12-19 20:12:00
53794    23280    822    2016-12-19 10:07:00    2016-12-19 10:07:00
53795    23280    505    2016-12-19 08:54:00    2016-12-19 08:54:00
53796    23280    558    2016-12-19 03:40:00    2016-12-19 03:40:00
53797    23280    948    2016-12-19 23:10:00    2016-12-19 23:10:00
53798    23281    500    2016-12-19 11:34:00    2016-12-19 11:34:00
53799    23281    636    2016-12-19 10:35:00    2016-12-19 10:35:00
53800    23281    578    2016-12-19 11:26:00    2016-12-19 11:26:00
53801    23281    476    2016-12-19 16:44:00    2016-12-19 16:44:00
53802    23281    850    2016-12-19 18:08:00    2016-12-19 18:08:00
53803    23282    551    2016-12-19 13:51:00    2016-12-19 13:51:00
53804    23282    884    2016-12-19 10:11:00    2016-12-19 10:11:00
53805    23282    514    2016-12-19 18:45:00    2016-12-19 18:45:00
53806    23282    648    2016-12-19 12:15:00    2016-12-19 12:15:00
53807    23282    686    2016-12-19 07:53:00    2016-12-19 07:53:00
53808    23283    782    2016-12-19 04:55:00    2016-12-19 04:55:00
53809    23283    585    2016-12-19 19:17:00    2016-12-19 19:17:00
53810    23283    600    2016-12-19 14:55:00    2016-12-19 14:55:00
53811    23283    475    2016-12-19 07:07:00    2016-12-19 07:07:00
53812    23283    780    2016-12-19 14:03:00    2016-12-19 14:03:00
53813    23284    926    2016-12-19 08:25:00    2016-12-19 08:25:00
53814    23284    779    2016-12-19 02:26:00    2016-12-19 02:26:00
53815    23284    776    2016-12-19 13:02:00    2016-12-19 13:02:00
53816    23284    511    2016-12-19 10:48:00    2016-12-19 10:48:00
53817    23284    493    2016-12-19 17:49:00    2016-12-19 17:49:00
53818    23285    797    2016-12-19 02:30:00    2016-12-19 02:30:00
53819    23285    936    2016-12-19 11:08:00    2016-12-19 11:08:00
53820    23285    761    2016-12-19 10:15:00    2016-12-19 10:15:00
53821    23285    535    2016-12-19 11:12:00    2016-12-19 11:12:00
53822    23285    794    2016-12-19 18:13:00    2016-12-19 18:13:00
53823    23286    646    2016-12-19 20:23:00    2016-12-19 20:23:00
53824    23286    852    2016-12-19 02:17:00    2016-12-19 02:17:00
53825    23286    955    2016-12-19 14:07:00    2016-12-19 14:07:00
53826    23286    900    2016-12-19 08:37:00    2016-12-19 08:37:00
53827    23286    820    2016-12-19 08:46:00    2016-12-19 08:46:00
53828    23287    864    2016-12-19 10:05:00    2016-12-19 10:05:00
53829    23287    654    2016-12-19 03:28:00    2016-12-19 03:28:00
53830    23287    866    2016-12-19 06:44:00    2016-12-19 06:44:00
53831    23287    688    2016-12-19 15:59:00    2016-12-19 15:59:00
53832    23287    913    2016-12-19 02:48:00    2016-12-19 02:48:00
53833    23288    746    2016-12-19 23:44:00    2016-12-19 23:44:00
53834    23288    718    2016-12-19 09:22:00    2016-12-19 09:22:00
53835    23288    731    2016-12-19 10:04:00    2016-12-19 10:04:00
53836    23288    753    2016-12-19 07:23:00    2016-12-19 07:23:00
53837    23288    512    2016-12-19 08:37:00    2016-12-19 08:37:00
53838    23289    947    2016-12-19 16:37:00    2016-12-19 16:37:00
53839    23289    611    2016-12-19 08:36:00    2016-12-19 08:36:00
53840    23289    678    2016-12-19 03:40:00    2016-12-19 03:40:00
53841    23289    819    2016-12-19 10:04:00    2016-12-19 10:04:00
53842    23289    650    2016-12-19 12:02:00    2016-12-19 12:02:00
53843    23290    629    2016-12-19 09:33:00    2016-12-19 09:33:00
53844    23290    926    2016-12-19 10:54:00    2016-12-19 10:54:00
53845    23290    641    2016-12-19 01:07:00    2016-12-19 01:07:00
53846    23290    870    2016-12-19 15:59:00    2016-12-19 15:59:00
53847    23290    560    2016-12-19 23:11:00    2016-12-19 23:11:00
53848    23291    567    2016-12-19 14:57:00    2016-12-19 14:57:00
53849    23291    599    2016-12-19 22:47:00    2016-12-19 22:47:00
53850    23291    618    2016-12-19 13:59:00    2016-12-19 13:59:00
53851    23291    524    2016-12-19 11:17:00    2016-12-19 11:17:00
53852    23291    527    2016-12-19 18:51:00    2016-12-19 18:51:00
53853    23292    777    2016-12-19 06:27:00    2016-12-19 06:27:00
53854    23292    570    2016-12-19 20:13:00    2016-12-19 20:13:00
53855    23292    650    2016-12-19 08:16:00    2016-12-19 08:16:00
53856    23292    852    2016-12-19 11:53:00    2016-12-19 11:53:00
53857    23292    536    2016-12-19 22:25:00    2016-12-19 22:25:00
53858    23293    685    2016-12-19 15:47:00    2016-12-19 15:47:00
53859    23293    595    2016-12-19 14:59:00    2016-12-19 14:59:00
53860    23293    930    2016-12-19 10:12:00    2016-12-19 10:12:00
53861    23293    822    2016-12-19 11:37:00    2016-12-19 11:37:00
53862    23293    771    2016-12-19 12:06:00    2016-12-19 12:06:00
53863    23294    938    2016-12-19 19:08:00    2016-12-19 19:08:00
53864    23294    718    2016-12-19 05:36:00    2016-12-19 05:36:00
53865    23294    826    2016-12-19 09:38:00    2016-12-19 09:38:00
53866    23294    586    2016-12-19 01:59:00    2016-12-19 01:59:00
53867    23294    520    2016-12-19 13:48:00    2016-12-19 13:48:00
53868    23295    927    2016-12-19 11:57:00    2016-12-19 11:57:00
53869    23295    743    2016-12-19 14:33:00    2016-12-19 14:33:00
53870    23295    597    2016-12-19 02:13:00    2016-12-19 02:13:00
53871    23295    793    2016-12-19 07:54:00    2016-12-19 07:54:00
53872    23295    922    2016-12-19 03:55:00    2016-12-19 03:55:00
53873    23296    692    2016-12-19 22:17:00    2016-12-19 22:17:00
53874    23296    801    2016-12-19 17:52:00    2016-12-19 17:52:00
53875    23296    616    2016-12-19 22:00:00    2016-12-19 22:00:00
53876    23296    623    2016-12-19 12:45:00    2016-12-19 12:45:00
53877    23296    545    2016-12-19 20:13:00    2016-12-19 20:13:00
53878    23297    562    2016-12-19 14:45:00    2016-12-19 14:45:00
53879    23297    908    2016-12-19 10:50:00    2016-12-19 10:50:00
53880    23297    693    2016-12-19 23:00:00    2016-12-19 23:00:00
53881    23297    573    2016-12-19 07:05:00    2016-12-19 07:05:00
53882    23297    698    2016-12-19 11:34:00    2016-12-19 11:34:00
53883    23298    914    2016-12-19 03:05:00    2016-12-19 03:05:00
53884    23298    526    2016-12-19 17:23:00    2016-12-19 17:23:00
53885    23298    578    2016-12-19 19:11:00    2016-12-19 19:11:00
53886    23298    907    2016-12-19 06:40:00    2016-12-19 06:40:00
53887    23298    835    2016-12-19 23:10:00    2016-12-19 23:10:00
53888    23299    682    2016-12-19 19:48:00    2016-12-19 19:48:00
53889    23299    732    2016-12-19 08:48:00    2016-12-19 08:48:00
53890    23299    755    2016-12-19 01:07:00    2016-12-19 01:07:00
53891    23299    716    2016-12-19 17:08:00    2016-12-19 17:08:00
53892    23299    693    2016-12-19 11:49:00    2016-12-19 11:49:00
53893    23300    737    2016-12-19 10:09:00    2016-12-19 10:09:00
53894    23300    727    2016-12-19 10:16:00    2016-12-19 10:16:00
53895    23300    627    2016-12-19 16:20:00    2016-12-19 16:20:00
53896    23300    541    2016-12-19 02:30:00    2016-12-19 02:30:00
53897    23300    533    2016-12-19 03:43:00    2016-12-19 03:43:00
53898    23301    527    2016-12-19 13:40:00    2016-12-19 13:40:00
53899    23301    894    2016-12-19 12:38:00    2016-12-19 12:38:00
53900    23301    901    2016-12-19 09:35:00    2016-12-19 09:35:00
53901    23301    678    2016-12-19 16:39:00    2016-12-19 16:39:00
53902    23301    901    2016-12-19 20:26:00    2016-12-19 20:26:00
53903    23302    826    2016-12-19 21:19:00    2016-12-19 21:19:00
53904    23302    617    2016-12-19 21:02:00    2016-12-19 21:02:00
53905    23302    791    2016-12-19 11:32:00    2016-12-19 11:32:00
53906    23302    849    2016-12-19 12:06:00    2016-12-19 12:06:00
53907    23302    837    2016-12-19 05:51:00    2016-12-19 05:51:00
53908    23303    914    2016-12-19 04:12:00    2016-12-19 04:12:00
53909    23303    548    2016-12-19 23:26:00    2016-12-19 23:26:00
53910    23303    736    2016-12-19 11:20:00    2016-12-19 11:20:00
53911    23303    651    2016-12-19 19:56:00    2016-12-19 19:56:00
53912    23303    615    2016-12-19 17:08:00    2016-12-19 17:08:00
53913    23304    654    2016-12-19 22:59:00    2016-12-19 22:59:00
53914    23304    761    2016-12-19 01:53:00    2016-12-19 01:53:00
53915    23304    734    2016-12-19 16:47:00    2016-12-19 16:47:00
53916    23304    474    2016-12-19 07:27:00    2016-12-19 07:27:00
53917    23304    638    2016-12-19 22:27:00    2016-12-19 22:27:00
53918    23305    640    2016-12-19 02:42:00    2016-12-19 02:42:00
53919    23305    909    2016-12-19 11:30:00    2016-12-19 11:30:00
53920    23305    888    2016-12-19 08:41:00    2016-12-19 08:41:00
53921    23305    609    2016-12-19 12:52:00    2016-12-19 12:52:00
53922    23305    852    2016-12-19 07:28:00    2016-12-19 07:28:00
53923    23306    739    2016-12-19 20:30:00    2016-12-19 20:30:00
53924    23306    657    2016-12-19 05:30:00    2016-12-19 05:30:00
53925    23306    720    2016-12-19 04:01:00    2016-12-19 04:01:00
53926    23306    528    2016-12-19 03:38:00    2016-12-19 03:38:00
53927    23306    800    2016-12-19 04:17:00    2016-12-19 04:17:00
53928    23307    799    2016-12-19 15:18:00    2016-12-19 15:18:00
53929    23307    909    2016-12-19 06:54:00    2016-12-19 06:54:00
53930    23307    593    2016-12-19 09:26:00    2016-12-19 09:26:00
53931    23307    708    2016-12-19 01:43:00    2016-12-19 01:43:00
53932    23307    872    2016-12-19 08:03:00    2016-12-19 08:03:00
53933    23308    561    2016-12-19 22:57:00    2016-12-19 22:57:00
53934    23308    731    2016-12-19 03:45:00    2016-12-19 03:45:00
53935    23308    902    2016-12-19 07:44:00    2016-12-19 07:44:00
53936    23308    790    2016-12-19 06:01:00    2016-12-19 06:01:00
53937    23308    700    2016-12-19 07:34:00    2016-12-19 07:34:00
53938    23309    740    2016-12-19 18:46:00    2016-12-19 18:46:00
53939    23309    944    2016-12-19 13:12:00    2016-12-19 13:12:00
53940    23309    879    2016-12-19 12:01:00    2016-12-19 12:01:00
53941    23309    689    2016-12-19 20:39:00    2016-12-19 20:39:00
53942    23309    534    2016-12-19 03:19:00    2016-12-19 03:19:00
53943    23310    904    2016-12-19 12:44:00    2016-12-19 12:44:00
53944    23310    690    2016-12-19 08:19:00    2016-12-19 08:19:00
53945    23310    602    2016-12-19 07:23:00    2016-12-19 07:23:00
53946    23310    793    2016-12-19 19:59:00    2016-12-19 19:59:00
53947    23310    481    2016-12-19 08:44:00    2016-12-19 08:44:00
53948    23311    827    2016-12-19 21:29:00    2016-12-19 21:29:00
53949    23311    594    2016-12-19 15:33:00    2016-12-19 15:33:00
53950    23311    768    2016-12-19 02:58:00    2016-12-19 02:58:00
53951    23311    575    2016-12-19 04:02:00    2016-12-19 04:02:00
53952    23311    722    2016-12-19 23:38:00    2016-12-19 23:38:00
53953    23312    895    2016-12-19 03:56:00    2016-12-19 03:56:00
53954    23312    517    2016-12-19 23:23:00    2016-12-19 23:23:00
53955    23312    495    2016-12-19 20:33:00    2016-12-19 20:33:00
53956    23312    542    2016-12-19 09:05:00    2016-12-19 09:05:00
53957    23312    947    2016-12-19 11:01:00    2016-12-19 11:01:00
53958    23313    486    2016-12-19 10:37:00    2016-12-19 10:37:00
53959    23313    903    2016-12-19 22:15:00    2016-12-19 22:15:00
53960    23313    836    2016-12-19 02:41:00    2016-12-19 02:41:00
53961    23313    616    2016-12-19 20:45:00    2016-12-19 20:45:00
53962    23313    621    2016-12-19 22:48:00    2016-12-19 22:48:00
53963    23314    502    2016-12-19 13:24:00    2016-12-19 13:24:00
53964    23314    698    2016-12-19 16:35:00    2016-12-19 16:35:00
53965    23314    512    2016-12-19 14:13:00    2016-12-19 14:13:00
53966    23314    947    2016-12-19 20:11:00    2016-12-19 20:11:00
53967    23314    722    2016-12-19 08:19:00    2016-12-19 08:19:00
53968    23315    469    2016-12-19 12:50:00    2016-12-19 12:50:00
53969    23315    561    2016-12-19 16:31:00    2016-12-19 16:31:00
53970    23315    852    2016-12-19 14:48:00    2016-12-19 14:48:00
53971    23315    903    2016-12-19 23:07:00    2016-12-19 23:07:00
53972    23315    576    2016-12-19 09:05:00    2016-12-19 09:05:00
53973    23316    623    2016-12-19 14:13:00    2016-12-19 14:13:00
53974    23316    669    2016-12-19 10:48:00    2016-12-19 10:48:00
53975    23316    918    2016-12-19 13:55:00    2016-12-19 13:55:00
53976    23316    910    2016-12-19 18:15:00    2016-12-19 18:15:00
53977    23316    898    2016-12-19 08:04:00    2016-12-19 08:04:00
53978    23317    838    2016-12-19 11:42:00    2016-12-19 11:42:00
53979    23317    484    2016-12-19 02:15:00    2016-12-19 02:15:00
53980    23317    604    2016-12-19 03:26:00    2016-12-19 03:26:00
53981    23317    465    2016-12-19 18:16:00    2016-12-19 18:16:00
53982    23317    950    2016-12-19 09:49:00    2016-12-19 09:49:00
53983    23318    937    2016-12-19 21:20:00    2016-12-19 21:20:00
53984    23318    791    2016-12-19 13:57:00    2016-12-19 13:57:00
53985    23318    465    2016-12-19 14:32:00    2016-12-19 14:32:00
53986    23318    933    2016-12-19 04:35:00    2016-12-19 04:35:00
53987    23318    832    2016-12-19 07:33:00    2016-12-19 07:33:00
53988    23319    739    2016-12-19 07:08:00    2016-12-19 07:08:00
53989    23319    914    2016-12-19 13:19:00    2016-12-19 13:19:00
53990    23319    610    2016-12-19 05:03:00    2016-12-19 05:03:00
53991    23319    902    2016-12-19 14:08:00    2016-12-19 14:08:00
53992    23319    731    2016-12-19 08:15:00    2016-12-19 08:15:00
53993    23320    626    2016-12-19 02:36:00    2016-12-19 02:36:00
53994    23320    952    2016-12-19 07:00:00    2016-12-19 07:00:00
53995    23320    680    2016-12-19 20:39:00    2016-12-19 20:39:00
53996    23320    880    2016-12-19 22:26:00    2016-12-19 22:26:00
53997    23320    740    2016-12-19 05:51:00    2016-12-19 05:51:00
53998    23321    843    2016-12-19 19:50:00    2016-12-19 19:50:00
53999    23321    923    2016-12-19 23:23:00    2016-12-19 23:23:00
54000    23321    901    2016-12-19 14:53:00    2016-12-19 14:53:00
54001    23321    779    2016-12-19 17:08:00    2016-12-19 17:08:00
54002    23321    732    2016-12-19 13:34:00    2016-12-19 13:34:00
54003    23322    510    2016-12-19 03:19:00    2016-12-19 03:19:00
54004    23322    561    2016-12-19 06:05:00    2016-12-19 06:05:00
54005    23322    598    2016-12-19 13:42:00    2016-12-19 13:42:00
54006    23322    486    2016-12-19 07:20:00    2016-12-19 07:20:00
54007    23322    735    2016-12-19 23:31:00    2016-12-19 23:31:00
54008    23323    610    2016-12-19 23:17:00    2016-12-19 23:17:00
54009    23323    718    2016-12-19 04:01:00    2016-12-19 04:01:00
54010    23323    790    2016-12-19 21:54:00    2016-12-19 21:54:00
54011    23323    657    2016-12-19 18:02:00    2016-12-19 18:02:00
54012    23323    832    2016-12-19 21:00:00    2016-12-19 21:00:00
54013    23324    534    2016-12-19 02:09:00    2016-12-19 02:09:00
54014    23324    545    2016-12-19 04:31:00    2016-12-19 04:31:00
54015    23324    727    2016-12-19 17:45:00    2016-12-19 17:45:00
54016    23324    843    2016-12-19 09:17:00    2016-12-19 09:17:00
54017    23324    699    2016-12-19 14:52:00    2016-12-19 14:52:00
54018    23325    533    2016-12-19 16:46:00    2016-12-19 16:46:00
54019    23325    489    2016-12-19 19:35:00    2016-12-19 19:35:00
54020    23325    829    2016-12-19 15:23:00    2016-12-19 15:23:00
54021    23325    900    2016-12-19 10:47:00    2016-12-19 10:47:00
54022    23325    818    2016-12-19 14:26:00    2016-12-19 14:26:00
54023    23326    566    2016-12-19 07:55:00    2016-12-19 07:55:00
54024    23326    502    2016-12-19 21:10:00    2016-12-19 21:10:00
54025    23326    743    2016-12-19 02:33:00    2016-12-19 02:33:00
54026    23326    554    2016-12-19 05:19:00    2016-12-19 05:19:00
54027    23326    695    2016-12-19 09:55:00    2016-12-19 09:55:00
54028    23327    838    2016-12-19 11:13:00    2016-12-19 11:13:00
54029    23327    606    2016-12-19 01:13:00    2016-12-19 01:13:00
54030    23327    784    2016-12-19 12:50:00    2016-12-19 12:50:00
54031    23327    716    2016-12-19 15:39:00    2016-12-19 15:39:00
54032    23327    960    2016-12-19 18:19:00    2016-12-19 18:19:00
54033    23328    594    2016-12-19 07:57:00    2016-12-19 07:57:00
54034    23328    741    2016-12-19 08:46:00    2016-12-19 08:46:00
54035    23328    637    2016-12-19 23:32:00    2016-12-19 23:32:00
54036    23328    799    2016-12-19 12:27:00    2016-12-19 12:27:00
54037    23328    584    2016-12-19 14:14:00    2016-12-19 14:14:00
54038    23329    463    2016-12-19 20:25:00    2016-12-19 20:25:00
54039    23329    698    2016-12-19 08:53:00    2016-12-19 08:53:00
54040    23329    466    2016-12-19 05:56:00    2016-12-19 05:56:00
54041    23329    675    2016-12-19 18:54:00    2016-12-19 18:54:00
54042    23329    797    2016-12-19 08:07:00    2016-12-19 08:07:00
54043    23330    813    2016-12-19 09:00:00    2016-12-19 09:00:00
54044    23330    594    2016-12-19 11:21:00    2016-12-19 11:21:00
54045    23330    946    2016-12-19 03:12:00    2016-12-19 03:12:00
54046    23330    946    2016-12-19 02:46:00    2016-12-19 02:46:00
54047    23330    731    2016-12-19 12:45:00    2016-12-19 12:45:00
54048    23331    533    2016-12-19 02:00:00    2016-12-19 02:00:00
54049    23331    822    2016-12-19 13:25:00    2016-12-19 13:25:00
54050    23331    769    2016-12-19 17:18:00    2016-12-19 17:18:00
54051    23331    933    2016-12-19 22:10:00    2016-12-19 22:10:00
54052    23331    823    2016-12-19 05:01:00    2016-12-19 05:01:00
54053    23332    737    2016-12-19 03:07:00    2016-12-19 03:07:00
54054    23332    729    2016-12-19 06:16:00    2016-12-19 06:16:00
54055    23332    924    2016-12-19 18:05:00    2016-12-19 18:05:00
54056    23332    490    2016-12-19 04:16:00    2016-12-19 04:16:00
54057    23332    773    2016-12-19 13:36:00    2016-12-19 13:36:00
54058    23333    753    2016-12-19 07:26:00    2016-12-19 07:26:00
54059    23333    930    2016-12-19 22:15:00    2016-12-19 22:15:00
54060    23333    772    2016-12-19 21:44:00    2016-12-19 21:44:00
54061    23333    572    2016-12-19 19:27:00    2016-12-19 19:27:00
54062    23333    543    2016-12-19 01:58:00    2016-12-19 01:58:00
54063    23334    487    2016-12-19 08:02:00    2016-12-19 08:02:00
54064    23334    479    2016-12-19 08:24:00    2016-12-19 08:24:00
54065    23334    674    2016-12-19 01:49:00    2016-12-19 01:49:00
54066    23334    810    2016-12-19 17:21:00    2016-12-19 17:21:00
54067    23334    532    2016-12-19 03:01:00    2016-12-19 03:01:00
54068    23335    514    2016-12-19 14:07:00    2016-12-19 14:07:00
54069    23335    871    2016-12-19 11:33:00    2016-12-19 11:33:00
54070    23335    954    2016-12-19 17:22:00    2016-12-19 17:22:00
54071    23335    908    2016-12-19 11:01:00    2016-12-19 11:01:00
54072    23335    565    2016-12-19 06:10:00    2016-12-19 06:10:00
54073    23336    848    2016-12-19 19:31:00    2016-12-19 19:31:00
54074    23336    943    2016-12-19 07:00:00    2016-12-19 07:00:00
54075    23336    907    2016-12-19 18:10:00    2016-12-19 18:10:00
54076    23336    587    2016-12-19 13:32:00    2016-12-19 13:32:00
54077    23336    755    2016-12-19 09:25:00    2016-12-19 09:25:00
54078    23337    514    2016-12-19 11:16:00    2016-12-19 11:16:00
54079    23337    541    2016-12-19 20:59:00    2016-12-19 20:59:00
54080    23337    645    2016-12-19 08:03:00    2016-12-19 08:03:00
54081    23337    693    2016-12-19 10:37:00    2016-12-19 10:37:00
54082    23337    492    2016-12-19 17:48:00    2016-12-19 17:48:00
54083    23338    960    2016-12-19 11:12:00    2016-12-19 11:12:00
54084    23338    694    2016-12-19 13:31:00    2016-12-19 13:31:00
54085    23338    866    2016-12-19 02:32:00    2016-12-19 02:32:00
54086    23338    895    2016-12-19 21:14:00    2016-12-19 21:14:00
54087    23338    837    2016-12-19 20:11:00    2016-12-19 20:11:00
54088    23339    562    2016-12-19 16:05:00    2016-12-19 16:05:00
54089    23339    485    2016-12-19 19:50:00    2016-12-19 19:50:00
54090    23339    894    2016-12-19 20:08:00    2016-12-19 20:08:00
54091    23339    932    2016-12-19 03:42:00    2016-12-19 03:42:00
54092    23339    910    2016-12-19 15:42:00    2016-12-19 15:42:00
54093    23340    929    2016-12-20 02:03:00    2016-12-20 02:03:00
54094    23340    646    2016-12-20 20:54:00    2016-12-20 20:54:00
54095    23340    691    2016-12-20 10:44:00    2016-12-20 10:44:00
54096    23340    730    2016-12-20 20:55:00    2016-12-20 20:55:00
54097    23340    648    2016-12-20 22:56:00    2016-12-20 22:56:00
54098    23341    839    2016-12-20 20:58:00    2016-12-20 20:58:00
54099    23341    475    2016-12-20 20:25:00    2016-12-20 20:25:00
54100    23341    497    2016-12-20 02:52:00    2016-12-20 02:52:00
54101    23341    650    2016-12-20 07:16:00    2016-12-20 07:16:00
54102    23341    703    2016-12-20 06:26:00    2016-12-20 06:26:00
54103    23342    482    2016-12-20 11:46:00    2016-12-20 11:46:00
54104    23342    679    2016-12-20 04:12:00    2016-12-20 04:12:00
54105    23342    693    2016-12-20 05:02:00    2016-12-20 05:02:00
54106    23342    568    2016-12-20 10:42:00    2016-12-20 10:42:00
54107    23342    732    2016-12-20 08:17:00    2016-12-20 08:17:00
54108    23343    867    2016-12-20 11:10:00    2016-12-20 11:10:00
54109    23343    844    2016-12-20 02:48:00    2016-12-20 02:48:00
54110    23343    728    2016-12-20 18:53:00    2016-12-20 18:53:00
54111    23343    463    2016-12-20 04:48:00    2016-12-20 04:48:00
54112    23343    474    2016-12-20 20:19:00    2016-12-20 20:19:00
54113    23344    674    2016-12-20 23:52:00    2016-12-20 23:52:00
54114    23344    630    2016-12-20 16:20:00    2016-12-20 16:20:00
54115    23344    580    2016-12-20 07:49:00    2016-12-20 07:49:00
54116    23344    526    2016-12-20 01:13:00    2016-12-20 01:13:00
54117    23344    651    2016-12-20 07:43:00    2016-12-20 07:43:00
54118    23345    485    2016-12-20 23:10:00    2016-12-20 23:10:00
54119    23345    714    2016-12-20 15:04:00    2016-12-20 15:04:00
54120    23345    500    2016-12-20 19:40:00    2016-12-20 19:40:00
54121    23345    704    2016-12-20 07:40:00    2016-12-20 07:40:00
54122    23345    704    2016-12-20 05:06:00    2016-12-20 05:06:00
54123    23346    704    2016-12-20 09:57:00    2016-12-20 09:57:00
54124    23346    917    2016-12-20 21:34:00    2016-12-20 21:34:00
54125    23346    687    2016-12-20 07:55:00    2016-12-20 07:55:00
54126    23346    507    2016-12-20 10:16:00    2016-12-20 10:16:00
54127    23346    837    2016-12-20 20:11:00    2016-12-20 20:11:00
54128    23347    850    2016-12-20 14:41:00    2016-12-20 14:41:00
54129    23347    598    2016-12-20 17:24:00    2016-12-20 17:24:00
54130    23347    561    2016-12-20 04:54:00    2016-12-20 04:54:00
54131    23347    662    2016-12-20 19:40:00    2016-12-20 19:40:00
54132    23347    684    2016-12-20 05:22:00    2016-12-20 05:22:00
54133    23348    874    2016-12-20 23:05:00    2016-12-20 23:05:00
54134    23348    631    2016-12-20 08:18:00    2016-12-20 08:18:00
54135    23348    545    2016-12-20 19:03:00    2016-12-20 19:03:00
54136    23348    531    2016-12-20 15:11:00    2016-12-20 15:11:00
54137    23348    772    2016-12-20 09:24:00    2016-12-20 09:24:00
54138    23349    750    2016-12-20 07:56:00    2016-12-20 07:56:00
54139    23349    828    2016-12-20 23:32:00    2016-12-20 23:32:00
54140    23349    758    2016-12-20 04:58:00    2016-12-20 04:58:00
54141    23349    480    2016-12-20 21:37:00    2016-12-20 21:37:00
54142    23349    501    2016-12-20 19:16:00    2016-12-20 19:16:00
54143    23350    726    2016-12-20 11:12:00    2016-12-20 11:12:00
54144    23350    829    2016-12-20 23:31:00    2016-12-20 23:31:00
54145    23350    489    2016-12-20 14:47:00    2016-12-20 14:47:00
54146    23350    597    2016-12-20 19:57:00    2016-12-20 19:57:00
54147    23350    935    2016-12-20 22:22:00    2016-12-20 22:22:00
54148    23351    594    2016-12-20 22:36:00    2016-12-20 22:36:00
54149    23351    800    2016-12-20 18:15:00    2016-12-20 18:15:00
54150    23351    744    2016-12-20 14:10:00    2016-12-20 14:10:00
54151    23351    601    2016-12-20 11:41:00    2016-12-20 11:41:00
54152    23351    592    2016-12-20 09:48:00    2016-12-20 09:48:00
54153    23352    845    2016-12-20 10:38:00    2016-12-20 10:38:00
54154    23352    631    2016-12-20 04:57:00    2016-12-20 04:57:00
54155    23352    674    2016-12-20 16:21:00    2016-12-20 16:21:00
54156    23352    498    2016-12-20 09:32:00    2016-12-20 09:32:00
54157    23352    700    2016-12-20 20:19:00    2016-12-20 20:19:00
54158    23353    469    2016-12-20 16:41:00    2016-12-20 16:41:00
54159    23353    790    2016-12-20 19:47:00    2016-12-20 19:47:00
54160    23353    910    2016-12-20 02:13:00    2016-12-20 02:13:00
54161    23353    624    2016-12-20 18:14:00    2016-12-20 18:14:00
54162    23353    781    2016-12-20 08:30:00    2016-12-20 08:30:00
54163    23354    950    2016-12-20 20:28:00    2016-12-20 20:28:00
54164    23354    644    2016-12-20 05:46:00    2016-12-20 05:46:00
54165    23354    472    2016-12-20 16:56:00    2016-12-20 16:56:00
54166    23354    611    2016-12-20 06:26:00    2016-12-20 06:26:00
54167    23354    536    2016-12-20 17:37:00    2016-12-20 17:37:00
54168    23355    510    2016-12-20 17:00:00    2016-12-20 17:00:00
54169    23355    486    2016-12-20 01:24:00    2016-12-20 01:24:00
54170    23355    559    2016-12-20 19:48:00    2016-12-20 19:48:00
54171    23355    858    2016-12-20 09:09:00    2016-12-20 09:09:00
54172    23355    537    2016-12-20 08:12:00    2016-12-20 08:12:00
54173    23356    495    2016-12-20 23:18:00    2016-12-20 23:18:00
54174    23356    903    2016-12-20 13:42:00    2016-12-20 13:42:00
54175    23356    651    2016-12-20 09:03:00    2016-12-20 09:03:00
54176    23356    763    2016-12-20 18:39:00    2016-12-20 18:39:00
54177    23356    613    2016-12-20 09:53:00    2016-12-20 09:53:00
54178    23357    526    2016-12-20 22:38:00    2016-12-20 22:38:00
54179    23357    844    2016-12-20 17:12:00    2016-12-20 17:12:00
54180    23357    601    2016-12-20 13:12:00    2016-12-20 13:12:00
54181    23357    795    2016-12-20 17:27:00    2016-12-20 17:27:00
54182    23357    795    2016-12-20 06:54:00    2016-12-20 06:54:00
54183    23358    795    2016-12-20 05:19:00    2016-12-20 05:19:00
54184    23358    915    2016-12-20 23:44:00    2016-12-20 23:44:00
54185    23358    781    2016-12-20 02:12:00    2016-12-20 02:12:00
54186    23358    632    2016-12-20 02:22:00    2016-12-20 02:22:00
54187    23358    921    2016-12-20 02:15:00    2016-12-20 02:15:00
54188    23359    751    2016-12-20 21:54:00    2016-12-20 21:54:00
54189    23359    679    2016-12-20 06:23:00    2016-12-20 06:23:00
54190    23359    716    2016-12-20 19:49:00    2016-12-20 19:49:00
54191    23359    727    2016-12-20 04:18:00    2016-12-20 04:18:00
54192    23359    792    2016-12-20 16:56:00    2016-12-20 16:56:00
54193    23360    890    2016-12-20 18:35:00    2016-12-20 18:35:00
54194    23360    539    2016-12-20 11:30:00    2016-12-20 11:30:00
54195    23360    687    2016-12-20 02:50:00    2016-12-20 02:50:00
54196    23360    576    2016-12-20 12:06:00    2016-12-20 12:06:00
54197    23360    838    2016-12-20 15:27:00    2016-12-20 15:27:00
54198    23361    602    2016-12-20 02:22:00    2016-12-20 02:22:00
54199    23361    588    2016-12-20 04:25:00    2016-12-20 04:25:00
54200    23361    543    2016-12-20 01:56:00    2016-12-20 01:56:00
54201    23361    810    2016-12-20 09:15:00    2016-12-20 09:15:00
54202    23361    737    2016-12-20 17:21:00    2016-12-20 17:21:00
54203    23362    897    2016-12-20 14:13:00    2016-12-20 14:13:00
54204    23362    903    2016-12-20 01:10:00    2016-12-20 01:10:00
54205    23362    762    2016-12-20 09:16:00    2016-12-20 09:16:00
54206    23362    546    2016-12-20 01:52:00    2016-12-20 01:52:00
54207    23362    872    2016-12-20 19:44:00    2016-12-20 19:44:00
54208    23363    539    2016-12-20 03:53:00    2016-12-20 03:53:00
54209    23363    867    2016-12-20 23:52:00    2016-12-20 23:52:00
54210    23363    486    2016-12-20 19:28:00    2016-12-20 19:28:00
54211    23363    639    2016-12-20 01:25:00    2016-12-20 01:25:00
54212    23363    918    2016-12-20 14:50:00    2016-12-20 14:50:00
54213    23364    680    2016-12-20 04:51:00    2016-12-20 04:51:00
54214    23364    601    2016-12-20 07:16:00    2016-12-20 07:16:00
54215    23364    552    2016-12-20 10:28:00    2016-12-20 10:28:00
54216    23364    876    2016-12-20 12:07:00    2016-12-20 12:07:00
54217    23364    672    2016-12-20 15:37:00    2016-12-20 15:37:00
54218    23365    630    2016-12-20 04:18:00    2016-12-20 04:18:00
54219    23365    474    2016-12-20 11:17:00    2016-12-20 11:17:00
54220    23365    918    2016-12-20 16:17:00    2016-12-20 16:17:00
54221    23365    864    2016-12-20 17:22:00    2016-12-20 17:22:00
54222    23365    724    2016-12-20 01:06:00    2016-12-20 01:06:00
54223    23366    524    2016-12-20 23:26:00    2016-12-20 23:26:00
54224    23366    900    2016-12-20 21:10:00    2016-12-20 21:10:00
54225    23366    757    2016-12-20 07:10:00    2016-12-20 07:10:00
54226    23366    607    2016-12-20 05:44:00    2016-12-20 05:44:00
54227    23366    940    2016-12-20 16:59:00    2016-12-20 16:59:00
54228    23367    824    2016-12-20 12:23:00    2016-12-20 12:23:00
54229    23367    846    2016-12-20 07:55:00    2016-12-20 07:55:00
54230    23367    890    2016-12-20 16:30:00    2016-12-20 16:30:00
54231    23367    949    2016-12-20 08:59:00    2016-12-20 08:59:00
54232    23367    464    2016-12-20 01:13:00    2016-12-20 01:13:00
54233    23368    862    2016-12-20 20:54:00    2016-12-20 20:54:00
54234    23368    888    2016-12-20 18:13:00    2016-12-20 18:13:00
54235    23368    805    2016-12-20 12:12:00    2016-12-20 12:12:00
54236    23368    745    2016-12-20 23:30:00    2016-12-20 23:30:00
54237    23368    503    2016-12-20 21:59:00    2016-12-20 21:59:00
54238    23369    829    2016-12-20 02:35:00    2016-12-20 02:35:00
54239    23369    517    2016-12-20 10:29:00    2016-12-20 10:29:00
54240    23369    956    2016-12-20 22:48:00    2016-12-20 22:48:00
54241    23369    503    2016-12-20 10:50:00    2016-12-20 10:50:00
54242    23369    733    2016-12-20 06:04:00    2016-12-20 06:04:00
54243    23370    555    2016-12-20 14:58:00    2016-12-20 14:58:00
54244    23370    731    2016-12-20 15:49:00    2016-12-20 15:49:00
54245    23370    677    2016-12-20 04:45:00    2016-12-20 04:45:00
54246    23370    591    2016-12-20 23:42:00    2016-12-20 23:42:00
54247    23370    601    2016-12-20 07:09:00    2016-12-20 07:09:00
54248    23371    757    2016-12-20 20:31:00    2016-12-20 20:31:00
54249    23371    595    2016-12-20 13:30:00    2016-12-20 13:30:00
54250    23371    868    2016-12-20 12:50:00    2016-12-20 12:50:00
54251    23371    476    2016-12-20 05:20:00    2016-12-20 05:20:00
54252    23371    691    2016-12-20 04:11:00    2016-12-20 04:11:00
54253    23372    740    2016-12-20 16:34:00    2016-12-20 16:34:00
54254    23372    683    2016-12-20 06:49:00    2016-12-20 06:49:00
54255    23372    787    2016-12-20 03:35:00    2016-12-20 03:35:00
54256    23372    482    2016-12-20 09:00:00    2016-12-20 09:00:00
54257    23372    666    2016-12-20 01:14:00    2016-12-20 01:14:00
54258    23373    626    2016-12-20 20:07:00    2016-12-20 20:07:00
54259    23373    563    2016-12-20 22:03:00    2016-12-20 22:03:00
54260    23373    862    2016-12-20 16:40:00    2016-12-20 16:40:00
54261    23373    842    2016-12-20 06:03:00    2016-12-20 06:03:00
54262    23373    659    2016-12-20 14:00:00    2016-12-20 14:00:00
54263    23374    913    2016-12-20 01:37:00    2016-12-20 01:37:00
54264    23374    930    2016-12-20 18:22:00    2016-12-20 18:22:00
54265    23374    476    2016-12-20 11:00:00    2016-12-20 11:00:00
54266    23374    698    2016-12-20 12:55:00    2016-12-20 12:55:00
54267    23374    600    2016-12-20 03:55:00    2016-12-20 03:55:00
54268    23375    529    2016-12-20 23:44:00    2016-12-20 23:44:00
54269    23375    619    2016-12-20 06:23:00    2016-12-20 06:23:00
54270    23375    926    2016-12-20 18:37:00    2016-12-20 18:37:00
54271    23375    903    2016-12-20 17:05:00    2016-12-20 17:05:00
54272    23375    654    2016-12-20 10:54:00    2016-12-20 10:54:00
54273    23376    777    2016-12-20 09:54:00    2016-12-20 09:54:00
54274    23376    839    2016-12-20 05:57:00    2016-12-20 05:57:00
54275    23376    477    2016-12-20 06:34:00    2016-12-20 06:34:00
54276    23376    519    2016-12-20 05:42:00    2016-12-20 05:42:00
54277    23376    550    2016-12-20 22:25:00    2016-12-20 22:25:00
54278    23377    947    2016-12-20 19:21:00    2016-12-20 19:21:00
54279    23377    580    2016-12-20 05:34:00    2016-12-20 05:34:00
54280    23377    675    2016-12-20 08:22:00    2016-12-20 08:22:00
54281    23377    798    2016-12-20 19:19:00    2016-12-20 19:19:00
54282    23377    916    2016-12-20 07:24:00    2016-12-20 07:24:00
54283    23378    565    2016-12-20 03:40:00    2016-12-20 03:40:00
54284    23378    666    2016-12-20 16:33:00    2016-12-20 16:33:00
54285    23378    756    2016-12-20 10:42:00    2016-12-20 10:42:00
54286    23378    600    2016-12-20 17:24:00    2016-12-20 17:24:00
54287    23378    473    2016-12-20 09:05:00    2016-12-20 09:05:00
54288    23379    673    2016-12-20 18:18:00    2016-12-20 18:18:00
54289    23379    464    2016-12-20 22:34:00    2016-12-20 22:34:00
54290    23379    521    2016-12-20 08:10:00    2016-12-20 08:10:00
54291    23379    529    2016-12-20 01:37:00    2016-12-20 01:37:00
54292    23379    924    2016-12-20 18:21:00    2016-12-20 18:21:00
54293    23380    733    2016-12-20 01:06:00    2016-12-20 01:06:00
54294    23380    880    2016-12-20 04:46:00    2016-12-20 04:46:00
54295    23380    505    2016-12-20 09:22:00    2016-12-20 09:22:00
54296    23380    714    2016-12-20 03:46:00    2016-12-20 03:46:00
54297    23380    850    2016-12-20 15:44:00    2016-12-20 15:44:00
54298    23381    689    2016-12-20 13:08:00    2016-12-20 13:08:00
54299    23381    931    2016-12-20 16:52:00    2016-12-20 16:52:00
54300    23381    617    2016-12-20 23:03:00    2016-12-20 23:03:00
54301    23381    480    2016-12-20 05:40:00    2016-12-20 05:40:00
54302    23381    722    2016-12-20 01:31:00    2016-12-20 01:31:00
54303    23382    650    2016-12-20 18:16:00    2016-12-20 18:16:00
54304    23382    751    2016-12-20 10:32:00    2016-12-20 10:32:00
54305    23382    705    2016-12-20 06:00:00    2016-12-20 06:00:00
54306    23382    815    2016-12-20 18:30:00    2016-12-20 18:30:00
54307    23382    771    2016-12-20 12:34:00    2016-12-20 12:34:00
54308    23383    633    2016-12-20 02:38:00    2016-12-20 02:38:00
54309    23383    784    2016-12-20 13:30:00    2016-12-20 13:30:00
54310    23383    873    2016-12-20 16:49:00    2016-12-20 16:49:00
54311    23383    650    2016-12-20 07:51:00    2016-12-20 07:51:00
54312    23383    826    2016-12-20 10:25:00    2016-12-20 10:25:00
54313    23384    760    2016-12-20 14:57:00    2016-12-20 14:57:00
54314    23384    609    2016-12-20 03:47:00    2016-12-20 03:47:00
54315    23384    802    2016-12-20 03:37:00    2016-12-20 03:37:00
54316    23384    748    2016-12-20 11:43:00    2016-12-20 11:43:00
54317    23384    638    2016-12-20 09:06:00    2016-12-20 09:06:00
54318    23385    786    2016-12-20 17:04:00    2016-12-20 17:04:00
54319    23385    681    2016-12-20 23:29:00    2016-12-20 23:29:00
54320    23385    844    2016-12-20 02:38:00    2016-12-20 02:38:00
54321    23385    517    2016-12-20 07:54:00    2016-12-20 07:54:00
54322    23385    682    2016-12-20 23:57:00    2016-12-20 23:57:00
54323    23386    520    2016-12-20 13:23:00    2016-12-20 13:23:00
54324    23386    605    2016-12-20 02:30:00    2016-12-20 02:30:00
54325    23386    838    2016-12-20 13:43:00    2016-12-20 13:43:00
54326    23386    718    2016-12-20 01:16:00    2016-12-20 01:16:00
54327    23386    894    2016-12-20 19:00:00    2016-12-20 19:00:00
54328    23387    901    2016-12-20 03:52:00    2016-12-20 03:52:00
54329    23387    733    2016-12-20 20:05:00    2016-12-20 20:05:00
54330    23387    708    2016-12-20 17:39:00    2016-12-20 17:39:00
54331    23387    546    2016-12-20 11:10:00    2016-12-20 11:10:00
54332    23387    498    2016-12-20 03:06:00    2016-12-20 03:06:00
54333    23388    467    2016-12-20 02:49:00    2016-12-20 02:49:00
54334    23388    658    2016-12-20 04:24:00    2016-12-20 04:24:00
54335    23388    571    2016-12-20 05:27:00    2016-12-20 05:27:00
54336    23388    805    2016-12-20 15:46:00    2016-12-20 15:46:00
54337    23388    865    2016-12-20 01:51:00    2016-12-20 01:51:00
54338    23389    895    2016-12-20 11:31:00    2016-12-20 11:31:00
54339    23389    503    2016-12-20 11:19:00    2016-12-20 11:19:00
54340    23389    498    2016-12-20 10:24:00    2016-12-20 10:24:00
54341    23389    663    2016-12-20 03:15:00    2016-12-20 03:15:00
54342    23389    958    2016-12-20 04:39:00    2016-12-20 04:39:00
54343    23390    763    2016-12-20 01:16:00    2016-12-20 01:16:00
54344    23390    678    2016-12-20 19:11:00    2016-12-20 19:11:00
54345    23390    478    2016-12-20 17:58:00    2016-12-20 17:58:00
54346    23390    914    2016-12-20 07:26:00    2016-12-20 07:26:00
54347    23390    633    2016-12-20 09:58:00    2016-12-20 09:58:00
54348    23391    701    2016-12-20 03:00:00    2016-12-20 03:00:00
54349    23391    747    2016-12-20 18:41:00    2016-12-20 18:41:00
54350    23391    608    2016-12-20 02:24:00    2016-12-20 02:24:00
54351    23391    858    2016-12-20 08:16:00    2016-12-20 08:16:00
54352    23391    947    2016-12-20 21:54:00    2016-12-20 21:54:00
54353    23392    489    2016-12-20 23:43:00    2016-12-20 23:43:00
54354    23392    768    2016-12-20 10:00:00    2016-12-20 10:00:00
54355    23392    737    2016-12-20 13:33:00    2016-12-20 13:33:00
54356    23392    957    2016-12-20 02:25:00    2016-12-20 02:25:00
54357    23392    678    2016-12-20 20:44:00    2016-12-20 20:44:00
54358    23393    715    2016-12-20 07:36:00    2016-12-20 07:36:00
54359    23393    703    2016-12-20 13:35:00    2016-12-20 13:35:00
54360    23393    783    2016-12-20 08:56:00    2016-12-20 08:56:00
54361    23393    927    2016-12-20 07:07:00    2016-12-20 07:07:00
54362    23393    887    2016-12-20 05:56:00    2016-12-20 05:56:00
54363    23394    921    2016-12-20 17:56:00    2016-12-20 17:56:00
54364    23394    920    2016-12-20 13:01:00    2016-12-20 13:01:00
54365    23394    604    2016-12-20 18:09:00    2016-12-20 18:09:00
54366    23394    695    2016-12-20 10:18:00    2016-12-20 10:18:00
54367    23394    644    2016-12-20 10:49:00    2016-12-20 10:49:00
54368    23395    888    2016-12-20 14:41:00    2016-12-20 14:41:00
54369    23395    486    2016-12-20 14:15:00    2016-12-20 14:15:00
54370    23395    739    2016-12-20 04:15:00    2016-12-20 04:15:00
54371    23395    732    2016-12-20 23:43:00    2016-12-20 23:43:00
54372    23395    847    2016-12-20 06:51:00    2016-12-20 06:51:00
54373    23396    864    2016-12-20 11:53:00    2016-12-20 11:53:00
54374    23396    811    2016-12-20 12:07:00    2016-12-20 12:07:00
54375    23396    500    2016-12-20 10:43:00    2016-12-20 10:43:00
54376    23396    813    2016-12-20 04:58:00    2016-12-20 04:58:00
54377    23396    927    2016-12-20 17:11:00    2016-12-20 17:11:00
54378    23397    781    2016-12-20 11:55:00    2016-12-20 11:55:00
54379    23397    650    2016-12-20 05:55:00    2016-12-20 05:55:00
54380    23397    523    2016-12-20 04:03:00    2016-12-20 04:03:00
54381    23397    577    2016-12-20 04:04:00    2016-12-20 04:04:00
54382    23397    506    2016-12-20 03:00:00    2016-12-20 03:00:00
54383    23398    899    2016-12-20 13:17:00    2016-12-20 13:17:00
54384    23398    498    2016-12-20 03:08:00    2016-12-20 03:08:00
54385    23398    598    2016-12-20 19:26:00    2016-12-20 19:26:00
54386    23398    665    2016-12-20 13:10:00    2016-12-20 13:10:00
54387    23398    464    2016-12-20 16:08:00    2016-12-20 16:08:00
54388    23399    918    2016-12-20 14:59:00    2016-12-20 14:59:00
54389    23399    591    2016-12-20 05:26:00    2016-12-20 05:26:00
54390    23399    654    2016-12-20 03:24:00    2016-12-20 03:24:00
54391    23399    905    2016-12-20 01:34:00    2016-12-20 01:34:00
54392    23399    936    2016-12-20 12:13:00    2016-12-20 12:13:00
54393    23400    537    2016-12-20 04:26:00    2016-12-20 04:26:00
54394    23400    649    2016-12-20 02:16:00    2016-12-20 02:16:00
54395    23400    764    2016-12-20 13:19:00    2016-12-20 13:19:00
54396    23400    683    2016-12-20 16:10:00    2016-12-20 16:10:00
54397    23400    507    2016-12-20 08:30:00    2016-12-20 08:30:00
54398    23401    485    2016-12-20 19:32:00    2016-12-20 19:32:00
54399    23401    871    2016-12-20 22:44:00    2016-12-20 22:44:00
54400    23401    882    2016-12-20 09:00:00    2016-12-20 09:00:00
54401    23401    749    2016-12-20 20:00:00    2016-12-20 20:00:00
54402    23401    810    2016-12-20 10:43:00    2016-12-20 10:43:00
54403    23402    893    2016-12-20 01:33:00    2016-12-20 01:33:00
54404    23402    579    2016-12-20 22:59:00    2016-12-20 22:59:00
54405    23402    614    2016-12-20 11:45:00    2016-12-20 11:45:00
54406    23402    633    2016-12-20 19:22:00    2016-12-20 19:22:00
54407    23402    680    2016-12-20 17:01:00    2016-12-20 17:01:00
54408    23403    531    2016-12-20 03:51:00    2016-12-20 03:51:00
54409    23403    811    2016-12-20 01:59:00    2016-12-20 01:59:00
54410    23403    688    2016-12-20 01:33:00    2016-12-20 01:33:00
54411    23403    469    2016-12-20 09:43:00    2016-12-20 09:43:00
54412    23403    537    2016-12-20 23:49:00    2016-12-20 23:49:00
54413    23404    722    2016-12-20 02:58:00    2016-12-20 02:58:00
54414    23404    801    2016-12-20 20:23:00    2016-12-20 20:23:00
54415    23404    686    2016-12-20 16:27:00    2016-12-20 16:27:00
54416    23404    735    2016-12-20 15:23:00    2016-12-20 15:23:00
54417    23404    771    2016-12-20 21:02:00    2016-12-20 21:02:00
54418    23405    872    2016-12-20 15:03:00    2016-12-20 15:03:00
54419    23405    564    2016-12-20 14:43:00    2016-12-20 14:43:00
54420    23405    959    2016-12-20 05:35:00    2016-12-20 05:35:00
54421    23405    936    2016-12-20 05:21:00    2016-12-20 05:21:00
54422    23405    716    2016-12-20 17:09:00    2016-12-20 17:09:00
54423    23406    529    2016-12-20 04:32:00    2016-12-20 04:32:00
54424    23406    673    2016-12-20 11:53:00    2016-12-20 11:53:00
54425    23406    884    2016-12-20 20:47:00    2016-12-20 20:47:00
54426    23406    541    2016-12-20 23:51:00    2016-12-20 23:51:00
54427    23406    933    2016-12-20 21:49:00    2016-12-20 21:49:00
54428    23407    826    2016-12-20 04:00:00    2016-12-20 04:00:00
54429    23407    510    2016-12-20 03:41:00    2016-12-20 03:41:00
54430    23407    826    2016-12-20 06:12:00    2016-12-20 06:12:00
54431    23407    702    2016-12-20 09:49:00    2016-12-20 09:49:00
54432    23407    553    2016-12-20 17:30:00    2016-12-20 17:30:00
54433    23408    741    2016-12-20 20:44:00    2016-12-20 20:44:00
54434    23408    478    2016-12-20 03:17:00    2016-12-20 03:17:00
54435    23408    746    2016-12-20 01:51:00    2016-12-20 01:51:00
54436    23408    881    2016-12-20 23:56:00    2016-12-20 23:56:00
54437    23408    637    2016-12-20 16:56:00    2016-12-20 16:56:00
54438    23409    755    2016-12-20 13:44:00    2016-12-20 13:44:00
54439    23409    709    2016-12-20 06:23:00    2016-12-20 06:23:00
54440    23409    674    2016-12-20 04:50:00    2016-12-20 04:50:00
54441    23409    490    2016-12-20 22:15:00    2016-12-20 22:15:00
54442    23409    564    2016-12-20 21:19:00    2016-12-20 21:19:00
54443    23410    675    2016-12-20 06:08:00    2016-12-20 06:08:00
54444    23410    768    2016-12-20 14:57:00    2016-12-20 14:57:00
54445    23410    800    2016-12-20 11:43:00    2016-12-20 11:43:00
54446    23410    654    2016-12-20 07:59:00    2016-12-20 07:59:00
54447    23410    731    2016-12-20 20:11:00    2016-12-20 20:11:00
54448    23411    957    2016-12-20 11:02:00    2016-12-20 11:02:00
54449    23411    545    2016-12-20 10:16:00    2016-12-20 10:16:00
54450    23411    697    2016-12-20 02:08:00    2016-12-20 02:08:00
54451    23411    855    2016-12-20 18:02:00    2016-12-20 18:02:00
54452    23411    839    2016-12-20 16:19:00    2016-12-20 16:19:00
54453    23412    850    2016-12-20 21:14:00    2016-12-20 21:14:00
54454    23412    748    2016-12-20 20:52:00    2016-12-20 20:52:00
54455    23412    871    2016-12-20 09:02:00    2016-12-20 09:02:00
54456    23412    810    2016-12-20 02:34:00    2016-12-20 02:34:00
54457    23412    463    2016-12-20 05:20:00    2016-12-20 05:20:00
54458    23413    933    2016-12-20 21:25:00    2016-12-20 21:25:00
54459    23413    899    2016-12-20 14:44:00    2016-12-20 14:44:00
54460    23413    595    2016-12-20 07:20:00    2016-12-20 07:20:00
54461    23413    885    2016-12-20 09:45:00    2016-12-20 09:45:00
54462    23413    619    2016-12-20 23:36:00    2016-12-20 23:36:00
54463    23414    686    2016-12-20 01:25:00    2016-12-20 01:25:00
54464    23414    929    2016-12-20 23:29:00    2016-12-20 23:29:00
54465    23414    644    2016-12-20 09:38:00    2016-12-20 09:38:00
54466    23414    627    2016-12-20 02:24:00    2016-12-20 02:24:00
54467    23414    543    2016-12-20 22:41:00    2016-12-20 22:41:00
54468    23415    725    2016-12-20 06:58:00    2016-12-20 06:58:00
54469    23415    547    2016-12-20 17:25:00    2016-12-20 17:25:00
54470    23415    595    2016-12-20 23:06:00    2016-12-20 23:06:00
54471    23415    626    2016-12-20 14:51:00    2016-12-20 14:51:00
54472    23415    463    2016-12-20 13:05:00    2016-12-20 13:05:00
54473    23416    549    2016-12-20 18:22:00    2016-12-20 18:22:00
54474    23416    825    2016-12-20 23:59:00    2016-12-20 23:59:00
54475    23416    588    2016-12-20 17:13:00    2016-12-20 17:13:00
54476    23416    920    2016-12-20 18:51:00    2016-12-20 18:51:00
54477    23416    552    2016-12-20 05:35:00    2016-12-20 05:35:00
54478    23417    473    2016-12-20 01:09:00    2016-12-20 01:09:00
54479    23417    593    2016-12-20 03:06:00    2016-12-20 03:06:00
54480    23417    871    2016-12-20 16:18:00    2016-12-20 16:18:00
54481    23417    591    2016-12-20 14:24:00    2016-12-20 14:24:00
54482    23417    524    2016-12-20 14:37:00    2016-12-20 14:37:00
54483    23418    687    2016-12-20 03:07:00    2016-12-20 03:07:00
54484    23418    776    2016-12-20 12:54:00    2016-12-20 12:54:00
54485    23418    656    2016-12-20 17:52:00    2016-12-20 17:52:00
54486    23418    606    2016-12-20 04:00:00    2016-12-20 04:00:00
54487    23418    872    2016-12-20 06:13:00    2016-12-20 06:13:00
54488    23419    726    2016-12-20 06:17:00    2016-12-20 06:17:00
54489    23419    754    2016-12-20 06:19:00    2016-12-20 06:19:00
54490    23419    758    2016-12-20 23:14:00    2016-12-20 23:14:00
54491    23419    933    2016-12-20 15:48:00    2016-12-20 15:48:00
54492    23419    696    2016-12-20 10:41:00    2016-12-20 10:41:00
54493    23420    947    2016-12-20 01:54:00    2016-12-20 01:54:00
54494    23420    841    2016-12-20 11:01:00    2016-12-20 11:01:00
54495    23420    592    2016-12-20 04:54:00    2016-12-20 04:54:00
54496    23420    759    2016-12-20 05:05:00    2016-12-20 05:05:00
54497    23420    790    2016-12-20 12:25:00    2016-12-20 12:25:00
54498    23421    878    2016-12-20 20:57:00    2016-12-20 20:57:00
54499    23421    944    2016-12-20 21:53:00    2016-12-20 21:53:00
54500    23421    909    2016-12-20 03:22:00    2016-12-20 03:22:00
54501    23421    520    2016-12-20 06:19:00    2016-12-20 06:19:00
54502    23421    958    2016-12-20 17:42:00    2016-12-20 17:42:00
54503    23422    950    2016-12-20 18:10:00    2016-12-20 18:10:00
54504    23422    695    2016-12-20 14:59:00    2016-12-20 14:59:00
54505    23422    492    2016-12-20 13:19:00    2016-12-20 13:19:00
54506    23422    576    2016-12-20 01:37:00    2016-12-20 01:37:00
54507    23422    733    2016-12-20 16:13:00    2016-12-20 16:13:00
54508    23423    747    2016-12-20 14:06:00    2016-12-20 14:06:00
54509    23423    927    2016-12-20 07:02:00    2016-12-20 07:02:00
54510    23423    711    2016-12-20 04:01:00    2016-12-20 04:01:00
54511    23423    503    2016-12-20 04:32:00    2016-12-20 04:32:00
54512    23423    704    2016-12-20 08:04:00    2016-12-20 08:04:00
54513    23424    943    2016-12-20 06:04:00    2016-12-20 06:04:00
54514    23424    806    2016-12-20 02:53:00    2016-12-20 02:53:00
54515    23424    479    2016-12-20 02:21:00    2016-12-20 02:21:00
54516    23424    777    2016-12-20 11:37:00    2016-12-20 11:37:00
54517    23424    775    2016-12-20 18:03:00    2016-12-20 18:03:00
54518    23425    695    2016-12-20 22:54:00    2016-12-20 22:54:00
54519    23425    666    2016-12-20 08:09:00    2016-12-20 08:09:00
54520    23425    463    2016-12-20 14:40:00    2016-12-20 14:40:00
54521    23425    794    2016-12-20 08:40:00    2016-12-20 08:40:00
54522    23425    920    2016-12-20 14:33:00    2016-12-20 14:33:00
54523    23426    805    2016-12-20 14:07:00    2016-12-20 14:07:00
54524    23426    777    2016-12-20 22:37:00    2016-12-20 22:37:00
54525    23426    847    2016-12-20 07:48:00    2016-12-20 07:48:00
54526    23426    868    2016-12-20 20:27:00    2016-12-20 20:27:00
54527    23426    472    2016-12-20 15:42:00    2016-12-20 15:42:00
54528    23427    943    2016-12-20 17:32:00    2016-12-20 17:32:00
54529    23427    696    2016-12-20 06:29:00    2016-12-20 06:29:00
54530    23427    890    2016-12-20 14:38:00    2016-12-20 14:38:00
54531    23427    542    2016-12-20 08:29:00    2016-12-20 08:29:00
54532    23427    802    2016-12-20 03:13:00    2016-12-20 03:13:00
54533    23428    565    2016-12-20 18:46:00    2016-12-20 18:46:00
54534    23428    636    2016-12-20 02:23:00    2016-12-20 02:23:00
54535    23428    617    2016-12-20 19:21:00    2016-12-20 19:21:00
54536    23428    638    2016-12-20 15:53:00    2016-12-20 15:53:00
54537    23428    690    2016-12-20 22:06:00    2016-12-20 22:06:00
54538    23429    784    2016-12-20 11:17:00    2016-12-20 11:17:00
54539    23429    759    2016-12-20 13:02:00    2016-12-20 13:02:00
54540    23429    720    2016-12-20 01:10:00    2016-12-20 01:10:00
54541    23429    823    2016-12-20 03:00:00    2016-12-20 03:00:00
54542    23429    794    2016-12-20 08:15:00    2016-12-20 08:15:00
54543    23430    483    2016-12-20 07:52:00    2016-12-20 07:52:00
54544    23430    480    2016-12-20 08:18:00    2016-12-20 08:18:00
54545    23430    520    2016-12-20 17:05:00    2016-12-20 17:05:00
54546    23430    871    2016-12-20 23:01:00    2016-12-20 23:01:00
54547    23430    957    2016-12-20 03:10:00    2016-12-20 03:10:00
54548    23431    575    2016-12-20 16:20:00    2016-12-20 16:20:00
54549    23431    705    2016-12-20 22:14:00    2016-12-20 22:14:00
54550    23431    763    2016-12-20 15:45:00    2016-12-20 15:45:00
54551    23431    912    2016-12-20 13:22:00    2016-12-20 13:22:00
54552    23431    935    2016-12-20 15:24:00    2016-12-20 15:24:00
54553    23432    476    2016-12-20 20:08:00    2016-12-20 20:08:00
54554    23432    555    2016-12-20 14:43:00    2016-12-20 14:43:00
54555    23432    905    2016-12-20 01:53:00    2016-12-20 01:53:00
54556    23432    471    2016-12-20 10:40:00    2016-12-20 10:40:00
54557    23432    663    2016-12-20 05:06:00    2016-12-20 05:06:00
54558    23433    863    2016-12-20 12:04:00    2016-12-20 12:04:00
54559    23433    753    2016-12-20 23:06:00    2016-12-20 23:06:00
54560    23433    665    2016-12-20 22:29:00    2016-12-20 22:29:00
54561    23433    571    2016-12-20 01:03:00    2016-12-20 01:03:00
54562    23433    612    2016-12-20 17:05:00    2016-12-20 17:05:00
54563    23434    744    2016-12-20 17:55:00    2016-12-20 17:55:00
54564    23434    524    2016-12-20 06:54:00    2016-12-20 06:54:00
54565    23434    832    2016-12-20 01:37:00    2016-12-20 01:37:00
54566    23434    904    2016-12-20 11:24:00    2016-12-20 11:24:00
54567    23434    598    2016-12-20 21:37:00    2016-12-20 21:37:00
54568    23435    477    2016-12-20 03:22:00    2016-12-20 03:22:00
54569    23435    930    2016-12-20 05:20:00    2016-12-20 05:20:00
54570    23435    520    2016-12-20 23:55:00    2016-12-20 23:55:00
54571    23435    465    2016-12-20 08:01:00    2016-12-20 08:01:00
54572    23435    787    2016-12-20 21:11:00    2016-12-20 21:11:00
54573    23436    572    2016-12-20 14:16:00    2016-12-20 14:16:00
54574    23436    935    2016-12-20 21:09:00    2016-12-20 21:09:00
54575    23436    824    2016-12-20 01:15:00    2016-12-20 01:15:00
54576    23436    793    2016-12-20 23:23:00    2016-12-20 23:23:00
54577    23436    840    2016-12-20 04:09:00    2016-12-20 04:09:00
54578    23437    808    2016-12-20 05:42:00    2016-12-20 05:42:00
54579    23437    660    2016-12-20 14:20:00    2016-12-20 14:20:00
54580    23437    481    2016-12-20 03:39:00    2016-12-20 03:39:00
54581    23437    613    2016-12-20 01:31:00    2016-12-20 01:31:00
54582    23437    580    2016-12-20 11:17:00    2016-12-20 11:17:00
54583    23438    507    2016-12-20 08:47:00    2016-12-20 08:47:00
54584    23438    748    2016-12-20 15:37:00    2016-12-20 15:37:00
54585    23438    863    2016-12-20 19:48:00    2016-12-20 19:48:00
54586    23438    538    2016-12-20 07:00:00    2016-12-20 07:00:00
54587    23438    774    2016-12-20 18:00:00    2016-12-20 18:00:00
54588    23439    630    2016-12-21 09:21:00    2016-12-21 09:21:00
54589    23439    717    2016-12-21 18:50:00    2016-12-21 18:50:00
54590    23439    499    2016-12-21 15:01:00    2016-12-21 15:01:00
54591    23439    951    2016-12-21 22:33:00    2016-12-21 22:33:00
54592    23439    551    2016-12-21 22:22:00    2016-12-21 22:22:00
54593    23440    851    2016-12-21 23:03:00    2016-12-21 23:03:00
54594    23440    801    2016-12-21 15:24:00    2016-12-21 15:24:00
54595    23440    872    2016-12-21 03:16:00    2016-12-21 03:16:00
54596    23440    928    2016-12-21 03:13:00    2016-12-21 03:13:00
54597    23440    564    2016-12-21 21:41:00    2016-12-21 21:41:00
54598    23441    775    2016-12-21 17:26:00    2016-12-21 17:26:00
54599    23441    513    2016-12-21 10:57:00    2016-12-21 10:57:00
54600    23441    802    2016-12-21 07:39:00    2016-12-21 07:39:00
54601    23441    807    2016-12-21 21:38:00    2016-12-21 21:38:00
54602    23441    883    2016-12-21 23:53:00    2016-12-21 23:53:00
54603    23442    786    2016-12-21 05:18:00    2016-12-21 05:18:00
54604    23442    933    2016-12-21 09:32:00    2016-12-21 09:32:00
54605    23442    922    2016-12-21 15:37:00    2016-12-21 15:37:00
54606    23442    894    2016-12-21 08:01:00    2016-12-21 08:01:00
54607    23442    817    2016-12-21 06:12:00    2016-12-21 06:12:00
54608    23443    852    2016-12-21 04:48:00    2016-12-21 04:48:00
54609    23443    867    2016-12-21 04:05:00    2016-12-21 04:05:00
54610    23443    838    2016-12-21 22:01:00    2016-12-21 22:01:00
54611    23443    695    2016-12-21 04:57:00    2016-12-21 04:57:00
54612    23443    749    2016-12-21 20:02:00    2016-12-21 20:02:00
54613    23444    665    2016-12-21 22:14:00    2016-12-21 22:14:00
54614    23444    476    2016-12-21 01:07:00    2016-12-21 01:07:00
54615    23444    499    2016-12-21 05:38:00    2016-12-21 05:38:00
54616    23444    547    2016-12-21 02:56:00    2016-12-21 02:56:00
54617    23444    720    2016-12-21 04:33:00    2016-12-21 04:33:00
54618    23445    567    2016-12-21 05:45:00    2016-12-21 05:45:00
54619    23445    519    2016-12-21 05:46:00    2016-12-21 05:46:00
54620    23445    946    2016-12-21 18:16:00    2016-12-21 18:16:00
54621    23445    498    2016-12-21 15:39:00    2016-12-21 15:39:00
54622    23445    650    2016-12-21 23:47:00    2016-12-21 23:47:00
54623    23446    705    2016-12-21 05:49:00    2016-12-21 05:49:00
54624    23446    674    2016-12-21 16:01:00    2016-12-21 16:01:00
54625    23446    472    2016-12-21 11:08:00    2016-12-21 11:08:00
54626    23446    874    2016-12-21 15:50:00    2016-12-21 15:50:00
54627    23446    834    2016-12-21 23:28:00    2016-12-21 23:28:00
54628    23447    489    2016-12-21 22:37:00    2016-12-21 22:37:00
54629    23447    938    2016-12-21 09:45:00    2016-12-21 09:45:00
54630    23447    517    2016-12-21 21:17:00    2016-12-21 21:17:00
54631    23447    601    2016-12-21 09:51:00    2016-12-21 09:51:00
54632    23447    640    2016-12-21 13:49:00    2016-12-21 13:49:00
54633    23448    744    2016-12-21 14:12:00    2016-12-21 14:12:00
54634    23448    721    2016-12-21 10:06:00    2016-12-21 10:06:00
54635    23448    665    2016-12-21 23:15:00    2016-12-21 23:15:00
54636    23448    913    2016-12-21 11:50:00    2016-12-21 11:50:00
54637    23448    513    2016-12-21 17:31:00    2016-12-21 17:31:00
54638    23449    911    2016-12-21 13:25:00    2016-12-21 13:25:00
54639    23449    916    2016-12-21 15:12:00    2016-12-21 15:12:00
54640    23449    863    2016-12-21 17:55:00    2016-12-21 17:55:00
54641    23449    731    2016-12-21 16:21:00    2016-12-21 16:21:00
54642    23449    543    2016-12-21 13:33:00    2016-12-21 13:33:00
54643    23450    622    2016-12-21 05:05:00    2016-12-21 05:05:00
54644    23450    854    2016-12-21 19:20:00    2016-12-21 19:20:00
54645    23450    718    2016-12-21 02:42:00    2016-12-21 02:42:00
54646    23450    794    2016-12-21 12:58:00    2016-12-21 12:58:00
54647    23450    558    2016-12-21 23:59:00    2016-12-21 23:59:00
54648    23451    566    2016-12-21 19:15:00    2016-12-21 19:15:00
54649    23451    943    2016-12-21 02:39:00    2016-12-21 02:39:00
54650    23451    857    2016-12-21 14:30:00    2016-12-21 14:30:00
54651    23451    741    2016-12-21 07:53:00    2016-12-21 07:53:00
54652    23451    738    2016-12-21 04:48:00    2016-12-21 04:48:00
54653    23452    743    2016-12-21 03:04:00    2016-12-21 03:04:00
54654    23452    916    2016-12-21 16:44:00    2016-12-21 16:44:00
54655    23452    952    2016-12-21 17:14:00    2016-12-21 17:14:00
54656    23452    747    2016-12-21 16:28:00    2016-12-21 16:28:00
54657    23452    501    2016-12-21 17:54:00    2016-12-21 17:54:00
54658    23453    923    2016-12-21 01:58:00    2016-12-21 01:58:00
54659    23453    872    2016-12-21 11:51:00    2016-12-21 11:51:00
54660    23453    549    2016-12-21 15:54:00    2016-12-21 15:54:00
54661    23453    663    2016-12-21 10:10:00    2016-12-21 10:10:00
54662    23453    731    2016-12-21 09:44:00    2016-12-21 09:44:00
54663    23454    617    2016-12-21 07:53:00    2016-12-21 07:53:00
54664    23454    610    2016-12-21 02:59:00    2016-12-21 02:59:00
54665    23454    646    2016-12-21 02:14:00    2016-12-21 02:14:00
54666    23454    513    2016-12-21 12:34:00    2016-12-21 12:34:00
54667    23454    578    2016-12-21 03:40:00    2016-12-21 03:40:00
54668    23455    560    2016-12-21 21:21:00    2016-12-21 21:21:00
54669    23455    880    2016-12-21 16:12:00    2016-12-21 16:12:00
54670    23455    500    2016-12-21 20:01:00    2016-12-21 20:01:00
54671    23455    778    2016-12-21 13:07:00    2016-12-21 13:07:00
54672    23455    855    2016-12-21 11:29:00    2016-12-21 11:29:00
54673    23456    958    2016-12-21 13:08:00    2016-12-21 13:08:00
54674    23456    464    2016-12-21 18:03:00    2016-12-21 18:03:00
54675    23456    638    2016-12-21 13:49:00    2016-12-21 13:49:00
54676    23456    569    2016-12-21 11:03:00    2016-12-21 11:03:00
54677    23456    693    2016-12-21 17:21:00    2016-12-21 17:21:00
54678    23457    923    2016-12-21 19:38:00    2016-12-21 19:38:00
54679    23457    479    2016-12-21 22:58:00    2016-12-21 22:58:00
54680    23457    573    2016-12-21 08:50:00    2016-12-21 08:50:00
54681    23457    707    2016-12-21 18:00:00    2016-12-21 18:00:00
54682    23457    480    2016-12-21 14:08:00    2016-12-21 14:08:00
54683    23458    675    2016-12-21 20:00:00    2016-12-21 20:00:00
54684    23458    805    2016-12-21 17:23:00    2016-12-21 17:23:00
54685    23458    711    2016-12-21 13:14:00    2016-12-21 13:14:00
54686    23458    664    2016-12-21 17:15:00    2016-12-21 17:15:00
54687    23458    569    2016-12-21 02:13:00    2016-12-21 02:13:00
54688    23459    763    2016-12-21 15:49:00    2016-12-21 15:49:00
54689    23459    896    2016-12-21 03:59:00    2016-12-21 03:59:00
54690    23459    828    2016-12-21 23:20:00    2016-12-21 23:20:00
54691    23459    747    2016-12-21 02:55:00    2016-12-21 02:55:00
54692    23459    923    2016-12-21 19:36:00    2016-12-21 19:36:00
54693    23460    729    2016-12-21 10:11:00    2016-12-21 10:11:00
54694    23460    554    2016-12-21 20:49:00    2016-12-21 20:49:00
54695    23460    786    2016-12-21 13:51:00    2016-12-21 13:51:00
54696    23460    584    2016-12-21 21:47:00    2016-12-21 21:47:00
54697    23460    950    2016-12-21 21:43:00    2016-12-21 21:43:00
54698    23461    662    2016-12-21 11:28:00    2016-12-21 11:28:00
54699    23461    583    2016-12-21 05:59:00    2016-12-21 05:59:00
54700    23461    774    2016-12-21 04:31:00    2016-12-21 04:31:00
54701    23461    602    2016-12-21 11:41:00    2016-12-21 11:41:00
54702    23461    874    2016-12-21 02:55:00    2016-12-21 02:55:00
54703    23462    656    2016-12-21 01:58:00    2016-12-21 01:58:00
54704    23462    570    2016-12-21 03:36:00    2016-12-21 03:36:00
54705    23462    546    2016-12-21 20:21:00    2016-12-21 20:21:00
54706    23462    852    2016-12-21 15:04:00    2016-12-21 15:04:00
54707    23462    534    2016-12-21 14:20:00    2016-12-21 14:20:00
54708    23463    960    2016-12-21 03:08:00    2016-12-21 03:08:00
54709    23463    534    2016-12-21 03:15:00    2016-12-21 03:15:00
54710    23463    691    2016-12-21 21:01:00    2016-12-21 21:01:00
54711    23463    718    2016-12-21 22:18:00    2016-12-21 22:18:00
54712    23463    508    2016-12-21 07:12:00    2016-12-21 07:12:00
54713    23464    624    2016-12-21 06:42:00    2016-12-21 06:42:00
54714    23464    697    2016-12-21 18:43:00    2016-12-21 18:43:00
54715    23464    528    2016-12-21 16:59:00    2016-12-21 16:59:00
54716    23464    757    2016-12-21 23:02:00    2016-12-21 23:02:00
54717    23464    489    2016-12-21 04:11:00    2016-12-21 04:11:00
54718    23465    652    2016-12-21 06:42:00    2016-12-21 06:42:00
54719    23465    597    2016-12-21 08:28:00    2016-12-21 08:28:00
54720    23465    472    2016-12-21 02:19:00    2016-12-21 02:19:00
54721    23465    901    2016-12-21 21:41:00    2016-12-21 21:41:00
54722    23465    533    2016-12-21 17:53:00    2016-12-21 17:53:00
54723    23466    961    2016-12-21 02:08:00    2016-12-21 02:08:00
54724    23466    492    2016-12-21 11:51:00    2016-12-21 11:51:00
54725    23466    596    2016-12-21 14:49:00    2016-12-21 14:49:00
54726    23466    489    2016-12-21 10:12:00    2016-12-21 10:12:00
54727    23466    838    2016-12-21 06:33:00    2016-12-21 06:33:00
54728    23467    945    2016-12-21 11:13:00    2016-12-21 11:13:00
54729    23467    521    2016-12-21 17:33:00    2016-12-21 17:33:00
54730    23467    785    2016-12-21 01:13:00    2016-12-21 01:13:00
54731    23467    550    2016-12-21 18:09:00    2016-12-21 18:09:00
54732    23467    941    2016-12-21 14:18:00    2016-12-21 14:18:00
54733    23468    875    2016-12-21 10:40:00    2016-12-21 10:40:00
54734    23468    707    2016-12-21 12:16:00    2016-12-21 12:16:00
54735    23468    912    2016-12-21 14:14:00    2016-12-21 14:14:00
54736    23468    664    2016-12-21 21:10:00    2016-12-21 21:10:00
54737    23468    861    2016-12-21 06:06:00    2016-12-21 06:06:00
54738    23469    790    2016-12-21 09:35:00    2016-12-21 09:35:00
54739    23469    540    2016-12-21 08:13:00    2016-12-21 08:13:00
54740    23469    820    2016-12-21 02:49:00    2016-12-21 02:49:00
54741    23469    541    2016-12-21 13:02:00    2016-12-21 13:02:00
54742    23469    517    2016-12-21 21:37:00    2016-12-21 21:37:00
54743    23470    591    2016-12-21 17:57:00    2016-12-21 17:57:00
54744    23470    635    2016-12-21 03:08:00    2016-12-21 03:08:00
54745    23470    621    2016-12-21 03:50:00    2016-12-21 03:50:00
54746    23470    831    2016-12-21 21:00:00    2016-12-21 21:00:00
54747    23470    541    2016-12-21 05:38:00    2016-12-21 05:38:00
54748    23471    800    2016-12-21 02:35:00    2016-12-21 02:35:00
54749    23471    665    2016-12-21 15:48:00    2016-12-21 15:48:00
54750    23471    466    2016-12-21 22:26:00    2016-12-21 22:26:00
54751    23471    688    2016-12-21 13:17:00    2016-12-21 13:17:00
54752    23471    896    2016-12-21 13:04:00    2016-12-21 13:04:00
54753    23472    598    2016-12-21 21:36:00    2016-12-21 21:36:00
54754    23472    531    2016-12-21 09:45:00    2016-12-21 09:45:00
54755    23472    580    2016-12-21 01:46:00    2016-12-21 01:46:00
54756    23472    940    2016-12-21 13:22:00    2016-12-21 13:22:00
54757    23472    742    2016-12-21 11:03:00    2016-12-21 11:03:00
54758    23473    916    2016-12-21 11:33:00    2016-12-21 11:33:00
54759    23473    758    2016-12-21 04:33:00    2016-12-21 04:33:00
54760    23473    523    2016-12-21 17:47:00    2016-12-21 17:47:00
54761    23473    677    2016-12-21 10:03:00    2016-12-21 10:03:00
54762    23473    566    2016-12-21 15:13:00    2016-12-21 15:13:00
54763    23474    686    2016-12-21 22:41:00    2016-12-21 22:41:00
54764    23474    569    2016-12-21 01:37:00    2016-12-21 01:37:00
54765    23474    608    2016-12-21 23:35:00    2016-12-21 23:35:00
54766    23474    917    2016-12-21 04:17:00    2016-12-21 04:17:00
54767    23474    752    2016-12-21 17:04:00    2016-12-21 17:04:00
54768    23475    705    2016-12-21 17:13:00    2016-12-21 17:13:00
54769    23475    869    2016-12-21 10:47:00    2016-12-21 10:47:00
54770    23475    514    2016-12-21 07:04:00    2016-12-21 07:04:00
54771    23475    855    2016-12-21 10:59:00    2016-12-21 10:59:00
54772    23475    843    2016-12-21 17:02:00    2016-12-21 17:02:00
54773    23476    944    2016-12-21 20:38:00    2016-12-21 20:38:00
54774    23476    954    2016-12-21 12:42:00    2016-12-21 12:42:00
54775    23476    901    2016-12-21 10:10:00    2016-12-21 10:10:00
54776    23476    641    2016-12-21 02:53:00    2016-12-21 02:53:00
54777    23476    847    2016-12-21 03:42:00    2016-12-21 03:42:00
54778    23477    540    2016-12-21 06:45:00    2016-12-21 06:45:00
54779    23477    577    2016-12-21 17:02:00    2016-12-21 17:02:00
54780    23477    813    2016-12-21 01:05:00    2016-12-21 01:05:00
54781    23477    673    2016-12-21 07:59:00    2016-12-21 07:59:00
54782    23477    547    2016-12-21 04:40:00    2016-12-21 04:40:00
54783    23478    803    2016-12-21 03:06:00    2016-12-21 03:06:00
54784    23478    840    2016-12-21 10:16:00    2016-12-21 10:16:00
54785    23478    926    2016-12-21 02:20:00    2016-12-21 02:20:00
54786    23478    941    2016-12-21 04:49:00    2016-12-21 04:49:00
54787    23478    471    2016-12-21 20:41:00    2016-12-21 20:41:00
54788    23479    658    2016-12-21 16:14:00    2016-12-21 16:14:00
54789    23479    580    2016-12-21 12:00:00    2016-12-21 12:00:00
54790    23479    507    2016-12-21 22:54:00    2016-12-21 22:54:00
54791    23479    914    2016-12-21 14:22:00    2016-12-21 14:22:00
54792    23479    513    2016-12-21 12:02:00    2016-12-21 12:02:00
54793    23480    518    2016-12-21 02:26:00    2016-12-21 02:26:00
54794    23480    491    2016-12-21 21:49:00    2016-12-21 21:49:00
54795    23480    840    2016-12-21 23:25:00    2016-12-21 23:25:00
54796    23480    517    2016-12-21 22:17:00    2016-12-21 22:17:00
54797    23480    539    2016-12-21 21:09:00    2016-12-21 21:09:00
54798    23481    790    2016-12-21 12:44:00    2016-12-21 12:44:00
54799    23481    786    2016-12-21 21:26:00    2016-12-21 21:26:00
54800    23481    527    2016-12-21 15:15:00    2016-12-21 15:15:00
54801    23481    513    2016-12-21 11:51:00    2016-12-21 11:51:00
54802    23481    670    2016-12-21 07:49:00    2016-12-21 07:49:00
54803    23482    732    2016-12-21 18:13:00    2016-12-21 18:13:00
54804    23482    820    2016-12-21 09:25:00    2016-12-21 09:25:00
54805    23482    785    2016-12-21 04:02:00    2016-12-21 04:02:00
54806    23482    661    2016-12-21 03:55:00    2016-12-21 03:55:00
54807    23482    716    2016-12-21 21:40:00    2016-12-21 21:40:00
54808    23483    838    2016-12-21 21:00:00    2016-12-21 21:00:00
54809    23483    587    2016-12-21 07:18:00    2016-12-21 07:18:00
54810    23483    679    2016-12-21 09:19:00    2016-12-21 09:19:00
54811    23483    473    2016-12-21 06:31:00    2016-12-21 06:31:00
54812    23483    927    2016-12-21 12:25:00    2016-12-21 12:25:00
54813    23484    802    2016-12-21 06:17:00    2016-12-21 06:17:00
54814    23484    786    2016-12-21 07:45:00    2016-12-21 07:45:00
54815    23484    765    2016-12-21 09:39:00    2016-12-21 09:39:00
54816    23484    889    2016-12-21 18:25:00    2016-12-21 18:25:00
54817    23484    772    2016-12-21 17:12:00    2016-12-21 17:12:00
54818    23485    623    2016-12-21 07:57:00    2016-12-21 07:57:00
54819    23485    704    2016-12-21 11:09:00    2016-12-21 11:09:00
54820    23485    696    2016-12-21 12:05:00    2016-12-21 12:05:00
54821    23485    856    2016-12-21 14:51:00    2016-12-21 14:51:00
54822    23485    640    2016-12-21 22:55:00    2016-12-21 22:55:00
54823    23486    475    2016-12-21 04:56:00    2016-12-21 04:56:00
54824    23486    824    2016-12-21 17:47:00    2016-12-21 17:47:00
54825    23486    872    2016-12-21 20:45:00    2016-12-21 20:45:00
54826    23486    499    2016-12-21 18:33:00    2016-12-21 18:33:00
54827    23486    953    2016-12-21 13:40:00    2016-12-21 13:40:00
54828    23487    954    2016-12-21 16:49:00    2016-12-21 16:49:00
54829    23487    819    2016-12-21 19:44:00    2016-12-21 19:44:00
54830    23487    754    2016-12-21 04:33:00    2016-12-21 04:33:00
54831    23487    711    2016-12-21 11:09:00    2016-12-21 11:09:00
54832    23487    562    2016-12-21 19:13:00    2016-12-21 19:13:00
54833    23488    548    2016-12-21 16:36:00    2016-12-21 16:36:00
54834    23488    903    2016-12-21 07:07:00    2016-12-21 07:07:00
54835    23488    774    2016-12-21 10:00:00    2016-12-21 10:00:00
54836    23488    514    2016-12-21 07:11:00    2016-12-21 07:11:00
54837    23488    750    2016-12-21 07:48:00    2016-12-21 07:48:00
54838    23489    873    2016-12-21 13:54:00    2016-12-21 13:54:00
54839    23489    943    2016-12-21 16:24:00    2016-12-21 16:24:00
54840    23489    483    2016-12-21 02:00:00    2016-12-21 02:00:00
54841    23489    689    2016-12-21 21:23:00    2016-12-21 21:23:00
54842    23489    935    2016-12-21 09:03:00    2016-12-21 09:03:00
54843    23490    786    2016-12-21 17:00:00    2016-12-21 17:00:00
54844    23490    744    2016-12-21 23:54:00    2016-12-21 23:54:00
54845    23490    698    2016-12-21 01:27:00    2016-12-21 01:27:00
54846    23490    955    2016-12-21 07:38:00    2016-12-21 07:38:00
54847    23490    467    2016-12-21 02:09:00    2016-12-21 02:09:00
54848    23491    766    2016-12-21 11:09:00    2016-12-21 11:09:00
54849    23491    508    2016-12-21 07:14:00    2016-12-21 07:14:00
54850    23491    516    2016-12-21 05:56:00    2016-12-21 05:56:00
54851    23491    615    2016-12-21 14:31:00    2016-12-21 14:31:00
54852    23491    819    2016-12-21 23:51:00    2016-12-21 23:51:00
54853    23492    545    2016-12-21 02:54:00    2016-12-21 02:54:00
54854    23492    595    2016-12-21 14:06:00    2016-12-21 14:06:00
54855    23492    920    2016-12-21 04:44:00    2016-12-21 04:44:00
54856    23492    561    2016-12-21 11:42:00    2016-12-21 11:42:00
54857    23492    678    2016-12-21 07:00:00    2016-12-21 07:00:00
54858    23493    858    2016-12-21 03:05:00    2016-12-21 03:05:00
54859    23493    737    2016-12-21 22:20:00    2016-12-21 22:20:00
54860    23493    759    2016-12-21 10:07:00    2016-12-21 10:07:00
54861    23493    851    2016-12-21 16:37:00    2016-12-21 16:37:00
54862    23493    539    2016-12-21 23:43:00    2016-12-21 23:43:00
54863    23494    753    2016-12-21 05:13:00    2016-12-21 05:13:00
54864    23494    918    2016-12-21 08:44:00    2016-12-21 08:44:00
54865    23494    923    2016-12-21 16:09:00    2016-12-21 16:09:00
54866    23494    790    2016-12-21 11:23:00    2016-12-21 11:23:00
54867    23494    872    2016-12-21 07:10:00    2016-12-21 07:10:00
54868    23495    611    2016-12-21 21:35:00    2016-12-21 21:35:00
54869    23495    722    2016-12-21 11:32:00    2016-12-21 11:32:00
54870    23495    705    2016-12-21 13:43:00    2016-12-21 13:43:00
54871    23495    763    2016-12-21 05:06:00    2016-12-21 05:06:00
54872    23495    835    2016-12-21 10:29:00    2016-12-21 10:29:00
54873    23496    906    2016-12-21 08:20:00    2016-12-21 08:20:00
54874    23496    864    2016-12-21 22:20:00    2016-12-21 22:20:00
54875    23496    570    2016-12-21 15:54:00    2016-12-21 15:54:00
54876    23496    626    2016-12-21 12:27:00    2016-12-21 12:27:00
54877    23496    663    2016-12-21 22:25:00    2016-12-21 22:25:00
54878    23497    481    2016-12-21 06:13:00    2016-12-21 06:13:00
54879    23497    927    2016-12-21 08:14:00    2016-12-21 08:14:00
54880    23497    502    2016-12-21 01:13:00    2016-12-21 01:13:00
54881    23497    904    2016-12-21 14:09:00    2016-12-21 14:09:00
54882    23497    893    2016-12-21 01:26:00    2016-12-21 01:26:00
54883    23498    507    2016-12-21 11:37:00    2016-12-21 11:37:00
54884    23498    482    2016-12-21 08:25:00    2016-12-21 08:25:00
54885    23498    761    2016-12-21 15:56:00    2016-12-21 15:56:00
54886    23498    710    2016-12-21 13:24:00    2016-12-21 13:24:00
54887    23498    710    2016-12-21 01:03:00    2016-12-21 01:03:00
54888    23499    646    2016-12-21 20:34:00    2016-12-21 20:34:00
54889    23499    730    2016-12-21 11:56:00    2016-12-21 11:56:00
54890    23499    707    2016-12-21 08:57:00    2016-12-21 08:57:00
54891    23499    691    2016-12-21 22:54:00    2016-12-21 22:54:00
54892    23499    601    2016-12-21 21:40:00    2016-12-21 21:40:00
54893    23500    642    2016-12-21 04:03:00    2016-12-21 04:03:00
54894    23500    959    2016-12-21 02:12:00    2016-12-21 02:12:00
54895    23500    623    2016-12-21 08:47:00    2016-12-21 08:47:00
54896    23500    635    2016-12-21 16:32:00    2016-12-21 16:32:00
54897    23500    499    2016-12-21 23:06:00    2016-12-21 23:06:00
54898    23501    874    2016-12-21 16:52:00    2016-12-21 16:52:00
54899    23501    910    2016-12-21 20:31:00    2016-12-21 20:31:00
54900    23501    754    2016-12-21 21:55:00    2016-12-21 21:55:00
54901    23501    825    2016-12-21 13:19:00    2016-12-21 13:19:00
54902    23501    832    2016-12-21 08:51:00    2016-12-21 08:51:00
54903    23502    799    2016-12-21 22:26:00    2016-12-21 22:26:00
54904    23502    531    2016-12-21 15:12:00    2016-12-21 15:12:00
54905    23502    630    2016-12-21 14:07:00    2016-12-21 14:07:00
54906    23502    556    2016-12-21 18:28:00    2016-12-21 18:28:00
54907    23502    751    2016-12-21 10:54:00    2016-12-21 10:54:00
54908    23503    705    2016-12-21 08:48:00    2016-12-21 08:48:00
54909    23503    594    2016-12-21 02:14:00    2016-12-21 02:14:00
54910    23503    493    2016-12-21 21:23:00    2016-12-21 21:23:00
54911    23503    798    2016-12-21 15:24:00    2016-12-21 15:24:00
54912    23503    775    2016-12-21 16:01:00    2016-12-21 16:01:00
54913    23504    871    2016-12-21 10:05:00    2016-12-21 10:05:00
54914    23504    732    2016-12-21 17:32:00    2016-12-21 17:32:00
54915    23504    807    2016-12-21 23:04:00    2016-12-21 23:04:00
54916    23504    493    2016-12-21 07:53:00    2016-12-21 07:53:00
54917    23504    787    2016-12-21 11:08:00    2016-12-21 11:08:00
54918    23505    846    2016-12-21 15:33:00    2016-12-21 15:33:00
54919    23505    750    2016-12-21 19:31:00    2016-12-21 19:31:00
54920    23505    873    2016-12-21 20:06:00    2016-12-21 20:06:00
54921    23505    508    2016-12-21 17:04:00    2016-12-21 17:04:00
54922    23505    819    2016-12-21 15:58:00    2016-12-21 15:58:00
54923    23506    528    2016-12-21 12:48:00    2016-12-21 12:48:00
54924    23506    785    2016-12-21 14:39:00    2016-12-21 14:39:00
54925    23506    504    2016-12-21 15:19:00    2016-12-21 15:19:00
54926    23506    950    2016-12-21 09:44:00    2016-12-21 09:44:00
54927    23506    508    2016-12-21 22:43:00    2016-12-21 22:43:00
54928    23507    759    2016-12-21 11:38:00    2016-12-21 11:38:00
54929    23507    820    2016-12-21 23:28:00    2016-12-21 23:28:00
54930    23507    559    2016-12-21 23:18:00    2016-12-21 23:18:00
54931    23507    598    2016-12-21 07:25:00    2016-12-21 07:25:00
54932    23507    623    2016-12-21 03:29:00    2016-12-21 03:29:00
54933    23508    921    2016-12-21 21:02:00    2016-12-21 21:02:00
54934    23508    570    2016-12-21 09:55:00    2016-12-21 09:55:00
54935    23508    564    2016-12-21 09:53:00    2016-12-21 09:53:00
54936    23508    605    2016-12-21 08:00:00    2016-12-21 08:00:00
54937    23508    701    2016-12-21 07:12:00    2016-12-21 07:12:00
54938    23509    774    2016-12-21 22:20:00    2016-12-21 22:20:00
54939    23509    463    2016-12-21 23:08:00    2016-12-21 23:08:00
54940    23509    678    2016-12-21 08:27:00    2016-12-21 08:27:00
54941    23509    622    2016-12-21 23:51:00    2016-12-21 23:51:00
54942    23509    527    2016-12-21 01:33:00    2016-12-21 01:33:00
54943    23510    589    2016-12-21 07:24:00    2016-12-21 07:24:00
54944    23510    696    2016-12-21 23:35:00    2016-12-21 23:35:00
54945    23510    623    2016-12-21 03:41:00    2016-12-21 03:41:00
54946    23510    765    2016-12-21 21:22:00    2016-12-21 21:22:00
54947    23510    540    2016-12-21 09:24:00    2016-12-21 09:24:00
54948    23511    697    2016-12-21 06:19:00    2016-12-21 06:19:00
54949    23511    556    2016-12-21 16:16:00    2016-12-21 16:16:00
54950    23511    716    2016-12-21 01:56:00    2016-12-21 01:56:00
54951    23511    954    2016-12-21 05:12:00    2016-12-21 05:12:00
54952    23511    463    2016-12-21 04:48:00    2016-12-21 04:48:00
54953    23512    920    2016-12-21 03:23:00    2016-12-21 03:23:00
54954    23512    882    2016-12-21 08:08:00    2016-12-21 08:08:00
54955    23512    747    2016-12-21 19:22:00    2016-12-21 19:22:00
54956    23512    797    2016-12-21 02:13:00    2016-12-21 02:13:00
54957    23512    535    2016-12-21 23:44:00    2016-12-21 23:44:00
54958    23513    722    2016-12-21 17:00:00    2016-12-21 17:00:00
54959    23513    784    2016-12-21 20:21:00    2016-12-21 20:21:00
54960    23513    708    2016-12-21 11:28:00    2016-12-21 11:28:00
54961    23513    564    2016-12-21 15:03:00    2016-12-21 15:03:00
54962    23513    739    2016-12-21 06:14:00    2016-12-21 06:14:00
54963    23514    554    2016-12-21 16:36:00    2016-12-21 16:36:00
54964    23514    750    2016-12-21 08:26:00    2016-12-21 08:26:00
54965    23514    816    2016-12-21 03:51:00    2016-12-21 03:51:00
54966    23514    852    2016-12-21 03:08:00    2016-12-21 03:08:00
54967    23514    637    2016-12-21 01:25:00    2016-12-21 01:25:00
54968    23515    627    2016-12-21 08:43:00    2016-12-21 08:43:00
54969    23515    697    2016-12-21 04:09:00    2016-12-21 04:09:00
54970    23515    745    2016-12-21 03:53:00    2016-12-21 03:53:00
54971    23515    905    2016-12-21 22:41:00    2016-12-21 22:41:00
54972    23515    683    2016-12-21 20:12:00    2016-12-21 20:12:00
54973    23516    845    2016-12-21 07:38:00    2016-12-21 07:38:00
54974    23516    703    2016-12-21 18:30:00    2016-12-21 18:30:00
54975    23516    710    2016-12-21 21:09:00    2016-12-21 21:09:00
54976    23516    940    2016-12-21 20:32:00    2016-12-21 20:32:00
54977    23516    730    2016-12-21 18:41:00    2016-12-21 18:41:00
54978    23517    913    2016-12-21 18:31:00    2016-12-21 18:31:00
54979    23517    607    2016-12-21 17:08:00    2016-12-21 17:08:00
54980    23517    769    2016-12-21 18:56:00    2016-12-21 18:56:00
54981    23517    935    2016-12-21 04:31:00    2016-12-21 04:31:00
54982    23517    732    2016-12-21 14:00:00    2016-12-21 14:00:00
54983    23518    603    2016-12-21 18:55:00    2016-12-21 18:55:00
54984    23518    882    2016-12-21 12:06:00    2016-12-21 12:06:00
54985    23518    580    2016-12-21 15:18:00    2016-12-21 15:18:00
54986    23518    719    2016-12-21 13:03:00    2016-12-21 13:03:00
54987    23518    806    2016-12-21 22:47:00    2016-12-21 22:47:00
54988    23519    839    2016-12-21 06:58:00    2016-12-21 06:58:00
54989    23519    663    2016-12-21 09:46:00    2016-12-21 09:46:00
54990    23519    839    2016-12-21 06:33:00    2016-12-21 06:33:00
54991    23519    699    2016-12-21 11:47:00    2016-12-21 11:47:00
54992    23519    764    2016-12-21 07:17:00    2016-12-21 07:17:00
54993    23520    726    2016-12-21 18:26:00    2016-12-21 18:26:00
54994    23520    749    2016-12-21 02:00:00    2016-12-21 02:00:00
54995    23520    787    2016-12-21 22:03:00    2016-12-21 22:03:00
54996    23520    541    2016-12-21 08:41:00    2016-12-21 08:41:00
54997    23520    728    2016-12-21 23:01:00    2016-12-21 23:01:00
54998    23521    905    2016-12-22 19:54:00    2016-12-22 19:54:00
54999    23521    948    2016-12-22 02:26:00    2016-12-22 02:26:00
55000    23521    960    2016-12-22 08:09:00    2016-12-22 08:09:00
55001    23521    927    2016-12-22 08:30:00    2016-12-22 08:30:00
55002    23521    490    2016-12-22 16:45:00    2016-12-22 16:45:00
55003    23522    860    2016-12-22 15:29:00    2016-12-22 15:29:00
55004    23522    526    2016-12-22 11:17:00    2016-12-22 11:17:00
55005    23522    844    2016-12-22 01:14:00    2016-12-22 01:14:00
55006    23522    854    2016-12-22 20:33:00    2016-12-22 20:33:00
55007    23522    642    2016-12-22 17:29:00    2016-12-22 17:29:00
55008    23523    580    2016-12-22 04:18:00    2016-12-22 04:18:00
55009    23523    689    2016-12-22 01:59:00    2016-12-22 01:59:00
55010    23523    467    2016-12-22 22:11:00    2016-12-22 22:11:00
55011    23523    704    2016-12-22 06:42:00    2016-12-22 06:42:00
55012    23523    934    2016-12-22 12:07:00    2016-12-22 12:07:00
55013    23524    665    2016-12-22 07:36:00    2016-12-22 07:36:00
55014    23524    598    2016-12-22 05:46:00    2016-12-22 05:46:00
55015    23524    650    2016-12-22 01:52:00    2016-12-22 01:52:00
55016    23524    696    2016-12-22 11:11:00    2016-12-22 11:11:00
55017    23524    673    2016-12-22 19:13:00    2016-12-22 19:13:00
55018    23525    569    2016-12-22 10:09:00    2016-12-22 10:09:00
55019    23525    525    2016-12-22 22:37:00    2016-12-22 22:37:00
55020    23525    705    2016-12-22 17:40:00    2016-12-22 17:40:00
55021    23525    661    2016-12-22 01:20:00    2016-12-22 01:20:00
55022    23525    895    2016-12-22 01:45:00    2016-12-22 01:45:00
55023    23526    920    2016-12-22 13:01:00    2016-12-22 13:01:00
55024    23526    673    2016-12-22 04:26:00    2016-12-22 04:26:00
55025    23526    646    2016-12-22 03:31:00    2016-12-22 03:31:00
55026    23526    756    2016-12-22 11:00:00    2016-12-22 11:00:00
55027    23526    818    2016-12-22 09:46:00    2016-12-22 09:46:00
55028    23527    950    2016-12-22 10:47:00    2016-12-22 10:47:00
55029    23527    574    2016-12-22 10:55:00    2016-12-22 10:55:00
55030    23527    691    2016-12-22 16:42:00    2016-12-22 16:42:00
55031    23527    641    2016-12-22 17:55:00    2016-12-22 17:55:00
55032    23527    734    2016-12-22 19:59:00    2016-12-22 19:59:00
55033    23528    932    2016-12-22 05:02:00    2016-12-22 05:02:00
55034    23528    475    2016-12-22 14:19:00    2016-12-22 14:19:00
55035    23528    469    2016-12-22 02:37:00    2016-12-22 02:37:00
55036    23528    931    2016-12-22 03:51:00    2016-12-22 03:51:00
55037    23528    498    2016-12-22 21:30:00    2016-12-22 21:30:00
55038    23529    490    2016-12-22 22:38:00    2016-12-22 22:38:00
55039    23529    476    2016-12-22 08:52:00    2016-12-22 08:52:00
55040    23529    766    2016-12-22 04:25:00    2016-12-22 04:25:00
55041    23529    463    2016-12-22 08:04:00    2016-12-22 08:04:00
55042    23529    612    2016-12-22 22:12:00    2016-12-22 22:12:00
55043    23530    820    2016-12-22 15:15:00    2016-12-22 15:15:00
55044    23530    633    2016-12-22 23:08:00    2016-12-22 23:08:00
55045    23530    847    2016-12-22 21:09:00    2016-12-22 21:09:00
55046    23530    550    2016-12-22 03:45:00    2016-12-22 03:45:00
55047    23530    610    2016-12-22 14:45:00    2016-12-22 14:45:00
55048    23531    795    2016-12-22 08:32:00    2016-12-22 08:32:00
55049    23531    598    2016-12-22 12:17:00    2016-12-22 12:17:00
55050    23531    816    2016-12-22 07:46:00    2016-12-22 07:46:00
55051    23531    650    2016-12-22 11:29:00    2016-12-22 11:29:00
55052    23531    702    2016-12-22 06:01:00    2016-12-22 06:01:00
55053    23532    926    2016-12-22 05:22:00    2016-12-22 05:22:00
55054    23532    668    2016-12-22 20:14:00    2016-12-22 20:14:00
55055    23532    826    2016-12-22 23:08:00    2016-12-22 23:08:00
55056    23532    781    2016-12-22 07:22:00    2016-12-22 07:22:00
55057    23532    951    2016-12-22 12:46:00    2016-12-22 12:46:00
55058    23533    827    2016-12-22 01:21:00    2016-12-22 01:21:00
55059    23533    666    2016-12-22 22:13:00    2016-12-22 22:13:00
55060    23533    782    2016-12-22 02:32:00    2016-12-22 02:32:00
55061    23533    850    2016-12-22 08:34:00    2016-12-22 08:34:00
55062    23533    852    2016-12-22 16:30:00    2016-12-22 16:30:00
55063    23534    503    2016-12-22 18:57:00    2016-12-22 18:57:00
55064    23534    516    2016-12-22 16:06:00    2016-12-22 16:06:00
55065    23534    662    2016-12-22 18:39:00    2016-12-22 18:39:00
55066    23534    794    2016-12-22 08:58:00    2016-12-22 08:58:00
55067    23534    531    2016-12-22 15:33:00    2016-12-22 15:33:00
55068    23535    695    2016-12-22 03:14:00    2016-12-22 03:14:00
55069    23535    653    2016-12-22 12:14:00    2016-12-22 12:14:00
55070    23535    620    2016-12-22 23:18:00    2016-12-22 23:18:00
55071    23535    663    2016-12-22 01:44:00    2016-12-22 01:44:00
55072    23535    664    2016-12-22 17:09:00    2016-12-22 17:09:00
55073    23536    896    2016-12-22 01:28:00    2016-12-22 01:28:00
55074    23536    604    2016-12-22 13:21:00    2016-12-22 13:21:00
55075    23536    667    2016-12-22 07:43:00    2016-12-22 07:43:00
55076    23536    501    2016-12-22 09:09:00    2016-12-22 09:09:00
55077    23536    595    2016-12-22 06:24:00    2016-12-22 06:24:00
55078    23537    718    2016-12-22 09:33:00    2016-12-22 09:33:00
55079    23537    604    2016-12-22 08:05:00    2016-12-22 08:05:00
55080    23537    526    2016-12-22 22:53:00    2016-12-22 22:53:00
55081    23537    582    2016-12-22 03:49:00    2016-12-22 03:49:00
55082    23537    487    2016-12-22 13:36:00    2016-12-22 13:36:00
55083    23538    910    2016-12-22 09:46:00    2016-12-22 09:46:00
55084    23538    761    2016-12-22 04:19:00    2016-12-22 04:19:00
55085    23538    502    2016-12-22 01:21:00    2016-12-22 01:21:00
55086    23538    555    2016-12-22 15:00:00    2016-12-22 15:00:00
55087    23538    536    2016-12-22 23:49:00    2016-12-22 23:49:00
55088    23539    648    2016-12-22 20:40:00    2016-12-22 20:40:00
55089    23539    697    2016-12-22 09:30:00    2016-12-22 09:30:00
55090    23539    533    2016-12-22 17:15:00    2016-12-22 17:15:00
55091    23539    556    2016-12-22 19:08:00    2016-12-22 19:08:00
55092    23539    901    2016-12-22 22:49:00    2016-12-22 22:49:00
55093    23540    519    2016-12-22 14:07:00    2016-12-22 14:07:00
55094    23540    567    2016-12-22 05:28:00    2016-12-22 05:28:00
55095    23540    582    2016-12-22 21:45:00    2016-12-22 21:45:00
55096    23540    749    2016-12-22 14:11:00    2016-12-22 14:11:00
55097    23540    951    2016-12-22 05:28:00    2016-12-22 05:28:00
55098    23541    513    2016-12-22 08:46:00    2016-12-22 08:46:00
55099    23541    465    2016-12-22 16:39:00    2016-12-22 16:39:00
55100    23541    751    2016-12-22 13:32:00    2016-12-22 13:32:00
55101    23541    805    2016-12-22 19:26:00    2016-12-22 19:26:00
55102    23541    832    2016-12-22 18:48:00    2016-12-22 18:48:00
55103    23542    558    2016-12-22 23:40:00    2016-12-22 23:40:00
55104    23542    604    2016-12-22 20:51:00    2016-12-22 20:51:00
55105    23542    751    2016-12-22 13:57:00    2016-12-22 13:57:00
55106    23542    709    2016-12-22 22:43:00    2016-12-22 22:43:00
55107    23542    882    2016-12-22 22:11:00    2016-12-22 22:11:00
55108    23543    746    2016-12-22 11:38:00    2016-12-22 11:38:00
55109    23543    818    2016-12-22 21:37:00    2016-12-22 21:37:00
55110    23543    556    2016-12-22 11:15:00    2016-12-22 11:15:00
55111    23543    948    2016-12-22 08:15:00    2016-12-22 08:15:00
55112    23543    493    2016-12-22 19:07:00    2016-12-22 19:07:00
55113    23544    953    2016-12-22 05:43:00    2016-12-22 05:43:00
55114    23544    771    2016-12-22 02:51:00    2016-12-22 02:51:00
55115    23544    571    2016-12-22 15:54:00    2016-12-22 15:54:00
55116    23544    571    2016-12-22 15:42:00    2016-12-22 15:42:00
55117    23544    678    2016-12-22 09:29:00    2016-12-22 09:29:00
55118    23545    806    2016-12-22 08:40:00    2016-12-22 08:40:00
55119    23545    594    2016-12-22 09:32:00    2016-12-22 09:32:00
55120    23545    882    2016-12-22 23:19:00    2016-12-22 23:19:00
55121    23545    883    2016-12-22 06:57:00    2016-12-22 06:57:00
55122    23545    470    2016-12-22 09:24:00    2016-12-22 09:24:00
55123    23546    669    2016-12-22 17:07:00    2016-12-22 17:07:00
55124    23546    629    2016-12-22 11:43:00    2016-12-22 11:43:00
55125    23546    562    2016-12-22 03:09:00    2016-12-22 03:09:00
55126    23546    905    2016-12-22 13:25:00    2016-12-22 13:25:00
55127    23546    491    2016-12-22 08:52:00    2016-12-22 08:52:00
55128    23547    650    2016-12-22 03:43:00    2016-12-22 03:43:00
55129    23547    730    2016-12-22 13:47:00    2016-12-22 13:47:00
55130    23547    705    2016-12-22 06:11:00    2016-12-22 06:11:00
55131    23547    602    2016-12-22 18:05:00    2016-12-22 18:05:00
55132    23547    531    2016-12-22 01:32:00    2016-12-22 01:32:00
55133    23548    678    2016-12-22 04:09:00    2016-12-22 04:09:00
55134    23548    751    2016-12-22 06:52:00    2016-12-22 06:52:00
55135    23548    513    2016-12-22 20:13:00    2016-12-22 20:13:00
55136    23548    643    2016-12-22 11:06:00    2016-12-22 11:06:00
55137    23548    959    2016-12-22 05:53:00    2016-12-22 05:53:00
55138    23549    858    2016-12-22 07:23:00    2016-12-22 07:23:00
55139    23549    940    2016-12-22 21:02:00    2016-12-22 21:02:00
55140    23549    743    2016-12-22 19:54:00    2016-12-22 19:54:00
55141    23549    463    2016-12-22 02:38:00    2016-12-22 02:38:00
55142    23549    546    2016-12-22 12:43:00    2016-12-22 12:43:00
55143    23550    671    2016-12-22 12:17:00    2016-12-22 12:17:00
55144    23550    556    2016-12-22 10:33:00    2016-12-22 10:33:00
55145    23550    527    2016-12-22 23:05:00    2016-12-22 23:05:00
55146    23550    640    2016-12-22 05:50:00    2016-12-22 05:50:00
55147    23550    613    2016-12-22 05:40:00    2016-12-22 05:40:00
55148    23551    636    2016-12-22 04:36:00    2016-12-22 04:36:00
55149    23551    681    2016-12-22 14:45:00    2016-12-22 14:45:00
55150    23551    760    2016-12-22 21:42:00    2016-12-22 21:42:00
55151    23551    849    2016-12-22 08:55:00    2016-12-22 08:55:00
55152    23551    822    2016-12-22 13:48:00    2016-12-22 13:48:00
55153    23552    482    2016-12-22 21:52:00    2016-12-22 21:52:00
55154    23552    603    2016-12-22 22:42:00    2016-12-22 22:42:00
55155    23552    599    2016-12-22 04:25:00    2016-12-22 04:25:00
55156    23552    736    2016-12-22 12:54:00    2016-12-22 12:54:00
55157    23552    825    2016-12-22 19:39:00    2016-12-22 19:39:00
55158    23553    944    2016-12-22 02:03:00    2016-12-22 02:03:00
55159    23553    732    2016-12-22 21:29:00    2016-12-22 21:29:00
55160    23553    563    2016-12-22 18:17:00    2016-12-22 18:17:00
55161    23553    498    2016-12-22 18:51:00    2016-12-22 18:51:00
55162    23553    790    2016-12-22 22:01:00    2016-12-22 22:01:00
55163    23554    825    2016-12-22 08:34:00    2016-12-22 08:34:00
55164    23554    757    2016-12-22 03:50:00    2016-12-22 03:50:00
55165    23554    602    2016-12-22 18:12:00    2016-12-22 18:12:00
55166    23554    702    2016-12-22 17:20:00    2016-12-22 17:20:00
55167    23554    650    2016-12-22 15:55:00    2016-12-22 15:55:00
55168    23555    727    2016-12-22 10:35:00    2016-12-22 10:35:00
55169    23555    725    2016-12-22 14:37:00    2016-12-22 14:37:00
55170    23555    852    2016-12-22 01:46:00    2016-12-22 01:46:00
55171    23555    481    2016-12-22 21:48:00    2016-12-22 21:48:00
55172    23555    843    2016-12-22 09:11:00    2016-12-22 09:11:00
55173    23556    782    2016-12-23 12:20:00    2016-12-23 12:20:00
55174    23556    827    2016-12-23 16:44:00    2016-12-23 16:44:00
55175    23556    468    2016-12-23 23:41:00    2016-12-23 23:41:00
55176    23556    699    2016-12-23 20:15:00    2016-12-23 20:15:00
55177    23556    605    2016-12-23 02:17:00    2016-12-23 02:17:00
55178    23557    465    2016-12-23 16:02:00    2016-12-23 16:02:00
55179    23557    792    2016-12-23 20:01:00    2016-12-23 20:01:00
55180    23557    955    2016-12-23 13:44:00    2016-12-23 13:44:00
55181    23557    590    2016-12-23 07:47:00    2016-12-23 07:47:00
55182    23557    572    2016-12-23 21:13:00    2016-12-23 21:13:00
55183    23558    600    2016-12-23 11:38:00    2016-12-23 11:38:00
55184    23558    763    2016-12-23 09:16:00    2016-12-23 09:16:00
55185    23558    595    2016-12-23 14:43:00    2016-12-23 14:43:00
55186    23558    761    2016-12-23 17:47:00    2016-12-23 17:47:00
55187    23558    800    2016-12-23 10:38:00    2016-12-23 10:38:00
55188    23559    914    2016-12-23 16:03:00    2016-12-23 16:03:00
55189    23559    568    2016-12-23 04:05:00    2016-12-23 04:05:00
55190    23559    944    2016-12-23 16:20:00    2016-12-23 16:20:00
55191    23559    921    2016-12-23 13:01:00    2016-12-23 13:01:00
55192    23559    866    2016-12-23 19:47:00    2016-12-23 19:47:00
55193    23560    952    2016-12-23 09:59:00    2016-12-23 09:59:00
55194    23560    919    2016-12-23 01:16:00    2016-12-23 01:16:00
55195    23560    833    2016-12-23 20:52:00    2016-12-23 20:52:00
55196    23560    762    2016-12-23 17:29:00    2016-12-23 17:29:00
55197    23560    581    2016-12-23 22:23:00    2016-12-23 22:23:00
55198    23561    463    2016-12-23 07:24:00    2016-12-23 07:24:00
55199    23561    781    2016-12-23 23:51:00    2016-12-23 23:51:00
55200    23561    775    2016-12-23 13:15:00    2016-12-23 13:15:00
55201    23561    762    2016-12-23 20:11:00    2016-12-23 20:11:00
55202    23561    492    2016-12-23 11:51:00    2016-12-23 11:51:00
55203    23562    804    2016-12-23 23:30:00    2016-12-23 23:30:00
55204    23562    483    2016-12-23 02:34:00    2016-12-23 02:34:00
55205    23562    653    2016-12-23 22:23:00    2016-12-23 22:23:00
55206    23562    549    2016-12-23 11:09:00    2016-12-23 11:09:00
55207    23562    665    2016-12-23 11:05:00    2016-12-23 11:05:00
55208    23563    467    2016-12-23 23:19:00    2016-12-23 23:19:00
55209    23563    947    2016-12-23 15:47:00    2016-12-23 15:47:00
55210    23563    596    2016-12-23 03:23:00    2016-12-23 03:23:00
55211    23563    566    2016-12-23 04:35:00    2016-12-23 04:35:00
55212    23563    667    2016-12-23 11:49:00    2016-12-23 11:49:00
55213    23564    668    2016-12-23 16:19:00    2016-12-23 16:19:00
55214    23564    943    2016-12-23 05:50:00    2016-12-23 05:50:00
55215    23564    722    2016-12-23 14:33:00    2016-12-23 14:33:00
55216    23564    809    2016-12-23 19:35:00    2016-12-23 19:35:00
55217    23564    718    2016-12-23 20:58:00    2016-12-23 20:58:00
55218    23565    656    2016-12-23 14:00:00    2016-12-23 14:00:00
55219    23565    697    2016-12-23 19:41:00    2016-12-23 19:41:00
55220    23565    933    2016-12-23 16:18:00    2016-12-23 16:18:00
55221    23565    508    2016-12-23 16:58:00    2016-12-23 16:58:00
55222    23565    652    2016-12-23 12:01:00    2016-12-23 12:01:00
55223    23566    849    2016-12-23 13:25:00    2016-12-23 13:25:00
55224    23566    688    2016-12-23 12:25:00    2016-12-23 12:25:00
55225    23566    901    2016-12-23 17:02:00    2016-12-23 17:02:00
55226    23566    566    2016-12-23 11:44:00    2016-12-23 11:44:00
55227    23566    612    2016-12-23 14:05:00    2016-12-23 14:05:00
55228    23567    500    2016-12-23 19:19:00    2016-12-23 19:19:00
55229    23567    609    2016-12-23 07:49:00    2016-12-23 07:49:00
55230    23567    738    2016-12-23 09:54:00    2016-12-23 09:54:00
55231    23567    915    2016-12-23 09:25:00    2016-12-23 09:25:00
55232    23567    910    2016-12-23 11:26:00    2016-12-23 11:26:00
55233    23568    778    2016-12-23 20:07:00    2016-12-23 20:07:00
55234    23568    770    2016-12-23 06:25:00    2016-12-23 06:25:00
55235    23568    931    2016-12-23 08:33:00    2016-12-23 08:33:00
55236    23568    958    2016-12-23 04:27:00    2016-12-23 04:27:00
55237    23568    499    2016-12-23 23:13:00    2016-12-23 23:13:00
55238    23569    544    2016-12-23 03:56:00    2016-12-23 03:56:00
55239    23569    656    2016-12-23 11:17:00    2016-12-23 11:17:00
55240    23569    583    2016-12-23 17:48:00    2016-12-23 17:48:00
55241    23569    761    2016-12-23 18:38:00    2016-12-23 18:38:00
55242    23569    873    2016-12-23 07:25:00    2016-12-23 07:25:00
55243    23570    761    2016-12-23 16:55:00    2016-12-23 16:55:00
55244    23570    678    2016-12-23 12:55:00    2016-12-23 12:55:00
55245    23570    801    2016-12-23 18:10:00    2016-12-23 18:10:00
55246    23570    516    2016-12-23 14:15:00    2016-12-23 14:15:00
55247    23570    756    2016-12-23 10:58:00    2016-12-23 10:58:00
55248    23571    582    2016-12-23 09:40:00    2016-12-23 09:40:00
55249    23571    927    2016-12-23 21:51:00    2016-12-23 21:51:00
55250    23571    734    2016-12-23 05:52:00    2016-12-23 05:52:00
55251    23571    485    2016-12-23 17:21:00    2016-12-23 17:21:00
55252    23571    487    2016-12-23 21:07:00    2016-12-23 21:07:00
55253    23572    905    2016-12-23 17:57:00    2016-12-23 17:57:00
55254    23572    510    2016-12-23 16:14:00    2016-12-23 16:14:00
55255    23572    869    2016-12-23 16:00:00    2016-12-23 16:00:00
55256    23572    559    2016-12-23 17:17:00    2016-12-23 17:17:00
55257    23572    891    2016-12-23 11:53:00    2016-12-23 11:53:00
55258    23573    875    2016-12-23 23:52:00    2016-12-23 23:52:00
55259    23573    833    2016-12-23 06:01:00    2016-12-23 06:01:00
55260    23573    507    2016-12-23 10:08:00    2016-12-23 10:08:00
55261    23573    697    2016-12-23 21:39:00    2016-12-23 21:39:00
55262    23573    759    2016-12-23 14:41:00    2016-12-23 14:41:00
55263    23574    828    2016-12-23 12:57:00    2016-12-23 12:57:00
55264    23574    888    2016-12-23 16:53:00    2016-12-23 16:53:00
55265    23574    741    2016-12-23 11:47:00    2016-12-23 11:47:00
55266    23574    682    2016-12-23 04:51:00    2016-12-23 04:51:00
55267    23574    809    2016-12-23 09:24:00    2016-12-23 09:24:00
55268    23575    838    2016-12-23 05:30:00    2016-12-23 05:30:00
55269    23575    499    2016-12-23 12:37:00    2016-12-23 12:37:00
55270    23575    675    2016-12-23 10:19:00    2016-12-23 10:19:00
55271    23575    679    2016-12-23 05:06:00    2016-12-23 05:06:00
55272    23575    931    2016-12-23 16:47:00    2016-12-23 16:47:00
55273    23576    664    2016-12-23 11:24:00    2016-12-23 11:24:00
55274    23576    925    2016-12-23 19:26:00    2016-12-23 19:26:00
55275    23576    503    2016-12-23 08:39:00    2016-12-23 08:39:00
55276    23576    754    2016-12-23 16:02:00    2016-12-23 16:02:00
55277    23576    953    2016-12-23 08:25:00    2016-12-23 08:25:00
55278    23577    648    2016-12-23 21:06:00    2016-12-23 21:06:00
55279    23577    658    2016-12-23 05:45:00    2016-12-23 05:45:00
55280    23577    755    2016-12-23 17:15:00    2016-12-23 17:15:00
55281    23577    465    2016-12-23 18:36:00    2016-12-23 18:36:00
55282    23577    738    2016-12-23 14:43:00    2016-12-23 14:43:00
55283    23578    691    2016-12-23 06:44:00    2016-12-23 06:44:00
55284    23578    911    2016-12-23 22:19:00    2016-12-23 22:19:00
55285    23578    867    2016-12-23 21:54:00    2016-12-23 21:54:00
55286    23578    609    2016-12-23 13:31:00    2016-12-23 13:31:00
55287    23578    663    2016-12-23 09:19:00    2016-12-23 09:19:00
55288    23579    520    2016-12-23 23:03:00    2016-12-23 23:03:00
55289    23579    560    2016-12-23 09:05:00    2016-12-23 09:05:00
55290    23579    865    2016-12-23 08:40:00    2016-12-23 08:40:00
55291    23579    885    2016-12-23 03:24:00    2016-12-23 03:24:00
55292    23579    949    2016-12-23 23:27:00    2016-12-23 23:27:00
55293    23580    659    2016-12-23 22:00:00    2016-12-23 22:00:00
55294    23580    500    2016-12-23 02:15:00    2016-12-23 02:15:00
55295    23580    663    2016-12-23 05:56:00    2016-12-23 05:56:00
55296    23580    933    2016-12-23 13:19:00    2016-12-23 13:19:00
55297    23580    675    2016-12-23 01:24:00    2016-12-23 01:24:00
55298    23581    909    2016-12-23 03:02:00    2016-12-23 03:02:00
55299    23581    591    2016-12-23 04:13:00    2016-12-23 04:13:00
55300    23581    786    2016-12-23 01:41:00    2016-12-23 01:41:00
55301    23581    554    2016-12-23 08:53:00    2016-12-23 08:53:00
55302    23581    733    2016-12-23 20:45:00    2016-12-23 20:45:00
55303    23582    806    2016-12-23 06:09:00    2016-12-23 06:09:00
55304    23582    495    2016-12-23 11:26:00    2016-12-23 11:26:00
55305    23582    668    2016-12-23 10:21:00    2016-12-23 10:21:00
55306    23582    558    2016-12-23 03:16:00    2016-12-23 03:16:00
55307    23582    517    2016-12-23 23:32:00    2016-12-23 23:32:00
55308    23583    601    2016-12-23 03:26:00    2016-12-23 03:26:00
55309    23583    502    2016-12-23 13:48:00    2016-12-23 13:48:00
55310    23583    465    2016-12-23 21:55:00    2016-12-23 21:55:00
55311    23583    692    2016-12-23 17:28:00    2016-12-23 17:28:00
55312    23583    707    2016-12-23 20:23:00    2016-12-23 20:23:00
55313    23584    509    2016-12-23 03:35:00    2016-12-23 03:35:00
55314    23584    599    2016-12-23 19:30:00    2016-12-23 19:30:00
55315    23584    685    2016-12-23 12:45:00    2016-12-23 12:45:00
55316    23584    906    2016-12-23 22:04:00    2016-12-23 22:04:00
55317    23584    592    2016-12-23 20:11:00    2016-12-23 20:11:00
55318    23585    781    2016-12-23 01:44:00    2016-12-23 01:44:00
55319    23585    814    2016-12-23 20:27:00    2016-12-23 20:27:00
55320    23585    513    2016-12-23 06:33:00    2016-12-23 06:33:00
55321    23585    694    2016-12-23 17:54:00    2016-12-23 17:54:00
55322    23585    500    2016-12-23 09:11:00    2016-12-23 09:11:00
55323    23586    737    2016-12-23 03:45:00    2016-12-23 03:45:00
55324    23586    528    2016-12-23 03:38:00    2016-12-23 03:38:00
55325    23586    628    2016-12-23 20:47:00    2016-12-23 20:47:00
55326    23586    706    2016-12-23 08:34:00    2016-12-23 08:34:00
55327    23586    873    2016-12-23 22:37:00    2016-12-23 22:37:00
55328    23587    712    2016-12-23 16:32:00    2016-12-23 16:32:00
55329    23587    706    2016-12-23 15:21:00    2016-12-23 15:21:00
55330    23587    632    2016-12-23 10:16:00    2016-12-23 10:16:00
55331    23587    475    2016-12-23 11:56:00    2016-12-23 11:56:00
55332    23587    721    2016-12-23 07:53:00    2016-12-23 07:53:00
55333    23588    714    2016-12-23 04:56:00    2016-12-23 04:56:00
55334    23588    605    2016-12-23 19:43:00    2016-12-23 19:43:00
55335    23588    959    2016-12-23 07:57:00    2016-12-23 07:57:00
55336    23588    748    2016-12-23 08:47:00    2016-12-23 08:47:00
55337    23588    789    2016-12-23 02:10:00    2016-12-23 02:10:00
55338    23589    583    2016-12-23 05:49:00    2016-12-23 05:49:00
55339    23589    574    2016-12-23 20:54:00    2016-12-23 20:54:00
55340    23589    947    2016-12-23 06:13:00    2016-12-23 06:13:00
55341    23589    823    2016-12-23 03:07:00    2016-12-23 03:07:00
55342    23589    893    2016-12-23 19:00:00    2016-12-23 19:00:00
55343    23590    761    2016-12-23 21:15:00    2016-12-23 21:15:00
55344    23590    739    2016-12-23 03:41:00    2016-12-23 03:41:00
55345    23590    775    2016-12-23 02:59:00    2016-12-23 02:59:00
55346    23590    920    2016-12-23 19:15:00    2016-12-23 19:15:00
55347    23590    740    2016-12-23 21:13:00    2016-12-23 21:13:00
55348    23591    873    2016-12-23 05:22:00    2016-12-23 05:22:00
55349    23591    555    2016-12-23 22:23:00    2016-12-23 22:23:00
55350    23591    644    2016-12-23 22:31:00    2016-12-23 22:31:00
55351    23591    470    2016-12-23 15:06:00    2016-12-23 15:06:00
55352    23591    813    2016-12-23 11:39:00    2016-12-23 11:39:00
55353    23592    515    2016-12-23 01:33:00    2016-12-23 01:33:00
55354    23592    919    2016-12-23 06:46:00    2016-12-23 06:46:00
55355    23592    902    2016-12-23 13:03:00    2016-12-23 13:03:00
55356    23592    633    2016-12-23 02:27:00    2016-12-23 02:27:00
55357    23592    735    2016-12-23 03:22:00    2016-12-23 03:22:00
55358    23593    750    2016-12-23 01:30:00    2016-12-23 01:30:00
55359    23593    592    2016-12-23 18:00:00    2016-12-23 18:00:00
55360    23593    810    2016-12-23 17:31:00    2016-12-23 17:31:00
55361    23593    953    2016-12-23 14:09:00    2016-12-23 14:09:00
55362    23593    576    2016-12-23 03:27:00    2016-12-23 03:27:00
55363    23594    580    2016-12-23 20:17:00    2016-12-23 20:17:00
55364    23594    838    2016-12-23 23:16:00    2016-12-23 23:16:00
55365    23594    466    2016-12-23 02:55:00    2016-12-23 02:55:00
55366    23594    662    2016-12-23 23:57:00    2016-12-23 23:57:00
55367    23594    484    2016-12-23 03:20:00    2016-12-23 03:20:00
55368    23595    493    2016-12-23 16:21:00    2016-12-23 16:21:00
55369    23595    618    2016-12-23 13:15:00    2016-12-23 13:15:00
55370    23595    806    2016-12-23 14:38:00    2016-12-23 14:38:00
55371    23595    675    2016-12-23 08:45:00    2016-12-23 08:45:00
55372    23595    938    2016-12-23 16:37:00    2016-12-23 16:37:00
55373    23596    766    2016-12-23 01:57:00    2016-12-23 01:57:00
55374    23596    642    2016-12-23 11:54:00    2016-12-23 11:54:00
55375    23596    788    2016-12-23 02:42:00    2016-12-23 02:42:00
55376    23596    776    2016-12-23 08:59:00    2016-12-23 08:59:00
55377    23596    790    2016-12-23 09:58:00    2016-12-23 09:58:00
55378    23597    846    2016-12-23 21:31:00    2016-12-23 21:31:00
55379    23597    961    2016-12-23 14:05:00    2016-12-23 14:05:00
55380    23597    586    2016-12-23 04:07:00    2016-12-23 04:07:00
55381    23597    917    2016-12-23 23:54:00    2016-12-23 23:54:00
55382    23597    909    2016-12-23 02:59:00    2016-12-23 02:59:00
55383    23598    765    2016-12-23 01:56:00    2016-12-23 01:56:00
55384    23598    878    2016-12-23 12:20:00    2016-12-23 12:20:00
55385    23598    711    2016-12-23 13:57:00    2016-12-23 13:57:00
55386    23598    878    2016-12-23 05:28:00    2016-12-23 05:28:00
55387    23598    942    2016-12-23 02:20:00    2016-12-23 02:20:00
55388    23599    546    2016-12-23 18:13:00    2016-12-23 18:13:00
55389    23599    520    2016-12-23 02:01:00    2016-12-23 02:01:00
55390    23599    831    2016-12-23 05:58:00    2016-12-23 05:58:00
55391    23599    746    2016-12-23 08:56:00    2016-12-23 08:56:00
55392    23599    548    2016-12-23 09:22:00    2016-12-23 09:22:00
55393    23600    656    2016-12-23 09:48:00    2016-12-23 09:48:00
55394    23600    916    2016-12-23 03:09:00    2016-12-23 03:09:00
55395    23600    684    2016-12-23 13:49:00    2016-12-23 13:49:00
55396    23600    764    2016-12-23 17:56:00    2016-12-23 17:56:00
55397    23600    784    2016-12-23 22:16:00    2016-12-23 22:16:00
55398    23601    560    2016-12-23 01:22:00    2016-12-23 01:22:00
55399    23601    530    2016-12-23 22:06:00    2016-12-23 22:06:00
55400    23601    863    2016-12-23 03:17:00    2016-12-23 03:17:00
55401    23601    592    2016-12-23 15:42:00    2016-12-23 15:42:00
55402    23601    702    2016-12-23 13:45:00    2016-12-23 13:45:00
55403    23602    641    2016-12-23 09:25:00    2016-12-23 09:25:00
55404    23602    871    2016-12-23 05:11:00    2016-12-23 05:11:00
55405    23602    835    2016-12-23 07:00:00    2016-12-23 07:00:00
55406    23602    898    2016-12-23 09:56:00    2016-12-23 09:56:00
55407    23602    738    2016-12-23 13:49:00    2016-12-23 13:49:00
55408    23603    556    2016-12-24 16:11:00    2016-12-24 16:11:00
55409    23603    518    2016-12-24 14:23:00    2016-12-24 14:23:00
55410    23603    881    2016-12-24 11:22:00    2016-12-24 11:22:00
55411    23603    575    2016-12-24 05:01:00    2016-12-24 05:01:00
55412    23603    544    2016-12-24 16:03:00    2016-12-24 16:03:00
55413    23604    957    2016-12-24 21:05:00    2016-12-24 21:05:00
55414    23604    863    2016-12-24 04:13:00    2016-12-24 04:13:00
55415    23604    532    2016-12-24 18:22:00    2016-12-24 18:22:00
55416    23604    778    2016-12-24 15:30:00    2016-12-24 15:30:00
55417    23604    896    2016-12-24 11:39:00    2016-12-24 11:39:00
55418    23605    892    2016-12-24 10:02:00    2016-12-24 10:02:00
55419    23605    580    2016-12-24 04:57:00    2016-12-24 04:57:00
55420    23605    842    2016-12-24 10:11:00    2016-12-24 10:11:00
55421    23605    697    2016-12-24 17:05:00    2016-12-24 17:05:00
55422    23605    627    2016-12-24 04:08:00    2016-12-24 04:08:00
55423    23606    569    2016-12-24 06:28:00    2016-12-24 06:28:00
55424    23606    716    2016-12-24 13:09:00    2016-12-24 13:09:00
55425    23606    538    2016-12-24 21:55:00    2016-12-24 21:55:00
55426    23606    953    2016-12-24 16:19:00    2016-12-24 16:19:00
55427    23606    955    2016-12-24 14:07:00    2016-12-24 14:07:00
55428    23607    926    2016-12-24 04:31:00    2016-12-24 04:31:00
55429    23607    697    2016-12-24 11:26:00    2016-12-24 11:26:00
55430    23607    649    2016-12-24 22:57:00    2016-12-24 22:57:00
55431    23607    635    2016-12-24 18:58:00    2016-12-24 18:58:00
55432    23607    523    2016-12-24 11:47:00    2016-12-24 11:47:00
55433    23608    773    2016-12-24 20:39:00    2016-12-24 20:39:00
55434    23608    891    2016-12-24 14:29:00    2016-12-24 14:29:00
55435    23608    695    2016-12-24 22:26:00    2016-12-24 22:26:00
55436    23608    764    2016-12-24 20:15:00    2016-12-24 20:15:00
55437    23608    628    2016-12-24 19:14:00    2016-12-24 19:14:00
55438    23609    486    2016-12-24 15:56:00    2016-12-24 15:56:00
55439    23609    512    2016-12-24 03:31:00    2016-12-24 03:31:00
55440    23609    472    2016-12-24 12:43:00    2016-12-24 12:43:00
55441    23609    737    2016-12-24 22:45:00    2016-12-24 22:45:00
55442    23609    530    2016-12-24 05:43:00    2016-12-24 05:43:00
55443    23610    518    2016-12-24 19:41:00    2016-12-24 19:41:00
55444    23610    887    2016-12-24 06:17:00    2016-12-24 06:17:00
55445    23610    492    2016-12-24 03:34:00    2016-12-24 03:34:00
55446    23610    884    2016-12-24 05:55:00    2016-12-24 05:55:00
55447    23610    833    2016-12-24 02:53:00    2016-12-24 02:53:00
55448    23611    494    2016-12-24 22:01:00    2016-12-24 22:01:00
55449    23611    721    2016-12-24 01:11:00    2016-12-24 01:11:00
55450    23611    602    2016-12-24 15:31:00    2016-12-24 15:31:00
55451    23611    869    2016-12-24 13:55:00    2016-12-24 13:55:00
55452    23611    668    2016-12-24 23:11:00    2016-12-24 23:11:00
55453    23612    834    2016-12-24 21:19:00    2016-12-24 21:19:00
55454    23612    718    2016-12-24 01:52:00    2016-12-24 01:52:00
55455    23612    826    2016-12-24 01:23:00    2016-12-24 01:23:00
55456    23612    483    2016-12-24 01:37:00    2016-12-24 01:37:00
55457    23612    528    2016-12-24 15:19:00    2016-12-24 15:19:00
55458    23613    499    2016-12-24 18:02:00    2016-12-24 18:02:00
55459    23613    570    2016-12-24 05:29:00    2016-12-24 05:29:00
55460    23613    901    2016-12-24 05:28:00    2016-12-24 05:28:00
55461    23613    695    2016-12-24 18:53:00    2016-12-24 18:53:00
55462    23613    516    2016-12-24 12:08:00    2016-12-24 12:08:00
55463    23614    841    2016-12-24 22:16:00    2016-12-24 22:16:00
55464    23614    802    2016-12-24 19:22:00    2016-12-24 19:22:00
55465    23614    871    2016-12-24 17:59:00    2016-12-24 17:59:00
55466    23614    597    2016-12-24 13:41:00    2016-12-24 13:41:00
55467    23614    639    2016-12-24 03:46:00    2016-12-24 03:46:00
55468    23615    516    2016-12-24 14:15:00    2016-12-24 14:15:00
55469    23615    957    2016-12-24 03:35:00    2016-12-24 03:35:00
55470    23615    930    2016-12-24 03:22:00    2016-12-24 03:22:00
55471    23615    825    2016-12-24 10:13:00    2016-12-24 10:13:00
55472    23615    573    2016-12-24 11:59:00    2016-12-24 11:59:00
55473    23616    837    2016-12-24 10:02:00    2016-12-24 10:02:00
55474    23616    488    2016-12-24 01:28:00    2016-12-24 01:28:00
55475    23616    587    2016-12-24 11:51:00    2016-12-24 11:51:00
55476    23616    800    2016-12-24 12:36:00    2016-12-24 12:36:00
55477    23616    664    2016-12-24 06:11:00    2016-12-24 06:11:00
55478    23617    697    2016-12-24 01:55:00    2016-12-24 01:55:00
55479    23617    865    2016-12-24 10:12:00    2016-12-24 10:12:00
55480    23617    477    2016-12-24 02:01:00    2016-12-24 02:01:00
55481    23617    900    2016-12-24 19:51:00    2016-12-24 19:51:00
55482    23617    513    2016-12-24 06:07:00    2016-12-24 06:07:00
55483    23618    878    2016-12-24 05:21:00    2016-12-24 05:21:00
55484    23618    534    2016-12-24 16:48:00    2016-12-24 16:48:00
55485    23618    857    2016-12-24 03:58:00    2016-12-24 03:58:00
55486    23618    817    2016-12-24 10:24:00    2016-12-24 10:24:00
55487    23618    582    2016-12-24 17:02:00    2016-12-24 17:02:00
55488    23619    741    2016-12-24 14:17:00    2016-12-24 14:17:00
55489    23619    586    2016-12-24 02:19:00    2016-12-24 02:19:00
55490    23619    517    2016-12-24 16:40:00    2016-12-24 16:40:00
55491    23619    782    2016-12-24 14:06:00    2016-12-24 14:06:00
55492    23619    576    2016-12-24 01:49:00    2016-12-24 01:49:00
55493    23620    577    2016-12-24 22:43:00    2016-12-24 22:43:00
55494    23620    950    2016-12-24 09:36:00    2016-12-24 09:36:00
55495    23620    549    2016-12-24 13:54:00    2016-12-24 13:54:00
55496    23620    833    2016-12-24 10:03:00    2016-12-24 10:03:00
55497    23620    849    2016-12-24 19:36:00    2016-12-24 19:36:00
55498    23621    854    2016-12-24 21:54:00    2016-12-24 21:54:00
55499    23621    592    2016-12-24 09:16:00    2016-12-24 09:16:00
55500    23621    547    2016-12-24 13:22:00    2016-12-24 13:22:00
55501    23621    759    2016-12-24 23:39:00    2016-12-24 23:39:00
55502    23621    931    2016-12-24 08:42:00    2016-12-24 08:42:00
55503    23622    844    2016-12-24 23:10:00    2016-12-24 23:10:00
55504    23622    727    2016-12-24 13:32:00    2016-12-24 13:32:00
55505    23622    472    2016-12-24 01:29:00    2016-12-24 01:29:00
55506    23622    661    2016-12-24 20:45:00    2016-12-24 20:45:00
55507    23622    950    2016-12-24 23:51:00    2016-12-24 23:51:00
55508    23623    948    2016-12-24 19:14:00    2016-12-24 19:14:00
55509    23623    796    2016-12-24 13:03:00    2016-12-24 13:03:00
55510    23623    476    2016-12-24 18:19:00    2016-12-24 18:19:00
55511    23623    523    2016-12-24 10:47:00    2016-12-24 10:47:00
55512    23623    519    2016-12-24 12:28:00    2016-12-24 12:28:00
55513    23624    519    2016-12-24 21:13:00    2016-12-24 21:13:00
55514    23624    648    2016-12-24 07:48:00    2016-12-24 07:48:00
55515    23624    488    2016-12-24 15:39:00    2016-12-24 15:39:00
55516    23624    585    2016-12-24 22:51:00    2016-12-24 22:51:00
55517    23624    691    2016-12-24 19:03:00    2016-12-24 19:03:00
55518    23625    522    2016-12-24 04:25:00    2016-12-24 04:25:00
55519    23625    903    2016-12-24 02:09:00    2016-12-24 02:09:00
55520    23625    867    2016-12-24 22:57:00    2016-12-24 22:57:00
55521    23625    544    2016-12-24 15:01:00    2016-12-24 15:01:00
55522    23625    859    2016-12-24 11:37:00    2016-12-24 11:37:00
55523    23626    830    2016-12-24 11:17:00    2016-12-24 11:17:00
55524    23626    565    2016-12-24 16:16:00    2016-12-24 16:16:00
55525    23626    740    2016-12-24 23:02:00    2016-12-24 23:02:00
55526    23626    786    2016-12-24 20:46:00    2016-12-24 20:46:00
55527    23626    604    2016-12-24 01:27:00    2016-12-24 01:27:00
55528    23627    907    2016-12-24 15:18:00    2016-12-24 15:18:00
55529    23627    545    2016-12-24 05:51:00    2016-12-24 05:51:00
55530    23627    830    2016-12-24 17:20:00    2016-12-24 17:20:00
55531    23627    804    2016-12-24 02:53:00    2016-12-24 02:53:00
55532    23627    711    2016-12-24 18:47:00    2016-12-24 18:47:00
55533    23628    622    2016-12-24 07:36:00    2016-12-24 07:36:00
55534    23628    635    2016-12-24 17:51:00    2016-12-24 17:51:00
55535    23628    599    2016-12-24 20:40:00    2016-12-24 20:40:00
55536    23628    780    2016-12-24 12:54:00    2016-12-24 12:54:00
55537    23628    554    2016-12-24 19:30:00    2016-12-24 19:30:00
55538    23629    500    2016-12-24 07:06:00    2016-12-24 07:06:00
55539    23629    664    2016-12-24 18:44:00    2016-12-24 18:44:00
55540    23629    591    2016-12-24 15:25:00    2016-12-24 15:25:00
55541    23629    875    2016-12-24 16:14:00    2016-12-24 16:14:00
55542    23629    745    2016-12-24 12:22:00    2016-12-24 12:22:00
55543    23630    723    2016-12-24 01:47:00    2016-12-24 01:47:00
55544    23630    778    2016-12-24 17:46:00    2016-12-24 17:46:00
55545    23630    845    2016-12-24 19:00:00    2016-12-24 19:00:00
55546    23630    792    2016-12-24 04:26:00    2016-12-24 04:26:00
55547    23630    628    2016-12-24 15:44:00    2016-12-24 15:44:00
55548    23631    787    2016-12-24 04:28:00    2016-12-24 04:28:00
55549    23631    511    2016-12-24 22:54:00    2016-12-24 22:54:00
55550    23631    767    2016-12-24 20:45:00    2016-12-24 20:45:00
55551    23631    559    2016-12-24 13:18:00    2016-12-24 13:18:00
55552    23631    728    2016-12-24 11:20:00    2016-12-24 11:20:00
55553    23632    822    2016-12-24 21:53:00    2016-12-24 21:53:00
55554    23632    824    2016-12-24 07:58:00    2016-12-24 07:58:00
55555    23632    536    2016-12-24 15:48:00    2016-12-24 15:48:00
55556    23632    693    2016-12-24 15:21:00    2016-12-24 15:21:00
55557    23632    484    2016-12-24 16:12:00    2016-12-24 16:12:00
55558    23633    642    2016-12-24 12:54:00    2016-12-24 12:54:00
55559    23633    695    2016-12-24 03:11:00    2016-12-24 03:11:00
55560    23633    762    2016-12-24 12:37:00    2016-12-24 12:37:00
55561    23633    907    2016-12-24 02:51:00    2016-12-24 02:51:00
55562    23633    476    2016-12-24 16:45:00    2016-12-24 16:45:00
55563    23634    744    2016-12-24 08:47:00    2016-12-24 08:47:00
55564    23634    901    2016-12-24 22:52:00    2016-12-24 22:52:00
55565    23634    620    2016-12-24 01:12:00    2016-12-24 01:12:00
55566    23634    769    2016-12-24 14:44:00    2016-12-24 14:44:00
55567    23634    546    2016-12-24 03:24:00    2016-12-24 03:24:00
55568    23635    539    2016-12-24 04:25:00    2016-12-24 04:25:00
55569    23635    582    2016-12-24 22:34:00    2016-12-24 22:34:00
55570    23635    612    2016-12-24 07:01:00    2016-12-24 07:01:00
55571    23635    748    2016-12-24 13:57:00    2016-12-24 13:57:00
55572    23635    472    2016-12-24 05:07:00    2016-12-24 05:07:00
55573    23636    770    2016-12-24 14:49:00    2016-12-24 14:49:00
55574    23636    712    2016-12-24 08:36:00    2016-12-24 08:36:00
55575    23636    886    2016-12-24 13:41:00    2016-12-24 13:41:00
55576    23636    607    2016-12-24 06:19:00    2016-12-24 06:19:00
55577    23636    804    2016-12-24 01:23:00    2016-12-24 01:23:00
55578    23637    783    2016-12-24 16:55:00    2016-12-24 16:55:00
55579    23637    477    2016-12-24 06:59:00    2016-12-24 06:59:00
55580    23637    555    2016-12-24 18:35:00    2016-12-24 18:35:00
55581    23637    493    2016-12-24 10:50:00    2016-12-24 10:50:00
55582    23637    543    2016-12-24 09:53:00    2016-12-24 09:53:00
55583    23638    825    2016-12-24 18:27:00    2016-12-24 18:27:00
55584    23638    669    2016-12-24 19:27:00    2016-12-24 19:27:00
55585    23638    697    2016-12-24 12:57:00    2016-12-24 12:57:00
55586    23638    628    2016-12-24 20:37:00    2016-12-24 20:37:00
55587    23638    535    2016-12-24 05:47:00    2016-12-24 05:47:00
55588    23639    695    2016-12-24 12:57:00    2016-12-24 12:57:00
55589    23639    816    2016-12-24 19:35:00    2016-12-24 19:35:00
55590    23639    551    2016-12-24 01:29:00    2016-12-24 01:29:00
55591    23639    505    2016-12-24 22:45:00    2016-12-24 22:45:00
55592    23639    694    2016-12-24 10:07:00    2016-12-24 10:07:00
55593    23640    476    2016-12-24 13:08:00    2016-12-24 13:08:00
55594    23640    470    2016-12-24 05:20:00    2016-12-24 05:20:00
55595    23640    597    2016-12-24 02:37:00    2016-12-24 02:37:00
55596    23640    696    2016-12-24 18:59:00    2016-12-24 18:59:00
55597    23640    580    2016-12-24 03:39:00    2016-12-24 03:39:00
55598    23641    563    2016-12-24 06:03:00    2016-12-24 06:03:00
55599    23641    811    2016-12-24 02:42:00    2016-12-24 02:42:00
55600    23641    505    2016-12-24 01:30:00    2016-12-24 01:30:00
55601    23641    857    2016-12-24 04:24:00    2016-12-24 04:24:00
55602    23641    829    2016-12-24 17:34:00    2016-12-24 17:34:00
55603    23642    675    2016-12-24 22:53:00    2016-12-24 22:53:00
55604    23642    866    2016-12-24 17:56:00    2016-12-24 17:56:00
55605    23642    695    2016-12-24 13:32:00    2016-12-24 13:32:00
55606    23642    620    2016-12-24 02:18:00    2016-12-24 02:18:00
55607    23642    715    2016-12-24 04:00:00    2016-12-24 04:00:00
55608    23643    910    2016-12-24 16:11:00    2016-12-24 16:11:00
55609    23643    703    2016-12-24 22:42:00    2016-12-24 22:42:00
55610    23643    946    2016-12-24 21:01:00    2016-12-24 21:01:00
55611    23643    564    2016-12-24 14:17:00    2016-12-24 14:17:00
55612    23643    906    2016-12-24 12:24:00    2016-12-24 12:24:00
55613    23644    560    2016-12-24 07:56:00    2016-12-24 07:56:00
55614    23644    835    2016-12-24 21:51:00    2016-12-24 21:51:00
55615    23644    617    2016-12-24 13:31:00    2016-12-24 13:31:00
55616    23644    720    2016-12-24 04:19:00    2016-12-24 04:19:00
55617    23644    853    2016-12-24 13:26:00    2016-12-24 13:26:00
55618    23645    791    2016-12-24 20:55:00    2016-12-24 20:55:00
55619    23645    892    2016-12-24 10:05:00    2016-12-24 10:05:00
55620    23645    881    2016-12-24 20:03:00    2016-12-24 20:03:00
55621    23645    806    2016-12-24 13:28:00    2016-12-24 13:28:00
55622    23645    675    2016-12-24 12:36:00    2016-12-24 12:36:00
55623    23646    942    2016-12-24 09:00:00    2016-12-24 09:00:00
55624    23646    808    2016-12-24 06:52:00    2016-12-24 06:52:00
55625    23646    715    2016-12-24 22:44:00    2016-12-24 22:44:00
55626    23646    926    2016-12-24 22:15:00    2016-12-24 22:15:00
55627    23646    583    2016-12-24 13:34:00    2016-12-24 13:34:00
55628    23647    763    2016-12-24 13:14:00    2016-12-24 13:14:00
55629    23647    636    2016-12-24 05:25:00    2016-12-24 05:25:00
55630    23647    733    2016-12-24 13:21:00    2016-12-24 13:21:00
55631    23647    658    2016-12-24 15:48:00    2016-12-24 15:48:00
55632    23647    856    2016-12-24 02:33:00    2016-12-24 02:33:00
55633    23648    841    2016-12-24 03:59:00    2016-12-24 03:59:00
55634    23648    517    2016-12-24 21:00:00    2016-12-24 21:00:00
55635    23648    718    2016-12-24 20:29:00    2016-12-24 20:29:00
55636    23648    806    2016-12-24 22:21:00    2016-12-24 22:21:00
55637    23648    737    2016-12-24 03:54:00    2016-12-24 03:54:00
55638    23649    792    2016-12-24 23:05:00    2016-12-24 23:05:00
55639    23649    585    2016-12-24 12:30:00    2016-12-24 12:30:00
55640    23649    514    2016-12-24 10:46:00    2016-12-24 10:46:00
55641    23649    668    2016-12-24 22:08:00    2016-12-24 22:08:00
55642    23649    839    2016-12-24 12:14:00    2016-12-24 12:14:00
55643    23650    740    2016-12-24 01:10:00    2016-12-24 01:10:00
55644    23650    764    2016-12-24 11:45:00    2016-12-24 11:45:00
55645    23650    670    2016-12-24 09:37:00    2016-12-24 09:37:00
55646    23650    787    2016-12-24 17:56:00    2016-12-24 17:56:00
55647    23650    509    2016-12-24 14:52:00    2016-12-24 14:52:00
55648    23651    924    2016-12-24 03:40:00    2016-12-24 03:40:00
55649    23651    717    2016-12-24 03:29:00    2016-12-24 03:29:00
55650    23651    535    2016-12-24 14:31:00    2016-12-24 14:31:00
55651    23651    487    2016-12-24 15:28:00    2016-12-24 15:28:00
55652    23651    532    2016-12-24 16:10:00    2016-12-24 16:10:00
55653    23652    745    2016-12-24 18:48:00    2016-12-24 18:48:00
55654    23652    702    2016-12-24 21:40:00    2016-12-24 21:40:00
55655    23652    527    2016-12-24 05:23:00    2016-12-24 05:23:00
55656    23652    722    2016-12-24 05:17:00    2016-12-24 05:17:00
55657    23652    593    2016-12-24 07:10:00    2016-12-24 07:10:00
55658    23653    545    2016-12-24 03:53:00    2016-12-24 03:53:00
55659    23653    683    2016-12-24 21:17:00    2016-12-24 21:17:00
55660    23653    617    2016-12-24 23:24:00    2016-12-24 23:24:00
55661    23653    566    2016-12-24 23:50:00    2016-12-24 23:50:00
55662    23653    798    2016-12-24 11:37:00    2016-12-24 11:37:00
55663    23654    475    2016-12-24 03:10:00    2016-12-24 03:10:00
55664    23654    615    2016-12-24 04:28:00    2016-12-24 04:28:00
55665    23654    913    2016-12-24 01:17:00    2016-12-24 01:17:00
55666    23654    822    2016-12-24 08:22:00    2016-12-24 08:22:00
55667    23654    586    2016-12-24 10:26:00    2016-12-24 10:26:00
55668    23655    822    2016-12-24 03:16:00    2016-12-24 03:16:00
55669    23655    786    2016-12-24 06:37:00    2016-12-24 06:37:00
55670    23655    693    2016-12-24 14:55:00    2016-12-24 14:55:00
55671    23655    562    2016-12-24 02:03:00    2016-12-24 02:03:00
55672    23655    602    2016-12-24 20:24:00    2016-12-24 20:24:00
55673    23656    588    2016-12-24 11:38:00    2016-12-24 11:38:00
55674    23656    663    2016-12-24 23:36:00    2016-12-24 23:36:00
55675    23656    679    2016-12-24 15:05:00    2016-12-24 15:05:00
55676    23656    785    2016-12-24 22:59:00    2016-12-24 22:59:00
55677    23656    474    2016-12-24 03:04:00    2016-12-24 03:04:00
55678    23657    576    2016-12-24 05:57:00    2016-12-24 05:57:00
55679    23657    927    2016-12-24 16:11:00    2016-12-24 16:11:00
55680    23657    885    2016-12-24 08:01:00    2016-12-24 08:01:00
55681    23657    842    2016-12-24 17:25:00    2016-12-24 17:25:00
55682    23657    583    2016-12-24 06:40:00    2016-12-24 06:40:00
55683    23658    628    2016-12-24 23:46:00    2016-12-24 23:46:00
55684    23658    837    2016-12-24 14:00:00    2016-12-24 14:00:00
55685    23658    734    2016-12-24 05:28:00    2016-12-24 05:28:00
55686    23658    754    2016-12-24 01:09:00    2016-12-24 01:09:00
55687    23658    916    2016-12-24 14:54:00    2016-12-24 14:54:00
55688    23659    702    2016-12-24 20:32:00    2016-12-24 20:32:00
55689    23659    936    2016-12-24 11:03:00    2016-12-24 11:03:00
55690    23659    710    2016-12-24 22:07:00    2016-12-24 22:07:00
55691    23659    710    2016-12-24 20:21:00    2016-12-24 20:21:00
55692    23659    546    2016-12-24 22:40:00    2016-12-24 22:40:00
55693    23660    894    2016-12-24 18:32:00    2016-12-24 18:32:00
55694    23660    585    2016-12-24 05:10:00    2016-12-24 05:10:00
55695    23660    869    2016-12-24 07:42:00    2016-12-24 07:42:00
55696    23660    865    2016-12-24 23:41:00    2016-12-24 23:41:00
55697    23660    706    2016-12-24 19:07:00    2016-12-24 19:07:00
55698    23661    606    2016-12-24 18:04:00    2016-12-24 18:04:00
55699    23661    708    2016-12-24 11:12:00    2016-12-24 11:12:00
55700    23661    487    2016-12-24 18:16:00    2016-12-24 18:16:00
55701    23661    716    2016-12-24 06:26:00    2016-12-24 06:26:00
55702    23661    928    2016-12-24 04:32:00    2016-12-24 04:32:00
55703    23662    601    2016-12-24 17:18:00    2016-12-24 17:18:00
55704    23662    479    2016-12-24 07:38:00    2016-12-24 07:38:00
55705    23662    900    2016-12-24 01:16:00    2016-12-24 01:16:00
55706    23662    727    2016-12-24 03:47:00    2016-12-24 03:47:00
55707    23662    630    2016-12-24 22:00:00    2016-12-24 22:00:00
55708    23663    571    2016-12-24 13:51:00    2016-12-24 13:51:00
55709    23663    742    2016-12-24 13:00:00    2016-12-24 13:00:00
55710    23663    501    2016-12-24 13:52:00    2016-12-24 13:52:00
55711    23663    494    2016-12-24 12:29:00    2016-12-24 12:29:00
55712    23663    662    2016-12-24 07:22:00    2016-12-24 07:22:00
55713    23664    485    2016-12-24 17:00:00    2016-12-24 17:00:00
55714    23664    894    2016-12-24 12:47:00    2016-12-24 12:47:00
55715    23664    896    2016-12-24 17:21:00    2016-12-24 17:21:00
55716    23664    660    2016-12-24 15:31:00    2016-12-24 15:31:00
55717    23664    892    2016-12-24 04:18:00    2016-12-24 04:18:00
55718    23665    823    2016-12-24 07:26:00    2016-12-24 07:26:00
55719    23665    889    2016-12-24 02:39:00    2016-12-24 02:39:00
55720    23665    840    2016-12-24 12:14:00    2016-12-24 12:14:00
55721    23665    508    2016-12-24 12:19:00    2016-12-24 12:19:00
55722    23665    709    2016-12-24 19:04:00    2016-12-24 19:04:00
55723    23666    912    2016-12-24 05:35:00    2016-12-24 05:35:00
55724    23666    856    2016-12-24 02:13:00    2016-12-24 02:13:00
55725    23666    829    2016-12-24 02:20:00    2016-12-24 02:20:00
55726    23666    950    2016-12-24 10:13:00    2016-12-24 10:13:00
55727    23666    654    2016-12-24 13:32:00    2016-12-24 13:32:00
55728    23667    813    2016-12-24 22:05:00    2016-12-24 22:05:00
55729    23667    711    2016-12-24 08:10:00    2016-12-24 08:10:00
55730    23667    631    2016-12-24 18:26:00    2016-12-24 18:26:00
55731    23667    704    2016-12-24 11:55:00    2016-12-24 11:55:00
55732    23667    683    2016-12-24 01:53:00    2016-12-24 01:53:00
55733    23668    564    2016-12-24 08:33:00    2016-12-24 08:33:00
55734    23668    959    2016-12-24 11:52:00    2016-12-24 11:52:00
55735    23668    652    2016-12-24 19:56:00    2016-12-24 19:56:00
55736    23668    951    2016-12-24 15:13:00    2016-12-24 15:13:00
55737    23668    658    2016-12-24 13:26:00    2016-12-24 13:26:00
55738    23669    957    2016-12-24 02:46:00    2016-12-24 02:46:00
55739    23669    781    2016-12-24 18:08:00    2016-12-24 18:08:00
55740    23669    473    2016-12-24 04:21:00    2016-12-24 04:21:00
55741    23669    645    2016-12-24 20:18:00    2016-12-24 20:18:00
55742    23669    831    2016-12-24 21:23:00    2016-12-24 21:23:00
55743    23670    775    2016-12-24 21:51:00    2016-12-24 21:51:00
55744    23670    713    2016-12-24 14:10:00    2016-12-24 14:10:00
55745    23670    700    2016-12-24 13:16:00    2016-12-24 13:16:00
55746    23670    936    2016-12-24 15:45:00    2016-12-24 15:45:00
55747    23670    957    2016-12-24 14:07:00    2016-12-24 14:07:00
55748    23671    961    2016-12-24 02:44:00    2016-12-24 02:44:00
55749    23671    611    2016-12-24 08:54:00    2016-12-24 08:54:00
55750    23671    482    2016-12-24 12:28:00    2016-12-24 12:28:00
55751    23671    674    2016-12-24 20:48:00    2016-12-24 20:48:00
55752    23671    542    2016-12-24 16:14:00    2016-12-24 16:14:00
55753    23672    623    2016-12-24 11:06:00    2016-12-24 11:06:00
55754    23672    514    2016-12-24 16:17:00    2016-12-24 16:17:00
55755    23672    662    2016-12-24 08:12:00    2016-12-24 08:12:00
55756    23672    781    2016-12-24 04:07:00    2016-12-24 04:07:00
55757    23672    759    2016-12-24 04:10:00    2016-12-24 04:10:00
55758    23673    537    2016-12-24 12:58:00    2016-12-24 12:58:00
55759    23673    633    2016-12-24 18:47:00    2016-12-24 18:47:00
55760    23673    889    2016-12-24 08:52:00    2016-12-24 08:52:00
55761    23673    945    2016-12-24 18:20:00    2016-12-24 18:20:00
55762    23673    678    2016-12-24 15:07:00    2016-12-24 15:07:00
55763    23674    783    2016-12-24 14:10:00    2016-12-24 14:10:00
55764    23674    928    2016-12-24 04:56:00    2016-12-24 04:56:00
55765    23674    550    2016-12-24 05:49:00    2016-12-24 05:49:00
55766    23674    944    2016-12-24 15:05:00    2016-12-24 15:05:00
55767    23674    909    2016-12-24 22:15:00    2016-12-24 22:15:00
55768    23675    568    2016-12-24 16:16:00    2016-12-24 16:16:00
55769    23675    900    2016-12-24 20:33:00    2016-12-24 20:33:00
55770    23675    764    2016-12-24 04:56:00    2016-12-24 04:56:00
55771    23675    467    2016-12-24 16:02:00    2016-12-24 16:02:00
55772    23675    632    2016-12-24 05:27:00    2016-12-24 05:27:00
55773    23676    673    2016-12-25 14:04:00    2016-12-25 14:04:00
55774    23676    767    2016-12-25 23:47:00    2016-12-25 23:47:00
55775    23676    528    2016-12-25 08:21:00    2016-12-25 08:21:00
55776    23676    798    2016-12-25 06:34:00    2016-12-25 06:34:00
55777    23676    914    2016-12-25 11:14:00    2016-12-25 11:14:00
55778    23677    773    2016-12-25 12:02:00    2016-12-25 12:02:00
55779    23677    814    2016-12-25 09:38:00    2016-12-25 09:38:00
55780    23677    576    2016-12-25 04:41:00    2016-12-25 04:41:00
55781    23677    620    2016-12-25 09:03:00    2016-12-25 09:03:00
55782    23677    866    2016-12-25 07:42:00    2016-12-25 07:42:00
55783    23678    522    2016-12-25 08:46:00    2016-12-25 08:46:00
55784    23678    623    2016-12-25 20:52:00    2016-12-25 20:52:00
55785    23678    685    2016-12-25 23:10:00    2016-12-25 23:10:00
55786    23678    878    2016-12-25 07:25:00    2016-12-25 07:25:00
55787    23678    529    2016-12-25 19:19:00    2016-12-25 19:19:00
55788    23679    702    2016-12-25 14:16:00    2016-12-25 14:16:00
55789    23679    813    2016-12-25 07:38:00    2016-12-25 07:38:00
55790    23679    701    2016-12-25 23:08:00    2016-12-25 23:08:00
55791    23679    635    2016-12-25 21:00:00    2016-12-25 21:00:00
55792    23679    769    2016-12-25 22:31:00    2016-12-25 22:31:00
55793    23680    576    2016-12-25 13:47:00    2016-12-25 13:47:00
55794    23680    848    2016-12-25 13:35:00    2016-12-25 13:35:00
55795    23680    859    2016-12-25 09:45:00    2016-12-25 09:45:00
55796    23680    628    2016-12-25 09:43:00    2016-12-25 09:43:00
55797    23680    649    2016-12-25 17:08:00    2016-12-25 17:08:00
55798    23681    940    2016-12-25 07:03:00    2016-12-25 07:03:00
55799    23681    730    2016-12-25 22:58:00    2016-12-25 22:58:00
55800    23681    478    2016-12-25 06:32:00    2016-12-25 06:32:00
55801    23681    474    2016-12-25 04:51:00    2016-12-25 04:51:00
55802    23681    707    2016-12-25 02:04:00    2016-12-25 02:04:00
55803    23682    894    2016-12-25 22:23:00    2016-12-25 22:23:00
55804    23682    873    2016-12-25 05:33:00    2016-12-25 05:33:00
55805    23682    474    2016-12-25 04:41:00    2016-12-25 04:41:00
55806    23682    772    2016-12-25 12:36:00    2016-12-25 12:36:00
55807    23682    775    2016-12-25 22:46:00    2016-12-25 22:46:00
55808    23683    665    2016-12-25 05:40:00    2016-12-25 05:40:00
55809    23683    850    2016-12-25 11:52:00    2016-12-25 11:52:00
55810    23683    557    2016-12-25 01:24:00    2016-12-25 01:24:00
55811    23683    667    2016-12-25 14:35:00    2016-12-25 14:35:00
55812    23683    549    2016-12-25 11:33:00    2016-12-25 11:33:00
55813    23684    719    2016-12-25 01:08:00    2016-12-25 01:08:00
55814    23684    641    2016-12-25 12:02:00    2016-12-25 12:02:00
55815    23684    890    2016-12-25 21:02:00    2016-12-25 21:02:00
55816    23684    631    2016-12-25 12:36:00    2016-12-25 12:36:00
55817    23684    874    2016-12-25 16:54:00    2016-12-25 16:54:00
55818    23685    736    2016-12-25 07:52:00    2016-12-25 07:52:00
55819    23685    644    2016-12-25 18:10:00    2016-12-25 18:10:00
55820    23685    675    2016-12-25 06:14:00    2016-12-25 06:14:00
55821    23685    795    2016-12-25 23:00:00    2016-12-25 23:00:00
55822    23685    794    2016-12-25 05:41:00    2016-12-25 05:41:00
55823    23686    600    2016-12-25 19:01:00    2016-12-25 19:01:00
55824    23686    571    2016-12-25 09:20:00    2016-12-25 09:20:00
55825    23686    610    2016-12-25 13:00:00    2016-12-25 13:00:00
55826    23686    618    2016-12-25 05:46:00    2016-12-25 05:46:00
55827    23686    659    2016-12-25 05:14:00    2016-12-25 05:14:00
55828    23687    849    2016-12-25 18:49:00    2016-12-25 18:49:00
55829    23687    892    2016-12-25 23:36:00    2016-12-25 23:36:00
55830    23687    830    2016-12-25 01:43:00    2016-12-25 01:43:00
55831    23687    955    2016-12-25 02:56:00    2016-12-25 02:56:00
55832    23687    493    2016-12-25 02:12:00    2016-12-25 02:12:00
55833    23688    802    2016-12-25 15:56:00    2016-12-25 15:56:00
55834    23688    857    2016-12-25 02:21:00    2016-12-25 02:21:00
55835    23688    733    2016-12-25 22:28:00    2016-12-25 22:28:00
55836    23688    545    2016-12-25 14:47:00    2016-12-25 14:47:00
55837    23688    794    2016-12-25 18:38:00    2016-12-25 18:38:00
55838    23689    938    2016-12-25 23:24:00    2016-12-25 23:24:00
55839    23689    795    2016-12-25 02:22:00    2016-12-25 02:22:00
55840    23689    471    2016-12-25 17:42:00    2016-12-25 17:42:00
55841    23689    482    2016-12-25 06:53:00    2016-12-25 06:53:00
55842    23689    673    2016-12-25 12:33:00    2016-12-25 12:33:00
55843    23690    752    2016-12-25 12:32:00    2016-12-25 12:32:00
55844    23690    745    2016-12-25 16:54:00    2016-12-25 16:54:00
55845    23690    859    2016-12-25 18:37:00    2016-12-25 18:37:00
55846    23690    873    2016-12-25 11:40:00    2016-12-25 11:40:00
55847    23690    679    2016-12-25 04:01:00    2016-12-25 04:01:00
55848    23691    511    2016-12-25 11:47:00    2016-12-25 11:47:00
55849    23691    923    2016-12-25 05:00:00    2016-12-25 05:00:00
55850    23691    723    2016-12-25 04:22:00    2016-12-25 04:22:00
55851    23691    602    2016-12-25 13:58:00    2016-12-25 13:58:00
55852    23691    855    2016-12-25 06:11:00    2016-12-25 06:11:00
55853    23692    867    2016-12-25 13:40:00    2016-12-25 13:40:00
55854    23692    630    2016-12-25 17:06:00    2016-12-25 17:06:00
55855    23692    502    2016-12-25 14:47:00    2016-12-25 14:47:00
55856    23692    737    2016-12-25 15:04:00    2016-12-25 15:04:00
55857    23692    629    2016-12-25 13:34:00    2016-12-25 13:34:00
55858    23693    497    2016-12-25 20:01:00    2016-12-25 20:01:00
55859    23693    715    2016-12-25 07:46:00    2016-12-25 07:46:00
55860    23693    623    2016-12-25 21:25:00    2016-12-25 21:25:00
55861    23693    878    2016-12-25 07:24:00    2016-12-25 07:24:00
55862    23693    589    2016-12-25 15:56:00    2016-12-25 15:56:00
55863    23694    521    2016-12-25 17:48:00    2016-12-25 17:48:00
55864    23694    816    2016-12-25 06:11:00    2016-12-25 06:11:00
55865    23694    637    2016-12-25 21:19:00    2016-12-25 21:19:00
55866    23694    803    2016-12-25 01:03:00    2016-12-25 01:03:00
55867    23694    634    2016-12-25 02:00:00    2016-12-25 02:00:00
55868    23695    590    2016-12-25 22:40:00    2016-12-25 22:40:00
55869    23695    908    2016-12-25 21:05:00    2016-12-25 21:05:00
55870    23695    501    2016-12-25 20:04:00    2016-12-25 20:04:00
55871    23695    881    2016-12-25 20:05:00    2016-12-25 20:05:00
55872    23695    666    2016-12-25 07:56:00    2016-12-25 07:56:00
55873    23696    734    2016-12-25 22:53:00    2016-12-25 22:53:00
55874    23696    498    2016-12-25 18:53:00    2016-12-25 18:53:00
55875    23696    498    2016-12-25 16:58:00    2016-12-25 16:58:00
55876    23696    506    2016-12-25 07:50:00    2016-12-25 07:50:00
55877    23696    511    2016-12-25 12:01:00    2016-12-25 12:01:00
55878    23697    708    2016-12-25 19:05:00    2016-12-25 19:05:00
55879    23697    524    2016-12-25 16:00:00    2016-12-25 16:00:00
55880    23697    730    2016-12-25 20:06:00    2016-12-25 20:06:00
55881    23697    697    2016-12-25 19:54:00    2016-12-25 19:54:00
55882    23697    893    2016-12-25 05:15:00    2016-12-25 05:15:00
55883    23698    624    2016-12-25 01:00:00    2016-12-25 01:00:00
55884    23698    703    2016-12-25 07:12:00    2016-12-25 07:12:00
55885    23698    758    2016-12-25 21:02:00    2016-12-25 21:02:00
55886    23698    644    2016-12-25 05:54:00    2016-12-25 05:54:00
55887    23698    867    2016-12-25 01:35:00    2016-12-25 01:35:00
55888    23699    628    2016-12-25 11:06:00    2016-12-25 11:06:00
55889    23699    841    2016-12-25 13:32:00    2016-12-25 13:32:00
55890    23699    857    2016-12-25 20:38:00    2016-12-25 20:38:00
55891    23699    567    2016-12-25 09:37:00    2016-12-25 09:37:00
55892    23699    572    2016-12-25 14:27:00    2016-12-25 14:27:00
55893    23700    854    2016-12-25 09:58:00    2016-12-25 09:58:00
55894    23700    761    2016-12-25 14:09:00    2016-12-25 14:09:00
55895    23700    745    2016-12-25 22:18:00    2016-12-25 22:18:00
55896    23700    768    2016-12-25 03:44:00    2016-12-25 03:44:00
55897    23700    896    2016-12-25 10:50:00    2016-12-25 10:50:00
55898    23701    928    2016-12-25 22:59:00    2016-12-25 22:59:00
55899    23701    961    2016-12-25 16:42:00    2016-12-25 16:42:00
55900    23701    925    2016-12-25 19:25:00    2016-12-25 19:25:00
55901    23701    575    2016-12-25 14:14:00    2016-12-25 14:14:00
55902    23701    705    2016-12-25 21:59:00    2016-12-25 21:59:00
55903    23702    646    2016-12-25 06:56:00    2016-12-25 06:56:00
55904    23702    520    2016-12-25 19:33:00    2016-12-25 19:33:00
55905    23702    853    2016-12-25 18:18:00    2016-12-25 18:18:00
55906    23702    860    2016-12-25 08:34:00    2016-12-25 08:34:00
55907    23702    478    2016-12-25 08:20:00    2016-12-25 08:20:00
55908    23703    796    2016-12-25 10:01:00    2016-12-25 10:01:00
55909    23703    560    2016-12-25 08:03:00    2016-12-25 08:03:00
55910    23703    716    2016-12-25 15:59:00    2016-12-25 15:59:00
55911    23703    646    2016-12-25 09:08:00    2016-12-25 09:08:00
55912    23703    508    2016-12-25 01:17:00    2016-12-25 01:17:00
55913    23704    633    2016-12-25 10:25:00    2016-12-25 10:25:00
55914    23704    785    2016-12-25 16:41:00    2016-12-25 16:41:00
55915    23704    806    2016-12-25 04:48:00    2016-12-25 04:48:00
55916    23704    500    2016-12-25 04:02:00    2016-12-25 04:02:00
55917    23704    689    2016-12-25 08:28:00    2016-12-25 08:28:00
55918    23705    584    2016-12-25 07:01:00    2016-12-25 07:01:00
55919    23705    898    2016-12-25 21:39:00    2016-12-25 21:39:00
55920    23705    577    2016-12-25 23:17:00    2016-12-25 23:17:00
55921    23705    947    2016-12-25 18:58:00    2016-12-25 18:58:00
55922    23705    613    2016-12-25 22:30:00    2016-12-25 22:30:00
55923    23706    593    2016-12-25 22:28:00    2016-12-25 22:28:00
55924    23706    891    2016-12-25 08:58:00    2016-12-25 08:58:00
55925    23706    835    2016-12-25 14:28:00    2016-12-25 14:28:00
55926    23706    824    2016-12-25 17:22:00    2016-12-25 17:22:00
55927    23706    797    2016-12-25 11:28:00    2016-12-25 11:28:00
55928    23707    509    2016-12-25 03:11:00    2016-12-25 03:11:00
55929    23707    841    2016-12-25 01:28:00    2016-12-25 01:28:00
55930    23707    900    2016-12-25 06:33:00    2016-12-25 06:33:00
55931    23707    872    2016-12-25 16:28:00    2016-12-25 16:28:00
55932    23707    560    2016-12-25 11:03:00    2016-12-25 11:03:00
55933    23708    519    2016-12-25 11:08:00    2016-12-25 11:08:00
55934    23708    712    2016-12-25 03:36:00    2016-12-25 03:36:00
55935    23708    927    2016-12-25 22:15:00    2016-12-25 22:15:00
55936    23708    473    2016-12-25 17:48:00    2016-12-25 17:48:00
55937    23708    482    2016-12-25 06:36:00    2016-12-25 06:36:00
55938    23709    631    2016-12-25 23:07:00    2016-12-25 23:07:00
55939    23709    489    2016-12-25 20:06:00    2016-12-25 20:06:00
55940    23709    484    2016-12-25 13:23:00    2016-12-25 13:23:00
55941    23709    947    2016-12-25 01:20:00    2016-12-25 01:20:00
55942    23709    556    2016-12-25 22:32:00    2016-12-25 22:32:00
55943    23710    727    2016-12-25 04:57:00    2016-12-25 04:57:00
55944    23710    623    2016-12-25 15:23:00    2016-12-25 15:23:00
55945    23710    617    2016-12-25 01:22:00    2016-12-25 01:22:00
55946    23710    615    2016-12-25 03:40:00    2016-12-25 03:40:00
55947    23710    882    2016-12-25 10:33:00    2016-12-25 10:33:00
55948    23711    558    2016-12-25 08:36:00    2016-12-25 08:36:00
55949    23711    805    2016-12-25 22:34:00    2016-12-25 22:34:00
55950    23711    627    2016-12-25 23:38:00    2016-12-25 23:38:00
55951    23711    656    2016-12-25 17:54:00    2016-12-25 17:54:00
55952    23711    708    2016-12-25 04:19:00    2016-12-25 04:19:00
55953    23712    759    2016-12-25 05:47:00    2016-12-25 05:47:00
55954    23712    808    2016-12-25 07:40:00    2016-12-25 07:40:00
55955    23712    726    2016-12-25 20:34:00    2016-12-25 20:34:00
55956    23712    920    2016-12-25 17:50:00    2016-12-25 17:50:00
55957    23712    719    2016-12-25 19:18:00    2016-12-25 19:18:00
55958    23713    708    2016-12-25 22:36:00    2016-12-25 22:36:00
55959    23713    874    2016-12-25 22:13:00    2016-12-25 22:13:00
55960    23713    892    2016-12-25 13:59:00    2016-12-25 13:59:00
55961    23713    699    2016-12-25 22:58:00    2016-12-25 22:58:00
55962    23713    513    2016-12-25 09:12:00    2016-12-25 09:12:00
55963    23714    621    2016-12-25 11:40:00    2016-12-25 11:40:00
55964    23714    515    2016-12-25 04:47:00    2016-12-25 04:47:00
55965    23714    597    2016-12-25 12:04:00    2016-12-25 12:04:00
55966    23714    709    2016-12-25 18:53:00    2016-12-25 18:53:00
55967    23714    476    2016-12-25 16:03:00    2016-12-25 16:03:00
55968    23715    632    2016-12-25 17:13:00    2016-12-25 17:13:00
55969    23715    580    2016-12-25 11:09:00    2016-12-25 11:09:00
55970    23715    517    2016-12-25 07:02:00    2016-12-25 07:02:00
55971    23715    514    2016-12-25 20:28:00    2016-12-25 20:28:00
55972    23715    565    2016-12-25 12:49:00    2016-12-25 12:49:00
55973    23716    798    2016-12-25 14:24:00    2016-12-25 14:24:00
55974    23716    539    2016-12-25 11:02:00    2016-12-25 11:02:00
55975    23716    767    2016-12-25 06:33:00    2016-12-25 06:33:00
55976    23716    697    2016-12-25 03:15:00    2016-12-25 03:15:00
55977    23716    698    2016-12-25 12:20:00    2016-12-25 12:20:00
55978    23717    714    2016-12-25 03:26:00    2016-12-25 03:26:00
55979    23717    886    2016-12-25 08:31:00    2016-12-25 08:31:00
55980    23717    749    2016-12-25 07:13:00    2016-12-25 07:13:00
55981    23717    674    2016-12-25 03:49:00    2016-12-25 03:49:00
55982    23717    637    2016-12-25 09:50:00    2016-12-25 09:50:00
55983    23718    659    2016-12-25 01:28:00    2016-12-25 01:28:00
55984    23718    858    2016-12-25 17:47:00    2016-12-25 17:47:00
55985    23718    499    2016-12-25 01:46:00    2016-12-25 01:46:00
55986    23718    890    2016-12-25 22:23:00    2016-12-25 22:23:00
55987    23718    843    2016-12-25 15:48:00    2016-12-25 15:48:00
55988    23719    642    2016-12-25 02:56:00    2016-12-25 02:56:00
55989    23719    729    2016-12-25 17:17:00    2016-12-25 17:17:00
55990    23719    815    2016-12-25 03:12:00    2016-12-25 03:12:00
55991    23719    654    2016-12-25 09:59:00    2016-12-25 09:59:00
55992    23719    514    2016-12-25 16:55:00    2016-12-25 16:55:00
55993    23720    737    2016-12-25 21:59:00    2016-12-25 21:59:00
55994    23720    493    2016-12-25 09:02:00    2016-12-25 09:02:00
55995    23720    870    2016-12-25 03:50:00    2016-12-25 03:50:00
55996    23720    665    2016-12-25 11:31:00    2016-12-25 11:31:00
55997    23720    699    2016-12-25 05:25:00    2016-12-25 05:25:00
55998    23721    763    2016-12-25 08:13:00    2016-12-25 08:13:00
55999    23721    792    2016-12-25 18:43:00    2016-12-25 18:43:00
56000    23721    671    2016-12-25 12:53:00    2016-12-25 12:53:00
56001    23721    655    2016-12-25 17:11:00    2016-12-25 17:11:00
56002    23721    748    2016-12-25 19:03:00    2016-12-25 19:03:00
56003    23722    766    2016-12-25 15:48:00    2016-12-25 15:48:00
56004    23722    514    2016-12-25 17:52:00    2016-12-25 17:52:00
56005    23722    697    2016-12-25 02:50:00    2016-12-25 02:50:00
56006    23722    505    2016-12-25 23:31:00    2016-12-25 23:31:00
56007    23722    762    2016-12-25 15:30:00    2016-12-25 15:30:00
56008    23723    463    2016-12-25 21:34:00    2016-12-25 21:34:00
56009    23723    557    2016-12-25 06:54:00    2016-12-25 06:54:00
56010    23723    832    2016-12-25 08:26:00    2016-12-25 08:26:00
56011    23723    615    2016-12-25 15:11:00    2016-12-25 15:11:00
56012    23723    704    2016-12-25 14:41:00    2016-12-25 14:41:00
56013    23724    944    2016-12-25 02:27:00    2016-12-25 02:27:00
56014    23724    615    2016-12-25 17:49:00    2016-12-25 17:49:00
56015    23724    704    2016-12-25 13:47:00    2016-12-25 13:47:00
56016    23724    890    2016-12-25 16:03:00    2016-12-25 16:03:00
56017    23724    932    2016-12-25 16:28:00    2016-12-25 16:28:00
56018    23725    480    2016-12-25 20:46:00    2016-12-25 20:46:00
56019    23725    947    2016-12-25 11:28:00    2016-12-25 11:28:00
56020    23725    926    2016-12-25 10:59:00    2016-12-25 10:59:00
56021    23725    519    2016-12-25 10:49:00    2016-12-25 10:49:00
56022    23725    930    2016-12-25 10:10:00    2016-12-25 10:10:00
56023    23726    604    2016-12-25 07:55:00    2016-12-25 07:55:00
56024    23726    614    2016-12-25 05:47:00    2016-12-25 05:47:00
56025    23726    623    2016-12-25 17:37:00    2016-12-25 17:37:00
56026    23726    825    2016-12-25 16:30:00    2016-12-25 16:30:00
56027    23726    593    2016-12-25 01:13:00    2016-12-25 01:13:00
56028    23727    552    2016-12-25 12:34:00    2016-12-25 12:34:00
56029    23727    932    2016-12-25 10:29:00    2016-12-25 10:29:00
56030    23727    832    2016-12-25 21:44:00    2016-12-25 21:44:00
56031    23727    593    2016-12-25 12:18:00    2016-12-25 12:18:00
56032    23727    840    2016-12-25 07:50:00    2016-12-25 07:50:00
56033    23728    566    2016-12-25 17:01:00    2016-12-25 17:01:00
56034    23728    727    2016-12-25 04:33:00    2016-12-25 04:33:00
56035    23728    484    2016-12-25 15:49:00    2016-12-25 15:49:00
56036    23728    632    2016-12-25 16:03:00    2016-12-25 16:03:00
56037    23728    664    2016-12-25 02:22:00    2016-12-25 02:22:00
56038    23729    497    2016-12-25 23:11:00    2016-12-25 23:11:00
56039    23729    885    2016-12-25 03:29:00    2016-12-25 03:29:00
56040    23729    760    2016-12-25 19:04:00    2016-12-25 19:04:00
56041    23729    669    2016-12-25 15:10:00    2016-12-25 15:10:00
56042    23729    578    2016-12-25 16:04:00    2016-12-25 16:04:00
56043    23730    715    2016-12-25 01:53:00    2016-12-25 01:53:00
56044    23730    905    2016-12-25 11:04:00    2016-12-25 11:04:00
56045    23730    568    2016-12-25 09:22:00    2016-12-25 09:22:00
56046    23730    924    2016-12-25 12:09:00    2016-12-25 12:09:00
56047    23730    868    2016-12-25 07:41:00    2016-12-25 07:41:00
56048    23731    749    2016-12-25 12:15:00    2016-12-25 12:15:00
56049    23731    472    2016-12-25 18:50:00    2016-12-25 18:50:00
56050    23731    923    2016-12-25 20:40:00    2016-12-25 20:40:00
56051    23731    810    2016-12-25 11:54:00    2016-12-25 11:54:00
56052    23731    472    2016-12-25 06:49:00    2016-12-25 06:49:00
56053    23732    586    2016-12-25 21:09:00    2016-12-25 21:09:00
56054    23732    894    2016-12-25 04:44:00    2016-12-25 04:44:00
56055    23732    490    2016-12-25 23:03:00    2016-12-25 23:03:00
56056    23732    708    2016-12-25 04:42:00    2016-12-25 04:42:00
56057    23732    836    2016-12-25 06:03:00    2016-12-25 06:03:00
56058    23733    542    2016-12-25 11:18:00    2016-12-25 11:18:00
56059    23733    574    2016-12-25 05:40:00    2016-12-25 05:40:00
56060    23733    795    2016-12-25 11:02:00    2016-12-25 11:02:00
56061    23733    564    2016-12-25 18:17:00    2016-12-25 18:17:00
56062    23733    652    2016-12-25 07:48:00    2016-12-25 07:48:00
56063    23734    600    2016-12-25 05:42:00    2016-12-25 05:42:00
56064    23734    680    2016-12-25 07:09:00    2016-12-25 07:09:00
56065    23734    723    2016-12-25 21:06:00    2016-12-25 21:06:00
56066    23734    760    2016-12-25 08:08:00    2016-12-25 08:08:00
56067    23734    620    2016-12-25 06:50:00    2016-12-25 06:50:00
56068    23735    569    2016-12-25 13:09:00    2016-12-25 13:09:00
56069    23735    947    2016-12-25 20:36:00    2016-12-25 20:36:00
56070    23735    464    2016-12-25 07:19:00    2016-12-25 07:19:00
56071    23735    522    2016-12-25 03:57:00    2016-12-25 03:57:00
56072    23735    952    2016-12-25 02:14:00    2016-12-25 02:14:00
56073    23736    664    2016-12-25 04:34:00    2016-12-25 04:34:00
56074    23736    611    2016-12-25 23:01:00    2016-12-25 23:01:00
56075    23736    509    2016-12-25 05:04:00    2016-12-25 05:04:00
56076    23736    911    2016-12-25 23:16:00    2016-12-25 23:16:00
56077    23736    872    2016-12-25 18:22:00    2016-12-25 18:22:00
56078    23737    751    2016-12-25 02:32:00    2016-12-25 02:32:00
56079    23737    618    2016-12-25 23:02:00    2016-12-25 23:02:00
56080    23737    883    2016-12-25 18:01:00    2016-12-25 18:01:00
56081    23737    956    2016-12-25 04:31:00    2016-12-25 04:31:00
56082    23737    502    2016-12-25 01:10:00    2016-12-25 01:10:00
56083    23738    797    2016-12-25 15:15:00    2016-12-25 15:15:00
56084    23738    661    2016-12-25 06:04:00    2016-12-25 06:04:00
56085    23738    584    2016-12-25 15:43:00    2016-12-25 15:43:00
56086    23738    869    2016-12-25 21:56:00    2016-12-25 21:56:00
56087    23738    486    2016-12-25 15:35:00    2016-12-25 15:35:00
56088    23739    616    2016-12-25 01:52:00    2016-12-25 01:52:00
56089    23739    907    2016-12-25 09:47:00    2016-12-25 09:47:00
56090    23739    615    2016-12-25 08:00:00    2016-12-25 08:00:00
56091    23739    718    2016-12-25 08:58:00    2016-12-25 08:58:00
56092    23739    927    2016-12-25 20:22:00    2016-12-25 20:22:00
56093    23740    775    2016-12-25 21:46:00    2016-12-25 21:46:00
56094    23740    861    2016-12-25 05:57:00    2016-12-25 05:57:00
56095    23740    616    2016-12-25 11:17:00    2016-12-25 11:17:00
56096    23740    883    2016-12-25 14:51:00    2016-12-25 14:51:00
56097    23740    707    2016-12-25 20:40:00    2016-12-25 20:40:00
56098    23741    544    2016-12-25 12:48:00    2016-12-25 12:48:00
56099    23741    774    2016-12-25 11:37:00    2016-12-25 11:37:00
56100    23741    729    2016-12-25 16:53:00    2016-12-25 16:53:00
56101    23741    577    2016-12-25 04:01:00    2016-12-25 04:01:00
56102    23741    931    2016-12-25 03:15:00    2016-12-25 03:15:00
56103    23742    840    2016-12-25 23:17:00    2016-12-25 23:17:00
56104    23742    593    2016-12-25 06:24:00    2016-12-25 06:24:00
56105    23742    649    2016-12-25 14:16:00    2016-12-25 14:16:00
56106    23742    474    2016-12-25 10:06:00    2016-12-25 10:06:00
56107    23742    633    2016-12-25 14:49:00    2016-12-25 14:49:00
56108    23743    957    2016-12-25 20:12:00    2016-12-25 20:12:00
56109    23743    523    2016-12-25 13:07:00    2016-12-25 13:07:00
56110    23743    911    2016-12-25 09:19:00    2016-12-25 09:19:00
56111    23743    915    2016-12-25 23:04:00    2016-12-25 23:04:00
56112    23743    582    2016-12-25 02:25:00    2016-12-25 02:25:00
56113    23744    916    2016-12-25 14:47:00    2016-12-25 14:47:00
56114    23744    958    2016-12-25 07:31:00    2016-12-25 07:31:00
56115    23744    756    2016-12-25 08:08:00    2016-12-25 08:08:00
56116    23744    855    2016-12-25 18:17:00    2016-12-25 18:17:00
56117    23744    747    2016-12-25 20:52:00    2016-12-25 20:52:00
56118    23745    748    2016-12-26 01:59:00    2016-12-26 01:59:00
56119    23745    876    2016-12-26 19:08:00    2016-12-26 19:08:00
56120    23745    830    2016-12-26 21:46:00    2016-12-26 21:46:00
56121    23745    858    2016-12-26 04:00:00    2016-12-26 04:00:00
56122    23745    756    2016-12-26 19:45:00    2016-12-26 19:45:00
56123    23746    687    2016-12-26 15:43:00    2016-12-26 15:43:00
56124    23746    600    2016-12-26 14:28:00    2016-12-26 14:28:00
56125    23746    875    2016-12-26 12:03:00    2016-12-26 12:03:00
56126    23746    673    2016-12-26 10:30:00    2016-12-26 10:30:00
56127    23746    876    2016-12-26 06:17:00    2016-12-26 06:17:00
56128    23747    686    2016-12-26 22:29:00    2016-12-26 22:29:00
56129    23747    722    2016-12-26 10:25:00    2016-12-26 10:25:00
56130    23747    894    2016-12-26 11:43:00    2016-12-26 11:43:00
56131    23747    487    2016-12-26 09:11:00    2016-12-26 09:11:00
56132    23747    866    2016-12-26 11:24:00    2016-12-26 11:24:00
56133    23748    775    2016-12-26 17:42:00    2016-12-26 17:42:00
56134    23748    919    2016-12-26 02:00:00    2016-12-26 02:00:00
56135    23748    546    2016-12-26 19:10:00    2016-12-26 19:10:00
56136    23748    703    2016-12-26 18:10:00    2016-12-26 18:10:00
56137    23748    489    2016-12-26 18:31:00    2016-12-26 18:31:00
56138    23749    707    2016-12-26 21:35:00    2016-12-26 21:35:00
56139    23749    785    2016-12-26 11:17:00    2016-12-26 11:17:00
56140    23749    682    2016-12-26 17:05:00    2016-12-26 17:05:00
56141    23749    715    2016-12-26 06:06:00    2016-12-26 06:06:00
56142    23749    856    2016-12-26 02:52:00    2016-12-26 02:52:00
56143    23750    551    2016-12-26 03:22:00    2016-12-26 03:22:00
56144    23750    940    2016-12-26 14:07:00    2016-12-26 14:07:00
56145    23750    643    2016-12-26 19:36:00    2016-12-26 19:36:00
56146    23750    917    2016-12-26 14:00:00    2016-12-26 14:00:00
56147    23750    626    2016-12-26 12:45:00    2016-12-26 12:45:00
56148    23751    845    2016-12-26 21:00:00    2016-12-26 21:00:00
56149    23751    828    2016-12-26 03:27:00    2016-12-26 03:27:00
56150    23751    712    2016-12-26 16:20:00    2016-12-26 16:20:00
56151    23751    474    2016-12-26 03:28:00    2016-12-26 03:28:00
56152    23751    919    2016-12-26 12:03:00    2016-12-26 12:03:00
56153    23752    931    2016-12-26 22:27:00    2016-12-26 22:27:00
56154    23752    468    2016-12-26 05:09:00    2016-12-26 05:09:00
56155    23752    870    2016-12-26 08:06:00    2016-12-26 08:06:00
56156    23752    601    2016-12-26 14:33:00    2016-12-26 14:33:00
56157    23752    540    2016-12-26 10:20:00    2016-12-26 10:20:00
56158    23753    774    2016-12-26 16:58:00    2016-12-26 16:58:00
56159    23753    873    2016-12-26 21:44:00    2016-12-26 21:44:00
56160    23753    884    2016-12-26 09:28:00    2016-12-26 09:28:00
56161    23753    722    2016-12-26 02:06:00    2016-12-26 02:06:00
56162    23753    908    2016-12-26 21:34:00    2016-12-26 21:34:00
56163    23754    619    2016-12-26 11:27:00    2016-12-26 11:27:00
56164    23754    909    2016-12-26 03:58:00    2016-12-26 03:58:00
56165    23754    714    2016-12-26 23:12:00    2016-12-26 23:12:00
56166    23754    485    2016-12-26 20:46:00    2016-12-26 20:46:00
56167    23754    472    2016-12-26 08:25:00    2016-12-26 08:25:00
56168    23755    866    2016-12-26 08:05:00    2016-12-26 08:05:00
56169    23755    817    2016-12-26 13:08:00    2016-12-26 13:08:00
56170    23755    922    2016-12-26 11:54:00    2016-12-26 11:54:00
56171    23755    752    2016-12-26 08:20:00    2016-12-26 08:20:00
56172    23755    898    2016-12-26 10:00:00    2016-12-26 10:00:00
56173    23756    548    2016-12-26 16:24:00    2016-12-26 16:24:00
56174    23756    957    2016-12-26 19:02:00    2016-12-26 19:02:00
56175    23756    666    2016-12-26 06:00:00    2016-12-26 06:00:00
56176    23756    837    2016-12-26 08:38:00    2016-12-26 08:38:00
56177    23756    608    2016-12-26 11:20:00    2016-12-26 11:20:00
56178    23757    609    2016-12-26 22:22:00    2016-12-26 22:22:00
56179    23757    687    2016-12-26 03:14:00    2016-12-26 03:14:00
56180    23757    628    2016-12-26 02:23:00    2016-12-26 02:23:00
56181    23757    794    2016-12-26 19:55:00    2016-12-26 19:55:00
56182    23757    958    2016-12-26 14:54:00    2016-12-26 14:54:00
56183    23758    613    2016-12-26 22:10:00    2016-12-26 22:10:00
56184    23758    675    2016-12-26 16:25:00    2016-12-26 16:25:00
56185    23758    505    2016-12-26 19:21:00    2016-12-26 19:21:00
56186    23758    536    2016-12-26 08:56:00    2016-12-26 08:56:00
56187    23758    582    2016-12-26 15:57:00    2016-12-26 15:57:00
56188    23759    849    2016-12-26 12:35:00    2016-12-26 12:35:00
56189    23759    543    2016-12-26 12:40:00    2016-12-26 12:40:00
56190    23759    881    2016-12-26 16:33:00    2016-12-26 16:33:00
56191    23759    655    2016-12-26 12:14:00    2016-12-26 12:14:00
56192    23759    686    2016-12-26 04:35:00    2016-12-26 04:35:00
56193    23760    822    2016-12-26 17:41:00    2016-12-26 17:41:00
56194    23760    769    2016-12-26 19:25:00    2016-12-26 19:25:00
56195    23760    718    2016-12-26 12:34:00    2016-12-26 12:34:00
56196    23760    591    2016-12-26 03:03:00    2016-12-26 03:03:00
56197    23760    713    2016-12-26 01:37:00    2016-12-26 01:37:00
56198    23761    911    2016-12-26 02:42:00    2016-12-26 02:42:00
56199    23761    491    2016-12-26 18:46:00    2016-12-26 18:46:00
56200    23761    597    2016-12-26 11:57:00    2016-12-26 11:57:00
56201    23761    600    2016-12-26 04:11:00    2016-12-26 04:11:00
56202    23761    639    2016-12-26 11:14:00    2016-12-26 11:14:00
56203    23762    515    2016-12-26 03:19:00    2016-12-26 03:19:00
56204    23762    580    2016-12-26 19:40:00    2016-12-26 19:40:00
56205    23762    483    2016-12-26 09:32:00    2016-12-26 09:32:00
56206    23762    643    2016-12-26 09:33:00    2016-12-26 09:33:00
56207    23762    932    2016-12-26 05:14:00    2016-12-26 05:14:00
56208    23763    714    2016-12-26 06:46:00    2016-12-26 06:46:00
56209    23763    937    2016-12-26 14:31:00    2016-12-26 14:31:00
56210    23763    764    2016-12-26 21:47:00    2016-12-26 21:47:00
56211    23763    853    2016-12-26 04:30:00    2016-12-26 04:30:00
56212    23763    754    2016-12-26 22:14:00    2016-12-26 22:14:00
56213    23764    925    2016-12-26 21:07:00    2016-12-26 21:07:00
56214    23764    892    2016-12-26 05:54:00    2016-12-26 05:54:00
56215    23764    904    2016-12-26 18:34:00    2016-12-26 18:34:00
56216    23764    812    2016-12-26 19:08:00    2016-12-26 19:08:00
56217    23764    925    2016-12-26 13:00:00    2016-12-26 13:00:00
56218    23765    910    2016-12-26 17:52:00    2016-12-26 17:52:00
56219    23765    625    2016-12-26 14:56:00    2016-12-26 14:56:00
56220    23765    842    2016-12-26 04:18:00    2016-12-26 04:18:00
56221    23765    744    2016-12-26 09:19:00    2016-12-26 09:19:00
56222    23765    930    2016-12-26 05:13:00    2016-12-26 05:13:00
56223    23766    741    2016-12-26 16:08:00    2016-12-26 16:08:00
56224    23766    719    2016-12-26 22:58:00    2016-12-26 22:58:00
56225    23766    920    2016-12-26 23:53:00    2016-12-26 23:53:00
56226    23766    663    2016-12-26 02:58:00    2016-12-26 02:58:00
56227    23766    586    2016-12-26 02:13:00    2016-12-26 02:13:00
56228    23767    552    2016-12-26 10:42:00    2016-12-26 10:42:00
56229    23767    862    2016-12-26 12:33:00    2016-12-26 12:33:00
56230    23767    789    2016-12-26 19:20:00    2016-12-26 19:20:00
56231    23767    958    2016-12-26 11:17:00    2016-12-26 11:17:00
56232    23767    856    2016-12-26 10:36:00    2016-12-26 10:36:00
56233    23768    586    2016-12-26 18:57:00    2016-12-26 18:57:00
56234    23768    887    2016-12-26 21:24:00    2016-12-26 21:24:00
56235    23768    674    2016-12-26 06:54:00    2016-12-26 06:54:00
56236    23768    598    2016-12-26 20:31:00    2016-12-26 20:31:00
56237    23768    735    2016-12-26 06:39:00    2016-12-26 06:39:00
56238    23769    913    2016-12-26 08:33:00    2016-12-26 08:33:00
56239    23769    935    2016-12-26 07:37:00    2016-12-26 07:37:00
56240    23769    686    2016-12-26 23:11:00    2016-12-26 23:11:00
56241    23769    737    2016-12-26 08:37:00    2016-12-26 08:37:00
56242    23769    916    2016-12-26 18:45:00    2016-12-26 18:45:00
56243    23770    906    2016-12-26 09:12:00    2016-12-26 09:12:00
56244    23770    474    2016-12-26 14:02:00    2016-12-26 14:02:00
56245    23770    491    2016-12-26 22:28:00    2016-12-26 22:28:00
56246    23770    623    2016-12-26 06:19:00    2016-12-26 06:19:00
56247    23770    690    2016-12-26 18:07:00    2016-12-26 18:07:00
56248    23771    913    2016-12-26 02:24:00    2016-12-26 02:24:00
56249    23771    950    2016-12-26 15:21:00    2016-12-26 15:21:00
56250    23771    717    2016-12-26 22:33:00    2016-12-26 22:33:00
56251    23771    534    2016-12-26 06:17:00    2016-12-26 06:17:00
56252    23771    548    2016-12-26 18:06:00    2016-12-26 18:06:00
56253    23772    840    2016-12-26 01:32:00    2016-12-26 01:32:00
56254    23772    566    2016-12-26 05:58:00    2016-12-26 05:58:00
56255    23772    925    2016-12-26 15:04:00    2016-12-26 15:04:00
56256    23772    751    2016-12-26 23:20:00    2016-12-26 23:20:00
56257    23772    852    2016-12-26 03:40:00    2016-12-26 03:40:00
56258    23773    892    2016-12-26 09:54:00    2016-12-26 09:54:00
56259    23773    469    2016-12-26 20:44:00    2016-12-26 20:44:00
56260    23773    895    2016-12-26 13:30:00    2016-12-26 13:30:00
56261    23773    813    2016-12-26 11:41:00    2016-12-26 11:41:00
56262    23773    731    2016-12-26 19:22:00    2016-12-26 19:22:00
56263    23774    774    2016-12-26 08:20:00    2016-12-26 08:20:00
56264    23774    515    2016-12-26 04:26:00    2016-12-26 04:26:00
56265    23774    866    2016-12-26 09:14:00    2016-12-26 09:14:00
56266    23774    959    2016-12-26 15:13:00    2016-12-26 15:13:00
56267    23774    572    2016-12-26 15:51:00    2016-12-26 15:51:00
56268    23775    483    2016-12-26 18:40:00    2016-12-26 18:40:00
56269    23775    585    2016-12-26 06:33:00    2016-12-26 06:33:00
56270    23775    952    2016-12-26 13:55:00    2016-12-26 13:55:00
56271    23775    496    2016-12-26 10:38:00    2016-12-26 10:38:00
56272    23775    655    2016-12-26 22:11:00    2016-12-26 22:11:00
56273    23776    483    2016-12-26 12:12:00    2016-12-26 12:12:00
56274    23776    521    2016-12-26 04:55:00    2016-12-26 04:55:00
56275    23776    725    2016-12-26 20:41:00    2016-12-26 20:41:00
56276    23776    546    2016-12-26 20:00:00    2016-12-26 20:00:00
56277    23776    488    2016-12-26 20:20:00    2016-12-26 20:20:00
56278    23777    787    2016-12-26 17:00:00    2016-12-26 17:00:00
56279    23777    840    2016-12-26 14:31:00    2016-12-26 14:31:00
56280    23777    706    2016-12-26 12:22:00    2016-12-26 12:22:00
56281    23777    563    2016-12-26 03:07:00    2016-12-26 03:07:00
56282    23777    477    2016-12-26 09:34:00    2016-12-26 09:34:00
56283    23778    520    2016-12-26 07:22:00    2016-12-26 07:22:00
56284    23778    827    2016-12-26 08:01:00    2016-12-26 08:01:00
56285    23778    511    2016-12-26 06:58:00    2016-12-26 06:58:00
56286    23778    764    2016-12-26 04:02:00    2016-12-26 04:02:00
56287    23778    524    2016-12-26 02:51:00    2016-12-26 02:51:00
56288    23779    824    2016-12-26 13:35:00    2016-12-26 13:35:00
56289    23779    581    2016-12-26 03:28:00    2016-12-26 03:28:00
56290    23779    883    2016-12-26 20:23:00    2016-12-26 20:23:00
56291    23779    662    2016-12-26 18:18:00    2016-12-26 18:18:00
56292    23779    497    2016-12-26 17:05:00    2016-12-26 17:05:00
56293    23780    849    2016-12-26 14:31:00    2016-12-26 14:31:00
56294    23780    788    2016-12-26 02:24:00    2016-12-26 02:24:00
56295    23780    632    2016-12-26 04:59:00    2016-12-26 04:59:00
56296    23780    808    2016-12-26 18:32:00    2016-12-26 18:32:00
56297    23780    797    2016-12-26 15:43:00    2016-12-26 15:43:00
56298    23781    602    2016-12-26 15:08:00    2016-12-26 15:08:00
56299    23781    517    2016-12-26 08:00:00    2016-12-26 08:00:00
56300    23781    942    2016-12-26 09:23:00    2016-12-26 09:23:00
56301    23781    782    2016-12-26 05:28:00    2016-12-26 05:28:00
56302    23781    960    2016-12-26 05:38:00    2016-12-26 05:38:00
56303    23782    475    2016-12-26 03:08:00    2016-12-26 03:08:00
56304    23782    716    2016-12-26 07:19:00    2016-12-26 07:19:00
56305    23782    646    2016-12-26 02:03:00    2016-12-26 02:03:00
56306    23782    848    2016-12-26 11:47:00    2016-12-26 11:47:00
56307    23782    593    2016-12-26 23:10:00    2016-12-26 23:10:00
56308    23783    700    2016-12-26 01:18:00    2016-12-26 01:18:00
56309    23783    513    2016-12-26 14:20:00    2016-12-26 14:20:00
56310    23783    610    2016-12-26 05:19:00    2016-12-26 05:19:00
56311    23783    909    2016-12-26 23:45:00    2016-12-26 23:45:00
56312    23783    791    2016-12-26 22:44:00    2016-12-26 22:44:00
56313    23784    594    2016-12-26 19:15:00    2016-12-26 19:15:00
56314    23784    764    2016-12-26 09:00:00    2016-12-26 09:00:00
56315    23784    510    2016-12-26 07:58:00    2016-12-26 07:58:00
56316    23784    614    2016-12-26 23:22:00    2016-12-26 23:22:00
56317    23784    955    2016-12-26 02:10:00    2016-12-26 02:10:00
56318    23785    667    2016-12-26 21:21:00    2016-12-26 21:21:00
56319    23785    875    2016-12-26 03:04:00    2016-12-26 03:04:00
56320    23785    491    2016-12-26 01:42:00    2016-12-26 01:42:00
56321    23785    673    2016-12-26 23:44:00    2016-12-26 23:44:00
56322    23785    580    2016-12-26 22:08:00    2016-12-26 22:08:00
56323    23786    920    2016-12-26 12:01:00    2016-12-26 12:01:00
56324    23786    815    2016-12-26 05:19:00    2016-12-26 05:19:00
56325    23786    564    2016-12-26 14:24:00    2016-12-26 14:24:00
56326    23786    840    2016-12-26 04:06:00    2016-12-26 04:06:00
56327    23786    811    2016-12-26 22:58:00    2016-12-26 22:58:00
56328    23787    499    2016-12-26 05:18:00    2016-12-26 05:18:00
56330    23787    925    2016-12-26 18:05:00    2016-12-26 18:05:00
56331    23787    466    2016-12-26 01:46:00    2016-12-26 01:46:00
56332    23787    915    2016-12-26 01:52:00    2016-12-26 01:52:00
56333    23788    808    2016-12-26 19:57:00    2016-12-26 19:57:00
56334    23788    945    2016-12-26 05:49:00    2016-12-26 05:49:00
56335    23788    806    2016-12-26 07:26:00    2016-12-26 07:26:00
56336    23788    467    2016-12-26 12:07:00    2016-12-26 12:07:00
56337    23788    844    2016-12-26 14:46:00    2016-12-26 14:46:00
56338    23789    912    2016-12-26 22:28:00    2016-12-26 22:28:00
56339    23789    693    2016-12-26 17:19:00    2016-12-26 17:19:00
56340    23789    659    2016-12-26 02:15:00    2016-12-26 02:15:00
56341    23789    654    2016-12-26 14:45:00    2016-12-26 14:45:00
56342    23789    670    2016-12-26 03:04:00    2016-12-26 03:04:00
56343    23790    615    2016-12-26 11:55:00    2016-12-26 11:55:00
56344    23790    560    2016-12-26 01:21:00    2016-12-26 01:21:00
56345    23790    545    2016-12-26 14:05:00    2016-12-26 14:05:00
56346    23790    957    2016-12-26 10:36:00    2016-12-26 10:36:00
56347    23790    475    2016-12-26 06:27:00    2016-12-26 06:27:00
56348    23791    572    2016-12-26 05:43:00    2016-12-26 05:43:00
56349    23791    698    2016-12-26 19:18:00    2016-12-26 19:18:00
56350    23791    836    2016-12-26 17:50:00    2016-12-26 17:50:00
56351    23791    785    2016-12-26 14:08:00    2016-12-26 14:08:00
56352    23791    859    2016-12-26 13:27:00    2016-12-26 13:27:00
56353    23792    541    2016-12-26 08:52:00    2016-12-26 08:52:00
56354    23792    736    2016-12-26 10:21:00    2016-12-26 10:21:00
56355    23792    618    2016-12-26 12:00:00    2016-12-26 12:00:00
56356    23792    555    2016-12-26 07:27:00    2016-12-26 07:27:00
56357    23792    781    2016-12-26 18:35:00    2016-12-26 18:35:00
56358    23793    615    2016-12-26 08:18:00    2016-12-26 08:18:00
56359    23793    852    2016-12-26 04:33:00    2016-12-26 04:33:00
56360    23793    837    2016-12-26 02:31:00    2016-12-26 02:31:00
56361    23793    720    2016-12-26 14:13:00    2016-12-26 14:13:00
56362    23793    475    2016-12-26 08:09:00    2016-12-26 08:09:00
56363    23794    760    2016-12-26 10:37:00    2016-12-26 10:37:00
56364    23794    469    2016-12-26 09:03:00    2016-12-26 09:03:00
56365    23794    854    2016-12-26 18:56:00    2016-12-26 18:56:00
56366    23794    712    2016-12-26 16:59:00    2016-12-26 16:59:00
56367    23794    646    2016-12-26 09:41:00    2016-12-26 09:41:00
56368    23795    600    2016-12-26 11:33:00    2016-12-26 11:33:00
56369    23795    937    2016-12-26 06:06:00    2016-12-26 06:06:00
56370    23795    634    2016-12-26 11:37:00    2016-12-26 11:37:00
56371    23795    756    2016-12-26 06:05:00    2016-12-26 06:05:00
56372    23795    650    2016-12-26 11:31:00    2016-12-26 11:31:00
56373    23796    509    2016-12-26 13:40:00    2016-12-26 13:40:00
56374    23796    468    2016-12-26 07:21:00    2016-12-26 07:21:00
56375    23796    743    2016-12-26 20:50:00    2016-12-26 20:50:00
56376    23796    540    2016-12-26 07:56:00    2016-12-26 07:56:00
56377    23796    798    2016-12-26 21:29:00    2016-12-26 21:29:00
56378    23797    822    2016-12-26 02:04:00    2016-12-26 02:04:00
56379    23797    682    2016-12-26 20:42:00    2016-12-26 20:42:00
56380    23797    495    2016-12-26 01:01:00    2016-12-26 01:01:00
56381    23797    834    2016-12-26 04:49:00    2016-12-26 04:49:00
56382    23797    858    2016-12-26 22:51:00    2016-12-26 22:51:00
56383    23798    701    2016-12-26 08:15:00    2016-12-26 08:15:00
56384    23798    931    2016-12-26 09:38:00    2016-12-26 09:38:00
56385    23798    885    2016-12-26 08:41:00    2016-12-26 08:41:00
56386    23798    881    2016-12-26 20:25:00    2016-12-26 20:25:00
56387    23798    489    2016-12-26 03:23:00    2016-12-26 03:23:00
56388    23799    647    2016-12-26 23:02:00    2016-12-26 23:02:00
56389    23799    766    2016-12-26 15:56:00    2016-12-26 15:56:00
56390    23799    720    2016-12-26 14:35:00    2016-12-26 14:35:00
56391    23799    888    2016-12-26 18:22:00    2016-12-26 18:22:00
56392    23799    729    2016-12-26 15:00:00    2016-12-26 15:00:00
56393    23800    576    2016-12-26 04:31:00    2016-12-26 04:31:00
56394    23800    593    2016-12-26 07:12:00    2016-12-26 07:12:00
56395    23800    695    2016-12-26 23:39:00    2016-12-26 23:39:00
56396    23800    874    2016-12-26 09:04:00    2016-12-26 09:04:00
56397    23800    685    2016-12-26 04:23:00    2016-12-26 04:23:00
56398    23801    773    2016-12-26 22:34:00    2016-12-26 22:34:00
56399    23801    862    2016-12-26 18:01:00    2016-12-26 18:01:00
56400    23801    641    2016-12-26 19:40:00    2016-12-26 19:40:00
56401    23801    766    2016-12-26 09:55:00    2016-12-26 09:55:00
56402    23801    539    2016-12-26 13:55:00    2016-12-26 13:55:00
56403    23802    509    2016-12-26 06:46:00    2016-12-26 06:46:00
56404    23802    678    2016-12-26 16:11:00    2016-12-26 16:11:00
56405    23802    578    2016-12-26 12:50:00    2016-12-26 12:50:00
56406    23802    919    2016-12-26 19:23:00    2016-12-26 19:23:00
56407    23802    862    2016-12-26 15:09:00    2016-12-26 15:09:00
56408    23803    708    2016-12-26 05:36:00    2016-12-26 05:36:00
56409    23803    634    2016-12-26 17:32:00    2016-12-26 17:32:00
56410    23803    907    2016-12-26 15:42:00    2016-12-26 15:42:00
56411    23803    752    2016-12-26 13:39:00    2016-12-26 13:39:00
56412    23803    625    2016-12-26 10:45:00    2016-12-26 10:45:00
56413    23804    773    2016-12-26 17:52:00    2016-12-26 17:52:00
56414    23804    865    2016-12-26 19:00:00    2016-12-26 19:00:00
56415    23804    762    2016-12-26 18:38:00    2016-12-26 18:38:00
56416    23804    576    2016-12-26 18:10:00    2016-12-26 18:10:00
56417    23804    804    2016-12-26 21:26:00    2016-12-26 21:26:00
56418    23805    943    2016-12-26 12:00:00    2016-12-26 12:00:00
56419    23805    939    2016-12-26 21:39:00    2016-12-26 21:39:00
56420    23805    656    2016-12-26 10:43:00    2016-12-26 10:43:00
56421    23805    635    2016-12-26 22:38:00    2016-12-26 22:38:00
56422    23805    932    2016-12-26 18:21:00    2016-12-26 18:21:00
56423    23806    656    2016-12-26 21:06:00    2016-12-26 21:06:00
56424    23806    764    2016-12-26 19:24:00    2016-12-26 19:24:00
56425    23806    765    2016-12-26 01:11:00    2016-12-26 01:11:00
56426    23806    961    2016-12-26 19:25:00    2016-12-26 19:25:00
56427    23806    876    2016-12-26 07:12:00    2016-12-26 07:12:00
56428    23807    567    2016-12-26 10:56:00    2016-12-26 10:56:00
56429    23807    815    2016-12-26 12:18:00    2016-12-26 12:18:00
56430    23807    866    2016-12-26 02:38:00    2016-12-26 02:38:00
56431    23807    960    2016-12-26 05:06:00    2016-12-26 05:06:00
56432    23807    654    2016-12-26 01:19:00    2016-12-26 01:19:00
56433    23808    917    2016-12-26 03:42:00    2016-12-26 03:42:00
56434    23808    567    2016-12-26 12:12:00    2016-12-26 12:12:00
56435    23808    882    2016-12-26 09:21:00    2016-12-26 09:21:00
56436    23808    608    2016-12-26 11:59:00    2016-12-26 11:59:00
56437    23808    762    2016-12-26 22:01:00    2016-12-26 22:01:00
56438    23809    529    2016-12-26 02:33:00    2016-12-26 02:33:00
56439    23809    746    2016-12-26 07:32:00    2016-12-26 07:32:00
56440    23809    745    2016-12-26 20:15:00    2016-12-26 20:15:00
56441    23809    560    2016-12-26 23:25:00    2016-12-26 23:25:00
56442    23809    533    2016-12-26 17:08:00    2016-12-26 17:08:00
56443    23810    860    2016-12-26 19:57:00    2016-12-26 19:57:00
56444    23810    957    2016-12-26 07:12:00    2016-12-26 07:12:00
56445    23810    933    2016-12-26 17:20:00    2016-12-26 17:20:00
56446    23810    716    2016-12-26 01:10:00    2016-12-26 01:10:00
56447    23810    594    2016-12-26 06:05:00    2016-12-26 06:05:00
56448    23811    766    2016-12-26 10:00:00    2016-12-26 10:00:00
56449    23811    939    2016-12-26 15:34:00    2016-12-26 15:34:00
56450    23811    512    2016-12-26 19:29:00    2016-12-26 19:29:00
56451    23811    852    2016-12-26 22:23:00    2016-12-26 22:23:00
56452    23811    559    2016-12-26 15:05:00    2016-12-26 15:05:00
56453    23812    666    2016-12-26 21:24:00    2016-12-26 21:24:00
56454    23812    575    2016-12-26 18:36:00    2016-12-26 18:36:00
56455    23812    479    2016-12-26 06:32:00    2016-12-26 06:32:00
56456    23812    855    2016-12-26 11:57:00    2016-12-26 11:57:00
56457    23812    803    2016-12-26 02:00:00    2016-12-26 02:00:00
56458    23813    507    2016-12-26 04:04:00    2016-12-26 04:04:00
56459    23813    533    2016-12-26 19:10:00    2016-12-26 19:10:00
56460    23813    947    2016-12-26 17:17:00    2016-12-26 17:17:00
56461    23813    917    2016-12-26 19:47:00    2016-12-26 19:47:00
56462    23813    817    2016-12-26 17:19:00    2016-12-26 17:19:00
56463    23814    909    2016-12-26 10:57:00    2016-12-26 10:57:00
56464    23814    714    2016-12-26 17:51:00    2016-12-26 17:51:00
56465    23814    731    2016-12-26 14:47:00    2016-12-26 14:47:00
56466    23814    696    2016-12-26 11:05:00    2016-12-26 11:05:00
56467    23814    501    2016-12-26 11:50:00    2016-12-26 11:50:00
56468    23815    947    2016-12-26 03:23:00    2016-12-26 03:23:00
56469    23815    555    2016-12-26 20:23:00    2016-12-26 20:23:00
56470    23815    939    2016-12-26 19:00:00    2016-12-26 19:00:00
56471    23815    913    2016-12-26 17:57:00    2016-12-26 17:57:00
56472    23815    608    2016-12-26 15:54:00    2016-12-26 15:54:00
56473    23816    742    2016-12-26 06:06:00    2016-12-26 06:06:00
56474    23816    874    2016-12-26 20:43:00    2016-12-26 20:43:00
56475    23816    470    2016-12-26 18:01:00    2016-12-26 18:01:00
56476    23816    892    2016-12-26 23:01:00    2016-12-26 23:01:00
56477    23816    939    2016-12-26 09:29:00    2016-12-26 09:29:00
56478    23817    823    2016-12-26 18:34:00    2016-12-26 18:34:00
56479    23817    612    2016-12-26 09:29:00    2016-12-26 09:29:00
56480    23817    762    2016-12-26 16:50:00    2016-12-26 16:50:00
56481    23817    926    2016-12-26 20:25:00    2016-12-26 20:25:00
56482    23817    765    2016-12-26 17:25:00    2016-12-26 17:25:00
56483    23818    851    2016-12-26 06:10:00    2016-12-26 06:10:00
56484    23818    683    2016-12-26 18:37:00    2016-12-26 18:37:00
56485    23818    589    2016-12-26 05:08:00    2016-12-26 05:08:00
56486    23818    955    2016-12-26 23:12:00    2016-12-26 23:12:00
56487    23818    657    2016-12-26 23:31:00    2016-12-26 23:31:00
56488    23819    657    2016-12-26 09:12:00    2016-12-26 09:12:00
56489    23819    958    2016-12-26 08:08:00    2016-12-26 08:08:00
56490    23819    470    2016-12-26 15:34:00    2016-12-26 15:34:00
56491    23819    844    2016-12-26 06:00:00    2016-12-26 06:00:00
56492    23819    828    2016-12-26 07:21:00    2016-12-26 07:21:00
56493    23820    738    2016-12-26 02:10:00    2016-12-26 02:10:00
56494    23820    822    2016-12-26 06:39:00    2016-12-26 06:39:00
56495    23820    932    2016-12-26 21:34:00    2016-12-26 21:34:00
56496    23820    766    2016-12-26 22:16:00    2016-12-26 22:16:00
56497    23820    511    2016-12-26 08:35:00    2016-12-26 08:35:00
56498    23821    815    2016-12-26 17:22:00    2016-12-26 17:22:00
56499    23821    485    2016-12-26 18:26:00    2016-12-26 18:26:00
56500    23821    731    2016-12-26 07:03:00    2016-12-26 07:03:00
56501    23821    844    2016-12-26 12:00:00    2016-12-26 12:00:00
56502    23821    669    2016-12-26 02:03:00    2016-12-26 02:03:00
56503    23822    772    2016-12-27 09:55:00    2016-12-27 09:55:00
56504    23822    571    2016-12-27 20:24:00    2016-12-27 20:24:00
56505    23822    867    2016-12-27 02:37:00    2016-12-27 02:37:00
56506    23822    857    2016-12-27 07:40:00    2016-12-27 07:40:00
56507    23822    561    2016-12-27 15:47:00    2016-12-27 15:47:00
56508    23823    732    2016-12-27 21:09:00    2016-12-27 21:09:00
56509    23823    611    2016-12-27 16:23:00    2016-12-27 16:23:00
56510    23823    813    2016-12-27 16:54:00    2016-12-27 16:54:00
56511    23823    636    2016-12-27 18:07:00    2016-12-27 18:07:00
56512    23823    687    2016-12-27 23:03:00    2016-12-27 23:03:00
56513    23824    896    2016-12-27 19:58:00    2016-12-27 19:58:00
56514    23824    625    2016-12-27 14:11:00    2016-12-27 14:11:00
56515    23824    650    2016-12-27 13:45:00    2016-12-27 13:45:00
56516    23824    913    2016-12-27 14:22:00    2016-12-27 14:22:00
56517    23824    768    2016-12-27 16:52:00    2016-12-27 16:52:00
56518    23825    602    2016-12-27 09:40:00    2016-12-27 09:40:00
56519    23825    702    2016-12-27 15:58:00    2016-12-27 15:58:00
56520    23825    750    2016-12-27 07:29:00    2016-12-27 07:29:00
56521    23825    760    2016-12-27 13:22:00    2016-12-27 13:22:00
56522    23825    929    2016-12-27 15:30:00    2016-12-27 15:30:00
56523    23826    860    2016-12-27 08:00:00    2016-12-27 08:00:00
56524    23826    815    2016-12-27 02:11:00    2016-12-27 02:11:00
56525    23826    684    2016-12-27 19:11:00    2016-12-27 19:11:00
56526    23826    496    2016-12-27 10:38:00    2016-12-27 10:38:00
56527    23826    625    2016-12-27 17:47:00    2016-12-27 17:47:00
56528    23827    823    2016-12-27 22:05:00    2016-12-27 22:05:00
56529    23827    872    2016-12-27 09:23:00    2016-12-27 09:23:00
56530    23827    624    2016-12-27 08:00:00    2016-12-27 08:00:00
56531    23827    510    2016-12-27 17:50:00    2016-12-27 17:50:00
56532    23827    751    2016-12-27 15:47:00    2016-12-27 15:47:00
56533    23828    866    2016-12-27 19:52:00    2016-12-27 19:52:00
56534    23828    581    2016-12-27 02:26:00    2016-12-27 02:26:00
56535    23828    524    2016-12-27 15:21:00    2016-12-27 15:21:00
56536    23828    852    2016-12-27 14:02:00    2016-12-27 14:02:00
56537    23828    892    2016-12-27 21:36:00    2016-12-27 21:36:00
56538    23829    902    2016-12-27 05:49:00    2016-12-27 05:49:00
56539    23829    591    2016-12-27 18:03:00    2016-12-27 18:03:00
56540    23829    614    2016-12-27 20:57:00    2016-12-27 20:57:00
56541    23829    570    2016-12-27 20:24:00    2016-12-27 20:24:00
56542    23829    847    2016-12-27 03:22:00    2016-12-27 03:22:00
56543    23830    894    2016-12-27 14:37:00    2016-12-27 14:37:00
56544    23830    801    2016-12-27 23:49:00    2016-12-27 23:49:00
56545    23830    591    2016-12-27 12:19:00    2016-12-27 12:19:00
56546    23830    787    2016-12-27 08:52:00    2016-12-27 08:52:00
56547    23830    523    2016-12-27 12:59:00    2016-12-27 12:59:00
56548    23831    910    2016-12-27 01:28:00    2016-12-27 01:28:00
56549    23831    490    2016-12-27 09:13:00    2016-12-27 09:13:00
56550    23831    625    2016-12-27 15:03:00    2016-12-27 15:03:00
56551    23831    523    2016-12-27 19:00:00    2016-12-27 19:00:00
56552    23831    801    2016-12-27 21:21:00    2016-12-27 21:21:00
56553    23832    519    2016-12-27 05:12:00    2016-12-27 05:12:00
56554    23832    911    2016-12-27 01:26:00    2016-12-27 01:26:00
56555    23832    904    2016-12-27 01:51:00    2016-12-27 01:51:00
56556    23832    914    2016-12-27 13:08:00    2016-12-27 13:08:00
56557    23832    566    2016-12-27 12:29:00    2016-12-27 12:29:00
56558    23833    843    2016-12-27 11:34:00    2016-12-27 11:34:00
56559    23833    852    2016-12-27 04:12:00    2016-12-27 04:12:00
56560    23833    500    2016-12-27 03:00:00    2016-12-27 03:00:00
56561    23833    777    2016-12-27 23:59:00    2016-12-27 23:59:00
56562    23833    505    2016-12-27 01:04:00    2016-12-27 01:04:00
56563    23834    588    2016-12-27 13:43:00    2016-12-27 13:43:00
56564    23834    789    2016-12-27 18:37:00    2016-12-27 18:37:00
56565    23834    811    2016-12-27 07:45:00    2016-12-27 07:45:00
56566    23834    880    2016-12-27 22:05:00    2016-12-27 22:05:00
56567    23834    574    2016-12-27 09:05:00    2016-12-27 09:05:00
56568    23835    801    2016-12-27 20:41:00    2016-12-27 20:41:00
56569    23835    631    2016-12-27 15:14:00    2016-12-27 15:14:00
56570    23835    958    2016-12-27 16:06:00    2016-12-27 16:06:00
56571    23835    879    2016-12-27 09:22:00    2016-12-27 09:22:00
56572    23835    665    2016-12-27 04:45:00    2016-12-27 04:45:00
56573    23836    496    2016-12-27 15:40:00    2016-12-27 15:40:00
56574    23836    738    2016-12-27 09:19:00    2016-12-27 09:19:00
56575    23836    707    2016-12-27 10:42:00    2016-12-27 10:42:00
56576    23836    801    2016-12-27 01:53:00    2016-12-27 01:53:00
56577    23836    736    2016-12-27 11:47:00    2016-12-27 11:47:00
56578    23837    528    2016-12-27 10:31:00    2016-12-27 10:31:00
56579    23837    856    2016-12-27 15:03:00    2016-12-27 15:03:00
56580    23837    477    2016-12-27 13:44:00    2016-12-27 13:44:00
56581    23837    813    2016-12-27 17:53:00    2016-12-27 17:53:00
56582    23837    518    2016-12-27 03:57:00    2016-12-27 03:57:00
56583    23838    694    2016-12-27 06:42:00    2016-12-27 06:42:00
56584    23838    856    2016-12-27 06:02:00    2016-12-27 06:02:00
56585    23838    604    2016-12-27 20:17:00    2016-12-27 20:17:00
56586    23838    652    2016-12-27 10:58:00    2016-12-27 10:58:00
56587    23838    890    2016-12-27 01:54:00    2016-12-27 01:54:00
56588    23839    598    2016-12-27 17:47:00    2016-12-27 17:47:00
56589    23839    857    2016-12-27 05:46:00    2016-12-27 05:46:00
56590    23839    662    2016-12-27 20:14:00    2016-12-27 20:14:00
56591    23839    562    2016-12-27 04:49:00    2016-12-27 04:49:00
56592    23839    626    2016-12-27 13:19:00    2016-12-27 13:19:00
56593    23840    944    2016-12-27 14:39:00    2016-12-27 14:39:00
56594    23840    803    2016-12-27 20:45:00    2016-12-27 20:45:00
56595    23840    614    2016-12-27 19:04:00    2016-12-27 19:04:00
56596    23840    597    2016-12-27 04:57:00    2016-12-27 04:57:00
56597    23840    465    2016-12-27 13:02:00    2016-12-27 13:02:00
56598    23841    957    2016-12-27 05:20:00    2016-12-27 05:20:00
56599    23841    577    2016-12-27 21:46:00    2016-12-27 21:46:00
56600    23841    537    2016-12-27 07:24:00    2016-12-27 07:24:00
56601    23841    957    2016-12-27 10:33:00    2016-12-27 10:33:00
56602    23841    747    2016-12-27 07:43:00    2016-12-27 07:43:00
56603    23842    856    2016-12-27 06:41:00    2016-12-27 06:41:00
56604    23842    521    2016-12-27 07:28:00    2016-12-27 07:28:00
56605    23842    724    2016-12-27 17:50:00    2016-12-27 17:50:00
56606    23842    523    2016-12-27 01:14:00    2016-12-27 01:14:00
56607    23842    503    2016-12-27 05:33:00    2016-12-27 05:33:00
56608    23843    822    2016-12-27 17:01:00    2016-12-27 17:01:00
56609    23843    946    2016-12-27 15:57:00    2016-12-27 15:57:00
56610    23843    621    2016-12-27 03:31:00    2016-12-27 03:31:00
56611    23843    580    2016-12-27 17:41:00    2016-12-27 17:41:00
56612    23843    873    2016-12-27 12:06:00    2016-12-27 12:06:00
56613    23844    512    2016-12-27 15:00:00    2016-12-27 15:00:00
56614    23844    535    2016-12-27 04:03:00    2016-12-27 04:03:00
56615    23844    672    2016-12-27 18:28:00    2016-12-27 18:28:00
56616    23844    502    2016-12-27 21:12:00    2016-12-27 21:12:00
56617    23844    588    2016-12-27 01:09:00    2016-12-27 01:09:00
56618    23845    717    2016-12-27 18:09:00    2016-12-27 18:09:00
56619    23845    768    2016-12-27 23:09:00    2016-12-27 23:09:00
56620    23845    851    2016-12-27 20:29:00    2016-12-27 20:29:00
56621    23845    787    2016-12-27 08:37:00    2016-12-27 08:37:00
56622    23845    944    2016-12-27 03:22:00    2016-12-27 03:22:00
56623    23846    546    2016-12-27 17:55:00    2016-12-27 17:55:00
56624    23846    696    2016-12-27 22:41:00    2016-12-27 22:41:00
56625    23846    530    2016-12-27 03:56:00    2016-12-27 03:56:00
56626    23846    642    2016-12-27 19:45:00    2016-12-27 19:45:00
56627    23846    516    2016-12-27 21:31:00    2016-12-27 21:31:00
56628    23847    650    2016-12-27 17:38:00    2016-12-27 17:38:00
56629    23847    922    2016-12-27 15:24:00    2016-12-27 15:24:00
56630    23847    642    2016-12-27 11:48:00    2016-12-27 11:48:00
56631    23847    827    2016-12-27 14:05:00    2016-12-27 14:05:00
56632    23847    851    2016-12-27 13:09:00    2016-12-27 13:09:00
56633    23848    485    2016-12-27 21:57:00    2016-12-27 21:57:00
56634    23848    803    2016-12-27 20:01:00    2016-12-27 20:01:00
56635    23848    920    2016-12-27 01:29:00    2016-12-27 01:29:00
56636    23848    873    2016-12-27 05:28:00    2016-12-27 05:28:00
56637    23848    710    2016-12-27 18:04:00    2016-12-27 18:04:00
56638    23849    630    2016-12-27 12:15:00    2016-12-27 12:15:00
56639    23849    581    2016-12-27 19:57:00    2016-12-27 19:57:00
56640    23849    628    2016-12-27 01:22:00    2016-12-27 01:22:00
56641    23849    774    2016-12-27 18:53:00    2016-12-27 18:53:00
56642    23849    810    2016-12-27 04:00:00    2016-12-27 04:00:00
56643    23850    595    2016-12-27 15:09:00    2016-12-27 15:09:00
56644    23850    898    2016-12-27 08:34:00    2016-12-27 08:34:00
56645    23850    674    2016-12-27 06:31:00    2016-12-27 06:31:00
56646    23850    497    2016-12-27 12:40:00    2016-12-27 12:40:00
56647    23850    535    2016-12-27 07:33:00    2016-12-27 07:33:00
56648    23851    943    2016-12-27 07:24:00    2016-12-27 07:24:00
56649    23851    953    2016-12-27 04:23:00    2016-12-27 04:23:00
56650    23851    491    2016-12-27 05:33:00    2016-12-27 05:33:00
56651    23851    581    2016-12-27 07:51:00    2016-12-27 07:51:00
56652    23851    809    2016-12-27 19:50:00    2016-12-27 19:50:00
56653    23852    810    2016-12-27 10:41:00    2016-12-27 10:41:00
56654    23852    594    2016-12-27 16:03:00    2016-12-27 16:03:00
56655    23852    498    2016-12-27 06:35:00    2016-12-27 06:35:00
56656    23852    863    2016-12-27 23:35:00    2016-12-27 23:35:00
56657    23852    751    2016-12-27 23:59:00    2016-12-27 23:59:00
56658    23853    837    2016-12-27 23:35:00    2016-12-27 23:35:00
56659    23853    684    2016-12-27 14:01:00    2016-12-27 14:01:00
56660    23853    908    2016-12-27 02:44:00    2016-12-27 02:44:00
56661    23853    852    2016-12-27 15:29:00    2016-12-27 15:29:00
56662    23853    707    2016-12-27 01:09:00    2016-12-27 01:09:00
56663    23854    786    2016-12-27 13:15:00    2016-12-27 13:15:00
56664    23854    606    2016-12-27 09:54:00    2016-12-27 09:54:00
56665    23854    804    2016-12-27 19:29:00    2016-12-27 19:29:00
56666    23854    656    2016-12-27 17:12:00    2016-12-27 17:12:00
56667    23854    937    2016-12-27 16:41:00    2016-12-27 16:41:00
56668    23855    898    2016-12-27 05:59:00    2016-12-27 05:59:00
56669    23855    937    2016-12-27 01:24:00    2016-12-27 01:24:00
56670    23855    622    2016-12-27 23:02:00    2016-12-27 23:02:00
56671    23855    917    2016-12-27 18:18:00    2016-12-27 18:18:00
56672    23855    537    2016-12-27 18:20:00    2016-12-27 18:20:00
56673    23856    727    2016-12-27 01:39:00    2016-12-27 01:39:00
56674    23856    536    2016-12-27 11:56:00    2016-12-27 11:56:00
56675    23856    599    2016-12-27 07:55:00    2016-12-27 07:55:00
56676    23856    527    2016-12-27 06:12:00    2016-12-27 06:12:00
56677    23856    810    2016-12-27 15:45:00    2016-12-27 15:45:00
56678    23857    572    2016-12-27 09:50:00    2016-12-27 09:50:00
56679    23857    775    2016-12-27 22:08:00    2016-12-27 22:08:00
56680    23857    871    2016-12-27 07:13:00    2016-12-27 07:13:00
56681    23857    668    2016-12-27 23:08:00    2016-12-27 23:08:00
56682    23857    907    2016-12-27 22:44:00    2016-12-27 22:44:00
56683    23858    529    2016-12-27 12:42:00    2016-12-27 12:42:00
56684    23858    740    2016-12-27 20:13:00    2016-12-27 20:13:00
56685    23858    709    2016-12-27 07:24:00    2016-12-27 07:24:00
56686    23858    908    2016-12-27 23:30:00    2016-12-27 23:30:00
56687    23858    619    2016-12-27 02:51:00    2016-12-27 02:51:00
56688    23859    926    2016-12-27 03:40:00    2016-12-27 03:40:00
56689    23859    642    2016-12-27 19:46:00    2016-12-27 19:46:00
56690    23859    609    2016-12-27 04:02:00    2016-12-27 04:02:00
56691    23859    585    2016-12-27 23:43:00    2016-12-27 23:43:00
56692    23859    608    2016-12-27 01:21:00    2016-12-27 01:21:00
56693    23860    648    2016-12-27 12:15:00    2016-12-27 12:15:00
56694    23860    548    2016-12-27 03:15:00    2016-12-27 03:15:00
56695    23860    672    2016-12-27 16:41:00    2016-12-27 16:41:00
56696    23860    487    2016-12-27 02:23:00    2016-12-27 02:23:00
56697    23860    757    2016-12-27 19:31:00    2016-12-27 19:31:00
56698    23861    948    2016-12-27 08:50:00    2016-12-27 08:50:00
56699    23861    945    2016-12-27 21:25:00    2016-12-27 21:25:00
56700    23861    644    2016-12-27 22:57:00    2016-12-27 22:57:00
56701    23861    739    2016-12-27 04:14:00    2016-12-27 04:14:00
56702    23861    904    2016-12-27 19:35:00    2016-12-27 19:35:00
56703    23862    555    2016-12-27 13:50:00    2016-12-27 13:50:00
56704    23862    607    2016-12-27 17:08:00    2016-12-27 17:08:00
56705    23862    855    2016-12-27 20:09:00    2016-12-27 20:09:00
56706    23862    958    2016-12-27 12:49:00    2016-12-27 12:49:00
56707    23862    759    2016-12-27 12:47:00    2016-12-27 12:47:00
56708    23863    577    2016-12-27 18:51:00    2016-12-27 18:51:00
56709    23863    670    2016-12-27 13:08:00    2016-12-27 13:08:00
56710    23863    936    2016-12-27 06:15:00    2016-12-27 06:15:00
56711    23863    499    2016-12-27 18:20:00    2016-12-27 18:20:00
56712    23863    591    2016-12-27 17:49:00    2016-12-27 17:49:00
56713    23864    740    2016-12-27 03:09:00    2016-12-27 03:09:00
56714    23864    864    2016-12-27 11:45:00    2016-12-27 11:45:00
56715    23864    677    2016-12-27 18:57:00    2016-12-27 18:57:00
56716    23864    534    2016-12-27 02:59:00    2016-12-27 02:59:00
56717    23864    780    2016-12-27 08:25:00    2016-12-27 08:25:00
56718    23865    593    2016-12-27 11:56:00    2016-12-27 11:56:00
56719    23865    872    2016-12-27 18:10:00    2016-12-27 18:10:00
56720    23865    556    2016-12-27 01:44:00    2016-12-27 01:44:00
56721    23865    887    2016-12-27 01:58:00    2016-12-27 01:58:00
56722    23865    798    2016-12-27 07:10:00    2016-12-27 07:10:00
56723    23866    746    2016-12-27 13:20:00    2016-12-27 13:20:00
56724    23866    585    2016-12-27 08:24:00    2016-12-27 08:24:00
56725    23866    537    2016-12-27 23:53:00    2016-12-27 23:53:00
56726    23866    753    2016-12-27 08:01:00    2016-12-27 08:01:00
56727    23866    522    2016-12-27 08:59:00    2016-12-27 08:59:00
56728    23867    777    2016-12-27 10:07:00    2016-12-27 10:07:00
56729    23867    762    2016-12-27 11:26:00    2016-12-27 11:26:00
56730    23867    952    2016-12-27 11:00:00    2016-12-27 11:00:00
56731    23867    522    2016-12-27 20:07:00    2016-12-27 20:07:00
56732    23867    511    2016-12-27 03:32:00    2016-12-27 03:32:00
56733    23868    570    2016-12-27 05:24:00    2016-12-27 05:24:00
56734    23868    531    2016-12-27 13:30:00    2016-12-27 13:30:00
56735    23868    582    2016-12-27 20:11:00    2016-12-27 20:11:00
56736    23868    558    2016-12-27 01:29:00    2016-12-27 01:29:00
56737    23868    515    2016-12-27 13:41:00    2016-12-27 13:41:00
56738    23869    868    2016-12-27 06:11:00    2016-12-27 06:11:00
56739    23869    681    2016-12-27 14:23:00    2016-12-27 14:23:00
56740    23869    644    2016-12-27 19:38:00    2016-12-27 19:38:00
56741    23869    929    2016-12-27 13:05:00    2016-12-27 13:05:00
56742    23869    500    2016-12-27 11:57:00    2016-12-27 11:57:00
56743    23870    466    2016-12-27 08:24:00    2016-12-27 08:24:00
56744    23870    726    2016-12-27 23:00:00    2016-12-27 23:00:00
56745    23870    746    2016-12-27 17:45:00    2016-12-27 17:45:00
56746    23870    656    2016-12-27 08:46:00    2016-12-27 08:46:00
56747    23870    827    2016-12-27 10:40:00    2016-12-27 10:40:00
56748    23871    729    2016-12-27 01:05:00    2016-12-27 01:05:00
56749    23871    791    2016-12-27 23:25:00    2016-12-27 23:25:00
56750    23871    592    2016-12-27 06:18:00    2016-12-27 06:18:00
56751    23871    465    2016-12-27 05:57:00    2016-12-27 05:57:00
56752    23871    731    2016-12-27 16:48:00    2016-12-27 16:48:00
56753    23872    584    2016-12-27 16:22:00    2016-12-27 16:22:00
56754    23872    737    2016-12-27 14:57:00    2016-12-27 14:57:00
56755    23872    507    2016-12-27 03:16:00    2016-12-27 03:16:00
56756    23872    574    2016-12-27 01:58:00    2016-12-27 01:58:00
56757    23872    605    2016-12-27 20:43:00    2016-12-27 20:43:00
56758    23873    504    2016-12-27 02:41:00    2016-12-27 02:41:00
56759    23873    510    2016-12-27 17:25:00    2016-12-27 17:25:00
56760    23873    696    2016-12-27 01:02:00    2016-12-27 01:02:00
56761    23873    802    2016-12-27 21:35:00    2016-12-27 21:35:00
56762    23873    514    2016-12-27 03:24:00    2016-12-27 03:24:00
56763    23874    904    2016-12-27 06:46:00    2016-12-27 06:46:00
56764    23874    666    2016-12-27 03:26:00    2016-12-27 03:26:00
56765    23874    754    2016-12-27 08:23:00    2016-12-27 08:23:00
56766    23874    715    2016-12-27 22:56:00    2016-12-27 22:56:00
56767    23874    938    2016-12-27 21:28:00    2016-12-27 21:28:00
56768    23875    933    2016-12-27 01:55:00    2016-12-27 01:55:00
56769    23875    670    2016-12-27 09:09:00    2016-12-27 09:09:00
56770    23875    930    2016-12-27 23:47:00    2016-12-27 23:47:00
56771    23875    862    2016-12-27 18:45:00    2016-12-27 18:45:00
56772    23875    916    2016-12-27 21:07:00    2016-12-27 21:07:00
56773    23876    914    2016-12-27 19:25:00    2016-12-27 19:25:00
56774    23876    555    2016-12-27 20:11:00    2016-12-27 20:11:00
56775    23876    588    2016-12-27 17:24:00    2016-12-27 17:24:00
56776    23876    835    2016-12-27 10:57:00    2016-12-27 10:57:00
56777    23876    579    2016-12-27 08:47:00    2016-12-27 08:47:00
56778    23877    519    2016-12-27 16:51:00    2016-12-27 16:51:00
56779    23877    596    2016-12-27 01:49:00    2016-12-27 01:49:00
56780    23877    488    2016-12-27 04:30:00    2016-12-27 04:30:00
56781    23877    905    2016-12-27 13:23:00    2016-12-27 13:23:00
56782    23877    755    2016-12-27 08:46:00    2016-12-27 08:46:00
56783    23878    946    2016-12-27 14:54:00    2016-12-27 14:54:00
56784    23878    689    2016-12-27 06:36:00    2016-12-27 06:36:00
56785    23878    722    2016-12-27 05:49:00    2016-12-27 05:49:00
56786    23878    475    2016-12-27 12:09:00    2016-12-27 12:09:00
56787    23878    784    2016-12-27 10:02:00    2016-12-27 10:02:00
56788    23879    773    2016-12-27 15:34:00    2016-12-27 15:34:00
56789    23879    571    2016-12-27 03:37:00    2016-12-27 03:37:00
56790    23879    860    2016-12-27 14:13:00    2016-12-27 14:13:00
56791    23879    900    2016-12-27 11:44:00    2016-12-27 11:44:00
56792    23879    725    2016-12-27 18:39:00    2016-12-27 18:39:00
56793    23880    822    2016-12-27 03:50:00    2016-12-27 03:50:00
56794    23880    761    2016-12-27 18:42:00    2016-12-27 18:42:00
56795    23880    606    2016-12-27 23:18:00    2016-12-27 23:18:00
56796    23880    643    2016-12-27 16:17:00    2016-12-27 16:17:00
56797    23880    647    2016-12-27 23:11:00    2016-12-27 23:11:00
56798    23881    779    2016-12-27 04:34:00    2016-12-27 04:34:00
56799    23881    662    2016-12-27 15:48:00    2016-12-27 15:48:00
56800    23881    711    2016-12-27 17:16:00    2016-12-27 17:16:00
56801    23881    784    2016-12-27 03:10:00    2016-12-27 03:10:00
56802    23881    953    2016-12-27 14:44:00    2016-12-27 14:44:00
56803    23882    497    2016-12-27 06:34:00    2016-12-27 06:34:00
56804    23882    751    2016-12-27 15:13:00    2016-12-27 15:13:00
56805    23882    895    2016-12-27 20:26:00    2016-12-27 20:26:00
56806    23882    930    2016-12-27 14:39:00    2016-12-27 14:39:00
56807    23882    941    2016-12-27 07:09:00    2016-12-27 07:09:00
56808    23883    522    2016-12-27 02:03:00    2016-12-27 02:03:00
56809    23883    703    2016-12-27 02:10:00    2016-12-27 02:10:00
56810    23883    501    2016-12-27 05:52:00    2016-12-27 05:52:00
56811    23883    857    2016-12-27 02:03:00    2016-12-27 02:03:00
56812    23883    511    2016-12-27 16:19:00    2016-12-27 16:19:00
56813    23884    577    2016-12-27 15:34:00    2016-12-27 15:34:00
56814    23884    604    2016-12-27 15:17:00    2016-12-27 15:17:00
56815    23884    547    2016-12-27 08:45:00    2016-12-27 08:45:00
56816    23884    800    2016-12-27 01:14:00    2016-12-27 01:14:00
56817    23884    903    2016-12-27 15:45:00    2016-12-27 15:45:00
56818    23885    835    2016-12-27 13:57:00    2016-12-27 13:57:00
56819    23885    665    2016-12-27 23:07:00    2016-12-27 23:07:00
56820    23885    570    2016-12-27 20:43:00    2016-12-27 20:43:00
56821    23885    928    2016-12-27 13:26:00    2016-12-27 13:26:00
56822    23885    634    2016-12-27 04:43:00    2016-12-27 04:43:00
56823    23886    512    2016-12-27 08:49:00    2016-12-27 08:49:00
56824    23886    917    2016-12-27 01:25:00    2016-12-27 01:25:00
56825    23886    947    2016-12-27 19:09:00    2016-12-27 19:09:00
56826    23886    832    2016-12-27 16:12:00    2016-12-27 16:12:00
56827    23886    617    2016-12-27 08:52:00    2016-12-27 08:52:00
56828    23887    658    2016-12-27 22:22:00    2016-12-27 22:22:00
56829    23887    862    2016-12-27 17:44:00    2016-12-27 17:44:00
56830    23887    801    2016-12-27 11:48:00    2016-12-27 11:48:00
56831    23887    841    2016-12-27 21:40:00    2016-12-27 21:40:00
56832    23887    774    2016-12-27 05:48:00    2016-12-27 05:48:00
56833    23888    723    2016-12-27 13:36:00    2016-12-27 13:36:00
56834    23888    931    2016-12-27 04:29:00    2016-12-27 04:29:00
56835    23888    564    2016-12-27 18:57:00    2016-12-27 18:57:00
56836    23888    705    2016-12-27 01:35:00    2016-12-27 01:35:00
56837    23888    501    2016-12-27 09:01:00    2016-12-27 09:01:00
56838    23889    501    2016-12-27 04:22:00    2016-12-27 04:22:00
56839    23889    693    2016-12-27 05:59:00    2016-12-27 05:59:00
56840    23889    706    2016-12-27 05:46:00    2016-12-27 05:46:00
56841    23889    908    2016-12-27 19:55:00    2016-12-27 19:55:00
56842    23889    468    2016-12-27 13:11:00    2016-12-27 13:11:00
56843    23890    550    2016-12-28 05:46:00    2016-12-28 05:46:00
56844    23890    511    2016-12-28 16:29:00    2016-12-28 16:29:00
56845    23890    768    2016-12-28 17:30:00    2016-12-28 17:30:00
56846    23890    793    2016-12-28 13:44:00    2016-12-28 13:44:00
56847    23890    827    2016-12-28 21:33:00    2016-12-28 21:33:00
56848    23891    463    2016-12-28 16:25:00    2016-12-28 16:25:00
56849    23891    596    2016-12-28 21:27:00    2016-12-28 21:27:00
56850    23891    871    2016-12-28 12:20:00    2016-12-28 12:20:00
56851    23891    606    2016-12-28 08:52:00    2016-12-28 08:52:00
56852    23891    890    2016-12-28 07:42:00    2016-12-28 07:42:00
56853    23892    704    2016-12-28 21:07:00    2016-12-28 21:07:00
56854    23892    740    2016-12-28 17:13:00    2016-12-28 17:13:00
56855    23892    794    2016-12-28 17:10:00    2016-12-28 17:10:00
56856    23892    769    2016-12-28 19:35:00    2016-12-28 19:35:00
56857    23892    599    2016-12-28 11:25:00    2016-12-28 11:25:00
56858    23893    624    2016-12-28 19:23:00    2016-12-28 19:23:00
56859    23893    932    2016-12-28 10:28:00    2016-12-28 10:28:00
56860    23893    948    2016-12-28 20:56:00    2016-12-28 20:56:00
56861    23893    559    2016-12-28 17:01:00    2016-12-28 17:01:00
56862    23893    516    2016-12-28 13:28:00    2016-12-28 13:28:00
56863    23894    760    2016-12-28 01:48:00    2016-12-28 01:48:00
56864    23894    760    2016-12-28 21:41:00    2016-12-28 21:41:00
56865    23894    688    2016-12-28 19:20:00    2016-12-28 19:20:00
56866    23894    959    2016-12-28 16:17:00    2016-12-28 16:17:00
56867    23894    877    2016-12-28 09:43:00    2016-12-28 09:43:00
56868    23895    873    2016-12-28 02:08:00    2016-12-28 02:08:00
56869    23895    759    2016-12-28 10:46:00    2016-12-28 10:46:00
56870    23895    728    2016-12-28 01:06:00    2016-12-28 01:06:00
56871    23895    555    2016-12-28 03:58:00    2016-12-28 03:58:00
56872    23895    841    2016-12-28 13:33:00    2016-12-28 13:33:00
56873    23896    794    2016-12-28 18:33:00    2016-12-28 18:33:00
56874    23896    793    2016-12-28 23:49:00    2016-12-28 23:49:00
56875    23896    826    2016-12-28 11:33:00    2016-12-28 11:33:00
56876    23896    715    2016-12-28 13:10:00    2016-12-28 13:10:00
56877    23896    506    2016-12-28 03:08:00    2016-12-28 03:08:00
56878    23897    806    2016-12-28 18:56:00    2016-12-28 18:56:00
56879    23897    940    2016-12-28 07:15:00    2016-12-28 07:15:00
56880    23897    771    2016-12-28 08:35:00    2016-12-28 08:35:00
56881    23897    850    2016-12-28 07:42:00    2016-12-28 07:42:00
56882    23897    843    2016-12-28 23:31:00    2016-12-28 23:31:00
56883    23898    920    2016-12-28 21:51:00    2016-12-28 21:51:00
56884    23898    594    2016-12-28 23:09:00    2016-12-28 23:09:00
56885    23898    766    2016-12-28 10:25:00    2016-12-28 10:25:00
56886    23898    959    2016-12-28 08:21:00    2016-12-28 08:21:00
56887    23898    514    2016-12-28 10:31:00    2016-12-28 10:31:00
56888    23899    927    2016-12-28 05:36:00    2016-12-28 05:36:00
56889    23899    778    2016-12-28 02:19:00    2016-12-28 02:19:00
56890    23899    609    2016-12-28 23:57:00    2016-12-28 23:57:00
56891    23899    673    2016-12-28 02:49:00    2016-12-28 02:49:00
56892    23899    506    2016-12-28 15:43:00    2016-12-28 15:43:00
56893    23900    742    2016-12-28 10:10:00    2016-12-28 10:10:00
56894    23900    690    2016-12-28 13:32:00    2016-12-28 13:32:00
56895    23900    873    2016-12-28 02:15:00    2016-12-28 02:15:00
56896    23900    501    2016-12-28 19:01:00    2016-12-28 19:01:00
56897    23900    915    2016-12-28 15:49:00    2016-12-28 15:49:00
56898    23901    691    2016-12-28 12:13:00    2016-12-28 12:13:00
56899    23901    531    2016-12-28 18:05:00    2016-12-28 18:05:00
56900    23901    592    2016-12-28 19:52:00    2016-12-28 19:52:00
56901    23901    652    2016-12-28 16:38:00    2016-12-28 16:38:00
56902    23901    828    2016-12-28 07:49:00    2016-12-28 07:49:00
56903    23902    845    2016-12-28 02:13:00    2016-12-28 02:13:00
56904    23902    607    2016-12-28 10:53:00    2016-12-28 10:53:00
56905    23902    846    2016-12-28 07:07:00    2016-12-28 07:07:00
56906    23902    952    2016-12-28 03:40:00    2016-12-28 03:40:00
56907    23902    828    2016-12-28 23:58:00    2016-12-28 23:58:00
56908    23903    944    2016-12-28 17:07:00    2016-12-28 17:07:00
56909    23903    485    2016-12-28 03:41:00    2016-12-28 03:41:00
56910    23903    536    2016-12-28 15:37:00    2016-12-28 15:37:00
56911    23903    694    2016-12-28 15:47:00    2016-12-28 15:47:00
56912    23903    467    2016-12-28 13:44:00    2016-12-28 13:44:00
56913    23904    787    2016-12-28 19:48:00    2016-12-28 19:48:00
56914    23904    634    2016-12-28 20:43:00    2016-12-28 20:43:00
56915    23904    782    2016-12-28 03:13:00    2016-12-28 03:13:00
56916    23904    715    2016-12-28 19:36:00    2016-12-28 19:36:00
56917    23904    581    2016-12-28 08:30:00    2016-12-28 08:30:00
56918    23905    593    2016-12-28 02:37:00    2016-12-28 02:37:00
56919    23905    630    2016-12-28 12:26:00    2016-12-28 12:26:00
56920    23905    957    2016-12-28 22:21:00    2016-12-28 22:21:00
56921    23905    491    2016-12-28 10:53:00    2016-12-28 10:53:00
56922    23905    916    2016-12-28 16:26:00    2016-12-28 16:26:00
56923    23906    568    2016-12-28 11:47:00    2016-12-28 11:47:00
56924    23906    568    2016-12-28 07:01:00    2016-12-28 07:01:00
56925    23906    609    2016-12-28 17:31:00    2016-12-28 17:31:00
56926    23906    791    2016-12-28 12:51:00    2016-12-28 12:51:00
56927    23906    636    2016-12-28 19:44:00    2016-12-28 19:44:00
56928    23907    469    2016-12-28 08:11:00    2016-12-28 08:11:00
56929    23907    495    2016-12-28 01:04:00    2016-12-28 01:04:00
56930    23907    562    2016-12-28 22:46:00    2016-12-28 22:46:00
56931    23907    671    2016-12-28 16:44:00    2016-12-28 16:44:00
56932    23907    595    2016-12-28 09:34:00    2016-12-28 09:34:00
56933    23908    817    2016-12-28 17:55:00    2016-12-28 17:55:00
56934    23908    682    2016-12-28 05:23:00    2016-12-28 05:23:00
56935    23908    744    2016-12-28 19:57:00    2016-12-28 19:57:00
56936    23908    702    2016-12-28 17:59:00    2016-12-28 17:59:00
56937    23908    904    2016-12-28 20:11:00    2016-12-28 20:11:00
56938    23909    609    2016-12-28 22:01:00    2016-12-28 22:01:00
56939    23909    889    2016-12-28 12:27:00    2016-12-28 12:27:00
56940    23909    925    2016-12-28 12:29:00    2016-12-28 12:29:00
56941    23909    682    2016-12-28 07:34:00    2016-12-28 07:34:00
56942    23909    553    2016-12-28 03:03:00    2016-12-28 03:03:00
56943    23910    498    2016-12-28 21:13:00    2016-12-28 21:13:00
56944    23910    647    2016-12-28 13:58:00    2016-12-28 13:58:00
56945    23910    571    2016-12-28 06:45:00    2016-12-28 06:45:00
56946    23910    961    2016-12-28 08:32:00    2016-12-28 08:32:00
56947    23910    772    2016-12-28 23:48:00    2016-12-28 23:48:00
56948    23911    798    2016-12-28 14:28:00    2016-12-28 14:28:00
56949    23911    939    2016-12-28 16:35:00    2016-12-28 16:35:00
56950    23911    885    2016-12-28 07:02:00    2016-12-28 07:02:00
56951    23911    641    2016-12-28 12:10:00    2016-12-28 12:10:00
56952    23911    532    2016-12-28 22:14:00    2016-12-28 22:14:00
56953    23912    551    2016-12-28 14:28:00    2016-12-28 14:28:00
56954    23912    571    2016-12-28 18:42:00    2016-12-28 18:42:00
56955    23912    668    2016-12-28 04:19:00    2016-12-28 04:19:00
56956    23912    698    2016-12-28 21:54:00    2016-12-28 21:54:00
56957    23912    472    2016-12-28 10:36:00    2016-12-28 10:36:00
56958    23913    961    2016-12-28 10:54:00    2016-12-28 10:54:00
56959    23913    761    2016-12-28 06:30:00    2016-12-28 06:30:00
56960    23913    789    2016-12-28 15:35:00    2016-12-28 15:35:00
56961    23913    653    2016-12-28 04:35:00    2016-12-28 04:35:00
56962    23913    783    2016-12-28 13:50:00    2016-12-28 13:50:00
56963    23914    487    2016-12-28 22:11:00    2016-12-28 22:11:00
56964    23914    806    2016-12-28 20:30:00    2016-12-28 20:30:00
56965    23914    579    2016-12-28 17:34:00    2016-12-28 17:34:00
56966    23914    846    2016-12-28 08:51:00    2016-12-28 08:51:00
56967    23914    947    2016-12-28 14:23:00    2016-12-28 14:23:00
56968    23915    699    2016-12-28 15:11:00    2016-12-28 15:11:00
56969    23915    821    2016-12-28 02:51:00    2016-12-28 02:51:00
56970    23915    609    2016-12-28 05:29:00    2016-12-28 05:29:00
56971    23915    529    2016-12-28 01:19:00    2016-12-28 01:19:00
56972    23915    883    2016-12-28 19:11:00    2016-12-28 19:11:00
56973    23916    773    2016-12-28 17:00:00    2016-12-28 17:00:00
56974    23916    716    2016-12-28 22:37:00    2016-12-28 22:37:00
56975    23916    886    2016-12-28 05:58:00    2016-12-28 05:58:00
56976    23916    567    2016-12-28 05:47:00    2016-12-28 05:47:00
56977    23916    554    2016-12-28 13:37:00    2016-12-28 13:37:00
56978    23917    469    2016-12-28 07:34:00    2016-12-28 07:34:00
56979    23917    523    2016-12-28 13:42:00    2016-12-28 13:42:00
56980    23917    919    2016-12-28 07:11:00    2016-12-28 07:11:00
56981    23917    551    2016-12-28 02:28:00    2016-12-28 02:28:00
56982    23917    536    2016-12-28 05:56:00    2016-12-28 05:56:00
56983    23918    748    2016-12-28 13:02:00    2016-12-28 13:02:00
56984    23918    466    2016-12-28 09:37:00    2016-12-28 09:37:00
56985    23918    669    2016-12-28 16:24:00    2016-12-28 16:24:00
56986    23918    823    2016-12-28 13:02:00    2016-12-28 13:02:00
56987    23918    708    2016-12-28 01:08:00    2016-12-28 01:08:00
56988    23919    747    2016-12-28 08:36:00    2016-12-28 08:36:00
56989    23919    839    2016-12-28 22:16:00    2016-12-28 22:16:00
56990    23919    709    2016-12-28 13:04:00    2016-12-28 13:04:00
56991    23919    607    2016-12-28 11:53:00    2016-12-28 11:53:00
56992    23919    891    2016-12-28 02:45:00    2016-12-28 02:45:00
56993    23920    733    2016-12-28 09:37:00    2016-12-28 09:37:00
56994    23920    628    2016-12-28 14:43:00    2016-12-28 14:43:00
56995    23920    597    2016-12-28 23:06:00    2016-12-28 23:06:00
56996    23920    713    2016-12-28 16:30:00    2016-12-28 16:30:00
56997    23920    523    2016-12-28 21:47:00    2016-12-28 21:47:00
56998    23921    959    2016-12-28 01:55:00    2016-12-28 01:55:00
56999    23921    959    2016-12-28 01:39:00    2016-12-28 01:39:00
57000    23921    465    2016-12-28 16:08:00    2016-12-28 16:08:00
57001    23921    508    2016-12-28 07:12:00    2016-12-28 07:12:00
57002    23921    480    2016-12-28 06:36:00    2016-12-28 06:36:00
57003    23922    725    2016-12-28 08:15:00    2016-12-28 08:15:00
57004    23922    513    2016-12-28 17:12:00    2016-12-28 17:12:00
57005    23922    766    2016-12-28 08:15:00    2016-12-28 08:15:00
57006    23922    575    2016-12-28 11:42:00    2016-12-28 11:42:00
57007    23922    825    2016-12-28 06:57:00    2016-12-28 06:57:00
57008    23923    705    2016-12-28 06:51:00    2016-12-28 06:51:00
57009    23923    698    2016-12-28 16:47:00    2016-12-28 16:47:00
57010    23923    829    2016-12-28 09:42:00    2016-12-28 09:42:00
57011    23923    643    2016-12-28 23:55:00    2016-12-28 23:55:00
57012    23923    925    2016-12-28 17:11:00    2016-12-28 17:11:00
57013    23924    918    2016-12-29 01:23:00    2016-12-29 01:23:00
57014    23924    653    2016-12-29 12:45:00    2016-12-29 12:45:00
57015    23924    548    2016-12-29 20:41:00    2016-12-29 20:41:00
57016    23924    732    2016-12-29 04:10:00    2016-12-29 04:10:00
57017    23924    650    2016-12-29 09:36:00    2016-12-29 09:36:00
57018    23925    767    2016-12-29 17:02:00    2016-12-29 17:02:00
57019    23925    720    2016-12-29 07:31:00    2016-12-29 07:31:00
57020    23925    561    2016-12-29 11:14:00    2016-12-29 11:14:00
57021    23925    785    2016-12-29 10:44:00    2016-12-29 10:44:00
57022    23925    608    2016-12-29 20:02:00    2016-12-29 20:02:00
57023    23926    803    2016-12-29 13:19:00    2016-12-29 13:19:00
57024    23926    567    2016-12-29 06:12:00    2016-12-29 06:12:00
57025    23926    685    2016-12-29 20:48:00    2016-12-29 20:48:00
57026    23926    652    2016-12-29 23:30:00    2016-12-29 23:30:00
57027    23926    944    2016-12-29 17:07:00    2016-12-29 17:07:00
57028    23927    682    2016-12-29 06:00:00    2016-12-29 06:00:00
57029    23927    508    2016-12-29 03:38:00    2016-12-29 03:38:00
57030    23927    908    2016-12-29 12:31:00    2016-12-29 12:31:00
57031    23927    955    2016-12-29 13:11:00    2016-12-29 13:11:00
57032    23927    690    2016-12-29 12:53:00    2016-12-29 12:53:00
57033    23928    476    2016-12-29 16:29:00    2016-12-29 16:29:00
57034    23928    632    2016-12-29 21:46:00    2016-12-29 21:46:00
57035    23928    471    2016-12-29 22:03:00    2016-12-29 22:03:00
57036    23928    477    2016-12-29 21:57:00    2016-12-29 21:57:00
57037    23928    771    2016-12-29 14:46:00    2016-12-29 14:46:00
57038    23929    651    2016-12-29 10:48:00    2016-12-29 10:48:00
57039    23929    594    2016-12-29 16:02:00    2016-12-29 16:02:00
57040    23929    489    2016-12-29 22:52:00    2016-12-29 22:52:00
57041    23929    734    2016-12-29 16:41:00    2016-12-29 16:41:00
57042    23929    718    2016-12-29 15:26:00    2016-12-29 15:26:00
57043    23930    938    2016-12-29 20:50:00    2016-12-29 20:50:00
57044    23930    609    2016-12-29 03:14:00    2016-12-29 03:14:00
57045    23930    944    2016-12-29 05:32:00    2016-12-29 05:32:00
57046    23930    945    2016-12-29 10:36:00    2016-12-29 10:36:00
57047    23930    588    2016-12-29 04:35:00    2016-12-29 04:35:00
57048    23931    623    2016-12-29 21:46:00    2016-12-29 21:46:00
57049    23931    464    2016-12-29 07:47:00    2016-12-29 07:47:00
57050    23931    671    2016-12-29 05:21:00    2016-12-29 05:21:00
57051    23931    696    2016-12-29 22:04:00    2016-12-29 22:04:00
57052    23931    704    2016-12-29 14:36:00    2016-12-29 14:36:00
57053    23932    806    2016-12-29 08:37:00    2016-12-29 08:37:00
57054    23932    482    2016-12-29 08:19:00    2016-12-29 08:19:00
57055    23932    946    2016-12-29 06:26:00    2016-12-29 06:26:00
57056    23932    888    2016-12-29 07:04:00    2016-12-29 07:04:00
57057    23932    756    2016-12-29 08:33:00    2016-12-29 08:33:00
57058    23933    652    2016-12-29 17:32:00    2016-12-29 17:32:00
57059    23933    753    2016-12-29 11:33:00    2016-12-29 11:33:00
57060    23933    656    2016-12-29 14:44:00    2016-12-29 14:44:00
57061    23933    797    2016-12-29 15:33:00    2016-12-29 15:33:00
57062    23933    737    2016-12-29 20:14:00    2016-12-29 20:14:00
57063    23934    532    2016-12-29 20:07:00    2016-12-29 20:07:00
57064    23934    544    2016-12-29 06:14:00    2016-12-29 06:14:00
57065    23934    616    2016-12-29 12:41:00    2016-12-29 12:41:00
57066    23934    542    2016-12-29 11:51:00    2016-12-29 11:51:00
57067    23934    523    2016-12-29 03:16:00    2016-12-29 03:16:00
57068    23935    792    2016-12-29 23:47:00    2016-12-29 23:47:00
57069    23935    870    2016-12-29 18:17:00    2016-12-29 18:17:00
57070    23935    607    2016-12-29 11:07:00    2016-12-29 11:07:00
57071    23935    906    2016-12-29 10:35:00    2016-12-29 10:35:00
57072    23935    765    2016-12-29 12:23:00    2016-12-29 12:23:00
57073    23936    624    2016-12-29 06:01:00    2016-12-29 06:01:00
57074    23936    477    2016-12-29 05:00:00    2016-12-29 05:00:00
57075    23936    747    2016-12-29 21:06:00    2016-12-29 21:06:00
57076    23936    877    2016-12-29 11:17:00    2016-12-29 11:17:00
57077    23936    593    2016-12-29 15:35:00    2016-12-29 15:35:00
57078    23937    529    2016-12-29 06:51:00    2016-12-29 06:51:00
57079    23937    599    2016-12-29 02:02:00    2016-12-29 02:02:00
57080    23937    718    2016-12-29 03:39:00    2016-12-29 03:39:00
57081    23937    834    2016-12-29 14:29:00    2016-12-29 14:29:00
57082    23937    572    2016-12-29 02:30:00    2016-12-29 02:30:00
57083    23938    888    2016-12-29 11:52:00    2016-12-29 11:52:00
57084    23938    897    2016-12-29 15:01:00    2016-12-29 15:01:00
57085    23938    668    2016-12-29 08:55:00    2016-12-29 08:55:00
57086    23938    736    2016-12-29 06:59:00    2016-12-29 06:59:00
57087    23938    938    2016-12-29 19:47:00    2016-12-29 19:47:00
57088    23939    628    2016-12-29 01:08:00    2016-12-29 01:08:00
57089    23939    715    2016-12-29 12:43:00    2016-12-29 12:43:00
57090    23939    708    2016-12-29 02:04:00    2016-12-29 02:04:00
57091    23939    954    2016-12-29 03:32:00    2016-12-29 03:32:00
57092    23939    531    2016-12-29 17:27:00    2016-12-29 17:27:00
57093    23940    960    2016-12-29 06:39:00    2016-12-29 06:39:00
57094    23940    935    2016-12-29 01:38:00    2016-12-29 01:38:00
57095    23940    547    2016-12-29 11:11:00    2016-12-29 11:11:00
57096    23940    638    2016-12-29 09:13:00    2016-12-29 09:13:00
57097    23940    678    2016-12-29 12:10:00    2016-12-29 12:10:00
57098    23941    904    2016-12-29 13:15:00    2016-12-29 13:15:00
57099    23941    922    2016-12-29 11:17:00    2016-12-29 11:17:00
57100    23941    515    2016-12-29 07:49:00    2016-12-29 07:49:00
57101    23941    540    2016-12-29 05:23:00    2016-12-29 05:23:00
57102    23941    813    2016-12-29 13:56:00    2016-12-29 13:56:00
57103    23942    864    2016-12-29 02:53:00    2016-12-29 02:53:00
57104    23942    704    2016-12-29 16:49:00    2016-12-29 16:49:00
57105    23942    796    2016-12-29 06:46:00    2016-12-29 06:46:00
57106    23942    958    2016-12-29 16:19:00    2016-12-29 16:19:00
57107    23942    901    2016-12-29 18:01:00    2016-12-29 18:01:00
57108    23943    636    2016-12-29 09:37:00    2016-12-29 09:37:00
57109    23943    689    2016-12-29 10:08:00    2016-12-29 10:08:00
57110    23943    619    2016-12-29 09:34:00    2016-12-29 09:34:00
57111    23943    588    2016-12-29 02:43:00    2016-12-29 02:43:00
57112    23943    838    2016-12-29 22:02:00    2016-12-29 22:02:00
57113    23944    752    2016-12-29 07:17:00    2016-12-29 07:17:00
57114    23944    686    2016-12-29 20:16:00    2016-12-29 20:16:00
57115    23944    715    2016-12-29 15:33:00    2016-12-29 15:33:00
57116    23944    903    2016-12-29 19:17:00    2016-12-29 19:17:00
57117    23944    701    2016-12-29 23:52:00    2016-12-29 23:52:00
57118    23945    686    2016-12-29 10:11:00    2016-12-29 10:11:00
57119    23945    747    2016-12-29 04:42:00    2016-12-29 04:42:00
57120    23945    921    2016-12-29 07:38:00    2016-12-29 07:38:00
57121    23945    911    2016-12-29 20:32:00    2016-12-29 20:32:00
57122    23945    504    2016-12-29 05:01:00    2016-12-29 05:01:00
57123    23946    744    2016-12-29 21:19:00    2016-12-29 21:19:00
57124    23946    660    2016-12-29 15:09:00    2016-12-29 15:09:00
57125    23946    483    2016-12-29 16:48:00    2016-12-29 16:48:00
57126    23946    811    2016-12-29 01:08:00    2016-12-29 01:08:00
57127    23946    781    2016-12-29 02:54:00    2016-12-29 02:54:00
57128    23947    609    2016-12-29 10:10:00    2016-12-29 10:10:00
57129    23947    499    2016-12-29 10:15:00    2016-12-29 10:15:00
57130    23947    500    2016-12-29 04:05:00    2016-12-29 04:05:00
57131    23947    517    2016-12-29 19:43:00    2016-12-29 19:43:00
57132    23947    802    2016-12-29 16:00:00    2016-12-29 16:00:00
57133    23948    633    2016-12-29 19:43:00    2016-12-29 19:43:00
57134    23948    483    2016-12-29 04:59:00    2016-12-29 04:59:00
57135    23948    707    2016-12-29 06:12:00    2016-12-29 06:12:00
57136    23948    829    2016-12-29 01:31:00    2016-12-29 01:31:00
57137    23948    746    2016-12-29 10:40:00    2016-12-29 10:40:00
57138    23949    565    2016-12-29 08:43:00    2016-12-29 08:43:00
57139    23949    826    2016-12-29 11:10:00    2016-12-29 11:10:00
57140    23949    527    2016-12-29 23:24:00    2016-12-29 23:24:00
57141    23949    952    2016-12-29 11:18:00    2016-12-29 11:18:00
57142    23949    502    2016-12-29 13:29:00    2016-12-29 13:29:00
57143    23950    497    2016-12-29 19:24:00    2016-12-29 19:24:00
57144    23950    810    2016-12-29 04:33:00    2016-12-29 04:33:00
57145    23950    859    2016-12-29 21:09:00    2016-12-29 21:09:00
57146    23950    485    2016-12-29 19:12:00    2016-12-29 19:12:00
57147    23950    886    2016-12-29 03:58:00    2016-12-29 03:58:00
57148    23951    640    2016-12-29 15:14:00    2016-12-29 15:14:00
57149    23951    685    2016-12-29 17:08:00    2016-12-29 17:08:00
57150    23951    729    2016-12-29 07:09:00    2016-12-29 07:09:00
57151    23951    524    2016-12-29 06:44:00    2016-12-29 06:44:00
57152    23951    637    2016-12-29 04:34:00    2016-12-29 04:34:00
57153    23952    519    2016-12-29 14:07:00    2016-12-29 14:07:00
57154    23952    554    2016-12-29 22:14:00    2016-12-29 22:14:00
57155    23952    611    2016-12-29 22:20:00    2016-12-29 22:20:00
57156    23952    704    2016-12-29 09:41:00    2016-12-29 09:41:00
57157    23952    560    2016-12-29 19:29:00    2016-12-29 19:29:00
57158    23953    721    2016-12-29 05:58:00    2016-12-29 05:58:00
57159    23953    684    2016-12-29 22:52:00    2016-12-29 22:52:00
57160    23953    537    2016-12-29 20:48:00    2016-12-29 20:48:00
57161    23953    525    2016-12-29 01:20:00    2016-12-29 01:20:00
57162    23953    648    2016-12-29 14:59:00    2016-12-29 14:59:00
57163    23954    643    2016-12-29 12:13:00    2016-12-29 12:13:00
57164    23954    762    2016-12-29 15:05:00    2016-12-29 15:05:00
57165    23954    465    2016-12-29 20:25:00    2016-12-29 20:25:00
57166    23954    550    2016-12-29 11:16:00    2016-12-29 11:16:00
57167    23954    625    2016-12-29 10:29:00    2016-12-29 10:29:00
57168    23955    519    2016-12-29 04:52:00    2016-12-29 04:52:00
57169    23955    731    2016-12-29 15:49:00    2016-12-29 15:49:00
57170    23955    827    2016-12-29 21:40:00    2016-12-29 21:40:00
57171    23955    586    2016-12-29 02:56:00    2016-12-29 02:56:00
57172    23955    592    2016-12-29 23:49:00    2016-12-29 23:49:00
57173    23956    789    2016-12-29 19:55:00    2016-12-29 19:55:00
57174    23956    506    2016-12-29 14:23:00    2016-12-29 14:23:00
57175    23956    620    2016-12-29 16:04:00    2016-12-29 16:04:00
57176    23956    826    2016-12-29 03:46:00    2016-12-29 03:46:00
57177    23956    616    2016-12-29 12:02:00    2016-12-29 12:02:00
57178    23957    815    2016-12-29 17:23:00    2016-12-29 17:23:00
57179    23957    738    2016-12-29 13:01:00    2016-12-29 13:01:00
57180    23957    720    2016-12-29 19:12:00    2016-12-29 19:12:00
57181    23957    601    2016-12-29 13:31:00    2016-12-29 13:31:00
57182    23957    599    2016-12-29 13:12:00    2016-12-29 13:12:00
57183    23958    603    2016-12-29 11:46:00    2016-12-29 11:46:00
57184    23958    578    2016-12-29 17:39:00    2016-12-29 17:39:00
57185    23958    761    2016-12-29 18:39:00    2016-12-29 18:39:00
57186    23958    873    2016-12-29 04:29:00    2016-12-29 04:29:00
57187    23958    688    2016-12-29 03:29:00    2016-12-29 03:29:00
57188    23959    572    2016-12-29 02:26:00    2016-12-29 02:26:00
57189    23959    841    2016-12-29 05:00:00    2016-12-29 05:00:00
57190    23959    956    2016-12-29 06:00:00    2016-12-29 06:00:00
57191    23959    472    2016-12-29 14:14:00    2016-12-29 14:14:00
57192    23959    651    2016-12-29 11:00:00    2016-12-29 11:00:00
57193    23960    639    2016-12-29 17:08:00    2016-12-29 17:08:00
57194    23960    843    2016-12-29 19:59:00    2016-12-29 19:59:00
57195    23960    776    2016-12-29 05:21:00    2016-12-29 05:21:00
57196    23960    892    2016-12-29 14:49:00    2016-12-29 14:49:00
57197    23960    870    2016-12-29 22:37:00    2016-12-29 22:37:00
57198    23961    735    2016-12-29 15:27:00    2016-12-29 15:27:00
57199    23961    821    2016-12-29 05:27:00    2016-12-29 05:27:00
57200    23961    808    2016-12-29 20:18:00    2016-12-29 20:18:00
57201    23961    498    2016-12-29 01:35:00    2016-12-29 01:35:00
57202    23961    877    2016-12-29 21:16:00    2016-12-29 21:16:00
57203    23962    677    2016-12-29 03:25:00    2016-12-29 03:25:00
57204    23962    613    2016-12-29 15:29:00    2016-12-29 15:29:00
57205    23962    907    2016-12-29 08:59:00    2016-12-29 08:59:00
57206    23962    813    2016-12-29 05:45:00    2016-12-29 05:45:00
57207    23962    478    2016-12-29 15:19:00    2016-12-29 15:19:00
57208    23963    682    2016-12-29 17:51:00    2016-12-29 17:51:00
57209    23963    632    2016-12-29 17:06:00    2016-12-29 17:06:00
57210    23963    468    2016-12-29 05:22:00    2016-12-29 05:22:00
57211    23963    593    2016-12-29 13:43:00    2016-12-29 13:43:00
57212    23963    525    2016-12-29 07:54:00    2016-12-29 07:54:00
57213    23964    817    2016-12-29 01:05:00    2016-12-29 01:05:00
57214    23964    584    2016-12-29 21:43:00    2016-12-29 21:43:00
57215    23964    742    2016-12-29 13:53:00    2016-12-29 13:53:00
57216    23964    896    2016-12-29 23:06:00    2016-12-29 23:06:00
57217    23964    601    2016-12-29 05:40:00    2016-12-29 05:40:00
57218    23965    756    2016-12-29 14:11:00    2016-12-29 14:11:00
57219    23965    485    2016-12-29 10:38:00    2016-12-29 10:38:00
57220    23965    924    2016-12-29 11:11:00    2016-12-29 11:11:00
57221    23965    484    2016-12-29 12:23:00    2016-12-29 12:23:00
57222    23965    529    2016-12-29 09:00:00    2016-12-29 09:00:00
57223    23966    598    2016-12-29 22:59:00    2016-12-29 22:59:00
57224    23966    889    2016-12-29 13:01:00    2016-12-29 13:01:00
57225    23966    927    2016-12-29 22:03:00    2016-12-29 22:03:00
57226    23966    760    2016-12-29 08:06:00    2016-12-29 08:06:00
57227    23966    553    2016-12-29 20:16:00    2016-12-29 20:16:00
57228    23967    759    2016-12-29 08:12:00    2016-12-29 08:12:00
57229    23967    490    2016-12-29 06:35:00    2016-12-29 06:35:00
57230    23967    921    2016-12-29 19:45:00    2016-12-29 19:45:00
57231    23967    789    2016-12-29 04:02:00    2016-12-29 04:02:00
57232    23967    636    2016-12-29 10:24:00    2016-12-29 10:24:00
57233    23968    582    2016-12-29 13:15:00    2016-12-29 13:15:00
57234    23968    535    2016-12-29 05:54:00    2016-12-29 05:54:00
57235    23968    716    2016-12-29 03:30:00    2016-12-29 03:30:00
57236    23968    709    2016-12-29 03:50:00    2016-12-29 03:50:00
57237    23968    900    2016-12-29 16:17:00    2016-12-29 16:17:00
57238    23969    751    2016-12-29 17:06:00    2016-12-29 17:06:00
57239    23969    617    2016-12-29 11:49:00    2016-12-29 11:49:00
57240    23969    492    2016-12-29 13:21:00    2016-12-29 13:21:00
57241    23969    830    2016-12-29 11:12:00    2016-12-29 11:12:00
57242    23969    485    2016-12-29 23:19:00    2016-12-29 23:19:00
57243    23970    695    2016-12-29 05:08:00    2016-12-29 05:08:00
57244    23970    883    2016-12-29 09:03:00    2016-12-29 09:03:00
57245    23970    528    2016-12-29 02:50:00    2016-12-29 02:50:00
57246    23970    910    2016-12-29 18:42:00    2016-12-29 18:42:00
57247    23970    466    2016-12-29 23:54:00    2016-12-29 23:54:00
57248    23971    811    2016-12-29 15:49:00    2016-12-29 15:49:00
57249    23971    921    2016-12-29 18:22:00    2016-12-29 18:22:00
57250    23971    822    2016-12-29 09:39:00    2016-12-29 09:39:00
57251    23971    466    2016-12-29 16:01:00    2016-12-29 16:01:00
57252    23971    875    2016-12-29 04:16:00    2016-12-29 04:16:00
57253    23972    717    2016-12-29 21:16:00    2016-12-29 21:16:00
57254    23972    850    2016-12-29 04:01:00    2016-12-29 04:01:00
57255    23972    481    2016-12-29 19:52:00    2016-12-29 19:52:00
57256    23972    463    2016-12-29 01:45:00    2016-12-29 01:45:00
57257    23972    514    2016-12-29 09:38:00    2016-12-29 09:38:00
57258    23973    693    2016-12-29 03:02:00    2016-12-29 03:02:00
57259    23973    952    2016-12-29 07:24:00    2016-12-29 07:24:00
57260    23973    745    2016-12-29 02:52:00    2016-12-29 02:52:00
57261    23973    672    2016-12-29 15:13:00    2016-12-29 15:13:00
57262    23973    925    2016-12-29 05:46:00    2016-12-29 05:46:00
57263    23974    809    2016-12-29 17:24:00    2016-12-29 17:24:00
57264    23974    504    2016-12-29 05:25:00    2016-12-29 05:25:00
57265    23974    654    2016-12-29 14:14:00    2016-12-29 14:14:00
57266    23974    764    2016-12-29 02:40:00    2016-12-29 02:40:00
57267    23974    554    2016-12-29 01:15:00    2016-12-29 01:15:00
57268    23975    727    2016-12-29 05:40:00    2016-12-29 05:40:00
57269    23975    829    2016-12-29 13:17:00    2016-12-29 13:17:00
57270    23975    829    2016-12-29 21:35:00    2016-12-29 21:35:00
57271    23975    685    2016-12-29 09:04:00    2016-12-29 09:04:00
57272    23975    590    2016-12-29 10:10:00    2016-12-29 10:10:00
57273    23976    927    2016-12-29 15:57:00    2016-12-29 15:57:00
57274    23976    939    2016-12-29 10:10:00    2016-12-29 10:10:00
57275    23976    857    2016-12-29 21:53:00    2016-12-29 21:53:00
57276    23976    795    2016-12-29 04:43:00    2016-12-29 04:43:00
57277    23976    818    2016-12-29 17:52:00    2016-12-29 17:52:00
57278    23977    482    2016-12-29 23:20:00    2016-12-29 23:20:00
57279    23977    789    2016-12-29 08:43:00    2016-12-29 08:43:00
57280    23977    703    2016-12-29 07:46:00    2016-12-29 07:46:00
57281    23977    916    2016-12-29 07:39:00    2016-12-29 07:39:00
57282    23977    594    2016-12-29 20:59:00    2016-12-29 20:59:00
57283    23978    530    2016-12-29 02:52:00    2016-12-29 02:52:00
57284    23978    573    2016-12-29 22:51:00    2016-12-29 22:51:00
57285    23978    654    2016-12-29 14:44:00    2016-12-29 14:44:00
57286    23978    780    2016-12-29 07:27:00    2016-12-29 07:27:00
57287    23978    623    2016-12-29 07:11:00    2016-12-29 07:11:00
57288    23979    571    2016-12-29 04:20:00    2016-12-29 04:20:00
57289    23979    558    2016-12-29 22:11:00    2016-12-29 22:11:00
57290    23979    712    2016-12-29 10:33:00    2016-12-29 10:33:00
57291    23979    467    2016-12-29 20:08:00    2016-12-29 20:08:00
57292    23979    795    2016-12-29 23:20:00    2016-12-29 23:20:00
57293    23980    503    2016-12-29 20:51:00    2016-12-29 20:51:00
57294    23980    503    2016-12-29 17:18:00    2016-12-29 17:18:00
57295    23980    695    2016-12-29 05:28:00    2016-12-29 05:28:00
57296    23980    781    2016-12-29 18:45:00    2016-12-29 18:45:00
57297    23980    802    2016-12-29 13:28:00    2016-12-29 13:28:00
57298    23981    723    2016-12-29 15:57:00    2016-12-29 15:57:00
57299    23981    708    2016-12-29 14:48:00    2016-12-29 14:48:00
57300    23981    831    2016-12-29 21:05:00    2016-12-29 21:05:00
57301    23981    636    2016-12-29 16:07:00    2016-12-29 16:07:00
57302    23981    713    2016-12-29 17:36:00    2016-12-29 17:36:00
57303    23982    812    2016-12-29 13:05:00    2016-12-29 13:05:00
57304    23982    932    2016-12-29 13:03:00    2016-12-29 13:03:00
57305    23982    857    2016-12-29 13:54:00    2016-12-29 13:54:00
57306    23982    895    2016-12-29 13:17:00    2016-12-29 13:17:00
57307    23982    806    2016-12-29 22:54:00    2016-12-29 22:54:00
57308    23983    695    2016-12-29 08:06:00    2016-12-29 08:06:00
57309    23983    890    2016-12-29 11:21:00    2016-12-29 11:21:00
57310    23983    795    2016-12-29 04:24:00    2016-12-29 04:24:00
57311    23983    837    2016-12-29 20:56:00    2016-12-29 20:56:00
57312    23983    594    2016-12-29 05:45:00    2016-12-29 05:45:00
57313    23984    471    2016-12-29 12:13:00    2016-12-29 12:13:00
57314    23984    471    2016-12-29 07:49:00    2016-12-29 07:49:00
57315    23984    679    2016-12-29 13:40:00    2016-12-29 13:40:00
57316    23984    863    2016-12-29 01:54:00    2016-12-29 01:54:00
57317    23984    717    2016-12-29 18:54:00    2016-12-29 18:54:00
57318    23985    644    2016-12-29 22:47:00    2016-12-29 22:47:00
57319    23985    895    2016-12-29 04:35:00    2016-12-29 04:35:00
57320    23985    580    2016-12-29 13:12:00    2016-12-29 13:12:00
57321    23985    698    2016-12-29 09:09:00    2016-12-29 09:09:00
57322    23985    810    2016-12-29 05:13:00    2016-12-29 05:13:00
57323    23986    472    2016-12-29 14:24:00    2016-12-29 14:24:00
57324    23986    745    2016-12-29 04:23:00    2016-12-29 04:23:00
57325    23986    604    2016-12-29 18:24:00    2016-12-29 18:24:00
57326    23986    743    2016-12-29 13:18:00    2016-12-29 13:18:00
57327    23986    883    2016-12-29 08:07:00    2016-12-29 08:07:00
57328    23987    487    2016-12-29 06:31:00    2016-12-29 06:31:00
57329    23987    539    2016-12-29 18:05:00    2016-12-29 18:05:00
57330    23987    748    2016-12-29 21:17:00    2016-12-29 21:17:00
57331    23987    846    2016-12-29 07:14:00    2016-12-29 07:14:00
57332    23987    550    2016-12-29 12:48:00    2016-12-29 12:48:00
57333    23988    815    2016-12-29 05:06:00    2016-12-29 05:06:00
57334    23988    785    2016-12-29 23:39:00    2016-12-29 23:39:00
57335    23988    772    2016-12-29 08:39:00    2016-12-29 08:39:00
57336    23988    844    2016-12-29 13:00:00    2016-12-29 13:00:00
57337    23988    594    2016-12-29 05:31:00    2016-12-29 05:31:00
57338    23989    782    2016-12-29 21:42:00    2016-12-29 21:42:00
57339    23989    869    2016-12-29 13:20:00    2016-12-29 13:20:00
57340    23989    541    2016-12-29 01:31:00    2016-12-29 01:31:00
57341    23989    931    2016-12-29 12:27:00    2016-12-29 12:27:00
57342    23989    875    2016-12-29 17:12:00    2016-12-29 17:12:00
57343    23990    752    2016-12-29 01:46:00    2016-12-29 01:46:00
57344    23990    960    2016-12-29 06:37:00    2016-12-29 06:37:00
57345    23990    636    2016-12-29 17:40:00    2016-12-29 17:40:00
57346    23990    555    2016-12-29 13:25:00    2016-12-29 13:25:00
57347    23990    766    2016-12-29 11:52:00    2016-12-29 11:52:00
57348    23991    909    2016-12-29 20:27:00    2016-12-29 20:27:00
57349    23991    648    2016-12-29 02:53:00    2016-12-29 02:53:00
57350    23991    556    2016-12-29 07:35:00    2016-12-29 07:35:00
57351    23991    843    2016-12-29 21:37:00    2016-12-29 21:37:00
57352    23991    945    2016-12-29 17:11:00    2016-12-29 17:11:00
57353    23992    773    2016-12-29 06:30:00    2016-12-29 06:30:00
57354    23992    719    2016-12-29 07:45:00    2016-12-29 07:45:00
57355    23992    802    2016-12-29 16:18:00    2016-12-29 16:18:00
57356    23992    795    2016-12-29 15:35:00    2016-12-29 15:35:00
57357    23992    721    2016-12-29 07:38:00    2016-12-29 07:38:00
57358    23993    935    2016-12-29 13:49:00    2016-12-29 13:49:00
57359    23993    800    2016-12-29 09:04:00    2016-12-29 09:04:00
57360    23993    720    2016-12-29 04:14:00    2016-12-29 04:14:00
57361    23993    570    2016-12-29 16:30:00    2016-12-29 16:30:00
57362    23993    556    2016-12-29 19:17:00    2016-12-29 19:17:00
57363    23994    580    2016-12-29 13:02:00    2016-12-29 13:02:00
57364    23994    477    2016-12-29 02:22:00    2016-12-29 02:22:00
57365    23994    579    2016-12-29 07:54:00    2016-12-29 07:54:00
57366    23994    864    2016-12-29 05:52:00    2016-12-29 05:52:00
57367    23994    622    2016-12-29 04:22:00    2016-12-29 04:22:00
57368    23995    717    2016-12-29 22:53:00    2016-12-29 22:53:00
57369    23995    515    2016-12-29 03:53:00    2016-12-29 03:53:00
57370    23995    936    2016-12-29 18:14:00    2016-12-29 18:14:00
57371    23995    772    2016-12-29 16:50:00    2016-12-29 16:50:00
57372    23995    552    2016-12-29 19:24:00    2016-12-29 19:24:00
57373    23996    532    2016-12-29 01:09:00    2016-12-29 01:09:00
57374    23996    867    2016-12-29 08:39:00    2016-12-29 08:39:00
57375    23996    854    2016-12-29 12:59:00    2016-12-29 12:59:00
57376    23996    881    2016-12-29 04:44:00    2016-12-29 04:44:00
57377    23996    475    2016-12-29 13:52:00    2016-12-29 13:52:00
57378    23997    797    2016-12-30 02:13:00    2016-12-30 02:13:00
57379    23997    648    2016-12-30 04:17:00    2016-12-30 04:17:00
57380    23997    537    2016-12-30 11:37:00    2016-12-30 11:37:00
57381    23997    837    2016-12-30 05:28:00    2016-12-30 05:28:00
57382    23997    891    2016-12-30 23:49:00    2016-12-30 23:49:00
57383    23998    766    2016-12-30 12:34:00    2016-12-30 12:34:00
57384    23998    497    2016-12-30 04:01:00    2016-12-30 04:01:00
57385    23998    722    2016-12-30 07:27:00    2016-12-30 07:27:00
57386    23998    730    2016-12-30 22:40:00    2016-12-30 22:40:00
57387    23998    735    2016-12-30 22:21:00    2016-12-30 22:21:00
57388    23999    603    2016-12-30 07:14:00    2016-12-30 07:14:00
57389    23999    634    2016-12-30 14:24:00    2016-12-30 14:24:00
57390    23999    592    2016-12-30 22:23:00    2016-12-30 22:23:00
57391    23999    591    2016-12-30 16:38:00    2016-12-30 16:38:00
57392    23999    728    2016-12-30 21:00:00    2016-12-30 21:00:00
57393    24000    525    2016-12-30 08:21:00    2016-12-30 08:21:00
57394    24000    674    2016-12-30 10:00:00    2016-12-30 10:00:00
57395    24000    895    2016-12-30 04:01:00    2016-12-30 04:01:00
57396    24000    756    2016-12-30 05:20:00    2016-12-30 05:20:00
57397    24000    759    2016-12-30 17:18:00    2016-12-30 17:18:00
57398    24001    695    2016-12-30 20:20:00    2016-12-30 20:20:00
57399    24001    601    2016-12-30 02:08:00    2016-12-30 02:08:00
57400    24001    658    2016-12-30 07:36:00    2016-12-30 07:36:00
57401    24001    664    2016-12-30 20:56:00    2016-12-30 20:56:00
57402    24001    851    2016-12-30 08:56:00    2016-12-30 08:56:00
57403    24002    650    2016-12-30 07:22:00    2016-12-30 07:22:00
57404    24002    548    2016-12-30 04:14:00    2016-12-30 04:14:00
57405    24002    679    2016-12-30 14:52:00    2016-12-30 14:52:00
57406    24002    829    2016-12-30 07:39:00    2016-12-30 07:39:00
57407    24002    860    2016-12-30 09:25:00    2016-12-30 09:25:00
57408    24003    549    2016-12-30 18:05:00    2016-12-30 18:05:00
57409    24003    823    2016-12-30 02:06:00    2016-12-30 02:06:00
57410    24003    584    2016-12-30 07:41:00    2016-12-30 07:41:00
57411    24003    550    2016-12-30 12:32:00    2016-12-30 12:32:00
57412    24003    956    2016-12-30 13:16:00    2016-12-30 13:16:00
57413    24004    521    2016-12-30 18:24:00    2016-12-30 18:24:00
57414    24004    764    2016-12-30 23:47:00    2016-12-30 23:47:00
57415    24004    835    2016-12-30 23:17:00    2016-12-30 23:17:00
57416    24004    927    2016-12-30 14:28:00    2016-12-30 14:28:00
57417    24004    947    2016-12-30 03:55:00    2016-12-30 03:55:00
57418    24005    500    2016-12-30 19:29:00    2016-12-30 19:29:00
57419    24005    803    2016-12-30 08:14:00    2016-12-30 08:14:00
57420    24005    944    2016-12-30 12:17:00    2016-12-30 12:17:00
57421    24005    627    2016-12-30 19:58:00    2016-12-30 19:58:00
57422    24005    718    2016-12-30 16:08:00    2016-12-30 16:08:00
57423    24006    849    2016-12-30 01:50:00    2016-12-30 01:50:00
57424    24006    674    2016-12-30 16:21:00    2016-12-30 16:21:00
57425    24006    677    2016-12-30 07:59:00    2016-12-30 07:59:00
57426    24006    803    2016-12-30 10:42:00    2016-12-30 10:42:00
57427    24006    598    2016-12-30 13:46:00    2016-12-30 13:46:00
57428    24007    659    2016-12-30 02:44:00    2016-12-30 02:44:00
57429    24007    701    2016-12-30 06:43:00    2016-12-30 06:43:00
57430    24007    670    2016-12-30 04:00:00    2016-12-30 04:00:00
57431    24007    849    2016-12-30 08:31:00    2016-12-30 08:31:00
57432    24007    698    2016-12-30 06:16:00    2016-12-30 06:16:00
57433    24008    857    2016-12-30 13:36:00    2016-12-30 13:36:00
57434    24008    645    2016-12-30 05:02:00    2016-12-30 05:02:00
57435    24008    630    2016-12-30 11:41:00    2016-12-30 11:41:00
57436    24008    842    2016-12-30 02:41:00    2016-12-30 02:41:00
57437    24008    798    2016-12-30 11:20:00    2016-12-30 11:20:00
57438    24009    603    2016-12-30 22:05:00    2016-12-30 22:05:00
57439    24009    637    2016-12-30 02:34:00    2016-12-30 02:34:00
57440    24009    834    2016-12-30 22:38:00    2016-12-30 22:38:00
57441    24009    788    2016-12-30 18:14:00    2016-12-30 18:14:00
57442    24009    716    2016-12-30 14:30:00    2016-12-30 14:30:00
57443    24010    555    2016-12-30 19:40:00    2016-12-30 19:40:00
57444    24010    564    2016-12-30 03:03:00    2016-12-30 03:03:00
57445    24010    797    2016-12-30 08:07:00    2016-12-30 08:07:00
57446    24010    497    2016-12-30 20:08:00    2016-12-30 20:08:00
57447    24010    607    2016-12-30 05:22:00    2016-12-30 05:22:00
57448    24011    950    2016-12-30 02:45:00    2016-12-30 02:45:00
57449    24011    944    2016-12-30 04:12:00    2016-12-30 04:12:00
57450    24011    797    2016-12-30 23:38:00    2016-12-30 23:38:00
57451    24011    580    2016-12-30 16:25:00    2016-12-30 16:25:00
57452    24011    675    2016-12-30 17:49:00    2016-12-30 17:49:00
57453    24012    690    2016-12-30 15:45:00    2016-12-30 15:45:00
57454    24012    641    2016-12-30 19:43:00    2016-12-30 19:43:00
57455    24012    478    2016-12-30 20:40:00    2016-12-30 20:40:00
57456    24012    554    2016-12-30 14:21:00    2016-12-30 14:21:00
57457    24012    915    2016-12-30 23:19:00    2016-12-30 23:19:00
57458    24013    494    2016-12-30 18:52:00    2016-12-30 18:52:00
57459    24013    705    2016-12-30 22:37:00    2016-12-30 22:37:00
57460    24013    498    2016-12-30 18:03:00    2016-12-30 18:03:00
57461    24013    819    2016-12-30 16:40:00    2016-12-30 16:40:00
57462    24013    951    2016-12-30 18:41:00    2016-12-30 18:41:00
57463    24014    816    2016-12-30 01:37:00    2016-12-30 01:37:00
57464    24014    695    2016-12-30 13:37:00    2016-12-30 13:37:00
57465    24014    949    2016-12-30 04:47:00    2016-12-30 04:47:00
57466    24014    907    2016-12-30 23:30:00    2016-12-30 23:30:00
57467    24014    542    2016-12-30 22:07:00    2016-12-30 22:07:00
57468    24015    906    2016-12-30 06:57:00    2016-12-30 06:57:00
57469    24015    716    2016-12-30 16:06:00    2016-12-30 16:06:00
57470    24015    941    2016-12-30 19:39:00    2016-12-30 19:39:00
57471    24015    475    2016-12-30 08:09:00    2016-12-30 08:09:00
57472    24015    620    2016-12-30 13:12:00    2016-12-30 13:12:00
57473    24016    906    2016-12-30 02:08:00    2016-12-30 02:08:00
57474    24016    489    2016-12-30 02:42:00    2016-12-30 02:42:00
57475    24016    828    2016-12-30 18:06:00    2016-12-30 18:06:00
57476    24016    846    2016-12-30 20:26:00    2016-12-30 20:26:00
57477    24016    625    2016-12-30 19:18:00    2016-12-30 19:18:00
57478    24017    575    2016-12-30 07:29:00    2016-12-30 07:29:00
57479    24017    631    2016-12-30 16:54:00    2016-12-30 16:54:00
57480    24017    472    2016-12-30 18:36:00    2016-12-30 18:36:00
57481    24017    691    2016-12-30 18:56:00    2016-12-30 18:56:00
57482    24017    572    2016-12-30 17:14:00    2016-12-30 17:14:00
57483    24018    590    2016-12-30 15:06:00    2016-12-30 15:06:00
57484    24018    829    2016-12-30 21:16:00    2016-12-30 21:16:00
57485    24018    867    2016-12-30 16:52:00    2016-12-30 16:52:00
57486    24018    821    2016-12-30 16:16:00    2016-12-30 16:16:00
57487    24018    928    2016-12-30 13:50:00    2016-12-30 13:50:00
57488    24019    549    2016-12-30 22:40:00    2016-12-30 22:40:00
57489    24019    656    2016-12-30 04:57:00    2016-12-30 04:57:00
57490    24019    513    2016-12-30 18:27:00    2016-12-30 18:27:00
57491    24019    907    2016-12-30 02:22:00    2016-12-30 02:22:00
57492    24019    600    2016-12-30 01:25:00    2016-12-30 01:25:00
57493    24020    751    2016-12-30 17:47:00    2016-12-30 17:47:00
57494    24020    469    2016-12-30 19:00:00    2016-12-30 19:00:00
57495    24020    782    2016-12-30 02:52:00    2016-12-30 02:52:00
57496    24020    601    2016-12-30 23:30:00    2016-12-30 23:30:00
57497    24020    551    2016-12-30 17:31:00    2016-12-30 17:31:00
57498    24021    586    2016-12-30 16:03:00    2016-12-30 16:03:00
57499    24021    745    2016-12-30 21:54:00    2016-12-30 21:54:00
57500    24021    876    2016-12-30 11:00:00    2016-12-30 11:00:00
57501    24021    822    2016-12-30 08:46:00    2016-12-30 08:46:00
57502    24021    662    2016-12-30 11:16:00    2016-12-30 11:16:00
57503    24022    802    2016-12-30 04:33:00    2016-12-30 04:33:00
57504    24022    733    2016-12-30 19:26:00    2016-12-30 19:26:00
57505    24022    475    2016-12-30 08:43:00    2016-12-30 08:43:00
57506    24022    716    2016-12-30 19:50:00    2016-12-30 19:50:00
57507    24022    912    2016-12-30 16:27:00    2016-12-30 16:27:00
57508    24023    505    2016-12-30 10:30:00    2016-12-30 10:30:00
57509    24023    912    2016-12-30 12:35:00    2016-12-30 12:35:00
57510    24023    943    2016-12-30 15:53:00    2016-12-30 15:53:00
57511    24023    934    2016-12-30 05:58:00    2016-12-30 05:58:00
57512    24023    552    2016-12-30 12:17:00    2016-12-30 12:17:00
57513    24024    798    2016-12-30 16:27:00    2016-12-30 16:27:00
57514    24024    786    2016-12-30 03:07:00    2016-12-30 03:07:00
57515    24024    872    2016-12-30 16:10:00    2016-12-30 16:10:00
57516    24024    915    2016-12-30 13:30:00    2016-12-30 13:30:00
57517    24024    479    2016-12-30 16:17:00    2016-12-30 16:17:00
57518    24025    861    2016-12-30 15:24:00    2016-12-30 15:24:00
57519    24025    918    2016-12-30 13:26:00    2016-12-30 13:26:00
57520    24025    901    2016-12-30 22:44:00    2016-12-30 22:44:00
57521    24025    723    2016-12-30 23:11:00    2016-12-30 23:11:00
57522    24025    659    2016-12-30 06:10:00    2016-12-30 06:10:00
57523    24026    746    2016-12-30 16:52:00    2016-12-30 16:52:00
57524    24026    714    2016-12-30 07:13:00    2016-12-30 07:13:00
57525    24026    506    2016-12-30 23:57:00    2016-12-30 23:57:00
57526    24026    548    2016-12-30 15:46:00    2016-12-30 15:46:00
57527    24026    650    2016-12-30 20:57:00    2016-12-30 20:57:00
57528    24027    739    2016-12-30 03:35:00    2016-12-30 03:35:00
57529    24027    716    2016-12-30 19:10:00    2016-12-30 19:10:00
57530    24027    926    2016-12-30 02:44:00    2016-12-30 02:44:00
57531    24027    705    2016-12-30 18:48:00    2016-12-30 18:48:00
57532    24027    710    2016-12-30 02:35:00    2016-12-30 02:35:00
57533    24028    840    2016-12-30 17:28:00    2016-12-30 17:28:00
57534    24028    772    2016-12-30 16:07:00    2016-12-30 16:07:00
57535    24028    713    2016-12-30 22:19:00    2016-12-30 22:19:00
57536    24028    907    2016-12-30 07:08:00    2016-12-30 07:08:00
57537    24028    501    2016-12-30 15:04:00    2016-12-30 15:04:00
57538    24029    555    2016-12-30 03:37:00    2016-12-30 03:37:00
57539    24029    717    2016-12-30 10:32:00    2016-12-30 10:32:00
57540    24029    823    2016-12-30 10:35:00    2016-12-30 10:35:00
57541    24029    897    2016-12-30 05:50:00    2016-12-30 05:50:00
57542    24029    854    2016-12-30 04:29:00    2016-12-30 04:29:00
57543    24030    850    2016-12-30 14:33:00    2016-12-30 14:33:00
57544    24030    903    2016-12-30 23:10:00    2016-12-30 23:10:00
57545    24030    957    2016-12-30 21:16:00    2016-12-30 21:16:00
57546    24030    816    2016-12-30 17:25:00    2016-12-30 17:25:00
57547    24030    614    2016-12-30 04:16:00    2016-12-30 04:16:00
57548    24031    526    2016-12-30 22:05:00    2016-12-30 22:05:00
57549    24031    800    2016-12-30 01:44:00    2016-12-30 01:44:00
57550    24031    684    2016-12-30 17:59:00    2016-12-30 17:59:00
57551    24031    842    2016-12-30 12:15:00    2016-12-30 12:15:00
57552    24031    571    2016-12-30 11:57:00    2016-12-30 11:57:00
57553    24032    642    2016-12-30 06:48:00    2016-12-30 06:48:00
57554    24032    722    2016-12-30 20:00:00    2016-12-30 20:00:00
57555    24032    592    2016-12-30 08:47:00    2016-12-30 08:47:00
57556    24032    914    2016-12-30 14:41:00    2016-12-30 14:41:00
57557    24032    899    2016-12-30 20:25:00    2016-12-30 20:25:00
57558    24033    611    2016-12-30 09:07:00    2016-12-30 09:07:00
57559    24033    465    2016-12-30 04:03:00    2016-12-30 04:03:00
57560    24033    745    2016-12-30 18:40:00    2016-12-30 18:40:00
57561    24033    493    2016-12-30 09:49:00    2016-12-30 09:49:00
57562    24033    543    2016-12-30 11:59:00    2016-12-30 11:59:00
57563    24034    532    2016-12-30 14:54:00    2016-12-30 14:54:00
57564    24034    848    2016-12-30 13:40:00    2016-12-30 13:40:00
57565    24034    639    2016-12-30 12:36:00    2016-12-30 12:36:00
57566    24034    682    2016-12-30 15:18:00    2016-12-30 15:18:00
57567    24034    654    2016-12-30 06:00:00    2016-12-30 06:00:00
57568    24035    595    2016-12-30 07:52:00    2016-12-30 07:52:00
57569    24035    928    2016-12-30 07:14:00    2016-12-30 07:14:00
57570    24035    913    2016-12-30 23:28:00    2016-12-30 23:28:00
57571    24035    756    2016-12-30 02:52:00    2016-12-30 02:52:00
57572    24035    766    2016-12-30 02:03:00    2016-12-30 02:03:00
57573    24036    756    2016-12-30 03:03:00    2016-12-30 03:03:00
57574    24036    668    2016-12-30 11:41:00    2016-12-30 11:41:00
57575    24036    925    2016-12-30 15:16:00    2016-12-30 15:16:00
57576    24036    810    2016-12-30 07:11:00    2016-12-30 07:11:00
57577    24036    731    2016-12-30 18:11:00    2016-12-30 18:11:00
57578    24037    636    2016-12-30 05:04:00    2016-12-30 05:04:00
57579    24037    538    2016-12-30 08:31:00    2016-12-30 08:31:00
57580    24037    956    2016-12-30 09:46:00    2016-12-30 09:46:00
57581    24037    867    2016-12-30 01:58:00    2016-12-30 01:58:00
57582    24037    938    2016-12-30 07:25:00    2016-12-30 07:25:00
57583    24038    870    2016-12-30 12:57:00    2016-12-30 12:57:00
57584    24038    626    2016-12-30 17:07:00    2016-12-30 17:07:00
57585    24038    494    2016-12-30 20:23:00    2016-12-30 20:23:00
57586    24038    499    2016-12-30 05:57:00    2016-12-30 05:57:00
57587    24038    814    2016-12-30 05:33:00    2016-12-30 05:33:00
57588    24039    785    2016-12-30 17:41:00    2016-12-30 17:41:00
57589    24039    634    2016-12-30 21:39:00    2016-12-30 21:39:00
57590    24039    623    2016-12-30 18:25:00    2016-12-30 18:25:00
57591    24039    636    2016-12-30 07:01:00    2016-12-30 07:01:00
57592    24039    785    2016-12-30 09:20:00    2016-12-30 09:20:00
57593    24040    743    2016-12-30 20:29:00    2016-12-30 20:29:00
57594    24040    475    2016-12-30 01:50:00    2016-12-30 01:50:00
57595    24040    617    2016-12-30 13:43:00    2016-12-30 13:43:00
57596    24040    602    2016-12-30 23:03:00    2016-12-30 23:03:00
57597    24040    549    2016-12-30 09:08:00    2016-12-30 09:08:00
57598    24041    795    2016-12-30 11:39:00    2016-12-30 11:39:00
57599    24041    635    2016-12-30 15:34:00    2016-12-30 15:34:00
57600    24041    861    2016-12-30 10:02:00    2016-12-30 10:02:00
57601    24041    878    2016-12-30 05:27:00    2016-12-30 05:27:00
57602    24041    846    2016-12-30 07:11:00    2016-12-30 07:11:00
57603    24042    776    2016-12-30 07:43:00    2016-12-30 07:43:00
57604    24042    927    2016-12-30 06:34:00    2016-12-30 06:34:00
57605    24042    495    2016-12-30 16:52:00    2016-12-30 16:52:00
57606    24042    650    2016-12-30 17:17:00    2016-12-30 17:17:00
57607    24042    939    2016-12-30 23:21:00    2016-12-30 23:21:00
57608    24043    893    2016-12-30 03:11:00    2016-12-30 03:11:00
57609    24043    953    2016-12-30 13:28:00    2016-12-30 13:28:00
57610    24043    585    2016-12-30 23:47:00    2016-12-30 23:47:00
57611    24043    841    2016-12-30 17:57:00    2016-12-30 17:57:00
57612    24043    823    2016-12-30 23:54:00    2016-12-30 23:54:00
57613    24044    762    2016-12-31 15:49:00    2016-12-31 15:49:00
57614    24044    514    2016-12-31 12:03:00    2016-12-31 12:03:00
57615    24044    786    2016-12-31 19:30:00    2016-12-31 19:30:00
57616    24044    891    2016-12-31 03:17:00    2016-12-31 03:17:00
57617    24044    557    2016-12-31 21:21:00    2016-12-31 21:21:00
57618    24045    718    2016-12-31 15:00:00    2016-12-31 15:00:00
57619    24045    475    2016-12-31 12:21:00    2016-12-31 12:21:00
57620    24045    848    2016-12-31 23:15:00    2016-12-31 23:15:00
57621    24045    582    2016-12-31 21:47:00    2016-12-31 21:47:00
57622    24045    626    2016-12-31 22:16:00    2016-12-31 22:16:00
57623    24046    693    2016-12-31 03:23:00    2016-12-31 03:23:00
57624    24046    776    2016-12-31 04:31:00    2016-12-31 04:31:00
57625    24046    853    2016-12-31 22:51:00    2016-12-31 22:51:00
57626    24046    873    2016-12-31 09:13:00    2016-12-31 09:13:00
57627    24046    682    2016-12-31 08:39:00    2016-12-31 08:39:00
57628    24047    862    2016-12-31 17:48:00    2016-12-31 17:48:00
57629    24047    560    2016-12-31 09:48:00    2016-12-31 09:48:00
57630    24047    700    2016-12-31 18:53:00    2016-12-31 18:53:00
57631    24047    695    2016-12-31 09:54:00    2016-12-31 09:54:00
57632    24047    756    2016-12-31 14:04:00    2016-12-31 14:04:00
57633    24048    793    2016-12-31 06:11:00    2016-12-31 06:11:00
57634    24048    727    2016-12-31 08:49:00    2016-12-31 08:49:00
57635    24048    750    2016-12-31 11:23:00    2016-12-31 11:23:00
57636    24048    677    2016-12-31 12:11:00    2016-12-31 12:11:00
57637    24048    929    2016-12-31 14:31:00    2016-12-31 14:31:00
57638    24049    647    2016-12-31 10:43:00    2016-12-31 10:43:00
57639    24049    632    2016-12-31 07:30:00    2016-12-31 07:30:00
57640    24049    507    2016-12-31 10:56:00    2016-12-31 10:56:00
57641    24049    921    2016-12-31 01:11:00    2016-12-31 01:11:00
57642    24049    577    2016-12-31 11:04:00    2016-12-31 11:04:00
57643    24050    813    2016-12-31 14:13:00    2016-12-31 14:13:00
57644    24050    546    2016-12-31 23:36:00    2016-12-31 23:36:00
57645    24050    488    2016-12-31 06:49:00    2016-12-31 06:49:00
57646    24050    589    2016-12-31 14:28:00    2016-12-31 14:28:00
57647    24050    503    2016-12-31 20:08:00    2016-12-31 20:08:00
57648    24051    678    2016-12-31 03:22:00    2016-12-31 03:22:00
57649    24051    827    2016-12-31 01:17:00    2016-12-31 01:17:00
57650    24051    596    2016-12-31 11:12:00    2016-12-31 11:12:00
57651    24051    926    2016-12-31 02:41:00    2016-12-31 02:41:00
57652    24051    653    2016-12-31 21:31:00    2016-12-31 21:31:00
57653    24052    677    2016-12-31 23:41:00    2016-12-31 23:41:00
57654    24052    922    2016-12-31 01:19:00    2016-12-31 01:19:00
57655    24052    768    2016-12-31 08:52:00    2016-12-31 08:52:00
57656    24052    888    2016-12-31 11:00:00    2016-12-31 11:00:00
57657    24052    939    2016-12-31 19:17:00    2016-12-31 19:17:00
57658    24053    757    2016-12-31 11:21:00    2016-12-31 11:21:00
57659    24053    573    2016-12-31 16:14:00    2016-12-31 16:14:00
57660    24053    559    2016-12-31 01:32:00    2016-12-31 01:32:00
57661    24053    585    2016-12-31 01:53:00    2016-12-31 01:53:00
57662    24053    908    2016-12-31 14:01:00    2016-12-31 14:01:00
57663    24054    524    2016-12-31 07:20:00    2016-12-31 07:20:00
57664    24054    945    2016-12-31 15:35:00    2016-12-31 15:35:00
57665    24054    747    2016-12-31 16:29:00    2016-12-31 16:29:00
57666    24054    681    2016-12-31 08:41:00    2016-12-31 08:41:00
57667    24054    746    2016-12-31 10:30:00    2016-12-31 10:30:00
57668    24055    757    2016-12-31 11:55:00    2016-12-31 11:55:00
57669    24055    560    2016-12-31 13:02:00    2016-12-31 13:02:00
57670    24055    514    2016-12-31 12:25:00    2016-12-31 12:25:00
57671    24055    639    2016-12-31 13:17:00    2016-12-31 13:17:00
57672    24055    596    2016-12-31 20:38:00    2016-12-31 20:38:00
57673    24056    878    2016-12-31 13:43:00    2016-12-31 13:43:00
57674    24056    805    2016-12-31 18:00:00    2016-12-31 18:00:00
57675    24056    725    2016-12-31 12:17:00    2016-12-31 12:17:00
57676    24056    621    2016-12-31 10:55:00    2016-12-31 10:55:00
57677    24056    948    2016-12-31 19:21:00    2016-12-31 19:21:00
57678    24057    772    2016-12-31 18:13:00    2016-12-31 18:13:00
57679    24057    779    2016-12-31 01:34:00    2016-12-31 01:34:00
57680    24057    554    2016-12-31 21:00:00    2016-12-31 21:00:00
57681    24057    635    2016-12-31 02:42:00    2016-12-31 02:42:00
57682    24057    593    2016-12-31 08:26:00    2016-12-31 08:26:00
57683    24058    633    2016-12-31 09:15:00    2016-12-31 09:15:00
57684    24058    793    2016-12-31 11:26:00    2016-12-31 11:26:00
57685    24058    900    2016-12-31 14:57:00    2016-12-31 14:57:00
57686    24058    588    2016-12-31 07:03:00    2016-12-31 07:03:00
57687    24058    588    2016-12-31 14:23:00    2016-12-31 14:23:00
57688    24059    678    2016-12-31 20:49:00    2016-12-31 20:49:00
57689    24059    857    2016-12-31 08:46:00    2016-12-31 08:46:00
57690    24059    674    2016-12-31 21:31:00    2016-12-31 21:31:00
57691    24059    557    2016-12-31 05:47:00    2016-12-31 05:47:00
57692    24059    573    2016-12-31 15:18:00    2016-12-31 15:18:00
57693    24060    728    2016-12-31 19:42:00    2016-12-31 19:42:00
57694    24060    630    2016-12-31 22:39:00    2016-12-31 22:39:00
57695    24060    938    2016-12-31 17:06:00    2016-12-31 17:06:00
57696    24060    570    2016-12-31 06:29:00    2016-12-31 06:29:00
57697    24060    519    2016-12-31 07:15:00    2016-12-31 07:15:00
57698    24061    803    2016-12-31 07:48:00    2016-12-31 07:48:00
57699    24061    756    2016-12-31 05:29:00    2016-12-31 05:29:00
57700    24061    728    2016-12-31 21:24:00    2016-12-31 21:24:00
57701    24061    779    2016-12-31 20:35:00    2016-12-31 20:35:00
57702    24061    491    2016-12-31 08:18:00    2016-12-31 08:18:00
57703    24062    840    2016-12-31 14:55:00    2016-12-31 14:55:00
57704    24062    909    2016-12-31 01:52:00    2016-12-31 01:52:00
57705    24062    597    2016-12-31 04:19:00    2016-12-31 04:19:00
57706    24062    803    2016-12-31 06:45:00    2016-12-31 06:45:00
57707    24062    648    2016-12-31 11:07:00    2016-12-31 11:07:00
57708    24063    812    2016-12-31 11:05:00    2016-12-31 11:05:00
57709    24063    645    2016-12-31 14:25:00    2016-12-31 14:25:00
57710    24063    519    2016-12-31 01:29:00    2016-12-31 01:29:00
57711    24063    722    2016-12-31 16:20:00    2016-12-31 16:20:00
57712    24063    719    2016-12-31 14:57:00    2016-12-31 14:57:00
57713    24064    770    2016-12-31 21:37:00    2016-12-31 21:37:00
57714    24064    762    2016-12-31 09:39:00    2016-12-31 09:39:00
57715    24064    927    2016-12-31 07:10:00    2016-12-31 07:10:00
57716    24064    782    2016-12-31 16:48:00    2016-12-31 16:48:00
57717    24064    789    2016-12-31 06:15:00    2016-12-31 06:15:00
57718    24065    772    2016-12-31 15:54:00    2016-12-31 15:54:00
57719    24065    583    2016-12-31 22:08:00    2016-12-31 22:08:00
57720    24065    552    2016-12-31 03:00:00    2016-12-31 03:00:00
57721    24065    832    2016-12-31 22:14:00    2016-12-31 22:14:00
57722    24065    949    2016-12-31 22:53:00    2016-12-31 22:53:00
57723    24066    645    2016-12-31 19:55:00    2016-12-31 19:55:00
57724    24066    961    2016-12-31 04:15:00    2016-12-31 04:15:00
57725    24066    949    2016-12-31 22:52:00    2016-12-31 22:52:00
57726    24066    860    2016-12-31 12:59:00    2016-12-31 12:59:00
57727    24066    587    2016-12-31 04:57:00    2016-12-31 04:57:00
57728    24067    676    2016-12-31 15:06:00    2016-12-31 15:06:00
57729    24067    860    2016-12-31 13:40:00    2016-12-31 13:40:00
57730    24067    467    2016-12-31 17:23:00    2016-12-31 17:23:00
57731    24067    673    2016-12-31 08:43:00    2016-12-31 08:43:00
57732    24067    731    2016-12-31 16:40:00    2016-12-31 16:40:00
57733    24068    592    2016-12-31 05:53:00    2016-12-31 05:53:00
57734    24068    927    2016-12-31 10:32:00    2016-12-31 10:32:00
57735    24068    904    2016-12-31 23:57:00    2016-12-31 23:57:00
57736    24068    843    2016-12-31 04:11:00    2016-12-31 04:11:00
57737    24068    640    2016-12-31 22:33:00    2016-12-31 22:33:00
57738    24069    814    2016-12-31 15:05:00    2016-12-31 15:05:00
57739    24069    708    2016-12-31 20:32:00    2016-12-31 20:32:00
57740    24069    626    2016-12-31 07:58:00    2016-12-31 07:58:00
57741    24069    787    2016-12-31 15:03:00    2016-12-31 15:03:00
57742    24069    559    2016-12-31 05:03:00    2016-12-31 05:03:00
57743    24070    493    2016-12-31 22:03:00    2016-12-31 22:03:00
57744    24070    559    2016-12-31 21:58:00    2016-12-31 21:58:00
57745    24070    940    2016-12-31 15:16:00    2016-12-31 15:16:00
57746    24070    611    2016-12-31 16:14:00    2016-12-31 16:14:00
57747    24070    892    2016-12-31 04:21:00    2016-12-31 04:21:00
57748    24071    958    2016-12-31 13:06:00    2016-12-31 13:06:00
57749    24071    892    2016-12-31 08:42:00    2016-12-31 08:42:00
57750    24071    883    2016-12-31 20:28:00    2016-12-31 20:28:00
57751    24071    752    2016-12-31 13:39:00    2016-12-31 13:39:00
57752    24071    739    2016-12-31 04:52:00    2016-12-31 04:52:00
57753    24072    629    2016-12-31 06:33:00    2016-12-31 06:33:00
57754    24072    857    2016-12-31 01:19:00    2016-12-31 01:19:00
57755    24072    500    2016-12-31 03:18:00    2016-12-31 03:18:00
57756    24072    604    2016-12-31 20:56:00    2016-12-31 20:56:00
57757    24072    616    2016-12-31 09:45:00    2016-12-31 09:45:00
57758    24073    713    2016-12-31 06:37:00    2016-12-31 06:37:00
57759    24073    481    2016-12-31 01:46:00    2016-12-31 01:46:00
57760    24073    847    2016-12-31 06:17:00    2016-12-31 06:17:00
57761    24073    738    2016-12-31 08:55:00    2016-12-31 08:55:00
57762    24073    874    2016-12-31 14:32:00    2016-12-31 14:32:00
57763    24074    761    2016-12-31 11:46:00    2016-12-31 11:46:00
57764    24074    592    2016-12-31 07:28:00    2016-12-31 07:28:00
57765    24074    893    2016-12-31 04:13:00    2016-12-31 04:13:00
57766    24074    733    2016-12-31 14:49:00    2016-12-31 14:49:00
57767    24074    474    2016-12-31 01:45:00    2016-12-31 01:45:00
57768    24075    481    2016-12-31 02:12:00    2016-12-31 02:12:00
57769    24075    723    2016-12-31 14:27:00    2016-12-31 14:27:00
57770    24075    468    2016-12-31 10:49:00    2016-12-31 10:49:00
57771    24075    713    2016-12-31 21:30:00    2016-12-31 21:30:00
57772    24075    954    2016-12-31 11:10:00    2016-12-31 11:10:00
57773    24076    949    2016-12-31 13:55:00    2016-12-31 13:55:00
57774    24076    840    2016-12-31 04:32:00    2016-12-31 04:32:00
57775    24076    926    2016-12-31 13:17:00    2016-12-31 13:17:00
57776    24076    672    2016-12-31 23:38:00    2016-12-31 23:38:00
57777    24076    848    2016-12-31 23:24:00    2016-12-31 23:24:00
57778    24077    806    2016-12-31 15:10:00    2016-12-31 15:10:00
57779    24077    668    2016-12-31 22:58:00    2016-12-31 22:58:00
57780    24077    562    2016-12-31 15:02:00    2016-12-31 15:02:00
57781    24077    874    2016-12-31 21:11:00    2016-12-31 21:11:00
57782    24077    561    2016-12-31 15:40:00    2016-12-31 15:40:00
57783    24078    608    2016-12-31 05:55:00    2016-12-31 05:55:00
57784    24078    559    2016-12-31 12:10:00    2016-12-31 12:10:00
57785    24078    644    2016-12-31 15:32:00    2016-12-31 15:32:00
57786    24078    738    2016-12-31 04:47:00    2016-12-31 04:47:00
57787    24078    926    2016-12-31 14:31:00    2016-12-31 14:31:00
57788    24079    960    2016-12-31 15:13:00    2016-12-31 15:13:00
57789    24079    663    2016-12-31 13:19:00    2016-12-31 13:19:00
57790    24079    770    2016-12-31 05:59:00    2016-12-31 05:59:00
57791    24079    818    2016-12-31 09:48:00    2016-12-31 09:48:00
57792    24079    890    2016-12-31 07:41:00    2016-12-31 07:41:00
57793    24080    627    2016-12-31 15:33:00    2016-12-31 15:33:00
57794    24080    571    2016-12-31 14:29:00    2016-12-31 14:29:00
57795    24080    763    2016-12-31 07:00:00    2016-12-31 07:00:00
57796    24080    638    2016-12-31 03:56:00    2016-12-31 03:56:00
57797    24080    780    2016-12-31 07:16:00    2016-12-31 07:16:00
57798    24081    503    2016-12-31 22:09:00    2016-12-31 22:09:00
57799    24081    766    2016-12-31 11:45:00    2016-12-31 11:45:00
57800    24081    800    2016-12-31 23:07:00    2016-12-31 23:07:00
57801    24081    949    2016-12-31 15:50:00    2016-12-31 15:50:00
57802    24081    813    2016-12-31 22:53:00    2016-12-31 22:53:00
57803    24082    960    2016-12-31 02:32:00    2016-12-31 02:32:00
57804    24082    468    2016-12-31 13:49:00    2016-12-31 13:49:00
57805    24082    653    2016-12-31 04:14:00    2016-12-31 04:14:00
57806    24082    529    2016-12-31 22:59:00    2016-12-31 22:59:00
57807    24082    810    2016-12-31 23:49:00    2016-12-31 23:49:00
57808    24083    766    2016-12-31 09:26:00    2016-12-31 09:26:00
57809    24083    636    2016-12-31 06:23:00    2016-12-31 06:23:00
57810    24083    588    2016-12-31 21:05:00    2016-12-31 21:05:00
57811    24083    733    2016-12-31 22:39:00    2016-12-31 22:39:00
57812    24083    464    2016-12-31 19:28:00    2016-12-31 19:28:00
57813    24084    536    2016-12-31 22:20:00    2016-12-31 22:20:00
57814    24084    883    2016-12-31 08:50:00    2016-12-31 08:50:00
57815    24084    628    2016-12-31 10:03:00    2016-12-31 10:03:00
57816    24084    647    2016-12-31 06:19:00    2016-12-31 06:19:00
57817    24084    928    2016-12-31 15:16:00    2016-12-31 15:16:00
57818    24085    664    2016-12-31 04:16:00    2016-12-31 04:16:00
57819    24085    654    2016-12-31 08:55:00    2016-12-31 08:55:00
57820    24085    669    2016-12-31 20:17:00    2016-12-31 20:17:00
57821    24085    603    2016-12-31 10:04:00    2016-12-31 10:04:00
57822    24085    667    2016-12-31 14:53:00    2016-12-31 14:53:00
57823    24086    728    2016-12-31 03:06:00    2016-12-31 03:06:00
57824    24086    556    2016-12-31 16:42:00    2016-12-31 16:42:00
57825    24086    691    2016-12-31 23:27:00    2016-12-31 23:27:00
57826    24086    727    2016-12-31 20:38:00    2016-12-31 20:38:00
57827    24086    498    2016-12-31 01:26:00    2016-12-31 01:26:00
57828    24087    698    2016-12-31 17:34:00    2016-12-31 17:34:00
57829    24087    929    2016-12-31 23:22:00    2016-12-31 23:22:00
57830    24087    511    2016-12-31 10:00:00    2016-12-31 10:00:00
57831    24087    714    2016-12-31 18:02:00    2016-12-31 18:02:00
57832    24087    497    2016-12-31 02:04:00    2016-12-31 02:04:00
57833    24088    839    2016-12-31 22:37:00    2016-12-31 22:37:00
57834    24088    781    2016-12-31 06:02:00    2016-12-31 06:02:00
57835    24088    895    2016-12-31 04:37:00    2016-12-31 04:37:00
57836    24088    801    2016-12-31 03:37:00    2016-12-31 03:37:00
57837    24088    693    2016-12-31 19:14:00    2016-12-31 19:14:00
57838    24089    695    2016-12-31 06:03:00    2016-12-31 06:03:00
57839    24089    784    2016-12-31 19:03:00    2016-12-31 19:03:00
57840    24089    715    2016-12-31 01:11:00    2016-12-31 01:11:00
57841    24089    529    2016-12-31 08:13:00    2016-12-31 08:13:00
57842    24089    678    2016-12-31 13:43:00    2016-12-31 13:43:00
57843    24090    789    2016-12-31 22:42:00    2016-12-31 22:42:00
57844    24090    795    2016-12-31 07:22:00    2016-12-31 07:22:00
57845    24090    667    2016-12-31 05:24:00    2016-12-31 05:24:00
57846    24090    697    2016-12-31 23:45:00    2016-12-31 23:45:00
57847    24090    795    2016-12-31 23:00:00    2016-12-31 23:00:00
57848    24091    864    2016-12-31 18:37:00    2016-12-31 18:37:00
57849    24091    518    2016-12-31 15:02:00    2016-12-31 15:02:00
57850    24091    960    2016-12-31 08:57:00    2016-12-31 08:57:00
57851    24091    905    2016-12-31 21:24:00    2016-12-31 21:24:00
57852    24091    660    2016-12-31 22:35:00    2016-12-31 22:35:00
57853    24092    613    2016-12-31 19:04:00    2016-12-31 19:04:00
57854    24092    610    2016-12-31 12:14:00    2016-12-31 12:14:00
57855    24092    591    2016-12-31 12:47:00    2016-12-31 12:47:00
57856    24092    714    2016-12-31 21:10:00    2016-12-31 21:10:00
57857    24092    881    2016-12-31 15:15:00    2016-12-31 15:15:00
57858    24093    749    2016-12-31 09:30:00    2016-12-31 09:30:00
57859    24093    835    2016-12-31 06:47:00    2016-12-31 06:47:00
57860    24093    503    2016-12-31 15:02:00    2016-12-31 15:02:00
57861    24093    550    2016-12-31 13:19:00    2016-12-31 13:19:00
57862    24093    529    2016-12-31 03:01:00    2016-12-31 03:01:00
57863    24094    844    2016-12-31 16:35:00    2016-12-31 16:35:00
57864    24094    810    2016-12-31 23:41:00    2016-12-31 23:41:00
57865    24094    721    2016-12-31 04:00:00    2016-12-31 04:00:00
57866    24094    522    2016-12-31 04:21:00    2016-12-31 04:21:00
57867    24094    612    2016-12-31 02:24:00    2016-12-31 02:24:00
57868    24095    474    2016-12-31 16:16:00    2016-12-31 16:16:00
57869    24095    866    2016-12-31 15:47:00    2016-12-31 15:47:00
57870    24095    808    2016-12-31 12:39:00    2016-12-31 12:39:00
57871    24095    850    2016-12-31 05:42:00    2016-12-31 05:42:00
57872    24095    887    2016-12-31 10:53:00    2016-12-31 10:53:00
57873    24096    632    2016-12-31 22:50:00    2016-12-31 22:50:00
57874    24096    877    2016-12-31 06:38:00    2016-12-31 06:38:00
57875    24096    624    2016-12-31 19:02:00    2016-12-31 19:02:00
57876    24096    857    2016-12-31 05:33:00    2016-12-31 05:33:00
57877    24096    587    2016-12-31 03:07:00    2016-12-31 03:07:00
57878    24097    489    2016-12-31 13:00:00    2016-12-31 13:00:00
57879    24097    712    2016-12-31 05:26:00    2016-12-31 05:26:00
57880    24097    716    2016-12-31 02:11:00    2016-12-31 02:11:00
57881    24097    710    2016-12-31 15:44:00    2016-12-31 15:44:00
57882    24097    508    2016-12-31 03:00:00    2016-12-31 03:00:00
57883    24098    604    2016-12-31 17:15:00    2016-12-31 17:15:00
57884    24098    872    2016-12-31 15:00:00    2016-12-31 15:00:00
57885    24098    895    2016-12-31 16:40:00    2016-12-31 16:40:00
57886    24098    506    2016-12-31 20:00:00    2016-12-31 20:00:00
57887    24098    881    2016-12-31 11:02:00    2016-12-31 11:02:00
57888    24099    553    2016-12-31 02:33:00    2016-12-31 02:33:00
57889    24099    834    2016-12-31 22:13:00    2016-12-31 22:13:00
57890    24099    588    2016-12-31 05:04:00    2016-12-31 05:04:00
57891    24099    537    2016-12-31 11:13:00    2016-12-31 11:13:00
57892    24099    508    2016-12-31 12:49:00    2016-12-31 12:49:00
57893    24100    575    2016-12-31 04:22:00    2016-12-31 04:22:00
57894    24100    806    2016-12-31 04:52:00    2016-12-31 04:52:00
57895    24100    797    2016-12-31 05:38:00    2016-12-31 05:38:00
57896    24100    646    2016-12-31 18:45:00    2016-12-31 18:45:00
57897    24100    724    2016-12-31 13:16:00    2016-12-31 13:16:00
57898    24101    527    2016-12-31 17:51:00    2016-12-31 17:51:00
57899    24101    496    2016-12-31 18:05:00    2016-12-31 18:05:00
57900    24101    600    2016-12-31 11:00:00    2016-12-31 11:00:00
57901    24101    469    2016-12-31 22:05:00    2016-12-31 22:05:00
57902    24101    900    2016-12-31 13:55:00    2016-12-31 13:55:00
57903    24102    539    2016-12-31 07:09:00    2016-12-31 07:09:00
57904    24102    710    2016-12-31 23:21:00    2016-12-31 23:21:00
57905    24102    856    2016-12-31 12:23:00    2016-12-31 12:23:00
57906    24102    750    2016-12-31 11:03:00    2016-12-31 11:03:00
57907    24102    800    2016-12-31 04:37:00    2016-12-31 04:37:00
57908    24103    700    2016-12-31 19:38:00    2016-12-31 19:38:00
57909    24103    846    2016-12-31 08:06:00    2016-12-31 08:06:00
57910    24103    515    2016-12-31 05:22:00    2016-12-31 05:22:00
57911    24103    802    2016-12-31 18:03:00    2016-12-31 18:03:00
57912    24103    522    2016-12-31 12:33:00    2016-12-31 12:33:00
57913    24104    931    2016-12-31 14:39:00    2016-12-31 14:39:00
57914    24104    483    2016-12-31 12:47:00    2016-12-31 12:47:00
57915    24104    881    2016-12-31 12:26:00    2016-12-31 12:26:00
57916    24104    940    2016-12-31 23:54:00    2016-12-31 23:54:00
57917    24104    817    2016-12-31 19:55:00    2016-12-31 19:55:00
57918    24105    477    2016-12-31 05:04:00    2016-12-31 05:04:00
57919    24105    838    2016-12-31 20:54:00    2016-12-31 20:54:00
57920    24105    742    2016-12-31 01:24:00    2016-12-31 01:24:00
57921    24105    859    2016-12-31 17:32:00    2016-12-31 17:32:00
57922    24105    576    2016-12-31 08:21:00    2016-12-31 08:21:00
57923    24106    868    2016-12-31 07:40:00    2016-12-31 07:40:00
57924    24106    669    2016-12-31 08:57:00    2016-12-31 08:57:00
57925    24106    934    2016-12-31 19:18:00    2016-12-31 19:18:00
57926    24106    719    2016-12-31 22:54:00    2016-12-31 22:54:00
57927    24106    593    2016-12-31 07:56:00    2016-12-31 07:56:00
57928    24107    662    2016-12-31 07:25:00    2016-12-31 07:25:00
57929    24107    631    2016-12-31 23:52:00    2016-12-31 23:52:00
57930    24107    484    2016-12-31 12:12:00    2016-12-31 12:12:00
57931    24107    729    2016-12-31 12:55:00    2016-12-31 12:55:00
57932    24107    535    2016-12-31 22:08:00    2016-12-31 22:08:00
57933    24108    871    2016-12-31 04:32:00    2016-12-31 04:32:00
57934    24108    925    2016-12-31 14:36:00    2016-12-31 14:36:00
57935    24108    468    2016-12-31 13:34:00    2016-12-31 13:34:00
57936    24108    495    2016-12-31 08:47:00    2016-12-31 08:47:00
57937    24108    870    2016-12-31 04:54:00    2016-12-31 04:54:00
57938    24109    908    2016-12-31 08:19:00    2016-12-31 08:19:00
57939    24109    918    2016-12-31 20:40:00    2016-12-31 20:40:00
57940    24109    860    2016-12-31 10:57:00    2016-12-31 10:57:00
57941    24109    907    2016-12-31 23:31:00    2016-12-31 23:31:00
57942    24109    769    2016-12-31 19:51:00    2016-12-31 19:51:00
57943    24110    767    2016-12-31 10:14:00    2016-12-31 10:14:00
57944    24110    614    2016-12-31 07:11:00    2016-12-31 07:11:00
57945    24110    509    2016-12-31 13:52:00    2016-12-31 13:52:00
57946    24110    946    2016-12-31 04:50:00    2016-12-31 04:50:00
57947    24110    671    2016-12-31 14:42:00    2016-12-31 14:42:00
57948    24111    573    2016-12-31 01:31:00    2016-12-31 01:31:00
57949    24111    914    2016-12-31 10:17:00    2016-12-31 10:17:00
57950    24111    725    2016-12-31 05:37:00    2016-12-31 05:37:00
57951    24111    840    2016-12-31 06:04:00    2016-12-31 06:04:00
57952    24111    477    2016-12-31 09:55:00    2016-12-31 09:55:00
57953    24112    761    2017-01-01 21:15:00    2017-01-01 21:15:00
57954    24112    608    2017-01-01 16:14:00    2017-01-01 16:14:00
57955    24112    504    2017-01-01 01:00:00    2017-01-01 01:00:00
57956    24112    495    2017-01-01 20:11:00    2017-01-01 20:11:00
57957    24112    538    2017-01-01 10:29:00    2017-01-01 10:29:00
57958    24113    899    2017-01-01 04:04:00    2017-01-01 04:04:00
57959    24113    505    2017-01-01 18:32:00    2017-01-01 18:32:00
57960    24113    924    2017-01-01 02:19:00    2017-01-01 02:19:00
57961    24113    587    2017-01-01 10:07:00    2017-01-01 10:07:00
57962    24113    759    2017-01-01 17:13:00    2017-01-01 17:13:00
57963    24114    479    2017-01-01 18:41:00    2017-01-01 18:41:00
57964    24114    534    2017-01-01 06:42:00    2017-01-01 06:42:00
57965    24114    791    2017-01-01 19:44:00    2017-01-01 19:44:00
57966    24114    914    2017-01-01 07:55:00    2017-01-01 07:55:00
57967    24114    657    2017-01-01 10:27:00    2017-01-01 10:27:00
57968    24115    826    2017-01-01 22:59:00    2017-01-01 22:59:00
57969    24115    801    2017-01-01 14:28:00    2017-01-01 14:28:00
57970    24115    884    2017-01-01 18:10:00    2017-01-01 18:10:00
57971    24115    753    2017-01-01 14:33:00    2017-01-01 14:33:00
57972    24115    680    2017-01-01 03:29:00    2017-01-01 03:29:00
57973    24116    893    2017-01-01 16:00:00    2017-01-01 16:00:00
57974    24116    901    2017-01-01 06:47:00    2017-01-01 06:47:00
57975    24116    500    2017-01-01 11:46:00    2017-01-01 11:46:00
57976    24116    853    2017-01-01 20:57:00    2017-01-01 20:57:00
57977    24116    531    2017-01-01 03:38:00    2017-01-01 03:38:00
57978    24117    578    2017-01-01 01:07:00    2017-01-01 01:07:00
57979    24117    545    2017-01-01 10:47:00    2017-01-01 10:47:00
57980    24117    897    2017-01-01 19:22:00    2017-01-01 19:22:00
57981    24117    940    2017-01-01 07:26:00    2017-01-01 07:26:00
57982    24117    669    2017-01-01 18:30:00    2017-01-01 18:30:00
57983    24118    958    2017-01-01 07:27:00    2017-01-01 07:27:00
57984    24118    566    2017-01-01 09:05:00    2017-01-01 09:05:00
57985    24118    785    2017-01-01 03:03:00    2017-01-01 03:03:00
57986    24118    875    2017-01-01 02:32:00    2017-01-01 02:32:00
57987    24118    470    2017-01-01 03:10:00    2017-01-01 03:10:00
57988    24119    744    2017-01-01 06:14:00    2017-01-01 06:14:00
57989    24119    470    2017-01-01 14:52:00    2017-01-01 14:52:00
57990    24119    943    2017-01-01 06:16:00    2017-01-01 06:16:00
57991    24119    528    2017-01-01 02:11:00    2017-01-01 02:11:00
57992    24119    507    2017-01-01 07:14:00    2017-01-01 07:14:00
57993    24120    572    2017-01-01 14:25:00    2017-01-01 14:25:00
57994    24120    764    2017-01-01 12:01:00    2017-01-01 12:01:00
57995    24120    613    2017-01-01 20:19:00    2017-01-01 20:19:00
57996    24120    471    2017-01-01 21:32:00    2017-01-01 21:32:00
57997    24120    484    2017-01-01 05:23:00    2017-01-01 05:23:00
57998    24121    512    2017-01-01 01:01:00    2017-01-01 01:01:00
57999    24121    469    2017-01-01 13:54:00    2017-01-01 13:54:00
58000    24121    487    2017-01-01 20:50:00    2017-01-01 20:50:00
58001    24121    469    2017-01-01 13:39:00    2017-01-01 13:39:00
58002    24121    565    2017-01-01 18:10:00    2017-01-01 18:10:00
58003    24122    595    2017-01-01 20:08:00    2017-01-01 20:08:00
58004    24122    563    2017-01-01 11:45:00    2017-01-01 11:45:00
58005    24122    938    2017-01-01 04:30:00    2017-01-01 04:30:00
58006    24122    695    2017-01-01 05:41:00    2017-01-01 05:41:00
58007    24122    608    2017-01-01 22:36:00    2017-01-01 22:36:00
58008    24123    784    2017-01-01 14:19:00    2017-01-01 14:19:00
58009    24123    895    2017-01-01 07:19:00    2017-01-01 07:19:00
58010    24123    482    2017-01-01 23:29:00    2017-01-01 23:29:00
58011    24123    581    2017-01-01 11:00:00    2017-01-01 11:00:00
58012    24123    834    2017-01-01 12:22:00    2017-01-01 12:22:00
58013    24124    814    2017-01-01 14:24:00    2017-01-01 14:24:00
58014    24124    475    2017-01-01 04:00:00    2017-01-01 04:00:00
58015    24124    945    2017-01-01 12:12:00    2017-01-01 12:12:00
58016    24124    853    2017-01-01 11:08:00    2017-01-01 11:08:00
58017    24124    735    2017-01-01 11:23:00    2017-01-01 11:23:00
58018    24125    500    2017-01-01 03:11:00    2017-01-01 03:11:00
58019    24125    610    2017-01-01 09:27:00    2017-01-01 09:27:00
58020    24125    728    2017-01-01 17:40:00    2017-01-01 17:40:00
58021    24125    955    2017-01-01 15:54:00    2017-01-01 15:54:00
58022    24125    811    2017-01-01 23:13:00    2017-01-01 23:13:00
58023    24126    776    2017-01-01 04:22:00    2017-01-01 04:22:00
58024    24126    481    2017-01-01 19:44:00    2017-01-01 19:44:00
58025    24126    883    2017-01-01 23:35:00    2017-01-01 23:35:00
58026    24126    623    2017-01-01 04:49:00    2017-01-01 04:49:00
58027    24126    739    2017-01-01 14:54:00    2017-01-01 14:54:00
58028    24127    952    2017-01-01 11:24:00    2017-01-01 11:24:00
58029    24127    667    2017-01-01 03:30:00    2017-01-01 03:30:00
58030    24127    812    2017-01-01 01:13:00    2017-01-01 01:13:00
58031    24127    712    2017-01-01 09:22:00    2017-01-01 09:22:00
58032    24127    599    2017-01-01 15:00:00    2017-01-01 15:00:00
58033    24128    681    2017-01-01 04:22:00    2017-01-01 04:22:00
58034    24128    534    2017-01-01 22:30:00    2017-01-01 22:30:00
58035    24128    782    2017-01-01 06:54:00    2017-01-01 06:54:00
58036    24128    772    2017-01-01 07:53:00    2017-01-01 07:53:00
58037    24128    530    2017-01-01 01:41:00    2017-01-01 01:41:00
58038    24129    493    2017-01-01 19:35:00    2017-01-01 19:35:00
58039    24129    623    2017-01-01 05:23:00    2017-01-01 05:23:00
58040    24129    638    2017-01-01 17:53:00    2017-01-01 17:53:00
58041    24129    647    2017-01-01 07:34:00    2017-01-01 07:34:00
58042    24129    515    2017-01-01 07:26:00    2017-01-01 07:26:00
58043    24130    582    2017-01-01 19:40:00    2017-01-01 19:40:00
58044    24130    823    2017-01-01 06:29:00    2017-01-01 06:29:00
58045    24130    674    2017-01-01 10:06:00    2017-01-01 10:06:00
58046    24130    500    2017-01-01 16:02:00    2017-01-01 16:02:00
58047    24130    516    2017-01-01 13:34:00    2017-01-01 13:34:00
58048    24131    505    2017-01-01 08:39:00    2017-01-01 08:39:00
58049    24131    681    2017-01-01 02:49:00    2017-01-01 02:49:00
58050    24131    555    2017-01-01 16:50:00    2017-01-01 16:50:00
58051    24131    791    2017-01-01 12:13:00    2017-01-01 12:13:00
58052    24131    678    2017-01-01 02:56:00    2017-01-01 02:56:00
58053    24132    849    2017-01-01 23:56:00    2017-01-01 23:56:00
58054    24132    564    2017-01-01 09:16:00    2017-01-01 09:16:00
58055    24132    678    2017-01-01 10:35:00    2017-01-01 10:35:00
58056    24132    919    2017-01-01 05:36:00    2017-01-01 05:36:00
58057    24132    627    2017-01-01 08:24:00    2017-01-01 08:24:00
58058    24133    924    2017-01-01 14:55:00    2017-01-01 14:55:00
58059    24133    636    2017-01-01 06:15:00    2017-01-01 06:15:00
58060    24133    775    2017-01-01 22:37:00    2017-01-01 22:37:00
58061    24133    938    2017-01-01 02:36:00    2017-01-01 02:36:00
58062    24133    777    2017-01-01 12:33:00    2017-01-01 12:33:00
58063    24134    468    2017-01-01 16:36:00    2017-01-01 16:36:00
58064    24134    522    2017-01-01 09:38:00    2017-01-01 09:38:00
58065    24134    699    2017-01-01 23:52:00    2017-01-01 23:52:00
58066    24134    660    2017-01-01 23:54:00    2017-01-01 23:54:00
58067    24134    822    2017-01-01 01:50:00    2017-01-01 01:50:00
58068    24135    595    2017-01-01 15:07:00    2017-01-01 15:07:00
58069    24135    708    2017-01-01 05:04:00    2017-01-01 05:04:00
58070    24135    535    2017-01-01 01:50:00    2017-01-01 01:50:00
58071    24135    586    2017-01-01 21:57:00    2017-01-01 21:57:00
58072    24135    687    2017-01-01 22:07:00    2017-01-01 22:07:00
58073    24136    806    2017-01-01 17:53:00    2017-01-01 17:53:00
58074    24136    690    2017-01-01 11:10:00    2017-01-01 11:10:00
58075    24136    555    2017-01-01 01:21:00    2017-01-01 01:21:00
58076    24136    579    2017-01-01 15:39:00    2017-01-01 15:39:00
58077    24136    938    2017-01-01 05:50:00    2017-01-01 05:50:00
58078    24137    612    2017-01-01 12:50:00    2017-01-01 12:50:00
58079    24137    723    2017-01-01 01:32:00    2017-01-01 01:32:00
58080    24137    548    2017-01-01 03:11:00    2017-01-01 03:11:00
58081    24137    505    2017-01-01 03:37:00    2017-01-01 03:37:00
58082    24137    792    2017-01-01 21:36:00    2017-01-01 21:36:00
58083    24138    483    2017-01-01 12:18:00    2017-01-01 12:18:00
58084    24138    665    2017-01-01 02:04:00    2017-01-01 02:04:00
58085    24138    933    2017-01-01 04:05:00    2017-01-01 04:05:00
58086    24138    914    2017-01-01 21:21:00    2017-01-01 21:21:00
58087    24138    534    2017-01-01 03:28:00    2017-01-01 03:28:00
58088    24139    536    2017-01-01 15:15:00    2017-01-01 15:15:00
58089    24139    474    2017-01-01 19:17:00    2017-01-01 19:17:00
58090    24139    696    2017-01-01 08:44:00    2017-01-01 08:44:00
58091    24139    717    2017-01-01 08:48:00    2017-01-01 08:48:00
58092    24139    880    2017-01-01 13:58:00    2017-01-01 13:58:00
58093    24140    816    2017-01-01 10:24:00    2017-01-01 10:24:00
58094    24140    841    2017-01-01 22:29:00    2017-01-01 22:29:00
58095    24140    823    2017-01-01 21:01:00    2017-01-01 21:01:00
58096    24140    559    2017-01-01 08:12:00    2017-01-01 08:12:00
58097    24140    680    2017-01-01 09:08:00    2017-01-01 09:08:00
58098    24141    706    2017-01-01 14:13:00    2017-01-01 14:13:00
58099    24141    524    2017-01-01 08:21:00    2017-01-01 08:21:00
58100    24141    733    2017-01-01 12:30:00    2017-01-01 12:30:00
58101    24141    827    2017-01-01 07:21:00    2017-01-01 07:21:00
58102    24141    845    2017-01-01 20:47:00    2017-01-01 20:47:00
58103    24142    589    2017-01-01 02:13:00    2017-01-01 02:13:00
58104    24142    920    2017-01-01 05:29:00    2017-01-01 05:29:00
58105    24142    713    2017-01-01 17:20:00    2017-01-01 17:20:00
58106    24142    939    2017-01-01 03:20:00    2017-01-01 03:20:00
58107    24142    646    2017-01-01 19:12:00    2017-01-01 19:12:00
58108    24143    802    2017-01-01 11:07:00    2017-01-01 11:07:00
58109    24143    561    2017-01-01 22:02:00    2017-01-01 22:02:00
58110    24143    959    2017-01-01 09:54:00    2017-01-01 09:54:00
58111    24143    825    2017-01-01 06:47:00    2017-01-01 06:47:00
58112    24143    881    2017-01-01 18:30:00    2017-01-01 18:30:00
58113    24144    876    2017-01-01 12:55:00    2017-01-01 12:55:00
58114    24144    690    2017-01-01 22:00:00    2017-01-01 22:00:00
58115    24144    653    2017-01-01 05:28:00    2017-01-01 05:28:00
58116    24144    605    2017-01-01 07:30:00    2017-01-01 07:30:00
58117    24144    711    2017-01-01 20:59:00    2017-01-01 20:59:00
58118    24145    609    2017-01-01 04:20:00    2017-01-01 04:20:00
58119    24145    489    2017-01-01 04:01:00    2017-01-01 04:01:00
58120    24145    556    2017-01-01 19:04:00    2017-01-01 19:04:00
58121    24145    529    2017-01-01 05:11:00    2017-01-01 05:11:00
58122    24145    865    2017-01-01 03:49:00    2017-01-01 03:49:00
58123    24146    724    2017-01-01 13:13:00    2017-01-01 13:13:00
58124    24146    694    2017-01-01 08:15:00    2017-01-01 08:15:00
58125    24146    823    2017-01-01 05:59:00    2017-01-01 05:59:00
58126    24146    650    2017-01-01 15:09:00    2017-01-01 15:09:00
58127    24146    559    2017-01-01 13:53:00    2017-01-01 13:53:00
58128    24147    933    2017-01-01 06:12:00    2017-01-01 06:12:00
58129    24147    910    2017-01-01 16:33:00    2017-01-01 16:33:00
58130    24147    742    2017-01-01 05:37:00    2017-01-01 05:37:00
58131    24147    954    2017-01-01 12:30:00    2017-01-01 12:30:00
58132    24147    616    2017-01-01 09:31:00    2017-01-01 09:31:00
58133    24148    501    2017-01-01 21:57:00    2017-01-01 21:57:00
58134    24148    890    2017-01-01 03:29:00    2017-01-01 03:29:00
58135    24148    706    2017-01-01 13:36:00    2017-01-01 13:36:00
58136    24148    922    2017-01-01 03:39:00    2017-01-01 03:39:00
58137    24148    823    2017-01-01 01:12:00    2017-01-01 01:12:00
58138    24149    721    2017-01-01 12:10:00    2017-01-01 12:10:00
58139    24149    743    2017-01-01 04:00:00    2017-01-01 04:00:00
58140    24149    697    2017-01-01 11:26:00    2017-01-01 11:26:00
58141    24149    904    2017-01-01 19:56:00    2017-01-01 19:56:00
58142    24149    812    2017-01-01 12:12:00    2017-01-01 12:12:00
58143    24150    876    2017-01-01 06:55:00    2017-01-01 06:55:00
58144    24150    583    2017-01-01 10:19:00    2017-01-01 10:19:00
58145    24150    886    2017-01-01 15:57:00    2017-01-01 15:57:00
58146    24150    730    2017-01-01 22:32:00    2017-01-01 22:32:00
58147    24150    643    2017-01-01 17:10:00    2017-01-01 17:10:00
58148    24151    933    2017-01-01 01:27:00    2017-01-01 01:27:00
58149    24151    929    2017-01-01 21:04:00    2017-01-01 21:04:00
58150    24151    871    2017-01-01 21:07:00    2017-01-01 21:07:00
58151    24151    504    2017-01-01 09:09:00    2017-01-01 09:09:00
58152    24151    752    2017-01-01 08:03:00    2017-01-01 08:03:00
58153    24152    810    2017-01-01 20:52:00    2017-01-01 20:52:00
58154    24152    756    2017-01-01 05:28:00    2017-01-01 05:28:00
58155    24152    508    2017-01-01 09:23:00    2017-01-01 09:23:00
58156    24152    514    2017-01-01 04:43:00    2017-01-01 04:43:00
58157    24152    512    2017-01-01 18:55:00    2017-01-01 18:55:00
58158    24153    754    2017-01-01 19:17:00    2017-01-01 19:17:00
58159    24153    502    2017-01-01 15:30:00    2017-01-01 15:30:00
58160    24153    632    2017-01-01 14:56:00    2017-01-01 14:56:00
58161    24153    777    2017-01-01 13:53:00    2017-01-01 13:53:00
58162    24153    903    2017-01-01 07:40:00    2017-01-01 07:40:00
58163    24154    842    2017-01-01 16:46:00    2017-01-01 16:46:00
58164    24154    711    2017-01-01 19:48:00    2017-01-01 19:48:00
58165    24154    658    2017-01-01 18:56:00    2017-01-01 18:56:00
58166    24154    602    2017-01-01 12:07:00    2017-01-01 12:07:00
58167    24154    692    2017-01-01 01:21:00    2017-01-01 01:21:00
58168    24155    644    2017-01-01 15:42:00    2017-01-01 15:42:00
58169    24155    845    2017-01-01 05:58:00    2017-01-01 05:58:00
58170    24155    504    2017-01-01 12:23:00    2017-01-01 12:23:00
58171    24155    890    2017-01-01 01:57:00    2017-01-01 01:57:00
58172    24155    932    2017-01-01 11:46:00    2017-01-01 11:46:00
58173    24156    576    2017-01-01 17:40:00    2017-01-01 17:40:00
58174    24156    824    2017-01-01 02:41:00    2017-01-01 02:41:00
58175    24156    925    2017-01-01 16:49:00    2017-01-01 16:49:00
58176    24156    666    2017-01-01 13:27:00    2017-01-01 13:27:00
58177    24156    951    2017-01-01 02:02:00    2017-01-01 02:02:00
58178    24157    473    2017-01-01 11:56:00    2017-01-01 11:56:00
58179    24157    533    2017-01-01 20:38:00    2017-01-01 20:38:00
58180    24157    863    2017-01-01 13:15:00    2017-01-01 13:15:00
58181    24157    782    2017-01-01 11:48:00    2017-01-01 11:48:00
58182    24157    806    2017-01-01 22:54:00    2017-01-01 22:54:00
58183    24158    959    2017-01-01 12:14:00    2017-01-01 12:14:00
58184    24158    498    2017-01-01 01:07:00    2017-01-01 01:07:00
58185    24158    648    2017-01-01 21:55:00    2017-01-01 21:55:00
58186    24158    641    2017-01-01 04:17:00    2017-01-01 04:17:00
58187    24158    848    2017-01-01 23:40:00    2017-01-01 23:40:00
58188    24159    933    2017-01-01 07:22:00    2017-01-01 07:22:00
58189    24159    931    2017-01-01 17:18:00    2017-01-01 17:18:00
58190    24159    547    2017-01-01 20:00:00    2017-01-01 20:00:00
58191    24159    563    2017-01-01 03:10:00    2017-01-01 03:10:00
58192    24159    764    2017-01-01 15:11:00    2017-01-01 15:11:00
58193    24160    548    2017-01-01 07:51:00    2017-01-01 07:51:00
58194    24160    594    2017-01-01 05:39:00    2017-01-01 05:39:00
58195    24160    954    2017-01-01 06:58:00    2017-01-01 06:58:00
58196    24160    546    2017-01-01 17:58:00    2017-01-01 17:58:00
58197    24160    838    2017-01-01 02:13:00    2017-01-01 02:13:00
58198    24161    597    2017-01-01 07:15:00    2017-01-01 07:15:00
58199    24161    846    2017-01-01 19:38:00    2017-01-01 19:38:00
58200    24161    481    2017-01-01 22:32:00    2017-01-01 22:32:00
58201    24161    880    2017-01-01 22:59:00    2017-01-01 22:59:00
58202    24161    472    2017-01-01 10:09:00    2017-01-01 10:09:00
58203    24162    677    2017-01-01 04:20:00    2017-01-01 04:20:00
58204    24162    643    2017-01-01 03:31:00    2017-01-01 03:31:00
58205    24162    786    2017-01-01 11:55:00    2017-01-01 11:55:00
58206    24162    757    2017-01-01 03:02:00    2017-01-01 03:02:00
58207    24162    472    2017-01-01 03:15:00    2017-01-01 03:15:00
58208    24163    622    2017-01-01 02:07:00    2017-01-01 02:07:00
58209    24163    866    2017-01-01 06:35:00    2017-01-01 06:35:00
58210    24163    619    2017-01-01 10:37:00    2017-01-01 10:37:00
58211    24163    933    2017-01-01 09:00:00    2017-01-01 09:00:00
58212    24163    807    2017-01-01 17:08:00    2017-01-01 17:08:00
58213    24164    913    2017-01-01 09:14:00    2017-01-01 09:14:00
58214    24164    713    2017-01-01 15:10:00    2017-01-01 15:10:00
58215    24164    530    2017-01-01 20:31:00    2017-01-01 20:31:00
58216    24164    811    2017-01-01 13:20:00    2017-01-01 13:20:00
58217    24164    817    2017-01-01 21:05:00    2017-01-01 21:05:00
58218    24165    581    2017-01-01 22:02:00    2017-01-01 22:02:00
58219    24165    916    2017-01-01 10:59:00    2017-01-01 10:59:00
58220    24165    669    2017-01-01 10:02:00    2017-01-01 10:02:00
58221    24165    476    2017-01-01 15:56:00    2017-01-01 15:56:00
58222    24165    942    2017-01-01 09:42:00    2017-01-01 09:42:00
58223    24166    510    2017-01-01 11:52:00    2017-01-01 11:52:00
58224    24166    849    2017-01-01 21:08:00    2017-01-01 21:08:00
58225    24166    639    2017-01-01 06:45:00    2017-01-01 06:45:00
58226    24166    548    2017-01-01 11:46:00    2017-01-01 11:46:00
58227    24166    690    2017-01-01 17:04:00    2017-01-01 17:04:00
58228    24167    604    2017-01-01 03:04:00    2017-01-01 03:04:00
58229    24167    702    2017-01-01 20:37:00    2017-01-01 20:37:00
58230    24167    497    2017-01-01 16:08:00    2017-01-01 16:08:00
58232    24167    494    2017-01-01 23:55:00    2017-01-01 23:55:00
58231    \N    631    2017-01-01 20:59:00    2017-01-01 20:59:00
58233    24168    854    2017-01-02 01:50:00    2017-01-02 01:50:00
58234    24168    736    2017-01-02 23:34:00    2017-01-02 23:34:00
58235    24168    705    2017-01-02 16:32:00    2017-01-02 16:32:00
58236    24168    775    2017-01-02 19:59:00    2017-01-02 19:59:00
58237    24168    937    2017-01-02 10:09:00    2017-01-02 10:09:00
58238    24169    718    2017-01-02 04:29:00    2017-01-02 04:29:00
58239    24169    603    2017-01-02 07:27:00    2017-01-02 07:27:00
58240    24169    506    2017-01-02 01:23:00    2017-01-02 01:23:00
58241    24169    605    2017-01-02 14:52:00    2017-01-02 14:52:00
58242    24169    771    2017-01-02 10:34:00    2017-01-02 10:34:00
58243    24170    534    2017-01-02 20:03:00    2017-01-02 20:03:00
58244    24170    959    2017-01-02 20:52:00    2017-01-02 20:52:00
58245    24170    714    2017-01-02 20:29:00    2017-01-02 20:29:00
58246    24170    649    2017-01-02 05:55:00    2017-01-02 05:55:00
58247    24170    728    2017-01-02 18:39:00    2017-01-02 18:39:00
58248    24171    899    2017-01-02 16:31:00    2017-01-02 16:31:00
58249    24171    638    2017-01-02 11:37:00    2017-01-02 11:37:00
58250    24171    491    2017-01-02 12:21:00    2017-01-02 12:21:00
58251    24171    844    2017-01-02 07:05:00    2017-01-02 07:05:00
58252    24171    531    2017-01-02 16:30:00    2017-01-02 16:30:00
58253    24172    634    2017-01-02 09:35:00    2017-01-02 09:35:00
58254    24172    787    2017-01-02 07:06:00    2017-01-02 07:06:00
58255    24172    512    2017-01-02 07:54:00    2017-01-02 07:54:00
58256    24172    626    2017-01-02 06:18:00    2017-01-02 06:18:00
58257    24172    719    2017-01-02 14:39:00    2017-01-02 14:39:00
58258    24173    508    2017-01-02 11:24:00    2017-01-02 11:24:00
58259    24173    808    2017-01-02 09:17:00    2017-01-02 09:17:00
58260    24173    834    2017-01-02 08:52:00    2017-01-02 08:52:00
58261    24173    675    2017-01-02 06:28:00    2017-01-02 06:28:00
58262    24173    712    2017-01-02 07:27:00    2017-01-02 07:27:00
58263    24174    945    2017-01-02 16:24:00    2017-01-02 16:24:00
58264    24174    660    2017-01-02 23:39:00    2017-01-02 23:39:00
58265    24174    677    2017-01-02 15:07:00    2017-01-02 15:07:00
58266    24174    833    2017-01-02 02:43:00    2017-01-02 02:43:00
58267    24174    583    2017-01-02 12:41:00    2017-01-02 12:41:00
58268    24175    549    2017-01-02 12:13:00    2017-01-02 12:13:00
58269    24175    693    2017-01-02 08:12:00    2017-01-02 08:12:00
58270    24175    477    2017-01-02 02:19:00    2017-01-02 02:19:00
58271    24175    858    2017-01-02 03:55:00    2017-01-02 03:55:00
58272    24175    853    2017-01-02 08:58:00    2017-01-02 08:58:00
58273    24176    919    2017-01-02 12:32:00    2017-01-02 12:32:00
58274    24176    577    2017-01-02 21:11:00    2017-01-02 21:11:00
58275    24176    674    2017-01-02 01:38:00    2017-01-02 01:38:00
58276    24176    826    2017-01-02 18:09:00    2017-01-02 18:09:00
58277    24176    691    2017-01-02 21:38:00    2017-01-02 21:38:00
58278    24177    806    2017-01-02 08:12:00    2017-01-02 08:12:00
58279    24177    728    2017-01-02 06:40:00    2017-01-02 06:40:00
58280    24177    844    2017-01-02 07:58:00    2017-01-02 07:58:00
58281    24177    841    2017-01-02 09:43:00    2017-01-02 09:43:00
58282    24177    842    2017-01-02 11:35:00    2017-01-02 11:35:00
58283    24178    815    2017-01-02 18:13:00    2017-01-02 18:13:00
58284    24178    912    2017-01-02 20:42:00    2017-01-02 20:42:00
58285    24178    788    2017-01-02 03:17:00    2017-01-02 03:17:00
58286    24178    901    2017-01-02 22:23:00    2017-01-02 22:23:00
58287    24178    782    2017-01-02 01:38:00    2017-01-02 01:38:00
56329    23787    \N    2016-12-26 10:02:00    2016-12-26 10:02:00
58288    24179    521    2017-01-03 13:59:00    2017-01-03 13:59:00
58289    24179    871    2017-01-03 02:53:00    2017-01-03 02:53:00
58290    24179    760    2017-01-03 15:25:00    2017-01-03 15:25:00
58291    24179    606    2017-01-03 13:14:00    2017-01-03 13:14:00
58292    24179    474    2017-01-03 13:06:00    2017-01-03 13:06:00
58293    24180    851    2017-01-03 12:06:00    2017-01-03 12:06:00
58294    24180    718    2017-01-03 03:17:00    2017-01-03 03:17:00
58295    24180    849    2017-01-03 23:03:00    2017-01-03 23:03:00
58296    24180    463    2017-01-03 16:03:00    2017-01-03 16:03:00
58297    24180    806    2017-01-03 22:10:00    2017-01-03 22:10:00
58298    24181    608    2017-01-03 02:44:00    2017-01-03 02:44:00
58299    24181    933    2017-01-03 19:59:00    2017-01-03 19:59:00
58300    24181    539    2017-01-03 23:08:00    2017-01-03 23:08:00
58301    24181    533    2017-01-03 08:12:00    2017-01-03 08:12:00
58302    24181    850    2017-01-03 19:02:00    2017-01-03 19:02:00
58303    24182    663    2017-01-03 02:47:00    2017-01-03 02:47:00
58304    24182    920    2017-01-03 03:50:00    2017-01-03 03:50:00
58305    24182    874    2017-01-03 07:58:00    2017-01-03 07:58:00
58306    24182    729    2017-01-03 18:16:00    2017-01-03 18:16:00
58307    24182    699    2017-01-03 13:38:00    2017-01-03 13:38:00
58308    24183    483    2017-01-03 13:59:00    2017-01-03 13:59:00
58309    24183    582    2017-01-03 22:40:00    2017-01-03 22:40:00
58310    24183    492    2017-01-03 15:03:00    2017-01-03 15:03:00
58311    24183    557    2017-01-03 14:40:00    2017-01-03 14:40:00
58312    24183    661    2017-01-03 14:30:00    2017-01-03 14:30:00
58313    24184    618    2017-01-03 02:38:00    2017-01-03 02:38:00
58314    24184    519    2017-01-03 03:52:00    2017-01-03 03:52:00
58315    24184    955    2017-01-03 12:12:00    2017-01-03 12:12:00
58316    24184    712    2017-01-03 14:53:00    2017-01-03 14:53:00
58317    24184    729    2017-01-03 10:52:00    2017-01-03 10:52:00
58318    24185    650    2017-01-03 07:30:00    2017-01-03 07:30:00
58319    24185    715    2017-01-03 05:23:00    2017-01-03 05:23:00
58320    24185    532    2017-01-03 13:27:00    2017-01-03 13:27:00
58321    24185    905    2017-01-03 19:30:00    2017-01-03 19:30:00
58322    24185    883    2017-01-03 19:42:00    2017-01-03 19:42:00
58323    24186    823    2017-01-03 19:32:00    2017-01-03 19:32:00
58324    24186    956    2017-01-03 16:55:00    2017-01-03 16:55:00
58325    24186    569    2017-01-03 06:14:00    2017-01-03 06:14:00
58326    24186    927    2017-01-03 14:53:00    2017-01-03 14:53:00
58327    24186    836    2017-01-03 12:59:00    2017-01-03 12:59:00
58328    24187    512    2017-01-03 19:37:00    2017-01-03 19:37:00
58329    24187    617    2017-01-03 07:22:00    2017-01-03 07:22:00
58330    24187    960    2017-01-03 08:53:00    2017-01-03 08:53:00
58331    24187    690    2017-01-03 21:28:00    2017-01-03 21:28:00
58332    24187    951    2017-01-03 05:00:00    2017-01-03 05:00:00
58333    24188    956    2017-01-03 02:58:00    2017-01-03 02:58:00
58334    24188    784    2017-01-03 07:35:00    2017-01-03 07:35:00
58335    24188    766    2017-01-03 03:18:00    2017-01-03 03:18:00
58336    24188    525    2017-01-03 05:16:00    2017-01-03 05:16:00
58337    24188    720    2017-01-03 20:55:00    2017-01-03 20:55:00
58338    24189    493    2017-01-03 14:24:00    2017-01-03 14:24:00
58339    24189    737    2017-01-03 21:02:00    2017-01-03 21:02:00
58340    24189    914    2017-01-03 04:02:00    2017-01-03 04:02:00
58341    24189    887    2017-01-03 06:09:00    2017-01-03 06:09:00
58342    24189    809    2017-01-03 10:07:00    2017-01-03 10:07:00
58343    24190    668    2017-01-03 03:17:00    2017-01-03 03:17:00
58344    24190    823    2017-01-03 17:58:00    2017-01-03 17:58:00
58345    24190    595    2017-01-03 04:02:00    2017-01-03 04:02:00
58346    24190    651    2017-01-03 21:52:00    2017-01-03 21:52:00
58347    24190    849    2017-01-03 06:26:00    2017-01-03 06:26:00
58348    24191    835    2017-01-03 15:59:00    2017-01-03 15:59:00
58349    24191    675    2017-01-03 01:14:00    2017-01-03 01:14:00
58350    24191    923    2017-01-03 10:49:00    2017-01-03 10:49:00
58351    24191    929    2017-01-03 12:36:00    2017-01-03 12:36:00
58352    24191    685    2017-01-03 17:50:00    2017-01-03 17:50:00
58353    24192    895    2017-01-03 02:25:00    2017-01-03 02:25:00
58354    24192    866    2017-01-03 13:03:00    2017-01-03 13:03:00
58355    24192    614    2017-01-03 10:27:00    2017-01-03 10:27:00
58356    24192    758    2017-01-03 08:43:00    2017-01-03 08:43:00
58357    24192    741    2017-01-03 01:13:00    2017-01-03 01:13:00
58358    24193    807    2017-01-03 02:16:00    2017-01-03 02:16:00
58359    24193    888    2017-01-03 08:38:00    2017-01-03 08:38:00
58360    24193    628    2017-01-03 19:43:00    2017-01-03 19:43:00
58361    24193    743    2017-01-03 04:22:00    2017-01-03 04:22:00
58362    24193    538    2017-01-03 18:52:00    2017-01-03 18:52:00
58363    24194    921    2017-01-03 07:18:00    2017-01-03 07:18:00
58364    24194    900    2017-01-03 18:07:00    2017-01-03 18:07:00
58365    24194    918    2017-01-03 23:11:00    2017-01-03 23:11:00
58366    24194    596    2017-01-03 23:35:00    2017-01-03 23:35:00
58367    24194    621    2017-01-03 22:26:00    2017-01-03 22:26:00
58368    24195    511    2017-01-03 22:00:00    2017-01-03 22:00:00
58369    24195    553    2017-01-03 01:45:00    2017-01-03 01:45:00
58370    24195    561    2017-01-03 19:55:00    2017-01-03 19:55:00
58371    24195    741    2017-01-03 01:37:00    2017-01-03 01:37:00
58372    24195    827    2017-01-03 06:18:00    2017-01-03 06:18:00
58373    24196    685    2017-01-03 18:50:00    2017-01-03 18:50:00
58374    24196    472    2017-01-03 08:45:00    2017-01-03 08:45:00
58375    24196    523    2017-01-03 10:22:00    2017-01-03 10:22:00
58376    24196    552    2017-01-03 21:53:00    2017-01-03 21:53:00
58377    24196    952    2017-01-03 16:46:00    2017-01-03 16:46:00
58378    24197    738    2017-01-03 14:08:00    2017-01-03 14:08:00
58379    24197    468    2017-01-03 20:59:00    2017-01-03 20:59:00
58380    24197    582    2017-01-03 17:06:00    2017-01-03 17:06:00
58381    24197    617    2017-01-03 18:56:00    2017-01-03 18:56:00
58382    24197    785    2017-01-03 10:07:00    2017-01-03 10:07:00
58383    24198    598    2017-01-03 14:12:00    2017-01-03 14:12:00
58384    24198    839    2017-01-03 08:51:00    2017-01-03 08:51:00
58385    24198    773    2017-01-03 09:22:00    2017-01-03 09:22:00
58386    24198    620    2017-01-03 20:42:00    2017-01-03 20:42:00
58387    24198    829    2017-01-03 06:27:00    2017-01-03 06:27:00
58388    24199    916    2017-01-03 10:46:00    2017-01-03 10:46:00
58389    24199    667    2017-01-03 22:26:00    2017-01-03 22:26:00
58390    24199    486    2017-01-03 02:21:00    2017-01-03 02:21:00
58391    24199    837    2017-01-03 05:24:00    2017-01-03 05:24:00
58392    24199    741    2017-01-03 08:23:00    2017-01-03 08:23:00
58393    24200    794    2017-01-03 18:19:00    2017-01-03 18:19:00
58394    24200    857    2017-01-03 17:33:00    2017-01-03 17:33:00
58395    24200    734    2017-01-03 12:23:00    2017-01-03 12:23:00
58396    24200    827    2017-01-03 14:44:00    2017-01-03 14:44:00
58397    24200    652    2017-01-03 10:20:00    2017-01-03 10:20:00
58398    24201    901    2017-01-03 01:49:00    2017-01-03 01:49:00
58399    24201    514    2017-01-03 02:45:00    2017-01-03 02:45:00
58400    24201    746    2017-01-03 18:03:00    2017-01-03 18:03:00
58401    24201    631    2017-01-03 15:23:00    2017-01-03 15:23:00
58402    24201    568    2017-01-03 22:40:00    2017-01-03 22:40:00
58403    24202    755    2017-01-03 08:57:00    2017-01-03 08:57:00
58404    24202    527    2017-01-03 17:10:00    2017-01-03 17:10:00
58405    24202    835    2017-01-03 15:38:00    2017-01-03 15:38:00
58406    24202    567    2017-01-03 13:02:00    2017-01-03 13:02:00
58407    24202    474    2017-01-03 10:17:00    2017-01-03 10:17:00
58408    24203    512    2017-01-03 23:57:00    2017-01-03 23:57:00
58409    24203    762    2017-01-03 09:49:00    2017-01-03 09:49:00
58410    24203    940    2017-01-03 04:31:00    2017-01-03 04:31:00
58411    24203    782    2017-01-03 03:27:00    2017-01-03 03:27:00
58412    24203    927    2017-01-03 11:09:00    2017-01-03 11:09:00
58413    24204    955    2017-01-03 06:16:00    2017-01-03 06:16:00
58414    24204    684    2017-01-03 11:47:00    2017-01-03 11:47:00
58415    24204    817    2017-01-03 10:38:00    2017-01-03 10:38:00
58416    24204    561    2017-01-03 11:46:00    2017-01-03 11:46:00
58417    24204    553    2017-01-03 03:10:00    2017-01-03 03:10:00
58418    24205    841    2017-01-04 06:37:00    2017-01-04 06:37:00
58419    24205    786    2017-01-04 02:26:00    2017-01-04 02:26:00
58420    24205    929    2017-01-04 04:09:00    2017-01-04 04:09:00
58421    24205    508    2017-01-04 08:08:00    2017-01-04 08:08:00
58422    24205    765    2017-01-04 09:29:00    2017-01-04 09:29:00
58423    24206    537    2017-01-04 06:32:00    2017-01-04 06:32:00
58424    24206    534    2017-01-04 06:24:00    2017-01-04 06:24:00
58425    24206    518    2017-01-04 09:41:00    2017-01-04 09:41:00
58426    24206    474    2017-01-04 15:12:00    2017-01-04 15:12:00
58427    24206    883    2017-01-04 17:32:00    2017-01-04 17:32:00
58428    24207    754    2017-01-04 06:08:00    2017-01-04 06:08:00
58429    24207    940    2017-01-04 16:56:00    2017-01-04 16:56:00
58430    24207    710    2017-01-04 21:10:00    2017-01-04 21:10:00
58431    24207    561    2017-01-04 19:00:00    2017-01-04 19:00:00
58432    24207    513    2017-01-04 01:07:00    2017-01-04 01:07:00
58433    24208    810    2017-01-04 08:03:00    2017-01-04 08:03:00
58434    24208    506    2017-01-04 18:55:00    2017-01-04 18:55:00
58435    24208    946    2017-01-04 06:07:00    2017-01-04 06:07:00
58436    24208    762    2017-01-04 13:32:00    2017-01-04 13:32:00
58437    24208    731    2017-01-04 16:12:00    2017-01-04 16:12:00
58438    24209    853    2017-01-04 17:48:00    2017-01-04 17:48:00
58439    24209    757    2017-01-04 06:39:00    2017-01-04 06:39:00
58440    24209    595    2017-01-04 15:45:00    2017-01-04 15:45:00
58441    24209    784    2017-01-04 04:14:00    2017-01-04 04:14:00
58442    24209    848    2017-01-04 20:19:00    2017-01-04 20:19:00
58443    24210    722    2017-01-04 09:38:00    2017-01-04 09:38:00
58444    24210    695    2017-01-04 09:55:00    2017-01-04 09:55:00
58445    24210    843    2017-01-04 13:23:00    2017-01-04 13:23:00
58446    24210    706    2017-01-04 19:43:00    2017-01-04 19:43:00
58447    24210    772    2017-01-04 06:26:00    2017-01-04 06:26:00
58448    24211    502    2017-01-04 13:57:00    2017-01-04 13:57:00
58449    24211    497    2017-01-04 15:35:00    2017-01-04 15:35:00
58450    24211    705    2017-01-04 06:53:00    2017-01-04 06:53:00
58451    24211    828    2017-01-04 11:11:00    2017-01-04 11:11:00
58452    24211    930    2017-01-04 10:14:00    2017-01-04 10:14:00
58453    24212    888    2017-01-04 08:00:00    2017-01-04 08:00:00
58454    24212    918    2017-01-04 03:17:00    2017-01-04 03:17:00
58455    24212    694    2017-01-04 01:57:00    2017-01-04 01:57:00
58456    24212    960    2017-01-04 23:43:00    2017-01-04 23:43:00
58457    24212    615    2017-01-04 23:13:00    2017-01-04 23:13:00
58458    24213    792    2017-01-04 01:23:00    2017-01-04 01:23:00
58459    24213    767    2017-01-04 01:23:00    2017-01-04 01:23:00
58460    24213    540    2017-01-04 02:37:00    2017-01-04 02:37:00
58461    24213    734    2017-01-04 06:09:00    2017-01-04 06:09:00
58462    24213    720    2017-01-04 05:33:00    2017-01-04 05:33:00
58463    24214    921    2017-01-04 05:15:00    2017-01-04 05:15:00
58464    24214    709    2017-01-04 14:16:00    2017-01-04 14:16:00
58465    24214    740    2017-01-04 14:05:00    2017-01-04 14:05:00
58466    24214    468    2017-01-04 04:18:00    2017-01-04 04:18:00
58467    24214    863    2017-01-04 22:01:00    2017-01-04 22:01:00
58468    24215    702    2017-01-04 11:17:00    2017-01-04 11:17:00
58469    24215    551    2017-01-04 18:13:00    2017-01-04 18:13:00
58470    24215    677    2017-01-04 19:03:00    2017-01-04 19:03:00
58471    24215    699    2017-01-04 14:58:00    2017-01-04 14:58:00
58472    24215    951    2017-01-04 23:12:00    2017-01-04 23:12:00
58473    24216    640    2017-01-04 16:45:00    2017-01-04 16:45:00
58474    24216    937    2017-01-04 17:25:00    2017-01-04 17:25:00
58475    24216    677    2017-01-04 05:20:00    2017-01-04 05:20:00
58476    24216    940    2017-01-04 12:15:00    2017-01-04 12:15:00
58477    24216    900    2017-01-04 15:20:00    2017-01-04 15:20:00
58478    24217    631    2017-01-04 09:43:00    2017-01-04 09:43:00
58479    24217    826    2017-01-04 13:48:00    2017-01-04 13:48:00
58480    24217    909    2017-01-04 08:00:00    2017-01-04 08:00:00
58481    24217    894    2017-01-04 21:48:00    2017-01-04 21:48:00
58482    24217    822    2017-01-04 21:59:00    2017-01-04 21:59:00
58483    24218    863    2017-01-04 17:21:00    2017-01-04 17:21:00
58484    24218    935    2017-01-04 04:26:00    2017-01-04 04:26:00
58485    24218    738    2017-01-04 16:14:00    2017-01-04 16:14:00
58486    24218    683    2017-01-04 09:55:00    2017-01-04 09:55:00
58487    24218    582    2017-01-04 14:34:00    2017-01-04 14:34:00
58488    24219    706    2017-01-04 02:46:00    2017-01-04 02:46:00
58489    24219    846    2017-01-04 12:21:00    2017-01-04 12:21:00
58490    24219    844    2017-01-04 01:51:00    2017-01-04 01:51:00
58491    24219    588    2017-01-04 07:44:00    2017-01-04 07:44:00
58492    24219    680    2017-01-04 04:44:00    2017-01-04 04:44:00
58493    24220    881    2017-01-04 21:48:00    2017-01-04 21:48:00
58494    24220    929    2017-01-04 20:19:00    2017-01-04 20:19:00
58495    24220    770    2017-01-04 15:02:00    2017-01-04 15:02:00
58496    24220    935    2017-01-04 01:13:00    2017-01-04 01:13:00
58497    24220    926    2017-01-04 04:54:00    2017-01-04 04:54:00
58498    24221    751    2017-01-04 12:35:00    2017-01-04 12:35:00
58499    24221    873    2017-01-04 10:18:00    2017-01-04 10:18:00
58500    24221    626    2017-01-04 21:17:00    2017-01-04 21:17:00
58501    24221    798    2017-01-04 23:37:00    2017-01-04 23:37:00
58502    24221    572    2017-01-04 19:06:00    2017-01-04 19:06:00
58503    24222    728    2017-01-04 10:29:00    2017-01-04 10:29:00
58504    24222    773    2017-01-04 01:31:00    2017-01-04 01:31:00
58505    24222    865    2017-01-04 17:01:00    2017-01-04 17:01:00
58506    24222    698    2017-01-04 09:39:00    2017-01-04 09:39:00
58507    24222    687    2017-01-04 02:37:00    2017-01-04 02:37:00
58508    24223    635    2017-01-04 07:54:00    2017-01-04 07:54:00
58509    24223    951    2017-01-04 13:47:00    2017-01-04 13:47:00
58510    24223    739    2017-01-04 02:15:00    2017-01-04 02:15:00
58511    24223    820    2017-01-04 01:07:00    2017-01-04 01:07:00
58512    24223    615    2017-01-04 23:49:00    2017-01-04 23:49:00
58513    24224    864    2017-01-04 12:45:00    2017-01-04 12:45:00
58514    24224    747    2017-01-04 10:22:00    2017-01-04 10:22:00
58515    24224    642    2017-01-04 15:28:00    2017-01-04 15:28:00
58516    24224    857    2017-01-04 13:40:00    2017-01-04 13:40:00
58517    24224    527    2017-01-04 14:54:00    2017-01-04 14:54:00
58518    24225    758    2017-01-04 15:48:00    2017-01-04 15:48:00
58519    24225    681    2017-01-04 21:57:00    2017-01-04 21:57:00
58520    24225    643    2017-01-04 15:14:00    2017-01-04 15:14:00
58521    24225    930    2017-01-04 10:31:00    2017-01-04 10:31:00
58522    24225    634    2017-01-04 01:42:00    2017-01-04 01:42:00
58523    24226    595    2017-01-04 05:34:00    2017-01-04 05:34:00
58524    24226    937    2017-01-04 04:42:00    2017-01-04 04:42:00
58525    24226    822    2017-01-04 21:25:00    2017-01-04 21:25:00
58526    24226    934    2017-01-04 19:32:00    2017-01-04 19:32:00
58527    24226    563    2017-01-04 07:30:00    2017-01-04 07:30:00
58528    24227    694    2017-01-04 23:32:00    2017-01-04 23:32:00
58529    24227    475    2017-01-04 13:34:00    2017-01-04 13:34:00
58530    24227    646    2017-01-04 03:06:00    2017-01-04 03:06:00
58531    24227    946    2017-01-04 09:01:00    2017-01-04 09:01:00
58532    24227    794    2017-01-04 15:39:00    2017-01-04 15:39:00
58533    24228    683    2017-01-04 19:22:00    2017-01-04 19:22:00
58534    24228    685    2017-01-04 23:54:00    2017-01-04 23:54:00
58535    24228    517    2017-01-04 11:31:00    2017-01-04 11:31:00
58536    24228    849    2017-01-04 05:13:00    2017-01-04 05:13:00
58537    24228    958    2017-01-04 10:25:00    2017-01-04 10:25:00
58538    24229    848    2017-01-04 02:42:00    2017-01-04 02:42:00
58539    24229    498    2017-01-04 07:17:00    2017-01-04 07:17:00
58540    24229    827    2017-01-04 23:55:00    2017-01-04 23:55:00
58541    24229    642    2017-01-04 12:53:00    2017-01-04 12:53:00
58542    24229    585    2017-01-04 20:23:00    2017-01-04 20:23:00
58543    24230    500    2017-01-04 02:26:00    2017-01-04 02:26:00
58544    24230    698    2017-01-04 23:16:00    2017-01-04 23:16:00
58545    24230    719    2017-01-04 17:36:00    2017-01-04 17:36:00
58546    24230    729    2017-01-04 19:39:00    2017-01-04 19:39:00
58547    24230    714    2017-01-04 11:00:00    2017-01-04 11:00:00
58548    24231    677    2017-01-04 20:28:00    2017-01-04 20:28:00
58549    24231    500    2017-01-04 02:11:00    2017-01-04 02:11:00
58550    24231    871    2017-01-04 05:08:00    2017-01-04 05:08:00
58551    24231    506    2017-01-04 13:26:00    2017-01-04 13:26:00
58552    24231    627    2017-01-04 21:50:00    2017-01-04 21:50:00
58553    24232    939    2017-01-04 12:27:00    2017-01-04 12:27:00
58554    24232    554    2017-01-04 11:31:00    2017-01-04 11:31:00
58555    24232    830    2017-01-04 01:01:00    2017-01-04 01:01:00
58556    24232    710    2017-01-04 05:47:00    2017-01-04 05:47:00
58557    24232    493    2017-01-04 09:41:00    2017-01-04 09:41:00
58558    24233    558    2017-01-04 20:41:00    2017-01-04 20:41:00
58559    24233    755    2017-01-04 05:12:00    2017-01-04 05:12:00
58560    24233    619    2017-01-04 19:25:00    2017-01-04 19:25:00
58561    24233    856    2017-01-04 10:45:00    2017-01-04 10:45:00
58562    24233    495    2017-01-04 02:42:00    2017-01-04 02:42:00
58563    24234    632    2017-01-04 01:00:00    2017-01-04 01:00:00
58564    24234    842    2017-01-04 11:14:00    2017-01-04 11:14:00
58565    24234    846    2017-01-04 03:58:00    2017-01-04 03:58:00
58566    24234    891    2017-01-04 11:44:00    2017-01-04 11:44:00
58567    24234    644    2017-01-04 09:46:00    2017-01-04 09:46:00
58568    24235    800    2017-01-04 04:07:00    2017-01-04 04:07:00
58569    24235    698    2017-01-04 14:35:00    2017-01-04 14:35:00
58570    24235    828    2017-01-04 14:42:00    2017-01-04 14:42:00
58571    24235    696    2017-01-04 20:27:00    2017-01-04 20:27:00
58572    24235    651    2017-01-04 23:42:00    2017-01-04 23:42:00
58573    24236    671    2017-01-04 06:25:00    2017-01-04 06:25:00
58574    24236    479    2017-01-04 09:18:00    2017-01-04 09:18:00
58575    24236    912    2017-01-04 07:05:00    2017-01-04 07:05:00
58576    24236    874    2017-01-04 15:00:00    2017-01-04 15:00:00
58577    24236    746    2017-01-04 01:10:00    2017-01-04 01:10:00
58578    24237    754    2017-01-04 12:55:00    2017-01-04 12:55:00
58579    24237    841    2017-01-04 16:03:00    2017-01-04 16:03:00
58580    24237    874    2017-01-04 20:55:00    2017-01-04 20:55:00
58581    24237    606    2017-01-04 20:20:00    2017-01-04 20:20:00
58582    24237    796    2017-01-04 01:53:00    2017-01-04 01:53:00
58583    24238    775    2017-01-04 14:13:00    2017-01-04 14:13:00
58584    24238    793    2017-01-04 20:57:00    2017-01-04 20:57:00
58585    24238    957    2017-01-04 09:59:00    2017-01-04 09:59:00
58586    24238    831    2017-01-04 22:31:00    2017-01-04 22:31:00
58587    24238    896    2017-01-04 19:30:00    2017-01-04 19:30:00
58588    24239    494    2017-01-04 12:44:00    2017-01-04 12:44:00
58589    24239    870    2017-01-04 13:36:00    2017-01-04 13:36:00
58590    24239    732    2017-01-04 19:47:00    2017-01-04 19:47:00
58591    24239    688    2017-01-04 01:09:00    2017-01-04 01:09:00
58592    24239    768    2017-01-04 23:54:00    2017-01-04 23:54:00
58593    24240    927    2017-01-04 20:08:00    2017-01-04 20:08:00
58594    24240    595    2017-01-04 18:43:00    2017-01-04 18:43:00
58595    24240    642    2017-01-04 05:31:00    2017-01-04 05:31:00
58596    24240    903    2017-01-04 15:33:00    2017-01-04 15:33:00
58597    24240    896    2017-01-04 19:07:00    2017-01-04 19:07:00
58598    24241    881    2017-01-04 12:38:00    2017-01-04 12:38:00
58599    24241    472    2017-01-04 12:46:00    2017-01-04 12:46:00
58600    24241    502    2017-01-04 04:11:00    2017-01-04 04:11:00
58601    24241    570    2017-01-04 22:24:00    2017-01-04 22:24:00
58602    24241    686    2017-01-04 01:41:00    2017-01-04 01:41:00
58603    24242    522    2017-01-04 14:04:00    2017-01-04 14:04:00
58604    24242    880    2017-01-04 10:01:00    2017-01-04 10:01:00
58605    24242    485    2017-01-04 05:33:00    2017-01-04 05:33:00
58606    24242    551    2017-01-04 02:42:00    2017-01-04 02:42:00
58607    24242    789    2017-01-04 18:18:00    2017-01-04 18:18:00
58608    24243    795    2017-01-04 12:21:00    2017-01-04 12:21:00
58609    24243    748    2017-01-04 08:15:00    2017-01-04 08:15:00
58610    24243    930    2017-01-04 20:28:00    2017-01-04 20:28:00
58611    24243    902    2017-01-04 03:20:00    2017-01-04 03:20:00
58612    24243    693    2017-01-04 06:11:00    2017-01-04 06:11:00
58613    24244    943    2017-01-04 02:20:00    2017-01-04 02:20:00
58614    24244    489    2017-01-04 06:26:00    2017-01-04 06:26:00
58615    24244    547    2017-01-04 12:39:00    2017-01-04 12:39:00
58616    24244    790    2017-01-04 08:29:00    2017-01-04 08:29:00
58617    24244    498    2017-01-04 07:11:00    2017-01-04 07:11:00
58618    24245    575    2017-01-04 23:16:00    2017-01-04 23:16:00
58619    24245    523    2017-01-04 08:50:00    2017-01-04 08:50:00
58620    24245    538    2017-01-04 04:14:00    2017-01-04 04:14:00
58621    24245    909    2017-01-04 01:21:00    2017-01-04 01:21:00
58622    24245    478    2017-01-04 02:40:00    2017-01-04 02:40:00
58623    24246    839    2017-01-04 05:30:00    2017-01-04 05:30:00
58624    24246    680    2017-01-04 15:34:00    2017-01-04 15:34:00
58625    24246    793    2017-01-04 03:32:00    2017-01-04 03:32:00
58626    24246    796    2017-01-04 12:53:00    2017-01-04 12:53:00
58627    24246    915    2017-01-04 11:13:00    2017-01-04 11:13:00
58628    24247    779    2017-01-04 10:08:00    2017-01-04 10:08:00
58629    24247    802    2017-01-04 16:51:00    2017-01-04 16:51:00
58630    24247    863    2017-01-04 17:02:00    2017-01-04 17:02:00
58631    24247    565    2017-01-04 20:57:00    2017-01-04 20:57:00
58632    24247    650    2017-01-04 04:13:00    2017-01-04 04:13:00
58633    24248    500    2017-01-04 07:17:00    2017-01-04 07:17:00
58634    24248    828    2017-01-04 21:28:00    2017-01-04 21:28:00
58635    24248    902    2017-01-04 10:34:00    2017-01-04 10:34:00
58636    24248    540    2017-01-04 12:03:00    2017-01-04 12:03:00
58637    24248    740    2017-01-04 09:08:00    2017-01-04 09:08:00
58638    24249    680    2017-01-04 15:34:00    2017-01-04 15:34:00
58639    24249    723    2017-01-04 12:07:00    2017-01-04 12:07:00
58640    24249    812    2017-01-04 17:27:00    2017-01-04 17:27:00
58641    24249    933    2017-01-04 14:54:00    2017-01-04 14:54:00
58642    24249    718    2017-01-04 03:41:00    2017-01-04 03:41:00
58643    24250    680    2017-01-04 16:13:00    2017-01-04 16:13:00
58644    24250    761    2017-01-04 01:49:00    2017-01-04 01:49:00
58645    24250    835    2017-01-04 16:28:00    2017-01-04 16:28:00
58646    24250    491    2017-01-04 16:05:00    2017-01-04 16:05:00
58647    24250    624    2017-01-04 12:04:00    2017-01-04 12:04:00
58648    24251    612    2017-01-04 15:55:00    2017-01-04 15:55:00
58649    24251    765    2017-01-04 12:28:00    2017-01-04 12:28:00
58650    24251    553    2017-01-04 01:25:00    2017-01-04 01:25:00
58651    24251    747    2017-01-04 03:53:00    2017-01-04 03:53:00
58652    24251    900    2017-01-04 06:09:00    2017-01-04 06:09:00
58653    24252    749    2017-01-04 21:56:00    2017-01-04 21:56:00
58654    24252    486    2017-01-04 13:07:00    2017-01-04 13:07:00
58655    24252    636    2017-01-04 22:32:00    2017-01-04 22:32:00
58656    24252    892    2017-01-04 01:06:00    2017-01-04 01:06:00
58657    24252    845    2017-01-04 23:37:00    2017-01-04 23:37:00
58658    24253    669    2017-01-04 17:43:00    2017-01-04 17:43:00
58659    24253    563    2017-01-04 17:18:00    2017-01-04 17:18:00
58660    24253    695    2017-01-04 19:48:00    2017-01-04 19:48:00
58661    24253    881    2017-01-04 05:13:00    2017-01-04 05:13:00
58662    24253    545    2017-01-04 04:10:00    2017-01-04 04:10:00
58663    24254    573    2017-01-04 19:37:00    2017-01-04 19:37:00
58664    24254    928    2017-01-04 14:18:00    2017-01-04 14:18:00
58665    24254    609    2017-01-04 05:17:00    2017-01-04 05:17:00
58666    24254    865    2017-01-04 15:26:00    2017-01-04 15:26:00
58667    24254    825    2017-01-04 15:18:00    2017-01-04 15:18:00
58668    24255    760    2017-01-04 08:46:00    2017-01-04 08:46:00
58669    24255    615    2017-01-04 03:24:00    2017-01-04 03:24:00
58670    24255    530    2017-01-04 20:48:00    2017-01-04 20:48:00
58671    24255    542    2017-01-04 06:02:00    2017-01-04 06:02:00
58672    24255    840    2017-01-04 23:57:00    2017-01-04 23:57:00
58673    24256    485    2017-01-04 11:14:00    2017-01-04 11:14:00
58674    24256    828    2017-01-04 14:02:00    2017-01-04 14:02:00
58675    24256    818    2017-01-04 07:56:00    2017-01-04 07:56:00
58676    24256    588    2017-01-04 16:44:00    2017-01-04 16:44:00
58677    24256    930    2017-01-04 10:17:00    2017-01-04 10:17:00
58678    24257    705    2017-01-04 23:51:00    2017-01-04 23:51:00
58679    24257    774    2017-01-04 15:58:00    2017-01-04 15:58:00
58680    24257    669    2017-01-04 01:45:00    2017-01-04 01:45:00
58681    24257    886    2017-01-04 09:36:00    2017-01-04 09:36:00
58682    24257    918    2017-01-04 15:13:00    2017-01-04 15:13:00
58683    24258    757    2017-01-04 06:18:00    2017-01-04 06:18:00
58684    24258    815    2017-01-04 06:46:00    2017-01-04 06:46:00
58685    24258    610    2017-01-04 18:12:00    2017-01-04 18:12:00
58686    24258    610    2017-01-04 22:45:00    2017-01-04 22:45:00
58687    24258    838    2017-01-04 10:04:00    2017-01-04 10:04:00
58688    24259    681    2017-01-04 13:45:00    2017-01-04 13:45:00
58689    24259    733    2017-01-04 22:49:00    2017-01-04 22:49:00
58690    24259    847    2017-01-04 06:49:00    2017-01-04 06:49:00
58691    24259    787    2017-01-04 19:54:00    2017-01-04 19:54:00
58692    24259    948    2017-01-04 19:07:00    2017-01-04 19:07:00
58693    24260    715    2017-01-04 13:34:00    2017-01-04 13:34:00
58694    24260    814    2017-01-04 15:15:00    2017-01-04 15:15:00
58695    24260    834    2017-01-04 05:40:00    2017-01-04 05:40:00
58696    24260    849    2017-01-04 15:29:00    2017-01-04 15:29:00
58697    24260    785    2017-01-04 14:46:00    2017-01-04 14:46:00
58698    24261    872    2017-01-04 17:23:00    2017-01-04 17:23:00
58699    24261    521    2017-01-04 09:25:00    2017-01-04 09:25:00
58700    24261    472    2017-01-04 10:00:00    2017-01-04 10:00:00
58701    24261    505    2017-01-04 16:33:00    2017-01-04 16:33:00
58702    24261    859    2017-01-04 10:24:00    2017-01-04 10:24:00
58703    24262    672    2017-01-04 22:08:00    2017-01-04 22:08:00
58704    24262    749    2017-01-04 05:16:00    2017-01-04 05:16:00
58705    24262    871    2017-01-04 02:19:00    2017-01-04 02:19:00
58706    24262    765    2017-01-04 10:49:00    2017-01-04 10:49:00
58707    24262    899    2017-01-04 18:17:00    2017-01-04 18:17:00
58708    24263    578    2017-01-04 22:30:00    2017-01-04 22:30:00
58709    24263    674    2017-01-04 23:21:00    2017-01-04 23:21:00
58710    24263    766    2017-01-04 10:36:00    2017-01-04 10:36:00
58711    24263    741    2017-01-04 11:57:00    2017-01-04 11:57:00
58712    24263    792    2017-01-04 14:37:00    2017-01-04 14:37:00
58713    24264    486    2017-01-04 03:50:00    2017-01-04 03:50:00
58714    24264    484    2017-01-04 21:31:00    2017-01-04 21:31:00
58715    24264    865    2017-01-04 03:09:00    2017-01-04 03:09:00
58716    24264    910    2017-01-04 17:01:00    2017-01-04 17:01:00
58717    24264    811    2017-01-04 05:33:00    2017-01-04 05:33:00
58718    24265    902    2017-01-04 20:28:00    2017-01-04 20:28:00
58719    24265    542    2017-01-04 07:05:00    2017-01-04 07:05:00
58720    24265    560    2017-01-04 09:15:00    2017-01-04 09:15:00
58721    24265    623    2017-01-04 15:52:00    2017-01-04 15:52:00
58722    24265    598    2017-01-04 12:27:00    2017-01-04 12:27:00
58723    24266    885    2017-01-04 02:30:00    2017-01-04 02:30:00
58724    24266    506    2017-01-04 01:43:00    2017-01-04 01:43:00
58725    24266    639    2017-01-04 20:51:00    2017-01-04 20:51:00
58726    24266    903    2017-01-04 23:57:00    2017-01-04 23:57:00
58727    24266    504    2017-01-04 23:56:00    2017-01-04 23:56:00
58728    24267    499    2017-01-04 20:04:00    2017-01-04 20:04:00
58729    24267    930    2017-01-04 22:58:00    2017-01-04 22:58:00
58730    24267    742    2017-01-04 10:17:00    2017-01-04 10:17:00
58731    24267    868    2017-01-04 10:45:00    2017-01-04 10:45:00
58732    24267    820    2017-01-04 21:25:00    2017-01-04 21:25:00
58733    24268    601    2017-01-04 09:58:00    2017-01-04 09:58:00
58734    24268    770    2017-01-04 09:25:00    2017-01-04 09:25:00
58735    24268    540    2017-01-04 13:33:00    2017-01-04 13:33:00
58736    24268    960    2017-01-04 22:58:00    2017-01-04 22:58:00
58737    24268    849    2017-01-04 09:29:00    2017-01-04 09:29:00
58738    24269    627    2017-01-04 20:00:00    2017-01-04 20:00:00
58739    24269    941    2017-01-04 05:04:00    2017-01-04 05:04:00
58740    24269    887    2017-01-04 13:24:00    2017-01-04 13:24:00
58741    24269    810    2017-01-04 02:06:00    2017-01-04 02:06:00
58742    24269    668    2017-01-04 08:11:00    2017-01-04 08:11:00
58743    24270    631    2017-01-04 17:49:00    2017-01-04 17:49:00
58744    24270    877    2017-01-04 01:30:00    2017-01-04 01:30:00
58745    24270    798    2017-01-04 20:18:00    2017-01-04 20:18:00
58746    24270    553    2017-01-04 13:03:00    2017-01-04 13:03:00
58747    24270    816    2017-01-04 07:04:00    2017-01-04 07:04:00
58748    24271    938    2017-01-04 19:27:00    2017-01-04 19:27:00
58749    24271    918    2017-01-04 06:05:00    2017-01-04 06:05:00
58750    24271    852    2017-01-04 20:16:00    2017-01-04 20:16:00
58751    24271    492    2017-01-04 16:49:00    2017-01-04 16:49:00
58752    24271    506    2017-01-04 05:30:00    2017-01-04 05:30:00
58753    24272    810    2017-01-04 17:31:00    2017-01-04 17:31:00
58754    24272    634    2017-01-04 20:21:00    2017-01-04 20:21:00
58755    24272    837    2017-01-04 02:17:00    2017-01-04 02:17:00
58756    24272    549    2017-01-04 11:02:00    2017-01-04 11:02:00
58757    24272    593    2017-01-04 06:15:00    2017-01-04 06:15:00
58758    24273    503    2017-01-04 16:04:00    2017-01-04 16:04:00
58759    24273    930    2017-01-04 08:11:00    2017-01-04 08:11:00
58760    24273    558    2017-01-04 05:44:00    2017-01-04 05:44:00
58761    24273    924    2017-01-04 15:33:00    2017-01-04 15:33:00
58762    24273    912    2017-01-04 18:23:00    2017-01-04 18:23:00
58763    24274    600    2017-01-04 02:38:00    2017-01-04 02:38:00
58764    24274    862    2017-01-04 15:17:00    2017-01-04 15:17:00
58765    24274    483    2017-01-04 02:53:00    2017-01-04 02:53:00
58766    24274    487    2017-01-04 11:43:00    2017-01-04 11:43:00
58767    24274    500    2017-01-04 17:43:00    2017-01-04 17:43:00
58768    24275    538    2017-01-04 13:13:00    2017-01-04 13:13:00
58769    24275    847    2017-01-04 12:14:00    2017-01-04 12:14:00
58770    24275    775    2017-01-04 15:50:00    2017-01-04 15:50:00
58771    24275    674    2017-01-04 19:49:00    2017-01-04 19:49:00
58772    24275    621    2017-01-04 08:45:00    2017-01-04 08:45:00
58773    24276    759    2017-01-04 18:44:00    2017-01-04 18:44:00
58774    24276    726    2017-01-04 08:27:00    2017-01-04 08:27:00
58775    24276    575    2017-01-04 21:15:00    2017-01-04 21:15:00
58776    24276    932    2017-01-04 08:07:00    2017-01-04 08:07:00
58777    24276    576    2017-01-04 10:08:00    2017-01-04 10:08:00
58778    24277    468    2017-01-04 20:10:00    2017-01-04 20:10:00
58779    24277    911    2017-01-04 15:06:00    2017-01-04 15:06:00
58780    24277    682    2017-01-04 01:49:00    2017-01-04 01:49:00
58781    24277    724    2017-01-04 10:28:00    2017-01-04 10:28:00
58782    24277    817    2017-01-04 07:28:00    2017-01-04 07:28:00
58783    24278    552    2017-01-04 09:48:00    2017-01-04 09:48:00
58784    24278    529    2017-01-04 19:49:00    2017-01-04 19:49:00
58785    24278    587    2017-01-04 14:16:00    2017-01-04 14:16:00
58786    24278    469    2017-01-04 02:05:00    2017-01-04 02:05:00
58787    24278    608    2017-01-04 16:24:00    2017-01-04 16:24:00
58788    24279    666    2017-01-04 05:09:00    2017-01-04 05:09:00
58789    24279    806    2017-01-04 22:00:00    2017-01-04 22:00:00
58790    24279    820    2017-01-04 21:26:00    2017-01-04 21:26:00
58791    24279    467    2017-01-04 18:19:00    2017-01-04 18:19:00
58792    24279    555    2017-01-04 21:53:00    2017-01-04 21:53:00
58793    24280    888    2017-01-04 09:50:00    2017-01-04 09:50:00
58794    24280    927    2017-01-04 04:51:00    2017-01-04 04:51:00
58795    24280    578    2017-01-04 21:59:00    2017-01-04 21:59:00
58796    24280    852    2017-01-04 20:30:00    2017-01-04 20:30:00
58797    24280    503    2017-01-04 08:00:00    2017-01-04 08:00:00
58798    24281    740    2017-01-04 10:41:00    2017-01-04 10:41:00
58799    24281    908    2017-01-04 15:00:00    2017-01-04 15:00:00
58800    24281    500    2017-01-04 06:18:00    2017-01-04 06:18:00
58801    24281    918    2017-01-04 21:45:00    2017-01-04 21:45:00
58802    24281    930    2017-01-04 22:27:00    2017-01-04 22:27:00
58803    24282    568    2017-01-04 02:53:00    2017-01-04 02:53:00
58804    24282    684    2017-01-04 18:11:00    2017-01-04 18:11:00
58805    24282    474    2017-01-04 15:35:00    2017-01-04 15:35:00
58806    24282    953    2017-01-04 13:25:00    2017-01-04 13:25:00
58807    24282    677    2017-01-04 08:55:00    2017-01-04 08:55:00
58808    24283    690    2017-01-04 19:46:00    2017-01-04 19:46:00
58809    24283    474    2017-01-04 06:38:00    2017-01-04 06:38:00
58810    24283    837    2017-01-04 06:39:00    2017-01-04 06:39:00
58811    24283    490    2017-01-04 08:16:00    2017-01-04 08:16:00
58812    24283    524    2017-01-04 03:47:00    2017-01-04 03:47:00
58813    24284    781    2017-01-04 16:13:00    2017-01-04 16:13:00
58814    24284    547    2017-01-04 04:36:00    2017-01-04 04:36:00
58815    24284    785    2017-01-04 17:53:00    2017-01-04 17:53:00
58816    24284    525    2017-01-04 19:21:00    2017-01-04 19:21:00
58817    24284    483    2017-01-04 05:50:00    2017-01-04 05:50:00
58818    24285    804    2017-01-04 15:55:00    2017-01-04 15:55:00
58819    24285    703    2017-01-04 04:17:00    2017-01-04 04:17:00
58820    24285    656    2017-01-04 16:00:00    2017-01-04 16:00:00
58821    24285    464    2017-01-04 22:00:00    2017-01-04 22:00:00
58822    24285    491    2017-01-04 08:48:00    2017-01-04 08:48:00
58823    24286    868    2017-01-04 09:46:00    2017-01-04 09:46:00
58824    24286    512    2017-01-04 14:21:00    2017-01-04 14:21:00
58825    24286    596    2017-01-04 21:47:00    2017-01-04 21:47:00
58826    24286    927    2017-01-04 21:41:00    2017-01-04 21:41:00
58827    24286    923    2017-01-04 01:03:00    2017-01-04 01:03:00
58828    24287    849    2017-01-04 06:06:00    2017-01-04 06:06:00
58829    24287    643    2017-01-04 20:15:00    2017-01-04 20:15:00
58830    24287    698    2017-01-04 08:56:00    2017-01-04 08:56:00
58831    24287    947    2017-01-04 19:03:00    2017-01-04 19:03:00
58832    24287    544    2017-01-04 15:29:00    2017-01-04 15:29:00
58833    24288    924    2017-01-04 01:13:00    2017-01-04 01:13:00
58834    24288    637    2017-01-04 15:24:00    2017-01-04 15:24:00
58835    24288    648    2017-01-04 03:20:00    2017-01-04 03:20:00
58836    24288    762    2017-01-04 22:43:00    2017-01-04 22:43:00
58837    24288    504    2017-01-04 16:04:00    2017-01-04 16:04:00
58838    24289    473    2017-01-04 08:00:00    2017-01-04 08:00:00
58839    24289    883    2017-01-04 08:00:00    2017-01-04 08:00:00
58840    24289    606    2017-01-04 20:39:00    2017-01-04 20:39:00
58841    24289    758    2017-01-04 06:24:00    2017-01-04 06:24:00
58842    24289    881    2017-01-04 18:01:00    2017-01-04 18:01:00
58843    24290    956    2017-01-04 21:13:00    2017-01-04 21:13:00
58844    24290    794    2017-01-04 15:29:00    2017-01-04 15:29:00
58845    24290    728    2017-01-04 06:59:00    2017-01-04 06:59:00
58846    24290    676    2017-01-04 08:13:00    2017-01-04 08:13:00
58847    24290    608    2017-01-04 05:45:00    2017-01-04 05:45:00
58848    24291    879    2017-01-04 11:18:00    2017-01-04 11:18:00
58849    24291    883    2017-01-04 14:31:00    2017-01-04 14:31:00
58850    24291    560    2017-01-04 11:25:00    2017-01-04 11:25:00
58851    24291    741    2017-01-04 04:02:00    2017-01-04 04:02:00
58852    24291    869    2017-01-04 20:41:00    2017-01-04 20:41:00
58853    24292    877    2017-01-05 21:46:00    2017-01-05 21:46:00
58854    24292    850    2017-01-05 19:24:00    2017-01-05 19:24:00
58855    24292    514    2017-01-05 10:01:00    2017-01-05 10:01:00
58856    24292    621    2017-01-05 21:39:00    2017-01-05 21:39:00
58857    24292    576    2017-01-05 06:10:00    2017-01-05 06:10:00
58858    24293    657    2017-01-05 21:48:00    2017-01-05 21:48:00
58859    24293    587    2017-01-05 13:07:00    2017-01-05 13:07:00
58860    24293    536    2017-01-05 01:16:00    2017-01-05 01:16:00
58861    24293    961    2017-01-05 05:58:00    2017-01-05 05:58:00
58862    24293    810    2017-01-05 07:42:00    2017-01-05 07:42:00
58863    24294    655    2017-01-05 19:47:00    2017-01-05 19:47:00
58864    24294    754    2017-01-05 19:57:00    2017-01-05 19:57:00
58865    24294    917    2017-01-05 03:28:00    2017-01-05 03:28:00
58866    24294    646    2017-01-05 02:07:00    2017-01-05 02:07:00
58867    24294    505    2017-01-05 01:37:00    2017-01-05 01:37:00
58868    24295    958    2017-01-05 18:34:00    2017-01-05 18:34:00
58869    24295    855    2017-01-05 05:06:00    2017-01-05 05:06:00
58870    24295    911    2017-01-05 06:50:00    2017-01-05 06:50:00
58871    24295    707    2017-01-05 11:53:00    2017-01-05 11:53:00
58872    24295    776    2017-01-05 19:20:00    2017-01-05 19:20:00
58873    24296    697    2017-01-05 03:11:00    2017-01-05 03:11:00
58874    24296    704    2017-01-05 14:02:00    2017-01-05 14:02:00
58875    24296    635    2017-01-05 02:19:00    2017-01-05 02:19:00
58876    24296    761    2017-01-05 22:41:00    2017-01-05 22:41:00
58877    24296    517    2017-01-05 22:54:00    2017-01-05 22:54:00
58878    24297    737    2017-01-05 10:03:00    2017-01-05 10:03:00
58879    24297    765    2017-01-05 15:44:00    2017-01-05 15:44:00
58880    24297    719    2017-01-05 10:12:00    2017-01-05 10:12:00
58881    24297    912    2017-01-05 08:25:00    2017-01-05 08:25:00
58882    24297    602    2017-01-05 04:37:00    2017-01-05 04:37:00
58883    24298    916    2017-01-05 09:58:00    2017-01-05 09:58:00
58884    24298    536    2017-01-05 18:49:00    2017-01-05 18:49:00
58885    24298    701    2017-01-05 15:19:00    2017-01-05 15:19:00
58886    24298    689    2017-01-05 06:25:00    2017-01-05 06:25:00
58887    24298    806    2017-01-05 16:32:00    2017-01-05 16:32:00
58888    24299    599    2017-01-05 12:10:00    2017-01-05 12:10:00
58889    24299    792    2017-01-05 05:05:00    2017-01-05 05:05:00
58890    24299    833    2017-01-05 02:55:00    2017-01-05 02:55:00
58891    24299    687    2017-01-05 09:35:00    2017-01-05 09:35:00
58892    24299    647    2017-01-05 18:09:00    2017-01-05 18:09:00
58893    24300    717    2017-01-05 22:54:00    2017-01-05 22:54:00
58894    24300    899    2017-01-05 04:00:00    2017-01-05 04:00:00
58895    24300    496    2017-01-05 11:07:00    2017-01-05 11:07:00
58896    24300    691    2017-01-05 10:40:00    2017-01-05 10:40:00
58897    24300    566    2017-01-05 06:36:00    2017-01-05 06:36:00
58898    24301    818    2017-01-05 16:58:00    2017-01-05 16:58:00
58899    24301    692    2017-01-05 11:46:00    2017-01-05 11:46:00
58900    24301    800    2017-01-05 04:24:00    2017-01-05 04:24:00
58901    24301    924    2017-01-05 14:58:00    2017-01-05 14:58:00
58902    24301    588    2017-01-05 07:00:00    2017-01-05 07:00:00
58903    24302    757    2017-01-05 03:11:00    2017-01-05 03:11:00
58904    24302    788    2017-01-05 06:55:00    2017-01-05 06:55:00
58905    24302    784    2017-01-05 18:46:00    2017-01-05 18:46:00
58906    24302    813    2017-01-05 10:13:00    2017-01-05 10:13:00
58907    24302    719    2017-01-05 14:07:00    2017-01-05 14:07:00
58908    24303    889    2017-01-05 05:38:00    2017-01-05 05:38:00
58909    24303    735    2017-01-05 04:18:00    2017-01-05 04:18:00
58910    24303    503    2017-01-05 18:57:00    2017-01-05 18:57:00
58911    24303    522    2017-01-05 18:07:00    2017-01-05 18:07:00
58912    24303    688    2017-01-05 12:59:00    2017-01-05 12:59:00
58913    24304    593    2017-01-05 15:31:00    2017-01-05 15:31:00
58914    24304    760    2017-01-05 16:09:00    2017-01-05 16:09:00
58915    24304    718    2017-01-05 05:29:00    2017-01-05 05:29:00
58916    24304    467    2017-01-05 01:27:00    2017-01-05 01:27:00
58917    24304    498    2017-01-05 14:03:00    2017-01-05 14:03:00
58918    24305    620    2017-01-05 10:24:00    2017-01-05 10:24:00
58919    24305    697    2017-01-05 17:06:00    2017-01-05 17:06:00
58920    24305    538    2017-01-05 18:46:00    2017-01-05 18:46:00
58921    24305    809    2017-01-05 20:21:00    2017-01-05 20:21:00
58922    24305    561    2017-01-05 08:38:00    2017-01-05 08:38:00
58923    24306    788    2017-01-05 09:34:00    2017-01-05 09:34:00
58924    24306    916    2017-01-05 13:23:00    2017-01-05 13:23:00
58925    24306    525    2017-01-05 07:02:00    2017-01-05 07:02:00
58926    24306    885    2017-01-05 07:58:00    2017-01-05 07:58:00
58927    24306    618    2017-01-05 15:15:00    2017-01-05 15:15:00
58928    24307    480    2017-01-06 08:57:00    2017-01-06 08:57:00
58929    24307    703    2017-01-06 08:25:00    2017-01-06 08:25:00
58930    24307    782    2017-01-06 12:14:00    2017-01-06 12:14:00
58931    24307    851    2017-01-06 07:35:00    2017-01-06 07:35:00
58932    24307    507    2017-01-06 01:08:00    2017-01-06 01:08:00
58933    24308    699    2017-01-06 03:53:00    2017-01-06 03:53:00
58934    24308    483    2017-01-06 06:00:00    2017-01-06 06:00:00
58935    24308    523    2017-01-06 11:21:00    2017-01-06 11:21:00
58936    24308    470    2017-01-06 16:08:00    2017-01-06 16:08:00
58937    24308    572    2017-01-06 12:59:00    2017-01-06 12:59:00
58938    24309    951    2017-01-06 18:57:00    2017-01-06 18:57:00
58939    24309    959    2017-01-06 12:52:00    2017-01-06 12:52:00
58940    24309    491    2017-01-06 05:51:00    2017-01-06 05:51:00
58941    24309    736    2017-01-06 07:33:00    2017-01-06 07:33:00
58942    24309    715    2017-01-06 13:32:00    2017-01-06 13:32:00
58943    24310    953    2017-01-06 06:33:00    2017-01-06 06:33:00
58944    24310    862    2017-01-06 14:41:00    2017-01-06 14:41:00
58945    24310    791    2017-01-06 19:07:00    2017-01-06 19:07:00
58946    24310    877    2017-01-06 11:54:00    2017-01-06 11:54:00
58947    24310    642    2017-01-06 20:29:00    2017-01-06 20:29:00
58948    24311    612    2017-01-06 18:32:00    2017-01-06 18:32:00
58949    24311    648    2017-01-06 16:21:00    2017-01-06 16:21:00
58950    24311    580    2017-01-06 01:34:00    2017-01-06 01:34:00
58951    24311    645    2017-01-06 12:35:00    2017-01-06 12:35:00
58952    24311    925    2017-01-06 02:14:00    2017-01-06 02:14:00
58953    24312    836    2017-01-06 06:52:00    2017-01-06 06:52:00
58954    24312    737    2017-01-06 19:46:00    2017-01-06 19:46:00
58955    24312    782    2017-01-06 09:22:00    2017-01-06 09:22:00
58956    24312    804    2017-01-06 22:45:00    2017-01-06 22:45:00
58957    24312    782    2017-01-06 19:43:00    2017-01-06 19:43:00
58958    24313    742    2017-01-06 23:17:00    2017-01-06 23:17:00
58959    24313    683    2017-01-06 12:31:00    2017-01-06 12:31:00
58960    24313    957    2017-01-06 20:16:00    2017-01-06 20:16:00
58961    24313    891    2017-01-06 18:32:00    2017-01-06 18:32:00
58962    24313    725    2017-01-06 10:34:00    2017-01-06 10:34:00
58963    24314    694    2017-01-06 20:08:00    2017-01-06 20:08:00
58964    24314    716    2017-01-06 14:06:00    2017-01-06 14:06:00
58965    24314    640    2017-01-06 11:31:00    2017-01-06 11:31:00
58966    24314    819    2017-01-06 08:12:00    2017-01-06 08:12:00
58967    24314    496    2017-01-06 14:57:00    2017-01-06 14:57:00
58968    24315    850    2017-01-06 07:11:00    2017-01-06 07:11:00
58969    24315    840    2017-01-06 17:51:00    2017-01-06 17:51:00
58970    24315    923    2017-01-06 23:28:00    2017-01-06 23:28:00
58971    24315    903    2017-01-06 12:28:00    2017-01-06 12:28:00
58972    24315    526    2017-01-06 09:10:00    2017-01-06 09:10:00
58973    24316    718    2017-01-06 08:54:00    2017-01-06 08:54:00
58974    24316    837    2017-01-06 04:08:00    2017-01-06 04:08:00
58975    24316    601    2017-01-06 07:19:00    2017-01-06 07:19:00
58976    24316    942    2017-01-06 20:02:00    2017-01-06 20:02:00
58977    24316    807    2017-01-06 04:56:00    2017-01-06 04:56:00
58978    24317    517    2017-01-06 09:50:00    2017-01-06 09:50:00
58979    24317    905    2017-01-06 15:07:00    2017-01-06 15:07:00
58980    24317    672    2017-01-06 14:38:00    2017-01-06 14:38:00
58981    24317    865    2017-01-06 23:35:00    2017-01-06 23:35:00
58982    24317    615    2017-01-06 01:36:00    2017-01-06 01:36:00
58983    24318    527    2017-01-06 20:25:00    2017-01-06 20:25:00
58984    24318    569    2017-01-06 20:58:00    2017-01-06 20:58:00
58985    24318    601    2017-01-06 16:05:00    2017-01-06 16:05:00
58986    24318    659    2017-01-06 14:58:00    2017-01-06 14:58:00
58987    24318    942    2017-01-06 22:35:00    2017-01-06 22:35:00
58988    24319    649    2017-01-06 08:16:00    2017-01-06 08:16:00
58989    24319    918    2017-01-06 01:54:00    2017-01-06 01:54:00
58990    24319    937    2017-01-06 02:35:00    2017-01-06 02:35:00
58991    24319    651    2017-01-06 17:26:00    2017-01-06 17:26:00
58992    24319    642    2017-01-06 03:34:00    2017-01-06 03:34:00
58993    24320    555    2017-01-06 23:38:00    2017-01-06 23:38:00
58994    24320    880    2017-01-06 03:00:00    2017-01-06 03:00:00
58995    24320    617    2017-01-06 17:26:00    2017-01-06 17:26:00
58996    24320    938    2017-01-06 17:44:00    2017-01-06 17:44:00
58997    24320    778    2017-01-06 23:03:00    2017-01-06 23:03:00
58998    24321    943    2017-01-06 02:23:00    2017-01-06 02:23:00
58999    24321    736    2017-01-06 20:29:00    2017-01-06 20:29:00
59000    24321    580    2017-01-06 11:33:00    2017-01-06 11:33:00
59001    24321    686    2017-01-06 03:02:00    2017-01-06 03:02:00
59002    24321    537    2017-01-06 09:46:00    2017-01-06 09:46:00
59003    24322    776    2017-01-06 03:00:00    2017-01-06 03:00:00
59004    24322    686    2017-01-06 14:26:00    2017-01-06 14:26:00
59005    24322    925    2017-01-06 04:29:00    2017-01-06 04:29:00
59006    24322    568    2017-01-06 03:27:00    2017-01-06 03:27:00
59007    24322    541    2017-01-06 20:36:00    2017-01-06 20:36:00
59008    24323    664    2017-01-06 09:21:00    2017-01-06 09:21:00
59009    24323    626    2017-01-06 08:15:00    2017-01-06 08:15:00
59010    24323    804    2017-01-06 07:18:00    2017-01-06 07:18:00
59011    24323    767    2017-01-06 07:26:00    2017-01-06 07:26:00
59012    24323    706    2017-01-06 16:04:00    2017-01-06 16:04:00
59013    24324    610    2017-01-06 18:08:00    2017-01-06 18:08:00
59014    24324    639    2017-01-06 01:34:00    2017-01-06 01:34:00
59015    24324    662    2017-01-06 18:53:00    2017-01-06 18:53:00
59016    24324    867    2017-01-06 08:24:00    2017-01-06 08:24:00
59017    24324    678    2017-01-06 20:09:00    2017-01-06 20:09:00
59018    24325    649    2017-01-06 11:45:00    2017-01-06 11:45:00
59019    24325    906    2017-01-06 14:32:00    2017-01-06 14:32:00
59020    24325    663    2017-01-06 19:08:00    2017-01-06 19:08:00
59021    24325    717    2017-01-06 21:14:00    2017-01-06 21:14:00
59022    24325    547    2017-01-06 07:18:00    2017-01-06 07:18:00
59023    24326    702    2017-01-06 02:02:00    2017-01-06 02:02:00
59024    24326    919    2017-01-06 06:34:00    2017-01-06 06:34:00
59025    24326    468    2017-01-06 10:31:00    2017-01-06 10:31:00
59026    24326    598    2017-01-06 10:04:00    2017-01-06 10:04:00
59027    24326    712    2017-01-06 02:19:00    2017-01-06 02:19:00
59028    24327    655    2017-01-06 10:49:00    2017-01-06 10:49:00
59029    24327    886    2017-01-06 12:05:00    2017-01-06 12:05:00
59030    24327    695    2017-01-06 17:17:00    2017-01-06 17:17:00
59031    24327    820    2017-01-06 19:22:00    2017-01-06 19:22:00
59032    24327    547    2017-01-06 13:29:00    2017-01-06 13:29:00
59033    24328    636    2017-01-06 06:08:00    2017-01-06 06:08:00
59034    24328    649    2017-01-06 05:03:00    2017-01-06 05:03:00
59035    24328    850    2017-01-06 03:23:00    2017-01-06 03:23:00
59036    24328    913    2017-01-06 14:39:00    2017-01-06 14:39:00
59037    24328    792    2017-01-06 09:52:00    2017-01-06 09:52:00
59038    24329    822    2017-01-06 05:38:00    2017-01-06 05:38:00
59039    24329    672    2017-01-06 02:59:00    2017-01-06 02:59:00
59040    24329    565    2017-01-06 13:58:00    2017-01-06 13:58:00
59041    24329    799    2017-01-06 04:41:00    2017-01-06 04:41:00
59042    24329    497    2017-01-06 07:59:00    2017-01-06 07:59:00
59043    24330    713    2017-01-06 09:02:00    2017-01-06 09:02:00
59044    24330    692    2017-01-06 13:00:00    2017-01-06 13:00:00
59045    24330    797    2017-01-06 08:22:00    2017-01-06 08:22:00
59046    24330    925    2017-01-06 09:23:00    2017-01-06 09:23:00
59047    24330    795    2017-01-06 02:32:00    2017-01-06 02:32:00
59048    24331    737    2017-01-06 18:31:00    2017-01-06 18:31:00
59049    24331    894    2017-01-06 06:17:00    2017-01-06 06:17:00
59050    24331    833    2017-01-06 05:26:00    2017-01-06 05:26:00
59051    24331    873    2017-01-06 17:00:00    2017-01-06 17:00:00
59052    24331    765    2017-01-06 17:14:00    2017-01-06 17:14:00
59053    24332    834    2017-01-06 15:37:00    2017-01-06 15:37:00
59054    24332    655    2017-01-06 11:57:00    2017-01-06 11:57:00
59055    24332    649    2017-01-06 18:07:00    2017-01-06 18:07:00
59056    24332    855    2017-01-06 05:36:00    2017-01-06 05:36:00
59057    24332    743    2017-01-06 20:37:00    2017-01-06 20:37:00
59058    24333    621    2017-01-06 11:59:00    2017-01-06 11:59:00
59059    24333    563    2017-01-06 08:50:00    2017-01-06 08:50:00
59060    24333    753    2017-01-06 11:09:00    2017-01-06 11:09:00
59061    24333    598    2017-01-06 15:34:00    2017-01-06 15:34:00
59062    24333    541    2017-01-06 03:13:00    2017-01-06 03:13:00
59063    24334    912    2017-01-06 08:50:00    2017-01-06 08:50:00
59064    24334    935    2017-01-06 21:59:00    2017-01-06 21:59:00
59065    24334    702    2017-01-06 13:58:00    2017-01-06 13:58:00
59066    24334    888    2017-01-06 02:28:00    2017-01-06 02:28:00
59067    24334    943    2017-01-06 11:05:00    2017-01-06 11:05:00
59068    24335    859    2017-01-06 15:21:00    2017-01-06 15:21:00
59069    24335    528    2017-01-06 04:40:00    2017-01-06 04:40:00
59070    24335    610    2017-01-06 19:23:00    2017-01-06 19:23:00
59071    24335    778    2017-01-06 11:29:00    2017-01-06 11:29:00
59072    24335    810    2017-01-06 05:41:00    2017-01-06 05:41:00
59073    24336    547    2017-01-06 23:15:00    2017-01-06 23:15:00
59074    24336    621    2017-01-06 15:49:00    2017-01-06 15:49:00
59075    24336    660    2017-01-06 22:54:00    2017-01-06 22:54:00
59076    24336    955    2017-01-06 23:47:00    2017-01-06 23:47:00
59077    24336    649    2017-01-06 20:10:00    2017-01-06 20:10:00
59078    24337    899    2017-01-06 19:18:00    2017-01-06 19:18:00
59079    24337    867    2017-01-06 19:18:00    2017-01-06 19:18:00
59080    24337    573    2017-01-06 05:58:00    2017-01-06 05:58:00
59081    24337    843    2017-01-06 09:39:00    2017-01-06 09:39:00
59082    24337    673    2017-01-06 10:08:00    2017-01-06 10:08:00
59083    24338    864    2017-01-06 08:27:00    2017-01-06 08:27:00
59084    24338    648    2017-01-06 01:53:00    2017-01-06 01:53:00
59085    24338    679    2017-01-06 14:22:00    2017-01-06 14:22:00
59086    24338    831    2017-01-06 11:32:00    2017-01-06 11:32:00
59087    24338    473    2017-01-06 05:03:00    2017-01-06 05:03:00
59088    24339    468    2017-01-06 10:26:00    2017-01-06 10:26:00
59089    24339    915    2017-01-06 18:08:00    2017-01-06 18:08:00
59090    24339    692    2017-01-06 06:51:00    2017-01-06 06:51:00
59091    24339    518    2017-01-06 16:17:00    2017-01-06 16:17:00
59092    24339    768    2017-01-06 15:48:00    2017-01-06 15:48:00
59093    24340    503    2017-01-06 01:37:00    2017-01-06 01:37:00
59094    24340    862    2017-01-06 19:51:00    2017-01-06 19:51:00
59095    24340    931    2017-01-06 21:10:00    2017-01-06 21:10:00
59096    24340    620    2017-01-06 21:36:00    2017-01-06 21:36:00
59097    24340    869    2017-01-06 05:52:00    2017-01-06 05:52:00
59098    24341    814    2017-01-06 04:23:00    2017-01-06 04:23:00
59099    24341    875    2017-01-06 06:38:00    2017-01-06 06:38:00
59100    24341    714    2017-01-06 19:32:00    2017-01-06 19:32:00
59101    24341    637    2017-01-06 14:09:00    2017-01-06 14:09:00
59102    24341    818    2017-01-06 05:33:00    2017-01-06 05:33:00
59103    24342    530    2017-01-06 10:34:00    2017-01-06 10:34:00
59104    24342    627    2017-01-06 14:24:00    2017-01-06 14:24:00
59105    24342    731    2017-01-06 14:07:00    2017-01-06 14:07:00
59106    24342    941    2017-01-06 14:03:00    2017-01-06 14:03:00
59107    24342    928    2017-01-06 07:46:00    2017-01-06 07:46:00
59108    24343    867    2017-01-06 13:54:00    2017-01-06 13:54:00
59109    24343    723    2017-01-06 05:55:00    2017-01-06 05:55:00
59110    24343    631    2017-01-06 10:07:00    2017-01-06 10:07:00
59111    24343    667    2017-01-06 17:20:00    2017-01-06 17:20:00
59112    24343    711    2017-01-06 20:39:00    2017-01-06 20:39:00
59113    24344    865    2017-01-06 04:40:00    2017-01-06 04:40:00
59114    24344    714    2017-01-06 20:53:00    2017-01-06 20:53:00
59115    24344    537    2017-01-06 05:15:00    2017-01-06 05:15:00
59116    24344    513    2017-01-06 01:39:00    2017-01-06 01:39:00
59117    24344    804    2017-01-06 23:36:00    2017-01-06 23:36:00
59118    24345    573    2017-01-06 10:58:00    2017-01-06 10:58:00
59119    24345    519    2017-01-06 18:23:00    2017-01-06 18:23:00
59120    24345    507    2017-01-06 12:16:00    2017-01-06 12:16:00
59121    24345    941    2017-01-06 23:48:00    2017-01-06 23:48:00
59122    24345    481    2017-01-06 02:17:00    2017-01-06 02:17:00
59123    24346    493    2017-01-06 22:05:00    2017-01-06 22:05:00
59124    24346    710    2017-01-06 06:06:00    2017-01-06 06:06:00
59125    24346    495    2017-01-06 20:44:00    2017-01-06 20:44:00
59126    24346    830    2017-01-06 12:42:00    2017-01-06 12:42:00
59127    24346    795    2017-01-06 02:17:00    2017-01-06 02:17:00
59128    24347    621    2017-01-06 01:17:00    2017-01-06 01:17:00
59129    24347    702    2017-01-06 23:04:00    2017-01-06 23:04:00
59130    24347    922    2017-01-06 17:01:00    2017-01-06 17:01:00
59131    24347    930    2017-01-06 11:26:00    2017-01-06 11:26:00
59132    24347    764    2017-01-06 09:16:00    2017-01-06 09:16:00
59133    24348    520    2017-01-06 12:03:00    2017-01-06 12:03:00
59134    24348    713    2017-01-06 04:44:00    2017-01-06 04:44:00
59135    24348    548    2017-01-06 04:49:00    2017-01-06 04:49:00
59136    24348    534    2017-01-06 02:58:00    2017-01-06 02:58:00
59137    24348    893    2017-01-06 22:37:00    2017-01-06 22:37:00
59138    24349    620    2017-01-06 09:41:00    2017-01-06 09:41:00
59139    24349    541    2017-01-06 08:48:00    2017-01-06 08:48:00
59140    24349    506    2017-01-06 20:06:00    2017-01-06 20:06:00
59141    24349    641    2017-01-06 23:16:00    2017-01-06 23:16:00
59142    24349    632    2017-01-06 21:11:00    2017-01-06 21:11:00
59143    24350    778    2017-01-06 13:02:00    2017-01-06 13:02:00
59144    24350    800    2017-01-06 21:02:00    2017-01-06 21:02:00
59145    24350    917    2017-01-06 14:31:00    2017-01-06 14:31:00
59146    24350    922    2017-01-06 05:36:00    2017-01-06 05:36:00
59147    24350    592    2017-01-06 04:11:00    2017-01-06 04:11:00
59148    24351    606    2017-01-06 12:56:00    2017-01-06 12:56:00
59149    24351    749    2017-01-06 17:11:00    2017-01-06 17:11:00
59150    24351    475    2017-01-06 17:03:00    2017-01-06 17:03:00
59151    24351    942    2017-01-06 15:31:00    2017-01-06 15:31:00
59152    24351    854    2017-01-06 19:08:00    2017-01-06 19:08:00
59153    24352    835    2017-01-06 08:06:00    2017-01-06 08:06:00
59154    24352    536    2017-01-06 05:09:00    2017-01-06 05:09:00
59155    24352    474    2017-01-06 08:38:00    2017-01-06 08:38:00
59156    24352    724    2017-01-06 14:42:00    2017-01-06 14:42:00
59157    24352    788    2017-01-06 16:24:00    2017-01-06 16:24:00
59158    24353    756    2017-01-06 17:52:00    2017-01-06 17:52:00
59159    24353    500    2017-01-06 03:53:00    2017-01-06 03:53:00
59160    24353    879    2017-01-06 13:45:00    2017-01-06 13:45:00
59161    24353    826    2017-01-06 01:26:00    2017-01-06 01:26:00
59162    24353    664    2017-01-06 21:49:00    2017-01-06 21:49:00
59163    24354    558    2017-01-06 02:22:00    2017-01-06 02:22:00
59164    24354    934    2017-01-06 09:02:00    2017-01-06 09:02:00
59165    24354    874    2017-01-06 18:02:00    2017-01-06 18:02:00
59166    24354    800    2017-01-06 10:20:00    2017-01-06 10:20:00
59167    24354    666    2017-01-06 22:20:00    2017-01-06 22:20:00
59168    24355    931    2017-01-06 09:21:00    2017-01-06 09:21:00
59169    24355    466    2017-01-06 07:32:00    2017-01-06 07:32:00
59170    24355    574    2017-01-06 19:16:00    2017-01-06 19:16:00
59171    24355    887    2017-01-06 18:30:00    2017-01-06 18:30:00
59172    24355    487    2017-01-06 09:00:00    2017-01-06 09:00:00
59173    24356    485    2017-01-06 02:36:00    2017-01-06 02:36:00
59174    24356    900    2017-01-06 13:55:00    2017-01-06 13:55:00
59175    24356    479    2017-01-06 09:44:00    2017-01-06 09:44:00
59176    24356    761    2017-01-06 11:50:00    2017-01-06 11:50:00
59177    24356    623    2017-01-06 16:50:00    2017-01-06 16:50:00
59178    24357    846    2017-01-06 19:30:00    2017-01-06 19:30:00
59179    24357    645    2017-01-06 09:06:00    2017-01-06 09:06:00
59180    24357    850    2017-01-06 13:31:00    2017-01-06 13:31:00
59181    24357    543    2017-01-06 13:49:00    2017-01-06 13:49:00
59182    24357    819    2017-01-06 19:34:00    2017-01-06 19:34:00
59183    24358    512    2017-01-06 18:36:00    2017-01-06 18:36:00
59184    24358    959    2017-01-06 03:03:00    2017-01-06 03:03:00
59185    24358    730    2017-01-06 04:07:00    2017-01-06 04:07:00
59186    24358    843    2017-01-06 17:08:00    2017-01-06 17:08:00
59187    24358    945    2017-01-06 07:14:00    2017-01-06 07:14:00
59188    24359    961    2017-01-06 09:59:00    2017-01-06 09:59:00
59189    24359    940    2017-01-06 01:10:00    2017-01-06 01:10:00
59190    24359    817    2017-01-06 15:05:00    2017-01-06 15:05:00
59191    24359    801    2017-01-06 19:49:00    2017-01-06 19:49:00
59192    24359    875    2017-01-06 20:13:00    2017-01-06 20:13:00
59193    24360    740    2017-01-06 03:59:00    2017-01-06 03:59:00
59194    24360    513    2017-01-06 12:55:00    2017-01-06 12:55:00
59195    24360    918    2017-01-06 03:23:00    2017-01-06 03:23:00
59196    24360    631    2017-01-06 16:54:00    2017-01-06 16:54:00
59197    24360    729    2017-01-06 15:22:00    2017-01-06 15:22:00
59198    24361    799    2017-01-06 21:16:00    2017-01-06 21:16:00
59199    24361    748    2017-01-06 14:44:00    2017-01-06 14:44:00
59200    24361    897    2017-01-06 05:57:00    2017-01-06 05:57:00
59201    24361    493    2017-01-06 07:23:00    2017-01-06 07:23:00
59202    24361    719    2017-01-06 23:34:00    2017-01-06 23:34:00
59203    24362    831    2017-01-06 07:10:00    2017-01-06 07:10:00
59204    24362    531    2017-01-06 12:34:00    2017-01-06 12:34:00
59205    24362    467    2017-01-06 15:53:00    2017-01-06 15:53:00
59206    24362    498    2017-01-06 23:07:00    2017-01-06 23:07:00
59207    24362    593    2017-01-06 21:24:00    2017-01-06 21:24:00
59208    24363    792    2017-01-06 20:16:00    2017-01-06 20:16:00
59209    24363    927    2017-01-06 05:13:00    2017-01-06 05:13:00
59210    24363    880    2017-01-06 21:07:00    2017-01-06 21:07:00
59211    24363    848    2017-01-06 18:29:00    2017-01-06 18:29:00
59212    24363    887    2017-01-06 04:39:00    2017-01-06 04:39:00
59213    24364    498    2017-01-06 01:53:00    2017-01-06 01:53:00
59214    24364    872    2017-01-06 06:26:00    2017-01-06 06:26:00
59215    24364    709    2017-01-06 09:27:00    2017-01-06 09:27:00
59216    24364    674    2017-01-06 17:55:00    2017-01-06 17:55:00
59217    24364    875    2017-01-06 14:52:00    2017-01-06 14:52:00
59218    24365    674    2017-01-06 09:29:00    2017-01-06 09:29:00
59219    24365    540    2017-01-06 17:32:00    2017-01-06 17:32:00
59220    24365    649    2017-01-06 02:03:00    2017-01-06 02:03:00
59221    24365    882    2017-01-06 03:35:00    2017-01-06 03:35:00
59222    24365    912    2017-01-06 13:53:00    2017-01-06 13:53:00
59223    24366    522    2017-01-06 17:43:00    2017-01-06 17:43:00
59224    24366    479    2017-01-06 04:24:00    2017-01-06 04:24:00
59225    24366    472    2017-01-06 16:31:00    2017-01-06 16:31:00
59226    24366    656    2017-01-06 14:23:00    2017-01-06 14:23:00
59227    24366    773    2017-01-06 07:30:00    2017-01-06 07:30:00
59228    24367    895    2017-01-06 09:13:00    2017-01-06 09:13:00
59229    24367    678    2017-01-06 01:23:00    2017-01-06 01:23:00
59230    24367    485    2017-01-06 04:41:00    2017-01-06 04:41:00
59231    24367    664    2017-01-06 07:29:00    2017-01-06 07:29:00
59232    24367    765    2017-01-06 11:58:00    2017-01-06 11:58:00
59233    24368    950    2017-01-06 07:33:00    2017-01-06 07:33:00
59234    24368    576    2017-01-06 19:51:00    2017-01-06 19:51:00
59235    24368    496    2017-01-06 23:01:00    2017-01-06 23:01:00
59236    24368    600    2017-01-06 10:06:00    2017-01-06 10:06:00
59237    24368    886    2017-01-06 16:54:00    2017-01-06 16:54:00
59238    24369    913    2017-01-06 06:39:00    2017-01-06 06:39:00
59239    24369    871    2017-01-06 04:52:00    2017-01-06 04:52:00
59240    24369    488    2017-01-06 20:14:00    2017-01-06 20:14:00
59241    24369    694    2017-01-06 03:48:00    2017-01-06 03:48:00
59242    24369    741    2017-01-06 12:15:00    2017-01-06 12:15:00
59243    24370    865    2017-01-06 01:29:00    2017-01-06 01:29:00
59244    24370    605    2017-01-06 20:25:00    2017-01-06 20:25:00
59245    24370    532    2017-01-06 19:33:00    2017-01-06 19:33:00
59246    24370    574    2017-01-06 15:10:00    2017-01-06 15:10:00
59247    24370    627    2017-01-06 09:04:00    2017-01-06 09:04:00
59248    24371    563    2017-01-06 05:25:00    2017-01-06 05:25:00
59249    24371    476    2017-01-06 02:35:00    2017-01-06 02:35:00
59250    24371    581    2017-01-06 23:49:00    2017-01-06 23:49:00
59251    24371    556    2017-01-06 05:53:00    2017-01-06 05:53:00
59252    24371    721    2017-01-06 01:33:00    2017-01-06 01:33:00
59253    24372    683    2017-01-06 18:53:00    2017-01-06 18:53:00
59254    24372    555    2017-01-06 23:51:00    2017-01-06 23:51:00
59255    24372    736    2017-01-06 09:34:00    2017-01-06 09:34:00
59256    24372    669    2017-01-06 06:22:00    2017-01-06 06:22:00
59257    24372    700    2017-01-06 19:22:00    2017-01-06 19:22:00
59258    24373    719    2017-01-06 05:05:00    2017-01-06 05:05:00
59259    24373    944    2017-01-06 05:25:00    2017-01-06 05:25:00
59260    24373    612    2017-01-06 23:51:00    2017-01-06 23:51:00
59261    24373    554    2017-01-06 03:10:00    2017-01-06 03:10:00
59262    24373    669    2017-01-06 03:33:00    2017-01-06 03:33:00
59263    24374    608    2017-01-06 06:40:00    2017-01-06 06:40:00
59264    24374    549    2017-01-06 12:42:00    2017-01-06 12:42:00
59265    24374    577    2017-01-06 03:11:00    2017-01-06 03:11:00
59266    24374    819    2017-01-06 03:14:00    2017-01-06 03:14:00
59267    24374    822    2017-01-06 10:50:00    2017-01-06 10:50:00
59268    24375    562    2017-01-06 09:51:00    2017-01-06 09:51:00
59269    24375    899    2017-01-06 10:54:00    2017-01-06 10:54:00
59270    24375    707    2017-01-06 10:41:00    2017-01-06 10:41:00
59271    24375    474    2017-01-06 04:07:00    2017-01-06 04:07:00
59272    24375    775    2017-01-06 09:18:00    2017-01-06 09:18:00
59273    24376    835    2017-01-06 23:39:00    2017-01-06 23:39:00
59274    24376    597    2017-01-06 14:03:00    2017-01-06 14:03:00
59275    24376    929    2017-01-06 20:17:00    2017-01-06 20:17:00
59276    24376    801    2017-01-06 18:13:00    2017-01-06 18:13:00
59277    24376    785    2017-01-06 15:23:00    2017-01-06 15:23:00
59278    24377    481    2017-01-07 15:56:00    2017-01-07 15:56:00
59279    24377    742    2017-01-07 07:50:00    2017-01-07 07:50:00
59280    24377    953    2017-01-07 08:42:00    2017-01-07 08:42:00
59281    24377    586    2017-01-07 17:13:00    2017-01-07 17:13:00
59282    24377    531    2017-01-07 15:00:00    2017-01-07 15:00:00
59283    24378    818    2017-01-07 06:11:00    2017-01-07 06:11:00
59284    24378    898    2017-01-07 08:26:00    2017-01-07 08:26:00
59285    24378    814    2017-01-07 05:32:00    2017-01-07 05:32:00
59286    24378    750    2017-01-07 06:47:00    2017-01-07 06:47:00
59287    24378    519    2017-01-07 10:44:00    2017-01-07 10:44:00
59288    24379    888    2017-01-07 06:00:00    2017-01-07 06:00:00
59289    24379    549    2017-01-07 12:42:00    2017-01-07 12:42:00
59290    24379    865    2017-01-07 05:44:00    2017-01-07 05:44:00
59291    24379    714    2017-01-07 06:50:00    2017-01-07 06:50:00
59292    24379    660    2017-01-07 14:25:00    2017-01-07 14:25:00
59293    24380    937    2017-01-07 21:35:00    2017-01-07 21:35:00
59294    24380    924    2017-01-07 05:53:00    2017-01-07 05:53:00
59295    24380    953    2017-01-07 22:02:00    2017-01-07 22:02:00
59296    24380    685    2017-01-07 23:21:00    2017-01-07 23:21:00
59297    24380    643    2017-01-07 11:31:00    2017-01-07 11:31:00
59298    24381    596    2017-01-07 12:08:00    2017-01-07 12:08:00
59299    24381    599    2017-01-07 05:46:00    2017-01-07 05:46:00
59300    24381    803    2017-01-07 15:17:00    2017-01-07 15:17:00
59301    24381    906    2017-01-07 12:35:00    2017-01-07 12:35:00
59302    24381    522    2017-01-07 05:44:00    2017-01-07 05:44:00
59303    24382    780    2017-01-07 01:26:00    2017-01-07 01:26:00
59304    24382    723    2017-01-07 13:07:00    2017-01-07 13:07:00
59305    24382    654    2017-01-07 17:57:00    2017-01-07 17:57:00
59306    24382    643    2017-01-07 14:51:00    2017-01-07 14:51:00
59307    24382    531    2017-01-07 10:13:00    2017-01-07 10:13:00
59308    24383    727    2017-01-07 10:35:00    2017-01-07 10:35:00
59309    24383    960    2017-01-07 08:56:00    2017-01-07 08:56:00
59310    24383    669    2017-01-07 17:41:00    2017-01-07 17:41:00
59311    24383    860    2017-01-07 08:32:00    2017-01-07 08:32:00
59312    24383    779    2017-01-07 03:39:00    2017-01-07 03:39:00
59313    24384    759    2017-01-07 03:11:00    2017-01-07 03:11:00
59314    24384    637    2017-01-07 23:19:00    2017-01-07 23:19:00
59315    24384    879    2017-01-07 21:57:00    2017-01-07 21:57:00
59316    24384    818    2017-01-07 10:45:00    2017-01-07 10:45:00
59317    24384    548    2017-01-07 06:42:00    2017-01-07 06:42:00
59318    24385    790    2017-01-07 17:28:00    2017-01-07 17:28:00
59319    24385    695    2017-01-07 15:00:00    2017-01-07 15:00:00
59320    24385    563    2017-01-07 07:21:00    2017-01-07 07:21:00
59321    24385    506    2017-01-07 22:37:00    2017-01-07 22:37:00
59322    24385    796    2017-01-07 14:07:00    2017-01-07 14:07:00
59323    24386    789    2017-01-07 02:58:00    2017-01-07 02:58:00
59324    24386    572    2017-01-07 23:11:00    2017-01-07 23:11:00
59325    24386    717    2017-01-07 17:25:00    2017-01-07 17:25:00
59326    24386    903    2017-01-07 02:35:00    2017-01-07 02:35:00
59327    24386    719    2017-01-07 16:28:00    2017-01-07 16:28:00
59328    24387    731    2017-01-07 09:53:00    2017-01-07 09:53:00
59329    24387    468    2017-01-07 04:48:00    2017-01-07 04:48:00
59330    24387    489    2017-01-07 09:59:00    2017-01-07 09:59:00
59331    24387    961    2017-01-07 05:35:00    2017-01-07 05:35:00
59332    24387    940    2017-01-07 01:03:00    2017-01-07 01:03:00
59333    24388    895    2017-01-07 23:54:00    2017-01-07 23:54:00
59334    24388    681    2017-01-07 17:46:00    2017-01-07 17:46:00
59335    24388    881    2017-01-07 21:58:00    2017-01-07 21:58:00
59336    24388    501    2017-01-07 09:26:00    2017-01-07 09:26:00
59337    24388    627    2017-01-07 19:19:00    2017-01-07 19:19:00
59338    24389    582    2017-01-07 23:44:00    2017-01-07 23:44:00
59339    24389    803    2017-01-07 05:47:00    2017-01-07 05:47:00
59340    24389    936    2017-01-07 17:44:00    2017-01-07 17:44:00
59341    24389    812    2017-01-07 01:03:00    2017-01-07 01:03:00
59342    24389    828    2017-01-07 21:53:00    2017-01-07 21:53:00
59343    24390    926    2017-01-07 16:00:00    2017-01-07 16:00:00
59344    24390    522    2017-01-07 12:02:00    2017-01-07 12:02:00
59345    24390    854    2017-01-07 07:09:00    2017-01-07 07:09:00
59346    24390    561    2017-01-07 05:56:00    2017-01-07 05:56:00
59347    24390    761    2017-01-07 03:50:00    2017-01-07 03:50:00
59348    24391    489    2017-01-07 07:57:00    2017-01-07 07:57:00
59349    24391    736    2017-01-07 10:32:00    2017-01-07 10:32:00
59350    24391    551    2017-01-07 07:02:00    2017-01-07 07:02:00
59351    24391    846    2017-01-07 17:52:00    2017-01-07 17:52:00
59352    24391    601    2017-01-07 06:48:00    2017-01-07 06:48:00
59353    24392    892    2017-01-07 07:31:00    2017-01-07 07:31:00
59354    24392    747    2017-01-07 11:31:00    2017-01-07 11:31:00
59355    24392    681    2017-01-07 02:39:00    2017-01-07 02:39:00
59356    24392    943    2017-01-07 16:59:00    2017-01-07 16:59:00
59357    24392    805    2017-01-07 08:23:00    2017-01-07 08:23:00
59358    24393    857    2017-01-07 19:25:00    2017-01-07 19:25:00
59359    24393    881    2017-01-07 19:36:00    2017-01-07 19:36:00
59360    24393    747    2017-01-07 02:36:00    2017-01-07 02:36:00
59361    24393    791    2017-01-07 15:58:00    2017-01-07 15:58:00
59362    24393    961    2017-01-07 08:36:00    2017-01-07 08:36:00
59363    24394    928    2017-01-07 15:50:00    2017-01-07 15:50:00
59364    24394    541    2017-01-07 03:10:00    2017-01-07 03:10:00
59365    24394    924    2017-01-07 21:11:00    2017-01-07 21:11:00
59366    24394    491    2017-01-07 04:32:00    2017-01-07 04:32:00
59367    24394    701    2017-01-07 17:30:00    2017-01-07 17:30:00
59368    24395    490    2017-01-07 13:06:00    2017-01-07 13:06:00
59369    24395    470    2017-01-07 12:58:00    2017-01-07 12:58:00
59370    24395    759    2017-01-07 01:07:00    2017-01-07 01:07:00
59371    24395    515    2017-01-07 14:11:00    2017-01-07 14:11:00
59372    24395    501    2017-01-07 02:48:00    2017-01-07 02:48:00
59373    24396    754    2017-01-07 19:52:00    2017-01-07 19:52:00
59374    24396    734    2017-01-07 21:21:00    2017-01-07 21:21:00
59375    24396    781    2017-01-07 07:51:00    2017-01-07 07:51:00
59376    24396    509    2017-01-07 01:17:00    2017-01-07 01:17:00
59377    24396    708    2017-01-07 16:51:00    2017-01-07 16:51:00
59378    24397    545    2017-01-07 18:49:00    2017-01-07 18:49:00
59379    24397    465    2017-01-07 18:13:00    2017-01-07 18:13:00
59380    24397    765    2017-01-07 10:24:00    2017-01-07 10:24:00
59381    24397    802    2017-01-07 07:13:00    2017-01-07 07:13:00
59382    24397    734    2017-01-07 10:03:00    2017-01-07 10:03:00
59383    24398    593    2017-01-07 06:21:00    2017-01-07 06:21:00
59384    24398    710    2017-01-07 21:16:00    2017-01-07 21:16:00
59385    24398    582    2017-01-07 12:05:00    2017-01-07 12:05:00
59386    24398    606    2017-01-07 14:24:00    2017-01-07 14:24:00
59387    24398    816    2017-01-07 10:34:00    2017-01-07 10:34:00
59388    24399    884    2017-01-07 17:06:00    2017-01-07 17:06:00
59389    24399    906    2017-01-07 05:13:00    2017-01-07 05:13:00
59390    24399    526    2017-01-07 01:44:00    2017-01-07 01:44:00
59391    24399    902    2017-01-07 01:06:00    2017-01-07 01:06:00
59392    24399    767    2017-01-07 06:22:00    2017-01-07 06:22:00
59393    24400    787    2017-01-08 14:37:00    2017-01-08 14:37:00
59394    24400    719    2017-01-08 17:06:00    2017-01-08 17:06:00
59395    24400    525    2017-01-08 04:43:00    2017-01-08 04:43:00
59396    24400    514    2017-01-08 04:09:00    2017-01-08 04:09:00
59397    24400    650    2017-01-08 11:54:00    2017-01-08 11:54:00
59398    24401    816    2017-01-08 18:45:00    2017-01-08 18:45:00
59399    24401    786    2017-01-08 01:28:00    2017-01-08 01:28:00
59400    24401    486    2017-01-08 02:55:00    2017-01-08 02:55:00
59401    24401    503    2017-01-08 06:00:00    2017-01-08 06:00:00
59402    24401    899    2017-01-08 21:31:00    2017-01-08 21:31:00
59403    24402    527    2017-01-08 04:50:00    2017-01-08 04:50:00
59404    24402    764    2017-01-08 02:01:00    2017-01-08 02:01:00
59405    24402    531    2017-01-08 22:27:00    2017-01-08 22:27:00
59406    24402    545    2017-01-08 03:06:00    2017-01-08 03:06:00
59407    24402    588    2017-01-08 02:13:00    2017-01-08 02:13:00
59408    24403    791    2017-01-08 04:21:00    2017-01-08 04:21:00
59409    24403    654    2017-01-08 14:18:00    2017-01-08 14:18:00
59410    24403    940    2017-01-08 09:36:00    2017-01-08 09:36:00
59411    24403    737    2017-01-08 21:37:00    2017-01-08 21:37:00
59412    24403    640    2017-01-08 05:32:00    2017-01-08 05:32:00
59413    24404    773    2017-01-08 11:39:00    2017-01-08 11:39:00
59414    24404    817    2017-01-08 03:26:00    2017-01-08 03:26:00
59415    24404    694    2017-01-08 20:26:00    2017-01-08 20:26:00
59416    24404    529    2017-01-08 02:53:00    2017-01-08 02:53:00
59417    24404    829    2017-01-08 12:26:00    2017-01-08 12:26:00
59418    24405    522    2017-01-08 16:17:00    2017-01-08 16:17:00
59419    24405    813    2017-01-08 16:16:00    2017-01-08 16:16:00
59420    24405    858    2017-01-08 19:07:00    2017-01-08 19:07:00
59421    24405    602    2017-01-08 23:00:00    2017-01-08 23:00:00
59422    24405    478    2017-01-08 17:13:00    2017-01-08 17:13:00
59423    24406    879    2017-01-08 07:47:00    2017-01-08 07:47:00
59424    24406    676    2017-01-08 14:07:00    2017-01-08 14:07:00
59425    24406    848    2017-01-08 16:00:00    2017-01-08 16:00:00
59426    24406    830    2017-01-08 11:00:00    2017-01-08 11:00:00
59427    24406    867    2017-01-08 21:52:00    2017-01-08 21:52:00
59428    24407    699    2017-01-08 02:10:00    2017-01-08 02:10:00
59429    24407    582    2017-01-08 14:06:00    2017-01-08 14:06:00
59430    24407    764    2017-01-08 19:34:00    2017-01-08 19:34:00
59431    24407    590    2017-01-08 23:31:00    2017-01-08 23:31:00
59432    24407    944    2017-01-08 07:47:00    2017-01-08 07:47:00
59433    24408    918    2017-01-08 21:17:00    2017-01-08 21:17:00
59434    24408    893    2017-01-08 10:06:00    2017-01-08 10:06:00
59435    24408    609    2017-01-08 20:17:00    2017-01-08 20:17:00
59436    24408    729    2017-01-08 01:46:00    2017-01-08 01:46:00
59437    24408    692    2017-01-08 19:52:00    2017-01-08 19:52:00
59438    24409    831    2017-01-08 10:42:00    2017-01-08 10:42:00
59439    24409    828    2017-01-08 03:32:00    2017-01-08 03:32:00
59440    24409    754    2017-01-08 17:18:00    2017-01-08 17:18:00
59441    24409    578    2017-01-08 15:12:00    2017-01-08 15:12:00
59442    24409    844    2017-01-08 06:18:00    2017-01-08 06:18:00
59443    24410    811    2017-01-08 10:30:00    2017-01-08 10:30:00
59444    24410    709    2017-01-08 09:05:00    2017-01-08 09:05:00
59445    24410    756    2017-01-08 19:06:00    2017-01-08 19:06:00
59446    24410    760    2017-01-08 11:07:00    2017-01-08 11:07:00
59447    24410    723    2017-01-08 03:14:00    2017-01-08 03:14:00
59448    24411    687    2017-01-08 16:27:00    2017-01-08 16:27:00
59449    24411    704    2017-01-08 16:26:00    2017-01-08 16:26:00
59450    24411    729    2017-01-08 14:44:00    2017-01-08 14:44:00
59451    24411    678    2017-01-08 13:29:00    2017-01-08 13:29:00
59452    24411    652    2017-01-08 20:01:00    2017-01-08 20:01:00
59453    24412    959    2017-01-08 02:36:00    2017-01-08 02:36:00
59454    24412    748    2017-01-08 22:48:00    2017-01-08 22:48:00
59455    24412    851    2017-01-08 13:06:00    2017-01-08 13:06:00
59456    24412    612    2017-01-08 20:05:00    2017-01-08 20:05:00
59457    24412    748    2017-01-08 16:32:00    2017-01-08 16:32:00
59458    24413    921    2017-01-08 12:30:00    2017-01-08 12:30:00
59459    24413    534    2017-01-08 16:41:00    2017-01-08 16:41:00
59460    24413    664    2017-01-08 01:21:00    2017-01-08 01:21:00
59461    24413    472    2017-01-08 16:55:00    2017-01-08 16:55:00
59462    24413    699    2017-01-08 10:20:00    2017-01-08 10:20:00
59463    24414    960    2017-01-08 02:00:00    2017-01-08 02:00:00
59464    24414    640    2017-01-08 02:54:00    2017-01-08 02:54:00
59465    24414    904    2017-01-08 18:04:00    2017-01-08 18:04:00
59466    24414    913    2017-01-08 15:26:00    2017-01-08 15:26:00
59467    24414    839    2017-01-08 19:50:00    2017-01-08 19:50:00
59468    24415    734    2017-01-08 06:31:00    2017-01-08 06:31:00
59469    24415    655    2017-01-08 04:29:00    2017-01-08 04:29:00
59470    24415    573    2017-01-08 18:16:00    2017-01-08 18:16:00
59471    24415    933    2017-01-08 01:20:00    2017-01-08 01:20:00
59472    24415    711    2017-01-08 01:10:00    2017-01-08 01:10:00
59473    24416    590    2017-01-08 18:53:00    2017-01-08 18:53:00
59474    24416    837    2017-01-08 22:47:00    2017-01-08 22:47:00
59475    24416    740    2017-01-08 10:47:00    2017-01-08 10:47:00
59476    24416    956    2017-01-08 08:08:00    2017-01-08 08:08:00
59477    24416    725    2017-01-08 06:21:00    2017-01-08 06:21:00
59478    24417    923    2017-01-08 03:02:00    2017-01-08 03:02:00
59479    24417    523    2017-01-08 15:22:00    2017-01-08 15:22:00
59480    24417    515    2017-01-08 12:40:00    2017-01-08 12:40:00
59481    24417    494    2017-01-08 13:11:00    2017-01-08 13:11:00
59482    24417    899    2017-01-08 17:54:00    2017-01-08 17:54:00
59483    24418    571    2017-01-08 14:53:00    2017-01-08 14:53:00
59484    24418    616    2017-01-08 15:35:00    2017-01-08 15:35:00
59485    24418    665    2017-01-08 07:08:00    2017-01-08 07:08:00
59486    24418    827    2017-01-08 03:55:00    2017-01-08 03:55:00
59487    24418    760    2017-01-08 20:53:00    2017-01-08 20:53:00
59488    24419    895    2017-01-08 08:52:00    2017-01-08 08:52:00
59489    24419    628    2017-01-08 08:01:00    2017-01-08 08:01:00
59490    24419    826    2017-01-08 15:30:00    2017-01-08 15:30:00
59491    24419    613    2017-01-08 18:18:00    2017-01-08 18:18:00
59492    24419    526    2017-01-08 15:00:00    2017-01-08 15:00:00
59493    24420    763    2017-01-08 22:39:00    2017-01-08 22:39:00
59494    24420    790    2017-01-08 02:05:00    2017-01-08 02:05:00
59495    24420    706    2017-01-08 04:06:00    2017-01-08 04:06:00
59496    24420    537    2017-01-08 08:31:00    2017-01-08 08:31:00
59497    24420    515    2017-01-08 17:06:00    2017-01-08 17:06:00
59498    24421    765    2017-01-08 01:46:00    2017-01-08 01:46:00
59499    24421    835    2017-01-08 12:54:00    2017-01-08 12:54:00
59500    24421    787    2017-01-08 20:17:00    2017-01-08 20:17:00
59501    24421    629    2017-01-08 22:15:00    2017-01-08 22:15:00
59502    24421    666    2017-01-08 09:57:00    2017-01-08 09:57:00
59503    24422    800    2017-01-08 06:05:00    2017-01-08 06:05:00
59504    24422    773    2017-01-08 18:39:00    2017-01-08 18:39:00
59505    24422    718    2017-01-08 10:12:00    2017-01-08 10:12:00
59506    24422    935    2017-01-08 23:17:00    2017-01-08 23:17:00
59507    24422    701    2017-01-09 00:00:00    2017-01-09 00:00:00
59508    24423    568    2017-01-08 11:15:00    2017-01-08 11:15:00
59509    24423    544    2017-01-08 21:49:00    2017-01-08 21:49:00
59510    24423    648    2017-01-08 14:04:00    2017-01-08 14:04:00
59511    24423    630    2017-01-08 08:03:00    2017-01-08 08:03:00
59512    24423    674    2017-01-08 11:03:00    2017-01-08 11:03:00
59513    24424    508    2017-01-08 21:28:00    2017-01-08 21:28:00
59514    24424    633    2017-01-08 09:02:00    2017-01-08 09:02:00
59515    24424    679    2017-01-08 01:14:00    2017-01-08 01:14:00
59516    24424    948    2017-01-08 18:27:00    2017-01-08 18:27:00
59517    24424    844    2017-01-08 15:30:00    2017-01-08 15:30:00
59518    24425    925    2017-01-08 18:13:00    2017-01-08 18:13:00
59519    24425    531    2017-01-08 17:04:00    2017-01-08 17:04:00
59520    24425    808    2017-01-08 17:24:00    2017-01-08 17:24:00
59521    24425    881    2017-01-08 02:27:00    2017-01-08 02:27:00
59522    24425    530    2017-01-08 22:51:00    2017-01-08 22:51:00
59523    24426    597    2017-01-08 06:15:00    2017-01-08 06:15:00
59524    24426    723    2017-01-08 15:17:00    2017-01-08 15:17:00
59525    24426    629    2017-01-08 05:57:00    2017-01-08 05:57:00
59526    24426    482    2017-01-08 12:45:00    2017-01-08 12:45:00
59527    24426    572    2017-01-08 15:57:00    2017-01-08 15:57:00
59528    24427    491    2017-01-08 10:28:00    2017-01-08 10:28:00
59529    24427    809    2017-01-08 06:42:00    2017-01-08 06:42:00
59530    24427    750    2017-01-08 17:03:00    2017-01-08 17:03:00
59531    24427    872    2017-01-08 22:07:00    2017-01-08 22:07:00
59532    24427    661    2017-01-08 13:52:00    2017-01-08 13:52:00
59533    24428    482    2017-01-08 05:27:00    2017-01-08 05:27:00
59534    24428    936    2017-01-08 20:52:00    2017-01-08 20:52:00
59535    24428    476    2017-01-08 21:59:00    2017-01-08 21:59:00
59536    24428    580    2017-01-08 20:04:00    2017-01-08 20:04:00
59537    24428    701    2017-01-08 08:27:00    2017-01-08 08:27:00
59538    24429    924    2017-01-08 07:23:00    2017-01-08 07:23:00
59539    24429    567    2017-01-08 13:31:00    2017-01-08 13:31:00
59540    24429    596    2017-01-08 11:40:00    2017-01-08 11:40:00
59541    24429    651    2017-01-08 10:29:00    2017-01-08 10:29:00
59542    24429    469    2017-01-08 13:50:00    2017-01-08 13:50:00
59543    24430    546    2017-01-08 17:43:00    2017-01-08 17:43:00
59544    24430    653    2017-01-08 19:54:00    2017-01-08 19:54:00
59545    24430    519    2017-01-08 23:07:00    2017-01-08 23:07:00
59546    24430    555    2017-01-08 13:38:00    2017-01-08 13:38:00
59547    24430    777    2017-01-08 18:39:00    2017-01-08 18:39:00
59548    24431    887    2017-01-08 13:49:00    2017-01-08 13:49:00
59549    24431    637    2017-01-08 04:28:00    2017-01-08 04:28:00
59550    24431    487    2017-01-08 03:01:00    2017-01-08 03:01:00
59551    24431    765    2017-01-08 05:11:00    2017-01-08 05:11:00
59552    24431    620    2017-01-08 23:43:00    2017-01-08 23:43:00
59553    24432    711    2017-01-08 22:32:00    2017-01-08 22:32:00
59554    24432    605    2017-01-08 16:09:00    2017-01-08 16:09:00
59555    24432    707    2017-01-08 06:13:00    2017-01-08 06:13:00
59556    24432    803    2017-01-08 04:25:00    2017-01-08 04:25:00
59557    24432    849    2017-01-08 05:15:00    2017-01-08 05:15:00
59558    24433    475    2017-01-08 07:00:00    2017-01-08 07:00:00
59559    24433    828    2017-01-08 15:43:00    2017-01-08 15:43:00
59560    24433    852    2017-01-08 23:10:00    2017-01-08 23:10:00
59561    24433    959    2017-01-08 02:39:00    2017-01-08 02:39:00
59562    24433    698    2017-01-08 19:12:00    2017-01-08 19:12:00
59563    24434    600    2017-01-08 03:51:00    2017-01-08 03:51:00
59564    24434    945    2017-01-08 11:55:00    2017-01-08 11:55:00
59565    24434    741    2017-01-08 23:49:00    2017-01-08 23:49:00
59566    24434    949    2017-01-08 09:00:00    2017-01-08 09:00:00
59567    24434    470    2017-01-08 09:04:00    2017-01-08 09:04:00
59568    24435    885    2017-01-08 08:43:00    2017-01-08 08:43:00
59569    24435    808    2017-01-08 19:33:00    2017-01-08 19:33:00
59570    24435    530    2017-01-08 08:50:00    2017-01-08 08:50:00
59571    24435    688    2017-01-08 04:00:00    2017-01-08 04:00:00
59572    24435    765    2017-01-08 01:52:00    2017-01-08 01:52:00
59573    24436    519    2017-01-08 02:26:00    2017-01-08 02:26:00
59574    24436    948    2017-01-08 06:34:00    2017-01-08 06:34:00
59575    24436    707    2017-01-08 05:11:00    2017-01-08 05:11:00
59576    24436    611    2017-01-08 15:25:00    2017-01-08 15:25:00
59577    24436    651    2017-01-08 19:51:00    2017-01-08 19:51:00
59578    24437    501    2017-01-08 15:17:00    2017-01-08 15:17:00
59579    24437    571    2017-01-08 05:10:00    2017-01-08 05:10:00
59580    24437    794    2017-01-08 10:27:00    2017-01-08 10:27:00
59581    24437    719    2017-01-08 21:25:00    2017-01-08 21:25:00
59582    24437    875    2017-01-08 14:47:00    2017-01-08 14:47:00
59583    24438    600    2017-01-08 03:39:00    2017-01-08 03:39:00
59584    24438    685    2017-01-08 19:21:00    2017-01-08 19:21:00
59585    24438    703    2017-01-08 10:04:00    2017-01-08 10:04:00
59586    24438    838    2017-01-08 04:48:00    2017-01-08 04:48:00
59587    24438    587    2017-01-08 03:06:00    2017-01-08 03:06:00
59588    24439    542    2017-01-08 07:43:00    2017-01-08 07:43:00
59589    24439    936    2017-01-08 19:23:00    2017-01-08 19:23:00
59590    24439    883    2017-01-08 16:15:00    2017-01-08 16:15:00
59591    24439    558    2017-01-08 23:08:00    2017-01-08 23:08:00
59592    24439    539    2017-01-08 13:34:00    2017-01-08 13:34:00
59593    24440    836    2017-01-08 21:20:00    2017-01-08 21:20:00
59594    24440    957    2017-01-08 16:47:00    2017-01-08 16:47:00
59595    24440    803    2017-01-08 08:07:00    2017-01-08 08:07:00
59596    24440    761    2017-01-08 10:46:00    2017-01-08 10:46:00
59597    24440    616    2017-01-08 04:39:00    2017-01-08 04:39:00
59598    24441    782    2017-01-08 05:32:00    2017-01-08 05:32:00
59599    24441    643    2017-01-08 18:03:00    2017-01-08 18:03:00
59600    24441    791    2017-01-08 23:46:00    2017-01-08 23:46:00
59601    24441    679    2017-01-08 03:25:00    2017-01-08 03:25:00
59602    24441    582    2017-01-08 18:49:00    2017-01-08 18:49:00
59603    24442    716    2017-01-08 13:22:00    2017-01-08 13:22:00
59604    24442    743    2017-01-08 05:37:00    2017-01-08 05:37:00
59605    24442    830    2017-01-08 01:35:00    2017-01-08 01:35:00
59606    24442    829    2017-01-08 21:48:00    2017-01-08 21:48:00
59607    24442    648    2017-01-08 06:34:00    2017-01-08 06:34:00
59608    24443    787    2017-01-08 03:51:00    2017-01-08 03:51:00
59609    24443    780    2017-01-08 11:06:00    2017-01-08 11:06:00
59610    24443    793    2017-01-08 21:05:00    2017-01-08 21:05:00
59611    24443    473    2017-01-08 13:38:00    2017-01-08 13:38:00
59612    24443    507    2017-01-08 08:15:00    2017-01-08 08:15:00
59613    24444    944    2017-01-08 11:18:00    2017-01-08 11:18:00
59614    24444    675    2017-01-08 08:55:00    2017-01-08 08:55:00
59615    24444    563    2017-01-08 13:56:00    2017-01-08 13:56:00
59616    24444    521    2017-01-08 07:30:00    2017-01-08 07:30:00
59617    24444    819    2017-01-08 14:00:00    2017-01-08 14:00:00
59618    24445    609    2017-01-08 14:05:00    2017-01-08 14:05:00
59619    24445    773    2017-01-08 12:47:00    2017-01-08 12:47:00
59620    24445    800    2017-01-08 06:24:00    2017-01-08 06:24:00
59621    24445    579    2017-01-08 18:07:00    2017-01-08 18:07:00
59622    24445    645    2017-01-08 04:24:00    2017-01-08 04:24:00
59623    24446    775    2017-01-08 01:12:00    2017-01-08 01:12:00
59624    24446    470    2017-01-08 15:30:00    2017-01-08 15:30:00
59625    24446    860    2017-01-08 03:12:00    2017-01-08 03:12:00
59626    24446    684    2017-01-08 21:25:00    2017-01-08 21:25:00
59627    24446    860    2017-01-08 10:16:00    2017-01-08 10:16:00
59628    24447    785    2017-01-08 18:53:00    2017-01-08 18:53:00
59629    24447    786    2017-01-08 03:08:00    2017-01-08 03:08:00
59630    24447    470    2017-01-08 13:30:00    2017-01-08 13:30:00
59631    24447    826    2017-01-08 22:31:00    2017-01-08 22:31:00
59632    24447    523    2017-01-08 15:02:00    2017-01-08 15:02:00
59633    24448    630    2017-01-08 05:37:00    2017-01-08 05:37:00
59634    24448    685    2017-01-08 09:15:00    2017-01-08 09:15:00
59635    24448    824    2017-01-08 19:31:00    2017-01-08 19:31:00
59636    24448    602    2017-01-08 21:51:00    2017-01-08 21:51:00
59637    24448    530    2017-01-08 11:00:00    2017-01-08 11:00:00
59638    24449    762    2017-01-08 07:26:00    2017-01-08 07:26:00
59639    24449    870    2017-01-08 06:13:00    2017-01-08 06:13:00
59640    24449    673    2017-01-08 05:32:00    2017-01-08 05:32:00
59641    24449    636    2017-01-08 03:37:00    2017-01-08 03:37:00
59642    24449    484    2017-01-08 04:30:00    2017-01-08 04:30:00
59643    24450    500    2017-01-08 13:43:00    2017-01-08 13:43:00
59644    24450    840    2017-01-08 09:13:00    2017-01-08 09:13:00
59645    24450    634    2017-01-08 23:10:00    2017-01-08 23:10:00
59646    24450    871    2017-01-08 22:53:00    2017-01-08 22:53:00
59647    24450    873    2017-01-08 05:10:00    2017-01-08 05:10:00
59648    24451    885    2017-01-08 14:18:00    2017-01-08 14:18:00
59649    24451    481    2017-01-08 01:18:00    2017-01-08 01:18:00
59650    24451    629    2017-01-08 07:17:00    2017-01-08 07:17:00
59651    24451    733    2017-01-08 13:37:00    2017-01-08 13:37:00
59652    24451    639    2017-01-08 14:21:00    2017-01-08 14:21:00
59653    24452    750    2017-01-08 16:25:00    2017-01-08 16:25:00
59654    24452    747    2017-01-08 08:32:00    2017-01-08 08:32:00
59655    24452    547    2017-01-08 15:49:00    2017-01-08 15:49:00
59656    24452    770    2017-01-08 22:38:00    2017-01-08 22:38:00
59657    24452    748    2017-01-08 02:39:00    2017-01-08 02:39:00
59658    24453    638    2017-01-08 21:57:00    2017-01-08 21:57:00
59659    24453    735    2017-01-08 15:13:00    2017-01-08 15:13:00
59660    24453    769    2017-01-08 11:23:00    2017-01-08 11:23:00
59661    24453    503    2017-01-08 01:16:00    2017-01-08 01:16:00
59662    24453    693    2017-01-08 15:13:00    2017-01-08 15:13:00
59663    24454    848    2017-01-08 21:06:00    2017-01-08 21:06:00
59664    24454    911    2017-01-08 05:24:00    2017-01-08 05:24:00
59665    24454    745    2017-01-08 01:59:00    2017-01-08 01:59:00
59666    24454    902    2017-01-08 14:26:00    2017-01-08 14:26:00
59667    24454    640    2017-01-08 20:24:00    2017-01-08 20:24:00
59668    24455    551    2017-01-08 20:06:00    2017-01-08 20:06:00
59669    24455    879    2017-01-08 06:39:00    2017-01-08 06:39:00
59670    24455    760    2017-01-08 20:58:00    2017-01-08 20:58:00
59671    24455    683    2017-01-08 20:41:00    2017-01-08 20:41:00
59672    24455    718    2017-01-08 13:12:00    2017-01-08 13:12:00
59673    24456    725    2017-01-08 09:07:00    2017-01-08 09:07:00
59674    24456    901    2017-01-08 09:00:00    2017-01-08 09:00:00
59675    24456    669    2017-01-08 02:24:00    2017-01-08 02:24:00
59676    24456    668    2017-01-08 16:31:00    2017-01-08 16:31:00
59677    24456    649    2017-01-08 13:33:00    2017-01-08 13:33:00
59678    24457    486    2017-01-08 18:11:00    2017-01-08 18:11:00
59679    24457    744    2017-01-08 23:04:00    2017-01-08 23:04:00
59680    24457    494    2017-01-08 05:49:00    2017-01-08 05:49:00
59681    24457    481    2017-01-08 18:49:00    2017-01-08 18:49:00
59682    24457    648    2017-01-08 10:28:00    2017-01-08 10:28:00
59683    24458    902    2017-01-08 23:18:00    2017-01-08 23:18:00
59684    24458    546    2017-01-08 03:41:00    2017-01-08 03:41:00
59685    24458    919    2017-01-08 17:36:00    2017-01-08 17:36:00
59686    24458    558    2017-01-08 16:54:00    2017-01-08 16:54:00
59687    24458    576    2017-01-08 07:27:00    2017-01-08 07:27:00
59688    24459    758    2017-01-08 19:41:00    2017-01-08 19:41:00
59689    24459    885    2017-01-08 01:53:00    2017-01-08 01:53:00
59690    24459    565    2017-01-08 13:34:00    2017-01-08 13:34:00
59691    24459    737    2017-01-08 17:02:00    2017-01-08 17:02:00
59692    24459    513    2017-01-08 08:29:00    2017-01-08 08:29:00
59693    24460    858    2017-01-08 19:47:00    2017-01-08 19:47:00
59694    24460    591    2017-01-08 06:34:00    2017-01-08 06:34:00
59695    24460    622    2017-01-08 08:29:00    2017-01-08 08:29:00
59696    24460    778    2017-01-08 06:37:00    2017-01-08 06:37:00
59697    24460    651    2017-01-08 17:29:00    2017-01-08 17:29:00
59698    24461    834    2017-01-08 19:21:00    2017-01-08 19:21:00
59699    24461    874    2017-01-08 16:10:00    2017-01-08 16:10:00
59700    24461    771    2017-01-08 07:50:00    2017-01-08 07:50:00
59701    24461    658    2017-01-08 12:39:00    2017-01-08 12:39:00
59702    24461    867    2017-01-08 13:43:00    2017-01-08 13:43:00
59703    24462    742    2017-01-08 05:01:00    2017-01-08 05:01:00
59704    24462    882    2017-01-08 05:54:00    2017-01-08 05:54:00
59705    24462    785    2017-01-08 21:33:00    2017-01-08 21:33:00
59706    24462    760    2017-01-08 07:02:00    2017-01-08 07:02:00
59707    24462    745    2017-01-08 09:22:00    2017-01-08 09:22:00
59708    24463    600    2017-01-08 01:22:00    2017-01-08 01:22:00
59709    24463    945    2017-01-08 09:08:00    2017-01-08 09:08:00
59710    24463    927    2017-01-08 18:39:00    2017-01-08 18:39:00
59711    24463    640    2017-01-08 20:29:00    2017-01-08 20:29:00
59712    24463    781    2017-01-08 14:19:00    2017-01-08 14:19:00
59713    24464    821    2017-01-08 10:06:00    2017-01-08 10:06:00
59714    24464    863    2017-01-08 07:01:00    2017-01-08 07:01:00
59715    24464    815    2017-01-08 18:00:00    2017-01-08 18:00:00
59716    24464    660    2017-01-08 04:36:00    2017-01-08 04:36:00
59717    24464    751    2017-01-08 08:19:00    2017-01-08 08:19:00
59718    24465    678    2017-01-08 20:16:00    2017-01-08 20:16:00
59719    24465    646    2017-01-08 02:57:00    2017-01-08 02:57:00
59720    24465    739    2017-01-08 02:12:00    2017-01-08 02:12:00
59721    24465    587    2017-01-08 06:28:00    2017-01-08 06:28:00
59722    24465    669    2017-01-08 08:52:00    2017-01-08 08:52:00
59723    24466    594    2017-01-08 21:59:00    2017-01-08 21:59:00
59724    24466    937    2017-01-08 19:54:00    2017-01-08 19:54:00
59725    24466    475    2017-01-08 22:12:00    2017-01-08 22:12:00
59726    24466    883    2017-01-08 14:38:00    2017-01-08 14:38:00
59727    24466    567    2017-01-08 21:56:00    2017-01-08 21:56:00
59728    24467    926    2017-01-08 21:39:00    2017-01-08 21:39:00
59729    24467    774    2017-01-08 22:18:00    2017-01-08 22:18:00
59730    24467    910    2017-01-08 03:18:00    2017-01-08 03:18:00
59731    24467    479    2017-01-08 22:59:00    2017-01-08 22:59:00
59732    24467    539    2017-01-08 21:16:00    2017-01-08 21:16:00
59733    24468    917    2017-01-08 07:57:00    2017-01-08 07:57:00
59734    24468    844    2017-01-08 04:41:00    2017-01-08 04:41:00
59735    24468    818    2017-01-08 08:55:00    2017-01-08 08:55:00
59736    24468    529    2017-01-08 10:23:00    2017-01-08 10:23:00
59737    24468    811    2017-01-08 15:12:00    2017-01-08 15:12:00
59738    24469    496    2017-01-08 07:59:00    2017-01-08 07:59:00
59739    24469    611    2017-01-08 11:12:00    2017-01-08 11:12:00
59740    24469    874    2017-01-08 11:40:00    2017-01-08 11:40:00
59741    24469    633    2017-01-08 09:26:00    2017-01-08 09:26:00
59742    24469    823    2017-01-08 19:43:00    2017-01-08 19:43:00
59743    24470    634    2017-01-08 15:08:00    2017-01-08 15:08:00
59744    24470    477    2017-01-08 05:17:00    2017-01-08 05:17:00
59745    24470    643    2017-01-08 06:38:00    2017-01-08 06:38:00
59746    24470    915    2017-01-08 06:12:00    2017-01-08 06:12:00
59747    24470    610    2017-01-08 12:02:00    2017-01-08 12:02:00
59748    24471    531    2017-01-08 15:06:00    2017-01-08 15:06:00
59749    24471    522    2017-01-08 10:10:00    2017-01-08 10:10:00
59750    24471    508    2017-01-08 05:36:00    2017-01-08 05:36:00
59751    24471    898    2017-01-08 07:06:00    2017-01-08 07:06:00
59752    24471    846    2017-01-08 17:00:00    2017-01-08 17:00:00
59753    24472    821    2017-01-08 23:55:00    2017-01-08 23:55:00
59754    24472    776    2017-01-08 07:09:00    2017-01-08 07:09:00
59755    24472    632    2017-01-08 04:21:00    2017-01-08 04:21:00
59756    24472    550    2017-01-08 15:33:00    2017-01-08 15:33:00
59757    24472    491    2017-01-08 07:03:00    2017-01-08 07:03:00
59758    24473    794    2017-01-08 12:04:00    2017-01-08 12:04:00
59759    24473    780    2017-01-08 05:32:00    2017-01-08 05:32:00
59760    24473    610    2017-01-08 23:55:00    2017-01-08 23:55:00
59761    24473    676    2017-01-08 15:45:00    2017-01-08 15:45:00
59762    24473    859    2017-01-08 05:56:00    2017-01-08 05:56:00
59763    24474    474    2017-01-08 18:13:00    2017-01-08 18:13:00
59764    24474    759    2017-01-08 21:38:00    2017-01-08 21:38:00
59765    24474    481    2017-01-08 23:04:00    2017-01-08 23:04:00
59766    24474    956    2017-01-08 04:00:00    2017-01-08 04:00:00
59767    24474    767    2017-01-08 03:32:00    2017-01-08 03:32:00
59768    24475    530    2017-01-08 10:14:00    2017-01-08 10:14:00
59769    24475    797    2017-01-08 05:19:00    2017-01-08 05:19:00
59770    24475    775    2017-01-08 20:35:00    2017-01-08 20:35:00
59771    24475    910    2017-01-08 22:31:00    2017-01-08 22:31:00
59772    24475    520    2017-01-08 04:41:00    2017-01-08 04:41:00
59773    24476    519    2017-01-08 01:08:00    2017-01-08 01:08:00
59774    24476    496    2017-01-08 06:39:00    2017-01-08 06:39:00
59775    24476    488    2017-01-08 09:44:00    2017-01-08 09:44:00
59776    24476    504    2017-01-08 23:38:00    2017-01-08 23:38:00
59777    24476    595    2017-01-08 15:40:00    2017-01-08 15:40:00
59778    24477    796    2017-01-08 10:03:00    2017-01-08 10:03:00
59779    24477    865    2017-01-08 01:02:00    2017-01-08 01:02:00
59780    24477    845    2017-01-08 21:12:00    2017-01-08 21:12:00
59781    24477    493    2017-01-08 18:30:00    2017-01-08 18:30:00
59782    24477    854    2017-01-08 16:59:00    2017-01-08 16:59:00
59783    24478    488    2017-01-08 06:56:00    2017-01-08 06:56:00
59784    24478    897    2017-01-08 11:36:00    2017-01-08 11:36:00
59785    24478    938    2017-01-08 04:53:00    2017-01-08 04:53:00
59786    24478    943    2017-01-08 21:47:00    2017-01-08 21:47:00
59787    24478    665    2017-01-08 03:15:00    2017-01-08 03:15:00
59788    24479    740    2017-01-08 22:20:00    2017-01-08 22:20:00
59789    24479    764    2017-01-08 10:29:00    2017-01-08 10:29:00
59790    24479    486    2017-01-08 16:57:00    2017-01-08 16:57:00
59791    24479    961    2017-01-08 19:20:00    2017-01-08 19:20:00
59792    24479    746    2017-01-08 04:21:00    2017-01-08 04:21:00
59793    24480    634    2017-01-08 03:53:00    2017-01-08 03:53:00
59794    24480    624    2017-01-08 08:38:00    2017-01-08 08:38:00
59795    24480    889    2017-01-08 17:20:00    2017-01-08 17:20:00
59796    24480    657    2017-01-08 21:00:00    2017-01-08 21:00:00
59797    24480    716    2017-01-08 12:02:00    2017-01-08 12:02:00
59798    24481    762    2017-01-08 04:57:00    2017-01-08 04:57:00
59799    24481    580    2017-01-08 02:39:00    2017-01-08 02:39:00
59800    24481    961    2017-01-08 23:08:00    2017-01-08 23:08:00
59801    24481    700    2017-01-08 07:17:00    2017-01-08 07:17:00
59802    24481    844    2017-01-08 21:44:00    2017-01-08 21:44:00
59803    24482    735    2017-01-08 09:45:00    2017-01-08 09:45:00
59804    24482    480    2017-01-08 13:36:00    2017-01-08 13:36:00
59805    24482    553    2017-01-08 09:37:00    2017-01-08 09:37:00
59806    24482    517    2017-01-08 08:17:00    2017-01-08 08:17:00
59807    24482    868    2017-01-08 13:15:00    2017-01-08 13:15:00
59808    24483    565    2017-01-08 10:13:00    2017-01-08 10:13:00
59809    24483    600    2017-01-08 19:39:00    2017-01-08 19:39:00
59810    24483    915    2017-01-08 03:32:00    2017-01-08 03:32:00
59811    24483    865    2017-01-08 22:00:00    2017-01-08 22:00:00
59812    24483    766    2017-01-08 20:30:00    2017-01-08 20:30:00
59813    24484    470    2017-01-08 14:00:00    2017-01-08 14:00:00
59814    24484    642    2017-01-08 15:00:00    2017-01-08 15:00:00
59815    24484    858    2017-01-08 19:39:00    2017-01-08 19:39:00
59816    24484    922    2017-01-08 04:50:00    2017-01-08 04:50:00
59817    24484    549    2017-01-08 08:27:00    2017-01-08 08:27:00
59818    24485    931    2017-01-08 20:46:00    2017-01-08 20:46:00
59819    24485    675    2017-01-08 03:31:00    2017-01-08 03:31:00
59820    24485    942    2017-01-08 09:58:00    2017-01-08 09:58:00
59821    24485    846    2017-01-08 19:30:00    2017-01-08 19:30:00
59822    24485    862    2017-01-08 05:04:00    2017-01-08 05:04:00
59823    24486    715    2017-01-08 07:19:00    2017-01-08 07:19:00
59824    24486    748    2017-01-08 02:41:00    2017-01-08 02:41:00
59825    24486    910    2017-01-08 13:15:00    2017-01-08 13:15:00
59826    24486    568    2017-01-08 07:40:00    2017-01-08 07:40:00
59827    24486    731    2017-01-08 14:10:00    2017-01-08 14:10:00
59828    24487    644    2017-01-08 07:59:00    2017-01-08 07:59:00
59829    24487    487    2017-01-08 05:08:00    2017-01-08 05:08:00
59830    24487    814    2017-01-08 15:36:00    2017-01-08 15:36:00
59831    24487    712    2017-01-08 16:24:00    2017-01-08 16:24:00
59832    24487    827    2017-01-08 21:05:00    2017-01-08 21:05:00
59833    24488    872    2017-01-08 05:21:00    2017-01-08 05:21:00
59834    24488    826    2017-01-08 10:22:00    2017-01-08 10:22:00
59835    24488    937    2017-01-08 02:46:00    2017-01-08 02:46:00
59836    24488    743    2017-01-08 04:37:00    2017-01-08 04:37:00
59837    24488    615    2017-01-08 02:06:00    2017-01-08 02:06:00
59838    24489    568    2017-01-08 19:54:00    2017-01-08 19:54:00
59839    24489    907    2017-01-08 17:05:00    2017-01-08 17:05:00
59840    24489    665    2017-01-08 06:20:00    2017-01-08 06:20:00
59841    24489    490    2017-01-08 01:10:00    2017-01-08 01:10:00
59842    24489    897    2017-01-08 20:57:00    2017-01-08 20:57:00
59843    24490    793    2017-01-08 22:05:00    2017-01-08 22:05:00
59844    24490    914    2017-01-08 14:52:00    2017-01-08 14:52:00
59845    24490    796    2017-01-08 02:10:00    2017-01-08 02:10:00
59846    24490    607    2017-01-08 04:15:00    2017-01-08 04:15:00
59847    24490    776    2017-01-08 20:05:00    2017-01-08 20:05:00
59848    24491    764    2017-01-08 05:53:00    2017-01-08 05:53:00
59849    24491    809    2017-01-08 07:59:00    2017-01-08 07:59:00
59850    24491    760    2017-01-08 02:22:00    2017-01-08 02:22:00
59851    24491    834    2017-01-08 02:36:00    2017-01-08 02:36:00
59852    24491    854    2017-01-08 01:32:00    2017-01-08 01:32:00
59853    24492    748    2017-01-08 16:45:00    2017-01-08 16:45:00
59854    24492    558    2017-01-08 17:48:00    2017-01-08 17:48:00
59855    24492    504    2017-01-08 04:27:00    2017-01-08 04:27:00
59856    24492    779    2017-01-08 13:47:00    2017-01-08 13:47:00
59857    24492    712    2017-01-08 09:16:00    2017-01-08 09:16:00
59858    24493    738    2017-01-08 07:44:00    2017-01-08 07:44:00
59859    24493    532    2017-01-08 23:37:00    2017-01-08 23:37:00
59860    24493    570    2017-01-08 03:57:00    2017-01-08 03:57:00
59861    24493    734    2017-01-08 11:20:00    2017-01-08 11:20:00
59862    24493    949    2017-01-08 01:47:00    2017-01-08 01:47:00
59863    24494    858    2017-01-08 13:47:00    2017-01-08 13:47:00
59864    24494    602    2017-01-08 03:54:00    2017-01-08 03:54:00
59865    24494    598    2017-01-08 11:42:00    2017-01-08 11:42:00
59866    24494    854    2017-01-08 08:51:00    2017-01-08 08:51:00
59867    24494    808    2017-01-08 11:01:00    2017-01-08 11:01:00
59868    24495    929    2017-01-08 10:15:00    2017-01-08 10:15:00
59869    24495    951    2017-01-08 09:57:00    2017-01-08 09:57:00
59870    24495    742    2017-01-08 03:24:00    2017-01-08 03:24:00
59871    24495    490    2017-01-08 05:43:00    2017-01-08 05:43:00
59872    24495    914    2017-01-08 02:58:00    2017-01-08 02:58:00
59873    24496    795    2017-01-08 15:26:00    2017-01-08 15:26:00
59874    24496    734    2017-01-08 14:43:00    2017-01-08 14:43:00
59875    24496    554    2017-01-08 02:53:00    2017-01-08 02:53:00
59876    24496    533    2017-01-08 17:28:00    2017-01-08 17:28:00
59877    24496    482    2017-01-08 22:56:00    2017-01-08 22:56:00
59878    24497    489    2017-01-08 22:41:00    2017-01-08 22:41:00
59879    24497    580    2017-01-08 02:57:00    2017-01-08 02:57:00
59880    24497    758    2017-01-08 02:54:00    2017-01-08 02:54:00
59881    24497    888    2017-01-08 15:57:00    2017-01-08 15:57:00
59882    24497    888    2017-01-08 05:46:00    2017-01-08 05:46:00
59883    24498    737    2017-01-09 13:24:00    2017-01-09 13:24:00
59884    24498    558    2017-01-09 19:02:00    2017-01-09 19:02:00
59885    24498    525    2017-01-09 23:00:00    2017-01-09 23:00:00
59886    24498    661    2017-01-09 14:56:00    2017-01-09 14:56:00
59887    24498    819    2017-01-09 23:54:00    2017-01-09 23:54:00
59888    24499    504    2017-01-09 04:29:00    2017-01-09 04:29:00
59889    24499    930    2017-01-09 01:33:00    2017-01-09 01:33:00
59890    24499    904    2017-01-09 03:49:00    2017-01-09 03:49:00
59891    24499    851    2017-01-09 16:46:00    2017-01-09 16:46:00
59892    24499    927    2017-01-09 08:09:00    2017-01-09 08:09:00
59893    24500    907    2017-01-09 15:11:00    2017-01-09 15:11:00
59894    24500    898    2017-01-09 02:36:00    2017-01-09 02:36:00
59895    24500    900    2017-01-09 13:22:00    2017-01-09 13:22:00
59896    24500    652    2017-01-09 08:26:00    2017-01-09 08:26:00
59897    24500    564    2017-01-09 20:24:00    2017-01-09 20:24:00
59898    24501    606    2017-01-09 07:12:00    2017-01-09 07:12:00
59899    24501    740    2017-01-09 05:45:00    2017-01-09 05:45:00
59900    24501    916    2017-01-09 23:38:00    2017-01-09 23:38:00
59901    24501    721    2017-01-09 14:35:00    2017-01-09 14:35:00
59902    24501    629    2017-01-09 19:10:00    2017-01-09 19:10:00
59903    24502    862    2017-01-09 21:05:00    2017-01-09 21:05:00
59904    24502    547    2017-01-09 07:26:00    2017-01-09 07:26:00
59905    24502    920    2017-01-09 03:16:00    2017-01-09 03:16:00
59906    24502    515    2017-01-09 05:49:00    2017-01-09 05:49:00
59907    24502    730    2017-01-09 20:37:00    2017-01-09 20:37:00
59908    24503    616    2017-01-09 07:42:00    2017-01-09 07:42:00
59909    24503    844    2017-01-09 22:48:00    2017-01-09 22:48:00
59910    24503    877    2017-01-09 02:05:00    2017-01-09 02:05:00
59911    24503    878    2017-01-09 05:58:00    2017-01-09 05:58:00
59912    24503    793    2017-01-09 17:18:00    2017-01-09 17:18:00
59913    24504    663    2017-01-09 08:28:00    2017-01-09 08:28:00
59914    24504    478    2017-01-09 10:11:00    2017-01-09 10:11:00
59915    24504    509    2017-01-09 11:56:00    2017-01-09 11:56:00
59916    24504    939    2017-01-09 03:14:00    2017-01-09 03:14:00
59917    24504    872    2017-01-09 22:08:00    2017-01-09 22:08:00
59918    24505    939    2017-01-09 23:53:00    2017-01-09 23:53:00
59919    24505    486    2017-01-09 03:20:00    2017-01-09 03:20:00
59920    24505    515    2017-01-09 10:35:00    2017-01-09 10:35:00
59921    24505    725    2017-01-09 07:41:00    2017-01-09 07:41:00
59922    24505    572    2017-01-09 08:01:00    2017-01-09 08:01:00
59923    24506    753    2017-01-09 14:14:00    2017-01-09 14:14:00
59924    24506    746    2017-01-09 02:52:00    2017-01-09 02:52:00
59925    24506    575    2017-01-09 18:15:00    2017-01-09 18:15:00
59926    24506    759    2017-01-09 12:24:00    2017-01-09 12:24:00
59927    24506    756    2017-01-09 07:35:00    2017-01-09 07:35:00
59928    24507    598    2017-01-09 14:52:00    2017-01-09 14:52:00
59929    24507    568    2017-01-09 11:51:00    2017-01-09 11:51:00
59930    24507    539    2017-01-09 20:45:00    2017-01-09 20:45:00
59931    24507    541    2017-01-09 14:25:00    2017-01-09 14:25:00
59932    24507    641    2017-01-09 16:39:00    2017-01-09 16:39:00
59933    24508    565    2017-01-09 02:03:00    2017-01-09 02:03:00
59934    24508    895    2017-01-09 03:31:00    2017-01-09 03:31:00
59935    24508    925    2017-01-09 12:51:00    2017-01-09 12:51:00
59936    24508    500    2017-01-09 05:51:00    2017-01-09 05:51:00
59937    24508    790    2017-01-09 15:44:00    2017-01-09 15:44:00
59938    24509    935    2017-01-09 20:09:00    2017-01-09 20:09:00
59939    24509    705    2017-01-09 13:43:00    2017-01-09 13:43:00
59940    24509    791    2017-01-09 18:00:00    2017-01-09 18:00:00
59941    24509    527    2017-01-09 21:26:00    2017-01-09 21:26:00
59942    24509    787    2017-01-09 03:27:00    2017-01-09 03:27:00
59943    24510    493    2017-01-09 14:36:00    2017-01-09 14:36:00
59944    24510    773    2017-01-09 15:20:00    2017-01-09 15:20:00
59945    24510    512    2017-01-09 05:52:00    2017-01-09 05:52:00
59946    24510    863    2017-01-09 15:52:00    2017-01-09 15:52:00
59947    24510    629    2017-01-09 03:04:00    2017-01-09 03:04:00
59948    24511    737    2017-01-09 02:34:00    2017-01-09 02:34:00
59949    24511    934    2017-01-09 11:00:00    2017-01-09 11:00:00
59950    24511    771    2017-01-09 11:15:00    2017-01-09 11:15:00
59951    24511    793    2017-01-09 02:28:00    2017-01-09 02:28:00
59952    24511    715    2017-01-09 22:59:00    2017-01-09 22:59:00
59953    24512    478    2017-01-09 06:33:00    2017-01-09 06:33:00
59954    24512    519    2017-01-09 02:49:00    2017-01-09 02:49:00
59955    24512    695    2017-01-09 06:50:00    2017-01-09 06:50:00
59956    24512    904    2017-01-09 14:25:00    2017-01-09 14:25:00
59957    24512    514    2017-01-09 17:29:00    2017-01-09 17:29:00
59958    24513    554    2017-01-09 10:03:00    2017-01-09 10:03:00
59959    24513    654    2017-01-09 22:04:00    2017-01-09 22:04:00
59960    24513    571    2017-01-09 11:20:00    2017-01-09 11:20:00
59961    24513    854    2017-01-09 08:26:00    2017-01-09 08:26:00
59962    24513    488    2017-01-09 20:02:00    2017-01-09 20:02:00
59963    24514    530    2017-01-09 05:07:00    2017-01-09 05:07:00
59964    24514    899    2017-01-09 13:01:00    2017-01-09 13:01:00
59965    24514    541    2017-01-09 12:46:00    2017-01-09 12:46:00
59966    24514    712    2017-01-09 23:12:00    2017-01-09 23:12:00
59967    24514    506    2017-01-09 12:21:00    2017-01-09 12:21:00
59968    24515    731    2017-01-09 06:49:00    2017-01-09 06:49:00
59969    24515    753    2017-01-09 13:22:00    2017-01-09 13:22:00
59970    24515    878    2017-01-09 04:25:00    2017-01-09 04:25:00
59971    24515    464    2017-01-09 12:49:00    2017-01-09 12:49:00
59972    24515    716    2017-01-09 13:28:00    2017-01-09 13:28:00
59973    24516    747    2017-01-09 05:32:00    2017-01-09 05:32:00
59974    24516    602    2017-01-09 21:00:00    2017-01-09 21:00:00
59975    24516    813    2017-01-09 17:55:00    2017-01-09 17:55:00
59976    24516    468    2017-01-09 20:00:00    2017-01-09 20:00:00
59977    24516    717    2017-01-09 02:10:00    2017-01-09 02:10:00
59978    24517    591    2017-01-09 15:49:00    2017-01-09 15:49:00
59979    24517    817    2017-01-09 13:55:00    2017-01-09 13:55:00
59980    24517    887    2017-01-09 11:03:00    2017-01-09 11:03:00
59981    24517    820    2017-01-09 13:35:00    2017-01-09 13:35:00
59982    24517    844    2017-01-09 04:40:00    2017-01-09 04:40:00
59983    24518    904    2017-01-09 22:42:00    2017-01-09 22:42:00
59984    24518    592    2017-01-09 04:45:00    2017-01-09 04:45:00
59985    24518    951    2017-01-09 21:56:00    2017-01-09 21:56:00
59986    24518    590    2017-01-09 10:11:00    2017-01-09 10:11:00
59987    24518    700    2017-01-09 14:37:00    2017-01-09 14:37:00
59988    24519    919    2017-01-09 12:21:00    2017-01-09 12:21:00
59989    24519    846    2017-01-09 21:47:00    2017-01-09 21:47:00
59990    24519    705    2017-01-09 09:37:00    2017-01-09 09:37:00
59991    24519    522    2017-01-09 13:45:00    2017-01-09 13:45:00
59992    24519    666    2017-01-09 21:45:00    2017-01-09 21:45:00
59993    24520    805    2017-01-09 06:47:00    2017-01-09 06:47:00
59994    24520    524    2017-01-09 09:56:00    2017-01-09 09:56:00
59995    24520    648    2017-01-09 13:35:00    2017-01-09 13:35:00
59996    24520    661    2017-01-09 11:56:00    2017-01-09 11:56:00
59997    24520    914    2017-01-09 02:11:00    2017-01-09 02:11:00
59998    24521    571    2017-01-09 07:38:00    2017-01-09 07:38:00
59999    24521    909    2017-01-09 11:15:00    2017-01-09 11:15:00
60000    24521    697    2017-01-09 05:43:00    2017-01-09 05:43:00
60001    24521    938    2017-01-09 14:52:00    2017-01-09 14:52:00
60002    24521    532    2017-01-09 01:34:00    2017-01-09 01:34:00
60003    24522    870    2017-01-09 11:02:00    2017-01-09 11:02:00
60004    24522    932    2017-01-09 20:11:00    2017-01-09 20:11:00
60005    24522    517    2017-01-09 12:20:00    2017-01-09 12:20:00
60006    24522    715    2017-01-09 19:48:00    2017-01-09 19:48:00
60007    24522    576    2017-01-09 18:43:00    2017-01-09 18:43:00
60008    24523    577    2017-01-09 13:40:00    2017-01-09 13:40:00
60009    24523    768    2017-01-09 06:58:00    2017-01-09 06:58:00
60010    24523    685    2017-01-09 10:41:00    2017-01-09 10:41:00
60011    24523    492    2017-01-09 15:26:00    2017-01-09 15:26:00
60012    24523    858    2017-01-09 15:27:00    2017-01-09 15:27:00
60013    24524    677    2017-01-09 18:01:00    2017-01-09 18:01:00
60014    24524    582    2017-01-09 01:08:00    2017-01-09 01:08:00
60015    24524    804    2017-01-09 06:08:00    2017-01-09 06:08:00
60016    24524    554    2017-01-09 05:57:00    2017-01-09 05:57:00
60017    24524    639    2017-01-09 07:26:00    2017-01-09 07:26:00
60018    24525    903    2017-01-09 02:36:00    2017-01-09 02:36:00
60019    24525    728    2017-01-09 09:06:00    2017-01-09 09:06:00
60020    24525    681    2017-01-09 15:16:00    2017-01-09 15:16:00
60021    24525    493    2017-01-09 18:16:00    2017-01-09 18:16:00
60022    24525    701    2017-01-09 10:06:00    2017-01-09 10:06:00
60023    24526    878    2017-01-09 11:48:00    2017-01-09 11:48:00
60024    24526    632    2017-01-09 10:27:00    2017-01-09 10:27:00
60025    24526    738    2017-01-09 19:32:00    2017-01-09 19:32:00
60026    24526    689    2017-01-09 09:20:00    2017-01-09 09:20:00
60027    24526    844    2017-01-09 01:23:00    2017-01-09 01:23:00
60028    24527    778    2017-01-09 04:47:00    2017-01-09 04:47:00
60029    24527    617    2017-01-09 08:37:00    2017-01-09 08:37:00
60030    24527    670    2017-01-09 10:41:00    2017-01-09 10:41:00
60031    24527    833    2017-01-09 15:54:00    2017-01-09 15:54:00
60032    24527    517    2017-01-09 04:23:00    2017-01-09 04:23:00
60033    24528    927    2017-01-09 09:03:00    2017-01-09 09:03:00
60034    24528    649    2017-01-09 17:13:00    2017-01-09 17:13:00
60035    24528    465    2017-01-09 23:03:00    2017-01-09 23:03:00
60036    24528    534    2017-01-09 20:12:00    2017-01-09 20:12:00
60037    24528    544    2017-01-09 01:04:00    2017-01-09 01:04:00
60038    24529    636    2017-01-09 18:39:00    2017-01-09 18:39:00
60039    24529    504    2017-01-09 21:10:00    2017-01-09 21:10:00
60040    24529    769    2017-01-09 09:02:00    2017-01-09 09:02:00
60041    24529    917    2017-01-09 05:22:00    2017-01-09 05:22:00
60042    24529    547    2017-01-09 07:15:00    2017-01-09 07:15:00
60043    24530    524    2017-01-09 23:36:00    2017-01-09 23:36:00
60044    24530    849    2017-01-09 02:59:00    2017-01-09 02:59:00
60045    24530    659    2017-01-09 07:30:00    2017-01-09 07:30:00
60046    24530    737    2017-01-09 09:42:00    2017-01-09 09:42:00
60047    24530    505    2017-01-09 06:30:00    2017-01-09 06:30:00
60048    24531    938    2017-01-09 15:38:00    2017-01-09 15:38:00
60049    24531    610    2017-01-09 08:02:00    2017-01-09 08:02:00
60050    24531    671    2017-01-09 19:00:00    2017-01-09 19:00:00
60051    24531    798    2017-01-09 15:02:00    2017-01-09 15:02:00
60052    24531    952    2017-01-09 13:24:00    2017-01-09 13:24:00
60053    24532    881    2017-01-09 13:00:00    2017-01-09 13:00:00
60054    24532    569    2017-01-09 16:35:00    2017-01-09 16:35:00
60055    24532    932    2017-01-09 13:07:00    2017-01-09 13:07:00
60056    24532    585    2017-01-09 09:40:00    2017-01-09 09:40:00
60057    24532    644    2017-01-09 05:26:00    2017-01-09 05:26:00
60058    24533    567    2017-01-09 17:03:00    2017-01-09 17:03:00
60059    24533    609    2017-01-09 22:32:00    2017-01-09 22:32:00
60060    24533    939    2017-01-09 07:23:00    2017-01-09 07:23:00
60061    24533    558    2017-01-09 06:57:00    2017-01-09 06:57:00
60062    24533    650    2017-01-09 23:32:00    2017-01-09 23:32:00
60063    24534    522    2017-01-09 22:52:00    2017-01-09 22:52:00
60064    24534    574    2017-01-09 01:31:00    2017-01-09 01:31:00
60065    24534    787    2017-01-09 14:09:00    2017-01-09 14:09:00
60066    24534    726    2017-01-09 16:17:00    2017-01-09 16:17:00
60067    24534    501    2017-01-09 22:00:00    2017-01-09 22:00:00
60068    24535    910    2017-01-09 09:20:00    2017-01-09 09:20:00
60069    24535    753    2017-01-09 14:36:00    2017-01-09 14:36:00
60070    24535    556    2017-01-09 21:44:00    2017-01-09 21:44:00
60071    24535    923    2017-01-09 01:17:00    2017-01-09 01:17:00
60072    24535    660    2017-01-09 06:33:00    2017-01-09 06:33:00
60073    24536    620    2017-01-09 10:28:00    2017-01-09 10:28:00
60074    24536    739    2017-01-09 23:03:00    2017-01-09 23:03:00
60075    24536    649    2017-01-09 12:03:00    2017-01-09 12:03:00
60076    24536    918    2017-01-09 22:58:00    2017-01-09 22:58:00
60077    24536    687    2017-01-09 09:11:00    2017-01-09 09:11:00
60078    24537    771    2017-01-09 18:40:00    2017-01-09 18:40:00
60079    24537    682    2017-01-09 06:23:00    2017-01-09 06:23:00
60080    24537    635    2017-01-09 11:09:00    2017-01-09 11:09:00
60081    24537    480    2017-01-09 15:26:00    2017-01-09 15:26:00
60082    24537    565    2017-01-09 04:57:00    2017-01-09 04:57:00
60083    24538    805    2017-01-09 05:52:00    2017-01-09 05:52:00
60084    24538    868    2017-01-09 03:47:00    2017-01-09 03:47:00
60085    24538    734    2017-01-09 17:25:00    2017-01-09 17:25:00
60086    24538    582    2017-01-09 23:48:00    2017-01-09 23:48:00
60087    24538    548    2017-01-09 21:15:00    2017-01-09 21:15:00
60088    24539    467    2017-01-09 05:41:00    2017-01-09 05:41:00
60089    24539    867    2017-01-09 17:20:00    2017-01-09 17:20:00
60090    24539    883    2017-01-09 06:41:00    2017-01-09 06:41:00
60091    24539    822    2017-01-09 18:07:00    2017-01-09 18:07:00
60092    24539    950    2017-01-09 11:24:00    2017-01-09 11:24:00
60093    24540    690    2017-01-09 16:34:00    2017-01-09 16:34:00
60094    24540    620    2017-01-09 19:14:00    2017-01-09 19:14:00
60095    24540    896    2017-01-09 20:29:00    2017-01-09 20:29:00
60096    24540    597    2017-01-09 16:39:00    2017-01-09 16:39:00
60097    24540    893    2017-01-09 03:44:00    2017-01-09 03:44:00
60098    24541    552    2017-01-09 15:37:00    2017-01-09 15:37:00
60099    24541    800    2017-01-09 08:26:00    2017-01-09 08:26:00
60100    24541    627    2017-01-09 18:41:00    2017-01-09 18:41:00
60101    24541    915    2017-01-09 21:04:00    2017-01-09 21:04:00
60102    24541    809    2017-01-09 17:25:00    2017-01-09 17:25:00
60103    24542    671    2017-01-09 14:40:00    2017-01-09 14:40:00
60104    24542    809    2017-01-09 11:23:00    2017-01-09 11:23:00
60105    24542    487    2017-01-09 09:22:00    2017-01-09 09:22:00
60106    24542    512    2017-01-09 06:07:00    2017-01-09 06:07:00
60107    24542    823    2017-01-09 10:24:00    2017-01-09 10:24:00
60108    24543    497    2017-01-09 21:35:00    2017-01-09 21:35:00
60109    24543    675    2017-01-09 20:03:00    2017-01-09 20:03:00
60110    24543    465    2017-01-09 23:22:00    2017-01-09 23:22:00
60111    24543    851    2017-01-09 04:41:00    2017-01-09 04:41:00
60112    24543    487    2017-01-09 05:09:00    2017-01-09 05:09:00
60113    24544    570    2017-01-09 15:21:00    2017-01-09 15:21:00
60114    24544    823    2017-01-09 10:19:00    2017-01-09 10:19:00
60115    24544    571    2017-01-09 14:39:00    2017-01-09 14:39:00
60116    24544    661    2017-01-09 02:05:00    2017-01-09 02:05:00
60117    24544    469    2017-01-09 23:28:00    2017-01-09 23:28:00
60118    24545    698    2017-01-09 06:01:00    2017-01-09 06:01:00
60119    24545    903    2017-01-09 17:23:00    2017-01-09 17:23:00
60120    24545    697    2017-01-09 03:58:00    2017-01-09 03:58:00
60121    24545    805    2017-01-09 03:39:00    2017-01-09 03:39:00
60122    24545    816    2017-01-09 14:47:00    2017-01-09 14:47:00
60123    24546    823    2017-01-09 13:01:00    2017-01-09 13:01:00
60124    24546    544    2017-01-09 08:17:00    2017-01-09 08:17:00
60125    24546    632    2017-01-09 06:43:00    2017-01-09 06:43:00
60126    24546    808    2017-01-09 22:52:00    2017-01-09 22:52:00
60127    24546    706    2017-01-09 09:11:00    2017-01-09 09:11:00
60128    24547    831    2017-01-10 06:54:00    2017-01-10 06:54:00
60129    24547    813    2017-01-10 07:17:00    2017-01-10 07:17:00
60130    24547    621    2017-01-10 14:45:00    2017-01-10 14:45:00
60131    24547    848    2017-01-10 03:45:00    2017-01-10 03:45:00
60132    24547    538    2017-01-10 03:18:00    2017-01-10 03:18:00
60133    24548    735    2017-01-10 19:01:00    2017-01-10 19:01:00
60134    24548    757    2017-01-10 13:24:00    2017-01-10 13:24:00
60135    24548    646    2017-01-10 10:41:00    2017-01-10 10:41:00
60136    24548    892    2017-01-10 23:08:00    2017-01-10 23:08:00
60137    24548    779    2017-01-10 15:59:00    2017-01-10 15:59:00
60138    24549    465    2017-01-10 23:14:00    2017-01-10 23:14:00
60139    24549    673    2017-01-10 08:41:00    2017-01-10 08:41:00
60140    24549    862    2017-01-10 02:33:00    2017-01-10 02:33:00
60141    24549    955    2017-01-10 02:40:00    2017-01-10 02:40:00
60142    24549    831    2017-01-10 13:21:00    2017-01-10 13:21:00
60143    24550    541    2017-01-10 17:11:00    2017-01-10 17:11:00
60144    24550    719    2017-01-10 03:04:00    2017-01-10 03:04:00
60145    24550    802    2017-01-10 05:01:00    2017-01-10 05:01:00
60146    24550    583    2017-01-10 21:22:00    2017-01-10 21:22:00
60147    24550    701    2017-01-10 11:46:00    2017-01-10 11:46:00
60148    24551    841    2017-01-10 20:28:00    2017-01-10 20:28:00
60149    24551    903    2017-01-10 03:17:00    2017-01-10 03:17:00
60150    24551    563    2017-01-10 16:45:00    2017-01-10 16:45:00
60151    24551    549    2017-01-10 17:43:00    2017-01-10 17:43:00
60152    24551    466    2017-01-10 07:16:00    2017-01-10 07:16:00
60153    24552    596    2017-01-10 17:04:00    2017-01-10 17:04:00
60154    24552    541    2017-01-10 08:30:00    2017-01-10 08:30:00
60155    24552    779    2017-01-10 10:43:00    2017-01-10 10:43:00
60156    24552    483    2017-01-10 04:36:00    2017-01-10 04:36:00
60157    24552    512    2017-01-10 01:33:00    2017-01-10 01:33:00
60158    24553    891    2017-01-10 11:01:00    2017-01-10 11:01:00
60159    24553    897    2017-01-10 15:11:00    2017-01-10 15:11:00
60160    24553    790    2017-01-10 23:04:00    2017-01-10 23:04:00
60161    24553    895    2017-01-10 05:57:00    2017-01-10 05:57:00
60162    24553    725    2017-01-10 07:26:00    2017-01-10 07:26:00
60163    24554    869    2017-01-10 16:40:00    2017-01-10 16:40:00
60164    24554    489    2017-01-10 20:05:00    2017-01-10 20:05:00
60165    24554    666    2017-01-10 08:43:00    2017-01-10 08:43:00
60166    24554    891    2017-01-10 22:51:00    2017-01-10 22:51:00
60167    24554    946    2017-01-10 02:30:00    2017-01-10 02:30:00
60168    24555    957    2017-01-10 10:50:00    2017-01-10 10:50:00
60169    24555    641    2017-01-10 13:56:00    2017-01-10 13:56:00
60170    24555    660    2017-01-10 15:27:00    2017-01-10 15:27:00
60171    24555    487    2017-01-10 16:08:00    2017-01-10 16:08:00
60172    24555    608    2017-01-10 03:18:00    2017-01-10 03:18:00
60173    24556    884    2017-01-10 02:34:00    2017-01-10 02:34:00
60174    24556    697    2017-01-10 21:31:00    2017-01-10 21:31:00
60175    24556    539    2017-01-10 04:00:00    2017-01-10 04:00:00
60176    24556    753    2017-01-10 08:14:00    2017-01-10 08:14:00
60177    24556    950    2017-01-10 06:01:00    2017-01-10 06:01:00
60178    24557    902    2017-01-10 03:46:00    2017-01-10 03:46:00
60179    24557    858    2017-01-10 16:23:00    2017-01-10 16:23:00
60180    24557    803    2017-01-10 08:43:00    2017-01-10 08:43:00
60181    24557    672    2017-01-10 05:07:00    2017-01-10 05:07:00
60182    24557    816    2017-01-10 04:01:00    2017-01-10 04:01:00
60183    24558    648    2017-01-10 23:23:00    2017-01-10 23:23:00
60184    24558    750    2017-01-10 23:12:00    2017-01-10 23:12:00
60185    24558    850    2017-01-10 15:20:00    2017-01-10 15:20:00
60186    24558    558    2017-01-10 16:10:00    2017-01-10 16:10:00
60187    24558    802    2017-01-10 16:58:00    2017-01-10 16:58:00
60188    24559    568    2017-01-10 02:01:00    2017-01-10 02:01:00
60189    24559    635    2017-01-10 13:00:00    2017-01-10 13:00:00
60190    24559    619    2017-01-10 05:00:00    2017-01-10 05:00:00
60191    24559    722    2017-01-10 19:45:00    2017-01-10 19:45:00
60192    24559    563    2017-01-10 04:33:00    2017-01-10 04:33:00
60193    24560    833    2017-01-10 22:36:00    2017-01-10 22:36:00
60194    24560    949    2017-01-10 06:09:00    2017-01-10 06:09:00
60195    24560    939    2017-01-10 14:24:00    2017-01-10 14:24:00
60196    24560    898    2017-01-10 19:42:00    2017-01-10 19:42:00
60197    24560    587    2017-01-10 22:53:00    2017-01-10 22:53:00
60198    24561    679    2017-01-10 23:48:00    2017-01-10 23:48:00
60199    24561    849    2017-01-10 10:41:00    2017-01-10 10:41:00
60200    24561    734    2017-01-10 21:46:00    2017-01-10 21:46:00
60201    24561    692    2017-01-10 19:22:00    2017-01-10 19:22:00
60202    24561    645    2017-01-10 22:02:00    2017-01-10 22:02:00
60203    24562    939    2017-01-10 11:58:00    2017-01-10 11:58:00
60204    24562    510    2017-01-10 07:23:00    2017-01-10 07:23:00
60205    24562    676    2017-01-10 13:17:00    2017-01-10 13:17:00
60206    24562    859    2017-01-10 06:39:00    2017-01-10 06:39:00
60207    24562    905    2017-01-10 22:35:00    2017-01-10 22:35:00
60208    24563    929    2017-01-10 17:00:00    2017-01-10 17:00:00
60209    24563    605    2017-01-10 20:35:00    2017-01-10 20:35:00
60210    24563    734    2017-01-10 16:08:00    2017-01-10 16:08:00
60211    24563    722    2017-01-10 21:03:00    2017-01-10 21:03:00
60212    24563    574    2017-01-10 05:29:00    2017-01-10 05:29:00
60213    24564    858    2017-01-10 04:46:00    2017-01-10 04:46:00
60214    24564    902    2017-01-10 12:00:00    2017-01-10 12:00:00
60215    24564    565    2017-01-10 10:30:00    2017-01-10 10:30:00
60216    24564    585    2017-01-10 19:12:00    2017-01-10 19:12:00
60217    24564    870    2017-01-10 02:11:00    2017-01-10 02:11:00
60218    24565    757    2017-01-10 18:48:00    2017-01-10 18:48:00
60219    24565    952    2017-01-10 19:41:00    2017-01-10 19:41:00
60220    24565    549    2017-01-10 21:42:00    2017-01-10 21:42:00
60221    24565    581    2017-01-10 06:27:00    2017-01-10 06:27:00
60222    24565    882    2017-01-10 13:49:00    2017-01-10 13:49:00
60223    24566    513    2017-01-10 18:43:00    2017-01-10 18:43:00
60224    24566    894    2017-01-10 18:05:00    2017-01-10 18:05:00
60225    24566    809    2017-01-10 12:14:00    2017-01-10 12:14:00
60226    24566    606    2017-01-10 01:57:00    2017-01-10 01:57:00
60227    24566    677    2017-01-10 07:21:00    2017-01-10 07:21:00
60228    24567    551    2017-01-10 20:04:00    2017-01-10 20:04:00
60229    24567    729    2017-01-10 03:17:00    2017-01-10 03:17:00
60230    24567    680    2017-01-10 07:41:00    2017-01-10 07:41:00
60231    24567    855    2017-01-10 23:12:00    2017-01-10 23:12:00
60232    24567    661    2017-01-10 17:17:00    2017-01-10 17:17:00
60233    24568    938    2017-01-10 08:32:00    2017-01-10 08:32:00
60234    24568    596    2017-01-10 07:27:00    2017-01-10 07:27:00
60235    24568    652    2017-01-10 08:49:00    2017-01-10 08:49:00
60236    24568    843    2017-01-10 17:01:00    2017-01-10 17:01:00
60237    24568    726    2017-01-10 08:04:00    2017-01-10 08:04:00
60238    24569    797    2017-01-10 06:50:00    2017-01-10 06:50:00
60239    24569    882    2017-01-10 19:01:00    2017-01-10 19:01:00
60240    24569    555    2017-01-10 08:04:00    2017-01-10 08:04:00
60241    24569    845    2017-01-10 21:42:00    2017-01-10 21:42:00
60242    24569    762    2017-01-10 12:47:00    2017-01-10 12:47:00
60243    24570    529    2017-01-10 16:24:00    2017-01-10 16:24:00
60244    24570    629    2017-01-10 20:38:00    2017-01-10 20:38:00
60245    24570    523    2017-01-10 19:20:00    2017-01-10 19:20:00
60246    24570    641    2017-01-10 21:26:00    2017-01-10 21:26:00
60247    24570    655    2017-01-10 13:27:00    2017-01-10 13:27:00
60248    24571    489    2017-01-10 19:06:00    2017-01-10 19:06:00
60249    24571    946    2017-01-10 20:22:00    2017-01-10 20:22:00
60250    24571    721    2017-01-10 09:47:00    2017-01-10 09:47:00
60251    24571    660    2017-01-10 01:57:00    2017-01-10 01:57:00
60252    24571    725    2017-01-10 14:12:00    2017-01-10 14:12:00
60253    24572    858    2017-01-10 11:53:00    2017-01-10 11:53:00
60254    24572    700    2017-01-10 09:11:00    2017-01-10 09:11:00
60255    24572    512    2017-01-10 14:00:00    2017-01-10 14:00:00
60256    24572    636    2017-01-10 18:07:00    2017-01-10 18:07:00
60257    24572    680    2017-01-10 10:16:00    2017-01-10 10:16:00
60258    24573    819    2017-01-11 05:11:00    2017-01-11 05:11:00
60259    24573    469    2017-01-11 18:16:00    2017-01-11 18:16:00
60260    24573    523    2017-01-11 19:38:00    2017-01-11 19:38:00
60261    24573    648    2017-01-11 23:48:00    2017-01-11 23:48:00
60262    24573    624    2017-01-11 05:06:00    2017-01-11 05:06:00
60263    24574    746    2017-01-11 13:54:00    2017-01-11 13:54:00
60264    24574    474    2017-01-11 20:50:00    2017-01-11 20:50:00
60265    24574    585    2017-01-11 21:38:00    2017-01-11 21:38:00
60266    24574    606    2017-01-11 20:02:00    2017-01-11 20:02:00
60267    24574    679    2017-01-11 13:53:00    2017-01-11 13:53:00
60268    24575    497    2017-01-11 02:27:00    2017-01-11 02:27:00
60269    24575    550    2017-01-11 05:15:00    2017-01-11 05:15:00
60270    24575    660    2017-01-11 02:10:00    2017-01-11 02:10:00
60271    24575    854    2017-01-11 04:24:00    2017-01-11 04:24:00
60272    24575    782    2017-01-11 03:36:00    2017-01-11 03:36:00
60273    24576    792    2017-01-11 04:31:00    2017-01-11 04:31:00
60274    24576    470    2017-01-11 22:50:00    2017-01-11 22:50:00
60275    24576    955    2017-01-11 10:49:00    2017-01-11 10:49:00
60276    24576    688    2017-01-11 18:31:00    2017-01-11 18:31:00
60277    24576    946    2017-01-11 22:43:00    2017-01-11 22:43:00
60278    24577    797    2017-01-11 03:35:00    2017-01-11 03:35:00
60279    24577    943    2017-01-11 15:30:00    2017-01-11 15:30:00
60280    24577    541    2017-01-11 12:49:00    2017-01-11 12:49:00
60281    24577    868    2017-01-11 08:58:00    2017-01-11 08:58:00
60282    24577    903    2017-01-11 06:12:00    2017-01-11 06:12:00
60283    24578    751    2017-01-11 06:13:00    2017-01-11 06:13:00
60284    24578    691    2017-01-11 23:27:00    2017-01-11 23:27:00
60285    24578    925    2017-01-11 02:31:00    2017-01-11 02:31:00
60286    24578    559    2017-01-11 07:35:00    2017-01-11 07:35:00
60287    24578    933    2017-01-11 10:20:00    2017-01-11 10:20:00
60288    24579    835    2017-01-11 08:37:00    2017-01-11 08:37:00
60289    24579    673    2017-01-11 21:21:00    2017-01-11 21:21:00
60290    24579    822    2017-01-11 06:00:00    2017-01-11 06:00:00
60291    24579    961    2017-01-11 06:42:00    2017-01-11 06:42:00
60292    24579    949    2017-01-11 11:06:00    2017-01-11 11:06:00
60293    24580    861    2017-01-11 19:52:00    2017-01-11 19:52:00
60294    24580    516    2017-01-11 22:56:00    2017-01-11 22:56:00
60295    24580    729    2017-01-11 21:09:00    2017-01-11 21:09:00
60296    24580    597    2017-01-11 23:41:00    2017-01-11 23:41:00
60297    24580    763    2017-01-11 05:00:00    2017-01-11 05:00:00
60298    24581    624    2017-01-11 11:54:00    2017-01-11 11:54:00
60299    24581    726    2017-01-11 22:33:00    2017-01-11 22:33:00
60300    24581    679    2017-01-11 17:59:00    2017-01-11 17:59:00
60301    24581    829    2017-01-11 14:32:00    2017-01-11 14:32:00
60302    24581    651    2017-01-11 08:47:00    2017-01-11 08:47:00
60303    24582    573    2017-01-11 12:09:00    2017-01-11 12:09:00
60304    24582    468    2017-01-11 20:44:00    2017-01-11 20:44:00
60305    24582    717    2017-01-11 08:04:00    2017-01-11 08:04:00
60306    24582    645    2017-01-11 08:13:00    2017-01-11 08:13:00
60307    24582    701    2017-01-11 05:48:00    2017-01-11 05:48:00
60308    24583    935    2017-01-11 23:53:00    2017-01-11 23:53:00
60309    24583    880    2017-01-11 08:55:00    2017-01-11 08:55:00
60310    24583    693    2017-01-11 12:04:00    2017-01-11 12:04:00
60311    24583    956    2017-01-11 19:57:00    2017-01-11 19:57:00
60312    24583    560    2017-01-11 14:17:00    2017-01-11 14:17:00
60313    24584    778    2017-01-11 06:26:00    2017-01-11 06:26:00
60314    24584    656    2017-01-11 20:06:00    2017-01-11 20:06:00
60315    24584    667    2017-01-11 12:44:00    2017-01-11 12:44:00
60316    24584    904    2017-01-11 18:57:00    2017-01-11 18:57:00
60317    24584    927    2017-01-11 08:02:00    2017-01-11 08:02:00
60318    24585    485    2017-01-11 07:36:00    2017-01-11 07:36:00
60319    24585    606    2017-01-11 15:46:00    2017-01-11 15:46:00
60320    24585    723    2017-01-11 04:26:00    2017-01-11 04:26:00
60321    24585    616    2017-01-11 21:44:00    2017-01-11 21:44:00
60322    24585    667    2017-01-11 10:59:00    2017-01-11 10:59:00
60323    24586    592    2017-01-11 21:42:00    2017-01-11 21:42:00
60324    24586    520    2017-01-11 07:30:00    2017-01-11 07:30:00
60325    24586    470    2017-01-11 14:10:00    2017-01-11 14:10:00
60326    24586    767    2017-01-11 03:40:00    2017-01-11 03:40:00
60327    24586    595    2017-01-11 07:24:00    2017-01-11 07:24:00
60328    24587    859    2017-01-11 03:57:00    2017-01-11 03:57:00
60329    24587    736    2017-01-11 09:45:00    2017-01-11 09:45:00
60330    24587    694    2017-01-11 10:09:00    2017-01-11 10:09:00
60331    24587    893    2017-01-11 07:29:00    2017-01-11 07:29:00
60332    24587    494    2017-01-11 14:22:00    2017-01-11 14:22:00
60333    24588    750    2017-01-11 04:24:00    2017-01-11 04:24:00
60334    24588    680    2017-01-11 12:45:00    2017-01-11 12:45:00
60335    24588    607    2017-01-11 10:25:00    2017-01-11 10:25:00
60336    24588    561    2017-01-11 01:14:00    2017-01-11 01:14:00
60337    24588    581    2017-01-11 01:36:00    2017-01-11 01:36:00
60338    24589    857    2017-01-11 21:31:00    2017-01-11 21:31:00
60339    24589    521    2017-01-11 05:45:00    2017-01-11 05:45:00
60340    24589    767    2017-01-11 21:16:00    2017-01-11 21:16:00
60341    24589    581    2017-01-11 20:20:00    2017-01-11 20:20:00
60342    24589    750    2017-01-11 05:59:00    2017-01-11 05:59:00
60343    24590    888    2017-01-11 12:58:00    2017-01-11 12:58:00
60344    24590    874    2017-01-11 11:53:00    2017-01-11 11:53:00
60345    24590    768    2017-01-11 06:23:00    2017-01-11 06:23:00
60346    24590    743    2017-01-11 08:02:00    2017-01-11 08:02:00
60347    24590    749    2017-01-11 17:21:00    2017-01-11 17:21:00
60348    24591    484    2017-01-11 07:22:00    2017-01-11 07:22:00
60349    24591    787    2017-01-11 18:04:00    2017-01-11 18:04:00
60350    24591    920    2017-01-11 01:01:00    2017-01-11 01:01:00
60351    24591    642    2017-01-11 15:07:00    2017-01-11 15:07:00
60352    24591    714    2017-01-11 13:33:00    2017-01-11 13:33:00
60353    24592    904    2017-01-11 15:29:00    2017-01-11 15:29:00
60354    24592    737    2017-01-11 05:11:00    2017-01-11 05:11:00
60355    24592    866    2017-01-11 01:52:00    2017-01-11 01:52:00
60356    24592    871    2017-01-11 22:22:00    2017-01-11 22:22:00
60357    24592    599    2017-01-11 18:14:00    2017-01-11 18:14:00
60358    24593    535    2017-01-11 09:22:00    2017-01-11 09:22:00
60359    24593    620    2017-01-11 15:41:00    2017-01-11 15:41:00
60360    24593    912    2017-01-11 18:16:00    2017-01-11 18:16:00
60361    24593    606    2017-01-11 23:19:00    2017-01-11 23:19:00
60362    24593    528    2017-01-11 23:27:00    2017-01-11 23:27:00
60363    24594    530    2017-01-11 02:22:00    2017-01-11 02:22:00
60364    24594    956    2017-01-11 21:55:00    2017-01-11 21:55:00
60365    24594    731    2017-01-11 17:11:00    2017-01-11 17:11:00
60366    24594    527    2017-01-11 07:50:00    2017-01-11 07:50:00
60367    24594    812    2017-01-11 18:37:00    2017-01-11 18:37:00
60368    24595    614    2017-01-11 21:34:00    2017-01-11 21:34:00
60369    24595    486    2017-01-11 20:59:00    2017-01-11 20:59:00
60370    24595    847    2017-01-11 04:54:00    2017-01-11 04:54:00
60371    24595    901    2017-01-11 10:41:00    2017-01-11 10:41:00
60372    24595    581    2017-01-11 23:05:00    2017-01-11 23:05:00
60373    24596    875    2017-01-11 14:10:00    2017-01-11 14:10:00
60374    24596    769    2017-01-11 08:11:00    2017-01-11 08:11:00
60375    24596    796    2017-01-11 15:42:00    2017-01-11 15:42:00
60376    24596    921    2017-01-11 14:00:00    2017-01-11 14:00:00
60377    24596    750    2017-01-11 14:01:00    2017-01-11 14:01:00
60378    24597    849    2017-01-11 14:01:00    2017-01-11 14:01:00
60379    24597    820    2017-01-11 02:03:00    2017-01-11 02:03:00
60380    24597    886    2017-01-11 16:13:00    2017-01-11 16:13:00
60381    24597    508    2017-01-11 11:50:00    2017-01-11 11:50:00
60382    24597    478    2017-01-11 20:00:00    2017-01-11 20:00:00
60383    24598    725    2017-01-11 11:45:00    2017-01-11 11:45:00
60384    24598    703    2017-01-11 16:25:00    2017-01-11 16:25:00
60385    24598    625    2017-01-11 07:24:00    2017-01-11 07:24:00
60386    24598    841    2017-01-11 12:56:00    2017-01-11 12:56:00
60387    24598    802    2017-01-11 14:25:00    2017-01-11 14:25:00
60388    24599    788    2017-01-11 21:11:00    2017-01-11 21:11:00
60389    24599    828    2017-01-11 11:13:00    2017-01-11 11:13:00
60390    24599    463    2017-01-11 18:34:00    2017-01-11 18:34:00
60391    24599    677    2017-01-11 23:23:00    2017-01-11 23:23:00
60392    24599    814    2017-01-11 21:08:00    2017-01-11 21:08:00
60393    24600    691    2017-01-11 13:12:00    2017-01-11 13:12:00
60394    24600    647    2017-01-11 17:08:00    2017-01-11 17:08:00
60395    24600    775    2017-01-11 04:30:00    2017-01-11 04:30:00
60396    24600    498    2017-01-11 14:22:00    2017-01-11 14:22:00
60397    24600    908    2017-01-11 05:52:00    2017-01-11 05:52:00
60398    24601    795    2017-01-11 05:32:00    2017-01-11 05:32:00
60399    24601    713    2017-01-11 05:52:00    2017-01-11 05:52:00
60400    24601    511    2017-01-11 14:37:00    2017-01-11 14:37:00
60401    24601    885    2017-01-11 18:39:00    2017-01-11 18:39:00
60402    24601    764    2017-01-11 13:15:00    2017-01-11 13:15:00
60403    24602    808    2017-01-11 12:04:00    2017-01-11 12:04:00
60404    24602    943    2017-01-11 09:15:00    2017-01-11 09:15:00
60405    24602    780    2017-01-11 23:56:00    2017-01-11 23:56:00
60406    24602    789    2017-01-11 02:43:00    2017-01-11 02:43:00
60407    24602    654    2017-01-11 22:42:00    2017-01-11 22:42:00
60408    24603    535    2017-01-11 01:39:00    2017-01-11 01:39:00
60409    24603    932    2017-01-11 22:24:00    2017-01-11 22:24:00
60410    24603    570    2017-01-11 05:55:00    2017-01-11 05:55:00
60411    24603    686    2017-01-11 03:10:00    2017-01-11 03:10:00
60412    24603    687    2017-01-11 04:57:00    2017-01-11 04:57:00
60413    24604    873    2017-01-11 06:54:00    2017-01-11 06:54:00
60414    24604    497    2017-01-11 05:14:00    2017-01-11 05:14:00
60415    24604    942    2017-01-11 09:07:00    2017-01-11 09:07:00
60416    24604    825    2017-01-11 02:49:00    2017-01-11 02:49:00
60417    24604    608    2017-01-11 10:03:00    2017-01-11 10:03:00
60418    24605    719    2017-01-11 17:35:00    2017-01-11 17:35:00
60419    24605    514    2017-01-11 09:41:00    2017-01-11 09:41:00
60420    24605    576    2017-01-11 04:30:00    2017-01-11 04:30:00
60421    24605    699    2017-01-11 14:00:00    2017-01-11 14:00:00
60422    24605    482    2017-01-11 22:10:00    2017-01-11 22:10:00
60423    24606    689    2017-01-11 15:47:00    2017-01-11 15:47:00
60424    24606    891    2017-01-11 14:43:00    2017-01-11 14:43:00
60425    24606    900    2017-01-11 22:09:00    2017-01-11 22:09:00
60426    24606    549    2017-01-11 03:46:00    2017-01-11 03:46:00
60427    24606    922    2017-01-11 23:23:00    2017-01-11 23:23:00
60428    24607    828    2017-01-11 11:20:00    2017-01-11 11:20:00
60429    24607    958    2017-01-11 20:36:00    2017-01-11 20:36:00
60430    24607    546    2017-01-11 01:20:00    2017-01-11 01:20:00
60431    24607    878    2017-01-11 12:07:00    2017-01-11 12:07:00
60432    24607    507    2017-01-11 23:27:00    2017-01-11 23:27:00
60433    24608    625    2017-01-11 07:11:00    2017-01-11 07:11:00
60434    24608    591    2017-01-11 20:59:00    2017-01-11 20:59:00
60435    24608    847    2017-01-11 23:36:00    2017-01-11 23:36:00
60436    24608    624    2017-01-11 21:30:00    2017-01-11 21:30:00
60437    24608    621    2017-01-11 12:06:00    2017-01-11 12:06:00
60438    24609    580    2017-01-11 10:05:00    2017-01-11 10:05:00
60439    24609    853    2017-01-11 09:59:00    2017-01-11 09:59:00
60440    24609    520    2017-01-11 11:58:00    2017-01-11 11:58:00
60441    24609    851    2017-01-11 23:02:00    2017-01-11 23:02:00
60442    24609    806    2017-01-11 12:39:00    2017-01-11 12:39:00
60443    24610    927    2017-01-11 19:40:00    2017-01-11 19:40:00
60444    24610    841    2017-01-11 04:49:00    2017-01-11 04:49:00
60445    24610    939    2017-01-11 03:05:00    2017-01-11 03:05:00
60446    24610    904    2017-01-11 23:23:00    2017-01-11 23:23:00
60447    24610    631    2017-01-11 05:47:00    2017-01-11 05:47:00
60448    24611    579    2017-01-11 09:36:00    2017-01-11 09:36:00
60449    24611    736    2017-01-11 13:58:00    2017-01-11 13:58:00
60450    24611    775    2017-01-11 10:33:00    2017-01-11 10:33:00
60451    24611    496    2017-01-11 20:36:00    2017-01-11 20:36:00
60452    24611    664    2017-01-11 15:00:00    2017-01-11 15:00:00
60453    24612    796    2017-01-11 08:14:00    2017-01-11 08:14:00
60454    24612    961    2017-01-11 14:09:00    2017-01-11 14:09:00
60455    24612    473    2017-01-11 08:27:00    2017-01-11 08:27:00
60456    24612    628    2017-01-11 15:50:00    2017-01-11 15:50:00
60457    24612    467    2017-01-11 04:06:00    2017-01-11 04:06:00
60458    24613    785    2017-01-11 05:20:00    2017-01-11 05:20:00
60459    24613    699    2017-01-11 18:22:00    2017-01-11 18:22:00
60460    24613    555    2017-01-11 10:39:00    2017-01-11 10:39:00
60461    24613    559    2017-01-11 14:43:00    2017-01-11 14:43:00
60462    24613    596    2017-01-11 22:09:00    2017-01-11 22:09:00
60463    24614    748    2017-01-11 13:27:00    2017-01-11 13:27:00
60464    24614    677    2017-01-11 21:37:00    2017-01-11 21:37:00
60465    24614    622    2017-01-11 14:13:00    2017-01-11 14:13:00
60466    24614    709    2017-01-11 19:36:00    2017-01-11 19:36:00
60467    24614    656    2017-01-11 02:35:00    2017-01-11 02:35:00
60468    24615    681    2017-01-11 02:44:00    2017-01-11 02:44:00
60469    24615    937    2017-01-11 12:32:00    2017-01-11 12:32:00
60470    24615    822    2017-01-11 20:38:00    2017-01-11 20:38:00
60471    24615    864    2017-01-11 09:29:00    2017-01-11 09:29:00
60472    24615    896    2017-01-11 02:28:00    2017-01-11 02:28:00
60473    24616    657    2017-01-12 23:06:00    2017-01-12 23:06:00
60474    24616    926    2017-01-12 16:43:00    2017-01-12 16:43:00
60475    24616    499    2017-01-12 01:44:00    2017-01-12 01:44:00
60476    24616    657    2017-01-12 20:52:00    2017-01-12 20:52:00
60477    24616    576    2017-01-12 19:47:00    2017-01-12 19:47:00
60478    24617    837    2017-01-12 15:41:00    2017-01-12 15:41:00
60479    24617    682    2017-01-12 13:49:00    2017-01-12 13:49:00
60480    24617    590    2017-01-12 01:24:00    2017-01-12 01:24:00
60481    24617    531    2017-01-12 03:02:00    2017-01-12 03:02:00
60482    24617    915    2017-01-12 10:10:00    2017-01-12 10:10:00
60483    24618    683    2017-01-12 19:17:00    2017-01-12 19:17:00
60484    24618    868    2017-01-12 06:42:00    2017-01-12 06:42:00
60485    24618    463    2017-01-12 09:06:00    2017-01-12 09:06:00
60486    24618    594    2017-01-12 10:20:00    2017-01-12 10:20:00
60487    24618    870    2017-01-12 18:15:00    2017-01-12 18:15:00
60488    24619    717    2017-01-12 20:46:00    2017-01-12 20:46:00
60489    24619    491    2017-01-12 13:36:00    2017-01-12 13:36:00
60490    24619    718    2017-01-12 17:13:00    2017-01-12 17:13:00
60491    24619    901    2017-01-12 02:42:00    2017-01-12 02:42:00
60492    24619    621    2017-01-12 15:37:00    2017-01-12 15:37:00
60493    24620    515    2017-01-12 19:23:00    2017-01-12 19:23:00
60494    24620    595    2017-01-12 05:08:00    2017-01-12 05:08:00
60495    24620    731    2017-01-12 12:12:00    2017-01-12 12:12:00
60496    24620    590    2017-01-12 18:15:00    2017-01-12 18:15:00
60497    24620    843    2017-01-12 07:44:00    2017-01-12 07:44:00
60498    24621    665    2017-01-12 16:39:00    2017-01-12 16:39:00
60499    24621    716    2017-01-12 19:05:00    2017-01-12 19:05:00
60500    24621    592    2017-01-12 19:30:00    2017-01-12 19:30:00
60501    24621    899    2017-01-12 10:21:00    2017-01-12 10:21:00
60502    24621    583    2017-01-12 19:40:00    2017-01-12 19:40:00
60503    24622    687    2017-01-12 17:40:00    2017-01-12 17:40:00
60504    24622    584    2017-01-12 23:35:00    2017-01-12 23:35:00
60505    24622    918    2017-01-12 01:06:00    2017-01-12 01:06:00
60506    24622    940    2017-01-12 23:05:00    2017-01-12 23:05:00
60507    24622    635    2017-01-12 10:33:00    2017-01-12 10:33:00
60508    24623    684    2017-01-12 06:11:00    2017-01-12 06:11:00
60509    24623    900    2017-01-12 11:18:00    2017-01-12 11:18:00
60510    24623    768    2017-01-12 05:42:00    2017-01-12 05:42:00
60511    24623    787    2017-01-12 02:02:00    2017-01-12 02:02:00
60512    24623    671    2017-01-12 20:56:00    2017-01-12 20:56:00
60513    24624    781    2017-01-12 06:17:00    2017-01-12 06:17:00
60514    24624    789    2017-01-12 08:13:00    2017-01-12 08:13:00
60515    24624    494    2017-01-12 07:40:00    2017-01-12 07:40:00
60516    24624    493    2017-01-12 03:45:00    2017-01-12 03:45:00
60517    24624    642    2017-01-12 01:26:00    2017-01-12 01:26:00
60518    24625    828    2017-01-12 16:24:00    2017-01-12 16:24:00
60519    24625    914    2017-01-12 02:02:00    2017-01-12 02:02:00
60520    24625    930    2017-01-12 10:23:00    2017-01-12 10:23:00
60521    24625    725    2017-01-12 09:43:00    2017-01-12 09:43:00
60522    24625    730    2017-01-12 12:00:00    2017-01-12 12:00:00
60523    24626    511    2017-01-12 10:27:00    2017-01-12 10:27:00
60524    24626    551    2017-01-12 09:52:00    2017-01-12 09:52:00
60525    24626    561    2017-01-12 04:41:00    2017-01-12 04:41:00
60526    24626    746    2017-01-12 20:33:00    2017-01-12 20:33:00
60527    24626    630    2017-01-12 17:43:00    2017-01-12 17:43:00
60528    24627    467    2017-01-12 14:00:00    2017-01-12 14:00:00
60529    24627    767    2017-01-12 12:02:00    2017-01-12 12:02:00
60530    24627    864    2017-01-12 15:05:00    2017-01-12 15:05:00
60531    24627    535    2017-01-12 12:04:00    2017-01-12 12:04:00
60532    24627    571    2017-01-12 22:55:00    2017-01-12 22:55:00
60533    24628    894    2017-01-12 18:09:00    2017-01-12 18:09:00
60534    24628    674    2017-01-12 16:14:00    2017-01-12 16:14:00
60535    24628    555    2017-01-12 12:58:00    2017-01-12 12:58:00
60536    24628    536    2017-01-12 15:00:00    2017-01-12 15:00:00
60537    24628    565    2017-01-12 17:52:00    2017-01-12 17:52:00
60538    24629    775    2017-01-12 04:01:00    2017-01-12 04:01:00
60539    24629    770    2017-01-12 02:56:00    2017-01-12 02:56:00
60540    24629    535    2017-01-12 18:50:00    2017-01-12 18:50:00
60541    24629    490    2017-01-12 13:49:00    2017-01-12 13:49:00
60542    24629    514    2017-01-12 21:12:00    2017-01-12 21:12:00
60543    24630    502    2017-01-12 14:04:00    2017-01-12 14:04:00
60544    24630    888    2017-01-12 17:19:00    2017-01-12 17:19:00
60545    24630    845    2017-01-12 11:54:00    2017-01-12 11:54:00
60546    24630    669    2017-01-12 22:48:00    2017-01-12 22:48:00
60547    24630    740    2017-01-12 16:24:00    2017-01-12 16:24:00
60548    24631    785    2017-01-12 03:13:00    2017-01-12 03:13:00
60549    24631    876    2017-01-12 16:36:00    2017-01-12 16:36:00
60550    24631    826    2017-01-12 08:46:00    2017-01-12 08:46:00
60551    24631    816    2017-01-12 04:21:00    2017-01-12 04:21:00
60552    24631    619    2017-01-12 01:36:00    2017-01-12 01:36:00
60553    24632    801    2017-01-12 15:16:00    2017-01-12 15:16:00
60554    24632    734    2017-01-12 18:19:00    2017-01-12 18:19:00
60555    24632    616    2017-01-12 10:54:00    2017-01-12 10:54:00
60556    24632    718    2017-01-12 21:35:00    2017-01-12 21:35:00
60557    24632    702    2017-01-12 17:42:00    2017-01-12 17:42:00
60558    24633    623    2017-01-12 09:00:00    2017-01-12 09:00:00
60559    24633    891    2017-01-12 22:31:00    2017-01-12 22:31:00
60560    24633    675    2017-01-12 23:28:00    2017-01-12 23:28:00
60561    24633    824    2017-01-12 03:26:00    2017-01-12 03:26:00
60562    24633    796    2017-01-12 15:42:00    2017-01-12 15:42:00
60563    24634    600    2017-01-12 20:09:00    2017-01-12 20:09:00
60564    24634    763    2017-01-12 15:34:00    2017-01-12 15:34:00
60565    24634    798    2017-01-12 21:25:00    2017-01-12 21:25:00
60566    24634    524    2017-01-12 08:16:00    2017-01-12 08:16:00
60567    24634    764    2017-01-12 21:05:00    2017-01-12 21:05:00
60568    24635    762    2017-01-12 10:04:00    2017-01-12 10:04:00
60569    24635    566    2017-01-12 10:49:00    2017-01-12 10:49:00
60570    24635    869    2017-01-12 19:04:00    2017-01-12 19:04:00
60571    24635    865    2017-01-12 23:41:00    2017-01-12 23:41:00
60572    24635    937    2017-01-12 06:04:00    2017-01-12 06:04:00
60573    24636    833    2017-01-12 20:19:00    2017-01-12 20:19:00
60574    24636    754    2017-01-12 04:49:00    2017-01-12 04:49:00
60575    24636    934    2017-01-12 06:34:00    2017-01-12 06:34:00
60576    24636    469    2017-01-12 16:44:00    2017-01-12 16:44:00
60577    24636    500    2017-01-12 06:48:00    2017-01-12 06:48:00
60578    24637    786    2017-01-12 02:25:00    2017-01-12 02:25:00
60579    24637    928    2017-01-12 13:50:00    2017-01-12 13:50:00
60580    24637    681    2017-01-12 16:00:00    2017-01-12 16:00:00
60581    24637    835    2017-01-12 12:38:00    2017-01-12 12:38:00
60582    24637    553    2017-01-12 01:59:00    2017-01-12 01:59:00
60583    24638    585    2017-01-13 21:14:00    2017-01-13 21:14:00
60584    24638    821    2017-01-13 22:15:00    2017-01-13 22:15:00
60585    24638    488    2017-01-13 21:17:00    2017-01-13 21:17:00
60586    24638    932    2017-01-13 05:40:00    2017-01-13 05:40:00
60587    24638    515    2017-01-13 08:13:00    2017-01-13 08:13:00
60588    24639    469    2017-01-13 12:04:00    2017-01-13 12:04:00
60589    24639    921    2017-01-13 02:40:00    2017-01-13 02:40:00
60590    24639    777    2017-01-13 04:47:00    2017-01-13 04:47:00
60591    24639    513    2017-01-13 09:12:00    2017-01-13 09:12:00
60592    24639    861    2017-01-13 18:59:00    2017-01-13 18:59:00
60593    24640    807    2017-01-13 09:54:00    2017-01-13 09:54:00
60594    24640    532    2017-01-13 13:24:00    2017-01-13 13:24:00
60595    24640    660    2017-01-13 21:13:00    2017-01-13 21:13:00
60596    24640    925    2017-01-13 11:21:00    2017-01-13 11:21:00
60597    24640    518    2017-01-13 13:59:00    2017-01-13 13:59:00
60598    24641    610    2017-01-13 16:52:00    2017-01-13 16:52:00
60599    24641    643    2017-01-13 05:09:00    2017-01-13 05:09:00
60600    24641    475    2017-01-13 11:41:00    2017-01-13 11:41:00
60601    24641    841    2017-01-13 22:50:00    2017-01-13 22:50:00
60602    24641    672    2017-01-13 01:11:00    2017-01-13 01:11:00
60603    24642    613    2017-01-13 14:54:00    2017-01-13 14:54:00
60604    24642    560    2017-01-13 03:00:00    2017-01-13 03:00:00
60605    24642    703    2017-01-13 06:34:00    2017-01-13 06:34:00
60606    24642    670    2017-01-13 23:24:00    2017-01-13 23:24:00
60607    24642    864    2017-01-13 22:45:00    2017-01-13 22:45:00
60608    24643    468    2017-01-13 07:02:00    2017-01-13 07:02:00
60609    24643    797    2017-01-13 06:34:00    2017-01-13 06:34:00
60610    24643    797    2017-01-13 15:39:00    2017-01-13 15:39:00
60611    24643    887    2017-01-13 16:22:00    2017-01-13 16:22:00
60612    24643    596    2017-01-13 14:05:00    2017-01-13 14:05:00
60613    24644    852    2017-01-13 22:14:00    2017-01-13 22:14:00
60614    24644    751    2017-01-13 03:09:00    2017-01-13 03:09:00
60615    24644    894    2017-01-13 13:29:00    2017-01-13 13:29:00
60616    24644    763    2017-01-13 12:32:00    2017-01-13 12:32:00
60617    24644    479    2017-01-13 13:12:00    2017-01-13 13:12:00
60618    24645    740    2017-01-13 12:50:00    2017-01-13 12:50:00
60619    24645    498    2017-01-13 15:54:00    2017-01-13 15:54:00
60620    24645    695    2017-01-13 22:03:00    2017-01-13 22:03:00
60621    24645    476    2017-01-13 06:06:00    2017-01-13 06:06:00
60622    24645    838    2017-01-13 23:23:00    2017-01-13 23:23:00
60623    24646    814    2017-01-13 05:03:00    2017-01-13 05:03:00
60624    24646    658    2017-01-13 07:59:00    2017-01-13 07:59:00
60625    24646    935    2017-01-13 08:37:00    2017-01-13 08:37:00
60626    24646    496    2017-01-13 07:58:00    2017-01-13 07:58:00
60627    24646    933    2017-01-13 16:15:00    2017-01-13 16:15:00
60628    24647    534    2017-01-13 07:20:00    2017-01-13 07:20:00
60629    24647    635    2017-01-13 19:37:00    2017-01-13 19:37:00
60630    24647    890    2017-01-13 19:54:00    2017-01-13 19:54:00
60631    24647    759    2017-01-13 09:59:00    2017-01-13 09:59:00
60632    24647    598    2017-01-13 19:38:00    2017-01-13 19:38:00
60633    24648    936    2017-01-13 09:38:00    2017-01-13 09:38:00
60634    24648    668    2017-01-13 06:20:00    2017-01-13 06:20:00
60635    24648    766    2017-01-13 15:55:00    2017-01-13 15:55:00
60636    24648    726    2017-01-13 06:29:00    2017-01-13 06:29:00
60637    24648    890    2017-01-13 06:21:00    2017-01-13 06:21:00
60638    24649    483    2017-01-13 18:41:00    2017-01-13 18:41:00
60639    24649    819    2017-01-13 11:50:00    2017-01-13 11:50:00
60640    24649    625    2017-01-13 14:03:00    2017-01-13 14:03:00
60641    24649    567    2017-01-13 14:18:00    2017-01-13 14:18:00
60642    24649    913    2017-01-13 10:57:00    2017-01-13 10:57:00
60643    24650    869    2017-01-13 03:57:00    2017-01-13 03:57:00
60644    24650    773    2017-01-13 06:34:00    2017-01-13 06:34:00
60645    24650    822    2017-01-13 23:35:00    2017-01-13 23:35:00
60646    24650    639    2017-01-13 04:03:00    2017-01-13 04:03:00
60647    24650    554    2017-01-13 03:00:00    2017-01-13 03:00:00
60648    24651    846    2017-01-13 20:26:00    2017-01-13 20:26:00
60649    24651    752    2017-01-13 05:35:00    2017-01-13 05:35:00
60650    24651    508    2017-01-13 06:03:00    2017-01-13 06:03:00
60651    24651    731    2017-01-13 05:00:00    2017-01-13 05:00:00
60652    24651    746    2017-01-13 21:00:00    2017-01-13 21:00:00
60653    24652    776    2017-01-13 14:58:00    2017-01-13 14:58:00
60654    24652    681    2017-01-13 22:13:00    2017-01-13 22:13:00
60655    24652    850    2017-01-13 14:12:00    2017-01-13 14:12:00
60656    24652    506    2017-01-13 21:45:00    2017-01-13 21:45:00
60657    24652    910    2017-01-13 04:26:00    2017-01-13 04:26:00
60658    24653    610    2017-01-13 18:39:00    2017-01-13 18:39:00
60659    24653    718    2017-01-13 11:00:00    2017-01-13 11:00:00
60660    24653    627    2017-01-13 23:00:00    2017-01-13 23:00:00
60661    24653    745    2017-01-13 16:06:00    2017-01-13 16:06:00
60662    24653    758    2017-01-13 06:12:00    2017-01-13 06:12:00
60663    24654    581    2017-01-13 23:25:00    2017-01-13 23:25:00
60664    24654    492    2017-01-13 18:14:00    2017-01-13 18:14:00
60665    24654    958    2017-01-13 12:07:00    2017-01-13 12:07:00
60666    24654    701    2017-01-13 02:21:00    2017-01-13 02:21:00
60667    24654    788    2017-01-13 08:54:00    2017-01-13 08:54:00
60668    24655    766    2017-01-13 01:08:00    2017-01-13 01:08:00
60669    24655    466    2017-01-13 17:33:00    2017-01-13 17:33:00
60670    24655    634    2017-01-13 10:06:00    2017-01-13 10:06:00
60671    24655    593    2017-01-13 08:22:00    2017-01-13 08:22:00
60672    24655    685    2017-01-13 09:19:00    2017-01-13 09:19:00
60673    24656    765    2017-01-13 22:55:00    2017-01-13 22:55:00
60674    24656    654    2017-01-13 16:44:00    2017-01-13 16:44:00
60675    24656    897    2017-01-13 06:56:00    2017-01-13 06:56:00
60676    24656    837    2017-01-13 09:31:00    2017-01-13 09:31:00
60677    24656    888    2017-01-13 17:34:00    2017-01-13 17:34:00
60678    24657    524    2017-01-13 04:06:00    2017-01-13 04:06:00
60679    24657    527    2017-01-13 09:29:00    2017-01-13 09:29:00
60680    24657    526    2017-01-13 13:58:00    2017-01-13 13:58:00
60681    24657    819    2017-01-13 01:53:00    2017-01-13 01:53:00
60682    24657    882    2017-01-13 15:10:00    2017-01-13 15:10:00
60683    24658    918    2017-01-13 11:28:00    2017-01-13 11:28:00
60684    24658    793    2017-01-13 17:18:00    2017-01-13 17:18:00
60685    24658    817    2017-01-13 13:50:00    2017-01-13 13:50:00
60686    24658    825    2017-01-13 02:53:00    2017-01-13 02:53:00
60687    24658    629    2017-01-13 06:04:00    2017-01-13 06:04:00
60688    24659    872    2017-01-13 09:28:00    2017-01-13 09:28:00
60689    24659    671    2017-01-13 13:56:00    2017-01-13 13:56:00
60690    24659    763    2017-01-13 03:29:00    2017-01-13 03:29:00
60691    24659    777    2017-01-13 08:53:00    2017-01-13 08:53:00
60692    24659    568    2017-01-13 17:08:00    2017-01-13 17:08:00
60693    24660    524    2017-01-13 15:30:00    2017-01-13 15:30:00
60694    24660    845    2017-01-13 02:52:00    2017-01-13 02:52:00
60695    24660    958    2017-01-13 19:52:00    2017-01-13 19:52:00
60696    24660    736    2017-01-13 21:00:00    2017-01-13 21:00:00
60697    24660    535    2017-01-13 14:12:00    2017-01-13 14:12:00
60698    24661    718    2017-01-13 14:10:00    2017-01-13 14:10:00
60699    24661    777    2017-01-13 20:39:00    2017-01-13 20:39:00
60700    24661    672    2017-01-13 06:46:00    2017-01-13 06:46:00
60701    24661    533    2017-01-13 18:35:00    2017-01-13 18:35:00
60702    24661    547    2017-01-13 21:00:00    2017-01-13 21:00:00
60703    24662    509    2017-01-13 16:24:00    2017-01-13 16:24:00
60704    24662    541    2017-01-13 07:32:00    2017-01-13 07:32:00
60705    24662    877    2017-01-13 02:11:00    2017-01-13 02:11:00
60706    24662    654    2017-01-13 11:51:00    2017-01-13 11:51:00
60707    24662    572    2017-01-13 20:21:00    2017-01-13 20:21:00
60708    24663    812    2017-01-13 21:30:00    2017-01-13 21:30:00
60709    24663    611    2017-01-13 20:04:00    2017-01-13 20:04:00
60710    24663    794    2017-01-13 17:13:00    2017-01-13 17:13:00
60711    24663    907    2017-01-13 09:54:00    2017-01-13 09:54:00
60712    24663    575    2017-01-13 23:28:00    2017-01-13 23:28:00
60713    24664    769    2017-01-13 15:18:00    2017-01-13 15:18:00
60714    24664    533    2017-01-13 11:14:00    2017-01-13 11:14:00
60715    24664    491    2017-01-13 19:55:00    2017-01-13 19:55:00
60716    24664    674    2017-01-13 14:07:00    2017-01-13 14:07:00
60717    24664    678    2017-01-13 02:27:00    2017-01-13 02:27:00
60718    24665    906    2017-01-13 22:59:00    2017-01-13 22:59:00
60719    24665    836    2017-01-13 11:06:00    2017-01-13 11:06:00
60720    24665    648    2017-01-13 17:03:00    2017-01-13 17:03:00
60721    24665    863    2017-01-13 11:27:00    2017-01-13 11:27:00
60722    24665    528    2017-01-13 03:48:00    2017-01-13 03:48:00
60723    24666    802    2017-01-13 09:27:00    2017-01-13 09:27:00
60724    24666    501    2017-01-13 04:03:00    2017-01-13 04:03:00
60725    24666    838    2017-01-13 10:15:00    2017-01-13 10:15:00
60726    24666    547    2017-01-13 19:28:00    2017-01-13 19:28:00
60727    24666    876    2017-01-13 22:58:00    2017-01-13 22:58:00
60728    24667    769    2017-01-13 14:21:00    2017-01-13 14:21:00
60729    24667    631    2017-01-13 20:43:00    2017-01-13 20:43:00
60730    24667    547    2017-01-13 19:53:00    2017-01-13 19:53:00
60731    24667    593    2017-01-13 13:57:00    2017-01-13 13:57:00
60732    24667    785    2017-01-13 16:26:00    2017-01-13 16:26:00
60733    24668    782    2017-01-13 01:48:00    2017-01-13 01:48:00
60734    24668    736    2017-01-13 17:59:00    2017-01-13 17:59:00
60735    24668    749    2017-01-13 19:30:00    2017-01-13 19:30:00
60736    24668    815    2017-01-13 15:54:00    2017-01-13 15:54:00
60737    24668    944    2017-01-13 19:37:00    2017-01-13 19:37:00
60738    24669    826    2017-01-13 19:04:00    2017-01-13 19:04:00
60739    24669    492    2017-01-13 03:35:00    2017-01-13 03:35:00
60740    24669    793    2017-01-13 05:53:00    2017-01-13 05:53:00
60741    24669    802    2017-01-13 09:36:00    2017-01-13 09:36:00
60742    24669    961    2017-01-13 13:33:00    2017-01-13 13:33:00
60743    24670    694    2017-01-13 23:48:00    2017-01-13 23:48:00
60744    24670    895    2017-01-13 17:17:00    2017-01-13 17:17:00
60745    24670    484    2017-01-13 17:23:00    2017-01-13 17:23:00
60746    24670    773    2017-01-13 17:00:00    2017-01-13 17:00:00
60747    24670    936    2017-01-13 06:22:00    2017-01-13 06:22:00
60748    24671    529    2017-01-13 04:59:00    2017-01-13 04:59:00
60749    24671    762    2017-01-13 07:38:00    2017-01-13 07:38:00
60750    24671    850    2017-01-13 08:50:00    2017-01-13 08:50:00
60751    24671    658    2017-01-13 15:30:00    2017-01-13 15:30:00
60752    24671    953    2017-01-13 23:39:00    2017-01-13 23:39:00
60753    24672    640    2017-01-13 20:54:00    2017-01-13 20:54:00
60754    24672    851    2017-01-13 14:15:00    2017-01-13 14:15:00
60755    24672    950    2017-01-13 06:09:00    2017-01-13 06:09:00
60756    24672    846    2017-01-13 16:03:00    2017-01-13 16:03:00
60757    24672    837    2017-01-13 04:11:00    2017-01-13 04:11:00
60758    24673    708    2017-01-13 20:19:00    2017-01-13 20:19:00
60759    24673    581    2017-01-13 21:45:00    2017-01-13 21:45:00
60760    24673    500    2017-01-13 11:43:00    2017-01-13 11:43:00
60761    24673    899    2017-01-13 11:40:00    2017-01-13 11:40:00
60762    24673    500    2017-01-13 17:06:00    2017-01-13 17:06:00
60763    24674    801    2017-01-13 08:41:00    2017-01-13 08:41:00
60764    24674    738    2017-01-13 09:39:00    2017-01-13 09:39:00
60765    24674    560    2017-01-13 23:23:00    2017-01-13 23:23:00
60766    24674    958    2017-01-13 11:08:00    2017-01-13 11:08:00
60767    24674    684    2017-01-13 04:39:00    2017-01-13 04:39:00
60768    24675    745    2017-01-13 07:51:00    2017-01-13 07:51:00
60769    24675    779    2017-01-13 15:00:00    2017-01-13 15:00:00
60770    24675    930    2017-01-13 22:07:00    2017-01-13 22:07:00
60771    24675    473    2017-01-13 20:02:00    2017-01-13 20:02:00
60772    24675    613    2017-01-13 16:37:00    2017-01-13 16:37:00
60773    24676    745    2017-01-13 01:09:00    2017-01-13 01:09:00
60774    24676    846    2017-01-13 03:51:00    2017-01-13 03:51:00
60775    24676    924    2017-01-13 02:45:00    2017-01-13 02:45:00
60776    24676    851    2017-01-13 07:03:00    2017-01-13 07:03:00
60777    24676    547    2017-01-13 14:59:00    2017-01-13 14:59:00
60778    24677    551    2017-01-13 15:56:00    2017-01-13 15:56:00
60779    24677    544    2017-01-13 17:02:00    2017-01-13 17:02:00
60780    24677    532    2017-01-13 18:12:00    2017-01-13 18:12:00
60781    24677    853    2017-01-13 22:04:00    2017-01-13 22:04:00
60782    24677    529    2017-01-13 17:28:00    2017-01-13 17:28:00
60783    24678    518    2017-01-13 06:49:00    2017-01-13 06:49:00
60784    24678    551    2017-01-13 05:00:00    2017-01-13 05:00:00
60785    24678    875    2017-01-13 06:21:00    2017-01-13 06:21:00
60786    24678    807    2017-01-13 20:43:00    2017-01-13 20:43:00
60787    24678    817    2017-01-13 14:02:00    2017-01-13 14:02:00
60788    24679    762    2017-01-13 18:29:00    2017-01-13 18:29:00
60789    24679    698    2017-01-13 17:20:00    2017-01-13 17:20:00
60790    24679    928    2017-01-13 13:04:00    2017-01-13 13:04:00
60791    24679    588    2017-01-13 17:00:00    2017-01-13 17:00:00
60792    24679    725    2017-01-13 09:03:00    2017-01-13 09:03:00
60793    24680    794    2017-01-13 21:25:00    2017-01-13 21:25:00
60794    24680    710    2017-01-13 09:33:00    2017-01-13 09:33:00
60795    24680    735    2017-01-13 10:42:00    2017-01-13 10:42:00
60796    24680    657    2017-01-13 13:30:00    2017-01-13 13:30:00
60797    24680    753    2017-01-13 18:40:00    2017-01-13 18:40:00
60798    24681    857    2017-01-13 23:38:00    2017-01-13 23:38:00
60799    24681    827    2017-01-13 21:19:00    2017-01-13 21:19:00
60800    24681    920    2017-01-13 16:35:00    2017-01-13 16:35:00
60801    24681    818    2017-01-13 09:52:00    2017-01-13 09:52:00
60802    24681    771    2017-01-13 23:00:00    2017-01-13 23:00:00
60803    24682    802    2017-01-13 12:09:00    2017-01-13 12:09:00
60804    24682    935    2017-01-13 02:10:00    2017-01-13 02:10:00
60805    24682    883    2017-01-13 08:11:00    2017-01-13 08:11:00
60806    24682    884    2017-01-13 11:14:00    2017-01-13 11:14:00
60807    24682    886    2017-01-13 22:11:00    2017-01-13 22:11:00
60808    24683    625    2017-01-13 15:17:00    2017-01-13 15:17:00
60809    24683    743    2017-01-13 07:29:00    2017-01-13 07:29:00
60810    24683    494    2017-01-13 11:55:00    2017-01-13 11:55:00
60811    24683    890    2017-01-13 08:11:00    2017-01-13 08:11:00
60812    24683    897    2017-01-13 20:52:00    2017-01-13 20:52:00
60813    24684    554    2017-01-13 14:40:00    2017-01-13 14:40:00
60814    24684    546    2017-01-13 22:10:00    2017-01-13 22:10:00
60815    24684    524    2017-01-13 03:24:00    2017-01-13 03:24:00
60816    24684    552    2017-01-13 03:22:00    2017-01-13 03:22:00
60817    24684    810    2017-01-13 04:49:00    2017-01-13 04:49:00
60818    24685    878    2017-01-13 18:25:00    2017-01-13 18:25:00
60819    24685    641    2017-01-13 19:38:00    2017-01-13 19:38:00
60820    24685    537    2017-01-13 11:33:00    2017-01-13 11:33:00
60821    24685    917    2017-01-13 10:23:00    2017-01-13 10:23:00
60822    24685    882    2017-01-13 18:06:00    2017-01-13 18:06:00
60823    24686    501    2017-01-13 18:34:00    2017-01-13 18:34:00
60824    24686    514    2017-01-13 21:16:00    2017-01-13 21:16:00
60825    24686    768    2017-01-13 11:55:00    2017-01-13 11:55:00
60826    24686    503    2017-01-13 18:04:00    2017-01-13 18:04:00
60827    24686    465    2017-01-13 10:07:00    2017-01-13 10:07:00
60828    24687    616    2017-01-13 07:53:00    2017-01-13 07:53:00
60829    24687    727    2017-01-13 18:00:00    2017-01-13 18:00:00
60830    24687    954    2017-01-13 10:39:00    2017-01-13 10:39:00
60831    24687    564    2017-01-13 20:02:00    2017-01-13 20:02:00
60832    24687    679    2017-01-13 07:31:00    2017-01-13 07:31:00
60833    24688    807    2017-01-13 12:50:00    2017-01-13 12:50:00
60834    24688    914    2017-01-13 19:00:00    2017-01-13 19:00:00
60835    24688    721    2017-01-13 21:32:00    2017-01-13 21:32:00
60836    24688    805    2017-01-13 03:10:00    2017-01-13 03:10:00
60837    24688    897    2017-01-13 11:31:00    2017-01-13 11:31:00
60838    24689    759    2017-01-13 01:54:00    2017-01-13 01:54:00
60839    24689    677    2017-01-13 22:39:00    2017-01-13 22:39:00
60840    24689    852    2017-01-13 23:59:00    2017-01-13 23:59:00
60841    24689    778    2017-01-13 23:30:00    2017-01-13 23:30:00
60842    24689    641    2017-01-13 06:30:00    2017-01-13 06:30:00
60843    24690    673    2017-01-13 12:14:00    2017-01-13 12:14:00
60844    24690    748    2017-01-13 16:30:00    2017-01-13 16:30:00
60845    24690    904    2017-01-13 02:18:00    2017-01-13 02:18:00
60846    24690    873    2017-01-13 10:21:00    2017-01-13 10:21:00
60847    24690    708    2017-01-13 12:58:00    2017-01-13 12:58:00
60848    24691    858    2017-01-13 14:04:00    2017-01-13 14:04:00
60849    24691    698    2017-01-13 05:15:00    2017-01-13 05:15:00
60850    24691    491    2017-01-13 09:09:00    2017-01-13 09:09:00
60851    24691    769    2017-01-13 12:25:00    2017-01-13 12:25:00
60852    24691    870    2017-01-13 14:11:00    2017-01-13 14:11:00
60853    24692    934    2017-01-13 21:53:00    2017-01-13 21:53:00
60854    24692    886    2017-01-13 08:52:00    2017-01-13 08:52:00
60855    24692    535    2017-01-13 02:14:00    2017-01-13 02:14:00
60856    24692    501    2017-01-13 20:00:00    2017-01-13 20:00:00
60857    24692    821    2017-01-13 14:54:00    2017-01-13 14:54:00
60858    24693    711    2017-01-13 17:13:00    2017-01-13 17:13:00
60859    24693    603    2017-01-13 18:15:00    2017-01-13 18:15:00
60860    24693    932    2017-01-13 20:08:00    2017-01-13 20:08:00
60861    24693    682    2017-01-13 21:51:00    2017-01-13 21:51:00
60862    24693    700    2017-01-13 08:18:00    2017-01-13 08:18:00
60863    24694    785    2017-01-13 13:34:00    2017-01-13 13:34:00
60864    24694    951    2017-01-13 07:51:00    2017-01-13 07:51:00
60865    24694    688    2017-01-13 21:08:00    2017-01-13 21:08:00
60866    24694    594    2017-01-13 03:15:00    2017-01-13 03:15:00
60867    24694    618    2017-01-13 02:10:00    2017-01-13 02:10:00
60868    24695    815    2017-01-13 09:33:00    2017-01-13 09:33:00
60869    24695    943    2017-01-13 14:58:00    2017-01-13 14:58:00
60870    24695    697    2017-01-13 14:12:00    2017-01-13 14:12:00
60871    24695    649    2017-01-13 21:07:00    2017-01-13 21:07:00
60872    24695    550    2017-01-13 11:39:00    2017-01-13 11:39:00
60873    24696    773    2017-01-13 21:34:00    2017-01-13 21:34:00
60874    24696    949    2017-01-13 20:18:00    2017-01-13 20:18:00
60875    24696    853    2017-01-13 13:29:00    2017-01-13 13:29:00
60876    24696    695    2017-01-13 20:49:00    2017-01-13 20:49:00
60877    24696    926    2017-01-13 03:20:00    2017-01-13 03:20:00
60878    24697    789    2017-01-13 02:34:00    2017-01-13 02:34:00
60879    24697    824    2017-01-13 23:03:00    2017-01-13 23:03:00
60880    24697    655    2017-01-13 20:00:00    2017-01-13 20:00:00
60881    24697    838    2017-01-13 03:00:00    2017-01-13 03:00:00
60882    24697    516    2017-01-13 20:15:00    2017-01-13 20:15:00
60883    24698    489    2017-01-13 21:32:00    2017-01-13 21:32:00
60884    24698    891    2017-01-13 19:47:00    2017-01-13 19:47:00
60885    24698    903    2017-01-13 20:33:00    2017-01-13 20:33:00
60886    24698    757    2017-01-13 11:10:00    2017-01-13 11:10:00
60887    24698    932    2017-01-13 19:57:00    2017-01-13 19:57:00
60888    24699    508    2017-01-13 13:47:00    2017-01-13 13:47:00
60889    24699    695    2017-01-13 21:33:00    2017-01-13 21:33:00
60890    24699    805    2017-01-13 18:46:00    2017-01-13 18:46:00
60891    24699    610    2017-01-13 16:38:00    2017-01-13 16:38:00
60892    24699    666    2017-01-13 20:26:00    2017-01-13 20:26:00
60893    24700    671    2017-01-13 08:00:00    2017-01-13 08:00:00
60894    24700    595    2017-01-13 05:22:00    2017-01-13 05:22:00
60895    24700    594    2017-01-13 16:29:00    2017-01-13 16:29:00
60896    24700    833    2017-01-13 22:20:00    2017-01-13 22:20:00
60897    24700    726    2017-01-13 23:05:00    2017-01-13 23:05:00
60898    24701    728    2017-01-13 17:55:00    2017-01-13 17:55:00
60899    24701    666    2017-01-13 17:58:00    2017-01-13 17:58:00
60900    24701    798    2017-01-13 13:49:00    2017-01-13 13:49:00
60901    24701    688    2017-01-13 07:56:00    2017-01-13 07:56:00
60902    24701    873    2017-01-13 04:05:00    2017-01-13 04:05:00
60903    24702    921    2017-01-13 22:39:00    2017-01-13 22:39:00
60904    24702    828    2017-01-13 05:01:00    2017-01-13 05:01:00
60905    24702    649    2017-01-13 04:00:00    2017-01-13 04:00:00
60906    24702    552    2017-01-13 22:10:00    2017-01-13 22:10:00
60907    24702    552    2017-01-13 04:10:00    2017-01-13 04:10:00
60908    24703    598    2017-01-13 15:55:00    2017-01-13 15:55:00
60909    24703    560    2017-01-13 19:05:00    2017-01-13 19:05:00
60910    24703    763    2017-01-13 16:52:00    2017-01-13 16:52:00
60911    24703    547    2017-01-13 13:43:00    2017-01-13 13:43:00
60912    24703    698    2017-01-13 06:18:00    2017-01-13 06:18:00
60913    24704    772    2017-01-13 10:48:00    2017-01-13 10:48:00
60914    24704    863    2017-01-13 18:34:00    2017-01-13 18:34:00
60915    24704    593    2017-01-13 22:22:00    2017-01-13 22:22:00
60916    24704    683    2017-01-13 22:52:00    2017-01-13 22:52:00
60917    24704    558    2017-01-13 20:46:00    2017-01-13 20:46:00
60918    24705    831    2017-01-13 12:01:00    2017-01-13 12:01:00
60919    24705    618    2017-01-13 17:44:00    2017-01-13 17:44:00
60920    24705    812    2017-01-13 14:45:00    2017-01-13 14:45:00
60921    24705    926    2017-01-13 09:55:00    2017-01-13 09:55:00
60922    24705    862    2017-01-13 10:41:00    2017-01-13 10:41:00
60923    24706    918    2017-01-13 10:05:00    2017-01-13 10:05:00
60924    24706    614    2017-01-13 14:52:00    2017-01-13 14:52:00
60925    24706    473    2017-01-13 11:59:00    2017-01-13 11:59:00
60926    24706    609    2017-01-13 13:23:00    2017-01-13 13:23:00
60927    24706    850    2017-01-13 21:13:00    2017-01-13 21:13:00
60928    24707    621    2017-01-13 13:32:00    2017-01-13 13:32:00
60929    24707    512    2017-01-13 01:54:00    2017-01-13 01:54:00
60930    24707    470    2017-01-13 19:09:00    2017-01-13 19:09:00
60931    24707    516    2017-01-13 17:50:00    2017-01-13 17:50:00
60932    24707    796    2017-01-13 08:11:00    2017-01-13 08:11:00
60933    24708    768    2017-01-13 01:39:00    2017-01-13 01:39:00
60934    24708    607    2017-01-13 21:28:00    2017-01-13 21:28:00
60935    24708    574    2017-01-13 12:27:00    2017-01-13 12:27:00
60936    24708    850    2017-01-13 02:05:00    2017-01-13 02:05:00
60937    24708    914    2017-01-13 13:05:00    2017-01-13 13:05:00
60938    24709    552    2017-01-13 12:28:00    2017-01-13 12:28:00
60939    24709    745    2017-01-13 10:35:00    2017-01-13 10:35:00
60940    24709    960    2017-01-13 08:38:00    2017-01-13 08:38:00
60941    24709    878    2017-01-13 23:41:00    2017-01-13 23:41:00
60942    24709    957    2017-01-13 21:07:00    2017-01-13 21:07:00
60943    24710    682    2017-01-13 19:23:00    2017-01-13 19:23:00
60944    24710    927    2017-01-13 18:54:00    2017-01-13 18:54:00
60945    24710    581    2017-01-13 13:04:00    2017-01-13 13:04:00
60946    24710    701    2017-01-13 23:10:00    2017-01-13 23:10:00
60947    24710    723    2017-01-13 10:05:00    2017-01-13 10:05:00
60948    24711    697    2017-01-13 06:33:00    2017-01-13 06:33:00
60949    24711    554    2017-01-13 13:15:00    2017-01-13 13:15:00
60950    24711    596    2017-01-13 09:56:00    2017-01-13 09:56:00
60951    24711    631    2017-01-13 11:47:00    2017-01-13 11:47:00
60952    24711    918    2017-01-13 19:55:00    2017-01-13 19:55:00
60953    24712    670    2017-01-13 13:21:00    2017-01-13 13:21:00
60954    24712    463    2017-01-13 06:40:00    2017-01-13 06:40:00
60955    24712    691    2017-01-13 04:21:00    2017-01-13 04:21:00
60956    24712    941    2017-01-13 21:20:00    2017-01-13 21:20:00
60957    24712    699    2017-01-13 04:49:00    2017-01-13 04:49:00
60958    24713    550    2017-01-13 13:52:00    2017-01-13 13:52:00
60959    24713    908    2017-01-13 14:08:00    2017-01-13 14:08:00
60960    24713    727    2017-01-13 22:01:00    2017-01-13 22:01:00
60961    24713    788    2017-01-13 11:32:00    2017-01-13 11:32:00
60962    24713    914    2017-01-13 20:57:00    2017-01-13 20:57:00
60963    24714    850    2017-01-13 18:00:00    2017-01-13 18:00:00
60964    24714    805    2017-01-13 11:06:00    2017-01-13 11:06:00
60965    24714    475    2017-01-13 16:48:00    2017-01-13 16:48:00
60966    24714    927    2017-01-13 16:25:00    2017-01-13 16:25:00
60967    24714    877    2017-01-13 01:59:00    2017-01-13 01:59:00
60968    24715    662    2017-01-14 22:40:00    2017-01-14 22:40:00
60969    24715    769    2017-01-14 17:16:00    2017-01-14 17:16:00
60970    24715    782    2017-01-14 10:05:00    2017-01-14 10:05:00
60971    24715    601    2017-01-14 11:13:00    2017-01-14 11:13:00
60972    24715    677    2017-01-14 15:13:00    2017-01-14 15:13:00
60973    24716    764    2017-01-14 13:43:00    2017-01-14 13:43:00
60974    24716    728    2017-01-14 22:06:00    2017-01-14 22:06:00
60975    24716    881    2017-01-14 16:14:00    2017-01-14 16:14:00
60976    24716    561    2017-01-14 07:39:00    2017-01-14 07:39:00
60977    24716    740    2017-01-14 11:47:00    2017-01-14 11:47:00
60978    24717    773    2017-01-14 05:52:00    2017-01-14 05:52:00
60979    24717    815    2017-01-14 03:55:00    2017-01-14 03:55:00
60980    24717    828    2017-01-14 09:35:00    2017-01-14 09:35:00
60981    24717    863    2017-01-14 12:30:00    2017-01-14 12:30:00
60982    24717    874    2017-01-14 13:22:00    2017-01-14 13:22:00
60983    24718    961    2017-01-14 20:13:00    2017-01-14 20:13:00
60984    24718    657    2017-01-14 03:21:00    2017-01-14 03:21:00
60985    24718    876    2017-01-14 06:42:00    2017-01-14 06:42:00
60986    24718    935    2017-01-14 05:34:00    2017-01-14 05:34:00
60987    24718    729    2017-01-14 15:35:00    2017-01-14 15:35:00
60988    24719    724    2017-01-14 11:37:00    2017-01-14 11:37:00
60989    24719    636    2017-01-14 05:30:00    2017-01-14 05:30:00
60990    24719    555    2017-01-14 21:12:00    2017-01-14 21:12:00
60991    24719    529    2017-01-14 09:53:00    2017-01-14 09:53:00
60992    24719    874    2017-01-14 08:05:00    2017-01-14 08:05:00
60993    24720    843    2017-01-14 06:37:00    2017-01-14 06:37:00
60994    24720    743    2017-01-14 06:29:00    2017-01-14 06:29:00
60995    24720    888    2017-01-14 09:16:00    2017-01-14 09:16:00
60996    24720    664    2017-01-14 15:56:00    2017-01-14 15:56:00
60997    24720    569    2017-01-14 22:33:00    2017-01-14 22:33:00
60998    24721    514    2017-01-14 02:22:00    2017-01-14 02:22:00
60999    24721    542    2017-01-14 18:42:00    2017-01-14 18:42:00
61000    24721    864    2017-01-14 13:23:00    2017-01-14 13:23:00
61001    24721    543    2017-01-14 17:03:00    2017-01-14 17:03:00
61002    24721    937    2017-01-14 18:15:00    2017-01-14 18:15:00
61003    24722    711    2017-01-14 22:21:00    2017-01-14 22:21:00
61004    24722    743    2017-01-14 23:33:00    2017-01-14 23:33:00
61005    24722    856    2017-01-14 09:00:00    2017-01-14 09:00:00
61006    24722    861    2017-01-14 10:47:00    2017-01-14 10:47:00
61007    24722    873    2017-01-14 17:10:00    2017-01-14 17:10:00
61008    24723    768    2017-01-14 01:45:00    2017-01-14 01:45:00
61009    24723    944    2017-01-14 16:48:00    2017-01-14 16:48:00
61010    24723    781    2017-01-14 06:00:00    2017-01-14 06:00:00
61011    24723    621    2017-01-14 04:10:00    2017-01-14 04:10:00
61012    24723    759    2017-01-14 06:46:00    2017-01-14 06:46:00
61013    24724    660    2017-01-14 12:20:00    2017-01-14 12:20:00
61014    24724    938    2017-01-14 06:35:00    2017-01-14 06:35:00
61015    24724    518    2017-01-14 08:39:00    2017-01-14 08:39:00
61016    24724    723    2017-01-14 02:51:00    2017-01-14 02:51:00
61017    24724    832    2017-01-14 13:01:00    2017-01-14 13:01:00
61018    24725    597    2017-01-14 17:49:00    2017-01-14 17:49:00
61019    24725    653    2017-01-14 15:01:00    2017-01-14 15:01:00
61020    24725    647    2017-01-14 13:58:00    2017-01-14 13:58:00
61021    24725    870    2017-01-14 08:56:00    2017-01-14 08:56:00
61022    24725    651    2017-01-14 18:57:00    2017-01-14 18:57:00
61023    24726    896    2017-01-14 13:44:00    2017-01-14 13:44:00
61024    24726    797    2017-01-14 08:39:00    2017-01-14 08:39:00
61025    24726    667    2017-01-14 18:48:00    2017-01-14 18:48:00
61026    24726    526    2017-01-14 03:50:00    2017-01-14 03:50:00
61027    24726    674    2017-01-14 20:33:00    2017-01-14 20:33:00
61028    24727    714    2017-01-14 10:15:00    2017-01-14 10:15:00
61029    24727    819    2017-01-14 13:00:00    2017-01-14 13:00:00
61030    24727    886    2017-01-14 14:36:00    2017-01-14 14:36:00
61031    24727    912    2017-01-14 08:21:00    2017-01-14 08:21:00
61032    24727    720    2017-01-14 01:47:00    2017-01-14 01:47:00
61033    24728    774    2017-01-14 14:35:00    2017-01-14 14:35:00
61034    24728    636    2017-01-14 04:36:00    2017-01-14 04:36:00
61035    24728    825    2017-01-14 01:04:00    2017-01-14 01:04:00
61036    24728    596    2017-01-14 06:10:00    2017-01-14 06:10:00
61037    24728    933    2017-01-14 13:14:00    2017-01-14 13:14:00
61038    24729    477    2017-01-14 23:28:00    2017-01-14 23:28:00
61039    24729    813    2017-01-14 22:35:00    2017-01-14 22:35:00
61040    24729    463    2017-01-14 03:11:00    2017-01-14 03:11:00
61041    24729    777    2017-01-14 09:33:00    2017-01-14 09:33:00
61042    24729    792    2017-01-14 15:09:00    2017-01-14 15:09:00
61043    24730    849    2017-01-14 05:36:00    2017-01-14 05:36:00
61044    24730    754    2017-01-14 01:03:00    2017-01-14 01:03:00
61045    24730    862    2017-01-14 17:26:00    2017-01-14 17:26:00
61046    24730    560    2017-01-14 16:15:00    2017-01-14 16:15:00
61047    24730    480    2017-01-14 21:19:00    2017-01-14 21:19:00
61048    24731    824    2017-01-14 14:35:00    2017-01-14 14:35:00
61049    24731    592    2017-01-14 18:07:00    2017-01-14 18:07:00
61050    24731    547    2017-01-14 17:01:00    2017-01-14 17:01:00
61051    24731    607    2017-01-14 15:17:00    2017-01-14 15:17:00
61052    24731    948    2017-01-14 22:53:00    2017-01-14 22:53:00
61053    24732    787    2017-01-14 20:08:00    2017-01-14 20:08:00
61054    24732    683    2017-01-14 11:30:00    2017-01-14 11:30:00
61055    24732    614    2017-01-14 04:53:00    2017-01-14 04:53:00
61056    24732    573    2017-01-14 01:07:00    2017-01-14 01:07:00
61057    24732    748    2017-01-14 16:08:00    2017-01-14 16:08:00
61058    24733    652    2017-01-14 02:00:00    2017-01-14 02:00:00
61059    24733    838    2017-01-14 17:44:00    2017-01-14 17:44:00
61060    24733    939    2017-01-14 19:21:00    2017-01-14 19:21:00
61061    24733    801    2017-01-14 23:58:00    2017-01-14 23:58:00
61062    24733    515    2017-01-14 10:34:00    2017-01-14 10:34:00
61063    24734    719    2017-01-14 19:43:00    2017-01-14 19:43:00
61064    24734    596    2017-01-14 10:21:00    2017-01-14 10:21:00
61065    24734    760    2017-01-14 23:57:00    2017-01-14 23:57:00
61066    24734    796    2017-01-14 14:59:00    2017-01-14 14:59:00
61067    24734    620    2017-01-14 01:45:00    2017-01-14 01:45:00
61068    24735    745    2017-01-14 15:21:00    2017-01-14 15:21:00
61069    24735    813    2017-01-14 04:11:00    2017-01-14 04:11:00
61070    24735    648    2017-01-14 22:29:00    2017-01-14 22:29:00
61071    24735    495    2017-01-14 05:15:00    2017-01-14 05:15:00
61072    24735    703    2017-01-14 17:02:00    2017-01-14 17:02:00
61073    24736    599    2017-01-14 08:47:00    2017-01-14 08:47:00
61074    24736    757    2017-01-14 04:13:00    2017-01-14 04:13:00
61075    24736    522    2017-01-14 14:48:00    2017-01-14 14:48:00
61076    24736    879    2017-01-14 11:43:00    2017-01-14 11:43:00
61077    24736    770    2017-01-14 22:16:00    2017-01-14 22:16:00
61078    24737    522    2017-01-14 07:08:00    2017-01-14 07:08:00
61079    24737    902    2017-01-14 12:06:00    2017-01-14 12:06:00
61080    24737    787    2017-01-14 09:39:00    2017-01-14 09:39:00
61081    24737    804    2017-01-14 17:12:00    2017-01-14 17:12:00
61082    24737    522    2017-01-14 12:07:00    2017-01-14 12:07:00
61083    24738    697    2017-01-14 08:58:00    2017-01-14 08:58:00
61084    24738    525    2017-01-14 06:47:00    2017-01-14 06:47:00
61085    24738    489    2017-01-14 19:04:00    2017-01-14 19:04:00
61086    24738    482    2017-01-14 18:59:00    2017-01-14 18:59:00
61087    24738    826    2017-01-14 12:27:00    2017-01-14 12:27:00
61088    24739    871    2017-01-14 09:25:00    2017-01-14 09:25:00
61089    24739    786    2017-01-14 12:16:00    2017-01-14 12:16:00
61090    24739    520    2017-01-14 18:17:00    2017-01-14 18:17:00
61091    24739    563    2017-01-14 07:49:00    2017-01-14 07:49:00
61092    24739    643    2017-01-14 09:15:00    2017-01-14 09:15:00
61093    24740    502    2017-01-14 13:14:00    2017-01-14 13:14:00
61094    24740    633    2017-01-14 17:30:00    2017-01-14 17:30:00
61095    24740    942    2017-01-14 23:17:00    2017-01-14 23:17:00
61096    24740    656    2017-01-14 21:33:00    2017-01-14 21:33:00
61097    24740    755    2017-01-14 01:54:00    2017-01-14 01:54:00
61098    24741    550    2017-01-14 15:24:00    2017-01-14 15:24:00
61099    24741    748    2017-01-14 19:56:00    2017-01-14 19:56:00
61100    24741    775    2017-01-14 13:58:00    2017-01-14 13:58:00
61101    24741    566    2017-01-14 15:29:00    2017-01-14 15:29:00
61102    24741    494    2017-01-14 16:09:00    2017-01-14 16:09:00
61103    24742    899    2017-01-14 15:00:00    2017-01-14 15:00:00
61104    24742    685    2017-01-14 21:18:00    2017-01-14 21:18:00
61105    24742    800    2017-01-14 23:15:00    2017-01-14 23:15:00
61106    24742    603    2017-01-14 04:09:00    2017-01-14 04:09:00
61107    24742    894    2017-01-14 11:13:00    2017-01-14 11:13:00
61108    24743    673    2017-01-14 21:03:00    2017-01-14 21:03:00
61109    24743    558    2017-01-14 04:38:00    2017-01-14 04:38:00
61110    24743    524    2017-01-14 19:33:00    2017-01-14 19:33:00
61111    24743    688    2017-01-14 18:03:00    2017-01-14 18:03:00
61112    24743    650    2017-01-14 04:37:00    2017-01-14 04:37:00
61113    24744    751    2017-01-14 21:09:00    2017-01-14 21:09:00
61114    24744    711    2017-01-14 03:29:00    2017-01-14 03:29:00
61115    24744    620    2017-01-14 06:29:00    2017-01-14 06:29:00
61116    24744    608    2017-01-14 19:32:00    2017-01-14 19:32:00
61117    24744    930    2017-01-14 13:15:00    2017-01-14 13:15:00
61118    24745    756    2017-01-14 13:30:00    2017-01-14 13:30:00
61119    24745    476    2017-01-14 23:51:00    2017-01-14 23:51:00
61120    24745    634    2017-01-14 07:43:00    2017-01-14 07:43:00
61121    24745    878    2017-01-14 13:26:00    2017-01-14 13:26:00
61122    24745    518    2017-01-14 07:57:00    2017-01-14 07:57:00
61123    24746    809    2017-01-14 10:09:00    2017-01-14 10:09:00
61124    24746    664    2017-01-14 09:26:00    2017-01-14 09:26:00
61125    24746    544    2017-01-14 06:25:00    2017-01-14 06:25:00
61126    24746    666    2017-01-14 08:36:00    2017-01-14 08:36:00
61127    24746    508    2017-01-14 11:27:00    2017-01-14 11:27:00
61128    24747    820    2017-01-14 22:59:00    2017-01-14 22:59:00
61129    24747    872    2017-01-14 04:39:00    2017-01-14 04:39:00
61130    24747    491    2017-01-14 21:15:00    2017-01-14 21:15:00
61131    24747    709    2017-01-14 06:13:00    2017-01-14 06:13:00
61132    24747    898    2017-01-14 18:33:00    2017-01-14 18:33:00
61133    24748    560    2017-01-14 21:14:00    2017-01-14 21:14:00
61134    24748    918    2017-01-14 19:41:00    2017-01-14 19:41:00
61135    24748    960    2017-01-14 20:42:00    2017-01-14 20:42:00
61136    24748    579    2017-01-14 06:45:00    2017-01-14 06:45:00
61137    24748    863    2017-01-14 09:59:00    2017-01-14 09:59:00
61138    24749    833    2017-01-14 12:39:00    2017-01-14 12:39:00
61139    24749    952    2017-01-14 02:27:00    2017-01-14 02:27:00
61140    24749    757    2017-01-14 04:51:00    2017-01-14 04:51:00
61141    24749    886    2017-01-14 12:52:00    2017-01-14 12:52:00
61142    24749    535    2017-01-14 13:08:00    2017-01-14 13:08:00
61143    24750    498    2017-01-14 19:13:00    2017-01-14 19:13:00
61144    24750    493    2017-01-14 08:09:00    2017-01-14 08:09:00
61145    24750    934    2017-01-14 18:00:00    2017-01-14 18:00:00
61146    24750    500    2017-01-14 05:10:00    2017-01-14 05:10:00
61147    24750    508    2017-01-14 20:36:00    2017-01-14 20:36:00
61148    24751    576    2017-01-14 10:44:00    2017-01-14 10:44:00
61149    24751    503    2017-01-14 10:58:00    2017-01-14 10:58:00
61150    24751    531    2017-01-14 06:17:00    2017-01-14 06:17:00
61151    24751    896    2017-01-14 21:33:00    2017-01-14 21:33:00
61152    24751    482    2017-01-14 05:08:00    2017-01-14 05:08:00
61153    24752    682    2017-01-14 16:49:00    2017-01-14 16:49:00
61154    24752    793    2017-01-14 17:44:00    2017-01-14 17:44:00
61155    24752    625    2017-01-14 12:44:00    2017-01-14 12:44:00
61156    24752    912    2017-01-14 12:40:00    2017-01-14 12:40:00
61157    24752    822    2017-01-14 11:11:00    2017-01-14 11:11:00
61158    24753    629    2017-01-14 22:27:00    2017-01-14 22:27:00
61159    24753    573    2017-01-14 17:47:00    2017-01-14 17:47:00
61160    24753    628    2017-01-14 17:13:00    2017-01-14 17:13:00
61161    24753    552    2017-01-14 23:45:00    2017-01-14 23:45:00
61162    24753    789    2017-01-14 07:51:00    2017-01-14 07:51:00
61163    24754    895    2017-01-14 07:54:00    2017-01-14 07:54:00
61164    24754    822    2017-01-14 11:24:00    2017-01-14 11:24:00
61165    24754    488    2017-01-14 07:27:00    2017-01-14 07:27:00
61166    24754    548    2017-01-14 10:13:00    2017-01-14 10:13:00
61167    24754    506    2017-01-14 07:41:00    2017-01-14 07:41:00
61168    24755    746    2017-01-14 19:21:00    2017-01-14 19:21:00
61169    24755    845    2017-01-14 04:01:00    2017-01-14 04:01:00
61170    24755    598    2017-01-14 14:56:00    2017-01-14 14:56:00
61171    24755    845    2017-01-14 18:25:00    2017-01-14 18:25:00
61172    24755    562    2017-01-14 23:05:00    2017-01-14 23:05:00
61173    24756    703    2017-01-14 14:32:00    2017-01-14 14:32:00
61174    24756    958    2017-01-14 07:42:00    2017-01-14 07:42:00
61175    24756    683    2017-01-14 16:57:00    2017-01-14 16:57:00
61176    24756    825    2017-01-14 18:38:00    2017-01-14 18:38:00
61177    24756    662    2017-01-14 11:06:00    2017-01-14 11:06:00
61178    24757    727    2017-01-14 12:54:00    2017-01-14 12:54:00
61179    24757    529    2017-01-14 13:11:00    2017-01-14 13:11:00
61180    24757    784    2017-01-14 13:17:00    2017-01-14 13:17:00
61181    24757    811    2017-01-14 20:16:00    2017-01-14 20:16:00
61182    24757    802    2017-01-14 03:40:00    2017-01-14 03:40:00
61183    24758    900    2017-01-14 12:52:00    2017-01-14 12:52:00
61184    24758    710    2017-01-15 00:00:00    2017-01-15 00:00:00
61185    24758    545    2017-01-14 03:06:00    2017-01-14 03:06:00
61186    24758    944    2017-01-14 12:06:00    2017-01-14 12:06:00
61187    24758    872    2017-01-14 21:12:00    2017-01-14 21:12:00
61188    24759    480    2017-01-14 18:32:00    2017-01-14 18:32:00
61189    24759    570    2017-01-14 09:58:00    2017-01-14 09:58:00
61190    24759    752    2017-01-14 03:38:00    2017-01-14 03:38:00
61191    24759    760    2017-01-14 16:39:00    2017-01-14 16:39:00
61192    24759    859    2017-01-14 06:01:00    2017-01-14 06:01:00
61193    24760    625    2017-01-14 17:37:00    2017-01-14 17:37:00
61194    24760    536    2017-01-14 07:25:00    2017-01-14 07:25:00
61195    24760    498    2017-01-14 17:22:00    2017-01-14 17:22:00
61196    24760    875    2017-01-14 19:24:00    2017-01-14 19:24:00
61197    24760    916    2017-01-14 05:13:00    2017-01-14 05:13:00
61198    24761    705    2017-01-14 10:00:00    2017-01-14 10:00:00
61199    24761    628    2017-01-14 22:48:00    2017-01-14 22:48:00
61200    24761    867    2017-01-14 21:37:00    2017-01-14 21:37:00
61201    24761    694    2017-01-14 02:24:00    2017-01-14 02:24:00
61202    24761    619    2017-01-14 15:58:00    2017-01-14 15:58:00
61203    24762    892    2017-01-14 02:47:00    2017-01-14 02:47:00
61204    24762    565    2017-01-14 16:44:00    2017-01-14 16:44:00
61205    24762    737    2017-01-14 07:40:00    2017-01-14 07:40:00
61206    24762    942    2017-01-14 04:57:00    2017-01-14 04:57:00
61207    24762    538    2017-01-14 18:22:00    2017-01-14 18:22:00
61208    24763    636    2017-01-15 22:03:00    2017-01-15 22:03:00
61209    24763    506    2017-01-15 17:37:00    2017-01-15 17:37:00
61210    24763    465    2017-01-15 18:01:00    2017-01-15 18:01:00
61211    24763    642    2017-01-15 04:03:00    2017-01-15 04:03:00
61212    24763    514    2017-01-15 15:01:00    2017-01-15 15:01:00
61213    24764    869    2017-01-15 04:55:00    2017-01-15 04:55:00
61214    24764    657    2017-01-15 06:41:00    2017-01-15 06:41:00
61215    24764    914    2017-01-15 16:00:00    2017-01-15 16:00:00
61216    24764    516    2017-01-15 21:21:00    2017-01-15 21:21:00
61217    24764    839    2017-01-15 06:40:00    2017-01-15 06:40:00
61218    24765    713    2017-01-15 05:51:00    2017-01-15 05:51:00
61219    24765    688    2017-01-15 01:05:00    2017-01-15 01:05:00
61220    24765    883    2017-01-15 07:44:00    2017-01-15 07:44:00
61221    24765    760    2017-01-15 18:55:00    2017-01-15 18:55:00
61222    24765    960    2017-01-15 04:21:00    2017-01-15 04:21:00
61223    24766    476    2017-01-15 07:00:00    2017-01-15 07:00:00
61224    24766    848    2017-01-15 04:56:00    2017-01-15 04:56:00
61225    24766    482    2017-01-15 17:08:00    2017-01-15 17:08:00
61226    24766    726    2017-01-15 04:54:00    2017-01-15 04:54:00
61227    24766    532    2017-01-15 21:48:00    2017-01-15 21:48:00
61228    24767    935    2017-01-15 19:54:00    2017-01-15 19:54:00
61229    24767    520    2017-01-15 04:46:00    2017-01-15 04:46:00
61230    24767    621    2017-01-15 12:42:00    2017-01-15 12:42:00
61231    24767    838    2017-01-15 21:23:00    2017-01-15 21:23:00
61232    24767    710    2017-01-15 14:33:00    2017-01-15 14:33:00
61233    24768    955    2017-01-15 18:40:00    2017-01-15 18:40:00
61234    24768    575    2017-01-15 01:59:00    2017-01-15 01:59:00
61235    24768    809    2017-01-15 05:58:00    2017-01-15 05:58:00
61236    24768    650    2017-01-15 10:11:00    2017-01-15 10:11:00
61237    24768    613    2017-01-15 16:00:00    2017-01-15 16:00:00
61238    24769    781    2017-01-15 04:11:00    2017-01-15 04:11:00
61239    24769    918    2017-01-15 21:18:00    2017-01-15 21:18:00
61240    24769    643    2017-01-15 14:55:00    2017-01-15 14:55:00
61241    24769    635    2017-01-15 22:36:00    2017-01-15 22:36:00
61242    24769    804    2017-01-15 07:10:00    2017-01-15 07:10:00
61243    24770    626    2017-01-15 03:07:00    2017-01-15 03:07:00
61244    24770    665    2017-01-15 01:53:00    2017-01-15 01:53:00
61245    24770    524    2017-01-15 13:02:00    2017-01-15 13:02:00
61246    24770    860    2017-01-15 17:17:00    2017-01-15 17:17:00
61247    24770    500    2017-01-15 03:59:00    2017-01-15 03:59:00
61248    24771    918    2017-01-15 10:18:00    2017-01-15 10:18:00
61249    24771    652    2017-01-15 16:50:00    2017-01-15 16:50:00
61250    24771    575    2017-01-15 19:46:00    2017-01-15 19:46:00
61251    24771    595    2017-01-15 21:03:00    2017-01-15 21:03:00
61252    24771    751    2017-01-15 17:00:00    2017-01-15 17:00:00
61253    24772    881    2017-01-15 06:10:00    2017-01-15 06:10:00
61254    24772    555    2017-01-15 13:24:00    2017-01-15 13:24:00
61255    24772    592    2017-01-15 23:52:00    2017-01-15 23:52:00
61256    24772    961    2017-01-15 05:38:00    2017-01-15 05:38:00
61257    24772    481    2017-01-15 13:50:00    2017-01-15 13:50:00
61258    24773    781    2017-01-15 15:19:00    2017-01-15 15:19:00
61259    24773    794    2017-01-15 08:24:00    2017-01-15 08:24:00
61260    24773    769    2017-01-15 13:52:00    2017-01-15 13:52:00
61261    24773    545    2017-01-15 01:58:00    2017-01-15 01:58:00
61262    24773    471    2017-01-15 09:10:00    2017-01-15 09:10:00
61263    24774    500    2017-01-15 11:25:00    2017-01-15 11:25:00
61264    24774    627    2017-01-15 20:00:00    2017-01-15 20:00:00
61265    24774    469    2017-01-15 04:00:00    2017-01-15 04:00:00
61266    24774    809    2017-01-15 21:26:00    2017-01-15 21:26:00
61267    24774    470    2017-01-15 14:01:00    2017-01-15 14:01:00
61268    24775    808    2017-01-15 12:34:00    2017-01-15 12:34:00
61269    24775    651    2017-01-15 08:35:00    2017-01-15 08:35:00
61270    24775    567    2017-01-15 03:04:00    2017-01-15 03:04:00
61271    24775    851    2017-01-15 02:26:00    2017-01-15 02:26:00
61272    24775    876    2017-01-15 03:58:00    2017-01-15 03:58:00
61273    24776    672    2017-01-15 17:13:00    2017-01-15 17:13:00
61274    24776    799    2017-01-15 03:56:00    2017-01-15 03:56:00
61275    24776    473    2017-01-15 10:25:00    2017-01-15 10:25:00
61276    24776    681    2017-01-15 17:39:00    2017-01-15 17:39:00
61277    24776    643    2017-01-15 06:02:00    2017-01-15 06:02:00
61278    24777    784    2017-01-15 07:45:00    2017-01-15 07:45:00
61279    24777    897    2017-01-15 05:23:00    2017-01-15 05:23:00
61280    24777    623    2017-01-15 09:13:00    2017-01-15 09:13:00
61281    24777    706    2017-01-15 22:38:00    2017-01-15 22:38:00
61282    24777    532    2017-01-15 23:03:00    2017-01-15 23:03:00
61283    24778    543    2017-01-15 01:49:00    2017-01-15 01:49:00
61284    24778    670    2017-01-15 02:58:00    2017-01-15 02:58:00
61285    24778    508    2017-01-15 18:18:00    2017-01-15 18:18:00
61286    24778    596    2017-01-15 07:27:00    2017-01-15 07:27:00
61287    24778    740    2017-01-15 02:22:00    2017-01-15 02:22:00
61288    24779    541    2017-01-15 01:49:00    2017-01-15 01:49:00
61289    24779    513    2017-01-15 19:11:00    2017-01-15 19:11:00
61290    24779    941    2017-01-15 03:57:00    2017-01-15 03:57:00
61291    24779    621    2017-01-15 10:55:00    2017-01-15 10:55:00
61292    24779    944    2017-01-15 06:21:00    2017-01-15 06:21:00
61293    24780    476    2017-01-15 16:58:00    2017-01-15 16:58:00
61294    24780    804    2017-01-15 10:28:00    2017-01-15 10:28:00
61295    24780    466    2017-01-15 04:29:00    2017-01-15 04:29:00
61296    24780    653    2017-01-15 18:47:00    2017-01-15 18:47:00
61297    24780    780    2017-01-15 13:44:00    2017-01-15 13:44:00
61298    24781    827    2017-01-15 11:39:00    2017-01-15 11:39:00
61299    24781    807    2017-01-15 01:59:00    2017-01-15 01:59:00
61300    24781    756    2017-01-15 02:21:00    2017-01-15 02:21:00
61301    24781    917    2017-01-15 17:36:00    2017-01-15 17:36:00
61302    24781    477    2017-01-15 08:53:00    2017-01-15 08:53:00
61303    24782    663    2017-01-15 04:51:00    2017-01-15 04:51:00
61304    24782    731    2017-01-15 13:25:00    2017-01-15 13:25:00
61305    24782    938    2017-01-15 01:23:00    2017-01-15 01:23:00
61306    24782    511    2017-01-15 20:20:00    2017-01-15 20:20:00
61307    24782    491    2017-01-15 07:54:00    2017-01-15 07:54:00
61308    24783    702    2017-01-15 10:39:00    2017-01-15 10:39:00
61309    24783    587    2017-01-15 23:35:00    2017-01-15 23:35:00
61310    24783    823    2017-01-15 01:12:00    2017-01-15 01:12:00
61311    24783    785    2017-01-15 10:34:00    2017-01-15 10:34:00
61312    24783    837    2017-01-15 12:03:00    2017-01-15 12:03:00
61313    24784    550    2017-01-15 01:03:00    2017-01-15 01:03:00
61314    24784    804    2017-01-15 06:23:00    2017-01-15 06:23:00
61315    24784    795    2017-01-15 01:06:00    2017-01-15 01:06:00
61316    24784    612    2017-01-15 09:55:00    2017-01-15 09:55:00
61317    24784    569    2017-01-15 06:19:00    2017-01-15 06:19:00
61318    24785    536    2017-01-15 15:00:00    2017-01-15 15:00:00
61319    24785    896    2017-01-15 22:02:00    2017-01-15 22:02:00
61320    24785    872    2017-01-15 19:57:00    2017-01-15 19:57:00
61321    24785    779    2017-01-15 05:27:00    2017-01-15 05:27:00
61322    24785    790    2017-01-15 07:43:00    2017-01-15 07:43:00
61323    24786    663    2017-01-15 19:46:00    2017-01-15 19:46:00
61324    24786    575    2017-01-15 10:45:00    2017-01-15 10:45:00
61325    24786    750    2017-01-15 07:26:00    2017-01-15 07:26:00
61326    24786    597    2017-01-15 21:24:00    2017-01-15 21:24:00
61327    24786    633    2017-01-15 12:29:00    2017-01-15 12:29:00
61328    24787    536    2017-01-15 15:41:00    2017-01-15 15:41:00
61329    24787    939    2017-01-15 06:01:00    2017-01-15 06:01:00
61330    24787    926    2017-01-15 04:47:00    2017-01-15 04:47:00
61331    24787    644    2017-01-15 07:03:00    2017-01-15 07:03:00
61332    24787    615    2017-01-15 20:19:00    2017-01-15 20:19:00
61333    24788    845    2017-01-15 07:31:00    2017-01-15 07:31:00
61334    24788    673    2017-01-15 14:07:00    2017-01-15 14:07:00
61335    24788    812    2017-01-15 16:00:00    2017-01-15 16:00:00
61336    24788    793    2017-01-15 23:53:00    2017-01-15 23:53:00
61337    24788    722    2017-01-15 04:42:00    2017-01-15 04:42:00
61338    24789    503    2017-01-15 14:36:00    2017-01-15 14:36:00
61339    24789    792    2017-01-15 03:15:00    2017-01-15 03:15:00
61340    24789    961    2017-01-15 09:56:00    2017-01-15 09:56:00
61341    24789    951    2017-01-15 13:16:00    2017-01-15 13:16:00
61342    24789    619    2017-01-15 06:52:00    2017-01-15 06:52:00
61343    24790    503    2017-01-15 11:35:00    2017-01-15 11:35:00
61344    24790    678    2017-01-15 01:11:00    2017-01-15 01:11:00
61345    24790    656    2017-01-15 10:25:00    2017-01-15 10:25:00
61346    24790    687    2017-01-15 08:01:00    2017-01-15 08:01:00
61347    24790    501    2017-01-15 09:21:00    2017-01-15 09:21:00
61348    24791    769    2017-01-15 23:21:00    2017-01-15 23:21:00
61349    24791    711    2017-01-15 12:25:00    2017-01-15 12:25:00
61350    24791    633    2017-01-15 03:02:00    2017-01-15 03:02:00
61351    24791    599    2017-01-15 07:47:00    2017-01-15 07:47:00
61352    24791    561    2017-01-15 22:15:00    2017-01-15 22:15:00
61353    24792    726    2017-01-15 22:20:00    2017-01-15 22:20:00
61354    24792    659    2017-01-15 22:54:00    2017-01-15 22:54:00
61355    24792    561    2017-01-15 22:48:00    2017-01-15 22:48:00
61356    24792    548    2017-01-15 08:54:00    2017-01-15 08:54:00
61357    24792    686    2017-01-15 19:51:00    2017-01-15 19:51:00
61358    24793    918    2017-01-16 16:26:00    2017-01-16 16:26:00
61359    24793    797    2017-01-16 07:00:00    2017-01-16 07:00:00
61360    24793    762    2017-01-16 21:27:00    2017-01-16 21:27:00
61361    24793    510    2017-01-16 02:16:00    2017-01-16 02:16:00
61362    24793    791    2017-01-16 16:49:00    2017-01-16 16:49:00
61363    24794    728    2017-01-16 11:11:00    2017-01-16 11:11:00
61364    24794    812    2017-01-16 19:18:00    2017-01-16 19:18:00
61365    24794    856    2017-01-16 18:45:00    2017-01-16 18:45:00
61366    24794    678    2017-01-16 03:07:00    2017-01-16 03:07:00
61367    24794    839    2017-01-16 01:42:00    2017-01-16 01:42:00
61368    24795    625    2017-01-16 13:10:00    2017-01-16 13:10:00
61369    24795    579    2017-01-16 21:26:00    2017-01-16 21:26:00
61370    24795    940    2017-01-16 10:00:00    2017-01-16 10:00:00
61371    24795    759    2017-01-16 11:21:00    2017-01-16 11:21:00
61372    24795    936    2017-01-16 20:47:00    2017-01-16 20:47:00
61373    24796    502    2017-01-16 20:56:00    2017-01-16 20:56:00
61374    24796    957    2017-01-16 07:20:00    2017-01-16 07:20:00
61375    24796    679    2017-01-16 17:01:00    2017-01-16 17:01:00
61376    24796    511    2017-01-16 07:39:00    2017-01-16 07:39:00
61377    24796    848    2017-01-16 22:17:00    2017-01-16 22:17:00
61378    24797    675    2017-01-16 10:22:00    2017-01-16 10:22:00
61379    24797    659    2017-01-16 19:42:00    2017-01-16 19:42:00
61380    24797    750    2017-01-16 13:02:00    2017-01-16 13:02:00
61381    24797    794    2017-01-16 06:44:00    2017-01-16 06:44:00
61382    24797    756    2017-01-16 18:54:00    2017-01-16 18:54:00
61383    24798    616    2017-01-16 05:28:00    2017-01-16 05:28:00
61384    24798    877    2017-01-16 19:37:00    2017-01-16 19:37:00
61385    24798    939    2017-01-16 16:25:00    2017-01-16 16:25:00
61386    24798    545    2017-01-16 03:45:00    2017-01-16 03:45:00
61387    24798    518    2017-01-16 21:59:00    2017-01-16 21:59:00
61388    24799    818    2017-01-16 22:38:00    2017-01-16 22:38:00
61389    24799    878    2017-01-16 03:27:00    2017-01-16 03:27:00
61390    24799    600    2017-01-16 07:01:00    2017-01-16 07:01:00
61391    24799    805    2017-01-16 07:56:00    2017-01-16 07:56:00
61392    24799    925    2017-01-16 03:35:00    2017-01-16 03:35:00
61393    24800    667    2017-01-16 23:18:00    2017-01-16 23:18:00
61394    24800    576    2017-01-16 22:01:00    2017-01-16 22:01:00
61395    24800    677    2017-01-16 02:16:00    2017-01-16 02:16:00
61396    24800    464    2017-01-16 18:09:00    2017-01-16 18:09:00
61397    24800    712    2017-01-16 09:47:00    2017-01-16 09:47:00
61398    24801    851    2017-01-16 21:37:00    2017-01-16 21:37:00
61399    24801    538    2017-01-16 11:04:00    2017-01-16 11:04:00
61400    24801    797    2017-01-16 09:07:00    2017-01-16 09:07:00
61401    24801    908    2017-01-16 21:39:00    2017-01-16 21:39:00
61402    24801    551    2017-01-16 09:19:00    2017-01-16 09:19:00
61403    24802    706    2017-01-16 23:08:00    2017-01-16 23:08:00
61404    24802    478    2017-01-16 02:53:00    2017-01-16 02:53:00
61405    24802    524    2017-01-16 05:05:00    2017-01-16 05:05:00
61406    24802    721    2017-01-16 17:47:00    2017-01-16 17:47:00
61407    24802    907    2017-01-16 18:43:00    2017-01-16 18:43:00
61408    24803    615    2017-01-16 08:39:00    2017-01-16 08:39:00
61409    24803    949    2017-01-16 08:42:00    2017-01-16 08:42:00
61410    24803    849    2017-01-16 22:19:00    2017-01-16 22:19:00
61411    24803    552    2017-01-16 15:09:00    2017-01-16 15:09:00
61412    24803    679    2017-01-16 07:41:00    2017-01-16 07:41:00
61413    24804    818    2017-01-16 18:00:00    2017-01-16 18:00:00
61414    24804    935    2017-01-16 16:33:00    2017-01-16 16:33:00
61415    24804    894    2017-01-16 11:21:00    2017-01-16 11:21:00
61416    24804    925    2017-01-16 17:00:00    2017-01-16 17:00:00
61417    24804    605    2017-01-16 18:02:00    2017-01-16 18:02:00
61418    24805    623    2017-01-16 01:51:00    2017-01-16 01:51:00
61419    24805    542    2017-01-16 19:55:00    2017-01-16 19:55:00
61420    24805    537    2017-01-16 20:54:00    2017-01-16 20:54:00
61421    24805    865    2017-01-16 13:06:00    2017-01-16 13:06:00
61422    24805    888    2017-01-16 16:22:00    2017-01-16 16:22:00
61423    24806    660    2017-01-16 20:32:00    2017-01-16 20:32:00
61424    24806    706    2017-01-16 17:46:00    2017-01-16 17:46:00
61425    24806    543    2017-01-16 14:00:00    2017-01-16 14:00:00
61426    24806    764    2017-01-16 19:38:00    2017-01-16 19:38:00
61427    24806    723    2017-01-16 05:42:00    2017-01-16 05:42:00
61428    24807    742    2017-01-16 14:45:00    2017-01-16 14:45:00
61429    24807    642    2017-01-16 13:10:00    2017-01-16 13:10:00
61430    24807    734    2017-01-16 02:21:00    2017-01-16 02:21:00
61431    24807    487    2017-01-16 16:56:00    2017-01-16 16:56:00
61432    24807    575    2017-01-16 21:16:00    2017-01-16 21:16:00
61433    24808    730    2017-01-16 23:50:00    2017-01-16 23:50:00
61434    24808    676    2017-01-16 05:21:00    2017-01-16 05:21:00
61435    24808    560    2017-01-16 17:25:00    2017-01-16 17:25:00
61436    24808    827    2017-01-16 19:09:00    2017-01-16 19:09:00
61437    24808    690    2017-01-16 14:01:00    2017-01-16 14:01:00
61438    24809    845    2017-01-16 22:41:00    2017-01-16 22:41:00
61439    24809    530    2017-01-16 10:59:00    2017-01-16 10:59:00
61440    24809    565    2017-01-16 10:06:00    2017-01-16 10:06:00
61441    24809    849    2017-01-16 18:00:00    2017-01-16 18:00:00
61442    24809    875    2017-01-16 20:16:00    2017-01-16 20:16:00
61443    24810    586    2017-01-16 01:42:00    2017-01-16 01:42:00
61444    24810    757    2017-01-16 03:26:00    2017-01-16 03:26:00
61445    24810    552    2017-01-16 22:48:00    2017-01-16 22:48:00
61446    24810    822    2017-01-16 21:59:00    2017-01-16 21:59:00
61447    24810    926    2017-01-16 14:44:00    2017-01-16 14:44:00
61448    24811    497    2017-01-17 16:03:00    2017-01-17 16:03:00
61449    24811    630    2017-01-17 06:45:00    2017-01-17 06:45:00
61450    24811    903    2017-01-17 02:39:00    2017-01-17 02:39:00
61451    24811    599    2017-01-17 04:20:00    2017-01-17 04:20:00
61452    24811    633    2017-01-17 22:38:00    2017-01-17 22:38:00
61453    24812    934    2017-01-17 05:44:00    2017-01-17 05:44:00
61454    24812    954    2017-01-17 18:05:00    2017-01-17 18:05:00
61455    24812    523    2017-01-17 06:28:00    2017-01-17 06:28:00
61456    24812    763    2017-01-17 04:16:00    2017-01-17 04:16:00
61457    24812    824    2017-01-17 13:40:00    2017-01-17 13:40:00
61458    24813    694    2017-01-17 18:36:00    2017-01-17 18:36:00
61459    24813    949    2017-01-17 15:27:00    2017-01-17 15:27:00
61460    24813    755    2017-01-17 22:50:00    2017-01-17 22:50:00
61461    24813    684    2017-01-17 23:52:00    2017-01-17 23:52:00
61462    24813    477    2017-01-17 19:42:00    2017-01-17 19:42:00
61463    24814    471    2017-01-17 11:48:00    2017-01-17 11:48:00
61464    24814    575    2017-01-17 04:10:00    2017-01-17 04:10:00
61465    24814    653    2017-01-17 12:32:00    2017-01-17 12:32:00
61466    24814    505    2017-01-17 20:03:00    2017-01-17 20:03:00
61467    24814    517    2017-01-17 20:13:00    2017-01-17 20:13:00
61468    24815    516    2017-01-17 02:31:00    2017-01-17 02:31:00
61469    24815    901    2017-01-17 20:31:00    2017-01-17 20:31:00
61470    24815    809    2017-01-17 04:59:00    2017-01-17 04:59:00
61471    24815    601    2017-01-17 03:11:00    2017-01-17 03:11:00
61472    24815    806    2017-01-17 21:15:00    2017-01-17 21:15:00
61473    24816    479    2017-01-17 01:54:00    2017-01-17 01:54:00
61474    24816    463    2017-01-17 02:58:00    2017-01-17 02:58:00
61475    24816    959    2017-01-17 11:21:00    2017-01-17 11:21:00
61476    24816    726    2017-01-17 08:04:00    2017-01-17 08:04:00
61477    24816    665    2017-01-17 21:45:00    2017-01-17 21:45:00
61478    24817    900    2017-01-17 09:42:00    2017-01-17 09:42:00
61479    24817    603    2017-01-17 16:17:00    2017-01-17 16:17:00
61480    24817    523    2017-01-17 08:43:00    2017-01-17 08:43:00
61481    24817    724    2017-01-17 14:05:00    2017-01-17 14:05:00
61482    24817    500    2017-01-17 23:37:00    2017-01-17 23:37:00
61483    24818    951    2017-01-17 10:10:00    2017-01-17 10:10:00
61484    24818    506    2017-01-17 23:20:00    2017-01-17 23:20:00
61485    24818    783    2017-01-17 06:24:00    2017-01-17 06:24:00
61486    24818    895    2017-01-17 10:03:00    2017-01-17 10:03:00
61487    24818    896    2017-01-17 05:29:00    2017-01-17 05:29:00
61488    24819    608    2017-01-17 18:42:00    2017-01-17 18:42:00
61489    24819    508    2017-01-17 17:10:00    2017-01-17 17:10:00
61490    24819    923    2017-01-17 07:37:00    2017-01-17 07:37:00
61491    24819    518    2017-01-17 18:06:00    2017-01-17 18:06:00
61492    24819    650    2017-01-17 21:41:00    2017-01-17 21:41:00
61493    24820    746    2017-01-17 11:49:00    2017-01-17 11:49:00
61494    24820    541    2017-01-17 20:07:00    2017-01-17 20:07:00
61495    24820    743    2017-01-17 08:48:00    2017-01-17 08:48:00
61496    24820    812    2017-01-17 04:47:00    2017-01-17 04:47:00
61497    24820    478    2017-01-17 05:38:00    2017-01-17 05:38:00
61498    24821    755    2017-01-17 13:46:00    2017-01-17 13:46:00
61499    24821    850    2017-01-17 19:07:00    2017-01-17 19:07:00
61500    24821    889    2017-01-17 06:49:00    2017-01-17 06:49:00
61501    24821    935    2017-01-17 06:46:00    2017-01-17 06:46:00
61502    24821    940    2017-01-17 13:35:00    2017-01-17 13:35:00
61503    24822    574    2017-01-17 13:22:00    2017-01-17 13:22:00
61504    24822    512    2017-01-17 13:12:00    2017-01-17 13:12:00
61505    24822    954    2017-01-17 23:52:00    2017-01-17 23:52:00
61506    24822    919    2017-01-17 15:23:00    2017-01-17 15:23:00
61507    24822    697    2017-01-17 12:00:00    2017-01-17 12:00:00
61508    24823    693    2017-01-17 04:10:00    2017-01-17 04:10:00
61509    24823    828    2017-01-17 04:34:00    2017-01-17 04:34:00
61510    24823    798    2017-01-17 08:44:00    2017-01-17 08:44:00
61511    24823    499    2017-01-17 14:54:00    2017-01-17 14:54:00
61512    24823    719    2017-01-17 20:33:00    2017-01-17 20:33:00
61513    24824    515    2017-01-17 07:00:00    2017-01-17 07:00:00
61514    24824    785    2017-01-17 08:19:00    2017-01-17 08:19:00
61515    24824    602    2017-01-17 20:56:00    2017-01-17 20:56:00
61516    24824    489    2017-01-17 22:31:00    2017-01-17 22:31:00
61517    24824    873    2017-01-17 05:41:00    2017-01-17 05:41:00
61518    24825    616    2017-01-17 22:36:00    2017-01-17 22:36:00
61519    24825    682    2017-01-17 17:44:00    2017-01-17 17:44:00
61520    24825    612    2017-01-17 06:01:00    2017-01-17 06:01:00
61521    24825    951    2017-01-17 01:15:00    2017-01-17 01:15:00
61522    24825    478    2017-01-17 08:41:00    2017-01-17 08:41:00
61523    24826    493    2017-01-17 03:15:00    2017-01-17 03:15:00
61524    24826    825    2017-01-17 08:36:00    2017-01-17 08:36:00
61525    24826    917    2017-01-17 01:38:00    2017-01-17 01:38:00
61526    24826    753    2017-01-17 12:58:00    2017-01-17 12:58:00
61527    24826    620    2017-01-17 12:41:00    2017-01-17 12:41:00
61528    24827    468    2017-01-17 09:40:00    2017-01-17 09:40:00
61529    24827    640    2017-01-17 21:25:00    2017-01-17 21:25:00
61530    24827    578    2017-01-17 10:13:00    2017-01-17 10:13:00
61531    24827    525    2017-01-17 09:00:00    2017-01-17 09:00:00
61532    24827    687    2017-01-17 03:35:00    2017-01-17 03:35:00
61533    24828    818    2017-01-17 15:47:00    2017-01-17 15:47:00
61534    24828    845    2017-01-17 03:08:00    2017-01-17 03:08:00
61535    24828    921    2017-01-17 04:37:00    2017-01-17 04:37:00
61536    24828    637    2017-01-17 06:08:00    2017-01-17 06:08:00
61537    24828    822    2017-01-17 09:55:00    2017-01-17 09:55:00
61538    24829    899    2017-01-17 22:46:00    2017-01-17 22:46:00
61539    24829    516    2017-01-17 22:54:00    2017-01-17 22:54:00
61540    24829    944    2017-01-17 09:39:00    2017-01-17 09:39:00
61541    24829    777    2017-01-17 16:41:00    2017-01-17 16:41:00
61542    24829    697    2017-01-17 09:15:00    2017-01-17 09:15:00
61543    24830    903    2017-01-17 23:02:00    2017-01-17 23:02:00
61544    24830    680    2017-01-17 13:05:00    2017-01-17 13:05:00
61545    24830    486    2017-01-17 12:25:00    2017-01-17 12:25:00
61546    24830    549    2017-01-17 19:16:00    2017-01-17 19:16:00
61547    24830    694    2017-01-17 11:30:00    2017-01-17 11:30:00
61548    24831    751    2017-01-17 02:00:00    2017-01-17 02:00:00
61549    24831    465    2017-01-17 18:47:00    2017-01-17 18:47:00
61550    24831    680    2017-01-17 09:38:00    2017-01-17 09:38:00
61551    24831    920    2017-01-17 19:28:00    2017-01-17 19:28:00
61552    24831    570    2017-01-17 12:29:00    2017-01-17 12:29:00
61553    24832    870    2017-01-17 17:42:00    2017-01-17 17:42:00
61554    24832    834    2017-01-17 09:05:00    2017-01-17 09:05:00
61555    24832    625    2017-01-17 03:48:00    2017-01-17 03:48:00
61556    24832    611    2017-01-17 22:02:00    2017-01-17 22:02:00
61557    24832    933    2017-01-17 16:42:00    2017-01-17 16:42:00
61558    24833    911    2017-01-17 12:36:00    2017-01-17 12:36:00
61559    24833    668    2017-01-17 23:56:00    2017-01-17 23:56:00
61560    24833    716    2017-01-17 05:31:00    2017-01-17 05:31:00
61561    24833    476    2017-01-17 07:37:00    2017-01-17 07:37:00
61562    24833    845    2017-01-17 10:16:00    2017-01-17 10:16:00
61563    24834    557    2017-01-17 05:13:00    2017-01-17 05:13:00
61564    24834    780    2017-01-17 22:53:00    2017-01-17 22:53:00
61565    24834    827    2017-01-17 16:16:00    2017-01-17 16:16:00
61566    24834    702    2017-01-17 23:37:00    2017-01-17 23:37:00
61567    24834    775    2017-01-17 05:59:00    2017-01-17 05:59:00
61568    24835    755    2017-01-17 03:24:00    2017-01-17 03:24:00
61569    24835    687    2017-01-17 15:39:00    2017-01-17 15:39:00
61570    24835    603    2017-01-17 02:02:00    2017-01-17 02:02:00
61571    24835    589    2017-01-17 17:49:00    2017-01-17 17:49:00
61572    24835    463    2017-01-17 19:31:00    2017-01-17 19:31:00
61573    24836    729    2017-01-17 09:15:00    2017-01-17 09:15:00
61574    24836    785    2017-01-17 22:47:00    2017-01-17 22:47:00
61575    24836    529    2017-01-17 08:39:00    2017-01-17 08:39:00
61576    24836    724    2017-01-17 11:07:00    2017-01-17 11:07:00
61577    24836    750    2017-01-17 20:38:00    2017-01-17 20:38:00
61578    24837    679    2017-01-17 21:11:00    2017-01-17 21:11:00
61579    24837    871    2017-01-17 21:50:00    2017-01-17 21:50:00
61580    24837    485    2017-01-17 07:26:00    2017-01-17 07:26:00
61581    24837    672    2017-01-17 17:12:00    2017-01-17 17:12:00
61582    24837    692    2017-01-17 04:15:00    2017-01-17 04:15:00
61583    24838    567    2017-01-17 09:53:00    2017-01-17 09:53:00
61584    24838    798    2017-01-17 04:08:00    2017-01-17 04:08:00
61585    24838    531    2017-01-17 20:05:00    2017-01-17 20:05:00
61586    24838    735    2017-01-17 09:42:00    2017-01-17 09:42:00
61587    24838    549    2017-01-17 07:15:00    2017-01-17 07:15:00
61588    24839    845    2017-01-17 19:38:00    2017-01-17 19:38:00
61589    24839    889    2017-01-17 11:04:00    2017-01-17 11:04:00
61590    24839    684    2017-01-17 04:07:00    2017-01-17 04:07:00
61591    24839    900    2017-01-17 23:23:00    2017-01-17 23:23:00
61592    24839    961    2017-01-17 13:20:00    2017-01-17 13:20:00
61593    24840    840    2017-01-17 08:04:00    2017-01-17 08:04:00
61594    24840    481    2017-01-17 22:39:00    2017-01-17 22:39:00
61595    24840    738    2017-01-17 23:43:00    2017-01-17 23:43:00
61596    24840    693    2017-01-17 06:59:00    2017-01-17 06:59:00
61597    24840    624    2017-01-17 17:16:00    2017-01-17 17:16:00
61598    24841    639    2017-01-17 12:24:00    2017-01-17 12:24:00
61599    24841    502    2017-01-17 23:07:00    2017-01-17 23:07:00
61600    24841    673    2017-01-17 03:14:00    2017-01-17 03:14:00
61601    24841    789    2017-01-17 13:06:00    2017-01-17 13:06:00
61602    24841    689    2017-01-17 17:09:00    2017-01-17 17:09:00
61603    24842    705    2017-01-17 09:20:00    2017-01-17 09:20:00
61604    24842    565    2017-01-17 09:23:00    2017-01-17 09:23:00
61605    24842    675    2017-01-17 18:36:00    2017-01-17 18:36:00
61606    24842    929    2017-01-17 05:44:00    2017-01-17 05:44:00
61607    24842    878    2017-01-17 13:38:00    2017-01-17 13:38:00
61608    24843    610    2017-01-17 10:36:00    2017-01-17 10:36:00
61609    24843    598    2017-01-17 06:40:00    2017-01-17 06:40:00
61610    24843    471    2017-01-17 15:11:00    2017-01-17 15:11:00
61611    24843    829    2017-01-17 19:31:00    2017-01-17 19:31:00
61612    24843    836    2017-01-17 06:02:00    2017-01-17 06:02:00
61613    24844    654    2017-01-17 07:27:00    2017-01-17 07:27:00
61614    24844    503    2017-01-17 02:09:00    2017-01-17 02:09:00
61615    24844    793    2017-01-17 09:53:00    2017-01-17 09:53:00
61616    24844    786    2017-01-17 19:36:00    2017-01-17 19:36:00
61617    24844    518    2017-01-17 17:36:00    2017-01-17 17:36:00
61618    24845    872    2017-01-17 13:25:00    2017-01-17 13:25:00
61619    24845    672    2017-01-17 02:52:00    2017-01-17 02:52:00
61620    24845    665    2017-01-17 06:56:00    2017-01-17 06:56:00
61621    24845    490    2017-01-17 05:21:00    2017-01-17 05:21:00
61622    24845    549    2017-01-17 19:55:00    2017-01-17 19:55:00
61623    24846    748    2017-01-17 03:23:00    2017-01-17 03:23:00
61624    24846    811    2017-01-17 04:41:00    2017-01-17 04:41:00
61625    24846    571    2017-01-17 02:49:00    2017-01-17 02:49:00
61626    24846    506    2017-01-17 04:21:00    2017-01-17 04:21:00
61627    24846    881    2017-01-17 09:19:00    2017-01-17 09:19:00
61628    24847    735    2017-01-17 03:06:00    2017-01-17 03:06:00
61629    24847    931    2017-01-17 03:47:00    2017-01-17 03:47:00
61630    24847    750    2017-01-17 19:21:00    2017-01-17 19:21:00
61631    24847    923    2017-01-17 16:48:00    2017-01-17 16:48:00
61632    24847    563    2017-01-17 15:55:00    2017-01-17 15:55:00
61633    24848    686    2017-01-17 16:57:00    2017-01-17 16:57:00
61634    24848    567    2017-01-17 01:35:00    2017-01-17 01:35:00
61635    24848    852    2017-01-17 09:09:00    2017-01-17 09:09:00
61636    24848    694    2017-01-17 23:19:00    2017-01-17 23:19:00
61637    24848    653    2017-01-17 08:44:00    2017-01-17 08:44:00
61638    24849    490    2017-01-17 07:26:00    2017-01-17 07:26:00
61639    24849    544    2017-01-17 13:17:00    2017-01-17 13:17:00
61640    24849    703    2017-01-17 21:37:00    2017-01-17 21:37:00
61641    24849    953    2017-01-17 17:25:00    2017-01-17 17:25:00
61642    24849    866    2017-01-17 22:02:00    2017-01-17 22:02:00
61643    24850    869    2017-01-17 17:12:00    2017-01-17 17:12:00
61644    24850    627    2017-01-17 15:25:00    2017-01-17 15:25:00
61645    24850    626    2017-01-17 19:53:00    2017-01-17 19:53:00
61646    24850    606    2017-01-17 21:47:00    2017-01-17 21:47:00
61647    24850    576    2017-01-17 13:00:00    2017-01-17 13:00:00
61648    24851    763    2017-01-18 15:15:00    2017-01-18 15:15:00
61649    24851    960    2017-01-18 05:06:00    2017-01-18 05:06:00
61650    24851    850    2017-01-18 12:40:00    2017-01-18 12:40:00
61651    24851    766    2017-01-18 08:08:00    2017-01-18 08:08:00
61652    24851    810    2017-01-18 21:58:00    2017-01-18 21:58:00
61653    24852    703    2017-01-18 02:11:00    2017-01-18 02:11:00
61654    24852    758    2017-01-18 07:03:00    2017-01-18 07:03:00
61655    24852    808    2017-01-18 12:32:00    2017-01-18 12:32:00
61656    24852    674    2017-01-18 09:47:00    2017-01-18 09:47:00
61657    24852    704    2017-01-18 05:13:00    2017-01-18 05:13:00
61658    24853    739    2017-01-18 01:51:00    2017-01-18 01:51:00
61659    24853    741    2017-01-18 05:41:00    2017-01-18 05:41:00
61660    24853    811    2017-01-18 10:00:00    2017-01-18 10:00:00
61661    24853    838    2017-01-18 22:55:00    2017-01-18 22:55:00
61662    24853    627    2017-01-18 11:11:00    2017-01-18 11:11:00
61663    24854    919    2017-01-18 10:12:00    2017-01-18 10:12:00
61664    24854    754    2017-01-18 07:01:00    2017-01-18 07:01:00
61665    24854    484    2017-01-18 13:20:00    2017-01-18 13:20:00
61666    24854    588    2017-01-18 21:09:00    2017-01-18 21:09:00
61667    24854    952    2017-01-18 17:23:00    2017-01-18 17:23:00
61668    24855    837    2017-01-18 21:53:00    2017-01-18 21:53:00
61669    24855    806    2017-01-18 18:29:00    2017-01-18 18:29:00
61670    24855    560    2017-01-18 13:27:00    2017-01-18 13:27:00
61671    24855    663    2017-01-18 18:25:00    2017-01-18 18:25:00
61672    24855    522    2017-01-18 09:33:00    2017-01-18 09:33:00
61673    24856    819    2017-01-18 02:23:00    2017-01-18 02:23:00
61674    24856    740    2017-01-18 13:26:00    2017-01-18 13:26:00
61675    24856    886    2017-01-18 02:11:00    2017-01-18 02:11:00
61676    24856    865    2017-01-18 04:29:00    2017-01-18 04:29:00
61677    24856    601    2017-01-18 17:40:00    2017-01-18 17:40:00
61678    24857    487    2017-01-18 08:00:00    2017-01-18 08:00:00
61679    24857    801    2017-01-18 19:28:00    2017-01-18 19:28:00
61680    24857    492    2017-01-18 16:02:00    2017-01-18 16:02:00
61681    24857    575    2017-01-18 11:46:00    2017-01-18 11:46:00
61682    24857    821    2017-01-18 12:18:00    2017-01-18 12:18:00
61683    24858    832    2017-01-18 12:01:00    2017-01-18 12:01:00
61684    24858    865    2017-01-18 09:34:00    2017-01-18 09:34:00
61685    24858    504    2017-01-18 06:22:00    2017-01-18 06:22:00
61686    24858    658    2017-01-18 03:55:00    2017-01-18 03:55:00
61687    24858    851    2017-01-18 12:44:00    2017-01-18 12:44:00
61688    24859    832    2017-01-18 22:02:00    2017-01-18 22:02:00
61689    24859    697    2017-01-18 16:18:00    2017-01-18 16:18:00
61690    24859    568    2017-01-18 10:09:00    2017-01-18 10:09:00
61691    24859    836    2017-01-18 01:18:00    2017-01-18 01:18:00
61692    24859    563    2017-01-18 02:11:00    2017-01-18 02:11:00
61693    24860    690    2017-01-18 11:40:00    2017-01-18 11:40:00
61694    24860    493    2017-01-18 05:47:00    2017-01-18 05:47:00
61695    24860    905    2017-01-18 14:31:00    2017-01-18 14:31:00
61696    24860    592    2017-01-18 13:45:00    2017-01-18 13:45:00
61697    24860    662    2017-01-18 01:46:00    2017-01-18 01:46:00
61698    24861    652    2017-01-18 09:49:00    2017-01-18 09:49:00
61699    24861    690    2017-01-18 23:06:00    2017-01-18 23:06:00
61700    24861    863    2017-01-18 09:16:00    2017-01-18 09:16:00
61701    24861    836    2017-01-18 21:32:00    2017-01-18 21:32:00
61702    24861    586    2017-01-18 20:54:00    2017-01-18 20:54:00
61703    24862    806    2017-01-19 15:25:00    2017-01-19 15:25:00
61704    24862    756    2017-01-19 02:21:00    2017-01-19 02:21:00
61705    24862    860    2017-01-19 08:26:00    2017-01-19 08:26:00
61706    24862    685    2017-01-19 15:56:00    2017-01-19 15:56:00
61707    24862    653    2017-01-19 03:45:00    2017-01-19 03:45:00
61708    24863    720    2017-01-19 21:40:00    2017-01-19 21:40:00
61709    24863    676    2017-01-19 22:49:00    2017-01-19 22:49:00
61710    24863    680    2017-01-19 15:44:00    2017-01-19 15:44:00
61711    24863    560    2017-01-19 18:33:00    2017-01-19 18:33:00
61712    24863    924    2017-01-19 03:35:00    2017-01-19 03:35:00
61713    24864    876    2017-01-19 10:55:00    2017-01-19 10:55:00
61714    24864    758    2017-01-19 02:22:00    2017-01-19 02:22:00
61715    24864    501    2017-01-19 21:34:00    2017-01-19 21:34:00
61716    24864    700    2017-01-19 03:24:00    2017-01-19 03:24:00
61717    24864    767    2017-01-19 15:00:00    2017-01-19 15:00:00
61718    24865    856    2017-01-19 15:22:00    2017-01-19 15:22:00
61719    24865    664    2017-01-19 18:21:00    2017-01-19 18:21:00
61720    24865    616    2017-01-19 15:49:00    2017-01-19 15:49:00
61721    24865    692    2017-01-19 12:26:00    2017-01-19 12:26:00
61722    24865    801    2017-01-19 19:11:00    2017-01-19 19:11:00
61723    24866    832    2017-01-19 13:20:00    2017-01-19 13:20:00
61724    24866    774    2017-01-19 11:00:00    2017-01-19 11:00:00
61725    24866    866    2017-01-19 22:44:00    2017-01-19 22:44:00
61726    24866    652    2017-01-19 17:27:00    2017-01-19 17:27:00
61727    24866    805    2017-01-19 02:45:00    2017-01-19 02:45:00
61728    24867    862    2017-01-19 22:07:00    2017-01-19 22:07:00
61729    24867    651    2017-01-19 14:40:00    2017-01-19 14:40:00
61730    24867    612    2017-01-19 02:58:00    2017-01-19 02:58:00
61731    24867    664    2017-01-19 05:51:00    2017-01-19 05:51:00
61732    24867    708    2017-01-19 01:46:00    2017-01-19 01:46:00
61733    24868    742    2017-01-19 22:51:00    2017-01-19 22:51:00
61734    24868    924    2017-01-19 05:59:00    2017-01-19 05:59:00
61735    24868    715    2017-01-19 04:24:00    2017-01-19 04:24:00
61736    24868    580    2017-01-19 01:37:00    2017-01-19 01:37:00
61737    24868    916    2017-01-19 06:50:00    2017-01-19 06:50:00
61738    24869    769    2017-01-19 21:43:00    2017-01-19 21:43:00
61739    24869    877    2017-01-19 14:22:00    2017-01-19 14:22:00
61740    24869    933    2017-01-19 03:03:00    2017-01-19 03:03:00
61741    24869    529    2017-01-19 12:40:00    2017-01-19 12:40:00
61742    24869    764    2017-01-19 17:56:00    2017-01-19 17:56:00
61743    24870    917    2017-01-20 14:42:00    2017-01-20 14:42:00
61744    24870    737    2017-01-20 21:25:00    2017-01-20 21:25:00
61745    24870    657    2017-01-20 04:41:00    2017-01-20 04:41:00
61746    24870    832    2017-01-20 02:42:00    2017-01-20 02:42:00
61747    24870    505    2017-01-20 10:57:00    2017-01-20 10:57:00
61748    24871    887    2017-01-20 10:00:00    2017-01-20 10:00:00
61749    24871    564    2017-01-20 05:49:00    2017-01-20 05:49:00
61750    24871    863    2017-01-20 08:11:00    2017-01-20 08:11:00
61751    24871    621    2017-01-20 14:42:00    2017-01-20 14:42:00
61752    24871    723    2017-01-20 21:54:00    2017-01-20 21:54:00
61753    24872    485    2017-01-20 20:44:00    2017-01-20 20:44:00
61754    24872    849    2017-01-20 16:24:00    2017-01-20 16:24:00
61755    24872    848    2017-01-20 07:41:00    2017-01-20 07:41:00
61756    24872    877    2017-01-20 06:55:00    2017-01-20 06:55:00
61757    24872    680    2017-01-20 12:54:00    2017-01-20 12:54:00
61758    24873    508    2017-01-20 22:34:00    2017-01-20 22:34:00
61759    24873    698    2017-01-20 15:02:00    2017-01-20 15:02:00
61760    24873    788    2017-01-20 09:44:00    2017-01-20 09:44:00
61761    24873    724    2017-01-20 23:00:00    2017-01-20 23:00:00
61762    24873    759    2017-01-20 17:30:00    2017-01-20 17:30:00
61763    24874    518    2017-01-20 20:23:00    2017-01-20 20:23:00
61764    24874    888    2017-01-20 01:23:00    2017-01-20 01:23:00
61765    24874    554    2017-01-20 09:10:00    2017-01-20 09:10:00
61766    24874    627    2017-01-20 09:59:00    2017-01-20 09:59:00
61767    24874    793    2017-01-20 17:10:00    2017-01-20 17:10:00
61768    24875    645    2017-01-20 11:56:00    2017-01-20 11:56:00
61769    24875    773    2017-01-20 05:23:00    2017-01-20 05:23:00
61770    24875    626    2017-01-20 19:39:00    2017-01-20 19:39:00
61771    24875    555    2017-01-20 10:35:00    2017-01-20 10:35:00
61772    24875    606    2017-01-20 06:38:00    2017-01-20 06:38:00
61773    24876    787    2017-01-20 05:28:00    2017-01-20 05:28:00
61774    24876    921    2017-01-20 04:04:00    2017-01-20 04:04:00
61775    24876    775    2017-01-20 18:43:00    2017-01-20 18:43:00
61776    24876    882    2017-01-20 16:48:00    2017-01-20 16:48:00
61777    24876    527    2017-01-20 14:31:00    2017-01-20 14:31:00
61778    24877    493    2017-01-20 14:01:00    2017-01-20 14:01:00
61779    24877    785    2017-01-20 19:56:00    2017-01-20 19:56:00
61780    24877    856    2017-01-20 10:56:00    2017-01-20 10:56:00
61781    24877    728    2017-01-20 20:42:00    2017-01-20 20:42:00
61782    24877    961    2017-01-20 15:48:00    2017-01-20 15:48:00
61783    24878    605    2017-01-20 23:14:00    2017-01-20 23:14:00
61784    24878    478    2017-01-20 15:34:00    2017-01-20 15:34:00
61785    24878    735    2017-01-20 19:09:00    2017-01-20 19:09:00
61786    24878    709    2017-01-20 21:28:00    2017-01-20 21:28:00
61787    24878    761    2017-01-20 19:52:00    2017-01-20 19:52:00
61788    24879    710    2017-01-20 17:54:00    2017-01-20 17:54:00
61789    24879    478    2017-01-20 21:41:00    2017-01-20 21:41:00
61790    24879    800    2017-01-20 20:27:00    2017-01-20 20:27:00
61791    24879    920    2017-01-20 12:39:00    2017-01-20 12:39:00
61792    24879    858    2017-01-20 08:35:00    2017-01-20 08:35:00
61793    24880    770    2017-01-20 13:06:00    2017-01-20 13:06:00
61794    24880    577    2017-01-20 08:17:00    2017-01-20 08:17:00
61795    24880    695    2017-01-20 06:08:00    2017-01-20 06:08:00
61796    24880    663    2017-01-20 10:59:00    2017-01-20 10:59:00
61797    24880    470    2017-01-20 04:29:00    2017-01-20 04:29:00
61798    24881    728    2017-01-20 11:24:00    2017-01-20 11:24:00
61799    24881    744    2017-01-20 15:02:00    2017-01-20 15:02:00
61800    24881    517    2017-01-20 17:35:00    2017-01-20 17:35:00
61801    24881    735    2017-01-20 10:32:00    2017-01-20 10:32:00
61802    24881    664    2017-01-20 12:24:00    2017-01-20 12:24:00
61803    24882    578    2017-01-20 22:26:00    2017-01-20 22:26:00
61804    24882    847    2017-01-20 01:19:00    2017-01-20 01:19:00
61805    24882    754    2017-01-20 06:27:00    2017-01-20 06:27:00
61806    24882    830    2017-01-20 23:40:00    2017-01-20 23:40:00
61807    24882    959    2017-01-20 15:46:00    2017-01-20 15:46:00
61808    24883    804    2017-01-20 22:09:00    2017-01-20 22:09:00
61809    24883    660    2017-01-20 11:14:00    2017-01-20 11:14:00
61810    24883    603    2017-01-20 10:33:00    2017-01-20 10:33:00
61811    24883    746    2017-01-20 16:51:00    2017-01-20 16:51:00
61812    24883    897    2017-01-20 16:55:00    2017-01-20 16:55:00
61813    24884    630    2017-01-20 12:55:00    2017-01-20 12:55:00
61814    24884    897    2017-01-20 07:46:00    2017-01-20 07:46:00
61815    24884    732    2017-01-20 22:08:00    2017-01-20 22:08:00
61816    24884    545    2017-01-20 10:23:00    2017-01-20 10:23:00
61817    24884    509    2017-01-20 12:25:00    2017-01-20 12:25:00
61818    24885    629    2017-01-20 03:14:00    2017-01-20 03:14:00
61819    24885    808    2017-01-20 08:18:00    2017-01-20 08:18:00
61820    24885    594    2017-01-20 16:52:00    2017-01-20 16:52:00
61821    24885    924    2017-01-20 18:27:00    2017-01-20 18:27:00
61822    24885    664    2017-01-20 02:17:00    2017-01-20 02:17:00
61823    24886    564    2017-01-20 02:58:00    2017-01-20 02:58:00
61824    24886    756    2017-01-20 21:39:00    2017-01-20 21:39:00
61825    24886    573    2017-01-20 15:18:00    2017-01-20 15:18:00
61826    24886    491    2017-01-20 23:25:00    2017-01-20 23:25:00
61827    24886    469    2017-01-20 19:50:00    2017-01-20 19:50:00
61828    24887    622    2017-01-20 09:23:00    2017-01-20 09:23:00
61829    24887    687    2017-01-20 21:43:00    2017-01-20 21:43:00
61830    24887    807    2017-01-20 15:53:00    2017-01-20 15:53:00
61831    24887    793    2017-01-20 23:56:00    2017-01-20 23:56:00
61832    24887    883    2017-01-20 06:49:00    2017-01-20 06:49:00
61833    24888    575    2017-01-20 19:12:00    2017-01-20 19:12:00
61834    24888    730    2017-01-20 18:34:00    2017-01-20 18:34:00
61835    24888    752    2017-01-20 06:24:00    2017-01-20 06:24:00
61836    24888    666    2017-01-20 14:23:00    2017-01-20 14:23:00
61837    24888    483    2017-01-20 15:27:00    2017-01-20 15:27:00
61838    24889    582    2017-01-21 10:49:00    2017-01-21 10:49:00
61839    24889    651    2017-01-21 05:08:00    2017-01-21 05:08:00
61840    24889    770    2017-01-21 14:44:00    2017-01-21 14:44:00
61841    24889    811    2017-01-21 07:07:00    2017-01-21 07:07:00
61842    24889    766    2017-01-21 21:51:00    2017-01-21 21:51:00
61843    24890    719    2017-01-21 08:17:00    2017-01-21 08:17:00
61844    24890    519    2017-01-21 04:13:00    2017-01-21 04:13:00
61845    24890    787    2017-01-21 07:21:00    2017-01-21 07:21:00
61846    24890    509    2017-01-21 21:27:00    2017-01-21 21:27:00
61847    24890    875    2017-01-21 22:51:00    2017-01-21 22:51:00
61848    24891    788    2017-01-21 06:34:00    2017-01-21 06:34:00
61849    24891    555    2017-01-21 20:50:00    2017-01-21 20:50:00
61850    24891    626    2017-01-21 03:23:00    2017-01-21 03:23:00
61851    24891    900    2017-01-21 10:14:00    2017-01-21 10:14:00
61852    24891    857    2017-01-21 11:06:00    2017-01-21 11:06:00
61853    24892    550    2017-01-21 03:36:00    2017-01-21 03:36:00
61854    24892    645    2017-01-21 14:03:00    2017-01-21 14:03:00
61855    24892    754    2017-01-21 05:54:00    2017-01-21 05:54:00
61856    24892    949    2017-01-21 01:44:00    2017-01-21 01:44:00
61857    24892    550    2017-01-21 21:06:00    2017-01-21 21:06:00
61858    24893    696    2017-01-21 07:55:00    2017-01-21 07:55:00
61859    24893    471    2017-01-21 01:25:00    2017-01-21 01:25:00
61860    24893    874    2017-01-21 07:41:00    2017-01-21 07:41:00
61861    24893    488    2017-01-21 07:39:00    2017-01-21 07:39:00
61862    24893    892    2017-01-21 03:57:00    2017-01-21 03:57:00
61863    24894    800    2017-01-21 03:37:00    2017-01-21 03:37:00
61864    24894    746    2017-01-21 20:49:00    2017-01-21 20:49:00
61865    24894    794    2017-01-21 15:36:00    2017-01-21 15:36:00
61866    24894    798    2017-01-21 01:19:00    2017-01-21 01:19:00
61867    24894    686    2017-01-21 04:17:00    2017-01-21 04:17:00
61868    24895    930    2017-01-21 04:46:00    2017-01-21 04:46:00
61869    24895    897    2017-01-21 15:50:00    2017-01-21 15:50:00
61870    24895    510    2017-01-21 18:24:00    2017-01-21 18:24:00
61871    24895    558    2017-01-21 10:27:00    2017-01-21 10:27:00
61872    24895    762    2017-01-21 19:32:00    2017-01-21 19:32:00
61873    24896    522    2017-01-21 08:50:00    2017-01-21 08:50:00
61874    24896    831    2017-01-21 17:13:00    2017-01-21 17:13:00
61875    24896    774    2017-01-21 12:55:00    2017-01-21 12:55:00
61876    24896    517    2017-01-21 21:14:00    2017-01-21 21:14:00
61877    24896    638    2017-01-21 22:16:00    2017-01-21 22:16:00
61878    24897    625    2017-01-21 22:48:00    2017-01-21 22:48:00
61879    24897    559    2017-01-21 06:51:00    2017-01-21 06:51:00
61880    24897    556    2017-01-21 16:11:00    2017-01-21 16:11:00
61881    24897    549    2017-01-21 20:41:00    2017-01-21 20:41:00
61882    24897    676    2017-01-21 21:15:00    2017-01-21 21:15:00
61883    24898    883    2017-01-21 23:40:00    2017-01-21 23:40:00
61884    24898    798    2017-01-21 18:22:00    2017-01-21 18:22:00
61885    24898    718    2017-01-21 04:34:00    2017-01-21 04:34:00
61886    24898    842    2017-01-21 17:13:00    2017-01-21 17:13:00
61887    24898    903    2017-01-21 02:45:00    2017-01-21 02:45:00
61888    24899    924    2017-01-21 21:32:00    2017-01-21 21:32:00
61889    24899    621    2017-01-21 11:59:00    2017-01-21 11:59:00
61890    24899    957    2017-01-21 04:16:00    2017-01-21 04:16:00
61891    24899    810    2017-01-21 23:46:00    2017-01-21 23:46:00
61892    24899    919    2017-01-21 16:09:00    2017-01-21 16:09:00
61893    24900    933    2017-01-21 14:51:00    2017-01-21 14:51:00
61894    24900    781    2017-01-21 23:57:00    2017-01-21 23:57:00
61895    24900    725    2017-01-21 03:49:00    2017-01-21 03:49:00
61896    24900    835    2017-01-21 16:11:00    2017-01-21 16:11:00
61897    24900    466    2017-01-21 23:08:00    2017-01-21 23:08:00
61898    24901    778    2017-01-21 05:48:00    2017-01-21 05:48:00
61899    24901    724    2017-01-21 10:42:00    2017-01-21 10:42:00
61900    24901    780    2017-01-21 03:31:00    2017-01-21 03:31:00
61901    24901    620    2017-01-21 19:47:00    2017-01-21 19:47:00
61902    24901    644    2017-01-21 22:58:00    2017-01-21 22:58:00
61903    24902    630    2017-01-21 23:33:00    2017-01-21 23:33:00
61904    24902    496    2017-01-21 01:26:00    2017-01-21 01:26:00
61905    24902    903    2017-01-21 04:11:00    2017-01-21 04:11:00
61906    24902    922    2017-01-21 01:07:00    2017-01-21 01:07:00
61907    24902    708    2017-01-21 19:44:00    2017-01-21 19:44:00
61908    24903    918    2017-01-21 08:20:00    2017-01-21 08:20:00
61909    24903    954    2017-01-21 11:57:00    2017-01-21 11:57:00
61910    24903    866    2017-01-21 10:36:00    2017-01-21 10:36:00
61911    24903    910    2017-01-21 22:14:00    2017-01-21 22:14:00
61912    24903    814    2017-01-21 05:43:00    2017-01-21 05:43:00
61913    24904    613    2017-01-21 20:12:00    2017-01-21 20:12:00
61914    24904    544    2017-01-21 13:44:00    2017-01-21 13:44:00
61915    24904    795    2017-01-21 06:37:00    2017-01-21 06:37:00
61916    24904    512    2017-01-21 22:53:00    2017-01-21 22:53:00
61917    24904    905    2017-01-21 18:36:00    2017-01-21 18:36:00
61918    24905    877    2017-01-21 07:53:00    2017-01-21 07:53:00
61919    24905    893    2017-01-21 11:31:00    2017-01-21 11:31:00
61920    24905    562    2017-01-21 02:25:00    2017-01-21 02:25:00
61921    24905    590    2017-01-21 22:47:00    2017-01-21 22:47:00
61922    24905    600    2017-01-21 23:25:00    2017-01-21 23:25:00
61923    24906    931    2017-01-21 10:40:00    2017-01-21 10:40:00
61924    24906    536    2017-01-21 02:30:00    2017-01-21 02:30:00
61925    24906    853    2017-01-21 22:46:00    2017-01-21 22:46:00
61926    24906    602    2017-01-21 20:05:00    2017-01-21 20:05:00
61927    24906    838    2017-01-21 05:32:00    2017-01-21 05:32:00
61928    24907    890    2017-01-21 11:55:00    2017-01-21 11:55:00
61929    24907    837    2017-01-21 02:51:00    2017-01-21 02:51:00
61930    24907    799    2017-01-21 20:09:00    2017-01-21 20:09:00
61931    24907    718    2017-01-21 05:01:00    2017-01-21 05:01:00
61932    24907    861    2017-01-21 01:54:00    2017-01-21 01:54:00
61933    24908    685    2017-01-21 10:52:00    2017-01-21 10:52:00
61934    24908    490    2017-01-21 23:54:00    2017-01-21 23:54:00
61935    24908    923    2017-01-21 17:21:00    2017-01-21 17:21:00
61936    24908    545    2017-01-21 05:35:00    2017-01-21 05:35:00
61937    24908    571    2017-01-21 17:25:00    2017-01-21 17:25:00
61938    24909    809    2017-01-21 01:40:00    2017-01-21 01:40:00
61939    24909    866    2017-01-21 09:54:00    2017-01-21 09:54:00
61940    24909    929    2017-01-21 05:06:00    2017-01-21 05:06:00
61941    24909    839    2017-01-21 08:12:00    2017-01-21 08:12:00
61942    24909    672    2017-01-21 14:05:00    2017-01-21 14:05:00
61943    24910    901    2017-01-21 07:30:00    2017-01-21 07:30:00
61944    24910    542    2017-01-21 11:05:00    2017-01-21 11:05:00
61945    24910    924    2017-01-21 04:49:00    2017-01-21 04:49:00
61946    24910    651    2017-01-21 03:15:00    2017-01-21 03:15:00
61947    24910    627    2017-01-21 09:16:00    2017-01-21 09:16:00
61948    24911    735    2017-01-21 19:12:00    2017-01-21 19:12:00
61949    24911    908    2017-01-21 15:55:00    2017-01-21 15:55:00
61950    24911    958    2017-01-21 19:21:00    2017-01-21 19:21:00
61951    24911    611    2017-01-21 03:45:00    2017-01-21 03:45:00
61952    24911    721    2017-01-21 11:19:00    2017-01-21 11:19:00
61953    24912    546    2017-01-21 07:41:00    2017-01-21 07:41:00
61954    24912    890    2017-01-21 14:35:00    2017-01-21 14:35:00
61955    24912    956    2017-01-21 17:02:00    2017-01-21 17:02:00
61956    24912    490    2017-01-21 15:49:00    2017-01-21 15:49:00
61957    24912    575    2017-01-21 09:42:00    2017-01-21 09:42:00
61958    24913    590    2017-01-21 20:26:00    2017-01-21 20:26:00
61959    24913    611    2017-01-21 12:49:00    2017-01-21 12:49:00
61960    24913    621    2017-01-21 04:26:00    2017-01-21 04:26:00
61961    24913    774    2017-01-21 06:15:00    2017-01-21 06:15:00
61962    24913    715    2017-01-21 17:03:00    2017-01-21 17:03:00
61963    24914    706    2017-01-21 05:36:00    2017-01-21 05:36:00
61964    24914    841    2017-01-21 13:05:00    2017-01-21 13:05:00
61965    24914    552    2017-01-21 02:24:00    2017-01-21 02:24:00
61966    24914    512    2017-01-21 09:28:00    2017-01-21 09:28:00
61967    24914    752    2017-01-21 18:44:00    2017-01-21 18:44:00
61968    24915    717    2017-01-21 19:36:00    2017-01-21 19:36:00
61969    24915    906    2017-01-21 22:49:00    2017-01-21 22:49:00
61970    24915    589    2017-01-21 17:59:00    2017-01-21 17:59:00
61971    24915    570    2017-01-21 03:24:00    2017-01-21 03:24:00
61972    24915    628    2017-01-21 17:15:00    2017-01-21 17:15:00
61973    24916    691    2017-01-21 18:10:00    2017-01-21 18:10:00
61974    24916    871    2017-01-21 20:15:00    2017-01-21 20:15:00
61975    24916    498    2017-01-21 10:48:00    2017-01-21 10:48:00
61976    24916    463    2017-01-21 03:15:00    2017-01-21 03:15:00
61977    24916    554    2017-01-21 21:27:00    2017-01-21 21:27:00
61978    24917    916    2017-01-21 13:18:00    2017-01-21 13:18:00
61979    24917    535    2017-01-21 11:55:00    2017-01-21 11:55:00
61980    24917    649    2017-01-21 19:14:00    2017-01-21 19:14:00
61981    24917    845    2017-01-21 06:58:00    2017-01-21 06:58:00
61982    24917    857    2017-01-21 16:52:00    2017-01-21 16:52:00
61983    24918    566    2017-01-21 11:36:00    2017-01-21 11:36:00
61984    24918    617    2017-01-21 12:10:00    2017-01-21 12:10:00
61985    24918    731    2017-01-21 04:59:00    2017-01-21 04:59:00
61986    24918    576    2017-01-21 14:23:00    2017-01-21 14:23:00
61987    24918    837    2017-01-21 11:11:00    2017-01-21 11:11:00
61988    24919    468    2017-01-21 21:48:00    2017-01-21 21:48:00
61989    24919    785    2017-01-21 15:52:00    2017-01-21 15:52:00
61990    24919    791    2017-01-21 02:00:00    2017-01-21 02:00:00
61991    24919    557    2017-01-21 12:00:00    2017-01-21 12:00:00
61992    24919    598    2017-01-21 10:28:00    2017-01-21 10:28:00
61993    24920    533    2017-01-21 04:12:00    2017-01-21 04:12:00
61994    24920    763    2017-01-21 22:02:00    2017-01-21 22:02:00
61995    24920    650    2017-01-21 09:50:00    2017-01-21 09:50:00
61996    24920    671    2017-01-21 15:17:00    2017-01-21 15:17:00
61997    24920    868    2017-01-21 21:32:00    2017-01-21 21:32:00
61998    24921    589    2017-01-21 05:17:00    2017-01-21 05:17:00
61999    24921    758    2017-01-21 18:02:00    2017-01-21 18:02:00
62000    24921    532    2017-01-21 21:19:00    2017-01-21 21:19:00
62001    24921    894    2017-01-21 20:33:00    2017-01-21 20:33:00
62002    24921    725    2017-01-21 09:46:00    2017-01-21 09:46:00
62003    24922    958    2017-01-21 12:03:00    2017-01-21 12:03:00
62004    24922    950    2017-01-21 16:30:00    2017-01-21 16:30:00
62005    24922    924    2017-01-21 11:50:00    2017-01-21 11:50:00
62006    24922    595    2017-01-21 03:34:00    2017-01-21 03:34:00
62007    24922    831    2017-01-21 21:00:00    2017-01-21 21:00:00
62008    24923    492    2017-01-21 03:50:00    2017-01-21 03:50:00
62009    24923    527    2017-01-21 13:44:00    2017-01-21 13:44:00
62010    24923    850    2017-01-21 15:02:00    2017-01-21 15:02:00
62011    24923    484    2017-01-21 10:35:00    2017-01-21 10:35:00
62012    24923    523    2017-01-21 02:00:00    2017-01-21 02:00:00
62013    24924    549    2017-01-21 23:04:00    2017-01-21 23:04:00
62014    24924    919    2017-01-21 19:17:00    2017-01-21 19:17:00
62015    24924    668    2017-01-21 06:37:00    2017-01-21 06:37:00
62016    24924    940    2017-01-21 09:08:00    2017-01-21 09:08:00
62017    24924    648    2017-01-21 04:10:00    2017-01-21 04:10:00
62018    24925    936    2017-01-21 14:27:00    2017-01-21 14:27:00
62019    24925    517    2017-01-21 12:20:00    2017-01-21 12:20:00
62020    24925    645    2017-01-21 08:02:00    2017-01-21 08:02:00
62021    24925    849    2017-01-21 18:01:00    2017-01-21 18:01:00
62022    24925    901    2017-01-21 06:40:00    2017-01-21 06:40:00
62023    24926    520    2017-01-21 09:31:00    2017-01-21 09:31:00
62024    24926    465    2017-01-21 06:02:00    2017-01-21 06:02:00
62025    24926    655    2017-01-21 13:24:00    2017-01-21 13:24:00
62026    24926    715    2017-01-21 17:53:00    2017-01-21 17:53:00
62027    24926    952    2017-01-21 15:18:00    2017-01-21 15:18:00
62028    24927    843    2017-01-21 18:03:00    2017-01-21 18:03:00
62029    24927    552    2017-01-21 11:17:00    2017-01-21 11:17:00
62030    24927    826    2017-01-21 15:56:00    2017-01-21 15:56:00
62031    24927    925    2017-01-21 12:08:00    2017-01-21 12:08:00
62032    24927    945    2017-01-21 13:11:00    2017-01-21 13:11:00
62033    24928    465    2017-01-21 03:02:00    2017-01-21 03:02:00
62034    24928    796    2017-01-21 15:13:00    2017-01-21 15:13:00
62035    24928    808    2017-01-21 12:10:00    2017-01-21 12:10:00
62036    24928    947    2017-01-21 12:01:00    2017-01-21 12:01:00
62037    24928    535    2017-01-21 02:50:00    2017-01-21 02:50:00
62038    24929    530    2017-01-21 03:17:00    2017-01-21 03:17:00
62039    24929    538    2017-01-21 18:27:00    2017-01-21 18:27:00
62040    24929    674    2017-01-21 04:13:00    2017-01-21 04:13:00
62041    24929    621    2017-01-21 08:40:00    2017-01-21 08:40:00
62042    24929    600    2017-01-21 05:15:00    2017-01-21 05:15:00
62043    24930    528    2017-01-21 17:34:00    2017-01-21 17:34:00
62044    24930    707    2017-01-21 11:20:00    2017-01-21 11:20:00
62045    24930    473    2017-01-21 15:07:00    2017-01-21 15:07:00
62046    24930    857    2017-01-21 14:50:00    2017-01-21 14:50:00
62047    24930    519    2017-01-21 04:02:00    2017-01-21 04:02:00
62048    24931    635    2017-01-21 02:00:00    2017-01-21 02:00:00
62049    24931    922    2017-01-21 12:10:00    2017-01-21 12:10:00
62050    24931    488    2017-01-21 11:25:00    2017-01-21 11:25:00
62051    24931    479    2017-01-21 03:56:00    2017-01-21 03:56:00
62052    24931    755    2017-01-21 20:07:00    2017-01-21 20:07:00
62053    24932    686    2017-01-21 10:03:00    2017-01-21 10:03:00
62054    24932    705    2017-01-21 12:27:00    2017-01-21 12:27:00
62055    24932    742    2017-01-21 05:59:00    2017-01-21 05:59:00
62056    24932    562    2017-01-21 03:57:00    2017-01-21 03:57:00
62057    24932    629    2017-01-21 06:57:00    2017-01-21 06:57:00
62058    24933    484    2017-01-21 17:17:00    2017-01-21 17:17:00
62059    24933    568    2017-01-21 18:23:00    2017-01-21 18:23:00
62060    24933    777    2017-01-21 08:12:00    2017-01-21 08:12:00
62061    24933    648    2017-01-21 17:13:00    2017-01-21 17:13:00
62062    24933    858    2017-01-21 06:09:00    2017-01-21 06:09:00
62063    24934    674    2017-01-21 19:49:00    2017-01-21 19:49:00
62064    24934    789    2017-01-21 12:14:00    2017-01-21 12:14:00
62065    24934    959    2017-01-21 09:24:00    2017-01-21 09:24:00
62066    24934    736    2017-01-21 03:36:00    2017-01-21 03:36:00
62067    24934    725    2017-01-21 21:00:00    2017-01-21 21:00:00
62068    24935    621    2017-01-21 20:40:00    2017-01-21 20:40:00
62069    24935    591    2017-01-21 10:36:00    2017-01-21 10:36:00
62070    24935    888    2017-01-21 13:12:00    2017-01-21 13:12:00
62071    24935    598    2017-01-21 07:02:00    2017-01-21 07:02:00
62072    24935    507    2017-01-21 17:39:00    2017-01-21 17:39:00
62073    24936    639    2017-01-21 07:24:00    2017-01-21 07:24:00
62074    24936    806    2017-01-21 22:14:00    2017-01-21 22:14:00
62075    24936    470    2017-01-21 02:48:00    2017-01-21 02:48:00
62076    24936    565    2017-01-21 10:02:00    2017-01-21 10:02:00
62077    24936    902    2017-01-21 19:42:00    2017-01-21 19:42:00
62078    24937    673    2017-01-21 13:15:00    2017-01-21 13:15:00
62079    24937    664    2017-01-21 18:16:00    2017-01-21 18:16:00
62080    24937    936    2017-01-21 03:36:00    2017-01-21 03:36:00
62081    24937    698    2017-01-21 09:00:00    2017-01-21 09:00:00
62082    24937    466    2017-01-21 17:59:00    2017-01-21 17:59:00
62083    24938    640    2017-01-21 17:33:00    2017-01-21 17:33:00
62084    24938    536    2017-01-21 02:40:00    2017-01-21 02:40:00
62085    24938    691    2017-01-21 17:39:00    2017-01-21 17:39:00
62086    24938    852    2017-01-21 23:27:00    2017-01-21 23:27:00
62087    24938    675    2017-01-21 07:36:00    2017-01-21 07:36:00
62088    24939    645    2017-01-21 23:50:00    2017-01-21 23:50:00
62089    24939    621    2017-01-21 22:33:00    2017-01-21 22:33:00
62090    24939    675    2017-01-21 02:04:00    2017-01-21 02:04:00
62091    24939    626    2017-01-21 04:00:00    2017-01-21 04:00:00
62092    24939    831    2017-01-21 14:03:00    2017-01-21 14:03:00
62093    24940    643    2017-01-21 17:46:00    2017-01-21 17:46:00
62094    24940    733    2017-01-21 14:27:00    2017-01-21 14:27:00
62095    24940    877    2017-01-21 17:43:00    2017-01-21 17:43:00
62096    24940    662    2017-01-21 13:00:00    2017-01-21 13:00:00
62097    24940    887    2017-01-21 18:04:00    2017-01-21 18:04:00
62098    24941    762    2017-01-21 21:20:00    2017-01-21 21:20:00
62099    24941    882    2017-01-21 18:46:00    2017-01-21 18:46:00
62100    24941    532    2017-01-21 02:55:00    2017-01-21 02:55:00
62101    24941    497    2017-01-21 01:07:00    2017-01-21 01:07:00
62102    24941    791    2017-01-21 11:56:00    2017-01-21 11:56:00
62103    24942    847    2017-01-21 01:13:00    2017-01-21 01:13:00
62104    24942    782    2017-01-21 08:11:00    2017-01-21 08:11:00
62105    24942    635    2017-01-21 17:35:00    2017-01-21 17:35:00
62106    24942    544    2017-01-21 02:00:00    2017-01-21 02:00:00
62107    24942    739    2017-01-21 14:20:00    2017-01-21 14:20:00
62108    24943    654    2017-01-21 11:02:00    2017-01-21 11:02:00
62109    24943    478    2017-01-21 12:18:00    2017-01-21 12:18:00
62110    24943    782    2017-01-21 09:39:00    2017-01-21 09:39:00
62111    24943    646    2017-01-21 05:23:00    2017-01-21 05:23:00
62112    24943    695    2017-01-21 11:35:00    2017-01-21 11:35:00
62113    24944    918    2017-01-22 21:46:00    2017-01-22 21:46:00
62114    24944    835    2017-01-22 08:17:00    2017-01-22 08:17:00
62115    24944    525    2017-01-22 12:43:00    2017-01-22 12:43:00
62116    24944    501    2017-01-22 19:40:00    2017-01-22 19:40:00
62117    24944    765    2017-01-22 12:35:00    2017-01-22 12:35:00
62118    24945    782    2017-01-22 19:15:00    2017-01-22 19:15:00
62119    24945    776    2017-01-22 10:03:00    2017-01-22 10:03:00
62120    24945    500    2017-01-22 03:10:00    2017-01-22 03:10:00
62121    24945    846    2017-01-22 02:19:00    2017-01-22 02:19:00
62122    24945    927    2017-01-22 02:30:00    2017-01-22 02:30:00
62123    24946    804    2017-01-22 22:24:00    2017-01-22 22:24:00
62124    24946    467    2017-01-22 04:31:00    2017-01-22 04:31:00
62125    24946    471    2017-01-22 08:35:00    2017-01-22 08:35:00
62126    24946    894    2017-01-22 17:20:00    2017-01-22 17:20:00
62127    24946    833    2017-01-22 08:10:00    2017-01-22 08:10:00
62128    24947    535    2017-01-22 04:48:00    2017-01-22 04:48:00
62129    24947    791    2017-01-22 08:08:00    2017-01-22 08:08:00
62130    24947    837    2017-01-22 13:07:00    2017-01-22 13:07:00
62131    24947    876    2017-01-22 14:57:00    2017-01-22 14:57:00
62132    24947    849    2017-01-22 11:46:00    2017-01-22 11:46:00
62133    24948    900    2017-01-22 15:56:00    2017-01-22 15:56:00
62134    24948    725    2017-01-22 16:17:00    2017-01-22 16:17:00
62135    24948    509    2017-01-22 09:16:00    2017-01-22 09:16:00
62136    24948    747    2017-01-22 15:53:00    2017-01-22 15:53:00
62137    24948    896    2017-01-22 13:34:00    2017-01-22 13:34:00
62138    24949    597    2017-01-22 14:56:00    2017-01-22 14:56:00
62139    24949    784    2017-01-22 03:58:00    2017-01-22 03:58:00
62140    24949    743    2017-01-22 11:51:00    2017-01-22 11:51:00
62141    24949    921    2017-01-22 10:33:00    2017-01-22 10:33:00
62142    24949    733    2017-01-22 01:08:00    2017-01-22 01:08:00
62143    24950    707    2017-01-22 14:49:00    2017-01-22 14:49:00
62144    24950    881    2017-01-22 22:44:00    2017-01-22 22:44:00
62145    24950    599    2017-01-22 22:16:00    2017-01-22 22:16:00
62146    24950    920    2017-01-22 15:54:00    2017-01-22 15:54:00
62147    24950    697    2017-01-22 17:35:00    2017-01-22 17:35:00
62148    24951    561    2017-01-22 04:09:00    2017-01-22 04:09:00
62149    24951    567    2017-01-22 19:57:00    2017-01-22 19:57:00
62150    24951    599    2017-01-22 11:10:00    2017-01-22 11:10:00
62151    24951    516    2017-01-22 18:43:00    2017-01-22 18:43:00
62152    24951    593    2017-01-22 15:18:00    2017-01-22 15:18:00
62153    24952    663    2017-01-22 03:47:00    2017-01-22 03:47:00
62154    24952    707    2017-01-22 07:24:00    2017-01-22 07:24:00
62155    24952    578    2017-01-22 10:12:00    2017-01-22 10:12:00
62156    24952    883    2017-01-22 03:51:00    2017-01-22 03:51:00
62157    24952    845    2017-01-22 02:02:00    2017-01-22 02:02:00
62158    24953    873    2017-01-22 14:45:00    2017-01-22 14:45:00
62159    24953    601    2017-01-22 23:02:00    2017-01-22 23:02:00
62160    24953    739    2017-01-22 17:02:00    2017-01-22 17:02:00
62161    24953    670    2017-01-22 21:27:00    2017-01-22 21:27:00
62162    24953    673    2017-01-22 09:17:00    2017-01-22 09:17:00
62163    24954    643    2017-01-22 08:33:00    2017-01-22 08:33:00
62164    24954    886    2017-01-22 01:35:00    2017-01-22 01:35:00
62165    24954    680    2017-01-22 16:43:00    2017-01-22 16:43:00
62166    24954    869    2017-01-22 01:58:00    2017-01-22 01:58:00
62167    24954    562    2017-01-22 16:37:00    2017-01-22 16:37:00
62168    24955    789    2017-01-22 23:03:00    2017-01-22 23:03:00
62169    24955    942    2017-01-22 15:59:00    2017-01-22 15:59:00
62170    24955    719    2017-01-22 05:00:00    2017-01-22 05:00:00
62171    24955    859    2017-01-22 17:12:00    2017-01-22 17:12:00
62172    24955    961    2017-01-22 20:43:00    2017-01-22 20:43:00
62173    24956    851    2017-01-22 23:48:00    2017-01-22 23:48:00
62174    24956    626    2017-01-22 03:49:00    2017-01-22 03:49:00
62175    24956    579    2017-01-22 20:34:00    2017-01-22 20:34:00
62176    24956    928    2017-01-22 16:45:00    2017-01-22 16:45:00
62177    24956    470    2017-01-22 11:55:00    2017-01-22 11:55:00
62178    24957    598    2017-01-22 08:01:00    2017-01-22 08:01:00
62179    24957    852    2017-01-22 07:16:00    2017-01-22 07:16:00
62180    24957    656    2017-01-22 23:06:00    2017-01-22 23:06:00
62181    24957    612    2017-01-22 22:37:00    2017-01-22 22:37:00
62182    24957    515    2017-01-22 12:02:00    2017-01-22 12:02:00
62183    24958    690    2017-01-22 01:29:00    2017-01-22 01:29:00
62184    24958    640    2017-01-22 23:17:00    2017-01-22 23:17:00
62185    24958    588    2017-01-22 16:54:00    2017-01-22 16:54:00
62186    24958    905    2017-01-22 07:51:00    2017-01-22 07:51:00
62187    24958    540    2017-01-22 23:11:00    2017-01-22 23:11:00
62188    24959    649    2017-01-22 19:25:00    2017-01-22 19:25:00
62189    24959    484    2017-01-22 10:59:00    2017-01-22 10:59:00
62190    24959    819    2017-01-22 12:11:00    2017-01-22 12:11:00
62191    24959    815    2017-01-22 11:38:00    2017-01-22 11:38:00
62192    24959    710    2017-01-22 18:00:00    2017-01-22 18:00:00
62193    24960    664    2017-01-22 16:04:00    2017-01-22 16:04:00
62194    24960    734    2017-01-22 21:01:00    2017-01-22 21:01:00
62195    24960    717    2017-01-22 07:39:00    2017-01-22 07:39:00
62196    24960    891    2017-01-22 18:17:00    2017-01-22 18:17:00
62197    24960    728    2017-01-22 21:20:00    2017-01-22 21:20:00
62198    24961    615    2017-01-22 17:41:00    2017-01-22 17:41:00
62199    24961    606    2017-01-22 16:24:00    2017-01-22 16:24:00
62200    24961    648    2017-01-22 13:59:00    2017-01-22 13:59:00
62201    24961    730    2017-01-22 08:05:00    2017-01-22 08:05:00
62202    24961    716    2017-01-22 08:22:00    2017-01-22 08:22:00
62203    24962    661    2017-01-22 09:38:00    2017-01-22 09:38:00
62204    24962    834    2017-01-22 16:53:00    2017-01-22 16:53:00
62205    24962    890    2017-01-22 19:28:00    2017-01-22 19:28:00
62206    24962    507    2017-01-22 01:41:00    2017-01-22 01:41:00
62207    24962    633    2017-01-22 05:05:00    2017-01-22 05:05:00
62208    24963    530    2017-01-22 16:56:00    2017-01-22 16:56:00
62209    24963    485    2017-01-22 17:33:00    2017-01-22 17:33:00
62210    24963    947    2017-01-22 17:39:00    2017-01-22 17:39:00
62211    24963    803    2017-01-22 03:41:00    2017-01-22 03:41:00
62212    24963    736    2017-01-22 07:40:00    2017-01-22 07:40:00
62213    24964    627    2017-01-22 07:39:00    2017-01-22 07:39:00
62214    24964    508    2017-01-22 09:31:00    2017-01-22 09:31:00
62215    24964    576    2017-01-22 21:24:00    2017-01-22 21:24:00
62216    24964    521    2017-01-22 03:46:00    2017-01-22 03:46:00
62217    24964    764    2017-01-22 05:41:00    2017-01-22 05:41:00
62218    24965    660    2017-01-22 02:42:00    2017-01-22 02:42:00
62219    24965    931    2017-01-22 05:22:00    2017-01-22 05:22:00
62220    24965    573    2017-01-22 19:49:00    2017-01-22 19:49:00
62221    24965    826    2017-01-22 06:34:00    2017-01-22 06:34:00
62222    24965    807    2017-01-22 10:33:00    2017-01-22 10:33:00
62223    24966    742    2017-01-22 05:09:00    2017-01-22 05:09:00
62224    24966    538    2017-01-22 19:03:00    2017-01-22 19:03:00
62225    24966    681    2017-01-22 02:53:00    2017-01-22 02:53:00
62226    24966    821    2017-01-22 04:49:00    2017-01-22 04:49:00
62227    24966    786    2017-01-22 13:58:00    2017-01-22 13:58:00
62228    24967    757    2017-01-22 15:39:00    2017-01-22 15:39:00
62229    24967    759    2017-01-22 17:35:00    2017-01-22 17:35:00
62230    24967    603    2017-01-22 19:00:00    2017-01-22 19:00:00
62231    24967    493    2017-01-22 18:51:00    2017-01-22 18:51:00
62232    24967    556    2017-01-22 02:37:00    2017-01-22 02:37:00
62233    24968    947    2017-01-22 17:03:00    2017-01-22 17:03:00
62234    24968    629    2017-01-22 03:39:00    2017-01-22 03:39:00
62235    24968    721    2017-01-22 07:17:00    2017-01-22 07:17:00
62236    24968    919    2017-01-22 19:00:00    2017-01-22 19:00:00
62237    24968    788    2017-01-22 15:34:00    2017-01-22 15:34:00
62238    24969    613    2017-01-22 07:53:00    2017-01-22 07:53:00
62239    24969    594    2017-01-22 06:06:00    2017-01-22 06:06:00
62240    24969    813    2017-01-22 09:31:00    2017-01-22 09:31:00
62241    24969    533    2017-01-22 14:31:00    2017-01-22 14:31:00
62242    24969    718    2017-01-22 16:45:00    2017-01-22 16:45:00
62243    24970    669    2017-01-22 14:42:00    2017-01-22 14:42:00
62244    24970    502    2017-01-22 02:36:00    2017-01-22 02:36:00
62245    24970    565    2017-01-22 23:33:00    2017-01-22 23:33:00
62246    24970    546    2017-01-22 23:06:00    2017-01-22 23:06:00
62247    24970    568    2017-01-22 10:50:00    2017-01-22 10:50:00
62248    24971    572    2017-01-22 09:40:00    2017-01-22 09:40:00
62249    24971    923    2017-01-22 06:00:00    2017-01-22 06:00:00
62250    24971    727    2017-01-22 14:21:00    2017-01-22 14:21:00
62251    24971    911    2017-01-22 09:38:00    2017-01-22 09:38:00
62252    24971    511    2017-01-22 14:14:00    2017-01-22 14:14:00
62253    24972    753    2017-01-22 03:51:00    2017-01-22 03:51:00
62254    24972    694    2017-01-22 16:18:00    2017-01-22 16:18:00
62255    24972    954    2017-01-22 08:07:00    2017-01-22 08:07:00
62256    24972    837    2017-01-22 10:54:00    2017-01-22 10:54:00
62257    24972    627    2017-01-22 21:06:00    2017-01-22 21:06:00
62258    24973    548    2017-01-22 04:22:00    2017-01-22 04:22:00
62259    24973    894    2017-01-22 07:33:00    2017-01-22 07:33:00
62260    24973    656    2017-01-22 10:26:00    2017-01-22 10:26:00
62261    24973    559    2017-01-22 04:50:00    2017-01-22 04:50:00
62262    24973    778    2017-01-22 20:14:00    2017-01-22 20:14:00
62263    24974    565    2017-01-22 07:56:00    2017-01-22 07:56:00
62264    24974    591    2017-01-22 18:05:00    2017-01-22 18:05:00
62265    24974    798    2017-01-22 20:13:00    2017-01-22 20:13:00
62266    24974    808    2017-01-22 09:00:00    2017-01-22 09:00:00
62267    24974    606    2017-01-22 21:00:00    2017-01-22 21:00:00
62268    24975    625    2017-01-22 18:26:00    2017-01-22 18:26:00
62269    24975    820    2017-01-22 08:18:00    2017-01-22 08:18:00
62270    24975    503    2017-01-22 07:51:00    2017-01-22 07:51:00
62271    24975    792    2017-01-22 01:52:00    2017-01-22 01:52:00
62272    24975    700    2017-01-22 19:35:00    2017-01-22 19:35:00
62273    24976    474    2017-01-22 02:49:00    2017-01-22 02:49:00
62274    24976    739    2017-01-22 19:17:00    2017-01-22 19:17:00
62275    24976    778    2017-01-22 04:34:00    2017-01-22 04:34:00
62276    24976    819    2017-01-22 22:05:00    2017-01-22 22:05:00
62277    24976    633    2017-01-22 17:00:00    2017-01-22 17:00:00
62278    24977    802    2017-01-22 12:45:00    2017-01-22 12:45:00
62279    24977    625    2017-01-22 20:35:00    2017-01-22 20:35:00
62280    24977    623    2017-01-22 16:25:00    2017-01-22 16:25:00
62281    24977    656    2017-01-22 16:56:00    2017-01-22 16:56:00
62282    24977    891    2017-01-22 19:26:00    2017-01-22 19:26:00
62283    24978    920    2017-01-22 21:06:00    2017-01-22 21:06:00
62284    24978    571    2017-01-22 08:30:00    2017-01-22 08:30:00
62285    24978    478    2017-01-22 15:38:00    2017-01-22 15:38:00
62286    24978    504    2017-01-22 03:35:00    2017-01-22 03:35:00
62287    24978    863    2017-01-22 05:22:00    2017-01-22 05:22:00
62288    24979    622    2017-01-22 11:26:00    2017-01-22 11:26:00
62289    24979    839    2017-01-22 03:54:00    2017-01-22 03:54:00
62290    24979    939    2017-01-22 23:33:00    2017-01-22 23:33:00
62291    24979    529    2017-01-22 12:09:00    2017-01-22 12:09:00
62292    24979    790    2017-01-22 05:11:00    2017-01-22 05:11:00
62293    24980    739    2017-01-22 20:00:00    2017-01-22 20:00:00
62294    24980    511    2017-01-22 08:55:00    2017-01-22 08:55:00
62295    24980    731    2017-01-22 05:09:00    2017-01-22 05:09:00
62296    24980    626    2017-01-22 01:17:00    2017-01-22 01:17:00
62297    24980    921    2017-01-22 14:24:00    2017-01-22 14:24:00
62298    24981    495    2017-01-22 22:03:00    2017-01-22 22:03:00
62299    24981    887    2017-01-22 16:37:00    2017-01-22 16:37:00
62300    24981    585    2017-01-22 11:09:00    2017-01-22 11:09:00
62301    24981    777    2017-01-22 23:57:00    2017-01-22 23:57:00
62302    24981    808    2017-01-22 17:51:00    2017-01-22 17:51:00
62303    24982    883    2017-01-22 01:26:00    2017-01-22 01:26:00
62304    24982    834    2017-01-22 23:12:00    2017-01-22 23:12:00
62305    24982    546    2017-01-22 07:25:00    2017-01-22 07:25:00
62306    24982    933    2017-01-22 04:20:00    2017-01-22 04:20:00
62307    24982    875    2017-01-22 03:22:00    2017-01-22 03:22:00
62308    24983    748    2017-01-22 23:22:00    2017-01-22 23:22:00
62309    24983    910    2017-01-22 13:15:00    2017-01-22 13:15:00
62310    24983    808    2017-01-22 09:05:00    2017-01-22 09:05:00
62311    24983    858    2017-01-22 03:54:00    2017-01-22 03:54:00
62312    24983    865    2017-01-22 22:19:00    2017-01-22 22:19:00
62313    24984    719    2017-01-22 09:56:00    2017-01-22 09:56:00
62314    24984    772    2017-01-22 17:48:00    2017-01-22 17:48:00
62315    24984    825    2017-01-22 11:04:00    2017-01-22 11:04:00
62316    24984    487    2017-01-22 12:15:00    2017-01-22 12:15:00
62317    24984    475    2017-01-23 00:00:00    2017-01-23 00:00:00
62318    24985    564    2017-01-22 02:55:00    2017-01-22 02:55:00
62319    24985    533    2017-01-22 15:04:00    2017-01-22 15:04:00
62320    24985    812    2017-01-22 19:45:00    2017-01-22 19:45:00
62321    24985    859    2017-01-22 21:12:00    2017-01-22 21:12:00
62322    24985    705    2017-01-22 04:57:00    2017-01-22 04:57:00
62323    24986    948    2017-01-22 17:03:00    2017-01-22 17:03:00
62324    24986    686    2017-01-22 15:15:00    2017-01-22 15:15:00
62325    24986    846    2017-01-22 07:00:00    2017-01-22 07:00:00
62326    24986    715    2017-01-22 11:31:00    2017-01-22 11:31:00
62327    24986    956    2017-01-22 09:36:00    2017-01-22 09:36:00
62328    24987    583    2017-01-22 16:17:00    2017-01-22 16:17:00
62329    24987    935    2017-01-22 05:45:00    2017-01-22 05:45:00
62330    24987    602    2017-01-22 23:51:00    2017-01-22 23:51:00
62331    24987    508    2017-01-22 18:37:00    2017-01-22 18:37:00
62332    24987    875    2017-01-22 09:35:00    2017-01-22 09:35:00
62333    24988    583    2017-01-22 17:25:00    2017-01-22 17:25:00
62334    24988    664    2017-01-22 14:02:00    2017-01-22 14:02:00
62335    24988    731    2017-01-22 02:36:00    2017-01-22 02:36:00
62336    24988    540    2017-01-22 09:52:00    2017-01-22 09:52:00
62337    24988    890    2017-01-22 04:48:00    2017-01-22 04:48:00
62338    24989    502    2017-01-22 09:49:00    2017-01-22 09:49:00
62339    24989    767    2017-01-22 18:08:00    2017-01-22 18:08:00
62340    24989    866    2017-01-22 21:30:00    2017-01-22 21:30:00
62341    24989    901    2017-01-22 09:48:00    2017-01-22 09:48:00
62342    24989    737    2017-01-22 05:43:00    2017-01-22 05:43:00
62343    24990    518    2017-01-22 11:11:00    2017-01-22 11:11:00
62344    24990    563    2017-01-22 01:26:00    2017-01-22 01:26:00
62345    24990    762    2017-01-22 18:52:00    2017-01-22 18:52:00
62346    24990    646    2017-01-22 12:54:00    2017-01-22 12:54:00
62347    24990    929    2017-01-22 12:14:00    2017-01-22 12:14:00
62348    24991    900    2017-01-22 13:13:00    2017-01-22 13:13:00
62349    24991    824    2017-01-22 16:08:00    2017-01-22 16:08:00
62350    24991    919    2017-01-22 12:59:00    2017-01-22 12:59:00
62351    24991    672    2017-01-22 12:32:00    2017-01-22 12:32:00
62352    24991    544    2017-01-22 03:58:00    2017-01-22 03:58:00
62353    24992    778    2017-01-22 02:08:00    2017-01-22 02:08:00
62354    24992    691    2017-01-22 11:31:00    2017-01-22 11:31:00
62355    24992    900    2017-01-22 18:21:00    2017-01-22 18:21:00
62356    24992    817    2017-01-22 09:22:00    2017-01-22 09:22:00
62357    24992    776    2017-01-22 20:35:00    2017-01-22 20:35:00
62358    24993    616    2017-01-22 17:57:00    2017-01-22 17:57:00
62359    24993    720    2017-01-22 19:12:00    2017-01-22 19:12:00
62360    24993    506    2017-01-22 17:50:00    2017-01-22 17:50:00
62361    24993    639    2017-01-22 11:40:00    2017-01-22 11:40:00
62362    24993    678    2017-01-22 04:41:00    2017-01-22 04:41:00
62363    24994    834    2017-01-22 12:08:00    2017-01-22 12:08:00
62364    24994    719    2017-01-22 17:00:00    2017-01-22 17:00:00
62365    24994    883    2017-01-22 14:27:00    2017-01-22 14:27:00
62366    24994    858    2017-01-22 17:28:00    2017-01-22 17:28:00
62367    24994    489    2017-01-22 20:59:00    2017-01-22 20:59:00
62368    24995    504    2017-01-22 16:17:00    2017-01-22 16:17:00
62369    24995    732    2017-01-22 02:17:00    2017-01-22 02:17:00
62370    24995    902    2017-01-22 02:14:00    2017-01-22 02:14:00
62371    24995    821    2017-01-22 22:02:00    2017-01-22 22:02:00
62372    24995    603    2017-01-22 01:50:00    2017-01-22 01:50:00
62373    24996    563    2017-01-22 09:26:00    2017-01-22 09:26:00
62374    24996    500    2017-01-22 03:47:00    2017-01-22 03:47:00
62375    24996    687    2017-01-22 05:10:00    2017-01-22 05:10:00
62376    24996    663    2017-01-22 19:29:00    2017-01-22 19:29:00
62377    24996    507    2017-01-22 18:51:00    2017-01-22 18:51:00
62378    24997    795    2017-01-22 18:56:00    2017-01-22 18:56:00
62379    24997    872    2017-01-22 04:32:00    2017-01-22 04:32:00
62380    24997    662    2017-01-22 12:38:00    2017-01-22 12:38:00
62381    24997    518    2017-01-22 18:52:00    2017-01-22 18:52:00
62382    24997    712    2017-01-22 14:52:00    2017-01-22 14:52:00
62383    24998    686    2017-01-22 06:00:00    2017-01-22 06:00:00
62384    24998    646    2017-01-22 20:45:00    2017-01-22 20:45:00
62385    24998    763    2017-01-22 10:33:00    2017-01-22 10:33:00
62386    24998    594    2017-01-22 03:25:00    2017-01-22 03:25:00
62387    24998    957    2017-01-22 07:53:00    2017-01-22 07:53:00
62388    24999    568    2017-01-22 23:45:00    2017-01-22 23:45:00
62389    24999    926    2017-01-22 18:49:00    2017-01-22 18:49:00
62390    24999    754    2017-01-22 17:15:00    2017-01-22 17:15:00
62391    24999    751    2017-01-22 06:12:00    2017-01-22 06:12:00
62392    24999    708    2017-01-22 15:04:00    2017-01-22 15:04:00
62393    25000    700    2017-01-22 17:36:00    2017-01-22 17:36:00
62394    25000    883    2017-01-22 08:03:00    2017-01-22 08:03:00
62395    25000    466    2017-01-22 02:55:00    2017-01-22 02:55:00
62396    25000    717    2017-01-22 01:14:00    2017-01-22 01:14:00
62397    25000    521    2017-01-22 03:02:00    2017-01-22 03:02:00
62398    25001    479    2017-01-22 07:26:00    2017-01-22 07:26:00
62399    25001    678    2017-01-22 14:09:00    2017-01-22 14:09:00
62400    25001    791    2017-01-22 01:08:00    2017-01-22 01:08:00
62401    25001    810    2017-01-22 16:58:00    2017-01-22 16:58:00
62402    25001    621    2017-01-22 18:58:00    2017-01-22 18:58:00
62403    25002    893    2017-01-22 17:52:00    2017-01-22 17:52:00
62404    25002    729    2017-01-22 21:03:00    2017-01-22 21:03:00
62405    25002    514    2017-01-22 19:30:00    2017-01-22 19:30:00
62406    25002    524    2017-01-22 15:12:00    2017-01-22 15:12:00
62407    25002    808    2017-01-22 01:56:00    2017-01-22 01:56:00
62408    25003    572    2017-01-22 05:44:00    2017-01-22 05:44:00
62409    25003    761    2017-01-22 11:36:00    2017-01-22 11:36:00
62410    25003    594    2017-01-22 13:55:00    2017-01-22 13:55:00
62411    25003    513    2017-01-22 20:10:00    2017-01-22 20:10:00
62412    25003    657    2017-01-22 05:01:00    2017-01-22 05:01:00
62413    25004    620    2017-01-22 19:28:00    2017-01-22 19:28:00
62414    25004    740    2017-01-22 05:13:00    2017-01-22 05:13:00
62415    25004    481    2017-01-22 22:42:00    2017-01-22 22:42:00
62416    25004    795    2017-01-22 15:45:00    2017-01-22 15:45:00
62417    25004    591    2017-01-22 19:46:00    2017-01-22 19:46:00
62418    25005    647    2017-01-22 06:04:00    2017-01-22 06:04:00
62419    25005    663    2017-01-22 09:54:00    2017-01-22 09:54:00
62420    25005    517    2017-01-22 17:11:00    2017-01-22 17:11:00
62421    25005    551    2017-01-22 19:00:00    2017-01-22 19:00:00
62422    25005    757    2017-01-22 19:18:00    2017-01-22 19:18:00
62423    25006    637    2017-01-22 16:17:00    2017-01-22 16:17:00
62424    25006    560    2017-01-22 05:30:00    2017-01-22 05:30:00
62425    25006    836    2017-01-22 14:05:00    2017-01-22 14:05:00
62426    25006    705    2017-01-22 11:11:00    2017-01-22 11:11:00
62427    25006    793    2017-01-22 17:00:00    2017-01-22 17:00:00
62428    25007    727    2017-01-22 11:06:00    2017-01-22 11:06:00
62429    25007    808    2017-01-22 13:01:00    2017-01-22 13:01:00
62430    25007    748    2017-01-22 04:23:00    2017-01-22 04:23:00
62431    25007    915    2017-01-22 12:30:00    2017-01-22 12:30:00
62432    25007    522    2017-01-22 02:51:00    2017-01-22 02:51:00
62433    25008    896    2017-01-22 12:20:00    2017-01-22 12:20:00
62434    25008    608    2017-01-22 05:07:00    2017-01-22 05:07:00
62435    25008    935    2017-01-22 23:07:00    2017-01-22 23:07:00
62436    25008    638    2017-01-22 17:15:00    2017-01-22 17:15:00
62437    25008    596    2017-01-22 14:57:00    2017-01-22 14:57:00
62438    25009    554    2017-01-22 18:23:00    2017-01-22 18:23:00
62439    25009    692    2017-01-22 17:37:00    2017-01-22 17:37:00
62440    25009    692    2017-01-22 07:27:00    2017-01-22 07:27:00
62441    25009    949    2017-01-22 18:50:00    2017-01-22 18:50:00
62442    25009    675    2017-01-22 03:11:00    2017-01-22 03:11:00
62443    25010    563    2017-01-22 16:03:00    2017-01-22 16:03:00
62444    25010    497    2017-01-22 19:35:00    2017-01-22 19:35:00
62445    25010    942    2017-01-22 13:24:00    2017-01-22 13:24:00
62446    25010    744    2017-01-22 22:10:00    2017-01-22 22:10:00
62447    25010    838    2017-01-22 08:25:00    2017-01-22 08:25:00
62448    25011    616    2017-01-22 19:42:00    2017-01-22 19:42:00
62449    25011    777    2017-01-22 14:51:00    2017-01-22 14:51:00
62450    25011    480    2017-01-22 21:42:00    2017-01-22 21:42:00
62451    25011    535    2017-01-22 23:59:00    2017-01-22 23:59:00
62452    25011    581    2017-01-22 21:36:00    2017-01-22 21:36:00
62453    25012    761    2017-01-22 16:00:00    2017-01-22 16:00:00
62454    25012    899    2017-01-22 03:23:00    2017-01-22 03:23:00
62455    25012    616    2017-01-22 08:07:00    2017-01-22 08:07:00
62456    25012    755    2017-01-22 02:49:00    2017-01-22 02:49:00
62457    25012    536    2017-01-22 09:25:00    2017-01-22 09:25:00
62458    25013    498    2017-01-22 05:24:00    2017-01-22 05:24:00
62459    25013    817    2017-01-22 11:39:00    2017-01-22 11:39:00
62460    25013    955    2017-01-22 10:36:00    2017-01-22 10:36:00
62461    25013    836    2017-01-22 05:01:00    2017-01-22 05:01:00
62462    25013    689    2017-01-22 03:05:00    2017-01-22 03:05:00
62463    25014    797    2017-01-22 17:09:00    2017-01-22 17:09:00
62464    25014    867    2017-01-22 14:26:00    2017-01-22 14:26:00
62465    25014    815    2017-01-22 16:12:00    2017-01-22 16:12:00
62466    25014    466    2017-01-22 05:33:00    2017-01-22 05:33:00
62467    25014    778    2017-01-22 23:49:00    2017-01-22 23:49:00
62468    25015    558    2017-01-22 12:25:00    2017-01-22 12:25:00
62469    25015    771    2017-01-22 07:01:00    2017-01-22 07:01:00
62470    25015    849    2017-01-22 08:21:00    2017-01-22 08:21:00
62471    25015    817    2017-01-22 10:16:00    2017-01-22 10:16:00
62472    25015    537    2017-01-22 01:56:00    2017-01-22 01:56:00
62473    25016    710    2017-01-22 17:02:00    2017-01-22 17:02:00
62474    25016    620    2017-01-22 19:28:00    2017-01-22 19:28:00
62475    25016    837    2017-01-22 05:43:00    2017-01-22 05:43:00
62476    25016    521    2017-01-22 23:45:00    2017-01-22 23:45:00
62477    25016    746    2017-01-22 21:58:00    2017-01-22 21:58:00
62478    25017    908    2017-01-22 20:43:00    2017-01-22 20:43:00
62479    25017    859    2017-01-22 10:18:00    2017-01-22 10:18:00
62480    25017    478    2017-01-22 11:59:00    2017-01-22 11:59:00
62481    25017    670    2017-01-22 23:22:00    2017-01-22 23:22:00
62482    25017    846    2017-01-22 07:26:00    2017-01-22 07:26:00
62483    25018    933    2017-01-22 21:08:00    2017-01-22 21:08:00
62484    25018    536    2017-01-22 12:58:00    2017-01-22 12:58:00
62485    25018    562    2017-01-22 19:04:00    2017-01-22 19:04:00
62486    25018    525    2017-01-22 12:13:00    2017-01-22 12:13:00
62487    25018    547    2017-01-22 22:00:00    2017-01-22 22:00:00
62488    25019    759    2017-01-22 13:41:00    2017-01-22 13:41:00
62489    25019    485    2017-01-22 13:41:00    2017-01-22 13:41:00
62490    25019    502    2017-01-22 14:00:00    2017-01-22 14:00:00
62491    25019    466    2017-01-22 13:07:00    2017-01-22 13:07:00
62492    25019    857    2017-01-22 18:57:00    2017-01-22 18:57:00
62493    25020    925    2017-01-22 04:07:00    2017-01-22 04:07:00
62494    25020    632    2017-01-22 15:51:00    2017-01-22 15:51:00
62495    25020    492    2017-01-22 06:19:00    2017-01-22 06:19:00
62496    25020    628    2017-01-22 09:58:00    2017-01-22 09:58:00
62497    25020    949    2017-01-22 02:36:00    2017-01-22 02:36:00
62498    25021    495    2017-01-22 14:52:00    2017-01-22 14:52:00
62499    25021    953    2017-01-22 19:12:00    2017-01-22 19:12:00
62500    25021    564    2017-01-22 18:07:00    2017-01-22 18:07:00
62501    25021    792    2017-01-22 08:54:00    2017-01-22 08:54:00
62502    25021    942    2017-01-22 05:13:00    2017-01-22 05:13:00
62503    25022    756    2017-01-23 07:09:00    2017-01-23 07:09:00
62504    25022    889    2017-01-23 16:13:00    2017-01-23 16:13:00
62505    25022    789    2017-01-23 18:26:00    2017-01-23 18:26:00
62506    25022    522    2017-01-23 22:29:00    2017-01-23 22:29:00
62507    25022    859    2017-01-23 09:31:00    2017-01-23 09:31:00
62508    25023    484    2017-01-23 07:36:00    2017-01-23 07:36:00
62509    25023    593    2017-01-23 06:01:00    2017-01-23 06:01:00
62510    25023    488    2017-01-23 13:34:00    2017-01-23 13:34:00
62511    25023    622    2017-01-23 21:58:00    2017-01-23 21:58:00
62512    25023    942    2017-01-23 20:30:00    2017-01-23 20:30:00
62513    25024    505    2017-01-23 13:14:00    2017-01-23 13:14:00
62514    25024    647    2017-01-23 10:23:00    2017-01-23 10:23:00
62515    25024    489    2017-01-23 10:15:00    2017-01-23 10:15:00
62516    25024    605    2017-01-23 22:48:00    2017-01-23 22:48:00
62517    25024    696    2017-01-23 01:05:00    2017-01-23 01:05:00
62518    25025    614    2017-01-23 06:37:00    2017-01-23 06:37:00
62519    25025    584    2017-01-23 02:30:00    2017-01-23 02:30:00
62520    25025    779    2017-01-23 17:23:00    2017-01-23 17:23:00
62521    25025    897    2017-01-23 18:26:00    2017-01-23 18:26:00
62522    25025    567    2017-01-23 12:55:00    2017-01-23 12:55:00
62523    25026    654    2017-01-23 05:37:00    2017-01-23 05:37:00
62524    25026    535    2017-01-23 21:29:00    2017-01-23 21:29:00
62525    25026    878    2017-01-23 17:03:00    2017-01-23 17:03:00
62526    25026    684    2017-01-23 16:12:00    2017-01-23 16:12:00
62527    25026    864    2017-01-23 06:55:00    2017-01-23 06:55:00
62528    25027    552    2017-01-23 07:15:00    2017-01-23 07:15:00
62529    25027    899    2017-01-23 12:19:00    2017-01-23 12:19:00
62530    25027    927    2017-01-23 21:57:00    2017-01-23 21:57:00
62531    25027    793    2017-01-23 23:56:00    2017-01-23 23:56:00
62532    25027    478    2017-01-23 23:02:00    2017-01-23 23:02:00
62533    25028    842    2017-01-23 15:49:00    2017-01-23 15:49:00
62534    25028    689    2017-01-23 04:27:00    2017-01-23 04:27:00
62535    25028    897    2017-01-23 14:24:00    2017-01-23 14:24:00
62536    25028    532    2017-01-23 14:58:00    2017-01-23 14:58:00
62537    25028    756    2017-01-23 11:40:00    2017-01-23 11:40:00
62538    25029    866    2017-01-23 08:54:00    2017-01-23 08:54:00
62539    25029    830    2017-01-23 23:46:00    2017-01-23 23:46:00
62540    25029    668    2017-01-23 19:45:00    2017-01-23 19:45:00
62541    25029    818    2017-01-23 22:08:00    2017-01-23 22:08:00
62542    25029    581    2017-01-23 21:16:00    2017-01-23 21:16:00
62543    25030    942    2017-01-23 20:19:00    2017-01-23 20:19:00
62544    25030    490    2017-01-23 05:09:00    2017-01-23 05:09:00
62545    25030    916    2017-01-23 20:05:00    2017-01-23 20:05:00
62546    25030    567    2017-01-23 05:10:00    2017-01-23 05:10:00
62547    25030    941    2017-01-23 10:19:00    2017-01-23 10:19:00
62548    25031    793    2017-01-23 04:47:00    2017-01-23 04:47:00
62549    25031    809    2017-01-23 18:00:00    2017-01-23 18:00:00
62550    25031    500    2017-01-23 21:25:00    2017-01-23 21:25:00
62551    25031    581    2017-01-23 01:52:00    2017-01-23 01:52:00
62552    25031    737    2017-01-23 14:11:00    2017-01-23 14:11:00
62553    25032    888    2017-01-23 18:57:00    2017-01-23 18:57:00
62554    25032    832    2017-01-23 22:22:00    2017-01-23 22:22:00
62555    25032    649    2017-01-23 15:58:00    2017-01-23 15:58:00
62556    25032    802    2017-01-23 05:42:00    2017-01-23 05:42:00
62557    25032    708    2017-01-23 19:18:00    2017-01-23 19:18:00
62558    25033    607    2017-01-23 04:24:00    2017-01-23 04:24:00
62559    25033    650    2017-01-23 11:43:00    2017-01-23 11:43:00
62560    25033    938    2017-01-23 11:42:00    2017-01-23 11:42:00
62561    25033    876    2017-01-23 04:54:00    2017-01-23 04:54:00
62562    25033    506    2017-01-23 11:07:00    2017-01-23 11:07:00
62563    25034    735    2017-01-23 07:55:00    2017-01-23 07:55:00
62564    25034    682    2017-01-23 02:32:00    2017-01-23 02:32:00
62565    25034    911    2017-01-23 15:19:00    2017-01-23 15:19:00
62566    25034    467    2017-01-23 05:20:00    2017-01-23 05:20:00
62567    25034    613    2017-01-23 20:48:00    2017-01-23 20:48:00
62568    25035    630    2017-01-23 05:27:00    2017-01-23 05:27:00
62569    25035    747    2017-01-23 08:09:00    2017-01-23 08:09:00
62570    25035    762    2017-01-23 08:23:00    2017-01-23 08:23:00
62571    25035    611    2017-01-23 03:16:00    2017-01-23 03:16:00
62572    25035    606    2017-01-23 11:40:00    2017-01-23 11:40:00
62573    25036    758    2017-01-23 16:11:00    2017-01-23 16:11:00
62574    25036    740    2017-01-23 12:48:00    2017-01-23 12:48:00
62575    25036    846    2017-01-23 05:52:00    2017-01-23 05:52:00
62576    25036    837    2017-01-23 13:14:00    2017-01-23 13:14:00
62577    25036    724    2017-01-23 03:29:00    2017-01-23 03:29:00
62578    25037    942    2017-01-23 22:42:00    2017-01-23 22:42:00
62579    25037    483    2017-01-23 05:21:00    2017-01-23 05:21:00
62580    25037    754    2017-01-23 07:24:00    2017-01-23 07:24:00
62581    25037    582    2017-01-23 19:31:00    2017-01-23 19:31:00
62582    25037    500    2017-01-23 23:18:00    2017-01-23 23:18:00
62583    25038    702    2017-01-23 23:00:00    2017-01-23 23:00:00
62584    25038    475    2017-01-23 10:43:00    2017-01-23 10:43:00
62585    25038    604    2017-01-23 21:45:00    2017-01-23 21:45:00
62586    25038    954    2017-01-23 11:40:00    2017-01-23 11:40:00
62587    25038    816    2017-01-23 03:40:00    2017-01-23 03:40:00
62588    25039    642    2017-01-23 22:06:00    2017-01-23 22:06:00
62589    25039    516    2017-01-23 10:44:00    2017-01-23 10:44:00
62590    25039    479    2017-01-23 10:47:00    2017-01-23 10:47:00
62591    25039    611    2017-01-23 22:36:00    2017-01-23 22:36:00
62592    25039    574    2017-01-23 10:17:00    2017-01-23 10:17:00
62593    25040    590    2017-01-23 06:20:00    2017-01-23 06:20:00
62594    25040    518    2017-01-23 13:57:00    2017-01-23 13:57:00
62595    25040    894    2017-01-23 19:35:00    2017-01-23 19:35:00
62596    25040    810    2017-01-23 21:55:00    2017-01-23 21:55:00
62597    25040    901    2017-01-23 11:00:00    2017-01-23 11:00:00
62598    25041    749    2017-01-24 03:53:00    2017-01-24 03:53:00
62599    25041    923    2017-01-24 04:23:00    2017-01-24 04:23:00
62600    25041    917    2017-01-24 15:00:00    2017-01-24 15:00:00
62601    25041    798    2017-01-24 06:08:00    2017-01-24 06:08:00
62602    25041    482    2017-01-24 20:18:00    2017-01-24 20:18:00
62603    25042    594    2017-01-24 02:50:00    2017-01-24 02:50:00
62604    25042    906    2017-01-24 10:18:00    2017-01-24 10:18:00
62605    25042    812    2017-01-24 05:19:00    2017-01-24 05:19:00
62606    25042    510    2017-01-24 17:57:00    2017-01-24 17:57:00
62607    25042    711    2017-01-24 06:09:00    2017-01-24 06:09:00
62608    25043    843    2017-01-24 23:00:00    2017-01-24 23:00:00
62609    25043    817    2017-01-24 22:18:00    2017-01-24 22:18:00
62610    25043    537    2017-01-24 20:17:00    2017-01-24 20:17:00
62611    25043    495    2017-01-24 08:11:00    2017-01-24 08:11:00
62612    25043    793    2017-01-24 22:34:00    2017-01-24 22:34:00
62613    25044    604    2017-01-24 10:59:00    2017-01-24 10:59:00
62614    25044    794    2017-01-24 18:20:00    2017-01-24 18:20:00
62615    25044    665    2017-01-24 03:18:00    2017-01-24 03:18:00
62616    25044    923    2017-01-24 10:38:00    2017-01-24 10:38:00
62617    25044    838    2017-01-24 19:58:00    2017-01-24 19:58:00
62618    25045    558    2017-01-24 11:25:00    2017-01-24 11:25:00
62619    25045    763    2017-01-24 18:48:00    2017-01-24 18:48:00
62620    25045    627    2017-01-24 15:24:00    2017-01-24 15:24:00
62621    25045    627    2017-01-24 09:33:00    2017-01-24 09:33:00
62622    25045    787    2017-01-24 03:58:00    2017-01-24 03:58:00
62623    25046    537    2017-01-24 14:16:00    2017-01-24 14:16:00
62624    25046    840    2017-01-24 06:04:00    2017-01-24 06:04:00
62625    25046    850    2017-01-24 14:22:00    2017-01-24 14:22:00
62626    25046    468    2017-01-24 02:31:00    2017-01-24 02:31:00
62627    25046    679    2017-01-24 15:32:00    2017-01-24 15:32:00
62628    25047    748    2017-01-24 05:58:00    2017-01-24 05:58:00
62629    25047    669    2017-01-24 22:29:00    2017-01-24 22:29:00
62630    25047    532    2017-01-24 18:25:00    2017-01-24 18:25:00
62631    25047    464    2017-01-24 03:17:00    2017-01-24 03:17:00
62632    25047    569    2017-01-24 02:35:00    2017-01-24 02:35:00
62633    25048    501    2017-01-24 21:14:00    2017-01-24 21:14:00
62634    25048    891    2017-01-24 08:43:00    2017-01-24 08:43:00
62635    25048    708    2017-01-24 17:21:00    2017-01-24 17:21:00
62636    25048    470    2017-01-24 01:02:00    2017-01-24 01:02:00
62637    25048    520    2017-01-24 01:13:00    2017-01-24 01:13:00
62638    25049    835    2017-01-24 20:49:00    2017-01-24 20:49:00
62639    25049    584    2017-01-24 10:43:00    2017-01-24 10:43:00
62640    25049    722    2017-01-24 13:45:00    2017-01-24 13:45:00
62641    25049    676    2017-01-24 10:54:00    2017-01-24 10:54:00
62642    25049    507    2017-01-24 06:24:00    2017-01-24 06:24:00
62643    25050    708    2017-01-24 01:00:00    2017-01-24 01:00:00
62644    25050    555    2017-01-24 18:51:00    2017-01-24 18:51:00
62645    25050    961    2017-01-24 21:08:00    2017-01-24 21:08:00
62646    25050    897    2017-01-24 11:03:00    2017-01-24 11:03:00
62647    25050    528    2017-01-24 11:33:00    2017-01-24 11:33:00
62648    25051    497    2017-01-24 09:55:00    2017-01-24 09:55:00
62649    25051    625    2017-01-24 12:30:00    2017-01-24 12:30:00
62650    25051    848    2017-01-24 09:39:00    2017-01-24 09:39:00
62651    25051    525    2017-01-24 04:02:00    2017-01-24 04:02:00
62652    25051    749    2017-01-24 04:26:00    2017-01-24 04:26:00
62653    25052    663    2017-01-24 20:43:00    2017-01-24 20:43:00
62654    25052    631    2017-01-24 05:16:00    2017-01-24 05:16:00
62655    25052    603    2017-01-24 07:15:00    2017-01-24 07:15:00
62656    25052    908    2017-01-24 04:08:00    2017-01-24 04:08:00
62657    25052    769    2017-01-24 05:58:00    2017-01-24 05:58:00
62658    25053    553    2017-01-24 06:39:00    2017-01-24 06:39:00
62659    25053    739    2017-01-24 15:16:00    2017-01-24 15:16:00
62660    25053    890    2017-01-24 03:39:00    2017-01-24 03:39:00
62661    25053    945    2017-01-24 05:14:00    2017-01-24 05:14:00
62662    25053    783    2017-01-24 07:40:00    2017-01-24 07:40:00
62663    25054    777    2017-01-24 10:28:00    2017-01-24 10:28:00
62664    25054    480    2017-01-24 09:05:00    2017-01-24 09:05:00
62665    25054    956    2017-01-24 16:43:00    2017-01-24 16:43:00
62666    25054    603    2017-01-24 17:03:00    2017-01-24 17:03:00
62667    25054    580    2017-01-24 09:06:00    2017-01-24 09:06:00
62668    25055    758    2017-01-24 01:25:00    2017-01-24 01:25:00
62669    25055    596    2017-01-24 18:10:00    2017-01-24 18:10:00
62670    25055    554    2017-01-24 14:22:00    2017-01-24 14:22:00
62671    25055    774    2017-01-24 19:30:00    2017-01-24 19:30:00
62672    25055    497    2017-01-24 06:04:00    2017-01-24 06:04:00
62673    25056    522    2017-01-24 21:58:00    2017-01-24 21:58:00
62674    25056    934    2017-01-24 17:31:00    2017-01-24 17:31:00
62675    25056    765    2017-01-24 14:54:00    2017-01-24 14:54:00
62676    25056    930    2017-01-24 10:07:00    2017-01-24 10:07:00
62677    25056    606    2017-01-24 02:03:00    2017-01-24 02:03:00
62678    25057    786    2017-01-24 11:50:00    2017-01-24 11:50:00
62679    25057    960    2017-01-24 04:15:00    2017-01-24 04:15:00
62680    25057    652    2017-01-24 18:47:00    2017-01-24 18:47:00
62681    25057    940    2017-01-24 07:12:00    2017-01-24 07:12:00
62682    25057    943    2017-01-24 20:32:00    2017-01-24 20:32:00
62683    25058    727    2017-01-24 23:30:00    2017-01-24 23:30:00
62684    25058    855    2017-01-24 03:41:00    2017-01-24 03:41:00
62685    25058    610    2017-01-24 13:51:00    2017-01-24 13:51:00
62686    25058    537    2017-01-24 18:11:00    2017-01-24 18:11:00
62687    25058    477    2017-01-24 10:15:00    2017-01-24 10:15:00
62688    25059    865    2017-01-24 08:22:00    2017-01-24 08:22:00
62689    25059    694    2017-01-24 09:35:00    2017-01-24 09:35:00
62690    25059    908    2017-01-24 07:49:00    2017-01-24 07:49:00
62691    25059    528    2017-01-24 23:09:00    2017-01-24 23:09:00
62692    25059    721    2017-01-24 07:01:00    2017-01-24 07:01:00
62693    25060    736    2017-01-24 21:30:00    2017-01-24 21:30:00
62694    25060    623    2017-01-24 15:54:00    2017-01-24 15:54:00
62695    25060    516    2017-01-24 03:07:00    2017-01-24 03:07:00
62696    25060    651    2017-01-24 12:27:00    2017-01-24 12:27:00
62697    25060    762    2017-01-24 20:44:00    2017-01-24 20:44:00
62698    25061    756    2017-01-24 22:33:00    2017-01-24 22:33:00
62699    25061    515    2017-01-24 12:39:00    2017-01-24 12:39:00
62700    25061    553    2017-01-24 06:40:00    2017-01-24 06:40:00
62701    25061    765    2017-01-24 01:19:00    2017-01-24 01:19:00
62702    25061    556    2017-01-24 20:19:00    2017-01-24 20:19:00
62703    25062    681    2017-01-24 18:07:00    2017-01-24 18:07:00
62704    25062    630    2017-01-24 06:35:00    2017-01-24 06:35:00
62705    25062    570    2017-01-24 19:50:00    2017-01-24 19:50:00
62706    25062    534    2017-01-24 06:15:00    2017-01-24 06:15:00
62707    25062    852    2017-01-24 08:22:00    2017-01-24 08:22:00
62708    25063    661    2017-01-24 15:45:00    2017-01-24 15:45:00
62709    25063    893    2017-01-24 10:43:00    2017-01-24 10:43:00
62710    25063    553    2017-01-24 13:00:00    2017-01-24 13:00:00
62711    25063    595    2017-01-24 15:04:00    2017-01-24 15:04:00
62712    25063    594    2017-01-24 10:02:00    2017-01-24 10:02:00
62713    25064    566    2017-01-24 04:23:00    2017-01-24 04:23:00
62714    25064    570    2017-01-24 16:19:00    2017-01-24 16:19:00
62715    25064    813    2017-01-24 19:55:00    2017-01-24 19:55:00
62716    25064    629    2017-01-24 22:22:00    2017-01-24 22:22:00
62717    25064    593    2017-01-24 18:08:00    2017-01-24 18:08:00
62718    25065    490    2017-01-24 19:17:00    2017-01-24 19:17:00
62719    25065    868    2017-01-24 23:40:00    2017-01-24 23:40:00
62720    25065    807    2017-01-24 14:12:00    2017-01-24 14:12:00
62721    25065    496    2017-01-24 18:35:00    2017-01-24 18:35:00
62722    25065    539    2017-01-24 09:55:00    2017-01-24 09:55:00
62723    25066    470    2017-01-24 12:41:00    2017-01-24 12:41:00
62724    25066    735    2017-01-24 17:16:00    2017-01-24 17:16:00
62725    25066    685    2017-01-24 21:36:00    2017-01-24 21:36:00
62726    25066    753    2017-01-24 02:36:00    2017-01-24 02:36:00
62727    25066    854    2017-01-24 16:29:00    2017-01-24 16:29:00
62728    25067    491    2017-01-24 19:46:00    2017-01-24 19:46:00
62729    25067    927    2017-01-24 03:11:00    2017-01-24 03:11:00
62730    25067    800    2017-01-24 19:08:00    2017-01-24 19:08:00
62731    25067    897    2017-01-24 10:59:00    2017-01-24 10:59:00
62732    25067    814    2017-01-24 21:52:00    2017-01-24 21:52:00
62733    25068    520    2017-01-24 07:33:00    2017-01-24 07:33:00
62734    25068    746    2017-01-24 10:22:00    2017-01-24 10:22:00
62735    25068    713    2017-01-24 22:36:00    2017-01-24 22:36:00
62736    25068    601    2017-01-24 03:19:00    2017-01-24 03:19:00
62737    25068    637    2017-01-24 09:39:00    2017-01-24 09:39:00
62738    25069    558    2017-01-24 15:02:00    2017-01-24 15:02:00
62739    25069    529    2017-01-24 06:07:00    2017-01-24 06:07:00
62740    25069    497    2017-01-24 03:10:00    2017-01-24 03:10:00
62741    25069    646    2017-01-24 04:41:00    2017-01-24 04:41:00
62742    25069    535    2017-01-24 08:47:00    2017-01-24 08:47:00
62743    25070    927    2017-01-24 08:18:00    2017-01-24 08:18:00
62744    25070    909    2017-01-24 12:28:00    2017-01-24 12:28:00
62745    25070    614    2017-01-24 16:35:00    2017-01-24 16:35:00
62746    25070    563    2017-01-24 05:38:00    2017-01-24 05:38:00
62747    25070    827    2017-01-24 17:00:00    2017-01-24 17:00:00
62748    25071    465    2017-01-24 14:31:00    2017-01-24 14:31:00
62749    25071    762    2017-01-24 03:45:00    2017-01-24 03:45:00
62750    25071    645    2017-01-24 07:53:00    2017-01-24 07:53:00
62751    25071    682    2017-01-24 23:31:00    2017-01-24 23:31:00
62752    25071    790    2017-01-24 13:47:00    2017-01-24 13:47:00
62753    25072    685    2017-01-24 07:17:00    2017-01-24 07:17:00
62754    25072    805    2017-01-24 21:18:00    2017-01-24 21:18:00
62755    25072    506    2017-01-24 10:53:00    2017-01-24 10:53:00
62756    25072    662    2017-01-24 18:51:00    2017-01-24 18:51:00
62757    25072    721    2017-01-24 05:58:00    2017-01-24 05:58:00
62758    25073    937    2017-01-24 04:08:00    2017-01-24 04:08:00
62759    25073    807    2017-01-24 22:05:00    2017-01-24 22:05:00
62760    25073    609    2017-01-24 11:46:00    2017-01-24 11:46:00
62761    25073    708    2017-01-24 20:30:00    2017-01-24 20:30:00
62762    25073    867    2017-01-24 13:11:00    2017-01-24 13:11:00
62763    25074    488    2017-01-24 06:33:00    2017-01-24 06:33:00
62764    25074    597    2017-01-24 12:11:00    2017-01-24 12:11:00
62765    25074    851    2017-01-24 12:07:00    2017-01-24 12:07:00
62766    25074    743    2017-01-24 17:35:00    2017-01-24 17:35:00
62767    25074    918    2017-01-24 11:53:00    2017-01-24 11:53:00
62768    25075    953    2017-01-24 16:39:00    2017-01-24 16:39:00
62769    25075    759    2017-01-24 18:44:00    2017-01-24 18:44:00
62770    25075    895    2017-01-24 07:29:00    2017-01-24 07:29:00
62771    25075    661    2017-01-24 06:30:00    2017-01-24 06:30:00
62772    25075    876    2017-01-24 01:02:00    2017-01-24 01:02:00
62773    25076    946    2017-01-24 11:25:00    2017-01-24 11:25:00
62774    25076    587    2017-01-24 07:13:00    2017-01-24 07:13:00
62775    25076    502    2017-01-24 09:23:00    2017-01-24 09:23:00
62776    25076    690    2017-01-24 03:36:00    2017-01-24 03:36:00
62777    25076    720    2017-01-24 19:18:00    2017-01-24 19:18:00
62778    25077    602    2017-01-24 04:27:00    2017-01-24 04:27:00
62779    25077    848    2017-01-24 10:06:00    2017-01-24 10:06:00
62780    25077    478    2017-01-24 20:51:00    2017-01-24 20:51:00
62781    25077    519    2017-01-24 13:50:00    2017-01-24 13:50:00
62782    25077    541    2017-01-24 10:34:00    2017-01-24 10:34:00
62783    25078    749    2017-01-24 11:50:00    2017-01-24 11:50:00
62784    25078    782    2017-01-24 01:56:00    2017-01-24 01:56:00
62785    25078    859    2017-01-24 06:29:00    2017-01-24 06:29:00
62786    25078    489    2017-01-24 20:18:00    2017-01-24 20:18:00
62787    25078    556    2017-01-24 08:51:00    2017-01-24 08:51:00
62788    25079    730    2017-01-24 06:04:00    2017-01-24 06:04:00
62789    25079    920    2017-01-24 11:56:00    2017-01-24 11:56:00
62790    25079    839    2017-01-24 08:25:00    2017-01-24 08:25:00
62791    25079    651    2017-01-24 20:21:00    2017-01-24 20:21:00
62792    25079    607    2017-01-24 01:58:00    2017-01-24 01:58:00
62793    25080    488    2017-01-24 20:44:00    2017-01-24 20:44:00
62794    25080    630    2017-01-24 02:56:00    2017-01-24 02:56:00
62795    25080    527    2017-01-24 08:07:00    2017-01-24 08:07:00
62796    25080    555    2017-01-24 01:04:00    2017-01-24 01:04:00
62797    25080    844    2017-01-24 16:06:00    2017-01-24 16:06:00
62798    25081    841    2017-01-24 17:19:00    2017-01-24 17:19:00
62799    25081    744    2017-01-24 04:55:00    2017-01-24 04:55:00
62800    25081    773    2017-01-24 20:10:00    2017-01-24 20:10:00
62801    25081    846    2017-01-24 07:34:00    2017-01-24 07:34:00
62802    25081    841    2017-01-24 15:31:00    2017-01-24 15:31:00
62803    25082    650    2017-01-24 17:16:00    2017-01-24 17:16:00
62804    25082    900    2017-01-24 07:34:00    2017-01-24 07:34:00
62805    25082    815    2017-01-24 18:35:00    2017-01-24 18:35:00
62806    25082    842    2017-01-24 17:50:00    2017-01-24 17:50:00
62807    25082    575    2017-01-24 07:14:00    2017-01-24 07:14:00
62808    25083    564    2017-01-24 15:15:00    2017-01-24 15:15:00
62809    25083    748    2017-01-24 04:41:00    2017-01-24 04:41:00
62810    25083    620    2017-01-24 23:44:00    2017-01-24 23:44:00
62811    25083    583    2017-01-24 01:39:00    2017-01-24 01:39:00
62812    25083    900    2017-01-24 21:45:00    2017-01-24 21:45:00
62813    25084    550    2017-01-24 15:50:00    2017-01-24 15:50:00
62814    25084    810    2017-01-24 17:53:00    2017-01-24 17:53:00
62815    25084    828    2017-01-24 02:00:00    2017-01-24 02:00:00
62816    25084    782    2017-01-24 01:51:00    2017-01-24 01:51:00
62817    25084    578    2017-01-24 01:02:00    2017-01-24 01:02:00
62818    25085    882    2017-01-24 09:56:00    2017-01-24 09:56:00
62819    25085    794    2017-01-24 05:18:00    2017-01-24 05:18:00
62820    25085    558    2017-01-24 17:28:00    2017-01-24 17:28:00
62821    25085    593    2017-01-24 04:02:00    2017-01-24 04:02:00
62822    25085    496    2017-01-24 17:36:00    2017-01-24 17:36:00
62823    25086    490    2017-01-24 06:35:00    2017-01-24 06:35:00
62824    25086    698    2017-01-24 20:18:00    2017-01-24 20:18:00
62825    25086    826    2017-01-24 18:43:00    2017-01-24 18:43:00
62826    25086    830    2017-01-24 04:49:00    2017-01-24 04:49:00
62827    25086    880    2017-01-24 21:43:00    2017-01-24 21:43:00
62828    25087    604    2017-01-24 18:59:00    2017-01-24 18:59:00
62829    25087    628    2017-01-24 17:28:00    2017-01-24 17:28:00
62830    25087    588    2017-01-24 17:09:00    2017-01-24 17:09:00
62831    25087    783    2017-01-24 21:07:00    2017-01-24 21:07:00
62832    25087    629    2017-01-24 06:16:00    2017-01-24 06:16:00
62833    25088    633    2017-01-24 20:22:00    2017-01-24 20:22:00
62834    25088    646    2017-01-24 06:13:00    2017-01-24 06:13:00
62835    25088    661    2017-01-24 17:00:00    2017-01-24 17:00:00
62836    25088    767    2017-01-24 19:12:00    2017-01-24 19:12:00
62837    25088    472    2017-01-24 16:12:00    2017-01-24 16:12:00
62838    25089    705    2017-01-24 16:51:00    2017-01-24 16:51:00
62839    25089    518    2017-01-24 09:35:00    2017-01-24 09:35:00
62840    25089    853    2017-01-24 13:18:00    2017-01-24 13:18:00
62841    25089    861    2017-01-24 22:29:00    2017-01-24 22:29:00
62842    25089    688    2017-01-24 17:53:00    2017-01-24 17:53:00
62843    25090    634    2017-01-24 13:19:00    2017-01-24 13:19:00
62844    25090    521    2017-01-24 22:04:00    2017-01-24 22:04:00
62845    25090    554    2017-01-24 01:42:00    2017-01-24 01:42:00
62846    25090    876    2017-01-24 19:11:00    2017-01-24 19:11:00
62847    25090    668    2017-01-24 23:25:00    2017-01-24 23:25:00
62848    25091    642    2017-01-24 23:05:00    2017-01-24 23:05:00
62849    25091    495    2017-01-24 04:10:00    2017-01-24 04:10:00
62850    25091    803    2017-01-24 02:07:00    2017-01-24 02:07:00
62851    25091    612    2017-01-24 22:03:00    2017-01-24 22:03:00
62852    25091    842    2017-01-24 11:25:00    2017-01-24 11:25:00
62853    25092    473    2017-01-24 21:17:00    2017-01-24 21:17:00
62854    25092    482    2017-01-24 16:41:00    2017-01-24 16:41:00
62855    25092    611    2017-01-24 18:40:00    2017-01-24 18:40:00
62856    25092    876    2017-01-24 06:24:00    2017-01-24 06:24:00
62857    25092    852    2017-01-24 22:30:00    2017-01-24 22:30:00
62858    25093    478    2017-01-24 01:21:00    2017-01-24 01:21:00
62859    25093    861    2017-01-24 04:54:00    2017-01-24 04:54:00
62860    25093    731    2017-01-24 22:48:00    2017-01-24 22:48:00
62861    25093    508    2017-01-24 23:27:00    2017-01-24 23:27:00
62862    25093    573    2017-01-24 11:34:00    2017-01-24 11:34:00
62863    25094    486    2017-01-24 12:18:00    2017-01-24 12:18:00
62864    25094    837    2017-01-24 23:02:00    2017-01-24 23:02:00
62865    25094    488    2017-01-24 04:07:00    2017-01-24 04:07:00
62866    25094    811    2017-01-24 04:54:00    2017-01-24 04:54:00
62867    25094    924    2017-01-24 20:54:00    2017-01-24 20:54:00
62868    25095    644    2017-01-24 21:18:00    2017-01-24 21:18:00
62869    25095    669    2017-01-24 17:15:00    2017-01-24 17:15:00
62870    25095    788    2017-01-24 09:03:00    2017-01-24 09:03:00
62871    25095    841    2017-01-24 18:22:00    2017-01-24 18:22:00
62872    25095    602    2017-01-24 22:17:00    2017-01-24 22:17:00
62873    25096    842    2017-01-24 06:39:00    2017-01-24 06:39:00
62874    25096    501    2017-01-24 11:42:00    2017-01-24 11:42:00
62875    25096    489    2017-01-24 04:50:00    2017-01-24 04:50:00
62876    25096    887    2017-01-24 20:40:00    2017-01-24 20:40:00
62877    25096    645    2017-01-24 06:40:00    2017-01-24 06:40:00
62878    25097    957    2017-01-24 11:20:00    2017-01-24 11:20:00
62879    25097    871    2017-01-24 13:01:00    2017-01-24 13:01:00
62880    25097    605    2017-01-24 17:45:00    2017-01-24 17:45:00
62881    25097    929    2017-01-24 12:30:00    2017-01-24 12:30:00
62882    25097    680    2017-01-24 13:37:00    2017-01-24 13:37:00
62883    25098    682    2017-01-24 16:48:00    2017-01-24 16:48:00
62884    25098    464    2017-01-24 10:12:00    2017-01-24 10:12:00
62885    25098    650    2017-01-24 05:54:00    2017-01-24 05:54:00
62886    25098    599    2017-01-24 11:34:00    2017-01-24 11:34:00
62887    25098    813    2017-01-24 21:25:00    2017-01-24 21:25:00
62888    25099    934    2017-01-24 19:41:00    2017-01-24 19:41:00
62889    25099    592    2017-01-24 10:45:00    2017-01-24 10:45:00
62890    25099    957    2017-01-24 05:32:00    2017-01-24 05:32:00
62891    25099    773    2017-01-24 16:28:00    2017-01-24 16:28:00
62892    25099    686    2017-01-24 19:54:00    2017-01-24 19:54:00
62893    25100    821    2017-01-24 14:10:00    2017-01-24 14:10:00
62894    25100    899    2017-01-24 02:24:00    2017-01-24 02:24:00
62895    25100    933    2017-01-24 16:46:00    2017-01-24 16:46:00
62896    25100    529    2017-01-24 05:01:00    2017-01-24 05:01:00
62897    25100    874    2017-01-24 06:25:00    2017-01-24 06:25:00
62898    25101    676    2017-01-24 05:14:00    2017-01-24 05:14:00
62899    25101    639    2017-01-24 21:44:00    2017-01-24 21:44:00
62900    25101    625    2017-01-24 17:49:00    2017-01-24 17:49:00
62901    25101    883    2017-01-24 15:13:00    2017-01-24 15:13:00
62902    25101    481    2017-01-24 13:12:00    2017-01-24 13:12:00
62903    25102    733    2017-01-24 15:52:00    2017-01-24 15:52:00
62904    25102    610    2017-01-24 16:39:00    2017-01-24 16:39:00
62905    25102    620    2017-01-24 08:27:00    2017-01-24 08:27:00
62906    25102    531    2017-01-24 17:49:00    2017-01-24 17:49:00
62907    25102    686    2017-01-24 06:39:00    2017-01-24 06:39:00
62908    25103    913    2017-01-24 07:28:00    2017-01-24 07:28:00
62909    25103    903    2017-01-24 22:44:00    2017-01-24 22:44:00
62910    25103    703    2017-01-24 13:53:00    2017-01-24 13:53:00
62911    25103    866    2017-01-24 01:11:00    2017-01-24 01:11:00
62912    25103    763    2017-01-24 08:50:00    2017-01-24 08:50:00
62913    25104    577    2017-01-24 08:12:00    2017-01-24 08:12:00
62914    25104    617    2017-01-24 13:58:00    2017-01-24 13:58:00
62915    25104    530    2017-01-24 21:44:00    2017-01-24 21:44:00
62916    25104    513    2017-01-24 19:57:00    2017-01-24 19:57:00
62917    25104    805    2017-01-24 13:45:00    2017-01-24 13:45:00
62918    25105    710    2017-01-24 03:54:00    2017-01-24 03:54:00
62919    25105    886    2017-01-24 19:56:00    2017-01-24 19:56:00
62920    25105    541    2017-01-24 22:08:00    2017-01-24 22:08:00
62921    25105    828    2017-01-24 07:19:00    2017-01-24 07:19:00
62922    25105    667    2017-01-24 07:17:00    2017-01-24 07:17:00
62923    25106    486    2017-01-24 19:21:00    2017-01-24 19:21:00
62924    25106    828    2017-01-24 04:55:00    2017-01-24 04:55:00
62925    25106    951    2017-01-24 12:22:00    2017-01-24 12:22:00
62926    25106    553    2017-01-24 09:49:00    2017-01-24 09:49:00
62927    25106    591    2017-01-24 22:26:00    2017-01-24 22:26:00
62928    25107    668    2017-01-24 12:59:00    2017-01-24 12:59:00
62929    25107    818    2017-01-24 06:46:00    2017-01-24 06:46:00
62930    25107    842    2017-01-24 07:42:00    2017-01-24 07:42:00
62931    25107    574    2017-01-24 08:29:00    2017-01-24 08:29:00
62932    25107    917    2017-01-24 01:37:00    2017-01-24 01:37:00
62933    25108    693    2017-01-24 19:09:00    2017-01-24 19:09:00
62934    25108    822    2017-01-24 09:38:00    2017-01-24 09:38:00
62935    25108    470    2017-01-24 13:30:00    2017-01-24 13:30:00
62936    25108    791    2017-01-24 06:12:00    2017-01-24 06:12:00
62937    25108    760    2017-01-24 22:34:00    2017-01-24 22:34:00
62938    25109    787    2017-01-24 04:33:00    2017-01-24 04:33:00
62939    25109    599    2017-01-24 12:56:00    2017-01-24 12:56:00
62940    25109    664    2017-01-24 20:30:00    2017-01-24 20:30:00
62941    25109    939    2017-01-24 18:00:00    2017-01-24 18:00:00
62942    25109    787    2017-01-24 03:35:00    2017-01-24 03:35:00
62943    25110    676    2017-01-24 17:06:00    2017-01-24 17:06:00
62944    25110    473    2017-01-24 15:03:00    2017-01-24 15:03:00
62945    25110    755    2017-01-24 22:06:00    2017-01-24 22:06:00
62946    25110    663    2017-01-24 16:48:00    2017-01-24 16:48:00
62947    25110    561    2017-01-24 18:14:00    2017-01-24 18:14:00
62948    25111    673    2017-01-24 17:33:00    2017-01-24 17:33:00
62949    25111    713    2017-01-24 08:20:00    2017-01-24 08:20:00
62950    25111    821    2017-01-24 04:30:00    2017-01-24 04:30:00
62951    25111    791    2017-01-24 19:15:00    2017-01-24 19:15:00
62952    25111    865    2017-01-24 21:29:00    2017-01-24 21:29:00
62953    25112    905    2017-01-24 12:44:00    2017-01-24 12:44:00
62954    25112    941    2017-01-24 09:17:00    2017-01-24 09:17:00
62955    25112    896    2017-01-24 07:16:00    2017-01-24 07:16:00
62956    25112    751    2017-01-24 08:41:00    2017-01-24 08:41:00
62957    25112    535    2017-01-24 23:37:00    2017-01-24 23:37:00
62958    25113    654    2017-01-24 23:29:00    2017-01-24 23:29:00
62959    25113    707    2017-01-24 16:12:00    2017-01-24 16:12:00
62960    25113    887    2017-01-24 08:07:00    2017-01-24 08:07:00
62961    25113    786    2017-01-24 05:20:00    2017-01-24 05:20:00
62962    25113    870    2017-01-24 07:29:00    2017-01-24 07:29:00
62963    25114    949    2017-01-24 03:00:00    2017-01-24 03:00:00
62964    25114    898    2017-01-24 02:58:00    2017-01-24 02:58:00
62965    25114    872    2017-01-24 06:43:00    2017-01-24 06:43:00
62966    25114    845    2017-01-24 11:28:00    2017-01-24 11:28:00
62967    25114    887    2017-01-24 08:00:00    2017-01-24 08:00:00
62968    25115    692    2017-01-24 06:26:00    2017-01-24 06:26:00
62969    25115    797    2017-01-24 18:49:00    2017-01-24 18:49:00
62970    25115    598    2017-01-24 07:07:00    2017-01-24 07:07:00
62971    25115    668    2017-01-24 10:01:00    2017-01-24 10:01:00
62972    25115    482    2017-01-24 08:21:00    2017-01-24 08:21:00
62973    25116    682    2017-01-24 06:36:00    2017-01-24 06:36:00
62974    25116    770    2017-01-24 02:12:00    2017-01-24 02:12:00
62975    25116    538    2017-01-24 08:45:00    2017-01-24 08:45:00
62976    25116    803    2017-01-24 09:56:00    2017-01-24 09:56:00
62977    25116    711    2017-01-24 02:46:00    2017-01-24 02:46:00
62978    25117    835    2017-01-24 01:25:00    2017-01-24 01:25:00
62979    25117    638    2017-01-24 09:21:00    2017-01-24 09:21:00
62980    25117    922    2017-01-24 09:31:00    2017-01-24 09:31:00
62981    25117    941    2017-01-24 04:12:00    2017-01-24 04:12:00
62982    25117    551    2017-01-24 14:20:00    2017-01-24 14:20:00
62983    25118    800    2017-01-24 10:20:00    2017-01-24 10:20:00
62984    25118    542    2017-01-24 13:05:00    2017-01-24 13:05:00
62985    25118    529    2017-01-24 03:01:00    2017-01-24 03:01:00
62986    25118    809    2017-01-24 09:58:00    2017-01-24 09:58:00
62987    25118    507    2017-01-24 12:31:00    2017-01-24 12:31:00
62988    25119    660    2017-01-24 09:28:00    2017-01-24 09:28:00
62989    25119    582    2017-01-24 02:08:00    2017-01-24 02:08:00
62990    25119    714    2017-01-24 19:09:00    2017-01-24 19:09:00
62991    25119    756    2017-01-24 13:55:00    2017-01-24 13:55:00
62992    25119    870    2017-01-24 02:34:00    2017-01-24 02:34:00
62993    25120    827    2017-01-24 15:18:00    2017-01-24 15:18:00
62994    25120    773    2017-01-24 16:27:00    2017-01-24 16:27:00
62995    25120    766    2017-01-24 19:47:00    2017-01-24 19:47:00
62996    25120    953    2017-01-24 16:36:00    2017-01-24 16:36:00
62997    25120    705    2017-01-24 11:41:00    2017-01-24 11:41:00
62998    25121    577    2017-01-24 01:34:00    2017-01-24 01:34:00
62999    25121    616    2017-01-24 07:09:00    2017-01-24 07:09:00
63000    25121    813    2017-01-24 16:32:00    2017-01-24 16:32:00
63001    25121    552    2017-01-24 21:05:00    2017-01-24 21:05:00
63002    25121    594    2017-01-24 04:49:00    2017-01-24 04:49:00
63003    25122    490    2017-01-24 14:52:00    2017-01-24 14:52:00
63004    25122    848    2017-01-24 17:49:00    2017-01-24 17:49:00
63005    25122    688    2017-01-24 13:34:00    2017-01-24 13:34:00
63006    25122    488    2017-01-24 02:57:00    2017-01-24 02:57:00
63007    25122    589    2017-01-24 10:37:00    2017-01-24 10:37:00
63008    25123    550    2017-01-24 15:55:00    2017-01-24 15:55:00
63009    25123    955    2017-01-24 08:49:00    2017-01-24 08:49:00
63010    25123    560    2017-01-24 19:40:00    2017-01-24 19:40:00
63011    25123    700    2017-01-24 16:35:00    2017-01-24 16:35:00
63012    25123    840    2017-01-24 05:12:00    2017-01-24 05:12:00
63013    25124    809    2017-01-24 05:23:00    2017-01-24 05:23:00
63014    25124    668    2017-01-24 23:19:00    2017-01-24 23:19:00
63015    25124    916    2017-01-24 08:10:00    2017-01-24 08:10:00
63016    25124    614    2017-01-24 19:47:00    2017-01-24 19:47:00
63017    25124    617    2017-01-24 01:42:00    2017-01-24 01:42:00
63018    25125    814    2017-01-24 19:00:00    2017-01-24 19:00:00
63019    25125    672    2017-01-24 14:27:00    2017-01-24 14:27:00
63020    25125    729    2017-01-24 20:37:00    2017-01-24 20:37:00
63021    25125    595    2017-01-24 08:06:00    2017-01-24 08:06:00
63022    25125    484    2017-01-24 05:49:00    2017-01-24 05:49:00
63023    25126    518    2017-01-24 11:01:00    2017-01-24 11:01:00
63024    25126    896    2017-01-24 13:29:00    2017-01-24 13:29:00
63025    25126    659    2017-01-24 20:44:00    2017-01-24 20:44:00
63026    25126    851    2017-01-24 04:00:00    2017-01-24 04:00:00
63027    25126    960    2017-01-24 21:22:00    2017-01-24 21:22:00
63028    25127    769    2017-01-24 21:47:00    2017-01-24 21:47:00
63029    25127    681    2017-01-24 02:00:00    2017-01-24 02:00:00
63030    25127    897    2017-01-24 21:29:00    2017-01-24 21:29:00
63031    25127    644    2017-01-24 08:38:00    2017-01-24 08:38:00
63032    25127    469    2017-01-24 19:00:00    2017-01-24 19:00:00
63033    25128    717    2017-01-24 03:20:00    2017-01-24 03:20:00
63034    25128    832    2017-01-24 03:39:00    2017-01-24 03:39:00
63035    25128    542    2017-01-24 16:51:00    2017-01-24 16:51:00
63036    25128    526    2017-01-24 03:55:00    2017-01-24 03:55:00
63037    25128    520    2017-01-24 17:51:00    2017-01-24 17:51:00
63038    25129    906    2017-01-24 16:27:00    2017-01-24 16:27:00
63039    25129    609    2017-01-24 02:19:00    2017-01-24 02:19:00
63040    25129    538    2017-01-24 21:41:00    2017-01-24 21:41:00
63041    25129    945    2017-01-24 10:16:00    2017-01-24 10:16:00
63042    25129    701    2017-01-24 01:28:00    2017-01-24 01:28:00
63043    25130    744    2017-01-24 21:20:00    2017-01-24 21:20:00
63044    25130    545    2017-01-24 15:59:00    2017-01-24 15:59:00
63045    25130    854    2017-01-24 23:09:00    2017-01-24 23:09:00
63046    25130    779    2017-01-24 13:45:00    2017-01-24 13:45:00
63047    25130    581    2017-01-24 15:46:00    2017-01-24 15:46:00
63048    25131    855    2017-01-24 02:10:00    2017-01-24 02:10:00
63049    25131    504    2017-01-24 07:29:00    2017-01-24 07:29:00
63050    25131    851    2017-01-24 08:23:00    2017-01-24 08:23:00
63051    25131    587    2017-01-24 22:29:00    2017-01-24 22:29:00
63052    25131    596    2017-01-24 21:10:00    2017-01-24 21:10:00
63053    25132    477    2017-01-24 14:48:00    2017-01-24 14:48:00
63054    25132    722    2017-01-24 21:06:00    2017-01-24 21:06:00
63055    25132    845    2017-01-24 19:48:00    2017-01-24 19:48:00
63056    25132    592    2017-01-24 09:43:00    2017-01-24 09:43:00
63057    25132    815    2017-01-24 03:48:00    2017-01-24 03:48:00
63058    25133    727    2017-01-24 06:40:00    2017-01-24 06:40:00
63059    25133    745    2017-01-24 06:30:00    2017-01-24 06:30:00
63060    25133    630    2017-01-24 01:54:00    2017-01-24 01:54:00
63061    25133    821    2017-01-24 16:08:00    2017-01-24 16:08:00
63062    25133    602    2017-01-24 22:36:00    2017-01-24 22:36:00
63063    25134    905    2017-01-24 20:11:00    2017-01-24 20:11:00
63064    25134    514    2017-01-24 04:09:00    2017-01-24 04:09:00
63065    25134    508    2017-01-24 12:46:00    2017-01-24 12:46:00
63066    25134    534    2017-01-24 09:29:00    2017-01-24 09:29:00
63067    25134    463    2017-01-24 12:14:00    2017-01-24 12:14:00
63068    25135    775    2017-01-24 03:59:00    2017-01-24 03:59:00
63069    25135    540    2017-01-24 16:02:00    2017-01-24 16:02:00
63070    25135    855    2017-01-24 10:04:00    2017-01-24 10:04:00
63071    25135    813    2017-01-24 05:38:00    2017-01-24 05:38:00
63072    25135    661    2017-01-24 23:16:00    2017-01-24 23:16:00
63073    25136    638    2017-01-24 02:43:00    2017-01-24 02:43:00
63074    25136    726    2017-01-24 19:03:00    2017-01-24 19:03:00
63075    25136    814    2017-01-24 11:55:00    2017-01-24 11:55:00
63076    25136    668    2017-01-24 14:51:00    2017-01-24 14:51:00
63077    25136    756    2017-01-24 19:48:00    2017-01-24 19:48:00
63078    25137    571    2017-01-24 15:53:00    2017-01-24 15:53:00
63079    25137    768    2017-01-24 06:59:00    2017-01-24 06:59:00
63080    25137    558    2017-01-24 19:01:00    2017-01-24 19:01:00
63081    25137    794    2017-01-24 04:10:00    2017-01-24 04:10:00
63082    25137    505    2017-01-24 14:44:00    2017-01-24 14:44:00
63083    25138    869    2017-01-24 21:21:00    2017-01-24 21:21:00
63084    25138    946    2017-01-24 23:39:00    2017-01-24 23:39:00
63085    25138    804    2017-01-24 22:01:00    2017-01-24 22:01:00
63086    25138    679    2017-01-24 11:00:00    2017-01-24 11:00:00
63087    25138    955    2017-01-24 08:12:00    2017-01-24 08:12:00
63088    25139    919    2017-01-24 19:17:00    2017-01-24 19:17:00
63089    25139    740    2017-01-24 06:42:00    2017-01-24 06:42:00
63090    25139    911    2017-01-24 08:15:00    2017-01-24 08:15:00
63091    25139    841    2017-01-24 07:48:00    2017-01-24 07:48:00
63092    25139    829    2017-01-24 22:36:00    2017-01-24 22:36:00
63093    25140    600    2017-01-24 14:58:00    2017-01-24 14:58:00
63094    25140    896    2017-01-24 11:51:00    2017-01-24 11:51:00
63095    25140    931    2017-01-24 01:37:00    2017-01-24 01:37:00
63096    25140    856    2017-01-24 19:40:00    2017-01-24 19:40:00
63097    25140    800    2017-01-24 04:29:00    2017-01-24 04:29:00
63098    25141    474    2017-01-25 18:22:00    2017-01-25 18:22:00
63099    25141    704    2017-01-25 18:25:00    2017-01-25 18:25:00
63100    25141    785    2017-01-25 02:00:00    2017-01-25 02:00:00
63101    25141    804    2017-01-25 13:51:00    2017-01-25 13:51:00
63102    25141    684    2017-01-25 14:38:00    2017-01-25 14:38:00
63103    25142    528    2017-01-25 06:19:00    2017-01-25 06:19:00
63104    25142    908    2017-01-25 14:22:00    2017-01-25 14:22:00
63105    25142    534    2017-01-25 08:10:00    2017-01-25 08:10:00
63106    25142    863    2017-01-25 17:33:00    2017-01-25 17:33:00
63107    25142    667    2017-01-25 15:09:00    2017-01-25 15:09:00
63108    25143    866    2017-01-25 20:35:00    2017-01-25 20:35:00
63109    25143    703    2017-01-25 04:58:00    2017-01-25 04:58:00
63110    25143    871    2017-01-25 07:21:00    2017-01-25 07:21:00
63111    25143    487    2017-01-25 11:44:00    2017-01-25 11:44:00
63112    25143    557    2017-01-25 08:11:00    2017-01-25 08:11:00
63113    25144    494    2017-01-25 11:53:00    2017-01-25 11:53:00
63114    25144    594    2017-01-25 13:23:00    2017-01-25 13:23:00
63115    25144    549    2017-01-25 01:18:00    2017-01-25 01:18:00
63116    25144    787    2017-01-25 07:57:00    2017-01-25 07:57:00
63117    25144    958    2017-01-25 17:22:00    2017-01-25 17:22:00
63118    25145    851    2017-01-25 13:07:00    2017-01-25 13:07:00
63119    25145    639    2017-01-25 07:01:00    2017-01-25 07:01:00
63120    25145    681    2017-01-25 20:32:00    2017-01-25 20:32:00
63121    25145    741    2017-01-25 02:14:00    2017-01-25 02:14:00
63122    25145    936    2017-01-25 17:45:00    2017-01-25 17:45:00
63123    25146    690    2017-01-25 18:59:00    2017-01-25 18:59:00
63124    25146    938    2017-01-25 18:45:00    2017-01-25 18:45:00
63125    25146    582    2017-01-25 17:36:00    2017-01-25 17:36:00
63126    25146    683    2017-01-25 12:27:00    2017-01-25 12:27:00
63127    25146    927    2017-01-25 17:43:00    2017-01-25 17:43:00
63128    25147    565    2017-01-25 19:36:00    2017-01-25 19:36:00
63129    25147    582    2017-01-25 03:31:00    2017-01-25 03:31:00
63130    25147    492    2017-01-25 02:46:00    2017-01-25 02:46:00
63131    25147    795    2017-01-25 20:36:00    2017-01-25 20:36:00
63132    25147    718    2017-01-26 00:00:00    2017-01-26 00:00:00
63133    25148    638    2017-01-25 08:50:00    2017-01-25 08:50:00
63134    25148    769    2017-01-25 09:55:00    2017-01-25 09:55:00
63135    25148    554    2017-01-25 06:59:00    2017-01-25 06:59:00
63136    25148    938    2017-01-25 17:37:00    2017-01-25 17:37:00
63137    25148    521    2017-01-25 11:58:00    2017-01-25 11:58:00
63138    25149    801    2017-01-25 17:45:00    2017-01-25 17:45:00
63139    25149    504    2017-01-25 10:58:00    2017-01-25 10:58:00
63140    25149    896    2017-01-25 12:14:00    2017-01-25 12:14:00
63141    25149    841    2017-01-25 17:05:00    2017-01-25 17:05:00
63142    25149    748    2017-01-25 15:43:00    2017-01-25 15:43:00
63143    25150    956    2017-01-25 05:19:00    2017-01-25 05:19:00
63144    25150    511    2017-01-25 12:00:00    2017-01-25 12:00:00
63145    25150    788    2017-01-25 12:30:00    2017-01-25 12:30:00
63146    25150    770    2017-01-25 20:25:00    2017-01-25 20:25:00
63147    25150    645    2017-01-25 12:22:00    2017-01-25 12:22:00
63148    25151    806    2017-01-25 15:42:00    2017-01-25 15:42:00
63149    25151    468    2017-01-25 23:26:00    2017-01-25 23:26:00
63150    25151    902    2017-01-25 04:26:00    2017-01-25 04:26:00
63151    25151    686    2017-01-25 05:58:00    2017-01-25 05:58:00
63152    25151    802    2017-01-25 17:35:00    2017-01-25 17:35:00
63153    25152    662    2017-01-25 04:20:00    2017-01-25 04:20:00
63154    25152    776    2017-01-25 20:31:00    2017-01-25 20:31:00
63155    25152    598    2017-01-25 10:26:00    2017-01-25 10:26:00
63156    25152    659    2017-01-25 18:38:00    2017-01-25 18:38:00
63157    25152    531    2017-01-25 08:38:00    2017-01-25 08:38:00
63158    25153    503    2017-01-25 20:57:00    2017-01-25 20:57:00
63159    25153    571    2017-01-25 09:53:00    2017-01-25 09:53:00
63160    25153    516    2017-01-25 06:50:00    2017-01-25 06:50:00
63161    25153    615    2017-01-25 23:08:00    2017-01-25 23:08:00
63162    25153    818    2017-01-25 11:44:00    2017-01-25 11:44:00
63163    25154    808    2017-01-25 05:11:00    2017-01-25 05:11:00
63164    25154    867    2017-01-25 08:50:00    2017-01-25 08:50:00
63165    25154    628    2017-01-25 02:04:00    2017-01-25 02:04:00
63166    25154    479    2017-01-25 16:15:00    2017-01-25 16:15:00
63167    25154    947    2017-01-25 15:49:00    2017-01-25 15:49:00
63168    25155    746    2017-01-25 15:41:00    2017-01-25 15:41:00
63169    25155    851    2017-01-25 07:33:00    2017-01-25 07:33:00
63170    25155    870    2017-01-25 21:30:00    2017-01-25 21:30:00
63171    25155    780    2017-01-25 20:38:00    2017-01-25 20:38:00
63172    25155    549    2017-01-25 19:02:00    2017-01-25 19:02:00
63173    25156    588    2017-01-25 05:15:00    2017-01-25 05:15:00
63174    25156    715    2017-01-25 12:29:00    2017-01-25 12:29:00
63175    25156    656    2017-01-25 06:00:00    2017-01-25 06:00:00
63176    25156    813    2017-01-25 12:25:00    2017-01-25 12:25:00
63177    25156    647    2017-01-25 22:15:00    2017-01-25 22:15:00
63178    25157    822    2017-01-25 20:01:00    2017-01-25 20:01:00
63179    25157    953    2017-01-26 00:00:00    2017-01-26 00:00:00
63180    25157    479    2017-01-25 06:41:00    2017-01-25 06:41:00
63181    25157    469    2017-01-25 22:05:00    2017-01-25 22:05:00
63182    25157    832    2017-01-25 09:21:00    2017-01-25 09:21:00
63183    25158    642    2017-01-25 12:21:00    2017-01-25 12:21:00
63184    25158    478    2017-01-25 06:18:00    2017-01-25 06:18:00
63185    25158    521    2017-01-25 13:29:00    2017-01-25 13:29:00
63186    25158    847    2017-01-25 11:57:00    2017-01-25 11:57:00
63187    25158    492    2017-01-25 02:08:00    2017-01-25 02:08:00
63188    25159    596    2017-01-25 03:55:00    2017-01-25 03:55:00
63189    25159    853    2017-01-25 13:52:00    2017-01-25 13:52:00
63190    25159    600    2017-01-25 08:21:00    2017-01-25 08:21:00
63191    25159    534    2017-01-25 13:20:00    2017-01-25 13:20:00
63192    25159    631    2017-01-25 12:37:00    2017-01-25 12:37:00
63193    25160    492    2017-01-25 20:21:00    2017-01-25 20:21:00
63194    25160    769    2017-01-25 23:59:00    2017-01-25 23:59:00
63195    25160    723    2017-01-25 17:43:00    2017-01-25 17:43:00
63196    25160    883    2017-01-25 17:34:00    2017-01-25 17:34:00
63197    25160    790    2017-01-25 09:09:00    2017-01-25 09:09:00
63198    25161    773    2017-01-25 12:50:00    2017-01-25 12:50:00
63199    25161    710    2017-01-25 12:08:00    2017-01-25 12:08:00
63200    25161    940    2017-01-25 11:36:00    2017-01-25 11:36:00
63201    25161    493    2017-01-25 05:45:00    2017-01-25 05:45:00
63202    25161    837    2017-01-25 20:46:00    2017-01-25 20:46:00
63203    25162    817    2017-01-25 18:58:00    2017-01-25 18:58:00
63204    25162    744    2017-01-25 16:17:00    2017-01-25 16:17:00
63205    25162    655    2017-01-25 11:53:00    2017-01-25 11:53:00
63206    25162    649    2017-01-25 13:29:00    2017-01-25 13:29:00
63207    25162    755    2017-01-25 18:19:00    2017-01-25 18:19:00
63208    25163    878    2017-01-25 14:09:00    2017-01-25 14:09:00
63209    25163    515    2017-01-25 20:47:00    2017-01-25 20:47:00
63210    25163    943    2017-01-25 18:40:00    2017-01-25 18:40:00
63211    25163    518    2017-01-25 06:23:00    2017-01-25 06:23:00
63212    25163    821    2017-01-25 10:29:00    2017-01-25 10:29:00
63213    25164    666    2017-01-25 11:43:00    2017-01-25 11:43:00
63214    25164    812    2017-01-25 02:26:00    2017-01-25 02:26:00
63215    25164    510    2017-01-25 13:07:00    2017-01-25 13:07:00
63216    25164    712    2017-01-25 10:15:00    2017-01-25 10:15:00
63217    25164    796    2017-01-25 18:51:00    2017-01-25 18:51:00
63218    25165    497    2017-01-25 14:01:00    2017-01-25 14:01:00
63219    25165    493    2017-01-25 14:24:00    2017-01-25 14:24:00
63220    25165    737    2017-01-25 01:53:00    2017-01-25 01:53:00
63221    25165    699    2017-01-25 19:05:00    2017-01-25 19:05:00
63222    25165    759    2017-01-25 21:57:00    2017-01-25 21:57:00
63223    25166    759    2017-01-25 22:03:00    2017-01-25 22:03:00
63224    25166    624    2017-01-25 12:17:00    2017-01-25 12:17:00
63225    25166    861    2017-01-25 22:29:00    2017-01-25 22:29:00
63226    25166    729    2017-01-25 11:34:00    2017-01-25 11:34:00
63227    25166    697    2017-01-25 18:17:00    2017-01-25 18:17:00
63228    25167    651    2017-01-25 12:21:00    2017-01-25 12:21:00
63229    25167    515    2017-01-25 14:42:00    2017-01-25 14:42:00
63230    25167    851    2017-01-25 01:54:00    2017-01-25 01:54:00
63231    25167    894    2017-01-25 05:33:00    2017-01-25 05:33:00
63232    25167    586    2017-01-25 15:03:00    2017-01-25 15:03:00
63233    25168    480    2017-01-25 16:51:00    2017-01-25 16:51:00
63234    25168    602    2017-01-25 04:03:00    2017-01-25 04:03:00
63235    25168    913    2017-01-25 08:55:00    2017-01-25 08:55:00
63236    25168    472    2017-01-25 23:20:00    2017-01-25 23:20:00
63237    25168    558    2017-01-25 13:31:00    2017-01-25 13:31:00
63238    25169    895    2017-01-25 04:59:00    2017-01-25 04:59:00
63239    25169    478    2017-01-25 10:13:00    2017-01-25 10:13:00
63240    25169    698    2017-01-25 15:33:00    2017-01-25 15:33:00
63241    25169    515    2017-01-25 02:40:00    2017-01-25 02:40:00
63242    25169    941    2017-01-25 22:03:00    2017-01-25 22:03:00
63243    25170    900    2017-01-25 07:54:00    2017-01-25 07:54:00
63244    25170    916    2017-01-25 10:41:00    2017-01-25 10:41:00
63245    25170    732    2017-01-25 22:33:00    2017-01-25 22:33:00
63246    25170    571    2017-01-25 05:17:00    2017-01-25 05:17:00
63247    25170    724    2017-01-25 07:34:00    2017-01-25 07:34:00
63248    25171    773    2017-01-25 08:54:00    2017-01-25 08:54:00
63249    25171    522    2017-01-25 16:42:00    2017-01-25 16:42:00
63250    25171    865    2017-01-25 09:24:00    2017-01-25 09:24:00
63251    25171    933    2017-01-25 10:48:00    2017-01-25 10:48:00
63252    25171    580    2017-01-25 11:08:00    2017-01-25 11:08:00
63253    25172    687    2017-01-25 01:07:00    2017-01-25 01:07:00
63254    25172    512    2017-01-25 10:39:00    2017-01-25 10:39:00
63255    25172    842    2017-01-25 05:07:00    2017-01-25 05:07:00
63256    25172    647    2017-01-25 09:53:00    2017-01-25 09:53:00
63257    25172    846    2017-01-25 20:36:00    2017-01-25 20:36:00
63258    25173    895    2017-01-25 13:15:00    2017-01-25 13:15:00
63259    25173    864    2017-01-25 10:00:00    2017-01-25 10:00:00
63260    25173    871    2017-01-25 10:30:00    2017-01-25 10:30:00
63261    25173    690    2017-01-25 16:25:00    2017-01-25 16:25:00
63262    25173    549    2017-01-25 17:51:00    2017-01-25 17:51:00
63263    25174    694    2017-01-25 05:55:00    2017-01-25 05:55:00
63264    25174    795    2017-01-25 12:52:00    2017-01-25 12:52:00
63265    25174    721    2017-01-25 16:31:00    2017-01-25 16:31:00
63266    25174    622    2017-01-25 01:34:00    2017-01-25 01:34:00
63267    25174    960    2017-01-25 10:55:00    2017-01-25 10:55:00
63268    25175    883    2017-01-25 16:18:00    2017-01-25 16:18:00
63269    25175    509    2017-01-25 05:05:00    2017-01-25 05:05:00
63270    25175    960    2017-01-25 21:48:00    2017-01-25 21:48:00
63271    25175    867    2017-01-25 08:27:00    2017-01-25 08:27:00
63272    25175    840    2017-01-25 05:44:00    2017-01-25 05:44:00
63273    25176    476    2017-01-25 01:45:00    2017-01-25 01:45:00
63274    25176    855    2017-01-25 19:58:00    2017-01-25 19:58:00
63275    25176    825    2017-01-25 23:39:00    2017-01-25 23:39:00
63276    25176    518    2017-01-25 14:44:00    2017-01-25 14:44:00
63277    25176    734    2017-01-25 11:00:00    2017-01-25 11:00:00
63278    25177    804    2017-01-25 01:22:00    2017-01-25 01:22:00
63279    25177    868    2017-01-25 21:26:00    2017-01-25 21:26:00
63280    25177    903    2017-01-25 15:37:00    2017-01-25 15:37:00
63281    25177    917    2017-01-25 07:35:00    2017-01-25 07:35:00
63282    25177    889    2017-01-25 02:51:00    2017-01-25 02:51:00
63283    25178    505    2017-01-25 03:44:00    2017-01-25 03:44:00
63284    25178    872    2017-01-25 21:56:00    2017-01-25 21:56:00
63285    25178    537    2017-01-25 15:14:00    2017-01-25 15:14:00
63286    25178    476    2017-01-25 03:30:00    2017-01-25 03:30:00
63287    25178    618    2017-01-25 03:01:00    2017-01-25 03:01:00
63288    25179    878    2017-01-25 04:51:00    2017-01-25 04:51:00
63289    25179    548    2017-01-25 13:46:00    2017-01-25 13:46:00
63290    25179    514    2017-01-25 21:24:00    2017-01-25 21:24:00
63291    25179    905    2017-01-25 14:52:00    2017-01-25 14:52:00
63292    25179    651    2017-01-25 17:58:00    2017-01-25 17:58:00
63293    25180    869    2017-01-25 13:18:00    2017-01-25 13:18:00
63294    25180    548    2017-01-25 10:08:00    2017-01-25 10:08:00
63295    25180    552    2017-01-25 20:54:00    2017-01-25 20:54:00
63296    25180    849    2017-01-25 09:46:00    2017-01-25 09:46:00
63297    25180    556    2017-01-25 22:24:00    2017-01-25 22:24:00
63298    25181    584    2017-01-25 17:12:00    2017-01-25 17:12:00
63299    25181    757    2017-01-25 03:52:00    2017-01-25 03:52:00
63300    25181    468    2017-01-25 11:41:00    2017-01-25 11:41:00
63301    25181    522    2017-01-25 13:36:00    2017-01-25 13:36:00
63302    25181    676    2017-01-25 14:45:00    2017-01-25 14:45:00
63303    25182    551    2017-01-25 16:13:00    2017-01-25 16:13:00
63304    25182    961    2017-01-25 07:36:00    2017-01-25 07:36:00
63305    25182    600    2017-01-25 22:24:00    2017-01-25 22:24:00
63306    25182    780    2017-01-25 06:50:00    2017-01-25 06:50:00
63307    25182    635    2017-01-25 02:54:00    2017-01-25 02:54:00
63308    25183    878    2017-01-25 06:54:00    2017-01-25 06:54:00
63309    25183    792    2017-01-25 14:55:00    2017-01-25 14:55:00
63310    25183    684    2017-01-25 05:35:00    2017-01-25 05:35:00
63311    25183    848    2017-01-25 05:19:00    2017-01-25 05:19:00
63312    25183    691    2017-01-25 21:13:00    2017-01-25 21:13:00
63313    25184    935    2017-01-25 19:45:00    2017-01-25 19:45:00
63314    25184    928    2017-01-25 17:26:00    2017-01-25 17:26:00
63315    25184    620    2017-01-25 22:15:00    2017-01-25 22:15:00
63316    25184    672    2017-01-25 21:21:00    2017-01-25 21:21:00
63317    25184    945    2017-01-25 07:25:00    2017-01-25 07:25:00
63318    25185    858    2017-01-25 12:41:00    2017-01-25 12:41:00
63319    25185    732    2017-01-25 07:52:00    2017-01-25 07:52:00
63320    25185    681    2017-01-25 08:43:00    2017-01-25 08:43:00
63321    25185    950    2017-01-25 20:30:00    2017-01-25 20:30:00
63322    25185    653    2017-01-25 18:50:00    2017-01-25 18:50:00
63323    25186    875    2017-01-25 15:52:00    2017-01-25 15:52:00
63324    25186    668    2017-01-25 16:02:00    2017-01-25 16:02:00
63325    25186    925    2017-01-25 17:33:00    2017-01-25 17:33:00
63326    25186    961    2017-01-25 01:48:00    2017-01-25 01:48:00
63327    25186    702    2017-01-25 04:37:00    2017-01-25 04:37:00
63328    25187    774    2017-01-25 20:27:00    2017-01-25 20:27:00
63329    25187    720    2017-01-25 12:10:00    2017-01-25 12:10:00
63330    25187    577    2017-01-25 05:42:00    2017-01-25 05:42:00
63331    25187    902    2017-01-25 15:05:00    2017-01-25 15:05:00
63332    25187    548    2017-01-25 17:12:00    2017-01-25 17:12:00
63333    25188    863    2017-01-25 01:43:00    2017-01-25 01:43:00
63334    25188    916    2017-01-25 05:15:00    2017-01-25 05:15:00
63335    25188    928    2017-01-25 23:50:00    2017-01-25 23:50:00
63336    25188    606    2017-01-25 07:00:00    2017-01-25 07:00:00
63337    25188    502    2017-01-25 07:38:00    2017-01-25 07:38:00
63338    25189    871    2017-01-25 15:05:00    2017-01-25 15:05:00
63339    25189    602    2017-01-25 01:50:00    2017-01-25 01:50:00
63340    25189    938    2017-01-25 02:26:00    2017-01-25 02:26:00
63341    25189    960    2017-01-25 06:00:00    2017-01-25 06:00:00
63342    25189    774    2017-01-25 21:36:00    2017-01-25 21:36:00
63343    25190    781    2017-01-25 16:25:00    2017-01-25 16:25:00
63344    25190    938    2017-01-25 01:59:00    2017-01-25 01:59:00
63345    25190    478    2017-01-25 17:43:00    2017-01-25 17:43:00
63346    25190    608    2017-01-25 21:05:00    2017-01-25 21:05:00
63347    25190    805    2017-01-25 03:19:00    2017-01-25 03:19:00
63348    25191    862    2017-01-25 16:43:00    2017-01-25 16:43:00
63349    25191    832    2017-01-25 03:55:00    2017-01-25 03:55:00
63350    25191    664    2017-01-25 15:53:00    2017-01-25 15:53:00
63351    25191    496    2017-01-25 06:48:00    2017-01-25 06:48:00
63352    25191    756    2017-01-25 06:20:00    2017-01-25 06:20:00
63353    25192    619    2017-01-25 06:24:00    2017-01-25 06:24:00
63354    25192    614    2017-01-25 06:01:00    2017-01-25 06:01:00
63355    25192    601    2017-01-25 14:56:00    2017-01-25 14:56:00
63356    25192    657    2017-01-25 02:01:00    2017-01-25 02:01:00
63357    25192    874    2017-01-25 04:14:00    2017-01-25 04:14:00
63358    25193    639    2017-01-25 10:15:00    2017-01-25 10:15:00
63359    25193    534    2017-01-25 10:57:00    2017-01-25 10:57:00
63360    25193    734    2017-01-25 21:12:00    2017-01-25 21:12:00
63361    25193    669    2017-01-25 15:42:00    2017-01-25 15:42:00
63362    25193    928    2017-01-25 10:57:00    2017-01-25 10:57:00
63363    25194    563    2017-01-25 05:03:00    2017-01-25 05:03:00
63364    25194    930    2017-01-25 06:34:00    2017-01-25 06:34:00
63365    25194    893    2017-01-25 21:12:00    2017-01-25 21:12:00
63366    25194    575    2017-01-25 08:50:00    2017-01-25 08:50:00
63367    25194    876    2017-01-25 13:59:00    2017-01-25 13:59:00
63368    25195    819    2017-01-25 13:59:00    2017-01-25 13:59:00
63369    25195    522    2017-01-25 17:55:00    2017-01-25 17:55:00
63370    25195    670    2017-01-25 07:02:00    2017-01-25 07:02:00
63371    25195    886    2017-01-25 11:49:00    2017-01-25 11:49:00
63372    25195    643    2017-01-25 10:32:00    2017-01-25 10:32:00
63373    25196    545    2017-01-25 16:13:00    2017-01-25 16:13:00
63374    25196    735    2017-01-25 14:06:00    2017-01-25 14:06:00
63375    25196    809    2017-01-25 05:49:00    2017-01-25 05:49:00
63376    25196    601    2017-01-25 17:00:00    2017-01-25 17:00:00
63377    25196    650    2017-01-25 16:28:00    2017-01-25 16:28:00
63378    25197    559    2017-01-25 04:16:00    2017-01-25 04:16:00
63379    25197    706    2017-01-25 09:39:00    2017-01-25 09:39:00
63380    25197    697    2017-01-25 22:19:00    2017-01-25 22:19:00
63381    25197    799    2017-01-25 18:58:00    2017-01-25 18:58:00
63382    25197    540    2017-01-25 12:15:00    2017-01-25 12:15:00
63383    25198    563    2017-01-25 02:58:00    2017-01-25 02:58:00
63384    25198    701    2017-01-25 05:58:00    2017-01-25 05:58:00
63385    25198    623    2017-01-25 22:25:00    2017-01-25 22:25:00
63386    25198    906    2017-01-25 08:31:00    2017-01-25 08:31:00
63387    25198    950    2017-01-25 15:34:00    2017-01-25 15:34:00
63388    25199    940    2017-01-26 05:00:00    2017-01-26 05:00:00
63389    25199    770    2017-01-26 10:40:00    2017-01-26 10:40:00
63390    25199    600    2017-01-26 14:50:00    2017-01-26 14:50:00
63391    25199    657    2017-01-26 17:09:00    2017-01-26 17:09:00
63392    25199    784    2017-01-26 20:37:00    2017-01-26 20:37:00
63393    25200    505    2017-01-26 01:40:00    2017-01-26 01:40:00
63394    25200    511    2017-01-26 19:51:00    2017-01-26 19:51:00
63395    25200    672    2017-01-26 08:37:00    2017-01-26 08:37:00
63396    25200    812    2017-01-26 16:28:00    2017-01-26 16:28:00
63397    25200    948    2017-01-26 19:25:00    2017-01-26 19:25:00
63398    25201    533    2017-01-26 15:37:00    2017-01-26 15:37:00
63399    25201    869    2017-01-26 19:07:00    2017-01-26 19:07:00
63400    25201    514    2017-01-26 10:25:00    2017-01-26 10:25:00
63401    25201    673    2017-01-26 12:14:00    2017-01-26 12:14:00
63402    25201    724    2017-01-26 11:00:00    2017-01-26 11:00:00
63403    25202    498    2017-01-26 16:38:00    2017-01-26 16:38:00
63404    25202    643    2017-01-26 03:48:00    2017-01-26 03:48:00
63405    25202    898    2017-01-26 20:31:00    2017-01-26 20:31:00
63406    25202    648    2017-01-26 23:30:00    2017-01-26 23:30:00
63407    25202    600    2017-01-26 14:26:00    2017-01-26 14:26:00
63408    25203    844    2017-01-26 21:16:00    2017-01-26 21:16:00
63409    25203    582    2017-01-26 03:47:00    2017-01-26 03:47:00
63410    25203    491    2017-01-26 11:28:00    2017-01-26 11:28:00
63411    25203    939    2017-01-26 22:33:00    2017-01-26 22:33:00
63412    25203    569    2017-01-26 09:11:00    2017-01-26 09:11:00
63413    25204    652    2017-01-26 16:43:00    2017-01-26 16:43:00
63414    25204    525    2017-01-26 08:13:00    2017-01-26 08:13:00
63415    25204    824    2017-01-26 15:10:00    2017-01-26 15:10:00
63416    25204    928    2017-01-26 11:43:00    2017-01-26 11:43:00
63417    25204    676    2017-01-26 16:59:00    2017-01-26 16:59:00
63418    25205    614    2017-01-26 06:59:00    2017-01-26 06:59:00
63419    25205    588    2017-01-26 05:49:00    2017-01-26 05:49:00
63420    25205    843    2017-01-26 01:05:00    2017-01-26 01:05:00
63421    25205    909    2017-01-26 22:27:00    2017-01-26 22:27:00
63422    25205    518    2017-01-26 04:28:00    2017-01-26 04:28:00
63423    25206    540    2017-01-26 11:45:00    2017-01-26 11:45:00
63424    25206    948    2017-01-26 23:24:00    2017-01-26 23:24:00
63425    25206    534    2017-01-26 20:19:00    2017-01-26 20:19:00
63426    25206    646    2017-01-26 11:25:00    2017-01-26 11:25:00
63427    25206    630    2017-01-26 16:20:00    2017-01-26 16:20:00
63428    25207    515    2017-01-26 12:18:00    2017-01-26 12:18:00
63429    25207    871    2017-01-26 14:54:00    2017-01-26 14:54:00
63430    25207    597    2017-01-26 05:13:00    2017-01-26 05:13:00
63431    25207    877    2017-01-26 15:25:00    2017-01-26 15:25:00
63432    25207    572    2017-01-26 21:43:00    2017-01-26 21:43:00
63433    25208    610    2017-01-26 22:44:00    2017-01-26 22:44:00
63434    25208    876    2017-01-26 20:37:00    2017-01-26 20:37:00
63435    25208    610    2017-01-26 14:59:00    2017-01-26 14:59:00
63436    25208    731    2017-01-26 01:23:00    2017-01-26 01:23:00
63437    25208    610    2017-01-26 08:58:00    2017-01-26 08:58:00
63438    25209    716    2017-01-27 10:57:00    2017-01-27 10:57:00
63439    25209    811    2017-01-27 16:58:00    2017-01-27 16:58:00
63440    25209    500    2017-01-27 09:23:00    2017-01-27 09:23:00
63441    25209    736    2017-01-27 16:45:00    2017-01-27 16:45:00
63442    25209    836    2017-01-27 07:12:00    2017-01-27 07:12:00
63443    25210    766    2017-01-27 22:11:00    2017-01-27 22:11:00
63444    25210    533    2017-01-27 09:26:00    2017-01-27 09:26:00
63445    25210    611    2017-01-27 02:11:00    2017-01-27 02:11:00
63446    25210    765    2017-01-27 13:26:00    2017-01-27 13:26:00
63447    25210    585    2017-01-27 23:21:00    2017-01-27 23:21:00
63448    25211    734    2017-01-27 09:25:00    2017-01-27 09:25:00
63449    25211    500    2017-01-27 15:31:00    2017-01-27 15:31:00
63450    25211    599    2017-01-27 04:44:00    2017-01-27 04:44:00
63451    25211    792    2017-01-27 03:03:00    2017-01-27 03:03:00
63452    25211    564    2017-01-27 18:32:00    2017-01-27 18:32:00
63453    25212    890    2017-01-27 08:17:00    2017-01-27 08:17:00
63454    25212    479    2017-01-27 06:25:00    2017-01-27 06:25:00
63455    25212    681    2017-01-27 04:34:00    2017-01-27 04:34:00
63456    25212    764    2017-01-27 21:41:00    2017-01-27 21:41:00
63457    25212    696    2017-01-27 08:15:00    2017-01-27 08:15:00
63458    25213    688    2017-01-27 08:01:00    2017-01-27 08:01:00
63459    25213    644    2017-01-27 14:19:00    2017-01-27 14:19:00
63460    25213    907    2017-01-27 11:59:00    2017-01-27 11:59:00
63461    25213    647    2017-01-27 22:00:00    2017-01-27 22:00:00
63462    25213    839    2017-01-27 03:08:00    2017-01-27 03:08:00
63463    25214    493    2017-01-27 16:37:00    2017-01-27 16:37:00
63464    25214    629    2017-01-27 13:18:00    2017-01-27 13:18:00
63465    25214    705    2017-01-27 19:05:00    2017-01-27 19:05:00
63466    25214    931    2017-01-27 18:01:00    2017-01-27 18:01:00
63467    25214    707    2017-01-27 03:47:00    2017-01-27 03:47:00
63468    25215    498    2017-01-27 17:49:00    2017-01-27 17:49:00
63469    25215    591    2017-01-27 19:29:00    2017-01-27 19:29:00
63470    25215    628    2017-01-27 02:13:00    2017-01-27 02:13:00
63471    25215    795    2017-01-27 18:25:00    2017-01-27 18:25:00
63472    25215    544    2017-01-27 06:40:00    2017-01-27 06:40:00
63473    25216    730    2017-01-27 17:31:00    2017-01-27 17:31:00
63474    25216    760    2017-01-27 16:48:00    2017-01-27 16:48:00
63475    25216    638    2017-01-27 07:25:00    2017-01-27 07:25:00
63476    25216    541    2017-01-27 18:28:00    2017-01-27 18:28:00
63477    25216    726    2017-01-27 07:19:00    2017-01-27 07:19:00
63478    25217    717    2017-01-27 18:35:00    2017-01-27 18:35:00
63479    25217    746    2017-01-27 23:31:00    2017-01-27 23:31:00
63480    25217    701    2017-01-27 06:28:00    2017-01-27 06:28:00
63481    25217    835    2017-01-27 06:16:00    2017-01-27 06:16:00
63482    25217    573    2017-01-27 10:28:00    2017-01-27 10:28:00
63483    25218    795    2017-01-27 06:42:00    2017-01-27 06:42:00
63484    25218    577    2017-01-27 13:58:00    2017-01-27 13:58:00
63485    25218    937    2017-01-27 11:07:00    2017-01-27 11:07:00
63486    25218    636    2017-01-27 04:19:00    2017-01-27 04:19:00
63487    25218    490    2017-01-27 03:16:00    2017-01-27 03:16:00
63488    25219    818    2017-01-27 14:52:00    2017-01-27 14:52:00
63489    25219    816    2017-01-27 14:37:00    2017-01-27 14:37:00
63490    25219    743    2017-01-27 23:59:00    2017-01-27 23:59:00
63491    25219    878    2017-01-27 23:50:00    2017-01-27 23:50:00
63492    25219    884    2017-01-27 11:54:00    2017-01-27 11:54:00
63493    25220    489    2017-01-27 11:01:00    2017-01-27 11:01:00
63494    25220    744    2017-01-27 09:57:00    2017-01-27 09:57:00
63495    25220    907    2017-01-27 20:05:00    2017-01-27 20:05:00
63496    25220    828    2017-01-27 16:31:00    2017-01-27 16:31:00
63497    25220    878    2017-01-27 09:04:00    2017-01-27 09:04:00
63498    25221    701    2017-01-27 15:48:00    2017-01-27 15:48:00
63499    25221    630    2017-01-27 14:44:00    2017-01-27 14:44:00
63500    25221    863    2017-01-27 21:21:00    2017-01-27 21:21:00
63501    25221    486    2017-01-27 02:57:00    2017-01-27 02:57:00
63502    25221    871    2017-01-27 07:40:00    2017-01-27 07:40:00
63503    25222    799    2017-01-27 12:33:00    2017-01-27 12:33:00
63504    25222    919    2017-01-27 15:46:00    2017-01-27 15:46:00
63505    25222    742    2017-01-27 05:31:00    2017-01-27 05:31:00
63506    25222    534    2017-01-27 14:35:00    2017-01-27 14:35:00
63507    25222    540    2017-01-27 17:18:00    2017-01-27 17:18:00
63508    25223    654    2017-01-27 19:49:00    2017-01-27 19:49:00
63509    25223    893    2017-01-27 19:54:00    2017-01-27 19:54:00
63510    25223    945    2017-01-27 18:53:00    2017-01-27 18:53:00
63511    25223    790    2017-01-27 16:11:00    2017-01-27 16:11:00
63512    25223    645    2017-01-27 16:52:00    2017-01-27 16:52:00
63513    25224    907    2017-01-27 05:51:00    2017-01-27 05:51:00
63514    25224    924    2017-01-27 13:09:00    2017-01-27 13:09:00
63515    25224    553    2017-01-27 11:59:00    2017-01-27 11:59:00
63516    25224    916    2017-01-27 09:21:00    2017-01-27 09:21:00
63517    25224    696    2017-01-27 10:35:00    2017-01-27 10:35:00
63518    25225    466    2017-01-27 19:48:00    2017-01-27 19:48:00
63519    25225    697    2017-01-27 05:45:00    2017-01-27 05:45:00
63520    25225    566    2017-01-27 01:23:00    2017-01-27 01:23:00
63521    25225    884    2017-01-27 20:29:00    2017-01-27 20:29:00
63522    25225    486    2017-01-27 16:14:00    2017-01-27 16:14:00
63523    25226    555    2017-01-27 23:15:00    2017-01-27 23:15:00
63524    25226    837    2017-01-27 03:00:00    2017-01-27 03:00:00
63525    25226    555    2017-01-27 14:38:00    2017-01-27 14:38:00
63526    25226    806    2017-01-27 13:56:00    2017-01-27 13:56:00
63527    25226    677    2017-01-27 10:48:00    2017-01-27 10:48:00
63528    25227    467    2017-01-27 12:34:00    2017-01-27 12:34:00
63529    25227    848    2017-01-27 17:26:00    2017-01-27 17:26:00
63530    25227    566    2017-01-27 01:36:00    2017-01-27 01:36:00
63531    25227    550    2017-01-27 21:48:00    2017-01-27 21:48:00
63532    25227    938    2017-01-27 05:31:00    2017-01-27 05:31:00
63533    25228    628    2017-01-27 05:14:00    2017-01-27 05:14:00
63534    25228    957    2017-01-27 05:00:00    2017-01-27 05:00:00
63535    25228    814    2017-01-27 11:35:00    2017-01-27 11:35:00
63536    25228    596    2017-01-27 14:14:00    2017-01-27 14:14:00
63537    25228    486    2017-01-27 04:15:00    2017-01-27 04:15:00
63538    25229    771    2017-01-27 22:17:00    2017-01-27 22:17:00
63539    25229    810    2017-01-27 17:00:00    2017-01-27 17:00:00
63540    25229    909    2017-01-27 12:51:00    2017-01-27 12:51:00
63541    25229    886    2017-01-27 22:58:00    2017-01-27 22:58:00
63542    25229    478    2017-01-27 16:40:00    2017-01-27 16:40:00
63543    25230    917    2017-01-27 22:36:00    2017-01-27 22:36:00
63544    25230    467    2017-01-27 07:45:00    2017-01-27 07:45:00
63545    25230    514    2017-01-27 18:23:00    2017-01-27 18:23:00
63546    25230    872    2017-01-27 08:01:00    2017-01-27 08:01:00
63547    25230    701    2017-01-27 22:24:00    2017-01-27 22:24:00
63548    25231    941    2017-01-27 21:32:00    2017-01-27 21:32:00
63549    25231    762    2017-01-27 05:19:00    2017-01-27 05:19:00
63550    25231    680    2017-01-27 15:11:00    2017-01-27 15:11:00
63551    25231    822    2017-01-27 14:34:00    2017-01-27 14:34:00
63552    25231    503    2017-01-27 05:26:00    2017-01-27 05:26:00
63553    25232    845    2017-01-27 10:16:00    2017-01-27 10:16:00
63554    25232    796    2017-01-27 09:43:00    2017-01-27 09:43:00
63555    25232    670    2017-01-27 11:27:00    2017-01-27 11:27:00
63556    25232    650    2017-01-27 05:19:00    2017-01-27 05:19:00
63557    25232    731    2017-01-27 11:54:00    2017-01-27 11:54:00
63558    25233    659    2017-01-27 09:34:00    2017-01-27 09:34:00
63559    25233    885    2017-01-27 22:10:00    2017-01-27 22:10:00
63560    25233    944    2017-01-27 18:51:00    2017-01-27 18:51:00
63561    25233    513    2017-01-27 10:29:00    2017-01-27 10:29:00
63562    25233    766    2017-01-27 01:12:00    2017-01-27 01:12:00
63563    25234    649    2017-01-27 09:06:00    2017-01-27 09:06:00
63564    25234    465    2017-01-27 22:00:00    2017-01-27 22:00:00
63565    25234    922    2017-01-27 15:20:00    2017-01-27 15:20:00
63566    25234    734    2017-01-27 11:00:00    2017-01-27 11:00:00
63567    25234    562    2017-01-27 21:22:00    2017-01-27 21:22:00
63568    25235    735    2017-01-27 16:26:00    2017-01-27 16:26:00
63569    25235    680    2017-01-27 13:06:00    2017-01-27 13:06:00
63570    25235    639    2017-01-27 02:35:00    2017-01-27 02:35:00
63571    25235    557    2017-01-27 18:13:00    2017-01-27 18:13:00
63572    25235    536    2017-01-27 18:58:00    2017-01-27 18:58:00
63573    25236    464    2017-01-27 04:07:00    2017-01-27 04:07:00
63574    25236    571    2017-01-27 07:06:00    2017-01-27 07:06:00
63575    25236    676    2017-01-27 20:41:00    2017-01-27 20:41:00
63576    25236    662    2017-01-27 16:16:00    2017-01-27 16:16:00
63577    25236    832    2017-01-27 10:59:00    2017-01-27 10:59:00
63578    25237    488    2017-01-27 09:26:00    2017-01-27 09:26:00
63579    25237    731    2017-01-27 18:15:00    2017-01-27 18:15:00
63580    25237    737    2017-01-27 05:43:00    2017-01-27 05:43:00
63581    25237    604    2017-01-27 13:27:00    2017-01-27 13:27:00
63582    25237    776    2017-01-27 11:12:00    2017-01-27 11:12:00
63583    25238    590    2017-01-27 15:42:00    2017-01-27 15:42:00
63584    25238    869    2017-01-27 11:46:00    2017-01-27 11:46:00
63585    25238    577    2017-01-27 03:18:00    2017-01-27 03:18:00
63586    25238    948    2017-01-27 07:53:00    2017-01-27 07:53:00
63587    25238    824    2017-01-27 20:47:00    2017-01-27 20:47:00
63588    25239    803    2017-01-27 22:13:00    2017-01-27 22:13:00
63589    25239    802    2017-01-27 15:40:00    2017-01-27 15:40:00
63590    25239    601    2017-01-27 04:23:00    2017-01-27 04:23:00
63591    25239    805    2017-01-27 08:24:00    2017-01-27 08:24:00
63592    25239    899    2017-01-27 11:13:00    2017-01-27 11:13:00
63593    25240    696    2017-01-27 11:39:00    2017-01-27 11:39:00
63594    25240    583    2017-01-27 06:34:00    2017-01-27 06:34:00
63595    25240    562    2017-01-27 13:33:00    2017-01-27 13:33:00
63596    25240    903    2017-01-27 02:55:00    2017-01-27 02:55:00
63597    25240    738    2017-01-27 06:21:00    2017-01-27 06:21:00
63598    25241    569    2017-01-27 07:43:00    2017-01-27 07:43:00
63599    25241    489    2017-01-27 23:32:00    2017-01-27 23:32:00
63600    25241    895    2017-01-27 17:50:00    2017-01-27 17:50:00
63601    25241    564    2017-01-27 15:29:00    2017-01-27 15:29:00
63602    25241    816    2017-01-27 21:30:00    2017-01-27 21:30:00
63603    25242    469    2017-01-27 12:06:00    2017-01-27 12:06:00
63604    25242    886    2017-01-27 19:26:00    2017-01-27 19:26:00
63605    25242    661    2017-01-27 15:22:00    2017-01-27 15:22:00
63606    25242    678    2017-01-27 16:23:00    2017-01-27 16:23:00
63607    25242    836    2017-01-27 07:47:00    2017-01-27 07:47:00
63608    25243    797    2017-01-27 07:14:00    2017-01-27 07:14:00
63609    25243    754    2017-01-27 12:50:00    2017-01-27 12:50:00
63610    25243    642    2017-01-27 10:07:00    2017-01-27 10:07:00
63611    25243    489    2017-01-27 17:35:00    2017-01-27 17:35:00
63612    25243    934    2017-01-27 08:00:00    2017-01-27 08:00:00
63613    25244    539    2017-01-27 04:02:00    2017-01-27 04:02:00
63614    25244    917    2017-01-27 02:10:00    2017-01-27 02:10:00
63615    25244    891    2017-01-27 14:00:00    2017-01-27 14:00:00
63616    25244    717    2017-01-27 21:24:00    2017-01-27 21:24:00
63617    25244    926    2017-01-27 07:08:00    2017-01-27 07:08:00
63618    25245    961    2017-01-27 20:46:00    2017-01-27 20:46:00
63619    25245    818    2017-01-27 06:39:00    2017-01-27 06:39:00
63620    25245    562    2017-01-27 04:36:00    2017-01-27 04:36:00
63621    25245    523    2017-01-27 05:01:00    2017-01-27 05:01:00
63622    25245    678    2017-01-27 21:40:00    2017-01-27 21:40:00
63623    25246    941    2017-01-27 02:18:00    2017-01-27 02:18:00
63624    25246    538    2017-01-27 05:06:00    2017-01-27 05:06:00
63625    25246    798    2017-01-27 04:36:00    2017-01-27 04:36:00
63626    25246    808    2017-01-27 05:32:00    2017-01-27 05:32:00
63627    25246    559    2017-01-27 22:50:00    2017-01-27 22:50:00
63628    25247    915    2017-01-27 06:57:00    2017-01-27 06:57:00
63629    25247    649    2017-01-27 19:52:00    2017-01-27 19:52:00
63630    25247    710    2017-01-27 09:46:00    2017-01-27 09:46:00
63631    25247    710    2017-01-27 12:00:00    2017-01-27 12:00:00
63632    25247    764    2017-01-27 13:23:00    2017-01-27 13:23:00
63633    25248    944    2017-01-27 17:12:00    2017-01-27 17:12:00
63634    25248    472    2017-01-27 04:48:00    2017-01-27 04:48:00
63635    25248    916    2017-01-27 06:28:00    2017-01-27 06:28:00
63636    25248    798    2017-01-27 07:39:00    2017-01-27 07:39:00
63637    25248    584    2017-01-27 21:51:00    2017-01-27 21:51:00
63638    25249    866    2017-01-27 21:38:00    2017-01-27 21:38:00
63639    25249    813    2017-01-27 04:07:00    2017-01-27 04:07:00
63640    25249    582    2017-01-27 15:36:00    2017-01-27 15:36:00
63641    25249    661    2017-01-27 21:28:00    2017-01-27 21:28:00
63642    25249    854    2017-01-27 04:45:00    2017-01-27 04:45:00
63643    25250    902    2017-01-27 08:40:00    2017-01-27 08:40:00
63644    25250    647    2017-01-27 04:09:00    2017-01-27 04:09:00
63645    25250    629    2017-01-27 13:44:00    2017-01-27 13:44:00
63646    25250    502    2017-01-27 22:46:00    2017-01-27 22:46:00
63647    25250    750    2017-01-27 01:11:00    2017-01-27 01:11:00
63648    25251    636    2017-01-27 04:32:00    2017-01-27 04:32:00
63649    25251    803    2017-01-27 18:10:00    2017-01-27 18:10:00
63650    25251    842    2017-01-27 06:47:00    2017-01-27 06:47:00
63651    25251    892    2017-01-27 23:51:00    2017-01-27 23:51:00
63652    25251    805    2017-01-27 23:49:00    2017-01-27 23:49:00
63653    25252    888    2017-01-27 14:15:00    2017-01-27 14:15:00
63654    25252    524    2017-01-27 07:54:00    2017-01-27 07:54:00
63655    25252    753    2017-01-27 11:54:00    2017-01-27 11:54:00
63656    25252    775    2017-01-27 01:29:00    2017-01-27 01:29:00
63657    25252    905    2017-01-27 05:34:00    2017-01-27 05:34:00
63658    25253    530    2017-01-27 18:00:00    2017-01-27 18:00:00
63659    25253    471    2017-01-27 06:01:00    2017-01-27 06:01:00
63660    25253    527    2017-01-27 10:04:00    2017-01-27 10:04:00
63661    25253    662    2017-01-27 20:31:00    2017-01-27 20:31:00
63662    25253    632    2017-01-27 13:36:00    2017-01-27 13:36:00
63663    25254    923    2017-01-28 10:03:00    2017-01-28 10:03:00
63664    25254    656    2017-01-28 01:02:00    2017-01-28 01:02:00
63665    25254    580    2017-01-28 06:55:00    2017-01-28 06:55:00
63666    25254    675    2017-01-28 03:12:00    2017-01-28 03:12:00
63667    25254    953    2017-01-28 06:48:00    2017-01-28 06:48:00
63668    25255    527    2017-01-28 06:23:00    2017-01-28 06:23:00
63669    25255    564    2017-01-28 07:02:00    2017-01-28 07:02:00
63670    25255    576    2017-01-28 06:15:00    2017-01-28 06:15:00
63671    25255    712    2017-01-28 05:55:00    2017-01-28 05:55:00
63672    25255    631    2017-01-28 21:35:00    2017-01-28 21:35:00
63673    25256    623    2017-01-28 15:48:00    2017-01-28 15:48:00
63674    25256    813    2017-01-28 12:26:00    2017-01-28 12:26:00
63675    25256    875    2017-01-28 14:21:00    2017-01-28 14:21:00
63676    25256    481    2017-01-28 14:21:00    2017-01-28 14:21:00
63677    25256    934    2017-01-28 07:36:00    2017-01-28 07:36:00
63678    25257    640    2017-01-28 01:05:00    2017-01-28 01:05:00
63679    25257    837    2017-01-28 11:48:00    2017-01-28 11:48:00
63680    25257    763    2017-01-28 16:30:00    2017-01-28 16:30:00
63681    25257    609    2017-01-28 05:15:00    2017-01-28 05:15:00
63682    25257    583    2017-01-28 07:34:00    2017-01-28 07:34:00
63683    25258    864    2017-01-28 10:57:00    2017-01-28 10:57:00
63684    25258    550    2017-01-28 09:36:00    2017-01-28 09:36:00
63685    25258    771    2017-01-28 02:18:00    2017-01-28 02:18:00
63686    25258    674    2017-01-28 04:34:00    2017-01-28 04:34:00
63687    25258    860    2017-01-28 23:34:00    2017-01-28 23:34:00
63688    25259    790    2017-01-28 23:02:00    2017-01-28 23:02:00
63689    25259    670    2017-01-28 16:57:00    2017-01-28 16:57:00
63690    25259    630    2017-01-28 15:29:00    2017-01-28 15:29:00
63691    25259    622    2017-01-28 22:48:00    2017-01-28 22:48:00
63692    25259    723    2017-01-28 07:16:00    2017-01-28 07:16:00
63693    25260    736    2017-01-28 02:03:00    2017-01-28 02:03:00
63694    25260    870    2017-01-28 22:12:00    2017-01-28 22:12:00
63695    25260    770    2017-01-28 16:49:00    2017-01-28 16:49:00
63696    25260    907    2017-01-28 08:37:00    2017-01-28 08:37:00
63697    25260    883    2017-01-28 17:42:00    2017-01-28 17:42:00
63698    25261    682    2017-01-28 18:32:00    2017-01-28 18:32:00
63699    25261    837    2017-01-28 18:13:00    2017-01-28 18:13:00
63700    25261    675    2017-01-28 05:34:00    2017-01-28 05:34:00
63701    25261    840    2017-01-28 15:06:00    2017-01-28 15:06:00
63702    25261    511    2017-01-28 14:38:00    2017-01-28 14:38:00
63703    25262    701    2017-01-28 01:15:00    2017-01-28 01:15:00
63704    25262    831    2017-01-28 12:45:00    2017-01-28 12:45:00
63705    25262    862    2017-01-28 13:50:00    2017-01-28 13:50:00
63706    25262    633    2017-01-28 13:51:00    2017-01-28 13:51:00
63707    25262    960    2017-01-28 14:53:00    2017-01-28 14:53:00
63708    25263    588    2017-01-28 12:59:00    2017-01-28 12:59:00
63709    25263    816    2017-01-28 23:19:00    2017-01-28 23:19:00
63710    25263    878    2017-01-28 20:00:00    2017-01-28 20:00:00
63711    25263    612    2017-01-28 18:21:00    2017-01-28 18:21:00
63712    25263    703    2017-01-28 09:27:00    2017-01-28 09:27:00
63713    25264    622    2017-01-28 06:00:00    2017-01-28 06:00:00
63714    25264    616    2017-01-28 21:51:00    2017-01-28 21:51:00
63715    25264    907    2017-01-28 17:12:00    2017-01-28 17:12:00
63716    25264    572    2017-01-28 18:22:00    2017-01-28 18:22:00
63717    25264    480    2017-01-28 18:41:00    2017-01-28 18:41:00
63718    25265    838    2017-01-28 12:43:00    2017-01-28 12:43:00
63719    25265    807    2017-01-28 09:52:00    2017-01-28 09:52:00
63720    25265    772    2017-01-28 06:06:00    2017-01-28 06:06:00
63721    25265    717    2017-01-28 08:10:00    2017-01-28 08:10:00
63722    25265    848    2017-01-28 21:13:00    2017-01-28 21:13:00
63723    25266    842    2017-01-28 06:23:00    2017-01-28 06:23:00
63724    25266    749    2017-01-28 09:08:00    2017-01-28 09:08:00
63725    25266    647    2017-01-28 22:25:00    2017-01-28 22:25:00
63726    25266    646    2017-01-28 04:12:00    2017-01-28 04:12:00
63727    25266    688    2017-01-28 09:18:00    2017-01-28 09:18:00
63728    25267    711    2017-01-28 06:01:00    2017-01-28 06:01:00
63729    25267    594    2017-01-28 06:32:00    2017-01-28 06:32:00
63730    25267    575    2017-01-28 13:28:00    2017-01-28 13:28:00
63731    25267    922    2017-01-28 10:15:00    2017-01-28 10:15:00
63732    25267    530    2017-01-28 07:27:00    2017-01-28 07:27:00
63733    25268    532    2017-01-28 03:11:00    2017-01-28 03:11:00
63734    25268    871    2017-01-28 04:03:00    2017-01-28 04:03:00
63735    25268    558    2017-01-28 05:23:00    2017-01-28 05:23:00
63736    25268    492    2017-01-28 08:07:00    2017-01-28 08:07:00
63737    25268    956    2017-01-28 22:57:00    2017-01-28 22:57:00
63738    25269    471    2017-01-28 08:31:00    2017-01-28 08:31:00
63739    25269    775    2017-01-28 22:00:00    2017-01-28 22:00:00
63740    25269    801    2017-01-28 02:23:00    2017-01-28 02:23:00
63741    25269    711    2017-01-28 17:00:00    2017-01-28 17:00:00
63742    25269    465    2017-01-28 23:09:00    2017-01-28 23:09:00
63743    25270    893    2017-01-28 16:58:00    2017-01-28 16:58:00
63744    25270    875    2017-01-28 10:03:00    2017-01-28 10:03:00
63745    25270    630    2017-01-28 12:20:00    2017-01-28 12:20:00
63746    25270    603    2017-01-28 09:58:00    2017-01-28 09:58:00
63747    25270    521    2017-01-28 14:22:00    2017-01-28 14:22:00
63748    25271    618    2017-01-28 13:14:00    2017-01-28 13:14:00
63749    25271    801    2017-01-28 05:59:00    2017-01-28 05:59:00
63750    25271    757    2017-01-28 06:59:00    2017-01-28 06:59:00
63751    25271    934    2017-01-28 18:17:00    2017-01-28 18:17:00
63752    25271    711    2017-01-28 18:07:00    2017-01-28 18:07:00
63753    25272    480    2017-01-28 09:39:00    2017-01-28 09:39:00
63754    25272    472    2017-01-28 04:42:00    2017-01-28 04:42:00
63755    25272    956    2017-01-28 02:54:00    2017-01-28 02:54:00
63756    25272    544    2017-01-28 18:36:00    2017-01-28 18:36:00
63757    25272    745    2017-01-28 04:41:00    2017-01-28 04:41:00
63758    25273    539    2017-01-28 15:46:00    2017-01-28 15:46:00
63759    25273    525    2017-01-28 10:47:00    2017-01-28 10:47:00
63760    25273    950    2017-01-28 14:13:00    2017-01-28 14:13:00
63761    25273    579    2017-01-28 18:50:00    2017-01-28 18:50:00
63762    25273    857    2017-01-28 22:08:00    2017-01-28 22:08:00
63763    25274    576    2017-01-28 01:06:00    2017-01-28 01:06:00
63764    25274    687    2017-01-28 11:05:00    2017-01-28 11:05:00
63765    25274    877    2017-01-28 01:07:00    2017-01-28 01:07:00
63766    25274    920    2017-01-28 15:32:00    2017-01-28 15:32:00
63767    25274    824    2017-01-28 05:48:00    2017-01-28 05:48:00
63768    25275    854    2017-01-28 14:23:00    2017-01-28 14:23:00
63769    25275    626    2017-01-28 02:55:00    2017-01-28 02:55:00
63770    25275    719    2017-01-28 18:49:00    2017-01-28 18:49:00
63771    25275    850    2017-01-28 20:37:00    2017-01-28 20:37:00
63772    25275    854    2017-01-28 03:50:00    2017-01-28 03:50:00
63773    25276    805    2017-01-28 04:01:00    2017-01-28 04:01:00
63774    25276    888    2017-01-28 13:58:00    2017-01-28 13:58:00
63775    25276    488    2017-01-28 20:06:00    2017-01-28 20:06:00
63776    25276    947    2017-01-28 20:23:00    2017-01-28 20:23:00
63777    25276    749    2017-01-28 14:28:00    2017-01-28 14:28:00
63778    25277    472    2017-01-28 11:26:00    2017-01-28 11:26:00
63779    25277    807    2017-01-28 07:19:00    2017-01-28 07:19:00
63780    25277    892    2017-01-28 19:53:00    2017-01-28 19:53:00
63781    25277    605    2017-01-28 05:31:00    2017-01-28 05:31:00
63782    25277    716    2017-01-28 23:47:00    2017-01-28 23:47:00
63783    25278    790    2017-01-28 15:17:00    2017-01-28 15:17:00
63784    25278    486    2017-01-28 14:48:00    2017-01-28 14:48:00
63785    25278    888    2017-01-28 06:06:00    2017-01-28 06:06:00
63786    25278    581    2017-01-28 22:23:00    2017-01-28 22:23:00
63787    25278    814    2017-01-28 14:39:00    2017-01-28 14:39:00
63788    25279    546    2017-01-28 06:58:00    2017-01-28 06:58:00
63789    25279    594    2017-01-28 09:52:00    2017-01-28 09:52:00
63790    25279    681    2017-01-28 22:05:00    2017-01-28 22:05:00
63791    25279    759    2017-01-28 18:20:00    2017-01-28 18:20:00
63792    25279    870    2017-01-28 21:13:00    2017-01-28 21:13:00
63793    25280    480    2017-01-28 23:05:00    2017-01-28 23:05:00
63794    25280    484    2017-01-28 07:42:00    2017-01-28 07:42:00
63795    25280    581    2017-01-28 21:21:00    2017-01-28 21:21:00
63796    25280    515    2017-01-28 01:06:00    2017-01-28 01:06:00
63797    25280    951    2017-01-28 22:24:00    2017-01-28 22:24:00
63798    25281    942    2017-01-28 03:02:00    2017-01-28 03:02:00
63799    25281    653    2017-01-28 09:19:00    2017-01-28 09:19:00
63800    25281    508    2017-01-28 13:05:00    2017-01-28 13:05:00
63801    25281    846    2017-01-28 10:58:00    2017-01-28 10:58:00
63802    25281    581    2017-01-28 10:54:00    2017-01-28 10:54:00
63803    25282    825    2017-01-28 03:23:00    2017-01-28 03:23:00
63804    25282    725    2017-01-28 09:24:00    2017-01-28 09:24:00
63805    25282    771    2017-01-28 17:45:00    2017-01-28 17:45:00
63806    25282    891    2017-01-28 21:06:00    2017-01-28 21:06:00
63807    25282    765    2017-01-28 17:42:00    2017-01-28 17:42:00
63808    25283    704    2017-01-28 05:42:00    2017-01-28 05:42:00
63809    25283    885    2017-01-28 12:59:00    2017-01-28 12:59:00
63810    25283    634    2017-01-28 03:42:00    2017-01-28 03:42:00
63811    25283    724    2017-01-28 08:58:00    2017-01-28 08:58:00
63812    25283    655    2017-01-28 14:47:00    2017-01-28 14:47:00
63813    25284    504    2017-01-28 11:03:00    2017-01-28 11:03:00
63814    25284    522    2017-01-28 23:11:00    2017-01-28 23:11:00
63815    25284    620    2017-01-28 20:14:00    2017-01-28 20:14:00
63816    25284    777    2017-01-28 23:23:00    2017-01-28 23:23:00
63817    25284    900    2017-01-28 16:55:00    2017-01-28 16:55:00
63818    25285    469    2017-01-28 21:15:00    2017-01-28 21:15:00
63819    25285    788    2017-01-28 14:10:00    2017-01-28 14:10:00
63820    25285    746    2017-01-28 09:39:00    2017-01-28 09:39:00
63821    25285    617    2017-01-28 21:16:00    2017-01-28 21:16:00
63822    25285    595    2017-01-28 03:30:00    2017-01-28 03:30:00
63823    25286    850    2017-01-28 06:13:00    2017-01-28 06:13:00
63824    25286    607    2017-01-28 02:58:00    2017-01-28 02:58:00
63825    25286    899    2017-01-28 18:40:00    2017-01-28 18:40:00
63826    25286    698    2017-01-28 06:01:00    2017-01-28 06:01:00
63827    25286    720    2017-01-28 21:29:00    2017-01-28 21:29:00
63828    25287    654    2017-01-28 09:07:00    2017-01-28 09:07:00
63829    25287    538    2017-01-28 13:29:00    2017-01-28 13:29:00
63830    25287    716    2017-01-28 08:28:00    2017-01-28 08:28:00
63831    25287    489    2017-01-28 14:40:00    2017-01-28 14:40:00
63832    25287    628    2017-01-28 07:39:00    2017-01-28 07:39:00
63833    25288    633    2017-01-28 09:40:00    2017-01-28 09:40:00
63834    25288    873    2017-01-28 22:26:00    2017-01-28 22:26:00
63835    25288    824    2017-01-28 22:36:00    2017-01-28 22:36:00
63836    25288    802    2017-01-28 22:59:00    2017-01-28 22:59:00
63837    25288    606    2017-01-28 19:49:00    2017-01-28 19:49:00
63838    25289    645    2017-01-28 13:00:00    2017-01-28 13:00:00
63839    25289    926    2017-01-28 21:26:00    2017-01-28 21:26:00
63840    25289    944    2017-01-28 22:24:00    2017-01-28 22:24:00
63841    25289    767    2017-01-28 11:00:00    2017-01-28 11:00:00
63842    25289    782    2017-01-28 20:30:00    2017-01-28 20:30:00
63843    25290    464    2017-01-28 22:04:00    2017-01-28 22:04:00
63844    25290    482    2017-01-28 17:15:00    2017-01-28 17:15:00
63845    25290    858    2017-01-28 08:02:00    2017-01-28 08:02:00
63846    25290    943    2017-01-28 20:03:00    2017-01-28 20:03:00
63847    25290    707    2017-01-28 16:03:00    2017-01-28 16:03:00
63848    25291    527    2017-01-28 18:28:00    2017-01-28 18:28:00
63849    25291    466    2017-01-28 16:55:00    2017-01-28 16:55:00
63850    25291    820    2017-01-28 07:19:00    2017-01-28 07:19:00
63851    25291    760    2017-01-28 04:04:00    2017-01-28 04:04:00
63852    25291    524    2017-01-28 23:38:00    2017-01-28 23:38:00
63853    25292    773    2017-01-28 05:02:00    2017-01-28 05:02:00
63854    25292    540    2017-01-28 23:29:00    2017-01-28 23:29:00
63855    25292    465    2017-01-28 03:22:00    2017-01-28 03:22:00
63856    25292    608    2017-01-28 13:11:00    2017-01-28 13:11:00
63857    25292    874    2017-01-28 22:51:00    2017-01-28 22:51:00
63858    25293    633    2017-01-28 06:14:00    2017-01-28 06:14:00
63859    25293    690    2017-01-28 15:20:00    2017-01-28 15:20:00
63860    25293    757    2017-01-28 14:27:00    2017-01-28 14:27:00
63861    25293    561    2017-01-28 13:27:00    2017-01-28 13:27:00
63862    25293    525    2017-01-28 11:00:00    2017-01-28 11:00:00
63863    25294    738    2017-01-28 03:14:00    2017-01-28 03:14:00
63864    25294    658    2017-01-28 12:52:00    2017-01-28 12:52:00
63865    25294    784    2017-01-28 18:01:00    2017-01-28 18:01:00
63866    25294    946    2017-01-28 22:07:00    2017-01-28 22:07:00
63867    25294    890    2017-01-28 16:00:00    2017-01-28 16:00:00
63868    25295    546    2017-01-28 02:13:00    2017-01-28 02:13:00
63869    25295    542    2017-01-28 01:28:00    2017-01-28 01:28:00
63870    25295    790    2017-01-28 10:49:00    2017-01-28 10:49:00
63871    25295    633    2017-01-28 13:57:00    2017-01-28 13:57:00
63872    25295    471    2017-01-28 13:23:00    2017-01-28 13:23:00
63873    25296    499    2017-01-28 23:35:00    2017-01-28 23:35:00
63874    25296    779    2017-01-28 01:23:00    2017-01-28 01:23:00
63875    25296    570    2017-01-28 02:43:00    2017-01-28 02:43:00
63876    25296    781    2017-01-28 14:51:00    2017-01-28 14:51:00
63877    25296    468    2017-01-28 18:21:00    2017-01-28 18:21:00
63878    25297    674    2017-01-28 13:51:00    2017-01-28 13:51:00
63879    25297    808    2017-01-28 10:01:00    2017-01-28 10:01:00
63880    25297    824    2017-01-28 01:49:00    2017-01-28 01:49:00
63881    25297    733    2017-01-28 22:09:00    2017-01-28 22:09:00
63882    25297    886    2017-01-28 05:07:00    2017-01-28 05:07:00
63883    25298    870    2017-01-28 17:43:00    2017-01-28 17:43:00
63884    25298    615    2017-01-28 13:06:00    2017-01-28 13:06:00
63885    25298    648    2017-01-28 01:41:00    2017-01-28 01:41:00
63886    25298    697    2017-01-28 20:55:00    2017-01-28 20:55:00
63887    25298    554    2017-01-28 04:08:00    2017-01-28 04:08:00
63888    25299    631    2017-01-28 01:11:00    2017-01-28 01:11:00
63889    25299    804    2017-01-28 09:24:00    2017-01-28 09:24:00
63890    25299    578    2017-01-28 22:57:00    2017-01-28 22:57:00
63891    25299    925    2017-01-28 15:41:00    2017-01-28 15:41:00
63892    25299    588    2017-01-28 06:28:00    2017-01-28 06:28:00
63893    25300    730    2017-01-28 07:54:00    2017-01-28 07:54:00
63894    25300    504    2017-01-28 04:41:00    2017-01-28 04:41:00
63895    25300    756    2017-01-28 06:46:00    2017-01-28 06:46:00
63896    25300    466    2017-01-28 11:05:00    2017-01-28 11:05:00
63897    25300    767    2017-01-28 08:30:00    2017-01-28 08:30:00
63898    25301    865    2017-01-28 16:00:00    2017-01-28 16:00:00
63899    25301    769    2017-01-28 13:24:00    2017-01-28 13:24:00
63900    25301    956    2017-01-28 06:31:00    2017-01-28 06:31:00
63901    25301    670    2017-01-28 04:42:00    2017-01-28 04:42:00
63902    25301    810    2017-01-28 08:37:00    2017-01-28 08:37:00
63903    25302    737    2017-01-28 12:53:00    2017-01-28 12:53:00
63904    25302    765    2017-01-28 01:47:00    2017-01-28 01:47:00
63905    25302    681    2017-01-28 03:36:00    2017-01-28 03:36:00
63906    25302    486    2017-01-28 17:05:00    2017-01-28 17:05:00
63907    25302    600    2017-01-28 11:54:00    2017-01-28 11:54:00
63908    25303    807    2017-01-28 02:55:00    2017-01-28 02:55:00
63909    25303    893    2017-01-28 15:41:00    2017-01-28 15:41:00
63910    25303    940    2017-01-28 01:24:00    2017-01-28 01:24:00
63911    25303    830    2017-01-28 19:00:00    2017-01-28 19:00:00
63912    25303    663    2017-01-28 19:29:00    2017-01-28 19:29:00
63913    25304    612    2017-01-28 14:52:00    2017-01-28 14:52:00
63914    25304    738    2017-01-28 22:08:00    2017-01-28 22:08:00
63915    25304    770    2017-01-28 06:45:00    2017-01-28 06:45:00
63916    25304    485    2017-01-28 17:06:00    2017-01-28 17:06:00
63917    25304    852    2017-01-28 20:25:00    2017-01-28 20:25:00
63918    25305    706    2017-01-28 03:06:00    2017-01-28 03:06:00
63919    25305    652    2017-01-28 09:11:00    2017-01-28 09:11:00
63920    25305    907    2017-01-28 04:49:00    2017-01-28 04:49:00
63921    25305    665    2017-01-28 10:02:00    2017-01-28 10:02:00
63922    25305    824    2017-01-28 07:32:00    2017-01-28 07:32:00
63923    25306    825    2017-01-28 21:22:00    2017-01-28 21:22:00
63924    25306    470    2017-01-28 17:06:00    2017-01-28 17:06:00
63925    25306    660    2017-01-28 23:44:00    2017-01-28 23:44:00
63926    25306    958    2017-01-28 21:34:00    2017-01-28 21:34:00
63927    25306    521    2017-01-28 08:03:00    2017-01-28 08:03:00
63928    25307    683    2017-01-28 06:19:00    2017-01-28 06:19:00
63929    25307    935    2017-01-28 18:05:00    2017-01-28 18:05:00
63930    25307    500    2017-01-28 13:02:00    2017-01-28 13:02:00
63931    25307    933    2017-01-28 19:24:00    2017-01-28 19:24:00
63932    25307    873    2017-01-28 08:13:00    2017-01-28 08:13:00
63933    25308    763    2017-01-28 03:50:00    2017-01-28 03:50:00
63934    25308    889    2017-01-28 04:26:00    2017-01-28 04:26:00
63935    25308    662    2017-01-28 02:42:00    2017-01-28 02:42:00
63936    25308    920    2017-01-28 09:50:00    2017-01-28 09:50:00
63937    25308    644    2017-01-28 06:24:00    2017-01-28 06:24:00
63938    25309    689    2017-01-28 21:50:00    2017-01-28 21:50:00
63939    25309    947    2017-01-28 07:21:00    2017-01-28 07:21:00
63940    25309    786    2017-01-28 03:47:00    2017-01-28 03:47:00
63941    25309    865    2017-01-28 01:16:00    2017-01-28 01:16:00
63942    25309    912    2017-01-28 01:08:00    2017-01-28 01:08:00
63943    25310    838    2017-01-28 07:59:00    2017-01-28 07:59:00
63944    25310    897    2017-01-28 19:25:00    2017-01-28 19:25:00
63945    25310    739    2017-01-28 10:32:00    2017-01-28 10:32:00
63946    25310    959    2017-01-28 07:03:00    2017-01-28 07:03:00
63947    25310    896    2017-01-28 16:42:00    2017-01-28 16:42:00
63948    25311    518    2017-01-28 18:17:00    2017-01-28 18:17:00
63949    25311    534    2017-01-28 02:34:00    2017-01-28 02:34:00
63950    25311    882    2017-01-28 15:45:00    2017-01-28 15:45:00
63951    25311    511    2017-01-28 04:36:00    2017-01-28 04:36:00
63952    25311    532    2017-01-28 06:56:00    2017-01-28 06:56:00
63953    25312    691    2017-01-28 12:10:00    2017-01-28 12:10:00
63954    25312    748    2017-01-28 08:26:00    2017-01-28 08:26:00
63955    25312    891    2017-01-28 19:20:00    2017-01-28 19:20:00
63956    25312    883    2017-01-28 16:36:00    2017-01-28 16:36:00
63957    25312    892    2017-01-28 02:31:00    2017-01-28 02:31:00
63958    25313    767    2017-01-28 15:04:00    2017-01-28 15:04:00
63959    25313    810    2017-01-28 04:47:00    2017-01-28 04:47:00
63960    25313    853    2017-01-28 10:26:00    2017-01-28 10:26:00
63961    25313    817    2017-01-28 09:57:00    2017-01-28 09:57:00
63962    25313    767    2017-01-28 02:07:00    2017-01-28 02:07:00
63963    25314    486    2017-01-28 16:46:00    2017-01-28 16:46:00
63964    25314    860    2017-01-28 23:20:00    2017-01-28 23:20:00
63965    25314    508    2017-01-28 08:32:00    2017-01-28 08:32:00
63966    25314    850    2017-01-28 23:34:00    2017-01-28 23:34:00
63967    25314    730    2017-01-28 05:47:00    2017-01-28 05:47:00
63968    25315    925    2017-01-28 05:08:00    2017-01-28 05:08:00
63969    25315    480    2017-01-28 07:23:00    2017-01-28 07:23:00
63970    25315    720    2017-01-28 03:14:00    2017-01-28 03:14:00
63971    25315    760    2017-01-28 12:42:00    2017-01-28 12:42:00
63972    25315    842    2017-01-28 20:23:00    2017-01-28 20:23:00
63973    25316    828    2017-01-28 15:54:00    2017-01-28 15:54:00
63974    25316    538    2017-01-28 12:13:00    2017-01-28 12:13:00
63975    25316    878    2017-01-28 09:06:00    2017-01-28 09:06:00
63976    25316    772    2017-01-28 18:06:00    2017-01-28 18:06:00
63977    25316    707    2017-01-28 03:12:00    2017-01-28 03:12:00
63978    25317    804    2017-01-28 20:41:00    2017-01-28 20:41:00
63979    25317    617    2017-01-28 12:01:00    2017-01-28 12:01:00
63980    25317    573    2017-01-28 15:14:00    2017-01-28 15:14:00
63981    25317    738    2017-01-28 17:19:00    2017-01-28 17:19:00
63982    25317    577    2017-01-28 23:00:00    2017-01-28 23:00:00
63983    25318    769    2017-01-28 07:08:00    2017-01-28 07:08:00
63984    25318    849    2017-01-28 08:12:00    2017-01-28 08:12:00
63985    25318    563    2017-01-28 11:51:00    2017-01-28 11:51:00
63986    25318    656    2017-01-28 13:54:00    2017-01-28 13:54:00
63987    25318    767    2017-01-28 17:11:00    2017-01-28 17:11:00
63988    25319    554    2017-01-28 07:05:00    2017-01-28 07:05:00
63989    25319    724    2017-01-28 04:37:00    2017-01-28 04:37:00
63990    25319    474    2017-01-28 12:19:00    2017-01-28 12:19:00
63991    25319    624    2017-01-28 16:07:00    2017-01-28 16:07:00
63992    25319    837    2017-01-28 15:30:00    2017-01-28 15:30:00
63993    25320    553    2017-01-28 06:19:00    2017-01-28 06:19:00
63994    25320    504    2017-01-28 15:57:00    2017-01-28 15:57:00
63995    25320    483    2017-01-28 04:50:00    2017-01-28 04:50:00
63996    25320    573    2017-01-28 02:08:00    2017-01-28 02:08:00
63997    25320    655    2017-01-28 03:39:00    2017-01-28 03:39:00
63998    25321    950    2017-01-28 05:04:00    2017-01-28 05:04:00
63999    25321    491    2017-01-28 20:39:00    2017-01-28 20:39:00
64000    25321    913    2017-01-28 02:07:00    2017-01-28 02:07:00
64001    25321    816    2017-01-28 02:29:00    2017-01-28 02:29:00
64002    25321    478    2017-01-28 12:03:00    2017-01-28 12:03:00
64003    25322    520    2017-01-28 18:18:00    2017-01-28 18:18:00
64004    25322    656    2017-01-28 20:09:00    2017-01-28 20:09:00
64005    25322    890    2017-01-28 16:17:00    2017-01-28 16:17:00
64006    25322    903    2017-01-28 04:55:00    2017-01-28 04:55:00
64007    25322    762    2017-01-28 13:50:00    2017-01-28 13:50:00
64008    25323    707    2017-01-28 13:48:00    2017-01-28 13:48:00
64009    25323    516    2017-01-28 04:57:00    2017-01-28 04:57:00
64010    25323    698    2017-01-28 11:11:00    2017-01-28 11:11:00
64011    25323    719    2017-01-28 02:38:00    2017-01-28 02:38:00
64012    25323    787    2017-01-28 04:45:00    2017-01-28 04:45:00
64013    25324    714    2017-01-28 10:58:00    2017-01-28 10:58:00
64014    25324    736    2017-01-28 10:03:00    2017-01-28 10:03:00
64015    25324    758    2017-01-28 14:09:00    2017-01-28 14:09:00
64016    25324    893    2017-01-28 13:02:00    2017-01-28 13:02:00
64017    25324    822    2017-01-28 17:43:00    2017-01-28 17:43:00
64018    25325    646    2017-01-28 14:04:00    2017-01-28 14:04:00
64019    25325    542    2017-01-28 14:11:00    2017-01-28 14:11:00
64020    25325    771    2017-01-28 05:37:00    2017-01-28 05:37:00
64021    25325    598    2017-01-28 01:54:00    2017-01-28 01:54:00
64022    25325    819    2017-01-28 02:26:00    2017-01-28 02:26:00
64023    25326    686    2017-01-28 05:49:00    2017-01-28 05:49:00
64024    25326    567    2017-01-28 12:04:00    2017-01-28 12:04:00
64025    25326    569    2017-01-28 10:17:00    2017-01-28 10:17:00
64026    25326    961    2017-01-28 05:14:00    2017-01-28 05:14:00
64027    25326    685    2017-01-28 15:47:00    2017-01-28 15:47:00
64028    25327    656    2017-01-28 09:55:00    2017-01-28 09:55:00
64029    25327    615    2017-01-28 07:17:00    2017-01-28 07:17:00
64030    25327    557    2017-01-28 05:53:00    2017-01-28 05:53:00
64031    25327    679    2017-01-28 08:58:00    2017-01-28 08:58:00
64032    25327    549    2017-01-28 10:39:00    2017-01-28 10:39:00
64033    25328    868    2017-01-28 04:16:00    2017-01-28 04:16:00
64034    25328    808    2017-01-28 13:11:00    2017-01-28 13:11:00
64035    25328    478    2017-01-28 16:43:00    2017-01-28 16:43:00
64036    25328    605    2017-01-28 03:20:00    2017-01-28 03:20:00
64037    25328    784    2017-01-28 21:46:00    2017-01-28 21:46:00
64038    25329    930    2017-01-28 23:36:00    2017-01-28 23:36:00
64039    25329    499    2017-01-28 22:36:00    2017-01-28 22:36:00
64040    25329    576    2017-01-28 09:30:00    2017-01-28 09:30:00
64041    25329    822    2017-01-28 23:24:00    2017-01-28 23:24:00
64042    25329    748    2017-01-28 18:56:00    2017-01-28 18:56:00
64043    25330    758    2017-01-28 03:04:00    2017-01-28 03:04:00
64044    25330    901    2017-01-28 20:32:00    2017-01-28 20:32:00
64045    25330    888    2017-01-28 03:24:00    2017-01-28 03:24:00
64046    25330    793    2017-01-28 04:30:00    2017-01-28 04:30:00
64047    25330    467    2017-01-28 16:55:00    2017-01-28 16:55:00
64048    25331    615    2017-01-28 02:46:00    2017-01-28 02:46:00
64049    25331    613    2017-01-28 05:57:00    2017-01-28 05:57:00
64050    25331    522    2017-01-28 08:51:00    2017-01-28 08:51:00
64051    25331    866    2017-01-28 22:37:00    2017-01-28 22:37:00
64052    25331    661    2017-01-28 06:48:00    2017-01-28 06:48:00
64053    25332    496    2017-01-28 01:41:00    2017-01-28 01:41:00
64054    25332    711    2017-01-28 11:13:00    2017-01-28 11:13:00
64055    25332    784    2017-01-28 19:39:00    2017-01-28 19:39:00
64056    25332    702    2017-01-28 14:40:00    2017-01-28 14:40:00
64057    25332    903    2017-01-28 16:46:00    2017-01-28 16:46:00
64058    25333    495    2017-01-28 02:03:00    2017-01-28 02:03:00
64059    25333    642    2017-01-28 13:03:00    2017-01-28 13:03:00
64060    25333    566    2017-01-28 06:31:00    2017-01-28 06:31:00
64061    25333    789    2017-01-28 08:57:00    2017-01-28 08:57:00
64062    25333    749    2017-01-28 13:15:00    2017-01-28 13:15:00
64063    25334    709    2017-01-28 09:50:00    2017-01-28 09:50:00
64064    25334    779    2017-01-28 15:10:00    2017-01-28 15:10:00
64065    25334    818    2017-01-28 02:42:00    2017-01-28 02:42:00
64066    25334    774    2017-01-28 20:53:00    2017-01-28 20:53:00
64067    25334    504    2017-01-28 03:16:00    2017-01-28 03:16:00
64068    25335    693    2017-01-28 13:55:00    2017-01-28 13:55:00
64069    25335    945    2017-01-28 20:47:00    2017-01-28 20:47:00
64070    25335    709    2017-01-28 20:09:00    2017-01-28 20:09:00
64071    25335    896    2017-01-28 17:03:00    2017-01-28 17:03:00
64072    25335    927    2017-01-28 06:26:00    2017-01-28 06:26:00
64073    25336    695    2017-01-28 11:21:00    2017-01-28 11:21:00
64074    25336    894    2017-01-28 06:53:00    2017-01-28 06:53:00
64075    25336    533    2017-01-28 22:30:00    2017-01-28 22:30:00
64076    25336    756    2017-01-28 20:48:00    2017-01-28 20:48:00
64077    25336    498    2017-01-28 09:33:00    2017-01-28 09:33:00
64078    25337    621    2017-01-28 02:56:00    2017-01-28 02:56:00
64079    25337    951    2017-01-28 23:21:00    2017-01-28 23:21:00
64080    25337    603    2017-01-28 14:53:00    2017-01-28 14:53:00
64081    25337    764    2017-01-28 20:07:00    2017-01-28 20:07:00
64082    25337    819    2017-01-28 06:04:00    2017-01-28 06:04:00
64083    25338    527    2017-01-28 11:58:00    2017-01-28 11:58:00
64084    25338    730    2017-01-28 12:53:00    2017-01-28 12:53:00
64085    25338    499    2017-01-28 09:40:00    2017-01-28 09:40:00
64086    25338    514    2017-01-28 14:32:00    2017-01-28 14:32:00
64087    25338    846    2017-01-28 20:02:00    2017-01-28 20:02:00
64088    25339    796    2017-01-28 20:04:00    2017-01-28 20:04:00
64089    25339    554    2017-01-28 09:09:00    2017-01-28 09:09:00
64090    25339    583    2017-01-28 17:12:00    2017-01-28 17:12:00
64091    25339    739    2017-01-28 13:33:00    2017-01-28 13:33:00
64092    25339    737    2017-01-28 21:49:00    2017-01-28 21:49:00
64093    25340    819    2017-01-28 07:04:00    2017-01-28 07:04:00
64094    25340    630    2017-01-28 23:38:00    2017-01-28 23:38:00
64095    25340    741    2017-01-28 14:17:00    2017-01-28 14:17:00
64096    25340    945    2017-01-28 05:41:00    2017-01-28 05:41:00
64097    25340    530    2017-01-28 22:24:00    2017-01-28 22:24:00
64098    25341    765    2017-01-28 17:20:00    2017-01-28 17:20:00
64099    25341    959    2017-01-28 04:03:00    2017-01-28 04:03:00
64100    25341    837    2017-01-28 05:49:00    2017-01-28 05:49:00
64101    25341    859    2017-01-28 11:43:00    2017-01-28 11:43:00
64102    25341    806    2017-01-28 22:33:00    2017-01-28 22:33:00
64103    25342    616    2017-01-28 14:55:00    2017-01-28 14:55:00
64104    25342    908    2017-01-28 03:38:00    2017-01-28 03:38:00
64105    25342    548    2017-01-28 11:10:00    2017-01-28 11:10:00
64106    25342    755    2017-01-28 02:16:00    2017-01-28 02:16:00
64107    25342    735    2017-01-28 04:02:00    2017-01-28 04:02:00
64108    25343    773    2017-01-28 16:30:00    2017-01-28 16:30:00
64109    25343    493    2017-01-28 20:02:00    2017-01-28 20:02:00
64110    25343    574    2017-01-28 09:46:00    2017-01-28 09:46:00
64111    25343    504    2017-01-28 02:55:00    2017-01-28 02:55:00
64112    25343    855    2017-01-28 08:57:00    2017-01-28 08:57:00
64113    25344    952    2017-01-28 22:11:00    2017-01-28 22:11:00
64114    25344    677    2017-01-28 21:35:00    2017-01-28 21:35:00
64115    25344    728    2017-01-28 07:46:00    2017-01-28 07:46:00
64116    25344    736    2017-01-28 17:16:00    2017-01-28 17:16:00
64117    25344    660    2017-01-28 20:26:00    2017-01-28 20:26:00
64118    25345    841    2017-01-28 06:14:00    2017-01-28 06:14:00
64119    25345    498    2017-01-28 07:03:00    2017-01-28 07:03:00
64120    25345    509    2017-01-28 17:34:00    2017-01-28 17:34:00
64121    25345    804    2017-01-28 10:29:00    2017-01-28 10:29:00
64122    25345    620    2017-01-28 21:49:00    2017-01-28 21:49:00
64123    25346    511    2017-01-28 03:41:00    2017-01-28 03:41:00
64124    25346    870    2017-01-28 14:41:00    2017-01-28 14:41:00
64125    25346    853    2017-01-28 09:45:00    2017-01-28 09:45:00
64126    25346    909    2017-01-28 15:40:00    2017-01-28 15:40:00
64127    25346    781    2017-01-28 08:58:00    2017-01-28 08:58:00
64128    25347    928    2017-01-28 19:25:00    2017-01-28 19:25:00
64129    25347    831    2017-01-28 07:44:00    2017-01-28 07:44:00
64130    25347    866    2017-01-28 04:49:00    2017-01-28 04:49:00
64131    25347    479    2017-01-28 13:00:00    2017-01-28 13:00:00
64132    25347    499    2017-01-28 18:20:00    2017-01-28 18:20:00
64133    25348    618    2017-01-28 13:27:00    2017-01-28 13:27:00
64134    25348    694    2017-01-28 14:44:00    2017-01-28 14:44:00
64135    25348    935    2017-01-28 12:19:00    2017-01-28 12:19:00
64136    25348    622    2017-01-28 22:09:00    2017-01-28 22:09:00
64137    25348    528    2017-01-28 03:56:00    2017-01-28 03:56:00
64138    25349    735    2017-01-28 13:58:00    2017-01-28 13:58:00
64139    25349    512    2017-01-28 15:57:00    2017-01-28 15:57:00
64140    25349    493    2017-01-28 19:03:00    2017-01-28 19:03:00
64141    25349    577    2017-01-28 15:49:00    2017-01-28 15:49:00
64142    25349    710    2017-01-28 03:01:00    2017-01-28 03:01:00
64143    25350    614    2017-01-28 10:51:00    2017-01-28 10:51:00
64144    25350    756    2017-01-28 06:20:00    2017-01-28 06:20:00
64145    25350    465    2017-01-28 08:23:00    2017-01-28 08:23:00
64146    25350    796    2017-01-28 10:27:00    2017-01-28 10:27:00
64147    25350    487    2017-01-28 11:00:00    2017-01-28 11:00:00
64148    25351    806    2017-01-28 20:20:00    2017-01-28 20:20:00
64149    25351    901    2017-01-28 23:09:00    2017-01-28 23:09:00
64150    25351    598    2017-01-28 16:33:00    2017-01-28 16:33:00
64151    25351    470    2017-01-28 17:07:00    2017-01-28 17:07:00
64152    25351    601    2017-01-28 06:44:00    2017-01-28 06:44:00
64153    25352    835    2017-01-28 04:02:00    2017-01-28 04:02:00
64154    25352    867    2017-01-28 02:12:00    2017-01-28 02:12:00
64155    25352    575    2017-01-28 02:09:00    2017-01-28 02:09:00
64156    25352    626    2017-01-28 21:22:00    2017-01-28 21:22:00
64157    25352    734    2017-01-28 12:07:00    2017-01-28 12:07:00
64158    25353    790    2017-01-28 07:08:00    2017-01-28 07:08:00
64159    25353    764    2017-01-28 14:17:00    2017-01-28 14:17:00
64160    25353    891    2017-01-28 11:49:00    2017-01-28 11:49:00
64161    25353    862    2017-01-28 16:07:00    2017-01-28 16:07:00
64162    25353    591    2017-01-28 11:50:00    2017-01-28 11:50:00
64163    25354    887    2017-01-29 04:30:00    2017-01-29 04:30:00
64164    25354    545    2017-01-29 05:51:00    2017-01-29 05:51:00
64165    25354    700    2017-01-29 17:44:00    2017-01-29 17:44:00
64166    25354    576    2017-01-29 04:39:00    2017-01-29 04:39:00
64167    25354    679    2017-01-29 07:12:00    2017-01-29 07:12:00
64168    25355    959    2017-01-29 02:24:00    2017-01-29 02:24:00
64169    25355    606    2017-01-29 06:02:00    2017-01-29 06:02:00
64170    25355    899    2017-01-29 01:45:00    2017-01-29 01:45:00
64171    25355    628    2017-01-29 04:21:00    2017-01-29 04:21:00
64172    25355    877    2017-01-29 04:00:00    2017-01-29 04:00:00
64173    25356    803    2017-01-29 15:45:00    2017-01-29 15:45:00
64174    25356    597    2017-01-29 07:02:00    2017-01-29 07:02:00
64175    25356    717    2017-01-29 10:17:00    2017-01-29 10:17:00
64176    25356    744    2017-01-29 11:02:00    2017-01-29 11:02:00
64177    25356    745    2017-01-29 03:18:00    2017-01-29 03:18:00
64178    25357    709    2017-01-29 16:22:00    2017-01-29 16:22:00
64179    25357    621    2017-01-29 15:54:00    2017-01-29 15:54:00
64180    25357    558    2017-01-29 06:10:00    2017-01-29 06:10:00
64181    25357    699    2017-01-29 14:50:00    2017-01-29 14:50:00
64182    25357    814    2017-01-29 04:07:00    2017-01-29 04:07:00
64183    25358    667    2017-01-29 03:30:00    2017-01-29 03:30:00
64184    25358    880    2017-01-29 21:56:00    2017-01-29 21:56:00
64185    25358    485    2017-01-29 07:53:00    2017-01-29 07:53:00
64186    25358    784    2017-01-29 08:06:00    2017-01-29 08:06:00
64187    25358    470    2017-01-29 11:19:00    2017-01-29 11:19:00
64188    25359    670    2017-01-29 16:23:00    2017-01-29 16:23:00
64189    25359    586    2017-01-29 10:45:00    2017-01-29 10:45:00
64190    25359    596    2017-01-29 16:05:00    2017-01-29 16:05:00
64191    25359    494    2017-01-29 22:28:00    2017-01-29 22:28:00
64192    25359    693    2017-01-29 16:52:00    2017-01-29 16:52:00
64193    25360    752    2017-01-29 23:20:00    2017-01-29 23:20:00
64194    25360    734    2017-01-29 06:32:00    2017-01-29 06:32:00
64195    25360    789    2017-01-29 23:22:00    2017-01-29 23:22:00
64196    25360    781    2017-01-29 02:08:00    2017-01-29 02:08:00
64197    25360    949    2017-01-29 22:38:00    2017-01-29 22:38:00
64198    25361    589    2017-01-29 01:28:00    2017-01-29 01:28:00
64199    25361    534    2017-01-29 20:25:00    2017-01-29 20:25:00
64200    25361    502    2017-01-29 19:55:00    2017-01-29 19:55:00
64201    25361    936    2017-01-29 06:08:00    2017-01-29 06:08:00
64202    25361    481    2017-01-29 20:00:00    2017-01-29 20:00:00
64203    25362    687    2017-01-29 02:20:00    2017-01-29 02:20:00
64204    25362    582    2017-01-29 21:23:00    2017-01-29 21:23:00
64205    25362    604    2017-01-29 12:24:00    2017-01-29 12:24:00
64206    25362    682    2017-01-29 17:55:00    2017-01-29 17:55:00
64207    25362    717    2017-01-29 15:28:00    2017-01-29 15:28:00
64208    25363    830    2017-01-29 02:45:00    2017-01-29 02:45:00
64209    25363    736    2017-01-29 12:18:00    2017-01-29 12:18:00
64210    25363    932    2017-01-29 15:02:00    2017-01-29 15:02:00
64211    25363    472    2017-01-29 08:47:00    2017-01-29 08:47:00
64212    25363    838    2017-01-29 11:38:00    2017-01-29 11:38:00
64213    25364    549    2017-01-29 06:31:00    2017-01-29 06:31:00
64214    25364    590    2017-01-29 03:00:00    2017-01-29 03:00:00
64215    25364    916    2017-01-29 03:32:00    2017-01-29 03:32:00
64216    25364    525    2017-01-29 11:16:00    2017-01-29 11:16:00
64217    25364    803    2017-01-29 02:12:00    2017-01-29 02:12:00
64218    25365    471    2017-01-29 11:42:00    2017-01-29 11:42:00
64219    25365    577    2017-01-29 07:51:00    2017-01-29 07:51:00
64220    25365    811    2017-01-29 16:33:00    2017-01-29 16:33:00
64221    25365    577    2017-01-29 19:47:00    2017-01-29 19:47:00
64222    25365    938    2017-01-29 02:22:00    2017-01-29 02:22:00
64223    25366    870    2017-01-29 16:22:00    2017-01-29 16:22:00
64224    25366    508    2017-01-29 12:10:00    2017-01-29 12:10:00
64225    25366    489    2017-01-29 08:51:00    2017-01-29 08:51:00
64226    25366    772    2017-01-29 15:21:00    2017-01-29 15:21:00
64227    25366    513    2017-01-29 22:18:00    2017-01-29 22:18:00
64228    25367    869    2017-01-29 20:52:00    2017-01-29 20:52:00
64229    25367    530    2017-01-29 20:40:00    2017-01-29 20:40:00
64230    25367    466    2017-01-29 05:33:00    2017-01-29 05:33:00
64231    25367    655    2017-01-29 08:49:00    2017-01-29 08:49:00
64232    25367    949    2017-01-29 04:06:00    2017-01-29 04:06:00
64233    25368    895    2017-01-29 16:32:00    2017-01-29 16:32:00
64234    25368    935    2017-01-29 12:33:00    2017-01-29 12:33:00
64235    25368    647    2017-01-29 22:58:00    2017-01-29 22:58:00
64236    25368    792    2017-01-29 18:20:00    2017-01-29 18:20:00
64237    25368    546    2017-01-29 11:11:00    2017-01-29 11:11:00
64238    25369    765    2017-01-29 04:56:00    2017-01-29 04:56:00
64239    25369    792    2017-01-29 08:24:00    2017-01-29 08:24:00
64240    25369    813    2017-01-29 16:46:00    2017-01-29 16:46:00
64241    25369    717    2017-01-29 08:25:00    2017-01-29 08:25:00
64242    25369    587    2017-01-29 03:43:00    2017-01-29 03:43:00
64243    25370    745    2017-01-29 18:22:00    2017-01-29 18:22:00
64244    25370    738    2017-01-29 13:19:00    2017-01-29 13:19:00
64245    25370    687    2017-01-29 14:12:00    2017-01-29 14:12:00
64246    25370    717    2017-01-29 03:28:00    2017-01-29 03:28:00
64247    25370    611    2017-01-29 23:10:00    2017-01-29 23:10:00
64248    25371    857    2017-01-29 03:16:00    2017-01-29 03:16:00
64249    25371    605    2017-01-29 17:51:00    2017-01-29 17:51:00
64250    25371    788    2017-01-29 13:00:00    2017-01-29 13:00:00
64251    25371    959    2017-01-29 18:25:00    2017-01-29 18:25:00
64252    25371    804    2017-01-29 19:00:00    2017-01-29 19:00:00
64253    25372    956    2017-01-29 18:07:00    2017-01-29 18:07:00
64254    25372    935    2017-01-29 19:09:00    2017-01-29 19:09:00
64255    25372    775    2017-01-29 07:46:00    2017-01-29 07:46:00
64256    25372    838    2017-01-29 11:11:00    2017-01-29 11:11:00
64257    25372    516    2017-01-29 16:44:00    2017-01-29 16:44:00
64258    25373    733    2017-01-29 14:25:00    2017-01-29 14:25:00
64259    25373    769    2017-01-29 18:05:00    2017-01-29 18:05:00
64260    25373    544    2017-01-29 23:23:00    2017-01-29 23:23:00
64261    25373    495    2017-01-29 18:17:00    2017-01-29 18:17:00
64262    25373    817    2017-01-29 03:42:00    2017-01-29 03:42:00
64263    25374    639    2017-01-29 01:40:00    2017-01-29 01:40:00
64264    25374    484    2017-01-29 01:05:00    2017-01-29 01:05:00
64265    25374    850    2017-01-29 15:27:00    2017-01-29 15:27:00
64266    25374    819    2017-01-29 03:09:00    2017-01-29 03:09:00
64267    25374    911    2017-01-29 21:56:00    2017-01-29 21:56:00
64268    25375    558    2017-01-29 15:10:00    2017-01-29 15:10:00
64269    25375    675    2017-01-29 04:00:00    2017-01-29 04:00:00
64270    25375    504    2017-01-29 14:41:00    2017-01-29 14:41:00
64271    25375    559    2017-01-29 23:23:00    2017-01-29 23:23:00
64272    25375    922    2017-01-29 19:01:00    2017-01-29 19:01:00
64273    25376    761    2017-01-29 14:24:00    2017-01-29 14:24:00
64274    25376    676    2017-01-29 22:37:00    2017-01-29 22:37:00
64275    25376    882    2017-01-29 03:54:00    2017-01-29 03:54:00
64276    25376    608    2017-01-29 16:57:00    2017-01-29 16:57:00
64277    25376    488    2017-01-29 20:58:00    2017-01-29 20:58:00
64278    25377    496    2017-01-29 09:41:00    2017-01-29 09:41:00
64279    25377    767    2017-01-29 09:06:00    2017-01-29 09:06:00
64280    25377    474    2017-01-29 13:43:00    2017-01-29 13:43:00
64281    25377    607    2017-01-29 01:24:00    2017-01-29 01:24:00
64282    25377    768    2017-01-29 16:30:00    2017-01-29 16:30:00
64283    25378    678    2017-01-29 10:03:00    2017-01-29 10:03:00
64284    25378    617    2017-01-29 02:15:00    2017-01-29 02:15:00
64285    25378    665    2017-01-29 05:00:00    2017-01-29 05:00:00
64286    25378    622    2017-01-29 22:31:00    2017-01-29 22:31:00
64287    25378    898    2017-01-29 12:15:00    2017-01-29 12:15:00
64288    25379    546    2017-01-29 11:21:00    2017-01-29 11:21:00
64289    25379    511    2017-01-29 23:45:00    2017-01-29 23:45:00
64290    25379    775    2017-01-29 09:15:00    2017-01-29 09:15:00
64291    25379    611    2017-01-29 19:09:00    2017-01-29 19:09:00
64292    25379    833    2017-01-29 03:08:00    2017-01-29 03:08:00
64293    25380    953    2017-01-29 20:57:00    2017-01-29 20:57:00
64294    25380    918    2017-01-29 19:46:00    2017-01-29 19:46:00
64295    25380    703    2017-01-29 20:29:00    2017-01-29 20:29:00
64296    25380    675    2017-01-29 01:21:00    2017-01-29 01:21:00
64297    25380    895    2017-01-29 23:56:00    2017-01-29 23:56:00
64298    25381    526    2017-01-29 16:51:00    2017-01-29 16:51:00
64299    25381    470    2017-01-29 07:59:00    2017-01-29 07:59:00
64300    25381    914    2017-01-29 07:00:00    2017-01-29 07:00:00
64301    25381    558    2017-01-29 05:58:00    2017-01-29 05:58:00
64302    25381    613    2017-01-29 04:44:00    2017-01-29 04:44:00
64304    25382    961    2017-01-29 17:31:00    2017-01-29 17:31:00
64305    25382    822    2017-01-29 15:54:00    2017-01-29 15:54:00
64306    25382    721    2017-01-29 19:27:00    2017-01-29 19:27:00
64307    25382    522    2017-01-29 08:52:00    2017-01-29 08:52:00
64308    25383    746    2017-01-29 23:36:00    2017-01-29 23:36:00
64309    25383    795    2017-01-29 03:06:00    2017-01-29 03:06:00
64310    25383    838    2017-01-29 23:17:00    2017-01-29 23:17:00
64311    25383    923    2017-01-29 15:35:00    2017-01-29 15:35:00
64312    25383    868    2017-01-29 02:30:00    2017-01-29 02:30:00
64313    25384    804    2017-01-29 15:10:00    2017-01-29 15:10:00
64314    25384    693    2017-01-29 10:13:00    2017-01-29 10:13:00
64315    25384    674    2017-01-29 09:28:00    2017-01-29 09:28:00
64316    25384    959    2017-01-29 02:09:00    2017-01-29 02:09:00
64317    25384    714    2017-01-29 04:55:00    2017-01-29 04:55:00
64318    25385    877    2017-01-29 20:52:00    2017-01-29 20:52:00
64319    25385    605    2017-01-29 18:00:00    2017-01-29 18:00:00
64320    25385    899    2017-01-29 11:40:00    2017-01-29 11:40:00
64321    25385    727    2017-01-29 13:23:00    2017-01-29 13:23:00
64322    25385    519    2017-01-29 13:14:00    2017-01-29 13:14:00
64323    25386    830    2017-01-29 12:02:00    2017-01-29 12:02:00
64324    25386    751    2017-01-29 20:40:00    2017-01-29 20:40:00
64325    25386    836    2017-01-29 23:09:00    2017-01-29 23:09:00
64326    25386    596    2017-01-29 06:38:00    2017-01-29 06:38:00
64327    25386    591    2017-01-29 11:06:00    2017-01-29 11:06:00
64328    25387    926    2017-01-29 04:41:00    2017-01-29 04:41:00
64329    25387    701    2017-01-29 21:46:00    2017-01-29 21:46:00
64330    25387    871    2017-01-29 07:14:00    2017-01-29 07:14:00
64331    25387    512    2017-01-29 13:13:00    2017-01-29 13:13:00
64332    25387    482    2017-01-29 09:01:00    2017-01-29 09:01:00
64333    25388    785    2017-01-29 13:44:00    2017-01-29 13:44:00
64334    25388    540    2017-01-29 18:15:00    2017-01-29 18:15:00
64335    25388    607    2017-01-29 02:13:00    2017-01-29 02:13:00
64336    25388    551    2017-01-29 09:48:00    2017-01-29 09:48:00
64337    25388    924    2017-01-29 10:19:00    2017-01-29 10:19:00
64338    25389    745    2017-01-29 08:09:00    2017-01-29 08:09:00
64339    25389    783    2017-01-29 16:51:00    2017-01-29 16:51:00
64340    25389    805    2017-01-29 19:53:00    2017-01-29 19:53:00
64341    25389    700    2017-01-29 07:28:00    2017-01-29 07:28:00
64342    25389    776    2017-01-29 23:59:00    2017-01-29 23:59:00
64343    25390    475    2017-01-29 03:45:00    2017-01-29 03:45:00
64344    25390    722    2017-01-29 07:09:00    2017-01-29 07:09:00
64345    25390    711    2017-01-29 05:11:00    2017-01-29 05:11:00
64346    25390    897    2017-01-29 16:31:00    2017-01-29 16:31:00
64347    25390    856    2017-01-29 02:51:00    2017-01-29 02:51:00
64348    25391    959    2017-01-29 16:30:00    2017-01-29 16:30:00
64349    25391    941    2017-01-29 17:44:00    2017-01-29 17:44:00
64350    25391    576    2017-01-29 10:54:00    2017-01-29 10:54:00
64351    25391    705    2017-01-29 18:50:00    2017-01-29 18:50:00
64352    25391    832    2017-01-29 19:13:00    2017-01-29 19:13:00
64353    25392    891    2017-01-29 09:55:00    2017-01-29 09:55:00
64354    25392    590    2017-01-29 03:53:00    2017-01-29 03:53:00
64355    25392    883    2017-01-29 04:01:00    2017-01-29 04:01:00
64356    25392    919    2017-01-29 18:06:00    2017-01-29 18:06:00
64357    25392    623    2017-01-29 21:08:00    2017-01-29 21:08:00
64358    25393    662    2017-01-29 03:31:00    2017-01-29 03:31:00
64359    25393    541    2017-01-29 13:53:00    2017-01-29 13:53:00
64360    25393    701    2017-01-29 17:21:00    2017-01-29 17:21:00
64361    25393    833    2017-01-29 14:20:00    2017-01-29 14:20:00
64362    25393    491    2017-01-29 09:00:00    2017-01-29 09:00:00
64363    25394    490    2017-01-29 08:16:00    2017-01-29 08:16:00
64364    25394    945    2017-01-29 08:31:00    2017-01-29 08:31:00
64365    25394    666    2017-01-29 09:45:00    2017-01-29 09:45:00
64366    25394    648    2017-01-29 19:15:00    2017-01-29 19:15:00
64367    25394    710    2017-01-29 23:06:00    2017-01-29 23:06:00
64368    25395    783    2017-01-29 14:10:00    2017-01-29 14:10:00
64369    25395    949    2017-01-29 03:10:00    2017-01-29 03:10:00
64370    25395    587    2017-01-29 23:34:00    2017-01-29 23:34:00
64371    25395    653    2017-01-29 15:56:00    2017-01-29 15:56:00
64372    25395    590    2017-01-29 12:04:00    2017-01-29 12:04:00
64373    25396    867    2017-01-29 20:07:00    2017-01-29 20:07:00
64374    25396    743    2017-01-29 22:33:00    2017-01-29 22:33:00
64375    25396    768    2017-01-29 19:15:00    2017-01-29 19:15:00
64376    25396    923    2017-01-29 20:22:00    2017-01-29 20:22:00
64377    25396    692    2017-01-29 16:24:00    2017-01-29 16:24:00
64378    25397    933    2017-01-29 14:08:00    2017-01-29 14:08:00
64379    25397    787    2017-01-29 11:39:00    2017-01-29 11:39:00
64380    25397    501    2017-01-29 23:14:00    2017-01-29 23:14:00
64381    25397    744    2017-01-29 05:44:00    2017-01-29 05:44:00
64382    25397    669    2017-01-29 01:21:00    2017-01-29 01:21:00
64383    25398    860    2017-01-29 01:35:00    2017-01-29 01:35:00
64384    25398    587    2017-01-29 15:02:00    2017-01-29 15:02:00
64385    25398    848    2017-01-29 13:44:00    2017-01-29 13:44:00
64386    25398    753    2017-01-29 11:28:00    2017-01-29 11:28:00
64387    25398    810    2017-01-29 20:49:00    2017-01-29 20:49:00
64388    25399    554    2017-01-29 12:57:00    2017-01-29 12:57:00
64389    25399    540    2017-01-29 23:38:00    2017-01-29 23:38:00
64390    25399    525    2017-01-29 17:40:00    2017-01-29 17:40:00
64391    25399    528    2017-01-29 13:27:00    2017-01-29 13:27:00
64392    25399    512    2017-01-29 10:15:00    2017-01-29 10:15:00
64393    25400    881    2017-01-29 17:41:00    2017-01-29 17:41:00
64394    25400    532    2017-01-29 10:00:00    2017-01-29 10:00:00
64395    25400    834    2017-01-29 10:18:00    2017-01-29 10:18:00
64396    25400    669    2017-01-29 02:45:00    2017-01-29 02:45:00
64397    25400    805    2017-01-29 20:53:00    2017-01-29 20:53:00
64398    25401    587    2017-01-29 05:23:00    2017-01-29 05:23:00
64399    25401    857    2017-01-29 08:21:00    2017-01-29 08:21:00
64400    25401    683    2017-01-29 07:27:00    2017-01-29 07:27:00
64401    25401    599    2017-01-29 06:23:00    2017-01-29 06:23:00
64402    25401    593    2017-01-29 08:34:00    2017-01-29 08:34:00
64403    25402    682    2017-01-29 17:31:00    2017-01-29 17:31:00
64404    25402    786    2017-01-29 16:08:00    2017-01-29 16:08:00
64405    25402    689    2017-01-29 12:21:00    2017-01-29 12:21:00
64406    25402    928    2017-01-29 04:58:00    2017-01-29 04:58:00
64407    25402    488    2017-01-29 14:04:00    2017-01-29 14:04:00
64408    25403    680    2017-01-29 23:37:00    2017-01-29 23:37:00
64409    25403    954    2017-01-29 22:55:00    2017-01-29 22:55:00
64410    25403    778    2017-01-29 13:36:00    2017-01-29 13:36:00
64411    25403    904    2017-01-29 17:06:00    2017-01-29 17:06:00
64412    25403    701    2017-01-29 08:02:00    2017-01-29 08:02:00
64413    25404    649    2017-01-29 06:32:00    2017-01-29 06:32:00
64414    25404    875    2017-01-29 10:50:00    2017-01-29 10:50:00
64415    25404    907    2017-01-29 08:28:00    2017-01-29 08:28:00
64416    25404    933    2017-01-29 14:50:00    2017-01-29 14:50:00
64417    25404    919    2017-01-29 16:18:00    2017-01-29 16:18:00
64418    25405    724    2017-01-29 15:43:00    2017-01-29 15:43:00
64419    25405    850    2017-01-29 09:02:00    2017-01-29 09:02:00
64420    25405    887    2017-01-29 02:21:00    2017-01-29 02:21:00
64421    25405    718    2017-01-29 16:57:00    2017-01-29 16:57:00
64422    25405    678    2017-01-29 12:49:00    2017-01-29 12:49:00
64423    25406    929    2017-01-29 11:29:00    2017-01-29 11:29:00
64424    25406    830    2017-01-29 13:46:00    2017-01-29 13:46:00
64425    25406    766    2017-01-29 19:55:00    2017-01-29 19:55:00
64426    25406    772    2017-01-29 09:43:00    2017-01-29 09:43:00
64427    25406    926    2017-01-29 18:50:00    2017-01-29 18:50:00
64428    25407    547    2017-01-29 13:22:00    2017-01-29 13:22:00
64429    25407    502    2017-01-29 22:56:00    2017-01-29 22:56:00
64430    25407    713    2017-01-29 03:19:00    2017-01-29 03:19:00
64431    25407    627    2017-01-29 12:10:00    2017-01-29 12:10:00
64432    25407    627    2017-01-29 11:10:00    2017-01-29 11:10:00
64433    25408    752    2017-01-29 08:59:00    2017-01-29 08:59:00
64434    25408    809    2017-01-29 07:52:00    2017-01-29 07:52:00
64435    25408    932    2017-01-29 06:39:00    2017-01-29 06:39:00
64436    25408    923    2017-01-29 15:03:00    2017-01-29 15:03:00
64437    25408    478    2017-01-29 23:05:00    2017-01-29 23:05:00
64438    25409    612    2017-01-29 23:43:00    2017-01-29 23:43:00
64439    25409    650    2017-01-29 03:15:00    2017-01-29 03:15:00
64440    25409    553    2017-01-29 03:00:00    2017-01-29 03:00:00
64441    25409    590    2017-01-29 01:17:00    2017-01-29 01:17:00
64442    25409    888    2017-01-29 21:03:00    2017-01-29 21:03:00
64443    25410    569    2017-01-29 04:13:00    2017-01-29 04:13:00
64444    25410    792    2017-01-29 17:19:00    2017-01-29 17:19:00
64445    25410    825    2017-01-29 08:43:00    2017-01-29 08:43:00
64446    25410    925    2017-01-29 15:57:00    2017-01-29 15:57:00
64447    25410    922    2017-01-29 04:02:00    2017-01-29 04:02:00
64448    25411    512    2017-01-29 06:00:00    2017-01-29 06:00:00
64449    25411    652    2017-01-29 04:20:00    2017-01-29 04:20:00
64450    25411    571    2017-01-29 06:16:00    2017-01-29 06:16:00
64451    25411    627    2017-01-29 01:57:00    2017-01-29 01:57:00
64452    25411    545    2017-01-29 12:36:00    2017-01-29 12:36:00
64453    25412    521    2017-01-29 04:26:00    2017-01-29 04:26:00
64454    25412    515    2017-01-29 01:13:00    2017-01-29 01:13:00
64455    25412    542    2017-01-29 16:27:00    2017-01-29 16:27:00
64456    25412    827    2017-01-29 09:00:00    2017-01-29 09:00:00
64457    25412    607    2017-01-29 17:48:00    2017-01-29 17:48:00
64458    25413    627    2017-01-29 15:18:00    2017-01-29 15:18:00
64459    25413    572    2017-01-29 09:42:00    2017-01-29 09:42:00
64460    25413    920    2017-01-29 14:33:00    2017-01-29 14:33:00
64461    25413    834    2017-01-29 03:26:00    2017-01-29 03:26:00
64462    25413    837    2017-01-29 04:44:00    2017-01-29 04:44:00
64463    25414    620    2017-01-29 04:07:00    2017-01-29 04:07:00
64464    25414    672    2017-01-29 07:16:00    2017-01-29 07:16:00
64465    25414    753    2017-01-29 07:34:00    2017-01-29 07:34:00
64466    25414    623    2017-01-29 22:23:00    2017-01-29 22:23:00
64467    25414    749    2017-01-29 19:14:00    2017-01-29 19:14:00
64468    25415    596    2017-01-29 18:44:00    2017-01-29 18:44:00
64469    25415    716    2017-01-29 05:48:00    2017-01-29 05:48:00
64470    25415    815    2017-01-29 16:48:00    2017-01-29 16:48:00
64471    25415    530    2017-01-29 15:21:00    2017-01-29 15:21:00
64472    25415    526    2017-01-29 06:55:00    2017-01-29 06:55:00
64473    25416    802    2017-01-29 21:31:00    2017-01-29 21:31:00
64474    25416    508    2017-01-29 17:43:00    2017-01-29 17:43:00
64475    25416    756    2017-01-29 22:42:00    2017-01-29 22:42:00
64476    25416    770    2017-01-29 09:59:00    2017-01-29 09:59:00
64477    25416    554    2017-01-29 22:39:00    2017-01-29 22:39:00
64478    25417    845    2017-01-29 20:20:00    2017-01-29 20:20:00
64479    25417    810    2017-01-29 18:56:00    2017-01-29 18:56:00
64480    25417    810    2017-01-29 21:14:00    2017-01-29 21:14:00
64481    25417    609    2017-01-29 17:37:00    2017-01-29 17:37:00
64482    25417    862    2017-01-29 17:06:00    2017-01-29 17:06:00
64483    25418    923    2017-01-29 17:25:00    2017-01-29 17:25:00
64484    25418    489    2017-01-29 04:58:00    2017-01-29 04:58:00
64485    25418    537    2017-01-29 13:20:00    2017-01-29 13:20:00
64486    25418    928    2017-01-29 14:29:00    2017-01-29 14:29:00
64487    25418    897    2017-01-29 16:12:00    2017-01-29 16:12:00
64488    25419    673    2017-01-30 20:36:00    2017-01-30 20:36:00
64489    25419    464    2017-01-30 08:34:00    2017-01-30 08:34:00
64490    25419    721    2017-01-30 06:08:00    2017-01-30 06:08:00
64491    25419    901    2017-01-30 14:45:00    2017-01-30 14:45:00
64492    25419    826    2017-01-30 21:32:00    2017-01-30 21:32:00
64493    25420    772    2017-01-30 07:30:00    2017-01-30 07:30:00
64494    25420    559    2017-01-30 05:49:00    2017-01-30 05:49:00
64495    25420    500    2017-01-30 04:09:00    2017-01-30 04:09:00
64496    25420    618    2017-01-30 06:56:00    2017-01-30 06:56:00
64497    25420    839    2017-01-30 16:34:00    2017-01-30 16:34:00
64498    25421    696    2017-01-30 07:07:00    2017-01-30 07:07:00
64499    25421    690    2017-01-30 06:27:00    2017-01-30 06:27:00
64500    25421    777    2017-01-30 03:02:00    2017-01-30 03:02:00
64501    25421    822    2017-01-30 06:04:00    2017-01-30 06:04:00
64502    25421    750    2017-01-30 01:58:00    2017-01-30 01:58:00
64503    25422    634    2017-01-30 01:20:00    2017-01-30 01:20:00
64504    25422    808    2017-01-30 19:08:00    2017-01-30 19:08:00
64505    25422    755    2017-01-30 11:43:00    2017-01-30 11:43:00
64506    25422    518    2017-01-30 09:31:00    2017-01-30 09:31:00
64507    25422    485    2017-01-30 12:19:00    2017-01-30 12:19:00
64508    25423    785    2017-01-30 12:50:00    2017-01-30 12:50:00
64509    25423    530    2017-01-30 22:13:00    2017-01-30 22:13:00
64510    25423    620    2017-01-30 16:41:00    2017-01-30 16:41:00
64511    25423    555    2017-01-30 18:04:00    2017-01-30 18:04:00
64512    25423    759    2017-01-30 02:25:00    2017-01-30 02:25:00
64513    25424    944    2017-01-30 13:00:00    2017-01-30 13:00:00
64514    25424    924    2017-01-30 23:09:00    2017-01-30 23:09:00
64515    25424    483    2017-01-30 06:00:00    2017-01-30 06:00:00
64516    25424    717    2017-01-30 17:34:00    2017-01-30 17:34:00
64517    25424    749    2017-01-30 10:19:00    2017-01-30 10:19:00
64518    25425    789    2017-01-30 14:31:00    2017-01-30 14:31:00
64519    25425    684    2017-01-30 14:20:00    2017-01-30 14:20:00
64520    25425    948    2017-01-30 02:38:00    2017-01-30 02:38:00
64521    25425    588    2017-01-30 23:53:00    2017-01-30 23:53:00
64522    25425    582    2017-01-30 15:06:00    2017-01-30 15:06:00
64523    25426    824    2017-01-30 01:14:00    2017-01-30 01:14:00
64524    25426    530    2017-01-30 12:54:00    2017-01-30 12:54:00
64525    25426    463    2017-01-30 16:09:00    2017-01-30 16:09:00
64526    25426    563    2017-01-30 02:38:00    2017-01-30 02:38:00
64527    25426    583    2017-01-30 03:32:00    2017-01-30 03:32:00
64528    25427    772    2017-01-30 07:53:00    2017-01-30 07:53:00
64529    25427    649    2017-01-30 14:02:00    2017-01-30 14:02:00
64530    25427    742    2017-01-30 04:18:00    2017-01-30 04:18:00
64531    25427    625    2017-01-30 02:28:00    2017-01-30 02:28:00
64532    25427    705    2017-01-30 20:25:00    2017-01-30 20:25:00
64533    25428    920    2017-01-30 22:05:00    2017-01-30 22:05:00
64534    25428    777    2017-01-30 23:05:00    2017-01-30 23:05:00
64535    25428    536    2017-01-30 07:09:00    2017-01-30 07:09:00
64536    25428    774    2017-01-30 21:18:00    2017-01-30 21:18:00
64537    25428    577    2017-01-30 08:13:00    2017-01-30 08:13:00
64538    25429    765    2017-01-30 07:24:00    2017-01-30 07:24:00
64539    25429    739    2017-01-30 23:18:00    2017-01-30 23:18:00
64540    25429    618    2017-01-30 14:25:00    2017-01-30 14:25:00
64541    25429    915    2017-01-30 01:24:00    2017-01-30 01:24:00
64542    25429    850    2017-01-30 07:03:00    2017-01-30 07:03:00
64543    25430    516    2017-01-30 22:00:00    2017-01-30 22:00:00
64544    25430    707    2017-01-30 04:09:00    2017-01-30 04:09:00
64545    25430    802    2017-01-30 12:27:00    2017-01-30 12:27:00
64546    25430    490    2017-01-30 02:12:00    2017-01-30 02:12:00
64547    25430    681    2017-01-30 02:07:00    2017-01-30 02:07:00
64548    25431    782    2017-01-30 11:20:00    2017-01-30 11:20:00
64549    25431    946    2017-01-30 03:16:00    2017-01-30 03:16:00
64550    25431    843    2017-01-30 17:18:00    2017-01-30 17:18:00
64551    25431    739    2017-01-30 20:49:00    2017-01-30 20:49:00
64552    25431    815    2017-01-30 03:30:00    2017-01-30 03:30:00
64553    25432    891    2017-01-30 07:32:00    2017-01-30 07:32:00
64554    25432    715    2017-01-30 14:41:00    2017-01-30 14:41:00
64555    25432    647    2017-01-30 16:32:00    2017-01-30 16:32:00
64556    25432    474    2017-01-30 22:22:00    2017-01-30 22:22:00
64557    25432    657    2017-01-30 10:39:00    2017-01-30 10:39:00
64558    25433    512    2017-01-30 13:26:00    2017-01-30 13:26:00
64559    25433    619    2017-01-30 23:21:00    2017-01-30 23:21:00
64560    25433    508    2017-01-30 11:38:00    2017-01-30 11:38:00
64561    25433    744    2017-01-30 09:50:00    2017-01-30 09:50:00
64562    25433    664    2017-01-30 15:12:00    2017-01-30 15:12:00
64563    25434    933    2017-01-30 22:48:00    2017-01-30 22:48:00
64564    25434    808    2017-01-30 20:09:00    2017-01-30 20:09:00
64565    25434    543    2017-01-30 03:29:00    2017-01-30 03:29:00
64566    25434    657    2017-01-30 16:59:00    2017-01-30 16:59:00
64567    25434    930    2017-01-30 15:06:00    2017-01-30 15:06:00
64568    25435    934    2017-01-30 11:48:00    2017-01-30 11:48:00
64569    25435    813    2017-01-30 09:24:00    2017-01-30 09:24:00
64570    25435    491    2017-01-30 10:28:00    2017-01-30 10:28:00
64571    25435    937    2017-01-30 04:57:00    2017-01-30 04:57:00
64572    25435    584    2017-01-30 22:56:00    2017-01-30 22:56:00
64573    25436    884    2017-01-30 17:58:00    2017-01-30 17:58:00
64574    25436    503    2017-01-30 04:15:00    2017-01-30 04:15:00
64575    25436    937    2017-01-30 05:30:00    2017-01-30 05:30:00
64576    25436    826    2017-01-30 13:02:00    2017-01-30 13:02:00
64577    25436    833    2017-01-30 10:45:00    2017-01-30 10:45:00
64578    25437    565    2017-01-30 19:00:00    2017-01-30 19:00:00
64579    25437    843    2017-01-30 19:00:00    2017-01-30 19:00:00
64580    25437    493    2017-01-30 19:02:00    2017-01-30 19:02:00
64581    25437    800    2017-01-30 10:33:00    2017-01-30 10:33:00
64582    25437    683    2017-01-30 16:52:00    2017-01-30 16:52:00
64583    25438    915    2017-01-31 17:08:00    2017-01-31 17:08:00
64584    25438    750    2017-01-31 04:38:00    2017-01-31 04:38:00
64585    25438    743    2017-01-31 22:13:00    2017-01-31 22:13:00
64586    25438    960    2017-01-31 08:18:00    2017-01-31 08:18:00
64587    25438    813    2017-01-31 20:39:00    2017-01-31 20:39:00
64588    25439    761    2017-01-31 05:53:00    2017-01-31 05:53:00
64589    25439    792    2017-01-31 22:52:00    2017-01-31 22:52:00
64590    25439    577    2017-01-31 14:54:00    2017-01-31 14:54:00
64591    25439    616    2017-01-31 17:32:00    2017-01-31 17:32:00
64592    25439    782    2017-01-31 13:43:00    2017-01-31 13:43:00
64593    25440    509    2017-01-31 16:05:00    2017-01-31 16:05:00
64594    25440    898    2017-01-31 09:20:00    2017-01-31 09:20:00
64595    25440    520    2017-01-31 21:33:00    2017-01-31 21:33:00
64596    25440    489    2017-01-31 12:29:00    2017-01-31 12:29:00
64597    25440    567    2017-01-31 14:50:00    2017-01-31 14:50:00
64598    25441    641    2017-01-31 18:15:00    2017-01-31 18:15:00
64599    25441    686    2017-01-31 19:05:00    2017-01-31 19:05:00
64600    25441    552    2017-01-31 18:01:00    2017-01-31 18:01:00
64601    25441    827    2017-01-31 11:10:00    2017-01-31 11:10:00
64602    25441    570    2017-01-31 04:54:00    2017-01-31 04:54:00
64603    25442    919    2017-01-31 14:46:00    2017-01-31 14:46:00
64604    25442    578    2017-01-31 09:58:00    2017-01-31 09:58:00
64605    25442    719    2017-01-31 17:38:00    2017-01-31 17:38:00
64606    25442    755    2017-01-31 10:03:00    2017-01-31 10:03:00
64607    25442    880    2017-01-31 16:36:00    2017-01-31 16:36:00
64608    25443    889    2017-01-31 09:54:00    2017-01-31 09:54:00
64609    25443    506    2017-01-31 23:46:00    2017-01-31 23:46:00
64610    25443    628    2017-01-31 21:08:00    2017-01-31 21:08:00
64611    25443    867    2017-01-31 01:44:00    2017-01-31 01:44:00
64612    25443    923    2017-01-31 19:39:00    2017-01-31 19:39:00
64613    25444    742    2017-01-31 23:32:00    2017-01-31 23:32:00
64614    25444    507    2017-01-31 19:43:00    2017-01-31 19:43:00
64615    25444    607    2017-01-31 02:41:00    2017-01-31 02:41:00
64616    25444    634    2017-01-31 19:52:00    2017-01-31 19:52:00
64617    25444    480    2017-01-31 02:43:00    2017-01-31 02:43:00
64618    25445    762    2017-01-31 17:16:00    2017-01-31 17:16:00
64619    25445    481    2017-01-31 01:53:00    2017-01-31 01:53:00
64620    25445    856    2017-01-31 06:37:00    2017-01-31 06:37:00
64621    25445    782    2017-01-31 04:00:00    2017-01-31 04:00:00
64622    25445    656    2017-01-31 02:04:00    2017-01-31 02:04:00
64623    25446    922    2017-01-31 19:32:00    2017-01-31 19:32:00
64624    25446    500    2017-01-31 13:51:00    2017-01-31 13:51:00
64625    25446    463    2017-01-31 14:27:00    2017-01-31 14:27:00
64626    25446    788    2017-01-31 15:34:00    2017-01-31 15:34:00
64627    25446    550    2017-01-31 17:53:00    2017-01-31 17:53:00
64628    25447    722    2017-01-31 20:43:00    2017-01-31 20:43:00
64629    25447    507    2017-01-31 19:02:00    2017-01-31 19:02:00
64630    25447    911    2017-01-31 01:01:00    2017-01-31 01:01:00
64631    25447    902    2017-01-31 04:29:00    2017-01-31 04:29:00
64632    25447    836    2017-01-31 18:19:00    2017-01-31 18:19:00
64633    25448    807    2017-01-31 12:33:00    2017-01-31 12:33:00
64634    25448    716    2017-01-31 06:08:00    2017-01-31 06:08:00
64635    25448    950    2017-01-31 17:47:00    2017-01-31 17:47:00
64636    25448    507    2017-01-31 08:04:00    2017-01-31 08:04:00
64637    25448    729    2017-01-31 12:22:00    2017-01-31 12:22:00
64638    25449    914    2017-01-31 01:06:00    2017-01-31 01:06:00
64639    25449    483    2017-01-31 20:36:00    2017-01-31 20:36:00
64640    25449    540    2017-01-31 10:17:00    2017-01-31 10:17:00
64641    25449    740    2017-01-31 11:07:00    2017-01-31 11:07:00
64642    25449    947    2017-01-31 01:16:00    2017-01-31 01:16:00
64643    25450    576    2017-01-31 16:21:00    2017-01-31 16:21:00
64644    25450    949    2017-01-31 23:30:00    2017-01-31 23:30:00
64645    25450    483    2017-01-31 21:25:00    2017-01-31 21:25:00
64646    25450    526    2017-01-31 18:24:00    2017-01-31 18:24:00
64647    25450    500    2017-01-31 19:24:00    2017-01-31 19:24:00
64648    25451    546    2017-01-31 04:17:00    2017-01-31 04:17:00
64649    25451    626    2017-01-31 09:28:00    2017-01-31 09:28:00
64650    25451    770    2017-01-31 12:28:00    2017-01-31 12:28:00
64651    25451    895    2017-01-31 11:50:00    2017-01-31 11:50:00
64652    25451    498    2017-01-31 09:25:00    2017-01-31 09:25:00
64653    25452    483    2017-01-31 14:05:00    2017-01-31 14:05:00
64654    25452    740    2017-01-31 23:33:00    2017-01-31 23:33:00
64655    25452    896    2017-01-31 01:14:00    2017-01-31 01:14:00
64656    25452    813    2017-01-31 22:45:00    2017-01-31 22:45:00
64657    25452    665    2017-01-31 01:47:00    2017-01-31 01:47:00
64658    25453    887    2017-01-31 12:04:00    2017-01-31 12:04:00
64659    25453    799    2017-01-31 09:34:00    2017-01-31 09:34:00
64660    25453    922    2017-01-31 01:31:00    2017-01-31 01:31:00
64661    25453    836    2017-01-31 12:10:00    2017-01-31 12:10:00
64662    25453    474    2017-01-31 12:55:00    2017-01-31 12:55:00
64663    25454    821    2017-01-31 07:30:00    2017-01-31 07:30:00
64664    25454    487    2017-01-31 08:35:00    2017-01-31 08:35:00
64665    25454    643    2017-01-31 15:29:00    2017-01-31 15:29:00
64666    25454    834    2017-01-31 15:51:00    2017-01-31 15:51:00
64667    25454    466    2017-01-31 20:38:00    2017-01-31 20:38:00
64668    25455    593    2017-01-31 01:13:00    2017-01-31 01:13:00
64669    25455    596    2017-01-31 11:45:00    2017-01-31 11:45:00
64670    25455    687    2017-01-31 21:48:00    2017-01-31 21:48:00
64671    25455    682    2017-01-31 01:13:00    2017-01-31 01:13:00
64672    25455    475    2017-01-31 01:35:00    2017-01-31 01:35:00
64673    25456    928    2017-01-31 17:15:00    2017-01-31 17:15:00
64674    25456    537    2017-01-31 04:19:00    2017-01-31 04:19:00
64675    25456    574    2017-01-31 01:10:00    2017-01-31 01:10:00
64676    25456    720    2017-01-31 17:57:00    2017-01-31 17:57:00
64677    25456    695    2017-01-31 14:31:00    2017-01-31 14:31:00
64678    25457    943    2017-01-31 15:36:00    2017-01-31 15:36:00
64679    25457    648    2017-01-31 13:26:00    2017-01-31 13:26:00
64680    25457    898    2017-01-31 03:37:00    2017-01-31 03:37:00
64681    25457    629    2017-01-31 17:00:00    2017-01-31 17:00:00
64682    25457    948    2017-01-31 23:33:00    2017-01-31 23:33:00
64683    25458    814    2017-01-31 17:43:00    2017-01-31 17:43:00
64684    25458    837    2017-01-31 23:13:00    2017-01-31 23:13:00
64685    25458    863    2017-01-31 03:58:00    2017-01-31 03:58:00
64686    25458    516    2017-01-31 11:04:00    2017-01-31 11:04:00
64687    25458    885    2017-01-31 20:18:00    2017-01-31 20:18:00
64688    25459    690    2017-01-31 06:51:00    2017-01-31 06:51:00
64689    25459    878    2017-01-31 20:50:00    2017-01-31 20:50:00
64690    25459    580    2017-01-31 08:12:00    2017-01-31 08:12:00
64691    25459    622    2017-01-31 04:11:00    2017-01-31 04:11:00
64692    25459    868    2017-01-31 01:58:00    2017-01-31 01:58:00
64693    25460    517    2017-01-31 13:13:00    2017-01-31 13:13:00
64694    25460    772    2017-01-31 14:15:00    2017-01-31 14:15:00
64695    25460    851    2017-01-31 08:40:00    2017-01-31 08:40:00
64696    25460    526    2017-01-31 08:44:00    2017-01-31 08:44:00
64697    25460    520    2017-01-31 03:31:00    2017-01-31 03:31:00
64698    25461    840    2017-01-31 06:05:00    2017-01-31 06:05:00
64699    25461    629    2017-01-31 09:00:00    2017-01-31 09:00:00
64700    25461    671    2017-01-31 12:46:00    2017-01-31 12:46:00
64701    25461    943    2017-01-31 12:49:00    2017-01-31 12:49:00
64702    25461    863    2017-01-31 01:25:00    2017-01-31 01:25:00
64703    25462    789    2017-01-31 21:00:00    2017-01-31 21:00:00
64704    25462    483    2017-01-31 23:34:00    2017-01-31 23:34:00
64705    25462    833    2017-01-31 13:50:00    2017-01-31 13:50:00
64706    25462    467    2017-01-31 22:57:00    2017-01-31 22:57:00
64707    25462    907    2017-01-31 16:17:00    2017-01-31 16:17:00
64708    25463    718    2017-02-01 17:51:00    2017-02-01 17:51:00
64709    25463    696    2017-02-01 12:48:00    2017-02-01 12:48:00
64710    25463    697    2017-02-01 06:06:00    2017-02-01 06:06:00
64711    25463    878    2017-02-01 15:16:00    2017-02-01 15:16:00
64712    25463    937    2017-02-01 08:37:00    2017-02-01 08:37:00
64713    25464    508    2017-02-01 01:51:00    2017-02-01 01:51:00
64714    25464    866    2017-02-01 16:23:00    2017-02-01 16:23:00
64715    25464    895    2017-02-01 23:01:00    2017-02-01 23:01:00
64716    25464    831    2017-02-01 18:08:00    2017-02-01 18:08:00
64717    25464    726    2017-02-01 23:16:00    2017-02-01 23:16:00
64718    25465    955    2017-02-01 08:28:00    2017-02-01 08:28:00
64719    25465    799    2017-02-01 15:29:00    2017-02-01 15:29:00
64720    25465    836    2017-02-01 08:10:00    2017-02-01 08:10:00
64721    25465    607    2017-02-01 03:45:00    2017-02-01 03:45:00
64722    25465    584    2017-02-01 01:32:00    2017-02-01 01:32:00
64723    25466    803    2017-02-01 06:46:00    2017-02-01 06:46:00
64724    25466    552    2017-02-01 06:24:00    2017-02-01 06:24:00
64725    25466    765    2017-02-01 02:13:00    2017-02-01 02:13:00
64726    25466    653    2017-02-01 12:39:00    2017-02-01 12:39:00
64727    25466    473    2017-02-01 20:29:00    2017-02-01 20:29:00
64728    25467    803    2017-02-01 03:32:00    2017-02-01 03:32:00
64729    25467    906    2017-02-01 04:45:00    2017-02-01 04:45:00
64730    25467    933    2017-02-01 12:36:00    2017-02-01 12:36:00
64731    25467    733    2017-02-01 16:15:00    2017-02-01 16:15:00
64732    25467    570    2017-02-01 03:44:00    2017-02-01 03:44:00
64733    25468    890    2017-02-01 14:44:00    2017-02-01 14:44:00
64734    25468    629    2017-02-01 07:26:00    2017-02-01 07:26:00
64735    25468    533    2017-02-01 21:04:00    2017-02-01 21:04:00
64736    25468    574    2017-02-01 12:50:00    2017-02-01 12:50:00
64737    25468    778    2017-02-01 18:07:00    2017-02-01 18:07:00
64738    25469    617    2017-02-01 15:43:00    2017-02-01 15:43:00
64739    25469    900    2017-02-01 18:37:00    2017-02-01 18:37:00
64740    25469    645    2017-02-01 04:40:00    2017-02-01 04:40:00
64741    25469    529    2017-02-01 19:11:00    2017-02-01 19:11:00
64742    25469    582    2017-02-01 04:45:00    2017-02-01 04:45:00
64743    25470    707    2017-02-01 17:48:00    2017-02-01 17:48:00
64744    25470    821    2017-02-01 07:31:00    2017-02-01 07:31:00
64745    25470    722    2017-02-01 11:00:00    2017-02-01 11:00:00
64746    25470    632    2017-02-01 04:28:00    2017-02-01 04:28:00
64747    25470    902    2017-02-01 06:27:00    2017-02-01 06:27:00
64748    25471    849    2017-02-01 12:00:00    2017-02-01 12:00:00
64749    25471    634    2017-02-01 06:15:00    2017-02-01 06:15:00
64750    25471    763    2017-02-01 20:12:00    2017-02-01 20:12:00
64751    25471    813    2017-02-01 02:17:00    2017-02-01 02:17:00
64752    25471    492    2017-02-01 20:24:00    2017-02-01 20:24:00
64753    25472    851    2017-02-01 03:29:00    2017-02-01 03:29:00
64754    25472    785    2017-02-01 16:55:00    2017-02-01 16:55:00
64755    25472    667    2017-02-01 02:24:00    2017-02-01 02:24:00
64756    25472    664    2017-02-01 17:49:00    2017-02-01 17:49:00
64757    25472    483    2017-02-01 05:05:00    2017-02-01 05:05:00
64758    25473    815    2017-02-01 08:29:00    2017-02-01 08:29:00
64759    25473    848    2017-02-01 08:34:00    2017-02-01 08:34:00
64760    25473    493    2017-02-01 06:57:00    2017-02-01 06:57:00
64761    25473    533    2017-02-01 23:48:00    2017-02-01 23:48:00
64762    25473    484    2017-02-01 03:53:00    2017-02-01 03:53:00
64763    25474    760    2017-02-01 17:09:00    2017-02-01 17:09:00
64764    25474    760    2017-02-01 12:01:00    2017-02-01 12:01:00
64765    25474    775    2017-02-01 14:02:00    2017-02-01 14:02:00
64766    25474    897    2017-02-01 12:22:00    2017-02-01 12:22:00
64767    25474    944    2017-02-01 11:06:00    2017-02-01 11:06:00
64768    25475    780    2017-02-01 09:22:00    2017-02-01 09:22:00
64769    25475    524    2017-02-01 04:22:00    2017-02-01 04:22:00
64770    25475    561    2017-02-01 07:37:00    2017-02-01 07:37:00
64771    25475    571    2017-02-01 02:11:00    2017-02-01 02:11:00
64772    25475    633    2017-02-01 13:20:00    2017-02-01 13:20:00
64773    25476    843    2017-02-01 13:20:00    2017-02-01 13:20:00
64774    25476    519    2017-02-01 03:29:00    2017-02-01 03:29:00
64775    25476    781    2017-02-01 20:28:00    2017-02-01 20:28:00
64776    25476    557    2017-02-01 07:47:00    2017-02-01 07:47:00
64777    25476    837    2017-02-01 09:28:00    2017-02-01 09:28:00
64778    25477    694    2017-02-01 08:08:00    2017-02-01 08:08:00
64779    25477    725    2017-02-01 08:35:00    2017-02-01 08:35:00
64780    25477    765    2017-02-01 05:56:00    2017-02-01 05:56:00
64781    25477    796    2017-02-01 06:00:00    2017-02-01 06:00:00
64782    25477    890    2017-02-01 06:50:00    2017-02-01 06:50:00
64783    25478    829    2017-02-01 03:42:00    2017-02-01 03:42:00
64784    25478    843    2017-02-01 22:55:00    2017-02-01 22:55:00
64785    25478    709    2017-02-01 03:54:00    2017-02-01 03:54:00
64786    25478    563    2017-02-01 22:03:00    2017-02-01 22:03:00
64787    25478    946    2017-02-01 07:42:00    2017-02-01 07:42:00
64788    25479    660    2017-02-01 03:09:00    2017-02-01 03:09:00
64789    25479    635    2017-02-01 08:16:00    2017-02-01 08:16:00
64790    25479    703    2017-02-01 12:44:00    2017-02-01 12:44:00
64791    25479    728    2017-02-01 02:42:00    2017-02-01 02:42:00
64792    25479    653    2017-02-01 13:03:00    2017-02-01 13:03:00
64793    25480    468    2017-02-01 04:40:00    2017-02-01 04:40:00
64794    25480    510    2017-02-01 09:05:00    2017-02-01 09:05:00
64795    25480    587    2017-02-01 13:48:00    2017-02-01 13:48:00
64796    25480    730    2017-02-01 19:24:00    2017-02-01 19:24:00
64797    25480    811    2017-02-01 12:42:00    2017-02-01 12:42:00
64798    25481    714    2017-02-01 22:53:00    2017-02-01 22:53:00
64799    25481    467    2017-02-01 08:15:00    2017-02-01 08:15:00
64800    25481    468    2017-02-01 12:00:00    2017-02-01 12:00:00
64801    25481    600    2017-02-01 16:28:00    2017-02-01 16:28:00
64802    25481    773    2017-02-01 03:26:00    2017-02-01 03:26:00
64803    25482    954    2017-02-01 02:00:00    2017-02-01 02:00:00
64804    25482    616    2017-02-01 23:55:00    2017-02-01 23:55:00
64805    25482    950    2017-02-01 06:39:00    2017-02-01 06:39:00
64806    25482    813    2017-02-01 18:46:00    2017-02-01 18:46:00
64807    25482    789    2017-02-01 16:29:00    2017-02-01 16:29:00
64808    25483    737    2017-02-01 05:41:00    2017-02-01 05:41:00
64809    25483    639    2017-02-01 07:46:00    2017-02-01 07:46:00
64810    25483    592    2017-02-01 04:03:00    2017-02-01 04:03:00
64811    25483    465    2017-02-01 23:25:00    2017-02-01 23:25:00
64812    25483    682    2017-02-01 05:08:00    2017-02-01 05:08:00
64813    25484    541    2017-02-01 05:44:00    2017-02-01 05:44:00
64814    25484    693    2017-02-01 11:50:00    2017-02-01 11:50:00
64815    25484    628    2017-02-01 04:44:00    2017-02-01 04:44:00
64816    25484    771    2017-02-01 12:20:00    2017-02-01 12:20:00
64817    25484    909    2017-02-01 16:21:00    2017-02-01 16:21:00
64818    25485    914    2017-02-01 07:58:00    2017-02-01 07:58:00
64819    25485    958    2017-02-01 14:54:00    2017-02-01 14:54:00
64820    25485    582    2017-02-01 13:47:00    2017-02-01 13:47:00
64821    25485    560    2017-02-01 05:05:00    2017-02-01 05:05:00
64822    25485    531    2017-02-01 13:57:00    2017-02-01 13:57:00
64823    25486    595    2017-02-01 21:22:00    2017-02-01 21:22:00
64824    25486    705    2017-02-01 22:40:00    2017-02-01 22:40:00
64825    25486    764    2017-02-01 03:44:00    2017-02-01 03:44:00
64826    25486    943    2017-02-01 18:40:00    2017-02-01 18:40:00
64827    25486    601    2017-02-01 01:01:00    2017-02-01 01:01:00
64828    25487    886    2017-02-01 08:07:00    2017-02-01 08:07:00
64829    25487    916    2017-02-01 01:45:00    2017-02-01 01:45:00
64830    25487    463    2017-02-01 23:19:00    2017-02-01 23:19:00
64831    25487    634    2017-02-01 21:23:00    2017-02-01 21:23:00
64832    25487    559    2017-02-01 07:19:00    2017-02-01 07:19:00
64833    25488    953    2017-02-01 14:57:00    2017-02-01 14:57:00
64834    25488    578    2017-02-01 16:20:00    2017-02-01 16:20:00
64835    25488    757    2017-02-01 19:21:00    2017-02-01 19:21:00
64836    25488    631    2017-02-01 10:52:00    2017-02-01 10:52:00
64837    25488    660    2017-02-01 04:02:00    2017-02-01 04:02:00
64838    25489    919    2017-02-01 18:49:00    2017-02-01 18:49:00
64839    25489    596    2017-02-01 17:00:00    2017-02-01 17:00:00
64840    25489    937    2017-02-01 12:44:00    2017-02-01 12:44:00
64841    25489    896    2017-02-01 08:10:00    2017-02-01 08:10:00
64842    25489    618    2017-02-01 04:43:00    2017-02-01 04:43:00
64843    25490    615    2017-02-01 10:14:00    2017-02-01 10:14:00
64844    25490    747    2017-02-01 06:49:00    2017-02-01 06:49:00
64845    25490    936    2017-02-01 20:37:00    2017-02-01 20:37:00
64846    25490    888    2017-02-01 20:21:00    2017-02-01 20:21:00
64847    25490    681    2017-02-01 04:49:00    2017-02-01 04:49:00
64848    25491    617    2017-02-01 23:12:00    2017-02-01 23:12:00
64849    25491    953    2017-02-01 01:21:00    2017-02-01 01:21:00
64850    25491    716    2017-02-01 08:10:00    2017-02-01 08:10:00
64851    25491    710    2017-02-01 12:18:00    2017-02-01 12:18:00
64852    25491    787    2017-02-01 04:38:00    2017-02-01 04:38:00
64853    25492    894    2017-02-01 23:21:00    2017-02-01 23:21:00
64854    25492    579    2017-02-01 22:15:00    2017-02-01 22:15:00
64855    25492    894    2017-02-01 11:29:00    2017-02-01 11:29:00
64856    25492    686    2017-02-01 10:26:00    2017-02-01 10:26:00
64858    25493    951    2017-02-01 16:56:00    2017-02-01 16:56:00
64859    25493    543    2017-02-01 21:28:00    2017-02-01 21:28:00
64860    25493    842    2017-02-01 09:14:00    2017-02-01 09:14:00
64861    25493    780    2017-02-01 07:39:00    2017-02-01 07:39:00
64862    25493    489    2017-02-01 22:06:00    2017-02-01 22:06:00
64863    25494    678    2017-02-01 23:28:00    2017-02-01 23:28:00
64864    25494    861    2017-02-01 13:41:00    2017-02-01 13:41:00
64865    25494    533    2017-02-01 12:56:00    2017-02-01 12:56:00
64866    25494    800    2017-02-01 23:55:00    2017-02-01 23:55:00
64867    25494    524    2017-02-01 11:31:00    2017-02-01 11:31:00
64868    25495    654    2017-02-01 12:25:00    2017-02-01 12:25:00
64869    25495    480    2017-02-01 21:20:00    2017-02-01 21:20:00
64870    25495    776    2017-02-01 15:05:00    2017-02-01 15:05:00
64871    25495    796    2017-02-01 03:10:00    2017-02-01 03:10:00
64872    25495    912    2017-02-01 02:55:00    2017-02-01 02:55:00
64873    25496    763    2017-02-01 03:58:00    2017-02-01 03:58:00
64874    25496    470    2017-02-01 17:24:00    2017-02-01 17:24:00
64875    25496    619    2017-02-01 05:48:00    2017-02-01 05:48:00
64876    25496    940    2017-02-01 01:04:00    2017-02-01 01:04:00
64877    25496    573    2017-02-01 10:44:00    2017-02-01 10:44:00
64878    25497    708    2017-02-01 17:26:00    2017-02-01 17:26:00
64879    25497    752    2017-02-01 03:52:00    2017-02-01 03:52:00
64880    25497    476    2017-02-01 20:04:00    2017-02-01 20:04:00
64881    25497    732    2017-02-01 23:32:00    2017-02-01 23:32:00
64882    25497    858    2017-02-01 04:48:00    2017-02-01 04:48:00
64883    25498    846    2017-02-01 11:44:00    2017-02-01 11:44:00
64884    25498    711    2017-02-01 16:38:00    2017-02-01 16:38:00
64885    25498    627    2017-02-01 06:57:00    2017-02-01 06:57:00
64886    25498    804    2017-02-01 01:27:00    2017-02-01 01:27:00
64887    25498    574    2017-02-01 22:01:00    2017-02-01 22:01:00
64888    25499    631    2017-02-01 20:00:00    2017-02-01 20:00:00
64889    25499    568    2017-02-01 10:56:00    2017-02-01 10:56:00
64890    25499    597    2017-02-01 03:09:00    2017-02-01 03:09:00
64891    25499    641    2017-02-01 19:19:00    2017-02-01 19:19:00
64892    25499    592    2017-02-01 07:56:00    2017-02-01 07:56:00
64893    25500    776    2017-02-01 02:51:00    2017-02-01 02:51:00
64894    25500    519    2017-02-01 06:57:00    2017-02-01 06:57:00
64895    25500    939    2017-02-01 21:22:00    2017-02-01 21:22:00
64896    25500    739    2017-02-02 00:00:00    2017-02-02 00:00:00
64897    25500    760    2017-02-01 12:18:00    2017-02-01 12:18:00
64898    25501    639    2017-02-01 03:59:00    2017-02-01 03:59:00
64899    25501    843    2017-02-01 19:50:00    2017-02-01 19:50:00
64900    25501    946    2017-02-01 19:45:00    2017-02-01 19:45:00
64901    25501    577    2017-02-01 22:44:00    2017-02-01 22:44:00
64902    25501    553    2017-02-01 14:28:00    2017-02-01 14:28:00
64903    25502    507    2017-02-01 07:53:00    2017-02-01 07:53:00
64904    25502    732    2017-02-01 09:49:00    2017-02-01 09:49:00
64905    25502    509    2017-02-01 17:02:00    2017-02-01 17:02:00
64906    25502    736    2017-02-01 16:42:00    2017-02-01 16:42:00
64907    25502    910    2017-02-01 19:58:00    2017-02-01 19:58:00
64908    25503    810    2017-02-01 02:23:00    2017-02-01 02:23:00
64909    25503    822    2017-02-01 12:58:00    2017-02-01 12:58:00
64910    25503    769    2017-02-01 03:31:00    2017-02-01 03:31:00
64911    25503    736    2017-02-01 09:48:00    2017-02-01 09:48:00
64912    25503    708    2017-02-01 06:30:00    2017-02-01 06:30:00
64913    25504    904    2017-02-01 06:10:00    2017-02-01 06:10:00
64914    25504    709    2017-02-01 19:23:00    2017-02-01 19:23:00
64915    25504    598    2017-02-01 19:53:00    2017-02-01 19:53:00
64916    25504    569    2017-02-01 08:35:00    2017-02-01 08:35:00
64917    25504    510    2017-02-01 05:51:00    2017-02-01 05:51:00
64918    25505    659    2017-02-01 06:43:00    2017-02-01 06:43:00
64919    25505    615    2017-02-01 06:28:00    2017-02-01 06:28:00
64920    25505    631    2017-02-01 09:10:00    2017-02-01 09:10:00
64921    25505    663    2017-02-01 16:20:00    2017-02-01 16:20:00
64922    25505    481    2017-02-01 23:20:00    2017-02-01 23:20:00
64923    25506    779    2017-02-01 01:29:00    2017-02-01 01:29:00
64924    25506    895    2017-02-01 04:15:00    2017-02-01 04:15:00
64925    25506    683    2017-02-01 08:09:00    2017-02-01 08:09:00
64926    25506    671    2017-02-01 12:02:00    2017-02-01 12:02:00
64927    25506    527    2017-02-01 03:38:00    2017-02-01 03:38:00
64928    25507    548    2017-02-01 15:40:00    2017-02-01 15:40:00
64929    25507    953    2017-02-01 03:19:00    2017-02-01 03:19:00
64930    25507    952    2017-02-01 02:04:00    2017-02-01 02:04:00
64931    25507    694    2017-02-01 05:06:00    2017-02-01 05:06:00
64932    25507    664    2017-02-01 21:20:00    2017-02-01 21:20:00
64933    25508    466    2017-02-01 18:01:00    2017-02-01 18:01:00
64934    25508    583    2017-02-01 11:49:00    2017-02-01 11:49:00
64935    25508    613    2017-02-01 03:10:00    2017-02-01 03:10:00
64936    25508    768    2017-02-01 13:44:00    2017-02-01 13:44:00
64937    25508    935    2017-02-01 17:39:00    2017-02-01 17:39:00
64938    25509    486    2017-02-01 13:08:00    2017-02-01 13:08:00
64939    25509    618    2017-02-01 14:55:00    2017-02-01 14:55:00
64940    25509    511    2017-02-01 12:19:00    2017-02-01 12:19:00
64941    25509    656    2017-02-01 20:40:00    2017-02-01 20:40:00
64942    25509    951    2017-02-01 19:45:00    2017-02-01 19:45:00
64943    25510    932    2017-02-01 01:45:00    2017-02-01 01:45:00
64944    25510    743    2017-02-01 05:39:00    2017-02-01 05:39:00
64945    25510    577    2017-02-01 04:50:00    2017-02-01 04:50:00
64946    25510    491    2017-02-01 13:17:00    2017-02-01 13:17:00
64947    25510    568    2017-02-01 22:29:00    2017-02-01 22:29:00
64948    25511    756    2017-02-01 01:44:00    2017-02-01 01:44:00
64949    25511    721    2017-02-01 08:35:00    2017-02-01 08:35:00
64950    25511    623    2017-02-01 21:17:00    2017-02-01 21:17:00
64951    25511    789    2017-02-01 12:08:00    2017-02-01 12:08:00
64952    25511    470    2017-02-01 04:22:00    2017-02-01 04:22:00
64953    25512    555    2017-02-01 09:39:00    2017-02-01 09:39:00
64954    25512    715    2017-02-01 10:59:00    2017-02-01 10:59:00
64955    25512    689    2017-02-01 03:14:00    2017-02-01 03:14:00
64956    25512    938    2017-02-01 13:18:00    2017-02-01 13:18:00
64957    25512    539    2017-02-01 21:32:00    2017-02-01 21:32:00
64958    25513    682    2017-02-01 22:58:00    2017-02-01 22:58:00
64959    25513    823    2017-02-01 13:23:00    2017-02-01 13:23:00
64960    25513    471    2017-02-01 20:40:00    2017-02-01 20:40:00
64961    25513    579    2017-02-01 19:52:00    2017-02-01 19:52:00
64962    25513    547    2017-02-01 19:30:00    2017-02-01 19:30:00
64963    25514    620    2017-02-01 21:48:00    2017-02-01 21:48:00
64964    25514    597    2017-02-01 20:20:00    2017-02-01 20:20:00
64965    25514    532    2017-02-01 01:36:00    2017-02-01 01:36:00
64966    25514    478    2017-02-01 01:26:00    2017-02-01 01:26:00
64967    25514    471    2017-02-01 14:12:00    2017-02-01 14:12:00
64968    25515    719    2017-02-01 02:09:00    2017-02-01 02:09:00
64969    25515    632    2017-02-01 13:59:00    2017-02-01 13:59:00
64970    25515    915    2017-02-01 09:39:00    2017-02-01 09:39:00
64971    25515    482    2017-02-01 23:07:00    2017-02-01 23:07:00
64972    25515    767    2017-02-01 06:08:00    2017-02-01 06:08:00
64973    25516    578    2017-02-01 16:15:00    2017-02-01 16:15:00
64974    25516    857    2017-02-01 12:37:00    2017-02-01 12:37:00
64975    25516    948    2017-02-01 04:05:00    2017-02-01 04:05:00
64976    25516    709    2017-02-01 17:49:00    2017-02-01 17:49:00
64977    25516    683    2017-02-01 11:41:00    2017-02-01 11:41:00
64978    25517    854    2017-02-01 20:04:00    2017-02-01 20:04:00
64979    25517    701    2017-02-01 15:43:00    2017-02-01 15:43:00
64980    25517    752    2017-02-01 21:33:00    2017-02-01 21:33:00
64981    25517    875    2017-02-01 02:58:00    2017-02-01 02:58:00
64982    25517    511    2017-02-01 07:11:00    2017-02-01 07:11:00
64983    25518    691    2017-02-01 02:43:00    2017-02-01 02:43:00
64984    25518    493    2017-02-01 01:48:00    2017-02-01 01:48:00
64985    25518    824    2017-02-01 05:50:00    2017-02-01 05:50:00
64986    25518    921    2017-02-01 07:38:00    2017-02-01 07:38:00
64987    25518    533    2017-02-01 08:01:00    2017-02-01 08:01:00
64988    25519    616    2017-02-01 18:19:00    2017-02-01 18:19:00
64989    25519    715    2017-02-01 21:00:00    2017-02-01 21:00:00
64990    25519    730    2017-02-01 05:30:00    2017-02-01 05:30:00
64991    25519    930    2017-02-01 17:41:00    2017-02-01 17:41:00
64992    25519    942    2017-02-01 23:02:00    2017-02-01 23:02:00
64993    25520    715    2017-02-01 15:29:00    2017-02-01 15:29:00
64994    25520    897    2017-02-01 07:31:00    2017-02-01 07:31:00
64995    25520    897    2017-02-01 21:38:00    2017-02-01 21:38:00
64996    25520    598    2017-02-01 04:48:00    2017-02-01 04:48:00
64997    25520    834    2017-02-01 17:21:00    2017-02-01 17:21:00
64998    25521    469    2017-02-01 11:17:00    2017-02-01 11:17:00
64999    25521    768    2017-02-01 10:54:00    2017-02-01 10:54:00
65000    25521    604    2017-02-01 04:25:00    2017-02-01 04:25:00
65001    25521    609    2017-02-01 20:11:00    2017-02-01 20:11:00
65002    25521    720    2017-02-01 20:48:00    2017-02-01 20:48:00
65003    25522    616    2017-02-01 12:07:00    2017-02-01 12:07:00
65004    25522    701    2017-02-01 23:38:00    2017-02-01 23:38:00
65005    25522    939    2017-02-01 08:19:00    2017-02-01 08:19:00
65006    25522    733    2017-02-01 23:40:00    2017-02-01 23:40:00
65007    25522    785    2017-02-01 20:29:00    2017-02-01 20:29:00
65008    25523    759    2017-02-01 11:22:00    2017-02-01 11:22:00
65009    25523    539    2017-02-01 22:13:00    2017-02-01 22:13:00
65010    25523    669    2017-02-01 16:06:00    2017-02-01 16:06:00
65011    25523    470    2017-02-01 16:20:00    2017-02-01 16:20:00
65012    25523    768    2017-02-01 04:02:00    2017-02-01 04:02:00
65013    25524    837    2017-02-01 09:21:00    2017-02-01 09:21:00
65014    25524    825    2017-02-01 01:23:00    2017-02-01 01:23:00
65015    25524    630    2017-02-01 05:35:00    2017-02-01 05:35:00
65016    25524    809    2017-02-01 06:53:00    2017-02-01 06:53:00
65017    25524    855    2017-02-01 18:11:00    2017-02-01 18:11:00
65018    25525    791    2017-02-01 20:56:00    2017-02-01 20:56:00
65019    25525    464    2017-02-01 01:38:00    2017-02-01 01:38:00
65020    25525    887    2017-02-01 17:15:00    2017-02-01 17:15:00
65021    25525    762    2017-02-01 03:05:00    2017-02-01 03:05:00
65022    25525    679    2017-02-01 18:50:00    2017-02-01 18:50:00
65023    25526    865    2017-02-01 01:31:00    2017-02-01 01:31:00
65024    25526    632    2017-02-01 11:04:00    2017-02-01 11:04:00
65025    25526    946    2017-02-01 15:51:00    2017-02-01 15:51:00
65026    25526    951    2017-02-01 08:23:00    2017-02-01 08:23:00
65027    25526    619    2017-02-01 12:09:00    2017-02-01 12:09:00
65028    25527    480    2017-02-01 14:29:00    2017-02-01 14:29:00
65029    25527    842    2017-02-01 09:58:00    2017-02-01 09:58:00
65030    25527    514    2017-02-01 05:52:00    2017-02-01 05:52:00
65031    25527    882    2017-02-01 17:37:00    2017-02-01 17:37:00
65032    25527    858    2017-02-01 18:24:00    2017-02-01 18:24:00
65033    25528    731    2017-02-01 08:28:00    2017-02-01 08:28:00
65034    25528    909    2017-02-01 10:43:00    2017-02-01 10:43:00
65035    25528    759    2017-02-01 22:15:00    2017-02-01 22:15:00
65036    25528    756    2017-02-01 02:31:00    2017-02-01 02:31:00
65037    25528    801    2017-02-01 16:29:00    2017-02-01 16:29:00
65038    25529    554    2017-02-01 04:13:00    2017-02-01 04:13:00
65039    25529    488    2017-02-01 13:52:00    2017-02-01 13:52:00
65040    25529    818    2017-02-01 18:44:00    2017-02-01 18:44:00
65041    25529    928    2017-02-01 07:54:00    2017-02-01 07:54:00
65042    25529    631    2017-02-01 09:14:00    2017-02-01 09:14:00
65043    25530    751    2017-02-01 20:10:00    2017-02-01 20:10:00
65044    25530    658    2017-02-01 20:08:00    2017-02-01 20:08:00
65045    25530    471    2017-02-01 06:39:00    2017-02-01 06:39:00
65046    25530    481    2017-02-01 02:20:00    2017-02-01 02:20:00
65047    25530    764    2017-02-01 22:01:00    2017-02-01 22:01:00
65048    25531    919    2017-02-01 16:05:00    2017-02-01 16:05:00
65049    25531    548    2017-02-01 20:21:00    2017-02-01 20:21:00
65050    25531    511    2017-02-01 15:02:00    2017-02-01 15:02:00
65051    25531    634    2017-02-01 17:25:00    2017-02-01 17:25:00
65052    25531    655    2017-02-01 08:40:00    2017-02-01 08:40:00
65053    25532    741    2017-02-01 16:13:00    2017-02-01 16:13:00
65054    25532    805    2017-02-01 10:13:00    2017-02-01 10:13:00
65055    25532    927    2017-02-01 08:09:00    2017-02-01 08:09:00
65056    25532    708    2017-02-01 13:00:00    2017-02-01 13:00:00
65057    25532    642    2017-02-01 08:14:00    2017-02-01 08:14:00
65058    25533    701    2017-02-01 12:44:00    2017-02-01 12:44:00
65059    25533    642    2017-02-01 09:55:00    2017-02-01 09:55:00
65060    25533    501    2017-02-01 04:46:00    2017-02-01 04:46:00
65061    25533    660    2017-02-01 23:34:00    2017-02-01 23:34:00
65062    25533    813    2017-02-01 22:13:00    2017-02-01 22:13:00
65063    25534    489    2017-02-01 16:17:00    2017-02-01 16:17:00
65064    25534    488    2017-02-01 01:06:00    2017-02-01 01:06:00
65065    25534    580    2017-02-01 14:22:00    2017-02-01 14:22:00
65066    25534    583    2017-02-01 07:12:00    2017-02-01 07:12:00
65067    25534    940    2017-02-01 22:18:00    2017-02-01 22:18:00
65068    25535    714    2017-02-01 20:11:00    2017-02-01 20:11:00
65069    25535    763    2017-02-01 23:33:00    2017-02-01 23:33:00
65070    25535    791    2017-02-01 05:57:00    2017-02-01 05:57:00
65071    25535    578    2017-02-01 23:47:00    2017-02-01 23:47:00
65072    25535    640    2017-02-01 12:12:00    2017-02-01 12:12:00
65073    25536    518    2017-02-01 12:22:00    2017-02-01 12:22:00
65074    25536    893    2017-02-01 16:34:00    2017-02-01 16:34:00
65075    25536    917    2017-02-01 18:55:00    2017-02-01 18:55:00
65076    25536    818    2017-02-01 06:11:00    2017-02-01 06:11:00
65077    25536    899    2017-02-01 06:27:00    2017-02-01 06:27:00
65078    25537    785    2017-02-01 01:16:00    2017-02-01 01:16:00
65079    25537    685    2017-02-01 04:51:00    2017-02-01 04:51:00
65080    25537    498    2017-02-01 09:33:00    2017-02-01 09:33:00
65081    25537    504    2017-02-01 14:58:00    2017-02-01 14:58:00
65082    25537    664    2017-02-01 11:58:00    2017-02-01 11:58:00
65083    25538    578    2017-02-01 11:54:00    2017-02-01 11:54:00
65084    25538    760    2017-02-01 20:59:00    2017-02-01 20:59:00
65085    25538    906    2017-02-01 15:02:00    2017-02-01 15:02:00
65086    25538    554    2017-02-01 17:42:00    2017-02-01 17:42:00
65087    25538    598    2017-02-01 13:41:00    2017-02-01 13:41:00
65088    25539    632    2017-02-01 09:44:00    2017-02-01 09:44:00
65089    25539    706    2017-02-01 04:19:00    2017-02-01 04:19:00
65090    25539    679    2017-02-01 04:30:00    2017-02-01 04:30:00
65091    25539    852    2017-02-01 06:53:00    2017-02-01 06:53:00
65092    25539    574    2017-02-01 20:32:00    2017-02-01 20:32:00
65093    25540    843    2017-02-01 16:33:00    2017-02-01 16:33:00
65094    25540    854    2017-02-01 13:30:00    2017-02-01 13:30:00
65095    25540    869    2017-02-01 17:49:00    2017-02-01 17:49:00
65096    25540    883    2017-02-01 14:32:00    2017-02-01 14:32:00
65097    25540    729    2017-02-01 15:50:00    2017-02-01 15:50:00
65098    25541    935    2017-02-01 22:45:00    2017-02-01 22:45:00
65099    25541    956    2017-02-01 04:43:00    2017-02-01 04:43:00
65100    25541    708    2017-02-01 05:05:00    2017-02-01 05:05:00
65101    25541    845    2017-02-01 13:56:00    2017-02-01 13:56:00
65102    25541    823    2017-02-01 13:29:00    2017-02-01 13:29:00
65103    25542    626    2017-02-01 10:42:00    2017-02-01 10:42:00
65104    25542    844    2017-02-01 20:44:00    2017-02-01 20:44:00
65105    25542    465    2017-02-01 06:26:00    2017-02-01 06:26:00
65106    25542    776    2017-02-01 12:06:00    2017-02-01 12:06:00
65107    25542    575    2017-02-01 06:11:00    2017-02-01 06:11:00
65108    25543    911    2017-02-01 04:13:00    2017-02-01 04:13:00
65109    25543    939    2017-02-01 04:11:00    2017-02-01 04:11:00
65110    25543    703    2017-02-01 13:20:00    2017-02-01 13:20:00
65111    25543    791    2017-02-01 03:37:00    2017-02-01 03:37:00
65112    25543    676    2017-02-01 06:58:00    2017-02-01 06:58:00
64857    25543    783    2017-02-01 23:59:00    2017-02-02 18:22:04.37667
65113    25544    792    2017-02-02 04:44:00    2017-02-02 04:44:00
65114    25544    498    2017-02-02 06:18:00    2017-02-02 06:18:00
65115    25544    578    2017-02-02 19:01:00    2017-02-02 19:01:00
65116    25544    772    2017-02-02 17:03:00    2017-02-02 17:03:00
65117    25544    553    2017-02-02 04:03:00    2017-02-02 04:03:00
65118    25545    928    2017-02-02 12:13:00    2017-02-02 12:13:00
65119    25545    895    2017-02-02 07:05:00    2017-02-02 07:05:00
65120    25545    591    2017-02-02 12:00:00    2017-02-02 12:00:00
65121    25545    791    2017-02-02 05:17:00    2017-02-02 05:17:00
65122    25545    694    2017-02-02 01:32:00    2017-02-02 01:32:00
65123    25546    923    2017-02-02 05:11:00    2017-02-02 05:11:00
65124    25546    752    2017-02-02 19:55:00    2017-02-02 19:55:00
65125    25546    734    2017-02-02 22:42:00    2017-02-02 22:42:00
65126    25546    896    2017-02-02 03:57:00    2017-02-02 03:57:00
65127    25546    474    2017-02-02 22:38:00    2017-02-02 22:38:00
65128    25547    749    2017-02-02 11:58:00    2017-02-02 11:58:00
65129    25547    663    2017-02-02 06:12:00    2017-02-02 06:12:00
65130    25547    536    2017-02-02 19:16:00    2017-02-02 19:16:00
65131    25547    653    2017-02-02 22:02:00    2017-02-02 22:02:00
65132    25547    869    2017-02-02 13:39:00    2017-02-02 13:39:00
65133    25548    497    2017-02-02 06:47:00    2017-02-02 06:47:00
65134    25548    698    2017-02-02 16:58:00    2017-02-02 16:58:00
65135    25548    643    2017-02-02 20:25:00    2017-02-02 20:25:00
65136    25548    786    2017-02-02 07:24:00    2017-02-02 07:24:00
65137    25548    515    2017-02-02 23:07:00    2017-02-02 23:07:00
65138    25549    732    2017-02-02 01:22:00    2017-02-02 01:22:00
65139    25549    936    2017-02-02 10:27:00    2017-02-02 10:27:00
65140    25549    880    2017-02-02 07:05:00    2017-02-02 07:05:00
65141    25549    799    2017-02-02 15:40:00    2017-02-02 15:40:00
65142    25549    625    2017-02-02 23:55:00    2017-02-02 23:55:00
65143    25550    485    2017-02-02 16:58:00    2017-02-02 16:58:00
65144    25550    773    2017-02-02 11:51:00    2017-02-02 11:51:00
65145    25550    566    2017-02-02 20:57:00    2017-02-02 20:57:00
65146    25550    718    2017-02-02 13:28:00    2017-02-02 13:28:00
65147    25550    899    2017-02-02 05:54:00    2017-02-02 05:54:00
65148    25551    626    2017-02-02 15:29:00    2017-02-02 15:29:00
65149    25551    605    2017-02-02 09:19:00    2017-02-02 09:19:00
65150    25551    558    2017-02-02 03:25:00    2017-02-02 03:25:00
65151    25551    604    2017-02-02 05:00:00    2017-02-02 05:00:00
65152    25551    478    2017-02-02 13:27:00    2017-02-02 13:27:00
65153    25552    727    2017-02-02 01:28:00    2017-02-02 01:28:00
65154    25552    572    2017-02-02 19:55:00    2017-02-02 19:55:00
65155    25552    643    2017-02-02 17:23:00    2017-02-02 17:23:00
65156    25552    791    2017-02-02 08:45:00    2017-02-02 08:45:00
65157    25552    593    2017-02-02 17:44:00    2017-02-02 17:44:00
65158    25553    477    2017-02-02 04:46:00    2017-02-02 04:46:00
65159    25553    895    2017-02-02 09:05:00    2017-02-02 09:05:00
65160    25553    541    2017-02-02 14:29:00    2017-02-02 14:29:00
65161    25553    773    2017-02-02 03:27:00    2017-02-02 03:27:00
65162    25553    511    2017-02-02 10:23:00    2017-02-02 10:23:00
65163    25554    844    2017-02-02 03:32:00    2017-02-02 03:32:00
65164    25554    901    2017-02-02 08:39:00    2017-02-02 08:39:00
65165    25554    856    2017-02-02 09:46:00    2017-02-02 09:46:00
65166    25554    792    2017-02-02 17:52:00    2017-02-02 17:52:00
65167    25554    794    2017-02-02 14:36:00    2017-02-02 14:36:00
65168    25555    682    2017-02-02 06:50:00    2017-02-02 06:50:00
65169    25555    815    2017-02-02 03:23:00    2017-02-02 03:23:00
65170    25555    659    2017-02-02 04:33:00    2017-02-02 04:33:00
65171    25555    634    2017-02-02 09:27:00    2017-02-02 09:27:00
65172    25555    889    2017-02-02 10:52:00    2017-02-02 10:52:00
65173    25556    633    2017-02-02 13:07:00    2017-02-02 13:07:00
65174    25556    860    2017-02-02 05:13:00    2017-02-02 05:13:00
65175    25556    722    2017-02-02 07:24:00    2017-02-02 07:24:00
65176    25556    801    2017-02-02 08:18:00    2017-02-02 08:18:00
65177    25556    807    2017-02-02 02:35:00    2017-02-02 02:35:00
65178    25557    538    2017-02-02 10:05:00    2017-02-02 10:05:00
65179    25557    709    2017-02-02 13:02:00    2017-02-02 13:02:00
65180    25557    611    2017-02-02 04:06:00    2017-02-02 04:06:00
65181    25557    484    2017-02-02 22:42:00    2017-02-02 22:42:00
65182    25557    839    2017-02-02 02:11:00    2017-02-02 02:11:00
65183    25558    888    2017-02-02 23:55:00    2017-02-02 23:55:00
65184    25558    515    2017-02-02 01:47:00    2017-02-02 01:47:00
65185    25558    859    2017-02-02 14:50:00    2017-02-02 14:50:00
65186    25558    723    2017-02-02 20:06:00    2017-02-02 20:06:00
65187    25558    680    2017-02-02 19:49:00    2017-02-02 19:49:00
65188    25559    725    2017-02-02 02:26:00    2017-02-02 02:26:00
65189    25559    520    2017-02-02 11:58:00    2017-02-02 11:58:00
65190    25559    959    2017-02-02 22:22:00    2017-02-02 22:22:00
65191    25559    516    2017-02-02 15:26:00    2017-02-02 15:26:00
65192    25559    859    2017-02-02 18:13:00    2017-02-02 18:13:00
65193    25560    523    2017-02-02 06:27:00    2017-02-02 06:27:00
65194    25560    740    2017-02-02 09:19:00    2017-02-02 09:19:00
65195    25560    580    2017-02-02 01:35:00    2017-02-02 01:35:00
65196    25560    596    2017-02-02 14:40:00    2017-02-02 14:40:00
65197    25560    572    2017-02-02 12:24:00    2017-02-02 12:24:00
65198    25561    582    2017-02-02 10:57:00    2017-02-02 10:57:00
65199    25561    927    2017-02-02 10:15:00    2017-02-02 10:15:00
65200    25561    854    2017-02-02 04:56:00    2017-02-02 04:56:00
65201    25561    834    2017-02-02 17:25:00    2017-02-02 17:25:00
65202    25561    476    2017-02-02 20:41:00    2017-02-02 20:41:00
65203    25562    645    2017-02-02 05:49:00    2017-02-02 05:49:00
65204    25562    857    2017-02-02 03:37:00    2017-02-02 03:37:00
65205    25562    687    2017-02-02 04:52:00    2017-02-02 04:52:00
65206    25562    899    2017-02-02 19:57:00    2017-02-02 19:57:00
65207    25562    632    2017-02-02 05:38:00    2017-02-02 05:38:00
65208    25563    828    2017-02-02 19:21:00    2017-02-02 19:21:00
65209    25563    717    2017-02-02 21:14:00    2017-02-02 21:14:00
65210    25563    615    2017-02-02 06:39:00    2017-02-02 06:39:00
65211    25563    678    2017-02-02 13:30:00    2017-02-02 13:30:00
65212    25563    864    2017-02-02 06:54:00    2017-02-02 06:54:00
65213    25564    544    2017-02-02 09:40:00    2017-02-02 09:40:00
65214    25564    953    2017-02-02 21:52:00    2017-02-02 21:52:00
65215    25564    903    2017-02-02 10:05:00    2017-02-02 10:05:00
65216    25564    765    2017-02-02 22:58:00    2017-02-02 22:58:00
65217    25564    688    2017-02-02 04:32:00    2017-02-02 04:32:00
65218    25565    884    2017-02-02 04:29:00    2017-02-02 04:29:00
65219    25565    757    2017-02-02 09:46:00    2017-02-02 09:46:00
65220    25565    675    2017-02-02 04:12:00    2017-02-02 04:12:00
65221    25565    712    2017-02-02 12:34:00    2017-02-02 12:34:00
65222    25565    602    2017-02-02 15:41:00    2017-02-02 15:41:00
65223    25566    755    2017-02-02 12:01:00    2017-02-02 12:01:00
65224    25566    767    2017-02-02 01:07:00    2017-02-02 01:07:00
65225    25566    514    2017-02-02 01:05:00    2017-02-02 01:05:00
65226    25566    646    2017-02-02 22:37:00    2017-02-02 22:37:00
65227    25566    851    2017-02-02 19:40:00    2017-02-02 19:40:00
65228    25567    806    2017-02-02 11:45:00    2017-02-02 11:45:00
65229    25567    474    2017-02-02 01:56:00    2017-02-02 01:56:00
65230    25567    527    2017-02-02 07:36:00    2017-02-02 07:36:00
65231    25567    664    2017-02-02 17:22:00    2017-02-02 17:22:00
65232    25567    546    2017-02-02 01:46:00    2017-02-02 01:46:00
65233    25568    653    2017-02-02 13:00:00    2017-02-02 13:00:00
65234    25568    524    2017-02-02 22:11:00    2017-02-02 22:11:00
65235    25568    464    2017-02-02 06:00:00    2017-02-02 06:00:00
65236    25568    790    2017-02-02 22:32:00    2017-02-02 22:32:00
65237    25568    534    2017-02-02 01:40:00    2017-02-02 01:40:00
65238    25569    652    2017-02-02 19:26:00    2017-02-02 19:26:00
65239    25569    673    2017-02-02 02:36:00    2017-02-02 02:36:00
65240    25569    951    2017-02-02 19:54:00    2017-02-02 19:54:00
65241    25569    661    2017-02-02 12:32:00    2017-02-02 12:32:00
65242    25569    816    2017-02-02 22:48:00    2017-02-02 22:48:00
65243    25570    753    2017-02-02 08:56:00    2017-02-02 08:56:00
65244    25570    862    2017-02-02 07:21:00    2017-02-02 07:21:00
65245    25570    877    2017-02-02 20:34:00    2017-02-02 20:34:00
65246    25570    953    2017-02-02 05:56:00    2017-02-02 05:56:00
65247    25570    907    2017-02-02 17:37:00    2017-02-02 17:37:00
65248    25571    828    2017-02-02 01:27:00    2017-02-02 01:27:00
65249    25571    781    2017-02-02 10:03:00    2017-02-02 10:03:00
65250    25571    476    2017-02-02 18:29:00    2017-02-02 18:29:00
65251    25571    491    2017-02-02 22:20:00    2017-02-02 22:20:00
65252    25571    876    2017-02-02 03:22:00    2017-02-02 03:22:00
65253    25572    676    2017-02-02 09:47:00    2017-02-02 09:47:00
65254    25572    720    2017-02-02 14:10:00    2017-02-02 14:10:00
65255    25572    691    2017-02-02 18:47:00    2017-02-02 18:47:00
65256    25572    813    2017-02-02 13:51:00    2017-02-02 13:51:00
65257    25572    713    2017-02-02 08:43:00    2017-02-02 08:43:00
65258    25573    514    2017-02-02 04:44:00    2017-02-02 04:44:00
65259    25573    856    2017-02-02 11:57:00    2017-02-02 11:57:00
65260    25573    803    2017-02-02 06:32:00    2017-02-02 06:32:00
65261    25573    796    2017-02-02 05:47:00    2017-02-02 05:47:00
65262    25573    883    2017-02-02 12:59:00    2017-02-02 12:59:00
65263    25574    475    2017-02-02 16:58:00    2017-02-02 16:58:00
65264    25574    687    2017-02-02 15:59:00    2017-02-02 15:59:00
65265    25574    886    2017-02-02 16:26:00    2017-02-02 16:26:00
65266    25574    920    2017-02-02 03:33:00    2017-02-02 03:33:00
65267    25574    631    2017-02-02 21:34:00    2017-02-02 21:34:00
65268    25575    475    2017-02-02 11:39:00    2017-02-02 11:39:00
65269    25575    665    2017-02-02 22:39:00    2017-02-02 22:39:00
65270    25575    949    2017-02-02 03:02:00    2017-02-02 03:02:00
65271    25575    590    2017-02-02 01:48:00    2017-02-02 01:48:00
65272    25575    878    2017-02-02 02:11:00    2017-02-02 02:11:00
65273    25576    646    2017-02-02 10:46:00    2017-02-02 10:46:00
65274    25576    890    2017-02-02 03:22:00    2017-02-02 03:22:00
65275    25576    868    2017-02-02 01:08:00    2017-02-02 01:08:00
65276    25576    627    2017-02-02 23:52:00    2017-02-02 23:52:00
65277    25576    869    2017-02-02 15:54:00    2017-02-02 15:54:00
65278    25577    644    2017-02-02 21:11:00    2017-02-02 21:11:00
65279    25577    809    2017-02-02 23:47:00    2017-02-02 23:47:00
65280    25577    541    2017-02-02 04:24:00    2017-02-02 04:24:00
65281    25577    527    2017-02-02 19:05:00    2017-02-02 19:05:00
65282    25577    497    2017-02-02 12:45:00    2017-02-02 12:45:00
65283    25578    649    2017-02-02 15:53:00    2017-02-02 15:53:00
65284    25578    624    2017-02-02 12:28:00    2017-02-02 12:28:00
65285    25578    661    2017-02-02 17:19:00    2017-02-02 17:19:00
65286    25578    613    2017-02-02 11:59:00    2017-02-02 11:59:00
65287    25578    823    2017-02-02 06:39:00    2017-02-02 06:39:00
65288    25579    552    2017-02-02 08:24:00    2017-02-02 08:24:00
65289    25579    472    2017-02-02 23:44:00    2017-02-02 23:44:00
65290    25579    890    2017-02-02 18:21:00    2017-02-02 18:21:00
65291    25579    559    2017-02-02 08:12:00    2017-02-02 08:12:00
65292    25579    759    2017-02-02 15:45:00    2017-02-02 15:45:00
65293    25580    463    2017-02-02 13:56:00    2017-02-02 13:56:00
65294    25580    748    2017-02-02 10:21:00    2017-02-02 10:21:00
65295    25580    793    2017-02-02 19:59:00    2017-02-02 19:59:00
65296    25580    614    2017-02-02 19:42:00    2017-02-02 19:42:00
65297    25580    929    2017-02-02 06:44:00    2017-02-02 06:44:00
65298    25581    630    2017-02-02 05:15:00    2017-02-02 05:15:00
65299    25581    578    2017-02-02 02:57:00    2017-02-02 02:57:00
65300    25581    956    2017-02-02 12:56:00    2017-02-02 12:56:00
65301    25581    699    2017-02-02 08:15:00    2017-02-02 08:15:00
65302    25581    584    2017-02-02 01:17:00    2017-02-02 01:17:00
65303    25582    509    2017-02-02 23:14:00    2017-02-02 23:14:00
65304    25582    854    2017-02-02 08:03:00    2017-02-02 08:03:00
65305    25582    817    2017-02-02 03:40:00    2017-02-02 03:40:00
65306    25582    755    2017-02-02 09:40:00    2017-02-02 09:40:00
65307    25582    704    2017-02-02 04:36:00    2017-02-02 04:36:00
65308    25583    911    2017-02-02 09:43:00    2017-02-02 09:43:00
65309    25583    568    2017-02-02 01:52:00    2017-02-02 01:52:00
65310    25583    648    2017-02-02 01:59:00    2017-02-02 01:59:00
65311    25583    531    2017-02-02 02:16:00    2017-02-02 02:16:00
65312    25583    680    2017-02-02 05:45:00    2017-02-02 05:45:00
65313    25584    649    2017-02-02 12:24:00    2017-02-02 12:24:00
65314    25584    927    2017-02-02 05:18:00    2017-02-02 05:18:00
65315    25584    959    2017-02-02 16:44:00    2017-02-02 16:44:00
65316    25584    865    2017-02-02 14:36:00    2017-02-02 14:36:00
65317    25584    632    2017-02-02 20:33:00    2017-02-02 20:33:00
65318    25585    676    2017-02-02 21:08:00    2017-02-02 21:08:00
65319    25585    491    2017-02-02 03:20:00    2017-02-02 03:20:00
65320    25585    846    2017-02-02 05:21:00    2017-02-02 05:21:00
65321    25585    961    2017-02-02 06:27:00    2017-02-02 06:27:00
65322    25585    591    2017-02-02 01:56:00    2017-02-02 01:56:00
65323    25586    566    2017-02-02 04:29:00    2017-02-02 04:29:00
65324    25586    785    2017-02-02 07:39:00    2017-02-02 07:39:00
65325    25586    787    2017-02-02 02:13:00    2017-02-02 02:13:00
65326    25586    767    2017-02-02 01:26:00    2017-02-02 01:26:00
65327    25586    793    2017-02-02 17:02:00    2017-02-02 17:02:00
65328    25587    495    2017-02-02 05:38:00    2017-02-02 05:38:00
65329    25587    583    2017-02-02 04:10:00    2017-02-02 04:10:00
65330    25587    673    2017-02-02 19:31:00    2017-02-02 19:31:00
65331    25587    892    2017-02-02 17:52:00    2017-02-02 17:52:00
65332    25587    865    2017-02-02 22:47:00    2017-02-02 22:47:00
65333    25588    538    2017-02-02 12:58:00    2017-02-02 12:58:00
65334    25588    812    2017-02-02 17:47:00    2017-02-02 17:47:00
65335    25588    568    2017-02-02 07:18:00    2017-02-02 07:18:00
65336    25588    803    2017-02-02 22:58:00    2017-02-02 22:58:00
65337    25588    940    2017-02-02 06:19:00    2017-02-02 06:19:00
65338    25589    627    2017-02-02 20:50:00    2017-02-02 20:50:00
65339    25589    563    2017-02-02 11:18:00    2017-02-02 11:18:00
65340    25589    548    2017-02-02 09:06:00    2017-02-02 09:06:00
65341    25589    960    2017-02-02 16:33:00    2017-02-02 16:33:00
65342    25589    507    2017-02-02 17:09:00    2017-02-02 17:09:00
65343    25590    813    2017-02-02 15:22:00    2017-02-02 15:22:00
65344    25590    811    2017-02-02 06:42:00    2017-02-02 06:42:00
65345    25590    515    2017-02-02 10:11:00    2017-02-02 10:11:00
65346    25590    636    2017-02-02 18:25:00    2017-02-02 18:25:00
65347    25590    742    2017-02-02 14:57:00    2017-02-02 14:57:00
65348    25591    548    2017-02-02 05:00:00    2017-02-02 05:00:00
65349    25591    626    2017-02-02 10:06:00    2017-02-02 10:06:00
65350    25591    527    2017-02-02 18:57:00    2017-02-02 18:57:00
65351    25591    610    2017-02-02 19:36:00    2017-02-02 19:36:00
65352    25591    666    2017-02-02 03:28:00    2017-02-02 03:28:00
65353    25592    466    2017-02-02 14:47:00    2017-02-02 14:47:00
65354    25592    877    2017-02-02 04:42:00    2017-02-02 04:42:00
65355    25592    577    2017-02-02 06:52:00    2017-02-02 06:52:00
65356    25592    699    2017-02-02 22:55:00    2017-02-02 22:55:00
65357    25592    948    2017-02-02 14:58:00    2017-02-02 14:58:00
65358    25593    718    2017-02-02 03:19:00    2017-02-02 03:19:00
65359    25593    573    2017-02-02 09:00:00    2017-02-02 09:00:00
65360    25593    689    2017-02-02 23:16:00    2017-02-02 23:16:00
65361    25593    938    2017-02-02 05:32:00    2017-02-02 05:32:00
65362    25593    816    2017-02-02 12:08:00    2017-02-02 12:08:00
65363    25594    802    2017-02-02 02:30:00    2017-02-02 02:30:00
65364    25594    849    2017-02-02 22:12:00    2017-02-02 22:12:00
65365    25594    694    2017-02-02 08:24:00    2017-02-02 08:24:00
65366    25594    635    2017-02-02 03:16:00    2017-02-02 03:16:00
65367    25594    648    2017-02-03 00:00:00    2017-02-03 00:00:00
65368    25595    521    2017-02-02 05:00:00    2017-02-02 05:00:00
65369    25595    653    2017-02-02 10:23:00    2017-02-02 10:23:00
65370    25595    949    2017-02-02 03:52:00    2017-02-02 03:52:00
65371    25595    616    2017-02-02 08:07:00    2017-02-02 08:07:00
65372    25595    858    2017-02-02 13:52:00    2017-02-02 13:52:00
65373    25596    503    2017-02-02 20:55:00    2017-02-02 20:55:00
65374    25596    888    2017-02-02 17:22:00    2017-02-02 17:22:00
65375    25596    524    2017-02-02 19:25:00    2017-02-02 19:25:00
65376    25596    759    2017-02-02 03:44:00    2017-02-02 03:44:00
65377    25596    837    2017-02-02 01:20:00    2017-02-02 01:20:00
65378    25597    491    2017-02-02 19:06:00    2017-02-02 19:06:00
65379    25597    747    2017-02-02 07:37:00    2017-02-02 07:37:00
65380    25597    957    2017-02-02 03:31:00    2017-02-02 03:31:00
65381    25597    685    2017-02-02 01:25:00    2017-02-02 01:25:00
65382    25597    681    2017-02-02 07:19:00    2017-02-02 07:19:00
65383    25598    933    2017-02-02 01:48:00    2017-02-02 01:48:00
65384    25598    577    2017-02-02 17:39:00    2017-02-02 17:39:00
65385    25598    800    2017-02-02 19:11:00    2017-02-02 19:11:00
65386    25598    604    2017-02-02 16:18:00    2017-02-02 16:18:00
65387    25598    759    2017-02-02 16:59:00    2017-02-02 16:59:00
65388    25599    684    2017-02-02 22:30:00    2017-02-02 22:30:00
65389    25599    776    2017-02-02 13:09:00    2017-02-02 13:09:00
65390    25599    856    2017-02-02 21:23:00    2017-02-02 21:23:00
65391    25599    509    2017-02-02 08:48:00    2017-02-02 08:48:00
65392    25599    714    2017-02-02 16:20:00    2017-02-02 16:20:00
65393    25600    611    2017-02-02 06:03:00    2017-02-02 06:03:00
65394    25600    554    2017-02-02 10:05:00    2017-02-02 10:05:00
65395    25600    652    2017-02-02 15:46:00    2017-02-02 15:46:00
65396    25600    724    2017-02-02 17:01:00    2017-02-02 17:01:00
65397    25600    957    2017-02-02 20:04:00    2017-02-02 20:04:00
65398    25601    636    2017-02-02 13:45:00    2017-02-02 13:45:00
65399    25601    571    2017-02-02 16:21:00    2017-02-02 16:21:00
65400    25601    469    2017-02-02 23:15:00    2017-02-02 23:15:00
65401    25601    529    2017-02-02 21:18:00    2017-02-02 21:18:00
65402    25601    495    2017-02-02 08:26:00    2017-02-02 08:26:00
65403    25602    685    2017-02-02 15:12:00    2017-02-02 15:12:00
65404    25602    674    2017-02-02 01:02:00    2017-02-02 01:02:00
65405    25602    936    2017-02-02 07:35:00    2017-02-02 07:35:00
65406    25602    882    2017-02-02 22:49:00    2017-02-02 22:49:00
65407    25602    862    2017-02-02 11:54:00    2017-02-02 11:54:00
65408    25603    769    2017-02-02 23:48:00    2017-02-02 23:48:00
65409    25603    465    2017-02-02 09:00:00    2017-02-02 09:00:00
65410    25603    754    2017-02-02 10:09:00    2017-02-02 10:09:00
65411    25603    722    2017-02-02 20:11:00    2017-02-02 20:11:00
65412    25603    692    2017-02-02 05:18:00    2017-02-02 05:18:00
65413    25604    868    2017-02-02 20:04:00    2017-02-02 20:04:00
65414    25604    883    2017-02-02 08:50:00    2017-02-02 08:50:00
65415    25604    619    2017-02-02 01:28:00    2017-02-02 01:28:00
65416    25604    478    2017-02-02 10:28:00    2017-02-02 10:28:00
65417    25604    536    2017-02-02 02:14:00    2017-02-02 02:14:00
65418    25605    771    2017-02-02 13:57:00    2017-02-02 13:57:00
65419    25605    686    2017-02-02 11:17:00    2017-02-02 11:17:00
65420    25605    641    2017-02-02 22:15:00    2017-02-02 22:15:00
65421    25605    480    2017-02-02 22:14:00    2017-02-02 22:14:00
65422    25605    726    2017-02-02 22:05:00    2017-02-02 22:05:00
65423    25606    815    2017-02-02 22:42:00    2017-02-02 22:42:00
65424    25606    553    2017-02-02 05:54:00    2017-02-02 05:54:00
65425    25606    636    2017-02-02 19:17:00    2017-02-02 19:17:00
65426    25606    854    2017-02-02 19:26:00    2017-02-02 19:26:00
65427    25606    712    2017-02-02 02:04:00    2017-02-02 02:04:00
65428    25607    952    2017-02-02 14:46:00    2017-02-02 14:46:00
65429    25607    599    2017-02-02 11:24:00    2017-02-02 11:24:00
65430    25607    640    2017-02-02 21:00:00    2017-02-02 21:00:00
65431    25607    823    2017-02-02 16:14:00    2017-02-02 16:14:00
65432    25607    662    2017-02-02 09:53:00    2017-02-02 09:53:00
65433    25608    504    2017-02-02 09:23:00    2017-02-02 09:23:00
65434    25608    581    2017-02-02 08:11:00    2017-02-02 08:11:00
65435    25608    643    2017-02-02 10:16:00    2017-02-02 10:16:00
65436    25608    495    2017-02-02 07:10:00    2017-02-02 07:10:00
65437    25608    862    2017-02-02 21:47:00    2017-02-02 21:47:00
65438    25609    690    2017-02-02 07:20:00    2017-02-02 07:20:00
65439    25609    902    2017-02-02 14:06:00    2017-02-02 14:06:00
65440    25609    574    2017-02-02 13:34:00    2017-02-02 13:34:00
65441    25609    804    2017-02-02 01:12:00    2017-02-02 01:12:00
65442    25609    813    2017-02-02 16:26:00    2017-02-02 16:26:00
65443    25610    602    2017-02-02 06:35:00    2017-02-02 06:35:00
65444    25610    743    2017-02-02 02:52:00    2017-02-02 02:52:00
65445    25610    666    2017-02-02 08:00:00    2017-02-02 08:00:00
65446    25610    554    2017-02-02 03:01:00    2017-02-02 03:01:00
65447    25610    763    2017-02-02 04:49:00    2017-02-02 04:49:00
65448    25611    514    2017-02-02 12:06:00    2017-02-02 12:06:00
65449    25611    547    2017-02-02 22:47:00    2017-02-02 22:47:00
65450    25611    715    2017-02-02 14:47:00    2017-02-02 14:47:00
65451    25611    870    2017-02-02 08:41:00    2017-02-02 08:41:00
65452    25611    597    2017-02-02 19:06:00    2017-02-02 19:06:00
65453    25612    631    2017-02-02 02:42:00    2017-02-02 02:42:00
65454    25612    718    2017-02-02 14:36:00    2017-02-02 14:36:00
65455    25612    877    2017-02-02 09:33:00    2017-02-02 09:33:00
65456    25612    704    2017-02-02 23:47:00    2017-02-02 23:47:00
65457    25612    755    2017-02-02 23:52:00    2017-02-02 23:52:00
65458    25613    734    2017-02-02 12:23:00    2017-02-02 12:23:00
65459    25613    666    2017-02-02 18:50:00    2017-02-02 18:50:00
65460    25613    869    2017-02-02 18:05:00    2017-02-02 18:05:00
65461    25613    725    2017-02-02 09:24:00    2017-02-02 09:24:00
65462    25613    544    2017-02-02 20:32:00    2017-02-02 20:32:00
65463    25614    708    2017-02-02 08:31:00    2017-02-02 08:31:00
65464    25614    947    2017-02-02 21:27:00    2017-02-02 21:27:00
65465    25614    616    2017-02-02 05:15:00    2017-02-02 05:15:00
65466    25614    475    2017-02-02 01:21:00    2017-02-02 01:21:00
65467    25614    933    2017-02-02 07:08:00    2017-02-02 07:08:00
65468    25615    737    2017-02-02 08:51:00    2017-02-02 08:51:00
65469    25615    595    2017-02-02 01:49:00    2017-02-02 01:49:00
65470    25615    605    2017-02-02 14:02:00    2017-02-02 14:02:00
65471    25615    659    2017-02-02 06:15:00    2017-02-02 06:15:00
65472    25615    554    2017-02-02 19:52:00    2017-02-02 19:52:00
65473    25616    648    2017-02-02 21:53:00    2017-02-02 21:53:00
65474    25616    720    2017-02-02 20:03:00    2017-02-02 20:03:00
65475    25616    834    2017-02-02 15:49:00    2017-02-02 15:49:00
65476    25616    872    2017-02-02 03:10:00    2017-02-02 03:10:00
65477    25616    637    2017-02-02 04:31:00    2017-02-02 04:31:00
65478    25617    693    2017-02-02 02:02:00    2017-02-02 02:02:00
65479    25617    692    2017-02-02 12:52:00    2017-02-02 12:52:00
65480    25617    833    2017-02-02 12:55:00    2017-02-02 12:55:00
65481    25617    557    2017-02-02 13:38:00    2017-02-02 13:38:00
65482    25617    807    2017-02-02 01:53:00    2017-02-02 01:53:00
65483    25618    542    2017-02-02 04:10:00    2017-02-02 04:10:00
65484    25618    608    2017-02-02 18:52:00    2017-02-02 18:52:00
65485    25618    785    2017-02-02 11:33:00    2017-02-02 11:33:00
65486    25618    789    2017-02-02 08:40:00    2017-02-02 08:40:00
65487    25618    894    2017-02-02 19:30:00    2017-02-02 19:30:00
65488    25619    812    2017-02-02 21:43:00    2017-02-02 21:43:00
65489    25619    828    2017-02-02 18:52:00    2017-02-02 18:52:00
65490    25619    906    2017-02-02 18:23:00    2017-02-02 18:23:00
65491    25619    743    2017-02-02 09:14:00    2017-02-02 09:14:00
65492    25619    503    2017-02-02 17:46:00    2017-02-02 17:46:00
65493    25620    697    2017-02-02 06:23:00    2017-02-02 06:23:00
65494    25620    629    2017-02-02 06:23:00    2017-02-02 06:23:00
65495    25620    746    2017-02-02 10:23:00    2017-02-02 10:23:00
65496    25620    593    2017-02-02 15:58:00    2017-02-02 15:58:00
65497    25620    948    2017-02-02 08:14:00    2017-02-02 08:14:00
65498    25621    942    2017-02-02 20:17:00    2017-02-02 20:17:00
65499    25621    686    2017-02-02 06:27:00    2017-02-02 06:27:00
65500    25621    531    2017-02-02 15:55:00    2017-02-02 15:55:00
65501    25621    510    2017-02-02 03:27:00    2017-02-02 03:27:00
65502    25621    955    2017-02-02 11:57:00    2017-02-02 11:57:00
65503    25622    944    2017-02-02 19:22:00    2017-02-02 19:22:00
65504    25622    484    2017-02-02 03:55:00    2017-02-02 03:55:00
65505    25622    731    2017-02-02 17:14:00    2017-02-02 17:14:00
65506    25622    939    2017-02-02 12:21:00    2017-02-02 12:21:00
65507    25622    870    2017-02-02 19:29:00    2017-02-02 19:29:00
65508    25623    738    2017-02-02 05:30:00    2017-02-02 05:30:00
65509    25623    804    2017-02-02 17:50:00    2017-02-02 17:50:00
65510    25623    591    2017-02-02 12:25:00    2017-02-02 12:25:00
65511    25623    887    2017-02-02 20:01:00    2017-02-02 20:01:00
65512    25623    732    2017-02-02 04:44:00    2017-02-02 04:44:00
65513    25624    794    2017-02-02 21:41:00    2017-02-02 21:41:00
65514    25624    770    2017-02-02 11:41:00    2017-02-02 11:41:00
65515    25624    856    2017-02-02 07:45:00    2017-02-02 07:45:00
65516    25624    477    2017-02-02 07:31:00    2017-02-02 07:31:00
65517    25624    666    2017-02-02 09:19:00    2017-02-02 09:19:00
65518    25625    844    2017-02-02 20:41:00    2017-02-02 20:41:00
65519    25625    586    2017-02-02 03:29:00    2017-02-02 03:29:00
65520    25625    960    2017-02-02 17:36:00    2017-02-02 17:36:00
65521    25625    667    2017-02-02 18:08:00    2017-02-02 18:08:00
65522    25625    681    2017-02-02 02:17:00    2017-02-02 02:17:00
65523    25626    883    2017-02-02 22:38:00    2017-02-02 22:38:00
65524    25626    957    2017-02-02 08:01:00    2017-02-02 08:01:00
65525    25626    471    2017-02-02 14:28:00    2017-02-02 14:28:00
65526    25626    805    2017-02-02 02:33:00    2017-02-02 02:33:00
65527    25626    487    2017-02-02 12:00:00    2017-02-02 12:00:00
65528    25627    697    2017-02-02 13:26:00    2017-02-02 13:26:00
65529    25627    789    2017-02-02 12:46:00    2017-02-02 12:46:00
65530    25627    502    2017-02-02 21:07:00    2017-02-02 21:07:00
65531    25627    883    2017-02-02 23:04:00    2017-02-02 23:04:00
65532    25627    898    2017-02-02 14:39:00    2017-02-02 14:39:00
65533    25628    750    2017-02-02 20:31:00    2017-02-02 20:31:00
65534    25628    750    2017-02-02 13:08:00    2017-02-02 13:08:00
65535    25628    648    2017-02-02 13:27:00    2017-02-02 13:27:00
65536    25628    596    2017-02-02 11:53:00    2017-02-02 11:53:00
65537    25628    950    2017-02-02 04:13:00    2017-02-02 04:13:00
65538    25629    806    2017-02-02 03:21:00    2017-02-02 03:21:00
65539    25629    916    2017-02-02 02:34:00    2017-02-02 02:34:00
65540    25629    873    2017-02-02 20:30:00    2017-02-02 20:30:00
65541    25629    855    2017-02-02 23:33:00    2017-02-02 23:33:00
65542    25629    728    2017-02-02 06:33:00    2017-02-02 06:33:00
65543    25630    873    2017-02-03 01:32:00    2017-02-03 01:32:00
65544    25630    492    2017-02-03 14:02:00    2017-02-03 14:02:00
65545    25630    797    2017-02-03 13:43:00    2017-02-03 13:43:00
65546    25630    769    2017-02-03 03:02:00    2017-02-03 03:02:00
65547    25630    599    2017-02-03 05:14:00    2017-02-03 05:14:00
65548    25631    924    2017-02-03 18:50:00    2017-02-03 18:50:00
65549    25631    878    2017-02-03 22:29:00    2017-02-03 22:29:00
65550    25631    747    2017-02-03 23:10:00    2017-02-03 23:10:00
65551    25631    543    2017-02-03 12:34:00    2017-02-03 12:34:00
65552    25631    549    2017-02-03 02:24:00    2017-02-03 02:24:00
65553    25632    706    2017-02-03 21:53:00    2017-02-03 21:53:00
65554    25632    636    2017-02-03 20:29:00    2017-02-03 20:29:00
65555    25632    731    2017-02-03 08:16:00    2017-02-03 08:16:00
65556    25632    540    2017-02-03 22:33:00    2017-02-03 22:33:00
65557    25632    507    2017-02-03 08:47:00    2017-02-03 08:47:00
65558    25633    937    2017-02-03 02:23:00    2017-02-03 02:23:00
65559    25633    847    2017-02-03 07:25:00    2017-02-03 07:25:00
65560    25633    567    2017-02-03 14:00:00    2017-02-03 14:00:00
65561    25633    835    2017-02-03 11:12:00    2017-02-03 11:12:00
65562    25633    592    2017-02-03 07:45:00    2017-02-03 07:45:00
65563    25634    465    2017-02-03 04:03:00    2017-02-03 04:03:00
65564    25634    865    2017-02-03 08:00:00    2017-02-03 08:00:00
65565    25634    685    2017-02-03 20:49:00    2017-02-03 20:49:00
65566    25634    506    2017-02-03 20:54:00    2017-02-03 20:54:00
65567    25634    654    2017-02-03 14:30:00    2017-02-03 14:30:00
65568    25635    717    2017-02-03 01:12:00    2017-02-03 01:12:00
65569    25635    463    2017-02-03 07:29:00    2017-02-03 07:29:00
65570    25635    861    2017-02-03 10:30:00    2017-02-03 10:30:00
65571    25635    721    2017-02-03 09:50:00    2017-02-03 09:50:00
65572    25635    487    2017-02-03 01:19:00    2017-02-03 01:19:00
65573    25636    603    2017-02-03 02:13:00    2017-02-03 02:13:00
65574    25636    928    2017-02-03 13:26:00    2017-02-03 13:26:00
65575    25636    755    2017-02-03 19:03:00    2017-02-03 19:03:00
65576    25636    807    2017-02-03 04:06:00    2017-02-03 04:06:00
65577    25636    679    2017-02-03 07:55:00    2017-02-03 07:55:00
65578    25637    666    2017-02-03 21:41:00    2017-02-03 21:41:00
65579    25637    517    2017-02-03 01:58:00    2017-02-03 01:58:00
65580    25637    680    2017-02-03 05:24:00    2017-02-03 05:24:00
65581    25637    905    2017-02-03 21:04:00    2017-02-03 21:04:00
65582    25637    884    2017-02-03 10:39:00    2017-02-03 10:39:00
65583    25638    720    2017-02-03 10:38:00    2017-02-03 10:38:00
65584    25638    724    2017-02-03 03:46:00    2017-02-03 03:46:00
65585    25638    509    2017-02-03 03:48:00    2017-02-03 03:48:00
65586    25638    923    2017-02-03 10:22:00    2017-02-03 10:22:00
65587    25638    836    2017-02-03 13:36:00    2017-02-03 13:36:00
65588    25639    765    2017-02-03 09:29:00    2017-02-03 09:29:00
65589    25639    643    2017-02-03 19:23:00    2017-02-03 19:23:00
65590    25639    805    2017-02-03 15:08:00    2017-02-03 15:08:00
65591    25639    935    2017-02-03 23:29:00    2017-02-03 23:29:00
65592    25639    829    2017-02-03 09:03:00    2017-02-03 09:03:00
65593    25640    905    2017-02-03 06:17:00    2017-02-03 06:17:00
65594    25640    724    2017-02-03 22:33:00    2017-02-03 22:33:00
65595    25640    883    2017-02-03 23:27:00    2017-02-03 23:27:00
65596    25640    508    2017-02-03 03:52:00    2017-02-03 03:52:00
65597    25640    930    2017-02-03 20:22:00    2017-02-03 20:22:00
65598    25641    537    2017-02-03 07:52:00    2017-02-03 07:52:00
65599    25641    772    2017-02-03 17:44:00    2017-02-03 17:44:00
65600    25641    710    2017-02-03 04:22:00    2017-02-03 04:22:00
65601    25641    803    2017-02-03 09:00:00    2017-02-03 09:00:00
65602    25641    560    2017-02-03 01:55:00    2017-02-03 01:55:00
65603    25642    724    2017-02-03 15:35:00    2017-02-03 15:35:00
65604    25642    646    2017-02-03 04:23:00    2017-02-03 04:23:00
65605    25642    472    2017-02-03 08:35:00    2017-02-03 08:35:00
65606    25642    932    2017-02-03 03:25:00    2017-02-03 03:25:00
65607    25642    516    2017-02-03 23:09:00    2017-02-03 23:09:00
65608    25643    675    2017-02-03 21:46:00    2017-02-03 21:46:00
65609    25643    745    2017-02-03 16:18:00    2017-02-03 16:18:00
65610    25643    483    2017-02-03 14:56:00    2017-02-03 14:56:00
65611    25643    837    2017-02-03 11:12:00    2017-02-03 11:12:00
65612    25643    874    2017-02-03 23:18:00    2017-02-03 23:18:00
65613    25644    784    2017-02-03 06:36:00    2017-02-03 06:36:00
65614    25644    802    2017-02-03 17:18:00    2017-02-03 17:18:00
65615    25644    878    2017-02-03 12:01:00    2017-02-03 12:01:00
65616    25644    841    2017-02-03 16:06:00    2017-02-03 16:06:00
65617    25644    691    2017-02-03 11:35:00    2017-02-03 11:35:00
65618    25645    778    2017-02-03 17:50:00    2017-02-03 17:50:00
65619    25645    855    2017-02-03 08:44:00    2017-02-03 08:44:00
65620    25645    497    2017-02-03 21:07:00    2017-02-03 21:07:00
65621    25645    898    2017-02-03 13:13:00    2017-02-03 13:13:00
65622    25645    881    2017-02-03 10:01:00    2017-02-03 10:01:00
65623    25646    826    2017-02-03 13:36:00    2017-02-03 13:36:00
65624    25646    936    2017-02-03 10:23:00    2017-02-03 10:23:00
65625    25646    692    2017-02-03 11:31:00    2017-02-03 11:31:00
65626    25646    952    2017-02-03 18:13:00    2017-02-03 18:13:00
65627    25646    708    2017-02-03 21:35:00    2017-02-03 21:35:00
65628    25647    838    2017-02-03 07:07:00    2017-02-03 07:07:00
65629    25647    769    2017-02-03 12:01:00    2017-02-03 12:01:00
65630    25647    723    2017-02-03 20:51:00    2017-02-03 20:51:00
65631    25647    570    2017-02-03 19:08:00    2017-02-03 19:08:00
65632    25647    788    2017-02-03 09:07:00    2017-02-03 09:07:00
65633    25648    725    2017-02-03 11:55:00    2017-02-03 11:55:00
65634    25648    802    2017-02-03 08:46:00    2017-02-03 08:46:00
65635    25648    812    2017-02-03 17:06:00    2017-02-03 17:06:00
65636    25648    740    2017-02-03 05:14:00    2017-02-03 05:14:00
65637    25648    649    2017-02-03 02:48:00    2017-02-03 02:48:00
65638    25649    937    2017-02-03 10:29:00    2017-02-03 10:29:00
65639    25649    910    2017-02-03 05:13:00    2017-02-03 05:13:00
65640    25649    496    2017-02-03 06:17:00    2017-02-03 06:17:00
65641    25649    685    2017-02-03 13:22:00    2017-02-03 13:22:00
65642    25649    566    2017-02-03 21:19:00    2017-02-03 21:19:00
65643    25650    778    2017-02-03 10:58:00    2017-02-03 10:58:00
65644    25650    555    2017-02-03 04:10:00    2017-02-03 04:10:00
65645    25650    694    2017-02-03 23:14:00    2017-02-03 23:14:00
65646    25650    609    2017-02-03 06:08:00    2017-02-03 06:08:00
65647    25650    695    2017-02-03 13:37:00    2017-02-03 13:37:00
65648    25651    531    2017-02-03 19:54:00    2017-02-03 19:54:00
65649    25651    512    2017-02-03 14:58:00    2017-02-03 14:58:00
65650    25651    735    2017-02-03 07:32:00    2017-02-03 07:32:00
65651    25651    570    2017-02-03 14:34:00    2017-02-03 14:34:00
65652    25651    946    2017-02-03 16:35:00    2017-02-03 16:35:00
65653    25652    756    2017-02-03 10:10:00    2017-02-03 10:10:00
65654    25652    681    2017-02-03 09:40:00    2017-02-03 09:40:00
65655    25652    611    2017-02-03 04:13:00    2017-02-03 04:13:00
65656    25652    588    2017-02-03 21:27:00    2017-02-03 21:27:00
65657    25652    689    2017-02-03 09:46:00    2017-02-03 09:46:00
65658    25653    871    2017-02-03 16:12:00    2017-02-03 16:12:00
65659    25653    883    2017-02-03 20:55:00    2017-02-03 20:55:00
65660    25653    876    2017-02-03 12:07:00    2017-02-03 12:07:00
65661    25653    534    2017-02-03 21:16:00    2017-02-03 21:16:00
65662    25653    918    2017-02-03 13:27:00    2017-02-03 13:27:00
65663    25654    693    2017-02-03 04:39:00    2017-02-03 04:39:00
65664    25654    959    2017-02-03 09:20:00    2017-02-03 09:20:00
65665    25654    863    2017-02-03 04:53:00    2017-02-03 04:53:00
65666    25654    933    2017-02-03 19:45:00    2017-02-03 19:45:00
65667    25654    618    2017-02-03 14:16:00    2017-02-03 14:16:00
65668    25655    569    2017-02-03 23:58:00    2017-02-03 23:58:00
65669    25655    900    2017-02-03 15:52:00    2017-02-03 15:52:00
65670    25655    807    2017-02-03 12:59:00    2017-02-03 12:59:00
65671    25655    929    2017-02-03 05:07:00    2017-02-03 05:07:00
65672    25655    842    2017-02-03 06:09:00    2017-02-03 06:09:00
65673    25656    960    2017-02-03 20:48:00    2017-02-03 20:48:00
65674    25656    473    2017-02-03 03:52:00    2017-02-03 03:52:00
65675    25656    916    2017-02-03 20:36:00    2017-02-03 20:36:00
65676    25656    697    2017-02-03 07:00:00    2017-02-03 07:00:00
65677    25656    874    2017-02-03 23:59:00    2017-02-03 23:59:00
65678    25657    868    2017-02-03 20:00:00    2017-02-03 20:00:00
65679    25657    559    2017-02-03 10:08:00    2017-02-03 10:08:00
65680    25657    897    2017-02-03 22:32:00    2017-02-03 22:32:00
65681    25657    659    2017-02-03 16:58:00    2017-02-03 16:58:00
65682    25657    746    2017-02-03 23:36:00    2017-02-03 23:36:00
65683    25658    723    2017-02-03 19:20:00    2017-02-03 19:20:00
65684    25658    874    2017-02-03 22:53:00    2017-02-03 22:53:00
65685    25658    873    2017-02-03 08:39:00    2017-02-03 08:39:00
65686    25658    684    2017-02-03 16:14:00    2017-02-03 16:14:00
65687    25658    664    2017-02-03 23:13:00    2017-02-03 23:13:00
65688    25659    673    2017-02-03 06:28:00    2017-02-03 06:28:00
65689    25659    628    2017-02-03 09:12:00    2017-02-03 09:12:00
65690    25659    809    2017-02-03 13:06:00    2017-02-03 13:06:00
65691    25659    719    2017-02-03 03:12:00    2017-02-03 03:12:00
65692    25659    750    2017-02-03 17:12:00    2017-02-03 17:12:00
65693    25660    626    2017-02-03 15:40:00    2017-02-03 15:40:00
65694    25660    470    2017-02-03 23:03:00    2017-02-03 23:03:00
65695    25660    923    2017-02-03 03:53:00    2017-02-03 03:53:00
65696    25660    926    2017-02-03 11:43:00    2017-02-03 11:43:00
65697    25660    871    2017-02-03 21:21:00    2017-02-03 21:21:00
65698    25661    658    2017-02-03 03:03:00    2017-02-03 03:03:00
65699    25661    681    2017-02-03 16:26:00    2017-02-03 16:26:00
65700    25661    585    2017-02-03 14:00:00    2017-02-03 14:00:00
65701    25661    556    2017-02-03 09:33:00    2017-02-03 09:33:00
65702    25661    539    2017-02-03 18:05:00    2017-02-03 18:05:00
65703    25662    669    2017-02-03 13:11:00    2017-02-03 13:11:00
65704    25662    469    2017-02-03 03:58:00    2017-02-03 03:58:00
65705    25662    718    2017-02-03 13:13:00    2017-02-03 13:13:00
65706    25662    660    2017-02-03 23:09:00    2017-02-03 23:09:00
65707    25662    512    2017-02-03 02:51:00    2017-02-03 02:51:00
65708    25663    956    2017-02-03 09:43:00    2017-02-03 09:43:00
65709    25663    835    2017-02-03 14:06:00    2017-02-03 14:06:00
65710    25663    775    2017-02-03 18:50:00    2017-02-03 18:50:00
65711    25663    886    2017-02-03 04:29:00    2017-02-03 04:29:00
65712    25663    832    2017-02-03 02:05:00    2017-02-03 02:05:00
65713    25664    611    2017-02-03 11:01:00    2017-02-03 11:01:00
65714    25664    612    2017-02-03 04:39:00    2017-02-03 04:39:00
65715    25664    784    2017-02-03 06:06:00    2017-02-03 06:06:00
65716    25664    722    2017-02-03 11:23:00    2017-02-03 11:23:00
65717    25664    766    2017-02-03 14:52:00    2017-02-03 14:52:00
65718    25665    592    2017-02-03 06:29:00    2017-02-03 06:29:00
65719    25665    478    2017-02-03 10:28:00    2017-02-03 10:28:00
65720    25665    771    2017-02-03 15:40:00    2017-02-03 15:40:00
65721    25665    469    2017-02-03 09:08:00    2017-02-03 09:08:00
65722    25665    940    2017-02-03 07:02:00    2017-02-03 07:02:00
65723    25666    932    2017-02-03 19:03:00    2017-02-03 19:03:00
65724    25666    903    2017-02-03 02:07:00    2017-02-03 02:07:00
65725    25666    466    2017-02-03 22:08:00    2017-02-03 22:08:00
65726    25666    710    2017-02-03 05:22:00    2017-02-03 05:22:00
65727    25666    719    2017-02-03 23:06:00    2017-02-03 23:06:00
64303    25666    748    2017-01-29 11:48:00    2017-02-04 21:57:52.333612
65728    25667    539    2017-02-04 09:07:00    2017-02-04 09:07:00
65729    25667    473    2017-02-04 01:14:00    2017-02-04 01:14:00
65730    25667    823    2017-02-04 22:27:00    2017-02-04 22:27:00
65731    25667    866    2017-02-04 23:59:00    2017-02-04 23:59:00
65732    25667    609    2017-02-04 09:47:00    2017-02-04 09:47:00
65733    25668    908    2017-02-04 23:21:00    2017-02-04 23:21:00
65734    25668    760    2017-02-04 22:15:00    2017-02-04 22:15:00
65735    25668    792    2017-02-04 08:51:00    2017-02-04 08:51:00
65736    25668    905    2017-02-04 14:06:00    2017-02-04 14:06:00
65737    25668    931    2017-02-04 23:52:00    2017-02-04 23:52:00
65738    25669    762    2017-02-04 19:46:00    2017-02-04 19:46:00
65739    25669    607    2017-02-04 13:58:00    2017-02-04 13:58:00
65740    25669    895    2017-02-04 23:33:00    2017-02-04 23:33:00
65741    25669    909    2017-02-04 08:53:00    2017-02-04 08:53:00
65742    25669    568    2017-02-04 18:46:00    2017-02-04 18:46:00
65743    25670    734    2017-02-04 18:46:00    2017-02-04 18:46:00
65744    25670    938    2017-02-04 17:29:00    2017-02-04 17:29:00
65745    25670    882    2017-02-04 03:51:00    2017-02-04 03:51:00
65746    25670    662    2017-02-04 08:48:00    2017-02-04 08:48:00
65747    25670    598    2017-02-04 17:39:00    2017-02-04 17:39:00
65748    25671    677    2017-02-04 23:56:00    2017-02-04 23:56:00
65749    25671    491    2017-02-04 01:12:00    2017-02-04 01:12:00
65750    25671    743    2017-02-04 12:08:00    2017-02-04 12:08:00
65751    25671    820    2017-02-04 18:46:00    2017-02-04 18:46:00
65752    25671    603    2017-02-04 17:53:00    2017-02-04 17:53:00
65753    25672    794    2017-02-04 01:38:00    2017-02-04 01:38:00
65754    25672    922    2017-02-04 20:21:00    2017-02-04 20:21:00
65755    25672    725    2017-02-04 22:46:00    2017-02-04 22:46:00
65756    25672    924    2017-02-04 17:39:00    2017-02-04 17:39:00
65757    25672    548    2017-02-04 10:16:00    2017-02-04 10:16:00
65758    25673    550    2017-02-04 16:02:00    2017-02-04 16:02:00
65759    25673    834    2017-02-04 03:15:00    2017-02-04 03:15:00
65760    25673    784    2017-02-04 02:28:00    2017-02-04 02:28:00
65761    25673    931    2017-02-04 11:35:00    2017-02-04 11:35:00
65762    25673    790    2017-02-04 12:50:00    2017-02-04 12:50:00
65763    25674    938    2017-02-04 04:36:00    2017-02-04 04:36:00
65764    25674    945    2017-02-04 02:42:00    2017-02-04 02:42:00
65765    25674    589    2017-02-04 04:50:00    2017-02-04 04:50:00
65766    25674    899    2017-02-04 15:37:00    2017-02-04 15:37:00
65767    25674    610    2017-02-04 14:21:00    2017-02-04 14:21:00
65768    25675    914    2017-02-04 04:44:00    2017-02-04 04:44:00
65769    25675    555    2017-02-04 05:32:00    2017-02-04 05:32:00
65770    25675    733    2017-02-04 21:31:00    2017-02-04 21:31:00
65771    25675    881    2017-02-04 02:44:00    2017-02-04 02:44:00
65772    25675    828    2017-02-04 03:55:00    2017-02-04 03:55:00
65773    25676    633    2017-02-04 07:32:00    2017-02-04 07:32:00
65774    25676    828    2017-02-04 06:09:00    2017-02-04 06:09:00
65775    25676    768    2017-02-04 15:42:00    2017-02-04 15:42:00
65776    25676    816    2017-02-04 04:32:00    2017-02-04 04:32:00
65777    25676    804    2017-02-04 20:31:00    2017-02-04 20:31:00
65778    25677    673    2017-02-04 23:00:00    2017-02-04 23:00:00
65779    25677    717    2017-02-04 20:04:00    2017-02-04 20:04:00
65780    25677    668    2017-02-04 07:16:00    2017-02-04 07:16:00
65781    25677    467    2017-02-04 17:51:00    2017-02-04 17:51:00
65782    25677    597    2017-02-04 14:23:00    2017-02-04 14:23:00
65783    25678    922    2017-02-04 05:38:00    2017-02-04 05:38:00
65784    25678    652    2017-02-04 23:12:00    2017-02-04 23:12:00
65785    25678    515    2017-02-04 12:12:00    2017-02-04 12:12:00
65786    25678    840    2017-02-04 23:22:00    2017-02-04 23:22:00
65787    25678    804    2017-02-04 15:28:00    2017-02-04 15:28:00
65788    25679    899    2017-02-04 05:16:00    2017-02-04 05:16:00
65789    25679    686    2017-02-04 21:03:00    2017-02-04 21:03:00
65790    25679    696    2017-02-04 18:24:00    2017-02-04 18:24:00
65791    25679    521    2017-02-04 13:57:00    2017-02-04 13:57:00
65792    25679    583    2017-02-04 10:35:00    2017-02-04 10:35:00
65793    25680    728    2017-02-04 01:55:00    2017-02-04 01:55:00
65794    25680    702    2017-02-04 05:44:00    2017-02-04 05:44:00
65795    25680    718    2017-02-04 04:20:00    2017-02-04 04:20:00
65796    25680    811    2017-02-04 08:02:00    2017-02-04 08:02:00
65797    25680    951    2017-02-04 04:20:00    2017-02-04 04:20:00
65798    25681    777    2017-02-04 13:43:00    2017-02-04 13:43:00
65799    25681    646    2017-02-04 22:20:00    2017-02-04 22:20:00
65800    25681    717    2017-02-04 08:40:00    2017-02-04 08:40:00
65801    25681    537    2017-02-04 03:08:00    2017-02-04 03:08:00
65802    25681    608    2017-02-04 23:35:00    2017-02-04 23:35:00
65803    25682    684    2017-02-04 04:28:00    2017-02-04 04:28:00
65804    25682    482    2017-02-04 10:08:00    2017-02-04 10:08:00
65805    25682    490    2017-02-04 13:50:00    2017-02-04 13:50:00
65806    25682    516    2017-02-04 19:58:00    2017-02-04 19:58:00
65807    25682    740    2017-02-04 20:16:00    2017-02-04 20:16:00
65808    25683    735    2017-02-04 05:26:00    2017-02-04 05:26:00
65809    25683    649    2017-02-04 18:32:00    2017-02-04 18:32:00
65810    25683    956    2017-02-04 07:05:00    2017-02-04 07:05:00
65811    25683    619    2017-02-04 01:10:00    2017-02-04 01:10:00
65812    25683    606    2017-02-04 12:00:00    2017-02-04 12:00:00
65813    25684    833    2017-02-04 17:11:00    2017-02-04 17:11:00
65814    25684    573    2017-02-04 13:33:00    2017-02-04 13:33:00
65815    25684    607    2017-02-04 15:17:00    2017-02-04 15:17:00
65816    25684    504    2017-02-04 06:46:00    2017-02-04 06:46:00
65817    25684    714    2017-02-04 21:45:00    2017-02-04 21:45:00
65818    25685    776    2017-02-04 21:43:00    2017-02-04 21:43:00
65819    25685    484    2017-02-04 17:23:00    2017-02-04 17:23:00
65820    25685    595    2017-02-04 06:06:00    2017-02-04 06:06:00
65821    25685    920    2017-02-04 13:36:00    2017-02-04 13:36:00
65822    25685    572    2017-02-04 05:01:00    2017-02-04 05:01:00
65823    25686    788    2017-02-04 01:57:00    2017-02-04 01:57:00
65824    25686    694    2017-02-04 22:03:00    2017-02-04 22:03:00
65825    25686    893    2017-02-04 05:42:00    2017-02-04 05:42:00
65826    25686    850    2017-02-04 11:00:00    2017-02-04 11:00:00
65827    25686    499    2017-02-04 09:59:00    2017-02-04 09:59:00
65828    25687    595    2017-02-04 01:12:00    2017-02-04 01:12:00
65829    25687    808    2017-02-04 18:22:00    2017-02-04 18:22:00
65830    25687    870    2017-02-04 15:38:00    2017-02-04 15:38:00
65831    25687    604    2017-02-04 03:27:00    2017-02-04 03:27:00
65832    25687    796    2017-02-04 17:56:00    2017-02-04 17:56:00
65833    25688    755    2017-02-04 02:09:00    2017-02-04 02:09:00
65834    25688    481    2017-02-04 17:37:00    2017-02-04 17:37:00
65835    25688    756    2017-02-04 01:30:00    2017-02-04 01:30:00
65836    25688    870    2017-02-04 02:12:00    2017-02-04 02:12:00
65837    25688    603    2017-02-04 04:19:00    2017-02-04 04:19:00
65838    25689    794    2017-02-04 13:25:00    2017-02-04 13:25:00
65839    25689    566    2017-02-04 17:03:00    2017-02-04 17:03:00
65840    25689    709    2017-02-04 14:36:00    2017-02-04 14:36:00
65841    25689    857    2017-02-04 13:06:00    2017-02-04 13:06:00
65842    25689    486    2017-02-04 12:35:00    2017-02-04 12:35:00
65843    25690    742    2017-02-04 08:00:00    2017-02-04 08:00:00
65844    25690    587    2017-02-04 09:07:00    2017-02-04 09:07:00
65845    25690    707    2017-02-04 04:52:00    2017-02-04 04:52:00
65846    25690    508    2017-02-04 02:40:00    2017-02-04 02:40:00
65847    25690    901    2017-02-04 06:39:00    2017-02-04 06:39:00
65848    25691    949    2017-02-04 21:06:00    2017-02-04 21:06:00
65849    25691    802    2017-02-04 04:52:00    2017-02-04 04:52:00
65850    25691    645    2017-02-04 21:05:00    2017-02-04 21:05:00
65851    25691    934    2017-02-04 10:18:00    2017-02-04 10:18:00
65852    25691    706    2017-02-04 10:10:00    2017-02-04 10:10:00
65853    25692    733    2017-02-04 07:35:00    2017-02-04 07:35:00
65854    25692    879    2017-02-04 10:46:00    2017-02-04 10:46:00
65855    25692    541    2017-02-04 12:00:00    2017-02-04 12:00:00
65856    25692    660    2017-02-04 20:09:00    2017-02-04 20:09:00
65857    25692    840    2017-02-04 01:18:00    2017-02-04 01:18:00
65858    25693    601    2017-02-04 17:31:00    2017-02-04 17:31:00
65859    25693    654    2017-02-04 18:07:00    2017-02-04 18:07:00
65860    25693    937    2017-02-04 17:49:00    2017-02-04 17:49:00
65861    25693    858    2017-02-04 10:42:00    2017-02-04 10:42:00
65862    25693    630    2017-02-04 23:09:00    2017-02-04 23:09:00
65863    25694    876    2017-02-04 18:32:00    2017-02-04 18:32:00
65864    25694    744    2017-02-04 08:00:00    2017-02-04 08:00:00
65865    25694    862    2017-02-04 03:46:00    2017-02-04 03:46:00
65866    25694    686    2017-02-04 10:46:00    2017-02-04 10:46:00
65867    25694    849    2017-02-04 15:28:00    2017-02-04 15:28:00
65868    25695    524    2017-02-04 07:19:00    2017-02-04 07:19:00
65869    25695    506    2017-02-04 03:10:00    2017-02-04 03:10:00
65870    25695    602    2017-02-04 19:49:00    2017-02-04 19:49:00
65871    25695    909    2017-02-04 21:01:00    2017-02-04 21:01:00
65872    25695    855    2017-02-04 22:04:00    2017-02-04 22:04:00
65873    25696    594    2017-02-04 10:29:00    2017-02-04 10:29:00
65874    25696    870    2017-02-04 09:06:00    2017-02-04 09:06:00
65875    25696    759    2017-02-04 18:33:00    2017-02-04 18:33:00
65876    25696    922    2017-02-04 05:50:00    2017-02-04 05:50:00
65877    25696    618    2017-02-04 05:04:00    2017-02-04 05:04:00
65878    25697    866    2017-02-04 02:21:00    2017-02-04 02:21:00
65879    25697    894    2017-02-04 13:54:00    2017-02-04 13:54:00
65880    25697    553    2017-02-04 17:18:00    2017-02-04 17:18:00
65881    25697    544    2017-02-04 20:58:00    2017-02-04 20:58:00
65882    25697    646    2017-02-04 16:26:00    2017-02-04 16:26:00
65883    25698    464    2017-02-04 23:20:00    2017-02-04 23:20:00
65884    25698    782    2017-02-04 14:14:00    2017-02-04 14:14:00
65885    25698    874    2017-02-04 16:50:00    2017-02-04 16:50:00
65886    25698    542    2017-02-04 03:40:00    2017-02-04 03:40:00
65887    25698    488    2017-02-04 19:29:00    2017-02-04 19:29:00
65888    25699    563    2017-02-04 03:00:00    2017-02-04 03:00:00
65889    25699    608    2017-02-04 15:30:00    2017-02-04 15:30:00
65890    25699    961    2017-02-04 10:43:00    2017-02-04 10:43:00
65891    25699    696    2017-02-04 07:23:00    2017-02-04 07:23:00
65892    25699    633    2017-02-04 21:19:00    2017-02-04 21:19:00
65893    25700    713    2017-02-04 12:00:00    2017-02-04 12:00:00
65894    25700    898    2017-02-04 06:09:00    2017-02-04 06:09:00
65895    25700    501    2017-02-04 03:02:00    2017-02-04 03:02:00
65896    25700    867    2017-02-04 08:27:00    2017-02-04 08:27:00
65897    25700    613    2017-02-04 02:33:00    2017-02-04 02:33:00
65898    25701    685    2017-02-04 19:24:00    2017-02-04 19:24:00
65899    25701    478    2017-02-04 21:57:00    2017-02-04 21:57:00
65900    25701    571    2017-02-04 16:22:00    2017-02-04 16:22:00
65901    25701    902    2017-02-04 23:08:00    2017-02-04 23:08:00
65902    25701    921    2017-02-04 13:46:00    2017-02-04 13:46:00
65903    25702    924    2017-02-04 02:25:00    2017-02-04 02:25:00
65904    25702    865    2017-02-04 05:40:00    2017-02-04 05:40:00
65905    25702    672    2017-02-04 16:46:00    2017-02-04 16:46:00
65906    25702    767    2017-02-04 12:57:00    2017-02-04 12:57:00
65907    25702    764    2017-02-04 10:52:00    2017-02-04 10:52:00
65908    25703    604    2017-02-04 05:15:00    2017-02-04 05:15:00
65909    25703    793    2017-02-04 21:25:00    2017-02-04 21:25:00
65910    25703    830    2017-02-04 22:13:00    2017-02-04 22:13:00
65911    25703    642    2017-02-04 11:05:00    2017-02-04 11:05:00
65912    25703    467    2017-02-04 02:24:00    2017-02-04 02:24:00
65913    25704    687    2017-02-04 02:36:00    2017-02-04 02:36:00
65914    25704    829    2017-02-04 11:22:00    2017-02-04 11:22:00
65915    25704    665    2017-02-04 22:00:00    2017-02-04 22:00:00
65916    25704    600    2017-02-04 18:27:00    2017-02-04 18:27:00
65917    25704    934    2017-02-04 16:32:00    2017-02-04 16:32:00
65918    25705    695    2017-02-04 19:07:00    2017-02-04 19:07:00
65919    25705    735    2017-02-04 23:47:00    2017-02-04 23:47:00
65920    25705    543    2017-02-04 01:20:00    2017-02-04 01:20:00
65921    25705    488    2017-02-04 06:05:00    2017-02-04 06:05:00
65922    25705    496    2017-02-04 19:19:00    2017-02-04 19:19:00
65923    25706    546    2017-02-04 04:56:00    2017-02-04 04:56:00
65924    25706    646    2017-02-04 12:32:00    2017-02-04 12:32:00
65925    25706    959    2017-02-04 16:36:00    2017-02-04 16:36:00
65926    25706    591    2017-02-04 16:38:00    2017-02-04 16:38:00
65927    25706    698    2017-02-04 15:02:00    2017-02-04 15:02:00
65928    25707    524    2017-02-04 01:42:00    2017-02-04 01:42:00
65929    25707    655    2017-02-04 12:50:00    2017-02-04 12:50:00
65930    25707    809    2017-02-04 18:21:00    2017-02-04 18:21:00
65931    25707    640    2017-02-04 18:51:00    2017-02-04 18:51:00
65932    25707    826    2017-02-04 07:54:00    2017-02-04 07:54:00
65933    25708    756    2017-02-04 16:29:00    2017-02-04 16:29:00
65934    25708    516    2017-02-04 10:49:00    2017-02-04 10:49:00
65935    25708    947    2017-02-04 14:11:00    2017-02-04 14:11:00
65936    25708    487    2017-02-04 12:50:00    2017-02-04 12:50:00
65937    25708    529    2017-02-04 04:47:00    2017-02-04 04:47:00
65938    25709    750    2017-02-04 04:12:00    2017-02-04 04:12:00
65939    25709    577    2017-02-04 11:42:00    2017-02-04 11:42:00
65940    25709    646    2017-02-04 09:21:00    2017-02-04 09:21:00
65941    25709    810    2017-02-04 20:33:00    2017-02-04 20:33:00
65942    25709    868    2017-02-04 01:47:00    2017-02-04 01:47:00
65943    25710    664    2017-02-04 03:04:00    2017-02-04 03:04:00
65944    25710    879    2017-02-04 12:17:00    2017-02-04 12:17:00
65945    25710    951    2017-02-04 18:07:00    2017-02-04 18:07:00
65946    25710    520    2017-02-04 15:51:00    2017-02-04 15:51:00
65947    25710    650    2017-02-04 14:45:00    2017-02-04 14:45:00
65948    25711    517    2017-02-04 03:56:00    2017-02-04 03:56:00
65949    25711    928    2017-02-04 07:13:00    2017-02-04 07:13:00
65950    25711    646    2017-02-04 13:16:00    2017-02-04 13:16:00
65951    25711    727    2017-02-04 01:04:00    2017-02-04 01:04:00
65952    25711    798    2017-02-04 12:00:00    2017-02-04 12:00:00
65953    25712    482    2017-02-04 19:25:00    2017-02-04 19:25:00
65954    25712    572    2017-02-04 06:32:00    2017-02-04 06:32:00
65955    25712    463    2017-02-04 18:56:00    2017-02-04 18:56:00
65956    25712    564    2017-02-04 02:29:00    2017-02-04 02:29:00
65957    25712    748    2017-02-04 03:34:00    2017-02-04 03:34:00
65958    25713    789    2017-02-04 06:05:00    2017-02-04 06:05:00
65959    25713    548    2017-02-04 02:45:00    2017-02-04 02:45:00
65960    25713    488    2017-02-04 09:55:00    2017-02-04 09:55:00
65961    25713    792    2017-02-04 09:47:00    2017-02-04 09:47:00
65962    25713    736    2017-02-04 07:23:00    2017-02-04 07:23:00
65963    25714    577    2017-02-04 17:51:00    2017-02-04 17:51:00
65964    25714    511    2017-02-04 16:45:00    2017-02-04 16:45:00
65965    25714    873    2017-02-04 09:56:00    2017-02-04 09:56:00
65966    25714    760    2017-02-04 14:16:00    2017-02-04 14:16:00
65967    25714    805    2017-02-04 05:33:00    2017-02-04 05:33:00
65968    25715    774    2017-02-04 09:31:00    2017-02-04 09:31:00
65969    25715    944    2017-02-04 12:13:00    2017-02-04 12:13:00
65970    25715    935    2017-02-04 17:54:00    2017-02-04 17:54:00
65971    25715    583    2017-02-04 12:04:00    2017-02-04 12:04:00
65972    25715    652    2017-02-04 14:41:00    2017-02-04 14:41:00
65973    25716    507    2017-02-04 01:22:00    2017-02-04 01:22:00
65974    25716    959    2017-02-04 23:20:00    2017-02-04 23:20:00
65975    25716    897    2017-02-04 21:58:00    2017-02-04 21:58:00
65976    25716    594    2017-02-04 03:34:00    2017-02-04 03:34:00
65977    25716    885    2017-02-04 11:44:00    2017-02-04 11:44:00
65978    25717    935    2017-02-04 12:55:00    2017-02-04 12:55:00
65979    25717    890    2017-02-04 05:29:00    2017-02-04 05:29:00
65980    25717    926    2017-02-04 15:24:00    2017-02-04 15:24:00
65981    25717    853    2017-02-04 22:16:00    2017-02-04 22:16:00
65982    25717    905    2017-02-04 13:22:00    2017-02-04 13:22:00
65983    25718    804    2017-02-04 09:46:00    2017-02-04 09:46:00
65984    25718    907    2017-02-04 02:25:00    2017-02-04 02:25:00
65985    25718    703    2017-02-04 22:03:00    2017-02-04 22:03:00
65986    25718    793    2017-02-04 04:01:00    2017-02-04 04:01:00
65987    25718    526    2017-02-04 18:19:00    2017-02-04 18:19:00
65988    25719    944    2017-02-04 03:15:00    2017-02-04 03:15:00
65989    25719    605    2017-02-04 08:12:00    2017-02-04 08:12:00
65990    25719    775    2017-02-04 15:07:00    2017-02-04 15:07:00
65991    25719    516    2017-02-04 14:22:00    2017-02-04 14:22:00
65992    25719    553    2017-02-04 03:06:00    2017-02-04 03:06:00
65993    25720    871    2017-02-04 19:59:00    2017-02-04 19:59:00
65994    25720    853    2017-02-04 08:25:00    2017-02-04 08:25:00
65995    25720    834    2017-02-04 08:52:00    2017-02-04 08:52:00
65996    25720    730    2017-02-04 15:50:00    2017-02-04 15:50:00
65997    25720    631    2017-02-04 23:57:00    2017-02-04 23:57:00
65998    25721    876    2017-02-04 14:41:00    2017-02-04 14:41:00
65999    25721    463    2017-02-04 19:25:00    2017-02-04 19:25:00
66000    25721    890    2017-02-04 12:22:00    2017-02-04 12:22:00
66001    25721    676    2017-02-04 13:54:00    2017-02-04 13:54:00
66002    25721    824    2017-02-04 12:27:00    2017-02-04 12:27:00
66003    25722    829    2017-02-04 15:18:00    2017-02-04 15:18:00
66004    25722    501    2017-02-04 03:19:00    2017-02-04 03:19:00
66005    25722    849    2017-02-04 03:57:00    2017-02-04 03:57:00
66006    25722    728    2017-02-04 06:22:00    2017-02-04 06:22:00
66007    25722    480    2017-02-04 04:16:00    2017-02-04 04:16:00
66008    25723    655    2017-02-04 16:23:00    2017-02-04 16:23:00
66009    25723    652    2017-02-04 17:46:00    2017-02-04 17:46:00
66010    25723    478    2017-02-04 01:38:00    2017-02-04 01:38:00
66011    25723    714    2017-02-04 21:12:00    2017-02-04 21:12:00
66012    25723    492    2017-02-04 14:07:00    2017-02-04 14:07:00
66013    25724    885    2017-02-04 06:06:00    2017-02-04 06:06:00
66014    25724    787    2017-02-04 21:27:00    2017-02-04 21:27:00
66015    25724    539    2017-02-04 03:55:00    2017-02-04 03:55:00
66016    25724    621    2017-02-04 04:38:00    2017-02-04 04:38:00
66017    25724    466    2017-02-04 22:12:00    2017-02-04 22:12:00
66018    25725    836    2017-02-04 16:07:00    2017-02-04 16:07:00
66019    25725    598    2017-02-04 04:35:00    2017-02-04 04:35:00
66020    25725    804    2017-02-04 18:55:00    2017-02-04 18:55:00
66021    25725    920    2017-02-04 05:17:00    2017-02-04 05:17:00
66022    25725    635    2017-02-04 17:31:00    2017-02-04 17:31:00
66023    25726    638    2017-02-04 22:09:00    2017-02-04 22:09:00
66024    25726    527    2017-02-04 15:56:00    2017-02-04 15:56:00
66025    25726    502    2017-02-04 23:18:00    2017-02-04 23:18:00
66026    25726    561    2017-02-04 21:36:00    2017-02-04 21:36:00
66027    25726    958    2017-02-04 14:45:00    2017-02-04 14:45:00
66028    25727    788    2017-02-04 13:23:00    2017-02-04 13:23:00
66029    25727    506    2017-02-04 04:38:00    2017-02-04 04:38:00
66030    25727    881    2017-02-04 21:47:00    2017-02-04 21:47:00
66031    25727    581    2017-02-04 04:10:00    2017-02-04 04:10:00
66032    25727    878    2017-02-04 09:49:00    2017-02-04 09:49:00
66033    25728    799    2017-02-04 20:06:00    2017-02-04 20:06:00
66034    25728    630    2017-02-04 12:37:00    2017-02-04 12:37:00
66035    25728    949    2017-02-04 06:48:00    2017-02-04 06:48:00
66036    25728    479    2017-02-04 05:27:00    2017-02-04 05:27:00
66037    25728    590    2017-02-04 23:40:00    2017-02-04 23:40:00
66038    25729    660    2017-02-05 11:13:00    2017-02-05 11:13:00
66039    25729    815    2017-02-05 12:13:00    2017-02-05 12:13:00
66040    25729    631    2017-02-05 13:02:00    2017-02-05 13:02:00
66041    25729    888    2017-02-05 01:38:00    2017-02-05 01:38:00
66042    25729    693    2017-02-05 20:18:00    2017-02-05 20:18:00
66043    25730    903    2017-02-05 02:29:00    2017-02-05 02:29:00
66044    25730    661    2017-02-05 21:56:00    2017-02-05 21:56:00
66045    25730    477    2017-02-05 04:02:00    2017-02-05 04:02:00
66046    25730    769    2017-02-05 12:30:00    2017-02-05 12:30:00
66047    25730    592    2017-02-05 18:34:00    2017-02-05 18:34:00
66048    25731    839    2017-02-05 04:00:00    2017-02-05 04:00:00
66049    25731    697    2017-02-05 12:23:00    2017-02-05 12:23:00
66050    25731    746    2017-02-05 07:51:00    2017-02-05 07:51:00
66051    25731    888    2017-02-05 04:25:00    2017-02-05 04:25:00
66052    25731    704    2017-02-05 22:32:00    2017-02-05 22:32:00
66053    25732    928    2017-02-05 23:05:00    2017-02-05 23:05:00
66054    25732    717    2017-02-05 08:13:00    2017-02-05 08:13:00
66055    25732    697    2017-02-05 18:40:00    2017-02-05 18:40:00
66056    25732    493    2017-02-05 04:14:00    2017-02-05 04:14:00
66057    25732    643    2017-02-05 01:10:00    2017-02-05 01:10:00
66058    25733    811    2017-02-05 23:07:00    2017-02-05 23:07:00
66059    25733    632    2017-02-05 17:14:00    2017-02-05 17:14:00
66060    25733    792    2017-02-05 16:47:00    2017-02-05 16:47:00
66061    25733    667    2017-02-05 20:06:00    2017-02-05 20:06:00
66062    25733    891    2017-02-05 13:48:00    2017-02-05 13:48:00
66063    25734    747    2017-02-05 04:39:00    2017-02-05 04:39:00
66064    25734    679    2017-02-05 23:51:00    2017-02-05 23:51:00
66065    25734    749    2017-02-05 06:25:00    2017-02-05 06:25:00
66066    25734    629    2017-02-05 19:17:00    2017-02-05 19:17:00
66067    25734    717    2017-02-05 13:23:00    2017-02-05 13:23:00
66068    25735    739    2017-02-05 20:58:00    2017-02-05 20:58:00
66069    25735    840    2017-02-05 13:52:00    2017-02-05 13:52:00
66070    25735    501    2017-02-05 08:35:00    2017-02-05 08:35:00
66071    25735    875    2017-02-05 12:24:00    2017-02-05 12:24:00
66072    25735    499    2017-02-05 08:58:00    2017-02-05 08:58:00
66073    25736    691    2017-02-05 20:25:00    2017-02-05 20:25:00
66074    25736    949    2017-02-05 07:12:00    2017-02-05 07:12:00
66075    25736    589    2017-02-05 06:07:00    2017-02-05 06:07:00
66076    25736    582    2017-02-05 22:15:00    2017-02-05 22:15:00
66077    25736    879    2017-02-05 18:21:00    2017-02-05 18:21:00
66078    25737    598    2017-02-05 13:26:00    2017-02-05 13:26:00
66079    25737    486    2017-02-05 01:00:00    2017-02-05 01:00:00
66080    25737    931    2017-02-05 23:22:00    2017-02-05 23:22:00
66081    25737    924    2017-02-05 23:58:00    2017-02-05 23:58:00
66082    25737    792    2017-02-05 21:56:00    2017-02-05 21:56:00
66083    25738    867    2017-02-05 11:30:00    2017-02-05 11:30:00
66084    25738    523    2017-02-05 12:07:00    2017-02-05 12:07:00
66085    25738    882    2017-02-05 11:20:00    2017-02-05 11:20:00
66086    25738    504    2017-02-05 06:18:00    2017-02-05 06:18:00
66087    25738    789    2017-02-05 23:39:00    2017-02-05 23:39:00
66088    25739    579    2017-02-05 15:47:00    2017-02-05 15:47:00
66089    25739    818    2017-02-05 12:57:00    2017-02-05 12:57:00
66090    25739    546    2017-02-05 13:04:00    2017-02-05 13:04:00
66091    25739    662    2017-02-05 08:38:00    2017-02-05 08:38:00
66092    25739    644    2017-02-05 09:50:00    2017-02-05 09:50:00
66093    25740    613    2017-02-05 15:37:00    2017-02-05 15:37:00
66094    25740    930    2017-02-05 17:12:00    2017-02-05 17:12:00
66095    25740    673    2017-02-05 06:11:00    2017-02-05 06:11:00
66096    25740    613    2017-02-05 14:27:00    2017-02-05 14:27:00
66097    25740    544    2017-02-05 06:03:00    2017-02-05 06:03:00
66098    25741    532    2017-02-05 21:03:00    2017-02-05 21:03:00
66099    25741    908    2017-02-05 08:04:00    2017-02-05 08:04:00
66100    25741    780    2017-02-05 20:46:00    2017-02-05 20:46:00
66101    25741    875    2017-02-05 03:22:00    2017-02-05 03:22:00
66102    25741    692    2017-02-05 15:24:00    2017-02-05 15:24:00
66103    25742    894    2017-02-05 10:45:00    2017-02-05 10:45:00
66104    25742    594    2017-02-05 10:40:00    2017-02-05 10:40:00
66105    25742    498    2017-02-05 01:23:00    2017-02-05 01:23:00
66106    25742    859    2017-02-05 23:52:00    2017-02-05 23:52:00
66107    25742    809    2017-02-05 11:00:00    2017-02-05 11:00:00
66108    25743    811    2017-02-05 18:58:00    2017-02-05 18:58:00
66109    25743    888    2017-02-05 11:38:00    2017-02-05 11:38:00
66110    25743    559    2017-02-05 05:27:00    2017-02-05 05:27:00
66111    25743    594    2017-02-05 21:17:00    2017-02-05 21:17:00
66112    25743    901    2017-02-05 16:51:00    2017-02-05 16:51:00
66113    25744    863    2017-02-05 20:59:00    2017-02-05 20:59:00
66114    25744    783    2017-02-05 18:19:00    2017-02-05 18:19:00
66115    25744    816    2017-02-05 08:09:00    2017-02-05 08:09:00
66116    25744    514    2017-02-05 01:24:00    2017-02-05 01:24:00
66117    25744    896    2017-02-05 22:05:00    2017-02-05 22:05:00
66118    25745    565    2017-02-05 04:24:00    2017-02-05 04:24:00
66119    25745    672    2017-02-05 06:10:00    2017-02-05 06:10:00
66120    25745    701    2017-02-05 02:56:00    2017-02-05 02:56:00
66121    25745    713    2017-02-05 10:33:00    2017-02-05 10:33:00
66122    25745    479    2017-02-05 18:09:00    2017-02-05 18:09:00
66123    25746    856    2017-02-05 03:48:00    2017-02-05 03:48:00
66124    25746    625    2017-02-05 03:49:00    2017-02-05 03:49:00
66125    25746    866    2017-02-05 14:14:00    2017-02-05 14:14:00
66126    25746    613    2017-02-05 09:19:00    2017-02-05 09:19:00
66127    25746    509    2017-02-05 11:30:00    2017-02-05 11:30:00
66128    25747    682    2017-02-05 18:56:00    2017-02-05 18:56:00
66129    25747    856    2017-02-05 15:46:00    2017-02-05 15:46:00
66130    25747    547    2017-02-05 02:25:00    2017-02-05 02:25:00
66131    25747    636    2017-02-05 01:39:00    2017-02-05 01:39:00
66132    25747    798    2017-02-05 10:55:00    2017-02-05 10:55:00
66133    25748    711    2017-02-05 01:13:00    2017-02-05 01:13:00
66134    25748    670    2017-02-05 22:39:00    2017-02-05 22:39:00
66135    25748    598    2017-02-05 12:05:00    2017-02-05 12:05:00
66136    25748    477    2017-02-05 02:53:00    2017-02-05 02:53:00
66137    25748    959    2017-02-05 22:52:00    2017-02-05 22:52:00
66138    25749    483    2017-02-05 20:33:00    2017-02-05 20:33:00
66139    25749    814    2017-02-05 18:59:00    2017-02-05 18:59:00
66140    25749    591    2017-02-05 03:51:00    2017-02-05 03:51:00
66141    25749    839    2017-02-05 20:49:00    2017-02-05 20:49:00
66142    25749    884    2017-02-05 08:00:00    2017-02-05 08:00:00
66143    25750    891    2017-02-05 08:42:00    2017-02-05 08:42:00
66144    25750    663    2017-02-05 12:37:00    2017-02-05 12:37:00
66145    25750    463    2017-02-05 23:32:00    2017-02-05 23:32:00
66146    25750    878    2017-02-05 05:52:00    2017-02-05 05:52:00
66147    25750    766    2017-02-05 06:25:00    2017-02-05 06:25:00
66148    25751    960    2017-02-05 18:37:00    2017-02-05 18:37:00
66149    25751    848    2017-02-05 04:45:00    2017-02-05 04:45:00
66150    25751    608    2017-02-05 17:16:00    2017-02-05 17:16:00
66151    25751    668    2017-02-05 20:47:00    2017-02-05 20:47:00
66152    25751    734    2017-02-05 03:32:00    2017-02-05 03:32:00
66153    25752    532    2017-02-05 14:45:00    2017-02-05 14:45:00
66154    25752    604    2017-02-05 03:45:00    2017-02-05 03:45:00
66155    25752    502    2017-02-05 02:14:00    2017-02-05 02:14:00
66156    25752    835    2017-02-05 17:28:00    2017-02-05 17:28:00
66157    25752    493    2017-02-05 20:49:00    2017-02-05 20:49:00
66158    25753    687    2017-02-05 08:21:00    2017-02-05 08:21:00
66159    25753    951    2017-02-05 20:53:00    2017-02-05 20:53:00
66160    25753    932    2017-02-05 18:07:00    2017-02-05 18:07:00
66161    25753    708    2017-02-05 14:54:00    2017-02-05 14:54:00
66162    25753    706    2017-02-05 08:47:00    2017-02-05 08:47:00
66163    25754    534    2017-02-05 10:29:00    2017-02-05 10:29:00
66164    25754    818    2017-02-05 19:12:00    2017-02-05 19:12:00
66165    25754    693    2017-02-05 22:05:00    2017-02-05 22:05:00
66166    25754    870    2017-02-05 09:14:00    2017-02-05 09:14:00
66167    25754    705    2017-02-05 07:15:00    2017-02-05 07:15:00
66168    25755    503    2017-02-05 16:15:00    2017-02-05 16:15:00
66169    25755    815    2017-02-05 20:59:00    2017-02-05 20:59:00
66170    25755    894    2017-02-05 15:50:00    2017-02-05 15:50:00
66171    25755    711    2017-02-05 21:36:00    2017-02-05 21:36:00
66172    25755    617    2017-02-05 14:15:00    2017-02-05 14:15:00
66173    25756    871    2017-02-05 07:08:00    2017-02-05 07:08:00
66174    25756    568    2017-02-05 01:20:00    2017-02-05 01:20:00
66175    25756    568    2017-02-05 21:06:00    2017-02-05 21:06:00
66176    25756    564    2017-02-05 09:26:00    2017-02-05 09:26:00
66177    25756    903    2017-02-05 07:21:00    2017-02-05 07:21:00
66178    25757    523    2017-02-05 22:16:00    2017-02-05 22:16:00
66179    25757    924    2017-02-05 05:54:00    2017-02-05 05:54:00
66180    25757    881    2017-02-05 01:17:00    2017-02-05 01:17:00
66181    25757    948    2017-02-05 16:43:00    2017-02-05 16:43:00
66182    25757    790    2017-02-05 11:33:00    2017-02-05 11:33:00
66183    25758    730    2017-02-05 07:45:00    2017-02-05 07:45:00
66184    25758    649    2017-02-05 22:23:00    2017-02-05 22:23:00
66185    25758    505    2017-02-05 23:57:00    2017-02-05 23:57:00
66186    25758    816    2017-02-05 08:33:00    2017-02-05 08:33:00
66187    25758    849    2017-02-05 23:16:00    2017-02-05 23:16:00
66188    25759    906    2017-02-05 03:18:00    2017-02-05 03:18:00
66189    25759    694    2017-02-05 16:59:00    2017-02-05 16:59:00
66190    25759    620    2017-02-05 19:53:00    2017-02-05 19:53:00
66191    25759    556    2017-02-05 15:03:00    2017-02-05 15:03:00
66192    25759    527    2017-02-05 14:01:00    2017-02-05 14:01:00
66193    25760    733    2017-02-05 21:35:00    2017-02-05 21:35:00
66194    25760    534    2017-02-05 07:59:00    2017-02-05 07:59:00
66195    25760    567    2017-02-05 09:16:00    2017-02-05 09:16:00
66196    25760    788    2017-02-05 10:31:00    2017-02-05 10:31:00
66197    25760    809    2017-02-05 03:16:00    2017-02-05 03:16:00
66198    25761    500    2017-02-05 02:57:00    2017-02-05 02:57:00
66199    25761    488    2017-02-05 04:14:00    2017-02-05 04:14:00
66200    25761    535    2017-02-05 14:21:00    2017-02-05 14:21:00
66201    25761    749    2017-02-05 07:44:00    2017-02-05 07:44:00
66202    25761    866    2017-02-05 18:34:00    2017-02-05 18:34:00
66203    25762    805    2017-02-05 11:40:00    2017-02-05 11:40:00
66204    25762    706    2017-02-05 19:54:00    2017-02-05 19:54:00
66205    25762    610    2017-02-05 14:51:00    2017-02-05 14:51:00
66206    25762    473    2017-02-05 01:57:00    2017-02-05 01:57:00
66207    25762    748    2017-02-05 17:12:00    2017-02-05 17:12:00
66208    25763    666    2017-02-05 20:58:00    2017-02-05 20:58:00
66209    25763    835    2017-02-05 15:11:00    2017-02-05 15:11:00
66210    25763    672    2017-02-05 10:31:00    2017-02-05 10:31:00
66211    25763    515    2017-02-05 08:53:00    2017-02-05 08:53:00
66212    25763    648    2017-02-05 21:13:00    2017-02-05 21:13:00
66213    25764    515    2017-02-05 20:08:00    2017-02-05 20:08:00
66214    25764    685    2017-02-05 22:53:00    2017-02-05 22:53:00
66215    25764    892    2017-02-05 19:30:00    2017-02-05 19:30:00
66216    25764    683    2017-02-05 17:07:00    2017-02-05 17:07:00
66217    25764    898    2017-02-05 14:02:00    2017-02-05 14:02:00
66218    25765    776    2017-02-05 23:34:00    2017-02-05 23:34:00
66219    25765    854    2017-02-05 09:23:00    2017-02-05 09:23:00
66220    25765    470    2017-02-05 07:50:00    2017-02-05 07:50:00
66221    25765    859    2017-02-05 10:04:00    2017-02-05 10:04:00
66222    25765    632    2017-02-05 14:24:00    2017-02-05 14:24:00
66223    25766    836    2017-02-06 17:40:00    2017-02-06 17:40:00
66224    25766    677    2017-02-06 16:58:00    2017-02-06 16:58:00
66225    25766    753    2017-02-06 08:01:00    2017-02-06 08:01:00
66226    25766    920    2017-02-06 01:52:00    2017-02-06 01:52:00
66227    25766    725    2017-02-06 09:01:00    2017-02-06 09:01:00
66228    25767    848    2017-02-06 02:37:00    2017-02-06 02:37:00
66229    25767    825    2017-02-06 01:53:00    2017-02-06 01:53:00
66230    25767    623    2017-02-06 23:37:00    2017-02-06 23:37:00
66231    25767    924    2017-02-06 19:27:00    2017-02-06 19:27:00
66232    25767    528    2017-02-06 20:45:00    2017-02-06 20:45:00
66233    25768    597    2017-02-06 11:09:00    2017-02-06 11:09:00
66234    25768    602    2017-02-06 05:01:00    2017-02-06 05:01:00
66235    25768    771    2017-02-06 06:12:00    2017-02-06 06:12:00
66236    25768    526    2017-02-06 16:54:00    2017-02-06 16:54:00
66237    25768    610    2017-02-06 21:06:00    2017-02-06 21:06:00
66238    25769    576    2017-02-06 04:35:00    2017-02-06 04:35:00
66239    25769    721    2017-02-06 07:29:00    2017-02-06 07:29:00
66240    25769    892    2017-02-06 10:35:00    2017-02-06 10:35:00
66241    25769    480    2017-02-06 11:32:00    2017-02-06 11:32:00
66242    25769    612    2017-02-06 11:18:00    2017-02-06 11:18:00
66243    25770    747    2017-02-06 12:39:00    2017-02-06 12:39:00
66244    25770    630    2017-02-06 14:21:00    2017-02-06 14:21:00
66245    25770    746    2017-02-06 06:54:00    2017-02-06 06:54:00
66246    25770    901    2017-02-06 17:23:00    2017-02-06 17:23:00
66247    25770    672    2017-02-06 10:40:00    2017-02-06 10:40:00
66248    25771    746    2017-02-06 10:59:00    2017-02-06 10:59:00
66249    25771    674    2017-02-06 17:46:00    2017-02-06 17:46:00
66250    25771    778    2017-02-06 14:46:00    2017-02-06 14:46:00
66251    25771    478    2017-02-06 16:46:00    2017-02-06 16:46:00
66252    25771    475    2017-02-06 22:33:00    2017-02-06 22:33:00
66253    25772    832    2017-02-06 03:14:00    2017-02-06 03:14:00
66254    25772    578    2017-02-06 12:44:00    2017-02-06 12:44:00
66255    25772    751    2017-02-06 06:33:00    2017-02-06 06:33:00
66256    25772    477    2017-02-06 19:01:00    2017-02-06 19:01:00
66257    25772    892    2017-02-06 06:19:00    2017-02-06 06:19:00
66258    25773    505    2017-02-07 09:55:00    2017-02-07 09:55:00
66259    25773    868    2017-02-07 13:31:00    2017-02-07 13:31:00
66260    25773    870    2017-02-07 09:52:00    2017-02-07 09:52:00
66261    25773    609    2017-02-07 17:15:00    2017-02-07 17:15:00
66262    25773    897    2017-02-07 17:26:00    2017-02-07 17:26:00
66263    25774    482    2017-02-07 04:25:00    2017-02-07 04:25:00
66264    25774    633    2017-02-07 20:09:00    2017-02-07 20:09:00
66265    25774    586    2017-02-07 04:48:00    2017-02-07 04:48:00
66266    25774    597    2017-02-07 10:04:00    2017-02-07 10:04:00
66267    25774    515    2017-02-07 11:53:00    2017-02-07 11:53:00
66268    25775    883    2017-02-07 18:10:00    2017-02-07 18:10:00
66269    25775    523    2017-02-07 02:01:00    2017-02-07 02:01:00
66270    25775    573    2017-02-07 04:02:00    2017-02-07 04:02:00
66271    25775    835    2017-02-07 20:02:00    2017-02-07 20:02:00
66272    25775    468    2017-02-07 18:15:00    2017-02-07 18:15:00
66273    25776    816    2017-02-07 16:44:00    2017-02-07 16:44:00
66274    25776    625    2017-02-07 15:22:00    2017-02-07 15:22:00
66275    25776    477    2017-02-07 08:41:00    2017-02-07 08:41:00
66276    25776    537    2017-02-07 19:24:00    2017-02-07 19:24:00
66277    25776    491    2017-02-07 16:10:00    2017-02-07 16:10:00
66278    25777    771    2017-02-07 19:42:00    2017-02-07 19:42:00
66279    25777    876    2017-02-07 18:49:00    2017-02-07 18:49:00
66280    25777    745    2017-02-07 20:51:00    2017-02-07 20:51:00
66281    25777    691    2017-02-07 23:46:00    2017-02-07 23:46:00
66282    25777    559    2017-02-07 22:15:00    2017-02-07 22:15:00
66283    25778    792    2017-02-07 16:24:00    2017-02-07 16:24:00
66284    25778    641    2017-02-07 07:45:00    2017-02-07 07:45:00
66285    25778    556    2017-02-07 10:32:00    2017-02-07 10:32:00
66286    25778    500    2017-02-07 13:51:00    2017-02-07 13:51:00
66287    25778    720    2017-02-07 04:14:00    2017-02-07 04:14:00
66288    25779    725    2017-02-07 02:16:00    2017-02-07 02:16:00
66289    25779    596    2017-02-07 06:04:00    2017-02-07 06:04:00
66290    25779    617    2017-02-07 14:19:00    2017-02-07 14:19:00
66291    25779    698    2017-02-07 04:49:00    2017-02-07 04:49:00
66292    25779    495    2017-02-07 11:53:00    2017-02-07 11:53:00
66293    25780    915    2017-02-07 10:10:00    2017-02-07 10:10:00
66294    25780    884    2017-02-07 06:00:00    2017-02-07 06:00:00
66295    25780    514    2017-02-07 16:06:00    2017-02-07 16:06:00
66296    25780    468    2017-02-07 13:02:00    2017-02-07 13:02:00
66297    25780    475    2017-02-07 06:42:00    2017-02-07 06:42:00
66298    25781    882    2017-02-07 03:44:00    2017-02-07 03:44:00
66299    25781    766    2017-02-07 14:58:00    2017-02-07 14:58:00
66300    25781    517    2017-02-07 03:47:00    2017-02-07 03:47:00
66301    25781    834    2017-02-07 03:28:00    2017-02-07 03:28:00
66302    25781    624    2017-02-07 19:30:00    2017-02-07 19:30:00
66303    25782    869    2017-02-07 22:18:00    2017-02-07 22:18:00
66304    25782    607    2017-02-07 21:49:00    2017-02-07 21:49:00
66305    25782    729    2017-02-07 18:40:00    2017-02-07 18:40:00
66306    25782    668    2017-02-07 04:55:00    2017-02-07 04:55:00
66307    25782    704    2017-02-07 15:18:00    2017-02-07 15:18:00
66308    25783    530    2017-02-08 20:01:00    2017-02-08 20:01:00
66309    25783    558    2017-02-08 03:55:00    2017-02-08 03:55:00
66310    25783    745    2017-02-08 11:41:00    2017-02-08 11:41:00
66311    25783    701    2017-02-08 19:00:00    2017-02-08 19:00:00
66312    25783    692    2017-02-08 01:40:00    2017-02-08 01:40:00
66313    25784    643    2017-02-08 17:46:00    2017-02-08 17:46:00
66314    25784    484    2017-02-08 13:16:00    2017-02-08 13:16:00
66315    25784    475    2017-02-08 03:21:00    2017-02-08 03:21:00
66316    25784    625    2017-02-08 11:04:00    2017-02-08 11:04:00
66317    25784    591    2017-02-08 15:52:00    2017-02-08 15:52:00
66318    25785    933    2017-02-08 13:33:00    2017-02-08 13:33:00
66319    25785    649    2017-02-08 10:21:00    2017-02-08 10:21:00
66320    25785    681    2017-02-08 12:40:00    2017-02-08 12:40:00
66321    25785    527    2017-02-08 18:46:00    2017-02-08 18:46:00
66322    25785    800    2017-02-08 15:18:00    2017-02-08 15:18:00
66323    25786    632    2017-02-08 20:43:00    2017-02-08 20:43:00
66324    25786    776    2017-02-08 19:41:00    2017-02-08 19:41:00
66325    25786    546    2017-02-08 19:43:00    2017-02-08 19:43:00
66326    25786    506    2017-02-08 12:51:00    2017-02-08 12:51:00
66327    25786    769    2017-02-08 04:36:00    2017-02-08 04:36:00
66328    25787    470    2017-02-08 03:40:00    2017-02-08 03:40:00
66329    25787    911    2017-02-08 19:13:00    2017-02-08 19:13:00
66330    25787    585    2017-02-08 13:22:00    2017-02-08 13:22:00
66331    25787    705    2017-02-08 11:31:00    2017-02-08 11:31:00
66332    25787    600    2017-02-08 06:39:00    2017-02-08 06:39:00
66333    25788    764    2017-02-08 11:59:00    2017-02-08 11:59:00
66334    25788    580    2017-02-08 12:01:00    2017-02-08 12:01:00
66335    25788    523    2017-02-08 13:33:00    2017-02-08 13:33:00
66336    25788    672    2017-02-08 13:05:00    2017-02-08 13:05:00
66337    25788    677    2017-02-08 23:54:00    2017-02-08 23:54:00
66338    25789    913    2017-02-08 14:00:00    2017-02-08 14:00:00
66339    25789    862    2017-02-08 22:12:00    2017-02-08 22:12:00
66340    25789    743    2017-02-08 07:10:00    2017-02-08 07:10:00
66341    25789    867    2017-02-08 20:05:00    2017-02-08 20:05:00
66342    25789    494    2017-02-08 10:04:00    2017-02-08 10:04:00
66343    25790    486    2017-02-08 10:31:00    2017-02-08 10:31:00
66344    25790    651    2017-02-08 18:42:00    2017-02-08 18:42:00
66345    25790    688    2017-02-08 02:34:00    2017-02-08 02:34:00
66346    25790    688    2017-02-08 08:51:00    2017-02-08 08:51:00
66347    25790    926    2017-02-08 16:38:00    2017-02-08 16:38:00
66348    25791    671    2017-02-08 10:52:00    2017-02-08 10:52:00
66349    25791    718    2017-02-08 08:49:00    2017-02-08 08:49:00
66350    25791    764    2017-02-08 10:57:00    2017-02-08 10:57:00
66351    25791    727    2017-02-08 01:22:00    2017-02-08 01:22:00
66352    25791    472    2017-02-08 02:52:00    2017-02-08 02:52:00
66353    25792    915    2017-02-08 20:22:00    2017-02-08 20:22:00
66354    25792    925    2017-02-08 11:54:00    2017-02-08 11:54:00
66355    25792    547    2017-02-08 15:51:00    2017-02-08 15:51:00
66356    25792    768    2017-02-08 19:15:00    2017-02-08 19:15:00
66357    25792    882    2017-02-08 05:46:00    2017-02-08 05:46:00
66358    25793    559    2017-02-08 21:00:00    2017-02-08 21:00:00
66359    25793    666    2017-02-08 08:00:00    2017-02-08 08:00:00
66360    25793    790    2017-02-08 15:27:00    2017-02-08 15:27:00
66361    25793    731    2017-02-08 15:34:00    2017-02-08 15:34:00
66362    25793    931    2017-02-08 06:56:00    2017-02-08 06:56:00
66363    25794    613    2017-02-08 20:12:00    2017-02-08 20:12:00
66364    25794    815    2017-02-08 11:32:00    2017-02-08 11:32:00
66365    25794    529    2017-02-08 13:12:00    2017-02-08 13:12:00
66366    25794    666    2017-02-08 23:02:00    2017-02-08 23:02:00
66367    25794    752    2017-02-08 20:20:00    2017-02-08 20:20:00
66368    25795    662    2017-02-08 23:43:00    2017-02-08 23:43:00
66369    25795    574    2017-02-08 09:20:00    2017-02-08 09:20:00
66370    25795    869    2017-02-08 07:51:00    2017-02-08 07:51:00
66371    25795    608    2017-02-08 11:27:00    2017-02-08 11:27:00
66372    25795    686    2017-02-08 14:44:00    2017-02-08 14:44:00
66373    25796    686    2017-02-08 11:58:00    2017-02-08 11:58:00
66374    25796    660    2017-02-08 05:00:00    2017-02-08 05:00:00
66375    25796    917    2017-02-08 08:06:00    2017-02-08 08:06:00
66376    25796    627    2017-02-08 05:31:00    2017-02-08 05:31:00
66377    25796    498    2017-02-08 05:23:00    2017-02-08 05:23:00
66378    25797    754    2017-02-08 18:39:00    2017-02-08 18:39:00
66379    25797    876    2017-02-08 19:14:00    2017-02-08 19:14:00
66380    25797    620    2017-02-08 15:19:00    2017-02-08 15:19:00
66381    25797    881    2017-02-08 20:01:00    2017-02-08 20:01:00
66382    25797    791    2017-02-08 03:00:00    2017-02-08 03:00:00
66383    25798    915    2017-02-08 08:02:00    2017-02-08 08:02:00
66384    25798    904    2017-02-08 10:54:00    2017-02-08 10:54:00
66385    25798    784    2017-02-08 06:57:00    2017-02-08 06:57:00
66386    25798    672    2017-02-08 01:47:00    2017-02-08 01:47:00
66387    25798    676    2017-02-08 17:26:00    2017-02-08 17:26:00
66388    25799    712    2017-02-08 13:59:00    2017-02-08 13:59:00
66389    25799    636    2017-02-08 11:55:00    2017-02-08 11:55:00
66390    25799    742    2017-02-08 23:23:00    2017-02-08 23:23:00
66391    25799    744    2017-02-08 05:56:00    2017-02-08 05:56:00
66392    25799    586    2017-02-08 11:07:00    2017-02-08 11:07:00
66393    25800    670    2017-02-08 16:46:00    2017-02-08 16:46:00
66394    25800    754    2017-02-08 14:35:00    2017-02-08 14:35:00
66395    25800    916    2017-02-08 03:18:00    2017-02-08 03:18:00
66396    25800    592    2017-02-08 09:12:00    2017-02-08 09:12:00
66397    25800    624    2017-02-08 09:26:00    2017-02-08 09:26:00
66398    25801    916    2017-02-08 10:00:00    2017-02-08 10:00:00
66399    25801    769    2017-02-08 22:36:00    2017-02-08 22:36:00
66400    25801    787    2017-02-08 21:17:00    2017-02-08 21:17:00
66401    25801    865    2017-02-08 05:06:00    2017-02-08 05:06:00
66402    25801    818    2017-02-08 21:20:00    2017-02-08 21:20:00
66403    25802    667    2017-02-08 10:07:00    2017-02-08 10:07:00
66404    25802    528    2017-02-08 12:27:00    2017-02-08 12:27:00
66405    25802    875    2017-02-08 21:13:00    2017-02-08 21:13:00
66406    25802    592    2017-02-08 14:43:00    2017-02-08 14:43:00
66407    25802    827    2017-02-08 09:53:00    2017-02-08 09:53:00
66408    25803    823    2017-02-08 19:39:00    2017-02-08 19:39:00
66409    25803    878    2017-02-08 17:24:00    2017-02-08 17:24:00
66410    25803    659    2017-02-08 09:41:00    2017-02-08 09:41:00
66411    25803    485    2017-02-08 22:34:00    2017-02-08 22:34:00
66412    25803    860    2017-02-08 14:23:00    2017-02-08 14:23:00
66413    25804    677    2017-02-08 11:50:00    2017-02-08 11:50:00
66414    25804    858    2017-02-08 15:34:00    2017-02-08 15:34:00
66415    25804    816    2017-02-08 02:27:00    2017-02-08 02:27:00
66416    25804    748    2017-02-08 17:58:00    2017-02-08 17:58:00
66417    25804    554    2017-02-08 08:53:00    2017-02-08 08:53:00
66418    25805    811    2017-02-08 18:33:00    2017-02-08 18:33:00
66419    25805    931    2017-02-08 13:33:00    2017-02-08 13:33:00
66420    25805    571    2017-02-08 09:47:00    2017-02-08 09:47:00
66421    25805    774    2017-02-08 16:07:00    2017-02-08 16:07:00
66422    25805    607    2017-02-08 11:37:00    2017-02-08 11:37:00
66423    25806    560    2017-02-08 21:58:00    2017-02-08 21:58:00
66424    25806    820    2017-02-08 16:01:00    2017-02-08 16:01:00
66425    25806    936    2017-02-08 12:28:00    2017-02-08 12:28:00
66426    25806    635    2017-02-08 04:12:00    2017-02-08 04:12:00
66427    25806    538    2017-02-08 08:17:00    2017-02-08 08:17:00
66428    25807    767    2017-02-08 16:55:00    2017-02-08 16:55:00
66429    25807    834    2017-02-08 02:47:00    2017-02-08 02:47:00
66430    25807    488    2017-02-08 13:56:00    2017-02-08 13:56:00
66431    25807    664    2017-02-08 12:51:00    2017-02-08 12:51:00
66432    25807    626    2017-02-08 17:51:00    2017-02-08 17:51:00
66433    25808    881    2017-02-08 05:53:00    2017-02-08 05:53:00
66434    25808    711    2017-02-08 06:09:00    2017-02-08 06:09:00
66435    25808    616    2017-02-08 16:51:00    2017-02-08 16:51:00
66436    25808    836    2017-02-08 01:26:00    2017-02-08 01:26:00
66437    25808    477    2017-02-08 19:03:00    2017-02-08 19:03:00
66438    25809    859    2017-02-08 07:06:00    2017-02-08 07:06:00
66439    25809    512    2017-02-08 12:01:00    2017-02-08 12:01:00
66440    25809    846    2017-02-08 11:27:00    2017-02-08 11:27:00
66441    25809    602    2017-02-08 03:07:00    2017-02-08 03:07:00
66442    25809    725    2017-02-08 05:59:00    2017-02-08 05:59:00
66443    25810    914    2017-02-09 16:47:00    2017-02-09 16:47:00
66444    25810    635    2017-02-09 19:46:00    2017-02-09 19:46:00
66445    25810    584    2017-02-09 04:51:00    2017-02-09 04:51:00
66446    25810    507    2017-02-09 10:38:00    2017-02-09 10:38:00
66447    25810    780    2017-02-09 23:31:00    2017-02-09 23:31:00
66448    25811    890    2017-02-09 07:48:00    2017-02-09 07:48:00
66449    25811    589    2017-02-09 12:35:00    2017-02-09 12:35:00
66450    25811    669    2017-02-09 09:22:00    2017-02-09 09:22:00
66451    25811    694    2017-02-09 12:52:00    2017-02-09 12:52:00
66452    25811    765    2017-02-09 21:53:00    2017-02-09 21:53:00
66453    25812    786    2017-02-09 21:46:00    2017-02-09 21:46:00
66454    25812    909    2017-02-09 10:40:00    2017-02-09 10:40:00
66455    25812    753    2017-02-09 20:54:00    2017-02-09 20:54:00
66456    25812    653    2017-02-09 20:42:00    2017-02-09 20:42:00
66457    25812    548    2017-02-09 16:14:00    2017-02-09 16:14:00
66458    25813    531    2017-02-09 16:17:00    2017-02-09 16:17:00
66459    25813    479    2017-02-09 10:57:00    2017-02-09 10:57:00
66460    25813    584    2017-02-09 08:35:00    2017-02-09 08:35:00
66461    25813    853    2017-02-09 22:15:00    2017-02-09 22:15:00
66462    25813    729    2017-02-09 10:20:00    2017-02-09 10:20:00
66463    25814    770    2017-02-09 11:44:00    2017-02-09 11:44:00
66464    25814    704    2017-02-09 22:35:00    2017-02-09 22:35:00
66465    25814    951    2017-02-09 22:26:00    2017-02-09 22:26:00
66466    25814    960    2017-02-09 06:07:00    2017-02-09 06:07:00
66467    25814    916    2017-02-09 02:12:00    2017-02-09 02:12:00
66468    25815    538    2017-02-09 22:35:00    2017-02-09 22:35:00
66469    25815    663    2017-02-09 01:34:00    2017-02-09 01:34:00
66470    25815    717    2017-02-09 03:09:00    2017-02-09 03:09:00
66471    25815    577    2017-02-09 05:53:00    2017-02-09 05:53:00
66472    25815    698    2017-02-09 04:25:00    2017-02-09 04:25:00
66473    25816    900    2017-02-09 04:58:00    2017-02-09 04:58:00
66474    25816    617    2017-02-09 03:44:00    2017-02-09 03:44:00
66475    25816    725    2017-02-09 10:34:00    2017-02-09 10:34:00
66476    25816    507    2017-02-09 17:52:00    2017-02-09 17:52:00
66477    25816    954    2017-02-09 15:29:00    2017-02-09 15:29:00
66478    25817    753    2017-02-09 02:29:00    2017-02-09 02:29:00
66479    25817    921    2017-02-09 14:47:00    2017-02-09 14:47:00
66480    25817    722    2017-02-09 23:21:00    2017-02-09 23:21:00
66481    25817    654    2017-02-09 02:52:00    2017-02-09 02:52:00
66482    25817    680    2017-02-09 10:19:00    2017-02-09 10:19:00
66483    25818    890    2017-02-09 11:50:00    2017-02-09 11:50:00
66484    25818    660    2017-02-09 22:31:00    2017-02-09 22:31:00
66485    25818    879    2017-02-09 05:02:00    2017-02-09 05:02:00
66486    25818    864    2017-02-09 14:27:00    2017-02-09 14:27:00
66487    25818    835    2017-02-09 14:23:00    2017-02-09 14:23:00
66488    25819    600    2017-02-09 22:21:00    2017-02-09 22:21:00
66489    25819    740    2017-02-09 11:47:00    2017-02-09 11:47:00
66490    25819    925    2017-02-09 03:08:00    2017-02-09 03:08:00
66491    25819    808    2017-02-09 03:20:00    2017-02-09 03:20:00
66492    25819    858    2017-02-09 12:55:00    2017-02-09 12:55:00
66493    25820    598    2017-02-09 02:16:00    2017-02-09 02:16:00
66494    25820    803    2017-02-09 10:17:00    2017-02-09 10:17:00
66495    25820    527    2017-02-09 12:04:00    2017-02-09 12:04:00
66496    25820    755    2017-02-09 19:48:00    2017-02-09 19:48:00
66497    25820    948    2017-02-09 03:38:00    2017-02-09 03:38:00
66498    25821    808    2017-02-09 15:54:00    2017-02-09 15:54:00
66499    25821    757    2017-02-09 15:00:00    2017-02-09 15:00:00
66500    25821    555    2017-02-09 06:29:00    2017-02-09 06:29:00
66501    25821    841    2017-02-09 06:43:00    2017-02-09 06:43:00
66502    25821    574    2017-02-09 08:17:00    2017-02-09 08:17:00
66503    25822    960    2017-02-09 12:17:00    2017-02-09 12:17:00
66504    25822    687    2017-02-09 03:41:00    2017-02-09 03:41:00
66505    25822    710    2017-02-09 15:00:00    2017-02-09 15:00:00
66506    25822    569    2017-02-09 02:21:00    2017-02-09 02:21:00
66507    25822    660    2017-02-09 07:16:00    2017-02-09 07:16:00
66508    25823    825    2017-02-09 18:24:00    2017-02-09 18:24:00
66509    25823    792    2017-02-09 15:50:00    2017-02-09 15:50:00
66510    25823    529    2017-02-09 01:35:00    2017-02-09 01:35:00
66511    25823    951    2017-02-09 19:08:00    2017-02-09 19:08:00
66512    25823    929    2017-02-09 22:20:00    2017-02-09 22:20:00
66513    25824    891    2017-02-09 09:34:00    2017-02-09 09:34:00
66514    25824    853    2017-02-09 10:51:00    2017-02-09 10:51:00
66515    25824    925    2017-02-09 20:03:00    2017-02-09 20:03:00
66516    25824    647    2017-02-09 21:24:00    2017-02-09 21:24:00
66517    25824    631    2017-02-09 05:17:00    2017-02-09 05:17:00
66518    25825    493    2017-02-09 17:14:00    2017-02-09 17:14:00
66519    25825    839    2017-02-09 05:14:00    2017-02-09 05:14:00
66520    25825    877    2017-02-09 13:56:00    2017-02-09 13:56:00
66521    25825    555    2017-02-09 07:47:00    2017-02-09 07:47:00
66522    25825    882    2017-02-09 20:03:00    2017-02-09 20:03:00
66523    25826    902    2017-02-09 20:36:00    2017-02-09 20:36:00
66524    25826    589    2017-02-09 11:47:00    2017-02-09 11:47:00
66525    25826    468    2017-02-09 01:58:00    2017-02-09 01:58:00
66526    25826    676    2017-02-09 12:56:00    2017-02-09 12:56:00
66527    25826    519    2017-02-09 05:35:00    2017-02-09 05:35:00
66528    25827    570    2017-02-09 01:22:00    2017-02-09 01:22:00
66529    25827    535    2017-02-09 12:23:00    2017-02-09 12:23:00
66530    25827    892    2017-02-09 08:07:00    2017-02-09 08:07:00
66531    25827    877    2017-02-09 11:27:00    2017-02-09 11:27:00
66532    25827    648    2017-02-09 04:43:00    2017-02-09 04:43:00
66533    25828    835    2017-02-09 13:39:00    2017-02-09 13:39:00
66534    25828    788    2017-02-09 07:30:00    2017-02-09 07:30:00
66535    25828    552    2017-02-09 23:10:00    2017-02-09 23:10:00
66536    25828    723    2017-02-09 12:36:00    2017-02-09 12:36:00
66537    25828    782    2017-02-09 23:46:00    2017-02-09 23:46:00
66538    25829    764    2017-02-09 21:54:00    2017-02-09 21:54:00
66539    25829    631    2017-02-09 19:14:00    2017-02-09 19:14:00
66540    25829    485    2017-02-09 02:34:00    2017-02-09 02:34:00
66541    25829    857    2017-02-09 16:17:00    2017-02-09 16:17:00
66542    25829    601    2017-02-09 04:11:00    2017-02-09 04:11:00
66543    25830    531    2017-02-09 03:11:00    2017-02-09 03:11:00
66544    25830    776    2017-02-09 06:48:00    2017-02-09 06:48:00
66545    25830    690    2017-02-09 20:05:00    2017-02-09 20:05:00
66546    25830    526    2017-02-09 18:51:00    2017-02-09 18:51:00
66547    25830    841    2017-02-09 01:45:00    2017-02-09 01:45:00
66548    25831    630    2017-02-09 19:07:00    2017-02-09 19:07:00
66549    25831    843    2017-02-09 04:06:00    2017-02-09 04:06:00
66550    25831    594    2017-02-09 06:02:00    2017-02-09 06:02:00
66551    25831    538    2017-02-09 09:56:00    2017-02-09 09:56:00
66552    25831    615    2017-02-09 20:47:00    2017-02-09 20:47:00
66553    25832    930    2017-02-09 13:58:00    2017-02-09 13:58:00
66554    25832    894    2017-02-09 23:20:00    2017-02-09 23:20:00
66555    25832    863    2017-02-09 22:25:00    2017-02-09 22:25:00
66556    25832    896    2017-02-09 04:18:00    2017-02-09 04:18:00
66557    25832    601    2017-02-09 14:18:00    2017-02-09 14:18:00
66558    25833    706    2017-02-09 14:53:00    2017-02-09 14:53:00
66559    25833    898    2017-02-09 15:09:00    2017-02-09 15:09:00
66560    25833    957    2017-02-09 08:05:00    2017-02-09 08:05:00
66561    25833    577    2017-02-09 21:40:00    2017-02-09 21:40:00
66562    25833    748    2017-02-09 07:23:00    2017-02-09 07:23:00
66563    25834    514    2017-02-09 05:02:00    2017-02-09 05:02:00
66564    25834    901    2017-02-09 16:37:00    2017-02-09 16:37:00
66565    25834    706    2017-02-09 17:42:00    2017-02-09 17:42:00
66566    25834    510    2017-02-09 12:35:00    2017-02-09 12:35:00
66567    25834    553    2017-02-09 14:09:00    2017-02-09 14:09:00
66568    25835    467    2017-02-09 15:24:00    2017-02-09 15:24:00
66569    25835    706    2017-02-09 04:02:00    2017-02-09 04:02:00
66570    25835    505    2017-02-09 02:17:00    2017-02-09 02:17:00
66571    25835    890    2017-02-09 08:17:00    2017-02-09 08:17:00
66572    25835    600    2017-02-09 17:58:00    2017-02-09 17:58:00
66573    25836    609    2017-02-09 23:55:00    2017-02-09 23:55:00
66574    25836    621    2017-02-09 16:05:00    2017-02-09 16:05:00
66575    25836    490    2017-02-09 18:46:00    2017-02-09 18:46:00
66576    25836    604    2017-02-09 05:06:00    2017-02-09 05:06:00
66577    25836    529    2017-02-09 22:40:00    2017-02-09 22:40:00
66578    25837    556    2017-02-09 02:25:00    2017-02-09 02:25:00
66579    25837    729    2017-02-09 10:05:00    2017-02-09 10:05:00
66580    25837    778    2017-02-09 05:46:00    2017-02-09 05:46:00
66581    25837    487    2017-02-09 14:44:00    2017-02-09 14:44:00
66582    25837    742    2017-02-09 14:55:00    2017-02-09 14:55:00
66583    25838    800    2017-02-09 01:26:00    2017-02-09 01:26:00
66584    25838    624    2017-02-09 17:35:00    2017-02-09 17:35:00
66585    25838    691    2017-02-09 23:04:00    2017-02-09 23:04:00
66586    25838    697    2017-02-09 03:27:00    2017-02-09 03:27:00
66587    25838    779    2017-02-09 07:41:00    2017-02-09 07:41:00
66588    25839    778    2017-02-09 05:48:00    2017-02-09 05:48:00
66589    25839    652    2017-02-09 17:55:00    2017-02-09 17:55:00
66590    25839    773    2017-02-09 10:34:00    2017-02-09 10:34:00
66591    25839    629    2017-02-09 14:30:00    2017-02-09 14:30:00
66592    25839    499    2017-02-09 15:16:00    2017-02-09 15:16:00
66593    25840    808    2017-02-09 05:00:00    2017-02-09 05:00:00
66594    25840    832    2017-02-09 17:39:00    2017-02-09 17:39:00
66595    25840    680    2017-02-09 01:26:00    2017-02-09 01:26:00
66596    25840    546    2017-02-09 13:32:00    2017-02-09 13:32:00
66597    25840    654    2017-02-09 18:32:00    2017-02-09 18:32:00
66598    25841    897    2017-02-09 01:14:00    2017-02-09 01:14:00
66599    25841    705    2017-02-09 17:24:00    2017-02-09 17:24:00
66600    25841    483    2017-02-09 11:29:00    2017-02-09 11:29:00
66601    25841    826    2017-02-09 18:22:00    2017-02-09 18:22:00
66602    25841    551    2017-02-09 19:25:00    2017-02-09 19:25:00
66603    25842    935    2017-02-09 03:03:00    2017-02-09 03:03:00
66604    25842    903    2017-02-09 16:13:00    2017-02-09 16:13:00
66605    25842    930    2017-02-09 11:02:00    2017-02-09 11:02:00
66606    25842    503    2017-02-09 12:54:00    2017-02-09 12:54:00
66607    25842    926    2017-02-09 14:54:00    2017-02-09 14:54:00
66608    25843    668    2017-02-09 07:33:00    2017-02-09 07:33:00
66609    25843    577    2017-02-09 02:07:00    2017-02-09 02:07:00
66610    25843    737    2017-02-09 16:02:00    2017-02-09 16:02:00
66611    25843    638    2017-02-09 10:33:00    2017-02-09 10:33:00
66612    25843    635    2017-02-09 12:11:00    2017-02-09 12:11:00
66613    25844    736    2017-02-09 22:42:00    2017-02-09 22:42:00
66614    25844    516    2017-02-09 21:42:00    2017-02-09 21:42:00
66615    25844    470    2017-02-09 16:17:00    2017-02-09 16:17:00
66616    25844    754    2017-02-09 18:43:00    2017-02-09 18:43:00
66617    25844    656    2017-02-09 02:34:00    2017-02-09 02:34:00
66618    25845    944    2017-02-10 10:19:00    2017-02-10 10:19:00
66619    25845    639    2017-02-10 16:27:00    2017-02-10 16:27:00
66620    25845    592    2017-02-10 23:28:00    2017-02-10 23:28:00
66621    25845    545    2017-02-10 15:12:00    2017-02-10 15:12:00
66622    25845    728    2017-02-10 11:01:00    2017-02-10 11:01:00
66623    25846    710    2017-02-10 08:53:00    2017-02-10 08:53:00
66624    25846    510    2017-02-10 21:13:00    2017-02-10 21:13:00
66625    25846    697    2017-02-10 08:54:00    2017-02-10 08:54:00
66626    25846    917    2017-02-10 11:13:00    2017-02-10 11:13:00
66627    25846    468    2017-02-10 06:38:00    2017-02-10 06:38:00
66628    25847    559    2017-02-10 18:32:00    2017-02-10 18:32:00
66629    25847    857    2017-02-10 06:22:00    2017-02-10 06:22:00
66630    25847    614    2017-02-10 12:34:00    2017-02-10 12:34:00
66631    25847    515    2017-02-10 14:09:00    2017-02-10 14:09:00
66632    25847    881    2017-02-10 12:25:00    2017-02-10 12:25:00
66633    25848    621    2017-02-10 10:11:00    2017-02-10 10:11:00
66634    25848    812    2017-02-10 09:34:00    2017-02-10 09:34:00
66635    25848    542    2017-02-10 21:58:00    2017-02-10 21:58:00
66636    25848    858    2017-02-10 11:21:00    2017-02-10 11:21:00
66637    25848    515    2017-02-10 21:18:00    2017-02-10 21:18:00
66638    25849    817    2017-02-10 06:22:00    2017-02-10 06:22:00
66639    25849    543    2017-02-10 06:04:00    2017-02-10 06:04:00
66640    25849    623    2017-02-10 01:04:00    2017-02-10 01:04:00
66641    25849    608    2017-02-10 15:05:00    2017-02-10 15:05:00
66642    25849    513    2017-02-10 01:58:00    2017-02-10 01:58:00
66643    25850    900    2017-02-10 10:45:00    2017-02-10 10:45:00
66644    25850    656    2017-02-10 01:06:00    2017-02-10 01:06:00
66645    25850    785    2017-02-10 23:25:00    2017-02-10 23:25:00
66646    25850    809    2017-02-10 09:28:00    2017-02-10 09:28:00
66647    25850    747    2017-02-10 08:44:00    2017-02-10 08:44:00
66648    25851    855    2017-02-10 09:00:00    2017-02-10 09:00:00
66649    25851    650    2017-02-10 14:45:00    2017-02-10 14:45:00
66650    25851    661    2017-02-10 17:34:00    2017-02-10 17:34:00
66651    25851    795    2017-02-10 09:05:00    2017-02-10 09:05:00
66652    25851    520    2017-02-10 03:53:00    2017-02-10 03:53:00
66653    25852    914    2017-02-10 04:19:00    2017-02-10 04:19:00
66654    25852    546    2017-02-10 06:15:00    2017-02-10 06:15:00
66655    25852    771    2017-02-10 12:41:00    2017-02-10 12:41:00
66656    25852    804    2017-02-10 21:37:00    2017-02-10 21:37:00
66657    25852    804    2017-02-10 13:36:00    2017-02-10 13:36:00
66658    25853    856    2017-02-10 20:25:00    2017-02-10 20:25:00
66659    25853    472    2017-02-10 21:46:00    2017-02-10 21:46:00
66660    25853    746    2017-02-10 18:52:00    2017-02-10 18:52:00
66661    25853    758    2017-02-10 20:27:00    2017-02-10 20:27:00
66662    25853    755    2017-02-10 18:42:00    2017-02-10 18:42:00
66663    25854    512    2017-02-10 01:33:00    2017-02-10 01:33:00
66664    25854    789    2017-02-10 04:37:00    2017-02-10 04:37:00
66665    25854    788    2017-02-10 03:14:00    2017-02-10 03:14:00
66666    25854    923    2017-02-10 11:02:00    2017-02-10 11:02:00
66667    25854    861    2017-02-10 01:32:00    2017-02-10 01:32:00
66668    25855    590    2017-02-10 21:43:00    2017-02-10 21:43:00
66669    25855    504    2017-02-10 11:35:00    2017-02-10 11:35:00
66670    25855    908    2017-02-10 04:30:00    2017-02-10 04:30:00
66671    25855    794    2017-02-10 10:58:00    2017-02-10 10:58:00
66672    25855    615    2017-02-10 13:08:00    2017-02-10 13:08:00
66673    25856    921    2017-02-10 12:59:00    2017-02-10 12:59:00
66674    25856    719    2017-02-10 20:12:00    2017-02-10 20:12:00
66675    25856    550    2017-02-10 17:49:00    2017-02-10 17:49:00
66676    25856    705    2017-02-10 02:00:00    2017-02-10 02:00:00
66677    25856    923    2017-02-10 23:55:00    2017-02-10 23:55:00
66678    25857    546    2017-02-10 06:23:00    2017-02-10 06:23:00
66679    25857    560    2017-02-10 03:13:00    2017-02-10 03:13:00
66680    25857    661    2017-02-10 05:24:00    2017-02-10 05:24:00
66681    25857    767    2017-02-10 02:49:00    2017-02-10 02:49:00
66682    25857    618    2017-02-10 12:54:00    2017-02-10 12:54:00
66683    25858    691    2017-02-10 16:31:00    2017-02-10 16:31:00
66684    25858    651    2017-02-10 15:04:00    2017-02-10 15:04:00
66685    25858    548    2017-02-10 09:12:00    2017-02-10 09:12:00
66686    25858    853    2017-02-10 03:40:00    2017-02-10 03:40:00
66687    25858    785    2017-02-10 15:57:00    2017-02-10 15:57:00
66688    25859    647    2017-02-10 16:35:00    2017-02-10 16:35:00
66689    25859    676    2017-02-10 18:09:00    2017-02-10 18:09:00
66690    25859    942    2017-02-10 10:04:00    2017-02-10 10:04:00
66691    25859    620    2017-02-10 05:12:00    2017-02-10 05:12:00
66692    25859    560    2017-02-10 16:59:00    2017-02-10 16:59:00
66693    25860    948    2017-02-10 06:05:00    2017-02-10 06:05:00
66694    25860    832    2017-02-10 03:27:00    2017-02-10 03:27:00
66695    25860    955    2017-02-10 11:43:00    2017-02-10 11:43:00
66696    25860    664    2017-02-10 17:18:00    2017-02-10 17:18:00
66697    25860    464    2017-02-10 07:02:00    2017-02-10 07:02:00
66698    25861    792    2017-02-11 09:34:00    2017-02-11 09:34:00
66699    25861    677    2017-02-11 22:30:00    2017-02-11 22:30:00
66700    25861    727    2017-02-11 02:33:00    2017-02-11 02:33:00
66701    25861    588    2017-02-11 15:04:00    2017-02-11 15:04:00
66702    25861    725    2017-02-11 19:49:00    2017-02-11 19:49:00
66703    25862    919    2017-02-11 09:36:00    2017-02-11 09:36:00
66704    25862    757    2017-02-11 06:37:00    2017-02-11 06:37:00
66705    25862    708    2017-02-11 22:39:00    2017-02-11 22:39:00
66706    25862    527    2017-02-11 16:39:00    2017-02-11 16:39:00
66707    25862    609    2017-02-11 19:55:00    2017-02-11 19:55:00
66708    25863    503    2017-02-11 13:39:00    2017-02-11 13:39:00
66709    25863    466    2017-02-11 07:28:00    2017-02-11 07:28:00
66710    25863    763    2017-02-11 16:58:00    2017-02-11 16:58:00
66711    25863    704    2017-02-11 08:21:00    2017-02-11 08:21:00
66712    25863    809    2017-02-11 10:46:00    2017-02-11 10:46:00
66713    25864    772    2017-02-11 04:27:00    2017-02-11 04:27:00
66714    25864    695    2017-02-11 19:31:00    2017-02-11 19:31:00
66715    25864    500    2017-02-11 07:14:00    2017-02-11 07:14:00
66716    25864    752    2017-02-11 17:29:00    2017-02-11 17:29:00
66717    25864    577    2017-02-11 09:40:00    2017-02-11 09:40:00
66718    25865    959    2017-02-11 02:10:00    2017-02-11 02:10:00
66719    25865    584    2017-02-11 13:02:00    2017-02-11 13:02:00
66720    25865    691    2017-02-11 17:41:00    2017-02-11 17:41:00
66721    25865    589    2017-02-11 08:34:00    2017-02-11 08:34:00
66722    25865    503    2017-02-11 05:15:00    2017-02-11 05:15:00
66723    25866    758    2017-02-11 19:22:00    2017-02-11 19:22:00
66724    25866    687    2017-02-11 14:35:00    2017-02-11 14:35:00
66725    25866    671    2017-02-12 00:00:00    2017-02-12 00:00:00
66726    25866    845    2017-02-11 19:20:00    2017-02-11 19:20:00
66727    25866    564    2017-02-11 15:08:00    2017-02-11 15:08:00
66728    25867    582    2017-02-11 04:49:00    2017-02-11 04:49:00
66729    25867    875    2017-02-11 12:03:00    2017-02-11 12:03:00
66730    25867    517    2017-02-12 00:00:00    2017-02-12 00:00:00
66731    25867    679    2017-02-11 04:58:00    2017-02-11 04:58:00
66732    25867    524    2017-02-11 20:13:00    2017-02-11 20:13:00
66733    25868    546    2017-02-11 19:39:00    2017-02-11 19:39:00
66734    25868    739    2017-02-11 08:04:00    2017-02-11 08:04:00
66735    25868    587    2017-02-11 07:26:00    2017-02-11 07:26:00
66736    25868    950    2017-02-11 18:14:00    2017-02-11 18:14:00
66737    25868    710    2017-02-11 04:42:00    2017-02-11 04:42:00
66738    25869    575    2017-02-11 03:44:00    2017-02-11 03:44:00
66739    25869    919    2017-02-11 02:25:00    2017-02-11 02:25:00
66740    25869    737    2017-02-11 11:40:00    2017-02-11 11:40:00
66741    25869    559    2017-02-11 12:08:00    2017-02-11 12:08:00
66742    25869    835    2017-02-11 02:04:00    2017-02-11 02:04:00
66743    25870    927    2017-02-11 23:33:00    2017-02-11 23:33:00
66744    25870    818    2017-02-11 08:42:00    2017-02-11 08:42:00
66745    25870    727    2017-02-11 22:17:00    2017-02-11 22:17:00
66746    25870    932    2017-02-11 10:38:00    2017-02-11 10:38:00
66747    25870    638    2017-02-11 20:04:00    2017-02-11 20:04:00
66748    25871    950    2017-02-11 20:58:00    2017-02-11 20:58:00
66749    25871    825    2017-02-11 15:34:00    2017-02-11 15:34:00
66750    25871    519    2017-02-11 22:49:00    2017-02-11 22:49:00
66751    25871    918    2017-02-11 15:42:00    2017-02-11 15:42:00
66752    25871    845    2017-02-11 17:45:00    2017-02-11 17:45:00
66753    25872    497    2017-02-11 23:13:00    2017-02-11 23:13:00
66754    25872    687    2017-02-11 13:20:00    2017-02-11 13:20:00
66755    25872    744    2017-02-11 23:32:00    2017-02-11 23:32:00
66756    25872    905    2017-02-11 08:00:00    2017-02-11 08:00:00
66757    25872    615    2017-02-11 08:48:00    2017-02-11 08:48:00
66758    25873    758    2017-02-11 09:07:00    2017-02-11 09:07:00
66759    25873    728    2017-02-11 03:48:00    2017-02-11 03:48:00
66760    25873    495    2017-02-11 09:48:00    2017-02-11 09:48:00
66761    25873    610    2017-02-11 12:55:00    2017-02-11 12:55:00
66762    25873    924    2017-02-11 18:04:00    2017-02-11 18:04:00
66763    25874    841    2017-02-11 02:22:00    2017-02-11 02:22:00
66764    25874    588    2017-02-11 08:50:00    2017-02-11 08:50:00
66765    25874    500    2017-02-11 05:03:00    2017-02-11 05:03:00
66766    25874    612    2017-02-11 09:00:00    2017-02-11 09:00:00
66767    25874    896    2017-02-11 23:57:00    2017-02-11 23:57:00
66768    25875    745    2017-02-11 11:09:00    2017-02-11 11:09:00
66769    25875    609    2017-02-11 12:40:00    2017-02-11 12:40:00
66770    25875    475    2017-02-11 18:21:00    2017-02-11 18:21:00
66771    25875    608    2017-02-11 20:31:00    2017-02-11 20:31:00
66772    25875    767    2017-02-11 04:23:00    2017-02-11 04:23:00
66773    25876    745    2017-02-11 21:26:00    2017-02-11 21:26:00
66774    25876    693    2017-02-11 09:11:00    2017-02-11 09:11:00
66775    25876    852    2017-02-11 05:59:00    2017-02-11 05:59:00
66776    25876    781    2017-02-11 06:02:00    2017-02-11 06:02:00
66777    25876    686    2017-02-11 04:15:00    2017-02-11 04:15:00
66778    25877    897    2017-02-11 01:00:00    2017-02-11 01:00:00
66779    25877    763    2017-02-11 10:53:00    2017-02-11 10:53:00
66780    25877    613    2017-02-11 19:09:00    2017-02-11 19:09:00
66781    25877    594    2017-02-11 10:23:00    2017-02-11 10:23:00
66782    25877    743    2017-02-11 07:23:00    2017-02-11 07:23:00
66783    25878    578    2017-02-11 01:40:00    2017-02-11 01:40:00
66784    25878    757    2017-02-11 16:04:00    2017-02-11 16:04:00
66785    25878    895    2017-02-11 15:15:00    2017-02-11 15:15:00
66786    25878    700    2017-02-11 04:03:00    2017-02-11 04:03:00
66787    25878    485    2017-02-11 10:45:00    2017-02-11 10:45:00
66788    25879    620    2017-02-11 13:51:00    2017-02-11 13:51:00
66789    25879    915    2017-02-11 12:15:00    2017-02-11 12:15:00
66790    25879    776    2017-02-11 12:39:00    2017-02-11 12:39:00
66791    25879    825    2017-02-11 16:39:00    2017-02-11 16:39:00
66792    25879    950    2017-02-11 17:37:00    2017-02-11 17:37:00
66793    25880    958    2017-02-11 21:17:00    2017-02-11 21:17:00
66794    25880    876    2017-02-11 19:20:00    2017-02-11 19:20:00
66795    25880    946    2017-02-11 18:12:00    2017-02-11 18:12:00
66796    25880    555    2017-02-11 22:05:00    2017-02-11 22:05:00
66797    25880    683    2017-02-11 10:56:00    2017-02-11 10:56:00
66798    25881    653    2017-02-11 13:55:00    2017-02-11 13:55:00
66799    25881    665    2017-02-11 07:11:00    2017-02-11 07:11:00
66800    25881    956    2017-02-11 16:48:00    2017-02-11 16:48:00
66801    25881    819    2017-02-11 18:30:00    2017-02-11 18:30:00
66802    25881    609    2017-02-11 05:03:00    2017-02-11 05:03:00
66803    25882    609    2017-02-11 15:13:00    2017-02-11 15:13:00
66804    25882    677    2017-02-11 17:56:00    2017-02-11 17:56:00
66805    25882    711    2017-02-11 20:54:00    2017-02-11 20:54:00
66806    25882    871    2017-02-11 17:54:00    2017-02-11 17:54:00
66807    25882    581    2017-02-11 10:21:00    2017-02-11 10:21:00
66808    25883    803    2017-02-11 19:12:00    2017-02-11 19:12:00
66809    25883    602    2017-02-11 05:27:00    2017-02-11 05:27:00
66810    25883    961    2017-02-11 18:28:00    2017-02-11 18:28:00
66811    25883    827    2017-02-11 19:30:00    2017-02-11 19:30:00
66812    25883    612    2017-02-11 15:02:00    2017-02-11 15:02:00
66813    25884    854    2017-02-11 18:56:00    2017-02-11 18:56:00
66814    25884    645    2017-02-11 10:38:00    2017-02-11 10:38:00
66815    25884    956    2017-02-11 03:00:00    2017-02-11 03:00:00
66816    25884    877    2017-02-11 23:09:00    2017-02-11 23:09:00
66817    25884    711    2017-02-11 12:35:00    2017-02-11 12:35:00
66818    25885    715    2017-02-11 08:47:00    2017-02-11 08:47:00
66819    25885    947    2017-02-11 06:25:00    2017-02-11 06:25:00
66820    25885    942    2017-02-11 15:45:00    2017-02-11 15:45:00
66821    25885    850    2017-02-11 07:00:00    2017-02-11 07:00:00
66822    25885    771    2017-02-11 16:56:00    2017-02-11 16:56:00
66823    25886    711    2017-02-11 02:40:00    2017-02-11 02:40:00
66824    25886    749    2017-02-11 12:45:00    2017-02-11 12:45:00
66825    25886    812    2017-02-11 05:36:00    2017-02-11 05:36:00
66826    25886    677    2017-02-11 23:36:00    2017-02-11 23:36:00
66827    25886    904    2017-02-11 09:29:00    2017-02-11 09:29:00
66828    25887    536    2017-02-11 03:31:00    2017-02-11 03:31:00
66829    25887    917    2017-02-11 05:44:00    2017-02-11 05:44:00
66830    25887    946    2017-02-11 03:35:00    2017-02-11 03:35:00
66831    25887    600    2017-02-11 22:38:00    2017-02-11 22:38:00
66832    25887    871    2017-02-11 10:23:00    2017-02-11 10:23:00
66833    25888    764    2017-02-11 11:21:00    2017-02-11 11:21:00
66834    25888    537    2017-02-11 10:00:00    2017-02-11 10:00:00
66835    25888    697    2017-02-11 08:23:00    2017-02-11 08:23:00
66836    25888    953    2017-02-11 07:41:00    2017-02-11 07:41:00
66837    25888    615    2017-02-11 01:24:00    2017-02-11 01:24:00
66838    25889    885    2017-02-11 06:10:00    2017-02-11 06:10:00
66839    25889    649    2017-02-11 13:04:00    2017-02-11 13:04:00
66840    25889    952    2017-02-11 22:59:00    2017-02-11 22:59:00
66841    25889    614    2017-02-11 02:27:00    2017-02-11 02:27:00
66842    25889    556    2017-02-11 15:05:00    2017-02-11 15:05:00
66843    25890    766    2017-02-11 12:35:00    2017-02-11 12:35:00
66844    25890    770    2017-02-11 08:56:00    2017-02-11 08:56:00
66845    25890    665    2017-02-11 15:21:00    2017-02-11 15:21:00
66846    25890    472    2017-02-11 22:12:00    2017-02-11 22:12:00
66847    25890    869    2017-02-11 03:30:00    2017-02-11 03:30:00
66848    25891    754    2017-02-11 08:37:00    2017-02-11 08:37:00
66849    25891    784    2017-02-11 15:14:00    2017-02-11 15:14:00
66850    25891    746    2017-02-11 10:55:00    2017-02-11 10:55:00
66851    25891    521    2017-02-11 20:29:00    2017-02-11 20:29:00
66852    25891    825    2017-02-11 08:04:00    2017-02-11 08:04:00
66853    25892    556    2017-02-11 19:31:00    2017-02-11 19:31:00
66854    25892    829    2017-02-11 13:51:00    2017-02-11 13:51:00
66855    25892    735    2017-02-11 23:57:00    2017-02-11 23:57:00
66856    25892    858    2017-02-11 20:14:00    2017-02-11 20:14:00
66857    25892    831    2017-02-11 13:58:00    2017-02-11 13:58:00
66858    25893    651    2017-02-11 06:24:00    2017-02-11 06:24:00
66859    25893    674    2017-02-11 13:51:00    2017-02-11 13:51:00
66860    25893    711    2017-02-11 06:47:00    2017-02-11 06:47:00
66861    25893    515    2017-02-11 01:37:00    2017-02-11 01:37:00
66862    25893    524    2017-02-11 10:00:00    2017-02-11 10:00:00
66863    25894    585    2017-02-11 09:35:00    2017-02-11 09:35:00
66864    25894    666    2017-02-11 08:00:00    2017-02-11 08:00:00
66865    25894    560    2017-02-11 04:52:00    2017-02-11 04:52:00
66866    25894    469    2017-02-11 10:45:00    2017-02-11 10:45:00
66867    25894    771    2017-02-11 05:23:00    2017-02-11 05:23:00
66868    25895    687    2017-02-11 23:37:00    2017-02-11 23:37:00
66869    25895    801    2017-02-11 01:12:00    2017-02-11 01:12:00
66870    25895    565    2017-02-11 09:33:00    2017-02-11 09:33:00
66871    25895    619    2017-02-11 03:55:00    2017-02-11 03:55:00
66872    25895    800    2017-02-11 05:49:00    2017-02-11 05:49:00
66873    25896    938    2017-02-11 03:27:00    2017-02-11 03:27:00
66874    25896    500    2017-02-11 07:43:00    2017-02-11 07:43:00
66875    25896    830    2017-02-11 16:00:00    2017-02-11 16:00:00
66876    25896    645    2017-02-11 14:15:00    2017-02-11 14:15:00
66877    25896    826    2017-02-11 14:16:00    2017-02-11 14:16:00
66878    25897    876    2017-02-11 14:54:00    2017-02-11 14:54:00
66879    25897    621    2017-02-11 12:58:00    2017-02-11 12:58:00
66880    25897    919    2017-02-11 18:58:00    2017-02-11 18:58:00
66881    25897    915    2017-02-11 01:37:00    2017-02-11 01:37:00
66882    25897    680    2017-02-11 21:32:00    2017-02-11 21:32:00
66883    25898    608    2017-02-11 05:26:00    2017-02-11 05:26:00
66884    25898    567    2017-02-11 14:25:00    2017-02-11 14:25:00
66885    25898    581    2017-02-11 17:47:00    2017-02-11 17:47:00
66886    25898    937    2017-02-11 11:53:00    2017-02-11 11:53:00
66887    25898    576    2017-02-11 07:14:00    2017-02-11 07:14:00
66888    25899    712    2017-02-11 18:10:00    2017-02-11 18:10:00
66889    25899    833    2017-02-11 15:05:00    2017-02-11 15:05:00
66890    25899    938    2017-02-11 15:47:00    2017-02-11 15:47:00
66891    25899    896    2017-02-11 23:18:00    2017-02-11 23:18:00
66892    25899    656    2017-02-11 13:32:00    2017-02-11 13:32:00
66893    25900    663    2017-02-11 16:02:00    2017-02-11 16:02:00
66894    25900    694    2017-02-11 06:17:00    2017-02-11 06:17:00
66895    25900    932    2017-02-11 13:38:00    2017-02-11 13:38:00
66896    25900    555    2017-02-11 09:56:00    2017-02-11 09:56:00
66897    25900    788    2017-02-11 03:28:00    2017-02-11 03:28:00
66898    25901    648    2017-02-11 10:00:00    2017-02-11 10:00:00
66899    25901    500    2017-02-11 21:37:00    2017-02-11 21:37:00
66900    25901    591    2017-02-11 11:09:00    2017-02-11 11:09:00
66901    25901    913    2017-02-11 06:57:00    2017-02-11 06:57:00
66902    25901    551    2017-02-11 12:33:00    2017-02-11 12:33:00
66903    25902    822    2017-02-11 08:51:00    2017-02-11 08:51:00
66904    25902    549    2017-02-11 16:22:00    2017-02-11 16:22:00
66905    25902    580    2017-02-11 11:41:00    2017-02-11 11:41:00
66906    25902    576    2017-02-11 15:35:00    2017-02-11 15:35:00
66907    25902    763    2017-02-11 03:08:00    2017-02-11 03:08:00
66908    25903    945    2017-02-11 16:02:00    2017-02-11 16:02:00
66909    25903    920    2017-02-11 19:25:00    2017-02-11 19:25:00
66910    25903    574    2017-02-11 07:09:00    2017-02-11 07:09:00
66911    25903    645    2017-02-11 18:47:00    2017-02-11 18:47:00
66912    25903    546    2017-02-11 03:36:00    2017-02-11 03:36:00
66913    25904    591    2017-02-11 03:10:00    2017-02-11 03:10:00
66914    25904    541    2017-02-11 03:34:00    2017-02-11 03:34:00
66915    25904    787    2017-02-11 14:36:00    2017-02-11 14:36:00
66916    25904    523    2017-02-11 11:58:00    2017-02-11 11:58:00
66917    25904    908    2017-02-11 07:28:00    2017-02-11 07:28:00
66918    25905    563    2017-02-11 10:08:00    2017-02-11 10:08:00
66919    25905    683    2017-02-11 16:13:00    2017-02-11 16:13:00
66920    25905    953    2017-02-11 03:05:00    2017-02-11 03:05:00
66921    25905    683    2017-02-11 15:25:00    2017-02-11 15:25:00
66922    25905    722    2017-02-11 13:03:00    2017-02-11 13:03:00
66923    25906    867    2017-02-11 14:06:00    2017-02-11 14:06:00
66924    25906    916    2017-02-11 17:35:00    2017-02-11 17:35:00
66925    25906    878    2017-02-11 02:42:00    2017-02-11 02:42:00
66926    25906    655    2017-02-11 16:07:00    2017-02-11 16:07:00
66927    25906    638    2017-02-11 22:15:00    2017-02-11 22:15:00
66928    25907    858    2017-02-11 06:00:00    2017-02-11 06:00:00
66929    25907    648    2017-02-11 19:02:00    2017-02-11 19:02:00
66930    25907    552    2017-02-11 14:35:00    2017-02-11 14:35:00
66931    25907    929    2017-02-11 04:00:00    2017-02-11 04:00:00
66932    25907    765    2017-02-11 22:13:00    2017-02-11 22:13:00
66933    25908    634    2017-02-11 19:49:00    2017-02-11 19:49:00
66934    25908    872    2017-02-11 12:18:00    2017-02-11 12:18:00
66935    25908    741    2017-02-11 22:13:00    2017-02-11 22:13:00
66936    25908    593    2017-02-11 22:44:00    2017-02-11 22:44:00
66937    25908    945    2017-02-11 10:10:00    2017-02-11 10:10:00
66938    25909    666    2017-02-11 16:23:00    2017-02-11 16:23:00
66939    25909    599    2017-02-11 01:54:00    2017-02-11 01:54:00
66940    25909    529    2017-02-11 06:21:00    2017-02-11 06:21:00
66941    25909    635    2017-02-11 06:07:00    2017-02-11 06:07:00
66942    25909    760    2017-02-11 06:04:00    2017-02-11 06:04:00
66943    25910    497    2017-02-11 08:24:00    2017-02-11 08:24:00
66944    25910    612    2017-02-11 08:10:00    2017-02-11 08:10:00
66945    25910    511    2017-02-11 05:23:00    2017-02-11 05:23:00
66946    25910    784    2017-02-11 16:12:00    2017-02-11 16:12:00
66947    25910    871    2017-02-11 19:52:00    2017-02-11 19:52:00
66948    25911    650    2017-02-11 18:08:00    2017-02-11 18:08:00
66949    25911    795    2017-02-11 09:10:00    2017-02-11 09:10:00
66950    25911    932    2017-02-11 07:49:00    2017-02-11 07:49:00
66951    25911    874    2017-02-11 12:05:00    2017-02-11 12:05:00
66952    25911    926    2017-02-11 03:16:00    2017-02-11 03:16:00
66953    25912    820    2017-02-11 10:26:00    2017-02-11 10:26:00
66954    25912    745    2017-02-11 01:11:00    2017-02-11 01:11:00
66955    25912    782    2017-02-11 23:40:00    2017-02-11 23:40:00
66956    25912    896    2017-02-11 09:43:00    2017-02-11 09:43:00
66957    25912    619    2017-02-11 10:38:00    2017-02-11 10:38:00
66958    25913    840    2017-02-11 09:44:00    2017-02-11 09:44:00
66959    25913    779    2017-02-11 18:20:00    2017-02-11 18:20:00
66960    25913    662    2017-02-11 22:18:00    2017-02-11 22:18:00
66961    25913    519    2017-02-11 22:03:00    2017-02-11 22:03:00
66962    25913    469    2017-02-11 19:19:00    2017-02-11 19:19:00
66963    25914    672    2017-02-11 02:24:00    2017-02-11 02:24:00
66964    25914    692    2017-02-11 06:23:00    2017-02-11 06:23:00
66965    25914    889    2017-02-11 12:08:00    2017-02-11 12:08:00
66966    25914    752    2017-02-11 14:27:00    2017-02-11 14:27:00
66967    25914    491    2017-02-11 04:39:00    2017-02-11 04:39:00
66968    25915    951    2017-02-11 20:01:00    2017-02-11 20:01:00
66969    25915    611    2017-02-11 16:17:00    2017-02-11 16:17:00
66970    25915    705    2017-02-11 09:58:00    2017-02-11 09:58:00
66971    25915    656    2017-02-11 15:45:00    2017-02-11 15:45:00
66972    25915    553    2017-02-11 20:36:00    2017-02-11 20:36:00
66973    25916    605    2017-02-11 12:32:00    2017-02-11 12:32:00
66974    25916    710    2017-02-11 13:00:00    2017-02-11 13:00:00
66975    25916    755    2017-02-11 12:38:00    2017-02-11 12:38:00
66976    25916    688    2017-02-11 18:29:00    2017-02-11 18:29:00
66977    25916    806    2017-02-11 02:13:00    2017-02-11 02:13:00
66978    25917    785    2017-02-11 22:00:00    2017-02-11 22:00:00
66979    25917    567    2017-02-11 11:22:00    2017-02-11 11:22:00
66980    25917    771    2017-02-11 05:51:00    2017-02-11 05:51:00
66981    25917    825    2017-02-11 02:20:00    2017-02-11 02:20:00
66982    25917    913    2017-02-11 22:32:00    2017-02-11 22:32:00
66983    25918    833    2017-02-11 02:40:00    2017-02-11 02:40:00
66984    25918    478    2017-02-11 04:02:00    2017-02-11 04:02:00
66985    25918    726    2017-02-11 14:32:00    2017-02-11 14:32:00
66986    25918    778    2017-02-11 09:18:00    2017-02-11 09:18:00
66987    25918    821    2017-02-11 02:00:00    2017-02-11 02:00:00
66988    25919    686    2017-02-11 23:26:00    2017-02-11 23:26:00
66989    25919    615    2017-02-11 05:24:00    2017-02-11 05:24:00
66990    25919    608    2017-02-11 04:49:00    2017-02-11 04:49:00
66991    25919    916    2017-02-11 04:43:00    2017-02-11 04:43:00
66992    25919    866    2017-02-11 08:51:00    2017-02-11 08:51:00
66993    25920    575    2017-02-11 06:26:00    2017-02-11 06:26:00
66994    25920    951    2017-02-11 19:24:00    2017-02-11 19:24:00
66995    25920    630    2017-02-11 20:52:00    2017-02-11 20:52:00
66996    25920    801    2017-02-11 08:46:00    2017-02-11 08:46:00
66997    25920    908    2017-02-11 23:04:00    2017-02-11 23:04:00
66998    25921    647    2017-02-11 05:31:00    2017-02-11 05:31:00
66999    25921    592    2017-02-11 01:52:00    2017-02-11 01:52:00
67000    25921    954    2017-02-11 23:38:00    2017-02-11 23:38:00
67001    25921    658    2017-02-11 19:35:00    2017-02-11 19:35:00
67002    25921    753    2017-02-11 23:13:00    2017-02-11 23:13:00
67003    25922    763    2017-02-11 16:37:00    2017-02-11 16:37:00
67004    25922    862    2017-02-11 13:20:00    2017-02-11 13:20:00
67005    25922    621    2017-02-11 04:22:00    2017-02-11 04:22:00
67006    25922    905    2017-02-11 03:15:00    2017-02-11 03:15:00
67007    25922    715    2017-02-11 14:58:00    2017-02-11 14:58:00
67008    25923    599    2017-02-11 12:29:00    2017-02-11 12:29:00
67009    25923    656    2017-02-11 19:38:00    2017-02-11 19:38:00
67010    25923    517    2017-02-11 16:05:00    2017-02-11 16:05:00
67011    25923    840    2017-02-11 10:56:00    2017-02-11 10:56:00
67012    25923    849    2017-02-11 11:39:00    2017-02-11 11:39:00
67013    25924    819    2017-02-11 23:28:00    2017-02-11 23:28:00
67014    25924    826    2017-02-11 01:13:00    2017-02-11 01:13:00
67015    25924    651    2017-02-11 18:31:00    2017-02-11 18:31:00
67016    25924    565    2017-02-11 08:39:00    2017-02-11 08:39:00
67017    25924    679    2017-02-11 06:00:00    2017-02-11 06:00:00
67018    25925    567    2017-02-11 11:25:00    2017-02-11 11:25:00
67019    25925    700    2017-02-11 16:23:00    2017-02-11 16:23:00
67020    25925    708    2017-02-11 15:52:00    2017-02-11 15:52:00
67021    25925    792    2017-02-11 08:59:00    2017-02-11 08:59:00
67022    25925    695    2017-02-11 22:45:00    2017-02-11 22:45:00
67023    25926    947    2017-02-11 17:57:00    2017-02-11 17:57:00
67024    25926    542    2017-02-11 17:24:00    2017-02-11 17:24:00
67025    25926    624    2017-02-11 20:25:00    2017-02-11 20:25:00
67026    25926    573    2017-02-11 16:19:00    2017-02-11 16:19:00
67027    25926    849    2017-02-11 18:58:00    2017-02-11 18:58:00
67028    25927    771    2017-02-11 16:34:00    2017-02-11 16:34:00
67029    25927    474    2017-02-11 14:30:00    2017-02-11 14:30:00
67030    25927    593    2017-02-11 03:44:00    2017-02-11 03:44:00
67031    25927    643    2017-02-11 20:22:00    2017-02-11 20:22:00
67032    25927    661    2017-02-11 11:40:00    2017-02-11 11:40:00
67033    25928    753    2017-02-11 22:37:00    2017-02-11 22:37:00
67034    25928    885    2017-02-11 14:05:00    2017-02-11 14:05:00
67035    25928    463    2017-02-11 10:53:00    2017-02-11 10:53:00
67036    25928    649    2017-02-11 06:00:00    2017-02-11 06:00:00
67037    25928    723    2017-02-11 23:58:00    2017-02-11 23:58:00
67038    25929    822    2017-02-11 11:59:00    2017-02-11 11:59:00
67039    25929    691    2017-02-11 13:47:00    2017-02-11 13:47:00
67040    25929    749    2017-02-11 05:19:00    2017-02-11 05:19:00
67041    25929    670    2017-02-11 13:07:00    2017-02-11 13:07:00
67042    25929    617    2017-02-11 21:12:00    2017-02-11 21:12:00
67043    25930    738    2017-02-11 16:20:00    2017-02-11 16:20:00
67044    25930    537    2017-02-11 03:48:00    2017-02-11 03:48:00
67045    25930    780    2017-02-11 05:25:00    2017-02-11 05:25:00
67046    25930    799    2017-02-11 09:31:00    2017-02-11 09:31:00
67047    25930    636    2017-02-11 05:35:00    2017-02-11 05:35:00
67048    25931    652    2017-02-11 23:28:00    2017-02-11 23:28:00
67049    25931    615    2017-02-11 18:43:00    2017-02-11 18:43:00
67050    25931    525    2017-02-11 03:44:00    2017-02-11 03:44:00
67051    25931    827    2017-02-11 02:35:00    2017-02-11 02:35:00
67052    25931    957    2017-02-11 07:43:00    2017-02-11 07:43:00
67053    25932    598    2017-02-11 15:55:00    2017-02-11 15:55:00
67054    25932    727    2017-02-11 04:15:00    2017-02-11 04:15:00
67055    25932    682    2017-02-11 22:52:00    2017-02-11 22:52:00
67056    25932    917    2017-02-11 21:16:00    2017-02-11 21:16:00
67057    25932    561    2017-02-11 14:32:00    2017-02-11 14:32:00
67058    25933    572    2017-02-11 19:46:00    2017-02-11 19:46:00
67059    25933    857    2017-02-11 12:20:00    2017-02-11 12:20:00
67060    25933    906    2017-02-11 02:45:00    2017-02-11 02:45:00
67061    25933    857    2017-02-11 16:53:00    2017-02-11 16:53:00
67062    25933    464    2017-02-11 20:08:00    2017-02-11 20:08:00
67063    25934    599    2017-02-11 22:26:00    2017-02-11 22:26:00
67064    25934    923    2017-02-11 14:53:00    2017-02-11 14:53:00
67065    25934    489    2017-02-11 14:23:00    2017-02-11 14:23:00
67066    25934    836    2017-02-11 12:17:00    2017-02-11 12:17:00
67067    25934    687    2017-02-11 07:00:00    2017-02-11 07:00:00
67068    25935    794    2017-02-11 21:14:00    2017-02-11 21:14:00
67069    25935    720    2017-02-11 18:27:00    2017-02-11 18:27:00
67070    25935    496    2017-02-11 15:34:00    2017-02-11 15:34:00
67071    25935    464    2017-02-11 10:31:00    2017-02-11 10:31:00
67072    25935    533    2017-02-11 12:13:00    2017-02-11 12:13:00
67073    25936    898    2017-02-11 07:12:00    2017-02-11 07:12:00
67074    25936    942    2017-02-11 09:29:00    2017-02-11 09:29:00
67075    25936    902    2017-02-11 18:41:00    2017-02-11 18:41:00
67076    25936    889    2017-02-11 18:34:00    2017-02-11 18:34:00
67077    25936    913    2017-02-11 08:52:00    2017-02-11 08:52:00
67078    25937    569    2017-02-11 16:12:00    2017-02-11 16:12:00
67079    25937    627    2017-02-11 15:29:00    2017-02-11 15:29:00
67080    25937    924    2017-02-11 12:14:00    2017-02-11 12:14:00
67081    25937    837    2017-02-11 07:26:00    2017-02-11 07:26:00
67082    25937    521    2017-02-11 19:08:00    2017-02-11 19:08:00
67083    25938    650    2017-02-11 01:57:00    2017-02-11 01:57:00
67084    25938    605    2017-02-11 09:24:00    2017-02-11 09:24:00
67085    25938    915    2017-02-11 17:08:00    2017-02-11 17:08:00
67086    25938    887    2017-02-11 09:35:00    2017-02-11 09:35:00
67087    25938    646    2017-02-11 23:08:00    2017-02-11 23:08:00
67088    25939    951    2017-02-11 05:33:00    2017-02-11 05:33:00
67089    25939    903    2017-02-11 10:18:00    2017-02-11 10:18:00
67090    25939    774    2017-02-11 02:07:00    2017-02-11 02:07:00
67091    25939    827    2017-02-11 17:33:00    2017-02-11 17:33:00
67092    25939    480    2017-02-11 19:19:00    2017-02-11 19:19:00
67093    25940    626    2017-02-11 13:43:00    2017-02-11 13:43:00
67094    25940    831    2017-02-11 18:45:00    2017-02-11 18:45:00
67095    25940    936    2017-02-11 05:30:00    2017-02-11 05:30:00
67096    25940    649    2017-02-11 03:57:00    2017-02-11 03:57:00
67097    25940    602    2017-02-11 07:42:00    2017-02-11 07:42:00
67098    25941    810    2017-02-11 22:52:00    2017-02-11 22:52:00
67099    25941    672    2017-02-11 04:11:00    2017-02-11 04:11:00
67100    25941    950    2017-02-11 23:18:00    2017-02-11 23:18:00
67101    25941    751    2017-02-11 02:16:00    2017-02-11 02:16:00
67102    25941    699    2017-02-11 17:12:00    2017-02-11 17:12:00
67103    25942    642    2017-02-11 06:44:00    2017-02-11 06:44:00
67104    25942    805    2017-02-11 15:43:00    2017-02-11 15:43:00
67105    25942    903    2017-02-11 04:38:00    2017-02-11 04:38:00
67106    25942    649    2017-02-11 01:16:00    2017-02-11 01:16:00
67107    25942    475    2017-02-11 21:12:00    2017-02-11 21:12:00
67108    25943    847    2017-02-11 23:36:00    2017-02-11 23:36:00
67109    25943    478    2017-02-11 03:07:00    2017-02-11 03:07:00
67110    25943    533    2017-02-11 17:07:00    2017-02-11 17:07:00
67111    25943    885    2017-02-11 11:51:00    2017-02-11 11:51:00
67112    25943    758    2017-02-11 05:23:00    2017-02-11 05:23:00
67113    25944    744    2017-02-11 03:15:00    2017-02-11 03:15:00
67114    25944    635    2017-02-11 08:59:00    2017-02-11 08:59:00
67115    25944    598    2017-02-11 05:43:00    2017-02-11 05:43:00
67116    25944    537    2017-02-11 10:31:00    2017-02-11 10:31:00
67117    25944    567    2017-02-11 14:03:00    2017-02-11 14:03:00
67118    25945    597    2017-02-11 20:22:00    2017-02-11 20:22:00
67119    25945    722    2017-02-11 22:01:00    2017-02-11 22:01:00
67120    25945    501    2017-02-11 19:32:00    2017-02-11 19:32:00
67121    25945    740    2017-02-11 08:08:00    2017-02-11 08:08:00
67122    25945    958    2017-02-11 12:00:00    2017-02-11 12:00:00
67123    25946    865    2017-02-11 11:00:00    2017-02-11 11:00:00
67124    25946    739    2017-02-11 20:28:00    2017-02-11 20:28:00
67125    25946    931    2017-02-11 06:26:00    2017-02-11 06:26:00
67126    25946    663    2017-02-11 12:08:00    2017-02-11 12:08:00
67127    25946    482    2017-02-11 20:33:00    2017-02-11 20:33:00
67128    25947    614    2017-02-11 13:05:00    2017-02-11 13:05:00
67129    25947    707    2017-02-11 19:12:00    2017-02-11 19:12:00
67130    25947    781    2017-02-11 01:10:00    2017-02-11 01:10:00
67131    25947    571    2017-02-11 01:11:00    2017-02-11 01:11:00
67132    25947    602    2017-02-11 20:33:00    2017-02-11 20:33:00
67133    25948    623    2017-02-11 04:23:00    2017-02-11 04:23:00
67134    25948    572    2017-02-11 01:50:00    2017-02-11 01:50:00
67135    25948    632    2017-02-11 07:51:00    2017-02-11 07:51:00
67136    25948    600    2017-02-11 23:30:00    2017-02-11 23:30:00
67137    25948    744    2017-02-11 06:33:00    2017-02-11 06:33:00
67138    25949    810    2017-02-11 22:10:00    2017-02-11 22:10:00
67139    25949    499    2017-02-11 18:47:00    2017-02-11 18:47:00
67140    25949    856    2017-02-11 03:34:00    2017-02-11 03:34:00
67141    25949    638    2017-02-11 12:48:00    2017-02-11 12:48:00
67142    25949    519    2017-02-11 23:08:00    2017-02-11 23:08:00
67143    25950    908    2017-02-11 17:28:00    2017-02-11 17:28:00
67144    25950    763    2017-02-11 05:48:00    2017-02-11 05:48:00
67145    25950    772    2017-02-11 21:26:00    2017-02-11 21:26:00
67146    25950    812    2017-02-11 18:18:00    2017-02-11 18:18:00
67147    25950    831    2017-02-11 18:15:00    2017-02-11 18:15:00
67148    25951    947    2017-02-11 04:36:00    2017-02-11 04:36:00
67149    25951    626    2017-02-11 16:00:00    2017-02-11 16:00:00
67150    25951    888    2017-02-11 23:00:00    2017-02-11 23:00:00
67151    25951    471    2017-02-11 18:18:00    2017-02-11 18:18:00
67152    25951    467    2017-02-11 17:02:00    2017-02-11 17:02:00
67153    25952    593    2017-02-12 12:37:00    2017-02-12 12:37:00
67154    25952    779    2017-02-12 13:03:00    2017-02-12 13:03:00
67155    25952    607    2017-02-12 04:15:00    2017-02-12 04:15:00
67156    25952    645    2017-02-12 02:15:00    2017-02-12 02:15:00
67157    25952    500    2017-02-12 20:15:00    2017-02-12 20:15:00
67158    25953    510    2017-02-12 21:51:00    2017-02-12 21:51:00
67159    25953    620    2017-02-12 12:27:00    2017-02-12 12:27:00
67160    25953    874    2017-02-12 12:20:00    2017-02-12 12:20:00
67161    25953    531    2017-02-12 13:40:00    2017-02-12 13:40:00
67162    25953    547    2017-02-12 03:51:00    2017-02-12 03:51:00
67163    25954    554    2017-02-12 18:15:00    2017-02-12 18:15:00
67164    25954    696    2017-02-12 03:42:00    2017-02-12 03:42:00
67165    25954    771    2017-02-12 17:48:00    2017-02-12 17:48:00
67166    25954    605    2017-02-12 06:22:00    2017-02-12 06:22:00
67167    25954    584    2017-02-12 04:21:00    2017-02-12 04:21:00
67168    25955    465    2017-02-12 16:02:00    2017-02-12 16:02:00
67169    25955    793    2017-02-12 20:22:00    2017-02-12 20:22:00
67170    25955    872    2017-02-12 08:52:00    2017-02-12 08:52:00
67171    25955    659    2017-02-12 09:33:00    2017-02-12 09:33:00
67172    25955    541    2017-02-12 05:08:00    2017-02-12 05:08:00
67173    25956    932    2017-02-12 17:48:00    2017-02-12 17:48:00
67174    25956    738    2017-02-12 14:07:00    2017-02-12 14:07:00
67175    25956    528    2017-02-12 12:09:00    2017-02-12 12:09:00
67176    25956    733    2017-02-12 08:34:00    2017-02-12 08:34:00
67177    25956    476    2017-02-12 11:57:00    2017-02-12 11:57:00
67178    25957    847    2017-02-12 17:49:00    2017-02-12 17:49:00
67179    25957    638    2017-02-12 10:25:00    2017-02-12 10:25:00
67180    25957    884    2017-02-12 09:43:00    2017-02-12 09:43:00
67181    25957    774    2017-02-12 17:22:00    2017-02-12 17:22:00
67182    25957    694    2017-02-12 12:23:00    2017-02-12 12:23:00
67183    25958    599    2017-02-12 06:11:00    2017-02-12 06:11:00
67184    25958    628    2017-02-12 08:01:00    2017-02-12 08:01:00
67185    25958    692    2017-02-12 05:59:00    2017-02-12 05:59:00
67186    25958    697    2017-02-12 15:32:00    2017-02-12 15:32:00
67187    25958    763    2017-02-12 19:22:00    2017-02-12 19:22:00
67188    25959    771    2017-02-13 05:58:00    2017-02-13 05:58:00
67189    25959    741    2017-02-13 15:29:00    2017-02-13 15:29:00
67190    25959    959    2017-02-13 18:44:00    2017-02-13 18:44:00
67191    25959    621    2017-02-13 10:39:00    2017-02-13 10:39:00
67192    25959    934    2017-02-13 12:00:00    2017-02-13 12:00:00
67193    25960    798    2017-02-13 02:01:00    2017-02-13 02:01:00
67194    25960    468    2017-02-13 10:28:00    2017-02-13 10:28:00
67195    25960    672    2017-02-13 19:47:00    2017-02-13 19:47:00
67196    25960    653    2017-02-13 20:14:00    2017-02-13 20:14:00
67197    25960    490    2017-02-13 15:11:00    2017-02-13 15:11:00
67198    25961    813    2017-02-13 13:35:00    2017-02-13 13:35:00
67199    25961    581    2017-02-13 11:13:00    2017-02-13 11:13:00
67200    25961    533    2017-02-13 01:20:00    2017-02-13 01:20:00
67201    25961    950    2017-02-13 12:47:00    2017-02-13 12:47:00
67202    25961    661    2017-02-13 18:06:00    2017-02-13 18:06:00
67203    25962    536    2017-02-13 07:08:00    2017-02-13 07:08:00
67204    25962    930    2017-02-13 02:22:00    2017-02-13 02:22:00
67205    25962    532    2017-02-13 19:50:00    2017-02-13 19:50:00
67206    25962    537    2017-02-13 04:02:00    2017-02-13 04:02:00
67207    25962    755    2017-02-13 10:39:00    2017-02-13 10:39:00
67208    25963    710    2017-02-13 05:53:00    2017-02-13 05:53:00
67209    25963    757    2017-02-13 12:20:00    2017-02-13 12:20:00
67210    25963    809    2017-02-13 06:53:00    2017-02-13 06:53:00
67211    25963    551    2017-02-13 03:42:00    2017-02-13 03:42:00
67212    25963    491    2017-02-13 21:11:00    2017-02-13 21:11:00
67213    25964    779    2017-02-13 22:19:00    2017-02-13 22:19:00
67214    25964    919    2017-02-13 05:07:00    2017-02-13 05:07:00
67215    25964    834    2017-02-13 18:24:00    2017-02-13 18:24:00
67216    25964    675    2017-02-13 11:46:00    2017-02-13 11:46:00
67217    25964    535    2017-02-13 05:21:00    2017-02-13 05:21:00
67218    25965    920    2017-02-13 05:43:00    2017-02-13 05:43:00
67219    25965    807    2017-02-13 12:08:00    2017-02-13 12:08:00
67220    25965    593    2017-02-13 04:35:00    2017-02-13 04:35:00
67221    25965    674    2017-02-13 19:06:00    2017-02-13 19:06:00
67222    25965    702    2017-02-13 08:12:00    2017-02-13 08:12:00
67223    25966    611    2017-02-13 12:06:00    2017-02-13 12:06:00
67224    25966    558    2017-02-13 03:04:00    2017-02-13 03:04:00
67225    25966    518    2017-02-13 21:24:00    2017-02-13 21:24:00
67226    25966    896    2017-02-13 17:37:00    2017-02-13 17:37:00
67227    25966    951    2017-02-13 09:51:00    2017-02-13 09:51:00
67228    25967    835    2017-02-13 08:59:00    2017-02-13 08:59:00
67229    25967    834    2017-02-13 11:08:00    2017-02-13 11:08:00
67230    25967    573    2017-02-13 16:15:00    2017-02-13 16:15:00
67231    25967    698    2017-02-13 15:20:00    2017-02-13 15:20:00
67232    25967    853    2017-02-13 23:56:00    2017-02-13 23:56:00
67233    25968    816    2017-02-13 02:30:00    2017-02-13 02:30:00
67234    25968    528    2017-02-13 10:54:00    2017-02-13 10:54:00
67235    25968    811    2017-02-13 16:16:00    2017-02-13 16:16:00
67236    25968    760    2017-02-13 13:07:00    2017-02-13 13:07:00
67237    25968    599    2017-02-13 16:50:00    2017-02-13 16:50:00
67238    25969    730    2017-02-13 21:17:00    2017-02-13 21:17:00
67239    25969    731    2017-02-13 14:12:00    2017-02-13 14:12:00
67240    25969    708    2017-02-13 07:36:00    2017-02-13 07:36:00
67241    25969    521    2017-02-13 02:39:00    2017-02-13 02:39:00
67242    25969    485    2017-02-13 01:22:00    2017-02-13 01:22:00
67243    25970    845    2017-02-13 06:51:00    2017-02-13 06:51:00
67244    25970    610    2017-02-13 08:34:00    2017-02-13 08:34:00
67245    25970    748    2017-02-13 21:20:00    2017-02-13 21:20:00
67246    25970    630    2017-02-13 22:11:00    2017-02-13 22:11:00
67247    25970    607    2017-02-13 22:35:00    2017-02-13 22:35:00
67248    25971    929    2017-02-13 04:23:00    2017-02-13 04:23:00
67249    25971    535    2017-02-13 08:20:00    2017-02-13 08:20:00
67250    25971    958    2017-02-13 03:53:00    2017-02-13 03:53:00
67251    25971    679    2017-02-13 21:14:00    2017-02-13 21:14:00
67252    25971    593    2017-02-13 15:21:00    2017-02-13 15:21:00
67253    25972    781    2017-02-13 03:24:00    2017-02-13 03:24:00
67254    25972    629    2017-02-13 11:03:00    2017-02-13 11:03:00
67255    25972    864    2017-02-13 09:22:00    2017-02-13 09:22:00
67256    25972    510    2017-02-13 08:28:00    2017-02-13 08:28:00
67257    25972    718    2017-02-13 07:06:00    2017-02-13 07:06:00
67258    25973    602    2017-02-13 19:36:00    2017-02-13 19:36:00
67259    25973    871    2017-02-13 05:06:00    2017-02-13 05:06:00
67260    25973    746    2017-02-13 19:15:00    2017-02-13 19:15:00
67261    25973    704    2017-02-13 09:35:00    2017-02-13 09:35:00
67262    25973    729    2017-02-13 10:03:00    2017-02-13 10:03:00
67263    25974    874    2017-02-13 11:42:00    2017-02-13 11:42:00
67264    25974    600    2017-02-13 17:01:00    2017-02-13 17:01:00
67265    25974    927    2017-02-13 04:29:00    2017-02-13 04:29:00
67266    25974    656    2017-02-13 20:02:00    2017-02-13 20:02:00
67267    25974    630    2017-02-13 03:53:00    2017-02-13 03:53:00
67268    25975    920    2017-02-13 11:26:00    2017-02-13 11:26:00
67269    25975    906    2017-02-13 04:57:00    2017-02-13 04:57:00
67270    25975    826    2017-02-13 06:56:00    2017-02-13 06:56:00
67271    25975    917    2017-02-13 10:55:00    2017-02-13 10:55:00
67272    25975    752    2017-02-13 14:29:00    2017-02-13 14:29:00
67273    25976    479    2017-02-13 06:31:00    2017-02-13 06:31:00
67274    25976    692    2017-02-13 05:55:00    2017-02-13 05:55:00
67275    25976    502    2017-02-13 06:14:00    2017-02-13 06:14:00
67276    25976    818    2017-02-13 08:06:00    2017-02-13 08:06:00
67277    25976    633    2017-02-13 11:21:00    2017-02-13 11:21:00
67278    25977    668    2017-02-13 08:46:00    2017-02-13 08:46:00
67279    25977    571    2017-02-13 05:32:00    2017-02-13 05:32:00
67280    25977    891    2017-02-13 17:10:00    2017-02-13 17:10:00
67281    25977    783    2017-02-13 04:51:00    2017-02-13 04:51:00
67282    25977    909    2017-02-13 09:00:00    2017-02-13 09:00:00
67283    25978    666    2017-02-13 07:40:00    2017-02-13 07:40:00
67284    25978    761    2017-02-13 15:18:00    2017-02-13 15:18:00
67285    25978    950    2017-02-13 13:19:00    2017-02-13 13:19:00
67286    25978    549    2017-02-13 17:03:00    2017-02-13 17:03:00
67287    25978    876    2017-02-13 01:12:00    2017-02-13 01:12:00
67288    25979    726    2017-02-13 12:23:00    2017-02-13 12:23:00
67289    25979    592    2017-02-13 13:15:00    2017-02-13 13:15:00
67290    25979    585    2017-02-13 13:45:00    2017-02-13 13:45:00
67291    25979    613    2017-02-13 07:47:00    2017-02-13 07:47:00
67292    25979    754    2017-02-13 13:17:00    2017-02-13 13:17:00
67293    25980    713    2017-02-13 14:33:00    2017-02-13 14:33:00
67294    25980    552    2017-02-13 09:06:00    2017-02-13 09:06:00
67295    25980    780    2017-02-13 13:40:00    2017-02-13 13:40:00
67296    25980    666    2017-02-13 16:17:00    2017-02-13 16:17:00
67297    25980    724    2017-02-13 11:08:00    2017-02-13 11:08:00
67298    25981    866    2017-02-13 22:06:00    2017-02-13 22:06:00
67299    25981    742    2017-02-13 07:33:00    2017-02-13 07:33:00
67300    25981    525    2017-02-13 04:50:00    2017-02-13 04:50:00
67301    25981    682    2017-02-13 01:36:00    2017-02-13 01:36:00
67302    25981    579    2017-02-13 19:11:00    2017-02-13 19:11:00
67303    25982    690    2017-02-13 03:38:00    2017-02-13 03:38:00
67304    25982    767    2017-02-13 09:20:00    2017-02-13 09:20:00
67305    25982    586    2017-02-13 23:32:00    2017-02-13 23:32:00
67306    25982    875    2017-02-13 08:28:00    2017-02-13 08:28:00
67307    25982    875    2017-02-13 08:39:00    2017-02-13 08:39:00
67308    25983    599    2017-02-13 13:55:00    2017-02-13 13:55:00
67309    25983    671    2017-02-13 19:07:00    2017-02-13 19:07:00
67310    25983    533    2017-02-13 23:47:00    2017-02-13 23:47:00
67311    25983    739    2017-02-13 19:13:00    2017-02-13 19:13:00
67312    25983    929    2017-02-13 01:27:00    2017-02-13 01:27:00
67313    25984    845    2017-02-13 16:53:00    2017-02-13 16:53:00
67314    25984    541    2017-02-13 08:06:00    2017-02-13 08:06:00
67315    25984    528    2017-02-13 08:14:00    2017-02-13 08:14:00
67316    25984    836    2017-02-13 15:03:00    2017-02-13 15:03:00
67317    25984    731    2017-02-13 07:28:00    2017-02-13 07:28:00
67318    25985    902    2017-02-13 21:22:00    2017-02-13 21:22:00
67319    25985    828    2017-02-13 10:13:00    2017-02-13 10:13:00
67320    25985    538    2017-02-13 12:41:00    2017-02-13 12:41:00
67321    25985    532    2017-02-13 18:45:00    2017-02-13 18:45:00
67322    25985    936    2017-02-13 23:00:00    2017-02-13 23:00:00
67323    25986    791    2017-02-13 23:40:00    2017-02-13 23:40:00
67324    25986    677    2017-02-13 01:00:00    2017-02-13 01:00:00
67325    25986    619    2017-02-13 08:38:00    2017-02-13 08:38:00
67326    25986    927    2017-02-13 04:12:00    2017-02-13 04:12:00
67327    25986    866    2017-02-13 23:26:00    2017-02-13 23:26:00
67328    25987    764    2017-02-13 21:11:00    2017-02-13 21:11:00
67329    25987    783    2017-02-13 05:54:00    2017-02-13 05:54:00
67330    25987    886    2017-02-13 01:14:00    2017-02-13 01:14:00
67331    25987    673    2017-02-13 05:43:00    2017-02-13 05:43:00
67332    25987    870    2017-02-13 16:13:00    2017-02-13 16:13:00
67333    25988    960    2017-02-13 18:17:00    2017-02-13 18:17:00
67334    25988    766    2017-02-13 08:24:00    2017-02-13 08:24:00
67335    25988    556    2017-02-13 21:23:00    2017-02-13 21:23:00
67336    25988    674    2017-02-13 21:12:00    2017-02-13 21:12:00
67337    25988    473    2017-02-13 21:38:00    2017-02-13 21:38:00
67338    25989    731    2017-02-13 13:16:00    2017-02-13 13:16:00
67339    25989    925    2017-02-13 01:27:00    2017-02-13 01:27:00
67340    25989    594    2017-02-13 17:24:00    2017-02-13 17:24:00
67341    25989    813    2017-02-13 02:27:00    2017-02-13 02:27:00
67342    25989    799    2017-02-13 10:49:00    2017-02-13 10:49:00
67343    25990    896    2017-02-13 14:55:00    2017-02-13 14:55:00
67344    25990    735    2017-02-13 20:33:00    2017-02-13 20:33:00
67345    25990    928    2017-02-13 13:19:00    2017-02-13 13:19:00
67346    25990    758    2017-02-13 07:32:00    2017-02-13 07:32:00
67347    25990    904    2017-02-13 15:57:00    2017-02-13 15:57:00
67348    25991    922    2017-02-13 08:40:00    2017-02-13 08:40:00
67349    25991    886    2017-02-13 02:24:00    2017-02-13 02:24:00
67350    25991    851    2017-02-13 14:20:00    2017-02-13 14:20:00
67351    25991    749    2017-02-13 10:10:00    2017-02-13 10:10:00
67352    25991    945    2017-02-13 23:32:00    2017-02-13 23:32:00
67353    25992    470    2017-02-13 20:35:00    2017-02-13 20:35:00
67354    25992    602    2017-02-13 16:52:00    2017-02-13 16:52:00
67355    25992    642    2017-02-13 10:20:00    2017-02-13 10:20:00
67356    25992    575    2017-02-13 08:04:00    2017-02-13 08:04:00
67357    25992    701    2017-02-13 19:51:00    2017-02-13 19:51:00
67358    25993    955    2017-02-13 10:00:00    2017-02-13 10:00:00
67359    25993    887    2017-02-13 06:16:00    2017-02-13 06:16:00
67360    25993    497    2017-02-13 14:24:00    2017-02-13 14:24:00
67361    25993    813    2017-02-13 14:06:00    2017-02-13 14:06:00
67362    25993    732    2017-02-13 14:14:00    2017-02-13 14:14:00
67363    25994    541    2017-02-13 12:05:00    2017-02-13 12:05:00
67364    25994    959    2017-02-13 16:28:00    2017-02-13 16:28:00
67365    25994    516    2017-02-13 16:32:00    2017-02-13 16:32:00
67366    25994    752    2017-02-13 15:28:00    2017-02-13 15:28:00
67367    25994    843    2017-02-13 06:22:00    2017-02-13 06:22:00
67368    25995    711    2017-02-13 22:14:00    2017-02-13 22:14:00
67369    25995    829    2017-02-13 14:18:00    2017-02-13 14:18:00
67370    25995    691    2017-02-13 19:59:00    2017-02-13 19:59:00
67371    25995    538    2017-02-13 18:37:00    2017-02-13 18:37:00
67372    25995    734    2017-02-13 04:57:00    2017-02-13 04:57:00
67373    25996    907    2017-02-13 06:20:00    2017-02-13 06:20:00
67374    25996    851    2017-02-13 04:54:00    2017-02-13 04:54:00
67375    25996    882    2017-02-13 12:29:00    2017-02-13 12:29:00
67376    25996    539    2017-02-13 23:59:00    2017-02-13 23:59:00
67377    25996    854    2017-02-13 03:09:00    2017-02-13 03:09:00
67378    25997    806    2017-02-13 18:06:00    2017-02-13 18:06:00
67379    25997    703    2017-02-13 01:06:00    2017-02-13 01:06:00
67380    25997    937    2017-02-13 11:54:00    2017-02-13 11:54:00
67381    25997    793    2017-02-13 15:17:00    2017-02-13 15:17:00
67382    25997    615    2017-02-13 01:59:00    2017-02-13 01:59:00
67383    25998    604    2017-02-13 04:39:00    2017-02-13 04:39:00
67384    25998    843    2017-02-13 11:26:00    2017-02-13 11:26:00
67385    25998    789    2017-02-13 18:44:00    2017-02-13 18:44:00
67386    25998    911    2017-02-13 13:56:00    2017-02-13 13:56:00
67387    25998    478    2017-02-13 08:00:00    2017-02-13 08:00:00
67388    25999    906    2017-02-13 05:32:00    2017-02-13 05:32:00
67389    25999    466    2017-02-13 03:04:00    2017-02-13 03:04:00
67390    25999    530    2017-02-13 03:50:00    2017-02-13 03:50:00
67391    25999    533    2017-02-13 14:15:00    2017-02-13 14:15:00
67392    25999    612    2017-02-13 02:35:00    2017-02-13 02:35:00
67393    26000    541    2017-02-13 18:28:00    2017-02-13 18:28:00
67394    26000    719    2017-02-13 23:43:00    2017-02-13 23:43:00
67395    26000    722    2017-02-13 15:48:00    2017-02-13 15:48:00
67396    26000    602    2017-02-13 02:33:00    2017-02-13 02:33:00
67397    26000    530    2017-02-13 02:24:00    2017-02-13 02:24:00
67398    26001    736    2017-02-13 12:41:00    2017-02-13 12:41:00
67399    26001    734    2017-02-13 20:06:00    2017-02-13 20:06:00
67400    26001    742    2017-02-13 23:00:00    2017-02-13 23:00:00
67401    26001    590    2017-02-13 01:31:00    2017-02-13 01:31:00
67402    26001    818    2017-02-13 12:10:00    2017-02-13 12:10:00
67403    26002    523    2017-02-13 15:24:00    2017-02-13 15:24:00
67404    26002    915    2017-02-13 14:00:00    2017-02-13 14:00:00
67405    26002    660    2017-02-13 13:01:00    2017-02-13 13:01:00
67406    26002    705    2017-02-13 04:57:00    2017-02-13 04:57:00
67407    26002    495    2017-02-13 05:22:00    2017-02-13 05:22:00
67408    26003    889    2017-02-13 03:44:00    2017-02-13 03:44:00
67409    26003    877    2017-02-13 07:29:00    2017-02-13 07:29:00
67410    26003    580    2017-02-13 03:03:00    2017-02-13 03:03:00
67411    26003    628    2017-02-13 01:45:00    2017-02-13 01:45:00
67412    26003    700    2017-02-13 13:28:00    2017-02-13 13:28:00
67413    26004    511    2017-02-13 17:38:00    2017-02-13 17:38:00
67414    26004    788    2017-02-13 03:04:00    2017-02-13 03:04:00
67415    26004    537    2017-02-13 07:39:00    2017-02-13 07:39:00
67416    26004    534    2017-02-13 12:47:00    2017-02-13 12:47:00
67417    26004    660    2017-02-13 20:39:00    2017-02-13 20:39:00
67418    26005    767    2017-02-13 05:43:00    2017-02-13 05:43:00
67419    26005    802    2017-02-13 08:55:00    2017-02-13 08:55:00
67420    26005    792    2017-02-13 16:17:00    2017-02-13 16:17:00
67421    26005    673    2017-02-13 02:48:00    2017-02-13 02:48:00
67422    26005    661    2017-02-13 01:33:00    2017-02-13 01:33:00
67423    26006    727    2017-02-13 10:49:00    2017-02-13 10:49:00
67424    26006    806    2017-02-13 10:29:00    2017-02-13 10:29:00
67425    26006    622    2017-02-13 17:45:00    2017-02-13 17:45:00
67426    26006    639    2017-02-13 11:44:00    2017-02-13 11:44:00
67427    26006    902    2017-02-13 22:21:00    2017-02-13 22:21:00
67428    26007    813    2017-02-13 03:20:00    2017-02-13 03:20:00
67429    26007    599    2017-02-13 03:34:00    2017-02-13 03:34:00
67430    26007    489    2017-02-13 04:58:00    2017-02-13 04:58:00
67431    26007    940    2017-02-13 15:16:00    2017-02-13 15:16:00
67432    26007    476    2017-02-13 04:52:00    2017-02-13 04:52:00
67433    26008    494    2017-02-13 14:54:00    2017-02-13 14:54:00
67434    26008    816    2017-02-13 14:18:00    2017-02-13 14:18:00
67435    26008    485    2017-02-13 04:11:00    2017-02-13 04:11:00
67436    26008    825    2017-02-13 11:02:00    2017-02-13 11:02:00
67437    26008    641    2017-02-13 03:12:00    2017-02-13 03:12:00
67438    26009    769    2017-02-13 22:33:00    2017-02-13 22:33:00
67439    26009    718    2017-02-13 15:01:00    2017-02-13 15:01:00
67440    26009    846    2017-02-13 23:08:00    2017-02-13 23:08:00
67441    26009    592    2017-02-13 13:37:00    2017-02-13 13:37:00
67442    26009    559    2017-02-13 22:05:00    2017-02-13 22:05:00
67443    26010    776    2017-02-13 20:28:00    2017-02-13 20:28:00
67444    26010    941    2017-02-13 10:53:00    2017-02-13 10:53:00
67445    26010    705    2017-02-13 12:12:00    2017-02-13 12:12:00
67446    26010    468    2017-02-13 02:37:00    2017-02-13 02:37:00
67447    26010    815    2017-02-13 15:45:00    2017-02-13 15:45:00
67448    26011    563    2017-02-13 12:16:00    2017-02-13 12:16:00
67449    26011    538    2017-02-13 18:44:00    2017-02-13 18:44:00
67450    26011    489    2017-02-13 19:15:00    2017-02-13 19:15:00
67451    26011    682    2017-02-13 23:34:00    2017-02-13 23:34:00
67452    26011    534    2017-02-13 01:41:00    2017-02-13 01:41:00
67453    26012    502    2017-02-13 13:52:00    2017-02-13 13:52:00
67454    26012    637    2017-02-13 16:04:00    2017-02-13 16:04:00
67455    26012    755    2017-02-13 03:36:00    2017-02-13 03:36:00
67456    26012    839    2017-02-13 13:51:00    2017-02-13 13:51:00
67457    26012    781    2017-02-13 03:58:00    2017-02-13 03:58:00
67458    26013    932    2017-02-13 03:14:00    2017-02-13 03:14:00
67459    26013    846    2017-02-13 12:09:00    2017-02-13 12:09:00
67460    26013    884    2017-02-13 04:53:00    2017-02-13 04:53:00
67461    26013    517    2017-02-13 20:32:00    2017-02-13 20:32:00
67462    26013    628    2017-02-13 13:41:00    2017-02-13 13:41:00
67463    26014    756    2017-02-13 21:36:00    2017-02-13 21:36:00
67464    26014    471    2017-02-13 19:20:00    2017-02-13 19:20:00
67465    26014    938    2017-02-13 11:45:00    2017-02-13 11:45:00
67466    26014    697    2017-02-13 04:59:00    2017-02-13 04:59:00
67467    26014    853    2017-02-13 09:10:00    2017-02-13 09:10:00
67468    26015    621    2017-02-13 17:55:00    2017-02-13 17:55:00
67469    26015    931    2017-02-13 20:42:00    2017-02-13 20:42:00
67470    26015    712    2017-02-13 05:00:00    2017-02-13 05:00:00
67471    26015    641    2017-02-13 01:33:00    2017-02-13 01:33:00
67472    26015    875    2017-02-13 14:51:00    2017-02-13 14:51:00
67473    26016    520    2017-02-13 20:35:00    2017-02-13 20:35:00
67474    26016    580    2017-02-13 16:45:00    2017-02-13 16:45:00
67475    26016    465    2017-02-13 18:59:00    2017-02-13 18:59:00
67476    26016    717    2017-02-13 01:02:00    2017-02-13 01:02:00
67477    26016    544    2017-02-13 21:30:00    2017-02-13 21:30:00
67478    26017    568    2017-02-13 09:01:00    2017-02-13 09:01:00
67479    26017    666    2017-02-13 11:27:00    2017-02-13 11:27:00
67480    26017    708    2017-02-13 21:52:00    2017-02-13 21:52:00
67481    26017    545    2017-02-13 03:49:00    2017-02-13 03:49:00
67482    26017    891    2017-02-13 14:02:00    2017-02-13 14:02:00
67483    26018    721    2017-02-13 08:19:00    2017-02-13 08:19:00
67484    26018    699    2017-02-13 20:34:00    2017-02-13 20:34:00
67485    26018    726    2017-02-13 11:39:00    2017-02-13 11:39:00
67486    26018    526    2017-02-13 03:40:00    2017-02-13 03:40:00
67487    26018    643    2017-02-13 20:51:00    2017-02-13 20:51:00
67488    26019    746    2017-02-13 15:59:00    2017-02-13 15:59:00
67489    26019    631    2017-02-13 05:17:00    2017-02-13 05:17:00
67490    26019    897    2017-02-13 18:25:00    2017-02-13 18:25:00
67491    26019    722    2017-02-13 09:05:00    2017-02-13 09:05:00
67492    26019    479    2017-02-13 15:33:00    2017-02-13 15:33:00
67493    26020    570    2017-02-13 21:53:00    2017-02-13 21:53:00
67494    26020    751    2017-02-13 10:16:00    2017-02-13 10:16:00
67495    26020    922    2017-02-13 11:09:00    2017-02-13 11:09:00
67496    26020    471    2017-02-13 05:23:00    2017-02-13 05:23:00
67497    26020    873    2017-02-13 04:51:00    2017-02-13 04:51:00
67498    26021    621    2017-02-13 19:38:00    2017-02-13 19:38:00
67499    26021    507    2017-02-13 15:34:00    2017-02-13 15:34:00
67500    26021    850    2017-02-13 18:18:00    2017-02-13 18:18:00
67501    26021    545    2017-02-13 01:17:00    2017-02-13 01:17:00
67502    26021    778    2017-02-13 15:34:00    2017-02-13 15:34:00
67503    26022    590    2017-02-13 12:10:00    2017-02-13 12:10:00
67504    26022    706    2017-02-13 15:26:00    2017-02-13 15:26:00
67505    26022    923    2017-02-13 02:30:00    2017-02-13 02:30:00
67506    26022    507    2017-02-13 13:32:00    2017-02-13 13:32:00
67507    26022    876    2017-02-13 20:27:00    2017-02-13 20:27:00
67508    26023    644    2017-02-13 09:31:00    2017-02-13 09:31:00
67509    26023    851    2017-02-13 23:27:00    2017-02-13 23:27:00
67510    26023    641    2017-02-13 23:16:00    2017-02-13 23:16:00
67511    26023    910    2017-02-13 17:38:00    2017-02-13 17:38:00
67512    26023    756    2017-02-13 08:05:00    2017-02-13 08:05:00
67513    26024    494    2017-02-13 17:39:00    2017-02-13 17:39:00
67514    26024    696    2017-02-13 03:20:00    2017-02-13 03:20:00
67515    26024    565    2017-02-13 21:59:00    2017-02-13 21:59:00
67516    26024    710    2017-02-13 01:47:00    2017-02-13 01:47:00
67517    26024    891    2017-02-13 08:18:00    2017-02-13 08:18:00
67518    26025    748    2017-02-14 13:29:00    2017-02-14 13:29:00
67519    26025    656    2017-02-14 11:57:00    2017-02-14 11:57:00
67520    26025    722    2017-02-14 05:40:00    2017-02-14 05:40:00
67521    26025    687    2017-02-14 05:26:00    2017-02-14 05:26:00
67522    26025    613    2017-02-14 17:59:00    2017-02-14 17:59:00
67523    26026    495    2017-02-14 01:11:00    2017-02-14 01:11:00
67524    26026    727    2017-02-14 13:17:00    2017-02-14 13:17:00
67525    26026    612    2017-02-14 12:15:00    2017-02-14 12:15:00
67526    26026    587    2017-02-14 10:08:00    2017-02-14 10:08:00
67527    26026    592    2017-02-14 18:04:00    2017-02-14 18:04:00
67528    26027    472    2017-02-14 23:27:00    2017-02-14 23:27:00
67529    26027    935    2017-02-14 05:58:00    2017-02-14 05:58:00
67530    26027    590    2017-02-14 13:26:00    2017-02-14 13:26:00
67531    26027    727    2017-02-14 20:44:00    2017-02-14 20:44:00
67532    26027    466    2017-02-14 21:51:00    2017-02-14 21:51:00
67533    26028    742    2017-02-14 17:15:00    2017-02-14 17:15:00
67534    26028    464    2017-02-14 10:50:00    2017-02-14 10:50:00
67535    26028    942    2017-02-14 07:35:00    2017-02-14 07:35:00
67536    26028    662    2017-02-14 23:58:00    2017-02-14 23:58:00
67537    26028    782    2017-02-14 09:27:00    2017-02-14 09:27:00
67538    26029    896    2017-02-14 16:03:00    2017-02-14 16:03:00
67539    26029    526    2017-02-14 15:52:00    2017-02-14 15:52:00
67540    26029    653    2017-02-14 15:30:00    2017-02-14 15:30:00
67541    26029    488    2017-02-14 21:42:00    2017-02-14 21:42:00
67542    26029    484    2017-02-14 21:28:00    2017-02-14 21:28:00
67543    26030    544    2017-02-14 16:38:00    2017-02-14 16:38:00
67544    26030    569    2017-02-14 06:42:00    2017-02-14 06:42:00
67545    26030    778    2017-02-14 21:03:00    2017-02-14 21:03:00
67546    26030    952    2017-02-14 03:43:00    2017-02-14 03:43:00
67547    26030    818    2017-02-14 16:49:00    2017-02-14 16:49:00
67548    26031    770    2017-02-14 04:54:00    2017-02-14 04:54:00
67549    26031    886    2017-02-14 21:58:00    2017-02-14 21:58:00
67550    26031    926    2017-02-14 10:52:00    2017-02-14 10:52:00
67551    26031    669    2017-02-14 02:52:00    2017-02-14 02:52:00
67552    26031    477    2017-02-14 05:34:00    2017-02-14 05:34:00
67553    26032    709    2017-02-14 07:26:00    2017-02-14 07:26:00
67554    26032    943    2017-02-14 10:34:00    2017-02-14 10:34:00
67555    26032    730    2017-02-14 07:21:00    2017-02-14 07:21:00
67556    26032    645    2017-02-14 19:10:00    2017-02-14 19:10:00
67557    26032    489    2017-02-14 04:25:00    2017-02-14 04:25:00
67558    26033    518    2017-02-14 10:19:00    2017-02-14 10:19:00
67559    26033    592    2017-02-14 02:44:00    2017-02-14 02:44:00
67560    26033    620    2017-02-14 02:05:00    2017-02-14 02:05:00
67561    26033    700    2017-02-14 11:24:00    2017-02-14 11:24:00
67562    26033    598    2017-02-14 12:01:00    2017-02-14 12:01:00
67563    26034    908    2017-02-14 10:12:00    2017-02-14 10:12:00
67564    26034    899    2017-02-14 13:01:00    2017-02-14 13:01:00
67565    26034    810    2017-02-14 01:06:00    2017-02-14 01:06:00
67566    26034    796    2017-02-14 08:28:00    2017-02-14 08:28:00
67567    26034    836    2017-02-14 04:28:00    2017-02-14 04:28:00
67568    26035    770    2017-02-14 23:56:00    2017-02-14 23:56:00
67569    26035    642    2017-02-14 02:41:00    2017-02-14 02:41:00
67570    26035    900    2017-02-14 08:02:00    2017-02-14 08:02:00
67571    26035    665    2017-02-14 21:26:00    2017-02-14 21:26:00
67572    26035    799    2017-02-14 08:03:00    2017-02-14 08:03:00
67573    26036    696    2017-02-14 03:40:00    2017-02-14 03:40:00
67574    26036    624    2017-02-14 15:18:00    2017-02-14 15:18:00
67575    26036    630    2017-02-14 05:49:00    2017-02-14 05:49:00
67576    26036    535    2017-02-14 02:59:00    2017-02-14 02:59:00
67577    26036    527    2017-02-14 12:24:00    2017-02-14 12:24:00
67578    26037    932    2017-02-14 13:39:00    2017-02-14 13:39:00
67579    26037    482    2017-02-14 19:10:00    2017-02-14 19:10:00
67580    26037    563    2017-02-14 03:02:00    2017-02-14 03:02:00
67581    26037    553    2017-02-14 02:51:00    2017-02-14 02:51:00
67582    26037    591    2017-02-14 13:35:00    2017-02-14 13:35:00
67583    26038    874    2017-02-14 10:12:00    2017-02-14 10:12:00
67584    26038    857    2017-02-14 17:58:00    2017-02-14 17:58:00
67585    26038    861    2017-02-14 14:56:00    2017-02-14 14:56:00
67586    26038    924    2017-02-14 09:37:00    2017-02-14 09:37:00
67587    26038    558    2017-02-14 16:12:00    2017-02-14 16:12:00
67588    26039    687    2017-02-14 21:21:00    2017-02-14 21:21:00
67589    26039    550    2017-02-14 02:01:00    2017-02-14 02:01:00
67590    26039    530    2017-02-14 12:57:00    2017-02-14 12:57:00
67591    26039    796    2017-02-14 19:51:00    2017-02-14 19:51:00
67592    26039    881    2017-02-14 04:46:00    2017-02-14 04:46:00
67593    26040    633    2017-02-14 09:23:00    2017-02-14 09:23:00
67594    26040    635    2017-02-14 14:33:00    2017-02-14 14:33:00
67595    26040    790    2017-02-14 02:51:00    2017-02-14 02:51:00
67596    26040    799    2017-02-14 21:01:00    2017-02-14 21:01:00
67597    26040    881    2017-02-14 07:59:00    2017-02-14 07:59:00
67598    26041    497    2017-02-14 01:57:00    2017-02-14 01:57:00
67599    26041    752    2017-02-14 10:36:00    2017-02-14 10:36:00
67600    26041    712    2017-02-14 09:27:00    2017-02-14 09:27:00
67601    26041    653    2017-02-14 23:28:00    2017-02-14 23:28:00
67602    26041    671    2017-02-14 04:16:00    2017-02-14 04:16:00
67603    26042    891    2017-02-14 08:31:00    2017-02-14 08:31:00
67604    26042    590    2017-02-14 01:24:00    2017-02-14 01:24:00
67605    26042    553    2017-02-14 06:21:00    2017-02-14 06:21:00
67606    26042    798    2017-02-14 08:47:00    2017-02-14 08:47:00
67607    26042    898    2017-02-14 11:46:00    2017-02-14 11:46:00
67608    26043    576    2017-02-14 12:31:00    2017-02-14 12:31:00
67609    26043    621    2017-02-14 11:23:00    2017-02-14 11:23:00
67610    26043    948    2017-02-14 13:40:00    2017-02-14 13:40:00
67611    26043    479    2017-02-14 10:10:00    2017-02-14 10:10:00
67612    26043    506    2017-02-14 22:27:00    2017-02-14 22:27:00
67613    26044    944    2017-02-14 07:31:00    2017-02-14 07:31:00
67614    26044    834    2017-02-14 19:56:00    2017-02-14 19:56:00
67615    26044    721    2017-02-14 16:41:00    2017-02-14 16:41:00
67616    26044    463    2017-02-14 13:48:00    2017-02-14 13:48:00
67617    26044    646    2017-02-14 18:29:00    2017-02-14 18:29:00
67618    26045    470    2017-02-14 14:03:00    2017-02-14 14:03:00
67619    26045    465    2017-02-14 03:00:00    2017-02-14 03:00:00
67620    26045    740    2017-02-14 10:32:00    2017-02-14 10:32:00
67621    26045    678    2017-02-14 18:16:00    2017-02-14 18:16:00
67622    26045    727    2017-02-14 08:38:00    2017-02-14 08:38:00
67623    26046    657    2017-02-14 14:43:00    2017-02-14 14:43:00
67624    26046    683    2017-02-14 18:17:00    2017-02-14 18:17:00
67625    26046    793    2017-02-14 08:02:00    2017-02-14 08:02:00
67626    26046    863    2017-02-14 11:54:00    2017-02-14 11:54:00
67627    26046    492    2017-02-14 16:45:00    2017-02-14 16:45:00
67628    26047    954    2017-02-14 03:00:00    2017-02-14 03:00:00
67629    26047    480    2017-02-14 07:18:00    2017-02-14 07:18:00
67630    26047    609    2017-02-14 22:27:00    2017-02-14 22:27:00
67631    26047    833    2017-02-14 14:42:00    2017-02-14 14:42:00
67632    26047    701    2017-02-14 03:03:00    2017-02-14 03:03:00
67633    26048    466    2017-02-14 16:30:00    2017-02-14 16:30:00
67634    26048    609    2017-02-14 14:07:00    2017-02-14 14:07:00
67635    26048    902    2017-02-14 07:21:00    2017-02-14 07:21:00
67636    26048    612    2017-02-14 14:12:00    2017-02-14 14:12:00
67637    26048    534    2017-02-14 19:18:00    2017-02-14 19:18:00
67638    26049    823    2017-02-14 03:49:00    2017-02-14 03:49:00
67639    26049    955    2017-02-14 02:23:00    2017-02-14 02:23:00
67640    26049    537    2017-02-14 23:26:00    2017-02-14 23:26:00
67641    26049    823    2017-02-14 05:53:00    2017-02-14 05:53:00
67642    26049    514    2017-02-14 01:48:00    2017-02-14 01:48:00
67643    26050    726    2017-02-14 17:54:00    2017-02-14 17:54:00
67644    26050    623    2017-02-14 05:45:00    2017-02-14 05:45:00
67645    26050    814    2017-02-14 15:11:00    2017-02-14 15:11:00
67646    26050    755    2017-02-14 13:31:00    2017-02-14 13:31:00
67647    26050    554    2017-02-14 10:11:00    2017-02-14 10:11:00
67648    26051    475    2017-02-14 06:19:00    2017-02-14 06:19:00
67649    26051    783    2017-02-14 20:42:00    2017-02-14 20:42:00
67650    26051    944    2017-02-14 06:32:00    2017-02-14 06:32:00
67651    26051    641    2017-02-14 11:55:00    2017-02-14 11:55:00
67652    26051    814    2017-02-14 20:12:00    2017-02-14 20:12:00
67653    26052    826    2017-02-14 06:30:00    2017-02-14 06:30:00
67654    26052    633    2017-02-14 12:07:00    2017-02-14 12:07:00
67655    26052    545    2017-02-14 11:03:00    2017-02-14 11:03:00
67656    26052    846    2017-02-14 21:59:00    2017-02-14 21:59:00
67657    26052    829    2017-02-14 04:24:00    2017-02-14 04:24:00
67658    26053    832    2017-02-14 06:39:00    2017-02-14 06:39:00
67659    26053    567    2017-02-14 07:58:00    2017-02-14 07:58:00
67660    26053    741    2017-02-14 17:30:00    2017-02-14 17:30:00
67661    26053    817    2017-02-14 04:17:00    2017-02-14 04:17:00
67662    26053    656    2017-02-14 21:25:00    2017-02-14 21:25:00
67663    26054    791    2017-02-14 21:23:00    2017-02-14 21:23:00
67664    26054    933    2017-02-14 05:03:00    2017-02-14 05:03:00
67665    26054    736    2017-02-14 23:43:00    2017-02-14 23:43:00
67666    26054    854    2017-02-14 03:32:00    2017-02-14 03:32:00
67667    26054    560    2017-02-14 16:08:00    2017-02-14 16:08:00
67668    26055    794    2017-02-14 23:52:00    2017-02-14 23:52:00
67669    26055    862    2017-02-14 04:01:00    2017-02-14 04:01:00
67670    26055    922    2017-02-14 07:11:00    2017-02-14 07:11:00
67671    26055    938    2017-02-14 16:57:00    2017-02-14 16:57:00
67672    26055    712    2017-02-14 11:33:00    2017-02-14 11:33:00
67673    26056    943    2017-02-14 16:34:00    2017-02-14 16:34:00
67674    26056    877    2017-02-14 22:29:00    2017-02-14 22:29:00
67675    26056    652    2017-02-14 02:22:00    2017-02-14 02:22:00
67676    26056    519    2017-02-14 12:39:00    2017-02-14 12:39:00
67677    26056    764    2017-02-14 06:19:00    2017-02-14 06:19:00
67678    26057    952    2017-02-14 11:37:00    2017-02-14 11:37:00
67679    26057    688    2017-02-14 03:48:00    2017-02-14 03:48:00
67680    26057    535    2017-02-14 08:00:00    2017-02-14 08:00:00
67681    26057    745    2017-02-14 03:16:00    2017-02-14 03:16:00
67682    26057    864    2017-02-14 12:26:00    2017-02-14 12:26:00
67683    26058    540    2017-02-14 23:23:00    2017-02-14 23:23:00
67684    26058    921    2017-02-14 07:05:00    2017-02-14 07:05:00
67685    26058    692    2017-02-14 03:28:00    2017-02-14 03:28:00
67686    26058    750    2017-02-14 06:41:00    2017-02-14 06:41:00
67687    26058    464    2017-02-14 12:16:00    2017-02-14 12:16:00
67688    26059    672    2017-02-14 05:35:00    2017-02-14 05:35:00
67689    26059    679    2017-02-14 11:06:00    2017-02-14 11:06:00
67690    26059    859    2017-02-14 05:30:00    2017-02-14 05:30:00
67691    26059    832    2017-02-14 03:56:00    2017-02-14 03:56:00
67692    26059    550    2017-02-14 22:28:00    2017-02-14 22:28:00
67693    26060    494    2017-02-14 09:41:00    2017-02-14 09:41:00
67694    26060    609    2017-02-14 01:03:00    2017-02-14 01:03:00
67695    26060    508    2017-02-14 19:16:00    2017-02-14 19:16:00
67696    26060    585    2017-02-14 20:23:00    2017-02-14 20:23:00
67697    26060    933    2017-02-14 19:44:00    2017-02-14 19:44:00
67698    26061    723    2017-02-14 15:15:00    2017-02-14 15:15:00
67699    26061    846    2017-02-14 12:13:00    2017-02-14 12:13:00
67700    26061    907    2017-02-14 09:50:00    2017-02-14 09:50:00
67701    26061    821    2017-02-14 11:25:00    2017-02-14 11:25:00
67702    26061    838    2017-02-14 07:57:00    2017-02-14 07:57:00
67703    26062    696    2017-02-14 20:38:00    2017-02-14 20:38:00
67704    26062    535    2017-02-14 11:20:00    2017-02-14 11:20:00
67705    26062    748    2017-02-14 07:43:00    2017-02-14 07:43:00
67706    26062    859    2017-02-14 10:07:00    2017-02-14 10:07:00
67707    26062    506    2017-02-14 03:56:00    2017-02-14 03:56:00
67708    26063    951    2017-02-14 21:52:00    2017-02-14 21:52:00
67709    26063    696    2017-02-14 02:32:00    2017-02-14 02:32:00
67710    26063    576    2017-02-14 14:00:00    2017-02-14 14:00:00
67711    26063    822    2017-02-14 03:59:00    2017-02-14 03:59:00
67712    26063    737    2017-02-14 12:38:00    2017-02-14 12:38:00
67713    26064    806    2017-02-14 03:20:00    2017-02-14 03:20:00
67714    26064    536    2017-02-14 02:29:00    2017-02-14 02:29:00
67715    26064    884    2017-02-14 12:30:00    2017-02-14 12:30:00
67716    26064    617    2017-02-14 13:39:00    2017-02-14 13:39:00
67717    26064    666    2017-02-14 04:16:00    2017-02-14 04:16:00
67718    26065    873    2017-02-14 17:40:00    2017-02-14 17:40:00
67719    26065    532    2017-02-14 20:57:00    2017-02-14 20:57:00
67720    26065    778    2017-02-14 05:58:00    2017-02-14 05:58:00
67721    26065    853    2017-02-14 08:10:00    2017-02-14 08:10:00
67722    26065    598    2017-02-14 12:00:00    2017-02-14 12:00:00
67723    26066    481    2017-02-14 02:13:00    2017-02-14 02:13:00
67724    26066    949    2017-02-14 01:42:00    2017-02-14 01:42:00
67725    26066    759    2017-02-14 13:46:00    2017-02-14 13:46:00
67726    26066    796    2017-02-14 07:03:00    2017-02-14 07:03:00
67727    26066    761    2017-02-14 08:17:00    2017-02-14 08:17:00
67728    26067    629    2017-02-14 02:56:00    2017-02-14 02:56:00
67729    26067    881    2017-02-14 06:54:00    2017-02-14 06:54:00
67730    26067    488    2017-02-14 04:08:00    2017-02-14 04:08:00
67731    26067    912    2017-02-14 16:27:00    2017-02-14 16:27:00
67732    26067    849    2017-02-14 13:03:00    2017-02-14 13:03:00
67733    26068    623    2017-02-14 07:39:00    2017-02-14 07:39:00
67734    26068    529    2017-02-14 15:03:00    2017-02-14 15:03:00
67735    26068    479    2017-02-14 15:05:00    2017-02-14 15:05:00
67736    26068    777    2017-02-14 05:22:00    2017-02-14 05:22:00
67737    26068    470    2017-02-14 19:22:00    2017-02-14 19:22:00
67738    26069    535    2017-02-14 11:30:00    2017-02-14 11:30:00
67739    26069    563    2017-02-14 03:26:00    2017-02-14 03:26:00
67740    26069    619    2017-02-14 18:47:00    2017-02-14 18:47:00
67741    26069    564    2017-02-14 01:48:00    2017-02-14 01:48:00
67742    26069    730    2017-02-14 17:00:00    2017-02-14 17:00:00
67743    26070    693    2017-02-14 07:16:00    2017-02-14 07:16:00
67744    26070    759    2017-02-14 20:00:00    2017-02-14 20:00:00
67745    26070    556    2017-02-14 02:18:00    2017-02-14 02:18:00
67746    26070    514    2017-02-14 10:10:00    2017-02-14 10:10:00
67747    26070    643    2017-02-14 09:32:00    2017-02-14 09:32:00
67748    26071    798    2017-02-14 20:17:00    2017-02-14 20:17:00
67749    26071    468    2017-02-14 02:05:00    2017-02-14 02:05:00
67750    26071    547    2017-02-14 09:49:00    2017-02-14 09:49:00
67751    26071    641    2017-02-14 06:54:00    2017-02-14 06:54:00
67752    26071    909    2017-02-14 23:17:00    2017-02-14 23:17:00
67753    26072    907    2017-02-14 17:14:00    2017-02-14 17:14:00
67754    26072    625    2017-02-14 12:59:00    2017-02-14 12:59:00
67755    26072    539    2017-02-14 11:15:00    2017-02-14 11:15:00
67756    26072    827    2017-02-14 13:46:00    2017-02-14 13:46:00
67757    26072    949    2017-02-14 05:48:00    2017-02-14 05:48:00
67758    26073    951    2017-02-14 17:26:00    2017-02-14 17:26:00
67759    26073    842    2017-02-14 08:00:00    2017-02-14 08:00:00
67760    26073    956    2017-02-14 06:42:00    2017-02-14 06:42:00
67761    26073    876    2017-02-14 10:24:00    2017-02-14 10:24:00
67762    26073    538    2017-02-14 23:11:00    2017-02-14 23:11:00
67763    26074    848    2017-02-14 01:22:00    2017-02-14 01:22:00
67764    26074    846    2017-02-14 11:55:00    2017-02-14 11:55:00
67765    26074    754    2017-02-14 19:47:00    2017-02-14 19:47:00
67766    26074    675    2017-02-14 04:46:00    2017-02-14 04:46:00
67767    26074    655    2017-02-14 11:51:00    2017-02-14 11:51:00
67768    26075    701    2017-02-14 10:36:00    2017-02-14 10:36:00
67769    26075    757    2017-02-14 04:21:00    2017-02-14 04:21:00
67770    26075    909    2017-02-14 07:31:00    2017-02-14 07:31:00
67771    26075    938    2017-02-14 16:20:00    2017-02-14 16:20:00
67772    26075    570    2017-02-14 23:04:00    2017-02-14 23:04:00
67773    26076    738    2017-02-14 23:19:00    2017-02-14 23:19:00
67774    26076    944    2017-02-14 08:01:00    2017-02-14 08:01:00
67775    26076    528    2017-02-14 20:23:00    2017-02-14 20:23:00
67776    26076    739    2017-02-14 09:47:00    2017-02-14 09:47:00
67777    26076    847    2017-02-14 21:34:00    2017-02-14 21:34:00
67778    26077    635    2017-02-14 14:47:00    2017-02-14 14:47:00
67779    26077    956    2017-02-14 22:05:00    2017-02-14 22:05:00
67780    26077    826    2017-02-14 05:27:00    2017-02-14 05:27:00
67781    26077    925    2017-02-14 06:59:00    2017-02-14 06:59:00
67782    26077    844    2017-02-14 02:25:00    2017-02-14 02:25:00
67783    26078    736    2017-02-14 03:32:00    2017-02-14 03:32:00
67784    26078    637    2017-02-14 18:06:00    2017-02-14 18:06:00
67785    26078    903    2017-02-14 07:57:00    2017-02-14 07:57:00
67786    26078    666    2017-02-14 03:55:00    2017-02-14 03:55:00
67787    26078    630    2017-02-14 18:27:00    2017-02-14 18:27:00
67788    26079    619    2017-02-14 07:23:00    2017-02-14 07:23:00
67789    26079    716    2017-02-14 03:29:00    2017-02-14 03:29:00
67790    26079    959    2017-02-14 11:44:00    2017-02-14 11:44:00
67791    26079    749    2017-02-14 17:43:00    2017-02-14 17:43:00
67792    26079    753    2017-02-14 18:28:00    2017-02-14 18:28:00
67793    26080    757    2017-02-14 18:34:00    2017-02-14 18:34:00
67794    26080    669    2017-02-14 22:10:00    2017-02-14 22:10:00
67795    26080    471    2017-02-14 17:28:00    2017-02-14 17:28:00
67796    26080    591    2017-02-14 10:55:00    2017-02-14 10:55:00
67797    26080    768    2017-02-14 22:52:00    2017-02-14 22:52:00
67798    26081    468    2017-02-14 06:54:00    2017-02-14 06:54:00
67799    26081    598    2017-02-14 20:23:00    2017-02-14 20:23:00
67800    26081    883    2017-02-14 15:15:00    2017-02-14 15:15:00
67801    26081    843    2017-02-14 04:08:00    2017-02-14 04:08:00
67802    26081    472    2017-02-14 02:47:00    2017-02-14 02:47:00
67803    26082    501    2017-02-14 18:07:00    2017-02-14 18:07:00
67804    26082    639    2017-02-14 21:57:00    2017-02-14 21:57:00
67805    26082    703    2017-02-14 15:44:00    2017-02-14 15:44:00
67806    26082    702    2017-02-14 08:23:00    2017-02-14 08:23:00
67807    26082    920    2017-02-14 19:32:00    2017-02-14 19:32:00
67808    26083    697    2017-02-14 20:52:00    2017-02-14 20:52:00
67809    26083    895    2017-02-14 15:44:00    2017-02-14 15:44:00
67810    26083    468    2017-02-14 09:56:00    2017-02-14 09:56:00
67811    26083    479    2017-02-14 13:11:00    2017-02-14 13:11:00
67812    26083    897    2017-02-14 01:15:00    2017-02-14 01:15:00
67813    26084    710    2017-02-14 04:14:00    2017-02-14 04:14:00
67814    26084    941    2017-02-14 15:22:00    2017-02-14 15:22:00
67815    26084    486    2017-02-14 20:47:00    2017-02-14 20:47:00
67816    26084    785    2017-02-14 11:29:00    2017-02-14 11:29:00
67817    26084    673    2017-02-14 10:45:00    2017-02-14 10:45:00
67818    26085    855    2017-02-14 06:25:00    2017-02-14 06:25:00
67819    26085    768    2017-02-14 06:54:00    2017-02-14 06:54:00
67820    26085    592    2017-02-14 23:00:00    2017-02-14 23:00:00
67821    26085    875    2017-02-14 13:06:00    2017-02-14 13:06:00
67822    26085    922    2017-02-14 12:53:00    2017-02-14 12:53:00
67823    26086    672    2017-02-14 15:46:00    2017-02-14 15:46:00
67824    26086    940    2017-02-14 16:42:00    2017-02-14 16:42:00
67825    26086    593    2017-02-14 09:14:00    2017-02-14 09:14:00
67826    26086    798    2017-02-14 02:57:00    2017-02-14 02:57:00
67827    26086    708    2017-02-14 03:25:00    2017-02-14 03:25:00
67828    26087    686    2017-02-14 02:44:00    2017-02-14 02:44:00
67829    26087    872    2017-02-14 13:04:00    2017-02-14 13:04:00
67830    26087    556    2017-02-14 23:01:00    2017-02-14 23:01:00
67831    26087    893    2017-02-14 13:51:00    2017-02-14 13:51:00
67832    26087    570    2017-02-14 06:23:00    2017-02-14 06:23:00
67833    26088    947    2017-02-14 09:04:00    2017-02-14 09:04:00
67834    26088    724    2017-02-14 18:44:00    2017-02-14 18:44:00
67835    26088    565    2017-02-14 11:52:00    2017-02-14 11:52:00
67836    26088    776    2017-02-14 19:41:00    2017-02-14 19:41:00
67837    26088    642    2017-02-14 15:54:00    2017-02-14 15:54:00
67838    26089    668    2017-02-14 11:19:00    2017-02-14 11:19:00
67839    26089    700    2017-02-14 04:20:00    2017-02-14 04:20:00
67840    26089    780    2017-02-14 18:35:00    2017-02-14 18:35:00
67841    26089    644    2017-02-14 12:47:00    2017-02-14 12:47:00
67842    26089    528    2017-02-14 13:58:00    2017-02-14 13:58:00
67843    26090    530    2017-02-14 03:28:00    2017-02-14 03:28:00
67844    26090    833    2017-02-14 06:53:00    2017-02-14 06:53:00
67845    26090    568    2017-02-14 06:31:00    2017-02-14 06:31:00
67846    26090    889    2017-02-14 15:24:00    2017-02-14 15:24:00
67847    26090    913    2017-02-14 18:12:00    2017-02-14 18:12:00
67848    26091    640    2017-02-14 11:21:00    2017-02-14 11:21:00
67849    26091    953    2017-02-14 21:09:00    2017-02-14 21:09:00
67850    26091    541    2017-02-14 04:04:00    2017-02-14 04:04:00
67851    26091    675    2017-02-14 22:29:00    2017-02-14 22:29:00
67852    26091    887    2017-02-14 10:49:00    2017-02-14 10:49:00
67853    26092    467    2017-02-14 23:41:00    2017-02-14 23:41:00
67854    26092    643    2017-02-14 12:39:00    2017-02-14 12:39:00
67855    26092    856    2017-02-14 07:07:00    2017-02-14 07:07:00
67856    26092    723    2017-02-14 03:53:00    2017-02-14 03:53:00
67857    26092    681    2017-02-14 08:31:00    2017-02-14 08:31:00
67858    26093    505    2017-02-14 15:04:00    2017-02-14 15:04:00
67859    26093    476    2017-02-14 10:16:00    2017-02-14 10:16:00
67860    26093    554    2017-02-14 02:35:00    2017-02-14 02:35:00
67861    26093    629    2017-02-14 04:29:00    2017-02-14 04:29:00
67862    26093    515    2017-02-14 23:42:00    2017-02-14 23:42:00
67863    26094    886    2017-02-14 06:28:00    2017-02-14 06:28:00
67864    26094    907    2017-02-14 17:25:00    2017-02-14 17:25:00
67865    26094    681    2017-02-14 04:59:00    2017-02-14 04:59:00
67866    26094    896    2017-02-14 23:35:00    2017-02-14 23:35:00
67867    26094    693    2017-02-14 12:32:00    2017-02-14 12:32:00
67868    26095    629    2017-02-14 20:24:00    2017-02-14 20:24:00
67869    26095    887    2017-02-14 04:59:00    2017-02-14 04:59:00
67870    26095    538    2017-02-14 18:25:00    2017-02-14 18:25:00
67871    26095    583    2017-02-14 23:23:00    2017-02-14 23:23:00
67872    26095    510    2017-02-14 21:03:00    2017-02-14 21:03:00
67873    26096    632    2017-02-14 06:09:00    2017-02-14 06:09:00
67874    26096    869    2017-02-14 15:17:00    2017-02-14 15:17:00
67875    26096    502    2017-02-14 13:14:00    2017-02-14 13:14:00
67876    26096    759    2017-02-14 11:27:00    2017-02-14 11:27:00
67877    26096    796    2017-02-14 18:02:00    2017-02-14 18:02:00
67878    26097    492    2017-02-14 14:31:00    2017-02-14 14:31:00
67879    26097    625    2017-02-14 04:26:00    2017-02-14 04:26:00
67880    26097    771    2017-02-14 19:49:00    2017-02-14 19:49:00
67881    26097    868    2017-02-14 17:07:00    2017-02-14 17:07:00
67882    26097    860    2017-02-14 07:03:00    2017-02-14 07:03:00
67883    26098    466    2017-02-14 15:32:00    2017-02-14 15:32:00
67884    26098    684    2017-02-14 13:45:00    2017-02-14 13:45:00
67885    26098    636    2017-02-14 12:00:00    2017-02-14 12:00:00
67886    26098    774    2017-02-14 04:57:00    2017-02-14 04:57:00
67887    26098    929    2017-02-14 16:08:00    2017-02-14 16:08:00
67888    26099    639    2017-02-14 20:59:00    2017-02-14 20:59:00
67889    26099    621    2017-02-14 06:10:00    2017-02-14 06:10:00
67890    26099    691    2017-02-14 16:26:00    2017-02-14 16:26:00
67891    26099    958    2017-02-14 09:46:00    2017-02-14 09:46:00
67892    26099    841    2017-02-14 18:26:00    2017-02-14 18:26:00
67893    26100    730    2017-02-14 13:11:00    2017-02-14 13:11:00
67894    26100    765    2017-02-14 14:38:00    2017-02-14 14:38:00
67895    26100    773    2017-02-14 05:29:00    2017-02-14 05:29:00
67896    26100    571    2017-02-14 15:38:00    2017-02-14 15:38:00
67897    26100    752    2017-02-14 13:46:00    2017-02-14 13:46:00
67898    26101    915    2017-02-14 16:59:00    2017-02-14 16:59:00
67899    26101    730    2017-02-14 10:30:00    2017-02-14 10:30:00
67900    26101    466    2017-02-14 18:07:00    2017-02-14 18:07:00
67901    26101    622    2017-02-14 17:39:00    2017-02-14 17:39:00
67902    26101    494    2017-02-14 01:12:00    2017-02-14 01:12:00
67903    26102    770    2017-02-15 23:23:00    2017-02-15 23:23:00
67904    26102    693    2017-02-15 11:32:00    2017-02-15 11:32:00
67905    26102    689    2017-02-15 13:52:00    2017-02-15 13:52:00
67906    26102    882    2017-02-15 07:19:00    2017-02-15 07:19:00
67907    26102    658    2017-02-15 22:00:00    2017-02-15 22:00:00
67908    26103    841    2017-02-15 01:19:00    2017-02-15 01:19:00
67909    26103    618    2017-02-15 01:26:00    2017-02-15 01:26:00
67910    26103    755    2017-02-15 16:04:00    2017-02-15 16:04:00
67911    26103    603    2017-02-15 04:14:00    2017-02-15 04:14:00
67912    26103    814    2017-02-15 08:21:00    2017-02-15 08:21:00
67913    26104    624    2017-02-15 03:02:00    2017-02-15 03:02:00
67914    26104    600    2017-02-15 16:39:00    2017-02-15 16:39:00
67915    26104    490    2017-02-15 08:39:00    2017-02-15 08:39:00
67916    26104    582    2017-02-15 05:40:00    2017-02-15 05:40:00
67917    26104    755    2017-02-15 10:10:00    2017-02-15 10:10:00
67918    26105    599    2017-02-15 18:35:00    2017-02-15 18:35:00
67919    26105    488    2017-02-15 23:09:00    2017-02-15 23:09:00
67920    26105    890    2017-02-15 03:02:00    2017-02-15 03:02:00
67921    26105    509    2017-02-15 15:49:00    2017-02-15 15:49:00
67922    26105    741    2017-02-15 06:07:00    2017-02-15 06:07:00
67923    26106    752    2017-02-15 17:47:00    2017-02-15 17:47:00
67924    26106    512    2017-02-15 05:00:00    2017-02-15 05:00:00
67925    26106    865    2017-02-15 08:21:00    2017-02-15 08:21:00
67926    26106    490    2017-02-15 14:00:00    2017-02-15 14:00:00
67927    26106    961    2017-02-15 15:07:00    2017-02-15 15:07:00
67928    26107    747    2017-02-15 09:12:00    2017-02-15 09:12:00
67929    26107    876    2017-02-15 01:47:00    2017-02-15 01:47:00
67930    26107    884    2017-02-15 17:27:00    2017-02-15 17:27:00
67931    26107    541    2017-02-15 03:56:00    2017-02-15 03:56:00
67932    26107    807    2017-02-15 10:45:00    2017-02-15 10:45:00
67933    26108    500    2017-02-15 12:00:00    2017-02-15 12:00:00
67934    26108    864    2017-02-15 09:19:00    2017-02-15 09:19:00
67935    26108    937    2017-02-15 08:05:00    2017-02-15 08:05:00
67936    26108    792    2017-02-15 06:57:00    2017-02-15 06:57:00
67937    26108    655    2017-02-15 08:56:00    2017-02-15 08:56:00
67938    26109    893    2017-02-15 20:19:00    2017-02-15 20:19:00
67939    26109    702    2017-02-15 03:02:00    2017-02-15 03:02:00
67940    26109    773    2017-02-15 22:40:00    2017-02-15 22:40:00
67941    26109    903    2017-02-15 16:18:00    2017-02-15 16:18:00
67942    26109    617    2017-02-15 06:56:00    2017-02-15 06:56:00
67943    26110    628    2017-02-15 18:35:00    2017-02-15 18:35:00
67944    26110    543    2017-02-15 03:06:00    2017-02-15 03:06:00
67945    26110    687    2017-02-15 20:40:00    2017-02-15 20:40:00
67946    26110    887    2017-02-15 06:33:00    2017-02-15 06:33:00
67947    26110    703    2017-02-15 23:00:00    2017-02-15 23:00:00
67948    26111    740    2017-02-15 02:25:00    2017-02-15 02:25:00
67949    26111    643    2017-02-15 15:30:00    2017-02-15 15:30:00
67950    26111    733    2017-02-15 19:00:00    2017-02-15 19:00:00
67951    26111    835    2017-02-15 13:40:00    2017-02-15 13:40:00
67952    26111    961    2017-02-15 23:50:00    2017-02-15 23:50:00
67953    26112    890    2017-02-15 01:08:00    2017-02-15 01:08:00
67954    26112    539    2017-02-15 06:55:00    2017-02-15 06:55:00
67955    26112    958    2017-02-15 04:24:00    2017-02-15 04:24:00
67956    26112    657    2017-02-15 06:33:00    2017-02-15 06:33:00
67957    26112    688    2017-02-15 05:52:00    2017-02-15 05:52:00
67958    26113    646    2017-02-15 16:12:00    2017-02-15 16:12:00
67959    26113    681    2017-02-15 23:34:00    2017-02-15 23:34:00
67960    26113    672    2017-02-15 21:35:00    2017-02-15 21:35:00
67961    26113    718    2017-02-15 15:00:00    2017-02-15 15:00:00
67962    26113    902    2017-02-15 12:26:00    2017-02-15 12:26:00
67963    26114    790    2017-02-15 04:04:00    2017-02-15 04:04:00
67964    26114    679    2017-02-15 01:16:00    2017-02-15 01:16:00
67965    26114    714    2017-02-15 14:16:00    2017-02-15 14:16:00
67966    26114    870    2017-02-15 21:49:00    2017-02-15 21:49:00
67967    26114    903    2017-02-15 18:59:00    2017-02-15 18:59:00
67968    26115    748    2017-02-15 19:06:00    2017-02-15 19:06:00
67969    26115    551    2017-02-15 15:25:00    2017-02-15 15:25:00
67970    26115    850    2017-02-15 18:39:00    2017-02-15 18:39:00
67971    26115    705    2017-02-15 11:26:00    2017-02-15 11:26:00
67972    26115    610    2017-02-15 15:36:00    2017-02-15 15:36:00
67973    26116    614    2017-02-15 17:15:00    2017-02-15 17:15:00
67974    26116    931    2017-02-15 16:12:00    2017-02-15 16:12:00
67975    26116    737    2017-02-15 18:04:00    2017-02-15 18:04:00
67976    26116    952    2017-02-15 21:47:00    2017-02-15 21:47:00
67977    26116    821    2017-02-15 08:24:00    2017-02-15 08:24:00
67978    26117    907    2017-02-15 07:04:00    2017-02-15 07:04:00
67979    26117    469    2017-02-15 02:16:00    2017-02-15 02:16:00
67980    26117    860    2017-02-15 12:43:00    2017-02-15 12:43:00
67981    26117    537    2017-02-15 18:34:00    2017-02-15 18:34:00
67982    26117    826    2017-02-15 05:38:00    2017-02-15 05:38:00
67983    26118    768    2017-02-15 05:46:00    2017-02-15 05:46:00
67984    26118    660    2017-02-15 17:55:00    2017-02-15 17:55:00
67985    26118    755    2017-02-15 09:57:00    2017-02-15 09:57:00
67986    26118    589    2017-02-15 04:49:00    2017-02-15 04:49:00
67987    26118    681    2017-02-15 04:31:00    2017-02-15 04:31:00
67988    26119    923    2017-02-15 02:29:00    2017-02-15 02:29:00
67989    26119    948    2017-02-15 01:23:00    2017-02-15 01:23:00
67990    26119    760    2017-02-15 12:52:00    2017-02-15 12:52:00
67991    26119    672    2017-02-15 11:43:00    2017-02-15 11:43:00
67992    26119    948    2017-02-15 05:00:00    2017-02-15 05:00:00
67993    26120    812    2017-02-15 02:03:00    2017-02-15 02:03:00
67994    26120    873    2017-02-15 16:34:00    2017-02-15 16:34:00
67995    26120    876    2017-02-15 23:29:00    2017-02-15 23:29:00
67996    26120    525    2017-02-15 14:15:00    2017-02-15 14:15:00
67997    26120    782    2017-02-15 04:02:00    2017-02-15 04:02:00
67998    26121    895    2017-02-15 04:30:00    2017-02-15 04:30:00
67999    26121    626    2017-02-15 01:40:00    2017-02-15 01:40:00
68000    26121    729    2017-02-15 20:47:00    2017-02-15 20:47:00
68001    26121    485    2017-02-15 03:14:00    2017-02-15 03:14:00
68002    26121    742    2017-02-15 12:13:00    2017-02-15 12:13:00
68003    26122    653    2017-02-15 18:34:00    2017-02-15 18:34:00
68004    26122    536    2017-02-15 03:32:00    2017-02-15 03:32:00
68005    26122    905    2017-02-15 12:50:00    2017-02-15 12:50:00
68006    26122    659    2017-02-15 11:53:00    2017-02-15 11:53:00
68007    26122    601    2017-02-15 03:05:00    2017-02-15 03:05:00
68008    26123    570    2017-02-15 02:28:00    2017-02-15 02:28:00
68009    26123    890    2017-02-15 14:12:00    2017-02-15 14:12:00
68010    26123    716    2017-02-15 21:44:00    2017-02-15 21:44:00
68011    26123    862    2017-02-15 23:40:00    2017-02-15 23:40:00
68012    26123    861    2017-02-15 01:35:00    2017-02-15 01:35:00
68013    26124    695    2017-02-15 22:24:00    2017-02-15 22:24:00
68014    26124    880    2017-02-15 13:02:00    2017-02-15 13:02:00
68015    26124    569    2017-02-15 01:28:00    2017-02-15 01:28:00
68016    26124    487    2017-02-15 21:07:00    2017-02-15 21:07:00
68017    26124    836    2017-02-15 05:48:00    2017-02-15 05:48:00
68018    26125    929    2017-02-15 23:02:00    2017-02-15 23:02:00
68019    26125    867    2017-02-15 19:47:00    2017-02-15 19:47:00
68020    26125    805    2017-02-15 06:22:00    2017-02-15 06:22:00
68021    26125    645    2017-02-15 07:22:00    2017-02-15 07:22:00
68022    26125    765    2017-02-15 01:56:00    2017-02-15 01:56:00
68023    26126    743    2017-02-15 12:10:00    2017-02-15 12:10:00
68024    26126    567    2017-02-15 12:39:00    2017-02-15 12:39:00
68025    26126    657    2017-02-15 02:01:00    2017-02-15 02:01:00
68026    26126    675    2017-02-15 18:30:00    2017-02-15 18:30:00
68027    26126    858    2017-02-15 20:19:00    2017-02-15 20:19:00
68028    26127    485    2017-02-15 10:24:00    2017-02-15 10:24:00
68029    26127    908    2017-02-15 11:06:00    2017-02-15 11:06:00
68030    26127    501    2017-02-15 20:51:00    2017-02-15 20:51:00
68031    26127    854    2017-02-15 02:41:00    2017-02-15 02:41:00
68032    26127    750    2017-02-15 09:13:00    2017-02-15 09:13:00
68033    26128    745    2017-02-15 03:01:00    2017-02-15 03:01:00
68034    26128    622    2017-02-15 12:38:00    2017-02-15 12:38:00
68035    26128    711    2017-02-15 01:45:00    2017-02-15 01:45:00
68036    26128    485    2017-02-15 18:59:00    2017-02-15 18:59:00
68037    26128    604    2017-02-15 10:50:00    2017-02-15 10:50:00
68038    26129    912    2017-02-15 22:14:00    2017-02-15 22:14:00
68039    26129    499    2017-02-15 18:53:00    2017-02-15 18:53:00
68040    26129    789    2017-02-15 19:26:00    2017-02-15 19:26:00
68041    26129    659    2017-02-15 09:04:00    2017-02-15 09:04:00
68042    26129    734    2017-02-15 17:46:00    2017-02-15 17:46:00
68043    26130    764    2017-02-15 20:05:00    2017-02-15 20:05:00
68044    26130    522    2017-02-15 03:48:00    2017-02-15 03:48:00
68045    26130    881    2017-02-15 17:03:00    2017-02-15 17:03:00
68046    26130    861    2017-02-15 03:13:00    2017-02-15 03:13:00
68047    26130    659    2017-02-15 01:44:00    2017-02-15 01:44:00
68048    26131    727    2017-02-15 20:48:00    2017-02-15 20:48:00
68049    26131    842    2017-02-15 18:57:00    2017-02-15 18:57:00
68050    26131    642    2017-02-15 09:08:00    2017-02-15 09:08:00
68051    26131    593    2017-02-15 04:55:00    2017-02-15 04:55:00
68052    26131    922    2017-02-15 13:34:00    2017-02-15 13:34:00
68053    26132    465    2017-02-15 19:57:00    2017-02-15 19:57:00
68054    26132    774    2017-02-15 09:18:00    2017-02-15 09:18:00
68055    26132    557    2017-02-15 04:42:00    2017-02-15 04:42:00
68056    26132    514    2017-02-15 13:45:00    2017-02-15 13:45:00
68057    26132    625    2017-02-15 15:36:00    2017-02-15 15:36:00
68058    26133    694    2017-02-15 06:47:00    2017-02-15 06:47:00
68059    26133    928    2017-02-15 07:30:00    2017-02-15 07:30:00
68060    26133    655    2017-02-15 07:18:00    2017-02-15 07:18:00
68061    26133    653    2017-02-15 07:14:00    2017-02-15 07:14:00
68062    26133    593    2017-02-15 04:10:00    2017-02-15 04:10:00
68063    26134    900    2017-02-15 21:26:00    2017-02-15 21:26:00
68064    26134    790    2017-02-15 09:03:00    2017-02-15 09:03:00
68065    26134    643    2017-02-15 12:20:00    2017-02-15 12:20:00
68066    26134    674    2017-02-15 06:19:00    2017-02-15 06:19:00
68067    26134    939    2017-02-15 13:32:00    2017-02-15 13:32:00
68068    26135    674    2017-02-15 21:26:00    2017-02-15 21:26:00
68069    26135    648    2017-02-15 15:50:00    2017-02-15 15:50:00
68070    26135    768    2017-02-15 06:46:00    2017-02-15 06:46:00
68071    26135    663    2017-02-15 08:15:00    2017-02-15 08:15:00
68072    26135    895    2017-02-15 03:47:00    2017-02-15 03:47:00
68073    26136    646    2017-02-15 04:24:00    2017-02-15 04:24:00
68074    26136    589    2017-02-15 10:50:00    2017-02-15 10:50:00
68075    26136    553    2017-02-15 18:54:00    2017-02-15 18:54:00
68076    26136    870    2017-02-15 13:06:00    2017-02-15 13:06:00
68077    26136    774    2017-02-15 19:56:00    2017-02-15 19:56:00
68078    26137    947    2017-02-15 21:07:00    2017-02-15 21:07:00
68079    26137    772    2017-02-15 12:40:00    2017-02-15 12:40:00
68080    26137    571    2017-02-15 22:40:00    2017-02-15 22:40:00
68081    26137    532    2017-02-15 09:17:00    2017-02-15 09:17:00
68082    26137    687    2017-02-15 11:21:00    2017-02-15 11:21:00
68083    26138    532    2017-02-15 20:16:00    2017-02-15 20:16:00
68084    26138    796    2017-02-15 05:23:00    2017-02-15 05:23:00
68085    26138    702    2017-02-15 21:11:00    2017-02-15 21:11:00
68086    26138    788    2017-02-15 08:27:00    2017-02-15 08:27:00
68087    26138    824    2017-02-15 03:33:00    2017-02-15 03:33:00
68088    26139    578    2017-02-15 23:06:00    2017-02-15 23:06:00
68089    26139    718    2017-02-15 12:41:00    2017-02-15 12:41:00
68090    26139    838    2017-02-15 02:02:00    2017-02-15 02:02:00
68091    26139    561    2017-02-15 02:30:00    2017-02-15 02:30:00
68092    26139    589    2017-02-15 12:38:00    2017-02-15 12:38:00
68093    26140    961    2017-02-15 23:23:00    2017-02-15 23:23:00
68094    26140    697    2017-02-15 03:09:00    2017-02-15 03:09:00
68095    26140    591    2017-02-15 14:37:00    2017-02-15 14:37:00
68096    26140    676    2017-02-15 22:27:00    2017-02-15 22:27:00
68097    26140    580    2017-02-15 14:04:00    2017-02-15 14:04:00
68098    26141    681    2017-02-15 20:55:00    2017-02-15 20:55:00
68099    26141    719    2017-02-15 11:14:00    2017-02-15 11:14:00
68100    26141    871    2017-02-15 22:55:00    2017-02-15 22:55:00
68101    26141    644    2017-02-15 09:21:00    2017-02-15 09:21:00
68102    26141    537    2017-02-15 05:58:00    2017-02-15 05:58:00
68103    26142    752    2017-02-15 17:52:00    2017-02-15 17:52:00
68104    26142    596    2017-02-15 14:50:00    2017-02-15 14:50:00
68105    26142    938    2017-02-15 03:19:00    2017-02-15 03:19:00
68106    26142    811    2017-02-15 21:26:00    2017-02-15 21:26:00
68107    26142    716    2017-02-15 11:43:00    2017-02-15 11:43:00
68108    26143    497    2017-02-15 22:56:00    2017-02-15 22:56:00
68109    26143    801    2017-02-15 23:34:00    2017-02-15 23:34:00
68110    26143    521    2017-02-15 12:39:00    2017-02-15 12:39:00
68111    26143    519    2017-02-15 19:49:00    2017-02-15 19:49:00
68112    26143    660    2017-02-15 09:50:00    2017-02-15 09:50:00
68113    26144    528    2017-02-15 23:21:00    2017-02-15 23:21:00
68114    26144    694    2017-02-15 13:27:00    2017-02-15 13:27:00
68115    26144    554    2017-02-15 19:33:00    2017-02-15 19:33:00
68116    26144    619    2017-02-15 09:20:00    2017-02-15 09:20:00
68117    26144    793    2017-02-15 08:48:00    2017-02-15 08:48:00
68118    26145    571    2017-02-15 16:53:00    2017-02-15 16:53:00
68119    26145    671    2017-02-15 07:56:00    2017-02-15 07:56:00
68120    26145    862    2017-02-15 08:58:00    2017-02-15 08:58:00
68121    26145    681    2017-02-15 23:18:00    2017-02-15 23:18:00
68122    26145    862    2017-02-15 01:12:00    2017-02-15 01:12:00
68123    26146    958    2017-02-15 04:37:00    2017-02-15 04:37:00
68124    26146    490    2017-02-15 03:44:00    2017-02-15 03:44:00
68125    26146    859    2017-02-15 06:27:00    2017-02-15 06:27:00
68126    26146    667    2017-02-15 15:12:00    2017-02-15 15:12:00
68127    26146    890    2017-02-15 20:46:00    2017-02-15 20:46:00
68128    26147    723    2017-02-15 08:02:00    2017-02-15 08:02:00
68129    26147    839    2017-02-15 06:18:00    2017-02-15 06:18:00
68130    26147    821    2017-02-15 11:42:00    2017-02-15 11:42:00
68131    26147    670    2017-02-15 11:56:00    2017-02-15 11:56:00
68132    26147    472    2017-02-15 18:51:00    2017-02-15 18:51:00
68133    26148    918    2017-02-15 21:55:00    2017-02-15 21:55:00
68134    26148    621    2017-02-15 17:20:00    2017-02-15 17:20:00
68135    26148    604    2017-02-15 21:01:00    2017-02-15 21:01:00
68136    26148    521    2017-02-15 12:48:00    2017-02-15 12:48:00
68137    26148    694    2017-02-15 19:32:00    2017-02-15 19:32:00
68138    26149    930    2017-02-15 10:15:00    2017-02-15 10:15:00
68139    26149    903    2017-02-15 07:42:00    2017-02-15 07:42:00
68140    26149    823    2017-02-15 17:19:00    2017-02-15 17:19:00
68141    26149    961    2017-02-15 14:51:00    2017-02-15 14:51:00
68142    26149    515    2017-02-15 05:43:00    2017-02-15 05:43:00
68143    26150    825    2017-02-15 15:42:00    2017-02-15 15:42:00
68144    26150    645    2017-02-15 13:20:00    2017-02-15 13:20:00
68145    26150    507    2017-02-15 18:53:00    2017-02-15 18:53:00
68146    26150    640    2017-02-15 20:34:00    2017-02-15 20:34:00
68147    26150    575    2017-02-15 07:26:00    2017-02-15 07:26:00
68148    26151    789    2017-02-15 13:02:00    2017-02-15 13:02:00
68149    26151    701    2017-02-15 18:22:00    2017-02-15 18:22:00
68150    26151    587    2017-02-15 17:14:00    2017-02-15 17:14:00
68151    26151    713    2017-02-15 04:10:00    2017-02-15 04:10:00
68152    26151    500    2017-02-15 13:03:00    2017-02-15 13:03:00
68153    26152    875    2017-02-16 22:30:00    2017-02-16 22:30:00
68154    26152    638    2017-02-16 12:30:00    2017-02-16 12:30:00
68155    26152    855    2017-02-16 19:16:00    2017-02-16 19:16:00
68156    26152    773    2017-02-16 15:31:00    2017-02-16 15:31:00
68157    26152    956    2017-02-16 15:46:00    2017-02-16 15:46:00
68158    26153    908    2017-02-16 18:37:00    2017-02-16 18:37:00
68159    26153    565    2017-02-16 18:48:00    2017-02-16 18:48:00
68160    26153    699    2017-02-16 04:32:00    2017-02-16 04:32:00
68161    26153    783    2017-02-16 04:00:00    2017-02-16 04:00:00
68162    26153    512    2017-02-16 11:39:00    2017-02-16 11:39:00
68163    26154    865    2017-02-16 05:16:00    2017-02-16 05:16:00
68164    26154    910    2017-02-16 15:18:00    2017-02-16 15:18:00
68165    26154    469    2017-02-16 16:34:00    2017-02-16 16:34:00
68166    26154    767    2017-02-16 07:06:00    2017-02-16 07:06:00
68167    26154    546    2017-02-16 10:06:00    2017-02-16 10:06:00
68168    26155    648    2017-02-16 12:18:00    2017-02-16 12:18:00
68169    26155    795    2017-02-16 21:19:00    2017-02-16 21:19:00
68170    26155    552    2017-02-16 12:24:00    2017-02-16 12:24:00
68171    26155    478    2017-02-16 20:56:00    2017-02-16 20:56:00
68172    26155    898    2017-02-16 02:34:00    2017-02-16 02:34:00
68173    26156    794    2017-02-16 07:24:00    2017-02-16 07:24:00
68174    26156    814    2017-02-16 21:05:00    2017-02-16 21:05:00
68175    26156    488    2017-02-16 11:17:00    2017-02-16 11:17:00
68176    26156    516    2017-02-16 17:03:00    2017-02-16 17:03:00
68177    26156    914    2017-02-16 09:17:00    2017-02-16 09:17:00
68178    26157    756    2017-02-16 11:38:00    2017-02-16 11:38:00
68179    26157    718    2017-02-16 10:28:00    2017-02-16 10:28:00
68180    26157    819    2017-02-16 11:47:00    2017-02-16 11:47:00
68181    26157    832    2017-02-16 20:42:00    2017-02-16 20:42:00
68182    26157    694    2017-02-16 01:02:00    2017-02-16 01:02:00
68183    26158    541    2017-02-16 09:56:00    2017-02-16 09:56:00
68184    26158    877    2017-02-16 05:10:00    2017-02-16 05:10:00
68185    26158    628    2017-02-16 08:37:00    2017-02-16 08:37:00
68186    26158    711    2017-02-16 08:31:00    2017-02-16 08:31:00
68187    26158    495    2017-02-16 03:38:00    2017-02-16 03:38:00
68188    26159    779    2017-02-16 07:13:00    2017-02-16 07:13:00
68189    26159    571    2017-02-16 14:35:00    2017-02-16 14:35:00
68190    26159    714    2017-02-16 17:55:00    2017-02-16 17:55:00
68191    26159    671    2017-02-16 04:06:00    2017-02-16 04:06:00
68192    26159    690    2017-02-16 04:52:00    2017-02-16 04:52:00
68193    26160    894    2017-02-16 15:39:00    2017-02-16 15:39:00
68194    26160    780    2017-02-16 13:48:00    2017-02-16 13:48:00
68195    26160    878    2017-02-16 02:46:00    2017-02-16 02:46:00
68196    26160    694    2017-02-16 10:32:00    2017-02-16 10:32:00
68197    26160    764    2017-02-16 04:21:00    2017-02-16 04:21:00
68198    26161    541    2017-02-16 21:55:00    2017-02-16 21:55:00
68199    26161    949    2017-02-16 01:40:00    2017-02-16 01:40:00
68200    26161    484    2017-02-16 04:47:00    2017-02-16 04:47:00
68201    26161    669    2017-02-16 01:05:00    2017-02-16 01:05:00
68202    26161    468    2017-02-16 11:50:00    2017-02-16 11:50:00
68203    26162    510    2017-02-16 05:53:00    2017-02-16 05:53:00
68204    26162    722    2017-02-16 03:37:00    2017-02-16 03:37:00
68205    26162    541    2017-02-16 14:53:00    2017-02-16 14:53:00
68206    26162    762    2017-02-16 07:37:00    2017-02-16 07:37:00
68207    26162    528    2017-02-16 15:45:00    2017-02-16 15:45:00
68208    26163    703    2017-02-16 10:43:00    2017-02-16 10:43:00
68209    26163    906    2017-02-16 21:00:00    2017-02-16 21:00:00
68210    26163    504    2017-02-16 12:00:00    2017-02-16 12:00:00
68211    26163    710    2017-02-16 23:25:00    2017-02-16 23:25:00
68212    26163    798    2017-02-16 15:40:00    2017-02-16 15:40:00
68213    26164    666    2017-02-16 19:02:00    2017-02-16 19:02:00
68214    26164    718    2017-02-16 03:50:00    2017-02-16 03:50:00
68215    26164    568    2017-02-16 09:48:00    2017-02-16 09:48:00
68216    26164    543    2017-02-16 15:35:00    2017-02-16 15:35:00
68217    26164    531    2017-02-16 20:39:00    2017-02-16 20:39:00
68218    26165    811    2017-02-16 16:24:00    2017-02-16 16:24:00
68219    26165    482    2017-02-16 06:19:00    2017-02-16 06:19:00
68220    26165    671    2017-02-16 18:42:00    2017-02-16 18:42:00
68221    26165    871    2017-02-16 02:00:00    2017-02-16 02:00:00
68222    26165    534    2017-02-16 04:33:00    2017-02-16 04:33:00
68223    26166    806    2017-02-16 21:07:00    2017-02-16 21:07:00
68224    26166    610    2017-02-16 01:26:00    2017-02-16 01:26:00
68225    26166    721    2017-02-16 19:31:00    2017-02-16 19:31:00
68226    26166    511    2017-02-16 05:07:00    2017-02-16 05:07:00
68227    26166    542    2017-02-16 02:47:00    2017-02-16 02:47:00
68228    26167    547    2017-02-16 13:23:00    2017-02-16 13:23:00
68229    26167    920    2017-02-16 01:54:00    2017-02-16 01:54:00
68230    26167    559    2017-02-16 05:46:00    2017-02-16 05:46:00
68231    26167    682    2017-02-16 20:54:00    2017-02-16 20:54:00
68232    26167    925    2017-02-16 15:29:00    2017-02-16 15:29:00
68233    26168    893    2017-02-16 03:54:00    2017-02-16 03:54:00
68234    26168    826    2017-02-16 22:41:00    2017-02-16 22:41:00
68235    26168    931    2017-02-16 03:36:00    2017-02-16 03:36:00
68236    26168    666    2017-02-16 02:28:00    2017-02-16 02:28:00
68237    26168    573    2017-02-16 03:16:00    2017-02-16 03:16:00
68238    26169    765    2017-02-16 05:34:00    2017-02-16 05:34:00
68239    26169    548    2017-02-16 14:11:00    2017-02-16 14:11:00
68240    26169    741    2017-02-16 09:46:00    2017-02-16 09:46:00
68241    26169    569    2017-02-16 17:05:00    2017-02-16 17:05:00
68242    26169    929    2017-02-16 17:33:00    2017-02-16 17:33:00
68243    26170    886    2017-02-16 19:01:00    2017-02-16 19:01:00
68244    26170    935    2017-02-16 13:50:00    2017-02-16 13:50:00
68245    26170    636    2017-02-16 02:04:00    2017-02-16 02:04:00
68246    26170    857    2017-02-16 11:29:00    2017-02-16 11:29:00
68247    26170    687    2017-02-16 05:12:00    2017-02-16 05:12:00
68248    26171    602    2017-02-16 22:43:00    2017-02-16 22:43:00
68249    26171    709    2017-02-16 07:46:00    2017-02-16 07:46:00
68250    26171    956    2017-02-16 02:06:00    2017-02-16 02:06:00
68251    26171    821    2017-02-16 06:43:00    2017-02-16 06:43:00
68252    26171    649    2017-02-16 15:05:00    2017-02-16 15:05:00
68253    26172    802    2017-02-16 18:28:00    2017-02-16 18:28:00
68254    26172    527    2017-02-16 05:39:00    2017-02-16 05:39:00
68255    26172    707    2017-02-16 05:41:00    2017-02-16 05:41:00
68256    26172    795    2017-02-16 20:04:00    2017-02-16 20:04:00
68257    26172    843    2017-02-16 17:08:00    2017-02-16 17:08:00
68258    26173    609    2017-02-16 23:12:00    2017-02-16 23:12:00
68259    26173    708    2017-02-16 22:43:00    2017-02-16 22:43:00
68260    26173    754    2017-02-16 01:30:00    2017-02-16 01:30:00
68261    26173    753    2017-02-16 07:29:00    2017-02-16 07:29:00
68262    26173    628    2017-02-16 01:39:00    2017-02-16 01:39:00
68263    26174    922    2017-02-16 09:11:00    2017-02-16 09:11:00
68264    26174    698    2017-02-16 08:46:00    2017-02-16 08:46:00
68265    26174    906    2017-02-16 09:42:00    2017-02-16 09:42:00
68266    26174    918    2017-02-16 14:48:00    2017-02-16 14:48:00
68267    26174    514    2017-02-16 17:56:00    2017-02-16 17:56:00
68268    26175    598    2017-02-16 17:16:00    2017-02-16 17:16:00
68269    26175    508    2017-02-16 01:20:00    2017-02-16 01:20:00
68270    26175    784    2017-02-16 03:11:00    2017-02-16 03:11:00
68271    26175    626    2017-02-16 21:16:00    2017-02-16 21:16:00
68272    26175    505    2017-02-16 01:18:00    2017-02-16 01:18:00
68273    26176    871    2017-02-16 15:19:00    2017-02-16 15:19:00
68274    26176    594    2017-02-16 20:59:00    2017-02-16 20:59:00
68275    26176    578    2017-02-16 20:12:00    2017-02-16 20:12:00
68276    26176    501    2017-02-16 12:09:00    2017-02-16 12:09:00
68277    26176    593    2017-02-16 13:18:00    2017-02-16 13:18:00
68278    26177    877    2017-02-16 10:31:00    2017-02-16 10:31:00
68279    26177    800    2017-02-16 21:39:00    2017-02-16 21:39:00
68280    26177    768    2017-02-16 23:56:00    2017-02-16 23:56:00
68281    26177    886    2017-02-16 01:41:00    2017-02-16 01:41:00
68282    26177    675    2017-02-16 16:59:00    2017-02-16 16:59:00
68283    26178    713    2017-02-16 10:32:00    2017-02-16 10:32:00
68284    26178    775    2017-02-16 04:40:00    2017-02-16 04:40:00
68285    26178    783    2017-02-16 19:58:00    2017-02-16 19:58:00
68286    26178    898    2017-02-16 19:24:00    2017-02-16 19:24:00
68287    26178    472    2017-02-16 14:07:00    2017-02-16 14:07:00
68288    26179    741    2017-02-16 11:48:00    2017-02-16 11:48:00
68289    26179    521    2017-02-16 12:38:00    2017-02-16 12:38:00
68290    26179    934    2017-02-16 01:28:00    2017-02-16 01:28:00
68291    26179    820    2017-02-16 19:45:00    2017-02-16 19:45:00
68292    26179    799    2017-02-16 18:51:00    2017-02-16 18:51:00
68293    26180    788    2017-02-16 16:01:00    2017-02-16 16:01:00
68294    26180    932    2017-02-16 18:07:00    2017-02-16 18:07:00
68295    26180    481    2017-02-16 13:54:00    2017-02-16 13:54:00
68296    26180    501    2017-02-16 10:56:00    2017-02-16 10:56:00
68297    26180    846    2017-02-16 18:23:00    2017-02-16 18:23:00
68298    26181    875    2017-02-16 07:47:00    2017-02-16 07:47:00
68299    26181    552    2017-02-16 09:42:00    2017-02-16 09:42:00
68300    26181    591    2017-02-16 04:48:00    2017-02-16 04:48:00
68301    26181    808    2017-02-16 05:14:00    2017-02-16 05:14:00
68302    26181    769    2017-02-16 04:11:00    2017-02-16 04:11:00
68303    26182    921    2017-02-16 08:09:00    2017-02-16 08:09:00
68304    26182    859    2017-02-16 12:51:00    2017-02-16 12:51:00
68305    26182    812    2017-02-16 19:51:00    2017-02-16 19:51:00
68306    26182    529    2017-02-16 19:34:00    2017-02-16 19:34:00
68307    26182    871    2017-02-16 06:12:00    2017-02-16 06:12:00
68308    26183    759    2017-02-16 21:09:00    2017-02-16 21:09:00
68309    26183    563    2017-02-16 06:10:00    2017-02-16 06:10:00
68310    26183    665    2017-02-16 21:26:00    2017-02-16 21:26:00
68311    26183    615    2017-02-16 19:08:00    2017-02-16 19:08:00
68312    26183    567    2017-02-16 23:42:00    2017-02-16 23:42:00
68313    26184    924    2017-02-16 15:11:00    2017-02-16 15:11:00
68314    26184    845    2017-02-16 12:13:00    2017-02-16 12:13:00
68315    26184    502    2017-02-16 18:46:00    2017-02-16 18:46:00
68316    26184    526    2017-02-16 22:58:00    2017-02-16 22:58:00
68317    26184    734    2017-02-16 13:46:00    2017-02-16 13:46:00
68318    26185    692    2017-02-16 15:00:00    2017-02-16 15:00:00
68319    26185    691    2017-02-16 18:44:00    2017-02-16 18:44:00
68320    26185    606    2017-02-16 06:08:00    2017-02-16 06:08:00
68321    26185    901    2017-02-16 15:02:00    2017-02-16 15:02:00
68322    26185    919    2017-02-16 05:58:00    2017-02-16 05:58:00
68323    26186    939    2017-02-16 15:53:00    2017-02-16 15:53:00
68324    26186    623    2017-02-16 20:06:00    2017-02-16 20:06:00
68325    26186    692    2017-02-16 22:04:00    2017-02-16 22:04:00
68326    26186    672    2017-02-16 02:13:00    2017-02-16 02:13:00
68327    26186    788    2017-02-16 11:40:00    2017-02-16 11:40:00
68328    26187    474    2017-02-16 18:05:00    2017-02-16 18:05:00
68329    26187    928    2017-02-16 20:33:00    2017-02-16 20:33:00
68330    26187    799    2017-02-16 06:05:00    2017-02-16 06:05:00
68331    26187    642    2017-02-16 03:54:00    2017-02-16 03:54:00
68332    26187    593    2017-02-16 15:22:00    2017-02-16 15:22:00
68333    26188    488    2017-02-16 01:49:00    2017-02-16 01:49:00
68334    26188    512    2017-02-16 04:08:00    2017-02-16 04:08:00
68335    26188    645    2017-02-16 16:13:00    2017-02-16 16:13:00
68336    26188    517    2017-02-16 07:15:00    2017-02-16 07:15:00
68337    26188    904    2017-02-16 13:52:00    2017-02-16 13:52:00
68338    26189    474    2017-02-16 07:43:00    2017-02-16 07:43:00
68339    26189    578    2017-02-16 05:45:00    2017-02-16 05:45:00
68340    26189    952    2017-02-16 04:00:00    2017-02-16 04:00:00
68341    26189    862    2017-02-16 22:06:00    2017-02-16 22:06:00
68342    26189    619    2017-02-16 15:24:00    2017-02-16 15:24:00
68343    26190    733    2017-02-16 12:11:00    2017-02-16 12:11:00
68344    26190    931    2017-02-16 22:52:00    2017-02-16 22:52:00
68345    26190    763    2017-02-16 16:14:00    2017-02-16 16:14:00
68346    26190    943    2017-02-16 07:58:00    2017-02-16 07:58:00
68347    26190    476    2017-02-16 03:07:00    2017-02-16 03:07:00
68348    26191    600    2017-02-16 23:27:00    2017-02-16 23:27:00
68349    26191    781    2017-02-16 15:10:00    2017-02-16 15:10:00
68350    26191    506    2017-02-16 13:13:00    2017-02-16 13:13:00
68351    26191    641    2017-02-16 23:37:00    2017-02-16 23:37:00
68352    26191    807    2017-02-16 17:53:00    2017-02-16 17:53:00
68353    26192    489    2017-02-16 10:29:00    2017-02-16 10:29:00
68354    26192    931    2017-02-16 19:53:00    2017-02-16 19:53:00
68355    26192    725    2017-02-16 03:25:00    2017-02-16 03:25:00
68356    26192    728    2017-02-16 12:51:00    2017-02-16 12:51:00
68357    26192    646    2017-02-16 16:06:00    2017-02-16 16:06:00
68358    26193    736    2017-02-16 06:54:00    2017-02-16 06:54:00
68359    26193    600    2017-02-16 23:25:00    2017-02-16 23:25:00
68360    26193    508    2017-02-16 18:52:00    2017-02-16 18:52:00
68361    26193    864    2017-02-16 02:50:00    2017-02-16 02:50:00
68362    26193    646    2017-02-16 16:50:00    2017-02-16 16:50:00
68363    26194    849    2017-02-16 03:12:00    2017-02-16 03:12:00
68364    26194    887    2017-02-16 10:37:00    2017-02-16 10:37:00
68365    26194    914    2017-02-16 03:07:00    2017-02-16 03:07:00
68366    26194    892    2017-02-16 10:39:00    2017-02-16 10:39:00
68367    26194    471    2017-02-16 11:10:00    2017-02-16 11:10:00
68368    26195    945    2017-02-16 21:32:00    2017-02-16 21:32:00
68369    26195    947    2017-02-16 14:45:00    2017-02-16 14:45:00
68370    26195    535    2017-02-16 03:30:00    2017-02-16 03:30:00
68371    26195    897    2017-02-16 08:58:00    2017-02-16 08:58:00
68372    26195    946    2017-02-16 17:31:00    2017-02-16 17:31:00
68373    26196    849    2017-02-16 17:49:00    2017-02-16 17:49:00
68374    26196    578    2017-02-16 16:53:00    2017-02-16 16:53:00
68375    26196    522    2017-02-16 01:23:00    2017-02-16 01:23:00
68376    26196    621    2017-02-16 17:34:00    2017-02-16 17:34:00
68377    26196    813    2017-02-16 17:14:00    2017-02-16 17:14:00
68378    26197    734    2017-02-16 14:19:00    2017-02-16 14:19:00
68379    26197    508    2017-02-16 04:28:00    2017-02-16 04:28:00
68380    26197    844    2017-02-16 16:53:00    2017-02-16 16:53:00
68381    26197    670    2017-02-16 22:05:00    2017-02-16 22:05:00
68382    26197    809    2017-02-16 11:47:00    2017-02-16 11:47:00
68383    26198    530    2017-02-16 23:28:00    2017-02-16 23:28:00
68384    26198    924    2017-02-16 21:41:00    2017-02-16 21:41:00
68385    26198    924    2017-02-16 07:15:00    2017-02-16 07:15:00
68386    26198    567    2017-02-16 04:35:00    2017-02-16 04:35:00
68387    26198    768    2017-02-16 16:52:00    2017-02-16 16:52:00
68388    26199    679    2017-02-16 22:30:00    2017-02-16 22:30:00
68389    26199    602    2017-02-16 21:55:00    2017-02-16 21:55:00
68390    26199    470    2017-02-16 18:17:00    2017-02-16 18:17:00
68391    26199    655    2017-02-16 05:19:00    2017-02-16 05:19:00
68392    26199    784    2017-02-16 05:38:00    2017-02-16 05:38:00
68393    26200    501    2017-02-16 01:05:00    2017-02-16 01:05:00
68394    26200    649    2017-02-16 19:03:00    2017-02-16 19:03:00
68395    26200    818    2017-02-16 15:19:00    2017-02-16 15:19:00
68396    26200    946    2017-02-16 23:35:00    2017-02-16 23:35:00
68397    26200    532    2017-02-16 15:02:00    2017-02-16 15:02:00
68398    26201    919    2017-02-16 06:07:00    2017-02-16 06:07:00
68399    26201    551    2017-02-16 02:00:00    2017-02-16 02:00:00
68400    26201    489    2017-02-16 01:25:00    2017-02-16 01:25:00
68401    26201    924    2017-02-16 23:13:00    2017-02-16 23:13:00
68402    26201    699    2017-02-16 14:56:00    2017-02-16 14:56:00
68403    26202    494    2017-02-16 02:54:00    2017-02-16 02:54:00
68404    26202    656    2017-02-16 23:21:00    2017-02-16 23:21:00
68405    26202    776    2017-02-16 22:14:00    2017-02-16 22:14:00
68406    26202    687    2017-02-16 22:54:00    2017-02-16 22:54:00
68407    26202    761    2017-02-16 04:27:00    2017-02-16 04:27:00
68408    26203    606    2017-02-16 20:47:00    2017-02-16 20:47:00
68409    26203    797    2017-02-16 18:02:00    2017-02-16 18:02:00
68410    26203    742    2017-02-16 02:08:00    2017-02-16 02:08:00
68411    26203    947    2017-02-16 07:14:00    2017-02-16 07:14:00
68412    26203    941    2017-02-16 20:00:00    2017-02-16 20:00:00
68413    26204    734    2017-02-16 20:34:00    2017-02-16 20:34:00
68414    26204    753    2017-02-16 04:14:00    2017-02-16 04:14:00
68415    26204    759    2017-02-16 12:41:00    2017-02-16 12:41:00
68416    26204    932    2017-02-16 14:27:00    2017-02-16 14:27:00
68417    26204    607    2017-02-16 11:01:00    2017-02-16 11:01:00
68418    26205    688    2017-02-16 06:26:00    2017-02-16 06:26:00
68419    26205    942    2017-02-16 06:05:00    2017-02-16 06:05:00
68420    26205    875    2017-02-16 16:24:00    2017-02-16 16:24:00
68421    26205    851    2017-02-16 02:52:00    2017-02-16 02:52:00
68422    26205    931    2017-02-16 18:51:00    2017-02-16 18:51:00
68423    26206    735    2017-02-16 01:21:00    2017-02-16 01:21:00
68424    26206    854    2017-02-16 22:56:00    2017-02-16 22:56:00
68425    26206    654    2017-02-16 14:42:00    2017-02-16 14:42:00
68426    26206    599    2017-02-16 23:23:00    2017-02-16 23:23:00
68427    26206    546    2017-02-16 07:35:00    2017-02-16 07:35:00
68428    26207    574    2017-02-16 19:21:00    2017-02-16 19:21:00
68429    26207    904    2017-02-16 23:13:00    2017-02-16 23:13:00
68430    26207    547    2017-02-16 19:29:00    2017-02-16 19:29:00
68431    26207    926    2017-02-16 22:26:00    2017-02-16 22:26:00
68432    26207    887    2017-02-16 10:56:00    2017-02-16 10:56:00
68433    26208    801    2017-02-16 13:32:00    2017-02-16 13:32:00
68434    26208    550    2017-02-16 11:31:00    2017-02-16 11:31:00
68435    26208    717    2017-02-16 21:57:00    2017-02-16 21:57:00
68436    26208    634    2017-02-16 04:09:00    2017-02-16 04:09:00
68437    26208    785    2017-02-16 19:14:00    2017-02-16 19:14:00
68438    26209    782    2017-02-16 06:35:00    2017-02-16 06:35:00
68439    26209    674    2017-02-16 22:16:00    2017-02-16 22:16:00
68440    26209    513    2017-02-16 20:06:00    2017-02-16 20:06:00
68441    26209    638    2017-02-16 06:29:00    2017-02-16 06:29:00
68442    26209    720    2017-02-16 01:33:00    2017-02-16 01:33:00
68443    26210    744    2017-02-16 07:23:00    2017-02-16 07:23:00
68444    26210    525    2017-02-16 02:49:00    2017-02-16 02:49:00
68445    26210    613    2017-02-16 02:06:00    2017-02-16 02:06:00
68446    26210    530    2017-02-16 02:37:00    2017-02-16 02:37:00
68447    26210    770    2017-02-16 03:03:00    2017-02-16 03:03:00
68448    26211    859    2017-02-16 02:53:00    2017-02-16 02:53:00
68449    26211    626    2017-02-16 05:34:00    2017-02-16 05:34:00
68450    26211    873    2017-02-16 18:00:00    2017-02-16 18:00:00
68451    26211    809    2017-02-16 07:47:00    2017-02-16 07:47:00
68452    26211    828    2017-02-16 02:41:00    2017-02-16 02:41:00
68453    26212    670    2017-02-16 05:43:00    2017-02-16 05:43:00
68454    26212    586    2017-02-16 11:55:00    2017-02-16 11:55:00
68455    26212    670    2017-02-16 07:56:00    2017-02-16 07:56:00
68456    26212    524    2017-02-16 14:06:00    2017-02-16 14:06:00
68457    26212    553    2017-02-16 09:24:00    2017-02-16 09:24:00
68458    26213    520    2017-02-16 04:55:00    2017-02-16 04:55:00
68459    26213    623    2017-02-16 19:33:00    2017-02-16 19:33:00
68460    26213    466    2017-02-16 23:52:00    2017-02-16 23:52:00
68461    26213    711    2017-02-16 06:38:00    2017-02-16 06:38:00
68462    26213    719    2017-02-16 07:37:00    2017-02-16 07:37:00
68463    26214    834    2017-02-16 08:01:00    2017-02-16 08:01:00
68464    26214    518    2017-02-16 17:18:00    2017-02-16 17:18:00
68465    26214    949    2017-02-16 11:02:00    2017-02-16 11:02:00
68466    26214    717    2017-02-16 09:46:00    2017-02-16 09:46:00
68467    26214    464    2017-02-16 14:52:00    2017-02-16 14:52:00
68468    26215    466    2017-02-16 03:20:00    2017-02-16 03:20:00
68469    26215    618    2017-02-16 01:57:00    2017-02-16 01:57:00
68470    26215    940    2017-02-16 06:21:00    2017-02-16 06:21:00
68471    26215    911    2017-02-16 09:23:00    2017-02-16 09:23:00
68472    26215    860    2017-02-16 01:51:00    2017-02-16 01:51:00
68473    26216    528    2017-02-17 14:53:00    2017-02-17 14:53:00
68474    26216    732    2017-02-17 16:38:00    2017-02-17 16:38:00
68475    26216    529    2017-02-17 02:53:00    2017-02-17 02:53:00
68476    26216    568    2017-02-17 10:59:00    2017-02-17 10:59:00
68477    26216    591    2017-02-17 21:31:00    2017-02-17 21:31:00
68478    26217    779    2017-02-17 23:35:00    2017-02-17 23:35:00
68479    26217    702    2017-02-17 12:48:00    2017-02-17 12:48:00
68480    26217    634    2017-02-17 15:59:00    2017-02-17 15:59:00
68481    26217    531    2017-02-17 09:25:00    2017-02-17 09:25:00
68482    26217    843    2017-02-17 19:56:00    2017-02-17 19:56:00
68483    26218    665    2017-02-17 16:05:00    2017-02-17 16:05:00
68484    26218    606    2017-02-17 18:29:00    2017-02-17 18:29:00
68485    26218    642    2017-02-17 04:37:00    2017-02-17 04:37:00
68486    26218    667    2017-02-17 12:18:00    2017-02-17 12:18:00
68487    26218    750    2017-02-17 04:37:00    2017-02-17 04:37:00
68488    26219    892    2017-02-17 03:08:00    2017-02-17 03:08:00
68489    26219    640    2017-02-17 16:40:00    2017-02-17 16:40:00
68490    26219    844    2017-02-17 03:56:00    2017-02-17 03:56:00
68491    26219    465    2017-02-17 14:42:00    2017-02-17 14:42:00
68492    26219    723    2017-02-17 16:27:00    2017-02-17 16:27:00
68493    26220    937    2017-02-17 22:51:00    2017-02-17 22:51:00
68494    26220    658    2017-02-17 23:22:00    2017-02-17 23:22:00
68495    26220    854    2017-02-17 11:59:00    2017-02-17 11:59:00
68496    26220    925    2017-02-17 08:23:00    2017-02-17 08:23:00
68497    26220    610    2017-02-17 05:59:00    2017-02-17 05:59:00
68498    26221    729    2017-02-17 10:22:00    2017-02-17 10:22:00
68499    26221    796    2017-02-17 06:23:00    2017-02-17 06:23:00
68500    26221    600    2017-02-17 07:49:00    2017-02-17 07:49:00
68501    26221    909    2017-02-17 14:17:00    2017-02-17 14:17:00
68502    26221    932    2017-02-17 03:18:00    2017-02-17 03:18:00
68503    26222    920    2017-02-17 06:28:00    2017-02-17 06:28:00
68504    26222    634    2017-02-17 14:36:00    2017-02-17 14:36:00
68505    26222    611    2017-02-17 08:35:00    2017-02-17 08:35:00
68506    26222    600    2017-02-17 06:25:00    2017-02-17 06:25:00
68507    26222    494    2017-02-17 02:47:00    2017-02-17 02:47:00
68508    26223    507    2017-02-17 15:00:00    2017-02-17 15:00:00
68509    26223    671    2017-02-17 14:37:00    2017-02-17 14:37:00
68510    26223    639    2017-02-17 19:53:00    2017-02-17 19:53:00
68511    26223    902    2017-02-17 08:13:00    2017-02-17 08:13:00
68512    26223    848    2017-02-17 09:34:00    2017-02-17 09:34:00
68513    26224    759    2017-02-17 13:37:00    2017-02-17 13:37:00
68514    26224    638    2017-02-17 02:48:00    2017-02-17 02:48:00
68515    26224    567    2017-02-17 09:48:00    2017-02-17 09:48:00
68516    26224    877    2017-02-17 03:05:00    2017-02-17 03:05:00
68517    26224    957    2017-02-17 02:09:00    2017-02-17 02:09:00
68518    26225    780    2017-02-17 16:20:00    2017-02-17 16:20:00
68519    26225    699    2017-02-17 03:53:00    2017-02-17 03:53:00
68520    26225    629    2017-02-17 02:23:00    2017-02-17 02:23:00
68521    26225    543    2017-02-17 17:14:00    2017-02-17 17:14:00
68522    26225    768    2017-02-17 16:37:00    2017-02-17 16:37:00
68523    26226    843    2017-02-17 20:15:00    2017-02-17 20:15:00
68524    26226    659    2017-02-17 12:39:00    2017-02-17 12:39:00
68525    26226    723    2017-02-17 13:11:00    2017-02-17 13:11:00
68526    26226    888    2017-02-17 10:14:00    2017-02-17 10:14:00
68527    26226    501    2017-02-17 15:36:00    2017-02-17 15:36:00
68528    26227    888    2017-02-17 21:59:00    2017-02-17 21:59:00
68529    26227    780    2017-02-17 08:21:00    2017-02-17 08:21:00
68530    26227    568    2017-02-17 01:09:00    2017-02-17 01:09:00
68531    26227    858    2017-02-17 12:25:00    2017-02-17 12:25:00
68532    26227    505    2017-02-17 22:27:00    2017-02-17 22:27:00
68533    26228    870    2017-02-17 19:33:00    2017-02-17 19:33:00
68534    26228    522    2017-02-17 23:08:00    2017-02-17 23:08:00
68535    26228    899    2017-02-17 18:09:00    2017-02-17 18:09:00
68536    26228    912    2017-02-17 19:46:00    2017-02-17 19:46:00
68537    26228    555    2017-02-17 02:14:00    2017-02-17 02:14:00
68538    26229    695    2017-02-17 15:28:00    2017-02-17 15:28:00
68539    26229    605    2017-02-17 21:00:00    2017-02-17 21:00:00
68540    26229    883    2017-02-17 03:46:00    2017-02-17 03:46:00
68541    26229    505    2017-02-17 21:02:00    2017-02-17 21:02:00
68542    26229    868    2017-02-17 10:35:00    2017-02-17 10:35:00
68543    26230    553    2017-02-17 17:41:00    2017-02-17 17:41:00
68544    26230    545    2017-02-17 23:01:00    2017-02-17 23:01:00
68545    26230    696    2017-02-17 11:01:00    2017-02-17 11:01:00
68546    26230    832    2017-02-17 13:12:00    2017-02-17 13:12:00
68547    26230    808    2017-02-17 20:22:00    2017-02-17 20:22:00
68548    26231    628    2017-02-17 07:02:00    2017-02-17 07:02:00
68549    26231    513    2017-02-17 17:38:00    2017-02-17 17:38:00
68550    26231    709    2017-02-17 09:30:00    2017-02-17 09:30:00
68551    26231    677    2017-02-17 20:46:00    2017-02-17 20:46:00
68552    26231    553    2017-02-17 18:16:00    2017-02-17 18:16:00
68553    26232    909    2017-02-17 18:06:00    2017-02-17 18:06:00
68554    26232    583    2017-02-17 13:35:00    2017-02-17 13:35:00
68555    26232    837    2017-02-17 09:20:00    2017-02-17 09:20:00
68556    26232    855    2017-02-17 23:01:00    2017-02-17 23:01:00
68557    26232    884    2017-02-17 01:32:00    2017-02-17 01:32:00
68558    26233    762    2017-02-17 16:11:00    2017-02-17 16:11:00
68559    26233    599    2017-02-17 16:27:00    2017-02-17 16:27:00
68560    26233    792    2017-02-17 18:37:00    2017-02-17 18:37:00
68561    26233    661    2017-02-17 03:21:00    2017-02-17 03:21:00
68562    26233    646    2017-02-17 17:14:00    2017-02-17 17:14:00
68563    26234    900    2017-02-17 19:53:00    2017-02-17 19:53:00
68564    26234    809    2017-02-17 04:28:00    2017-02-17 04:28:00
68565    26234    488    2017-02-17 22:46:00    2017-02-17 22:46:00
68566    26234    913    2017-02-17 18:33:00    2017-02-17 18:33:00
68567    26234    552    2017-02-17 09:05:00    2017-02-17 09:05:00
68568    26235    671    2017-02-17 17:23:00    2017-02-17 17:23:00
68569    26235    835    2017-02-17 11:21:00    2017-02-17 11:21:00
68570    26235    732    2017-02-17 05:24:00    2017-02-17 05:24:00
68571    26235    541    2017-02-17 03:45:00    2017-02-17 03:45:00
68572    26235    626    2017-02-17 18:05:00    2017-02-17 18:05:00
68573    26236    888    2017-02-17 05:26:00    2017-02-17 05:26:00
68574    26236    941    2017-02-17 14:01:00    2017-02-17 14:01:00
68575    26236    760    2017-02-17 19:06:00    2017-02-17 19:06:00
68576    26236    515    2017-02-17 17:41:00    2017-02-17 17:41:00
68577    26236    619    2017-02-17 02:01:00    2017-02-17 02:01:00
68578    26237    903    2017-02-17 19:35:00    2017-02-17 19:35:00
68579    26237    883    2017-02-17 02:33:00    2017-02-17 02:33:00
68580    26237    677    2017-02-17 01:33:00    2017-02-17 01:33:00
68581    26237    806    2017-02-17 18:08:00    2017-02-17 18:08:00
68582    26237    922    2017-02-17 01:11:00    2017-02-17 01:11:00
68583    26238    835    2017-02-17 11:48:00    2017-02-17 11:48:00
68584    26238    929    2017-02-17 14:22:00    2017-02-17 14:22:00
68585    26238    887    2017-02-17 18:41:00    2017-02-17 18:41:00
68586    26238    692    2017-02-17 04:19:00    2017-02-17 04:19:00
68587    26238    830    2017-02-17 08:46:00    2017-02-17 08:46:00
68588    26239    826    2017-02-17 09:05:00    2017-02-17 09:05:00
68589    26239    858    2017-02-17 14:56:00    2017-02-17 14:56:00
68590    26239    555    2017-02-17 08:17:00    2017-02-17 08:17:00
68591    26239    702    2017-02-17 11:19:00    2017-02-17 11:19:00
68592    26239    674    2017-02-17 17:38:00    2017-02-17 17:38:00
68593    26240    847    2017-02-17 08:28:00    2017-02-17 08:28:00
68594    26240    891    2017-02-17 03:03:00    2017-02-17 03:03:00
68595    26240    836    2017-02-17 18:16:00    2017-02-17 18:16:00
68596    26240    520    2017-02-17 08:26:00    2017-02-17 08:26:00
68597    26240    813    2017-02-17 01:42:00    2017-02-17 01:42:00
68598    26241    566    2017-02-17 01:40:00    2017-02-17 01:40:00
68599    26241    856    2017-02-17 14:12:00    2017-02-17 14:12:00
68600    26241    626    2017-02-17 17:45:00    2017-02-17 17:45:00
68601    26241    570    2017-02-17 09:13:00    2017-02-17 09:13:00
68602    26241    888    2017-02-17 04:34:00    2017-02-17 04:34:00
68603    26242    516    2017-02-17 12:34:00    2017-02-17 12:34:00
68604    26242    658    2017-02-17 19:22:00    2017-02-17 19:22:00
68605    26242    554    2017-02-17 18:35:00    2017-02-17 18:35:00
68606    26242    783    2017-02-17 21:03:00    2017-02-17 21:03:00
68607    26242    738    2017-02-17 14:54:00    2017-02-17 14:54:00
68608    26243    508    2017-02-17 11:07:00    2017-02-17 11:07:00
68609    26243    764    2017-02-17 03:53:00    2017-02-17 03:53:00
68610    26243    686    2017-02-17 10:49:00    2017-02-17 10:49:00
68611    26243    910    2017-02-17 20:57:00    2017-02-17 20:57:00
68612    26243    681    2017-02-17 12:19:00    2017-02-17 12:19:00
68613    26244    490    2017-02-18 13:03:00    2017-02-18 13:03:00
68614    26244    780    2017-02-18 17:59:00    2017-02-18 17:59:00
68615    26244    905    2017-02-18 07:11:00    2017-02-18 07:11:00
68616    26244    678    2017-02-18 11:32:00    2017-02-18 11:32:00
68617    26244    475    2017-02-18 04:20:00    2017-02-18 04:20:00
68618    26245    539    2017-02-18 04:52:00    2017-02-18 04:52:00
68619    26245    842    2017-02-18 03:58:00    2017-02-18 03:58:00
68620    26245    817    2017-02-18 04:48:00    2017-02-18 04:48:00
68621    26245    916    2017-02-18 04:04:00    2017-02-18 04:04:00
68622    26245    527    2017-02-18 20:52:00    2017-02-18 20:52:00
68623    26246    950    2017-02-18 15:37:00    2017-02-18 15:37:00
68624    26246    728    2017-02-18 12:17:00    2017-02-18 12:17:00
68625    26246    935    2017-02-18 17:51:00    2017-02-18 17:51:00
68626    26246    644    2017-02-18 15:48:00    2017-02-18 15:48:00
68627    26246    742    2017-02-18 01:02:00    2017-02-18 01:02:00
68628    26247    565    2017-02-18 18:17:00    2017-02-18 18:17:00
68629    26247    862    2017-02-18 16:22:00    2017-02-18 16:22:00
68630    26247    712    2017-02-18 11:31:00    2017-02-18 11:31:00
68631    26247    892    2017-02-18 12:39:00    2017-02-18 12:39:00
68632    26247    512    2017-02-18 16:43:00    2017-02-18 16:43:00
68633    26248    957    2017-02-18 17:06:00    2017-02-18 17:06:00
68634    26248    552    2017-02-18 08:53:00    2017-02-18 08:53:00
68635    26248    747    2017-02-18 15:13:00    2017-02-18 15:13:00
68636    26248    886    2017-02-18 18:12:00    2017-02-18 18:12:00
68637    26248    849    2017-02-18 05:29:00    2017-02-18 05:29:00
68638    26249    606    2017-02-18 02:06:00    2017-02-18 02:06:00
68639    26249    605    2017-02-18 05:55:00    2017-02-18 05:55:00
68640    26249    680    2017-02-18 09:56:00    2017-02-18 09:56:00
68641    26249    797    2017-02-18 15:48:00    2017-02-18 15:48:00
68642    26249    923    2017-02-18 18:48:00    2017-02-18 18:48:00
68643    26250    497    2017-02-18 05:27:00    2017-02-18 05:27:00
68644    26250    693    2017-02-18 01:09:00    2017-02-18 01:09:00
68645    26250    927    2017-02-18 06:02:00    2017-02-18 06:02:00
68646    26250    678    2017-02-18 16:15:00    2017-02-18 16:15:00
68647    26250    613    2017-02-18 13:42:00    2017-02-18 13:42:00
68648    26251    747    2017-02-18 03:10:00    2017-02-18 03:10:00
68649    26251    707    2017-02-18 04:02:00    2017-02-18 04:02:00
68650    26251    662    2017-02-18 18:35:00    2017-02-18 18:35:00
68651    26251    468    2017-02-18 09:17:00    2017-02-18 09:17:00
68652    26251    888    2017-02-18 01:23:00    2017-02-18 01:23:00
68653    26252    646    2017-02-18 20:37:00    2017-02-18 20:37:00
68654    26252    935    2017-02-18 03:24:00    2017-02-18 03:24:00
68655    26252    848    2017-02-18 08:31:00    2017-02-18 08:31:00
68656    26252    722    2017-02-18 15:34:00    2017-02-18 15:34:00
68657    26252    796    2017-02-18 06:45:00    2017-02-18 06:45:00
68658    26253    486    2017-02-18 17:05:00    2017-02-18 17:05:00
68659    26253    878    2017-02-18 14:01:00    2017-02-18 14:01:00
68660    26253    583    2017-02-18 09:55:00    2017-02-18 09:55:00
68661    26253    631    2017-02-18 14:09:00    2017-02-18 14:09:00
68662    26253    590    2017-02-18 12:56:00    2017-02-18 12:56:00
68663    26254    835    2017-02-18 15:32:00    2017-02-18 15:32:00
68664    26254    579    2017-02-18 17:15:00    2017-02-18 17:15:00
68665    26254    558    2017-02-18 10:09:00    2017-02-18 10:09:00
68666    26254    938    2017-02-18 09:35:00    2017-02-18 09:35:00
68667    26254    867    2017-02-18 13:41:00    2017-02-18 13:41:00
68668    26255    576    2017-02-18 21:24:00    2017-02-18 21:24:00
68669    26255    538    2017-02-18 13:24:00    2017-02-18 13:24:00
68670    26255    918    2017-02-18 23:59:00    2017-02-18 23:59:00
68671    26255    885    2017-02-18 02:39:00    2017-02-18 02:39:00
68672    26255    924    2017-02-18 08:00:00    2017-02-18 08:00:00
68673    26256    571    2017-02-18 02:50:00    2017-02-18 02:50:00
68674    26256    717    2017-02-18 02:10:00    2017-02-18 02:10:00
68675    26256    561    2017-02-18 01:37:00    2017-02-18 01:37:00
68676    26256    728    2017-02-18 16:09:00    2017-02-18 16:09:00
68677    26256    789    2017-02-18 18:34:00    2017-02-18 18:34:00
68678    26257    677    2017-02-18 22:34:00    2017-02-18 22:34:00
68679    26257    710    2017-02-18 06:48:00    2017-02-18 06:48:00
68680    26257    799    2017-02-18 17:38:00    2017-02-18 17:38:00
68681    26257    790    2017-02-18 14:47:00    2017-02-18 14:47:00
68682    26257    724    2017-02-18 12:54:00    2017-02-18 12:54:00
68683    26258    656    2017-02-18 19:12:00    2017-02-18 19:12:00
68684    26258    701    2017-02-18 02:18:00    2017-02-18 02:18:00
68685    26258    508    2017-02-18 18:55:00    2017-02-18 18:55:00
68686    26258    535    2017-02-18 22:43:00    2017-02-18 22:43:00
68687    26258    631    2017-02-18 14:39:00    2017-02-18 14:39:00
68688    26259    615    2017-02-18 17:27:00    2017-02-18 17:27:00
68689    26259    611    2017-02-18 17:37:00    2017-02-18 17:37:00
68690    26259    900    2017-02-18 01:37:00    2017-02-18 01:37:00
68691    26259    593    2017-02-18 21:05:00    2017-02-18 21:05:00
68692    26259    542    2017-02-18 03:40:00    2017-02-18 03:40:00
68693    26260    781    2017-02-18 01:08:00    2017-02-18 01:08:00
68694    26260    721    2017-02-18 05:21:00    2017-02-18 05:21:00
68695    26260    615    2017-02-18 12:47:00    2017-02-18 12:47:00
68696    26260    469    2017-02-18 12:12:00    2017-02-18 12:12:00
68697    26260    919    2017-02-18 01:34:00    2017-02-18 01:34:00
68698    26261    499    2017-02-18 18:55:00    2017-02-18 18:55:00
68699    26261    899    2017-02-18 02:17:00    2017-02-18 02:17:00
68700    26261    562    2017-02-18 11:18:00    2017-02-18 11:18:00
68701    26261    672    2017-02-18 06:04:00    2017-02-18 06:04:00
68702    26261    915    2017-02-18 09:54:00    2017-02-18 09:54:00
68703    26262    486    2017-02-18 14:30:00    2017-02-18 14:30:00
68704    26262    617    2017-02-18 10:50:00    2017-02-18 10:50:00
68705    26262    593    2017-02-18 23:41:00    2017-02-18 23:41:00
68706    26262    496    2017-02-18 08:32:00    2017-02-18 08:32:00
68707    26262    503    2017-02-18 20:57:00    2017-02-18 20:57:00
68708    26263    875    2017-02-18 18:43:00    2017-02-18 18:43:00
68709    26263    594    2017-02-18 23:27:00    2017-02-18 23:27:00
68710    26263    595    2017-02-18 10:27:00    2017-02-18 10:27:00
68711    26263    911    2017-02-18 22:47:00    2017-02-18 22:47:00
68712    26263    923    2017-02-18 03:29:00    2017-02-18 03:29:00
68713    26264    670    2017-02-18 21:15:00    2017-02-18 21:15:00
68714    26264    924    2017-02-18 08:38:00    2017-02-18 08:38:00
68715    26264    914    2017-02-18 09:23:00    2017-02-18 09:23:00
68716    26264    682    2017-02-18 09:51:00    2017-02-18 09:51:00
68717    26264    922    2017-02-18 01:16:00    2017-02-18 01:16:00
68718    26265    551    2017-02-18 14:26:00    2017-02-18 14:26:00
68719    26265    798    2017-02-18 05:20:00    2017-02-18 05:20:00
68720    26265    821    2017-02-18 16:43:00    2017-02-18 16:43:00
68721    26265    598    2017-02-18 19:02:00    2017-02-18 19:02:00
68722    26265    594    2017-02-18 08:46:00    2017-02-18 08:46:00
68723    26266    951    2017-02-18 22:45:00    2017-02-18 22:45:00
68724    26266    723    2017-02-18 23:38:00    2017-02-18 23:38:00
68725    26266    565    2017-02-18 16:24:00    2017-02-18 16:24:00
68726    26266    856    2017-02-18 14:11:00    2017-02-18 14:11:00
68727    26266    672    2017-02-18 02:34:00    2017-02-18 02:34:00
68728    26267    752    2017-02-18 16:17:00    2017-02-18 16:17:00
68729    26267    893    2017-02-18 14:16:00    2017-02-18 14:16:00
68730    26267    543    2017-02-18 03:44:00    2017-02-18 03:44:00
68731    26267    795    2017-02-18 05:32:00    2017-02-18 05:32:00
68732    26267    500    2017-02-18 22:04:00    2017-02-18 22:04:00
68733    26268    638    2017-02-18 15:52:00    2017-02-18 15:52:00
68734    26268    931    2017-02-18 12:41:00    2017-02-18 12:41:00
68735    26268    738    2017-02-18 15:27:00    2017-02-18 15:27:00
68736    26268    756    2017-02-18 21:30:00    2017-02-18 21:30:00
68737    26268    465    2017-02-18 18:46:00    2017-02-18 18:46:00
68738    26269    882    2017-02-18 15:57:00    2017-02-18 15:57:00
68739    26269    595    2017-02-18 22:13:00    2017-02-18 22:13:00
68740    26269    762    2017-02-18 08:23:00    2017-02-18 08:23:00
68741    26269    613    2017-02-18 19:00:00    2017-02-18 19:00:00
68742    26269    615    2017-02-18 12:59:00    2017-02-18 12:59:00
68743    26270    782    2017-02-18 20:46:00    2017-02-18 20:46:00
68744    26270    514    2017-02-18 20:27:00    2017-02-18 20:27:00
68745    26270    728    2017-02-18 16:19:00    2017-02-18 16:19:00
68746    26270    536    2017-02-18 02:00:00    2017-02-18 02:00:00
68747    26270    515    2017-02-18 06:10:00    2017-02-18 06:10:00
68748    26271    889    2017-02-18 23:57:00    2017-02-18 23:57:00
68749    26271    935    2017-02-18 15:23:00    2017-02-18 15:23:00
68750    26271    930    2017-02-18 03:59:00    2017-02-18 03:59:00
68751    26271    495    2017-02-18 09:55:00    2017-02-18 09:55:00
68752    26271    641    2017-02-18 18:58:00    2017-02-18 18:58:00
68753    26272    558    2017-02-18 21:23:00    2017-02-18 21:23:00
68754    26272    680    2017-02-18 13:19:00    2017-02-18 13:19:00
68755    26272    671    2017-02-18 01:10:00    2017-02-18 01:10:00
68756    26272    474    2017-02-18 04:15:00    2017-02-18 04:15:00
68757    26272    515    2017-02-18 04:57:00    2017-02-18 04:57:00
68758    26273    807    2017-02-18 17:50:00    2017-02-18 17:50:00
68759    26273    751    2017-02-18 04:34:00    2017-02-18 04:34:00
68760    26273    605    2017-02-18 20:03:00    2017-02-18 20:03:00
68761    26273    612    2017-02-18 03:55:00    2017-02-18 03:55:00
68762    26273    811    2017-02-18 01:10:00    2017-02-18 01:10:00
68763    26274    684    2017-02-18 09:49:00    2017-02-18 09:49:00
68764    26274    526    2017-02-18 22:37:00    2017-02-18 22:37:00
68765    26274    745    2017-02-18 17:22:00    2017-02-18 17:22:00
68766    26274    932    2017-02-18 22:06:00    2017-02-18 22:06:00
68767    26274    563    2017-02-18 08:51:00    2017-02-18 08:51:00
68768    26275    936    2017-02-18 08:47:00    2017-02-18 08:47:00
68769    26275    755    2017-02-18 15:43:00    2017-02-18 15:43:00
68770    26275    569    2017-02-18 05:14:00    2017-02-18 05:14:00
68771    26275    754    2017-02-18 03:55:00    2017-02-18 03:55:00
68772    26275    702    2017-02-18 05:18:00    2017-02-18 05:18:00
68773    26276    765    2017-02-18 02:44:00    2017-02-18 02:44:00
68774    26276    684    2017-02-18 06:32:00    2017-02-18 06:32:00
68775    26276    625    2017-02-18 10:44:00    2017-02-18 10:44:00
68776    26276    707    2017-02-18 15:00:00    2017-02-18 15:00:00
68777    26276    701    2017-02-18 22:47:00    2017-02-18 22:47:00
68778    26277    952    2017-02-18 21:20:00    2017-02-18 21:20:00
68779    26277    482    2017-02-18 07:15:00    2017-02-18 07:15:00
68780    26277    937    2017-02-18 12:22:00    2017-02-18 12:22:00
68781    26277    470    2017-02-18 15:02:00    2017-02-18 15:02:00
68782    26277    854    2017-02-18 21:02:00    2017-02-18 21:02:00
68783    26278    658    2017-02-18 23:49:00    2017-02-18 23:49:00
68784    26278    607    2017-02-18 19:35:00    2017-02-18 19:35:00
68785    26278    506    2017-02-18 20:14:00    2017-02-18 20:14:00
68786    26278    612    2017-02-18 04:41:00    2017-02-18 04:41:00
68787    26278    747    2017-02-18 12:00:00    2017-02-18 12:00:00
68788    26279    578    2017-02-18 08:59:00    2017-02-18 08:59:00
68789    26279    487    2017-02-18 14:53:00    2017-02-18 14:53:00
68790    26279    577    2017-02-18 03:57:00    2017-02-18 03:57:00
68791    26279    510    2017-02-18 02:45:00    2017-02-18 02:45:00
68792    26279    663    2017-02-18 20:09:00    2017-02-18 20:09:00
68793    26280    953    2017-02-18 20:26:00    2017-02-18 20:26:00
68794    26280    786    2017-02-18 21:46:00    2017-02-18 21:46:00
68795    26280    894    2017-02-18 07:49:00    2017-02-18 07:49:00
68796    26280    667    2017-02-18 18:00:00    2017-02-18 18:00:00
68797    26280    820    2017-02-18 15:23:00    2017-02-18 15:23:00
68798    26281    925    2017-02-18 10:06:00    2017-02-18 10:06:00
68799    26281    584    2017-02-18 06:16:00    2017-02-18 06:16:00
68800    26281    733    2017-02-18 06:57:00    2017-02-18 06:57:00
68801    26281    852    2017-02-18 15:00:00    2017-02-18 15:00:00
68802    26281    886    2017-02-18 15:01:00    2017-02-18 15:01:00
68803    26282    477    2017-02-18 16:30:00    2017-02-18 16:30:00
68804    26282    678    2017-02-18 01:03:00    2017-02-18 01:03:00
68805    26282    476    2017-02-18 03:00:00    2017-02-18 03:00:00
68806    26282    799    2017-02-18 04:53:00    2017-02-18 04:53:00
68807    26282    953    2017-02-18 16:42:00    2017-02-18 16:42:00
68808    26283    690    2017-02-18 05:17:00    2017-02-18 05:17:00
68809    26283    757    2017-02-18 17:55:00    2017-02-18 17:55:00
68810    26283    884    2017-02-18 14:15:00    2017-02-18 14:15:00
68811    26283    896    2017-02-18 05:00:00    2017-02-18 05:00:00
68812    26283    914    2017-02-18 06:07:00    2017-02-18 06:07:00
68813    26284    693    2017-02-18 10:37:00    2017-02-18 10:37:00
68814    26284    902    2017-02-18 04:17:00    2017-02-18 04:17:00
68815    26284    891    2017-02-18 17:40:00    2017-02-18 17:40:00
68816    26284    503    2017-02-18 19:23:00    2017-02-18 19:23:00
68817    26284    617    2017-02-18 11:16:00    2017-02-18 11:16:00
68818    26285    520    2017-02-18 11:11:00    2017-02-18 11:11:00
68819    26285    688    2017-02-18 13:48:00    2017-02-18 13:48:00
68820    26285    466    2017-02-18 21:41:00    2017-02-18 21:41:00
68821    26285    825    2017-02-18 05:16:00    2017-02-18 05:16:00
68822    26285    883    2017-02-18 05:28:00    2017-02-18 05:28:00
68823    26286    673    2017-02-18 03:50:00    2017-02-18 03:50:00
68824    26286    941    2017-02-18 07:28:00    2017-02-18 07:28:00
68825    26286    483    2017-02-18 14:51:00    2017-02-18 14:51:00
68826    26286    843    2017-02-18 20:50:00    2017-02-18 20:50:00
68827    26286    672    2017-02-18 14:31:00    2017-02-18 14:31:00
68828    26287    901    2017-02-18 01:26:00    2017-02-18 01:26:00
68829    26287    933    2017-02-18 07:20:00    2017-02-18 07:20:00
68830    26287    824    2017-02-18 01:38:00    2017-02-18 01:38:00
68831    26287    904    2017-02-18 15:57:00    2017-02-18 15:57:00
68832    26287    583    2017-02-18 16:59:00    2017-02-18 16:59:00
68833    26288    945    2017-02-18 11:25:00    2017-02-18 11:25:00
68834    26288    606    2017-02-18 15:49:00    2017-02-18 15:49:00
68835    26288    654    2017-02-18 22:20:00    2017-02-18 22:20:00
68836    26288    544    2017-02-18 04:27:00    2017-02-18 04:27:00
68837    26288    607    2017-02-18 07:46:00    2017-02-18 07:46:00
68838    26289    906    2017-02-18 13:00:00    2017-02-18 13:00:00
68839    26289    942    2017-02-18 13:37:00    2017-02-18 13:37:00
68840    26289    570    2017-02-18 01:17:00    2017-02-18 01:17:00
68841    26289    788    2017-02-18 12:28:00    2017-02-18 12:28:00
68842    26289    935    2017-02-18 17:11:00    2017-02-18 17:11:00
68843    26290    485    2017-02-18 21:53:00    2017-02-18 21:53:00
68844    26290    861    2017-02-18 16:14:00    2017-02-18 16:14:00
68845    26290    761    2017-02-18 19:51:00    2017-02-18 19:51:00
68846    26290    487    2017-02-18 10:41:00    2017-02-18 10:41:00
68847    26290    935    2017-02-18 12:58:00    2017-02-18 12:58:00
68848    26291    820    2017-02-18 22:47:00    2017-02-18 22:47:00
68849    26291    631    2017-02-18 09:46:00    2017-02-18 09:46:00
68850    26291    604    2017-02-18 12:05:00    2017-02-18 12:05:00
68851    26291    682    2017-02-18 15:00:00    2017-02-18 15:00:00
68852    26291    831    2017-02-18 12:34:00    2017-02-18 12:34:00
68853    26292    650    2017-02-18 02:21:00    2017-02-18 02:21:00
68854    26292    726    2017-02-18 04:17:00    2017-02-18 04:17:00
68855    26292    522    2017-02-18 08:16:00    2017-02-18 08:16:00
68856    26292    594    2017-02-18 11:12:00    2017-02-18 11:12:00
68857    26292    478    2017-02-18 17:21:00    2017-02-18 17:21:00
68858    26293    914    2017-02-18 14:21:00    2017-02-18 14:21:00
68859    26293    559    2017-02-18 08:29:00    2017-02-18 08:29:00
68860    26293    739    2017-02-18 13:01:00    2017-02-18 13:01:00
68861    26293    655    2017-02-18 10:34:00    2017-02-18 10:34:00
68862    26293    752    2017-02-18 23:16:00    2017-02-18 23:16:00
68863    26294    864    2017-02-18 23:35:00    2017-02-18 23:35:00
68864    26294    581    2017-02-18 19:01:00    2017-02-18 19:01:00
68865    26294    556    2017-02-18 16:11:00    2017-02-18 16:11:00
68866    26294    565    2017-02-18 20:56:00    2017-02-18 20:56:00
68867    26294    890    2017-02-18 06:40:00    2017-02-18 06:40:00
68868    26295    846    2017-02-18 18:35:00    2017-02-18 18:35:00
68869    26295    853    2017-02-18 16:39:00    2017-02-18 16:39:00
68870    26295    710    2017-02-18 19:12:00    2017-02-18 19:12:00
68871    26295    957    2017-02-18 05:55:00    2017-02-18 05:55:00
68872    26295    941    2017-02-18 06:28:00    2017-02-18 06:28:00
68873    26296    915    2017-02-18 11:42:00    2017-02-18 11:42:00
68874    26296    773    2017-02-18 19:52:00    2017-02-18 19:52:00
68875    26296    566    2017-02-18 19:16:00    2017-02-18 19:16:00
68876    26296    957    2017-02-18 15:32:00    2017-02-18 15:32:00
68877    26296    744    2017-02-18 12:55:00    2017-02-18 12:55:00
68878    26297    490    2017-02-19 07:58:00    2017-02-19 07:58:00
68879    26297    756    2017-02-19 23:20:00    2017-02-19 23:20:00
68880    26297    488    2017-02-19 05:21:00    2017-02-19 05:21:00
68881    26297    767    2017-02-19 03:30:00    2017-02-19 03:30:00
68882    26297    727    2017-02-19 20:00:00    2017-02-19 20:00:00
68883    26298    733    2017-02-19 10:55:00    2017-02-19 10:55:00
68884    26298    818    2017-02-19 01:44:00    2017-02-19 01:44:00
68885    26298    640    2017-02-19 15:43:00    2017-02-19 15:43:00
68886    26298    718    2017-02-19 03:00:00    2017-02-19 03:00:00
68887    26298    543    2017-02-19 07:51:00    2017-02-19 07:51:00
68888    26299    704    2017-02-19 15:26:00    2017-02-19 15:26:00
68889    26299    486    2017-02-19 21:27:00    2017-02-19 21:27:00
68890    26299    853    2017-02-19 05:42:00    2017-02-19 05:42:00
68891    26299    589    2017-02-19 04:20:00    2017-02-19 04:20:00
68892    26299    675    2017-02-19 03:05:00    2017-02-19 03:05:00
68893    26300    905    2017-02-19 22:19:00    2017-02-19 22:19:00
68894    26300    587    2017-02-19 05:53:00    2017-02-19 05:53:00
68895    26300    941    2017-02-19 17:51:00    2017-02-19 17:51:00
68896    26300    944    2017-02-19 17:26:00    2017-02-19 17:26:00
68897    26300    607    2017-02-19 05:11:00    2017-02-19 05:11:00
68898    26301    589    2017-02-19 09:06:00    2017-02-19 09:06:00
68899    26301    514    2017-02-19 19:19:00    2017-02-19 19:19:00
68900    26301    545    2017-02-19 01:19:00    2017-02-19 01:19:00
68901    26301    804    2017-02-19 11:41:00    2017-02-19 11:41:00
68902    26301    939    2017-02-19 21:38:00    2017-02-19 21:38:00
68903    26302    682    2017-02-19 09:06:00    2017-02-19 09:06:00
68904    26302    582    2017-02-19 12:34:00    2017-02-19 12:34:00
68905    26302    701    2017-02-19 04:00:00    2017-02-19 04:00:00
68906    26302    530    2017-02-19 08:40:00    2017-02-19 08:40:00
68907    26302    837    2017-02-19 03:48:00    2017-02-19 03:48:00
68908    26303    856    2017-02-19 09:10:00    2017-02-19 09:10:00
68909    26303    616    2017-02-19 03:26:00    2017-02-19 03:26:00
68910    26303    839    2017-02-19 16:19:00    2017-02-19 16:19:00
68911    26303    882    2017-02-19 22:31:00    2017-02-19 22:31:00
68912    26303    937    2017-02-19 21:25:00    2017-02-19 21:25:00
68913    26304    811    2017-02-19 09:36:00    2017-02-19 09:36:00
68914    26304    693    2017-02-19 11:06:00    2017-02-19 11:06:00
68915    26304    551    2017-02-19 22:23:00    2017-02-19 22:23:00
68916    26304    945    2017-02-19 11:20:00    2017-02-19 11:20:00
68917    26304    741    2017-02-19 06:55:00    2017-02-19 06:55:00
68918    26305    899    2017-02-19 09:29:00    2017-02-19 09:29:00
68919    26305    502    2017-02-19 01:04:00    2017-02-19 01:04:00
68920    26305    758    2017-02-19 15:02:00    2017-02-19 15:02:00
68921    26305    632    2017-02-19 01:20:00    2017-02-19 01:20:00
68922    26305    716    2017-02-19 22:49:00    2017-02-19 22:49:00
68923    26306    531    2017-02-19 08:26:00    2017-02-19 08:26:00
68924    26306    581    2017-02-19 03:33:00    2017-02-19 03:33:00
68925    26306    660    2017-02-19 06:29:00    2017-02-19 06:29:00
68926    26306    832    2017-02-19 15:12:00    2017-02-19 15:12:00
68927    26306    878    2017-02-19 18:05:00    2017-02-19 18:05:00
68928    26307    818    2017-02-19 20:00:00    2017-02-19 20:00:00
68929    26307    789    2017-02-19 18:36:00    2017-02-19 18:36:00
68930    26307    629    2017-02-19 19:34:00    2017-02-19 19:34:00
68931    26307    624    2017-02-19 06:59:00    2017-02-19 06:59:00
68932    26307    849    2017-02-19 15:21:00    2017-02-19 15:21:00
68933    26308    617    2017-02-19 20:33:00    2017-02-19 20:33:00
68934    26308    722    2017-02-19 20:13:00    2017-02-19 20:13:00
68935    26308    856    2017-02-19 04:11:00    2017-02-19 04:11:00
68936    26308    773    2017-02-19 11:22:00    2017-02-19 11:22:00
68937    26308    575    2017-02-19 01:31:00    2017-02-19 01:31:00
68938    26309    742    2017-02-19 04:03:00    2017-02-19 04:03:00
68939    26309    899    2017-02-19 01:06:00    2017-02-19 01:06:00
68940    26309    643    2017-02-19 08:49:00    2017-02-19 08:49:00
68941    26309    700    2017-02-19 12:13:00    2017-02-19 12:13:00
68942    26309    505    2017-02-19 18:00:00    2017-02-19 18:00:00
68943    26310    528    2017-02-19 21:27:00    2017-02-19 21:27:00
68944    26310    949    2017-02-19 07:18:00    2017-02-19 07:18:00
68945    26310    642    2017-02-19 06:21:00    2017-02-19 06:21:00
68946    26310    549    2017-02-19 10:08:00    2017-02-19 10:08:00
68947    26310    702    2017-02-19 17:00:00    2017-02-19 17:00:00
68948    26311    618    2017-02-19 11:38:00    2017-02-19 11:38:00
68949    26311    716    2017-02-19 15:38:00    2017-02-19 15:38:00
68950    26311    893    2017-02-19 20:49:00    2017-02-19 20:49:00
68951    26311    613    2017-02-19 22:30:00    2017-02-19 22:30:00
68952    26311    761    2017-02-19 20:43:00    2017-02-19 20:43:00
68953    26312    547    2017-02-19 15:00:00    2017-02-19 15:00:00
68954    26312    616    2017-02-19 15:20:00    2017-02-19 15:20:00
68955    26312    864    2017-02-19 15:33:00    2017-02-19 15:33:00
68956    26312    815    2017-02-19 06:09:00    2017-02-19 06:09:00
68957    26312    764    2017-02-19 08:58:00    2017-02-19 08:58:00
68958    26313    720    2017-02-19 22:35:00    2017-02-19 22:35:00
68959    26313    948    2017-02-19 14:50:00    2017-02-19 14:50:00
68960    26313    802    2017-02-19 05:08:00    2017-02-19 05:08:00
68961    26313    866    2017-02-19 06:54:00    2017-02-19 06:54:00
68962    26313    727    2017-02-19 20:12:00    2017-02-19 20:12:00
68963    26314    553    2017-02-19 13:39:00    2017-02-19 13:39:00
68964    26314    808    2017-02-19 11:51:00    2017-02-19 11:51:00
68965    26314    497    2017-02-19 17:17:00    2017-02-19 17:17:00
68966    26314    765    2017-02-19 05:26:00    2017-02-19 05:26:00
68967    26314    951    2017-02-19 19:21:00    2017-02-19 19:21:00
68968    26315    730    2017-02-19 13:43:00    2017-02-19 13:43:00
68969    26315    601    2017-02-19 18:17:00    2017-02-19 18:17:00
68970    26315    691    2017-02-19 04:27:00    2017-02-19 04:27:00
68971    26315    466    2017-02-19 10:14:00    2017-02-19 10:14:00
68972    26315    817    2017-02-19 17:09:00    2017-02-19 17:09:00
68973    26316    573    2017-02-19 06:28:00    2017-02-19 06:28:00
68974    26316    943    2017-02-19 20:54:00    2017-02-19 20:54:00
68975    26316    736    2017-02-19 20:31:00    2017-02-19 20:31:00
68976    26316    751    2017-02-19 23:31:00    2017-02-19 23:31:00
68977    26316    819    2017-02-19 04:32:00    2017-02-19 04:32:00
68978    26317    927    2017-02-19 09:28:00    2017-02-19 09:28:00
68979    26317    888    2017-02-19 12:54:00    2017-02-19 12:54:00
68980    26317    670    2017-02-19 06:50:00    2017-02-19 06:50:00
68981    26317    605    2017-02-19 17:21:00    2017-02-19 17:21:00
68982    26317    843    2017-02-19 15:07:00    2017-02-19 15:07:00
68983    26318    542    2017-02-19 11:36:00    2017-02-19 11:36:00
68984    26318    496    2017-02-19 08:58:00    2017-02-19 08:58:00
68985    26318    814    2017-02-19 08:21:00    2017-02-19 08:21:00
68986    26318    863    2017-02-19 15:05:00    2017-02-19 15:05:00
68987    26318    880    2017-02-19 01:46:00    2017-02-19 01:46:00
68988    26319    782    2017-02-19 10:54:00    2017-02-19 10:54:00
68989    26319    465    2017-02-19 03:23:00    2017-02-19 03:23:00
68990    26319    607    2017-02-19 19:03:00    2017-02-19 19:03:00
68991    26319    592    2017-02-19 10:25:00    2017-02-19 10:25:00
68992    26319    649    2017-02-19 05:46:00    2017-02-19 05:46:00
68993    26320    838    2017-02-19 04:29:00    2017-02-19 04:29:00
68994    26320    514    2017-02-19 20:07:00    2017-02-19 20:07:00
68995    26320    699    2017-02-19 21:38:00    2017-02-19 21:38:00
68996    26320    478    2017-02-19 04:17:00    2017-02-19 04:17:00
68997    26320    948    2017-02-19 04:13:00    2017-02-19 04:13:00
68998    26321    569    2017-02-19 07:56:00    2017-02-19 07:56:00
68999    26321    717    2017-02-19 12:49:00    2017-02-19 12:49:00
69000    26321    589    2017-02-19 09:03:00    2017-02-19 09:03:00
69001    26321    677    2017-02-19 08:17:00    2017-02-19 08:17:00
69002    26321    831    2017-02-19 07:22:00    2017-02-19 07:22:00
69003    26322    910    2017-02-19 01:01:00    2017-02-19 01:01:00
69004    26322    670    2017-02-19 18:49:00    2017-02-19 18:49:00
69005    26322    663    2017-02-19 01:57:00    2017-02-19 01:57:00
69006    26322    645    2017-02-19 16:25:00    2017-02-19 16:25:00
69007    26322    712    2017-02-19 04:16:00    2017-02-19 04:16:00
69008    26323    601    2017-02-19 18:13:00    2017-02-19 18:13:00
69009    26323    489    2017-02-19 06:26:00    2017-02-19 06:26:00
69010    26323    821    2017-02-19 21:13:00    2017-02-19 21:13:00
69011    26323    594    2017-02-19 01:32:00    2017-02-19 01:32:00
69012    26323    516    2017-02-19 03:05:00    2017-02-19 03:05:00
69013    26324    690    2017-02-19 11:07:00    2017-02-19 11:07:00
69014    26324    554    2017-02-19 14:05:00    2017-02-19 14:05:00
69015    26324    644    2017-02-19 17:36:00    2017-02-19 17:36:00
69016    26324    781    2017-02-19 19:06:00    2017-02-19 19:06:00
69017    26324    538    2017-02-19 12:42:00    2017-02-19 12:42:00
69018    26325    807    2017-02-19 23:54:00    2017-02-19 23:54:00
69019    26325    816    2017-02-19 11:55:00    2017-02-19 11:55:00
69020    26325    557    2017-02-19 22:23:00    2017-02-19 22:23:00
69021    26325    674    2017-02-19 01:31:00    2017-02-19 01:31:00
69022    26325    815    2017-02-19 13:27:00    2017-02-19 13:27:00
69023    26326    549    2017-02-19 10:41:00    2017-02-19 10:41:00
69024    26326    667    2017-02-19 01:52:00    2017-02-19 01:52:00
69025    26326    925    2017-02-19 22:30:00    2017-02-19 22:30:00
69026    26326    920    2017-02-19 06:03:00    2017-02-19 06:03:00
69027    26326    843    2017-02-19 08:21:00    2017-02-19 08:21:00
69028    26327    686    2017-02-19 07:55:00    2017-02-19 07:55:00
69029    26327    715    2017-02-19 05:22:00    2017-02-19 05:22:00
69030    26327    917    2017-02-19 12:36:00    2017-02-19 12:36:00
69031    26327    690    2017-02-19 22:26:00    2017-02-19 22:26:00
69032    26327    516    2017-02-19 15:04:00    2017-02-19 15:04:00
69033    26328    686    2017-02-19 14:21:00    2017-02-19 14:21:00
69034    26328    482    2017-02-19 10:15:00    2017-02-19 10:15:00
69035    26328    798    2017-02-19 02:51:00    2017-02-19 02:51:00
69036    26328    624    2017-02-19 10:00:00    2017-02-19 10:00:00
69037    26328    953    2017-02-19 22:24:00    2017-02-19 22:24:00
69038    26329    711    2017-02-19 09:19:00    2017-02-19 09:19:00
69039    26329    840    2017-02-19 15:25:00    2017-02-19 15:25:00
69040    26329    828    2017-02-19 23:51:00    2017-02-19 23:51:00
69041    26329    771    2017-02-19 06:33:00    2017-02-19 06:33:00
69042    26329    861    2017-02-19 13:13:00    2017-02-19 13:13:00
69043    26330    846    2017-02-19 06:23:00    2017-02-19 06:23:00
69044    26330    766    2017-02-19 16:25:00    2017-02-19 16:25:00
69045    26330    723    2017-02-19 14:10:00    2017-02-19 14:10:00
69046    26330    720    2017-02-19 06:05:00    2017-02-19 06:05:00
69047    26330    802    2017-02-19 18:22:00    2017-02-19 18:22:00
69048    26331    810    2017-02-19 08:30:00    2017-02-19 08:30:00
69049    26331    927    2017-02-19 07:02:00    2017-02-19 07:02:00
69050    26331    506    2017-02-19 21:30:00    2017-02-19 21:30:00
69051    26331    899    2017-02-19 05:34:00    2017-02-19 05:34:00
69052    26331    492    2017-02-19 21:48:00    2017-02-19 21:48:00
69053    26332    950    2017-02-19 19:21:00    2017-02-19 19:21:00
69054    26332    579    2017-02-19 07:01:00    2017-02-19 07:01:00
69055    26332    569    2017-02-19 03:57:00    2017-02-19 03:57:00
69056    26332    650    2017-02-19 08:19:00    2017-02-19 08:19:00
69057    26332    942    2017-02-19 01:16:00    2017-02-19 01:16:00
69058    26333    744    2017-02-19 13:12:00    2017-02-19 13:12:00
69059    26333    821    2017-02-19 20:46:00    2017-02-19 20:46:00
69060    26333    871    2017-02-19 17:09:00    2017-02-19 17:09:00
69061    26333    603    2017-02-19 02:59:00    2017-02-19 02:59:00
69062    26333    931    2017-02-19 20:47:00    2017-02-19 20:47:00
69063    26334    586    2017-02-19 15:50:00    2017-02-19 15:50:00
69064    26334    896    2017-02-19 05:42:00    2017-02-19 05:42:00
69065    26334    706    2017-02-19 04:19:00    2017-02-19 04:19:00
69066    26334    715    2017-02-19 14:10:00    2017-02-19 14:10:00
69067    26334    662    2017-02-19 16:04:00    2017-02-19 16:04:00
69068    26335    943    2017-02-19 18:00:00    2017-02-19 18:00:00
69069    26335    787    2017-02-19 06:57:00    2017-02-19 06:57:00
69070    26335    499    2017-02-19 17:49:00    2017-02-19 17:49:00
69071    26335    598    2017-02-19 03:32:00    2017-02-19 03:32:00
69072    26335    645    2017-02-19 17:00:00    2017-02-19 17:00:00
69073    26336    705    2017-02-19 22:26:00    2017-02-19 22:26:00
69074    26336    585    2017-02-19 20:13:00    2017-02-19 20:13:00
69075    26336    752    2017-02-19 17:00:00    2017-02-19 17:00:00
69076    26336    481    2017-02-19 01:35:00    2017-02-19 01:35:00
69077    26336    770    2017-02-19 02:57:00    2017-02-19 02:57:00
69078    26337    542    2017-02-19 04:07:00    2017-02-19 04:07:00
69079    26337    756    2017-02-19 14:08:00    2017-02-19 14:08:00
69080    26337    839    2017-02-19 22:38:00    2017-02-19 22:38:00
69081    26337    810    2017-02-19 20:20:00    2017-02-19 20:20:00
69082    26337    861    2017-02-19 22:46:00    2017-02-19 22:46:00
69083    26338    521    2017-02-19 10:03:00    2017-02-19 10:03:00
69084    26338    648    2017-02-19 06:23:00    2017-02-19 06:23:00
69085    26338    873    2017-02-19 20:55:00    2017-02-19 20:55:00
69086    26338    698    2017-02-19 13:24:00    2017-02-19 13:24:00
69087    26338    948    2017-02-19 10:14:00    2017-02-19 10:14:00
69088    26339    542    2017-02-19 16:57:00    2017-02-19 16:57:00
69089    26339    748    2017-02-19 16:35:00    2017-02-19 16:35:00
69090    26339    482    2017-02-19 07:23:00    2017-02-19 07:23:00
69091    26339    628    2017-02-19 23:54:00    2017-02-19 23:54:00
69092    26339    952    2017-02-19 04:59:00    2017-02-19 04:59:00
69093    26340    778    2017-02-19 08:10:00    2017-02-19 08:10:00
69094    26340    780    2017-02-19 16:12:00    2017-02-19 16:12:00
69095    26340    602    2017-02-19 22:11:00    2017-02-19 22:11:00
69096    26340    958    2017-02-19 09:47:00    2017-02-19 09:47:00
69097    26340    726    2017-02-19 14:41:00    2017-02-19 14:41:00
69098    26341    809    2017-02-19 21:54:00    2017-02-19 21:54:00
69099    26341    534    2017-02-19 04:19:00    2017-02-19 04:19:00
69100    26341    463    2017-02-19 17:33:00    2017-02-19 17:33:00
69101    26341    551    2017-02-19 09:04:00    2017-02-19 09:04:00
69102    26341    617    2017-02-19 06:24:00    2017-02-19 06:24:00
69103    26342    483    2017-02-19 01:10:00    2017-02-19 01:10:00
69104    26342    621    2017-02-19 06:22:00    2017-02-19 06:22:00
69105    26342    585    2017-02-19 01:16:00    2017-02-19 01:16:00
69106    26342    511    2017-02-19 03:40:00    2017-02-19 03:40:00
69107    26342    913    2017-02-19 19:09:00    2017-02-19 19:09:00
69108    26343    634    2017-02-19 08:43:00    2017-02-19 08:43:00
69109    26343    652    2017-02-19 16:44:00    2017-02-19 16:44:00
69110    26343    524    2017-02-19 22:31:00    2017-02-19 22:31:00
69111    26343    598    2017-02-19 11:54:00    2017-02-19 11:54:00
69112    26343    876    2017-02-19 13:41:00    2017-02-19 13:41:00
69113    26344    512    2017-02-19 12:57:00    2017-02-19 12:57:00
69114    26344    622    2017-02-19 19:22:00    2017-02-19 19:22:00
69115    26344    553    2017-02-19 15:06:00    2017-02-19 15:06:00
69116    26344    800    2017-02-19 22:40:00    2017-02-19 22:40:00
69117    26344    614    2017-02-19 22:42:00    2017-02-19 22:42:00
69118    26345    711    2017-02-19 05:01:00    2017-02-19 05:01:00
69119    26345    670    2017-02-19 07:13:00    2017-02-19 07:13:00
69120    26345    561    2017-02-19 06:00:00    2017-02-19 06:00:00
69121    26345    767    2017-02-19 06:17:00    2017-02-19 06:17:00
69122    26345    742    2017-02-19 05:37:00    2017-02-19 05:37:00
69123    26346    599    2017-02-19 05:40:00    2017-02-19 05:40:00
69124    26346    840    2017-02-19 23:37:00    2017-02-19 23:37:00
69125    26346    774    2017-02-19 16:28:00    2017-02-19 16:28:00
69126    26346    613    2017-02-19 21:44:00    2017-02-19 21:44:00
69127    26346    734    2017-02-19 12:05:00    2017-02-19 12:05:00
69128    26347    669    2017-02-19 15:19:00    2017-02-19 15:19:00
69129    26347    946    2017-02-19 12:18:00    2017-02-19 12:18:00
69130    26347    898    2017-02-19 19:56:00    2017-02-19 19:56:00
69131    26347    919    2017-02-19 15:10:00    2017-02-19 15:10:00
69132    26347    782    2017-02-19 16:27:00    2017-02-19 16:27:00
69133    26348    691    2017-02-19 11:04:00    2017-02-19 11:04:00
69134    26348    581    2017-02-19 08:43:00    2017-02-19 08:43:00
69135    26348    769    2017-02-19 10:47:00    2017-02-19 10:47:00
69136    26348    687    2017-02-19 23:20:00    2017-02-19 23:20:00
69137    26348    754    2017-02-19 16:17:00    2017-02-19 16:17:00
69138    26349    842    2017-02-19 06:58:00    2017-02-19 06:58:00
69139    26349    887    2017-02-19 16:53:00    2017-02-19 16:53:00
69140    26349    738    2017-02-19 20:50:00    2017-02-19 20:50:00
69141    26349    669    2017-02-19 19:19:00    2017-02-19 19:19:00
69142    26349    680    2017-02-19 02:51:00    2017-02-19 02:51:00
69143    26350    674    2017-02-19 10:58:00    2017-02-19 10:58:00
69144    26350    643    2017-02-19 16:14:00    2017-02-19 16:14:00
69145    26350    699    2017-02-19 17:08:00    2017-02-19 17:08:00
69146    26350    518    2017-02-19 21:26:00    2017-02-19 21:26:00
69147    26350    755    2017-02-19 16:58:00    2017-02-19 16:58:00
69148    26351    885    2017-02-19 03:12:00    2017-02-19 03:12:00
69149    26351    921    2017-02-19 08:34:00    2017-02-19 08:34:00
69150    26351    509    2017-02-19 08:17:00    2017-02-19 08:17:00
69151    26351    712    2017-02-19 04:04:00    2017-02-19 04:04:00
69152    26351    913    2017-02-19 13:00:00    2017-02-19 13:00:00
69153    26352    950    2017-02-19 12:10:00    2017-02-19 12:10:00
69154    26352    550    2017-02-19 20:58:00    2017-02-19 20:58:00
69155    26352    598    2017-02-19 03:26:00    2017-02-19 03:26:00
69156    26352    768    2017-02-19 22:28:00    2017-02-19 22:28:00
69157    26352    878    2017-02-19 07:01:00    2017-02-19 07:01:00
69158    26353    585    2017-02-19 22:43:00    2017-02-19 22:43:00
69159    26353    695    2017-02-19 14:55:00    2017-02-19 14:55:00
69160    26353    823    2017-02-19 11:19:00    2017-02-19 11:19:00
69161    26353    681    2017-02-19 04:55:00    2017-02-19 04:55:00
69162    26353    532    2017-02-19 05:00:00    2017-02-19 05:00:00
69163    26354    749    2017-02-19 06:50:00    2017-02-19 06:50:00
69164    26354    783    2017-02-19 15:39:00    2017-02-19 15:39:00
69165    26354    838    2017-02-19 03:25:00    2017-02-19 03:25:00
69166    26354    675    2017-02-19 16:43:00    2017-02-19 16:43:00
69167    26354    876    2017-02-19 05:17:00    2017-02-19 05:17:00
69168    26355    509    2017-02-19 22:45:00    2017-02-19 22:45:00
69169    26355    941    2017-02-19 11:48:00    2017-02-19 11:48:00
69170    26355    762    2017-02-19 19:13:00    2017-02-19 19:13:00
69171    26355    698    2017-02-19 05:23:00    2017-02-19 05:23:00
69172    26355    855    2017-02-19 04:31:00    2017-02-19 04:31:00
69173    26356    475    2017-02-19 04:08:00    2017-02-19 04:08:00
69174    26356    525    2017-02-19 12:55:00    2017-02-19 12:55:00
69175    26356    808    2017-02-19 11:49:00    2017-02-19 11:49:00
69176    26356    680    2017-02-19 15:33:00    2017-02-19 15:33:00
69177    26356    669    2017-02-19 18:47:00    2017-02-19 18:47:00
69178    26357    866    2017-02-19 21:40:00    2017-02-19 21:40:00
69179    26357    509    2017-02-19 12:31:00    2017-02-19 12:31:00
69180    26357    746    2017-02-19 20:27:00    2017-02-19 20:27:00
69181    26357    596    2017-02-19 04:30:00    2017-02-19 04:30:00
69182    26357    827    2017-02-19 06:53:00    2017-02-19 06:53:00
69183    26358    950    2017-02-19 20:28:00    2017-02-19 20:28:00
69184    26358    954    2017-02-19 06:21:00    2017-02-19 06:21:00
69185    26358    657    2017-02-19 23:07:00    2017-02-19 23:07:00
69186    26358    607    2017-02-19 05:26:00    2017-02-19 05:26:00
69187    26358    848    2017-02-19 11:36:00    2017-02-19 11:36:00
69188    26359    559    2017-02-19 08:36:00    2017-02-19 08:36:00
69189    26359    557    2017-02-19 09:17:00    2017-02-19 09:17:00
69190    26359    509    2017-02-19 12:48:00    2017-02-19 12:48:00
69191    26359    563    2017-02-19 11:44:00    2017-02-19 11:44:00
69192    26359    832    2017-02-19 12:52:00    2017-02-19 12:52:00
69193    26360    682    2017-02-20 08:30:00    2017-02-20 08:30:00
69194    26360    611    2017-02-20 01:19:00    2017-02-20 01:19:00
69195    26360    830    2017-02-20 01:50:00    2017-02-20 01:50:00
69196    26360    501    2017-02-20 18:03:00    2017-02-20 18:03:00
69197    26360    547    2017-02-20 10:19:00    2017-02-20 10:19:00
69198    26361    522    2017-02-20 18:13:00    2017-02-20 18:13:00
69199    26361    543    2017-02-20 20:58:00    2017-02-20 20:58:00
69200    26361    766    2017-02-20 11:06:00    2017-02-20 11:06:00
69201    26361    521    2017-02-20 18:59:00    2017-02-20 18:59:00
69202    26361    914    2017-02-20 01:38:00    2017-02-20 01:38:00
69203    26362    501    2017-02-20 18:59:00    2017-02-20 18:59:00
69204    26362    851    2017-02-20 10:26:00    2017-02-20 10:26:00
69205    26362    898    2017-02-20 14:47:00    2017-02-20 14:47:00
69206    26362    490    2017-02-20 16:45:00    2017-02-20 16:45:00
69207    26362    932    2017-02-20 04:46:00    2017-02-20 04:46:00
69208    26363    801    2017-02-20 13:58:00    2017-02-20 13:58:00
69209    26363    885    2017-02-20 06:21:00    2017-02-20 06:21:00
69210    26363    710    2017-02-20 01:17:00    2017-02-20 01:17:00
69211    26363    680    2017-02-20 02:03:00    2017-02-20 02:03:00
69212    26363    886    2017-02-20 15:46:00    2017-02-20 15:46:00
69213    26364    841    2017-02-20 14:37:00    2017-02-20 14:37:00
69214    26364    536    2017-02-20 12:30:00    2017-02-20 12:30:00
69215    26364    620    2017-02-20 16:25:00    2017-02-20 16:25:00
69216    26364    564    2017-02-20 03:41:00    2017-02-20 03:41:00
69217    26364    629    2017-02-20 12:11:00    2017-02-20 12:11:00
69218    26365    530    2017-02-20 18:43:00    2017-02-20 18:43:00
69219    26365    775    2017-02-20 09:23:00    2017-02-20 09:23:00
69220    26365    700    2017-02-20 04:15:00    2017-02-20 04:15:00
69221    26365    830    2017-02-20 01:11:00    2017-02-20 01:11:00
69222    26365    937    2017-02-20 13:21:00    2017-02-20 13:21:00
69223    26366    893    2017-02-20 01:29:00    2017-02-20 01:29:00
69224    26366    645    2017-02-20 01:31:00    2017-02-20 01:31:00
69225    26366    849    2017-02-20 23:18:00    2017-02-20 23:18:00
69226    26366    500    2017-02-20 04:27:00    2017-02-20 04:27:00
69227    26366    811    2017-02-20 20:28:00    2017-02-20 20:28:00
69228    26367    610    2017-02-20 03:38:00    2017-02-20 03:38:00
69229    26367    682    2017-02-20 12:35:00    2017-02-20 12:35:00
69230    26367    645    2017-02-20 20:02:00    2017-02-20 20:02:00
69231    26367    642    2017-02-20 18:39:00    2017-02-20 18:39:00
69232    26367    693    2017-02-20 07:33:00    2017-02-20 07:33:00
69233    26368    513    2017-02-20 15:11:00    2017-02-20 15:11:00
69234    26368    572    2017-02-20 19:24:00    2017-02-20 19:24:00
69235    26368    738    2017-02-20 13:32:00    2017-02-20 13:32:00
69236    26368    805    2017-02-20 15:48:00    2017-02-20 15:48:00
69237    26368    648    2017-02-20 03:37:00    2017-02-20 03:37:00
69238    26369    717    2017-02-20 05:37:00    2017-02-20 05:37:00
69239    26369    833    2017-02-20 01:25:00    2017-02-20 01:25:00
69240    26369    657    2017-02-20 18:54:00    2017-02-20 18:54:00
69241    26369    727    2017-02-20 22:56:00    2017-02-20 22:56:00
69242    26369    848    2017-02-20 20:25:00    2017-02-20 20:25:00
69243    26370    731    2017-02-20 02:43:00    2017-02-20 02:43:00
69244    26370    768    2017-02-20 05:53:00    2017-02-20 05:53:00
69245    26370    700    2017-02-20 10:38:00    2017-02-20 10:38:00
69246    26370    933    2017-02-20 19:00:00    2017-02-20 19:00:00
69247    26370    581    2017-02-20 15:51:00    2017-02-20 15:51:00
69248    26371    483    2017-02-20 15:42:00    2017-02-20 15:42:00
69249    26371    737    2017-02-20 16:08:00    2017-02-20 16:08:00
69250    26371    659    2017-02-20 04:35:00    2017-02-20 04:35:00
69251    26371    781    2017-02-20 03:19:00    2017-02-20 03:19:00
69252    26371    623    2017-02-20 07:26:00    2017-02-20 07:26:00
69253    26372    548    2017-02-20 03:33:00    2017-02-20 03:33:00
69254    26372    497    2017-02-20 01:55:00    2017-02-20 01:55:00
69255    26372    903    2017-02-20 18:36:00    2017-02-20 18:36:00
69256    26372    935    2017-02-20 06:23:00    2017-02-20 06:23:00
69257    26372    704    2017-02-20 12:10:00    2017-02-20 12:10:00
69258    26373    805    2017-02-20 20:01:00    2017-02-20 20:01:00
69259    26373    548    2017-02-20 13:51:00    2017-02-20 13:51:00
69260    26373    467    2017-02-20 21:28:00    2017-02-20 21:28:00
69261    26373    954    2017-02-20 14:44:00    2017-02-20 14:44:00
69262    26373    774    2017-02-20 20:03:00    2017-02-20 20:03:00
69263    26374    944    2017-02-20 18:00:00    2017-02-20 18:00:00
69264    26374    600    2017-02-20 14:37:00    2017-02-20 14:37:00
69265    26374    572    2017-02-20 06:41:00    2017-02-20 06:41:00
69266    26374    530    2017-02-20 13:14:00    2017-02-20 13:14:00
69267    26374    841    2017-02-20 12:15:00    2017-02-20 12:15:00
69268    26375    692    2017-02-20 23:28:00    2017-02-20 23:28:00
69269    26375    908    2017-02-20 17:34:00    2017-02-20 17:34:00
69270    26375    683    2017-02-20 06:47:00    2017-02-20 06:47:00
69271    26375    581    2017-02-20 14:37:00    2017-02-20 14:37:00
69272    26375    544    2017-02-20 23:41:00    2017-02-20 23:41:00
69273    26376    554    2017-02-20 12:07:00    2017-02-20 12:07:00
69274    26376    877    2017-02-20 13:47:00    2017-02-20 13:47:00
69275    26376    716    2017-02-20 22:14:00    2017-02-20 22:14:00
69276    26376    709    2017-02-20 10:07:00    2017-02-20 10:07:00
69277    26376    712    2017-02-20 09:45:00    2017-02-20 09:45:00
69278    26377    631    2017-02-20 06:40:00    2017-02-20 06:40:00
69279    26377    948    2017-02-20 08:23:00    2017-02-20 08:23:00
69280    26377    824    2017-02-20 20:51:00    2017-02-20 20:51:00
69281    26377    788    2017-02-20 03:13:00    2017-02-20 03:13:00
69282    26377    793    2017-02-20 22:00:00    2017-02-20 22:00:00
69283    26378    630    2017-02-20 06:19:00    2017-02-20 06:19:00
69284    26378    833    2017-02-20 01:30:00    2017-02-20 01:30:00
69285    26378    492    2017-02-20 04:54:00    2017-02-20 04:54:00
69286    26378    916    2017-02-20 20:24:00    2017-02-20 20:24:00
69287    26378    625    2017-02-20 02:55:00    2017-02-20 02:55:00
69288    26379    663    2017-02-20 20:33:00    2017-02-20 20:33:00
69289    26379    726    2017-02-20 08:20:00    2017-02-20 08:20:00
69290    26379    567    2017-02-20 03:15:00    2017-02-20 03:15:00
69291    26379    522    2017-02-20 23:43:00    2017-02-20 23:43:00
69292    26379    734    2017-02-20 03:08:00    2017-02-20 03:08:00
69293    26380    790    2017-02-20 02:55:00    2017-02-20 02:55:00
69294    26380    541    2017-02-20 18:12:00    2017-02-20 18:12:00
69295    26380    753    2017-02-20 17:15:00    2017-02-20 17:15:00
69296    26380    845    2017-02-20 06:51:00    2017-02-20 06:51:00
69297    26380    787    2017-02-20 11:39:00    2017-02-20 11:39:00
69298    26381    902    2017-02-20 06:44:00    2017-02-20 06:44:00
69299    26381    624    2017-02-20 03:57:00    2017-02-20 03:57:00
69300    26381    562    2017-02-20 06:08:00    2017-02-20 06:08:00
69301    26381    943    2017-02-20 17:45:00    2017-02-20 17:45:00
69302    26381    798    2017-02-20 12:37:00    2017-02-20 12:37:00
69303    26382    579    2017-02-20 14:25:00    2017-02-20 14:25:00
69304    26382    704    2017-02-20 10:57:00    2017-02-20 10:57:00
69305    26382    770    2017-02-20 04:27:00    2017-02-20 04:27:00
69306    26382    957    2017-02-20 02:20:00    2017-02-20 02:20:00
69307    26382    911    2017-02-20 18:36:00    2017-02-20 18:36:00
69308    26383    521    2017-02-20 20:52:00    2017-02-20 20:52:00
69309    26383    958    2017-02-20 20:05:00    2017-02-20 20:05:00
69310    26383    936    2017-02-20 14:43:00    2017-02-20 14:43:00
69311    26383    833    2017-02-20 05:51:00    2017-02-20 05:51:00
69312    26383    519    2017-02-20 17:02:00    2017-02-20 17:02:00
69313    26384    475    2017-02-20 06:11:00    2017-02-20 06:11:00
69314    26384    898    2017-02-20 19:31:00    2017-02-20 19:31:00
69315    26384    934    2017-02-20 13:49:00    2017-02-20 13:49:00
69316    26384    941    2017-02-20 19:26:00    2017-02-20 19:26:00
69317    26384    738    2017-02-20 08:04:00    2017-02-20 08:04:00
69318    26385    661    2017-02-20 06:01:00    2017-02-20 06:01:00
69319    26385    747    2017-02-20 23:18:00    2017-02-20 23:18:00
69320    26385    960    2017-02-20 01:40:00    2017-02-20 01:40:00
69321    26385    720    2017-02-20 10:12:00    2017-02-20 10:12:00
69322    26385    591    2017-02-20 07:53:00    2017-02-20 07:53:00
69323    26386    832    2017-02-20 10:31:00    2017-02-20 10:31:00
69324    26386    750    2017-02-20 02:07:00    2017-02-20 02:07:00
69325    26386    844    2017-02-20 11:08:00    2017-02-20 11:08:00
69326    26386    599    2017-02-20 06:51:00    2017-02-20 06:51:00
69327    26386    855    2017-02-20 02:13:00    2017-02-20 02:13:00
69328    26387    941    2017-02-20 05:18:00    2017-02-20 05:18:00
69329    26387    945    2017-02-20 13:50:00    2017-02-20 13:50:00
69330    26387    637    2017-02-20 23:06:00    2017-02-20 23:06:00
69331    26387    727    2017-02-20 14:07:00    2017-02-20 14:07:00
69332    26387    905    2017-02-20 09:35:00    2017-02-20 09:35:00
69333    26388    817    2017-02-20 06:35:00    2017-02-20 06:35:00
69334    26388    818    2017-02-20 20:18:00    2017-02-20 20:18:00
69335    26388    474    2017-02-20 02:43:00    2017-02-20 02:43:00
69336    26388    939    2017-02-20 13:06:00    2017-02-20 13:06:00
69337    26388    927    2017-02-20 13:11:00    2017-02-20 13:11:00
69338    26389    628    2017-02-20 14:29:00    2017-02-20 14:29:00
69339    26389    502    2017-02-20 13:04:00    2017-02-20 13:04:00
69340    26389    795    2017-02-20 07:04:00    2017-02-20 07:04:00
69341    26389    710    2017-02-20 10:21:00    2017-02-20 10:21:00
69342    26389    696    2017-02-20 18:50:00    2017-02-20 18:50:00
69343    26390    946    2017-02-20 10:57:00    2017-02-20 10:57:00
69344    26390    889    2017-02-20 03:59:00    2017-02-20 03:59:00
69345    26390    897    2017-02-20 04:30:00    2017-02-20 04:30:00
69346    26390    629    2017-02-20 13:06:00    2017-02-20 13:06:00
69347    26390    789    2017-02-20 16:50:00    2017-02-20 16:50:00
69348    26391    504    2017-02-21 07:29:00    2017-02-21 07:29:00
69349    26391    673    2017-02-21 07:28:00    2017-02-21 07:28:00
69350    26391    921    2017-02-21 10:26:00    2017-02-21 10:26:00
69351    26391    764    2017-02-21 21:22:00    2017-02-21 21:22:00
69352    26391    478    2017-02-21 16:48:00    2017-02-21 16:48:00
69353    26392    701    2017-02-21 15:24:00    2017-02-21 15:24:00
69354    26392    888    2017-02-21 08:48:00    2017-02-21 08:48:00
69355    26392    596    2017-02-21 21:53:00    2017-02-21 21:53:00
69356    26392    797    2017-02-21 13:44:00    2017-02-21 13:44:00
69357    26392    695    2017-02-21 14:33:00    2017-02-21 14:33:00
69358    26393    760    2017-02-21 14:23:00    2017-02-21 14:23:00
69359    26393    680    2017-02-21 07:31:00    2017-02-21 07:31:00
69360    26393    870    2017-02-21 02:24:00    2017-02-21 02:24:00
69361    26393    908    2017-02-21 07:15:00    2017-02-21 07:15:00
69362    26393    728    2017-02-21 09:12:00    2017-02-21 09:12:00
69363    26394    502    2017-02-21 07:28:00    2017-02-21 07:28:00
69364    26394    615    2017-02-21 17:18:00    2017-02-21 17:18:00
69365    26394    757    2017-02-21 16:48:00    2017-02-21 16:48:00
69366    26394    534    2017-02-21 15:00:00    2017-02-21 15:00:00
69367    26394    771    2017-02-21 15:57:00    2017-02-21 15:57:00
69368    26395    910    2017-02-21 14:22:00    2017-02-21 14:22:00
69369    26395    482    2017-02-21 20:13:00    2017-02-21 20:13:00
69370    26395    842    2017-02-21 06:07:00    2017-02-21 06:07:00
69371    26395    534    2017-02-21 09:21:00    2017-02-21 09:21:00
69372    26395    906    2017-02-21 10:42:00    2017-02-21 10:42:00
69373    26396    573    2017-02-21 11:42:00    2017-02-21 11:42:00
69374    26396    704    2017-02-21 11:56:00    2017-02-21 11:56:00
69375    26396    539    2017-02-21 14:15:00    2017-02-21 14:15:00
69376    26396    806    2017-02-21 04:38:00    2017-02-21 04:38:00
69377    26396    766    2017-02-21 12:37:00    2017-02-21 12:37:00
69378    26397    896    2017-02-21 19:34:00    2017-02-21 19:34:00
69379    26397    759    2017-02-21 09:10:00    2017-02-21 09:10:00
69380    26397    803    2017-02-21 16:48:00    2017-02-21 16:48:00
69381    26397    631    2017-02-21 01:18:00    2017-02-21 01:18:00
69382    26397    577    2017-02-21 14:31:00    2017-02-21 14:31:00
69383    26398    938    2017-02-21 10:13:00    2017-02-21 10:13:00
69384    26398    900    2017-02-21 01:27:00    2017-02-21 01:27:00
69385    26398    940    2017-02-21 17:02:00    2017-02-21 17:02:00
69386    26398    547    2017-02-21 01:02:00    2017-02-21 01:02:00
69387    26398    494    2017-02-21 14:19:00    2017-02-21 14:19:00
69388    26399    704    2017-02-21 07:46:00    2017-02-21 07:46:00
69389    26399    867    2017-02-21 06:02:00    2017-02-21 06:02:00
69390    26399    540    2017-02-21 17:05:00    2017-02-21 17:05:00
69391    26399    500    2017-02-21 10:56:00    2017-02-21 10:56:00
69392    26399    715    2017-02-21 23:40:00    2017-02-21 23:40:00
69393    26400    783    2017-02-21 20:30:00    2017-02-21 20:30:00
69394    26400    698    2017-02-21 10:00:00    2017-02-21 10:00:00
69395    26400    481    2017-02-21 06:26:00    2017-02-21 06:26:00
69396    26400    951    2017-02-21 01:07:00    2017-02-21 01:07:00
69397    26400    582    2017-02-21 09:28:00    2017-02-21 09:28:00
69398    26401    628    2017-02-21 04:37:00    2017-02-21 04:37:00
69399    26401    701    2017-02-21 10:14:00    2017-02-21 10:14:00
69400    26401    698    2017-02-21 01:24:00    2017-02-21 01:24:00
69401    26401    777    2017-02-21 06:42:00    2017-02-21 06:42:00
69402    26401    614    2017-02-21 06:45:00    2017-02-21 06:45:00
69403    26402    703    2017-02-21 21:39:00    2017-02-21 21:39:00
69404    26402    528    2017-02-21 14:24:00    2017-02-21 14:24:00
69405    26402    794    2017-02-21 04:41:00    2017-02-21 04:41:00
69406    26402    603    2017-02-21 15:28:00    2017-02-21 15:28:00
69407    26402    560    2017-02-21 11:43:00    2017-02-21 11:43:00
69408    26403    692    2017-02-21 07:24:00    2017-02-21 07:24:00
69409    26403    521    2017-02-21 14:58:00    2017-02-21 14:58:00
69410    26403    891    2017-02-21 03:18:00    2017-02-21 03:18:00
69411    26403    958    2017-02-21 22:08:00    2017-02-21 22:08:00
69412    26403    609    2017-02-21 20:27:00    2017-02-21 20:27:00
69413    26404    476    2017-02-21 05:47:00    2017-02-21 05:47:00
69414    26404    611    2017-02-21 14:55:00    2017-02-21 14:55:00
69415    26404    863    2017-02-21 10:43:00    2017-02-21 10:43:00
69416    26404    607    2017-02-21 10:27:00    2017-02-21 10:27:00
69417    26404    541    2017-02-21 02:33:00    2017-02-21 02:33:00
69418    26405    724    2017-02-21 11:52:00    2017-02-21 11:52:00
69419    26405    620    2017-02-21 02:17:00    2017-02-21 02:17:00
69420    26405    898    2017-02-21 16:01:00    2017-02-21 16:01:00
69421    26405    511    2017-02-21 03:20:00    2017-02-21 03:20:00
69422    26405    756    2017-02-21 09:51:00    2017-02-21 09:51:00
69423    26406    496    2017-02-21 20:25:00    2017-02-21 20:25:00
69424    26406    550    2017-02-21 01:18:00    2017-02-21 01:18:00
69425    26406    705    2017-02-21 05:49:00    2017-02-21 05:49:00
69426    26406    488    2017-02-21 05:51:00    2017-02-21 05:51:00
69427    26406    550    2017-02-21 10:34:00    2017-02-21 10:34:00
69428    26407    520    2017-02-21 17:38:00    2017-02-21 17:38:00
69429    26407    878    2017-02-21 11:11:00    2017-02-21 11:11:00
69430    26407    748    2017-02-21 05:55:00    2017-02-21 05:55:00
69431    26407    594    2017-02-21 09:42:00    2017-02-21 09:42:00
69432    26407    624    2017-02-21 07:32:00    2017-02-21 07:32:00
69433    26408    676    2017-02-21 13:55:00    2017-02-21 13:55:00
69434    26408    473    2017-02-21 13:12:00    2017-02-21 13:12:00
69435    26408    704    2017-02-21 08:20:00    2017-02-21 08:20:00
69436    26408    663    2017-02-21 01:10:00    2017-02-21 01:10:00
69437    26408    634    2017-02-21 16:32:00    2017-02-21 16:32:00
69438    26409    758    2017-02-21 14:06:00    2017-02-21 14:06:00
69439    26409    529    2017-02-21 08:34:00    2017-02-21 08:34:00
69440    26409    537    2017-02-21 23:06:00    2017-02-21 23:06:00
69441    26409    566    2017-02-21 08:40:00    2017-02-21 08:40:00
69442    26409    656    2017-02-21 03:24:00    2017-02-21 03:24:00
69443    26410    751    2017-02-21 07:33:00    2017-02-21 07:33:00
69444    26410    506    2017-02-21 03:28:00    2017-02-21 03:28:00
69445    26410    544    2017-02-21 03:42:00    2017-02-21 03:42:00
69446    26410    506    2017-02-21 23:09:00    2017-02-21 23:09:00
69447    26410    621    2017-02-21 16:24:00    2017-02-21 16:24:00
69448    26411    591    2017-02-21 15:48:00    2017-02-21 15:48:00
69449    26411    952    2017-02-21 07:21:00    2017-02-21 07:21:00
69450    26411    649    2017-02-21 10:47:00    2017-02-21 10:47:00
69451    26411    736    2017-02-21 14:31:00    2017-02-21 14:31:00
69452    26411    959    2017-02-21 10:31:00    2017-02-21 10:31:00
69453    26412    639    2017-02-21 04:01:00    2017-02-21 04:01:00
69454    26412    510    2017-02-21 02:16:00    2017-02-21 02:16:00
69455    26412    571    2017-02-21 10:07:00    2017-02-21 10:07:00
69456    26412    469    2017-02-21 06:05:00    2017-02-21 06:05:00
69457    26412    489    2017-02-21 09:15:00    2017-02-21 09:15:00
69458    26413    954    2017-02-21 10:46:00    2017-02-21 10:46:00
69459    26413    920    2017-02-21 22:18:00    2017-02-21 22:18:00
69460    26413    556    2017-02-21 20:42:00    2017-02-21 20:42:00
69461    26413    585    2017-02-21 03:00:00    2017-02-21 03:00:00
69462    26413    819    2017-02-21 03:16:00    2017-02-21 03:16:00
69463    26414    771    2017-02-21 15:18:00    2017-02-21 15:18:00
69464    26414    613    2017-02-21 18:54:00    2017-02-21 18:54:00
69465    26414    586    2017-02-21 05:48:00    2017-02-21 05:48:00
69466    26414    569    2017-02-21 15:07:00    2017-02-21 15:07:00
69467    26414    610    2017-02-21 08:11:00    2017-02-21 08:11:00
69468    26415    691    2017-02-21 11:37:00    2017-02-21 11:37:00
69469    26415    792    2017-02-21 23:26:00    2017-02-21 23:26:00
69470    26415    706    2017-02-21 04:01:00    2017-02-21 04:01:00
69471    26415    941    2017-02-21 04:30:00    2017-02-21 04:30:00
69472    26415    865    2017-02-21 15:04:00    2017-02-21 15:04:00
69473    26416    653    2017-02-21 02:27:00    2017-02-21 02:27:00
69474    26416    747    2017-02-21 22:03:00    2017-02-21 22:03:00
69475    26416    616    2017-02-21 19:04:00    2017-02-21 19:04:00
69476    26416    671    2017-02-21 17:57:00    2017-02-21 17:57:00
69477    26416    924    2017-02-21 02:08:00    2017-02-21 02:08:00
69478    26417    521    2017-02-21 22:46:00    2017-02-21 22:46:00
69479    26417    852    2017-02-21 12:18:00    2017-02-21 12:18:00
69480    26417    523    2017-02-21 20:06:00    2017-02-21 20:06:00
69481    26417    663    2017-02-21 08:47:00    2017-02-21 08:47:00
69482    26417    676    2017-02-21 08:07:00    2017-02-21 08:07:00
69483    26418    768    2017-02-21 18:31:00    2017-02-21 18:31:00
69484    26418    961    2017-02-21 09:13:00    2017-02-21 09:13:00
69485    26418    948    2017-02-21 17:00:00    2017-02-21 17:00:00
69486    26418    652    2017-02-21 17:45:00    2017-02-21 17:45:00
69487    26418    814    2017-02-21 15:12:00    2017-02-21 15:12:00
69488    26419    671    2017-02-21 04:47:00    2017-02-21 04:47:00
69489    26419    835    2017-02-21 02:52:00    2017-02-21 02:52:00
69490    26419    479    2017-02-21 23:43:00    2017-02-21 23:43:00
69491    26419    682    2017-02-21 02:30:00    2017-02-21 02:30:00
69492    26419    825    2017-02-21 21:51:00    2017-02-21 21:51:00
69493    26420    512    2017-02-21 04:04:00    2017-02-21 04:04:00
69494    26420    808    2017-02-21 20:11:00    2017-02-21 20:11:00
69495    26420    952    2017-02-21 07:34:00    2017-02-21 07:34:00
69496    26420    787    2017-02-21 20:43:00    2017-02-21 20:43:00
69497    26420    648    2017-02-21 22:40:00    2017-02-21 22:40:00
69498    26421    899    2017-02-21 08:47:00    2017-02-21 08:47:00
69499    26421    604    2017-02-21 02:48:00    2017-02-21 02:48:00
69500    26421    903    2017-02-21 23:35:00    2017-02-21 23:35:00
69501    26421    927    2017-02-21 11:06:00    2017-02-21 11:06:00
69502    26421    708    2017-02-21 20:10:00    2017-02-21 20:10:00
69503    26422    659    2017-02-21 16:02:00    2017-02-21 16:02:00
69504    26422    757    2017-02-21 02:45:00    2017-02-21 02:45:00
69505    26422    604    2017-02-21 13:22:00    2017-02-21 13:22:00
69506    26422    718    2017-02-21 09:22:00    2017-02-21 09:22:00
69507    26422    816    2017-02-21 21:49:00    2017-02-21 21:49:00
69508    26423    816    2017-02-21 11:52:00    2017-02-21 11:52:00
69509    26423    568    2017-02-21 22:56:00    2017-02-21 22:56:00
69510    26423    674    2017-02-21 22:26:00    2017-02-21 22:26:00
69511    26423    669    2017-02-21 16:52:00    2017-02-21 16:52:00
69512    26423    705    2017-02-21 01:35:00    2017-02-21 01:35:00
69513    26424    589    2017-02-21 16:57:00    2017-02-21 16:57:00
69514    26424    631    2017-02-21 13:06:00    2017-02-21 13:06:00
69515    26424    828    2017-02-21 08:51:00    2017-02-21 08:51:00
69516    26424    905    2017-02-21 12:48:00    2017-02-21 12:48:00
69517    26424    589    2017-02-21 14:09:00    2017-02-21 14:09:00
69518    26425    792    2017-02-21 22:10:00    2017-02-21 22:10:00
69519    26425    751    2017-02-21 19:06:00    2017-02-21 19:06:00
69520    26425    736    2017-02-21 21:03:00    2017-02-21 21:03:00
69521    26425    787    2017-02-21 20:00:00    2017-02-21 20:00:00
69522    26425    623    2017-02-21 17:49:00    2017-02-21 17:49:00
69523    26426    816    2017-02-21 12:43:00    2017-02-21 12:43:00
69524    26426    850    2017-02-21 20:49:00    2017-02-21 20:49:00
69525    26426    536    2017-02-21 16:59:00    2017-02-21 16:59:00
69526    26426    662    2017-02-21 14:09:00    2017-02-21 14:09:00
69527    26426    732    2017-02-21 21:38:00    2017-02-21 21:38:00
69528    26427    596    2017-02-21 02:30:00    2017-02-21 02:30:00
69529    26427    907    2017-02-21 06:22:00    2017-02-21 06:22:00
69530    26427    463    2017-02-21 17:45:00    2017-02-21 17:45:00
69531    26427    932    2017-02-21 10:28:00    2017-02-21 10:28:00
69532    26427    941    2017-02-21 18:22:00    2017-02-21 18:22:00
69533    26428    941    2017-02-21 08:37:00    2017-02-21 08:37:00
69534    26428    804    2017-02-21 22:40:00    2017-02-21 22:40:00
69535    26428    653    2017-02-21 11:01:00    2017-02-21 11:01:00
69536    26428    783    2017-02-21 17:00:00    2017-02-21 17:00:00
69537    26428    735    2017-02-21 10:42:00    2017-02-21 10:42:00
69538    26429    611    2017-02-21 22:28:00    2017-02-21 22:28:00
69539    26429    694    2017-02-21 02:36:00    2017-02-21 02:36:00
69540    26429    577    2017-02-21 21:12:00    2017-02-21 21:12:00
69541    26429    757    2017-02-21 10:10:00    2017-02-21 10:10:00
69542    26429    901    2017-02-21 14:13:00    2017-02-21 14:13:00
69543    26430    759    2017-02-21 04:53:00    2017-02-21 04:53:00
69544    26430    499    2017-02-21 05:43:00    2017-02-21 05:43:00
69545    26430    840    2017-02-21 23:05:00    2017-02-21 23:05:00
69546    26430    911    2017-02-21 05:39:00    2017-02-21 05:39:00
69547    26430    528    2017-02-21 04:34:00    2017-02-21 04:34:00
69548    26431    504    2017-02-21 21:49:00    2017-02-21 21:49:00
69549    26431    952    2017-02-21 04:40:00    2017-02-21 04:40:00
69550    26431    763    2017-02-21 18:05:00    2017-02-21 18:05:00
69551    26431    601    2017-02-21 14:34:00    2017-02-21 14:34:00
69552    26431    888    2017-02-21 19:14:00    2017-02-21 19:14:00
69553    26432    708    2017-02-21 05:19:00    2017-02-21 05:19:00
69554    26432    828    2017-02-21 15:53:00    2017-02-21 15:53:00
69555    26432    600    2017-02-21 21:39:00    2017-02-21 21:39:00
69556    26432    479    2017-02-21 22:40:00    2017-02-21 22:40:00
69557    26432    900    2017-02-21 08:34:00    2017-02-21 08:34:00
69558    26433    831    2017-02-21 08:41:00    2017-02-21 08:41:00
69559    26433    722    2017-02-21 19:38:00    2017-02-21 19:38:00
69560    26433    806    2017-02-21 23:50:00    2017-02-21 23:50:00
69561    26433    608    2017-02-21 18:48:00    2017-02-21 18:48:00
69562    26433    646    2017-02-21 20:42:00    2017-02-21 20:42:00
69563    26434    832    2017-02-21 06:39:00    2017-02-21 06:39:00
69564    26434    781    2017-02-21 18:44:00    2017-02-21 18:44:00
69565    26434    665    2017-02-21 22:45:00    2017-02-21 22:45:00
69566    26434    757    2017-02-21 01:50:00    2017-02-21 01:50:00
69567    26434    478    2017-02-21 21:30:00    2017-02-21 21:30:00
69568    26435    478    2017-02-21 18:38:00    2017-02-21 18:38:00
69569    26435    587    2017-02-21 09:02:00    2017-02-21 09:02:00
69570    26435    532    2017-02-21 20:04:00    2017-02-21 20:04:00
69571    26435    652    2017-02-21 01:30:00    2017-02-21 01:30:00
69572    26435    474    2017-02-21 02:57:00    2017-02-21 02:57:00
69573    26436    480    2017-02-21 02:42:00    2017-02-21 02:42:00
69574    26436    626    2017-02-21 22:23:00    2017-02-21 22:23:00
69575    26436    846    2017-02-21 23:19:00    2017-02-21 23:19:00
69576    26436    641    2017-02-21 15:25:00    2017-02-21 15:25:00
69577    26436    543    2017-02-21 14:39:00    2017-02-21 14:39:00
69578    26437    538    2017-02-21 16:57:00    2017-02-21 16:57:00
69579    26437    946    2017-02-21 08:15:00    2017-02-21 08:15:00
69580    26437    482    2017-02-21 17:14:00    2017-02-21 17:14:00
69581    26437    851    2017-02-21 21:02:00    2017-02-21 21:02:00
69582    26437    816    2017-02-21 04:23:00    2017-02-21 04:23:00
69583    26438    747    2017-02-21 07:05:00    2017-02-21 07:05:00
69584    26438    575    2017-02-21 12:26:00    2017-02-21 12:26:00
69585    26438    928    2017-02-21 05:24:00    2017-02-21 05:24:00
69586    26438    584    2017-02-21 18:38:00    2017-02-21 18:38:00
69587    26438    479    2017-02-21 15:25:00    2017-02-21 15:25:00
69588    26439    480    2017-02-21 05:38:00    2017-02-21 05:38:00
69589    26439    640    2017-02-21 11:56:00    2017-02-21 11:56:00
69590    26439    677    2017-02-21 09:13:00    2017-02-21 09:13:00
69591    26439    623    2017-02-21 07:12:00    2017-02-21 07:12:00
69592    26439    778    2017-02-21 14:55:00    2017-02-21 14:55:00
69593    26440    711    2017-02-21 04:58:00    2017-02-21 04:58:00
69594    26440    489    2017-02-21 08:46:00    2017-02-21 08:46:00
69595    26440    895    2017-02-21 18:46:00    2017-02-21 18:46:00
69596    26440    606    2017-02-21 01:01:00    2017-02-21 01:01:00
69597    26440    650    2017-02-21 10:21:00    2017-02-21 10:21:00
69598    26441    575    2017-02-21 16:59:00    2017-02-21 16:59:00
69599    26441    788    2017-02-21 21:06:00    2017-02-21 21:06:00
69600    26441    594    2017-02-21 08:58:00    2017-02-21 08:58:00
69601    26441    775    2017-02-21 16:09:00    2017-02-21 16:09:00
69602    26441    540    2017-02-21 23:06:00    2017-02-21 23:06:00
69603    26442    823    2017-02-21 05:27:00    2017-02-21 05:27:00
69604    26442    577    2017-02-21 08:53:00    2017-02-21 08:53:00
69605    26442    607    2017-02-21 02:41:00    2017-02-21 02:41:00
69606    26442    772    2017-02-21 07:16:00    2017-02-21 07:16:00
69607    26442    922    2017-02-21 23:52:00    2017-02-21 23:52:00
69608    26443    575    2017-02-21 23:45:00    2017-02-21 23:45:00
69609    26443    643    2017-02-21 05:55:00    2017-02-21 05:55:00
69610    26443    682    2017-02-21 09:06:00    2017-02-21 09:06:00
69611    26443    693    2017-02-21 20:53:00    2017-02-21 20:53:00
69612    26443    610    2017-02-21 17:34:00    2017-02-21 17:34:00
69613    26444    873    2017-02-21 06:07:00    2017-02-21 06:07:00
69614    26444    928    2017-02-21 01:59:00    2017-02-21 01:59:00
69615    26444    494    2017-02-21 19:36:00    2017-02-21 19:36:00
69616    26444    772    2017-02-21 09:01:00    2017-02-21 09:01:00
69617    26444    749    2017-02-21 03:02:00    2017-02-21 03:02:00
69618    26445    471    2017-02-21 07:17:00    2017-02-21 07:17:00
69619    26445    802    2017-02-21 09:37:00    2017-02-21 09:37:00
69620    26445    690    2017-02-21 03:11:00    2017-02-21 03:11:00
69621    26445    913    2017-02-21 18:22:00    2017-02-21 18:22:00
69622    26445    611    2017-02-21 05:26:00    2017-02-21 05:26:00
69623    26446    705    2017-02-21 06:28:00    2017-02-21 06:28:00
69624    26446    595    2017-02-21 02:13:00    2017-02-21 02:13:00
69625    26446    634    2017-02-21 08:23:00    2017-02-21 08:23:00
69626    26446    786    2017-02-21 23:38:00    2017-02-21 23:38:00
69627    26446    831    2017-02-21 11:26:00    2017-02-21 11:26:00
69628    26447    715    2017-02-21 17:00:00    2017-02-21 17:00:00
69629    26447    917    2017-02-21 11:38:00    2017-02-21 11:38:00
69630    26447    619    2017-02-21 10:32:00    2017-02-21 10:32:00
69631    26447    673    2017-02-21 23:58:00    2017-02-21 23:58:00
69632    26447    780    2017-02-21 17:02:00    2017-02-21 17:02:00
69633    26448    643    2017-02-21 16:07:00    2017-02-21 16:07:00
69634    26448    781    2017-02-21 23:31:00    2017-02-21 23:31:00
69635    26448    932    2017-02-21 13:31:00    2017-02-21 13:31:00
69636    26448    683    2017-02-21 12:40:00    2017-02-21 12:40:00
69637    26448    553    2017-02-21 10:22:00    2017-02-21 10:22:00
69638    26449    519    2017-02-21 18:24:00    2017-02-21 18:24:00
69639    26449    807    2017-02-21 18:50:00    2017-02-21 18:50:00
69640    26449    914    2017-02-21 07:28:00    2017-02-21 07:28:00
69641    26449    938    2017-02-21 15:57:00    2017-02-21 15:57:00
69642    26449    840    2017-02-21 04:44:00    2017-02-21 04:44:00
69643    26450    747    2017-02-21 14:37:00    2017-02-21 14:37:00
69644    26450    494    2017-02-21 20:45:00    2017-02-21 20:45:00
69645    26450    705    2017-02-21 16:14:00    2017-02-21 16:14:00
69646    26450    654    2017-02-21 23:38:00    2017-02-21 23:38:00
69647    26450    481    2017-02-21 21:22:00    2017-02-21 21:22:00
69648    26451    530    2017-02-21 08:26:00    2017-02-21 08:26:00
69649    26451    923    2017-02-21 22:17:00    2017-02-21 22:17:00
69650    26451    517    2017-02-21 13:48:00    2017-02-21 13:48:00
69651    26451    722    2017-02-21 18:32:00    2017-02-21 18:32:00
69652    26451    961    2017-02-21 17:47:00    2017-02-21 17:47:00
69653    26452    835    2017-02-21 03:06:00    2017-02-21 03:06:00
69654    26452    576    2017-02-21 07:47:00    2017-02-21 07:47:00
69655    26452    854    2017-02-21 14:32:00    2017-02-21 14:32:00
69656    26452    744    2017-02-21 07:30:00    2017-02-21 07:30:00
69657    26452    893    2017-02-21 05:34:00    2017-02-21 05:34:00
69658    26453    611    2017-02-21 01:51:00    2017-02-21 01:51:00
69659    26453    601    2017-02-21 01:41:00    2017-02-21 01:41:00
69660    26453    928    2017-02-21 03:30:00    2017-02-21 03:30:00
69661    26453    483    2017-02-21 03:20:00    2017-02-21 03:20:00
69662    26453    482    2017-02-21 18:29:00    2017-02-21 18:29:00
69663    26454    514    2017-02-21 11:58:00    2017-02-21 11:58:00
69664    26454    802    2017-02-21 14:16:00    2017-02-21 14:16:00
69665    26454    803    2017-02-21 21:09:00    2017-02-21 21:09:00
69666    26454    739    2017-02-21 06:34:00    2017-02-21 06:34:00
69667    26454    496    2017-02-21 13:51:00    2017-02-21 13:51:00
69668    26455    729    2017-02-21 05:06:00    2017-02-21 05:06:00
69669    26455    495    2017-02-21 15:48:00    2017-02-21 15:48:00
69670    26455    638    2017-02-21 15:53:00    2017-02-21 15:53:00
69671    26455    523    2017-02-21 18:14:00    2017-02-21 18:14:00
69672    26455    790    2017-02-21 14:50:00    2017-02-21 14:50:00
69673    26456    773    2017-02-21 04:16:00    2017-02-21 04:16:00
69674    26456    922    2017-02-21 09:17:00    2017-02-21 09:17:00
69675    26456    892    2017-02-21 11:04:00    2017-02-21 11:04:00
69676    26456    579    2017-02-21 13:34:00    2017-02-21 13:34:00
69677    26456    803    2017-02-21 14:56:00    2017-02-21 14:56:00
69678    26457    605    2017-02-21 08:07:00    2017-02-21 08:07:00
69679    26457    831    2017-02-21 10:46:00    2017-02-21 10:46:00
69680    26457    953    2017-02-21 11:40:00    2017-02-21 11:40:00
69681    26457    530    2017-02-21 07:58:00    2017-02-21 07:58:00
69682    26457    594    2017-02-21 15:36:00    2017-02-21 15:36:00
69683    26458    555    2017-02-21 09:11:00    2017-02-21 09:11:00
69684    26458    767    2017-02-21 15:26:00    2017-02-21 15:26:00
69685    26458    932    2017-02-21 18:27:00    2017-02-21 18:27:00
69686    26458    710    2017-02-21 22:21:00    2017-02-21 22:21:00
69687    26458    530    2017-02-21 13:29:00    2017-02-21 13:29:00
69688    26459    702    2017-02-21 04:24:00    2017-02-21 04:24:00
69689    26459    709    2017-02-21 09:10:00    2017-02-21 09:10:00
69690    26459    555    2017-02-21 08:34:00    2017-02-21 08:34:00
69691    26459    694    2017-02-21 06:55:00    2017-02-21 06:55:00
69692    26459    705    2017-02-21 09:39:00    2017-02-21 09:39:00
69693    26460    813    2017-02-21 09:52:00    2017-02-21 09:52:00
69694    26460    874    2017-02-21 09:04:00    2017-02-21 09:04:00
69695    26460    588    2017-02-21 19:32:00    2017-02-21 19:32:00
69696    26460    758    2017-02-21 08:18:00    2017-02-21 08:18:00
69697    26460    838    2017-02-21 02:17:00    2017-02-21 02:17:00
69698    26461    768    2017-02-22 14:06:00    2017-02-22 14:06:00
69699    26461    803    2017-02-22 07:03:00    2017-02-22 07:03:00
69700    26461    886    2017-02-22 23:48:00    2017-02-22 23:48:00
69701    26461    598    2017-02-22 10:45:00    2017-02-22 10:45:00
69702    26461    833    2017-02-22 16:03:00    2017-02-22 16:03:00
69703    26462    824    2017-02-22 11:06:00    2017-02-22 11:06:00
69704    26462    577    2017-02-22 05:01:00    2017-02-22 05:01:00
69705    26462    817    2017-02-22 04:06:00    2017-02-22 04:06:00
69706    26462    708    2017-02-22 16:06:00    2017-02-22 16:06:00
69707    26462    897    2017-02-22 11:27:00    2017-02-22 11:27:00
69708    26463    921    2017-02-22 04:48:00    2017-02-22 04:48:00
69709    26463    921    2017-02-22 19:23:00    2017-02-22 19:23:00
69710    26463    518    2017-02-22 15:37:00    2017-02-22 15:37:00
69711    26463    730    2017-02-22 13:09:00    2017-02-22 13:09:00
69712    26463    773    2017-02-22 12:00:00    2017-02-22 12:00:00
69713    26464    864    2017-02-22 19:55:00    2017-02-22 19:55:00
69714    26464    518    2017-02-22 18:59:00    2017-02-22 18:59:00
69715    26464    745    2017-02-22 16:05:00    2017-02-22 16:05:00
69716    26464    501    2017-02-22 09:44:00    2017-02-22 09:44:00
69717    26464    578    2017-02-22 04:21:00    2017-02-22 04:21:00
69718    26465    888    2017-02-22 01:53:00    2017-02-22 01:53:00
69719    26465    484    2017-02-22 14:18:00    2017-02-22 14:18:00
69720    26465    551    2017-02-22 06:27:00    2017-02-22 06:27:00
69721    26465    531    2017-02-22 16:41:00    2017-02-22 16:41:00
69722    26465    521    2017-02-22 14:52:00    2017-02-22 14:52:00
69723    26466    792    2017-02-22 10:39:00    2017-02-22 10:39:00
69724    26466    539    2017-02-22 20:07:00    2017-02-22 20:07:00
69725    26466    896    2017-02-22 02:20:00    2017-02-22 02:20:00
69726    26466    601    2017-02-22 10:13:00    2017-02-22 10:13:00
69727    26466    781    2017-02-22 14:44:00    2017-02-22 14:44:00
69728    26467    540    2017-02-22 04:36:00    2017-02-22 04:36:00
69729    26467    470    2017-02-22 17:31:00    2017-02-22 17:31:00
69730    26467    468    2017-02-22 12:52:00    2017-02-22 12:52:00
69731    26467    884    2017-02-22 16:13:00    2017-02-22 16:13:00
69732    26467    867    2017-02-22 03:54:00    2017-02-22 03:54:00
69733    26468    879    2017-02-22 22:32:00    2017-02-22 22:32:00
69734    26468    817    2017-02-22 07:52:00    2017-02-22 07:52:00
69735    26468    721    2017-02-22 21:24:00    2017-02-22 21:24:00
69736    26468    538    2017-02-22 05:00:00    2017-02-22 05:00:00
69737    26468    902    2017-02-22 09:05:00    2017-02-22 09:05:00
69738    26469    886    2017-02-22 07:20:00    2017-02-22 07:20:00
69739    26469    904    2017-02-22 14:39:00    2017-02-22 14:39:00
69740    26469    905    2017-02-22 03:51:00    2017-02-22 03:51:00
69741    26469    482    2017-02-22 04:30:00    2017-02-22 04:30:00
69742    26469    840    2017-02-22 05:34:00    2017-02-22 05:34:00
69743    26470    534    2017-02-22 15:51:00    2017-02-22 15:51:00
69744    26470    855    2017-02-22 18:01:00    2017-02-22 18:01:00
69745    26470    574    2017-02-22 10:47:00    2017-02-22 10:47:00
69746    26470    656    2017-02-22 19:55:00    2017-02-22 19:55:00
69747    26470    554    2017-02-22 04:04:00    2017-02-22 04:04:00
69748    26471    624    2017-02-22 14:41:00    2017-02-22 14:41:00
69749    26471    952    2017-02-22 21:12:00    2017-02-22 21:12:00
69750    26471    644    2017-02-22 20:11:00    2017-02-22 20:11:00
69751    26471    549    2017-02-22 01:58:00    2017-02-22 01:58:00
69752    26471    914    2017-02-22 22:49:00    2017-02-22 22:49:00
69753    26472    561    2017-02-22 12:07:00    2017-02-22 12:07:00
69754    26472    798    2017-02-22 18:02:00    2017-02-22 18:02:00
69755    26472    743    2017-02-22 12:19:00    2017-02-22 12:19:00
69756    26472    900    2017-02-22 19:47:00    2017-02-22 19:47:00
69757    26472    526    2017-02-22 15:53:00    2017-02-22 15:53:00
69758    26473    602    2017-02-22 07:29:00    2017-02-22 07:29:00
69759    26473    630    2017-02-22 18:41:00    2017-02-22 18:41:00
69760    26473    931    2017-02-22 01:52:00    2017-02-22 01:52:00
69761    26473    756    2017-02-22 19:57:00    2017-02-22 19:57:00
69762    26473    558    2017-02-22 17:14:00    2017-02-22 17:14:00
69763    26474    500    2017-02-22 19:18:00    2017-02-22 19:18:00
69764    26474    675    2017-02-22 10:23:00    2017-02-22 10:23:00
69765    26474    595    2017-02-22 07:10:00    2017-02-22 07:10:00
69766    26474    960    2017-02-22 09:17:00    2017-02-22 09:17:00
69767    26474    612    2017-02-22 09:09:00    2017-02-22 09:09:00
69768    26475    857    2017-02-22 09:05:00    2017-02-22 09:05:00
69769    26475    469    2017-02-22 06:53:00    2017-02-22 06:53:00
69770    26475    898    2017-02-22 09:43:00    2017-02-22 09:43:00
69771    26475    931    2017-02-22 07:19:00    2017-02-22 07:19:00
69772    26475    920    2017-02-22 06:25:00    2017-02-22 06:25:00
69773    26476    903    2017-02-22 16:35:00    2017-02-22 16:35:00
69774    26476    627    2017-02-22 08:49:00    2017-02-22 08:49:00
69775    26476    773    2017-02-22 03:08:00    2017-02-22 03:08:00
69776    26476    467    2017-02-22 18:02:00    2017-02-22 18:02:00
69777    26476    912    2017-02-22 23:23:00    2017-02-22 23:23:00
69778    26477    668    2017-02-22 12:28:00    2017-02-22 12:28:00
69779    26477    699    2017-02-22 21:08:00    2017-02-22 21:08:00
69780    26477    906    2017-02-22 10:44:00    2017-02-22 10:44:00
69781    26477    961    2017-02-22 11:03:00    2017-02-22 11:03:00
69782    26477    911    2017-02-22 09:03:00    2017-02-22 09:03:00
69783    26478    711    2017-02-22 03:01:00    2017-02-22 03:01:00
69784    26478    688    2017-02-22 17:42:00    2017-02-22 17:42:00
69785    26478    732    2017-02-22 18:25:00    2017-02-22 18:25:00
69786    26478    500    2017-02-22 22:09:00    2017-02-22 22:09:00
69787    26478    875    2017-02-22 08:05:00    2017-02-22 08:05:00
69788    26479    707    2017-02-22 21:31:00    2017-02-22 21:31:00
69789    26479    567    2017-02-22 09:17:00    2017-02-22 09:17:00
69790    26479    551    2017-02-22 03:11:00    2017-02-22 03:11:00
69791    26479    939    2017-02-22 19:05:00    2017-02-22 19:05:00
69792    26479    671    2017-02-22 07:47:00    2017-02-22 07:47:00
69793    26480    612    2017-02-22 20:21:00    2017-02-22 20:21:00
69794    26480    773    2017-02-22 14:06:00    2017-02-22 14:06:00
69795    26480    807    2017-02-22 10:21:00    2017-02-22 10:21:00
69796    26480    534    2017-02-22 19:15:00    2017-02-22 19:15:00
69797    26480    900    2017-02-22 18:55:00    2017-02-22 18:55:00
69798    26481    569    2017-02-22 10:32:00    2017-02-22 10:32:00
69799    26481    604    2017-02-22 07:25:00    2017-02-22 07:25:00
69800    26481    748    2017-02-22 16:03:00    2017-02-22 16:03:00
69801    26481    613    2017-02-22 01:15:00    2017-02-22 01:15:00
69802    26481    787    2017-02-22 02:14:00    2017-02-22 02:14:00
69803    26482    833    2017-02-22 23:43:00    2017-02-22 23:43:00
69804    26482    669    2017-02-22 12:01:00    2017-02-22 12:01:00
69805    26482    876    2017-02-22 15:25:00    2017-02-22 15:25:00
69806    26482    611    2017-02-22 23:53:00    2017-02-22 23:53:00
69807    26482    784    2017-02-22 09:06:00    2017-02-22 09:06:00
69808    26483    860    2017-02-22 03:25:00    2017-02-22 03:25:00
69809    26483    957    2017-02-22 20:44:00    2017-02-22 20:44:00
69810    26483    748    2017-02-22 20:25:00    2017-02-22 20:25:00
69811    26483    898    2017-02-22 09:42:00    2017-02-22 09:42:00
69812    26483    858    2017-02-22 11:03:00    2017-02-22 11:03:00
69813    26484    894    2017-02-22 10:12:00    2017-02-22 10:12:00
69814    26484    932    2017-02-22 11:47:00    2017-02-22 11:47:00
69815    26484    699    2017-02-22 05:36:00    2017-02-22 05:36:00
69816    26484    955    2017-02-22 05:37:00    2017-02-22 05:37:00
69817    26484    464    2017-02-22 09:06:00    2017-02-22 09:06:00
69818    26485    528    2017-02-22 17:55:00    2017-02-22 17:55:00
69819    26485    652    2017-02-22 02:35:00    2017-02-22 02:35:00
69820    26485    474    2017-02-22 06:54:00    2017-02-22 06:54:00
69821    26485    756    2017-02-22 01:43:00    2017-02-22 01:43:00
69822    26485    480    2017-02-22 20:48:00    2017-02-22 20:48:00
69823    26486    594    2017-02-22 08:08:00    2017-02-22 08:08:00
69824    26486    762    2017-02-22 19:11:00    2017-02-22 19:11:00
69825    26486    903    2017-02-22 09:31:00    2017-02-22 09:31:00
69826    26486    586    2017-02-22 06:24:00    2017-02-22 06:24:00
69827    26486    835    2017-02-22 13:30:00    2017-02-22 13:30:00
69828    26487    577    2017-02-22 07:39:00    2017-02-22 07:39:00
69829    26487    629    2017-02-22 10:26:00    2017-02-22 10:26:00
69830    26487    944    2017-02-22 07:52:00    2017-02-22 07:52:00
69831    26487    899    2017-02-22 03:10:00    2017-02-22 03:10:00
69832    26487    753    2017-02-22 21:45:00    2017-02-22 21:45:00
69833    26488    862    2017-02-22 23:52:00    2017-02-22 23:52:00
69834    26488    744    2017-02-22 03:45:00    2017-02-22 03:45:00
69835    26488    734    2017-02-22 21:57:00    2017-02-22 21:57:00
69836    26488    781    2017-02-22 17:22:00    2017-02-22 17:22:00
69837    26488    754    2017-02-22 19:09:00    2017-02-22 19:09:00
69838    26489    815    2017-02-22 08:01:00    2017-02-22 08:01:00
69839    26489    895    2017-02-22 17:57:00    2017-02-22 17:57:00
69840    26489    729    2017-02-22 21:00:00    2017-02-22 21:00:00
69841    26489    813    2017-02-22 17:16:00    2017-02-22 17:16:00
69842    26489    801    2017-02-22 10:24:00    2017-02-22 10:24:00
69843    26490    634    2017-02-22 16:34:00    2017-02-22 16:34:00
69844    26490    907    2017-02-22 14:16:00    2017-02-22 14:16:00
69845    26490    481    2017-02-22 07:44:00    2017-02-22 07:44:00
69846    26490    888    2017-02-22 21:50:00    2017-02-22 21:50:00
69847    26490    620    2017-02-22 07:21:00    2017-02-22 07:21:00
69848    26491    888    2017-02-22 21:54:00    2017-02-22 21:54:00
69849    26491    511    2017-02-22 15:43:00    2017-02-22 15:43:00
69850    26491    575    2017-02-22 03:16:00    2017-02-22 03:16:00
69851    26491    868    2017-02-22 13:06:00    2017-02-22 13:06:00
69852    26491    617    2017-02-22 17:20:00    2017-02-22 17:20:00
69853    26492    953    2017-02-22 05:01:00    2017-02-22 05:01:00
69854    26492    554    2017-02-22 05:31:00    2017-02-22 05:31:00
69855    26492    561    2017-02-22 22:02:00    2017-02-22 22:02:00
69856    26492    897    2017-02-22 23:25:00    2017-02-22 23:25:00
69857    26492    790    2017-02-22 11:28:00    2017-02-22 11:28:00
69858    26493    730    2017-02-22 17:32:00    2017-02-22 17:32:00
69859    26493    489    2017-02-22 06:22:00    2017-02-22 06:22:00
69860    26493    928    2017-02-22 19:26:00    2017-02-22 19:26:00
69861    26493    519    2017-02-22 17:33:00    2017-02-22 17:33:00
69862    26493    678    2017-02-22 12:38:00    2017-02-22 12:38:00
69863    26494    681    2017-02-22 11:38:00    2017-02-22 11:38:00
69864    26494    589    2017-02-22 02:58:00    2017-02-22 02:58:00
69865    26494    635    2017-02-22 21:47:00    2017-02-22 21:47:00
69866    26494    688    2017-02-22 03:13:00    2017-02-22 03:13:00
69867    26494    490    2017-02-22 18:36:00    2017-02-22 18:36:00
69868    26495    476    2017-02-22 16:55:00    2017-02-22 16:55:00
69869    26495    811    2017-02-22 13:24:00    2017-02-22 13:24:00
69870    26495    792    2017-02-22 21:36:00    2017-02-22 21:36:00
69871    26495    925    2017-02-22 18:32:00    2017-02-22 18:32:00
69872    26495    919    2017-02-22 11:55:00    2017-02-22 11:55:00
69873    26496    828    2017-02-22 16:17:00    2017-02-22 16:17:00
69874    26496    616    2017-02-22 07:11:00    2017-02-22 07:11:00
69875    26496    555    2017-02-22 14:58:00    2017-02-22 14:58:00
69876    26496    559    2017-02-22 07:46:00    2017-02-22 07:46:00
69877    26496    890    2017-02-22 21:05:00    2017-02-22 21:05:00
69878    26497    922    2017-02-22 10:21:00    2017-02-22 10:21:00
69879    26497    558    2017-02-22 16:50:00    2017-02-22 16:50:00
69880    26497    709    2017-02-22 17:52:00    2017-02-22 17:52:00
69881    26497    832    2017-02-22 17:16:00    2017-02-22 17:16:00
69882    26497    916    2017-02-22 23:30:00    2017-02-22 23:30:00
69883    26498    534    2017-02-23 08:36:00    2017-02-23 08:36:00
69884    26498    896    2017-02-23 23:29:00    2017-02-23 23:29:00
69885    26498    499    2017-02-23 22:52:00    2017-02-23 22:52:00
69886    26498    656    2017-02-23 02:36:00    2017-02-23 02:36:00
69887    26498    739    2017-02-23 23:00:00    2017-02-23 23:00:00
69888    26499    909    2017-02-23 15:34:00    2017-02-23 15:34:00
69889    26499    824    2017-02-23 17:53:00    2017-02-23 17:53:00
69890    26499    848    2017-02-23 09:17:00    2017-02-23 09:17:00
69891    26499    690    2017-02-23 15:09:00    2017-02-23 15:09:00
69892    26499    788    2017-02-23 18:44:00    2017-02-23 18:44:00
69893    26500    834    2017-02-23 19:53:00    2017-02-23 19:53:00
69894    26500    960    2017-02-23 21:01:00    2017-02-23 21:01:00
69895    26500    484    2017-02-23 12:23:00    2017-02-23 12:23:00
69896    26500    868    2017-02-23 19:23:00    2017-02-23 19:23:00
69897    26500    531    2017-02-23 05:21:00    2017-02-23 05:21:00
69898    26501    795    2017-02-23 08:15:00    2017-02-23 08:15:00
69899    26501    896    2017-02-23 10:12:00    2017-02-23 10:12:00
69900    26501    926    2017-02-23 17:11:00    2017-02-23 17:11:00
69901    26501    746    2017-02-23 02:23:00    2017-02-23 02:23:00
69902    26501    474    2017-02-23 08:50:00    2017-02-23 08:50:00
69903    26502    657    2017-02-23 14:09:00    2017-02-23 14:09:00
69904    26502    482    2017-02-23 04:00:00    2017-02-23 04:00:00
69905    26502    765    2017-02-23 08:42:00    2017-02-23 08:42:00
69906    26502    707    2017-02-23 14:33:00    2017-02-23 14:33:00
69907    26502    843    2017-02-23 07:36:00    2017-02-23 07:36:00
69908    26503    503    2017-02-23 08:17:00    2017-02-23 08:17:00
69909    26503    763    2017-02-23 07:34:00    2017-02-23 07:34:00
69910    26503    504    2017-02-23 12:01:00    2017-02-23 12:01:00
69911    26503    650    2017-02-23 23:07:00    2017-02-23 23:07:00
69912    26503    469    2017-02-23 03:29:00    2017-02-23 03:29:00
69913    26504    629    2017-02-23 17:40:00    2017-02-23 17:40:00
69914    26504    952    2017-02-23 03:00:00    2017-02-23 03:00:00
69915    26504    960    2017-02-23 11:22:00    2017-02-23 11:22:00
69916    26504    577    2017-02-23 22:53:00    2017-02-23 22:53:00
69917    26504    938    2017-02-23 18:14:00    2017-02-23 18:14:00
69918    26505    590    2017-02-23 02:36:00    2017-02-23 02:36:00
69919    26505    920    2017-02-23 09:03:00    2017-02-23 09:03:00
69920    26505    626    2017-02-23 12:16:00    2017-02-23 12:16:00
69921    26505    762    2017-02-23 19:31:00    2017-02-23 19:31:00
69922    26505    765    2017-02-23 16:25:00    2017-02-23 16:25:00
69923    26506    857    2017-02-23 09:29:00    2017-02-23 09:29:00
69924    26506    958    2017-02-23 19:44:00    2017-02-23 19:44:00
69925    26506    477    2017-02-23 21:38:00    2017-02-23 21:38:00
69926    26506    554    2017-02-23 08:45:00    2017-02-23 08:45:00
69927    26506    592    2017-02-23 09:38:00    2017-02-23 09:38:00
69928    26507    523    2017-02-23 01:20:00    2017-02-23 01:20:00
69929    26507    949    2017-02-23 03:02:00    2017-02-23 03:02:00
69930    26507    472    2017-02-23 21:55:00    2017-02-23 21:55:00
69931    26507    895    2017-02-23 18:01:00    2017-02-23 18:01:00
69932    26507    958    2017-02-23 20:34:00    2017-02-23 20:34:00
69933    26508    815    2017-02-23 05:17:00    2017-02-23 05:17:00
69934    26508    544    2017-02-23 12:50:00    2017-02-23 12:50:00
69935    26508    465    2017-02-23 14:35:00    2017-02-23 14:35:00
69936    26508    547    2017-02-23 15:49:00    2017-02-23 15:49:00
69937    26508    897    2017-02-23 11:03:00    2017-02-23 11:03:00
69938    26509    611    2017-02-23 06:12:00    2017-02-23 06:12:00
69939    26509    502    2017-02-23 02:17:00    2017-02-23 02:17:00
69940    26509    811    2017-02-23 11:51:00    2017-02-23 11:51:00
69941    26509    745    2017-02-23 15:24:00    2017-02-23 15:24:00
69942    26509    615    2017-02-23 11:34:00    2017-02-23 11:34:00
69943    26510    790    2017-02-23 12:05:00    2017-02-23 12:05:00
69944    26510    667    2017-02-23 08:06:00    2017-02-23 08:06:00
69945    26510    808    2017-02-23 22:29:00    2017-02-23 22:29:00
69946    26510    498    2017-02-23 22:52:00    2017-02-23 22:52:00
69947    26510    625    2017-02-23 22:48:00    2017-02-23 22:48:00
69948    26511    603    2017-02-23 11:15:00    2017-02-23 11:15:00
69949    26511    785    2017-02-23 19:11:00    2017-02-23 19:11:00
69950    26511    897    2017-02-23 22:49:00    2017-02-23 22:49:00
69951    26511    897    2017-02-23 14:08:00    2017-02-23 14:08:00
69952    26511    828    2017-02-23 08:04:00    2017-02-23 08:04:00
69953    26512    869    2017-02-24 02:54:00    2017-02-24 02:54:00
69954    26512    860    2017-02-24 20:34:00    2017-02-24 20:34:00
69955    26512    851    2017-02-24 09:18:00    2017-02-24 09:18:00
69956    26512    634    2017-02-24 03:39:00    2017-02-24 03:39:00
69957    26512    585    2017-02-24 04:18:00    2017-02-24 04:18:00
69958    26513    831    2017-02-24 21:03:00    2017-02-24 21:03:00
69959    26513    801    2017-02-24 05:09:00    2017-02-24 05:09:00
69960    26513    874    2017-02-24 12:22:00    2017-02-24 12:22:00
69961    26513    926    2017-02-24 12:13:00    2017-02-24 12:13:00
69962    26513    775    2017-02-24 06:38:00    2017-02-24 06:38:00
69963    26514    681    2017-02-24 19:23:00    2017-02-24 19:23:00
69964    26514    681    2017-02-24 07:36:00    2017-02-24 07:36:00
69965    26514    541    2017-02-24 05:43:00    2017-02-24 05:43:00
69966    26514    887    2017-02-24 05:09:00    2017-02-24 05:09:00
69967    26514    469    2017-02-24 04:38:00    2017-02-24 04:38:00
69968    26515    535    2017-02-24 08:49:00    2017-02-24 08:49:00
69969    26515    925    2017-02-24 19:53:00    2017-02-24 19:53:00
69970    26515    891    2017-02-24 20:25:00    2017-02-24 20:25:00
69971    26515    677    2017-02-24 03:01:00    2017-02-24 03:01:00
69972    26515    677    2017-02-24 23:32:00    2017-02-24 23:32:00
69973    26516    676    2017-02-24 16:32:00    2017-02-24 16:32:00
69974    26516    913    2017-02-24 03:38:00    2017-02-24 03:38:00
69975    26516    808    2017-02-24 23:39:00    2017-02-24 23:39:00
69976    26516    612    2017-02-24 23:24:00    2017-02-24 23:24:00
69977    26516    672    2017-02-24 15:53:00    2017-02-24 15:53:00
69978    26517    756    2017-02-24 07:03:00    2017-02-24 07:03:00
69979    26517    759    2017-02-24 05:19:00    2017-02-24 05:19:00
69980    26517    698    2017-02-24 17:28:00    2017-02-24 17:28:00
69981    26517    909    2017-02-24 15:34:00    2017-02-24 15:34:00
69982    26517    540    2017-02-24 01:58:00    2017-02-24 01:58:00
69983    26518    753    2017-02-24 15:12:00    2017-02-24 15:12:00
69984    26518    747    2017-02-24 23:19:00    2017-02-24 23:19:00
69985    26518    505    2017-02-25 00:00:00    2017-02-25 00:00:00
69986    26518    848    2017-02-24 07:26:00    2017-02-24 07:26:00
69987    26518    540    2017-02-24 06:11:00    2017-02-24 06:11:00
69988    26519    599    2017-02-24 22:51:00    2017-02-24 22:51:00
69989    26519    465    2017-02-24 01:19:00    2017-02-24 01:19:00
69990    26519    647    2017-02-24 13:31:00    2017-02-24 13:31:00
69991    26519    692    2017-02-24 14:49:00    2017-02-24 14:49:00
69992    26519    466    2017-02-24 19:46:00    2017-02-24 19:46:00
69993    26520    618    2017-02-24 09:39:00    2017-02-24 09:39:00
69994    26520    561    2017-02-24 08:07:00    2017-02-24 08:07:00
69995    26520    610    2017-02-24 05:15:00    2017-02-24 05:15:00
69996    26520    538    2017-02-24 21:14:00    2017-02-24 21:14:00
69997    26520    567    2017-02-24 12:25:00    2017-02-24 12:25:00
69998    26521    634    2017-02-24 08:26:00    2017-02-24 08:26:00
69999    26521    867    2017-02-24 04:05:00    2017-02-24 04:05:00
70000    26521    823    2017-02-24 20:10:00    2017-02-24 20:10:00
70001    26521    666    2017-02-24 05:35:00    2017-02-24 05:35:00
70002    26521    930    2017-02-24 18:11:00    2017-02-24 18:11:00
70003    26522    661    2017-02-24 21:51:00    2017-02-24 21:51:00
70004    26522    750    2017-02-24 21:04:00    2017-02-24 21:04:00
70005    26522    481    2017-02-24 21:13:00    2017-02-24 21:13:00
70006    26522    543    2017-02-24 13:38:00    2017-02-24 13:38:00
70007    26522    931    2017-02-24 05:26:00    2017-02-24 05:26:00
70008    26523    811    2017-02-24 16:46:00    2017-02-24 16:46:00
70009    26523    842    2017-02-24 20:11:00    2017-02-24 20:11:00
70010    26523    507    2017-02-24 13:46:00    2017-02-24 13:46:00
70011    26523    570    2017-02-24 12:37:00    2017-02-24 12:37:00
70012    26523    532    2017-02-24 13:59:00    2017-02-24 13:59:00
70013    26524    914    2017-02-24 16:16:00    2017-02-24 16:16:00
70014    26524    601    2017-02-24 23:05:00    2017-02-24 23:05:00
70015    26524    885    2017-02-24 01:12:00    2017-02-24 01:12:00
70016    26524    868    2017-02-24 22:38:00    2017-02-24 22:38:00
70017    26524    580    2017-02-24 06:58:00    2017-02-24 06:58:00
70018    26525    890    2017-02-24 21:07:00    2017-02-24 21:07:00
70019    26525    579    2017-02-24 17:48:00    2017-02-24 17:48:00
70020    26525    882    2017-02-24 07:28:00    2017-02-24 07:28:00
70021    26525    785    2017-02-24 02:11:00    2017-02-24 02:11:00
70022    26525    664    2017-02-24 04:00:00    2017-02-24 04:00:00
70023    26526    798    2017-02-24 18:34:00    2017-02-24 18:34:00
70024    26526    640    2017-02-24 08:50:00    2017-02-24 08:50:00
70025    26526    716    2017-02-24 07:39:00    2017-02-24 07:39:00
70026    26526    584    2017-02-24 01:30:00    2017-02-24 01:30:00
70027    26526    697    2017-02-24 07:11:00    2017-02-24 07:11:00
70028    26527    553    2017-02-24 23:55:00    2017-02-24 23:55:00
70029    26527    548    2017-02-24 23:41:00    2017-02-24 23:41:00
70030    26527    913    2017-02-24 01:08:00    2017-02-24 01:08:00
70031    26527    645    2017-02-24 23:50:00    2017-02-24 23:50:00
70032    26527    645    2017-02-24 20:15:00    2017-02-24 20:15:00
70033    26528    471    2017-02-24 22:24:00    2017-02-24 22:24:00
70034    26528    542    2017-02-24 04:00:00    2017-02-24 04:00:00
70035    26528    621    2017-02-24 07:14:00    2017-02-24 07:14:00
70036    26528    905    2017-02-24 11:17:00    2017-02-24 11:17:00
70037    26528    711    2017-02-24 13:16:00    2017-02-24 13:16:00
70038    26529    708    2017-02-24 08:18:00    2017-02-24 08:18:00
70039    26529    540    2017-02-24 15:41:00    2017-02-24 15:41:00
70040    26529    851    2017-02-24 22:14:00    2017-02-24 22:14:00
70041    26529    517    2017-02-24 06:50:00    2017-02-24 06:50:00
70042    26529    627    2017-02-24 05:07:00    2017-02-24 05:07:00
70043    26530    834    2017-02-24 15:54:00    2017-02-24 15:54:00
70044    26530    508    2017-02-24 17:22:00    2017-02-24 17:22:00
70045    26530    598    2017-02-24 20:39:00    2017-02-24 20:39:00
70046    26530    567    2017-02-24 07:04:00    2017-02-24 07:04:00
70047    26530    628    2017-02-24 08:06:00    2017-02-24 08:06:00
70048    26531    740    2017-02-24 03:44:00    2017-02-24 03:44:00
70049    26531    657    2017-02-24 23:16:00    2017-02-24 23:16:00
70050    26531    497    2017-02-24 10:10:00    2017-02-24 10:10:00
70051    26531    651    2017-02-24 09:16:00    2017-02-24 09:16:00
70052    26531    881    2017-02-24 03:06:00    2017-02-24 03:06:00
70053    26532    478    2017-02-24 04:59:00    2017-02-24 04:59:00
70054    26532    791    2017-02-24 14:33:00    2017-02-24 14:33:00
70055    26532    850    2017-02-24 04:34:00    2017-02-24 04:34:00
70056    26532    925    2017-02-24 19:14:00    2017-02-24 19:14:00
70057    26532    746    2017-02-24 07:34:00    2017-02-24 07:34:00
70058    26533    535    2017-02-24 06:20:00    2017-02-24 06:20:00
70059    26533    591    2017-02-24 12:44:00    2017-02-24 12:44:00
70060    26533    689    2017-02-24 21:16:00    2017-02-24 21:16:00
70061    26533    910    2017-02-24 01:04:00    2017-02-24 01:04:00
70062    26533    616    2017-02-24 18:15:00    2017-02-24 18:15:00
70063    26534    484    2017-02-24 02:42:00    2017-02-24 02:42:00
70064    26534    775    2017-02-24 23:47:00    2017-02-24 23:47:00
70065    26534    663    2017-02-24 06:57:00    2017-02-24 06:57:00
70066    26534    706    2017-02-24 04:30:00    2017-02-24 04:30:00
70067    26534    723    2017-02-24 18:31:00    2017-02-24 18:31:00
70068    26535    797    2017-02-24 22:49:00    2017-02-24 22:49:00
70069    26535    754    2017-02-24 13:46:00    2017-02-24 13:46:00
70070    26535    614    2017-02-24 07:32:00    2017-02-24 07:32:00
70071    26535    735    2017-02-25 00:00:00    2017-02-25 00:00:00
70072    26535    778    2017-02-24 23:25:00    2017-02-24 23:25:00
70073    26536    556    2017-02-24 15:05:00    2017-02-24 15:05:00
70074    26536    783    2017-02-24 03:18:00    2017-02-24 03:18:00
70075    26536    643    2017-02-24 19:47:00    2017-02-24 19:47:00
70076    26536    731    2017-02-24 02:19:00    2017-02-24 02:19:00
70077    26536    526    2017-02-24 02:11:00    2017-02-24 02:11:00
70078    26537    745    2017-02-24 05:57:00    2017-02-24 05:57:00
70079    26537    483    2017-02-24 05:58:00    2017-02-24 05:58:00
70080    26537    643    2017-02-24 15:46:00    2017-02-24 15:46:00
70081    26537    665    2017-02-24 18:35:00    2017-02-24 18:35:00
70082    26537    921    2017-02-24 06:46:00    2017-02-24 06:46:00
70083    26538    882    2017-02-24 14:51:00    2017-02-24 14:51:00
70084    26538    742    2017-02-24 08:31:00    2017-02-24 08:31:00
70085    26538    577    2017-02-24 18:37:00    2017-02-24 18:37:00
70086    26538    836    2017-02-24 02:38:00    2017-02-24 02:38:00
70087    26538    619    2017-02-24 11:40:00    2017-02-24 11:40:00
70088    26539    919    2017-02-24 17:18:00    2017-02-24 17:18:00
70089    26539    520    2017-02-24 15:50:00    2017-02-24 15:50:00
70090    26539    658    2017-02-24 08:58:00    2017-02-24 08:58:00
70091    26539    949    2017-02-24 06:05:00    2017-02-24 06:05:00
70092    26539    617    2017-02-24 04:19:00    2017-02-24 04:19:00
70093    26540    831    2017-02-24 19:05:00    2017-02-24 19:05:00
70094    26540    734    2017-02-24 20:00:00    2017-02-24 20:00:00
70095    26540    638    2017-02-24 16:22:00    2017-02-24 16:22:00
70096    26540    771    2017-02-24 21:27:00    2017-02-24 21:27:00
70097    26540    832    2017-02-24 14:49:00    2017-02-24 14:49:00
70098    26541    759    2017-02-24 14:38:00    2017-02-24 14:38:00
70099    26541    888    2017-02-24 22:36:00    2017-02-24 22:36:00
70100    26541    524    2017-02-24 19:22:00    2017-02-24 19:22:00
70101    26541    729    2017-02-24 01:59:00    2017-02-24 01:59:00
70102    26541    788    2017-02-24 22:27:00    2017-02-24 22:27:00
70103    26542    905    2017-02-24 19:00:00    2017-02-24 19:00:00
70104    26542    464    2017-02-24 21:59:00    2017-02-24 21:59:00
70105    26542    959    2017-02-24 18:01:00    2017-02-24 18:01:00
70106    26542    661    2017-02-24 02:27:00    2017-02-24 02:27:00
70107    26542    787    2017-02-24 07:27:00    2017-02-24 07:27:00
70108    26543    710    2017-02-24 21:06:00    2017-02-24 21:06:00
70109    26543    618    2017-02-24 11:41:00    2017-02-24 11:41:00
70110    26543    845    2017-02-24 11:20:00    2017-02-24 11:20:00
70111    26543    827    2017-02-24 07:51:00    2017-02-24 07:51:00
70112    26543    914    2017-02-24 11:13:00    2017-02-24 11:13:00
70113    26544    958    2017-02-24 22:13:00    2017-02-24 22:13:00
70114    26544    712    2017-02-24 03:31:00    2017-02-24 03:31:00
70115    26544    835    2017-02-24 12:00:00    2017-02-24 12:00:00
70116    26544    585    2017-02-24 03:42:00    2017-02-24 03:42:00
70117    26544    910    2017-02-24 11:22:00    2017-02-24 11:22:00
70118    26545    868    2017-02-24 07:31:00    2017-02-24 07:31:00
70119    26545    651    2017-02-24 10:12:00    2017-02-24 10:12:00
70120    26545    589    2017-02-24 07:44:00    2017-02-24 07:44:00
70121    26545    466    2017-02-24 09:17:00    2017-02-24 09:17:00
70122    26545    922    2017-02-24 16:55:00    2017-02-24 16:55:00
70123    26546    869    2017-02-24 05:19:00    2017-02-24 05:19:00
70124    26546    645    2017-02-24 11:13:00    2017-02-24 11:13:00
70125    26546    887    2017-02-24 20:25:00    2017-02-24 20:25:00
70126    26546    494    2017-02-24 20:54:00    2017-02-24 20:54:00
70127    26546    751    2017-02-24 20:05:00    2017-02-24 20:05:00
70128    26547    635    2017-02-24 17:35:00    2017-02-24 17:35:00
70129    26547    526    2017-02-24 04:09:00    2017-02-24 04:09:00
70130    26547    871    2017-02-24 05:19:00    2017-02-24 05:19:00
70131    26547    525    2017-02-24 10:05:00    2017-02-24 10:05:00
70132    26547    839    2017-02-24 17:45:00    2017-02-24 17:45:00
70133    26548    506    2017-02-24 01:11:00    2017-02-24 01:11:00
70134    26548    569    2017-02-24 21:20:00    2017-02-24 21:20:00
70135    26548    924    2017-02-24 04:29:00    2017-02-24 04:29:00
70136    26548    893    2017-02-24 11:46:00    2017-02-24 11:46:00
70137    26548    706    2017-02-24 06:00:00    2017-02-24 06:00:00
70138    26549    897    2017-02-24 12:08:00    2017-02-24 12:08:00
70139    26549    945    2017-02-24 05:31:00    2017-02-24 05:31:00
70140    26549    898    2017-02-24 18:44:00    2017-02-24 18:44:00
70141    26549    528    2017-02-24 19:43:00    2017-02-24 19:43:00
70142    26549    662    2017-02-24 07:50:00    2017-02-24 07:50:00
70143    26550    855    2017-02-24 07:49:00    2017-02-24 07:49:00
70144    26550    479    2017-02-24 09:13:00    2017-02-24 09:13:00
70145    26550    809    2017-02-24 09:30:00    2017-02-24 09:30:00
70146    26550    532    2017-02-24 01:41:00    2017-02-24 01:41:00
70147    26550    680    2017-02-24 16:19:00    2017-02-24 16:19:00
70148    26551    790    2017-02-24 17:43:00    2017-02-24 17:43:00
70149    26551    613    2017-02-24 17:27:00    2017-02-24 17:27:00
70150    26551    728    2017-02-24 05:47:00    2017-02-24 05:47:00
70151    26551    603    2017-02-24 08:30:00    2017-02-24 08:30:00
70152    26551    887    2017-02-24 10:51:00    2017-02-24 10:51:00
70153    26552    520    2017-02-24 16:42:00    2017-02-24 16:42:00
70154    26552    865    2017-02-24 06:27:00    2017-02-24 06:27:00
70155    26552    582    2017-02-24 22:23:00    2017-02-24 22:23:00
70156    26552    610    2017-02-24 22:34:00    2017-02-24 22:34:00
70157    26552    933    2017-02-24 01:13:00    2017-02-24 01:13:00
70158    26553    582    2017-02-24 01:35:00    2017-02-24 01:35:00
70159    26553    778    2017-02-24 19:43:00    2017-02-24 19:43:00
70160    26553    719    2017-02-24 19:32:00    2017-02-24 19:32:00
70161    26553    509    2017-02-24 20:57:00    2017-02-24 20:57:00
70162    26553    950    2017-02-24 05:36:00    2017-02-24 05:36:00
70163    26554    678    2017-02-24 01:20:00    2017-02-24 01:20:00
70164    26554    543    2017-02-24 05:29:00    2017-02-24 05:29:00
70165    26554    556    2017-02-24 06:31:00    2017-02-24 06:31:00
70166    26554    920    2017-02-24 23:16:00    2017-02-24 23:16:00
70167    26554    813    2017-02-24 16:45:00    2017-02-24 16:45:00
70168    26555    948    2017-02-24 20:00:00    2017-02-24 20:00:00
70169    26555    573    2017-02-24 13:46:00    2017-02-24 13:46:00
70170    26555    838    2017-02-24 11:02:00    2017-02-24 11:02:00
70171    26555    681    2017-02-24 05:45:00    2017-02-24 05:45:00
70172    26555    546    2017-02-24 19:17:00    2017-02-24 19:17:00
70173    26556    957    2017-02-24 16:50:00    2017-02-24 16:50:00
70174    26556    855    2017-02-24 16:23:00    2017-02-24 16:23:00
70175    26556    709    2017-02-24 05:18:00    2017-02-24 05:18:00
70176    26556    758    2017-02-24 21:46:00    2017-02-24 21:46:00
70177    26556    621    2017-02-24 06:07:00    2017-02-24 06:07:00
70178    26557    694    2017-02-24 18:22:00    2017-02-24 18:22:00
70179    26557    840    2017-02-24 19:32:00    2017-02-24 19:32:00
70180    26557    588    2017-02-24 15:08:00    2017-02-24 15:08:00
70181    26557    469    2017-02-24 23:36:00    2017-02-24 23:36:00
70182    26557    634    2017-02-24 12:57:00    2017-02-24 12:57:00
70183    26558    530    2017-02-24 03:13:00    2017-02-24 03:13:00
70184    26558    684    2017-02-24 18:18:00    2017-02-24 18:18:00
70185    26558    832    2017-02-24 22:57:00    2017-02-24 22:57:00
70186    26558    547    2017-02-24 09:13:00    2017-02-24 09:13:00
70187    26558    920    2017-02-24 05:27:00    2017-02-24 05:27:00
70188    26559    937    2017-02-24 05:27:00    2017-02-24 05:27:00
70189    26559    777    2017-02-24 05:12:00    2017-02-24 05:12:00
70190    26559    904    2017-02-24 03:31:00    2017-02-24 03:31:00
70191    26559    885    2017-02-24 20:23:00    2017-02-24 20:23:00
70192    26559    662    2017-02-24 15:35:00    2017-02-24 15:35:00
70193    26560    833    2017-02-24 23:30:00    2017-02-24 23:30:00
70194    26560    565    2017-02-24 19:28:00    2017-02-24 19:28:00
70195    26560    464    2017-02-24 18:24:00    2017-02-24 18:24:00
70196    26560    809    2017-02-24 21:16:00    2017-02-24 21:16:00
70197    26560    591    2017-02-24 12:35:00    2017-02-24 12:35:00
70198    26561    702    2017-02-24 04:34:00    2017-02-24 04:34:00
70199    26561    469    2017-02-24 05:54:00    2017-02-24 05:54:00
70200    26561    769    2017-02-24 18:27:00    2017-02-24 18:27:00
70201    26561    541    2017-02-24 23:21:00    2017-02-24 23:21:00
70202    26561    611    2017-02-24 01:29:00    2017-02-24 01:29:00
70203    26562    846    2017-02-24 12:05:00    2017-02-24 12:05:00
70204    26562    610    2017-02-24 18:44:00    2017-02-24 18:44:00
70205    26562    864    2017-02-24 12:01:00    2017-02-24 12:01:00
70206    26562    826    2017-02-24 09:24:00    2017-02-24 09:24:00
70207    26562    478    2017-02-24 18:59:00    2017-02-24 18:59:00
70208    26563    687    2017-02-24 16:38:00    2017-02-24 16:38:00
70209    26563    676    2017-02-24 16:03:00    2017-02-24 16:03:00
70210    26563    852    2017-02-24 14:45:00    2017-02-24 14:45:00
70211    26563    658    2017-02-24 03:42:00    2017-02-24 03:42:00
70212    26563    616    2017-02-24 23:46:00    2017-02-24 23:46:00
70213    26564    686    2017-02-24 14:33:00    2017-02-24 14:33:00
70214    26564    740    2017-02-24 22:34:00    2017-02-24 22:34:00
70215    26564    663    2017-02-24 15:11:00    2017-02-24 15:11:00
70216    26564    839    2017-02-24 21:39:00    2017-02-24 21:39:00
70217    26564    517    2017-02-24 22:21:00    2017-02-24 22:21:00
70218    26565    567    2017-02-24 17:13:00    2017-02-24 17:13:00
70219    26565    543    2017-02-24 19:40:00    2017-02-24 19:40:00
70220    26565    758    2017-02-24 20:10:00    2017-02-24 20:10:00
70221    26565    692    2017-02-24 02:41:00    2017-02-24 02:41:00
70222    26565    564    2017-02-24 18:17:00    2017-02-24 18:17:00
70223    26566    525    2017-02-24 15:44:00    2017-02-24 15:44:00
70224    26566    821    2017-02-24 14:56:00    2017-02-24 14:56:00
70225    26566    647    2017-02-24 02:13:00    2017-02-24 02:13:00
70226    26566    486    2017-02-24 13:14:00    2017-02-24 13:14:00
70227    26566    625    2017-02-24 13:21:00    2017-02-24 13:21:00
70228    26567    512    2017-02-24 14:03:00    2017-02-24 14:03:00
70229    26567    506    2017-02-24 18:04:00    2017-02-24 18:04:00
70230    26567    477    2017-02-24 05:18:00    2017-02-24 05:18:00
70231    26567    715    2017-02-24 04:16:00    2017-02-24 04:16:00
70232    26567    513    2017-02-24 23:55:00    2017-02-24 23:55:00
70233    26568    468    2017-02-24 01:07:00    2017-02-24 01:07:00
70234    26568    856    2017-02-24 06:28:00    2017-02-24 06:28:00
70235    26568    941    2017-02-24 16:14:00    2017-02-24 16:14:00
70236    26568    550    2017-02-24 21:01:00    2017-02-24 21:01:00
70237    26568    566    2017-02-24 18:17:00    2017-02-24 18:17:00
70238    26569    535    2017-02-24 05:51:00    2017-02-24 05:51:00
70239    26569    745    2017-02-24 09:05:00    2017-02-24 09:05:00
70240    26569    628    2017-02-24 15:08:00    2017-02-24 15:08:00
70241    26569    906    2017-02-24 12:34:00    2017-02-24 12:34:00
70242    26569    573    2017-02-24 21:00:00    2017-02-24 21:00:00
70243    26570    704    2017-02-24 11:30:00    2017-02-24 11:30:00
70244    26570    506    2017-02-24 20:57:00    2017-02-24 20:57:00
70245    26570    717    2017-02-24 20:22:00    2017-02-24 20:22:00
70246    26570    721    2017-02-24 02:09:00    2017-02-24 02:09:00
70247    26570    485    2017-02-24 20:43:00    2017-02-24 20:43:00
70248    26571    697    2017-02-24 10:10:00    2017-02-24 10:10:00
70249    26571    817    2017-02-24 15:59:00    2017-02-24 15:59:00
70250    26571    544    2017-02-24 23:25:00    2017-02-24 23:25:00
70251    26571    866    2017-02-24 19:56:00    2017-02-24 19:56:00
70252    26571    848    2017-02-24 23:43:00    2017-02-24 23:43:00
70253    26572    961    2017-02-24 23:25:00    2017-02-24 23:25:00
70254    26572    640    2017-02-24 19:12:00    2017-02-24 19:12:00
70255    26572    790    2017-02-24 10:01:00    2017-02-24 10:01:00
70256    26572    865    2017-02-24 21:26:00    2017-02-24 21:26:00
70257    26572    839    2017-02-24 02:47:00    2017-02-24 02:47:00
70258    26573    651    2017-02-24 06:28:00    2017-02-24 06:28:00
70259    26573    535    2017-02-24 19:55:00    2017-02-24 19:55:00
70260    26573    757    2017-02-24 22:35:00    2017-02-24 22:35:00
70261    26573    505    2017-02-24 04:17:00    2017-02-24 04:17:00
70262    26573    918    2017-02-24 22:42:00    2017-02-24 22:42:00
70263    26574    942    2017-02-24 19:15:00    2017-02-24 19:15:00
70264    26574    929    2017-02-24 07:38:00    2017-02-24 07:38:00
70265    26574    904    2017-02-24 19:20:00    2017-02-24 19:20:00
70266    26574    663    2017-02-24 18:35:00    2017-02-24 18:35:00
70267    26574    477    2017-02-24 14:40:00    2017-02-24 14:40:00
70268    26575    884    2017-02-24 21:03:00    2017-02-24 21:03:00
70269    26575    743    2017-02-24 01:06:00    2017-02-24 01:06:00
70270    26575    518    2017-02-24 22:59:00    2017-02-24 22:59:00
70271    26575    576    2017-02-24 03:37:00    2017-02-24 03:37:00
70272    26575    524    2017-02-24 06:49:00    2017-02-24 06:49:00
70273    26576    547    2017-02-24 12:50:00    2017-02-24 12:50:00
70274    26576    942    2017-02-24 21:13:00    2017-02-24 21:13:00
70275    26576    592    2017-02-24 21:51:00    2017-02-24 21:51:00
70276    26576    582    2017-02-24 11:21:00    2017-02-24 11:21:00
70277    26576    872    2017-02-24 05:47:00    2017-02-24 05:47:00
70278    26577    662    2017-02-25 09:59:00    2017-02-25 09:59:00
70279    26577    468    2017-02-25 22:00:00    2017-02-25 22:00:00
70280    26577    947    2017-02-25 12:06:00    2017-02-25 12:06:00
70281    26577    669    2017-02-25 09:54:00    2017-02-25 09:54:00
70282    26577    938    2017-02-25 14:11:00    2017-02-25 14:11:00
70283    26578    699    2017-02-25 16:16:00    2017-02-25 16:16:00
70284    26578    657    2017-02-25 12:19:00    2017-02-25 12:19:00
70285    26578    587    2017-02-25 22:19:00    2017-02-25 22:19:00
70286    26578    537    2017-02-25 04:05:00    2017-02-25 04:05:00
70287    26578    758    2017-02-25 11:32:00    2017-02-25 11:32:00
70288    26579    553    2017-02-25 01:02:00    2017-02-25 01:02:00
70289    26579    510    2017-02-25 01:12:00    2017-02-25 01:12:00
70290    26579    483    2017-02-25 23:55:00    2017-02-25 23:55:00
70291    26579    782    2017-02-25 18:42:00    2017-02-25 18:42:00
70292    26579    724    2017-02-25 20:53:00    2017-02-25 20:53:00
70293    26580    528    2017-02-25 20:45:00    2017-02-25 20:45:00
70294    26580    777    2017-02-25 07:29:00    2017-02-25 07:29:00
70295    26580    952    2017-02-25 20:59:00    2017-02-25 20:59:00
70296    26580    681    2017-02-25 16:03:00    2017-02-25 16:03:00
70297    26580    799    2017-02-25 16:45:00    2017-02-25 16:45:00
70298    26581    951    2017-02-25 17:27:00    2017-02-25 17:27:00
70299    26581    634    2017-02-25 19:17:00    2017-02-25 19:17:00
70300    26581    775    2017-02-25 05:03:00    2017-02-25 05:03:00
70301    26581    660    2017-02-25 06:39:00    2017-02-25 06:39:00
70302    26581    881    2017-02-25 02:41:00    2017-02-25 02:41:00
70303    26582    604    2017-02-25 17:31:00    2017-02-25 17:31:00
70304    26582    803    2017-02-25 05:36:00    2017-02-25 05:36:00
70305    26582    557    2017-02-25 18:11:00    2017-02-25 18:11:00
70306    26582    659    2017-02-25 17:32:00    2017-02-25 17:32:00
70307    26582    642    2017-02-25 01:09:00    2017-02-25 01:09:00
70308    26583    802    2017-02-25 23:47:00    2017-02-25 23:47:00
70309    26583    489    2017-02-25 08:11:00    2017-02-25 08:11:00
70310    26583    857    2017-02-25 09:12:00    2017-02-25 09:12:00
70311    26583    844    2017-02-25 17:02:00    2017-02-25 17:02:00
70312    26583    520    2017-02-25 15:10:00    2017-02-25 15:10:00
70313    26584    632    2017-02-25 18:16:00    2017-02-25 18:16:00
70314    26584    737    2017-02-25 23:27:00    2017-02-25 23:27:00
70315    26584    910    2017-02-25 02:31:00    2017-02-25 02:31:00
70316    26584    537    2017-02-25 21:02:00    2017-02-25 21:02:00
70317    26584    562    2017-02-25 21:24:00    2017-02-25 21:24:00
70318    26585    829    2017-02-25 11:39:00    2017-02-25 11:39:00
70319    26585    627    2017-02-25 04:21:00    2017-02-25 04:21:00
70320    26585    645    2017-02-25 13:59:00    2017-02-25 13:59:00
70321    26585    670    2017-02-25 21:40:00    2017-02-25 21:40:00
70322    26585    804    2017-02-25 02:14:00    2017-02-25 02:14:00
70323    26586    547    2017-02-25 16:36:00    2017-02-25 16:36:00
70324    26586    784    2017-02-25 05:09:00    2017-02-25 05:09:00
70325    26586    606    2017-02-25 01:15:00    2017-02-25 01:15:00
70326    26586    682    2017-02-25 18:26:00    2017-02-25 18:26:00
70327    26586    517    2017-02-25 21:21:00    2017-02-25 21:21:00
70328    26587    483    2017-02-25 19:15:00    2017-02-25 19:15:00
70329    26587    890    2017-02-25 14:25:00    2017-02-25 14:25:00
70330    26587    871    2017-02-25 19:09:00    2017-02-25 19:09:00
70331    26587    532    2017-02-25 09:06:00    2017-02-25 09:06:00
70332    26587    919    2017-02-25 03:14:00    2017-02-25 03:14:00
70333    26588    853    2017-02-25 13:43:00    2017-02-25 13:43:00
70334    26588    780    2017-02-25 10:02:00    2017-02-25 10:02:00
70335    26588    505    2017-02-25 22:32:00    2017-02-25 22:32:00
70336    26588    876    2017-02-25 19:53:00    2017-02-25 19:53:00
70337    26588    719    2017-02-25 22:05:00    2017-02-25 22:05:00
70338    26589    659    2017-02-25 22:56:00    2017-02-25 22:56:00
70339    26589    879    2017-02-25 20:44:00    2017-02-25 20:44:00
70340    26589    644    2017-02-25 10:47:00    2017-02-25 10:47:00
70341    26589    520    2017-02-25 03:37:00    2017-02-25 03:37:00
70342    26589    710    2017-02-25 18:48:00    2017-02-25 18:48:00
70343    26590    619    2017-02-25 18:00:00    2017-02-25 18:00:00
70344    26590    839    2017-02-25 06:07:00    2017-02-25 06:07:00
70345    26590    706    2017-02-25 20:09:00    2017-02-25 20:09:00
70346    26590    721    2017-02-25 07:15:00    2017-02-25 07:15:00
70347    26590    500    2017-02-25 06:17:00    2017-02-25 06:17:00
70348    26591    701    2017-02-25 23:56:00    2017-02-25 23:56:00
70349    26591    579    2017-02-25 20:26:00    2017-02-25 20:26:00
70350    26591    789    2017-02-25 16:48:00    2017-02-25 16:48:00
70351    26591    873    2017-02-25 21:55:00    2017-02-25 21:55:00
70352    26591    777    2017-02-25 04:39:00    2017-02-25 04:39:00
70353    26592    683    2017-02-25 19:45:00    2017-02-25 19:45:00
70354    26592    858    2017-02-25 23:25:00    2017-02-25 23:25:00
70355    26592    653    2017-02-25 13:48:00    2017-02-25 13:48:00
70356    26592    674    2017-02-25 08:22:00    2017-02-25 08:22:00
70357    26592    895    2017-02-25 05:50:00    2017-02-25 05:50:00
70358    26593    658    2017-02-25 18:11:00    2017-02-25 18:11:00
70359    26593    773    2017-02-25 17:08:00    2017-02-25 17:08:00
70360    26593    583    2017-02-25 17:37:00    2017-02-25 17:37:00
70361    26593    505    2017-02-25 12:00:00    2017-02-25 12:00:00
70362    26593    511    2017-02-25 04:32:00    2017-02-25 04:32:00
70363    26594    524    2017-02-25 17:10:00    2017-02-25 17:10:00
70364    26594    744    2017-02-25 07:35:00    2017-02-25 07:35:00
70365    26594    750    2017-02-25 07:13:00    2017-02-25 07:13:00
70366    26594    795    2017-02-25 22:45:00    2017-02-25 22:45:00
70367    26594    757    2017-02-25 17:09:00    2017-02-25 17:09:00
70368    26595    789    2017-02-25 08:19:00    2017-02-25 08:19:00
70369    26595    478    2017-02-25 20:36:00    2017-02-25 20:36:00
70370    26595    483    2017-02-25 21:51:00    2017-02-25 21:51:00
70371    26595    916    2017-02-25 07:31:00    2017-02-25 07:31:00
70372    26595    854    2017-02-25 03:57:00    2017-02-25 03:57:00
70373    26596    730    2017-02-25 07:41:00    2017-02-25 07:41:00
70374    26596    523    2017-02-25 15:17:00    2017-02-25 15:17:00
70375    26596    748    2017-02-25 01:00:00    2017-02-25 01:00:00
70376    26596    534    2017-02-25 22:43:00    2017-02-25 22:43:00
70377    26596    489    2017-02-25 15:21:00    2017-02-25 15:21:00
70378    26597    739    2017-02-25 19:06:00    2017-02-25 19:06:00
70379    26597    729    2017-02-25 09:15:00    2017-02-25 09:15:00
70380    26597    712    2017-02-25 12:47:00    2017-02-25 12:47:00
70381    26597    768    2017-02-25 22:01:00    2017-02-25 22:01:00
70382    26597    778    2017-02-25 18:00:00    2017-02-25 18:00:00
70383    26598    754    2017-02-25 06:16:00    2017-02-25 06:16:00
70384    26598    763    2017-02-25 12:32:00    2017-02-25 12:32:00
70385    26598    889    2017-02-25 07:57:00    2017-02-25 07:57:00
70386    26598    807    2017-02-25 16:03:00    2017-02-25 16:03:00
70387    26598    950    2017-02-25 02:18:00    2017-02-25 02:18:00
70388    26599    924    2017-02-25 16:07:00    2017-02-25 16:07:00
70389    26599    505    2017-02-25 15:10:00    2017-02-25 15:10:00
70390    26599    603    2017-02-25 02:38:00    2017-02-25 02:38:00
70391    26599    950    2017-02-25 15:07:00    2017-02-25 15:07:00
70392    26599    787    2017-02-25 08:10:00    2017-02-25 08:10:00
70393    26600    766    2017-02-25 01:16:00    2017-02-25 01:16:00
70394    26600    588    2017-02-25 09:34:00    2017-02-25 09:34:00
70395    26600    710    2017-02-25 04:29:00    2017-02-25 04:29:00
70396    26600    917    2017-02-25 11:46:00    2017-02-25 11:46:00
70397    26600    821    2017-02-25 23:03:00    2017-02-25 23:03:00
70398    26601    567    2017-02-25 15:28:00    2017-02-25 15:28:00
70399    26601    611    2017-02-25 11:25:00    2017-02-25 11:25:00
70400    26601    900    2017-02-25 03:01:00    2017-02-25 03:01:00
70401    26601    557    2017-02-25 07:38:00    2017-02-25 07:38:00
70402    26601    845    2017-02-25 08:40:00    2017-02-25 08:40:00
70403    26602    708    2017-02-25 19:42:00    2017-02-25 19:42:00
70404    26602    952    2017-02-25 04:25:00    2017-02-25 04:25:00
70405    26602    742    2017-02-25 02:48:00    2017-02-25 02:48:00
70406    26602    912    2017-02-25 15:18:00    2017-02-25 15:18:00
70407    26602    909    2017-02-25 07:18:00    2017-02-25 07:18:00
70408    26603    506    2017-02-26 06:04:00    2017-02-26 06:04:00
70409    26603    940    2017-02-26 22:22:00    2017-02-26 22:22:00
70410    26603    799    2017-02-26 22:57:00    2017-02-26 22:57:00
70411    26603    952    2017-02-26 08:23:00    2017-02-26 08:23:00
70412    26603    690    2017-02-26 14:27:00    2017-02-26 14:27:00
70413    26604    930    2017-02-26 08:37:00    2017-02-26 08:37:00
70414    26604    708    2017-02-26 05:42:00    2017-02-26 05:42:00
70415    26604    673    2017-02-26 21:26:00    2017-02-26 21:26:00
70416    26604    733    2017-02-26 21:54:00    2017-02-26 21:54:00
70417    26604    923    2017-02-26 16:22:00    2017-02-26 16:22:00
70418    26605    523    2017-02-26 19:47:00    2017-02-26 19:47:00
70419    26605    905    2017-02-26 17:06:00    2017-02-26 17:06:00
70420    26605    695    2017-02-26 02:23:00    2017-02-26 02:23:00
70421    26605    668    2017-02-26 15:17:00    2017-02-26 15:17:00
70422    26605    890    2017-02-26 17:29:00    2017-02-26 17:29:00
70423    26606    637    2017-02-26 05:24:00    2017-02-26 05:24:00
70424    26606    615    2017-02-26 18:07:00    2017-02-26 18:07:00
70425    26606    704    2017-02-26 19:44:00    2017-02-26 19:44:00
70426    26606    698    2017-02-26 19:31:00    2017-02-26 19:31:00
70427    26606    530    2017-02-26 05:47:00    2017-02-26 05:47:00
70428    26607    843    2017-02-26 11:49:00    2017-02-26 11:49:00
70429    26607    590    2017-02-26 05:25:00    2017-02-26 05:25:00
70430    26607    755    2017-02-26 02:31:00    2017-02-26 02:31:00
70431    26607    513    2017-02-26 19:20:00    2017-02-26 19:20:00
70432    26607    783    2017-02-26 11:42:00    2017-02-26 11:42:00
70433    26608    586    2017-02-26 05:29:00    2017-02-26 05:29:00
70434    26608    640    2017-02-26 22:24:00    2017-02-26 22:24:00
70435    26608    837    2017-02-26 06:35:00    2017-02-26 06:35:00
70436    26608    609    2017-02-26 02:08:00    2017-02-26 02:08:00
70437    26608    817    2017-02-26 18:25:00    2017-02-26 18:25:00
70438    26609    727    2017-02-26 10:39:00    2017-02-26 10:39:00
70439    26609    738    2017-02-26 14:33:00    2017-02-26 14:33:00
70440    26609    834    2017-02-26 02:40:00    2017-02-26 02:40:00
70441    26609    613    2017-02-26 05:59:00    2017-02-26 05:59:00
70442    26609    831    2017-02-26 04:41:00    2017-02-26 04:41:00
70443    26610    582    2017-02-26 01:43:00    2017-02-26 01:43:00
70444    26610    494    2017-02-26 08:01:00    2017-02-26 08:01:00
70445    26610    615    2017-02-26 16:32:00    2017-02-26 16:32:00
70446    26610    785    2017-02-26 13:55:00    2017-02-26 13:55:00
70447    26610    518    2017-02-26 21:09:00    2017-02-26 21:09:00
70448    26611    829    2017-02-26 03:00:00    2017-02-26 03:00:00
70449    26611    688    2017-02-26 22:30:00    2017-02-26 22:30:00
70450    26611    607    2017-02-26 23:23:00    2017-02-26 23:23:00
70451    26611    608    2017-02-26 02:04:00    2017-02-26 02:04:00
70452    26611    484    2017-02-26 09:59:00    2017-02-26 09:59:00
70453    26612    618    2017-02-26 20:30:00    2017-02-26 20:30:00
70454    26612    528    2017-02-26 02:22:00    2017-02-26 02:22:00
70455    26612    642    2017-02-26 07:59:00    2017-02-26 07:59:00
70456    26612    594    2017-02-26 15:14:00    2017-02-26 15:14:00
70457    26612    951    2017-02-26 15:40:00    2017-02-26 15:40:00
70458    26613    548    2017-02-26 17:59:00    2017-02-26 17:59:00
70459    26613    898    2017-02-26 03:07:00    2017-02-26 03:07:00
70460    26613    666    2017-02-26 07:15:00    2017-02-26 07:15:00
70461    26613    882    2017-02-26 22:22:00    2017-02-26 22:22:00
70462    26613    560    2017-02-26 23:31:00    2017-02-26 23:31:00
70463    26614    522    2017-02-26 08:58:00    2017-02-26 08:58:00
70464    26614    783    2017-02-26 09:03:00    2017-02-26 09:03:00
70465    26614    907    2017-02-26 23:30:00    2017-02-26 23:30:00
70466    26614    784    2017-02-26 19:00:00    2017-02-26 19:00:00
70467    26614    480    2017-02-26 21:34:00    2017-02-26 21:34:00
70468    26615    736    2017-02-26 23:08:00    2017-02-26 23:08:00
70469    26615    769    2017-02-26 04:52:00    2017-02-26 04:52:00
70470    26615    831    2017-02-26 18:29:00    2017-02-26 18:29:00
70471    26615    782    2017-02-26 22:49:00    2017-02-26 22:49:00
70472    26615    634    2017-02-26 02:28:00    2017-02-26 02:28:00
70473    26616    578    2017-02-26 11:30:00    2017-02-26 11:30:00
70474    26616    687    2017-02-26 23:42:00    2017-02-26 23:42:00
70475    26616    595    2017-02-26 04:08:00    2017-02-26 04:08:00
70476    26616    672    2017-02-26 11:59:00    2017-02-26 11:59:00
70477    26616    899    2017-02-26 10:27:00    2017-02-26 10:27:00
70478    26617    622    2017-02-26 19:23:00    2017-02-26 19:23:00
70479    26617    818    2017-02-26 22:40:00    2017-02-26 22:40:00
70480    26617    857    2017-02-26 18:50:00    2017-02-26 18:50:00
70481    26617    890    2017-02-26 17:35:00    2017-02-26 17:35:00
70482    26617    757    2017-02-26 21:20:00    2017-02-26 21:20:00
70483    26618    527    2017-02-26 05:25:00    2017-02-26 05:25:00
70484    26618    676    2017-02-26 20:03:00    2017-02-26 20:03:00
70485    26618    550    2017-02-26 20:21:00    2017-02-26 20:21:00
70486    26618    838    2017-02-26 07:11:00    2017-02-26 07:11:00
70487    26618    694    2017-02-26 11:57:00    2017-02-26 11:57:00
70488    26619    645    2017-02-26 18:28:00    2017-02-26 18:28:00
70489    26619    849    2017-02-26 12:53:00    2017-02-26 12:53:00
70490    26619    604    2017-02-26 17:39:00    2017-02-26 17:39:00
70491    26619    673    2017-02-26 09:08:00    2017-02-26 09:08:00
70492    26619    905    2017-02-26 10:26:00    2017-02-26 10:26:00
70493    26620    786    2017-02-26 03:33:00    2017-02-26 03:33:00
70494    26620    676    2017-02-26 09:52:00    2017-02-26 09:52:00
70495    26620    465    2017-02-26 02:05:00    2017-02-26 02:05:00
70496    26620    786    2017-02-26 11:55:00    2017-02-26 11:55:00
70497    26620    509    2017-02-26 16:56:00    2017-02-26 16:56:00
70498    26621    611    2017-02-26 09:11:00    2017-02-26 09:11:00
70499    26621    746    2017-02-26 10:39:00    2017-02-26 10:39:00
70500    26621    891    2017-02-26 17:45:00    2017-02-26 17:45:00
70501    26621    652    2017-02-26 20:23:00    2017-02-26 20:23:00
70502    26621    699    2017-02-26 01:14:00    2017-02-26 01:14:00
70503    26622    673    2017-02-26 13:34:00    2017-02-26 13:34:00
70504    26622    508    2017-02-26 19:25:00    2017-02-26 19:25:00
70505    26622    711    2017-02-26 07:56:00    2017-02-26 07:56:00
70506    26622    697    2017-02-26 09:53:00    2017-02-26 09:53:00
70507    26622    529    2017-02-26 14:45:00    2017-02-26 14:45:00
70508    26623    835    2017-02-26 19:56:00    2017-02-26 19:56:00
70509    26623    552    2017-02-26 21:34:00    2017-02-26 21:34:00
70510    26623    626    2017-02-26 04:44:00    2017-02-26 04:44:00
70511    26623    922    2017-02-26 12:05:00    2017-02-26 12:05:00
70512    26623    893    2017-02-26 02:59:00    2017-02-26 02:59:00
70513    26624    824    2017-02-26 11:31:00    2017-02-26 11:31:00
70514    26624    901    2017-02-26 10:16:00    2017-02-26 10:16:00
70515    26624    917    2017-02-26 06:55:00    2017-02-26 06:55:00
70516    26624    892    2017-02-26 12:28:00    2017-02-26 12:28:00
70517    26624    705    2017-02-26 16:35:00    2017-02-26 16:35:00
70518    26625    773    2017-02-26 09:20:00    2017-02-26 09:20:00
70519    26625    604    2017-02-26 02:19:00    2017-02-26 02:19:00
70520    26625    562    2017-02-26 23:50:00    2017-02-26 23:50:00
70521    26625    753    2017-02-26 10:24:00    2017-02-26 10:24:00
70522    26625    929    2017-02-26 09:28:00    2017-02-26 09:28:00
70523    26626    652    2017-02-26 19:39:00    2017-02-26 19:39:00
70524    26626    831    2017-02-26 16:53:00    2017-02-26 16:53:00
70525    26626    815    2017-02-26 04:51:00    2017-02-26 04:51:00
70526    26626    857    2017-02-26 06:33:00    2017-02-26 06:33:00
70527    26626    509    2017-02-26 18:50:00    2017-02-26 18:50:00
70528    26627    936    2017-02-26 06:15:00    2017-02-26 06:15:00
70529    26627    516    2017-02-26 16:24:00    2017-02-26 16:24:00
70530    26627    512    2017-02-26 04:25:00    2017-02-26 04:25:00
70531    26627    812    2017-02-26 06:15:00    2017-02-26 06:15:00
70532    26627    733    2017-02-26 22:42:00    2017-02-26 22:42:00
70533    26628    906    2017-02-26 14:19:00    2017-02-26 14:19:00
70534    26628    589    2017-02-26 12:31:00    2017-02-26 12:31:00
70535    26628    923    2017-02-26 21:31:00    2017-02-26 21:31:00
70536    26628    565    2017-02-26 19:24:00    2017-02-26 19:24:00
70537    26628    961    2017-02-26 20:50:00    2017-02-26 20:50:00
70538    26629    685    2017-02-26 14:16:00    2017-02-26 14:16:00
70539    26629    777    2017-02-26 04:54:00    2017-02-26 04:54:00
70540    26629    596    2017-02-26 14:39:00    2017-02-26 14:39:00
70541    26629    646    2017-02-26 10:16:00    2017-02-26 10:16:00
70542    26629    940    2017-02-26 18:59:00    2017-02-26 18:59:00
70543    26630    763    2017-02-26 02:53:00    2017-02-26 02:53:00
70544    26630    495    2017-02-26 23:36:00    2017-02-26 23:36:00
70545    26630    608    2017-02-26 12:11:00    2017-02-26 12:11:00
70546    26630    939    2017-02-26 09:07:00    2017-02-26 09:07:00
70547    26630    816    2017-02-26 04:03:00    2017-02-26 04:03:00
70548    26631    510    2017-02-26 20:26:00    2017-02-26 20:26:00
70549    26631    530    2017-02-26 20:30:00    2017-02-26 20:30:00
70550    26631    710    2017-02-26 13:28:00    2017-02-26 13:28:00
70551    26631    661    2017-02-26 19:11:00    2017-02-26 19:11:00
70552    26631    639    2017-02-26 19:36:00    2017-02-26 19:36:00
70553    26632    673    2017-02-26 09:08:00    2017-02-26 09:08:00
70554    26632    705    2017-02-26 08:45:00    2017-02-26 08:45:00
70555    26632    773    2017-02-26 16:34:00    2017-02-26 16:34:00
70556    26632    815    2017-02-26 11:00:00    2017-02-26 11:00:00
70557    26632    487    2017-02-26 16:04:00    2017-02-26 16:04:00
70558    26633    471    2017-02-26 13:24:00    2017-02-26 13:24:00
70559    26633    761    2017-02-26 02:09:00    2017-02-26 02:09:00
70560    26633    517    2017-02-26 04:06:00    2017-02-26 04:06:00
70561    26633    870    2017-02-26 12:49:00    2017-02-26 12:49:00
70562    26633    794    2017-02-26 05:03:00    2017-02-26 05:03:00
70563    26634    577    2017-02-26 03:18:00    2017-02-26 03:18:00
70564    26634    880    2017-02-26 04:38:00    2017-02-26 04:38:00
70565    26634    566    2017-02-26 03:42:00    2017-02-26 03:42:00
70566    26634    886    2017-02-26 11:17:00    2017-02-26 11:17:00
70567    26634    828    2017-02-26 13:35:00    2017-02-26 13:35:00
70568    26635    840    2017-02-26 14:52:00    2017-02-26 14:52:00
70569    26635    511    2017-02-26 21:15:00    2017-02-26 21:15:00
70570    26635    475    2017-02-26 02:58:00    2017-02-26 02:58:00
70571    26635    649    2017-02-26 01:36:00    2017-02-26 01:36:00
70572    26635    619    2017-02-26 03:02:00    2017-02-26 03:02:00
70573    26636    595    2017-02-26 13:23:00    2017-02-26 13:23:00
70574    26636    659    2017-02-26 04:46:00    2017-02-26 04:46:00
70575    26636    597    2017-02-26 20:05:00    2017-02-26 20:05:00
70576    26636    776    2017-02-26 22:58:00    2017-02-26 22:58:00
70577    26636    886    2017-02-26 05:21:00    2017-02-26 05:21:00
70578    26637    593    2017-02-26 02:32:00    2017-02-26 02:32:00
70579    26637    559    2017-02-26 01:05:00    2017-02-26 01:05:00
70580    26637    717    2017-02-26 17:05:00    2017-02-26 17:05:00
70581    26637    547    2017-02-26 04:29:00    2017-02-26 04:29:00
70582    26637    573    2017-02-26 14:03:00    2017-02-26 14:03:00
70583    26638    540    2017-02-26 13:47:00    2017-02-26 13:47:00
70584    26638    519    2017-02-26 09:45:00    2017-02-26 09:45:00
70585    26638    713    2017-02-26 13:11:00    2017-02-26 13:11:00
70586    26638    503    2017-02-26 02:49:00    2017-02-26 02:49:00
70587    26638    649    2017-02-26 17:15:00    2017-02-26 17:15:00
70588    26639    824    2017-02-26 12:08:00    2017-02-26 12:08:00
70589    26639    790    2017-02-26 03:00:00    2017-02-26 03:00:00
70590    26639    949    2017-02-26 14:16:00    2017-02-26 14:16:00
70591    26639    909    2017-02-26 19:10:00    2017-02-26 19:10:00
70592    26639    685    2017-02-26 19:39:00    2017-02-26 19:39:00
70593    26640    507    2017-02-26 08:56:00    2017-02-26 08:56:00
70594    26640    727    2017-02-26 01:35:00    2017-02-26 01:35:00
70595    26640    860    2017-02-26 18:16:00    2017-02-26 18:16:00
70596    26640    841    2017-02-26 09:14:00    2017-02-26 09:14:00
70597    26640    673    2017-02-26 12:15:00    2017-02-26 12:15:00
70598    26641    847    2017-02-26 04:22:00    2017-02-26 04:22:00
70599    26641    851    2017-02-26 19:35:00    2017-02-26 19:35:00
70600    26641    700    2017-02-26 01:54:00    2017-02-26 01:54:00
70601    26641    470    2017-02-26 22:41:00    2017-02-26 22:41:00
70602    26641    566    2017-02-26 20:45:00    2017-02-26 20:45:00
70603    26642    565    2017-02-26 22:54:00    2017-02-26 22:54:00
70604    26642    728    2017-02-26 20:57:00    2017-02-26 20:57:00
70605    26642    900    2017-02-26 21:39:00    2017-02-26 21:39:00
70606    26642    606    2017-02-26 07:41:00    2017-02-26 07:41:00
70607    26642    830    2017-02-26 04:44:00    2017-02-26 04:44:00
70608    26643    777    2017-02-26 14:19:00    2017-02-26 14:19:00
70609    26643    843    2017-02-26 01:37:00    2017-02-26 01:37:00
70610    26643    678    2017-02-26 01:31:00    2017-02-26 01:31:00
70611    26643    621    2017-02-26 23:47:00    2017-02-26 23:47:00
70612    26643    744    2017-02-26 03:11:00    2017-02-26 03:11:00
70613    26644    466    2017-02-26 17:12:00    2017-02-26 17:12:00
70614    26644    876    2017-02-26 09:20:00    2017-02-26 09:20:00
70615    26644    796    2017-02-26 17:14:00    2017-02-26 17:14:00
70616    26644    936    2017-02-26 11:38:00    2017-02-26 11:38:00
70617    26644    496    2017-02-26 10:50:00    2017-02-26 10:50:00
70618    26645    874    2017-02-26 17:47:00    2017-02-26 17:47:00
70619    26645    657    2017-02-26 16:14:00    2017-02-26 16:14:00
70620    26645    548    2017-02-26 05:03:00    2017-02-26 05:03:00
70621    26645    847    2017-02-26 04:15:00    2017-02-26 04:15:00
70622    26645    760    2017-02-26 09:53:00    2017-02-26 09:53:00
70623    26646    558    2017-02-26 19:46:00    2017-02-26 19:46:00
70624    26646    883    2017-02-26 16:10:00    2017-02-26 16:10:00
70625    26646    715    2017-02-26 03:39:00    2017-02-26 03:39:00
70626    26646    897    2017-02-26 07:33:00    2017-02-26 07:33:00
70627    26646    828    2017-02-26 16:29:00    2017-02-26 16:29:00
70628    26647    881    2017-02-26 21:29:00    2017-02-26 21:29:00
70629    26647    933    2017-02-26 22:48:00    2017-02-26 22:48:00
70630    26647    668    2017-02-26 21:23:00    2017-02-26 21:23:00
70631    26647    695    2017-02-26 09:21:00    2017-02-26 09:21:00
70632    26647    693    2017-02-26 03:25:00    2017-02-26 03:25:00
70633    26648    939    2017-02-26 23:46:00    2017-02-26 23:46:00
70634    26648    930    2017-02-26 11:00:00    2017-02-26 11:00:00
70635    26648    709    2017-02-26 06:04:00    2017-02-26 06:04:00
70636    26648    911    2017-02-26 17:38:00    2017-02-26 17:38:00
70637    26648    837    2017-02-26 19:08:00    2017-02-26 19:08:00
70638    26649    742    2017-02-26 15:20:00    2017-02-26 15:20:00
70639    26649    520    2017-02-26 09:38:00    2017-02-26 09:38:00
70640    26649    920    2017-02-26 02:37:00    2017-02-26 02:37:00
70641    26649    915    2017-02-26 12:38:00    2017-02-26 12:38:00
70642    26649    770    2017-02-26 19:17:00    2017-02-26 19:17:00
70643    \N    663    2017-02-26 02:53:00    2017-02-26 02:53:00
70644    \N    470    2017-02-26 06:40:00    2017-02-26 06:40:00
70645    \N    869    2017-02-26 09:40:00    2017-02-26 09:40:00
70646    \N    481    2017-02-26 06:02:00    2017-02-26 06:02:00
70647    \N    811    2017-02-26 01:02:00    2017-02-26 01:02:00
70648    26650    835    2017-02-26 22:00:00    2017-02-26 22:00:00
70649    26650    656    2017-02-26 01:52:00    2017-02-26 01:52:00
70650    26650    850    2017-02-26 09:10:00    2017-02-26 09:10:00
70651    26650    530    2017-02-26 15:19:00    2017-02-26 15:19:00
70652    26650    553    2017-02-26 10:38:00    2017-02-26 10:38:00
70653    26651    959    2017-02-26 23:53:00    2017-02-26 23:53:00
70654    26651    719    2017-02-26 04:07:00    2017-02-26 04:07:00
70655    26651    704    2017-02-26 14:11:00    2017-02-26 14:11:00
70656    26651    899    2017-02-26 12:24:00    2017-02-26 12:24:00
70657    26651    495    2017-02-26 20:56:00    2017-02-26 20:56:00
70658    26652    651    2017-02-26 15:09:00    2017-02-26 15:09:00
70659    26652    585    2017-02-26 19:39:00    2017-02-26 19:39:00
70660    26652    924    2017-02-26 09:27:00    2017-02-26 09:27:00
70661    26652    606    2017-02-26 08:42:00    2017-02-26 08:42:00
70662    26652    528    2017-02-26 09:56:00    2017-02-26 09:56:00
70663    26653    726    2017-02-26 13:16:00    2017-02-26 13:16:00
70664    26653    882    2017-02-26 08:17:00    2017-02-26 08:17:00
70665    26653    663    2017-02-26 14:09:00    2017-02-26 14:09:00
70666    26653    791    2017-02-26 10:03:00    2017-02-26 10:03:00
70667    26653    724    2017-02-26 13:50:00    2017-02-26 13:50:00
70668    26654    675    2017-02-26 22:26:00    2017-02-26 22:26:00
70669    26654    723    2017-02-26 17:38:00    2017-02-26 17:38:00
70670    26654    897    2017-02-26 05:04:00    2017-02-26 05:04:00
70671    26654    813    2017-02-26 04:48:00    2017-02-26 04:48:00
70672    26654    894    2017-02-26 07:24:00    2017-02-26 07:24:00
70673    26655    908    2017-02-26 16:12:00    2017-02-26 16:12:00
70674    26655    841    2017-02-26 09:47:00    2017-02-26 09:47:00
70675    26655    498    2017-02-26 02:30:00    2017-02-26 02:30:00
70676    26655    673    2017-02-26 06:12:00    2017-02-26 06:12:00
70677    26655    551    2017-02-26 11:26:00    2017-02-26 11:26:00
70678    26656    474    2017-02-26 12:06:00    2017-02-26 12:06:00
70679    26656    721    2017-02-26 03:27:00    2017-02-26 03:27:00
70680    26656    629    2017-02-26 20:31:00    2017-02-26 20:31:00
70681    26656    517    2017-02-26 11:46:00    2017-02-26 11:46:00
70682    26656    888    2017-02-26 15:28:00    2017-02-26 15:28:00
70683    26657    836    2017-02-26 05:36:00    2017-02-26 05:36:00
70684    26657    672    2017-02-26 15:47:00    2017-02-26 15:47:00
70685    26657    923    2017-02-26 10:09:00    2017-02-26 10:09:00
70686    26657    598    2017-02-26 18:55:00    2017-02-26 18:55:00
70687    26657    640    2017-02-26 15:27:00    2017-02-26 15:27:00
70688    26658    880    2017-02-27 10:16:00    2017-02-27 10:16:00
70689    26658    728    2017-02-27 15:14:00    2017-02-27 15:14:00
70690    26658    910    2017-02-27 17:26:00    2017-02-27 17:26:00
70691    26658    737    2017-02-27 09:38:00    2017-02-27 09:38:00
70692    26658    604    2017-02-27 06:08:00    2017-02-27 06:08:00
70693    26659    937    2017-02-27 02:32:00    2017-02-27 02:32:00
70694    26659    611    2017-02-27 15:08:00    2017-02-27 15:08:00
70695    26659    829    2017-02-27 08:56:00    2017-02-27 08:56:00
70696    26659    500    2017-02-27 20:36:00    2017-02-27 20:36:00
70697    26659    961    2017-02-27 05:45:00    2017-02-27 05:45:00
70698    26660    706    2017-02-27 08:27:00    2017-02-27 08:27:00
70699    26660    889    2017-02-27 14:23:00    2017-02-27 14:23:00
70700    26660    804    2017-02-27 09:47:00    2017-02-27 09:47:00
70701    26660    539    2017-02-27 21:20:00    2017-02-27 21:20:00
70702    26660    914    2017-02-27 20:33:00    2017-02-27 20:33:00
70703    26661    615    2017-02-27 19:18:00    2017-02-27 19:18:00
70704    26661    708    2017-02-27 10:02:00    2017-02-27 10:02:00
70705    26661    848    2017-02-27 07:40:00    2017-02-27 07:40:00
70706    26661    931    2017-02-27 23:30:00    2017-02-27 23:30:00
70707    26661    636    2017-02-27 19:02:00    2017-02-27 19:02:00
70708    26662    865    2017-02-27 18:39:00    2017-02-27 18:39:00
70709    26662    953    2017-02-27 04:55:00    2017-02-27 04:55:00
70710    26662    507    2017-02-27 22:45:00    2017-02-27 22:45:00
70711    26662    819    2017-02-27 14:48:00    2017-02-27 14:48:00
70712    26662    717    2017-02-27 02:48:00    2017-02-27 02:48:00
70713    26663    960    2017-02-27 19:33:00    2017-02-27 19:33:00
70714    26663    499    2017-02-27 21:58:00    2017-02-27 21:58:00
70715    26663    808    2017-02-27 12:04:00    2017-02-27 12:04:00
70716    26663    682    2017-02-27 05:39:00    2017-02-27 05:39:00
70717    26663    870    2017-02-27 07:35:00    2017-02-27 07:35:00
70718    26664    708    2017-02-27 06:56:00    2017-02-27 06:56:00
70719    26664    849    2017-02-27 21:22:00    2017-02-27 21:22:00
70720    26664    802    2017-02-27 14:47:00    2017-02-27 14:47:00
70721    26664    880    2017-02-27 15:34:00    2017-02-27 15:34:00
70722    26664    920    2017-02-27 11:45:00    2017-02-27 11:45:00
70723    26665    762    2017-02-27 15:51:00    2017-02-27 15:51:00
70724    26665    489    2017-02-27 20:23:00    2017-02-27 20:23:00
70725    26665    758    2017-02-27 01:54:00    2017-02-27 01:54:00
70726    26665    786    2017-02-27 14:16:00    2017-02-27 14:16:00
70727    26665    940    2017-02-27 23:05:00    2017-02-27 23:05:00
70728    26666    556    2017-02-27 09:56:00    2017-02-27 09:56:00
70729    26666    522    2017-02-27 19:15:00    2017-02-27 19:15:00
70730    26666    659    2017-02-27 19:59:00    2017-02-27 19:59:00
70731    26666    604    2017-02-27 14:45:00    2017-02-27 14:45:00
70732    26666    856    2017-02-27 09:17:00    2017-02-27 09:17:00
70733    26667    473    2017-02-27 23:07:00    2017-02-27 23:07:00
70734    26667    616    2017-02-27 17:52:00    2017-02-27 17:52:00
70735    26667    937    2017-02-27 23:02:00    2017-02-27 23:02:00
70736    26667    508    2017-02-27 08:40:00    2017-02-27 08:40:00
70737    26667    815    2017-02-27 08:50:00    2017-02-27 08:50:00
70738    26668    866    2017-02-27 11:24:00    2017-02-27 11:24:00
70739    26668    464    2017-02-27 17:37:00    2017-02-27 17:37:00
70740    26668    877    2017-02-27 04:24:00    2017-02-27 04:24:00
70741    26668    842    2017-02-27 14:00:00    2017-02-27 14:00:00
70742    26668    731    2017-02-27 06:22:00    2017-02-27 06:22:00
70743    26669    867    2017-02-27 06:10:00    2017-02-27 06:10:00
70744    26669    532    2017-02-27 05:26:00    2017-02-27 05:26:00
70745    26669    499    2017-02-27 19:36:00    2017-02-27 19:36:00
70746    26669    872    2017-02-27 01:58:00    2017-02-27 01:58:00
70747    26669    906    2017-02-27 12:28:00    2017-02-27 12:28:00
70748    26670    931    2017-02-27 03:35:00    2017-02-27 03:35:00
70749    26670    866    2017-02-27 08:40:00    2017-02-27 08:40:00
70750    26670    664    2017-02-27 07:27:00    2017-02-27 07:27:00
70751    26670    630    2017-02-27 02:00:00    2017-02-27 02:00:00
70752    26670    938    2017-02-27 08:49:00    2017-02-27 08:49:00
70753    26671    603    2017-02-27 06:26:00    2017-02-27 06:26:00
70754    26671    932    2017-02-27 19:17:00    2017-02-27 19:17:00
70755    26671    794    2017-02-27 15:58:00    2017-02-27 15:58:00
70756    26671    918    2017-02-27 10:30:00    2017-02-27 10:30:00
70757    26671    904    2017-02-27 08:11:00    2017-02-27 08:11:00
70758    26672    893    2017-02-27 08:17:00    2017-02-27 08:17:00
70759    26672    780    2017-02-27 08:57:00    2017-02-27 08:57:00
70760    26672    808    2017-02-27 05:52:00    2017-02-27 05:52:00
70761    26672    686    2017-02-27 09:08:00    2017-02-27 09:08:00
70762    26672    465    2017-02-27 09:40:00    2017-02-27 09:40:00
70763    26673    813    2017-02-27 03:22:00    2017-02-27 03:22:00
70764    26673    663    2017-02-27 19:09:00    2017-02-27 19:09:00
70765    26673    719    2017-02-27 15:53:00    2017-02-27 15:53:00
70766    26673    542    2017-02-27 16:03:00    2017-02-27 16:03:00
70767    26673    476    2017-02-27 10:00:00    2017-02-27 10:00:00
70768    26674    780    2017-02-27 07:21:00    2017-02-27 07:21:00
70769    26674    917    2017-02-27 21:03:00    2017-02-27 21:03:00
70770    26674    608    2017-02-27 19:21:00    2017-02-27 19:21:00
70771    26674    474    2017-02-27 23:41:00    2017-02-27 23:41:00
70772    26674    919    2017-02-27 18:53:00    2017-02-27 18:53:00
70773    26675    785    2017-02-27 13:43:00    2017-02-27 13:43:00
70774    26675    917    2017-02-27 21:50:00    2017-02-27 21:50:00
70775    26675    783    2017-02-27 05:48:00    2017-02-27 05:48:00
70776    26675    939    2017-02-27 07:07:00    2017-02-27 07:07:00
70777    26675    921    2017-02-27 12:01:00    2017-02-27 12:01:00
70778    26676    621    2017-02-27 08:00:00    2017-02-27 08:00:00
70779    26676    556    2017-02-27 12:56:00    2017-02-27 12:56:00
70780    26676    694    2017-02-27 01:15:00    2017-02-27 01:15:00
70781    26676    678    2017-02-27 19:07:00    2017-02-27 19:07:00
70782    26676    573    2017-02-27 18:33:00    2017-02-27 18:33:00
70783    26677    679    2017-02-27 11:50:00    2017-02-27 11:50:00
70784    26677    677    2017-02-27 13:44:00    2017-02-27 13:44:00
70785    26677    754    2017-02-27 03:54:00    2017-02-27 03:54:00
70786    26677    808    2017-02-27 10:01:00    2017-02-27 10:01:00
70787    26677    693    2017-02-27 12:21:00    2017-02-27 12:21:00
70788    26678    844    2017-02-27 21:35:00    2017-02-27 21:35:00
70789    26678    961    2017-02-27 08:11:00    2017-02-27 08:11:00
70790    26678    528    2017-02-27 18:51:00    2017-02-27 18:51:00
70791    26678    468    2017-02-27 21:45:00    2017-02-27 21:45:00
70792    26678    848    2017-02-27 13:14:00    2017-02-27 13:14:00
70793    26679    784    2017-02-27 18:35:00    2017-02-27 18:35:00
70794    26679    848    2017-02-27 16:41:00    2017-02-27 16:41:00
70795    26679    906    2017-02-27 12:28:00    2017-02-27 12:28:00
70796    26679    659    2017-02-27 13:48:00    2017-02-27 13:48:00
70797    26679    890    2017-02-27 07:49:00    2017-02-27 07:49:00
70798    26680    955    2017-02-27 13:00:00    2017-02-27 13:00:00
70799    26680    607    2017-02-27 15:38:00    2017-02-27 15:38:00
70800    26680    687    2017-02-27 04:19:00    2017-02-27 04:19:00
70801    26680    636    2017-02-27 23:43:00    2017-02-27 23:43:00
70802    26680    823    2017-02-27 05:55:00    2017-02-27 05:55:00
70803    26681    489    2017-02-27 10:06:00    2017-02-27 10:06:00
70804    26681    637    2017-02-27 17:36:00    2017-02-27 17:36:00
70805    26681    862    2017-02-27 21:05:00    2017-02-27 21:05:00
70806    26681    868    2017-02-27 09:17:00    2017-02-27 09:17:00
70807    26681    548    2017-02-27 17:34:00    2017-02-27 17:34:00
70808    26682    619    2017-02-27 18:52:00    2017-02-27 18:52:00
70809    26682    914    2017-02-27 11:30:00    2017-02-27 11:30:00
70810    26682    825    2017-02-27 18:43:00    2017-02-27 18:43:00
70811    26682    790    2017-02-27 11:23:00    2017-02-27 11:23:00
70812    26682    958    2017-02-27 23:46:00    2017-02-27 23:46:00
70813    26683    612    2017-02-27 01:15:00    2017-02-27 01:15:00
70814    26683    585    2017-02-27 17:06:00    2017-02-27 17:06:00
70815    26683    903    2017-02-27 01:16:00    2017-02-27 01:16:00
70816    26683    684    2017-02-27 19:51:00    2017-02-27 19:51:00
70817    26683    528    2017-02-27 15:44:00    2017-02-27 15:44:00
70818    26684    474    2017-02-27 11:59:00    2017-02-27 11:59:00
70819    26684    525    2017-02-27 16:49:00    2017-02-27 16:49:00
70820    26684    625    2017-02-27 02:17:00    2017-02-27 02:17:00
70821    26684    482    2017-02-27 05:26:00    2017-02-27 05:26:00
70822    26684    895    2017-02-27 03:12:00    2017-02-27 03:12:00
70823    26685    661    2017-02-27 04:43:00    2017-02-27 04:43:00
70824    26685    587    2017-02-27 02:18:00    2017-02-27 02:18:00
70825    26685    806    2017-02-27 14:06:00    2017-02-27 14:06:00
70826    26685    947    2017-02-27 19:51:00    2017-02-27 19:51:00
70827    26685    553    2017-02-27 13:21:00    2017-02-27 13:21:00
70828    26686    672    2017-02-27 05:42:00    2017-02-27 05:42:00
70829    26686    904    2017-02-27 03:46:00    2017-02-27 03:46:00
70830    26686    805    2017-02-27 22:53:00    2017-02-27 22:53:00
70831    26686    880    2017-02-27 13:06:00    2017-02-27 13:06:00
70832    26686    910    2017-02-27 08:30:00    2017-02-27 08:30:00
70833    26687    956    2017-02-27 04:10:00    2017-02-27 04:10:00
70834    26687    622    2017-02-27 10:11:00    2017-02-27 10:11:00
70835    26687    549    2017-02-27 17:33:00    2017-02-27 17:33:00
70836    26687    691    2017-02-27 21:03:00    2017-02-27 21:03:00
70837    26687    590    2017-02-27 13:12:00    2017-02-27 13:12:00
70838    26688    888    2017-02-27 10:38:00    2017-02-27 10:38:00
70839    26688    675    2017-02-27 02:41:00    2017-02-27 02:41:00
70840    26688    953    2017-02-27 13:24:00    2017-02-27 13:24:00
70841    26688    892    2017-02-27 20:08:00    2017-02-27 20:08:00
70842    26688    699    2017-02-27 13:42:00    2017-02-27 13:42:00
70843    26689    586    2017-02-27 08:13:00    2017-02-27 08:13:00
70844    26689    717    2017-02-27 14:34:00    2017-02-27 14:34:00
70845    26689    471    2017-02-27 19:43:00    2017-02-27 19:43:00
70846    26689    865    2017-02-27 03:12:00    2017-02-27 03:12:00
70847    26689    853    2017-02-27 01:39:00    2017-02-27 01:39:00
70848    26690    645    2017-02-27 13:16:00    2017-02-27 13:16:00
70849    26690    878    2017-02-27 04:38:00    2017-02-27 04:38:00
70850    26690    695    2017-02-27 04:53:00    2017-02-27 04:53:00
70851    26690    789    2017-02-27 10:35:00    2017-02-27 10:35:00
70852    26690    760    2017-02-27 09:15:00    2017-02-27 09:15:00
70853    26691    792    2017-02-27 08:59:00    2017-02-27 08:59:00
70854    26691    715    2017-02-27 23:51:00    2017-02-27 23:51:00
70855    26691    536    2017-02-27 15:26:00    2017-02-27 15:26:00
70856    26691    803    2017-02-27 07:00:00    2017-02-27 07:00:00
70857    26691    645    2017-02-27 13:09:00    2017-02-27 13:09:00
70858    26692    496    2017-02-27 11:58:00    2017-02-27 11:58:00
70859    26692    656    2017-02-27 03:18:00    2017-02-27 03:18:00
70860    26692    936    2017-02-27 20:33:00    2017-02-27 20:33:00
70861    26692    601    2017-02-27 08:37:00    2017-02-27 08:37:00
70862    26692    869    2017-02-27 17:02:00    2017-02-27 17:02:00
70863    26693    622    2017-02-27 07:11:00    2017-02-27 07:11:00
70864    26693    864    2017-02-27 03:57:00    2017-02-27 03:57:00
70865    26693    523    2017-02-27 12:59:00    2017-02-27 12:59:00
70866    26693    713    2017-02-27 12:20:00    2017-02-27 12:20:00
70867    26693    601    2017-02-27 15:34:00    2017-02-27 15:34:00
70868    26694    489    2017-02-27 04:17:00    2017-02-27 04:17:00
70869    26694    726    2017-02-27 06:08:00    2017-02-27 06:08:00
70870    26694    540    2017-02-27 08:52:00    2017-02-27 08:52:00
70871    26694    529    2017-02-27 06:03:00    2017-02-27 06:03:00
70872    26694    780    2017-02-27 22:50:00    2017-02-27 22:50:00
70873    26695    485    2017-02-27 18:14:00    2017-02-27 18:14:00
70874    26695    706    2017-02-27 08:00:00    2017-02-27 08:00:00
70875    26695    723    2017-02-27 08:44:00    2017-02-27 08:44:00
70876    26695    487    2017-02-27 19:05:00    2017-02-27 19:05:00
70877    26695    903    2017-02-27 07:20:00    2017-02-27 07:20:00
70878    26696    645    2017-02-27 11:16:00    2017-02-27 11:16:00
70879    26696    763    2017-02-27 16:09:00    2017-02-27 16:09:00
70880    26696    571    2017-02-27 16:07:00    2017-02-27 16:07:00
70881    26696    588    2017-02-27 02:31:00    2017-02-27 02:31:00
70882    26696    601    2017-02-27 14:47:00    2017-02-27 14:47:00
70883    26697    777    2017-02-27 03:47:00    2017-02-27 03:47:00
70884    26697    590    2017-02-27 11:07:00    2017-02-27 11:07:00
70885    26697    933    2017-02-27 05:59:00    2017-02-27 05:59:00
70886    26697    616    2017-02-27 08:10:00    2017-02-27 08:10:00
70887    26697    821    2017-02-27 05:07:00    2017-02-27 05:07:00
70888    26698    662    2017-02-27 12:09:00    2017-02-27 12:09:00
70889    26698    499    2017-02-27 20:12:00    2017-02-27 20:12:00
70890    26698    760    2017-02-27 23:43:00    2017-02-27 23:43:00
70891    26698    779    2017-02-27 20:14:00    2017-02-27 20:14:00
70892    26698    671    2017-02-27 20:18:00    2017-02-27 20:18:00
70893    26699    829    2017-02-27 18:15:00    2017-02-27 18:15:00
70894    26699    674    2017-02-27 06:10:00    2017-02-27 06:10:00
70895    26699    609    2017-02-27 12:32:00    2017-02-27 12:32:00
70896    26699    609    2017-02-27 11:45:00    2017-02-27 11:45:00
70897    26699    711    2017-02-27 20:43:00    2017-02-27 20:43:00
70898    26700    472    2017-02-27 16:16:00    2017-02-27 16:16:00
70899    26700    887    2017-02-27 16:14:00    2017-02-27 16:14:00
70900    26700    831    2017-02-27 20:59:00    2017-02-27 20:59:00
70901    26700    540    2017-02-27 05:12:00    2017-02-27 05:12:00
70902    26700    720    2017-02-27 02:01:00    2017-02-27 02:01:00
70903    26701    875    2017-02-27 14:08:00    2017-02-27 14:08:00
70904    26701    676    2017-02-27 20:01:00    2017-02-27 20:01:00
70905    26701    609    2017-02-27 10:03:00    2017-02-27 10:03:00
70906    26701    795    2017-02-27 08:40:00    2017-02-27 08:40:00
70907    26701    877    2017-02-27 08:29:00    2017-02-27 08:29:00
70908    26702    571    2017-02-27 03:49:00    2017-02-27 03:49:00
70909    26702    538    2017-02-27 17:19:00    2017-02-27 17:19:00
70910    26702    806    2017-02-27 03:29:00    2017-02-27 03:29:00
70911    26702    863    2017-02-27 14:42:00    2017-02-27 14:42:00
70912    26702    784    2017-02-27 05:43:00    2017-02-27 05:43:00
70913    26703    521    2017-02-27 20:56:00    2017-02-27 20:56:00
70914    26703    498    2017-02-27 19:01:00    2017-02-27 19:01:00
70915    26703    721    2017-02-27 01:21:00    2017-02-27 01:21:00
70916    26703    492    2017-02-27 22:45:00    2017-02-27 22:45:00
70917    26703    647    2017-02-27 13:35:00    2017-02-27 13:35:00
70918    26704    788    2017-02-27 02:02:00    2017-02-27 02:02:00
70919    26704    862    2017-02-27 21:20:00    2017-02-27 21:20:00
70920    26704    475    2017-02-27 22:00:00    2017-02-27 22:00:00
70921    26704    911    2017-02-27 21:41:00    2017-02-27 21:41:00
70922    26704    484    2017-02-27 21:38:00    2017-02-27 21:38:00
70923    26705    526    2017-02-27 04:52:00    2017-02-27 04:52:00
70924    26705    830    2017-02-27 10:53:00    2017-02-27 10:53:00
70925    26705    650    2017-02-27 12:39:00    2017-02-27 12:39:00
70926    26705    589    2017-02-27 11:26:00    2017-02-27 11:26:00
70927    26705    797    2017-02-27 22:34:00    2017-02-27 22:34:00
70928    26706    804    2017-02-27 20:40:00    2017-02-27 20:40:00
70929    26706    727    2017-02-27 14:30:00    2017-02-27 14:30:00
70930    26706    884    2017-02-27 09:35:00    2017-02-27 09:35:00
70931    26706    758    2017-02-27 20:54:00    2017-02-27 20:54:00
70932    26706    960    2017-02-27 10:15:00    2017-02-27 10:15:00
70933    26707    628    2017-02-27 16:44:00    2017-02-27 16:44:00
70934    26707    765    2017-02-27 17:29:00    2017-02-27 17:29:00
70935    26707    752    2017-02-27 04:05:00    2017-02-27 04:05:00
70936    26707    570    2017-02-27 07:24:00    2017-02-27 07:24:00
70937    26707    614    2017-02-27 04:02:00    2017-02-27 04:02:00
70938    26708    815    2017-02-27 05:20:00    2017-02-27 05:20:00
70939    26708    850    2017-02-27 23:35:00    2017-02-27 23:35:00
70940    26708    585    2017-02-27 16:06:00    2017-02-27 16:06:00
70941    26708    740    2017-02-27 19:06:00    2017-02-27 19:06:00
70942    26708    565    2017-02-27 05:50:00    2017-02-27 05:50:00
70943    26709    467    2017-02-27 19:40:00    2017-02-27 19:40:00
70944    26709    914    2017-02-27 11:20:00    2017-02-27 11:20:00
70945    26709    791    2017-02-27 22:33:00    2017-02-27 22:33:00
70946    26709    822    2017-02-27 03:06:00    2017-02-27 03:06:00
70947    26709    608    2017-02-27 03:54:00    2017-02-27 03:54:00
70948    26710    531    2017-02-27 12:07:00    2017-02-27 12:07:00
70949    26710    854    2017-02-27 05:08:00    2017-02-27 05:08:00
70950    26710    502    2017-02-27 06:48:00    2017-02-27 06:48:00
70951    26710    484    2017-02-27 15:40:00    2017-02-27 15:40:00
70952    26710    843    2017-02-27 17:59:00    2017-02-27 17:59:00
70953    26711    959    2017-02-27 17:54:00    2017-02-27 17:54:00
70954    26711    832    2017-02-27 11:16:00    2017-02-27 11:16:00
70955    26711    580    2017-02-27 02:31:00    2017-02-27 02:31:00
70956    26711    882    2017-02-27 20:31:00    2017-02-27 20:31:00
70957    26711    684    2017-02-27 13:01:00    2017-02-27 13:01:00
70958    26712    494    2017-02-27 08:22:00    2017-02-27 08:22:00
70959    26712    813    2017-02-27 13:54:00    2017-02-27 13:54:00
70960    26712    959    2017-02-27 04:18:00    2017-02-27 04:18:00
70961    26712    634    2017-02-27 08:39:00    2017-02-27 08:39:00
70962    26712    954    2017-02-27 01:11:00    2017-02-27 01:11:00
70963    26713    956    2017-02-27 04:40:00    2017-02-27 04:40:00
70964    26713    813    2017-02-27 10:36:00    2017-02-27 10:36:00
70965    26713    533    2017-02-27 14:43:00    2017-02-27 14:43:00
70966    26713    811    2017-02-27 18:31:00    2017-02-27 18:31:00
70967    26713    952    2017-02-27 16:34:00    2017-02-27 16:34:00
70968    26714    676    2017-02-27 12:42:00    2017-02-27 12:42:00
70969    26714    761    2017-02-27 11:09:00    2017-02-27 11:09:00
70970    26714    710    2017-02-27 03:23:00    2017-02-27 03:23:00
70971    26714    518    2017-02-27 08:05:00    2017-02-27 08:05:00
70972    26714    797    2017-02-27 19:08:00    2017-02-27 19:08:00
70973    26715    483    2017-02-27 20:41:00    2017-02-27 20:41:00
70974    26715    562    2017-02-27 06:14:00    2017-02-27 06:14:00
70975    26715    707    2017-02-27 05:51:00    2017-02-27 05:51:00
70976    26715    635    2017-02-27 17:40:00    2017-02-27 17:40:00
70977    26715    642    2017-02-27 20:02:00    2017-02-27 20:02:00
70978    26716    746    2017-02-27 10:05:00    2017-02-27 10:05:00
70979    26716    761    2017-02-27 20:34:00    2017-02-27 20:34:00
70980    26716    948    2017-02-27 18:31:00    2017-02-27 18:31:00
70981    26716    773    2017-02-27 10:23:00    2017-02-27 10:23:00
70982    26716    649    2017-02-27 02:39:00    2017-02-27 02:39:00
70983    26717    662    2017-02-27 19:58:00    2017-02-27 19:58:00
70984    26717    925    2017-02-27 07:17:00    2017-02-27 07:17:00
70985    26717    790    2017-02-27 08:05:00    2017-02-27 08:05:00
70986    26717    573    2017-02-27 21:35:00    2017-02-27 21:35:00
70987    26717    937    2017-02-27 04:51:00    2017-02-27 04:51:00
70988    26718    840    2017-02-27 05:29:00    2017-02-27 05:29:00
70989    26718    508    2017-02-27 01:34:00    2017-02-27 01:34:00
70990    26718    882    2017-02-27 16:12:00    2017-02-27 16:12:00
70991    26718    895    2017-02-27 04:49:00    2017-02-27 04:49:00
70992    26718    814    2017-02-27 05:05:00    2017-02-27 05:05:00
70993    26719    777    2017-02-27 01:16:00    2017-02-27 01:16:00
70994    26719    795    2017-02-27 14:50:00    2017-02-27 14:50:00
70995    26719    900    2017-02-27 14:06:00    2017-02-27 14:06:00
70996    26719    895    2017-02-27 11:05:00    2017-02-27 11:05:00
70997    26719    571    2017-02-27 09:27:00    2017-02-27 09:27:00
70998    26720    477    2017-02-27 13:29:00    2017-02-27 13:29:00
70999    26720    708    2017-02-27 11:23:00    2017-02-27 11:23:00
71000    26720    542    2017-02-27 06:13:00    2017-02-27 06:13:00
71001    26720    740    2017-02-27 06:03:00    2017-02-27 06:03:00
71002    26720    842    2017-02-27 18:43:00    2017-02-27 18:43:00
71003    26721    725    2017-02-27 03:33:00    2017-02-27 03:33:00
71004    26721    530    2017-02-27 06:59:00    2017-02-27 06:59:00
71005    26721    520    2017-02-27 11:07:00    2017-02-27 11:07:00
71006    26721    576    2017-02-27 05:11:00    2017-02-27 05:11:00
71007    26721    649    2017-02-27 08:46:00    2017-02-27 08:46:00
71008    26722    879    2017-02-27 11:06:00    2017-02-27 11:06:00
71009    26722    548    2017-02-27 22:29:00    2017-02-27 22:29:00
71010    26722    729    2017-02-27 21:17:00    2017-02-27 21:17:00
71011    26722    665    2017-02-27 03:29:00    2017-02-27 03:29:00
71012    26722    920    2017-02-27 08:00:00    2017-02-27 08:00:00
71013    26723    466    2017-02-27 10:04:00    2017-02-27 10:04:00
71014    26723    679    2017-02-27 18:10:00    2017-02-27 18:10:00
71015    26723    554    2017-02-27 20:56:00    2017-02-27 20:56:00
71016    26723    576    2017-02-27 08:09:00    2017-02-27 08:09:00
71017    26723    536    2017-02-27 08:33:00    2017-02-27 08:33:00
71018    26724    767    2017-02-27 10:03:00    2017-02-27 10:03:00
71019    26724    758    2017-02-27 18:54:00    2017-02-27 18:54:00
71020    26724    543    2017-02-27 10:35:00    2017-02-27 10:35:00
71021    26724    853    2017-02-27 18:29:00    2017-02-27 18:29:00
71022    26724    486    2017-02-27 07:12:00    2017-02-27 07:12:00
71023    26725    710    2017-02-27 06:14:00    2017-02-27 06:14:00
71024    26725    744    2017-02-27 15:42:00    2017-02-27 15:42:00
71025    26725    830    2017-02-27 13:24:00    2017-02-27 13:24:00
71026    26725    736    2017-02-27 19:42:00    2017-02-27 19:42:00
71027    26725    680    2017-02-27 10:06:00    2017-02-27 10:06:00
71028    26726    955    2017-02-27 20:19:00    2017-02-27 20:19:00
71029    26726    735    2017-02-27 04:32:00    2017-02-27 04:32:00
71030    26726    953    2017-02-27 19:21:00    2017-02-27 19:21:00
71031    26726    684    2017-02-27 01:52:00    2017-02-27 01:52:00
71032    26726    537    2017-02-27 19:54:00    2017-02-27 19:54:00
71033    26727    494    2017-02-27 10:29:00    2017-02-27 10:29:00
71034    26727    945    2017-02-27 19:55:00    2017-02-27 19:55:00
71035    26727    663    2017-02-27 06:44:00    2017-02-27 06:44:00
71036    26727    896    2017-02-27 10:27:00    2017-02-27 10:27:00
71037    26727    893    2017-02-27 18:13:00    2017-02-27 18:13:00
71038    26728    790    2017-02-27 19:40:00    2017-02-27 19:40:00
71039    26728    940    2017-02-27 04:51:00    2017-02-27 04:51:00
71040    26728    653    2017-02-27 10:07:00    2017-02-27 10:07:00
71041    26728    904    2017-02-27 10:46:00    2017-02-27 10:46:00
71042    26728    793    2017-02-27 15:47:00    2017-02-27 15:47:00
71043    26729    733    2017-02-27 17:10:00    2017-02-27 17:10:00
71044    26729    639    2017-02-27 16:21:00    2017-02-27 16:21:00
71045    26729    725    2017-02-27 19:15:00    2017-02-27 19:15:00
71046    26729    512    2017-02-27 16:00:00    2017-02-27 16:00:00
71047    26729    819    2017-02-27 09:19:00    2017-02-27 09:19:00
71048    26730    632    2017-02-27 07:44:00    2017-02-27 07:44:00
71049    26730    728    2017-02-27 23:00:00    2017-02-27 23:00:00
71050    26730    762    2017-02-27 17:33:00    2017-02-27 17:33:00
71051    26730    688    2017-02-27 04:14:00    2017-02-27 04:14:00
71052    26730    915    2017-02-27 03:59:00    2017-02-27 03:59:00
71053    26731    841    2017-02-27 18:13:00    2017-02-27 18:13:00
71054    26731    631    2017-02-27 03:08:00    2017-02-27 03:08:00
71055    26731    542    2017-02-27 06:16:00    2017-02-27 06:16:00
71056    26731    506    2017-02-27 17:39:00    2017-02-27 17:39:00
71057    26731    913    2017-02-27 20:03:00    2017-02-27 20:03:00
71058    26732    899    2017-02-27 07:39:00    2017-02-27 07:39:00
71059    26732    482    2017-02-27 12:07:00    2017-02-27 12:07:00
71060    26732    855    2017-02-27 12:45:00    2017-02-27 12:45:00
71061    26732    550    2017-02-27 22:31:00    2017-02-27 22:31:00
71062    26732    581    2017-02-27 13:43:00    2017-02-27 13:43:00
71063    26733    478    2017-02-27 21:03:00    2017-02-27 21:03:00
71064    26733    634    2017-02-27 01:35:00    2017-02-27 01:35:00
71065    26733    937    2017-02-27 21:00:00    2017-02-27 21:00:00
71066    26733    611    2017-02-27 22:51:00    2017-02-27 22:51:00
71067    26733    491    2017-02-27 21:27:00    2017-02-27 21:27:00
71068    26734    832    2017-02-27 18:40:00    2017-02-27 18:40:00
71069    26734    623    2017-02-27 03:40:00    2017-02-27 03:40:00
71070    26734    737    2017-02-27 07:46:00    2017-02-27 07:46:00
71071    26734    836    2017-02-27 23:20:00    2017-02-27 23:20:00
71072    26734    553    2017-02-27 22:48:00    2017-02-27 22:48:00
71073    26735    702    2017-02-27 17:54:00    2017-02-27 17:54:00
71074    26735    602    2017-02-27 17:38:00    2017-02-27 17:38:00
71075    26735    503    2017-02-27 22:12:00    2017-02-27 22:12:00
71076    26735    511    2017-02-27 14:45:00    2017-02-27 14:45:00
71077    26735    833    2017-02-27 11:49:00    2017-02-27 11:49:00
71078    26736    553    2017-02-27 20:07:00    2017-02-27 20:07:00
71079    26736    837    2017-02-27 04:01:00    2017-02-27 04:01:00
71080    26736    477    2017-02-27 06:44:00    2017-02-27 06:44:00
71081    26736    649    2017-02-27 07:40:00    2017-02-27 07:40:00
71082    26736    751    2017-02-27 21:16:00    2017-02-27 21:16:00
71083    26737    622    2017-02-27 22:23:00    2017-02-27 22:23:00
71084    26737    785    2017-02-27 16:01:00    2017-02-27 16:01:00
71085    26737    824    2017-02-27 22:51:00    2017-02-27 22:51:00
71086    26737    512    2017-02-27 15:43:00    2017-02-27 15:43:00
71087    26737    487    2017-02-27 14:28:00    2017-02-27 14:28:00
71088    26738    730    2017-02-27 10:19:00    2017-02-27 10:19:00
71089    26738    538    2017-02-27 08:55:00    2017-02-27 08:55:00
71090    26738    805    2017-02-27 12:00:00    2017-02-27 12:00:00
71091    26738    484    2017-02-27 19:00:00    2017-02-27 19:00:00
71092    26738    541    2017-02-27 12:00:00    2017-02-27 12:00:00
71093    26739    582    2017-02-27 01:05:00    2017-02-27 01:05:00
71094    26739    519    2017-02-27 17:12:00    2017-02-27 17:12:00
71095    26739    481    2017-02-27 16:21:00    2017-02-27 16:21:00
71096    26739    871    2017-02-27 04:14:00    2017-02-27 04:14:00
71097    26739    907    2017-02-27 03:33:00    2017-02-27 03:33:00
71098    26740    916    2017-02-27 15:35:00    2017-02-27 15:35:00
71099    26740    755    2017-02-27 05:47:00    2017-02-27 05:47:00
71100    26740    797    2017-02-27 12:27:00    2017-02-27 12:27:00
71101    26740    675    2017-02-27 05:53:00    2017-02-27 05:53:00
71102    26740    474    2017-02-27 21:11:00    2017-02-27 21:11:00
71103    26741    490    2017-02-27 12:39:00    2017-02-27 12:39:00
71104    26741    477    2017-02-27 15:15:00    2017-02-27 15:15:00
71105    26741    674    2017-02-27 18:58:00    2017-02-27 18:58:00
71106    26741    765    2017-02-27 09:54:00    2017-02-27 09:54:00
71107    26741    798    2017-02-27 09:37:00    2017-02-27 09:37:00
71108    26742    769    2017-02-27 12:00:00    2017-02-27 12:00:00
71109    26742    725    2017-02-27 02:47:00    2017-02-27 02:47:00
71110    26742    890    2017-02-27 13:04:00    2017-02-27 13:04:00
71111    26742    888    2017-02-27 04:55:00    2017-02-27 04:55:00
71112    26742    559    2017-02-27 21:36:00    2017-02-27 21:36:00
71113    26743    623    2017-02-27 13:54:00    2017-02-27 13:54:00
71114    26743    906    2017-02-27 12:33:00    2017-02-27 12:33:00
71115    26743    630    2017-02-27 20:47:00    2017-02-27 20:47:00
71116    26743    574    2017-02-27 07:00:00    2017-02-27 07:00:00
71117    26743    494    2017-02-27 16:32:00    2017-02-27 16:32:00
71118    26744    769    2017-02-27 13:00:00    2017-02-27 13:00:00
71119    26744    942    2017-02-27 13:44:00    2017-02-27 13:44:00
71120    26744    928    2017-02-27 20:11:00    2017-02-27 20:11:00
71121    26744    943    2017-02-27 17:03:00    2017-02-27 17:03:00
71122    26744    652    2017-02-27 23:58:00    2017-02-27 23:58:00
71123    26745    580    2017-02-27 02:26:00    2017-02-27 02:26:00
71124    26745    875    2017-02-27 14:07:00    2017-02-27 14:07:00
71125    26745    840    2017-02-27 11:56:00    2017-02-27 11:56:00
71126    26745    736    2017-02-27 21:58:00    2017-02-27 21:58:00
71127    26745    636    2017-02-27 16:06:00    2017-02-27 16:06:00
71128    26746    864    2017-02-27 06:43:00    2017-02-27 06:43:00
71129    26746    797    2017-02-27 15:46:00    2017-02-27 15:46:00
71130    26746    664    2017-02-27 14:37:00    2017-02-27 14:37:00
71131    26746    804    2017-02-27 16:05:00    2017-02-27 16:05:00
71132    26746    615    2017-02-27 06:32:00    2017-02-27 06:32:00
71133    26747    759    2017-02-27 16:17:00    2017-02-27 16:17:00
71134    26747    787    2017-02-27 22:54:00    2017-02-27 22:54:00
71135    26747    566    2017-02-27 20:59:00    2017-02-27 20:59:00
71136    26747    665    2017-02-27 02:00:00    2017-02-27 02:00:00
71137    26747    628    2017-02-27 18:35:00    2017-02-27 18:35:00
71138    26748    885    2017-02-27 14:16:00    2017-02-27 14:16:00
71139    26748    585    2017-02-27 13:30:00    2017-02-27 13:30:00
71140    26748    898    2017-02-27 21:26:00    2017-02-27 21:26:00
71141    26748    467    2017-02-27 10:28:00    2017-02-27 10:28:00
71142    26748    735    2017-02-27 04:03:00    2017-02-27 04:03:00
71143    26749    786    2017-02-27 10:21:00    2017-02-27 10:21:00
71144    26749    550    2017-02-27 14:22:00    2017-02-27 14:22:00
71145    26749    487    2017-02-27 13:00:00    2017-02-27 13:00:00
71146    26749    802    2017-02-27 07:56:00    2017-02-27 07:56:00
71147    26749    591    2017-02-27 05:54:00    2017-02-27 05:54:00
71148    26750    810    2017-02-27 05:00:00    2017-02-27 05:00:00
71149    26750    816    2017-02-27 05:50:00    2017-02-27 05:50:00
71150    26750    587    2017-02-27 04:40:00    2017-02-27 04:40:00
71151    26750    738    2017-02-27 18:26:00    2017-02-27 18:26:00
71152    26750    701    2017-02-27 07:08:00    2017-02-27 07:08:00
71153    26751    785    2017-03-01 01:06:00    2017-03-01 01:06:00
71154    26751    708    2017-03-01 05:01:00    2017-03-01 05:01:00
71155    26751    569    2017-03-01 05:13:00    2017-03-01 05:13:00
71156    26751    603    2017-03-01 02:33:00    2017-03-01 02:33:00
71157    26751    547    2017-03-01 20:52:00    2017-03-01 20:52:00
71158    26752    836    2017-03-01 04:01:00    2017-03-01 04:01:00
71159    26752    630    2017-03-01 20:14:00    2017-03-01 20:14:00
71160    26752    760    2017-03-01 02:04:00    2017-03-01 02:04:00
71161    26752    565    2017-03-01 03:49:00    2017-03-01 03:49:00
71162    26752    484    2017-03-01 20:03:00    2017-03-01 20:03:00
71163    26753    545    2017-03-01 05:47:00    2017-03-01 05:47:00
71164    26753    941    2017-03-01 15:45:00    2017-03-01 15:45:00
71165    26753    899    2017-03-01 19:58:00    2017-03-01 19:58:00
71166    26753    846    2017-03-01 09:18:00    2017-03-01 09:18:00
71167    26753    852    2017-03-01 02:23:00    2017-03-01 02:23:00
71168    26754    929    2017-03-01 19:50:00    2017-03-01 19:50:00
71169    26754    739    2017-03-01 18:22:00    2017-03-01 18:22:00
71170    26754    675    2017-03-01 07:36:00    2017-03-01 07:36:00
71171    26754    557    2017-03-01 19:03:00    2017-03-01 19:03:00
71172    26754    864    2017-03-01 20:07:00    2017-03-01 20:07:00
71173    26755    691    2017-03-01 01:03:00    2017-03-01 01:03:00
71174    26755    463    2017-03-01 06:12:00    2017-03-01 06:12:00
71175    26755    846    2017-03-01 21:34:00    2017-03-01 21:34:00
71176    26755    808    2017-03-01 03:30:00    2017-03-01 03:30:00
71177    26755    805    2017-03-01 07:43:00    2017-03-01 07:43:00
71178    26756    831    2017-03-01 09:09:00    2017-03-01 09:09:00
71179    26756    620    2017-03-01 21:17:00    2017-03-01 21:17:00
71180    26756    830    2017-03-01 14:19:00    2017-03-01 14:19:00
71181    26756    560    2017-03-01 10:02:00    2017-03-01 10:02:00
71182    26756    730    2017-03-01 05:58:00    2017-03-01 05:58:00
71183    26757    872    2017-03-01 01:19:00    2017-03-01 01:19:00
71184    26757    596    2017-03-01 07:01:00    2017-03-01 07:01:00
71185    26757    863    2017-03-01 10:14:00    2017-03-01 10:14:00
71186    26757    817    2017-03-01 09:37:00    2017-03-01 09:37:00
71187    26757    576    2017-03-01 22:17:00    2017-03-01 22:17:00
71188    26758    854    2017-03-01 19:24:00    2017-03-01 19:24:00
71189    26758    738    2017-03-01 04:05:00    2017-03-01 04:05:00
71190    26758    924    2017-03-01 15:57:00    2017-03-01 15:57:00
71191    26758    750    2017-03-01 18:04:00    2017-03-01 18:04:00
71192    26758    515    2017-03-01 11:41:00    2017-03-01 11:41:00
71193    26759    663    2017-03-01 16:44:00    2017-03-01 16:44:00
71194    26759    828    2017-03-01 20:40:00    2017-03-01 20:40:00
71195    26759    942    2017-03-01 20:54:00    2017-03-01 20:54:00
71196    26759    501    2017-03-01 04:16:00    2017-03-01 04:16:00
71197    26759    958    2017-03-01 14:51:00    2017-03-01 14:51:00
71198    26760    495    2017-03-01 02:31:00    2017-03-01 02:31:00
71199    26760    508    2017-03-01 10:21:00    2017-03-01 10:21:00
71200    26760    502    2017-03-01 10:36:00    2017-03-01 10:36:00
71201    26760    788    2017-03-01 23:55:00    2017-03-01 23:55:00
71202    26760    493    2017-03-01 18:26:00    2017-03-01 18:26:00
71203    26761    870    2017-03-01 19:42:00    2017-03-01 19:42:00
71204    26761    762    2017-03-01 07:41:00    2017-03-01 07:41:00
71205    26761    536    2017-03-01 10:24:00    2017-03-01 10:24:00
71206    26761    672    2017-03-01 13:46:00    2017-03-01 13:46:00
71207    26761    732    2017-03-01 06:00:00    2017-03-01 06:00:00
71208    26762    904    2017-03-01 21:52:00    2017-03-01 21:52:00
71209    26762    652    2017-03-01 11:29:00    2017-03-01 11:29:00
71210    26762    640    2017-03-01 06:37:00    2017-03-01 06:37:00
71211    26762    537    2017-03-01 13:39:00    2017-03-01 13:39:00
71212    26762    563    2017-03-01 15:04:00    2017-03-01 15:04:00
71213    26763    949    2017-03-01 19:54:00    2017-03-01 19:54:00
71214    26763    916    2017-03-01 15:51:00    2017-03-01 15:51:00
71215    26763    472    2017-03-01 16:00:00    2017-03-01 16:00:00
71216    26763    736    2017-03-01 05:44:00    2017-03-01 05:44:00
71217    26763    525    2017-03-01 07:14:00    2017-03-01 07:14:00
71218    26764    784    2017-03-01 17:32:00    2017-03-01 17:32:00
71219    26764    613    2017-03-01 18:18:00    2017-03-01 18:18:00
71220    26764    485    2017-03-01 17:07:00    2017-03-01 17:07:00
71221    26764    756    2017-03-01 17:52:00    2017-03-01 17:52:00
71222    26764    591    2017-03-01 21:36:00    2017-03-01 21:36:00
71223    26765    903    2017-03-01 22:13:00    2017-03-01 22:13:00
71224    26765    806    2017-03-01 03:42:00    2017-03-01 03:42:00
71225    26765    463    2017-03-01 06:31:00    2017-03-01 06:31:00
71226    26765    678    2017-03-01 23:20:00    2017-03-01 23:20:00
71227    26765    804    2017-03-01 14:26:00    2017-03-01 14:26:00
71228    26766    668    2017-03-01 21:11:00    2017-03-01 21:11:00
71229    26766    791    2017-03-01 21:28:00    2017-03-01 21:28:00
71230    26766    764    2017-03-01 09:06:00    2017-03-01 09:06:00
71231    26766    473    2017-03-01 07:47:00    2017-03-01 07:47:00
71232    26766    774    2017-03-01 07:42:00    2017-03-01 07:42:00
71233    26767    782    2017-03-01 17:25:00    2017-03-01 17:25:00
71234    26767    575    2017-03-01 05:52:00    2017-03-01 05:52:00
71235    26767    473    2017-03-01 03:09:00    2017-03-01 03:09:00
71236    26767    473    2017-03-01 19:06:00    2017-03-01 19:06:00
71237    26767    953    2017-03-01 04:59:00    2017-03-01 04:59:00
71238    26768    745    2017-03-01 16:33:00    2017-03-01 16:33:00
71239    26768    747    2017-03-01 19:01:00    2017-03-01 19:01:00
71240    26768    881    2017-03-01 16:57:00    2017-03-01 16:57:00
71241    26768    874    2017-03-01 23:07:00    2017-03-01 23:07:00
71242    26768    659    2017-03-01 01:16:00    2017-03-01 01:16:00
71243    26769    927    2017-03-01 11:15:00    2017-03-01 11:15:00
71244    26769    599    2017-03-01 08:00:00    2017-03-01 08:00:00
71245    26769    788    2017-03-01 16:46:00    2017-03-01 16:46:00
71246    26769    625    2017-03-01 22:53:00    2017-03-01 22:53:00
71247    26769    669    2017-03-01 19:57:00    2017-03-01 19:57:00
71248    26770    867    2017-03-01 18:31:00    2017-03-01 18:31:00
71249    26770    707    2017-03-01 09:06:00    2017-03-01 09:06:00
71250    26770    861    2017-03-01 14:25:00    2017-03-01 14:25:00
71251    26770    498    2017-03-01 15:38:00    2017-03-01 15:38:00
71252    26770    783    2017-03-01 22:59:00    2017-03-01 22:59:00
71253    26771    923    2017-03-02 00:00:00    2017-03-02 00:00:00
71254    26771    895    2017-03-01 08:54:00    2017-03-01 08:54:00
71255    26771    957    2017-03-01 21:55:00    2017-03-01 21:55:00
71256    26771    483    2017-03-01 03:42:00    2017-03-01 03:42:00
71257    26771    812    2017-03-01 17:44:00    2017-03-01 17:44:00
71258    26772    521    2017-03-01 15:13:00    2017-03-01 15:13:00
71259    26772    883    2017-03-01 21:19:00    2017-03-01 21:19:00
71260    26772    668    2017-03-01 03:56:00    2017-03-01 03:56:00
71261    26772    715    2017-03-01 18:07:00    2017-03-01 18:07:00
71262    26772    636    2017-03-01 09:49:00    2017-03-01 09:49:00
71263    26773    502    2017-03-01 15:00:00    2017-03-01 15:00:00
71264    26773    755    2017-03-01 23:35:00    2017-03-01 23:35:00
71265    26773    841    2017-03-01 20:03:00    2017-03-01 20:03:00
71266    26773    557    2017-03-01 23:24:00    2017-03-01 23:24:00
71267    26773    573    2017-03-01 19:57:00    2017-03-01 19:57:00
71268    26774    690    2017-03-02 17:03:00    2017-03-02 17:03:00
71269    26774    557    2017-03-02 04:45:00    2017-03-02 04:45:00
71270    26774    495    2017-03-02 06:48:00    2017-03-02 06:48:00
71271    26774    749    2017-03-02 05:13:00    2017-03-02 05:13:00
71272    26774    719    2017-03-02 17:13:00    2017-03-02 17:13:00
71273    26775    796    2017-03-02 02:26:00    2017-03-02 02:26:00
71274    26775    923    2017-03-02 16:07:00    2017-03-02 16:07:00
71275    26775    546    2017-03-02 22:17:00    2017-03-02 22:17:00
71276    26775    941    2017-03-02 19:45:00    2017-03-02 19:45:00
71277    26775    926    2017-03-02 17:31:00    2017-03-02 17:31:00
71278    26776    771    2017-03-02 06:32:00    2017-03-02 06:32:00
71279    26776    609    2017-03-02 22:47:00    2017-03-02 22:47:00
71280    26776    835    2017-03-02 20:14:00    2017-03-02 20:14:00
71281    26776    639    2017-03-02 23:13:00    2017-03-02 23:13:00
71282    26776    895    2017-03-02 14:11:00    2017-03-02 14:11:00
71283    26777    691    2017-03-02 22:33:00    2017-03-02 22:33:00
71284    26777    555    2017-03-02 15:34:00    2017-03-02 15:34:00
71285    26777    690    2017-03-02 17:35:00    2017-03-02 17:35:00
71286    26777    549    2017-03-02 07:16:00    2017-03-02 07:16:00
71287    26777    934    2017-03-02 23:21:00    2017-03-02 23:21:00
71288    26778    841    2017-03-02 08:50:00    2017-03-02 08:50:00
71289    26778    525    2017-03-02 18:15:00    2017-03-02 18:15:00
71290    26778    625    2017-03-02 18:23:00    2017-03-02 18:23:00
71291    26778    755    2017-03-02 01:00:00    2017-03-02 01:00:00
71292    26778    469    2017-03-02 11:55:00    2017-03-02 11:55:00
71293    26779    806    2017-03-02 08:07:00    2017-03-02 08:07:00
71294    26779    852    2017-03-02 04:21:00    2017-03-02 04:21:00
71295    26779    605    2017-03-02 01:44:00    2017-03-02 01:44:00
71296    26779    494    2017-03-02 02:11:00    2017-03-02 02:11:00
71297    26779    813    2017-03-02 02:47:00    2017-03-02 02:47:00
71298    26780    741    2017-03-02 19:19:00    2017-03-02 19:19:00
71299    26780    908    2017-03-02 21:26:00    2017-03-02 21:26:00
71300    26780    800    2017-03-02 11:58:00    2017-03-02 11:58:00
71301    26780    506    2017-03-02 18:58:00    2017-03-02 18:58:00
71302    26780    877    2017-03-02 20:13:00    2017-03-02 20:13:00
71303    26781    598    2017-03-02 01:00:00    2017-03-02 01:00:00
71304    26781    503    2017-03-02 15:30:00    2017-03-02 15:30:00
71305    26781    751    2017-03-02 20:42:00    2017-03-02 20:42:00
71306    26781    809    2017-03-02 21:03:00    2017-03-02 21:03:00
71307    26781    883    2017-03-02 09:04:00    2017-03-02 09:04:00
71308    26782    685    2017-03-02 02:19:00    2017-03-02 02:19:00
71309    26782    495    2017-03-02 16:51:00    2017-03-02 16:51:00
71310    26782    913    2017-03-02 21:18:00    2017-03-02 21:18:00
71311    26782    761    2017-03-02 02:00:00    2017-03-02 02:00:00
71312    26782    778    2017-03-02 22:37:00    2017-03-02 22:37:00
71313    26783    538    2017-03-02 15:22:00    2017-03-02 15:22:00
71314    26783    613    2017-03-02 10:38:00    2017-03-02 10:38:00
71315    26783    693    2017-03-02 20:55:00    2017-03-02 20:55:00
71316    26783    857    2017-03-02 09:07:00    2017-03-02 09:07:00
71317    26783    926    2017-03-02 16:52:00    2017-03-02 16:52:00
71318    26784    880    2017-03-02 23:19:00    2017-03-02 23:19:00
71319    26784    617    2017-03-02 11:09:00    2017-03-02 11:09:00
71320    26784    821    2017-03-02 23:47:00    2017-03-02 23:47:00
71321    26784    722    2017-03-02 07:24:00    2017-03-02 07:24:00
71322    26784    630    2017-03-02 08:27:00    2017-03-02 08:27:00
71323    26785    923    2017-03-02 06:24:00    2017-03-02 06:24:00
71324    26785    839    2017-03-02 05:16:00    2017-03-02 05:16:00
71325    26785    942    2017-03-02 23:43:00    2017-03-02 23:43:00
71326    26785    955    2017-03-02 18:14:00    2017-03-02 18:14:00
71327    26785    833    2017-03-02 21:26:00    2017-03-02 21:26:00
71328    26786    837    2017-03-02 22:15:00    2017-03-02 22:15:00
71329    26786    726    2017-03-02 17:28:00    2017-03-02 17:28:00
71330    26786    693    2017-03-02 17:28:00    2017-03-02 17:28:00
71331    26786    915    2017-03-02 08:44:00    2017-03-02 08:44:00
71332    26786    840    2017-03-02 10:34:00    2017-03-02 10:34:00
71333    26787    596    2017-03-02 09:47:00    2017-03-02 09:47:00
71334    26787    904    2017-03-02 21:20:00    2017-03-02 21:20:00
71335    26787    947    2017-03-02 23:58:00    2017-03-02 23:58:00
71336    26787    840    2017-03-02 06:24:00    2017-03-02 06:24:00
71337    26787    909    2017-03-02 10:34:00    2017-03-02 10:34:00
71338    26788    648    2017-03-02 14:32:00    2017-03-02 14:32:00
71339    26788    834    2017-03-02 10:01:00    2017-03-02 10:01:00
71340    26788    904    2017-03-02 06:59:00    2017-03-02 06:59:00
71341    26788    518    2017-03-02 03:29:00    2017-03-02 03:29:00
71342    26788    797    2017-03-02 01:19:00    2017-03-02 01:19:00
71343    26789    639    2017-03-02 14:37:00    2017-03-02 14:37:00
71344    26789    694    2017-03-02 11:44:00    2017-03-02 11:44:00
71345    26789    886    2017-03-02 13:05:00    2017-03-02 13:05:00
71346    26789    671    2017-03-02 08:35:00    2017-03-02 08:35:00
71347    26789    542    2017-03-02 20:32:00    2017-03-02 20:32:00
71348    26790    736    2017-03-02 16:28:00    2017-03-02 16:28:00
71349    26790    906    2017-03-02 06:08:00    2017-03-02 06:08:00
71350    26790    562    2017-03-02 05:38:00    2017-03-02 05:38:00
71351    26790    830    2017-03-02 11:49:00    2017-03-02 11:49:00
71352    26790    809    2017-03-02 02:00:00    2017-03-02 02:00:00
71353    26791    590    2017-03-02 07:34:00    2017-03-02 07:34:00
71354    26791    849    2017-03-02 07:38:00    2017-03-02 07:38:00
71355    26791    631    2017-03-02 20:16:00    2017-03-02 20:16:00
71356    26791    760    2017-03-02 14:22:00    2017-03-02 14:22:00
71357    26791    891    2017-03-02 17:41:00    2017-03-02 17:41:00
71358    26792    470    2017-03-02 02:11:00    2017-03-02 02:11:00
71359    26792    672    2017-03-02 01:40:00    2017-03-02 01:40:00
71360    26792    731    2017-03-02 15:14:00    2017-03-02 15:14:00
71361    26792    837    2017-03-02 04:34:00    2017-03-02 04:34:00
71362    26792    900    2017-03-02 15:40:00    2017-03-02 15:40:00
71363    26793    901    2017-03-02 07:24:00    2017-03-02 07:24:00
71364    26793    567    2017-03-02 17:57:00    2017-03-02 17:57:00
71365    26793    682    2017-03-02 03:49:00    2017-03-02 03:49:00
71366    26793    937    2017-03-02 22:13:00    2017-03-02 22:13:00
71367    26793    532    2017-03-02 13:11:00    2017-03-02 13:11:00
71368    26794    651    2017-03-02 22:51:00    2017-03-02 22:51:00
71369    26794    604    2017-03-02 01:47:00    2017-03-02 01:47:00
71370    26794    795    2017-03-02 21:28:00    2017-03-02 21:28:00
71371    26794    511    2017-03-02 16:32:00    2017-03-02 16:32:00
71372    26794    643    2017-03-02 18:01:00    2017-03-02 18:01:00
71373    26795    845    2017-03-02 20:30:00    2017-03-02 20:30:00
71374    26795    669    2017-03-02 05:12:00    2017-03-02 05:12:00
71375    26795    671    2017-03-02 11:48:00    2017-03-02 11:48:00
71376    26795    668    2017-03-02 09:37:00    2017-03-02 09:37:00
71377    26795    599    2017-03-02 09:53:00    2017-03-02 09:53:00
71378    26796    555    2017-03-02 22:59:00    2017-03-02 22:59:00
71379    26796    623    2017-03-02 14:13:00    2017-03-02 14:13:00
71380    26796    835    2017-03-02 18:11:00    2017-03-02 18:11:00
71381    26796    551    2017-03-02 14:28:00    2017-03-02 14:28:00
71382    26796    788    2017-03-02 06:12:00    2017-03-02 06:12:00
71383    26797    765    2017-03-02 22:04:00    2017-03-02 22:04:00
71384    26797    620    2017-03-02 04:10:00    2017-03-02 04:10:00
71385    26797    811    2017-03-02 21:46:00    2017-03-02 21:46:00
71386    26797    771    2017-03-02 13:01:00    2017-03-02 13:01:00
71387    26797    740    2017-03-02 18:33:00    2017-03-02 18:33:00
71388    26798    531    2017-03-02 19:25:00    2017-03-02 19:25:00
71389    26798    692    2017-03-02 15:17:00    2017-03-02 15:17:00
71390    26798    823    2017-03-02 06:08:00    2017-03-02 06:08:00
71391    26798    659    2017-03-02 16:45:00    2017-03-02 16:45:00
71392    26798    870    2017-03-02 20:50:00    2017-03-02 20:50:00
71393    26799    696    2017-03-02 23:33:00    2017-03-02 23:33:00
71394    26799    644    2017-03-02 18:44:00    2017-03-02 18:44:00
71395    26799    933    2017-03-02 06:10:00    2017-03-02 06:10:00
71396    26799    841    2017-03-02 09:35:00    2017-03-02 09:35:00
71397    26799    740    2017-03-02 01:52:00    2017-03-02 01:52:00
71398    26800    783    2017-03-02 02:16:00    2017-03-02 02:16:00
71399    26800    775    2017-03-02 14:18:00    2017-03-02 14:18:00
71400    26800    842    2017-03-02 07:41:00    2017-03-02 07:41:00
71401    26800    828    2017-03-02 11:43:00    2017-03-02 11:43:00
71402    26800    538    2017-03-02 09:17:00    2017-03-02 09:17:00
71403    26801    877    2017-03-02 10:43:00    2017-03-02 10:43:00
71404    26801    603    2017-03-02 13:29:00    2017-03-02 13:29:00
71405    26801    695    2017-03-02 06:24:00    2017-03-02 06:24:00
71406    26801    740    2017-03-02 04:46:00    2017-03-02 04:46:00
71407    26801    859    2017-03-02 13:08:00    2017-03-02 13:08:00
71408    26802    897    2017-03-02 13:08:00    2017-03-02 13:08:00
71409    26802    799    2017-03-02 13:55:00    2017-03-02 13:55:00
71410    26802    947    2017-03-02 16:28:00    2017-03-02 16:28:00
71411    26802    940    2017-03-02 21:00:00    2017-03-02 21:00:00
71412    26802    628    2017-03-02 09:18:00    2017-03-02 09:18:00
71413    26803    622    2017-03-02 02:34:00    2017-03-02 02:34:00
71414    26803    561    2017-03-02 16:08:00    2017-03-02 16:08:00
71415    26803    870    2017-03-02 08:55:00    2017-03-02 08:55:00
71416    26803    898    2017-03-02 01:32:00    2017-03-02 01:32:00
71417    26803    683    2017-03-02 02:37:00    2017-03-02 02:37:00
71418    26804    903    2017-03-02 22:40:00    2017-03-02 22:40:00
71419    26804    866    2017-03-02 02:00:00    2017-03-02 02:00:00
71420    26804    890    2017-03-02 13:04:00    2017-03-02 13:04:00
71421    26804    510    2017-03-02 17:32:00    2017-03-02 17:32:00
71422    26804    811    2017-03-02 06:44:00    2017-03-02 06:44:00
71423    26805    926    2017-03-02 21:51:00    2017-03-02 21:51:00
71424    26805    812    2017-03-02 07:19:00    2017-03-02 07:19:00
71425    26805    866    2017-03-02 01:28:00    2017-03-02 01:28:00
71426    26805    492    2017-03-02 19:03:00    2017-03-02 19:03:00
71427    26805    710    2017-03-02 11:57:00    2017-03-02 11:57:00
71428    26806    835    2017-03-02 01:15:00    2017-03-02 01:15:00
71429    26806    710    2017-03-02 08:12:00    2017-03-02 08:12:00
71430    26806    681    2017-03-02 22:17:00    2017-03-02 22:17:00
71431    26806    680    2017-03-02 02:20:00    2017-03-02 02:20:00
71432    26806    720    2017-03-02 17:25:00    2017-03-02 17:25:00
71433    26807    530    2017-03-02 11:27:00    2017-03-02 11:27:00
71434    26807    737    2017-03-02 05:22:00    2017-03-02 05:22:00
71435    26807    496    2017-03-02 08:44:00    2017-03-02 08:44:00
71436    26807    911    2017-03-02 20:56:00    2017-03-02 20:56:00
71437    26807    955    2017-03-02 19:49:00    2017-03-02 19:49:00
71438    26808    729    2017-03-02 10:23:00    2017-03-02 10:23:00
71439    26808    735    2017-03-02 03:23:00    2017-03-02 03:23:00
71440    26808    620    2017-03-02 19:58:00    2017-03-02 19:58:00
71441    26808    812    2017-03-02 06:44:00    2017-03-02 06:44:00
71442    26808    846    2017-03-02 16:50:00    2017-03-02 16:50:00
71443    26809    693    2017-03-02 06:54:00    2017-03-02 06:54:00
71444    26809    623    2017-03-02 07:18:00    2017-03-02 07:18:00
71445    26809    838    2017-03-02 13:52:00    2017-03-02 13:52:00
71446    26809    932    2017-03-02 23:07:00    2017-03-02 23:07:00
71447    26809    749    2017-03-02 12:43:00    2017-03-02 12:43:00
71448    26810    819    2017-03-02 01:53:00    2017-03-02 01:53:00
71449    26810    481    2017-03-02 15:03:00    2017-03-02 15:03:00
71450    26810    822    2017-03-02 06:26:00    2017-03-02 06:26:00
71451    26810    570    2017-03-02 12:09:00    2017-03-02 12:09:00
71452    26810    554    2017-03-02 02:03:00    2017-03-02 02:03:00
71453    26811    747    2017-03-02 15:04:00    2017-03-02 15:04:00
71454    26811    544    2017-03-02 03:35:00    2017-03-02 03:35:00
71455    26811    928    2017-03-02 19:59:00    2017-03-02 19:59:00
71456    26811    800    2017-03-02 10:22:00    2017-03-02 10:22:00
71457    26811    488    2017-03-02 16:25:00    2017-03-02 16:25:00
71458    26812    472    2017-03-02 20:42:00    2017-03-02 20:42:00
71459    26812    791    2017-03-02 22:03:00    2017-03-02 22:03:00
71460    26812    576    2017-03-02 06:43:00    2017-03-02 06:43:00
71461    26812    719    2017-03-02 09:00:00    2017-03-02 09:00:00
71462    26812    908    2017-03-02 09:40:00    2017-03-02 09:40:00
71463    26813    514    2017-03-02 12:31:00    2017-03-02 12:31:00
71464    26813    511    2017-03-02 03:33:00    2017-03-02 03:33:00
71465    26813    848    2017-03-02 18:21:00    2017-03-02 18:21:00
71466    26813    629    2017-03-02 12:11:00    2017-03-02 12:11:00
71467    26813    662    2017-03-02 14:50:00    2017-03-02 14:50:00
71468    26814    830    2017-03-02 05:22:00    2017-03-02 05:22:00
71469    26814    909    2017-03-02 16:04:00    2017-03-02 16:04:00
71470    26814    531    2017-03-02 20:28:00    2017-03-02 20:28:00
71471    26814    950    2017-03-02 11:44:00    2017-03-02 11:44:00
71472    26814    740    2017-03-02 18:13:00    2017-03-02 18:13:00
71473    26815    616    2017-03-02 02:11:00    2017-03-02 02:11:00
71474    26815    495    2017-03-02 18:41:00    2017-03-02 18:41:00
71475    26815    497    2017-03-02 08:21:00    2017-03-02 08:21:00
71476    26815    945    2017-03-02 13:13:00    2017-03-02 13:13:00
71477    26815    541    2017-03-02 02:39:00    2017-03-02 02:39:00
71478    26816    919    2017-03-02 12:55:00    2017-03-02 12:55:00
71479    26816    900    2017-03-02 17:30:00    2017-03-02 17:30:00
71480    26816    893    2017-03-02 23:03:00    2017-03-02 23:03:00
71481    26816    691    2017-03-02 15:08:00    2017-03-02 15:08:00
71482    26816    524    2017-03-02 21:16:00    2017-03-02 21:16:00
71483    26817    936    2017-03-02 14:10:00    2017-03-02 14:10:00
71484    26817    711    2017-03-02 18:11:00    2017-03-02 18:11:00
71485    26817    759    2017-03-02 06:06:00    2017-03-02 06:06:00
71486    26817    871    2017-03-02 16:44:00    2017-03-02 16:44:00
71487    26817    604    2017-03-02 15:39:00    2017-03-02 15:39:00
71488    26818    819    2017-03-02 18:50:00    2017-03-02 18:50:00
71489    26818    782    2017-03-02 09:56:00    2017-03-02 09:56:00
71490    26818    589    2017-03-02 12:05:00    2017-03-02 12:05:00
71491    26818    480    2017-03-02 17:02:00    2017-03-02 17:02:00
71492    26818    789    2017-03-02 22:59:00    2017-03-02 22:59:00
71493    26819    920    2017-03-02 12:29:00    2017-03-02 12:29:00
71494    26819    850    2017-03-02 14:01:00    2017-03-02 14:01:00
71495    26819    490    2017-03-02 06:57:00    2017-03-02 06:57:00
71496    26819    787    2017-03-02 14:22:00    2017-03-02 14:22:00
71497    26819    649    2017-03-02 12:13:00    2017-03-02 12:13:00
71498    26820    567    2017-03-02 11:08:00    2017-03-02 11:08:00
71499    26820    668    2017-03-02 03:15:00    2017-03-02 03:15:00
71500    26820    876    2017-03-02 12:31:00    2017-03-02 12:31:00
71501    26820    848    2017-03-02 06:43:00    2017-03-02 06:43:00
71502    26820    506    2017-03-02 18:35:00    2017-03-02 18:35:00
71503    26821    480    2017-03-02 12:01:00    2017-03-02 12:01:00
71504    26821    543    2017-03-02 17:14:00    2017-03-02 17:14:00
71505    26821    481    2017-03-02 03:25:00    2017-03-02 03:25:00
71506    26821    927    2017-03-02 03:54:00    2017-03-02 03:54:00
71507    26821    770    2017-03-02 04:45:00    2017-03-02 04:45:00
71508    26822    544    2017-03-02 23:47:00    2017-03-02 23:47:00
71509    26822    944    2017-03-02 07:51:00    2017-03-02 07:51:00
71510    26822    869    2017-03-02 21:14:00    2017-03-02 21:14:00
71511    26822    477    2017-03-02 14:46:00    2017-03-02 14:46:00
71512    26822    642    2017-03-02 01:27:00    2017-03-02 01:27:00
71513    26823    522    2017-03-02 10:38:00    2017-03-02 10:38:00
71514    26823    585    2017-03-02 20:44:00    2017-03-02 20:44:00
71515    26823    736    2017-03-02 11:09:00    2017-03-02 11:09:00
71516    26823    866    2017-03-02 09:51:00    2017-03-02 09:51:00
71517    26823    746    2017-03-02 18:04:00    2017-03-02 18:04:00
71518    26824    926    2017-03-03 02:24:00    2017-03-03 02:24:00
71519    26824    669    2017-03-03 21:48:00    2017-03-03 21:48:00
71520    26824    845    2017-03-03 16:23:00    2017-03-03 16:23:00
71521    26824    463    2017-03-03 06:55:00    2017-03-03 06:55:00
71522    26824    913    2017-03-03 02:52:00    2017-03-03 02:52:00
71523    26825    800    2017-03-03 11:25:00    2017-03-03 11:25:00
71524    26825    780    2017-03-03 09:38:00    2017-03-03 09:38:00
71525    26825    549    2017-03-03 05:51:00    2017-03-03 05:51:00
71526    26825    529    2017-03-03 02:33:00    2017-03-03 02:33:00
71527    26825    589    2017-03-03 15:25:00    2017-03-03 15:25:00
71528    26826    802    2017-03-03 21:12:00    2017-03-03 21:12:00
71529    26826    900    2017-03-03 02:55:00    2017-03-03 02:55:00
71530    26826    934    2017-03-03 12:15:00    2017-03-03 12:15:00
71531    26826    766    2017-03-03 21:23:00    2017-03-03 21:23:00
71532    26826    723    2017-03-03 21:25:00    2017-03-03 21:25:00
71533    26827    911    2017-03-03 07:41:00    2017-03-03 07:41:00
71534    26827    628    2017-03-03 16:59:00    2017-03-03 16:59:00
71535    26827    591    2017-03-03 01:14:00    2017-03-03 01:14:00
71536    26827    781    2017-03-03 05:13:00    2017-03-03 05:13:00
71537    26827    497    2017-03-03 23:06:00    2017-03-03 23:06:00
71538    26828    842    2017-03-03 05:19:00    2017-03-03 05:19:00
71539    26828    593    2017-03-03 14:13:00    2017-03-03 14:13:00
71540    26828    471    2017-03-03 06:59:00    2017-03-03 06:59:00
71541    26828    651    2017-03-03 02:05:00    2017-03-03 02:05:00
71542    26828    891    2017-03-03 14:01:00    2017-03-03 14:01:00
71543    26829    958    2017-03-03 14:10:00    2017-03-03 14:10:00
71544    26829    575    2017-03-03 19:30:00    2017-03-03 19:30:00
71545    26829    900    2017-03-03 09:55:00    2017-03-03 09:55:00
71546    26829    940    2017-03-03 08:29:00    2017-03-03 08:29:00
71547    26829    695    2017-03-03 22:22:00    2017-03-03 22:22:00
71548    26830    534    2017-03-03 22:57:00    2017-03-03 22:57:00
71549    26830    716    2017-03-03 05:43:00    2017-03-03 05:43:00
71550    26830    865    2017-03-03 21:00:00    2017-03-03 21:00:00
71551    26830    815    2017-03-03 07:57:00    2017-03-03 07:57:00
71552    26830    562    2017-03-03 01:42:00    2017-03-03 01:42:00
71553    26831    567    2017-03-03 04:01:00    2017-03-03 04:01:00
71554    26831    845    2017-03-03 05:19:00    2017-03-03 05:19:00
71555    26831    716    2017-03-03 12:05:00    2017-03-03 12:05:00
71556    26831    784    2017-03-03 12:42:00    2017-03-03 12:42:00
71557    26831    665    2017-03-03 21:10:00    2017-03-03 21:10:00
71558    26832    607    2017-03-03 03:07:00    2017-03-03 03:07:00
71559    26832    629    2017-03-03 11:33:00    2017-03-03 11:33:00
71560    26832    518    2017-03-03 14:13:00    2017-03-03 14:13:00
71561    26832    758    2017-03-03 13:21:00    2017-03-03 13:21:00
71562    26832    885    2017-03-03 18:31:00    2017-03-03 18:31:00
71563    26833    887    2017-03-03 15:00:00    2017-03-03 15:00:00
71564    26833    678    2017-03-03 20:42:00    2017-03-03 20:42:00
71565    26833    891    2017-03-03 02:05:00    2017-03-03 02:05:00
71566    26833    746    2017-03-03 20:56:00    2017-03-03 20:56:00
71567    26833    817    2017-03-03 12:27:00    2017-03-03 12:27:00
71568    26834    485    2017-03-03 12:47:00    2017-03-03 12:47:00
71569    26834    690    2017-03-03 22:06:00    2017-03-03 22:06:00
71570    26834    482    2017-03-03 12:11:00    2017-03-03 12:11:00
71571    26834    662    2017-03-03 16:39:00    2017-03-03 16:39:00
71572    26834    845    2017-03-03 09:16:00    2017-03-03 09:16:00
71573    26835    481    2017-03-03 06:47:00    2017-03-03 06:47:00
71574    26835    867    2017-03-03 01:59:00    2017-03-03 01:59:00
71575    26835    897    2017-03-03 21:08:00    2017-03-03 21:08:00
71576    26835    682    2017-03-03 17:54:00    2017-03-03 17:54:00
71577    26835    655    2017-03-03 10:44:00    2017-03-03 10:44:00
71578    26836    765    2017-03-03 16:00:00    2017-03-03 16:00:00
71579    26836    903    2017-03-03 09:58:00    2017-03-03 09:58:00
71580    26836    727    2017-03-03 17:24:00    2017-03-03 17:24:00
71581    26836    635    2017-03-03 15:20:00    2017-03-03 15:20:00
71582    26836    900    2017-03-03 13:49:00    2017-03-03 13:49:00
71583    26837    928    2017-03-03 04:56:00    2017-03-03 04:56:00
71584    26837    655    2017-03-03 03:52:00    2017-03-03 03:52:00
71585    26837    685    2017-03-03 03:53:00    2017-03-03 03:53:00
71586    26837    909    2017-03-03 17:43:00    2017-03-03 17:43:00
71587    26837    730    2017-03-03 08:06:00    2017-03-03 08:06:00
71588    26838    843    2017-03-03 20:01:00    2017-03-03 20:01:00
71589    26838    917    2017-03-03 13:55:00    2017-03-03 13:55:00
71590    26838    665    2017-03-03 07:20:00    2017-03-03 07:20:00
71591    26838    573    2017-03-03 23:11:00    2017-03-03 23:11:00
71592    26838    574    2017-03-03 12:41:00    2017-03-03 12:41:00
71593    26839    776    2017-03-03 05:42:00    2017-03-03 05:42:00
71594    26839    633    2017-03-03 19:19:00    2017-03-03 19:19:00
71595    26839    854    2017-03-03 10:56:00    2017-03-03 10:56:00
71596    26839    821    2017-03-03 10:18:00    2017-03-03 10:18:00
71597    26839    751    2017-03-03 01:58:00    2017-03-03 01:58:00
71598    26840    737    2017-03-04 16:38:00    2017-03-04 16:38:00
71599    26840    720    2017-03-04 19:26:00    2017-03-04 19:26:00
71600    26840    867    2017-03-04 12:47:00    2017-03-04 12:47:00
71601    26840    949    2017-03-04 09:28:00    2017-03-04 09:28:00
71602    26840    612    2017-03-04 06:39:00    2017-03-04 06:39:00
71603    26841    774    2017-03-04 16:55:00    2017-03-04 16:55:00
71604    26841    655    2017-03-04 10:21:00    2017-03-04 10:21:00
71605    26841    829    2017-03-04 23:06:00    2017-03-04 23:06:00
71606    26841    777    2017-03-04 05:33:00    2017-03-04 05:33:00
71607    26841    893    2017-03-04 10:38:00    2017-03-04 10:38:00
71608    26842    816    2017-03-04 12:50:00    2017-03-04 12:50:00
71609    26842    743    2017-03-04 12:39:00    2017-03-04 12:39:00
71610    26842    665    2017-03-04 15:37:00    2017-03-04 15:37:00
71611    26842    828    2017-03-04 10:36:00    2017-03-04 10:36:00
71612    26842    698    2017-03-04 21:53:00    2017-03-04 21:53:00
71613    26843    495    2017-03-04 02:03:00    2017-03-04 02:03:00
71614    26843    609    2017-03-04 03:54:00    2017-03-04 03:54:00
71615    26843    673    2017-03-04 05:18:00    2017-03-04 05:18:00
71616    26843    728    2017-03-04 16:29:00    2017-03-04 16:29:00
71617    26843    902    2017-03-04 07:08:00    2017-03-04 07:08:00
71618    26844    652    2017-03-04 07:45:00    2017-03-04 07:45:00
71619    26844    686    2017-03-04 13:22:00    2017-03-04 13:22:00
71620    26844    612    2017-03-04 19:22:00    2017-03-04 19:22:00
71621    26844    684    2017-03-04 10:34:00    2017-03-04 10:34:00
71622    26844    693    2017-03-04 16:39:00    2017-03-04 16:39:00
71623    26845    775    2017-03-04 04:48:00    2017-03-04 04:48:00
71624    26845    768    2017-03-04 21:06:00    2017-03-04 21:06:00
71625    26845    619    2017-03-04 07:16:00    2017-03-04 07:16:00
71626    26845    857    2017-03-04 04:59:00    2017-03-04 04:59:00
71627    26845    717    2017-03-04 01:25:00    2017-03-04 01:25:00
71628    26846    903    2017-03-04 09:42:00    2017-03-04 09:42:00
71629    26846    899    2017-03-04 12:22:00    2017-03-04 12:22:00
71630    26846    471    2017-03-04 16:43:00    2017-03-04 16:43:00
71631    26846    623    2017-03-04 23:48:00    2017-03-04 23:48:00
71632    26846    896    2017-03-04 09:23:00    2017-03-04 09:23:00
71633    26847    610    2017-03-04 16:12:00    2017-03-04 16:12:00
71634    26847    566    2017-03-04 16:35:00    2017-03-04 16:35:00
71635    26847    564    2017-03-04 12:20:00    2017-03-04 12:20:00
71636    26847    485    2017-03-04 07:29:00    2017-03-04 07:29:00
71637    26847    773    2017-03-04 07:39:00    2017-03-04 07:39:00
71638    26848    539    2017-03-04 18:21:00    2017-03-04 18:21:00
71639    26848    745    2017-03-04 05:06:00    2017-03-04 05:06:00
71640    26848    769    2017-03-04 11:24:00    2017-03-04 11:24:00
71641    26848    873    2017-03-04 19:22:00    2017-03-04 19:22:00
71642    26848    839    2017-03-04 07:45:00    2017-03-04 07:45:00
71643    26849    605    2017-03-04 06:03:00    2017-03-04 06:03:00
71644    26849    648    2017-03-04 15:11:00    2017-03-04 15:11:00
71645    26849    712    2017-03-04 11:24:00    2017-03-04 11:24:00
71646    26849    672    2017-03-04 20:11:00    2017-03-04 20:11:00
71647    26849    543    2017-03-04 03:29:00    2017-03-04 03:29:00
71648    26850    527    2017-03-04 01:04:00    2017-03-04 01:04:00
71649    26850    540    2017-03-04 11:06:00    2017-03-04 11:06:00
71650    26850    791    2017-03-04 06:06:00    2017-03-04 06:06:00
71651    26850    507    2017-03-04 21:27:00    2017-03-04 21:27:00
71652    26850    590    2017-03-04 07:11:00    2017-03-04 07:11:00
71653    26851    603    2017-03-04 18:39:00    2017-03-04 18:39:00
71654    26851    788    2017-03-04 13:55:00    2017-03-04 13:55:00
71655    26851    535    2017-03-04 09:18:00    2017-03-04 09:18:00
71656    26851    500    2017-03-04 22:26:00    2017-03-04 22:26:00
71657    26851    640    2017-03-04 22:33:00    2017-03-04 22:33:00
71658    26852    564    2017-03-04 01:59:00    2017-03-04 01:59:00
71659    26852    567    2017-03-04 03:19:00    2017-03-04 03:19:00
71660    26852    586    2017-03-04 08:57:00    2017-03-04 08:57:00
71661    26852    818    2017-03-04 06:22:00    2017-03-04 06:22:00
71662    26852    889    2017-03-04 11:10:00    2017-03-04 11:10:00
71663    26853    844    2017-03-04 10:51:00    2017-03-04 10:51:00
71664    26853    899    2017-03-04 15:52:00    2017-03-04 15:52:00
71665    26853    497    2017-03-04 11:11:00    2017-03-04 11:11:00
71666    26853    599    2017-03-04 13:07:00    2017-03-04 13:07:00
71667    26853    865    2017-03-04 16:15:00    2017-03-04 16:15:00
71668    26854    909    2017-03-04 03:39:00    2017-03-04 03:39:00
71669    26854    874    2017-03-04 05:39:00    2017-03-04 05:39:00
71670    26854    855    2017-03-04 19:09:00    2017-03-04 19:09:00
71671    26854    746    2017-03-04 15:45:00    2017-03-04 15:45:00
71672    26854    799    2017-03-04 22:31:00    2017-03-04 22:31:00
71673    26855    770    2017-03-04 05:02:00    2017-03-04 05:02:00
71674    26855    709    2017-03-04 08:27:00    2017-03-04 08:27:00
71675    26855    555    2017-03-04 05:21:00    2017-03-04 05:21:00
71676    26855    618    2017-03-04 16:29:00    2017-03-04 16:29:00
71677    26855    828    2017-03-04 23:55:00    2017-03-04 23:55:00
71678    26856    924    2017-03-04 17:25:00    2017-03-04 17:25:00
71679    26856    798    2017-03-04 19:02:00    2017-03-04 19:02:00
71680    26856    663    2017-03-04 06:24:00    2017-03-04 06:24:00
71681    26856    833    2017-03-04 03:31:00    2017-03-04 03:31:00
71682    26856    874    2017-03-04 23:07:00    2017-03-04 23:07:00
71683    26857    710    2017-03-04 11:07:00    2017-03-04 11:07:00
71684    26857    768    2017-03-04 08:59:00    2017-03-04 08:59:00
71685    26857    480    2017-03-04 13:16:00    2017-03-04 13:16:00
71686    26857    513    2017-03-04 12:04:00    2017-03-04 12:04:00
71687    26857    794    2017-03-04 18:07:00    2017-03-04 18:07:00
71688    26858    819    2017-03-04 08:00:00    2017-03-04 08:00:00
71689    26858    569    2017-03-04 14:39:00    2017-03-04 14:39:00
71690    26858    698    2017-03-04 18:38:00    2017-03-04 18:38:00
71691    26858    531    2017-03-04 02:19:00    2017-03-04 02:19:00
71692    26858    714    2017-03-04 11:28:00    2017-03-04 11:28:00
71693    26859    552    2017-03-04 12:16:00    2017-03-04 12:16:00
71694    26859    852    2017-03-04 19:04:00    2017-03-04 19:04:00
71695    26859    614    2017-03-04 23:13:00    2017-03-04 23:13:00
71696    26859    957    2017-03-04 14:05:00    2017-03-04 14:05:00
71697    26859    696    2017-03-04 08:53:00    2017-03-04 08:53:00
71698    26860    819    2017-03-04 22:08:00    2017-03-04 22:08:00
71699    26860    664    2017-03-04 19:29:00    2017-03-04 19:29:00
71700    26860    914    2017-03-04 12:32:00    2017-03-04 12:32:00
71701    26860    807    2017-03-04 21:15:00    2017-03-04 21:15:00
71702    26860    958    2017-03-04 02:54:00    2017-03-04 02:54:00
71703    26861    725    2017-03-04 17:57:00    2017-03-04 17:57:00
71704    26861    482    2017-03-04 20:16:00    2017-03-04 20:16:00
71705    26861    482    2017-03-04 11:15:00    2017-03-04 11:15:00
71706    26861    624    2017-03-04 10:00:00    2017-03-04 10:00:00
71707    26861    861    2017-03-04 15:30:00    2017-03-04 15:30:00
71708    26862    765    2017-03-04 22:06:00    2017-03-04 22:06:00
71709    26862    614    2017-03-04 14:17:00    2017-03-04 14:17:00
71710    26862    714    2017-03-04 10:36:00    2017-03-04 10:36:00
71711    26862    797    2017-03-04 03:29:00    2017-03-04 03:29:00
71712    26862    880    2017-03-04 18:54:00    2017-03-04 18:54:00
71713    26863    937    2017-03-04 12:36:00    2017-03-04 12:36:00
71714    26863    560    2017-03-04 02:14:00    2017-03-04 02:14:00
71715    26863    738    2017-03-04 17:29:00    2017-03-04 17:29:00
71716    26863    490    2017-03-04 02:46:00    2017-03-04 02:46:00
71717    26863    505    2017-03-04 17:56:00    2017-03-04 17:56:00
71718    26864    736    2017-03-04 01:44:00    2017-03-04 01:44:00
71719    26864    935    2017-03-04 06:25:00    2017-03-04 06:25:00
71720    26864    567    2017-03-04 15:32:00    2017-03-04 15:32:00
71721    26864    635    2017-03-04 07:48:00    2017-03-04 07:48:00
71722    26864    759    2017-03-04 18:35:00    2017-03-04 18:35:00
71723    26865    863    2017-03-04 15:14:00    2017-03-04 15:14:00
71724    26865    485    2017-03-04 06:50:00    2017-03-04 06:50:00
71725    26865    911    2017-03-04 21:23:00    2017-03-04 21:23:00
71726    26865    933    2017-03-04 19:14:00    2017-03-04 19:14:00
71727    26865    680    2017-03-04 11:22:00    2017-03-04 11:22:00
71728    26866    878    2017-03-04 04:54:00    2017-03-04 04:54:00
71729    26866    560    2017-03-04 17:53:00    2017-03-04 17:53:00
71730    26866    570    2017-03-04 02:40:00    2017-03-04 02:40:00
71731    26866    820    2017-03-04 11:35:00    2017-03-04 11:35:00
71732    26866    779    2017-03-04 17:23:00    2017-03-04 17:23:00
71733    26867    651    2017-03-04 13:41:00    2017-03-04 13:41:00
71734    26867    842    2017-03-04 09:16:00    2017-03-04 09:16:00
71735    26867    509    2017-03-04 05:57:00    2017-03-04 05:57:00
71736    26867    717    2017-03-04 15:31:00    2017-03-04 15:31:00
71737    26867    473    2017-03-04 03:53:00    2017-03-04 03:53:00
71738    26868    573    2017-03-04 19:07:00    2017-03-04 19:07:00
71739    26868    737    2017-03-04 23:07:00    2017-03-04 23:07:00
71740    26868    895    2017-03-04 06:25:00    2017-03-04 06:25:00
71741    26868    518    2017-03-04 07:13:00    2017-03-04 07:13:00
71742    26868    500    2017-03-04 02:22:00    2017-03-04 02:22:00
71743    26869    518    2017-03-04 18:10:00    2017-03-04 18:10:00
71744    26869    659    2017-03-04 11:03:00    2017-03-04 11:03:00
71745    26869    955    2017-03-04 18:22:00    2017-03-04 18:22:00
71746    26869    766    2017-03-04 21:17:00    2017-03-04 21:17:00
71747    26869    906    2017-03-04 18:59:00    2017-03-04 18:59:00
71748    26870    665    2017-03-04 12:07:00    2017-03-04 12:07:00
71749    26870    912    2017-03-04 07:50:00    2017-03-04 07:50:00
71750    26870    782    2017-03-04 22:16:00    2017-03-04 22:16:00
71751    26870    861    2017-03-04 03:11:00    2017-03-04 03:11:00
71752    26870    601    2017-03-04 14:59:00    2017-03-04 14:59:00
71753    26871    666    2017-03-04 11:07:00    2017-03-04 11:07:00
71754    26871    684    2017-03-04 13:32:00    2017-03-04 13:32:00
71755    26871    807    2017-03-04 03:43:00    2017-03-04 03:43:00
71756    26871    826    2017-03-04 03:18:00    2017-03-04 03:18:00
71757    26871    464    2017-03-04 21:48:00    2017-03-04 21:48:00
71758    26872    923    2017-03-04 10:50:00    2017-03-04 10:50:00
71759    26872    649    2017-03-04 18:30:00    2017-03-04 18:30:00
71760    26872    776    2017-03-04 04:22:00    2017-03-04 04:22:00
71761    26872    654    2017-03-04 14:14:00    2017-03-04 14:14:00
71762    26872    931    2017-03-04 07:54:00    2017-03-04 07:54:00
71763    26873    918    2017-03-04 01:08:00    2017-03-04 01:08:00
71764    26873    865    2017-03-04 03:48:00    2017-03-04 03:48:00
71765    26873    549    2017-03-04 07:43:00    2017-03-04 07:43:00
71766    26873    744    2017-03-04 15:37:00    2017-03-04 15:37:00
71767    26873    921    2017-03-04 16:35:00    2017-03-04 16:35:00
71768    26874    628    2017-03-04 11:49:00    2017-03-04 11:49:00
71769    26874    951    2017-03-04 04:08:00    2017-03-04 04:08:00
71770    26874    558    2017-03-04 15:26:00    2017-03-04 15:26:00
71771    26874    550    2017-03-04 04:41:00    2017-03-04 04:41:00
71772    26874    955    2017-03-04 06:44:00    2017-03-04 06:44:00
71773    26875    859    2017-03-05 09:33:00    2017-03-05 09:33:00
71774    26875    648    2017-03-05 21:46:00    2017-03-05 21:46:00
71775    26875    529    2017-03-05 20:40:00    2017-03-05 20:40:00
71776    26875    899    2017-03-05 17:15:00    2017-03-05 17:15:00
71777    26875    711    2017-03-05 08:05:00    2017-03-05 08:05:00
71778    26876    760    2017-03-05 07:00:00    2017-03-05 07:00:00
71779    26876    949    2017-03-05 09:55:00    2017-03-05 09:55:00
71780    26876    672    2017-03-05 22:08:00    2017-03-05 22:08:00
71781    26876    489    2017-03-05 12:36:00    2017-03-05 12:36:00
71782    26876    778    2017-03-05 03:00:00    2017-03-05 03:00:00
71783    26877    907    2017-03-05 16:16:00    2017-03-05 16:16:00
71784    26877    824    2017-03-05 11:21:00    2017-03-05 11:21:00
71785    26877    819    2017-03-05 01:07:00    2017-03-05 01:07:00
71786    26877    627    2017-03-05 20:34:00    2017-03-05 20:34:00
71787    26877    479    2017-03-05 13:27:00    2017-03-05 13:27:00
71788    26878    721    2017-03-05 14:36:00    2017-03-05 14:36:00
71789    26878    955    2017-03-05 01:34:00    2017-03-05 01:34:00
71790    26878    836    2017-03-05 07:23:00    2017-03-05 07:23:00
71791    26878    525    2017-03-05 03:14:00    2017-03-05 03:14:00
71792    26878    694    2017-03-05 02:00:00    2017-03-05 02:00:00
71793    26879    867    2017-03-05 14:39:00    2017-03-05 14:39:00
71794    26879    739    2017-03-05 17:57:00    2017-03-05 17:57:00
71795    26879    863    2017-03-05 20:22:00    2017-03-05 20:22:00
71796    26879    530    2017-03-05 14:38:00    2017-03-05 14:38:00
71797    26879    838    2017-03-05 19:37:00    2017-03-05 19:37:00
71798    26880    529    2017-03-05 12:59:00    2017-03-05 12:59:00
71799    26880    837    2017-03-05 01:12:00    2017-03-05 01:12:00
71800    26880    598    2017-03-05 05:39:00    2017-03-05 05:39:00
71801    26880    657    2017-03-05 01:54:00    2017-03-05 01:54:00
71802    26880    533    2017-03-05 12:00:00    2017-03-05 12:00:00
71803    26881    936    2017-03-05 18:52:00    2017-03-05 18:52:00
71804    26881    511    2017-03-05 02:30:00    2017-03-05 02:30:00
71805    26881    675    2017-03-05 02:05:00    2017-03-05 02:05:00
71806    26881    740    2017-03-05 15:29:00    2017-03-05 15:29:00
71807    26881    899    2017-03-05 02:23:00    2017-03-05 02:23:00
71808    26882    615    2017-03-05 18:37:00    2017-03-05 18:37:00
71809    26882    940    2017-03-05 22:02:00    2017-03-05 22:02:00
71810    26882    575    2017-03-05 21:40:00    2017-03-05 21:40:00
71811    26882    717    2017-03-05 08:15:00    2017-03-05 08:15:00
71812    26882    892    2017-03-05 16:53:00    2017-03-05 16:53:00
71813    26883    705    2017-03-05 08:51:00    2017-03-05 08:51:00
71814    26883    807    2017-03-05 20:27:00    2017-03-05 20:27:00
71815    26883    697    2017-03-05 04:58:00    2017-03-05 04:58:00
71816    26883    674    2017-03-05 01:08:00    2017-03-05 01:08:00
71817    26883    789    2017-03-05 02:35:00    2017-03-05 02:35:00
71818    26884    648    2017-03-05 03:43:00    2017-03-05 03:43:00
71819    26884    749    2017-03-05 12:39:00    2017-03-05 12:39:00
71820    26884    720    2017-03-05 08:45:00    2017-03-05 08:45:00
71821    26884    575    2017-03-05 16:04:00    2017-03-05 16:04:00
71822    26884    522    2017-03-05 12:15:00    2017-03-05 12:15:00
71823    26885    667    2017-03-05 11:17:00    2017-03-05 11:17:00
71824    26885    917    2017-03-05 01:33:00    2017-03-05 01:33:00
71825    26885    499    2017-03-05 10:13:00    2017-03-05 10:13:00
71826    26885    806    2017-03-05 05:52:00    2017-03-05 05:52:00
71827    26885    657    2017-03-05 12:21:00    2017-03-05 12:21:00
71828    26886    680    2017-03-05 02:58:00    2017-03-05 02:58:00
71829    26886    543    2017-03-05 13:44:00    2017-03-05 13:44:00
71830    26886    936    2017-03-05 14:05:00    2017-03-05 14:05:00
71831    26886    949    2017-03-05 18:40:00    2017-03-05 18:40:00
71832    26886    722    2017-03-05 09:43:00    2017-03-05 09:43:00
71833    26887    764    2017-03-05 07:10:00    2017-03-05 07:10:00
71834    26887    513    2017-03-05 16:08:00    2017-03-05 16:08:00
71835    26887    563    2017-03-05 19:53:00    2017-03-05 19:53:00
71836    26887    850    2017-03-05 10:31:00    2017-03-05 10:31:00
71837    26887    659    2017-03-05 13:59:00    2017-03-05 13:59:00
71838    26888    948    2017-03-05 20:16:00    2017-03-05 20:16:00
71839    26888    637    2017-03-05 19:00:00    2017-03-05 19:00:00
71840    26888    935    2017-03-05 03:06:00    2017-03-05 03:06:00
71841    26888    509    2017-03-05 10:00:00    2017-03-05 10:00:00
71842    26888    584    2017-03-05 16:38:00    2017-03-05 16:38:00
71843    26889    951    2017-03-05 16:28:00    2017-03-05 16:28:00
71844    26889    716    2017-03-05 23:41:00    2017-03-05 23:41:00
71845    26889    505    2017-03-05 13:10:00    2017-03-05 13:10:00
71846    26889    788    2017-03-05 23:37:00    2017-03-05 23:37:00
71847    26889    502    2017-03-05 14:30:00    2017-03-05 14:30:00
71848    26890    952    2017-03-05 15:22:00    2017-03-05 15:22:00
71849    26890    841    2017-03-05 06:41:00    2017-03-05 06:41:00
71850    26890    725    2017-03-05 06:37:00    2017-03-05 06:37:00
71851    26890    755    2017-03-05 02:58:00    2017-03-05 02:58:00
71852    26890    717    2017-03-05 19:08:00    2017-03-05 19:08:00
71853    26891    676    2017-03-05 14:50:00    2017-03-05 14:50:00
71854    26891    747    2017-03-05 06:50:00    2017-03-05 06:50:00
71855    26891    836    2017-03-05 05:54:00    2017-03-05 05:54:00
71856    26891    835    2017-03-05 18:02:00    2017-03-05 18:02:00
71857    26891    896    2017-03-05 18:19:00    2017-03-05 18:19:00
71858    26892    636    2017-03-05 19:12:00    2017-03-05 19:12:00
71859    26892    675    2017-03-05 16:26:00    2017-03-05 16:26:00
71860    26892    647    2017-03-05 21:20:00    2017-03-05 21:20:00
71861    26892    763    2017-03-05 09:31:00    2017-03-05 09:31:00
71862    26892    576    2017-03-05 10:00:00    2017-03-05 10:00:00
71863    26893    856    2017-03-05 23:04:00    2017-03-05 23:04:00
71864    26893    911    2017-03-05 02:30:00    2017-03-05 02:30:00
71865    26893    958    2017-03-05 18:21:00    2017-03-05 18:21:00
71866    26893    905    2017-03-05 15:38:00    2017-03-05 15:38:00
71867    26893    765    2017-03-05 17:23:00    2017-03-05 17:23:00
71868    26894    515    2017-03-05 12:16:00    2017-03-05 12:16:00
71869    26894    605    2017-03-05 15:58:00    2017-03-05 15:58:00
71870    26894    533    2017-03-05 16:51:00    2017-03-05 16:51:00
71871    26894    918    2017-03-05 17:24:00    2017-03-05 17:24:00
71872    26894    590    2017-03-05 15:39:00    2017-03-05 15:39:00
71873    26895    956    2017-03-05 13:08:00    2017-03-05 13:08:00
71874    26895    534    2017-03-05 01:31:00    2017-03-05 01:31:00
71875    26895    883    2017-03-05 02:28:00    2017-03-05 02:28:00
71876    26895    594    2017-03-05 18:05:00    2017-03-05 18:05:00
71877    26895    775    2017-03-05 19:29:00    2017-03-05 19:29:00
71878    26896    953    2017-03-05 18:42:00    2017-03-05 18:42:00
71879    26896    518    2017-03-05 08:43:00    2017-03-05 08:43:00
71880    26896    767    2017-03-05 15:01:00    2017-03-05 15:01:00
71881    26896    808    2017-03-05 08:18:00    2017-03-05 08:18:00
71882    26896    933    2017-03-05 21:30:00    2017-03-05 21:30:00
71883    26897    936    2017-03-05 05:38:00    2017-03-05 05:38:00
71884    26897    554    2017-03-05 09:15:00    2017-03-05 09:15:00
71885    26897    589    2017-03-05 01:22:00    2017-03-05 01:22:00
71886    26897    749    2017-03-05 12:12:00    2017-03-05 12:12:00
71887    26897    494    2017-03-05 15:06:00    2017-03-05 15:06:00
71888    26898    619    2017-03-05 02:41:00    2017-03-05 02:41:00
71889    26898    658    2017-03-05 04:11:00    2017-03-05 04:11:00
71890    26898    658    2017-03-05 23:39:00    2017-03-05 23:39:00
71891    26898    859    2017-03-05 01:55:00    2017-03-05 01:55:00
71892    26898    751    2017-03-05 08:33:00    2017-03-05 08:33:00
71893    26899    829    2017-03-05 09:58:00    2017-03-05 09:58:00
71894    26899    783    2017-03-05 17:36:00    2017-03-05 17:36:00
71895    26899    785    2017-03-05 19:47:00    2017-03-05 19:47:00
71896    26899    622    2017-03-05 15:45:00    2017-03-05 15:45:00
71897    26899    482    2017-03-05 03:33:00    2017-03-05 03:33:00
71898    26900    919    2017-03-05 20:17:00    2017-03-05 20:17:00
71899    26900    728    2017-03-05 15:39:00    2017-03-05 15:39:00
71900    26900    856    2017-03-05 15:47:00    2017-03-05 15:47:00
71901    26900    522    2017-03-05 15:10:00    2017-03-05 15:10:00
71902    26900    689    2017-03-05 05:08:00    2017-03-05 05:08:00
71903    26901    544    2017-03-05 14:49:00    2017-03-05 14:49:00
71904    26901    552    2017-03-05 13:53:00    2017-03-05 13:53:00
71905    26901    520    2017-03-05 18:30:00    2017-03-05 18:30:00
71906    26901    889    2017-03-05 08:02:00    2017-03-05 08:02:00
71907    26901    539    2017-03-05 05:47:00    2017-03-05 05:47:00
71908    26902    857    2017-03-05 08:16:00    2017-03-05 08:16:00
71909    26902    580    2017-03-05 20:01:00    2017-03-05 20:01:00
71910    26902    712    2017-03-05 18:43:00    2017-03-05 18:43:00
71911    26902    554    2017-03-05 05:04:00    2017-03-05 05:04:00
71912    26902    502    2017-03-05 09:02:00    2017-03-05 09:02:00
71913    26903    508    2017-03-05 20:47:00    2017-03-05 20:47:00
71914    26903    918    2017-03-05 11:10:00    2017-03-05 11:10:00
71915    26903    572    2017-03-05 07:43:00    2017-03-05 07:43:00
71916    26903    569    2017-03-05 14:04:00    2017-03-05 14:04:00
71917    26903    737    2017-03-05 23:50:00    2017-03-05 23:50:00
71918    26904    663    2017-03-05 02:56:00    2017-03-05 02:56:00
71919    26904    666    2017-03-05 03:39:00    2017-03-05 03:39:00
71920    26904    915    2017-03-05 05:03:00    2017-03-05 05:03:00
71921    26904    498    2017-03-05 09:35:00    2017-03-05 09:35:00
71922    26904    926    2017-03-05 20:36:00    2017-03-05 20:36:00
71923    26905    821    2017-03-05 21:08:00    2017-03-05 21:08:00
71924    26905    533    2017-03-05 06:30:00    2017-03-05 06:30:00
71925    26905    784    2017-03-05 22:05:00    2017-03-05 22:05:00
71926    26905    694    2017-03-05 18:03:00    2017-03-05 18:03:00
71927    26905    871    2017-03-05 09:33:00    2017-03-05 09:33:00
71928    26906    589    2017-03-05 18:58:00    2017-03-05 18:58:00
71929    26906    684    2017-03-05 18:15:00    2017-03-05 18:15:00
71930    26906    955    2017-03-05 19:56:00    2017-03-05 19:56:00
71931    26906    737    2017-03-05 10:09:00    2017-03-05 10:09:00
71932    26906    581    2017-03-05 03:38:00    2017-03-05 03:38:00
71933    26907    948    2017-03-05 12:44:00    2017-03-05 12:44:00
71934    26907    659    2017-03-05 16:07:00    2017-03-05 16:07:00
71935    26907    776    2017-03-05 20:21:00    2017-03-05 20:21:00
71936    26907    539    2017-03-05 22:04:00    2017-03-05 22:04:00
71937    26907    557    2017-03-05 20:23:00    2017-03-05 20:23:00
71938    26908    515    2017-03-05 21:32:00    2017-03-05 21:32:00
71939    26908    907    2017-03-05 04:42:00    2017-03-05 04:42:00
71940    26908    958    2017-03-05 22:45:00    2017-03-05 22:45:00
71941    26908    506    2017-03-05 16:32:00    2017-03-05 16:32:00
71942    26908    596    2017-03-05 16:03:00    2017-03-05 16:03:00
71943    26909    746    2017-03-05 06:17:00    2017-03-05 06:17:00
71944    26909    707    2017-03-05 11:35:00    2017-03-05 11:35:00
71945    26909    852    2017-03-05 12:38:00    2017-03-05 12:38:00
71946    26909    643    2017-03-05 05:01:00    2017-03-05 05:01:00
71947    26909    701    2017-03-05 06:42:00    2017-03-05 06:42:00
71948    26910    857    2017-03-05 02:48:00    2017-03-05 02:48:00
71949    26910    780    2017-03-05 15:39:00    2017-03-05 15:39:00
71950    26910    787    2017-03-05 07:19:00    2017-03-05 07:19:00
71951    26910    590    2017-03-05 05:33:00    2017-03-05 05:33:00
71952    26910    877    2017-03-05 22:11:00    2017-03-05 22:11:00
71953    26911    778    2017-03-05 12:28:00    2017-03-05 12:28:00
71954    26911    891    2017-03-05 07:54:00    2017-03-05 07:54:00
71955    26911    615    2017-03-05 04:08:00    2017-03-05 04:08:00
71956    26911    675    2017-03-05 04:19:00    2017-03-05 04:19:00
71957    26911    802    2017-03-05 10:57:00    2017-03-05 10:57:00
71958    26912    721    2017-03-05 16:09:00    2017-03-05 16:09:00
71959    26912    861    2017-03-05 15:31:00    2017-03-05 15:31:00
71960    26912    867    2017-03-05 01:42:00    2017-03-05 01:42:00
71961    26912    795    2017-03-05 23:06:00    2017-03-05 23:06:00
71962    26912    849    2017-03-05 13:20:00    2017-03-05 13:20:00
71963    26913    633    2017-03-05 10:15:00    2017-03-05 10:15:00
71964    26913    746    2017-03-05 01:55:00    2017-03-05 01:55:00
71965    26913    675    2017-03-05 01:34:00    2017-03-05 01:34:00
71966    26913    670    2017-03-05 12:21:00    2017-03-05 12:21:00
71967    26913    865    2017-03-05 10:40:00    2017-03-05 10:40:00
71968    26914    788    2017-03-05 11:18:00    2017-03-05 11:18:00
71969    26914    553    2017-03-05 07:56:00    2017-03-05 07:56:00
71970    26914    649    2017-03-05 06:08:00    2017-03-05 06:08:00
71971    26914    596    2017-03-05 23:50:00    2017-03-05 23:50:00
71972    26914    484    2017-03-05 16:04:00    2017-03-05 16:04:00
71973    26915    518    2017-03-05 09:37:00    2017-03-05 09:37:00
71974    26915    900    2017-03-05 02:05:00    2017-03-05 02:05:00
71975    26915    656    2017-03-05 06:21:00    2017-03-05 06:21:00
71976    26915    874    2017-03-05 07:24:00    2017-03-05 07:24:00
71977    26915    804    2017-03-05 10:10:00    2017-03-05 10:10:00
71978    26916    882    2017-03-05 11:21:00    2017-03-05 11:21:00
71979    26916    699    2017-03-05 08:51:00    2017-03-05 08:51:00
71980    26916    502    2017-03-05 18:24:00    2017-03-05 18:24:00
71981    26916    570    2017-03-05 03:46:00    2017-03-05 03:46:00
71982    26916    815    2017-03-05 19:28:00    2017-03-05 19:28:00
71983    26917    865    2017-03-05 23:55:00    2017-03-05 23:55:00
71984    26917    814    2017-03-05 11:43:00    2017-03-05 11:43:00
71985    26917    476    2017-03-05 13:54:00    2017-03-05 13:54:00
71986    26917    526    2017-03-05 07:53:00    2017-03-05 07:53:00
71987    26917    748    2017-03-05 16:47:00    2017-03-05 16:47:00
71988    26918    819    2017-03-05 11:49:00    2017-03-05 11:49:00
71989    26918    926    2017-03-05 21:29:00    2017-03-05 21:29:00
71990    26918    583    2017-03-05 19:43:00    2017-03-05 19:43:00
71991    26918    923    2017-03-05 11:26:00    2017-03-05 11:26:00
71992    26918    782    2017-03-05 01:52:00    2017-03-05 01:52:00
71993    26919    876    2017-03-05 22:00:00    2017-03-05 22:00:00
71994    26919    608    2017-03-05 09:18:00    2017-03-05 09:18:00
71995    26919    677    2017-03-05 18:29:00    2017-03-05 18:29:00
71996    26919    566    2017-03-05 06:14:00    2017-03-05 06:14:00
71997    26919    743    2017-03-05 02:05:00    2017-03-05 02:05:00
71998    26920    593    2017-03-05 19:42:00    2017-03-05 19:42:00
71999    26920    592    2017-03-05 22:09:00    2017-03-05 22:09:00
72000    26920    941    2017-03-05 12:48:00    2017-03-05 12:48:00
72001    26920    673    2017-03-05 05:44:00    2017-03-05 05:44:00
72002    26920    464    2017-03-05 13:53:00    2017-03-05 13:53:00
72003    26921    717    2017-03-05 09:03:00    2017-03-05 09:03:00
72004    26921    515    2017-03-05 11:46:00    2017-03-05 11:46:00
72005    26921    927    2017-03-05 02:17:00    2017-03-05 02:17:00
72006    26921    928    2017-03-05 22:09:00    2017-03-05 22:09:00
72007    26921    823    2017-03-05 06:30:00    2017-03-05 06:30:00
72008    26922    662    2017-03-05 10:19:00    2017-03-05 10:19:00
72009    26922    947    2017-03-05 02:56:00    2017-03-05 02:56:00
72010    26922    806    2017-03-05 10:04:00    2017-03-05 10:04:00
72011    26922    594    2017-03-05 12:42:00    2017-03-05 12:42:00
72012    26922    883    2017-03-05 10:25:00    2017-03-05 10:25:00
72013    26923    837    2017-03-05 22:56:00    2017-03-05 22:56:00
72014    26923    644    2017-03-05 23:05:00    2017-03-05 23:05:00
72015    26923    498    2017-03-05 14:37:00    2017-03-05 14:37:00
72016    26923    799    2017-03-05 20:31:00    2017-03-05 20:31:00
72017    26923    467    2017-03-05 19:45:00    2017-03-05 19:45:00
72018    26924    532    2017-03-05 04:33:00    2017-03-05 04:33:00
72019    26924    961    2017-03-05 15:01:00    2017-03-05 15:01:00
72020    26924    917    2017-03-05 03:11:00    2017-03-05 03:11:00
72021    26924    888    2017-03-05 21:30:00    2017-03-05 21:30:00
72022    26924    870    2017-03-05 11:34:00    2017-03-05 11:34:00
72023    26925    668    2017-03-05 12:49:00    2017-03-05 12:49:00
72024    26925    777    2017-03-05 10:02:00    2017-03-05 10:02:00
72025    26925    775    2017-03-05 04:06:00    2017-03-05 04:06:00
72026    26925    773    2017-03-05 04:06:00    2017-03-05 04:06:00
72027    26925    616    2017-03-05 21:22:00    2017-03-05 21:22:00
72028    26926    918    2017-03-05 05:19:00    2017-03-05 05:19:00
72029    26926    608    2017-03-05 13:48:00    2017-03-05 13:48:00
72030    26926    536    2017-03-05 12:37:00    2017-03-05 12:37:00
72031    26926    878    2017-03-05 08:38:00    2017-03-05 08:38:00
72032    26926    532    2017-03-05 18:47:00    2017-03-05 18:47:00
72033    26927    523    2017-03-05 15:59:00    2017-03-05 15:59:00
72034    26927    852    2017-03-05 19:08:00    2017-03-05 19:08:00
72035    26927    570    2017-03-05 07:10:00    2017-03-05 07:10:00
72036    26927    676    2017-03-05 20:53:00    2017-03-05 20:53:00
72037    26927    743    2017-03-05 16:01:00    2017-03-05 16:01:00
72038    26928    503    2017-03-05 04:14:00    2017-03-05 04:14:00
72039    26928    598    2017-03-05 21:18:00    2017-03-05 21:18:00
72040    26928    566    2017-03-05 07:04:00    2017-03-05 07:04:00
72041    26928    622    2017-03-05 07:48:00    2017-03-05 07:48:00
72042    26928    505    2017-03-05 14:59:00    2017-03-05 14:59:00
72043    26929    816    2017-03-05 23:53:00    2017-03-05 23:53:00
72044    26929    839    2017-03-05 15:54:00    2017-03-05 15:54:00
72045    26929    926    2017-03-05 07:57:00    2017-03-05 07:57:00
72046    26929    511    2017-03-05 03:15:00    2017-03-05 03:15:00
72047    26929    734    2017-03-05 04:15:00    2017-03-05 04:15:00
72048    26930    925    2017-03-05 19:02:00    2017-03-05 19:02:00
72049    26930    898    2017-03-05 05:36:00    2017-03-05 05:36:00
72050    26930    629    2017-03-05 08:00:00    2017-03-05 08:00:00
72051    26930    479    2017-03-05 04:15:00    2017-03-05 04:15:00
72052    26930    917    2017-03-05 18:09:00    2017-03-05 18:09:00
72053    26931    804    2017-03-05 13:47:00    2017-03-05 13:47:00
72054    26931    660    2017-03-05 20:25:00    2017-03-05 20:25:00
72055    26931    541    2017-03-05 01:35:00    2017-03-05 01:35:00
72056    26931    653    2017-03-05 18:43:00    2017-03-05 18:43:00
72057    26931    728    2017-03-05 04:09:00    2017-03-05 04:09:00
72058    26932    495    2017-03-05 19:43:00    2017-03-05 19:43:00
72059    26932    855    2017-03-05 05:32:00    2017-03-05 05:32:00
72060    26932    571    2017-03-05 10:12:00    2017-03-05 10:12:00
72061    26932    905    2017-03-05 22:43:00    2017-03-05 22:43:00
72062    26932    875    2017-03-05 05:19:00    2017-03-05 05:19:00
72063    26933    563    2017-03-05 03:19:00    2017-03-05 03:19:00
72064    26933    660    2017-03-05 13:17:00    2017-03-05 13:17:00
72065    26933    843    2017-03-05 13:34:00    2017-03-05 13:34:00
72066    26933    864    2017-03-05 20:37:00    2017-03-05 20:37:00
72067    26933    897    2017-03-05 11:42:00    2017-03-05 11:42:00
72068    26934    738    2017-03-05 12:01:00    2017-03-05 12:01:00
72069    26934    831    2017-03-05 02:46:00    2017-03-05 02:46:00
72070    26934    813    2017-03-05 18:38:00    2017-03-05 18:38:00
72071    26934    762    2017-03-05 16:43:00    2017-03-05 16:43:00
72072    26934    930    2017-03-05 22:16:00    2017-03-05 22:16:00
72073    26935    544    2017-03-05 05:47:00    2017-03-05 05:47:00
72074    26935    799    2017-03-05 10:05:00    2017-03-05 10:05:00
72075    26935    785    2017-03-05 05:25:00    2017-03-05 05:25:00
72076    26935    579    2017-03-05 18:03:00    2017-03-05 18:03:00
72077    26935    950    2017-03-05 09:36:00    2017-03-05 09:36:00
72078    26936    788    2017-03-05 19:52:00    2017-03-05 19:52:00
72079    26936    816    2017-03-05 12:07:00    2017-03-05 12:07:00
72080    26936    780    2017-03-05 09:10:00    2017-03-05 09:10:00
72081    26936    662    2017-03-05 11:46:00    2017-03-05 11:46:00
72082    26936    891    2017-03-05 22:45:00    2017-03-05 22:45:00
72083    26937    858    2017-03-05 16:39:00    2017-03-05 16:39:00
72084    26937    654    2017-03-05 14:08:00    2017-03-05 14:08:00
72085    26937    872    2017-03-05 07:58:00    2017-03-05 07:58:00
72086    26937    681    2017-03-05 05:46:00    2017-03-05 05:46:00
72087    26937    958    2017-03-05 17:10:00    2017-03-05 17:10:00
72088    26938    814    2017-03-05 14:02:00    2017-03-05 14:02:00
72089    26938    620    2017-03-05 08:27:00    2017-03-05 08:27:00
72090    26938    605    2017-03-05 02:19:00    2017-03-05 02:19:00
72091    26938    873    2017-03-05 16:43:00    2017-03-05 16:43:00
72092    26938    518    2017-03-05 17:06:00    2017-03-05 17:06:00
72093    26939    578    2017-03-05 07:55:00    2017-03-05 07:55:00
72094    26939    477    2017-03-05 07:14:00    2017-03-05 07:14:00
72095    26939    841    2017-03-05 01:00:00    2017-03-05 01:00:00
72096    26939    939    2017-03-05 20:58:00    2017-03-05 20:58:00
72097    26939    737    2017-03-05 17:10:00    2017-03-05 17:10:00
72098    26940    730    2017-03-05 04:21:00    2017-03-05 04:21:00
72099    26940    752    2017-03-05 01:18:00    2017-03-05 01:18:00
72100    26940    810    2017-03-05 14:44:00    2017-03-05 14:44:00
72101    26940    541    2017-03-05 21:00:00    2017-03-05 21:00:00
72102    26940    769    2017-03-05 19:31:00    2017-03-05 19:31:00
72103    26941    939    2017-03-05 02:31:00    2017-03-05 02:31:00
72104    26941    638    2017-03-05 19:57:00    2017-03-05 19:57:00
72105    26941    830    2017-03-05 13:12:00    2017-03-05 13:12:00
72106    26941    505    2017-03-05 03:09:00    2017-03-05 03:09:00
72107    26941    520    2017-03-05 05:00:00    2017-03-05 05:00:00
72108    26942    721    2017-03-05 21:00:00    2017-03-05 21:00:00
72109    26942    938    2017-03-05 04:51:00    2017-03-05 04:51:00
72110    26942    711    2017-03-05 23:38:00    2017-03-05 23:38:00
72111    26942    486    2017-03-05 12:32:00    2017-03-05 12:32:00
72112    26942    574    2017-03-05 23:56:00    2017-03-05 23:56:00
72113    26943    901    2017-03-05 13:00:00    2017-03-05 13:00:00
72114    26943    830    2017-03-05 05:00:00    2017-03-05 05:00:00
72115    26943    853    2017-03-05 12:05:00    2017-03-05 12:05:00
72116    26943    691    2017-03-05 21:31:00    2017-03-05 21:31:00
72117    26943    658    2017-03-05 14:32:00    2017-03-05 14:32:00
72118    26944    641    2017-03-05 20:37:00    2017-03-05 20:37:00
72119    26944    898    2017-03-05 10:08:00    2017-03-05 10:08:00
72120    26944    621    2017-03-05 19:12:00    2017-03-05 19:12:00
72121    26944    867    2017-03-05 10:36:00    2017-03-05 10:36:00
72122    26944    687    2017-03-05 04:10:00    2017-03-05 04:10:00
72123    26945    958    2017-03-05 04:29:00    2017-03-05 04:29:00
72124    26945    466    2017-03-05 10:42:00    2017-03-05 10:42:00
72125    26945    702    2017-03-05 01:02:00    2017-03-05 01:02:00
72126    26945    856    2017-03-05 16:25:00    2017-03-05 16:25:00
72127    26945    583    2017-03-05 22:32:00    2017-03-05 22:32:00
72128    26946    603    2017-03-05 17:37:00    2017-03-05 17:37:00
72129    26946    856    2017-03-05 21:45:00    2017-03-05 21:45:00
72130    26946    658    2017-03-05 15:10:00    2017-03-05 15:10:00
72131    26946    612    2017-03-05 02:09:00    2017-03-05 02:09:00
72132    26946    747    2017-03-05 13:03:00    2017-03-05 13:03:00
72133    26947    610    2017-03-05 15:39:00    2017-03-05 15:39:00
72134    26947    876    2017-03-05 10:24:00    2017-03-05 10:24:00
72135    26947    498    2017-03-05 09:04:00    2017-03-05 09:04:00
72136    26947    927    2017-03-05 05:30:00    2017-03-05 05:30:00
72137    26947    804    2017-03-05 06:38:00    2017-03-05 06:38:00
72138    26948    757    2017-03-05 01:47:00    2017-03-05 01:47:00
72139    26948    886    2017-03-05 05:18:00    2017-03-05 05:18:00
72140    26948    927    2017-03-05 11:47:00    2017-03-05 11:47:00
72141    26948    792    2017-03-05 20:29:00    2017-03-05 20:29:00
72142    26948    739    2017-03-05 17:52:00    2017-03-05 17:52:00
72143    26949    668    2017-03-05 14:18:00    2017-03-05 14:18:00
72144    26949    624    2017-03-05 21:30:00    2017-03-05 21:30:00
72145    26949    864    2017-03-05 04:40:00    2017-03-05 04:40:00
72146    26949    657    2017-03-05 10:52:00    2017-03-05 10:52:00
72147    26949    701    2017-03-05 08:53:00    2017-03-05 08:53:00
72148    26950    939    2017-03-05 12:52:00    2017-03-05 12:52:00
72149    26950    881    2017-03-05 08:55:00    2017-03-05 08:55:00
72150    26950    777    2017-03-05 11:58:00    2017-03-05 11:58:00
72151    26950    717    2017-03-05 17:52:00    2017-03-05 17:52:00
72152    26950    839    2017-03-05 09:57:00    2017-03-05 09:57:00
72153    26951    793    2017-03-05 12:47:00    2017-03-05 12:47:00
72154    26951    746    2017-03-05 18:30:00    2017-03-05 18:30:00
72155    26951    877    2017-03-05 01:28:00    2017-03-05 01:28:00
72156    26951    808    2017-03-05 18:21:00    2017-03-05 18:21:00
72157    26951    558    2017-03-05 23:49:00    2017-03-05 23:49:00
72158    26952    663    2017-03-05 15:08:00    2017-03-05 15:08:00
72159    26952    857    2017-03-05 05:55:00    2017-03-05 05:55:00
72160    26952    890    2017-03-05 08:36:00    2017-03-05 08:36:00
72161    26952    845    2017-03-05 08:58:00    2017-03-05 08:58:00
72162    26952    760    2017-03-05 09:26:00    2017-03-05 09:26:00
72163    26953    766    2017-03-05 23:37:00    2017-03-05 23:37:00
72164    26953    479    2017-03-05 11:14:00    2017-03-05 11:14:00
72165    26953    703    2017-03-05 12:37:00    2017-03-05 12:37:00
72166    26953    910    2017-03-05 19:05:00    2017-03-05 19:05:00
72167    26953    530    2017-03-05 16:02:00    2017-03-05 16:02:00
72168    26954    506    2017-03-05 07:03:00    2017-03-05 07:03:00
72169    26954    631    2017-03-05 01:15:00    2017-03-05 01:15:00
72170    26954    559    2017-03-05 16:39:00    2017-03-05 16:39:00
72171    26954    543    2017-03-05 21:13:00    2017-03-05 21:13:00
72172    26954    668    2017-03-05 02:48:00    2017-03-05 02:48:00
72173    26955    815    2017-03-05 05:15:00    2017-03-05 05:15:00
72174    26955    749    2017-03-05 07:09:00    2017-03-05 07:09:00
72175    26955    504    2017-03-05 19:34:00    2017-03-05 19:34:00
72176    26955    472    2017-03-05 21:25:00    2017-03-05 21:25:00
72177    26955    579    2017-03-05 10:00:00    2017-03-05 10:00:00
72178    26956    579    2017-03-05 12:37:00    2017-03-05 12:37:00
72179    26956    831    2017-03-05 02:14:00    2017-03-05 02:14:00
72180    26956    574    2017-03-05 22:39:00    2017-03-05 22:39:00
72181    26956    726    2017-03-05 16:46:00    2017-03-05 16:46:00
72182    26956    818    2017-03-05 07:55:00    2017-03-05 07:55:00
72183    26957    487    2017-03-06 12:37:00    2017-03-06 12:37:00
72184    26957    855    2017-03-06 01:17:00    2017-03-06 01:17:00
72185    26957    944    2017-03-06 03:32:00    2017-03-06 03:32:00
72186    26957    634    2017-03-06 20:02:00    2017-03-06 20:02:00
72187    26957    682    2017-03-06 14:14:00    2017-03-06 14:14:00
72188    26958    795    2017-03-06 11:18:00    2017-03-06 11:18:00
72189    26958    549    2017-03-06 15:29:00    2017-03-06 15:29:00
72190    26958    815    2017-03-06 12:53:00    2017-03-06 12:53:00
72191    26958    949    2017-03-06 04:29:00    2017-03-06 04:29:00
72192    26958    693    2017-03-06 06:32:00    2017-03-06 06:32:00
72193    26959    610    2017-03-06 19:46:00    2017-03-06 19:46:00
72194    26959    730    2017-03-06 04:48:00    2017-03-06 04:48:00
72195    26959    873    2017-03-06 10:49:00    2017-03-06 10:49:00
72196    26959    658    2017-03-06 13:25:00    2017-03-06 13:25:00
72197    26959    808    2017-03-06 10:15:00    2017-03-06 10:15:00
72198    26960    656    2017-03-06 18:17:00    2017-03-06 18:17:00
72199    26960    529    2017-03-06 21:38:00    2017-03-06 21:38:00
72200    26960    846    2017-03-06 08:22:00    2017-03-06 08:22:00
72201    26960    871    2017-03-06 22:53:00    2017-03-06 22:53:00
72202    26960    464    2017-03-06 16:19:00    2017-03-06 16:19:00
72203    26961    961    2017-03-06 06:38:00    2017-03-06 06:38:00
72204    26961    631    2017-03-06 21:52:00    2017-03-06 21:52:00
72205    26961    760    2017-03-06 04:42:00    2017-03-06 04:42:00
72206    26961    584    2017-03-06 08:24:00    2017-03-06 08:24:00
72207    26961    597    2017-03-06 07:45:00    2017-03-06 07:45:00
72208    26962    664    2017-03-06 04:01:00    2017-03-06 04:01:00
72209    26962    717    2017-03-06 13:21:00    2017-03-06 13:21:00
72210    26962    857    2017-03-06 01:48:00    2017-03-06 01:48:00
72211    26962    727    2017-03-06 12:24:00    2017-03-06 12:24:00
72212    26962    747    2017-03-06 04:26:00    2017-03-06 04:26:00
72213    26963    483    2017-03-06 12:31:00    2017-03-06 12:31:00
72214    26963    957    2017-03-06 12:46:00    2017-03-06 12:46:00
72215    26963    937    2017-03-06 06:01:00    2017-03-06 06:01:00
72216    26963    703    2017-03-06 08:29:00    2017-03-06 08:29:00
72217    26963    628    2017-03-06 15:13:00    2017-03-06 15:13:00
72218    26964    476    2017-03-06 03:26:00    2017-03-06 03:26:00
72219    26964    759    2017-03-06 09:57:00    2017-03-06 09:57:00
72220    26964    865    2017-03-06 02:24:00    2017-03-06 02:24:00
72221    26964    896    2017-03-06 05:49:00    2017-03-06 05:49:00
72222    26964    813    2017-03-06 09:30:00    2017-03-06 09:30:00
72223    26965    737    2017-03-06 10:47:00    2017-03-06 10:47:00
72224    26965    844    2017-03-06 06:38:00    2017-03-06 06:38:00
72225    26965    609    2017-03-06 04:35:00    2017-03-06 04:35:00
72226    26965    645    2017-03-06 21:05:00    2017-03-06 21:05:00
72227    26965    926    2017-03-06 05:05:00    2017-03-06 05:05:00
72228    26966    941    2017-03-06 21:30:00    2017-03-06 21:30:00
72229    26966    957    2017-03-06 23:46:00    2017-03-06 23:46:00
72230    26966    482    2017-03-06 15:13:00    2017-03-06 15:13:00
72231    26966    568    2017-03-06 06:55:00    2017-03-06 06:55:00
72232    26966    575    2017-03-06 20:01:00    2017-03-06 20:01:00
72233    26967    799    2017-03-06 15:35:00    2017-03-06 15:35:00
72234    26967    837    2017-03-06 19:09:00    2017-03-06 19:09:00
72235    26967    629    2017-03-06 11:28:00    2017-03-06 11:28:00
72236    26967    628    2017-03-06 07:03:00    2017-03-06 07:03:00
72237    26967    723    2017-03-06 17:41:00    2017-03-06 17:41:00
72238    26968    722    2017-03-06 07:25:00    2017-03-06 07:25:00
72239    26968    577    2017-03-06 20:34:00    2017-03-06 20:34:00
72240    26968    882    2017-03-06 01:34:00    2017-03-06 01:34:00
72241    26968    483    2017-03-06 03:40:00    2017-03-06 03:40:00
72242    26968    831    2017-03-06 01:15:00    2017-03-06 01:15:00
72243    26969    760    2017-03-06 21:36:00    2017-03-06 21:36:00
72244    26969    918    2017-03-06 06:33:00    2017-03-06 06:33:00
72245    26969    824    2017-03-06 12:44:00    2017-03-06 12:44:00
72246    26969    700    2017-03-06 05:52:00    2017-03-06 05:52:00
72247    26969    801    2017-03-06 17:55:00    2017-03-06 17:55:00
72248    26970    755    2017-03-06 08:31:00    2017-03-06 08:31:00
72249    26970    481    2017-03-06 21:01:00    2017-03-06 21:01:00
72250    26970    661    2017-03-06 06:49:00    2017-03-06 06:49:00
72251    26970    490    2017-03-06 01:39:00    2017-03-06 01:39:00
72252    26970    637    2017-03-06 01:28:00    2017-03-06 01:28:00
72253    26971    594    2017-03-06 23:35:00    2017-03-06 23:35:00
72254    26971    888    2017-03-06 01:45:00    2017-03-06 01:45:00
72255    26971    713    2017-03-06 20:33:00    2017-03-06 20:33:00
72256    26971    912    2017-03-06 15:56:00    2017-03-06 15:56:00
72257    26971    597    2017-03-06 07:15:00    2017-03-06 07:15:00
72258    26972    885    2017-03-06 16:00:00    2017-03-06 16:00:00
72259    26972    935    2017-03-06 04:30:00    2017-03-06 04:30:00
72260    26972    746    2017-03-06 22:13:00    2017-03-06 22:13:00
72261    26972    498    2017-03-06 10:51:00    2017-03-06 10:51:00
72262    26972    806    2017-03-06 01:02:00    2017-03-06 01:02:00
72263    26973    786    2017-03-06 16:02:00    2017-03-06 16:02:00
72264    26973    599    2017-03-06 22:56:00    2017-03-06 22:56:00
72265    26973    745    2017-03-06 13:27:00    2017-03-06 13:27:00
72266    26973    694    2017-03-06 02:33:00    2017-03-06 02:33:00
72267    26973    776    2017-03-06 02:11:00    2017-03-06 02:11:00
72268    26974    719    2017-03-06 07:56:00    2017-03-06 07:56:00
72269    26974    823    2017-03-06 01:03:00    2017-03-06 01:03:00
72270    26974    801    2017-03-06 09:54:00    2017-03-06 09:54:00
72271    26974    739    2017-03-06 15:15:00    2017-03-06 15:15:00
72272    26974    578    2017-03-06 17:44:00    2017-03-06 17:44:00
72273    26975    695    2017-03-06 15:36:00    2017-03-06 15:36:00
72274    26975    582    2017-03-06 09:35:00    2017-03-06 09:35:00
72275    26975    834    2017-03-06 11:37:00    2017-03-06 11:37:00
72276    26975    654    2017-03-06 14:54:00    2017-03-06 14:54:00
72277    26975    775    2017-03-06 07:27:00    2017-03-06 07:27:00
72278    26976    587    2017-03-06 22:06:00    2017-03-06 22:06:00
72279    26976    605    2017-03-06 08:03:00    2017-03-06 08:03:00
72280    26976    788    2017-03-06 09:12:00    2017-03-06 09:12:00
72281    26976    593    2017-03-06 20:19:00    2017-03-06 20:19:00
72282    26976    915    2017-03-06 23:55:00    2017-03-06 23:55:00
72283    26977    842    2017-03-06 02:21:00    2017-03-06 02:21:00
72284    26977    528    2017-03-06 08:50:00    2017-03-06 08:50:00
72285    26977    738    2017-03-06 18:27:00    2017-03-06 18:27:00
72286    26977    871    2017-03-06 14:40:00    2017-03-06 14:40:00
72287    26977    732    2017-03-06 23:48:00    2017-03-06 23:48:00
72288    26978    624    2017-03-06 13:30:00    2017-03-06 13:30:00
72289    26978    549    2017-03-06 02:49:00    2017-03-06 02:49:00
72290    26978    853    2017-03-06 01:23:00    2017-03-06 01:23:00
72291    26978    464    2017-03-06 05:31:00    2017-03-06 05:31:00
72292    26978    474    2017-03-06 06:33:00    2017-03-06 06:33:00
72293    26979    626    2017-03-06 20:01:00    2017-03-06 20:01:00
72294    26979    566    2017-03-06 19:37:00    2017-03-06 19:37:00
72295    26979    692    2017-03-06 06:00:00    2017-03-06 06:00:00
72296    26979    781    2017-03-06 08:00:00    2017-03-06 08:00:00
72297    26979    774    2017-03-06 05:52:00    2017-03-06 05:52:00
72298    26980    494    2017-03-06 05:41:00    2017-03-06 05:41:00
72299    26980    607    2017-03-06 04:34:00    2017-03-06 04:34:00
72300    26980    561    2017-03-06 05:00:00    2017-03-06 05:00:00
72301    26980    575    2017-03-06 20:07:00    2017-03-06 20:07:00
72302    26980    712    2017-03-06 03:56:00    2017-03-06 03:56:00
72303    26981    606    2017-03-06 20:03:00    2017-03-06 20:03:00
72304    26981    642    2017-03-06 04:52:00    2017-03-06 04:52:00
72305    26981    847    2017-03-06 02:07:00    2017-03-06 02:07:00
72306    26981    595    2017-03-06 18:31:00    2017-03-06 18:31:00
72307    26981    536    2017-03-06 06:49:00    2017-03-06 06:49:00
72308    26982    646    2017-03-06 12:49:00    2017-03-06 12:49:00
72309    26982    601    2017-03-06 21:18:00    2017-03-06 21:18:00
72310    26982    683    2017-03-06 08:10:00    2017-03-06 08:10:00
72311    26982    898    2017-03-06 16:16:00    2017-03-06 16:16:00
72312    26982    526    2017-03-06 11:00:00    2017-03-06 11:00:00
72313    26983    543    2017-03-06 02:02:00    2017-03-06 02:02:00
72314    26983    539    2017-03-06 14:12:00    2017-03-06 14:12:00
72315    26983    729    2017-03-06 16:31:00    2017-03-06 16:31:00
72316    26983    585    2017-03-06 17:12:00    2017-03-06 17:12:00
72317    26983    729    2017-03-06 14:10:00    2017-03-06 14:10:00
72318    26984    872    2017-03-06 22:30:00    2017-03-06 22:30:00
72319    26984    555    2017-03-06 16:32:00    2017-03-06 16:32:00
72320    26984    796    2017-03-06 01:46:00    2017-03-06 01:46:00
72321    26984    604    2017-03-06 02:53:00    2017-03-06 02:53:00
72322    26984    876    2017-03-06 03:58:00    2017-03-06 03:58:00
72323    26985    675    2017-03-06 20:06:00    2017-03-06 20:06:00
72324    26985    475    2017-03-06 17:42:00    2017-03-06 17:42:00
72325    26985    560    2017-03-06 04:14:00    2017-03-06 04:14:00
72326    26985    559    2017-03-06 11:24:00    2017-03-06 11:24:00
72327    26985    602    2017-03-06 19:37:00    2017-03-06 19:37:00
72328    26986    559    2017-03-06 13:43:00    2017-03-06 13:43:00
72329    26986    935    2017-03-06 09:41:00    2017-03-06 09:41:00
72330    26986    643    2017-03-06 16:26:00    2017-03-06 16:26:00
72331    26986    756    2017-03-06 18:04:00    2017-03-06 18:04:00
72332    26986    892    2017-03-06 09:24:00    2017-03-06 09:24:00
72333    26987    492    2017-03-06 03:15:00    2017-03-06 03:15:00
72334    26987    491    2017-03-06 20:06:00    2017-03-06 20:06:00
72335    26987    961    2017-03-06 17:33:00    2017-03-06 17:33:00
72336    26987    646    2017-03-06 03:34:00    2017-03-06 03:34:00
72337    26987    750    2017-03-06 08:08:00    2017-03-06 08:08:00
72338    26988    798    2017-03-06 06:29:00    2017-03-06 06:29:00
72339    26988    537    2017-03-06 13:52:00    2017-03-06 13:52:00
72340    26988    900    2017-03-06 15:25:00    2017-03-06 15:25:00
72341    26988    882    2017-03-06 11:12:00    2017-03-06 11:12:00
72342    26988    664    2017-03-06 05:35:00    2017-03-06 05:35:00
72343    26989    834    2017-03-06 19:18:00    2017-03-06 19:18:00
72344    26989    650    2017-03-06 13:06:00    2017-03-06 13:06:00
72345    26989    583    2017-03-06 21:29:00    2017-03-06 21:29:00
72346    26989    851    2017-03-06 08:32:00    2017-03-06 08:32:00
72347    26989    677    2017-03-06 10:00:00    2017-03-06 10:00:00
72348    26990    500    2017-03-06 12:30:00    2017-03-06 12:30:00
72349    26990    900    2017-03-06 16:22:00    2017-03-06 16:22:00
72350    26990    768    2017-03-06 03:29:00    2017-03-06 03:29:00
72351    26990    751    2017-03-06 13:07:00    2017-03-06 13:07:00
72352    26990    906    2017-03-06 14:16:00    2017-03-06 14:16:00
72353    26991    634    2017-03-06 13:56:00    2017-03-06 13:56:00
72354    26991    698    2017-03-06 11:08:00    2017-03-06 11:08:00
72355    26991    585    2017-03-06 02:37:00    2017-03-06 02:37:00
72356    26991    623    2017-03-06 23:49:00    2017-03-06 23:49:00
72357    26991    597    2017-03-06 01:05:00    2017-03-06 01:05:00
72358    26992    791    2017-03-06 23:02:00    2017-03-06 23:02:00
72359    26992    834    2017-03-06 02:11:00    2017-03-06 02:11:00
72360    26992    469    2017-03-06 18:04:00    2017-03-06 18:04:00
72361    26992    476    2017-03-06 10:13:00    2017-03-06 10:13:00
72362    26992    579    2017-03-06 05:03:00    2017-03-06 05:03:00
72363    26993    593    2017-03-06 15:11:00    2017-03-06 15:11:00
72364    26993    728    2017-03-06 12:24:00    2017-03-06 12:24:00
72365    26993    938    2017-03-06 07:17:00    2017-03-06 07:17:00
72366    26993    901    2017-03-06 12:34:00    2017-03-06 12:34:00
72367    26993    675    2017-03-06 13:55:00    2017-03-06 13:55:00
72368    26994    488    2017-03-06 15:33:00    2017-03-06 15:33:00
72369    26994    565    2017-03-06 18:45:00    2017-03-06 18:45:00
72370    26994    730    2017-03-06 18:36:00    2017-03-06 18:36:00
72371    26994    764    2017-03-06 02:30:00    2017-03-06 02:30:00
72372    26994    478    2017-03-06 21:47:00    2017-03-06 21:47:00
72373    26995    657    2017-03-06 15:40:00    2017-03-06 15:40:00
72374    26995    806    2017-03-06 16:29:00    2017-03-06 16:29:00
72375    26995    684    2017-03-06 02:31:00    2017-03-06 02:31:00
72376    26995    483    2017-03-06 05:49:00    2017-03-06 05:49:00
72377    26995    637    2017-03-06 17:51:00    2017-03-06 17:51:00
72378    26996    805    2017-03-06 08:25:00    2017-03-06 08:25:00
72379    26996    508    2017-03-06 12:55:00    2017-03-06 12:55:00
72380    26996    487    2017-03-06 21:36:00    2017-03-06 21:36:00
72381    26996    521    2017-03-06 17:28:00    2017-03-06 17:28:00
72382    26996    575    2017-03-06 06:11:00    2017-03-06 06:11:00
72383    26997    695    2017-03-06 04:20:00    2017-03-06 04:20:00
72384    26997    517    2017-03-06 21:25:00    2017-03-06 21:25:00
72385    26997    541    2017-03-06 17:00:00    2017-03-06 17:00:00
72386    26997    636    2017-03-06 17:41:00    2017-03-06 17:41:00
72387    26997    537    2017-03-06 07:06:00    2017-03-06 07:06:00
72388    26998    610    2017-03-06 14:52:00    2017-03-06 14:52:00
72389    26998    950    2017-03-06 06:29:00    2017-03-06 06:29:00
72390    26998    637    2017-03-06 10:47:00    2017-03-06 10:47:00
72391    26998    864    2017-03-06 03:04:00    2017-03-06 03:04:00
72392    26998    879    2017-03-06 05:10:00    2017-03-06 05:10:00
72393    26999    794    2017-03-06 17:39:00    2017-03-06 17:39:00
72394    26999    471    2017-03-06 07:27:00    2017-03-06 07:27:00
72395    26999    612    2017-03-06 04:43:00    2017-03-06 04:43:00
72396    26999    698    2017-03-06 05:49:00    2017-03-06 05:49:00
72397    26999    483    2017-03-06 09:51:00    2017-03-06 09:51:00
72398    27000    468    2017-03-06 13:38:00    2017-03-06 13:38:00
72399    27000    633    2017-03-06 17:31:00    2017-03-06 17:31:00
72400    27000    625    2017-03-06 15:40:00    2017-03-06 15:40:00
72401    27000    546    2017-03-06 12:18:00    2017-03-06 12:18:00
72402    27000    479    2017-03-06 13:27:00    2017-03-06 13:27:00
72403    27001    591    2017-03-06 04:10:00    2017-03-06 04:10:00
72404    27001    934    2017-03-06 13:00:00    2017-03-06 13:00:00
72405    27001    525    2017-03-06 16:48:00    2017-03-06 16:48:00
72406    27001    576    2017-03-06 13:40:00    2017-03-06 13:40:00
72407    27001    788    2017-03-06 21:54:00    2017-03-06 21:54:00
72408    27002    464    2017-03-06 17:09:00    2017-03-06 17:09:00
72409    27002    471    2017-03-06 23:32:00    2017-03-06 23:32:00
72410    27002    579    2017-03-06 23:39:00    2017-03-06 23:39:00
72411    27002    928    2017-03-06 10:28:00    2017-03-06 10:28:00
72412    27002    961    2017-03-06 06:30:00    2017-03-06 06:30:00
72413    27003    915    2017-03-06 22:03:00    2017-03-06 22:03:00
72414    27003    792    2017-03-06 05:34:00    2017-03-06 05:34:00
72415    27003    674    2017-03-06 16:23:00    2017-03-06 16:23:00
72416    27003    645    2017-03-06 12:28:00    2017-03-06 12:28:00
72417    27003    789    2017-03-06 14:21:00    2017-03-06 14:21:00
72418    27004    513    2017-03-06 09:54:00    2017-03-06 09:54:00
72419    27004    638    2017-03-06 09:59:00    2017-03-06 09:59:00
72420    27004    834    2017-03-06 16:55:00    2017-03-06 16:55:00
72421    27004    479    2017-03-06 14:06:00    2017-03-06 14:06:00
72422    27004    691    2017-03-06 12:25:00    2017-03-06 12:25:00
72423    27005    510    2017-03-06 13:50:00    2017-03-06 13:50:00
72424    27005    467    2017-03-06 11:16:00    2017-03-06 11:16:00
72425    27005    859    2017-03-06 19:17:00    2017-03-06 19:17:00
72426    27005    756    2017-03-06 11:20:00    2017-03-06 11:20:00
72427    27005    505    2017-03-06 14:50:00    2017-03-06 14:50:00
72428    27006    545    2017-03-06 08:54:00    2017-03-06 08:54:00
72429    27006    931    2017-03-06 06:37:00    2017-03-06 06:37:00
72430    27006    841    2017-03-06 01:57:00    2017-03-06 01:57:00
72431    27006    940    2017-03-06 20:35:00    2017-03-06 20:35:00
72432    27006    847    2017-03-06 12:14:00    2017-03-06 12:14:00
72433    27007    824    2017-03-06 12:09:00    2017-03-06 12:09:00
72434    27007    877    2017-03-06 12:55:00    2017-03-06 12:55:00
72435    27007    563    2017-03-06 10:02:00    2017-03-06 10:02:00
72436    27007    944    2017-03-06 23:18:00    2017-03-06 23:18:00
72437    27007    602    2017-03-06 08:31:00    2017-03-06 08:31:00
72438    27008    794    2017-03-06 22:28:00    2017-03-06 22:28:00
72439    27008    826    2017-03-06 18:42:00    2017-03-06 18:42:00
72440    27008    844    2017-03-06 21:40:00    2017-03-06 21:40:00
72441    27008    811    2017-03-06 13:21:00    2017-03-06 13:21:00
72442    27008    828    2017-03-06 01:59:00    2017-03-06 01:59:00
72443    27009    561    2017-03-06 23:23:00    2017-03-06 23:23:00
72444    27009    606    2017-03-06 14:34:00    2017-03-06 14:34:00
72445    27009    741    2017-03-06 11:20:00    2017-03-06 11:20:00
72446    27009    745    2017-03-06 05:52:00    2017-03-06 05:52:00
72447    27009    940    2017-03-06 10:34:00    2017-03-06 10:34:00
72448    27010    808    2017-03-06 04:12:00    2017-03-06 04:12:00
72449    27010    580    2017-03-06 19:34:00    2017-03-06 19:34:00
72450    27010    519    2017-03-06 14:10:00    2017-03-06 14:10:00
72451    27010    624    2017-03-06 16:02:00    2017-03-06 16:02:00
72452    27010    510    2017-03-06 01:52:00    2017-03-06 01:52:00
72453    27011    952    2017-03-06 11:39:00    2017-03-06 11:39:00
72454    27011    465    2017-03-06 11:58:00    2017-03-06 11:58:00
72455    27011    476    2017-03-06 18:04:00    2017-03-06 18:04:00
72456    27011    706    2017-03-06 12:47:00    2017-03-06 12:47:00
72457    27011    531    2017-03-06 09:48:00    2017-03-06 09:48:00
72458    27012    725    2017-03-06 21:51:00    2017-03-06 21:51:00
72459    27012    959    2017-03-06 10:21:00    2017-03-06 10:21:00
72460    27012    919    2017-03-06 15:05:00    2017-03-06 15:05:00
72461    27012    654    2017-03-06 15:25:00    2017-03-06 15:25:00
72462    27012    842    2017-03-06 10:36:00    2017-03-06 10:36:00
72463    27013    546    2017-03-06 15:36:00    2017-03-06 15:36:00
72464    27013    808    2017-03-06 09:29:00    2017-03-06 09:29:00
72465    27013    610    2017-03-06 02:51:00    2017-03-06 02:51:00
72466    27013    558    2017-03-06 04:16:00    2017-03-06 04:16:00
72467    27013    931    2017-03-06 16:39:00    2017-03-06 16:39:00
72468    27014    814    2017-03-06 06:25:00    2017-03-06 06:25:00
72469    27014    647    2017-03-06 03:48:00    2017-03-06 03:48:00
72470    27014    803    2017-03-06 15:46:00    2017-03-06 15:46:00
72471    27014    886    2017-03-06 14:28:00    2017-03-06 14:28:00
72472    27014    784    2017-03-06 08:11:00    2017-03-06 08:11:00
72473    27015    671    2017-03-06 21:47:00    2017-03-06 21:47:00
72474    27015    569    2017-03-06 10:47:00    2017-03-06 10:47:00
72475    27015    690    2017-03-06 14:37:00    2017-03-06 14:37:00
72476    27015    640    2017-03-06 14:11:00    2017-03-06 14:11:00
72477    27015    519    2017-03-06 05:13:00    2017-03-06 05:13:00
72478    27016    833    2017-03-06 13:06:00    2017-03-06 13:06:00
72479    27016    537    2017-03-06 18:27:00    2017-03-06 18:27:00
72480    27016    906    2017-03-06 09:23:00    2017-03-06 09:23:00
72481    27016    690    2017-03-06 07:59:00    2017-03-06 07:59:00
72482    27016    941    2017-03-06 18:51:00    2017-03-06 18:51:00
72483    27017    683    2017-03-06 04:10:00    2017-03-06 04:10:00
72484    27017    520    2017-03-06 23:43:00    2017-03-06 23:43:00
72485    27017    471    2017-03-06 04:40:00    2017-03-06 04:40:00
72486    27017    778    2017-03-06 16:09:00    2017-03-06 16:09:00
72487    27017    860    2017-03-06 17:09:00    2017-03-06 17:09:00
72488    27018    755    2017-03-06 15:21:00    2017-03-06 15:21:00
72489    27018    478    2017-03-06 15:00:00    2017-03-06 15:00:00
72490    27018    554    2017-03-06 06:22:00    2017-03-06 06:22:00
72491    27018    510    2017-03-06 18:42:00    2017-03-06 18:42:00
72492    27018    533    2017-03-06 17:46:00    2017-03-06 17:46:00
72493    27019    948    2017-03-06 03:26:00    2017-03-06 03:26:00
72494    27019    659    2017-03-06 09:11:00    2017-03-06 09:11:00
72495    27019    732    2017-03-06 10:38:00    2017-03-06 10:38:00
72496    27019    687    2017-03-06 17:04:00    2017-03-06 17:04:00
72497    27019    957    2017-03-06 06:52:00    2017-03-06 06:52:00
72498    27020    870    2017-03-06 17:46:00    2017-03-06 17:46:00
72499    27020    596    2017-03-06 19:11:00    2017-03-06 19:11:00
72500    27020    950    2017-03-06 14:05:00    2017-03-06 14:05:00
72501    27020    567    2017-03-06 18:05:00    2017-03-06 18:05:00
72502    27020    612    2017-03-06 02:43:00    2017-03-06 02:43:00
72503    27021    526    2017-03-06 14:45:00    2017-03-06 14:45:00
72504    27021    526    2017-03-06 02:24:00    2017-03-06 02:24:00
72505    27021    701    2017-03-06 04:51:00    2017-03-06 04:51:00
72506    27021    670    2017-03-06 19:05:00    2017-03-06 19:05:00
72507    27021    886    2017-03-06 23:58:00    2017-03-06 23:58:00
72508    27022    802    2017-03-07 17:32:00    2017-03-07 17:32:00
72509    27022    778    2017-03-07 08:28:00    2017-03-07 08:28:00
72510    27022    822    2017-03-07 10:15:00    2017-03-07 10:15:00
72511    27022    810    2017-03-07 07:50:00    2017-03-07 07:50:00
72512    27022    775    2017-03-07 11:38:00    2017-03-07 11:38:00
72513    27023    729    2017-03-07 03:59:00    2017-03-07 03:59:00
72514    27023    673    2017-03-07 22:29:00    2017-03-07 22:29:00
72515    27023    636    2017-03-07 02:53:00    2017-03-07 02:53:00
72516    27023    563    2017-03-07 21:36:00    2017-03-07 21:36:00
72517    27023    661    2017-03-07 11:52:00    2017-03-07 11:52:00
72518    27024    937    2017-03-07 04:31:00    2017-03-07 04:31:00
72519    27024    925    2017-03-07 13:05:00    2017-03-07 13:05:00
72520    27024    855    2017-03-07 03:29:00    2017-03-07 03:29:00
72521    27024    716    2017-03-07 07:10:00    2017-03-07 07:10:00
72522    27024    707    2017-03-07 06:43:00    2017-03-07 06:43:00
72523    27025    809    2017-03-07 09:30:00    2017-03-07 09:30:00
72524    27025    482    2017-03-07 04:02:00    2017-03-07 04:02:00
72525    27025    674    2017-03-07 17:02:00    2017-03-07 17:02:00
72526    27025    856    2017-03-07 13:00:00    2017-03-07 13:00:00
72527    27025    809    2017-03-07 04:35:00    2017-03-07 04:35:00
72528    27026    788    2017-03-07 13:14:00    2017-03-07 13:14:00
72529    27026    708    2017-03-07 21:22:00    2017-03-07 21:22:00
72530    27026    769    2017-03-07 11:53:00    2017-03-07 11:53:00
72531    27026    706    2017-03-07 22:47:00    2017-03-07 22:47:00
72532    27026    519    2017-03-07 19:51:00    2017-03-07 19:51:00
72533    27027    780    2017-03-07 05:24:00    2017-03-07 05:24:00
72534    27027    517    2017-03-07 20:30:00    2017-03-07 20:30:00
72535    27027    596    2017-03-07 21:39:00    2017-03-07 21:39:00
72536    27027    806    2017-03-07 08:30:00    2017-03-07 08:30:00
72537    27027    588    2017-03-07 03:00:00    2017-03-07 03:00:00
72538    27028    618    2017-03-07 23:05:00    2017-03-07 23:05:00
72539    27028    787    2017-03-07 09:41:00    2017-03-07 09:41:00
72540    27028    780    2017-03-07 09:05:00    2017-03-07 09:05:00
72541    27028    935    2017-03-07 11:46:00    2017-03-07 11:46:00
72542    27028    482    2017-03-07 13:54:00    2017-03-07 13:54:00
72543    27029    476    2017-03-07 01:50:00    2017-03-07 01:50:00
72544    27029    646    2017-03-07 22:22:00    2017-03-07 22:22:00
72545    27029    643    2017-03-07 04:55:00    2017-03-07 04:55:00
72546    27029    591    2017-03-07 08:46:00    2017-03-07 08:46:00
72547    27029    631    2017-03-07 18:02:00    2017-03-07 18:02:00
72548    27030    526    2017-03-07 03:11:00    2017-03-07 03:11:00
72549    27030    469    2017-03-07 13:27:00    2017-03-07 13:27:00
72550    27030    856    2017-03-07 19:12:00    2017-03-07 19:12:00
72551    27030    599    2017-03-07 14:41:00    2017-03-07 14:41:00
72552    27030    660    2017-03-07 14:41:00    2017-03-07 14:41:00
72553    27031    746    2017-03-07 13:37:00    2017-03-07 13:37:00
72554    27031    961    2017-03-07 11:29:00    2017-03-07 11:29:00
72555    27031    852    2017-03-07 22:49:00    2017-03-07 22:49:00
72556    27031    702    2017-03-07 13:36:00    2017-03-07 13:36:00
72557    27031    878    2017-03-07 22:59:00    2017-03-07 22:59:00
72558    27032    836    2017-03-07 13:46:00    2017-03-07 13:46:00
72559    27032    496    2017-03-07 08:52:00    2017-03-07 08:52:00
72560    27032    797    2017-03-07 15:45:00    2017-03-07 15:45:00
72561    27032    953    2017-03-07 08:36:00    2017-03-07 08:36:00
72562    27032    707    2017-03-07 06:29:00    2017-03-07 06:29:00
72563    27033    588    2017-03-07 23:39:00    2017-03-07 23:39:00
72564    27033    885    2017-03-07 03:17:00    2017-03-07 03:17:00
72565    27033    780    2017-03-07 16:27:00    2017-03-07 16:27:00
72566    27033    618    2017-03-07 04:28:00    2017-03-07 04:28:00
72567    27033    711    2017-03-07 23:00:00    2017-03-07 23:00:00
72568    27034    841    2017-03-07 14:42:00    2017-03-07 14:42:00
72569    27034    821    2017-03-07 20:22:00    2017-03-07 20:22:00
72570    27034    567    2017-03-07 23:37:00    2017-03-07 23:37:00
72571    27034    745    2017-03-07 04:59:00    2017-03-07 04:59:00
72572    27034    583    2017-03-07 10:19:00    2017-03-07 10:19:00
72573    27035    588    2017-03-07 04:07:00    2017-03-07 04:07:00
72574    27035    780    2017-03-07 09:45:00    2017-03-07 09:45:00
72575    27035    844    2017-03-07 19:28:00    2017-03-07 19:28:00
72576    27035    539    2017-03-07 14:30:00    2017-03-07 14:30:00
72577    27035    718    2017-03-07 01:12:00    2017-03-07 01:12:00
72578    27036    722    2017-03-07 01:45:00    2017-03-07 01:45:00
72579    27036    800    2017-03-07 08:36:00    2017-03-07 08:36:00
72580    27036    808    2017-03-07 16:15:00    2017-03-07 16:15:00
72581    27036    815    2017-03-07 02:54:00    2017-03-07 02:54:00
72582    27036    549    2017-03-07 15:19:00    2017-03-07 15:19:00
72583    27037    835    2017-03-07 10:38:00    2017-03-07 10:38:00
72584    27037    538    2017-03-07 16:04:00    2017-03-07 16:04:00
72585    27037    470    2017-03-07 15:43:00    2017-03-07 15:43:00
72586    27037    923    2017-03-07 03:20:00    2017-03-07 03:20:00
72587    27037    520    2017-03-07 09:18:00    2017-03-07 09:18:00
72588    27038    580    2017-03-07 03:28:00    2017-03-07 03:28:00
72589    27038    957    2017-03-07 12:08:00    2017-03-07 12:08:00
72590    27038    827    2017-03-07 11:41:00    2017-03-07 11:41:00
72591    27038    809    2017-03-07 08:10:00    2017-03-07 08:10:00
72592    27038    875    2017-03-07 23:15:00    2017-03-07 23:15:00
72593    27039    684    2017-03-07 17:58:00    2017-03-07 17:58:00
72594    27039    892    2017-03-07 20:11:00    2017-03-07 20:11:00
72595    27039    675    2017-03-07 03:32:00    2017-03-07 03:32:00
72596    27039    869    2017-03-07 07:08:00    2017-03-07 07:08:00
72597    27039    884    2017-03-07 19:57:00    2017-03-07 19:57:00
72598    27040    698    2017-03-07 18:29:00    2017-03-07 18:29:00
72599    27040    863    2017-03-07 07:09:00    2017-03-07 07:09:00
72600    27040    721    2017-03-07 15:22:00    2017-03-07 15:22:00
72601    27040    527    2017-03-07 16:07:00    2017-03-07 16:07:00
72602    27040    959    2017-03-07 09:16:00    2017-03-07 09:16:00
72603    27041    601    2017-03-07 06:47:00    2017-03-07 06:47:00
72604    27041    601    2017-03-07 06:24:00    2017-03-07 06:24:00
72605    27041    480    2017-03-07 20:55:00    2017-03-07 20:55:00
72606    27041    734    2017-03-07 19:45:00    2017-03-07 19:45:00
72607    27041    474    2017-03-07 06:50:00    2017-03-07 06:50:00
72608    27042    903    2017-03-07 11:33:00    2017-03-07 11:33:00
72609    27042    722    2017-03-07 08:08:00    2017-03-07 08:08:00
72610    27042    716    2017-03-07 11:11:00    2017-03-07 11:11:00
72611    27042    661    2017-03-07 12:43:00    2017-03-07 12:43:00
72612    27042    689    2017-03-07 04:49:00    2017-03-07 04:49:00
72613    27043    754    2017-03-07 13:09:00    2017-03-07 13:09:00
72614    27043    723    2017-03-07 21:23:00    2017-03-07 21:23:00
72615    27043    528    2017-03-07 02:48:00    2017-03-07 02:48:00
72616    27043    665    2017-03-07 05:34:00    2017-03-07 05:34:00
72617    27043    783    2017-03-07 22:28:00    2017-03-07 22:28:00
72618    27044    574    2017-03-07 05:20:00    2017-03-07 05:20:00
72619    27044    495    2017-03-07 14:04:00    2017-03-07 14:04:00
72620    27044    863    2017-03-07 23:51:00    2017-03-07 23:51:00
72621    27044    695    2017-03-07 22:55:00    2017-03-07 22:55:00
72622    27044    499    2017-03-07 21:55:00    2017-03-07 21:55:00
72623    27045    547    2017-03-07 20:23:00    2017-03-07 20:23:00
72624    27045    860    2017-03-07 21:17:00    2017-03-07 21:17:00
72625    27045    713    2017-03-07 09:19:00    2017-03-07 09:19:00
72626    27045    634    2017-03-07 09:04:00    2017-03-07 09:04:00
72627    27045    834    2017-03-07 20:01:00    2017-03-07 20:01:00
72628    27046    806    2017-03-07 08:50:00    2017-03-07 08:50:00
72629    27046    950    2017-03-07 19:13:00    2017-03-07 19:13:00
72630    27046    646    2017-03-07 21:24:00    2017-03-07 21:24:00
72631    27046    953    2017-03-07 03:12:00    2017-03-07 03:12:00
72632    27046    722    2017-03-07 20:02:00    2017-03-07 20:02:00
72633    27047    825    2017-03-07 23:35:00    2017-03-07 23:35:00
72634    27047    771    2017-03-07 01:21:00    2017-03-07 01:21:00
72635    27047    686    2017-03-07 10:12:00    2017-03-07 10:12:00
72636    27047    486    2017-03-07 18:03:00    2017-03-07 18:03:00
72637    27047    622    2017-03-07 05:26:00    2017-03-07 05:26:00
72638    27048    558    2017-03-07 23:27:00    2017-03-07 23:27:00
72639    27048    557    2017-03-07 22:17:00    2017-03-07 22:17:00
72640    27048    849    2017-03-07 17:00:00    2017-03-07 17:00:00
72641    27048    577    2017-03-07 15:43:00    2017-03-07 15:43:00
72642    27048    831    2017-03-07 01:11:00    2017-03-07 01:11:00
72643    27049    918    2017-03-07 17:21:00    2017-03-07 17:21:00
72644    27049    856    2017-03-07 12:32:00    2017-03-07 12:32:00
72645    27049    853    2017-03-07 22:01:00    2017-03-07 22:01:00
72646    27049    490    2017-03-07 12:52:00    2017-03-07 12:52:00
72647    27049    884    2017-03-07 05:44:00    2017-03-07 05:44:00
72648    27050    481    2017-03-07 19:21:00    2017-03-07 19:21:00
72649    27050    864    2017-03-07 10:31:00    2017-03-07 10:31:00
72650    27050    626    2017-03-07 23:25:00    2017-03-07 23:25:00
72651    27050    651    2017-03-07 04:46:00    2017-03-07 04:46:00
72652    27050    843    2017-03-07 05:32:00    2017-03-07 05:32:00
72653    27051    777    2017-03-07 15:13:00    2017-03-07 15:13:00
72654    27051    522    2017-03-07 20:07:00    2017-03-07 20:07:00
72655    27051    659    2017-03-07 05:55:00    2017-03-07 05:55:00
72656    27051    690    2017-03-07 14:52:00    2017-03-07 14:52:00
72657    27051    952    2017-03-07 12:52:00    2017-03-07 12:52:00
72658    27052    539    2017-03-07 03:00:00    2017-03-07 03:00:00
72659    27052    745    2017-03-07 01:41:00    2017-03-07 01:41:00
72660    27052    825    2017-03-07 18:23:00    2017-03-07 18:23:00
72661    27052    747    2017-03-07 03:09:00    2017-03-07 03:09:00
72662    27052    762    2017-03-07 13:10:00    2017-03-07 13:10:00
72663    27053    550    2017-03-07 18:18:00    2017-03-07 18:18:00
72664    27053    761    2017-03-07 04:16:00    2017-03-07 04:16:00
72665    27053    768    2017-03-07 15:33:00    2017-03-07 15:33:00
72666    27053    860    2017-03-07 16:20:00    2017-03-07 16:20:00
72667    27053    490    2017-03-07 21:18:00    2017-03-07 21:18:00
72668    27054    782    2017-03-07 05:44:00    2017-03-07 05:44:00
72669    27054    751    2017-03-07 19:45:00    2017-03-07 19:45:00
72670    27054    578    2017-03-07 18:10:00    2017-03-07 18:10:00
72671    27054    660    2017-03-07 21:42:00    2017-03-07 21:42:00
72672    27054    925    2017-03-07 11:13:00    2017-03-07 11:13:00
72673    27055    928    2017-03-07 19:25:00    2017-03-07 19:25:00
72674    27055    627    2017-03-07 04:30:00    2017-03-07 04:30:00
72675    27055    569    2017-03-07 03:26:00    2017-03-07 03:26:00
72676    27055    612    2017-03-07 22:55:00    2017-03-07 22:55:00
72677    27055    503    2017-03-07 09:46:00    2017-03-07 09:46:00
72678    27056    750    2017-03-07 10:29:00    2017-03-07 10:29:00
72679    27056    490    2017-03-07 05:19:00    2017-03-07 05:19:00
72680    27056    471    2017-03-07 06:44:00    2017-03-07 06:44:00
72681    27056    721    2017-03-07 18:29:00    2017-03-07 18:29:00
72682    27056    497    2017-03-07 04:27:00    2017-03-07 04:27:00
72683    27057    592    2017-03-07 13:50:00    2017-03-07 13:50:00
72684    27057    794    2017-03-07 10:54:00    2017-03-07 10:54:00
72685    27057    533    2017-03-07 18:02:00    2017-03-07 18:02:00
72686    27057    943    2017-03-07 16:48:00    2017-03-07 16:48:00
72687    27057    920    2017-03-07 16:42:00    2017-03-07 16:42:00
72688    27058    469    2017-03-07 21:36:00    2017-03-07 21:36:00
72689    27058    769    2017-03-07 10:12:00    2017-03-07 10:12:00
72690    27058    560    2017-03-07 17:28:00    2017-03-07 17:28:00
72691    27058    916    2017-03-07 01:39:00    2017-03-07 01:39:00
72692    27058    896    2017-03-07 05:28:00    2017-03-07 05:28:00
72693    27059    640    2017-03-07 20:52:00    2017-03-07 20:52:00
72694    27059    511    2017-03-07 19:15:00    2017-03-07 19:15:00
72695    27059    807    2017-03-07 23:12:00    2017-03-07 23:12:00
72696    27059    615    2017-03-07 04:26:00    2017-03-07 04:26:00
72697    27059    500    2017-03-07 18:42:00    2017-03-07 18:42:00
72698    27060    814    2017-03-07 17:58:00    2017-03-07 17:58:00
72699    27060    760    2017-03-07 21:05:00    2017-03-07 21:05:00
72700    27060    633    2017-03-07 22:40:00    2017-03-07 22:40:00
72701    27060    672    2017-03-07 22:54:00    2017-03-07 22:54:00
72702    27060    534    2017-03-07 12:52:00    2017-03-07 12:52:00
72703    27061    724    2017-03-08 07:58:00    2017-03-08 07:58:00
72704    27061    903    2017-03-08 16:59:00    2017-03-08 16:59:00
72705    27061    616    2017-03-08 07:54:00    2017-03-08 07:54:00
72706    27061    682    2017-03-08 13:26:00    2017-03-08 13:26:00
72707    27061    801    2017-03-08 05:34:00    2017-03-08 05:34:00
72708    27062    882    2017-03-08 09:29:00    2017-03-08 09:29:00
72709    27062    680    2017-03-08 17:20:00    2017-03-08 17:20:00
72710    27062    688    2017-03-08 17:21:00    2017-03-08 17:21:00
72711    27062    911    2017-03-08 20:34:00    2017-03-08 20:34:00
72712    27062    798    2017-03-08 04:59:00    2017-03-08 04:59:00
72713    27063    836    2017-03-08 01:53:00    2017-03-08 01:53:00
72714    27063    898    2017-03-08 03:45:00    2017-03-08 03:45:00
72715    27063    498    2017-03-08 08:32:00    2017-03-08 08:32:00
72716    27063    899    2017-03-08 04:16:00    2017-03-08 04:16:00
72717    27063    855    2017-03-08 07:34:00    2017-03-08 07:34:00
72718    27064    634    2017-03-08 07:04:00    2017-03-08 07:04:00
72719    27064    582    2017-03-08 16:53:00    2017-03-08 16:53:00
72720    27064    711    2017-03-08 22:21:00    2017-03-08 22:21:00
72721    27064    880    2017-03-08 17:56:00    2017-03-08 17:56:00
72722    27064    826    2017-03-08 02:40:00    2017-03-08 02:40:00
72723    27065    500    2017-03-08 19:47:00    2017-03-08 19:47:00
72724    27065    520    2017-03-08 02:11:00    2017-03-08 02:11:00
72725    27065    598    2017-03-08 18:59:00    2017-03-08 18:59:00
72726    27065    696    2017-03-08 07:23:00    2017-03-08 07:23:00
72727    27065    718    2017-03-08 08:23:00    2017-03-08 08:23:00
72728    27066    544    2017-03-08 07:34:00    2017-03-08 07:34:00
72729    27066    555    2017-03-08 06:40:00    2017-03-08 06:40:00
72730    27066    694    2017-03-08 12:27:00    2017-03-08 12:27:00
72731    27066    946    2017-03-08 20:58:00    2017-03-08 20:58:00
72732    27066    682    2017-03-08 13:36:00    2017-03-08 13:36:00
72733    27067    842    2017-03-09 04:34:00    2017-03-09 04:34:00
72734    27067    800    2017-03-09 06:56:00    2017-03-09 06:56:00
72735    27067    482    2017-03-09 06:22:00    2017-03-09 06:22:00
72736    27067    793    2017-03-09 06:00:00    2017-03-09 06:00:00
72737    27067    786    2017-03-09 17:21:00    2017-03-09 17:21:00
72738    27068    710    2017-03-09 11:12:00    2017-03-09 11:12:00
72739    27068    554    2017-03-09 12:31:00    2017-03-09 12:31:00
72740    27068    878    2017-03-09 05:54:00    2017-03-09 05:54:00
72741    27068    727    2017-03-09 02:56:00    2017-03-09 02:56:00
72742    27068    582    2017-03-09 18:26:00    2017-03-09 18:26:00
72743    27069    850    2017-03-09 14:07:00    2017-03-09 14:07:00
72744    27069    522    2017-03-09 16:57:00    2017-03-09 16:57:00
72745    27069    801    2017-03-09 12:53:00    2017-03-09 12:53:00
72746    27069    640    2017-03-09 20:17:00    2017-03-09 20:17:00
72747    27069    545    2017-03-09 05:00:00    2017-03-09 05:00:00
72748    27070    487    2017-03-09 04:52:00    2017-03-09 04:52:00
72749    27070    952    2017-03-09 10:38:00    2017-03-09 10:38:00
72750    27070    483    2017-03-09 08:02:00    2017-03-09 08:02:00
72751    27070    695    2017-03-09 20:57:00    2017-03-09 20:57:00
72752    27070    692    2017-03-09 08:47:00    2017-03-09 08:47:00
72753    27071    743    2017-03-09 22:58:00    2017-03-09 22:58:00
72754    27071    842    2017-03-09 04:49:00    2017-03-09 04:49:00
72755    27071    619    2017-03-09 23:36:00    2017-03-09 23:36:00
72756    27071    730    2017-03-09 11:45:00    2017-03-09 11:45:00
72757    27071    859    2017-03-09 04:26:00    2017-03-09 04:26:00
72758    27072    643    2017-03-09 18:35:00    2017-03-09 18:35:00
72759    27072    811    2017-03-09 23:00:00    2017-03-09 23:00:00
72760    27072    792    2017-03-09 01:01:00    2017-03-09 01:01:00
72761    27072    908    2017-03-09 22:24:00    2017-03-09 22:24:00
72762    27072    583    2017-03-09 20:47:00    2017-03-09 20:47:00
72763    27073    948    2017-03-09 01:31:00    2017-03-09 01:31:00
72764    27073    615    2017-03-09 22:41:00    2017-03-09 22:41:00
72765    27073    613    2017-03-09 16:21:00    2017-03-09 16:21:00
72766    27073    807    2017-03-09 21:38:00    2017-03-09 21:38:00
72767    27073    779    2017-03-09 23:40:00    2017-03-09 23:40:00
72768    27074    518    2017-03-09 20:12:00    2017-03-09 20:12:00
72769    27074    950    2017-03-09 10:34:00    2017-03-09 10:34:00
72770    27074    608    2017-03-09 07:05:00    2017-03-09 07:05:00
72771    27074    881    2017-03-09 19:54:00    2017-03-09 19:54:00
72772    27074    931    2017-03-09 07:57:00    2017-03-09 07:57:00
72773    27075    650    2017-03-10 01:29:00    2017-03-10 01:29:00
72774    27075    936    2017-03-10 08:39:00    2017-03-10 08:39:00
72775    27075    914    2017-03-10 16:28:00    2017-03-10 16:28:00
72776    27075    580    2017-03-10 10:08:00    2017-03-10 10:08:00
72777    27075    635    2017-03-10 21:53:00    2017-03-10 21:53:00
72778    27076    657    2017-03-10 04:14:00    2017-03-10 04:14:00
72779    27076    737    2017-03-10 08:15:00    2017-03-10 08:15:00
72780    27076    608    2017-03-10 11:37:00    2017-03-10 11:37:00
72781    27076    799    2017-03-10 10:20:00    2017-03-10 10:20:00
72782    27076    674    2017-03-10 15:16:00    2017-03-10 15:16:00
72783    27077    897    2017-03-10 18:02:00    2017-03-10 18:02:00
72784    27077    738    2017-03-10 10:30:00    2017-03-10 10:30:00
72785    27077    686    2017-03-10 04:52:00    2017-03-10 04:52:00
72786    27077    746    2017-03-10 13:01:00    2017-03-10 13:01:00
72787    27077    590    2017-03-10 22:52:00    2017-03-10 22:52:00
72788    27078    517    2017-03-10 17:00:00    2017-03-10 17:00:00
72789    27078    582    2017-03-10 01:11:00    2017-03-10 01:11:00
72790    27078    770    2017-03-10 14:28:00    2017-03-10 14:28:00
72791    27078    686    2017-03-10 23:43:00    2017-03-10 23:43:00
72792    27078    884    2017-03-10 21:37:00    2017-03-10 21:37:00
72793    27079    655    2017-03-10 17:41:00    2017-03-10 17:41:00
72794    27079    709    2017-03-10 13:27:00    2017-03-10 13:27:00
72795    27079    578    2017-03-10 10:30:00    2017-03-10 10:30:00
72796    27079    711    2017-03-10 17:56:00    2017-03-10 17:56:00
72797    27079    919    2017-03-10 11:22:00    2017-03-10 11:22:00
72798    27080    895    2017-03-10 22:35:00    2017-03-10 22:35:00
72799    27080    687    2017-03-10 01:56:00    2017-03-10 01:56:00
72800    27080    655    2017-03-10 16:52:00    2017-03-10 16:52:00
72801    27080    532    2017-03-10 14:02:00    2017-03-10 14:02:00
72802    27080    514    2017-03-10 23:29:00    2017-03-10 23:29:00
72803    27081    652    2017-03-10 07:20:00    2017-03-10 07:20:00
72804    27081    679    2017-03-10 19:02:00    2017-03-10 19:02:00
72805    27081    827    2017-03-10 09:19:00    2017-03-10 09:19:00
72806    27081    825    2017-03-10 12:58:00    2017-03-10 12:58:00
72807    27081    641    2017-03-10 15:34:00    2017-03-10 15:34:00
72808    27082    659    2017-03-10 01:59:00    2017-03-10 01:59:00
72809    27082    529    2017-03-10 02:30:00    2017-03-10 02:30:00
72810    27082    725    2017-03-10 06:01:00    2017-03-10 06:01:00
72811    27082    591    2017-03-10 02:25:00    2017-03-10 02:25:00
72812    27082    604    2017-03-10 04:04:00    2017-03-10 04:04:00
72813    27083    809    2017-03-10 07:03:00    2017-03-10 07:03:00
72814    27083    640    2017-03-10 16:19:00    2017-03-10 16:19:00
72815    27083    493    2017-03-10 08:18:00    2017-03-10 08:18:00
72816    27083    505    2017-03-10 09:03:00    2017-03-10 09:03:00
72817    27083    704    2017-03-10 22:51:00    2017-03-10 22:51:00
72818    27084    944    2017-03-10 18:40:00    2017-03-10 18:40:00
72819    27084    723    2017-03-10 19:22:00    2017-03-10 19:22:00
72820    27084    493    2017-03-10 03:23:00    2017-03-10 03:23:00
72821    27084    753    2017-03-10 09:44:00    2017-03-10 09:44:00
72822    27084    546    2017-03-10 23:02:00    2017-03-10 23:02:00
72823    27085    521    2017-03-10 12:52:00    2017-03-10 12:52:00
72824    27085    727    2017-03-10 13:18:00    2017-03-10 13:18:00
72825    27085    904    2017-03-10 19:54:00    2017-03-10 19:54:00
72826    27085    495    2017-03-10 21:20:00    2017-03-10 21:20:00
72827    27085    791    2017-03-10 12:18:00    2017-03-10 12:18:00
72828    27086    480    2017-03-10 05:19:00    2017-03-10 05:19:00
72829    27086    616    2017-03-10 15:44:00    2017-03-10 15:44:00
72830    27086    826    2017-03-10 09:30:00    2017-03-10 09:30:00
72831    27086    925    2017-03-10 14:40:00    2017-03-10 14:40:00
72832    27086    632    2017-03-10 23:13:00    2017-03-10 23:13:00
72833    27087    478    2017-03-10 16:51:00    2017-03-10 16:51:00
72834    27087    601    2017-03-10 05:54:00    2017-03-10 05:54:00
72835    27087    595    2017-03-10 09:55:00    2017-03-10 09:55:00
72836    27087    819    2017-03-10 03:15:00    2017-03-10 03:15:00
72837    27087    511    2017-03-10 01:48:00    2017-03-10 01:48:00
72838    27088    568    2017-03-10 08:21:00    2017-03-10 08:21:00
72839    27088    528    2017-03-10 07:25:00    2017-03-10 07:25:00
72840    27088    847    2017-03-10 02:06:00    2017-03-10 02:06:00
72841    27088    587    2017-03-10 22:06:00    2017-03-10 22:06:00
72842    27088    567    2017-03-10 05:35:00    2017-03-10 05:35:00
72843    27089    795    2017-03-10 22:50:00    2017-03-10 22:50:00
72844    27089    881    2017-03-10 19:05:00    2017-03-10 19:05:00
72845    27089    875    2017-03-10 19:46:00    2017-03-10 19:46:00
72846    27089    714    2017-03-10 05:22:00    2017-03-10 05:22:00
72847    27089    738    2017-03-10 03:19:00    2017-03-10 03:19:00
72848    27090    738    2017-03-10 01:18:00    2017-03-10 01:18:00
72849    27090    785    2017-03-10 01:12:00    2017-03-10 01:12:00
72850    27090    814    2017-03-10 18:14:00    2017-03-10 18:14:00
72851    27090    700    2017-03-10 06:23:00    2017-03-10 06:23:00
72852    27090    885    2017-03-10 11:27:00    2017-03-10 11:27:00
72853    27091    878    2017-03-10 20:42:00    2017-03-10 20:42:00
72854    27091    852    2017-03-10 11:10:00    2017-03-10 11:10:00
72855    27091    887    2017-03-10 16:03:00    2017-03-10 16:03:00
72856    27091    689    2017-03-10 06:28:00    2017-03-10 06:28:00
72857    27091    796    2017-03-10 03:55:00    2017-03-10 03:55:00
72858    27092    612    2017-03-10 15:11:00    2017-03-10 15:11:00
72859    27092    717    2017-03-10 06:59:00    2017-03-10 06:59:00
72860    27092    707    2017-03-10 21:11:00    2017-03-10 21:11:00
72861    27092    851    2017-03-10 17:11:00    2017-03-10 17:11:00
72862    27092    718    2017-03-10 07:49:00    2017-03-10 07:49:00
72863    27093    621    2017-03-10 07:32:00    2017-03-10 07:32:00
72864    27093    467    2017-03-10 09:22:00    2017-03-10 09:22:00
72865    27093    751    2017-03-10 22:09:00    2017-03-10 22:09:00
72866    27093    680    2017-03-10 06:14:00    2017-03-10 06:14:00
72867    27093    848    2017-03-10 19:24:00    2017-03-10 19:24:00
72868    27094    913    2017-03-10 08:18:00    2017-03-10 08:18:00
72869    27094    578    2017-03-10 17:26:00    2017-03-10 17:26:00
72870    27094    864    2017-03-10 14:23:00    2017-03-10 14:23:00
72871    27094    874    2017-03-10 14:39:00    2017-03-10 14:39:00
72872    27094    576    2017-03-10 22:49:00    2017-03-10 22:49:00
72873    27095    692    2017-03-10 03:23:00    2017-03-10 03:23:00
72874    27095    857    2017-03-10 13:50:00    2017-03-10 13:50:00
72875    27095    866    2017-03-10 19:19:00    2017-03-10 19:19:00
72876    27095    741    2017-03-10 14:25:00    2017-03-10 14:25:00
72877    27095    725    2017-03-10 10:33:00    2017-03-10 10:33:00
72878    27096    919    2017-03-10 17:56:00    2017-03-10 17:56:00
72879    27096    852    2017-03-10 21:29:00    2017-03-10 21:29:00
72880    27096    850    2017-03-10 05:11:00    2017-03-10 05:11:00
72881    27096    491    2017-03-10 09:30:00    2017-03-10 09:30:00
72882    27096    724    2017-03-10 13:01:00    2017-03-10 13:01:00
72883    27097    932    2017-03-10 07:50:00    2017-03-10 07:50:00
72884    27097    945    2017-03-10 07:36:00    2017-03-10 07:36:00
72885    27097    856    2017-03-10 12:54:00    2017-03-10 12:54:00
72886    27097    613    2017-03-10 13:28:00    2017-03-10 13:28:00
72887    27097    670    2017-03-10 01:35:00    2017-03-10 01:35:00
72888    27098    731    2017-03-10 15:13:00    2017-03-10 15:13:00
72889    27098    821    2017-03-10 08:20:00    2017-03-10 08:20:00
72890    27098    660    2017-03-10 22:43:00    2017-03-10 22:43:00
72891    27098    670    2017-03-10 13:14:00    2017-03-10 13:14:00
72892    27098    806    2017-03-10 09:57:00    2017-03-10 09:57:00
72893    27099    653    2017-03-10 15:17:00    2017-03-10 15:17:00
72894    27099    537    2017-03-10 01:16:00    2017-03-10 01:16:00
72895    27099    858    2017-03-10 03:45:00    2017-03-10 03:45:00
72896    27099    620    2017-03-10 10:53:00    2017-03-10 10:53:00
72897    27099    493    2017-03-10 22:42:00    2017-03-10 22:42:00
72898    27100    897    2017-03-10 18:30:00    2017-03-10 18:30:00
72899    27100    792    2017-03-10 06:06:00    2017-03-10 06:06:00
72900    27100    824    2017-03-10 21:28:00    2017-03-10 21:28:00
72901    27100    526    2017-03-10 13:33:00    2017-03-10 13:33:00
72902    27100    467    2017-03-10 13:29:00    2017-03-10 13:29:00
72903    27101    523    2017-03-10 11:03:00    2017-03-10 11:03:00
72904    27101    708    2017-03-10 01:41:00    2017-03-10 01:41:00
72905    27101    709    2017-03-10 03:55:00    2017-03-10 03:55:00
72906    27101    723    2017-03-10 05:58:00    2017-03-10 05:58:00
72907    27101    846    2017-03-10 21:01:00    2017-03-10 21:01:00
72908    27102    479    2017-03-10 08:52:00    2017-03-10 08:52:00
72909    27102    666    2017-03-10 11:03:00    2017-03-10 11:03:00
72910    27102    616    2017-03-10 11:40:00    2017-03-10 11:40:00
72911    27102    921    2017-03-10 19:07:00    2017-03-10 19:07:00
72912    27102    695    2017-03-10 11:58:00    2017-03-10 11:58:00
72913    27103    510    2017-03-10 12:28:00    2017-03-10 12:28:00
72914    27103    933    2017-03-10 23:35:00    2017-03-10 23:35:00
72915    27103    745    2017-03-10 21:18:00    2017-03-10 21:18:00
72916    27103    536    2017-03-10 07:53:00    2017-03-10 07:53:00
72917    27103    555    2017-03-10 21:38:00    2017-03-10 21:38:00
72918    27104    775    2017-03-10 21:36:00    2017-03-10 21:36:00
72919    27104    562    2017-03-10 06:02:00    2017-03-10 06:02:00
72920    27104    638    2017-03-10 06:30:00    2017-03-10 06:30:00
72921    27104    464    2017-03-10 01:53:00    2017-03-10 01:53:00
72922    27104    526    2017-03-10 18:00:00    2017-03-10 18:00:00
72923    27105    775    2017-03-10 13:10:00    2017-03-10 13:10:00
72924    27105    657    2017-03-10 02:42:00    2017-03-10 02:42:00
72925    27105    546    2017-03-10 01:33:00    2017-03-10 01:33:00
72926    27105    808    2017-03-10 03:45:00    2017-03-10 03:45:00
72927    27105    851    2017-03-10 15:05:00    2017-03-10 15:05:00
72928    27106    598    2017-03-10 22:33:00    2017-03-10 22:33:00
72929    27106    641    2017-03-10 10:03:00    2017-03-10 10:03:00
72930    27106    671    2017-03-10 14:49:00    2017-03-10 14:49:00
72931    27106    922    2017-03-10 20:04:00    2017-03-10 20:04:00
72932    27106    646    2017-03-10 02:01:00    2017-03-10 02:01:00
72933    27107    816    2017-03-10 06:02:00    2017-03-10 06:02:00
72934    27107    825    2017-03-10 11:17:00    2017-03-10 11:17:00
72935    27107    505    2017-03-10 16:12:00    2017-03-10 16:12:00
72936    27107    877    2017-03-10 14:08:00    2017-03-10 14:08:00
72937    27107    753    2017-03-10 13:11:00    2017-03-10 13:11:00
72938    27108    614    2017-03-10 13:24:00    2017-03-10 13:24:00
72939    27108    879    2017-03-10 14:36:00    2017-03-10 14:36:00
72940    27108    588    2017-03-10 09:53:00    2017-03-10 09:53:00
72941    27108    717    2017-03-10 20:50:00    2017-03-10 20:50:00
72942    27108    859    2017-03-10 20:00:00    2017-03-10 20:00:00
72943    27109    519    2017-03-10 06:54:00    2017-03-10 06:54:00
72944    27109    665    2017-03-10 20:42:00    2017-03-10 20:42:00
72945    27109    839    2017-03-10 09:16:00    2017-03-10 09:16:00
72946    27109    951    2017-03-10 08:34:00    2017-03-10 08:34:00
72947    27109    546    2017-03-10 05:43:00    2017-03-10 05:43:00
72948    27110    587    2017-03-10 15:32:00    2017-03-10 15:32:00
72949    27110    645    2017-03-10 18:56:00    2017-03-10 18:56:00
72950    27110    466    2017-03-10 12:06:00    2017-03-10 12:06:00
72951    27110    688    2017-03-10 07:08:00    2017-03-10 07:08:00
72952    27110    875    2017-03-10 23:30:00    2017-03-10 23:30:00
72953    27111    495    2017-03-10 07:00:00    2017-03-10 07:00:00
72954    27111    868    2017-03-10 23:26:00    2017-03-10 23:26:00
72955    27111    857    2017-03-10 10:49:00    2017-03-10 10:49:00
72956    27111    930    2017-03-10 23:26:00    2017-03-10 23:26:00
72957    27111    808    2017-03-10 23:49:00    2017-03-10 23:49:00
72958    27112    701    2017-03-10 14:40:00    2017-03-10 14:40:00
72959    27112    761    2017-03-10 17:09:00    2017-03-10 17:09:00
72960    27112    722    2017-03-10 23:35:00    2017-03-10 23:35:00
72961    27112    526    2017-03-10 21:32:00    2017-03-10 21:32:00
72962    27112    797    2017-03-10 07:48:00    2017-03-10 07:48:00
72963    27113    824    2017-03-10 14:51:00    2017-03-10 14:51:00
72964    27113    550    2017-03-10 21:42:00    2017-03-10 21:42:00
72965    27113    682    2017-03-10 04:43:00    2017-03-10 04:43:00
72966    27113    759    2017-03-10 21:48:00    2017-03-10 21:48:00
72967    27113    950    2017-03-10 06:35:00    2017-03-10 06:35:00
72968    27114    669    2017-03-10 18:22:00    2017-03-10 18:22:00
72969    27114    587    2017-03-10 23:14:00    2017-03-10 23:14:00
72970    27114    746    2017-03-10 07:50:00    2017-03-10 07:50:00
72971    27114    622    2017-03-10 05:57:00    2017-03-10 05:57:00
72972    27114    855    2017-03-10 02:47:00    2017-03-10 02:47:00
72973    27115    725    2017-03-10 16:11:00    2017-03-10 16:11:00
72974    27115    715    2017-03-10 08:53:00    2017-03-10 08:53:00
72975    27115    811    2017-03-10 03:00:00    2017-03-10 03:00:00
72976    27115    756    2017-03-10 15:19:00    2017-03-10 15:19:00
72977    27115    920    2017-03-10 03:43:00    2017-03-10 03:43:00
72978    27116    478    2017-03-10 16:07:00    2017-03-10 16:07:00
72979    27116    477    2017-03-10 09:33:00    2017-03-10 09:33:00
72980    27116    585    2017-03-10 13:15:00    2017-03-10 13:15:00
72981    27116    701    2017-03-10 02:54:00    2017-03-10 02:54:00
72982    27116    708    2017-03-10 10:58:00    2017-03-10 10:58:00
72983    27117    737    2017-03-10 14:01:00    2017-03-10 14:01:00
72984    27117    584    2017-03-10 04:00:00    2017-03-10 04:00:00
72985    27117    542    2017-03-10 05:38:00    2017-03-10 05:38:00
72986    27117    804    2017-03-10 20:55:00    2017-03-10 20:55:00
72987    27117    724    2017-03-10 09:12:00    2017-03-10 09:12:00
72988    27118    687    2017-03-10 16:03:00    2017-03-10 16:03:00
72989    27118    790    2017-03-10 15:28:00    2017-03-10 15:28:00
72990    27118    719    2017-03-10 13:29:00    2017-03-10 13:29:00
72991    27118    797    2017-03-10 09:54:00    2017-03-10 09:54:00
72992    27118    747    2017-03-10 21:50:00    2017-03-10 21:50:00
72993    27119    513    2017-03-10 11:55:00    2017-03-10 11:55:00
72994    27119    867    2017-03-10 18:01:00    2017-03-10 18:01:00
72995    27119    674    2017-03-10 11:02:00    2017-03-10 11:02:00
72996    27119    864    2017-03-10 04:18:00    2017-03-10 04:18:00
72997    27119    566    2017-03-10 14:05:00    2017-03-10 14:05:00
72998    27120    593    2017-03-10 19:34:00    2017-03-10 19:34:00
72999    27120    723    2017-03-10 19:28:00    2017-03-10 19:28:00
73000    27120    849    2017-03-10 13:56:00    2017-03-10 13:56:00
73001    27120    683    2017-03-10 04:32:00    2017-03-10 04:32:00
73002    27120    560    2017-03-10 04:30:00    2017-03-10 04:30:00
73003    27121    822    2017-03-10 08:08:00    2017-03-10 08:08:00
73004    27121    868    2017-03-10 17:39:00    2017-03-10 17:39:00
73005    27121    679    2017-03-10 08:24:00    2017-03-10 08:24:00
73006    27121    475    2017-03-10 17:51:00    2017-03-10 17:51:00
73007    27121    769    2017-03-10 19:39:00    2017-03-10 19:39:00
73008    27122    919    2017-03-10 14:12:00    2017-03-10 14:12:00
73009    27122    487    2017-03-10 08:24:00    2017-03-10 08:24:00
73010    27122    738    2017-03-10 10:03:00    2017-03-10 10:03:00
73011    27122    477    2017-03-10 10:43:00    2017-03-10 10:43:00
73012    27122    541    2017-03-10 08:11:00    2017-03-10 08:11:00
73013    27123    904    2017-03-11 06:06:00    2017-03-11 06:06:00
73014    27123    766    2017-03-11 17:48:00    2017-03-11 17:48:00
73015    27123    508    2017-03-11 09:54:00    2017-03-11 09:54:00
73016    27123    615    2017-03-11 12:11:00    2017-03-11 12:11:00
73017    27123    484    2017-03-11 18:29:00    2017-03-11 18:29:00
73018    27124    464    2017-03-11 19:46:00    2017-03-11 19:46:00
73019    27124    744    2017-03-11 13:55:00    2017-03-11 13:55:00
73020    27124    487    2017-03-11 08:33:00    2017-03-11 08:33:00
73021    27124    563    2017-03-11 19:47:00    2017-03-11 19:47:00
73022    27124    770    2017-03-11 11:10:00    2017-03-11 11:10:00
73023    27125    604    2017-03-11 11:36:00    2017-03-11 11:36:00
73024    27125    504    2017-03-11 14:14:00    2017-03-11 14:14:00
73025    27125    808    2017-03-11 18:08:00    2017-03-11 18:08:00
73026    27125    775    2017-03-11 04:15:00    2017-03-11 04:15:00
73027    27125    514    2017-03-11 15:35:00    2017-03-11 15:35:00
73028    27126    824    2017-03-11 02:07:00    2017-03-11 02:07:00
73029    27126    825    2017-03-11 19:55:00    2017-03-11 19:55:00
73030    27126    875    2017-03-11 22:00:00    2017-03-11 22:00:00
73031    27126    465    2017-03-11 18:18:00    2017-03-11 18:18:00
73032    27126    795    2017-03-11 11:01:00    2017-03-11 11:01:00
73033    27127    526    2017-03-11 06:21:00    2017-03-11 06:21:00
73034    27127    928    2017-03-11 04:09:00    2017-03-11 04:09:00
73035    27127    740    2017-03-11 21:42:00    2017-03-11 21:42:00
73036    27127    527    2017-03-11 13:48:00    2017-03-11 13:48:00
73037    27127    899    2017-03-11 21:24:00    2017-03-11 21:24:00
73038    27128    813    2017-03-11 11:01:00    2017-03-11 11:01:00
73039    27128    830    2017-03-11 21:55:00    2017-03-11 21:55:00
73040    27128    766    2017-03-11 04:06:00    2017-03-11 04:06:00
73041    27128    665    2017-03-11 23:31:00    2017-03-11 23:31:00
73042    27128    640    2017-03-11 08:39:00    2017-03-11 08:39:00
73043    27129    833    2017-03-11 01:11:00    2017-03-11 01:11:00
73044    27129    898    2017-03-11 05:36:00    2017-03-11 05:36:00
73045    27129    566    2017-03-11 17:03:00    2017-03-11 17:03:00
73046    27129    500    2017-03-11 09:57:00    2017-03-11 09:57:00
73047    27129    724    2017-03-11 08:57:00    2017-03-11 08:57:00
73048    27130    516    2017-03-11 18:49:00    2017-03-11 18:49:00
73049    27130    756    2017-03-11 22:27:00    2017-03-11 22:27:00
73050    27130    858    2017-03-11 11:56:00    2017-03-11 11:56:00
73051    27130    686    2017-03-11 03:28:00    2017-03-11 03:28:00
73052    27130    748    2017-03-11 11:40:00    2017-03-11 11:40:00
73053    27131    595    2017-03-11 05:53:00    2017-03-11 05:53:00
73054    27131    464    2017-03-11 16:08:00    2017-03-11 16:08:00
73055    27131    579    2017-03-11 08:01:00    2017-03-11 08:01:00
73056    27131    679    2017-03-11 20:29:00    2017-03-11 20:29:00
73057    27131    622    2017-03-11 01:23:00    2017-03-11 01:23:00
73058    27132    639    2017-03-11 07:28:00    2017-03-11 07:28:00
73059    27132    831    2017-03-11 04:49:00    2017-03-11 04:49:00
73060    27132    527    2017-03-11 07:23:00    2017-03-11 07:23:00
73061    27132    844    2017-03-11 07:25:00    2017-03-11 07:25:00
73062    27132    796    2017-03-11 07:19:00    2017-03-11 07:19:00
73063    27133    823    2017-03-11 10:52:00    2017-03-11 10:52:00
73064    27133    708    2017-03-11 14:07:00    2017-03-11 14:07:00
73065    27133    783    2017-03-11 18:47:00    2017-03-11 18:47:00
73066    27133    720    2017-03-11 01:26:00    2017-03-11 01:26:00
73067    27133    670    2017-03-11 21:47:00    2017-03-11 21:47:00
73068    27134    895    2017-03-11 17:26:00    2017-03-11 17:26:00
73069    27134    672    2017-03-11 08:11:00    2017-03-11 08:11:00
73070    27134    664    2017-03-11 17:49:00    2017-03-11 17:49:00
73071    27134    901    2017-03-11 20:43:00    2017-03-11 20:43:00
73072    27134    652    2017-03-11 07:07:00    2017-03-11 07:07:00
73073    27135    608    2017-03-11 17:53:00    2017-03-11 17:53:00
73074    27135    559    2017-03-11 02:38:00    2017-03-11 02:38:00
73075    27135    773    2017-03-11 01:19:00    2017-03-11 01:19:00
73076    27135    883    2017-03-11 21:38:00    2017-03-11 21:38:00
73077    27135    846    2017-03-11 21:29:00    2017-03-11 21:29:00
73078    27136    630    2017-03-11 15:44:00    2017-03-11 15:44:00
73079    27136    729    2017-03-11 13:21:00    2017-03-11 13:21:00
73080    27136    628    2017-03-11 05:39:00    2017-03-11 05:39:00
73081    27136    613    2017-03-11 10:38:00    2017-03-11 10:38:00
73082    27136    520    2017-03-11 21:57:00    2017-03-11 21:57:00
73083    27137    586    2017-03-11 12:05:00    2017-03-11 12:05:00
73084    27137    927    2017-03-11 07:48:00    2017-03-11 07:48:00
73085    27137    895    2017-03-11 11:01:00    2017-03-11 11:01:00
73086    27137    605    2017-03-11 17:23:00    2017-03-11 17:23:00
73087    27137    818    2017-03-11 01:16:00    2017-03-11 01:16:00
73088    27138    804    2017-03-11 05:00:00    2017-03-11 05:00:00
73089    27138    489    2017-03-11 02:16:00    2017-03-11 02:16:00
73090    27138    606    2017-03-11 17:59:00    2017-03-11 17:59:00
73091    27138    516    2017-03-11 23:18:00    2017-03-11 23:18:00
73092    27138    531    2017-03-11 12:28:00    2017-03-11 12:28:00
73093    27139    830    2017-03-11 07:29:00    2017-03-11 07:29:00
73094    27139    910    2017-03-11 17:37:00    2017-03-11 17:37:00
73095    27139    961    2017-03-11 01:31:00    2017-03-11 01:31:00
73096    27139    655    2017-03-11 05:11:00    2017-03-11 05:11:00
73097    27139    882    2017-03-11 13:00:00    2017-03-11 13:00:00
73098    27140    695    2017-03-11 07:12:00    2017-03-11 07:12:00
73099    27140    866    2017-03-11 19:00:00    2017-03-11 19:00:00
73100    27140    573    2017-03-11 20:07:00    2017-03-11 20:07:00
73101    27140    769    2017-03-11 17:58:00    2017-03-11 17:58:00
73102    27140    486    2017-03-11 07:13:00    2017-03-11 07:13:00
73103    27141    741    2017-03-11 22:29:00    2017-03-11 22:29:00
73104    27141    762    2017-03-11 19:50:00    2017-03-11 19:50:00
73105    27141    487    2017-03-11 21:51:00    2017-03-11 21:51:00
73106    27141    922    2017-03-11 06:48:00    2017-03-11 06:48:00
73107    27141    603    2017-03-11 23:47:00    2017-03-11 23:47:00
73108    27142    808    2017-03-11 13:53:00    2017-03-11 13:53:00
73109    27142    929    2017-03-11 20:06:00    2017-03-11 20:06:00
73110    27142    924    2017-03-11 03:05:00    2017-03-11 03:05:00
73111    27142    558    2017-03-11 07:24:00    2017-03-11 07:24:00
73112    27142    481    2017-03-11 15:01:00    2017-03-11 15:01:00
73113    27143    470    2017-03-11 04:22:00    2017-03-11 04:22:00
73114    27143    549    2017-03-11 17:03:00    2017-03-11 17:03:00
73115    27143    795    2017-03-11 19:39:00    2017-03-11 19:39:00
73116    27143    607    2017-03-11 08:16:00    2017-03-11 08:16:00
73117    27143    464    2017-03-11 04:50:00    2017-03-11 04:50:00
73118    27144    712    2017-03-11 01:05:00    2017-03-11 01:05:00
73119    27144    960    2017-03-11 09:02:00    2017-03-11 09:02:00
73120    27144    755    2017-03-11 03:01:00    2017-03-11 03:01:00
73121    27144    876    2017-03-11 22:49:00    2017-03-11 22:49:00
73122    27144    525    2017-03-11 14:20:00    2017-03-11 14:20:00
73123    27145    640    2017-03-11 06:41:00    2017-03-11 06:41:00
73124    27145    923    2017-03-11 04:54:00    2017-03-11 04:54:00
73125    27145    584    2017-03-11 16:56:00    2017-03-11 16:56:00
73126    27145    525    2017-03-11 17:39:00    2017-03-11 17:39:00
73127    27145    885    2017-03-11 21:37:00    2017-03-11 21:37:00
73128    27146    568    2017-03-11 10:00:00    2017-03-11 10:00:00
73129    27146    844    2017-03-11 14:28:00    2017-03-11 14:28:00
73130    27146    770    2017-03-11 05:53:00    2017-03-11 05:53:00
73131    27146    867    2017-03-11 21:46:00    2017-03-11 21:46:00
73132    27146    895    2017-03-11 01:06:00    2017-03-11 01:06:00
73133    27147    766    2017-03-11 04:19:00    2017-03-11 04:19:00
73134    27147    861    2017-03-11 19:05:00    2017-03-11 19:05:00
73135    27147    654    2017-03-11 04:38:00    2017-03-11 04:38:00
73136    27147    672    2017-03-11 09:25:00    2017-03-11 09:25:00
73137    27147    669    2017-03-11 17:53:00    2017-03-11 17:53:00
73138    27148    837    2017-03-11 04:15:00    2017-03-11 04:15:00
73139    27148    572    2017-03-11 02:22:00    2017-03-11 02:22:00
73140    27148    798    2017-03-11 17:09:00    2017-03-11 17:09:00
73141    27148    481    2017-03-11 07:55:00    2017-03-11 07:55:00
73142    27148    824    2017-03-11 20:50:00    2017-03-11 20:50:00
73143    27149    622    2017-03-11 18:49:00    2017-03-11 18:49:00
73144    27149    745    2017-03-11 17:27:00    2017-03-11 17:27:00
73145    27149    789    2017-03-11 06:30:00    2017-03-11 06:30:00
73146    27149    656    2017-03-11 02:35:00    2017-03-11 02:35:00
73147    27149    760    2017-03-11 17:52:00    2017-03-11 17:52:00
73148    27150    797    2017-03-11 13:04:00    2017-03-11 13:04:00
73149    27150    602    2017-03-11 13:06:00    2017-03-11 13:06:00
73150    27150    838    2017-03-11 03:24:00    2017-03-11 03:24:00
73151    27150    806    2017-03-11 12:41:00    2017-03-11 12:41:00
73152    27150    725    2017-03-11 04:55:00    2017-03-11 04:55:00
73153    27151    904    2017-03-11 15:03:00    2017-03-11 15:03:00
73154    27151    564    2017-03-11 15:21:00    2017-03-11 15:21:00
73155    27151    558    2017-03-11 19:33:00    2017-03-11 19:33:00
73156    27151    657    2017-03-11 04:01:00    2017-03-11 04:01:00
73157    27151    506    2017-03-11 12:39:00    2017-03-11 12:39:00
73158    27152    956    2017-03-11 01:16:00    2017-03-11 01:16:00
73159    27152    910    2017-03-11 21:36:00    2017-03-11 21:36:00
73160    27152    873    2017-03-11 08:42:00    2017-03-11 08:42:00
73161    27152    823    2017-03-11 17:55:00    2017-03-11 17:55:00
73162    27152    891    2017-03-11 22:58:00    2017-03-11 22:58:00
73163    27153    852    2017-03-11 04:17:00    2017-03-11 04:17:00
73164    27153    854    2017-03-11 01:35:00    2017-03-11 01:35:00
73165    27153    813    2017-03-11 06:34:00    2017-03-11 06:34:00
73166    27153    706    2017-03-11 19:40:00    2017-03-11 19:40:00
73167    27153    577    2017-03-11 16:50:00    2017-03-11 16:50:00
73168    27154    652    2017-03-11 04:39:00    2017-03-11 04:39:00
73169    27154    588    2017-03-11 21:29:00    2017-03-11 21:29:00
73170    27154    898    2017-03-11 03:41:00    2017-03-11 03:41:00
73171    27154    697    2017-03-11 20:50:00    2017-03-11 20:50:00
73172    27154    876    2017-03-11 03:36:00    2017-03-11 03:36:00
73173    27155    488    2017-03-11 03:49:00    2017-03-11 03:49:00
73174    27155    771    2017-03-11 17:19:00    2017-03-11 17:19:00
73175    27155    880    2017-03-11 19:15:00    2017-03-11 19:15:00
73176    27155    931    2017-03-11 15:10:00    2017-03-11 15:10:00
73177    27155    866    2017-03-11 19:18:00    2017-03-11 19:18:00
73178    27156    547    2017-03-11 09:43:00    2017-03-11 09:43:00
73179    27156    482    2017-03-11 02:41:00    2017-03-11 02:41:00
73180    27156    577    2017-03-11 13:02:00    2017-03-11 13:02:00
73181    27156    550    2017-03-11 06:36:00    2017-03-11 06:36:00
73182    27156    923    2017-03-11 04:47:00    2017-03-11 04:47:00
73183    27157    743    2017-03-11 01:48:00    2017-03-11 01:48:00
73184    27157    600    2017-03-11 23:15:00    2017-03-11 23:15:00
73185    27157    766    2017-03-11 10:51:00    2017-03-11 10:51:00
73186    27157    955    2017-03-11 12:43:00    2017-03-11 12:43:00
73187    27157    563    2017-03-11 07:04:00    2017-03-11 07:04:00
73188    27158    633    2017-03-12 12:01:00    2017-03-12 12:01:00
73189    27158    951    2017-03-12 15:14:00    2017-03-12 15:14:00
73190    27158    749    2017-03-12 03:12:00    2017-03-12 03:12:00
73191    27158    730    2017-03-12 01:05:00    2017-03-12 01:05:00
73192    27158    958    2017-03-12 02:30:00    2017-03-12 02:30:00
73193    27159    799    2017-03-12 11:35:00    2017-03-12 11:35:00
73194    27159    930    2017-03-12 15:05:00    2017-03-12 15:05:00
73195    27159    713    2017-03-12 16:21:00    2017-03-12 16:21:00
73196    27159    910    2017-03-12 05:39:00    2017-03-12 05:39:00
73197    27159    663    2017-03-12 21:10:00    2017-03-12 21:10:00
73198    27160    921    2017-03-12 21:36:00    2017-03-12 21:36:00
73199    27160    641    2017-03-12 23:19:00    2017-03-12 23:19:00
73200    27160    607    2017-03-12 16:13:00    2017-03-12 16:13:00
73201    27160    621    2017-03-12 22:14:00    2017-03-12 22:14:00
73202    27160    599    2017-03-12 15:26:00    2017-03-12 15:26:00
73203    27161    843    2017-03-12 03:14:00    2017-03-12 03:14:00
73204    27161    851    2017-03-12 14:43:00    2017-03-12 14:43:00
73205    27161    700    2017-03-12 13:12:00    2017-03-12 13:12:00
73206    27161    813    2017-03-12 10:17:00    2017-03-12 10:17:00
73207    27161    485    2017-03-12 02:32:00    2017-03-12 02:32:00
73208    27162    785    2017-03-12 09:19:00    2017-03-12 09:19:00
73209    27162    598    2017-03-12 06:40:00    2017-03-12 06:40:00
73210    27162    871    2017-03-12 04:29:00    2017-03-12 04:29:00
73211    27162    913    2017-03-12 10:20:00    2017-03-12 10:20:00
73212    27162    798    2017-03-12 12:03:00    2017-03-12 12:03:00
73213    27163    903    2017-03-12 11:34:00    2017-03-12 11:34:00
73214    27163    493    2017-03-12 15:44:00    2017-03-12 15:44:00
73215    27163    809    2017-03-12 15:08:00    2017-03-12 15:08:00
73216    27163    625    2017-03-12 06:21:00    2017-03-12 06:21:00
73217    27163    924    2017-03-12 16:15:00    2017-03-12 16:15:00
73218    27164    909    2017-03-12 10:27:00    2017-03-12 10:27:00
73219    27164    560    2017-03-12 12:36:00    2017-03-12 12:36:00
73220    27164    632    2017-03-12 14:53:00    2017-03-12 14:53:00
73221    27164    799    2017-03-12 13:54:00    2017-03-12 13:54:00
73222    27164    667    2017-03-12 11:53:00    2017-03-12 11:53:00
73223    27165    933    2017-03-12 01:38:00    2017-03-12 01:38:00
73224    27165    743    2017-03-12 03:38:00    2017-03-12 03:38:00
73225    27165    777    2017-03-12 03:10:00    2017-03-12 03:10:00
73226    27165    703    2017-03-12 09:17:00    2017-03-12 09:17:00
73227    27165    924    2017-03-12 03:09:00    2017-03-12 03:09:00
73228    27166    723    2017-03-12 04:50:00    2017-03-12 04:50:00
73229    27166    620    2017-03-12 12:15:00    2017-03-12 12:15:00
73230    27166    759    2017-03-12 23:36:00    2017-03-12 23:36:00
73231    27166    518    2017-03-12 08:07:00    2017-03-12 08:07:00
73232    27166    661    2017-03-12 03:25:00    2017-03-12 03:25:00
73233    27167    928    2017-03-12 13:07:00    2017-03-12 13:07:00
73234    27167    636    2017-03-12 23:43:00    2017-03-12 23:43:00
73235    27167    929    2017-03-12 09:15:00    2017-03-12 09:15:00
73236    27167    787    2017-03-12 08:08:00    2017-03-12 08:08:00
73237    27167    522    2017-03-12 20:18:00    2017-03-12 20:18:00
73238    27168    919    2017-03-12 13:30:00    2017-03-12 13:30:00
73239    27168    609    2017-03-12 05:42:00    2017-03-12 05:42:00
73240    27168    707    2017-03-12 17:05:00    2017-03-12 17:05:00
73241    27168    574    2017-03-12 08:07:00    2017-03-12 08:07:00
73242    27168    740    2017-03-12 05:37:00    2017-03-12 05:37:00
73243    27169    700    2017-03-12 17:06:00    2017-03-12 17:06:00
73244    27169    604    2017-03-12 18:23:00    2017-03-12 18:23:00
73245    27169    795    2017-03-12 07:03:00    2017-03-12 07:03:00
73246    27169    652    2017-03-12 03:45:00    2017-03-12 03:45:00
73247    27169    608    2017-03-12 11:28:00    2017-03-12 11:28:00
73248    27170    626    2017-03-12 13:50:00    2017-03-12 13:50:00
73249    27170    484    2017-03-12 06:14:00    2017-03-12 06:14:00
73250    27170    583    2017-03-12 20:45:00    2017-03-12 20:45:00
73251    27170    561    2017-03-12 12:55:00    2017-03-12 12:55:00
73252    27170    547    2017-03-12 11:10:00    2017-03-12 11:10:00
73253    27171    466    2017-03-12 21:00:00    2017-03-12 21:00:00
73254    27171    722    2017-03-12 23:04:00    2017-03-12 23:04:00
73255    27171    871    2017-03-12 04:25:00    2017-03-12 04:25:00
73256    27171    539    2017-03-12 07:40:00    2017-03-12 07:40:00
73257    27171    706    2017-03-12 09:38:00    2017-03-12 09:38:00
73258    27172    801    2017-03-12 10:05:00    2017-03-12 10:05:00
73259    27172    492    2017-03-12 08:56:00    2017-03-12 08:56:00
73260    27172    803    2017-03-12 19:25:00    2017-03-12 19:25:00
73261    27172    785    2017-03-12 13:31:00    2017-03-12 13:31:00
73262    27172    869    2017-03-12 01:42:00    2017-03-12 01:42:00
73263    27173    815    2017-03-12 07:58:00    2017-03-12 07:58:00
73264    27173    869    2017-03-12 06:11:00    2017-03-12 06:11:00
73265    27173    551    2017-03-12 03:57:00    2017-03-12 03:57:00
73266    27173    468    2017-03-12 10:18:00    2017-03-12 10:18:00
73267    27173    532    2017-03-12 19:15:00    2017-03-12 19:15:00
73268    27174    863    2017-03-12 08:10:00    2017-03-12 08:10:00
73269    27174    504    2017-03-12 06:27:00    2017-03-12 06:27:00
73270    27174    719    2017-03-12 23:04:00    2017-03-12 23:04:00
73271    27174    809    2017-03-12 19:22:00    2017-03-12 19:22:00
73272    27174    883    2017-03-12 02:36:00    2017-03-12 02:36:00
73273    27175    720    2017-03-13 20:52:00    2017-03-13 20:52:00
73274    27175    793    2017-03-13 09:14:00    2017-03-13 09:14:00
73275    27175    473    2017-03-13 19:09:00    2017-03-13 19:09:00
73276    27175    874    2017-03-13 10:01:00    2017-03-13 10:01:00
73277    27175    588    2017-03-13 15:30:00    2017-03-13 15:30:00
73278    27176    498    2017-03-13 20:56:00    2017-03-13 20:56:00
73279    27176    841    2017-03-13 19:17:00    2017-03-13 19:17:00
73280    27176    940    2017-03-13 19:27:00    2017-03-13 19:27:00
73281    27176    728    2017-03-13 10:23:00    2017-03-13 10:23:00
73282    27176    960    2017-03-13 17:25:00    2017-03-13 17:25:00
73283    27177    836    2017-03-13 17:05:00    2017-03-13 17:05:00
73284    27177    658    2017-03-13 01:09:00    2017-03-13 01:09:00
73285    27177    768    2017-03-13 08:44:00    2017-03-13 08:44:00
73286    27177    805    2017-03-13 01:09:00    2017-03-13 01:09:00
73287    27177    588    2017-03-13 07:51:00    2017-03-13 07:51:00
73288    27178    476    2017-03-13 16:29:00    2017-03-13 16:29:00
73289    27178    871    2017-03-13 08:58:00    2017-03-13 08:58:00
73290    27178    493    2017-03-13 19:54:00    2017-03-13 19:54:00
73291    27178    920    2017-03-13 10:59:00    2017-03-13 10:59:00
73292    27178    535    2017-03-13 19:44:00    2017-03-13 19:44:00
73293    27179    512    2017-03-13 08:20:00    2017-03-13 08:20:00
73294    27179    838    2017-03-13 20:24:00    2017-03-13 20:24:00
73295    27179    612    2017-03-13 12:21:00    2017-03-13 12:21:00
73296    27179    492    2017-03-13 21:09:00    2017-03-13 21:09:00
73297    27179    755    2017-03-13 05:00:00    2017-03-13 05:00:00
73298    27180    929    2017-03-13 22:46:00    2017-03-13 22:46:00
73299    27180    902    2017-03-13 17:59:00    2017-03-13 17:59:00
73300    27180    914    2017-03-13 12:21:00    2017-03-13 12:21:00
73301    27180    784    2017-03-13 08:59:00    2017-03-13 08:59:00
73302    27180    915    2017-03-13 17:39:00    2017-03-13 17:39:00
73303    27181    782    2017-03-13 12:42:00    2017-03-13 12:42:00
73304    27181    789    2017-03-13 10:47:00    2017-03-13 10:47:00
73305    27181    637    2017-03-13 12:23:00    2017-03-13 12:23:00
73306    27181    874    2017-03-13 21:12:00    2017-03-13 21:12:00
73307    27181    851    2017-03-13 05:39:00    2017-03-13 05:39:00
73308    27182    677    2017-03-13 15:43:00    2017-03-13 15:43:00
73309    27182    631    2017-03-13 01:50:00    2017-03-13 01:50:00
73310    27182    961    2017-03-13 02:27:00    2017-03-13 02:27:00
73311    27182    524    2017-03-13 08:41:00    2017-03-13 08:41:00
73312    27182    592    2017-03-13 19:11:00    2017-03-13 19:11:00
73313    27183    777    2017-03-13 19:57:00    2017-03-13 19:57:00
73314    27183    958    2017-03-13 07:19:00    2017-03-13 07:19:00
73315    27183    841    2017-03-13 10:04:00    2017-03-13 10:04:00
73316    27183    705    2017-03-13 02:48:00    2017-03-13 02:48:00
73317    27183    894    2017-03-13 12:05:00    2017-03-13 12:05:00
73318    27184    677    2017-03-13 02:06:00    2017-03-13 02:06:00
73319    27184    930    2017-03-13 05:37:00    2017-03-13 05:37:00
73320    27184    910    2017-03-13 01:20:00    2017-03-13 01:20:00
73321    27184    759    2017-03-13 08:06:00    2017-03-13 08:06:00
73322    27184    709    2017-03-13 03:44:00    2017-03-13 03:44:00
73323    27185    596    2017-03-13 09:05:00    2017-03-13 09:05:00
73324    27185    905    2017-03-13 10:29:00    2017-03-13 10:29:00
73325    27185    912    2017-03-13 03:25:00    2017-03-13 03:25:00
73326    27185    538    2017-03-13 02:13:00    2017-03-13 02:13:00
73327    27185    503    2017-03-13 13:20:00    2017-03-13 13:20:00
73328    27186    870    2017-03-13 02:35:00    2017-03-13 02:35:00
73329    27186    584    2017-03-13 05:26:00    2017-03-13 05:26:00
73330    27186    720    2017-03-13 07:49:00    2017-03-13 07:49:00
73331    27186    740    2017-03-13 10:07:00    2017-03-13 10:07:00
73332    27186    569    2017-03-13 08:10:00    2017-03-13 08:10:00
73333    27187    536    2017-03-13 03:57:00    2017-03-13 03:57:00
73334    27187    736    2017-03-13 20:21:00    2017-03-13 20:21:00
73335    27187    805    2017-03-13 05:16:00    2017-03-13 05:16:00
73336    27187    821    2017-03-13 19:13:00    2017-03-13 19:13:00
73337    27187    634    2017-03-13 01:26:00    2017-03-13 01:26:00
73338    27188    642    2017-03-13 04:30:00    2017-03-13 04:30:00
73339    27188    853    2017-03-13 04:08:00    2017-03-13 04:08:00
73340    27188    853    2017-03-13 10:46:00    2017-03-13 10:46:00
73341    27188    879    2017-03-13 02:34:00    2017-03-13 02:34:00
73342    27188    946    2017-03-13 01:41:00    2017-03-13 01:41:00
73343    27189    602    2017-03-13 19:58:00    2017-03-13 19:58:00
73344    27189    737    2017-03-13 14:21:00    2017-03-13 14:21:00
73345    27189    815    2017-03-13 20:28:00    2017-03-13 20:28:00
73346    27189    851    2017-03-13 05:01:00    2017-03-13 05:01:00
73347    27189    703    2017-03-13 02:38:00    2017-03-13 02:38:00
73348    27190    668    2017-03-13 07:07:00    2017-03-13 07:07:00
73349    27190    475    2017-03-13 06:27:00    2017-03-13 06:27:00
73350    27190    807    2017-03-13 09:26:00    2017-03-13 09:26:00
73351    27190    745    2017-03-13 21:53:00    2017-03-13 21:53:00
73352    27190    562    2017-03-13 20:25:00    2017-03-13 20:25:00
73353    27191    576    2017-03-13 11:00:00    2017-03-13 11:00:00
73354    27191    510    2017-03-13 18:11:00    2017-03-13 18:11:00
73355    27191    923    2017-03-13 02:07:00    2017-03-13 02:07:00
73356    27191    525    2017-03-13 14:30:00    2017-03-13 14:30:00
73357    27191    887    2017-03-13 09:26:00    2017-03-13 09:26:00
73358    27192    609    2017-03-13 03:21:00    2017-03-13 03:21:00
73359    27192    765    2017-03-13 08:01:00    2017-03-13 08:01:00
73360    27192    565    2017-03-13 03:47:00    2017-03-13 03:47:00
73361    27192    870    2017-03-13 13:13:00    2017-03-13 13:13:00
73362    27192    731    2017-03-13 19:35:00    2017-03-13 19:35:00
73363    27193    526    2017-03-13 03:50:00    2017-03-13 03:50:00
73364    27193    579    2017-03-13 08:11:00    2017-03-13 08:11:00
73365    27193    664    2017-03-13 14:04:00    2017-03-13 14:04:00
73366    27193    619    2017-03-13 23:35:00    2017-03-13 23:35:00
73367    27193    468    2017-03-13 21:27:00    2017-03-13 21:27:00
73368    27194    695    2017-03-13 08:45:00    2017-03-13 08:45:00
73369    27194    725    2017-03-13 21:55:00    2017-03-13 21:55:00
73370    27194    644    2017-03-13 08:51:00    2017-03-13 08:51:00
73371    27194    857    2017-03-13 19:21:00    2017-03-13 19:21:00
73372    27194    676    2017-03-13 07:33:00    2017-03-13 07:33:00
73373    27195    739    2017-03-13 04:24:00    2017-03-13 04:24:00
73374    27195    620    2017-03-13 17:57:00    2017-03-13 17:57:00
73375    27195    954    2017-03-13 21:25:00    2017-03-13 21:25:00
73376    27195    751    2017-03-13 12:31:00    2017-03-13 12:31:00
73377    27195    742    2017-03-13 16:37:00    2017-03-13 16:37:00
73378    27196    496    2017-03-13 03:56:00    2017-03-13 03:56:00
73379    27196    491    2017-03-13 22:55:00    2017-03-13 22:55:00
73380    27196    657    2017-03-13 05:01:00    2017-03-13 05:01:00
73381    27196    731    2017-03-13 22:58:00    2017-03-13 22:58:00
73382    27196    501    2017-03-13 11:00:00    2017-03-13 11:00:00
73383    27197    520    2017-03-13 17:13:00    2017-03-13 17:13:00
73384    27197    711    2017-03-13 13:30:00    2017-03-13 13:30:00
73385    27197    807    2017-03-13 13:39:00    2017-03-13 13:39:00
73386    27197    901    2017-03-13 02:14:00    2017-03-13 02:14:00
73387    27197    691    2017-03-13 17:31:00    2017-03-13 17:31:00
73388    27198    563    2017-03-13 02:51:00    2017-03-13 02:51:00
73389    27198    855    2017-03-13 04:17:00    2017-03-13 04:17:00
73390    27198    961    2017-03-13 04:08:00    2017-03-13 04:08:00
73391    27198    793    2017-03-13 19:12:00    2017-03-13 19:12:00
73392    27198    907    2017-03-13 10:43:00    2017-03-13 10:43:00
73393    27199    701    2017-03-13 12:25:00    2017-03-13 12:25:00
73394    27199    464    2017-03-13 13:03:00    2017-03-13 13:03:00
73395    27199    777    2017-03-13 05:24:00    2017-03-13 05:24:00
73396    27199    515    2017-03-13 04:40:00    2017-03-13 04:40:00
73397    27199    700    2017-03-13 19:09:00    2017-03-13 19:09:00
73398    27200    706    2017-03-13 20:06:00    2017-03-13 20:06:00
73399    27200    638    2017-03-13 11:40:00    2017-03-13 11:40:00
73400    27200    697    2017-03-13 14:00:00    2017-03-13 14:00:00
73401    27200    896    2017-03-13 17:05:00    2017-03-13 17:05:00
73402    27200    700    2017-03-13 01:22:00    2017-03-13 01:22:00
73403    27201    487    2017-03-13 09:41:00    2017-03-13 09:41:00
73404    27201    930    2017-03-13 05:42:00    2017-03-13 05:42:00
73405    27201    942    2017-03-13 07:31:00    2017-03-13 07:31:00
73406    27201    933    2017-03-13 06:36:00    2017-03-13 06:36:00
73407    27201    671    2017-03-13 20:20:00    2017-03-13 20:20:00
73408    27202    784    2017-03-13 11:00:00    2017-03-13 11:00:00
73409    27202    603    2017-03-13 06:35:00    2017-03-13 06:35:00
73410    27202    493    2017-03-13 05:01:00    2017-03-13 05:01:00
73411    27202    621    2017-03-13 04:32:00    2017-03-13 04:32:00
73412    27202    496    2017-03-13 01:49:00    2017-03-13 01:49:00
73413    27203    609    2017-03-13 10:22:00    2017-03-13 10:22:00
73414    27203    463    2017-03-13 22:37:00    2017-03-13 22:37:00
73415    27203    753    2017-03-13 18:43:00    2017-03-13 18:43:00
73416    27203    942    2017-03-13 10:07:00    2017-03-13 10:07:00
73417    27203    630    2017-03-13 19:11:00    2017-03-13 19:11:00
73418    27204    913    2017-03-13 04:49:00    2017-03-13 04:49:00
73419    27204    775    2017-03-13 12:21:00    2017-03-13 12:21:00
73420    27204    728    2017-03-13 20:06:00    2017-03-13 20:06:00
73421    27204    856    2017-03-13 20:30:00    2017-03-13 20:30:00
73422    27204    834    2017-03-13 09:02:00    2017-03-13 09:02:00
73423    27205    846    2017-03-13 07:27:00    2017-03-13 07:27:00
73424    27205    960    2017-03-13 12:33:00    2017-03-13 12:33:00
73425    27205    920    2017-03-13 18:33:00    2017-03-13 18:33:00
73426    27205    551    2017-03-13 19:22:00    2017-03-13 19:22:00
73427    27205    774    2017-03-13 05:16:00    2017-03-13 05:16:00
73428    27206    852    2017-03-13 19:09:00    2017-03-13 19:09:00
73429    27206    792    2017-03-13 16:14:00    2017-03-13 16:14:00
73430    27206    512    2017-03-13 03:36:00    2017-03-13 03:36:00
73431    27206    703    2017-03-13 10:01:00    2017-03-13 10:01:00
73432    27206    490    2017-03-13 20:04:00    2017-03-13 20:04:00
73433    27207    475    2017-03-13 15:01:00    2017-03-13 15:01:00
73434    27207    748    2017-03-13 09:54:00    2017-03-13 09:54:00
73435    27207    732    2017-03-13 10:59:00    2017-03-13 10:59:00
73436    27207    531    2017-03-13 12:02:00    2017-03-13 12:02:00
73437    27207    534    2017-03-13 09:26:00    2017-03-13 09:26:00
73438    27208    809    2017-03-13 10:17:00    2017-03-13 10:17:00
73439    27208    823    2017-03-13 11:04:00    2017-03-13 11:04:00
73440    27208    834    2017-03-13 19:56:00    2017-03-13 19:56:00
73441    27208    601    2017-03-13 09:00:00    2017-03-13 09:00:00
73442    27208    716    2017-03-13 05:38:00    2017-03-13 05:38:00
73443    27209    918    2017-03-13 21:20:00    2017-03-13 21:20:00
73444    27209    828    2017-03-13 08:58:00    2017-03-13 08:58:00
73445    27209    923    2017-03-13 07:42:00    2017-03-13 07:42:00
73446    27209    725    2017-03-13 03:16:00    2017-03-13 03:16:00
73447    27209    828    2017-03-13 04:03:00    2017-03-13 04:03:00
73448    27210    565    2017-03-13 10:53:00    2017-03-13 10:53:00
73449    27210    670    2017-03-13 03:11:00    2017-03-13 03:11:00
73450    27210    500    2017-03-13 20:40:00    2017-03-13 20:40:00
73451    27210    872    2017-03-13 05:29:00    2017-03-13 05:29:00
73452    27210    767    2017-03-13 10:53:00    2017-03-13 10:53:00
73453    27211    709    2017-03-13 09:46:00    2017-03-13 09:46:00
73454    27211    713    2017-03-13 01:10:00    2017-03-13 01:10:00
73455    27211    878    2017-03-13 09:02:00    2017-03-13 09:02:00
73456    27211    550    2017-03-13 23:35:00    2017-03-13 23:35:00
73457    27211    879    2017-03-13 11:32:00    2017-03-13 11:32:00
73458    27212    804    2017-03-13 20:19:00    2017-03-13 20:19:00
73459    27212    598    2017-03-13 04:18:00    2017-03-13 04:18:00
73460    27212    610    2017-03-13 15:38:00    2017-03-13 15:38:00
73461    27212    620    2017-03-13 05:24:00    2017-03-13 05:24:00
73462    27212    643    2017-03-13 08:52:00    2017-03-13 08:52:00
73463    27213    646    2017-03-13 05:39:00    2017-03-13 05:39:00
73464    27213    688    2017-03-13 18:30:00    2017-03-13 18:30:00
73465    27213    644    2017-03-13 18:13:00    2017-03-13 18:13:00
73466    27213    938    2017-03-13 12:52:00    2017-03-13 12:52:00
73467    27213    693    2017-03-13 10:08:00    2017-03-13 10:08:00
73468    27214    469    2017-03-13 18:23:00    2017-03-13 18:23:00
73469    27214    849    2017-03-13 06:26:00    2017-03-13 06:26:00
73470    27214    607    2017-03-13 14:02:00    2017-03-13 14:02:00
73471    27214    763    2017-03-13 12:56:00    2017-03-13 12:56:00
73472    27214    574    2017-03-13 21:52:00    2017-03-13 21:52:00
73473    27215    547    2017-03-13 14:41:00    2017-03-13 14:41:00
73474    27215    663    2017-03-13 02:34:00    2017-03-13 02:34:00
73475    27215    614    2017-03-13 12:15:00    2017-03-13 12:15:00
73476    27215    820    2017-03-13 11:49:00    2017-03-13 11:49:00
73477    27215    785    2017-03-13 09:08:00    2017-03-13 09:08:00
73478    27216    602    2017-03-13 07:57:00    2017-03-13 07:57:00
73479    27216    538    2017-03-13 02:56:00    2017-03-13 02:56:00
73480    27216    731    2017-03-13 11:56:00    2017-03-13 11:56:00
73481    27216    806    2017-03-13 14:01:00    2017-03-13 14:01:00
73482    27216    943    2017-03-13 22:26:00    2017-03-13 22:26:00
73483    27217    880    2017-03-13 12:48:00    2017-03-13 12:48:00
73484    27217    618    2017-03-13 09:06:00    2017-03-13 09:06:00
73485    27217    525    2017-03-13 02:10:00    2017-03-13 02:10:00
73486    27217    844    2017-03-13 22:17:00    2017-03-13 22:17:00
73487    27217    624    2017-03-13 21:35:00    2017-03-13 21:35:00
73488    27218    911    2017-03-13 07:14:00    2017-03-13 07:14:00
73489    27218    929    2017-03-13 11:41:00    2017-03-13 11:41:00
73490    27218    878    2017-03-13 20:33:00    2017-03-13 20:33:00
73491    27218    518    2017-03-13 03:02:00    2017-03-13 03:02:00
73492    27218    839    2017-03-13 23:12:00    2017-03-13 23:12:00
73493    27219    783    2017-03-13 03:36:00    2017-03-13 03:36:00
73494    27219    850    2017-03-13 11:58:00    2017-03-13 11:58:00
73495    27219    784    2017-03-13 09:49:00    2017-03-13 09:49:00
73496    27219    547    2017-03-13 18:25:00    2017-03-13 18:25:00
73497    27219    941    2017-03-13 17:06:00    2017-03-13 17:06:00
73498    27220    703    2017-03-13 14:00:00    2017-03-13 14:00:00
73499    27220    799    2017-03-13 13:33:00    2017-03-13 13:33:00
73500    27220    785    2017-03-13 02:19:00    2017-03-13 02:19:00
73501    27220    782    2017-03-13 04:51:00    2017-03-13 04:51:00
73502    27220    558    2017-03-13 13:56:00    2017-03-13 13:56:00
73503    27221    941    2017-03-13 21:16:00    2017-03-13 21:16:00
73504    27221    634    2017-03-13 04:58:00    2017-03-13 04:58:00
73505    27221    634    2017-03-13 09:24:00    2017-03-13 09:24:00
73506    27221    916    2017-03-13 15:31:00    2017-03-13 15:31:00
73507    27221    714    2017-03-13 15:27:00    2017-03-13 15:27:00
73508    27222    857    2017-03-13 23:57:00    2017-03-13 23:57:00
73509    27222    464    2017-03-13 07:55:00    2017-03-13 07:55:00
73510    27222    833    2017-03-13 16:21:00    2017-03-13 16:21:00
73511    27222    626    2017-03-13 01:18:00    2017-03-13 01:18:00
73512    27222    732    2017-03-13 08:28:00    2017-03-13 08:28:00
73513    27223    755    2017-03-13 15:56:00    2017-03-13 15:56:00
73514    27223    544    2017-03-13 03:51:00    2017-03-13 03:51:00
73515    27223    654    2017-03-13 18:23:00    2017-03-13 18:23:00
73516    27223    726    2017-03-13 20:42:00    2017-03-13 20:42:00
73517    27223    879    2017-03-13 08:26:00    2017-03-13 08:26:00
73518    27224    488    2017-03-13 21:36:00    2017-03-13 21:36:00
73519    27224    774    2017-03-13 08:23:00    2017-03-13 08:23:00
73520    27224    823    2017-03-13 22:29:00    2017-03-13 22:29:00
73521    27224    847    2017-03-13 14:41:00    2017-03-13 14:41:00
73522    27224    923    2017-03-13 11:45:00    2017-03-13 11:45:00
73523    27225    749    2017-03-13 01:14:00    2017-03-13 01:14:00
73524    27225    806    2017-03-13 13:26:00    2017-03-13 13:26:00
73525    27225    492    2017-03-13 07:17:00    2017-03-13 07:17:00
73526    27225    598    2017-03-13 10:38:00    2017-03-13 10:38:00
73527    27225    515    2017-03-13 20:32:00    2017-03-13 20:32:00
73528    27226    565    2017-03-13 07:41:00    2017-03-13 07:41:00
73529    27226    676    2017-03-13 20:23:00    2017-03-13 20:23:00
73530    27226    673    2017-03-13 04:14:00    2017-03-13 04:14:00
73531    27226    945    2017-03-13 06:51:00    2017-03-13 06:51:00
73532    27226    766    2017-03-13 04:51:00    2017-03-13 04:51:00
73533    27227    910    2017-03-13 16:41:00    2017-03-13 16:41:00
73534    27227    920    2017-03-13 10:55:00    2017-03-13 10:55:00
73535    27227    572    2017-03-13 12:28:00    2017-03-13 12:28:00
73536    27227    608    2017-03-13 01:50:00    2017-03-13 01:50:00
73537    27227    861    2017-03-13 13:22:00    2017-03-13 13:22:00
73538    27228    511    2017-03-13 07:26:00    2017-03-13 07:26:00
73539    27228    587    2017-03-13 14:40:00    2017-03-13 14:40:00
73540    27228    607    2017-03-13 20:20:00    2017-03-13 20:20:00
73541    27228    824    2017-03-13 18:42:00    2017-03-13 18:42:00
73542    27228    779    2017-03-13 14:20:00    2017-03-13 14:20:00
73543    27229    780    2017-03-13 07:42:00    2017-03-13 07:42:00
73544    27229    849    2017-03-13 01:31:00    2017-03-13 01:31:00
73545    27229    597    2017-03-13 13:00:00    2017-03-13 13:00:00
73546    27229    937    2017-03-13 16:49:00    2017-03-13 16:49:00
73547    27229    620    2017-03-13 04:43:00    2017-03-13 04:43:00
73548    27230    680    2017-03-13 20:11:00    2017-03-13 20:11:00
73549    27230    718    2017-03-13 23:37:00    2017-03-13 23:37:00
73550    27230    929    2017-03-13 13:08:00    2017-03-13 13:08:00
73551    27230    570    2017-03-13 07:19:00    2017-03-13 07:19:00
73552    27230    485    2017-03-13 05:35:00    2017-03-13 05:35:00
73553    27231    800    2017-03-13 02:46:00    2017-03-13 02:46:00
73554    27231    587    2017-03-13 09:25:00    2017-03-13 09:25:00
73555    27231    808    2017-03-13 23:00:00    2017-03-13 23:00:00
73556    27231    570    2017-03-13 09:25:00    2017-03-13 09:25:00
73557    27231    682    2017-03-13 02:07:00    2017-03-13 02:07:00
73558    27232    631    2017-03-13 08:06:00    2017-03-13 08:06:00
73559    27232    819    2017-03-13 06:52:00    2017-03-13 06:52:00
73560    27232    704    2017-03-13 08:27:00    2017-03-13 08:27:00
73561    27232    689    2017-03-13 01:13:00    2017-03-13 01:13:00
73562    27232    668    2017-03-13 11:10:00    2017-03-13 11:10:00
73563    27233    728    2017-03-13 02:57:00    2017-03-13 02:57:00
73564    27233    959    2017-03-13 04:44:00    2017-03-13 04:44:00
73565    27233    775    2017-03-13 11:32:00    2017-03-13 11:32:00
73566    27233    619    2017-03-13 16:15:00    2017-03-13 16:15:00
73567    27233    826    2017-03-13 23:15:00    2017-03-13 23:15:00
73568    27234    864    2017-03-13 19:53:00    2017-03-13 19:53:00
73569    27234    604    2017-03-13 15:41:00    2017-03-13 15:41:00
73570    27234    669    2017-03-13 21:24:00    2017-03-13 21:24:00
73571    27234    679    2017-03-13 20:23:00    2017-03-13 20:23:00
73572    27234    715    2017-03-13 14:08:00    2017-03-13 14:08:00
73573    27235    853    2017-03-13 08:34:00    2017-03-13 08:34:00
73574    27235    759    2017-03-13 20:50:00    2017-03-13 20:50:00
73575    27235    922    2017-03-13 11:27:00    2017-03-13 11:27:00
73576    27235    690    2017-03-13 10:09:00    2017-03-13 10:09:00
73577    27235    601    2017-03-13 14:23:00    2017-03-13 14:23:00
73578    27236    691    2017-03-13 05:44:00    2017-03-13 05:44:00
73579    27236    788    2017-03-13 11:59:00    2017-03-13 11:59:00
73580    27236    488    2017-03-13 14:33:00    2017-03-13 14:33:00
73581    27236    960    2017-03-13 21:17:00    2017-03-13 21:17:00
73582    27236    814    2017-03-13 13:03:00    2017-03-13 13:03:00
73583    27237    939    2017-03-13 07:15:00    2017-03-13 07:15:00
73584    27237    802    2017-03-13 18:37:00    2017-03-13 18:37:00
73585    27237    546    2017-03-13 09:38:00    2017-03-13 09:38:00
73586    27237    861    2017-03-13 07:23:00    2017-03-13 07:23:00
73587    27237    643    2017-03-13 16:52:00    2017-03-13 16:52:00
73588    27238    925    2017-03-13 08:32:00    2017-03-13 08:32:00
73589    27238    946    2017-03-13 19:25:00    2017-03-13 19:25:00
73590    27238    540    2017-03-13 09:36:00    2017-03-13 09:36:00
73591    27238    740    2017-03-13 03:33:00    2017-03-13 03:33:00
73592    27238    847    2017-03-13 10:12:00    2017-03-13 10:12:00
73593    27239    815    2017-03-13 23:12:00    2017-03-13 23:12:00
73594    27239    606    2017-03-13 11:39:00    2017-03-13 11:39:00
73595    27239    920    2017-03-13 18:50:00    2017-03-13 18:50:00
73596    27239    595    2017-03-13 03:09:00    2017-03-13 03:09:00
73597    27239    488    2017-03-13 22:56:00    2017-03-13 22:56:00
73598    27240    801    2017-03-14 13:23:00    2017-03-14 13:23:00
73599    27240    948    2017-03-14 11:45:00    2017-03-14 11:45:00
73600    27240    847    2017-03-14 23:39:00    2017-03-14 23:39:00
73601    27240    940    2017-03-14 07:27:00    2017-03-14 07:27:00
73602    27240    530    2017-03-14 05:05:00    2017-03-14 05:05:00
73603    27241    827    2017-03-14 12:01:00    2017-03-14 12:01:00
73604    27241    655    2017-03-14 17:44:00    2017-03-14 17:44:00
73605    27241    520    2017-03-14 22:29:00    2017-03-14 22:29:00
73606    27241    956    2017-03-14 06:53:00    2017-03-14 06:53:00
73607    27241    588    2017-03-14 07:11:00    2017-03-14 07:11:00
73608    27242    546    2017-03-14 08:45:00    2017-03-14 08:45:00
73609    27242    660    2017-03-14 22:15:00    2017-03-14 22:15:00
73610    27242    549    2017-03-14 04:48:00    2017-03-14 04:48:00
73611    27242    715    2017-03-14 01:45:00    2017-03-14 01:45:00
73612    27242    477    2017-03-14 21:53:00    2017-03-14 21:53:00
73613    27243    538    2017-03-14 02:02:00    2017-03-14 02:02:00
73614    27243    599    2017-03-14 09:57:00    2017-03-14 09:57:00
73615    27243    771    2017-03-14 22:41:00    2017-03-14 22:41:00
73617    27243    548    2017-03-14 19:56:00    2017-03-14 19:56:00
73618    27244    655    2017-03-14 07:55:00    2017-03-14 07:55:00
73619    27244    623    2017-03-14 20:52:00    2017-03-14 20:52:00
73620    27244    785    2017-03-14 14:47:00    2017-03-14 14:47:00
73621    27244    575    2017-03-14 08:28:00    2017-03-14 08:28:00
73622    27244    464    2017-03-14 23:10:00    2017-03-14 23:10:00
73623    27245    768    2017-03-14 02:41:00    2017-03-14 02:41:00
73624    27245    505    2017-03-14 10:43:00    2017-03-14 10:43:00
73625    27245    783    2017-03-14 06:15:00    2017-03-14 06:15:00
73626    27245    897    2017-03-14 23:40:00    2017-03-14 23:40:00
73627    27245    540    2017-03-14 01:13:00    2017-03-14 01:13:00
73628    27246    955    2017-03-14 14:14:00    2017-03-14 14:14:00
73629    27246    561    2017-03-14 17:43:00    2017-03-14 17:43:00
73630    27246    644    2017-03-14 14:13:00    2017-03-14 14:13:00
73631    27246    948    2017-03-14 11:08:00    2017-03-14 11:08:00
73632    27246    851    2017-03-14 21:13:00    2017-03-14 21:13:00
73633    27247    685    2017-03-14 02:23:00    2017-03-14 02:23:00
73634    27247    849    2017-03-14 02:03:00    2017-03-14 02:03:00
73635    27247    806    2017-03-14 11:02:00    2017-03-14 11:02:00
73636    27247    939    2017-03-14 08:37:00    2017-03-14 08:37:00
73637    27247    643    2017-03-14 16:49:00    2017-03-14 16:49:00
73638    27248    684    2017-03-14 14:32:00    2017-03-14 14:32:00
73639    27248    880    2017-03-14 10:40:00    2017-03-14 10:40:00
73640    27248    669    2017-03-14 20:35:00    2017-03-14 20:35:00
73641    27248    812    2017-03-14 23:32:00    2017-03-14 23:32:00
73642    27248    716    2017-03-14 19:02:00    2017-03-14 19:02:00
73643    27249    864    2017-03-14 22:25:00    2017-03-14 22:25:00
73644    27249    558    2017-03-14 12:05:00    2017-03-14 12:05:00
73645    27249    508    2017-03-14 19:56:00    2017-03-14 19:56:00
73646    27249    858    2017-03-14 09:43:00    2017-03-14 09:43:00
73647    27249    674    2017-03-14 13:00:00    2017-03-14 13:00:00
73648    27250    510    2017-03-14 21:29:00    2017-03-14 21:29:00
73649    27250    766    2017-03-14 17:55:00    2017-03-14 17:55:00
73650    27250    830    2017-03-14 11:22:00    2017-03-14 11:22:00
73651    27250    661    2017-03-14 05:26:00    2017-03-14 05:26:00
73652    27250    542    2017-03-14 11:40:00    2017-03-14 11:40:00
73653    27251    478    2017-03-14 06:06:00    2017-03-14 06:06:00
73654    27251    488    2017-03-14 21:37:00    2017-03-14 21:37:00
73655    27251    726    2017-03-14 22:10:00    2017-03-14 22:10:00
73656    27251    904    2017-03-14 09:07:00    2017-03-14 09:07:00
73657    27251    747    2017-03-14 11:04:00    2017-03-14 11:04:00
73658    27252    959    2017-03-14 01:22:00    2017-03-14 01:22:00
73659    27252    551    2017-03-14 22:42:00    2017-03-14 22:42:00
73660    27252    494    2017-03-14 03:40:00    2017-03-14 03:40:00
73661    27252    510    2017-03-14 11:19:00    2017-03-14 11:19:00
73662    27252    630    2017-03-14 10:40:00    2017-03-14 10:40:00
73663    27253    937    2017-03-14 04:30:00    2017-03-14 04:30:00
73664    27253    772    2017-03-14 01:00:00    2017-03-14 01:00:00
73665    27253    594    2017-03-14 10:16:00    2017-03-14 10:16:00
73666    27253    502    2017-03-14 17:08:00    2017-03-14 17:08:00
73667    27253    765    2017-03-14 10:00:00    2017-03-14 10:00:00
73668    27254    740    2017-03-14 06:20:00    2017-03-14 06:20:00
73669    27254    568    2017-03-14 18:48:00    2017-03-14 18:48:00
73670    27254    653    2017-03-14 22:23:00    2017-03-14 22:23:00
73671    27254    597    2017-03-14 20:10:00    2017-03-14 20:10:00
73672    27254    894    2017-03-14 05:42:00    2017-03-14 05:42:00
73673    27255    796    2017-03-14 13:18:00    2017-03-14 13:18:00
73674    27255    867    2017-03-14 19:05:00    2017-03-14 19:05:00
73675    27255    801    2017-03-14 14:12:00    2017-03-14 14:12:00
73676    27255    870    2017-03-14 02:27:00    2017-03-14 02:27:00
73677    27255    489    2017-03-14 10:05:00    2017-03-14 10:05:00
73678    27256    927    2017-03-14 17:04:00    2017-03-14 17:04:00
73679    27256    759    2017-03-14 20:35:00    2017-03-14 20:35:00
73680    27256    634    2017-03-14 21:38:00    2017-03-14 21:38:00
73681    27256    772    2017-03-14 22:00:00    2017-03-14 22:00:00
73682    27256    649    2017-03-14 01:17:00    2017-03-14 01:17:00
73683    27257    824    2017-03-14 15:27:00    2017-03-14 15:27:00
73684    27257    920    2017-03-14 14:50:00    2017-03-14 14:50:00
73685    27257    587    2017-03-14 15:46:00    2017-03-14 15:46:00
73686    27257    556    2017-03-14 22:42:00    2017-03-14 22:42:00
73687    27257    551    2017-03-14 13:12:00    2017-03-14 13:12:00
73688    27258    893    2017-03-14 08:42:00    2017-03-14 08:42:00
73689    27258    918    2017-03-14 04:22:00    2017-03-14 04:22:00
73690    27258    495    2017-03-14 09:36:00    2017-03-14 09:36:00
73691    27258    542    2017-03-14 15:04:00    2017-03-14 15:04:00
73692    27258    629    2017-03-14 11:12:00    2017-03-14 11:12:00
73693    27259    758    2017-03-14 09:06:00    2017-03-14 09:06:00
73694    27259    633    2017-03-14 21:18:00    2017-03-14 21:18:00
73695    27259    617    2017-03-14 21:14:00    2017-03-14 21:14:00
73696    27259    468    2017-03-14 20:08:00    2017-03-14 20:08:00
73697    27259    657    2017-03-14 15:54:00    2017-03-14 15:54:00
73698    27260    836    2017-03-14 19:22:00    2017-03-14 19:22:00
73699    27260    871    2017-03-14 16:31:00    2017-03-14 16:31:00
73700    27260    714    2017-03-14 05:29:00    2017-03-14 05:29:00
73701    27260    584    2017-03-14 20:45:00    2017-03-14 20:45:00
73702    27260    742    2017-03-14 06:21:00    2017-03-14 06:21:00
73703    27261    706    2017-03-14 03:05:00    2017-03-14 03:05:00
73704    27261    590    2017-03-14 01:26:00    2017-03-14 01:26:00
73705    27261    468    2017-03-14 04:12:00    2017-03-14 04:12:00
73706    27261    946    2017-03-14 07:25:00    2017-03-14 07:25:00
73707    27261    568    2017-03-14 19:25:00    2017-03-14 19:25:00
73708    27262    717    2017-03-14 12:54:00    2017-03-14 12:54:00
73709    27262    620    2017-03-14 02:44:00    2017-03-14 02:44:00
73710    27262    664    2017-03-14 07:55:00    2017-03-14 07:55:00
73711    27262    640    2017-03-14 04:14:00    2017-03-14 04:14:00
73712    27262    932    2017-03-14 22:58:00    2017-03-14 22:58:00
73713    27263    822    2017-03-14 01:20:00    2017-03-14 01:20:00
73714    27263    872    2017-03-14 22:43:00    2017-03-14 22:43:00
73715    27263    621    2017-03-14 07:01:00    2017-03-14 07:01:00
73716    27263    535    2017-03-14 03:19:00    2017-03-14 03:19:00
73717    27263    568    2017-03-14 16:56:00    2017-03-14 16:56:00
73718    27264    838    2017-03-14 01:00:00    2017-03-14 01:00:00
73719    27264    550    2017-03-14 23:34:00    2017-03-14 23:34:00
73720    27264    831    2017-03-14 05:03:00    2017-03-14 05:03:00
73721    27264    635    2017-03-14 14:56:00    2017-03-14 14:56:00
73722    27264    895    2017-03-14 01:39:00    2017-03-14 01:39:00
73723    27265    780    2017-03-14 04:35:00    2017-03-14 04:35:00
73724    27265    662    2017-03-14 06:54:00    2017-03-14 06:54:00
73725    27265    749    2017-03-14 06:24:00    2017-03-14 06:24:00
73726    27265    808    2017-03-14 05:15:00    2017-03-14 05:15:00
73727    27265    538    2017-03-14 12:42:00    2017-03-14 12:42:00
73728    27266    896    2017-03-14 17:15:00    2017-03-14 17:15:00
73729    27266    492    2017-03-14 16:43:00    2017-03-14 16:43:00
73730    27266    863    2017-03-14 05:04:00    2017-03-14 05:04:00
73731    27266    464    2017-03-14 23:39:00    2017-03-14 23:39:00
73732    27266    871    2017-03-14 12:00:00    2017-03-14 12:00:00
73733    27267    480    2017-03-14 11:17:00    2017-03-14 11:17:00
73734    27267    525    2017-03-14 11:54:00    2017-03-14 11:54:00
73735    27267    663    2017-03-14 07:57:00    2017-03-14 07:57:00
73736    27267    612    2017-03-14 03:20:00    2017-03-14 03:20:00
73737    27267    548    2017-03-14 13:47:00    2017-03-14 13:47:00
73738    27268    592    2017-03-14 18:12:00    2017-03-14 18:12:00
73739    27268    618    2017-03-14 15:31:00    2017-03-14 15:31:00
73740    27268    932    2017-03-14 20:47:00    2017-03-14 20:47:00
73741    27268    745    2017-03-14 21:31:00    2017-03-14 21:31:00
73742    27268    809    2017-03-14 01:39:00    2017-03-14 01:39:00
73743    27269    873    2017-03-14 17:24:00    2017-03-14 17:24:00
73744    27269    607    2017-03-14 22:45:00    2017-03-14 22:45:00
73745    27269    776    2017-03-14 20:33:00    2017-03-14 20:33:00
73746    27269    907    2017-03-14 21:17:00    2017-03-14 21:17:00
73747    27269    898    2017-03-14 14:09:00    2017-03-14 14:09:00
73748    27270    542    2017-03-14 03:35:00    2017-03-14 03:35:00
73749    27270    955    2017-03-14 13:25:00    2017-03-14 13:25:00
73750    27270    552    2017-03-14 10:07:00    2017-03-14 10:07:00
73751    27270    811    2017-03-14 03:47:00    2017-03-14 03:47:00
73752    27270    961    2017-03-14 14:41:00    2017-03-14 14:41:00
73753    27271    547    2017-03-14 21:10:00    2017-03-14 21:10:00
73754    27271    807    2017-03-14 21:42:00    2017-03-14 21:42:00
73755    27271    815    2017-03-14 13:22:00    2017-03-14 13:22:00
73756    27271    655    2017-03-14 14:43:00    2017-03-14 14:43:00
73757    27271    948    2017-03-14 12:20:00    2017-03-14 12:20:00
73758    27272    831    2017-03-14 15:26:00    2017-03-14 15:26:00
73759    27272    608    2017-03-14 17:45:00    2017-03-14 17:45:00
73760    27272    773    2017-03-14 13:45:00    2017-03-14 13:45:00
73761    27272    814    2017-03-14 18:00:00    2017-03-14 18:00:00
73762    27272    881    2017-03-14 14:23:00    2017-03-14 14:23:00
73763    27273    583    2017-03-14 23:18:00    2017-03-14 23:18:00
73764    27273    564    2017-03-14 21:46:00    2017-03-14 21:46:00
73765    27273    556    2017-03-14 20:48:00    2017-03-14 20:48:00
73766    27273    825    2017-03-14 20:53:00    2017-03-14 20:53:00
73767    27273    605    2017-03-14 18:48:00    2017-03-14 18:48:00
73768    27274    791    2017-03-14 23:24:00    2017-03-14 23:24:00
73769    27274    511    2017-03-14 01:39:00    2017-03-14 01:39:00
73770    27274    638    2017-03-14 21:03:00    2017-03-14 21:03:00
73771    27274    625    2017-03-14 20:45:00    2017-03-14 20:45:00
73772    27274    825    2017-03-14 13:33:00    2017-03-14 13:33:00
73773    27275    556    2017-03-14 19:20:00    2017-03-14 19:20:00
73774    27275    463    2017-03-14 09:30:00    2017-03-14 09:30:00
73775    27275    787    2017-03-14 08:52:00    2017-03-14 08:52:00
73776    27275    522    2017-03-14 18:31:00    2017-03-14 18:31:00
73777    27275    747    2017-03-14 02:40:00    2017-03-14 02:40:00
73778    27276    629    2017-03-14 03:42:00    2017-03-14 03:42:00
73779    27276    541    2017-03-14 19:09:00    2017-03-14 19:09:00
73780    27276    696    2017-03-14 16:30:00    2017-03-14 16:30:00
73781    27276    660    2017-03-14 09:00:00    2017-03-14 09:00:00
73782    27276    477    2017-03-14 16:32:00    2017-03-14 16:32:00
73783    27277    822    2017-03-14 11:51:00    2017-03-14 11:51:00
73784    27277    937    2017-03-14 12:10:00    2017-03-14 12:10:00
73785    27277    924    2017-03-14 17:57:00    2017-03-14 17:57:00
73786    27277    551    2017-03-14 19:54:00    2017-03-14 19:54:00
73787    27277    580    2017-03-14 19:44:00    2017-03-14 19:44:00
73788    27278    587    2017-03-14 13:09:00    2017-03-14 13:09:00
73789    27278    804    2017-03-14 05:03:00    2017-03-14 05:03:00
73790    27278    950    2017-03-14 18:22:00    2017-03-14 18:22:00
73791    27278    637    2017-03-14 04:06:00    2017-03-14 04:06:00
73792    27278    658    2017-03-14 11:11:00    2017-03-14 11:11:00
73793    27279    575    2017-03-14 03:59:00    2017-03-14 03:59:00
73794    27279    891    2017-03-14 09:53:00    2017-03-14 09:53:00
73795    27279    934    2017-03-14 06:45:00    2017-03-14 06:45:00
73796    27279    870    2017-03-14 20:32:00    2017-03-14 20:32:00
73797    27279    466    2017-03-14 23:46:00    2017-03-14 23:46:00
73798    27280    820    2017-03-14 08:58:00    2017-03-14 08:58:00
73799    27280    622    2017-03-14 09:09:00    2017-03-14 09:09:00
73800    27280    818    2017-03-14 08:38:00    2017-03-14 08:38:00
73801    27280    790    2017-03-14 22:43:00    2017-03-14 22:43:00
73802    27280    852    2017-03-14 11:49:00    2017-03-14 11:49:00
73803    27281    652    2017-03-14 05:54:00    2017-03-14 05:54:00
73804    27281    760    2017-03-14 06:26:00    2017-03-14 06:26:00
73805    27281    592    2017-03-14 19:05:00    2017-03-14 19:05:00
73806    27281    934    2017-03-14 07:28:00    2017-03-14 07:28:00
73807    27281    766    2017-03-14 16:41:00    2017-03-14 16:41:00
73808    27282    834    2017-03-14 17:07:00    2017-03-14 17:07:00
73809    27282    750    2017-03-14 16:01:00    2017-03-14 16:01:00
73810    27282    490    2017-03-14 14:44:00    2017-03-14 14:44:00
73811    27282    518    2017-03-14 13:46:00    2017-03-14 13:46:00
73812    27282    946    2017-03-14 21:00:00    2017-03-14 21:00:00
73813    27283    871    2017-03-14 09:48:00    2017-03-14 09:48:00
73814    27283    856    2017-03-14 05:46:00    2017-03-14 05:46:00
73815    27283    598    2017-03-14 11:33:00    2017-03-14 11:33:00
73816    27283    787    2017-03-14 04:14:00    2017-03-14 04:14:00
73817    27283    661    2017-03-14 20:57:00    2017-03-14 20:57:00
73818    27284    843    2017-03-14 05:01:00    2017-03-14 05:01:00
73819    27284    705    2017-03-14 20:53:00    2017-03-14 20:53:00
73820    27284    876    2017-03-14 23:34:00    2017-03-14 23:34:00
73821    27284    688    2017-03-14 21:09:00    2017-03-14 21:09:00
73822    27284    612    2017-03-14 09:44:00    2017-03-14 09:44:00
73823    27285    586    2017-03-14 03:57:00    2017-03-14 03:57:00
73824    27285    544    2017-03-14 16:31:00    2017-03-14 16:31:00
73825    27285    530    2017-03-14 06:19:00    2017-03-14 06:19:00
73826    27285    532    2017-03-14 20:01:00    2017-03-14 20:01:00
73827    27285    961    2017-03-14 07:43:00    2017-03-14 07:43:00
73828    27286    794    2017-03-14 19:18:00    2017-03-14 19:18:00
73829    27286    535    2017-03-14 01:06:00    2017-03-14 01:06:00
73830    27286    506    2017-03-14 08:35:00    2017-03-14 08:35:00
73831    27286    835    2017-03-14 19:12:00    2017-03-14 19:12:00
73832    27286    943    2017-03-14 18:43:00    2017-03-14 18:43:00
73833    27287    635    2017-03-14 09:50:00    2017-03-14 09:50:00
73834    27287    844    2017-03-14 12:59:00    2017-03-14 12:59:00
73835    27287    903    2017-03-14 13:48:00    2017-03-14 13:48:00
73836    27287    666    2017-03-14 11:30:00    2017-03-14 11:30:00
73837    27287    859    2017-03-14 13:30:00    2017-03-14 13:30:00
73838    27288    637    2017-03-14 18:10:00    2017-03-14 18:10:00
73839    27288    473    2017-03-14 10:42:00    2017-03-14 10:42:00
73840    27288    759    2017-03-14 20:54:00    2017-03-14 20:54:00
73841    27288    581    2017-03-14 14:02:00    2017-03-14 14:02:00
73842    27288    519    2017-03-14 11:44:00    2017-03-14 11:44:00
73843    27289    607    2017-03-14 04:34:00    2017-03-14 04:34:00
73844    27289    742    2017-03-14 06:25:00    2017-03-14 06:25:00
73845    27289    719    2017-03-14 13:15:00    2017-03-14 13:15:00
73846    27289    897    2017-03-14 02:00:00    2017-03-14 02:00:00
73847    27289    781    2017-03-14 23:07:00    2017-03-14 23:07:00
73848    27290    607    2017-03-14 14:46:00    2017-03-14 14:46:00
73849    27290    874    2017-03-14 11:59:00    2017-03-14 11:59:00
73850    27290    710    2017-03-14 11:08:00    2017-03-14 11:08:00
73851    27290    846    2017-03-14 21:26:00    2017-03-14 21:26:00
73852    27290    774    2017-03-14 22:22:00    2017-03-14 22:22:00
73853    27291    591    2017-03-14 14:59:00    2017-03-14 14:59:00
73854    27291    674    2017-03-14 11:48:00    2017-03-14 11:48:00
73855    27291    859    2017-03-14 19:48:00    2017-03-14 19:48:00
73856    27291    628    2017-03-14 11:58:00    2017-03-14 11:58:00
73857    27291    649    2017-03-14 18:00:00    2017-03-14 18:00:00
73858    27292    785    2017-03-14 09:38:00    2017-03-14 09:38:00
73859    27292    596    2017-03-14 03:08:00    2017-03-14 03:08:00
73860    27292    807    2017-03-14 22:26:00    2017-03-14 22:26:00
73861    27292    677    2017-03-14 13:49:00    2017-03-14 13:49:00
73862    27292    956    2017-03-14 14:06:00    2017-03-14 14:06:00
73863    27293    702    2017-03-14 12:29:00    2017-03-14 12:29:00
73864    27293    687    2017-03-14 12:22:00    2017-03-14 12:22:00
73865    27293    524    2017-03-14 07:22:00    2017-03-14 07:22:00
73866    27293    611    2017-03-14 10:55:00    2017-03-14 10:55:00
73867    27293    677    2017-03-14 04:51:00    2017-03-14 04:51:00
73868    27294    929    2017-03-14 05:23:00    2017-03-14 05:23:00
73869    27294    954    2017-03-14 16:49:00    2017-03-14 16:49:00
73870    27294    882    2017-03-14 04:31:00    2017-03-14 04:31:00
73871    27294    659    2017-03-14 02:47:00    2017-03-14 02:47:00
73872    27294    804    2017-03-14 22:39:00    2017-03-14 22:39:00
73873    27295    571    2017-03-14 08:05:00    2017-03-14 08:05:00
73874    27295    771    2017-03-14 06:52:00    2017-03-14 06:52:00
73875    27295    850    2017-03-14 11:13:00    2017-03-14 11:13:00
73876    27295    943    2017-03-14 23:59:00    2017-03-14 23:59:00
73877    27295    935    2017-03-14 12:37:00    2017-03-14 12:37:00
73878    27296    804    2017-03-14 15:36:00    2017-03-14 15:36:00
73879    27296    783    2017-03-14 04:38:00    2017-03-14 04:38:00
73880    27296    604    2017-03-14 02:48:00    2017-03-14 02:48:00
73881    27296    843    2017-03-14 17:06:00    2017-03-14 17:06:00
73882    27296    560    2017-03-14 13:50:00    2017-03-14 13:50:00
73883    27297    666    2017-03-14 07:56:00    2017-03-14 07:56:00
73884    27297    765    2017-03-14 01:07:00    2017-03-14 01:07:00
73885    27297    901    2017-03-14 16:03:00    2017-03-14 16:03:00
73886    27297    838    2017-03-14 20:31:00    2017-03-14 20:31:00
73887    27297    649    2017-03-14 13:48:00    2017-03-14 13:48:00
73888    27298    614    2017-03-14 09:16:00    2017-03-14 09:16:00
73889    27298    605    2017-03-14 06:13:00    2017-03-14 06:13:00
73890    27298    818    2017-03-14 06:41:00    2017-03-14 06:41:00
73891    27298    549    2017-03-14 06:35:00    2017-03-14 06:35:00
73892    27298    726    2017-03-14 13:55:00    2017-03-14 13:55:00
73893    27299    559    2017-03-14 04:09:00    2017-03-14 04:09:00
73894    27299    480    2017-03-14 08:28:00    2017-03-14 08:28:00
73895    27299    487    2017-03-14 04:33:00    2017-03-14 04:33:00
73896    27299    716    2017-03-14 08:16:00    2017-03-14 08:16:00
73897    27299    878    2017-03-14 21:50:00    2017-03-14 21:50:00
73898    27300    612    2017-03-15 00:00:00    2017-03-15 00:00:00
73899    27300    667    2017-03-14 09:25:00    2017-03-14 09:25:00
73900    27300    746    2017-03-14 21:25:00    2017-03-14 21:25:00
73901    27300    757    2017-03-14 19:53:00    2017-03-14 19:53:00
73902    27300    781    2017-03-14 12:48:00    2017-03-14 12:48:00
73903    27301    762    2017-03-14 18:53:00    2017-03-14 18:53:00
73904    27301    937    2017-03-14 21:01:00    2017-03-14 21:01:00
73905    27301    841    2017-03-14 23:18:00    2017-03-14 23:18:00
73906    27301    474    2017-03-14 08:00:00    2017-03-14 08:00:00
73907    27301    763    2017-03-14 17:13:00    2017-03-14 17:13:00
73908    27302    637    2017-03-14 23:06:00    2017-03-14 23:06:00
73909    27302    544    2017-03-14 03:26:00    2017-03-14 03:26:00
73910    27302    549    2017-03-14 02:47:00    2017-03-14 02:47:00
73911    27302    947    2017-03-14 05:29:00    2017-03-14 05:29:00
73912    27302    669    2017-03-14 11:11:00    2017-03-14 11:11:00
73913    27303    610    2017-03-14 15:46:00    2017-03-14 15:46:00
73914    27303    524    2017-03-14 05:56:00    2017-03-14 05:56:00
73915    27303    780    2017-03-14 21:20:00    2017-03-14 21:20:00
73916    27303    881    2017-03-14 04:24:00    2017-03-14 04:24:00
73917    27303    723    2017-03-14 09:45:00    2017-03-14 09:45:00
73918    27304    636    2017-03-14 06:35:00    2017-03-14 06:35:00
73919    27304    942    2017-03-14 20:48:00    2017-03-14 20:48:00
73920    27304    867    2017-03-14 12:20:00    2017-03-14 12:20:00
73921    27304    900    2017-03-14 03:49:00    2017-03-14 03:49:00
73922    27304    877    2017-03-14 01:56:00    2017-03-14 01:56:00
73923    27305    655    2017-03-14 18:04:00    2017-03-14 18:04:00
73924    27305    763    2017-03-14 07:02:00    2017-03-14 07:02:00
73925    27305    505    2017-03-14 08:16:00    2017-03-14 08:16:00
73926    27305    928    2017-03-14 06:42:00    2017-03-14 06:42:00
73927    27305    924    2017-03-14 23:24:00    2017-03-14 23:24:00
73928    27306    864    2017-03-14 15:10:00    2017-03-14 15:10:00
73929    27306    782    2017-03-14 01:45:00    2017-03-14 01:45:00
73930    27306    577    2017-03-14 15:40:00    2017-03-14 15:40:00
73931    27306    739    2017-03-14 11:25:00    2017-03-14 11:25:00
73932    27306    718    2017-03-14 21:37:00    2017-03-14 21:37:00
73933    27307    948    2017-03-14 15:02:00    2017-03-14 15:02:00
73934    27307    550    2017-03-14 03:31:00    2017-03-14 03:31:00
73935    27307    801    2017-03-14 16:58:00    2017-03-14 16:58:00
73936    27307    919    2017-03-14 08:30:00    2017-03-14 08:30:00
73937    27307    945    2017-03-14 01:05:00    2017-03-14 01:05:00
73938    27308    897    2017-03-14 16:43:00    2017-03-14 16:43:00
73939    27308    894    2017-03-14 16:24:00    2017-03-14 16:24:00
73940    27308    907    2017-03-14 19:39:00    2017-03-14 19:39:00
73941    27308    519    2017-03-14 09:39:00    2017-03-14 09:39:00
73942    27308    824    2017-03-14 09:04:00    2017-03-14 09:04:00
73943    27309    804    2017-03-14 02:21:00    2017-03-14 02:21:00
73944    27309    885    2017-03-14 07:59:00    2017-03-14 07:59:00
73945    27309    567    2017-03-14 22:41:00    2017-03-14 22:41:00
73946    27309    484    2017-03-14 16:16:00    2017-03-14 16:16:00
73947    27309    829    2017-03-14 03:51:00    2017-03-14 03:51:00
73948    27310    584    2017-03-14 15:37:00    2017-03-14 15:37:00
73949    27310    506    2017-03-14 19:12:00    2017-03-14 19:12:00
73950    27310    703    2017-03-14 15:04:00    2017-03-14 15:04:00
73951    27310    622    2017-03-14 23:33:00    2017-03-14 23:33:00
73952    27310    752    2017-03-14 01:08:00    2017-03-14 01:08:00
73953    27311    644    2017-03-14 10:31:00    2017-03-14 10:31:00
73954    27311    590    2017-03-14 06:24:00    2017-03-14 06:24:00
73955    27311    565    2017-03-14 23:46:00    2017-03-14 23:46:00
73956    27311    787    2017-03-14 14:55:00    2017-03-14 14:55:00
73957    27311    950    2017-03-14 13:10:00    2017-03-14 13:10:00
73958    27312    546    2017-03-14 02:01:00    2017-03-14 02:01:00
73959    27312    955    2017-03-14 16:59:00    2017-03-14 16:59:00
73960    27312    560    2017-03-14 06:39:00    2017-03-14 06:39:00
73961    27312    960    2017-03-14 23:10:00    2017-03-14 23:10:00
73962    27312    881    2017-03-14 20:30:00    2017-03-14 20:30:00
73963    27313    958    2017-03-14 22:45:00    2017-03-14 22:45:00
73964    27313    929    2017-03-14 14:48:00    2017-03-14 14:48:00
73965    27313    732    2017-03-14 01:01:00    2017-03-14 01:01:00
73966    27313    498    2017-03-14 15:51:00    2017-03-14 15:51:00
73967    27313    588    2017-03-14 19:00:00    2017-03-14 19:00:00
73968    27314    702    2017-03-14 21:42:00    2017-03-14 21:42:00
73969    27314    863    2017-03-14 12:43:00    2017-03-14 12:43:00
73970    27314    701    2017-03-14 10:48:00    2017-03-14 10:48:00
73971    27314    610    2017-03-14 04:09:00    2017-03-14 04:09:00
73972    27314    535    2017-03-14 02:42:00    2017-03-14 02:42:00
73973    27315    842    2017-03-14 14:09:00    2017-03-14 14:09:00
73974    27315    823    2017-03-14 01:40:00    2017-03-14 01:40:00
73975    27315    740    2017-03-14 11:18:00    2017-03-14 11:18:00
73976    27315    791    2017-03-14 08:09:00    2017-03-14 08:09:00
73977    27315    607    2017-03-14 01:20:00    2017-03-14 01:20:00
73978    27316    835    2017-03-14 14:03:00    2017-03-14 14:03:00
73979    27316    553    2017-03-14 18:36:00    2017-03-14 18:36:00
73980    27316    653    2017-03-14 06:13:00    2017-03-14 06:13:00
73981    27316    925    2017-03-14 13:35:00    2017-03-14 13:35:00
73982    27316    785    2017-03-14 07:26:00    2017-03-14 07:26:00
73983    27317    710    2017-03-14 22:22:00    2017-03-14 22:22:00
73984    27317    538    2017-03-14 13:26:00    2017-03-14 13:26:00
73985    27317    549    2017-03-14 10:15:00    2017-03-14 10:15:00
73986    27317    746    2017-03-14 10:36:00    2017-03-14 10:36:00
73987    27317    804    2017-03-14 15:13:00    2017-03-14 15:13:00
73616    27243    908    2017-03-14 23:54:00    2017-03-15 03:05:55.234051
73988    27318    472    2017-03-15 01:19:00    2017-03-15 01:19:00
73989    27318    952    2017-03-15 07:10:00    2017-03-15 07:10:00
73990    27318    762    2017-03-15 23:30:00    2017-03-15 23:30:00
73991    27318    583    2017-03-15 08:48:00    2017-03-15 08:48:00
73992    27318    593    2017-03-15 16:39:00    2017-03-15 16:39:00
73993    27319    689    2017-03-15 06:27:00    2017-03-15 06:27:00
73994    27319    669    2017-03-15 20:14:00    2017-03-15 20:14:00
73995    27319    463    2017-03-15 20:15:00    2017-03-15 20:15:00
73996    27319    776    2017-03-15 17:49:00    2017-03-15 17:49:00
73997    27319    547    2017-03-15 15:56:00    2017-03-15 15:56:00
73998    27320    586    2017-03-15 21:16:00    2017-03-15 21:16:00
73999    27320    848    2017-03-15 15:03:00    2017-03-15 15:03:00
74000    27320    642    2017-03-15 08:32:00    2017-03-15 08:32:00
74001    27320    815    2017-03-15 01:50:00    2017-03-15 01:50:00
74002    27320    701    2017-03-15 10:24:00    2017-03-15 10:24:00
74003    27321    762    2017-03-15 06:49:00    2017-03-15 06:49:00
74004    27321    586    2017-03-15 05:11:00    2017-03-15 05:11:00
74005    27321    832    2017-03-15 01:13:00    2017-03-15 01:13:00
74006    27321    799    2017-03-15 17:15:00    2017-03-15 17:15:00
74007    27321    861    2017-03-15 11:42:00    2017-03-15 11:42:00
74008    27322    819    2017-03-15 23:53:00    2017-03-15 23:53:00
74009    27322    577    2017-03-15 05:15:00    2017-03-15 05:15:00
74010    27322    597    2017-03-15 15:37:00    2017-03-15 15:37:00
74011    27322    632    2017-03-15 04:38:00    2017-03-15 04:38:00
74012    27322    892    2017-03-15 20:31:00    2017-03-15 20:31:00
74013    27323    702    2017-03-15 16:15:00    2017-03-15 16:15:00
74014    27323    651    2017-03-15 03:00:00    2017-03-15 03:00:00
74015    27323    512    2017-03-15 06:55:00    2017-03-15 06:55:00
74016    27323    638    2017-03-15 11:55:00    2017-03-15 11:55:00
74017    27323    828    2017-03-15 09:24:00    2017-03-15 09:24:00
74018    27324    784    2017-03-15 07:18:00    2017-03-15 07:18:00
74019    27324    779    2017-03-15 17:29:00    2017-03-15 17:29:00
74020    27324    767    2017-03-15 21:50:00    2017-03-15 21:50:00
74021    27324    711    2017-03-15 07:00:00    2017-03-15 07:00:00
74022    27324    580    2017-03-15 01:09:00    2017-03-15 01:09:00
74023    27325    940    2017-03-15 18:06:00    2017-03-15 18:06:00
74024    27325    484    2017-03-15 23:33:00    2017-03-15 23:33:00
74025    27325    536    2017-03-15 21:32:00    2017-03-15 21:32:00
74026    27325    648    2017-03-15 06:23:00    2017-03-15 06:23:00
74027    27325    815    2017-03-15 04:26:00    2017-03-15 04:26:00
74028    27326    634    2017-03-15 09:30:00    2017-03-15 09:30:00
74029    27326    936    2017-03-15 17:08:00    2017-03-15 17:08:00
74030    27326    771    2017-03-15 02:16:00    2017-03-15 02:16:00
74031    27326    756    2017-03-15 10:17:00    2017-03-15 10:17:00
74032    27326    476    2017-03-15 05:55:00    2017-03-15 05:55:00
74033    27327    573    2017-03-15 13:13:00    2017-03-15 13:13:00
74034    27327    654    2017-03-15 12:12:00    2017-03-15 12:12:00
74035    27327    468    2017-03-15 02:13:00    2017-03-15 02:13:00
74036    27327    691    2017-03-15 09:48:00    2017-03-15 09:48:00
74037    27327    752    2017-03-15 21:19:00    2017-03-15 21:19:00
74038    27328    757    2017-03-15 02:28:00    2017-03-15 02:28:00
74039    27328    637    2017-03-15 17:51:00    2017-03-15 17:51:00
74040    27328    555    2017-03-15 14:13:00    2017-03-15 14:13:00
74041    27328    815    2017-03-15 20:28:00    2017-03-15 20:28:00
74042    27328    670    2017-03-15 02:29:00    2017-03-15 02:29:00
74043    27329    496    2017-03-15 05:42:00    2017-03-15 05:42:00
74044    27329    939    2017-03-15 20:21:00    2017-03-15 20:21:00
74045    27329    624    2017-03-15 08:10:00    2017-03-15 08:10:00
74046    27329    546    2017-03-15 17:37:00    2017-03-15 17:37:00
74047    27329    610    2017-03-15 03:16:00    2017-03-15 03:16:00
74048    27330    898    2017-03-15 07:38:00    2017-03-15 07:38:00
74049    27330    684    2017-03-15 22:49:00    2017-03-15 22:49:00
74050    27330    567    2017-03-15 01:16:00    2017-03-15 01:16:00
74051    27330    478    2017-03-15 09:51:00    2017-03-15 09:51:00
74052    27330    612    2017-03-15 10:10:00    2017-03-15 10:10:00
74053    27331    584    2017-03-15 02:35:00    2017-03-15 02:35:00
74054    27331    549    2017-03-15 20:38:00    2017-03-15 20:38:00
74055    27331    950    2017-03-15 19:56:00    2017-03-15 19:56:00
74056    27331    925    2017-03-15 22:48:00    2017-03-15 22:48:00
74057    27331    715    2017-03-15 15:31:00    2017-03-15 15:31:00
74058    27332    571    2017-03-15 21:32:00    2017-03-15 21:32:00
74059    27332    618    2017-03-15 17:55:00    2017-03-15 17:55:00
74060    27332    815    2017-03-15 17:40:00    2017-03-15 17:40:00
74061    27332    470    2017-03-15 14:00:00    2017-03-15 14:00:00
74062    27332    877    2017-03-15 19:37:00    2017-03-15 19:37:00
74063    27333    750    2017-03-15 21:11:00    2017-03-15 21:11:00
74064    27333    524    2017-03-15 13:49:00    2017-03-15 13:49:00
74065    27333    815    2017-03-15 07:52:00    2017-03-15 07:52:00
74066    27333    706    2017-03-15 15:30:00    2017-03-15 15:30:00
74067    27333    898    2017-03-15 18:04:00    2017-03-15 18:04:00
74068    27334    930    2017-03-15 18:54:00    2017-03-15 18:54:00
74069    27334    583    2017-03-15 08:08:00    2017-03-15 08:08:00
74070    27334    760    2017-03-15 03:59:00    2017-03-15 03:59:00
74071    27334    516    2017-03-15 18:48:00    2017-03-15 18:48:00
74072    27334    922    2017-03-15 10:33:00    2017-03-15 10:33:00
74073    27335    766    2017-03-15 17:41:00    2017-03-15 17:41:00
74074    27335    567    2017-03-15 03:37:00    2017-03-15 03:37:00
74075    27335    528    2017-03-15 15:31:00    2017-03-15 15:31:00
74076    27335    709    2017-03-15 07:08:00    2017-03-15 07:08:00
74077    27335    587    2017-03-15 14:02:00    2017-03-15 14:02:00
74078    27336    671    2017-03-15 10:52:00    2017-03-15 10:52:00
74079    27336    920    2017-03-15 06:56:00    2017-03-15 06:56:00
74080    27336    818    2017-03-15 06:23:00    2017-03-15 06:23:00
74081    27336    930    2017-03-15 23:10:00    2017-03-15 23:10:00
74082    27336    683    2017-03-15 16:15:00    2017-03-15 16:15:00
74083    27337    798    2017-03-15 22:40:00    2017-03-15 22:40:00
74084    27337    522    2017-03-15 13:23:00    2017-03-15 13:23:00
74085    27337    647    2017-03-15 23:16:00    2017-03-15 23:16:00
74086    27337    859    2017-03-15 05:03:00    2017-03-15 05:03:00
74087    27337    797    2017-03-15 08:51:00    2017-03-15 08:51:00
74088    27338    473    2017-03-15 18:37:00    2017-03-15 18:37:00
74089    27338    869    2017-03-15 02:17:00    2017-03-15 02:17:00
74090    27338    669    2017-03-15 10:53:00    2017-03-15 10:53:00
74091    27338    587    2017-03-15 14:48:00    2017-03-15 14:48:00
74092    27338    663    2017-03-15 08:29:00    2017-03-15 08:29:00
74093    27339    682    2017-03-15 13:31:00    2017-03-15 13:31:00
74094    27339    909    2017-03-15 04:38:00    2017-03-15 04:38:00
74095    27339    478    2017-03-15 19:41:00    2017-03-15 19:41:00
74096    27339    724    2017-03-15 22:04:00    2017-03-15 22:04:00
74097    27339    547    2017-03-15 21:40:00    2017-03-15 21:40:00
74098    27340    483    2017-03-15 02:03:00    2017-03-15 02:03:00
74099    27340    602    2017-03-15 04:17:00    2017-03-15 04:17:00
74100    27340    740    2017-03-15 22:42:00    2017-03-15 22:42:00
74101    27340    959    2017-03-15 12:40:00    2017-03-15 12:40:00
74102    27340    757    2017-03-15 07:44:00    2017-03-15 07:44:00
74103    27341    595    2017-03-15 05:47:00    2017-03-15 05:47:00
74104    27341    752    2017-03-15 05:10:00    2017-03-15 05:10:00
74105    27341    543    2017-03-15 13:13:00    2017-03-15 13:13:00
74106    27341    920    2017-03-15 22:38:00    2017-03-15 22:38:00
74107    27341    794    2017-03-15 11:16:00    2017-03-15 11:16:00
74108    27342    829    2017-03-15 01:38:00    2017-03-15 01:38:00
74109    27342    663    2017-03-15 09:24:00    2017-03-15 09:24:00
74110    27342    799    2017-03-15 05:00:00    2017-03-15 05:00:00
74111    27342    922    2017-03-15 11:38:00    2017-03-15 11:38:00
74112    27342    865    2017-03-15 04:39:00    2017-03-15 04:39:00
74113    27343    710    2017-03-15 13:39:00    2017-03-15 13:39:00
74114    27343    919    2017-03-15 15:00:00    2017-03-15 15:00:00
74115    27343    467    2017-03-15 23:28:00    2017-03-15 23:28:00
74116    27343    723    2017-03-15 13:25:00    2017-03-15 13:25:00
74117    27343    656    2017-03-15 02:47:00    2017-03-15 02:47:00
74118    27344    840    2017-03-15 19:24:00    2017-03-15 19:24:00
74119    27344    840    2017-03-15 13:28:00    2017-03-15 13:28:00
74120    27344    945    2017-03-15 21:20:00    2017-03-15 21:20:00
74121    27344    932    2017-03-15 09:04:00    2017-03-15 09:04:00
74122    27344    705    2017-03-15 08:15:00    2017-03-15 08:15:00
74123    27345    870    2017-03-15 12:56:00    2017-03-15 12:56:00
74124    27345    677    2017-03-15 20:09:00    2017-03-15 20:09:00
74125    27345    556    2017-03-15 20:46:00    2017-03-15 20:46:00
74126    27345    596    2017-03-15 16:11:00    2017-03-15 16:11:00
74127    27345    671    2017-03-15 23:17:00    2017-03-15 23:17:00
74128    27346    613    2017-03-15 04:17:00    2017-03-15 04:17:00
74129    27346    872    2017-03-15 06:08:00    2017-03-15 06:08:00
74130    27346    487    2017-03-15 13:25:00    2017-03-15 13:25:00
74131    27346    470    2017-03-15 01:46:00    2017-03-15 01:46:00
74132    27346    862    2017-03-15 03:53:00    2017-03-15 03:53:00
74133    27347    540    2017-03-15 12:12:00    2017-03-15 12:12:00
74134    27347    666    2017-03-15 10:41:00    2017-03-15 10:41:00
74135    27347    525    2017-03-15 10:37:00    2017-03-15 10:37:00
74136    27347    812    2017-03-15 05:05:00    2017-03-15 05:05:00
74137    27347    599    2017-03-15 05:36:00    2017-03-15 05:36:00
74138    27348    897    2017-03-15 02:05:00    2017-03-15 02:05:00
74139    27348    836    2017-03-15 18:37:00    2017-03-15 18:37:00
74140    27348    625    2017-03-15 21:29:00    2017-03-15 21:29:00
74141    27348    743    2017-03-15 05:00:00    2017-03-15 05:00:00
74142    27348    960    2017-03-15 06:02:00    2017-03-15 06:02:00
74143    27349    782    2017-03-15 12:57:00    2017-03-15 12:57:00
74144    27349    621    2017-03-15 09:43:00    2017-03-15 09:43:00
74145    27349    484    2017-03-15 13:43:00    2017-03-15 13:43:00
74146    27349    574    2017-03-15 15:07:00    2017-03-15 15:07:00
74147    27349    924    2017-03-15 18:31:00    2017-03-15 18:31:00
74148    27350    817    2017-03-15 03:03:00    2017-03-15 03:03:00
74149    27350    499    2017-03-15 14:45:00    2017-03-15 14:45:00
74150    27350    749    2017-03-15 11:33:00    2017-03-15 11:33:00
74151    27350    488    2017-03-15 23:44:00    2017-03-15 23:44:00
74152    27350    547    2017-03-15 05:30:00    2017-03-15 05:30:00
74153    27351    523    2017-03-15 13:57:00    2017-03-15 13:57:00
74154    27351    945    2017-03-15 10:29:00    2017-03-15 10:29:00
74155    27351    898    2017-03-15 15:42:00    2017-03-15 15:42:00
74156    27351    590    2017-03-15 08:25:00    2017-03-15 08:25:00
74157    27351    756    2017-03-15 22:14:00    2017-03-15 22:14:00
74158    27352    579    2017-03-15 04:41:00    2017-03-15 04:41:00
74159    27352    484    2017-03-15 15:07:00    2017-03-15 15:07:00
74160    27352    750    2017-03-15 05:49:00    2017-03-15 05:49:00
74161    27352    931    2017-03-15 03:56:00    2017-03-15 03:56:00
74162    27352    506    2017-03-15 13:07:00    2017-03-15 13:07:00
74163    27353    750    2017-03-15 14:00:00    2017-03-15 14:00:00
74164    27353    783    2017-03-15 17:54:00    2017-03-15 17:54:00
74165    27353    783    2017-03-15 21:35:00    2017-03-15 21:35:00
74166    27353    757    2017-03-15 17:32:00    2017-03-15 17:32:00
74167    27353    765    2017-03-15 03:20:00    2017-03-15 03:20:00
74168    27354    904    2017-03-15 11:53:00    2017-03-15 11:53:00
74169    27354    917    2017-03-15 19:06:00    2017-03-15 19:06:00
74170    27354    737    2017-03-15 02:44:00    2017-03-15 02:44:00
74171    27354    764    2017-03-15 09:09:00    2017-03-15 09:09:00
74172    27354    477    2017-03-15 16:27:00    2017-03-15 16:27:00
74173    27355    663    2017-03-15 12:14:00    2017-03-15 12:14:00
74174    27355    744    2017-03-15 09:03:00    2017-03-15 09:03:00
74175    27355    611    2017-03-15 11:57:00    2017-03-15 11:57:00
74176    27355    495    2017-03-15 13:45:00    2017-03-15 13:45:00
74177    27355    490    2017-03-15 14:04:00    2017-03-15 14:04:00
74178    27356    494    2017-03-15 02:45:00    2017-03-15 02:45:00
74179    27356    837    2017-03-15 09:57:00    2017-03-15 09:57:00
74180    27356    837    2017-03-15 19:26:00    2017-03-15 19:26:00
74181    27356    697    2017-03-15 03:11:00    2017-03-15 03:11:00
74182    27356    575    2017-03-15 18:40:00    2017-03-15 18:40:00
74183    27357    670    2017-03-15 15:32:00    2017-03-15 15:32:00
74184    27357    771    2017-03-15 18:56:00    2017-03-15 18:56:00
74185    27357    686    2017-03-15 01:03:00    2017-03-15 01:03:00
74186    27357    935    2017-03-15 03:52:00    2017-03-15 03:52:00
74187    27357    652    2017-03-15 12:46:00    2017-03-15 12:46:00
74188    27358    566    2017-03-15 12:27:00    2017-03-15 12:27:00
74189    27358    608    2017-03-15 11:33:00    2017-03-15 11:33:00
74190    27358    812    2017-03-15 09:03:00    2017-03-15 09:03:00
74191    27358    558    2017-03-15 07:35:00    2017-03-15 07:35:00
74192    27358    947    2017-03-15 10:13:00    2017-03-15 10:13:00
74193    27359    723    2017-03-15 17:35:00    2017-03-15 17:35:00
74194    27359    791    2017-03-15 21:40:00    2017-03-15 21:40:00
74195    27359    547    2017-03-15 06:04:00    2017-03-15 06:04:00
74196    27359    608    2017-03-15 20:51:00    2017-03-15 20:51:00
74197    27359    497    2017-03-15 02:48:00    2017-03-15 02:48:00
74198    27360    553    2017-03-15 19:13:00    2017-03-15 19:13:00
74199    27360    606    2017-03-15 16:46:00    2017-03-15 16:46:00
74200    27360    752    2017-03-15 07:39:00    2017-03-15 07:39:00
74201    27360    822    2017-03-15 03:35:00    2017-03-15 03:35:00
74202    27360    608    2017-03-15 14:05:00    2017-03-15 14:05:00
74203    27361    802    2017-03-15 23:59:00    2017-03-15 23:59:00
74204    27361    573    2017-03-15 04:43:00    2017-03-15 04:43:00
74205    27361    911    2017-03-15 22:41:00    2017-03-15 22:41:00
74206    27361    576    2017-03-15 14:29:00    2017-03-15 14:29:00
74207    27361    844    2017-03-15 18:51:00    2017-03-15 18:51:00
74208    27362    675    2017-03-15 12:13:00    2017-03-15 12:13:00
74209    27362    944    2017-03-15 11:25:00    2017-03-15 11:25:00
74210    27362    620    2017-03-15 20:37:00    2017-03-15 20:37:00
74211    27362    665    2017-03-15 01:29:00    2017-03-15 01:29:00
74212    27362    520    2017-03-15 08:01:00    2017-03-15 08:01:00
74213    27363    700    2017-03-15 13:52:00    2017-03-15 13:52:00
74214    27363    665    2017-03-15 21:33:00    2017-03-15 21:33:00
74215    27363    509    2017-03-15 15:11:00    2017-03-15 15:11:00
74216    27363    573    2017-03-15 02:53:00    2017-03-15 02:53:00
74217    27363    847    2017-03-15 01:18:00    2017-03-15 01:18:00
74218    27364    775    2017-03-15 12:46:00    2017-03-15 12:46:00
74219    27364    949    2017-03-15 13:41:00    2017-03-15 13:41:00
74220    27364    757    2017-03-15 18:15:00    2017-03-15 18:15:00
74221    27364    527    2017-03-15 22:00:00    2017-03-15 22:00:00
74222    27364    812    2017-03-15 08:43:00    2017-03-15 08:43:00
74223    27365    567    2017-03-15 10:36:00    2017-03-15 10:36:00
74224    27365    868    2017-03-15 19:17:00    2017-03-15 19:17:00
74225    27365    533    2017-03-15 21:46:00    2017-03-15 21:46:00
74226    27365    629    2017-03-15 18:04:00    2017-03-15 18:04:00
74227    27365    486    2017-03-15 14:59:00    2017-03-15 14:59:00
74228    27366    581    2017-03-15 20:30:00    2017-03-15 20:30:00
74229    27366    528    2017-03-15 14:48:00    2017-03-15 14:48:00
74230    27366    960    2017-03-15 02:51:00    2017-03-15 02:51:00
74231    27366    637    2017-03-15 04:33:00    2017-03-15 04:33:00
74232    27366    908    2017-03-15 14:31:00    2017-03-15 14:31:00
74233    27367    786    2017-03-15 18:06:00    2017-03-15 18:06:00
74234    27367    864    2017-03-15 10:26:00    2017-03-15 10:26:00
74235    27367    952    2017-03-15 22:01:00    2017-03-15 22:01:00
74236    27367    552    2017-03-15 08:42:00    2017-03-15 08:42:00
74237    27367    717    2017-03-15 07:44:00    2017-03-15 07:44:00
74238    27368    559    2017-03-15 06:51:00    2017-03-15 06:51:00
74239    27368    501    2017-03-15 08:54:00    2017-03-15 08:54:00
74240    27368    836    2017-03-15 04:03:00    2017-03-15 04:03:00
74241    27368    957    2017-03-15 09:40:00    2017-03-15 09:40:00
74242    27368    580    2017-03-15 23:50:00    2017-03-15 23:50:00
74243    27369    804    2017-03-15 07:36:00    2017-03-15 07:36:00
74244    27369    561    2017-03-15 23:21:00    2017-03-15 23:21:00
74245    27369    777    2017-03-15 06:29:00    2017-03-15 06:29:00
74246    27369    852    2017-03-15 17:18:00    2017-03-15 17:18:00
74247    27369    484    2017-03-15 02:53:00    2017-03-15 02:53:00
74248    27370    653    2017-03-15 19:15:00    2017-03-15 19:15:00
74249    27370    580    2017-03-15 12:11:00    2017-03-15 12:11:00
74250    27370    504    2017-03-15 05:43:00    2017-03-15 05:43:00
74251    27370    874    2017-03-15 13:31:00    2017-03-15 13:31:00
74252    27370    587    2017-03-15 01:51:00    2017-03-15 01:51:00
74253    27371    672    2017-03-15 07:32:00    2017-03-15 07:32:00
74254    27371    827    2017-03-15 13:39:00    2017-03-15 13:39:00
74255    27371    721    2017-03-15 23:31:00    2017-03-15 23:31:00
74256    27371    936    2017-03-15 08:03:00    2017-03-15 08:03:00
74257    27371    860    2017-03-15 01:22:00    2017-03-15 01:22:00
74258    27372    741    2017-03-15 09:54:00    2017-03-15 09:54:00
74259    27372    747    2017-03-15 12:03:00    2017-03-15 12:03:00
74260    27372    786    2017-03-15 04:13:00    2017-03-15 04:13:00
74261    27372    916    2017-03-15 12:39:00    2017-03-15 12:39:00
74262    27372    605    2017-03-15 06:47:00    2017-03-15 06:47:00
74263    27373    646    2017-03-15 09:58:00    2017-03-15 09:58:00
74264    27373    947    2017-03-15 06:35:00    2017-03-15 06:35:00
74265    27373    490    2017-03-15 16:53:00    2017-03-15 16:53:00
74266    27373    883    2017-03-15 10:24:00    2017-03-15 10:24:00
74267    27373    847    2017-03-15 03:14:00    2017-03-15 03:14:00
74268    27374    483    2017-03-15 11:57:00    2017-03-15 11:57:00
74269    27374    537    2017-03-15 20:43:00    2017-03-15 20:43:00
74270    27374    734    2017-03-15 05:08:00    2017-03-15 05:08:00
74271    27374    671    2017-03-15 23:43:00    2017-03-15 23:43:00
74272    27374    472    2017-03-15 15:26:00    2017-03-15 15:26:00
74273    27375    897    2017-03-15 14:43:00    2017-03-15 14:43:00
74274    27375    689    2017-03-15 10:39:00    2017-03-15 10:39:00
74275    27375    620    2017-03-15 08:25:00    2017-03-15 08:25:00
74276    27375    562    2017-03-15 23:49:00    2017-03-15 23:49:00
74277    27375    747    2017-03-15 22:51:00    2017-03-15 22:51:00
74278    27376    853    2017-03-15 16:44:00    2017-03-15 16:44:00
74279    27376    498    2017-03-15 13:46:00    2017-03-15 13:46:00
74280    27376    788    2017-03-15 14:45:00    2017-03-15 14:45:00
74281    27376    881    2017-03-15 23:58:00    2017-03-15 23:58:00
74282    27376    822    2017-03-15 13:56:00    2017-03-15 13:56:00
74283    27377    757    2017-03-15 12:10:00    2017-03-15 12:10:00
74284    27377    961    2017-03-15 14:50:00    2017-03-15 14:50:00
74285    27377    498    2017-03-15 10:59:00    2017-03-15 10:59:00
74286    27377    913    2017-03-15 20:32:00    2017-03-15 20:32:00
74287    27377    814    2017-03-15 13:04:00    2017-03-15 13:04:00
74288    27378    736    2017-03-15 20:21:00    2017-03-15 20:21:00
74289    27378    929    2017-03-15 13:30:00    2017-03-15 13:30:00
74290    27378    617    2017-03-15 08:13:00    2017-03-15 08:13:00
74291    27378    866    2017-03-15 14:01:00    2017-03-15 14:01:00
74292    27378    920    2017-03-15 11:22:00    2017-03-15 11:22:00
74293    27379    686    2017-03-15 11:57:00    2017-03-15 11:57:00
74294    27379    613    2017-03-15 07:51:00    2017-03-15 07:51:00
74295    27379    843    2017-03-15 22:09:00    2017-03-15 22:09:00
74296    27379    816    2017-03-15 03:36:00    2017-03-15 03:36:00
74297    27379    798    2017-03-15 21:39:00    2017-03-15 21:39:00
74298    27380    932    2017-03-15 05:34:00    2017-03-15 05:34:00
74299    27380    540    2017-03-15 17:53:00    2017-03-15 17:53:00
74300    27380    686    2017-03-15 05:02:00    2017-03-15 05:02:00
74301    27380    906    2017-03-15 02:23:00    2017-03-15 02:23:00
74302    27380    739    2017-03-15 18:48:00    2017-03-15 18:48:00
74303    27381    621    2017-03-15 12:03:00    2017-03-15 12:03:00
74304    27381    731    2017-03-15 06:46:00    2017-03-15 06:46:00
74305    27381    910    2017-03-15 07:17:00    2017-03-15 07:17:00
74306    27381    580    2017-03-15 02:39:00    2017-03-15 02:39:00
74307    27381    683    2017-03-15 14:11:00    2017-03-15 14:11:00
74308    27382    515    2017-03-15 09:29:00    2017-03-15 09:29:00
74309    27382    465    2017-03-15 23:15:00    2017-03-15 23:15:00
74310    27382    717    2017-03-15 04:28:00    2017-03-15 04:28:00
74311    27382    678    2017-03-15 11:26:00    2017-03-15 11:26:00
74312    27382    624    2017-03-15 15:14:00    2017-03-15 15:14:00
74313    27383    814    2017-03-15 18:32:00    2017-03-15 18:32:00
74314    27383    928    2017-03-15 18:31:00    2017-03-15 18:31:00
74315    27383    828    2017-03-15 03:52:00    2017-03-15 03:52:00
74316    27383    721    2017-03-15 18:21:00    2017-03-15 18:21:00
74317    27383    897    2017-03-15 17:18:00    2017-03-15 17:18:00
74318    27384    589    2017-03-15 20:59:00    2017-03-15 20:59:00
74319    27384    833    2017-03-15 18:56:00    2017-03-15 18:56:00
74320    27384    721    2017-03-15 08:16:00    2017-03-15 08:16:00
74321    27384    622    2017-03-15 07:37:00    2017-03-15 07:37:00
74322    27384    766    2017-03-15 17:41:00    2017-03-15 17:41:00
74323    27385    499    2017-03-15 17:14:00    2017-03-15 17:14:00
74324    27385    635    2017-03-15 08:06:00    2017-03-15 08:06:00
74325    27385    561    2017-03-15 03:20:00    2017-03-15 03:20:00
74326    27385    932    2017-03-15 08:50:00    2017-03-15 08:50:00
74327    27385    559    2017-03-15 04:25:00    2017-03-15 04:25:00
74328    27386    533    2017-03-15 09:05:00    2017-03-15 09:05:00
74329    27386    606    2017-03-15 16:06:00    2017-03-15 16:06:00
74330    27386    509    2017-03-15 21:34:00    2017-03-15 21:34:00
74331    27386    829    2017-03-15 09:45:00    2017-03-15 09:45:00
74332    27386    589    2017-03-15 18:56:00    2017-03-15 18:56:00
74333    27387    778    2017-03-15 14:02:00    2017-03-15 14:02:00
74334    27387    589    2017-03-15 07:46:00    2017-03-15 07:46:00
74335    27387    748    2017-03-15 06:55:00    2017-03-15 06:55:00
74336    27387    943    2017-03-15 20:34:00    2017-03-15 20:34:00
74337    27387    682    2017-03-15 03:33:00    2017-03-15 03:33:00
74338    27388    880    2017-03-15 05:47:00    2017-03-15 05:47:00
74339    27388    669    2017-03-15 17:57:00    2017-03-15 17:57:00
74340    27388    927    2017-03-15 01:17:00    2017-03-15 01:17:00
74341    27388    646    2017-03-15 15:11:00    2017-03-15 15:11:00
74342    27388    607    2017-03-15 23:07:00    2017-03-15 23:07:00
74343    27389    938    2017-03-15 10:42:00    2017-03-15 10:42:00
74344    27389    902    2017-03-15 22:32:00    2017-03-15 22:32:00
74345    27389    551    2017-03-15 03:17:00    2017-03-15 03:17:00
74346    27389    620    2017-03-15 01:25:00    2017-03-15 01:25:00
74347    27389    913    2017-03-15 18:43:00    2017-03-15 18:43:00
74348    27390    843    2017-03-15 15:55:00    2017-03-15 15:55:00
74349    27390    807    2017-03-15 07:06:00    2017-03-15 07:06:00
74350    27390    840    2017-03-15 02:49:00    2017-03-15 02:49:00
74351    27390    708    2017-03-15 20:24:00    2017-03-15 20:24:00
74352    27390    925    2017-03-15 02:38:00    2017-03-15 02:38:00
74353    27391    824    2017-03-15 15:33:00    2017-03-15 15:33:00
74354    27391    844    2017-03-15 08:50:00    2017-03-15 08:50:00
74355    27391    697    2017-03-15 20:47:00    2017-03-15 20:47:00
74356    27391    620    2017-03-15 11:43:00    2017-03-15 11:43:00
74357    27391    478    2017-03-15 20:29:00    2017-03-15 20:29:00
74358    27392    617    2017-03-15 14:01:00    2017-03-15 14:01:00
74359    27392    616    2017-03-15 09:14:00    2017-03-15 09:14:00
74360    27392    873    2017-03-15 19:41:00    2017-03-15 19:41:00
74361    27392    842    2017-03-15 20:58:00    2017-03-15 20:58:00
74362    27392    689    2017-03-15 03:06:00    2017-03-15 03:06:00
74363    27393    857    2017-03-15 12:36:00    2017-03-15 12:36:00
74364    27393    548    2017-03-15 13:22:00    2017-03-15 13:22:00
74365    27393    463    2017-03-15 18:54:00    2017-03-15 18:54:00
74366    27393    944    2017-03-15 20:24:00    2017-03-15 20:24:00
74367    27393    790    2017-03-15 15:43:00    2017-03-15 15:43:00
74368    27394    650    2017-03-15 18:08:00    2017-03-15 18:08:00
74369    27394    768    2017-03-15 07:09:00    2017-03-15 07:09:00
74370    27394    682    2017-03-15 13:57:00    2017-03-15 13:57:00
74371    27394    550    2017-03-15 12:10:00    2017-03-15 12:10:00
74372    27394    596    2017-03-15 06:44:00    2017-03-15 06:44:00
74373    27395    895    2017-03-15 15:42:00    2017-03-15 15:42:00
74374    27395    797    2017-03-15 07:20:00    2017-03-15 07:20:00
74375    27395    529    2017-03-15 20:34:00    2017-03-15 20:34:00
74376    27395    477    2017-03-15 20:57:00    2017-03-15 20:57:00
74377    27395    902    2017-03-15 10:55:00    2017-03-15 10:55:00
74378    27396    660    2017-03-15 12:33:00    2017-03-15 12:33:00
74379    27396    782    2017-03-15 05:20:00    2017-03-15 05:20:00
74380    27396    511    2017-03-15 16:48:00    2017-03-15 16:48:00
74381    27396    479    2017-03-15 15:45:00    2017-03-15 15:45:00
74382    27396    784    2017-03-15 16:00:00    2017-03-15 16:00:00
74383    27397    514    2017-03-15 08:26:00    2017-03-15 08:26:00
74384    27397    666    2017-03-15 19:08:00    2017-03-15 19:08:00
74385    27397    607    2017-03-15 09:12:00    2017-03-15 09:12:00
74386    27397    555    2017-03-15 18:02:00    2017-03-15 18:02:00
74387    27397    935    2017-03-15 09:43:00    2017-03-15 09:43:00
74388    27398    555    2017-03-15 04:49:00    2017-03-15 04:49:00
74389    27398    776    2017-03-15 03:17:00    2017-03-15 03:17:00
74390    27398    707    2017-03-15 21:41:00    2017-03-15 21:41:00
74391    27398    844    2017-03-15 18:43:00    2017-03-15 18:43:00
74392    27398    599    2017-03-15 16:03:00    2017-03-15 16:03:00
74393    27399    939    2017-03-15 02:34:00    2017-03-15 02:34:00
74394    27399    638    2017-03-15 18:13:00    2017-03-15 18:13:00
74395    27399    803    2017-03-15 06:41:00    2017-03-15 06:41:00
74396    27399    897    2017-03-15 05:32:00    2017-03-15 05:32:00
74397    27399    937    2017-03-15 07:48:00    2017-03-15 07:48:00
74398    27400    762    2017-03-15 20:55:00    2017-03-15 20:55:00
74399    27400    737    2017-03-15 02:14:00    2017-03-15 02:14:00
74400    27400    584    2017-03-15 16:35:00    2017-03-15 16:35:00
74401    27400    793    2017-03-15 18:05:00    2017-03-15 18:05:00
74402    27400    746    2017-03-15 02:39:00    2017-03-15 02:39:00
74403    27401    608    2017-03-15 13:00:00    2017-03-15 13:00:00
74404    27401    736    2017-03-15 07:02:00    2017-03-15 07:02:00
74405    27401    589    2017-03-15 02:19:00    2017-03-15 02:19:00
74406    27401    525    2017-03-15 11:18:00    2017-03-15 11:18:00
74407    27401    556    2017-03-15 15:14:00    2017-03-15 15:14:00
74408    27402    565    2017-03-15 15:58:00    2017-03-15 15:58:00
74409    27402    481    2017-03-15 20:22:00    2017-03-15 20:22:00
74410    27402    838    2017-03-15 12:17:00    2017-03-15 12:17:00
74411    27402    749    2017-03-15 23:36:00    2017-03-15 23:36:00
74412    27402    492    2017-03-15 13:46:00    2017-03-15 13:46:00
74413    27403    760    2017-03-15 21:12:00    2017-03-15 21:12:00
74414    27403    955    2017-03-15 21:12:00    2017-03-15 21:12:00
74415    27403    875    2017-03-15 01:14:00    2017-03-15 01:14:00
74416    27403    500    2017-03-15 12:19:00    2017-03-15 12:19:00
74417    27403    587    2017-03-15 10:52:00    2017-03-15 10:52:00
74418    27404    783    2017-03-15 07:06:00    2017-03-15 07:06:00
74419    27404    915    2017-03-15 14:26:00    2017-03-15 14:26:00
74420    27404    676    2017-03-15 12:54:00    2017-03-15 12:54:00
74421    27404    523    2017-03-15 05:21:00    2017-03-15 05:21:00
74422    27404    638    2017-03-15 22:32:00    2017-03-15 22:32:00
74423    27405    938    2017-03-15 19:51:00    2017-03-15 19:51:00
74424    27405    468    2017-03-15 12:23:00    2017-03-15 12:23:00
74425    27405    771    2017-03-15 03:00:00    2017-03-15 03:00:00
74426    27405    941    2017-03-15 10:51:00    2017-03-15 10:51:00
74427    27405    722    2017-03-15 16:38:00    2017-03-15 16:38:00
74428    27406    614    2017-03-15 07:19:00    2017-03-15 07:19:00
74429    27406    707    2017-03-15 19:50:00    2017-03-15 19:50:00
74430    27406    600    2017-03-15 17:25:00    2017-03-15 17:25:00
74431    27406    726    2017-03-15 16:55:00    2017-03-15 16:55:00
74432    27406    679    2017-03-15 04:09:00    2017-03-15 04:09:00
74433    27407    928    2017-03-15 14:13:00    2017-03-15 14:13:00
74434    27407    485    2017-03-15 17:08:00    2017-03-15 17:08:00
74435    27407    554    2017-03-15 10:48:00    2017-03-15 10:48:00
74436    27407    648    2017-03-15 22:20:00    2017-03-15 22:20:00
74437    27407    578    2017-03-15 15:03:00    2017-03-15 15:03:00
74438    27408    900    2017-03-15 02:03:00    2017-03-15 02:03:00
74439    27408    829    2017-03-15 06:56:00    2017-03-15 06:56:00
74440    27408    555    2017-03-15 04:17:00    2017-03-15 04:17:00
74441    27408    540    2017-03-15 12:16:00    2017-03-15 12:16:00
74442    27408    870    2017-03-15 06:26:00    2017-03-15 06:26:00
74443    27409    586    2017-03-15 16:10:00    2017-03-15 16:10:00
74444    27409    821    2017-03-15 04:18:00    2017-03-15 04:18:00
74445    27409    729    2017-03-15 04:03:00    2017-03-15 04:03:00
74446    27409    527    2017-03-15 05:29:00    2017-03-15 05:29:00
74447    27409    859    2017-03-15 03:05:00    2017-03-15 03:05:00
74448    27410    790    2017-03-15 09:06:00    2017-03-15 09:06:00
74449    27410    746    2017-03-15 16:29:00    2017-03-15 16:29:00
74450    27410    702    2017-03-15 15:44:00    2017-03-15 15:44:00
74451    27410    592    2017-03-15 16:35:00    2017-03-15 16:35:00
74452    27410    934    2017-03-15 17:05:00    2017-03-15 17:05:00
74453    27411    607    2017-03-15 16:12:00    2017-03-15 16:12:00
74454    27411    554    2017-03-15 11:49:00    2017-03-15 11:49:00
74455    27411    717    2017-03-15 21:57:00    2017-03-15 21:57:00
74456    27411    613    2017-03-15 02:27:00    2017-03-15 02:27:00
74457    27411    642    2017-03-15 20:57:00    2017-03-15 20:57:00
74458    27412    733    2017-03-15 10:53:00    2017-03-15 10:53:00
74459    27412    644    2017-03-15 12:09:00    2017-03-15 12:09:00
74460    27412    793    2017-03-15 18:09:00    2017-03-15 18:09:00
74461    27412    706    2017-03-15 02:26:00    2017-03-15 02:26:00
74462    27412    489    2017-03-15 23:51:00    2017-03-15 23:51:00
74463    27413    651    2017-03-15 08:42:00    2017-03-15 08:42:00
74464    27413    556    2017-03-15 05:33:00    2017-03-15 05:33:00
74465    27413    481    2017-03-15 08:20:00    2017-03-15 08:20:00
74466    27413    511    2017-03-15 08:59:00    2017-03-15 08:59:00
74467    27413    856    2017-03-15 19:07:00    2017-03-15 19:07:00
74468    27414    915    2017-03-15 18:57:00    2017-03-15 18:57:00
74469    27414    526    2017-03-15 04:22:00    2017-03-15 04:22:00
74470    27414    760    2017-03-15 07:05:00    2017-03-15 07:05:00
74471    27414    914    2017-03-15 15:21:00    2017-03-15 15:21:00
74472    27414    539    2017-03-15 06:51:00    2017-03-15 06:51:00
74473    27415    815    2017-03-15 13:27:00    2017-03-15 13:27:00
74474    27415    560    2017-03-15 15:16:00    2017-03-15 15:16:00
74475    27415    832    2017-03-15 06:48:00    2017-03-15 06:48:00
74476    27415    635    2017-03-15 20:36:00    2017-03-15 20:36:00
74477    27415    547    2017-03-15 16:27:00    2017-03-15 16:27:00
74478    27416    835    2017-03-16 07:57:00    2017-03-16 07:57:00
74479    27416    950    2017-03-16 15:06:00    2017-03-16 15:06:00
74480    27416    671    2017-03-16 06:20:00    2017-03-16 06:20:00
74481    27416    482    2017-03-16 17:56:00    2017-03-16 17:56:00
74482    27416    705    2017-03-16 15:44:00    2017-03-16 15:44:00
74483    27417    607    2017-03-16 14:44:00    2017-03-16 14:44:00
74484    27417    939    2017-03-16 21:00:00    2017-03-16 21:00:00
74485    27417    538    2017-03-16 05:54:00    2017-03-16 05:54:00
74486    27417    940    2017-03-16 07:26:00    2017-03-16 07:26:00
74487    27417    775    2017-03-16 06:31:00    2017-03-16 06:31:00
74488    27418    823    2017-03-16 19:58:00    2017-03-16 19:58:00
74489    27418    653    2017-03-16 23:56:00    2017-03-16 23:56:00
74490    27418    847    2017-03-16 21:29:00    2017-03-16 21:29:00
74491    27418    842    2017-03-16 18:22:00    2017-03-16 18:22:00
74492    27418    874    2017-03-16 16:06:00    2017-03-16 16:06:00
74493    27419    629    2017-03-16 22:49:00    2017-03-16 22:49:00
74494    27419    608    2017-03-16 17:52:00    2017-03-16 17:52:00
74495    27419    629    2017-03-16 03:55:00    2017-03-16 03:55:00
74496    27419    764    2017-03-16 01:48:00    2017-03-16 01:48:00
74497    27419    910    2017-03-16 02:21:00    2017-03-16 02:21:00
74498    27420    812    2017-03-16 17:55:00    2017-03-16 17:55:00
74499    27420    736    2017-03-16 16:26:00    2017-03-16 16:26:00
74500    27420    908    2017-03-16 15:24:00    2017-03-16 15:24:00
74501    27420    776    2017-03-16 22:18:00    2017-03-16 22:18:00
74502    27420    562    2017-03-16 03:45:00    2017-03-16 03:45:00
74503    27421    676    2017-03-16 06:39:00    2017-03-16 06:39:00
74504    27421    826    2017-03-16 11:56:00    2017-03-16 11:56:00
74505    27421    749    2017-03-16 08:07:00    2017-03-16 08:07:00
74506    27421    723    2017-03-16 17:10:00    2017-03-16 17:10:00
74507    27421    573    2017-03-16 11:07:00    2017-03-16 11:07:00
74508    27422    479    2017-03-16 08:45:00    2017-03-16 08:45:00
74509    27422    677    2017-03-16 18:08:00    2017-03-16 18:08:00
74510    27422    492    2017-03-16 01:52:00    2017-03-16 01:52:00
74511    27422    639    2017-03-16 15:46:00    2017-03-16 15:46:00
74512    27422    758    2017-03-16 18:20:00    2017-03-16 18:20:00
74513    27423    500    2017-03-16 14:05:00    2017-03-16 14:05:00
74514    27423    621    2017-03-16 20:30:00    2017-03-16 20:30:00
74515    27423    785    2017-03-16 15:51:00    2017-03-16 15:51:00
74516    27423    814    2017-03-16 17:20:00    2017-03-16 17:20:00
74517    27423    674    2017-03-16 15:50:00    2017-03-16 15:50:00
74518    27424    636    2017-03-16 22:31:00    2017-03-16 22:31:00
74519    27424    882    2017-03-16 09:34:00    2017-03-16 09:34:00
74520    27424    524    2017-03-16 15:12:00    2017-03-16 15:12:00
74521    27424    602    2017-03-16 11:48:00    2017-03-16 11:48:00
74522    27424    902    2017-03-16 04:00:00    2017-03-16 04:00:00
74523    27425    955    2017-03-16 17:07:00    2017-03-16 17:07:00
74524    27425    609    2017-03-16 16:11:00    2017-03-16 16:11:00
74525    27425    751    2017-03-16 01:41:00    2017-03-16 01:41:00
74526    27425    871    2017-03-16 08:56:00    2017-03-16 08:56:00
74527    27425    682    2017-03-16 06:13:00    2017-03-16 06:13:00
74528    27426    772    2017-03-16 15:29:00    2017-03-16 15:29:00
74529    27426    633    2017-03-16 21:11:00    2017-03-16 21:11:00
74530    27426    728    2017-03-16 20:57:00    2017-03-16 20:57:00
74531    27426    644    2017-03-16 13:04:00    2017-03-16 13:04:00
74532    27426    636    2017-03-16 16:54:00    2017-03-16 16:54:00
74533    27427    918    2017-03-16 01:52:00    2017-03-16 01:52:00
74534    27427    525    2017-03-16 05:59:00    2017-03-16 05:59:00
74535    27427    564    2017-03-16 04:32:00    2017-03-16 04:32:00
74536    27427    802    2017-03-16 21:24:00    2017-03-16 21:24:00
74537    27427    875    2017-03-16 11:28:00    2017-03-16 11:28:00
74538    27428    712    2017-03-16 23:34:00    2017-03-16 23:34:00
74539    27428    631    2017-03-16 15:30:00    2017-03-16 15:30:00
74540    27428    805    2017-03-16 13:14:00    2017-03-16 13:14:00
74541    27428    467    2017-03-16 19:04:00    2017-03-16 19:04:00
74542    27428    944    2017-03-16 04:55:00    2017-03-16 04:55:00
74543    27429    681    2017-03-16 17:23:00    2017-03-16 17:23:00
74544    27429    717    2017-03-16 04:45:00    2017-03-16 04:45:00
74545    27429    491    2017-03-16 11:45:00    2017-03-16 11:45:00
74546    27429    944    2017-03-16 13:55:00    2017-03-16 13:55:00
74547    27429    903    2017-03-16 03:58:00    2017-03-16 03:58:00
74548    27430    595    2017-03-16 18:31:00    2017-03-16 18:31:00
74549    27430    686    2017-03-16 04:06:00    2017-03-16 04:06:00
74550    27430    511    2017-03-16 05:35:00    2017-03-16 05:35:00
74551    27430    699    2017-03-16 05:16:00    2017-03-16 05:16:00
74552    27430    809    2017-03-16 16:33:00    2017-03-16 16:33:00
74553    27431    582    2017-03-16 22:34:00    2017-03-16 22:34:00
74554    27431    639    2017-03-16 17:45:00    2017-03-16 17:45:00
74555    27431    759    2017-03-16 05:23:00    2017-03-16 05:23:00
74556    27431    646    2017-03-16 07:18:00    2017-03-16 07:18:00
74557    27431    661    2017-03-16 20:48:00    2017-03-16 20:48:00
74558    27432    498    2017-03-16 07:07:00    2017-03-16 07:07:00
74559    27432    891    2017-03-16 20:56:00    2017-03-16 20:56:00
74560    27432    768    2017-03-16 04:44:00    2017-03-16 04:44:00
74561    27432    890    2017-03-16 13:09:00    2017-03-16 13:09:00
74562    27432    928    2017-03-16 11:57:00    2017-03-16 11:57:00
74563    27433    829    2017-03-16 08:16:00    2017-03-16 08:16:00
74564    27433    724    2017-03-16 18:19:00    2017-03-16 18:19:00
74565    27433    633    2017-03-16 11:19:00    2017-03-16 11:19:00
74566    27433    477    2017-03-16 02:50:00    2017-03-16 02:50:00
74567    27433    750    2017-03-16 14:39:00    2017-03-16 14:39:00
74568    27434    680    2017-03-16 12:59:00    2017-03-16 12:59:00
74569    27434    729    2017-03-16 19:54:00    2017-03-16 19:54:00
74570    27434    858    2017-03-16 22:17:00    2017-03-16 22:17:00
74571    27434    732    2017-03-16 04:46:00    2017-03-16 04:46:00
74572    27434    707    2017-03-16 15:17:00    2017-03-16 15:17:00
74573    27435    868    2017-03-16 10:37:00    2017-03-16 10:37:00
74574    27435    632    2017-03-16 17:00:00    2017-03-16 17:00:00
74575    27435    826    2017-03-16 10:41:00    2017-03-16 10:41:00
74576    27435    533    2017-03-16 07:30:00    2017-03-16 07:30:00
74577    27435    564    2017-03-16 09:36:00    2017-03-16 09:36:00
74578    27436    850    2017-03-16 12:52:00    2017-03-16 12:52:00
74579    27436    737    2017-03-16 09:30:00    2017-03-16 09:30:00
74580    27436    871    2017-03-16 02:04:00    2017-03-16 02:04:00
74581    27436    648    2017-03-16 06:39:00    2017-03-16 06:39:00
74582    27436    769    2017-03-16 14:27:00    2017-03-16 14:27:00
74583    27437    953    2017-03-16 11:06:00    2017-03-16 11:06:00
74584    27437    944    2017-03-16 14:19:00    2017-03-16 14:19:00
74585    27437    630    2017-03-16 09:20:00    2017-03-16 09:20:00
74586    27437    740    2017-03-16 06:28:00    2017-03-16 06:28:00
74587    27437    747    2017-03-16 19:48:00    2017-03-16 19:48:00
74588    27438    717    2017-03-16 09:03:00    2017-03-16 09:03:00
74589    27438    718    2017-03-16 17:10:00    2017-03-16 17:10:00
74590    27438    718    2017-03-16 19:00:00    2017-03-16 19:00:00
74591    27438    756    2017-03-16 05:44:00    2017-03-16 05:44:00
74592    27438    909    2017-03-16 20:05:00    2017-03-16 20:05:00
74593    27439    785    2017-03-16 09:00:00    2017-03-16 09:00:00
74594    27439    819    2017-03-16 01:09:00    2017-03-16 01:09:00
74595    27439    564    2017-03-16 01:37:00    2017-03-16 01:37:00
74596    27439    525    2017-03-16 04:08:00    2017-03-16 04:08:00
74597    27439    583    2017-03-16 20:40:00    2017-03-16 20:40:00
74598    27440    570    2017-03-16 21:12:00    2017-03-16 21:12:00
74599    27440    791    2017-03-16 12:52:00    2017-03-16 12:52:00
74600    27440    827    2017-03-16 08:18:00    2017-03-16 08:18:00
74601    27440    602    2017-03-16 05:50:00    2017-03-16 05:50:00
74602    27440    637    2017-03-16 01:10:00    2017-03-16 01:10:00
74603    27441    830    2017-03-16 03:23:00    2017-03-16 03:23:00
74604    27441    792    2017-03-16 08:15:00    2017-03-16 08:15:00
74605    27441    867    2017-03-16 04:17:00    2017-03-16 04:17:00
74606    27441    906    2017-03-16 15:50:00    2017-03-16 15:50:00
74607    27441    942    2017-03-16 16:56:00    2017-03-16 16:56:00
74608    27442    738    2017-03-16 10:06:00    2017-03-16 10:06:00
74609    27442    557    2017-03-16 07:50:00    2017-03-16 07:50:00
74610    27442    910    2017-03-16 13:02:00    2017-03-16 13:02:00
74611    27442    770    2017-03-16 07:09:00    2017-03-16 07:09:00
74612    27442    780    2017-03-16 05:39:00    2017-03-16 05:39:00
74613    27443    626    2017-03-16 15:08:00    2017-03-16 15:08:00
74614    27443    587    2017-03-16 13:09:00    2017-03-16 13:09:00
74615    27443    723    2017-03-16 08:24:00    2017-03-16 08:24:00
74616    27443    560    2017-03-16 12:49:00    2017-03-16 12:49:00
74617    27443    772    2017-03-16 15:32:00    2017-03-16 15:32:00
74618    27444    863    2017-03-16 12:58:00    2017-03-16 12:58:00
74619    27444    717    2017-03-16 11:03:00    2017-03-16 11:03:00
74620    27444    915    2017-03-16 23:04:00    2017-03-16 23:04:00
74621    27444    870    2017-03-16 12:04:00    2017-03-16 12:04:00
74622    27444    569    2017-03-16 06:58:00    2017-03-16 06:58:00
74623    27445    467    2017-03-16 06:20:00    2017-03-16 06:20:00
74624    27445    528    2017-03-16 22:48:00    2017-03-16 22:48:00
74625    27445    549    2017-03-16 03:51:00    2017-03-16 03:51:00
74626    27445    845    2017-03-16 07:38:00    2017-03-16 07:38:00
74627    27445    721    2017-03-16 19:42:00    2017-03-16 19:42:00
74628    27446    620    2017-03-16 09:01:00    2017-03-16 09:01:00
74629    27446    812    2017-03-16 23:43:00    2017-03-16 23:43:00
74630    27446    578    2017-03-16 06:46:00    2017-03-16 06:46:00
74631    27446    740    2017-03-16 12:28:00    2017-03-16 12:28:00
74632    27446    780    2017-03-16 07:32:00    2017-03-16 07:32:00
74633    27447    690    2017-03-16 03:30:00    2017-03-16 03:30:00
74634    27447    795    2017-03-16 13:08:00    2017-03-16 13:08:00
74635    27447    729    2017-03-16 14:57:00    2017-03-16 14:57:00
74636    27447    826    2017-03-16 20:01:00    2017-03-16 20:01:00
74637    27447    830    2017-03-16 19:08:00    2017-03-16 19:08:00
74638    27448    547    2017-03-16 21:06:00    2017-03-16 21:06:00
74639    27448    889    2017-03-16 21:37:00    2017-03-16 21:37:00
74640    27448    807    2017-03-16 09:36:00    2017-03-16 09:36:00
74641    27448    487    2017-03-16 17:05:00    2017-03-16 17:05:00
74642    27448    796    2017-03-16 21:28:00    2017-03-16 21:28:00
74643    27449    524    2017-03-16 14:33:00    2017-03-16 14:33:00
74644    27449    786    2017-03-16 03:05:00    2017-03-16 03:05:00
74645    27449    496    2017-03-16 03:33:00    2017-03-16 03:33:00
74646    27449    503    2017-03-16 11:56:00    2017-03-16 11:56:00
74647    27449    595    2017-03-16 17:57:00    2017-03-16 17:57:00
74648    27450    825    2017-03-16 18:00:00    2017-03-16 18:00:00
74649    27450    850    2017-03-16 10:43:00    2017-03-16 10:43:00
74650    27450    808    2017-03-16 12:57:00    2017-03-16 12:57:00
74651    27450    944    2017-03-16 11:20:00    2017-03-16 11:20:00
74652    27450    635    2017-03-16 05:19:00    2017-03-16 05:19:00
74653    27451    816    2017-03-16 17:45:00    2017-03-16 17:45:00
74654    27451    576    2017-03-16 12:10:00    2017-03-16 12:10:00
74655    27451    844    2017-03-16 03:43:00    2017-03-16 03:43:00
74656    27451    502    2017-03-16 17:50:00    2017-03-16 17:50:00
74657    27451    872    2017-03-16 04:10:00    2017-03-16 04:10:00
74658    27452    708    2017-03-16 02:58:00    2017-03-16 02:58:00
74659    27452    649    2017-03-16 11:50:00    2017-03-16 11:50:00
74660    27452    500    2017-03-16 16:37:00    2017-03-16 16:37:00
74661    27452    840    2017-03-16 08:42:00    2017-03-16 08:42:00
74662    27452    954    2017-03-16 17:09:00    2017-03-16 17:09:00
74663    27453    837    2017-03-16 01:38:00    2017-03-16 01:38:00
74664    27453    519    2017-03-16 13:19:00    2017-03-16 13:19:00
74665    27453    852    2017-03-16 10:29:00    2017-03-16 10:29:00
74666    27453    630    2017-03-16 18:45:00    2017-03-16 18:45:00
74667    27453    688    2017-03-16 23:36:00    2017-03-16 23:36:00
74668    27454    929    2017-03-16 09:16:00    2017-03-16 09:16:00
74669    27454    837    2017-03-16 02:19:00    2017-03-16 02:19:00
74670    27454    935    2017-03-16 18:15:00    2017-03-16 18:15:00
74671    27454    821    2017-03-16 12:27:00    2017-03-16 12:27:00
74672    27454    820    2017-03-16 19:57:00    2017-03-16 19:57:00
74673    27455    844    2017-03-16 21:24:00    2017-03-16 21:24:00
74674    27455    854    2017-03-16 03:17:00    2017-03-16 03:17:00
74675    27455    755    2017-03-16 11:10:00    2017-03-16 11:10:00
74676    27455    876    2017-03-16 19:30:00    2017-03-16 19:30:00
74677    27455    711    2017-03-16 20:48:00    2017-03-16 20:48:00
74678    27456    730    2017-03-16 12:42:00    2017-03-16 12:42:00
74679    27456    548    2017-03-16 01:42:00    2017-03-16 01:42:00
74680    27456    640    2017-03-16 20:36:00    2017-03-16 20:36:00
74681    27456    783    2017-03-16 03:24:00    2017-03-16 03:24:00
74682    27456    520    2017-03-16 21:13:00    2017-03-16 21:13:00
74683    27457    851    2017-03-16 19:19:00    2017-03-16 19:19:00
74684    27457    516    2017-03-16 23:49:00    2017-03-16 23:49:00
74685    27457    860    2017-03-16 11:24:00    2017-03-16 11:24:00
74686    27457    632    2017-03-16 23:07:00    2017-03-16 23:07:00
74687    27457    464    2017-03-16 09:14:00    2017-03-16 09:14:00
74688    27458    585    2017-03-16 16:07:00    2017-03-16 16:07:00
74689    27458    490    2017-03-16 06:32:00    2017-03-16 06:32:00
74690    27458    661    2017-03-16 20:13:00    2017-03-16 20:13:00
74691    27458    936    2017-03-16 10:26:00    2017-03-16 10:26:00
74692    27458    685    2017-03-16 18:00:00    2017-03-16 18:00:00
74693    27459    492    2017-03-16 13:37:00    2017-03-16 13:37:00
74694    27459    728    2017-03-16 13:47:00    2017-03-16 13:47:00
74695    27459    846    2017-03-16 04:04:00    2017-03-16 04:04:00
74696    27459    755    2017-03-16 20:38:00    2017-03-16 20:38:00
74697    27459    750    2017-03-16 22:27:00    2017-03-16 22:27:00
74698    27460    937    2017-03-16 15:42:00    2017-03-16 15:42:00
74699    27460    666    2017-03-16 15:03:00    2017-03-16 15:03:00
74700    27460    511    2017-03-16 02:22:00    2017-03-16 02:22:00
74701    27460    854    2017-03-16 02:29:00    2017-03-16 02:29:00
74702    27460    711    2017-03-16 11:24:00    2017-03-16 11:24:00
74703    27461    889    2017-03-16 01:04:00    2017-03-16 01:04:00
74704    27461    749    2017-03-16 02:08:00    2017-03-16 02:08:00
74705    27461    818    2017-03-16 11:41:00    2017-03-16 11:41:00
74706    27461    527    2017-03-16 03:28:00    2017-03-16 03:28:00
74707    27461    637    2017-03-16 04:55:00    2017-03-16 04:55:00
74708    27462    879    2017-03-16 14:07:00    2017-03-16 14:07:00
74709    27462    850    2017-03-16 08:34:00    2017-03-16 08:34:00
74710    27462    520    2017-03-16 05:18:00    2017-03-16 05:18:00
74711    27462    572    2017-03-16 13:17:00    2017-03-16 13:17:00
74712    27462    861    2017-03-16 15:29:00    2017-03-16 15:29:00
74713    27463    618    2017-03-16 07:54:00    2017-03-16 07:54:00
74714    27463    881    2017-03-16 07:27:00    2017-03-16 07:27:00
74715    27463    777    2017-03-16 20:37:00    2017-03-16 20:37:00
74716    27463    528    2017-03-16 06:13:00    2017-03-16 06:13:00
74717    27463    504    2017-03-16 04:38:00    2017-03-16 04:38:00
74718    27464    889    2017-03-16 01:36:00    2017-03-16 01:36:00
74719    27464    646    2017-03-16 22:18:00    2017-03-16 22:18:00
74720    27464    830    2017-03-16 16:13:00    2017-03-16 16:13:00
74721    27464    819    2017-03-16 19:29:00    2017-03-16 19:29:00
74722    27464    837    2017-03-16 03:31:00    2017-03-16 03:31:00
74723    27465    759    2017-03-16 21:54:00    2017-03-16 21:54:00
74724    27465    792    2017-03-16 09:05:00    2017-03-16 09:05:00
74725    27465    846    2017-03-16 03:51:00    2017-03-16 03:51:00
74726    27465    927    2017-03-16 10:57:00    2017-03-16 10:57:00
74727    27465    492    2017-03-16 22:31:00    2017-03-16 22:31:00
74728    27466    583    2017-03-16 14:53:00    2017-03-16 14:53:00
74729    27466    889    2017-03-16 18:50:00    2017-03-16 18:50:00
74730    27466    653    2017-03-16 22:08:00    2017-03-16 22:08:00
74731    27466    816    2017-03-16 15:12:00    2017-03-16 15:12:00
74732    27466    603    2017-03-16 14:14:00    2017-03-16 14:14:00
74733    27467    719    2017-03-16 08:36:00    2017-03-16 08:36:00
74734    27467    875    2017-03-16 09:02:00    2017-03-16 09:02:00
74735    27467    616    2017-03-16 20:00:00    2017-03-16 20:00:00
74736    27467    781    2017-03-16 01:57:00    2017-03-16 01:57:00
74737    27467    933    2017-03-16 06:31:00    2017-03-16 06:31:00
74738    27468    863    2017-03-16 14:25:00    2017-03-16 14:25:00
74739    27468    553    2017-03-16 23:20:00    2017-03-16 23:20:00
74740    27468    873    2017-03-16 19:09:00    2017-03-16 19:09:00
74741    27468    926    2017-03-16 12:11:00    2017-03-16 12:11:00
74742    27468    880    2017-03-16 20:18:00    2017-03-16 20:18:00
74743    27469    616    2017-03-16 10:18:00    2017-03-16 10:18:00
74744    27469    826    2017-03-17 00:00:00    2017-03-17 00:00:00
74745    27469    952    2017-03-16 15:00:00    2017-03-16 15:00:00
74746    27469    594    2017-03-16 11:13:00    2017-03-16 11:13:00
74747    27469    826    2017-03-16 16:33:00    2017-03-16 16:33:00
74748    27470    834    2017-03-16 23:35:00    2017-03-16 23:35:00
74749    27470    490    2017-03-16 20:48:00    2017-03-16 20:48:00
74750    27470    620    2017-03-16 03:49:00    2017-03-16 03:49:00
74751    27470    680    2017-03-16 23:00:00    2017-03-16 23:00:00
74752    27470    668    2017-03-16 16:35:00    2017-03-16 16:35:00
74753    27471    520    2017-03-16 08:51:00    2017-03-16 08:51:00
74754    27471    750    2017-03-16 08:01:00    2017-03-16 08:01:00
74755    27471    595    2017-03-16 22:38:00    2017-03-16 22:38:00
74756    27471    789    2017-03-16 17:58:00    2017-03-16 17:58:00
74757    27471    464    2017-03-16 03:03:00    2017-03-16 03:03:00
74758    27472    479    2017-03-16 22:17:00    2017-03-16 22:17:00
74759    27472    958    2017-03-16 15:24:00    2017-03-16 15:24:00
74760    27472    928    2017-03-16 22:00:00    2017-03-16 22:00:00
74761    27472    856    2017-03-16 04:04:00    2017-03-16 04:04:00
74762    27472    960    2017-03-16 06:48:00    2017-03-16 06:48:00
74763    27473    485    2017-03-16 20:55:00    2017-03-16 20:55:00
74764    27473    911    2017-03-16 09:49:00    2017-03-16 09:49:00
74765    27473    563    2017-03-16 12:12:00    2017-03-16 12:12:00
74766    27473    817    2017-03-16 03:11:00    2017-03-16 03:11:00
74767    27473    812    2017-03-16 19:57:00    2017-03-16 19:57:00
74768    27474    508    2017-03-16 11:08:00    2017-03-16 11:08:00
74769    27474    528    2017-03-16 19:04:00    2017-03-16 19:04:00
74770    27474    782    2017-03-17 00:00:00    2017-03-17 00:00:00
74771    27474    504    2017-03-16 22:42:00    2017-03-16 22:42:00
74772    27474    947    2017-03-16 12:05:00    2017-03-16 12:05:00
74773    27475    512    2017-03-16 16:55:00    2017-03-16 16:55:00
74774    27475    841    2017-03-16 08:49:00    2017-03-16 08:49:00
74775    27475    832    2017-03-16 11:09:00    2017-03-16 11:09:00
74776    27475    526    2017-03-16 05:20:00    2017-03-16 05:20:00
74777    27475    566    2017-03-16 06:08:00    2017-03-16 06:08:00
74778    27476    620    2017-03-16 09:57:00    2017-03-16 09:57:00
74779    27476    846    2017-03-16 19:24:00    2017-03-16 19:24:00
74780    27476    869    2017-03-16 09:16:00    2017-03-16 09:16:00
74781    27476    541    2017-03-16 08:28:00    2017-03-16 08:28:00
74782    27476    932    2017-03-16 23:44:00    2017-03-16 23:44:00
74783    27477    689    2017-03-16 14:47:00    2017-03-16 14:47:00
74784    27477    517    2017-03-16 21:47:00    2017-03-16 21:47:00
74785    27477    945    2017-03-16 06:43:00    2017-03-16 06:43:00
74786    27477    901    2017-03-16 09:14:00    2017-03-16 09:14:00
74787    27477    809    2017-03-16 15:19:00    2017-03-16 15:19:00
74788    27478    467    2017-03-16 18:10:00    2017-03-16 18:10:00
74789    27478    629    2017-03-16 16:02:00    2017-03-16 16:02:00
74790    27478    498    2017-03-16 07:26:00    2017-03-16 07:26:00
74791    27478    832    2017-03-16 02:36:00    2017-03-16 02:36:00
74792    27478    495    2017-03-16 22:12:00    2017-03-16 22:12:00
74793    27479    656    2017-03-16 19:47:00    2017-03-16 19:47:00
74794    27479    916    2017-03-16 04:27:00    2017-03-16 04:27:00
74795    27479    688    2017-03-16 16:25:00    2017-03-16 16:25:00
74796    27479    938    2017-03-16 11:10:00    2017-03-16 11:10:00
74797    27479    711    2017-03-16 02:05:00    2017-03-16 02:05:00
74798    27480    542    2017-03-16 12:36:00    2017-03-16 12:36:00
74799    27480    625    2017-03-16 07:39:00    2017-03-16 07:39:00
74800    27480    508    2017-03-16 21:12:00    2017-03-16 21:12:00
74801    27480    955    2017-03-16 05:20:00    2017-03-16 05:20:00
74802    27480    553    2017-03-16 23:22:00    2017-03-16 23:22:00
74803    27481    679    2017-03-16 12:13:00    2017-03-16 12:13:00
74804    27481    932    2017-03-16 23:38:00    2017-03-16 23:38:00
74805    27481    882    2017-03-16 12:32:00    2017-03-16 12:32:00
74806    27481    926    2017-03-16 18:09:00    2017-03-16 18:09:00
74807    27481    640    2017-03-16 23:44:00    2017-03-16 23:44:00
74808    27482    736    2017-03-16 13:15:00    2017-03-16 13:15:00
74809    27482    759    2017-03-16 02:42:00    2017-03-16 02:42:00
74810    27482    578    2017-03-16 23:46:00    2017-03-16 23:46:00
74811    27482    778    2017-03-16 17:58:00    2017-03-16 17:58:00
74812    27482    838    2017-03-16 07:11:00    2017-03-16 07:11:00
74813    27483    871    2017-03-16 07:07:00    2017-03-16 07:07:00
74814    27483    648    2017-03-16 17:42:00    2017-03-16 17:42:00
74815    27483    568    2017-03-16 05:07:00    2017-03-16 05:07:00
74816    27483    802    2017-03-16 11:29:00    2017-03-16 11:29:00
74817    27483    582    2017-03-16 12:13:00    2017-03-16 12:13:00
74818    27484    624    2017-03-16 08:01:00    2017-03-16 08:01:00
74819    27484    512    2017-03-16 15:38:00    2017-03-16 15:38:00
74820    27484    590    2017-03-16 17:20:00    2017-03-16 17:20:00
74821    27484    843    2017-03-16 18:32:00    2017-03-16 18:32:00
74822    27484    882    2017-03-16 06:43:00    2017-03-16 06:43:00
74823    27485    699    2017-03-16 23:55:00    2017-03-16 23:55:00
74824    27485    608    2017-03-16 05:46:00    2017-03-16 05:46:00
74825    27485    595    2017-03-16 05:06:00    2017-03-16 05:06:00
74826    27485    881    2017-03-16 19:40:00    2017-03-16 19:40:00
74827    27485    643    2017-03-16 18:45:00    2017-03-16 18:45:00
74828    27486    859    2017-03-16 05:52:00    2017-03-16 05:52:00
74829    27486    728    2017-03-16 21:16:00    2017-03-16 21:16:00
74830    27486    553    2017-03-16 10:39:00    2017-03-16 10:39:00
74831    27486    576    2017-03-16 05:48:00    2017-03-16 05:48:00
74832    27486    890    2017-03-16 05:41:00    2017-03-16 05:41:00
74833    27487    656    2017-03-16 04:34:00    2017-03-16 04:34:00
74834    27487    645    2017-03-16 06:31:00    2017-03-16 06:31:00
74835    27487    508    2017-03-16 18:33:00    2017-03-16 18:33:00
74836    27487    588    2017-03-16 14:38:00    2017-03-16 14:38:00
74837    27487    640    2017-03-16 21:10:00    2017-03-16 21:10:00
74838    27488    922    2017-03-16 01:20:00    2017-03-16 01:20:00
74839    27488    570    2017-03-16 07:35:00    2017-03-16 07:35:00
74840    27488    597    2017-03-16 11:07:00    2017-03-16 11:07:00
74841    27488    862    2017-03-16 03:38:00    2017-03-16 03:38:00
74842    27488    841    2017-03-16 05:06:00    2017-03-16 05:06:00
74843    27489    810    2017-03-16 16:45:00    2017-03-16 16:45:00
74844    27489    960    2017-03-16 10:11:00    2017-03-16 10:11:00
74845    27489    560    2017-03-16 09:05:00    2017-03-16 09:05:00
74846    27489    530    2017-03-16 11:34:00    2017-03-16 11:34:00
74847    27489    626    2017-03-16 15:39:00    2017-03-16 15:39:00
74848    27490    848    2017-03-16 17:40:00    2017-03-16 17:40:00
74849    27490    664    2017-03-16 10:48:00    2017-03-16 10:48:00
74850    27490    780    2017-03-16 01:24:00    2017-03-16 01:24:00
74851    27490    941    2017-03-16 12:37:00    2017-03-16 12:37:00
74852    27490    563    2017-03-16 15:21:00    2017-03-16 15:21:00
74853    27491    902    2017-03-16 21:11:00    2017-03-16 21:11:00
74854    27491    605    2017-03-16 08:50:00    2017-03-16 08:50:00
74855    27491    630    2017-03-16 05:47:00    2017-03-16 05:47:00
74856    27491    612    2017-03-16 04:03:00    2017-03-16 04:03:00
74857    27491    817    2017-03-16 10:43:00    2017-03-16 10:43:00
74858    27492    762    2017-03-16 12:54:00    2017-03-16 12:54:00
74859    27492    696    2017-03-16 06:19:00    2017-03-16 06:19:00
74860    27492    483    2017-03-16 19:16:00    2017-03-16 19:16:00
74861    27492    488    2017-03-16 18:45:00    2017-03-16 18:45:00
74862    27492    788    2017-03-16 08:04:00    2017-03-16 08:04:00
74863    27493    777    2017-03-16 01:18:00    2017-03-16 01:18:00
74864    27493    887    2017-03-16 04:04:00    2017-03-16 04:04:00
74865    27493    687    2017-03-16 16:23:00    2017-03-16 16:23:00
74866    27493    814    2017-03-16 02:28:00    2017-03-16 02:28:00
74867    27493    570    2017-03-16 23:27:00    2017-03-16 23:27:00
74868    27494    675    2017-03-16 05:13:00    2017-03-16 05:13:00
74869    27494    841    2017-03-16 20:06:00    2017-03-16 20:06:00
74870    27494    509    2017-03-16 10:24:00    2017-03-16 10:24:00
74871    27494    526    2017-03-16 09:33:00    2017-03-16 09:33:00
74872    27494    794    2017-03-16 14:30:00    2017-03-16 14:30:00
74873    27495    594    2017-03-16 23:36:00    2017-03-16 23:36:00
74874    27495    686    2017-03-16 05:57:00    2017-03-16 05:57:00
74875    27495    919    2017-03-16 03:00:00    2017-03-16 03:00:00
74876    27495    914    2017-03-16 22:35:00    2017-03-16 22:35:00
74877    27495    520    2017-03-16 15:24:00    2017-03-16 15:24:00
74878    27496    908    2017-03-16 01:14:00    2017-03-16 01:14:00
74879    27496    825    2017-03-16 17:16:00    2017-03-16 17:16:00
74880    27496    949    2017-03-16 16:12:00    2017-03-16 16:12:00
74881    27496    873    2017-03-16 02:01:00    2017-03-16 02:01:00
74882    27496    541    2017-03-16 01:45:00    2017-03-16 01:45:00
74883    27497    614    2017-03-16 02:32:00    2017-03-16 02:32:00
74884    27497    532    2017-03-16 01:03:00    2017-03-16 01:03:00
74885    27497    595    2017-03-16 16:10:00    2017-03-16 16:10:00
74886    27497    683    2017-03-16 18:41:00    2017-03-16 18:41:00
74887    27497    485    2017-03-16 04:42:00    2017-03-16 04:42:00
74888    27498    541    2017-03-16 18:54:00    2017-03-16 18:54:00
74889    27498    612    2017-03-16 15:34:00    2017-03-16 15:34:00
74890    27498    881    2017-03-16 09:18:00    2017-03-16 09:18:00
74891    27498    784    2017-03-16 10:17:00    2017-03-16 10:17:00
74892    27498    551    2017-03-16 01:04:00    2017-03-16 01:04:00
74893    27499    464    2017-03-16 18:03:00    2017-03-16 18:03:00
74894    27499    468    2017-03-16 18:40:00    2017-03-16 18:40:00
74895    27499    938    2017-03-16 13:00:00    2017-03-16 13:00:00
74896    27499    537    2017-03-16 18:38:00    2017-03-16 18:38:00
74897    27499    466    2017-03-16 17:15:00    2017-03-16 17:15:00
74898    27500    603    2017-03-16 19:05:00    2017-03-16 19:05:00
74899    27500    667    2017-03-16 16:16:00    2017-03-16 16:16:00
74900    27500    780    2017-03-16 23:10:00    2017-03-16 23:10:00
74901    27500    524    2017-03-16 11:54:00    2017-03-16 11:54:00
74902    27500    489    2017-03-16 14:47:00    2017-03-16 14:47:00
74903    27501    639    2017-03-16 15:04:00    2017-03-16 15:04:00
74904    27501    670    2017-03-16 15:41:00    2017-03-16 15:41:00
74905    27501    694    2017-03-16 22:57:00    2017-03-16 22:57:00
74906    27501    476    2017-03-16 23:07:00    2017-03-16 23:07:00
74907    27501    678    2017-03-16 19:49:00    2017-03-16 19:49:00
74908    27502    881    2017-03-16 06:21:00    2017-03-16 06:21:00
74909    27502    692    2017-03-16 21:02:00    2017-03-16 21:02:00
74910    27502    833    2017-03-16 13:06:00    2017-03-16 13:06:00
74911    27502    889    2017-03-16 05:38:00    2017-03-16 05:38:00
74912    27502    483    2017-03-16 14:36:00    2017-03-16 14:36:00
74913    27503    472    2017-03-17 07:54:00    2017-03-17 07:54:00
74914    27503    874    2017-03-17 08:16:00    2017-03-17 08:16:00
74915    27503    548    2017-03-17 07:39:00    2017-03-17 07:39:00
74916    27503    938    2017-03-17 11:55:00    2017-03-17 11:55:00
74917    27503    623    2017-03-17 01:18:00    2017-03-17 01:18:00
74918    27504    728    2017-03-17 12:04:00    2017-03-17 12:04:00
74919    27504    952    2017-03-17 20:57:00    2017-03-17 20:57:00
74920    27504    900    2017-03-17 05:33:00    2017-03-17 05:33:00
74921    27504    630    2017-03-17 11:26:00    2017-03-17 11:26:00
74922    27504    874    2017-03-17 06:30:00    2017-03-17 06:30:00
74923    27505    467    2017-03-17 14:41:00    2017-03-17 14:41:00
74924    27505    674    2017-03-17 06:27:00    2017-03-17 06:27:00
74925    27505    844    2017-03-17 07:06:00    2017-03-17 07:06:00
74926    27505    593    2017-03-17 11:38:00    2017-03-17 11:38:00
74927    27505    472    2017-03-17 20:25:00    2017-03-17 20:25:00
74928    27506    641    2017-03-17 20:07:00    2017-03-17 20:07:00
74929    27506    810    2017-03-17 14:32:00    2017-03-17 14:32:00
74930    27506    553    2017-03-17 04:08:00    2017-03-17 04:08:00
74931    27506    949    2017-03-17 04:34:00    2017-03-17 04:34:00
74932    27506    580    2017-03-17 21:06:00    2017-03-17 21:06:00
74933    27507    652    2017-03-17 18:45:00    2017-03-17 18:45:00
74934    27507    901    2017-03-17 10:54:00    2017-03-17 10:54:00
74935    27507    758    2017-03-17 08:17:00    2017-03-17 08:17:00
74936    27507    676    2017-03-17 16:22:00    2017-03-17 16:22:00
74937    27507    583    2017-03-17 05:02:00    2017-03-17 05:02:00
74938    27508    501    2017-03-17 04:06:00    2017-03-17 04:06:00
74939    27508    809    2017-03-17 14:26:00    2017-03-17 14:26:00
74940    27508    510    2017-03-17 17:37:00    2017-03-17 17:37:00
74941    27508    793    2017-03-17 18:03:00    2017-03-17 18:03:00
74942    27508    570    2017-03-17 05:39:00    2017-03-17 05:39:00
74943    27509    468    2017-03-17 12:32:00    2017-03-17 12:32:00
74944    27509    922    2017-03-17 10:28:00    2017-03-17 10:28:00
74945    27509    518    2017-03-17 12:11:00    2017-03-17 12:11:00
74946    27509    857    2017-03-17 17:55:00    2017-03-17 17:55:00
74947    27509    873    2017-03-17 20:51:00    2017-03-17 20:51:00
74948    27510    479    2017-03-17 04:46:00    2017-03-17 04:46:00
74949    27510    606    2017-03-17 22:35:00    2017-03-17 22:35:00
74950    27510    825    2017-03-17 19:03:00    2017-03-17 19:03:00
74951    27510    688    2017-03-17 02:06:00    2017-03-17 02:06:00
74952    27510    700    2017-03-17 04:51:00    2017-03-17 04:51:00
74953    27511    902    2017-03-17 09:23:00    2017-03-17 09:23:00
74954    27511    784    2017-03-17 03:18:00    2017-03-17 03:18:00
74955    27511    697    2017-03-17 23:50:00    2017-03-17 23:50:00
74956    27511    492    2017-03-17 10:39:00    2017-03-17 10:39:00
74957    27511    862    2017-03-17 08:08:00    2017-03-17 08:08:00
74958    27512    655    2017-03-17 02:20:00    2017-03-17 02:20:00
74959    27512    876    2017-03-17 06:29:00    2017-03-17 06:29:00
74960    27512    649    2017-03-17 11:28:00    2017-03-17 11:28:00
74961    27512    556    2017-03-17 05:37:00    2017-03-17 05:37:00
74962    27512    508    2017-03-17 09:45:00    2017-03-17 09:45:00
74963    27513    917    2017-03-17 09:31:00    2017-03-17 09:31:00
74964    27513    495    2017-03-17 22:44:00    2017-03-17 22:44:00
74965    27513    779    2017-03-17 22:55:00    2017-03-17 22:55:00
74966    27513    950    2017-03-17 20:09:00    2017-03-17 20:09:00
74967    27513    547    2017-03-17 21:42:00    2017-03-17 21:42:00
74968    27514    880    2017-03-17 21:09:00    2017-03-17 21:09:00
74969    27514    702    2017-03-17 03:11:00    2017-03-17 03:11:00
74970    27514    902    2017-03-17 20:29:00    2017-03-17 20:29:00
74971    27514    849    2017-03-17 05:26:00    2017-03-17 05:26:00
74972    27514    464    2017-03-17 12:43:00    2017-03-17 12:43:00
74973    27515    505    2017-03-17 01:28:00    2017-03-17 01:28:00
74974    27515    639    2017-03-17 14:14:00    2017-03-17 14:14:00
74975    27515    467    2017-03-17 04:17:00    2017-03-17 04:17:00
74976    27515    750    2017-03-17 21:19:00    2017-03-17 21:19:00
74977    27515    487    2017-03-17 11:35:00    2017-03-17 11:35:00
74978    27516    679    2017-03-17 06:25:00    2017-03-17 06:25:00
74979    27516    684    2017-03-17 12:16:00    2017-03-17 12:16:00
74980    27516    606    2017-03-17 20:12:00    2017-03-17 20:12:00
74981    27516    687    2017-03-17 11:28:00    2017-03-17 11:28:00
74982    27516    531    2017-03-17 03:44:00    2017-03-17 03:44:00
74983    27517    873    2017-03-17 06:25:00    2017-03-17 06:25:00
74984    27517    932    2017-03-17 10:18:00    2017-03-17 10:18:00
74985    27517    841    2017-03-17 19:37:00    2017-03-17 19:37:00
74986    27517    913    2017-03-17 04:55:00    2017-03-17 04:55:00
74987    27517    961    2017-03-17 21:25:00    2017-03-17 21:25:00
74988    27518    883    2017-03-17 05:06:00    2017-03-17 05:06:00
74989    27518    825    2017-03-17 11:49:00    2017-03-17 11:49:00
74990    27518    861    2017-03-17 12:41:00    2017-03-17 12:41:00
74991    27518    651    2017-03-17 08:37:00    2017-03-17 08:37:00
74992    27518    784    2017-03-17 03:29:00    2017-03-17 03:29:00
74993    27519    557    2017-03-17 04:10:00    2017-03-17 04:10:00
74994    27519    610    2017-03-17 15:52:00    2017-03-17 15:52:00
74995    27519    534    2017-03-17 02:31:00    2017-03-17 02:31:00
74996    27519    828    2017-03-17 21:00:00    2017-03-17 21:00:00
74997    27519    661    2017-03-17 03:51:00    2017-03-17 03:51:00
74998    27520    937    2017-03-17 14:46:00    2017-03-17 14:46:00
74999    27520    924    2017-03-17 02:29:00    2017-03-17 02:29:00
75000    27520    872    2017-03-17 12:07:00    2017-03-17 12:07:00
75001    27520    643    2017-03-17 11:11:00    2017-03-17 11:11:00
75002    27520    573    2017-03-17 02:58:00    2017-03-17 02:58:00
75003    27521    749    2017-03-17 23:02:00    2017-03-17 23:02:00
75004    27521    496    2017-03-17 11:07:00    2017-03-17 11:07:00
75005    27521    803    2017-03-17 21:09:00    2017-03-17 21:09:00
75006    27521    659    2017-03-17 03:33:00    2017-03-17 03:33:00
75007    27521    721    2017-03-17 06:01:00    2017-03-17 06:01:00
75008    27522    722    2017-03-17 16:25:00    2017-03-17 16:25:00
75009    27522    928    2017-03-17 12:02:00    2017-03-17 12:02:00
75010    27522    829    2017-03-17 14:12:00    2017-03-17 14:12:00
75011    27522    658    2017-03-17 02:17:00    2017-03-17 02:17:00
75012    27522    494    2017-03-17 08:47:00    2017-03-17 08:47:00
75013    27523    686    2017-03-17 09:47:00    2017-03-17 09:47:00
75014    27523    705    2017-03-17 23:32:00    2017-03-17 23:32:00
75015    27523    889    2017-03-17 11:06:00    2017-03-17 11:06:00
75016    27523    859    2017-03-17 09:57:00    2017-03-17 09:57:00
75017    27523    618    2017-03-17 17:02:00    2017-03-17 17:02:00
75018    27524    560    2017-03-17 06:09:00    2017-03-17 06:09:00
75019    27524    714    2017-03-17 08:35:00    2017-03-17 08:35:00
75020    27524    767    2017-03-17 05:05:00    2017-03-17 05:05:00
75021    27524    545    2017-03-17 14:26:00    2017-03-17 14:26:00
75022    27524    766    2017-03-17 19:55:00    2017-03-17 19:55:00
75023    27525    939    2017-03-17 22:59:00    2017-03-17 22:59:00
75024    27525    574    2017-03-17 01:19:00    2017-03-17 01:19:00
75025    27525    722    2017-03-17 09:56:00    2017-03-17 09:56:00
75026    27525    608    2017-03-17 09:01:00    2017-03-17 09:01:00
75027    27525    479    2017-03-17 18:45:00    2017-03-17 18:45:00
75028    27526    628    2017-03-17 19:47:00    2017-03-17 19:47:00
75029    27526    575    2017-03-17 21:08:00    2017-03-17 21:08:00
75030    27526    466    2017-03-17 18:09:00    2017-03-17 18:09:00
75031    27526    827    2017-03-17 22:17:00    2017-03-17 22:17:00
75032    27526    718    2017-03-17 21:25:00    2017-03-17 21:25:00
75033    27527    928    2017-03-17 04:04:00    2017-03-17 04:04:00
75034    27527    842    2017-03-17 04:48:00    2017-03-17 04:48:00
75035    27527    539    2017-03-17 06:25:00    2017-03-17 06:25:00
75036    27527    947    2017-03-17 20:28:00    2017-03-17 20:28:00
75037    27527    794    2017-03-17 18:46:00    2017-03-17 18:46:00
75038    27528    809    2017-03-17 19:38:00    2017-03-17 19:38:00
75039    27528    660    2017-03-17 09:37:00    2017-03-17 09:37:00
75040    27528    484    2017-03-17 22:07:00    2017-03-17 22:07:00
75041    27528    855    2017-03-17 22:35:00    2017-03-17 22:35:00
75042    27528    564    2017-03-17 23:00:00    2017-03-17 23:00:00
75043    27529    504    2017-03-17 16:02:00    2017-03-17 16:02:00
75044    27529    479    2017-03-17 22:19:00    2017-03-17 22:19:00
75045    27529    546    2017-03-17 23:23:00    2017-03-17 23:23:00
75046    27529    527    2017-03-17 01:11:00    2017-03-17 01:11:00
75047    27529    671    2017-03-17 13:45:00    2017-03-17 13:45:00
75048    27530    663    2017-03-17 03:50:00    2017-03-17 03:50:00
75049    27530    925    2017-03-17 01:32:00    2017-03-17 01:32:00
75050    27530    778    2017-03-17 06:21:00    2017-03-17 06:21:00
75051    27530    800    2017-03-17 12:21:00    2017-03-17 12:21:00
75052    27530    475    2017-03-17 10:25:00    2017-03-17 10:25:00
75053    27531    869    2017-03-17 20:54:00    2017-03-17 20:54:00
75054    27531    509    2017-03-17 11:33:00    2017-03-17 11:33:00
75055    27531    860    2017-03-17 09:14:00    2017-03-17 09:14:00
75056    27531    606    2017-03-17 11:58:00    2017-03-17 11:58:00
75057    27531    904    2017-03-17 12:48:00    2017-03-17 12:48:00
75058    27532    829    2017-03-17 02:20:00    2017-03-17 02:20:00
75059    27532    729    2017-03-17 10:49:00    2017-03-17 10:49:00
75060    27532    713    2017-03-17 06:18:00    2017-03-17 06:18:00
75061    27532    552    2017-03-17 19:11:00    2017-03-17 19:11:00
75062    27532    585    2017-03-17 18:00:00    2017-03-17 18:00:00
75063    27533    738    2017-03-17 10:16:00    2017-03-17 10:16:00
75064    27533    883    2017-03-17 02:00:00    2017-03-17 02:00:00
75065    27533    785    2017-03-17 22:25:00    2017-03-17 22:25:00
75066    27533    788    2017-03-17 04:04:00    2017-03-17 04:04:00
75067    27533    760    2017-03-17 04:34:00    2017-03-17 04:34:00
75068    27534    846    2017-03-17 08:42:00    2017-03-17 08:42:00
75069    27534    733    2017-03-17 07:51:00    2017-03-17 07:51:00
75070    27534    592    2017-03-17 18:51:00    2017-03-17 18:51:00
75071    27534    946    2017-03-17 10:00:00    2017-03-17 10:00:00
75072    27534    558    2017-03-17 03:27:00    2017-03-17 03:27:00
75073    27535    654    2017-03-17 05:11:00    2017-03-17 05:11:00
75074    27535    846    2017-03-17 21:44:00    2017-03-17 21:44:00
75075    27535    909    2017-03-17 20:51:00    2017-03-17 20:51:00
75076    27535    769    2017-03-17 15:57:00    2017-03-17 15:57:00
75077    27535    575    2017-03-17 23:39:00    2017-03-17 23:39:00
75078    27536    955    2017-03-17 09:39:00    2017-03-17 09:39:00
75079    27536    642    2017-03-17 05:25:00    2017-03-17 05:25:00
75080    27536    805    2017-03-17 11:40:00    2017-03-17 11:40:00
75081    27536    482    2017-03-17 19:21:00    2017-03-17 19:21:00
75082    27536    580    2017-03-17 16:39:00    2017-03-17 16:39:00
75083    27537    781    2017-03-17 14:27:00    2017-03-17 14:27:00
75084    27537    831    2017-03-17 11:03:00    2017-03-17 11:03:00
75085    27537    632    2017-03-17 16:35:00    2017-03-17 16:35:00
75086    27537    692    2017-03-17 15:11:00    2017-03-17 15:11:00
75087    27537    692    2017-03-17 06:46:00    2017-03-17 06:46:00
75088    27538    873    2017-03-17 18:38:00    2017-03-17 18:38:00
75089    27538    900    2017-03-17 09:26:00    2017-03-17 09:26:00
75090    27538    926    2017-03-17 10:34:00    2017-03-17 10:34:00
75091    27538    522    2017-03-17 07:10:00    2017-03-17 07:10:00
75092    27538    617    2017-03-17 18:39:00    2017-03-17 18:39:00
75093    27539    834    2017-03-17 18:19:00    2017-03-17 18:19:00
75094    27539    639    2017-03-17 17:45:00    2017-03-17 17:45:00
75095    27539    530    2017-03-17 15:07:00    2017-03-17 15:07:00
75096    27539    659    2017-03-17 05:58:00    2017-03-17 05:58:00
75097    27539    926    2017-03-17 23:03:00    2017-03-17 23:03:00
75098    27540    872    2017-03-17 04:51:00    2017-03-17 04:51:00
75099    27540    514    2017-03-17 03:51:00    2017-03-17 03:51:00
75100    27540    901    2017-03-17 17:49:00    2017-03-17 17:49:00
75101    27540    767    2017-03-17 03:41:00    2017-03-17 03:41:00
75102    27540    950    2017-03-17 01:52:00    2017-03-17 01:52:00
75103    27541    528    2017-03-17 19:11:00    2017-03-17 19:11:00
75104    27541    483    2017-03-17 06:20:00    2017-03-17 06:20:00
75105    27541    909    2017-03-17 09:18:00    2017-03-17 09:18:00
75106    27541    546    2017-03-17 06:11:00    2017-03-17 06:11:00
75107    27541    471    2017-03-17 18:32:00    2017-03-17 18:32:00
75108    27542    566    2017-03-17 05:51:00    2017-03-17 05:51:00
75109    27542    849    2017-03-17 02:43:00    2017-03-17 02:43:00
75110    27542    923    2017-03-17 06:29:00    2017-03-17 06:29:00
75111    27542    731    2017-03-17 22:37:00    2017-03-17 22:37:00
75112    27542    954    2017-03-17 16:08:00    2017-03-17 16:08:00
75113    27543    558    2017-03-17 12:58:00    2017-03-17 12:58:00
75114    27543    644    2017-03-17 23:56:00    2017-03-17 23:56:00
75115    27543    895    2017-03-17 20:03:00    2017-03-17 20:03:00
75116    27543    508    2017-03-17 04:49:00    2017-03-17 04:49:00
75117    27543    538    2017-03-17 06:37:00    2017-03-17 06:37:00
75118    27544    838    2017-03-18 19:06:00    2017-03-18 19:06:00
75119    27544    758    2017-03-18 22:12:00    2017-03-18 22:12:00
75120    27544    577    2017-03-18 20:06:00    2017-03-18 20:06:00
75121    27544    777    2017-03-18 04:05:00    2017-03-18 04:05:00
75122    27544    781    2017-03-18 01:19:00    2017-03-18 01:19:00
75123    27545    524    2017-03-18 06:17:00    2017-03-18 06:17:00
75124    27545    959    2017-03-18 18:14:00    2017-03-18 18:14:00
75125    27545    703    2017-03-18 17:14:00    2017-03-18 17:14:00
75126    27545    619    2017-03-18 23:31:00    2017-03-18 23:31:00
75127    27545    518    2017-03-18 06:19:00    2017-03-18 06:19:00
75128    27546    784    2017-03-18 18:20:00    2017-03-18 18:20:00
75129    27546    623    2017-03-18 01:02:00    2017-03-18 01:02:00
75130    27546    830    2017-03-18 09:10:00    2017-03-18 09:10:00
75131    27546    689    2017-03-18 05:11:00    2017-03-18 05:11:00
75132    27546    482    2017-03-18 19:09:00    2017-03-18 19:09:00
75133    27547    846    2017-03-18 09:33:00    2017-03-18 09:33:00
75134    27547    919    2017-03-18 08:26:00    2017-03-18 08:26:00
75135    27547    709    2017-03-18 03:23:00    2017-03-18 03:23:00
75136    27547    815    2017-03-18 10:50:00    2017-03-18 10:50:00
75137    27547    673    2017-03-18 20:42:00    2017-03-18 20:42:00
75138    27548    725    2017-03-18 14:38:00    2017-03-18 14:38:00
75139    27548    726    2017-03-18 18:51:00    2017-03-18 18:51:00
75140    27548    908    2017-03-18 03:37:00    2017-03-18 03:37:00
75141    27548    938    2017-03-18 20:38:00    2017-03-18 20:38:00
75142    27548    540    2017-03-18 21:17:00    2017-03-18 21:17:00
75143    27549    733    2017-03-18 01:27:00    2017-03-18 01:27:00
75144    27549    884    2017-03-18 01:31:00    2017-03-18 01:31:00
75145    27549    526    2017-03-18 09:51:00    2017-03-18 09:51:00
75146    27549    787    2017-03-18 07:25:00    2017-03-18 07:25:00
75147    27549    757    2017-03-18 23:51:00    2017-03-18 23:51:00
75148    27550    874    2017-03-18 07:45:00    2017-03-18 07:45:00
75149    27550    647    2017-03-18 06:03:00    2017-03-18 06:03:00
75150    27550    802    2017-03-18 07:25:00    2017-03-18 07:25:00
75151    27550    592    2017-03-18 19:15:00    2017-03-18 19:15:00
75152    27550    542    2017-03-18 05:49:00    2017-03-18 05:49:00
75153    27551    484    2017-03-18 23:07:00    2017-03-18 23:07:00
75154    27551    916    2017-03-18 17:42:00    2017-03-18 17:42:00
75155    27551    807    2017-03-18 20:28:00    2017-03-18 20:28:00
75156    27551    879    2017-03-18 17:32:00    2017-03-18 17:32:00
75157    27551    678    2017-03-18 23:11:00    2017-03-18 23:11:00
75158    27552    614    2017-03-18 04:21:00    2017-03-18 04:21:00
75159    27552    876    2017-03-18 08:06:00    2017-03-18 08:06:00
75160    27552    697    2017-03-18 19:13:00    2017-03-18 19:13:00
75161    27552    770    2017-03-18 12:41:00    2017-03-18 12:41:00
75162    27552    599    2017-03-18 05:05:00    2017-03-18 05:05:00
75163    27553    463    2017-03-18 17:31:00    2017-03-18 17:31:00
75164    27553    500    2017-03-18 10:38:00    2017-03-18 10:38:00
75165    27553    820    2017-03-18 03:18:00    2017-03-18 03:18:00
75166    27553    862    2017-03-18 15:26:00    2017-03-18 15:26:00
75167    27553    782    2017-03-18 19:00:00    2017-03-18 19:00:00
75168    27554    676    2017-03-18 09:47:00    2017-03-18 09:47:00
75169    27554    771    2017-03-18 12:17:00    2017-03-18 12:17:00
75170    27554    910    2017-03-18 20:55:00    2017-03-18 20:55:00
75171    27554    767    2017-03-18 15:47:00    2017-03-18 15:47:00
75172    27554    791    2017-03-18 06:34:00    2017-03-18 06:34:00
75173    27555    649    2017-03-18 04:36:00    2017-03-18 04:36:00
75174    27555    683    2017-03-18 22:32:00    2017-03-18 22:32:00
75175    27555    771    2017-03-18 09:00:00    2017-03-18 09:00:00
75176    27555    819    2017-03-18 23:06:00    2017-03-18 23:06:00
75177    27555    720    2017-03-18 12:55:00    2017-03-18 12:55:00
75178    27556    911    2017-03-18 06:50:00    2017-03-18 06:50:00
75179    27556    945    2017-03-18 05:50:00    2017-03-18 05:50:00
75180    27556    463    2017-03-18 15:23:00    2017-03-18 15:23:00
75181    27556    744    2017-03-18 02:35:00    2017-03-18 02:35:00
75182    27556    549    2017-03-18 15:03:00    2017-03-18 15:03:00
75183    27557    514    2017-03-18 16:41:00    2017-03-18 16:41:00
75184    27557    725    2017-03-18 09:03:00    2017-03-18 09:03:00
75185    27557    556    2017-03-18 22:01:00    2017-03-18 22:01:00
75186    27557    533    2017-03-18 10:43:00    2017-03-18 10:43:00
75187    27557    911    2017-03-18 02:45:00    2017-03-18 02:45:00
75188    27558    620    2017-03-18 23:32:00    2017-03-18 23:32:00
75189    27558    584    2017-03-18 09:11:00    2017-03-18 09:11:00
75190    27558    889    2017-03-18 13:12:00    2017-03-18 13:12:00
75191    27558    549    2017-03-18 16:14:00    2017-03-18 16:14:00
75192    27558    477    2017-03-18 06:29:00    2017-03-18 06:29:00
75193    27559    772    2017-03-18 03:30:00    2017-03-18 03:30:00
75194    27559    935    2017-03-18 22:58:00    2017-03-18 22:58:00
75195    27559    875    2017-03-18 23:41:00    2017-03-18 23:41:00
75196    27559    838    2017-03-18 12:42:00    2017-03-18 12:42:00
75197    27559    926    2017-03-18 06:15:00    2017-03-18 06:15:00
75198    27560    772    2017-03-18 03:38:00    2017-03-18 03:38:00
75199    27560    795    2017-03-18 09:01:00    2017-03-18 09:01:00
75200    27560    514    2017-03-18 09:21:00    2017-03-18 09:21:00
75201    27560    826    2017-03-18 20:54:00    2017-03-18 20:54:00
75202    27560    583    2017-03-18 18:40:00    2017-03-18 18:40:00
75203    27561    797    2017-03-18 21:18:00    2017-03-18 21:18:00
75204    27561    527    2017-03-18 08:56:00    2017-03-18 08:56:00
75205    27561    680    2017-03-18 18:04:00    2017-03-18 18:04:00
75206    27561    860    2017-03-18 11:56:00    2017-03-18 11:56:00
75207    27561    698    2017-03-18 13:09:00    2017-03-18 13:09:00
75208    27562    808    2017-03-18 15:08:00    2017-03-18 15:08:00
75209    27562    612    2017-03-18 10:44:00    2017-03-18 10:44:00
75210    27562    473    2017-03-18 08:10:00    2017-03-18 08:10:00
75211    27562    939    2017-03-18 10:06:00    2017-03-18 10:06:00
75212    27562    608    2017-03-18 17:37:00    2017-03-18 17:37:00
75213    27563    893    2017-03-18 01:18:00    2017-03-18 01:18:00
75214    27563    930    2017-03-18 04:41:00    2017-03-18 04:41:00
75215    27563    565    2017-03-18 10:14:00    2017-03-18 10:14:00
75216    27563    848    2017-03-18 23:53:00    2017-03-18 23:53:00
75217    27563    557    2017-03-18 01:22:00    2017-03-18 01:22:00
75218    27564    472    2017-03-18 18:25:00    2017-03-18 18:25:00
75219    27564    500    2017-03-18 01:26:00    2017-03-18 01:26:00
75220    27564    918    2017-03-18 17:52:00    2017-03-18 17:52:00
75221    27564    488    2017-03-18 02:10:00    2017-03-18 02:10:00
75222    27564    906    2017-03-18 13:03:00    2017-03-18 13:03:00
75223    27565    605    2017-03-18 08:51:00    2017-03-18 08:51:00
75224    27565    489    2017-03-18 19:38:00    2017-03-18 19:38:00
75225    27565    610    2017-03-18 08:31:00    2017-03-18 08:31:00
75226    27565    630    2017-03-18 06:00:00    2017-03-18 06:00:00
75227    27565    505    2017-03-18 21:00:00    2017-03-18 21:00:00
75228    27566    775    2017-03-18 07:36:00    2017-03-18 07:36:00
75229    27566    683    2017-03-18 01:05:00    2017-03-18 01:05:00
75230    27566    785    2017-03-18 05:23:00    2017-03-18 05:23:00
75231    27566    770    2017-03-18 12:44:00    2017-03-18 12:44:00
75232    27566    799    2017-03-18 06:02:00    2017-03-18 06:02:00
75233    27567    773    2017-03-18 14:44:00    2017-03-18 14:44:00
75234    27567    719    2017-03-18 14:20:00    2017-03-18 14:20:00
75235    27567    941    2017-03-18 08:20:00    2017-03-18 08:20:00
75236    27567    601    2017-03-18 10:47:00    2017-03-18 10:47:00
75237    27567    755    2017-03-18 05:23:00    2017-03-18 05:23:00
75238    27568    947    2017-03-18 11:43:00    2017-03-18 11:43:00
75239    27568    919    2017-03-18 14:16:00    2017-03-18 14:16:00
75240    27568    959    2017-03-18 02:11:00    2017-03-18 02:11:00
75241    27568    663    2017-03-18 13:54:00    2017-03-18 13:54:00
75242    27568    704    2017-03-18 10:50:00    2017-03-18 10:50:00
75243    27569    573    2017-03-18 14:44:00    2017-03-18 14:44:00
75244    27569    729    2017-03-18 19:18:00    2017-03-18 19:18:00
75245    27569    674    2017-03-18 02:17:00    2017-03-18 02:17:00
75246    27569    953    2017-03-18 14:38:00    2017-03-18 14:38:00
75247    27569    512    2017-03-18 17:28:00    2017-03-18 17:28:00
75248    27570    471    2017-03-18 01:55:00    2017-03-18 01:55:00
75249    27570    788    2017-03-18 08:26:00    2017-03-18 08:26:00
75250    27570    764    2017-03-18 07:00:00    2017-03-18 07:00:00
75251    27570    697    2017-03-18 04:59:00    2017-03-18 04:59:00
75252    27570    859    2017-03-18 03:26:00    2017-03-18 03:26:00
75253    27571    699    2017-03-18 01:30:00    2017-03-18 01:30:00
75254    27571    731    2017-03-18 18:34:00    2017-03-18 18:34:00
75255    27571    757    2017-03-18 19:19:00    2017-03-18 19:19:00
75256    27571    554    2017-03-18 18:54:00    2017-03-18 18:54:00
75257    27571    916    2017-03-18 06:12:00    2017-03-18 06:12:00
75258    27572    888    2017-03-18 13:34:00    2017-03-18 13:34:00
75259    27572    942    2017-03-18 14:55:00    2017-03-18 14:55:00
75260    27572    859    2017-03-18 21:49:00    2017-03-18 21:49:00
75261    27572    562    2017-03-18 10:38:00    2017-03-18 10:38:00
75262    27572    720    2017-03-18 22:26:00    2017-03-18 22:26:00
75263    27573    568    2017-03-18 17:27:00    2017-03-18 17:27:00
75264    27573    652    2017-03-18 17:46:00    2017-03-18 17:46:00
75265    27573    713    2017-03-18 22:04:00    2017-03-18 22:04:00
75266    27573    635    2017-03-18 01:04:00    2017-03-18 01:04:00
75267    27573    658    2017-03-18 18:00:00    2017-03-18 18:00:00
75268    27574    947    2017-03-18 03:56:00    2017-03-18 03:56:00
75269    27574    853    2017-03-18 17:14:00    2017-03-18 17:14:00
75270    27574    531    2017-03-18 05:31:00    2017-03-18 05:31:00
75271    27574    816    2017-03-18 22:57:00    2017-03-18 22:57:00
75272    27574    914    2017-03-18 03:09:00    2017-03-18 03:09:00
75273    27575    612    2017-03-18 01:21:00    2017-03-18 01:21:00
75274    27575    901    2017-03-18 02:51:00    2017-03-18 02:51:00
75275    27575    658    2017-03-18 21:59:00    2017-03-18 21:59:00
75276    27575    861    2017-03-18 15:59:00    2017-03-18 15:59:00
75277    27575    685    2017-03-18 19:07:00    2017-03-18 19:07:00
75278    27576    626    2017-03-18 05:47:00    2017-03-18 05:47:00
75279    27576    629    2017-03-18 14:35:00    2017-03-18 14:35:00
75280    27576    738    2017-03-18 05:20:00    2017-03-18 05:20:00
75281    27576    737    2017-03-18 14:34:00    2017-03-18 14:34:00
75282    27576    532    2017-03-18 12:12:00    2017-03-18 12:12:00
75283    27577    940    2017-03-18 15:24:00    2017-03-18 15:24:00
75284    27577    627    2017-03-18 04:00:00    2017-03-18 04:00:00
75285    27577    713    2017-03-18 20:45:00    2017-03-18 20:45:00
75286    27577    722    2017-03-18 19:42:00    2017-03-18 19:42:00
75287    27577    634    2017-03-18 08:07:00    2017-03-18 08:07:00
75288    27578    894    2017-03-18 21:33:00    2017-03-18 21:33:00
75289    27578    859    2017-03-18 21:38:00    2017-03-18 21:38:00
75290    27578    532    2017-03-18 17:27:00    2017-03-18 17:27:00
75291    27578    904    2017-03-18 18:30:00    2017-03-18 18:30:00
75292    27578    510    2017-03-18 03:46:00    2017-03-18 03:46:00
75293    27579    658    2017-03-18 19:08:00    2017-03-18 19:08:00
75294    27579    831    2017-03-18 02:00:00    2017-03-18 02:00:00
75295    27579    933    2017-03-18 21:09:00    2017-03-18 21:09:00
75296    27579    545    2017-03-18 21:37:00    2017-03-18 21:37:00
75297    27579    593    2017-03-18 06:35:00    2017-03-18 06:35:00
75298    27580    875    2017-03-18 12:37:00    2017-03-18 12:37:00
75299    27580    522    2017-03-18 19:17:00    2017-03-18 19:17:00
75300    27580    778    2017-03-18 20:09:00    2017-03-18 20:09:00
75301    27580    930    2017-03-18 14:14:00    2017-03-18 14:14:00
75302    27580    822    2017-03-18 17:01:00    2017-03-18 17:01:00
75303    27581    812    2017-03-18 05:54:00    2017-03-18 05:54:00
75304    27581    821    2017-03-18 05:40:00    2017-03-18 05:40:00
75305    27581    783    2017-03-18 15:49:00    2017-03-18 15:49:00
75306    27581    911    2017-03-18 04:17:00    2017-03-18 04:17:00
75307    27581    563    2017-03-18 22:03:00    2017-03-18 22:03:00
75308    27582    500    2017-03-18 18:31:00    2017-03-18 18:31:00
75309    27582    507    2017-03-18 19:59:00    2017-03-18 19:59:00
75310    27582    526    2017-03-18 18:36:00    2017-03-18 18:36:00
75311    27582    507    2017-03-18 11:39:00    2017-03-18 11:39:00
75312    27582    678    2017-03-18 09:54:00    2017-03-18 09:54:00
75313    27583    955    2017-03-18 18:15:00    2017-03-18 18:15:00
75314    27583    832    2017-03-18 18:37:00    2017-03-18 18:37:00
75315    27583    611    2017-03-18 04:40:00    2017-03-18 04:40:00
75316    27583    589    2017-03-18 05:18:00    2017-03-18 05:18:00
75317    27583    812    2017-03-18 07:45:00    2017-03-18 07:45:00
75318    27584    939    2017-03-18 18:16:00    2017-03-18 18:16:00
75319    27584    850    2017-03-18 07:47:00    2017-03-18 07:47:00
75320    27584    497    2017-03-18 20:30:00    2017-03-18 20:30:00
75321    27584    512    2017-03-18 23:57:00    2017-03-18 23:57:00
75322    27584    628    2017-03-18 06:01:00    2017-03-18 06:01:00
75323    27585    530    2017-03-18 04:25:00    2017-03-18 04:25:00
75324    27585    477    2017-03-18 05:26:00    2017-03-18 05:26:00
75325    27585    491    2017-03-18 01:16:00    2017-03-18 01:16:00
75326    27585    735    2017-03-18 12:23:00    2017-03-18 12:23:00
75327    27585    579    2017-03-18 10:52:00    2017-03-18 10:52:00
75328    27586    578    2017-03-18 15:42:00    2017-03-18 15:42:00
75329    27586    696    2017-03-18 17:01:00    2017-03-18 17:01:00
75330    27586    751    2017-03-18 22:15:00    2017-03-18 22:15:00
75331    27586    507    2017-03-18 23:18:00    2017-03-18 23:18:00
75332    27586    502    2017-03-18 07:51:00    2017-03-18 07:51:00
75333    27587    801    2017-03-18 16:26:00    2017-03-18 16:26:00
75334    27587    920    2017-03-18 06:11:00    2017-03-18 06:11:00
75335    27587    746    2017-03-18 05:00:00    2017-03-18 05:00:00
75336    27587    620    2017-03-18 10:21:00    2017-03-18 10:21:00
75337    27587    718    2017-03-18 21:26:00    2017-03-18 21:26:00
75338    27588    613    2017-03-18 19:22:00    2017-03-18 19:22:00
75339    27588    575    2017-03-18 22:42:00    2017-03-18 22:42:00
75340    27588    625    2017-03-18 01:09:00    2017-03-18 01:09:00
75341    27588    754    2017-03-18 02:01:00    2017-03-18 02:01:00
75342    27588    814    2017-03-18 10:17:00    2017-03-18 10:17:00
75343    27589    682    2017-03-18 17:27:00    2017-03-18 17:27:00
75344    27589    783    2017-03-18 09:51:00    2017-03-18 09:51:00
75345    27589    742    2017-03-18 17:27:00    2017-03-18 17:27:00
75346    27589    767    2017-03-18 22:58:00    2017-03-18 22:58:00
75347    27589    938    2017-03-18 08:42:00    2017-03-18 08:42:00
75348    27590    623    2017-03-18 22:17:00    2017-03-18 22:17:00
75349    27590    770    2017-03-18 22:46:00    2017-03-18 22:46:00
75350    27590    889    2017-03-18 18:31:00    2017-03-18 18:31:00
75351    27590    719    2017-03-18 19:33:00    2017-03-18 19:33:00
75352    27590    618    2017-03-18 14:47:00    2017-03-18 14:47:00
75353    27591    729    2017-03-18 01:43:00    2017-03-18 01:43:00
75354    27591    626    2017-03-18 12:16:00    2017-03-18 12:16:00
75355    27591    763    2017-03-18 06:23:00    2017-03-18 06:23:00
75356    27591    763    2017-03-18 04:24:00    2017-03-18 04:24:00
75357    27591    692    2017-03-18 05:04:00    2017-03-18 05:04:00
75358    27592    554    2017-03-18 05:42:00    2017-03-18 05:42:00
75359    27592    753    2017-03-18 21:06:00    2017-03-18 21:06:00
75360    27592    527    2017-03-18 13:17:00    2017-03-18 13:17:00
75361    27592    537    2017-03-18 16:31:00    2017-03-18 16:31:00
75362    27592    556    2017-03-18 12:55:00    2017-03-18 12:55:00
75363    27593    538    2017-03-18 05:27:00    2017-03-18 05:27:00
75364    27593    683    2017-03-18 22:43:00    2017-03-18 22:43:00
75365    27593    682    2017-03-18 13:26:00    2017-03-18 13:26:00
75366    27593    595    2017-03-18 23:06:00    2017-03-18 23:06:00
75367    27593    466    2017-03-18 07:15:00    2017-03-18 07:15:00
75368    27594    704    2017-03-18 03:05:00    2017-03-18 03:05:00
75369    27594    806    2017-03-18 10:33:00    2017-03-18 10:33:00
75370    27594    686    2017-03-18 22:20:00    2017-03-18 22:20:00
75371    27594    609    2017-03-18 17:36:00    2017-03-18 17:36:00
75372    27594    557    2017-03-18 20:18:00    2017-03-18 20:18:00
75373    27595    932    2017-03-18 01:42:00    2017-03-18 01:42:00
75374    27595    615    2017-03-18 14:07:00    2017-03-18 14:07:00
75375    27595    884    2017-03-18 06:02:00    2017-03-18 06:02:00
75376    27595    916    2017-03-18 12:58:00    2017-03-18 12:58:00
75377    27595    570    2017-03-18 08:06:00    2017-03-18 08:06:00
75378    27596    526    2017-03-18 10:58:00    2017-03-18 10:58:00
75379    27596    885    2017-03-18 14:24:00    2017-03-18 14:24:00
75380    27596    937    2017-03-18 05:49:00    2017-03-18 05:49:00
75381    27596    923    2017-03-18 14:02:00    2017-03-18 14:02:00
75382    27596    540    2017-03-18 02:19:00    2017-03-18 02:19:00
75383    27597    615    2017-03-18 11:29:00    2017-03-18 11:29:00
75384    27597    605    2017-03-18 06:55:00    2017-03-18 06:55:00
75385    27597    893    2017-03-18 11:14:00    2017-03-18 11:14:00
75386    27597    727    2017-03-18 19:21:00    2017-03-18 19:21:00
75387    27597    604    2017-03-18 23:38:00    2017-03-18 23:38:00
75388    27598    566    2017-03-18 04:16:00    2017-03-18 04:16:00
75389    27598    954    2017-03-18 22:26:00    2017-03-18 22:26:00
75390    27598    473    2017-03-18 20:32:00    2017-03-18 20:32:00
75391    27598    574    2017-03-18 13:12:00    2017-03-18 13:12:00
75392    27598    528    2017-03-18 01:57:00    2017-03-18 01:57:00
75393    27599    805    2017-03-18 04:33:00    2017-03-18 04:33:00
75394    27599    681    2017-03-18 08:49:00    2017-03-18 08:49:00
75395    27599    495    2017-03-18 04:24:00    2017-03-18 04:24:00
75396    27599    833    2017-03-18 07:35:00    2017-03-18 07:35:00
75397    27599    686    2017-03-18 17:52:00    2017-03-18 17:52:00
75398    27600    881    2017-03-18 14:56:00    2017-03-18 14:56:00
75399    27600    923    2017-03-18 15:50:00    2017-03-18 15:50:00
75400    27600    538    2017-03-18 10:05:00    2017-03-18 10:05:00
75401    27600    840    2017-03-18 19:01:00    2017-03-18 19:01:00
75402    27600    686    2017-03-18 13:50:00    2017-03-18 13:50:00
75403    27601    515    2017-03-18 12:12:00    2017-03-18 12:12:00
75404    27601    481    2017-03-18 13:34:00    2017-03-18 13:34:00
75405    27601    854    2017-03-18 22:13:00    2017-03-18 22:13:00
75406    27601    604    2017-03-18 15:28:00    2017-03-18 15:28:00
75407    27601    469    2017-03-18 01:56:00    2017-03-18 01:56:00
75408    27602    733    2017-03-18 11:43:00    2017-03-18 11:43:00
75409    27602    723    2017-03-18 16:00:00    2017-03-18 16:00:00
75410    27602    513    2017-03-18 08:58:00    2017-03-18 08:58:00
75411    27602    745    2017-03-18 02:31:00    2017-03-18 02:31:00
75412    27602    560    2017-03-18 14:14:00    2017-03-18 14:14:00
75413    27603    464    2017-03-18 09:04:00    2017-03-18 09:04:00
75414    27603    668    2017-03-18 18:44:00    2017-03-18 18:44:00
75415    27603    674    2017-03-18 16:58:00    2017-03-18 16:58:00
75416    27603    817    2017-03-18 22:40:00    2017-03-18 22:40:00
75417    27603    904    2017-03-18 08:56:00    2017-03-18 08:56:00
75418    27604    953    2017-03-18 02:35:00    2017-03-18 02:35:00
75419    27604    901    2017-03-18 04:32:00    2017-03-18 04:32:00
75420    27604    712    2017-03-18 22:52:00    2017-03-18 22:52:00
75421    27604    505    2017-03-18 14:22:00    2017-03-18 14:22:00
75422    27604    848    2017-03-18 04:35:00    2017-03-18 04:35:00
75423    27605    762    2017-03-19 14:22:00    2017-03-19 14:22:00
75424    27605    695    2017-03-19 11:00:00    2017-03-19 11:00:00
75425    27605    655    2017-03-19 21:13:00    2017-03-19 21:13:00
75426    27605    660    2017-03-19 06:20:00    2017-03-19 06:20:00
75427    27605    681    2017-03-19 15:56:00    2017-03-19 15:56:00
75428    27606    469    2017-03-19 16:52:00    2017-03-19 16:52:00
75429    27606    947    2017-03-19 21:33:00    2017-03-19 21:33:00
75430    27606    724    2017-03-19 11:45:00    2017-03-19 11:45:00
75431    27606    700    2017-03-19 18:11:00    2017-03-19 18:11:00
75432    27606    800    2017-03-19 01:08:00    2017-03-19 01:08:00
75433    27607    801    2017-03-19 04:25:00    2017-03-19 04:25:00
75434    27607    732    2017-03-19 05:19:00    2017-03-19 05:19:00
75435    27607    873    2017-03-19 12:31:00    2017-03-19 12:31:00
75436    27607    713    2017-03-19 01:53:00    2017-03-19 01:53:00
75437    27607    516    2017-03-19 09:56:00    2017-03-19 09:56:00
75438    27608    584    2017-03-19 13:57:00    2017-03-19 13:57:00
75439    27608    653    2017-03-19 04:35:00    2017-03-19 04:35:00
75440    27608    518    2017-03-19 03:06:00    2017-03-19 03:06:00
75441    27608    948    2017-03-19 16:06:00    2017-03-19 16:06:00
75442    27608    929    2017-03-19 01:26:00    2017-03-19 01:26:00
75443    27609    561    2017-03-19 06:09:00    2017-03-19 06:09:00
75444    27609    831    2017-03-19 07:04:00    2017-03-19 07:04:00
75445    27609    930    2017-03-19 22:22:00    2017-03-19 22:22:00
75446    27609    526    2017-03-19 18:15:00    2017-03-19 18:15:00
75447    27609    912    2017-03-19 14:24:00    2017-03-19 14:24:00
75448    27610    562    2017-03-19 09:29:00    2017-03-19 09:29:00
75449    27610    867    2017-03-19 06:22:00    2017-03-19 06:22:00
75450    27610    473    2017-03-19 20:21:00    2017-03-19 20:21:00
75451    27610    751    2017-03-19 21:53:00    2017-03-19 21:53:00
75452    27610    878    2017-03-19 12:50:00    2017-03-19 12:50:00
75453    27611    488    2017-03-19 05:58:00    2017-03-19 05:58:00
75454    27611    697    2017-03-19 15:37:00    2017-03-19 15:37:00
75455    27611    682    2017-03-19 06:05:00    2017-03-19 06:05:00
75456    27611    501    2017-03-19 06:48:00    2017-03-19 06:48:00
75457    27611    573    2017-03-19 21:10:00    2017-03-19 21:10:00
75458    27612    607    2017-03-19 03:12:00    2017-03-19 03:12:00
75459    27612    473    2017-03-19 21:26:00    2017-03-19 21:26:00
75460    27612    902    2017-03-19 09:56:00    2017-03-19 09:56:00
75461    27612    752    2017-03-19 05:10:00    2017-03-19 05:10:00
75462    27612    765    2017-03-19 12:24:00    2017-03-19 12:24:00
75463    27613    541    2017-03-19 04:19:00    2017-03-19 04:19:00
75464    27613    870    2017-03-19 08:54:00    2017-03-19 08:54:00
75465    27613    508    2017-03-19 02:14:00    2017-03-19 02:14:00
75466    27613    637    2017-03-19 23:10:00    2017-03-19 23:10:00
75467    27613    776    2017-03-19 03:50:00    2017-03-19 03:50:00
75468    27614    681    2017-03-19 16:44:00    2017-03-19 16:44:00
75469    27614    910    2017-03-19 19:04:00    2017-03-19 19:04:00
75470    27614    604    2017-03-19 06:37:00    2017-03-19 06:37:00
75471    27614    809    2017-03-19 03:58:00    2017-03-19 03:58:00
75472    27614    958    2017-03-19 01:11:00    2017-03-19 01:11:00
75473    27615    822    2017-03-19 07:49:00    2017-03-19 07:49:00
75474    27615    578    2017-03-19 01:17:00    2017-03-19 01:17:00
75475    27615    692    2017-03-19 22:40:00    2017-03-19 22:40:00
75476    27615    789    2017-03-19 21:59:00    2017-03-19 21:59:00
75477    27615    507    2017-03-19 07:59:00    2017-03-19 07:59:00
75478    27616    502    2017-03-19 11:03:00    2017-03-19 11:03:00
75479    27616    466    2017-03-19 23:52:00    2017-03-19 23:52:00
75480    27616    600    2017-03-19 12:37:00    2017-03-19 12:37:00
75481    27616    890    2017-03-19 21:15:00    2017-03-19 21:15:00
75482    27616    537    2017-03-19 20:10:00    2017-03-19 20:10:00
75483    27617    808    2017-03-19 21:38:00    2017-03-19 21:38:00
75484    27617    879    2017-03-19 04:38:00    2017-03-19 04:38:00
75485    27617    840    2017-03-19 12:09:00    2017-03-19 12:09:00
75486    27617    667    2017-03-19 05:15:00    2017-03-19 05:15:00
75487    27617    906    2017-03-19 06:16:00    2017-03-19 06:16:00
75488    27618    781    2017-03-19 09:35:00    2017-03-19 09:35:00
75489    27618    591    2017-03-19 12:25:00    2017-03-19 12:25:00
75490    27618    617    2017-03-19 14:40:00    2017-03-19 14:40:00
75491    27618    876    2017-03-19 14:41:00    2017-03-19 14:41:00
75492    27618    924    2017-03-19 01:29:00    2017-03-19 01:29:00
75493    27619    543    2017-03-19 07:09:00    2017-03-19 07:09:00
75494    27619    824    2017-03-19 15:04:00    2017-03-19 15:04:00
75495    27619    663    2017-03-19 17:14:00    2017-03-19 17:14:00
75496    27619    956    2017-03-19 01:28:00    2017-03-19 01:28:00
75497    27619    476    2017-03-19 12:36:00    2017-03-19 12:36:00
75498    27620    577    2017-03-19 17:45:00    2017-03-19 17:45:00
75499    27620    867    2017-03-19 06:39:00    2017-03-19 06:39:00
75500    27620    474    2017-03-19 01:14:00    2017-03-19 01:14:00
75501    27620    708    2017-03-19 14:53:00    2017-03-19 14:53:00
75502    27620    575    2017-03-19 14:40:00    2017-03-19 14:40:00
75503    27621    621    2017-03-19 05:48:00    2017-03-19 05:48:00
75504    27621    630    2017-03-19 19:22:00    2017-03-19 19:22:00
75505    27621    464    2017-03-19 22:21:00    2017-03-19 22:21:00
75506    27621    943    2017-03-19 16:03:00    2017-03-19 16:03:00
75507    27621    477    2017-03-19 03:55:00    2017-03-19 03:55:00
75508    27622    667    2017-03-19 07:48:00    2017-03-19 07:48:00
75509    27622    939    2017-03-19 19:02:00    2017-03-19 19:02:00
75510    27622    840    2017-03-19 04:06:00    2017-03-19 04:06:00
75511    27622    480    2017-03-19 05:27:00    2017-03-19 05:27:00
75512    27622    912    2017-03-19 16:29:00    2017-03-19 16:29:00
75513    27623    506    2017-03-19 13:30:00    2017-03-19 13:30:00
75514    27623    596    2017-03-19 07:17:00    2017-03-19 07:17:00
75515    27623    911    2017-03-19 05:36:00    2017-03-19 05:36:00
75516    27623    697    2017-03-19 10:49:00    2017-03-19 10:49:00
75517    27623    580    2017-03-19 11:44:00    2017-03-19 11:44:00
75518    27624    557    2017-03-19 06:26:00    2017-03-19 06:26:00
75519    27624    579    2017-03-19 01:30:00    2017-03-19 01:30:00
75520    27624    638    2017-03-19 02:23:00    2017-03-19 02:23:00
75521    27624    846    2017-03-19 01:10:00    2017-03-19 01:10:00
75522    27624    849    2017-03-19 02:57:00    2017-03-19 02:57:00
75523    27625    799    2017-03-19 19:09:00    2017-03-19 19:09:00
75524    27625    472    2017-03-19 05:41:00    2017-03-19 05:41:00
75525    27625    772    2017-03-19 10:40:00    2017-03-19 10:40:00
75526    27625    829    2017-03-19 07:37:00    2017-03-19 07:37:00
75527    27625    778    2017-03-19 16:47:00    2017-03-19 16:47:00
75528    27626    698    2017-03-19 23:22:00    2017-03-19 23:22:00
75529    27626    646    2017-03-19 07:49:00    2017-03-19 07:49:00
75530    27626    655    2017-03-19 19:07:00    2017-03-19 19:07:00
75531    27626    938    2017-03-19 20:11:00    2017-03-19 20:11:00
75532    27626    591    2017-03-19 21:17:00    2017-03-19 21:17:00
75533    27627    514    2017-03-19 21:24:00    2017-03-19 21:24:00
75534    27627    881    2017-03-19 23:25:00    2017-03-19 23:25:00
75535    27627    792    2017-03-19 18:22:00    2017-03-19 18:22:00
75536    27627    508    2017-03-19 09:33:00    2017-03-19 09:33:00
75537    27627    939    2017-03-19 07:19:00    2017-03-19 07:19:00
75538    27628    938    2017-03-19 14:12:00    2017-03-19 14:12:00
75539    27628    704    2017-03-19 01:43:00    2017-03-19 01:43:00
75540    27628    830    2017-03-19 16:55:00    2017-03-19 16:55:00
75541    27628    733    2017-03-19 12:59:00    2017-03-19 12:59:00
75542    27628    600    2017-03-19 16:03:00    2017-03-19 16:03:00
75543    27629    944    2017-03-19 03:07:00    2017-03-19 03:07:00
75544    27629    478    2017-03-19 17:32:00    2017-03-19 17:32:00
75545    27629    594    2017-03-19 11:25:00    2017-03-19 11:25:00
75546    27629    513    2017-03-19 12:44:00    2017-03-19 12:44:00
75547    27629    618    2017-03-19 12:03:00    2017-03-19 12:03:00
75548    27630    837    2017-03-19 20:08:00    2017-03-19 20:08:00
75549    27630    684    2017-03-19 16:59:00    2017-03-19 16:59:00
75550    27630    852    2017-03-19 08:39:00    2017-03-19 08:39:00
75551    27630    739    2017-03-19 10:37:00    2017-03-19 10:37:00
75552    27630    716    2017-03-19 17:11:00    2017-03-19 17:11:00
75553    27631    509    2017-03-19 18:04:00    2017-03-19 18:04:00
75554    27631    807    2017-03-19 04:26:00    2017-03-19 04:26:00
75555    27631    706    2017-03-19 11:05:00    2017-03-19 11:05:00
75556    27631    506    2017-03-19 16:52:00    2017-03-19 16:52:00
75557    27631    556    2017-03-19 03:34:00    2017-03-19 03:34:00
75558    27632    711    2017-03-19 09:07:00    2017-03-19 09:07:00
75559    27632    611    2017-03-19 22:46:00    2017-03-19 22:46:00
75560    27632    555    2017-03-19 04:14:00    2017-03-19 04:14:00
75561    27632    784    2017-03-19 08:12:00    2017-03-19 08:12:00
75562    27632    622    2017-03-19 06:17:00    2017-03-19 06:17:00
75563    27633    561    2017-03-19 07:14:00    2017-03-19 07:14:00
75564    27633    511    2017-03-19 12:33:00    2017-03-19 12:33:00
75565    27633    602    2017-03-19 05:11:00    2017-03-19 05:11:00
75566    27633    784    2017-03-19 17:54:00    2017-03-19 17:54:00
75567    27633    500    2017-03-19 06:08:00    2017-03-19 06:08:00
75568    27634    644    2017-03-19 07:59:00    2017-03-19 07:59:00
75569    27634    473    2017-03-19 08:16:00    2017-03-19 08:16:00
75570    27634    650    2017-03-19 12:49:00    2017-03-19 12:49:00
75571    27634    916    2017-03-19 19:00:00    2017-03-19 19:00:00
75572    27634    877    2017-03-19 21:58:00    2017-03-19 21:58:00
75573    27635    827    2017-03-19 05:17:00    2017-03-19 05:17:00
75574    27635    805    2017-03-19 16:49:00    2017-03-19 16:49:00
75575    27635    658    2017-03-19 23:08:00    2017-03-19 23:08:00
75576    27635    781    2017-03-19 19:23:00    2017-03-19 19:23:00
75577    27635    869    2017-03-19 14:18:00    2017-03-19 14:18:00
75578    27636    749    2017-03-19 17:42:00    2017-03-19 17:42:00
75579    27636    959    2017-03-19 01:46:00    2017-03-19 01:46:00
75580    27636    921    2017-03-19 04:00:00    2017-03-19 04:00:00
75581    27636    506    2017-03-19 07:51:00    2017-03-19 07:51:00
75582    27636    655    2017-03-19 14:57:00    2017-03-19 14:57:00
75583    27637    950    2017-03-19 04:45:00    2017-03-19 04:45:00
75584    27637    667    2017-03-19 12:08:00    2017-03-19 12:08:00
75585    27637    551    2017-03-19 09:16:00    2017-03-19 09:16:00
75586    27637    876    2017-03-19 15:52:00    2017-03-19 15:52:00
75587    27637    578    2017-03-19 09:26:00    2017-03-19 09:26:00
75588    27638    594    2017-03-19 03:25:00    2017-03-19 03:25:00
75589    27638    596    2017-03-19 12:34:00    2017-03-19 12:34:00
75590    27638    698    2017-03-19 19:46:00    2017-03-19 19:46:00
75591    27638    626    2017-03-19 15:30:00    2017-03-19 15:30:00
75592    27638    633    2017-03-19 20:37:00    2017-03-19 20:37:00
75593    27639    771    2017-03-19 09:29:00    2017-03-19 09:29:00
75594    27639    940    2017-03-19 11:36:00    2017-03-19 11:36:00
75595    27639    527    2017-03-19 08:00:00    2017-03-19 08:00:00
75596    27639    735    2017-03-19 04:12:00    2017-03-19 04:12:00
75597    27639    713    2017-03-19 19:35:00    2017-03-19 19:35:00
75598    27640    767    2017-03-19 13:29:00    2017-03-19 13:29:00
75599    27640    835    2017-03-19 07:53:00    2017-03-19 07:53:00
75600    27640    757    2017-03-19 23:52:00    2017-03-19 23:52:00
75601    27640    832    2017-03-19 11:39:00    2017-03-19 11:39:00
75602    27640    909    2017-03-19 05:54:00    2017-03-19 05:54:00
75603    27641    937    2017-03-19 14:00:00    2017-03-19 14:00:00
75604    27641    932    2017-03-19 22:32:00    2017-03-19 22:32:00
75605    27641    686    2017-03-19 03:19:00    2017-03-19 03:19:00
75606    27641    699    2017-03-19 15:54:00    2017-03-19 15:54:00
75607    27641    705    2017-03-19 17:14:00    2017-03-19 17:14:00
75608    27642    782    2017-03-19 02:03:00    2017-03-19 02:03:00
75609    27642    554    2017-03-19 07:17:00    2017-03-19 07:17:00
75610    27642    498    2017-03-19 12:09:00    2017-03-19 12:09:00
75611    27642    669    2017-03-19 03:29:00    2017-03-19 03:29:00
75612    27642    766    2017-03-19 18:31:00    2017-03-19 18:31:00
75613    27643    690    2017-03-19 07:32:00    2017-03-19 07:32:00
75614    27643    473    2017-03-19 02:53:00    2017-03-19 02:53:00
75615    27643    618    2017-03-19 10:28:00    2017-03-19 10:28:00
75616    27643    751    2017-03-19 23:51:00    2017-03-19 23:51:00
75617    27643    895    2017-03-19 02:22:00    2017-03-19 02:22:00
75618    27644    514    2017-03-19 15:00:00    2017-03-19 15:00:00
75619    27644    900    2017-03-19 22:45:00    2017-03-19 22:45:00
75620    27644    815    2017-03-19 19:23:00    2017-03-19 19:23:00
75621    27644    714    2017-03-19 21:01:00    2017-03-19 21:01:00
75622    27644    491    2017-03-19 17:03:00    2017-03-19 17:03:00
75623    27645    800    2017-03-19 06:12:00    2017-03-19 06:12:00
75624    27645    528    2017-03-19 08:00:00    2017-03-19 08:00:00
75625    27645    887    2017-03-19 07:13:00    2017-03-19 07:13:00
75626    27645    597    2017-03-19 15:54:00    2017-03-19 15:54:00
75627    27645    817    2017-03-19 03:54:00    2017-03-19 03:54:00
75628    27646    522    2017-03-19 22:05:00    2017-03-19 22:05:00
75629    27646    798    2017-03-19 13:59:00    2017-03-19 13:59:00
75630    27646    871    2017-03-19 09:35:00    2017-03-19 09:35:00
75631    27646    724    2017-03-19 20:06:00    2017-03-19 20:06:00
75632    27646    939    2017-03-19 19:21:00    2017-03-19 19:21:00
75633    27647    603    2017-03-19 06:10:00    2017-03-19 06:10:00
75634    27647    914    2017-03-19 13:45:00    2017-03-19 13:45:00
75635    27647    641    2017-03-19 06:58:00    2017-03-19 06:58:00
75636    27647    903    2017-03-19 23:44:00    2017-03-19 23:44:00
75637    27647    690    2017-03-19 15:13:00    2017-03-19 15:13:00
75638    27648    701    2017-03-19 14:52:00    2017-03-19 14:52:00
75639    27648    925    2017-03-19 14:59:00    2017-03-19 14:59:00
75640    27648    651    2017-03-19 08:10:00    2017-03-19 08:10:00
75641    27648    906    2017-03-19 13:10:00    2017-03-19 13:10:00
75642    27648    956    2017-03-19 10:22:00    2017-03-19 10:22:00
75643    27649    870    2017-03-19 08:10:00    2017-03-19 08:10:00
75644    27649    618    2017-03-19 04:25:00    2017-03-19 04:25:00
75645    27649    640    2017-03-19 12:54:00    2017-03-19 12:54:00
75646    27649    656    2017-03-19 07:43:00    2017-03-19 07:43:00
75647    27649    645    2017-03-19 15:16:00    2017-03-19 15:16:00
75648    27650    954    2017-03-19 01:56:00    2017-03-19 01:56:00
75649    27650    753    2017-03-19 12:52:00    2017-03-19 12:52:00
75650    27650    904    2017-03-19 13:22:00    2017-03-19 13:22:00
75651    27650    831    2017-03-19 03:47:00    2017-03-19 03:47:00
75652    27650    824    2017-03-19 16:20:00    2017-03-19 16:20:00
75653    27651    714    2017-03-19 11:12:00    2017-03-19 11:12:00
75654    27651    891    2017-03-19 13:26:00    2017-03-19 13:26:00
75655    27651    479    2017-03-19 18:13:00    2017-03-19 18:13:00
75656    27651    600    2017-03-19 19:35:00    2017-03-19 19:35:00
75657    27651    730    2017-03-19 10:43:00    2017-03-19 10:43:00
75658    27652    567    2017-03-19 03:22:00    2017-03-19 03:22:00
75659    27652    468    2017-03-19 05:34:00    2017-03-19 05:34:00
75660    27652    621    2017-03-19 15:30:00    2017-03-19 15:30:00
75661    27652    849    2017-03-19 17:24:00    2017-03-19 17:24:00
75662    27652    599    2017-03-19 04:09:00    2017-03-19 04:09:00
75663    27653    955    2017-03-19 05:53:00    2017-03-19 05:53:00
75664    27653    887    2017-03-19 10:47:00    2017-03-19 10:47:00
75665    27653    802    2017-03-19 10:20:00    2017-03-19 10:20:00
75666    27653    577    2017-03-19 07:58:00    2017-03-19 07:58:00
75667    27653    496    2017-03-19 02:26:00    2017-03-19 02:26:00
75668    27654    590    2017-03-19 01:42:00    2017-03-19 01:42:00
75669    27654    801    2017-03-19 13:47:00    2017-03-19 13:47:00
75670    27654    621    2017-03-19 04:38:00    2017-03-19 04:38:00
75671    27654    888    2017-03-19 02:51:00    2017-03-19 02:51:00
75672    27654    912    2017-03-19 19:34:00    2017-03-19 19:34:00
75673    27655    486    2017-03-19 09:02:00    2017-03-19 09:02:00
75674    27655    765    2017-03-19 14:48:00    2017-03-19 14:48:00
75675    27655    861    2017-03-19 07:02:00    2017-03-19 07:02:00
75676    27655    520    2017-03-19 15:12:00    2017-03-19 15:12:00
75677    27655    890    2017-03-19 10:20:00    2017-03-19 10:20:00
75678    27656    817    2017-03-19 18:59:00    2017-03-19 18:59:00
75679    27656    845    2017-03-19 09:39:00    2017-03-19 09:39:00
75680    27656    689    2017-03-19 20:49:00    2017-03-19 20:49:00
75681    27656    583    2017-03-19 13:30:00    2017-03-19 13:30:00
75682    27656    690    2017-03-19 17:48:00    2017-03-19 17:48:00
75683    27657    787    2017-03-19 14:46:00    2017-03-19 14:46:00
75684    27657    645    2017-03-19 07:25:00    2017-03-19 07:25:00
75685    27657    744    2017-03-19 15:28:00    2017-03-19 15:28:00
75686    27657    588    2017-03-19 17:17:00    2017-03-19 17:17:00
75687    27657    913    2017-03-19 22:52:00    2017-03-19 22:52:00
75688    27658    839    2017-03-19 22:44:00    2017-03-19 22:44:00
75689    27658    695    2017-03-19 15:53:00    2017-03-19 15:53:00
75690    27658    674    2017-03-19 12:13:00    2017-03-19 12:13:00
75691    27658    785    2017-03-19 04:00:00    2017-03-19 04:00:00
75692    27658    873    2017-03-19 19:04:00    2017-03-19 19:04:00
75693    27659    596    2017-03-19 22:27:00    2017-03-19 22:27:00
75694    27659    679    2017-03-19 04:06:00    2017-03-19 04:06:00
75695    27659    575    2017-03-19 22:24:00    2017-03-19 22:24:00
75696    27659    878    2017-03-19 19:52:00    2017-03-19 19:52:00
75697    27659    804    2017-03-19 17:42:00    2017-03-19 17:42:00
75698    27660    812    2017-03-19 07:12:00    2017-03-19 07:12:00
75699    27660    480    2017-03-19 12:23:00    2017-03-19 12:23:00
75700    27660    925    2017-03-19 11:48:00    2017-03-19 11:48:00
75701    27660    698    2017-03-19 19:16:00    2017-03-19 19:16:00
75702    27660    891    2017-03-19 13:12:00    2017-03-19 13:12:00
75703    27661    777    2017-03-19 01:52:00    2017-03-19 01:52:00
75704    27661    687    2017-03-19 23:05:00    2017-03-19 23:05:00
75705    27661    707    2017-03-19 12:40:00    2017-03-19 12:40:00
75706    27661    470    2017-03-19 08:19:00    2017-03-19 08:19:00
75707    27661    546    2017-03-19 06:38:00    2017-03-19 06:38:00
75708    27662    551    2017-03-19 23:58:00    2017-03-19 23:58:00
75709    27662    496    2017-03-19 02:21:00    2017-03-19 02:21:00
75710    27662    839    2017-03-19 06:02:00    2017-03-19 06:02:00
75711    27662    778    2017-03-19 14:33:00    2017-03-19 14:33:00
75712    27662    477    2017-03-19 06:45:00    2017-03-19 06:45:00
75713    27663    671    2017-03-19 17:42:00    2017-03-19 17:42:00
75714    27663    537    2017-03-19 22:23:00    2017-03-19 22:23:00
75715    27663    549    2017-03-19 15:19:00    2017-03-19 15:19:00
75716    27663    662    2017-03-19 12:23:00    2017-03-19 12:23:00
75717    27663    565    2017-03-19 13:46:00    2017-03-19 13:46:00
75718    27664    542    2017-03-19 23:54:00    2017-03-19 23:54:00
75719    27664    940    2017-03-19 22:20:00    2017-03-19 22:20:00
75720    27664    519    2017-03-19 17:11:00    2017-03-19 17:11:00
75721    27664    892    2017-03-19 04:46:00    2017-03-19 04:46:00
75722    27664    936    2017-03-19 21:28:00    2017-03-19 21:28:00
75723    27665    749    2017-03-19 14:40:00    2017-03-19 14:40:00
75724    27665    759    2017-03-19 12:50:00    2017-03-19 12:50:00
75725    27665    796    2017-03-19 20:36:00    2017-03-19 20:36:00
75726    27665    960    2017-03-19 16:01:00    2017-03-19 16:01:00
75727    27665    738    2017-03-19 09:20:00    2017-03-19 09:20:00
75728    27666    746    2017-03-19 21:26:00    2017-03-19 21:26:00
75729    27666    886    2017-03-19 04:45:00    2017-03-19 04:45:00
75730    27666    932    2017-03-19 09:33:00    2017-03-19 09:33:00
75731    27666    587    2017-03-19 21:31:00    2017-03-19 21:31:00
75732    27666    863    2017-03-19 09:53:00    2017-03-19 09:53:00
75733    27667    729    2017-03-19 22:38:00    2017-03-19 22:38:00
75734    27667    516    2017-03-19 01:03:00    2017-03-19 01:03:00
75735    27667    692    2017-03-19 14:30:00    2017-03-19 14:30:00
75736    27667    523    2017-03-19 17:44:00    2017-03-19 17:44:00
75737    27667    533    2017-03-19 11:09:00    2017-03-19 11:09:00
75738    27668    525    2017-03-19 12:17:00    2017-03-19 12:17:00
75739    27668    918    2017-03-19 22:16:00    2017-03-19 22:16:00
75740    27668    501    2017-03-19 19:54:00    2017-03-19 19:54:00
75741    27668    569    2017-03-19 22:04:00    2017-03-19 22:04:00
75742    27668    517    2017-03-19 13:51:00    2017-03-19 13:51:00
75743    27669    925    2017-03-19 01:40:00    2017-03-19 01:40:00
75744    27669    784    2017-03-19 01:12:00    2017-03-19 01:12:00
75745    27669    781    2017-03-19 05:02:00    2017-03-19 05:02:00
75746    27669    574    2017-03-19 07:23:00    2017-03-19 07:23:00
75747    27669    723    2017-03-19 23:16:00    2017-03-19 23:16:00
75748    27670    671    2017-03-19 08:51:00    2017-03-19 08:51:00
75749    27670    612    2017-03-19 20:44:00    2017-03-19 20:44:00
75750    27670    770    2017-03-19 20:45:00    2017-03-19 20:45:00
75751    27670    506    2017-03-19 12:42:00    2017-03-19 12:42:00
75752    27670    569    2017-03-19 04:22:00    2017-03-19 04:22:00
75753    27671    656    2017-03-19 03:27:00    2017-03-19 03:27:00
75754    27671    904    2017-03-19 08:24:00    2017-03-19 08:24:00
75755    27671    736    2017-03-19 01:40:00    2017-03-19 01:40:00
75756    27671    592    2017-03-19 10:01:00    2017-03-19 10:01:00
75757    27671    935    2017-03-19 22:30:00    2017-03-19 22:30:00
75758    27672    799    2017-03-19 09:44:00    2017-03-19 09:44:00
75759    27672    917    2017-03-19 19:23:00    2017-03-19 19:23:00
75760    27672    585    2017-03-19 04:30:00    2017-03-19 04:30:00
75761    27672    597    2017-03-19 02:43:00    2017-03-19 02:43:00
75762    27672    578    2017-03-19 12:39:00    2017-03-19 12:39:00
75763    27673    465    2017-03-19 06:47:00    2017-03-19 06:47:00
75764    27673    493    2017-03-19 16:11:00    2017-03-19 16:11:00
75765    27673    495    2017-03-19 17:28:00    2017-03-19 17:28:00
75766    27673    663    2017-03-19 22:29:00    2017-03-19 22:29:00
75767    27673    512    2017-03-19 13:17:00    2017-03-19 13:17:00
75768    27674    788    2017-03-19 19:02:00    2017-03-19 19:02:00
75769    27674    684    2017-03-19 03:03:00    2017-03-19 03:03:00
75770    27674    948    2017-03-19 21:23:00    2017-03-19 21:23:00
75771    27674    815    2017-03-19 01:34:00    2017-03-19 01:34:00
75772    27674    521    2017-03-19 22:29:00    2017-03-19 22:29:00
75773    27675    961    2017-03-19 04:11:00    2017-03-19 04:11:00
75774    27675    619    2017-03-19 07:35:00    2017-03-19 07:35:00
75775    27675    780    2017-03-19 13:36:00    2017-03-19 13:36:00
75776    27675    528    2017-03-19 01:17:00    2017-03-19 01:17:00
75777    27675    950    2017-03-19 22:42:00    2017-03-19 22:42:00
75778    27676    678    2017-03-19 04:44:00    2017-03-19 04:44:00
75779    27676    713    2017-03-19 08:09:00    2017-03-19 08:09:00
75780    27676    541    2017-03-19 06:56:00    2017-03-19 06:56:00
75781    27676    648    2017-03-19 09:48:00    2017-03-19 09:48:00
75782    27676    610    2017-03-19 17:17:00    2017-03-19 17:17:00
75783    27677    735    2017-03-19 06:12:00    2017-03-19 06:12:00
75784    27677    941    2017-03-19 01:00:00    2017-03-19 01:00:00
75785    27677    594    2017-03-19 20:50:00    2017-03-19 20:50:00
75786    27677    816    2017-03-19 17:31:00    2017-03-19 17:31:00
75787    27677    495    2017-03-19 01:15:00    2017-03-19 01:15:00
75788    27678    892    2017-03-19 10:59:00    2017-03-19 10:59:00
75789    27678    567    2017-03-19 01:31:00    2017-03-19 01:31:00
75790    27678    789    2017-03-19 20:28:00    2017-03-19 20:28:00
75791    27678    742    2017-03-19 10:16:00    2017-03-19 10:16:00
75792    27678    565    2017-03-19 18:34:00    2017-03-19 18:34:00
75793    27679    809    2017-03-19 18:23:00    2017-03-19 18:23:00
75794    27679    867    2017-03-19 14:45:00    2017-03-19 14:45:00
75795    27679    648    2017-03-19 08:01:00    2017-03-19 08:01:00
75796    27679    498    2017-03-19 18:24:00    2017-03-19 18:24:00
75797    27679    847    2017-03-19 11:58:00    2017-03-19 11:58:00
75798    27680    481    2017-03-19 03:36:00    2017-03-19 03:36:00
75799    27680    498    2017-03-19 06:56:00    2017-03-19 06:56:00
75800    27680    952    2017-03-19 11:58:00    2017-03-19 11:58:00
75801    27680    682    2017-03-19 14:42:00    2017-03-19 14:42:00
75802    27680    884    2017-03-19 11:55:00    2017-03-19 11:55:00
75803    27681    609    2017-03-19 08:36:00    2017-03-19 08:36:00
75804    27681    912    2017-03-19 04:49:00    2017-03-19 04:49:00
75805    27681    556    2017-03-19 05:24:00    2017-03-19 05:24:00
75806    27681    790    2017-03-19 05:30:00    2017-03-19 05:30:00
75807    27681    483    2017-03-19 05:01:00    2017-03-19 05:01:00
75808    27682    720    2017-03-19 18:14:00    2017-03-19 18:14:00
75809    27682    470    2017-03-19 20:33:00    2017-03-19 20:33:00
75810    27682    553    2017-03-19 05:40:00    2017-03-19 05:40:00
75811    27682    799    2017-03-19 14:12:00    2017-03-19 14:12:00
75812    27682    868    2017-03-19 14:08:00    2017-03-19 14:08:00
75813    27683    958    2017-03-19 13:09:00    2017-03-19 13:09:00
75814    27683    775    2017-03-19 22:36:00    2017-03-19 22:36:00
75815    27683    737    2017-03-19 20:25:00    2017-03-19 20:25:00
75816    27683    711    2017-03-19 07:12:00    2017-03-19 07:12:00
75817    27683    953    2017-03-19 13:09:00    2017-03-19 13:09:00
75818    27684    809    2017-03-19 06:07:00    2017-03-19 06:07:00
75819    27684    764    2017-03-19 10:18:00    2017-03-19 10:18:00
75820    27684    493    2017-03-19 22:50:00    2017-03-19 22:50:00
75821    27684    817    2017-03-19 09:59:00    2017-03-19 09:59:00
75822    27684    906    2017-03-19 04:40:00    2017-03-19 04:40:00
75823    27685    713    2017-03-19 09:32:00    2017-03-19 09:32:00
75824    27685    839    2017-03-19 22:22:00    2017-03-19 22:22:00
75825    27685    913    2017-03-19 06:36:00    2017-03-19 06:36:00
75826    27685    615    2017-03-19 18:21:00    2017-03-19 18:21:00
75827    27685    946    2017-03-19 07:43:00    2017-03-19 07:43:00
75828    27686    753    2017-03-19 10:56:00    2017-03-19 10:56:00
75829    27686    658    2017-03-19 05:53:00    2017-03-19 05:53:00
75830    27686    960    2017-03-19 04:23:00    2017-03-19 04:23:00
75831    27686    673    2017-03-19 02:34:00    2017-03-19 02:34:00
75832    27686    714    2017-03-19 08:58:00    2017-03-19 08:58:00
75833    27687    632    2017-03-19 23:14:00    2017-03-19 23:14:00
75834    27687    784    2017-03-19 12:08:00    2017-03-19 12:08:00
75835    27687    563    2017-03-19 15:14:00    2017-03-19 15:14:00
75836    27687    868    2017-03-19 10:52:00    2017-03-19 10:52:00
75837    27687    477    2017-03-19 12:21:00    2017-03-19 12:21:00
75838    27688    786    2017-03-19 21:23:00    2017-03-19 21:23:00
75839    27688    690    2017-03-19 19:00:00    2017-03-19 19:00:00
75840    27688    640    2017-03-19 09:00:00    2017-03-19 09:00:00
75841    27688    883    2017-03-19 16:11:00    2017-03-19 16:11:00
75842    27688    710    2017-03-19 03:22:00    2017-03-19 03:22:00
75843    27689    599    2017-03-19 06:04:00    2017-03-19 06:04:00
75844    27689    694    2017-03-19 09:52:00    2017-03-19 09:52:00
75845    27689    791    2017-03-19 02:24:00    2017-03-19 02:24:00
75846    27689    553    2017-03-19 01:30:00    2017-03-19 01:30:00
75847    27689    477    2017-03-19 10:30:00    2017-03-19 10:30:00
75848    27690    820    2017-03-20 18:34:00    2017-03-20 18:34:00
75849    27690    883    2017-03-20 10:29:00    2017-03-20 10:29:00
75850    27690    829    2017-03-20 03:10:00    2017-03-20 03:10:00
75851    27690    471    2017-03-20 12:42:00    2017-03-20 12:42:00
75852    27690    820    2017-03-20 15:49:00    2017-03-20 15:49:00
75853    27691    545    2017-03-20 11:24:00    2017-03-20 11:24:00
75854    27691    672    2017-03-20 19:14:00    2017-03-20 19:14:00
75855    27691    610    2017-03-20 05:47:00    2017-03-20 05:47:00
75856    27691    807    2017-03-20 09:05:00    2017-03-20 09:05:00
75857    27691    918    2017-03-20 04:54:00    2017-03-20 04:54:00
75858    27692    547    2017-03-20 02:40:00    2017-03-20 02:40:00
75859    27692    822    2017-03-20 09:56:00    2017-03-20 09:56:00
75860    27692    541    2017-03-20 03:00:00    2017-03-20 03:00:00
75861    27692    850    2017-03-20 14:44:00    2017-03-20 14:44:00
75862    27692    775    2017-03-20 22:24:00    2017-03-20 22:24:00
75863    27693    611    2017-03-20 23:12:00    2017-03-20 23:12:00
75864    27693    646    2017-03-20 18:48:00    2017-03-20 18:48:00
75865    27693    502    2017-03-20 11:55:00    2017-03-20 11:55:00
75866    27693    768    2017-03-20 18:07:00    2017-03-20 18:07:00
75867    27693    525    2017-03-20 21:34:00    2017-03-20 21:34:00
75868    27694    922    2017-03-20 06:46:00    2017-03-20 06:46:00
75869    27694    732    2017-03-20 04:00:00    2017-03-20 04:00:00
75870    27694    736    2017-03-20 20:57:00    2017-03-20 20:57:00
75871    27694    670    2017-03-20 15:45:00    2017-03-20 15:45:00
75872    27694    739    2017-03-20 22:37:00    2017-03-20 22:37:00
75873    27695    931    2017-03-20 14:35:00    2017-03-20 14:35:00
75874    27695    496    2017-03-20 08:53:00    2017-03-20 08:53:00
75875    27695    783    2017-03-20 20:36:00    2017-03-20 20:36:00
75876    27695    831    2017-03-20 14:06:00    2017-03-20 14:06:00
75877    27695    642    2017-03-20 10:38:00    2017-03-20 10:38:00
75878    27696    741    2017-03-20 13:48:00    2017-03-20 13:48:00
75879    27696    545    2017-03-20 21:28:00    2017-03-20 21:28:00
75880    27696    731    2017-03-20 11:58:00    2017-03-20 11:58:00
75881    27696    678    2017-03-20 08:39:00    2017-03-20 08:39:00
75882    27696    701    2017-03-20 09:47:00    2017-03-20 09:47:00
75883    27697    863    2017-03-20 11:29:00    2017-03-20 11:29:00
75884    27697    592    2017-03-20 06:41:00    2017-03-20 06:41:00
75885    27697    538    2017-03-20 08:43:00    2017-03-20 08:43:00
75886    27697    563    2017-03-20 18:01:00    2017-03-20 18:01:00
75887    27697    586    2017-03-20 13:39:00    2017-03-20 13:39:00
75888    27698    549    2017-03-20 12:10:00    2017-03-20 12:10:00
75889    27698    865    2017-03-20 19:22:00    2017-03-20 19:22:00
75890    27698    511    2017-03-20 05:00:00    2017-03-20 05:00:00
75891    27698    653    2017-03-20 11:05:00    2017-03-20 11:05:00
75892    27698    814    2017-03-20 11:51:00    2017-03-20 11:51:00
75893    27699    771    2017-03-20 01:22:00    2017-03-20 01:22:00
75894    27699    758    2017-03-20 07:10:00    2017-03-20 07:10:00
75895    27699    877    2017-03-20 07:38:00    2017-03-20 07:38:00
75896    27699    863    2017-03-20 18:54:00    2017-03-20 18:54:00
75897    27699    839    2017-03-20 20:54:00    2017-03-20 20:54:00
75898    27700    833    2017-03-20 03:19:00    2017-03-20 03:19:00
75899    27700    777    2017-03-20 22:04:00    2017-03-20 22:04:00
75900    27700    902    2017-03-20 12:26:00    2017-03-20 12:26:00
75901    27700    753    2017-03-20 21:09:00    2017-03-20 21:09:00
75902    27700    781    2017-03-20 02:16:00    2017-03-20 02:16:00
75903    27701    860    2017-03-20 21:31:00    2017-03-20 21:31:00
75904    27701    678    2017-03-20 10:10:00    2017-03-20 10:10:00
75905    27701    467    2017-03-20 07:31:00    2017-03-20 07:31:00
75906    27701    626    2017-03-20 20:51:00    2017-03-20 20:51:00
75907    27701    883    2017-03-20 20:09:00    2017-03-20 20:09:00
75908    27702    563    2017-03-20 20:39:00    2017-03-20 20:39:00
75909    27702    729    2017-03-20 07:14:00    2017-03-20 07:14:00
75910    27702    762    2017-03-20 12:19:00    2017-03-20 12:19:00
75911    27702    601    2017-03-20 16:52:00    2017-03-20 16:52:00
75912    27702    649    2017-03-20 05:08:00    2017-03-20 05:08:00
75913    27703    579    2017-03-20 05:44:00    2017-03-20 05:44:00
75914    27703    753    2017-03-20 12:52:00    2017-03-20 12:52:00
75915    27703    847    2017-03-20 09:05:00    2017-03-20 09:05:00
75916    27703    519    2017-03-20 21:33:00    2017-03-20 21:33:00
75917    27703    751    2017-03-20 16:35:00    2017-03-20 16:35:00
75918    27704    529    2017-03-20 19:14:00    2017-03-20 19:14:00
75919    27704    768    2017-03-20 02:52:00    2017-03-20 02:52:00
75920    27704    577    2017-03-20 23:03:00    2017-03-20 23:03:00
75921    27704    601    2017-03-20 11:30:00    2017-03-20 11:30:00
75922    27704    726    2017-03-20 03:31:00    2017-03-20 03:31:00
75923    27705    535    2017-03-20 07:08:00    2017-03-20 07:08:00
75924    27705    680    2017-03-20 14:31:00    2017-03-20 14:31:00
75925    27705    775    2017-03-20 21:09:00    2017-03-20 21:09:00
75926    27705    882    2017-03-20 23:45:00    2017-03-20 23:45:00
75927    27705    916    2017-03-20 12:11:00    2017-03-20 12:11:00
75928    27706    795    2017-03-20 22:01:00    2017-03-20 22:01:00
75929    27706    864    2017-03-20 14:15:00    2017-03-20 14:15:00
75930    27706    484    2017-03-20 14:09:00    2017-03-20 14:09:00
75931    27706    473    2017-03-20 15:41:00    2017-03-20 15:41:00
75932    27706    786    2017-03-20 05:25:00    2017-03-20 05:25:00
75933    27707    611    2017-03-20 21:42:00    2017-03-20 21:42:00
75934    27707    644    2017-03-20 12:01:00    2017-03-20 12:01:00
75935    27707    538    2017-03-20 07:25:00    2017-03-20 07:25:00
75936    27707    696    2017-03-20 22:06:00    2017-03-20 22:06:00
75937    27707    524    2017-03-20 20:17:00    2017-03-20 20:17:00
75938    27708    493    2017-03-20 17:21:00    2017-03-20 17:21:00
75939    27708    823    2017-03-20 12:59:00    2017-03-20 12:59:00
75940    27708    749    2017-03-20 03:57:00    2017-03-20 03:57:00
75941    27708    906    2017-03-20 23:16:00    2017-03-20 23:16:00
75942    27708    746    2017-03-20 04:32:00    2017-03-20 04:32:00
75943    27709    786    2017-03-20 01:20:00    2017-03-20 01:20:00
75944    27709    637    2017-03-20 16:17:00    2017-03-20 16:17:00
75945    27709    914    2017-03-20 14:12:00    2017-03-20 14:12:00
75946    27709    845    2017-03-20 10:33:00    2017-03-20 10:33:00
75947    27709    517    2017-03-20 21:44:00    2017-03-20 21:44:00
75948    27710    926    2017-03-20 11:28:00    2017-03-20 11:28:00
75949    27710    734    2017-03-20 19:16:00    2017-03-20 19:16:00
75950    27710    949    2017-03-20 18:51:00    2017-03-20 18:51:00
75951    27710    875    2017-03-20 11:01:00    2017-03-20 11:01:00
75952    27710    486    2017-03-20 05:19:00    2017-03-20 05:19:00
75953    27711    716    2017-03-20 18:15:00    2017-03-20 18:15:00
75954    27711    487    2017-03-20 01:58:00    2017-03-20 01:58:00
75955    27711    692    2017-03-20 17:08:00    2017-03-20 17:08:00
75956    27711    716    2017-03-20 17:09:00    2017-03-20 17:09:00
75957    27711    841    2017-03-20 16:02:00    2017-03-20 16:02:00
75958    27712    574    2017-03-20 19:42:00    2017-03-20 19:42:00
75959    27712    529    2017-03-20 05:17:00    2017-03-20 05:17:00
75960    27712    859    2017-03-20 10:09:00    2017-03-20 10:09:00
75961    27712    512    2017-03-20 06:58:00    2017-03-20 06:58:00
75962    27712    507    2017-03-20 19:22:00    2017-03-20 19:22:00
75963    27713    791    2017-03-20 11:01:00    2017-03-20 11:01:00
75964    27713    722    2017-03-20 20:08:00    2017-03-20 20:08:00
75965    27713    484    2017-03-20 04:40:00    2017-03-20 04:40:00
75966    27713    679    2017-03-20 05:32:00    2017-03-20 05:32:00
75967    27713    485    2017-03-20 08:43:00    2017-03-20 08:43:00
75968    27714    544    2017-03-20 14:10:00    2017-03-20 14:10:00
75969    27714    721    2017-03-20 13:42:00    2017-03-20 13:42:00
75970    27714    922    2017-03-20 06:28:00    2017-03-20 06:28:00
75971    27714    648    2017-03-20 12:31:00    2017-03-20 12:31:00
75972    27714    797    2017-03-20 14:35:00    2017-03-20 14:35:00
75973    27715    517    2017-03-20 02:47:00    2017-03-20 02:47:00
75974    27715    484    2017-03-20 23:20:00    2017-03-20 23:20:00
75975    27715    819    2017-03-20 13:45:00    2017-03-20 13:45:00
75976    27715    689    2017-03-20 17:11:00    2017-03-20 17:11:00
75977    27715    916    2017-03-20 09:55:00    2017-03-20 09:55:00
75978    27716    495    2017-03-20 23:14:00    2017-03-20 23:14:00
75979    27716    706    2017-03-20 14:19:00    2017-03-20 14:19:00
75980    27716    880    2017-03-20 12:33:00    2017-03-20 12:33:00
75981    27716    519    2017-03-20 03:30:00    2017-03-20 03:30:00
75982    27716    868    2017-03-20 07:04:00    2017-03-20 07:04:00
75983    27717    939    2017-03-20 10:18:00    2017-03-20 10:18:00
75984    27717    633    2017-03-20 10:10:00    2017-03-20 10:10:00
75985    27717    536    2017-03-20 23:39:00    2017-03-20 23:39:00
75986    27717    871    2017-03-20 02:38:00    2017-03-20 02:38:00
75987    27717    552    2017-03-20 15:01:00    2017-03-20 15:01:00
75988    27718    508    2017-03-20 18:41:00    2017-03-20 18:41:00
75989    27718    735    2017-03-20 05:27:00    2017-03-20 05:27:00
75990    27718    511    2017-03-20 22:11:00    2017-03-20 22:11:00
75991    27718    485    2017-03-20 14:57:00    2017-03-20 14:57:00
75992    27718    656    2017-03-20 13:39:00    2017-03-20 13:39:00
75993    27719    572    2017-03-20 11:06:00    2017-03-20 11:06:00
75994    27719    889    2017-03-20 17:56:00    2017-03-20 17:56:00
75995    27719    532    2017-03-20 05:26:00    2017-03-20 05:26:00
75996    27719    481    2017-03-20 12:11:00    2017-03-20 12:11:00
75997    27719    632    2017-03-20 10:55:00    2017-03-20 10:55:00
75998    27720    765    2017-03-20 11:31:00    2017-03-20 11:31:00
75999    27720    694    2017-03-20 06:55:00    2017-03-20 06:55:00
76000    27720    481    2017-03-20 09:40:00    2017-03-20 09:40:00
76001    27720    658    2017-03-20 02:10:00    2017-03-20 02:10:00
76002    27720    696    2017-03-20 19:42:00    2017-03-20 19:42:00
76003    27721    850    2017-03-20 08:43:00    2017-03-20 08:43:00
76004    27721    679    2017-03-20 11:36:00    2017-03-20 11:36:00
76005    27721    906    2017-03-20 16:28:00    2017-03-20 16:28:00
76006    27721    661    2017-03-20 21:21:00    2017-03-20 21:21:00
76007    27721    487    2017-03-20 05:06:00    2017-03-20 05:06:00
76008    27722    499    2017-03-20 12:07:00    2017-03-20 12:07:00
76009    27722    789    2017-03-20 17:24:00    2017-03-20 17:24:00
76010    27722    805    2017-03-20 19:24:00    2017-03-20 19:24:00
76011    27722    505    2017-03-20 08:39:00    2017-03-20 08:39:00
76012    27722    659    2017-03-20 13:05:00    2017-03-20 13:05:00
76013    27723    774    2017-03-20 06:23:00    2017-03-20 06:23:00
76014    27723    573    2017-03-20 16:19:00    2017-03-20 16:19:00
76015    27723    531    2017-03-20 17:56:00    2017-03-20 17:56:00
76016    27723    495    2017-03-20 15:16:00    2017-03-20 15:16:00
76017    27723    870    2017-03-20 23:30:00    2017-03-20 23:30:00
76018    27724    858    2017-03-20 10:41:00    2017-03-20 10:41:00
76019    27724    652    2017-03-20 17:57:00    2017-03-20 17:57:00
76020    27724    603    2017-03-20 21:36:00    2017-03-20 21:36:00
76021    27724    659    2017-03-20 06:24:00    2017-03-20 06:24:00
76022    27724    721    2017-03-20 22:08:00    2017-03-20 22:08:00
76023    27725    679    2017-03-20 03:57:00    2017-03-20 03:57:00
76024    27725    510    2017-03-20 07:23:00    2017-03-20 07:23:00
76025    27725    561    2017-03-20 22:30:00    2017-03-20 22:30:00
76026    27725    935    2017-03-20 12:41:00    2017-03-20 12:41:00
76027    27725    857    2017-03-20 15:51:00    2017-03-20 15:51:00
76028    27726    738    2017-03-20 22:29:00    2017-03-20 22:29:00
76029    27726    781    2017-03-20 06:07:00    2017-03-20 06:07:00
76030    27726    619    2017-03-20 23:19:00    2017-03-20 23:19:00
76031    27726    919    2017-03-20 20:52:00    2017-03-20 20:52:00
76032    27726    537    2017-03-20 06:28:00    2017-03-20 06:28:00
76033    27727    899    2017-03-20 19:02:00    2017-03-20 19:02:00
76034    27727    581    2017-03-20 02:02:00    2017-03-20 02:02:00
76035    27727    864    2017-03-20 23:50:00    2017-03-20 23:50:00
76036    27727    902    2017-03-20 20:56:00    2017-03-20 20:56:00
76037    27727    502    2017-03-20 01:49:00    2017-03-20 01:49:00
76038    27728    582    2017-03-20 07:21:00    2017-03-20 07:21:00
76039    27728    638    2017-03-20 01:02:00    2017-03-20 01:02:00
76040    27728    689    2017-03-20 07:19:00    2017-03-20 07:19:00
76041    27728    953    2017-03-20 10:50:00    2017-03-20 10:50:00
76042    27728    671    2017-03-20 13:52:00    2017-03-20 13:52:00
76043    27729    783    2017-03-20 05:42:00    2017-03-20 05:42:00
76044    27729    823    2017-03-20 16:21:00    2017-03-20 16:21:00
76045    27729    836    2017-03-20 08:02:00    2017-03-20 08:02:00
76046    27729    612    2017-03-20 20:48:00    2017-03-20 20:48:00
76047    27729    951    2017-03-20 12:04:00    2017-03-20 12:04:00
76048    27730    884    2017-03-20 08:05:00    2017-03-20 08:05:00
76049    27730    491    2017-03-20 17:24:00    2017-03-20 17:24:00
76050    27730    864    2017-03-20 21:44:00    2017-03-20 21:44:00
76051    27730    683    2017-03-20 07:37:00    2017-03-20 07:37:00
76052    27730    725    2017-03-20 08:40:00    2017-03-20 08:40:00
76053    27731    823    2017-03-20 17:46:00    2017-03-20 17:46:00
76054    27731    791    2017-03-20 21:20:00    2017-03-20 21:20:00
76055    27731    717    2017-03-20 12:03:00    2017-03-20 12:03:00
76056    27731    795    2017-03-20 22:59:00    2017-03-20 22:59:00
76057    27731    590    2017-03-20 20:57:00    2017-03-20 20:57:00
76058    27732    554    2017-03-20 02:45:00    2017-03-20 02:45:00
76059    27732    747    2017-03-20 12:57:00    2017-03-20 12:57:00
76060    27732    914    2017-03-20 10:32:00    2017-03-20 10:32:00
76061    27732    767    2017-03-20 09:31:00    2017-03-20 09:31:00
76062    27732    807    2017-03-20 13:57:00    2017-03-20 13:57:00
76063    27733    736    2017-03-20 20:26:00    2017-03-20 20:26:00
76064    27733    875    2017-03-20 02:29:00    2017-03-20 02:29:00
76065    27733    896    2017-03-20 22:02:00    2017-03-20 22:02:00
76066    27733    637    2017-03-20 03:10:00    2017-03-20 03:10:00
76067    27733    917    2017-03-20 17:45:00    2017-03-20 17:45:00
76068    27734    812    2017-03-20 02:25:00    2017-03-20 02:25:00
76069    27734    532    2017-03-20 18:21:00    2017-03-20 18:21:00
76070    27734    595    2017-03-20 08:59:00    2017-03-20 08:59:00
76071    27734    665    2017-03-20 01:29:00    2017-03-20 01:29:00
76072    27734    563    2017-03-20 06:27:00    2017-03-20 06:27:00
76073    27735    504    2017-03-20 20:09:00    2017-03-20 20:09:00
76074    27735    717    2017-03-20 08:48:00    2017-03-20 08:48:00
76075    27735    675    2017-03-20 23:45:00    2017-03-20 23:45:00
76076    27735    712    2017-03-20 07:49:00    2017-03-20 07:49:00
76077    27735    937    2017-03-20 14:53:00    2017-03-20 14:53:00
76078    27736    646    2017-03-20 10:06:00    2017-03-20 10:06:00
76079    27736    556    2017-03-20 07:29:00    2017-03-20 07:29:00
76080    27736    705    2017-03-20 17:29:00    2017-03-20 17:29:00
76081    27736    786    2017-03-20 12:38:00    2017-03-20 12:38:00
76082    27736    692    2017-03-20 10:25:00    2017-03-20 10:25:00
76083    27737    473    2017-03-20 21:59:00    2017-03-20 21:59:00
76084    27737    870    2017-03-20 13:01:00    2017-03-20 13:01:00
76085    27737    505    2017-03-20 12:24:00    2017-03-20 12:24:00
76086    27737    772    2017-03-20 09:24:00    2017-03-20 09:24:00
76087    27737    847    2017-03-20 14:56:00    2017-03-20 14:56:00
76088    27738    547    2017-03-20 16:00:00    2017-03-20 16:00:00
76089    27738    642    2017-03-20 22:54:00    2017-03-20 22:54:00
76090    27738    592    2017-03-20 13:18:00    2017-03-20 13:18:00
76091    27738    656    2017-03-20 06:00:00    2017-03-20 06:00:00
76092    27738    596    2017-03-20 13:31:00    2017-03-20 13:31:00
76093    27739    729    2017-03-20 18:50:00    2017-03-20 18:50:00
76094    27739    947    2017-03-20 01:56:00    2017-03-20 01:56:00
76095    27739    503    2017-03-20 15:15:00    2017-03-20 15:15:00
76096    27739    596    2017-03-20 14:40:00    2017-03-20 14:40:00
76097    27739    569    2017-03-20 18:28:00    2017-03-20 18:28:00
76098    27740    652    2017-03-20 07:06:00    2017-03-20 07:06:00
76099    27740    592    2017-03-20 03:13:00    2017-03-20 03:13:00
76100    27740    786    2017-03-20 11:41:00    2017-03-20 11:41:00
76101    27740    824    2017-03-20 04:34:00    2017-03-20 04:34:00
76102    27740    709    2017-03-20 07:03:00    2017-03-20 07:03:00
76103    27741    605    2017-03-20 20:44:00    2017-03-20 20:44:00
76104    27741    715    2017-03-20 08:11:00    2017-03-20 08:11:00
76105    27741    467    2017-03-20 13:22:00    2017-03-20 13:22:00
76106    27741    961    2017-03-20 08:18:00    2017-03-20 08:18:00
76107    27741    790    2017-03-20 17:00:00    2017-03-20 17:00:00
76108    27742    764    2017-03-20 06:55:00    2017-03-20 06:55:00
76109    27742    530    2017-03-20 17:54:00    2017-03-20 17:54:00
76110    27742    715    2017-03-20 19:22:00    2017-03-20 19:22:00
76111    27742    551    2017-03-20 20:44:00    2017-03-20 20:44:00
76112    27742    711    2017-03-20 21:12:00    2017-03-20 21:12:00
76113    27743    510    2017-03-21 01:57:00    2017-03-21 01:57:00
76114    27743    538    2017-03-21 20:46:00    2017-03-21 20:46:00
76115    27743    553    2017-03-21 02:26:00    2017-03-21 02:26:00
76116    27743    809    2017-03-21 01:33:00    2017-03-21 01:33:00
76117    27743    493    2017-03-21 12:28:00    2017-03-21 12:28:00
76118    27744    740    2017-03-21 10:02:00    2017-03-21 10:02:00
76119    27744    802    2017-03-21 07:02:00    2017-03-21 07:02:00
76120    27744    540    2017-03-21 23:30:00    2017-03-21 23:30:00
76121    27744    620    2017-03-21 11:51:00    2017-03-21 11:51:00
76122    27744    925    2017-03-21 12:58:00    2017-03-21 12:58:00
76123    27745    546    2017-03-21 15:04:00    2017-03-21 15:04:00
76124    27745    475    2017-03-21 18:30:00    2017-03-21 18:30:00
76125    27745    563    2017-03-21 13:28:00    2017-03-21 13:28:00
76126    27745    530    2017-03-21 13:21:00    2017-03-21 13:21:00
76127    27745    467    2017-03-21 09:27:00    2017-03-21 09:27:00
76128    27746    612    2017-03-21 20:42:00    2017-03-21 20:42:00
76129    27746    610    2017-03-21 08:27:00    2017-03-21 08:27:00
76130    27746    498    2017-03-21 04:32:00    2017-03-21 04:32:00
76131    27746    667    2017-03-21 04:41:00    2017-03-21 04:41:00
76132    27746    852    2017-03-21 20:44:00    2017-03-21 20:44:00
76133    27747    840    2017-03-21 18:59:00    2017-03-21 18:59:00
76134    27747    716    2017-03-21 06:57:00    2017-03-21 06:57:00
76135    27747    582    2017-03-21 12:06:00    2017-03-21 12:06:00
76136    27747    868    2017-03-21 10:00:00    2017-03-21 10:00:00
76137    27747    762    2017-03-21 22:50:00    2017-03-21 22:50:00
76138    27748    924    2017-03-21 11:19:00    2017-03-21 11:19:00
76139    27748    557    2017-03-21 02:58:00    2017-03-21 02:58:00
76140    27748    951    2017-03-21 06:02:00    2017-03-21 06:02:00
76141    27748    792    2017-03-21 03:42:00    2017-03-21 03:42:00
76142    27748    860    2017-03-21 05:26:00    2017-03-21 05:26:00
76143    27749    644    2017-03-21 09:51:00    2017-03-21 09:51:00
76144    27749    807    2017-03-21 21:26:00    2017-03-21 21:26:00
76145    27749    739    2017-03-21 23:52:00    2017-03-21 23:52:00
76146    27749    685    2017-03-21 13:26:00    2017-03-21 13:26:00
76147    27749    844    2017-03-21 05:28:00    2017-03-21 05:28:00
76148    27750    556    2017-03-21 19:06:00    2017-03-21 19:06:00
76149    27750    578    2017-03-21 22:49:00    2017-03-21 22:49:00
76150    27750    503    2017-03-21 02:18:00    2017-03-21 02:18:00
76151    27750    809    2017-03-21 23:23:00    2017-03-21 23:23:00
76152    27750    826    2017-03-21 06:50:00    2017-03-21 06:50:00
76153    27751    858    2017-03-21 12:47:00    2017-03-21 12:47:00
76154    27751    862    2017-03-21 02:32:00    2017-03-21 02:32:00
76155    27751    903    2017-03-21 18:01:00    2017-03-21 18:01:00
76156    27751    710    2017-03-21 11:34:00    2017-03-21 11:34:00
76157    27751    916    2017-03-21 16:27:00    2017-03-21 16:27:00
76158    27752    772    2017-03-21 16:30:00    2017-03-21 16:30:00
76159    27752    871    2017-03-21 10:47:00    2017-03-21 10:47:00
76160    27752    858    2017-03-21 17:12:00    2017-03-21 17:12:00
76161    27752    613    2017-03-21 15:54:00    2017-03-21 15:54:00
76162    27752    934    2017-03-21 13:06:00    2017-03-21 13:06:00
76163    27753    686    2017-03-21 01:47:00    2017-03-21 01:47:00
76164    27753    653    2017-03-21 20:53:00    2017-03-21 20:53:00
76165    27753    612    2017-03-21 16:45:00    2017-03-21 16:45:00
76166    27753    491    2017-03-21 19:49:00    2017-03-21 19:49:00
76167    27753    818    2017-03-21 02:54:00    2017-03-21 02:54:00
76168    27754    856    2017-03-21 03:39:00    2017-03-21 03:39:00
76169    27754    555    2017-03-21 05:52:00    2017-03-21 05:52:00
76170    27754    930    2017-03-21 16:26:00    2017-03-21 16:26:00
76171    27754    687    2017-03-21 11:57:00    2017-03-21 11:57:00
76172    27754    792    2017-03-21 13:10:00    2017-03-21 13:10:00
76173    27755    881    2017-03-21 08:15:00    2017-03-21 08:15:00
76174    27755    844    2017-03-21 10:23:00    2017-03-21 10:23:00
76175    27755    831    2017-03-21 13:33:00    2017-03-21 13:33:00
76176    27755    924    2017-03-21 21:18:00    2017-03-21 21:18:00
76177    27755    816    2017-03-21 10:59:00    2017-03-21 10:59:00
76178    27756    721    2017-03-21 01:17:00    2017-03-21 01:17:00
76179    27756    511    2017-03-21 16:33:00    2017-03-21 16:33:00
76180    27756    857    2017-03-21 19:10:00    2017-03-21 19:10:00
76181    27756    907    2017-03-21 13:48:00    2017-03-21 13:48:00
76182    27756    642    2017-03-21 02:30:00    2017-03-21 02:30:00
76183    27757    621    2017-03-21 19:37:00    2017-03-21 19:37:00
76184    27757    715    2017-03-21 14:26:00    2017-03-21 14:26:00
76185    27757    918    2017-03-21 16:49:00    2017-03-21 16:49:00
76186    27757    599    2017-03-21 03:23:00    2017-03-21 03:23:00
76187    27757    543    2017-03-21 10:38:00    2017-03-21 10:38:00
76188    27758    634    2017-03-21 19:11:00    2017-03-21 19:11:00
76189    27758    682    2017-03-21 22:43:00    2017-03-21 22:43:00
76190    27758    767    2017-03-21 15:53:00    2017-03-21 15:53:00
76191    27758    867    2017-03-21 02:54:00    2017-03-21 02:54:00
76192    27758    712    2017-03-21 11:44:00    2017-03-21 11:44:00
76193    27759    839    2017-03-21 17:43:00    2017-03-21 17:43:00
76194    27759    521    2017-03-21 08:05:00    2017-03-21 08:05:00
76195    27759    755    2017-03-21 03:42:00    2017-03-21 03:42:00
76196    27759    758    2017-03-21 23:28:00    2017-03-21 23:28:00
76197    27759    646    2017-03-21 11:39:00    2017-03-21 11:39:00
76198    27760    945    2017-03-21 11:50:00    2017-03-21 11:50:00
76199    27760    508    2017-03-21 16:15:00    2017-03-21 16:15:00
76200    27760    934    2017-03-21 03:58:00    2017-03-21 03:58:00
76201    27760    929    2017-03-21 22:20:00    2017-03-21 22:20:00
76202    27760    586    2017-03-21 16:18:00    2017-03-21 16:18:00
76203    27761    605    2017-03-22 07:09:00    2017-03-22 07:09:00
76204    27761    943    2017-03-22 05:29:00    2017-03-22 05:29:00
76205    27761    542    2017-03-22 10:26:00    2017-03-22 10:26:00
76206    27761    763    2017-03-22 07:24:00    2017-03-22 07:24:00
76207    27761    726    2017-03-22 14:47:00    2017-03-22 14:47:00
76208    27762    609    2017-03-22 02:16:00    2017-03-22 02:16:00
76209    27762    882    2017-03-22 18:20:00    2017-03-22 18:20:00
76210    27762    894    2017-03-22 04:52:00    2017-03-22 04:52:00
76211    27762    938    2017-03-22 21:37:00    2017-03-22 21:37:00
76212    27762    868    2017-03-22 04:57:00    2017-03-22 04:57:00
76213    27763    515    2017-03-22 14:04:00    2017-03-22 14:04:00
76214    27763    620    2017-03-22 06:07:00    2017-03-22 06:07:00
76215    27763    534    2017-03-22 16:49:00    2017-03-22 16:49:00
76216    27763    685    2017-03-22 13:12:00    2017-03-22 13:12:00
76217    27763    821    2017-03-22 09:24:00    2017-03-22 09:24:00
76218    27764    468    2017-03-22 14:29:00    2017-03-22 14:29:00
76219    27764    801    2017-03-22 01:56:00    2017-03-22 01:56:00
76220    27764    627    2017-03-22 15:57:00    2017-03-22 15:57:00
76221    27764    692    2017-03-22 16:38:00    2017-03-22 16:38:00
76222    27764    678    2017-03-22 07:22:00    2017-03-22 07:22:00
76223    27765    614    2017-03-22 02:36:00    2017-03-22 02:36:00
76224    27765    631    2017-03-22 02:23:00    2017-03-22 02:23:00
76225    27765    940    2017-03-22 22:09:00    2017-03-22 22:09:00
76226    27765    925    2017-03-22 10:39:00    2017-03-22 10:39:00
76227    27765    545    2017-03-22 02:18:00    2017-03-22 02:18:00
76228    27766    713    2017-03-22 13:01:00    2017-03-22 13:01:00
76229    27766    924    2017-03-22 18:17:00    2017-03-22 18:17:00
76230    27766    665    2017-03-22 10:20:00    2017-03-22 10:20:00
76231    27766    693    2017-03-22 21:24:00    2017-03-22 21:24:00
76232    27766    729    2017-03-22 21:45:00    2017-03-22 21:45:00
76233    27767    687    2017-03-22 06:47:00    2017-03-22 06:47:00
76234    27767    728    2017-03-22 15:22:00    2017-03-22 15:22:00
76235    27767    685    2017-03-22 15:57:00    2017-03-22 15:57:00
76236    27767    576    2017-03-22 09:56:00    2017-03-22 09:56:00
76237    27767    553    2017-03-22 20:24:00    2017-03-22 20:24:00
76238    27768    589    2017-03-22 02:13:00    2017-03-22 02:13:00
76239    27768    559    2017-03-22 11:59:00    2017-03-22 11:59:00
76240    27768    591    2017-03-22 03:08:00    2017-03-22 03:08:00
76241    27768    533    2017-03-22 14:42:00    2017-03-22 14:42:00
76242    27768    559    2017-03-22 07:53:00    2017-03-22 07:53:00
76243    27769    557    2017-03-22 01:15:00    2017-03-22 01:15:00
76244    27769    779    2017-03-22 13:51:00    2017-03-22 13:51:00
76245    27769    883    2017-03-22 19:39:00    2017-03-22 19:39:00
76246    27769    947    2017-03-22 18:21:00    2017-03-22 18:21:00
76247    27769    692    2017-03-22 04:03:00    2017-03-22 04:03:00
76248    27770    766    2017-03-22 19:13:00    2017-03-22 19:13:00
76249    27770    635    2017-03-22 03:08:00    2017-03-22 03:08:00
76250    27770    764    2017-03-22 16:52:00    2017-03-22 16:52:00
76251    27770    886    2017-03-22 17:21:00    2017-03-22 17:21:00
76252    27770    624    2017-03-22 14:09:00    2017-03-22 14:09:00
76253    27771    632    2017-03-22 04:57:00    2017-03-22 04:57:00
76254    27771    547    2017-03-22 06:58:00    2017-03-22 06:58:00
76255    27771    849    2017-03-22 08:37:00    2017-03-22 08:37:00
76256    27771    851    2017-03-22 12:24:00    2017-03-22 12:24:00
76257    27771    683    2017-03-22 05:59:00    2017-03-22 05:59:00
76258    27772    719    2017-03-22 01:10:00    2017-03-22 01:10:00
76259    27772    942    2017-03-22 12:41:00    2017-03-22 12:41:00
76260    27772    721    2017-03-22 08:04:00    2017-03-22 08:04:00
76261    27772    858    2017-03-22 08:51:00    2017-03-22 08:51:00
76262    27772    747    2017-03-22 03:01:00    2017-03-22 03:01:00
76263    27773    665    2017-03-22 01:22:00    2017-03-22 01:22:00
76264    27773    833    2017-03-22 23:42:00    2017-03-22 23:42:00
76265    27773    564    2017-03-22 14:55:00    2017-03-22 14:55:00
76266    27773    771    2017-03-22 03:08:00    2017-03-22 03:08:00
76267    27773    849    2017-03-22 21:53:00    2017-03-22 21:53:00
76268    27774    633    2017-03-22 11:58:00    2017-03-22 11:58:00
76269    27774    513    2017-03-22 02:00:00    2017-03-22 02:00:00
76270    27774    864    2017-03-22 18:54:00    2017-03-22 18:54:00
76271    27774    886    2017-03-22 23:02:00    2017-03-22 23:02:00
76272    27774    530    2017-03-22 08:24:00    2017-03-22 08:24:00
76273    27775    956    2017-03-22 03:10:00    2017-03-22 03:10:00
76274    27775    481    2017-03-22 08:54:00    2017-03-22 08:54:00
76275    27775    692    2017-03-22 21:43:00    2017-03-22 21:43:00
76276    27775    952    2017-03-22 08:56:00    2017-03-22 08:56:00
76277    27775    795    2017-03-22 07:57:00    2017-03-22 07:57:00
76278    27776    507    2017-03-22 15:06:00    2017-03-22 15:06:00
76279    27776    837    2017-03-22 21:05:00    2017-03-22 21:05:00
76280    27776    602    2017-03-22 05:20:00    2017-03-22 05:20:00
76281    27776    955    2017-03-22 07:05:00    2017-03-22 07:05:00
76282    27776    696    2017-03-22 05:53:00    2017-03-22 05:53:00
76283    27777    756    2017-03-22 02:40:00    2017-03-22 02:40:00
76284    27777    704    2017-03-22 04:39:00    2017-03-22 04:39:00
76285    27777    705    2017-03-22 02:44:00    2017-03-22 02:44:00
76286    27777    710    2017-03-22 09:30:00    2017-03-22 09:30:00
76287    27777    957    2017-03-22 20:09:00    2017-03-22 20:09:00
76288    27778    484    2017-03-22 02:47:00    2017-03-22 02:47:00
76289    27778    624    2017-03-22 03:37:00    2017-03-22 03:37:00
76290    27778    637    2017-03-22 20:36:00    2017-03-22 20:36:00
76291    27778    948    2017-03-22 04:45:00    2017-03-22 04:45:00
76292    27778    605    2017-03-22 18:47:00    2017-03-22 18:47:00
76293    27779    537    2017-03-22 05:05:00    2017-03-22 05:05:00
76294    27779    774    2017-03-22 23:53:00    2017-03-22 23:53:00
76295    27779    886    2017-03-22 10:39:00    2017-03-22 10:39:00
76296    27779    653    2017-03-22 08:55:00    2017-03-22 08:55:00
76297    27779    826    2017-03-22 23:10:00    2017-03-22 23:10:00
76298    27780    769    2017-03-22 12:52:00    2017-03-22 12:52:00
76299    27780    565    2017-03-22 04:08:00    2017-03-22 04:08:00
76300    27780    576    2017-03-22 08:47:00    2017-03-22 08:47:00
76301    27780    501    2017-03-22 14:53:00    2017-03-22 14:53:00
76302    27780    713    2017-03-22 22:19:00    2017-03-22 22:19:00
76303    27781    699    2017-03-22 11:50:00    2017-03-22 11:50:00
76304    27781    773    2017-03-22 08:47:00    2017-03-22 08:47:00
76305    27781    937    2017-03-22 10:14:00    2017-03-22 10:14:00
76306    27781    494    2017-03-22 12:40:00    2017-03-22 12:40:00
76307    27781    681    2017-03-22 17:49:00    2017-03-22 17:49:00
76308    27782    546    2017-03-23 03:50:00    2017-03-23 03:50:00
76309    27782    537    2017-03-23 04:55:00    2017-03-23 04:55:00
76310    27782    678    2017-03-23 02:30:00    2017-03-23 02:30:00
76311    27782    920    2017-03-23 05:02:00    2017-03-23 05:02:00
76312    27782    673    2017-03-23 18:53:00    2017-03-23 18:53:00
76313    27783    753    2017-03-23 04:38:00    2017-03-23 04:38:00
76314    27783    714    2017-03-23 02:38:00    2017-03-23 02:38:00
76315    27783    665    2017-03-23 02:53:00    2017-03-23 02:53:00
76316    27783    625    2017-03-23 23:57:00    2017-03-23 23:57:00
76317    27783    883    2017-03-23 04:27:00    2017-03-23 04:27:00
76318    27784    831    2017-03-23 22:19:00    2017-03-23 22:19:00
76319    27784    822    2017-03-23 14:12:00    2017-03-23 14:12:00
76320    27784    699    2017-03-23 17:17:00    2017-03-23 17:17:00
76321    27784    621    2017-03-23 11:00:00    2017-03-23 11:00:00
76322    27784    934    2017-03-23 23:26:00    2017-03-23 23:26:00
76323    27785    934    2017-03-23 14:00:00    2017-03-23 14:00:00
76324    27785    468    2017-03-23 15:50:00    2017-03-23 15:50:00
76325    27785    650    2017-03-23 10:12:00    2017-03-23 10:12:00
76326    27785    667    2017-03-23 04:52:00    2017-03-23 04:52:00
76327    27785    769    2017-03-23 08:42:00    2017-03-23 08:42:00
76328    27786    480    2017-03-23 18:39:00    2017-03-23 18:39:00
76329    27786    574    2017-03-23 14:47:00    2017-03-23 14:47:00
76330    27786    917    2017-03-23 14:26:00    2017-03-23 14:26:00
76331    27786    846    2017-03-23 22:29:00    2017-03-23 22:29:00
76332    27786    589    2017-03-23 17:49:00    2017-03-23 17:49:00
76333    27787    637    2017-03-23 19:05:00    2017-03-23 19:05:00
76334    27787    492    2017-03-23 18:13:00    2017-03-23 18:13:00
76335    27787    840    2017-03-23 12:24:00    2017-03-23 12:24:00
76336    27787    596    2017-03-23 09:27:00    2017-03-23 09:27:00
76337    27787    505    2017-03-23 01:03:00    2017-03-23 01:03:00
76338    27788    798    2017-03-23 14:00:00    2017-03-23 14:00:00
76339    27788    513    2017-03-23 09:32:00    2017-03-23 09:32:00
76340    27788    666    2017-03-23 22:13:00    2017-03-23 22:13:00
76341    27788    501    2017-03-23 12:21:00    2017-03-23 12:21:00
76342    27788    740    2017-03-23 15:23:00    2017-03-23 15:23:00
76343    27789    677    2017-03-23 22:14:00    2017-03-23 22:14:00
76344    27789    762    2017-03-23 09:09:00    2017-03-23 09:09:00
76345    27789    506    2017-03-23 09:48:00    2017-03-23 09:48:00
76346    27789    773    2017-03-23 15:17:00    2017-03-23 15:17:00
76347    27789    606    2017-03-23 06:02:00    2017-03-23 06:02:00
76348    27790    799    2017-03-23 18:11:00    2017-03-23 18:11:00
76349    27790    857    2017-03-23 04:12:00    2017-03-23 04:12:00
76350    27790    471    2017-03-23 23:26:00    2017-03-23 23:26:00
76351    27790    819    2017-03-23 20:16:00    2017-03-23 20:16:00
76352    27790    635    2017-03-23 05:03:00    2017-03-23 05:03:00
76353    27791    760    2017-03-23 15:25:00    2017-03-23 15:25:00
76354    27791    706    2017-03-23 09:08:00    2017-03-23 09:08:00
76355    27791    944    2017-03-23 23:57:00    2017-03-23 23:57:00
76356    27791    886    2017-03-23 14:35:00    2017-03-23 14:35:00
76357    27791    765    2017-03-23 07:54:00    2017-03-23 07:54:00
76358    27792    945    2017-03-23 05:16:00    2017-03-23 05:16:00
76359    27792    533    2017-03-23 16:20:00    2017-03-23 16:20:00
76360    27792    644    2017-03-23 18:57:00    2017-03-23 18:57:00
76361    27792    867    2017-03-23 18:16:00    2017-03-23 18:16:00
76362    27792    856    2017-03-23 05:34:00    2017-03-23 05:34:00
76363    27793    691    2017-03-23 17:12:00    2017-03-23 17:12:00
76364    27793    945    2017-03-23 16:58:00    2017-03-23 16:58:00
76365    27793    813    2017-03-23 11:16:00    2017-03-23 11:16:00
76366    27793    610    2017-03-23 06:18:00    2017-03-23 06:18:00
76367    27793    930    2017-03-23 21:03:00    2017-03-23 21:03:00
76368    27794    503    2017-03-23 21:22:00    2017-03-23 21:22:00
76369    27794    746    2017-03-23 02:42:00    2017-03-23 02:42:00
76370    27794    654    2017-03-23 06:42:00    2017-03-23 06:42:00
76371    27794    954    2017-03-23 21:30:00    2017-03-23 21:30:00
76372    27794    879    2017-03-23 16:27:00    2017-03-23 16:27:00
76373    27795    679    2017-03-23 09:16:00    2017-03-23 09:16:00
76374    27795    538    2017-03-23 03:16:00    2017-03-23 03:16:00
76375    27795    771    2017-03-23 09:06:00    2017-03-23 09:06:00
76376    27795    837    2017-03-23 13:04:00    2017-03-23 13:04:00
76377    27795    584    2017-03-23 08:38:00    2017-03-23 08:38:00
76378    27796    706    2017-03-23 01:09:00    2017-03-23 01:09:00
76379    27796    918    2017-03-23 03:26:00    2017-03-23 03:26:00
76380    27796    600    2017-03-23 21:37:00    2017-03-23 21:37:00
76381    27796    675    2017-03-23 15:37:00    2017-03-23 15:37:00
76382    27796    855    2017-03-23 17:26:00    2017-03-23 17:26:00
76383    27797    882    2017-03-23 17:53:00    2017-03-23 17:53:00
76384    27797    638    2017-03-23 15:25:00    2017-03-23 15:25:00
76385    27797    782    2017-03-23 23:20:00    2017-03-23 23:20:00
76386    27797    690    2017-03-23 06:26:00    2017-03-23 06:26:00
76387    27797    646    2017-03-23 09:33:00    2017-03-23 09:33:00
76388    27798    946    2017-03-23 05:29:00    2017-03-23 05:29:00
76389    27798    646    2017-03-23 15:38:00    2017-03-23 15:38:00
76390    27798    638    2017-03-23 01:19:00    2017-03-23 01:19:00
76391    27798    680    2017-03-23 17:51:00    2017-03-23 17:51:00
76392    27798    680    2017-03-23 03:51:00    2017-03-23 03:51:00
76393    27799    538    2017-03-23 18:22:00    2017-03-23 18:22:00
76394    27799    745    2017-03-23 08:45:00    2017-03-23 08:45:00
76395    27799    494    2017-03-23 09:33:00    2017-03-23 09:33:00
76396    27799    705    2017-03-23 07:57:00    2017-03-23 07:57:00
76397    27799    562    2017-03-23 01:20:00    2017-03-23 01:20:00
76398    27800    505    2017-03-23 05:53:00    2017-03-23 05:53:00
76399    27800    762    2017-03-23 17:00:00    2017-03-23 17:00:00
76400    27800    686    2017-03-23 13:46:00    2017-03-23 13:46:00
76401    27800    703    2017-03-23 12:11:00    2017-03-23 12:11:00
76402    27800    550    2017-03-23 02:17:00    2017-03-23 02:17:00
76403    27801    905    2017-03-23 07:53:00    2017-03-23 07:53:00
76404    27801    741    2017-03-23 09:24:00    2017-03-23 09:24:00
76405    27801    557    2017-03-23 11:54:00    2017-03-23 11:54:00
76406    27801    876    2017-03-23 01:33:00    2017-03-23 01:33:00
76407    27801    515    2017-03-23 07:48:00    2017-03-23 07:48:00
76408    27802    668    2017-03-23 09:39:00    2017-03-23 09:39:00
76409    27802    471    2017-03-23 18:25:00    2017-03-23 18:25:00
76410    27802    900    2017-03-23 12:16:00    2017-03-23 12:16:00
76411    27802    713    2017-03-23 08:37:00    2017-03-23 08:37:00
76412    27802    855    2017-03-23 09:06:00    2017-03-23 09:06:00
76413    27803    668    2017-03-23 23:12:00    2017-03-23 23:12:00
76414    27803    508    2017-03-23 14:12:00    2017-03-23 14:12:00
76415    27803    631    2017-03-23 17:49:00    2017-03-23 17:49:00
76416    27803    653    2017-03-23 01:41:00    2017-03-23 01:41:00
76417    27803    650    2017-03-23 19:13:00    2017-03-23 19:13:00
76418    27804    799    2017-03-23 10:58:00    2017-03-23 10:58:00
76419    27804    674    2017-03-23 20:53:00    2017-03-23 20:53:00
76420    27804    623    2017-03-23 20:51:00    2017-03-23 20:51:00
76421    27804    852    2017-03-23 02:05:00    2017-03-23 02:05:00
76422    27804    886    2017-03-23 12:52:00    2017-03-23 12:52:00
76423    27805    646    2017-03-23 08:55:00    2017-03-23 08:55:00
76424    27805    732    2017-03-23 20:29:00    2017-03-23 20:29:00
76425    27805    740    2017-03-23 10:11:00    2017-03-23 10:11:00
76426    27805    582    2017-03-23 17:02:00    2017-03-23 17:02:00
76427    27805    712    2017-03-23 03:56:00    2017-03-23 03:56:00
76428    27806    788    2017-03-23 13:32:00    2017-03-23 13:32:00
76429    27806    679    2017-03-23 09:05:00    2017-03-23 09:05:00
76430    27806    714    2017-03-23 01:38:00    2017-03-23 01:38:00
76431    27806    648    2017-03-23 09:09:00    2017-03-23 09:09:00
76432    27806    890    2017-03-23 16:29:00    2017-03-23 16:29:00
76433    27807    639    2017-03-23 11:07:00    2017-03-23 11:07:00
76434    27807    766    2017-03-23 19:53:00    2017-03-23 19:53:00
76435    27807    660    2017-03-23 14:05:00    2017-03-23 14:05:00
76436    27807    780    2017-03-23 11:12:00    2017-03-23 11:12:00
76437    27807    731    2017-03-23 21:39:00    2017-03-23 21:39:00
76438    27808    827    2017-03-23 07:16:00    2017-03-23 07:16:00
76439    27808    739    2017-03-23 12:23:00    2017-03-23 12:23:00
76440    27808    830    2017-03-23 14:22:00    2017-03-23 14:22:00
76441    27808    569    2017-03-23 05:27:00    2017-03-23 05:27:00
76442    27808    931    2017-03-23 10:47:00    2017-03-23 10:47:00
76443    27809    620    2017-03-23 22:59:00    2017-03-23 22:59:00
76444    27809    729    2017-03-23 21:28:00    2017-03-23 21:28:00
76445    27809    546    2017-03-23 20:04:00    2017-03-23 20:04:00
76446    27809    664    2017-03-23 23:34:00    2017-03-23 23:34:00
76447    27809    541    2017-03-23 09:21:00    2017-03-23 09:21:00
76448    27810    494    2017-03-23 07:19:00    2017-03-23 07:19:00
76449    27810    797    2017-03-23 10:32:00    2017-03-23 10:32:00
76450    27810    498    2017-03-23 22:39:00    2017-03-23 22:39:00
76451    27810    559    2017-03-23 19:10:00    2017-03-23 19:10:00
76452    27810    943    2017-03-23 23:22:00    2017-03-23 23:22:00
76453    27811    521    2017-03-23 08:31:00    2017-03-23 08:31:00
76454    27811    679    2017-03-23 01:34:00    2017-03-23 01:34:00
76455    27811    616    2017-03-23 15:57:00    2017-03-23 15:57:00
76456    27811    836    2017-03-23 05:46:00    2017-03-23 05:46:00
76457    27811    767    2017-03-23 12:47:00    2017-03-23 12:47:00
76458    27812    839    2017-03-23 12:33:00    2017-03-23 12:33:00
76459    27812    611    2017-03-23 10:00:00    2017-03-23 10:00:00
76460    27812    664    2017-03-23 09:20:00    2017-03-23 09:20:00
76461    27812    551    2017-03-23 07:00:00    2017-03-23 07:00:00
76462    27812    546    2017-03-23 10:13:00    2017-03-23 10:13:00
76463    27813    519    2017-03-23 03:18:00    2017-03-23 03:18:00
76464    27813    634    2017-03-23 08:16:00    2017-03-23 08:16:00
76465    27813    867    2017-03-23 12:52:00    2017-03-23 12:52:00
76466    27813    942    2017-03-23 06:34:00    2017-03-23 06:34:00
76467    27813    708    2017-03-23 12:21:00    2017-03-23 12:21:00
76468    27814    575    2017-03-23 23:54:00    2017-03-23 23:54:00
76469    27814    575    2017-03-23 11:47:00    2017-03-23 11:47:00
76470    27814    825    2017-03-23 06:11:00    2017-03-23 06:11:00
76471    27814    674    2017-03-23 14:02:00    2017-03-23 14:02:00
76472    27814    609    2017-03-23 11:59:00    2017-03-23 11:59:00
76473    27815    558    2017-03-23 05:08:00    2017-03-23 05:08:00
76474    27815    503    2017-03-23 13:48:00    2017-03-23 13:48:00
76475    27815    597    2017-03-23 15:05:00    2017-03-23 15:05:00
76476    27815    948    2017-03-23 07:38:00    2017-03-23 07:38:00
76477    27815    550    2017-03-23 13:58:00    2017-03-23 13:58:00
76478    27816    751    2017-03-23 02:49:00    2017-03-23 02:49:00
76479    27816    575    2017-03-23 17:24:00    2017-03-23 17:24:00
76480    27816    774    2017-03-23 21:57:00    2017-03-23 21:57:00
76481    27816    811    2017-03-23 13:17:00    2017-03-23 13:17:00
76482    27816    930    2017-03-23 19:48:00    2017-03-23 19:48:00
76483    27817    659    2017-03-23 02:41:00    2017-03-23 02:41:00
76484    27817    835    2017-03-23 16:43:00    2017-03-23 16:43:00
76485    27817    690    2017-03-23 22:46:00    2017-03-23 22:46:00
76486    27817    760    2017-03-23 07:47:00    2017-03-23 07:47:00
76487    27817    489    2017-03-23 12:10:00    2017-03-23 12:10:00
76488    27818    661    2017-03-23 13:59:00    2017-03-23 13:59:00
76489    27818    771    2017-03-23 20:34:00    2017-03-23 20:34:00
76490    27818    783    2017-03-23 03:37:00    2017-03-23 03:37:00
76491    27818    847    2017-03-23 20:50:00    2017-03-23 20:50:00
76492    27818    574    2017-03-23 11:46:00    2017-03-23 11:46:00
76493    27819    794    2017-03-23 18:27:00    2017-03-23 18:27:00
76494    27819    711    2017-03-23 18:34:00    2017-03-23 18:34:00
76495    27819    925    2017-03-23 05:03:00    2017-03-23 05:03:00
76496    27819    614    2017-03-23 23:54:00    2017-03-23 23:54:00
76497    27819    947    2017-03-23 07:54:00    2017-03-23 07:54:00
76498    27820    759    2017-03-23 18:31:00    2017-03-23 18:31:00
76499    27820    573    2017-03-23 19:12:00    2017-03-23 19:12:00
76500    27820    765    2017-03-23 02:33:00    2017-03-23 02:33:00
76501    27820    590    2017-03-23 11:42:00    2017-03-23 11:42:00
76502    27820    531    2017-03-23 03:21:00    2017-03-23 03:21:00
76503    27821    838    2017-03-23 10:07:00    2017-03-23 10:07:00
76504    27821    929    2017-03-23 11:02:00    2017-03-23 11:02:00
76505    27821    940    2017-03-23 19:28:00    2017-03-23 19:28:00
76506    27821    718    2017-03-23 05:56:00    2017-03-23 05:56:00
76507    27821    471    2017-03-23 17:23:00    2017-03-23 17:23:00
76508    27822    556    2017-03-23 23:56:00    2017-03-23 23:56:00
76509    27822    580    2017-03-23 21:52:00    2017-03-23 21:52:00
76510    27822    484    2017-03-23 06:20:00    2017-03-23 06:20:00
76511    27822    808    2017-03-23 07:46:00    2017-03-23 07:46:00
76512    27822    529    2017-03-23 03:04:00    2017-03-23 03:04:00
76513    27823    864    2017-03-23 23:58:00    2017-03-23 23:58:00
76514    27823    502    2017-03-23 05:10:00    2017-03-23 05:10:00
76515    27823    849    2017-03-23 20:54:00    2017-03-23 20:54:00
76516    27823    912    2017-03-23 19:38:00    2017-03-23 19:38:00
76517    27823    537    2017-03-23 19:03:00    2017-03-23 19:03:00
76518    27824    845    2017-03-23 15:00:00    2017-03-23 15:00:00
76519    27824    808    2017-03-23 16:29:00    2017-03-23 16:29:00
76520    27824    758    2017-03-23 10:58:00    2017-03-23 10:58:00
76521    27824    731    2017-03-23 10:17:00    2017-03-23 10:17:00
76522    27824    632    2017-03-23 10:10:00    2017-03-23 10:10:00
76523    27825    647    2017-03-23 09:09:00    2017-03-23 09:09:00
76524    27825    641    2017-03-23 06:17:00    2017-03-23 06:17:00
76525    27825    893    2017-03-23 19:25:00    2017-03-23 19:25:00
76526    27825    947    2017-03-23 16:03:00    2017-03-23 16:03:00
76527    27825    909    2017-03-23 23:59:00    2017-03-23 23:59:00
76528    27826    734    2017-03-23 01:48:00    2017-03-23 01:48:00
76529    27826    813    2017-03-23 01:09:00    2017-03-23 01:09:00
76530    27826    896    2017-03-23 18:21:00    2017-03-23 18:21:00
76531    27826    558    2017-03-23 11:10:00    2017-03-23 11:10:00
76532    27826    920    2017-03-23 21:51:00    2017-03-23 21:51:00
76533    27827    703    2017-03-23 17:18:00    2017-03-23 17:18:00
76534    27827    650    2017-03-23 14:45:00    2017-03-23 14:45:00
76535    27827    670    2017-03-23 19:40:00    2017-03-23 19:40:00
76536    27827    515    2017-03-23 06:05:00    2017-03-23 06:05:00
76537    27827    485    2017-03-23 05:28:00    2017-03-23 05:28:00
76538    27828    506    2017-03-23 08:38:00    2017-03-23 08:38:00
76539    27828    826    2017-03-23 05:00:00    2017-03-23 05:00:00
76540    27828    926    2017-03-23 20:51:00    2017-03-23 20:51:00
76541    27828    755    2017-03-23 03:13:00    2017-03-23 03:13:00
76542    27828    582    2017-03-23 03:51:00    2017-03-23 03:51:00
76543    27829    580    2017-03-23 23:05:00    2017-03-23 23:05:00
76544    27829    952    2017-03-23 02:48:00    2017-03-23 02:48:00
76545    27829    879    2017-03-23 12:20:00    2017-03-23 12:20:00
76546    27829    478    2017-03-23 19:27:00    2017-03-23 19:27:00
76547    27829    670    2017-03-23 07:59:00    2017-03-23 07:59:00
76548    27830    914    2017-03-23 15:05:00    2017-03-23 15:05:00
76549    27830    898    2017-03-23 16:55:00    2017-03-23 16:55:00
76550    27830    464    2017-03-23 23:08:00    2017-03-23 23:08:00
76551    27830    707    2017-03-23 10:00:00    2017-03-23 10:00:00
76552    27830    955    2017-03-23 15:57:00    2017-03-23 15:57:00
76553    27831    785    2017-03-23 23:52:00    2017-03-23 23:52:00
76554    27831    619    2017-03-23 05:06:00    2017-03-23 05:06:00
76555    27831    935    2017-03-23 13:37:00    2017-03-23 13:37:00
76556    27831    872    2017-03-23 15:37:00    2017-03-23 15:37:00
76557    27831    520    2017-03-23 14:55:00    2017-03-23 14:55:00
76558    27832    764    2017-03-23 22:55:00    2017-03-23 22:55:00
76559    27832    685    2017-03-23 15:28:00    2017-03-23 15:28:00
76560    27832    762    2017-03-23 04:13:00    2017-03-23 04:13:00
76561    27832    826    2017-03-23 03:10:00    2017-03-23 03:10:00
76562    27832    470    2017-03-23 08:43:00    2017-03-23 08:43:00
76563    27833    526    2017-03-23 10:36:00    2017-03-23 10:36:00
76564    27833    760    2017-03-23 11:01:00    2017-03-23 11:01:00
76565    27833    648    2017-03-23 20:26:00    2017-03-23 20:26:00
76566    27833    584    2017-03-23 04:49:00    2017-03-23 04:49:00
76567    27833    682    2017-03-23 15:32:00    2017-03-23 15:32:00
76568    27834    824    2017-03-23 07:15:00    2017-03-23 07:15:00
76569    27834    860    2017-03-23 05:24:00    2017-03-23 05:24:00
76570    27834    728    2017-03-23 13:01:00    2017-03-23 13:01:00
76571    27834    675    2017-03-23 05:54:00    2017-03-23 05:54:00
76572    27834    813    2017-03-23 05:44:00    2017-03-23 05:44:00
76573    27835    775    2017-03-23 04:34:00    2017-03-23 04:34:00
76574    27835    771    2017-03-23 02:18:00    2017-03-23 02:18:00
76575    27835    861    2017-03-23 16:37:00    2017-03-23 16:37:00
76576    27835    540    2017-03-23 11:57:00    2017-03-23 11:57:00
76577    27835    524    2017-03-23 11:34:00    2017-03-23 11:34:00
76578    27836    593    2017-03-23 04:37:00    2017-03-23 04:37:00
76579    27836    885    2017-03-23 08:16:00    2017-03-23 08:16:00
76580    27836    463    2017-03-23 16:54:00    2017-03-23 16:54:00
76581    27836    762    2017-03-23 17:20:00    2017-03-23 17:20:00
76582    27836    575    2017-03-23 09:43:00    2017-03-23 09:43:00
76583    27837    472    2017-03-23 18:42:00    2017-03-23 18:42:00
76584    27837    926    2017-03-23 04:26:00    2017-03-23 04:26:00
76585    27837    468    2017-03-23 06:43:00    2017-03-23 06:43:00
76586    27837    512    2017-03-23 05:46:00    2017-03-23 05:46:00
76587    27837    567    2017-03-23 01:28:00    2017-03-23 01:28:00
76588    27838    846    2017-03-23 16:59:00    2017-03-23 16:59:00
76589    27838    550    2017-03-23 22:39:00    2017-03-23 22:39:00
76590    27838    738    2017-03-23 11:24:00    2017-03-23 11:24:00
76591    27838    773    2017-03-23 07:01:00    2017-03-23 07:01:00
76592    27838    475    2017-03-23 07:24:00    2017-03-23 07:24:00
76593    27839    793    2017-03-23 05:00:00    2017-03-23 05:00:00
76594    27839    812    2017-03-23 02:27:00    2017-03-23 02:27:00
76595    27839    890    2017-03-23 23:15:00    2017-03-23 23:15:00
76596    27839    872    2017-03-23 09:23:00    2017-03-23 09:23:00
76597    27839    819    2017-03-23 22:28:00    2017-03-23 22:28:00
76598    27840    730    2017-03-23 22:39:00    2017-03-23 22:39:00
76599    27840    951    2017-03-23 07:06:00    2017-03-23 07:06:00
76600    27840    855    2017-03-23 04:00:00    2017-03-23 04:00:00
76601    27840    542    2017-03-23 06:29:00    2017-03-23 06:29:00
76602    27840    704    2017-03-23 07:49:00    2017-03-23 07:49:00
76603    27841    819    2017-03-23 22:21:00    2017-03-23 22:21:00
76604    27841    593    2017-03-23 04:13:00    2017-03-23 04:13:00
76605    27841    559    2017-03-23 07:55:00    2017-03-23 07:55:00
76606    27841    547    2017-03-23 09:11:00    2017-03-23 09:11:00
76607    27841    655    2017-03-23 17:15:00    2017-03-23 17:15:00
76608    27842    902    2017-03-23 07:45:00    2017-03-23 07:45:00
76609    27842    861    2017-03-23 08:24:00    2017-03-23 08:24:00
76610    27842    725    2017-03-23 08:32:00    2017-03-23 08:32:00
76611    27842    731    2017-03-23 16:14:00    2017-03-23 16:14:00
76612    27842    904    2017-03-23 07:28:00    2017-03-23 07:28:00
76613    27843    646    2017-03-23 11:22:00    2017-03-23 11:22:00
76614    27843    954    2017-03-23 08:33:00    2017-03-23 08:33:00
76615    27843    530    2017-03-23 09:29:00    2017-03-23 09:29:00
76616    27843    672    2017-03-23 18:10:00    2017-03-23 18:10:00
76617    27843    736    2017-03-23 14:39:00    2017-03-23 14:39:00
76618    27844    839    2017-03-23 01:21:00    2017-03-23 01:21:00
76619    27844    467    2017-03-23 10:30:00    2017-03-23 10:30:00
76620    27844    623    2017-03-23 20:17:00    2017-03-23 20:17:00
76621    27844    512    2017-03-23 07:31:00    2017-03-23 07:31:00
76622    27844    574    2017-03-23 16:26:00    2017-03-23 16:26:00
76623    27845    708    2017-03-23 05:13:00    2017-03-23 05:13:00
76624    27845    646    2017-03-23 02:09:00    2017-03-23 02:09:00
76625    27845    568    2017-03-23 03:43:00    2017-03-23 03:43:00
76626    27845    724    2017-03-23 06:30:00    2017-03-23 06:30:00
76627    27845    795    2017-03-23 12:15:00    2017-03-23 12:15:00
76628    27846    820    2017-03-23 17:38:00    2017-03-23 17:38:00
76629    27846    692    2017-03-23 02:37:00    2017-03-23 02:37:00
76630    27846    771    2017-03-23 17:11:00    2017-03-23 17:11:00
76631    27846    654    2017-03-23 22:46:00    2017-03-23 22:46:00
76632    27846    565    2017-03-23 11:03:00    2017-03-23 11:03:00
76633    27847    638    2017-03-23 05:19:00    2017-03-23 05:19:00
76634    27847    861    2017-03-23 21:56:00    2017-03-23 21:56:00
76635    27847    608    2017-03-23 06:18:00    2017-03-23 06:18:00
76636    27847    758    2017-03-23 11:18:00    2017-03-23 11:18:00
76637    27847    537    2017-03-23 12:42:00    2017-03-23 12:42:00
76638    27848    555    2017-03-23 06:09:00    2017-03-23 06:09:00
76639    27848    878    2017-03-23 19:09:00    2017-03-23 19:09:00
76640    27848    573    2017-03-23 16:54:00    2017-03-23 16:54:00
76641    27848    529    2017-03-23 05:27:00    2017-03-23 05:27:00
76642    27848    502    2017-03-23 23:57:00    2017-03-23 23:57:00
76643    27849    887    2017-03-23 17:27:00    2017-03-23 17:27:00
76644    27849    532    2017-03-23 12:47:00    2017-03-23 12:47:00
76645    27849    783    2017-03-23 22:49:00    2017-03-23 22:49:00
76646    27849    691    2017-03-23 11:08:00    2017-03-23 11:08:00
76647    27849    946    2017-03-23 02:36:00    2017-03-23 02:36:00
76648    27850    621    2017-03-23 12:52:00    2017-03-23 12:52:00
76649    27850    809    2017-03-23 13:33:00    2017-03-23 13:33:00
76650    27850    527    2017-03-23 01:36:00    2017-03-23 01:36:00
76651    27850    928    2017-03-23 10:16:00    2017-03-23 10:16:00
76652    27850    916    2017-03-23 13:33:00    2017-03-23 13:33:00
76653    27851    627    2017-03-23 02:55:00    2017-03-23 02:55:00
76654    27851    735    2017-03-23 03:37:00    2017-03-23 03:37:00
76655    27851    714    2017-03-23 12:24:00    2017-03-23 12:24:00
76656    27851    681    2017-03-23 09:42:00    2017-03-23 09:42:00
76657    27851    829    2017-03-23 02:19:00    2017-03-23 02:19:00
76658    27852    920    2017-03-23 18:33:00    2017-03-23 18:33:00
76659    27852    791    2017-03-23 07:16:00    2017-03-23 07:16:00
76660    27852    707    2017-03-23 01:27:00    2017-03-23 01:27:00
76661    27852    636    2017-03-23 22:16:00    2017-03-23 22:16:00
76662    27852    679    2017-03-23 12:25:00    2017-03-23 12:25:00
76663    27853    633    2017-03-24 08:13:00    2017-03-24 08:13:00
76664    27853    559    2017-03-24 10:16:00    2017-03-24 10:16:00
76665    27853    533    2017-03-24 16:00:00    2017-03-24 16:00:00
76666    27853    835    2017-03-24 15:32:00    2017-03-24 15:32:00
76667    27853    616    2017-03-24 05:00:00    2017-03-24 05:00:00
76668    27854    852    2017-03-24 19:11:00    2017-03-24 19:11:00
76669    27854    746    2017-03-24 01:37:00    2017-03-24 01:37:00
76670    27854    782    2017-03-24 17:15:00    2017-03-24 17:15:00
76671    27854    791    2017-03-24 20:50:00    2017-03-24 20:50:00
76672    27854    959    2017-03-24 01:58:00    2017-03-24 01:58:00
76673    27855    728    2017-03-24 19:15:00    2017-03-24 19:15:00
76674    27855    733    2017-03-24 02:30:00    2017-03-24 02:30:00
76675    27855    536    2017-03-24 02:41:00    2017-03-24 02:41:00
76676    27855    734    2017-03-24 06:58:00    2017-03-24 06:58:00
76677    27855    536    2017-03-24 13:44:00    2017-03-24 13:44:00
76678    27856    877    2017-03-24 14:42:00    2017-03-24 14:42:00
76679    27856    643    2017-03-24 23:56:00    2017-03-24 23:56:00
76680    27856    804    2017-03-24 23:23:00    2017-03-24 23:23:00
76681    27856    479    2017-03-24 03:15:00    2017-03-24 03:15:00
76682    27856    866    2017-03-24 03:20:00    2017-03-24 03:20:00
76683    27857    601    2017-03-24 07:25:00    2017-03-24 07:25:00
76684    27857    644    2017-03-24 13:13:00    2017-03-24 13:13:00
76685    27857    635    2017-03-24 22:28:00    2017-03-24 22:28:00
76686    27857    840    2017-03-24 11:28:00    2017-03-24 11:28:00
76687    27857    554    2017-03-24 12:07:00    2017-03-24 12:07:00
76688    27858    511    2017-03-25 05:54:00    2017-03-25 05:54:00
76689    27858    676    2017-03-25 13:54:00    2017-03-25 13:54:00
76690    27858    509    2017-03-25 18:36:00    2017-03-25 18:36:00
76691    27858    644    2017-03-25 19:19:00    2017-03-25 19:19:00
76692    27858    952    2017-03-25 18:46:00    2017-03-25 18:46:00
76693    27859    467    2017-03-25 16:34:00    2017-03-25 16:34:00
76694    27859    878    2017-03-25 05:03:00    2017-03-25 05:03:00
76695    27859    759    2017-03-25 20:56:00    2017-03-25 20:56:00
76696    27859    573    2017-03-25 13:31:00    2017-03-25 13:31:00
76697    27859    752    2017-03-25 14:27:00    2017-03-25 14:27:00
76698    27860    696    2017-03-25 01:22:00    2017-03-25 01:22:00
76699    27860    862    2017-03-25 13:38:00    2017-03-25 13:38:00
76700    27860    665    2017-03-25 20:06:00    2017-03-25 20:06:00
76701    27860    831    2017-03-25 22:13:00    2017-03-25 22:13:00
76702    27860    521    2017-03-25 13:03:00    2017-03-25 13:03:00
76703    27861    958    2017-03-25 02:30:00    2017-03-25 02:30:00
76704    27861    956    2017-03-25 14:00:00    2017-03-25 14:00:00
76705    27861    475    2017-03-25 15:00:00    2017-03-25 15:00:00
76706    27861    720    2017-03-25 15:49:00    2017-03-25 15:49:00
76707    27861    584    2017-03-25 05:47:00    2017-03-25 05:47:00
76708    27862    788    2017-03-25 21:15:00    2017-03-25 21:15:00
76709    27862    721    2017-03-25 03:59:00    2017-03-25 03:59:00
76710    27862    915    2017-03-25 03:13:00    2017-03-25 03:13:00
76711    27862    827    2017-03-25 16:33:00    2017-03-25 16:33:00
76712    27862    576    2017-03-25 15:47:00    2017-03-25 15:47:00
76713    27863    845    2017-03-25 23:02:00    2017-03-25 23:02:00
76714    27863    585    2017-03-25 11:10:00    2017-03-25 11:10:00
76715    27863    781    2017-03-25 10:00:00    2017-03-25 10:00:00
76716    27863    914    2017-03-25 18:06:00    2017-03-25 18:06:00
76717    27863    857    2017-03-25 18:25:00    2017-03-25 18:25:00
76718    27864    944    2017-03-25 08:04:00    2017-03-25 08:04:00
76719    27864    780    2017-03-25 06:35:00    2017-03-25 06:35:00
76720    27864    929    2017-03-25 16:53:00    2017-03-25 16:53:00
76721    27864    620    2017-03-25 11:34:00    2017-03-25 11:34:00
76722    27864    718    2017-03-25 04:30:00    2017-03-25 04:30:00
76723    27865    596    2017-03-25 07:30:00    2017-03-25 07:30:00
76724    27865    530    2017-03-25 05:28:00    2017-03-25 05:28:00
76725    27865    558    2017-03-25 06:09:00    2017-03-25 06:09:00
76726    27865    848    2017-03-25 12:04:00    2017-03-25 12:04:00
76727    27865    806    2017-03-25 17:05:00    2017-03-25 17:05:00
76728    27866    821    2017-03-25 11:30:00    2017-03-25 11:30:00
76729    27866    939    2017-03-25 10:21:00    2017-03-25 10:21:00
76730    27866    801    2017-03-25 08:56:00    2017-03-25 08:56:00
76731    27866    822    2017-03-25 07:36:00    2017-03-25 07:36:00
76732    27866    493    2017-03-25 22:59:00    2017-03-25 22:59:00
76733    27867    799    2017-03-25 21:54:00    2017-03-25 21:54:00
76734    27867    948    2017-03-25 21:51:00    2017-03-25 21:51:00
76735    27867    737    2017-03-25 07:40:00    2017-03-25 07:40:00
76736    27867    490    2017-03-25 03:03:00    2017-03-25 03:03:00
76737    27867    574    2017-03-25 02:10:00    2017-03-25 02:10:00
76738    27868    792    2017-03-25 10:50:00    2017-03-25 10:50:00
76739    27868    479    2017-03-25 14:24:00    2017-03-25 14:24:00
76740    27868    588    2017-03-25 21:02:00    2017-03-25 21:02:00
76741    27868    826    2017-03-25 09:34:00    2017-03-25 09:34:00
76742    27868    854    2017-03-25 09:21:00    2017-03-25 09:21:00
76743    27869    779    2017-03-25 09:32:00    2017-03-25 09:32:00
76744    27869    697    2017-03-25 05:44:00    2017-03-25 05:44:00
76745    27869    596    2017-03-25 20:23:00    2017-03-25 20:23:00
76746    27869    642    2017-03-25 12:42:00    2017-03-25 12:42:00
76747    27869    784    2017-03-25 15:00:00    2017-03-25 15:00:00
76748    27870    718    2017-03-25 06:08:00    2017-03-25 06:08:00
76749    27870    620    2017-03-25 22:57:00    2017-03-25 22:57:00
76750    27870    735    2017-03-25 23:34:00    2017-03-25 23:34:00
76751    27870    779    2017-03-25 14:20:00    2017-03-25 14:20:00
76752    27870    619    2017-03-25 13:58:00    2017-03-25 13:58:00
76753    27871    708    2017-03-25 11:19:00    2017-03-25 11:19:00
76754    27871    576    2017-03-25 19:48:00    2017-03-25 19:48:00
76755    27871    879    2017-03-25 14:34:00    2017-03-25 14:34:00
76756    27871    830    2017-03-25 18:52:00    2017-03-25 18:52:00
76757    27871    476    2017-03-25 07:38:00    2017-03-25 07:38:00
76758    27872    660    2017-03-25 19:23:00    2017-03-25 19:23:00
76759    27872    557    2017-03-25 05:34:00    2017-03-25 05:34:00
76760    27872    902    2017-03-25 07:31:00    2017-03-25 07:31:00
76761    27872    898    2017-03-25 20:16:00    2017-03-25 20:16:00
76762    27872    671    2017-03-25 03:39:00    2017-03-25 03:39:00
76763    27873    907    2017-03-25 10:25:00    2017-03-25 10:25:00
76764    27873    625    2017-03-25 21:34:00    2017-03-25 21:34:00
76765    27873    789    2017-03-25 06:00:00    2017-03-25 06:00:00
76766    27873    859    2017-03-25 05:35:00    2017-03-25 05:35:00
76767    27873    940    2017-03-25 05:09:00    2017-03-25 05:09:00
76768    27874    744    2017-03-25 06:34:00    2017-03-25 06:34:00
76769    27874    823    2017-03-25 03:40:00    2017-03-25 03:40:00
76770    27874    832    2017-03-25 17:55:00    2017-03-25 17:55:00
76771    27874    649    2017-03-25 13:17:00    2017-03-25 13:17:00
76772    27874    732    2017-03-25 05:58:00    2017-03-25 05:58:00
76773    27875    621    2017-03-25 18:39:00    2017-03-25 18:39:00
76774    27875    953    2017-03-25 07:31:00    2017-03-25 07:31:00
76775    27875    641    2017-03-25 11:18:00    2017-03-25 11:18:00
76776    27875    806    2017-03-25 17:31:00    2017-03-25 17:31:00
76777    27875    696    2017-03-25 12:35:00    2017-03-25 12:35:00
76778    27876    471    2017-03-25 02:01:00    2017-03-25 02:01:00
76779    27876    613    2017-03-25 22:08:00    2017-03-25 22:08:00
76780    27876    884    2017-03-25 01:54:00    2017-03-25 01:54:00
76781    27876    789    2017-03-25 02:59:00    2017-03-25 02:59:00
76782    27876    568    2017-03-25 14:29:00    2017-03-25 14:29:00
76783    27877    607    2017-03-25 11:39:00    2017-03-25 11:39:00
76784    27877    807    2017-03-25 22:03:00    2017-03-25 22:03:00
76785    27877    828    2017-03-25 11:46:00    2017-03-25 11:46:00
76786    27877    511    2017-03-25 18:48:00    2017-03-25 18:48:00
76787    27877    492    2017-03-25 17:57:00    2017-03-25 17:57:00
76788    27878    699    2017-03-25 06:41:00    2017-03-25 06:41:00
76789    27878    848    2017-03-25 03:52:00    2017-03-25 03:52:00
76790    27878    716    2017-03-25 09:47:00    2017-03-25 09:47:00
76791    27878    837    2017-03-25 16:26:00    2017-03-25 16:26:00
76792    27878    579    2017-03-25 04:46:00    2017-03-25 04:46:00
76793    27879    643    2017-03-25 12:42:00    2017-03-25 12:42:00
76794    27879    733    2017-03-25 08:03:00    2017-03-25 08:03:00
76795    27879    588    2017-03-25 09:25:00    2017-03-25 09:25:00
76796    27879    686    2017-03-25 05:35:00    2017-03-25 05:35:00
76797    27879    796    2017-03-25 15:47:00    2017-03-25 15:47:00
76798    27880    739    2017-03-25 14:02:00    2017-03-25 14:02:00
76799    27880    814    2017-03-25 16:40:00    2017-03-25 16:40:00
76800    27880    528    2017-03-25 13:58:00    2017-03-25 13:58:00
76801    27880    896    2017-03-25 02:54:00    2017-03-25 02:54:00
76802    27880    795    2017-03-25 01:52:00    2017-03-25 01:52:00
76803    27881    918    2017-03-25 10:05:00    2017-03-25 10:05:00
76804    27881    804    2017-03-25 08:00:00    2017-03-25 08:00:00
76805    27881    814    2017-03-25 13:22:00    2017-03-25 13:22:00
76806    27881    554    2017-03-25 22:44:00    2017-03-25 22:44:00
76807    27881    913    2017-03-25 17:24:00    2017-03-25 17:24:00
76808    27882    746    2017-03-25 20:39:00    2017-03-25 20:39:00
76809    27882    884    2017-03-25 11:21:00    2017-03-25 11:21:00
76810    27882    849    2017-03-25 15:08:00    2017-03-25 15:08:00
76811    27882    664    2017-03-25 02:35:00    2017-03-25 02:35:00
76812    27882    876    2017-03-25 15:52:00    2017-03-25 15:52:00
76813    27883    595    2017-03-25 06:29:00    2017-03-25 06:29:00
76814    27883    493    2017-03-25 18:43:00    2017-03-25 18:43:00
76815    27883    821    2017-03-25 02:54:00    2017-03-25 02:54:00
76816    27883    859    2017-03-25 19:33:00    2017-03-25 19:33:00
76817    27883    761    2017-03-25 09:13:00    2017-03-25 09:13:00
76818    27884    765    2017-03-25 09:05:00    2017-03-25 09:05:00
76819    27884    837    2017-03-25 15:01:00    2017-03-25 15:01:00
76820    27884    752    2017-03-25 22:42:00    2017-03-25 22:42:00
76821    27884    474    2017-03-25 22:04:00    2017-03-25 22:04:00
76822    27884    785    2017-03-25 08:04:00    2017-03-25 08:04:00
76823    27885    544    2017-03-25 12:13:00    2017-03-25 12:13:00
76824    27885    818    2017-03-25 15:50:00    2017-03-25 15:50:00
76825    27885    569    2017-03-25 19:38:00    2017-03-25 19:38:00
76826    27885    754    2017-03-25 22:05:00    2017-03-25 22:05:00
76827    27885    771    2017-03-25 06:12:00    2017-03-25 06:12:00
76828    27886    751    2017-03-25 06:39:00    2017-03-25 06:39:00
76829    27886    541    2017-03-25 08:59:00    2017-03-25 08:59:00
76830    27886    868    2017-03-25 20:07:00    2017-03-25 20:07:00
76831    27886    943    2017-03-25 18:38:00    2017-03-25 18:38:00
76832    27886    496    2017-03-25 20:29:00    2017-03-25 20:29:00
76833    27887    723    2017-03-25 16:25:00    2017-03-25 16:25:00
76834    27887    548    2017-03-25 10:55:00    2017-03-25 10:55:00
76835    27887    927    2017-03-25 22:01:00    2017-03-25 22:01:00
76836    27887    717    2017-03-25 03:28:00    2017-03-25 03:28:00
76837    27887    604    2017-03-25 18:08:00    2017-03-25 18:08:00
76838    27888    724    2017-03-25 08:15:00    2017-03-25 08:15:00
76839    27888    718    2017-03-25 10:38:00    2017-03-25 10:38:00
76840    27888    855    2017-03-25 06:06:00    2017-03-25 06:06:00
76841    27888    763    2017-03-25 07:19:00    2017-03-25 07:19:00
76842    27888    774    2017-03-25 01:11:00    2017-03-25 01:11:00
76843    27889    703    2017-03-25 15:52:00    2017-03-25 15:52:00
76844    27889    567    2017-03-25 08:06:00    2017-03-25 08:06:00
76845    27889    860    2017-03-25 13:33:00    2017-03-25 13:33:00
76846    27889    771    2017-03-25 11:37:00    2017-03-25 11:37:00
76847    27889    659    2017-03-25 10:16:00    2017-03-25 10:16:00
76848    27890    780    2017-03-25 01:21:00    2017-03-25 01:21:00
76849    27890    704    2017-03-25 23:43:00    2017-03-25 23:43:00
76850    27890    689    2017-03-25 05:38:00    2017-03-25 05:38:00
76851    27890    750    2017-03-25 03:30:00    2017-03-25 03:30:00
76852    27890    756    2017-03-25 04:36:00    2017-03-25 04:36:00
76853    27891    579    2017-03-25 08:56:00    2017-03-25 08:56:00
76854    27891    735    2017-03-25 06:06:00    2017-03-25 06:06:00
76855    27891    563    2017-03-25 16:07:00    2017-03-25 16:07:00
76856    27891    621    2017-03-25 01:34:00    2017-03-25 01:34:00
76857    27891    663    2017-03-25 09:51:00    2017-03-25 09:51:00
76858    27892    468    2017-03-25 17:40:00    2017-03-25 17:40:00
76859    27892    871    2017-03-25 05:25:00    2017-03-25 05:25:00
76860    27892    512    2017-03-25 12:28:00    2017-03-25 12:28:00
76861    27892    951    2017-03-25 04:26:00    2017-03-25 04:26:00
76862    27892    682    2017-03-25 22:27:00    2017-03-25 22:27:00
76863    27893    760    2017-03-25 08:23:00    2017-03-25 08:23:00
76864    27893    793    2017-03-25 13:25:00    2017-03-25 13:25:00
76865    27893    821    2017-03-25 10:42:00    2017-03-25 10:42:00
76866    27893    651    2017-03-25 08:04:00    2017-03-25 08:04:00
76867    27893    487    2017-03-25 15:20:00    2017-03-25 15:20:00
76868    27894    693    2017-03-25 02:08:00    2017-03-25 02:08:00
76869    27894    530    2017-03-25 20:46:00    2017-03-25 20:46:00
76870    27894    729    2017-03-25 16:08:00    2017-03-25 16:08:00
76871    27894    913    2017-03-25 14:41:00    2017-03-25 14:41:00
76872    27894    839    2017-03-25 12:17:00    2017-03-25 12:17:00
76873    27895    525    2017-03-25 10:22:00    2017-03-25 10:22:00
76874    27895    796    2017-03-25 08:24:00    2017-03-25 08:24:00
76875    27895    730    2017-03-25 19:03:00    2017-03-25 19:03:00
76876    27895    950    2017-03-25 01:12:00    2017-03-25 01:12:00
76877    27895    714    2017-03-25 14:27:00    2017-03-25 14:27:00
76878    27896    907    2017-03-25 12:50:00    2017-03-25 12:50:00
76879    27896    862    2017-03-25 09:27:00    2017-03-25 09:27:00
76880    27896    854    2017-03-25 10:22:00    2017-03-25 10:22:00
76881    27896    675    2017-03-25 09:12:00    2017-03-25 09:12:00
76882    27896    567    2017-03-25 10:37:00    2017-03-25 10:37:00
76883    27897    890    2017-03-25 15:41:00    2017-03-25 15:41:00
76884    27897    796    2017-03-25 06:36:00    2017-03-25 06:36:00
76885    27897    933    2017-03-25 05:08:00    2017-03-25 05:08:00
76886    27897    793    2017-03-25 07:11:00    2017-03-25 07:11:00
76887    27897    883    2017-03-25 23:06:00    2017-03-25 23:06:00
76888    27898    759    2017-03-25 10:52:00    2017-03-25 10:52:00
76889    27898    579    2017-03-25 18:44:00    2017-03-25 18:44:00
76890    27898    924    2017-03-25 10:59:00    2017-03-25 10:59:00
76891    27898    809    2017-03-25 18:07:00    2017-03-25 18:07:00
76892    27898    715    2017-03-25 22:37:00    2017-03-25 22:37:00
76893    27899    872    2017-03-25 04:33:00    2017-03-25 04:33:00
76894    27899    501    2017-03-25 15:53:00    2017-03-25 15:53:00
76895    27899    897    2017-03-25 09:11:00    2017-03-25 09:11:00
76896    27899    708    2017-03-25 18:42:00    2017-03-25 18:42:00
76897    27899    596    2017-03-25 18:34:00    2017-03-25 18:34:00
76898    27900    575    2017-03-25 15:36:00    2017-03-25 15:36:00
76899    27900    503    2017-03-25 22:22:00    2017-03-25 22:22:00
76900    27900    660    2017-03-25 18:32:00    2017-03-25 18:32:00
76901    27900    917    2017-03-25 11:42:00    2017-03-25 11:42:00
76902    27900    542    2017-03-25 06:00:00    2017-03-25 06:00:00
76903    27901    566    2017-03-25 15:04:00    2017-03-25 15:04:00
76904    27901    523    2017-03-25 17:44:00    2017-03-25 17:44:00
76905    27901    943    2017-03-25 15:35:00    2017-03-25 15:35:00
76906    27901    478    2017-03-25 07:36:00    2017-03-25 07:36:00
76907    27901    724    2017-03-25 17:37:00    2017-03-25 17:37:00
76908    27902    653    2017-03-25 09:44:00    2017-03-25 09:44:00
76909    27902    746    2017-03-25 11:45:00    2017-03-25 11:45:00
76910    27902    695    2017-03-25 04:32:00    2017-03-25 04:32:00
76911    27902    619    2017-03-25 23:25:00    2017-03-25 23:25:00
76912    27902    528    2017-03-25 22:01:00    2017-03-25 22:01:00
76913    27903    529    2017-03-25 16:38:00    2017-03-25 16:38:00
76914    27903    611    2017-03-25 19:58:00    2017-03-25 19:58:00
76915    27903    932    2017-03-25 21:18:00    2017-03-25 21:18:00
76916    27903    797    2017-03-25 03:16:00    2017-03-25 03:16:00
76917    27903    717    2017-03-25 22:01:00    2017-03-25 22:01:00
76918    27904    660    2017-03-25 10:54:00    2017-03-25 10:54:00
76919    27904    477    2017-03-25 05:23:00    2017-03-25 05:23:00
76920    27904    641    2017-03-25 03:01:00    2017-03-25 03:01:00
76921    27904    536    2017-03-25 01:11:00    2017-03-25 01:11:00
76922    27904    783    2017-03-25 09:05:00    2017-03-25 09:05:00
76923    27905    565    2017-03-25 18:12:00    2017-03-25 18:12:00
76924    27905    514    2017-03-25 15:02:00    2017-03-25 15:02:00
76925    27905    516    2017-03-25 21:47:00    2017-03-25 21:47:00
76926    27905    714    2017-03-25 19:11:00    2017-03-25 19:11:00
76927    27905    938    2017-03-25 06:17:00    2017-03-25 06:17:00
76928    27906    561    2017-03-25 05:01:00    2017-03-25 05:01:00
76929    27906    572    2017-03-25 18:07:00    2017-03-25 18:07:00
76930    27906    559    2017-03-25 07:23:00    2017-03-25 07:23:00
76931    27906    787    2017-03-25 16:00:00    2017-03-25 16:00:00
76932    27906    492    2017-03-25 11:33:00    2017-03-25 11:33:00
76933    27907    893    2017-03-25 05:02:00    2017-03-25 05:02:00
76934    27907    557    2017-03-25 15:56:00    2017-03-25 15:56:00
76935    27907    731    2017-03-25 08:33:00    2017-03-25 08:33:00
76936    27907    766    2017-03-25 04:34:00    2017-03-25 04:34:00
76937    27907    729    2017-03-25 16:15:00    2017-03-25 16:15:00
76938    27908    725    2017-03-25 09:56:00    2017-03-25 09:56:00
76939    27908    486    2017-03-25 07:41:00    2017-03-25 07:41:00
76940    27908    528    2017-03-25 03:43:00    2017-03-25 03:43:00
76941    27908    595    2017-03-25 05:57:00    2017-03-25 05:57:00
76942    27908    642    2017-03-25 07:47:00    2017-03-25 07:47:00
76943    27909    533    2017-03-25 03:36:00    2017-03-25 03:36:00
76944    27909    483    2017-03-25 07:12:00    2017-03-25 07:12:00
76945    27909    615    2017-03-25 17:45:00    2017-03-25 17:45:00
76946    27909    842    2017-03-25 21:17:00    2017-03-25 21:17:00
76947    27909    727    2017-03-25 17:01:00    2017-03-25 17:01:00
76948    27910    507    2017-03-25 09:01:00    2017-03-25 09:01:00
76949    27910    626    2017-03-25 10:07:00    2017-03-25 10:07:00
76950    27910    950    2017-03-25 06:55:00    2017-03-25 06:55:00
76951    27910    715    2017-03-25 21:43:00    2017-03-25 21:43:00
76952    27910    616    2017-03-25 21:49:00    2017-03-25 21:49:00
76953    27911    809    2017-03-25 17:49:00    2017-03-25 17:49:00
76954    27911    837    2017-03-25 09:51:00    2017-03-25 09:51:00
76955    27911    868    2017-03-25 23:38:00    2017-03-25 23:38:00
76956    27911    696    2017-03-25 21:26:00    2017-03-25 21:26:00
76957    27911    879    2017-03-25 19:34:00    2017-03-25 19:34:00
76958    27912    751    2017-03-25 21:44:00    2017-03-25 21:44:00
76959    27912    740    2017-03-25 21:38:00    2017-03-25 21:38:00
76960    27912    491    2017-03-25 21:35:00    2017-03-25 21:35:00
76961    27912    837    2017-03-25 03:08:00    2017-03-25 03:08:00
76962    27912    954    2017-03-25 13:01:00    2017-03-25 13:01:00
76963    27913    624    2017-03-25 19:37:00    2017-03-25 19:37:00
76964    27913    872    2017-03-25 21:15:00    2017-03-25 21:15:00
76965    27913    832    2017-03-25 04:44:00    2017-03-25 04:44:00
76966    27913    673    2017-03-25 13:35:00    2017-03-25 13:35:00
76967    27913    777    2017-03-25 07:07:00    2017-03-25 07:07:00
76968    27914    800    2017-03-25 11:03:00    2017-03-25 11:03:00
76969    27914    694    2017-03-25 17:01:00    2017-03-25 17:01:00
76970    27914    508    2017-03-25 23:52:00    2017-03-25 23:52:00
76971    27914    508    2017-03-25 23:40:00    2017-03-25 23:40:00
76972    27914    577    2017-03-25 15:40:00    2017-03-25 15:40:00
76973    27915    957    2017-03-25 03:55:00    2017-03-25 03:55:00
76974    27915    942    2017-03-25 17:48:00    2017-03-25 17:48:00
76975    27915    786    2017-03-25 07:00:00    2017-03-25 07:00:00
76976    27915    805    2017-03-25 01:58:00    2017-03-25 01:58:00
76977    27915    708    2017-03-25 09:05:00    2017-03-25 09:05:00
76978    27916    505    2017-03-25 07:24:00    2017-03-25 07:24:00
76979    27916    729    2017-03-25 03:02:00    2017-03-25 03:02:00
76980    27916    760    2017-03-25 07:38:00    2017-03-25 07:38:00
76981    27916    609    2017-03-25 06:57:00    2017-03-25 06:57:00
76982    27916    790    2017-03-25 05:14:00    2017-03-25 05:14:00
76983    27917    611    2017-03-25 13:48:00    2017-03-25 13:48:00
76984    27917    957    2017-03-25 16:09:00    2017-03-25 16:09:00
76985    27917    469    2017-03-25 08:38:00    2017-03-25 08:38:00
76986    27917    820    2017-03-25 12:39:00    2017-03-25 12:39:00
76987    27917    754    2017-03-25 19:49:00    2017-03-25 19:49:00
76988    27918    799    2017-03-25 21:08:00    2017-03-25 21:08:00
76989    27918    598    2017-03-25 20:01:00    2017-03-25 20:01:00
76990    27918    581    2017-03-25 01:36:00    2017-03-25 01:36:00
76991    27918    663    2017-03-25 02:47:00    2017-03-25 02:47:00
76992    27918    845    2017-03-25 02:09:00    2017-03-25 02:09:00
76993    27919    951    2017-03-25 11:53:00    2017-03-25 11:53:00
76994    27919    598    2017-03-25 12:38:00    2017-03-25 12:38:00
76995    27919    692    2017-03-25 04:17:00    2017-03-25 04:17:00
76996    27919    692    2017-03-25 08:02:00    2017-03-25 08:02:00
76997    27919    871    2017-03-25 17:58:00    2017-03-25 17:58:00
76998    27920    492    2017-03-25 21:43:00    2017-03-25 21:43:00
76999    27920    765    2017-03-25 06:30:00    2017-03-25 06:30:00
77000    27920    569    2017-03-25 04:19:00    2017-03-25 04:19:00
77001    27920    553    2017-03-25 04:27:00    2017-03-25 04:27:00
77002    27920    577    2017-03-25 10:02:00    2017-03-25 10:02:00
77003    27921    927    2017-03-25 11:53:00    2017-03-25 11:53:00
77004    27921    631    2017-03-25 08:13:00    2017-03-25 08:13:00
77005    27921    552    2017-03-25 04:33:00    2017-03-25 04:33:00
77006    27921    859    2017-03-25 01:07:00    2017-03-25 01:07:00
77007    27921    578    2017-03-25 05:27:00    2017-03-25 05:27:00
77008    27922    871    2017-03-25 11:43:00    2017-03-25 11:43:00
77009    27922    775    2017-03-25 02:26:00    2017-03-25 02:26:00
77010    27922    853    2017-03-25 21:23:00    2017-03-25 21:23:00
77011    27922    766    2017-03-25 08:08:00    2017-03-25 08:08:00
77012    27922    629    2017-03-25 16:18:00    2017-03-25 16:18:00
77013    27923    846    2017-03-25 14:57:00    2017-03-25 14:57:00
77014    27923    572    2017-03-25 10:30:00    2017-03-25 10:30:00
77015    27923    862    2017-03-25 05:11:00    2017-03-25 05:11:00
77016    27923    818    2017-03-25 18:31:00    2017-03-25 18:31:00
77017    27923    665    2017-03-25 05:10:00    2017-03-25 05:10:00
77018    27924    577    2017-03-25 17:35:00    2017-03-25 17:35:00
77019    27924    645    2017-03-25 06:00:00    2017-03-25 06:00:00
77020    27924    818    2017-03-25 10:34:00    2017-03-25 10:34:00
77021    27924    599    2017-03-25 15:08:00    2017-03-25 15:08:00
77022    27924    549    2017-03-25 18:25:00    2017-03-25 18:25:00
77023    27925    561    2017-03-25 07:45:00    2017-03-25 07:45:00
77024    27925    764    2017-03-25 14:28:00    2017-03-25 14:28:00
77025    27925    634    2017-03-25 04:54:00    2017-03-25 04:54:00
77026    27925    521    2017-03-25 01:47:00    2017-03-25 01:47:00
77027    27925    539    2017-03-25 18:12:00    2017-03-25 18:12:00
77028    27926    751    2017-03-25 19:35:00    2017-03-25 19:35:00
77029    27926    554    2017-03-25 06:02:00    2017-03-25 06:02:00
77030    27926    874    2017-03-25 01:32:00    2017-03-25 01:32:00
77031    27926    827    2017-03-25 05:44:00    2017-03-25 05:44:00
77032    27926    745    2017-03-25 12:00:00    2017-03-25 12:00:00
77033    27927    600    2017-03-25 03:08:00    2017-03-25 03:08:00
77034    27927    887    2017-03-25 07:31:00    2017-03-25 07:31:00
77035    27927    571    2017-03-25 01:46:00    2017-03-25 01:46:00
77036    27927    719    2017-03-25 03:04:00    2017-03-25 03:04:00
77037    27927    524    2017-03-25 06:34:00    2017-03-25 06:34:00
77038    27928    816    2017-03-25 03:07:00    2017-03-25 03:07:00
77039    27928    913    2017-03-25 09:02:00    2017-03-25 09:02:00
77040    27928    555    2017-03-25 21:46:00    2017-03-25 21:46:00
77041    27928    662    2017-03-25 22:12:00    2017-03-25 22:12:00
77042    27928    829    2017-03-25 23:22:00    2017-03-25 23:22:00
77043    27929    741    2017-03-25 05:49:00    2017-03-25 05:49:00
77044    27929    494    2017-03-25 10:13:00    2017-03-25 10:13:00
77045    27929    944    2017-03-25 07:24:00    2017-03-25 07:24:00
77046    27929    464    2017-03-25 08:51:00    2017-03-25 08:51:00
77047    27929    575    2017-03-25 10:31:00    2017-03-25 10:31:00
77048    27930    477    2017-03-25 16:39:00    2017-03-25 16:39:00
77049    27930    580    2017-03-25 04:53:00    2017-03-25 04:53:00
77050    27930    883    2017-03-25 01:19:00    2017-03-25 01:19:00
77051    27930    621    2017-03-25 15:14:00    2017-03-25 15:14:00
77052    27930    591    2017-03-25 17:14:00    2017-03-25 17:14:00
77053    27931    802    2017-03-25 05:11:00    2017-03-25 05:11:00
77054    27931    784    2017-03-25 16:23:00    2017-03-25 16:23:00
77055    27931    796    2017-03-25 08:56:00    2017-03-25 08:56:00
77056    27931    827    2017-03-25 01:29:00    2017-03-25 01:29:00
77057    27931    535    2017-03-25 07:57:00    2017-03-25 07:57:00
77058    27932    894    2017-03-25 14:36:00    2017-03-25 14:36:00
77059    27932    470    2017-03-25 14:37:00    2017-03-25 14:37:00
77060    27932    936    2017-03-25 22:20:00    2017-03-25 22:20:00
77061    27932    484    2017-03-25 06:30:00    2017-03-25 06:30:00
77062    27932    843    2017-03-25 09:35:00    2017-03-25 09:35:00
77063    27933    617    2017-03-25 10:23:00    2017-03-25 10:23:00
77064    27933    794    2017-03-25 05:47:00    2017-03-25 05:47:00
77065    27933    593    2017-03-25 14:12:00    2017-03-25 14:12:00
77066    27933    507    2017-03-25 23:45:00    2017-03-25 23:45:00
77067    27933    480    2017-03-25 14:48:00    2017-03-25 14:48:00
77068    27934    489    2017-03-25 08:06:00    2017-03-25 08:06:00
77069    27934    618    2017-03-25 21:24:00    2017-03-25 21:24:00
77070    27934    842    2017-03-25 11:18:00    2017-03-25 11:18:00
77071    27934    729    2017-03-25 02:03:00    2017-03-25 02:03:00
77072    27934    705    2017-03-25 06:10:00    2017-03-25 06:10:00
77073    27935    556    2017-03-25 02:43:00    2017-03-25 02:43:00
77074    27935    876    2017-03-25 09:56:00    2017-03-25 09:56:00
77075    27935    856    2017-03-25 19:23:00    2017-03-25 19:23:00
77076    27935    475    2017-03-25 14:56:00    2017-03-25 14:56:00
77077    27935    467    2017-03-25 13:01:00    2017-03-25 13:01:00
77078    27936    585    2017-03-25 07:42:00    2017-03-25 07:42:00
77079    27936    607    2017-03-25 23:27:00    2017-03-25 23:27:00
77080    27936    627    2017-03-25 06:41:00    2017-03-25 06:41:00
77081    27936    894    2017-03-25 12:24:00    2017-03-25 12:24:00
77082    27936    831    2017-03-25 01:20:00    2017-03-25 01:20:00
77083    27937    776    2017-03-25 04:03:00    2017-03-25 04:03:00
77084    27937    856    2017-03-25 18:33:00    2017-03-25 18:33:00
77085    27937    587    2017-03-25 01:27:00    2017-03-25 01:27:00
77086    27937    685    2017-03-25 11:01:00    2017-03-25 11:01:00
77087    27937    758    2017-03-25 15:15:00    2017-03-25 15:15:00
77088    27938    949    2017-03-25 08:56:00    2017-03-25 08:56:00
77089    27938    545    2017-03-25 16:12:00    2017-03-25 16:12:00
77090    27938    481    2017-03-25 15:55:00    2017-03-25 15:55:00
77091    27938    512    2017-03-25 21:19:00    2017-03-25 21:19:00
77092    27938    787    2017-03-25 23:59:00    2017-03-25 23:59:00
77093    27939    531    2017-03-25 12:21:00    2017-03-25 12:21:00
77094    27939    629    2017-03-25 08:51:00    2017-03-25 08:51:00
77095    27939    479    2017-03-25 01:18:00    2017-03-25 01:18:00
77096    27939    675    2017-03-25 23:48:00    2017-03-25 23:48:00
77097    27939    804    2017-03-25 02:28:00    2017-03-25 02:28:00
77098    27940    499    2017-03-25 21:44:00    2017-03-25 21:44:00
77099    27940    661    2017-03-25 06:09:00    2017-03-25 06:09:00
77100    27940    860    2017-03-25 21:04:00    2017-03-25 21:04:00
77101    27940    722    2017-03-25 06:52:00    2017-03-25 06:52:00
77102    27940    743    2017-03-25 06:45:00    2017-03-25 06:45:00
77103    27941    898    2017-03-25 06:40:00    2017-03-25 06:40:00
77104    27941    958    2017-03-25 22:45:00    2017-03-25 22:45:00
77105    27941    659    2017-03-25 09:24:00    2017-03-25 09:24:00
77106    27941    607    2017-03-25 10:14:00    2017-03-25 10:14:00
77107    27941    582    2017-03-25 19:24:00    2017-03-25 19:24:00
77108    27942    486    2017-03-25 01:07:00    2017-03-25 01:07:00
77109    27942    529    2017-03-25 08:42:00    2017-03-25 08:42:00
77110    27942    507    2017-03-25 13:32:00    2017-03-25 13:32:00
77111    27942    826    2017-03-25 01:25:00    2017-03-25 01:25:00
77112    27942    742    2017-03-25 22:41:00    2017-03-25 22:41:00
77113    27943    592    2017-03-26 22:52:00    2017-03-26 22:52:00
77114    27943    660    2017-03-26 01:14:00    2017-03-26 01:14:00
77115    27943    824    2017-03-26 22:52:00    2017-03-26 22:52:00
77116    27943    916    2017-03-27 00:00:00    2017-03-27 00:00:00
77117    27943    593    2017-03-26 23:29:00    2017-03-26 23:29:00
77118    27944    865    2017-03-26 06:19:00    2017-03-26 06:19:00
77119    27944    701    2017-03-26 23:37:00    2017-03-26 23:37:00
77120    27944    783    2017-03-26 12:18:00    2017-03-26 12:18:00
77121    27944    792    2017-03-26 19:42:00    2017-03-26 19:42:00
77122    27944    733    2017-03-26 14:36:00    2017-03-26 14:36:00
77123    27945    565    2017-03-26 05:41:00    2017-03-26 05:41:00
77124    27945    810    2017-03-26 17:28:00    2017-03-26 17:28:00
77125    27945    919    2017-03-26 09:53:00    2017-03-26 09:53:00
77126    27945    521    2017-03-26 17:24:00    2017-03-26 17:24:00
77127    27945    674    2017-03-26 22:24:00    2017-03-26 22:24:00
77128    27946    741    2017-03-26 23:12:00    2017-03-26 23:12:00
77129    27946    540    2017-03-26 16:53:00    2017-03-26 16:53:00
77130    27946    532    2017-03-26 03:10:00    2017-03-26 03:10:00
77131    27946    687    2017-03-26 23:49:00    2017-03-26 23:49:00
77132    27946    887    2017-03-26 19:58:00    2017-03-26 19:58:00
77133    27947    854    2017-03-26 04:53:00    2017-03-26 04:53:00
77134    27947    504    2017-03-26 20:26:00    2017-03-26 20:26:00
77135    27947    718    2017-03-26 10:48:00    2017-03-26 10:48:00
77136    27947    944    2017-03-26 15:44:00    2017-03-26 15:44:00
77137    27947    488    2017-03-26 15:45:00    2017-03-26 15:45:00
77138    27948    581    2017-03-26 20:50:00    2017-03-26 20:50:00
77139    27948    827    2017-03-26 08:24:00    2017-03-26 08:24:00
77140    27948    658    2017-03-26 18:55:00    2017-03-26 18:55:00
77141    27948    896    2017-03-26 12:42:00    2017-03-26 12:42:00
77142    27948    570    2017-03-26 20:43:00    2017-03-26 20:43:00
77143    27949    534    2017-03-26 16:07:00    2017-03-26 16:07:00
77144    27949    912    2017-03-26 15:19:00    2017-03-26 15:19:00
77145    27949    478    2017-03-26 10:10:00    2017-03-26 10:10:00
77146    27949    882    2017-03-26 07:14:00    2017-03-26 07:14:00
77147    27949    659    2017-03-26 18:59:00    2017-03-26 18:59:00
77148    27950    742    2017-03-26 10:33:00    2017-03-26 10:33:00
77149    27950    952    2017-03-26 01:28:00    2017-03-26 01:28:00
77150    27950    683    2017-03-26 13:21:00    2017-03-26 13:21:00
77151    27950    683    2017-03-26 17:14:00    2017-03-26 17:14:00
77152    27950    550    2017-03-26 06:19:00    2017-03-26 06:19:00
77153    27951    490    2017-03-26 20:41:00    2017-03-26 20:41:00
77154    27951    632    2017-03-26 06:15:00    2017-03-26 06:15:00
77155    27951    620    2017-03-26 10:46:00    2017-03-26 10:46:00
77156    27951    631    2017-03-26 18:49:00    2017-03-26 18:49:00
77157    27951    675    2017-03-26 09:22:00    2017-03-26 09:22:00
77158    27952    873    2017-03-26 12:54:00    2017-03-26 12:54:00
77159    27952    910    2017-03-26 09:17:00    2017-03-26 09:17:00
77160    27952    463    2017-03-26 18:00:00    2017-03-26 18:00:00
77161    27952    920    2017-03-26 22:23:00    2017-03-26 22:23:00
77162    27952    835    2017-03-26 11:15:00    2017-03-26 11:15:00
77163    27953    893    2017-03-26 05:52:00    2017-03-26 05:52:00
77164    27953    943    2017-03-26 08:05:00    2017-03-26 08:05:00
77165    27953    899    2017-03-26 17:40:00    2017-03-26 17:40:00
77166    27953    778    2017-03-26 09:57:00    2017-03-26 09:57:00
77167    27953    860    2017-03-26 14:59:00    2017-03-26 14:59:00
77168    27954    784    2017-03-26 13:11:00    2017-03-26 13:11:00
77169    27954    547    2017-03-26 06:52:00    2017-03-26 06:52:00
77170    27954    697    2017-03-26 17:32:00    2017-03-26 17:32:00
77171    27954    827    2017-03-26 16:45:00    2017-03-26 16:45:00
77172    27954    853    2017-03-26 05:06:00    2017-03-26 05:06:00
77173    27955    736    2017-03-26 02:23:00    2017-03-26 02:23:00
77174    27955    700    2017-03-26 10:03:00    2017-03-26 10:03:00
77175    27955    837    2017-03-26 06:07:00    2017-03-26 06:07:00
77176    27955    627    2017-03-26 16:55:00    2017-03-26 16:55:00
77177    27955    842    2017-03-26 18:53:00    2017-03-26 18:53:00
77178    27956    573    2017-03-26 12:36:00    2017-03-26 12:36:00
77179    27956    951    2017-03-26 22:02:00    2017-03-26 22:02:00
77180    27956    772    2017-03-26 15:41:00    2017-03-26 15:41:00
77181    27956    755    2017-03-26 22:39:00    2017-03-26 22:39:00
77182    27956    889    2017-03-26 09:24:00    2017-03-26 09:24:00
77183    27957    606    2017-03-26 12:39:00    2017-03-26 12:39:00
77184    27957    749    2017-03-26 01:39:00    2017-03-26 01:39:00
77185    27957    697    2017-03-26 07:39:00    2017-03-26 07:39:00
77186    27957    648    2017-03-26 05:59:00    2017-03-26 05:59:00
77187    27957    769    2017-03-26 04:36:00    2017-03-26 04:36:00
77188    27958    830    2017-03-26 07:01:00    2017-03-26 07:01:00
77189    27958    838    2017-03-26 08:49:00    2017-03-26 08:49:00
77190    27958    837    2017-03-26 21:55:00    2017-03-26 21:55:00
77191    27958    711    2017-03-26 04:00:00    2017-03-26 04:00:00
77192    27958    687    2017-03-26 21:49:00    2017-03-26 21:49:00
77193    27959    568    2017-03-26 04:34:00    2017-03-26 04:34:00
77194    27959    708    2017-03-26 22:07:00    2017-03-26 22:07:00
77195    27959    499    2017-03-26 22:47:00    2017-03-26 22:47:00
77196    27959    718    2017-03-26 10:18:00    2017-03-26 10:18:00
77197    27959    778    2017-03-26 19:25:00    2017-03-26 19:25:00
77198    27960    540    2017-03-26 22:58:00    2017-03-26 22:58:00
77199    27960    863    2017-03-26 12:00:00    2017-03-26 12:00:00
77200    27960    826    2017-03-26 23:20:00    2017-03-26 23:20:00
77201    27960    833    2017-03-26 13:28:00    2017-03-26 13:28:00
77202    27960    470    2017-03-26 21:46:00    2017-03-26 21:46:00
77203    27961    789    2017-03-26 15:25:00    2017-03-26 15:25:00
77204    27961    492    2017-03-26 15:54:00    2017-03-26 15:54:00
77205    27961    589    2017-03-26 20:15:00    2017-03-26 20:15:00
77206    27961    641    2017-03-26 02:17:00    2017-03-26 02:17:00
77207    27961    606    2017-03-26 18:37:00    2017-03-26 18:37:00
77208    27962    794    2017-03-26 01:14:00    2017-03-26 01:14:00
77209    27962    596    2017-03-26 14:02:00    2017-03-26 14:02:00
77210    27962    861    2017-03-26 19:41:00    2017-03-26 19:41:00
77211    27962    539    2017-03-26 21:26:00    2017-03-26 21:26:00
77212    27962    562    2017-03-26 07:06:00    2017-03-26 07:06:00
77213    27963    622    2017-03-26 19:18:00    2017-03-26 19:18:00
77214    27963    634    2017-03-26 17:00:00    2017-03-26 17:00:00
77215    27963    645    2017-03-26 17:54:00    2017-03-26 17:54:00
77216    27963    901    2017-03-26 21:20:00    2017-03-26 21:20:00
77217    27963    506    2017-03-26 12:29:00    2017-03-26 12:29:00
77218    27964    603    2017-03-26 10:17:00    2017-03-26 10:17:00
77219    27964    947    2017-03-26 13:16:00    2017-03-26 13:16:00
77220    27964    534    2017-03-26 06:09:00    2017-03-26 06:09:00
77221    27964    900    2017-03-26 12:01:00    2017-03-26 12:01:00
77222    27964    642    2017-03-26 15:13:00    2017-03-26 15:13:00
77223    27965    825    2017-03-26 12:28:00    2017-03-26 12:28:00
77224    27965    811    2017-03-26 13:28:00    2017-03-26 13:28:00
77225    27965    562    2017-03-26 15:10:00    2017-03-26 15:10:00
77226    27965    736    2017-03-26 11:02:00    2017-03-26 11:02:00
77227    27965    744    2017-03-26 15:23:00    2017-03-26 15:23:00
77228    27966    554    2017-03-26 22:59:00    2017-03-26 22:59:00
77229    27966    775    2017-03-26 19:37:00    2017-03-26 19:37:00
77230    27966    547    2017-03-26 01:45:00    2017-03-26 01:45:00
77231    27966    750    2017-03-26 12:08:00    2017-03-26 12:08:00
77232    27966    915    2017-03-26 04:42:00    2017-03-26 04:42:00
77233    27967    570    2017-03-26 17:21:00    2017-03-26 17:21:00
77234    27967    754    2017-03-26 06:48:00    2017-03-26 06:48:00
77235    27967    572    2017-03-26 13:50:00    2017-03-26 13:50:00
77236    27967    665    2017-03-26 12:47:00    2017-03-26 12:47:00
77237    27967    532    2017-03-26 04:13:00    2017-03-26 04:13:00
77238    27968    599    2017-03-26 02:20:00    2017-03-26 02:20:00
77239    27968    658    2017-03-26 08:15:00    2017-03-26 08:15:00
77240    27968    857    2017-03-26 20:33:00    2017-03-26 20:33:00
77241    27968    806    2017-03-26 18:57:00    2017-03-26 18:57:00
77242    27968    623    2017-03-26 23:21:00    2017-03-26 23:21:00
77243    27969    517    2017-03-26 22:46:00    2017-03-26 22:46:00
77244    27969    888    2017-03-26 03:06:00    2017-03-26 03:06:00
77245    27969    619    2017-03-26 16:20:00    2017-03-26 16:20:00
77246    27969    519    2017-03-26 03:45:00    2017-03-26 03:45:00
77247    27969    904    2017-03-26 06:39:00    2017-03-26 06:39:00
77248    27970    902    2017-03-26 05:29:00    2017-03-26 05:29:00
77249    27970    847    2017-03-26 01:37:00    2017-03-26 01:37:00
77250    27970    616    2017-03-26 13:11:00    2017-03-26 13:11:00
77251    27970    714    2017-03-26 06:30:00    2017-03-26 06:30:00
77252    27970    893    2017-03-26 10:00:00    2017-03-26 10:00:00
77253    27971    817    2017-03-26 19:48:00    2017-03-26 19:48:00
77254    27971    733    2017-03-26 16:37:00    2017-03-26 16:37:00
77255    27971    730    2017-03-26 03:37:00    2017-03-26 03:37:00
77256    27971    551    2017-03-26 14:33:00    2017-03-26 14:33:00
77257    27971    729    2017-03-26 13:13:00    2017-03-26 13:13:00
77258    27972    754    2017-03-26 17:35:00    2017-03-26 17:35:00
77259    27972    912    2017-03-26 19:27:00    2017-03-26 19:27:00
77260    27972    841    2017-03-26 09:59:00    2017-03-26 09:59:00
77261    27972    855    2017-03-26 16:02:00    2017-03-26 16:02:00
77262    27972    573    2017-03-26 11:05:00    2017-03-26 11:05:00
77263    27973    699    2017-03-26 08:23:00    2017-03-26 08:23:00
77264    27973    762    2017-03-26 03:52:00    2017-03-26 03:52:00
77265    27973    743    2017-03-26 11:37:00    2017-03-26 11:37:00
77266    27973    582    2017-03-26 21:52:00    2017-03-26 21:52:00
77267    27973    684    2017-03-26 02:52:00    2017-03-26 02:52:00
77268    27974    930    2017-03-26 03:26:00    2017-03-26 03:26:00
77269    27974    531    2017-03-26 09:27:00    2017-03-26 09:27:00
77270    27974    721    2017-03-26 05:28:00    2017-03-26 05:28:00
77271    27974    858    2017-03-26 01:46:00    2017-03-26 01:46:00
77272    27974    588    2017-03-26 05:27:00    2017-03-26 05:27:00
77273    27975    914    2017-03-26 20:25:00    2017-03-26 20:25:00
77274    27975    465    2017-03-26 13:23:00    2017-03-26 13:23:00
77275    27975    821    2017-03-26 07:30:00    2017-03-26 07:30:00
77276    27975    946    2017-03-26 23:48:00    2017-03-26 23:48:00
77277    27975    698    2017-03-26 09:50:00    2017-03-26 09:50:00
77278    27976    479    2017-03-26 16:33:00    2017-03-26 16:33:00
77279    27976    948    2017-03-26 05:25:00    2017-03-26 05:25:00
77280    27976    533    2017-03-26 19:18:00    2017-03-26 19:18:00
77281    27976    570    2017-03-26 02:50:00    2017-03-26 02:50:00
77282    27976    926    2017-03-26 01:27:00    2017-03-26 01:27:00
77283    27977    677    2017-03-26 20:53:00    2017-03-26 20:53:00
77284    27977    753    2017-03-26 05:42:00    2017-03-26 05:42:00
77285    27977    887    2017-03-26 16:57:00    2017-03-26 16:57:00
77286    27977    833    2017-03-26 13:49:00    2017-03-26 13:49:00
77287    27977    693    2017-03-26 14:50:00    2017-03-26 14:50:00
77288    27978    594    2017-03-26 04:09:00    2017-03-26 04:09:00
77289    27978    914    2017-03-26 16:06:00    2017-03-26 16:06:00
77290    27978    816    2017-03-26 14:57:00    2017-03-26 14:57:00
77291    27978    644    2017-03-26 01:29:00    2017-03-26 01:29:00
77292    27978    954    2017-03-26 15:32:00    2017-03-26 15:32:00
77293    27979    732    2017-03-26 14:09:00    2017-03-26 14:09:00
77294    27979    919    2017-03-26 08:19:00    2017-03-26 08:19:00
77295    27979    891    2017-03-26 05:24:00    2017-03-26 05:24:00
77296    27979    660    2017-03-26 18:09:00    2017-03-26 18:09:00
77297    27979    730    2017-03-26 15:19:00    2017-03-26 15:19:00
77298    27980    799    2017-03-26 13:45:00    2017-03-26 13:45:00
77299    27980    944    2017-03-26 09:10:00    2017-03-26 09:10:00
77300    27980    863    2017-03-26 15:21:00    2017-03-26 15:21:00
77301    27980    540    2017-03-26 17:40:00    2017-03-26 17:40:00
77302    27980    897    2017-03-26 17:27:00    2017-03-26 17:27:00
77303    27981    893    2017-03-26 20:31:00    2017-03-26 20:31:00
77304    27981    673    2017-03-26 13:02:00    2017-03-26 13:02:00
77305    27981    530    2017-03-26 14:46:00    2017-03-26 14:46:00
77306    27981    493    2017-03-26 11:40:00    2017-03-26 11:40:00
77307    27981    615    2017-03-26 22:06:00    2017-03-26 22:06:00
77308    27982    722    2017-03-26 19:13:00    2017-03-26 19:13:00
77309    27982    672    2017-03-26 04:44:00    2017-03-26 04:44:00
77310    27982    490    2017-03-26 17:58:00    2017-03-26 17:58:00
77311    27982    818    2017-03-26 17:25:00    2017-03-26 17:25:00
77312    27982    505    2017-03-26 14:12:00    2017-03-26 14:12:00
77313    27983    495    2017-03-26 07:07:00    2017-03-26 07:07:00
77314    27983    760    2017-03-26 21:14:00    2017-03-26 21:14:00
77315    27983    476    2017-03-26 20:03:00    2017-03-26 20:03:00
77316    27983    558    2017-03-26 21:03:00    2017-03-26 21:03:00
77317    27983    955    2017-03-26 10:00:00    2017-03-26 10:00:00
77318    27984    847    2017-03-26 02:34:00    2017-03-26 02:34:00
77319    27984    866    2017-03-26 20:18:00    2017-03-26 20:18:00
77320    27984    589    2017-03-26 06:14:00    2017-03-26 06:14:00
77321    27984    668    2017-03-26 16:40:00    2017-03-26 16:40:00
77322    27984    806    2017-03-26 14:06:00    2017-03-26 14:06:00
77323    27985    791    2017-03-26 11:30:00    2017-03-26 11:30:00
77324    27985    959    2017-03-26 16:53:00    2017-03-26 16:53:00
77325    27985    484    2017-03-26 08:11:00    2017-03-26 08:11:00
77326    27985    588    2017-03-26 18:54:00    2017-03-26 18:54:00
77327    27985    489    2017-03-26 05:22:00    2017-03-26 05:22:00
77328    27986    906    2017-03-26 15:21:00    2017-03-26 15:21:00
77329    27986    564    2017-03-26 06:11:00    2017-03-26 06:11:00
77330    27986    617    2017-03-26 13:00:00    2017-03-26 13:00:00
77331    27986    723    2017-03-26 16:25:00    2017-03-26 16:25:00
77332    27986    535    2017-03-26 05:54:00    2017-03-26 05:54:00
77333    27987    536    2017-03-26 04:43:00    2017-03-26 04:43:00
77334    27987    868    2017-03-26 06:17:00    2017-03-26 06:17:00
77335    27987    753    2017-03-26 06:57:00    2017-03-26 06:57:00
77336    27987    730    2017-03-26 13:13:00    2017-03-26 13:13:00
77337    27987    611    2017-03-26 11:03:00    2017-03-26 11:03:00
77338    27988    589    2017-03-26 21:21:00    2017-03-26 21:21:00
77339    27988    539    2017-03-26 03:02:00    2017-03-26 03:02:00
77340    27988    627    2017-03-26 13:25:00    2017-03-26 13:25:00
77341    27988    644    2017-03-26 18:11:00    2017-03-26 18:11:00
77342    27988    718    2017-03-26 07:35:00    2017-03-26 07:35:00
77343    27989    880    2017-03-26 09:04:00    2017-03-26 09:04:00
77344    27989    704    2017-03-26 15:28:00    2017-03-26 15:28:00
77345    27989    618    2017-03-26 20:19:00    2017-03-26 20:19:00
77346    27989    765    2017-03-26 03:31:00    2017-03-26 03:31:00
77347    27989    716    2017-03-26 10:26:00    2017-03-26 10:26:00
77348    27990    808    2017-03-26 08:39:00    2017-03-26 08:39:00
77349    27990    793    2017-03-26 16:15:00    2017-03-26 16:15:00
77350    27990    580    2017-03-26 19:31:00    2017-03-26 19:31:00
77351    27990    527    2017-03-26 02:11:00    2017-03-26 02:11:00
77352    27990    907    2017-03-26 06:22:00    2017-03-26 06:22:00
77353    27991    612    2017-03-26 02:52:00    2017-03-26 02:52:00
77354    27991    642    2017-03-26 10:14:00    2017-03-26 10:14:00
77355    27991    488    2017-03-26 12:59:00    2017-03-26 12:59:00
77356    27991    892    2017-03-26 06:46:00    2017-03-26 06:46:00
77357    27991    697    2017-03-26 20:20:00    2017-03-26 20:20:00
77358    27992    728    2017-03-26 06:41:00    2017-03-26 06:41:00
77359    27992    950    2017-03-26 05:02:00    2017-03-26 05:02:00
77360    27992    482    2017-03-26 18:39:00    2017-03-26 18:39:00
77361    27992    499    2017-03-26 07:19:00    2017-03-26 07:19:00
77362    27992    515    2017-03-26 07:37:00    2017-03-26 07:37:00
77363    27993    949    2017-03-26 21:59:00    2017-03-26 21:59:00
77364    27993    744    2017-03-26 17:24:00    2017-03-26 17:24:00
77365    27993    618    2017-03-26 09:02:00    2017-03-26 09:02:00
77366    27993    725    2017-03-26 16:13:00    2017-03-26 16:13:00
77367    27993    712    2017-03-26 03:34:00    2017-03-26 03:34:00
77368    27994    797    2017-03-26 01:08:00    2017-03-26 01:08:00
77369    27994    764    2017-03-26 11:17:00    2017-03-26 11:17:00
77370    27994    829    2017-03-26 20:21:00    2017-03-26 20:21:00
77371    27994    478    2017-03-26 20:04:00    2017-03-26 20:04:00
77372    27994    755    2017-03-26 19:38:00    2017-03-26 19:38:00
77373    27995    693    2017-03-26 12:40:00    2017-03-26 12:40:00
77374    27995    706    2017-03-26 13:49:00    2017-03-26 13:49:00
77375    27995    704    2017-03-26 03:23:00    2017-03-26 03:23:00
77376    27995    779    2017-03-26 04:50:00    2017-03-26 04:50:00
77377    27995    591    2017-03-26 06:10:00    2017-03-26 06:10:00
77378    27996    574    2017-03-26 19:00:00    2017-03-26 19:00:00
77379    27996    558    2017-03-26 15:13:00    2017-03-26 15:13:00
77380    27996    891    2017-03-26 16:02:00    2017-03-26 16:02:00
77381    27996    758    2017-03-26 04:26:00    2017-03-26 04:26:00
77382    27996    709    2017-03-26 17:44:00    2017-03-26 17:44:00
77383    27997    653    2017-03-26 10:21:00    2017-03-26 10:21:00
77384    27997    476    2017-03-26 14:41:00    2017-03-26 14:41:00
77385    27997    725    2017-03-26 10:01:00    2017-03-26 10:01:00
77386    27997    790    2017-03-26 13:52:00    2017-03-26 13:52:00
77387    27997    593    2017-03-26 13:00:00    2017-03-26 13:00:00
77388    27998    860    2017-03-26 19:50:00    2017-03-26 19:50:00
77389    27998    792    2017-03-26 10:45:00    2017-03-26 10:45:00
77390    27998    724    2017-03-26 14:23:00    2017-03-26 14:23:00
77391    27998    655    2017-03-26 13:07:00    2017-03-26 13:07:00
77392    27998    488    2017-03-26 01:24:00    2017-03-26 01:24:00
77393    27999    826    2017-03-26 20:01:00    2017-03-26 20:01:00
77394    27999    782    2017-03-26 10:58:00    2017-03-26 10:58:00
77395    27999    799    2017-03-26 07:32:00    2017-03-26 07:32:00
77396    27999    917    2017-03-26 11:17:00    2017-03-26 11:17:00
77397    27999    940    2017-03-26 16:45:00    2017-03-26 16:45:00
77398    28000    740    2017-03-26 08:31:00    2017-03-26 08:31:00
77399    28000    518    2017-03-26 02:51:00    2017-03-26 02:51:00
77400    28000    667    2017-03-26 23:39:00    2017-03-26 23:39:00
77401    28000    743    2017-03-26 11:07:00    2017-03-26 11:07:00
77402    28000    612    2017-03-26 06:00:00    2017-03-26 06:00:00
77403    28001    679    2017-03-26 12:37:00    2017-03-26 12:37:00
77404    28001    470    2017-03-26 01:34:00    2017-03-26 01:34:00
77405    28001    463    2017-03-26 19:49:00    2017-03-26 19:49:00
77406    28001    787    2017-03-26 02:29:00    2017-03-26 02:29:00
77407    28001    892    2017-03-26 01:12:00    2017-03-26 01:12:00
77408    28002    705    2017-03-26 18:20:00    2017-03-26 18:20:00
77409    28002    677    2017-03-27 00:00:00    2017-03-27 00:00:00
77410    28002    728    2017-03-26 23:57:00    2017-03-26 23:57:00
77411    28002    647    2017-03-26 22:15:00    2017-03-26 22:15:00
77412    28002    791    2017-03-26 04:53:00    2017-03-26 04:53:00
77413    28003    930    2017-03-26 08:43:00    2017-03-26 08:43:00
77414    28003    538    2017-03-26 06:21:00    2017-03-26 06:21:00
77415    28003    639    2017-03-26 12:42:00    2017-03-26 12:42:00
77416    28003    665    2017-03-26 15:03:00    2017-03-26 15:03:00
77417    28003    765    2017-03-26 22:36:00    2017-03-26 22:36:00
77418    28004    602    2017-03-26 10:25:00    2017-03-26 10:25:00
77419    28004    491    2017-03-26 10:42:00    2017-03-26 10:42:00
77420    28004    771    2017-03-26 14:35:00    2017-03-26 14:35:00
77421    28004    859    2017-03-26 17:26:00    2017-03-26 17:26:00
77422    28004    815    2017-03-26 06:36:00    2017-03-26 06:36:00
77423    28005    881    2017-03-26 09:26:00    2017-03-26 09:26:00
77424    28005    509    2017-03-26 16:39:00    2017-03-26 16:39:00
77425    28005    860    2017-03-26 12:12:00    2017-03-26 12:12:00
77426    28005    899    2017-03-26 07:38:00    2017-03-26 07:38:00
77427    28005    664    2017-03-26 09:11:00    2017-03-26 09:11:00
77428    28006    821    2017-03-26 04:30:00    2017-03-26 04:30:00
77429    28006    516    2017-03-26 10:49:00    2017-03-26 10:49:00
77430    28006    914    2017-03-26 18:14:00    2017-03-26 18:14:00
77431    28006    828    2017-03-26 08:12:00    2017-03-26 08:12:00
77432    28006    659    2017-03-26 18:06:00    2017-03-26 18:06:00
77433    28007    575    2017-03-26 01:31:00    2017-03-26 01:31:00
77434    28007    611    2017-03-26 13:42:00    2017-03-26 13:42:00
77435    28007    856    2017-03-26 20:15:00    2017-03-26 20:15:00
77436    28007    557    2017-03-26 02:18:00    2017-03-26 02:18:00
77437    28007    612    2017-03-26 23:25:00    2017-03-26 23:25:00
77438    28008    552    2017-03-26 15:42:00    2017-03-26 15:42:00
77439    28008    903    2017-03-26 18:40:00    2017-03-26 18:40:00
77440    28008    505    2017-03-26 19:16:00    2017-03-26 19:16:00
77441    28008    678    2017-03-26 01:55:00    2017-03-26 01:55:00
77442    28008    835    2017-03-26 04:30:00    2017-03-26 04:30:00
77443    28009    638    2017-03-26 02:58:00    2017-03-26 02:58:00
77444    28009    468    2017-03-26 06:51:00    2017-03-26 06:51:00
77445    28009    508    2017-03-26 19:35:00    2017-03-26 19:35:00
77446    28009    693    2017-03-26 11:00:00    2017-03-26 11:00:00
77447    28009    821    2017-03-26 21:21:00    2017-03-26 21:21:00
77448    28010    676    2017-03-26 08:14:00    2017-03-26 08:14:00
77449    28010    548    2017-03-26 19:32:00    2017-03-26 19:32:00
77450    28010    567    2017-03-26 19:01:00    2017-03-26 19:01:00
77451    28010    757    2017-03-26 15:06:00    2017-03-26 15:06:00
77452    28010    522    2017-03-26 23:56:00    2017-03-26 23:56:00
77453    28011    659    2017-03-26 16:12:00    2017-03-26 16:12:00
77454    28011    934    2017-03-26 16:21:00    2017-03-26 16:21:00
77455    28011    690    2017-03-26 10:52:00    2017-03-26 10:52:00
77456    28011    517    2017-03-26 14:15:00    2017-03-26 14:15:00
77457    28011    496    2017-03-26 16:18:00    2017-03-26 16:18:00
77458    28012    951    2017-03-26 11:07:00    2017-03-26 11:07:00
77459    28012    957    2017-03-26 05:34:00    2017-03-26 05:34:00
77460    28012    537    2017-03-26 07:03:00    2017-03-26 07:03:00
77461    28012    479    2017-03-26 04:55:00    2017-03-26 04:55:00
77462    28012    704    2017-03-26 06:20:00    2017-03-26 06:20:00
77463    28013    836    2017-03-26 20:13:00    2017-03-26 20:13:00
77464    28013    951    2017-03-26 03:58:00    2017-03-26 03:58:00
77465    28013    807    2017-03-26 02:33:00    2017-03-26 02:33:00
77466    28013    721    2017-03-26 12:34:00    2017-03-26 12:34:00
77467    28013    640    2017-03-26 23:06:00    2017-03-26 23:06:00
77468    28014    754    2017-03-26 20:13:00    2017-03-26 20:13:00
77469    28014    489    2017-03-26 09:38:00    2017-03-26 09:38:00
77470    28014    646    2017-03-26 17:24:00    2017-03-26 17:24:00
77471    28014    820    2017-03-26 08:01:00    2017-03-26 08:01:00
77472    28014    742    2017-03-26 19:56:00    2017-03-26 19:56:00
77473    28015    764    2017-03-26 18:05:00    2017-03-26 18:05:00
77474    28015    618    2017-03-26 14:21:00    2017-03-26 14:21:00
77475    28015    499    2017-03-26 06:48:00    2017-03-26 06:48:00
77476    28015    534    2017-03-26 01:21:00    2017-03-26 01:21:00
77477    28015    744    2017-03-26 09:38:00    2017-03-26 09:38:00
77478    28016    591    2017-03-26 09:12:00    2017-03-26 09:12:00
77479    28016    602    2017-03-26 01:00:00    2017-03-26 01:00:00
77480    28016    550    2017-03-26 14:46:00    2017-03-26 14:46:00
77481    28016    633    2017-03-26 13:00:00    2017-03-26 13:00:00
77482    28016    554    2017-03-26 23:44:00    2017-03-26 23:44:00
77483    28017    698    2017-03-27 08:09:00    2017-03-27 08:09:00
77484    28017    933    2017-03-27 20:52:00    2017-03-27 20:52:00
77485    28017    535    2017-03-27 07:11:00    2017-03-27 07:11:00
77486    28017    689    2017-03-27 01:16:00    2017-03-27 01:16:00
77487    28017    875    2017-03-27 18:44:00    2017-03-27 18:44:00
77488    28018    543    2017-03-27 22:38:00    2017-03-27 22:38:00
77489    28018    756    2017-03-27 04:20:00    2017-03-27 04:20:00
77490    28018    891    2017-03-27 20:57:00    2017-03-27 20:57:00
77491    28018    914    2017-03-27 10:34:00    2017-03-27 10:34:00
77492    28018    534    2017-03-27 09:04:00    2017-03-27 09:04:00
77493    28019    860    2017-03-27 05:11:00    2017-03-27 05:11:00
77494    28019    824    2017-03-27 15:23:00    2017-03-27 15:23:00
77495    28019    563    2017-03-27 15:16:00    2017-03-27 15:16:00
77496    28019    790    2017-03-27 17:39:00    2017-03-27 17:39:00
77497    28019    762    2017-03-27 13:47:00    2017-03-27 13:47:00
77498    28020    814    2017-03-27 03:50:00    2017-03-27 03:50:00
77499    28020    881    2017-03-27 02:11:00    2017-03-27 02:11:00
77500    28020    497    2017-03-27 07:12:00    2017-03-27 07:12:00
77501    28020    728    2017-03-27 02:38:00    2017-03-27 02:38:00
77502    28020    578    2017-03-27 22:13:00    2017-03-27 22:13:00
77503    28021    588    2017-03-27 19:22:00    2017-03-27 19:22:00
77504    28021    948    2017-03-27 16:00:00    2017-03-27 16:00:00
77505    28021    889    2017-03-27 02:44:00    2017-03-27 02:44:00
77506    28021    675    2017-03-27 09:12:00    2017-03-27 09:12:00
77507    28021    757    2017-03-27 22:00:00    2017-03-27 22:00:00
77508    28022    519    2017-03-27 23:58:00    2017-03-27 23:58:00
77509    28022    955    2017-03-27 23:11:00    2017-03-27 23:11:00
77510    28022    865    2017-03-27 22:11:00    2017-03-27 22:11:00
77511    28022    630    2017-03-27 04:07:00    2017-03-27 04:07:00
77512    28022    817    2017-03-27 18:17:00    2017-03-27 18:17:00
77513    28023    767    2017-03-27 07:37:00    2017-03-27 07:37:00
77514    28023    492    2017-03-27 21:39:00    2017-03-27 21:39:00
77515    28023    671    2017-03-27 04:58:00    2017-03-27 04:58:00
77516    28023    845    2017-03-27 09:00:00    2017-03-27 09:00:00
77517    28023    648    2017-03-27 20:00:00    2017-03-27 20:00:00
77518    28024    565    2017-03-27 15:50:00    2017-03-27 15:50:00
77519    28024    816    2017-03-27 16:46:00    2017-03-27 16:46:00
77520    28024    480    2017-03-27 11:54:00    2017-03-27 11:54:00
77521    28024    723    2017-03-27 18:12:00    2017-03-27 18:12:00
77522    28024    961    2017-03-27 01:39:00    2017-03-27 01:39:00
77523    28025    790    2017-03-27 20:00:00    2017-03-27 20:00:00
77524    28025    953    2017-03-27 17:10:00    2017-03-27 17:10:00
77525    28025    773    2017-03-27 20:58:00    2017-03-27 20:58:00
77526    28025    735    2017-03-27 20:38:00    2017-03-27 20:38:00
77527    28025    642    2017-03-27 18:19:00    2017-03-27 18:19:00
77528    28026    875    2017-03-27 22:17:00    2017-03-27 22:17:00
77529    28026    758    2017-03-27 13:07:00    2017-03-27 13:07:00
77530    28026    545    2017-03-27 06:48:00    2017-03-27 06:48:00
77531    28026    636    2017-03-27 01:35:00    2017-03-27 01:35:00
77532    28026    762    2017-03-27 07:49:00    2017-03-27 07:49:00
77533    28027    891    2017-03-27 18:20:00    2017-03-27 18:20:00
77534    28027    862    2017-03-27 23:08:00    2017-03-27 23:08:00
77535    28027    554    2017-03-27 06:53:00    2017-03-27 06:53:00
77536    28027    842    2017-03-27 10:00:00    2017-03-27 10:00:00
77537    28027    939    2017-03-27 22:23:00    2017-03-27 22:23:00
77538    28028    725    2017-03-27 21:25:00    2017-03-27 21:25:00
77539    28028    957    2017-03-27 23:01:00    2017-03-27 23:01:00
77540    28028    511    2017-03-27 05:47:00    2017-03-27 05:47:00
77541    28028    638    2017-03-27 06:14:00    2017-03-27 06:14:00
77542    28028    586    2017-03-27 08:23:00    2017-03-27 08:23:00
77543    28029    588    2017-03-27 01:14:00    2017-03-27 01:14:00
77544    28029    514    2017-03-27 19:18:00    2017-03-27 19:18:00
77545    28029    605    2017-03-27 07:12:00    2017-03-27 07:12:00
77546    28029    685    2017-03-27 22:11:00    2017-03-27 22:11:00
77547    28029    653    2017-03-27 16:30:00    2017-03-27 16:30:00
77548    28030    891    2017-03-27 08:48:00    2017-03-27 08:48:00
77549    28030    700    2017-03-27 04:38:00    2017-03-27 04:38:00
77550    28030    558    2017-03-27 15:18:00    2017-03-27 15:18:00
77551    28030    555    2017-03-27 11:08:00    2017-03-27 11:08:00
77552    28030    950    2017-03-27 21:31:00    2017-03-27 21:31:00
77553    28031    858    2017-03-27 05:15:00    2017-03-27 05:15:00
77554    28031    542    2017-03-27 04:36:00    2017-03-27 04:36:00
77555    28031    544    2017-03-27 05:56:00    2017-03-27 05:56:00
77556    28031    628    2017-03-27 13:54:00    2017-03-27 13:54:00
77557    28031    823    2017-03-27 09:37:00    2017-03-27 09:37:00
77558    28032    910    2017-03-27 06:50:00    2017-03-27 06:50:00
77559    28032    606    2017-03-27 15:22:00    2017-03-27 15:22:00
77560    28032    578    2017-03-27 09:41:00    2017-03-27 09:41:00
77561    28032    636    2017-03-27 17:53:00    2017-03-27 17:53:00
77562    28032    836    2017-03-27 19:56:00    2017-03-27 19:56:00
77563    28033    473    2017-03-27 08:18:00    2017-03-27 08:18:00
77564    28033    703    2017-03-27 11:10:00    2017-03-27 11:10:00
77565    28033    932    2017-03-27 17:57:00    2017-03-27 17:57:00
77566    28033    661    2017-03-27 15:25:00    2017-03-27 15:25:00
77567    28033    733    2017-03-27 22:00:00    2017-03-27 22:00:00
77568    28034    785    2017-03-27 01:13:00    2017-03-27 01:13:00
77569    28034    888    2017-03-27 02:46:00    2017-03-27 02:46:00
77570    28034    763    2017-03-27 17:37:00    2017-03-27 17:37:00
77571    28034    868    2017-03-27 05:40:00    2017-03-27 05:40:00
77572    28034    787    2017-03-27 15:28:00    2017-03-27 15:28:00
77573    28035    548    2017-03-27 02:19:00    2017-03-27 02:19:00
77574    28035    652    2017-03-27 14:45:00    2017-03-27 14:45:00
77575    28035    784    2017-03-27 21:03:00    2017-03-27 21:03:00
77576    28035    622    2017-03-27 21:21:00    2017-03-27 21:21:00
77577    28035    878    2017-03-27 18:02:00    2017-03-27 18:02:00
77578    28036    499    2017-03-27 03:33:00    2017-03-27 03:33:00
77579    28036    666    2017-03-27 04:56:00    2017-03-27 04:56:00
77580    28036    937    2017-03-27 20:46:00    2017-03-27 20:46:00
77581    28036    610    2017-03-27 06:52:00    2017-03-27 06:52:00
77582    28036    506    2017-03-27 23:33:00    2017-03-27 23:33:00
77583    28037    470    2017-03-27 12:53:00    2017-03-27 12:53:00
77584    28037    735    2017-03-27 22:40:00    2017-03-27 22:40:00
77585    28037    638    2017-03-27 23:15:00    2017-03-27 23:15:00
77586    28037    918    2017-03-27 14:23:00    2017-03-27 14:23:00
77587    28037    562    2017-03-27 09:45:00    2017-03-27 09:45:00
77588    28038    935    2017-03-27 01:35:00    2017-03-27 01:35:00
77589    28038    600    2017-03-27 13:40:00    2017-03-27 13:40:00
77590    28038    588    2017-03-27 06:18:00    2017-03-27 06:18:00
77591    28038    681    2017-03-27 18:35:00    2017-03-27 18:35:00
77592    28038    924    2017-03-27 11:00:00    2017-03-27 11:00:00
77593    28039    530    2017-03-27 07:54:00    2017-03-27 07:54:00
77594    28039    524    2017-03-27 04:00:00    2017-03-27 04:00:00
77595    28039    647    2017-03-27 11:39:00    2017-03-27 11:39:00
77596    28039    482    2017-03-27 20:20:00    2017-03-27 20:20:00
77597    28039    859    2017-03-27 13:51:00    2017-03-27 13:51:00
77598    28040    469    2017-03-27 23:21:00    2017-03-27 23:21:00
77599    28040    495    2017-03-27 15:53:00    2017-03-27 15:53:00
77600    28040    587    2017-03-27 23:47:00    2017-03-27 23:47:00
77601    28040    620    2017-03-27 03:47:00    2017-03-27 03:47:00
77602    28040    602    2017-03-27 12:55:00    2017-03-27 12:55:00
77603    28041    924    2017-03-27 02:12:00    2017-03-27 02:12:00
77604    28041    611    2017-03-27 01:09:00    2017-03-27 01:09:00
77605    28041    778    2017-03-27 16:20:00    2017-03-27 16:20:00
77606    28041    855    2017-03-27 11:34:00    2017-03-27 11:34:00
77607    28041    744    2017-03-27 20:48:00    2017-03-27 20:48:00
77608    28042    875    2017-03-27 11:00:00    2017-03-27 11:00:00
77609    28042    800    2017-03-27 09:22:00    2017-03-27 09:22:00
77610    28042    782    2017-03-27 04:57:00    2017-03-27 04:57:00
77611    28042    613    2017-03-27 10:18:00    2017-03-27 10:18:00
77612    28042    536    2017-03-27 13:05:00    2017-03-27 13:05:00
77613    28043    921    2017-03-27 16:35:00    2017-03-27 16:35:00
77614    28043    960    2017-03-27 04:29:00    2017-03-27 04:29:00
77615    28043    926    2017-03-27 03:30:00    2017-03-27 03:30:00
77616    28043    505    2017-03-27 15:12:00    2017-03-27 15:12:00
77617    28043    579    2017-03-27 07:29:00    2017-03-27 07:29:00
77618    28044    688    2017-03-27 04:33:00    2017-03-27 04:33:00
77619    28044    925    2017-03-27 18:31:00    2017-03-27 18:31:00
77620    28044    650    2017-03-27 12:34:00    2017-03-27 12:34:00
77621    28044    842    2017-03-27 21:44:00    2017-03-27 21:44:00
77622    28044    712    2017-03-27 09:53:00    2017-03-27 09:53:00
77623    28045    781    2017-03-27 18:05:00    2017-03-27 18:05:00
77624    28045    624    2017-03-27 22:02:00    2017-03-27 22:02:00
77625    28045    489    2017-03-27 01:58:00    2017-03-27 01:58:00
77626    28045    785    2017-03-27 22:41:00    2017-03-27 22:41:00
77627    28045    772    2017-03-27 22:29:00    2017-03-27 22:29:00
77628    28046    754    2017-03-27 16:34:00    2017-03-27 16:34:00
77629    28046    494    2017-03-27 19:54:00    2017-03-27 19:54:00
77630    28046    639    2017-03-27 09:29:00    2017-03-27 09:29:00
77631    28046    491    2017-03-27 02:18:00    2017-03-27 02:18:00
77632    28046    918    2017-03-27 10:57:00    2017-03-27 10:57:00
77633    28047    476    2017-03-27 19:28:00    2017-03-27 19:28:00
77634    28047    478    2017-03-27 15:09:00    2017-03-27 15:09:00
77635    28047    938    2017-03-27 01:02:00    2017-03-27 01:02:00
77636    28047    552    2017-03-27 23:32:00    2017-03-27 23:32:00
77637    28047    556    2017-03-27 09:11:00    2017-03-27 09:11:00
77638    28048    463    2017-03-27 23:22:00    2017-03-27 23:22:00
77639    28048    935    2017-03-27 18:17:00    2017-03-27 18:17:00
77640    28048    859    2017-03-27 23:26:00    2017-03-27 23:26:00
77641    28048    565    2017-03-27 20:58:00    2017-03-27 20:58:00
77642    28048    469    2017-03-27 02:08:00    2017-03-27 02:08:00
77643    28049    685    2017-03-27 15:40:00    2017-03-27 15:40:00
77644    28049    946    2017-03-27 14:37:00    2017-03-27 14:37:00
77645    28049    726    2017-03-27 13:55:00    2017-03-27 13:55:00
77646    28049    634    2017-03-27 10:11:00    2017-03-27 10:11:00
77647    28049    956    2017-03-27 16:54:00    2017-03-27 16:54:00
77648    28050    631    2017-03-27 09:03:00    2017-03-27 09:03:00
77649    28050    890    2017-03-27 22:30:00    2017-03-27 22:30:00
77650    28050    503    2017-03-27 12:26:00    2017-03-27 12:26:00
77651    28050    508    2017-03-27 12:13:00    2017-03-27 12:13:00
77652    28050    935    2017-03-27 10:00:00    2017-03-27 10:00:00
77653    28051    940    2017-03-27 15:41:00    2017-03-27 15:41:00
77654    28051    547    2017-03-27 10:30:00    2017-03-27 10:30:00
77655    28051    465    2017-03-27 14:37:00    2017-03-27 14:37:00
77656    28051    806    2017-03-27 01:03:00    2017-03-27 01:03:00
77657    28051    491    2017-03-27 11:02:00    2017-03-27 11:02:00
77658    28052    795    2017-03-27 22:18:00    2017-03-27 22:18:00
77659    28052    746    2017-03-27 17:09:00    2017-03-27 17:09:00
77660    28052    760    2017-03-27 18:07:00    2017-03-27 18:07:00
77661    28052    658    2017-03-27 03:32:00    2017-03-27 03:32:00
77662    28052    704    2017-03-27 17:28:00    2017-03-27 17:28:00
77663    28053    594    2017-03-27 07:33:00    2017-03-27 07:33:00
77664    28053    493    2017-03-27 19:47:00    2017-03-27 19:47:00
77665    28053    573    2017-03-27 13:04:00    2017-03-27 13:04:00
77666    28053    702    2017-03-27 06:54:00    2017-03-27 06:54:00
77667    28053    925    2017-03-27 02:17:00    2017-03-27 02:17:00
77668    28054    563    2017-03-27 23:41:00    2017-03-27 23:41:00
77669    28054    784    2017-03-27 17:11:00    2017-03-27 17:11:00
77670    28054    517    2017-03-27 22:04:00    2017-03-27 22:04:00
77671    28054    662    2017-03-27 14:05:00    2017-03-27 14:05:00
77672    28054    786    2017-03-27 02:15:00    2017-03-27 02:15:00
77673    28055    696    2017-03-27 16:50:00    2017-03-27 16:50:00
77674    28055    923    2017-03-27 20:36:00    2017-03-27 20:36:00
77675    28055    586    2017-03-27 07:45:00    2017-03-27 07:45:00
77676    28055    576    2017-03-27 11:33:00    2017-03-27 11:33:00
77677    28055    899    2017-03-27 08:40:00    2017-03-27 08:40:00
77678    28056    603    2017-03-27 03:55:00    2017-03-27 03:55:00
77679    28056    542    2017-03-27 10:57:00    2017-03-27 10:57:00
77680    28056    599    2017-03-27 02:06:00    2017-03-27 02:06:00
77681    28056    921    2017-03-27 21:39:00    2017-03-27 21:39:00
77682    28056    559    2017-03-27 01:46:00    2017-03-27 01:46:00
77683    28057    752    2017-03-27 12:52:00    2017-03-27 12:52:00
77684    28057    819    2017-03-27 14:23:00    2017-03-27 14:23:00
77685    28057    602    2017-03-27 10:03:00    2017-03-27 10:03:00
77686    28057    952    2017-03-27 20:25:00    2017-03-27 20:25:00
77687    28057    797    2017-03-27 13:33:00    2017-03-27 13:33:00
77688    28058    537    2017-03-27 05:41:00    2017-03-27 05:41:00
77689    28058    796    2017-03-27 02:01:00    2017-03-27 02:01:00
77690    28058    535    2017-03-27 19:57:00    2017-03-27 19:57:00
77691    28058    633    2017-03-27 02:44:00    2017-03-27 02:44:00
77692    28058    855    2017-03-27 16:17:00    2017-03-27 16:17:00
77693    28059    771    2017-03-27 22:22:00    2017-03-27 22:22:00
77694    28059    899    2017-03-27 01:08:00    2017-03-27 01:08:00
77695    28059    785    2017-03-27 05:15:00    2017-03-27 05:15:00
77696    28059    615    2017-03-27 05:27:00    2017-03-27 05:27:00
77697    28059    534    2017-03-27 13:53:00    2017-03-27 13:53:00
77698    28060    594    2017-03-27 19:34:00    2017-03-27 19:34:00
77699    28060    610    2017-03-27 01:51:00    2017-03-27 01:51:00
77700    28060    498    2017-03-27 11:42:00    2017-03-27 11:42:00
77701    28060    539    2017-03-27 13:43:00    2017-03-27 13:43:00
77702    28060    683    2017-03-27 18:03:00    2017-03-27 18:03:00
77703    28061    471    2017-03-27 17:41:00    2017-03-27 17:41:00
77704    28061    943    2017-03-27 22:06:00    2017-03-27 22:06:00
77705    28061    468    2017-03-27 14:06:00    2017-03-27 14:06:00
77706    28061    752    2017-03-27 10:06:00    2017-03-27 10:06:00
77707    28061    848    2017-03-27 06:10:00    2017-03-27 06:10:00
77708    28062    650    2017-03-27 07:35:00    2017-03-27 07:35:00
77709    28062    498    2017-03-27 11:19:00    2017-03-27 11:19:00
77710    28062    548    2017-03-27 16:20:00    2017-03-27 16:20:00
77711    28062    717    2017-03-27 09:35:00    2017-03-27 09:35:00
77712    28062    538    2017-03-27 07:09:00    2017-03-27 07:09:00
77713    28063    951    2017-03-28 18:36:00    2017-03-28 18:36:00
77714    28063    599    2017-03-28 15:33:00    2017-03-28 15:33:00
77715    28063    853    2017-03-28 05:43:00    2017-03-28 05:43:00
77716    28063    947    2017-03-28 21:12:00    2017-03-28 21:12:00
77717    28063    780    2017-03-28 11:04:00    2017-03-28 11:04:00
77718    28064    687    2017-03-28 02:29:00    2017-03-28 02:29:00
77719    28064    719    2017-03-28 10:18:00    2017-03-28 10:18:00
77720    28064    627    2017-03-28 10:17:00    2017-03-28 10:17:00
77721    28064    472    2017-03-28 23:09:00    2017-03-28 23:09:00
77722    28064    643    2017-03-28 01:23:00    2017-03-28 01:23:00
77723    28065    858    2017-03-28 03:32:00    2017-03-28 03:32:00
77724    28065    491    2017-03-28 08:26:00    2017-03-28 08:26:00
77725    28065    677    2017-03-28 07:10:00    2017-03-28 07:10:00
77726    28065    821    2017-03-28 15:35:00    2017-03-28 15:35:00
77727    28065    748    2017-03-28 11:34:00    2017-03-28 11:34:00
77728    28066    694    2017-03-28 17:46:00    2017-03-28 17:46:00
77729    28066    958    2017-03-28 22:11:00    2017-03-28 22:11:00
77730    28066    740    2017-03-28 04:11:00    2017-03-28 04:11:00
77731    28066    893    2017-03-28 13:15:00    2017-03-28 13:15:00
77732    28066    517    2017-03-28 16:21:00    2017-03-28 16:21:00
77733    28067    877    2017-03-28 07:00:00    2017-03-28 07:00:00
77734    28067    497    2017-03-28 12:55:00    2017-03-28 12:55:00
77735    28067    637    2017-03-28 23:18:00    2017-03-28 23:18:00
77736    28067    649    2017-03-28 01:11:00    2017-03-28 01:11:00
77737    28067    746    2017-03-28 13:06:00    2017-03-28 13:06:00
77738    28068    569    2017-03-28 05:41:00    2017-03-28 05:41:00
77739    28068    932    2017-03-28 11:28:00    2017-03-28 11:28:00
77740    28068    781    2017-03-28 08:16:00    2017-03-28 08:16:00
77741    28068    718    2017-03-28 06:34:00    2017-03-28 06:34:00
77742    28068    682    2017-03-28 21:52:00    2017-03-28 21:52:00
77743    28069    508    2017-03-28 01:56:00    2017-03-28 01:56:00
77744    28069    854    2017-03-28 16:34:00    2017-03-28 16:34:00
77745    28069    685    2017-03-28 02:40:00    2017-03-28 02:40:00
77746    28069    840    2017-03-28 15:22:00    2017-03-28 15:22:00
77747    28069    852    2017-03-28 12:50:00    2017-03-28 12:50:00
77748    28070    804    2017-03-28 19:03:00    2017-03-28 19:03:00
77749    28070    873    2017-03-28 11:46:00    2017-03-28 11:46:00
77750    28070    654    2017-03-28 14:37:00    2017-03-28 14:37:00
77751    28070    523    2017-03-28 23:16:00    2017-03-28 23:16:00
77752    28070    683    2017-03-28 16:57:00    2017-03-28 16:57:00
77753    28071    583    2017-03-28 16:00:00    2017-03-28 16:00:00
77754    28071    762    2017-03-28 17:03:00    2017-03-28 17:03:00
77755    28071    529    2017-03-28 11:06:00    2017-03-28 11:06:00
77756    28071    699    2017-03-28 04:17:00    2017-03-28 04:17:00
77757    28071    797    2017-03-28 20:25:00    2017-03-28 20:25:00
77758    28072    551    2017-03-28 07:54:00    2017-03-28 07:54:00
77759    28072    526    2017-03-28 14:56:00    2017-03-28 14:56:00
77760    28072    817    2017-03-28 03:23:00    2017-03-28 03:23:00
77761    28072    666    2017-03-28 22:42:00    2017-03-28 22:42:00
77762    28072    791    2017-03-28 09:26:00    2017-03-28 09:26:00
77763    28073    640    2017-03-28 23:36:00    2017-03-28 23:36:00
77764    28073    664    2017-03-28 08:45:00    2017-03-28 08:45:00
77765    28073    586    2017-03-28 16:00:00    2017-03-28 16:00:00
77766    28073    892    2017-03-28 19:36:00    2017-03-28 19:36:00
77767    28073    693    2017-03-28 13:04:00    2017-03-28 13:04:00
77768    28074    909    2017-03-28 09:05:00    2017-03-28 09:05:00
77769    28074    933    2017-03-28 17:44:00    2017-03-28 17:44:00
77770    28074    788    2017-03-28 14:36:00    2017-03-28 14:36:00
77771    28074    693    2017-03-28 19:03:00    2017-03-28 19:03:00
77772    28074    637    2017-03-28 15:10:00    2017-03-28 15:10:00
77773    28075    940    2017-03-28 11:15:00    2017-03-28 11:15:00
77774    28075    600    2017-03-28 05:00:00    2017-03-28 05:00:00
77775    28075    717    2017-03-28 03:17:00    2017-03-28 03:17:00
77776    28075    621    2017-03-28 14:01:00    2017-03-28 14:01:00
77777    28075    831    2017-03-28 10:54:00    2017-03-28 10:54:00
77778    28076    599    2017-03-28 07:41:00    2017-03-28 07:41:00
77779    28076    495    2017-03-28 22:20:00    2017-03-28 22:20:00
77780    28076    615    2017-03-28 21:12:00    2017-03-28 21:12:00
77781    28076    843    2017-03-28 07:53:00    2017-03-28 07:53:00
77782    28076    694    2017-03-28 23:50:00    2017-03-28 23:50:00
77783    28077    632    2017-03-28 07:16:00    2017-03-28 07:16:00
77784    28077    914    2017-03-28 02:20:00    2017-03-28 02:20:00
77785    28077    814    2017-03-28 12:01:00    2017-03-28 12:01:00
77786    28077    811    2017-03-28 07:52:00    2017-03-28 07:52:00
77787    28077    725    2017-03-28 15:32:00    2017-03-28 15:32:00
77788    28078    678    2017-03-28 18:51:00    2017-03-28 18:51:00
77789    28078    619    2017-03-28 20:41:00    2017-03-28 20:41:00
77790    28078    483    2017-03-28 22:04:00    2017-03-28 22:04:00
77791    28078    676    2017-03-28 23:31:00    2017-03-28 23:31:00
77792    28078    854    2017-03-28 11:14:00    2017-03-28 11:14:00
77793    28079    947    2017-03-28 06:15:00    2017-03-28 06:15:00
77794    28079    495    2017-03-28 02:08:00    2017-03-28 02:08:00
77795    28079    556    2017-03-28 22:18:00    2017-03-28 22:18:00
77796    28079    746    2017-03-28 08:16:00    2017-03-28 08:16:00
77797    28079    817    2017-03-28 18:22:00    2017-03-28 18:22:00
77798    28080    872    2017-03-28 07:59:00    2017-03-28 07:59:00
77799    28080    594    2017-03-28 22:42:00    2017-03-28 22:42:00
77800    28080    692    2017-03-28 04:43:00    2017-03-28 04:43:00
77801    28080    482    2017-03-28 05:29:00    2017-03-28 05:29:00
77802    28080    754    2017-03-28 09:37:00    2017-03-28 09:37:00
77803    28081    895    2017-03-28 14:46:00    2017-03-28 14:46:00
77804    28081    735    2017-03-28 13:56:00    2017-03-28 13:56:00
77805    28081    913    2017-03-28 06:14:00    2017-03-28 06:14:00
77806    28081    580    2017-03-28 05:39:00    2017-03-28 05:39:00
77807    28081    687    2017-03-28 03:48:00    2017-03-28 03:48:00
77808    28082    503    2017-03-28 22:07:00    2017-03-28 22:07:00
77809    28082    599    2017-03-28 21:21:00    2017-03-28 21:21:00
77810    28082    831    2017-03-28 09:35:00    2017-03-28 09:35:00
77811    28082    637    2017-03-28 02:09:00    2017-03-28 02:09:00
77812    28082    612    2017-03-28 12:37:00    2017-03-28 12:37:00
77813    28083    882    2017-03-28 01:34:00    2017-03-28 01:34:00
77814    28083    512    2017-03-28 12:10:00    2017-03-28 12:10:00
77815    28083    735    2017-03-28 18:57:00    2017-03-28 18:57:00
77816    28083    726    2017-03-28 03:42:00    2017-03-28 03:42:00
77817    28083    493    2017-03-28 13:24:00    2017-03-28 13:24:00
77818    28084    489    2017-03-28 09:54:00    2017-03-28 09:54:00
77819    28084    512    2017-03-28 18:38:00    2017-03-28 18:38:00
77820    28084    930    2017-03-28 07:07:00    2017-03-28 07:07:00
77821    28084    641    2017-03-28 01:49:00    2017-03-28 01:49:00
77822    28084    844    2017-03-28 22:29:00    2017-03-28 22:29:00
77823    28085    588    2017-03-28 23:08:00    2017-03-28 23:08:00
77824    28085    791    2017-03-28 14:47:00    2017-03-28 14:47:00
77825    28085    617    2017-03-28 09:12:00    2017-03-28 09:12:00
77826    28085    478    2017-03-28 01:34:00    2017-03-28 01:34:00
77827    28085    499    2017-03-28 22:51:00    2017-03-28 22:51:00
77828    28086    704    2017-03-28 10:38:00    2017-03-28 10:38:00
77829    28086    892    2017-03-28 14:29:00    2017-03-28 14:29:00
77830    28086    649    2017-03-28 14:00:00    2017-03-28 14:00:00
77831    28086    823    2017-03-28 09:22:00    2017-03-28 09:22:00
77832    28086    594    2017-03-28 11:53:00    2017-03-28 11:53:00
77833    28087    594    2017-03-28 13:38:00    2017-03-28 13:38:00
77834    28087    633    2017-03-28 13:41:00    2017-03-28 13:41:00
77835    28087    741    2017-03-28 07:53:00    2017-03-28 07:53:00
77836    28087    727    2017-03-28 08:40:00    2017-03-28 08:40:00
77837    28087    943    2017-03-28 12:14:00    2017-03-28 12:14:00
77838    28088    557    2017-03-28 18:00:00    2017-03-28 18:00:00
77839    28088    817    2017-03-28 07:51:00    2017-03-28 07:51:00
77840    28088    574    2017-03-28 13:54:00    2017-03-28 13:54:00
77841    28088    887    2017-03-28 19:11:00    2017-03-28 19:11:00
77842    28088    670    2017-03-28 03:12:00    2017-03-28 03:12:00
77843    28089    786    2017-03-28 22:39:00    2017-03-28 22:39:00
77844    28089    547    2017-03-28 10:41:00    2017-03-28 10:41:00
77845    28089    944    2017-03-28 09:25:00    2017-03-28 09:25:00
77846    28089    612    2017-03-28 10:06:00    2017-03-28 10:06:00
77847    28089    637    2017-03-28 19:23:00    2017-03-28 19:23:00
77848    28090    754    2017-03-28 12:11:00    2017-03-28 12:11:00
77849    28090    869    2017-03-28 22:03:00    2017-03-28 22:03:00
77850    28090    889    2017-03-28 12:46:00    2017-03-28 12:46:00
77851    28090    683    2017-03-28 01:40:00    2017-03-28 01:40:00
77852    28090    858    2017-03-28 04:35:00    2017-03-28 04:35:00
77853    28091    653    2017-03-28 08:47:00    2017-03-28 08:47:00
77854    28091    465    2017-03-28 05:26:00    2017-03-28 05:26:00
77855    28091    837    2017-03-28 22:25:00    2017-03-28 22:25:00
77856    28091    889    2017-03-28 17:50:00    2017-03-28 17:50:00
77857    28091    848    2017-03-28 03:54:00    2017-03-28 03:54:00
77858    28092    626    2017-03-28 01:11:00    2017-03-28 01:11:00
77859    28092    862    2017-03-28 03:53:00    2017-03-28 03:53:00
77860    28092    480    2017-03-28 15:20:00    2017-03-28 15:20:00
77861    28092    691    2017-03-28 02:57:00    2017-03-28 02:57:00
77862    28092    861    2017-03-28 22:12:00    2017-03-28 22:12:00
77863    28093    721    2017-03-28 06:29:00    2017-03-28 06:29:00
77864    28093    524    2017-03-28 20:00:00    2017-03-28 20:00:00
77865    28093    813    2017-03-28 02:06:00    2017-03-28 02:06:00
77866    28093    789    2017-03-28 19:49:00    2017-03-28 19:49:00
77867    28093    705    2017-03-28 11:10:00    2017-03-28 11:10:00
77868    28094    498    2017-03-28 11:43:00    2017-03-28 11:43:00
77869    28094    660    2017-03-28 04:56:00    2017-03-28 04:56:00
77870    28094    891    2017-03-28 07:16:00    2017-03-28 07:16:00
77871    28094    912    2017-03-28 03:30:00    2017-03-28 03:30:00
77872    28094    707    2017-03-28 14:18:00    2017-03-28 14:18:00
77873    28095    895    2017-03-28 22:50:00    2017-03-28 22:50:00
77874    28095    917    2017-03-28 17:44:00    2017-03-28 17:44:00
77875    28095    701    2017-03-28 05:51:00    2017-03-28 05:51:00
77876    28095    707    2017-03-28 21:29:00    2017-03-28 21:29:00
77877    28095    605    2017-03-28 10:03:00    2017-03-28 10:03:00
77878    28096    701    2017-03-28 09:41:00    2017-03-28 09:41:00
77879    28096    867    2017-03-28 05:25:00    2017-03-28 05:25:00
77880    28096    837    2017-03-28 03:47:00    2017-03-28 03:47:00
77881    28096    567    2017-03-28 01:51:00    2017-03-28 01:51:00
77882    28096    878    2017-03-28 08:32:00    2017-03-28 08:32:00
77883    28097    757    2017-03-28 01:25:00    2017-03-28 01:25:00
77884    28097    871    2017-03-28 04:30:00    2017-03-28 04:30:00
77885    28097    839    2017-03-28 15:44:00    2017-03-28 15:44:00
77886    28097    707    2017-03-28 19:53:00    2017-03-28 19:53:00
77887    28097    940    2017-03-28 03:51:00    2017-03-28 03:51:00
77888    28098    863    2017-03-28 22:05:00    2017-03-28 22:05:00
77889    28098    613    2017-03-28 04:42:00    2017-03-28 04:42:00
77890    28098    881    2017-03-28 13:27:00    2017-03-28 13:27:00
77891    28098    698    2017-03-28 21:45:00    2017-03-28 21:45:00
77892    28098    546    2017-03-28 17:01:00    2017-03-28 17:01:00
77893    28099    785    2017-03-28 18:06:00    2017-03-28 18:06:00
77894    28099    714    2017-03-28 04:04:00    2017-03-28 04:04:00
77895    28099    768    2017-03-28 06:29:00    2017-03-28 06:29:00
77896    28099    948    2017-03-28 21:09:00    2017-03-28 21:09:00
77897    28099    686    2017-03-28 05:00:00    2017-03-28 05:00:00
77899    28100    638    2017-03-28 21:12:00    2017-03-28 21:12:00
77900    28100    887    2017-03-28 10:25:00    2017-03-28 10:25:00
77901    28100    656    2017-03-28 09:03:00    2017-03-28 09:03:00
77902    28100    799    2017-03-28 08:56:00    2017-03-28 08:56:00
77903    28101    837    2017-03-28 09:12:00    2017-03-28 09:12:00
77904    28101    896    2017-03-28 09:05:00    2017-03-28 09:05:00
77905    28101    560    2017-03-28 20:49:00    2017-03-28 20:49:00
77906    28101    479    2017-03-28 13:43:00    2017-03-28 13:43:00
77907    28101    475    2017-03-28 23:22:00    2017-03-28 23:22:00
77908    28102    924    2017-03-28 02:30:00    2017-03-28 02:30:00
77909    28102    535    2017-03-28 10:15:00    2017-03-28 10:15:00
77910    28102    958    2017-03-28 13:07:00    2017-03-28 13:07:00
77911    28102    837    2017-03-28 17:06:00    2017-03-28 17:06:00
77912    28102    705    2017-03-28 15:03:00    2017-03-28 15:03:00
77913    28103    602    2017-03-28 11:00:00    2017-03-28 11:00:00
77914    28103    731    2017-03-28 10:37:00    2017-03-28 10:37:00
77915    28103    939    2017-03-28 11:53:00    2017-03-28 11:53:00
77916    28103    547    2017-03-28 21:53:00    2017-03-28 21:53:00
77917    28103    575    2017-03-28 11:19:00    2017-03-28 11:19:00
77918    28104    729    2017-03-28 09:24:00    2017-03-28 09:24:00
77919    28104    834    2017-03-28 18:32:00    2017-03-28 18:32:00
77920    28104    784    2017-03-28 07:58:00    2017-03-28 07:58:00
77921    28104    814    2017-03-28 11:02:00    2017-03-28 11:02:00
77922    28104    755    2017-03-28 06:50:00    2017-03-28 06:50:00
77923    28105    503    2017-03-28 23:10:00    2017-03-28 23:10:00
77924    28105    653    2017-03-28 22:37:00    2017-03-28 22:37:00
77925    28105    842    2017-03-28 17:00:00    2017-03-28 17:00:00
77926    28105    560    2017-03-28 03:22:00    2017-03-28 03:22:00
77927    28105    815    2017-03-28 09:04:00    2017-03-28 09:04:00
77928    28106    899    2017-03-28 12:12:00    2017-03-28 12:12:00
77929    28106    629    2017-03-28 04:34:00    2017-03-28 04:34:00
77930    28106    618    2017-03-28 23:08:00    2017-03-28 23:08:00
77931    28106    464    2017-03-28 12:46:00    2017-03-28 12:46:00
77932    28106    564    2017-03-28 05:23:00    2017-03-28 05:23:00
77933    28107    667    2017-03-28 01:08:00    2017-03-28 01:08:00
77934    28107    896    2017-03-28 04:33:00    2017-03-28 04:33:00
77935    28107    627    2017-03-28 21:42:00    2017-03-28 21:42:00
77936    28107    823    2017-03-28 08:35:00    2017-03-28 08:35:00
77937    28107    553    2017-03-28 08:36:00    2017-03-28 08:36:00
77938    28108    666    2017-03-28 20:42:00    2017-03-28 20:42:00
77939    28108    694    2017-03-28 13:32:00    2017-03-28 13:32:00
77940    28108    515    2017-03-28 20:11:00    2017-03-28 20:11:00
77941    28108    753    2017-03-28 19:05:00    2017-03-28 19:05:00
77942    28108    463    2017-03-28 19:56:00    2017-03-28 19:56:00
77943    28109    667    2017-03-28 20:33:00    2017-03-28 20:33:00
77944    28109    608    2017-03-28 23:10:00    2017-03-28 23:10:00
77945    28109    630    2017-03-28 13:34:00    2017-03-28 13:34:00
77946    28109    704    2017-03-28 14:37:00    2017-03-28 14:37:00
77947    28109    741    2017-03-28 09:48:00    2017-03-28 09:48:00
77948    28110    941    2017-03-28 18:58:00    2017-03-28 18:58:00
77949    28110    884    2017-03-28 05:11:00    2017-03-28 05:11:00
77950    28110    639    2017-03-28 07:35:00    2017-03-28 07:35:00
77951    28110    544    2017-03-28 23:10:00    2017-03-28 23:10:00
77952    28110    557    2017-03-28 19:13:00    2017-03-28 19:13:00
77953    28111    896    2017-03-28 09:20:00    2017-03-28 09:20:00
77954    28111    669    2017-03-28 05:37:00    2017-03-28 05:37:00
77955    28111    872    2017-03-28 18:52:00    2017-03-28 18:52:00
77956    28111    907    2017-03-28 19:56:00    2017-03-28 19:56:00
77957    28111    629    2017-03-28 06:23:00    2017-03-28 06:23:00
77958    28112    745    2017-03-28 09:25:00    2017-03-28 09:25:00
77959    28112    907    2017-03-28 17:53:00    2017-03-28 17:53:00
77960    28112    903    2017-03-28 16:58:00    2017-03-28 16:58:00
77961    28112    570    2017-03-28 10:13:00    2017-03-28 10:13:00
77962    28112    574    2017-03-28 07:56:00    2017-03-28 07:56:00
77963    28113    807    2017-03-28 09:25:00    2017-03-28 09:25:00
77964    28113    903    2017-03-28 14:56:00    2017-03-28 14:56:00
77965    28113    584    2017-03-28 06:25:00    2017-03-28 06:25:00
77966    28113    645    2017-03-28 20:00:00    2017-03-28 20:00:00
77967    28113    481    2017-03-28 10:46:00    2017-03-28 10:46:00
77968    28114    693    2017-03-28 21:36:00    2017-03-28 21:36:00
77969    28114    691    2017-03-28 15:31:00    2017-03-28 15:31:00
77970    28114    758    2017-03-28 18:08:00    2017-03-28 18:08:00
77971    28114    731    2017-03-28 18:18:00    2017-03-28 18:18:00
77972    28114    647    2017-03-28 08:29:00    2017-03-28 08:29:00
77973    28115    528    2017-03-28 05:04:00    2017-03-28 05:04:00
77974    28115    653    2017-03-28 13:24:00    2017-03-28 13:24:00
77975    28115    602    2017-03-28 14:07:00    2017-03-28 14:07:00
77976    28115    913    2017-03-28 03:47:00    2017-03-28 03:47:00
77977    28115    735    2017-03-28 04:11:00    2017-03-28 04:11:00
77978    28116    783    2017-03-28 10:56:00    2017-03-28 10:56:00
77979    28116    937    2017-03-28 14:45:00    2017-03-28 14:45:00
77980    28116    548    2017-03-28 17:29:00    2017-03-28 17:29:00
77981    28116    632    2017-03-28 09:36:00    2017-03-28 09:36:00
77982    28116    871    2017-03-28 12:42:00    2017-03-28 12:42:00
77983    28117    613    2017-03-28 06:58:00    2017-03-28 06:58:00
77984    28117    606    2017-03-28 01:00:00    2017-03-28 01:00:00
77985    28117    636    2017-03-28 20:23:00    2017-03-28 20:23:00
77986    28117    689    2017-03-28 17:37:00    2017-03-28 17:37:00
77987    28117    653    2017-03-28 16:21:00    2017-03-28 16:21:00
77988    28118    788    2017-03-28 03:28:00    2017-03-28 03:28:00
77989    28118    556    2017-03-28 17:19:00    2017-03-28 17:19:00
77990    28118    482    2017-03-28 22:54:00    2017-03-28 22:54:00
77991    28118    619    2017-03-28 06:27:00    2017-03-28 06:27:00
77992    28118    498    2017-03-28 07:19:00    2017-03-28 07:19:00
77993    28119    561    2017-03-28 01:16:00    2017-03-28 01:16:00
77994    28119    708    2017-03-28 23:55:00    2017-03-28 23:55:00
77995    28119    592    2017-03-28 06:11:00    2017-03-28 06:11:00
77996    28119    653    2017-03-28 06:08:00    2017-03-28 06:08:00
77997    28119    524    2017-03-28 05:21:00    2017-03-28 05:21:00
77998    28120    897    2017-03-28 06:17:00    2017-03-28 06:17:00
77999    28120    603    2017-03-28 05:23:00    2017-03-28 05:23:00
78000    28120    696    2017-03-28 02:10:00    2017-03-28 02:10:00
78001    28120    939    2017-03-28 18:24:00    2017-03-28 18:24:00
78002    28120    794    2017-03-28 11:40:00    2017-03-28 11:40:00
78003    28121    838    2017-03-28 15:59:00    2017-03-28 15:59:00
78004    28121    773    2017-03-28 21:48:00    2017-03-28 21:48:00
78005    28121    539    2017-03-28 01:07:00    2017-03-28 01:07:00
78006    28121    759    2017-03-28 19:55:00    2017-03-28 19:55:00
78007    28121    839    2017-03-28 12:00:00    2017-03-28 12:00:00
78008    28122    513    2017-03-28 09:55:00    2017-03-28 09:55:00
78009    28122    960    2017-03-28 20:50:00    2017-03-28 20:50:00
78010    28122    486    2017-03-28 18:30:00    2017-03-28 18:30:00
78011    28122    568    2017-03-28 02:36:00    2017-03-28 02:36:00
78012    28122    833    2017-03-28 18:01:00    2017-03-28 18:01:00
78013    28123    542    2017-03-28 04:41:00    2017-03-28 04:41:00
78014    28123    853    2017-03-28 04:57:00    2017-03-28 04:57:00
78015    28123    479    2017-03-28 09:39:00    2017-03-28 09:39:00
78016    28123    618    2017-03-28 21:20:00    2017-03-28 21:20:00
78017    28123    727    2017-03-28 01:37:00    2017-03-28 01:37:00
78018    28124    714    2017-03-28 08:38:00    2017-03-28 08:38:00
78019    28124    552    2017-03-28 23:32:00    2017-03-28 23:32:00
78020    28124    563    2017-03-28 03:57:00    2017-03-28 03:57:00
78021    28124    550    2017-03-28 10:03:00    2017-03-28 10:03:00
78022    28124    781    2017-03-28 13:12:00    2017-03-28 13:12:00
78023    28125    878    2017-03-28 04:39:00    2017-03-28 04:39:00
78024    28125    607    2017-03-28 10:40:00    2017-03-28 10:40:00
78025    28125    866    2017-03-28 04:34:00    2017-03-28 04:34:00
78026    28125    486    2017-03-28 04:34:00    2017-03-28 04:34:00
78027    28125    820    2017-03-28 18:37:00    2017-03-28 18:37:00
78028    28126    849    2017-03-28 19:42:00    2017-03-28 19:42:00
78029    28126    671    2017-03-28 05:57:00    2017-03-28 05:57:00
78030    28126    496    2017-03-28 19:28:00    2017-03-28 19:28:00
78031    28126    508    2017-03-28 01:06:00    2017-03-28 01:06:00
78032    28126    527    2017-03-28 10:38:00    2017-03-28 10:38:00
78033    28127    824    2017-03-28 15:04:00    2017-03-28 15:04:00
78034    28127    898    2017-03-28 07:14:00    2017-03-28 07:14:00
78035    28127    897    2017-03-28 07:13:00    2017-03-28 07:13:00
78036    28127    627    2017-03-28 23:10:00    2017-03-28 23:10:00
78037    28127    787    2017-03-28 13:20:00    2017-03-28 13:20:00
78038    28128    754    2017-03-28 05:27:00    2017-03-28 05:27:00
78039    28128    573    2017-03-28 09:11:00    2017-03-28 09:11:00
78040    28128    907    2017-03-28 15:15:00    2017-03-28 15:15:00
78041    28128    906    2017-03-28 15:16:00    2017-03-28 15:16:00
78042    28128    561    2017-03-28 05:36:00    2017-03-28 05:36:00
78043    28129    766    2017-03-28 05:08:00    2017-03-28 05:08:00
78044    28129    936    2017-03-28 20:15:00    2017-03-28 20:15:00
78045    28129    634    2017-03-28 22:19:00    2017-03-28 22:19:00
78046    28129    464    2017-03-28 20:25:00    2017-03-28 20:25:00
78047    28129    615    2017-03-28 22:02:00    2017-03-28 22:02:00
78048    28130    691    2017-03-28 03:25:00    2017-03-28 03:25:00
78049    28130    592    2017-03-28 19:41:00    2017-03-28 19:41:00
78050    28130    896    2017-03-28 22:15:00    2017-03-28 22:15:00
78051    28130    622    2017-03-28 21:28:00    2017-03-28 21:28:00
78052    28130    750    2017-03-28 01:45:00    2017-03-28 01:45:00
78053    28131    959    2017-03-28 11:51:00    2017-03-28 11:51:00
78054    28131    863    2017-03-28 23:43:00    2017-03-28 23:43:00
78055    28131    613    2017-03-28 16:01:00    2017-03-28 16:01:00
78056    28131    947    2017-03-28 14:04:00    2017-03-28 14:04:00
78057    28131    542    2017-03-28 02:46:00    2017-03-28 02:46:00
78058    28132    881    2017-03-28 13:51:00    2017-03-28 13:51:00
78059    28132    846    2017-03-28 14:13:00    2017-03-28 14:13:00
78060    28132    544    2017-03-28 21:13:00    2017-03-28 21:13:00
78061    28132    718    2017-03-28 02:39:00    2017-03-28 02:39:00
78062    28132    920    2017-03-28 06:24:00    2017-03-28 06:24:00
78063    28133    795    2017-03-28 10:58:00    2017-03-28 10:58:00
78064    28133    651    2017-03-28 17:38:00    2017-03-28 17:38:00
78065    28133    556    2017-03-28 21:57:00    2017-03-28 21:57:00
78066    28133    770    2017-03-28 06:35:00    2017-03-28 06:35:00
78067    28133    793    2017-03-28 10:44:00    2017-03-28 10:44:00
78068    28134    926    2017-03-28 05:51:00    2017-03-28 05:51:00
78069    28134    502    2017-03-28 02:07:00    2017-03-28 02:07:00
78070    28134    615    2017-03-28 16:17:00    2017-03-28 16:17:00
78071    28134    619    2017-03-28 17:10:00    2017-03-28 17:10:00
78072    28134    702    2017-03-28 13:30:00    2017-03-28 13:30:00
78073    28135    860    2017-03-28 20:21:00    2017-03-28 20:21:00
78074    28135    903    2017-03-28 23:18:00    2017-03-28 23:18:00
78075    28135    517    2017-03-28 09:46:00    2017-03-28 09:46:00
78076    28135    655    2017-03-28 16:21:00    2017-03-28 16:21:00
78077    28135    717    2017-03-28 21:10:00    2017-03-28 21:10:00
78078    28136    641    2017-03-28 16:44:00    2017-03-28 16:44:00
78079    28136    657    2017-03-28 07:47:00    2017-03-28 07:47:00
78080    28136    825    2017-03-28 06:31:00    2017-03-28 06:31:00
78081    28136    541    2017-03-28 20:16:00    2017-03-28 20:16:00
78082    28136    956    2017-03-28 10:41:00    2017-03-28 10:41:00
78083    28137    940    2017-03-28 19:58:00    2017-03-28 19:58:00
78084    28137    924    2017-03-28 23:55:00    2017-03-28 23:55:00
78085    28137    564    2017-03-28 09:40:00    2017-03-28 09:40:00
78086    28137    934    2017-03-28 18:49:00    2017-03-28 18:49:00
78087    28137    546    2017-03-28 12:24:00    2017-03-28 12:24:00
78088    28138    740    2017-03-28 15:13:00    2017-03-28 15:13:00
78089    28138    692    2017-03-28 04:28:00    2017-03-28 04:28:00
78090    28138    764    2017-03-28 05:22:00    2017-03-28 05:22:00
78091    28138    960    2017-03-28 10:11:00    2017-03-28 10:11:00
78092    28138    885    2017-03-28 14:29:00    2017-03-28 14:29:00
78093    28139    648    2017-03-28 12:13:00    2017-03-28 12:13:00
78094    28139    674    2017-03-28 12:55:00    2017-03-28 12:55:00
78095    28139    764    2017-03-28 13:13:00    2017-03-28 13:13:00
78096    28139    845    2017-03-28 11:20:00    2017-03-28 11:20:00
78097    28139    868    2017-03-28 20:59:00    2017-03-28 20:59:00
78098    28140    729    2017-03-28 23:45:00    2017-03-28 23:45:00
78099    28140    845    2017-03-28 14:53:00    2017-03-28 14:53:00
78100    28140    910    2017-03-28 10:51:00    2017-03-28 10:51:00
78101    28140    670    2017-03-28 12:22:00    2017-03-28 12:22:00
78102    28140    715    2017-03-28 04:13:00    2017-03-28 04:13:00
78103    28141    937    2017-03-28 14:25:00    2017-03-28 14:25:00
78104    28141    628    2017-03-28 12:00:00    2017-03-28 12:00:00
78105    28141    943    2017-03-28 16:31:00    2017-03-28 16:31:00
78106    28141    852    2017-03-28 22:04:00    2017-03-28 22:04:00
78107    28141    677    2017-03-28 05:57:00    2017-03-28 05:57:00
78108    28142    587    2017-03-28 20:47:00    2017-03-28 20:47:00
78109    28142    611    2017-03-28 05:08:00    2017-03-28 05:08:00
78110    28142    536    2017-03-28 08:17:00    2017-03-28 08:17:00
78111    28142    599    2017-03-28 02:00:00    2017-03-28 02:00:00
78112    28142    859    2017-03-28 19:08:00    2017-03-28 19:08:00
78113    28143    923    2017-03-28 21:34:00    2017-03-28 21:34:00
78114    28143    905    2017-03-28 14:12:00    2017-03-28 14:12:00
78115    28143    679    2017-03-28 07:42:00    2017-03-28 07:42:00
78116    28143    790    2017-03-28 04:25:00    2017-03-28 04:25:00
78117    28143    666    2017-03-28 06:21:00    2017-03-28 06:21:00
78118    28144    863    2017-03-28 14:42:00    2017-03-28 14:42:00
78119    28144    571    2017-03-28 20:18:00    2017-03-28 20:18:00
78120    28144    637    2017-03-28 16:56:00    2017-03-28 16:56:00
78121    28144    734    2017-03-28 13:45:00    2017-03-28 13:45:00
78122    28144    780    2017-03-28 08:44:00    2017-03-28 08:44:00
78123    28145    475    2017-03-28 20:21:00    2017-03-28 20:21:00
78124    28145    746    2017-03-28 09:14:00    2017-03-28 09:14:00
78125    28145    810    2017-03-28 22:05:00    2017-03-28 22:05:00
78126    28145    762    2017-03-28 01:05:00    2017-03-28 01:05:00
78127    28145    599    2017-03-28 15:34:00    2017-03-28 15:34:00
78128    28146    750    2017-03-28 21:11:00    2017-03-28 21:11:00
78129    28146    754    2017-03-28 12:59:00    2017-03-28 12:59:00
78130    28146    652    2017-03-28 13:03:00    2017-03-28 13:03:00
78131    28146    542    2017-03-28 17:36:00    2017-03-28 17:36:00
78132    28146    642    2017-03-28 18:57:00    2017-03-28 18:57:00
78133    28147    681    2017-03-28 06:28:00    2017-03-28 06:28:00
78134    28147    876    2017-03-28 20:00:00    2017-03-28 20:00:00
78135    28147    924    2017-03-28 07:12:00    2017-03-28 07:12:00
78136    28147    630    2017-03-28 03:41:00    2017-03-28 03:41:00
78137    28147    667    2017-03-28 05:59:00    2017-03-28 05:59:00
78138    28148    827    2017-03-28 03:37:00    2017-03-28 03:37:00
78139    28148    650    2017-03-28 23:15:00    2017-03-28 23:15:00
78140    28148    737    2017-03-28 11:00:00    2017-03-28 11:00:00
78141    28148    509    2017-03-28 15:24:00    2017-03-28 15:24:00
78142    28148    768    2017-03-28 12:12:00    2017-03-28 12:12:00
78143    28149    790    2017-03-28 07:31:00    2017-03-28 07:31:00
78144    28149    659    2017-03-28 07:48:00    2017-03-28 07:48:00
78145    28149    592    2017-03-28 17:09:00    2017-03-28 17:09:00
78146    28149    803    2017-03-28 10:59:00    2017-03-28 10:59:00
78147    28149    716    2017-03-28 08:45:00    2017-03-28 08:45:00
78148    28150    597    2017-03-28 22:49:00    2017-03-28 22:49:00
78149    28150    873    2017-03-28 04:51:00    2017-03-28 04:51:00
78150    28150    766    2017-03-28 05:09:00    2017-03-28 05:09:00
78151    28150    872    2017-03-28 23:47:00    2017-03-28 23:47:00
78152    28150    686    2017-03-28 13:39:00    2017-03-28 13:39:00
78153    28151    609    2017-03-28 21:30:00    2017-03-28 21:30:00
78154    28151    632    2017-03-28 10:17:00    2017-03-28 10:17:00
78155    28151    875    2017-03-28 10:32:00    2017-03-28 10:32:00
78156    28151    901    2017-03-28 10:07:00    2017-03-28 10:07:00
78157    28151    489    2017-03-28 16:47:00    2017-03-28 16:47:00
78158    28152    554    2017-03-29 06:15:00    2017-03-29 06:15:00
78159    28152    905    2017-03-29 13:52:00    2017-03-29 13:52:00
78160    28152    678    2017-03-29 16:49:00    2017-03-29 16:49:00
78161    28152    634    2017-03-29 01:55:00    2017-03-29 01:55:00
78162    28152    789    2017-03-29 22:34:00    2017-03-29 22:34:00
78163    28153    771    2017-03-29 06:10:00    2017-03-29 06:10:00
78164    28153    794    2017-03-29 18:58:00    2017-03-29 18:58:00
78165    28153    523    2017-03-29 06:06:00    2017-03-29 06:06:00
78166    28153    542    2017-03-29 23:11:00    2017-03-29 23:11:00
78167    28153    722    2017-03-29 11:26:00    2017-03-29 11:26:00
78168    28154    750    2017-03-29 04:06:00    2017-03-29 04:06:00
78169    28154    710    2017-03-29 13:19:00    2017-03-29 13:19:00
78170    28154    851    2017-03-29 08:12:00    2017-03-29 08:12:00
78171    28154    562    2017-03-29 02:14:00    2017-03-29 02:14:00
78172    28154    805    2017-03-29 19:20:00    2017-03-29 19:20:00
78173    28155    538    2017-03-29 02:03:00    2017-03-29 02:03:00
78174    28155    507    2017-03-29 15:59:00    2017-03-29 15:59:00
78175    28155    860    2017-03-29 10:32:00    2017-03-29 10:32:00
78176    28155    706    2017-03-29 06:51:00    2017-03-29 06:51:00
78177    28155    806    2017-03-29 13:11:00    2017-03-29 13:11:00
78178    28156    914    2017-03-29 16:02:00    2017-03-29 16:02:00
78179    28156    795    2017-03-29 19:01:00    2017-03-29 19:01:00
78180    28156    649    2017-03-29 03:14:00    2017-03-29 03:14:00
78181    28156    579    2017-03-29 03:02:00    2017-03-29 03:02:00
78182    28156    821    2017-03-29 11:21:00    2017-03-29 11:21:00
78183    28157    840    2017-03-29 16:00:00    2017-03-29 16:00:00
78184    28157    630    2017-03-29 04:52:00    2017-03-29 04:52:00
78185    28157    869    2017-03-29 10:54:00    2017-03-29 10:54:00
78186    28157    682    2017-03-29 09:10:00    2017-03-29 09:10:00
78187    28157    661    2017-03-29 07:24:00    2017-03-29 07:24:00
78188    28158    872    2017-03-29 03:23:00    2017-03-29 03:23:00
78189    28158    483    2017-03-29 23:38:00    2017-03-29 23:38:00
78190    28158    825    2017-03-29 07:55:00    2017-03-29 07:55:00
78191    28158    637    2017-03-29 12:55:00    2017-03-29 12:55:00
78192    28158    829    2017-03-29 06:32:00    2017-03-29 06:32:00
78193    28159    940    2017-03-29 16:19:00    2017-03-29 16:19:00
78194    28159    673    2017-03-29 17:01:00    2017-03-29 17:01:00
78195    28159    827    2017-03-29 05:21:00    2017-03-29 05:21:00
78196    28159    831    2017-03-29 07:03:00    2017-03-29 07:03:00
78197    28159    544    2017-03-29 13:46:00    2017-03-29 13:46:00
78198    28160    592    2017-03-29 18:48:00    2017-03-29 18:48:00
78199    28160    888    2017-03-29 23:51:00    2017-03-29 23:51:00
78200    28160    729    2017-03-29 09:06:00    2017-03-29 09:06:00
78201    28160    479    2017-03-29 03:00:00    2017-03-29 03:00:00
78202    28160    929    2017-03-29 07:57:00    2017-03-29 07:57:00
78203    28161    530    2017-03-29 22:08:00    2017-03-29 22:08:00
78204    28161    794    2017-03-29 03:21:00    2017-03-29 03:21:00
78205    28161    823    2017-03-29 21:46:00    2017-03-29 21:46:00
78206    28161    818    2017-03-29 02:57:00    2017-03-29 02:57:00
78207    28161    469    2017-03-29 01:16:00    2017-03-29 01:16:00
78208    28162    652    2017-03-29 18:49:00    2017-03-29 18:49:00
78209    28162    896    2017-03-29 16:16:00    2017-03-29 16:16:00
78210    28162    948    2017-03-29 16:22:00    2017-03-29 16:22:00
78211    28162    947    2017-03-29 06:03:00    2017-03-29 06:03:00
78212    28162    676    2017-03-29 17:23:00    2017-03-29 17:23:00
78213    28163    827    2017-03-29 10:30:00    2017-03-29 10:30:00
78214    28163    961    2017-03-29 05:41:00    2017-03-29 05:41:00
78215    28163    769    2017-03-29 07:42:00    2017-03-29 07:42:00
78216    28163    595    2017-03-29 15:28:00    2017-03-29 15:28:00
78217    28163    772    2017-03-29 05:27:00    2017-03-29 05:27:00
78218    28164    916    2017-03-29 03:27:00    2017-03-29 03:27:00
78219    28164    877    2017-03-29 18:09:00    2017-03-29 18:09:00
78220    28164    694    2017-03-29 23:44:00    2017-03-29 23:44:00
78221    28164    601    2017-03-29 20:24:00    2017-03-29 20:24:00
78222    28164    851    2017-03-29 07:08:00    2017-03-29 07:08:00
78223    28165    743    2017-03-29 15:41:00    2017-03-29 15:41:00
78224    28165    807    2017-03-29 12:16:00    2017-03-29 12:16:00
78225    28165    829    2017-03-29 09:19:00    2017-03-29 09:19:00
78226    28165    711    2017-03-29 11:02:00    2017-03-29 11:02:00
78227    28165    488    2017-03-29 07:04:00    2017-03-29 07:04:00
78228    28166    932    2017-03-29 03:54:00    2017-03-29 03:54:00
78229    28166    504    2017-03-29 18:04:00    2017-03-29 18:04:00
78230    28166    906    2017-03-29 09:30:00    2017-03-29 09:30:00
78231    28166    907    2017-03-29 09:00:00    2017-03-29 09:00:00
78232    28166    829    2017-03-29 18:59:00    2017-03-29 18:59:00
78233    28167    898    2017-03-29 05:32:00    2017-03-29 05:32:00
78234    28167    792    2017-03-29 12:08:00    2017-03-29 12:08:00
78235    28167    950    2017-03-29 15:12:00    2017-03-29 15:12:00
78236    28167    593    2017-03-29 17:15:00    2017-03-29 17:15:00
78237    28167    766    2017-03-29 05:22:00    2017-03-29 05:22:00
78238    28168    517    2017-03-29 03:53:00    2017-03-29 03:53:00
78239    28168    794    2017-03-29 10:35:00    2017-03-29 10:35:00
78240    28168    848    2017-03-29 09:00:00    2017-03-29 09:00:00
78241    28168    521    2017-03-29 12:08:00    2017-03-29 12:08:00
78242    28168    730    2017-03-29 11:00:00    2017-03-29 11:00:00
78243    28169    510    2017-03-29 13:43:00    2017-03-29 13:43:00
78244    28169    886    2017-03-29 10:50:00    2017-03-29 10:50:00
78245    28169    805    2017-03-29 15:37:00    2017-03-29 15:37:00
78246    28169    477    2017-03-29 14:00:00    2017-03-29 14:00:00
78247    28169    522    2017-03-29 13:30:00    2017-03-29 13:30:00
78248    28170    611    2017-03-29 01:38:00    2017-03-29 01:38:00
78249    28170    762    2017-03-29 16:01:00    2017-03-29 16:01:00
78250    28170    634    2017-03-29 11:16:00    2017-03-29 11:16:00
78251    28170    499    2017-03-29 01:09:00    2017-03-29 01:09:00
78252    28170    487    2017-03-29 21:09:00    2017-03-29 21:09:00
78253    28171    651    2017-03-29 20:00:00    2017-03-29 20:00:00
78254    28171    717    2017-03-29 07:43:00    2017-03-29 07:43:00
78255    28171    655    2017-03-29 16:10:00    2017-03-29 16:10:00
78256    28171    876    2017-03-29 05:48:00    2017-03-29 05:48:00
78257    28171    549    2017-03-29 01:03:00    2017-03-29 01:03:00
78258    28172    714    2017-03-29 21:06:00    2017-03-29 21:06:00
78259    28172    787    2017-03-29 04:14:00    2017-03-29 04:14:00
78260    28172    628    2017-03-29 10:45:00    2017-03-29 10:45:00
78261    28172    701    2017-03-29 14:45:00    2017-03-29 14:45:00
78262    28172    760    2017-03-29 19:12:00    2017-03-29 19:12:00
78263    28173    684    2017-03-29 14:22:00    2017-03-29 14:22:00
78264    28173    692    2017-03-29 23:27:00    2017-03-29 23:27:00
78265    28173    605    2017-03-29 17:57:00    2017-03-29 17:57:00
78266    28173    595    2017-03-29 08:35:00    2017-03-29 08:35:00
78267    28173    813    2017-03-29 13:52:00    2017-03-29 13:52:00
78268    28174    766    2017-03-29 14:41:00    2017-03-29 14:41:00
78269    28174    850    2017-03-29 08:02:00    2017-03-29 08:02:00
78270    28174    624    2017-03-29 04:37:00    2017-03-29 04:37:00
78271    28174    934    2017-03-29 05:15:00    2017-03-29 05:15:00
78272    28174    763    2017-03-29 14:53:00    2017-03-29 14:53:00
78273    28175    959    2017-03-29 17:24:00    2017-03-29 17:24:00
78274    28175    720    2017-03-29 16:34:00    2017-03-29 16:34:00
78275    28175    665    2017-03-29 15:58:00    2017-03-29 15:58:00
78276    28175    571    2017-03-29 15:48:00    2017-03-29 15:48:00
78277    28175    733    2017-03-29 20:43:00    2017-03-29 20:43:00
78278    28176    772    2017-03-29 04:06:00    2017-03-29 04:06:00
78279    28176    696    2017-03-29 05:37:00    2017-03-29 05:37:00
78280    28176    523    2017-03-29 16:18:00    2017-03-29 16:18:00
78281    28176    943    2017-03-29 12:35:00    2017-03-29 12:35:00
78282    28176    497    2017-03-29 23:37:00    2017-03-29 23:37:00
78283    28177    553    2017-03-29 06:20:00    2017-03-29 06:20:00
78284    28177    950    2017-03-29 12:01:00    2017-03-29 12:01:00
78285    28177    565    2017-03-29 12:44:00    2017-03-29 12:44:00
78286    28177    756    2017-03-29 06:38:00    2017-03-29 06:38:00
78287    28177    548    2017-03-29 23:21:00    2017-03-29 23:21:00
78288    28178    899    2017-03-29 11:47:00    2017-03-29 11:47:00
78289    28178    935    2017-03-29 06:46:00    2017-03-29 06:46:00
78290    28178    630    2017-03-29 14:54:00    2017-03-29 14:54:00
78291    28178    672    2017-03-29 18:30:00    2017-03-29 18:30:00
78292    28178    949    2017-03-29 08:47:00    2017-03-29 08:47:00
78293    28179    741    2017-03-29 19:10:00    2017-03-29 19:10:00
78294    28179    508    2017-03-29 14:45:00    2017-03-29 14:45:00
78295    28179    779    2017-03-29 12:25:00    2017-03-29 12:25:00
78296    28179    577    2017-03-29 18:04:00    2017-03-29 18:04:00
78297    28179    820    2017-03-29 04:53:00    2017-03-29 04:53:00
78298    28180    601    2017-03-29 07:05:00    2017-03-29 07:05:00
78299    28180    683    2017-03-29 15:24:00    2017-03-29 15:24:00
78300    28180    725    2017-03-29 20:06:00    2017-03-29 20:06:00
78301    28180    866    2017-03-29 03:32:00    2017-03-29 03:32:00
78302    28180    955    2017-03-29 06:24:00    2017-03-29 06:24:00
78303    28181    743    2017-03-29 05:17:00    2017-03-29 05:17:00
78304    28181    517    2017-03-29 20:40:00    2017-03-29 20:40:00
78305    28181    676    2017-03-29 04:33:00    2017-03-29 04:33:00
78306    28181    533    2017-03-29 22:40:00    2017-03-29 22:40:00
78307    28181    542    2017-03-29 16:12:00    2017-03-29 16:12:00
78308    28182    558    2017-03-29 10:14:00    2017-03-29 10:14:00
78309    28182    654    2017-03-29 14:32:00    2017-03-29 14:32:00
78310    28182    944    2017-03-29 03:00:00    2017-03-29 03:00:00
78311    28182    495    2017-03-29 16:26:00    2017-03-29 16:26:00
78312    28182    937    2017-03-29 12:15:00    2017-03-29 12:15:00
78313    28183    611    2017-03-29 23:04:00    2017-03-29 23:04:00
78314    28183    724    2017-03-29 05:53:00    2017-03-29 05:53:00
78315    28183    555    2017-03-29 01:59:00    2017-03-29 01:59:00
78316    28183    486    2017-03-29 10:18:00    2017-03-29 10:18:00
78317    28183    648    2017-03-29 07:40:00    2017-03-29 07:40:00
78318    28184    860    2017-03-29 01:50:00    2017-03-29 01:50:00
78319    28184    723    2017-03-29 21:18:00    2017-03-29 21:18:00
78320    28184    730    2017-03-29 17:37:00    2017-03-29 17:37:00
78321    28184    549    2017-03-29 19:10:00    2017-03-29 19:10:00
78322    28184    731    2017-03-29 04:59:00    2017-03-29 04:59:00
78323    28185    821    2017-03-29 07:03:00    2017-03-29 07:03:00
78324    28185    909    2017-03-29 04:24:00    2017-03-29 04:24:00
78325    28185    473    2017-03-29 15:30:00    2017-03-29 15:30:00
78326    28185    839    2017-03-29 08:00:00    2017-03-29 08:00:00
78327    28185    701    2017-03-29 06:33:00    2017-03-29 06:33:00
78328    28186    609    2017-03-29 22:36:00    2017-03-29 22:36:00
78329    28186    650    2017-03-29 08:24:00    2017-03-29 08:24:00
78330    28186    618    2017-03-29 22:11:00    2017-03-29 22:11:00
78331    28186    468    2017-03-29 23:17:00    2017-03-29 23:17:00
78332    28186    712    2017-03-29 10:07:00    2017-03-29 10:07:00
78333    28187    924    2017-03-29 17:59:00    2017-03-29 17:59:00
78334    28187    912    2017-03-29 01:17:00    2017-03-29 01:17:00
78335    28187    880    2017-03-29 13:43:00    2017-03-29 13:43:00
78336    28187    890    2017-03-29 14:33:00    2017-03-29 14:33:00
78337    28187    712    2017-03-29 08:36:00    2017-03-29 08:36:00
78338    28188    625    2017-03-29 17:04:00    2017-03-29 17:04:00
78339    28188    859    2017-03-29 05:28:00    2017-03-29 05:28:00
78340    28188    557    2017-03-29 14:57:00    2017-03-29 14:57:00
78341    28188    496    2017-03-29 02:59:00    2017-03-29 02:59:00
78342    28188    664    2017-03-29 06:59:00    2017-03-29 06:59:00
78343    28189    513    2017-03-29 12:41:00    2017-03-29 12:41:00
78344    28189    842    2017-03-29 04:20:00    2017-03-29 04:20:00
78345    28189    629    2017-03-29 16:15:00    2017-03-29 16:15:00
78346    28189    535    2017-03-29 13:33:00    2017-03-29 13:33:00
78347    28189    592    2017-03-29 18:33:00    2017-03-29 18:33:00
78348    28190    491    2017-03-29 07:24:00    2017-03-29 07:24:00
78349    28190    862    2017-03-29 04:32:00    2017-03-29 04:32:00
78350    28190    872    2017-03-29 18:11:00    2017-03-29 18:11:00
78351    28190    750    2017-03-29 02:16:00    2017-03-29 02:16:00
78352    28190    499    2017-03-29 06:13:00    2017-03-29 06:13:00
78353    28191    591    2017-03-29 14:07:00    2017-03-29 14:07:00
78354    28191    630    2017-03-29 18:18:00    2017-03-29 18:18:00
78355    28191    699    2017-03-29 15:54:00    2017-03-29 15:54:00
78356    28191    705    2017-03-29 19:55:00    2017-03-29 19:55:00
78357    28191    483    2017-03-29 12:23:00    2017-03-29 12:23:00
78358    28192    700    2017-03-29 05:14:00    2017-03-29 05:14:00
78359    28192    532    2017-03-29 22:07:00    2017-03-29 22:07:00
78360    28192    895    2017-03-29 16:53:00    2017-03-29 16:53:00
78361    28192    804    2017-03-29 04:59:00    2017-03-29 04:59:00
78362    28192    528    2017-03-29 14:58:00    2017-03-29 14:58:00
78363    28193    808    2017-03-29 10:07:00    2017-03-29 10:07:00
78364    28193    867    2017-03-29 12:44:00    2017-03-29 12:44:00
78365    28193    791    2017-03-29 17:30:00    2017-03-29 17:30:00
78366    28193    848    2017-03-29 10:43:00    2017-03-29 10:43:00
78367    28193    713    2017-03-29 05:17:00    2017-03-29 05:17:00
78368    28194    652    2017-03-29 21:32:00    2017-03-29 21:32:00
78369    28194    950    2017-03-29 14:32:00    2017-03-29 14:32:00
78370    28194    831    2017-03-29 23:00:00    2017-03-29 23:00:00
78371    28194    601    2017-03-29 22:29:00    2017-03-29 22:29:00
78372    28194    665    2017-03-29 18:18:00    2017-03-29 18:18:00
78373    28195    475    2017-03-29 18:24:00    2017-03-29 18:24:00
78374    28195    749    2017-03-29 16:03:00    2017-03-29 16:03:00
78375    28195    856    2017-03-29 08:03:00    2017-03-29 08:03:00
78376    28195    882    2017-03-29 02:40:00    2017-03-29 02:40:00
78377    28195    838    2017-03-29 04:02:00    2017-03-29 04:02:00
78378    28196    613    2017-03-29 08:54:00    2017-03-29 08:54:00
78379    28196    757    2017-03-29 13:22:00    2017-03-29 13:22:00
78380    28196    954    2017-03-29 08:46:00    2017-03-29 08:46:00
78381    28196    712    2017-03-29 19:30:00    2017-03-29 19:30:00
78382    28196    645    2017-03-29 15:41:00    2017-03-29 15:41:00
78383    28197    729    2017-03-29 13:50:00    2017-03-29 13:50:00
78384    28197    790    2017-03-29 23:27:00    2017-03-29 23:27:00
78385    28197    799    2017-03-29 03:20:00    2017-03-29 03:20:00
78386    28197    677    2017-03-29 18:48:00    2017-03-29 18:48:00
78387    28197    841    2017-03-29 09:53:00    2017-03-29 09:53:00
78388    28198    563    2017-03-29 03:57:00    2017-03-29 03:57:00
78389    28198    819    2017-03-29 21:11:00    2017-03-29 21:11:00
78390    28198    485    2017-03-29 12:58:00    2017-03-29 12:58:00
78391    28198    835    2017-03-29 18:01:00    2017-03-29 18:01:00
78392    28198    597    2017-03-29 20:46:00    2017-03-29 20:46:00
78393    28199    802    2017-03-29 08:02:00    2017-03-29 08:02:00
78394    28199    641    2017-03-29 19:29:00    2017-03-29 19:29:00
78395    28199    532    2017-03-29 20:03:00    2017-03-29 20:03:00
78396    28199    656    2017-03-29 13:27:00    2017-03-29 13:27:00
78397    28199    826    2017-03-29 16:16:00    2017-03-29 16:16:00
78398    28200    810    2017-03-29 13:32:00    2017-03-29 13:32:00
78399    28200    566    2017-03-29 19:06:00    2017-03-29 19:06:00
78400    28200    889    2017-03-29 07:50:00    2017-03-29 07:50:00
78401    28200    674    2017-03-29 14:04:00    2017-03-29 14:04:00
78402    28200    716    2017-03-29 23:03:00    2017-03-29 23:03:00
78403    28201    466    2017-03-29 02:48:00    2017-03-29 02:48:00
78404    28201    725    2017-03-29 12:57:00    2017-03-29 12:57:00
78405    28201    740    2017-03-29 05:51:00    2017-03-29 05:51:00
78406    28201    522    2017-03-29 03:41:00    2017-03-29 03:41:00
78407    28201    573    2017-03-29 16:53:00    2017-03-29 16:53:00
78408    28202    740    2017-03-29 07:43:00    2017-03-29 07:43:00
78409    28202    839    2017-03-29 03:49:00    2017-03-29 03:49:00
78410    28202    692    2017-03-29 13:43:00    2017-03-29 13:43:00
78411    28202    804    2017-03-29 02:53:00    2017-03-29 02:53:00
78412    28202    847    2017-03-29 16:29:00    2017-03-29 16:29:00
78413    28203    743    2017-03-29 09:42:00    2017-03-29 09:42:00
78414    28203    611    2017-03-29 14:30:00    2017-03-29 14:30:00
78415    28203    789    2017-03-29 13:12:00    2017-03-29 13:12:00
78416    28203    922    2017-03-29 23:06:00    2017-03-29 23:06:00
78417    28203    898    2017-03-29 14:03:00    2017-03-29 14:03:00
78418    28204    716    2017-03-29 18:08:00    2017-03-29 18:08:00
78419    28204    923    2017-03-29 03:03:00    2017-03-29 03:03:00
78420    28204    937    2017-03-29 16:36:00    2017-03-29 16:36:00
78421    28204    573    2017-03-29 18:57:00    2017-03-29 18:57:00
78422    28204    599    2017-03-29 22:45:00    2017-03-29 22:45:00
78423    28205    742    2017-03-29 08:10:00    2017-03-29 08:10:00
78424    28205    855    2017-03-29 04:26:00    2017-03-29 04:26:00
78425    28205    835    2017-03-29 09:02:00    2017-03-29 09:02:00
78426    28205    727    2017-03-29 11:40:00    2017-03-29 11:40:00
78427    28205    726    2017-03-29 16:30:00    2017-03-29 16:30:00
78428    28206    770    2017-03-29 12:57:00    2017-03-29 12:57:00
78429    28206    842    2017-03-29 13:23:00    2017-03-29 13:23:00
78430    28206    528    2017-03-29 23:08:00    2017-03-29 23:08:00
78431    28206    640    2017-03-29 23:57:00    2017-03-29 23:57:00
78432    28206    805    2017-03-29 13:03:00    2017-03-29 13:03:00
78433    28207    832    2017-03-29 13:14:00    2017-03-29 13:14:00
78434    28207    847    2017-03-29 12:40:00    2017-03-29 12:40:00
78435    28207    841    2017-03-29 03:02:00    2017-03-29 03:02:00
78436    28207    523    2017-03-29 22:47:00    2017-03-29 22:47:00
78437    28207    598    2017-03-29 02:20:00    2017-03-29 02:20:00
78438    28208    769    2017-03-29 09:07:00    2017-03-29 09:07:00
78439    28208    719    2017-03-29 07:35:00    2017-03-29 07:35:00
78440    28208    958    2017-03-29 10:06:00    2017-03-29 10:06:00
78441    28208    825    2017-03-29 20:37:00    2017-03-29 20:37:00
78442    28208    822    2017-03-29 19:02:00    2017-03-29 19:02:00
78443    28209    474    2017-03-29 21:18:00    2017-03-29 21:18:00
78444    28209    634    2017-03-29 07:50:00    2017-03-29 07:50:00
78445    28209    504    2017-03-29 14:16:00    2017-03-29 14:16:00
78446    28209    465    2017-03-29 10:42:00    2017-03-29 10:42:00
78447    28209    477    2017-03-29 14:28:00    2017-03-29 14:28:00
78448    28210    894    2017-03-29 15:17:00    2017-03-29 15:17:00
78449    28210    771    2017-03-29 15:01:00    2017-03-29 15:01:00
78450    28210    555    2017-03-29 20:01:00    2017-03-29 20:01:00
78451    28210    694    2017-03-29 03:33:00    2017-03-29 03:33:00
78452    28210    719    2017-03-29 08:53:00    2017-03-29 08:53:00
78453    28211    897    2017-03-29 17:57:00    2017-03-29 17:57:00
78454    28211    567    2017-03-29 13:46:00    2017-03-29 13:46:00
78455    28211    824    2017-03-29 22:50:00    2017-03-29 22:50:00
78456    28211    548    2017-03-29 13:37:00    2017-03-29 13:37:00
78457    28211    504    2017-03-29 11:40:00    2017-03-29 11:40:00
78458    28212    651    2017-03-29 09:20:00    2017-03-29 09:20:00
78459    28212    574    2017-03-29 22:16:00    2017-03-29 22:16:00
78460    28212    749    2017-03-29 17:51:00    2017-03-29 17:51:00
78461    28212    819    2017-03-29 04:01:00    2017-03-29 04:01:00
78462    28212    893    2017-03-29 22:54:00    2017-03-29 22:54:00
78463    28213    551    2017-03-29 23:33:00    2017-03-29 23:33:00
78464    28213    813    2017-03-29 14:55:00    2017-03-29 14:55:00
78465    28213    817    2017-03-29 08:54:00    2017-03-29 08:54:00
78466    28213    657    2017-03-29 05:28:00    2017-03-29 05:28:00
78467    28213    631    2017-03-29 16:25:00    2017-03-29 16:25:00
78468    28214    756    2017-03-29 09:43:00    2017-03-29 09:43:00
78469    28214    557    2017-03-29 23:52:00    2017-03-29 23:52:00
78470    28214    616    2017-03-29 20:25:00    2017-03-29 20:25:00
78471    28214    667    2017-03-29 08:21:00    2017-03-29 08:21:00
78472    28214    587    2017-03-29 12:48:00    2017-03-29 12:48:00
78473    28215    864    2017-03-29 20:41:00    2017-03-29 20:41:00
78474    28215    662    2017-03-29 17:09:00    2017-03-29 17:09:00
78475    28215    529    2017-03-29 08:23:00    2017-03-29 08:23:00
78476    28215    547    2017-03-29 23:31:00    2017-03-29 23:31:00
78477    28215    952    2017-03-29 04:49:00    2017-03-29 04:49:00
78478    28216    857    2017-03-29 10:08:00    2017-03-29 10:08:00
78479    28216    898    2017-03-29 10:54:00    2017-03-29 10:54:00
78480    28216    850    2017-03-29 06:47:00    2017-03-29 06:47:00
78481    28216    936    2017-03-29 21:18:00    2017-03-29 21:18:00
78482    28216    487    2017-03-29 21:43:00    2017-03-29 21:43:00
78483    28217    514    2017-03-29 14:10:00    2017-03-29 14:10:00
78484    28217    780    2017-03-29 04:12:00    2017-03-29 04:12:00
78485    28217    653    2017-03-29 06:01:00    2017-03-29 06:01:00
78486    28217    861    2017-03-29 12:58:00    2017-03-29 12:58:00
78487    28217    754    2017-03-29 05:44:00    2017-03-29 05:44:00
78488    28218    660    2017-03-29 06:18:00    2017-03-29 06:18:00
78489    28218    703    2017-03-29 14:04:00    2017-03-29 14:04:00
78490    28218    484    2017-03-29 20:01:00    2017-03-29 20:01:00
78491    28218    761    2017-03-29 12:28:00    2017-03-29 12:28:00
78492    28218    892    2017-03-29 10:51:00    2017-03-29 10:51:00
78493    28219    946    2017-03-29 12:10:00    2017-03-29 12:10:00
78494    28219    537    2017-03-29 05:04:00    2017-03-29 05:04:00
78495    28219    560    2017-03-29 13:27:00    2017-03-29 13:27:00
78496    28219    714    2017-03-29 06:48:00    2017-03-29 06:48:00
78497    28219    943    2017-03-29 10:39:00    2017-03-29 10:39:00
78498    28220    563    2017-03-29 12:18:00    2017-03-29 12:18:00
78499    28220    569    2017-03-29 14:40:00    2017-03-29 14:40:00
78500    28220    581    2017-03-29 22:48:00    2017-03-29 22:48:00
78501    28220    857    2017-03-29 12:14:00    2017-03-29 12:14:00
78502    28220    489    2017-03-29 12:54:00    2017-03-29 12:54:00
78503    28221    557    2017-03-29 10:51:00    2017-03-29 10:51:00
78504    28221    604    2017-03-29 15:48:00    2017-03-29 15:48:00
78505    28221    705    2017-03-29 04:15:00    2017-03-29 04:15:00
78506    28221    711    2017-03-29 14:49:00    2017-03-29 14:49:00
78507    28221    809    2017-03-29 02:42:00    2017-03-29 02:42:00
78508    28222    656    2017-03-29 03:46:00    2017-03-29 03:46:00
78509    28222    838    2017-03-29 03:32:00    2017-03-29 03:32:00
78510    28222    850    2017-03-29 12:32:00    2017-03-29 12:32:00
78511    28222    721    2017-03-29 11:49:00    2017-03-29 11:49:00
78512    28222    567    2017-03-29 11:42:00    2017-03-29 11:42:00
78513    28223    736    2017-03-29 16:36:00    2017-03-29 16:36:00
78514    28223    613    2017-03-29 16:07:00    2017-03-29 16:07:00
78515    28223    831    2017-03-29 13:07:00    2017-03-29 13:07:00
78516    28223    826    2017-03-29 15:33:00    2017-03-29 15:33:00
78517    28223    810    2017-03-29 16:10:00    2017-03-29 16:10:00
78518    28224    566    2017-03-29 01:41:00    2017-03-29 01:41:00
78519    28224    821    2017-03-29 05:06:00    2017-03-29 05:06:00
78520    28224    874    2017-03-29 05:31:00    2017-03-29 05:31:00
78521    28224    754    2017-03-29 19:11:00    2017-03-29 19:11:00
78522    28224    917    2017-03-29 12:05:00    2017-03-29 12:05:00
78523    28225    493    2017-03-29 03:25:00    2017-03-29 03:25:00
78524    28225    895    2017-03-29 12:23:00    2017-03-29 12:23:00
78525    28225    696    2017-03-29 20:26:00    2017-03-29 20:26:00
78526    28225    854    2017-03-29 21:12:00    2017-03-29 21:12:00
78527    28225    533    2017-03-29 12:17:00    2017-03-29 12:17:00
78528    28226    820    2017-03-29 16:18:00    2017-03-29 16:18:00
78529    28226    627    2017-03-29 14:16:00    2017-03-29 14:16:00
78530    28226    675    2017-03-29 19:04:00    2017-03-29 19:04:00
78531    28226    749    2017-03-29 10:12:00    2017-03-29 10:12:00
78532    28226    678    2017-03-29 03:08:00    2017-03-29 03:08:00
78533    28227    877    2017-03-29 19:23:00    2017-03-29 19:23:00
78534    28227    678    2017-03-30 00:00:00    2017-03-30 00:00:00
78535    28227    732    2017-03-29 18:14:00    2017-03-29 18:14:00
78536    28227    931    2017-03-29 09:51:00    2017-03-29 09:51:00
78537    28227    548    2017-03-29 11:26:00    2017-03-29 11:26:00
78538    28228    655    2017-03-29 02:41:00    2017-03-29 02:41:00
78539    28228    877    2017-03-29 16:30:00    2017-03-29 16:30:00
78540    28228    613    2017-03-29 19:37:00    2017-03-29 19:37:00
78541    28228    522    2017-03-29 02:26:00    2017-03-29 02:26:00
78542    28228    840    2017-03-29 13:53:00    2017-03-29 13:53:00
78543    28229    800    2017-03-29 10:39:00    2017-03-29 10:39:00
78544    28229    876    2017-03-29 16:22:00    2017-03-29 16:22:00
78545    28229    903    2017-03-29 02:41:00    2017-03-29 02:41:00
78546    28229    893    2017-03-29 12:32:00    2017-03-29 12:32:00
78547    28229    702    2017-03-29 18:28:00    2017-03-29 18:28:00
78548    28230    510    2017-03-29 02:01:00    2017-03-29 02:01:00
78549    28230    474    2017-03-29 18:38:00    2017-03-29 18:38:00
78550    28230    800    2017-03-29 05:17:00    2017-03-29 05:17:00
78551    28230    547    2017-03-29 11:27:00    2017-03-29 11:27:00
78552    28230    939    2017-03-29 02:28:00    2017-03-29 02:28:00
78553    28231    476    2017-03-29 13:29:00    2017-03-29 13:29:00
78554    28231    467    2017-03-29 18:34:00    2017-03-29 18:34:00
78555    28231    567    2017-03-29 21:17:00    2017-03-29 21:17:00
78556    28231    517    2017-03-29 05:28:00    2017-03-29 05:28:00
78557    28231    774    2017-03-29 18:28:00    2017-03-29 18:28:00
78558    28232    571    2017-03-29 11:49:00    2017-03-29 11:49:00
78559    28232    533    2017-03-29 04:40:00    2017-03-29 04:40:00
78560    28232    837    2017-03-29 22:16:00    2017-03-29 22:16:00
78561    28232    610    2017-03-29 09:16:00    2017-03-29 09:16:00
78562    28232    524    2017-03-29 15:46:00    2017-03-29 15:46:00
78563    28233    558    2017-03-29 11:42:00    2017-03-29 11:42:00
78564    28233    823    2017-03-29 10:23:00    2017-03-29 10:23:00
78565    28233    797    2017-03-29 10:55:00    2017-03-29 10:55:00
78566    28233    502    2017-03-29 10:05:00    2017-03-29 10:05:00
78567    28233    957    2017-03-29 03:30:00    2017-03-29 03:30:00
78568    28234    590    2017-03-29 09:37:00    2017-03-29 09:37:00
78569    28234    544    2017-03-29 05:09:00    2017-03-29 05:09:00
78570    28234    871    2017-03-29 02:26:00    2017-03-29 02:26:00
78571    28234    740    2017-03-29 02:50:00    2017-03-29 02:50:00
78572    28234    851    2017-03-29 13:09:00    2017-03-29 13:09:00
77898    28100    \N    2017-03-28 19:50:00    2017-03-28 19:50:00
78573    28235    700    2017-03-30 18:59:00    2017-03-30 18:59:00
78574    28235    700    2017-03-30 18:32:00    2017-03-30 18:32:00
78575    28235    780    2017-03-30 02:55:00    2017-03-30 02:55:00
78576    28235    852    2017-03-30 03:26:00    2017-03-30 03:26:00
78577    28235    512    2017-03-30 14:06:00    2017-03-30 14:06:00
78578    28236    798    2017-03-30 09:32:00    2017-03-30 09:32:00
78579    28236    523    2017-03-30 18:03:00    2017-03-30 18:03:00
78580    28236    858    2017-03-30 20:56:00    2017-03-30 20:56:00
78581    28236    665    2017-03-30 18:23:00    2017-03-30 18:23:00
78582    28236    574    2017-03-30 05:54:00    2017-03-30 05:54:00
78583    28237    892    2017-03-30 19:43:00    2017-03-30 19:43:00
78584    28237    501    2017-03-30 11:09:00    2017-03-30 11:09:00
78585    28237    596    2017-03-30 23:48:00    2017-03-30 23:48:00
78586    28237    694    2017-03-30 21:47:00    2017-03-30 21:47:00
78587    28237    757    2017-03-30 23:52:00    2017-03-30 23:52:00
78588    28238    948    2017-03-30 01:43:00    2017-03-30 01:43:00
78589    28238    911    2017-03-30 12:11:00    2017-03-30 12:11:00
78590    28238    866    2017-03-30 06:05:00    2017-03-30 06:05:00
78591    28238    933    2017-03-30 07:33:00    2017-03-30 07:33:00
78592    28238    884    2017-03-30 14:24:00    2017-03-30 14:24:00
78593    28239    494    2017-03-30 04:05:00    2017-03-30 04:05:00
78594    28239    745    2017-03-30 20:33:00    2017-03-30 20:33:00
78595    28239    568    2017-03-30 20:36:00    2017-03-30 20:36:00
78596    28239    724    2017-03-30 13:31:00    2017-03-30 13:31:00
78597    28239    880    2017-03-30 09:14:00    2017-03-30 09:14:00
78598    28240    549    2017-03-30 07:44:00    2017-03-30 07:44:00
78599    28240    853    2017-03-30 08:16:00    2017-03-30 08:16:00
78600    28240    495    2017-03-30 23:11:00    2017-03-30 23:11:00
78601    28240    599    2017-03-30 05:10:00    2017-03-30 05:10:00
78602    28240    817    2017-03-30 06:14:00    2017-03-30 06:14:00
78603    28241    909    2017-03-30 04:25:00    2017-03-30 04:25:00
78604    28241    836    2017-03-30 16:50:00    2017-03-30 16:50:00
78605    28241    690    2017-03-30 09:22:00    2017-03-30 09:22:00
78606    28241    711    2017-03-30 15:52:00    2017-03-30 15:52:00
78607    28241    750    2017-03-30 17:28:00    2017-03-30 17:28:00
78608    28242    939    2017-03-30 07:37:00    2017-03-30 07:37:00
78609    28242    702    2017-03-30 04:37:00    2017-03-30 04:37:00
78610    28242    847    2017-03-30 16:51:00    2017-03-30 16:51:00
78611    28242    950    2017-03-30 04:37:00    2017-03-30 04:37:00
78612    28242    866    2017-03-30 10:41:00    2017-03-30 10:41:00
78613    28243    492    2017-03-30 19:11:00    2017-03-30 19:11:00
78614    28243    778    2017-03-30 14:34:00    2017-03-30 14:34:00
78615    28243    900    2017-03-30 07:29:00    2017-03-30 07:29:00
78616    28243    479    2017-03-30 20:20:00    2017-03-30 20:20:00
78617    28243    732    2017-03-30 22:34:00    2017-03-30 22:34:00
78618    28244    868    2017-03-30 13:25:00    2017-03-30 13:25:00
78619    28244    493    2017-03-30 03:22:00    2017-03-30 03:22:00
78620    28244    779    2017-03-30 02:36:00    2017-03-30 02:36:00
78621    28244    700    2017-03-30 11:00:00    2017-03-30 11:00:00
78622    28244    578    2017-03-30 20:31:00    2017-03-30 20:31:00
78623    28245    477    2017-03-30 04:00:00    2017-03-30 04:00:00
78624    28245    929    2017-03-30 07:50:00    2017-03-30 07:50:00
78625    28245    797    2017-03-30 04:53:00    2017-03-30 04:53:00
78626    28245    733    2017-03-30 11:27:00    2017-03-30 11:27:00
78627    28245    505    2017-03-30 04:38:00    2017-03-30 04:38:00
78628    28246    555    2017-03-30 22:15:00    2017-03-30 22:15:00
78629    28246    555    2017-03-30 01:25:00    2017-03-30 01:25:00
78630    28246    491    2017-03-30 11:32:00    2017-03-30 11:32:00
78631    28246    481    2017-03-30 05:27:00    2017-03-30 05:27:00
78632    28246    722    2017-03-30 11:42:00    2017-03-30 11:42:00
78633    28247    597    2017-03-30 13:11:00    2017-03-30 13:11:00
78634    28247    650    2017-03-30 02:42:00    2017-03-30 02:42:00
78635    28247    832    2017-03-30 09:34:00    2017-03-30 09:34:00
78636    28247    777    2017-03-30 19:39:00    2017-03-30 19:39:00
78637    28247    884    2017-03-30 13:22:00    2017-03-30 13:22:00
78638    28248    751    2017-03-30 21:45:00    2017-03-30 21:45:00
78639    28248    857    2017-03-30 10:36:00    2017-03-30 10:36:00
78640    28248    647    2017-03-30 09:38:00    2017-03-30 09:38:00
78641    28248    833    2017-03-30 23:00:00    2017-03-30 23:00:00
78642    28248    498    2017-03-30 21:21:00    2017-03-30 21:21:00
78643    28249    483    2017-03-30 05:50:00    2017-03-30 05:50:00
78644    28249    635    2017-03-30 16:13:00    2017-03-30 16:13:00
78645    28249    796    2017-03-30 03:01:00    2017-03-30 03:01:00
78646    28249    591    2017-03-30 08:27:00    2017-03-30 08:27:00
78647    28249    553    2017-03-30 11:33:00    2017-03-30 11:33:00
78648    28250    905    2017-03-30 11:58:00    2017-03-30 11:58:00
78649    28250    650    2017-03-30 05:04:00    2017-03-30 05:04:00
78650    28250    590    2017-03-30 17:54:00    2017-03-30 17:54:00
78651    28250    648    2017-03-30 16:23:00    2017-03-30 16:23:00
78652    28250    606    2017-03-30 23:27:00    2017-03-30 23:27:00
78653    28251    480    2017-03-30 04:46:00    2017-03-30 04:46:00
78654    28251    705    2017-03-30 23:53:00    2017-03-30 23:53:00
78655    28251    904    2017-03-30 04:34:00    2017-03-30 04:34:00
78656    28251    559    2017-03-30 23:41:00    2017-03-30 23:41:00
78657    28251    799    2017-03-30 08:25:00    2017-03-30 08:25:00
78658    28252    932    2017-03-30 21:57:00    2017-03-30 21:57:00
78659    28252    645    2017-03-30 08:50:00    2017-03-30 08:50:00
78660    28252    794    2017-03-30 16:39:00    2017-03-30 16:39:00
78661    28252    838    2017-03-30 04:25:00    2017-03-30 04:25:00
78662    28252    546    2017-03-30 06:48:00    2017-03-30 06:48:00
78663    28253    949    2017-03-30 03:00:00    2017-03-30 03:00:00
78664    28253    854    2017-03-30 14:56:00    2017-03-30 14:56:00
78665    28253    811    2017-03-30 01:49:00    2017-03-30 01:49:00
78666    28253    826    2017-03-30 03:54:00    2017-03-30 03:54:00
78667    28253    721    2017-03-30 21:14:00    2017-03-30 21:14:00
78668    28254    550    2017-03-30 22:01:00    2017-03-30 22:01:00
78669    28254    912    2017-03-30 04:57:00    2017-03-30 04:57:00
78670    28254    850    2017-03-30 13:54:00    2017-03-30 13:54:00
78671    28254    671    2017-03-30 13:14:00    2017-03-30 13:14:00
78672    28254    628    2017-03-30 02:26:00    2017-03-30 02:26:00
78673    28255    736    2017-03-30 21:23:00    2017-03-30 21:23:00
78674    28255    743    2017-03-30 21:47:00    2017-03-30 21:47:00
78675    28255    480    2017-03-30 20:54:00    2017-03-30 20:54:00
78676    28255    578    2017-03-30 08:46:00    2017-03-30 08:46:00
78677    28255    716    2017-03-30 20:45:00    2017-03-30 20:45:00
78678    28256    563    2017-03-30 10:22:00    2017-03-30 10:22:00
78679    28256    554    2017-03-30 08:11:00    2017-03-30 08:11:00
78680    28256    884    2017-03-30 01:20:00    2017-03-30 01:20:00
78681    28256    831    2017-03-30 13:11:00    2017-03-30 13:11:00
78682    28256    814    2017-03-30 06:17:00    2017-03-30 06:17:00
78683    28257    524    2017-03-30 09:56:00    2017-03-30 09:56:00
78684    28257    761    2017-03-30 10:23:00    2017-03-30 10:23:00
78685    28257    507    2017-03-30 11:26:00    2017-03-30 11:26:00
78686    28257    906    2017-03-30 13:13:00    2017-03-30 13:13:00
78687    28257    929    2017-03-30 20:16:00    2017-03-30 20:16:00
78688    28258    920    2017-03-30 20:40:00    2017-03-30 20:40:00
78689    28258    743    2017-03-30 14:47:00    2017-03-30 14:47:00
78690    28258    698    2017-03-30 21:48:00    2017-03-30 21:48:00
78691    28258    714    2017-03-30 02:35:00    2017-03-30 02:35:00
78692    28258    604    2017-03-30 08:04:00    2017-03-30 08:04:00
78693    28259    825    2017-03-30 05:50:00    2017-03-30 05:50:00
78694    28259    867    2017-03-30 16:36:00    2017-03-30 16:36:00
78695    28259    571    2017-03-30 09:13:00    2017-03-30 09:13:00
78696    28259    717    2017-03-30 04:12:00    2017-03-30 04:12:00
78697    28259    787    2017-03-30 12:22:00    2017-03-30 12:22:00
78698    28260    605    2017-03-30 20:23:00    2017-03-30 20:23:00
78699    28260    752    2017-03-30 02:46:00    2017-03-30 02:46:00
78700    28260    589    2017-03-30 11:12:00    2017-03-30 11:12:00
78701    28260    675    2017-03-30 05:02:00    2017-03-30 05:02:00
78702    28260    769    2017-03-30 03:38:00    2017-03-30 03:38:00
78703    28261    689    2017-03-30 13:12:00    2017-03-30 13:12:00
78704    28261    695    2017-03-30 19:11:00    2017-03-30 19:11:00
78705    28261    836    2017-03-30 08:10:00    2017-03-30 08:10:00
78706    28261    786    2017-03-30 20:04:00    2017-03-30 20:04:00
78707    28261    680    2017-03-30 22:57:00    2017-03-30 22:57:00
78708    28262    844    2017-03-30 17:28:00    2017-03-30 17:28:00
78709    28262    545    2017-03-30 10:18:00    2017-03-30 10:18:00
78710    28262    486    2017-03-30 15:42:00    2017-03-30 15:42:00
78711    28262    637    2017-03-30 22:48:00    2017-03-30 22:48:00
78712    28262    535    2017-03-30 03:12:00    2017-03-30 03:12:00
78713    28263    801    2017-03-30 10:06:00    2017-03-30 10:06:00
78714    28263    516    2017-03-30 17:44:00    2017-03-30 17:44:00
78715    28263    473    2017-03-30 11:25:00    2017-03-30 11:25:00
78716    28263    721    2017-03-30 12:26:00    2017-03-30 12:26:00
78717    28263    477    2017-03-30 20:13:00    2017-03-30 20:13:00
78718    28264    723    2017-03-30 16:21:00    2017-03-30 16:21:00
78719    28264    554    2017-03-30 20:42:00    2017-03-30 20:42:00
78720    28264    774    2017-03-30 02:28:00    2017-03-30 02:28:00
78721    28264    682    2017-03-30 12:04:00    2017-03-30 12:04:00
78722    28264    712    2017-03-30 01:25:00    2017-03-30 01:25:00
78723    28265    885    2017-03-30 15:33:00    2017-03-30 15:33:00
78724    28265    918    2017-03-30 10:57:00    2017-03-30 10:57:00
78725    28265    490    2017-03-30 08:43:00    2017-03-30 08:43:00
78726    28265    725    2017-03-30 17:05:00    2017-03-30 17:05:00
78727    28265    683    2017-03-30 19:54:00    2017-03-30 19:54:00
78728    28266    608    2017-03-30 16:34:00    2017-03-30 16:34:00
78729    28266    755    2017-03-30 21:30:00    2017-03-30 21:30:00
78730    28266    950    2017-03-30 07:37:00    2017-03-30 07:37:00
78731    28266    746    2017-03-30 10:27:00    2017-03-30 10:27:00
78732    28266    660    2017-03-30 13:50:00    2017-03-30 13:50:00
78733    28267    490    2017-03-30 17:15:00    2017-03-30 17:15:00
78734    28267    466    2017-03-30 10:28:00    2017-03-30 10:28:00
78735    28267    930    2017-03-30 20:21:00    2017-03-30 20:21:00
78736    28267    466    2017-03-30 10:22:00    2017-03-30 10:22:00
78737    28267    768    2017-03-30 13:32:00    2017-03-30 13:32:00
78738    28268    753    2017-03-30 20:23:00    2017-03-30 20:23:00
78739    28268    497    2017-03-30 07:32:00    2017-03-30 07:32:00
78740    28268    498    2017-03-30 05:30:00    2017-03-30 05:30:00
78741    28268    718    2017-03-30 18:07:00    2017-03-30 18:07:00
78742    28268    902    2017-03-30 16:33:00    2017-03-30 16:33:00
78743    28269    667    2017-03-30 15:10:00    2017-03-30 15:10:00
78744    28269    464    2017-03-30 03:48:00    2017-03-30 03:48:00
78745    28269    803    2017-03-30 20:08:00    2017-03-30 20:08:00
78746    28269    789    2017-03-30 07:09:00    2017-03-30 07:09:00
78747    28269    856    2017-03-30 06:04:00    2017-03-30 06:04:00
78748    28270    478    2017-03-30 20:42:00    2017-03-30 20:42:00
78749    28270    824    2017-03-30 13:29:00    2017-03-30 13:29:00
78750    28270    522    2017-03-30 08:25:00    2017-03-30 08:25:00
78751    28270    821    2017-03-30 05:28:00    2017-03-30 05:28:00
78752    28270    915    2017-03-30 07:19:00    2017-03-30 07:19:00
78753    28271    663    2017-03-30 22:39:00    2017-03-30 22:39:00
78754    28271    533    2017-03-30 01:36:00    2017-03-30 01:36:00
78755    28271    785    2017-03-30 10:03:00    2017-03-30 10:03:00
78756    28271    630    2017-03-30 09:52:00    2017-03-30 09:52:00
78757    28271    726    2017-03-30 22:00:00    2017-03-30 22:00:00
78758    28272    906    2017-03-30 11:39:00    2017-03-30 11:39:00
78759    28272    666    2017-03-30 02:59:00    2017-03-30 02:59:00
78760    28272    803    2017-03-30 16:30:00    2017-03-30 16:30:00
78761    28272    888    2017-03-30 03:18:00    2017-03-30 03:18:00
78762    28272    727    2017-03-30 12:09:00    2017-03-30 12:09:00
78763    28273    759    2017-03-30 05:00:00    2017-03-30 05:00:00
78764    28273    803    2017-03-30 23:46:00    2017-03-30 23:46:00
78765    28273    803    2017-03-30 17:08:00    2017-03-30 17:08:00
78766    28273    876    2017-03-30 18:22:00    2017-03-30 18:22:00
78767    28273    916    2017-03-30 17:50:00    2017-03-30 17:50:00
78768    28274    856    2017-03-30 20:29:00    2017-03-30 20:29:00
78769    28274    622    2017-03-30 08:20:00    2017-03-30 08:20:00
78770    28274    741    2017-03-30 15:34:00    2017-03-30 15:34:00
78771    28274    466    2017-03-30 17:36:00    2017-03-30 17:36:00
78772    28274    691    2017-03-30 13:00:00    2017-03-30 13:00:00
78773    28275    678    2017-03-30 20:03:00    2017-03-30 20:03:00
78774    28275    777    2017-03-30 09:13:00    2017-03-30 09:13:00
78775    28275    626    2017-03-30 18:45:00    2017-03-30 18:45:00
78776    28275    520    2017-03-30 20:00:00    2017-03-30 20:00:00
78777    28275    501    2017-03-30 04:18:00    2017-03-30 04:18:00
78778    28276    800    2017-03-30 06:24:00    2017-03-30 06:24:00
78779    28276    866    2017-03-30 05:32:00    2017-03-30 05:32:00
78780    28276    957    2017-03-30 01:36:00    2017-03-30 01:36:00
78781    28276    639    2017-03-30 05:10:00    2017-03-30 05:10:00
78782    28276    602    2017-03-30 08:52:00    2017-03-30 08:52:00
78783    28277    509    2017-03-30 19:49:00    2017-03-30 19:49:00
78784    28277    949    2017-03-30 20:40:00    2017-03-30 20:40:00
78785    28277    601    2017-03-30 05:00:00    2017-03-30 05:00:00
78786    28277    797    2017-03-30 19:44:00    2017-03-30 19:44:00
78787    28277    506    2017-03-30 21:46:00    2017-03-30 21:46:00
78788    28278    750    2017-03-30 22:33:00    2017-03-30 22:33:00
78789    28278    787    2017-03-30 20:21:00    2017-03-30 20:21:00
78790    28278    793    2017-03-30 12:48:00    2017-03-30 12:48:00
78791    28278    834    2017-03-30 20:53:00    2017-03-30 20:53:00
78792    28278    948    2017-03-30 22:50:00    2017-03-30 22:50:00
78793    28279    676    2017-03-30 04:59:00    2017-03-30 04:59:00
78794    28279    610    2017-03-30 15:22:00    2017-03-30 15:22:00
78795    28279    853    2017-03-30 20:59:00    2017-03-30 20:59:00
78796    28279    582    2017-03-30 14:30:00    2017-03-30 14:30:00
78797    28279    940    2017-03-30 20:45:00    2017-03-30 20:45:00
78798    28280    650    2017-03-30 23:34:00    2017-03-30 23:34:00
78799    28280    716    2017-03-30 16:01:00    2017-03-30 16:01:00
78800    28280    718    2017-03-30 09:07:00    2017-03-30 09:07:00
78801    28280    545    2017-03-30 19:14:00    2017-03-30 19:14:00
78802    28280    531    2017-03-30 21:18:00    2017-03-30 21:18:00
78803    28281    641    2017-03-30 14:45:00    2017-03-30 14:45:00
78804    28281    613    2017-03-30 15:27:00    2017-03-30 15:27:00
78805    28281    855    2017-03-30 02:34:00    2017-03-30 02:34:00
78806    28281    560    2017-03-30 17:07:00    2017-03-30 17:07:00
78807    28281    706    2017-03-30 07:22:00    2017-03-30 07:22:00
78808    28282    793    2017-03-30 20:38:00    2017-03-30 20:38:00
78809    28282    792    2017-03-30 23:37:00    2017-03-30 23:37:00
78810    28282    714    2017-03-30 04:45:00    2017-03-30 04:45:00
78811    28282    739    2017-03-30 21:20:00    2017-03-30 21:20:00
78812    28282    543    2017-03-30 13:23:00    2017-03-30 13:23:00
78813    28283    491    2017-03-30 05:08:00    2017-03-30 05:08:00
78814    28283    820    2017-03-30 14:56:00    2017-03-30 14:56:00
78815    28283    776    2017-03-30 12:57:00    2017-03-30 12:57:00
78816    28283    565    2017-03-30 04:13:00    2017-03-30 04:13:00
78817    28283    525    2017-03-30 01:35:00    2017-03-30 01:35:00
78818    28284    577    2017-03-30 04:28:00    2017-03-30 04:28:00
78819    28284    598    2017-03-30 21:19:00    2017-03-30 21:19:00
78820    28284    836    2017-03-30 12:42:00    2017-03-30 12:42:00
78821    28284    542    2017-03-30 11:46:00    2017-03-30 11:46:00
78822    28284    531    2017-03-30 04:45:00    2017-03-30 04:45:00
78823    28285    827    2017-03-30 22:01:00    2017-03-30 22:01:00
78824    28285    797    2017-03-30 21:24:00    2017-03-30 21:24:00
78825    28285    469    2017-03-30 14:29:00    2017-03-30 14:29:00
78826    28285    524    2017-03-30 16:58:00    2017-03-30 16:58:00
78827    28285    906    2017-03-30 17:00:00    2017-03-30 17:00:00
78828    28286    598    2017-03-30 11:40:00    2017-03-30 11:40:00
78829    28286    860    2017-03-30 20:59:00    2017-03-30 20:59:00
78830    28286    635    2017-03-30 19:00:00    2017-03-30 19:00:00
78831    28286    696    2017-03-30 19:20:00    2017-03-30 19:20:00
78832    28286    784    2017-03-30 01:27:00    2017-03-30 01:27:00
78833    28287    845    2017-03-30 10:48:00    2017-03-30 10:48:00
78834    28287    573    2017-03-30 14:09:00    2017-03-30 14:09:00
78835    28287    762    2017-03-30 11:31:00    2017-03-30 11:31:00
78836    28287    943    2017-03-30 19:56:00    2017-03-30 19:56:00
78837    28287    896    2017-03-30 21:39:00    2017-03-30 21:39:00
78838    28288    659    2017-03-30 03:06:00    2017-03-30 03:06:00
78839    28288    811    2017-03-30 21:06:00    2017-03-30 21:06:00
78840    28288    468    2017-03-30 21:28:00    2017-03-30 21:28:00
78841    28288    960    2017-03-30 05:22:00    2017-03-30 05:22:00
78842    28288    822    2017-03-30 08:50:00    2017-03-30 08:50:00
78843    28289    885    2017-03-30 17:44:00    2017-03-30 17:44:00
78844    28289    869    2017-03-30 11:08:00    2017-03-30 11:08:00
78845    28289    619    2017-03-30 19:19:00    2017-03-30 19:19:00
78846    28289    607    2017-03-30 15:55:00    2017-03-30 15:55:00
78847    28289    803    2017-03-30 14:07:00    2017-03-30 14:07:00
78848    28290    583    2017-03-30 17:56:00    2017-03-30 17:56:00
78849    28290    795    2017-03-30 02:54:00    2017-03-30 02:54:00
78850    28290    599    2017-03-30 03:53:00    2017-03-30 03:53:00
78851    28290    523    2017-03-30 01:24:00    2017-03-30 01:24:00
78852    28290    604    2017-03-30 05:46:00    2017-03-30 05:46:00
78853    28291    534    2017-03-30 03:37:00    2017-03-30 03:37:00
78854    28291    915    2017-03-30 15:39:00    2017-03-30 15:39:00
78855    28291    948    2017-03-30 14:59:00    2017-03-30 14:59:00
78856    28291    806    2017-03-30 23:44:00    2017-03-30 23:44:00
78857    28291    878    2017-03-30 20:08:00    2017-03-30 20:08:00
78858    28292    840    2017-03-30 13:10:00    2017-03-30 13:10:00
78859    28292    672    2017-03-30 10:10:00    2017-03-30 10:10:00
78860    28292    711    2017-03-30 09:46:00    2017-03-30 09:46:00
78861    28292    859    2017-03-30 20:14:00    2017-03-30 20:14:00
78862    28292    768    2017-03-30 11:59:00    2017-03-30 11:59:00
78863    28293    770    2017-03-30 07:24:00    2017-03-30 07:24:00
78864    28293    624    2017-03-30 10:43:00    2017-03-30 10:43:00
78865    28293    682    2017-03-30 09:38:00    2017-03-30 09:38:00
78866    28293    903    2017-03-30 22:22:00    2017-03-30 22:22:00
78867    28293    541    2017-03-30 15:01:00    2017-03-30 15:01:00
78868    28294    579    2017-03-30 10:22:00    2017-03-30 10:22:00
78869    28294    676    2017-03-30 05:38:00    2017-03-30 05:38:00
78870    28294    736    2017-03-30 01:10:00    2017-03-30 01:10:00
78871    28294    803    2017-03-30 17:32:00    2017-03-30 17:32:00
78872    28294    935    2017-03-30 03:22:00    2017-03-30 03:22:00
78873    28295    481    2017-03-30 11:41:00    2017-03-30 11:41:00
78874    28295    871    2017-03-30 02:42:00    2017-03-30 02:42:00
78875    28295    912    2017-03-30 21:43:00    2017-03-30 21:43:00
78876    28295    511    2017-03-30 16:30:00    2017-03-30 16:30:00
78877    28295    744    2017-03-30 13:21:00    2017-03-30 13:21:00
78878    28296    683    2017-03-30 12:12:00    2017-03-30 12:12:00
78879    28296    841    2017-03-30 04:18:00    2017-03-30 04:18:00
78880    28296    598    2017-03-30 09:14:00    2017-03-30 09:14:00
78881    28296    845    2017-03-30 23:18:00    2017-03-30 23:18:00
78882    28296    744    2017-03-30 22:21:00    2017-03-30 22:21:00
78883    28297    679    2017-03-30 20:37:00    2017-03-30 20:37:00
78884    28297    540    2017-03-30 05:25:00    2017-03-30 05:25:00
78885    28297    841    2017-03-30 07:03:00    2017-03-30 07:03:00
78886    28297    506    2017-03-30 02:53:00    2017-03-30 02:53:00
78887    28297    614    2017-03-30 08:32:00    2017-03-30 08:32:00
78888    28298    945    2017-03-30 16:38:00    2017-03-30 16:38:00
78889    28298    660    2017-03-30 03:15:00    2017-03-30 03:15:00
78890    28298    649    2017-03-30 17:40:00    2017-03-30 17:40:00
78891    28298    500    2017-03-30 12:28:00    2017-03-30 12:28:00
78892    28298    545    2017-03-30 11:12:00    2017-03-30 11:12:00
78893    28299    493    2017-03-30 01:54:00    2017-03-30 01:54:00
78894    28299    834    2017-03-30 07:35:00    2017-03-30 07:35:00
78895    28299    725    2017-03-30 15:53:00    2017-03-30 15:53:00
78896    28299    749    2017-03-30 11:24:00    2017-03-30 11:24:00
78897    28299    688    2017-03-30 18:55:00    2017-03-30 18:55:00
78898    28300    493    2017-03-30 16:34:00    2017-03-30 16:34:00
78899    28300    555    2017-03-30 03:18:00    2017-03-30 03:18:00
78900    28300    593    2017-03-30 01:40:00    2017-03-30 01:40:00
78901    28300    619    2017-03-30 03:08:00    2017-03-30 03:08:00
78902    28300    712    2017-03-30 10:49:00    2017-03-30 10:49:00
78903    28301    492    2017-03-30 08:13:00    2017-03-30 08:13:00
78904    28301    838    2017-03-30 20:32:00    2017-03-30 20:32:00
78905    28301    714    2017-03-30 02:32:00    2017-03-30 02:32:00
78906    28301    883    2017-03-30 09:25:00    2017-03-30 09:25:00
78907    28301    875    2017-03-30 22:48:00    2017-03-30 22:48:00
78908    28302    913    2017-03-30 18:21:00    2017-03-30 18:21:00
78909    28302    642    2017-03-30 12:13:00    2017-03-30 12:13:00
78910    28302    469    2017-03-30 19:00:00    2017-03-30 19:00:00
78911    28302    915    2017-03-30 04:26:00    2017-03-30 04:26:00
78912    28302    798    2017-03-30 07:39:00    2017-03-30 07:39:00
78913    28303    771    2017-03-30 18:51:00    2017-03-30 18:51:00
78914    28303    879    2017-03-30 16:24:00    2017-03-30 16:24:00
78915    28303    613    2017-03-30 14:54:00    2017-03-30 14:54:00
78916    28303    648    2017-03-30 09:09:00    2017-03-30 09:09:00
78917    28303    842    2017-03-30 18:12:00    2017-03-30 18:12:00
78918    28304    619    2017-03-30 10:21:00    2017-03-30 10:21:00
78919    28304    924    2017-03-30 06:24:00    2017-03-30 06:24:00
78920    28304    908    2017-03-30 01:23:00    2017-03-30 01:23:00
78921    28304    781    2017-03-30 08:39:00    2017-03-30 08:39:00
78922    28304    855    2017-03-30 19:42:00    2017-03-30 19:42:00
78923    28305    703    2017-03-30 02:00:00    2017-03-30 02:00:00
78924    28305    643    2017-03-30 12:53:00    2017-03-30 12:53:00
78925    28305    560    2017-03-30 23:14:00    2017-03-30 23:14:00
78926    28305    493    2017-03-30 20:59:00    2017-03-30 20:59:00
78927    28305    798    2017-03-30 03:51:00    2017-03-30 03:51:00
78928    28306    655    2017-03-30 16:00:00    2017-03-30 16:00:00
78929    28306    782    2017-03-30 08:16:00    2017-03-30 08:16:00
78930    28306    712    2017-03-30 13:24:00    2017-03-30 13:24:00
78931    28306    762    2017-03-30 15:37:00    2017-03-30 15:37:00
78932    28306    596    2017-03-30 01:32:00    2017-03-30 01:32:00
78933    28307    872    2017-03-30 14:30:00    2017-03-30 14:30:00
78934    28307    866    2017-03-30 14:35:00    2017-03-30 14:35:00
78935    28307    491    2017-03-30 20:31:00    2017-03-30 20:31:00
78936    28307    604    2017-03-30 03:55:00    2017-03-30 03:55:00
78937    28307    787    2017-03-30 16:39:00    2017-03-30 16:39:00
78938    28308    944    2017-03-31 23:27:00    2017-03-31 23:27:00
78939    28308    919    2017-03-31 05:51:00    2017-03-31 05:51:00
78940    28308    714    2017-03-31 10:05:00    2017-03-31 10:05:00
78941    28308    861    2017-03-31 16:31:00    2017-03-31 16:31:00
78942    28308    796    2017-03-31 09:32:00    2017-03-31 09:32:00
78943    28309    489    2017-03-31 10:25:00    2017-03-31 10:25:00
78944    28309    862    2017-03-31 23:04:00    2017-03-31 23:04:00
78945    28309    710    2017-03-31 16:02:00    2017-03-31 16:02:00
78946    28309    722    2017-03-31 12:41:00    2017-03-31 12:41:00
78947    28309    822    2017-03-31 07:45:00    2017-03-31 07:45:00
78948    28310    754    2017-03-31 23:29:00    2017-03-31 23:29:00
78949    28310    680    2017-03-31 06:47:00    2017-03-31 06:47:00
78950    28310    722    2017-03-31 16:17:00    2017-03-31 16:17:00
78951    28310    922    2017-03-31 12:02:00    2017-03-31 12:02:00
78952    28310    492    2017-03-31 01:54:00    2017-03-31 01:54:00
78953    28311    607    2017-03-31 09:58:00    2017-03-31 09:58:00
78954    28311    909    2017-03-31 23:52:00    2017-03-31 23:52:00
78955    28311    930    2017-03-31 21:26:00    2017-03-31 21:26:00
78956    28311    786    2017-03-31 10:37:00    2017-03-31 10:37:00
78957    28311    699    2017-03-31 12:42:00    2017-03-31 12:42:00
78958    28312    540    2017-03-31 15:11:00    2017-03-31 15:11:00
78959    28312    663    2017-03-31 23:23:00    2017-03-31 23:23:00
78960    28312    859    2017-03-31 20:30:00    2017-03-31 20:30:00
78961    28312    764    2017-03-31 15:23:00    2017-03-31 15:23:00
78962    28312    571    2017-03-31 08:14:00    2017-03-31 08:14:00
78963    28313    601    2017-03-31 16:07:00    2017-03-31 16:07:00
78964    28313    515    2017-03-31 05:40:00    2017-03-31 05:40:00
78965    28313    794    2017-03-31 20:58:00    2017-03-31 20:58:00
78966    28313    722    2017-03-31 17:28:00    2017-03-31 17:28:00
78967    28313    465    2017-03-31 10:06:00    2017-03-31 10:06:00
78968    28314    732    2017-03-31 19:29:00    2017-03-31 19:29:00
78969    28314    796    2017-03-31 08:17:00    2017-03-31 08:17:00
78970    28314    532    2017-03-31 22:55:00    2017-03-31 22:55:00
78971    28314    862    2017-03-31 10:06:00    2017-03-31 10:06:00
78972    28314    479    2017-03-31 02:02:00    2017-03-31 02:02:00
78973    28315    735    2017-03-31 06:01:00    2017-03-31 06:01:00
78974    28315    606    2017-03-31 10:51:00    2017-03-31 10:51:00
78975    28315    780    2017-03-31 12:12:00    2017-03-31 12:12:00
78976    28315    779    2017-03-31 06:21:00    2017-03-31 06:21:00
78977    28315    712    2017-03-31 02:23:00    2017-03-31 02:23:00
78978    28316    497    2017-03-31 06:04:00    2017-03-31 06:04:00
78979    28316    901    2017-03-31 03:07:00    2017-03-31 03:07:00
78980    28316    682    2017-03-31 13:08:00    2017-03-31 13:08:00
78981    28316    729    2017-03-31 16:57:00    2017-03-31 16:57:00
78982    28316    921    2017-03-31 03:13:00    2017-03-31 03:13:00
78983    28317    682    2017-03-31 21:28:00    2017-03-31 21:28:00
78984    28317    785    2017-03-31 23:07:00    2017-03-31 23:07:00
78985    28317    894    2017-03-31 05:34:00    2017-03-31 05:34:00
78986    28317    720    2017-03-31 13:38:00    2017-03-31 13:38:00
78987    28317    870    2017-03-31 01:24:00    2017-03-31 01:24:00
78988    28318    547    2017-03-31 07:18:00    2017-03-31 07:18:00
78989    28318    951    2017-03-31 17:00:00    2017-03-31 17:00:00
78990    28318    518    2017-03-31 01:12:00    2017-03-31 01:12:00
78991    28318    961    2017-03-31 06:51:00    2017-03-31 06:51:00
78992    28318    839    2017-03-31 06:48:00    2017-03-31 06:48:00
78993    28319    571    2017-03-31 13:48:00    2017-03-31 13:48:00
78994    28319    476    2017-03-31 12:10:00    2017-03-31 12:10:00
78995    28319    662    2017-03-31 01:00:00    2017-03-31 01:00:00
78996    28319    798    2017-03-31 20:46:00    2017-03-31 20:46:00
78997    28319    783    2017-03-31 21:31:00    2017-03-31 21:31:00
78998    28320    585    2017-03-31 13:58:00    2017-03-31 13:58:00
78999    28320    760    2017-03-31 01:59:00    2017-03-31 01:59:00
79000    28320    920    2017-03-31 08:05:00    2017-03-31 08:05:00
79001    28320    814    2017-03-31 20:14:00    2017-03-31 20:14:00
79002    28320    868    2017-03-31 13:35:00    2017-03-31 13:35:00
79003    28321    718    2017-03-31 15:04:00    2017-03-31 15:04:00
79004    28321    824    2017-03-31 13:55:00    2017-03-31 13:55:00
79005    28321    900    2017-03-31 18:13:00    2017-03-31 18:13:00
79006    28321    833    2017-03-31 02:55:00    2017-03-31 02:55:00
79007    28321    589    2017-03-31 19:04:00    2017-03-31 19:04:00
79008    28322    646    2017-03-31 13:13:00    2017-03-31 13:13:00
79009    28322    588    2017-03-31 18:13:00    2017-03-31 18:13:00
79010    28322    813    2017-03-31 02:00:00    2017-03-31 02:00:00
79011    28322    606    2017-03-31 15:20:00    2017-03-31 15:20:00
79012    28322    565    2017-03-31 20:35:00    2017-03-31 20:35:00
79013    28323    655    2017-03-31 01:47:00    2017-03-31 01:47:00
79014    28323    657    2017-03-31 04:02:00    2017-03-31 04:02:00
79015    28323    581    2017-03-31 17:33:00    2017-03-31 17:33:00
79016    28323    786    2017-03-31 06:24:00    2017-03-31 06:24:00
79017    28323    695    2017-03-31 18:27:00    2017-03-31 18:27:00
79018    28324    578    2017-03-31 09:50:00    2017-03-31 09:50:00
79019    28324    829    2017-03-31 16:27:00    2017-03-31 16:27:00
79020    28324    656    2017-03-31 01:09:00    2017-03-31 01:09:00
79021    28324    687    2017-03-31 20:51:00    2017-03-31 20:51:00
79022    28324    924    2017-03-31 01:51:00    2017-03-31 01:51:00
79023    28325    766    2017-03-31 07:47:00    2017-03-31 07:47:00
79024    28325    879    2017-03-31 09:30:00    2017-03-31 09:30:00
79025    28325    558    2017-03-31 13:59:00    2017-03-31 13:59:00
79026    28325    828    2017-03-31 16:56:00    2017-03-31 16:56:00
79027    28325    849    2017-03-31 10:15:00    2017-03-31 10:15:00
79028    28326    584    2017-03-31 07:50:00    2017-03-31 07:50:00
79029    28326    542    2017-03-31 21:49:00    2017-03-31 21:49:00
79030    28326    632    2017-03-31 16:49:00    2017-03-31 16:49:00
79031    28326    951    2017-03-31 04:11:00    2017-03-31 04:11:00
79032    28326    757    2017-03-31 07:05:00    2017-03-31 07:05:00
79033    28327    490    2017-03-31 05:07:00    2017-03-31 05:07:00
79034    28327    714    2017-03-31 08:06:00    2017-03-31 08:06:00
79035    28327    806    2017-03-31 20:49:00    2017-03-31 20:49:00
79036    28327    943    2017-03-31 19:35:00    2017-03-31 19:35:00
79037    28327    740    2017-03-31 09:58:00    2017-03-31 09:58:00
79038    28328    579    2017-03-31 14:03:00    2017-03-31 14:03:00
79039    28328    563    2017-03-31 05:56:00    2017-03-31 05:56:00
79040    28328    475    2017-03-31 02:22:00    2017-03-31 02:22:00
79041    28328    856    2017-03-31 11:46:00    2017-03-31 11:46:00
79042    28328    511    2017-03-31 17:47:00    2017-03-31 17:47:00
79043    28329    701    2017-03-31 06:09:00    2017-03-31 06:09:00
79044    28329    858    2017-03-31 17:48:00    2017-03-31 17:48:00
79045    28329    845    2017-03-31 02:35:00    2017-03-31 02:35:00
79046    28329    504    2017-03-31 09:40:00    2017-03-31 09:40:00
79047    28329    680    2017-03-31 09:03:00    2017-03-31 09:03:00
79048    28330    853    2017-03-31 01:11:00    2017-03-31 01:11:00
79049    28330    931    2017-03-31 01:03:00    2017-03-31 01:03:00
79050    28330    816    2017-03-31 09:38:00    2017-03-31 09:38:00
79051    28330    593    2017-03-31 09:41:00    2017-03-31 09:41:00
79052    28330    679    2017-03-31 12:03:00    2017-03-31 12:03:00
79053    28331    569    2017-03-31 19:13:00    2017-03-31 19:13:00
79054    28331    693    2017-03-31 15:58:00    2017-03-31 15:58:00
79055    28331    695    2017-03-31 18:22:00    2017-03-31 18:22:00
79056    28331    574    2017-03-31 21:33:00    2017-03-31 21:33:00
79057    28331    815    2017-03-31 21:03:00    2017-03-31 21:03:00
79058    28332    659    2017-03-31 15:10:00    2017-03-31 15:10:00
79059    28332    802    2017-03-31 07:52:00    2017-03-31 07:52:00
79060    28332    811    2017-03-31 17:03:00    2017-03-31 17:03:00
79061    28332    526    2017-03-31 04:39:00    2017-03-31 04:39:00
79062    28332    662    2017-03-31 11:43:00    2017-03-31 11:43:00
79063    28333    687    2017-03-31 21:06:00    2017-03-31 21:06:00
79064    28333    849    2017-03-31 21:22:00    2017-03-31 21:22:00
79065    28333    777    2017-03-31 07:24:00    2017-03-31 07:24:00
79066    28333    535    2017-03-31 19:07:00    2017-03-31 19:07:00
79067    28333    627    2017-03-31 17:46:00    2017-03-31 17:46:00
79068    28334    885    2017-03-31 10:11:00    2017-03-31 10:11:00
79069    28334    518    2017-03-31 03:28:00    2017-03-31 03:28:00
79070    28334    689    2017-03-31 09:38:00    2017-03-31 09:38:00
79071    28334    948    2017-03-31 22:37:00    2017-03-31 22:37:00
79072    28334    911    2017-03-31 23:34:00    2017-03-31 23:34:00
79073    28335    514    2017-03-31 18:34:00    2017-03-31 18:34:00
79074    28335    863    2017-03-31 02:30:00    2017-03-31 02:30:00
79075    28335    636    2017-03-31 21:21:00    2017-03-31 21:21:00
79076    28335    565    2017-03-31 07:53:00    2017-03-31 07:53:00
79077    28335    526    2017-03-31 14:26:00    2017-03-31 14:26:00
79078    28336    614    2017-03-31 04:30:00    2017-03-31 04:30:00
79079    28336    553    2017-03-31 07:18:00    2017-03-31 07:18:00
79080    28336    726    2017-03-31 15:09:00    2017-03-31 15:09:00
79081    28336    784    2017-03-31 23:12:00    2017-03-31 23:12:00
79082    28336    777    2017-03-31 16:29:00    2017-03-31 16:29:00
79083    28337    675    2017-03-31 11:10:00    2017-03-31 11:10:00
79084    28337    694    2017-03-31 02:07:00    2017-03-31 02:07:00
79085    28337    779    2017-03-31 05:44:00    2017-03-31 05:44:00
79086    28337    624    2017-03-31 22:17:00    2017-03-31 22:17:00
79087    28337    795    2017-03-31 12:34:00    2017-03-31 12:34:00
79088    28338    648    2017-03-31 22:58:00    2017-03-31 22:58:00
79089    28338    508    2017-03-31 17:35:00    2017-03-31 17:35:00
79090    28338    840    2017-03-31 06:46:00    2017-03-31 06:46:00
79091    28338    843    2017-03-31 08:47:00    2017-03-31 08:47:00
79092    28338    646    2017-04-01 00:00:00    2017-04-01 00:00:00
79093    28339    818    2017-03-31 21:22:00    2017-03-31 21:22:00
79094    28339    523    2017-03-31 22:40:00    2017-03-31 22:40:00
79095    28339    504    2017-03-31 21:24:00    2017-03-31 21:24:00
79096    28339    603    2017-03-31 05:23:00    2017-03-31 05:23:00
79097    28339    676    2017-03-31 20:41:00    2017-03-31 20:41:00
79098    28340    569    2017-03-31 01:51:00    2017-03-31 01:51:00
79099    28340    480    2017-03-31 21:17:00    2017-03-31 21:17:00
79100    28340    716    2017-03-31 06:36:00    2017-03-31 06:36:00
79101    28340    637    2017-03-31 12:20:00    2017-03-31 12:20:00
79102    28340    572    2017-03-31 03:23:00    2017-03-31 03:23:00
79103    28341    754    2017-03-31 16:18:00    2017-03-31 16:18:00
79104    28341    743    2017-03-31 01:02:00    2017-03-31 01:02:00
79105    28341    801    2017-03-31 02:43:00    2017-03-31 02:43:00
79106    28341    505    2017-03-31 21:31:00    2017-03-31 21:31:00
79107    28341    510    2017-03-31 01:32:00    2017-03-31 01:32:00
79108    28342    641    2017-03-31 21:15:00    2017-03-31 21:15:00
79109    28342    888    2017-03-31 22:20:00    2017-03-31 22:20:00
79110    28342    756    2017-03-31 02:21:00    2017-03-31 02:21:00
79111    28342    519    2017-03-31 23:19:00    2017-03-31 23:19:00
79112    28342    724    2017-03-31 11:31:00    2017-03-31 11:31:00
79113    28343    610    2017-03-31 06:47:00    2017-03-31 06:47:00
79114    28343    922    2017-03-31 19:19:00    2017-03-31 19:19:00
79115    28343    777    2017-03-31 19:16:00    2017-03-31 19:16:00
79116    28343    589    2017-03-31 20:12:00    2017-03-31 20:12:00
79117    28343    876    2017-03-31 15:37:00    2017-03-31 15:37:00
79118    28344    637    2017-03-31 06:48:00    2017-03-31 06:48:00
79119    28344    863    2017-03-31 03:06:00    2017-03-31 03:06:00
79120    28344    572    2017-03-31 21:16:00    2017-03-31 21:16:00
79121    28344    566    2017-03-31 18:18:00    2017-03-31 18:18:00
79122    28344    818    2017-03-31 08:00:00    2017-03-31 08:00:00
79123    28345    928    2017-03-31 07:00:00    2017-03-31 07:00:00
79124    28345    572    2017-03-31 04:08:00    2017-03-31 04:08:00
79125    28345    910    2017-03-31 18:45:00    2017-03-31 18:45:00
79126    28345    655    2017-03-31 23:08:00    2017-03-31 23:08:00
79127    28345    630    2017-03-31 13:49:00    2017-03-31 13:49:00
79128    28346    832    2017-03-31 08:01:00    2017-03-31 08:01:00
79129    28346    839    2017-03-31 10:10:00    2017-03-31 10:10:00
79130    28346    928    2017-03-31 14:05:00    2017-03-31 14:05:00
79131    28346    875    2017-03-31 22:42:00    2017-03-31 22:42:00
79132    28346    873    2017-03-31 16:42:00    2017-03-31 16:42:00
79133    28347    635    2017-03-31 12:26:00    2017-03-31 12:26:00
79134    28347    685    2017-03-31 16:40:00    2017-03-31 16:40:00
79135    28347    776    2017-03-31 04:22:00    2017-03-31 04:22:00
79136    28347    928    2017-03-31 11:33:00    2017-03-31 11:33:00
79137    28347    477    2017-03-31 11:13:00    2017-03-31 11:13:00
79138    28348    529    2017-03-31 06:47:00    2017-03-31 06:47:00
79139    28348    699    2017-03-31 21:51:00    2017-03-31 21:51:00
79140    28348    616    2017-03-31 07:11:00    2017-03-31 07:11:00
79141    28348    591    2017-03-31 07:03:00    2017-03-31 07:03:00
79142    28348    800    2017-03-31 22:05:00    2017-03-31 22:05:00
79143    28349    951    2017-03-31 09:37:00    2017-03-31 09:37:00
79144    28349    575    2017-03-31 22:28:00    2017-03-31 22:28:00
79145    28349    950    2017-03-31 14:13:00    2017-03-31 14:13:00
79146    28349    919    2017-03-31 02:43:00    2017-03-31 02:43:00
79147    28349    741    2017-03-31 23:53:00    2017-03-31 23:53:00
79148    28350    503    2017-03-31 04:19:00    2017-03-31 04:19:00
79149    28350    503    2017-03-31 23:24:00    2017-03-31 23:24:00
79150    28350    908    2017-03-31 08:53:00    2017-03-31 08:53:00
79151    28350    739    2017-03-31 22:58:00    2017-03-31 22:58:00
79152    28350    849    2017-03-31 17:38:00    2017-03-31 17:38:00
79153    28351    608    2017-03-31 15:47:00    2017-03-31 15:47:00
79154    28351    641    2017-03-31 13:34:00    2017-03-31 13:34:00
79155    28351    489    2017-03-31 12:34:00    2017-03-31 12:34:00
79156    28351    752    2017-03-31 01:52:00    2017-03-31 01:52:00
79157    28351    473    2017-03-31 13:37:00    2017-03-31 13:37:00
79158    28352    507    2017-03-31 11:35:00    2017-03-31 11:35:00
79159    28352    808    2017-03-31 23:45:00    2017-03-31 23:45:00
79160    28352    900    2017-03-31 17:37:00    2017-03-31 17:37:00
79161    28352    667    2017-03-31 22:24:00    2017-03-31 22:24:00
79162    28352    815    2017-03-31 04:48:00    2017-03-31 04:48:00
79163    28353    797    2017-03-31 02:26:00    2017-03-31 02:26:00
79164    28353    929    2017-03-31 20:43:00    2017-03-31 20:43:00
79165    28353    475    2017-03-31 21:22:00    2017-03-31 21:22:00
79166    28353    590    2017-03-31 13:39:00    2017-03-31 13:39:00
79167    28353    658    2017-03-31 06:42:00    2017-03-31 06:42:00
79168    28354    599    2017-03-31 01:05:00    2017-03-31 01:05:00
79169    28354    808    2017-03-31 11:15:00    2017-03-31 11:15:00
79170    28354    843    2017-03-31 15:47:00    2017-03-31 15:47:00
79171    28354    578    2017-03-31 18:46:00    2017-03-31 18:46:00
79172    28354    515    2017-03-31 21:07:00    2017-03-31 21:07:00
79173    28355    588    2017-03-31 16:13:00    2017-03-31 16:13:00
79174    28355    867    2017-03-31 13:09:00    2017-03-31 13:09:00
79175    28355    783    2017-03-31 01:57:00    2017-03-31 01:57:00
79176    28355    912    2017-03-31 06:03:00    2017-03-31 06:03:00
79177    28355    883    2017-03-31 21:59:00    2017-03-31 21:59:00
79178    28356    895    2017-03-31 04:08:00    2017-03-31 04:08:00
79179    28356    853    2017-03-31 13:40:00    2017-03-31 13:40:00
79180    28356    921    2017-03-31 04:11:00    2017-03-31 04:11:00
79181    28356    829    2017-03-31 13:08:00    2017-03-31 13:08:00
79182    28356    810    2017-03-31 05:24:00    2017-03-31 05:24:00
79183    28357    921    2017-04-01 03:39:00    2017-04-01 03:39:00
79184    28357    541    2017-04-01 22:32:00    2017-04-01 22:32:00
79185    28357    488    2017-04-01 12:13:00    2017-04-01 12:13:00
79186    28357    654    2017-04-01 07:58:00    2017-04-01 07:58:00
79187    28357    853    2017-04-01 12:06:00    2017-04-01 12:06:00
79188    28358    662    2017-04-01 22:39:00    2017-04-01 22:39:00
79189    28358    712    2017-04-01 10:30:00    2017-04-01 10:30:00
79190    28358    543    2017-04-01 23:54:00    2017-04-01 23:54:00
79191    28358    783    2017-04-01 10:38:00    2017-04-01 10:38:00
79192    28358    544    2017-04-01 16:28:00    2017-04-01 16:28:00
79193    28359    873    2017-04-01 12:19:00    2017-04-01 12:19:00
79194    28359    870    2017-04-01 11:05:00    2017-04-01 11:05:00
79195    28359    899    2017-04-01 23:27:00    2017-04-01 23:27:00
79196    28359    833    2017-04-01 11:26:00    2017-04-01 11:26:00
79197    28359    892    2017-04-01 02:43:00    2017-04-01 02:43:00
79198    28360    470    2017-04-01 09:42:00    2017-04-01 09:42:00
79199    28360    875    2017-04-01 14:00:00    2017-04-01 14:00:00
79200    28360    674    2017-04-01 21:17:00    2017-04-01 21:17:00
79201    28360    639    2017-04-01 01:10:00    2017-04-01 01:10:00
79202    28360    581    2017-04-01 21:55:00    2017-04-01 21:55:00
79203    28361    660    2017-04-01 04:01:00    2017-04-01 04:01:00
79204    28361    504    2017-04-01 06:51:00    2017-04-01 06:51:00
79205    28361    468    2017-04-01 15:05:00    2017-04-01 15:05:00
79206    28361    567    2017-04-01 23:16:00    2017-04-01 23:16:00
79207    28361    627    2017-04-01 05:22:00    2017-04-01 05:22:00
79208    28362    894    2017-04-01 08:27:00    2017-04-01 08:27:00
79209    28362    818    2017-04-01 05:57:00    2017-04-01 05:57:00
79210    28362    648    2017-04-01 04:31:00    2017-04-01 04:31:00
79211    28362    470    2017-04-01 19:09:00    2017-04-01 19:09:00
79212    28362    655    2017-04-01 19:01:00    2017-04-01 19:01:00
79213    28363    699    2017-04-01 02:27:00    2017-04-01 02:27:00
79214    28363    623    2017-04-01 06:01:00    2017-04-01 06:01:00
79215    28363    931    2017-04-01 10:31:00    2017-04-01 10:31:00
79216    28363    463    2017-04-01 03:19:00    2017-04-01 03:19:00
79217    28363    547    2017-04-01 23:19:00    2017-04-01 23:19:00
79218    28364    843    2017-04-01 22:18:00    2017-04-01 22:18:00
79219    28364    631    2017-04-01 15:16:00    2017-04-01 15:16:00
79220    28364    778    2017-04-01 23:00:00    2017-04-01 23:00:00
79221    28364    666    2017-04-01 04:44:00    2017-04-01 04:44:00
79222    28364    488    2017-04-01 20:22:00    2017-04-01 20:22:00
79223    28365    941    2017-04-01 12:51:00    2017-04-01 12:51:00
79224    28365    629    2017-04-01 09:57:00    2017-04-01 09:57:00
79225    28365    616    2017-04-01 15:26:00    2017-04-01 15:26:00
79226    28365    901    2017-04-01 10:22:00    2017-04-01 10:22:00
79227    28365    585    2017-04-01 01:53:00    2017-04-01 01:53:00
79228    28366    907    2017-04-01 08:43:00    2017-04-01 08:43:00
79229    28366    853    2017-04-01 18:28:00    2017-04-01 18:28:00
79230    28366    859    2017-04-01 02:18:00    2017-04-01 02:18:00
79231    28366    868    2017-04-01 06:46:00    2017-04-01 06:46:00
79232    28366    800    2017-04-01 22:55:00    2017-04-01 22:55:00
79233    28367    660    2017-04-01 01:10:00    2017-04-01 01:10:00
79234    28367    475    2017-04-01 03:41:00    2017-04-01 03:41:00
79235    28367    586    2017-04-01 13:28:00    2017-04-01 13:28:00
79236    28367    681    2017-04-01 08:21:00    2017-04-01 08:21:00
79237    28367    534    2017-04-01 18:59:00    2017-04-01 18:59:00
79238    28368    650    2017-04-01 16:37:00    2017-04-01 16:37:00
79239    28368    501    2017-04-01 15:03:00    2017-04-01 15:03:00
79240    28368    806    2017-04-01 01:18:00    2017-04-01 01:18:00
79241    28368    633    2017-04-01 20:12:00    2017-04-01 20:12:00
79242    28368    725    2017-04-01 09:15:00    2017-04-01 09:15:00
79243    28369    610    2017-04-01 04:25:00    2017-04-01 04:25:00
79244    28369    797    2017-04-01 03:30:00    2017-04-01 03:30:00
79245    28369    872    2017-04-01 08:58:00    2017-04-01 08:58:00
79246    28369    470    2017-04-01 19:22:00    2017-04-01 19:22:00
79247    28369    718    2017-04-01 17:52:00    2017-04-01 17:52:00
79248    28370    589    2017-04-01 20:02:00    2017-04-01 20:02:00
79249    28370    592    2017-04-01 12:11:00    2017-04-01 12:11:00
79250    28370    469    2017-04-01 20:15:00    2017-04-01 20:15:00
79251    28370    566    2017-04-01 14:48:00    2017-04-01 14:48:00
79252    28370    771    2017-04-01 12:48:00    2017-04-01 12:48:00
79253    28371    478    2017-04-01 23:26:00    2017-04-01 23:26:00
79254    28371    472    2017-04-01 18:34:00    2017-04-01 18:34:00
79255    28371    891    2017-04-01 18:26:00    2017-04-01 18:26:00
79256    28371    923    2017-04-01 04:23:00    2017-04-01 04:23:00
79257    28371    519    2017-04-01 21:09:00    2017-04-01 21:09:00
79258    28372    899    2017-04-01 18:17:00    2017-04-01 18:17:00
79259    28372    502    2017-04-01 05:29:00    2017-04-01 05:29:00
79260    28372    649    2017-04-01 15:03:00    2017-04-01 15:03:00
79261    28372    862    2017-04-01 09:16:00    2017-04-01 09:16:00
79262    28372    593    2017-04-01 15:09:00    2017-04-01 15:09:00
79263    28373    957    2017-04-01 03:12:00    2017-04-01 03:12:00
79264    28373    859    2017-04-01 08:36:00    2017-04-01 08:36:00
79265    28373    903    2017-04-01 01:46:00    2017-04-01 01:46:00
79266    28373    759    2017-04-01 09:59:00    2017-04-01 09:59:00
79267    28373    600    2017-04-01 23:10:00    2017-04-01 23:10:00
79268    28374    945    2017-04-01 15:22:00    2017-04-01 15:22:00
79269    28374    697    2017-04-01 01:08:00    2017-04-01 01:08:00
79270    28374    725    2017-04-01 06:00:00    2017-04-01 06:00:00
79271    28374    568    2017-04-01 06:42:00    2017-04-01 06:42:00
79272    28374    517    2017-04-01 02:58:00    2017-04-01 02:58:00
79273    28375    631    2017-04-01 22:18:00    2017-04-01 22:18:00
79274    28375    669    2017-04-01 03:49:00    2017-04-01 03:49:00
79275    28375    642    2017-04-01 03:53:00    2017-04-01 03:53:00
79276    28375    769    2017-04-01 14:29:00    2017-04-01 14:29:00
79277    28375    464    2017-04-01 07:53:00    2017-04-01 07:53:00
79278    28376    754    2017-04-01 12:47:00    2017-04-01 12:47:00
79279    28376    886    2017-04-01 22:05:00    2017-04-01 22:05:00
79280    28376    820    2017-04-01 07:12:00    2017-04-01 07:12:00
79281    28376    767    2017-04-01 19:55:00    2017-04-01 19:55:00
79282    28376    903    2017-04-01 05:09:00    2017-04-01 05:09:00
79283    28377    552    2017-04-01 08:18:00    2017-04-01 08:18:00
79284    28377    662    2017-04-01 11:47:00    2017-04-01 11:47:00
79285    28377    671    2017-04-01 22:07:00    2017-04-01 22:07:00
79286    28377    584    2017-04-01 23:21:00    2017-04-01 23:21:00
79287    28377    866    2017-04-01 12:00:00    2017-04-01 12:00:00
79288    28378    469    2017-04-01 13:40:00    2017-04-01 13:40:00
79289    28378    630    2017-04-01 07:39:00    2017-04-01 07:39:00
79290    28378    542    2017-04-01 09:35:00    2017-04-01 09:35:00
79291    28378    630    2017-04-01 10:44:00    2017-04-01 10:44:00
79292    28378    467    2017-04-01 02:34:00    2017-04-01 02:34:00
79293    28379    807    2017-04-01 14:38:00    2017-04-01 14:38:00
79294    28379    880    2017-04-01 06:11:00    2017-04-01 06:11:00
79295    28379    918    2017-04-01 02:29:00    2017-04-01 02:29:00
79296    28379    509    2017-04-01 04:30:00    2017-04-01 04:30:00
79297    28379    631    2017-04-01 19:49:00    2017-04-01 19:49:00
79298    28380    692    2017-04-01 12:21:00    2017-04-01 12:21:00
79299    28380    931    2017-04-01 10:46:00    2017-04-01 10:46:00
79300    28380    776    2017-04-01 15:42:00    2017-04-01 15:42:00
79301    28380    919    2017-04-01 12:55:00    2017-04-01 12:55:00
79302    28380    839    2017-04-01 20:03:00    2017-04-01 20:03:00
79303    28381    533    2017-04-01 05:17:00    2017-04-01 05:17:00
79304    28381    686    2017-04-01 22:57:00    2017-04-01 22:57:00
79305    28381    823    2017-04-01 11:55:00    2017-04-01 11:55:00
79306    28381    774    2017-04-01 07:23:00    2017-04-01 07:23:00
79307    28381    948    2017-04-01 16:42:00    2017-04-01 16:42:00
79308    28382    723    2017-04-01 03:29:00    2017-04-01 03:29:00
79309    28382    904    2017-04-01 18:57:00    2017-04-01 18:57:00
79310    28382    601    2017-04-01 22:59:00    2017-04-01 22:59:00
79311    28382    811    2017-04-01 23:32:00    2017-04-01 23:32:00
79312    28382    797    2017-04-01 21:04:00    2017-04-01 21:04:00
79313    28383    766    2017-04-01 07:43:00    2017-04-01 07:43:00
79314    28383    512    2017-04-01 11:18:00    2017-04-01 11:18:00
79315    28383    617    2017-04-01 07:26:00    2017-04-01 07:26:00
79316    28383    591    2017-04-01 03:58:00    2017-04-01 03:58:00
79317    28383    950    2017-04-01 08:33:00    2017-04-01 08:33:00
79318    28384    618    2017-04-01 08:17:00    2017-04-01 08:17:00
79319    28384    794    2017-04-01 18:00:00    2017-04-01 18:00:00
79320    28384    532    2017-04-01 02:29:00    2017-04-01 02:29:00
79321    28384    947    2017-04-01 04:39:00    2017-04-01 04:39:00
79322    28384    465    2017-04-01 06:42:00    2017-04-01 06:42:00
79323    28385    961    2017-04-01 16:01:00    2017-04-01 16:01:00
79324    28385    711    2017-04-01 06:52:00    2017-04-01 06:52:00
79325    28385    666    2017-04-01 22:29:00    2017-04-01 22:29:00
79326    28385    710    2017-04-01 21:00:00    2017-04-01 21:00:00
79327    28385    821    2017-04-01 22:21:00    2017-04-01 22:21:00
79328    28386    474    2017-04-01 14:21:00    2017-04-01 14:21:00
79329    28386    594    2017-04-01 17:23:00    2017-04-01 17:23:00
79330    28386    714    2017-04-01 20:07:00    2017-04-01 20:07:00
79331    28386    873    2017-04-01 18:58:00    2017-04-01 18:58:00
79332    28386    592    2017-04-01 02:52:00    2017-04-01 02:52:00
79333    28387    672    2017-04-01 03:12:00    2017-04-01 03:12:00
79334    28387    516    2017-04-01 22:41:00    2017-04-01 22:41:00
79335    28387    735    2017-04-01 23:19:00    2017-04-01 23:19:00
79336    28387    518    2017-04-01 10:24:00    2017-04-01 10:24:00
79337    28387    715    2017-04-01 17:14:00    2017-04-01 17:14:00
79338    28388    480    2017-04-01 10:41:00    2017-04-01 10:41:00
79339    28388    864    2017-04-01 18:34:00    2017-04-01 18:34:00
79340    28388    652    2017-04-01 03:47:00    2017-04-01 03:47:00
79341    28388    501    2017-04-01 18:49:00    2017-04-01 18:49:00
79342    28388    848    2017-04-01 09:22:00    2017-04-01 09:22:00
79343    28389    512    2017-04-01 19:48:00    2017-04-01 19:48:00
79344    28389    491    2017-04-01 13:13:00    2017-04-01 13:13:00
79345    28389    501    2017-04-01 02:18:00    2017-04-01 02:18:00
79346    28389    623    2017-04-01 10:37:00    2017-04-01 10:37:00
79347    28389    592    2017-04-01 02:53:00    2017-04-01 02:53:00
79348    28390    688    2017-04-01 23:27:00    2017-04-01 23:27:00
79349    28390    904    2017-04-01 22:25:00    2017-04-01 22:25:00
79350    28390    781    2017-04-01 20:13:00    2017-04-01 20:13:00
79351    28390    708    2017-04-01 13:41:00    2017-04-01 13:41:00
79352    28390    775    2017-04-01 07:52:00    2017-04-01 07:52:00
79353    28391    796    2017-04-01 14:39:00    2017-04-01 14:39:00
79354    28391    811    2017-04-01 09:34:00    2017-04-01 09:34:00
79355    28391    475    2017-04-01 23:55:00    2017-04-01 23:55:00
79356    28391    711    2017-04-01 15:51:00    2017-04-01 15:51:00
79357    28391    585    2017-04-01 11:33:00    2017-04-01 11:33:00
79358    28392    619    2017-04-01 23:29:00    2017-04-01 23:29:00
79359    28392    745    2017-04-01 07:15:00    2017-04-01 07:15:00
79360    28392    807    2017-04-01 09:48:00    2017-04-01 09:48:00
79361    28392    765    2017-04-01 04:54:00    2017-04-01 04:54:00
79362    28392    946    2017-04-01 10:20:00    2017-04-01 10:20:00
79363    28393    948    2017-04-01 22:27:00    2017-04-01 22:27:00
79364    28393    725    2017-04-01 12:19:00    2017-04-01 12:19:00
79365    28393    572    2017-04-01 15:26:00    2017-04-01 15:26:00
79366    28393    646    2017-04-01 16:16:00    2017-04-01 16:16:00
79367    28393    835    2017-04-01 06:46:00    2017-04-01 06:46:00
79368    28394    496    2017-04-01 11:15:00    2017-04-01 11:15:00
79369    28394    579    2017-04-01 10:23:00    2017-04-01 10:23:00
79370    28394    507    2017-04-01 19:43:00    2017-04-01 19:43:00
79371    28394    603    2017-04-01 14:11:00    2017-04-01 14:11:00
79372    28394    854    2017-04-01 13:26:00    2017-04-01 13:26:00
79373    28395    484    2017-04-01 19:50:00    2017-04-01 19:50:00
79374    28395    627    2017-04-01 17:46:00    2017-04-01 17:46:00
79375    28395    506    2017-04-01 06:20:00    2017-04-01 06:20:00
79376    28395    518    2017-04-01 01:02:00    2017-04-01 01:02:00
79377    28395    583    2017-04-01 04:34:00    2017-04-01 04:34:00
79378    28396    723    2017-04-01 12:03:00    2017-04-01 12:03:00
79379    28396    948    2017-04-01 19:16:00    2017-04-01 19:16:00
79380    28396    815    2017-04-01 22:47:00    2017-04-01 22:47:00
79381    28396    576    2017-04-01 17:03:00    2017-04-01 17:03:00
79382    28396    960    2017-04-01 23:59:00    2017-04-01 23:59:00
79383    28397    748    2017-04-01 09:15:00    2017-04-01 09:15:00
79384    28397    869    2017-04-01 16:00:00    2017-04-01 16:00:00
79385    28397    666    2017-04-01 17:58:00    2017-04-01 17:58:00
79386    28397    763    2017-04-01 10:50:00    2017-04-01 10:50:00
79387    28397    878    2017-04-01 10:44:00    2017-04-01 10:44:00
79388    28398    900    2017-04-01 15:08:00    2017-04-01 15:08:00
79389    28398    892    2017-04-01 05:40:00    2017-04-01 05:40:00
79390    28398    720    2017-04-01 08:49:00    2017-04-01 08:49:00
79391    28398    485    2017-04-01 05:24:00    2017-04-01 05:24:00
79392    28398    517    2017-04-01 11:40:00    2017-04-01 11:40:00
79393    28399    856    2017-04-01 23:47:00    2017-04-01 23:47:00
79394    28399    480    2017-04-01 19:42:00    2017-04-01 19:42:00
79395    28399    463    2017-04-01 10:58:00    2017-04-01 10:58:00
79396    28399    530    2017-04-01 08:38:00    2017-04-01 08:38:00
79397    28399    873    2017-04-01 11:20:00    2017-04-01 11:20:00
79398    28400    709    2017-04-01 07:00:00    2017-04-01 07:00:00
79399    28400    579    2017-04-01 03:08:00    2017-04-01 03:08:00
79400    28400    710    2017-04-01 03:18:00    2017-04-01 03:18:00
79401    28400    712    2017-04-01 10:53:00    2017-04-01 10:53:00
79402    28400    949    2017-04-01 13:02:00    2017-04-01 13:02:00
79403    28401    530    2017-04-01 21:49:00    2017-04-01 21:49:00
79404    28401    640    2017-04-01 21:23:00    2017-04-01 21:23:00
79405    28401    556    2017-04-01 13:10:00    2017-04-01 13:10:00
79406    28401    695    2017-04-01 17:50:00    2017-04-01 17:50:00
79407    28401    483    2017-04-01 11:46:00    2017-04-01 11:46:00
79408    28402    520    2017-04-01 13:28:00    2017-04-01 13:28:00
79409    28402    759    2017-04-01 14:12:00    2017-04-01 14:12:00
79410    28402    644    2017-04-01 01:53:00    2017-04-01 01:53:00
79411    28402    678    2017-04-01 14:01:00    2017-04-01 14:01:00
79412    28402    789    2017-04-01 17:16:00    2017-04-01 17:16:00
79413    28403    571    2017-04-01 10:01:00    2017-04-01 10:01:00
79414    28403    577    2017-04-01 22:53:00    2017-04-01 22:53:00
79415    28403    770    2017-04-01 21:19:00    2017-04-01 21:19:00
79416    28403    522    2017-04-01 07:27:00    2017-04-01 07:27:00
79417    28403    797    2017-04-01 22:11:00    2017-04-01 22:11:00
79418    28404    559    2017-04-01 15:35:00    2017-04-01 15:35:00
79419    28404    467    2017-04-01 12:03:00    2017-04-01 12:03:00
79420    28404    780    2017-04-01 08:51:00    2017-04-01 08:51:00
79421    28404    662    2017-04-01 19:02:00    2017-04-01 19:02:00
79422    28404    668    2017-04-01 11:41:00    2017-04-01 11:41:00
79423    28405    559    2017-04-01 10:25:00    2017-04-01 10:25:00
79424    28405    938    2017-04-01 10:00:00    2017-04-01 10:00:00
79425    28405    567    2017-04-01 12:08:00    2017-04-01 12:08:00
79426    28405    876    2017-04-01 08:39:00    2017-04-01 08:39:00
79427    28405    832    2017-04-01 15:17:00    2017-04-01 15:17:00
79428    28406    757    2017-04-01 13:00:00    2017-04-01 13:00:00
79429    28406    585    2017-04-01 14:33:00    2017-04-01 14:33:00
79430    28406    745    2017-04-01 05:31:00    2017-04-01 05:31:00
79431    28406    805    2017-04-01 23:06:00    2017-04-01 23:06:00
79432    28406    481    2017-04-01 23:05:00    2017-04-01 23:05:00
79433    28407    800    2017-04-01 19:58:00    2017-04-01 19:58:00
79434    28407    504    2017-04-01 11:35:00    2017-04-01 11:35:00
79435    28407    901    2017-04-01 16:09:00    2017-04-01 16:09:00
79436    28407    889    2017-04-01 11:49:00    2017-04-01 11:49:00
79437    28407    716    2017-04-01 22:00:00    2017-04-01 22:00:00
79438    28408    877    2017-04-01 03:17:00    2017-04-01 03:17:00
79439    28408    511    2017-04-01 08:33:00    2017-04-01 08:33:00
79440    28408    759    2017-04-01 19:10:00    2017-04-01 19:10:00
79441    28408    821    2017-04-01 02:36:00    2017-04-01 02:36:00
79442    28408    894    2017-04-01 13:34:00    2017-04-01 13:34:00
79443    28409    844    2017-04-01 16:40:00    2017-04-01 16:40:00
79444    28409    563    2017-04-01 16:56:00    2017-04-01 16:56:00
79445    28409    726    2017-04-01 02:00:00    2017-04-01 02:00:00
79446    28409    488    2017-04-01 01:48:00    2017-04-01 01:48:00
79447    28409    567    2017-04-01 17:50:00    2017-04-01 17:50:00
79448    28410    764    2017-04-01 16:22:00    2017-04-01 16:22:00
79449    28410    873    2017-04-01 08:55:00    2017-04-01 08:55:00
79450    28410    731    2017-04-01 17:56:00    2017-04-01 17:56:00
79451    28410    810    2017-04-01 13:11:00    2017-04-01 13:11:00
79452    28410    932    2017-04-01 18:45:00    2017-04-01 18:45:00
79453    28411    677    2017-04-01 21:34:00    2017-04-01 21:34:00
79454    28411    571    2017-04-01 17:16:00    2017-04-01 17:16:00
79455    28411    498    2017-04-01 07:05:00    2017-04-01 07:05:00
79456    28411    792    2017-04-01 04:38:00    2017-04-01 04:38:00
79457    28411    676    2017-04-01 15:45:00    2017-04-01 15:45:00
79458    28412    499    2017-04-01 14:30:00    2017-04-01 14:30:00
79459    28412    868    2017-04-01 16:13:00    2017-04-01 16:13:00
79460    28412    486    2017-04-01 11:26:00    2017-04-01 11:26:00
79461    28412    755    2017-04-01 09:00:00    2017-04-01 09:00:00
79462    28412    805    2017-04-01 08:39:00    2017-04-01 08:39:00
79463    28413    641    2017-04-01 23:08:00    2017-04-01 23:08:00
79464    28413    681    2017-04-01 17:28:00    2017-04-01 17:28:00
79465    28413    763    2017-04-01 20:04:00    2017-04-01 20:04:00
79466    28413    859    2017-04-01 20:53:00    2017-04-01 20:53:00
79467    28413    762    2017-04-01 18:41:00    2017-04-01 18:41:00
79468    28414    943    2017-04-01 14:21:00    2017-04-01 14:21:00
79469    28414    831    2017-04-01 06:27:00    2017-04-01 06:27:00
79470    28414    541    2017-04-01 05:37:00    2017-04-01 05:37:00
79471    28414    558    2017-04-01 09:45:00    2017-04-01 09:45:00
79472    28414    848    2017-04-01 12:20:00    2017-04-01 12:20:00
79473    28415    675    2017-04-01 05:09:00    2017-04-01 05:09:00
79474    28415    857    2017-04-01 23:28:00    2017-04-01 23:28:00
79475    28415    859    2017-04-01 01:38:00    2017-04-01 01:38:00
79476    28415    780    2017-04-01 06:34:00    2017-04-01 06:34:00
79477    28415    491    2017-04-01 06:33:00    2017-04-01 06:33:00
79478    28416    546    2017-04-01 12:36:00    2017-04-01 12:36:00
79479    28416    548    2017-04-01 18:38:00    2017-04-01 18:38:00
79480    28416    747    2017-04-01 19:59:00    2017-04-01 19:59:00
79481    28416    930    2017-04-01 21:18:00    2017-04-01 21:18:00
79482    28416    517    2017-04-01 23:10:00    2017-04-01 23:10:00
79483    28417    703    2017-04-01 12:00:00    2017-04-01 12:00:00
79484    28417    496    2017-04-01 16:40:00    2017-04-01 16:40:00
79485    28417    572    2017-04-01 02:39:00    2017-04-01 02:39:00
79486    28417    633    2017-04-01 17:38:00    2017-04-01 17:38:00
79487    28417    837    2017-04-01 19:16:00    2017-04-01 19:16:00
79488    28418    827    2017-04-01 04:01:00    2017-04-01 04:01:00
79489    28418    501    2017-04-01 23:56:00    2017-04-01 23:56:00
79490    28418    630    2017-04-01 02:02:00    2017-04-01 02:02:00
79491    28418    581    2017-04-01 04:14:00    2017-04-01 04:14:00
79492    28418    683    2017-04-01 02:50:00    2017-04-01 02:50:00
79493    28419    618    2017-04-01 19:54:00    2017-04-01 19:54:00
79494    28419    915    2017-04-01 17:09:00    2017-04-01 17:09:00
79495    28419    572    2017-04-01 23:16:00    2017-04-01 23:16:00
79496    28419    764    2017-04-01 23:40:00    2017-04-01 23:40:00
79497    28419    626    2017-04-01 20:13:00    2017-04-01 20:13:00
79498    28420    681    2017-04-01 04:36:00    2017-04-01 04:36:00
79499    28420    815    2017-04-01 20:31:00    2017-04-01 20:31:00
79500    28420    643    2017-04-01 12:39:00    2017-04-01 12:39:00
79501    28420    872    2017-04-01 15:44:00    2017-04-01 15:44:00
79502    28420    901    2017-04-01 17:15:00    2017-04-01 17:15:00
79503    28421    647    2017-04-01 17:40:00    2017-04-01 17:40:00
79504    28421    671    2017-04-01 02:38:00    2017-04-01 02:38:00
79505    28421    788    2017-04-01 08:38:00    2017-04-01 08:38:00
79506    28421    934    2017-04-01 20:53:00    2017-04-01 20:53:00
79507    28421    471    2017-04-01 07:15:00    2017-04-01 07:15:00
79508    28422    792    2017-04-01 11:29:00    2017-04-01 11:29:00
79509    28422    747    2017-04-01 16:44:00    2017-04-01 16:44:00
79510    28422    640    2017-04-01 16:20:00    2017-04-01 16:20:00
79511    28422    849    2017-04-01 15:47:00    2017-04-01 15:47:00
79512    28422    468    2017-04-01 07:22:00    2017-04-01 07:22:00
79513    28423    548    2017-04-01 06:00:00    2017-04-01 06:00:00
79514    28423    619    2017-04-01 04:57:00    2017-04-01 04:57:00
79515    28423    642    2017-04-01 14:56:00    2017-04-01 14:56:00
79516    28423    516    2017-04-01 03:11:00    2017-04-01 03:11:00
79517    28423    646    2017-04-01 05:36:00    2017-04-01 05:36:00
79518    28424    922    2017-04-01 11:17:00    2017-04-01 11:17:00
79519    28424    485    2017-04-01 10:55:00    2017-04-01 10:55:00
79520    28424    926    2017-04-01 14:46:00    2017-04-01 14:46:00
79521    28424    886    2017-04-01 16:40:00    2017-04-01 16:40:00
79522    28424    621    2017-04-01 02:37:00    2017-04-01 02:37:00
79523    28425    775    2017-04-01 05:26:00    2017-04-01 05:26:00
79524    28425    499    2017-04-01 23:40:00    2017-04-01 23:40:00
79525    28425    735    2017-04-01 19:22:00    2017-04-01 19:22:00
79526    28425    495    2017-04-01 11:31:00    2017-04-01 11:31:00
79527    28425    910    2017-04-01 09:40:00    2017-04-01 09:40:00
79528    28426    921    2017-04-01 17:31:00    2017-04-01 17:31:00
79529    28426    495    2017-04-01 07:59:00    2017-04-01 07:59:00
79530    28426    797    2017-04-01 03:34:00    2017-04-01 03:34:00
79531    28426    813    2017-04-01 08:01:00    2017-04-01 08:01:00
79532    28426    654    2017-04-01 07:00:00    2017-04-01 07:00:00
79533    28427    819    2017-04-01 14:00:00    2017-04-01 14:00:00
79534    28427    767    2017-04-01 11:58:00    2017-04-01 11:58:00
79535    28427    867    2017-04-01 18:38:00    2017-04-01 18:38:00
79536    28427    514    2017-04-01 16:38:00    2017-04-01 16:38:00
79537    28427    898    2017-04-01 10:35:00    2017-04-01 10:35:00
79538    28428    908    2017-04-01 21:04:00    2017-04-01 21:04:00
79539    28428    549    2017-04-01 20:39:00    2017-04-01 20:39:00
79540    28428    522    2017-04-01 19:25:00    2017-04-01 19:25:00
79541    28428    624    2017-04-01 23:17:00    2017-04-01 23:17:00
79542    28428    943    2017-04-01 23:05:00    2017-04-01 23:05:00
79543    28429    671    2017-04-01 19:23:00    2017-04-01 19:23:00
79544    28429    477    2017-04-01 04:17:00    2017-04-01 04:17:00
79545    28429    470    2017-04-01 17:53:00    2017-04-01 17:53:00
79546    28429    476    2017-04-01 17:24:00    2017-04-01 17:24:00
79547    28429    466    2017-04-01 14:12:00    2017-04-01 14:12:00
79548    28430    675    2017-04-01 22:08:00    2017-04-01 22:08:00
79549    28430    821    2017-04-01 07:14:00    2017-04-01 07:14:00
79550    28430    780    2017-04-01 18:01:00    2017-04-01 18:01:00
79551    28430    707    2017-04-01 05:16:00    2017-04-01 05:16:00
79552    28430    618    2017-04-01 06:08:00    2017-04-01 06:08:00
79553    28431    614    2017-04-01 10:22:00    2017-04-01 10:22:00
79554    28431    947    2017-04-01 22:00:00    2017-04-01 22:00:00
79555    28431    674    2017-04-01 04:28:00    2017-04-01 04:28:00
79556    28431    558    2017-04-01 19:16:00    2017-04-01 19:16:00
79557    28431    609    2017-04-01 09:57:00    2017-04-01 09:57:00
79558    28432    944    2017-04-01 15:46:00    2017-04-01 15:46:00
79559    28432    605    2017-04-01 11:39:00    2017-04-01 11:39:00
79560    28432    844    2017-04-01 02:27:00    2017-04-01 02:27:00
79561    28432    545    2017-04-01 08:09:00    2017-04-01 08:09:00
79562    28432    959    2017-04-01 07:52:00    2017-04-01 07:52:00
79563    28433    635    2017-04-01 05:31:00    2017-04-01 05:31:00
79564    28433    563    2017-04-01 03:06:00    2017-04-01 03:06:00
79565    28433    742    2017-04-01 23:12:00    2017-04-01 23:12:00
79566    28433    786    2017-04-01 19:56:00    2017-04-01 19:56:00
79567    28433    954    2017-04-01 17:19:00    2017-04-01 17:19:00
79568    28434    762    2017-04-01 05:15:00    2017-04-01 05:15:00
79569    28434    571    2017-04-01 08:20:00    2017-04-01 08:20:00
79570    28434    510    2017-04-01 09:03:00    2017-04-01 09:03:00
79571    28434    808    2017-04-01 03:15:00    2017-04-01 03:15:00
79572    28434    750    2017-04-01 21:16:00    2017-04-01 21:16:00
79573    28435    612    2017-04-01 01:58:00    2017-04-01 01:58:00
79574    28435    653    2017-04-01 20:41:00    2017-04-01 20:41:00
79575    28435    926    2017-04-01 22:33:00    2017-04-01 22:33:00
79576    28435    816    2017-04-01 07:01:00    2017-04-01 07:01:00
79577    28435    855    2017-04-01 07:47:00    2017-04-01 07:47:00
79578    28436    582    2017-04-01 01:35:00    2017-04-01 01:35:00
79579    28436    722    2017-04-01 01:15:00    2017-04-01 01:15:00
79580    28436    502    2017-04-01 05:24:00    2017-04-01 05:24:00
79581    28436    553    2017-04-01 17:14:00    2017-04-01 17:14:00
79582    28436    935    2017-04-01 02:51:00    2017-04-01 02:51:00
79583    28437    803    2017-04-01 09:17:00    2017-04-01 09:17:00
79584    28437    795    2017-04-01 06:53:00    2017-04-01 06:53:00
79585    28437    633    2017-04-01 14:41:00    2017-04-01 14:41:00
79586    28437    758    2017-04-01 19:15:00    2017-04-01 19:15:00
79587    28437    593    2017-04-01 11:09:00    2017-04-01 11:09:00
79588    28438    531    2017-04-01 17:27:00    2017-04-01 17:27:00
79589    28438    790    2017-04-01 13:31:00    2017-04-01 13:31:00
79590    28438    501    2017-04-01 19:32:00    2017-04-01 19:32:00
79591    28438    785    2017-04-01 23:31:00    2017-04-01 23:31:00
79592    28438    760    2017-04-01 14:42:00    2017-04-01 14:42:00
79593    28439    910    2017-04-01 20:00:00    2017-04-01 20:00:00
79594    28439    858    2017-04-01 06:30:00    2017-04-01 06:30:00
79595    28439    671    2017-04-01 06:30:00    2017-04-01 06:30:00
79596    28439    794    2017-04-01 03:20:00    2017-04-01 03:20:00
79597    28439    720    2017-04-01 17:21:00    2017-04-01 17:21:00
79598    28440    502    2017-04-02 02:54:00    2017-04-02 02:54:00
79599    28440    759    2017-04-02 13:29:00    2017-04-02 13:29:00
79600    28440    629    2017-04-02 07:10:00    2017-04-02 07:10:00
79601    28440    662    2017-04-02 13:40:00    2017-04-02 13:40:00
79602    28440    585    2017-04-02 05:16:00    2017-04-02 05:16:00
79603    28441    884    2017-04-02 20:57:00    2017-04-02 20:57:00
79604    28441    571    2017-04-02 08:09:00    2017-04-02 08:09:00
79605    28441    806    2017-04-02 17:56:00    2017-04-02 17:56:00
79606    28441    740    2017-04-02 20:32:00    2017-04-02 20:32:00
79607    28441    630    2017-04-02 11:34:00    2017-04-02 11:34:00
79608    28442    622    2017-04-02 23:04:00    2017-04-02 23:04:00
79609    28442    645    2017-04-02 04:10:00    2017-04-02 04:10:00
79610    28442    558    2017-04-02 03:24:00    2017-04-02 03:24:00
79611    28442    488    2017-04-02 09:49:00    2017-04-02 09:49:00
79612    28442    801    2017-04-02 14:02:00    2017-04-02 14:02:00
79613    28443    552    2017-04-02 07:01:00    2017-04-02 07:01:00
79614    28443    483    2017-04-02 02:49:00    2017-04-02 02:49:00
79615    28443    693    2017-04-02 05:18:00    2017-04-02 05:18:00
79616    28443    825    2017-04-02 20:39:00    2017-04-02 20:39:00
79617    28443    828    2017-04-02 22:00:00    2017-04-02 22:00:00
79618    28444    643    2017-04-02 22:15:00    2017-04-02 22:15:00
79619    28444    689    2017-04-02 18:09:00    2017-04-02 18:09:00
79620    28444    825    2017-04-02 05:04:00    2017-04-02 05:04:00
79621    28444    856    2017-04-02 20:10:00    2017-04-02 20:10:00
79622    28444    500    2017-04-02 09:05:00    2017-04-02 09:05:00
79623    28445    812    2017-04-02 17:22:00    2017-04-02 17:22:00
79624    28445    696    2017-04-02 17:58:00    2017-04-02 17:58:00
79625    28445    854    2017-04-02 19:18:00    2017-04-02 19:18:00
79626    28445    517    2017-04-02 19:46:00    2017-04-02 19:46:00
79627    28445    483    2017-04-02 06:19:00    2017-04-02 06:19:00
79628    28446    684    2017-04-02 09:32:00    2017-04-02 09:32:00
79629    28446    544    2017-04-02 03:12:00    2017-04-02 03:12:00
79630    28446    650    2017-04-02 18:57:00    2017-04-02 18:57:00
79631    28446    941    2017-04-02 18:48:00    2017-04-02 18:48:00
79632    28446    531    2017-04-02 06:10:00    2017-04-02 06:10:00
79633    28447    741    2017-04-02 06:52:00    2017-04-02 06:52:00
79634    28447    671    2017-04-02 05:14:00    2017-04-02 05:14:00
79635    28447    838    2017-04-02 11:28:00    2017-04-02 11:28:00
79636    28447    562    2017-04-02 12:38:00    2017-04-02 12:38:00
79637    28447    764    2017-04-02 22:10:00    2017-04-02 22:10:00
79638    28448    630    2017-04-02 18:12:00    2017-04-02 18:12:00
79639    28448    538    2017-04-02 03:34:00    2017-04-02 03:34:00
79640    28448    581    2017-04-02 05:33:00    2017-04-02 05:33:00
79641    28448    602    2017-04-02 20:14:00    2017-04-02 20:14:00
79642    28448    639    2017-04-02 06:14:00    2017-04-02 06:14:00
79643    28449    831    2017-04-02 18:35:00    2017-04-02 18:35:00
79644    28449    662    2017-04-02 03:20:00    2017-04-02 03:20:00
79645    28449    669    2017-04-02 13:41:00    2017-04-02 13:41:00
79646    28449    560    2017-04-02 05:02:00    2017-04-02 05:02:00
79647    28449    592    2017-04-02 11:39:00    2017-04-02 11:39:00
79648    28450    560    2017-04-02 20:06:00    2017-04-02 20:06:00
79649    28450    523    2017-04-02 03:41:00    2017-04-02 03:41:00
79650    28450    686    2017-04-02 05:32:00    2017-04-02 05:32:00
79651    28450    782    2017-04-02 03:55:00    2017-04-02 03:55:00
79652    28450    796    2017-04-02 19:07:00    2017-04-02 19:07:00
79653    28451    653    2017-04-02 02:58:00    2017-04-02 02:58:00
79654    28451    625    2017-04-02 20:49:00    2017-04-02 20:49:00
79655    28451    835    2017-04-02 17:35:00    2017-04-02 17:35:00
79656    28451    957    2017-04-02 06:28:00    2017-04-02 06:28:00
79657    28451    577    2017-04-02 07:48:00    2017-04-02 07:48:00
79658    28452    856    2017-04-02 18:53:00    2017-04-02 18:53:00
79659    28452    865    2017-04-02 03:44:00    2017-04-02 03:44:00
79660    28452    491    2017-04-02 11:29:00    2017-04-02 11:29:00
79661    28452    839    2017-04-02 16:47:00    2017-04-02 16:47:00
79662    28452    867    2017-04-02 04:43:00    2017-04-02 04:43:00
79663    28453    770    2017-04-02 08:29:00    2017-04-02 08:29:00
79664    28453    667    2017-04-02 16:52:00    2017-04-02 16:52:00
79665    28453    842    2017-04-02 02:00:00    2017-04-02 02:00:00
79666    28453    816    2017-04-02 08:28:00    2017-04-02 08:28:00
79667    28453    805    2017-04-02 20:36:00    2017-04-02 20:36:00
79668    28454    693    2017-04-02 14:49:00    2017-04-02 14:49:00
79669    28454    501    2017-04-02 12:15:00    2017-04-02 12:15:00
79670    28454    888    2017-04-02 23:12:00    2017-04-02 23:12:00
79671    28454    630    2017-04-02 04:05:00    2017-04-02 04:05:00
79672    28454    516    2017-04-02 17:56:00    2017-04-02 17:56:00
79673    28455    944    2017-04-02 15:02:00    2017-04-02 15:02:00
79674    28455    485    2017-04-02 18:57:00    2017-04-02 18:57:00
79675    28455    494    2017-04-02 23:16:00    2017-04-02 23:16:00
79676    28455    541    2017-04-02 11:28:00    2017-04-02 11:28:00
79677    28455    484    2017-04-02 04:22:00    2017-04-02 04:22:00
79678    28456    740    2017-04-02 18:22:00    2017-04-02 18:22:00
79679    28456    568    2017-04-02 10:29:00    2017-04-02 10:29:00
79680    28456    628    2017-04-02 16:17:00    2017-04-02 16:17:00
79681    28456    629    2017-04-02 06:21:00    2017-04-02 06:21:00
79682    28456    646    2017-04-02 23:48:00    2017-04-02 23:48:00
79683    28457    482    2017-04-02 12:26:00    2017-04-02 12:26:00
79684    28457    956    2017-04-02 05:05:00    2017-04-02 05:05:00
79685    28457    525    2017-04-02 04:26:00    2017-04-02 04:26:00
79686    28457    627    2017-04-02 03:48:00    2017-04-02 03:48:00
79687    28457    842    2017-04-02 19:19:00    2017-04-02 19:19:00
79688    28458    481    2017-04-02 15:00:00    2017-04-02 15:00:00
79689    28458    776    2017-04-02 22:15:00    2017-04-02 22:15:00
79690    28458    648    2017-04-02 16:20:00    2017-04-02 16:20:00
79691    28458    785    2017-04-02 10:47:00    2017-04-02 10:47:00
79692    28458    520    2017-04-02 06:59:00    2017-04-02 06:59:00
79693    28459    507    2017-04-02 11:47:00    2017-04-02 11:47:00
79694    28459    745    2017-04-02 01:11:00    2017-04-02 01:11:00
79695    28459    791    2017-04-02 06:39:00    2017-04-02 06:39:00
79696    28459    628    2017-04-02 05:51:00    2017-04-02 05:51:00
79697    28459    705    2017-04-02 18:22:00    2017-04-02 18:22:00
79698    28460    744    2017-04-02 23:08:00    2017-04-02 23:08:00
79699    28460    527    2017-04-02 16:44:00    2017-04-02 16:44:00
79700    28460    813    2017-04-02 09:51:00    2017-04-02 09:51:00
79701    28460    601    2017-04-02 23:23:00    2017-04-02 23:23:00
79702    28460    925    2017-04-02 05:51:00    2017-04-02 05:51:00
79703    28461    691    2017-04-02 17:08:00    2017-04-02 17:08:00
79704    28461    593    2017-04-02 09:14:00    2017-04-02 09:14:00
79705    28461    934    2017-04-02 05:47:00    2017-04-02 05:47:00
79706    28461    931    2017-04-02 23:47:00    2017-04-02 23:47:00
79707    28461    648    2017-04-02 07:27:00    2017-04-02 07:27:00
79708    28462    719    2017-04-02 11:55:00    2017-04-02 11:55:00
79709    28462    595    2017-04-02 03:53:00    2017-04-02 03:53:00
79710    28462    627    2017-04-02 18:16:00    2017-04-02 18:16:00
79711    28462    625    2017-04-02 08:39:00    2017-04-02 08:39:00
79712    28462    596    2017-04-02 14:33:00    2017-04-02 14:33:00
79713    28463    731    2017-04-02 01:19:00    2017-04-02 01:19:00
79714    28463    678    2017-04-02 14:53:00    2017-04-02 14:53:00
79715    28463    667    2017-04-02 17:21:00    2017-04-02 17:21:00
79716    28463    885    2017-04-02 12:59:00    2017-04-02 12:59:00
79717    28463    668    2017-04-02 10:36:00    2017-04-02 10:36:00
79718    28464    584    2017-04-02 11:55:00    2017-04-02 11:55:00
79719    28464    780    2017-04-02 18:00:00    2017-04-02 18:00:00
79720    28464    890    2017-04-02 07:33:00    2017-04-02 07:33:00
79721    28464    700    2017-04-02 16:56:00    2017-04-02 16:56:00
79722    28464    621    2017-04-02 18:24:00    2017-04-02 18:24:00
79723    28465    580    2017-04-02 14:00:00    2017-04-02 14:00:00
79724    28465    835    2017-04-02 12:47:00    2017-04-02 12:47:00
79725    28465    827    2017-04-02 12:05:00    2017-04-02 12:05:00
79726    28465    480    2017-04-02 10:34:00    2017-04-02 10:34:00
79727    28465    691    2017-04-02 01:29:00    2017-04-02 01:29:00
79728    28466    598    2017-04-02 04:50:00    2017-04-02 04:50:00
79729    28466    888    2017-04-02 05:56:00    2017-04-02 05:56:00
79730    28466    612    2017-04-02 01:52:00    2017-04-02 01:52:00
79731    28466    561    2017-04-02 09:00:00    2017-04-02 09:00:00
79732    28466    625    2017-04-02 21:57:00    2017-04-02 21:57:00
79733    28467    596    2017-04-02 15:18:00    2017-04-02 15:18:00
79734    28467    561    2017-04-02 05:50:00    2017-04-02 05:50:00
79735    28467    467    2017-04-02 21:24:00    2017-04-02 21:24:00
79736    28467    619    2017-04-02 08:14:00    2017-04-02 08:14:00
79737    28467    589    2017-04-02 12:10:00    2017-04-02 12:10:00
79738    28468    927    2017-04-02 09:26:00    2017-04-02 09:26:00
79739    28468    674    2017-04-02 04:34:00    2017-04-02 04:34:00
79740    28468    804    2017-04-02 16:54:00    2017-04-02 16:54:00
79741    28468    644    2017-04-02 16:03:00    2017-04-02 16:03:00
79742    28468    948    2017-04-02 22:35:00    2017-04-02 22:35:00
79743    28469    708    2017-04-02 14:23:00    2017-04-02 14:23:00
79744    28469    938    2017-04-02 20:54:00    2017-04-02 20:54:00
79745    28469    902    2017-04-02 08:49:00    2017-04-02 08:49:00
79746    28469    490    2017-04-02 19:00:00    2017-04-02 19:00:00
79747    28469    804    2017-04-02 01:41:00    2017-04-02 01:41:00
79748    28470    470    2017-04-02 06:38:00    2017-04-02 06:38:00
79749    28470    823    2017-04-02 01:51:00    2017-04-02 01:51:00
79750    28470    596    2017-04-02 17:37:00    2017-04-02 17:37:00
79751    28470    745    2017-04-02 14:14:00    2017-04-02 14:14:00
79752    28470    551    2017-04-02 14:06:00    2017-04-02 14:06:00
79753    28471    956    2017-04-02 01:03:00    2017-04-02 01:03:00
79754    28471    786    2017-04-02 22:32:00    2017-04-02 22:32:00
79755    28471    729    2017-04-02 15:11:00    2017-04-02 15:11:00
79756    28471    912    2017-04-02 17:14:00    2017-04-02 17:14:00
79757    28471    882    2017-04-02 14:49:00    2017-04-02 14:49:00
79758    28472    881    2017-04-02 01:24:00    2017-04-02 01:24:00
79759    28472    926    2017-04-02 07:33:00    2017-04-02 07:33:00
79760    28472    567    2017-04-02 14:45:00    2017-04-02 14:45:00
79761    28472    698    2017-04-02 23:01:00    2017-04-02 23:01:00
79762    28472    773    2017-04-02 14:03:00    2017-04-02 14:03:00
79763    28473    621    2017-04-02 11:21:00    2017-04-02 11:21:00
79764    28473    526    2017-04-02 22:35:00    2017-04-02 22:35:00
79765    28473    947    2017-04-02 23:02:00    2017-04-02 23:02:00
79766    28473    925    2017-04-02 09:28:00    2017-04-02 09:28:00
79767    28473    857    2017-04-02 02:53:00    2017-04-02 02:53:00
79768    28474    857    2017-04-02 17:04:00    2017-04-02 17:04:00
79769    28474    696    2017-04-02 22:45:00    2017-04-02 22:45:00
79770    28474    526    2017-04-02 01:46:00    2017-04-02 01:46:00
79771    28474    623    2017-04-02 20:28:00    2017-04-02 20:28:00
79772    28474    945    2017-04-02 15:19:00    2017-04-02 15:19:00
79773    28475    488    2017-04-02 06:08:00    2017-04-02 06:08:00
79774    28475    918    2017-04-02 14:37:00    2017-04-02 14:37:00
79775    28475    784    2017-04-02 23:22:00    2017-04-02 23:22:00
79776    28475    927    2017-04-02 05:07:00    2017-04-02 05:07:00
79777    28475    834    2017-04-02 13:07:00    2017-04-02 13:07:00
79778    28476    712    2017-04-02 22:17:00    2017-04-02 22:17:00
79779    28476    893    2017-04-02 04:37:00    2017-04-02 04:37:00
79780    28476    644    2017-04-02 03:14:00    2017-04-02 03:14:00
79781    28476    878    2017-04-02 17:36:00    2017-04-02 17:36:00
79782    28476    579    2017-04-02 05:43:00    2017-04-02 05:43:00
79783    28477    493    2017-04-02 19:47:00    2017-04-02 19:47:00
79784    28477    557    2017-04-02 22:22:00    2017-04-02 22:22:00
79785    28477    644    2017-04-02 09:15:00    2017-04-02 09:15:00
79786    28477    553    2017-04-02 05:46:00    2017-04-02 05:46:00
79787    28477    810    2017-04-02 13:47:00    2017-04-02 13:47:00
79788    28478    463    2017-04-02 10:19:00    2017-04-02 10:19:00
79789    28478    630    2017-04-02 08:01:00    2017-04-02 08:01:00
79790    28478    821    2017-04-02 17:22:00    2017-04-02 17:22:00
79791    28478    622    2017-04-02 21:34:00    2017-04-02 21:34:00
79792    28478    924    2017-04-02 02:49:00    2017-04-02 02:49:00
79793    28479    702    2017-04-02 16:52:00    2017-04-02 16:52:00
79794    28479    917    2017-04-02 08:52:00    2017-04-02 08:52:00
79795    28479    702    2017-04-02 10:50:00    2017-04-02 10:50:00
79796    28479    724    2017-04-02 17:23:00    2017-04-02 17:23:00
79797    28479    830    2017-04-02 02:25:00    2017-04-02 02:25:00
79798    28480    577    2017-04-02 05:10:00    2017-04-02 05:10:00
79799    28480    714    2017-04-02 06:39:00    2017-04-02 06:39:00
79800    28480    722    2017-04-02 10:22:00    2017-04-02 10:22:00
79801    28480    680    2017-04-02 20:45:00    2017-04-02 20:45:00
79802    28480    752    2017-04-02 08:32:00    2017-04-02 08:32:00
79803    28481    699    2017-04-02 04:29:00    2017-04-02 04:29:00
79804    28481    854    2017-04-02 01:23:00    2017-04-02 01:23:00
79805    28481    696    2017-04-02 18:04:00    2017-04-02 18:04:00
79806    28481    700    2017-04-02 02:20:00    2017-04-02 02:20:00
79807    28481    538    2017-04-02 19:56:00    2017-04-02 19:56:00
79808    28482    504    2017-04-02 02:32:00    2017-04-02 02:32:00
79809    28482    572    2017-04-02 23:21:00    2017-04-02 23:21:00
79810    28482    534    2017-04-02 15:49:00    2017-04-02 15:49:00
79811    28482    888    2017-04-02 23:07:00    2017-04-02 23:07:00
79812    28482    820    2017-04-02 07:48:00    2017-04-02 07:48:00
79813    28483    799    2017-04-02 01:10:00    2017-04-02 01:10:00
79814    28483    887    2017-04-02 16:10:00    2017-04-02 16:10:00
79815    28483    677    2017-04-02 03:49:00    2017-04-02 03:49:00
79816    28483    481    2017-04-02 18:31:00    2017-04-02 18:31:00
79817    28483    686    2017-04-02 01:42:00    2017-04-02 01:42:00
79818    28484    468    2017-04-02 09:43:00    2017-04-02 09:43:00
79819    28484    539    2017-04-02 21:42:00    2017-04-02 21:42:00
79820    28484    868    2017-04-02 14:07:00    2017-04-02 14:07:00
79821    28484    876    2017-04-02 23:50:00    2017-04-02 23:50:00
79822    28484    621    2017-04-02 18:54:00    2017-04-02 18:54:00
79823    28485    608    2017-04-02 18:36:00    2017-04-02 18:36:00
79824    28485    597    2017-04-02 20:03:00    2017-04-02 20:03:00
79825    28485    803    2017-04-02 07:25:00    2017-04-02 07:25:00
79826    28485    636    2017-04-02 18:05:00    2017-04-02 18:05:00
79827    28485    870    2017-04-02 01:46:00    2017-04-02 01:46:00
79828    28486    822    2017-04-02 21:30:00    2017-04-02 21:30:00
79829    28486    755    2017-04-02 05:58:00    2017-04-02 05:58:00
79830    28486    484    2017-04-02 06:23:00    2017-04-02 06:23:00
79831    28486    488    2017-04-02 17:00:00    2017-04-02 17:00:00
79832    28486    581    2017-04-02 10:11:00    2017-04-02 10:11:00
79833    28487    544    2017-04-02 22:06:00    2017-04-02 22:06:00
79834    28487    492    2017-04-02 01:27:00    2017-04-02 01:27:00
79835    28487    888    2017-04-02 18:40:00    2017-04-02 18:40:00
79836    28487    807    2017-04-02 03:49:00    2017-04-02 03:49:00
79837    28487    868    2017-04-02 06:50:00    2017-04-02 06:50:00
79838    28488    728    2017-04-02 12:55:00    2017-04-02 12:55:00
79839    28488    739    2017-04-02 09:55:00    2017-04-02 09:55:00
79840    28488    481    2017-04-02 09:27:00    2017-04-02 09:27:00
79841    28488    737    2017-04-02 07:14:00    2017-04-02 07:14:00
79842    28488    602    2017-04-02 02:27:00    2017-04-02 02:27:00
79843    28489    809    2017-04-02 14:13:00    2017-04-02 14:13:00
79844    28489    822    2017-04-02 09:05:00    2017-04-02 09:05:00
79845    28489    748    2017-04-02 09:33:00    2017-04-02 09:33:00
79846    28489    793    2017-04-02 21:44:00    2017-04-02 21:44:00
79847    28489    531    2017-04-02 08:57:00    2017-04-02 08:57:00
79848    28490    622    2017-04-02 02:22:00    2017-04-02 02:22:00
79849    28490    769    2017-04-02 06:32:00    2017-04-02 06:32:00
79850    28490    494    2017-04-02 18:20:00    2017-04-02 18:20:00
79851    28490    753    2017-04-02 12:28:00    2017-04-02 12:28:00
79852    28490    754    2017-04-02 15:33:00    2017-04-02 15:33:00
79853    28491    919    2017-04-02 16:59:00    2017-04-02 16:59:00
79854    28491    708    2017-04-02 21:10:00    2017-04-02 21:10:00
79855    28491    654    2017-04-02 17:52:00    2017-04-02 17:52:00
79856    28491    683    2017-04-02 19:02:00    2017-04-02 19:02:00
79857    28491    738    2017-04-02 20:25:00    2017-04-02 20:25:00
79858    28492    811    2017-04-03 04:28:00    2017-04-03 04:28:00
79859    28492    902    2017-04-03 05:37:00    2017-04-03 05:37:00
79860    28492    605    2017-04-03 09:23:00    2017-04-03 09:23:00
79861    28492    484    2017-04-03 14:18:00    2017-04-03 14:18:00
79862    28492    564    2017-04-03 15:21:00    2017-04-03 15:21:00
79863    28493    683    2017-04-03 06:18:00    2017-04-03 06:18:00
79864    28493    834    2017-04-03 19:11:00    2017-04-03 19:11:00
79865    28493    492    2017-04-03 15:47:00    2017-04-03 15:47:00
79866    28493    691    2017-04-03 15:45:00    2017-04-03 15:45:00
79867    28493    534    2017-04-03 17:06:00    2017-04-03 17:06:00
79868    28494    698    2017-04-03 03:54:00    2017-04-03 03:54:00
79869    28494    601    2017-04-03 16:13:00    2017-04-03 16:13:00
79870    28494    577    2017-04-03 21:45:00    2017-04-03 21:45:00
79871    28494    571    2017-04-03 13:48:00    2017-04-03 13:48:00
79872    28494    937    2017-04-03 12:16:00    2017-04-03 12:16:00
79873    28495    918    2017-04-03 15:12:00    2017-04-03 15:12:00
79874    28495    899    2017-04-03 01:29:00    2017-04-03 01:29:00
79875    28495    610    2017-04-03 20:05:00    2017-04-03 20:05:00
79876    28495    744    2017-04-03 03:53:00    2017-04-03 03:53:00
79877    28495    950    2017-04-03 08:25:00    2017-04-03 08:25:00
79878    28496    623    2017-04-03 05:12:00    2017-04-03 05:12:00
79879    28496    702    2017-04-03 02:01:00    2017-04-03 02:01:00
79880    28496    679    2017-04-03 14:32:00    2017-04-03 14:32:00
79881    28496    751    2017-04-03 22:02:00    2017-04-03 22:02:00
79882    28496    590    2017-04-03 23:12:00    2017-04-03 23:12:00
79883    28497    767    2017-04-03 23:34:00    2017-04-03 23:34:00
79884    28497    691    2017-04-03 18:46:00    2017-04-03 18:46:00
79885    28497    653    2017-04-03 22:57:00    2017-04-03 22:57:00
79886    28497    884    2017-04-03 23:05:00    2017-04-03 23:05:00
79887    28497    671    2017-04-03 01:47:00    2017-04-03 01:47:00
79888    28498    571    2017-04-03 20:17:00    2017-04-03 20:17:00
79889    28498    741    2017-04-03 02:32:00    2017-04-03 02:32:00
79890    28498    582    2017-04-03 19:24:00    2017-04-03 19:24:00
79891    28498    948    2017-04-03 01:49:00    2017-04-03 01:49:00
79892    28498    891    2017-04-03 11:12:00    2017-04-03 11:12:00
79893    28499    728    2017-04-03 17:05:00    2017-04-03 17:05:00
79894    28499    489    2017-04-03 12:51:00    2017-04-03 12:51:00
79895    28499    920    2017-04-03 23:30:00    2017-04-03 23:30:00
79896    28499    553    2017-04-03 05:22:00    2017-04-03 05:22:00
79897    28499    656    2017-04-03 10:29:00    2017-04-03 10:29:00
79898    28500    629    2017-04-03 13:08:00    2017-04-03 13:08:00
79899    28500    511    2017-04-03 23:19:00    2017-04-03 23:19:00
79900    28500    484    2017-04-03 14:02:00    2017-04-03 14:02:00
79901    28500    762    2017-04-03 19:00:00    2017-04-03 19:00:00
79902    28500    794    2017-04-03 02:48:00    2017-04-03 02:48:00
79903    28501    591    2017-04-03 10:14:00    2017-04-03 10:14:00
79904    28501    492    2017-04-03 12:59:00    2017-04-03 12:59:00
79905    28501    660    2017-04-03 05:26:00    2017-04-03 05:26:00
79906    28501    944    2017-04-03 05:44:00    2017-04-03 05:44:00
79907    28501    606    2017-04-03 12:49:00    2017-04-03 12:49:00
79908    28502    702    2017-04-03 10:04:00    2017-04-03 10:04:00
79909    28502    830    2017-04-03 09:11:00    2017-04-03 09:11:00
79910    28502    779    2017-04-03 08:52:00    2017-04-03 08:52:00
79911    28502    678    2017-04-03 10:12:00    2017-04-03 10:12:00
79912    28502    698    2017-04-03 03:03:00    2017-04-03 03:03:00
79913    28503    757    2017-04-03 07:03:00    2017-04-03 07:03:00
79914    28503    749    2017-04-03 02:02:00    2017-04-03 02:02:00
79915    28503    526    2017-04-03 04:11:00    2017-04-03 04:11:00
79916    28503    633    2017-04-03 22:20:00    2017-04-03 22:20:00
79917    28503    509    2017-04-03 05:08:00    2017-04-03 05:08:00
79918    28504    611    2017-04-03 07:54:00    2017-04-03 07:54:00
79919    28504    517    2017-04-03 03:41:00    2017-04-03 03:41:00
79920    28504    818    2017-04-03 12:08:00    2017-04-03 12:08:00
79921    28504    653    2017-04-03 05:02:00    2017-04-03 05:02:00
79922    28504    623    2017-04-03 16:16:00    2017-04-03 16:16:00
79923    28505    518    2017-04-03 08:20:00    2017-04-03 08:20:00
79924    28505    510    2017-04-03 02:53:00    2017-04-03 02:53:00
79925    28505    485    2017-04-03 19:28:00    2017-04-03 19:28:00
79926    28505    818    2017-04-03 16:35:00    2017-04-03 16:35:00
79927    28505    496    2017-04-03 21:18:00    2017-04-03 21:18:00
79928    28506    717    2017-04-03 13:40:00    2017-04-03 13:40:00
79929    28506    834    2017-04-03 22:05:00    2017-04-03 22:05:00
79930    28506    894    2017-04-03 17:25:00    2017-04-03 17:25:00
79931    28506    843    2017-04-03 06:10:00    2017-04-03 06:10:00
79932    28506    860    2017-04-03 02:40:00    2017-04-03 02:40:00
79933    28507    804    2017-04-03 16:01:00    2017-04-03 16:01:00
79934    28507    902    2017-04-03 11:28:00    2017-04-03 11:28:00
79935    28507    913    2017-04-03 09:11:00    2017-04-03 09:11:00
79936    28507    591    2017-04-03 10:00:00    2017-04-03 10:00:00
79937    28507    603    2017-04-03 01:09:00    2017-04-03 01:09:00
79938    28508    480    2017-04-03 03:05:00    2017-04-03 03:05:00
79939    28508    874    2017-04-03 13:38:00    2017-04-03 13:38:00
79940    28508    685    2017-04-03 22:42:00    2017-04-03 22:42:00
79941    28508    662    2017-04-03 13:37:00    2017-04-03 13:37:00
79942    28508    546    2017-04-03 03:24:00    2017-04-03 03:24:00
79943    28509    841    2017-04-03 16:57:00    2017-04-03 16:57:00
79944    28509    715    2017-04-03 18:03:00    2017-04-03 18:03:00
79945    28509    912    2017-04-03 07:01:00    2017-04-03 07:01:00
79946    28509    559    2017-04-03 19:40:00    2017-04-03 19:40:00
79947    28509    807    2017-04-03 01:50:00    2017-04-03 01:50:00
79948    28510    864    2017-04-03 07:33:00    2017-04-03 07:33:00
79949    28510    749    2017-04-03 04:28:00    2017-04-03 04:28:00
79950    28510    790    2017-04-03 09:44:00    2017-04-03 09:44:00
79951    28510    528    2017-04-03 17:30:00    2017-04-03 17:30:00
79952    28510    601    2017-04-03 08:49:00    2017-04-03 08:49:00
79953    28511    601    2017-04-03 17:06:00    2017-04-03 17:06:00
79954    28511    637    2017-04-03 01:09:00    2017-04-03 01:09:00
79955    28511    916    2017-04-03 21:59:00    2017-04-03 21:59:00
79956    28511    672    2017-04-03 19:02:00    2017-04-03 19:02:00
79957    28511    790    2017-04-03 22:10:00    2017-04-03 22:10:00
79958    28512    946    2017-04-03 21:30:00    2017-04-03 21:30:00
79959    28512    541    2017-04-03 13:44:00    2017-04-03 13:44:00
79960    28512    645    2017-04-03 19:46:00    2017-04-03 19:46:00
79961    28512    702    2017-04-03 22:33:00    2017-04-03 22:33:00
79962    28512    772    2017-04-03 05:54:00    2017-04-03 05:54:00
79963    28513    787    2017-04-03 04:22:00    2017-04-03 04:22:00
79964    28513    589    2017-04-03 06:43:00    2017-04-03 06:43:00
79965    28513    763    2017-04-03 11:08:00    2017-04-03 11:08:00
79966    28513    602    2017-04-03 01:00:00    2017-04-03 01:00:00
79967    28513    850    2017-04-03 22:26:00    2017-04-03 22:26:00
79968    28514    707    2017-04-03 18:39:00    2017-04-03 18:39:00
79969    28514    674    2017-04-03 03:07:00    2017-04-03 03:07:00
79970    28514    644    2017-04-03 22:09:00    2017-04-03 22:09:00
79971    28514    542    2017-04-03 13:48:00    2017-04-03 13:48:00
79972    28514    912    2017-04-03 20:52:00    2017-04-03 20:52:00
79973    28515    603    2017-04-03 12:32:00    2017-04-03 12:32:00
79974    28515    532    2017-04-03 02:49:00    2017-04-03 02:49:00
79975    28515    636    2017-04-03 11:42:00    2017-04-03 11:42:00
79976    28515    488    2017-04-03 20:32:00    2017-04-03 20:32:00
79977    28515    833    2017-04-03 17:19:00    2017-04-03 17:19:00
79978    28516    506    2017-04-03 04:06:00    2017-04-03 04:06:00
79979    28516    947    2017-04-03 18:45:00    2017-04-03 18:45:00
79980    28516    943    2017-04-03 14:34:00    2017-04-03 14:34:00
79981    28516    502    2017-04-03 14:51:00    2017-04-03 14:51:00
79982    28516    635    2017-04-03 06:15:00    2017-04-03 06:15:00
79983    28517    670    2017-04-03 11:45:00    2017-04-03 11:45:00
79984    28517    865    2017-04-03 04:42:00    2017-04-03 04:42:00
79985    28517    845    2017-04-03 13:00:00    2017-04-03 13:00:00
79986    28517    886    2017-04-03 23:10:00    2017-04-03 23:10:00
79987    28517    687    2017-04-03 13:32:00    2017-04-03 13:32:00
79988    28518    496    2017-04-03 13:39:00    2017-04-03 13:39:00
79989    28518    511    2017-04-03 08:39:00    2017-04-03 08:39:00
79990    28518    696    2017-04-03 01:44:00    2017-04-03 01:44:00
79991    28518    827    2017-04-03 05:12:00    2017-04-03 05:12:00
79992    28518    555    2017-04-03 22:09:00    2017-04-03 22:09:00
79993    28519    509    2017-04-03 04:59:00    2017-04-03 04:59:00
79994    28519    766    2017-04-03 04:17:00    2017-04-03 04:17:00
79995    28519    737    2017-04-03 05:55:00    2017-04-03 05:55:00
79996    28519    563    2017-04-03 23:15:00    2017-04-03 23:15:00
79997    28519    782    2017-04-03 18:00:00    2017-04-03 18:00:00
79998    28520    530    2017-04-03 02:54:00    2017-04-03 02:54:00
79999    28520    661    2017-04-03 20:23:00    2017-04-03 20:23:00
80000    28520    824    2017-04-03 09:14:00    2017-04-03 09:14:00
80001    28520    497    2017-04-03 12:12:00    2017-04-03 12:12:00
80002    28520    634    2017-04-03 21:09:00    2017-04-03 21:09:00
80003    28521    878    2017-04-03 05:32:00    2017-04-03 05:32:00
80004    28521    905    2017-04-03 21:01:00    2017-04-03 21:01:00
80005    28521    914    2017-04-03 07:05:00    2017-04-03 07:05:00
80006    28521    721    2017-04-03 19:55:00    2017-04-03 19:55:00
80007    28521    523    2017-04-03 11:53:00    2017-04-03 11:53:00
80008    28522    921    2017-04-03 09:47:00    2017-04-03 09:47:00
80009    28522    845    2017-04-03 08:19:00    2017-04-03 08:19:00
80010    28522    609    2017-04-03 04:16:00    2017-04-03 04:16:00
80011    28522    577    2017-04-03 15:18:00    2017-04-03 15:18:00
80012    28522    861    2017-04-03 08:04:00    2017-04-03 08:04:00
80013    28523    682    2017-04-04 12:42:00    2017-04-04 12:42:00
80014    28523    825    2017-04-04 04:51:00    2017-04-04 04:51:00
80015    28523    589    2017-04-04 21:38:00    2017-04-04 21:38:00
80016    28523    850    2017-04-04 17:21:00    2017-04-04 17:21:00
80017    28523    721    2017-04-04 09:59:00    2017-04-04 09:59:00
80018    28524    504    2017-04-04 19:15:00    2017-04-04 19:15:00
80019    28524    616    2017-04-04 19:08:00    2017-04-04 19:08:00
80020    28524    504    2017-04-04 10:20:00    2017-04-04 10:20:00
80021    28524    552    2017-04-04 03:27:00    2017-04-04 03:27:00
80022    28524    635    2017-04-04 07:27:00    2017-04-04 07:27:00
80023    28525    706    2017-04-04 06:18:00    2017-04-04 06:18:00
80024    28525    928    2017-04-04 22:44:00    2017-04-04 22:44:00
80025    28525    903    2017-04-04 02:14:00    2017-04-04 02:14:00
80026    28525    647    2017-04-04 05:08:00    2017-04-04 05:08:00
80027    28525    884    2017-04-04 16:15:00    2017-04-04 16:15:00
80028    28526    567    2017-04-04 19:16:00    2017-04-04 19:16:00
80029    28526    685    2017-04-04 23:31:00    2017-04-04 23:31:00
80030    28526    884    2017-04-04 16:11:00    2017-04-04 16:11:00
80031    28526    731    2017-04-04 06:29:00    2017-04-04 06:29:00
80032    28526    522    2017-04-04 12:38:00    2017-04-04 12:38:00
80033    28527    771    2017-04-04 04:03:00    2017-04-04 04:03:00
80034    28527    763    2017-04-04 22:16:00    2017-04-04 22:16:00
80035    28527    826    2017-04-04 15:08:00    2017-04-04 15:08:00
80036    28527    508    2017-04-04 16:04:00    2017-04-04 16:04:00
80037    28527    654    2017-04-04 22:39:00    2017-04-04 22:39:00
80038    28528    825    2017-04-04 22:42:00    2017-04-04 22:42:00
80039    28528    602    2017-04-04 14:16:00    2017-04-04 14:16:00
80040    28528    566    2017-04-04 20:19:00    2017-04-04 20:19:00
80041    28528    631    2017-04-04 12:52:00    2017-04-04 12:52:00
80042    28528    807    2017-04-04 11:16:00    2017-04-04 11:16:00
80043    28529    665    2017-04-04 10:19:00    2017-04-04 10:19:00
80044    28529    786    2017-04-04 11:00:00    2017-04-04 11:00:00
80045    28529    810    2017-04-04 20:28:00    2017-04-04 20:28:00
80046    28529    656    2017-04-04 06:19:00    2017-04-04 06:19:00
80047    28529    575    2017-04-04 17:00:00    2017-04-04 17:00:00
80048    28530    561    2017-04-04 07:57:00    2017-04-04 07:57:00
80049    28530    823    2017-04-04 01:54:00    2017-04-04 01:54:00
80050    28530    715    2017-04-04 23:45:00    2017-04-04 23:45:00
80051    28530    906    2017-04-04 18:23:00    2017-04-04 18:23:00
80052    28530    652    2017-04-04 10:27:00    2017-04-04 10:27:00
80053    28531    769    2017-04-04 02:25:00    2017-04-04 02:25:00
80054    28531    551    2017-04-04 14:36:00    2017-04-04 14:36:00
80055    28531    489    2017-04-04 14:25:00    2017-04-04 14:25:00
80056    28531    704    2017-04-04 17:30:00    2017-04-04 17:30:00
80057    28531    942    2017-04-04 03:14:00    2017-04-04 03:14:00
80058    28532    961    2017-04-04 06:56:00    2017-04-04 06:56:00
80059    28532    558    2017-04-04 16:57:00    2017-04-04 16:57:00
80060    28532    703    2017-04-04 10:56:00    2017-04-04 10:56:00
80061    28532    488    2017-04-04 16:30:00    2017-04-04 16:30:00
80062    28532    761    2017-04-04 22:34:00    2017-04-04 22:34:00
80063    28533    735    2017-04-04 08:51:00    2017-04-04 08:51:00
80064    28533    797    2017-04-04 06:14:00    2017-04-04 06:14:00
80065    28533    920    2017-04-04 13:03:00    2017-04-04 13:03:00
80066    28533    600    2017-04-04 14:16:00    2017-04-04 14:16:00
80067    28533    468    2017-04-04 03:24:00    2017-04-04 03:24:00
80068    28534    690    2017-04-04 06:23:00    2017-04-04 06:23:00
80069    28534    663    2017-04-04 16:02:00    2017-04-04 16:02:00
80070    28534    592    2017-04-04 11:24:00    2017-04-04 11:24:00
80071    28534    847    2017-04-04 12:56:00    2017-04-04 12:56:00
80072    28534    956    2017-04-04 03:04:00    2017-04-04 03:04:00
80073    28535    499    2017-04-04 08:24:00    2017-04-04 08:24:00
80074    28535    648    2017-04-04 10:59:00    2017-04-04 10:59:00
80075    28535    499    2017-04-04 12:26:00    2017-04-04 12:26:00
80076    28535    577    2017-04-04 06:58:00    2017-04-04 06:58:00
80077    28535    815    2017-04-04 07:39:00    2017-04-04 07:39:00
80078    28536    496    2017-04-04 08:38:00    2017-04-04 08:38:00
80079    28536    559    2017-04-04 12:23:00    2017-04-04 12:23:00
80080    28536    583    2017-04-04 02:12:00    2017-04-04 02:12:00
80081    28536    577    2017-04-04 04:02:00    2017-04-04 04:02:00
80082    28536    852    2017-04-04 22:17:00    2017-04-04 22:17:00
80083    28537    515    2017-04-04 03:26:00    2017-04-04 03:26:00
80084    28537    691    2017-04-04 03:15:00    2017-04-04 03:15:00
80085    28537    669    2017-04-04 16:21:00    2017-04-04 16:21:00
80086    28537    884    2017-04-04 05:59:00    2017-04-04 05:59:00
80087    28537    900    2017-04-04 03:13:00    2017-04-04 03:13:00
80088    28538    649    2017-04-04 18:20:00    2017-04-04 18:20:00
80089    28538    575    2017-04-04 11:31:00    2017-04-04 11:31:00
80090    28538    881    2017-04-04 08:17:00    2017-04-04 08:17:00
80091    28538    485    2017-04-04 14:20:00    2017-04-04 14:20:00
80092    28538    642    2017-04-04 10:53:00    2017-04-04 10:53:00
80093    28539    858    2017-04-04 14:02:00    2017-04-04 14:02:00
80094    28539    734    2017-04-04 17:39:00    2017-04-04 17:39:00
80095    28539    592    2017-04-04 03:59:00    2017-04-04 03:59:00
80096    28539    840    2017-04-04 02:58:00    2017-04-04 02:58:00
80097    28539    642    2017-04-04 19:28:00    2017-04-04 19:28:00
80098    28540    516    2017-04-04 04:21:00    2017-04-04 04:21:00
80099    28540    544    2017-04-04 09:58:00    2017-04-04 09:58:00
80100    28540    902    2017-04-04 14:10:00    2017-04-04 14:10:00
80101    28540    492    2017-04-04 02:43:00    2017-04-04 02:43:00
80102    28540    571    2017-04-04 12:38:00    2017-04-04 12:38:00
80103    28541    648    2017-04-04 19:50:00    2017-04-04 19:50:00
80104    28541    525    2017-04-04 10:03:00    2017-04-04 10:03:00
80105    28541    818    2017-04-04 14:32:00    2017-04-04 14:32:00
80106    28541    488    2017-04-04 13:50:00    2017-04-04 13:50:00
80107    28541    767    2017-04-04 02:04:00    2017-04-04 02:04:00
80108    28542    910    2017-04-04 14:15:00    2017-04-04 14:15:00
80109    28542    468    2017-04-04 09:16:00    2017-04-04 09:16:00
80110    28542    606    2017-04-04 18:02:00    2017-04-04 18:02:00
80111    28542    524    2017-04-04 10:55:00    2017-04-04 10:55:00
80112    28542    759    2017-04-04 18:22:00    2017-04-04 18:22:00
80113    28543    822    2017-04-04 14:29:00    2017-04-04 14:29:00
80114    28543    774    2017-04-04 11:01:00    2017-04-04 11:01:00
80115    28543    558    2017-04-04 18:00:00    2017-04-04 18:00:00
80116    28543    643    2017-04-04 20:19:00    2017-04-04 20:19:00
80117    28543    896    2017-04-04 17:06:00    2017-04-04 17:06:00
80118    28544    929    2017-04-04 23:08:00    2017-04-04 23:08:00
80119    28544    652    2017-04-04 10:38:00    2017-04-04 10:38:00
80120    28544    694    2017-04-04 01:48:00    2017-04-04 01:48:00
80121    28544    646    2017-04-04 04:01:00    2017-04-04 04:01:00
80122    28544    645    2017-04-04 12:04:00    2017-04-04 12:04:00
80123    28545    548    2017-04-04 12:10:00    2017-04-04 12:10:00
80124    28545    708    2017-04-04 02:46:00    2017-04-04 02:46:00
80125    28545    912    2017-04-04 11:15:00    2017-04-04 11:15:00
80126    28545    796    2017-04-04 03:57:00    2017-04-04 03:57:00
80127    28545    618    2017-04-04 12:46:00    2017-04-04 12:46:00
80128    28546    950    2017-04-04 03:25:00    2017-04-04 03:25:00
80129    28546    908    2017-04-04 14:21:00    2017-04-04 14:21:00
80130    28546    927    2017-04-04 19:19:00    2017-04-04 19:19:00
80131    28546    487    2017-04-04 17:05:00    2017-04-04 17:05:00
80132    28546    766    2017-04-04 09:11:00    2017-04-04 09:11:00
80133    28547    801    2017-04-04 21:23:00    2017-04-04 21:23:00
80134    28547    614    2017-04-04 21:17:00    2017-04-04 21:17:00
80135    28547    667    2017-04-04 01:24:00    2017-04-04 01:24:00
80136    28547    929    2017-04-04 16:33:00    2017-04-04 16:33:00
80137    28547    847    2017-04-04 16:22:00    2017-04-04 16:22:00
80138    28548    805    2017-04-04 15:21:00    2017-04-04 15:21:00
80139    28548    696    2017-04-04 13:02:00    2017-04-04 13:02:00
80140    28548    537    2017-04-04 16:45:00    2017-04-04 16:45:00
80141    28548    934    2017-04-04 22:27:00    2017-04-04 22:27:00
80142    28548    751    2017-04-04 13:58:00    2017-04-04 13:58:00
80143    28549    641    2017-04-04 22:02:00    2017-04-04 22:02:00
80144    28549    505    2017-04-04 04:32:00    2017-04-04 04:32:00
80145    28549    951    2017-04-04 22:09:00    2017-04-04 22:09:00
80146    28549    850    2017-04-04 18:02:00    2017-04-04 18:02:00
80147    28549    733    2017-04-04 13:30:00    2017-04-04 13:30:00
80148    28550    856    2017-04-04 13:20:00    2017-04-04 13:20:00
80149    28550    625    2017-04-04 08:14:00    2017-04-04 08:14:00
80150    28550    484    2017-04-04 03:28:00    2017-04-04 03:28:00
80151    28550    564    2017-04-04 14:35:00    2017-04-04 14:35:00
80152    28550    740    2017-04-04 01:05:00    2017-04-04 01:05:00
80153    28551    696    2017-04-04 14:44:00    2017-04-04 14:44:00
80154    28551    468    2017-04-04 03:31:00    2017-04-04 03:31:00
80155    28551    580    2017-04-04 06:19:00    2017-04-04 06:19:00
80156    28551    917    2017-04-04 23:31:00    2017-04-04 23:31:00
80157    28551    924    2017-04-04 21:13:00    2017-04-04 21:13:00
80158    28552    475    2017-04-04 09:49:00    2017-04-04 09:49:00
80159    28552    744    2017-04-04 21:49:00    2017-04-04 21:49:00
80160    28552    724    2017-04-04 16:19:00    2017-04-04 16:19:00
80161    28552    548    2017-04-04 03:32:00    2017-04-04 03:32:00
80162    28552    613    2017-04-04 15:09:00    2017-04-04 15:09:00
80163    28553    525    2017-04-04 17:23:00    2017-04-04 17:23:00
80164    28553    564    2017-04-04 13:36:00    2017-04-04 13:36:00
80165    28553    621    2017-04-04 22:51:00    2017-04-04 22:51:00
80166    28553    762    2017-04-04 16:24:00    2017-04-04 16:24:00
80167    28553    741    2017-04-04 19:51:00    2017-04-04 19:51:00
80168    28554    574    2017-04-04 23:00:00    2017-04-04 23:00:00
80169    28554    487    2017-04-04 19:57:00    2017-04-04 19:57:00
80170    28554    646    2017-04-04 01:19:00    2017-04-04 01:19:00
80171    28554    584    2017-04-04 15:59:00    2017-04-04 15:59:00
80172    28554    670    2017-04-04 18:19:00    2017-04-04 18:19:00
80173    28555    810    2017-04-04 07:08:00    2017-04-04 07:08:00
80174    28555    593    2017-04-04 21:21:00    2017-04-04 21:21:00
80175    28555    548    2017-04-04 23:49:00    2017-04-04 23:49:00
80176    28555    549    2017-04-04 21:02:00    2017-04-04 21:02:00
80177    28555    517    2017-04-04 14:02:00    2017-04-04 14:02:00
80178    28556    476    2017-04-04 08:12:00    2017-04-04 08:12:00
80179    28556    858    2017-04-04 14:00:00    2017-04-04 14:00:00
80180    28556    760    2017-04-04 06:46:00    2017-04-04 06:46:00
80181    28556    816    2017-04-04 15:30:00    2017-04-04 15:30:00
80182    28556    703    2017-04-04 10:00:00    2017-04-04 10:00:00
80183    28557    806    2017-04-04 11:11:00    2017-04-04 11:11:00
80184    28557    639    2017-04-04 11:29:00    2017-04-04 11:29:00
80185    28557    774    2017-04-04 21:18:00    2017-04-04 21:18:00
80186    28557    723    2017-04-04 10:07:00    2017-04-04 10:07:00
80187    28557    610    2017-04-04 19:27:00    2017-04-04 19:27:00
80188    28558    612    2017-04-04 19:04:00    2017-04-04 19:04:00
80189    28558    593    2017-04-04 05:37:00    2017-04-04 05:37:00
80190    28558    770    2017-04-04 23:11:00    2017-04-04 23:11:00
80191    28558    640    2017-04-04 23:17:00    2017-04-04 23:17:00
80192    28558    835    2017-04-04 18:19:00    2017-04-04 18:19:00
80193    28559    571    2017-04-04 01:29:00    2017-04-04 01:29:00
80194    28559    537    2017-04-04 23:08:00    2017-04-04 23:08:00
80195    28559    876    2017-04-04 17:01:00    2017-04-04 17:01:00
80196    28559    839    2017-04-04 07:07:00    2017-04-04 07:07:00
80197    28559    828    2017-04-04 07:28:00    2017-04-04 07:28:00
80198    28560    906    2017-04-04 01:13:00    2017-04-04 01:13:00
80199    28560    607    2017-04-04 23:40:00    2017-04-04 23:40:00
80200    28560    864    2017-04-04 06:52:00    2017-04-04 06:52:00
80201    28560    960    2017-04-04 22:17:00    2017-04-04 22:17:00
80202    28560    814    2017-04-04 11:53:00    2017-04-04 11:53:00
80203    28561    888    2017-04-04 09:28:00    2017-04-04 09:28:00
80204    28561    747    2017-04-04 05:11:00    2017-04-04 05:11:00
80205    28561    788    2017-04-04 05:02:00    2017-04-04 05:02:00
80206    28561    797    2017-04-04 08:09:00    2017-04-04 08:09:00
80207    28561    872    2017-04-04 17:59:00    2017-04-04 17:59:00
80208    28562    688    2017-04-04 18:58:00    2017-04-04 18:58:00
80209    28562    903    2017-04-04 02:17:00    2017-04-04 02:17:00
80210    28562    570    2017-04-04 19:15:00    2017-04-04 19:15:00
80211    28562    540    2017-04-04 13:01:00    2017-04-04 13:01:00
80212    28562    915    2017-04-04 13:50:00    2017-04-04 13:50:00
80213    28563    791    2017-04-04 11:22:00    2017-04-04 11:22:00
80214    28563    880    2017-04-04 23:01:00    2017-04-04 23:01:00
80215    28563    569    2017-04-04 08:45:00    2017-04-04 08:45:00
80216    28563    551    2017-04-04 10:18:00    2017-04-04 10:18:00
80217    28563    886    2017-04-04 01:47:00    2017-04-04 01:47:00
80218    28564    635    2017-04-04 18:52:00    2017-04-04 18:52:00
80219    28564    936    2017-04-04 11:12:00    2017-04-04 11:12:00
80220    28564    828    2017-04-04 07:55:00    2017-04-04 07:55:00
80221    28564    866    2017-04-04 02:24:00    2017-04-04 02:24:00
80222    28564    891    2017-04-04 13:38:00    2017-04-04 13:38:00
80223    28565    808    2017-04-04 23:29:00    2017-04-04 23:29:00
80224    28565    858    2017-04-04 18:57:00    2017-04-04 18:57:00
80225    28565    788    2017-04-04 01:33:00    2017-04-04 01:33:00
80226    28565    652    2017-04-04 19:30:00    2017-04-04 19:30:00
80227    28565    953    2017-04-04 17:10:00    2017-04-04 17:10:00
80228    28566    594    2017-04-04 05:18:00    2017-04-04 05:18:00
80229    28566    540    2017-04-04 13:51:00    2017-04-04 13:51:00
80230    28566    873    2017-04-04 09:48:00    2017-04-04 09:48:00
80231    28566    483    2017-04-04 12:39:00    2017-04-04 12:39:00
80232    28566    759    2017-04-04 11:17:00    2017-04-04 11:17:00
80233    28567    509    2017-04-04 19:30:00    2017-04-04 19:30:00
80234    28567    885    2017-04-04 12:23:00    2017-04-04 12:23:00
80235    28567    664    2017-04-04 15:22:00    2017-04-04 15:22:00
80236    28567    614    2017-04-04 06:19:00    2017-04-04 06:19:00
80237    28567    479    2017-04-04 14:25:00    2017-04-04 14:25:00
80239    28568    648    2017-04-04 23:23:00    2017-04-04 23:23:00
80240    28568    731    2017-04-04 23:23:00    2017-04-04 23:23:00
80241    28568    770    2017-04-04 03:13:00    2017-04-04 03:13:00
80243    28569    568    2017-04-04 09:19:00    2017-04-04 09:19:00
80244    28569    866    2017-04-04 17:40:00    2017-04-04 17:40:00
80245    28569    770    2017-04-04 15:47:00    2017-04-04 15:47:00
80246    28569    937    2017-04-04 15:57:00    2017-04-04 15:57:00
80247    28569    602    2017-04-04 05:43:00    2017-04-04 05:43:00
80242    \N    799    2017-04-04 18:14:00    2017-04-04 18:14:00
80238    \N    835    2017-04-04 08:40:00    2017-04-04 08:40:00
80248    28570    897    2017-04-05 13:36:00    2017-04-05 13:36:00
80249    28570    593    2017-04-05 11:55:00    2017-04-05 11:55:00
80250    28570    823    2017-04-05 08:13:00    2017-04-05 08:13:00
80251    28570    685    2017-04-05 10:31:00    2017-04-05 10:31:00
80252    28570    732    2017-04-05 15:54:00    2017-04-05 15:54:00
80253    28571    644    2017-04-05 23:08:00    2017-04-05 23:08:00
80254    28571    629    2017-04-05 17:23:00    2017-04-05 17:23:00
80255    28571    672    2017-04-05 09:14:00    2017-04-05 09:14:00
80256    28571    918    2017-04-05 08:33:00    2017-04-05 08:33:00
80257    28571    701    2017-04-05 04:48:00    2017-04-05 04:48:00
80258    28572    960    2017-04-05 06:09:00    2017-04-05 06:09:00
80259    28572    780    2017-04-05 03:03:00    2017-04-05 03:03:00
80260    28572    744    2017-04-05 01:20:00    2017-04-05 01:20:00
80261    28572    830    2017-04-05 09:13:00    2017-04-05 09:13:00
80262    28572    743    2017-04-05 17:02:00    2017-04-05 17:02:00
80263    28573    576    2017-04-05 12:47:00    2017-04-05 12:47:00
80264    28573    686    2017-04-05 07:54:00    2017-04-05 07:54:00
80265    28573    694    2017-04-05 16:56:00    2017-04-05 16:56:00
80266    28573    939    2017-04-05 21:14:00    2017-04-05 21:14:00
80267    28573    649    2017-04-05 09:10:00    2017-04-05 09:10:00
80268    28574    831    2017-04-05 10:37:00    2017-04-05 10:37:00
80269    28574    779    2017-04-05 13:20:00    2017-04-05 13:20:00
80270    28574    809    2017-04-05 12:03:00    2017-04-05 12:03:00
80271    28574    603    2017-04-05 01:04:00    2017-04-05 01:04:00
80272    28574    708    2017-04-05 06:25:00    2017-04-05 06:25:00
80273    28575    501    2017-04-05 01:45:00    2017-04-05 01:45:00
80274    28575    583    2017-04-05 11:01:00    2017-04-05 11:01:00
80275    28575    905    2017-04-05 03:51:00    2017-04-05 03:51:00
80276    28575    949    2017-04-05 05:54:00    2017-04-05 05:54:00
80277    28575    709    2017-04-05 14:13:00    2017-04-05 14:13:00
80278    28576    572    2017-04-05 20:47:00    2017-04-05 20:47:00
80279    28576    652    2017-04-05 19:03:00    2017-04-05 19:03:00
80280    28576    475    2017-04-05 11:33:00    2017-04-05 11:33:00
80281    28576    688    2017-04-05 20:21:00    2017-04-05 20:21:00
80282    28576    582    2017-04-05 03:13:00    2017-04-05 03:13:00
80283    28577    734    2017-04-05 03:02:00    2017-04-05 03:02:00
80284    28577    899    2017-04-05 22:33:00    2017-04-05 22:33:00
80285    28577    926    2017-04-05 07:41:00    2017-04-05 07:41:00
80286    28577    550    2017-04-05 19:40:00    2017-04-05 19:40:00
80287    28577    959    2017-04-05 23:00:00    2017-04-05 23:00:00
80288    28578    690    2017-04-05 13:59:00    2017-04-05 13:59:00
80289    28578    581    2017-04-05 13:00:00    2017-04-05 13:00:00
80290    28578    805    2017-04-05 19:12:00    2017-04-05 19:12:00
80291    28578    735    2017-04-05 01:33:00    2017-04-05 01:33:00
80292    28578    802    2017-04-05 02:00:00    2017-04-05 02:00:00
80293    28579    605    2017-04-05 09:48:00    2017-04-05 09:48:00
80294    28579    542    2017-04-05 22:18:00    2017-04-05 22:18:00
80295    28579    488    2017-04-05 03:34:00    2017-04-05 03:34:00
80296    28579    470    2017-04-05 21:05:00    2017-04-05 21:05:00
80297    28579    904    2017-04-05 17:37:00    2017-04-05 17:37:00
80298    28580    780    2017-04-05 05:33:00    2017-04-05 05:33:00
80299    28580    590    2017-04-05 03:21:00    2017-04-05 03:21:00
80300    28580    513    2017-04-05 16:20:00    2017-04-05 16:20:00
80301    28580    583    2017-04-05 01:37:00    2017-04-05 01:37:00
80302    28580    868    2017-04-05 15:45:00    2017-04-05 15:45:00
80303    28581    579    2017-04-05 19:32:00    2017-04-05 19:32:00
80304    28581    819    2017-04-05 20:17:00    2017-04-05 20:17:00
80305    28581    863    2017-04-05 09:47:00    2017-04-05 09:47:00
80306    28581    812    2017-04-05 01:11:00    2017-04-05 01:11:00
80307    28581    601    2017-04-05 07:00:00    2017-04-05 07:00:00
80308    28582    810    2017-04-05 01:55:00    2017-04-05 01:55:00
80309    28582    551    2017-04-05 01:10:00    2017-04-05 01:10:00
80310    28582    776    2017-04-05 05:12:00    2017-04-05 05:12:00
80311    28582    909    2017-04-05 06:39:00    2017-04-05 06:39:00
80312    28582    623    2017-04-05 13:21:00    2017-04-05 13:21:00
80313    28583    575    2017-04-05 15:35:00    2017-04-05 15:35:00
80314    28583    615    2017-04-05 06:22:00    2017-04-05 06:22:00
80315    28583    874    2017-04-05 15:53:00    2017-04-05 15:53:00
80316    28583    702    2017-04-05 07:43:00    2017-04-05 07:43:00
80317    28583    874    2017-04-05 06:06:00    2017-04-05 06:06:00
80318    28584    851    2017-04-05 05:55:00    2017-04-05 05:55:00
80319    28584    790    2017-04-05 02:41:00    2017-04-05 02:41:00
80320    28584    580    2017-04-05 14:21:00    2017-04-05 14:21:00
80321    28584    911    2017-04-05 07:36:00    2017-04-05 07:36:00
80322    28584    859    2017-04-05 09:25:00    2017-04-05 09:25:00
80323    28585    638    2017-04-05 09:02:00    2017-04-05 09:02:00
80324    28585    658    2017-04-05 11:37:00    2017-04-05 11:37:00
80325    28585    725    2017-04-05 22:55:00    2017-04-05 22:55:00
80326    28585    952    2017-04-05 01:20:00    2017-04-05 01:20:00
80327    28585    815    2017-04-05 20:41:00    2017-04-05 20:41:00
80328    28586    509    2017-04-05 03:15:00    2017-04-05 03:15:00
80329    28586    781    2017-04-05 07:00:00    2017-04-05 07:00:00
80330    28586    825    2017-04-05 16:31:00    2017-04-05 16:31:00
80331    28586    881    2017-04-05 07:09:00    2017-04-05 07:09:00
80332    28586    639    2017-04-05 22:20:00    2017-04-05 22:20:00
80333    28587    925    2017-04-05 07:27:00    2017-04-05 07:27:00
80334    28587    559    2017-04-05 23:40:00    2017-04-05 23:40:00
80335    28587    482    2017-04-05 08:59:00    2017-04-05 08:59:00
80336    28587    507    2017-04-05 03:20:00    2017-04-05 03:20:00
80337    28587    902    2017-04-05 18:19:00    2017-04-05 18:19:00
80338    28588    731    2017-04-05 21:44:00    2017-04-05 21:44:00
80339    28588    506    2017-04-05 22:32:00    2017-04-05 22:32:00
80340    28588    471    2017-04-05 21:57:00    2017-04-05 21:57:00
80341    28588    463    2017-04-05 14:00:00    2017-04-05 14:00:00
80342    28588    575    2017-04-05 11:12:00    2017-04-05 11:12:00
80343    28589    500    2017-04-05 10:44:00    2017-04-05 10:44:00
80344    28589    696    2017-04-05 19:16:00    2017-04-05 19:16:00
80345    28589    794    2017-04-05 04:28:00    2017-04-05 04:28:00
80346    28589    878    2017-04-05 01:27:00    2017-04-05 01:27:00
80347    28589    838    2017-04-05 21:35:00    2017-04-05 21:35:00
80348    28590    517    2017-04-05 11:50:00    2017-04-05 11:50:00
80349    28590    784    2017-04-05 11:38:00    2017-04-05 11:38:00
80350    28590    471    2017-04-05 22:00:00    2017-04-05 22:00:00
80351    28590    724    2017-04-05 16:57:00    2017-04-05 16:57:00
80352    28590    717    2017-04-05 19:01:00    2017-04-05 19:01:00
80353    28591    681    2017-04-05 16:26:00    2017-04-05 16:26:00
80354    28591    588    2017-04-05 12:27:00    2017-04-05 12:27:00
80355    28591    940    2017-04-05 13:56:00    2017-04-05 13:56:00
80356    28591    876    2017-04-05 22:05:00    2017-04-05 22:05:00
80357    28591    623    2017-04-05 14:05:00    2017-04-05 14:05:00
80358    28592    525    2017-04-05 07:35:00    2017-04-05 07:35:00
80359    28592    684    2017-04-05 11:05:00    2017-04-05 11:05:00
80360    28592    951    2017-04-05 13:35:00    2017-04-05 13:35:00
80361    28592    552    2017-04-05 11:00:00    2017-04-05 11:00:00
80362    28592    565    2017-04-05 09:15:00    2017-04-05 09:15:00
80363    28593    805    2017-04-05 16:12:00    2017-04-05 16:12:00
80364    28593    519    2017-04-05 05:54:00    2017-04-05 05:54:00
80365    28593    946    2017-04-05 06:03:00    2017-04-05 06:03:00
80366    28593    525    2017-04-05 09:40:00    2017-04-05 09:40:00
80367    28593    820    2017-04-05 17:21:00    2017-04-05 17:21:00
80368    28594    716    2017-04-05 01:11:00    2017-04-05 01:11:00
80369    28594    895    2017-04-05 07:56:00    2017-04-05 07:56:00
80370    28594    517    2017-04-05 01:52:00    2017-04-05 01:52:00
80371    28594    909    2017-04-05 09:07:00    2017-04-05 09:07:00
80372    28594    847    2017-04-05 12:37:00    2017-04-05 12:37:00
80373    28595    824    2017-04-05 23:12:00    2017-04-05 23:12:00
80374    28595    651    2017-04-05 10:22:00    2017-04-05 10:22:00
80375    28595    583    2017-04-05 14:09:00    2017-04-05 14:09:00
80376    28595    580    2017-04-05 10:08:00    2017-04-05 10:08:00
80377    28595    774    2017-04-05 01:46:00    2017-04-05 01:46:00
80378    28596    916    2017-04-05 17:46:00    2017-04-05 17:46:00
80379    28596    860    2017-04-05 20:23:00    2017-04-05 20:23:00
80380    28596    528    2017-04-05 11:28:00    2017-04-05 11:28:00
80381    28596    716    2017-04-05 21:56:00    2017-04-05 21:56:00
80382    28596    674    2017-04-05 07:20:00    2017-04-05 07:20:00
80383    28597    588    2017-04-05 06:26:00    2017-04-05 06:26:00
80384    28597    589    2017-04-05 11:59:00    2017-04-05 11:59:00
80385    28597    748    2017-04-05 16:32:00    2017-04-05 16:32:00
80386    28597    867    2017-04-05 12:23:00    2017-04-05 12:23:00
80387    28597    799    2017-04-05 04:15:00    2017-04-05 04:15:00
80388    28598    577    2017-04-05 09:05:00    2017-04-05 09:05:00
80389    28598    696    2017-04-05 15:52:00    2017-04-05 15:52:00
80390    28598    830    2017-04-05 17:39:00    2017-04-05 17:39:00
80391    28598    802    2017-04-05 21:28:00    2017-04-05 21:28:00
80392    28598    647    2017-04-05 20:34:00    2017-04-05 20:34:00
80393    28599    836    2017-04-06 22:10:00    2017-04-06 22:10:00
80394    28599    637    2017-04-06 07:07:00    2017-04-06 07:07:00
80395    28599    832    2017-04-06 16:10:00    2017-04-06 16:10:00
80396    28599    662    2017-04-06 16:21:00    2017-04-06 16:21:00
80397    28599    857    2017-04-06 08:02:00    2017-04-06 08:02:00
80398    28600    574    2017-04-06 08:51:00    2017-04-06 08:51:00
80399    28600    831    2017-04-06 03:21:00    2017-04-06 03:21:00
80400    28600    536    2017-04-06 07:58:00    2017-04-06 07:58:00
80401    28600    622    2017-04-06 23:48:00    2017-04-06 23:48:00
80402    28600    759    2017-04-06 18:58:00    2017-04-06 18:58:00
80403    28601    561    2017-04-06 03:16:00    2017-04-06 03:16:00
80404    28601    500    2017-04-06 05:54:00    2017-04-06 05:54:00
80405    28601    503    2017-04-06 20:00:00    2017-04-06 20:00:00
80406    28601    629    2017-04-06 17:58:00    2017-04-06 17:58:00
80407    28601    877    2017-04-06 03:56:00    2017-04-06 03:56:00
80408    28602    653    2017-04-06 14:28:00    2017-04-06 14:28:00
80409    28602    499    2017-04-06 20:20:00    2017-04-06 20:20:00
80410    28602    536    2017-04-06 22:05:00    2017-04-06 22:05:00
80411    28602    922    2017-04-06 05:34:00    2017-04-06 05:34:00
80412    28602    515    2017-04-06 16:55:00    2017-04-06 16:55:00
80413    28603    745    2017-04-06 04:36:00    2017-04-06 04:36:00
80414    28603    700    2017-04-06 15:54:00    2017-04-06 15:54:00
80415    28603    526    2017-04-06 02:20:00    2017-04-06 02:20:00
80416    28603    775    2017-04-06 02:41:00    2017-04-06 02:41:00
80417    28603    689    2017-04-06 08:08:00    2017-04-06 08:08:00
80418    28604    816    2017-04-06 03:31:00    2017-04-06 03:31:00
80419    28604    814    2017-04-06 15:56:00    2017-04-06 15:56:00
80420    28604    823    2017-04-06 23:45:00    2017-04-06 23:45:00
80421    28604    673    2017-04-06 20:34:00    2017-04-06 20:34:00
80422    28604    742    2017-04-06 04:16:00    2017-04-06 04:16:00
80423    28605    611    2017-04-06 21:05:00    2017-04-06 21:05:00
80424    28605    942    2017-04-06 09:01:00    2017-04-06 09:01:00
80425    28605    812    2017-04-06 08:56:00    2017-04-06 08:56:00
80426    28605    761    2017-04-06 11:33:00    2017-04-06 11:33:00
80427    28605    641    2017-04-06 07:33:00    2017-04-06 07:33:00
80428    28606    745    2017-04-06 21:00:00    2017-04-06 21:00:00
80429    28606    933    2017-04-06 17:15:00    2017-04-06 17:15:00
80430    28606    604    2017-04-06 02:00:00    2017-04-06 02:00:00
80431    28606    731    2017-04-06 17:05:00    2017-04-06 17:05:00
80432    28606    868    2017-04-06 08:43:00    2017-04-06 08:43:00
80433    28607    689    2017-04-06 13:40:00    2017-04-06 13:40:00
80434    28607    868    2017-04-06 15:52:00    2017-04-06 15:52:00
80435    28607    559    2017-04-06 09:51:00    2017-04-06 09:51:00
80436    28607    661    2017-04-06 23:25:00    2017-04-06 23:25:00
80437    28607    752    2017-04-06 11:53:00    2017-04-06 11:53:00
80438    28608    915    2017-04-06 04:31:00    2017-04-06 04:31:00
80439    28608    689    2017-04-06 02:01:00    2017-04-06 02:01:00
80440    28608    762    2017-04-06 14:04:00    2017-04-06 14:04:00
80441    28608    705    2017-04-06 14:50:00    2017-04-06 14:50:00
80442    28608    831    2017-04-06 17:35:00    2017-04-06 17:35:00
80443    28609    763    2017-04-06 17:58:00    2017-04-06 17:58:00
80444    28609    888    2017-04-06 12:09:00    2017-04-06 12:09:00
80445    28609    903    2017-04-06 13:27:00    2017-04-06 13:27:00
80446    28609    566    2017-04-06 20:30:00    2017-04-06 20:30:00
80447    28609    948    2017-04-06 05:52:00    2017-04-06 05:52:00
80448    28610    895    2017-04-06 21:31:00    2017-04-06 21:31:00
80449    28610    486    2017-04-06 07:35:00    2017-04-06 07:35:00
80450    28610    550    2017-04-06 17:42:00    2017-04-06 17:42:00
80451    28610    577    2017-04-06 10:59:00    2017-04-06 10:59:00
80452    28610    841    2017-04-06 20:39:00    2017-04-06 20:39:00
80453    28611    717    2017-04-06 16:30:00    2017-04-06 16:30:00
80454    28611    482    2017-04-06 23:38:00    2017-04-06 23:38:00
80455    28611    902    2017-04-06 04:21:00    2017-04-06 04:21:00
80456    28611    500    2017-04-06 04:16:00    2017-04-06 04:16:00
80457    28611    646    2017-04-06 12:19:00    2017-04-06 12:19:00
80458    28612    578    2017-04-06 23:23:00    2017-04-06 23:23:00
80459    28612    636    2017-04-06 01:42:00    2017-04-06 01:42:00
80460    28612    685    2017-04-06 07:04:00    2017-04-06 07:04:00
80461    28612    742    2017-04-06 17:11:00    2017-04-06 17:11:00
80462    28612    674    2017-04-06 13:08:00    2017-04-06 13:08:00
80463    28613    649    2017-04-06 01:55:00    2017-04-06 01:55:00
80464    28613    518    2017-04-06 10:53:00    2017-04-06 10:53:00
80465    28613    673    2017-04-06 16:50:00    2017-04-06 16:50:00
80466    28613    897    2017-04-06 03:01:00    2017-04-06 03:01:00
80467    28613    619    2017-04-06 18:09:00    2017-04-06 18:09:00
80468    28614    633    2017-04-06 16:12:00    2017-04-06 16:12:00
80469    28614    710    2017-04-06 02:02:00    2017-04-06 02:02:00
80470    28614    769    2017-04-06 18:35:00    2017-04-06 18:35:00
80471    28614    757    2017-04-06 04:17:00    2017-04-06 04:17:00
80472    28614    510    2017-04-06 03:58:00    2017-04-06 03:58:00
80473    28615    557    2017-04-06 08:54:00    2017-04-06 08:54:00
80474    28615    870    2017-04-06 19:40:00    2017-04-06 19:40:00
80475    28615    517    2017-04-06 08:11:00    2017-04-06 08:11:00
80476    28615    501    2017-04-06 20:19:00    2017-04-06 20:19:00
80477    28615    810    2017-04-06 22:28:00    2017-04-06 22:28:00
80478    28616    539    2017-04-06 13:16:00    2017-04-06 13:16:00
80479    28616    540    2017-04-06 02:27:00    2017-04-06 02:27:00
80480    28616    933    2017-04-06 19:24:00    2017-04-06 19:24:00
80481    28616    876    2017-04-06 15:39:00    2017-04-06 15:39:00
80482    28616    927    2017-04-06 13:28:00    2017-04-06 13:28:00
80483    28617    597    2017-04-06 01:16:00    2017-04-06 01:16:00
80484    28617    609    2017-04-06 01:06:00    2017-04-06 01:06:00
80485    28617    946    2017-04-06 10:33:00    2017-04-06 10:33:00
80486    28617    548    2017-04-06 21:07:00    2017-04-06 21:07:00
80487    28617    903    2017-04-06 13:53:00    2017-04-06 13:53:00
80488    28618    892    2017-04-06 06:10:00    2017-04-06 06:10:00
80489    28618    777    2017-04-06 02:18:00    2017-04-06 02:18:00
80490    28618    768    2017-04-06 21:44:00    2017-04-06 21:44:00
80491    28618    645    2017-04-06 19:39:00    2017-04-06 19:39:00
80492    28618    827    2017-04-06 15:55:00    2017-04-06 15:55:00
80493    28619    481    2017-04-06 21:37:00    2017-04-06 21:37:00
80494    28619    862    2017-04-06 22:07:00    2017-04-06 22:07:00
80495    28619    846    2017-04-06 19:59:00    2017-04-06 19:59:00
80496    28619    926    2017-04-06 02:12:00    2017-04-06 02:12:00
80497    28619    485    2017-04-06 14:55:00    2017-04-06 14:55:00
80498    28620    852    2017-04-06 22:52:00    2017-04-06 22:52:00
80499    28620    638    2017-04-06 11:37:00    2017-04-06 11:37:00
80500    28620    891    2017-04-06 17:18:00    2017-04-06 17:18:00
80501    28620    682    2017-04-06 09:40:00    2017-04-06 09:40:00
80502    28620    771    2017-04-06 11:51:00    2017-04-06 11:51:00
80503    28621    724    2017-04-06 16:23:00    2017-04-06 16:23:00
80504    28621    583    2017-04-06 15:47:00    2017-04-06 15:47:00
80505    28621    680    2017-04-06 15:44:00    2017-04-06 15:44:00
80506    28621    950    2017-04-06 06:55:00    2017-04-06 06:55:00
80507    28621    661    2017-04-06 17:13:00    2017-04-06 17:13:00
80508    28622    668    2017-04-06 23:29:00    2017-04-06 23:29:00
80509    28622    919    2017-04-06 22:46:00    2017-04-06 22:46:00
80510    28622    740    2017-04-06 01:39:00    2017-04-06 01:39:00
80511    28622    700    2017-04-06 02:32:00    2017-04-06 02:32:00
80512    28622    499    2017-04-06 13:26:00    2017-04-06 13:26:00
80513    28623    526    2017-04-06 21:55:00    2017-04-06 21:55:00
80514    28623    795    2017-04-06 06:10:00    2017-04-06 06:10:00
80515    28623    640    2017-04-06 16:11:00    2017-04-06 16:11:00
80516    28623    689    2017-04-06 19:22:00    2017-04-06 19:22:00
80517    28623    575    2017-04-06 17:52:00    2017-04-06 17:52:00
80518    28624    783    2017-04-06 14:05:00    2017-04-06 14:05:00
80519    28624    730    2017-04-06 06:46:00    2017-04-06 06:46:00
80520    28624    944    2017-04-06 18:00:00    2017-04-06 18:00:00
80521    28624    627    2017-04-06 22:11:00    2017-04-06 22:11:00
80522    28624    771    2017-04-06 14:34:00    2017-04-06 14:34:00
80523    28625    516    2017-04-06 05:00:00    2017-04-06 05:00:00
80524    28625    737    2017-04-06 23:59:00    2017-04-06 23:59:00
80525    28625    708    2017-04-06 04:03:00    2017-04-06 04:03:00
80526    28625    796    2017-04-06 12:16:00    2017-04-06 12:16:00
80527    28625    903    2017-04-06 05:46:00    2017-04-06 05:46:00
80528    28626    795    2017-04-06 11:18:00    2017-04-06 11:18:00
80529    28626    699    2017-04-06 03:52:00    2017-04-06 03:52:00
80530    28626    915    2017-04-06 03:28:00    2017-04-06 03:28:00
80531    28626    828    2017-04-06 17:02:00    2017-04-06 17:02:00
80532    28626    735    2017-04-06 05:44:00    2017-04-06 05:44:00
80533    28627    862    2017-04-06 02:49:00    2017-04-06 02:49:00
80534    28627    813    2017-04-06 19:08:00    2017-04-06 19:08:00
80535    28627    773    2017-04-06 01:03:00    2017-04-06 01:03:00
80536    28627    845    2017-04-06 17:25:00    2017-04-06 17:25:00
80537    28627    960    2017-04-06 18:18:00    2017-04-06 18:18:00
80538    28628    803    2017-04-06 18:47:00    2017-04-06 18:47:00
80539    28628    785    2017-04-06 23:34:00    2017-04-06 23:34:00
80540    28628    816    2017-04-06 09:32:00    2017-04-06 09:32:00
80541    28628    495    2017-04-06 13:47:00    2017-04-06 13:47:00
80542    28628    960    2017-04-06 12:31:00    2017-04-06 12:31:00
80543    28629    661    2017-04-06 16:18:00    2017-04-06 16:18:00
80544    28629    842    2017-04-06 20:07:00    2017-04-06 20:07:00
80545    28629    801    2017-04-06 15:10:00    2017-04-06 15:10:00
80546    28629    565    2017-04-06 19:16:00    2017-04-06 19:16:00
80547    28629    518    2017-04-06 10:57:00    2017-04-06 10:57:00
80548    28630    746    2017-04-06 05:05:00    2017-04-06 05:05:00
80549    28630    479    2017-04-06 14:56:00    2017-04-06 14:56:00
80550    28630    479    2017-04-06 21:13:00    2017-04-06 21:13:00
80551    28630    858    2017-04-06 21:16:00    2017-04-06 21:16:00
80552    28630    935    2017-04-06 09:08:00    2017-04-06 09:08:00
80553    28631    723    2017-04-06 18:20:00    2017-04-06 18:20:00
80554    28631    880    2017-04-06 01:21:00    2017-04-06 01:21:00
80555    28631    915    2017-04-06 20:37:00    2017-04-06 20:37:00
80556    28631    738    2017-04-06 10:42:00    2017-04-06 10:42:00
80557    28631    675    2017-04-06 22:36:00    2017-04-06 22:36:00
80558    28632    582    2017-04-06 20:50:00    2017-04-06 20:50:00
80559    28632    526    2017-04-06 21:52:00    2017-04-06 21:52:00
80560    28632    583    2017-04-06 05:41:00    2017-04-06 05:41:00
80561    28632    505    2017-04-06 13:10:00    2017-04-06 13:10:00
80562    28632    497    2017-04-06 01:16:00    2017-04-06 01:16:00
80563    28633    530    2017-04-06 22:00:00    2017-04-06 22:00:00
80564    28633    488    2017-04-06 16:54:00    2017-04-06 16:54:00
80565    28633    506    2017-04-06 08:53:00    2017-04-06 08:53:00
80566    28633    766    2017-04-06 19:09:00    2017-04-06 19:09:00
80567    28633    693    2017-04-06 04:33:00    2017-04-06 04:33:00
80568    28634    488    2017-04-06 19:32:00    2017-04-06 19:32:00
80569    28634    512    2017-04-06 16:39:00    2017-04-06 16:39:00
80570    28634    834    2017-04-06 17:03:00    2017-04-06 17:03:00
80571    28634    600    2017-04-06 02:57:00    2017-04-06 02:57:00
80572    28634    834    2017-04-06 06:12:00    2017-04-06 06:12:00
80573    28635    870    2017-04-06 13:34:00    2017-04-06 13:34:00
80574    28635    822    2017-04-06 21:13:00    2017-04-06 21:13:00
80575    28635    535    2017-04-06 13:30:00    2017-04-06 13:30:00
80576    28635    803    2017-04-06 03:07:00    2017-04-06 03:07:00
80577    28635    827    2017-04-06 03:24:00    2017-04-06 03:24:00
80578    28636    825    2017-04-06 23:40:00    2017-04-06 23:40:00
80579    28636    655    2017-04-06 02:02:00    2017-04-06 02:02:00
80580    28636    734    2017-04-06 10:26:00    2017-04-06 10:26:00
80581    28636    829    2017-04-06 07:52:00    2017-04-06 07:52:00
80582    28636    486    2017-04-06 18:00:00    2017-04-06 18:00:00
80583    28637    507    2017-04-06 13:14:00    2017-04-06 13:14:00
80584    28637    936    2017-04-06 01:52:00    2017-04-06 01:52:00
80585    28637    690    2017-04-06 12:32:00    2017-04-06 12:32:00
80586    28637    870    2017-04-06 19:39:00    2017-04-06 19:39:00
80587    28637    533    2017-04-06 10:44:00    2017-04-06 10:44:00
80588    28638    690    2017-04-06 18:57:00    2017-04-06 18:57:00
80589    28638    886    2017-04-06 16:48:00    2017-04-06 16:48:00
80590    28638    768    2017-04-06 13:05:00    2017-04-06 13:05:00
80591    28638    909    2017-04-06 10:22:00    2017-04-06 10:22:00
80592    28638    719    2017-04-06 22:05:00    2017-04-06 22:05:00
80593    28639    788    2017-04-06 08:08:00    2017-04-06 08:08:00
80594    28639    705    2017-04-06 03:32:00    2017-04-06 03:32:00
80595    28639    925    2017-04-06 15:34:00    2017-04-06 15:34:00
80596    28639    695    2017-04-06 17:55:00    2017-04-06 17:55:00
80597    28639    546    2017-04-06 13:23:00    2017-04-06 13:23:00
80598    28640    590    2017-04-06 12:28:00    2017-04-06 12:28:00
80599    28640    577    2017-04-06 01:46:00    2017-04-06 01:46:00
80600    28640    689    2017-04-06 06:38:00    2017-04-06 06:38:00
80601    28640    552    2017-04-06 10:12:00    2017-04-06 10:12:00
80602    28640    656    2017-04-06 07:35:00    2017-04-06 07:35:00
80603    28641    829    2017-04-06 06:06:00    2017-04-06 06:06:00
80604    28641    564    2017-04-06 15:34:00    2017-04-06 15:34:00
80605    28641    604    2017-04-06 01:13:00    2017-04-06 01:13:00
80606    28641    615    2017-04-06 22:10:00    2017-04-06 22:10:00
80607    28641    552    2017-04-06 19:35:00    2017-04-06 19:35:00
80608    28642    572    2017-04-06 15:07:00    2017-04-06 15:07:00
80609    28642    507    2017-04-06 10:31:00    2017-04-06 10:31:00
80610    28642    931    2017-04-06 05:50:00    2017-04-06 05:50:00
80611    28642    782    2017-04-06 22:14:00    2017-04-06 22:14:00
80612    28642    837    2017-04-06 20:57:00    2017-04-06 20:57:00
80613    28643    563    2017-04-06 05:23:00    2017-04-06 05:23:00
80614    28643    854    2017-04-06 14:23:00    2017-04-06 14:23:00
80615    28643    490    2017-04-06 21:30:00    2017-04-06 21:30:00
80616    28643    851    2017-04-06 01:06:00    2017-04-06 01:06:00
80617    28643    770    2017-04-06 23:21:00    2017-04-06 23:21:00
80618    28644    959    2017-04-06 10:08:00    2017-04-06 10:08:00
80619    28644    604    2017-04-06 03:19:00    2017-04-06 03:19:00
80620    28644    544    2017-04-06 04:46:00    2017-04-06 04:46:00
80621    28644    959    2017-04-06 22:19:00    2017-04-06 22:19:00
80622    28644    852    2017-04-06 09:16:00    2017-04-06 09:16:00
80623    28645    901    2017-04-06 08:05:00    2017-04-06 08:05:00
80624    28645    899    2017-04-06 18:31:00    2017-04-06 18:31:00
80625    28645    538    2017-04-06 16:32:00    2017-04-06 16:32:00
80626    28645    953    2017-04-06 04:53:00    2017-04-06 04:53:00
80627    28645    770    2017-04-06 01:01:00    2017-04-06 01:01:00
80628    28646    789    2017-04-06 04:27:00    2017-04-06 04:27:00
80629    28646    635    2017-04-06 03:55:00    2017-04-06 03:55:00
80630    28646    735    2017-04-06 05:22:00    2017-04-06 05:22:00
80631    28646    687    2017-04-06 18:07:00    2017-04-06 18:07:00
80632    28646    842    2017-04-06 18:37:00    2017-04-06 18:37:00
80633    28647    805    2017-04-06 11:56:00    2017-04-06 11:56:00
80634    28647    590    2017-04-06 09:52:00    2017-04-06 09:52:00
80635    28647    946    2017-04-06 17:55:00    2017-04-06 17:55:00
80636    28647    718    2017-04-06 03:36:00    2017-04-06 03:36:00
80637    28647    584    2017-04-06 16:22:00    2017-04-06 16:22:00
80638    28648    837    2017-04-06 09:01:00    2017-04-06 09:01:00
80639    28648    633    2017-04-06 13:56:00    2017-04-06 13:56:00
80640    28648    738    2017-04-06 20:14:00    2017-04-06 20:14:00
80641    28648    589    2017-04-06 15:27:00    2017-04-06 15:27:00
80642    28648    567    2017-04-06 22:13:00    2017-04-06 22:13:00
80643    28649    552    2017-04-06 06:19:00    2017-04-06 06:19:00
80644    28649    566    2017-04-06 11:43:00    2017-04-06 11:43:00
80645    28649    674    2017-04-06 15:47:00    2017-04-06 15:47:00
80646    28649    598    2017-04-06 18:42:00    2017-04-06 18:42:00
80647    28649    826    2017-04-06 15:04:00    2017-04-06 15:04:00
80648    28650    464    2017-04-06 14:26:00    2017-04-06 14:26:00
80649    28650    796    2017-04-06 15:30:00    2017-04-06 15:30:00
80650    28650    780    2017-04-06 14:37:00    2017-04-06 14:37:00
80651    28650    657    2017-04-06 14:15:00    2017-04-06 14:15:00
80652    28650    495    2017-04-06 02:36:00    2017-04-06 02:36:00
80653    28651    511    2017-04-06 05:03:00    2017-04-06 05:03:00
80654    28651    665    2017-04-06 07:05:00    2017-04-06 07:05:00
80655    28651    532    2017-04-06 07:15:00    2017-04-06 07:15:00
80656    28651    686    2017-04-06 20:58:00    2017-04-06 20:58:00
80657    28651    881    2017-04-06 16:29:00    2017-04-06 16:29:00
80658    28652    618    2017-04-06 02:58:00    2017-04-06 02:58:00
80659    28652    481    2017-04-06 12:05:00    2017-04-06 12:05:00
80660    28652    768    2017-04-06 06:58:00    2017-04-06 06:58:00
80661    28652    836    2017-04-06 20:25:00    2017-04-06 20:25:00
80662    28652    538    2017-04-06 19:11:00    2017-04-06 19:11:00
80663    28653    783    2017-04-06 22:27:00    2017-04-06 22:27:00
80664    28653    511    2017-04-06 07:14:00    2017-04-06 07:14:00
80665    28653    624    2017-04-06 03:33:00    2017-04-06 03:33:00
80666    28653    558    2017-04-06 09:40:00    2017-04-06 09:40:00
80667    28653    707    2017-04-06 15:17:00    2017-04-06 15:17:00
80668    28654    768    2017-04-06 22:17:00    2017-04-06 22:17:00
80669    28654    739    2017-04-06 19:25:00    2017-04-06 19:25:00
80670    28654    468    2017-04-06 19:38:00    2017-04-06 19:38:00
80671    28654    470    2017-04-06 07:18:00    2017-04-06 07:18:00
80672    28654    919    2017-04-06 23:31:00    2017-04-06 23:31:00
80673    28655    625    2017-04-06 20:00:00    2017-04-06 20:00:00
80674    28655    868    2017-04-06 12:27:00    2017-04-06 12:27:00
80675    28655    698    2017-04-06 15:53:00    2017-04-06 15:53:00
80676    28655    816    2017-04-06 09:58:00    2017-04-06 09:58:00
80677    28655    921    2017-04-06 14:12:00    2017-04-06 14:12:00
80678    28656    541    2017-04-06 03:58:00    2017-04-06 03:58:00
80679    28656    656    2017-04-06 17:58:00    2017-04-06 17:58:00
80680    28656    568    2017-04-06 22:00:00    2017-04-06 22:00:00
80681    28656    796    2017-04-06 21:06:00    2017-04-06 21:06:00
80682    28656    660    2017-04-06 07:07:00    2017-04-06 07:07:00
80683    28657    813    2017-04-06 04:41:00    2017-04-06 04:41:00
80684    28657    497    2017-04-06 08:24:00    2017-04-06 08:24:00
80685    28657    937    2017-04-06 22:33:00    2017-04-06 22:33:00
80686    28657    609    2017-04-06 04:29:00    2017-04-06 04:29:00
80687    28657    755    2017-04-06 01:50:00    2017-04-06 01:50:00
80688    28658    852    2017-04-06 06:51:00    2017-04-06 06:51:00
80689    28658    822    2017-04-06 04:59:00    2017-04-06 04:59:00
80690    28658    879    2017-04-06 23:45:00    2017-04-06 23:45:00
80691    28658    622    2017-04-06 02:40:00    2017-04-06 02:40:00
80692    28658    537    2017-04-06 15:52:00    2017-04-06 15:52:00
80693    28659    948    2017-04-06 04:03:00    2017-04-06 04:03:00
80694    28659    843    2017-04-06 04:46:00    2017-04-06 04:46:00
80695    28659    904    2017-04-06 08:26:00    2017-04-06 08:26:00
80696    28659    927    2017-04-06 10:56:00    2017-04-06 10:56:00
80697    28659    698    2017-04-06 10:28:00    2017-04-06 10:28:00
80698    28660    887    2017-04-06 13:49:00    2017-04-06 13:49:00
80699    28660    480    2017-04-06 22:39:00    2017-04-06 22:39:00
80700    28660    959    2017-04-06 05:00:00    2017-04-06 05:00:00
80701    28660    777    2017-04-06 17:49:00    2017-04-06 17:49:00
80702    28660    654    2017-04-06 21:20:00    2017-04-06 21:20:00
80703    28661    499    2017-04-06 11:05:00    2017-04-06 11:05:00
80704    28661    927    2017-04-06 15:14:00    2017-04-06 15:14:00
80705    28661    597    2017-04-06 23:58:00    2017-04-06 23:58:00
80706    28661    601    2017-04-06 12:05:00    2017-04-06 12:05:00
80707    28661    570    2017-04-06 13:08:00    2017-04-06 13:08:00
80708    28662    622    2017-04-06 20:41:00    2017-04-06 20:41:00
80709    28662    539    2017-04-06 10:38:00    2017-04-06 10:38:00
80710    28662    638    2017-04-06 16:25:00    2017-04-06 16:25:00
80711    28662    576    2017-04-06 17:07:00    2017-04-06 17:07:00
80712    28662    607    2017-04-06 12:48:00    2017-04-06 12:48:00
80713    28663    766    2017-04-06 04:15:00    2017-04-06 04:15:00
80714    28663    613    2017-04-06 07:26:00    2017-04-06 07:26:00
80715    28663    569    2017-04-06 09:46:00    2017-04-06 09:46:00
80716    28663    532    2017-04-06 09:09:00    2017-04-06 09:09:00
80717    28663    602    2017-04-06 08:34:00    2017-04-06 08:34:00
80718    28664    640    2017-04-06 02:12:00    2017-04-06 02:12:00
80719    28664    717    2017-04-06 15:30:00    2017-04-06 15:30:00
80720    28664    532    2017-04-06 15:38:00    2017-04-06 15:38:00
80721    28664    472    2017-04-06 10:31:00    2017-04-06 10:31:00
80722    28664    709    2017-04-06 15:42:00    2017-04-06 15:42:00
80723    28665    850    2017-04-06 11:25:00    2017-04-06 11:25:00
80724    28665    882    2017-04-06 02:00:00    2017-04-06 02:00:00
80725    28665    863    2017-04-06 19:08:00    2017-04-06 19:08:00
80726    28665    809    2017-04-06 23:55:00    2017-04-06 23:55:00
80727    28665    475    2017-04-06 03:09:00    2017-04-06 03:09:00
80728    28666    499    2017-04-06 06:40:00    2017-04-06 06:40:00
80729    28666    651    2017-04-06 03:24:00    2017-04-06 03:24:00
80730    28666    570    2017-04-06 17:25:00    2017-04-06 17:25:00
80731    28666    791    2017-04-06 02:30:00    2017-04-06 02:30:00
80732    28666    484    2017-04-06 05:40:00    2017-04-06 05:40:00
80733    28667    680    2017-04-06 05:17:00    2017-04-06 05:17:00
80734    28667    776    2017-04-06 19:49:00    2017-04-06 19:49:00
80735    28667    470    2017-04-06 04:24:00    2017-04-06 04:24:00
80736    28667    608    2017-04-06 08:19:00    2017-04-06 08:19:00
80737    28667    632    2017-04-06 05:28:00    2017-04-06 05:28:00
80738    28668    875    2017-04-06 02:47:00    2017-04-06 02:47:00
80739    28668    678    2017-04-06 21:07:00    2017-04-06 21:07:00
80740    28668    775    2017-04-06 01:23:00    2017-04-06 01:23:00
80741    28668    501    2017-04-06 04:00:00    2017-04-06 04:00:00
80742    28668    534    2017-04-06 14:13:00    2017-04-06 14:13:00
80743    28669    620    2017-04-06 05:55:00    2017-04-06 05:55:00
80744    28669    529    2017-04-06 01:49:00    2017-04-06 01:49:00
80745    28669    686    2017-04-06 11:34:00    2017-04-06 11:34:00
80746    28669    799    2017-04-06 08:31:00    2017-04-06 08:31:00
80747    28669    647    2017-04-06 13:07:00    2017-04-06 13:07:00
80748    28670    883    2017-04-06 02:07:00    2017-04-06 02:07:00
80749    28670    868    2017-04-06 19:40:00    2017-04-06 19:40:00
80750    28670    695    2017-04-06 08:12:00    2017-04-06 08:12:00
80751    28670    813    2017-04-06 07:20:00    2017-04-06 07:20:00
80752    28670    775    2017-04-06 04:34:00    2017-04-06 04:34:00
80753    28671    775    2017-04-06 13:49:00    2017-04-06 13:49:00
80754    28671    824    2017-04-06 18:10:00    2017-04-06 18:10:00
80755    28671    865    2017-04-06 17:07:00    2017-04-06 17:07:00
80756    28671    590    2017-04-06 01:03:00    2017-04-06 01:03:00
80757    28671    525    2017-04-06 23:51:00    2017-04-06 23:51:00
80758    28672    637    2017-04-06 01:55:00    2017-04-06 01:55:00
80759    28672    765    2017-04-06 14:00:00    2017-04-06 14:00:00
80760    28672    479    2017-04-06 12:14:00    2017-04-06 12:14:00
80761    28672    535    2017-04-06 05:34:00    2017-04-06 05:34:00
80762    28672    674    2017-04-06 12:33:00    2017-04-06 12:33:00
80763    28673    820    2017-04-06 05:03:00    2017-04-06 05:03:00
80764    28673    509    2017-04-06 08:48:00    2017-04-06 08:48:00
80765    28673    610    2017-04-06 23:51:00    2017-04-06 23:51:00
80766    28673    536    2017-04-06 10:32:00    2017-04-06 10:32:00
80767    28673    726    2017-04-06 20:28:00    2017-04-06 20:28:00
80768    28674    683    2017-04-06 14:48:00    2017-04-06 14:48:00
80769    28674    900    2017-04-06 05:48:00    2017-04-06 05:48:00
80770    28674    470    2017-04-06 05:06:00    2017-04-06 05:06:00
80771    28674    838    2017-04-06 22:55:00    2017-04-06 22:55:00
80772    28674    576    2017-04-06 10:14:00    2017-04-06 10:14:00
80773    28675    779    2017-04-06 18:11:00    2017-04-06 18:11:00
80774    28675    644    2017-04-06 08:37:00    2017-04-06 08:37:00
80775    28675    735    2017-04-06 08:59:00    2017-04-06 08:59:00
80776    28675    918    2017-04-06 02:50:00    2017-04-06 02:50:00
80777    28675    570    2017-04-06 15:47:00    2017-04-06 15:47:00
80778    28676    506    2017-04-06 11:15:00    2017-04-06 11:15:00
80779    28676    938    2017-04-06 11:15:00    2017-04-06 11:15:00
80780    28676    758    2017-04-06 08:49:00    2017-04-06 08:49:00
80781    28676    937    2017-04-06 17:02:00    2017-04-06 17:02:00
80782    28676    509    2017-04-06 06:30:00    2017-04-06 06:30:00
80783    28677    845    2017-04-06 14:59:00    2017-04-06 14:59:00
80784    28677    685    2017-04-06 15:09:00    2017-04-06 15:09:00
80785    28677    821    2017-04-06 06:55:00    2017-04-06 06:55:00
80786    28677    909    2017-04-06 20:07:00    2017-04-06 20:07:00
80787    28677    476    2017-04-06 08:06:00    2017-04-06 08:06:00
80788    28678    600    2017-04-06 21:38:00    2017-04-06 21:38:00
80789    28678    598    2017-04-06 02:46:00    2017-04-06 02:46:00
80790    28678    647    2017-04-06 08:52:00    2017-04-06 08:52:00
80791    28678    602    2017-04-06 02:21:00    2017-04-06 02:21:00
80792    28678    808    2017-04-06 05:10:00    2017-04-06 05:10:00
80793    28679    756    2017-04-06 04:40:00    2017-04-06 04:40:00
80794    28679    831    2017-04-06 23:41:00    2017-04-06 23:41:00
80795    28679    827    2017-04-06 01:13:00    2017-04-06 01:13:00
80796    28679    644    2017-04-06 12:52:00    2017-04-06 12:52:00
80797    28679    608    2017-04-06 22:24:00    2017-04-06 22:24:00
80798    28680    560    2017-04-06 13:04:00    2017-04-06 13:04:00
80799    28680    845    2017-04-06 03:41:00    2017-04-06 03:41:00
80800    28680    921    2017-04-06 03:19:00    2017-04-06 03:19:00
80801    28680    691    2017-04-06 11:40:00    2017-04-06 11:40:00
80802    28680    495    2017-04-06 02:54:00    2017-04-06 02:54:00
80803    28681    735    2017-04-06 11:53:00    2017-04-06 11:53:00
80804    28681    787    2017-04-06 01:44:00    2017-04-06 01:44:00
80805    28681    874    2017-04-06 01:58:00    2017-04-06 01:58:00
80806    28681    524    2017-04-06 08:21:00    2017-04-06 08:21:00
80807    28681    846    2017-04-06 13:09:00    2017-04-06 13:09:00
80808    28682    941    2017-04-06 22:13:00    2017-04-06 22:13:00
80809    28682    708    2017-04-06 16:14:00    2017-04-06 16:14:00
80810    28682    572    2017-04-06 09:53:00    2017-04-06 09:53:00
80811    28682    500    2017-04-06 18:58:00    2017-04-06 18:58:00
80812    28682    623    2017-04-06 18:43:00    2017-04-06 18:43:00
80813    28683    789    2017-04-06 13:07:00    2017-04-06 13:07:00
80814    28683    755    2017-04-06 06:03:00    2017-04-06 06:03:00
80815    28683    856    2017-04-06 20:42:00    2017-04-06 20:42:00
80816    28683    680    2017-04-06 18:59:00    2017-04-06 18:59:00
80817    28683    733    2017-04-06 11:25:00    2017-04-06 11:25:00
80818    28684    846    2017-04-06 09:48:00    2017-04-06 09:48:00
80819    28684    654    2017-04-06 04:09:00    2017-04-06 04:09:00
80820    28684    862    2017-04-06 06:01:00    2017-04-06 06:01:00
80821    28684    499    2017-04-06 02:14:00    2017-04-06 02:14:00
80822    28684    942    2017-04-06 13:23:00    2017-04-06 13:23:00
80823    28685    666    2017-04-06 19:11:00    2017-04-06 19:11:00
80824    28685    674    2017-04-06 13:16:00    2017-04-06 13:16:00
80825    28685    602    2017-04-06 07:23:00    2017-04-06 07:23:00
80826    28685    560    2017-04-06 06:09:00    2017-04-06 06:09:00
80827    28685    530    2017-04-06 21:07:00    2017-04-06 21:07:00
80828    28686    947    2017-04-07 19:39:00    2017-04-07 19:39:00
80829    28686    787    2017-04-07 18:36:00    2017-04-07 18:36:00
80830    28686    631    2017-04-07 19:12:00    2017-04-07 19:12:00
80831    28686    664    2017-04-07 07:00:00    2017-04-07 07:00:00
80832    28686    629    2017-04-07 11:32:00    2017-04-07 11:32:00
80833    28687    830    2017-04-07 21:43:00    2017-04-07 21:43:00
80834    28687    704    2017-04-07 03:52:00    2017-04-07 03:52:00
80835    28687    849    2017-04-07 04:28:00    2017-04-07 04:28:00
80836    28687    959    2017-04-07 21:50:00    2017-04-07 21:50:00
80837    28687    859    2017-04-07 11:48:00    2017-04-07 11:48:00
80838    28688    799    2017-04-07 07:59:00    2017-04-07 07:59:00
80839    28688    799    2017-04-07 03:19:00    2017-04-07 03:19:00
80840    28688    545    2017-04-07 05:27:00    2017-04-07 05:27:00
80841    28688    504    2017-04-07 04:13:00    2017-04-07 04:13:00
80842    28688    868    2017-04-07 10:36:00    2017-04-07 10:36:00
80843    28689    472    2017-04-07 16:32:00    2017-04-07 16:32:00
80844    28689    600    2017-04-07 21:10:00    2017-04-07 21:10:00
80845    28689    871    2017-04-07 22:08:00    2017-04-07 22:08:00
80846    28689    827    2017-04-07 14:47:00    2017-04-07 14:47:00
80847    28689    915    2017-04-07 15:51:00    2017-04-07 15:51:00
80848    28690    489    2017-04-07 02:40:00    2017-04-07 02:40:00
80849    28690    947    2017-04-07 08:06:00    2017-04-07 08:06:00
80850    28690    579    2017-04-07 17:16:00    2017-04-07 17:16:00
80851    28690    909    2017-04-07 02:51:00    2017-04-07 02:51:00
80852    28690    552    2017-04-07 18:20:00    2017-04-07 18:20:00
80853    28691    705    2017-04-07 16:33:00    2017-04-07 16:33:00
80854    28691    732    2017-04-07 13:40:00    2017-04-07 13:40:00
80855    28691    563    2017-04-07 05:22:00    2017-04-07 05:22:00
80856    28691    663    2017-04-07 16:33:00    2017-04-07 16:33:00
80857    28691    786    2017-04-07 08:34:00    2017-04-07 08:34:00
80858    28692    677    2017-04-07 12:03:00    2017-04-07 12:03:00
80859    28692    907    2017-04-07 19:09:00    2017-04-07 19:09:00
80860    28692    496    2017-04-07 14:35:00    2017-04-07 14:35:00
80861    28692    768    2017-04-07 03:14:00    2017-04-07 03:14:00
80862    28692    804    2017-04-07 01:47:00    2017-04-07 01:47:00
80863    28693    765    2017-04-07 19:03:00    2017-04-07 19:03:00
80864    28693    813    2017-04-07 08:38:00    2017-04-07 08:38:00
80865    28693    777    2017-04-07 06:33:00    2017-04-07 06:33:00
80866    28693    777    2017-04-07 04:40:00    2017-04-07 04:40:00
80867    28693    666    2017-04-07 02:34:00    2017-04-07 02:34:00
80868    28694    562    2017-04-07 22:59:00    2017-04-07 22:59:00
80869    28694    863    2017-04-07 23:05:00    2017-04-07 23:05:00
80870    28694    639    2017-04-07 17:09:00    2017-04-07 17:09:00
80871    28694    510    2017-04-07 10:17:00    2017-04-07 10:17:00
80872    28694    790    2017-04-07 14:12:00    2017-04-07 14:12:00
80873    28695    556    2017-04-08 00:00:00    2017-04-08 00:00:00
80874    28695    617    2017-04-07 23:10:00    2017-04-07 23:10:00
80875    28695    537    2017-04-07 14:32:00    2017-04-07 14:32:00
80876    28695    916    2017-04-07 22:00:00    2017-04-07 22:00:00
80877    28695    538    2017-04-07 01:45:00    2017-04-07 01:45:00
80878    28696    549    2017-04-07 05:05:00    2017-04-07 05:05:00
80879    28696    954    2017-04-07 13:28:00    2017-04-07 13:28:00
80880    28696    659    2017-04-07 15:06:00    2017-04-07 15:06:00
80881    28696    626    2017-04-07 13:54:00    2017-04-07 13:54:00
80882    28696    902    2017-04-07 02:05:00    2017-04-07 02:05:00
80883    28697    672    2017-04-07 10:07:00    2017-04-07 10:07:00
80884    28697    514    2017-04-07 10:46:00    2017-04-07 10:46:00
80885    28697    631    2017-04-07 23:55:00    2017-04-07 23:55:00
80886    28697    768    2017-04-07 01:06:00    2017-04-07 01:06:00
80887    28697    775    2017-04-07 08:48:00    2017-04-07 08:48:00
80888    28698    905    2017-04-07 15:00:00    2017-04-07 15:00:00
80889    28698    880    2017-04-07 14:06:00    2017-04-07 14:06:00
80890    28698    834    2017-04-07 21:25:00    2017-04-07 21:25:00
80891    28698    523    2017-04-07 05:20:00    2017-04-07 05:20:00
80892    28698    645    2017-04-07 13:13:00    2017-04-07 13:13:00
80893    28699    504    2017-04-07 18:00:00    2017-04-07 18:00:00
80894    28699    630    2017-04-07 20:05:00    2017-04-07 20:05:00
80895    28699    758    2017-04-07 09:13:00    2017-04-07 09:13:00
80896    28699    712    2017-04-07 22:36:00    2017-04-07 22:36:00
80897    28699    908    2017-04-07 14:52:00    2017-04-07 14:52:00
80898    28700    605    2017-04-07 19:14:00    2017-04-07 19:14:00
80899    28700    671    2017-04-07 02:29:00    2017-04-07 02:29:00
80900    28700    868    2017-04-07 20:21:00    2017-04-07 20:21:00
80901    28700    777    2017-04-07 05:51:00    2017-04-07 05:51:00
80902    28700    825    2017-04-07 04:03:00    2017-04-07 04:03:00
80903    28701    498    2017-04-07 22:41:00    2017-04-07 22:41:00
80904    28701    728    2017-04-07 07:40:00    2017-04-07 07:40:00
80905    28701    580    2017-04-07 03:52:00    2017-04-07 03:52:00
80906    28701    910    2017-04-07 18:40:00    2017-04-07 18:40:00
80907    28701    866    2017-04-07 06:48:00    2017-04-07 06:48:00
80908    28702    914    2017-04-07 18:21:00    2017-04-07 18:21:00
80909    28702    764    2017-04-07 12:00:00    2017-04-07 12:00:00
80910    28702    701    2017-04-07 14:55:00    2017-04-07 14:55:00
80911    28702    507    2017-04-07 05:00:00    2017-04-07 05:00:00
80912    28702    463    2017-04-07 01:17:00    2017-04-07 01:17:00
80913    28703    641    2017-04-07 01:35:00    2017-04-07 01:35:00
80914    28703    645    2017-04-07 20:27:00    2017-04-07 20:27:00
80915    28703    767    2017-04-07 19:35:00    2017-04-07 19:35:00
80916    28703    724    2017-04-07 16:46:00    2017-04-07 16:46:00
80917    28703    833    2017-04-07 11:00:00    2017-04-07 11:00:00
80918    28704    880    2017-04-07 16:30:00    2017-04-07 16:30:00
80919    28704    698    2017-04-07 15:29:00    2017-04-07 15:29:00
80920    28704    709    2017-04-07 16:47:00    2017-04-07 16:47:00
80921    28704    800    2017-04-07 08:16:00    2017-04-07 08:16:00
80922    28704    870    2017-04-07 06:26:00    2017-04-07 06:26:00
80923    28705    551    2017-04-07 08:46:00    2017-04-07 08:46:00
80924    28705    642    2017-04-07 12:48:00    2017-04-07 12:48:00
80925    28705    775    2017-04-07 22:12:00    2017-04-07 22:12:00
80926    28705    882    2017-04-07 11:49:00    2017-04-07 11:49:00
80927    28705    712    2017-04-07 13:05:00    2017-04-07 13:05:00
80928    28706    902    2017-04-08 09:10:00    2017-04-08 09:10:00
80929    28706    470    2017-04-08 02:00:00    2017-04-08 02:00:00
80930    28706    886    2017-04-08 04:50:00    2017-04-08 04:50:00
80931    28706    692    2017-04-08 21:44:00    2017-04-08 21:44:00
80932    28706    558    2017-04-08 12:08:00    2017-04-08 12:08:00
80933    28707    887    2017-04-08 21:28:00    2017-04-08 21:28:00
80934    28707    628    2017-04-08 13:05:00    2017-04-08 13:05:00
80935    28707    560    2017-04-08 05:33:00    2017-04-08 05:33:00
80936    28707    805    2017-04-08 02:49:00    2017-04-08 02:49:00
80937    28707    725    2017-04-08 05:55:00    2017-04-08 05:55:00
80938    28708    614    2017-04-08 19:31:00    2017-04-08 19:31:00
80939    28708    797    2017-04-08 17:19:00    2017-04-08 17:19:00
80940    28708    939    2017-04-08 03:33:00    2017-04-08 03:33:00
80941    28708    750    2017-04-08 02:35:00    2017-04-08 02:35:00
80942    28708    782    2017-04-08 23:42:00    2017-04-08 23:42:00
80943    28709    628    2017-04-08 04:23:00    2017-04-08 04:23:00
80944    28709    674    2017-04-08 21:35:00    2017-04-08 21:35:00
80945    28709    657    2017-04-08 19:56:00    2017-04-08 19:56:00
80946    28709    463    2017-04-08 23:28:00    2017-04-08 23:28:00
80947    28709    582    2017-04-08 04:43:00    2017-04-08 04:43:00
80948    28710    876    2017-04-08 15:56:00    2017-04-08 15:56:00
80949    28710    505    2017-04-08 23:17:00    2017-04-08 23:17:00
80950    28710    668    2017-04-08 10:00:00    2017-04-08 10:00:00
80951    28710    484    2017-04-08 04:09:00    2017-04-08 04:09:00
80952    28710    764    2017-04-08 16:42:00    2017-04-08 16:42:00
80953    28711    929    2017-04-08 20:35:00    2017-04-08 20:35:00
80954    28711    716    2017-04-08 08:38:00    2017-04-08 08:38:00
80955    28711    743    2017-04-08 10:56:00    2017-04-08 10:56:00
80956    28711    934    2017-04-08 21:16:00    2017-04-08 21:16:00
80957    28711    697    2017-04-08 15:44:00    2017-04-08 15:44:00
80958    28712    888    2017-04-08 19:45:00    2017-04-08 19:45:00
80959    28712    888    2017-04-08 23:05:00    2017-04-08 23:05:00
80960    28712    786    2017-04-08 03:37:00    2017-04-08 03:37:00
80961    28712    808    2017-04-08 06:51:00    2017-04-08 06:51:00
80962    28712    924    2017-04-08 19:42:00    2017-04-08 19:42:00
80963    28713    811    2017-04-08 03:14:00    2017-04-08 03:14:00
80964    28713    743    2017-04-08 06:29:00    2017-04-08 06:29:00
80965    28713    638    2017-04-08 16:09:00    2017-04-08 16:09:00
80966    28713    504    2017-04-08 03:28:00    2017-04-08 03:28:00
80967    28713    566    2017-04-08 18:54:00    2017-04-08 18:54:00
80968    28714    836    2017-04-08 17:43:00    2017-04-08 17:43:00
80969    28714    841    2017-04-08 13:09:00    2017-04-08 13:09:00
80970    28714    860    2017-04-08 03:14:00    2017-04-08 03:14:00
80971    28714    806    2017-04-08 18:34:00    2017-04-08 18:34:00
80972    28714    953    2017-04-08 20:24:00    2017-04-08 20:24:00
80973    28715    705    2017-04-08 15:43:00    2017-04-08 15:43:00
80974    28715    617    2017-04-08 03:59:00    2017-04-08 03:59:00
80975    28715    745    2017-04-08 16:10:00    2017-04-08 16:10:00
80976    28715    608    2017-04-08 17:33:00    2017-04-08 17:33:00
80977    28715    594    2017-04-08 19:55:00    2017-04-08 19:55:00
80978    28716    526    2017-04-08 14:44:00    2017-04-08 14:44:00
80979    28716    686    2017-04-08 07:24:00    2017-04-08 07:24:00
80980    28716    857    2017-04-08 10:43:00    2017-04-08 10:43:00
80981    28716    864    2017-04-08 21:19:00    2017-04-08 21:19:00
80982    28716    863    2017-04-08 05:23:00    2017-04-08 05:23:00
80983    28717    496    2017-04-08 05:24:00    2017-04-08 05:24:00
80984    28717    722    2017-04-08 15:11:00    2017-04-08 15:11:00
80985    28717    664    2017-04-08 15:46:00    2017-04-08 15:46:00
80986    28717    887    2017-04-08 17:03:00    2017-04-08 17:03:00
80987    28717    710    2017-04-08 16:22:00    2017-04-08 16:22:00
80988    28718    563    2017-04-08 17:45:00    2017-04-08 17:45:00
80989    28718    694    2017-04-08 03:24:00    2017-04-08 03:24:00
80990    28718    784    2017-04-08 23:06:00    2017-04-08 23:06:00
80991    28718    749    2017-04-08 20:43:00    2017-04-08 20:43:00
80992    28718    481    2017-04-08 04:04:00    2017-04-08 04:04:00
80993    28719    633    2017-04-08 11:23:00    2017-04-08 11:23:00
80994    28719    747    2017-04-08 09:34:00    2017-04-08 09:34:00
80995    28719    801    2017-04-08 20:37:00    2017-04-08 20:37:00
80996    28719    475    2017-04-08 03:07:00    2017-04-08 03:07:00
80997    28719    764    2017-04-08 17:48:00    2017-04-08 17:48:00
80998    28720    583    2017-04-08 05:24:00    2017-04-08 05:24:00
80999    28720    569    2017-04-08 19:49:00    2017-04-08 19:49:00
81000    28720    791    2017-04-08 04:09:00    2017-04-08 04:09:00
81001    28720    903    2017-04-08 13:58:00    2017-04-08 13:58:00
81002    28720    738    2017-04-08 03:54:00    2017-04-08 03:54:00
81003    28721    546    2017-04-08 10:00:00    2017-04-08 10:00:00
81004    28721    512    2017-04-08 20:13:00    2017-04-08 20:13:00
81005    28721    598    2017-04-08 09:41:00    2017-04-08 09:41:00
81006    28721    718    2017-04-08 15:08:00    2017-04-08 15:08:00
81007    28721    843    2017-04-08 18:35:00    2017-04-08 18:35:00
81008    28722    897    2017-04-08 20:55:00    2017-04-08 20:55:00
81009    28722    610    2017-04-08 09:30:00    2017-04-08 09:30:00
81010    28722    882    2017-04-08 14:46:00    2017-04-08 14:46:00
81011    28722    501    2017-04-08 07:12:00    2017-04-08 07:12:00
81012    28722    521    2017-04-08 11:03:00    2017-04-08 11:03:00
81013    28723    478    2017-04-08 19:34:00    2017-04-08 19:34:00
81014    28723    937    2017-04-08 11:26:00    2017-04-08 11:26:00
81015    28723    866    2017-04-08 22:08:00    2017-04-08 22:08:00
81016    28723    465    2017-04-08 15:45:00    2017-04-08 15:45:00
81017    28723    814    2017-04-08 12:19:00    2017-04-08 12:19:00
81018    28724    784    2017-04-08 01:20:00    2017-04-08 01:20:00
81019    28724    955    2017-04-08 17:11:00    2017-04-08 17:11:00
81020    28724    679    2017-04-08 14:51:00    2017-04-08 14:51:00
81021    28724    887    2017-04-08 14:41:00    2017-04-08 14:41:00
81022    28724    643    2017-04-08 21:15:00    2017-04-08 21:15:00
81023    28725    598    2017-04-08 20:25:00    2017-04-08 20:25:00
81024    28725    508    2017-04-08 12:51:00    2017-04-08 12:51:00
81025    28725    796    2017-04-08 20:16:00    2017-04-08 20:16:00
81026    28725    473    2017-04-08 04:31:00    2017-04-08 04:31:00
81027    28725    500    2017-04-08 23:05:00    2017-04-08 23:05:00
81028    28726    675    2017-04-08 13:31:00    2017-04-08 13:31:00
81029    28726    585    2017-04-08 16:58:00    2017-04-08 16:58:00
81030    28726    863    2017-04-08 08:00:00    2017-04-08 08:00:00
81031    28726    663    2017-04-08 14:18:00    2017-04-08 14:18:00
81032    28726    562    2017-04-08 02:13:00    2017-04-08 02:13:00
81033    28727    957    2017-04-08 01:06:00    2017-04-08 01:06:00
81034    28727    590    2017-04-08 22:02:00    2017-04-08 22:02:00
81035    28727    772    2017-04-08 04:22:00    2017-04-08 04:22:00
81036    28727    912    2017-04-08 09:51:00    2017-04-08 09:51:00
81037    28727    514    2017-04-08 06:32:00    2017-04-08 06:32:00
81038    28728    789    2017-04-08 09:05:00    2017-04-08 09:05:00
81039    28728    872    2017-04-08 09:44:00    2017-04-08 09:44:00
81040    28728    794    2017-04-08 06:50:00    2017-04-08 06:50:00
81041    28728    572    2017-04-08 15:55:00    2017-04-08 15:55:00
81042    28728    847    2017-04-08 16:33:00    2017-04-08 16:33:00
81043    28729    956    2017-04-08 04:54:00    2017-04-08 04:54:00
81044    28729    481    2017-04-08 16:49:00    2017-04-08 16:49:00
81045    28729    765    2017-04-08 21:04:00    2017-04-08 21:04:00
81046    28729    850    2017-04-08 03:00:00    2017-04-08 03:00:00
81047    28729    696    2017-04-08 02:23:00    2017-04-08 02:23:00
81048    28730    877    2017-04-08 12:42:00    2017-04-08 12:42:00
81049    28730    912    2017-04-08 07:39:00    2017-04-08 07:39:00
81050    28730    566    2017-04-08 18:26:00    2017-04-08 18:26:00
81051    28730    772    2017-04-08 01:57:00    2017-04-08 01:57:00
81052    28730    642    2017-04-08 01:53:00    2017-04-08 01:53:00
81053    28731    958    2017-04-09 20:07:00    2017-04-09 20:07:00
81054    28731    859    2017-04-09 08:32:00    2017-04-09 08:32:00
81055    28731    737    2017-04-09 14:10:00    2017-04-09 14:10:00
81056    28731    519    2017-04-09 13:48:00    2017-04-09 13:48:00
81057    28731    945    2017-04-09 22:38:00    2017-04-09 22:38:00
81058    28732    956    2017-04-09 04:04:00    2017-04-09 04:04:00
81059    28732    913    2017-04-09 06:49:00    2017-04-09 06:49:00
81060    28732    555    2017-04-09 19:36:00    2017-04-09 19:36:00
81061    28732    685    2017-04-09 16:03:00    2017-04-09 16:03:00
81062    28732    571    2017-04-09 18:14:00    2017-04-09 18:14:00
81063    28733    652    2017-04-09 15:41:00    2017-04-09 15:41:00
81064    28733    629    2017-04-09 08:55:00    2017-04-09 08:55:00
81065    28733    617    2017-04-09 18:36:00    2017-04-09 18:36:00
81066    28733    856    2017-04-09 06:13:00    2017-04-09 06:13:00
81067    28733    839    2017-04-09 09:34:00    2017-04-09 09:34:00
81068    28734    753    2017-04-09 23:02:00    2017-04-09 23:02:00
81069    28734    557    2017-04-09 21:21:00    2017-04-09 21:21:00
81070    28734    661    2017-04-09 01:51:00    2017-04-09 01:51:00
81071    28734    470    2017-04-09 15:56:00    2017-04-09 15:56:00
81072    28734    522    2017-04-09 14:01:00    2017-04-09 14:01:00
81073    28735    664    2017-04-09 19:25:00    2017-04-09 19:25:00
81074    28735    618    2017-04-09 01:46:00    2017-04-09 01:46:00
81075    28735    746    2017-04-09 23:24:00    2017-04-09 23:24:00
81076    28735    588    2017-04-09 23:18:00    2017-04-09 23:18:00
81077    28735    675    2017-04-09 08:17:00    2017-04-09 08:17:00
81078    28736    752    2017-04-09 08:26:00    2017-04-09 08:26:00
81079    28736    464    2017-04-09 03:09:00    2017-04-09 03:09:00
81080    28736    818    2017-04-09 23:13:00    2017-04-09 23:13:00
81081    28736    934    2017-04-09 06:08:00    2017-04-09 06:08:00
81082    28736    476    2017-04-09 07:14:00    2017-04-09 07:14:00
81083    28737    758    2017-04-09 03:06:00    2017-04-09 03:06:00
81084    28737    544    2017-04-09 21:12:00    2017-04-09 21:12:00
81085    28737    562    2017-04-09 21:51:00    2017-04-09 21:51:00
81086    28737    478    2017-04-09 05:23:00    2017-04-09 05:23:00
81087    28737    775    2017-04-09 16:36:00    2017-04-09 16:36:00
81088    28738    867    2017-04-09 11:45:00    2017-04-09 11:45:00
81089    28738    686    2017-04-09 12:30:00    2017-04-09 12:30:00
81090    28738    631    2017-04-09 08:06:00    2017-04-09 08:06:00
81091    28738    776    2017-04-09 07:19:00    2017-04-09 07:19:00
81092    28738    875    2017-04-09 16:52:00    2017-04-09 16:52:00
81093    28739    535    2017-04-09 16:35:00    2017-04-09 16:35:00
81094    28739    946    2017-04-09 18:08:00    2017-04-09 18:08:00
81095    28739    902    2017-04-09 05:03:00    2017-04-09 05:03:00
81096    28739    531    2017-04-09 01:45:00    2017-04-09 01:45:00
81097    28739    898    2017-04-09 20:47:00    2017-04-09 20:47:00
81098    28740    587    2017-04-09 10:36:00    2017-04-09 10:36:00
81099    28740    830    2017-04-09 02:23:00    2017-04-09 02:23:00
81100    28740    917    2017-04-09 07:37:00    2017-04-09 07:37:00
81101    28740    656    2017-04-09 01:51:00    2017-04-09 01:51:00
81102    28740    768    2017-04-09 16:52:00    2017-04-09 16:52:00
81103    28741    632    2017-04-09 07:04:00    2017-04-09 07:04:00
81104    28741    557    2017-04-09 18:02:00    2017-04-09 18:02:00
81105    28741    488    2017-04-09 05:32:00    2017-04-09 05:32:00
81106    28741    875    2017-04-09 13:30:00    2017-04-09 13:30:00
81107    28741    707    2017-04-09 07:44:00    2017-04-09 07:44:00
81108    28742    490    2017-04-09 19:02:00    2017-04-09 19:02:00
81109    28742    884    2017-04-09 07:24:00    2017-04-09 07:24:00
81110    28742    728    2017-04-09 17:12:00    2017-04-09 17:12:00
81111    28742    922    2017-04-09 22:56:00    2017-04-09 22:56:00
81112    28742    507    2017-04-09 14:54:00    2017-04-09 14:54:00
81113    28743    612    2017-04-09 02:45:00    2017-04-09 02:45:00
81114    28743    809    2017-04-09 02:08:00    2017-04-09 02:08:00
81115    28743    858    2017-04-09 16:06:00    2017-04-09 16:06:00
81116    28743    649    2017-04-09 08:26:00    2017-04-09 08:26:00
81117    28743    766    2017-04-09 15:52:00    2017-04-09 15:52:00
81118    28744    876    2017-04-09 04:07:00    2017-04-09 04:07:00
81119    28744    771    2017-04-09 14:13:00    2017-04-09 14:13:00
81120    28744    567    2017-04-09 12:28:00    2017-04-09 12:28:00
81121    28744    575    2017-04-09 18:35:00    2017-04-09 18:35:00
81122    28744    685    2017-04-09 09:06:00    2017-04-09 09:06:00
81123    28745    579    2017-04-09 19:26:00    2017-04-09 19:26:00
81124    28745    752    2017-04-09 04:55:00    2017-04-09 04:55:00
81125    28745    891    2017-04-09 08:26:00    2017-04-09 08:26:00
81126    28745    926    2017-04-09 15:37:00    2017-04-09 15:37:00
81127    28745    606    2017-04-09 06:24:00    2017-04-09 06:24:00
81128    28746    799    2017-04-09 03:19:00    2017-04-09 03:19:00
81129    28746    702    2017-04-09 05:40:00    2017-04-09 05:40:00
81130    28746    667    2017-04-09 19:43:00    2017-04-09 19:43:00
81131    28746    878    2017-04-09 07:02:00    2017-04-09 07:02:00
81132    28746    812    2017-04-09 03:46:00    2017-04-09 03:46:00
81133    28747    776    2017-04-09 08:26:00    2017-04-09 08:26:00
81134    28747    915    2017-04-09 11:38:00    2017-04-09 11:38:00
81135    28747    935    2017-04-09 01:32:00    2017-04-09 01:32:00
81136    28747    632    2017-04-09 14:17:00    2017-04-09 14:17:00
81137    28747    667    2017-04-09 05:09:00    2017-04-09 05:09:00
81138    28748    706    2017-04-09 11:10:00    2017-04-09 11:10:00
81139    28748    464    2017-04-09 19:27:00    2017-04-09 19:27:00
81140    28748    474    2017-04-09 17:19:00    2017-04-09 17:19:00
81141    28748    522    2017-04-09 10:10:00    2017-04-09 10:10:00
81142    28748    785    2017-04-09 13:07:00    2017-04-09 13:07:00
81143    28749    866    2017-04-09 11:13:00    2017-04-09 11:13:00
81144    28749    737    2017-04-09 12:27:00    2017-04-09 12:27:00
81145    28749    501    2017-04-09 22:04:00    2017-04-09 22:04:00
81146    28749    632    2017-04-09 08:33:00    2017-04-09 08:33:00
81147    28749    608    2017-04-09 18:36:00    2017-04-09 18:36:00
81148    28750    584    2017-04-09 11:42:00    2017-04-09 11:42:00
81149    28750    903    2017-04-09 12:39:00    2017-04-09 12:39:00
81150    28750    861    2017-04-09 20:46:00    2017-04-09 20:46:00
81151    28750    499    2017-04-09 02:11:00    2017-04-09 02:11:00
81152    28750    650    2017-04-09 16:01:00    2017-04-09 16:01:00
81153    28751    906    2017-04-09 23:59:00    2017-04-09 23:59:00
81154    28751    773    2017-04-09 14:08:00    2017-04-09 14:08:00
81155    28751    691    2017-04-09 16:28:00    2017-04-09 16:28:00
81156    28751    728    2017-04-09 19:12:00    2017-04-09 19:12:00
81157    28751    500    2017-04-09 06:31:00    2017-04-09 06:31:00
81158    28752    873    2017-04-09 13:47:00    2017-04-09 13:47:00
81159    28752    844    2017-04-09 10:46:00    2017-04-09 10:46:00
81160    28752    805    2017-04-09 12:28:00    2017-04-09 12:28:00
81161    28752    771    2017-04-09 13:16:00    2017-04-09 13:16:00
81162    28752    744    2017-04-09 12:41:00    2017-04-09 12:41:00
81163    28753    763    2017-04-09 11:18:00    2017-04-09 11:18:00
81164    28753    556    2017-04-09 15:36:00    2017-04-09 15:36:00
81165    28753    728    2017-04-09 07:36:00    2017-04-09 07:36:00
81166    28753    527    2017-04-09 11:16:00    2017-04-09 11:16:00
81167    28753    961    2017-04-09 02:03:00    2017-04-09 02:03:00
81168    28754    735    2017-04-09 14:50:00    2017-04-09 14:50:00
81169    28754    855    2017-04-09 14:30:00    2017-04-09 14:30:00
81170    28754    572    2017-04-09 22:18:00    2017-04-09 22:18:00
81171    28754    543    2017-04-09 03:07:00    2017-04-09 03:07:00
81172    28754    803    2017-04-09 10:10:00    2017-04-09 10:10:00
81173    28755    888    2017-04-09 21:53:00    2017-04-09 21:53:00
81174    28755    749    2017-04-09 05:20:00    2017-04-09 05:20:00
81175    28755    471    2017-04-09 16:37:00    2017-04-09 16:37:00
81176    28755    571    2017-04-09 13:42:00    2017-04-09 13:42:00
81177    28755    858    2017-04-09 16:34:00    2017-04-09 16:34:00
81178    28756    890    2017-04-09 15:19:00    2017-04-09 15:19:00
81179    28756    634    2017-04-09 17:01:00    2017-04-09 17:01:00
81180    28756    706    2017-04-09 07:18:00    2017-04-09 07:18:00
81181    28756    585    2017-04-09 19:19:00    2017-04-09 19:19:00
81182    28756    477    2017-04-09 22:32:00    2017-04-09 22:32:00
81183    28757    928    2017-04-09 10:19:00    2017-04-09 10:19:00
81184    28757    871    2017-04-09 06:45:00    2017-04-09 06:45:00
81185    28757    714    2017-04-09 13:18:00    2017-04-09 13:18:00
81186    28757    898    2017-04-09 21:29:00    2017-04-09 21:29:00
81187    28757    666    2017-04-09 12:27:00    2017-04-09 12:27:00
81188    28758    701    2017-04-09 06:02:00    2017-04-09 06:02:00
81189    28758    884    2017-04-09 06:11:00    2017-04-09 06:11:00
81190    28758    615    2017-04-09 01:48:00    2017-04-09 01:48:00
81191    28758    839    2017-04-09 21:59:00    2017-04-09 21:59:00
81192    28758    697    2017-04-09 05:12:00    2017-04-09 05:12:00
81193    28759    505    2017-04-09 03:37:00    2017-04-09 03:37:00
81194    28759    894    2017-04-09 04:13:00    2017-04-09 04:13:00
81195    28759    795    2017-04-09 04:02:00    2017-04-09 04:02:00
81196    28759    886    2017-04-09 19:20:00    2017-04-09 19:20:00
81197    28759    620    2017-04-09 23:54:00    2017-04-09 23:54:00
81198    28760    532    2017-04-10 13:00:00    2017-04-10 13:00:00
81199    28760    760    2017-04-10 16:00:00    2017-04-10 16:00:00
81200    28760    707    2017-04-10 23:04:00    2017-04-10 23:04:00
81201    28760    514    2017-04-10 07:00:00    2017-04-10 07:00:00
81202    28760    764    2017-04-10 08:33:00    2017-04-10 08:33:00
81203    28761    957    2017-04-10 17:31:00    2017-04-10 17:31:00
81204    28761    887    2017-04-10 19:53:00    2017-04-10 19:53:00
81205    28761    538    2017-04-10 11:24:00    2017-04-10 11:24:00
81206    28761    582    2017-04-10 11:47:00    2017-04-10 11:47:00
81207    28761    555    2017-04-10 07:11:00    2017-04-10 07:11:00
81208    28762    910    2017-04-10 23:02:00    2017-04-10 23:02:00
81209    28762    488    2017-04-10 17:14:00    2017-04-10 17:14:00
81210    28762    903    2017-04-10 06:23:00    2017-04-10 06:23:00
81211    28762    952    2017-04-10 06:32:00    2017-04-10 06:32:00
81212    28762    514    2017-04-10 08:39:00    2017-04-10 08:39:00
81213    28763    605    2017-04-10 19:34:00    2017-04-10 19:34:00
81214    28763    601    2017-04-10 23:20:00    2017-04-10 23:20:00
81215    28763    549    2017-04-10 07:08:00    2017-04-10 07:08:00
81216    28763    875    2017-04-10 16:27:00    2017-04-10 16:27:00
81217    28763    904    2017-04-10 05:11:00    2017-04-10 05:11:00
81218    28764    794    2017-04-10 13:06:00    2017-04-10 13:06:00
81219    28764    678    2017-04-10 19:58:00    2017-04-10 19:58:00
81220    28764    918    2017-04-10 21:14:00    2017-04-10 21:14:00
81221    28764    531    2017-04-10 13:18:00    2017-04-10 13:18:00
81222    28764    532    2017-04-10 02:24:00    2017-04-10 02:24:00
81223    28765    596    2017-04-10 12:29:00    2017-04-10 12:29:00
81224    28765    615    2017-04-10 04:51:00    2017-04-10 04:51:00
81225    28765    707    2017-04-10 18:27:00    2017-04-10 18:27:00
81226    28765    807    2017-04-10 23:58:00    2017-04-10 23:58:00
81227    28765    916    2017-04-10 10:02:00    2017-04-10 10:02:00
81228    28766    658    2017-04-10 21:49:00    2017-04-10 21:49:00
81229    28766    525    2017-04-10 04:26:00    2017-04-10 04:26:00
81230    28766    911    2017-04-10 20:40:00    2017-04-10 20:40:00
81231    28766    754    2017-04-10 08:12:00    2017-04-10 08:12:00
81232    28766    833    2017-04-10 19:08:00    2017-04-10 19:08:00
81233    28767    927    2017-04-10 07:18:00    2017-04-10 07:18:00
81234    28767    758    2017-04-10 23:03:00    2017-04-10 23:03:00
81235    28767    663    2017-04-10 01:20:00    2017-04-10 01:20:00
81236    28767    946    2017-04-10 05:04:00    2017-04-10 05:04:00
81237    28767    872    2017-04-10 12:39:00    2017-04-10 12:39:00
81238    28768    787    2017-04-10 03:33:00    2017-04-10 03:33:00
81239    28768    561    2017-04-10 07:25:00    2017-04-10 07:25:00
81240    28768    813    2017-04-10 07:23:00    2017-04-10 07:23:00
81241    28768    467    2017-04-10 19:43:00    2017-04-10 19:43:00
81242    28768    875    2017-04-10 19:00:00    2017-04-10 19:00:00
81243    28769    857    2017-04-10 03:35:00    2017-04-10 03:35:00
81244    28769    563    2017-04-10 14:38:00    2017-04-10 14:38:00
81245    28769    670    2017-04-10 06:33:00    2017-04-10 06:33:00
81246    28769    822    2017-04-10 10:51:00    2017-04-10 10:51:00
81247    28769    921    2017-04-10 16:28:00    2017-04-10 16:28:00
81248    28770    626    2017-04-10 20:14:00    2017-04-10 20:14:00
81249    28770    916    2017-04-10 08:54:00    2017-04-10 08:54:00
81250    28770    741    2017-04-10 05:01:00    2017-04-10 05:01:00
81251    28770    943    2017-04-10 01:09:00    2017-04-10 01:09:00
81252    28770    626    2017-04-10 08:06:00    2017-04-10 08:06:00
81253    28771    818    2017-04-10 03:27:00    2017-04-10 03:27:00
81254    28771    705    2017-04-10 22:36:00    2017-04-10 22:36:00
81255    28771    849    2017-04-10 08:21:00    2017-04-10 08:21:00
81256    28771    525    2017-04-10 07:33:00    2017-04-10 07:33:00
81257    28771    571    2017-04-10 07:29:00    2017-04-10 07:29:00
81258    28772    824    2017-04-10 14:32:00    2017-04-10 14:32:00
81259    28772    900    2017-04-10 20:03:00    2017-04-10 20:03:00
81260    28772    895    2017-04-10 16:38:00    2017-04-10 16:38:00
81261    28772    958    2017-04-10 12:21:00    2017-04-10 12:21:00
81262    28772    856    2017-04-10 08:30:00    2017-04-10 08:30:00
81263    28773    668    2017-04-10 05:01:00    2017-04-10 05:01:00
81264    28773    825    2017-04-10 22:12:00    2017-04-10 22:12:00
81265    28773    478    2017-04-10 01:56:00    2017-04-10 01:56:00
81266    28773    728    2017-04-10 20:13:00    2017-04-10 20:13:00
81267    28773    941    2017-04-10 11:36:00    2017-04-10 11:36:00
81268    28774    687    2017-04-10 01:20:00    2017-04-10 01:20:00
81269    28774    515    2017-04-10 19:31:00    2017-04-10 19:31:00
81270    28774    823    2017-04-10 20:30:00    2017-04-10 20:30:00
81271    28774    563    2017-04-10 03:39:00    2017-04-10 03:39:00
81272    28774    656    2017-04-10 19:37:00    2017-04-10 19:37:00
81273    28775    810    2017-04-10 11:15:00    2017-04-10 11:15:00
81274    28775    588    2017-04-10 06:35:00    2017-04-10 06:35:00
81275    28775    617    2017-04-10 14:28:00    2017-04-10 14:28:00
81276    28775    824    2017-04-10 17:09:00    2017-04-10 17:09:00
81277    28775    929    2017-04-10 17:06:00    2017-04-10 17:06:00
81278    28776    890    2017-04-10 01:40:00    2017-04-10 01:40:00
81279    28776    649    2017-04-10 15:01:00    2017-04-10 15:01:00
81280    28776    763    2017-04-10 10:15:00    2017-04-10 10:15:00
81281    28776    611    2017-04-10 08:48:00    2017-04-10 08:48:00
81282    28776    928    2017-04-10 23:49:00    2017-04-10 23:49:00
81283    28777    877    2017-04-10 22:34:00    2017-04-10 22:34:00
81284    28777    591    2017-04-10 04:33:00    2017-04-10 04:33:00
81285    28777    885    2017-04-10 12:13:00    2017-04-10 12:13:00
81286    28777    820    2017-04-10 07:16:00    2017-04-10 07:16:00
81287    28777    697    2017-04-10 09:20:00    2017-04-10 09:20:00
81288    28778    822    2017-04-10 15:42:00    2017-04-10 15:42:00
81289    28778    707    2017-04-10 15:30:00    2017-04-10 15:30:00
81290    28778    952    2017-04-10 08:23:00    2017-04-10 08:23:00
81291    28778    531    2017-04-10 08:11:00    2017-04-10 08:11:00
81292    28778    513    2017-04-10 06:30:00    2017-04-10 06:30:00
81293    28779    931    2017-04-10 05:10:00    2017-04-10 05:10:00
81294    28779    898    2017-04-10 19:43:00    2017-04-10 19:43:00
81295    28779    553    2017-04-10 22:40:00    2017-04-10 22:40:00
81296    28779    489    2017-04-10 02:59:00    2017-04-10 02:59:00
81297    28779    871    2017-04-10 18:44:00    2017-04-10 18:44:00
81298    28780    573    2017-04-10 04:45:00    2017-04-10 04:45:00
81299    28780    535    2017-04-10 20:32:00    2017-04-10 20:32:00
81300    28780    711    2017-04-10 15:30:00    2017-04-10 15:30:00
81301    28780    868    2017-04-10 05:51:00    2017-04-10 05:51:00
81302    28780    772    2017-04-10 21:25:00    2017-04-10 21:25:00
81303    28781    791    2017-04-10 07:42:00    2017-04-10 07:42:00
81304    28781    926    2017-04-10 11:22:00    2017-04-10 11:22:00
81305    28781    466    2017-04-10 11:18:00    2017-04-10 11:18:00
81306    28781    490    2017-04-10 16:48:00    2017-04-10 16:48:00
81307    28781    716    2017-04-10 02:13:00    2017-04-10 02:13:00
81308    28782    852    2017-04-10 03:43:00    2017-04-10 03:43:00
81309    28782    712    2017-04-10 16:00:00    2017-04-10 16:00:00
81310    28782    683    2017-04-10 08:00:00    2017-04-10 08:00:00
81311    28782    868    2017-04-10 09:49:00    2017-04-10 09:49:00
81312    28782    879    2017-04-10 13:25:00    2017-04-10 13:25:00
81313    28783    784    2017-04-10 13:33:00    2017-04-10 13:33:00
81314    28783    882    2017-04-10 20:49:00    2017-04-10 20:49:00
81315    28783    606    2017-04-10 07:38:00    2017-04-10 07:38:00
81316    28783    895    2017-04-10 17:09:00    2017-04-10 17:09:00
81317    28783    710    2017-04-10 19:54:00    2017-04-10 19:54:00
81318    28784    870    2017-04-10 09:32:00    2017-04-10 09:32:00
81319    28784    683    2017-04-10 18:26:00    2017-04-10 18:26:00
81320    28784    502    2017-04-10 04:41:00    2017-04-10 04:41:00
81321    28784    503    2017-04-10 09:04:00    2017-04-10 09:04:00
81322    28784    549    2017-04-10 07:19:00    2017-04-10 07:19:00
81323    28785    478    2017-04-10 23:32:00    2017-04-10 23:32:00
81324    28785    711    2017-04-10 19:46:00    2017-04-10 19:46:00
81325    28785    878    2017-04-10 07:21:00    2017-04-10 07:21:00
81326    28785    624    2017-04-10 21:11:00    2017-04-10 21:11:00
81327    28785    609    2017-04-10 14:26:00    2017-04-10 14:26:00
81328    28786    625    2017-04-10 15:28:00    2017-04-10 15:28:00
81329    28786    663    2017-04-10 09:11:00    2017-04-10 09:11:00
81330    28786    857    2017-04-10 22:51:00    2017-04-10 22:51:00
81331    28786    651    2017-04-10 16:34:00    2017-04-10 16:34:00
81332    28786    789    2017-04-10 11:37:00    2017-04-10 11:37:00
81333    28787    877    2017-04-10 02:23:00    2017-04-10 02:23:00
81334    28787    552    2017-04-10 15:28:00    2017-04-10 15:28:00
81335    28787    843    2017-04-10 11:23:00    2017-04-10 11:23:00
81336    28787    549    2017-04-10 23:15:00    2017-04-10 23:15:00
81337    28787    746    2017-04-10 17:34:00    2017-04-10 17:34:00
81338    28788    568    2017-04-10 23:27:00    2017-04-10 23:27:00
81339    28788    678    2017-04-10 17:32:00    2017-04-10 17:32:00
81340    28788    871    2017-04-10 12:23:00    2017-04-10 12:23:00
81341    28788    827    2017-04-10 11:07:00    2017-04-10 11:07:00
81342    28788    555    2017-04-10 02:00:00    2017-04-10 02:00:00
81343    28789    640    2017-04-10 23:59:00    2017-04-10 23:59:00
81344    28789    620    2017-04-10 11:06:00    2017-04-10 11:06:00
81345    28789    589    2017-04-10 07:48:00    2017-04-10 07:48:00
81346    28789    780    2017-04-10 11:06:00    2017-04-10 11:06:00
81347    28789    697    2017-04-10 10:08:00    2017-04-10 10:08:00
81348    28790    613    2017-04-10 17:35:00    2017-04-10 17:35:00
81349    28790    468    2017-04-10 22:28:00    2017-04-10 22:28:00
81350    28790    698    2017-04-10 04:03:00    2017-04-10 04:03:00
81351    28790    650    2017-04-10 11:14:00    2017-04-10 11:14:00
81352    28790    594    2017-04-10 09:37:00    2017-04-10 09:37:00
81353    28791    834    2017-04-10 02:08:00    2017-04-10 02:08:00
81354    28791    474    2017-04-10 18:54:00    2017-04-10 18:54:00
81355    28791    585    2017-04-10 11:06:00    2017-04-10 11:06:00
81356    28791    585    2017-04-10 06:19:00    2017-04-10 06:19:00
81357    28791    495    2017-04-10 08:36:00    2017-04-10 08:36:00
81358    28792    610    2017-04-10 08:08:00    2017-04-10 08:08:00
81359    28792    766    2017-04-10 12:26:00    2017-04-10 12:26:00
81360    28792    491    2017-04-10 14:44:00    2017-04-10 14:44:00
81361    28792    711    2017-04-10 12:04:00    2017-04-10 12:04:00
81362    28792    674    2017-04-10 04:55:00    2017-04-10 04:55:00
81363    28793    806    2017-04-10 06:34:00    2017-04-10 06:34:00
81364    28793    650    2017-04-10 01:17:00    2017-04-10 01:17:00
81365    28793    604    2017-04-10 08:22:00    2017-04-10 08:22:00
81366    28793    479    2017-04-10 05:53:00    2017-04-10 05:53:00
81367    28793    555    2017-04-10 01:18:00    2017-04-10 01:18:00
81368    28794    740    2017-04-10 03:00:00    2017-04-10 03:00:00
81369    28794    682    2017-04-10 15:06:00    2017-04-10 15:06:00
81370    28794    744    2017-04-10 08:30:00    2017-04-10 08:30:00
81371    28794    775    2017-04-10 19:09:00    2017-04-10 19:09:00
81372    28794    651    2017-04-10 16:57:00    2017-04-10 16:57:00
81373    28795    478    2017-04-10 12:31:00    2017-04-10 12:31:00
81374    28795    505    2017-04-10 09:31:00    2017-04-10 09:31:00
81375    28795    620    2017-04-10 22:35:00    2017-04-10 22:35:00
81376    28795    776    2017-04-10 21:24:00    2017-04-10 21:24:00
81377    28795    564    2017-04-10 05:07:00    2017-04-10 05:07:00
81378    28796    467    2017-04-10 05:51:00    2017-04-10 05:51:00
81379    28796    777    2017-04-10 11:03:00    2017-04-10 11:03:00
81380    28796    943    2017-04-10 12:11:00    2017-04-10 12:11:00
81381    28796    908    2017-04-10 14:15:00    2017-04-10 14:15:00
81382    28796    592    2017-04-10 07:39:00    2017-04-10 07:39:00
81383    28797    558    2017-04-10 03:40:00    2017-04-10 03:40:00
81384    28797    620    2017-04-10 10:36:00    2017-04-10 10:36:00
81385    28797    917    2017-04-10 18:08:00    2017-04-10 18:08:00
81386    28797    687    2017-04-10 05:47:00    2017-04-10 05:47:00
81387    28797    773    2017-04-10 07:53:00    2017-04-10 07:53:00
81388    28798    769    2017-04-10 21:28:00    2017-04-10 21:28:00
81389    28798    869    2017-04-10 02:07:00    2017-04-10 02:07:00
81390    28798    537    2017-04-10 06:33:00    2017-04-10 06:33:00
81391    28798    609    2017-04-10 03:58:00    2017-04-10 03:58:00
81392    28798    657    2017-04-10 09:38:00    2017-04-10 09:38:00
81393    28799    843    2017-04-10 02:43:00    2017-04-10 02:43:00
81394    28799    593    2017-04-10 15:40:00    2017-04-10 15:40:00
81395    28799    826    2017-04-10 19:44:00    2017-04-10 19:44:00
81396    28799    588    2017-04-10 02:58:00    2017-04-10 02:58:00
81397    28799    645    2017-04-10 08:21:00    2017-04-10 08:21:00
81398    28800    949    2017-04-10 11:10:00    2017-04-10 11:10:00
81399    28800    671    2017-04-10 07:53:00    2017-04-10 07:53:00
81400    28800    865    2017-04-10 15:24:00    2017-04-10 15:24:00
81401    28800    806    2017-04-10 15:07:00    2017-04-10 15:07:00
81402    28800    509    2017-04-10 06:06:00    2017-04-10 06:06:00
81403    28801    587    2017-04-10 06:42:00    2017-04-10 06:42:00
81404    28801    653    2017-04-10 17:12:00    2017-04-10 17:12:00
81405    28801    548    2017-04-10 23:51:00    2017-04-10 23:51:00
81406    28801    661    2017-04-10 14:56:00    2017-04-10 14:56:00
81407    28801    573    2017-04-10 16:25:00    2017-04-10 16:25:00
81408    28802    521    2017-04-10 03:55:00    2017-04-10 03:55:00
81409    28802    806    2017-04-10 07:02:00    2017-04-10 07:02:00
81410    28802    895    2017-04-10 05:12:00    2017-04-10 05:12:00
81411    28802    807    2017-04-10 13:18:00    2017-04-10 13:18:00
81412    28802    599    2017-04-10 17:06:00    2017-04-10 17:06:00
81413    28803    463    2017-04-10 08:00:00    2017-04-10 08:00:00
81414    28803    865    2017-04-10 12:54:00    2017-04-10 12:54:00
81415    28803    519    2017-04-10 17:31:00    2017-04-10 17:31:00
81416    28803    575    2017-04-10 22:27:00    2017-04-10 22:27:00
81417    28803    492    2017-04-10 02:04:00    2017-04-10 02:04:00
81418    28804    588    2017-04-10 04:11:00    2017-04-10 04:11:00
81419    28804    681    2017-04-10 10:59:00    2017-04-10 10:59:00
81420    28804    712    2017-04-10 14:52:00    2017-04-10 14:52:00
81421    28804    751    2017-04-10 06:00:00    2017-04-10 06:00:00
81422    28804    634    2017-04-10 12:57:00    2017-04-10 12:57:00
81423    28805    499    2017-04-10 08:46:00    2017-04-10 08:46:00
81424    28805    948    2017-04-10 19:58:00    2017-04-10 19:58:00
81425    28805    555    2017-04-10 11:11:00    2017-04-10 11:11:00
81426    28805    634    2017-04-10 23:54:00    2017-04-10 23:54:00
81427    28805    821    2017-04-10 15:36:00    2017-04-10 15:36:00
81428    28806    790    2017-04-10 19:42:00    2017-04-10 19:42:00
81429    28806    539    2017-04-10 23:13:00    2017-04-10 23:13:00
81430    28806    675    2017-04-10 13:59:00    2017-04-10 13:59:00
81431    28806    714    2017-04-10 20:46:00    2017-04-10 20:46:00
81432    28806    882    2017-04-10 03:25:00    2017-04-10 03:25:00
81433    28807    717    2017-04-10 08:18:00    2017-04-10 08:18:00
81434    28807    850    2017-04-10 20:02:00    2017-04-10 20:02:00
81435    28807    860    2017-04-10 02:48:00    2017-04-10 02:48:00
81436    28807    735    2017-04-10 19:56:00    2017-04-10 19:56:00
81437    28807    810    2017-04-10 09:45:00    2017-04-10 09:45:00
81438    28808    784    2017-04-10 14:34:00    2017-04-10 14:34:00
81439    28808    900    2017-04-10 19:36:00    2017-04-10 19:36:00
81440    28808    957    2017-04-10 12:37:00    2017-04-10 12:37:00
81441    28808    760    2017-04-10 20:38:00    2017-04-10 20:38:00
81442    28808    703    2017-04-10 09:00:00    2017-04-10 09:00:00
81443    28809    576    2017-04-10 17:36:00    2017-04-10 17:36:00
81444    28809    587    2017-04-10 08:53:00    2017-04-10 08:53:00
81445    28809    509    2017-04-10 13:22:00    2017-04-10 13:22:00
81446    28809    478    2017-04-10 07:13:00    2017-04-10 07:13:00
81447    28809    842    2017-04-10 17:34:00    2017-04-10 17:34:00
81448    28810    867    2017-04-10 10:34:00    2017-04-10 10:34:00
81449    28810    587    2017-04-10 13:49:00    2017-04-10 13:49:00
81450    28810    775    2017-04-10 11:36:00    2017-04-10 11:36:00
81451    28810    913    2017-04-10 11:54:00    2017-04-10 11:54:00
81452    28810    699    2017-04-10 04:47:00    2017-04-10 04:47:00
81453    28811    595    2017-04-10 13:09:00    2017-04-10 13:09:00
81454    28811    899    2017-04-10 19:06:00    2017-04-10 19:06:00
81455    28811    538    2017-04-10 18:01:00    2017-04-10 18:01:00
81456    28811    941    2017-04-10 09:55:00    2017-04-10 09:55:00
81457    28811    753    2017-04-10 16:05:00    2017-04-10 16:05:00
81458    28812    563    2017-04-10 09:35:00    2017-04-10 09:35:00
81459    28812    795    2017-04-10 05:39:00    2017-04-10 05:39:00
81460    28812    695    2017-04-10 07:31:00    2017-04-10 07:31:00
81461    28812    773    2017-04-10 11:30:00    2017-04-10 11:30:00
81462    28812    672    2017-04-10 04:46:00    2017-04-10 04:46:00
81463    28813    869    2017-04-10 08:13:00    2017-04-10 08:13:00
81464    28813    750    2017-04-10 02:18:00    2017-04-10 02:18:00
81465    28813    481    2017-04-10 06:14:00    2017-04-10 06:14:00
81466    28813    518    2017-04-10 19:10:00    2017-04-10 19:10:00
81467    28813    471    2017-04-10 06:40:00    2017-04-10 06:40:00
81468    28814    871    2017-04-10 22:10:00    2017-04-10 22:10:00
81469    28814    921    2017-04-10 02:03:00    2017-04-10 02:03:00
81470    28814    494    2017-04-10 15:24:00    2017-04-10 15:24:00
81471    28814    806    2017-04-10 10:21:00    2017-04-10 10:21:00
81472    28814    821    2017-04-10 03:17:00    2017-04-10 03:17:00
81473    28815    648    2017-04-10 07:58:00    2017-04-10 07:58:00
81474    28815    952    2017-04-10 17:25:00    2017-04-10 17:25:00
81475    28815    627    2017-04-10 18:27:00    2017-04-10 18:27:00
81476    28815    541    2017-04-10 19:36:00    2017-04-10 19:36:00
81477    28815    813    2017-04-10 13:19:00    2017-04-10 13:19:00
81478    28816    769    2017-04-10 14:29:00    2017-04-10 14:29:00
81479    28816    548    2017-04-10 17:31:00    2017-04-10 17:31:00
81480    28816    901    2017-04-10 02:51:00    2017-04-10 02:51:00
81481    28816    698    2017-04-10 08:12:00    2017-04-10 08:12:00
81482    28816    744    2017-04-10 10:26:00    2017-04-10 10:26:00
81483    28817    711    2017-04-10 21:35:00    2017-04-10 21:35:00
81484    28817    808    2017-04-10 13:56:00    2017-04-10 13:56:00
81485    28817    543    2017-04-10 22:02:00    2017-04-10 22:02:00
81486    28817    838    2017-04-10 18:12:00    2017-04-10 18:12:00
81487    28817    628    2017-04-10 10:55:00    2017-04-10 10:55:00
81488    28818    553    2017-04-10 16:15:00    2017-04-10 16:15:00
81489    28818    472    2017-04-10 11:35:00    2017-04-10 11:35:00
81490    28818    610    2017-04-10 04:09:00    2017-04-10 04:09:00
81491    28818    528    2017-04-10 07:49:00    2017-04-10 07:49:00
81492    28818    860    2017-04-10 15:24:00    2017-04-10 15:24:00
81493    28819    807    2017-04-11 14:34:00    2017-04-11 14:34:00
81494    28819    581    2017-04-11 15:43:00    2017-04-11 15:43:00
81495    28819    846    2017-04-11 11:23:00    2017-04-11 11:23:00
81496    28819    701    2017-04-11 18:04:00    2017-04-11 18:04:00
81497    28819    579    2017-04-11 08:44:00    2017-04-11 08:44:00
81498    28820    938    2017-04-11 12:49:00    2017-04-11 12:49:00
81499    28820    581    2017-04-11 01:48:00    2017-04-11 01:48:00
81500    28820    775    2017-04-11 14:21:00    2017-04-11 14:21:00
81501    28820    630    2017-04-11 19:27:00    2017-04-11 19:27:00
81502    28820    894    2017-04-11 23:15:00    2017-04-11 23:15:00
81503    28821    609    2017-04-11 01:50:00    2017-04-11 01:50:00
81504    28821    722    2017-04-11 18:07:00    2017-04-11 18:07:00
81505    28821    547    2017-04-11 12:52:00    2017-04-11 12:52:00
81506    28821    844    2017-04-11 07:39:00    2017-04-11 07:39:00
81507    28821    609    2017-04-11 11:46:00    2017-04-11 11:46:00
81508    28822    553    2017-04-11 05:35:00    2017-04-11 05:35:00
81509    28822    619    2017-04-11 10:15:00    2017-04-11 10:15:00
81510    28822    577    2017-04-11 15:41:00    2017-04-11 15:41:00
81511    28822    511    2017-04-11 08:26:00    2017-04-11 08:26:00
81512    28822    637    2017-04-11 12:11:00    2017-04-11 12:11:00
81513    28823    830    2017-04-11 11:27:00    2017-04-11 11:27:00
81514    28823    805    2017-04-11 23:24:00    2017-04-11 23:24:00
81515    28823    946    2017-04-11 16:56:00    2017-04-11 16:56:00
81516    28823    895    2017-04-11 23:07:00    2017-04-11 23:07:00
81517    28823    649    2017-04-11 19:33:00    2017-04-11 19:33:00
81518    28824    550    2017-04-11 15:59:00    2017-04-11 15:59:00
81519    28824    586    2017-04-11 14:27:00    2017-04-11 14:27:00
81520    28824    536    2017-04-11 08:25:00    2017-04-11 08:25:00
81521    28824    778    2017-04-11 19:31:00    2017-04-11 19:31:00
81522    28824    612    2017-04-11 15:31:00    2017-04-11 15:31:00
81523    28825    476    2017-04-11 05:30:00    2017-04-11 05:30:00
81524    28825    860    2017-04-11 22:25:00    2017-04-11 22:25:00
81525    28825    784    2017-04-11 05:06:00    2017-04-11 05:06:00
81526    28825    793    2017-04-11 01:50:00    2017-04-11 01:50:00
81527    28825    726    2017-04-11 05:50:00    2017-04-11 05:50:00
81528    28826    835    2017-04-11 11:48:00    2017-04-11 11:48:00
81529    28826    749    2017-04-11 17:42:00    2017-04-11 17:42:00
81530    28826    767    2017-04-11 22:38:00    2017-04-11 22:38:00
81531    28826    801    2017-04-11 08:37:00    2017-04-11 08:37:00
81532    28826    538    2017-04-11 16:43:00    2017-04-11 16:43:00
81533    28827    922    2017-04-11 07:56:00    2017-04-11 07:56:00
81534    28827    823    2017-04-11 01:36:00    2017-04-11 01:36:00
81535    28827    774    2017-04-11 04:04:00    2017-04-11 04:04:00
81536    28827    931    2017-04-11 15:47:00    2017-04-11 15:47:00
81537    28827    757    2017-04-11 19:11:00    2017-04-11 19:11:00
81538    28828    758    2017-04-11 21:14:00    2017-04-11 21:14:00
81539    28828    669    2017-04-11 11:41:00    2017-04-11 11:41:00
81540    28828    847    2017-04-11 10:03:00    2017-04-11 10:03:00
81541    28828    483    2017-04-11 01:03:00    2017-04-11 01:03:00
81542    28828    495    2017-04-11 03:44:00    2017-04-11 03:44:00
81543    28829    560    2017-04-11 05:51:00    2017-04-11 05:51:00
81544    28829    569    2017-04-11 09:09:00    2017-04-11 09:09:00
81545    28829    701    2017-04-11 22:50:00    2017-04-11 22:50:00
81546    28829    898    2017-04-11 12:44:00    2017-04-11 12:44:00
81547    28829    780    2017-04-11 23:27:00    2017-04-11 23:27:00
81548    28830    508    2017-04-11 08:02:00    2017-04-11 08:02:00
81549    28830    552    2017-04-11 18:07:00    2017-04-11 18:07:00
81550    28830    826    2017-04-11 20:10:00    2017-04-11 20:10:00
81551    28830    753    2017-04-11 10:23:00    2017-04-11 10:23:00
81552    28830    826    2017-04-11 04:30:00    2017-04-11 04:30:00
81553    28831    511    2017-04-11 04:30:00    2017-04-11 04:30:00
81554    28831    463    2017-04-11 16:16:00    2017-04-11 16:16:00
81555    28831    709    2017-04-11 17:23:00    2017-04-11 17:23:00
81556    28831    520    2017-04-11 05:37:00    2017-04-11 05:37:00
81557    28831    464    2017-04-11 03:40:00    2017-04-11 03:40:00
81558    28832    755    2017-04-11 21:12:00    2017-04-11 21:12:00
81559    28832    689    2017-04-11 03:25:00    2017-04-11 03:25:00
81560    28832    619    2017-04-11 01:14:00    2017-04-11 01:14:00
81561    28832    883    2017-04-11 10:22:00    2017-04-11 10:22:00
81562    28832    528    2017-04-11 23:39:00    2017-04-11 23:39:00
81563    28833    770    2017-04-11 02:02:00    2017-04-11 02:02:00
81564    28833    505    2017-04-11 16:31:00    2017-04-11 16:31:00
81565    28833    913    2017-04-11 07:09:00    2017-04-11 07:09:00
81566    28833    809    2017-04-11 12:29:00    2017-04-11 12:29:00
81567    28833    805    2017-04-11 01:15:00    2017-04-11 01:15:00
81568    28834    569    2017-04-11 16:46:00    2017-04-11 16:46:00
81569    28834    940    2017-04-11 01:00:00    2017-04-11 01:00:00
81570    28834    765    2017-04-11 01:28:00    2017-04-11 01:28:00
81571    28834    519    2017-04-11 11:58:00    2017-04-11 11:58:00
81572    28834    925    2017-04-11 08:32:00    2017-04-11 08:32:00
81573    28835    555    2017-04-11 07:01:00    2017-04-11 07:01:00
81574    28835    507    2017-04-11 02:01:00    2017-04-11 02:01:00
81575    28835    498    2017-04-11 16:22:00    2017-04-11 16:22:00
81576    28835    469    2017-04-11 13:25:00    2017-04-11 13:25:00
81577    28835    752    2017-04-11 08:02:00    2017-04-11 08:02:00
81578    28836    929    2017-04-11 03:39:00    2017-04-11 03:39:00
81579    28836    729    2017-04-11 13:29:00    2017-04-11 13:29:00
81580    28836    492    2017-04-11 09:44:00    2017-04-11 09:44:00
81581    28836    855    2017-04-11 09:20:00    2017-04-11 09:20:00
81582    28836    586    2017-04-12 00:00:00    2017-04-12 00:00:00
81583    28837    530    2017-04-11 15:26:00    2017-04-11 15:26:00
81584    28837    587    2017-04-11 16:35:00    2017-04-11 16:35:00
81585    28837    815    2017-04-11 06:05:00    2017-04-11 06:05:00
81586    28837    866    2017-04-11 16:27:00    2017-04-11 16:27:00
81587    28837    860    2017-04-11 11:05:00    2017-04-11 11:05:00
81588    28838    905    2017-04-11 23:51:00    2017-04-11 23:51:00
81589    28838    767    2017-04-11 22:13:00    2017-04-11 22:13:00
81590    28838    541    2017-04-11 06:56:00    2017-04-11 06:56:00
81591    28838    899    2017-04-11 06:14:00    2017-04-11 06:14:00
81592    28838    579    2017-04-11 20:25:00    2017-04-11 20:25:00
81593    28839    487    2017-04-11 04:41:00    2017-04-11 04:41:00
81594    28839    623    2017-04-11 20:15:00    2017-04-11 20:15:00
81595    28839    954    2017-04-11 13:08:00    2017-04-11 13:08:00
81596    28839    889    2017-04-11 10:06:00    2017-04-11 10:06:00
81597    28839    685    2017-04-11 03:45:00    2017-04-11 03:45:00
81598    28840    609    2017-04-11 20:34:00    2017-04-11 20:34:00
81599    28840    906    2017-04-11 03:05:00    2017-04-11 03:05:00
81600    28840    896    2017-04-11 04:43:00    2017-04-11 04:43:00
81601    28840    464    2017-04-11 20:03:00    2017-04-11 20:03:00
81602    28840    622    2017-04-11 16:05:00    2017-04-11 16:05:00
81603    28841    769    2017-04-11 22:38:00    2017-04-11 22:38:00
81604    28841    672    2017-04-11 14:13:00    2017-04-11 14:13:00
81605    28841    945    2017-04-11 08:37:00    2017-04-11 08:37:00
81606    28841    542    2017-04-11 20:46:00    2017-04-11 20:46:00
81607    28841    849    2017-04-11 05:12:00    2017-04-11 05:12:00
81608    28842    475    2017-04-11 04:37:00    2017-04-11 04:37:00
81609    28842    956    2017-04-11 23:00:00    2017-04-11 23:00:00
81610    28842    766    2017-04-11 21:34:00    2017-04-11 21:34:00
81611    28842    938    2017-04-11 22:10:00    2017-04-11 22:10:00
81612    28842    608    2017-04-11 21:07:00    2017-04-11 21:07:00
81613    28843    933    2017-04-11 19:17:00    2017-04-11 19:17:00
81614    28843    834    2017-04-11 17:40:00    2017-04-11 17:40:00
81615    28843    569    2017-04-11 10:07:00    2017-04-11 10:07:00
81616    28843    917    2017-04-11 10:00:00    2017-04-11 10:00:00
81617    28843    509    2017-04-11 02:10:00    2017-04-11 02:10:00
81618    28844    680    2017-04-11 05:37:00    2017-04-11 05:37:00
81619    28844    879    2017-04-11 04:19:00    2017-04-11 04:19:00
81620    28844    894    2017-04-11 23:36:00    2017-04-11 23:36:00
81621    28844    826    2017-04-11 01:13:00    2017-04-11 01:13:00
81622    28844    782    2017-04-11 02:51:00    2017-04-11 02:51:00
81623    28845    785    2017-04-11 02:00:00    2017-04-11 02:00:00
81624    28845    676    2017-04-11 05:57:00    2017-04-11 05:57:00
81625    28845    921    2017-04-11 07:56:00    2017-04-11 07:56:00
81626    28845    873    2017-04-11 17:00:00    2017-04-11 17:00:00
81627    28845    836    2017-04-11 06:07:00    2017-04-11 06:07:00
81628    28846    637    2017-04-11 16:33:00    2017-04-11 16:33:00
81629    28846    716    2017-04-11 03:58:00    2017-04-11 03:58:00
81630    28846    471    2017-04-11 10:51:00    2017-04-11 10:51:00
81631    28846    815    2017-04-11 23:42:00    2017-04-11 23:42:00
81632    28846    590    2017-04-11 06:13:00    2017-04-11 06:13:00
81633    28847    920    2017-04-11 10:41:00    2017-04-11 10:41:00
81634    28847    760    2017-04-11 16:53:00    2017-04-11 16:53:00
81635    28847    781    2017-04-11 15:15:00    2017-04-11 15:15:00
81636    28847    614    2017-04-11 04:06:00    2017-04-11 04:06:00
81637    28847    773    2017-04-11 04:32:00    2017-04-11 04:32:00
81638    28848    818    2017-04-11 06:36:00    2017-04-11 06:36:00
81639    28848    804    2017-04-11 23:38:00    2017-04-11 23:38:00
81640    28848    854    2017-04-11 02:16:00    2017-04-11 02:16:00
81641    28848    858    2017-04-11 08:15:00    2017-04-11 08:15:00
81642    28848    581    2017-04-11 08:41:00    2017-04-11 08:41:00
81643    28849    853    2017-04-11 17:52:00    2017-04-11 17:52:00
81644    28849    590    2017-04-11 10:48:00    2017-04-11 10:48:00
81645    28849    574    2017-04-11 03:24:00    2017-04-11 03:24:00
81646    28849    676    2017-04-11 05:32:00    2017-04-11 05:32:00
81647    28849    505    2017-04-11 18:11:00    2017-04-11 18:11:00
81648    28850    659    2017-04-11 16:37:00    2017-04-11 16:37:00
81649    28850    749    2017-04-11 21:05:00    2017-04-11 21:05:00
81650    28850    742    2017-04-11 10:14:00    2017-04-11 10:14:00
81651    28850    504    2017-04-11 20:26:00    2017-04-11 20:26:00
81652    28850    907    2017-04-11 21:13:00    2017-04-11 21:13:00
81653    28851    799    2017-04-11 03:07:00    2017-04-11 03:07:00
81654    28851    515    2017-04-11 13:03:00    2017-04-11 13:03:00
81655    28851    528    2017-04-11 15:25:00    2017-04-11 15:25:00
81656    28851    619    2017-04-11 05:22:00    2017-04-11 05:22:00
81657    28851    811    2017-04-11 04:43:00    2017-04-11 04:43:00
81658    28852    912    2017-04-11 17:04:00    2017-04-11 17:04:00
81659    28852    505    2017-04-11 07:48:00    2017-04-11 07:48:00
81660    28852    530    2017-04-11 14:58:00    2017-04-11 14:58:00
81661    28852    472    2017-04-11 03:11:00    2017-04-11 03:11:00
81662    28852    764    2017-04-11 13:16:00    2017-04-11 13:16:00
81663    28853    780    2017-04-11 23:09:00    2017-04-11 23:09:00
81664    28853    805    2017-04-11 15:04:00    2017-04-11 15:04:00
81665    28853    839    2017-04-11 16:53:00    2017-04-11 16:53:00
81666    28853    784    2017-04-11 10:05:00    2017-04-11 10:05:00
81667    28853    879    2017-04-11 23:58:00    2017-04-11 23:58:00
81668    28854    825    2017-04-11 05:53:00    2017-04-11 05:53:00
81669    28854    780    2017-04-11 07:36:00    2017-04-11 07:36:00
81670    28854    915    2017-04-11 03:11:00    2017-04-11 03:11:00
81671    28854    812    2017-04-11 15:14:00    2017-04-11 15:14:00
81672    28854    621    2017-04-11 14:57:00    2017-04-11 14:57:00
81673    28855    923    2017-04-11 01:02:00    2017-04-11 01:02:00
81674    28855    797    2017-04-11 22:49:00    2017-04-11 22:49:00
81675    28855    522    2017-04-11 17:57:00    2017-04-11 17:57:00
81676    28855    723    2017-04-11 16:50:00    2017-04-11 16:50:00
81677    28855    508    2017-04-11 11:05:00    2017-04-11 11:05:00
81678    28856    849    2017-04-11 18:41:00    2017-04-11 18:41:00
81679    28856    664    2017-04-11 20:02:00    2017-04-11 20:02:00
81680    28856    548    2017-04-11 16:17:00    2017-04-11 16:17:00
81681    28856    939    2017-04-11 01:18:00    2017-04-11 01:18:00
81682    28856    538    2017-04-11 02:15:00    2017-04-11 02:15:00
81683    28857    547    2017-04-11 02:29:00    2017-04-11 02:29:00
81684    28857    722    2017-04-11 16:50:00    2017-04-11 16:50:00
81685    28857    771    2017-04-11 12:31:00    2017-04-11 12:31:00
81686    28857    801    2017-04-11 13:39:00    2017-04-11 13:39:00
81687    28857    735    2017-04-11 13:25:00    2017-04-11 13:25:00
81688    28858    516    2017-04-11 01:36:00    2017-04-11 01:36:00
81689    28858    636    2017-04-11 18:29:00    2017-04-11 18:29:00
81690    28858    480    2017-04-11 08:06:00    2017-04-11 08:06:00
81691    28858    739    2017-04-11 18:22:00    2017-04-11 18:22:00
81692    28858    498    2017-04-11 06:58:00    2017-04-11 06:58:00
81693    28859    905    2017-04-11 02:05:00    2017-04-11 02:05:00
81694    28859    515    2017-04-11 07:15:00    2017-04-11 07:15:00
81695    28859    539    2017-04-11 06:07:00    2017-04-11 06:07:00
81696    28859    479    2017-04-11 01:41:00    2017-04-11 01:41:00
81697    28859    937    2017-04-11 04:20:00    2017-04-11 04:20:00
81698    28860    958    2017-04-11 07:00:00    2017-04-11 07:00:00
81699    28860    480    2017-04-11 11:00:00    2017-04-11 11:00:00
81700    28860    694    2017-04-11 15:12:00    2017-04-11 15:12:00
81701    28860    925    2017-04-11 20:07:00    2017-04-11 20:07:00
81702    28860    937    2017-04-11 02:59:00    2017-04-11 02:59:00
81703    28861    953    2017-04-11 12:42:00    2017-04-11 12:42:00
81704    28861    544    2017-04-11 17:28:00    2017-04-11 17:28:00
81705    28861    530    2017-04-11 01:50:00    2017-04-11 01:50:00
81706    28861    628    2017-04-11 23:26:00    2017-04-11 23:26:00
81707    28861    630    2017-04-11 19:26:00    2017-04-11 19:26:00
81708    28862    635    2017-04-11 02:28:00    2017-04-11 02:28:00
81709    28862    841    2017-04-11 06:57:00    2017-04-11 06:57:00
81710    28862    532    2017-04-11 09:22:00    2017-04-11 09:22:00
81711    28862    503    2017-04-11 21:58:00    2017-04-11 21:58:00
81712    28862    523    2017-04-11 09:45:00    2017-04-11 09:45:00
81713    28863    894    2017-04-11 20:53:00    2017-04-11 20:53:00
81714    28863    883    2017-04-11 02:26:00    2017-04-11 02:26:00
81715    28863    813    2017-04-11 16:31:00    2017-04-11 16:31:00
81716    28863    670    2017-04-11 08:35:00    2017-04-11 08:35:00
81717    28863    922    2017-04-11 17:55:00    2017-04-11 17:55:00
81718    28864    899    2017-04-11 01:26:00    2017-04-11 01:26:00
81719    28864    581    2017-04-11 15:52:00    2017-04-11 15:52:00
81720    28864    588    2017-04-11 07:10:00    2017-04-11 07:10:00
81721    28864    630    2017-04-11 08:50:00    2017-04-11 08:50:00
81722    28864    600    2017-04-11 11:08:00    2017-04-11 11:08:00
81723    28865    473    2017-04-11 01:59:00    2017-04-11 01:59:00
81724    28865    728    2017-04-11 07:39:00    2017-04-11 07:39:00
81725    28865    864    2017-04-11 18:20:00    2017-04-11 18:20:00
81726    28865    834    2017-04-11 20:28:00    2017-04-11 20:28:00
81727    28865    756    2017-04-11 16:46:00    2017-04-11 16:46:00
81728    28866    688    2017-04-11 12:36:00    2017-04-11 12:36:00
81729    28866    680    2017-04-11 16:42:00    2017-04-11 16:42:00
81730    28866    687    2017-04-11 20:20:00    2017-04-11 20:20:00
81731    28866    900    2017-04-11 10:40:00    2017-04-11 10:40:00
81732    28866    463    2017-04-11 13:04:00    2017-04-11 13:04:00
81733    28867    471    2017-04-11 08:55:00    2017-04-11 08:55:00
81734    28867    640    2017-04-11 15:21:00    2017-04-11 15:21:00
81735    28867    743    2017-04-11 15:03:00    2017-04-11 15:03:00
81736    28867    798    2017-04-11 02:50:00    2017-04-11 02:50:00
81737    28867    472    2017-04-11 10:13:00    2017-04-11 10:13:00
81739    28868    834    2017-04-11 08:08:00    2017-04-11 08:08:00
81741    28868    811    2017-04-11 04:16:00    2017-04-11 04:16:00
81742    28868    799    2017-04-11 03:00:00    2017-04-11 03:00:00
81740    \N    521    2017-04-11 20:07:00    2017-04-11 20:07:00
81738    \N    591    2017-04-11 13:24:00    2017-04-11 13:24:00
81743    28869    533    2017-04-12 20:10:00    2017-04-12 20:10:00
81744    28869    682    2017-04-12 17:32:00    2017-04-12 17:32:00
81745    28869    491    2017-04-12 10:11:00    2017-04-12 10:11:00
81746    28869    756    2017-04-12 11:28:00    2017-04-12 11:28:00
81747    28869    683    2017-04-12 15:49:00    2017-04-12 15:49:00
81748    28870    507    2017-04-12 14:16:00    2017-04-12 14:16:00
81749    28870    807    2017-04-12 13:20:00    2017-04-12 13:20:00
81750    28870    751    2017-04-12 19:43:00    2017-04-12 19:43:00
81751    28870    475    2017-04-12 19:11:00    2017-04-12 19:11:00
81752    28870    634    2017-04-12 19:08:00    2017-04-12 19:08:00
81753    28871    959    2017-04-12 12:48:00    2017-04-12 12:48:00
81754    28871    858    2017-04-12 07:25:00    2017-04-12 07:25:00
81755    28871    647    2017-04-12 15:18:00    2017-04-12 15:18:00
81756    28871    780    2017-04-12 17:45:00    2017-04-12 17:45:00
81757    28871    555    2017-04-12 08:29:00    2017-04-12 08:29:00
81758    28872    639    2017-04-12 17:37:00    2017-04-12 17:37:00
81759    28872    565    2017-04-12 21:35:00    2017-04-12 21:35:00
81760    28872    669    2017-04-12 16:36:00    2017-04-12 16:36:00
81761    28872    958    2017-04-12 21:53:00    2017-04-12 21:53:00
81762    28872    916    2017-04-12 16:17:00    2017-04-12 16:17:00
81763    28873    530    2017-04-12 04:44:00    2017-04-12 04:44:00
81764    28873    688    2017-04-12 05:15:00    2017-04-12 05:15:00
81765    28873    519    2017-04-12 18:25:00    2017-04-12 18:25:00
81766    28873    572    2017-04-12 17:25:00    2017-04-12 17:25:00
81767    28873    569    2017-04-12 16:43:00    2017-04-12 16:43:00
81768    28874    511    2017-04-12 15:13:00    2017-04-12 15:13:00
81769    28874    691    2017-04-12 01:19:00    2017-04-12 01:19:00
81770    28874    690    2017-04-12 12:26:00    2017-04-12 12:26:00
81771    28874    696    2017-04-12 22:53:00    2017-04-12 22:53:00
81772    28874    948    2017-04-12 09:07:00    2017-04-12 09:07:00
81773    28875    817    2017-04-12 21:22:00    2017-04-12 21:22:00
81774    28875    930    2017-04-12 07:34:00    2017-04-12 07:34:00
81775    28875    636    2017-04-12 10:14:00    2017-04-12 10:14:00
81776    28875    709    2017-04-12 16:40:00    2017-04-12 16:40:00
81777    28875    656    2017-04-12 07:29:00    2017-04-12 07:29:00
81778    28876    613    2017-04-12 22:14:00    2017-04-12 22:14:00
81779    28876    606    2017-04-12 01:31:00    2017-04-12 01:31:00
81780    28876    517    2017-04-12 07:25:00    2017-04-12 07:25:00
81781    28876    488    2017-04-12 16:11:00    2017-04-12 16:11:00
81782    28876    772    2017-04-12 04:58:00    2017-04-12 04:58:00
81783    28877    740    2017-04-12 14:07:00    2017-04-12 14:07:00
81784    28877    697    2017-04-12 22:36:00    2017-04-12 22:36:00
81785    28877    936    2017-04-12 21:59:00    2017-04-12 21:59:00
81786    28877    474    2017-04-12 01:34:00    2017-04-12 01:34:00
81787    28877    922    2017-04-12 16:37:00    2017-04-12 16:37:00
81788    28878    695    2017-04-12 12:31:00    2017-04-12 12:31:00
81789    28878    540    2017-04-12 17:14:00    2017-04-12 17:14:00
81790    28878    644    2017-04-12 01:42:00    2017-04-12 01:42:00
81791    28878    572    2017-04-12 07:42:00    2017-04-12 07:42:00
81792    28878    634    2017-04-12 16:35:00    2017-04-12 16:35:00
81793    28879    799    2017-04-12 15:21:00    2017-04-12 15:21:00
81794    28879    938    2017-04-12 21:28:00    2017-04-12 21:28:00
81795    28879    934    2017-04-12 10:20:00    2017-04-12 10:20:00
81796    28879    656    2017-04-12 14:43:00    2017-04-12 14:43:00
81797    28879    661    2017-04-12 10:39:00    2017-04-12 10:39:00
81798    28880    759    2017-04-12 03:37:00    2017-04-12 03:37:00
81799    28880    803    2017-04-12 23:53:00    2017-04-12 23:53:00
81800    28880    740    2017-04-12 05:35:00    2017-04-12 05:35:00
81801    28880    944    2017-04-12 09:00:00    2017-04-12 09:00:00
81802    28880    701    2017-04-12 07:01:00    2017-04-12 07:01:00
81803    28881    722    2017-04-12 09:31:00    2017-04-12 09:31:00
81804    28881    523    2017-04-12 08:48:00    2017-04-12 08:48:00
81805    28881    946    2017-04-12 17:02:00    2017-04-12 17:02:00
81806    28881    579    2017-04-12 10:48:00    2017-04-12 10:48:00
81807    28881    838    2017-04-12 16:43:00    2017-04-12 16:43:00
81808    28882    960    2017-04-12 07:00:00    2017-04-12 07:00:00
81809    28882    784    2017-04-12 14:49:00    2017-04-12 14:49:00
81810    28882    716    2017-04-12 01:30:00    2017-04-12 01:30:00
81811    28882    520    2017-04-12 14:34:00    2017-04-12 14:34:00
81812    28882    516    2017-04-12 15:32:00    2017-04-12 15:32:00
81813    28883    668    2017-04-12 13:23:00    2017-04-12 13:23:00
81814    28883    696    2017-04-12 15:31:00    2017-04-12 15:31:00
81815    28883    513    2017-04-12 12:48:00    2017-04-12 12:48:00
81816    28883    503    2017-04-12 16:35:00    2017-04-12 16:35:00
81817    28883    515    2017-04-12 12:06:00    2017-04-12 12:06:00
81818    28884    471    2017-04-12 20:49:00    2017-04-12 20:49:00
81819    28884    897    2017-04-12 22:24:00    2017-04-12 22:24:00
81820    28884    850    2017-04-12 14:59:00    2017-04-12 14:59:00
81821    28884    819    2017-04-12 06:43:00    2017-04-12 06:43:00
81822    28884    823    2017-04-12 18:35:00    2017-04-12 18:35:00
81823    28885    759    2017-04-12 17:27:00    2017-04-12 17:27:00
81824    28885    856    2017-04-12 21:22:00    2017-04-12 21:22:00
81825    28885    651    2017-04-12 07:21:00    2017-04-12 07:21:00
81826    28885    830    2017-04-12 18:50:00    2017-04-12 18:50:00
81827    28885    469    2017-04-12 02:40:00    2017-04-12 02:40:00
81828    28886    652    2017-04-12 13:04:00    2017-04-12 13:04:00
81829    28886    713    2017-04-12 06:01:00    2017-04-12 06:01:00
81830    28886    808    2017-04-12 21:13:00    2017-04-12 21:13:00
81831    28886    768    2017-04-12 15:35:00    2017-04-12 15:35:00
81832    28886    897    2017-04-12 18:57:00    2017-04-12 18:57:00
81833    28887    475    2017-04-12 22:58:00    2017-04-12 22:58:00
81834    28887    554    2017-04-12 15:22:00    2017-04-12 15:22:00
81835    28887    516    2017-04-12 09:06:00    2017-04-12 09:06:00
81836    28887    927    2017-04-12 12:26:00    2017-04-12 12:26:00
81837    28887    791    2017-04-12 09:27:00    2017-04-12 09:27:00
81838    28888    952    2017-04-12 20:47:00    2017-04-12 20:47:00
81839    28888    904    2017-04-12 18:00:00    2017-04-12 18:00:00
81840    28888    893    2017-04-12 05:56:00    2017-04-12 05:56:00
81841    28888    586    2017-04-12 10:03:00    2017-04-12 10:03:00
81842    28888    512    2017-04-12 05:32:00    2017-04-12 05:32:00
81843    28889    932    2017-04-12 16:12:00    2017-04-12 16:12:00
81844    28889    884    2017-04-12 04:58:00    2017-04-12 04:58:00
81845    28889    584    2017-04-12 17:15:00    2017-04-12 17:15:00
81846    28889    907    2017-04-12 07:32:00    2017-04-12 07:32:00
81847    28889    624    2017-04-12 12:46:00    2017-04-12 12:46:00
81848    28890    859    2017-04-12 03:54:00    2017-04-12 03:54:00
81849    28890    568    2017-04-12 14:45:00    2017-04-12 14:45:00
81850    28890    644    2017-04-12 13:01:00    2017-04-12 13:01:00
81851    28890    914    2017-04-12 18:22:00    2017-04-12 18:22:00
81852    28890    682    2017-04-12 16:31:00    2017-04-12 16:31:00
81853    28891    555    2017-04-12 22:24:00    2017-04-12 22:24:00
81854    28891    865    2017-04-12 04:55:00    2017-04-12 04:55:00
81855    28891    918    2017-04-12 11:46:00    2017-04-12 11:46:00
81856    28891    890    2017-04-12 20:51:00    2017-04-12 20:51:00
81857    28891    781    2017-04-12 17:11:00    2017-04-12 17:11:00
81858    28892    790    2017-04-12 06:28:00    2017-04-12 06:28:00
81859    28892    561    2017-04-12 02:13:00    2017-04-12 02:13:00
81860    28892    896    2017-04-12 10:36:00    2017-04-12 10:36:00
81861    28892    607    2017-04-12 15:17:00    2017-04-12 15:17:00
81862    28892    544    2017-04-12 03:52:00    2017-04-12 03:52:00
81863    28893    498    2017-04-12 03:58:00    2017-04-12 03:58:00
81864    28893    845    2017-04-12 07:01:00    2017-04-12 07:01:00
81865    28893    491    2017-04-12 04:27:00    2017-04-12 04:27:00
81866    28893    821    2017-04-12 01:55:00    2017-04-12 01:55:00
81867    28893    797    2017-04-12 03:26:00    2017-04-12 03:26:00
81868    28894    907    2017-04-12 03:48:00    2017-04-12 03:48:00
81869    28894    495    2017-04-12 16:03:00    2017-04-12 16:03:00
81870    28894    767    2017-04-12 08:32:00    2017-04-12 08:32:00
81871    28894    531    2017-04-12 09:47:00    2017-04-12 09:47:00
81872    28894    924    2017-04-12 16:51:00    2017-04-12 16:51:00
81873    28895    773    2017-04-12 09:51:00    2017-04-12 09:51:00
81874    28895    539    2017-04-12 18:15:00    2017-04-12 18:15:00
81875    28895    885    2017-04-12 07:12:00    2017-04-12 07:12:00
81876    28895    910    2017-04-12 22:31:00    2017-04-12 22:31:00
81877    28895    530    2017-04-12 18:20:00    2017-04-12 18:20:00
81878    28896    875    2017-04-12 16:19:00    2017-04-12 16:19:00
81879    28896    639    2017-04-12 15:56:00    2017-04-12 15:56:00
81880    28896    576    2017-04-12 11:37:00    2017-04-12 11:37:00
81881    28896    673    2017-04-12 10:09:00    2017-04-12 10:09:00
81882    28896    467    2017-04-12 12:02:00    2017-04-12 12:02:00
81883    28897    691    2017-04-12 11:46:00    2017-04-12 11:46:00
81884    28897    465    2017-04-12 20:15:00    2017-04-12 20:15:00
81885    28897    707    2017-04-12 23:53:00    2017-04-12 23:53:00
81886    28897    772    2017-04-12 19:40:00    2017-04-12 19:40:00
81887    28897    630    2017-04-12 08:01:00    2017-04-12 08:01:00
81888    28898    855    2017-04-12 13:06:00    2017-04-12 13:06:00
81889    28898    903    2017-04-12 03:14:00    2017-04-12 03:14:00
81890    28898    707    2017-04-12 10:37:00    2017-04-12 10:37:00
81891    28898    465    2017-04-12 07:01:00    2017-04-12 07:01:00
81892    28898    747    2017-04-12 16:23:00    2017-04-12 16:23:00
81893    28899    794    2017-04-12 01:58:00    2017-04-12 01:58:00
81894    28899    911    2017-04-12 09:28:00    2017-04-12 09:28:00
81895    28899    802    2017-04-12 22:00:00    2017-04-12 22:00:00
81896    28899    880    2017-04-12 12:09:00    2017-04-12 12:09:00
81897    28899    764    2017-04-12 12:36:00    2017-04-12 12:36:00
81898    28900    542    2017-04-12 08:40:00    2017-04-12 08:40:00
81899    28900    515    2017-04-12 16:54:00    2017-04-12 16:54:00
81900    28900    869    2017-04-12 13:24:00    2017-04-12 13:24:00
81901    28900    500    2017-04-12 06:42:00    2017-04-12 06:42:00
81902    28900    753    2017-04-12 17:26:00    2017-04-12 17:26:00
81903    28901    782    2017-04-12 06:53:00    2017-04-12 06:53:00
81904    28901    825    2017-04-12 21:30:00    2017-04-12 21:30:00
81905    28901    496    2017-04-12 19:52:00    2017-04-12 19:52:00
81906    28901    674    2017-04-12 10:11:00    2017-04-12 10:11:00
81907    28901    644    2017-04-12 20:09:00    2017-04-12 20:09:00
81908    28902    673    2017-04-12 07:36:00    2017-04-12 07:36:00
81909    28902    929    2017-04-12 15:51:00    2017-04-12 15:51:00
81910    28902    931    2017-04-12 07:36:00    2017-04-12 07:36:00
81911    28902    706    2017-04-12 02:20:00    2017-04-12 02:20:00
81912    28902    610    2017-04-12 03:30:00    2017-04-12 03:30:00
81913    28903    466    2017-04-12 14:04:00    2017-04-12 14:04:00
81914    28903    855    2017-04-12 11:10:00    2017-04-12 11:10:00
81915    28903    789    2017-04-12 21:19:00    2017-04-12 21:19:00
81916    28903    806    2017-04-12 20:46:00    2017-04-12 20:46:00
81917    28903    678    2017-04-12 07:42:00    2017-04-12 07:42:00
81918    28904    516    2017-04-12 09:20:00    2017-04-12 09:20:00
81919    28904    581    2017-04-12 14:54:00    2017-04-12 14:54:00
81920    28904    881    2017-04-12 06:52:00    2017-04-12 06:52:00
81921    28904    473    2017-04-12 06:39:00    2017-04-12 06:39:00
81922    28904    717    2017-04-12 16:04:00    2017-04-12 16:04:00
81923    28905    873    2017-04-12 20:09:00    2017-04-12 20:09:00
81924    28905    548    2017-04-12 08:02:00    2017-04-12 08:02:00
81925    28905    744    2017-04-12 16:03:00    2017-04-12 16:03:00
81926    28905    736    2017-04-12 15:29:00    2017-04-12 15:29:00
81927    28905    875    2017-04-12 14:07:00    2017-04-12 14:07:00
81928    28906    646    2017-04-12 18:50:00    2017-04-12 18:50:00
81929    28906    901    2017-04-12 17:48:00    2017-04-12 17:48:00
81930    28906    662    2017-04-12 09:10:00    2017-04-12 09:10:00
81931    28906    477    2017-04-12 13:49:00    2017-04-12 13:49:00
81932    28906    628    2017-04-12 22:50:00    2017-04-12 22:50:00
81933    28907    767    2017-04-12 05:24:00    2017-04-12 05:24:00
81934    28907    540    2017-04-12 12:52:00    2017-04-12 12:52:00
81935    28907    803    2017-04-12 16:11:00    2017-04-12 16:11:00
81936    28907    678    2017-04-12 20:37:00    2017-04-12 20:37:00
81937    28907    849    2017-04-12 11:38:00    2017-04-12 11:38:00
81938    28908    511    2017-04-12 15:10:00    2017-04-12 15:10:00
81939    28908    811    2017-04-12 02:07:00    2017-04-12 02:07:00
81940    28908    792    2017-04-12 03:15:00    2017-04-12 03:15:00
81941    28908    653    2017-04-12 17:21:00    2017-04-12 17:21:00
81942    28908    590    2017-04-12 18:51:00    2017-04-12 18:51:00
81943    28909    528    2017-04-12 06:38:00    2017-04-12 06:38:00
81944    28909    854    2017-04-12 10:24:00    2017-04-12 10:24:00
81945    28909    915    2017-04-12 07:13:00    2017-04-12 07:13:00
81946    28909    513    2017-04-12 21:44:00    2017-04-12 21:44:00
81947    28909    722    2017-04-12 05:04:00    2017-04-12 05:04:00
81948    28910    626    2017-04-12 09:37:00    2017-04-12 09:37:00
81949    28910    640    2017-04-12 16:19:00    2017-04-12 16:19:00
81950    28910    953    2017-04-12 19:52:00    2017-04-12 19:52:00
81951    28910    774    2017-04-12 01:21:00    2017-04-12 01:21:00
81952    28910    744    2017-04-12 18:42:00    2017-04-12 18:42:00
81953    28911    838    2017-04-12 06:27:00    2017-04-12 06:27:00
81954    28911    699    2017-04-12 20:24:00    2017-04-12 20:24:00
81955    28911    687    2017-04-12 07:15:00    2017-04-12 07:15:00
81956    28911    481    2017-04-12 11:10:00    2017-04-12 11:10:00
81957    28911    495    2017-04-12 15:11:00    2017-04-12 15:11:00
81958    28912    728    2017-04-12 12:35:00    2017-04-12 12:35:00
81959    28912    607    2017-04-12 23:39:00    2017-04-12 23:39:00
81960    28912    912    2017-04-12 01:50:00    2017-04-12 01:50:00
81961    28912    466    2017-04-12 04:51:00    2017-04-12 04:51:00
81962    28912    668    2017-04-12 03:21:00    2017-04-12 03:21:00
81963    28913    552    2017-04-12 03:45:00    2017-04-12 03:45:00
81964    28913    824    2017-04-12 12:41:00    2017-04-12 12:41:00
81965    28913    634    2017-04-12 08:29:00    2017-04-12 08:29:00
81966    28913    780    2017-04-12 09:34:00    2017-04-12 09:34:00
81967    28913    615    2017-04-12 07:39:00    2017-04-12 07:39:00
81968    28914    639    2017-04-12 22:59:00    2017-04-12 22:59:00
81969    28914    546    2017-04-12 07:25:00    2017-04-12 07:25:00
81970    28914    901    2017-04-12 10:10:00    2017-04-12 10:10:00
81971    28914    883    2017-04-12 12:26:00    2017-04-12 12:26:00
81972    28914    613    2017-04-12 18:09:00    2017-04-12 18:09:00
81973    28915    921    2017-04-12 14:19:00    2017-04-12 14:19:00
81974    28915    628    2017-04-12 16:09:00    2017-04-12 16:09:00
81975    28915    912    2017-04-12 15:46:00    2017-04-12 15:46:00
81976    28915    930    2017-04-12 09:48:00    2017-04-12 09:48:00
81977    28915    878    2017-04-12 19:11:00    2017-04-12 19:11:00
81978    28916    577    2017-04-12 10:59:00    2017-04-12 10:59:00
81979    28916    600    2017-04-12 05:18:00    2017-04-12 05:18:00
81980    28916    760    2017-04-12 02:18:00    2017-04-12 02:18:00
81981    28916    581    2017-04-12 11:45:00    2017-04-12 11:45:00
81982    28916    902    2017-04-12 16:46:00    2017-04-12 16:46:00
81983    28917    918    2017-04-12 14:15:00    2017-04-12 14:15:00
81984    28917    948    2017-04-12 08:04:00    2017-04-12 08:04:00
81985    28917    717    2017-04-12 05:19:00    2017-04-12 05:19:00
81986    28917    515    2017-04-12 23:28:00    2017-04-12 23:28:00
81987    28917    808    2017-04-12 19:23:00    2017-04-12 19:23:00
81988    28918    829    2017-04-12 06:44:00    2017-04-12 06:44:00
81989    28918    892    2017-04-12 09:20:00    2017-04-12 09:20:00
81990    28918    533    2017-04-12 11:12:00    2017-04-12 11:12:00
81991    28918    541    2017-04-12 20:48:00    2017-04-12 20:48:00
81992    28918    926    2017-04-12 01:45:00    2017-04-12 01:45:00
81993    28919    894    2017-04-12 14:56:00    2017-04-12 14:56:00
81994    28919    729    2017-04-12 19:12:00    2017-04-12 19:12:00
81995    28919    544    2017-04-12 09:04:00    2017-04-12 09:04:00
81996    28919    865    2017-04-12 04:17:00    2017-04-12 04:17:00
81997    28919    678    2017-04-12 08:58:00    2017-04-12 08:58:00
81998    28920    717    2017-04-12 06:23:00    2017-04-12 06:23:00
81999    28920    645    2017-04-12 13:26:00    2017-04-12 13:26:00
82000    28920    916    2017-04-12 15:32:00    2017-04-12 15:32:00
82001    28920    660    2017-04-12 05:12:00    2017-04-12 05:12:00
82002    28920    726    2017-04-12 18:40:00    2017-04-12 18:40:00
82003    28921    834    2017-04-12 21:03:00    2017-04-12 21:03:00
82004    28921    815    2017-04-12 08:39:00    2017-04-12 08:39:00
82005    28921    667    2017-04-12 03:03:00    2017-04-12 03:03:00
82006    28921    794    2017-04-12 13:37:00    2017-04-12 13:37:00
82007    28921    498    2017-04-12 12:05:00    2017-04-12 12:05:00
82008    28922    634    2017-04-12 22:23:00    2017-04-12 22:23:00
82009    28922    939    2017-04-12 15:56:00    2017-04-12 15:56:00
82010    28922    933    2017-04-12 23:10:00    2017-04-12 23:10:00
82011    28922    706    2017-04-12 15:29:00    2017-04-12 15:29:00
82012    28922    528    2017-04-12 01:09:00    2017-04-12 01:09:00
82013    28923    943    2017-04-12 17:45:00    2017-04-12 17:45:00
82014    28923    858    2017-04-12 08:36:00    2017-04-12 08:36:00
82015    28923    664    2017-04-12 01:34:00    2017-04-12 01:34:00
82016    28923    560    2017-04-12 02:17:00    2017-04-12 02:17:00
82017    28923    847    2017-04-12 06:43:00    2017-04-12 06:43:00
82018    28924    814    2017-04-12 18:36:00    2017-04-12 18:36:00
82019    28924    473    2017-04-12 19:17:00    2017-04-12 19:17:00
82020    28924    594    2017-04-12 20:06:00    2017-04-12 20:06:00
82021    28924    611    2017-04-12 21:11:00    2017-04-12 21:11:00
82022    28924    909    2017-04-12 22:13:00    2017-04-12 22:13:00
82023    28925    751    2017-04-12 08:29:00    2017-04-12 08:29:00
82024    28925    672    2017-04-12 14:24:00    2017-04-12 14:24:00
82025    28925    498    2017-04-12 09:15:00    2017-04-12 09:15:00
82026    28925    487    2017-04-12 07:02:00    2017-04-12 07:02:00
82027    28925    503    2017-04-12 04:00:00    2017-04-12 04:00:00
82028    28926    617    2017-04-12 14:10:00    2017-04-12 14:10:00
82029    28926    921    2017-04-12 04:26:00    2017-04-12 04:26:00
82030    28926    689    2017-04-12 18:40:00    2017-04-12 18:40:00
82031    28926    887    2017-04-12 22:06:00    2017-04-12 22:06:00
82032    28926    888    2017-04-12 05:24:00    2017-04-12 05:24:00
82033    28927    664    2017-04-12 22:33:00    2017-04-12 22:33:00
82034    28927    788    2017-04-12 10:24:00    2017-04-12 10:24:00
82035    28927    885    2017-04-12 14:39:00    2017-04-12 14:39:00
82036    28927    793    2017-04-12 08:22:00    2017-04-12 08:22:00
82037    28927    876    2017-04-12 03:19:00    2017-04-12 03:19:00
82038    28928    940    2017-04-12 18:39:00    2017-04-12 18:39:00
82039    28928    626    2017-04-12 14:26:00    2017-04-12 14:26:00
82040    28928    834    2017-04-12 20:17:00    2017-04-12 20:17:00
82041    28928    717    2017-04-12 13:06:00    2017-04-12 13:06:00
82042    28928    842    2017-04-12 21:06:00    2017-04-12 21:06:00
82043    28929    947    2017-04-12 23:10:00    2017-04-12 23:10:00
82044    28929    771    2017-04-12 09:11:00    2017-04-12 09:11:00
82045    28929    932    2017-04-12 05:00:00    2017-04-12 05:00:00
82046    28929    713    2017-04-12 10:16:00    2017-04-12 10:16:00
82047    28929    684    2017-04-12 09:42:00    2017-04-12 09:42:00
82048    28930    797    2017-04-12 15:06:00    2017-04-12 15:06:00
82049    28930    791    2017-04-12 22:53:00    2017-04-12 22:53:00
82050    28930    485    2017-04-12 15:33:00    2017-04-12 15:33:00
82051    28930    679    2017-04-12 13:46:00    2017-04-12 13:46:00
82052    28930    481    2017-04-12 06:16:00    2017-04-12 06:16:00
82053    28931    594    2017-04-12 04:28:00    2017-04-12 04:28:00
82054    28931    900    2017-04-12 02:58:00    2017-04-12 02:58:00
82055    28931    555    2017-04-12 10:53:00    2017-04-12 10:53:00
82056    28931    614    2017-04-12 21:54:00    2017-04-12 21:54:00
82057    28931    676    2017-04-12 11:49:00    2017-04-12 11:49:00
82058    28932    601    2017-04-12 23:18:00    2017-04-12 23:18:00
82059    28932    631    2017-04-12 11:37:00    2017-04-12 11:37:00
82060    28932    516    2017-04-12 10:10:00    2017-04-12 10:10:00
82061    28932    753    2017-04-12 22:27:00    2017-04-12 22:27:00
82062    28932    907    2017-04-12 20:28:00    2017-04-12 20:28:00
82063    28933    843    2017-04-12 01:47:00    2017-04-12 01:47:00
82064    28933    600    2017-04-12 22:22:00    2017-04-12 22:22:00
82065    28933    464    2017-04-12 07:27:00    2017-04-12 07:27:00
82066    28933    707    2017-04-12 16:43:00    2017-04-12 16:43:00
82067    28933    710    2017-04-12 12:30:00    2017-04-12 12:30:00
82068    28934    813    2017-04-12 03:14:00    2017-04-12 03:14:00
82069    28934    865    2017-04-12 13:22:00    2017-04-12 13:22:00
82070    28934    633    2017-04-12 02:14:00    2017-04-12 02:14:00
82071    28934    564    2017-04-12 13:06:00    2017-04-12 13:06:00
82072    28934    796    2017-04-12 02:53:00    2017-04-12 02:53:00
82073    28935    909    2017-04-12 07:00:00    2017-04-12 07:00:00
82074    28935    931    2017-04-12 18:21:00    2017-04-12 18:21:00
82075    28935    572    2017-04-12 15:14:00    2017-04-12 15:14:00
82076    28935    897    2017-04-12 12:53:00    2017-04-12 12:53:00
82077    28935    927    2017-04-12 11:07:00    2017-04-12 11:07:00
82078    28936    532    2017-04-12 08:05:00    2017-04-12 08:05:00
82079    28936    865    2017-04-12 20:46:00    2017-04-12 20:46:00
82080    28936    711    2017-04-12 03:18:00    2017-04-12 03:18:00
82081    28936    736    2017-04-12 10:16:00    2017-04-12 10:16:00
82082    28936    811    2017-04-12 01:42:00    2017-04-12 01:42:00
82083    28937    727    2017-04-12 11:02:00    2017-04-12 11:02:00
82084    28937    598    2017-04-12 09:34:00    2017-04-12 09:34:00
82085    28937    698    2017-04-12 03:52:00    2017-04-12 03:52:00
82086    28937    630    2017-04-12 14:03:00    2017-04-12 14:03:00
82087    28937    886    2017-04-12 23:27:00    2017-04-12 23:27:00
82088    28938    628    2017-04-12 10:55:00    2017-04-12 10:55:00
82089    28938    633    2017-04-12 20:09:00    2017-04-12 20:09:00
82090    28938    730    2017-04-12 22:41:00    2017-04-12 22:41:00
82091    28938    713    2017-04-12 19:23:00    2017-04-12 19:23:00
82092    28938    885    2017-04-12 17:22:00    2017-04-12 17:22:00
82093    28939    833    2017-04-12 23:20:00    2017-04-12 23:20:00
82094    28939    949    2017-04-12 05:58:00    2017-04-12 05:58:00
82095    28939    694    2017-04-12 05:11:00    2017-04-12 05:11:00
82096    28939    533    2017-04-12 09:49:00    2017-04-12 09:49:00
82097    28939    643    2017-04-12 06:41:00    2017-04-12 06:41:00
82098    28940    548    2017-04-12 02:41:00    2017-04-12 02:41:00
82099    28940    764    2017-04-12 18:02:00    2017-04-12 18:02:00
82100    28940    723    2017-04-12 13:08:00    2017-04-12 13:08:00
82101    28940    683    2017-04-12 06:33:00    2017-04-12 06:33:00
82102    28940    733    2017-04-12 15:54:00    2017-04-12 15:54:00
82103    28941    629    2017-04-12 20:15:00    2017-04-12 20:15:00
82104    28941    537    2017-04-12 11:40:00    2017-04-12 11:40:00
82105    28941    518    2017-04-12 17:06:00    2017-04-12 17:06:00
82106    28941    815    2017-04-12 01:01:00    2017-04-12 01:01:00
82107    28941    754    2017-04-12 06:53:00    2017-04-12 06:53:00
82108    28942    698    2017-04-12 15:16:00    2017-04-12 15:16:00
82109    28942    695    2017-04-12 03:17:00    2017-04-12 03:17:00
82110    28942    536    2017-04-12 06:18:00    2017-04-12 06:18:00
82111    28942    689    2017-04-12 20:54:00    2017-04-12 20:54:00
82112    28942    711    2017-04-12 16:30:00    2017-04-12 16:30:00
82113    28943    801    2017-04-12 13:55:00    2017-04-12 13:55:00
82114    28943    711    2017-04-12 08:11:00    2017-04-12 08:11:00
82115    28943    766    2017-04-12 15:43:00    2017-04-12 15:43:00
82116    28943    595    2017-04-12 11:19:00    2017-04-12 11:19:00
82117    28943    951    2017-04-12 23:52:00    2017-04-12 23:52:00
82118    28944    499    2017-04-12 20:01:00    2017-04-12 20:01:00
82119    28944    757    2017-04-12 07:40:00    2017-04-12 07:40:00
82120    28944    881    2017-04-12 09:04:00    2017-04-12 09:04:00
82121    28944    539    2017-04-12 20:08:00    2017-04-12 20:08:00
82122    28944    495    2017-04-12 14:47:00    2017-04-12 14:47:00
82123    28945    641    2017-04-12 21:45:00    2017-04-12 21:45:00
82124    28945    649    2017-04-12 13:33:00    2017-04-12 13:33:00
82125    28945    606    2017-04-12 13:00:00    2017-04-12 13:00:00
82126    28945    881    2017-04-12 07:24:00    2017-04-12 07:24:00
82127    28945    583    2017-04-12 11:27:00    2017-04-12 11:27:00
82128    28946    548    2017-04-12 23:03:00    2017-04-12 23:03:00
82129    28946    877    2017-04-12 13:54:00    2017-04-12 13:54:00
82130    28946    815    2017-04-12 06:36:00    2017-04-12 06:36:00
82131    28946    507    2017-04-12 05:53:00    2017-04-12 05:53:00
82132    28946    481    2017-04-12 20:34:00    2017-04-12 20:34:00
82133    28947    783    2017-04-12 08:07:00    2017-04-12 08:07:00
82134    28947    569    2017-04-12 04:00:00    2017-04-12 04:00:00
82135    28947    609    2017-04-12 06:48:00    2017-04-12 06:48:00
82136    28947    711    2017-04-12 06:20:00    2017-04-12 06:20:00
82137    28947    933    2017-04-12 14:26:00    2017-04-12 14:26:00
82138    28948    655    2017-04-12 07:56:00    2017-04-12 07:56:00
82139    28948    556    2017-04-12 22:00:00    2017-04-12 22:00:00
82140    28948    820    2017-04-12 01:56:00    2017-04-12 01:56:00
82141    28948    538    2017-04-12 11:21:00    2017-04-12 11:21:00
82142    28948    599    2017-04-12 20:06:00    2017-04-12 20:06:00
82143    28949    543    2017-04-12 01:07:00    2017-04-12 01:07:00
82144    28949    475    2017-04-12 06:43:00    2017-04-12 06:43:00
82145    28949    718    2017-04-12 01:02:00    2017-04-12 01:02:00
82146    28949    655    2017-04-12 22:15:00    2017-04-12 22:15:00
82147    28949    791    2017-04-12 16:17:00    2017-04-12 16:17:00
82148    28950    783    2017-04-12 15:02:00    2017-04-12 15:02:00
82149    28950    746    2017-04-12 03:59:00    2017-04-12 03:59:00
82150    28950    680    2017-04-12 12:32:00    2017-04-12 12:32:00
82151    28950    918    2017-04-12 06:06:00    2017-04-12 06:06:00
82152    28950    857    2017-04-12 23:04:00    2017-04-12 23:04:00
82153    28951    734    2017-04-12 23:21:00    2017-04-12 23:21:00
82154    28951    724    2017-04-12 11:00:00    2017-04-12 11:00:00
82155    28951    570    2017-04-12 20:56:00    2017-04-12 20:56:00
82156    28951    817    2017-04-12 11:32:00    2017-04-12 11:32:00
82157    28951    604    2017-04-12 11:55:00    2017-04-12 11:55:00
82158    28952    929    2017-04-12 11:58:00    2017-04-12 11:58:00
82159    28952    901    2017-04-12 09:41:00    2017-04-12 09:41:00
82160    28952    799    2017-04-12 17:48:00    2017-04-12 17:48:00
82161    28952    576    2017-04-12 05:50:00    2017-04-12 05:50:00
82162    28952    925    2017-04-12 18:06:00    2017-04-12 18:06:00
82163    28953    789    2017-04-12 17:28:00    2017-04-12 17:28:00
82164    28953    616    2017-04-12 11:06:00    2017-04-12 11:06:00
82165    28953    795    2017-04-12 20:56:00    2017-04-12 20:56:00
82166    28953    645    2017-04-12 02:07:00    2017-04-12 02:07:00
82167    28953    607    2017-04-12 17:36:00    2017-04-12 17:36:00
82168    28954    487    2017-04-12 20:07:00    2017-04-12 20:07:00
82169    28954    638    2017-04-12 07:04:00    2017-04-12 07:04:00
82170    28954    857    2017-04-12 05:58:00    2017-04-12 05:58:00
82171    28954    752    2017-04-12 11:56:00    2017-04-12 11:56:00
82172    28954    682    2017-04-12 09:18:00    2017-04-12 09:18:00
82173    28955    746    2017-04-12 01:12:00    2017-04-12 01:12:00
82174    28955    858    2017-04-12 18:01:00    2017-04-12 18:01:00
82175    28955    939    2017-04-12 10:22:00    2017-04-12 10:22:00
82176    28955    664    2017-04-12 08:36:00    2017-04-12 08:36:00
82177    28955    834    2017-04-12 20:15:00    2017-04-12 20:15:00
82178    28956    738    2017-04-13 13:00:00    2017-04-13 13:00:00
82179    28956    748    2017-04-13 16:51:00    2017-04-13 16:51:00
82180    28956    953    2017-04-13 20:22:00    2017-04-13 20:22:00
82181    28956    924    2017-04-13 08:49:00    2017-04-13 08:49:00
82182    28956    548    2017-04-13 18:05:00    2017-04-13 18:05:00
82183    28957    566    2017-04-13 23:46:00    2017-04-13 23:46:00
82184    28957    485    2017-04-13 09:12:00    2017-04-13 09:12:00
82185    28957    680    2017-04-13 15:08:00    2017-04-13 15:08:00
82186    28957    523    2017-04-13 17:01:00    2017-04-13 17:01:00
82187    28957    839    2017-04-13 18:45:00    2017-04-13 18:45:00
82188    28958    500    2017-04-13 09:08:00    2017-04-13 09:08:00
82189    28958    765    2017-04-13 05:14:00    2017-04-13 05:14:00
82190    28958    779    2017-04-13 12:42:00    2017-04-13 12:42:00
82191    28958    734    2017-04-13 04:05:00    2017-04-13 04:05:00
82192    28958    729    2017-04-13 11:24:00    2017-04-13 11:24:00
82193    28959    731    2017-04-13 19:16:00    2017-04-13 19:16:00
82194    28959    701    2017-04-13 08:17:00    2017-04-13 08:17:00
82195    28959    680    2017-04-13 03:32:00    2017-04-13 03:32:00
82196    28959    536    2017-04-13 19:37:00    2017-04-13 19:37:00
82197    28959    613    2017-04-13 23:38:00    2017-04-13 23:38:00
82198    28960    614    2017-04-13 17:20:00    2017-04-13 17:20:00
82199    28960    586    2017-04-13 19:05:00    2017-04-13 19:05:00
82200    28960    818    2017-04-13 05:48:00    2017-04-13 05:48:00
82201    28960    718    2017-04-13 19:47:00    2017-04-13 19:47:00
82202    28960    503    2017-04-13 15:22:00    2017-04-13 15:22:00
82203    28961    864    2017-04-13 09:04:00    2017-04-13 09:04:00
82204    28961    771    2017-04-13 22:47:00    2017-04-13 22:47:00
82205    28961    477    2017-04-13 21:43:00    2017-04-13 21:43:00
82206    28961    900    2017-04-13 14:12:00    2017-04-13 14:12:00
82207    28961    904    2017-04-13 03:00:00    2017-04-13 03:00:00
82208    28962    720    2017-04-13 12:18:00    2017-04-13 12:18:00
82209    28962    820    2017-04-13 16:37:00    2017-04-13 16:37:00
82210    28962    535    2017-04-13 14:03:00    2017-04-13 14:03:00
82211    28962    505    2017-04-13 03:03:00    2017-04-13 03:03:00
82212    28962    610    2017-04-13 12:00:00    2017-04-13 12:00:00
82213    28963    775    2017-04-13 22:57:00    2017-04-13 22:57:00
82214    28963    633    2017-04-13 04:03:00    2017-04-13 04:03:00
82215    28963    635    2017-04-13 13:46:00    2017-04-13 13:46:00
82216    28963    780    2017-04-13 11:49:00    2017-04-13 11:49:00
82217    28963    792    2017-04-13 07:31:00    2017-04-13 07:31:00
82218    28964    855    2017-04-13 09:46:00    2017-04-13 09:46:00
82219    28964    740    2017-04-13 14:55:00    2017-04-13 14:55:00
82220    28964    914    2017-04-13 11:47:00    2017-04-13 11:47:00
82221    28964    906    2017-04-13 16:50:00    2017-04-13 16:50:00
82222    28964    574    2017-04-13 08:51:00    2017-04-13 08:51:00
82223    28965    592    2017-04-13 01:31:00    2017-04-13 01:31:00
82224    28965    775    2017-04-13 06:07:00    2017-04-13 06:07:00
82225    28965    611    2017-04-13 08:09:00    2017-04-13 08:09:00
82226    28965    908    2017-04-13 10:50:00    2017-04-13 10:50:00
82227    28965    546    2017-04-13 07:55:00    2017-04-13 07:55:00
82228    28966    556    2017-04-13 09:16:00    2017-04-13 09:16:00
82229    28966    632    2017-04-13 03:03:00    2017-04-13 03:03:00
82230    28966    691    2017-04-13 07:48:00    2017-04-13 07:48:00
82231    28966    931    2017-04-13 08:46:00    2017-04-13 08:46:00
82232    28966    893    2017-04-13 03:15:00    2017-04-13 03:15:00
82233    28967    542    2017-04-13 21:41:00    2017-04-13 21:41:00
82234    28967    888    2017-04-13 20:29:00    2017-04-13 20:29:00
82235    28967    666    2017-04-13 14:53:00    2017-04-13 14:53:00
82236    28967    909    2017-04-13 21:28:00    2017-04-13 21:28:00
82237    28967    614    2017-04-13 07:34:00    2017-04-13 07:34:00
82238    28968    479    2017-04-13 20:59:00    2017-04-13 20:59:00
82239    28968    790    2017-04-13 17:15:00    2017-04-13 17:15:00
82240    28968    469    2017-04-13 16:00:00    2017-04-13 16:00:00
82241    28968    785    2017-04-13 04:57:00    2017-04-13 04:57:00
82242    28968    607    2017-04-13 12:40:00    2017-04-13 12:40:00
82243    28969    791    2017-04-13 16:44:00    2017-04-13 16:44:00
82244    28969    500    2017-04-13 21:32:00    2017-04-13 21:32:00
82245    28969    651    2017-04-13 19:10:00    2017-04-13 19:10:00
82246    28969    588    2017-04-13 18:59:00    2017-04-13 18:59:00
82247    28969    525    2017-04-13 09:58:00    2017-04-13 09:58:00
82248    28970    822    2017-04-13 17:31:00    2017-04-13 17:31:00
82249    28970    466    2017-04-13 06:06:00    2017-04-13 06:06:00
82250    28970    616    2017-04-13 17:36:00    2017-04-13 17:36:00
82251    28970    501    2017-04-13 07:17:00    2017-04-13 07:17:00
82252    28970    860    2017-04-13 04:02:00    2017-04-13 04:02:00
82253    28971    656    2017-04-13 04:56:00    2017-04-13 04:56:00
82254    28971    478    2017-04-13 04:49:00    2017-04-13 04:49:00
82255    28971    501    2017-04-13 06:07:00    2017-04-13 06:07:00
82256    28971    885    2017-04-13 16:21:00    2017-04-13 16:21:00
82257    28971    878    2017-04-13 15:35:00    2017-04-13 15:35:00
82258    28972    567    2017-04-13 21:11:00    2017-04-13 21:11:00
82259    28972    957    2017-04-13 06:00:00    2017-04-13 06:00:00
82260    28972    637    2017-04-13 10:22:00    2017-04-13 10:22:00
82261    28972    935    2017-04-13 06:35:00    2017-04-13 06:35:00
82262    28972    563    2017-04-13 11:44:00    2017-04-13 11:44:00
82263    28973    942    2017-04-13 01:26:00    2017-04-13 01:26:00
82264    28973    759    2017-04-13 15:00:00    2017-04-13 15:00:00
82265    28973    947    2017-04-13 21:52:00    2017-04-13 21:52:00
82266    28973    879    2017-04-13 18:11:00    2017-04-13 18:11:00
82267    28973    651    2017-04-13 09:55:00    2017-04-13 09:55:00
82268    28974    565    2017-04-13 19:44:00    2017-04-13 19:44:00
82269    28974    801    2017-04-13 17:37:00    2017-04-13 17:37:00
82270    28974    752    2017-04-13 19:23:00    2017-04-13 19:23:00
82271    28974    548    2017-04-13 02:23:00    2017-04-13 02:23:00
82272    28974    499    2017-04-13 14:35:00    2017-04-13 14:35:00
82273    28975    588    2017-04-13 17:23:00    2017-04-13 17:23:00
82274    28975    869    2017-04-13 12:50:00    2017-04-13 12:50:00
82275    28975    664    2017-04-13 04:04:00    2017-04-13 04:04:00
82276    28975    816    2017-04-13 08:34:00    2017-04-13 08:34:00
82277    28975    665    2017-04-13 03:09:00    2017-04-13 03:09:00
82278    28976    861    2017-04-13 09:13:00    2017-04-13 09:13:00
82279    28976    958    2017-04-13 17:53:00    2017-04-13 17:53:00
82280    28976    601    2017-04-13 03:36:00    2017-04-13 03:36:00
82281    28976    513    2017-04-13 14:24:00    2017-04-13 14:24:00
82282    28976    843    2017-04-13 19:57:00    2017-04-13 19:57:00
82283    28977    861    2017-04-13 16:17:00    2017-04-13 16:17:00
82284    28977    893    2017-04-13 21:05:00    2017-04-13 21:05:00
82285    28977    740    2017-04-13 17:02:00    2017-04-13 17:02:00
82286    28977    486    2017-04-13 07:33:00    2017-04-13 07:33:00
82287    28977    551    2017-04-13 20:23:00    2017-04-13 20:23:00
82288    28978    599    2017-04-13 06:31:00    2017-04-13 06:31:00
82289    28978    787    2017-04-13 03:00:00    2017-04-13 03:00:00
82290    28978    561    2017-04-13 07:05:00    2017-04-13 07:05:00
82291    28978    708    2017-04-13 16:46:00    2017-04-13 16:46:00
82292    28978    525    2017-04-13 07:45:00    2017-04-13 07:45:00
82293    28979    785    2017-04-13 16:08:00    2017-04-13 16:08:00
82294    28979    490    2017-04-13 19:46:00    2017-04-13 19:46:00
82295    28979    847    2017-04-13 23:40:00    2017-04-13 23:40:00
82296    28979    614    2017-04-13 18:07:00    2017-04-13 18:07:00
82297    28979    564    2017-04-13 22:13:00    2017-04-13 22:13:00
82298    28980    846    2017-04-13 04:03:00    2017-04-13 04:03:00
82299    28980    889    2017-04-13 07:02:00    2017-04-13 07:02:00
82300    28980    947    2017-04-13 01:00:00    2017-04-13 01:00:00
82301    28980    477    2017-04-13 01:51:00    2017-04-13 01:51:00
82302    28980    537    2017-04-13 01:52:00    2017-04-13 01:52:00
82303    28981    574    2017-04-13 18:00:00    2017-04-13 18:00:00
82304    28981    515    2017-04-13 22:36:00    2017-04-13 22:36:00
82305    28981    512    2017-04-13 08:20:00    2017-04-13 08:20:00
82306    28981    666    2017-04-13 09:35:00    2017-04-13 09:35:00
82307    28981    568    2017-04-13 12:00:00    2017-04-13 12:00:00
82308    28982    833    2017-04-13 14:13:00    2017-04-13 14:13:00
82309    28982    905    2017-04-13 16:19:00    2017-04-13 16:19:00
82310    28982    589    2017-04-13 02:42:00    2017-04-13 02:42:00
82311    28982    912    2017-04-13 18:47:00    2017-04-13 18:47:00
82312    28982    589    2017-04-13 22:50:00    2017-04-13 22:50:00
82313    28983    666    2017-04-13 09:54:00    2017-04-13 09:54:00
82314    28983    708    2017-04-13 17:25:00    2017-04-13 17:25:00
82315    28983    579    2017-04-13 12:10:00    2017-04-13 12:10:00
82316    28983    925    2017-04-13 22:07:00    2017-04-13 22:07:00
82317    28983    882    2017-04-13 03:23:00    2017-04-13 03:23:00
82318    28984    537    2017-04-13 19:34:00    2017-04-13 19:34:00
82319    28984    957    2017-04-13 01:28:00    2017-04-13 01:28:00
82320    28984    867    2017-04-13 01:10:00    2017-04-13 01:10:00
82321    28984    624    2017-04-13 04:42:00    2017-04-13 04:42:00
82322    28984    663    2017-04-13 23:22:00    2017-04-13 23:22:00
82323    28985    801    2017-04-13 01:01:00    2017-04-13 01:01:00
82324    28985    800    2017-04-13 16:41:00    2017-04-13 16:41:00
82325    28985    885    2017-04-13 23:46:00    2017-04-13 23:46:00
82326    28985    848    2017-04-13 13:41:00    2017-04-13 13:41:00
82327    28985    890    2017-04-13 04:00:00    2017-04-13 04:00:00
82328    28986    807    2017-04-13 04:02:00    2017-04-13 04:02:00
82329    28986    899    2017-04-13 18:59:00    2017-04-13 18:59:00
82330    28986    519    2017-04-13 12:08:00    2017-04-13 12:08:00
82331    28986    658    2017-04-13 10:31:00    2017-04-13 10:31:00
82332    28986    713    2017-04-13 21:35:00    2017-04-13 21:35:00
82333    28987    817    2017-04-13 02:53:00    2017-04-13 02:53:00
82334    28987    834    2017-04-13 16:33:00    2017-04-13 16:33:00
82335    28987    706    2017-04-13 03:00:00    2017-04-13 03:00:00
82336    28987    871    2017-04-13 04:05:00    2017-04-13 04:05:00
82337    28987    790    2017-04-13 12:57:00    2017-04-13 12:57:00
82338    28988    749    2017-04-13 05:22:00    2017-04-13 05:22:00
82339    28988    786    2017-04-13 02:06:00    2017-04-13 02:06:00
82340    28988    491    2017-04-13 06:33:00    2017-04-13 06:33:00
82341    28988    539    2017-04-13 23:14:00    2017-04-13 23:14:00
82342    28988    783    2017-04-13 23:12:00    2017-04-13 23:12:00
82343    28989    934    2017-04-13 12:27:00    2017-04-13 12:27:00
82344    28989    797    2017-04-13 21:29:00    2017-04-13 21:29:00
82345    28989    849    2017-04-13 21:36:00    2017-04-13 21:36:00
82346    28989    529    2017-04-13 04:31:00    2017-04-13 04:31:00
82347    28989    655    2017-04-13 02:13:00    2017-04-13 02:13:00
82348    28990    943    2017-04-13 17:42:00    2017-04-13 17:42:00
82349    28990    713    2017-04-13 06:24:00    2017-04-13 06:24:00
82350    28990    510    2017-04-13 17:30:00    2017-04-13 17:30:00
82351    28990    599    2017-04-13 20:55:00    2017-04-13 20:55:00
82352    28990    891    2017-04-13 08:00:00    2017-04-13 08:00:00
82353    28991    715    2017-04-13 07:14:00    2017-04-13 07:14:00
82354    28991    896    2017-04-13 09:37:00    2017-04-13 09:37:00
82355    28991    470    2017-04-13 02:45:00    2017-04-13 02:45:00
82356    28991    931    2017-04-13 17:26:00    2017-04-13 17:26:00
82357    28991    539    2017-04-13 08:02:00    2017-04-13 08:02:00
82358    28992    535    2017-04-13 20:08:00    2017-04-13 20:08:00
82359    28992    864    2017-04-13 17:49:00    2017-04-13 17:49:00
82360    28992    768    2017-04-13 16:37:00    2017-04-13 16:37:00
82361    28992    485    2017-04-13 05:25:00    2017-04-13 05:25:00
82362    28992    489    2017-04-13 16:40:00    2017-04-13 16:40:00
82363    28993    911    2017-04-13 12:12:00    2017-04-13 12:12:00
82364    28993    936    2017-04-13 18:45:00    2017-04-13 18:45:00
82365    28993    809    2017-04-13 16:31:00    2017-04-13 16:31:00
82366    28993    535    2017-04-13 08:51:00    2017-04-13 08:51:00
82367    28993    853    2017-04-13 13:27:00    2017-04-13 13:27:00
82368    28994    665    2017-04-13 16:00:00    2017-04-13 16:00:00
82369    28994    602    2017-04-13 07:31:00    2017-04-13 07:31:00
82370    28994    901    2017-04-13 14:01:00    2017-04-13 14:01:00
82371    28994    823    2017-04-13 23:31:00    2017-04-13 23:31:00
82372    28994    761    2017-04-13 07:16:00    2017-04-13 07:16:00
82373    28995    756    2017-04-13 22:44:00    2017-04-13 22:44:00
82374    28995    679    2017-04-13 23:10:00    2017-04-13 23:10:00
82375    28995    563    2017-04-13 06:05:00    2017-04-13 06:05:00
82376    28995    676    2017-04-13 02:16:00    2017-04-13 02:16:00
82377    28995    911    2017-04-13 22:20:00    2017-04-13 22:20:00
82378    28996    653    2017-04-13 07:29:00    2017-04-13 07:29:00
82379    28996    698    2017-04-13 20:53:00    2017-04-13 20:53:00
82380    28996    640    2017-04-13 08:57:00    2017-04-13 08:57:00
82381    28996    590    2017-04-13 21:59:00    2017-04-13 21:59:00
82382    28996    827    2017-04-13 23:10:00    2017-04-13 23:10:00
82383    28997    530    2017-04-13 20:06:00    2017-04-13 20:06:00
82384    28997    671    2017-04-13 11:28:00    2017-04-13 11:28:00
82385    28997    618    2017-04-13 10:27:00    2017-04-13 10:27:00
82386    28997    782    2017-04-13 16:43:00    2017-04-13 16:43:00
82387    28997    559    2017-04-13 04:16:00    2017-04-13 04:16:00
82388    28998    761    2017-04-13 18:04:00    2017-04-13 18:04:00
82389    28998    539    2017-04-13 03:55:00    2017-04-13 03:55:00
82390    28998    691    2017-04-13 23:50:00    2017-04-13 23:50:00
82391    28998    650    2017-04-13 02:45:00    2017-04-13 02:45:00
82392    28998    740    2017-04-13 03:10:00    2017-04-13 03:10:00
82393    28999    587    2017-04-14 21:00:00    2017-04-14 21:00:00
82394    28999    654    2017-04-14 19:17:00    2017-04-14 19:17:00
82395    28999    947    2017-04-14 05:49:00    2017-04-14 05:49:00
82396    28999    954    2017-04-14 16:00:00    2017-04-14 16:00:00
82397    28999    784    2017-04-14 22:26:00    2017-04-14 22:26:00
82398    29000    810    2017-04-14 16:49:00    2017-04-14 16:49:00
82399    29000    466    2017-04-14 06:03:00    2017-04-14 06:03:00
82400    29000    908    2017-04-14 23:09:00    2017-04-14 23:09:00
82401    29000    802    2017-04-14 07:12:00    2017-04-14 07:12:00
82402    29000    958    2017-04-14 20:16:00    2017-04-14 20:16:00
82403    29001    711    2017-04-14 01:59:00    2017-04-14 01:59:00
82404    29001    780    2017-04-14 09:53:00    2017-04-14 09:53:00
82405    29001    657    2017-04-14 14:15:00    2017-04-14 14:15:00
82406    29001    841    2017-04-14 21:49:00    2017-04-14 21:49:00
82407    29001    777    2017-04-14 18:59:00    2017-04-14 18:59:00
82408    29002    494    2017-04-14 13:34:00    2017-04-14 13:34:00
82409    29002    489    2017-04-14 13:01:00    2017-04-14 13:01:00
82410    29002    760    2017-04-14 23:44:00    2017-04-14 23:44:00
82411    29002    579    2017-04-14 17:04:00    2017-04-14 17:04:00
82412    29002    647    2017-04-14 11:27:00    2017-04-14 11:27:00
82413    29003    915    2017-04-14 12:41:00    2017-04-14 12:41:00
82414    29003    520    2017-04-14 11:19:00    2017-04-14 11:19:00
82415    29003    883    2017-04-14 17:20:00    2017-04-14 17:20:00
82416    29003    923    2017-04-14 23:52:00    2017-04-14 23:52:00
82417    29003    509    2017-04-14 06:48:00    2017-04-14 06:48:00
82418    29004    947    2017-04-14 18:13:00    2017-04-14 18:13:00
82419    29004    696    2017-04-14 09:00:00    2017-04-14 09:00:00
82420    29004    851    2017-04-14 22:15:00    2017-04-14 22:15:00
82421    29004    626    2017-04-14 02:26:00    2017-04-14 02:26:00
82422    29004    820    2017-04-14 06:58:00    2017-04-14 06:58:00
82423    29005    863    2017-04-14 06:32:00    2017-04-14 06:32:00
82424    29005    708    2017-04-14 22:00:00    2017-04-14 22:00:00
82425    29005    761    2017-04-14 13:21:00    2017-04-14 13:21:00
82426    29005    563    2017-04-14 13:00:00    2017-04-14 13:00:00
82427    29005    636    2017-04-14 12:21:00    2017-04-14 12:21:00
82428    29006    794    2017-04-14 07:45:00    2017-04-14 07:45:00
82429    29006    534    2017-04-14 05:26:00    2017-04-14 05:26:00
82430    29006    580    2017-04-14 23:47:00    2017-04-14 23:47:00
82431    29006    950    2017-04-14 14:16:00    2017-04-14 14:16:00
82432    29006    829    2017-04-14 08:45:00    2017-04-14 08:45:00
82433    29007    510    2017-04-14 01:51:00    2017-04-14 01:51:00
82434    29007    744    2017-04-14 01:47:00    2017-04-14 01:47:00
82435    29007    798    2017-04-14 19:29:00    2017-04-14 19:29:00
82436    29007    576    2017-04-14 08:08:00    2017-04-14 08:08:00
82437    29007    657    2017-04-14 19:11:00    2017-04-14 19:11:00
82438    29008    611    2017-04-14 22:22:00    2017-04-14 22:22:00
82439    29008    613    2017-04-14 05:16:00    2017-04-14 05:16:00
82440    29008    719    2017-04-14 20:23:00    2017-04-14 20:23:00
82441    29008    586    2017-04-14 01:49:00    2017-04-14 01:49:00
82442    29008    804    2017-04-14 18:30:00    2017-04-14 18:30:00
82443    29009    541    2017-04-14 13:05:00    2017-04-14 13:05:00
82444    29009    527    2017-04-14 16:58:00    2017-04-14 16:58:00
82445    29009    663    2017-04-14 13:14:00    2017-04-14 13:14:00
82446    29009    664    2017-04-14 05:00:00    2017-04-14 05:00:00
82447    29009    894    2017-04-14 11:10:00    2017-04-14 11:10:00
82448    29010    927    2017-04-14 17:45:00    2017-04-14 17:45:00
82449    29010    469    2017-04-14 15:35:00    2017-04-14 15:35:00
82450    29010    594    2017-04-14 15:42:00    2017-04-14 15:42:00
82451    29010    896    2017-04-14 04:53:00    2017-04-14 04:53:00
82452    29010    624    2017-04-14 15:22:00    2017-04-14 15:22:00
82453    29011    553    2017-04-15 03:46:00    2017-04-15 03:46:00
82454    29011    549    2017-04-15 14:27:00    2017-04-15 14:27:00
82455    29011    604    2017-04-15 09:17:00    2017-04-15 09:17:00
82456    29011    892    2017-04-15 13:21:00    2017-04-15 13:21:00
82457    29011    817    2017-04-15 17:10:00    2017-04-15 17:10:00
82458    29012    778    2017-04-15 12:24:00    2017-04-15 12:24:00
82459    29012    508    2017-04-15 19:48:00    2017-04-15 19:48:00
82460    29012    752    2017-04-15 14:41:00    2017-04-15 14:41:00
82461    29012    741    2017-04-15 19:44:00    2017-04-15 19:44:00
82462    29012    857    2017-04-15 05:35:00    2017-04-15 05:35:00
82463    29013    597    2017-04-15 08:06:00    2017-04-15 08:06:00
82464    29013    645    2017-04-15 17:10:00    2017-04-15 17:10:00
82465    29013    488    2017-04-15 18:41:00    2017-04-15 18:41:00
82466    29013    544    2017-04-15 05:23:00    2017-04-15 05:23:00
82467    29013    548    2017-04-15 01:58:00    2017-04-15 01:58:00
82468    29014    924    2017-04-15 03:34:00    2017-04-15 03:34:00
82469    29014    573    2017-04-15 02:22:00    2017-04-15 02:22:00
82470    29014    933    2017-04-15 06:45:00    2017-04-15 06:45:00
82471    29014    746    2017-04-15 12:48:00    2017-04-15 12:48:00
82472    29014    765    2017-04-15 17:33:00    2017-04-15 17:33:00
82473    29015    892    2017-04-15 02:56:00    2017-04-15 02:56:00
82474    29015    666    2017-04-15 14:39:00    2017-04-15 14:39:00
82475    29015    650    2017-04-15 13:00:00    2017-04-15 13:00:00
82476    29015    519    2017-04-15 22:00:00    2017-04-15 22:00:00
82477    29015    822    2017-04-15 01:50:00    2017-04-15 01:50:00
82478    29016    842    2017-04-15 04:40:00    2017-04-15 04:40:00
82479    29016    487    2017-04-15 12:04:00    2017-04-15 12:04:00
82480    29016    487    2017-04-15 11:32:00    2017-04-15 11:32:00
82481    29016    841    2017-04-15 04:42:00    2017-04-15 04:42:00
82482    29016    703    2017-04-15 20:43:00    2017-04-15 20:43:00
82483    29017    578    2017-04-15 20:44:00    2017-04-15 20:44:00
82484    29017    576    2017-04-15 08:22:00    2017-04-15 08:22:00
82485    29017    731    2017-04-15 20:18:00    2017-04-15 20:18:00
82486    29017    724    2017-04-15 16:55:00    2017-04-15 16:55:00
82487    29017    781    2017-04-15 03:22:00    2017-04-15 03:22:00
82488    29018    512    2017-04-15 23:18:00    2017-04-15 23:18:00
82489    29018    840    2017-04-15 08:23:00    2017-04-15 08:23:00
82490    29018    813    2017-04-15 21:03:00    2017-04-15 21:03:00
82491    29018    473    2017-04-15 11:36:00    2017-04-15 11:36:00
82492    29018    760    2017-04-15 23:57:00    2017-04-15 23:57:00
82493    29019    478    2017-04-15 22:24:00    2017-04-15 22:24:00
82494    29019    828    2017-04-15 04:29:00    2017-04-15 04:29:00
82495    29019    722    2017-04-15 06:45:00    2017-04-15 06:45:00
82496    29019    837    2017-04-15 03:17:00    2017-04-15 03:17:00
82497    29019    691    2017-04-15 05:48:00    2017-04-15 05:48:00
82498    29020    671    2017-04-15 14:48:00    2017-04-15 14:48:00
82499    29020    730    2017-04-15 16:26:00    2017-04-15 16:26:00
82500    29020    645    2017-04-15 20:47:00    2017-04-15 20:47:00
82501    29020    824    2017-04-15 18:53:00    2017-04-15 18:53:00
82502    29020    609    2017-04-15 16:35:00    2017-04-15 16:35:00
82503    29021    689    2017-04-15 20:52:00    2017-04-15 20:52:00
82504    29021    735    2017-04-15 09:32:00    2017-04-15 09:32:00
82505    29021    569    2017-04-15 14:59:00    2017-04-15 14:59:00
82506    29021    814    2017-04-15 14:40:00    2017-04-15 14:40:00
82507    29021    752    2017-04-15 07:16:00    2017-04-15 07:16:00
82508    29022    729    2017-04-15 01:09:00    2017-04-15 01:09:00
82509    29022    537    2017-04-15 03:53:00    2017-04-15 03:53:00
82510    29022    632    2017-04-15 03:24:00    2017-04-15 03:24:00
82511    29022    955    2017-04-15 09:34:00    2017-04-15 09:34:00
82512    29022    678    2017-04-15 22:28:00    2017-04-15 22:28:00
82513    29023    589    2017-04-15 22:00:00    2017-04-15 22:00:00
82514    29023    852    2017-04-15 23:13:00    2017-04-15 23:13:00
82515    29023    655    2017-04-15 10:13:00    2017-04-15 10:13:00
82516    29023    467    2017-04-15 06:48:00    2017-04-15 06:48:00
82517    29023    804    2017-04-15 03:49:00    2017-04-15 03:49:00
82518    29024    574    2017-04-15 10:21:00    2017-04-15 10:21:00
82519    29024    788    2017-04-15 18:38:00    2017-04-15 18:38:00
82520    29024    623    2017-04-15 01:08:00    2017-04-15 01:08:00
82521    29024    742    2017-04-15 15:43:00    2017-04-15 15:43:00
82522    29024    631    2017-04-15 04:00:00    2017-04-15 04:00:00
82523    29025    879    2017-04-15 05:50:00    2017-04-15 05:50:00
82524    29025    589    2017-04-15 10:23:00    2017-04-15 10:23:00
82525    29025    546    2017-04-15 15:50:00    2017-04-15 15:50:00
82526    29025    671    2017-04-15 13:07:00    2017-04-15 13:07:00
82527    29025    718    2017-04-15 04:39:00    2017-04-15 04:39:00
82528    29026    764    2017-04-15 13:26:00    2017-04-15 13:26:00
82529    29026    823    2017-04-15 08:02:00    2017-04-15 08:02:00
82530    29026    708    2017-04-15 01:59:00    2017-04-15 01:59:00
82531    29026    532    2017-04-15 11:03:00    2017-04-15 11:03:00
82532    29026    656    2017-04-15 12:04:00    2017-04-15 12:04:00
82533    29027    864    2017-04-15 10:36:00    2017-04-15 10:36:00
82534    29027    735    2017-04-15 14:14:00    2017-04-15 14:14:00
82535    29027    597    2017-04-15 11:01:00    2017-04-15 11:01:00
82536    29027    716    2017-04-15 06:15:00    2017-04-15 06:15:00
82537    29027    682    2017-04-15 16:37:00    2017-04-15 16:37:00
82538    29028    663    2017-04-15 05:02:00    2017-04-15 05:02:00
82539    29028    755    2017-04-15 08:56:00    2017-04-15 08:56:00
82540    29028    683    2017-04-15 20:44:00    2017-04-15 20:44:00
82541    29028    907    2017-04-15 05:15:00    2017-04-15 05:15:00
82542    29028    640    2017-04-15 17:44:00    2017-04-15 17:44:00
82543    29029    477    2017-04-15 09:24:00    2017-04-15 09:24:00
82544    29029    839    2017-04-15 05:22:00    2017-04-15 05:22:00
82545    29029    905    2017-04-15 09:59:00    2017-04-15 09:59:00
82546    29029    706    2017-04-15 09:10:00    2017-04-15 09:10:00
82547    29029    823    2017-04-15 22:48:00    2017-04-15 22:48:00
82548    29030    724    2017-04-15 21:13:00    2017-04-15 21:13:00
82549    29030    744    2017-04-15 15:05:00    2017-04-15 15:05:00
82550    29030    834    2017-04-15 19:27:00    2017-04-15 19:27:00
82551    29030    781    2017-04-15 01:23:00    2017-04-15 01:23:00
82552    29030    471    2017-04-15 04:14:00    2017-04-15 04:14:00
82553    29031    529    2017-04-15 19:05:00    2017-04-15 19:05:00
82554    29031    677    2017-04-15 04:07:00    2017-04-15 04:07:00
82555    29031    849    2017-04-15 07:10:00    2017-04-15 07:10:00
82556    29031    909    2017-04-15 14:34:00    2017-04-15 14:34:00
82557    29031    898    2017-04-15 22:21:00    2017-04-15 22:21:00
82558    29032    667    2017-04-15 20:19:00    2017-04-15 20:19:00
82559    29032    866    2017-04-15 23:07:00    2017-04-15 23:07:00
82560    29032    571    2017-04-15 09:28:00    2017-04-15 09:28:00
82561    29032    710    2017-04-15 15:31:00    2017-04-15 15:31:00
82562    29032    949    2017-04-15 14:29:00    2017-04-15 14:29:00
82563    29033    833    2017-04-15 04:52:00    2017-04-15 04:52:00
82564    29033    706    2017-04-15 06:32:00    2017-04-15 06:32:00
82565    29033    771    2017-04-15 15:04:00    2017-04-15 15:04:00
82566    29033    811    2017-04-15 17:39:00    2017-04-15 17:39:00
82567    29033    819    2017-04-15 01:46:00    2017-04-15 01:46:00
82568    29034    754    2017-04-15 03:47:00    2017-04-15 03:47:00
82569    29034    733    2017-04-15 18:57:00    2017-04-15 18:57:00
82570    29034    708    2017-04-15 01:25:00    2017-04-15 01:25:00
82571    29034    759    2017-04-15 11:13:00    2017-04-15 11:13:00
82572    29034    956    2017-04-15 01:33:00    2017-04-15 01:33:00
82573    29035    893    2017-04-15 10:54:00    2017-04-15 10:54:00
82574    29035    782    2017-04-15 23:25:00    2017-04-15 23:25:00
82575    29035    873    2017-04-15 21:52:00    2017-04-15 21:52:00
82576    29035    598    2017-04-15 18:26:00    2017-04-15 18:26:00
82577    29035    692    2017-04-15 09:34:00    2017-04-15 09:34:00
82578    29036    875    2017-04-15 05:04:00    2017-04-15 05:04:00
82579    29036    608    2017-04-15 23:27:00    2017-04-15 23:27:00
82580    29036    626    2017-04-15 21:18:00    2017-04-15 21:18:00
82581    29036    835    2017-04-15 18:05:00    2017-04-15 18:05:00
82582    29036    812    2017-04-15 13:55:00    2017-04-15 13:55:00
82583    29037    757    2017-04-15 06:34:00    2017-04-15 06:34:00
82584    29037    778    2017-04-15 19:26:00    2017-04-15 19:26:00
82585    29037    886    2017-04-15 07:34:00    2017-04-15 07:34:00
82586    29037    870    2017-04-15 02:22:00    2017-04-15 02:22:00
82587    29037    626    2017-04-15 05:06:00    2017-04-15 05:06:00
82588    29038    639    2017-04-15 18:07:00    2017-04-15 18:07:00
82589    29038    510    2017-04-15 15:59:00    2017-04-15 15:59:00
82590    29038    732    2017-04-15 23:35:00    2017-04-15 23:35:00
82591    29038    551    2017-04-15 22:41:00    2017-04-15 22:41:00
82592    29038    818    2017-04-15 20:29:00    2017-04-15 20:29:00
82593    29039    584    2017-04-15 05:59:00    2017-04-15 05:59:00
82594    29039    546    2017-04-15 22:16:00    2017-04-15 22:16:00
82595    29039    868    2017-04-15 17:16:00    2017-04-15 17:16:00
82596    29039    839    2017-04-15 06:37:00    2017-04-15 06:37:00
82597    29039    882    2017-04-15 18:28:00    2017-04-15 18:28:00
82598    29040    821    2017-04-15 19:20:00    2017-04-15 19:20:00
82599    29040    531    2017-04-15 05:32:00    2017-04-15 05:32:00
82600    29040    776    2017-04-15 08:58:00    2017-04-15 08:58:00
82601    29040    512    2017-04-15 01:28:00    2017-04-15 01:28:00
82602    29040    544    2017-04-15 09:40:00    2017-04-15 09:40:00
82603    29041    676    2017-04-15 21:53:00    2017-04-15 21:53:00
82604    29041    747    2017-04-15 08:22:00    2017-04-15 08:22:00
82605    29041    694    2017-04-15 04:41:00    2017-04-15 04:41:00
82606    29041    576    2017-04-15 21:08:00    2017-04-15 21:08:00
82607    29041    637    2017-04-15 11:11:00    2017-04-15 11:11:00
82608    29042    736    2017-04-15 21:00:00    2017-04-15 21:00:00
82609    29042    819    2017-04-15 04:53:00    2017-04-15 04:53:00
82610    29042    468    2017-04-15 08:57:00    2017-04-15 08:57:00
82611    29042    540    2017-04-15 06:52:00    2017-04-15 06:52:00
82612    29042    752    2017-04-15 08:37:00    2017-04-15 08:37:00
82613    29043    623    2017-04-15 17:03:00    2017-04-15 17:03:00
82614    29043    606    2017-04-15 09:29:00    2017-04-15 09:29:00
82615    29043    923    2017-04-15 06:39:00    2017-04-15 06:39:00
82616    29043    930    2017-04-15 02:10:00    2017-04-15 02:10:00
82617    29043    517    2017-04-15 18:07:00    2017-04-15 18:07:00
82618    29044    663    2017-04-15 19:15:00    2017-04-15 19:15:00
82619    29044    494    2017-04-15 14:54:00    2017-04-15 14:54:00
82620    29044    534    2017-04-15 05:54:00    2017-04-15 05:54:00
82621    29044    785    2017-04-15 10:41:00    2017-04-15 10:41:00
82622    29044    770    2017-04-15 15:57:00    2017-04-15 15:57:00
82623    29045    765    2017-04-15 22:05:00    2017-04-15 22:05:00
82624    29045    770    2017-04-15 01:12:00    2017-04-15 01:12:00
82625    29045    475    2017-04-15 04:50:00    2017-04-15 04:50:00
82626    29045    716    2017-04-15 21:01:00    2017-04-15 21:01:00
82627    29045    706    2017-04-15 22:41:00    2017-04-15 22:41:00
82628    29046    847    2017-04-15 10:01:00    2017-04-15 10:01:00
82629    29046    743    2017-04-15 15:22:00    2017-04-15 15:22:00
82630    29046    511    2017-04-15 17:17:00    2017-04-15 17:17:00
82631    29046    467    2017-04-15 06:12:00    2017-04-15 06:12:00
82632    29046    600    2017-04-15 15:10:00    2017-04-15 15:10:00
82633    29047    619    2017-04-15 03:05:00    2017-04-15 03:05:00
82634    29047    920    2017-04-15 09:11:00    2017-04-15 09:11:00
82635    29047    580    2017-04-15 12:16:00    2017-04-15 12:16:00
82636    29047    570    2017-04-15 16:38:00    2017-04-15 16:38:00
82637    29047    720    2017-04-15 11:20:00    2017-04-15 11:20:00
82638    29048    794    2017-04-15 13:57:00    2017-04-15 13:57:00
82639    29048    499    2017-04-15 19:30:00    2017-04-15 19:30:00
82640    29048    646    2017-04-15 17:33:00    2017-04-15 17:33:00
82641    29048    699    2017-04-15 19:03:00    2017-04-15 19:03:00
82642    29048    711    2017-04-15 04:15:00    2017-04-15 04:15:00
82643    29049    509    2017-04-15 18:26:00    2017-04-15 18:26:00
82644    29049    634    2017-04-15 21:31:00    2017-04-15 21:31:00
82645    29049    469    2017-04-15 04:40:00    2017-04-15 04:40:00
82646    29049    946    2017-04-15 12:18:00    2017-04-15 12:18:00
82647    29049    563    2017-04-15 18:11:00    2017-04-15 18:11:00
82648    29050    640    2017-04-15 09:23:00    2017-04-15 09:23:00
82649    29050    953    2017-04-15 09:40:00    2017-04-15 09:40:00
82650    29050    782    2017-04-15 23:28:00    2017-04-15 23:28:00
82651    29050    691    2017-04-15 22:28:00    2017-04-15 22:28:00
82652    29050    611    2017-04-15 14:52:00    2017-04-15 14:52:00
82653    29051    477    2017-04-15 03:41:00    2017-04-15 03:41:00
82654    29051    788    2017-04-15 23:11:00    2017-04-15 23:11:00
82655    29051    726    2017-04-15 01:41:00    2017-04-15 01:41:00
82656    29051    771    2017-04-15 13:47:00    2017-04-15 13:47:00
82657    29051    476    2017-04-15 10:02:00    2017-04-15 10:02:00
82658    29052    885    2017-04-15 13:25:00    2017-04-15 13:25:00
82659    29052    586    2017-04-15 05:12:00    2017-04-15 05:12:00
82660    29052    652    2017-04-15 07:14:00    2017-04-15 07:14:00
82661    29052    776    2017-04-15 12:50:00    2017-04-15 12:50:00
82662    29052    786    2017-04-15 16:33:00    2017-04-15 16:33:00
82663    29053    725    2017-04-15 17:11:00    2017-04-15 17:11:00
82664    29053    907    2017-04-15 06:41:00    2017-04-15 06:41:00
82665    29053    961    2017-04-15 06:53:00    2017-04-15 06:53:00
82666    29053    801    2017-04-15 04:27:00    2017-04-15 04:27:00
82667    29053    908    2017-04-15 12:51:00    2017-04-15 12:51:00
82668    29054    828    2017-04-15 09:12:00    2017-04-15 09:12:00
82669    29054    765    2017-04-15 04:49:00    2017-04-15 04:49:00
82670    29054    618    2017-04-15 10:49:00    2017-04-15 10:49:00
82671    29054    821    2017-04-15 08:52:00    2017-04-15 08:52:00
82672    29054    927    2017-04-15 06:57:00    2017-04-15 06:57:00
82673    29055    492    2017-04-15 23:46:00    2017-04-15 23:46:00
82674    29055    486    2017-04-15 18:40:00    2017-04-15 18:40:00
82675    29055    486    2017-04-15 09:00:00    2017-04-15 09:00:00
82676    29055    524    2017-04-15 15:52:00    2017-04-15 15:52:00
82677    29055    776    2017-04-15 06:09:00    2017-04-15 06:09:00
82678    29056    642    2017-04-15 17:21:00    2017-04-15 17:21:00
82679    29056    639    2017-04-15 22:33:00    2017-04-15 22:33:00
82680    29056    571    2017-04-15 21:27:00    2017-04-15 21:27:00
82681    29056    624    2017-04-15 02:45:00    2017-04-15 02:45:00
82682    29056    614    2017-04-15 23:32:00    2017-04-15 23:32:00
82683    29057    667    2017-04-15 09:54:00    2017-04-15 09:54:00
82684    29057    628    2017-04-15 15:01:00    2017-04-15 15:01:00
82685    29057    582    2017-04-15 11:36:00    2017-04-15 11:36:00
82686    29057    741    2017-04-15 22:51:00    2017-04-15 22:51:00
82687    29057    490    2017-04-15 20:28:00    2017-04-15 20:28:00
82688    29058    842    2017-04-15 05:06:00    2017-04-15 05:06:00
82689    29058    719    2017-04-15 21:27:00    2017-04-15 21:27:00
82690    29058    651    2017-04-15 04:57:00    2017-04-15 04:57:00
82691    29058    676    2017-04-15 15:02:00    2017-04-15 15:02:00
82692    29058    530    2017-04-15 11:28:00    2017-04-15 11:28:00
82693    29059    754    2017-04-15 03:29:00    2017-04-15 03:29:00
82694    29059    499    2017-04-15 18:03:00    2017-04-15 18:03:00
82695    29059    645    2017-04-15 19:55:00    2017-04-15 19:55:00
82696    29059    566    2017-04-15 20:11:00    2017-04-15 20:11:00
82697    29059    472    2017-04-15 16:15:00    2017-04-15 16:15:00
82698    29060    846    2017-04-15 23:32:00    2017-04-15 23:32:00
82699    29060    756    2017-04-15 20:03:00    2017-04-15 20:03:00
82700    29060    713    2017-04-15 20:52:00    2017-04-15 20:52:00
82701    29060    470    2017-04-15 18:09:00    2017-04-15 18:09:00
82702    29060    744    2017-04-15 16:00:00    2017-04-15 16:00:00
82703    29061    947    2017-04-15 09:29:00    2017-04-15 09:29:00
82704    29061    697    2017-04-15 03:00:00    2017-04-15 03:00:00
82705    29061    801    2017-04-15 17:59:00    2017-04-15 17:59:00
82706    29061    857    2017-04-15 19:37:00    2017-04-15 19:37:00
82707    29061    496    2017-04-15 21:47:00    2017-04-15 21:47:00
82708    29062    940    2017-04-15 01:37:00    2017-04-15 01:37:00
82709    29062    900    2017-04-15 07:39:00    2017-04-15 07:39:00
82710    29062    619    2017-04-15 08:22:00    2017-04-15 08:22:00
82711    29062    762    2017-04-15 16:03:00    2017-04-15 16:03:00
82712    29062    857    2017-04-15 18:10:00    2017-04-15 18:10:00
82713    29063    813    2017-04-15 12:09:00    2017-04-15 12:09:00
82714    29063    741    2017-04-15 22:01:00    2017-04-15 22:01:00
82715    29063    771    2017-04-15 07:44:00    2017-04-15 07:44:00
82716    29063    722    2017-04-15 06:57:00    2017-04-15 06:57:00
82717    29063    777    2017-04-15 10:18:00    2017-04-15 10:18:00
82718    29064    751    2017-04-15 10:42:00    2017-04-15 10:42:00
82719    29064    609    2017-04-15 04:52:00    2017-04-15 04:52:00
82720    29064    797    2017-04-15 11:40:00    2017-04-15 11:40:00
82721    29064    907    2017-04-15 19:55:00    2017-04-15 19:55:00
82722    29064    915    2017-04-15 07:41:00    2017-04-15 07:41:00
82723    29065    467    2017-04-15 16:58:00    2017-04-15 16:58:00
82724    29065    904    2017-04-15 22:19:00    2017-04-15 22:19:00
82725    29065    769    2017-04-15 01:40:00    2017-04-15 01:40:00
82726    29065    771    2017-04-15 17:13:00    2017-04-15 17:13:00
82727    29065    587    2017-04-15 11:25:00    2017-04-15 11:25:00
82728    29066    688    2017-04-15 16:35:00    2017-04-15 16:35:00
82729    29066    543    2017-04-15 20:56:00    2017-04-15 20:56:00
82730    29066    727    2017-04-15 23:33:00    2017-04-15 23:33:00
82731    29066    631    2017-04-15 10:03:00    2017-04-15 10:03:00
82732    29066    463    2017-04-15 19:42:00    2017-04-15 19:42:00
82733    29067    839    2017-04-15 20:19:00    2017-04-15 20:19:00
82734    29067    786    2017-04-15 22:14:00    2017-04-15 22:14:00
82735    29067    835    2017-04-15 07:12:00    2017-04-15 07:12:00
82736    29067    550    2017-04-15 18:26:00    2017-04-15 18:26:00
82737    29067    709    2017-04-15 20:53:00    2017-04-15 20:53:00
82738    29068    695    2017-04-15 07:42:00    2017-04-15 07:42:00
82739    29068    689    2017-04-15 01:23:00    2017-04-15 01:23:00
82740    29068    818    2017-04-15 08:01:00    2017-04-15 08:01:00
82741    29068    821    2017-04-15 15:18:00    2017-04-15 15:18:00
82742    29068    941    2017-04-15 23:10:00    2017-04-15 23:10:00
82743    29069    914    2017-04-15 18:17:00    2017-04-15 18:17:00
82744    29069    621    2017-04-15 02:50:00    2017-04-15 02:50:00
82745    29069    472    2017-04-15 08:29:00    2017-04-15 08:29:00
82746    29069    744    2017-04-15 19:37:00    2017-04-15 19:37:00
82747    29069    955    2017-04-15 08:09:00    2017-04-15 08:09:00
82748    29070    579    2017-04-15 20:56:00    2017-04-15 20:56:00
82749    29070    846    2017-04-15 23:04:00    2017-04-15 23:04:00
82750    29070    529    2017-04-15 10:48:00    2017-04-15 10:48:00
82751    29070    746    2017-04-15 14:57:00    2017-04-15 14:57:00
82752    29070    608    2017-04-15 03:16:00    2017-04-15 03:16:00
82753    29071    734    2017-04-15 12:50:00    2017-04-15 12:50:00
82754    29071    626    2017-04-15 03:02:00    2017-04-15 03:02:00
82755    29071    658    2017-04-15 18:40:00    2017-04-15 18:40:00
82756    29071    692    2017-04-15 12:42:00    2017-04-15 12:42:00
82757    29071    605    2017-04-15 19:46:00    2017-04-15 19:46:00
82758    29072    726    2017-04-15 18:08:00    2017-04-15 18:08:00
82759    29072    575    2017-04-15 09:42:00    2017-04-15 09:42:00
82760    29072    565    2017-04-15 09:24:00    2017-04-15 09:24:00
82761    29072    930    2017-04-15 22:35:00    2017-04-15 22:35:00
82762    29072    856    2017-04-15 17:58:00    2017-04-15 17:58:00
82763    29073    527    2017-04-15 14:36:00    2017-04-15 14:36:00
82764    29073    959    2017-04-15 21:50:00    2017-04-15 21:50:00
82765    29073    613    2017-04-15 06:03:00    2017-04-15 06:03:00
82766    29073    774    2017-04-15 13:01:00    2017-04-15 13:01:00
82767    29073    793    2017-04-15 01:31:00    2017-04-15 01:31:00
82768    29074    487    2017-04-15 15:44:00    2017-04-15 15:44:00
82769    29074    666    2017-04-15 22:09:00    2017-04-15 22:09:00
82770    29074    573    2017-04-15 04:48:00    2017-04-15 04:48:00
82771    29074    920    2017-04-15 04:45:00    2017-04-15 04:45:00
82772    29074    735    2017-04-15 23:38:00    2017-04-15 23:38:00
82773    29075    825    2017-04-15 08:16:00    2017-04-15 08:16:00
82774    29075    538    2017-04-15 19:18:00    2017-04-15 19:18:00
82775    29075    517    2017-04-15 23:01:00    2017-04-15 23:01:00
82776    29075    893    2017-04-15 10:57:00    2017-04-15 10:57:00
82777    29075    611    2017-04-15 02:12:00    2017-04-15 02:12:00
82778    29076    631    2017-04-15 21:57:00    2017-04-15 21:57:00
82779    29076    598    2017-04-15 08:53:00    2017-04-15 08:53:00
82780    29076    781    2017-04-15 15:05:00    2017-04-15 15:05:00
82781    29076    919    2017-04-15 17:08:00    2017-04-15 17:08:00
82782    29076    670    2017-04-15 01:05:00    2017-04-15 01:05:00
82783    29077    836    2017-04-15 10:05:00    2017-04-15 10:05:00
82784    29077    798    2017-04-15 23:35:00    2017-04-15 23:35:00
82785    29077    621    2017-04-15 09:32:00    2017-04-15 09:32:00
82786    29077    469    2017-04-15 23:07:00    2017-04-15 23:07:00
82787    29077    925    2017-04-15 11:14:00    2017-04-15 11:14:00
82788    29078    961    2017-04-15 19:56:00    2017-04-15 19:56:00
82789    29078    775    2017-04-15 23:40:00    2017-04-15 23:40:00
82790    29078    520    2017-04-15 13:27:00    2017-04-15 13:27:00
82791    29078    552    2017-04-15 18:45:00    2017-04-15 18:45:00
82792    29078    877    2017-04-15 18:04:00    2017-04-15 18:04:00
82793    29079    784    2017-04-16 10:00:00    2017-04-16 10:00:00
82794    29079    496    2017-04-16 09:14:00    2017-04-16 09:14:00
82795    29079    656    2017-04-16 09:34:00    2017-04-16 09:34:00
82796    29079    776    2017-04-16 02:16:00    2017-04-16 02:16:00
82797    29079    849    2017-04-16 16:39:00    2017-04-16 16:39:00
82798    29080    663    2017-04-16 22:17:00    2017-04-16 22:17:00
82799    29080    665    2017-04-16 02:45:00    2017-04-16 02:45:00
82800    29080    857    2017-04-16 04:32:00    2017-04-16 04:32:00
82801    29080    739    2017-04-16 09:44:00    2017-04-16 09:44:00
82802    29080    838    2017-04-16 05:13:00    2017-04-16 05:13:00
82803    29081    634    2017-04-16 23:48:00    2017-04-16 23:48:00
82804    29081    776    2017-04-16 09:42:00    2017-04-16 09:42:00
82805    29081    800    2017-04-16 04:37:00    2017-04-16 04:37:00
82806    29081    836    2017-04-16 04:35:00    2017-04-16 04:35:00
82807    29081    879    2017-04-16 10:44:00    2017-04-16 10:44:00
82808    29082    877    2017-04-16 19:37:00    2017-04-16 19:37:00
82809    29082    624    2017-04-16 16:50:00    2017-04-16 16:50:00
82810    29082    791    2017-04-16 06:14:00    2017-04-16 06:14:00
82811    29082    728    2017-04-16 16:25:00    2017-04-16 16:25:00
82812    29082    650    2017-04-16 11:36:00    2017-04-16 11:36:00
82813    29083    548    2017-04-16 19:26:00    2017-04-16 19:26:00
82814    29083    598    2017-04-16 12:21:00    2017-04-16 12:21:00
82815    29083    694    2017-04-16 08:50:00    2017-04-16 08:50:00
82816    29083    949    2017-04-16 15:45:00    2017-04-16 15:45:00
82817    29083    618    2017-04-16 23:46:00    2017-04-16 23:46:00
82818    29084    705    2017-04-16 04:44:00    2017-04-16 04:44:00
82819    29084    463    2017-04-16 05:20:00    2017-04-16 05:20:00
82820    29084    787    2017-04-16 16:58:00    2017-04-16 16:58:00
82821    29084    857    2017-04-16 23:38:00    2017-04-16 23:38:00
82822    29084    827    2017-04-16 07:29:00    2017-04-16 07:29:00
82823    29085    648    2017-04-16 09:51:00    2017-04-16 09:51:00
82824    29085    815    2017-04-16 17:40:00    2017-04-16 17:40:00
82825    29085    909    2017-04-16 02:00:00    2017-04-16 02:00:00
82826    29085    658    2017-04-16 18:32:00    2017-04-16 18:32:00
82827    29085    716    2017-04-16 18:36:00    2017-04-16 18:36:00
82828    29086    576    2017-04-16 16:25:00    2017-04-16 16:25:00
82829    29086    521    2017-04-16 14:43:00    2017-04-16 14:43:00
82830    29086    939    2017-04-16 22:47:00    2017-04-16 22:47:00
82831    29086    785    2017-04-16 16:29:00    2017-04-16 16:29:00
82832    29086    676    2017-04-16 07:21:00    2017-04-16 07:21:00
82833    29087    750    2017-04-16 03:02:00    2017-04-16 03:02:00
82834    29087    689    2017-04-16 22:57:00    2017-04-16 22:57:00
82835    29087    823    2017-04-16 22:15:00    2017-04-16 22:15:00
82836    29087    640    2017-04-16 14:51:00    2017-04-16 14:51:00
82837    29087    600    2017-04-16 11:18:00    2017-04-16 11:18:00
82838    29088    669    2017-04-16 13:03:00    2017-04-16 13:03:00
82839    29088    472    2017-04-16 02:46:00    2017-04-16 02:46:00
82840    29088    543    2017-04-16 07:06:00    2017-04-16 07:06:00
82841    29088    921    2017-04-16 14:22:00    2017-04-16 14:22:00
82842    29088    916    2017-04-16 09:07:00    2017-04-16 09:07:00
82843    29089    806    2017-04-16 20:52:00    2017-04-16 20:52:00
82844    29089    785    2017-04-16 19:42:00    2017-04-16 19:42:00
82845    29089    801    2017-04-16 23:59:00    2017-04-16 23:59:00
82846    29089    832    2017-04-16 09:48:00    2017-04-16 09:48:00
82847    29089    677    2017-04-16 17:07:00    2017-04-16 17:07:00
82848    29090    772    2017-04-16 16:20:00    2017-04-16 16:20:00
82849    29090    840    2017-04-16 13:37:00    2017-04-16 13:37:00
82850    29090    909    2017-04-16 10:08:00    2017-04-16 10:08:00
82851    29090    712    2017-04-16 14:13:00    2017-04-16 14:13:00
82852    29090    706    2017-04-16 16:12:00    2017-04-16 16:12:00
82853    29091    729    2017-04-16 07:58:00    2017-04-16 07:58:00
82854    29091    746    2017-04-16 18:49:00    2017-04-16 18:49:00
82855    29091    683    2017-04-16 09:44:00    2017-04-16 09:44:00
82856    29091    765    2017-04-16 16:00:00    2017-04-16 16:00:00
82857    29091    873    2017-04-16 16:57:00    2017-04-16 16:57:00
82858    29092    606    2017-04-16 02:17:00    2017-04-16 02:17:00
82859    29092    498    2017-04-16 13:19:00    2017-04-16 13:19:00
82860    29092    893    2017-04-16 21:50:00    2017-04-16 21:50:00
82861    29092    528    2017-04-16 03:24:00    2017-04-16 03:24:00
82862    29092    824    2017-04-16 13:03:00    2017-04-16 13:03:00
82863    29093    802    2017-04-16 01:15:00    2017-04-16 01:15:00
82864    29093    597    2017-04-16 16:16:00    2017-04-16 16:16:00
82865    29093    684    2017-04-16 17:04:00    2017-04-16 17:04:00
82866    29093    856    2017-04-16 08:08:00    2017-04-16 08:08:00
82867    29093    949    2017-04-16 10:03:00    2017-04-16 10:03:00
82868    29094    663    2017-04-16 02:42:00    2017-04-16 02:42:00
82869    29094    623    2017-04-16 20:18:00    2017-04-16 20:18:00
82870    29094    471    2017-04-16 09:12:00    2017-04-16 09:12:00
82871    29094    642    2017-04-16 13:53:00    2017-04-16 13:53:00
82872    29094    752    2017-04-16 09:30:00    2017-04-16 09:30:00
82873    29095    847    2017-04-16 16:32:00    2017-04-16 16:32:00
82874    29095    535    2017-04-16 17:43:00    2017-04-16 17:43:00
82875    29095    613    2017-04-16 07:08:00    2017-04-16 07:08:00
82876    29095    662    2017-04-16 07:01:00    2017-04-16 07:01:00
82877    29095    639    2017-04-16 10:30:00    2017-04-16 10:30:00
82878    29096    669    2017-04-16 12:37:00    2017-04-16 12:37:00
82879    29096    598    2017-04-16 19:27:00    2017-04-16 19:27:00
82880    29096    949    2017-04-16 18:50:00    2017-04-16 18:50:00
82881    29096    819    2017-04-16 17:36:00    2017-04-16 17:36:00
82882    29096    898    2017-04-16 02:44:00    2017-04-16 02:44:00
82883    29097    559    2017-04-16 01:45:00    2017-04-16 01:45:00
82884    29097    687    2017-04-16 04:28:00    2017-04-16 04:28:00
82885    29097    638    2017-04-16 02:37:00    2017-04-16 02:37:00
82886    29097    645    2017-04-16 19:18:00    2017-04-16 19:18:00
82887    29097    905    2017-04-16 06:57:00    2017-04-16 06:57:00
82888    29098    517    2017-04-16 09:25:00    2017-04-16 09:25:00
82889    29098    531    2017-04-16 14:28:00    2017-04-16 14:28:00
82890    29098    888    2017-04-16 10:30:00    2017-04-16 10:30:00
82891    29098    532    2017-04-16 17:13:00    2017-04-16 17:13:00
82892    29098    651    2017-04-16 21:44:00    2017-04-16 21:44:00
82893    29099    773    2017-04-16 13:01:00    2017-04-16 13:01:00
82894    29099    575    2017-04-16 02:31:00    2017-04-16 02:31:00
82895    29099    887    2017-04-16 16:02:00    2017-04-16 16:02:00
82896    29099    517    2017-04-16 06:18:00    2017-04-16 06:18:00
82897    29099    608    2017-04-16 16:20:00    2017-04-16 16:20:00
82898    29100    534    2017-04-16 11:21:00    2017-04-16 11:21:00
82899    29100    601    2017-04-16 07:35:00    2017-04-16 07:35:00
82900    29100    679    2017-04-16 21:32:00    2017-04-16 21:32:00
82901    29100    868    2017-04-16 17:35:00    2017-04-16 17:35:00
82902    29100    829    2017-04-16 19:45:00    2017-04-16 19:45:00
82903    29101    618    2017-04-16 13:19:00    2017-04-16 13:19:00
82904    29101    635    2017-04-16 10:13:00    2017-04-16 10:13:00
82905    29101    550    2017-04-16 16:58:00    2017-04-16 16:58:00
82906    29101    612    2017-04-16 06:33:00    2017-04-16 06:33:00
82907    29101    581    2017-04-16 08:07:00    2017-04-16 08:07:00
82908    29102    607    2017-04-16 14:55:00    2017-04-16 14:55:00
82909    29102    923    2017-04-16 15:42:00    2017-04-16 15:42:00
82910    29102    950    2017-04-16 23:46:00    2017-04-16 23:46:00
82911    29102    659    2017-04-16 13:40:00    2017-04-16 13:40:00
82912    29102    580    2017-04-16 09:37:00    2017-04-16 09:37:00
82913    29103    467    2017-04-16 09:50:00    2017-04-16 09:50:00
82914    29103    665    2017-04-16 11:21:00    2017-04-16 11:21:00
82915    29103    921    2017-04-16 01:28:00    2017-04-16 01:28:00
82916    29103    942    2017-04-16 04:29:00    2017-04-16 04:29:00
82917    29103    742    2017-04-16 13:03:00    2017-04-16 13:03:00
82918    29104    645    2017-04-16 04:55:00    2017-04-16 04:55:00
82919    29104    488    2017-04-16 11:52:00    2017-04-16 11:52:00
82920    29104    661    2017-04-16 01:27:00    2017-04-16 01:27:00
82921    29104    790    2017-04-16 14:56:00    2017-04-16 14:56:00
82922    29104    769    2017-04-16 09:41:00    2017-04-16 09:41:00
82923    29105    585    2017-04-16 16:38:00    2017-04-16 16:38:00
82924    29105    948    2017-04-16 11:24:00    2017-04-16 11:24:00
82925    29105    547    2017-04-16 03:50:00    2017-04-16 03:50:00
82926    29105    947    2017-04-16 23:38:00    2017-04-16 23:38:00
82927    29105    940    2017-04-16 16:16:00    2017-04-16 16:16:00
82928    29106    697    2017-04-16 03:50:00    2017-04-16 03:50:00
82929    29106    779    2017-04-16 07:19:00    2017-04-16 07:19:00
82930    29106    574    2017-04-16 21:34:00    2017-04-16 21:34:00
82931    29106    594    2017-04-16 20:06:00    2017-04-16 20:06:00
82932    29106    563    2017-04-16 12:54:00    2017-04-16 12:54:00
82933    29107    915    2017-04-16 04:51:00    2017-04-16 04:51:00
82934    29107    724    2017-04-16 11:23:00    2017-04-16 11:23:00
82935    29107    651    2017-04-16 19:50:00    2017-04-16 19:50:00
82936    29107    581    2017-04-16 09:55:00    2017-04-16 09:55:00
82937    29107    571    2017-04-16 19:03:00    2017-04-16 19:03:00
82938    29108    656    2017-04-16 17:24:00    2017-04-16 17:24:00
82939    29108    582    2017-04-16 10:36:00    2017-04-16 10:36:00
82940    29108    934    2017-04-16 02:45:00    2017-04-16 02:45:00
82941    29108    730    2017-04-16 15:26:00    2017-04-16 15:26:00
82942    29108    614    2017-04-16 16:51:00    2017-04-16 16:51:00
82943    29109    502    2017-04-16 19:45:00    2017-04-16 19:45:00
82944    29109    742    2017-04-16 17:41:00    2017-04-16 17:41:00
82945    29109    947    2017-04-16 22:59:00    2017-04-16 22:59:00
82946    29109    683    2017-04-16 01:28:00    2017-04-16 01:28:00
82947    29109    849    2017-04-16 01:22:00    2017-04-16 01:22:00
82948    29110    587    2017-04-16 08:21:00    2017-04-16 08:21:00
82949    29110    476    2017-04-16 20:00:00    2017-04-16 20:00:00
82950    29110    550    2017-04-16 08:34:00    2017-04-16 08:34:00
82951    29110    590    2017-04-16 21:12:00    2017-04-16 21:12:00
82952    29110    944    2017-04-16 23:22:00    2017-04-16 23:22:00
82953    29111    793    2017-04-16 01:01:00    2017-04-16 01:01:00
82954    29111    755    2017-04-16 23:41:00    2017-04-16 23:41:00
82955    29111    791    2017-04-16 21:12:00    2017-04-16 21:12:00
82956    29111    492    2017-04-16 13:51:00    2017-04-16 13:51:00
82957    29111    682    2017-04-16 22:11:00    2017-04-16 22:11:00
82958    29112    943    2017-04-16 10:39:00    2017-04-16 10:39:00
82959    29112    552    2017-04-16 11:40:00    2017-04-16 11:40:00
82960    29112    658    2017-04-16 08:23:00    2017-04-16 08:23:00
82961    29112    943    2017-04-16 06:25:00    2017-04-16 06:25:00
82962    29112    837    2017-04-16 04:31:00    2017-04-16 04:31:00
82963    29113    919    2017-04-16 04:44:00    2017-04-16 04:44:00
82964    29113    650    2017-04-16 15:09:00    2017-04-16 15:09:00
82965    29113    496    2017-04-16 13:11:00    2017-04-16 13:11:00
82966    29113    716    2017-04-16 02:32:00    2017-04-16 02:32:00
82967    29113    851    2017-04-16 18:56:00    2017-04-16 18:56:00
82968    29114    707    2017-04-16 22:58:00    2017-04-16 22:58:00
82969    29114    719    2017-04-16 01:11:00    2017-04-16 01:11:00
82970    29114    498    2017-04-16 15:15:00    2017-04-16 15:15:00
82971    29114    533    2017-04-16 20:13:00    2017-04-16 20:13:00
82972    29114    862    2017-04-16 07:16:00    2017-04-16 07:16:00
82973    29115    940    2017-04-16 18:49:00    2017-04-16 18:49:00
82974    29115    933    2017-04-16 19:10:00    2017-04-16 19:10:00
82975    29115    885    2017-04-16 03:25:00    2017-04-16 03:25:00
82976    29115    722    2017-04-16 03:32:00    2017-04-16 03:32:00
82977    29115    564    2017-04-16 11:51:00    2017-04-16 11:51:00
82978    29116    799    2017-04-16 14:27:00    2017-04-16 14:27:00
82979    29116    598    2017-04-16 19:43:00    2017-04-16 19:43:00
82980    29116    931    2017-04-16 01:11:00    2017-04-16 01:11:00
82981    29116    921    2017-04-16 12:05:00    2017-04-16 12:05:00
82982    29116    906    2017-04-16 15:25:00    2017-04-16 15:25:00
82983    29117    757    2017-04-16 18:57:00    2017-04-16 18:57:00
82984    29117    667    2017-04-16 14:30:00    2017-04-16 14:30:00
82985    29117    866    2017-04-16 07:13:00    2017-04-16 07:13:00
82986    29117    778    2017-04-16 16:03:00    2017-04-16 16:03:00
82987    29117    466    2017-04-16 12:21:00    2017-04-16 12:21:00
82988    29118    697    2017-04-16 09:09:00    2017-04-16 09:09:00
82989    29118    874    2017-04-16 01:14:00    2017-04-16 01:14:00
82990    29118    821    2017-04-16 19:51:00    2017-04-16 19:51:00
82991    29118    614    2017-04-16 08:51:00    2017-04-16 08:51:00
82992    29118    658    2017-04-16 18:33:00    2017-04-16 18:33:00
82993    29119    753    2017-04-16 10:52:00    2017-04-16 10:52:00
82994    29119    660    2017-04-16 04:16:00    2017-04-16 04:16:00
82995    29119    886    2017-04-16 22:24:00    2017-04-16 22:24:00
82996    29119    817    2017-04-16 05:31:00    2017-04-16 05:31:00
82997    29119    779    2017-04-16 01:45:00    2017-04-16 01:45:00
82998    29120    672    2017-04-16 15:59:00    2017-04-16 15:59:00
82999    29120    607    2017-04-16 01:04:00    2017-04-16 01:04:00
83000    29120    661    2017-04-16 14:51:00    2017-04-16 14:51:00
83001    29120    481    2017-04-16 06:34:00    2017-04-16 06:34:00
83002    29120    790    2017-04-16 21:57:00    2017-04-16 21:57:00
83003    29121    798    2017-04-16 14:28:00    2017-04-16 14:28:00
83004    29121    920    2017-04-16 04:05:00    2017-04-16 04:05:00
83005    29121    651    2017-04-16 01:50:00    2017-04-16 01:50:00
83006    29121    733    2017-04-16 13:31:00    2017-04-16 13:31:00
83007    29121    825    2017-04-16 04:17:00    2017-04-16 04:17:00
83008    29122    489    2017-04-16 16:25:00    2017-04-16 16:25:00
83009    29122    878    2017-04-16 14:15:00    2017-04-16 14:15:00
83010    29122    676    2017-04-16 15:59:00    2017-04-16 15:59:00
83011    29122    754    2017-04-16 12:11:00    2017-04-16 12:11:00
83012    29122    773    2017-04-16 14:34:00    2017-04-16 14:34:00
83013    29123    635    2017-04-16 01:05:00    2017-04-16 01:05:00
83014    29123    857    2017-04-16 01:37:00    2017-04-16 01:37:00
83015    29123    661    2017-04-16 17:26:00    2017-04-16 17:26:00
83016    29123    472    2017-04-16 18:31:00    2017-04-16 18:31:00
83017    29123    892    2017-04-16 23:13:00    2017-04-16 23:13:00
83018    29124    676    2017-04-16 10:49:00    2017-04-16 10:49:00
83019    29124    941    2017-04-16 21:00:00    2017-04-16 21:00:00
83020    29124    571    2017-04-16 15:12:00    2017-04-16 15:12:00
83021    29124    653    2017-04-16 09:54:00    2017-04-16 09:54:00
83022    29124    722    2017-04-16 22:31:00    2017-04-16 22:31:00
83023    29125    886    2017-04-16 06:23:00    2017-04-16 06:23:00
83024    29125    830    2017-04-16 19:39:00    2017-04-16 19:39:00
83025    29125    764    2017-04-16 13:06:00    2017-04-16 13:06:00
83026    29125    477    2017-04-16 06:24:00    2017-04-16 06:24:00
83027    29125    927    2017-04-16 22:06:00    2017-04-16 22:06:00
83028    29126    565    2017-04-16 18:03:00    2017-04-16 18:03:00
83029    29126    648    2017-04-16 17:12:00    2017-04-16 17:12:00
83030    29126    825    2017-04-16 19:33:00    2017-04-16 19:33:00
83031    29126    925    2017-04-16 04:06:00    2017-04-16 04:06:00
83032    29126    592    2017-04-16 20:33:00    2017-04-16 20:33:00
83033    29127    810    2017-04-16 22:17:00    2017-04-16 22:17:00
83034    29127    778    2017-04-16 23:33:00    2017-04-16 23:33:00
83035    29127    658    2017-04-16 06:54:00    2017-04-16 06:54:00
83036    29127    484    2017-04-16 17:57:00    2017-04-16 17:57:00
83037    29127    571    2017-04-16 02:31:00    2017-04-16 02:31:00
83038    29128    470    2017-04-16 02:51:00    2017-04-16 02:51:00
83039    29128    872    2017-04-16 16:49:00    2017-04-16 16:49:00
83040    29128    714    2017-04-16 15:31:00    2017-04-16 15:31:00
83041    29128    955    2017-04-16 17:38:00    2017-04-16 17:38:00
83042    29128    942    2017-04-16 14:33:00    2017-04-16 14:33:00
83043    29129    525    2017-04-16 23:59:00    2017-04-16 23:59:00
83044    29129    589    2017-04-16 03:41:00    2017-04-16 03:41:00
83045    29129    710    2017-04-16 22:16:00    2017-04-16 22:16:00
83046    29129    613    2017-04-16 19:59:00    2017-04-16 19:59:00
83047    29129    598    2017-04-16 23:47:00    2017-04-16 23:47:00
83048    29130    927    2017-04-16 15:48:00    2017-04-16 15:48:00
83049    29130    562    2017-04-16 10:10:00    2017-04-16 10:10:00
83050    29130    949    2017-04-16 12:15:00    2017-04-16 12:15:00
83051    29130    889    2017-04-16 14:39:00    2017-04-16 14:39:00
83052    29130    588    2017-04-16 07:41:00    2017-04-16 07:41:00
83053    29131    951    2017-04-16 11:02:00    2017-04-16 11:02:00
83054    29131    715    2017-04-16 12:10:00    2017-04-16 12:10:00
83055    29131    935    2017-04-16 16:58:00    2017-04-16 16:58:00
83056    29131    641    2017-04-16 20:50:00    2017-04-16 20:50:00
83057    29131    595    2017-04-16 13:05:00    2017-04-16 13:05:00
83058    29132    654    2017-04-16 17:16:00    2017-04-16 17:16:00
83059    29132    806    2017-04-16 13:46:00    2017-04-16 13:46:00
83060    29132    697    2017-04-16 03:18:00    2017-04-16 03:18:00
83061    29132    706    2017-04-16 18:55:00    2017-04-16 18:55:00
83062    29132    474    2017-04-16 05:23:00    2017-04-16 05:23:00
83063    29133    899    2017-04-16 10:06:00    2017-04-16 10:06:00
83064    29133    894    2017-04-16 09:49:00    2017-04-16 09:49:00
83065    29133    672    2017-04-16 22:17:00    2017-04-16 22:17:00
83066    29133    641    2017-04-16 01:33:00    2017-04-16 01:33:00
83067    29133    881    2017-04-16 01:45:00    2017-04-16 01:45:00
83068    29134    615    2017-04-16 10:08:00    2017-04-16 10:08:00
83069    29134    836    2017-04-16 08:10:00    2017-04-16 08:10:00
83070    29134    824    2017-04-16 18:48:00    2017-04-16 18:48:00
83071    29134    729    2017-04-16 21:08:00    2017-04-16 21:08:00
83072    29134    806    2017-04-16 14:49:00    2017-04-16 14:49:00
83073    29135    930    2017-04-16 05:48:00    2017-04-16 05:48:00
83074    29135    549    2017-04-16 02:33:00    2017-04-16 02:33:00
83075    29135    487    2017-04-16 04:35:00    2017-04-16 04:35:00
83076    29135    581    2017-04-16 01:22:00    2017-04-16 01:22:00
83077    29135    839    2017-04-16 08:48:00    2017-04-16 08:48:00
83078    29136    712    2017-04-16 16:52:00    2017-04-16 16:52:00
83079    29136    463    2017-04-16 11:24:00    2017-04-16 11:24:00
83080    29136    869    2017-04-16 10:43:00    2017-04-16 10:43:00
83081    29136    507    2017-04-16 23:54:00    2017-04-16 23:54:00
83082    29136    768    2017-04-16 09:42:00    2017-04-16 09:42:00
83083    29137    760    2017-04-16 21:41:00    2017-04-16 21:41:00
83084    29137    591    2017-04-16 11:46:00    2017-04-16 11:46:00
83085    29137    714    2017-04-16 16:36:00    2017-04-16 16:36:00
83086    29137    916    2017-04-16 05:25:00    2017-04-16 05:25:00
83087    29137    623    2017-04-16 19:42:00    2017-04-16 19:42:00
83088    29138    555    2017-04-16 09:45:00    2017-04-16 09:45:00
83089    29138    928    2017-04-16 12:41:00    2017-04-16 12:41:00
83090    29138    784    2017-04-16 22:44:00    2017-04-16 22:44:00
83091    29138    960    2017-04-16 03:13:00    2017-04-16 03:13:00
83092    29138    593    2017-04-16 08:58:00    2017-04-16 08:58:00
83093    29139    512    2017-04-16 13:45:00    2017-04-16 13:45:00
83094    29139    900    2017-04-16 12:20:00    2017-04-16 12:20:00
83095    29139    631    2017-04-16 19:53:00    2017-04-16 19:53:00
83096    29139    721    2017-04-16 04:56:00    2017-04-16 04:56:00
83097    29139    484    2017-04-16 06:02:00    2017-04-16 06:02:00
83098    29140    689    2017-04-16 13:34:00    2017-04-16 13:34:00
83099    29140    605    2017-04-16 08:06:00    2017-04-16 08:06:00
83100    29140    652    2017-04-16 12:16:00    2017-04-16 12:16:00
83101    29140    855    2017-04-16 12:22:00    2017-04-16 12:22:00
83102    29140    806    2017-04-16 03:22:00    2017-04-16 03:22:00
83103    29141    557    2017-04-16 03:28:00    2017-04-16 03:28:00
83104    29141    503    2017-04-16 02:09:00    2017-04-16 02:09:00
83105    29141    669    2017-04-16 06:32:00    2017-04-16 06:32:00
83106    29141    594    2017-04-16 11:44:00    2017-04-16 11:44:00
83107    29141    513    2017-04-16 20:01:00    2017-04-16 20:01:00
83108    29142    955    2017-04-16 14:09:00    2017-04-16 14:09:00
83109    29142    753    2017-04-16 06:37:00    2017-04-16 06:37:00
83110    29142    690    2017-04-16 22:26:00    2017-04-16 22:26:00
83111    29142    576    2017-04-16 20:28:00    2017-04-16 20:28:00
83112    29142    881    2017-04-16 16:55:00    2017-04-16 16:55:00
83113    29143    552    2017-04-16 09:05:00    2017-04-16 09:05:00
83114    29143    954    2017-04-16 18:13:00    2017-04-16 18:13:00
83115    29143    558    2017-04-16 09:07:00    2017-04-16 09:07:00
83116    29143    662    2017-04-16 05:55:00    2017-04-16 05:55:00
83117    29143    759    2017-04-16 09:06:00    2017-04-16 09:06:00
83118    29144    655    2017-04-16 17:07:00    2017-04-16 17:07:00
83119    29144    955    2017-04-16 05:01:00    2017-04-16 05:01:00
83120    29144    525    2017-04-16 07:15:00    2017-04-16 07:15:00
83121    29144    789    2017-04-16 07:16:00    2017-04-16 07:16:00
83122    29144    784    2017-04-16 05:47:00    2017-04-16 05:47:00
83123    29145    811    2017-04-16 23:54:00    2017-04-16 23:54:00
83124    29145    468    2017-04-16 18:48:00    2017-04-16 18:48:00
83125    29145    868    2017-04-16 14:19:00    2017-04-16 14:19:00
83126    29145    466    2017-04-16 14:35:00    2017-04-16 14:35:00
83127    29145    955    2017-04-16 22:22:00    2017-04-16 22:22:00
83128    29146    489    2017-04-16 16:28:00    2017-04-16 16:28:00
83129    29146    549    2017-04-16 08:30:00    2017-04-16 08:30:00
83130    29146    834    2017-04-16 09:00:00    2017-04-16 09:00:00
83131    29146    916    2017-04-16 08:44:00    2017-04-16 08:44:00
83132    29146    896    2017-04-16 18:26:00    2017-04-16 18:26:00
83133    29147    672    2017-04-16 10:36:00    2017-04-16 10:36:00
83134    29147    934    2017-04-16 06:12:00    2017-04-16 06:12:00
83135    29147    665    2017-04-16 07:32:00    2017-04-16 07:32:00
83136    29147    540    2017-04-16 20:28:00    2017-04-16 20:28:00
83137    29147    782    2017-04-16 07:04:00    2017-04-16 07:04:00
83138    29148    912    2017-04-16 14:11:00    2017-04-16 14:11:00
83139    29148    787    2017-04-16 16:33:00    2017-04-16 16:33:00
83140    29148    769    2017-04-16 04:50:00    2017-04-16 04:50:00
83141    29148    611    2017-04-16 22:08:00    2017-04-16 22:08:00
83142    29148    882    2017-04-16 02:44:00    2017-04-16 02:44:00
83143    29149    942    2017-04-16 14:12:00    2017-04-16 14:12:00
83144    29149    656    2017-04-16 13:00:00    2017-04-16 13:00:00
83145    29149    559    2017-04-16 05:04:00    2017-04-16 05:04:00
83146    29149    961    2017-04-16 02:15:00    2017-04-16 02:15:00
83147    29149    890    2017-04-16 01:33:00    2017-04-16 01:33:00
83148    29150    560    2017-04-16 15:05:00    2017-04-16 15:05:00
83149    29150    824    2017-04-16 12:30:00    2017-04-16 12:30:00
83150    29150    598    2017-04-16 18:25:00    2017-04-16 18:25:00
83151    29150    850    2017-04-16 20:49:00    2017-04-16 20:49:00
83152    29150    884    2017-04-16 02:11:00    2017-04-16 02:11:00
83153    29151    865    2017-04-16 13:19:00    2017-04-16 13:19:00
83154    29151    800    2017-04-16 14:46:00    2017-04-16 14:46:00
83155    29151    798    2017-04-16 11:04:00    2017-04-16 11:04:00
83156    29151    944    2017-04-16 23:37:00    2017-04-16 23:37:00
83157    29151    626    2017-04-16 01:49:00    2017-04-16 01:49:00
83158    29152    539    2017-04-16 08:15:00    2017-04-16 08:15:00
83159    29152    911    2017-04-16 15:02:00    2017-04-16 15:02:00
83160    29152    794    2017-04-16 19:52:00    2017-04-16 19:52:00
83161    29152    621    2017-04-16 10:05:00    2017-04-16 10:05:00
83162    29152    496    2017-04-16 01:15:00    2017-04-16 01:15:00
83163    29153    771    2017-04-16 07:10:00    2017-04-16 07:10:00
83164    29153    782    2017-04-16 20:12:00    2017-04-16 20:12:00
83165    29153    760    2017-04-16 04:54:00    2017-04-16 04:54:00
83166    29153    846    2017-04-16 06:44:00    2017-04-16 06:44:00
83167    29153    861    2017-04-16 01:13:00    2017-04-16 01:13:00
83168    29154    572    2017-04-16 23:18:00    2017-04-16 23:18:00
83169    29154    914    2017-04-16 02:14:00    2017-04-16 02:14:00
83170    29154    813    2017-04-16 07:27:00    2017-04-16 07:27:00
83171    29154    770    2017-04-16 01:51:00    2017-04-16 01:51:00
83172    29154    564    2017-04-16 01:20:00    2017-04-16 01:20:00
83173    29155    920    2017-04-16 01:40:00    2017-04-16 01:40:00
83174    29155    660    2017-04-16 03:41:00    2017-04-16 03:41:00
83175    29155    828    2017-04-16 10:26:00    2017-04-16 10:26:00
83176    29155    859    2017-04-16 11:33:00    2017-04-16 11:33:00
83177    29155    843    2017-04-16 13:58:00    2017-04-16 13:58:00
83178    29156    776    2017-04-16 03:55:00    2017-04-16 03:55:00
83179    29156    910    2017-04-16 22:13:00    2017-04-16 22:13:00
83180    29156    702    2017-04-16 23:13:00    2017-04-16 23:13:00
83181    29156    602    2017-04-16 08:43:00    2017-04-16 08:43:00
83182    29156    502    2017-04-16 05:14:00    2017-04-16 05:14:00
83183    29157    782    2017-04-16 21:35:00    2017-04-16 21:35:00
83184    29157    689    2017-04-16 07:32:00    2017-04-16 07:32:00
83185    29157    630    2017-04-16 09:31:00    2017-04-16 09:31:00
83186    29157    947    2017-04-16 06:28:00    2017-04-16 06:28:00
83187    29157    780    2017-04-16 16:22:00    2017-04-16 16:22:00
83188    29158    855    2017-04-17 07:23:00    2017-04-17 07:23:00
83189    29158    817    2017-04-17 21:48:00    2017-04-17 21:48:00
83190    29158    912    2017-04-17 14:46:00    2017-04-17 14:46:00
83191    29158    666    2017-04-17 10:15:00    2017-04-17 10:15:00
83192    29158    760    2017-04-17 02:10:00    2017-04-17 02:10:00
83193    29159    845    2017-04-17 20:23:00    2017-04-17 20:23:00
83194    29159    874    2017-04-17 02:07:00    2017-04-17 02:07:00
83195    29159    835    2017-04-17 18:50:00    2017-04-17 18:50:00
83196    29159    858    2017-04-17 02:51:00    2017-04-17 02:51:00
83197    29159    759    2017-04-17 13:24:00    2017-04-17 13:24:00
83198    29160    603    2017-04-17 13:06:00    2017-04-17 13:06:00
83199    29160    903    2017-04-17 19:32:00    2017-04-17 19:32:00
83200    29160    641    2017-04-17 10:56:00    2017-04-17 10:56:00
83201    29160    749    2017-04-17 23:18:00    2017-04-17 23:18:00
83202    29160    719    2017-04-17 08:02:00    2017-04-17 08:02:00
83203    29161    846    2017-04-17 10:49:00    2017-04-17 10:49:00
83204    29161    794    2017-04-17 17:17:00    2017-04-17 17:17:00
83205    29161    713    2017-04-17 22:43:00    2017-04-17 22:43:00
83206    29161    879    2017-04-17 21:09:00    2017-04-17 21:09:00
83207    29161    758    2017-04-17 23:50:00    2017-04-17 23:50:00
83208    29162    646    2017-04-17 22:19:00    2017-04-17 22:19:00
83209    29162    728    2017-04-17 23:42:00    2017-04-17 23:42:00
83210    29162    658    2017-04-17 10:39:00    2017-04-17 10:39:00
83211    29162    524    2017-04-17 04:13:00    2017-04-17 04:13:00
83212    29162    835    2017-04-17 06:38:00    2017-04-17 06:38:00
83213    29163    809    2017-04-17 08:08:00    2017-04-17 08:08:00
83214    29163    761    2017-04-17 14:38:00    2017-04-17 14:38:00
83215    29163    812    2017-04-17 05:56:00    2017-04-17 05:56:00
83216    29163    905    2017-04-17 17:21:00    2017-04-17 17:21:00
83217    29163    816    2017-04-17 09:25:00    2017-04-17 09:25:00
83218    29164    765    2017-04-17 12:50:00    2017-04-17 12:50:00
83219    29164    647    2017-04-17 10:57:00    2017-04-17 10:57:00
83220    29164    751    2017-04-17 06:50:00    2017-04-17 06:50:00
83221    29164    825    2017-04-17 11:00:00    2017-04-17 11:00:00
83222    29164    535    2017-04-17 20:42:00    2017-04-17 20:42:00
83223    29165    902    2017-04-17 06:53:00    2017-04-17 06:53:00
83224    29165    741    2017-04-17 22:00:00    2017-04-17 22:00:00
83225    29165    629    2017-04-17 04:58:00    2017-04-17 04:58:00
83226    29165    852    2017-04-17 05:50:00    2017-04-17 05:50:00
83227    29165    607    2017-04-17 17:32:00    2017-04-17 17:32:00
83228    29166    786    2017-04-17 04:37:00    2017-04-17 04:37:00
83229    29166    929    2017-04-17 02:50:00    2017-04-17 02:50:00
83230    29166    922    2017-04-17 20:07:00    2017-04-17 20:07:00
83231    29166    805    2017-04-17 20:21:00    2017-04-17 20:21:00
83232    29166    493    2017-04-17 01:36:00    2017-04-17 01:36:00
83233    29167    527    2017-04-17 20:54:00    2017-04-17 20:54:00
83234    29167    475    2017-04-17 12:04:00    2017-04-17 12:04:00
83235    29167    916    2017-04-17 08:56:00    2017-04-17 08:56:00
83236    29167    590    2017-04-17 19:39:00    2017-04-17 19:39:00
83237    29167    694    2017-04-17 07:50:00    2017-04-17 07:50:00
83238    29168    926    2017-04-17 18:55:00    2017-04-17 18:55:00
83239    29168    756    2017-04-17 08:42:00    2017-04-17 08:42:00
83240    29168    632    2017-04-17 07:00:00    2017-04-17 07:00:00
83241    29168    562    2017-04-17 19:10:00    2017-04-17 19:10:00
83242    29168    620    2017-04-17 01:43:00    2017-04-17 01:43:00
83243    29169    477    2017-04-17 05:25:00    2017-04-17 05:25:00
83244    29169    707    2017-04-17 22:06:00    2017-04-17 22:06:00
83245    29169    638    2017-04-17 22:00:00    2017-04-17 22:00:00
83246    29169    904    2017-04-17 20:40:00    2017-04-17 20:40:00
83247    29169    706    2017-04-17 16:29:00    2017-04-17 16:29:00
83248    29170    957    2017-04-17 13:45:00    2017-04-17 13:45:00
83249    29170    947    2017-04-17 12:40:00    2017-04-17 12:40:00
83250    29170    554    2017-04-17 02:50:00    2017-04-17 02:50:00
83251    29170    751    2017-04-17 01:09:00    2017-04-17 01:09:00
83252    29170    689    2017-04-17 06:14:00    2017-04-17 06:14:00
83253    29171    625    2017-04-17 11:14:00    2017-04-17 11:14:00
83254    29171    757    2017-04-17 07:21:00    2017-04-17 07:21:00
83255    29171    758    2017-04-17 18:52:00    2017-04-17 18:52:00
83256    29171    515    2017-04-17 01:45:00    2017-04-17 01:45:00
83257    29171    663    2017-04-17 12:56:00    2017-04-17 12:56:00
83258    29172    521    2017-04-17 23:55:00    2017-04-17 23:55:00
83259    29172    707    2017-04-17 04:03:00    2017-04-17 04:03:00
83260    29172    739    2017-04-17 07:13:00    2017-04-17 07:13:00
83261    29172    791    2017-04-17 08:00:00    2017-04-17 08:00:00
83262    29172    534    2017-04-17 07:03:00    2017-04-17 07:03:00
83263    29173    482    2017-04-17 09:44:00    2017-04-17 09:44:00
83264    29173    760    2017-04-17 16:53:00    2017-04-17 16:53:00
83265    29173    789    2017-04-17 19:46:00    2017-04-17 19:46:00
83266    29173    853    2017-04-17 21:34:00    2017-04-17 21:34:00
83267    29173    518    2017-04-17 15:37:00    2017-04-17 15:37:00
83268    29174    657    2017-04-17 12:06:00    2017-04-17 12:06:00
83269    29174    482    2017-04-17 16:08:00    2017-04-17 16:08:00
83270    29174    527    2017-04-17 21:20:00    2017-04-17 21:20:00
83271    29174    696    2017-04-17 05:27:00    2017-04-17 05:27:00
83272    29174    864    2017-04-17 19:06:00    2017-04-17 19:06:00
83273    29175    680    2017-04-17 01:37:00    2017-04-17 01:37:00
83274    29175    801    2017-04-17 21:41:00    2017-04-17 21:41:00
83275    29175    512    2017-04-17 06:57:00    2017-04-17 06:57:00
83276    29175    539    2017-04-17 07:49:00    2017-04-17 07:49:00
83277    29175    846    2017-04-17 01:01:00    2017-04-17 01:01:00
83278    29176    588    2017-04-17 05:46:00    2017-04-17 05:46:00
83279    29176    713    2017-04-17 19:01:00    2017-04-17 19:01:00
83280    29176    933    2017-04-17 19:26:00    2017-04-17 19:26:00
83281    29176    482    2017-04-17 20:42:00    2017-04-17 20:42:00
83282    29176    562    2017-04-17 19:08:00    2017-04-17 19:08:00
83283    29177    762    2017-04-17 05:31:00    2017-04-17 05:31:00
83284    29177    774    2017-04-17 19:12:00    2017-04-17 19:12:00
83285    29177    710    2017-04-17 02:00:00    2017-04-17 02:00:00
83286    29177    902    2017-04-17 12:07:00    2017-04-17 12:07:00
83287    29177    563    2017-04-17 03:04:00    2017-04-17 03:04:00
83288    29178    731    2017-04-17 17:47:00    2017-04-17 17:47:00
83289    29178    831    2017-04-17 22:23:00    2017-04-17 22:23:00
83290    29178    645    2017-04-17 04:41:00    2017-04-17 04:41:00
83291    29178    959    2017-04-17 16:42:00    2017-04-17 16:42:00
83292    29178    688    2017-04-17 18:35:00    2017-04-17 18:35:00
83293    29179    926    2017-04-17 02:35:00    2017-04-17 02:35:00
83294    29179    823    2017-04-17 09:57:00    2017-04-17 09:57:00
83295    29179    906    2017-04-18 00:00:00    2017-04-18 00:00:00
83296    29179    562    2017-04-17 12:28:00    2017-04-17 12:28:00
83297    29179    486    2017-04-17 15:39:00    2017-04-17 15:39:00
83298    29180    819    2017-04-17 22:30:00    2017-04-17 22:30:00
83299    29180    688    2017-04-17 14:57:00    2017-04-17 14:57:00
83300    29180    835    2017-04-17 19:41:00    2017-04-17 19:41:00
83301    29180    493    2017-04-17 07:14:00    2017-04-17 07:14:00
83302    29180    876    2017-04-17 15:05:00    2017-04-17 15:05:00
83303    29181    910    2017-04-17 11:16:00    2017-04-17 11:16:00
83304    29181    555    2017-04-17 19:40:00    2017-04-17 19:40:00
83305    29181    799    2017-04-17 09:11:00    2017-04-17 09:11:00
83306    29181    911    2017-04-17 12:40:00    2017-04-17 12:40:00
83307    29181    958    2017-04-17 11:15:00    2017-04-17 11:15:00
83308    29182    868    2017-04-17 23:17:00    2017-04-17 23:17:00
83309    29182    772    2017-04-17 18:03:00    2017-04-17 18:03:00
83310    29182    743    2017-04-17 03:51:00    2017-04-17 03:51:00
83311    29182    589    2017-04-17 13:03:00    2017-04-17 13:03:00
83312    29182    550    2017-04-17 08:35:00    2017-04-17 08:35:00
83313    29183    548    2017-04-17 22:09:00    2017-04-17 22:09:00
83314    29183    658    2017-04-17 19:14:00    2017-04-17 19:14:00
83315    29183    593    2017-04-17 16:54:00    2017-04-17 16:54:00
83316    29183    769    2017-04-17 14:36:00    2017-04-17 14:36:00
83317    29183    874    2017-04-17 03:40:00    2017-04-17 03:40:00
83318    29184    720    2017-04-17 12:53:00    2017-04-17 12:53:00
83319    29184    656    2017-04-17 16:05:00    2017-04-17 16:05:00
83320    29184    631    2017-04-17 10:09:00    2017-04-17 10:09:00
83321    29184    470    2017-04-17 15:00:00    2017-04-17 15:00:00
83322    29184    853    2017-04-17 11:15:00    2017-04-17 11:15:00
83323    29185    522    2017-04-17 03:17:00    2017-04-17 03:17:00
83324    29185    575    2017-04-17 22:03:00    2017-04-17 22:03:00
83325    29185    510    2017-04-17 11:07:00    2017-04-17 11:07:00
83326    29185    910    2017-04-17 02:12:00    2017-04-17 02:12:00
83327    29185    644    2017-04-17 21:13:00    2017-04-17 21:13:00
83328    29186    956    2017-04-17 20:41:00    2017-04-17 20:41:00
83329    29186    711    2017-04-17 18:09:00    2017-04-17 18:09:00
83330    29186    630    2017-04-17 02:55:00    2017-04-17 02:55:00
83331    29186    789    2017-04-17 05:57:00    2017-04-17 05:57:00
83332    29186    591    2017-04-17 18:45:00    2017-04-17 18:45:00
83333    29187    597    2017-04-17 21:07:00    2017-04-17 21:07:00
83334    29187    519    2017-04-17 05:39:00    2017-04-17 05:39:00
83335    29187    518    2017-04-17 22:49:00    2017-04-17 22:49:00
83336    29187    899    2017-04-17 03:30:00    2017-04-17 03:30:00
83337    29187    617    2017-04-17 18:29:00    2017-04-17 18:29:00
83338    29188    770    2017-04-17 14:31:00    2017-04-17 14:31:00
83339    29188    655    2017-04-17 09:44:00    2017-04-17 09:44:00
83340    29188    627    2017-04-17 18:54:00    2017-04-17 18:54:00
83341    29188    928    2017-04-17 20:16:00    2017-04-17 20:16:00
83342    29188    564    2017-04-17 06:10:00    2017-04-17 06:10:00
83343    29189    756    2017-04-17 06:04:00    2017-04-17 06:04:00
83344    29189    955    2017-04-17 14:15:00    2017-04-17 14:15:00
83345    29189    865    2017-04-17 23:59:00    2017-04-17 23:59:00
83346    29189    858    2017-04-17 07:36:00    2017-04-17 07:36:00
83347    29189    708    2017-04-17 01:11:00    2017-04-17 01:11:00
83348    29190    814    2017-04-17 05:07:00    2017-04-17 05:07:00
83349    29190    724    2017-04-17 04:17:00    2017-04-17 04:17:00
83350    29190    946    2017-04-17 15:14:00    2017-04-17 15:14:00
83351    29190    581    2017-04-17 10:35:00    2017-04-17 10:35:00
83352    29190    712    2017-04-17 05:01:00    2017-04-17 05:01:00
83353    29191    796    2017-04-17 05:09:00    2017-04-17 05:09:00
83354    29191    853    2017-04-17 22:54:00    2017-04-17 22:54:00
83355    29191    479    2017-04-17 16:01:00    2017-04-17 16:01:00
83356    29191    559    2017-04-17 14:27:00    2017-04-17 14:27:00
83357    29191    782    2017-04-17 03:42:00    2017-04-17 03:42:00
83358    29192    921    2017-04-17 16:41:00    2017-04-17 16:41:00
83359    29192    925    2017-04-17 23:16:00    2017-04-17 23:16:00
83360    29192    511    2017-04-17 21:45:00    2017-04-17 21:45:00
83361    29192    493    2017-04-17 07:24:00    2017-04-17 07:24:00
83362    29192    586    2017-04-17 09:54:00    2017-04-17 09:54:00
83363    29193    504    2017-04-17 06:38:00    2017-04-17 06:38:00
83364    29193    590    2017-04-17 01:27:00    2017-04-17 01:27:00
83365    29193    912    2017-04-17 05:15:00    2017-04-17 05:15:00
83366    29193    576    2017-04-17 01:56:00    2017-04-17 01:56:00
83367    29193    569    2017-04-17 12:58:00    2017-04-17 12:58:00
83368    29194    654    2017-04-17 16:40:00    2017-04-17 16:40:00
83369    29194    805    2017-04-17 01:49:00    2017-04-17 01:49:00
83370    29194    779    2017-04-17 19:55:00    2017-04-17 19:55:00
83371    29194    667    2017-04-17 13:04:00    2017-04-17 13:04:00
83372    29194    827    2017-04-17 01:24:00    2017-04-17 01:24:00
83373    29195    680    2017-04-17 20:37:00    2017-04-17 20:37:00
83374    29195    667    2017-04-17 21:57:00    2017-04-17 21:57:00
83375    29195    707    2017-04-17 13:51:00    2017-04-17 13:51:00
83376    29195    471    2017-04-17 03:30:00    2017-04-17 03:30:00
83377    29195    467    2017-04-17 22:21:00    2017-04-17 22:21:00
83378    29196    510    2017-04-17 02:30:00    2017-04-17 02:30:00
83379    29196    943    2017-04-17 22:20:00    2017-04-17 22:20:00
83380    29196    797    2017-04-17 06:53:00    2017-04-17 06:53:00
83381    29196    788    2017-04-17 14:12:00    2017-04-17 14:12:00
83382    29196    757    2017-04-17 18:42:00    2017-04-17 18:42:00
83383    29197    468    2017-04-17 18:57:00    2017-04-17 18:57:00
83384    29197    772    2017-04-17 09:46:00    2017-04-17 09:46:00
83385    29197    890    2017-04-17 03:14:00    2017-04-17 03:14:00
83386    29197    528    2017-04-17 06:40:00    2017-04-17 06:40:00
83387    29197    605    2017-04-17 10:40:00    2017-04-17 10:40:00
83388    29198    754    2017-04-17 10:32:00    2017-04-17 10:32:00
83389    29198    730    2017-04-17 05:04:00    2017-04-17 05:04:00
83390    29198    928    2017-04-17 13:17:00    2017-04-17 13:17:00
83391    29198    713    2017-04-17 22:50:00    2017-04-17 22:50:00
83392    29198    815    2017-04-17 06:36:00    2017-04-17 06:36:00
83393    29199    961    2017-04-17 13:57:00    2017-04-17 13:57:00
83394    29199    702    2017-04-17 01:43:00    2017-04-17 01:43:00
83395    29199    606    2017-04-17 16:23:00    2017-04-17 16:23:00
83396    29199    519    2017-04-17 10:22:00    2017-04-17 10:22:00
83397    29199    537    2017-04-17 12:01:00    2017-04-17 12:01:00
83398    29200    510    2017-04-17 12:04:00    2017-04-17 12:04:00
83399    29200    488    2017-04-17 16:41:00    2017-04-17 16:41:00
83400    29200    920    2017-04-17 10:28:00    2017-04-17 10:28:00
83401    29200    897    2017-04-17 09:22:00    2017-04-17 09:22:00
83402    29200    652    2017-04-17 19:40:00    2017-04-17 19:40:00
83403    29201    489    2017-04-17 16:46:00    2017-04-17 16:46:00
83404    29201    798    2017-04-17 11:30:00    2017-04-17 11:30:00
83405    29201    516    2017-04-17 14:57:00    2017-04-17 14:57:00
83406    29201    467    2017-04-17 23:41:00    2017-04-17 23:41:00
83407    29201    530    2017-04-17 12:56:00    2017-04-17 12:56:00
83408    29202    505    2017-04-17 10:34:00    2017-04-17 10:34:00
83409    29202    960    2017-04-17 14:24:00    2017-04-17 14:24:00
83410    29202    813    2017-04-17 17:00:00    2017-04-17 17:00:00
83411    29202    601    2017-04-17 05:19:00    2017-04-17 05:19:00
83412    29202    848    2017-04-17 07:10:00    2017-04-17 07:10:00
83413    29203    829    2017-04-17 18:39:00    2017-04-17 18:39:00
83414    29203    651    2017-04-17 16:33:00    2017-04-17 16:33:00
83415    29203    851    2017-04-17 03:00:00    2017-04-17 03:00:00
83416    29203    686    2017-04-17 06:51:00    2017-04-17 06:51:00
83417    29203    759    2017-04-17 20:46:00    2017-04-17 20:46:00
83418    29204    659    2017-04-17 16:02:00    2017-04-17 16:02:00
83419    29204    855    2017-04-17 20:08:00    2017-04-17 20:08:00
83420    29204    620    2017-04-17 16:22:00    2017-04-17 16:22:00
83421    29204    686    2017-04-17 02:00:00    2017-04-17 02:00:00
83422    29204    740    2017-04-17 23:50:00    2017-04-17 23:50:00
83423    29205    838    2017-04-17 20:32:00    2017-04-17 20:32:00
83424    29205    617    2017-04-17 01:48:00    2017-04-17 01:48:00
83425    29205    618    2017-04-17 23:54:00    2017-04-17 23:54:00
83426    29205    878    2017-04-17 18:37:00    2017-04-17 18:37:00
83427    29205    526    2017-04-17 18:54:00    2017-04-17 18:54:00
83428    29206    600    2017-04-18 10:54:00    2017-04-18 10:54:00
83429    29206    844    2017-04-18 10:41:00    2017-04-18 10:41:00
83430    29206    502    2017-04-18 04:30:00    2017-04-18 04:30:00
83431    29206    560    2017-04-18 16:01:00    2017-04-18 16:01:00
83432    29206    674    2017-04-18 10:04:00    2017-04-18 10:04:00
83433    29207    550    2017-04-18 15:03:00    2017-04-18 15:03:00
83434    29207    819    2017-04-18 01:41:00    2017-04-18 01:41:00
83435    29207    560    2017-04-18 19:44:00    2017-04-18 19:44:00
83436    29207    735    2017-04-18 13:54:00    2017-04-18 13:54:00
83437    29207    873    2017-04-18 08:27:00    2017-04-18 08:27:00
83438    29208    630    2017-04-18 11:50:00    2017-04-18 11:50:00
83439    29208    942    2017-04-18 17:32:00    2017-04-18 17:32:00
83440    29208    776    2017-04-18 22:54:00    2017-04-18 22:54:00
83441    29208    725    2017-04-18 14:13:00    2017-04-18 14:13:00
83442    29208    483    2017-04-18 13:08:00    2017-04-18 13:08:00
83443    29209    523    2017-04-18 16:20:00    2017-04-18 16:20:00
83444    29209    900    2017-04-18 18:12:00    2017-04-18 18:12:00
83445    29209    615    2017-04-18 02:14:00    2017-04-18 02:14:00
83446    29209    865    2017-04-18 10:22:00    2017-04-18 10:22:00
83447    29209    775    2017-04-18 12:55:00    2017-04-18 12:55:00
83448    29210    687    2017-04-18 18:16:00    2017-04-18 18:16:00
83449    29210    544    2017-04-18 22:25:00    2017-04-18 22:25:00
83450    29210    543    2017-04-18 23:44:00    2017-04-18 23:44:00
83451    29210    757    2017-04-18 05:11:00    2017-04-18 05:11:00
83452    29210    789    2017-04-18 06:19:00    2017-04-18 06:19:00
83453    29211    958    2017-04-18 20:06:00    2017-04-18 20:06:00
83454    29211    656    2017-04-18 02:24:00    2017-04-18 02:24:00
83455    29211    584    2017-04-18 21:37:00    2017-04-18 21:37:00
83456    29211    622    2017-04-18 15:41:00    2017-04-18 15:41:00
83457    29211    671    2017-04-18 12:49:00    2017-04-18 12:49:00
83458    29212    622    2017-04-18 11:13:00    2017-04-18 11:13:00
83459    29212    960    2017-04-18 19:32:00    2017-04-18 19:32:00
83460    29212    914    2017-04-18 13:00:00    2017-04-18 13:00:00
83461    29212    885    2017-04-18 22:34:00    2017-04-18 22:34:00
83462    29212    619    2017-04-18 13:08:00    2017-04-18 13:08:00
83463    29213    906    2017-04-18 22:57:00    2017-04-18 22:57:00
83464    29213    480    2017-04-18 12:57:00    2017-04-18 12:57:00
83465    29213    719    2017-04-18 18:32:00    2017-04-18 18:32:00
83466    29213    517    2017-04-18 05:13:00    2017-04-18 05:13:00
83467    29213    918    2017-04-18 19:38:00    2017-04-18 19:38:00
83468    29214    599    2017-04-18 04:23:00    2017-04-18 04:23:00
83469    29214    683    2017-04-18 11:13:00    2017-04-18 11:13:00
83470    29214    901    2017-04-18 06:57:00    2017-04-18 06:57:00
83471    29214    658    2017-04-18 05:58:00    2017-04-18 05:58:00
83472    29214    753    2017-04-18 11:05:00    2017-04-18 11:05:00
83473    29215    613    2017-04-18 19:44:00    2017-04-18 19:44:00
83474    29215    841    2017-04-18 07:29:00    2017-04-18 07:29:00
83475    29215    473    2017-04-18 17:00:00    2017-04-18 17:00:00
83476    29215    747    2017-04-18 17:01:00    2017-04-18 17:01:00
83477    29215    821    2017-04-18 08:53:00    2017-04-18 08:53:00
83478    29216    560    2017-04-18 17:24:00    2017-04-18 17:24:00
83479    29216    565    2017-04-18 02:22:00    2017-04-18 02:22:00
83480    29216    592    2017-04-18 02:03:00    2017-04-18 02:03:00
83481    29216    593    2017-04-18 12:33:00    2017-04-18 12:33:00
83482    29216    497    2017-04-18 04:51:00    2017-04-18 04:51:00
83483    29217    909    2017-04-18 22:02:00    2017-04-18 22:02:00
83484    29217    681    2017-04-18 09:51:00    2017-04-18 09:51:00
83485    29217    611    2017-04-18 19:38:00    2017-04-18 19:38:00
83486    29217    862    2017-04-18 19:35:00    2017-04-18 19:35:00
83487    29217    897    2017-04-18 01:13:00    2017-04-18 01:13:00
83488    29218    891    2017-04-18 09:16:00    2017-04-18 09:16:00
83489    29218    853    2017-04-18 04:30:00    2017-04-18 04:30:00
83490    29218    649    2017-04-18 06:16:00    2017-04-18 06:16:00
83491    29218    862    2017-04-18 18:53:00    2017-04-18 18:53:00
83492    29218    924    2017-04-18 11:39:00    2017-04-18 11:39:00
83493    29219    558    2017-04-18 21:14:00    2017-04-18 21:14:00
83494    29219    490    2017-04-18 17:50:00    2017-04-18 17:50:00
83495    29219    944    2017-04-18 04:23:00    2017-04-18 04:23:00
83496    29219    906    2017-04-18 18:59:00    2017-04-18 18:59:00
83497    29219    522    2017-04-18 08:32:00    2017-04-18 08:32:00
83498    29220    723    2017-04-18 10:49:00    2017-04-18 10:49:00
83499    29220    887    2017-04-18 23:21:00    2017-04-18 23:21:00
83500    29220    469    2017-04-18 19:58:00    2017-04-18 19:58:00
83501    29220    578    2017-04-18 21:02:00    2017-04-18 21:02:00
83502    29220    904    2017-04-18 03:04:00    2017-04-18 03:04:00
83503    29221    737    2017-04-18 05:37:00    2017-04-18 05:37:00
83504    29221    869    2017-04-18 18:31:00    2017-04-18 18:31:00
83505    29221    600    2017-04-18 02:19:00    2017-04-18 02:19:00
83506    29221    518    2017-04-18 16:38:00    2017-04-18 16:38:00
83507    29221    907    2017-04-18 05:14:00    2017-04-18 05:14:00
83508    29222    839    2017-04-18 23:04:00    2017-04-18 23:04:00
83509    29222    709    2017-04-18 07:02:00    2017-04-18 07:02:00
83510    29222    536    2017-04-18 12:08:00    2017-04-18 12:08:00
83511    29222    559    2017-04-18 08:57:00    2017-04-18 08:57:00
83512    29222    490    2017-04-18 10:00:00    2017-04-18 10:00:00
83513    29223    529    2017-04-18 11:11:00    2017-04-18 11:11:00
83514    29223    849    2017-04-18 14:45:00    2017-04-18 14:45:00
83515    29223    943    2017-04-18 23:02:00    2017-04-18 23:02:00
83516    29223    548    2017-04-18 22:58:00    2017-04-18 22:58:00
83517    29223    499    2017-04-18 20:55:00    2017-04-18 20:55:00
83518    29224    881    2017-04-18 13:31:00    2017-04-18 13:31:00
83519    29224    512    2017-04-18 09:21:00    2017-04-18 09:21:00
83520    29224    885    2017-04-18 18:13:00    2017-04-18 18:13:00
83521    29224    803    2017-04-18 20:35:00    2017-04-18 20:35:00
83522    29224    794    2017-04-18 20:38:00    2017-04-18 20:38:00
83523    29225    652    2017-04-18 03:30:00    2017-04-18 03:30:00
83524    29225    857    2017-04-18 03:42:00    2017-04-18 03:42:00
83525    29225    857    2017-04-18 03:48:00    2017-04-18 03:48:00
83526    29225    699    2017-04-18 14:07:00    2017-04-18 14:07:00
83527    29225    595    2017-04-18 08:54:00    2017-04-18 08:54:00
83528    29226    835    2017-04-18 20:34:00    2017-04-18 20:34:00
83529    29226    734    2017-04-18 01:10:00    2017-04-18 01:10:00
83530    29226    526    2017-04-18 11:17:00    2017-04-18 11:17:00
83531    29226    603    2017-04-18 03:08:00    2017-04-18 03:08:00
83532    29226    609    2017-04-18 17:02:00    2017-04-18 17:02:00
83533    29227    657    2017-04-18 11:32:00    2017-04-18 11:32:00
83534    29227    873    2017-04-18 02:16:00    2017-04-18 02:16:00
83535    29227    524    2017-04-18 13:34:00    2017-04-18 13:34:00
83536    29227    945    2017-04-18 05:02:00    2017-04-18 05:02:00
83537    29227    478    2017-04-18 03:12:00    2017-04-18 03:12:00
83538    29228    935    2017-04-18 02:00:00    2017-04-18 02:00:00
83539    29228    469    2017-04-18 21:58:00    2017-04-18 21:58:00
83540    29228    639    2017-04-18 05:39:00    2017-04-18 05:39:00
83541    29228    580    2017-04-18 11:14:00    2017-04-18 11:14:00
83542    29228    504    2017-04-18 17:43:00    2017-04-18 17:43:00
83543    29229    755    2017-04-18 13:37:00    2017-04-18 13:37:00
83544    29229    639    2017-04-18 04:47:00    2017-04-18 04:47:00
83545    29229    583    2017-04-18 17:13:00    2017-04-18 17:13:00
83546    29229    625    2017-04-18 23:55:00    2017-04-18 23:55:00
83547    29229    485    2017-04-18 14:29:00    2017-04-18 14:29:00
83548    29230    699    2017-04-18 02:38:00    2017-04-18 02:38:00
83549    29230    564    2017-04-18 10:19:00    2017-04-18 10:19:00
83550    29230    633    2017-04-18 11:25:00    2017-04-18 11:25:00
83551    29230    751    2017-04-18 07:18:00    2017-04-18 07:18:00
83552    29230    614    2017-04-18 18:14:00    2017-04-18 18:14:00
83553    29231    540    2017-04-18 08:52:00    2017-04-18 08:52:00
83554    29231    944    2017-04-18 18:36:00    2017-04-18 18:36:00
83555    29231    808    2017-04-18 19:06:00    2017-04-18 19:06:00
83556    29231    817    2017-04-18 08:54:00    2017-04-18 08:54:00
83557    29231    476    2017-04-18 20:11:00    2017-04-18 20:11:00
83558    29232    952    2017-04-18 16:16:00    2017-04-18 16:16:00
83559    29232    504    2017-04-18 17:33:00    2017-04-18 17:33:00
83560    29232    937    2017-04-18 15:30:00    2017-04-18 15:30:00
83561    29232    703    2017-04-18 12:00:00    2017-04-18 12:00:00
83562    29232    905    2017-04-18 03:08:00    2017-04-18 03:08:00
83563    29233    918    2017-04-18 11:25:00    2017-04-18 11:25:00
83564    29233    904    2017-04-18 15:46:00    2017-04-18 15:46:00
83565    29233    896    2017-04-18 01:10:00    2017-04-18 01:10:00
83566    29233    646    2017-04-18 09:02:00    2017-04-18 09:02:00
83567    29233    786    2017-04-18 15:38:00    2017-04-18 15:38:00
83568    29234    626    2017-04-18 02:39:00    2017-04-18 02:39:00
83569    29234    741    2017-04-18 02:10:00    2017-04-18 02:10:00
83570    29234    795    2017-04-18 13:19:00    2017-04-18 13:19:00
83571    29234    726    2017-04-18 09:48:00    2017-04-18 09:48:00
83572    29234    680    2017-04-18 18:43:00    2017-04-18 18:43:00
83573    29235    814    2017-04-18 09:05:00    2017-04-18 09:05:00
83574    29235    774    2017-04-18 11:46:00    2017-04-18 11:46:00
83575    29235    898    2017-04-18 01:51:00    2017-04-18 01:51:00
83576    29235    849    2017-04-18 22:43:00    2017-04-18 22:43:00
83577    29235    811    2017-04-18 18:29:00    2017-04-18 18:29:00
83578    29236    616    2017-04-19 14:54:00    2017-04-19 14:54:00
83579    29236    601    2017-04-19 08:07:00    2017-04-19 08:07:00
83580    29236    510    2017-04-19 09:26:00    2017-04-19 09:26:00
83581    29236    774    2017-04-19 18:14:00    2017-04-19 18:14:00
83582    29236    932    2017-04-19 03:55:00    2017-04-19 03:55:00
83583    29237    794    2017-04-19 17:29:00    2017-04-19 17:29:00
83584    29237    670    2017-04-19 12:39:00    2017-04-19 12:39:00
83585    29237    876    2017-04-19 08:37:00    2017-04-19 08:37:00
83586    29237    670    2017-04-19 23:30:00    2017-04-19 23:30:00
83587    29237    959    2017-04-19 10:37:00    2017-04-19 10:37:00
83588    29238    714    2017-04-19 06:18:00    2017-04-19 06:18:00
83589    29238    712    2017-04-19 03:18:00    2017-04-19 03:18:00
83590    29238    562    2017-04-19 14:04:00    2017-04-19 14:04:00
83591    29238    498    2017-04-19 02:54:00    2017-04-19 02:54:00
83592    29238    894    2017-04-19 07:57:00    2017-04-19 07:57:00
83593    29239    557    2017-04-19 22:25:00    2017-04-19 22:25:00
83594    29239    476    2017-04-19 22:15:00    2017-04-19 22:15:00
83595    29239    774    2017-04-19 21:41:00    2017-04-19 21:41:00
83596    29239    788    2017-04-19 13:12:00    2017-04-19 13:12:00
83597    29239    721    2017-04-19 22:29:00    2017-04-19 22:29:00
83598    29240    553    2017-04-19 07:29:00    2017-04-19 07:29:00
83599    29240    527    2017-04-19 01:59:00    2017-04-19 01:59:00
83600    29240    960    2017-04-19 20:36:00    2017-04-19 20:36:00
83601    29240    681    2017-04-19 05:39:00    2017-04-19 05:39:00
83602    29240    518    2017-04-19 06:18:00    2017-04-19 06:18:00
83603    29241    941    2017-04-19 13:37:00    2017-04-19 13:37:00
83604    29241    487    2017-04-19 19:54:00    2017-04-19 19:54:00
83605    29241    562    2017-04-19 07:32:00    2017-04-19 07:32:00
83606    29241    530    2017-04-19 18:49:00    2017-04-19 18:49:00
83607    29241    584    2017-04-19 12:32:00    2017-04-19 12:32:00
83608    29242    860    2017-04-19 22:08:00    2017-04-19 22:08:00
83609    29242    465    2017-04-19 17:26:00    2017-04-19 17:26:00
83610    29242    731    2017-04-19 21:11:00    2017-04-19 21:11:00
83611    29242    596    2017-04-19 15:12:00    2017-04-19 15:12:00
83612    29242    745    2017-04-19 19:32:00    2017-04-19 19:32:00
83613    29243    485    2017-04-19 13:21:00    2017-04-19 13:21:00
83614    29243    898    2017-04-19 04:20:00    2017-04-19 04:20:00
83615    29243    714    2017-04-19 02:35:00    2017-04-19 02:35:00
83616    29243    849    2017-04-19 12:21:00    2017-04-19 12:21:00
83617    29243    666    2017-04-19 07:26:00    2017-04-19 07:26:00
83618    29244    687    2017-04-19 01:33:00    2017-04-19 01:33:00
83619    29244    879    2017-04-19 08:18:00    2017-04-19 08:18:00
83620    29244    949    2017-04-19 17:12:00    2017-04-19 17:12:00
83621    29244    937    2017-04-19 03:29:00    2017-04-19 03:29:00
83622    29244    919    2017-04-19 19:32:00    2017-04-19 19:32:00
83623    29245    946    2017-04-20 19:38:00    2017-04-20 19:38:00
83624    29245    525    2017-04-20 15:23:00    2017-04-20 15:23:00
83625    29245    611    2017-04-20 14:30:00    2017-04-20 14:30:00
83626    29245    816    2017-04-20 02:38:00    2017-04-20 02:38:00
83627    29245    697    2017-04-20 13:06:00    2017-04-20 13:06:00
83628    29246    630    2017-04-20 11:39:00    2017-04-20 11:39:00
83629    29246    867    2017-04-20 10:42:00    2017-04-20 10:42:00
83630    29246    625    2017-04-20 03:22:00    2017-04-20 03:22:00
83631    29246    793    2017-04-20 08:59:00    2017-04-20 08:59:00
83632    29246    498    2017-04-20 07:32:00    2017-04-20 07:32:00
83633    29247    472    2017-04-20 22:56:00    2017-04-20 22:56:00
83634    29247    741    2017-04-20 16:56:00    2017-04-20 16:56:00
83635    29247    864    2017-04-20 07:09:00    2017-04-20 07:09:00
83636    29247    521    2017-04-20 11:10:00    2017-04-20 11:10:00
83637    29247    666    2017-04-20 18:16:00    2017-04-20 18:16:00
83638    29248    737    2017-04-20 15:24:00    2017-04-20 15:24:00
83639    29248    615    2017-04-20 13:47:00    2017-04-20 13:47:00
83640    29248    563    2017-04-20 02:21:00    2017-04-20 02:21:00
83641    29248    757    2017-04-20 21:47:00    2017-04-20 21:47:00
83642    29248    679    2017-04-20 06:40:00    2017-04-20 06:40:00
83643    29249    632    2017-04-20 23:20:00    2017-04-20 23:20:00
83644    29249    482    2017-04-20 07:04:00    2017-04-20 07:04:00
83645    29249    828    2017-04-20 15:19:00    2017-04-20 15:19:00
83646    29249    889    2017-04-20 05:03:00    2017-04-20 05:03:00
83647    29249    938    2017-04-20 09:03:00    2017-04-20 09:03:00
83648    29250    927    2017-04-20 19:16:00    2017-04-20 19:16:00
83649    29250    929    2017-04-20 12:44:00    2017-04-20 12:44:00
83650    29250    527    2017-04-20 18:55:00    2017-04-20 18:55:00
83651    29250    585    2017-04-20 04:52:00    2017-04-20 04:52:00
83652    29250    486    2017-04-20 05:31:00    2017-04-20 05:31:00
83653    29251    773    2017-04-20 12:10:00    2017-04-20 12:10:00
83654    29251    504    2017-04-20 13:37:00    2017-04-20 13:37:00
83655    29251    685    2017-04-20 01:39:00    2017-04-20 01:39:00
83656    29251    720    2017-04-20 19:42:00    2017-04-20 19:42:00
83657    29251    745    2017-04-20 08:19:00    2017-04-20 08:19:00
83658    29252    759    2017-04-20 06:41:00    2017-04-20 06:41:00
83659    29252    517    2017-04-20 18:10:00    2017-04-20 18:10:00
83660    29252    796    2017-04-20 07:13:00    2017-04-20 07:13:00
83661    29252    820    2017-04-20 18:43:00    2017-04-20 18:43:00
83662    29252    472    2017-04-20 21:12:00    2017-04-20 21:12:00
83663    29253    887    2017-04-20 23:09:00    2017-04-20 23:09:00
83664    29253    583    2017-04-20 15:08:00    2017-04-20 15:08:00
83665    29253    466    2017-04-20 09:16:00    2017-04-20 09:16:00
83666    29253    929    2017-04-20 22:06:00    2017-04-20 22:06:00
83667    29253    766    2017-04-20 19:39:00    2017-04-20 19:39:00
83668    29254    536    2017-04-20 05:36:00    2017-04-20 05:36:00
83669    29254    649    2017-04-20 06:38:00    2017-04-20 06:38:00
83670    29254    597    2017-04-20 06:29:00    2017-04-20 06:29:00
83671    29254    939    2017-04-20 09:09:00    2017-04-20 09:09:00
83672    29254    740    2017-04-20 14:38:00    2017-04-20 14:38:00
83673    29255    864    2017-04-20 17:37:00    2017-04-20 17:37:00
83674    29255    646    2017-04-20 19:54:00    2017-04-20 19:54:00
83675    29255    738    2017-04-20 12:50:00    2017-04-20 12:50:00
83676    29255    499    2017-04-20 04:17:00    2017-04-20 04:17:00
83677    29255    601    2017-04-20 05:51:00    2017-04-20 05:51:00
83678    29256    663    2017-04-20 08:01:00    2017-04-20 08:01:00
83679    29256    545    2017-04-20 09:08:00    2017-04-20 09:08:00
83680    29256    916    2017-04-20 11:12:00    2017-04-20 11:12:00
83681    29256    598    2017-04-20 21:50:00    2017-04-20 21:50:00
83682    29256    914    2017-04-20 16:26:00    2017-04-20 16:26:00
83683    29257    774    2017-04-20 08:58:00    2017-04-20 08:58:00
83684    29257    689    2017-04-20 20:41:00    2017-04-20 20:41:00
83685    29257    635    2017-04-20 16:03:00    2017-04-20 16:03:00
83686    29257    563    2017-04-20 14:13:00    2017-04-20 14:13:00
83687    29257    520    2017-04-20 11:17:00    2017-04-20 11:17:00
83688    29258    926    2017-04-20 06:37:00    2017-04-20 06:37:00
83689    29258    556    2017-04-20 21:38:00    2017-04-20 21:38:00
83690    29258    729    2017-04-20 10:05:00    2017-04-20 10:05:00
83691    29258    840    2017-04-20 19:07:00    2017-04-20 19:07:00
83692    29258    513    2017-04-20 21:28:00    2017-04-20 21:28:00
83693    29259    950    2017-04-21 03:49:00    2017-04-21 03:49:00
83694    29259    477    2017-04-21 19:33:00    2017-04-21 19:33:00
83695    29259    713    2017-04-21 23:25:00    2017-04-21 23:25:00
83696    29259    676    2017-04-21 03:55:00    2017-04-21 03:55:00
83697    29259    500    2017-04-21 18:16:00    2017-04-21 18:16:00
83698    29260    806    2017-04-21 13:45:00    2017-04-21 13:45:00
83699    29260    831    2017-04-21 12:39:00    2017-04-21 12:39:00
83700    29260    805    2017-04-21 11:58:00    2017-04-21 11:58:00
83701    29260    945    2017-04-21 01:33:00    2017-04-21 01:33:00
83702    29260    645    2017-04-21 08:50:00    2017-04-21 08:50:00
83703    29261    567    2017-04-21 13:14:00    2017-04-21 13:14:00
83704    29261    960    2017-04-21 16:00:00    2017-04-21 16:00:00
83705    29261    531    2017-04-21 02:28:00    2017-04-21 02:28:00
83706    29261    874    2017-04-21 21:01:00    2017-04-21 21:01:00
83707    29261    832    2017-04-21 11:20:00    2017-04-21 11:20:00
83708    29262    806    2017-04-21 15:35:00    2017-04-21 15:35:00
83709    29262    655    2017-04-21 03:54:00    2017-04-21 03:54:00
83710    29262    465    2017-04-21 04:26:00    2017-04-21 04:26:00
83711    29262    701    2017-04-21 10:09:00    2017-04-21 10:09:00
83712    29262    744    2017-04-21 06:59:00    2017-04-21 06:59:00
83713    29263    724    2017-04-21 23:30:00    2017-04-21 23:30:00
83714    29263    482    2017-04-21 06:06:00    2017-04-21 06:06:00
83715    29263    917    2017-04-21 05:48:00    2017-04-21 05:48:00
83716    29263    653    2017-04-21 13:11:00    2017-04-21 13:11:00
83717    29263    529    2017-04-21 11:14:00    2017-04-21 11:14:00
83718    29264    596    2017-04-21 03:41:00    2017-04-21 03:41:00
83719    29264    941    2017-04-21 23:19:00    2017-04-21 23:19:00
83720    29264    578    2017-04-21 20:32:00    2017-04-21 20:32:00
83721    29264    743    2017-04-21 02:10:00    2017-04-21 02:10:00
83722    29264    605    2017-04-21 07:43:00    2017-04-21 07:43:00
83723    29265    710    2017-04-21 07:55:00    2017-04-21 07:55:00
83724    29265    960    2017-04-21 01:05:00    2017-04-21 01:05:00
83725    29265    873    2017-04-21 11:28:00    2017-04-21 11:28:00
83726    29265    956    2017-04-21 09:48:00    2017-04-21 09:48:00
83727    29265    784    2017-04-21 19:02:00    2017-04-21 19:02:00
83728    29266    756    2017-04-21 08:18:00    2017-04-21 08:18:00
83729    29266    944    2017-04-21 01:33:00    2017-04-21 01:33:00
83730    29266    473    2017-04-21 02:52:00    2017-04-21 02:52:00
83731    29266    529    2017-04-21 11:53:00    2017-04-21 11:53:00
83732    29266    931    2017-04-21 04:30:00    2017-04-21 04:30:00
83733    29267    860    2017-04-21 13:38:00    2017-04-21 13:38:00
83734    29267    918    2017-04-21 12:13:00    2017-04-21 12:13:00
83735    29267    657    2017-04-21 13:56:00    2017-04-21 13:56:00
83736    29267    543    2017-04-21 18:53:00    2017-04-21 18:53:00
83737    29267    781    2017-04-21 23:47:00    2017-04-21 23:47:00
83738    29268    560    2017-04-21 09:04:00    2017-04-21 09:04:00
83739    29268    644    2017-04-21 08:04:00    2017-04-21 08:04:00
83740    29268    601    2017-04-21 15:35:00    2017-04-21 15:35:00
83741    29268    562    2017-04-21 17:20:00    2017-04-21 17:20:00
83742    29268    518    2017-04-21 08:28:00    2017-04-21 08:28:00
83743    29269    571    2017-04-21 18:52:00    2017-04-21 18:52:00
83744    29269    524    2017-04-21 16:48:00    2017-04-21 16:48:00
83745    29269    772    2017-04-21 21:39:00    2017-04-21 21:39:00
83746    29269    651    2017-04-21 02:24:00    2017-04-21 02:24:00
83747    29269    477    2017-04-21 12:40:00    2017-04-21 12:40:00
83748    29270    831    2017-04-21 13:56:00    2017-04-21 13:56:00
83749    29270    875    2017-04-21 11:29:00    2017-04-21 11:29:00
83750    29270    874    2017-04-21 01:47:00    2017-04-21 01:47:00
83751    29270    901    2017-04-21 09:59:00    2017-04-21 09:59:00
83752    29270    924    2017-04-21 15:55:00    2017-04-21 15:55:00
83753    29271    476    2017-04-21 23:45:00    2017-04-21 23:45:00
83754    29271    620    2017-04-21 21:14:00    2017-04-21 21:14:00
83755    29271    698    2017-04-21 17:42:00    2017-04-21 17:42:00
83756    29271    486    2017-04-21 05:42:00    2017-04-21 05:42:00
83757    29271    843    2017-04-21 22:20:00    2017-04-21 22:20:00
83758    29272    710    2017-04-21 16:03:00    2017-04-21 16:03:00
83759    29272    582    2017-04-21 06:12:00    2017-04-21 06:12:00
83760    29272    540    2017-04-21 11:38:00    2017-04-21 11:38:00
83761    29272    712    2017-04-21 23:57:00    2017-04-21 23:57:00
83762    29272    901    2017-04-21 14:06:00    2017-04-21 14:06:00
83763    29273    589    2017-04-21 04:41:00    2017-04-21 04:41:00
83764    29273    810    2017-04-21 01:12:00    2017-04-21 01:12:00
83765    29273    563    2017-04-21 05:47:00    2017-04-21 05:47:00
83766    29273    853    2017-04-21 13:38:00    2017-04-21 13:38:00
83767    29273    525    2017-04-21 03:40:00    2017-04-21 03:40:00
83768    29274    527    2017-04-21 13:36:00    2017-04-21 13:36:00
83769    29274    662    2017-04-21 07:04:00    2017-04-21 07:04:00
83770    29274    630    2017-04-21 03:27:00    2017-04-21 03:27:00
83771    29274    861    2017-04-21 01:13:00    2017-04-21 01:13:00
83772    29274    954    2017-04-21 21:58:00    2017-04-21 21:58:00
83773    29275    915    2017-04-21 22:55:00    2017-04-21 22:55:00
83774    29275    625    2017-04-21 08:21:00    2017-04-21 08:21:00
83775    29275    476    2017-04-21 19:01:00    2017-04-21 19:01:00
83776    29275    902    2017-04-21 12:06:00    2017-04-21 12:06:00
83777    29275    523    2017-04-21 23:20:00    2017-04-21 23:20:00
83778    29276    765    2017-04-21 02:35:00    2017-04-21 02:35:00
83779    29276    577    2017-04-21 01:15:00    2017-04-21 01:15:00
83780    29276    620    2017-04-21 23:44:00    2017-04-21 23:44:00
83781    29276    832    2017-04-21 12:15:00    2017-04-21 12:15:00
83782    29276    573    2017-04-21 22:03:00    2017-04-21 22:03:00
83783    29277    735    2017-04-21 22:29:00    2017-04-21 22:29:00
83784    29277    568    2017-04-21 08:44:00    2017-04-21 08:44:00
83785    29277    500    2017-04-21 21:28:00    2017-04-21 21:28:00
83786    29277    919    2017-04-21 17:51:00    2017-04-21 17:51:00
83787    29277    955    2017-04-21 23:30:00    2017-04-21 23:30:00
83788    29278    730    2017-04-21 01:44:00    2017-04-21 01:44:00
83789    29278    490    2017-04-21 08:11:00    2017-04-21 08:11:00
83790    29278    613    2017-04-21 16:45:00    2017-04-21 16:45:00
83791    29278    733    2017-04-21 08:51:00    2017-04-21 08:51:00
83792    29278    615    2017-04-21 13:58:00    2017-04-21 13:58:00
83793    29279    689    2017-04-21 19:29:00    2017-04-21 19:29:00
83794    29279    521    2017-04-21 10:52:00    2017-04-21 10:52:00
83795    29279    540    2017-04-21 03:43:00    2017-04-21 03:43:00
83796    29279    716    2017-04-21 22:02:00    2017-04-21 22:02:00
83797    29279    693    2017-04-21 17:31:00    2017-04-21 17:31:00
83798    29280    552    2017-04-21 18:46:00    2017-04-21 18:46:00
83799    29280    836    2017-04-21 21:44:00    2017-04-21 21:44:00
83800    29280    474    2017-04-21 22:15:00    2017-04-21 22:15:00
83801    29280    672    2017-04-21 20:19:00    2017-04-21 20:19:00
83802    29280    933    2017-04-21 11:07:00    2017-04-21 11:07:00
83803    29281    679    2017-04-21 15:26:00    2017-04-21 15:26:00
83804    29281    835    2017-04-21 09:36:00    2017-04-21 09:36:00
83805    29281    551    2017-04-21 17:18:00    2017-04-21 17:18:00
83806    29281    662    2017-04-21 11:18:00    2017-04-21 11:18:00
83807    29281    917    2017-04-21 18:40:00    2017-04-21 18:40:00
83808    29282    757    2017-04-21 20:44:00    2017-04-21 20:44:00
83809    29282    653    2017-04-21 11:34:00    2017-04-21 11:34:00
83810    29282    946    2017-04-21 15:14:00    2017-04-21 15:14:00
83811    29282    482    2017-04-21 11:28:00    2017-04-21 11:28:00
83812    29282    509    2017-04-21 03:11:00    2017-04-21 03:11:00
83813    29283    794    2017-04-21 11:13:00    2017-04-21 11:13:00
83814    29283    689    2017-04-21 12:03:00    2017-04-21 12:03:00
83815    29283    854    2017-04-21 13:05:00    2017-04-21 13:05:00
83816    29283    714    2017-04-21 23:30:00    2017-04-21 23:30:00
83817    29283    619    2017-04-21 20:00:00    2017-04-21 20:00:00
83818    29284    675    2017-04-21 17:41:00    2017-04-21 17:41:00
83819    29284    667    2017-04-21 23:13:00    2017-04-21 23:13:00
83820    29284    623    2017-04-21 18:36:00    2017-04-21 18:36:00
83821    29284    581    2017-04-21 11:50:00    2017-04-21 11:50:00
83822    29284    496    2017-04-21 04:24:00    2017-04-21 04:24:00
83823    29285    843    2017-04-21 10:03:00    2017-04-21 10:03:00
83824    29285    839    2017-04-21 12:59:00    2017-04-21 12:59:00
83825    29285    569    2017-04-21 18:27:00    2017-04-21 18:27:00
83826    29285    605    2017-04-21 02:05:00    2017-04-21 02:05:00
83827    29285    612    2017-04-21 19:54:00    2017-04-21 19:54:00
83828    29286    656    2017-04-21 14:53:00    2017-04-21 14:53:00
83829    29286    943    2017-04-21 03:25:00    2017-04-21 03:25:00
83830    29286    780    2017-04-21 20:16:00    2017-04-21 20:16:00
83831    29286    829    2017-04-21 08:15:00    2017-04-21 08:15:00
83832    29286    898    2017-04-21 07:22:00    2017-04-21 07:22:00
83833    29287    798    2017-04-21 07:52:00    2017-04-21 07:52:00
83834    29287    752    2017-04-21 23:51:00    2017-04-21 23:51:00
83835    29287    726    2017-04-21 23:41:00    2017-04-21 23:41:00
83836    29287    673    2017-04-21 09:52:00    2017-04-21 09:52:00
83837    29287    664    2017-04-21 01:30:00    2017-04-21 01:30:00
83838    29288    700    2017-04-21 20:19:00    2017-04-21 20:19:00
83839    29288    544    2017-04-21 09:51:00    2017-04-21 09:51:00
83840    29288    511    2017-04-21 07:12:00    2017-04-21 07:12:00
83841    29288    597    2017-04-21 15:30:00    2017-04-21 15:30:00
83842    29288    802    2017-04-21 21:23:00    2017-04-21 21:23:00
83843    29289    520    2017-04-21 17:56:00    2017-04-21 17:56:00
83844    29289    495    2017-04-21 21:04:00    2017-04-21 21:04:00
83845    29289    518    2017-04-21 19:33:00    2017-04-21 19:33:00
83846    29289    554    2017-04-21 22:21:00    2017-04-21 22:21:00
83847    29289    926    2017-04-21 13:27:00    2017-04-21 13:27:00
83848    29290    958    2017-04-21 11:21:00    2017-04-21 11:21:00
83849    29290    684    2017-04-21 05:33:00    2017-04-21 05:33:00
83850    29290    842    2017-04-21 16:18:00    2017-04-21 16:18:00
83851    29290    772    2017-04-21 02:44:00    2017-04-21 02:44:00
83852    29290    789    2017-04-21 20:57:00    2017-04-21 20:57:00
83853    29291    907    2017-04-21 01:16:00    2017-04-21 01:16:00
83854    29291    703    2017-04-21 11:51:00    2017-04-21 11:51:00
83855    29291    695    2017-04-21 19:26:00    2017-04-21 19:26:00
83856    29291    679    2017-04-21 14:44:00    2017-04-21 14:44:00
83857    29291    792    2017-04-21 11:23:00    2017-04-21 11:23:00
83858    29292    537    2017-04-21 11:01:00    2017-04-21 11:01:00
83859    29292    668    2017-04-21 13:15:00    2017-04-21 13:15:00
83860    29292    596    2017-04-21 11:28:00    2017-04-21 11:28:00
83861    29292    854    2017-04-21 09:49:00    2017-04-21 09:49:00
83862    29292    729    2017-04-21 13:06:00    2017-04-21 13:06:00
83863    29293    648    2017-04-21 06:23:00    2017-04-21 06:23:00
83864    29293    660    2017-04-21 17:47:00    2017-04-21 17:47:00
83865    29293    951    2017-04-21 19:52:00    2017-04-21 19:52:00
83866    29293    818    2017-04-21 21:00:00    2017-04-21 21:00:00
83867    29293    828    2017-04-21 09:46:00    2017-04-21 09:46:00
83868    29294    779    2017-04-21 19:45:00    2017-04-21 19:45:00
83869    29294    713    2017-04-21 22:57:00    2017-04-21 22:57:00
83870    29294    822    2017-04-21 14:55:00    2017-04-21 14:55:00
83871    29294    671    2017-04-21 14:49:00    2017-04-21 14:49:00
83872    29294    798    2017-04-21 21:57:00    2017-04-21 21:57:00
83873    29295    801    2017-04-21 18:00:00    2017-04-21 18:00:00
83874    29295    611    2017-04-21 16:28:00    2017-04-21 16:28:00
83875    29295    654    2017-04-21 16:48:00    2017-04-21 16:48:00
83876    29295    951    2017-04-21 11:01:00    2017-04-21 11:01:00
83877    29295    639    2017-04-21 12:45:00    2017-04-21 12:45:00
83878    29296    712    2017-04-21 13:36:00    2017-04-21 13:36:00
83879    29296    594    2017-04-21 20:57:00    2017-04-21 20:57:00
83880    29296    704    2017-04-21 01:27:00    2017-04-21 01:27:00
83881    29296    663    2017-04-21 17:49:00    2017-04-21 17:49:00
83882    29296    801    2017-04-21 13:51:00    2017-04-21 13:51:00
83883    29297    669    2017-04-21 10:51:00    2017-04-21 10:51:00
83884    29297    623    2017-04-21 14:07:00    2017-04-21 14:07:00
83885    29297    836    2017-04-21 17:46:00    2017-04-21 17:46:00
83886    29297    928    2017-04-21 02:40:00    2017-04-21 02:40:00
83887    29297    674    2017-04-21 05:32:00    2017-04-21 05:32:00
83888    29298    470    2017-04-21 22:52:00    2017-04-21 22:52:00
83889    29298    612    2017-04-21 16:06:00    2017-04-21 16:06:00
83890    29298    824    2017-04-21 21:11:00    2017-04-21 21:11:00
83891    29298    825    2017-04-21 10:21:00    2017-04-21 10:21:00
83892    29298    680    2017-04-21 18:00:00    2017-04-21 18:00:00
83893    29299    599    2017-04-21 14:54:00    2017-04-21 14:54:00
83894    29299    739    2017-04-21 19:09:00    2017-04-21 19:09:00
83895    29299    871    2017-04-21 14:16:00    2017-04-21 14:16:00
83896    29299    825    2017-04-21 18:45:00    2017-04-21 18:45:00
83897    29299    865    2017-04-21 08:24:00    2017-04-21 08:24:00
83898    29300    816    2017-04-21 21:07:00    2017-04-21 21:07:00
83899    29300    826    2017-04-21 23:19:00    2017-04-21 23:19:00
83900    29300    808    2017-04-21 10:53:00    2017-04-21 10:53:00
83901    29300    919    2017-04-21 12:32:00    2017-04-21 12:32:00
83902    29300    961    2017-04-21 11:48:00    2017-04-21 11:48:00
83903    29301    920    2017-04-21 03:42:00    2017-04-21 03:42:00
83904    29301    878    2017-04-21 06:30:00    2017-04-21 06:30:00
83905    29301    614    2017-04-21 02:02:00    2017-04-21 02:02:00
83906    29301    861    2017-04-21 15:13:00    2017-04-21 15:13:00
83907    29301    828    2017-04-21 04:02:00    2017-04-21 04:02:00
83908    29302    661    2017-04-22 07:07:00    2017-04-22 07:07:00
83909    29302    914    2017-04-22 07:40:00    2017-04-22 07:40:00
83910    29302    571    2017-04-22 01:38:00    2017-04-22 01:38:00
83911    29302    792    2017-04-22 01:24:00    2017-04-22 01:24:00
83912    29302    922    2017-04-22 05:35:00    2017-04-22 05:35:00
83913    29303    507    2017-04-22 21:41:00    2017-04-22 21:41:00
83914    29303    897    2017-04-22 16:29:00    2017-04-22 16:29:00
83915    29303    658    2017-04-22 04:58:00    2017-04-22 04:58:00
83916    29303    535    2017-04-22 11:32:00    2017-04-22 11:32:00
83917    29303    570    2017-04-22 14:55:00    2017-04-22 14:55:00
83918    29304    841    2017-04-22 05:05:00    2017-04-22 05:05:00
83919    29304    819    2017-04-22 09:44:00    2017-04-22 09:44:00
83920    29304    650    2017-04-22 09:24:00    2017-04-22 09:24:00
83921    29304    829    2017-04-22 17:21:00    2017-04-22 17:21:00
83922    29304    567    2017-04-22 06:53:00    2017-04-22 06:53:00
83923    29305    475    2017-04-22 22:02:00    2017-04-22 22:02:00
83924    29305    468    2017-04-22 02:26:00    2017-04-22 02:26:00
83925    29305    569    2017-04-22 21:19:00    2017-04-22 21:19:00
83926    29305    537    2017-04-22 18:51:00    2017-04-22 18:51:00
83927    29305    588    2017-04-22 23:29:00    2017-04-22 23:29:00
83928    29306    636    2017-04-22 23:36:00    2017-04-22 23:36:00
83929    29306    660    2017-04-22 09:26:00    2017-04-22 09:26:00
83930    29306    546    2017-04-22 07:48:00    2017-04-22 07:48:00
83931    29306    654    2017-04-22 18:01:00    2017-04-22 18:01:00
83932    29306    464    2017-04-22 03:28:00    2017-04-22 03:28:00
83933    29307    537    2017-04-22 13:28:00    2017-04-22 13:28:00
83934    29307    615    2017-04-22 11:05:00    2017-04-22 11:05:00
83935    29307    602    2017-04-22 22:57:00    2017-04-22 22:57:00
83936    29307    762    2017-04-22 08:03:00    2017-04-22 08:03:00
83937    29307    890    2017-04-22 15:57:00    2017-04-22 15:57:00
83938    29308    747    2017-04-22 04:22:00    2017-04-22 04:22:00
83939    29308    525    2017-04-22 09:37:00    2017-04-22 09:37:00
83940    29308    664    2017-04-22 07:57:00    2017-04-22 07:57:00
83941    29308    751    2017-04-22 17:26:00    2017-04-22 17:26:00
83942    29308    825    2017-04-22 14:08:00    2017-04-22 14:08:00
83943    29309    566    2017-04-22 20:03:00    2017-04-22 20:03:00
83944    29309    956    2017-04-22 09:22:00    2017-04-22 09:22:00
83945    29309    466    2017-04-22 02:50:00    2017-04-22 02:50:00
83946    29309    496    2017-04-22 06:36:00    2017-04-22 06:36:00
83947    29309    543    2017-04-22 10:12:00    2017-04-22 10:12:00
83948    29310    905    2017-04-22 12:04:00    2017-04-22 12:04:00
83949    29310    605    2017-04-22 11:09:00    2017-04-22 11:09:00
83950    29310    844    2017-04-22 22:30:00    2017-04-22 22:30:00
83951    29310    464    2017-04-22 11:23:00    2017-04-22 11:23:00
83952    29310    951    2017-04-22 17:40:00    2017-04-22 17:40:00
83953    29311    610    2017-04-22 11:00:00    2017-04-22 11:00:00
83954    29311    703    2017-04-22 08:18:00    2017-04-22 08:18:00
83955    29311    846    2017-04-22 11:48:00    2017-04-22 11:48:00
83956    29311    852    2017-04-22 13:03:00    2017-04-22 13:03:00
83957    29311    573    2017-04-22 21:37:00    2017-04-22 21:37:00
83958    29312    778    2017-04-22 20:57:00    2017-04-22 20:57:00
83959    29312    622    2017-04-22 19:16:00    2017-04-22 19:16:00
83960    29312    685    2017-04-22 20:08:00    2017-04-22 20:08:00
83961    29312    535    2017-04-22 19:23:00    2017-04-22 19:23:00
83962    29312    735    2017-04-22 06:43:00    2017-04-22 06:43:00
83963    29313    646    2017-04-22 02:10:00    2017-04-22 02:10:00
83964    29313    832    2017-04-22 14:59:00    2017-04-22 14:59:00
83965    29313    773    2017-04-22 12:58:00    2017-04-22 12:58:00
83966    29313    495    2017-04-22 02:53:00    2017-04-22 02:53:00
83967    29313    589    2017-04-22 20:00:00    2017-04-22 20:00:00
83968    29314    708    2017-04-22 22:37:00    2017-04-22 22:37:00
83969    29314    504    2017-04-22 11:43:00    2017-04-22 11:43:00
83970    29314    595    2017-04-22 12:06:00    2017-04-22 12:06:00
83971    29314    587    2017-04-22 19:38:00    2017-04-22 19:38:00
83972    29314    752    2017-04-22 14:48:00    2017-04-22 14:48:00
83973    29315    811    2017-04-22 11:39:00    2017-04-22 11:39:00
83974    29315    784    2017-04-22 06:46:00    2017-04-22 06:46:00
83975    29315    787    2017-04-22 22:44:00    2017-04-22 22:44:00
83976    29315    782    2017-04-22 10:20:00    2017-04-22 10:20:00
83977    29315    644    2017-04-22 10:11:00    2017-04-22 10:11:00
83978    29316    700    2017-04-22 03:21:00    2017-04-22 03:21:00
83979    29316    699    2017-04-22 01:57:00    2017-04-22 01:57:00
83980    29316    636    2017-04-22 19:40:00    2017-04-22 19:40:00
83981    29316    614    2017-04-22 14:03:00    2017-04-22 14:03:00
83982    29316    654    2017-04-22 17:55:00    2017-04-22 17:55:00
83983    29317    571    2017-04-22 23:17:00    2017-04-22 23:17:00
83984    29317    631    2017-04-22 04:32:00    2017-04-22 04:32:00
83985    29317    535    2017-04-22 13:13:00    2017-04-22 13:13:00
83986    29317    579    2017-04-22 03:35:00    2017-04-22 03:35:00
83987    29317    732    2017-04-22 23:48:00    2017-04-22 23:48:00
83988    29318    578    2017-04-22 14:06:00    2017-04-22 14:06:00
83989    29318    958    2017-04-22 05:26:00    2017-04-22 05:26:00
83990    29318    928    2017-04-22 14:00:00    2017-04-22 14:00:00
83991    29318    690    2017-04-22 18:01:00    2017-04-22 18:01:00
83992    29318    487    2017-04-22 01:38:00    2017-04-22 01:38:00
83993    29319    597    2017-04-22 14:14:00    2017-04-22 14:14:00
83994    29319    693    2017-04-22 15:33:00    2017-04-22 15:33:00
83995    29319    698    2017-04-22 09:17:00    2017-04-22 09:17:00
83996    29319    661    2017-04-22 12:40:00    2017-04-22 12:40:00
83997    29319    558    2017-04-22 07:59:00    2017-04-22 07:59:00
83998    29320    819    2017-04-22 01:38:00    2017-04-22 01:38:00
83999    29320    651    2017-04-22 04:19:00    2017-04-22 04:19:00
84000    29320    690    2017-04-22 07:00:00    2017-04-22 07:00:00
84001    29320    544    2017-04-22 08:19:00    2017-04-22 08:19:00
84002    29320    840    2017-04-22 18:28:00    2017-04-22 18:28:00
84003    29321    501    2017-04-22 20:57:00    2017-04-22 20:57:00
84004    29321    755    2017-04-22 05:17:00    2017-04-22 05:17:00
84005    29321    873    2017-04-22 22:44:00    2017-04-22 22:44:00
84006    29321    730    2017-04-22 03:49:00    2017-04-22 03:49:00
84007    29321    803    2017-04-22 18:56:00    2017-04-22 18:56:00
84008    29322    681    2017-04-22 04:08:00    2017-04-22 04:08:00
84009    29322    595    2017-04-22 18:17:00    2017-04-22 18:17:00
84010    29322    818    2017-04-22 22:36:00    2017-04-22 22:36:00
84011    29322    574    2017-04-22 22:05:00    2017-04-22 22:05:00
84012    29322    899    2017-04-22 08:05:00    2017-04-22 08:05:00
84013    29323    878    2017-04-22 06:38:00    2017-04-22 06:38:00
84014    29323    588    2017-04-22 01:25:00    2017-04-22 01:25:00
84015    29323    818    2017-04-22 05:58:00    2017-04-22 05:58:00
84016    29323    587    2017-04-22 05:51:00    2017-04-22 05:51:00
84017    29323    525    2017-04-22 03:55:00    2017-04-22 03:55:00
84018    29324    811    2017-04-22 21:44:00    2017-04-22 21:44:00
84019    29324    539    2017-04-22 22:00:00    2017-04-22 22:00:00
84020    29324    892    2017-04-22 19:30:00    2017-04-22 19:30:00
84021    29324    503    2017-04-22 05:32:00    2017-04-22 05:32:00
84022    29324    957    2017-04-22 16:52:00    2017-04-22 16:52:00
84023    29325    527    2017-04-22 04:11:00    2017-04-22 04:11:00
84024    29325    798    2017-04-22 21:11:00    2017-04-22 21:11:00
84025    29325    929    2017-04-22 04:23:00    2017-04-22 04:23:00
84026    29325    718    2017-04-22 15:12:00    2017-04-22 15:12:00
84027    29325    745    2017-04-22 22:20:00    2017-04-22 22:20:00
84028    29326    589    2017-04-22 08:46:00    2017-04-22 08:46:00
84029    29326    689    2017-04-22 20:12:00    2017-04-22 20:12:00
84030    29326    743    2017-04-22 17:55:00    2017-04-22 17:55:00
84031    29326    798    2017-04-22 06:24:00    2017-04-22 06:24:00
84032    29326    611    2017-04-22 10:00:00    2017-04-22 10:00:00
84033    29327    960    2017-04-22 20:20:00    2017-04-22 20:20:00
84034    29327    574    2017-04-22 12:00:00    2017-04-22 12:00:00
84035    29327    600    2017-04-22 13:03:00    2017-04-22 13:03:00
84036    29327    507    2017-04-22 14:33:00    2017-04-22 14:33:00
84037    29327    768    2017-04-22 07:54:00    2017-04-22 07:54:00
84038    29328    769    2017-04-22 10:30:00    2017-04-22 10:30:00
84039    29328    489    2017-04-22 22:42:00    2017-04-22 22:42:00
84040    29328    631    2017-04-22 07:52:00    2017-04-22 07:52:00
84041    29328    553    2017-04-22 09:41:00    2017-04-22 09:41:00
84042    29328    758    2017-04-22 01:01:00    2017-04-22 01:01:00
84043    29329    878    2017-04-22 10:12:00    2017-04-22 10:12:00
84044    29329    574    2017-04-22 07:30:00    2017-04-22 07:30:00
84045    29329    700    2017-04-22 16:02:00    2017-04-22 16:02:00
84046    29329    726    2017-04-22 18:00:00    2017-04-22 18:00:00
84047    29329    650    2017-04-22 07:26:00    2017-04-22 07:26:00
84048    29330    523    2017-04-22 10:27:00    2017-04-22 10:27:00
84049    29330    957    2017-04-22 08:43:00    2017-04-22 08:43:00
84050    29330    689    2017-04-22 02:39:00    2017-04-22 02:39:00
84051    29330    864    2017-04-22 22:52:00    2017-04-22 22:52:00
84052    29330    900    2017-04-22 14:13:00    2017-04-22 14:13:00
84053    29331    538    2017-04-22 22:10:00    2017-04-22 22:10:00
84054    29331    806    2017-04-22 20:01:00    2017-04-22 20:01:00
84055    29331    841    2017-04-22 03:05:00    2017-04-22 03:05:00
84056    29331    587    2017-04-22 13:00:00    2017-04-22 13:00:00
84057    29331    552    2017-04-22 23:35:00    2017-04-22 23:35:00
84058    29332    900    2017-04-22 15:13:00    2017-04-22 15:13:00
84059    29332    539    2017-04-22 22:19:00    2017-04-22 22:19:00
84060    29332    534    2017-04-22 13:47:00    2017-04-22 13:47:00
84061    29332    598    2017-04-22 10:38:00    2017-04-22 10:38:00
84062    29332    893    2017-04-22 14:13:00    2017-04-22 14:13:00
84063    29333    642    2017-04-22 21:33:00    2017-04-22 21:33:00
84064    29333    556    2017-04-22 01:42:00    2017-04-22 01:42:00
84065    29333    790    2017-04-22 15:57:00    2017-04-22 15:57:00
84066    29333    723    2017-04-22 19:04:00    2017-04-22 19:04:00
84067    29333    605    2017-04-22 04:02:00    2017-04-22 04:02:00
84068    29334    749    2017-04-22 09:35:00    2017-04-22 09:35:00
84069    29334    924    2017-04-22 06:51:00    2017-04-22 06:51:00
84070    29334    869    2017-04-22 14:08:00    2017-04-22 14:08:00
84071    29334    738    2017-04-22 20:34:00    2017-04-22 20:34:00
84072    29334    865    2017-04-22 19:39:00    2017-04-22 19:39:00
84073    29335    804    2017-04-23 09:09:00    2017-04-23 09:09:00
84074    29335    889    2017-04-23 09:51:00    2017-04-23 09:51:00
84075    29335    518    2017-04-23 13:40:00    2017-04-23 13:40:00
84076    29335    745    2017-04-23 14:35:00    2017-04-23 14:35:00
84077    29335    735    2017-04-23 19:20:00    2017-04-23 19:20:00
84078    29336    934    2017-04-23 18:00:00    2017-04-23 18:00:00
84079    29336    486    2017-04-23 19:17:00    2017-04-23 19:17:00
84080    29336    764    2017-04-23 22:40:00    2017-04-23 22:40:00
84081    29336    712    2017-04-23 21:50:00    2017-04-23 21:50:00
84082    29336    511    2017-04-23 05:41:00    2017-04-23 05:41:00
84083    29337    579    2017-04-23 22:03:00    2017-04-23 22:03:00
84084    29337    912    2017-04-23 20:11:00    2017-04-23 20:11:00
84085    29337    838    2017-04-23 07:50:00    2017-04-23 07:50:00
84086    29337    761    2017-04-23 09:53:00    2017-04-23 09:53:00
84087    29337    622    2017-04-23 14:08:00    2017-04-23 14:08:00
84088    29338    744    2017-04-23 22:37:00    2017-04-23 22:37:00
84089    29338    932    2017-04-23 23:35:00    2017-04-23 23:35:00
84090    29338    681    2017-04-23 23:08:00    2017-04-23 23:08:00
84091    29338    809    2017-04-23 08:19:00    2017-04-23 08:19:00
84092    29338    809    2017-04-23 15:49:00    2017-04-23 15:49:00
84093    29339    807    2017-04-23 18:44:00    2017-04-23 18:44:00
84094    29339    784    2017-04-23 23:11:00    2017-04-23 23:11:00
84095    29339    948    2017-04-23 16:03:00    2017-04-23 16:03:00
84096    29339    745    2017-04-23 16:28:00    2017-04-23 16:28:00
84097    29339    652    2017-04-23 02:39:00    2017-04-23 02:39:00
84098    29340    564    2017-04-23 05:56:00    2017-04-23 05:56:00
84099    29340    463    2017-04-23 17:34:00    2017-04-23 17:34:00
84100    29340    586    2017-04-23 20:15:00    2017-04-23 20:15:00
84101    29340    634    2017-04-23 19:30:00    2017-04-23 19:30:00
84102    29340    750    2017-04-23 20:39:00    2017-04-23 20:39:00
84103    29341    570    2017-04-23 07:25:00    2017-04-23 07:25:00
84104    29341    908    2017-04-23 05:18:00    2017-04-23 05:18:00
84105    29341    774    2017-04-23 07:32:00    2017-04-23 07:32:00
84106    29341    760    2017-04-23 15:14:00    2017-04-23 15:14:00
84107    29341    831    2017-04-23 06:57:00    2017-04-23 06:57:00
84108    29342    839    2017-04-23 08:46:00    2017-04-23 08:46:00
84109    29342    597    2017-04-23 08:21:00    2017-04-23 08:21:00
84110    29342    860    2017-04-23 04:26:00    2017-04-23 04:26:00
84111    29342    938    2017-04-23 15:01:00    2017-04-23 15:01:00
84112    29342    862    2017-04-23 02:55:00    2017-04-23 02:55:00
84113    29343    639    2017-04-23 03:45:00    2017-04-23 03:45:00
84114    29343    597    2017-04-23 16:18:00    2017-04-23 16:18:00
84115    29343    891    2017-04-23 04:37:00    2017-04-23 04:37:00
84116    29343    469    2017-04-23 04:57:00    2017-04-23 04:57:00
84117    29343    699    2017-04-23 15:42:00    2017-04-23 15:42:00
84118    29344    485    2017-04-23 05:08:00    2017-04-23 05:08:00
84119    29344    595    2017-04-23 20:17:00    2017-04-23 20:17:00
84120    29344    704    2017-04-23 22:00:00    2017-04-23 22:00:00
84121    29344    540    2017-04-23 19:37:00    2017-04-23 19:37:00
84122    29344    889    2017-04-23 10:58:00    2017-04-23 10:58:00
84123    29345    644    2017-04-23 16:37:00    2017-04-23 16:37:00
84124    29345    659    2017-04-23 11:33:00    2017-04-23 11:33:00
84125    29345    524    2017-04-23 06:43:00    2017-04-23 06:43:00
84126    29345    827    2017-04-23 01:21:00    2017-04-23 01:21:00
84127    29345    723    2017-04-23 18:52:00    2017-04-23 18:52:00
84128    29346    699    2017-04-23 20:33:00    2017-04-23 20:33:00
84129    29346    545    2017-04-23 20:59:00    2017-04-23 20:59:00
84130    29346    888    2017-04-23 13:22:00    2017-04-23 13:22:00
84131    29346    719    2017-04-23 05:02:00    2017-04-23 05:02:00
84132    29346    789    2017-04-23 05:03:00    2017-04-23 05:03:00
84133    29347    761    2017-04-23 10:52:00    2017-04-23 10:52:00
84134    29347    700    2017-04-23 17:26:00    2017-04-23 17:26:00
84135    29347    729    2017-04-23 08:43:00    2017-04-23 08:43:00
84136    29347    811    2017-04-23 19:47:00    2017-04-23 19:47:00
84137    29347    546    2017-04-23 01:52:00    2017-04-23 01:52:00
84138    29348    561    2017-04-23 06:24:00    2017-04-23 06:24:00
84139    29348    792    2017-04-23 13:26:00    2017-04-23 13:26:00
84140    29348    767    2017-04-23 17:05:00    2017-04-23 17:05:00
84141    29348    495    2017-04-23 04:19:00    2017-04-23 04:19:00
84142    29348    537    2017-04-23 19:24:00    2017-04-23 19:24:00
84143    29349    832    2017-04-23 12:07:00    2017-04-23 12:07:00
84144    29349    934    2017-04-23 19:40:00    2017-04-23 19:40:00
84145    29349    669    2017-04-23 13:00:00    2017-04-23 13:00:00
84146    29349    551    2017-04-23 07:04:00    2017-04-23 07:04:00
84147    29349    888    2017-04-23 18:08:00    2017-04-23 18:08:00
84148    29350    577    2017-04-23 07:10:00    2017-04-23 07:10:00
84149    29350    577    2017-04-23 15:01:00    2017-04-23 15:01:00
84150    29350    561    2017-04-23 04:52:00    2017-04-23 04:52:00
84151    29350    672    2017-04-23 19:51:00    2017-04-23 19:51:00
84152    29350    702    2017-04-23 20:00:00    2017-04-23 20:00:00
84153    29351    915    2017-04-23 06:29:00    2017-04-23 06:29:00
84154    29351    586    2017-04-23 16:23:00    2017-04-23 16:23:00
84155    29351    938    2017-04-23 14:30:00    2017-04-23 14:30:00
84156    29351    491    2017-04-23 09:08:00    2017-04-23 09:08:00
84157    29351    471    2017-04-23 19:32:00    2017-04-23 19:32:00
84158    29352    775    2017-04-23 02:43:00    2017-04-23 02:43:00
84159    29352    620    2017-04-23 11:18:00    2017-04-23 11:18:00
84160    29352    819    2017-04-23 10:29:00    2017-04-23 10:29:00
84161    29352    530    2017-04-23 18:32:00    2017-04-23 18:32:00
84162    29352    687    2017-04-23 21:20:00    2017-04-23 21:20:00
84163    29353    837    2017-04-23 22:43:00    2017-04-23 22:43:00
84164    29353    794    2017-04-23 06:17:00    2017-04-23 06:17:00
84165    29353    772    2017-04-23 16:35:00    2017-04-23 16:35:00
84166    29353    909    2017-04-23 15:19:00    2017-04-23 15:19:00
84167    29353    748    2017-04-23 12:21:00    2017-04-23 12:21:00
84168    29354    930    2017-04-23 09:50:00    2017-04-23 09:50:00
84169    29354    526    2017-04-23 21:05:00    2017-04-23 21:05:00
84170    29354    659    2017-04-23 15:56:00    2017-04-23 15:56:00
84171    29354    489    2017-04-23 16:45:00    2017-04-23 16:45:00
84172    29354    687    2017-04-23 07:51:00    2017-04-23 07:51:00
84173    29355    622    2017-04-23 12:05:00    2017-04-23 12:05:00
84174    29355    887    2017-04-23 11:47:00    2017-04-23 11:47:00
84175    29355    657    2017-04-23 19:25:00    2017-04-23 19:25:00
84176    29355    822    2017-04-23 21:40:00    2017-04-23 21:40:00
84177    29355    490    2017-04-23 11:41:00    2017-04-23 11:41:00
84178    29356    898    2017-04-23 15:01:00    2017-04-23 15:01:00
84179    29356    663    2017-04-23 01:58:00    2017-04-23 01:58:00
84180    29356    848    2017-04-23 15:09:00    2017-04-23 15:09:00
84181    29356    663    2017-04-23 09:01:00    2017-04-23 09:01:00
84182    29356    824    2017-04-23 15:46:00    2017-04-23 15:46:00
84183    29357    471    2017-04-23 06:31:00    2017-04-23 06:31:00
84184    29357    833    2017-04-23 06:30:00    2017-04-23 06:30:00
84185    29357    669    2017-04-23 19:44:00    2017-04-23 19:44:00
84186    29357    682    2017-04-23 20:46:00    2017-04-23 20:46:00
84187    29357    766    2017-04-23 17:17:00    2017-04-23 17:17:00
84188    29358    894    2017-04-23 09:35:00    2017-04-23 09:35:00
84189    29358    705    2017-04-23 06:13:00    2017-04-23 06:13:00
84190    29358    586    2017-04-23 07:07:00    2017-04-23 07:07:00
84191    29358    503    2017-04-23 21:06:00    2017-04-23 21:06:00
84192    29358    540    2017-04-23 11:41:00    2017-04-23 11:41:00
84193    29359    877    2017-04-23 17:12:00    2017-04-23 17:12:00
84194    29359    684    2017-04-23 21:23:00    2017-04-23 21:23:00
84195    29359    527    2017-04-23 08:21:00    2017-04-23 08:21:00
84196    29359    877    2017-04-23 11:36:00    2017-04-23 11:36:00
84197    29359    560    2017-04-23 13:38:00    2017-04-23 13:38:00
84198    29360    673    2017-04-23 09:14:00    2017-04-23 09:14:00
84199    29360    479    2017-04-23 11:21:00    2017-04-23 11:21:00
84200    29360    918    2017-04-23 16:32:00    2017-04-23 16:32:00
84201    29360    944    2017-04-23 05:29:00    2017-04-23 05:29:00
84202    29360    830    2017-04-23 07:19:00    2017-04-23 07:19:00
84203    29361    805    2017-04-23 11:02:00    2017-04-23 11:02:00
84204    29361    958    2017-04-23 07:49:00    2017-04-23 07:49:00
84205    29361    565    2017-04-23 21:57:00    2017-04-23 21:57:00
84206    29361    763    2017-04-23 02:52:00    2017-04-23 02:52:00
84207    29361    654    2017-04-23 07:46:00    2017-04-23 07:46:00
84208    29362    592    2017-04-23 13:14:00    2017-04-23 13:14:00
84209    29362    689    2017-04-23 12:54:00    2017-04-23 12:54:00
84210    29362    712    2017-04-23 17:19:00    2017-04-23 17:19:00
84211    29362    778    2017-04-23 05:55:00    2017-04-23 05:55:00
84212    29362    728    2017-04-23 16:18:00    2017-04-23 16:18:00
84213    29363    581    2017-04-23 23:42:00    2017-04-23 23:42:00
84214    29363    501    2017-04-23 15:42:00    2017-04-23 15:42:00
84215    29363    575    2017-04-23 15:37:00    2017-04-23 15:37:00
84216    29363    763    2017-04-23 09:54:00    2017-04-23 09:54:00
84217    29363    532    2017-04-23 18:16:00    2017-04-23 18:16:00
84218    29364    682    2017-04-23 02:37:00    2017-04-23 02:37:00
84219    29364    858    2017-04-23 19:15:00    2017-04-23 19:15:00
84220    29364    555    2017-04-23 17:28:00    2017-04-23 17:28:00
84221    29364    846    2017-04-23 12:39:00    2017-04-23 12:39:00
84222    29364    489    2017-04-23 10:25:00    2017-04-23 10:25:00
84223    29365    603    2017-04-23 05:55:00    2017-04-23 05:55:00
84224    29365    485    2017-04-23 21:32:00    2017-04-23 21:32:00
84225    29365    844    2017-04-23 01:12:00    2017-04-23 01:12:00
84226    29365    890    2017-04-23 13:41:00    2017-04-23 13:41:00
84227    29365    587    2017-04-23 22:47:00    2017-04-23 22:47:00
84228    29366    580    2017-04-23 02:13:00    2017-04-23 02:13:00
84229    29366    718    2017-04-23 05:16:00    2017-04-23 05:16:00
84230    29366    556    2017-04-23 16:59:00    2017-04-23 16:59:00
84231    29366    924    2017-04-23 23:46:00    2017-04-23 23:46:00
84232    29366    731    2017-04-23 09:02:00    2017-04-23 09:02:00
84233    29367    592    2017-04-23 23:34:00    2017-04-23 23:34:00
84234    29367    914    2017-04-23 05:19:00    2017-04-23 05:19:00
84235    29367    729    2017-04-23 03:10:00    2017-04-23 03:10:00
84236    29367    646    2017-04-23 23:54:00    2017-04-23 23:54:00
84237    29367    709    2017-04-23 18:31:00    2017-04-23 18:31:00
84238    29368    483    2017-04-23 17:53:00    2017-04-23 17:53:00
84239    29368    466    2017-04-23 13:30:00    2017-04-23 13:30:00
84240    29368    645    2017-04-23 04:32:00    2017-04-23 04:32:00
84241    29368    923    2017-04-23 08:19:00    2017-04-23 08:19:00
84242    29368    849    2017-04-23 03:12:00    2017-04-23 03:12:00
84243    29369    572    2017-04-23 08:00:00    2017-04-23 08:00:00
84244    29369    898    2017-04-23 09:15:00    2017-04-23 09:15:00
84245    29369    811    2017-04-23 10:51:00    2017-04-23 10:51:00
84246    29369    687    2017-04-23 17:21:00    2017-04-23 17:21:00
84247    29369    687    2017-04-23 22:28:00    2017-04-23 22:28:00
84248    29370    848    2017-04-23 18:22:00    2017-04-23 18:22:00
84249    29370    488    2017-04-23 11:30:00    2017-04-23 11:30:00
84250    29370    880    2017-04-23 17:47:00    2017-04-23 17:47:00
84251    29370    660    2017-04-23 10:47:00    2017-04-23 10:47:00
84252    29370    679    2017-04-23 03:20:00    2017-04-23 03:20:00
84253    29371    675    2017-04-23 13:47:00    2017-04-23 13:47:00
84254    29371    545    2017-04-23 10:06:00    2017-04-23 10:06:00
84255    29371    796    2017-04-23 22:02:00    2017-04-23 22:02:00
84256    29371    664    2017-04-23 12:53:00    2017-04-23 12:53:00
84257    29371    919    2017-04-23 14:49:00    2017-04-23 14:49:00
84258    29372    638    2017-04-23 01:15:00    2017-04-23 01:15:00
84259    29372    673    2017-04-23 06:33:00    2017-04-23 06:33:00
84260    29372    769    2017-04-23 03:00:00    2017-04-23 03:00:00
84261    29372    634    2017-04-23 13:44:00    2017-04-23 13:44:00
84262    29372    484    2017-04-23 03:47:00    2017-04-23 03:47:00
84263    29373    645    2017-04-23 05:57:00    2017-04-23 05:57:00
84264    29373    935    2017-04-23 03:09:00    2017-04-23 03:09:00
84265    29373    546    2017-04-23 13:20:00    2017-04-23 13:20:00
84266    29373    536    2017-04-23 05:33:00    2017-04-23 05:33:00
84267    29373    517    2017-04-23 22:46:00    2017-04-23 22:46:00
84268    29374    707    2017-04-23 05:22:00    2017-04-23 05:22:00
84269    29374    708    2017-04-23 09:05:00    2017-04-23 09:05:00
84270    29374    853    2017-04-23 10:40:00    2017-04-23 10:40:00
84271    29374    872    2017-04-23 15:46:00    2017-04-23 15:46:00
84272    29374    854    2017-04-23 17:01:00    2017-04-23 17:01:00
84273    29375    922    2017-04-23 07:31:00    2017-04-23 07:31:00
84274    29375    682    2017-04-23 12:28:00    2017-04-23 12:28:00
84275    29375    616    2017-04-23 10:05:00    2017-04-23 10:05:00
84276    29375    565    2017-04-23 02:19:00    2017-04-23 02:19:00
84277    29375    635    2017-04-23 15:41:00    2017-04-23 15:41:00
84278    29376    951    2017-04-23 18:07:00    2017-04-23 18:07:00
84279    29376    864    2017-04-23 06:34:00    2017-04-23 06:34:00
84280    29376    500    2017-04-23 12:28:00    2017-04-23 12:28:00
84281    29376    951    2017-04-23 03:33:00    2017-04-23 03:33:00
84282    29376    529    2017-04-23 21:42:00    2017-04-23 21:42:00
84283    29377    853    2017-04-23 10:35:00    2017-04-23 10:35:00
84284    29377    593    2017-04-23 18:23:00    2017-04-23 18:23:00
84285    29377    776    2017-04-23 11:20:00    2017-04-23 11:20:00
84286    29377    564    2017-04-23 15:29:00    2017-04-23 15:29:00
84287    29377    528    2017-04-23 02:27:00    2017-04-23 02:27:00
84288    29378    671    2017-04-23 09:19:00    2017-04-23 09:19:00
84289    29378    519    2017-04-23 04:17:00    2017-04-23 04:17:00
84290    29378    651    2017-04-23 23:30:00    2017-04-23 23:30:00
84291    29378    628    2017-04-23 02:12:00    2017-04-23 02:12:00
84292    29378    678    2017-04-23 18:23:00    2017-04-23 18:23:00
84293    29379    798    2017-04-23 08:58:00    2017-04-23 08:58:00
84294    29379    655    2017-04-23 06:51:00    2017-04-23 06:51:00
84295    29379    937    2017-04-23 01:23:00    2017-04-23 01:23:00
84296    29379    860    2017-04-23 14:11:00    2017-04-23 14:11:00
84297    29379    759    2017-04-23 07:23:00    2017-04-23 07:23:00
84298    29380    878    2017-04-23 09:41:00    2017-04-23 09:41:00
84299    29380    536    2017-04-23 06:00:00    2017-04-23 06:00:00
84300    29380    551    2017-04-23 01:17:00    2017-04-23 01:17:00
84301    29380    629    2017-04-23 20:50:00    2017-04-23 20:50:00
84302    29380    466    2017-04-23 18:57:00    2017-04-23 18:57:00
84303    29381    958    2017-04-23 10:24:00    2017-04-23 10:24:00
84304    29381    842    2017-04-23 22:00:00    2017-04-23 22:00:00
84305    29381    810    2017-04-23 04:14:00    2017-04-23 04:14:00
84306    29381    526    2017-04-23 19:12:00    2017-04-23 19:12:00
84307    29381    764    2017-04-23 21:11:00    2017-04-23 21:11:00
84308    29382    833    2017-04-23 10:01:00    2017-04-23 10:01:00
84309    29382    477    2017-04-23 22:45:00    2017-04-23 22:45:00
84310    29382    830    2017-04-23 01:32:00    2017-04-23 01:32:00
84311    29382    841    2017-04-23 21:40:00    2017-04-23 21:40:00
84312    29382    468    2017-04-23 20:45:00    2017-04-23 20:45:00
84313    29383    519    2017-04-23 12:00:00    2017-04-23 12:00:00
84314    29383    487    2017-04-23 12:02:00    2017-04-23 12:02:00
84315    29383    726    2017-04-23 15:34:00    2017-04-23 15:34:00
84316    29383    952    2017-04-23 21:29:00    2017-04-23 21:29:00
84317    29383    743    2017-04-23 07:10:00    2017-04-23 07:10:00
84318    29384    641    2017-04-23 19:48:00    2017-04-23 19:48:00
84319    29384    740    2017-04-23 18:01:00    2017-04-23 18:01:00
84320    29384    960    2017-04-23 18:04:00    2017-04-23 18:04:00
84321    29384    675    2017-04-23 22:31:00    2017-04-23 22:31:00
84322    29384    623    2017-04-23 03:25:00    2017-04-23 03:25:00
84323    29385    777    2017-04-23 08:05:00    2017-04-23 08:05:00
84324    29385    855    2017-04-23 04:08:00    2017-04-23 04:08:00
84325    29385    817    2017-04-23 10:39:00    2017-04-23 10:39:00
84326    29385    665    2017-04-23 13:41:00    2017-04-23 13:41:00
84327    29385    482    2017-04-23 22:52:00    2017-04-23 22:52:00
84328    29386    499    2017-04-23 21:44:00    2017-04-23 21:44:00
84329    29386    768    2017-04-23 08:32:00    2017-04-23 08:32:00
84330    29386    670    2017-04-23 09:48:00    2017-04-23 09:48:00
84331    29386    840    2017-04-23 14:34:00    2017-04-23 14:34:00
84332    29386    850    2017-04-23 13:21:00    2017-04-23 13:21:00
84333    29387    956    2017-04-23 11:08:00    2017-04-23 11:08:00
84334    29387    533    2017-04-23 17:42:00    2017-04-23 17:42:00
84335    29387    494    2017-04-23 05:50:00    2017-04-23 05:50:00
84336    29387    521    2017-04-23 18:51:00    2017-04-23 18:51:00
84337    29387    894    2017-04-23 14:32:00    2017-04-23 14:32:00
84338    29388    922    2017-04-23 01:35:00    2017-04-23 01:35:00
84339    29388    687    2017-04-23 04:09:00    2017-04-23 04:09:00
84340    29388    856    2017-04-23 20:27:00    2017-04-23 20:27:00
84341    29388    745    2017-04-23 04:15:00    2017-04-23 04:15:00
84342    29388    473    2017-04-23 06:13:00    2017-04-23 06:13:00
84343    29389    953    2017-04-23 22:48:00    2017-04-23 22:48:00
84344    29389    568    2017-04-23 03:14:00    2017-04-23 03:14:00
84345    29389    490    2017-04-23 15:29:00    2017-04-23 15:29:00
84346    29389    744    2017-04-23 08:29:00    2017-04-23 08:29:00
84347    29389    675    2017-04-23 16:39:00    2017-04-23 16:39:00
84348    29390    485    2017-04-23 04:34:00    2017-04-23 04:34:00
84349    29390    677    2017-04-23 03:59:00    2017-04-23 03:59:00
84350    29390    689    2017-04-23 22:53:00    2017-04-23 22:53:00
84351    29390    654    2017-04-23 22:08:00    2017-04-23 22:08:00
84352    29390    665    2017-04-23 10:17:00    2017-04-23 10:17:00
84353    29391    849    2017-04-23 23:19:00    2017-04-23 23:19:00
84354    29391    504    2017-04-23 16:42:00    2017-04-23 16:42:00
84355    29391    494    2017-04-23 03:56:00    2017-04-23 03:56:00
84356    29391    812    2017-04-23 09:44:00    2017-04-23 09:44:00
84357    29391    655    2017-04-23 17:27:00    2017-04-23 17:27:00
84358    29392    759    2017-04-23 07:00:00    2017-04-23 07:00:00
84359    29392    763    2017-04-23 09:34:00    2017-04-23 09:34:00
84360    29392    505    2017-04-23 23:59:00    2017-04-23 23:59:00
84361    29392    874    2017-04-23 02:03:00    2017-04-23 02:03:00
84362    29392    782    2017-04-23 07:34:00    2017-04-23 07:34:00
84363    29393    828    2017-04-23 02:07:00    2017-04-23 02:07:00
84364    29393    780    2017-04-23 12:53:00    2017-04-23 12:53:00
84365    29393    955    2017-04-23 21:24:00    2017-04-23 21:24:00
84366    29393    686    2017-04-23 22:40:00    2017-04-23 22:40:00
84367    29393    674    2017-04-23 22:45:00    2017-04-23 22:45:00
84368    29394    525    2017-04-23 04:35:00    2017-04-23 04:35:00
84369    29394    869    2017-04-23 18:39:00    2017-04-23 18:39:00
84370    29394    497    2017-04-23 06:49:00    2017-04-23 06:49:00
84371    29394    946    2017-04-23 23:59:00    2017-04-23 23:59:00
84372    29394    840    2017-04-23 07:24:00    2017-04-23 07:24:00
84373    29395    488    2017-04-23 15:00:00    2017-04-23 15:00:00
84374    29395    472    2017-04-23 23:15:00    2017-04-23 23:15:00
84375    29395    522    2017-04-23 16:59:00    2017-04-23 16:59:00
84376    29395    512    2017-04-23 12:00:00    2017-04-23 12:00:00
84377    29395    851    2017-04-23 14:15:00    2017-04-23 14:15:00
84378    29396    597    2017-04-23 14:45:00    2017-04-23 14:45:00
84379    29396    498    2017-04-23 04:06:00    2017-04-23 04:06:00
84380    29396    617    2017-04-23 05:14:00    2017-04-23 05:14:00
84381    29396    508    2017-04-23 11:52:00    2017-04-23 11:52:00
84382    29396    593    2017-04-23 20:43:00    2017-04-23 20:43:00
84383    29397    730    2017-04-23 15:49:00    2017-04-23 15:49:00
84384    29397    598    2017-04-23 05:06:00    2017-04-23 05:06:00
84385    29397    546    2017-04-23 05:57:00    2017-04-23 05:57:00
84386    29397    585    2017-04-23 04:18:00    2017-04-23 04:18:00
84387    29397    626    2017-04-23 16:30:00    2017-04-23 16:30:00
84388    29398    656    2017-04-23 22:35:00    2017-04-23 22:35:00
84389    29398    591    2017-04-23 01:20:00    2017-04-23 01:20:00
84390    29398    725    2017-04-23 14:29:00    2017-04-23 14:29:00
84391    29398    531    2017-04-23 08:04:00    2017-04-23 08:04:00
84392    29398    500    2017-04-23 12:20:00    2017-04-23 12:20:00
84393    29399    567    2017-04-24 05:19:00    2017-04-24 05:19:00
84394    29399    904    2017-04-24 14:15:00    2017-04-24 14:15:00
84395    29399    486    2017-04-24 07:15:00    2017-04-24 07:15:00
84396    29399    730    2017-04-24 09:47:00    2017-04-24 09:47:00
84397    29399    877    2017-04-24 05:50:00    2017-04-24 05:50:00
84398    29400    941    2017-04-24 10:18:00    2017-04-24 10:18:00
84399    29400    868    2017-04-24 18:38:00    2017-04-24 18:38:00
84400    29400    772    2017-04-24 02:05:00    2017-04-24 02:05:00
84401    29400    667    2017-04-24 21:07:00    2017-04-24 21:07:00
84402    29400    513    2017-04-24 04:45:00    2017-04-24 04:45:00
84403    29401    627    2017-04-24 20:00:00    2017-04-24 20:00:00
84404    29401    859    2017-04-24 05:08:00    2017-04-24 05:08:00
84405    29401    626    2017-04-24 23:00:00    2017-04-24 23:00:00
84406    29401    768    2017-04-24 23:28:00    2017-04-24 23:28:00
84407    29401    649    2017-04-24 08:32:00    2017-04-24 08:32:00
84408    29402    788    2017-04-24 07:24:00    2017-04-24 07:24:00
84409    29402    640    2017-04-24 04:52:00    2017-04-24 04:52:00
84410    29402    482    2017-04-24 08:46:00    2017-04-24 08:46:00
84411    29402    537    2017-04-24 13:08:00    2017-04-24 13:08:00
84412    29402    889    2017-04-24 01:01:00    2017-04-24 01:01:00
84413    29403    505    2017-04-24 17:56:00    2017-04-24 17:56:00
84414    29403    466    2017-04-24 09:23:00    2017-04-24 09:23:00
84415    29403    826    2017-04-24 16:40:00    2017-04-24 16:40:00
84416    29403    671    2017-04-24 01:04:00    2017-04-24 01:04:00
84417    29403    953    2017-04-24 17:37:00    2017-04-24 17:37:00
84418    29404    872    2017-04-24 16:26:00    2017-04-24 16:26:00
84419    29404    951    2017-04-24 17:17:00    2017-04-24 17:17:00
84420    29404    952    2017-04-24 10:26:00    2017-04-24 10:26:00
84421    29404    914    2017-04-24 18:55:00    2017-04-24 18:55:00
84422    29404    803    2017-04-24 12:56:00    2017-04-24 12:56:00
84423    29405    578    2017-04-24 19:20:00    2017-04-24 19:20:00
84424    29405    538    2017-04-24 05:34:00    2017-04-24 05:34:00
84425    29405    934    2017-04-24 03:29:00    2017-04-24 03:29:00
84426    29405    786    2017-04-24 18:41:00    2017-04-24 18:41:00
84427    29405    569    2017-04-24 11:12:00    2017-04-24 11:12:00
84428    29406    837    2017-04-24 02:15:00    2017-04-24 02:15:00
84429    29406    564    2017-04-24 07:34:00    2017-04-24 07:34:00
84430    29406    475    2017-04-24 15:08:00    2017-04-24 15:08:00
84431    29406    690    2017-04-24 19:47:00    2017-04-24 19:47:00
84432    29406    701    2017-04-24 20:19:00    2017-04-24 20:19:00
84433    29407    917    2017-04-24 02:39:00    2017-04-24 02:39:00
84434    29407    594    2017-04-24 03:08:00    2017-04-24 03:08:00
84435    29407    740    2017-04-24 19:37:00    2017-04-24 19:37:00
84436    29407    561    2017-04-24 10:40:00    2017-04-24 10:40:00
84437    29407    740    2017-04-24 16:29:00    2017-04-24 16:29:00
84438    29408    708    2017-04-24 06:50:00    2017-04-24 06:50:00
84439    29408    896    2017-04-24 06:54:00    2017-04-24 06:54:00
84440    29408    495    2017-04-24 17:55:00    2017-04-24 17:55:00
84441    29408    698    2017-04-24 17:40:00    2017-04-24 17:40:00
84442    29408    663    2017-04-24 23:01:00    2017-04-24 23:01:00
84443    29409    851    2017-04-24 23:13:00    2017-04-24 23:13:00
84444    29409    713    2017-04-24 18:49:00    2017-04-24 18:49:00
84445    29409    958    2017-04-24 17:26:00    2017-04-24 17:26:00
84446    29409    600    2017-04-24 20:59:00    2017-04-24 20:59:00
84447    29409    559    2017-04-24 21:57:00    2017-04-24 21:57:00
84448    29410    705    2017-04-24 12:03:00    2017-04-24 12:03:00
84449    29410    607    2017-04-24 05:54:00    2017-04-24 05:54:00
84450    29410    945    2017-04-24 10:56:00    2017-04-24 10:56:00
84451    29410    494    2017-04-24 09:40:00    2017-04-24 09:40:00
84452    29410    668    2017-04-24 04:54:00    2017-04-24 04:54:00
84453    29411    502    2017-04-24 21:59:00    2017-04-24 21:59:00
84454    29411    600    2017-04-24 13:50:00    2017-04-24 13:50:00
84455    29411    826    2017-04-24 18:13:00    2017-04-24 18:13:00
84456    29411    482    2017-04-24 08:24:00    2017-04-24 08:24:00
84457    29411    898    2017-04-24 23:28:00    2017-04-24 23:28:00
84458    29412    916    2017-04-24 06:05:00    2017-04-24 06:05:00
84459    29412    616    2017-04-24 18:04:00    2017-04-24 18:04:00
84460    29412    751    2017-04-24 16:30:00    2017-04-24 16:30:00
84461    29412    686    2017-04-24 13:36:00    2017-04-24 13:36:00
84462    29412    896    2017-04-24 05:17:00    2017-04-24 05:17:00
84463    29413    491    2017-04-24 06:12:00    2017-04-24 06:12:00
84464    29413    759    2017-04-24 07:06:00    2017-04-24 07:06:00
84465    29413    953    2017-04-24 23:03:00    2017-04-24 23:03:00
84466    29413    614    2017-04-24 21:05:00    2017-04-24 21:05:00
84467    29413    613    2017-04-24 13:27:00    2017-04-24 13:27:00
84468    29414    946    2017-04-24 14:02:00    2017-04-24 14:02:00
84469    29414    847    2017-04-24 11:43:00    2017-04-24 11:43:00
84470    29414    840    2017-04-24 07:11:00    2017-04-24 07:11:00
84471    29414    465    2017-04-24 17:23:00    2017-04-24 17:23:00
84472    29414    734    2017-04-24 03:17:00    2017-04-24 03:17:00
84473    29415    587    2017-04-24 12:30:00    2017-04-24 12:30:00
84474    29415    494    2017-04-24 06:46:00    2017-04-24 06:46:00
84475    29415    893    2017-04-24 02:01:00    2017-04-24 02:01:00
84476    29415    644    2017-04-24 06:40:00    2017-04-24 06:40:00
84477    29415    730    2017-04-24 14:50:00    2017-04-24 14:50:00
84478    29416    507    2017-04-24 11:02:00    2017-04-24 11:02:00
84479    29416    512    2017-04-24 10:58:00    2017-04-24 10:58:00
84480    29416    638    2017-04-24 15:15:00    2017-04-24 15:15:00
84481    29416    654    2017-04-24 17:15:00    2017-04-24 17:15:00
84482    29416    717    2017-04-24 20:36:00    2017-04-24 20:36:00
84483    29417    825    2017-04-24 09:24:00    2017-04-24 09:24:00
84484    29417    894    2017-04-24 12:22:00    2017-04-24 12:22:00
84485    29417    949    2017-04-24 09:37:00    2017-04-24 09:37:00
84486    29417    800    2017-04-24 14:11:00    2017-04-24 14:11:00
84487    29417    700    2017-04-24 07:48:00    2017-04-24 07:48:00
84488    29418    671    2017-04-24 14:09:00    2017-04-24 14:09:00
84489    29418    835    2017-04-24 13:40:00    2017-04-24 13:40:00
84490    29418    751    2017-04-24 11:54:00    2017-04-24 11:54:00
84491    29418    931    2017-04-24 11:55:00    2017-04-24 11:55:00
84492    29418    956    2017-04-24 18:01:00    2017-04-24 18:01:00
84493    29419    728    2017-04-24 14:50:00    2017-04-24 14:50:00
84494    29419    901    2017-04-24 15:08:00    2017-04-24 15:08:00
84495    29419    826    2017-04-24 22:49:00    2017-04-24 22:49:00
84496    29419    590    2017-04-24 18:10:00    2017-04-24 18:10:00
84497    29419    699    2017-04-24 15:53:00    2017-04-24 15:53:00
84498    29420    909    2017-04-24 08:12:00    2017-04-24 08:12:00
84499    29420    500    2017-04-24 01:50:00    2017-04-24 01:50:00
84500    29420    802    2017-04-24 04:28:00    2017-04-24 04:28:00
84501    29420    649    2017-04-24 06:36:00    2017-04-24 06:36:00
84502    29420    558    2017-04-24 08:58:00    2017-04-24 08:58:00
84503    29421    686    2017-04-24 07:06:00    2017-04-24 07:06:00
84504    29421    537    2017-04-24 04:44:00    2017-04-24 04:44:00
84505    29421    908    2017-04-24 19:49:00    2017-04-24 19:49:00
84506    29421    814    2017-04-24 17:21:00    2017-04-24 17:21:00
84507    29421    950    2017-04-24 06:00:00    2017-04-24 06:00:00
84508    29422    663    2017-04-24 11:01:00    2017-04-24 11:01:00
84509    29422    658    2017-04-24 18:33:00    2017-04-24 18:33:00
84510    29422    827    2017-04-24 14:13:00    2017-04-24 14:13:00
84511    29422    766    2017-04-24 06:06:00    2017-04-24 06:06:00
84512    29422    813    2017-04-24 05:59:00    2017-04-24 05:59:00
84513    29423    886    2017-04-24 19:37:00    2017-04-24 19:37:00
84514    29423    573    2017-04-24 20:52:00    2017-04-24 20:52:00
84515    29423    655    2017-04-24 20:02:00    2017-04-24 20:02:00
84516    29423    483    2017-04-24 17:27:00    2017-04-24 17:27:00
84517    29423    764    2017-04-24 12:10:00    2017-04-24 12:10:00
84525    29432    893    2017-04-25 01:32:00    2017-04-25 01:32:00
84526    29432    493    2017-04-25 21:42:00    2017-04-25 21:42:00
84527    29432    688    2017-04-25 03:05:00    2017-04-25 03:05:00
84528    29432    503    2017-04-25 12:47:00    2017-04-25 12:47:00
84529    29432    527    2017-04-25 13:58:00    2017-04-25 13:58:00
84530    29433    750    2017-04-25 06:36:00    2017-04-25 06:36:00
84531    29433    697    2017-04-25 03:21:00    2017-04-25 03:21:00
84532    29433    825    2017-04-25 23:57:00    2017-04-25 23:57:00
84533    29433    854    2017-04-25 09:10:00    2017-04-25 09:10:00
84534    29433    571    2017-04-25 09:42:00    2017-04-25 09:42:00
84535    29434    911    2017-04-25 19:03:00    2017-04-25 19:03:00
84536    29434    864    2017-04-25 22:15:00    2017-04-25 22:15:00
84537    29434    569    2017-04-25 14:24:00    2017-04-25 14:24:00
84538    29434    816    2017-04-25 18:25:00    2017-04-25 18:25:00
84539    29434    764    2017-04-25 10:07:00    2017-04-25 10:07:00
84540    29435    557    2017-04-25 04:01:00    2017-04-25 04:01:00
84541    29435    466    2017-04-25 15:29:00    2017-04-25 15:29:00
84542    29435    697    2017-04-25 07:37:00    2017-04-25 07:37:00
84543    29435    850    2017-04-25 13:59:00    2017-04-25 13:59:00
84544    29435    560    2017-04-25 03:08:00    2017-04-25 03:08:00
84545    29436    886    2017-04-25 05:30:00    2017-04-25 05:30:00
84546    29436    945    2017-04-25 12:35:00    2017-04-25 12:35:00
84547    29436    747    2017-04-25 11:33:00    2017-04-25 11:33:00
84548    29436    890    2017-04-25 09:34:00    2017-04-25 09:34:00
84549    29436    621    2017-04-25 17:16:00    2017-04-25 17:16:00
84550    29437    668    2017-04-25 01:31:00    2017-04-25 01:31:00
84551    29437    839    2017-04-25 17:38:00    2017-04-25 17:38:00
84552    29437    835    2017-04-25 17:55:00    2017-04-25 17:55:00
84553    29437    774    2017-04-25 23:09:00    2017-04-25 23:09:00
84554    29437    663    2017-04-25 14:22:00    2017-04-25 14:22:00
84555    29438    875    2017-04-25 21:37:00    2017-04-25 21:37:00
84556    29438    812    2017-04-25 18:16:00    2017-04-25 18:16:00
84557    29438    560    2017-04-25 19:46:00    2017-04-25 19:46:00
84558    29438    472    2017-04-25 10:42:00    2017-04-25 10:42:00
84559    29438    634    2017-04-25 23:50:00    2017-04-25 23:50:00
84560    29439    878    2017-04-25 15:47:00    2017-04-25 15:47:00
84561    29439    937    2017-04-25 04:56:00    2017-04-25 04:56:00
84562    29439    697    2017-04-25 10:03:00    2017-04-25 10:03:00
84563    29439    517    2017-04-25 15:37:00    2017-04-25 15:37:00
84564    29439    581    2017-04-25 23:47:00    2017-04-25 23:47:00
84565    29440    552    2017-04-25 05:41:00    2017-04-25 05:41:00
84566    29440    617    2017-04-25 07:36:00    2017-04-25 07:36:00
84567    29440    599    2017-04-25 05:58:00    2017-04-25 05:58:00
84568    29440    501    2017-04-25 23:27:00    2017-04-25 23:27:00
84569    29440    777    2017-04-25 03:59:00    2017-04-25 03:59:00
84570    29441    706    2017-04-25 05:55:00    2017-04-25 05:55:00
84571    29441    742    2017-04-25 06:42:00    2017-04-25 06:42:00
84572    29441    947    2017-04-25 17:28:00    2017-04-25 17:28:00
84573    29441    945    2017-04-25 15:08:00    2017-04-25 15:08:00
84574    29441    688    2017-04-25 20:44:00    2017-04-25 20:44:00
84575    29442    704    2017-04-25 13:37:00    2017-04-25 13:37:00
84576    29442    636    2017-04-25 02:33:00    2017-04-25 02:33:00
84577    29442    945    2017-04-25 17:27:00    2017-04-25 17:27:00
84578    29442    783    2017-04-25 20:39:00    2017-04-25 20:39:00
84579    29442    684    2017-04-25 19:44:00    2017-04-25 19:44:00
84580    29443    650    2017-04-25 14:46:00    2017-04-25 14:46:00
84581    29443    618    2017-04-25 15:32:00    2017-04-25 15:32:00
84582    29443    715    2017-04-25 13:42:00    2017-04-25 13:42:00
84583    29443    567    2017-04-25 02:08:00    2017-04-25 02:08:00
84584    29443    466    2017-04-25 11:30:00    2017-04-25 11:30:00
84585    29444    497    2017-04-25 08:35:00    2017-04-25 08:35:00
84586    29444    595    2017-04-25 07:28:00    2017-04-25 07:28:00
84587    29444    890    2017-04-25 01:25:00    2017-04-25 01:25:00
84588    29444    598    2017-04-25 13:45:00    2017-04-25 13:45:00
84589    29444    613    2017-04-25 22:59:00    2017-04-25 22:59:00
84590    29445    516    2017-04-25 22:59:00    2017-04-25 22:59:00
84591    29445    709    2017-04-25 22:20:00    2017-04-25 22:20:00
84592    29445    903    2017-04-25 12:51:00    2017-04-25 12:51:00
84593    29445    719    2017-04-25 05:43:00    2017-04-25 05:43:00
84594    29445    886    2017-04-25 04:21:00    2017-04-25 04:21:00
84595    29446    850    2017-04-25 16:19:00    2017-04-25 16:19:00
84596    29446    758    2017-04-25 09:27:00    2017-04-25 09:27:00
84597    29446    872    2017-04-25 06:28:00    2017-04-25 06:28:00
84598    29446    477    2017-04-25 21:54:00    2017-04-25 21:54:00
84599    29446    759    2017-04-25 22:25:00    2017-04-25 22:25:00
84600    29447    465    2017-04-25 05:30:00    2017-04-25 05:30:00
84601    29447    598    2017-04-25 15:52:00    2017-04-25 15:52:00
84602    29447    909    2017-04-25 19:47:00    2017-04-25 19:47:00
84603    29447    802    2017-04-25 13:40:00    2017-04-25 13:40:00
84604    29447    567    2017-04-25 19:04:00    2017-04-25 19:04:00
84605    29448    561    2017-04-25 01:11:00    2017-04-25 01:11:00
84606    29448    616    2017-04-25 15:36:00    2017-04-25 15:36:00
84607    29448    733    2017-04-25 14:11:00    2017-04-25 14:11:00
84608    29448    534    2017-04-25 11:00:00    2017-04-25 11:00:00
84609    29448    573    2017-04-25 08:28:00    2017-04-25 08:28:00
84610    29449    934    2017-04-25 02:17:00    2017-04-25 02:17:00
84611    29449    766    2017-04-25 23:36:00    2017-04-25 23:36:00
84612    29449    862    2017-04-25 08:18:00    2017-04-25 08:18:00
84613    29449    812    2017-04-25 15:16:00    2017-04-25 15:16:00
84614    29449    593    2017-04-25 05:05:00    2017-04-25 05:05:00
84615    29450    743    2017-04-25 19:20:00    2017-04-25 19:20:00
84616    29450    931    2017-04-25 08:16:00    2017-04-25 08:16:00
84617    29450    800    2017-04-25 11:46:00    2017-04-25 11:46:00
84618    29450    615    2017-04-25 04:22:00    2017-04-25 04:22:00
84619    29450    889    2017-04-25 23:33:00    2017-04-25 23:33:00
84620    29451    830    2017-04-25 09:38:00    2017-04-25 09:38:00
84621    29451    745    2017-04-25 04:27:00    2017-04-25 04:27:00
84622    29451    736    2017-04-25 10:43:00    2017-04-25 10:43:00
84623    29451    928    2017-04-25 01:06:00    2017-04-25 01:06:00
84624    29451    714    2017-04-25 15:10:00    2017-04-25 15:10:00
84625    29452    662    2017-04-25 19:31:00    2017-04-25 19:31:00
84626    29452    494    2017-04-25 23:26:00    2017-04-25 23:26:00
84627    29452    500    2017-04-25 16:56:00    2017-04-25 16:56:00
84628    29452    864    2017-04-25 11:57:00    2017-04-25 11:57:00
84629    29452    800    2017-04-25 19:48:00    2017-04-25 19:48:00
84630    29453    763    2017-04-25 07:21:00    2017-04-25 07:21:00
84631    29453    710    2017-04-25 13:10:00    2017-04-25 13:10:00
84632    29453    870    2017-04-25 12:44:00    2017-04-25 12:44:00
84633    29453    718    2017-04-25 07:44:00    2017-04-25 07:44:00
84634    29453    517    2017-04-25 13:19:00    2017-04-25 13:19:00
84635    29454    635    2017-04-25 08:45:00    2017-04-25 08:45:00
84636    29454    618    2017-04-25 21:58:00    2017-04-25 21:58:00
84637    29454    516    2017-04-25 01:46:00    2017-04-25 01:46:00
84638    29454    745    2017-04-25 15:59:00    2017-04-25 15:59:00
84639    29454    904    2017-04-25 18:56:00    2017-04-25 18:56:00
84640    29455    724    2017-04-25 17:05:00    2017-04-25 17:05:00
84641    29455    586    2017-04-25 03:25:00    2017-04-25 03:25:00
84642    29455    707    2017-04-25 10:27:00    2017-04-25 10:27:00
84643    29455    829    2017-04-25 11:39:00    2017-04-25 11:39:00
84644    29455    593    2017-04-25 07:02:00    2017-04-25 07:02:00
84645    29456    749    2017-04-25 11:25:00    2017-04-25 11:25:00
84646    29456    882    2017-04-25 15:07:00    2017-04-25 15:07:00
84647    29456    630    2017-04-25 19:36:00    2017-04-25 19:36:00
84648    29456    815    2017-04-25 23:42:00    2017-04-25 23:42:00
84649    29456    565    2017-04-25 07:49:00    2017-04-25 07:49:00
84650    29457    755    2017-04-25 04:31:00    2017-04-25 04:31:00
84651    29457    582    2017-04-25 08:59:00    2017-04-25 08:59:00
84652    29457    864    2017-04-25 03:15:00    2017-04-25 03:15:00
84653    29457    687    2017-04-25 07:05:00    2017-04-25 07:05:00
84654    29457    777    2017-04-25 06:40:00    2017-04-25 06:40:00
84655    29458    806    2017-04-25 03:34:00    2017-04-25 03:34:00
84656    29458    633    2017-04-25 21:24:00    2017-04-25 21:24:00
84657    29458    579    2017-04-25 09:08:00    2017-04-25 09:08:00
84658    29458    757    2017-04-25 06:15:00    2017-04-25 06:15:00
84659    29458    586    2017-04-25 07:34:00    2017-04-25 07:34:00
84660    29459    562    2017-04-25 04:22:00    2017-04-25 04:22:00
84661    29459    568    2017-04-25 19:06:00    2017-04-25 19:06:00
84662    29459    598    2017-04-25 03:25:00    2017-04-25 03:25:00
84663    29459    824    2017-04-25 07:56:00    2017-04-25 07:56:00
84664    29459    843    2017-04-25 17:04:00    2017-04-25 17:04:00
84665    29460    718    2017-04-25 06:01:00    2017-04-25 06:01:00
84666    29460    508    2017-04-25 11:54:00    2017-04-25 11:54:00
84667    29460    826    2017-04-25 12:41:00    2017-04-25 12:41:00
84668    29460    490    2017-04-25 19:28:00    2017-04-25 19:28:00
84669    29460    882    2017-04-25 16:23:00    2017-04-25 16:23:00
84670    29461    463    2017-04-25 03:59:00    2017-04-25 03:59:00
84671    29461    931    2017-04-25 16:19:00    2017-04-25 16:19:00
84672    29461    843    2017-04-25 11:06:00    2017-04-25 11:06:00
84673    29461    514    2017-04-25 22:59:00    2017-04-25 22:59:00
84674    29461    566    2017-04-25 21:25:00    2017-04-25 21:25:00
84675    29462    622    2017-04-25 18:03:00    2017-04-25 18:03:00
84676    29462    541    2017-04-25 13:03:00    2017-04-25 13:03:00
84677    29462    534    2017-04-25 22:20:00    2017-04-25 22:20:00
84678    29462    782    2017-04-25 19:50:00    2017-04-25 19:50:00
84679    29462    724    2017-04-25 18:46:00    2017-04-25 18:46:00
84680    29463    863    2017-04-25 23:45:00    2017-04-25 23:45:00
84681    29463    674    2017-04-25 07:23:00    2017-04-25 07:23:00
84682    29463    793    2017-04-25 06:52:00    2017-04-25 06:52:00
84683    29463    612    2017-04-25 02:44:00    2017-04-25 02:44:00
84684    29463    926    2017-04-25 18:19:00    2017-04-25 18:19:00
84685    29464    580    2017-04-25 09:49:00    2017-04-25 09:49:00
84686    29464    927    2017-04-25 10:17:00    2017-04-25 10:17:00
84687    29464    569    2017-04-25 08:25:00    2017-04-25 08:25:00
84688    29464    670    2017-04-25 14:56:00    2017-04-25 14:56:00
84689    29464    761    2017-04-25 16:02:00    2017-04-25 16:02:00
84690    29465    831    2017-04-25 14:15:00    2017-04-25 14:15:00
84691    29465    492    2017-04-25 08:13:00    2017-04-25 08:13:00
84692    29465    579    2017-04-25 03:51:00    2017-04-25 03:51:00
84693    29465    545    2017-04-25 02:24:00    2017-04-25 02:24:00
84694    29465    859    2017-04-25 05:27:00    2017-04-25 05:27:00
84695    29466    477    2017-04-25 20:11:00    2017-04-25 20:11:00
84696    29466    475    2017-04-25 20:00:00    2017-04-25 20:00:00
84697    29466    472    2017-04-25 17:24:00    2017-04-25 17:24:00
84698    29466    500    2017-04-25 21:32:00    2017-04-25 21:32:00
84699    29466    593    2017-04-25 18:46:00    2017-04-25 18:46:00
84700    29467    567    2017-04-25 04:45:00    2017-04-25 04:45:00
84701    29467    657    2017-04-25 16:04:00    2017-04-25 16:04:00
84702    29467    621    2017-04-25 17:18:00    2017-04-25 17:18:00
84703    29467    558    2017-04-25 15:49:00    2017-04-25 15:49:00
84704    29467    627    2017-04-25 13:37:00    2017-04-25 13:37:00
84705    29468    741    2017-04-25 15:43:00    2017-04-25 15:43:00
84706    29468    873    2017-04-25 01:19:00    2017-04-25 01:19:00
84707    29468    559    2017-04-25 07:55:00    2017-04-25 07:55:00
84708    29468    675    2017-04-25 11:58:00    2017-04-25 11:58:00
84709    29468    773    2017-04-25 04:40:00    2017-04-25 04:40:00
84710    29469    621    2017-04-25 03:06:00    2017-04-25 03:06:00
84711    29469    946    2017-04-25 11:49:00    2017-04-25 11:49:00
84712    29469    563    2017-04-25 05:56:00    2017-04-25 05:56:00
84713    29469    558    2017-04-25 12:21:00    2017-04-25 12:21:00
84714    29469    693    2017-04-25 19:38:00    2017-04-25 19:38:00
84715    29470    867    2017-04-25 20:53:00    2017-04-25 20:53:00
84716    29470    892    2017-04-25 20:12:00    2017-04-25 20:12:00
84717    29470    558    2017-04-25 03:19:00    2017-04-25 03:19:00
84718    29470    856    2017-04-25 23:39:00    2017-04-25 23:39:00
84719    29470    879    2017-04-25 05:20:00    2017-04-25 05:20:00
84720    29471    629    2017-04-25 23:26:00    2017-04-25 23:26:00
84721    29471    749    2017-04-25 19:40:00    2017-04-25 19:40:00
84722    29471    798    2017-04-25 22:15:00    2017-04-25 22:15:00
84723    29471    559    2017-04-25 20:48:00    2017-04-25 20:48:00
84724    29471    481    2017-04-25 03:44:00    2017-04-25 03:44:00
84725    29472    894    2017-04-25 07:52:00    2017-04-25 07:52:00
84726    29472    878    2017-04-25 13:48:00    2017-04-25 13:48:00
84727    29472    520    2017-04-25 03:32:00    2017-04-25 03:32:00
84728    29472    791    2017-04-25 02:17:00    2017-04-25 02:17:00
84729    29472    846    2017-04-25 06:57:00    2017-04-25 06:57:00
84730    29473    951    2017-04-25 19:09:00    2017-04-25 19:09:00
84731    29473    779    2017-04-25 06:11:00    2017-04-25 06:11:00
84732    29473    666    2017-04-25 11:38:00    2017-04-25 11:38:00
84733    29473    479    2017-04-25 07:06:00    2017-04-25 07:06:00
84734    29473    891    2017-04-25 09:13:00    2017-04-25 09:13:00
84735    29474    534    2017-04-25 07:12:00    2017-04-25 07:12:00
84736    29474    473    2017-04-25 15:32:00    2017-04-25 15:32:00
84737    29474    612    2017-04-25 15:53:00    2017-04-25 15:53:00
84738    29474    720    2017-04-25 18:42:00    2017-04-25 18:42:00
84739    29474    763    2017-04-25 12:07:00    2017-04-25 12:07:00
84740    29475    539    2017-04-25 20:04:00    2017-04-25 20:04:00
84741    29475    600    2017-04-25 16:46:00    2017-04-25 16:46:00
84742    29475    850    2017-04-25 17:41:00    2017-04-25 17:41:00
84743    29475    506    2017-04-25 01:28:00    2017-04-25 01:28:00
84744    29475    770    2017-04-25 02:41:00    2017-04-25 02:41:00
84745    29476    653    2017-04-25 17:12:00    2017-04-25 17:12:00
84746    29476    680    2017-04-25 21:59:00    2017-04-25 21:59:00
84747    29476    935    2017-04-25 07:39:00    2017-04-25 07:39:00
84748    29476    805    2017-04-25 08:10:00    2017-04-25 08:10:00
84749    29476    558    2017-04-25 18:05:00    2017-04-25 18:05:00
84750    29477    911    2017-04-25 10:12:00    2017-04-25 10:12:00
84751    29477    871    2017-04-25 07:59:00    2017-04-25 07:59:00
84753    29477    819    2017-04-25 17:59:00    2017-04-25 17:59:00
84754    29477    706    2017-04-25 03:15:00    2017-04-25 03:15:00
84755    29478    634    2017-04-25 23:41:00    2017-04-25 23:41:00
84756    29478    872    2017-04-25 23:12:00    2017-04-25 23:12:00
84757    29478    869    2017-04-25 13:34:00    2017-04-25 13:34:00
84758    29478    788    2017-04-25 19:33:00    2017-04-25 19:33:00
84759    29478    917    2017-04-25 19:03:00    2017-04-25 19:03:00
84760    29479    953    2017-04-25 12:49:00    2017-04-25 12:49:00
84761    29479    948    2017-04-25 23:54:00    2017-04-25 23:54:00
84762    29479    530    2017-04-25 05:33:00    2017-04-25 05:33:00
84763    29479    840    2017-04-25 10:06:00    2017-04-25 10:06:00
84764    29479    637    2017-04-25 06:17:00    2017-04-25 06:17:00
84765    29480    720    2017-04-25 04:53:00    2017-04-25 04:53:00
84766    29480    523    2017-04-25 18:27:00    2017-04-25 18:27:00
84767    29480    903    2017-04-25 18:48:00    2017-04-25 18:48:00
84768    29480    859    2017-04-25 03:09:00    2017-04-25 03:09:00
84769    29480    602    2017-04-25 20:25:00    2017-04-25 20:25:00
84770    29481    938    2017-04-25 13:18:00    2017-04-25 13:18:00
84771    29481    497    2017-04-25 11:28:00    2017-04-25 11:28:00
84772    29481    649    2017-04-25 11:07:00    2017-04-25 11:07:00
84773    29481    667    2017-04-25 01:18:00    2017-04-25 01:18:00
84774    29481    934    2017-04-25 21:00:00    2017-04-25 21:00:00
84775    29482    640    2017-04-25 07:34:00    2017-04-25 07:34:00
84776    29482    761    2017-04-25 02:57:00    2017-04-25 02:57:00
84777    29482    636    2017-04-25 06:55:00    2017-04-25 06:55:00
84778    29482    718    2017-04-25 14:40:00    2017-04-25 14:40:00
84779    29482    467    2017-04-25 18:53:00    2017-04-25 18:53:00
84780    29483    524    2017-04-25 06:01:00    2017-04-25 06:01:00
84781    29483    898    2017-04-25 19:30:00    2017-04-25 19:30:00
84782    29483    914    2017-04-25 19:55:00    2017-04-25 19:55:00
84783    29483    942    2017-04-25 13:35:00    2017-04-25 13:35:00
84784    29483    556    2017-04-25 11:29:00    2017-04-25 11:29:00
84785    29484    885    2017-04-25 19:36:00    2017-04-25 19:36:00
84786    29484    907    2017-04-25 20:41:00    2017-04-25 20:41:00
84787    29484    745    2017-04-25 18:17:00    2017-04-25 18:17:00
84788    29484    752    2017-04-25 15:27:00    2017-04-25 15:27:00
84789    29484    553    2017-04-25 20:34:00    2017-04-25 20:34:00
84790    29485    752    2017-04-25 17:41:00    2017-04-25 17:41:00
84791    29485    479    2017-04-25 17:31:00    2017-04-25 17:31:00
84792    29485    854    2017-04-25 08:04:00    2017-04-25 08:04:00
84793    29485    786    2017-04-25 06:19:00    2017-04-25 06:19:00
84794    29485    861    2017-04-25 14:50:00    2017-04-25 14:50:00
84795    29486    960    2017-04-25 16:46:00    2017-04-25 16:46:00
84796    29486    535    2017-04-25 02:46:00    2017-04-25 02:46:00
84797    29486    615    2017-04-25 10:19:00    2017-04-25 10:19:00
84798    29486    464    2017-04-25 10:11:00    2017-04-25 10:11:00
84799    29486    590    2017-04-25 17:28:00    2017-04-25 17:28:00
84800    29487    590    2017-04-25 19:52:00    2017-04-25 19:52:00
84801    29487    686    2017-04-25 17:29:00    2017-04-25 17:29:00
84802    29487    577    2017-04-25 10:34:00    2017-04-25 10:34:00
84803    29487    515    2017-04-25 21:57:00    2017-04-25 21:57:00
84804    29487    476    2017-04-25 06:30:00    2017-04-25 06:30:00
84805    29488    568    2017-04-25 17:24:00    2017-04-25 17:24:00
84806    29488    704    2017-04-25 12:19:00    2017-04-25 12:19:00
84807    29488    785    2017-04-25 23:53:00    2017-04-25 23:53:00
84808    29488    636    2017-04-25 03:29:00    2017-04-25 03:29:00
84809    29488    705    2017-04-25 21:27:00    2017-04-25 21:27:00
84810    29489    585    2017-04-25 23:32:00    2017-04-25 23:32:00
84811    29489    721    2017-04-25 21:48:00    2017-04-25 21:48:00
84812    29489    794    2017-04-25 02:22:00    2017-04-25 02:22:00
84813    29489    960    2017-04-25 21:23:00    2017-04-25 21:23:00
84814    29489    836    2017-04-25 14:47:00    2017-04-25 14:47:00
84815    29490    703    2017-04-25 16:00:00    2017-04-25 16:00:00
84816    29490    608    2017-04-25 11:15:00    2017-04-25 11:15:00
84817    29490    716    2017-04-25 05:25:00    2017-04-25 05:25:00
84818    29490    669    2017-04-25 02:27:00    2017-04-25 02:27:00
84819    29490    600    2017-04-25 20:11:00    2017-04-25 20:11:00
84820    29491    697    2017-04-25 12:09:00    2017-04-25 12:09:00
84821    29491    527    2017-04-25 15:28:00    2017-04-25 15:28:00
84822    29491    748    2017-04-25 08:24:00    2017-04-25 08:24:00
84823    29491    578    2017-04-25 11:34:00    2017-04-25 11:34:00
84824    29491    585    2017-04-25 04:58:00    2017-04-25 04:58:00
84825    29492    602    2017-04-25 15:29:00    2017-04-25 15:29:00
84826    29492    872    2017-04-25 07:05:00    2017-04-25 07:05:00
84827    29492    748    2017-04-25 16:31:00    2017-04-25 16:31:00
84828    29492    478    2017-04-25 05:34:00    2017-04-25 05:34:00
84829    29492    719    2017-04-25 06:28:00    2017-04-25 06:28:00
84830    29493    741    2017-04-25 23:38:00    2017-04-25 23:38:00
84831    29493    527    2017-04-25 18:18:00    2017-04-25 18:18:00
84832    29493    875    2017-04-25 21:23:00    2017-04-25 21:23:00
84833    29493    479    2017-04-25 05:46:00    2017-04-25 05:46:00
84834    29493    495    2017-04-25 22:44:00    2017-04-25 22:44:00
84835    29494    885    2017-04-25 12:58:00    2017-04-25 12:58:00
84836    29494    859    2017-04-25 01:07:00    2017-04-25 01:07:00
84837    29494    509    2017-04-25 11:30:00    2017-04-25 11:30:00
84838    29494    511    2017-04-25 02:10:00    2017-04-25 02:10:00
84839    29494    776    2017-04-25 20:29:00    2017-04-25 20:29:00
84840    29495    941    2017-04-25 14:56:00    2017-04-25 14:56:00
84841    29495    478    2017-04-25 21:13:00    2017-04-25 21:13:00
84842    29495    806    2017-04-25 01:54:00    2017-04-25 01:54:00
84843    29495    859    2017-04-25 05:52:00    2017-04-25 05:52:00
84844    29495    868    2017-04-25 06:19:00    2017-04-25 06:19:00
84845    29496    847    2017-04-25 20:19:00    2017-04-25 20:19:00
84846    29496    506    2017-04-25 08:51:00    2017-04-25 08:51:00
84847    29496    577    2017-04-25 22:48:00    2017-04-25 22:48:00
84848    29496    908    2017-04-25 01:26:00    2017-04-25 01:26:00
84849    29496    473    2017-04-25 20:10:00    2017-04-25 20:10:00
84850    29497    508    2017-04-25 19:07:00    2017-04-25 19:07:00
84851    29497    472    2017-04-25 01:57:00    2017-04-25 01:57:00
84852    29497    810    2017-04-25 13:36:00    2017-04-25 13:36:00
84853    29497    766    2017-04-25 18:57:00    2017-04-25 18:57:00
84854    29497    920    2017-04-25 06:52:00    2017-04-25 06:52:00
84855    29498    695    2017-04-25 12:30:00    2017-04-25 12:30:00
84856    29498    796    2017-04-25 10:03:00    2017-04-25 10:03:00
84857    29498    643    2017-04-25 03:22:00    2017-04-25 03:22:00
84858    29498    630    2017-04-25 13:14:00    2017-04-25 13:14:00
84859    29498    604    2017-04-25 20:25:00    2017-04-25 20:25:00
84860    29499    957    2017-04-25 19:25:00    2017-04-25 19:25:00
84861    29499    467    2017-04-25 03:47:00    2017-04-25 03:47:00
84862    29499    647    2017-04-25 07:59:00    2017-04-25 07:59:00
84863    29499    845    2017-04-25 07:47:00    2017-04-25 07:47:00
84864    29499    626    2017-04-25 23:39:00    2017-04-25 23:39:00
84865    29500    663    2017-04-25 23:09:00    2017-04-25 23:09:00
84866    29500    536    2017-04-25 01:49:00    2017-04-25 01:49:00
84867    29500    928    2017-04-25 02:35:00    2017-04-25 02:35:00
84868    29500    557    2017-04-25 08:27:00    2017-04-25 08:27:00
84869    29500    683    2017-04-25 08:09:00    2017-04-25 08:09:00
84870    29501    878    2017-04-25 22:16:00    2017-04-25 22:16:00
84871    29501    630    2017-04-25 03:17:00    2017-04-25 03:17:00
84872    29501    828    2017-04-25 02:43:00    2017-04-25 02:43:00
84873    29501    701    2017-04-25 19:59:00    2017-04-25 19:59:00
84874    29501    923    2017-04-25 15:59:00    2017-04-25 15:59:00
84875    29502    466    2017-04-25 06:25:00    2017-04-25 06:25:00
84876    29502    622    2017-04-25 13:42:00    2017-04-25 13:42:00
84877    29502    940    2017-04-25 20:26:00    2017-04-25 20:26:00
84878    29502    497    2017-04-25 14:13:00    2017-04-25 14:13:00
84879    29502    844    2017-04-25 11:26:00    2017-04-25 11:26:00
84880    29503    679    2017-04-25 21:38:00    2017-04-25 21:38:00
84881    29503    666    2017-04-25 17:38:00    2017-04-25 17:38:00
84882    29503    861    2017-04-25 08:56:00    2017-04-25 08:56:00
84883    29503    510    2017-04-25 16:26:00    2017-04-25 16:26:00
84884    29503    941    2017-04-25 04:18:00    2017-04-25 04:18:00
84885    29504    824    2017-04-25 16:49:00    2017-04-25 16:49:00
84886    29504    805    2017-04-25 11:47:00    2017-04-25 11:47:00
84887    29504    490    2017-04-25 05:00:00    2017-04-25 05:00:00
84888    29504    800    2017-04-25 22:48:00    2017-04-25 22:48:00
84889    29504    685    2017-04-25 06:00:00    2017-04-25 06:00:00
84890    29505    639    2017-04-25 18:49:00    2017-04-25 18:49:00
84891    29505    935    2017-04-25 19:13:00    2017-04-25 19:13:00
84892    29505    533    2017-04-25 23:06:00    2017-04-25 23:06:00
84893    29505    731    2017-04-25 12:44:00    2017-04-25 12:44:00
84894    29505    718    2017-04-25 18:49:00    2017-04-25 18:49:00
84895    29506    645    2017-04-25 22:44:00    2017-04-25 22:44:00
84896    29506    923    2017-04-25 13:48:00    2017-04-25 13:48:00
84897    29506    492    2017-04-25 17:25:00    2017-04-25 17:25:00
84898    29506    532    2017-04-25 08:58:00    2017-04-25 08:58:00
84899    29506    933    2017-04-25 07:48:00    2017-04-25 07:48:00
84900    29507    854    2017-04-25 19:55:00    2017-04-25 19:55:00
84901    29507    822    2017-04-25 15:19:00    2017-04-25 15:19:00
84903    29507    740    2017-04-25 01:32:00    2017-04-25 01:32:00
84904    29507    727    2017-04-25 12:40:00    2017-04-25 12:40:00
84905    29508    813    2017-04-25 15:13:00    2017-04-25 15:13:00
84906    29508    699    2017-04-25 04:10:00    2017-04-25 04:10:00
84907    29508    634    2017-04-25 03:03:00    2017-04-25 03:03:00
84908    29508    786    2017-04-25 19:00:00    2017-04-25 19:00:00
84909    29508    588    2017-04-25 14:14:00    2017-04-25 14:14:00
84910    29509    671    2017-04-25 06:24:00    2017-04-25 06:24:00
84911    29509    916    2017-04-25 11:41:00    2017-04-25 11:41:00
84912    29509    695    2017-04-25 01:43:00    2017-04-25 01:43:00
84913    29509    609    2017-04-25 11:36:00    2017-04-25 11:36:00
84914    29509    752    2017-04-25 18:38:00    2017-04-25 18:38:00
84915    29510    672    2017-04-25 02:55:00    2017-04-25 02:55:00
84916    29510    586    2017-04-25 10:58:00    2017-04-25 10:58:00
84917    29510    801    2017-04-25 06:46:00    2017-04-25 06:46:00
84918    29510    690    2017-04-25 02:50:00    2017-04-25 02:50:00
84919    29510    483    2017-04-25 19:32:00    2017-04-25 19:32:00
84920    29511    918    2017-04-25 05:21:00    2017-04-25 05:21:00
84921    29511    707    2017-04-25 08:43:00    2017-04-25 08:43:00
84922    29511    926    2017-04-25 09:43:00    2017-04-25 09:43:00
84923    29511    870    2017-04-25 11:19:00    2017-04-25 11:19:00
84924    29511    715    2017-04-25 09:39:00    2017-04-25 09:39:00
84925    29512    795    2017-04-25 06:13:00    2017-04-25 06:13:00
84926    29512    941    2017-04-25 21:17:00    2017-04-25 21:17:00
84927    29512    843    2017-04-25 11:09:00    2017-04-25 11:09:00
84928    29512    730    2017-04-25 22:00:00    2017-04-25 22:00:00
84929    29512    760    2017-04-25 13:00:00    2017-04-25 13:00:00
84930    29513    663    2017-04-25 08:43:00    2017-04-25 08:43:00
84931    29513    624    2017-04-25 04:43:00    2017-04-25 04:43:00
84932    29513    868    2017-04-25 14:32:00    2017-04-25 14:32:00
84933    29513    483    2017-04-25 22:49:00    2017-04-25 22:49:00
84934    29513    844    2017-04-25 07:05:00    2017-04-25 07:05:00
84935    29514    955    2017-04-25 06:01:00    2017-04-25 06:01:00
84936    29514    922    2017-04-25 04:54:00    2017-04-25 04:54:00
84937    29514    932    2017-04-25 19:44:00    2017-04-25 19:44:00
84938    29514    522    2017-04-25 11:00:00    2017-04-25 11:00:00
84939    29514    958    2017-04-25 10:16:00    2017-04-25 10:16:00
84940    29515    660    2017-04-25 06:16:00    2017-04-25 06:16:00
84941    29515    567    2017-04-25 23:24:00    2017-04-25 23:24:00
84942    29515    680    2017-04-25 18:16:00    2017-04-25 18:16:00
84943    29515    922    2017-04-25 18:16:00    2017-04-25 18:16:00
84944    29515    542    2017-04-25 14:03:00    2017-04-25 14:03:00
84945    29516    701    2017-04-25 20:27:00    2017-04-25 20:27:00
84946    29516    750    2017-04-25 07:13:00    2017-04-25 07:13:00
84947    29516    916    2017-04-25 04:48:00    2017-04-25 04:48:00
84948    29516    885    2017-04-25 18:34:00    2017-04-25 18:34:00
84949    29516    919    2017-04-25 18:39:00    2017-04-25 18:39:00
84950    29517    675    2017-04-25 14:46:00    2017-04-25 14:46:00
84951    29517    838    2017-04-25 18:57:00    2017-04-25 18:57:00
84952    29517    668    2017-04-25 17:41:00    2017-04-25 17:41:00
84953    29517    942    2017-04-25 01:47:00    2017-04-25 01:47:00
84954    29517    834    2017-04-25 23:24:00    2017-04-25 23:24:00
84955    29518    805    2017-04-25 01:57:00    2017-04-25 01:57:00
84956    29518    714    2017-04-25 19:38:00    2017-04-25 19:38:00
84957    29518    732    2017-04-25 08:15:00    2017-04-25 08:15:00
84958    29518    583    2017-04-25 06:10:00    2017-04-25 06:10:00
84959    29518    686    2017-04-25 20:15:00    2017-04-25 20:15:00
84960    29519    532    2017-04-25 16:19:00    2017-04-25 16:19:00
84961    29519    597    2017-04-25 21:05:00    2017-04-25 21:05:00
84962    29519    932    2017-04-25 08:59:00    2017-04-25 08:59:00
84963    29519    854    2017-04-25 18:40:00    2017-04-25 18:40:00
84964    29519    637    2017-04-25 13:09:00    2017-04-25 13:09:00
84965    29520    783    2017-04-25 18:12:00    2017-04-25 18:12:00
84966    29520    720    2017-04-25 02:00:00    2017-04-25 02:00:00
84967    29520    637    2017-04-25 07:29:00    2017-04-25 07:29:00
84968    29520    564    2017-04-25 10:59:00    2017-04-25 10:59:00
84969    29520    723    2017-04-25 11:16:00    2017-04-25 11:16:00
84970    29521    521    2017-04-25 07:57:00    2017-04-25 07:57:00
84971    29521    570    2017-04-25 02:17:00    2017-04-25 02:17:00
84972    29521    666    2017-04-25 20:23:00    2017-04-25 20:23:00
84973    29521    492    2017-04-25 03:05:00    2017-04-25 03:05:00
84974    29521    668    2017-04-25 16:24:00    2017-04-25 16:24:00
84975    29522    574    2017-04-25 20:10:00    2017-04-25 20:10:00
84976    29522    700    2017-04-25 14:52:00    2017-04-25 14:52:00
84977    29522    506    2017-04-25 17:46:00    2017-04-25 17:46:00
84978    29522    875    2017-04-25 23:10:00    2017-04-25 23:10:00
84979    29522    737    2017-04-25 04:04:00    2017-04-25 04:04:00
84980    29523    673    2017-04-25 17:21:00    2017-04-25 17:21:00
84981    29523    893    2017-04-25 23:24:00    2017-04-25 23:24:00
84982    29523    757    2017-04-25 02:06:00    2017-04-25 02:06:00
84983    29523    718    2017-04-25 13:59:00    2017-04-25 13:59:00
84984    29523    741    2017-04-25 03:23:00    2017-04-25 03:23:00
84985    29524    769    2017-04-25 20:38:00    2017-04-25 20:38:00
84986    29524    477    2017-04-25 14:34:00    2017-04-25 14:34:00
84987    29524    941    2017-04-25 22:29:00    2017-04-25 22:29:00
84988    29524    539    2017-04-25 14:13:00    2017-04-25 14:13:00
84989    29524    930    2017-04-25 20:39:00    2017-04-25 20:39:00
84990    29525    874    2017-04-25 06:52:00    2017-04-25 06:52:00
84991    29525    506    2017-04-25 14:36:00    2017-04-25 14:36:00
84992    29525    872    2017-04-25 06:16:00    2017-04-25 06:16:00
84993    29525    574    2017-04-25 12:48:00    2017-04-25 12:48:00
84994    29525    636    2017-04-25 17:33:00    2017-04-25 17:33:00
84995    29526    734    2017-04-25 11:15:00    2017-04-25 11:15:00
84996    29526    506    2017-04-25 19:56:00    2017-04-25 19:56:00
84997    29526    486    2017-04-25 08:59:00    2017-04-25 08:59:00
84998    29526    890    2017-04-25 13:55:00    2017-04-25 13:55:00
84999    29526    921    2017-04-25 14:42:00    2017-04-25 14:42:00
85000    29527    661    2017-04-25 23:09:00    2017-04-25 23:09:00
85001    29527    840    2017-04-25 06:20:00    2017-04-25 06:20:00
85002    29527    697    2017-04-25 09:35:00    2017-04-25 09:35:00
85003    29527    863    2017-04-25 08:43:00    2017-04-25 08:43:00
85004    29527    906    2017-04-25 07:17:00    2017-04-25 07:17:00
85005    29528    766    2017-04-25 18:45:00    2017-04-25 18:45:00
85006    29528    797    2017-04-25 06:25:00    2017-04-25 06:25:00
85007    29528    780    2017-04-25 21:16:00    2017-04-25 21:16:00
85008    29528    530    2017-04-25 22:58:00    2017-04-25 22:58:00
85009    29528    919    2017-04-25 22:55:00    2017-04-25 22:55:00
85010    29529    466    2017-04-25 15:00:00    2017-04-25 15:00:00
85011    29529    640    2017-04-25 15:18:00    2017-04-25 15:18:00
85012    29529    715    2017-04-25 01:45:00    2017-04-25 01:45:00
85013    29529    505    2017-04-25 22:48:00    2017-04-25 22:48:00
85014    29529    758    2017-04-25 23:20:00    2017-04-25 23:20:00
85015    29530    785    2017-04-26 23:45:00    2017-04-26 23:45:00
85016    29530    530    2017-04-26 14:58:00    2017-04-26 14:58:00
85017    29530    839    2017-04-26 15:56:00    2017-04-26 15:56:00
85018    29530    625    2017-04-26 16:49:00    2017-04-26 16:49:00
85019    29530    640    2017-04-26 03:43:00    2017-04-26 03:43:00
85020    29531    796    2017-04-26 05:52:00    2017-04-26 05:52:00
85021    29531    522    2017-04-26 22:15:00    2017-04-26 22:15:00
85022    29531    947    2017-04-26 17:01:00    2017-04-26 17:01:00
85023    29531    889    2017-04-26 21:41:00    2017-04-26 21:41:00
85024    29531    600    2017-04-26 12:14:00    2017-04-26 12:14:00
85025    29532    560    2017-04-26 13:03:00    2017-04-26 13:03:00
85026    29532    834    2017-04-26 18:04:00    2017-04-26 18:04:00
85027    29532    782    2017-04-26 20:58:00    2017-04-26 20:58:00
85028    29532    695    2017-04-26 09:38:00    2017-04-26 09:38:00
85029    29532    484    2017-04-26 23:59:00    2017-04-26 23:59:00
85030    29533    545    2017-04-26 21:14:00    2017-04-26 21:14:00
85031    29533    839    2017-04-26 22:00:00    2017-04-26 22:00:00
85032    29533    738    2017-04-26 05:07:00    2017-04-26 05:07:00
85033    29533    580    2017-04-26 06:49:00    2017-04-26 06:49:00
85034    29533    866    2017-04-26 06:28:00    2017-04-26 06:28:00
85035    29534    784    2017-04-26 02:04:00    2017-04-26 02:04:00
85036    29534    657    2017-04-26 12:35:00    2017-04-26 12:35:00
85037    29534    890    2017-04-26 04:18:00    2017-04-26 04:18:00
85038    29534    535    2017-04-26 10:14:00    2017-04-26 10:14:00
85039    29534    499    2017-04-26 23:34:00    2017-04-26 23:34:00
85040    29535    706    2017-04-26 18:40:00    2017-04-26 18:40:00
85041    29535    568    2017-04-26 10:02:00    2017-04-26 10:02:00
85042    29535    720    2017-04-26 05:11:00    2017-04-26 05:11:00
85043    29535    693    2017-04-26 20:35:00    2017-04-26 20:35:00
85044    29535    828    2017-04-26 21:28:00    2017-04-26 21:28:00
85045    29536    682    2017-04-26 11:37:00    2017-04-26 11:37:00
85046    29536    720    2017-04-26 11:14:00    2017-04-26 11:14:00
85047    29536    933    2017-04-26 08:06:00    2017-04-26 08:06:00
85048    29536    718    2017-04-26 02:58:00    2017-04-26 02:58:00
85049    29536    478    2017-04-26 19:49:00    2017-04-26 19:49:00
85050    29537    785    2017-04-26 20:17:00    2017-04-26 20:17:00
85051    29537    535    2017-04-26 03:12:00    2017-04-26 03:12:00
85052    29537    711    2017-04-26 10:32:00    2017-04-26 10:32:00
85053    29537    506    2017-04-26 04:53:00    2017-04-26 04:53:00
85054    29537    580    2017-04-26 11:16:00    2017-04-26 11:16:00
85055    29538    606    2017-04-26 21:44:00    2017-04-26 21:44:00
85056    29538    494    2017-04-26 02:53:00    2017-04-26 02:53:00
85057    29538    803    2017-04-26 13:05:00    2017-04-26 13:05:00
85058    29538    772    2017-04-26 05:37:00    2017-04-26 05:37:00
85059    29538    921    2017-04-26 06:00:00    2017-04-26 06:00:00
85060    29539    778    2017-04-26 02:46:00    2017-04-26 02:46:00
85061    29539    592    2017-04-26 08:25:00    2017-04-26 08:25:00
85062    29539    474    2017-04-26 04:14:00    2017-04-26 04:14:00
85063    29539    544    2017-04-26 16:35:00    2017-04-26 16:35:00
85064    29539    745    2017-04-26 21:07:00    2017-04-26 21:07:00
85065    29540    626    2017-04-26 10:40:00    2017-04-26 10:40:00
85066    29540    926    2017-04-26 05:29:00    2017-04-26 05:29:00
85067    29540    647    2017-04-26 18:18:00    2017-04-26 18:18:00
85068    29540    675    2017-04-26 21:37:00    2017-04-26 21:37:00
85069    29540    661    2017-04-26 10:49:00    2017-04-26 10:49:00
85070    29541    686    2017-04-26 16:55:00    2017-04-26 16:55:00
85071    29541    872    2017-04-26 20:32:00    2017-04-26 20:32:00
85072    29541    557    2017-04-26 21:42:00    2017-04-26 21:42:00
85073    29541    783    2017-04-26 19:38:00    2017-04-26 19:38:00
85074    29541    902    2017-04-26 12:55:00    2017-04-26 12:55:00
85075    29542    960    2017-04-26 01:56:00    2017-04-26 01:56:00
85076    29542    497    2017-04-26 13:42:00    2017-04-26 13:42:00
85077    29542    725    2017-04-26 07:42:00    2017-04-26 07:42:00
85078    29542    867    2017-04-26 21:52:00    2017-04-26 21:52:00
85079    29542    748    2017-04-26 11:31:00    2017-04-26 11:31:00
85080    29543    466    2017-04-26 03:16:00    2017-04-26 03:16:00
85081    29543    491    2017-04-26 01:37:00    2017-04-26 01:37:00
85082    29543    922    2017-04-26 20:37:00    2017-04-26 20:37:00
85083    29543    639    2017-04-26 09:14:00    2017-04-26 09:14:00
85084    29543    840    2017-04-26 21:51:00    2017-04-26 21:51:00
85085    29544    746    2017-04-26 04:36:00    2017-04-26 04:36:00
85086    29544    786    2017-04-26 10:09:00    2017-04-26 10:09:00
85087    29544    666    2017-04-26 07:51:00    2017-04-26 07:51:00
85088    29544    505    2017-04-26 19:12:00    2017-04-26 19:12:00
85089    29544    536    2017-04-26 15:23:00    2017-04-26 15:23:00
85090    29545    663    2017-04-26 15:14:00    2017-04-26 15:14:00
85091    29545    792    2017-04-26 22:06:00    2017-04-26 22:06:00
85092    29545    898    2017-04-26 19:41:00    2017-04-26 19:41:00
85093    29545    683    2017-04-26 04:50:00    2017-04-26 04:50:00
85094    29545    525    2017-04-26 22:12:00    2017-04-26 22:12:00
85095    29546    860    2017-04-26 18:18:00    2017-04-26 18:18:00
85096    29546    646    2017-04-26 04:47:00    2017-04-26 04:47:00
85097    29546    592    2017-04-26 01:55:00    2017-04-26 01:55:00
85098    29546    903    2017-04-26 11:09:00    2017-04-26 11:09:00
85099    29546    846    2017-04-26 18:11:00    2017-04-26 18:11:00
85100    29547    718    2017-04-26 08:12:00    2017-04-26 08:12:00
85101    29547    597    2017-04-26 11:10:00    2017-04-26 11:10:00
85102    29547    724    2017-04-26 05:22:00    2017-04-26 05:22:00
85103    29547    896    2017-04-26 23:23:00    2017-04-26 23:23:00
85104    29547    516    2017-04-26 06:29:00    2017-04-26 06:29:00
85105    29548    547    2017-04-26 11:57:00    2017-04-26 11:57:00
85106    29548    605    2017-04-26 01:43:00    2017-04-26 01:43:00
85107    29548    843    2017-04-26 22:19:00    2017-04-26 22:19:00
85108    29548    523    2017-04-26 11:03:00    2017-04-26 11:03:00
85109    29548    943    2017-04-26 18:18:00    2017-04-26 18:18:00
85110    29549    655    2017-04-26 17:57:00    2017-04-26 17:57:00
85111    29549    943    2017-04-26 07:41:00    2017-04-26 07:41:00
85112    29549    796    2017-04-26 23:27:00    2017-04-26 23:27:00
85113    29549    866    2017-04-26 20:12:00    2017-04-26 20:12:00
85114    29549    653    2017-04-26 04:41:00    2017-04-26 04:41:00
85115    29550    684    2017-04-26 18:57:00    2017-04-26 18:57:00
85116    29550    578    2017-04-26 01:01:00    2017-04-26 01:01:00
85117    29550    730    2017-04-26 16:33:00    2017-04-26 16:33:00
85118    29550    759    2017-04-26 05:57:00    2017-04-26 05:57:00
85119    29550    637    2017-04-26 02:00:00    2017-04-26 02:00:00
85120    29551    749    2017-04-26 06:30:00    2017-04-26 06:30:00
85121    29551    597    2017-04-26 23:18:00    2017-04-26 23:18:00
85122    29551    592    2017-04-26 16:36:00    2017-04-26 16:36:00
85123    29551    625    2017-04-26 02:25:00    2017-04-26 02:25:00
85124    29551    586    2017-04-26 09:40:00    2017-04-26 09:40:00
85125    29552    480    2017-04-26 23:02:00    2017-04-26 23:02:00
85126    29552    663    2017-04-26 08:47:00    2017-04-26 08:47:00
85127    29552    547    2017-04-26 18:06:00    2017-04-26 18:06:00
85128    29552    642    2017-04-26 23:09:00    2017-04-26 23:09:00
85129    29552    560    2017-04-26 12:50:00    2017-04-26 12:50:00
85130    29553    826    2017-04-26 14:01:00    2017-04-26 14:01:00
85131    29553    733    2017-04-26 15:51:00    2017-04-26 15:51:00
85132    29553    822    2017-04-26 23:01:00    2017-04-26 23:01:00
85133    29553    935    2017-04-26 05:50:00    2017-04-26 05:50:00
85134    29553    604    2017-04-26 06:12:00    2017-04-26 06:12:00
85135    29554    474    2017-04-26 03:31:00    2017-04-26 03:31:00
85136    29554    617    2017-04-26 15:16:00    2017-04-26 15:16:00
85137    29554    738    2017-04-26 19:42:00    2017-04-26 19:42:00
85138    29554    507    2017-04-26 12:45:00    2017-04-26 12:45:00
85139    29554    777    2017-04-26 09:50:00    2017-04-26 09:50:00
85140    29555    682    2017-04-26 02:54:00    2017-04-26 02:54:00
85141    29555    635    2017-04-26 19:19:00    2017-04-26 19:19:00
85142    29555    506    2017-04-26 15:39:00    2017-04-26 15:39:00
85143    29555    757    2017-04-26 15:35:00    2017-04-26 15:35:00
85144    29555    775    2017-04-26 18:00:00    2017-04-26 18:00:00
85145    29556    960    2017-04-26 08:21:00    2017-04-26 08:21:00
85146    29556    636    2017-04-26 09:55:00    2017-04-26 09:55:00
85147    29556    586    2017-04-26 13:41:00    2017-04-26 13:41:00
85148    29556    911    2017-04-26 17:18:00    2017-04-26 17:18:00
85149    29556    863    2017-04-26 10:03:00    2017-04-26 10:03:00
85150    29557    869    2017-04-26 13:45:00    2017-04-26 13:45:00
85151    29557    567    2017-04-26 08:16:00    2017-04-26 08:16:00
85152    29557    909    2017-04-26 20:38:00    2017-04-26 20:38:00
85153    29557    513    2017-04-26 13:41:00    2017-04-26 13:41:00
85154    29557    861    2017-04-26 06:53:00    2017-04-26 06:53:00
85155    29558    916    2017-04-26 12:33:00    2017-04-26 12:33:00
85156    29558    602    2017-04-26 10:36:00    2017-04-26 10:36:00
85157    29558    653    2017-04-26 01:39:00    2017-04-26 01:39:00
85158    29558    666    2017-04-26 19:35:00    2017-04-26 19:35:00
85159    29558    833    2017-04-26 05:32:00    2017-04-26 05:32:00
85160    29559    594    2017-04-26 03:50:00    2017-04-26 03:50:00
85161    29559    688    2017-04-26 02:10:00    2017-04-26 02:10:00
85162    29559    614    2017-04-26 08:47:00    2017-04-26 08:47:00
85163    29559    837    2017-04-26 20:23:00    2017-04-26 20:23:00
85164    29559    823    2017-04-26 22:35:00    2017-04-26 22:35:00
85165    29560    898    2017-04-27 19:23:00    2017-04-27 19:23:00
85166    29560    775    2017-04-27 04:00:00    2017-04-27 04:00:00
85167    29560    525    2017-04-27 08:51:00    2017-04-27 08:51:00
85168    29560    840    2017-04-27 14:26:00    2017-04-27 14:26:00
85169    29560    520    2017-04-27 15:36:00    2017-04-27 15:36:00
85170    29561    844    2017-04-27 04:24:00    2017-04-27 04:24:00
85171    29561    760    2017-04-27 22:19:00    2017-04-27 22:19:00
85172    29561    730    2017-04-27 05:28:00    2017-04-27 05:28:00
85173    29561    508    2017-04-27 04:40:00    2017-04-27 04:40:00
85174    29561    586    2017-04-27 12:22:00    2017-04-27 12:22:00
85175    29562    482    2017-04-27 16:55:00    2017-04-27 16:55:00
85176    29562    787    2017-04-27 19:55:00    2017-04-27 19:55:00
85177    29562    676    2017-04-27 07:18:00    2017-04-27 07:18:00
85178    29562    855    2017-04-27 04:46:00    2017-04-27 04:46:00
85179    29562    499    2017-04-27 11:13:00    2017-04-27 11:13:00
85180    29563    919    2017-04-27 20:14:00    2017-04-27 20:14:00
85181    29563    727    2017-04-27 11:34:00    2017-04-27 11:34:00
85182    29563    786    2017-04-27 13:10:00    2017-04-27 13:10:00
85183    29563    654    2017-04-27 13:24:00    2017-04-27 13:24:00
85184    29563    949    2017-04-27 01:27:00    2017-04-27 01:27:00
85185    29564    820    2017-04-27 18:03:00    2017-04-27 18:03:00
85186    29564    824    2017-04-27 20:24:00    2017-04-27 20:24:00
85187    29564    811    2017-04-27 19:06:00    2017-04-27 19:06:00
85188    29564    870    2017-04-27 13:42:00    2017-04-27 13:42:00
85189    29564    561    2017-04-27 21:51:00    2017-04-27 21:51:00
85190    29565    517    2017-04-27 19:32:00    2017-04-27 19:32:00
85191    29565    466    2017-04-27 03:39:00    2017-04-27 03:39:00
85192    29565    541    2017-04-27 04:19:00    2017-04-27 04:19:00
85193    29565    832    2017-04-27 22:18:00    2017-04-27 22:18:00
85194    29565    887    2017-04-27 03:48:00    2017-04-27 03:48:00
85195    29566    565    2017-04-27 17:23:00    2017-04-27 17:23:00
85196    29566    535    2017-04-27 13:24:00    2017-04-27 13:24:00
85197    29566    794    2017-04-27 20:05:00    2017-04-27 20:05:00
85198    29566    551    2017-04-27 09:04:00    2017-04-27 09:04:00
85199    29566    538    2017-04-27 15:32:00    2017-04-27 15:32:00
85200    29567    836    2017-04-27 06:36:00    2017-04-27 06:36:00
85201    29567    830    2017-04-27 13:00:00    2017-04-27 13:00:00
85202    29567    534    2017-04-27 20:17:00    2017-04-27 20:17:00
85203    29567    834    2017-04-27 11:00:00    2017-04-27 11:00:00
85204    29567    788    2017-04-27 21:36:00    2017-04-27 21:36:00
85205    29568    630    2017-04-27 15:20:00    2017-04-27 15:20:00
85206    29568    671    2017-04-27 13:17:00    2017-04-27 13:17:00
85207    29568    938    2017-04-27 20:02:00    2017-04-27 20:02:00
85208    29568    892    2017-04-27 22:24:00    2017-04-27 22:24:00
85209    29568    716    2017-04-27 17:52:00    2017-04-27 17:52:00
85210    29569    694    2017-04-27 09:12:00    2017-04-27 09:12:00
85211    29569    701    2017-04-27 16:43:00    2017-04-27 16:43:00
85212    29569    757    2017-04-27 17:01:00    2017-04-27 17:01:00
85213    29569    792    2017-04-27 12:50:00    2017-04-27 12:50:00
85214    29569    603    2017-04-27 05:50:00    2017-04-27 05:50:00
85215    29570    953    2017-04-27 13:57:00    2017-04-27 13:57:00
85216    29570    635    2017-04-27 19:02:00    2017-04-27 19:02:00
85217    29570    660    2017-04-27 09:56:00    2017-04-27 09:56:00
85218    29570    878    2017-04-27 02:08:00    2017-04-27 02:08:00
85219    29570    751    2017-04-27 08:24:00    2017-04-27 08:24:00
85220    29571    674    2017-04-27 14:42:00    2017-04-27 14:42:00
85221    29571    504    2017-04-27 05:39:00    2017-04-27 05:39:00
85222    29571    548    2017-04-27 05:26:00    2017-04-27 05:26:00
85223    29571    501    2017-04-27 09:45:00    2017-04-27 09:45:00
85224    29571    887    2017-04-27 10:00:00    2017-04-27 10:00:00
85225    29572    842    2017-04-27 17:48:00    2017-04-27 17:48:00
85226    29572    834    2017-04-27 16:37:00    2017-04-27 16:37:00
85227    29572    561    2017-04-27 01:46:00    2017-04-27 01:46:00
85228    29572    787    2017-04-27 19:49:00    2017-04-27 19:49:00
85229    29572    799    2017-04-27 04:22:00    2017-04-27 04:22:00
85230    29573    743    2017-04-27 14:18:00    2017-04-27 14:18:00
85231    29573    675    2017-04-27 04:12:00    2017-04-27 04:12:00
85232    29573    795    2017-04-27 16:36:00    2017-04-27 16:36:00
85233    29573    724    2017-04-27 11:50:00    2017-04-27 11:50:00
85234    29573    470    2017-04-27 16:22:00    2017-04-27 16:22:00
85235    29574    826    2017-04-27 23:09:00    2017-04-27 23:09:00
85236    29574    498    2017-04-27 09:37:00    2017-04-27 09:37:00
85237    29574    837    2017-04-27 22:50:00    2017-04-27 22:50:00
85238    29574    485    2017-04-27 21:20:00    2017-04-27 21:20:00
85239    29574    681    2017-04-27 19:48:00    2017-04-27 19:48:00
85240    29575    790    2017-04-27 20:38:00    2017-04-27 20:38:00
85241    29575    752    2017-04-27 13:22:00    2017-04-27 13:22:00
85242    29575    467    2017-04-27 20:28:00    2017-04-27 20:28:00
85243    29575    850    2017-04-27 20:00:00    2017-04-27 20:00:00
85244    29575    657    2017-04-27 18:45:00    2017-04-27 18:45:00
85245    29576    604    2017-04-27 18:37:00    2017-04-27 18:37:00
85246    29576    935    2017-04-27 22:05:00    2017-04-27 22:05:00
85247    29576    812    2017-04-27 12:53:00    2017-04-27 12:53:00
85248    29576    580    2017-04-27 06:29:00    2017-04-27 06:29:00
85249    29576    879    2017-04-27 21:00:00    2017-04-27 21:00:00
85250    29577    523    2017-04-27 21:36:00    2017-04-27 21:36:00
85251    29577    885    2017-04-27 13:51:00    2017-04-27 13:51:00
85252    29577    559    2017-04-27 23:38:00    2017-04-27 23:38:00
85253    29577    486    2017-04-27 16:17:00    2017-04-27 16:17:00
85254    29577    818    2017-04-27 03:27:00    2017-04-27 03:27:00
85255    29578    622    2017-04-27 21:46:00    2017-04-27 21:46:00
85256    29578    848    2017-04-27 16:04:00    2017-04-27 16:04:00
85257    29578    668    2017-04-27 09:43:00    2017-04-27 09:43:00
85258    29578    711    2017-04-27 12:49:00    2017-04-27 12:49:00
85259    29578    620    2017-04-27 14:08:00    2017-04-27 14:08:00
85260    29579    471    2017-04-27 10:19:00    2017-04-27 10:19:00
85261    29579    816    2017-04-27 22:03:00    2017-04-27 22:03:00
85262    29579    463    2017-04-27 08:03:00    2017-04-27 08:03:00
85263    29579    918    2017-04-27 16:25:00    2017-04-27 16:25:00
85264    29579    684    2017-04-27 21:59:00    2017-04-27 21:59:00
85265    29580    797    2017-04-27 23:34:00    2017-04-27 23:34:00
85266    29580    606    2017-04-27 18:52:00    2017-04-27 18:52:00
85267    29580    945    2017-04-27 15:02:00    2017-04-27 15:02:00
85268    29580    935    2017-04-27 05:50:00    2017-04-27 05:50:00
85269    29580    700    2017-04-27 06:32:00    2017-04-27 06:32:00
85270    29581    844    2017-04-27 22:47:00    2017-04-27 22:47:00
85271    29581    859    2017-04-27 18:25:00    2017-04-27 18:25:00
85272    29581    546    2017-04-27 06:55:00    2017-04-27 06:55:00
85273    29581    523    2017-04-27 03:17:00    2017-04-27 03:17:00
85274    29581    468    2017-04-27 03:35:00    2017-04-27 03:35:00
85275    29582    635    2017-04-27 18:43:00    2017-04-27 18:43:00
85276    29582    587    2017-04-27 12:59:00    2017-04-27 12:59:00
85277    29582    501    2017-04-27 03:12:00    2017-04-27 03:12:00
85278    29582    518    2017-04-27 14:43:00    2017-04-27 14:43:00
85279    29582    729    2017-04-27 10:22:00    2017-04-27 10:22:00
85280    29583    509    2017-04-27 22:43:00    2017-04-27 22:43:00
85281    29583    731    2017-04-27 07:47:00    2017-04-27 07:47:00
85282    29583    641    2017-04-27 20:08:00    2017-04-27 20:08:00
85283    29583    945    2017-04-27 20:07:00    2017-04-27 20:07:00
85284    29583    703    2017-04-27 16:46:00    2017-04-27 16:46:00
85285    29584    921    2017-04-27 15:14:00    2017-04-27 15:14:00
85286    29584    556    2017-04-27 03:35:00    2017-04-27 03:35:00
85287    29584    593    2017-04-27 02:38:00    2017-04-27 02:38:00
85288    29584    693    2017-04-27 08:16:00    2017-04-27 08:16:00
85289    29584    731    2017-04-27 13:03:00    2017-04-27 13:03:00
85290    29585    792    2017-04-27 22:10:00    2017-04-27 22:10:00
85291    29585    849    2017-04-27 14:54:00    2017-04-27 14:54:00
85292    29585    478    2017-04-27 02:31:00    2017-04-27 02:31:00
85293    29585    881    2017-04-27 12:01:00    2017-04-27 12:01:00
85294    29585    699    2017-04-27 12:20:00    2017-04-27 12:20:00
85295    29586    493    2017-04-27 17:27:00    2017-04-27 17:27:00
85296    29586    915    2017-04-27 10:26:00    2017-04-27 10:26:00
85297    29586    599    2017-04-27 01:46:00    2017-04-27 01:46:00
85298    29586    802    2017-04-27 13:00:00    2017-04-27 13:00:00
85299    29586    595    2017-04-27 21:24:00    2017-04-27 21:24:00
85300    29587    605    2017-04-27 19:33:00    2017-04-27 19:33:00
85301    29587    946    2017-04-27 02:27:00    2017-04-27 02:27:00
85302    29587    951    2017-04-27 06:09:00    2017-04-27 06:09:00
85303    29587    698    2017-04-27 12:39:00    2017-04-27 12:39:00
85304    29587    805    2017-04-27 19:58:00    2017-04-27 19:58:00
85305    29588    605    2017-04-27 14:48:00    2017-04-27 14:48:00
85306    29588    693    2017-04-27 05:53:00    2017-04-27 05:53:00
85307    29588    953    2017-04-27 05:59:00    2017-04-27 05:59:00
85308    29588    721    2017-04-27 22:07:00    2017-04-27 22:07:00
85309    29588    633    2017-04-27 17:33:00    2017-04-27 17:33:00
85310    29589    601    2017-04-27 20:00:00    2017-04-27 20:00:00
85311    29589    571    2017-04-27 18:42:00    2017-04-27 18:42:00
85312    29589    628    2017-04-27 15:25:00    2017-04-27 15:25:00
85313    29589    768    2017-04-27 07:24:00    2017-04-27 07:24:00
85314    29589    657    2017-04-27 10:00:00    2017-04-27 10:00:00
85315    29590    542    2017-04-27 02:37:00    2017-04-27 02:37:00
85316    29590    518    2017-04-27 21:03:00    2017-04-27 21:03:00
85317    29590    543    2017-04-27 17:58:00    2017-04-27 17:58:00
85318    29590    705    2017-04-27 12:40:00    2017-04-27 12:40:00
85319    29590    674    2017-04-27 11:17:00    2017-04-27 11:17:00
85320    29591    843    2017-04-27 08:31:00    2017-04-27 08:31:00
85321    29591    515    2017-04-27 16:51:00    2017-04-27 16:51:00
85322    29591    546    2017-04-27 15:24:00    2017-04-27 15:24:00
85323    29591    527    2017-04-27 21:33:00    2017-04-27 21:33:00
85324    29591    834    2017-04-27 16:22:00    2017-04-27 16:22:00
85325    29592    693    2017-04-27 09:33:00    2017-04-27 09:33:00
85326    29592    551    2017-04-27 17:52:00    2017-04-27 17:52:00
85327    29592    873    2017-04-27 20:48:00    2017-04-27 20:48:00
85328    29592    887    2017-04-27 09:51:00    2017-04-27 09:51:00
85329    29592    531    2017-04-27 04:04:00    2017-04-27 04:04:00
85330    29593    576    2017-04-27 14:31:00    2017-04-27 14:31:00
85331    29593    504    2017-04-27 05:21:00    2017-04-27 05:21:00
85332    29593    819    2017-04-27 15:40:00    2017-04-27 15:40:00
85333    29593    598    2017-04-27 02:19:00    2017-04-27 02:19:00
85334    29593    839    2017-04-27 03:54:00    2017-04-27 03:54:00
85335    29594    680    2017-04-27 23:44:00    2017-04-27 23:44:00
85336    29594    765    2017-04-27 19:39:00    2017-04-27 19:39:00
85337    29594    555    2017-04-27 02:20:00    2017-04-27 02:20:00
85338    29594    574    2017-04-27 19:47:00    2017-04-27 19:47:00
85339    29594    638    2017-04-27 15:55:00    2017-04-27 15:55:00
85340    29595    755    2017-04-27 12:09:00    2017-04-27 12:09:00
85341    29595    604    2017-04-27 16:03:00    2017-04-27 16:03:00
85342    29595    807    2017-04-27 10:29:00    2017-04-27 10:29:00
85343    29595    645    2017-04-27 21:15:00    2017-04-27 21:15:00
85344    29595    567    2017-04-27 11:43:00    2017-04-27 11:43:00
85345    29596    882    2017-04-27 13:49:00    2017-04-27 13:49:00
85346    29596    860    2017-04-27 13:38:00    2017-04-27 13:38:00
85347    29596    696    2017-04-27 01:05:00    2017-04-27 01:05:00
85348    29596    738    2017-04-27 03:17:00    2017-04-27 03:17:00
85349    29596    530    2017-04-27 17:20:00    2017-04-27 17:20:00
85350    29597    829    2017-04-27 17:43:00    2017-04-27 17:43:00
85351    29597    649    2017-04-27 10:03:00    2017-04-27 10:03:00
85352    29597    501    2017-04-27 11:50:00    2017-04-27 11:50:00
85353    29597    575    2017-04-27 19:37:00    2017-04-27 19:37:00
85354    29597    595    2017-04-27 16:55:00    2017-04-27 16:55:00
85355    29598    647    2017-04-27 21:16:00    2017-04-27 21:16:00
85356    29598    693    2017-04-27 16:32:00    2017-04-27 16:32:00
85357    29598    482    2017-04-27 18:36:00    2017-04-27 18:36:00
85358    29598    536    2017-04-27 12:53:00    2017-04-27 12:53:00
85359    29598    678    2017-04-27 06:24:00    2017-04-27 06:24:00
85360    29599    631    2017-04-27 06:19:00    2017-04-27 06:19:00
85361    29599    560    2017-04-27 11:18:00    2017-04-27 11:18:00
85362    29599    497    2017-04-27 07:39:00    2017-04-27 07:39:00
85363    29599    654    2017-04-27 12:25:00    2017-04-27 12:25:00
85364    29599    818    2017-04-27 12:54:00    2017-04-27 12:54:00
85365    29600    681    2017-04-27 10:51:00    2017-04-27 10:51:00
85366    29600    941    2017-04-27 18:05:00    2017-04-27 18:05:00
85367    29600    785    2017-04-27 03:45:00    2017-04-27 03:45:00
85368    29600    688    2017-04-27 09:46:00    2017-04-27 09:46:00
85369    29600    817    2017-04-27 08:31:00    2017-04-27 08:31:00
85370    29601    522    2017-04-27 16:46:00    2017-04-27 16:46:00
85371    29601    801    2017-04-27 16:38:00    2017-04-27 16:38:00
85372    29601    926    2017-04-27 01:48:00    2017-04-27 01:48:00
85373    29601    760    2017-04-27 10:44:00    2017-04-27 10:44:00
85374    29601    627    2017-04-27 13:54:00    2017-04-27 13:54:00
85375    29602    586    2017-04-27 10:53:00    2017-04-27 10:53:00
85376    29602    492    2017-04-27 03:05:00    2017-04-27 03:05:00
85377    29602    874    2017-04-27 15:44:00    2017-04-27 15:44:00
85378    29602    554    2017-04-27 23:51:00    2017-04-27 23:51:00
85379    29602    779    2017-04-27 13:34:00    2017-04-27 13:34:00
85380    29603    467    2017-04-27 17:26:00    2017-04-27 17:26:00
85381    29603    506    2017-04-27 14:13:00    2017-04-27 14:13:00
85382    29603    726    2017-04-27 08:57:00    2017-04-27 08:57:00
85383    29603    623    2017-04-27 06:00:00    2017-04-27 06:00:00
85384    29603    916    2017-04-27 15:38:00    2017-04-27 15:38:00
85385    29604    476    2017-04-27 20:50:00    2017-04-27 20:50:00
85386    29604    809    2017-04-27 18:48:00    2017-04-27 18:48:00
85387    29604    478    2017-04-27 03:14:00    2017-04-27 03:14:00
85388    29604    479    2017-04-27 18:07:00    2017-04-27 18:07:00
85389    29604    505    2017-04-27 21:19:00    2017-04-27 21:19:00
85390    29605    475    2017-04-27 14:09:00    2017-04-27 14:09:00
85391    29605    914    2017-04-27 18:05:00    2017-04-27 18:05:00
85392    29605    749    2017-04-27 09:24:00    2017-04-27 09:24:00
85393    29605    525    2017-04-27 03:16:00    2017-04-27 03:16:00
85394    29605    704    2017-04-27 07:02:00    2017-04-27 07:02:00
85395    29606    876    2017-04-27 01:18:00    2017-04-27 01:18:00
85396    29606    748    2017-04-27 20:38:00    2017-04-27 20:38:00
85397    29606    817    2017-04-27 10:08:00    2017-04-27 10:08:00
85398    29606    645    2017-04-27 04:50:00    2017-04-27 04:50:00
85399    29606    876    2017-04-27 06:04:00    2017-04-27 06:04:00
85400    29607    663    2017-04-27 02:40:00    2017-04-27 02:40:00
85401    29607    604    2017-04-27 14:45:00    2017-04-27 14:45:00
85402    29607    783    2017-04-27 18:32:00    2017-04-27 18:32:00
85403    29607    827    2017-04-27 20:14:00    2017-04-27 20:14:00
85404    29607    925    2017-04-27 22:29:00    2017-04-27 22:29:00
85405    29608    661    2017-04-27 23:49:00    2017-04-27 23:49:00
85406    29608    632    2017-04-27 12:31:00    2017-04-27 12:31:00
85407    29608    602    2017-04-27 02:41:00    2017-04-27 02:41:00
85408    29608    931    2017-04-27 13:15:00    2017-04-27 13:15:00
85409    29608    795    2017-04-27 20:57:00    2017-04-27 20:57:00
85410    29609    763    2017-04-27 21:29:00    2017-04-27 21:29:00
85411    29609    660    2017-04-27 23:21:00    2017-04-27 23:21:00
85412    29609    496    2017-04-27 03:45:00    2017-04-27 03:45:00
85413    29609    732    2017-04-27 19:49:00    2017-04-27 19:49:00
85414    29609    564    2017-04-27 04:02:00    2017-04-27 04:02:00
85415    29610    947    2017-04-27 13:53:00    2017-04-27 13:53:00
85416    29610    694    2017-04-27 23:06:00    2017-04-27 23:06:00
85417    29610    745    2017-04-27 17:41:00    2017-04-27 17:41:00
85418    29610    905    2017-04-27 19:09:00    2017-04-27 19:09:00
85419    29610    578    2017-04-27 09:24:00    2017-04-27 09:24:00
85420    29611    650    2017-04-27 21:29:00    2017-04-27 21:29:00
85421    29611    705    2017-04-27 13:53:00    2017-04-27 13:53:00
85422    29611    762    2017-04-27 16:38:00    2017-04-27 16:38:00
85423    29611    849    2017-04-27 18:07:00    2017-04-27 18:07:00
85424    29611    828    2017-04-27 15:42:00    2017-04-27 15:42:00
85425    29612    914    2017-04-27 18:17:00    2017-04-27 18:17:00
85426    29612    890    2017-04-27 20:15:00    2017-04-27 20:15:00
85427    29612    548    2017-04-27 09:38:00    2017-04-27 09:38:00
85428    29612    866    2017-04-27 14:52:00    2017-04-27 14:52:00
85429    29612    828    2017-04-27 15:08:00    2017-04-27 15:08:00
85430    29613    906    2017-04-27 07:37:00    2017-04-27 07:37:00
85431    29613    599    2017-04-27 20:33:00    2017-04-27 20:33:00
85432    29613    872    2017-04-27 19:27:00    2017-04-27 19:27:00
85433    29613    761    2017-04-27 23:34:00    2017-04-27 23:34:00
85434    29613    599    2017-04-27 15:48:00    2017-04-27 15:48:00
85435    29614    471    2017-04-27 17:06:00    2017-04-27 17:06:00
85436    29614    707    2017-04-27 03:00:00    2017-04-27 03:00:00
85437    29614    579    2017-04-27 18:17:00    2017-04-27 18:17:00
85438    29614    562    2017-04-27 10:34:00    2017-04-27 10:34:00
85439    29614    846    2017-04-27 13:48:00    2017-04-27 13:48:00
85440    29615    777    2017-04-27 13:23:00    2017-04-27 13:23:00
85441    29615    796    2017-04-27 05:57:00    2017-04-27 05:57:00
85442    29615    869    2017-04-27 19:00:00    2017-04-27 19:00:00
85443    29615    839    2017-04-27 21:56:00    2017-04-27 21:56:00
85444    29615    549    2017-04-27 13:02:00    2017-04-27 13:02:00
85445    29616    653    2017-04-27 14:29:00    2017-04-27 14:29:00
85446    29616    810    2017-04-27 21:56:00    2017-04-27 21:56:00
85447    29616    887    2017-04-27 11:01:00    2017-04-27 11:01:00
85448    29616    483    2017-04-27 17:07:00    2017-04-27 17:07:00
85449    29616    598    2017-04-27 01:04:00    2017-04-27 01:04:00
85450    29617    881    2017-04-27 05:35:00    2017-04-27 05:35:00
85451    29617    841    2017-04-27 03:30:00    2017-04-27 03:30:00
85452    29617    612    2017-04-27 20:39:00    2017-04-27 20:39:00
85453    29617    715    2017-04-27 09:54:00    2017-04-27 09:54:00
85454    29617    812    2017-04-27 19:01:00    2017-04-27 19:01:00
85455    29618    597    2017-04-27 21:16:00    2017-04-27 21:16:00
85456    29618    942    2017-04-27 12:18:00    2017-04-27 12:18:00
85457    29618    776    2017-04-27 21:50:00    2017-04-27 21:50:00
85458    29618    731    2017-04-27 17:32:00    2017-04-27 17:32:00
85459    29618    517    2017-04-27 04:20:00    2017-04-27 04:20:00
85460    29619    537    2017-04-27 22:10:00    2017-04-27 22:10:00
85461    29619    482    2017-04-27 03:04:00    2017-04-27 03:04:00
85462    29619    468    2017-04-27 03:28:00    2017-04-27 03:28:00
85463    29619    801    2017-04-27 19:31:00    2017-04-27 19:31:00
85464    29619    570    2017-04-27 17:26:00    2017-04-27 17:26:00
85465    29620    917    2017-04-27 17:41:00    2017-04-27 17:41:00
85466    29620    565    2017-04-27 16:02:00    2017-04-27 16:02:00
85467    29620    530    2017-04-27 18:10:00    2017-04-27 18:10:00
85468    29620    681    2017-04-27 14:29:00    2017-04-27 14:29:00
85469    29620    498    2017-04-27 08:33:00    2017-04-27 08:33:00
85470    29621    763    2017-04-27 10:09:00    2017-04-27 10:09:00
85471    29621    833    2017-04-27 02:35:00    2017-04-27 02:35:00
85472    29621    617    2017-04-27 03:13:00    2017-04-27 03:13:00
85473    29621    544    2017-04-27 17:52:00    2017-04-27 17:52:00
85474    29621    602    2017-04-27 09:44:00    2017-04-27 09:44:00
85476    29622    685    2017-04-27 12:45:00    2017-04-27 12:45:00
85477    29622    598    2017-04-27 21:44:00    2017-04-27 21:44:00
85478    29622    743    2017-04-27 05:37:00    2017-04-27 05:37:00
85479    29622    683    2017-04-27 06:37:00    2017-04-27 06:37:00
85480    29623    665    2017-04-27 14:17:00    2017-04-27 14:17:00
85481    29623    844    2017-04-27 14:18:00    2017-04-27 14:18:00
85482    29623    718    2017-04-27 22:51:00    2017-04-27 22:51:00
85483    29623    807    2017-04-27 01:24:00    2017-04-27 01:24:00
85484    29623    821    2017-04-27 22:30:00    2017-04-27 22:30:00
85485    29624    686    2017-04-27 09:20:00    2017-04-27 09:20:00
85486    29624    819    2017-04-27 09:24:00    2017-04-27 09:24:00
85487    29624    472    2017-04-27 06:39:00    2017-04-27 06:39:00
85488    29624    519    2017-04-27 10:49:00    2017-04-27 10:49:00
85489    29624    666    2017-04-27 22:19:00    2017-04-27 22:19:00
85490    29625    887    2017-04-27 23:26:00    2017-04-27 23:26:00
85491    29625    604    2017-04-27 05:20:00    2017-04-27 05:20:00
85492    29625    718    2017-04-27 04:08:00    2017-04-27 04:08:00
85493    29625    649    2017-04-27 22:27:00    2017-04-27 22:27:00
85494    29625    868    2017-04-27 17:13:00    2017-04-27 17:13:00
85495    29626    801    2017-04-27 05:31:00    2017-04-27 05:31:00
85496    29626    570    2017-04-27 09:45:00    2017-04-27 09:45:00
85497    29626    895    2017-04-27 12:53:00    2017-04-27 12:53:00
85498    29626    683    2017-04-27 02:17:00    2017-04-27 02:17:00
85499    29626    640    2017-04-27 03:49:00    2017-04-27 03:49:00
85500    29627    924    2017-04-27 01:08:00    2017-04-27 01:08:00
85501    29627    824    2017-04-27 11:40:00    2017-04-27 11:40:00
85502    29627    593    2017-04-27 23:13:00    2017-04-27 23:13:00
85503    29627    940    2017-04-27 17:05:00    2017-04-27 17:05:00
85504    29627    563    2017-04-27 16:16:00    2017-04-27 16:16:00
85505    29628    574    2017-04-27 14:16:00    2017-04-27 14:16:00
85506    29628    849    2017-04-27 22:18:00    2017-04-27 22:18:00
85507    29628    490    2017-04-27 01:27:00    2017-04-27 01:27:00
85508    29628    881    2017-04-27 06:31:00    2017-04-27 06:31:00
85509    29628    542    2017-04-27 17:33:00    2017-04-27 17:33:00
85510    29629    475    2017-04-28 07:29:00    2017-04-28 07:29:00
85511    29629    496    2017-04-28 08:32:00    2017-04-28 08:32:00
85512    29629    706    2017-04-28 08:55:00    2017-04-28 08:55:00
85513    29629    590    2017-04-28 18:56:00    2017-04-28 18:56:00
85514    29629    890    2017-04-28 01:16:00    2017-04-28 01:16:00
85515    29630    926    2017-04-28 01:01:00    2017-04-28 01:01:00
85516    29630    518    2017-04-28 01:05:00    2017-04-28 01:05:00
85517    29630    812    2017-04-28 18:58:00    2017-04-28 18:58:00
85518    29630    539    2017-04-28 07:25:00    2017-04-28 07:25:00
85519    29630    650    2017-04-28 05:37:00    2017-04-28 05:37:00
85520    29631    585    2017-04-28 02:30:00    2017-04-28 02:30:00
85521    29631    540    2017-04-28 20:48:00    2017-04-28 20:48:00
85522    29631    567    2017-04-28 17:54:00    2017-04-28 17:54:00
85523    29631    599    2017-04-28 16:13:00    2017-04-28 16:13:00
85524    29631    671    2017-04-28 15:00:00    2017-04-28 15:00:00
85525    29632    788    2017-04-28 15:54:00    2017-04-28 15:54:00
85526    29632    866    2017-04-28 18:08:00    2017-04-28 18:08:00
85527    29632    548    2017-04-28 20:12:00    2017-04-28 20:12:00
85528    29632    755    2017-04-28 19:13:00    2017-04-28 19:13:00
85529    29632    761    2017-04-28 15:09:00    2017-04-28 15:09:00
85530    29633    498    2017-04-28 13:08:00    2017-04-28 13:08:00
85531    29633    817    2017-04-28 03:30:00    2017-04-28 03:30:00
85532    29633    551    2017-04-28 23:27:00    2017-04-28 23:27:00
85533    29633    906    2017-04-28 02:29:00    2017-04-28 02:29:00
85534    29633    856    2017-04-28 20:24:00    2017-04-28 20:24:00
85535    29634    777    2017-04-28 03:45:00    2017-04-28 03:45:00
85536    29634    538    2017-04-28 08:11:00    2017-04-28 08:11:00
85537    29634    867    2017-04-28 19:47:00    2017-04-28 19:47:00
85538    29634    751    2017-04-28 05:41:00    2017-04-28 05:41:00
85539    29634    644    2017-04-28 23:17:00    2017-04-28 23:17:00
85540    29635    904    2017-04-28 12:10:00    2017-04-28 12:10:00
85541    29635    619    2017-04-28 02:40:00    2017-04-28 02:40:00
85542    29635    887    2017-04-28 05:55:00    2017-04-28 05:55:00
85543    29635    882    2017-04-28 16:32:00    2017-04-28 16:32:00
85544    29635    853    2017-04-28 10:32:00    2017-04-28 10:32:00
85545    29636    771    2017-04-28 23:11:00    2017-04-28 23:11:00
85546    29636    698    2017-04-28 04:57:00    2017-04-28 04:57:00
85547    29636    488    2017-04-28 10:32:00    2017-04-28 10:32:00
85548    29636    584    2017-04-28 13:40:00    2017-04-28 13:40:00
85549    29636    474    2017-04-28 04:04:00    2017-04-28 04:04:00
85550    29637    609    2017-04-28 06:46:00    2017-04-28 06:46:00
85551    29637    609    2017-04-28 20:32:00    2017-04-28 20:32:00
85552    29637    781    2017-04-28 04:21:00    2017-04-28 04:21:00
85553    29637    631    2017-04-28 02:27:00    2017-04-28 02:27:00
85554    29637    612    2017-04-28 05:40:00    2017-04-28 05:40:00
85555    29638    949    2017-04-28 22:53:00    2017-04-28 22:53:00
85556    29638    649    2017-04-28 16:29:00    2017-04-28 16:29:00
85557    29638    740    2017-04-28 02:28:00    2017-04-28 02:28:00
85558    29638    597    2017-04-28 22:30:00    2017-04-28 22:30:00
85559    29638    758    2017-04-28 17:56:00    2017-04-28 17:56:00
85560    29639    921    2017-04-28 09:36:00    2017-04-28 09:36:00
85561    29639    536    2017-04-28 07:21:00    2017-04-28 07:21:00
85562    29639    690    2017-04-28 06:53:00    2017-04-28 06:53:00
85563    29639    934    2017-04-28 14:38:00    2017-04-28 14:38:00
85564    29639    583    2017-04-28 17:00:00    2017-04-28 17:00:00
85565    29640    850    2017-04-28 03:33:00    2017-04-28 03:33:00
85566    29640    525    2017-04-28 08:29:00    2017-04-28 08:29:00
85567    29640    792    2017-04-28 23:34:00    2017-04-28 23:34:00
85568    29640    692    2017-04-28 06:55:00    2017-04-28 06:55:00
85569    29640    631    2017-04-28 08:34:00    2017-04-28 08:34:00
85570    29641    883    2017-04-28 06:19:00    2017-04-28 06:19:00
85571    29641    600    2017-04-28 23:14:00    2017-04-28 23:14:00
85572    29641    732    2017-04-28 20:46:00    2017-04-28 20:46:00
85573    29641    570    2017-04-28 15:02:00    2017-04-28 15:02:00
85574    29641    960    2017-04-28 10:09:00    2017-04-28 10:09:00
85575    29642    752    2017-04-28 06:00:00    2017-04-28 06:00:00
85576    29642    719    2017-04-28 12:09:00    2017-04-28 12:09:00
85577    29642    745    2017-04-28 06:18:00    2017-04-28 06:18:00
85578    29642    794    2017-04-28 03:09:00    2017-04-28 03:09:00
85579    29642    713    2017-04-28 19:11:00    2017-04-28 19:11:00
85580    29643    595    2017-04-28 21:42:00    2017-04-28 21:42:00
85581    29643    498    2017-04-28 16:09:00    2017-04-28 16:09:00
85582    29643    918    2017-04-28 14:06:00    2017-04-28 14:06:00
85583    29643    950    2017-04-28 23:48:00    2017-04-28 23:48:00
85584    29643    612    2017-04-28 17:25:00    2017-04-28 17:25:00
85585    29644    817    2017-04-28 11:28:00    2017-04-28 11:28:00
85586    29644    871    2017-04-28 12:02:00    2017-04-28 12:02:00
85587    29644    951    2017-04-28 14:52:00    2017-04-28 14:52:00
85588    29644    870    2017-04-28 23:08:00    2017-04-28 23:08:00
85589    29644    675    2017-04-28 16:39:00    2017-04-28 16:39:00
85590    29645    621    2017-04-28 21:54:00    2017-04-28 21:54:00
85591    29645    877    2017-04-28 13:15:00    2017-04-28 13:15:00
85592    29645    643    2017-04-28 08:08:00    2017-04-28 08:08:00
85593    29645    834    2017-04-28 05:09:00    2017-04-28 05:09:00
85594    29645    577    2017-04-28 18:39:00    2017-04-28 18:39:00
85595    29646    875    2017-04-28 08:27:00    2017-04-28 08:27:00
85596    29646    892    2017-04-28 05:20:00    2017-04-28 05:20:00
85597    29646    554    2017-04-28 01:20:00    2017-04-28 01:20:00
85598    29646    701    2017-04-28 06:29:00    2017-04-28 06:29:00
85599    29646    846    2017-04-28 09:03:00    2017-04-28 09:03:00
85600    29647    548    2017-04-28 16:34:00    2017-04-28 16:34:00
85601    29647    504    2017-04-28 04:37:00    2017-04-28 04:37:00
85602    29647    717    2017-04-28 15:36:00    2017-04-28 15:36:00
85603    29647    762    2017-04-28 01:45:00    2017-04-28 01:45:00
85604    29647    585    2017-04-28 23:22:00    2017-04-28 23:22:00
85605    29648    753    2017-04-28 07:21:00    2017-04-28 07:21:00
85606    29648    738    2017-04-28 14:28:00    2017-04-28 14:28:00
85607    29648    809    2017-04-28 10:22:00    2017-04-28 10:22:00
85608    29648    585    2017-04-28 03:23:00    2017-04-28 03:23:00
85609    29648    474    2017-04-28 08:20:00    2017-04-28 08:20:00
85610    29649    592    2017-04-28 11:34:00    2017-04-28 11:34:00
85611    29649    581    2017-04-28 19:49:00    2017-04-28 19:49:00
85612    29649    907    2017-04-28 12:54:00    2017-04-28 12:54:00
85613    29649    882    2017-04-28 09:04:00    2017-04-28 09:04:00
85614    29649    849    2017-04-28 15:26:00    2017-04-28 15:26:00
85615    29650    798    2017-04-28 06:59:00    2017-04-28 06:59:00
85616    29650    555    2017-04-28 16:17:00    2017-04-28 16:17:00
85617    29650    596    2017-04-28 20:44:00    2017-04-28 20:44:00
85618    29650    862    2017-04-28 08:31:00    2017-04-28 08:31:00
85619    29650    585    2017-04-28 16:41:00    2017-04-28 16:41:00
85620    29651    469    2017-04-28 14:48:00    2017-04-28 14:48:00
85621    29651    767    2017-04-28 15:09:00    2017-04-28 15:09:00
85622    29651    715    2017-04-28 09:33:00    2017-04-28 09:33:00
85623    29651    493    2017-04-28 17:39:00    2017-04-28 17:39:00
85624    29651    918    2017-04-28 16:05:00    2017-04-28 16:05:00
85625    29652    792    2017-04-29 20:21:00    2017-04-29 20:21:00
85626    29652    696    2017-04-29 05:47:00    2017-04-29 05:47:00
85627    29652    810    2017-04-29 05:45:00    2017-04-29 05:45:00
85628    29652    535    2017-04-29 02:01:00    2017-04-29 02:01:00
85629    29652    510    2017-04-29 19:03:00    2017-04-29 19:03:00
85630    29653    929    2017-04-29 20:00:00    2017-04-29 20:00:00
85631    29653    493    2017-04-29 07:46:00    2017-04-29 07:46:00
85632    29653    658    2017-04-29 03:58:00    2017-04-29 03:58:00
85633    29653    568    2017-04-29 11:06:00    2017-04-29 11:06:00
85634    29653    695    2017-04-29 23:33:00    2017-04-29 23:33:00
85635    29654    875    2017-04-29 04:00:00    2017-04-29 04:00:00
85636    29654    799    2017-04-29 06:13:00    2017-04-29 06:13:00
85637    29654    713    2017-04-29 04:25:00    2017-04-29 04:25:00
85638    29654    725    2017-04-29 22:37:00    2017-04-29 22:37:00
85639    29654    468    2017-04-29 06:11:00    2017-04-29 06:11:00
85640    29655    928    2017-04-29 08:45:00    2017-04-29 08:45:00
85641    29655    519    2017-04-29 01:39:00    2017-04-29 01:39:00
85642    29655    564    2017-04-29 03:09:00    2017-04-29 03:09:00
85643    29655    784    2017-04-29 16:31:00    2017-04-29 16:31:00
85644    29655    869    2017-04-29 07:11:00    2017-04-29 07:11:00
85645    29656    538    2017-04-29 14:58:00    2017-04-29 14:58:00
85646    29656    764    2017-04-29 17:59:00    2017-04-29 17:59:00
85647    29656    772    2017-04-29 18:46:00    2017-04-29 18:46:00
85648    29656    878    2017-04-29 11:43:00    2017-04-29 11:43:00
85649    29656    669    2017-04-29 23:47:00    2017-04-29 23:47:00
85650    29657    921    2017-04-29 23:16:00    2017-04-29 23:16:00
85651    29657    468    2017-04-29 09:55:00    2017-04-29 09:55:00
85652    29657    798    2017-04-29 09:53:00    2017-04-29 09:53:00
85653    29657    784    2017-04-29 16:02:00    2017-04-29 16:02:00
85654    29657    519    2017-04-29 11:56:00    2017-04-29 11:56:00
85655    29658    910    2017-04-29 22:16:00    2017-04-29 22:16:00
85656    29658    821    2017-04-29 11:21:00    2017-04-29 11:21:00
85657    29658    720    2017-04-29 20:04:00    2017-04-29 20:04:00
85658    29658    778    2017-04-29 19:12:00    2017-04-29 19:12:00
85659    29658    681    2017-04-29 21:09:00    2017-04-29 21:09:00
85660    29659    588    2017-04-29 19:00:00    2017-04-29 19:00:00
85661    29659    466    2017-04-29 18:32:00    2017-04-29 18:32:00
85662    29659    948    2017-04-29 09:27:00    2017-04-29 09:27:00
85663    29659    877    2017-04-29 07:00:00    2017-04-29 07:00:00
85664    29659    555    2017-04-29 15:25:00    2017-04-29 15:25:00
85665    29660    585    2017-04-29 18:30:00    2017-04-29 18:30:00
85666    29660    747    2017-04-29 18:32:00    2017-04-29 18:32:00
85667    29660    893    2017-04-29 10:45:00    2017-04-29 10:45:00
85668    29660    796    2017-04-29 11:56:00    2017-04-29 11:56:00
85669    29660    646    2017-04-29 12:53:00    2017-04-29 12:53:00
85670    29661    477    2017-04-29 12:00:00    2017-04-29 12:00:00
85671    29661    860    2017-04-29 11:38:00    2017-04-29 11:38:00
85672    29661    845    2017-04-29 11:58:00    2017-04-29 11:58:00
85673    29661    523    2017-04-29 05:50:00    2017-04-29 05:50:00
85674    29661    573    2017-04-29 02:04:00    2017-04-29 02:04:00
85675    29662    920    2017-04-29 16:20:00    2017-04-29 16:20:00
85676    29662    836    2017-04-29 05:28:00    2017-04-29 05:28:00
85677    29662    653    2017-04-29 21:51:00    2017-04-29 21:51:00
85678    29662    571    2017-04-29 06:06:00    2017-04-29 06:06:00
85679    29662    791    2017-04-29 08:41:00    2017-04-29 08:41:00
85680    29663    714    2017-04-29 03:32:00    2017-04-29 03:32:00
85681    29663    864    2017-04-29 07:53:00    2017-04-29 07:53:00
85682    29663    614    2017-04-29 04:30:00    2017-04-29 04:30:00
85683    29663    584    2017-04-29 11:34:00    2017-04-29 11:34:00
85684    29663    608    2017-04-29 06:16:00    2017-04-29 06:16:00
85685    29664    597    2017-04-29 08:00:00    2017-04-29 08:00:00
85686    29664    926    2017-04-29 02:14:00    2017-04-29 02:14:00
85687    29664    903    2017-04-29 08:14:00    2017-04-29 08:14:00
85688    29664    654    2017-04-29 17:02:00    2017-04-29 17:02:00
85689    29664    494    2017-04-29 08:03:00    2017-04-29 08:03:00
85690    29665    831    2017-04-29 19:36:00    2017-04-29 19:36:00
85691    29665    865    2017-04-29 12:32:00    2017-04-29 12:32:00
85692    29665    482    2017-04-29 23:47:00    2017-04-29 23:47:00
85693    29665    850    2017-04-29 21:39:00    2017-04-29 21:39:00
85694    29665    902    2017-04-29 04:41:00    2017-04-29 04:41:00
85695    29666    860    2017-04-29 19:01:00    2017-04-29 19:01:00
85696    29666    855    2017-04-29 04:34:00    2017-04-29 04:34:00
85697    29666    473    2017-04-29 09:14:00    2017-04-29 09:14:00
85698    29666    858    2017-04-29 18:17:00    2017-04-29 18:17:00
85699    29666    540    2017-04-29 03:36:00    2017-04-29 03:36:00
85700    29667    784    2017-04-29 23:55:00    2017-04-29 23:55:00
85701    29667    957    2017-04-29 13:13:00    2017-04-29 13:13:00
85702    29667    565    2017-04-29 07:30:00    2017-04-29 07:30:00
85703    29667    944    2017-04-29 10:56:00    2017-04-29 10:56:00
85704    29667    494    2017-04-29 01:17:00    2017-04-29 01:17:00
85705    29668    844    2017-04-29 06:42:00    2017-04-29 06:42:00
85706    29668    704    2017-04-29 14:12:00    2017-04-29 14:12:00
85707    29668    786    2017-04-29 08:30:00    2017-04-29 08:30:00
85708    29668    579    2017-04-29 11:52:00    2017-04-29 11:52:00
85709    29668    947    2017-04-29 18:39:00    2017-04-29 18:39:00
85710    29669    832    2017-04-29 21:33:00    2017-04-29 21:33:00
85711    29669    934    2017-04-29 01:07:00    2017-04-29 01:07:00
85712    29669    642    2017-04-29 03:09:00    2017-04-29 03:09:00
85713    29669    887    2017-04-29 05:14:00    2017-04-29 05:14:00
85714    29669    701    2017-04-29 17:16:00    2017-04-29 17:16:00
85715    29670    653    2017-04-29 08:10:00    2017-04-29 08:10:00
85716    29670    748    2017-04-29 09:00:00    2017-04-29 09:00:00
85717    29670    561    2017-04-29 11:13:00    2017-04-29 11:13:00
85718    29670    827    2017-04-29 19:27:00    2017-04-29 19:27:00
85719    29670    795    2017-04-29 10:43:00    2017-04-29 10:43:00
85720    29671    683    2017-04-29 04:43:00    2017-04-29 04:43:00
85721    29671    807    2017-04-29 11:23:00    2017-04-29 11:23:00
85722    29671    779    2017-04-29 03:24:00    2017-04-29 03:24:00
85723    29671    961    2017-04-29 01:49:00    2017-04-29 01:49:00
85724    29671    548    2017-04-29 08:10:00    2017-04-29 08:10:00
85725    29672    813    2017-04-29 14:05:00    2017-04-29 14:05:00
85726    29672    845    2017-04-29 11:12:00    2017-04-29 11:12:00
85727    29672    712    2017-04-29 02:29:00    2017-04-29 02:29:00
85728    29672    479    2017-04-29 19:18:00    2017-04-29 19:18:00
85729    29672    806    2017-04-29 06:06:00    2017-04-29 06:06:00
85730    29673    799    2017-04-29 06:18:00    2017-04-29 06:18:00
85731    29673    812    2017-04-29 11:17:00    2017-04-29 11:17:00
85732    29673    723    2017-04-29 05:03:00    2017-04-29 05:03:00
85733    29673    525    2017-04-29 04:48:00    2017-04-29 04:48:00
85734    29673    480    2017-04-29 11:01:00    2017-04-29 11:01:00
85735    29674    874    2017-04-29 03:36:00    2017-04-29 03:36:00
85736    29674    688    2017-04-29 03:44:00    2017-04-29 03:44:00
85737    29674    647    2017-04-29 05:00:00    2017-04-29 05:00:00
85738    29674    720    2017-04-29 02:09:00    2017-04-29 02:09:00
85739    29674    574    2017-04-29 05:05:00    2017-04-29 05:05:00
85740    29675    912    2017-04-29 11:19:00    2017-04-29 11:19:00
85741    29675    819    2017-04-29 07:21:00    2017-04-29 07:21:00
85742    29675    684    2017-04-29 20:49:00    2017-04-29 20:49:00
85743    29675    735    2017-04-29 14:15:00    2017-04-29 14:15:00
85744    29675    564    2017-04-29 10:26:00    2017-04-29 10:26:00
85745    29676    606    2017-04-29 15:08:00    2017-04-29 15:08:00
85746    29676    632    2017-04-29 02:27:00    2017-04-29 02:27:00
85747    29676    497    2017-04-29 16:37:00    2017-04-29 16:37:00
85748    29676    642    2017-04-29 13:40:00    2017-04-29 13:40:00
85749    29676    614    2017-04-29 08:31:00    2017-04-29 08:31:00
85750    29677    695    2017-04-29 14:58:00    2017-04-29 14:58:00
85751    29677    726    2017-04-29 04:11:00    2017-04-29 04:11:00
85752    29677    756    2017-04-29 22:19:00    2017-04-29 22:19:00
85753    29677    872    2017-04-29 20:48:00    2017-04-29 20:48:00
85754    29677    925    2017-04-29 14:20:00    2017-04-29 14:20:00
85755    29678    774    2017-04-29 13:32:00    2017-04-29 13:32:00
85756    29678    785    2017-04-29 21:21:00    2017-04-29 21:21:00
85757    29678    717    2017-04-29 03:00:00    2017-04-29 03:00:00
85758    29678    925    2017-04-29 09:19:00    2017-04-29 09:19:00
85759    29678    915    2017-04-29 12:12:00    2017-04-29 12:12:00
85760    29679    482    2017-04-29 06:39:00    2017-04-29 06:39:00
85761    29679    705    2017-04-29 20:18:00    2017-04-29 20:18:00
85762    29679    598    2017-04-29 12:26:00    2017-04-29 12:26:00
85763    29679    554    2017-04-29 15:59:00    2017-04-29 15:59:00
85764    29679    908    2017-04-29 11:40:00    2017-04-29 11:40:00
85765    29680    746    2017-04-29 03:49:00    2017-04-29 03:49:00
85766    29680    465    2017-04-29 18:43:00    2017-04-29 18:43:00
85767    29680    724    2017-04-29 14:48:00    2017-04-29 14:48:00
85768    29680    589    2017-04-29 09:25:00    2017-04-29 09:25:00
85769    29680    650    2017-04-29 07:07:00    2017-04-29 07:07:00
85770    29681    463    2017-04-29 10:37:00    2017-04-29 10:37:00
85771    29681    879    2017-04-29 18:22:00    2017-04-29 18:22:00
85772    29681    959    2017-04-29 10:37:00    2017-04-29 10:37:00
85773    29681    807    2017-04-29 13:13:00    2017-04-29 13:13:00
85774    29681    804    2017-04-29 19:11:00    2017-04-29 19:11:00
85775    29682    640    2017-04-29 18:51:00    2017-04-29 18:51:00
85776    29682    491    2017-04-29 01:43:00    2017-04-29 01:43:00
85777    29682    591    2017-04-29 18:02:00    2017-04-29 18:02:00
85778    29682    702    2017-04-29 09:34:00    2017-04-29 09:34:00
85779    29682    945    2017-04-29 19:48:00    2017-04-29 19:48:00
85780    29683    522    2017-04-29 17:13:00    2017-04-29 17:13:00
85781    29683    711    2017-04-29 03:17:00    2017-04-29 03:17:00
85782    29683    521    2017-04-29 02:52:00    2017-04-29 02:52:00
85783    29683    695    2017-04-29 17:05:00    2017-04-29 17:05:00
85784    29683    675    2017-04-29 09:37:00    2017-04-29 09:37:00
85785    29684    691    2017-04-29 13:46:00    2017-04-29 13:46:00
85786    29684    842    2017-04-29 06:52:00    2017-04-29 06:52:00
85787    29684    707    2017-04-29 07:01:00    2017-04-29 07:01:00
85788    29684    625    2017-04-29 11:54:00    2017-04-29 11:54:00
85789    29684    799    2017-04-29 23:53:00    2017-04-29 23:53:00
85790    29685    576    2017-04-29 03:36:00    2017-04-29 03:36:00
85791    29685    808    2017-04-29 23:40:00    2017-04-29 23:40:00
85792    29685    612    2017-04-29 19:31:00    2017-04-29 19:31:00
85793    29685    859    2017-04-29 18:37:00    2017-04-29 18:37:00
85794    29685    948    2017-04-29 23:56:00    2017-04-29 23:56:00
85795    29686    627    2017-04-29 17:47:00    2017-04-29 17:47:00
85796    29686    690    2017-04-29 22:31:00    2017-04-29 22:31:00
85797    29686    650    2017-04-29 19:14:00    2017-04-29 19:14:00
85798    29686    510    2017-04-29 13:20:00    2017-04-29 13:20:00
85799    29686    609    2017-04-29 12:35:00    2017-04-29 12:35:00
85800    29687    949    2017-04-29 11:19:00    2017-04-29 11:19:00
85801    29687    584    2017-04-29 06:19:00    2017-04-29 06:19:00
85802    29687    479    2017-04-29 02:33:00    2017-04-29 02:33:00
85803    29687    918    2017-04-29 14:24:00    2017-04-29 14:24:00
85804    29687    550    2017-04-29 17:57:00    2017-04-29 17:57:00
85805    29688    468    2017-04-29 11:14:00    2017-04-29 11:14:00
85806    29688    734    2017-04-29 10:48:00    2017-04-29 10:48:00
85807    29688    958    2017-04-29 23:41:00    2017-04-29 23:41:00
85808    29688    872    2017-04-29 09:20:00    2017-04-29 09:20:00
85809    29688    538    2017-04-29 06:01:00    2017-04-29 06:01:00
85810    29689    594    2017-04-29 04:47:00    2017-04-29 04:47:00
85811    29689    679    2017-04-29 20:12:00    2017-04-29 20:12:00
85812    29689    746    2017-04-29 07:44:00    2017-04-29 07:44:00
85813    29689    622    2017-04-29 11:47:00    2017-04-29 11:47:00
85814    29689    579    2017-04-29 10:28:00    2017-04-29 10:28:00
85815    29690    594    2017-04-29 10:24:00    2017-04-29 10:24:00
85816    29690    841    2017-04-29 20:19:00    2017-04-29 20:19:00
85817    29690    717    2017-04-29 07:43:00    2017-04-29 07:43:00
85818    29690    473    2017-04-29 18:00:00    2017-04-29 18:00:00
85819    29690    808    2017-04-29 17:07:00    2017-04-29 17:07:00
85820    29691    716    2017-04-29 06:15:00    2017-04-29 06:15:00
85821    29691    557    2017-04-29 02:40:00    2017-04-29 02:40:00
85822    29691    564    2017-04-29 04:48:00    2017-04-29 04:48:00
85823    29691    809    2017-04-29 23:26:00    2017-04-29 23:26:00
85824    29691    556    2017-04-29 12:08:00    2017-04-29 12:08:00
85825    29692    635    2017-04-29 07:43:00    2017-04-29 07:43:00
85826    29692    794    2017-04-29 03:00:00    2017-04-29 03:00:00
85827    29692    516    2017-04-29 07:27:00    2017-04-29 07:27:00
85828    29692    637    2017-04-29 19:03:00    2017-04-29 19:03:00
85829    29692    575    2017-04-29 21:45:00    2017-04-29 21:45:00
85830    29693    767    2017-04-29 06:00:00    2017-04-29 06:00:00
85831    29693    938    2017-04-29 06:52:00    2017-04-29 06:52:00
85832    29693    576    2017-04-29 19:58:00    2017-04-29 19:58:00
85833    29693    801    2017-04-29 12:15:00    2017-04-29 12:15:00
85834    29693    887    2017-04-29 12:43:00    2017-04-29 12:43:00
85835    29694    637    2017-04-29 01:51:00    2017-04-29 01:51:00
85836    29694    634    2017-04-29 13:30:00    2017-04-29 13:30:00
85837    29694    911    2017-04-29 08:06:00    2017-04-29 08:06:00
85838    29694    821    2017-04-29 19:48:00    2017-04-29 19:48:00
85839    29694    799    2017-04-29 01:00:00    2017-04-29 01:00:00
85840    29695    569    2017-04-29 11:17:00    2017-04-29 11:17:00
85841    29695    659    2017-04-29 04:40:00    2017-04-29 04:40:00
85842    29695    744    2017-04-29 17:02:00    2017-04-29 17:02:00
85843    29695    540    2017-04-29 09:07:00    2017-04-29 09:07:00
85844    29695    845    2017-04-29 09:33:00    2017-04-29 09:33:00
85845    29696    811    2017-04-29 12:38:00    2017-04-29 12:38:00
85846    29696    622    2017-04-29 14:51:00    2017-04-29 14:51:00
85847    29696    543    2017-04-29 08:31:00    2017-04-29 08:31:00
85848    29696    699    2017-04-29 18:19:00    2017-04-29 18:19:00
85849    29696    847    2017-04-29 19:57:00    2017-04-29 19:57:00
85850    29697    779    2017-04-29 19:08:00    2017-04-29 19:08:00
85851    29697    562    2017-04-29 22:23:00    2017-04-29 22:23:00
85852    29697    891    2017-04-29 11:45:00    2017-04-29 11:45:00
85853    29697    796    2017-04-29 05:05:00    2017-04-29 05:05:00
85854    29697    929    2017-04-29 13:53:00    2017-04-29 13:53:00
85855    29698    878    2017-04-29 09:01:00    2017-04-29 09:01:00
85856    29698    960    2017-04-29 02:33:00    2017-04-29 02:33:00
85857    29698    694    2017-04-29 14:37:00    2017-04-29 14:37:00
85858    29698    895    2017-04-29 05:38:00    2017-04-29 05:38:00
85859    29698    766    2017-04-29 09:09:00    2017-04-29 09:09:00
85860    29699    527    2017-04-29 10:00:00    2017-04-29 10:00:00
85861    29699    817    2017-04-29 04:10:00    2017-04-29 04:10:00
85862    29699    686    2017-04-29 03:42:00    2017-04-29 03:42:00
85863    29699    842    2017-04-29 13:08:00    2017-04-29 13:08:00
85864    29699    944    2017-04-29 19:42:00    2017-04-29 19:42:00
85865    29700    613    2017-04-29 07:48:00    2017-04-29 07:48:00
85866    29700    770    2017-04-29 01:56:00    2017-04-29 01:56:00
85867    29700    480    2017-04-29 22:09:00    2017-04-29 22:09:00
85868    29700    768    2017-04-29 10:42:00    2017-04-29 10:42:00
85869    29700    464    2017-04-29 15:00:00    2017-04-29 15:00:00
85870    29701    923    2017-04-29 21:22:00    2017-04-29 21:22:00
85871    29701    702    2017-04-29 17:25:00    2017-04-29 17:25:00
85872    29701    602    2017-04-29 03:01:00    2017-04-29 03:01:00
85873    29701    744    2017-04-29 20:11:00    2017-04-29 20:11:00
85874    29701    881    2017-04-29 19:42:00    2017-04-29 19:42:00
85875    29702    873    2017-04-29 16:14:00    2017-04-29 16:14:00
85876    29702    702    2017-04-29 17:59:00    2017-04-29 17:59:00
85877    29702    751    2017-04-29 04:53:00    2017-04-29 04:53:00
85878    29702    655    2017-04-29 12:13:00    2017-04-29 12:13:00
85879    29702    851    2017-04-29 07:48:00    2017-04-29 07:48:00
85880    29703    746    2017-04-29 02:01:00    2017-04-29 02:01:00
85881    29703    848    2017-04-29 06:58:00    2017-04-29 06:58:00
85882    29703    948    2017-04-29 12:32:00    2017-04-29 12:32:00
85883    29703    846    2017-04-29 08:20:00    2017-04-29 08:20:00
85884    29703    634    2017-04-29 22:06:00    2017-04-29 22:06:00
85885    29704    674    2017-04-29 03:39:00    2017-04-29 03:39:00
85886    29704    627    2017-04-29 17:27:00    2017-04-29 17:27:00
85887    29704    529    2017-04-29 10:50:00    2017-04-29 10:50:00
85888    29704    658    2017-04-29 07:01:00    2017-04-29 07:01:00
85889    29704    696    2017-04-29 22:38:00    2017-04-29 22:38:00
85890    29705    586    2017-04-29 16:03:00    2017-04-29 16:03:00
85891    29705    739    2017-04-29 20:20:00    2017-04-29 20:20:00
85892    29705    732    2017-04-29 09:11:00    2017-04-29 09:11:00
85893    29705    761    2017-04-29 14:46:00    2017-04-29 14:46:00
85894    29705    753    2017-04-29 10:24:00    2017-04-29 10:24:00
85895    29706    626    2017-04-29 03:08:00    2017-04-29 03:08:00
85896    29706    812    2017-04-29 23:43:00    2017-04-29 23:43:00
85897    29706    777    2017-04-29 21:53:00    2017-04-29 21:53:00
85898    29706    788    2017-04-29 17:01:00    2017-04-29 17:01:00
85899    29706    652    2017-04-29 04:01:00    2017-04-29 04:01:00
85900    29707    829    2017-04-29 02:45:00    2017-04-29 02:45:00
85901    29707    727    2017-04-29 20:40:00    2017-04-29 20:40:00
85902    29707    779    2017-04-29 20:35:00    2017-04-29 20:35:00
85903    29707    617    2017-04-29 21:26:00    2017-04-29 21:26:00
85904    29707    630    2017-04-29 19:38:00    2017-04-29 19:38:00
85905    29708    627    2017-04-29 10:51:00    2017-04-29 10:51:00
85906    29708    961    2017-04-29 05:43:00    2017-04-29 05:43:00
85907    29708    532    2017-04-29 01:38:00    2017-04-29 01:38:00
85908    29708    948    2017-04-29 23:33:00    2017-04-29 23:33:00
85909    29708    674    2017-04-29 16:51:00    2017-04-29 16:51:00
85910    29709    613    2017-04-29 01:50:00    2017-04-29 01:50:00
85911    29709    700    2017-04-29 16:55:00    2017-04-29 16:55:00
85912    29709    884    2017-04-29 09:12:00    2017-04-29 09:12:00
85913    29709    667    2017-04-29 13:21:00    2017-04-29 13:21:00
85914    29709    540    2017-04-29 22:23:00    2017-04-29 22:23:00
85915    29710    823    2017-04-29 03:14:00    2017-04-29 03:14:00
85916    29710    642    2017-04-29 10:11:00    2017-04-29 10:11:00
85917    29710    751    2017-04-29 14:00:00    2017-04-29 14:00:00
85918    29710    744    2017-04-29 21:53:00    2017-04-29 21:53:00
85919    29710    734    2017-04-29 23:43:00    2017-04-29 23:43:00
85920    29711    725    2017-04-29 11:10:00    2017-04-29 11:10:00
85921    29711    796    2017-04-29 12:35:00    2017-04-29 12:35:00
85922    29711    658    2017-04-29 19:06:00    2017-04-29 19:06:00
85923    29711    616    2017-04-29 02:19:00    2017-04-29 02:19:00
85924    29711    502    2017-04-29 23:50:00    2017-04-29 23:50:00
85925    29712    567    2017-04-29 11:14:00    2017-04-29 11:14:00
85926    29712    521    2017-04-29 03:29:00    2017-04-29 03:29:00
85927    29712    802    2017-04-29 13:18:00    2017-04-29 13:18:00
85928    29712    667    2017-04-29 12:55:00    2017-04-29 12:55:00
85929    29712    668    2017-04-29 03:40:00    2017-04-29 03:40:00
85930    29713    867    2017-04-29 17:00:00    2017-04-29 17:00:00
85931    29713    627    2017-04-29 20:10:00    2017-04-29 20:10:00
85932    29713    589    2017-04-29 21:24:00    2017-04-29 21:24:00
85933    29713    958    2017-04-29 20:00:00    2017-04-29 20:00:00
85934    29713    553    2017-04-29 01:02:00    2017-04-29 01:02:00
85935    29714    800    2017-04-29 12:44:00    2017-04-29 12:44:00
85936    29714    604    2017-04-29 07:36:00    2017-04-29 07:36:00
85937    29714    533    2017-04-29 11:41:00    2017-04-29 11:41:00
85938    29714    486    2017-04-29 18:24:00    2017-04-29 18:24:00
85939    29714    528    2017-04-29 17:34:00    2017-04-29 17:34:00
85940    29715    821    2017-04-29 20:05:00    2017-04-29 20:05:00
85941    29715    760    2017-04-29 05:26:00    2017-04-29 05:26:00
85942    29715    547    2017-04-29 17:49:00    2017-04-29 17:49:00
85943    29715    772    2017-04-29 13:55:00    2017-04-29 13:55:00
85944    29715    502    2017-04-29 23:00:00    2017-04-29 23:00:00
85945    29716    667    2017-04-29 13:17:00    2017-04-29 13:17:00
85946    29716    506    2017-04-29 17:18:00    2017-04-29 17:18:00
85947    29716    606    2017-04-29 16:27:00    2017-04-29 16:27:00
85948    29716    696    2017-04-29 09:19:00    2017-04-29 09:19:00
85949    29716    785    2017-04-29 03:42:00    2017-04-29 03:42:00
85950    29717    729    2017-04-29 15:00:00    2017-04-29 15:00:00
85951    29717    734    2017-04-29 21:34:00    2017-04-29 21:34:00
85952    29717    907    2017-04-29 04:04:00    2017-04-29 04:04:00
85953    29717    535    2017-04-29 04:15:00    2017-04-29 04:15:00
85954    29717    959    2017-04-29 14:22:00    2017-04-29 14:22:00
85955    29718    747    2017-04-29 14:58:00    2017-04-29 14:58:00
85956    29718    645    2017-04-29 04:07:00    2017-04-29 04:07:00
85957    29718    514    2017-04-29 14:38:00    2017-04-29 14:38:00
85958    29718    507    2017-04-29 21:53:00    2017-04-29 21:53:00
85959    29718    482    2017-04-29 03:15:00    2017-04-29 03:15:00
85960    29719    756    2017-04-29 22:06:00    2017-04-29 22:06:00
85961    29719    545    2017-04-29 21:25:00    2017-04-29 21:25:00
85962    29719    753    2017-04-29 06:23:00    2017-04-29 06:23:00
85963    29719    611    2017-04-29 02:31:00    2017-04-29 02:31:00
85964    29719    729    2017-04-29 05:39:00    2017-04-29 05:39:00
85965    29720    756    2017-04-29 01:37:00    2017-04-29 01:37:00
85966    29720    659    2017-04-29 11:21:00    2017-04-29 11:21:00
85967    29720    813    2017-04-29 20:05:00    2017-04-29 20:05:00
85968    29720    594    2017-04-29 11:39:00    2017-04-29 11:39:00
85969    29720    731    2017-04-29 13:29:00    2017-04-29 13:29:00
85970    29721    540    2017-04-29 16:42:00    2017-04-29 16:42:00
85971    29721    532    2017-04-29 03:41:00    2017-04-29 03:41:00
85972    29721    906    2017-04-29 22:45:00    2017-04-29 22:45:00
85973    29721    779    2017-04-29 02:42:00    2017-04-29 02:42:00
85974    29721    881    2017-04-29 06:46:00    2017-04-29 06:46:00
85975    29722    636    2017-04-29 20:51:00    2017-04-29 20:51:00
85976    29722    860    2017-04-29 05:30:00    2017-04-29 05:30:00
85977    29722    855    2017-04-29 22:48:00    2017-04-29 22:48:00
85978    29722    554    2017-04-29 08:49:00    2017-04-29 08:49:00
85979    29722    713    2017-04-29 08:05:00    2017-04-29 08:05:00
85980    29723    905    2017-04-29 12:26:00    2017-04-29 12:26:00
85981    29723    714    2017-04-29 15:42:00    2017-04-29 15:42:00
85982    29723    590    2017-04-29 16:05:00    2017-04-29 16:05:00
85983    29723    726    2017-04-29 04:19:00    2017-04-29 04:19:00
85984    29723    914    2017-04-29 12:52:00    2017-04-29 12:52:00
85985    29724    813    2017-04-30 19:28:00    2017-04-30 19:28:00
85986    29724    626    2017-04-30 12:34:00    2017-04-30 12:34:00
85987    29724    900    2017-04-30 10:18:00    2017-04-30 10:18:00
85988    29724    686    2017-04-30 01:34:00    2017-04-30 01:34:00
85989    29724    660    2017-04-30 17:25:00    2017-04-30 17:25:00
85990    29725    956    2017-04-30 08:06:00    2017-04-30 08:06:00
85991    29725    688    2017-04-30 09:30:00    2017-04-30 09:30:00
85992    29725    529    2017-04-30 19:36:00    2017-04-30 19:36:00
85993    29725    955    2017-04-30 01:58:00    2017-04-30 01:58:00
85994    29725    653    2017-04-30 09:04:00    2017-04-30 09:04:00
85995    29726    904    2017-04-30 11:14:00    2017-04-30 11:14:00
85996    29726    546    2017-04-30 06:34:00    2017-04-30 06:34:00
85997    29726    855    2017-04-30 18:02:00    2017-04-30 18:02:00
85998    29726    957    2017-04-30 05:36:00    2017-04-30 05:36:00
85999    29726    612    2017-04-30 08:00:00    2017-04-30 08:00:00
86000    29727    866    2017-04-30 04:27:00    2017-04-30 04:27:00
86001    29727    572    2017-04-30 09:34:00    2017-04-30 09:34:00
86002    29727    468    2017-04-30 19:08:00    2017-04-30 19:08:00
86003    29727    672    2017-04-30 05:20:00    2017-04-30 05:20:00
86004    29727    625    2017-04-30 08:03:00    2017-04-30 08:03:00
86005    29728    607    2017-04-30 12:55:00    2017-04-30 12:55:00
86006    29728    922    2017-04-30 20:42:00    2017-04-30 20:42:00
86007    29728    680    2017-04-30 10:10:00    2017-04-30 10:10:00
86008    29728    675    2017-04-30 01:21:00    2017-04-30 01:21:00
86009    29728    956    2017-04-30 20:02:00    2017-04-30 20:02:00
86010    29729    824    2017-04-30 06:32:00    2017-04-30 06:32:00
86011    29729    747    2017-04-30 18:21:00    2017-04-30 18:21:00
86012    29729    943    2017-04-30 08:02:00    2017-04-30 08:02:00
86013    29729    723    2017-04-30 11:50:00    2017-04-30 11:50:00
86014    29729    793    2017-04-30 01:57:00    2017-04-30 01:57:00
86015    29730    796    2017-04-30 06:07:00    2017-04-30 06:07:00
86016    29730    784    2017-04-30 22:10:00    2017-04-30 22:10:00
86017    29730    835    2017-04-30 10:21:00    2017-04-30 10:21:00
86018    29730    515    2017-04-30 03:44:00    2017-04-30 03:44:00
86019    29730    723    2017-04-30 16:50:00    2017-04-30 16:50:00
86020    29731    641    2017-04-30 13:37:00    2017-04-30 13:37:00
86021    29731    686    2017-04-30 17:09:00    2017-04-30 17:09:00
86022    29731    670    2017-04-30 07:39:00    2017-04-30 07:39:00
86023    29731    654    2017-04-30 01:30:00    2017-04-30 01:30:00
86024    29731    765    2017-04-30 04:04:00    2017-04-30 04:04:00
86025    29732    528    2017-04-30 09:24:00    2017-04-30 09:24:00
86026    29732    918    2017-04-30 14:39:00    2017-04-30 14:39:00
86027    29732    798    2017-04-30 02:41:00    2017-04-30 02:41:00
86028    29732    600    2017-04-30 12:55:00    2017-04-30 12:55:00
86029    29732    582    2017-04-30 20:00:00    2017-04-30 20:00:00
86030    29733    475    2017-04-30 06:01:00    2017-04-30 06:01:00
86031    29733    689    2017-04-30 07:48:00    2017-04-30 07:48:00
86032    29733    493    2017-04-30 18:10:00    2017-04-30 18:10:00
86033    29733    798    2017-04-30 01:24:00    2017-04-30 01:24:00
86034    29733    651    2017-04-30 05:38:00    2017-04-30 05:38:00
86035    29734    520    2017-04-30 18:17:00    2017-04-30 18:17:00
86036    29734    653    2017-04-30 04:50:00    2017-04-30 04:50:00
86037    29734    700    2017-04-30 22:50:00    2017-04-30 22:50:00
86038    29734    856    2017-04-30 20:59:00    2017-04-30 20:59:00
86039    29734    834    2017-04-30 16:00:00    2017-04-30 16:00:00
86040    29735    485    2017-04-30 07:53:00    2017-04-30 07:53:00
86041    29735    576    2017-04-30 22:22:00    2017-04-30 22:22:00
86042    29735    812    2017-04-30 16:17:00    2017-04-30 16:17:00
86043    29735    589    2017-04-30 03:40:00    2017-04-30 03:40:00
86044    29735    518    2017-04-30 04:39:00    2017-04-30 04:39:00
86045    29736    860    2017-04-30 23:05:00    2017-04-30 23:05:00
86046    29736    929    2017-04-30 03:45:00    2017-04-30 03:45:00
86047    29736    696    2017-04-30 18:24:00    2017-04-30 18:24:00
86048    29736    623    2017-04-30 01:21:00    2017-04-30 01:21:00
86049    29736    470    2017-04-30 14:47:00    2017-04-30 14:47:00
86050    29737    958    2017-04-30 10:44:00    2017-04-30 10:44:00
86051    29737    807    2017-04-30 20:30:00    2017-04-30 20:30:00
86052    29737    876    2017-04-30 06:51:00    2017-04-30 06:51:00
86053    29737    769    2017-04-30 19:37:00    2017-04-30 19:37:00
86054    29737    702    2017-04-30 19:45:00    2017-04-30 19:45:00
86055    29738    666    2017-04-30 04:32:00    2017-04-30 04:32:00
86056    29738    598    2017-04-30 13:10:00    2017-04-30 13:10:00
86057    29738    561    2017-04-30 09:45:00    2017-04-30 09:45:00
86058    29738    842    2017-04-30 03:56:00    2017-04-30 03:56:00
86059    29738    895    2017-04-30 09:49:00    2017-04-30 09:49:00
86060    29739    940    2017-04-30 23:58:00    2017-04-30 23:58:00
86061    29739    472    2017-04-30 09:02:00    2017-04-30 09:02:00
86062    29739    906    2017-04-30 12:27:00    2017-04-30 12:27:00
86063    29739    466    2017-04-30 19:21:00    2017-04-30 19:21:00
86064    29739    734    2017-04-30 19:03:00    2017-04-30 19:03:00
86065    29740    923    2017-04-30 13:43:00    2017-04-30 13:43:00
86066    29740    584    2017-04-30 11:28:00    2017-04-30 11:28:00
86067    29740    716    2017-04-30 16:34:00    2017-04-30 16:34:00
86068    29740    725    2017-04-30 06:32:00    2017-04-30 06:32:00
86069    29740    636    2017-04-30 01:21:00    2017-04-30 01:21:00
86070    29741    587    2017-04-30 12:17:00    2017-04-30 12:17:00
86071    29741    613    2017-04-30 01:29:00    2017-04-30 01:29:00
86072    29741    691    2017-04-30 19:55:00    2017-04-30 19:55:00
86073    29741    802    2017-04-30 08:20:00    2017-04-30 08:20:00
86074    29741    527    2017-04-30 07:05:00    2017-04-30 07:05:00
86075    29742    853    2017-04-30 03:20:00    2017-04-30 03:20:00
86076    29742    924    2017-04-30 03:19:00    2017-04-30 03:19:00
86077    29742    591    2017-04-30 14:09:00    2017-04-30 14:09:00
86078    29742    914    2017-04-30 16:33:00    2017-04-30 16:33:00
86079    29742    793    2017-04-30 18:42:00    2017-04-30 18:42:00
86080    29743    679    2017-04-30 04:30:00    2017-04-30 04:30:00
86081    29743    875    2017-04-30 17:11:00    2017-04-30 17:11:00
86082    29743    874    2017-04-30 07:15:00    2017-04-30 07:15:00
86083    29743    862    2017-04-30 22:52:00    2017-04-30 22:52:00
86084    29743    933    2017-04-30 22:09:00    2017-04-30 22:09:00
86085    29744    642    2017-04-30 12:36:00    2017-04-30 12:36:00
86086    29744    759    2017-04-30 08:27:00    2017-04-30 08:27:00
86087    29744    961    2017-04-30 03:41:00    2017-04-30 03:41:00
86088    29744    769    2017-04-30 22:13:00    2017-04-30 22:13:00
86089    29744    736    2017-04-30 09:14:00    2017-04-30 09:14:00
86090    29745    914    2017-04-30 04:47:00    2017-04-30 04:47:00
86091    29745    826    2017-04-30 13:55:00    2017-04-30 13:55:00
86092    29745    715    2017-04-30 20:15:00    2017-04-30 20:15:00
86093    29745    791    2017-04-30 14:48:00    2017-04-30 14:48:00
86094    29745    921    2017-04-30 09:37:00    2017-04-30 09:37:00
86095    29746    657    2017-04-30 05:01:00    2017-04-30 05:01:00
86096    29746    856    2017-04-30 17:43:00    2017-04-30 17:43:00
86097    29746    607    2017-04-30 05:42:00    2017-04-30 05:42:00
86098    29746    929    2017-04-30 01:19:00    2017-04-30 01:19:00
86099    29746    816    2017-04-30 11:43:00    2017-04-30 11:43:00
86100    29747    603    2017-04-30 05:46:00    2017-04-30 05:46:00
86101    29747    625    2017-04-30 05:27:00    2017-04-30 05:27:00
86102    29747    611    2017-04-30 19:54:00    2017-04-30 19:54:00
86103    29747    531    2017-04-30 10:23:00    2017-04-30 10:23:00
86104    29747    675    2017-04-30 20:13:00    2017-04-30 20:13:00
86105    29748    832    2017-04-30 23:30:00    2017-04-30 23:30:00
86106    29748    656    2017-04-30 06:24:00    2017-04-30 06:24:00
86107    29748    924    2017-04-30 23:41:00    2017-04-30 23:41:00
86108    29748    819    2017-04-30 19:52:00    2017-04-30 19:52:00
86109    29748    498    2017-04-30 06:42:00    2017-04-30 06:42:00
86110    29749    909    2017-04-30 15:35:00    2017-04-30 15:35:00
86111    29749    787    2017-04-30 15:28:00    2017-04-30 15:28:00
86112    29749    622    2017-04-30 05:33:00    2017-04-30 05:33:00
86113    29749    639    2017-04-30 07:47:00    2017-04-30 07:47:00
86114    29749    683    2017-04-30 22:52:00    2017-04-30 22:52:00
86115    29750    619    2017-04-30 04:26:00    2017-04-30 04:26:00
86116    29750    893    2017-04-30 06:53:00    2017-04-30 06:53:00
86117    29750    653    2017-04-30 19:59:00    2017-04-30 19:59:00
86118    29750    953    2017-04-30 22:05:00    2017-04-30 22:05:00
86119    29750    890    2017-04-30 16:58:00    2017-04-30 16:58:00
86120    29751    932    2017-04-30 05:07:00    2017-04-30 05:07:00
86121    29751    845    2017-04-30 06:17:00    2017-04-30 06:17:00
86122    29751    662    2017-04-30 12:30:00    2017-04-30 12:30:00
86123    29751    860    2017-04-30 22:00:00    2017-04-30 22:00:00
86124    29751    800    2017-04-30 17:02:00    2017-04-30 17:02:00
86125    29752    490    2017-04-30 13:24:00    2017-04-30 13:24:00
86126    29752    811    2017-04-30 12:49:00    2017-04-30 12:49:00
86127    29752    824    2017-04-30 21:50:00    2017-04-30 21:50:00
86128    29752    503    2017-04-30 13:46:00    2017-04-30 13:46:00
86129    29752    566    2017-04-30 10:21:00    2017-04-30 10:21:00
86130    29753    578    2017-04-30 19:23:00    2017-04-30 19:23:00
86131    29753    745    2017-04-30 10:39:00    2017-04-30 10:39:00
86132    29753    781    2017-04-30 16:39:00    2017-04-30 16:39:00
86133    29753    482    2017-04-30 14:43:00    2017-04-30 14:43:00
86134    29753    760    2017-04-30 07:48:00    2017-04-30 07:48:00
86135    29754    689    2017-04-30 03:36:00    2017-04-30 03:36:00
86136    29754    725    2017-04-30 04:42:00    2017-04-30 04:42:00
86137    29754    507    2017-04-30 14:11:00    2017-04-30 14:11:00
86138    29754    799    2017-04-30 15:46:00    2017-04-30 15:46:00
86139    29754    543    2017-04-30 06:35:00    2017-04-30 06:35:00
86140    29755    593    2017-04-30 02:26:00    2017-04-30 02:26:00
86141    29755    730    2017-04-30 11:00:00    2017-04-30 11:00:00
86142    29755    832    2017-04-30 08:27:00    2017-04-30 08:27:00
86143    29755    856    2017-04-30 23:57:00    2017-04-30 23:57:00
86144    29755    641    2017-04-30 17:15:00    2017-04-30 17:15:00
86145    29756    593    2017-04-30 04:49:00    2017-04-30 04:49:00
86146    29756    498    2017-04-30 13:23:00    2017-04-30 13:23:00
86147    29756    696    2017-04-30 10:42:00    2017-04-30 10:42:00
86148    29756    680    2017-04-30 13:18:00    2017-04-30 13:18:00
86149    29756    547    2017-04-30 10:54:00    2017-04-30 10:54:00
86150    29757    634    2017-04-30 02:52:00    2017-04-30 02:52:00
86151    29757    672    2017-04-30 08:15:00    2017-04-30 08:15:00
86152    29757    555    2017-04-30 21:52:00    2017-04-30 21:52:00
86153    29757    676    2017-04-30 11:48:00    2017-04-30 11:48:00
86154    29757    757    2017-04-30 08:37:00    2017-04-30 08:37:00
86155    29758    852    2017-04-30 06:14:00    2017-04-30 06:14:00
86156    29758    597    2017-04-30 12:11:00    2017-04-30 12:11:00
86157    29758    858    2017-04-30 22:42:00    2017-04-30 22:42:00
86158    29758    528    2017-04-30 08:28:00    2017-04-30 08:28:00
86159    29758    836    2017-04-30 01:33:00    2017-04-30 01:33:00
86160    29759    913    2017-04-30 18:03:00    2017-04-30 18:03:00
86161    29759    607    2017-04-30 06:16:00    2017-04-30 06:16:00
86162    29759    760    2017-04-30 09:15:00    2017-04-30 09:15:00
86163    29759    626    2017-04-30 02:40:00    2017-04-30 02:40:00
86164    29759    620    2017-04-30 16:33:00    2017-04-30 16:33:00
86165    29760    684    2017-04-30 14:21:00    2017-04-30 14:21:00
86166    29760    843    2017-04-30 14:01:00    2017-04-30 14:01:00
86167    29760    655    2017-04-30 18:46:00    2017-04-30 18:46:00
86168    29760    678    2017-04-30 12:11:00    2017-04-30 12:11:00
86169    29760    616    2017-04-30 07:15:00    2017-04-30 07:15:00
86170    29761    912    2017-04-30 03:27:00    2017-04-30 03:27:00
86171    29761    476    2017-04-30 06:02:00    2017-04-30 06:02:00
86172    29761    601    2017-04-30 07:11:00    2017-04-30 07:11:00
86173    29761    779    2017-04-30 02:45:00    2017-04-30 02:45:00
86174    29761    487    2017-04-30 08:55:00    2017-04-30 08:55:00
86175    29762    481    2017-04-30 18:33:00    2017-04-30 18:33:00
86176    29762    889    2017-04-30 06:49:00    2017-04-30 06:49:00
86177    29762    635    2017-04-30 10:52:00    2017-04-30 10:52:00
86178    29762    607    2017-04-30 20:27:00    2017-04-30 20:27:00
86179    29762    722    2017-04-30 22:04:00    2017-04-30 22:04:00
86180    29763    922    2017-04-30 23:31:00    2017-04-30 23:31:00
86181    29763    942    2017-04-30 22:54:00    2017-04-30 22:54:00
86182    29763    648    2017-04-30 03:22:00    2017-04-30 03:22:00
86183    29763    928    2017-04-30 21:46:00    2017-04-30 21:46:00
86184    29763    791    2017-04-30 10:18:00    2017-04-30 10:18:00
86185    29764    693    2017-04-30 18:02:00    2017-04-30 18:02:00
86186    29764    655    2017-04-30 08:42:00    2017-04-30 08:42:00
86187    29764    463    2017-04-30 08:25:00    2017-04-30 08:25:00
86188    29764    485    2017-04-30 11:06:00    2017-04-30 11:06:00
86189    29764    504    2017-04-30 18:04:00    2017-04-30 18:04:00
86190    29765    751    2017-04-30 08:45:00    2017-04-30 08:45:00
86191    29765    649    2017-04-30 11:18:00    2017-04-30 11:18:00
86192    29765    595    2017-04-30 21:08:00    2017-04-30 21:08:00
86193    29765    886    2017-04-30 05:43:00    2017-04-30 05:43:00
86194    29765    719    2017-04-30 07:18:00    2017-04-30 07:18:00
86195    29766    634    2017-04-30 17:57:00    2017-04-30 17:57:00
86196    29766    929    2017-04-30 04:41:00    2017-04-30 04:41:00
86197    29766    690    2017-04-30 02:41:00    2017-04-30 02:41:00
86198    29766    737    2017-04-30 05:03:00    2017-04-30 05:03:00
86199    29766    753    2017-04-30 22:27:00    2017-04-30 22:27:00
86200    29767    645    2017-04-30 04:21:00    2017-04-30 04:21:00
86201    29767    537    2017-04-30 23:24:00    2017-04-30 23:24:00
86202    29767    895    2017-04-30 02:23:00    2017-04-30 02:23:00
86203    29767    694    2017-04-30 06:08:00    2017-04-30 06:08:00
86204    29767    518    2017-04-30 14:11:00    2017-04-30 14:11:00
86205    29768    905    2017-04-30 10:59:00    2017-04-30 10:59:00
86206    29768    559    2017-04-30 21:15:00    2017-04-30 21:15:00
86207    29768    953    2017-04-30 02:28:00    2017-04-30 02:28:00
86208    29768    701    2017-04-30 14:21:00    2017-04-30 14:21:00
86209    29768    519    2017-04-30 20:05:00    2017-04-30 20:05:00
86210    29769    773    2017-04-30 17:51:00    2017-04-30 17:51:00
86211    29769    892    2017-04-30 15:42:00    2017-04-30 15:42:00
86212    29769    542    2017-04-30 17:37:00    2017-04-30 17:37:00
86213    29769    675    2017-04-30 22:18:00    2017-04-30 22:18:00
86214    29769    641    2017-04-30 02:29:00    2017-04-30 02:29:00
86215    29770    686    2017-04-30 11:40:00    2017-04-30 11:40:00
86216    29770    508    2017-04-30 21:51:00    2017-04-30 21:51:00
86217    29770    606    2017-04-30 04:01:00    2017-04-30 04:01:00
86218    29770    804    2017-04-30 21:42:00    2017-04-30 21:42:00
86219    29770    643    2017-04-30 20:30:00    2017-04-30 20:30:00
86220    29771    663    2017-04-30 16:30:00    2017-04-30 16:30:00
86221    29771    814    2017-04-30 15:39:00    2017-04-30 15:39:00
86222    29771    920    2017-04-30 15:01:00    2017-04-30 15:01:00
86223    29771    746    2017-04-30 10:38:00    2017-04-30 10:38:00
86224    29771    845    2017-04-30 07:25:00    2017-04-30 07:25:00
86225    29772    827    2017-04-30 10:00:00    2017-04-30 10:00:00
86226    29772    851    2017-04-30 14:55:00    2017-04-30 14:55:00
86227    29772    882    2017-04-30 20:06:00    2017-04-30 20:06:00
86228    29772    931    2017-04-30 22:52:00    2017-04-30 22:52:00
86229    29772    550    2017-04-30 16:21:00    2017-04-30 16:21:00
86230    29773    649    2017-04-30 05:53:00    2017-04-30 05:53:00
86231    29773    760    2017-04-30 19:59:00    2017-04-30 19:59:00
86232    29773    918    2017-04-30 20:06:00    2017-04-30 20:06:00
86233    29773    755    2017-04-30 18:31:00    2017-04-30 18:31:00
86234    29773    503    2017-04-30 01:55:00    2017-04-30 01:55:00
86235    29774    798    2017-04-30 05:00:00    2017-04-30 05:00:00
86236    29774    562    2017-04-30 01:29:00    2017-04-30 01:29:00
86237    29774    510    2017-04-30 03:47:00    2017-04-30 03:47:00
86238    29774    535    2017-04-30 02:51:00    2017-04-30 02:51:00
86239    29774    573    2017-04-30 06:22:00    2017-04-30 06:22:00
86240    29775    475    2017-04-30 05:34:00    2017-04-30 05:34:00
86241    29775    961    2017-04-30 12:43:00    2017-04-30 12:43:00
86242    29775    806    2017-04-30 09:09:00    2017-04-30 09:09:00
86243    29775    508    2017-04-30 07:11:00    2017-04-30 07:11:00
86244    29775    663    2017-04-30 22:05:00    2017-04-30 22:05:00
86245    29776    780    2017-04-30 08:36:00    2017-04-30 08:36:00
86246    29776    591    2017-04-30 07:30:00    2017-04-30 07:30:00
86247    29776    742    2017-04-30 16:30:00    2017-04-30 16:30:00
86248    29776    534    2017-04-30 14:38:00    2017-04-30 14:38:00
86249    29776    852    2017-04-30 21:07:00    2017-04-30 21:07:00
86250    29777    622    2017-04-30 04:46:00    2017-04-30 04:46:00
86251    29777    670    2017-04-30 12:53:00    2017-04-30 12:53:00
86252    29777    549    2017-04-30 16:44:00    2017-04-30 16:44:00
86253    29777    762    2017-04-30 03:44:00    2017-04-30 03:44:00
86254    29777    589    2017-04-30 07:12:00    2017-04-30 07:12:00
86255    29778    956    2017-04-30 13:56:00    2017-04-30 13:56:00
86256    29778    784    2017-04-30 21:12:00    2017-04-30 21:12:00
86257    29778    757    2017-04-30 06:23:00    2017-04-30 06:23:00
86258    29778    851    2017-04-30 11:36:00    2017-04-30 11:36:00
86259    29778    769    2017-04-30 14:46:00    2017-04-30 14:46:00
86260    29779    609    2017-04-30 21:49:00    2017-04-30 21:49:00
86261    29779    791    2017-04-30 13:49:00    2017-04-30 13:49:00
86262    29779    766    2017-04-30 19:40:00    2017-04-30 19:40:00
86263    29779    928    2017-04-30 06:23:00    2017-04-30 06:23:00
86264    29779    519    2017-04-30 13:32:00    2017-04-30 13:32:00
86265    29780    750    2017-04-30 20:35:00    2017-04-30 20:35:00
86266    29780    862    2017-04-30 03:32:00    2017-04-30 03:32:00
86267    29780    715    2017-04-30 13:08:00    2017-04-30 13:08:00
86268    29780    778    2017-04-30 20:48:00    2017-04-30 20:48:00
86269    29780    514    2017-04-30 02:49:00    2017-04-30 02:49:00
86270    29781    956    2017-04-30 14:50:00    2017-04-30 14:50:00
86271    29781    815    2017-04-30 13:00:00    2017-04-30 13:00:00
86272    29781    696    2017-04-30 08:54:00    2017-04-30 08:54:00
86273    29781    797    2017-04-30 19:53:00    2017-04-30 19:53:00
86274    29781    696    2017-04-30 17:48:00    2017-04-30 17:48:00
86275    29782    879    2017-04-30 22:30:00    2017-04-30 22:30:00
86276    29782    660    2017-04-30 05:14:00    2017-04-30 05:14:00
86277    29782    623    2017-04-30 20:47:00    2017-04-30 20:47:00
86278    29782    811    2017-04-30 11:16:00    2017-04-30 11:16:00
86279    29782    646    2017-04-30 14:37:00    2017-04-30 14:37:00
86280    29783    693    2017-04-30 23:14:00    2017-04-30 23:14:00
86281    29783    539    2017-04-30 04:05:00    2017-04-30 04:05:00
86282    29783    669    2017-04-30 11:00:00    2017-04-30 11:00:00
86283    29783    484    2017-04-30 13:22:00    2017-04-30 13:22:00
86284    29783    710    2017-04-30 18:25:00    2017-04-30 18:25:00
86285    29784    589    2017-04-30 12:18:00    2017-04-30 12:18:00
86286    29784    812    2017-04-30 10:18:00    2017-04-30 10:18:00
86287    29784    654    2017-04-30 02:53:00    2017-04-30 02:53:00
86288    29784    824    2017-04-30 17:56:00    2017-04-30 17:56:00
86289    29784    882    2017-04-30 19:28:00    2017-04-30 19:28:00
86290    29785    657    2017-04-30 22:42:00    2017-04-30 22:42:00
86291    29785    759    2017-04-30 16:01:00    2017-04-30 16:01:00
86292    29785    637    2017-04-30 03:52:00    2017-04-30 03:52:00
86293    29785    463    2017-04-30 22:25:00    2017-04-30 22:25:00
86294    29785    477    2017-04-30 18:48:00    2017-04-30 18:48:00
86295    29786    661    2017-04-30 21:39:00    2017-04-30 21:39:00
86296    29786    481    2017-04-30 12:20:00    2017-04-30 12:20:00
86297    29786    482    2017-04-30 06:37:00    2017-04-30 06:37:00
86298    29786    475    2017-04-30 11:58:00    2017-04-30 11:58:00
86299    29786    625    2017-04-30 13:33:00    2017-04-30 13:33:00
86300    29787    476    2017-04-30 20:56:00    2017-04-30 20:56:00
86301    29787    936    2017-04-30 12:45:00    2017-04-30 12:45:00
86302    29787    868    2017-04-30 03:41:00    2017-04-30 03:41:00
86303    29787    949    2017-04-30 21:30:00    2017-04-30 21:30:00
86304    29787    913    2017-04-30 17:49:00    2017-04-30 17:49:00
86305    29788    794    2017-04-30 08:51:00    2017-04-30 08:51:00
86306    29788    660    2017-04-30 06:31:00    2017-04-30 06:31:00
86307    29788    514    2017-04-30 20:14:00    2017-04-30 20:14:00
86308    29788    561    2017-04-30 07:48:00    2017-04-30 07:48:00
86309    29788    809    2017-04-30 02:30:00    2017-04-30 02:30:00
86310    29789    718    2017-04-30 03:30:00    2017-04-30 03:30:00
86311    29789    543    2017-04-30 22:08:00    2017-04-30 22:08:00
86312    29789    513    2017-04-30 06:06:00    2017-04-30 06:06:00
86313    29789    514    2017-04-30 06:49:00    2017-04-30 06:49:00
86314    29789    559    2017-04-30 18:35:00    2017-04-30 18:35:00
86315    29790    684    2017-04-30 02:57:00    2017-04-30 02:57:00
86316    29790    890    2017-04-30 22:15:00    2017-04-30 22:15:00
86317    29790    728    2017-04-30 23:44:00    2017-04-30 23:44:00
86318    29790    760    2017-04-30 10:36:00    2017-04-30 10:36:00
86319    29790    752    2017-04-30 08:20:00    2017-04-30 08:20:00
86320    29791    472    2017-04-30 05:14:00    2017-04-30 05:14:00
86321    29791    704    2017-04-30 02:00:00    2017-04-30 02:00:00
86322    29791    845    2017-04-30 11:15:00    2017-04-30 11:15:00
86323    29791    721    2017-04-30 03:41:00    2017-04-30 03:41:00
86324    29791    602    2017-04-30 01:52:00    2017-04-30 01:52:00
86325    29792    553    2017-04-30 19:05:00    2017-04-30 19:05:00
86326    29792    730    2017-04-30 07:22:00    2017-04-30 07:22:00
86327    29792    881    2017-04-30 21:25:00    2017-04-30 21:25:00
86328    29792    737    2017-04-30 16:00:00    2017-04-30 16:00:00
86329    29792    766    2017-04-30 23:59:00    2017-04-30 23:59:00
86330    29793    561    2017-05-01 10:08:00    2017-05-01 10:08:00
86331    29793    805    2017-05-01 21:55:00    2017-05-01 21:55:00
86332    29793    703    2017-05-01 08:53:00    2017-05-01 08:53:00
86333    29793    890    2017-05-01 11:34:00    2017-05-01 11:34:00
86334    29793    521    2017-05-01 08:28:00    2017-05-01 08:28:00
86335    29794    784    2017-05-01 08:04:00    2017-05-01 08:04:00
86336    29794    560    2017-05-01 16:23:00    2017-05-01 16:23:00
86337    29794    821    2017-05-01 03:02:00    2017-05-01 03:02:00
86338    29794    879    2017-05-01 16:00:00    2017-05-01 16:00:00
86339    29794    593    2017-05-01 15:51:00    2017-05-01 15:51:00
86340    29795    666    2017-05-01 18:51:00    2017-05-01 18:51:00
86341    29795    501    2017-05-01 21:50:00    2017-05-01 21:50:00
86342    29795    521    2017-05-01 15:02:00    2017-05-01 15:02:00
86343    29795    946    2017-05-01 08:14:00    2017-05-01 08:14:00
86344    29795    931    2017-05-01 01:44:00    2017-05-01 01:44:00
86345    29796    679    2017-05-01 04:52:00    2017-05-01 04:52:00
86346    29796    953    2017-05-01 17:29:00    2017-05-01 17:29:00
86347    29796    548    2017-05-01 09:12:00    2017-05-01 09:12:00
86348    29796    605    2017-05-01 18:00:00    2017-05-01 18:00:00
86349    29796    882    2017-05-01 22:30:00    2017-05-01 22:30:00
86350    29797    837    2017-05-01 11:25:00    2017-05-01 11:25:00
86351    29797    802    2017-05-01 17:39:00    2017-05-01 17:39:00
86352    29797    870    2017-05-01 20:16:00    2017-05-01 20:16:00
86353    29797    825    2017-05-01 01:06:00    2017-05-01 01:06:00
86354    29797    689    2017-05-01 23:31:00    2017-05-01 23:31:00
86355    29798    619    2017-05-01 05:12:00    2017-05-01 05:12:00
86356    29798    473    2017-05-01 20:30:00    2017-05-01 20:30:00
86357    29798    644    2017-05-01 14:52:00    2017-05-01 14:52:00
86358    29798    745    2017-05-01 03:32:00    2017-05-01 03:32:00
86359    29798    667    2017-05-01 23:38:00    2017-05-01 23:38:00
86360    29799    742    2017-05-01 20:55:00    2017-05-01 20:55:00
86361    29799    615    2017-05-01 01:12:00    2017-05-01 01:12:00
86362    29799    840    2017-05-01 19:03:00    2017-05-01 19:03:00
86363    29799    823    2017-05-01 01:28:00    2017-05-01 01:28:00
86364    29799    652    2017-05-01 08:34:00    2017-05-01 08:34:00
86365    29800    858    2017-05-01 05:23:00    2017-05-01 05:23:00
86366    29800    543    2017-05-01 15:46:00    2017-05-01 15:46:00
86367    29800    713    2017-05-01 11:00:00    2017-05-01 11:00:00
86368    29800    912    2017-05-01 18:12:00    2017-05-01 18:12:00
86369    29800    509    2017-05-01 22:55:00    2017-05-01 22:55:00
86370    29801    739    2017-05-01 05:05:00    2017-05-01 05:05:00
86371    29801    807    2017-05-01 15:08:00    2017-05-01 15:08:00
86372    29801    795    2017-05-01 04:00:00    2017-05-01 04:00:00
86373    29801    650    2017-05-01 11:38:00    2017-05-01 11:38:00
86374    29801    887    2017-05-01 18:56:00    2017-05-01 18:56:00
86375    29802    553    2017-05-01 13:02:00    2017-05-01 13:02:00
86376    29802    920    2017-05-01 15:27:00    2017-05-01 15:27:00
86377    29802    538    2017-05-01 02:33:00    2017-05-01 02:33:00
86378    29802    910    2017-05-01 19:31:00    2017-05-01 19:31:00
86379    29802    877    2017-05-01 06:59:00    2017-05-01 06:59:00
86380    29803    860    2017-05-01 22:49:00    2017-05-01 22:49:00
86381    29803    788    2017-05-01 11:00:00    2017-05-01 11:00:00
86382    29803    934    2017-05-01 22:54:00    2017-05-01 22:54:00
86383    29803    805    2017-05-01 12:05:00    2017-05-01 12:05:00
86384    29803    740    2017-05-01 06:23:00    2017-05-01 06:23:00
86385    29804    565    2017-05-01 02:34:00    2017-05-01 02:34:00
86386    29804    560    2017-05-01 23:13:00    2017-05-01 23:13:00
86387    29804    535    2017-05-01 05:39:00    2017-05-01 05:39:00
86388    29804    952    2017-05-01 09:43:00    2017-05-01 09:43:00
86389    29804    903    2017-05-01 18:19:00    2017-05-01 18:19:00
86390    29805    734    2017-05-01 10:37:00    2017-05-01 10:37:00
86391    29805    691    2017-05-01 22:25:00    2017-05-01 22:25:00
86392    29805    501    2017-05-01 23:28:00    2017-05-01 23:28:00
86393    29805    891    2017-05-01 11:44:00    2017-05-01 11:44:00
86394    29805    777    2017-05-01 11:32:00    2017-05-01 11:32:00
86395    29806    870    2017-05-01 13:44:00    2017-05-01 13:44:00
86396    29806    511    2017-05-01 21:13:00    2017-05-01 21:13:00
86397    29806    879    2017-05-01 03:52:00    2017-05-01 03:52:00
86398    29806    564    2017-05-01 18:25:00    2017-05-01 18:25:00
86399    29806    920    2017-05-01 01:20:00    2017-05-01 01:20:00
86400    29807    594    2017-05-01 14:27:00    2017-05-01 14:27:00
86401    29807    491    2017-05-01 09:33:00    2017-05-01 09:33:00
86402    29807    805    2017-05-01 18:26:00    2017-05-01 18:26:00
86403    29807    677    2017-05-01 09:58:00    2017-05-01 09:58:00
86404    29807    682    2017-05-01 04:22:00    2017-05-01 04:22:00
86405    29808    722    2017-05-01 21:20:00    2017-05-01 21:20:00
86406    29808    737    2017-05-01 18:00:00    2017-05-01 18:00:00
86407    29808    594    2017-05-01 09:53:00    2017-05-01 09:53:00
86408    29808    946    2017-05-01 07:19:00    2017-05-01 07:19:00
86409    29808    932    2017-05-01 11:47:00    2017-05-01 11:47:00
86410    29809    699    2017-05-01 02:10:00    2017-05-01 02:10:00
86411    29809    509    2017-05-01 01:05:00    2017-05-01 01:05:00
86412    29809    689    2017-05-01 10:10:00    2017-05-01 10:10:00
86413    29809    912    2017-05-01 19:28:00    2017-05-01 19:28:00
86414    29809    775    2017-05-01 14:51:00    2017-05-01 14:51:00
86415    29810    859    2017-05-01 20:16:00    2017-05-01 20:16:00
86416    29810    817    2017-05-01 08:56:00    2017-05-01 08:56:00
86417    29810    958    2017-05-01 13:49:00    2017-05-01 13:49:00
86418    29810    898    2017-05-01 14:52:00    2017-05-01 14:52:00
86419    29810    622    2017-05-01 17:02:00    2017-05-01 17:02:00
86420    29811    652    2017-05-01 19:10:00    2017-05-01 19:10:00
86421    29811    581    2017-05-01 19:33:00    2017-05-01 19:33:00
86422    29811    926    2017-05-01 02:19:00    2017-05-01 02:19:00
86423    29811    631    2017-05-01 13:30:00    2017-05-01 13:30:00
86424    29811    807    2017-05-01 02:17:00    2017-05-01 02:17:00
86425    29812    604    2017-05-01 20:36:00    2017-05-01 20:36:00
86426    29812    801    2017-05-01 10:13:00    2017-05-01 10:13:00
86427    29812    633    2017-05-01 18:02:00    2017-05-01 18:02:00
86428    29812    619    2017-05-01 04:43:00    2017-05-01 04:43:00
86429    29812    622    2017-05-01 13:50:00    2017-05-01 13:50:00
86430    29813    919    2017-05-01 22:21:00    2017-05-01 22:21:00
86431    29813    774    2017-05-01 12:27:00    2017-05-01 12:27:00
86432    29813    761    2017-05-01 04:01:00    2017-05-01 04:01:00
86433    29813    928    2017-05-01 04:43:00    2017-05-01 04:43:00
86434    29813    852    2017-05-01 16:37:00    2017-05-01 16:37:00
86435    29814    489    2017-05-01 21:44:00    2017-05-01 21:44:00
86436    29814    728    2017-05-01 18:19:00    2017-05-01 18:19:00
86437    29814    779    2017-05-01 03:15:00    2017-05-01 03:15:00
86438    29814    669    2017-05-01 11:24:00    2017-05-01 11:24:00
86439    29814    712    2017-05-01 03:47:00    2017-05-01 03:47:00
86440    29815    612    2017-05-01 14:40:00    2017-05-01 14:40:00
86441    29815    837    2017-05-01 18:28:00    2017-05-01 18:28:00
86442    29815    838    2017-05-01 18:54:00    2017-05-01 18:54:00
86443    29815    829    2017-05-01 16:31:00    2017-05-01 16:31:00
86444    29815    645    2017-05-01 09:57:00    2017-05-01 09:57:00
86445    29816    549    2017-05-01 11:05:00    2017-05-01 11:05:00
86446    29816    558    2017-05-01 20:49:00    2017-05-01 20:49:00
86447    29816    571    2017-05-01 13:45:00    2017-05-01 13:45:00
86448    29816    610    2017-05-01 07:35:00    2017-05-01 07:35:00
86449    29816    959    2017-05-01 09:50:00    2017-05-01 09:50:00
86450    29817    731    2017-05-01 12:55:00    2017-05-01 12:55:00
86451    29817    679    2017-05-01 06:36:00    2017-05-01 06:36:00
86452    29817    854    2017-05-01 09:41:00    2017-05-01 09:41:00
86453    29817    803    2017-05-01 11:44:00    2017-05-01 11:44:00
86454    29817    900    2017-05-01 05:43:00    2017-05-01 05:43:00
86455    29818    782    2017-05-01 19:58:00    2017-05-01 19:58:00
86456    29818    662    2017-05-01 23:21:00    2017-05-01 23:21:00
86457    29818    728    2017-05-01 23:42:00    2017-05-01 23:42:00
86458    29818    509    2017-05-01 20:32:00    2017-05-01 20:32:00
86459    29818    785    2017-05-01 06:14:00    2017-05-01 06:14:00
86460    29819    471    2017-05-01 11:39:00    2017-05-01 11:39:00
86461    29819    756    2017-05-01 13:33:00    2017-05-01 13:33:00
86462    29819    484    2017-05-01 22:35:00    2017-05-01 22:35:00
86463    29819    572    2017-05-01 03:23:00    2017-05-01 03:23:00
86464    29819    858    2017-05-01 01:04:00    2017-05-01 01:04:00
86465    29820    475    2017-05-01 20:22:00    2017-05-01 20:22:00
86466    29820    749    2017-05-01 18:59:00    2017-05-01 18:59:00
86467    29820    904    2017-05-01 06:38:00    2017-05-01 06:38:00
86468    29820    892    2017-05-01 12:37:00    2017-05-01 12:37:00
86469    29820    537    2017-05-01 07:02:00    2017-05-01 07:02:00
86470    29821    498    2017-05-01 13:39:00    2017-05-01 13:39:00
86471    29821    515    2017-05-01 05:29:00    2017-05-01 05:29:00
86472    29821    471    2017-05-01 16:31:00    2017-05-01 16:31:00
86473    29821    734    2017-05-01 08:17:00    2017-05-01 08:17:00
86474    29821    502    2017-05-01 05:53:00    2017-05-01 05:53:00
86475    29822    744    2017-05-01 20:12:00    2017-05-01 20:12:00
86476    29822    522    2017-05-01 19:19:00    2017-05-01 19:19:00
86477    29822    565    2017-05-01 02:29:00    2017-05-01 02:29:00
86478    29822    472    2017-05-01 12:24:00    2017-05-01 12:24:00
86479    29822    582    2017-05-01 22:57:00    2017-05-01 22:57:00
86480    29823    528    2017-05-01 15:05:00    2017-05-01 15:05:00
86481    29823    876    2017-05-01 07:43:00    2017-05-01 07:43:00
86482    29823    495    2017-05-01 16:11:00    2017-05-01 16:11:00
86483    29823    914    2017-05-01 17:07:00    2017-05-01 17:07:00
86484    29823    701    2017-05-01 10:53:00    2017-05-01 10:53:00
86485    29824    872    2017-05-01 18:56:00    2017-05-01 18:56:00
86486    29824    557    2017-05-01 21:28:00    2017-05-01 21:28:00
86487    29824    942    2017-05-01 07:40:00    2017-05-01 07:40:00
86488    29824    566    2017-05-01 13:35:00    2017-05-01 13:35:00
86489    29824    913    2017-05-01 19:34:00    2017-05-01 19:34:00
86490    29825    922    2017-05-01 05:54:00    2017-05-01 05:54:00
86491    29825    757    2017-05-01 05:16:00    2017-05-01 05:16:00
86492    29825    799    2017-05-01 04:05:00    2017-05-01 04:05:00
86493    29825    859    2017-05-01 04:00:00    2017-05-01 04:00:00
86494    29825    610    2017-05-01 08:28:00    2017-05-01 08:28:00
86495    29826    469    2017-05-01 08:49:00    2017-05-01 08:49:00
86496    29826    802    2017-05-01 04:17:00    2017-05-01 04:17:00
86497    29826    615    2017-05-01 05:22:00    2017-05-01 05:22:00
86498    29826    622    2017-05-01 17:46:00    2017-05-01 17:46:00
86499    29826    637    2017-05-01 17:55:00    2017-05-01 17:55:00
86500    29827    479    2017-05-01 18:59:00    2017-05-01 18:59:00
86501    29827    678    2017-05-01 21:05:00    2017-05-01 21:05:00
86502    29827    838    2017-05-01 11:37:00    2017-05-01 11:37:00
86503    29827    516    2017-05-01 11:03:00    2017-05-01 11:03:00
86504    29827    871    2017-05-01 05:50:00    2017-05-01 05:50:00
86505    29828    739    2017-05-01 06:02:00    2017-05-01 06:02:00
86506    29828    744    2017-05-01 21:36:00    2017-05-01 21:36:00
86507    29828    944    2017-05-01 11:26:00    2017-05-01 11:26:00
86508    29828    599    2017-05-01 16:52:00    2017-05-01 16:52:00
86509    29828    703    2017-05-01 10:25:00    2017-05-01 10:25:00
86510    29829    918    2017-05-01 16:52:00    2017-05-01 16:52:00
86511    29829    729    2017-05-01 11:47:00    2017-05-01 11:47:00
86512    29829    817    2017-05-01 08:09:00    2017-05-01 08:09:00
86513    29829    551    2017-05-01 10:27:00    2017-05-01 10:27:00
86514    29829    600    2017-05-01 11:41:00    2017-05-01 11:41:00
86515    29830    609    2017-05-01 09:13:00    2017-05-01 09:13:00
86516    29830    896    2017-05-01 12:25:00    2017-05-01 12:25:00
86517    29830    946    2017-05-01 08:29:00    2017-05-01 08:29:00
86518    29830    556    2017-05-01 14:54:00    2017-05-01 14:54:00
86519    29830    876    2017-05-01 19:14:00    2017-05-01 19:14:00
86520    29831    820    2017-05-01 06:23:00    2017-05-01 06:23:00
86521    29831    527    2017-05-01 06:04:00    2017-05-01 06:04:00
86522    29831    842    2017-05-01 07:53:00    2017-05-01 07:53:00
86523    29831    639    2017-05-01 15:04:00    2017-05-01 15:04:00
86524    29831    806    2017-05-01 05:09:00    2017-05-01 05:09:00
86525    29832    819    2017-05-01 15:55:00    2017-05-01 15:55:00
86526    29832    722    2017-05-01 07:07:00    2017-05-01 07:07:00
86527    29832    960    2017-05-01 12:07:00    2017-05-01 12:07:00
86528    29832    553    2017-05-01 08:14:00    2017-05-01 08:14:00
86529    29832    886    2017-05-01 13:39:00    2017-05-01 13:39:00
86530    29833    529    2017-05-01 19:34:00    2017-05-01 19:34:00
86531    29833    955    2017-05-01 12:36:00    2017-05-01 12:36:00
86532    29833    626    2017-05-01 18:04:00    2017-05-01 18:04:00
86533    29833    653    2017-05-01 05:13:00    2017-05-01 05:13:00
86534    29833    595    2017-05-01 20:56:00    2017-05-01 20:56:00
86535    29834    769    2017-05-01 06:51:00    2017-05-01 06:51:00
86536    29834    718    2017-05-01 04:44:00    2017-05-01 04:44:00
86537    29834    851    2017-05-01 12:46:00    2017-05-01 12:46:00
86538    29834    904    2017-05-01 06:42:00    2017-05-01 06:42:00
86539    29834    632    2017-05-01 23:59:00    2017-05-01 23:59:00
86540    29835    825    2017-05-01 19:32:00    2017-05-01 19:32:00
86541    29835    632    2017-05-01 02:51:00    2017-05-01 02:51:00
86542    29835    794    2017-05-01 01:19:00    2017-05-01 01:19:00
86543    29835    486    2017-05-01 23:53:00    2017-05-01 23:53:00
86544    29835    892    2017-05-01 16:57:00    2017-05-01 16:57:00
86545    29836    874    2017-05-01 20:19:00    2017-05-01 20:19:00
86546    29836    884    2017-05-01 06:07:00    2017-05-01 06:07:00
86547    29836    928    2017-05-01 11:51:00    2017-05-01 11:51:00
86548    29836    673    2017-05-01 02:55:00    2017-05-01 02:55:00
86549    29836    620    2017-05-01 14:24:00    2017-05-01 14:24:00
86550    29837    769    2017-05-01 18:36:00    2017-05-01 18:36:00
86551    29837    725    2017-05-01 22:59:00    2017-05-01 22:59:00
86552    29837    600    2017-05-01 07:38:00    2017-05-01 07:38:00
86553    29837    729    2017-05-01 13:42:00    2017-05-01 13:42:00
86554    29837    521    2017-05-01 21:17:00    2017-05-01 21:17:00
86555    29838    695    2017-05-01 02:32:00    2017-05-01 02:32:00
86556    29838    724    2017-05-01 16:14:00    2017-05-01 16:14:00
86557    29838    817    2017-05-01 12:20:00    2017-05-01 12:20:00
86558    29838    526    2017-05-01 03:33:00    2017-05-01 03:33:00
86559    29838    910    2017-05-01 02:29:00    2017-05-01 02:29:00
86560    29839    492    2017-05-01 14:20:00    2017-05-01 14:20:00
86561    29839    787    2017-05-01 09:51:00    2017-05-01 09:51:00
86562    29839    738    2017-05-01 11:20:00    2017-05-01 11:20:00
86563    29839    501    2017-05-01 20:03:00    2017-05-01 20:03:00
86564    29839    802    2017-05-01 19:28:00    2017-05-01 19:28:00
86565    29840    532    2017-05-01 22:44:00    2017-05-01 22:44:00
86566    29840    872    2017-05-01 10:46:00    2017-05-01 10:46:00
86567    29840    594    2017-05-01 11:56:00    2017-05-01 11:56:00
86568    29840    613    2017-05-01 07:26:00    2017-05-01 07:26:00
86569    29840    867    2017-05-01 06:43:00    2017-05-01 06:43:00
86570    29841    938    2017-05-01 22:24:00    2017-05-01 22:24:00
86571    29841    839    2017-05-01 14:56:00    2017-05-01 14:56:00
86572    29841    937    2017-05-01 12:03:00    2017-05-01 12:03:00
86573    29841    884    2017-05-01 09:43:00    2017-05-01 09:43:00
86574    29841    608    2017-05-01 01:51:00    2017-05-01 01:51:00
86575    29842    819    2017-05-01 19:20:00    2017-05-01 19:20:00
86576    29842    599    2017-05-01 05:04:00    2017-05-01 05:04:00
86577    29842    816    2017-05-01 08:30:00    2017-05-01 08:30:00
86578    29842    935    2017-05-01 05:36:00    2017-05-01 05:36:00
86579    29842    498    2017-05-01 01:05:00    2017-05-01 01:05:00
86580    29843    880    2017-05-01 08:04:00    2017-05-01 08:04:00
86581    29843    478    2017-05-01 02:59:00    2017-05-01 02:59:00
86582    29843    806    2017-05-01 16:43:00    2017-05-01 16:43:00
86583    29843    772    2017-05-01 22:35:00    2017-05-01 22:35:00
86584    29843    929    2017-05-01 21:23:00    2017-05-01 21:23:00
86585    29844    509    2017-05-01 13:50:00    2017-05-01 13:50:00
86586    29844    909    2017-05-01 22:30:00    2017-05-01 22:30:00
86587    29844    812    2017-05-01 08:50:00    2017-05-01 08:50:00
86588    29844    731    2017-05-01 23:48:00    2017-05-01 23:48:00
86589    29844    521    2017-05-01 15:32:00    2017-05-01 15:32:00
86590    29845    499    2017-05-01 15:38:00    2017-05-01 15:38:00
86591    29845    896    2017-05-01 02:19:00    2017-05-01 02:19:00
86592    29845    839    2017-05-01 02:49:00    2017-05-01 02:49:00
86593    29845    540    2017-05-01 20:16:00    2017-05-01 20:16:00
86594    29845    752    2017-05-01 12:40:00    2017-05-01 12:40:00
86595    29846    905    2017-05-01 08:43:00    2017-05-01 08:43:00
86596    29846    909    2017-05-01 23:33:00    2017-05-01 23:33:00
86597    29846    936    2017-05-01 17:46:00    2017-05-01 17:46:00
86598    29846    749    2017-05-01 15:59:00    2017-05-01 15:59:00
86599    29846    900    2017-05-01 17:06:00    2017-05-01 17:06:00
86600    29847    705    2017-05-01 16:16:00    2017-05-01 16:16:00
86601    29847    635    2017-05-01 02:15:00    2017-05-01 02:15:00
86602    29847    747    2017-05-01 11:44:00    2017-05-01 11:44:00
86603    29847    617    2017-05-01 06:46:00    2017-05-01 06:46:00
86604    29847    655    2017-05-01 03:19:00    2017-05-01 03:19:00
86605    29848    873    2017-05-01 01:20:00    2017-05-01 01:20:00
86606    29848    777    2017-05-01 20:09:00    2017-05-01 20:09:00
86607    29848    549    2017-05-01 02:31:00    2017-05-01 02:31:00
86608    29848    734    2017-05-01 18:52:00    2017-05-01 18:52:00
86609    29848    894    2017-05-01 23:20:00    2017-05-01 23:20:00
86610    29849    579    2017-05-01 16:15:00    2017-05-01 16:15:00
86611    29849    844    2017-05-01 05:38:00    2017-05-01 05:38:00
86612    29849    794    2017-05-01 20:34:00    2017-05-01 20:34:00
86613    29849    934    2017-05-01 13:48:00    2017-05-01 13:48:00
86614    29849    877    2017-05-01 02:13:00    2017-05-01 02:13:00
86615    29850    492    2017-05-01 18:20:00    2017-05-01 18:20:00
86616    29850    791    2017-05-01 15:48:00    2017-05-01 15:48:00
86617    29850    739    2017-05-01 14:52:00    2017-05-01 14:52:00
86618    29850    545    2017-05-01 10:30:00    2017-05-01 10:30:00
86619    29850    535    2017-05-01 09:32:00    2017-05-01 09:32:00
86620    29851    653    2017-05-01 14:35:00    2017-05-01 14:35:00
86621    29851    661    2017-05-01 14:47:00    2017-05-01 14:47:00
86622    29851    858    2017-05-01 01:27:00    2017-05-01 01:27:00
86623    29851    685    2017-05-01 12:33:00    2017-05-01 12:33:00
86624    29851    910    2017-05-01 08:19:00    2017-05-01 08:19:00
86625    29852    681    2017-05-01 04:14:00    2017-05-01 04:14:00
86626    29852    739    2017-05-01 20:49:00    2017-05-01 20:49:00
86627    29852    494    2017-05-01 18:03:00    2017-05-01 18:03:00
86628    29852    895    2017-05-01 21:35:00    2017-05-01 21:35:00
86629    29852    575    2017-05-01 11:50:00    2017-05-01 11:50:00
86630    29853    873    2017-05-01 03:21:00    2017-05-01 03:21:00
86631    29853    933    2017-05-01 17:08:00    2017-05-01 17:08:00
86632    29853    862    2017-05-01 21:51:00    2017-05-01 21:51:00
86633    29853    837    2017-05-01 23:08:00    2017-05-01 23:08:00
86634    29853    747    2017-05-01 10:25:00    2017-05-01 10:25:00
86635    29854    932    2017-05-01 20:55:00    2017-05-01 20:55:00
86636    29854    543    2017-05-01 04:18:00    2017-05-01 04:18:00
86637    29854    562    2017-05-01 23:21:00    2017-05-01 23:21:00
86638    29854    503    2017-05-01 15:18:00    2017-05-01 15:18:00
86639    29854    925    2017-05-01 02:32:00    2017-05-01 02:32:00
86640    29855    698    2017-05-01 11:59:00    2017-05-01 11:59:00
86641    29855    707    2017-05-01 12:56:00    2017-05-01 12:56:00
86642    29855    867    2017-05-01 06:32:00    2017-05-01 06:32:00
86643    29855    758    2017-05-01 09:35:00    2017-05-01 09:35:00
86644    29855    958    2017-05-01 06:17:00    2017-05-01 06:17:00
86645    29856    776    2017-05-01 09:31:00    2017-05-01 09:31:00
86646    29856    759    2017-05-01 22:15:00    2017-05-01 22:15:00
86647    29856    515    2017-05-01 01:20:00    2017-05-01 01:20:00
86648    29856    678    2017-05-01 10:39:00    2017-05-01 10:39:00
86649    29856    464    2017-05-01 16:30:00    2017-05-01 16:30:00
86650    29857    764    2017-05-01 18:47:00    2017-05-01 18:47:00
86651    29857    517    2017-05-01 18:52:00    2017-05-01 18:52:00
86652    29857    709    2017-05-01 17:00:00    2017-05-01 17:00:00
86653    29857    754    2017-05-01 09:56:00    2017-05-01 09:56:00
86654    29857    708    2017-05-01 22:42:00    2017-05-01 22:42:00
86655    29858    783    2017-05-01 22:10:00    2017-05-01 22:10:00
86656    29858    632    2017-05-01 01:33:00    2017-05-01 01:33:00
86657    29858    560    2017-05-01 06:33:00    2017-05-01 06:33:00
86658    29858    860    2017-05-01 20:51:00    2017-05-01 20:51:00
86659    29858    918    2017-05-01 06:43:00    2017-05-01 06:43:00
86660    29859    559    2017-05-01 19:52:00    2017-05-01 19:52:00
86661    29859    786    2017-05-01 04:18:00    2017-05-01 04:18:00
86662    29859    811    2017-05-01 20:12:00    2017-05-01 20:12:00
86663    29859    671    2017-05-01 11:17:00    2017-05-01 11:17:00
86664    29859    466    2017-05-01 02:02:00    2017-05-01 02:02:00
86665    29860    594    2017-05-01 21:52:00    2017-05-01 21:52:00
86666    29860    735    2017-05-01 16:04:00    2017-05-01 16:04:00
86667    29860    749    2017-05-01 14:31:00    2017-05-01 14:31:00
86668    29860    509    2017-05-01 14:02:00    2017-05-01 14:02:00
86669    29860    933    2017-05-01 04:54:00    2017-05-01 04:54:00
86670    29861    498    2017-05-01 23:19:00    2017-05-01 23:19:00
86671    29861    540    2017-05-01 17:06:00    2017-05-01 17:06:00
86672    29861    630    2017-05-01 04:44:00    2017-05-01 04:44:00
86673    29861    626    2017-05-01 13:54:00    2017-05-01 13:54:00
86674    29861    859    2017-05-01 21:04:00    2017-05-01 21:04:00
86675    29862    599    2017-05-01 22:25:00    2017-05-01 22:25:00
86676    29862    854    2017-05-01 15:12:00    2017-05-01 15:12:00
86677    29862    582    2017-05-01 09:27:00    2017-05-01 09:27:00
86678    29862    766    2017-05-01 18:02:00    2017-05-01 18:02:00
86679    29862    952    2017-05-01 10:49:00    2017-05-01 10:49:00
86680    29863    542    2017-05-01 08:42:00    2017-05-01 08:42:00
86681    29863    765    2017-05-01 05:00:00    2017-05-01 05:00:00
86682    29863    466    2017-05-01 13:44:00    2017-05-01 13:44:00
86683    29863    480    2017-05-01 04:11:00    2017-05-01 04:11:00
86684    29863    485    2017-05-01 02:24:00    2017-05-01 02:24:00
86685    29864    860    2017-05-01 13:38:00    2017-05-01 13:38:00
86686    29864    926    2017-05-01 04:05:00    2017-05-01 04:05:00
86687    29864    842    2017-05-01 11:04:00    2017-05-01 11:04:00
86688    29864    794    2017-05-01 22:15:00    2017-05-01 22:15:00
86689    29864    811    2017-05-01 17:04:00    2017-05-01 17:04:00
86690    29865    567    2017-05-01 03:08:00    2017-05-01 03:08:00
86691    29865    630    2017-05-01 07:14:00    2017-05-01 07:14:00
86692    29865    706    2017-05-01 11:16:00    2017-05-01 11:16:00
86693    29865    645    2017-05-01 20:13:00    2017-05-01 20:13:00
86694    29865    856    2017-05-01 13:14:00    2017-05-01 13:14:00
86695    29866    660    2017-05-01 17:07:00    2017-05-01 17:07:00
86696    29866    687    2017-05-01 10:18:00    2017-05-01 10:18:00
86697    29866    900    2017-05-01 12:31:00    2017-05-01 12:31:00
86698    29866    833    2017-05-01 21:06:00    2017-05-01 21:06:00
86699    29866    898    2017-05-01 20:26:00    2017-05-01 20:26:00
86700    29867    559    2017-05-01 13:11:00    2017-05-01 13:11:00
86701    29867    501    2017-05-01 14:25:00    2017-05-01 14:25:00
86702    29867    533    2017-05-01 23:00:00    2017-05-01 23:00:00
86703    29867    716    2017-05-01 19:31:00    2017-05-01 19:31:00
86704    29867    718    2017-05-01 23:14:00    2017-05-01 23:14:00
86705    29868    739    2017-05-01 22:46:00    2017-05-01 22:46:00
86706    29868    498    2017-05-01 06:44:00    2017-05-01 06:44:00
86707    29868    772    2017-05-01 14:01:00    2017-05-01 14:01:00
86708    29868    710    2017-05-01 19:26:00    2017-05-01 19:26:00
86709    29868    552    2017-05-01 10:07:00    2017-05-01 10:07:00
86710    29869    687    2017-05-01 03:12:00    2017-05-01 03:12:00
86711    29869    591    2017-05-01 14:43:00    2017-05-01 14:43:00
86712    29869    895    2017-05-01 18:38:00    2017-05-01 18:38:00
86713    29869    637    2017-05-01 22:05:00    2017-05-01 22:05:00
86714    29869    891    2017-05-01 14:30:00    2017-05-01 14:30:00
86715    29870    534    2017-05-01 02:50:00    2017-05-01 02:50:00
86716    29870    890    2017-05-01 16:17:00    2017-05-01 16:17:00
86717    29870    639    2017-05-01 23:24:00    2017-05-01 23:24:00
86718    29870    771    2017-05-01 06:28:00    2017-05-01 06:28:00
86719    29870    955    2017-05-01 23:57:00    2017-05-01 23:57:00
86720    29871    920    2017-05-01 23:33:00    2017-05-01 23:33:00
86721    29871    572    2017-05-01 04:15:00    2017-05-01 04:15:00
86722    29871    536    2017-05-01 13:13:00    2017-05-01 13:13:00
86723    29871    870    2017-05-01 09:22:00    2017-05-01 09:22:00
86724    29871    676    2017-05-01 13:57:00    2017-05-01 13:57:00
86725    29872    588    2017-05-01 23:36:00    2017-05-01 23:36:00
86726    29872    552    2017-05-01 06:07:00    2017-05-01 06:07:00
86727    29872    490    2017-05-01 05:50:00    2017-05-01 05:50:00
86728    29872    907    2017-05-01 09:03:00    2017-05-01 09:03:00
86729    29872    933    2017-05-01 23:40:00    2017-05-01 23:40:00
86730    29873    919    2017-05-01 13:14:00    2017-05-01 13:14:00
86731    29873    899    2017-05-01 13:22:00    2017-05-01 13:22:00
86732    29873    880    2017-05-01 19:49:00    2017-05-01 19:49:00
86733    29873    647    2017-05-01 02:31:00    2017-05-01 02:31:00
86734    29873    467    2017-05-01 06:03:00    2017-05-01 06:03:00
86735    29874    642    2017-05-01 14:47:00    2017-05-01 14:47:00
86736    29874    766    2017-05-01 07:19:00    2017-05-01 07:19:00
86737    29874    944    2017-05-01 18:18:00    2017-05-01 18:18:00
86738    29874    617    2017-05-01 05:59:00    2017-05-01 05:59:00
86739    29874    548    2017-05-01 05:07:00    2017-05-01 05:07:00
86740    29875    564    2017-05-01 04:30:00    2017-05-01 04:30:00
86741    29875    857    2017-05-01 07:03:00    2017-05-01 07:03:00
86742    29875    668    2017-05-01 20:43:00    2017-05-01 20:43:00
86743    29875    527    2017-05-01 08:35:00    2017-05-01 08:35:00
86744    29875    614    2017-05-01 22:57:00    2017-05-01 22:57:00
86745    29876    716    2017-05-01 02:11:00    2017-05-01 02:11:00
86746    29876    674    2017-05-01 16:00:00    2017-05-01 16:00:00
86747    29876    676    2017-05-01 23:33:00    2017-05-01 23:33:00
86748    29876    953    2017-05-01 04:44:00    2017-05-01 04:44:00
86749    29876    755    2017-05-01 10:04:00    2017-05-01 10:04:00
86750    29877    625    2017-05-01 20:26:00    2017-05-01 20:26:00
86751    29877    478    2017-05-01 15:54:00    2017-05-01 15:54:00
86752    29877    748    2017-05-01 11:37:00    2017-05-01 11:37:00
86753    29877    620    2017-05-01 02:01:00    2017-05-01 02:01:00
86754    29877    803    2017-05-01 22:36:00    2017-05-01 22:36:00
86755    29878    711    2017-05-01 07:27:00    2017-05-01 07:27:00
86756    29878    934    2017-05-01 21:33:00    2017-05-01 21:33:00
86757    29878    571    2017-05-01 11:58:00    2017-05-01 11:58:00
86758    29878    928    2017-05-01 04:03:00    2017-05-01 04:03:00
86759    29878    596    2017-05-01 12:47:00    2017-05-01 12:47:00
86760    29879    949    2017-05-01 13:24:00    2017-05-01 13:24:00
86761    29879    668    2017-05-01 04:41:00    2017-05-01 04:41:00
86762    29879    480    2017-05-01 06:20:00    2017-05-01 06:20:00
86763    29879    643    2017-05-01 15:29:00    2017-05-01 15:29:00
86764    29879    783    2017-05-01 11:43:00    2017-05-01 11:43:00
86765    29880    667    2017-05-01 20:24:00    2017-05-01 20:24:00
86766    29880    561    2017-05-01 15:22:00    2017-05-01 15:22:00
86767    29880    568    2017-05-01 21:47:00    2017-05-01 21:47:00
86768    29880    590    2017-05-01 15:23:00    2017-05-01 15:23:00
86769    29880    618    2017-05-01 06:07:00    2017-05-01 06:07:00
86770    29881    916    2017-05-01 13:09:00    2017-05-01 13:09:00
86771    29881    808    2017-05-01 05:08:00    2017-05-01 05:08:00
86772    29881    943    2017-05-01 16:43:00    2017-05-01 16:43:00
86773    29881    855    2017-05-01 11:02:00    2017-05-01 11:02:00
86774    29881    572    2017-05-01 19:57:00    2017-05-01 19:57:00
86775    29882    713    2017-05-01 04:50:00    2017-05-01 04:50:00
86776    29882    938    2017-05-01 11:33:00    2017-05-01 11:33:00
86777    29882    747    2017-05-01 03:24:00    2017-05-01 03:24:00
86778    29882    706    2017-05-01 12:01:00    2017-05-01 12:01:00
86779    29882    856    2017-05-01 09:09:00    2017-05-01 09:09:00
86780    29883    678    2017-05-01 07:15:00    2017-05-01 07:15:00
86781    29883    567    2017-05-01 21:59:00    2017-05-01 21:59:00
86782    29883    594    2017-05-01 12:19:00    2017-05-01 12:19:00
86783    29883    519    2017-05-01 11:22:00    2017-05-01 11:22:00
86784    29883    478    2017-05-01 09:52:00    2017-05-01 09:52:00
86785    29884    846    2017-05-01 19:10:00    2017-05-01 19:10:00
86787    29884    864    2017-05-01 04:20:00    2017-05-01 04:20:00
86788    29884    679    2017-05-01 21:44:00    2017-05-01 21:44:00
86789    29884    585    2017-05-01 02:14:00    2017-05-01 02:14:00
86790    29885    540    2017-05-01 14:25:00    2017-05-01 14:25:00
86791    29885    778    2017-05-01 20:50:00    2017-05-01 20:50:00
86792    29885    685    2017-05-01 10:26:00    2017-05-01 10:26:00
86793    29885    706    2017-05-01 10:37:00    2017-05-01 10:37:00
86794    29885    874    2017-05-01 22:13:00    2017-05-01 22:13:00
86795    29886    776    2017-05-01 03:43:00    2017-05-01 03:43:00
86796    29886    642    2017-05-01 15:07:00    2017-05-01 15:07:00
86797    29886    848    2017-05-01 20:40:00    2017-05-01 20:40:00
86798    29886    647    2017-05-01 05:00:00    2017-05-01 05:00:00
86799    29886    621    2017-05-01 05:47:00    2017-05-01 05:47:00
86800    29887    710    2017-05-01 09:21:00    2017-05-01 09:21:00
86801    29887    947    2017-05-01 16:23:00    2017-05-01 16:23:00
86802    29887    566    2017-05-01 20:41:00    2017-05-01 20:41:00
86803    29887    568    2017-05-01 16:43:00    2017-05-01 16:43:00
86804    29887    572    2017-05-01 04:16:00    2017-05-01 04:16:00
86805    29888    581    2017-05-01 09:29:00    2017-05-01 09:29:00
86806    29888    648    2017-05-01 14:03:00    2017-05-01 14:03:00
86807    29888    933    2017-05-01 01:27:00    2017-05-01 01:27:00
86808    29888    808    2017-05-01 17:10:00    2017-05-01 17:10:00
86809    29888    931    2017-05-01 05:00:00    2017-05-01 05:00:00
86810    29889    820    2017-05-01 01:40:00    2017-05-01 01:40:00
86811    29889    934    2017-05-01 09:57:00    2017-05-01 09:57:00
86812    29889    537    2017-05-01 01:59:00    2017-05-01 01:59:00
86813    29889    903    2017-05-01 06:23:00    2017-05-01 06:23:00
86814    29889    835    2017-05-01 06:49:00    2017-05-01 06:49:00
86815    29890    519    2017-05-01 23:00:00    2017-05-01 23:00:00
86816    29890    624    2017-05-01 15:32:00    2017-05-01 15:32:00
86817    29890    689    2017-05-01 19:57:00    2017-05-01 19:57:00
86818    29890    732    2017-05-01 12:31:00    2017-05-01 12:31:00
86819    29890    845    2017-05-01 13:04:00    2017-05-01 13:04:00
86820    29891    475    2017-05-02 08:59:00    2017-05-02 08:59:00
86821    29891    807    2017-05-02 13:56:00    2017-05-02 13:56:00
86822    29891    807    2017-05-02 15:08:00    2017-05-02 15:08:00
86823    29891    773    2017-05-02 19:00:00    2017-05-02 19:00:00
86824    29891    872    2017-05-02 03:58:00    2017-05-02 03:58:00
86825    29892    885    2017-05-02 21:11:00    2017-05-02 21:11:00
86826    29892    631    2017-05-02 11:19:00    2017-05-02 11:19:00
86827    29892    755    2017-05-02 18:22:00    2017-05-02 18:22:00
86828    29892    541    2017-05-02 01:21:00    2017-05-02 01:21:00
86829    29892    869    2017-05-02 13:40:00    2017-05-02 13:40:00
86830    29893    734    2017-05-02 08:04:00    2017-05-02 08:04:00
86831    29893    834    2017-05-02 02:20:00    2017-05-02 02:20:00
86832    29893    767    2017-05-02 16:29:00    2017-05-02 16:29:00
86833    29893    731    2017-05-02 18:53:00    2017-05-02 18:53:00
86834    29893    633    2017-05-02 06:53:00    2017-05-02 06:53:00
86835    29894    923    2017-05-02 07:31:00    2017-05-02 07:31:00
86836    29894    681    2017-05-02 07:17:00    2017-05-02 07:17:00
86837    29894    847    2017-05-02 17:53:00    2017-05-02 17:53:00
86838    29894    771    2017-05-02 13:17:00    2017-05-02 13:17:00
86839    29894    745    2017-05-02 12:02:00    2017-05-02 12:02:00
86840    29895    576    2017-05-02 17:05:00    2017-05-02 17:05:00
86841    29895    488    2017-05-02 01:27:00    2017-05-02 01:27:00
86842    29895    778    2017-05-02 18:32:00    2017-05-02 18:32:00
86843    29895    661    2017-05-02 07:40:00    2017-05-02 07:40:00
86844    29895    802    2017-05-02 14:58:00    2017-05-02 14:58:00
86845    29896    886    2017-05-02 10:58:00    2017-05-02 10:58:00
86846    29896    840    2017-05-02 01:00:00    2017-05-02 01:00:00
86847    29896    752    2017-05-02 13:14:00    2017-05-02 13:14:00
86848    29896    841    2017-05-02 08:10:00    2017-05-02 08:10:00
86849    29896    595    2017-05-02 15:20:00    2017-05-02 15:20:00
86850    29897    608    2017-05-02 17:06:00    2017-05-02 17:06:00
86851    29897    782    2017-05-02 16:44:00    2017-05-02 16:44:00
86852    29897    796    2017-05-02 20:06:00    2017-05-02 20:06:00
86853    29897    651    2017-05-02 04:18:00    2017-05-02 04:18:00
86854    29897    647    2017-05-02 07:17:00    2017-05-02 07:17:00
86855    29898    542    2017-05-02 21:27:00    2017-05-02 21:27:00
86856    29898    797    2017-05-02 13:38:00    2017-05-02 13:38:00
86857    29898    871    2017-05-02 10:01:00    2017-05-02 10:01:00
86858    29898    838    2017-05-02 05:54:00    2017-05-02 05:54:00
86859    29898    896    2017-05-02 22:32:00    2017-05-02 22:32:00
86860    29899    564    2017-05-02 06:00:00    2017-05-02 06:00:00
86861    29899    858    2017-05-02 02:01:00    2017-05-02 02:01:00
86862    29899    595    2017-05-02 08:55:00    2017-05-02 08:55:00
86863    29899    793    2017-05-02 04:00:00    2017-05-02 04:00:00
86864    29899    475    2017-05-02 23:34:00    2017-05-02 23:34:00
86865    29900    822    2017-05-02 15:11:00    2017-05-02 15:11:00
86866    29900    661    2017-05-02 16:34:00    2017-05-02 16:34:00
86867    29900    508    2017-05-02 15:06:00    2017-05-02 15:06:00
86868    29900    921    2017-05-02 06:38:00    2017-05-02 06:38:00
86869    29900    902    2017-05-02 03:38:00    2017-05-02 03:38:00
86870    29901    660    2017-05-02 17:21:00    2017-05-02 17:21:00
86871    29901    913    2017-05-02 18:43:00    2017-05-02 18:43:00
86872    29901    618    2017-05-02 18:53:00    2017-05-02 18:53:00
86873    29901    464    2017-05-02 09:31:00    2017-05-02 09:31:00
86874    29901    807    2017-05-02 21:18:00    2017-05-02 21:18:00
86875    29902    879    2017-05-02 20:26:00    2017-05-02 20:26:00
86876    29902    511    2017-05-02 01:06:00    2017-05-02 01:06:00
86877    29902    865    2017-05-02 10:42:00    2017-05-02 10:42:00
86878    29902    936    2017-05-02 20:06:00    2017-05-02 20:06:00
86879    29902    699    2017-05-02 18:29:00    2017-05-02 18:29:00
86880    29903    909    2017-05-02 13:09:00    2017-05-02 13:09:00
86881    29903    873    2017-05-02 01:28:00    2017-05-02 01:28:00
86882    29903    677    2017-05-02 02:35:00    2017-05-02 02:35:00
86883    29903    871    2017-05-02 23:19:00    2017-05-02 23:19:00
86884    29903    469    2017-05-02 03:42:00    2017-05-02 03:42:00
86885    29904    911    2017-05-02 11:56:00    2017-05-02 11:56:00
86886    29904    497    2017-05-02 18:16:00    2017-05-02 18:16:00
86887    29904    959    2017-05-02 06:55:00    2017-05-02 06:55:00
86888    29904    623    2017-05-02 14:44:00    2017-05-02 14:44:00
86889    29904    959    2017-05-02 19:40:00    2017-05-02 19:40:00
86890    29905    661    2017-05-02 01:02:00    2017-05-02 01:02:00
86891    29905    741    2017-05-02 12:30:00    2017-05-02 12:30:00
86892    29905    521    2017-05-02 02:57:00    2017-05-02 02:57:00
86893    29905    714    2017-05-02 23:42:00    2017-05-02 23:42:00
86894    29905    684    2017-05-02 16:25:00    2017-05-02 16:25:00
86895    29906    869    2017-05-02 12:02:00    2017-05-02 12:02:00
86896    29906    955    2017-05-02 10:03:00    2017-05-02 10:03:00
86897    29906    862    2017-05-02 16:51:00    2017-05-02 16:51:00
86898    29906    942    2017-05-02 12:49:00    2017-05-02 12:49:00
86899    29906    677    2017-05-02 21:46:00    2017-05-02 21:46:00
86900    29907    953    2017-05-02 16:43:00    2017-05-02 16:43:00
86901    29907    769    2017-05-02 18:53:00    2017-05-02 18:53:00
86902    29907    850    2017-05-02 12:44:00    2017-05-02 12:44:00
86903    29907    613    2017-05-02 19:20:00    2017-05-02 19:20:00
86904    29907    467    2017-05-02 13:47:00    2017-05-02 13:47:00
86905    29908    747    2017-05-02 08:54:00    2017-05-02 08:54:00
86906    29908    804    2017-05-02 07:04:00    2017-05-02 07:04:00
86907    29908    897    2017-05-02 18:31:00    2017-05-02 18:31:00
86908    29908    571    2017-05-02 02:54:00    2017-05-02 02:54:00
86909    29908    863    2017-05-02 08:28:00    2017-05-02 08:28:00
86910    29909    757    2017-05-02 12:14:00    2017-05-02 12:14:00
86911    29909    477    2017-05-02 05:44:00    2017-05-02 05:44:00
86912    29909    608    2017-05-02 07:21:00    2017-05-02 07:21:00
86913    29909    492    2017-05-02 03:41:00    2017-05-02 03:41:00
86914    29909    605    2017-05-02 02:00:00    2017-05-02 02:00:00
86915    29910    567    2017-05-02 18:10:00    2017-05-02 18:10:00
86916    29910    796    2017-05-02 21:06:00    2017-05-02 21:06:00
86917    29910    831    2017-05-02 13:53:00    2017-05-02 13:53:00
86918    29910    705    2017-05-02 11:23:00    2017-05-02 11:23:00
86919    29910    647    2017-05-02 18:21:00    2017-05-02 18:21:00
86920    29911    616    2017-05-02 15:31:00    2017-05-02 15:31:00
86921    29911    931    2017-05-02 22:59:00    2017-05-02 22:59:00
86922    29911    916    2017-05-02 17:07:00    2017-05-02 17:07:00
86923    29911    862    2017-05-02 19:58:00    2017-05-02 19:58:00
86924    29911    672    2017-05-02 20:21:00    2017-05-02 20:21:00
86925    29912    794    2017-05-02 04:29:00    2017-05-02 04:29:00
86926    29912    831    2017-05-02 05:52:00    2017-05-02 05:52:00
86927    29912    711    2017-05-02 19:46:00    2017-05-02 19:46:00
86928    29912    496    2017-05-02 04:09:00    2017-05-02 04:09:00
86929    29912    619    2017-05-02 15:16:00    2017-05-02 15:16:00
86930    29913    814    2017-05-02 02:48:00    2017-05-02 02:48:00
86931    29913    571    2017-05-02 16:38:00    2017-05-02 16:38:00
86932    29913    640    2017-05-02 09:27:00    2017-05-02 09:27:00
86933    29913    776    2017-05-02 14:38:00    2017-05-02 14:38:00
86934    29913    753    2017-05-02 17:46:00    2017-05-02 17:46:00
86935    29914    725    2017-05-02 11:18:00    2017-05-02 11:18:00
86936    29914    698    2017-05-02 06:55:00    2017-05-02 06:55:00
86937    29914    899    2017-05-02 02:51:00    2017-05-02 02:51:00
86938    29914    631    2017-05-02 08:25:00    2017-05-02 08:25:00
86939    29914    634    2017-05-02 07:21:00    2017-05-02 07:21:00
86940    29915    779    2017-05-02 01:14:00    2017-05-02 01:14:00
86941    29915    680    2017-05-02 08:43:00    2017-05-02 08:43:00
86942    29915    805    2017-05-02 19:23:00    2017-05-02 19:23:00
86943    29915    856    2017-05-02 07:29:00    2017-05-02 07:29:00
86944    29915    678    2017-05-02 21:41:00    2017-05-02 21:41:00
86945    29916    510    2017-05-02 04:24:00    2017-05-02 04:24:00
86946    29916    838    2017-05-02 11:55:00    2017-05-02 11:55:00
86947    29916    690    2017-05-02 08:18:00    2017-05-02 08:18:00
86948    29916    642    2017-05-02 19:16:00    2017-05-02 19:16:00
86949    29916    585    2017-05-02 09:00:00    2017-05-02 09:00:00
86950    29917    953    2017-05-02 19:21:00    2017-05-02 19:21:00
86951    29917    674    2017-05-02 05:00:00    2017-05-02 05:00:00
86952    29917    818    2017-05-02 02:50:00    2017-05-02 02:50:00
86953    29917    918    2017-05-02 12:01:00    2017-05-02 12:01:00
86954    29917    646    2017-05-02 02:03:00    2017-05-02 02:03:00
86955    29918    889    2017-05-02 12:44:00    2017-05-02 12:44:00
86956    29918    653    2017-05-02 07:18:00    2017-05-02 07:18:00
86957    29918    667    2017-05-02 13:57:00    2017-05-02 13:57:00
86958    29918    830    2017-05-02 12:08:00    2017-05-02 12:08:00
86959    29918    468    2017-05-02 11:13:00    2017-05-02 11:13:00
86960    29919    620    2017-05-02 04:01:00    2017-05-02 04:01:00
86961    29919    688    2017-05-02 15:42:00    2017-05-02 15:42:00
86962    29919    636    2017-05-02 07:00:00    2017-05-02 07:00:00
86963    29919    798    2017-05-02 09:16:00    2017-05-02 09:16:00
86964    29919    638    2017-05-02 21:11:00    2017-05-02 21:11:00
86965    29920    857    2017-05-02 03:28:00    2017-05-02 03:28:00
86966    29920    925    2017-05-02 19:01:00    2017-05-02 19:01:00
86967    29920    582    2017-05-02 03:14:00    2017-05-02 03:14:00
86968    29920    952    2017-05-02 17:09:00    2017-05-02 17:09:00
86969    29920    906    2017-05-02 09:16:00    2017-05-02 09:16:00
86970    29921    822    2017-05-02 12:41:00    2017-05-02 12:41:00
86971    29921    592    2017-05-02 07:28:00    2017-05-02 07:28:00
86972    29921    841    2017-05-02 08:01:00    2017-05-02 08:01:00
86973    29921    948    2017-05-02 06:49:00    2017-05-02 06:49:00
86974    29921    497    2017-05-02 06:01:00    2017-05-02 06:01:00
86975    29922    884    2017-05-02 19:31:00    2017-05-02 19:31:00
86976    29922    955    2017-05-02 14:19:00    2017-05-02 14:19:00
86977    29922    734    2017-05-02 16:52:00    2017-05-02 16:52:00
86978    29922    788    2017-05-02 04:06:00    2017-05-02 04:06:00
86979    29922    640    2017-05-02 18:48:00    2017-05-02 18:48:00
86980    29923    720    2017-05-02 15:09:00    2017-05-02 15:09:00
86981    29923    890    2017-05-02 23:32:00    2017-05-02 23:32:00
86982    29923    508    2017-05-02 10:05:00    2017-05-02 10:05:00
86983    29923    489    2017-05-02 07:37:00    2017-05-02 07:37:00
86984    29923    708    2017-05-02 18:00:00    2017-05-02 18:00:00
86985    29924    639    2017-05-02 11:59:00    2017-05-02 11:59:00
86986    29924    709    2017-05-02 23:59:00    2017-05-02 23:59:00
86987    29924    785    2017-05-02 06:35:00    2017-05-02 06:35:00
86988    29924    800    2017-05-02 11:21:00    2017-05-02 11:21:00
86989    29924    654    2017-05-02 11:45:00    2017-05-02 11:45:00
86990    29925    796    2017-05-02 22:12:00    2017-05-02 22:12:00
86991    29925    596    2017-05-02 13:07:00    2017-05-02 13:07:00
86992    29925    595    2017-05-02 14:22:00    2017-05-02 14:22:00
86993    29925    839    2017-05-02 05:24:00    2017-05-02 05:24:00
86994    29925    712    2017-05-02 23:11:00    2017-05-02 23:11:00
86995    29926    932    2017-05-02 05:33:00    2017-05-02 05:33:00
86996    29926    815    2017-05-02 14:56:00    2017-05-02 14:56:00
86997    29926    558    2017-05-02 16:37:00    2017-05-02 16:37:00
86998    29926    675    2017-05-02 01:49:00    2017-05-02 01:49:00
86999    29926    871    2017-05-02 19:57:00    2017-05-02 19:57:00
87000    29927    772    2017-05-02 22:34:00    2017-05-02 22:34:00
87001    29927    946    2017-05-02 16:36:00    2017-05-02 16:36:00
87002    29927    808    2017-05-02 18:25:00    2017-05-02 18:25:00
87003    29927    619    2017-05-02 17:02:00    2017-05-02 17:02:00
87004    29927    953    2017-05-02 07:19:00    2017-05-02 07:19:00
87005    29928    673    2017-05-02 09:02:00    2017-05-02 09:02:00
87006    29928    742    2017-05-02 05:52:00    2017-05-02 05:52:00
87007    29928    529    2017-05-02 07:46:00    2017-05-02 07:46:00
87008    29928    467    2017-05-02 16:30:00    2017-05-02 16:30:00
87009    29928    518    2017-05-02 19:10:00    2017-05-02 19:10:00
87010    29929    493    2017-05-02 20:33:00    2017-05-02 20:33:00
87011    29929    733    2017-05-02 11:59:00    2017-05-02 11:59:00
87012    29929    774    2017-05-02 05:13:00    2017-05-02 05:13:00
87013    29929    903    2017-05-02 02:33:00    2017-05-02 02:33:00
87014    29929    480    2017-05-02 17:07:00    2017-05-02 17:07:00
87015    29930    637    2017-05-02 07:17:00    2017-05-02 07:17:00
87016    29930    649    2017-05-02 21:05:00    2017-05-02 21:05:00
87017    29930    562    2017-05-02 12:22:00    2017-05-02 12:22:00
87018    29930    473    2017-05-02 12:20:00    2017-05-02 12:20:00
87019    29930    607    2017-05-02 22:53:00    2017-05-02 22:53:00
87020    29931    485    2017-05-02 12:07:00    2017-05-02 12:07:00
87021    29931    767    2017-05-02 05:15:00    2017-05-02 05:15:00
87022    29931    736    2017-05-02 05:29:00    2017-05-02 05:29:00
87023    29931    801    2017-05-02 10:13:00    2017-05-02 10:13:00
87024    29931    470    2017-05-02 22:23:00    2017-05-02 22:23:00
87025    29932    723    2017-05-02 23:57:00    2017-05-02 23:57:00
87026    29932    947    2017-05-02 02:55:00    2017-05-02 02:55:00
87027    29932    669    2017-05-02 10:21:00    2017-05-02 10:21:00
87028    29932    732    2017-05-02 01:28:00    2017-05-02 01:28:00
87029    29932    825    2017-05-02 03:10:00    2017-05-02 03:10:00
87030    29933    623    2017-05-02 18:06:00    2017-05-02 18:06:00
87031    29933    722    2017-05-02 13:55:00    2017-05-02 13:55:00
87032    29933    909    2017-05-02 05:23:00    2017-05-02 05:23:00
87033    29933    711    2017-05-02 04:44:00    2017-05-02 04:44:00
87034    29933    706    2017-05-02 02:50:00    2017-05-02 02:50:00
87035    29934    703    2017-05-02 05:29:00    2017-05-02 05:29:00
87036    29934    858    2017-05-02 22:48:00    2017-05-02 22:48:00
87037    29934    636    2017-05-02 22:58:00    2017-05-02 22:58:00
87038    29934    892    2017-05-02 10:00:00    2017-05-02 10:00:00
87039    29934    662    2017-05-02 03:17:00    2017-05-02 03:17:00
87040    29935    887    2017-05-02 09:06:00    2017-05-02 09:06:00
87041    29935    868    2017-05-02 19:57:00    2017-05-02 19:57:00
87042    29935    540    2017-05-02 05:48:00    2017-05-02 05:48:00
87043    29935    760    2017-05-02 16:59:00    2017-05-02 16:59:00
87044    29935    954    2017-05-02 20:36:00    2017-05-02 20:36:00
87045    29936    946    2017-05-02 07:04:00    2017-05-02 07:04:00
87046    29936    823    2017-05-02 02:31:00    2017-05-02 02:31:00
87047    29936    742    2017-05-02 22:26:00    2017-05-02 22:26:00
87048    29936    681    2017-05-02 15:02:00    2017-05-02 15:02:00
87049    29936    596    2017-05-02 13:46:00    2017-05-02 13:46:00
87050    29937    899    2017-05-02 20:26:00    2017-05-02 20:26:00
87051    29937    772    2017-05-02 20:44:00    2017-05-02 20:44:00
87052    29937    646    2017-05-02 06:36:00    2017-05-02 06:36:00
87053    29937    919    2017-05-02 11:09:00    2017-05-02 11:09:00
87054    29937    625    2017-05-02 16:12:00    2017-05-02 16:12:00
87055    29938    748    2017-05-02 18:56:00    2017-05-02 18:56:00
87056    29938    560    2017-05-02 18:19:00    2017-05-02 18:19:00
87057    29938    642    2017-05-02 13:32:00    2017-05-02 13:32:00
87058    29938    669    2017-05-02 01:08:00    2017-05-02 01:08:00
87059    29938    797    2017-05-02 22:19:00    2017-05-02 22:19:00
87060    29939    864    2017-05-02 12:34:00    2017-05-02 12:34:00
87061    29939    708    2017-05-02 16:43:00    2017-05-02 16:43:00
87062    29939    928    2017-05-02 20:57:00    2017-05-02 20:57:00
87063    29939    647    2017-05-02 03:13:00    2017-05-02 03:13:00
87064    29939    947    2017-05-02 06:18:00    2017-05-02 06:18:00
87065    29940    948    2017-05-02 11:15:00    2017-05-02 11:15:00
87066    29940    790    2017-05-02 17:34:00    2017-05-02 17:34:00
87067    29940    910    2017-05-02 13:01:00    2017-05-02 13:01:00
87068    29940    575    2017-05-02 08:52:00    2017-05-02 08:52:00
87069    29940    820    2017-05-02 14:53:00    2017-05-02 14:53:00
87070    29941    553    2017-05-02 09:15:00    2017-05-02 09:15:00
87071    29941    916    2017-05-02 18:03:00    2017-05-02 18:03:00
87072    29941    515    2017-05-02 21:10:00    2017-05-02 21:10:00
87073    29941    643    2017-05-02 17:41:00    2017-05-02 17:41:00
87074    29941    903    2017-05-02 07:18:00    2017-05-02 07:18:00
87075    29942    508    2017-05-02 06:25:00    2017-05-02 06:25:00
87076    29942    852    2017-05-02 05:50:00    2017-05-02 05:50:00
87077    29942    612    2017-05-02 04:12:00    2017-05-02 04:12:00
87078    29942    908    2017-05-02 22:57:00    2017-05-02 22:57:00
87079    29942    660    2017-05-02 18:26:00    2017-05-02 18:26:00
87080    29943    815    2017-05-02 05:58:00    2017-05-02 05:58:00
87081    29943    484    2017-05-02 10:35:00    2017-05-02 10:35:00
87082    29943    826    2017-05-02 20:30:00    2017-05-02 20:30:00
87083    29943    784    2017-05-02 13:11:00    2017-05-02 13:11:00
87084    29943    668    2017-05-02 19:55:00    2017-05-02 19:55:00
87085    29944    574    2017-05-02 17:56:00    2017-05-02 17:56:00
87086    29944    859    2017-05-02 14:43:00    2017-05-02 14:43:00
87087    29944    698    2017-05-02 15:15:00    2017-05-02 15:15:00
87088    29944    747    2017-05-02 04:10:00    2017-05-02 04:10:00
87089    29944    934    2017-05-02 18:46:00    2017-05-02 18:46:00
87090    29945    926    2017-05-02 01:07:00    2017-05-02 01:07:00
87091    29945    616    2017-05-02 02:16:00    2017-05-02 02:16:00
87092    29945    714    2017-05-02 19:04:00    2017-05-02 19:04:00
87093    29945    710    2017-05-02 04:05:00    2017-05-02 04:05:00
87094    29945    601    2017-05-02 14:45:00    2017-05-02 14:45:00
87095    29946    578    2017-05-02 18:14:00    2017-05-02 18:14:00
87096    29946    779    2017-05-02 11:04:00    2017-05-02 11:04:00
87097    29946    728    2017-05-02 22:33:00    2017-05-02 22:33:00
87098    29946    710    2017-05-02 05:22:00    2017-05-02 05:22:00
87099    29946    580    2017-05-02 11:37:00    2017-05-02 11:37:00
87100    29947    783    2017-05-02 09:19:00    2017-05-02 09:19:00
87101    29947    697    2017-05-02 13:59:00    2017-05-02 13:59:00
87102    29947    694    2017-05-02 01:19:00    2017-05-02 01:19:00
87103    29947    648    2017-05-02 20:05:00    2017-05-02 20:05:00
87104    29947    924    2017-05-02 20:21:00    2017-05-02 20:21:00
87105    29948    877    2017-05-02 06:19:00    2017-05-02 06:19:00
87106    29948    757    2017-05-02 10:09:00    2017-05-02 10:09:00
87107    29948    950    2017-05-02 21:51:00    2017-05-02 21:51:00
87108    29948    550    2017-05-02 09:29:00    2017-05-02 09:29:00
87109    29948    627    2017-05-02 10:08:00    2017-05-02 10:08:00
87110    29949    952    2017-05-02 23:54:00    2017-05-02 23:54:00
87111    29949    551    2017-05-02 02:43:00    2017-05-02 02:43:00
87112    29949    861    2017-05-02 18:21:00    2017-05-02 18:21:00
87113    29949    769    2017-05-02 19:09:00    2017-05-02 19:09:00
87114    29949    478    2017-05-02 14:44:00    2017-05-02 14:44:00
87115    29950    564    2017-05-02 23:18:00    2017-05-02 23:18:00
87116    29950    787    2017-05-02 21:25:00    2017-05-02 21:25:00
87117    29950    893    2017-05-02 15:40:00    2017-05-02 15:40:00
87118    29950    634    2017-05-02 20:36:00    2017-05-02 20:36:00
87119    29950    618    2017-05-02 22:39:00    2017-05-02 22:39:00
87120    29951    503    2017-05-02 18:42:00    2017-05-02 18:42:00
87121    29951    622    2017-05-02 12:55:00    2017-05-02 12:55:00
87122    29951    580    2017-05-02 01:18:00    2017-05-02 01:18:00
87123    29951    782    2017-05-02 11:12:00    2017-05-02 11:12:00
87124    29951    537    2017-05-02 18:33:00    2017-05-02 18:33:00
87125    29952    502    2017-05-02 10:28:00    2017-05-02 10:28:00
87126    29952    746    2017-05-02 10:55:00    2017-05-02 10:55:00
87127    29952    657    2017-05-02 16:08:00    2017-05-02 16:08:00
87128    29952    640    2017-05-02 09:04:00    2017-05-02 09:04:00
87129    29952    617    2017-05-02 18:59:00    2017-05-02 18:59:00
87130    29953    932    2017-05-02 23:26:00    2017-05-02 23:26:00
87131    29953    851    2017-05-02 01:54:00    2017-05-02 01:54:00
87132    29953    849    2017-05-02 19:09:00    2017-05-02 19:09:00
87133    29953    644    2017-05-02 04:10:00    2017-05-02 04:10:00
87134    29953    506    2017-05-02 21:30:00    2017-05-02 21:30:00
87135    29954    691    2017-05-02 15:19:00    2017-05-02 15:19:00
87136    29954    503    2017-05-02 07:00:00    2017-05-02 07:00:00
87137    29954    717    2017-05-02 01:35:00    2017-05-02 01:35:00
87138    29954    561    2017-05-02 08:10:00    2017-05-02 08:10:00
87140    29955    798    2017-05-02 03:29:00    2017-05-02 03:29:00
87141    29955    694    2017-05-02 17:55:00    2017-05-02 17:55:00
87142    29955    762    2017-05-02 22:50:00    2017-05-02 22:50:00
87143    29955    692    2017-05-02 01:15:00    2017-05-02 01:15:00
87144    29955    874    2017-05-02 19:50:00    2017-05-02 19:50:00
87145    29956    641    2017-05-02 02:12:00    2017-05-02 02:12:00
87146    29956    485    2017-05-02 17:21:00    2017-05-02 17:21:00
87147    29956    657    2017-05-02 01:08:00    2017-05-02 01:08:00
87148    29956    754    2017-05-02 02:10:00    2017-05-02 02:10:00
87149    29956    523    2017-05-02 17:08:00    2017-05-02 17:08:00
87150    29957    896    2017-05-02 14:09:00    2017-05-02 14:09:00
87151    29957    718    2017-05-02 08:43:00    2017-05-02 08:43:00
87152    29957    845    2017-05-02 17:29:00    2017-05-02 17:29:00
87153    29957    616    2017-05-02 02:31:00    2017-05-02 02:31:00
87154    29957    705    2017-05-02 17:26:00    2017-05-02 17:26:00
87155    29958    941    2017-05-02 12:03:00    2017-05-02 12:03:00
87156    29958    641    2017-05-02 12:53:00    2017-05-02 12:53:00
87157    29958    896    2017-05-02 10:49:00    2017-05-02 10:49:00
87158    29958    932    2017-05-02 05:57:00    2017-05-02 05:57:00
87159    29958    541    2017-05-02 01:40:00    2017-05-02 01:40:00
87160    29959    895    2017-05-02 07:46:00    2017-05-02 07:46:00
87161    29959    801    2017-05-02 09:23:00    2017-05-02 09:23:00
87162    29959    726    2017-05-02 20:31:00    2017-05-02 20:31:00
87163    29959    590    2017-05-02 15:06:00    2017-05-02 15:06:00
87164    29959    701    2017-05-02 23:36:00    2017-05-02 23:36:00
87165    29960    928    2017-05-02 04:00:00    2017-05-02 04:00:00
87166    29960    902    2017-05-02 23:11:00    2017-05-02 23:11:00
87167    29960    837    2017-05-02 15:20:00    2017-05-02 15:20:00
87168    29960    596    2017-05-02 22:20:00    2017-05-02 22:20:00
87169    29960    510    2017-05-02 22:50:00    2017-05-02 22:50:00
87170    29961    708    2017-05-02 06:31:00    2017-05-02 06:31:00
87171    29961    894    2017-05-02 23:45:00    2017-05-02 23:45:00
87172    29961    718    2017-05-02 05:34:00    2017-05-02 05:34:00
87173    29961    818    2017-05-02 07:22:00    2017-05-02 07:22:00
87174    29961    790    2017-05-02 12:58:00    2017-05-02 12:58:00
87175    29962    914    2017-05-02 01:05:00    2017-05-02 01:05:00
87176    29962    825    2017-05-02 21:42:00    2017-05-02 21:42:00
87177    29962    851    2017-05-02 23:18:00    2017-05-02 23:18:00
87178    29962    684    2017-05-02 03:30:00    2017-05-02 03:30:00
87179    29962    539    2017-05-02 01:54:00    2017-05-02 01:54:00
87180    29963    633    2017-05-02 21:45:00    2017-05-02 21:45:00
87181    29963    688    2017-05-02 16:23:00    2017-05-02 16:23:00
87182    29963    859    2017-05-02 11:20:00    2017-05-02 11:20:00
87183    29963    934    2017-05-02 15:55:00    2017-05-02 15:55:00
87184    29963    489    2017-05-02 21:07:00    2017-05-02 21:07:00
87185    29964    911    2017-05-02 06:54:00    2017-05-02 06:54:00
87186    29964    886    2017-05-02 17:40:00    2017-05-02 17:40:00
87187    29964    616    2017-05-02 20:12:00    2017-05-02 20:12:00
87188    29964    593    2017-05-02 18:27:00    2017-05-02 18:27:00
87189    29964    488    2017-05-02 18:38:00    2017-05-02 18:38:00
87190    29965    703    2017-05-02 04:42:00    2017-05-02 04:42:00
87191    29965    896    2017-05-02 02:50:00    2017-05-02 02:50:00
87192    29965    950    2017-05-02 01:05:00    2017-05-02 01:05:00
87193    29965    791    2017-05-02 14:41:00    2017-05-02 14:41:00
87194    29965    523    2017-05-02 12:01:00    2017-05-02 12:01:00
87195    29966    493    2017-05-02 09:31:00    2017-05-02 09:31:00
87196    29966    554    2017-05-02 21:42:00    2017-05-02 21:42:00
87197    29966    878    2017-05-02 13:49:00    2017-05-02 13:49:00
87198    29966    955    2017-05-02 09:13:00    2017-05-02 09:13:00
87199    29966    912    2017-05-02 12:51:00    2017-05-02 12:51:00
87200    29967    655    2017-05-02 18:11:00    2017-05-02 18:11:00
87201    29967    709    2017-05-02 16:24:00    2017-05-02 16:24:00
87202    29967    919    2017-05-02 12:12:00    2017-05-02 12:12:00
87203    29967    628    2017-05-02 09:20:00    2017-05-02 09:20:00
87204    29967    519    2017-05-02 10:09:00    2017-05-02 10:09:00
87205    29968    758    2017-05-02 07:02:00    2017-05-02 07:02:00
87206    29968    927    2017-05-02 17:32:00    2017-05-02 17:32:00
87207    29968    719    2017-05-02 23:30:00    2017-05-02 23:30:00
87208    29968    732    2017-05-02 02:49:00    2017-05-02 02:49:00
87209    29968    809    2017-05-02 06:23:00    2017-05-02 06:23:00
87210    29969    811    2017-05-02 13:18:00    2017-05-02 13:18:00
87211    29969    512    2017-05-02 01:37:00    2017-05-02 01:37:00
87212    29969    662    2017-05-02 07:45:00    2017-05-02 07:45:00
87213    29969    593    2017-05-02 10:36:00    2017-05-02 10:36:00
87214    29969    832    2017-05-02 03:19:00    2017-05-02 03:19:00
87215    29970    496    2017-05-02 08:04:00    2017-05-02 08:04:00
87216    29970    509    2017-05-02 01:42:00    2017-05-02 01:42:00
87217    29970    524    2017-05-02 04:24:00    2017-05-02 04:24:00
87218    29970    494    2017-05-02 01:18:00    2017-05-02 01:18:00
87219    29970    510    2017-05-02 02:24:00    2017-05-02 02:24:00
87220    29971    756    2017-05-02 14:16:00    2017-05-02 14:16:00
87221    29971    896    2017-05-02 07:56:00    2017-05-02 07:56:00
87222    29971    838    2017-05-02 03:58:00    2017-05-02 03:58:00
87223    29971    480    2017-05-02 13:44:00    2017-05-02 13:44:00
87224    29971    856    2017-05-02 13:31:00    2017-05-02 13:31:00
87225    29972    474    2017-05-03 06:45:00    2017-05-03 06:45:00
87226    29972    609    2017-05-03 11:37:00    2017-05-03 11:37:00
87227    29972    778    2017-05-03 05:27:00    2017-05-03 05:27:00
87228    29972    566    2017-05-03 15:55:00    2017-05-03 15:55:00
87229    29972    836    2017-05-03 13:29:00    2017-05-03 13:29:00
87230    29973    736    2017-05-03 14:51:00    2017-05-03 14:51:00
87231    29973    959    2017-05-03 08:47:00    2017-05-03 08:47:00
87232    29973    739    2017-05-03 20:30:00    2017-05-03 20:30:00
87233    29973    733    2017-05-03 02:07:00    2017-05-03 02:07:00
87234    29973    565    2017-05-03 08:35:00    2017-05-03 08:35:00
87235    29974    954    2017-05-03 09:05:00    2017-05-03 09:05:00
87236    29974    491    2017-05-03 06:48:00    2017-05-03 06:48:00
87237    29974    541    2017-05-03 15:15:00    2017-05-03 15:15:00
87238    29974    703    2017-05-03 13:19:00    2017-05-03 13:19:00
87239    29974    506    2017-05-03 17:53:00    2017-05-03 17:53:00
87240    29975    813    2017-05-03 20:04:00    2017-05-03 20:04:00
87241    29975    664    2017-05-03 03:16:00    2017-05-03 03:16:00
87242    29975    697    2017-05-03 02:18:00    2017-05-03 02:18:00
87243    29975    825    2017-05-03 19:55:00    2017-05-03 19:55:00
87244    29975    673    2017-05-03 02:00:00    2017-05-03 02:00:00
87245    29976    712    2017-05-03 14:45:00    2017-05-03 14:45:00
87246    29976    838    2017-05-03 08:15:00    2017-05-03 08:15:00
87247    29976    879    2017-05-03 03:41:00    2017-05-03 03:41:00
87248    29976    865    2017-05-03 16:00:00    2017-05-03 16:00:00
87249    29976    797    2017-05-03 06:40:00    2017-05-03 06:40:00
87250    29977    650    2017-05-03 01:11:00    2017-05-03 01:11:00
87251    29977    930    2017-05-03 21:38:00    2017-05-03 21:38:00
87252    29977    870    2017-05-03 16:33:00    2017-05-03 16:33:00
87253    29977    586    2017-05-03 04:40:00    2017-05-03 04:40:00
87254    29977    603    2017-05-03 21:09:00    2017-05-03 21:09:00
87255    29978    912    2017-05-03 08:14:00    2017-05-03 08:14:00
87256    29978    725    2017-05-03 07:54:00    2017-05-03 07:54:00
87257    29978    936    2017-05-03 12:16:00    2017-05-03 12:16:00
87258    29978    679    2017-05-03 08:41:00    2017-05-03 08:41:00
87259    29978    517    2017-05-03 11:29:00    2017-05-03 11:29:00
87260    29979    880    2017-05-03 09:39:00    2017-05-03 09:39:00
87261    29979    942    2017-05-03 14:26:00    2017-05-03 14:26:00
87262    29979    901    2017-05-03 18:59:00    2017-05-03 18:59:00
87263    29979    846    2017-05-03 21:32:00    2017-05-03 21:32:00
87264    29979    655    2017-05-03 19:44:00    2017-05-03 19:44:00
87265    29980    710    2017-05-03 20:10:00    2017-05-03 20:10:00
87266    29980    554    2017-05-03 15:23:00    2017-05-03 15:23:00
87267    29980    927    2017-05-03 04:52:00    2017-05-03 04:52:00
87268    29980    712    2017-05-03 03:49:00    2017-05-03 03:49:00
87269    29980    683    2017-05-03 15:04:00    2017-05-03 15:04:00
87270    29981    882    2017-05-03 23:50:00    2017-05-03 23:50:00
87271    29981    821    2017-05-03 03:31:00    2017-05-03 03:31:00
87272    29981    590    2017-05-03 09:25:00    2017-05-03 09:25:00
87273    29981    818    2017-05-03 12:21:00    2017-05-03 12:21:00
87274    29981    581    2017-05-03 08:48:00    2017-05-03 08:48:00
87275    29982    923    2017-05-03 05:01:00    2017-05-03 05:01:00
87276    29982    511    2017-05-03 15:10:00    2017-05-03 15:10:00
87277    29982    504    2017-05-03 16:36:00    2017-05-03 16:36:00
87278    29982    952    2017-05-03 05:38:00    2017-05-03 05:38:00
87279    29982    771    2017-05-03 20:07:00    2017-05-03 20:07:00
87280    29983    936    2017-05-03 14:11:00    2017-05-03 14:11:00
87281    29983    673    2017-05-03 08:19:00    2017-05-03 08:19:00
87282    29983    588    2017-05-03 17:49:00    2017-05-03 17:49:00
87283    29983    802    2017-05-03 23:04:00    2017-05-03 23:04:00
87284    29983    654    2017-05-03 14:57:00    2017-05-03 14:57:00
87285    29984    862    2017-05-03 14:00:00    2017-05-03 14:00:00
87286    29984    768    2017-05-03 14:33:00    2017-05-03 14:33:00
87287    29984    654    2017-05-03 15:05:00    2017-05-03 15:05:00
87288    29984    579    2017-05-03 19:06:00    2017-05-03 19:06:00
87289    29984    863    2017-05-03 10:27:00    2017-05-03 10:27:00
87290    29985    750    2017-05-03 09:22:00    2017-05-03 09:22:00
87291    29985    538    2017-05-03 21:07:00    2017-05-03 21:07:00
87292    29985    547    2017-05-03 18:44:00    2017-05-03 18:44:00
87293    29985    642    2017-05-03 07:40:00    2017-05-03 07:40:00
87294    29985    850    2017-05-03 04:50:00    2017-05-03 04:50:00
87295    29986    574    2017-05-03 21:04:00    2017-05-03 21:04:00
87296    29986    524    2017-05-03 01:58:00    2017-05-03 01:58:00
87297    29986    496    2017-05-03 07:05:00    2017-05-03 07:05:00
87298    29986    748    2017-05-03 17:25:00    2017-05-03 17:25:00
87299    29986    745    2017-05-03 22:46:00    2017-05-03 22:46:00
87300    29987    534    2017-05-03 01:20:00    2017-05-03 01:20:00
87301    29987    694    2017-05-03 21:30:00    2017-05-03 21:30:00
87302    29987    881    2017-05-03 13:26:00    2017-05-03 13:26:00
87303    29987    674    2017-05-03 06:22:00    2017-05-03 06:22:00
87304    29987    777    2017-05-03 22:04:00    2017-05-03 22:04:00
87305    29988    687    2017-05-03 01:39:00    2017-05-03 01:39:00
87306    29988    490    2017-05-03 16:41:00    2017-05-03 16:41:00
87307    29988    880    2017-05-03 09:21:00    2017-05-03 09:21:00
87308    29988    956    2017-05-03 05:50:00    2017-05-03 05:50:00
87309    29988    829    2017-05-03 03:10:00    2017-05-03 03:10:00
87310    29989    625    2017-05-03 03:39:00    2017-05-03 03:39:00
87311    29989    785    2017-05-03 09:20:00    2017-05-03 09:20:00
87312    29989    704    2017-05-03 05:10:00    2017-05-03 05:10:00
87313    29989    506    2017-05-03 09:58:00    2017-05-03 09:58:00
87314    29989    936    2017-05-03 06:25:00    2017-05-03 06:25:00
87315    29990    914    2017-05-03 03:25:00    2017-05-03 03:25:00
87316    29990    938    2017-05-03 03:43:00    2017-05-03 03:43:00
87317    29990    820    2017-05-03 02:25:00    2017-05-03 02:25:00
87318    29990    953    2017-05-03 11:36:00    2017-05-03 11:36:00
87319    29990    617    2017-05-03 08:00:00    2017-05-03 08:00:00
87320    29991    554    2017-05-03 11:41:00    2017-05-03 11:41:00
87321    29991    476    2017-05-03 19:03:00    2017-05-03 19:03:00
87322    29991    913    2017-05-03 12:20:00    2017-05-03 12:20:00
87323    29991    954    2017-05-03 10:44:00    2017-05-03 10:44:00
87324    29991    637    2017-05-03 22:20:00    2017-05-03 22:20:00
87325    29992    883    2017-05-03 14:48:00    2017-05-03 14:48:00
87326    29992    871    2017-05-03 04:13:00    2017-05-03 04:13:00
87327    29992    637    2017-05-03 22:34:00    2017-05-03 22:34:00
87328    29992    932    2017-05-03 04:41:00    2017-05-03 04:41:00
87329    29992    469    2017-05-03 01:25:00    2017-05-03 01:25:00
87330    29993    696    2017-05-03 10:26:00    2017-05-03 10:26:00
87331    29993    495    2017-05-03 06:51:00    2017-05-03 06:51:00
87332    29993    587    2017-05-03 22:13:00    2017-05-03 22:13:00
87333    29993    635    2017-05-03 11:51:00    2017-05-03 11:51:00
87334    29993    517    2017-05-03 23:54:00    2017-05-03 23:54:00
87335    29994    692    2017-05-03 13:16:00    2017-05-03 13:16:00
87336    29994    620    2017-05-03 21:13:00    2017-05-03 21:13:00
87337    29994    553    2017-05-03 01:47:00    2017-05-03 01:47:00
87338    29994    862    2017-05-03 06:44:00    2017-05-03 06:44:00
87339    29994    813    2017-05-03 22:17:00    2017-05-03 22:17:00
87340    29995    466    2017-05-03 19:06:00    2017-05-03 19:06:00
87341    29995    638    2017-05-03 02:59:00    2017-05-03 02:59:00
87342    29995    713    2017-05-03 13:33:00    2017-05-03 13:33:00
87343    29995    596    2017-05-03 22:53:00    2017-05-03 22:53:00
87344    29995    701    2017-05-03 02:25:00    2017-05-03 02:25:00
87345    29996    642    2017-05-03 13:02:00    2017-05-03 13:02:00
87346    29996    600    2017-05-03 13:12:00    2017-05-03 13:12:00
87347    29996    792    2017-05-03 16:46:00    2017-05-03 16:46:00
87348    29996    763    2017-05-03 02:01:00    2017-05-03 02:01:00
87349    29996    864    2017-05-03 02:22:00    2017-05-03 02:22:00
87350    29997    607    2017-05-03 12:00:00    2017-05-03 12:00:00
87351    29997    627    2017-05-03 16:11:00    2017-05-03 16:11:00
87352    29997    835    2017-05-03 01:21:00    2017-05-03 01:21:00
87353    29997    639    2017-05-03 16:45:00    2017-05-03 16:45:00
87354    29997    541    2017-05-03 19:21:00    2017-05-03 19:21:00
87355    29998    550    2017-05-04 15:20:00    2017-05-04 15:20:00
87356    29998    867    2017-05-04 11:54:00    2017-05-04 11:54:00
87357    29998    949    2017-05-04 19:53:00    2017-05-04 19:53:00
87358    29998    818    2017-05-04 13:48:00    2017-05-04 13:48:00
87359    29998    916    2017-05-04 17:13:00    2017-05-04 17:13:00
87360    29999    656    2017-05-04 10:03:00    2017-05-04 10:03:00
87361    29999    565    2017-05-04 04:48:00    2017-05-04 04:48:00
87362    29999    656    2017-05-04 04:50:00    2017-05-04 04:50:00
87363    29999    717    2017-05-04 20:23:00    2017-05-04 20:23:00
87364    29999    773    2017-05-04 21:16:00    2017-05-04 21:16:00
87365    30000    475    2017-05-04 07:46:00    2017-05-04 07:46:00
87366    30000    886    2017-05-04 07:02:00    2017-05-04 07:02:00
87367    30000    652    2017-05-04 07:29:00    2017-05-04 07:29:00
87368    30000    521    2017-05-04 12:50:00    2017-05-04 12:50:00
87369    30000    519    2017-05-04 16:57:00    2017-05-04 16:57:00
87370    30001    499    2017-05-04 13:50:00    2017-05-04 13:50:00
87371    30001    578    2017-05-04 12:50:00    2017-05-04 12:50:00
87373    30001    529    2017-05-04 10:54:00    2017-05-04 10:54:00
87374    30001    568    2017-05-04 05:35:00    2017-05-04 05:35:00
87376    30002    505    2017-05-04 03:49:00    2017-05-04 03:49:00
87377    30002    882    2017-05-04 21:06:00    2017-05-04 21:06:00
87378    30002    574    2017-05-04 04:20:00    2017-05-04 04:20:00
87379    30002    728    2017-05-04 17:15:00    2017-05-04 17:15:00
87380    30003    774    2017-05-04 16:33:00    2017-05-04 16:33:00
87381    30003    750    2017-05-04 08:38:00    2017-05-04 08:38:00
87382    30003    806    2017-05-04 23:41:00    2017-05-04 23:41:00
87383    30003    560    2017-05-04 22:33:00    2017-05-04 22:33:00
87384    30003    812    2017-05-04 01:28:00    2017-05-04 01:28:00
87385    30004    926    2017-05-04 19:09:00    2017-05-04 19:09:00
87386    30004    476    2017-05-04 08:19:00    2017-05-04 08:19:00
87387    30004    610    2017-05-04 14:35:00    2017-05-04 14:35:00
87388    30004    722    2017-05-04 01:06:00    2017-05-04 01:06:00
87389    30004    744    2017-05-04 08:28:00    2017-05-04 08:28:00
87390    30005    756    2017-05-04 04:25:00    2017-05-04 04:25:00
87391    30005    603    2017-05-04 20:30:00    2017-05-04 20:30:00
87392    30005    890    2017-05-04 05:12:00    2017-05-04 05:12:00
87393    30005    897    2017-05-04 07:17:00    2017-05-04 07:17:00
87394    30005    560    2017-05-04 07:28:00    2017-05-04 07:28:00
87395    30006    890    2017-05-04 15:38:00    2017-05-04 15:38:00
87396    30006    632    2017-05-04 03:26:00    2017-05-04 03:26:00
87397    30006    640    2017-05-04 08:18:00    2017-05-04 08:18:00
87398    30006    871    2017-05-04 05:12:00    2017-05-04 05:12:00
87399    30006    820    2017-05-04 11:24:00    2017-05-04 11:24:00
87400    30007    940    2017-05-04 01:36:00    2017-05-04 01:36:00
87401    30007    565    2017-05-04 23:52:00    2017-05-04 23:52:00
87402    30007    850    2017-05-04 14:01:00    2017-05-04 14:01:00
87403    30007    544    2017-05-04 06:02:00    2017-05-04 06:02:00
87404    30007    847    2017-05-04 07:43:00    2017-05-04 07:43:00
87405    30008    915    2017-05-04 23:33:00    2017-05-04 23:33:00
87406    30008    932    2017-05-04 23:28:00    2017-05-04 23:28:00
87407    30008    853    2017-05-04 22:53:00    2017-05-04 22:53:00
87408    30008    886    2017-05-04 03:47:00    2017-05-04 03:47:00
87409    30008    804    2017-05-04 07:20:00    2017-05-04 07:20:00
87410    30009    867    2017-05-04 14:01:00    2017-05-04 14:01:00
87411    30009    691    2017-05-04 13:38:00    2017-05-04 13:38:00
87412    30009    568    2017-05-04 16:54:00    2017-05-04 16:54:00
87413    30009    585    2017-05-04 11:29:00    2017-05-04 11:29:00
87414    30009    515    2017-05-04 23:19:00    2017-05-04 23:19:00
87415    30010    835    2017-05-04 14:51:00    2017-05-04 14:51:00
87416    30010    591    2017-05-04 14:22:00    2017-05-04 14:22:00
87417    30010    487    2017-05-04 08:17:00    2017-05-04 08:17:00
87418    30010    880    2017-05-04 16:27:00    2017-05-04 16:27:00
87419    30010    753    2017-05-04 12:44:00    2017-05-04 12:44:00
87420    30011    838    2017-05-04 03:17:00    2017-05-04 03:17:00
87421    30011    747    2017-05-04 20:10:00    2017-05-04 20:10:00
87422    30011    498    2017-05-04 14:34:00    2017-05-04 14:34:00
87423    30011    683    2017-05-04 06:25:00    2017-05-04 06:25:00
87424    30011    614    2017-05-04 10:58:00    2017-05-04 10:58:00
87425    30012    822    2017-05-04 08:51:00    2017-05-04 08:51:00
87426    30012    744    2017-05-04 15:10:00    2017-05-04 15:10:00
87427    30012    895    2017-05-04 18:27:00    2017-05-04 18:27:00
87428    30012    905    2017-05-04 04:18:00    2017-05-04 04:18:00
87429    30012    686    2017-05-04 22:56:00    2017-05-04 22:56:00
87430    30013    822    2017-05-04 09:57:00    2017-05-04 09:57:00
87431    30013    612    2017-05-04 17:14:00    2017-05-04 17:14:00
87432    30013    496    2017-05-04 09:16:00    2017-05-04 09:16:00
87433    30013    735    2017-05-04 02:32:00    2017-05-04 02:32:00
87434    30013    796    2017-05-04 10:30:00    2017-05-04 10:30:00
87435    30014    788    2017-05-04 11:45:00    2017-05-04 11:45:00
87436    30014    612    2017-05-04 17:14:00    2017-05-04 17:14:00
87437    30014    485    2017-05-04 13:19:00    2017-05-04 13:19:00
87438    30014    791    2017-05-04 21:53:00    2017-05-04 21:53:00
87439    30014    526    2017-05-04 09:49:00    2017-05-04 09:49:00
87440    30015    853    2017-05-04 20:23:00    2017-05-04 20:23:00
87441    30015    607    2017-05-04 03:57:00    2017-05-04 03:57:00
87442    30015    662    2017-05-04 09:22:00    2017-05-04 09:22:00
87443    30015    492    2017-05-04 22:42:00    2017-05-04 22:42:00
87444    30015    905    2017-05-04 10:04:00    2017-05-04 10:04:00
87445    30016    716    2017-05-04 13:40:00    2017-05-04 13:40:00
87446    30016    758    2017-05-04 14:21:00    2017-05-04 14:21:00
87447    30016    550    2017-05-04 02:07:00    2017-05-04 02:07:00
87448    30016    819    2017-05-04 13:19:00    2017-05-04 13:19:00
87375    30002    \N    2017-05-04 15:39:00    2017-05-04 15:39:00
87449    30016    957    2017-05-04 19:48:00    2017-05-04 19:48:00
87450    30017    577    2017-05-04 14:19:00    2017-05-04 14:19:00
87451    30017    501    2017-05-04 07:03:00    2017-05-04 07:03:00
87452    30017    542    2017-05-04 21:26:00    2017-05-04 21:26:00
87453    30017    534    2017-05-04 03:51:00    2017-05-04 03:51:00
87454    30017    748    2017-05-04 12:21:00    2017-05-04 12:21:00
87455    30018    796    2017-05-04 14:17:00    2017-05-04 14:17:00
87456    30018    539    2017-05-04 14:21:00    2017-05-04 14:21:00
87457    30018    469    2017-05-04 09:29:00    2017-05-04 09:29:00
87458    30018    951    2017-05-04 21:20:00    2017-05-04 21:20:00
87459    30018    592    2017-05-04 18:56:00    2017-05-04 18:56:00
87460    30019    773    2017-05-04 17:07:00    2017-05-04 17:07:00
87461    30019    817    2017-05-04 20:42:00    2017-05-04 20:42:00
87462    30019    542    2017-05-04 13:17:00    2017-05-04 13:17:00
87463    30019    608    2017-05-04 17:29:00    2017-05-04 17:29:00
87464    30019    907    2017-05-04 03:35:00    2017-05-04 03:35:00
87465    30020    960    2017-05-04 13:21:00    2017-05-04 13:21:00
87466    30020    733    2017-05-04 15:50:00    2017-05-04 15:50:00
87467    30020    922    2017-05-04 02:30:00    2017-05-04 02:30:00
87468    30020    918    2017-05-04 08:17:00    2017-05-04 08:17:00
87469    30020    644    2017-05-04 01:34:00    2017-05-04 01:34:00
87470    30021    939    2017-05-04 23:43:00    2017-05-04 23:43:00
87471    30021    819    2017-05-04 01:19:00    2017-05-04 01:19:00
87472    30021    810    2017-05-04 16:31:00    2017-05-04 16:31:00
87473    30021    877    2017-05-04 13:13:00    2017-05-04 13:13:00
87474    30021    497    2017-05-04 14:31:00    2017-05-04 14:31:00
87475    30022    937    2017-05-04 14:05:00    2017-05-04 14:05:00
87476    30022    476    2017-05-04 14:19:00    2017-05-04 14:19:00
87477    30022    530    2017-05-04 06:06:00    2017-05-04 06:06:00
87478    30022    684    2017-05-04 19:53:00    2017-05-04 19:53:00
87479    30022    509    2017-05-04 05:21:00    2017-05-04 05:21:00
87480    30023    919    2017-05-04 14:54:00    2017-05-04 14:54:00
87481    30023    751    2017-05-04 22:07:00    2017-05-04 22:07:00
87482    30023    857    2017-05-04 17:42:00    2017-05-04 17:42:00
87483    30023    513    2017-05-04 05:56:00    2017-05-04 05:56:00
87484    30023    611    2017-05-04 14:35:00    2017-05-04 14:35:00
87485    30024    846    2017-05-04 22:44:00    2017-05-04 22:44:00
87486    30024    732    2017-05-04 19:15:00    2017-05-04 19:15:00
87487    30024    867    2017-05-04 12:30:00    2017-05-04 12:30:00
87488    30024    753    2017-05-04 19:31:00    2017-05-04 19:31:00
87489    30024    938    2017-05-04 23:39:00    2017-05-04 23:39:00
87490    30025    605    2017-05-04 01:14:00    2017-05-04 01:14:00
87491    30025    917    2017-05-04 13:01:00    2017-05-04 13:01:00
87492    30025    637    2017-05-04 17:03:00    2017-05-04 17:03:00
87493    30025    518    2017-05-04 18:33:00    2017-05-04 18:33:00
87494    30025    657    2017-05-04 11:23:00    2017-05-04 11:23:00
87495    30026    536    2017-05-04 17:14:00    2017-05-04 17:14:00
87496    30026    753    2017-05-04 09:56:00    2017-05-04 09:56:00
87497    30026    693    2017-05-04 20:54:00    2017-05-04 20:54:00
87498    30026    826    2017-05-04 07:36:00    2017-05-04 07:36:00
87499    30026    900    2017-05-04 10:03:00    2017-05-04 10:03:00
87500    30027    644    2017-05-04 12:01:00    2017-05-04 12:01:00
87501    30027    693    2017-05-04 14:24:00    2017-05-04 14:24:00
87502    30027    537    2017-05-04 15:01:00    2017-05-04 15:01:00
87503    30027    783    2017-05-04 18:40:00    2017-05-04 18:40:00
87504    30027    731    2017-05-04 11:36:00    2017-05-04 11:36:00
87505    30028    600    2017-05-04 08:51:00    2017-05-04 08:51:00
87506    30028    697    2017-05-04 09:06:00    2017-05-04 09:06:00
87507    30028    493    2017-05-04 08:16:00    2017-05-04 08:16:00
87508    30028    473    2017-05-04 23:42:00    2017-05-04 23:42:00
87509    30028    730    2017-05-04 19:32:00    2017-05-04 19:32:00
87510    30029    490    2017-05-04 19:54:00    2017-05-04 19:54:00
87511    30029    528    2017-05-04 06:00:00    2017-05-04 06:00:00
87512    30029    781    2017-05-04 23:07:00    2017-05-04 23:07:00
87513    30029    751    2017-05-04 04:44:00    2017-05-04 04:44:00
87514    30029    528    2017-05-04 15:40:00    2017-05-04 15:40:00
87515    30030    609    2017-05-04 03:39:00    2017-05-04 03:39:00
87516    30030    792    2017-05-04 06:32:00    2017-05-04 06:32:00
87517    30030    465    2017-05-04 21:00:00    2017-05-04 21:00:00
87518    30030    523    2017-05-04 23:38:00    2017-05-04 23:38:00
87519    30030    813    2017-05-04 16:11:00    2017-05-04 16:11:00
87520    30031    513    2017-05-04 10:06:00    2017-05-04 10:06:00
87521    30031    679    2017-05-04 20:05:00    2017-05-04 20:05:00
87522    30031    525    2017-05-04 11:51:00    2017-05-04 11:51:00
87523    30031    771    2017-05-04 14:48:00    2017-05-04 14:48:00
87524    30031    659    2017-05-04 01:05:00    2017-05-04 01:05:00
87525    30032    506    2017-05-04 18:52:00    2017-05-04 18:52:00
87526    30032    677    2017-05-04 13:00:00    2017-05-04 13:00:00
87527    30032    958    2017-05-04 07:16:00    2017-05-04 07:16:00
87528    30032    738    2017-05-04 23:24:00    2017-05-04 23:24:00
87529    30032    484    2017-05-04 19:23:00    2017-05-04 19:23:00
87530    30033    785    2017-05-04 16:56:00    2017-05-04 16:56:00
87531    30033    652    2017-05-04 12:03:00    2017-05-04 12:03:00
87532    30033    934    2017-05-04 13:53:00    2017-05-04 13:53:00
87533    30033    848    2017-05-04 12:40:00    2017-05-04 12:40:00
87534    30033    702    2017-05-04 14:46:00    2017-05-04 14:46:00
87535    30034    812    2017-05-04 05:52:00    2017-05-04 05:52:00
87536    30034    559    2017-05-04 17:13:00    2017-05-04 17:13:00
87537    30034    467    2017-05-04 15:19:00    2017-05-04 15:19:00
87538    30034    521    2017-05-04 08:59:00    2017-05-04 08:59:00
87539    30034    870    2017-05-04 20:40:00    2017-05-04 20:40:00
87540    30035    519    2017-05-04 12:24:00    2017-05-04 12:24:00
87541    30035    932    2017-05-04 15:37:00    2017-05-04 15:37:00
87542    30035    927    2017-05-04 01:01:00    2017-05-04 01:01:00
87543    30035    654    2017-05-04 11:10:00    2017-05-04 11:10:00
87544    30035    599    2017-05-04 08:38:00    2017-05-04 08:38:00
87545    30036    579    2017-05-04 22:47:00    2017-05-04 22:47:00
87546    30036    742    2017-05-04 13:28:00    2017-05-04 13:28:00
87547    30036    612    2017-05-04 23:38:00    2017-05-04 23:38:00
87548    30036    507    2017-05-04 04:46:00    2017-05-04 04:46:00
87549    30036    715    2017-05-04 14:26:00    2017-05-04 14:26:00
87550    30037    853    2017-05-04 22:53:00    2017-05-04 22:53:00
87551    30037    787    2017-05-04 10:21:00    2017-05-04 10:21:00
87552    30037    731    2017-05-04 05:03:00    2017-05-04 05:03:00
87553    30037    809    2017-05-04 20:18:00    2017-05-04 20:18:00
87554    30037    465    2017-05-04 23:50:00    2017-05-04 23:50:00
87555    30038    568    2017-05-04 16:29:00    2017-05-04 16:29:00
87556    30038    773    2017-05-04 03:58:00    2017-05-04 03:58:00
87557    30038    806    2017-05-04 23:02:00    2017-05-04 23:02:00
87558    30038    704    2017-05-04 12:21:00    2017-05-04 12:21:00
87559    30038    545    2017-05-04 12:44:00    2017-05-04 12:44:00
87560    30039    472    2017-05-04 11:19:00    2017-05-04 11:19:00
87561    30039    682    2017-05-04 11:57:00    2017-05-04 11:57:00
87562    30039    536    2017-05-04 21:55:00    2017-05-04 21:55:00
87563    30039    793    2017-05-04 16:32:00    2017-05-04 16:32:00
87564    30039    505    2017-05-04 15:37:00    2017-05-04 15:37:00
87565    30040    767    2017-05-04 03:52:00    2017-05-04 03:52:00
87566    30040    501    2017-05-04 17:32:00    2017-05-04 17:32:00
87567    30040    546    2017-05-04 19:12:00    2017-05-04 19:12:00
87568    30040    503    2017-05-04 21:48:00    2017-05-04 21:48:00
87569    30040    889    2017-05-04 19:30:00    2017-05-04 19:30:00
87570    30041    899    2017-05-04 16:00:00    2017-05-04 16:00:00
87571    30041    773    2017-05-04 16:00:00    2017-05-04 16:00:00
87572    30041    786    2017-05-04 03:18:00    2017-05-04 03:18:00
87573    30041    475    2017-05-04 03:09:00    2017-05-04 03:09:00
87574    30041    761    2017-05-04 16:14:00    2017-05-04 16:14:00
87575    30042    946    2017-05-04 22:15:00    2017-05-04 22:15:00
87576    30042    513    2017-05-04 10:32:00    2017-05-04 10:32:00
87577    30042    906    2017-05-04 16:50:00    2017-05-04 16:50:00
87578    30042    770    2017-05-04 12:34:00    2017-05-04 12:34:00
87579    30042    801    2017-05-04 13:47:00    2017-05-04 13:47:00
87580    30043    836    2017-05-04 01:24:00    2017-05-04 01:24:00
87581    30043    725    2017-05-04 08:02:00    2017-05-04 08:02:00
87582    30043    618    2017-05-04 22:56:00    2017-05-04 22:56:00
87583    30043    888    2017-05-04 15:20:00    2017-05-04 15:20:00
87584    30043    890    2017-05-04 22:20:00    2017-05-04 22:20:00
87585    30044    572    2017-05-04 09:40:00    2017-05-04 09:40:00
87586    30044    749    2017-05-04 07:02:00    2017-05-04 07:02:00
87587    30044    891    2017-05-04 12:00:00    2017-05-04 12:00:00
87588    30044    850    2017-05-04 08:43:00    2017-05-04 08:43:00
87589    30044    888    2017-05-04 15:49:00    2017-05-04 15:49:00
87590    30045    567    2017-05-04 04:28:00    2017-05-04 04:28:00
87591    30045    957    2017-05-04 04:33:00    2017-05-04 04:33:00
87592    30045    605    2017-05-04 06:37:00    2017-05-04 06:37:00
87593    30045    857    2017-05-04 14:07:00    2017-05-04 14:07:00
87594    30045    946    2017-05-04 02:00:00    2017-05-04 02:00:00
87595    30046    528    2017-05-04 18:51:00    2017-05-04 18:51:00
87596    30046    583    2017-05-04 08:37:00    2017-05-04 08:37:00
87597    30046    703    2017-05-04 11:38:00    2017-05-04 11:38:00
87598    30046    816    2017-05-04 02:01:00    2017-05-04 02:01:00
87599    30046    858    2017-05-04 19:24:00    2017-05-04 19:24:00
87600    30047    946    2017-05-04 10:41:00    2017-05-04 10:41:00
87601    30047    633    2017-05-04 11:13:00    2017-05-04 11:13:00
87602    30047    686    2017-05-04 03:46:00    2017-05-04 03:46:00
87603    30047    669    2017-05-04 07:17:00    2017-05-04 07:17:00
87604    30047    586    2017-05-04 04:00:00    2017-05-04 04:00:00
87605    30048    860    2017-05-04 22:20:00    2017-05-04 22:20:00
87606    30048    859    2017-05-04 02:10:00    2017-05-04 02:10:00
87607    30048    808    2017-05-04 05:39:00    2017-05-04 05:39:00
87608    30048    473    2017-05-04 09:16:00    2017-05-04 09:16:00
87609    30048    669    2017-05-04 12:17:00    2017-05-04 12:17:00
87610    30049    801    2017-05-04 06:22:00    2017-05-04 06:22:00
87611    30049    839    2017-05-04 16:04:00    2017-05-04 16:04:00
87612    30049    779    2017-05-04 06:51:00    2017-05-04 06:51:00
87613    30049    556    2017-05-04 06:51:00    2017-05-04 06:51:00
87614    30049    940    2017-05-04 09:58:00    2017-05-04 09:58:00
87615    30050    915    2017-05-04 02:59:00    2017-05-04 02:59:00
87616    30050    822    2017-05-04 04:07:00    2017-05-04 04:07:00
87617    30050    877    2017-05-04 09:39:00    2017-05-04 09:39:00
87618    30050    853    2017-05-04 23:57:00    2017-05-04 23:57:00
87619    30050    792    2017-05-04 17:53:00    2017-05-04 17:53:00
87620    30051    622    2017-05-04 11:36:00    2017-05-04 11:36:00
87621    30051    562    2017-05-04 02:37:00    2017-05-04 02:37:00
87622    30051    722    2017-05-04 13:06:00    2017-05-04 13:06:00
87623    30051    936    2017-05-04 08:22:00    2017-05-04 08:22:00
87624    30051    627    2017-05-04 10:55:00    2017-05-04 10:55:00
87625    30052    817    2017-05-04 15:45:00    2017-05-04 15:45:00
87626    30052    838    2017-05-04 06:21:00    2017-05-04 06:21:00
87627    30052    840    2017-05-04 14:34:00    2017-05-04 14:34:00
87628    30052    577    2017-05-04 06:34:00    2017-05-04 06:34:00
87629    30052    905    2017-05-04 05:01:00    2017-05-04 05:01:00
87630    30053    888    2017-05-04 22:38:00    2017-05-04 22:38:00
87631    30053    640    2017-05-04 02:05:00    2017-05-04 02:05:00
87632    30053    538    2017-05-04 01:34:00    2017-05-04 01:34:00
87633    30053    746    2017-05-04 19:09:00    2017-05-04 19:09:00
87634    30053    685    2017-05-04 06:05:00    2017-05-04 06:05:00
87635    30054    526    2017-05-04 14:52:00    2017-05-04 14:52:00
87636    30054    492    2017-05-04 19:14:00    2017-05-04 19:14:00
87637    30054    574    2017-05-04 17:43:00    2017-05-04 17:43:00
87638    30054    517    2017-05-04 06:12:00    2017-05-04 06:12:00
87639    30054    469    2017-05-04 08:35:00    2017-05-04 08:35:00
87640    30055    742    2017-05-04 15:39:00    2017-05-04 15:39:00
87641    30055    931    2017-05-04 12:18:00    2017-05-04 12:18:00
87642    30055    840    2017-05-04 17:40:00    2017-05-04 17:40:00
87643    30055    834    2017-05-04 02:30:00    2017-05-04 02:30:00
87644    30055    837    2017-05-04 14:54:00    2017-05-04 14:54:00
87645    30056    886    2017-05-04 13:30:00    2017-05-04 13:30:00
87646    30056    891    2017-05-04 12:43:00    2017-05-04 12:43:00
87647    30056    682    2017-05-04 08:40:00    2017-05-04 08:40:00
87648    30056    866    2017-05-04 16:31:00    2017-05-04 16:31:00
87649    30056    949    2017-05-04 11:54:00    2017-05-04 11:54:00
87650    30057    566    2017-05-04 20:45:00    2017-05-04 20:45:00
87651    30057    756    2017-05-04 23:50:00    2017-05-04 23:50:00
87652    30057    590    2017-05-04 21:18:00    2017-05-04 21:18:00
87653    30057    556    2017-05-04 07:27:00    2017-05-04 07:27:00
87654    30057    649    2017-05-04 04:51:00    2017-05-04 04:51:00
87655    30058    773    2017-05-04 19:52:00    2017-05-04 19:52:00
87656    30058    516    2017-05-04 14:02:00    2017-05-04 14:02:00
87657    30058    680    2017-05-04 05:22:00    2017-05-04 05:22:00
87658    30058    522    2017-05-04 12:25:00    2017-05-04 12:25:00
87659    30058    595    2017-05-04 12:31:00    2017-05-04 12:31:00
87660    30059    848    2017-05-04 07:51:00    2017-05-04 07:51:00
87661    30059    504    2017-05-04 05:28:00    2017-05-04 05:28:00
87662    30059    937    2017-05-04 11:44:00    2017-05-04 11:44:00
87663    30059    817    2017-05-04 06:11:00    2017-05-04 06:11:00
87664    30059    734    2017-05-04 04:30:00    2017-05-04 04:30:00
87665    30060    873    2017-05-04 04:04:00    2017-05-04 04:04:00
87666    30060    871    2017-05-04 23:55:00    2017-05-04 23:55:00
87667    30060    626    2017-05-04 17:20:00    2017-05-04 17:20:00
87668    30060    504    2017-05-04 04:42:00    2017-05-04 04:42:00
87669    30060    771    2017-05-04 01:38:00    2017-05-04 01:38:00
87670    30061    549    2017-05-04 19:41:00    2017-05-04 19:41:00
87671    30061    880    2017-05-04 11:57:00    2017-05-04 11:57:00
87672    30061    519    2017-05-04 23:55:00    2017-05-04 23:55:00
87673    30061    579    2017-05-04 04:02:00    2017-05-04 04:02:00
87674    30061    801    2017-05-04 07:17:00    2017-05-04 07:17:00
87675    30062    577    2017-05-04 16:15:00    2017-05-04 16:15:00
87676    30062    672    2017-05-04 16:40:00    2017-05-04 16:40:00
87677    30062    487    2017-05-04 14:56:00    2017-05-04 14:56:00
87678    30062    548    2017-05-04 22:22:00    2017-05-04 22:22:00
87679    30062    544    2017-05-04 23:26:00    2017-05-04 23:26:00
87680    30063    667    2017-05-04 17:24:00    2017-05-04 17:24:00
87681    30063    626    2017-05-04 13:18:00    2017-05-04 13:18:00
87682    30063    655    2017-05-04 13:41:00    2017-05-04 13:41:00
87683    30063    831    2017-05-04 14:38:00    2017-05-04 14:38:00
87684    30063    504    2017-05-04 08:50:00    2017-05-04 08:50:00
87685    30064    895    2017-05-04 17:29:00    2017-05-04 17:29:00
87686    30064    957    2017-05-04 21:02:00    2017-05-04 21:02:00
87687    30064    873    2017-05-04 21:20:00    2017-05-04 21:20:00
87688    30064    625    2017-05-04 23:21:00    2017-05-04 23:21:00
87689    30064    786    2017-05-04 03:09:00    2017-05-04 03:09:00
87690    30065    825    2017-05-05 19:51:00    2017-05-05 19:51:00
87691    30065    603    2017-05-05 14:18:00    2017-05-05 14:18:00
87692    30065    774    2017-05-05 14:55:00    2017-05-05 14:55:00
87693    30065    525    2017-05-05 21:56:00    2017-05-05 21:56:00
87694    30065    692    2017-05-05 17:18:00    2017-05-05 17:18:00
87695    30066    849    2017-05-05 06:24:00    2017-05-05 06:24:00
87696    30066    782    2017-05-05 10:19:00    2017-05-05 10:19:00
87697    30066    487    2017-05-05 17:31:00    2017-05-05 17:31:00
87698    30066    546    2017-05-05 19:01:00    2017-05-05 19:01:00
87699    30066    674    2017-05-05 09:46:00    2017-05-05 09:46:00
87700    30067    716    2017-05-05 05:27:00    2017-05-05 05:27:00
87701    30067    521    2017-05-05 13:55:00    2017-05-05 13:55:00
87702    30067    466    2017-05-05 16:04:00    2017-05-05 16:04:00
87703    30067    645    2017-05-05 01:53:00    2017-05-05 01:53:00
87704    30067    917    2017-05-05 01:09:00    2017-05-05 01:09:00
87705    30068    606    2017-05-05 08:44:00    2017-05-05 08:44:00
87706    30068    476    2017-05-05 21:06:00    2017-05-05 21:06:00
87707    30068    866    2017-05-05 14:18:00    2017-05-05 14:18:00
87708    30068    801    2017-05-05 02:11:00    2017-05-05 02:11:00
87709    30068    690    2017-05-05 21:57:00    2017-05-05 21:57:00
87710    30069    857    2017-05-05 18:13:00    2017-05-05 18:13:00
87711    30069    929    2017-05-05 02:35:00    2017-05-05 02:35:00
87712    30069    812    2017-05-05 16:04:00    2017-05-05 16:04:00
87713    30069    876    2017-05-05 04:00:00    2017-05-05 04:00:00
87714    30069    554    2017-05-05 06:04:00    2017-05-05 06:04:00
87715    30070    926    2017-05-05 23:15:00    2017-05-05 23:15:00
87716    30070    715    2017-05-05 22:02:00    2017-05-05 22:02:00
87717    30070    841    2017-05-05 13:51:00    2017-05-05 13:51:00
87718    30070    727    2017-05-05 04:05:00    2017-05-05 04:05:00
87719    30070    677    2017-05-05 20:05:00    2017-05-05 20:05:00
87720    30071    487    2017-05-05 20:44:00    2017-05-05 20:44:00
87721    30071    769    2017-05-05 03:27:00    2017-05-05 03:27:00
87723    30071    778    2017-05-05 10:53:00    2017-05-05 10:53:00
87724    30071    656    2017-05-05 14:21:00    2017-05-05 14:21:00
87725    30072    720    2017-05-05 23:38:00    2017-05-05 23:38:00
87726    30072    562    2017-05-05 23:29:00    2017-05-05 23:29:00
87727    30072    827    2017-05-05 05:20:00    2017-05-05 05:20:00
87728    30072    877    2017-05-05 21:43:00    2017-05-05 21:43:00
87729    30072    533    2017-05-05 17:02:00    2017-05-05 17:02:00
87730    30073    700    2017-05-05 02:54:00    2017-05-05 02:54:00
87731    30073    951    2017-05-05 02:51:00    2017-05-05 02:51:00
87732    30073    659    2017-05-05 23:24:00    2017-05-05 23:24:00
87733    30073    491    2017-05-05 13:18:00    2017-05-05 13:18:00
87734    30073    714    2017-05-05 16:10:00    2017-05-05 16:10:00
87735    30074    959    2017-05-05 03:13:00    2017-05-05 03:13:00
87736    30074    707    2017-05-05 11:42:00    2017-05-05 11:42:00
87737    30074    678    2017-05-05 11:03:00    2017-05-05 11:03:00
87738    30074    553    2017-05-05 15:51:00    2017-05-05 15:51:00
87739    30074    868    2017-05-05 18:58:00    2017-05-05 18:58:00
87740    30075    636    2017-05-05 07:19:00    2017-05-05 07:19:00
87741    30075    848    2017-05-05 13:22:00    2017-05-05 13:22:00
87742    30075    590    2017-05-05 12:14:00    2017-05-05 12:14:00
87743    30075    526    2017-05-05 11:00:00    2017-05-05 11:00:00
87744    30075    464    2017-05-05 02:55:00    2017-05-05 02:55:00
87745    30076    779    2017-05-05 05:09:00    2017-05-05 05:09:00
87746    30076    856    2017-05-05 20:51:00    2017-05-05 20:51:00
87747    30076    674    2017-05-05 23:41:00    2017-05-05 23:41:00
87748    30076    767    2017-05-05 15:01:00    2017-05-05 15:01:00
87749    30076    645    2017-05-05 13:51:00    2017-05-05 13:51:00
87750    30077    742    2017-05-05 07:45:00    2017-05-05 07:45:00
87751    30077    915    2017-05-05 13:40:00    2017-05-05 13:40:00
87752    30077    474    2017-05-05 15:40:00    2017-05-05 15:40:00
87753    30077    851    2017-05-05 12:19:00    2017-05-05 12:19:00
87754    30077    939    2017-05-05 03:59:00    2017-05-05 03:59:00
87755    30078    899    2017-05-05 09:10:00    2017-05-05 09:10:00
87756    30078    829    2017-05-05 06:38:00    2017-05-05 06:38:00
87757    30078    501    2017-05-05 01:43:00    2017-05-05 01:43:00
87758    30078    733    2017-05-05 19:24:00    2017-05-05 19:24:00
87759    30078    923    2017-05-05 15:49:00    2017-05-05 15:49:00
87760    30079    617    2017-05-05 11:17:00    2017-05-05 11:17:00
87761    30079    787    2017-05-05 11:39:00    2017-05-05 11:39:00
87762    30079    862    2017-05-05 07:06:00    2017-05-05 07:06:00
87763    30079    661    2017-05-05 10:55:00    2017-05-05 10:55:00
87764    30079    527    2017-05-05 08:00:00    2017-05-05 08:00:00
87765    30080    616    2017-05-05 21:51:00    2017-05-05 21:51:00
87766    30080    824    2017-05-05 10:43:00    2017-05-05 10:43:00
87767    30080    486    2017-05-05 11:38:00    2017-05-05 11:38:00
87768    30080    890    2017-05-05 10:50:00    2017-05-05 10:50:00
87769    30080    865    2017-05-05 22:01:00    2017-05-05 22:01:00
87770    30081    597    2017-05-05 22:52:00    2017-05-05 22:52:00
87771    30081    611    2017-05-05 11:33:00    2017-05-05 11:33:00
87772    30081    688    2017-05-05 15:12:00    2017-05-05 15:12:00
87773    30081    618    2017-05-05 20:00:00    2017-05-05 20:00:00
87774    30081    597    2017-05-05 21:00:00    2017-05-05 21:00:00
87775    30082    893    2017-05-05 14:45:00    2017-05-05 14:45:00
87776    30082    666    2017-05-05 06:17:00    2017-05-05 06:17:00
87777    30082    557    2017-05-05 02:26:00    2017-05-05 02:26:00
87778    30082    836    2017-05-05 05:31:00    2017-05-05 05:31:00
87779    30082    531    2017-05-05 14:45:00    2017-05-05 14:45:00
87780    30083    914    2017-05-05 10:01:00    2017-05-05 10:01:00
87781    30083    544    2017-05-05 16:32:00    2017-05-05 16:32:00
87782    30083    796    2017-05-05 14:28:00    2017-05-05 14:28:00
87783    30083    631    2017-05-05 10:11:00    2017-05-05 10:11:00
87784    30083    514    2017-05-05 07:11:00    2017-05-05 07:11:00
87785    30084    689    2017-05-05 03:19:00    2017-05-05 03:19:00
87786    30084    552    2017-05-05 19:22:00    2017-05-05 19:22:00
87787    30084    782    2017-05-05 13:27:00    2017-05-05 13:27:00
87788    30084    575    2017-05-05 16:44:00    2017-05-05 16:44:00
87789    30084    553    2017-05-05 04:44:00    2017-05-05 04:44:00
87790    30085    656    2017-05-05 08:12:00    2017-05-05 08:12:00
87791    30085    827    2017-05-05 11:20:00    2017-05-05 11:20:00
87792    30085    654    2017-05-05 10:53:00    2017-05-05 10:53:00
87793    30085    781    2017-05-05 18:51:00    2017-05-05 18:51:00
87794    30085    841    2017-05-05 11:00:00    2017-05-05 11:00:00
87795    30086    535    2017-05-05 21:58:00    2017-05-05 21:58:00
87796    30086    544    2017-05-05 03:50:00    2017-05-05 03:50:00
87797    30086    783    2017-05-05 08:00:00    2017-05-05 08:00:00
87798    30086    768    2017-05-05 17:55:00    2017-05-05 17:55:00
87799    30086    814    2017-05-05 09:00:00    2017-05-05 09:00:00
87800    30087    831    2017-05-05 15:34:00    2017-05-05 15:34:00
87801    30087    783    2017-05-05 04:42:00    2017-05-05 04:42:00
87802    30087    474    2017-05-05 22:44:00    2017-05-05 22:44:00
87803    30087    480    2017-05-05 18:57:00    2017-05-05 18:57:00
87804    30087    804    2017-05-05 02:08:00    2017-05-05 02:08:00
87805    30088    831    2017-05-05 11:27:00    2017-05-05 11:27:00
87806    30088    606    2017-05-05 16:35:00    2017-05-05 16:35:00
87807    30088    536    2017-05-05 22:00:00    2017-05-05 22:00:00
87808    30088    547    2017-05-05 04:32:00    2017-05-05 04:32:00
87809    30088    897    2017-05-05 10:50:00    2017-05-05 10:50:00
87810    30089    578    2017-05-05 18:07:00    2017-05-05 18:07:00
87811    30089    667    2017-05-05 22:01:00    2017-05-05 22:01:00
87812    30089    735    2017-05-05 14:48:00    2017-05-05 14:48:00
87813    30089    588    2017-05-05 04:37:00    2017-05-05 04:37:00
87814    30089    960    2017-05-05 05:51:00    2017-05-05 05:51:00
87815    30090    783    2017-05-05 14:50:00    2017-05-05 14:50:00
87816    30090    469    2017-05-05 02:03:00    2017-05-05 02:03:00
87817    30090    496    2017-05-05 10:07:00    2017-05-05 10:07:00
87818    30090    631    2017-05-05 06:27:00    2017-05-05 06:27:00
87819    30090    862    2017-05-05 03:44:00    2017-05-05 03:44:00
87820    30091    843    2017-05-05 08:19:00    2017-05-05 08:19:00
87821    30091    513    2017-05-05 07:01:00    2017-05-05 07:01:00
87822    30091    952    2017-05-05 13:02:00    2017-05-05 13:02:00
87823    30091    590    2017-05-05 10:11:00    2017-05-05 10:11:00
87824    30091    503    2017-05-05 23:34:00    2017-05-05 23:34:00
87825    30092    939    2017-05-05 14:43:00    2017-05-05 14:43:00
87826    30092    584    2017-05-05 14:26:00    2017-05-05 14:26:00
87827    30092    715    2017-05-05 17:24:00    2017-05-05 17:24:00
87828    30092    900    2017-05-05 08:01:00    2017-05-05 08:01:00
87829    30092    797    2017-05-05 18:17:00    2017-05-05 18:17:00
87830    30093    536    2017-05-05 15:00:00    2017-05-05 15:00:00
87831    30093    915    2017-05-05 12:59:00    2017-05-05 12:59:00
87832    30093    721    2017-05-05 06:30:00    2017-05-05 06:30:00
87833    30093    883    2017-05-05 20:05:00    2017-05-05 20:05:00
87834    30093    915    2017-05-05 03:25:00    2017-05-05 03:25:00
87835    30094    506    2017-05-05 21:26:00    2017-05-05 21:26:00
87836    30094    673    2017-05-05 08:23:00    2017-05-05 08:23:00
87837    30094    764    2017-05-05 21:07:00    2017-05-05 21:07:00
87838    30094    603    2017-05-05 13:52:00    2017-05-05 13:52:00
87839    30094    835    2017-05-05 01:45:00    2017-05-05 01:45:00
87840    30095    623    2017-05-05 09:51:00    2017-05-05 09:51:00
87841    30095    561    2017-05-05 17:50:00    2017-05-05 17:50:00
87842    30095    854    2017-05-05 16:28:00    2017-05-05 16:28:00
87843    30095    954    2017-05-05 13:14:00    2017-05-05 13:14:00
87844    30095    479    2017-05-05 18:59:00    2017-05-05 18:59:00
87845    30096    877    2017-05-05 02:09:00    2017-05-05 02:09:00
87846    30096    953    2017-05-05 15:04:00    2017-05-05 15:04:00
87847    30096    600    2017-05-05 15:56:00    2017-05-05 15:56:00
87848    30096    941    2017-05-05 13:43:00    2017-05-05 13:43:00
87849    30096    871    2017-05-05 23:49:00    2017-05-05 23:49:00
87850    30097    933    2017-05-05 09:47:00    2017-05-05 09:47:00
87851    30097    547    2017-05-05 17:01:00    2017-05-05 17:01:00
87852    30097    812    2017-05-05 20:44:00    2017-05-05 20:44:00
87853    30097    526    2017-05-05 07:05:00    2017-05-05 07:05:00
87854    30097    643    2017-05-05 15:38:00    2017-05-05 15:38:00
87855    30098    611    2017-05-05 23:33:00    2017-05-05 23:33:00
87856    30098    766    2017-05-05 22:04:00    2017-05-05 22:04:00
87857    30098    790    2017-05-05 03:24:00    2017-05-05 03:24:00
87858    30098    486    2017-05-05 04:29:00    2017-05-05 04:29:00
87859    30098    800    2017-05-05 07:35:00    2017-05-05 07:35:00
87860    30099    499    2017-05-05 04:21:00    2017-05-05 04:21:00
87861    30099    759    2017-05-05 23:10:00    2017-05-05 23:10:00
87862    30099    842    2017-05-05 21:00:00    2017-05-05 21:00:00
87863    30099    844    2017-05-05 19:05:00    2017-05-05 19:05:00
87864    30099    811    2017-05-05 20:24:00    2017-05-05 20:24:00
87865    30100    625    2017-05-05 15:41:00    2017-05-05 15:41:00
87866    30100    662    2017-05-05 13:02:00    2017-05-05 13:02:00
87867    30100    814    2017-05-05 11:05:00    2017-05-05 11:05:00
87868    30100    646    2017-05-05 03:39:00    2017-05-05 03:39:00
87869    30100    533    2017-05-05 06:22:00    2017-05-05 06:22:00
87870    30101    543    2017-05-05 12:00:00    2017-05-05 12:00:00
87871    30101    894    2017-05-05 10:26:00    2017-05-05 10:26:00
87872    30101    629    2017-05-05 01:29:00    2017-05-05 01:29:00
87873    30101    465    2017-05-05 05:57:00    2017-05-05 05:57:00
87874    30101    626    2017-05-05 10:41:00    2017-05-05 10:41:00
87875    30102    961    2017-05-05 05:00:00    2017-05-05 05:00:00
87876    30102    584    2017-05-05 07:02:00    2017-05-05 07:02:00
87877    30102    763    2017-05-05 17:02:00    2017-05-05 17:02:00
87878    30102    612    2017-05-05 20:49:00    2017-05-05 20:49:00
87879    30102    548    2017-05-05 06:46:00    2017-05-05 06:46:00
87880    30103    915    2017-05-05 01:38:00    2017-05-05 01:38:00
87881    30103    880    2017-05-05 04:54:00    2017-05-05 04:54:00
87882    30103    872    2017-05-05 13:19:00    2017-05-05 13:19:00
87883    30103    910    2017-05-05 06:35:00    2017-05-05 06:35:00
87884    30103    719    2017-05-05 04:27:00    2017-05-05 04:27:00
87885    30104    481    2017-05-05 16:01:00    2017-05-05 16:01:00
87886    30104    919    2017-05-05 18:06:00    2017-05-05 18:06:00
87887    30104    800    2017-05-05 18:36:00    2017-05-05 18:36:00
87888    30104    532    2017-05-05 05:22:00    2017-05-05 05:22:00
87889    30104    745    2017-05-05 11:23:00    2017-05-05 11:23:00
87890    30105    467    2017-05-05 03:55:00    2017-05-05 03:55:00
87891    30105    552    2017-05-05 20:09:00    2017-05-05 20:09:00
87892    30105    494    2017-05-05 09:11:00    2017-05-05 09:11:00
87893    30105    473    2017-05-05 17:49:00    2017-05-05 17:49:00
87894    30105    712    2017-05-05 12:18:00    2017-05-05 12:18:00
87895    30106    616    2017-05-05 15:47:00    2017-05-05 15:47:00
87896    30106    469    2017-05-05 09:36:00    2017-05-05 09:36:00
87897    30106    749    2017-05-05 15:49:00    2017-05-05 15:49:00
87898    30106    720    2017-05-05 16:19:00    2017-05-05 16:19:00
87899    30106    846    2017-05-05 09:19:00    2017-05-05 09:19:00
87900    30107    527    2017-05-05 16:56:00    2017-05-05 16:56:00
87901    30107    692    2017-05-05 05:15:00    2017-05-05 05:15:00
87902    30107    906    2017-05-05 04:16:00    2017-05-05 04:16:00
87903    30107    836    2017-05-05 09:00:00    2017-05-05 09:00:00
87904    30107    470    2017-05-05 12:59:00    2017-05-05 12:59:00
87905    30108    616    2017-05-05 01:27:00    2017-05-05 01:27:00
87906    30108    584    2017-05-05 01:31:00    2017-05-05 01:31:00
87907    30108    482    2017-05-05 07:52:00    2017-05-05 07:52:00
87908    30108    871    2017-05-05 06:15:00    2017-05-05 06:15:00
87909    30108    938    2017-05-05 08:38:00    2017-05-05 08:38:00
87910    30109    596    2017-05-05 10:25:00    2017-05-05 10:25:00
87911    30109    605    2017-05-05 17:59:00    2017-05-05 17:59:00
87912    30109    491    2017-05-05 04:32:00    2017-05-05 04:32:00
87913    30109    890    2017-05-05 08:36:00    2017-05-05 08:36:00
87914    30109    941    2017-05-05 19:21:00    2017-05-05 19:21:00
87915    30110    749    2017-05-05 04:11:00    2017-05-05 04:11:00
87916    30110    930    2017-05-05 07:49:00    2017-05-05 07:49:00
87917    30110    673    2017-05-05 17:59:00    2017-05-05 17:59:00
87918    30110    505    2017-05-05 04:35:00    2017-05-05 04:35:00
87919    30110    598    2017-05-05 04:58:00    2017-05-05 04:58:00
87920    30111    542    2017-05-05 15:45:00    2017-05-05 15:45:00
87921    30111    823    2017-05-05 23:05:00    2017-05-05 23:05:00
87922    30111    543    2017-05-05 16:15:00    2017-05-05 16:15:00
87923    30111    510    2017-05-05 21:32:00    2017-05-05 21:32:00
87924    30111    766    2017-05-05 07:57:00    2017-05-05 07:57:00
87925    30112    537    2017-05-05 17:57:00    2017-05-05 17:57:00
87926    30112    799    2017-05-05 15:40:00    2017-05-05 15:40:00
87927    30112    751    2017-05-05 21:35:00    2017-05-05 21:35:00
87928    30112    651    2017-05-05 04:37:00    2017-05-05 04:37:00
87929    30112    662    2017-05-05 01:10:00    2017-05-05 01:10:00
87930    30113    520    2017-05-05 14:55:00    2017-05-05 14:55:00
87931    30113    841    2017-05-05 09:11:00    2017-05-05 09:11:00
87932    30113    735    2017-05-05 04:33:00    2017-05-05 04:33:00
87933    30113    511    2017-05-05 02:13:00    2017-05-05 02:13:00
87934    30113    750    2017-05-05 07:35:00    2017-05-05 07:35:00
87935    30114    845    2017-05-05 08:54:00    2017-05-05 08:54:00
87936    30114    634    2017-05-05 01:26:00    2017-05-05 01:26:00
87937    30114    830    2017-05-05 08:46:00    2017-05-05 08:46:00
87938    30114    879    2017-05-05 07:43:00    2017-05-05 07:43:00
87939    30114    498    2017-05-05 02:54:00    2017-05-05 02:54:00
87940    30115    575    2017-05-05 10:28:00    2017-05-05 10:28:00
87941    30115    897    2017-05-05 15:41:00    2017-05-05 15:41:00
87942    30115    542    2017-05-05 19:51:00    2017-05-05 19:51:00
87943    30115    941    2017-05-05 17:40:00    2017-05-05 17:40:00
87944    30115    868    2017-05-05 05:30:00    2017-05-05 05:30:00
87945    30116    884    2017-05-05 08:49:00    2017-05-05 08:49:00
87946    30116    510    2017-05-05 09:24:00    2017-05-05 09:24:00
87947    30116    868    2017-05-05 12:55:00    2017-05-05 12:55:00
87948    30116    880    2017-05-05 02:09:00    2017-05-05 02:09:00
87949    30116    879    2017-05-05 18:43:00    2017-05-05 18:43:00
87950    30117    727    2017-05-05 16:53:00    2017-05-05 16:53:00
87951    30117    951    2017-05-05 14:40:00    2017-05-05 14:40:00
87952    30117    954    2017-05-05 17:59:00    2017-05-05 17:59:00
87953    30117    891    2017-05-05 22:53:00    2017-05-05 22:53:00
87954    30117    921    2017-05-05 04:26:00    2017-05-05 04:26:00
87955    30118    955    2017-05-05 09:17:00    2017-05-05 09:17:00
87956    30118    486    2017-05-05 05:17:00    2017-05-05 05:17:00
87957    30118    880    2017-05-05 07:07:00    2017-05-05 07:07:00
87958    30118    640    2017-05-05 05:59:00    2017-05-05 05:59:00
87959    30118    857    2017-05-05 10:55:00    2017-05-05 10:55:00
87960    30119    537    2017-05-05 09:55:00    2017-05-05 09:55:00
87961    30119    682    2017-05-05 11:53:00    2017-05-05 11:53:00
87962    30119    653    2017-05-05 07:50:00    2017-05-05 07:50:00
87963    30119    814    2017-05-05 21:39:00    2017-05-05 21:39:00
87964    30119    876    2017-05-05 05:06:00    2017-05-05 05:06:00
87966    30120    774    2017-05-05 05:38:00    2017-05-05 05:38:00
87967    30120    613    2017-05-05 16:53:00    2017-05-05 16:53:00
87968    30120    548    2017-05-05 15:19:00    2017-05-05 15:19:00
87969    30120    823    2017-05-05 23:22:00    2017-05-05 23:22:00
87970    30121    933    2017-05-06 05:39:00    2017-05-06 05:39:00
87971    30121    799    2017-05-06 21:41:00    2017-05-06 21:41:00
87972    30121    473    2017-05-06 20:28:00    2017-05-06 20:28:00
87973    30121    510    2017-05-06 11:00:00    2017-05-06 11:00:00
87974    30121    893    2017-05-06 04:57:00    2017-05-06 04:57:00
87975    30122    511    2017-05-06 05:11:00    2017-05-06 05:11:00
87976    30122    834    2017-05-06 13:46:00    2017-05-06 13:46:00
87977    30122    548    2017-05-06 08:59:00    2017-05-06 08:59:00
87978    30122    708    2017-05-06 11:58:00    2017-05-06 11:58:00
87979    30122    802    2017-05-06 12:49:00    2017-05-06 12:49:00
87980    30123    864    2017-05-06 19:59:00    2017-05-06 19:59:00
87981    30123    586    2017-05-06 06:06:00    2017-05-06 06:06:00
87982    30123    679    2017-05-06 12:30:00    2017-05-06 12:30:00
87983    30123    883    2017-05-06 20:00:00    2017-05-06 20:00:00
87984    30123    497    2017-05-06 09:39:00    2017-05-06 09:39:00
87985    30124    464    2017-05-06 20:24:00    2017-05-06 20:24:00
87986    30124    482    2017-05-06 12:46:00    2017-05-06 12:46:00
87987    30124    653    2017-05-06 12:12:00    2017-05-06 12:12:00
87988    30124    765    2017-05-06 06:00:00    2017-05-06 06:00:00
87989    30124    592    2017-05-06 02:48:00    2017-05-06 02:48:00
87990    30125    725    2017-05-06 19:22:00    2017-05-06 19:22:00
87991    30125    733    2017-05-06 07:47:00    2017-05-06 07:47:00
87992    30125    779    2017-05-06 13:20:00    2017-05-06 13:20:00
87993    30125    927    2017-05-06 01:28:00    2017-05-06 01:28:00
87994    30125    757    2017-05-06 16:38:00    2017-05-06 16:38:00
87995    30126    946    2017-05-06 15:08:00    2017-05-06 15:08:00
87996    30126    535    2017-05-06 05:48:00    2017-05-06 05:48:00
87997    30126    676    2017-05-06 17:57:00    2017-05-06 17:57:00
87998    30126    741    2017-05-06 12:44:00    2017-05-06 12:44:00
87999    30126    496    2017-05-06 16:50:00    2017-05-06 16:50:00
88000    30127    606    2017-05-06 22:01:00    2017-05-06 22:01:00
88001    30127    738    2017-05-06 18:50:00    2017-05-06 18:50:00
88002    30127    733    2017-05-06 10:41:00    2017-05-06 10:41:00
88003    30127    554    2017-05-06 09:46:00    2017-05-06 09:46:00
88004    30127    734    2017-05-06 01:54:00    2017-05-06 01:54:00
88005    30128    547    2017-05-06 16:52:00    2017-05-06 16:52:00
88006    30128    528    2017-05-06 09:03:00    2017-05-06 09:03:00
88007    30128    840    2017-05-06 19:45:00    2017-05-06 19:45:00
88008    30128    849    2017-05-06 07:36:00    2017-05-06 07:36:00
88009    30128    648    2017-05-06 16:02:00    2017-05-06 16:02:00
88010    30129    588    2017-05-06 19:54:00    2017-05-06 19:54:00
88011    30129    480    2017-05-06 11:05:00    2017-05-06 11:05:00
88012    30129    843    2017-05-06 06:05:00    2017-05-06 06:05:00
88013    30129    723    2017-05-06 19:49:00    2017-05-06 19:49:00
88014    30129    470    2017-05-06 01:48:00    2017-05-06 01:48:00
88015    30130    747    2017-05-06 11:05:00    2017-05-06 11:05:00
88016    30130    544    2017-05-06 21:23:00    2017-05-06 21:23:00
88017    30130    633    2017-05-06 12:14:00    2017-05-06 12:14:00
88018    30130    871    2017-05-06 21:54:00    2017-05-06 21:54:00
88019    30130    773    2017-05-06 14:35:00    2017-05-06 14:35:00
88020    30131    629    2017-05-06 05:42:00    2017-05-06 05:42:00
88021    30131    512    2017-05-06 10:57:00    2017-05-06 10:57:00
88022    30131    728    2017-05-06 03:28:00    2017-05-06 03:28:00
88023    30131    662    2017-05-06 20:01:00    2017-05-06 20:01:00
88024    30131    616    2017-05-06 07:55:00    2017-05-06 07:55:00
88025    30132    674    2017-05-06 14:55:00    2017-05-06 14:55:00
88026    30132    574    2017-05-06 07:32:00    2017-05-06 07:32:00
88027    30132    731    2017-05-06 23:27:00    2017-05-06 23:27:00
88028    30132    645    2017-05-06 16:30:00    2017-05-06 16:30:00
88029    30132    577    2017-05-06 05:01:00    2017-05-06 05:01:00
88030    30133    871    2017-05-06 08:54:00    2017-05-06 08:54:00
88031    30133    794    2017-05-06 04:51:00    2017-05-06 04:51:00
88032    30133    614    2017-05-06 04:16:00    2017-05-06 04:16:00
88033    30133    622    2017-05-06 09:18:00    2017-05-06 09:18:00
88034    30133    787    2017-05-06 03:44:00    2017-05-06 03:44:00
88035    30134    825    2017-05-06 22:47:00    2017-05-06 22:47:00
88036    30134    819    2017-05-06 09:22:00    2017-05-06 09:22:00
88037    30134    925    2017-05-06 15:32:00    2017-05-06 15:32:00
88038    30134    949    2017-05-06 02:15:00    2017-05-06 02:15:00
88039    30134    886    2017-05-06 09:07:00    2017-05-06 09:07:00
88040    30135    826    2017-05-06 17:04:00    2017-05-06 17:04:00
88041    30135    836    2017-05-06 23:50:00    2017-05-06 23:50:00
88042    30135    923    2017-05-06 05:00:00    2017-05-06 05:00:00
88043    30135    503    2017-05-06 04:15:00    2017-05-06 04:15:00
88044    30135    512    2017-05-06 10:33:00    2017-05-06 10:33:00
88045    30136    828    2017-05-06 03:12:00    2017-05-06 03:12:00
88046    30136    924    2017-05-06 05:16:00    2017-05-06 05:16:00
88047    30136    808    2017-05-06 19:56:00    2017-05-06 19:56:00
88048    30136    467    2017-05-06 04:47:00    2017-05-06 04:47:00
88049    30136    952    2017-05-06 13:05:00    2017-05-06 13:05:00
88050    30137    528    2017-05-06 03:15:00    2017-05-06 03:15:00
88051    30137    828    2017-05-06 07:53:00    2017-05-06 07:53:00
88052    30137    786    2017-05-06 10:24:00    2017-05-06 10:24:00
88053    30137    474    2017-05-06 07:36:00    2017-05-06 07:36:00
88054    30137    891    2017-05-06 01:21:00    2017-05-06 01:21:00
88055    30138    679    2017-05-06 15:37:00    2017-05-06 15:37:00
88056    30138    900    2017-05-06 21:10:00    2017-05-06 21:10:00
88057    30138    560    2017-05-06 12:40:00    2017-05-06 12:40:00
88058    30138    902    2017-05-06 08:21:00    2017-05-06 08:21:00
88059    30138    586    2017-05-06 09:36:00    2017-05-06 09:36:00
88060    30139    908    2017-05-06 06:17:00    2017-05-06 06:17:00
88061    30139    672    2017-05-06 20:39:00    2017-05-06 20:39:00
88062    30139    668    2017-05-06 19:21:00    2017-05-06 19:21:00
88063    30139    493    2017-05-06 22:50:00    2017-05-06 22:50:00
88064    30139    795    2017-05-06 23:54:00    2017-05-06 23:54:00
88065    30140    634    2017-05-06 04:01:00    2017-05-06 04:01:00
88066    30140    699    2017-05-06 15:26:00    2017-05-06 15:26:00
88067    30140    821    2017-05-06 13:54:00    2017-05-06 13:54:00
88068    30140    652    2017-05-06 23:28:00    2017-05-06 23:28:00
88069    30140    494    2017-05-06 15:13:00    2017-05-06 15:13:00
88070    30141    603    2017-05-06 18:11:00    2017-05-06 18:11:00
88071    30141    574    2017-05-06 21:27:00    2017-05-06 21:27:00
88072    30141    887    2017-05-06 10:17:00    2017-05-06 10:17:00
88073    30141    760    2017-05-06 01:57:00    2017-05-06 01:57:00
88075    30142    632    2017-05-06 01:22:00    2017-05-06 01:22:00
88076    30142    466    2017-05-06 20:33:00    2017-05-06 20:33:00
88077    30142    747    2017-05-06 20:06:00    2017-05-06 20:06:00
88078    30142    759    2017-05-06 18:52:00    2017-05-06 18:52:00
88079    30142    522    2017-05-06 07:42:00    2017-05-06 07:42:00
88080    30143    519    2017-05-06 19:41:00    2017-05-06 19:41:00
88081    30143    775    2017-05-06 13:18:00    2017-05-06 13:18:00
88082    30143    825    2017-05-06 13:45:00    2017-05-06 13:45:00
88083    30143    626    2017-05-06 06:21:00    2017-05-06 06:21:00
88084    30143    627    2017-05-06 04:19:00    2017-05-06 04:19:00
88085    30144    679    2017-05-06 06:31:00    2017-05-06 06:31:00
88086    30144    658    2017-05-06 05:20:00    2017-05-06 05:20:00
88087    30144    879    2017-05-06 21:56:00    2017-05-06 21:56:00
88088    30144    700    2017-05-06 02:17:00    2017-05-06 02:17:00
88089    30144    544    2017-05-06 04:21:00    2017-05-06 04:21:00
88090    30145    561    2017-05-06 08:43:00    2017-05-06 08:43:00
88091    30145    492    2017-05-06 18:53:00    2017-05-06 18:53:00
88092    30145    807    2017-05-06 23:14:00    2017-05-06 23:14:00
88093    30145    925    2017-05-06 13:49:00    2017-05-06 13:49:00
88094    30145    940    2017-05-06 16:47:00    2017-05-06 16:47:00
88095    30146    720    2017-05-06 06:37:00    2017-05-06 06:37:00
88096    30146    513    2017-05-06 21:43:00    2017-05-06 21:43:00
88097    30146    881    2017-05-06 09:09:00    2017-05-06 09:09:00
88098    30146    478    2017-05-06 04:46:00    2017-05-06 04:46:00
88099    30146    491    2017-05-06 21:15:00    2017-05-06 21:15:00
88100    30147    888    2017-05-06 03:27:00    2017-05-06 03:27:00
88101    30147    897    2017-05-06 01:07:00    2017-05-06 01:07:00
88102    30147    672    2017-05-06 11:01:00    2017-05-06 11:01:00
88103    30147    667    2017-05-06 08:01:00    2017-05-06 08:01:00
88104    30147    804    2017-05-06 08:50:00    2017-05-06 08:50:00
88105    30148    745    2017-05-06 22:40:00    2017-05-06 22:40:00
88106    30148    502    2017-05-06 01:42:00    2017-05-06 01:42:00
88107    30148    784    2017-05-06 03:56:00    2017-05-06 03:56:00
88108    30148    948    2017-05-06 04:29:00    2017-05-06 04:29:00
88109    30148    820    2017-05-06 20:14:00    2017-05-06 20:14:00
88110    30149    762    2017-05-06 08:26:00    2017-05-06 08:26:00
88111    30149    573    2017-05-06 15:00:00    2017-05-06 15:00:00
88112    30149    875    2017-05-06 23:10:00    2017-05-06 23:10:00
88113    30149    559    2017-05-06 13:26:00    2017-05-06 13:26:00
88114    30149    874    2017-05-06 09:58:00    2017-05-06 09:58:00
88115    30150    842    2017-05-06 22:37:00    2017-05-06 22:37:00
88116    30150    671    2017-05-06 12:03:00    2017-05-06 12:03:00
88117    30150    936    2017-05-06 01:34:00    2017-05-06 01:34:00
88118    30150    598    2017-05-06 07:53:00    2017-05-06 07:53:00
88119    30150    753    2017-05-06 14:46:00    2017-05-06 14:46:00
88120    30151    639    2017-05-06 15:24:00    2017-05-06 15:24:00
88121    30151    802    2017-05-06 18:32:00    2017-05-06 18:32:00
88122    30151    759    2017-05-06 05:10:00    2017-05-06 05:10:00
88123    30151    862    2017-05-06 08:42:00    2017-05-06 08:42:00
88124    30151    823    2017-05-06 03:59:00    2017-05-06 03:59:00
88125    30152    705    2017-05-06 15:57:00    2017-05-06 15:57:00
88126    30152    826    2017-05-06 01:10:00    2017-05-06 01:10:00
88127    30152    822    2017-05-06 07:38:00    2017-05-06 07:38:00
88128    30152    785    2017-05-06 04:03:00    2017-05-06 04:03:00
88129    30152    692    2017-05-06 22:06:00    2017-05-06 22:06:00
88130    30153    484    2017-05-06 01:20:00    2017-05-06 01:20:00
88131    30153    543    2017-05-06 05:42:00    2017-05-06 05:42:00
88132    30153    937    2017-05-06 22:53:00    2017-05-06 22:53:00
88133    30153    480    2017-05-06 08:38:00    2017-05-06 08:38:00
88134    30153    912    2017-05-06 13:16:00    2017-05-06 13:16:00
88135    30154    658    2017-05-06 08:34:00    2017-05-06 08:34:00
88136    30154    912    2017-05-06 09:00:00    2017-05-06 09:00:00
88137    30154    855    2017-05-06 17:27:00    2017-05-06 17:27:00
88138    30154    512    2017-05-06 01:29:00    2017-05-06 01:29:00
88139    30154    777    2017-05-06 05:08:00    2017-05-06 05:08:00
88140    30155    786    2017-05-06 12:13:00    2017-05-06 12:13:00
88141    30155    953    2017-05-06 18:42:00    2017-05-06 18:42:00
88142    30155    681    2017-05-06 17:55:00    2017-05-06 17:55:00
88143    30155    657    2017-05-06 06:23:00    2017-05-06 06:23:00
88144    30155    614    2017-05-06 19:10:00    2017-05-06 19:10:00
88145    30156    883    2017-05-06 20:43:00    2017-05-06 20:43:00
88146    30156    597    2017-05-06 11:03:00    2017-05-06 11:03:00
88147    30156    939    2017-05-06 20:22:00    2017-05-06 20:22:00
88148    30156    646    2017-05-06 19:09:00    2017-05-06 19:09:00
88149    30156    708    2017-05-06 02:14:00    2017-05-06 02:14:00
88150    30157    559    2017-05-06 23:35:00    2017-05-06 23:35:00
88151    30157    537    2017-05-06 18:45:00    2017-05-06 18:45:00
88152    30157    468    2017-05-06 05:52:00    2017-05-06 05:52:00
88153    30157    805    2017-05-06 14:40:00    2017-05-06 14:40:00
88154    30157    930    2017-05-06 19:23:00    2017-05-06 19:23:00
88155    30158    723    2017-05-06 16:52:00    2017-05-06 16:52:00
88156    30158    761    2017-05-06 22:24:00    2017-05-06 22:24:00
88157    30158    578    2017-05-06 02:31:00    2017-05-06 02:31:00
88158    30158    851    2017-05-06 10:29:00    2017-05-06 10:29:00
88159    30158    527    2017-05-06 17:07:00    2017-05-06 17:07:00
88160    30159    659    2017-05-06 07:04:00    2017-05-06 07:04:00
88161    30159    706    2017-05-06 17:02:00    2017-05-06 17:02:00
88162    30159    894    2017-05-06 02:49:00    2017-05-06 02:49:00
88163    30159    706    2017-05-06 07:30:00    2017-05-06 07:30:00
88164    30159    498    2017-05-06 13:49:00    2017-05-06 13:49:00
88165    30160    603    2017-05-06 13:05:00    2017-05-06 13:05:00
88166    30160    826    2017-05-06 09:23:00    2017-05-06 09:23:00
88167    30160    878    2017-05-06 01:48:00    2017-05-06 01:48:00
88168    30160    617    2017-05-06 06:47:00    2017-05-06 06:47:00
88169    30160    528    2017-05-06 14:34:00    2017-05-06 14:34:00
88170    30161    690    2017-05-06 23:21:00    2017-05-06 23:21:00
88171    30161    842    2017-05-06 20:00:00    2017-05-06 20:00:00
88172    30161    696    2017-05-06 08:34:00    2017-05-06 08:34:00
88173    30161    806    2017-05-06 21:39:00    2017-05-06 21:39:00
88174    30161    840    2017-05-06 22:09:00    2017-05-06 22:09:00
88175    30162    722    2017-05-06 07:06:00    2017-05-06 07:06:00
88176    30162    942    2017-05-06 15:00:00    2017-05-06 15:00:00
88177    30162    805    2017-05-06 23:00:00    2017-05-06 23:00:00
88178    30162    687    2017-05-06 13:03:00    2017-05-06 13:03:00
88179    30162    489    2017-05-06 13:34:00    2017-05-06 13:34:00
88180    30163    634    2017-05-06 20:40:00    2017-05-06 20:40:00
88181    30163    506    2017-05-06 10:46:00    2017-05-06 10:46:00
88182    30163    853    2017-05-06 13:44:00    2017-05-06 13:44:00
88183    30163    476    2017-05-06 14:25:00    2017-05-06 14:25:00
88184    30163    470    2017-05-06 08:05:00    2017-05-06 08:05:00
88185    30164    476    2017-05-06 17:42:00    2017-05-06 17:42:00
88186    30164    660    2017-05-06 01:24:00    2017-05-06 01:24:00
88187    30164    521    2017-05-06 10:40:00    2017-05-06 10:40:00
88188    30164    815    2017-05-06 23:22:00    2017-05-06 23:22:00
88189    30164    629    2017-05-06 14:03:00    2017-05-06 14:03:00
88190    30165    737    2017-05-06 02:28:00    2017-05-06 02:28:00
88191    30165    956    2017-05-06 03:05:00    2017-05-06 03:05:00
88192    30165    673    2017-05-06 13:13:00    2017-05-06 13:13:00
88193    30165    938    2017-05-06 16:59:00    2017-05-06 16:59:00
88194    30165    707    2017-05-06 02:15:00    2017-05-06 02:15:00
88195    30166    717    2017-05-06 14:05:00    2017-05-06 14:05:00
88196    30166    515    2017-05-06 13:05:00    2017-05-06 13:05:00
88197    30166    538    2017-05-06 21:05:00    2017-05-06 21:05:00
88198    30166    591    2017-05-06 07:30:00    2017-05-06 07:30:00
88199    30166    900    2017-05-06 20:03:00    2017-05-06 20:03:00
88200    30167    656    2017-05-06 06:41:00    2017-05-06 06:41:00
88201    30167    740    2017-05-06 23:04:00    2017-05-06 23:04:00
88202    30167    837    2017-05-06 21:06:00    2017-05-06 21:06:00
88203    30167    763    2017-05-06 22:43:00    2017-05-06 22:43:00
88204    30167    929    2017-05-06 17:31:00    2017-05-06 17:31:00
88205    30168    840    2017-05-06 16:12:00    2017-05-06 16:12:00
88206    30168    921    2017-05-06 18:07:00    2017-05-06 18:07:00
88207    30168    724    2017-05-06 10:52:00    2017-05-06 10:52:00
88208    30168    558    2017-05-06 16:42:00    2017-05-06 16:42:00
88209    30168    711    2017-05-06 02:27:00    2017-05-06 02:27:00
88210    30169    865    2017-05-06 17:12:00    2017-05-06 17:12:00
88211    30169    839    2017-05-06 11:57:00    2017-05-06 11:57:00
88212    30169    693    2017-05-06 13:01:00    2017-05-06 13:01:00
88213    30169    930    2017-05-06 02:59:00    2017-05-06 02:59:00
88214    30169    877    2017-05-06 18:17:00    2017-05-06 18:17:00
88215    30170    694    2017-05-06 15:17:00    2017-05-06 15:17:00
88216    30170    672    2017-05-06 04:39:00    2017-05-06 04:39:00
88217    30170    571    2017-05-06 11:06:00    2017-05-06 11:06:00
88218    30170    551    2017-05-06 02:10:00    2017-05-06 02:10:00
88219    30170    684    2017-05-06 11:33:00    2017-05-06 11:33:00
88220    30171    619    2017-05-07 12:25:00    2017-05-07 12:25:00
88221    30171    768    2017-05-07 05:32:00    2017-05-07 05:32:00
88222    30171    554    2017-05-07 04:57:00    2017-05-07 04:57:00
88223    30171    680    2017-05-07 05:06:00    2017-05-07 05:06:00
88224    30171    591    2017-05-07 10:39:00    2017-05-07 10:39:00
88225    30172    586    2017-05-07 13:59:00    2017-05-07 13:59:00
88226    30172    714    2017-05-07 04:12:00    2017-05-07 04:12:00
88227    30172    892    2017-05-07 06:15:00    2017-05-07 06:15:00
88228    30172    776    2017-05-07 11:00:00    2017-05-07 11:00:00
88229    30172    746    2017-05-07 02:46:00    2017-05-07 02:46:00
88230    30173    866    2017-05-07 06:05:00    2017-05-07 06:05:00
88231    30173    655    2017-05-07 04:58:00    2017-05-07 04:58:00
88232    30173    588    2017-05-07 23:17:00    2017-05-07 23:17:00
88233    30173    521    2017-05-07 05:59:00    2017-05-07 05:59:00
88234    30173    504    2017-05-07 14:38:00    2017-05-07 14:38:00
88235    30174    946    2017-05-07 05:51:00    2017-05-07 05:51:00
88237    30174    954    2017-05-07 23:54:00    2017-05-07 23:54:00
88238    30174    690    2017-05-07 18:42:00    2017-05-07 18:42:00
88239    30174    889    2017-05-07 15:16:00    2017-05-07 15:16:00
88240    30175    610    2017-05-07 18:15:00    2017-05-07 18:15:00
88241    30175    535    2017-05-07 07:07:00    2017-05-07 07:07:00
88242    30175    468    2017-05-07 17:58:00    2017-05-07 17:58:00
88243    30175    685    2017-05-07 20:05:00    2017-05-07 20:05:00
88244    30175    518    2017-05-07 02:31:00    2017-05-07 02:31:00
88245    30176    879    2017-05-07 13:09:00    2017-05-07 13:09:00
88246    30176    753    2017-05-07 15:01:00    2017-05-07 15:01:00
88247    30176    701    2017-05-07 02:20:00    2017-05-07 02:20:00
88248    30176    554    2017-05-07 17:02:00    2017-05-07 17:02:00
88249    30176    805    2017-05-07 06:11:00    2017-05-07 06:11:00
88250    30177    825    2017-05-07 14:51:00    2017-05-07 14:51:00
88251    30177    544    2017-05-07 09:40:00    2017-05-07 09:40:00
88252    30177    464    2017-05-07 04:04:00    2017-05-07 04:04:00
88253    30177    931    2017-05-07 20:21:00    2017-05-07 20:21:00
88254    30177    777    2017-05-07 05:08:00    2017-05-07 05:08:00
88255    30178    544    2017-05-07 15:09:00    2017-05-07 15:09:00
88256    30178    862    2017-05-07 06:12:00    2017-05-07 06:12:00
88257    30178    503    2017-05-07 23:17:00    2017-05-07 23:17:00
88258    30178    846    2017-05-07 21:13:00    2017-05-07 21:13:00
88259    30178    758    2017-05-07 05:04:00    2017-05-07 05:04:00
88260    30179    514    2017-05-07 17:31:00    2017-05-07 17:31:00
88261    30179    783    2017-05-07 03:38:00    2017-05-07 03:38:00
88262    30179    641    2017-05-07 20:53:00    2017-05-07 20:53:00
88263    30179    468    2017-05-07 01:51:00    2017-05-07 01:51:00
88264    30179    895    2017-05-07 06:03:00    2017-05-07 06:03:00
88265    30180    672    2017-05-07 20:19:00    2017-05-07 20:19:00
88266    30180    897    2017-05-07 15:50:00    2017-05-07 15:50:00
88267    30180    960    2017-05-07 05:47:00    2017-05-07 05:47:00
88268    30180    474    2017-05-07 03:44:00    2017-05-07 03:44:00
88269    30180    505    2017-05-07 04:01:00    2017-05-07 04:01:00
88270    30181    865    2017-05-07 22:53:00    2017-05-07 22:53:00
88271    30181    531    2017-05-07 06:50:00    2017-05-07 06:50:00
88272    30181    759    2017-05-07 15:54:00    2017-05-07 15:54:00
88273    30181    713    2017-05-07 18:57:00    2017-05-07 18:57:00
88274    30181    950    2017-05-07 22:19:00    2017-05-07 22:19:00
88275    30182    489    2017-05-07 12:51:00    2017-05-07 12:51:00
88276    30182    530    2017-05-07 04:27:00    2017-05-07 04:27:00
88277    30182    711    2017-05-07 10:36:00    2017-05-07 10:36:00
88278    30182    546    2017-05-07 18:51:00    2017-05-07 18:51:00
88279    30182    916    2017-05-07 06:10:00    2017-05-07 06:10:00
88280    30183    932    2017-05-07 14:34:00    2017-05-07 14:34:00
88281    30183    799    2017-05-07 23:42:00    2017-05-07 23:42:00
88282    30183    567    2017-05-07 18:39:00    2017-05-07 18:39:00
88283    30183    707    2017-05-07 17:21:00    2017-05-07 17:21:00
88284    30183    583    2017-05-07 11:38:00    2017-05-07 11:38:00
88285    30184    507    2017-05-07 13:50:00    2017-05-07 13:50:00
88286    30184    949    2017-05-07 02:07:00    2017-05-07 02:07:00
88287    30184    570    2017-05-07 19:02:00    2017-05-07 19:02:00
88288    30184    855    2017-05-07 22:15:00    2017-05-07 22:15:00
88289    30184    591    2017-05-07 10:11:00    2017-05-07 10:11:00
88290    30185    762    2017-05-07 02:00:00    2017-05-07 02:00:00
88291    30185    913    2017-05-07 18:15:00    2017-05-07 18:15:00
88292    30185    809    2017-05-07 22:54:00    2017-05-07 22:54:00
88293    30185    713    2017-05-07 01:28:00    2017-05-07 01:28:00
88294    30185    693    2017-05-07 22:47:00    2017-05-07 22:47:00
88295    30186    806    2017-05-07 22:00:00    2017-05-07 22:00:00
88296    30186    719    2017-05-07 19:15:00    2017-05-07 19:15:00
88297    30186    848    2017-05-07 21:57:00    2017-05-07 21:57:00
88298    30186    651    2017-05-07 12:49:00    2017-05-07 12:49:00
88299    30186    818    2017-05-07 12:38:00    2017-05-07 12:38:00
88300    30187    809    2017-05-07 15:14:00    2017-05-07 15:14:00
88301    30187    926    2017-05-07 09:27:00    2017-05-07 09:27:00
88302    30187    575    2017-05-07 16:42:00    2017-05-07 16:42:00
88303    30187    531    2017-05-07 08:23:00    2017-05-07 08:23:00
88304    30187    537    2017-05-07 23:35:00    2017-05-07 23:35:00
88305    30188    719    2017-05-08 03:05:00    2017-05-08 03:05:00
88306    30188    819    2017-05-08 07:03:00    2017-05-08 07:03:00
88307    30188    646    2017-05-08 09:12:00    2017-05-08 09:12:00
88308    30188    545    2017-05-08 07:39:00    2017-05-08 07:39:00
88309    30188    502    2017-05-08 22:56:00    2017-05-08 22:56:00
88310    30189    508    2017-05-08 12:00:00    2017-05-08 12:00:00
88311    30189    720    2017-05-08 20:16:00    2017-05-08 20:16:00
88312    30189    933    2017-05-08 06:39:00    2017-05-08 06:39:00
88313    30189    540    2017-05-08 08:02:00    2017-05-08 08:02:00
88314    30189    925    2017-05-08 14:33:00    2017-05-08 14:33:00
88315    30190    541    2017-05-08 02:45:00    2017-05-08 02:45:00
88316    30190    628    2017-05-08 05:16:00    2017-05-08 05:16:00
88317    30190    905    2017-05-08 17:25:00    2017-05-08 17:25:00
88318    30190    948    2017-05-08 04:30:00    2017-05-08 04:30:00
88319    30190    776    2017-05-08 04:13:00    2017-05-08 04:13:00
88320    30191    495    2017-05-08 06:04:00    2017-05-08 06:04:00
88321    30191    718    2017-05-08 21:33:00    2017-05-08 21:33:00
88322    30191    948    2017-05-08 15:35:00    2017-05-08 15:35:00
88323    30191    837    2017-05-08 06:10:00    2017-05-08 06:10:00
88324    30191    489    2017-05-08 23:16:00    2017-05-08 23:16:00
88325    30192    830    2017-05-08 07:56:00    2017-05-08 07:56:00
88326    30192    752    2017-05-08 08:39:00    2017-05-08 08:39:00
88327    30192    916    2017-05-08 17:02:00    2017-05-08 17:02:00
88328    30192    628    2017-05-08 15:42:00    2017-05-08 15:42:00
88329    30192    898    2017-05-08 16:46:00    2017-05-08 16:46:00
88330    30193    583    2017-05-08 07:22:00    2017-05-08 07:22:00
88331    30193    879    2017-05-08 11:22:00    2017-05-08 11:22:00
88332    30193    770    2017-05-08 05:38:00    2017-05-08 05:38:00
88333    30193    515    2017-05-08 13:48:00    2017-05-08 13:48:00
88334    30193    504    2017-05-08 21:10:00    2017-05-08 21:10:00
88335    30194    519    2017-05-08 03:14:00    2017-05-08 03:14:00
88336    30194    722    2017-05-08 11:48:00    2017-05-08 11:48:00
88337    30194    896    2017-05-08 23:41:00    2017-05-08 23:41:00
88338    30194    907    2017-05-08 09:56:00    2017-05-08 09:56:00
88339    30194    863    2017-05-08 17:16:00    2017-05-08 17:16:00
88340    30195    505    2017-05-08 03:08:00    2017-05-08 03:08:00
88341    30195    573    2017-05-08 19:41:00    2017-05-08 19:41:00
88342    30195    677    2017-05-08 14:50:00    2017-05-08 14:50:00
88343    30195    940    2017-05-08 09:10:00    2017-05-08 09:10:00
88344    30195    690    2017-05-08 08:32:00    2017-05-08 08:32:00
88345    30196    748    2017-05-08 06:38:00    2017-05-08 06:38:00
88346    30196    756    2017-05-08 22:52:00    2017-05-08 22:52:00
88347    30196    651    2017-05-08 18:37:00    2017-05-08 18:37:00
88348    30196    781    2017-05-08 11:07:00    2017-05-08 11:07:00
88349    30196    551    2017-05-08 22:06:00    2017-05-08 22:06:00
88350    30197    879    2017-05-08 01:49:00    2017-05-08 01:49:00
88351    30197    926    2017-05-08 13:16:00    2017-05-08 13:16:00
88352    30197    612    2017-05-08 16:08:00    2017-05-08 16:08:00
88353    30197    926    2017-05-08 19:03:00    2017-05-08 19:03:00
88354    30197    588    2017-05-08 16:10:00    2017-05-08 16:10:00
88355    30198    660    2017-05-08 05:47:00    2017-05-08 05:47:00
88356    30198    885    2017-05-08 19:12:00    2017-05-08 19:12:00
88357    30198    610    2017-05-08 08:55:00    2017-05-08 08:55:00
88358    30198    564    2017-05-08 02:47:00    2017-05-08 02:47:00
88359    30198    607    2017-05-08 07:43:00    2017-05-08 07:43:00
88360    30199    567    2017-05-08 15:15:00    2017-05-08 15:15:00
88361    30199    796    2017-05-08 21:42:00    2017-05-08 21:42:00
88362    30199    937    2017-05-08 22:48:00    2017-05-08 22:48:00
88363    30199    516    2017-05-08 08:24:00    2017-05-08 08:24:00
88364    30199    821    2017-05-08 15:29:00    2017-05-08 15:29:00
88365    30200    575    2017-05-08 10:15:00    2017-05-08 10:15:00
88366    30200    614    2017-05-08 07:57:00    2017-05-08 07:57:00
88367    30200    907    2017-05-08 06:29:00    2017-05-08 06:29:00
88368    30200    567    2017-05-08 09:28:00    2017-05-08 09:28:00
88369    30200    605    2017-05-08 07:46:00    2017-05-08 07:46:00
88370    30201    746    2017-05-08 15:04:00    2017-05-08 15:04:00
88371    30201    836    2017-05-08 09:51:00    2017-05-08 09:51:00
88372    30201    633    2017-05-08 04:16:00    2017-05-08 04:16:00
88373    30201    747    2017-05-08 01:51:00    2017-05-08 01:51:00
88374    30201    511    2017-05-08 01:01:00    2017-05-08 01:01:00
88375    30202    861    2017-05-08 02:56:00    2017-05-08 02:56:00
88376    30202    543    2017-05-08 12:35:00    2017-05-08 12:35:00
88377    30202    809    2017-05-08 02:58:00    2017-05-08 02:58:00
88378    30202    474    2017-05-08 18:41:00    2017-05-08 18:41:00
88379    30202    564    2017-05-08 13:20:00    2017-05-08 13:20:00
88380    30203    868    2017-05-08 16:51:00    2017-05-08 16:51:00
88381    30203    568    2017-05-08 19:28:00    2017-05-08 19:28:00
88382    30203    719    2017-05-08 13:09:00    2017-05-08 13:09:00
88383    30203    483    2017-05-08 01:21:00    2017-05-08 01:21:00
88384    30203    517    2017-05-08 14:15:00    2017-05-08 14:15:00
88385    30204    517    2017-05-08 05:10:00    2017-05-08 05:10:00
88386    30204    575    2017-05-08 06:59:00    2017-05-08 06:59:00
88387    30204    754    2017-05-08 17:02:00    2017-05-08 17:02:00
88388    30204    856    2017-05-08 04:58:00    2017-05-08 04:58:00
88389    30204    552    2017-05-08 22:00:00    2017-05-08 22:00:00
88390    30205    794    2017-05-08 03:51:00    2017-05-08 03:51:00
88391    30205    623    2017-05-08 02:17:00    2017-05-08 02:17:00
88392    30205    725    2017-05-08 12:46:00    2017-05-08 12:46:00
88393    30205    934    2017-05-08 10:21:00    2017-05-08 10:21:00
88394    30205    508    2017-05-08 01:13:00    2017-05-08 01:13:00
88395    30206    494    2017-05-08 01:39:00    2017-05-08 01:39:00
88396    30206    534    2017-05-08 23:13:00    2017-05-08 23:13:00
88397    30206    685    2017-05-08 04:56:00    2017-05-08 04:56:00
88398    30206    722    2017-05-08 04:44:00    2017-05-08 04:44:00
88399    30206    865    2017-05-08 15:27:00    2017-05-08 15:27:00
88400    30207    646    2017-05-08 17:03:00    2017-05-08 17:03:00
88401    30207    639    2017-05-08 02:24:00    2017-05-08 02:24:00
88402    30207    681    2017-05-08 18:21:00    2017-05-08 18:21:00
88403    30207    701    2017-05-08 10:38:00    2017-05-08 10:38:00
88404    30207    632    2017-05-08 19:15:00    2017-05-08 19:15:00
88405    30208    589    2017-05-08 08:45:00    2017-05-08 08:45:00
88406    30208    475    2017-05-08 18:58:00    2017-05-08 18:58:00
88407    30208    619    2017-05-08 17:01:00    2017-05-08 17:01:00
88408    30208    552    2017-05-08 19:41:00    2017-05-08 19:41:00
88409    30208    581    2017-05-08 02:03:00    2017-05-08 02:03:00
88410    30209    632    2017-05-08 12:04:00    2017-05-08 12:04:00
88411    30209    833    2017-05-08 02:41:00    2017-05-08 02:41:00
88412    30209    655    2017-05-08 07:52:00    2017-05-08 07:52:00
88413    30209    881    2017-05-08 02:15:00    2017-05-08 02:15:00
88414    30209    553    2017-05-08 16:44:00    2017-05-08 16:44:00
88415    30210    886    2017-05-08 13:56:00    2017-05-08 13:56:00
88416    30210    616    2017-05-08 05:00:00    2017-05-08 05:00:00
88417    30210    636    2017-05-08 19:51:00    2017-05-08 19:51:00
88418    30210    496    2017-05-08 22:14:00    2017-05-08 22:14:00
88419    30210    651    2017-05-08 23:29:00    2017-05-08 23:29:00
88420    30211    652    2017-05-08 20:11:00    2017-05-08 20:11:00
88421    30211    787    2017-05-08 17:14:00    2017-05-08 17:14:00
88422    30211    830    2017-05-08 16:31:00    2017-05-08 16:31:00
88423    30211    820    2017-05-08 10:45:00    2017-05-08 10:45:00
88424    30211    617    2017-05-08 15:17:00    2017-05-08 15:17:00
88425    30212    709    2017-05-08 13:43:00    2017-05-08 13:43:00
88426    30212    816    2017-05-08 06:24:00    2017-05-08 06:24:00
88427    30212    958    2017-05-08 07:22:00    2017-05-08 07:22:00
88428    30212    860    2017-05-08 20:09:00    2017-05-08 20:09:00
88429    30212    600    2017-05-08 04:27:00    2017-05-08 04:27:00
88430    30213    665    2017-05-08 14:34:00    2017-05-08 14:34:00
88431    30213    663    2017-05-08 05:54:00    2017-05-08 05:54:00
88432    30213    574    2017-05-08 04:21:00    2017-05-08 04:21:00
88433    30213    741    2017-05-08 07:05:00    2017-05-08 07:05:00
88434    30213    465    2017-05-08 02:03:00    2017-05-08 02:03:00
88435    30214    703    2017-05-08 14:37:00    2017-05-08 14:37:00
88436    30214    736    2017-05-08 07:49:00    2017-05-08 07:49:00
88437    30214    683    2017-05-08 05:36:00    2017-05-08 05:36:00
88438    30214    496    2017-05-08 02:50:00    2017-05-08 02:50:00
88439    30214    487    2017-05-08 11:06:00    2017-05-08 11:06:00
88440    30215    799    2017-05-08 06:47:00    2017-05-08 06:47:00
88441    30215    623    2017-05-08 12:24:00    2017-05-08 12:24:00
88442    30215    636    2017-05-08 17:15:00    2017-05-08 17:15:00
88443    30215    476    2017-05-08 02:38:00    2017-05-08 02:38:00
88444    30215    680    2017-05-08 21:20:00    2017-05-08 21:20:00
88445    30216    828    2017-05-08 03:25:00    2017-05-08 03:25:00
88446    30216    712    2017-05-08 06:19:00    2017-05-08 06:19:00
88447    30216    611    2017-05-08 20:50:00    2017-05-08 20:50:00
88448    30216    732    2017-05-08 02:21:00    2017-05-08 02:21:00
88449    30216    611    2017-05-08 20:02:00    2017-05-08 20:02:00
88450    30217    513    2017-05-08 20:55:00    2017-05-08 20:55:00
88451    30217    740    2017-05-08 15:49:00    2017-05-08 15:49:00
88452    30217    656    2017-05-08 05:20:00    2017-05-08 05:20:00
88453    30217    482    2017-05-08 13:00:00    2017-05-08 13:00:00
88454    30217    837    2017-05-08 10:05:00    2017-05-08 10:05:00
88455    30218    893    2017-05-08 15:54:00    2017-05-08 15:54:00
88456    30218    566    2017-05-08 22:06:00    2017-05-08 22:06:00
88457    30218    620    2017-05-08 17:46:00    2017-05-08 17:46:00
88458    30218    950    2017-05-08 09:49:00    2017-05-08 09:49:00
88459    30218    472    2017-05-08 02:24:00    2017-05-08 02:24:00
88460    30219    778    2017-05-08 23:36:00    2017-05-08 23:36:00
88461    30219    558    2017-05-08 08:04:00    2017-05-08 08:04:00
88462    30219    857    2017-05-08 08:13:00    2017-05-08 08:13:00
88463    30219    583    2017-05-08 09:00:00    2017-05-08 09:00:00
88464    30219    696    2017-05-08 16:37:00    2017-05-08 16:37:00
88465    30220    483    2017-05-08 05:11:00    2017-05-08 05:11:00
88466    30220    491    2017-05-08 18:22:00    2017-05-08 18:22:00
88467    30220    487    2017-05-08 20:09:00    2017-05-08 20:09:00
88468    30220    919    2017-05-08 19:01:00    2017-05-08 19:01:00
88469    30220    934    2017-05-08 03:54:00    2017-05-08 03:54:00
88470    30221    852    2017-05-08 04:47:00    2017-05-08 04:47:00
88471    30221    502    2017-05-08 14:12:00    2017-05-08 14:12:00
88472    30221    513    2017-05-08 07:13:00    2017-05-08 07:13:00
88473    30221    503    2017-05-08 06:54:00    2017-05-08 06:54:00
88474    30221    849    2017-05-08 12:34:00    2017-05-08 12:34:00
88475    30222    849    2017-05-08 14:42:00    2017-05-08 14:42:00
88476    30222    560    2017-05-08 21:24:00    2017-05-08 21:24:00
88477    30222    715    2017-05-08 05:19:00    2017-05-08 05:19:00
88478    30222    916    2017-05-08 20:16:00    2017-05-08 20:16:00
88479    30222    696    2017-05-08 19:32:00    2017-05-08 19:32:00
88480    30223    951    2017-05-08 04:49:00    2017-05-08 04:49:00
88481    30223    531    2017-05-08 02:56:00    2017-05-08 02:56:00
88482    30223    668    2017-05-08 18:02:00    2017-05-08 18:02:00
88483    30223    956    2017-05-08 19:11:00    2017-05-08 19:11:00
88484    30223    730    2017-05-08 16:54:00    2017-05-08 16:54:00
88485    30224    614    2017-05-08 05:05:00    2017-05-08 05:05:00
88486    30224    855    2017-05-08 07:31:00    2017-05-08 07:31:00
88487    30224    958    2017-05-08 16:03:00    2017-05-08 16:03:00
88488    30224    819    2017-05-08 05:37:00    2017-05-08 05:37:00
88489    30224    653    2017-05-08 19:11:00    2017-05-08 19:11:00
88490    30225    692    2017-05-08 22:30:00    2017-05-08 22:30:00
88491    30225    862    2017-05-08 16:51:00    2017-05-08 16:51:00
88492    30225    479    2017-05-08 21:11:00    2017-05-08 21:11:00
88493    30225    638    2017-05-08 10:14:00    2017-05-08 10:14:00
88494    30225    468    2017-05-08 08:18:00    2017-05-08 08:18:00
88495    30226    930    2017-05-08 02:35:00    2017-05-08 02:35:00
88496    30226    811    2017-05-08 03:51:00    2017-05-08 03:51:00
88497    30226    858    2017-05-08 19:42:00    2017-05-08 19:42:00
88498    30226    798    2017-05-08 13:59:00    2017-05-08 13:59:00
88499    30226    936    2017-05-08 09:05:00    2017-05-08 09:05:00
88500    30227    636    2017-05-08 08:50:00    2017-05-08 08:50:00
88501    30227    510    2017-05-08 16:07:00    2017-05-08 16:07:00
88502    30227    508    2017-05-08 01:49:00    2017-05-08 01:49:00
88503    30227    726    2017-05-08 14:42:00    2017-05-08 14:42:00
88504    30227    929    2017-05-08 15:28:00    2017-05-08 15:28:00
88505    30228    935    2017-05-08 06:17:00    2017-05-08 06:17:00
88506    30228    714    2017-05-08 18:15:00    2017-05-08 18:15:00
88507    30228    781    2017-05-08 10:57:00    2017-05-08 10:57:00
88508    30228    873    2017-05-08 12:39:00    2017-05-08 12:39:00
88509    30228    885    2017-05-08 18:37:00    2017-05-08 18:37:00
88510    30229    782    2017-05-08 16:54:00    2017-05-08 16:54:00
88511    30229    487    2017-05-08 16:32:00    2017-05-08 16:32:00
88512    30229    520    2017-05-08 08:50:00    2017-05-08 08:50:00
88513    30229    655    2017-05-08 06:33:00    2017-05-08 06:33:00
88514    30229    523    2017-05-08 16:32:00    2017-05-08 16:32:00
88515    30230    477    2017-05-08 01:16:00    2017-05-08 01:16:00
88516    30230    656    2017-05-08 11:47:00    2017-05-08 11:47:00
88517    30230    659    2017-05-08 04:11:00    2017-05-08 04:11:00
88518    30230    889    2017-05-08 15:49:00    2017-05-08 15:49:00
88519    30230    472    2017-05-08 06:06:00    2017-05-08 06:06:00
88520    30231    717    2017-05-09 21:44:00    2017-05-09 21:44:00
88521    30231    467    2017-05-09 07:10:00    2017-05-09 07:10:00
88522    30231    805    2017-05-09 13:04:00    2017-05-09 13:04:00
88523    30231    909    2017-05-09 14:33:00    2017-05-09 14:33:00
88524    30231    502    2017-05-09 10:52:00    2017-05-09 10:52:00
88525    30232    932    2017-05-09 10:51:00    2017-05-09 10:51:00
88526    30232    575    2017-05-09 21:38:00    2017-05-09 21:38:00
88527    30232    576    2017-05-09 09:54:00    2017-05-09 09:54:00
88528    30232    557    2017-05-09 08:14:00    2017-05-09 08:14:00
88529    30232    527    2017-05-09 18:12:00    2017-05-09 18:12:00
88530    30233    756    2017-05-09 04:22:00    2017-05-09 04:22:00
88531    30233    704    2017-05-09 02:37:00    2017-05-09 02:37:00
88532    30233    670    2017-05-09 04:08:00    2017-05-09 04:08:00
88533    30233    776    2017-05-09 22:38:00    2017-05-09 22:38:00
88534    30233    939    2017-05-09 16:40:00    2017-05-09 16:40:00
88535    30234    896    2017-05-09 19:55:00    2017-05-09 19:55:00
88536    30234    497    2017-05-09 08:42:00    2017-05-09 08:42:00
88537    30234    473    2017-05-09 23:15:00    2017-05-09 23:15:00
88538    30234    781    2017-05-09 08:00:00    2017-05-09 08:00:00
88539    30234    470    2017-05-09 07:25:00    2017-05-09 07:25:00
88540    30235    712    2017-05-09 08:10:00    2017-05-09 08:10:00
88541    30235    767    2017-05-09 13:29:00    2017-05-09 13:29:00
88542    30235    750    2017-05-09 07:25:00    2017-05-09 07:25:00
88543    30235    918    2017-05-09 15:43:00    2017-05-09 15:43:00
88544    30235    550    2017-05-09 10:58:00    2017-05-09 10:58:00
88545    30236    690    2017-05-09 07:04:00    2017-05-09 07:04:00
88546    30236    802    2017-05-09 23:06:00    2017-05-09 23:06:00
88547    30236    641    2017-05-09 13:32:00    2017-05-09 13:32:00
88548    30236    705    2017-05-09 04:08:00    2017-05-09 04:08:00
88549    30236    645    2017-05-09 12:37:00    2017-05-09 12:37:00
88550    30237    783    2017-05-09 11:23:00    2017-05-09 11:23:00
88551    30237    808    2017-05-09 08:02:00    2017-05-09 08:02:00
88552    30237    711    2017-05-09 09:12:00    2017-05-09 09:12:00
88553    30237    686    2017-05-09 11:35:00    2017-05-09 11:35:00
88554    30237    578    2017-05-09 02:40:00    2017-05-09 02:40:00
88555    30238    710    2017-05-09 02:41:00    2017-05-09 02:41:00
88556    30238    568    2017-05-09 21:49:00    2017-05-09 21:49:00
88557    30238    819    2017-05-09 23:35:00    2017-05-09 23:35:00
88558    30238    830    2017-05-09 21:02:00    2017-05-09 21:02:00
88559    30238    608    2017-05-09 09:02:00    2017-05-09 09:02:00
88560    30239    562    2017-05-09 11:54:00    2017-05-09 11:54:00
88561    30239    597    2017-05-09 10:07:00    2017-05-09 10:07:00
88562    30239    500    2017-05-09 13:00:00    2017-05-09 13:00:00
88563    30239    783    2017-05-09 08:10:00    2017-05-09 08:10:00
88564    30239    501    2017-05-09 20:27:00    2017-05-09 20:27:00
88565    30240    897    2017-05-09 03:44:00    2017-05-09 03:44:00
88566    30240    904    2017-05-09 06:14:00    2017-05-09 06:14:00
88567    30240    574    2017-05-09 03:41:00    2017-05-09 03:41:00
88568    30240    757    2017-05-09 13:40:00    2017-05-09 13:40:00
88569    30240    541    2017-05-09 23:38:00    2017-05-09 23:38:00
88570    30241    673    2017-05-09 10:54:00    2017-05-09 10:54:00
88571    30241    499    2017-05-09 08:50:00    2017-05-09 08:50:00
88572    30241    880    2017-05-09 23:30:00    2017-05-09 23:30:00
88573    30241    597    2017-05-09 15:40:00    2017-05-09 15:40:00
88574    30241    705    2017-05-09 19:12:00    2017-05-09 19:12:00
88575    30242    888    2017-05-09 14:46:00    2017-05-09 14:46:00
88576    30242    932    2017-05-09 22:08:00    2017-05-09 22:08:00
88577    30242    868    2017-05-09 18:50:00    2017-05-09 18:50:00
88578    30242    631    2017-05-09 19:42:00    2017-05-09 19:42:00
88579    30242    753    2017-05-09 03:03:00    2017-05-09 03:03:00
88580    30243    704    2017-05-09 22:09:00    2017-05-09 22:09:00
88581    30243    711    2017-05-09 16:20:00    2017-05-09 16:20:00
88582    30243    876    2017-05-09 20:31:00    2017-05-09 20:31:00
88583    30243    695    2017-05-09 23:20:00    2017-05-09 23:20:00
88584    30243    758    2017-05-09 22:05:00    2017-05-09 22:05:00
88585    30244    563    2017-05-09 16:32:00    2017-05-09 16:32:00
88586    30244    914    2017-05-09 17:07:00    2017-05-09 17:07:00
88587    30244    632    2017-05-09 06:35:00    2017-05-09 06:35:00
88588    30244    741    2017-05-09 02:27:00    2017-05-09 02:27:00
88589    30244    867    2017-05-09 20:52:00    2017-05-09 20:52:00
88590    30245    813    2017-05-09 19:34:00    2017-05-09 19:34:00
88591    30245    851    2017-05-09 08:22:00    2017-05-09 08:22:00
88592    30245    689    2017-05-09 21:24:00    2017-05-09 21:24:00
88593    30245    652    2017-05-09 23:00:00    2017-05-09 23:00:00
88594    30245    754    2017-05-09 18:35:00    2017-05-09 18:35:00
88595    30246    535    2017-05-09 20:13:00    2017-05-09 20:13:00
88596    30246    480    2017-05-09 21:20:00    2017-05-09 21:20:00
88597    30246    901    2017-05-09 23:34:00    2017-05-09 23:34:00
88598    30246    570    2017-05-09 04:31:00    2017-05-09 04:31:00
88599    30246    546    2017-05-09 20:15:00    2017-05-09 20:15:00
88600    30247    933    2017-05-09 03:12:00    2017-05-09 03:12:00
88601    30247    639    2017-05-09 05:52:00    2017-05-09 05:52:00
88602    30247    679    2017-05-09 14:40:00    2017-05-09 14:40:00
88603    30247    907    2017-05-09 20:40:00    2017-05-09 20:40:00
88604    30247    944    2017-05-09 09:44:00    2017-05-09 09:44:00
88605    30248    922    2017-05-09 13:32:00    2017-05-09 13:32:00
88606    30248    742    2017-05-09 01:29:00    2017-05-09 01:29:00
88607    30248    918    2017-05-09 13:34:00    2017-05-09 13:34:00
88608    30248    808    2017-05-09 13:41:00    2017-05-09 13:41:00
88609    30248    771    2017-05-09 20:41:00    2017-05-09 20:41:00
88610    30249    817    2017-05-09 05:38:00    2017-05-09 05:38:00
88611    30249    944    2017-05-09 10:29:00    2017-05-09 10:29:00
88612    30249    940    2017-05-09 22:22:00    2017-05-09 22:22:00
88613    30249    649    2017-05-09 08:31:00    2017-05-09 08:31:00
88614    30249    651    2017-05-09 05:30:00    2017-05-09 05:30:00
88615    30250    899    2017-05-09 10:14:00    2017-05-09 10:14:00
88616    30250    647    2017-05-09 05:51:00    2017-05-09 05:51:00
88617    30250    642    2017-05-09 02:02:00    2017-05-09 02:02:00
88618    30250    771    2017-05-09 07:36:00    2017-05-09 07:36:00
88619    30250    671    2017-05-09 12:04:00    2017-05-09 12:04:00
88620    30251    470    2017-05-09 14:12:00    2017-05-09 14:12:00
88621    30251    622    2017-05-09 07:53:00    2017-05-09 07:53:00
88622    30251    640    2017-05-09 15:01:00    2017-05-09 15:01:00
88623    30251    517    2017-05-09 22:58:00    2017-05-09 22:58:00
88624    30251    900    2017-05-09 16:27:00    2017-05-09 16:27:00
88625    30252    917    2017-05-09 18:00:00    2017-05-09 18:00:00
88626    30252    738    2017-05-09 22:35:00    2017-05-09 22:35:00
88627    30252    806    2017-05-09 10:03:00    2017-05-09 10:03:00
88628    30252    656    2017-05-09 19:02:00    2017-05-09 19:02:00
88629    30252    685    2017-05-09 19:44:00    2017-05-09 19:44:00
88630    30253    877    2017-05-09 16:55:00    2017-05-09 16:55:00
88631    30253    678    2017-05-09 12:37:00    2017-05-09 12:37:00
88632    30253    875    2017-05-09 17:20:00    2017-05-09 17:20:00
88633    30253    691    2017-05-09 08:07:00    2017-05-09 08:07:00
88634    30253    887    2017-05-09 22:51:00    2017-05-09 22:51:00
88635    30254    725    2017-05-09 03:42:00    2017-05-09 03:42:00
88636    30254    535    2017-05-09 19:49:00    2017-05-09 19:49:00
88637    30254    620    2017-05-09 05:27:00    2017-05-09 05:27:00
88638    30254    950    2017-05-09 13:53:00    2017-05-09 13:53:00
88639    30254    708    2017-05-09 11:48:00    2017-05-09 11:48:00
88640    30255    590    2017-05-09 20:44:00    2017-05-09 20:44:00
88641    30255    790    2017-05-09 23:42:00    2017-05-09 23:42:00
88642    30255    594    2017-05-09 05:15:00    2017-05-09 05:15:00
88643    30255    668    2017-05-09 13:57:00    2017-05-09 13:57:00
88644    30255    791    2017-05-09 18:52:00    2017-05-09 18:52:00
88645    30256    760    2017-05-09 09:33:00    2017-05-09 09:33:00
88646    30256    641    2017-05-09 20:11:00    2017-05-09 20:11:00
88647    30256    483    2017-05-09 18:20:00    2017-05-09 18:20:00
88648    30256    761    2017-05-09 06:07:00    2017-05-09 06:07:00
88649    30256    909    2017-05-09 18:30:00    2017-05-09 18:30:00
88650    30257    505    2017-05-09 05:30:00    2017-05-09 05:30:00
88651    30257    706    2017-05-09 21:50:00    2017-05-09 21:50:00
88652    30257    566    2017-05-09 04:28:00    2017-05-09 04:28:00
88653    30257    915    2017-05-09 18:00:00    2017-05-09 18:00:00
88654    30257    919    2017-05-09 08:51:00    2017-05-09 08:51:00
88655    30258    715    2017-05-09 22:00:00    2017-05-09 22:00:00
88656    30258    805    2017-05-09 21:47:00    2017-05-09 21:47:00
88657    30258    486    2017-05-09 09:26:00    2017-05-09 09:26:00
88658    30258    803    2017-05-09 10:46:00    2017-05-09 10:46:00
88659    30258    674    2017-05-09 15:55:00    2017-05-09 15:55:00
88660    30259    655    2017-05-09 15:56:00    2017-05-09 15:56:00
88661    30259    698    2017-05-09 11:46:00    2017-05-09 11:46:00
88662    30259    477    2017-05-09 04:17:00    2017-05-09 04:17:00
88663    30259    776    2017-05-09 21:19:00    2017-05-09 21:19:00
88664    30259    841    2017-05-09 10:52:00    2017-05-09 10:52:00
88665    30260    872    2017-05-09 02:15:00    2017-05-09 02:15:00
88666    30260    647    2017-05-09 05:50:00    2017-05-09 05:50:00
88667    30260    827    2017-05-09 07:02:00    2017-05-09 07:02:00
88668    30260    627    2017-05-09 13:13:00    2017-05-09 13:13:00
88669    30260    868    2017-05-09 06:57:00    2017-05-09 06:57:00
88670    30261    779    2017-05-09 17:03:00    2017-05-09 17:03:00
88671    30261    543    2017-05-09 05:27:00    2017-05-09 05:27:00
88672    30261    674    2017-05-09 16:00:00    2017-05-09 16:00:00
88673    30261    930    2017-05-09 03:12:00    2017-05-09 03:12:00
88674    30261    676    2017-05-09 10:55:00    2017-05-09 10:55:00
88675    30262    947    2017-05-09 04:11:00    2017-05-09 04:11:00
88676    30262    567    2017-05-09 12:19:00    2017-05-09 12:19:00
88677    30262    840    2017-05-09 21:25:00    2017-05-09 21:25:00
88678    30262    863    2017-05-09 08:17:00    2017-05-09 08:17:00
88679    30262    557    2017-05-09 10:20:00    2017-05-09 10:20:00
88680    30263    711    2017-05-09 03:53:00    2017-05-09 03:53:00
88681    30263    699    2017-05-09 11:16:00    2017-05-09 11:16:00
88682    30263    785    2017-05-09 05:31:00    2017-05-09 05:31:00
88683    30263    612    2017-05-09 11:21:00    2017-05-09 11:21:00
88684    30263    729    2017-05-09 14:08:00    2017-05-09 14:08:00
88685    30264    506    2017-05-09 07:57:00    2017-05-09 07:57:00
88686    30264    648    2017-05-09 18:23:00    2017-05-09 18:23:00
88687    30264    604    2017-05-09 08:36:00    2017-05-09 08:36:00
88688    30264    900    2017-05-09 05:44:00    2017-05-09 05:44:00
88689    30264    954    2017-05-09 01:31:00    2017-05-09 01:31:00
88690    30265    576    2017-05-09 21:42:00    2017-05-09 21:42:00
88691    30265    484    2017-05-09 22:32:00    2017-05-09 22:32:00
88692    30265    514    2017-05-09 16:28:00    2017-05-09 16:28:00
88693    30265    785    2017-05-09 02:27:00    2017-05-09 02:27:00
88694    30265    853    2017-05-09 01:27:00    2017-05-09 01:27:00
88695    30266    616    2017-05-09 11:18:00    2017-05-09 11:18:00
88696    30266    756    2017-05-09 01:10:00    2017-05-09 01:10:00
88697    30266    601    2017-05-09 21:00:00    2017-05-09 21:00:00
88698    30266    961    2017-05-09 17:10:00    2017-05-09 17:10:00
88699    30266    929    2017-05-09 10:27:00    2017-05-09 10:27:00
88700    30267    585    2017-05-09 23:02:00    2017-05-09 23:02:00
88701    30267    934    2017-05-09 22:28:00    2017-05-09 22:28:00
88702    30267    711    2017-05-09 04:26:00    2017-05-09 04:26:00
88703    30267    832    2017-05-09 14:47:00    2017-05-09 14:47:00
88704    30267    613    2017-05-09 03:09:00    2017-05-09 03:09:00
88705    30268    848    2017-05-09 16:30:00    2017-05-09 16:30:00
88706    30268    894    2017-05-09 02:52:00    2017-05-09 02:52:00
88707    30268    574    2017-05-09 23:03:00    2017-05-09 23:03:00
88708    30268    588    2017-05-09 19:05:00    2017-05-09 19:05:00
88709    30268    594    2017-05-09 02:10:00    2017-05-09 02:10:00
88710    30269    578    2017-05-09 08:20:00    2017-05-09 08:20:00
88711    30269    660    2017-05-09 13:32:00    2017-05-09 13:32:00
88712    30269    698    2017-05-09 18:50:00    2017-05-09 18:50:00
88713    30269    697    2017-05-09 11:02:00    2017-05-09 11:02:00
88714    30269    718    2017-05-09 15:41:00    2017-05-09 15:41:00
88715    30270    778    2017-05-10 07:04:00    2017-05-10 07:04:00
88716    30270    525    2017-05-10 16:37:00    2017-05-10 16:37:00
88717    30270    753    2017-05-10 19:34:00    2017-05-10 19:34:00
88718    30270    518    2017-05-10 15:49:00    2017-05-10 15:49:00
88719    30270    602    2017-05-10 02:23:00    2017-05-10 02:23:00
88720    30271    844    2017-05-10 11:49:00    2017-05-10 11:49:00
88721    30271    768    2017-05-10 13:39:00    2017-05-10 13:39:00
88722    30271    847    2017-05-10 11:45:00    2017-05-10 11:45:00
88723    30271    685    2017-05-10 08:59:00    2017-05-10 08:59:00
88724    30271    603    2017-05-10 20:53:00    2017-05-10 20:53:00
88725    30272    541    2017-05-10 20:23:00    2017-05-10 20:23:00
88726    30272    605    2017-05-10 20:08:00    2017-05-10 20:08:00
88727    30272    951    2017-05-10 23:37:00    2017-05-10 23:37:00
88728    30272    579    2017-05-10 05:41:00    2017-05-10 05:41:00
88729    30272    899    2017-05-10 16:30:00    2017-05-10 16:30:00
88730    30273    528    2017-05-10 09:09:00    2017-05-10 09:09:00
88731    30273    890    2017-05-10 23:51:00    2017-05-10 23:51:00
88732    30273    513    2017-05-10 15:27:00    2017-05-10 15:27:00
88733    30273    545    2017-05-10 11:42:00    2017-05-10 11:42:00
88734    30273    837    2017-05-10 14:14:00    2017-05-10 14:14:00
88735    30274    926    2017-05-10 05:11:00    2017-05-10 05:11:00
88736    30274    872    2017-05-10 05:03:00    2017-05-10 05:03:00
88737    30274    624    2017-05-10 21:49:00    2017-05-10 21:49:00
88738    30274    702    2017-05-10 15:36:00    2017-05-10 15:36:00
88739    30274    851    2017-05-10 16:55:00    2017-05-10 16:55:00
88740    30275    660    2017-05-10 16:02:00    2017-05-10 16:02:00
88741    30275    541    2017-05-10 08:26:00    2017-05-10 08:26:00
88742    30275    722    2017-05-10 02:24:00    2017-05-10 02:24:00
88743    30275    828    2017-05-10 17:32:00    2017-05-10 17:32:00
88744    30275    772    2017-05-10 23:03:00    2017-05-10 23:03:00
88745    30276    867    2017-05-10 17:18:00    2017-05-10 17:18:00
88746    30276    631    2017-05-10 03:19:00    2017-05-10 03:19:00
88747    30276    732    2017-05-10 13:28:00    2017-05-10 13:28:00
88748    30276    939    2017-05-10 04:40:00    2017-05-10 04:40:00
88749    30276    647    2017-05-10 06:44:00    2017-05-10 06:44:00
88750    30277    923    2017-05-10 10:02:00    2017-05-10 10:02:00
88751    30277    623    2017-05-10 18:26:00    2017-05-10 18:26:00
88752    30277    621    2017-05-10 18:45:00    2017-05-10 18:45:00
88753    30277    794    2017-05-10 15:17:00    2017-05-10 15:17:00
88754    30277    644    2017-05-10 01:52:00    2017-05-10 01:52:00
88755    30278    857    2017-05-10 15:22:00    2017-05-10 15:22:00
88756    30278    524    2017-05-10 03:36:00    2017-05-10 03:36:00
88757    30278    703    2017-05-10 10:31:00    2017-05-10 10:31:00
88758    30278    670    2017-05-10 02:24:00    2017-05-10 02:24:00
88759    30278    543    2017-05-10 16:51:00    2017-05-10 16:51:00
88760    30279    828    2017-05-10 02:11:00    2017-05-10 02:11:00
88761    30279    906    2017-05-10 21:51:00    2017-05-10 21:51:00
88762    30279    820    2017-05-10 12:06:00    2017-05-10 12:06:00
88763    30279    630    2017-05-10 12:43:00    2017-05-10 12:43:00
88764    30279    565    2017-05-10 08:58:00    2017-05-10 08:58:00
88765    30280    800    2017-05-10 06:27:00    2017-05-10 06:27:00
88766    30280    653    2017-05-10 06:55:00    2017-05-10 06:55:00
88767    30280    550    2017-05-10 03:24:00    2017-05-10 03:24:00
88768    30280    468    2017-05-10 02:03:00    2017-05-10 02:03:00
88769    30280    872    2017-05-10 17:04:00    2017-05-10 17:04:00
88770    30281    859    2017-05-10 19:45:00    2017-05-10 19:45:00
88771    30281    822    2017-05-10 11:02:00    2017-05-10 11:02:00
88772    30281    603    2017-05-10 07:53:00    2017-05-10 07:53:00
88773    30281    865    2017-05-10 13:46:00    2017-05-10 13:46:00
88774    30281    706    2017-05-10 18:00:00    2017-05-10 18:00:00
88775    30282    480    2017-05-10 22:58:00    2017-05-10 22:58:00
88776    30282    619    2017-05-10 19:43:00    2017-05-10 19:43:00
88777    30282    790    2017-05-10 13:55:00    2017-05-10 13:55:00
88778    30282    931    2017-05-10 06:53:00    2017-05-10 06:53:00
88779    30282    669    2017-05-10 10:41:00    2017-05-10 10:41:00
88780    30283    900    2017-05-10 08:19:00    2017-05-10 08:19:00
88781    30283    670    2017-05-10 22:14:00    2017-05-10 22:14:00
88782    30283    499    2017-05-10 09:46:00    2017-05-10 09:46:00
88783    30283    596    2017-05-10 08:26:00    2017-05-10 08:26:00
88784    30283    916    2017-05-10 02:52:00    2017-05-10 02:52:00
88785    30284    868    2017-05-10 05:10:00    2017-05-10 05:10:00
88786    30284    835    2017-05-10 10:25:00    2017-05-10 10:25:00
88787    30284    532    2017-05-10 16:20:00    2017-05-10 16:20:00
88788    30284    633    2017-05-10 02:01:00    2017-05-10 02:01:00
88789    30284    755    2017-05-10 05:56:00    2017-05-10 05:56:00
88790    30285    900    2017-05-10 01:48:00    2017-05-10 01:48:00
88791    30285    698    2017-05-10 22:02:00    2017-05-10 22:02:00
88792    30285    956    2017-05-10 03:00:00    2017-05-10 03:00:00
88793    30285    687    2017-05-10 11:31:00    2017-05-10 11:31:00
88794    30285    609    2017-05-10 17:28:00    2017-05-10 17:28:00
88795    30286    640    2017-05-10 10:11:00    2017-05-10 10:11:00
88796    30286    806    2017-05-10 07:38:00    2017-05-10 07:38:00
88797    30286    550    2017-05-10 20:02:00    2017-05-10 20:02:00
88798    30286    749    2017-05-10 21:05:00    2017-05-10 21:05:00
88799    30286    719    2017-05-10 22:21:00    2017-05-10 22:21:00
88800    30287    746    2017-05-10 11:00:00    2017-05-10 11:00:00
88801    30287    703    2017-05-10 09:52:00    2017-05-10 09:52:00
88802    30287    946    2017-05-10 18:35:00    2017-05-10 18:35:00
88803    30287    945    2017-05-10 09:37:00    2017-05-10 09:37:00
88804    30287    716    2017-05-10 21:42:00    2017-05-10 21:42:00
88805    30288    771    2017-05-10 15:00:00    2017-05-10 15:00:00
88806    30288    535    2017-05-10 07:00:00    2017-05-10 07:00:00
88807    30288    489    2017-05-10 22:58:00    2017-05-10 22:58:00
88808    30288    663    2017-05-10 20:22:00    2017-05-10 20:22:00
88809    30288    792    2017-05-10 19:47:00    2017-05-10 19:47:00
88810    30289    886    2017-05-10 01:03:00    2017-05-10 01:03:00
88811    30289    619    2017-05-10 18:32:00    2017-05-10 18:32:00
88812    30289    723    2017-05-10 03:20:00    2017-05-10 03:20:00
88813    30289    947    2017-05-10 14:03:00    2017-05-10 14:03:00
88814    30289    779    2017-05-10 13:32:00    2017-05-10 13:32:00
88815    30290    893    2017-05-10 02:02:00    2017-05-10 02:02:00
88816    30290    575    2017-05-10 22:12:00    2017-05-10 22:12:00
88817    30290    494    2017-05-10 14:40:00    2017-05-10 14:40:00
88818    30290    816    2017-05-10 17:53:00    2017-05-10 17:53:00
88819    30290    643    2017-05-10 04:33:00    2017-05-10 04:33:00
88820    30291    502    2017-05-10 17:23:00    2017-05-10 17:23:00
88821    30291    903    2017-05-10 04:34:00    2017-05-10 04:34:00
88822    30291    852    2017-05-10 23:24:00    2017-05-10 23:24:00
88823    30291    572    2017-05-10 05:49:00    2017-05-10 05:49:00
88824    30291    717    2017-05-10 18:39:00    2017-05-10 18:39:00
88825    30292    472    2017-05-10 04:28:00    2017-05-10 04:28:00
88826    30292    598    2017-05-10 07:03:00    2017-05-10 07:03:00
88827    30292    641    2017-05-10 05:48:00    2017-05-10 05:48:00
88828    30292    598    2017-05-10 10:35:00    2017-05-10 10:35:00
88829    30292    735    2017-05-10 18:22:00    2017-05-10 18:22:00
88830    30293    552    2017-05-10 07:43:00    2017-05-10 07:43:00
88831    30293    672    2017-05-10 08:16:00    2017-05-10 08:16:00
88832    30293    946    2017-05-10 19:15:00    2017-05-10 19:15:00
88833    30293    514    2017-05-10 03:16:00    2017-05-10 03:16:00
88834    30293    763    2017-05-10 17:49:00    2017-05-10 17:49:00
88835    30294    775    2017-05-10 07:56:00    2017-05-10 07:56:00
88836    30294    826    2017-05-10 06:25:00    2017-05-10 06:25:00
88837    30294    875    2017-05-10 15:45:00    2017-05-10 15:45:00
88838    30294    919    2017-05-10 01:08:00    2017-05-10 01:08:00
88839    30294    737    2017-05-10 09:28:00    2017-05-10 09:28:00
88840    30295    593    2017-05-10 13:56:00    2017-05-10 13:56:00
88841    30295    772    2017-05-10 18:04:00    2017-05-10 18:04:00
88842    30295    743    2017-05-10 23:05:00    2017-05-10 23:05:00
88843    30295    886    2017-05-10 10:41:00    2017-05-10 10:41:00
88844    30295    606    2017-05-10 11:55:00    2017-05-10 11:55:00
88845    30296    534    2017-05-10 20:37:00    2017-05-10 20:37:00
88846    30296    948    2017-05-10 20:15:00    2017-05-10 20:15:00
88847    30296    707    2017-05-10 17:47:00    2017-05-10 17:47:00
88848    30296    703    2017-05-10 18:56:00    2017-05-10 18:56:00
88849    30296    754    2017-05-10 20:37:00    2017-05-10 20:37:00
88850    30297    910    2017-05-10 08:33:00    2017-05-10 08:33:00
88851    30297    916    2017-05-10 04:49:00    2017-05-10 04:49:00
88852    30297    591    2017-05-10 04:23:00    2017-05-10 04:23:00
88853    30297    471    2017-05-10 10:32:00    2017-05-10 10:32:00
88854    30297    565    2017-05-10 16:47:00    2017-05-10 16:47:00
88855    30298    805    2017-05-10 01:08:00    2017-05-10 01:08:00
88856    30298    663    2017-05-10 02:19:00    2017-05-10 02:19:00
88857    30298    693    2017-05-10 10:08:00    2017-05-10 10:08:00
88858    30298    475    2017-05-10 07:08:00    2017-05-10 07:08:00
88859    30298    759    2017-05-10 17:44:00    2017-05-10 17:44:00
88860    30299    869    2017-05-10 16:54:00    2017-05-10 16:54:00
88861    30299    791    2017-05-10 22:49:00    2017-05-10 22:49:00
88862    30299    786    2017-05-10 04:50:00    2017-05-10 04:50:00
88863    30299    861    2017-05-10 22:42:00    2017-05-10 22:42:00
88864    30299    930    2017-05-10 22:11:00    2017-05-10 22:11:00
88865    30300    489    2017-05-10 07:33:00    2017-05-10 07:33:00
88866    30300    906    2017-05-10 16:49:00    2017-05-10 16:49:00
88867    30300    488    2017-05-10 08:36:00    2017-05-10 08:36:00
88868    30300    682    2017-05-10 15:52:00    2017-05-10 15:52:00
88869    30300    495    2017-05-10 03:42:00    2017-05-10 03:42:00
88870    30301    602    2017-05-10 03:26:00    2017-05-10 03:26:00
88871    30301    554    2017-05-10 13:59:00    2017-05-10 13:59:00
88872    30301    917    2017-05-10 18:50:00    2017-05-10 18:50:00
88873    30301    542    2017-05-10 16:58:00    2017-05-10 16:58:00
88874    30301    535    2017-05-10 01:36:00    2017-05-10 01:36:00
88875    30302    801    2017-05-10 11:25:00    2017-05-10 11:25:00
88876    30302    900    2017-05-10 08:29:00    2017-05-10 08:29:00
88877    30302    577    2017-05-10 09:45:00    2017-05-10 09:45:00
88878    30302    825    2017-05-10 11:39:00    2017-05-10 11:39:00
88879    30302    896    2017-05-10 10:54:00    2017-05-10 10:54:00
88880    30303    687    2017-05-10 02:55:00    2017-05-10 02:55:00
88881    30303    500    2017-05-10 06:45:00    2017-05-10 06:45:00
88882    30303    480    2017-05-10 17:33:00    2017-05-10 17:33:00
88883    30303    490    2017-05-10 17:18:00    2017-05-10 17:18:00
88884    30303    765    2017-05-10 23:15:00    2017-05-10 23:15:00
88885    30304    713    2017-05-10 12:34:00    2017-05-10 12:34:00
88886    30304    709    2017-05-10 06:52:00    2017-05-10 06:52:00
88887    30304    672    2017-05-10 06:40:00    2017-05-10 06:40:00
88888    30304    471    2017-05-10 11:28:00    2017-05-10 11:28:00
88889    30304    718    2017-05-10 22:54:00    2017-05-10 22:54:00
88890    30305    944    2017-05-10 09:18:00    2017-05-10 09:18:00
88891    30305    693    2017-05-10 13:18:00    2017-05-10 13:18:00
88892    30305    808    2017-05-10 06:41:00    2017-05-10 06:41:00
88893    30305    580    2017-05-10 01:27:00    2017-05-10 01:27:00
88894    30305    855    2017-05-10 12:22:00    2017-05-10 12:22:00
88895    30306    636    2017-05-10 14:17:00    2017-05-10 14:17:00
88896    30306    592    2017-05-10 12:17:00    2017-05-10 12:17:00
88897    30306    794    2017-05-10 13:00:00    2017-05-10 13:00:00
88898    30306    567    2017-05-10 16:41:00    2017-05-10 16:41:00
88899    30306    623    2017-05-10 12:00:00    2017-05-10 12:00:00
88900    30307    761    2017-05-10 09:51:00    2017-05-10 09:51:00
88901    30307    812    2017-05-10 13:53:00    2017-05-10 13:53:00
88902    30307    472    2017-05-10 22:21:00    2017-05-10 22:21:00
88903    30307    817    2017-05-10 05:49:00    2017-05-10 05:49:00
88904    30307    512    2017-05-10 03:01:00    2017-05-10 03:01:00
88905    30308    675    2017-05-10 09:21:00    2017-05-10 09:21:00
88906    30308    591    2017-05-10 17:45:00    2017-05-10 17:45:00
88907    30308    725    2017-05-10 03:31:00    2017-05-10 03:31:00
88908    30308    731    2017-05-10 17:43:00    2017-05-10 17:43:00
88909    30308    830    2017-05-10 18:35:00    2017-05-10 18:35:00
88910    30309    694    2017-05-10 04:25:00    2017-05-10 04:25:00
88911    30309    661    2017-05-10 22:01:00    2017-05-10 22:01:00
88912    30309    646    2017-05-10 05:33:00    2017-05-10 05:33:00
88913    30309    874    2017-05-10 18:50:00    2017-05-10 18:50:00
88914    30309    883    2017-05-10 11:39:00    2017-05-10 11:39:00
88915    30310    657    2017-05-10 09:54:00    2017-05-10 09:54:00
88916    30310    520    2017-05-10 05:09:00    2017-05-10 05:09:00
88917    30310    628    2017-05-10 14:09:00    2017-05-10 14:09:00
88918    30310    852    2017-05-10 20:54:00    2017-05-10 20:54:00
88919    30310    664    2017-05-10 14:01:00    2017-05-10 14:01:00
88920    30311    961    2017-05-10 01:01:00    2017-05-10 01:01:00
88921    30311    767    2017-05-10 15:54:00    2017-05-10 15:54:00
88922    30311    949    2017-05-10 03:11:00    2017-05-10 03:11:00
88923    30311    945    2017-05-10 22:07:00    2017-05-10 22:07:00
88924    30311    645    2017-05-10 22:18:00    2017-05-10 22:18:00
88925    30312    591    2017-05-10 03:22:00    2017-05-10 03:22:00
88926    30312    668    2017-05-10 08:21:00    2017-05-10 08:21:00
88927    30312    719    2017-05-10 09:28:00    2017-05-10 09:28:00
88928    30312    609    2017-05-10 15:53:00    2017-05-10 15:53:00
88929    30312    829    2017-05-10 21:57:00    2017-05-10 21:57:00
88930    30313    739    2017-05-10 07:11:00    2017-05-10 07:11:00
88931    30313    664    2017-05-10 22:44:00    2017-05-10 22:44:00
88932    30313    569    2017-05-10 01:38:00    2017-05-10 01:38:00
88934    30313    738    2017-05-10 07:18:00    2017-05-10 07:18:00
88935    30314    954    2017-05-10 06:32:00    2017-05-10 06:32:00
88936    30314    493    2017-05-10 13:47:00    2017-05-10 13:47:00
88937    30314    469    2017-05-10 13:54:00    2017-05-10 13:54:00
88938    30314    884    2017-05-10 17:54:00    2017-05-10 17:54:00
88939    30314    517    2017-05-10 04:25:00    2017-05-10 04:25:00
88940    30315    664    2017-05-10 11:06:00    2017-05-10 11:06:00
88941    30315    795    2017-05-10 16:10:00    2017-05-10 16:10:00
88942    30315    913    2017-05-10 02:44:00    2017-05-10 02:44:00
88943    30315    583    2017-05-10 10:40:00    2017-05-10 10:40:00
88944    30315    722    2017-05-10 14:28:00    2017-05-10 14:28:00
88945    30316    728    2017-05-10 10:01:00    2017-05-10 10:01:00
88946    30316    569    2017-05-10 10:30:00    2017-05-10 10:30:00
88947    30316    654    2017-05-10 17:58:00    2017-05-10 17:58:00
88948    30316    858    2017-05-10 14:33:00    2017-05-10 14:33:00
88949    30316    761    2017-05-10 03:05:00    2017-05-10 03:05:00
88950    30317    845    2017-05-10 14:54:00    2017-05-10 14:54:00
88951    30317    504    2017-05-10 09:28:00    2017-05-10 09:28:00
88952    30317    809    2017-05-10 21:27:00    2017-05-10 21:27:00
88953    30317    890    2017-05-10 20:37:00    2017-05-10 20:37:00
88954    30317    861    2017-05-10 22:42:00    2017-05-10 22:42:00
88955    30318    684    2017-05-10 16:21:00    2017-05-10 16:21:00
88956    30318    464    2017-05-10 15:19:00    2017-05-10 15:19:00
88957    30318    838    2017-05-10 04:35:00    2017-05-10 04:35:00
88958    30318    865    2017-05-10 02:30:00    2017-05-10 02:30:00
88959    30318    720    2017-05-10 07:00:00    2017-05-10 07:00:00
88960    30319    706    2017-05-10 19:50:00    2017-05-10 19:50:00
88961    30319    570    2017-05-10 12:00:00    2017-05-10 12:00:00
88962    30319    582    2017-05-10 07:12:00    2017-05-10 07:12:00
88963    30319    928    2017-05-10 21:01:00    2017-05-10 21:01:00
88964    30319    525    2017-05-10 01:41:00    2017-05-10 01:41:00
88965    30320    766    2017-05-10 11:44:00    2017-05-10 11:44:00
88966    30320    815    2017-05-10 06:38:00    2017-05-10 06:38:00
88967    30320    616    2017-05-10 12:55:00    2017-05-10 12:55:00
88968    30320    816    2017-05-10 17:59:00    2017-05-10 17:59:00
88969    30320    671    2017-05-10 13:58:00    2017-05-10 13:58:00
88970    30321    759    2017-05-10 07:53:00    2017-05-10 07:53:00
88971    30321    480    2017-05-10 01:21:00    2017-05-10 01:21:00
88972    30321    801    2017-05-10 02:39:00    2017-05-10 02:39:00
88973    30321    933    2017-05-10 19:22:00    2017-05-10 19:22:00
88974    30321    849    2017-05-10 02:55:00    2017-05-10 02:55:00
88975    30322    814    2017-05-10 21:51:00    2017-05-10 21:51:00
88976    30322    780    2017-05-10 12:02:00    2017-05-10 12:02:00
88977    30322    629    2017-05-10 13:39:00    2017-05-10 13:39:00
88978    30322    599    2017-05-10 16:16:00    2017-05-10 16:16:00
88979    30322    933    2017-05-10 08:51:00    2017-05-10 08:51:00
88980    30323    609    2017-05-10 20:28:00    2017-05-10 20:28:00
88981    30323    674    2017-05-10 21:34:00    2017-05-10 21:34:00
88982    30323    550    2017-05-10 19:30:00    2017-05-10 19:30:00
88983    30323    469    2017-05-10 13:35:00    2017-05-10 13:35:00
88984    30323    464    2017-05-10 13:11:00    2017-05-10 13:11:00
88985    30324    752    2017-05-10 10:15:00    2017-05-10 10:15:00
88986    30324    887    2017-05-10 04:18:00    2017-05-10 04:18:00
88987    30324    524    2017-05-10 01:00:00    2017-05-10 01:00:00
88988    30324    791    2017-05-10 06:04:00    2017-05-10 06:04:00
88989    30324    670    2017-05-10 18:57:00    2017-05-10 18:57:00
88990    30325    612    2017-05-10 02:07:00    2017-05-10 02:07:00
88991    30325    485    2017-05-10 06:28:00    2017-05-10 06:28:00
88992    30325    500    2017-05-10 19:51:00    2017-05-10 19:51:00
88993    30325    502    2017-05-10 12:53:00    2017-05-10 12:53:00
88994    30325    720    2017-05-10 19:33:00    2017-05-10 19:33:00
88995    30326    732    2017-05-10 17:02:00    2017-05-10 17:02:00
88996    30326    853    2017-05-10 11:41:00    2017-05-10 11:41:00
88997    30326    774    2017-05-10 20:21:00    2017-05-10 20:21:00
88998    30326    788    2017-05-10 08:14:00    2017-05-10 08:14:00
88999    30326    719    2017-05-10 09:00:00    2017-05-10 09:00:00
89000    30327    549    2017-05-10 02:35:00    2017-05-10 02:35:00
89001    30327    642    2017-05-10 19:09:00    2017-05-10 19:09:00
89002    30327    764    2017-05-10 17:24:00    2017-05-10 17:24:00
89003    30327    742    2017-05-10 09:17:00    2017-05-10 09:17:00
89004    30327    877    2017-05-10 10:49:00    2017-05-10 10:49:00
89005    30328    755    2017-05-10 18:41:00    2017-05-10 18:41:00
89006    30328    663    2017-05-10 11:39:00    2017-05-10 11:39:00
89007    30328    804    2017-05-10 15:12:00    2017-05-10 15:12:00
89008    30328    514    2017-05-10 13:52:00    2017-05-10 13:52:00
89009    30328    923    2017-05-10 10:11:00    2017-05-10 10:11:00
89010    30329    733    2017-05-10 18:01:00    2017-05-10 18:01:00
89011    30329    576    2017-05-10 20:41:00    2017-05-10 20:41:00
89012    30329    914    2017-05-10 04:19:00    2017-05-10 04:19:00
89013    30329    498    2017-05-10 21:54:00    2017-05-10 21:54:00
89014    30329    650    2017-05-10 20:08:00    2017-05-10 20:08:00
89015    30330    587    2017-05-10 19:40:00    2017-05-10 19:40:00
89016    30330    563    2017-05-10 13:01:00    2017-05-10 13:01:00
89017    30330    716    2017-05-10 09:02:00    2017-05-10 09:02:00
89018    30330    673    2017-05-10 12:45:00    2017-05-10 12:45:00
89019    30330    906    2017-05-10 05:54:00    2017-05-10 05:54:00
89020    30331    641    2017-05-10 21:11:00    2017-05-10 21:11:00
89021    30331    852    2017-05-10 11:25:00    2017-05-10 11:25:00
89022    30331    682    2017-05-10 14:48:00    2017-05-10 14:48:00
89023    30331    739    2017-05-10 22:59:00    2017-05-10 22:59:00
89024    30331    889    2017-05-10 18:54:00    2017-05-10 18:54:00
89025    30332    820    2017-05-10 08:15:00    2017-05-10 08:15:00
89026    30332    579    2017-05-10 17:43:00    2017-05-10 17:43:00
89027    30332    843    2017-05-10 05:35:00    2017-05-10 05:35:00
89028    30332    780    2017-05-10 10:37:00    2017-05-10 10:37:00
89029    30332    581    2017-05-10 10:22:00    2017-05-10 10:22:00
89030    30333    825    2017-05-10 14:30:00    2017-05-10 14:30:00
89031    30333    515    2017-05-10 17:15:00    2017-05-10 17:15:00
89032    30333    912    2017-05-10 12:30:00    2017-05-10 12:30:00
89033    30333    752    2017-05-10 06:13:00    2017-05-10 06:13:00
89034    30333    709    2017-05-10 21:00:00    2017-05-10 21:00:00
89035    30334    750    2017-05-10 14:26:00    2017-05-10 14:26:00
89036    30334    600    2017-05-10 05:05:00    2017-05-10 05:05:00
89037    30334    688    2017-05-10 22:37:00    2017-05-10 22:37:00
89038    30334    825    2017-05-10 15:47:00    2017-05-10 15:47:00
89039    30334    888    2017-05-10 17:30:00    2017-05-10 17:30:00
89040    30335    665    2017-05-10 20:57:00    2017-05-10 20:57:00
89041    30335    497    2017-05-10 11:02:00    2017-05-10 11:02:00
89042    30335    845    2017-05-10 12:28:00    2017-05-10 12:28:00
89043    30335    736    2017-05-10 21:42:00    2017-05-10 21:42:00
89044    30335    545    2017-05-10 02:53:00    2017-05-10 02:53:00
89045    30336    768    2017-05-11 05:00:00    2017-05-11 05:00:00
89046    30336    667    2017-05-11 02:28:00    2017-05-11 02:28:00
89047    30336    805    2017-05-11 13:06:00    2017-05-11 13:06:00
89048    30336    650    2017-05-11 20:40:00    2017-05-11 20:40:00
89049    30336    951    2017-05-11 10:23:00    2017-05-11 10:23:00
89050    30337    798    2017-05-11 05:56:00    2017-05-11 05:56:00
89051    30337    869    2017-05-11 22:13:00    2017-05-11 22:13:00
89052    30337    575    2017-05-11 07:27:00    2017-05-11 07:27:00
89053    30337    724    2017-05-11 10:18:00    2017-05-11 10:18:00
89054    30337    839    2017-05-11 17:25:00    2017-05-11 17:25:00
89055    30338    879    2017-05-11 21:16:00    2017-05-11 21:16:00
89056    30338    685    2017-05-11 06:07:00    2017-05-11 06:07:00
89057    30338    855    2017-05-11 22:47:00    2017-05-11 22:47:00
89058    30338    818    2017-05-11 23:41:00    2017-05-11 23:41:00
89059    30338    603    2017-05-11 21:14:00    2017-05-11 21:14:00
89060    30339    943    2017-05-11 15:24:00    2017-05-11 15:24:00
89061    30339    736    2017-05-11 11:30:00    2017-05-11 11:30:00
89062    30339    672    2017-05-11 12:40:00    2017-05-11 12:40:00
89063    30339    822    2017-05-11 02:53:00    2017-05-11 02:53:00
89064    30339    544    2017-05-11 14:35:00    2017-05-11 14:35:00
89065    30340    582    2017-05-11 14:05:00    2017-05-11 14:05:00
89066    30340    573    2017-05-11 06:49:00    2017-05-11 06:49:00
89067    30340    476    2017-05-11 20:26:00    2017-05-11 20:26:00
89068    30340    839    2017-05-11 13:31:00    2017-05-11 13:31:00
89069    30340    886    2017-05-11 12:40:00    2017-05-11 12:40:00
89070    30341    721    2017-05-11 22:02:00    2017-05-11 22:02:00
89071    30341    687    2017-05-11 11:27:00    2017-05-11 11:27:00
89072    30341    908    2017-05-11 02:00:00    2017-05-11 02:00:00
89073    30341    896    2017-05-11 05:43:00    2017-05-11 05:43:00
89074    30341    525    2017-05-11 18:20:00    2017-05-11 18:20:00
89075    30342    599    2017-05-11 13:26:00    2017-05-11 13:26:00
89076    30342    799    2017-05-11 17:31:00    2017-05-11 17:31:00
89077    30342    959    2017-05-11 11:07:00    2017-05-11 11:07:00
89078    30342    919    2017-05-11 20:25:00    2017-05-11 20:25:00
89079    30342    773    2017-05-11 01:32:00    2017-05-11 01:32:00
89080    30343    562    2017-05-11 05:06:00    2017-05-11 05:06:00
89081    30343    709    2017-05-11 05:24:00    2017-05-11 05:24:00
89082    30343    873    2017-05-11 01:19:00    2017-05-11 01:19:00
89083    30343    630    2017-05-11 05:29:00    2017-05-11 05:29:00
89084    30343    873    2017-05-11 17:45:00    2017-05-11 17:45:00
89085    30344    552    2017-05-11 14:02:00    2017-05-11 14:02:00
89086    30344    792    2017-05-11 19:30:00    2017-05-11 19:30:00
89087    30344    858    2017-05-11 15:34:00    2017-05-11 15:34:00
89088    30344    816    2017-05-11 01:48:00    2017-05-11 01:48:00
89089    30344    770    2017-05-11 08:00:00    2017-05-11 08:00:00
89090    30345    817    2017-05-11 18:56:00    2017-05-11 18:56:00
89091    30345    577    2017-05-11 04:46:00    2017-05-11 04:46:00
89092    30345    960    2017-05-11 21:42:00    2017-05-11 21:42:00
89093    30345    826    2017-05-11 22:46:00    2017-05-11 22:46:00
89094    30345    841    2017-05-11 09:20:00    2017-05-11 09:20:00
89095    30346    666    2017-05-11 04:54:00    2017-05-11 04:54:00
89096    30346    715    2017-05-11 18:04:00    2017-05-11 18:04:00
89097    30346    529    2017-05-11 05:47:00    2017-05-11 05:47:00
89098    30346    497    2017-05-11 11:28:00    2017-05-11 11:28:00
89099    30346    549    2017-05-11 07:00:00    2017-05-11 07:00:00
89100    30347    708    2017-05-11 02:01:00    2017-05-11 02:01:00
89101    30347    472    2017-05-11 22:31:00    2017-05-11 22:31:00
89102    30347    829    2017-05-11 11:41:00    2017-05-11 11:41:00
89103    30347    842    2017-05-11 22:01:00    2017-05-11 22:01:00
89104    30347    727    2017-05-11 08:20:00    2017-05-11 08:20:00
89105    30348    557    2017-05-11 13:42:00    2017-05-11 13:42:00
89106    30348    641    2017-05-11 10:52:00    2017-05-11 10:52:00
89107    30348    806    2017-05-11 19:51:00    2017-05-11 19:51:00
89108    30348    591    2017-05-11 11:07:00    2017-05-11 11:07:00
89109    30348    823    2017-05-11 05:14:00    2017-05-11 05:14:00
89110    30349    562    2017-05-11 18:57:00    2017-05-11 18:57:00
89111    30349    944    2017-05-11 10:25:00    2017-05-11 10:25:00
89112    30349    803    2017-05-11 22:32:00    2017-05-11 22:32:00
89113    30349    659    2017-05-11 18:34:00    2017-05-11 18:34:00
89114    30349    941    2017-05-11 09:22:00    2017-05-11 09:22:00
89115    30350    735    2017-05-11 10:48:00    2017-05-11 10:48:00
89116    30350    591    2017-05-11 02:20:00    2017-05-11 02:20:00
89117    30350    596    2017-05-11 22:47:00    2017-05-11 22:47:00
89118    30350    473    2017-05-11 02:51:00    2017-05-11 02:51:00
89119    30350    653    2017-05-11 21:19:00    2017-05-11 21:19:00
89120    30351    765    2017-05-11 14:25:00    2017-05-11 14:25:00
89121    30351    470    2017-05-11 19:47:00    2017-05-11 19:47:00
89122    30351    506    2017-05-11 06:02:00    2017-05-11 06:02:00
89123    30351    873    2017-05-11 21:59:00    2017-05-11 21:59:00
89124    30351    923    2017-05-11 19:21:00    2017-05-11 19:21:00
89125    30352    632    2017-05-11 21:56:00    2017-05-11 21:56:00
89126    30352    756    2017-05-11 07:03:00    2017-05-11 07:03:00
89127    30352    499    2017-05-11 08:20:00    2017-05-11 08:20:00
89128    30352    627    2017-05-11 20:34:00    2017-05-11 20:34:00
89129    30352    725    2017-05-11 10:49:00    2017-05-11 10:49:00
89130    30353    846    2017-05-11 05:33:00    2017-05-11 05:33:00
89131    30353    687    2017-05-11 10:09:00    2017-05-11 10:09:00
89132    30353    519    2017-05-11 10:03:00    2017-05-11 10:03:00
89133    30353    474    2017-05-11 09:09:00    2017-05-11 09:09:00
89134    30353    882    2017-05-11 09:00:00    2017-05-11 09:00:00
89135    30354    620    2017-05-11 09:23:00    2017-05-11 09:23:00
89136    30354    678    2017-05-11 03:47:00    2017-05-11 03:47:00
89137    30354    478    2017-05-11 22:29:00    2017-05-11 22:29:00
89138    30354    604    2017-05-11 12:34:00    2017-05-11 12:34:00
89139    30354    479    2017-05-11 14:08:00    2017-05-11 14:08:00
89140    30355    755    2017-05-11 19:53:00    2017-05-11 19:53:00
89141    30355    708    2017-05-11 17:19:00    2017-05-11 17:19:00
89142    30355    465    2017-05-11 20:22:00    2017-05-11 20:22:00
89143    30355    944    2017-05-11 04:40:00    2017-05-11 04:40:00
89144    30355    928    2017-05-11 06:53:00    2017-05-11 06:53:00
89145    30356    860    2017-05-11 16:49:00    2017-05-11 16:49:00
89146    30356    531    2017-05-11 18:49:00    2017-05-11 18:49:00
89147    30356    703    2017-05-11 10:46:00    2017-05-11 10:46:00
89148    30356    469    2017-05-11 23:37:00    2017-05-11 23:37:00
89149    30356    701    2017-05-11 04:18:00    2017-05-11 04:18:00
89150    30357    485    2017-05-11 09:14:00    2017-05-11 09:14:00
89151    30357    960    2017-05-11 19:07:00    2017-05-11 19:07:00
89152    30357    765    2017-05-11 12:39:00    2017-05-11 12:39:00
89153    30357    651    2017-05-11 21:54:00    2017-05-11 21:54:00
89154    30357    542    2017-05-11 18:25:00    2017-05-11 18:25:00
89155    30358    650    2017-05-11 13:13:00    2017-05-11 13:13:00
89156    30358    662    2017-05-11 17:46:00    2017-05-11 17:46:00
89157    30358    900    2017-05-11 09:41:00    2017-05-11 09:41:00
89158    30358    555    2017-05-11 18:52:00    2017-05-11 18:52:00
89159    30358    914    2017-05-11 18:18:00    2017-05-11 18:18:00
89160    30359    616    2017-05-11 23:38:00    2017-05-11 23:38:00
89161    30359    701    2017-05-11 10:24:00    2017-05-11 10:24:00
89162    30359    620    2017-05-11 14:40:00    2017-05-11 14:40:00
89163    30359    904    2017-05-11 05:49:00    2017-05-11 05:49:00
89164    30359    847    2017-05-11 06:01:00    2017-05-11 06:01:00
89165    30360    825    2017-05-11 03:12:00    2017-05-11 03:12:00
89166    30360    670    2017-05-11 03:54:00    2017-05-11 03:54:00
89167    30360    772    2017-05-11 15:08:00    2017-05-11 15:08:00
89168    30360    580    2017-05-11 07:24:00    2017-05-11 07:24:00
89169    30360    737    2017-05-11 06:09:00    2017-05-11 06:09:00
89170    30361    857    2017-05-11 18:20:00    2017-05-11 18:20:00
89171    30361    535    2017-05-11 03:37:00    2017-05-11 03:37:00
89172    30361    900    2017-05-11 17:25:00    2017-05-11 17:25:00
89173    30361    958    2017-05-11 12:53:00    2017-05-11 12:53:00
89174    30361    468    2017-05-11 12:44:00    2017-05-11 12:44:00
89175    30362    674    2017-05-11 19:44:00    2017-05-11 19:44:00
89176    30362    903    2017-05-11 04:07:00    2017-05-11 04:07:00
89177    30362    653    2017-05-11 02:54:00    2017-05-11 02:54:00
89178    30362    599    2017-05-11 07:25:00    2017-05-11 07:25:00
89179    30362    781    2017-05-11 14:41:00    2017-05-11 14:41:00
89180    30363    779    2017-05-11 23:25:00    2017-05-11 23:25:00
89181    30363    467    2017-05-11 22:09:00    2017-05-11 22:09:00
89182    30363    574    2017-05-11 13:15:00    2017-05-11 13:15:00
89183    30363    708    2017-05-11 17:48:00    2017-05-11 17:48:00
89184    30363    882    2017-05-11 13:58:00    2017-05-11 13:58:00
89185    30364    685    2017-05-11 03:25:00    2017-05-11 03:25:00
89186    30364    786    2017-05-11 02:01:00    2017-05-11 02:01:00
89187    30364    484    2017-05-11 04:44:00    2017-05-11 04:44:00
89188    30364    471    2017-05-11 11:26:00    2017-05-11 11:26:00
89189    30364    879    2017-05-11 16:10:00    2017-05-11 16:10:00
89190    30365    652    2017-05-11 14:33:00    2017-05-11 14:33:00
89191    30365    754    2017-05-11 14:13:00    2017-05-11 14:13:00
89192    30365    501    2017-05-11 02:38:00    2017-05-11 02:38:00
89193    30365    718    2017-05-11 03:31:00    2017-05-11 03:31:00
89194    30365    685    2017-05-11 07:11:00    2017-05-11 07:11:00
89195    30366    685    2017-05-11 22:24:00    2017-05-11 22:24:00
89196    30366    808    2017-05-11 12:37:00    2017-05-11 12:37:00
89197    30366    820    2017-05-11 21:44:00    2017-05-11 21:44:00
89198    30366    833    2017-05-11 21:02:00    2017-05-11 21:02:00
89199    30366    589    2017-05-11 18:19:00    2017-05-11 18:19:00
89200    30367    822    2017-05-11 09:03:00    2017-05-11 09:03:00
89201    30367    833    2017-05-11 01:19:00    2017-05-11 01:19:00
89202    30367    598    2017-05-11 10:39:00    2017-05-11 10:39:00
89203    30367    511    2017-05-11 05:27:00    2017-05-11 05:27:00
89204    30367    550    2017-05-11 06:24:00    2017-05-11 06:24:00
89205    30368    496    2017-05-11 01:41:00    2017-05-11 01:41:00
89206    30368    547    2017-05-11 18:09:00    2017-05-11 18:09:00
89207    30368    764    2017-05-11 18:44:00    2017-05-11 18:44:00
89208    30368    862    2017-05-11 14:22:00    2017-05-11 14:22:00
89209    30368    952    2017-05-11 12:25:00    2017-05-11 12:25:00
89210    30369    534    2017-05-11 09:40:00    2017-05-11 09:40:00
89211    30369    628    2017-05-11 09:00:00    2017-05-11 09:00:00
89212    30369    945    2017-05-11 01:16:00    2017-05-11 01:16:00
89213    30369    575    2017-05-11 21:01:00    2017-05-11 21:01:00
89214    30369    594    2017-05-11 20:01:00    2017-05-11 20:01:00
89215    30370    862    2017-05-11 11:05:00    2017-05-11 11:05:00
89216    30370    488    2017-05-11 04:36:00    2017-05-11 04:36:00
89217    30370    639    2017-05-11 01:26:00    2017-05-11 01:26:00
89218    30370    801    2017-05-11 02:09:00    2017-05-11 02:09:00
89219    30370    615    2017-05-11 22:40:00    2017-05-11 22:40:00
89220    30371    712    2017-05-11 02:59:00    2017-05-11 02:59:00
89221    30371    854    2017-05-11 22:58:00    2017-05-11 22:58:00
89222    30371    889    2017-05-11 17:47:00    2017-05-11 17:47:00
89223    30371    477    2017-05-11 19:27:00    2017-05-11 19:27:00
89224    30371    658    2017-05-11 13:04:00    2017-05-11 13:04:00
89225    30372    625    2017-05-11 23:54:00    2017-05-11 23:54:00
89226    30372    718    2017-05-11 06:58:00    2017-05-11 06:58:00
89227    30372    679    2017-05-11 21:18:00    2017-05-11 21:18:00
89228    30372    939    2017-05-11 03:48:00    2017-05-11 03:48:00
89229    30372    723    2017-05-11 19:47:00    2017-05-11 19:47:00
89230    30373    785    2017-05-11 07:27:00    2017-05-11 07:27:00
89231    30373    835    2017-05-11 21:51:00    2017-05-11 21:51:00
89232    30373    504    2017-05-11 20:26:00    2017-05-11 20:26:00
89233    30373    731    2017-05-11 16:23:00    2017-05-11 16:23:00
89234    30373    490    2017-05-11 13:26:00    2017-05-11 13:26:00
89235    30374    504    2017-05-11 13:57:00    2017-05-11 13:57:00
89236    30374    664    2017-05-11 02:57:00    2017-05-11 02:57:00
89237    30374    624    2017-05-11 03:32:00    2017-05-11 03:32:00
89238    30374    883    2017-05-11 09:37:00    2017-05-11 09:37:00
89239    30374    720    2017-05-11 08:13:00    2017-05-11 08:13:00
89240    30375    469    2017-05-11 02:02:00    2017-05-11 02:02:00
89241    30375    646    2017-05-11 11:05:00    2017-05-11 11:05:00
89242    30375    932    2017-05-11 13:28:00    2017-05-11 13:28:00
89243    30375    640    2017-05-11 15:33:00    2017-05-11 15:33:00
89244    30375    800    2017-05-11 19:13:00    2017-05-11 19:13:00
89245    30376    541    2017-05-11 06:13:00    2017-05-11 06:13:00
89246    30376    738    2017-05-11 08:01:00    2017-05-11 08:01:00
89247    30376    505    2017-05-11 14:20:00    2017-05-11 14:20:00
89248    30376    639    2017-05-11 12:08:00    2017-05-11 12:08:00
89249    30376    607    2017-05-11 03:40:00    2017-05-11 03:40:00
89250    30377    810    2017-05-11 17:42:00    2017-05-11 17:42:00
89251    30377    890    2017-05-11 22:54:00    2017-05-11 22:54:00
89252    30377    856    2017-05-11 10:58:00    2017-05-11 10:58:00
89253    30377    911    2017-05-11 07:38:00    2017-05-11 07:38:00
89254    30377    884    2017-05-11 22:21:00    2017-05-11 22:21:00
89255    30378    922    2017-05-11 13:38:00    2017-05-11 13:38:00
89256    30378    778    2017-05-11 21:22:00    2017-05-11 21:22:00
89257    30378    490    2017-05-11 20:28:00    2017-05-11 20:28:00
89258    30378    621    2017-05-11 22:04:00    2017-05-11 22:04:00
89259    30378    535    2017-05-11 07:44:00    2017-05-11 07:44:00
89260    30379    959    2017-05-11 20:57:00    2017-05-11 20:57:00
89261    30379    815    2017-05-11 08:47:00    2017-05-11 08:47:00
89262    30379    691    2017-05-11 12:55:00    2017-05-11 12:55:00
89263    30379    629    2017-05-11 01:25:00    2017-05-11 01:25:00
89264    30379    871    2017-05-11 23:56:00    2017-05-11 23:56:00
89265    30380    559    2017-05-11 03:47:00    2017-05-11 03:47:00
89266    30380    807    2017-05-11 14:32:00    2017-05-11 14:32:00
89267    30380    767    2017-05-11 08:09:00    2017-05-11 08:09:00
89268    30380    735    2017-05-11 23:57:00    2017-05-11 23:57:00
89269    30380    706    2017-05-11 08:01:00    2017-05-11 08:01:00
89270    30381    854    2017-05-11 14:43:00    2017-05-11 14:43:00
89271    30381    488    2017-05-11 04:17:00    2017-05-11 04:17:00
89272    30381    948    2017-05-11 02:02:00    2017-05-11 02:02:00
89273    30381    531    2017-05-11 01:34:00    2017-05-11 01:34:00
89274    30381    540    2017-05-11 17:57:00    2017-05-11 17:57:00
89275    30382    629    2017-05-11 07:35:00    2017-05-11 07:35:00
89276    30382    565    2017-05-11 21:53:00    2017-05-11 21:53:00
89277    30382    664    2017-05-11 10:12:00    2017-05-11 10:12:00
89278    30382    942    2017-05-11 16:28:00    2017-05-11 16:28:00
89279    30382    857    2017-05-11 10:44:00    2017-05-11 10:44:00
89280    30383    587    2017-05-11 16:46:00    2017-05-11 16:46:00
89281    30383    890    2017-05-11 20:19:00    2017-05-11 20:19:00
89282    30383    745    2017-05-11 17:44:00    2017-05-11 17:44:00
89283    30383    877    2017-05-11 23:45:00    2017-05-11 23:45:00
89284    30383    931    2017-05-11 14:34:00    2017-05-11 14:34:00
89285    30384    590    2017-05-11 23:16:00    2017-05-11 23:16:00
89286    30384    782    2017-05-11 06:47:00    2017-05-11 06:47:00
89287    30384    710    2017-05-11 23:56:00    2017-05-11 23:56:00
89288    30384    824    2017-05-11 02:01:00    2017-05-11 02:01:00
89289    30384    948    2017-05-11 21:00:00    2017-05-11 21:00:00
89290    30385    757    2017-05-11 01:13:00    2017-05-11 01:13:00
89291    30385    515    2017-05-11 23:57:00    2017-05-11 23:57:00
89292    30385    736    2017-05-11 17:10:00    2017-05-11 17:10:00
89293    30385    628    2017-05-11 03:28:00    2017-05-11 03:28:00
89294    30385    838    2017-05-11 12:05:00    2017-05-11 12:05:00
89295    30386    918    2017-05-11 06:09:00    2017-05-11 06:09:00
89296    30386    927    2017-05-11 10:42:00    2017-05-11 10:42:00
89297    30386    718    2017-05-11 09:16:00    2017-05-11 09:16:00
89298    30386    531    2017-05-11 05:02:00    2017-05-11 05:02:00
89299    30386    668    2017-05-11 07:18:00    2017-05-11 07:18:00
89301    30387    626    2017-05-11 21:59:00    2017-05-11 21:59:00
89302    30387    817    2017-05-11 16:32:00    2017-05-11 16:32:00
89303    30387    838    2017-05-11 23:58:00    2017-05-11 23:58:00
89304    30387    804    2017-05-11 13:43:00    2017-05-11 13:43:00
89305    30388    571    2017-05-11 22:17:00    2017-05-11 22:17:00
89306    30388    703    2017-05-11 02:49:00    2017-05-11 02:49:00
89307    30388    798    2017-05-11 05:11:00    2017-05-11 05:11:00
89308    30388    467    2017-05-11 16:47:00    2017-05-11 16:47:00
89309    30388    917    2017-05-11 16:09:00    2017-05-11 16:09:00
89310    30389    937    2017-05-11 15:29:00    2017-05-11 15:29:00
89311    30389    797    2017-05-11 16:17:00    2017-05-11 16:17:00
89312    30389    741    2017-05-11 22:27:00    2017-05-11 22:27:00
89313    30389    948    2017-05-11 07:10:00    2017-05-11 07:10:00
89314    30389    818    2017-05-11 01:58:00    2017-05-11 01:58:00
89315    30390    643    2017-05-11 03:25:00    2017-05-11 03:25:00
89316    30390    848    2017-05-11 04:25:00    2017-05-11 04:25:00
89317    30390    676    2017-05-11 19:26:00    2017-05-11 19:26:00
89318    30390    814    2017-05-11 01:11:00    2017-05-11 01:11:00
89319    30390    554    2017-05-11 12:08:00    2017-05-11 12:08:00
89320    30391    925    2017-05-11 02:00:00    2017-05-11 02:00:00
89321    30391    580    2017-05-11 08:51:00    2017-05-11 08:51:00
89322    30391    758    2017-05-11 23:37:00    2017-05-11 23:37:00
89323    30391    631    2017-05-11 14:02:00    2017-05-11 14:02:00
89324    30391    895    2017-05-11 16:51:00    2017-05-11 16:51:00
89325    30392    707    2017-05-11 18:25:00    2017-05-11 18:25:00
89326    30392    499    2017-05-11 19:31:00    2017-05-11 19:31:00
89327    30392    839    2017-05-11 01:21:00    2017-05-11 01:21:00
89328    30392    799    2017-05-11 13:41:00    2017-05-11 13:41:00
89329    30392    608    2017-05-11 10:01:00    2017-05-11 10:01:00
89330    30393    960    2017-05-11 21:22:00    2017-05-11 21:22:00
89331    30393    487    2017-05-11 15:55:00    2017-05-11 15:55:00
89332    30393    732    2017-05-11 07:31:00    2017-05-11 07:31:00
89333    30393    711    2017-05-11 07:37:00    2017-05-11 07:37:00
89334    30393    790    2017-05-11 18:19:00    2017-05-11 18:19:00
89335    30394    570    2017-05-11 17:02:00    2017-05-11 17:02:00
89336    30394    803    2017-05-11 10:41:00    2017-05-11 10:41:00
89337    30394    850    2017-05-11 07:29:00    2017-05-11 07:29:00
89338    30394    512    2017-05-11 22:14:00    2017-05-11 22:14:00
89339    30394    647    2017-05-11 20:58:00    2017-05-11 20:58:00
89340    30395    609    2017-05-11 01:42:00    2017-05-11 01:42:00
89341    30395    925    2017-05-11 14:51:00    2017-05-11 14:51:00
89342    30395    702    2017-05-11 10:14:00    2017-05-11 10:14:00
89343    30395    656    2017-05-11 14:29:00    2017-05-11 14:29:00
89344    30395    798    2017-05-11 21:19:00    2017-05-11 21:19:00
89345    30396    840    2017-05-11 21:26:00    2017-05-11 21:26:00
89346    30396    579    2017-05-11 21:05:00    2017-05-11 21:05:00
89347    30396    487    2017-05-11 18:00:00    2017-05-11 18:00:00
89348    30396    886    2017-05-11 18:27:00    2017-05-11 18:27:00
89349    30396    676    2017-05-11 19:59:00    2017-05-11 19:59:00
89350    30397    950    2017-05-11 15:42:00    2017-05-11 15:42:00
89351    30397    549    2017-05-11 01:48:00    2017-05-11 01:48:00
89352    30397    958    2017-05-11 07:09:00    2017-05-11 07:09:00
89353    30397    662    2017-05-11 01:47:00    2017-05-11 01:47:00
89354    30397    671    2017-05-11 03:02:00    2017-05-11 03:02:00
89355    30398    788    2017-05-11 21:15:00    2017-05-11 21:15:00
89356    30398    561    2017-05-11 23:47:00    2017-05-11 23:47:00
89357    30398    518    2017-05-11 01:01:00    2017-05-11 01:01:00
89358    30398    953    2017-05-11 23:58:00    2017-05-11 23:58:00
89359    30398    585    2017-05-11 19:48:00    2017-05-11 19:48:00
89360    30399    734    2017-05-11 19:08:00    2017-05-11 19:08:00
89361    30399    507    2017-05-11 01:35:00    2017-05-11 01:35:00
89362    30399    633    2017-05-11 14:31:00    2017-05-11 14:31:00
89363    30399    942    2017-05-11 04:06:00    2017-05-11 04:06:00
89364    30399    808    2017-05-11 11:19:00    2017-05-11 11:19:00
89365    30400    826    2017-05-11 01:53:00    2017-05-11 01:53:00
89366    30400    847    2017-05-11 13:53:00    2017-05-11 13:53:00
89367    30400    705    2017-05-11 11:22:00    2017-05-11 11:22:00
89368    30400    699    2017-05-11 10:26:00    2017-05-11 10:26:00
89369    30400    821    2017-05-11 16:36:00    2017-05-11 16:36:00
89370    30401    506    2017-05-11 02:18:00    2017-05-11 02:18:00
89371    30401    849    2017-05-11 10:39:00    2017-05-11 10:39:00
89372    30401    821    2017-05-11 22:41:00    2017-05-11 22:41:00
89373    30401    564    2017-05-11 22:17:00    2017-05-11 22:17:00
89374    30401    671    2017-05-11 22:14:00    2017-05-11 22:14:00
89375    30402    515    2017-05-11 07:11:00    2017-05-11 07:11:00
89376    30402    611    2017-05-11 06:29:00    2017-05-11 06:29:00
89377    30402    872    2017-05-11 03:14:00    2017-05-11 03:14:00
89378    30402    605    2017-05-11 01:45:00    2017-05-11 01:45:00
89379    30402    673    2017-05-11 19:46:00    2017-05-11 19:46:00
89380    30403    547    2017-05-11 06:26:00    2017-05-11 06:26:00
89381    30403    900    2017-05-11 13:39:00    2017-05-11 13:39:00
89382    30403    873    2017-05-11 22:52:00    2017-05-11 22:52:00
89383    30403    556    2017-05-11 15:38:00    2017-05-11 15:38:00
89384    30403    540    2017-05-11 06:54:00    2017-05-11 06:54:00
89385    30404    619    2017-05-11 12:37:00    2017-05-11 12:37:00
89386    30404    526    2017-05-11 02:57:00    2017-05-11 02:57:00
89387    30404    739    2017-05-11 14:06:00    2017-05-11 14:06:00
89388    30404    535    2017-05-11 19:22:00    2017-05-11 19:22:00
89389    30404    884    2017-05-11 10:32:00    2017-05-11 10:32:00
89390    30405    701    2017-05-11 15:20:00    2017-05-11 15:20:00
89391    30405    762    2017-05-11 23:31:00    2017-05-11 23:31:00
89392    30405    833    2017-05-11 19:07:00    2017-05-11 19:07:00
89393    30405    777    2017-05-11 07:27:00    2017-05-11 07:27:00
89394    30405    718    2017-05-11 04:41:00    2017-05-11 04:41:00
89395    30406    587    2017-05-11 14:00:00    2017-05-11 14:00:00
89396    30406    915    2017-05-11 20:09:00    2017-05-11 20:09:00
89397    30406    717    2017-05-11 12:19:00    2017-05-11 12:19:00
89398    30406    910    2017-05-11 15:15:00    2017-05-11 15:15:00
89399    30406    864    2017-05-11 21:13:00    2017-05-11 21:13:00
89400    30407    618    2017-05-11 11:14:00    2017-05-11 11:14:00
89401    30407    743    2017-05-11 22:46:00    2017-05-11 22:46:00
89402    30407    522    2017-05-11 18:20:00    2017-05-11 18:20:00
89403    30407    496    2017-05-11 22:22:00    2017-05-11 22:22:00
89404    30407    696    2017-05-11 21:28:00    2017-05-11 21:28:00
89405    30408    663    2017-05-11 08:54:00    2017-05-11 08:54:00
89406    30408    841    2017-05-11 16:21:00    2017-05-11 16:21:00
89407    30408    644    2017-05-11 08:22:00    2017-05-11 08:22:00
89408    30408    940    2017-05-11 19:20:00    2017-05-11 19:20:00
89409    30408    715    2017-05-11 02:44:00    2017-05-11 02:44:00
89410    30409    493    2017-05-11 04:58:00    2017-05-11 04:58:00
89411    30409    794    2017-05-11 14:24:00    2017-05-11 14:24:00
89412    30409    670    2017-05-11 14:11:00    2017-05-11 14:11:00
89413    30409    778    2017-05-11 07:40:00    2017-05-11 07:40:00
89414    30409    878    2017-05-11 22:16:00    2017-05-11 22:16:00
89415    30410    760    2017-05-11 17:50:00    2017-05-11 17:50:00
89416    30410    463    2017-05-11 03:34:00    2017-05-11 03:34:00
89417    30410    851    2017-05-11 03:44:00    2017-05-11 03:44:00
89418    30410    580    2017-05-11 07:11:00    2017-05-11 07:11:00
89419    30410    698    2017-05-11 23:17:00    2017-05-11 23:17:00
89420    30411    643    2017-05-11 02:23:00    2017-05-11 02:23:00
89421    30411    607    2017-05-11 01:07:00    2017-05-11 01:07:00
89422    30411    933    2017-05-11 19:23:00    2017-05-11 19:23:00
89423    30411    915    2017-05-11 13:58:00    2017-05-11 13:58:00
89424    30411    525    2017-05-11 20:48:00    2017-05-11 20:48:00
89425    30412    921    2017-05-11 21:13:00    2017-05-11 21:13:00
89426    30412    709    2017-05-11 02:25:00    2017-05-11 02:25:00
89427    30412    629    2017-05-11 19:28:00    2017-05-11 19:28:00
89428    30412    890    2017-05-11 14:07:00    2017-05-11 14:07:00
89429    30412    679    2017-05-11 02:01:00    2017-05-11 02:01:00
89430    30413    954    2017-05-11 17:14:00    2017-05-11 17:14:00
89431    30413    880    2017-05-11 17:41:00    2017-05-11 17:41:00
89432    30413    682    2017-05-11 01:54:00    2017-05-11 01:54:00
89433    30413    554    2017-05-11 07:38:00    2017-05-11 07:38:00
89434    30413    722    2017-05-11 16:26:00    2017-05-11 16:26:00
89435    30414    546    2017-05-11 09:46:00    2017-05-11 09:46:00
89436    30414    862    2017-05-11 21:14:00    2017-05-11 21:14:00
89437    30414    742    2017-05-11 15:51:00    2017-05-11 15:51:00
89438    30414    514    2017-05-11 08:18:00    2017-05-11 08:18:00
89439    30414    530    2017-05-11 03:53:00    2017-05-11 03:53:00
89440    30415    885    2017-05-11 18:10:00    2017-05-11 18:10:00
89441    30415    907    2017-05-11 03:44:00    2017-05-11 03:44:00
89442    30415    647    2017-05-11 12:50:00    2017-05-11 12:50:00
89443    30415    859    2017-05-11 04:05:00    2017-05-11 04:05:00
89444    30415    744    2017-05-11 20:31:00    2017-05-11 20:31:00
89445    30416    782    2017-05-11 11:27:00    2017-05-11 11:27:00
89446    30416    720    2017-05-11 04:36:00    2017-05-11 04:36:00
89447    30416    597    2017-05-11 04:51:00    2017-05-11 04:51:00
89448    30416    734    2017-05-11 12:50:00    2017-05-11 12:50:00
89449    30416    773    2017-05-11 15:00:00    2017-05-11 15:00:00
89450    30417    567    2017-05-11 02:00:00    2017-05-11 02:00:00
89451    30417    640    2017-05-11 02:46:00    2017-05-11 02:46:00
89452    30417    740    2017-05-11 02:18:00    2017-05-11 02:18:00
89453    30417    717    2017-05-11 09:22:00    2017-05-11 09:22:00
89454    30417    585    2017-05-11 23:35:00    2017-05-11 23:35:00
89455    30418    875    2017-05-11 23:28:00    2017-05-11 23:28:00
89456    30418    544    2017-05-11 03:59:00    2017-05-11 03:59:00
89457    30418    467    2017-05-11 20:46:00    2017-05-11 20:46:00
89458    30418    576    2017-05-11 09:48:00    2017-05-11 09:48:00
89459    30418    557    2017-05-11 02:49:00    2017-05-11 02:49:00
89460    30419    592    2017-05-11 07:51:00    2017-05-11 07:51:00
89461    30419    686    2017-05-11 09:54:00    2017-05-11 09:54:00
89462    30419    845    2017-05-11 10:34:00    2017-05-11 10:34:00
89463    30419    660    2017-05-11 16:13:00    2017-05-11 16:13:00
89464    30419    472    2017-05-11 14:50:00    2017-05-11 14:50:00
89465    30420    814    2017-05-11 15:28:00    2017-05-11 15:28:00
89466    30420    915    2017-05-11 07:59:00    2017-05-11 07:59:00
89467    30420    959    2017-05-11 04:59:00    2017-05-11 04:59:00
89468    30420    885    2017-05-11 23:02:00    2017-05-11 23:02:00
89469    30420    808    2017-05-11 03:44:00    2017-05-11 03:44:00
89470    30421    548    2017-05-11 22:48:00    2017-05-11 22:48:00
89471    30421    522    2017-05-11 10:24:00    2017-05-11 10:24:00
89472    30421    559    2017-05-11 16:32:00    2017-05-11 16:32:00
89473    30421    731    2017-05-11 03:09:00    2017-05-11 03:09:00
89474    30421    470    2017-05-11 22:05:00    2017-05-11 22:05:00
89475    30422    608    2017-05-11 05:08:00    2017-05-11 05:08:00
89476    30422    566    2017-05-11 09:50:00    2017-05-11 09:50:00
89477    30422    784    2017-05-11 23:42:00    2017-05-11 23:42:00
89478    30422    770    2017-05-11 13:49:00    2017-05-11 13:49:00
89479    30422    606    2017-05-11 12:49:00    2017-05-11 12:49:00
89480    30423    695    2017-05-11 05:13:00    2017-05-11 05:13:00
89481    30423    898    2017-05-11 15:22:00    2017-05-11 15:22:00
89482    30423    961    2017-05-11 22:47:00    2017-05-11 22:47:00
89483    30423    733    2017-05-11 15:59:00    2017-05-11 15:59:00
89484    30423    947    2017-05-11 05:57:00    2017-05-11 05:57:00
89485    30424    720    2017-05-11 01:27:00    2017-05-11 01:27:00
89486    30424    851    2017-05-11 02:03:00    2017-05-11 02:03:00
89487    30424    923    2017-05-11 10:05:00    2017-05-11 10:05:00
89488    30424    727    2017-05-11 04:55:00    2017-05-11 04:55:00
89489    30424    927    2017-05-11 19:23:00    2017-05-11 19:23:00
89490    30425    557    2017-05-11 17:19:00    2017-05-11 17:19:00
89491    30425    725    2017-05-11 23:33:00    2017-05-11 23:33:00
89492    30425    499    2017-05-11 22:08:00    2017-05-11 22:08:00
89493    30425    813    2017-05-11 19:50:00    2017-05-11 19:50:00
89494    30425    468    2017-05-11 16:24:00    2017-05-11 16:24:00
89495    30426    511    2017-05-11 01:45:00    2017-05-11 01:45:00
89496    30426    743    2017-05-11 15:49:00    2017-05-11 15:49:00
89497    30426    823    2017-05-11 19:47:00    2017-05-11 19:47:00
89498    30426    748    2017-05-11 02:30:00    2017-05-11 02:30:00
89499    30426    510    2017-05-11 17:26:00    2017-05-11 17:26:00
89500    30427    930    2017-05-11 03:12:00    2017-05-11 03:12:00
89501    30427    882    2017-05-11 13:26:00    2017-05-11 13:26:00
89502    30427    866    2017-05-11 15:03:00    2017-05-11 15:03:00
89503    30427    833    2017-05-11 20:08:00    2017-05-11 20:08:00
89504    30427    910    2017-05-11 10:29:00    2017-05-11 10:29:00
89505    30428    945    2017-05-11 01:06:00    2017-05-11 01:06:00
89506    30428    695    2017-05-11 12:29:00    2017-05-11 12:29:00
89507    30428    932    2017-05-11 15:00:00    2017-05-11 15:00:00
89508    30428    855    2017-05-11 15:20:00    2017-05-11 15:20:00
89509    30428    683    2017-05-11 10:47:00    2017-05-11 10:47:00
89510    30429    777    2017-05-11 22:00:00    2017-05-11 22:00:00
89511    30429    863    2017-05-11 12:34:00    2017-05-11 12:34:00
89512    30429    865    2017-05-11 03:21:00    2017-05-11 03:21:00
89513    30429    866    2017-05-11 03:21:00    2017-05-11 03:21:00
89514    30429    876    2017-05-11 14:41:00    2017-05-11 14:41:00
89515    30430    788    2017-05-11 08:20:00    2017-05-11 08:20:00
89516    30430    749    2017-05-11 08:36:00    2017-05-11 08:36:00
89517    30430    960    2017-05-11 08:47:00    2017-05-11 08:47:00
89518    30430    583    2017-05-11 18:09:00    2017-05-11 18:09:00
89519    30430    643    2017-05-11 13:07:00    2017-05-11 13:07:00
89520    30431    475    2017-05-11 22:38:00    2017-05-11 22:38:00
89521    30431    633    2017-05-11 07:11:00    2017-05-11 07:11:00
89522    30431    529    2017-05-11 13:19:00    2017-05-11 13:19:00
89523    30431    500    2017-05-11 12:20:00    2017-05-11 12:20:00
89524    30431    675    2017-05-11 05:06:00    2017-05-11 05:06:00
89525    30432    840    2017-05-11 14:12:00    2017-05-11 14:12:00
89526    30432    633    2017-05-11 21:41:00    2017-05-11 21:41:00
89527    30432    687    2017-05-11 15:06:00    2017-05-11 15:06:00
89528    30432    711    2017-05-11 20:19:00    2017-05-11 20:19:00
89529    30432    833    2017-05-11 09:37:00    2017-05-11 09:37:00
89530    30433    760    2017-05-12 03:15:00    2017-05-12 03:15:00
89531    30433    518    2017-05-12 17:51:00    2017-05-12 17:51:00
89532    30433    645    2017-05-12 09:28:00    2017-05-12 09:28:00
89533    30433    524    2017-05-12 01:48:00    2017-05-12 01:48:00
89534    30433    686    2017-05-12 21:51:00    2017-05-12 21:51:00
89535    30434    732    2017-05-12 01:22:00    2017-05-12 01:22:00
89536    30434    941    2017-05-12 13:30:00    2017-05-12 13:30:00
89537    30434    463    2017-05-12 03:19:00    2017-05-12 03:19:00
89538    30434    587    2017-05-12 03:17:00    2017-05-12 03:17:00
89539    30434    703    2017-05-12 11:09:00    2017-05-12 11:09:00
89540    30435    892    2017-05-12 12:57:00    2017-05-12 12:57:00
89541    30435    686    2017-05-12 20:47:00    2017-05-12 20:47:00
89542    30435    865    2017-05-12 05:43:00    2017-05-12 05:43:00
89543    30435    724    2017-05-12 22:37:00    2017-05-12 22:37:00
89544    30435    724    2017-05-12 06:03:00    2017-05-12 06:03:00
89545    30436    756    2017-05-12 07:01:00    2017-05-12 07:01:00
89546    30436    904    2017-05-12 05:36:00    2017-05-12 05:36:00
89547    30436    564    2017-05-12 04:17:00    2017-05-12 04:17:00
89548    30436    496    2017-05-12 14:55:00    2017-05-12 14:55:00
89549    30436    864    2017-05-12 10:18:00    2017-05-12 10:18:00
89550    30437    593    2017-05-12 17:14:00    2017-05-12 17:14:00
89551    30437    802    2017-05-12 20:26:00    2017-05-12 20:26:00
89552    30437    785    2017-05-12 20:24:00    2017-05-12 20:24:00
89553    30437    858    2017-05-12 17:25:00    2017-05-12 17:25:00
89554    30437    934    2017-05-12 19:09:00    2017-05-12 19:09:00
89555    30438    824    2017-05-12 14:45:00    2017-05-12 14:45:00
89556    30438    704    2017-05-12 17:23:00    2017-05-12 17:23:00
89557    30438    720    2017-05-12 15:10:00    2017-05-12 15:10:00
89558    30438    565    2017-05-12 11:45:00    2017-05-12 11:45:00
89559    30438    754    2017-05-12 17:24:00    2017-05-12 17:24:00
89560    30439    590    2017-05-12 06:27:00    2017-05-12 06:27:00
89561    30439    573    2017-05-12 12:44:00    2017-05-12 12:44:00
89562    30439    472    2017-05-12 07:15:00    2017-05-12 07:15:00
89563    30439    821    2017-05-12 07:55:00    2017-05-12 07:55:00
89564    30439    508    2017-05-12 04:45:00    2017-05-12 04:45:00
89565    30440    501    2017-05-12 08:06:00    2017-05-12 08:06:00
89566    30440    779    2017-05-12 18:24:00    2017-05-12 18:24:00
89567    30440    957    2017-05-12 03:35:00    2017-05-12 03:35:00
89568    30440    936    2017-05-12 07:22:00    2017-05-12 07:22:00
89569    30440    788    2017-05-12 13:55:00    2017-05-12 13:55:00
89570    30441    755    2017-05-12 07:01:00    2017-05-12 07:01:00
89571    30441    796    2017-05-12 21:21:00    2017-05-12 21:21:00
89572    30441    644    2017-05-12 07:45:00    2017-05-12 07:45:00
89573    30441    719    2017-05-12 19:04:00    2017-05-12 19:04:00
89574    30441    744    2017-05-12 15:31:00    2017-05-12 15:31:00
89575    30442    807    2017-05-12 18:08:00    2017-05-12 18:08:00
89576    30442    528    2017-05-12 21:37:00    2017-05-12 21:37:00
89577    30442    535    2017-05-12 22:46:00    2017-05-12 22:46:00
89578    30442    553    2017-05-12 19:20:00    2017-05-12 19:20:00
89579    30442    652    2017-05-12 01:58:00    2017-05-12 01:58:00
89580    30443    952    2017-05-12 02:30:00    2017-05-12 02:30:00
89581    30443    605    2017-05-12 15:50:00    2017-05-12 15:50:00
89582    30443    517    2017-05-12 18:24:00    2017-05-12 18:24:00
89583    30443    772    2017-05-12 15:13:00    2017-05-12 15:13:00
89584    30443    892    2017-05-12 13:11:00    2017-05-12 13:11:00
89585    30444    510    2017-05-12 05:51:00    2017-05-12 05:51:00
89586    30444    661    2017-05-12 07:42:00    2017-05-12 07:42:00
89587    30444    893    2017-05-12 06:55:00    2017-05-12 06:55:00
89588    30444    570    2017-05-12 11:34:00    2017-05-12 11:34:00
89589    30444    685    2017-05-12 23:46:00    2017-05-12 23:46:00
89590    30445    643    2017-05-12 17:05:00    2017-05-12 17:05:00
89591    30445    689    2017-05-12 05:40:00    2017-05-12 05:40:00
89592    30445    793    2017-05-12 21:46:00    2017-05-12 21:46:00
89593    30445    617    2017-05-12 11:33:00    2017-05-12 11:33:00
89594    30445    784    2017-05-12 11:00:00    2017-05-12 11:00:00
89595    30446    793    2017-05-13 23:37:00    2017-05-13 23:37:00
89596    30446    717    2017-05-13 17:55:00    2017-05-13 17:55:00
89597    30446    926    2017-05-13 23:20:00    2017-05-13 23:20:00
89598    30446    878    2017-05-13 04:41:00    2017-05-13 04:41:00
89599    30446    613    2017-05-13 04:21:00    2017-05-13 04:21:00
89600    30447    588    2017-05-13 06:32:00    2017-05-13 06:32:00
89601    30447    481    2017-05-13 06:01:00    2017-05-13 06:01:00
89602    30447    584    2017-05-13 02:04:00    2017-05-13 02:04:00
89603    30447    753    2017-05-13 03:11:00    2017-05-13 03:11:00
89604    30447    742    2017-05-13 11:05:00    2017-05-13 11:05:00
89605    30448    677    2017-05-13 02:38:00    2017-05-13 02:38:00
89606    30448    603    2017-05-13 18:27:00    2017-05-13 18:27:00
89607    30448    687    2017-05-13 01:05:00    2017-05-13 01:05:00
89608    30448    858    2017-05-13 18:37:00    2017-05-13 18:37:00
89609    30448    806    2017-05-13 06:46:00    2017-05-13 06:46:00
89610    30449    932    2017-05-13 16:58:00    2017-05-13 16:58:00
89611    30449    727    2017-05-13 17:44:00    2017-05-13 17:44:00
89612    30449    776    2017-05-13 14:26:00    2017-05-13 14:26:00
89613    30449    497    2017-05-13 21:16:00    2017-05-13 21:16:00
89614    30449    936    2017-05-13 05:12:00    2017-05-13 05:12:00
89615    30450    845    2017-05-13 07:25:00    2017-05-13 07:25:00
89616    30450    951    2017-05-13 08:46:00    2017-05-13 08:46:00
89617    30450    833    2017-05-13 05:43:00    2017-05-13 05:43:00
89618    30450    539    2017-05-13 07:12:00    2017-05-13 07:12:00
89619    30450    571    2017-05-13 08:52:00    2017-05-13 08:52:00
89620    30451    494    2017-05-13 08:54:00    2017-05-13 08:54:00
89621    30451    832    2017-05-13 13:24:00    2017-05-13 13:24:00
89622    30451    565    2017-05-13 04:25:00    2017-05-13 04:25:00
89623    30451    847    2017-05-13 18:55:00    2017-05-13 18:55:00
89624    30451    500    2017-05-13 09:20:00    2017-05-13 09:20:00
89625    30452    715    2017-05-13 23:47:00    2017-05-13 23:47:00
89626    30452    607    2017-05-13 19:40:00    2017-05-13 19:40:00
89627    30452    624    2017-05-13 18:29:00    2017-05-13 18:29:00
89628    30452    780    2017-05-13 05:18:00    2017-05-13 05:18:00
89629    30452    821    2017-05-13 03:39:00    2017-05-13 03:39:00
89630    30453    707    2017-05-13 07:52:00    2017-05-13 07:52:00
89631    30453    529    2017-05-13 07:47:00    2017-05-13 07:47:00
89632    30453    816    2017-05-13 01:24:00    2017-05-13 01:24:00
89633    30453    892    2017-05-13 14:34:00    2017-05-13 14:34:00
89634    30453    939    2017-05-13 07:57:00    2017-05-13 07:57:00
89635    30454    686    2017-05-13 23:01:00    2017-05-13 23:01:00
89636    30454    603    2017-05-13 18:36:00    2017-05-13 18:36:00
89637    30454    726    2017-05-13 09:37:00    2017-05-13 09:37:00
89638    30454    877    2017-05-13 15:33:00    2017-05-13 15:33:00
89639    30454    924    2017-05-13 15:06:00    2017-05-13 15:06:00
89640    30455    754    2017-05-13 17:48:00    2017-05-13 17:48:00
89641    30455    885    2017-05-13 08:05:00    2017-05-13 08:05:00
89642    30455    923    2017-05-13 08:48:00    2017-05-13 08:48:00
89643    30455    911    2017-05-13 17:09:00    2017-05-13 17:09:00
89644    30455    640    2017-05-13 18:15:00    2017-05-13 18:15:00
89645    30456    814    2017-05-13 19:58:00    2017-05-13 19:58:00
89646    30456    485    2017-05-13 10:05:00    2017-05-13 10:05:00
89647    30456    660    2017-05-13 07:57:00    2017-05-13 07:57:00
89648    30456    659    2017-05-13 10:14:00    2017-05-13 10:14:00
89649    30456    500    2017-05-13 07:53:00    2017-05-13 07:53:00
89650    30457    621    2017-05-13 19:45:00    2017-05-13 19:45:00
89651    30457    907    2017-05-13 20:23:00    2017-05-13 20:23:00
89652    30457    742    2017-05-13 14:25:00    2017-05-13 14:25:00
89653    30457    649    2017-05-13 16:55:00    2017-05-13 16:55:00
89654    30457    680    2017-05-13 01:01:00    2017-05-13 01:01:00
89655    30458    558    2017-05-13 02:56:00    2017-05-13 02:56:00
89656    30458    591    2017-05-13 17:53:00    2017-05-13 17:53:00
89657    30458    834    2017-05-13 17:50:00    2017-05-13 17:50:00
89658    30458    811    2017-05-13 04:52:00    2017-05-13 04:52:00
89659    30458    586    2017-05-13 08:47:00    2017-05-13 08:47:00
89660    30459    874    2017-05-13 14:25:00    2017-05-13 14:25:00
89661    30459    732    2017-05-13 07:41:00    2017-05-13 07:41:00
89662    30459    578    2017-05-13 07:49:00    2017-05-13 07:49:00
89663    30459    604    2017-05-13 16:04:00    2017-05-13 16:04:00
89664    30459    646    2017-05-13 10:46:00    2017-05-13 10:46:00
89665    30460    883    2017-05-13 20:42:00    2017-05-13 20:42:00
89666    30460    932    2017-05-13 16:04:00    2017-05-13 16:04:00
89667    30460    716    2017-05-13 03:02:00    2017-05-13 03:02:00
89668    30460    662    2017-05-13 20:35:00    2017-05-13 20:35:00
89669    30460    917    2017-05-13 23:18:00    2017-05-13 23:18:00
89670    30461    470    2017-05-13 20:12:00    2017-05-13 20:12:00
89671    30461    746    2017-05-13 03:31:00    2017-05-13 03:31:00
89672    30461    801    2017-05-13 16:14:00    2017-05-13 16:14:00
89673    30461    761    2017-05-13 18:11:00    2017-05-13 18:11:00
89674    30461    771    2017-05-13 15:32:00    2017-05-13 15:32:00
89675    30462    884    2017-05-13 07:10:00    2017-05-13 07:10:00
89676    30462    862    2017-05-13 10:23:00    2017-05-13 10:23:00
89677    30462    738    2017-05-13 07:11:00    2017-05-13 07:11:00
89678    30462    821    2017-05-13 14:53:00    2017-05-13 14:53:00
89679    30462    464    2017-05-13 14:09:00    2017-05-13 14:09:00
89680    30463    894    2017-05-13 08:48:00    2017-05-13 08:48:00
89681    30463    710    2017-05-13 18:06:00    2017-05-13 18:06:00
89682    30463    953    2017-05-13 03:06:00    2017-05-13 03:06:00
89683    30463    693    2017-05-13 16:21:00    2017-05-13 16:21:00
89684    30463    596    2017-05-13 16:46:00    2017-05-13 16:46:00
89685    30464    954    2017-05-13 22:59:00    2017-05-13 22:59:00
89686    30464    569    2017-05-13 03:45:00    2017-05-13 03:45:00
89687    30464    811    2017-05-13 11:42:00    2017-05-13 11:42:00
89688    30464    517    2017-05-13 15:26:00    2017-05-13 15:26:00
89689    30464    955    2017-05-13 22:13:00    2017-05-13 22:13:00
89690    30465    619    2017-05-13 12:40:00    2017-05-13 12:40:00
89691    30465    916    2017-05-13 13:10:00    2017-05-13 13:10:00
89692    30465    575    2017-05-13 07:25:00    2017-05-13 07:25:00
89693    30465    946    2017-05-13 21:18:00    2017-05-13 21:18:00
89694    30465    758    2017-05-13 06:32:00    2017-05-13 06:32:00
89696    30466    470    2017-05-13 09:21:00    2017-05-13 09:21:00
89697    30466    759    2017-05-13 06:53:00    2017-05-13 06:53:00
89698    30466    899    2017-05-13 16:14:00    2017-05-13 16:14:00
89699    30466    733    2017-05-13 08:15:00    2017-05-13 08:15:00
89700    30467    779    2017-05-13 05:58:00    2017-05-13 05:58:00
89701    30467    749    2017-05-13 17:38:00    2017-05-13 17:38:00
89702    30467    858    2017-05-13 22:39:00    2017-05-13 22:39:00
89703    30467    495    2017-05-13 01:12:00    2017-05-13 01:12:00
89704    30467    580    2017-05-13 22:34:00    2017-05-13 22:34:00
89705    30468    831    2017-05-13 04:57:00    2017-05-13 04:57:00
89706    30468    718    2017-05-13 23:55:00    2017-05-13 23:55:00
89707    30468    683    2017-05-13 23:19:00    2017-05-13 23:19:00
89708    30468    909    2017-05-13 18:12:00    2017-05-13 18:12:00
89709    30468    948    2017-05-13 04:01:00    2017-05-13 04:01:00
89710    30469    492    2017-05-13 13:10:00    2017-05-13 13:10:00
89711    30469    916    2017-05-13 05:53:00    2017-05-13 05:53:00
89712    30469    607    2017-05-13 21:17:00    2017-05-13 21:17:00
89713    30469    692    2017-05-13 12:40:00    2017-05-13 12:40:00
89714    30469    956    2017-05-13 18:39:00    2017-05-13 18:39:00
89715    30470    872    2017-05-13 05:35:00    2017-05-13 05:35:00
89716    30470    953    2017-05-13 02:41:00    2017-05-13 02:41:00
89717    30470    621    2017-05-13 14:00:00    2017-05-13 14:00:00
89718    30470    472    2017-05-13 08:52:00    2017-05-13 08:52:00
89719    30470    689    2017-05-13 14:02:00    2017-05-13 14:02:00
89720    30471    952    2017-05-13 11:25:00    2017-05-13 11:25:00
89721    30471    662    2017-05-13 07:38:00    2017-05-13 07:38:00
89722    30471    805    2017-05-13 07:34:00    2017-05-13 07:34:00
89723    30471    648    2017-05-13 21:41:00    2017-05-13 21:41:00
89724    30471    911    2017-05-13 06:21:00    2017-05-13 06:21:00
89725    30472    873    2017-05-13 10:39:00    2017-05-13 10:39:00
89726    30472    566    2017-05-13 04:15:00    2017-05-13 04:15:00
89727    30472    801    2017-05-13 17:04:00    2017-05-13 17:04:00
89728    30472    528    2017-05-13 17:32:00    2017-05-13 17:32:00
89729    30472    843    2017-05-13 11:08:00    2017-05-13 11:08:00
89730    30473    691    2017-05-13 14:10:00    2017-05-13 14:10:00
89731    30473    561    2017-05-13 14:36:00    2017-05-13 14:36:00
89732    30473    659    2017-05-13 15:53:00    2017-05-13 15:53:00
89733    30473    574    2017-05-13 06:24:00    2017-05-13 06:24:00
89734    30473    765    2017-05-13 05:59:00    2017-05-13 05:59:00
89735    30474    864    2017-05-14 00:00:00    2017-05-14 00:00:00
89736    30474    624    2017-05-13 07:24:00    2017-05-13 07:24:00
89737    30474    781    2017-05-13 13:31:00    2017-05-13 13:31:00
89738    30474    609    2017-05-13 20:02:00    2017-05-13 20:02:00
89739    30474    583    2017-05-13 06:50:00    2017-05-13 06:50:00
89740    30475    788    2017-05-13 08:08:00    2017-05-13 08:08:00
89741    30475    882    2017-05-13 08:06:00    2017-05-13 08:06:00
89742    30475    749    2017-05-13 13:07:00    2017-05-13 13:07:00
89743    30475    639    2017-05-13 15:48:00    2017-05-13 15:48:00
89744    30475    778    2017-05-13 22:19:00    2017-05-13 22:19:00
89745    30476    954    2017-05-13 20:19:00    2017-05-13 20:19:00
89746    30476    631    2017-05-13 07:36:00    2017-05-13 07:36:00
89747    30476    705    2017-05-13 21:39:00    2017-05-13 21:39:00
89748    30476    895    2017-05-13 14:19:00    2017-05-13 14:19:00
89749    30476    588    2017-05-13 05:15:00    2017-05-13 05:15:00
89750    30477    867    2017-05-13 12:24:00    2017-05-13 12:24:00
89751    30477    786    2017-05-13 03:10:00    2017-05-13 03:10:00
89752    30477    946    2017-05-13 21:00:00    2017-05-13 21:00:00
89753    30477    817    2017-05-13 03:58:00    2017-05-13 03:58:00
89754    30477    772    2017-05-13 23:16:00    2017-05-13 23:16:00
89755    30478    659    2017-05-14 08:48:00    2017-05-14 08:48:00
89756    30478    795    2017-05-14 12:07:00    2017-05-14 12:07:00
89757    30478    905    2017-05-14 12:14:00    2017-05-14 12:14:00
89758    30478    617    2017-05-14 13:34:00    2017-05-14 13:34:00
89759    30478    508    2017-05-14 11:47:00    2017-05-14 11:47:00
89760    30479    640    2017-05-14 22:00:00    2017-05-14 22:00:00
89761    30479    620    2017-05-14 01:24:00    2017-05-14 01:24:00
89762    30479    467    2017-05-14 16:10:00    2017-05-14 16:10:00
89763    30479    817    2017-05-14 11:19:00    2017-05-14 11:19:00
89764    30479    738    2017-05-14 13:33:00    2017-05-14 13:33:00
89765    30480    666    2017-05-14 02:59:00    2017-05-14 02:59:00
89766    30480    768    2017-05-14 23:45:00    2017-05-14 23:45:00
89767    30480    579    2017-05-14 10:02:00    2017-05-14 10:02:00
89768    30480    861    2017-05-14 23:13:00    2017-05-14 23:13:00
89769    30480    588    2017-05-14 09:52:00    2017-05-14 09:52:00
89770    30481    735    2017-05-14 20:50:00    2017-05-14 20:50:00
89771    30481    522    2017-05-14 14:21:00    2017-05-14 14:21:00
89772    30481    847    2017-05-14 10:41:00    2017-05-14 10:41:00
89773    30481    679    2017-05-14 19:52:00    2017-05-14 19:52:00
89774    30481    777    2017-05-14 23:14:00    2017-05-14 23:14:00
89775    30482    501    2017-05-14 16:28:00    2017-05-14 16:28:00
89776    30482    747    2017-05-14 05:42:00    2017-05-14 05:42:00
89777    30482    560    2017-05-14 02:13:00    2017-05-14 02:13:00
89778    30482    659    2017-05-14 08:08:00    2017-05-14 08:08:00
89779    30482    728    2017-05-14 02:56:00    2017-05-14 02:56:00
89780    30483    909    2017-05-14 18:32:00    2017-05-14 18:32:00
89781    30483    903    2017-05-14 09:35:00    2017-05-14 09:35:00
89782    30483    863    2017-05-14 23:17:00    2017-05-14 23:17:00
89783    30483    932    2017-05-14 14:35:00    2017-05-14 14:35:00
89784    30483    716    2017-05-14 07:42:00    2017-05-14 07:42:00
89785    30484    867    2017-05-14 09:50:00    2017-05-14 09:50:00
89786    30484    810    2017-05-14 09:41:00    2017-05-14 09:41:00
89787    30484    651    2017-05-14 13:43:00    2017-05-14 13:43:00
89788    30484    933    2017-05-14 17:24:00    2017-05-14 17:24:00
89789    30484    829    2017-05-14 15:50:00    2017-05-14 15:50:00
89790    30485    527    2017-05-14 19:51:00    2017-05-14 19:51:00
89791    30485    646    2017-05-14 22:46:00    2017-05-14 22:46:00
89792    30485    662    2017-05-14 02:01:00    2017-05-14 02:01:00
89793    30485    582    2017-05-14 10:17:00    2017-05-14 10:17:00
89794    30485    635    2017-05-14 05:07:00    2017-05-14 05:07:00
89795    30486    668    2017-05-14 19:29:00    2017-05-14 19:29:00
89796    30486    718    2017-05-14 11:13:00    2017-05-14 11:13:00
89797    30486    931    2017-05-14 19:11:00    2017-05-14 19:11:00
89798    30486    707    2017-05-14 21:23:00    2017-05-14 21:23:00
89799    30486    885    2017-05-14 05:28:00    2017-05-14 05:28:00
89800    30487    503    2017-05-14 17:00:00    2017-05-14 17:00:00
89801    30487    705    2017-05-14 07:30:00    2017-05-14 07:30:00
89802    30487    793    2017-05-14 06:19:00    2017-05-14 06:19:00
89803    30487    778    2017-05-14 05:24:00    2017-05-14 05:24:00
89804    30487    567    2017-05-14 11:09:00    2017-05-14 11:09:00
89805    30488    958    2017-05-14 23:07:00    2017-05-14 23:07:00
89806    30488    840    2017-05-14 05:28:00    2017-05-14 05:28:00
89807    30488    570    2017-05-14 07:25:00    2017-05-14 07:25:00
89808    30488    496    2017-05-14 07:59:00    2017-05-14 07:59:00
89809    30488    916    2017-05-14 15:07:00    2017-05-14 15:07:00
89810    30489    681    2017-05-14 03:03:00    2017-05-14 03:03:00
89811    30489    599    2017-05-14 06:07:00    2017-05-14 06:07:00
89812    30489    518    2017-05-14 09:16:00    2017-05-14 09:16:00
89813    30489    940    2017-05-14 07:22:00    2017-05-14 07:22:00
89814    30489    507    2017-05-14 01:29:00    2017-05-14 01:29:00
89815    30490    681    2017-05-14 13:18:00    2017-05-14 13:18:00
89816    30490    881    2017-05-14 06:38:00    2017-05-14 06:38:00
89817    30490    621    2017-05-14 14:37:00    2017-05-14 14:37:00
89818    30490    545    2017-05-14 23:35:00    2017-05-14 23:35:00
89819    30490    504    2017-05-14 12:24:00    2017-05-14 12:24:00
89820    30491    796    2017-05-14 12:09:00    2017-05-14 12:09:00
89821    30491    545    2017-05-14 22:15:00    2017-05-14 22:15:00
89822    30491    493    2017-05-14 22:01:00    2017-05-14 22:01:00
89823    30491    521    2017-05-14 18:36:00    2017-05-14 18:36:00
89824    30491    684    2017-05-14 11:25:00    2017-05-14 11:25:00
89825    30492    686    2017-05-14 15:22:00    2017-05-14 15:22:00
89826    30492    918    2017-05-14 09:09:00    2017-05-14 09:09:00
89827    30492    916    2017-05-14 11:30:00    2017-05-14 11:30:00
89828    30492    922    2017-05-14 08:51:00    2017-05-14 08:51:00
89829    30492    616    2017-05-14 16:00:00    2017-05-14 16:00:00
89830    30493    906    2017-05-14 20:57:00    2017-05-14 20:57:00
89831    30493    893    2017-05-14 16:54:00    2017-05-14 16:54:00
89832    30493    778    2017-05-14 07:36:00    2017-05-14 07:36:00
89833    30493    559    2017-05-14 22:14:00    2017-05-14 22:14:00
89834    30493    945    2017-05-14 13:48:00    2017-05-14 13:48:00
89835    30494    945    2017-05-14 07:38:00    2017-05-14 07:38:00
89836    30494    881    2017-05-14 14:35:00    2017-05-14 14:35:00
89837    30494    664    2017-05-14 10:17:00    2017-05-14 10:17:00
89838    30494    579    2017-05-14 13:50:00    2017-05-14 13:50:00
89839    30494    764    2017-05-14 11:00:00    2017-05-14 11:00:00
89840    30495    752    2017-05-14 10:43:00    2017-05-14 10:43:00
89841    30495    700    2017-05-14 18:50:00    2017-05-14 18:50:00
89842    30495    694    2017-05-14 18:30:00    2017-05-14 18:30:00
89843    30495    910    2017-05-14 23:45:00    2017-05-14 23:45:00
89844    30495    952    2017-05-14 06:14:00    2017-05-14 06:14:00
89845    30496    781    2017-05-14 09:40:00    2017-05-14 09:40:00
89846    30496    785    2017-05-14 02:52:00    2017-05-14 02:52:00
89847    30496    735    2017-05-14 08:17:00    2017-05-14 08:17:00
89848    30496    900    2017-05-14 16:37:00    2017-05-14 16:37:00
89849    30496    560    2017-05-14 08:29:00    2017-05-14 08:29:00
89850    30497    649    2017-05-14 19:04:00    2017-05-14 19:04:00
89851    30497    541    2017-05-14 20:37:00    2017-05-14 20:37:00
89852    30497    952    2017-05-14 01:42:00    2017-05-14 01:42:00
89853    30497    778    2017-05-14 06:45:00    2017-05-14 06:45:00
89854    30497    552    2017-05-14 06:17:00    2017-05-14 06:17:00
89855    30498    523    2017-05-14 01:38:00    2017-05-14 01:38:00
89856    30498    552    2017-05-14 15:28:00    2017-05-14 15:28:00
89857    30498    841    2017-05-14 11:24:00    2017-05-14 11:24:00
89858    30498    810    2017-05-14 18:08:00    2017-05-14 18:08:00
89859    30498    498    2017-05-14 14:00:00    2017-05-14 14:00:00
89860    30499    568    2017-05-14 17:14:00    2017-05-14 17:14:00
89861    30499    477    2017-05-14 12:14:00    2017-05-14 12:14:00
89862    30499    813    2017-05-14 11:14:00    2017-05-14 11:14:00
89863    30499    677    2017-05-14 22:34:00    2017-05-14 22:34:00
89864    30499    915    2017-05-14 10:38:00    2017-05-14 10:38:00
89865    30500    951    2017-05-14 06:50:00    2017-05-14 06:50:00
89866    30500    497    2017-05-14 09:58:00    2017-05-14 09:58:00
89867    30500    629    2017-05-14 16:22:00    2017-05-14 16:22:00
89868    30500    506    2017-05-14 05:23:00    2017-05-14 05:23:00
89869    30500    521    2017-05-14 01:40:00    2017-05-14 01:40:00
89870    30501    604    2017-05-14 08:57:00    2017-05-14 08:57:00
89871    30501    817    2017-05-14 06:33:00    2017-05-14 06:33:00
89872    30501    863    2017-05-14 10:59:00    2017-05-14 10:59:00
89873    30501    756    2017-05-14 05:28:00    2017-05-14 05:28:00
89874    30501    702    2017-05-14 12:25:00    2017-05-14 12:25:00
89875    30502    887    2017-05-14 03:51:00    2017-05-14 03:51:00
89876    30502    774    2017-05-14 07:05:00    2017-05-14 07:05:00
89877    30502    652    2017-05-14 01:21:00    2017-05-14 01:21:00
89878    30502    583    2017-05-14 22:00:00    2017-05-14 22:00:00
89879    30502    675    2017-05-14 21:52:00    2017-05-14 21:52:00
89880    30503    650    2017-05-14 19:34:00    2017-05-14 19:34:00
89881    30503    518    2017-05-14 16:48:00    2017-05-14 16:48:00
89882    30503    716    2017-05-14 03:08:00    2017-05-14 03:08:00
89883    30503    760    2017-05-14 18:36:00    2017-05-14 18:36:00
89884    30503    782    2017-05-14 13:28:00    2017-05-14 13:28:00
89885    30504    704    2017-05-14 07:45:00    2017-05-14 07:45:00
89886    30504    591    2017-05-14 05:46:00    2017-05-14 05:46:00
89887    30504    548    2017-05-14 09:29:00    2017-05-14 09:29:00
89888    30504    587    2017-05-14 17:09:00    2017-05-14 17:09:00
89889    30504    753    2017-05-14 01:29:00    2017-05-14 01:29:00
89890    30505    664    2017-05-14 16:47:00    2017-05-14 16:47:00
89891    30505    669    2017-05-14 02:43:00    2017-05-14 02:43:00
89892    30505    871    2017-05-14 12:22:00    2017-05-14 12:22:00
89893    30505    716    2017-05-14 06:07:00    2017-05-14 06:07:00
89894    30505    498    2017-05-14 02:06:00    2017-05-14 02:06:00
89895    30506    766    2017-05-14 18:49:00    2017-05-14 18:49:00
89896    30506    744    2017-05-14 05:03:00    2017-05-14 05:03:00
89897    30506    782    2017-05-14 14:46:00    2017-05-14 14:46:00
89898    30506    918    2017-05-14 12:06:00    2017-05-14 12:06:00
89899    30506    559    2017-05-14 14:34:00    2017-05-14 14:34:00
89900    30507    853    2017-05-14 07:31:00    2017-05-14 07:31:00
89901    30507    522    2017-05-14 14:18:00    2017-05-14 14:18:00
89902    30507    948    2017-05-14 14:37:00    2017-05-14 14:37:00
89903    30507    858    2017-05-14 09:43:00    2017-05-14 09:43:00
89904    30507    641    2017-05-14 07:50:00    2017-05-14 07:50:00
89905    30508    953    2017-05-14 01:09:00    2017-05-14 01:09:00
89906    30508    819    2017-05-14 09:53:00    2017-05-14 09:53:00
89907    30508    720    2017-05-14 21:36:00    2017-05-14 21:36:00
89908    30508    673    2017-05-14 05:05:00    2017-05-14 05:05:00
89909    30508    798    2017-05-14 16:01:00    2017-05-14 16:01:00
89910    30509    790    2017-05-14 14:16:00    2017-05-14 14:16:00
89911    30509    641    2017-05-14 02:06:00    2017-05-14 02:06:00
89912    30509    953    2017-05-14 07:54:00    2017-05-14 07:54:00
89913    30509    514    2017-05-14 13:19:00    2017-05-14 13:19:00
89914    30509    762    2017-05-14 12:50:00    2017-05-14 12:50:00
89915    30510    503    2017-05-14 09:33:00    2017-05-14 09:33:00
89916    30510    470    2017-05-14 09:43:00    2017-05-14 09:43:00
89917    30510    563    2017-05-14 06:40:00    2017-05-14 06:40:00
89918    30510    952    2017-05-14 14:11:00    2017-05-14 14:11:00
89919    30510    784    2017-05-14 21:51:00    2017-05-14 21:51:00
89920    30511    485    2017-05-14 20:54:00    2017-05-14 20:54:00
89921    30511    809    2017-05-14 01:22:00    2017-05-14 01:22:00
89922    30511    650    2017-05-14 07:30:00    2017-05-14 07:30:00
89923    30511    957    2017-05-14 02:07:00    2017-05-14 02:07:00
89924    30511    550    2017-05-14 20:37:00    2017-05-14 20:37:00
89925    30512    605    2017-05-14 10:45:00    2017-05-14 10:45:00
89926    30512    793    2017-05-14 20:09:00    2017-05-14 20:09:00
89927    30512    913    2017-05-14 10:42:00    2017-05-14 10:42:00
89928    30512    645    2017-05-14 06:46:00    2017-05-14 06:46:00
89929    30512    563    2017-05-14 20:49:00    2017-05-14 20:49:00
89930    30513    773    2017-05-14 09:47:00    2017-05-14 09:47:00
89931    30513    610    2017-05-14 23:57:00    2017-05-14 23:57:00
89932    30513    920    2017-05-14 16:36:00    2017-05-14 16:36:00
89933    30513    464    2017-05-14 05:47:00    2017-05-14 05:47:00
89934    30513    882    2017-05-14 08:26:00    2017-05-14 08:26:00
89935    30514    806    2017-05-14 13:03:00    2017-05-14 13:03:00
89936    30514    862    2017-05-14 07:52:00    2017-05-14 07:52:00
89937    30514    474    2017-05-14 04:22:00    2017-05-14 04:22:00
89938    30514    738    2017-05-14 04:39:00    2017-05-14 04:39:00
89939    30514    803    2017-05-14 18:18:00    2017-05-14 18:18:00
89940    30515    943    2017-05-14 13:57:00    2017-05-14 13:57:00
89941    30515    717    2017-05-14 12:42:00    2017-05-14 12:42:00
89942    30515    521    2017-05-14 04:40:00    2017-05-14 04:40:00
89943    30515    932    2017-05-14 20:42:00    2017-05-14 20:42:00
89944    30515    956    2017-05-14 02:39:00    2017-05-14 02:39:00
89945    30516    517    2017-05-14 06:00:00    2017-05-14 06:00:00
89946    30516    703    2017-05-14 20:08:00    2017-05-14 20:08:00
89947    30516    526    2017-05-14 04:39:00    2017-05-14 04:39:00
89948    30516    931    2017-05-14 11:08:00    2017-05-14 11:08:00
89949    30516    770    2017-05-14 06:51:00    2017-05-14 06:51:00
89950    30517    839    2017-05-14 12:56:00    2017-05-14 12:56:00
89951    30517    568    2017-05-14 02:55:00    2017-05-14 02:55:00
89952    30517    878    2017-05-14 04:10:00    2017-05-14 04:10:00
89953    30517    626    2017-05-14 21:17:00    2017-05-14 21:17:00
89954    30517    845    2017-05-14 07:30:00    2017-05-14 07:30:00
89955    30518    539    2017-05-14 14:45:00    2017-05-14 14:45:00
89956    30518    527    2017-05-14 04:08:00    2017-05-14 04:08:00
89957    30518    679    2017-05-14 01:59:00    2017-05-14 01:59:00
89958    30518    630    2017-05-14 19:28:00    2017-05-14 19:28:00
89959    30518    716    2017-05-14 21:25:00    2017-05-14 21:25:00
89960    30519    758    2017-05-14 09:36:00    2017-05-14 09:36:00
89961    30519    562    2017-05-14 07:29:00    2017-05-14 07:29:00
89962    30519    684    2017-05-14 21:42:00    2017-05-14 21:42:00
89963    30519    800    2017-05-14 12:07:00    2017-05-14 12:07:00
89964    30519    740    2017-05-14 12:54:00    2017-05-14 12:54:00
89965    30520    826    2017-05-14 18:10:00    2017-05-14 18:10:00
89966    30520    764    2017-05-14 14:22:00    2017-05-14 14:22:00
89967    30520    705    2017-05-14 03:28:00    2017-05-14 03:28:00
89968    30520    508    2017-05-14 18:13:00    2017-05-14 18:13:00
89969    30520    552    2017-05-14 12:53:00    2017-05-14 12:53:00
89970    30521    943    2017-05-14 10:46:00    2017-05-14 10:46:00
89971    30521    615    2017-05-14 10:07:00    2017-05-14 10:07:00
89972    30521    590    2017-05-14 03:52:00    2017-05-14 03:52:00
89973    30521    862    2017-05-14 07:09:00    2017-05-14 07:09:00
89974    30521    492    2017-05-14 05:44:00    2017-05-14 05:44:00
89975    30522    773    2017-05-14 10:07:00    2017-05-14 10:07:00
89976    30522    910    2017-05-14 22:41:00    2017-05-14 22:41:00
89977    30522    491    2017-05-14 19:58:00    2017-05-14 19:58:00
89978    30522    833    2017-05-14 03:31:00    2017-05-14 03:31:00
89979    30522    780    2017-05-14 14:00:00    2017-05-14 14:00:00
89980    30523    486    2017-05-14 13:56:00    2017-05-14 13:56:00
89981    30523    735    2017-05-14 23:23:00    2017-05-14 23:23:00
89982    30523    735    2017-05-14 08:03:00    2017-05-14 08:03:00
89983    30523    504    2017-05-14 22:05:00    2017-05-14 22:05:00
89984    30523    836    2017-05-14 19:38:00    2017-05-14 19:38:00
89985    30524    672    2017-05-14 01:29:00    2017-05-14 01:29:00
89986    30524    596    2017-05-14 14:56:00    2017-05-14 14:56:00
89987    30524    504    2017-05-14 21:02:00    2017-05-14 21:02:00
89988    30524    887    2017-05-14 03:29:00    2017-05-14 03:29:00
89989    30524    771    2017-05-14 01:45:00    2017-05-14 01:45:00
89990    30525    917    2017-05-14 19:30:00    2017-05-14 19:30:00
89991    30525    628    2017-05-14 21:43:00    2017-05-14 21:43:00
89992    30525    804    2017-05-14 14:27:00    2017-05-14 14:27:00
89993    30525    933    2017-05-14 13:40:00    2017-05-14 13:40:00
89994    30525    847    2017-05-14 03:44:00    2017-05-14 03:44:00
89995    30526    828    2017-05-14 01:40:00    2017-05-14 01:40:00
89996    30526    781    2017-05-14 16:43:00    2017-05-14 16:43:00
89997    30526    741    2017-05-14 16:28:00    2017-05-14 16:28:00
89998    30526    913    2017-05-14 10:08:00    2017-05-14 10:08:00
89999    30526    486    2017-05-14 02:13:00    2017-05-14 02:13:00
90000    30527    476    2017-05-14 23:36:00    2017-05-14 23:36:00
90001    30527    871    2017-05-14 13:23:00    2017-05-14 13:23:00
90002    30527    686    2017-05-14 10:46:00    2017-05-14 10:46:00
90003    30527    924    2017-05-14 05:34:00    2017-05-14 05:34:00
90004    30527    589    2017-05-14 22:27:00    2017-05-14 22:27:00
90005    30528    541    2017-05-14 20:25:00    2017-05-14 20:25:00
90006    30528    808    2017-05-14 01:42:00    2017-05-14 01:42:00
90007    30528    643    2017-05-14 21:47:00    2017-05-14 21:47:00
90008    30528    888    2017-05-14 04:08:00    2017-05-14 04:08:00
90009    30528    960    2017-05-14 06:34:00    2017-05-14 06:34:00
90010    30529    664    2017-05-14 11:24:00    2017-05-14 11:24:00
90011    30529    489    2017-05-14 05:35:00    2017-05-14 05:35:00
90012    30529    493    2017-05-14 05:39:00    2017-05-14 05:39:00
90013    30529    959    2017-05-14 04:37:00    2017-05-14 04:37:00
90014    30529    512    2017-05-14 23:31:00    2017-05-14 23:31:00
90015    30530    774    2017-05-14 17:28:00    2017-05-14 17:28:00
90016    30530    694    2017-05-14 12:00:00    2017-05-14 12:00:00
90017    30530    469    2017-05-14 22:33:00    2017-05-14 22:33:00
90018    30530    900    2017-05-14 01:28:00    2017-05-14 01:28:00
90019    30530    845    2017-05-14 21:39:00    2017-05-14 21:39:00
90020    30531    496    2017-05-14 21:33:00    2017-05-14 21:33:00
90021    30531    641    2017-05-14 03:10:00    2017-05-14 03:10:00
90022    30531    602    2017-05-14 05:46:00    2017-05-14 05:46:00
90023    30531    862    2017-05-14 15:30:00    2017-05-14 15:30:00
90024    30531    803    2017-05-14 10:00:00    2017-05-14 10:00:00
90025    30532    727    2017-05-14 04:59:00    2017-05-14 04:59:00
90026    30532    569    2017-05-14 03:20:00    2017-05-14 03:20:00
90027    30532    681    2017-05-14 17:54:00    2017-05-14 17:54:00
90028    30532    499    2017-05-14 14:03:00    2017-05-14 14:03:00
90029    30532    730    2017-05-14 05:50:00    2017-05-14 05:50:00
90030    30533    578    2017-05-14 07:13:00    2017-05-14 07:13:00
90031    30533    643    2017-05-14 10:52:00    2017-05-14 10:52:00
90032    30533    504    2017-05-14 06:07:00    2017-05-14 06:07:00
90033    30533    961    2017-05-14 01:24:00    2017-05-14 01:24:00
90034    30533    854    2017-05-14 13:16:00    2017-05-14 13:16:00
90035    30534    874    2017-05-14 23:34:00    2017-05-14 23:34:00
90036    30534    507    2017-05-14 12:33:00    2017-05-14 12:33:00
90037    30534    521    2017-05-14 17:54:00    2017-05-14 17:54:00
90038    30534    909    2017-05-14 08:38:00    2017-05-14 08:38:00
90039    30534    653    2017-05-14 22:00:00    2017-05-14 22:00:00
90040    30535    906    2017-05-14 13:42:00    2017-05-14 13:42:00
90041    30535    571    2017-05-14 01:50:00    2017-05-14 01:50:00
90042    30535    710    2017-05-14 16:39:00    2017-05-14 16:39:00
90043    30535    797    2017-05-14 15:06:00    2017-05-14 15:06:00
90044    30535    605    2017-05-14 20:26:00    2017-05-14 20:26:00
90045    30536    510    2017-05-14 01:36:00    2017-05-14 01:36:00
90046    30536    686    2017-05-14 22:43:00    2017-05-14 22:43:00
90047    30536    584    2017-05-14 03:06:00    2017-05-14 03:06:00
90048    30536    808    2017-05-14 10:18:00    2017-05-14 10:18:00
90049    30536    901    2017-05-14 02:22:00    2017-05-14 02:22:00
90050    30537    813    2017-05-14 02:50:00    2017-05-14 02:50:00
90051    30537    684    2017-05-14 18:50:00    2017-05-14 18:50:00
90052    30537    756    2017-05-14 12:33:00    2017-05-14 12:33:00
90053    30537    528    2017-05-14 12:11:00    2017-05-14 12:11:00
90054    30537    643    2017-05-14 08:41:00    2017-05-14 08:41:00
90055    30538    508    2017-05-14 16:17:00    2017-05-14 16:17:00
90056    30538    711    2017-05-14 19:55:00    2017-05-14 19:55:00
90057    30538    513    2017-05-14 10:16:00    2017-05-14 10:16:00
90058    30538    567    2017-05-14 02:46:00    2017-05-14 02:46:00
90059    30538    486    2017-05-14 04:31:00    2017-05-14 04:31:00
90060    30539    936    2017-05-14 02:09:00    2017-05-14 02:09:00
90061    30539    560    2017-05-14 01:20:00    2017-05-14 01:20:00
90062    30539    933    2017-05-14 17:52:00    2017-05-14 17:52:00
90063    30539    468    2017-05-14 23:40:00    2017-05-14 23:40:00
90064    30539    674    2017-05-14 19:39:00    2017-05-14 19:39:00
90065    30540    793    2017-05-14 11:50:00    2017-05-14 11:50:00
90066    30540    905    2017-05-14 04:31:00    2017-05-14 04:31:00
90067    30540    697    2017-05-14 20:04:00    2017-05-14 20:04:00
90068    30540    714    2017-05-14 23:22:00    2017-05-14 23:22:00
90069    30540    692    2017-05-14 09:00:00    2017-05-14 09:00:00
90070    30541    710    2017-05-14 09:52:00    2017-05-14 09:52:00
90071    30541    527    2017-05-14 07:43:00    2017-05-14 07:43:00
90072    30541    790    2017-05-14 19:33:00    2017-05-14 19:33:00
90073    30541    565    2017-05-14 10:24:00    2017-05-14 10:24:00
90074    30541    553    2017-05-14 17:59:00    2017-05-14 17:59:00
90075    30542    527    2017-05-14 19:30:00    2017-05-14 19:30:00
90076    30542    534    2017-05-14 10:52:00    2017-05-14 10:52:00
90077    30542    938    2017-05-14 12:07:00    2017-05-14 12:07:00
90078    30542    585    2017-05-14 17:53:00    2017-05-14 17:53:00
90079    30542    790    2017-05-14 17:56:00    2017-05-14 17:56:00
90080    30543    516    2017-05-14 04:52:00    2017-05-14 04:52:00
90081    30543    921    2017-05-14 09:01:00    2017-05-14 09:01:00
90082    30543    906    2017-05-14 09:36:00    2017-05-14 09:36:00
90083    30543    935    2017-05-14 11:17:00    2017-05-14 11:17:00
90084    30543    953    2017-05-14 07:55:00    2017-05-14 07:55:00
90085    30544    768    2017-05-14 14:35:00    2017-05-14 14:35:00
90086    30544    919    2017-05-14 23:40:00    2017-05-14 23:40:00
90087    30544    574    2017-05-14 03:20:00    2017-05-14 03:20:00
90088    30544    661    2017-05-14 19:17:00    2017-05-14 19:17:00
90089    30544    803    2017-05-14 09:58:00    2017-05-14 09:58:00
90090    30545    752    2017-05-14 05:07:00    2017-05-14 05:07:00
90091    30545    758    2017-05-14 05:41:00    2017-05-14 05:41:00
90092    30545    557    2017-05-14 07:14:00    2017-05-14 07:14:00
90093    30545    815    2017-05-14 03:54:00    2017-05-14 03:54:00
90094    30545    560    2017-05-14 07:35:00    2017-05-14 07:35:00
90095    30546    716    2017-05-14 12:02:00    2017-05-14 12:02:00
90096    30546    648    2017-05-14 13:06:00    2017-05-14 13:06:00
90097    30546    663    2017-05-14 06:00:00    2017-05-14 06:00:00
90098    30546    926    2017-05-14 06:51:00    2017-05-14 06:51:00
90099    30546    573    2017-05-14 08:22:00    2017-05-14 08:22:00
90100    30547    938    2017-05-14 20:44:00    2017-05-14 20:44:00
90101    30547    582    2017-05-14 06:28:00    2017-05-14 06:28:00
90102    30547    492    2017-05-14 14:39:00    2017-05-14 14:39:00
90103    30547    822    2017-05-14 01:59:00    2017-05-14 01:59:00
90104    30547    889    2017-05-14 12:40:00    2017-05-14 12:40:00
90105    30548    957    2017-05-14 13:31:00    2017-05-14 13:31:00
90106    30548    555    2017-05-14 06:15:00    2017-05-14 06:15:00
90107    30548    571    2017-05-14 18:59:00    2017-05-14 18:59:00
90108    30548    620    2017-05-14 14:08:00    2017-05-14 14:08:00
90109    30548    613    2017-05-14 21:08:00    2017-05-14 21:08:00
90110    30549    919    2017-05-14 01:43:00    2017-05-14 01:43:00
90111    30549    650    2017-05-14 09:51:00    2017-05-14 09:51:00
90112    30549    594    2017-05-14 14:04:00    2017-05-14 14:04:00
90113    30549    654    2017-05-14 19:59:00    2017-05-14 19:59:00
90114    30549    500    2017-05-14 17:47:00    2017-05-14 17:47:00
90115    30550    464    2017-05-14 14:24:00    2017-05-14 14:24:00
90116    30550    562    2017-05-14 01:47:00    2017-05-14 01:47:00
90117    30550    583    2017-05-14 15:37:00    2017-05-14 15:37:00
90118    30550    495    2017-05-14 16:39:00    2017-05-14 16:39:00
90119    30550    594    2017-05-14 15:31:00    2017-05-14 15:31:00
90120    30551    539    2017-05-14 04:57:00    2017-05-14 04:57:00
90121    30551    846    2017-05-14 22:32:00    2017-05-14 22:32:00
90122    30551    571    2017-05-14 08:23:00    2017-05-14 08:23:00
90123    30551    678    2017-05-14 04:08:00    2017-05-14 04:08:00
90124    30551    881    2017-05-14 13:57:00    2017-05-14 13:57:00
90125    30552    840    2017-05-14 09:23:00    2017-05-14 09:23:00
90126    30552    940    2017-05-14 01:00:00    2017-05-14 01:00:00
90127    30552    795    2017-05-14 22:51:00    2017-05-14 22:51:00
90128    30552    826    2017-05-14 10:54:00    2017-05-14 10:54:00
90129    30552    498    2017-05-14 12:50:00    2017-05-14 12:50:00
90130    30553    884    2017-05-14 23:26:00    2017-05-14 23:26:00
90131    30553    599    2017-05-14 13:32:00    2017-05-14 13:32:00
90132    30553    490    2017-05-14 23:15:00    2017-05-14 23:15:00
90133    30553    608    2017-05-14 07:16:00    2017-05-14 07:16:00
90134    30553    590    2017-05-14 08:19:00    2017-05-14 08:19:00
90135    30554    782    2017-05-14 16:13:00    2017-05-14 16:13:00
90136    30554    776    2017-05-14 21:44:00    2017-05-14 21:44:00
90137    30554    906    2017-05-14 05:15:00    2017-05-14 05:15:00
90138    30554    854    2017-05-14 18:57:00    2017-05-14 18:57:00
90139    30554    803    2017-05-14 04:17:00    2017-05-14 04:17:00
90140    30555    681    2017-05-14 15:07:00    2017-05-14 15:07:00
90141    30555    677    2017-05-14 11:57:00    2017-05-14 11:57:00
90142    30555    703    2017-05-14 13:32:00    2017-05-14 13:32:00
90143    30555    565    2017-05-14 21:11:00    2017-05-14 21:11:00
90144    30555    509    2017-05-14 11:11:00    2017-05-14 11:11:00
90145    30556    583    2017-05-14 10:40:00    2017-05-14 10:40:00
90146    30556    848    2017-05-14 19:24:00    2017-05-14 19:24:00
90147    30556    736    2017-05-14 18:20:00    2017-05-14 18:20:00
90148    30556    674    2017-05-14 20:18:00    2017-05-14 20:18:00
90149    30556    907    2017-05-14 17:52:00    2017-05-14 17:52:00
90150    30557    477    2017-05-14 09:10:00    2017-05-14 09:10:00
90151    30557    924    2017-05-14 19:36:00    2017-05-14 19:36:00
90152    30557    512    2017-05-14 22:18:00    2017-05-14 22:18:00
90153    30557    925    2017-05-14 18:18:00    2017-05-14 18:18:00
90154    30557    563    2017-05-14 14:10:00    2017-05-14 14:10:00
90155    30558    644    2017-05-14 21:05:00    2017-05-14 21:05:00
90156    30558    529    2017-05-14 04:38:00    2017-05-14 04:38:00
90157    30558    881    2017-05-14 21:24:00    2017-05-14 21:24:00
90158    30558    722    2017-05-14 19:25:00    2017-05-14 19:25:00
90159    30558    655    2017-05-14 22:53:00    2017-05-14 22:53:00
90160    30559    520    2017-05-14 01:43:00    2017-05-14 01:43:00
90161    30559    777    2017-05-14 20:34:00    2017-05-14 20:34:00
90162    30559    534    2017-05-14 04:12:00    2017-05-14 04:12:00
90163    30559    562    2017-05-14 12:12:00    2017-05-14 12:12:00
90164    30559    899    2017-05-14 01:47:00    2017-05-14 01:47:00
90165    30560    867    2017-05-14 17:42:00    2017-05-14 17:42:00
90166    30560    913    2017-05-14 16:44:00    2017-05-14 16:44:00
90167    30560    737    2017-05-14 22:41:00    2017-05-14 22:41:00
90168    30560    842    2017-05-14 22:02:00    2017-05-14 22:02:00
90169    30560    465    2017-05-14 19:05:00    2017-05-14 19:05:00
90170    30561    623    2017-05-14 16:00:00    2017-05-14 16:00:00
90171    30561    464    2017-05-14 02:05:00    2017-05-14 02:05:00
90172    30561    622    2017-05-14 18:49:00    2017-05-14 18:49:00
90173    30561    680    2017-05-14 11:40:00    2017-05-14 11:40:00
90174    30561    579    2017-05-14 02:02:00    2017-05-14 02:02:00
90175    30562    762    2017-05-14 12:18:00    2017-05-14 12:18:00
90176    30562    911    2017-05-14 17:31:00    2017-05-14 17:31:00
90177    30562    904    2017-05-14 23:27:00    2017-05-14 23:27:00
90178    30562    524    2017-05-14 11:25:00    2017-05-14 11:25:00
90179    30562    702    2017-05-14 22:40:00    2017-05-14 22:40:00
90180    30563    626    2017-05-14 19:45:00    2017-05-14 19:45:00
90181    30563    929    2017-05-14 23:36:00    2017-05-14 23:36:00
90182    30563    692    2017-05-14 10:39:00    2017-05-14 10:39:00
90183    30563    554    2017-05-14 06:18:00    2017-05-14 06:18:00
90184    30563    683    2017-05-14 19:11:00    2017-05-14 19:11:00
90185    30564    836    2017-05-14 22:49:00    2017-05-14 22:49:00
90186    30564    664    2017-05-14 20:11:00    2017-05-14 20:11:00
90187    30564    675    2017-05-14 16:03:00    2017-05-14 16:03:00
90188    30564    831    2017-05-14 03:15:00    2017-05-14 03:15:00
90189    30564    829    2017-05-14 02:21:00    2017-05-14 02:21:00
90190    30565    496    2017-05-14 13:38:00    2017-05-14 13:38:00
90191    30565    685    2017-05-14 13:50:00    2017-05-14 13:50:00
90192    30565    759    2017-05-14 04:40:00    2017-05-14 04:40:00
90193    30565    680    2017-05-14 18:17:00    2017-05-14 18:17:00
90194    30565    834    2017-05-14 07:49:00    2017-05-14 07:49:00
90195    30566    593    2017-05-14 10:44:00    2017-05-14 10:44:00
90196    30566    718    2017-05-14 17:41:00    2017-05-14 17:41:00
90197    30566    711    2017-05-14 16:04:00    2017-05-14 16:04:00
90198    30566    780    2017-05-14 03:38:00    2017-05-14 03:38:00
90199    30566    549    2017-05-14 16:52:00    2017-05-14 16:52:00
90200    30567    788    2017-05-15 16:16:00    2017-05-15 16:16:00
90201    30567    628    2017-05-15 14:21:00    2017-05-15 14:21:00
90202    30567    480    2017-05-15 12:50:00    2017-05-15 12:50:00
90203    30567    667    2017-05-15 02:09:00    2017-05-15 02:09:00
90204    30567    741    2017-05-15 13:16:00    2017-05-15 13:16:00
90205    30568    940    2017-05-15 13:55:00    2017-05-15 13:55:00
90207    30568    575    2017-05-15 20:52:00    2017-05-15 20:52:00
90208    30568    805    2017-05-15 23:57:00    2017-05-15 23:57:00
90209    30568    877    2017-05-15 14:50:00    2017-05-15 14:50:00
90210    30569    909    2017-05-15 02:45:00    2017-05-15 02:45:00
90211    30569    847    2017-05-15 13:40:00    2017-05-15 13:40:00
90212    30569    631    2017-05-15 01:49:00    2017-05-15 01:49:00
90213    30569    533    2017-05-15 20:07:00    2017-05-15 20:07:00
90214    30569    902    2017-05-15 13:20:00    2017-05-15 13:20:00
90215    30570    643    2017-05-15 05:18:00    2017-05-15 05:18:00
90216    30570    904    2017-05-15 05:37:00    2017-05-15 05:37:00
90217    30570    549    2017-05-15 06:14:00    2017-05-15 06:14:00
90218    30570    675    2017-05-15 01:34:00    2017-05-15 01:34:00
90219    30570    695    2017-05-15 23:42:00    2017-05-15 23:42:00
90220    30571    845    2017-05-15 21:29:00    2017-05-15 21:29:00
90221    30571    690    2017-05-15 11:54:00    2017-05-15 11:54:00
90222    30571    523    2017-05-15 01:38:00    2017-05-15 01:38:00
90223    30571    493    2017-05-15 23:09:00    2017-05-15 23:09:00
90224    30571    535    2017-05-15 11:56:00    2017-05-15 11:56:00
90225    30572    551    2017-05-15 21:57:00    2017-05-15 21:57:00
90226    30572    494    2017-05-15 03:27:00    2017-05-15 03:27:00
90227    30572    799    2017-05-15 18:09:00    2017-05-15 18:09:00
90228    30572    533    2017-05-15 03:15:00    2017-05-15 03:15:00
90229    30572    687    2017-05-15 23:25:00    2017-05-15 23:25:00
90230    30573    816    2017-05-15 04:27:00    2017-05-15 04:27:00
90231    30573    882    2017-05-15 21:39:00    2017-05-15 21:39:00
90232    30573    877    2017-05-15 10:38:00    2017-05-15 10:38:00
90233    30573    755    2017-05-15 17:55:00    2017-05-15 17:55:00
90234    30573    759    2017-05-15 21:57:00    2017-05-15 21:57:00
90235    30574    764    2017-05-15 12:21:00    2017-05-15 12:21:00
90236    30574    728    2017-05-15 08:46:00    2017-05-15 08:46:00
90237    30574    849    2017-05-15 23:48:00    2017-05-15 23:48:00
90238    30574    821    2017-05-15 20:26:00    2017-05-15 20:26:00
90239    30574    734    2017-05-15 01:54:00    2017-05-15 01:54:00
90240    30575    631    2017-05-15 12:31:00    2017-05-15 12:31:00
90241    30575    658    2017-05-15 23:51:00    2017-05-15 23:51:00
90242    30575    513    2017-05-15 01:32:00    2017-05-15 01:32:00
90243    30575    757    2017-05-15 01:10:00    2017-05-15 01:10:00
90244    30575    696    2017-05-15 17:26:00    2017-05-15 17:26:00
90245    30576    950    2017-05-15 16:59:00    2017-05-15 16:59:00
90246    30576    502    2017-05-15 12:39:00    2017-05-15 12:39:00
90247    30576    770    2017-05-15 10:23:00    2017-05-15 10:23:00
90248    30576    815    2017-05-15 09:09:00    2017-05-15 09:09:00
90249    30576    897    2017-05-15 19:04:00    2017-05-15 19:04:00
90251    30577    718    2017-05-15 04:57:00    2017-05-15 04:57:00
90252    30577    501    2017-05-15 23:11:00    2017-05-15 23:11:00
90253    30577    728    2017-05-15 06:17:00    2017-05-15 06:17:00
90254    30577    773    2017-05-15 21:02:00    2017-05-15 21:02:00
90255    30578    593    2017-05-15 05:37:00    2017-05-15 05:37:00
90256    30578    490    2017-05-15 01:53:00    2017-05-15 01:53:00
90257    30578    767    2017-05-15 19:36:00    2017-05-15 19:36:00
90258    30578    612    2017-05-15 15:36:00    2017-05-15 15:36:00
90259    30578    576    2017-05-15 10:19:00    2017-05-15 10:19:00
90260    30579    909    2017-05-15 12:38:00    2017-05-15 12:38:00
90261    30579    810    2017-05-15 11:05:00    2017-05-15 11:05:00
90262    30579    790    2017-05-15 12:05:00    2017-05-15 12:05:00
90263    30579    867    2017-05-15 08:12:00    2017-05-15 08:12:00
90264    30579    690    2017-05-15 23:27:00    2017-05-15 23:27:00
90265    30580    495    2017-05-16 18:44:00    2017-05-16 18:44:00
90266    30580    751    2017-05-16 10:28:00    2017-05-16 10:28:00
90267    30580    602    2017-05-16 13:45:00    2017-05-16 13:45:00
90268    30580    955    2017-05-16 19:38:00    2017-05-16 19:38:00
90269    30580    921    2017-05-16 17:50:00    2017-05-16 17:50:00
90270    30581    470    2017-05-16 14:35:00    2017-05-16 14:35:00
90271    30581    886    2017-05-16 04:04:00    2017-05-16 04:04:00
90272    30581    779    2017-05-16 12:51:00    2017-05-16 12:51:00
90273    30581    809    2017-05-16 13:40:00    2017-05-16 13:40:00
90274    30581    682    2017-05-16 04:19:00    2017-05-16 04:19:00
90275    30582    751    2017-05-16 10:00:00    2017-05-16 10:00:00
90276    30582    532    2017-05-16 13:12:00    2017-05-16 13:12:00
90277    30582    703    2017-05-16 19:01:00    2017-05-16 19:01:00
90278    30582    943    2017-05-16 18:33:00    2017-05-16 18:33:00
90279    30582    714    2017-05-16 22:39:00    2017-05-16 22:39:00
90280    30583    750    2017-05-16 09:10:00    2017-05-16 09:10:00
90281    30583    684    2017-05-16 07:54:00    2017-05-16 07:54:00
90282    30583    811    2017-05-16 13:03:00    2017-05-16 13:03:00
90283    30583    826    2017-05-16 11:32:00    2017-05-16 11:32:00
90284    30583    885    2017-05-16 14:20:00    2017-05-16 14:20:00
90285    30584    930    2017-05-16 13:31:00    2017-05-16 13:31:00
90286    30584    867    2017-05-16 22:18:00    2017-05-16 22:18:00
90287    30584    818    2017-05-16 07:13:00    2017-05-16 07:13:00
90288    30584    700    2017-05-16 18:37:00    2017-05-16 18:37:00
90289    30584    741    2017-05-16 13:00:00    2017-05-16 13:00:00
90290    30585    724    2017-05-16 07:44:00    2017-05-16 07:44:00
90291    30585    812    2017-05-16 11:21:00    2017-05-16 11:21:00
90292    30585    941    2017-05-16 22:52:00    2017-05-16 22:52:00
90293    30585    580    2017-05-16 15:52:00    2017-05-16 15:52:00
90294    30585    713    2017-05-16 12:25:00    2017-05-16 12:25:00
90295    30586    473    2017-05-16 12:20:00    2017-05-16 12:20:00
90296    30586    759    2017-05-16 19:40:00    2017-05-16 19:40:00
90297    30586    933    2017-05-16 23:29:00    2017-05-16 23:29:00
90298    30586    933    2017-05-16 12:38:00    2017-05-16 12:38:00
90299    30586    682    2017-05-16 18:40:00    2017-05-16 18:40:00
90300    30587    558    2017-05-16 06:22:00    2017-05-16 06:22:00
90301    30587    869    2017-05-16 16:46:00    2017-05-16 16:46:00
90302    30587    916    2017-05-16 01:13:00    2017-05-16 01:13:00
90303    30587    578    2017-05-16 17:57:00    2017-05-16 17:57:00
90304    30587    943    2017-05-16 07:01:00    2017-05-16 07:01:00
90206    30568    \N    2017-05-15 13:07:00    2017-05-15 13:07:00
90305    30588    842    2017-05-16 04:49:00    2017-05-16 04:49:00
90306    30588    551    2017-05-16 23:07:00    2017-05-16 23:07:00
90307    30588    707    2017-05-16 03:00:00    2017-05-16 03:00:00
90308    30588    518    2017-05-16 14:03:00    2017-05-16 14:03:00
90309    30588    592    2017-05-16 10:55:00    2017-05-16 10:55:00
90310    30589    728    2017-05-16 13:36:00    2017-05-16 13:36:00
90311    30589    648    2017-05-16 06:18:00    2017-05-16 06:18:00
90312    30589    847    2017-05-16 21:49:00    2017-05-16 21:49:00
90313    30589    958    2017-05-16 14:13:00    2017-05-16 14:13:00
90314    30589    639    2017-05-16 04:31:00    2017-05-16 04:31:00
90315    30590    640    2017-05-16 15:01:00    2017-05-16 15:01:00
90316    30590    490    2017-05-16 21:06:00    2017-05-16 21:06:00
90317    30590    731    2017-05-16 17:16:00    2017-05-16 17:16:00
90318    30590    925    2017-05-16 14:43:00    2017-05-16 14:43:00
90319    30590    602    2017-05-16 11:33:00    2017-05-16 11:33:00
90320    30591    901    2017-05-16 19:06:00    2017-05-16 19:06:00
90321    30591    874    2017-05-16 19:09:00    2017-05-16 19:09:00
90322    30591    675    2017-05-16 12:18:00    2017-05-16 12:18:00
90323    30591    556    2017-05-16 11:44:00    2017-05-16 11:44:00
90324    30591    647    2017-05-16 16:39:00    2017-05-16 16:39:00
90325    30592    568    2017-05-16 11:06:00    2017-05-16 11:06:00
90326    30592    587    2017-05-16 18:03:00    2017-05-16 18:03:00
90327    30592    600    2017-05-16 06:13:00    2017-05-16 06:13:00
90328    30592    672    2017-05-16 05:03:00    2017-05-16 05:03:00
90329    30592    473    2017-05-16 21:22:00    2017-05-16 21:22:00
90330    30593    807    2017-05-16 20:06:00    2017-05-16 20:06:00
90331    30593    654    2017-05-16 08:32:00    2017-05-16 08:32:00
90332    30593    882    2017-05-16 22:40:00    2017-05-16 22:40:00
90333    30593    820    2017-05-16 10:22:00    2017-05-16 10:22:00
90334    30593    740    2017-05-16 13:47:00    2017-05-16 13:47:00
90335    30594    775    2017-05-16 06:23:00    2017-05-16 06:23:00
90336    30594    465    2017-05-16 13:37:00    2017-05-16 13:37:00
90337    30594    795    2017-05-16 18:29:00    2017-05-16 18:29:00
90338    30594    708    2017-05-16 18:03:00    2017-05-16 18:03:00
90339    30594    608    2017-05-16 13:17:00    2017-05-16 13:17:00
90340    30595    517    2017-05-16 07:20:00    2017-05-16 07:20:00
90341    30595    954    2017-05-16 21:37:00    2017-05-16 21:37:00
90342    30595    939    2017-05-16 17:39:00    2017-05-16 17:39:00
90343    30595    654    2017-05-16 08:45:00    2017-05-16 08:45:00
90344    30595    802    2017-05-16 23:26:00    2017-05-16 23:26:00
90345    30596    878    2017-05-16 15:54:00    2017-05-16 15:54:00
90346    30596    836    2017-05-16 04:34:00    2017-05-16 04:34:00
90347    30596    492    2017-05-16 06:51:00    2017-05-16 06:51:00
90348    30596    725    2017-05-16 06:42:00    2017-05-16 06:42:00
90349    30596    846    2017-05-16 04:49:00    2017-05-16 04:49:00
90350    30597    728    2017-05-16 09:24:00    2017-05-16 09:24:00
90351    30597    619    2017-05-16 18:56:00    2017-05-16 18:56:00
90352    30597    579    2017-05-16 23:03:00    2017-05-16 23:03:00
90353    30597    664    2017-05-16 23:17:00    2017-05-16 23:17:00
90354    30597    619    2017-05-16 05:19:00    2017-05-16 05:19:00
90355    30598    842    2017-05-16 19:12:00    2017-05-16 19:12:00
90356    30598    747    2017-05-16 10:29:00    2017-05-16 10:29:00
90357    30598    472    2017-05-16 07:24:00    2017-05-16 07:24:00
90358    30598    729    2017-05-16 15:07:00    2017-05-16 15:07:00
90359    30598    881    2017-05-16 01:37:00    2017-05-16 01:37:00
90360    30599    733    2017-05-16 21:42:00    2017-05-16 21:42:00
90361    30599    922    2017-05-16 05:26:00    2017-05-16 05:26:00
90362    30599    604    2017-05-16 10:28:00    2017-05-16 10:28:00
90363    30599    570    2017-05-16 02:34:00    2017-05-16 02:34:00
90364    30599    666    2017-05-16 14:34:00    2017-05-16 14:34:00
90365    30600    545    2017-05-17 00:00:00    2017-05-17 00:00:00
90366    30600    840    2017-05-16 07:55:00    2017-05-16 07:55:00
90367    30600    678    2017-05-16 22:55:00    2017-05-16 22:55:00
90368    30600    537    2017-05-16 16:24:00    2017-05-16 16:24:00
90369    30600    603    2017-05-16 02:57:00    2017-05-16 02:57:00
90370    30601    616    2017-05-16 03:36:00    2017-05-16 03:36:00
90371    30601    671    2017-05-16 08:35:00    2017-05-16 08:35:00
90372    30601    552    2017-05-16 09:44:00    2017-05-16 09:44:00
90373    30601    467    2017-05-16 17:08:00    2017-05-16 17:08:00
90374    30601    740    2017-05-16 20:37:00    2017-05-16 20:37:00
90375    30602    555    2017-05-16 21:38:00    2017-05-16 21:38:00
90376    30602    744    2017-05-16 14:31:00    2017-05-16 14:31:00
90377    30602    710    2017-05-16 18:39:00    2017-05-16 18:39:00
90378    30602    923    2017-05-16 02:34:00    2017-05-16 02:34:00
90379    30602    762    2017-05-16 18:23:00    2017-05-16 18:23:00
90380    30603    853    2017-05-16 02:59:00    2017-05-16 02:59:00
90381    30603    612    2017-05-16 14:32:00    2017-05-16 14:32:00
90382    30603    724    2017-05-16 03:54:00    2017-05-16 03:54:00
90383    30603    883    2017-05-16 09:57:00    2017-05-16 09:57:00
90384    30603    554    2017-05-16 20:40:00    2017-05-16 20:40:00
90385    30604    668    2017-05-16 21:46:00    2017-05-16 21:46:00
90386    30604    692    2017-05-16 05:21:00    2017-05-16 05:21:00
90387    30604    935    2017-05-16 17:36:00    2017-05-16 17:36:00
90388    30604    877    2017-05-16 08:43:00    2017-05-16 08:43:00
90389    30604    512    2017-05-16 16:57:00    2017-05-16 16:57:00
90390    30605    666    2017-05-16 12:56:00    2017-05-16 12:56:00
90391    30605    522    2017-05-16 08:00:00    2017-05-16 08:00:00
90392    30605    647    2017-05-16 04:02:00    2017-05-16 04:02:00
90393    30605    854    2017-05-16 12:53:00    2017-05-16 12:53:00
90394    30605    791    2017-05-16 18:44:00    2017-05-16 18:44:00
90395    30606    688    2017-05-16 21:36:00    2017-05-16 21:36:00
90396    30606    705    2017-05-16 12:16:00    2017-05-16 12:16:00
90397    30606    774    2017-05-16 16:02:00    2017-05-16 16:02:00
90398    30606    613    2017-05-16 21:12:00    2017-05-16 21:12:00
90399    30606    894    2017-05-16 07:47:00    2017-05-16 07:47:00
90400    30607    945    2017-05-16 15:50:00    2017-05-16 15:50:00
90401    30607    887    2017-05-16 05:47:00    2017-05-16 05:47:00
90402    30607    501    2017-05-16 11:55:00    2017-05-16 11:55:00
90403    30607    852    2017-05-16 14:37:00    2017-05-16 14:37:00
90404    30607    745    2017-05-16 15:15:00    2017-05-16 15:15:00
90405    30608    798    2017-05-16 22:43:00    2017-05-16 22:43:00
90406    30608    547    2017-05-16 17:12:00    2017-05-16 17:12:00
90407    30608    527    2017-05-16 15:18:00    2017-05-16 15:18:00
90408    30608    752    2017-05-16 09:30:00    2017-05-16 09:30:00
90409    30608    644    2017-05-16 02:12:00    2017-05-16 02:12:00
90410    30609    785    2017-05-16 04:19:00    2017-05-16 04:19:00
90411    30609    586    2017-05-16 19:15:00    2017-05-16 19:15:00
90412    30609    800    2017-05-16 20:43:00    2017-05-16 20:43:00
90413    30609    648    2017-05-16 11:12:00    2017-05-16 11:12:00
90414    30609    865    2017-05-16 18:55:00    2017-05-16 18:55:00
90415    30610    813    2017-05-16 16:25:00    2017-05-16 16:25:00
90416    30610    493    2017-05-16 18:30:00    2017-05-16 18:30:00
90417    30610    910    2017-05-16 16:39:00    2017-05-16 16:39:00
90418    30610    862    2017-05-16 18:04:00    2017-05-16 18:04:00
90419    30610    898    2017-05-16 09:07:00    2017-05-16 09:07:00
90420    30611    827    2017-05-16 07:32:00    2017-05-16 07:32:00
90421    30611    666    2017-05-16 12:47:00    2017-05-16 12:47:00
90422    30611    731    2017-05-16 14:55:00    2017-05-16 14:55:00
90423    30611    530    2017-05-16 15:12:00    2017-05-16 15:12:00
90424    30611    620    2017-05-16 09:46:00    2017-05-16 09:46:00
90425    30612    794    2017-05-16 22:17:00    2017-05-16 22:17:00
90426    30612    927    2017-05-16 09:00:00    2017-05-16 09:00:00
90427    30612    675    2017-05-16 15:10:00    2017-05-16 15:10:00
90428    30612    508    2017-05-16 06:58:00    2017-05-16 06:58:00
90429    30612    926    2017-05-16 16:19:00    2017-05-16 16:19:00
90430    30613    553    2017-05-16 10:27:00    2017-05-16 10:27:00
90431    30613    733    2017-05-16 01:48:00    2017-05-16 01:48:00
90432    30613    692    2017-05-16 11:33:00    2017-05-16 11:33:00
90433    30613    856    2017-05-16 04:00:00    2017-05-16 04:00:00
90434    30613    711    2017-05-16 02:30:00    2017-05-16 02:30:00
90435    30614    509    2017-05-16 11:07:00    2017-05-16 11:07:00
90436    30614    929    2017-05-16 11:18:00    2017-05-16 11:18:00
90437    30614    496    2017-05-16 09:56:00    2017-05-16 09:56:00
90438    30614    610    2017-05-16 12:42:00    2017-05-16 12:42:00
90439    30614    938    2017-05-16 03:51:00    2017-05-16 03:51:00
90440    30615    593    2017-05-16 08:01:00    2017-05-16 08:01:00
90441    30615    930    2017-05-16 07:21:00    2017-05-16 07:21:00
90442    30615    726    2017-05-16 15:54:00    2017-05-16 15:54:00
90443    30615    632    2017-05-16 19:51:00    2017-05-16 19:51:00
90444    30615    756    2017-05-16 17:45:00    2017-05-16 17:45:00
90445    30616    691    2017-05-16 14:18:00    2017-05-16 14:18:00
90446    30616    513    2017-05-16 13:28:00    2017-05-16 13:28:00
90447    30616    621    2017-05-16 09:48:00    2017-05-16 09:48:00
90448    30616    741    2017-05-16 21:30:00    2017-05-16 21:30:00
90449    30616    479    2017-05-16 22:38:00    2017-05-16 22:38:00
90450    30617    518    2017-05-16 17:04:00    2017-05-16 17:04:00
90451    30617    833    2017-05-16 15:18:00    2017-05-16 15:18:00
90452    30617    580    2017-05-16 13:28:00    2017-05-16 13:28:00
90453    30617    934    2017-05-16 03:12:00    2017-05-16 03:12:00
90454    30617    928    2017-05-16 11:04:00    2017-05-16 11:04:00
90455    30618    774    2017-05-16 05:37:00    2017-05-16 05:37:00
90456    30618    814    2017-05-16 05:14:00    2017-05-16 05:14:00
90457    30618    943    2017-05-16 11:26:00    2017-05-16 11:26:00
90458    30618    834    2017-05-16 07:41:00    2017-05-16 07:41:00
90459    30618    788    2017-05-16 05:01:00    2017-05-16 05:01:00
90460    30619    816    2017-05-16 01:41:00    2017-05-16 01:41:00
90461    30619    924    2017-05-16 06:58:00    2017-05-16 06:58:00
90462    30619    761    2017-05-16 05:04:00    2017-05-16 05:04:00
90463    30619    732    2017-05-16 06:58:00    2017-05-16 06:58:00
90464    30619    855    2017-05-16 21:35:00    2017-05-16 21:35:00
90465    30620    589    2017-05-16 22:33:00    2017-05-16 22:33:00
90466    30620    950    2017-05-16 06:02:00    2017-05-16 06:02:00
90467    30620    852    2017-05-16 17:43:00    2017-05-16 17:43:00
90468    30620    493    2017-05-16 07:29:00    2017-05-16 07:29:00
90469    30620    941    2017-05-16 09:51:00    2017-05-16 09:51:00
90470    30621    913    2017-05-16 13:23:00    2017-05-16 13:23:00
90471    30621    861    2017-05-16 15:09:00    2017-05-16 15:09:00
90472    30621    519    2017-05-16 21:20:00    2017-05-16 21:20:00
90473    30621    825    2017-05-16 05:30:00    2017-05-16 05:30:00
90474    30621    564    2017-05-16 16:59:00    2017-05-16 16:59:00
90475    30622    614    2017-05-16 05:26:00    2017-05-16 05:26:00
90476    30622    839    2017-05-16 19:00:00    2017-05-16 19:00:00
90477    30622    958    2017-05-16 17:33:00    2017-05-16 17:33:00
90478    30622    788    2017-05-16 13:32:00    2017-05-16 13:32:00
90479    30622    508    2017-05-16 08:47:00    2017-05-16 08:47:00
90480    30623    533    2017-05-16 19:36:00    2017-05-16 19:36:00
90481    30623    480    2017-05-16 01:39:00    2017-05-16 01:39:00
90482    30623    647    2017-05-16 16:27:00    2017-05-16 16:27:00
90483    30623    949    2017-05-16 02:47:00    2017-05-16 02:47:00
90484    30623    648    2017-05-16 15:50:00    2017-05-16 15:50:00
90485    30624    878    2017-05-16 20:39:00    2017-05-16 20:39:00
90486    30624    663    2017-05-16 19:11:00    2017-05-16 19:11:00
90487    30624    957    2017-05-16 06:18:00    2017-05-16 06:18:00
90488    30624    479    2017-05-16 21:28:00    2017-05-16 21:28:00
90489    30624    823    2017-05-16 05:41:00    2017-05-16 05:41:00
90490    30625    732    2017-05-16 11:52:00    2017-05-16 11:52:00
90491    30625    465    2017-05-16 12:19:00    2017-05-16 12:19:00
90492    30625    551    2017-05-16 23:24:00    2017-05-16 23:24:00
90493    30625    511    2017-05-16 04:55:00    2017-05-16 04:55:00
90494    30625    731    2017-05-16 03:53:00    2017-05-16 03:53:00
90495    30626    830    2017-05-16 19:48:00    2017-05-16 19:48:00
90496    30626    907    2017-05-16 03:13:00    2017-05-16 03:13:00
90497    30626    472    2017-05-16 10:32:00    2017-05-16 10:32:00
90498    30626    743    2017-05-16 09:21:00    2017-05-16 09:21:00
90499    30626    728    2017-05-16 20:49:00    2017-05-16 20:49:00
90500    30627    610    2017-05-16 03:02:00    2017-05-16 03:02:00
90501    30627    680    2017-05-16 03:16:00    2017-05-16 03:16:00
90502    30627    606    2017-05-16 07:31:00    2017-05-16 07:31:00
90503    30627    885    2017-05-16 16:50:00    2017-05-16 16:50:00
90504    30627    470    2017-05-16 03:19:00    2017-05-16 03:19:00
90505    30628    627    2017-05-16 11:36:00    2017-05-16 11:36:00
90506    30628    793    2017-05-16 17:27:00    2017-05-16 17:27:00
90507    30628    520    2017-05-16 15:06:00    2017-05-16 15:06:00
90508    30628    521    2017-05-16 05:06:00    2017-05-16 05:06:00
90509    30628    602    2017-05-16 06:44:00    2017-05-16 06:44:00
90510    30629    467    2017-05-16 15:31:00    2017-05-16 15:31:00
90511    30629    797    2017-05-16 03:26:00    2017-05-16 03:26:00
90512    30629    828    2017-05-16 23:56:00    2017-05-16 23:56:00
90513    30629    767    2017-05-16 01:20:00    2017-05-16 01:20:00
90514    30629    746    2017-05-16 16:01:00    2017-05-16 16:01:00
90515    30630    922    2017-05-16 12:08:00    2017-05-16 12:08:00
90516    30630    952    2017-05-16 12:00:00    2017-05-16 12:00:00
90517    30630    879    2017-05-16 05:56:00    2017-05-16 05:56:00
90518    30630    498    2017-05-16 04:46:00    2017-05-16 04:46:00
90519    30630    872    2017-05-16 17:30:00    2017-05-16 17:30:00
90520    30631    526    2017-05-16 19:16:00    2017-05-16 19:16:00
90521    30631    792    2017-05-16 17:11:00    2017-05-16 17:11:00
90522    30631    731    2017-05-16 23:44:00    2017-05-16 23:44:00
90523    30631    469    2017-05-16 18:07:00    2017-05-16 18:07:00
90524    30631    484    2017-05-16 21:53:00    2017-05-16 21:53:00
90525    30632    702    2017-05-17 09:50:00    2017-05-17 09:50:00
90526    30632    463    2017-05-17 07:47:00    2017-05-17 07:47:00
90527    30632    474    2017-05-17 09:26:00    2017-05-17 09:26:00
90528    30632    488    2017-05-17 09:14:00    2017-05-17 09:14:00
90529    30632    945    2017-05-17 19:46:00    2017-05-17 19:46:00
90530    30633    876    2017-05-17 12:19:00    2017-05-17 12:19:00
90531    30633    859    2017-05-17 14:49:00    2017-05-17 14:49:00
90532    30633    510    2017-05-17 14:07:00    2017-05-17 14:07:00
90533    30633    960    2017-05-17 14:47:00    2017-05-17 14:47:00
90534    30633    669    2017-05-17 19:29:00    2017-05-17 19:29:00
90535    30634    758    2017-05-17 10:11:00    2017-05-17 10:11:00
90536    30634    843    2017-05-17 23:43:00    2017-05-17 23:43:00
90537    30634    844    2017-05-17 23:50:00    2017-05-17 23:50:00
90538    30634    720    2017-05-17 01:37:00    2017-05-17 01:37:00
90539    30634    839    2017-05-17 20:09:00    2017-05-17 20:09:00
90540    30635    936    2017-05-17 10:52:00    2017-05-17 10:52:00
90541    30635    586    2017-05-17 20:31:00    2017-05-17 20:31:00
90542    30635    463    2017-05-17 17:29:00    2017-05-17 17:29:00
90543    30635    879    2017-05-17 18:27:00    2017-05-17 18:27:00
90544    30635    932    2017-05-17 14:06:00    2017-05-17 14:06:00
90545    30636    732    2017-05-17 17:03:00    2017-05-17 17:03:00
90546    30636    883    2017-05-17 09:47:00    2017-05-17 09:47:00
90547    30636    713    2017-05-17 19:11:00    2017-05-17 19:11:00
90548    30636    737    2017-05-17 03:15:00    2017-05-17 03:15:00
90549    30636    890    2017-05-17 03:13:00    2017-05-17 03:13:00
90550    30637    923    2017-05-17 18:30:00    2017-05-17 18:30:00
90551    30637    666    2017-05-17 05:20:00    2017-05-17 05:20:00
90552    30637    563    2017-05-17 19:13:00    2017-05-17 19:13:00
90553    30637    600    2017-05-17 15:56:00    2017-05-17 15:56:00
90554    30637    767    2017-05-17 19:59:00    2017-05-17 19:59:00
90555    30638    782    2017-05-17 21:03:00    2017-05-17 21:03:00
90556    30638    538    2017-05-17 05:16:00    2017-05-17 05:16:00
90557    30638    649    2017-05-17 23:50:00    2017-05-17 23:50:00
90558    30638    601    2017-05-17 05:32:00    2017-05-17 05:32:00
90559    30638    580    2017-05-17 03:56:00    2017-05-17 03:56:00
90560    30639    676    2017-05-17 17:34:00    2017-05-17 17:34:00
90561    30639    880    2017-05-17 04:48:00    2017-05-17 04:48:00
90562    30639    580    2017-05-17 15:59:00    2017-05-17 15:59:00
90563    30639    875    2017-05-17 23:52:00    2017-05-17 23:52:00
90564    30639    874    2017-05-17 02:53:00    2017-05-17 02:53:00
90565    30640    750    2017-05-17 10:55:00    2017-05-17 10:55:00
90566    30640    893    2017-05-17 23:29:00    2017-05-17 23:29:00
90567    30640    741    2017-05-17 15:51:00    2017-05-17 15:51:00
90568    30640    618    2017-05-17 12:20:00    2017-05-17 12:20:00
90569    30640    759    2017-05-17 19:41:00    2017-05-17 19:41:00
90570    30641    796    2017-05-17 23:30:00    2017-05-17 23:30:00
90571    30641    713    2017-05-17 15:26:00    2017-05-17 15:26:00
90572    30641    865    2017-05-17 21:05:00    2017-05-17 21:05:00
90573    30641    735    2017-05-17 06:02:00    2017-05-17 06:02:00
90574    30641    773    2017-05-17 06:15:00    2017-05-17 06:15:00
90575    30642    495    2017-05-17 05:16:00    2017-05-17 05:16:00
90576    30642    673    2017-05-17 12:47:00    2017-05-17 12:47:00
90577    30642    786    2017-05-17 11:57:00    2017-05-17 11:57:00
90578    30642    620    2017-05-17 01:04:00    2017-05-17 01:04:00
90579    30642    571    2017-05-17 23:17:00    2017-05-17 23:17:00
90580    30643    897    2017-05-17 06:19:00    2017-05-17 06:19:00
90581    30643    731    2017-05-17 16:43:00    2017-05-17 16:43:00
90582    30643    548    2017-05-17 14:05:00    2017-05-17 14:05:00
90583    30643    598    2017-05-17 16:02:00    2017-05-17 16:02:00
90584    30643    501    2017-05-17 21:56:00    2017-05-17 21:56:00
90585    30644    541    2017-05-17 23:12:00    2017-05-17 23:12:00
90586    30644    794    2017-05-17 11:05:00    2017-05-17 11:05:00
90587    30644    874    2017-05-17 12:01:00    2017-05-17 12:01:00
90588    30644    825    2017-05-17 20:04:00    2017-05-17 20:04:00
90589    30644    759    2017-05-17 18:44:00    2017-05-17 18:44:00
90590    30645    915    2017-05-17 10:39:00    2017-05-17 10:39:00
90591    30645    485    2017-05-17 22:14:00    2017-05-17 22:14:00
90592    30645    680    2017-05-17 23:48:00    2017-05-17 23:48:00
90593    30645    681    2017-05-17 12:44:00    2017-05-17 12:44:00
90594    30645    839    2017-05-17 14:49:00    2017-05-17 14:49:00
90595    30646    477    2017-05-17 20:29:00    2017-05-17 20:29:00
90596    30646    627    2017-05-17 19:18:00    2017-05-17 19:18:00
90597    30646    852    2017-05-17 14:27:00    2017-05-17 14:27:00
90598    30646    555    2017-05-17 08:58:00    2017-05-17 08:58:00
90599    30646    606    2017-05-17 15:05:00    2017-05-17 15:05:00
90600    30647    898    2017-05-17 20:35:00    2017-05-17 20:35:00
90601    30647    523    2017-05-17 18:26:00    2017-05-17 18:26:00
90602    30647    539    2017-05-17 09:03:00    2017-05-17 09:03:00
90603    30647    581    2017-05-17 14:29:00    2017-05-17 14:29:00
90604    30647    908    2017-05-17 11:24:00    2017-05-17 11:24:00
90605    30648    680    2017-05-17 17:00:00    2017-05-17 17:00:00
90606    30648    643    2017-05-17 18:16:00    2017-05-17 18:16:00
90607    30648    864    2017-05-17 03:45:00    2017-05-17 03:45:00
90608    30648    940    2017-05-17 06:25:00    2017-05-17 06:25:00
90609    30648    501    2017-05-17 17:20:00    2017-05-17 17:20:00
90610    30649    560    2017-05-17 02:59:00    2017-05-17 02:59:00
90611    30649    742    2017-05-17 07:57:00    2017-05-17 07:57:00
90612    30649    655    2017-05-17 01:51:00    2017-05-17 01:51:00
90613    30649    857    2017-05-17 01:50:00    2017-05-17 01:50:00
90614    30649    572    2017-05-17 22:18:00    2017-05-17 22:18:00
90615    30650    618    2017-05-17 04:09:00    2017-05-17 04:09:00
90616    30650    636    2017-05-17 08:14:00    2017-05-17 08:14:00
90617    30650    541    2017-05-17 22:05:00    2017-05-17 22:05:00
90618    30650    705    2017-05-17 14:19:00    2017-05-17 14:19:00
90619    30650    558    2017-05-17 19:01:00    2017-05-17 19:01:00
90620    30651    702    2017-05-17 05:58:00    2017-05-17 05:58:00
90621    30651    574    2017-05-17 12:39:00    2017-05-17 12:39:00
90622    30651    750    2017-05-17 21:24:00    2017-05-17 21:24:00
90623    30651    498    2017-05-17 02:39:00    2017-05-17 02:39:00
90624    30651    855    2017-05-17 16:26:00    2017-05-17 16:26:00
90625    30652    923    2017-05-17 23:28:00    2017-05-17 23:28:00
90626    30652    902    2017-05-17 09:32:00    2017-05-17 09:32:00
90627    30652    643    2017-05-17 18:56:00    2017-05-17 18:56:00
90628    30652    610    2017-05-17 02:24:00    2017-05-17 02:24:00
90629    30652    619    2017-05-17 16:00:00    2017-05-17 16:00:00
90630    30653    573    2017-05-18 19:30:00    2017-05-18 19:30:00
90631    30653    741    2017-05-18 15:07:00    2017-05-18 15:07:00
90632    30653    522    2017-05-18 02:02:00    2017-05-18 02:02:00
90633    30653    952    2017-05-18 19:09:00    2017-05-18 19:09:00
90634    30653    629    2017-05-18 06:28:00    2017-05-18 06:28:00
90635    30654    784    2017-05-18 06:10:00    2017-05-18 06:10:00
90636    30654    952    2017-05-18 10:43:00    2017-05-18 10:43:00
90637    30654    804    2017-05-18 04:07:00    2017-05-18 04:07:00
90638    30654    779    2017-05-18 23:25:00    2017-05-18 23:25:00
90639    30654    515    2017-05-18 03:49:00    2017-05-18 03:49:00
90640    30655    895    2017-05-18 05:48:00    2017-05-18 05:48:00
90641    30655    849    2017-05-18 10:35:00    2017-05-18 10:35:00
90642    30655    905    2017-05-18 10:36:00    2017-05-18 10:36:00
90643    30655    744    2017-05-18 08:17:00    2017-05-18 08:17:00
90644    30655    483    2017-05-18 22:37:00    2017-05-18 22:37:00
90645    30656    821    2017-05-18 16:29:00    2017-05-18 16:29:00
90646    30656    684    2017-05-18 12:56:00    2017-05-18 12:56:00
90647    30656    554    2017-05-18 02:11:00    2017-05-18 02:11:00
90648    30656    935    2017-05-18 20:51:00    2017-05-18 20:51:00
90649    30656    573    2017-05-18 21:39:00    2017-05-18 21:39:00
90650    30657    463    2017-05-18 14:01:00    2017-05-18 14:01:00
90651    30657    733    2017-05-18 11:29:00    2017-05-18 11:29:00
90652    30657    587    2017-05-18 15:22:00    2017-05-18 15:22:00
90653    30657    543    2017-05-18 11:29:00    2017-05-18 11:29:00
90654    30657    867    2017-05-18 20:09:00    2017-05-18 20:09:00
90655    30658    538    2017-05-18 03:25:00    2017-05-18 03:25:00
90656    30658    863    2017-05-18 10:03:00    2017-05-18 10:03:00
90657    30658    947    2017-05-18 21:21:00    2017-05-18 21:21:00
90658    30658    554    2017-05-18 20:29:00    2017-05-18 20:29:00
90659    30658    489    2017-05-18 22:02:00    2017-05-18 22:02:00
90660    30659    840    2017-05-18 17:11:00    2017-05-18 17:11:00
90661    30659    716    2017-05-18 13:11:00    2017-05-18 13:11:00
90662    30659    540    2017-05-18 09:13:00    2017-05-18 09:13:00
90663    30659    849    2017-05-18 21:44:00    2017-05-18 21:44:00
90664    30659    485    2017-05-18 12:25:00    2017-05-18 12:25:00
90665    30660    497    2017-05-18 17:33:00    2017-05-18 17:33:00
90666    30660    610    2017-05-18 16:10:00    2017-05-18 16:10:00
90667    30660    929    2017-05-18 10:51:00    2017-05-18 10:51:00
90668    30660    791    2017-05-18 10:56:00    2017-05-18 10:56:00
90669    30660    956    2017-05-18 03:14:00    2017-05-18 03:14:00
90670    30661    915    2017-05-18 21:14:00    2017-05-18 21:14:00
90671    30661    775    2017-05-18 10:46:00    2017-05-18 10:46:00
90672    30661    728    2017-05-18 07:16:00    2017-05-18 07:16:00
90673    30661    722    2017-05-18 13:43:00    2017-05-18 13:43:00
90674    30661    481    2017-05-18 22:43:00    2017-05-18 22:43:00
90675    30662    779    2017-05-18 08:09:00    2017-05-18 08:09:00
90676    30662    852    2017-05-18 02:17:00    2017-05-18 02:17:00
90677    30662    838    2017-05-18 06:40:00    2017-05-18 06:40:00
90678    30662    488    2017-05-18 05:39:00    2017-05-18 05:39:00
90679    30662    824    2017-05-18 21:51:00    2017-05-18 21:51:00
90680    30663    775    2017-05-18 20:23:00    2017-05-18 20:23:00
90681    30663    507    2017-05-18 02:16:00    2017-05-18 02:16:00
90682    30663    914    2017-05-18 14:30:00    2017-05-18 14:30:00
90683    30663    713    2017-05-18 22:00:00    2017-05-18 22:00:00
90684    30663    562    2017-05-18 02:42:00    2017-05-18 02:42:00
90685    30664    663    2017-05-18 16:48:00    2017-05-18 16:48:00
90686    30664    934    2017-05-18 19:45:00    2017-05-18 19:45:00
90687    30664    747    2017-05-18 04:43:00    2017-05-18 04:43:00
90688    30664    644    2017-05-18 19:11:00    2017-05-18 19:11:00
90689    30664    526    2017-05-18 21:25:00    2017-05-18 21:25:00
90690    30665    777    2017-05-18 17:28:00    2017-05-18 17:28:00
90691    30665    669    2017-05-18 02:18:00    2017-05-18 02:18:00
90692    30665    840    2017-05-18 07:54:00    2017-05-18 07:54:00
90693    30665    940    2017-05-18 19:46:00    2017-05-18 19:46:00
90694    30665    533    2017-05-18 19:30:00    2017-05-18 19:30:00
90695    30666    474    2017-05-18 16:01:00    2017-05-18 16:01:00
90696    30666    915    2017-05-18 03:24:00    2017-05-18 03:24:00
90697    30666    599    2017-05-18 22:33:00    2017-05-18 22:33:00
90698    30666    537    2017-05-18 23:47:00    2017-05-18 23:47:00
90699    30666    464    2017-05-18 23:44:00    2017-05-18 23:44:00
90700    30667    919    2017-05-18 21:43:00    2017-05-18 21:43:00
90701    30667    702    2017-05-18 17:32:00    2017-05-18 17:32:00
90702    30667    894    2017-05-18 09:06:00    2017-05-18 09:06:00
90703    30667    598    2017-05-18 19:31:00    2017-05-18 19:31:00
90704    30667    744    2017-05-18 17:10:00    2017-05-18 17:10:00
90705    30668    861    2017-05-18 20:44:00    2017-05-18 20:44:00
90706    30668    634    2017-05-18 11:12:00    2017-05-18 11:12:00
90707    30668    558    2017-05-18 07:08:00    2017-05-18 07:08:00
90708    30668    863    2017-05-18 15:24:00    2017-05-18 15:24:00
90709    30668    787    2017-05-18 08:17:00    2017-05-18 08:17:00
90710    30669    687    2017-05-18 01:15:00    2017-05-18 01:15:00
90711    30669    854    2017-05-18 12:07:00    2017-05-18 12:07:00
90712    30669    709    2017-05-18 01:24:00    2017-05-18 01:24:00
90713    30669    600    2017-05-18 16:09:00    2017-05-18 16:09:00
90714    30669    833    2017-05-18 16:49:00    2017-05-18 16:49:00
90715    30670    919    2017-05-18 17:27:00    2017-05-18 17:27:00
90716    30670    861    2017-05-18 08:57:00    2017-05-18 08:57:00
90717    30670    760    2017-05-18 07:09:00    2017-05-18 07:09:00
90718    30670    920    2017-05-18 12:10:00    2017-05-18 12:10:00
90719    30670    535    2017-05-18 02:53:00    2017-05-18 02:53:00
90720    30671    876    2017-05-18 19:01:00    2017-05-18 19:01:00
90721    30671    626    2017-05-18 04:30:00    2017-05-18 04:30:00
90722    30671    634    2017-05-18 21:00:00    2017-05-18 21:00:00
90723    30671    479    2017-05-18 08:53:00    2017-05-18 08:53:00
90724    30671    506    2017-05-18 07:24:00    2017-05-18 07:24:00
90725    30672    852    2017-05-18 21:58:00    2017-05-18 21:58:00
90726    30672    957    2017-05-18 08:05:00    2017-05-18 08:05:00
90727    30672    471    2017-05-18 06:30:00    2017-05-18 06:30:00
90728    30672    530    2017-05-18 10:30:00    2017-05-18 10:30:00
90729    30672    784    2017-05-18 16:58:00    2017-05-18 16:58:00
90730    30673    819    2017-05-18 18:41:00    2017-05-18 18:41:00
90731    30673    833    2017-05-18 02:45:00    2017-05-18 02:45:00
90732    30673    585    2017-05-18 02:15:00    2017-05-18 02:15:00
90733    30673    880    2017-05-18 08:36:00    2017-05-18 08:36:00
90734    30673    606    2017-05-18 10:34:00    2017-05-18 10:34:00
90735    30674    567    2017-05-18 16:30:00    2017-05-18 16:30:00
90736    30674    739    2017-05-18 10:44:00    2017-05-18 10:44:00
90737    30674    624    2017-05-18 12:31:00    2017-05-18 12:31:00
90738    30674    496    2017-05-18 01:03:00    2017-05-18 01:03:00
90739    30674    723    2017-05-18 20:58:00    2017-05-18 20:58:00
90740    30675    844    2017-05-18 08:15:00    2017-05-18 08:15:00
90741    30675    477    2017-05-18 07:43:00    2017-05-18 07:43:00
90742    30675    708    2017-05-18 10:06:00    2017-05-18 10:06:00
90743    30675    579    2017-05-18 21:25:00    2017-05-18 21:25:00
90744    30675    852    2017-05-18 22:37:00    2017-05-18 22:37:00
90745    30676    938    2017-05-18 01:55:00    2017-05-18 01:55:00
90746    30676    522    2017-05-18 15:49:00    2017-05-18 15:49:00
90747    30676    584    2017-05-18 06:13:00    2017-05-18 06:13:00
90748    30676    698    2017-05-18 11:26:00    2017-05-18 11:26:00
90749    30676    539    2017-05-18 08:43:00    2017-05-18 08:43:00
90750    30677    722    2017-05-18 10:34:00    2017-05-18 10:34:00
90751    30677    939    2017-05-18 19:51:00    2017-05-18 19:51:00
90752    30677    832    2017-05-18 13:16:00    2017-05-18 13:16:00
90753    30677    853    2017-05-18 11:08:00    2017-05-18 11:08:00
90754    30677    542    2017-05-18 06:40:00    2017-05-18 06:40:00
90755    30678    598    2017-05-18 20:36:00    2017-05-18 20:36:00
90756    30678    857    2017-05-18 21:54:00    2017-05-18 21:54:00
90757    30678    699    2017-05-18 13:53:00    2017-05-18 13:53:00
90758    30678    769    2017-05-18 02:55:00    2017-05-18 02:55:00
90759    30678    619    2017-05-18 18:48:00    2017-05-18 18:48:00
90760    30679    661    2017-05-18 03:05:00    2017-05-18 03:05:00
90761    30679    858    2017-05-18 10:38:00    2017-05-18 10:38:00
90762    30679    786    2017-05-18 08:36:00    2017-05-18 08:36:00
90763    30679    693    2017-05-18 18:14:00    2017-05-18 18:14:00
90764    30679    929    2017-05-18 09:29:00    2017-05-18 09:29:00
90765    30680    535    2017-05-18 21:24:00    2017-05-18 21:24:00
90766    30680    572    2017-05-18 07:25:00    2017-05-18 07:25:00
90767    30680    925    2017-05-18 15:44:00    2017-05-18 15:44:00
90768    30680    768    2017-05-18 13:58:00    2017-05-18 13:58:00
90769    30680    840    2017-05-18 19:06:00    2017-05-18 19:06:00
90770    30681    895    2017-05-18 12:11:00    2017-05-18 12:11:00
90771    30681    893    2017-05-18 16:35:00    2017-05-18 16:35:00
90772    30681    637    2017-05-18 21:45:00    2017-05-18 21:45:00
90773    30681    641    2017-05-18 23:56:00    2017-05-18 23:56:00
90774    30681    921    2017-05-18 15:28:00    2017-05-18 15:28:00
90775    30682    800    2017-05-18 12:18:00    2017-05-18 12:18:00
90776    30682    700    2017-05-18 11:17:00    2017-05-18 11:17:00
90777    30682    586    2017-05-18 16:53:00    2017-05-18 16:53:00
90778    30682    731    2017-05-18 21:51:00    2017-05-18 21:51:00
90779    30682    698    2017-05-18 14:53:00    2017-05-18 14:53:00
90780    30683    879    2017-05-18 15:27:00    2017-05-18 15:27:00
90781    30683    804    2017-05-18 13:13:00    2017-05-18 13:13:00
90782    30683    483    2017-05-18 15:49:00    2017-05-18 15:49:00
90783    30683    463    2017-05-18 13:00:00    2017-05-18 13:00:00
90784    30683    559    2017-05-18 19:10:00    2017-05-18 19:10:00
90785    30684    913    2017-05-18 03:05:00    2017-05-18 03:05:00
90786    30684    646    2017-05-18 16:36:00    2017-05-18 16:36:00
90787    30684    816    2017-05-18 07:50:00    2017-05-18 07:50:00
90788    30684    756    2017-05-18 07:14:00    2017-05-18 07:14:00
90789    30684    757    2017-05-18 16:51:00    2017-05-18 16:51:00
90790    30685    562    2017-05-18 05:17:00    2017-05-18 05:17:00
90791    30685    647    2017-05-18 03:54:00    2017-05-18 03:54:00
90792    30685    825    2017-05-18 02:26:00    2017-05-18 02:26:00
90793    30685    520    2017-05-18 22:17:00    2017-05-18 22:17:00
90794    30685    671    2017-05-18 21:03:00    2017-05-18 21:03:00
90795    30686    583    2017-05-18 15:50:00    2017-05-18 15:50:00
90796    30686    821    2017-05-18 16:42:00    2017-05-18 16:42:00
90797    30686    766    2017-05-18 05:44:00    2017-05-18 05:44:00
90798    30686    496    2017-05-18 02:00:00    2017-05-18 02:00:00
90799    30686    471    2017-05-18 20:06:00    2017-05-18 20:06:00
90800    30687    745    2017-05-18 10:22:00    2017-05-18 10:22:00
90801    30687    699    2017-05-18 03:25:00    2017-05-18 03:25:00
90802    30687    885    2017-05-18 03:14:00    2017-05-18 03:14:00
90803    30687    699    2017-05-18 19:32:00    2017-05-18 19:32:00
90804    30687    656    2017-05-18 18:33:00    2017-05-18 18:33:00
90805    30688    599    2017-05-18 11:19:00    2017-05-18 11:19:00
90806    30688    571    2017-05-18 01:52:00    2017-05-18 01:52:00
90807    30688    503    2017-05-18 06:45:00    2017-05-18 06:45:00
90808    30688    768    2017-05-18 15:06:00    2017-05-18 15:06:00
90809    30688    854    2017-05-18 21:21:00    2017-05-18 21:21:00
90810    30689    756    2017-05-18 22:08:00    2017-05-18 22:08:00
90811    30689    584    2017-05-18 23:09:00    2017-05-18 23:09:00
90812    30689    766    2017-05-18 18:24:00    2017-05-18 18:24:00
90813    30689    581    2017-05-18 15:37:00    2017-05-18 15:37:00
90814    30689    570    2017-05-18 06:04:00    2017-05-18 06:04:00
90815    30690    827    2017-05-18 07:06:00    2017-05-18 07:06:00
90816    30690    836    2017-05-18 09:41:00    2017-05-18 09:41:00
90817    30690    644    2017-05-18 13:09:00    2017-05-18 13:09:00
90818    30690    708    2017-05-18 11:05:00    2017-05-18 11:05:00
90819    30690    623    2017-05-18 17:32:00    2017-05-18 17:32:00
90820    30691    492    2017-05-18 04:00:00    2017-05-18 04:00:00
90821    30691    626    2017-05-18 11:13:00    2017-05-18 11:13:00
90822    30691    809    2017-05-18 17:11:00    2017-05-18 17:11:00
90823    30691    607    2017-05-18 03:21:00    2017-05-18 03:21:00
90824    30691    904    2017-05-18 03:37:00    2017-05-18 03:37:00
90825    30692    954    2017-05-18 08:29:00    2017-05-18 08:29:00
90826    30692    488    2017-05-18 18:20:00    2017-05-18 18:20:00
90827    30692    813    2017-05-18 13:27:00    2017-05-18 13:27:00
90828    30692    484    2017-05-18 21:52:00    2017-05-18 21:52:00
90829    30692    898    2017-05-18 02:02:00    2017-05-18 02:02:00
90830    30693    593    2017-05-18 15:11:00    2017-05-18 15:11:00
90831    30693    752    2017-05-18 13:45:00    2017-05-18 13:45:00
90832    30693    518    2017-05-18 03:25:00    2017-05-18 03:25:00
90833    30693    817    2017-05-18 06:42:00    2017-05-18 06:42:00
90834    30693    583    2017-05-18 19:17:00    2017-05-18 19:17:00
90835    30694    621    2017-05-18 23:54:00    2017-05-18 23:54:00
90836    30694    698    2017-05-18 21:07:00    2017-05-18 21:07:00
90837    30694    730    2017-05-18 21:45:00    2017-05-18 21:45:00
90838    30694    771    2017-05-18 19:26:00    2017-05-18 19:26:00
90839    30694    954    2017-05-18 11:03:00    2017-05-18 11:03:00
90840    30695    844    2017-05-18 23:35:00    2017-05-18 23:35:00
90841    30695    708    2017-05-18 01:37:00    2017-05-18 01:37:00
90842    30695    790    2017-05-18 18:26:00    2017-05-18 18:26:00
90843    30695    707    2017-05-18 20:45:00    2017-05-18 20:45:00
90844    30695    939    2017-05-18 09:15:00    2017-05-18 09:15:00
90845    30696    774    2017-05-18 14:32:00    2017-05-18 14:32:00
90846    30696    625    2017-05-18 08:25:00    2017-05-18 08:25:00
90847    30696    828    2017-05-18 01:42:00    2017-05-18 01:42:00
90848    30696    717    2017-05-18 16:55:00    2017-05-18 16:55:00
90849    30696    815    2017-05-18 20:10:00    2017-05-18 20:10:00
90850    30697    733    2017-05-18 20:51:00    2017-05-18 20:51:00
90851    30697    615    2017-05-18 02:32:00    2017-05-18 02:32:00
90852    30697    570    2017-05-18 23:14:00    2017-05-18 23:14:00
90853    30697    578    2017-05-18 13:28:00    2017-05-18 13:28:00
90854    30697    488    2017-05-18 17:49:00    2017-05-18 17:49:00
90855    30698    521    2017-05-18 02:13:00    2017-05-18 02:13:00
90856    30698    733    2017-05-18 20:16:00    2017-05-18 20:16:00
90857    30698    602    2017-05-18 01:05:00    2017-05-18 01:05:00
90858    30698    499    2017-05-18 17:24:00    2017-05-18 17:24:00
90859    30698    731    2017-05-18 20:34:00    2017-05-18 20:34:00
90860    30699    746    2017-05-18 14:14:00    2017-05-18 14:14:00
90861    30699    855    2017-05-18 10:57:00    2017-05-18 10:57:00
90862    30699    746    2017-05-18 01:50:00    2017-05-18 01:50:00
90863    30699    818    2017-05-18 18:37:00    2017-05-18 18:37:00
90864    30699    476    2017-05-18 19:22:00    2017-05-18 19:22:00
90865    30700    532    2017-05-18 13:36:00    2017-05-18 13:36:00
90866    30700    668    2017-05-18 09:03:00    2017-05-18 09:03:00
90867    30700    540    2017-05-18 15:51:00    2017-05-18 15:51:00
90868    30700    537    2017-05-18 02:27:00    2017-05-18 02:27:00
90869    30700    716    2017-05-18 07:14:00    2017-05-18 07:14:00
90870    30701    879    2017-05-18 17:57:00    2017-05-18 17:57:00
90871    30701    521    2017-05-18 17:41:00    2017-05-18 17:41:00
90872    30701    528    2017-05-18 01:32:00    2017-05-18 01:32:00
90873    30701    672    2017-05-18 10:22:00    2017-05-18 10:22:00
90874    30701    699    2017-05-18 01:41:00    2017-05-18 01:41:00
90875    30702    606    2017-05-18 20:37:00    2017-05-18 20:37:00
90876    30702    901    2017-05-18 21:13:00    2017-05-18 21:13:00
90877    30702    613    2017-05-18 23:04:00    2017-05-18 23:04:00
90878    30702    702    2017-05-18 03:58:00    2017-05-18 03:58:00
90879    30702    716    2017-05-18 08:55:00    2017-05-18 08:55:00
90880    30703    873    2017-05-18 07:10:00    2017-05-18 07:10:00
90881    30703    827    2017-05-18 10:29:00    2017-05-18 10:29:00
90882    30703    863    2017-05-18 07:29:00    2017-05-18 07:29:00
90883    30703    570    2017-05-18 05:05:00    2017-05-18 05:05:00
90884    30703    919    2017-05-18 18:12:00    2017-05-18 18:12:00
90885    30704    471    2017-05-18 19:44:00    2017-05-18 19:44:00
90886    30704    713    2017-05-18 15:23:00    2017-05-18 15:23:00
90887    30704    463    2017-05-18 22:46:00    2017-05-18 22:46:00
90888    30704    685    2017-05-18 10:40:00    2017-05-18 10:40:00
90889    30704    923    2017-05-18 18:34:00    2017-05-18 18:34:00
90890    30705    864    2017-05-18 02:07:00    2017-05-18 02:07:00
90891    30705    655    2017-05-18 07:09:00    2017-05-18 07:09:00
90892    30705    598    2017-05-18 17:54:00    2017-05-18 17:54:00
90893    30705    637    2017-05-18 13:28:00    2017-05-18 13:28:00
90894    30705    483    2017-05-18 19:54:00    2017-05-18 19:54:00
90895    30706    758    2017-05-18 13:54:00    2017-05-18 13:54:00
90896    30706    933    2017-05-18 17:03:00    2017-05-18 17:03:00
90897    30706    814    2017-05-18 23:35:00    2017-05-18 23:35:00
90898    30706    884    2017-05-18 06:32:00    2017-05-18 06:32:00
90899    30706    716    2017-05-18 06:55:00    2017-05-18 06:55:00
90900    30707    955    2017-05-18 01:43:00    2017-05-18 01:43:00
90901    30707    662    2017-05-18 08:10:00    2017-05-18 08:10:00
90902    30707    941    2017-05-18 22:55:00    2017-05-18 22:55:00
90903    30707    589    2017-05-18 06:51:00    2017-05-18 06:51:00
90904    30707    692    2017-05-18 01:23:00    2017-05-18 01:23:00
90905    30708    759    2017-05-18 11:39:00    2017-05-18 11:39:00
90906    30708    804    2017-05-18 16:50:00    2017-05-18 16:50:00
90907    30708    517    2017-05-18 16:04:00    2017-05-18 16:04:00
90908    30708    752    2017-05-18 14:13:00    2017-05-18 14:13:00
90909    30708    711    2017-05-18 06:23:00    2017-05-18 06:23:00
90910    30709    604    2017-05-18 10:43:00    2017-05-18 10:43:00
90911    30709    547    2017-05-18 03:52:00    2017-05-18 03:52:00
90912    30709    498    2017-05-18 23:20:00    2017-05-18 23:20:00
90913    30709    620    2017-05-18 04:30:00    2017-05-18 04:30:00
90914    30709    905    2017-05-18 17:51:00    2017-05-18 17:51:00
90915    30710    772    2017-05-18 10:59:00    2017-05-18 10:59:00
90916    30710    738    2017-05-18 08:03:00    2017-05-18 08:03:00
90917    30710    915    2017-05-18 20:16:00    2017-05-18 20:16:00
90918    30710    832    2017-05-18 04:16:00    2017-05-18 04:16:00
90919    30710    747    2017-05-18 06:06:00    2017-05-18 06:06:00
90920    30711    526    2017-05-18 17:28:00    2017-05-18 17:28:00
90921    30711    768    2017-05-18 22:14:00    2017-05-18 22:14:00
90922    30711    880    2017-05-18 08:40:00    2017-05-18 08:40:00
90923    30711    902    2017-05-18 02:52:00    2017-05-18 02:52:00
90924    30711    917    2017-05-18 09:10:00    2017-05-18 09:10:00
90925    30712    948    2017-05-18 17:51:00    2017-05-18 17:51:00
90926    30712    677    2017-05-18 12:26:00    2017-05-18 12:26:00
90927    30712    673    2017-05-18 15:04:00    2017-05-18 15:04:00
90928    30712    571    2017-05-18 14:06:00    2017-05-18 14:06:00
90929    30712    937    2017-05-18 04:32:00    2017-05-18 04:32:00
90930    30713    707    2017-05-18 15:07:00    2017-05-18 15:07:00
90931    30713    609    2017-05-18 01:09:00    2017-05-18 01:09:00
90932    30713    585    2017-05-18 18:57:00    2017-05-18 18:57:00
90933    30713    465    2017-05-18 14:45:00    2017-05-18 14:45:00
90934    30713    836    2017-05-18 17:13:00    2017-05-18 17:13:00
90935    30714    690    2017-05-18 12:55:00    2017-05-18 12:55:00
90936    30714    865    2017-05-18 05:49:00    2017-05-18 05:49:00
90937    30714    659    2017-05-18 10:05:00    2017-05-18 10:05:00
90938    30714    959    2017-05-18 14:46:00    2017-05-18 14:46:00
90939    30714    602    2017-05-18 08:18:00    2017-05-18 08:18:00
90940    30715    581    2017-05-18 23:13:00    2017-05-18 23:13:00
90941    30715    958    2017-05-18 10:26:00    2017-05-18 10:26:00
90942    30715    947    2017-05-18 20:38:00    2017-05-18 20:38:00
90943    30715    582    2017-05-18 01:29:00    2017-05-18 01:29:00
90944    30715    955    2017-05-18 17:00:00    2017-05-18 17:00:00
90945    30716    506    2017-05-18 03:01:00    2017-05-18 03:01:00
90946    30716    512    2017-05-18 12:03:00    2017-05-18 12:03:00
90947    30716    654    2017-05-18 04:58:00    2017-05-18 04:58:00
90948    30716    552    2017-05-18 20:49:00    2017-05-18 20:49:00
90949    30716    798    2017-05-18 11:02:00    2017-05-18 11:02:00
90950    30717    786    2017-05-18 11:33:00    2017-05-18 11:33:00
90951    30717    801    2017-05-18 15:43:00    2017-05-18 15:43:00
90952    30717    927    2017-05-18 22:39:00    2017-05-18 22:39:00
90953    30717    775    2017-05-18 21:46:00    2017-05-18 21:46:00
90954    30717    875    2017-05-18 09:45:00    2017-05-18 09:45:00
90955    30718    894    2017-05-18 03:00:00    2017-05-18 03:00:00
90956    30718    484    2017-05-18 13:32:00    2017-05-18 13:32:00
90957    30718    946    2017-05-18 08:43:00    2017-05-18 08:43:00
90958    30718    597    2017-05-18 09:00:00    2017-05-18 09:00:00
90959    30718    688    2017-05-18 22:55:00    2017-05-18 22:55:00
90960    30719    928    2017-05-18 22:48:00    2017-05-18 22:48:00
90961    30719    951    2017-05-18 11:44:00    2017-05-18 11:44:00
90962    30719    513    2017-05-18 09:07:00    2017-05-18 09:07:00
90963    30719    639    2017-05-18 16:00:00    2017-05-18 16:00:00
90964    30719    534    2017-05-18 21:52:00    2017-05-18 21:52:00
90965    30720    672    2017-05-18 18:46:00    2017-05-18 18:46:00
90966    30720    869    2017-05-18 05:40:00    2017-05-18 05:40:00
90967    30720    682    2017-05-18 10:17:00    2017-05-18 10:17:00
90968    30720    529    2017-05-18 01:55:00    2017-05-18 01:55:00
90969    30720    635    2017-05-18 18:11:00    2017-05-18 18:11:00
90970    30721    695    2017-05-18 15:56:00    2017-05-18 15:56:00
90971    30721    920    2017-05-18 17:39:00    2017-05-18 17:39:00
90972    30721    531    2017-05-18 07:49:00    2017-05-18 07:49:00
90973    30721    547    2017-05-18 08:34:00    2017-05-18 08:34:00
90974    30721    854    2017-05-18 01:51:00    2017-05-18 01:51:00
90975    30722    667    2017-05-18 07:49:00    2017-05-18 07:49:00
90976    30722    909    2017-05-18 09:02:00    2017-05-18 09:02:00
90977    30722    560    2017-05-18 23:57:00    2017-05-18 23:57:00
90978    30722    632    2017-05-18 15:32:00    2017-05-18 15:32:00
90979    30722    752    2017-05-18 09:38:00    2017-05-18 09:38:00
90980    30723    908    2017-05-18 15:12:00    2017-05-18 15:12:00
90981    30723    602    2017-05-18 18:02:00    2017-05-18 18:02:00
90982    30723    692    2017-05-18 20:38:00    2017-05-18 20:38:00
90983    30723    937    2017-05-18 16:59:00    2017-05-18 16:59:00
90984    30723    662    2017-05-18 20:55:00    2017-05-18 20:55:00
90985    30724    686    2017-05-18 15:57:00    2017-05-18 15:57:00
90986    30724    763    2017-05-18 08:30:00    2017-05-18 08:30:00
90987    30724    818    2017-05-18 06:38:00    2017-05-18 06:38:00
90988    30724    489    2017-05-18 22:39:00    2017-05-18 22:39:00
90989    30724    756    2017-05-18 05:00:00    2017-05-18 05:00:00
90990    30725    810    2017-05-18 08:39:00    2017-05-18 08:39:00
90991    30725    537    2017-05-18 04:02:00    2017-05-18 04:02:00
90992    30725    625    2017-05-18 04:22:00    2017-05-18 04:22:00
90993    30725    498    2017-05-18 03:16:00    2017-05-18 03:16:00
90994    30725    469    2017-05-18 07:57:00    2017-05-18 07:57:00
90995    30726    937    2017-05-18 22:03:00    2017-05-18 22:03:00
90997    30726    817    2017-05-18 07:35:00    2017-05-18 07:35:00
90998    30726    536    2017-05-18 19:14:00    2017-05-18 19:14:00
90999    30726    859    2017-05-18 09:37:00    2017-05-18 09:37:00
91000    30727    812    2017-05-18 01:05:00    2017-05-18 01:05:00
91001    30727    878    2017-05-18 08:05:00    2017-05-18 08:05:00
91002    30727    610    2017-05-18 02:12:00    2017-05-18 02:12:00
91003    30727    716    2017-05-18 13:43:00    2017-05-18 13:43:00
91004    30727    841    2017-05-18 13:24:00    2017-05-18 13:24:00
91005    30728    550    2017-05-18 04:43:00    2017-05-18 04:43:00
91006    30728    620    2017-05-18 01:08:00    2017-05-18 01:08:00
91007    30728    777    2017-05-18 05:58:00    2017-05-18 05:58:00
91008    30728    818    2017-05-18 22:00:00    2017-05-18 22:00:00
91009    30728    741    2017-05-18 19:01:00    2017-05-18 19:01:00
91010    30729    745    2017-05-18 06:12:00    2017-05-18 06:12:00
91011    30729    864    2017-05-18 18:19:00    2017-05-18 18:19:00
91012    30729    627    2017-05-18 12:10:00    2017-05-18 12:10:00
91013    30729    822    2017-05-18 14:28:00    2017-05-18 14:28:00
91014    30729    561    2017-05-18 11:55:00    2017-05-18 11:55:00
91015    30730    738    2017-05-18 09:51:00    2017-05-18 09:51:00
91016    30730    908    2017-05-18 14:00:00    2017-05-18 14:00:00
91017    30730    564    2017-05-18 01:31:00    2017-05-18 01:31:00
91018    30730    497    2017-05-18 13:49:00    2017-05-18 13:49:00
91019    30730    598    2017-05-18 13:24:00    2017-05-18 13:24:00
91020    30731    496    2017-05-18 15:42:00    2017-05-18 15:42:00
91021    30731    589    2017-05-18 07:51:00    2017-05-18 07:51:00
91022    30731    572    2017-05-18 18:51:00    2017-05-18 18:51:00
91023    30731    717    2017-05-18 07:03:00    2017-05-18 07:03:00
91024    30731    578    2017-05-18 08:48:00    2017-05-18 08:48:00
91025    30732    862    2017-05-18 15:03:00    2017-05-18 15:03:00
91026    30732    494    2017-05-18 01:46:00    2017-05-18 01:46:00
91027    30732    603    2017-05-18 07:00:00    2017-05-18 07:00:00
91028    30732    934    2017-05-18 20:27:00    2017-05-18 20:27:00
91029    30732    619    2017-05-18 10:29:00    2017-05-18 10:29:00
91030    30733    929    2017-05-18 13:12:00    2017-05-18 13:12:00
91031    30733    467    2017-05-18 06:07:00    2017-05-18 06:07:00
91032    30733    921    2017-05-18 01:30:00    2017-05-18 01:30:00
91033    30733    919    2017-05-18 22:25:00    2017-05-18 22:25:00
91034    30733    865    2017-05-18 19:26:00    2017-05-18 19:26:00
91035    30734    532    2017-05-18 22:56:00    2017-05-18 22:56:00
91036    30734    523    2017-05-18 19:29:00    2017-05-18 19:29:00
91037    30734    832    2017-05-18 01:07:00    2017-05-18 01:07:00
91038    30734    921    2017-05-18 16:25:00    2017-05-18 16:25:00
91039    30734    832    2017-05-18 19:33:00    2017-05-18 19:33:00
91040    30735    753    2017-05-18 07:33:00    2017-05-18 07:33:00
91041    30735    835    2017-05-18 15:13:00    2017-05-18 15:13:00
91042    30735    566    2017-05-18 21:42:00    2017-05-18 21:42:00
91043    30735    633    2017-05-18 10:28:00    2017-05-18 10:28:00
91044    30735    832    2017-05-18 22:15:00    2017-05-18 22:15:00
91045    30736    691    2017-05-18 08:33:00    2017-05-18 08:33:00
91046    30736    782    2017-05-18 20:03:00    2017-05-18 20:03:00
91047    30736    891    2017-05-18 03:08:00    2017-05-18 03:08:00
91048    30736    591    2017-05-18 09:17:00    2017-05-18 09:17:00
91049    30736    753    2017-05-18 01:32:00    2017-05-18 01:32:00
91050    30737    649    2017-05-18 01:28:00    2017-05-18 01:28:00
91051    30737    640    2017-05-18 14:24:00    2017-05-18 14:24:00
91052    30737    525    2017-05-18 05:28:00    2017-05-18 05:28:00
91053    30737    841    2017-05-18 15:37:00    2017-05-18 15:37:00
91054    30737    651    2017-05-18 13:04:00    2017-05-18 13:04:00
91055    30738    931    2017-05-18 18:34:00    2017-05-18 18:34:00
91056    30738    526    2017-05-18 05:46:00    2017-05-18 05:46:00
91057    30738    553    2017-05-18 09:14:00    2017-05-18 09:14:00
91058    30738    773    2017-05-18 08:00:00    2017-05-18 08:00:00
91059    30738    625    2017-05-18 03:10:00    2017-05-18 03:10:00
91060    30739    919    2017-05-19 17:29:00    2017-05-19 17:29:00
91061    30739    464    2017-05-19 03:12:00    2017-05-19 03:12:00
91062    30739    795    2017-05-19 17:02:00    2017-05-19 17:02:00
91063    30739    564    2017-05-19 16:18:00    2017-05-19 16:18:00
91064    30739    606    2017-05-19 16:26:00    2017-05-19 16:26:00
91065    30740    873    2017-05-19 19:11:00    2017-05-19 19:11:00
91066    30740    647    2017-05-19 22:41:00    2017-05-19 22:41:00
91067    30740    900    2017-05-19 13:41:00    2017-05-19 13:41:00
91068    30740    655    2017-05-19 23:32:00    2017-05-19 23:32:00
91069    30740    746    2017-05-19 10:44:00    2017-05-19 10:44:00
91070    30741    527    2017-05-19 05:18:00    2017-05-19 05:18:00
91071    30741    507    2017-05-19 05:27:00    2017-05-19 05:27:00
91072    30741    664    2017-05-19 05:02:00    2017-05-19 05:02:00
91073    30741    673    2017-05-19 16:51:00    2017-05-19 16:51:00
91074    30741    575    2017-05-19 09:26:00    2017-05-19 09:26:00
91075    30742    473    2017-05-19 06:19:00    2017-05-19 06:19:00
91076    30742    721    2017-05-19 22:52:00    2017-05-19 22:52:00
91077    30742    582    2017-05-19 03:05:00    2017-05-19 03:05:00
91078    30742    556    2017-05-19 13:31:00    2017-05-19 13:31:00
91079    30742    770    2017-05-19 23:23:00    2017-05-19 23:23:00
91080    30743    576    2017-05-19 10:21:00    2017-05-19 10:21:00
91081    30743    852    2017-05-19 11:38:00    2017-05-19 11:38:00
91082    30743    681    2017-05-19 19:33:00    2017-05-19 19:33:00
91083    30743    696    2017-05-19 16:59:00    2017-05-19 16:59:00
91084    30743    605    2017-05-19 08:24:00    2017-05-19 08:24:00
91085    30744    513    2017-05-19 22:44:00    2017-05-19 22:44:00
91086    30744    533    2017-05-19 08:05:00    2017-05-19 08:05:00
91087    30744    771    2017-05-19 10:44:00    2017-05-19 10:44:00
91088    30744    495    2017-05-19 19:32:00    2017-05-19 19:32:00
91089    30744    804    2017-05-19 04:04:00    2017-05-19 04:04:00
91090    30745    859    2017-05-19 14:16:00    2017-05-19 14:16:00
91091    30745    785    2017-05-19 13:22:00    2017-05-19 13:22:00
91092    30745    801    2017-05-19 13:30:00    2017-05-19 13:30:00
91093    30745    829    2017-05-19 02:00:00    2017-05-19 02:00:00
91094    30745    780    2017-05-19 02:47:00    2017-05-19 02:47:00
91095    30746    744    2017-05-19 17:18:00    2017-05-19 17:18:00
91096    30746    463    2017-05-19 13:39:00    2017-05-19 13:39:00
91097    30746    816    2017-05-19 15:48:00    2017-05-19 15:48:00
91098    30746    724    2017-05-19 01:22:00    2017-05-19 01:22:00
91099    30746    908    2017-05-19 08:12:00    2017-05-19 08:12:00
91100    30747    575    2017-05-19 15:36:00    2017-05-19 15:36:00
91101    30747    633    2017-05-19 18:21:00    2017-05-19 18:21:00
91102    30747    746    2017-05-19 01:52:00    2017-05-19 01:52:00
91103    30747    508    2017-05-19 01:42:00    2017-05-19 01:42:00
91104    30747    934    2017-05-19 10:57:00    2017-05-19 10:57:00
91105    30748    883    2017-05-19 19:33:00    2017-05-19 19:33:00
91106    30748    557    2017-05-19 08:38:00    2017-05-19 08:38:00
91107    30748    939    2017-05-19 09:13:00    2017-05-19 09:13:00
91108    30748    697    2017-05-19 12:38:00    2017-05-19 12:38:00
91109    30748    875    2017-05-19 15:19:00    2017-05-19 15:19:00
91110    30749    685    2017-05-19 05:30:00    2017-05-19 05:30:00
91111    30749    777    2017-05-19 14:26:00    2017-05-19 14:26:00
91112    30749    885    2017-05-19 11:48:00    2017-05-19 11:48:00
91113    30749    561    2017-05-19 11:01:00    2017-05-19 11:01:00
91114    30749    488    2017-05-19 12:11:00    2017-05-19 12:11:00
91115    30750    943    2017-05-19 15:57:00    2017-05-19 15:57:00
91116    30750    952    2017-05-19 19:32:00    2017-05-19 19:32:00
91117    30750    765    2017-05-19 02:44:00    2017-05-19 02:44:00
91118    30750    546    2017-05-19 08:22:00    2017-05-19 08:22:00
91119    30750    491    2017-05-19 04:30:00    2017-05-19 04:30:00
91120    30751    870    2017-05-19 09:06:00    2017-05-19 09:06:00
91121    30751    545    2017-05-19 12:35:00    2017-05-19 12:35:00
91122    30751    682    2017-05-19 13:16:00    2017-05-19 13:16:00
91123    30751    590    2017-05-19 04:46:00    2017-05-19 04:46:00
91124    30751    920    2017-05-19 04:29:00    2017-05-19 04:29:00
91125    30752    629    2017-05-19 08:51:00    2017-05-19 08:51:00
91126    30752    810    2017-05-19 10:35:00    2017-05-19 10:35:00
91127    30752    572    2017-05-19 19:39:00    2017-05-19 19:39:00
91128    30752    553    2017-05-19 10:55:00    2017-05-19 10:55:00
91129    30752    645    2017-05-19 04:58:00    2017-05-19 04:58:00
91130    30753    472    2017-05-19 23:51:00    2017-05-19 23:51:00
91131    30753    808    2017-05-19 07:52:00    2017-05-19 07:52:00
91132    30753    581    2017-05-19 02:58:00    2017-05-19 02:58:00
91133    30753    517    2017-05-19 23:31:00    2017-05-19 23:31:00
91134    30753    880    2017-05-19 20:12:00    2017-05-19 20:12:00
91135    30754    600    2017-05-19 18:42:00    2017-05-19 18:42:00
91136    30754    563    2017-05-19 14:44:00    2017-05-19 14:44:00
91137    30754    467    2017-05-19 16:27:00    2017-05-19 16:27:00
91138    30754    865    2017-05-19 01:47:00    2017-05-19 01:47:00
91139    30754    721    2017-05-19 20:22:00    2017-05-19 20:22:00
91140    30755    553    2017-05-19 19:48:00    2017-05-19 19:48:00
91141    30755    830    2017-05-19 03:31:00    2017-05-19 03:31:00
91142    30755    466    2017-05-19 14:19:00    2017-05-19 14:19:00
91143    30755    552    2017-05-19 19:36:00    2017-05-19 19:36:00
91144    30755    885    2017-05-19 11:46:00    2017-05-19 11:46:00
91145    30756    949    2017-05-19 06:14:00    2017-05-19 06:14:00
91146    30756    504    2017-05-19 13:02:00    2017-05-19 13:02:00
91147    30756    914    2017-05-19 04:26:00    2017-05-19 04:26:00
91148    30756    569    2017-05-19 09:26:00    2017-05-19 09:26:00
91149    30756    724    2017-05-19 01:27:00    2017-05-19 01:27:00
91150    30757    907    2017-05-19 10:42:00    2017-05-19 10:42:00
91151    30757    929    2017-05-19 16:38:00    2017-05-19 16:38:00
91152    30757    761    2017-05-19 10:14:00    2017-05-19 10:14:00
91153    30757    630    2017-05-19 12:39:00    2017-05-19 12:39:00
91154    30757    868    2017-05-19 19:49:00    2017-05-19 19:49:00
91155    30758    480    2017-05-19 10:52:00    2017-05-19 10:52:00
91156    30758    469    2017-05-19 22:43:00    2017-05-19 22:43:00
91157    30758    481    2017-05-19 10:41:00    2017-05-19 10:41:00
91158    30758    603    2017-05-19 22:39:00    2017-05-19 22:39:00
91159    30758    760    2017-05-19 13:35:00    2017-05-19 13:35:00
91160    30759    917    2017-05-19 02:09:00    2017-05-19 02:09:00
91161    30759    699    2017-05-19 12:08:00    2017-05-19 12:08:00
91162    30759    757    2017-05-19 14:20:00    2017-05-19 14:20:00
91163    30759    682    2017-05-19 02:43:00    2017-05-19 02:43:00
91164    30759    766    2017-05-19 22:38:00    2017-05-19 22:38:00
91165    30760    916    2017-05-19 04:46:00    2017-05-19 04:46:00
91166    30760    901    2017-05-19 23:29:00    2017-05-19 23:29:00
91167    30760    514    2017-05-19 09:22:00    2017-05-19 09:22:00
91168    30760    885    2017-05-19 08:33:00    2017-05-19 08:33:00
91169    30760    617    2017-05-19 22:25:00    2017-05-19 22:25:00
91170    30761    480    2017-05-19 14:08:00    2017-05-19 14:08:00
91171    30761    491    2017-05-19 02:15:00    2017-05-19 02:15:00
91172    30761    738    2017-05-19 07:13:00    2017-05-19 07:13:00
91173    30761    778    2017-05-19 22:34:00    2017-05-19 22:34:00
91174    30761    470    2017-05-19 01:43:00    2017-05-19 01:43:00
91175    30762    743    2017-05-19 08:43:00    2017-05-19 08:43:00
91176    30762    560    2017-05-19 19:21:00    2017-05-19 19:21:00
91177    30762    490    2017-05-19 02:23:00    2017-05-19 02:23:00
91178    30762    707    2017-05-19 06:52:00    2017-05-19 06:52:00
91179    30762    529    2017-05-19 07:34:00    2017-05-19 07:34:00
91180    30763    868    2017-05-19 12:14:00    2017-05-19 12:14:00
91181    30763    573    2017-05-19 15:06:00    2017-05-19 15:06:00
91182    30763    813    2017-05-19 12:55:00    2017-05-19 12:55:00
91183    30763    723    2017-05-19 13:51:00    2017-05-19 13:51:00
91184    30763    761    2017-05-19 10:23:00    2017-05-19 10:23:00
91185    30764    596    2017-05-19 03:14:00    2017-05-19 03:14:00
91186    30764    480    2017-05-19 21:09:00    2017-05-19 21:09:00
91187    30764    875    2017-05-19 18:22:00    2017-05-19 18:22:00
91188    30764    897    2017-05-19 08:47:00    2017-05-19 08:47:00
91189    30764    734    2017-05-19 14:08:00    2017-05-19 14:08:00
91190    30765    940    2017-05-19 20:53:00    2017-05-19 20:53:00
91191    30765    663    2017-05-19 16:07:00    2017-05-19 16:07:00
91192    30765    782    2017-05-19 07:05:00    2017-05-19 07:05:00
91193    30765    822    2017-05-19 22:20:00    2017-05-19 22:20:00
91194    30765    606    2017-05-19 03:37:00    2017-05-19 03:37:00
91195    30766    754    2017-05-19 10:58:00    2017-05-19 10:58:00
91196    30766    951    2017-05-19 08:34:00    2017-05-19 08:34:00
91197    30766    777    2017-05-19 10:16:00    2017-05-19 10:16:00
91198    30766    788    2017-05-19 05:15:00    2017-05-19 05:15:00
91199    30766    809    2017-05-19 03:11:00    2017-05-19 03:11:00
91200    30767    730    2017-05-19 06:26:00    2017-05-19 06:26:00
91201    30767    846    2017-05-19 15:05:00    2017-05-19 15:05:00
91202    30767    694    2017-05-19 12:18:00    2017-05-19 12:18:00
91203    30767    596    2017-05-19 18:16:00    2017-05-19 18:16:00
91204    30767    684    2017-05-19 06:33:00    2017-05-19 06:33:00
91205    30768    620    2017-05-19 13:18:00    2017-05-19 13:18:00
91206    30768    850    2017-05-19 07:57:00    2017-05-19 07:57:00
91207    30768    861    2017-05-19 10:29:00    2017-05-19 10:29:00
91208    30768    626    2017-05-19 02:34:00    2017-05-19 02:34:00
91209    30768    936    2017-05-19 09:25:00    2017-05-19 09:25:00
91210    30769    859    2017-05-19 15:39:00    2017-05-19 15:39:00
91211    30769    884    2017-05-19 12:35:00    2017-05-19 12:35:00
91212    30769    901    2017-05-19 03:43:00    2017-05-19 03:43:00
91213    30769    879    2017-05-19 14:03:00    2017-05-19 14:03:00
91214    30769    858    2017-05-19 23:15:00    2017-05-19 23:15:00
91215    30770    954    2017-05-19 21:47:00    2017-05-19 21:47:00
91216    30770    645    2017-05-19 04:29:00    2017-05-19 04:29:00
91217    30770    723    2017-05-19 11:08:00    2017-05-19 11:08:00
91218    30770    570    2017-05-19 15:20:00    2017-05-19 15:20:00
91219    30770    626    2017-05-19 03:31:00    2017-05-19 03:31:00
91220    30771    835    2017-05-19 14:13:00    2017-05-19 14:13:00
91221    30771    782    2017-05-19 08:30:00    2017-05-19 08:30:00
91222    30771    920    2017-05-19 22:24:00    2017-05-19 22:24:00
91223    30771    507    2017-05-19 07:47:00    2017-05-19 07:47:00
91224    30771    742    2017-05-19 20:08:00    2017-05-19 20:08:00
91225    30772    660    2017-05-19 17:23:00    2017-05-19 17:23:00
91226    30772    599    2017-05-19 21:16:00    2017-05-19 21:16:00
91227    30772    707    2017-05-19 01:58:00    2017-05-19 01:58:00
91228    30772    619    2017-05-19 05:48:00    2017-05-19 05:48:00
91229    30772    549    2017-05-19 16:01:00    2017-05-19 16:01:00
91230    30773    628    2017-05-19 10:11:00    2017-05-19 10:11:00
91231    30773    631    2017-05-19 21:12:00    2017-05-19 21:12:00
91232    30773    464    2017-05-19 09:40:00    2017-05-19 09:40:00
91233    30773    745    2017-05-19 10:35:00    2017-05-19 10:35:00
91234    30773    744    2017-05-19 05:46:00    2017-05-19 05:46:00
91235    30774    640    2017-05-19 01:17:00    2017-05-19 01:17:00
91236    30774    594    2017-05-19 04:09:00    2017-05-19 04:09:00
91237    30774    599    2017-05-19 06:04:00    2017-05-19 06:04:00
91238    30774    500    2017-05-19 07:08:00    2017-05-19 07:08:00
91239    30774    957    2017-05-19 04:36:00    2017-05-19 04:36:00
91240    30775    948    2017-05-19 04:04:00    2017-05-19 04:04:00
91241    30775    522    2017-05-19 06:19:00    2017-05-19 06:19:00
91242    30775    487    2017-05-19 16:25:00    2017-05-19 16:25:00
91243    30775    844    2017-05-19 11:28:00    2017-05-19 11:28:00
91244    30775    586    2017-05-19 23:41:00    2017-05-19 23:41:00
91245    30776    562    2017-05-19 11:42:00    2017-05-19 11:42:00
91246    30776    608    2017-05-19 03:26:00    2017-05-19 03:26:00
91247    30776    607    2017-05-19 23:34:00    2017-05-19 23:34:00
91248    30776    765    2017-05-19 18:16:00    2017-05-19 18:16:00
91249    30776    597    2017-05-19 02:45:00    2017-05-19 02:45:00
91250    30777    490    2017-05-19 07:07:00    2017-05-19 07:07:00
91251    30777    511    2017-05-19 21:52:00    2017-05-19 21:52:00
91252    30777    481    2017-05-19 03:29:00    2017-05-19 03:29:00
91253    30777    759    2017-05-19 22:29:00    2017-05-19 22:29:00
91254    30777    828    2017-05-19 18:16:00    2017-05-19 18:16:00
91255    30778    752    2017-05-19 06:37:00    2017-05-19 06:37:00
91256    30778    636    2017-05-19 13:25:00    2017-05-19 13:25:00
91257    30778    490    2017-05-19 18:16:00    2017-05-19 18:16:00
91258    30778    694    2017-05-19 20:03:00    2017-05-19 20:03:00
91259    30778    864    2017-05-19 16:31:00    2017-05-19 16:31:00
91260    30779    645    2017-05-19 05:14:00    2017-05-19 05:14:00
91261    30779    878    2017-05-19 04:27:00    2017-05-19 04:27:00
91262    30779    512    2017-05-19 13:24:00    2017-05-19 13:24:00
91263    30779    542    2017-05-19 14:04:00    2017-05-19 14:04:00
91264    30779    824    2017-05-19 22:59:00    2017-05-19 22:59:00
91265    30780    671    2017-05-19 02:59:00    2017-05-19 02:59:00
91266    30780    538    2017-05-19 15:21:00    2017-05-19 15:21:00
91267    30780    540    2017-05-19 07:41:00    2017-05-19 07:41:00
91268    30780    957    2017-05-19 16:56:00    2017-05-19 16:56:00
91269    30780    586    2017-05-19 12:00:00    2017-05-19 12:00:00
91270    30781    632    2017-05-19 15:39:00    2017-05-19 15:39:00
91271    30781    703    2017-05-19 23:42:00    2017-05-19 23:42:00
91272    30781    879    2017-05-19 11:14:00    2017-05-19 11:14:00
91273    30781    495    2017-05-19 07:03:00    2017-05-19 07:03:00
91274    30781    617    2017-05-19 09:14:00    2017-05-19 09:14:00
91275    30782    872    2017-05-19 23:28:00    2017-05-19 23:28:00
91276    30782    937    2017-05-19 08:57:00    2017-05-19 08:57:00
91277    30782    465    2017-05-19 03:52:00    2017-05-19 03:52:00
91278    30782    511    2017-05-19 05:36:00    2017-05-19 05:36:00
91279    30782    933    2017-05-19 13:18:00    2017-05-19 13:18:00
91280    30783    687    2017-05-19 11:45:00    2017-05-19 11:45:00
91281    30783    659    2017-05-19 14:59:00    2017-05-19 14:59:00
91282    30783    618    2017-05-19 12:50:00    2017-05-19 12:50:00
91283    30783    958    2017-05-19 05:49:00    2017-05-19 05:49:00
91284    30783    625    2017-05-19 09:16:00    2017-05-19 09:16:00
91285    30784    825    2017-05-19 07:21:00    2017-05-19 07:21:00
91286    30784    512    2017-05-19 06:01:00    2017-05-19 06:01:00
91287    30784    940    2017-05-19 23:21:00    2017-05-19 23:21:00
91288    30784    922    2017-05-19 19:28:00    2017-05-19 19:28:00
91289    30784    776    2017-05-19 01:39:00    2017-05-19 01:39:00
91290    30785    960    2017-05-19 21:52:00    2017-05-19 21:52:00
91291    30785    888    2017-05-19 21:53:00    2017-05-19 21:53:00
91292    30785    785    2017-05-19 08:33:00    2017-05-19 08:33:00
91293    30785    532    2017-05-19 11:04:00    2017-05-19 11:04:00
91294    30785    800    2017-05-19 21:15:00    2017-05-19 21:15:00
91295    30786    647    2017-05-19 18:05:00    2017-05-19 18:05:00
91296    30786    849    2017-05-19 15:15:00    2017-05-19 15:15:00
91297    30786    631    2017-05-19 22:35:00    2017-05-19 22:35:00
91298    30786    862    2017-05-19 07:12:00    2017-05-19 07:12:00
91299    30786    751    2017-05-19 18:21:00    2017-05-19 18:21:00
91300    30787    675    2017-05-19 19:04:00    2017-05-19 19:04:00
91301    30787    613    2017-05-19 15:51:00    2017-05-19 15:51:00
91302    30787    833    2017-05-19 06:14:00    2017-05-19 06:14:00
91303    30787    893    2017-05-19 01:44:00    2017-05-19 01:44:00
91304    30787    533    2017-05-19 14:21:00    2017-05-19 14:21:00
91305    30788    603    2017-05-19 14:11:00    2017-05-19 14:11:00
91306    30788    540    2017-05-19 14:40:00    2017-05-19 14:40:00
91307    30788    735    2017-05-19 13:04:00    2017-05-19 13:04:00
91308    30788    706    2017-05-19 06:32:00    2017-05-19 06:32:00
91309    30788    905    2017-05-19 21:07:00    2017-05-19 21:07:00
91310    30789    531    2017-05-19 04:30:00    2017-05-19 04:30:00
91311    30789    473    2017-05-19 12:50:00    2017-05-19 12:50:00
91312    30789    489    2017-05-19 04:27:00    2017-05-19 04:27:00
91313    30789    870    2017-05-19 10:08:00    2017-05-19 10:08:00
91314    30789    777    2017-05-19 01:17:00    2017-05-19 01:17:00
91315    30790    801    2017-05-19 13:48:00    2017-05-19 13:48:00
91316    30790    853    2017-05-19 01:26:00    2017-05-19 01:26:00
91317    30790    634    2017-05-19 18:42:00    2017-05-19 18:42:00
91318    30790    764    2017-05-19 05:15:00    2017-05-19 05:15:00
91319    30790    469    2017-05-19 20:47:00    2017-05-19 20:47:00
91320    30791    770    2017-05-19 06:39:00    2017-05-19 06:39:00
91321    30791    915    2017-05-19 20:38:00    2017-05-19 20:38:00
91322    30791    544    2017-05-19 09:56:00    2017-05-19 09:56:00
91323    30791    570    2017-05-19 21:03:00    2017-05-19 21:03:00
91324    30791    690    2017-05-19 07:07:00    2017-05-19 07:07:00
91325    30792    713    2017-05-19 17:56:00    2017-05-19 17:56:00
91326    30792    676    2017-05-19 12:50:00    2017-05-19 12:50:00
91327    30792    779    2017-05-19 19:15:00    2017-05-19 19:15:00
91328    30792    680    2017-05-19 23:22:00    2017-05-19 23:22:00
91329    30792    498    2017-05-19 07:15:00    2017-05-19 07:15:00
91330    30793    707    2017-05-19 14:43:00    2017-05-19 14:43:00
91331    30793    776    2017-05-19 03:00:00    2017-05-19 03:00:00
91332    30793    644    2017-05-19 23:20:00    2017-05-19 23:20:00
91333    30793    496    2017-05-19 17:52:00    2017-05-19 17:52:00
91334    30793    831    2017-05-19 05:47:00    2017-05-19 05:47:00
91335    30794    778    2017-05-19 11:14:00    2017-05-19 11:14:00
91336    30794    874    2017-05-19 13:00:00    2017-05-19 13:00:00
91337    30794    927    2017-05-19 10:11:00    2017-05-19 10:11:00
91338    30794    831    2017-05-19 06:28:00    2017-05-19 06:28:00
91339    30794    523    2017-05-19 01:39:00    2017-05-19 01:39:00
91340    30795    481    2017-05-19 11:57:00    2017-05-19 11:57:00
91341    30795    724    2017-05-19 14:59:00    2017-05-19 14:59:00
91342    30795    807    2017-05-19 10:32:00    2017-05-19 10:32:00
91343    30795    856    2017-05-19 19:46:00    2017-05-19 19:46:00
91344    30795    493    2017-05-19 06:20:00    2017-05-19 06:20:00
91345    30796    946    2017-05-19 17:14:00    2017-05-19 17:14:00
91346    30796    513    2017-05-19 03:54:00    2017-05-19 03:54:00
91347    30796    836    2017-05-19 13:19:00    2017-05-19 13:19:00
91348    30796    886    2017-05-19 05:16:00    2017-05-19 05:16:00
91349    30796    616    2017-05-19 16:20:00    2017-05-19 16:20:00
91350    30797    916    2017-05-19 01:13:00    2017-05-19 01:13:00
91351    30797    606    2017-05-19 23:41:00    2017-05-19 23:41:00
91352    30797    488    2017-05-19 15:43:00    2017-05-19 15:43:00
91353    30797    842    2017-05-19 05:50:00    2017-05-19 05:50:00
91354    30797    561    2017-05-19 02:16:00    2017-05-19 02:16:00
91355    30798    777    2017-05-19 05:56:00    2017-05-19 05:56:00
91356    30798    550    2017-05-19 12:40:00    2017-05-19 12:40:00
91357    30798    818    2017-05-19 07:20:00    2017-05-19 07:20:00
91358    30798    818    2017-05-19 13:01:00    2017-05-19 13:01:00
91359    30798    490    2017-05-19 20:13:00    2017-05-19 20:13:00
91360    30799    850    2017-05-19 07:45:00    2017-05-19 07:45:00
91361    30799    832    2017-05-19 01:04:00    2017-05-19 01:04:00
91362    30799    658    2017-05-19 15:35:00    2017-05-19 15:35:00
91363    30799    698    2017-05-19 20:15:00    2017-05-19 20:15:00
91364    30799    491    2017-05-19 21:48:00    2017-05-19 21:48:00
91365    30800    613    2017-05-19 14:06:00    2017-05-19 14:06:00
91366    30800    710    2017-05-19 01:00:00    2017-05-19 01:00:00
91367    30800    520    2017-05-19 04:06:00    2017-05-19 04:06:00
91368    30800    883    2017-05-19 02:55:00    2017-05-19 02:55:00
91369    30800    533    2017-05-19 04:59:00    2017-05-19 04:59:00
91370    30801    923    2017-05-19 20:50:00    2017-05-19 20:50:00
91371    30801    856    2017-05-19 21:46:00    2017-05-19 21:46:00
91372    30801    577    2017-05-19 02:03:00    2017-05-19 02:03:00
91373    30801    523    2017-05-19 10:22:00    2017-05-19 10:22:00
91374    30801    683    2017-05-19 08:25:00    2017-05-19 08:25:00
91375    30802    606    2017-05-19 20:07:00    2017-05-19 20:07:00
91376    30802    475    2017-05-19 23:32:00    2017-05-19 23:32:00
91377    30802    685    2017-05-19 14:11:00    2017-05-19 14:11:00
91378    30802    829    2017-05-19 04:41:00    2017-05-19 04:41:00
91379    30802    768    2017-05-19 03:42:00    2017-05-19 03:42:00
91380    30803    672    2017-05-19 01:41:00    2017-05-19 01:41:00
91381    30803    632    2017-05-19 03:25:00    2017-05-19 03:25:00
91382    30803    749    2017-05-19 03:22:00    2017-05-19 03:22:00
91383    30803    908    2017-05-19 19:44:00    2017-05-19 19:44:00
91384    30803    680    2017-05-19 05:42:00    2017-05-19 05:42:00
91385    30804    868    2017-05-19 07:24:00    2017-05-19 07:24:00
91386    30804    544    2017-05-19 13:10:00    2017-05-19 13:10:00
91387    30804    940    2017-05-19 11:06:00    2017-05-19 11:06:00
91388    30804    880    2017-05-19 23:34:00    2017-05-19 23:34:00
91389    30804    791    2017-05-19 01:40:00    2017-05-19 01:40:00
91390    30805    465    2017-05-19 01:31:00    2017-05-19 01:31:00
91391    30805    873    2017-05-19 05:17:00    2017-05-19 05:17:00
91392    30805    815    2017-05-19 15:46:00    2017-05-19 15:46:00
91393    30805    499    2017-05-19 11:40:00    2017-05-19 11:40:00
91394    30805    707    2017-05-19 03:51:00    2017-05-19 03:51:00
91395    30806    610    2017-05-19 12:55:00    2017-05-19 12:55:00
91396    30806    764    2017-05-19 18:41:00    2017-05-19 18:41:00
91397    30806    529    2017-05-19 06:08:00    2017-05-19 06:08:00
91398    30806    897    2017-05-19 04:04:00    2017-05-19 04:04:00
91399    30806    804    2017-05-19 19:27:00    2017-05-19 19:27:00
91400    30807    894    2017-05-19 04:49:00    2017-05-19 04:49:00
91401    30807    924    2017-05-19 08:13:00    2017-05-19 08:13:00
91402    30807    465    2017-05-19 15:03:00    2017-05-19 15:03:00
91403    30807    616    2017-05-19 12:30:00    2017-05-19 12:30:00
91404    30807    654    2017-05-19 18:36:00    2017-05-19 18:36:00
91405    30808    688    2017-05-19 02:29:00    2017-05-19 02:29:00
91406    30808    713    2017-05-19 20:40:00    2017-05-19 20:40:00
91407    30808    623    2017-05-19 06:35:00    2017-05-19 06:35:00
91408    30808    570    2017-05-19 08:17:00    2017-05-19 08:17:00
91409    30808    890    2017-05-19 05:46:00    2017-05-19 05:46:00
91410    30809    484    2017-05-19 06:28:00    2017-05-19 06:28:00
91411    30809    476    2017-05-19 12:58:00    2017-05-19 12:58:00
91412    30809    463    2017-05-19 03:05:00    2017-05-19 03:05:00
91413    30809    798    2017-05-19 12:01:00    2017-05-19 12:01:00
91414    30809    481    2017-05-19 23:09:00    2017-05-19 23:09:00
91415    30810    500    2017-05-19 22:41:00    2017-05-19 22:41:00
91416    30810    724    2017-05-19 09:15:00    2017-05-19 09:15:00
91417    30810    475    2017-05-19 02:00:00    2017-05-19 02:00:00
91418    30810    608    2017-05-19 18:47:00    2017-05-19 18:47:00
91419    30810    929    2017-05-19 10:38:00    2017-05-19 10:38:00
91420    30811    865    2017-05-19 08:14:00    2017-05-19 08:14:00
91421    30811    949    2017-05-19 22:38:00    2017-05-19 22:38:00
91422    30811    537    2017-05-19 20:35:00    2017-05-19 20:35:00
91423    30811    943    2017-05-19 07:05:00    2017-05-19 07:05:00
91424    30811    676    2017-05-19 02:33:00    2017-05-19 02:33:00
91425    30812    761    2017-05-19 01:13:00    2017-05-19 01:13:00
91426    30812    796    2017-05-19 07:27:00    2017-05-19 07:27:00
91427    30812    919    2017-05-19 05:48:00    2017-05-19 05:48:00
91428    30812    843    2017-05-19 20:41:00    2017-05-19 20:41:00
91429    30812    945    2017-05-19 06:20:00    2017-05-19 06:20:00
91430    30813    572    2017-05-19 15:44:00    2017-05-19 15:44:00
91431    30813    522    2017-05-19 01:02:00    2017-05-19 01:02:00
91432    30813    867    2017-05-19 08:57:00    2017-05-19 08:57:00
91433    30813    767    2017-05-19 15:28:00    2017-05-19 15:28:00
91434    30813    634    2017-05-19 12:22:00    2017-05-19 12:22:00
91435    30814    633    2017-05-19 21:20:00    2017-05-19 21:20:00
91436    30814    677    2017-05-19 08:13:00    2017-05-19 08:13:00
91437    30814    797    2017-05-19 14:01:00    2017-05-19 14:01:00
91438    30814    959    2017-05-19 08:35:00    2017-05-19 08:35:00
91439    30814    876    2017-05-19 13:57:00    2017-05-19 13:57:00
91440    30815    805    2017-05-19 21:47:00    2017-05-19 21:47:00
91441    30815    760    2017-05-19 03:20:00    2017-05-19 03:20:00
91442    30815    907    2017-05-19 12:00:00    2017-05-19 12:00:00
91443    30815    652    2017-05-19 04:09:00    2017-05-19 04:09:00
91444    30815    642    2017-05-19 05:14:00    2017-05-19 05:14:00
91445    30816    619    2017-05-19 13:00:00    2017-05-19 13:00:00
91446    30816    706    2017-05-19 03:59:00    2017-05-19 03:59:00
91447    30816    917    2017-05-19 18:55:00    2017-05-19 18:55:00
91448    30816    550    2017-05-19 18:13:00    2017-05-19 18:13:00
91449    30816    579    2017-05-19 04:13:00    2017-05-19 04:13:00
91450    30817    660    2017-05-19 12:00:00    2017-05-19 12:00:00
91451    30817    691    2017-05-19 19:21:00    2017-05-19 19:21:00
91452    30817    665    2017-05-19 04:28:00    2017-05-19 04:28:00
91453    30817    535    2017-05-19 22:34:00    2017-05-19 22:34:00
91454    30817    734    2017-05-19 13:37:00    2017-05-19 13:37:00
91455    30818    757    2017-05-19 22:41:00    2017-05-19 22:41:00
91456    30818    707    2017-05-19 11:29:00    2017-05-19 11:29:00
91457    30818    589    2017-05-19 09:47:00    2017-05-19 09:47:00
91458    30818    637    2017-05-19 13:03:00    2017-05-19 13:03:00
91459    30818    753    2017-05-19 20:18:00    2017-05-19 20:18:00
91460    30819    495    2017-05-19 18:08:00    2017-05-19 18:08:00
91461    30819    723    2017-05-19 08:12:00    2017-05-19 08:12:00
91462    30819    648    2017-05-19 22:32:00    2017-05-19 22:32:00
91463    30819    856    2017-05-19 22:58:00    2017-05-19 22:58:00
91464    30819    878    2017-05-19 15:02:00    2017-05-19 15:02:00
91465    30820    492    2017-05-19 11:05:00    2017-05-19 11:05:00
91466    30820    603    2017-05-19 12:13:00    2017-05-19 12:13:00
91467    30820    820    2017-05-19 13:35:00    2017-05-19 13:35:00
91468    30820    830    2017-05-19 20:07:00    2017-05-19 20:07:00
91469    30820    734    2017-05-19 03:53:00    2017-05-19 03:53:00
91470    30821    544    2017-05-19 18:52:00    2017-05-19 18:52:00
91471    30821    564    2017-05-19 10:26:00    2017-05-19 10:26:00
91472    30821    495    2017-05-19 01:10:00    2017-05-19 01:10:00
91473    30821    614    2017-05-19 08:38:00    2017-05-19 08:38:00
91474    30821    626    2017-05-19 15:35:00    2017-05-19 15:35:00
91475    30822    736    2017-05-20 06:34:00    2017-05-20 06:34:00
91476    30822    479    2017-05-20 06:43:00    2017-05-20 06:43:00
91477    30822    927    2017-05-20 19:49:00    2017-05-20 19:49:00
91478    30822    953    2017-05-20 12:48:00    2017-05-20 12:48:00
91479    30822    855    2017-05-20 17:09:00    2017-05-20 17:09:00
91480    30823    859    2017-05-20 09:56:00    2017-05-20 09:56:00
91481    30823    555    2017-05-20 08:11:00    2017-05-20 08:11:00
91482    30823    703    2017-05-20 02:58:00    2017-05-20 02:58:00
91483    30823    920    2017-05-20 12:52:00    2017-05-20 12:52:00
91484    30823    866    2017-05-20 09:11:00    2017-05-20 09:11:00
91485    30824    875    2017-05-20 03:45:00    2017-05-20 03:45:00
91486    30824    784    2017-05-20 20:59:00    2017-05-20 20:59:00
91487    30824    751    2017-05-20 13:26:00    2017-05-20 13:26:00
91488    30824    821    2017-05-20 16:18:00    2017-05-20 16:18:00
91489    30824    534    2017-05-20 19:34:00    2017-05-20 19:34:00
91490    30825    548    2017-05-20 21:53:00    2017-05-20 21:53:00
91491    30825    793    2017-05-20 17:17:00    2017-05-20 17:17:00
91492    30825    684    2017-05-20 18:18:00    2017-05-20 18:18:00
91493    30825    513    2017-05-20 21:20:00    2017-05-20 21:20:00
91494    30825    487    2017-05-20 02:51:00    2017-05-20 02:51:00
91495    30826    802    2017-05-20 08:18:00    2017-05-20 08:18:00
91496    30826    502    2017-05-20 06:18:00    2017-05-20 06:18:00
91497    30826    481    2017-05-20 20:02:00    2017-05-20 20:02:00
91498    30826    666    2017-05-20 07:37:00    2017-05-20 07:37:00
91499    30826    816    2017-05-20 19:06:00    2017-05-20 19:06:00
91500    30827    635    2017-05-20 04:14:00    2017-05-20 04:14:00
91501    30827    846    2017-05-20 12:29:00    2017-05-20 12:29:00
91502    30827    563    2017-05-20 01:02:00    2017-05-20 01:02:00
91503    30827    768    2017-05-20 17:13:00    2017-05-20 17:13:00
91504    30827    756    2017-05-20 10:21:00    2017-05-20 10:21:00
91505    30828    551    2017-05-20 14:53:00    2017-05-20 14:53:00
91506    30828    659    2017-05-20 07:19:00    2017-05-20 07:19:00
91507    30828    469    2017-05-20 12:56:00    2017-05-20 12:56:00
91508    30828    842    2017-05-20 22:15:00    2017-05-20 22:15:00
91509    30828    680    2017-05-20 01:52:00    2017-05-20 01:52:00
91510    30829    786    2017-05-20 21:19:00    2017-05-20 21:19:00
91511    30829    776    2017-05-20 05:29:00    2017-05-20 05:29:00
91512    30829    595    2017-05-20 18:07:00    2017-05-20 18:07:00
91513    30829    621    2017-05-20 15:59:00    2017-05-20 15:59:00
91514    30829    503    2017-05-20 01:46:00    2017-05-20 01:46:00
91515    30830    929    2017-05-20 09:20:00    2017-05-20 09:20:00
91516    30830    883    2017-05-20 14:20:00    2017-05-20 14:20:00
91517    30830    899    2017-05-20 14:19:00    2017-05-20 14:19:00
91518    30830    548    2017-05-20 13:24:00    2017-05-20 13:24:00
91519    30830    945    2017-05-20 16:46:00    2017-05-20 16:46:00
91520    30831    788    2017-05-20 15:53:00    2017-05-20 15:53:00
91521    30831    499    2017-05-20 13:19:00    2017-05-20 13:19:00
91522    30831    717    2017-05-20 20:30:00    2017-05-20 20:30:00
91523    30831    894    2017-05-20 03:43:00    2017-05-20 03:43:00
91524    30831    762    2017-05-20 04:42:00    2017-05-20 04:42:00
91525    30832    777    2017-05-20 14:39:00    2017-05-20 14:39:00
91526    30832    706    2017-05-20 02:01:00    2017-05-20 02:01:00
91527    30832    701    2017-05-20 02:06:00    2017-05-20 02:06:00
91528    30832    816    2017-05-20 01:11:00    2017-05-20 01:11:00
91529    30832    933    2017-05-20 04:01:00    2017-05-20 04:01:00
91530    30833    521    2017-05-20 06:56:00    2017-05-20 06:56:00
91531    30833    947    2017-05-20 23:21:00    2017-05-20 23:21:00
91532    30833    793    2017-05-20 05:10:00    2017-05-20 05:10:00
91533    30833    678    2017-05-20 14:14:00    2017-05-20 14:14:00
91534    30833    534    2017-05-20 14:24:00    2017-05-20 14:24:00
91535    30834    872    2017-05-20 16:18:00    2017-05-20 16:18:00
91536    30834    691    2017-05-20 11:11:00    2017-05-20 11:11:00
91537    30834    634    2017-05-20 07:00:00    2017-05-20 07:00:00
91538    30834    598    2017-05-20 09:16:00    2017-05-20 09:16:00
91539    30834    516    2017-05-20 04:12:00    2017-05-20 04:12:00
91540    30835    548    2017-05-20 15:32:00    2017-05-20 15:32:00
91541    30835    490    2017-05-20 18:51:00    2017-05-20 18:51:00
91542    30835    803    2017-05-20 02:40:00    2017-05-20 02:40:00
91543    30835    674    2017-05-20 05:34:00    2017-05-20 05:34:00
91544    30835    678    2017-05-20 16:35:00    2017-05-20 16:35:00
91545    30836    573    2017-05-20 11:04:00    2017-05-20 11:04:00
91546    30836    836    2017-05-20 14:14:00    2017-05-20 14:14:00
91547    30836    651    2017-05-20 08:39:00    2017-05-20 08:39:00
91548    30836    640    2017-05-20 12:58:00    2017-05-20 12:58:00
91549    30836    618    2017-05-20 07:17:00    2017-05-20 07:17:00
91550    30837    535    2017-05-20 06:11:00    2017-05-20 06:11:00
91551    30837    635    2017-05-20 03:45:00    2017-05-20 03:45:00
91552    30837    660    2017-05-20 14:38:00    2017-05-20 14:38:00
91553    30837    661    2017-05-20 06:48:00    2017-05-20 06:48:00
91554    30837    888    2017-05-20 11:16:00    2017-05-20 11:16:00
91555    30838    479    2017-05-20 01:53:00    2017-05-20 01:53:00
91556    30838    871    2017-05-20 18:00:00    2017-05-20 18:00:00
91557    30838    731    2017-05-20 11:17:00    2017-05-20 11:17:00
91558    30838    580    2017-05-20 12:11:00    2017-05-20 12:11:00
91559    30838    867    2017-05-20 16:54:00    2017-05-20 16:54:00
91560    30839    721    2017-05-20 20:18:00    2017-05-20 20:18:00
91561    30839    805    2017-05-20 11:46:00    2017-05-20 11:46:00
91562    30839    785    2017-05-20 16:23:00    2017-05-20 16:23:00
91563    30839    598    2017-05-20 07:03:00    2017-05-20 07:03:00
91564    30839    758    2017-05-20 10:30:00    2017-05-20 10:30:00
91565    30840    542    2017-05-20 13:52:00    2017-05-20 13:52:00
91566    30840    913    2017-05-20 13:32:00    2017-05-20 13:32:00
91567    30840    673    2017-05-20 05:22:00    2017-05-20 05:22:00
91568    30840    601    2017-05-20 17:43:00    2017-05-20 17:43:00
91569    30840    575    2017-05-20 18:01:00    2017-05-20 18:01:00
91570    30841    573    2017-05-20 21:55:00    2017-05-20 21:55:00
91571    30841    949    2017-05-20 09:12:00    2017-05-20 09:12:00
91572    30841    681    2017-05-20 07:12:00    2017-05-20 07:12:00
91573    30841    895    2017-05-20 06:38:00    2017-05-20 06:38:00
91574    30841    468    2017-05-20 06:55:00    2017-05-20 06:55:00
91575    30842    714    2017-05-20 17:21:00    2017-05-20 17:21:00
91576    30842    615    2017-05-20 19:00:00    2017-05-20 19:00:00
91577    30842    839    2017-05-20 19:38:00    2017-05-20 19:38:00
91578    30842    555    2017-05-20 12:20:00    2017-05-20 12:20:00
91579    30842    645    2017-05-20 15:43:00    2017-05-20 15:43:00
91580    30843    852    2017-05-20 13:52:00    2017-05-20 13:52:00
91581    30843    688    2017-05-20 06:47:00    2017-05-20 06:47:00
91582    30843    753    2017-05-20 21:46:00    2017-05-20 21:46:00
91583    30843    720    2017-05-20 22:28:00    2017-05-20 22:28:00
91584    30843    688    2017-05-20 11:04:00    2017-05-20 11:04:00
91585    30844    582    2017-05-20 02:42:00    2017-05-20 02:42:00
91586    30844    912    2017-05-20 09:30:00    2017-05-20 09:30:00
91587    30844    685    2017-05-20 01:18:00    2017-05-20 01:18:00
91588    30844    828    2017-05-20 08:20:00    2017-05-20 08:20:00
91589    30844    472    2017-05-20 17:08:00    2017-05-20 17:08:00
91590    30845    824    2017-05-20 22:30:00    2017-05-20 22:30:00
91591    30845    816    2017-05-20 06:01:00    2017-05-20 06:01:00
91592    30845    700    2017-05-20 17:52:00    2017-05-20 17:52:00
91593    30845    507    2017-05-20 07:57:00    2017-05-20 07:57:00
91594    30845    956    2017-05-20 14:19:00    2017-05-20 14:19:00
91595    30846    495    2017-05-20 11:38:00    2017-05-20 11:38:00
91596    30846    749    2017-05-20 12:39:00    2017-05-20 12:39:00
91597    30846    895    2017-05-20 15:35:00    2017-05-20 15:35:00
91598    30846    850    2017-05-20 13:46:00    2017-05-20 13:46:00
91599    30846    621    2017-05-20 11:27:00    2017-05-20 11:27:00
91600    30847    898    2017-05-20 15:44:00    2017-05-20 15:44:00
91601    30847    755    2017-05-20 20:31:00    2017-05-20 20:31:00
91602    30847    767    2017-05-20 04:11:00    2017-05-20 04:11:00
91603    30847    634    2017-05-20 22:02:00    2017-05-20 22:02:00
91604    30847    947    2017-05-20 23:57:00    2017-05-20 23:57:00
91605    30848    797    2017-05-20 13:44:00    2017-05-20 13:44:00
91606    30848    548    2017-05-20 15:30:00    2017-05-20 15:30:00
91607    30848    923    2017-05-20 22:20:00    2017-05-20 22:20:00
91608    30848    956    2017-05-20 06:52:00    2017-05-20 06:52:00
91609    30848    774    2017-05-20 14:51:00    2017-05-20 14:51:00
91610    30849    515    2017-05-20 12:57:00    2017-05-20 12:57:00
91611    30849    761    2017-05-20 04:33:00    2017-05-20 04:33:00
91612    30849    512    2017-05-20 07:47:00    2017-05-20 07:47:00
91613    30849    522    2017-05-20 09:56:00    2017-05-20 09:56:00
91614    30849    765    2017-05-20 18:08:00    2017-05-20 18:08:00
91615    30850    950    2017-05-20 07:51:00    2017-05-20 07:51:00
91616    30850    464    2017-05-20 03:40:00    2017-05-20 03:40:00
91617    30850    797    2017-05-20 22:32:00    2017-05-20 22:32:00
91618    30850    820    2017-05-20 03:57:00    2017-05-20 03:57:00
91619    30850    488    2017-05-20 21:00:00    2017-05-20 21:00:00
91620    30851    714    2017-05-20 01:48:00    2017-05-20 01:48:00
91621    30851    720    2017-05-20 11:34:00    2017-05-20 11:34:00
91622    30851    666    2017-05-20 17:38:00    2017-05-20 17:38:00
91623    30851    573    2017-05-20 19:26:00    2017-05-20 19:26:00
91624    30851    895    2017-05-20 01:14:00    2017-05-20 01:14:00
91625    30852    601    2017-05-20 06:49:00    2017-05-20 06:49:00
91626    30852    535    2017-05-20 09:16:00    2017-05-20 09:16:00
91627    30852    480    2017-05-20 13:03:00    2017-05-20 13:03:00
91628    30852    607    2017-05-20 11:26:00    2017-05-20 11:26:00
91629    30852    773    2017-05-20 23:01:00    2017-05-20 23:01:00
91630    30853    585    2017-05-20 17:48:00    2017-05-20 17:48:00
91631    30853    504    2017-05-20 05:51:00    2017-05-20 05:51:00
91632    30853    577    2017-05-20 21:18:00    2017-05-20 21:18:00
91633    30853    942    2017-05-20 12:12:00    2017-05-20 12:12:00
91634    30853    917    2017-05-20 12:26:00    2017-05-20 12:26:00
91635    30854    858    2017-05-20 11:52:00    2017-05-20 11:52:00
91636    30854    492    2017-05-20 12:14:00    2017-05-20 12:14:00
91637    30854    471    2017-05-20 13:15:00    2017-05-20 13:15:00
91638    30854    924    2017-05-20 02:01:00    2017-05-20 02:01:00
91639    30854    570    2017-05-20 15:32:00    2017-05-20 15:32:00
91640    30855    506    2017-05-20 19:44:00    2017-05-20 19:44:00
91641    30855    525    2017-05-20 19:12:00    2017-05-20 19:12:00
91642    30855    740    2017-05-20 18:22:00    2017-05-20 18:22:00
91643    30855    687    2017-05-20 05:14:00    2017-05-20 05:14:00
91644    30855    629    2017-05-20 04:01:00    2017-05-20 04:01:00
91645    30856    774    2017-05-20 03:00:00    2017-05-20 03:00:00
91646    30856    907    2017-05-20 02:48:00    2017-05-20 02:48:00
91647    30856    489    2017-05-20 11:23:00    2017-05-20 11:23:00
91648    30856    850    2017-05-20 13:59:00    2017-05-20 13:59:00
91649    30856    887    2017-05-20 17:32:00    2017-05-20 17:32:00
91650    30857    933    2017-05-20 07:43:00    2017-05-20 07:43:00
91651    30857    957    2017-05-20 10:04:00    2017-05-20 10:04:00
91652    30857    528    2017-05-20 08:24:00    2017-05-20 08:24:00
91653    30857    767    2017-05-20 04:07:00    2017-05-20 04:07:00
91654    30857    884    2017-05-20 18:01:00    2017-05-20 18:01:00
91655    30858    885    2017-05-20 22:33:00    2017-05-20 22:33:00
91656    30858    612    2017-05-20 06:55:00    2017-05-20 06:55:00
91657    30858    694    2017-05-20 15:48:00    2017-05-20 15:48:00
91658    30858    799    2017-05-20 05:00:00    2017-05-20 05:00:00
91659    30858    585    2017-05-20 09:47:00    2017-05-20 09:47:00
91660    30859    580    2017-05-20 02:55:00    2017-05-20 02:55:00
91661    30859    625    2017-05-20 01:59:00    2017-05-20 01:59:00
91662    30859    877    2017-05-20 23:00:00    2017-05-20 23:00:00
91663    30859    912    2017-05-20 14:03:00    2017-05-20 14:03:00
91664    30859    857    2017-05-20 02:54:00    2017-05-20 02:54:00
91665    30860    765    2017-05-20 14:28:00    2017-05-20 14:28:00
91666    30860    527    2017-05-20 22:27:00    2017-05-20 22:27:00
91667    30860    792    2017-05-20 13:44:00    2017-05-20 13:44:00
91668    30860    603    2017-05-20 15:46:00    2017-05-20 15:46:00
91669    30860    713    2017-05-20 11:46:00    2017-05-20 11:46:00
91670    30861    475    2017-05-20 06:47:00    2017-05-20 06:47:00
91671    30861    582    2017-05-20 10:24:00    2017-05-20 10:24:00
91672    30861    475    2017-05-20 04:20:00    2017-05-20 04:20:00
91673    30861    516    2017-05-20 07:06:00    2017-05-20 07:06:00
91674    30861    844    2017-05-20 07:21:00    2017-05-20 07:21:00
91675    30862    715    2017-05-20 12:17:00    2017-05-20 12:17:00
91676    30862    937    2017-05-20 20:43:00    2017-05-20 20:43:00
91677    30862    944    2017-05-20 01:18:00    2017-05-20 01:18:00
91678    30862    905    2017-05-20 20:35:00    2017-05-20 20:35:00
91679    30862    845    2017-05-20 23:15:00    2017-05-20 23:15:00
91680    30863    548    2017-05-20 04:55:00    2017-05-20 04:55:00
91681    30863    693    2017-05-20 08:37:00    2017-05-20 08:37:00
91682    30863    870    2017-05-20 01:15:00    2017-05-20 01:15:00
91683    30863    890    2017-05-20 04:02:00    2017-05-20 04:02:00
91684    30863    482    2017-05-20 02:34:00    2017-05-20 02:34:00
91685    30864    822    2017-05-20 11:35:00    2017-05-20 11:35:00
91686    30864    529    2017-05-20 01:21:00    2017-05-20 01:21:00
91687    30864    510    2017-05-20 13:17:00    2017-05-20 13:17:00
91688    30864    577    2017-05-20 21:17:00    2017-05-20 21:17:00
91689    30864    957    2017-05-20 08:37:00    2017-05-20 08:37:00
91690    30865    879    2017-05-20 04:37:00    2017-05-20 04:37:00
91691    30865    672    2017-05-20 11:16:00    2017-05-20 11:16:00
91692    30865    867    2017-05-20 21:24:00    2017-05-20 21:24:00
91693    30865    693    2017-05-20 06:57:00    2017-05-20 06:57:00
91694    30865    582    2017-05-20 12:35:00    2017-05-20 12:35:00
91695    30866    928    2017-05-20 16:50:00    2017-05-20 16:50:00
91696    30866    837    2017-05-20 02:47:00    2017-05-20 02:47:00
91697    30866    473    2017-05-20 13:47:00    2017-05-20 13:47:00
91698    30866    653    2017-05-20 02:29:00    2017-05-20 02:29:00
91699    30866    479    2017-05-20 05:28:00    2017-05-20 05:28:00
91700    30867    767    2017-05-20 19:49:00    2017-05-20 19:49:00
91701    30867    499    2017-05-20 23:23:00    2017-05-20 23:23:00
91702    30867    478    2017-05-20 08:47:00    2017-05-20 08:47:00
91703    30867    737    2017-05-20 12:38:00    2017-05-20 12:38:00
91704    30867    933    2017-05-20 19:46:00    2017-05-20 19:46:00
91705    30868    741    2017-05-20 05:19:00    2017-05-20 05:19:00
91706    30868    488    2017-05-20 05:24:00    2017-05-20 05:24:00
91707    30868    605    2017-05-20 07:46:00    2017-05-20 07:46:00
91708    30868    827    2017-05-20 22:49:00    2017-05-20 22:49:00
91709    30868    516    2017-05-20 15:59:00    2017-05-20 15:59:00
91710    30869    905    2017-05-20 07:00:00    2017-05-20 07:00:00
91711    30869    690    2017-05-20 19:00:00    2017-05-20 19:00:00
91712    30869    945    2017-05-20 19:03:00    2017-05-20 19:03:00
91713    30869    670    2017-05-20 11:32:00    2017-05-20 11:32:00
91714    30869    571    2017-05-20 03:04:00    2017-05-20 03:04:00
91715    30870    960    2017-05-20 04:31:00    2017-05-20 04:31:00
91716    30870    936    2017-05-20 16:20:00    2017-05-20 16:20:00
91717    30870    732    2017-05-20 20:54:00    2017-05-20 20:54:00
91718    30870    565    2017-05-20 12:19:00    2017-05-20 12:19:00
91719    30870    598    2017-05-20 06:23:00    2017-05-20 06:23:00
91720    30871    752    2017-05-20 01:32:00    2017-05-20 01:32:00
91721    30871    512    2017-05-20 18:52:00    2017-05-20 18:52:00
91722    30871    872    2017-05-20 18:52:00    2017-05-20 18:52:00
91723    30871    623    2017-05-20 02:50:00    2017-05-20 02:50:00
91724    30871    891    2017-05-20 13:41:00    2017-05-20 13:41:00
91725    30872    575    2017-05-20 08:12:00    2017-05-20 08:12:00
91726    30872    656    2017-05-20 16:14:00    2017-05-20 16:14:00
91727    30872    473    2017-05-20 02:19:00    2017-05-20 02:19:00
91728    30872    680    2017-05-20 14:22:00    2017-05-20 14:22:00
91729    30872    939    2017-05-20 14:54:00    2017-05-20 14:54:00
91730    30873    885    2017-05-20 21:13:00    2017-05-20 21:13:00
91731    30873    497    2017-05-20 15:13:00    2017-05-20 15:13:00
91732    30873    680    2017-05-20 18:04:00    2017-05-20 18:04:00
91733    30873    873    2017-05-20 11:53:00    2017-05-20 11:53:00
91734    30873    542    2017-05-20 10:00:00    2017-05-20 10:00:00
91735    30874    911    2017-05-20 18:16:00    2017-05-20 18:16:00
91736    30874    759    2017-05-20 17:16:00    2017-05-20 17:16:00
91737    30874    651    2017-05-20 03:20:00    2017-05-20 03:20:00
91738    30874    590    2017-05-20 16:52:00    2017-05-20 16:52:00
91739    30874    606    2017-05-20 03:27:00    2017-05-20 03:27:00
91740    30875    857    2017-05-20 20:08:00    2017-05-20 20:08:00
91741    30875    821    2017-05-20 12:46:00    2017-05-20 12:46:00
91742    30875    550    2017-05-20 01:48:00    2017-05-20 01:48:00
91743    30875    589    2017-05-20 21:22:00    2017-05-20 21:22:00
91744    30875    686    2017-05-20 18:15:00    2017-05-20 18:15:00
91745    30876    879    2017-05-20 04:03:00    2017-05-20 04:03:00
91746    30876    513    2017-05-20 09:37:00    2017-05-20 09:37:00
91747    30876    489    2017-05-20 21:32:00    2017-05-20 21:32:00
91748    30876    550    2017-05-20 18:10:00    2017-05-20 18:10:00
91749    30876    753    2017-05-20 21:40:00    2017-05-20 21:40:00
91750    30877    879    2017-05-20 06:20:00    2017-05-20 06:20:00
91751    30877    755    2017-05-20 15:52:00    2017-05-20 15:52:00
91752    30877    700    2017-05-20 05:10:00    2017-05-20 05:10:00
91753    30877    698    2017-05-20 19:39:00    2017-05-20 19:39:00
91754    30877    499    2017-05-20 04:18:00    2017-05-20 04:18:00
91755    30878    537    2017-05-20 07:46:00    2017-05-20 07:46:00
91756    30878    781    2017-05-20 15:19:00    2017-05-20 15:19:00
91757    30878    518    2017-05-20 21:55:00    2017-05-20 21:55:00
91758    30878    890    2017-05-20 07:01:00    2017-05-20 07:01:00
91759    30878    882    2017-05-20 21:12:00    2017-05-20 21:12:00
91760    30879    552    2017-05-20 21:24:00    2017-05-20 21:24:00
91761    30879    533    2017-05-20 05:14:00    2017-05-20 05:14:00
91762    30879    600    2017-05-20 13:21:00    2017-05-20 13:21:00
91763    30879    940    2017-05-20 09:00:00    2017-05-20 09:00:00
91764    30879    913    2017-05-20 20:15:00    2017-05-20 20:15:00
91765    30880    854    2017-05-20 13:35:00    2017-05-20 13:35:00
91766    30880    564    2017-05-20 09:15:00    2017-05-20 09:15:00
91767    30880    783    2017-05-20 22:54:00    2017-05-20 22:54:00
91768    30880    507    2017-05-20 16:18:00    2017-05-20 16:18:00
91769    30880    508    2017-05-20 16:54:00    2017-05-20 16:54:00
91770    30881    656    2017-05-20 03:31:00    2017-05-20 03:31:00
91771    30881    744    2017-05-20 10:53:00    2017-05-20 10:53:00
91772    30881    623    2017-05-20 21:17:00    2017-05-20 21:17:00
91773    30881    559    2017-05-20 18:10:00    2017-05-20 18:10:00
91774    30881    600    2017-05-20 14:10:00    2017-05-20 14:10:00
91775    30882    624    2017-05-20 07:34:00    2017-05-20 07:34:00
91776    30882    641    2017-05-20 11:17:00    2017-05-20 11:17:00
91777    30882    910    2017-05-20 18:04:00    2017-05-20 18:04:00
91778    30882    744    2017-05-20 04:28:00    2017-05-20 04:28:00
91779    30882    603    2017-05-20 16:50:00    2017-05-20 16:50:00
91780    30883    893    2017-05-20 22:31:00    2017-05-20 22:31:00
91781    30883    578    2017-05-20 12:21:00    2017-05-20 12:21:00
91782    30883    803    2017-05-20 05:04:00    2017-05-20 05:04:00
91783    30883    463    2017-05-20 01:22:00    2017-05-20 01:22:00
91784    30883    476    2017-05-20 01:58:00    2017-05-20 01:58:00
91785    30884    710    2017-05-20 03:11:00    2017-05-20 03:11:00
91786    30884    564    2017-05-20 02:08:00    2017-05-20 02:08:00
91787    30884    943    2017-05-20 20:40:00    2017-05-20 20:40:00
91788    30884    790    2017-05-20 07:41:00    2017-05-20 07:41:00
91789    30884    477    2017-05-20 05:00:00    2017-05-20 05:00:00
91790    30885    764    2017-05-20 11:46:00    2017-05-20 11:46:00
91791    30885    904    2017-05-20 21:55:00    2017-05-20 21:55:00
91792    30885    506    2017-05-20 11:40:00    2017-05-20 11:40:00
91793    30885    530    2017-05-20 06:51:00    2017-05-20 06:51:00
91794    30885    675    2017-05-20 14:50:00    2017-05-20 14:50:00
91795    30886    791    2017-05-20 09:24:00    2017-05-20 09:24:00
91796    30886    758    2017-05-20 01:33:00    2017-05-20 01:33:00
91797    30886    720    2017-05-20 19:30:00    2017-05-20 19:30:00
91798    30886    933    2017-05-20 20:53:00    2017-05-20 20:53:00
91799    30886    942    2017-05-20 18:54:00    2017-05-20 18:54:00
91800    30887    678    2017-05-20 20:54:00    2017-05-20 20:54:00
91801    30887    513    2017-05-20 17:51:00    2017-05-20 17:51:00
91802    30887    573    2017-05-20 09:32:00    2017-05-20 09:32:00
91803    30887    882    2017-05-20 08:12:00    2017-05-20 08:12:00
91804    30887    740    2017-05-20 10:36:00    2017-05-20 10:36:00
91805    30888    591    2017-05-20 11:53:00    2017-05-20 11:53:00
91806    30888    661    2017-05-20 18:51:00    2017-05-20 18:51:00
91807    30888    514    2017-05-20 12:47:00    2017-05-20 12:47:00
91808    30888    841    2017-05-20 09:35:00    2017-05-20 09:35:00
91809    30888    488    2017-05-20 02:41:00    2017-05-20 02:41:00
91810    30889    657    2017-05-20 04:43:00    2017-05-20 04:43:00
91811    30889    916    2017-05-20 07:56:00    2017-05-20 07:56:00
91812    30889    805    2017-05-20 08:02:00    2017-05-20 08:02:00
91813    30889    842    2017-05-20 16:35:00    2017-05-20 16:35:00
91814    30889    941    2017-05-20 20:17:00    2017-05-20 20:17:00
91815    30890    624    2017-05-20 05:29:00    2017-05-20 05:29:00
91816    30890    608    2017-05-20 09:59:00    2017-05-20 09:59:00
91817    30890    792    2017-05-20 17:24:00    2017-05-20 17:24:00
91818    30890    660    2017-05-20 15:58:00    2017-05-20 15:58:00
91819    30890    628    2017-05-20 02:20:00    2017-05-20 02:20:00
91820    30891    745    2017-05-20 05:33:00    2017-05-20 05:33:00
91821    30891    917    2017-05-20 08:27:00    2017-05-20 08:27:00
91822    30891    928    2017-05-20 05:17:00    2017-05-20 05:17:00
91823    30891    600    2017-05-20 18:24:00    2017-05-20 18:24:00
91824    30891    718    2017-05-20 03:59:00    2017-05-20 03:59:00
91825    30892    696    2017-05-20 21:50:00    2017-05-20 21:50:00
91826    30892    600    2017-05-20 18:33:00    2017-05-20 18:33:00
91827    30892    885    2017-05-20 14:39:00    2017-05-20 14:39:00
91828    30892    516    2017-05-20 07:23:00    2017-05-20 07:23:00
91829    30892    795    2017-05-20 14:26:00    2017-05-20 14:26:00
91830    30893    635    2017-05-20 15:19:00    2017-05-20 15:19:00
91831    30893    613    2017-05-20 09:50:00    2017-05-20 09:50:00
91832    30893    546    2017-05-20 01:47:00    2017-05-20 01:47:00
91833    30893    926    2017-05-20 05:20:00    2017-05-20 05:20:00
91834    30893    563    2017-05-20 01:21:00    2017-05-20 01:21:00
91835    30894    728    2017-05-20 13:55:00    2017-05-20 13:55:00
91836    30894    710    2017-05-20 01:45:00    2017-05-20 01:45:00
91837    30894    543    2017-05-20 23:44:00    2017-05-20 23:44:00
91838    30894    857    2017-05-20 09:42:00    2017-05-20 09:42:00
91839    30894    949    2017-05-20 04:49:00    2017-05-20 04:49:00
91840    30895    748    2017-05-20 10:16:00    2017-05-20 10:16:00
91841    30895    679    2017-05-20 05:46:00    2017-05-20 05:46:00
91842    30895    551    2017-05-20 08:39:00    2017-05-20 08:39:00
91843    30895    847    2017-05-20 23:55:00    2017-05-20 23:55:00
91844    30895    612    2017-05-20 12:18:00    2017-05-20 12:18:00
91845    30896    910    2017-05-20 01:22:00    2017-05-20 01:22:00
91846    30896    681    2017-05-20 06:15:00    2017-05-20 06:15:00
91847    30896    595    2017-05-20 21:27:00    2017-05-20 21:27:00
91848    30896    930    2017-05-20 02:41:00    2017-05-20 02:41:00
91849    30896    521    2017-05-20 01:03:00    2017-05-20 01:03:00
91850    30897    745    2017-05-20 20:34:00    2017-05-20 20:34:00
91851    30897    956    2017-05-20 16:24:00    2017-05-20 16:24:00
91852    30897    612    2017-05-20 17:15:00    2017-05-20 17:15:00
91853    30897    491    2017-05-20 01:15:00    2017-05-20 01:15:00
91854    30897    489    2017-05-20 22:52:00    2017-05-20 22:52:00
91855    30898    677    2017-05-20 02:54:00    2017-05-20 02:54:00
91856    30898    641    2017-05-20 22:34:00    2017-05-20 22:34:00
91857    30898    791    2017-05-20 05:59:00    2017-05-20 05:59:00
91858    30898    665    2017-05-20 16:23:00    2017-05-20 16:23:00
91859    30898    907    2017-05-20 17:50:00    2017-05-20 17:50:00
91860    30899    555    2017-05-20 18:37:00    2017-05-20 18:37:00
91861    30899    943    2017-05-20 14:38:00    2017-05-20 14:38:00
91862    30899    652    2017-05-20 22:12:00    2017-05-20 22:12:00
91863    30899    759    2017-05-20 09:37:00    2017-05-20 09:37:00
91864    30899    897    2017-05-20 19:26:00    2017-05-20 19:26:00
91865    30900    496    2017-05-21 01:30:00    2017-05-21 01:30:00
91866    30900    758    2017-05-21 18:38:00    2017-05-21 18:38:00
91867    30900    720    2017-05-21 04:43:00    2017-05-21 04:43:00
91868    30900    647    2017-05-21 20:42:00    2017-05-21 20:42:00
91869    30900    470    2017-05-21 18:30:00    2017-05-21 18:30:00
91870    30901    692    2017-05-21 10:44:00    2017-05-21 10:44:00
91871    30901    475    2017-05-21 14:51:00    2017-05-21 14:51:00
91872    30901    902    2017-05-21 23:38:00    2017-05-21 23:38:00
91873    30901    500    2017-05-21 23:22:00    2017-05-21 23:22:00
91874    30901    797    2017-05-21 10:01:00    2017-05-21 10:01:00
91875    30902    916    2017-05-21 06:44:00    2017-05-21 06:44:00
91876    30902    886    2017-05-21 02:46:00    2017-05-21 02:46:00
91877    30902    955    2017-05-21 22:55:00    2017-05-21 22:55:00
91878    30902    674    2017-05-21 09:48:00    2017-05-21 09:48:00
91879    30902    640    2017-05-21 01:36:00    2017-05-21 01:36:00
91880    30903    540    2017-05-21 16:12:00    2017-05-21 16:12:00
91881    30903    711    2017-05-21 23:28:00    2017-05-21 23:28:00
91882    30903    782    2017-05-21 20:53:00    2017-05-21 20:53:00
91883    30903    624    2017-05-21 17:37:00    2017-05-21 17:37:00
91884    30903    949    2017-05-21 11:27:00    2017-05-21 11:27:00
91885    30904    684    2017-05-21 15:39:00    2017-05-21 15:39:00
91886    30904    690    2017-05-21 05:33:00    2017-05-21 05:33:00
91887    30904    893    2017-05-21 01:29:00    2017-05-21 01:29:00
91888    30904    483    2017-05-21 22:01:00    2017-05-21 22:01:00
91889    30904    885    2017-05-21 13:29:00    2017-05-21 13:29:00
91890    30905    895    2017-05-21 02:01:00    2017-05-21 02:01:00
91891    30905    547    2017-05-21 06:50:00    2017-05-21 06:50:00
91892    30905    724    2017-05-21 19:58:00    2017-05-21 19:58:00
91893    30905    930    2017-05-21 10:19:00    2017-05-21 10:19:00
91894    30905    933    2017-05-21 02:00:00    2017-05-21 02:00:00
91895    30906    898    2017-05-21 12:47:00    2017-05-21 12:47:00
91896    30906    853    2017-05-21 19:50:00    2017-05-21 19:50:00
91897    30906    890    2017-05-21 07:54:00    2017-05-21 07:54:00
91898    30906    491    2017-05-21 03:03:00    2017-05-21 03:03:00
91899    30906    505    2017-05-21 02:40:00    2017-05-21 02:40:00
91900    30907    546    2017-05-21 08:51:00    2017-05-21 08:51:00
91901    30907    686    2017-05-21 04:53:00    2017-05-21 04:53:00
91902    30907    805    2017-05-21 19:51:00    2017-05-21 19:51:00
91903    30907    476    2017-05-21 03:57:00    2017-05-21 03:57:00
91904    30907    832    2017-05-21 04:10:00    2017-05-21 04:10:00
91905    30908    856    2017-05-21 13:28:00    2017-05-21 13:28:00
91906    30908    941    2017-05-21 08:58:00    2017-05-21 08:58:00
91907    30908    643    2017-05-21 20:48:00    2017-05-21 20:48:00
91908    30908    484    2017-05-21 09:29:00    2017-05-21 09:29:00
91909    30908    831    2017-05-21 23:38:00    2017-05-21 23:38:00
91910    30909    640    2017-05-21 07:48:00    2017-05-21 07:48:00
91911    30909    821    2017-05-21 23:57:00    2017-05-21 23:57:00
91912    30909    636    2017-05-21 03:00:00    2017-05-21 03:00:00
91913    30909    482    2017-05-21 19:22:00    2017-05-21 19:22:00
91914    30909    925    2017-05-21 18:41:00    2017-05-21 18:41:00
91915    30910    601    2017-05-21 05:00:00    2017-05-21 05:00:00
91916    30910    551    2017-05-21 20:11:00    2017-05-21 20:11:00
91917    30910    534    2017-05-21 17:37:00    2017-05-21 17:37:00
91918    30910    898    2017-05-21 11:38:00    2017-05-21 11:38:00
91919    30910    712    2017-05-21 14:54:00    2017-05-21 14:54:00
91920    30911    864    2017-05-21 13:23:00    2017-05-21 13:23:00
91921    30911    848    2017-05-21 07:16:00    2017-05-21 07:16:00
91922    30911    864    2017-05-21 15:53:00    2017-05-21 15:53:00
91923    30911    880    2017-05-21 02:38:00    2017-05-21 02:38:00
91924    30911    637    2017-05-21 16:15:00    2017-05-21 16:15:00
91925    30912    795    2017-05-21 10:02:00    2017-05-21 10:02:00
91926    30912    819    2017-05-21 01:55:00    2017-05-21 01:55:00
91927    30912    599    2017-05-21 21:21:00    2017-05-21 21:21:00
91928    30912    822    2017-05-21 18:59:00    2017-05-21 18:59:00
91929    30912    908    2017-05-21 02:36:00    2017-05-21 02:36:00
91930    30913    949    2017-05-21 05:06:00    2017-05-21 05:06:00
91931    30913    766    2017-05-21 07:06:00    2017-05-21 07:06:00
91932    30913    938    2017-05-21 20:57:00    2017-05-21 20:57:00
91933    30913    663    2017-05-21 16:44:00    2017-05-21 16:44:00
91934    30913    592    2017-05-21 05:25:00    2017-05-21 05:25:00
91935    30914    859    2017-05-21 21:13:00    2017-05-21 21:13:00
91936    30914    478    2017-05-21 21:39:00    2017-05-21 21:39:00
91937    30914    712    2017-05-21 04:58:00    2017-05-21 04:58:00
91938    30914    515    2017-05-21 08:38:00    2017-05-21 08:38:00
91939    30914    727    2017-05-21 18:57:00    2017-05-21 18:57:00
91940    30915    533    2017-05-21 09:34:00    2017-05-21 09:34:00
91941    30915    902    2017-05-21 18:45:00    2017-05-21 18:45:00
91942    30915    616    2017-05-21 14:43:00    2017-05-21 14:43:00
91943    30915    514    2017-05-21 21:11:00    2017-05-21 21:11:00
91944    30915    821    2017-05-21 22:38:00    2017-05-21 22:38:00
91945    30916    783    2017-05-21 03:16:00    2017-05-21 03:16:00
91946    30916    624    2017-05-21 23:54:00    2017-05-21 23:54:00
91947    30916    792    2017-05-21 04:15:00    2017-05-21 04:15:00
91948    30916    708    2017-05-21 13:50:00    2017-05-21 13:50:00
91949    30916    635    2017-05-21 21:56:00    2017-05-21 21:56:00
91950    30917    938    2017-05-21 07:59:00    2017-05-21 07:59:00
91951    30917    913    2017-05-21 08:54:00    2017-05-21 08:54:00
91952    30917    647    2017-05-21 20:29:00    2017-05-21 20:29:00
91953    30917    543    2017-05-21 01:23:00    2017-05-21 01:23:00
91954    30917    893    2017-05-21 03:41:00    2017-05-21 03:41:00
91955    30918    768    2017-05-21 19:36:00    2017-05-21 19:36:00
91956    30918    800    2017-05-21 23:59:00    2017-05-21 23:59:00
91957    30918    950    2017-05-21 17:56:00    2017-05-21 17:56:00
91958    30918    869    2017-05-21 18:58:00    2017-05-21 18:58:00
91959    30918    579    2017-05-21 16:16:00    2017-05-21 16:16:00
91960    30919    800    2017-05-21 17:28:00    2017-05-21 17:28:00
91961    30919    593    2017-05-21 07:19:00    2017-05-21 07:19:00
91962    30919    640    2017-05-21 20:52:00    2017-05-21 20:52:00
91963    30919    654    2017-05-21 15:48:00    2017-05-21 15:48:00
91964    30919    842    2017-05-21 11:20:00    2017-05-21 11:20:00
91965    30920    877    2017-05-21 20:35:00    2017-05-21 20:35:00
91966    30920    774    2017-05-21 03:40:00    2017-05-21 03:40:00
91967    30920    686    2017-05-21 20:35:00    2017-05-21 20:35:00
91968    30920    892    2017-05-21 15:19:00    2017-05-21 15:19:00
91969    30920    733    2017-05-21 20:00:00    2017-05-21 20:00:00
91970    30921    622    2017-05-21 10:08:00    2017-05-21 10:08:00
91971    30921    818    2017-05-21 17:00:00    2017-05-21 17:00:00
91972    30921    489    2017-05-21 02:47:00    2017-05-21 02:47:00
91973    30921    648    2017-05-21 17:50:00    2017-05-21 17:50:00
91974    30921    774    2017-05-21 04:25:00    2017-05-21 04:25:00
91975    30922    948    2017-05-21 20:03:00    2017-05-21 20:03:00
91976    30922    564    2017-05-21 08:55:00    2017-05-21 08:55:00
91977    30922    856    2017-05-21 17:06:00    2017-05-21 17:06:00
91978    30922    859    2017-05-21 23:02:00    2017-05-21 23:02:00
91979    30922    813    2017-05-21 05:16:00    2017-05-21 05:16:00
91980    30923    542    2017-05-21 14:25:00    2017-05-21 14:25:00
91981    30923    815    2017-05-21 01:22:00    2017-05-21 01:22:00
91982    30923    840    2017-05-21 12:56:00    2017-05-21 12:56:00
91983    30923    557    2017-05-21 14:14:00    2017-05-21 14:14:00
91984    30923    529    2017-05-21 02:07:00    2017-05-21 02:07:00
91985    30924    673    2017-05-21 02:27:00    2017-05-21 02:27:00
91986    30924    733    2017-05-21 12:27:00    2017-05-21 12:27:00
91987    30924    848    2017-05-21 03:06:00    2017-05-21 03:06:00
91988    30924    894    2017-05-21 12:30:00    2017-05-21 12:30:00
91989    30924    745    2017-05-21 02:19:00    2017-05-21 02:19:00
91990    30925    677    2017-05-21 04:59:00    2017-05-21 04:59:00
91991    30925    645    2017-05-21 19:25:00    2017-05-21 19:25:00
91992    30925    753    2017-05-21 01:31:00    2017-05-21 01:31:00
91993    30925    514    2017-05-21 01:04:00    2017-05-21 01:04:00
91994    30925    782    2017-05-21 12:06:00    2017-05-21 12:06:00
91995    30926    786    2017-05-21 15:24:00    2017-05-21 15:24:00
91996    30926    562    2017-05-21 01:43:00    2017-05-21 01:43:00
91997    30926    939    2017-05-21 12:12:00    2017-05-21 12:12:00
91998    30926    799    2017-05-21 07:43:00    2017-05-21 07:43:00
91999    30926    568    2017-05-21 07:57:00    2017-05-21 07:57:00
92000    30927    943    2017-05-21 22:46:00    2017-05-21 22:46:00
92001    30927    648    2017-05-21 04:08:00    2017-05-21 04:08:00
92002    30927    485    2017-05-21 06:14:00    2017-05-21 06:14:00
92003    30927    658    2017-05-21 13:36:00    2017-05-21 13:36:00
92004    30927    837    2017-05-21 16:17:00    2017-05-21 16:17:00
92005    30928    883    2017-05-21 01:46:00    2017-05-21 01:46:00
92006    30928    705    2017-05-21 21:06:00    2017-05-21 21:06:00
92007    30928    496    2017-05-21 21:17:00    2017-05-21 21:17:00
92008    30928    681    2017-05-21 17:17:00    2017-05-21 17:17:00
92009    30928    514    2017-05-21 11:28:00    2017-05-21 11:28:00
92010    30929    482    2017-05-21 21:46:00    2017-05-21 21:46:00
92011    30929    922    2017-05-21 08:21:00    2017-05-21 08:21:00
92012    30929    901    2017-05-21 03:33:00    2017-05-21 03:33:00
92013    30929    711    2017-05-21 21:22:00    2017-05-21 21:22:00
92014    30929    589    2017-05-21 06:33:00    2017-05-21 06:33:00
92015    30930    918    2017-05-21 17:06:00    2017-05-21 17:06:00
92016    30930    758    2017-05-21 01:16:00    2017-05-21 01:16:00
92017    30930    833    2017-05-21 03:07:00    2017-05-21 03:07:00
92018    30930    552    2017-05-21 07:58:00    2017-05-21 07:58:00
92019    30930    483    2017-05-21 06:45:00    2017-05-21 06:45:00
92020    30931    878    2017-05-21 01:05:00    2017-05-21 01:05:00
92021    30931    555    2017-05-21 03:46:00    2017-05-21 03:46:00
92022    30931    724    2017-05-21 12:11:00    2017-05-21 12:11:00
92023    30931    787    2017-05-21 21:32:00    2017-05-21 21:32:00
92024    30931    468    2017-05-21 21:32:00    2017-05-21 21:32:00
92025    30932    729    2017-05-21 23:43:00    2017-05-21 23:43:00
92026    30932    575    2017-05-21 05:32:00    2017-05-21 05:32:00
92027    30932    900    2017-05-21 10:51:00    2017-05-21 10:51:00
92028    30932    813    2017-05-21 04:36:00    2017-05-21 04:36:00
92029    30932    900    2017-05-21 02:32:00    2017-05-21 02:32:00
92030    30933    915    2017-05-21 15:23:00    2017-05-21 15:23:00
92031    30933    831    2017-05-21 23:00:00    2017-05-21 23:00:00
92032    30933    587    2017-05-21 22:15:00    2017-05-21 22:15:00
92033    30933    923    2017-05-21 17:59:00    2017-05-21 17:59:00
92034    30933    704    2017-05-21 14:10:00    2017-05-21 14:10:00
92035    30934    537    2017-05-21 10:16:00    2017-05-21 10:16:00
92036    30934    961    2017-05-21 21:07:00    2017-05-21 21:07:00
92037    30934    795    2017-05-21 11:00:00    2017-05-21 11:00:00
92038    30934    496    2017-05-21 22:15:00    2017-05-21 22:15:00
92039    30934    489    2017-05-21 15:30:00    2017-05-21 15:30:00
92040    30935    604    2017-05-21 17:15:00    2017-05-21 17:15:00
92041    30935    663    2017-05-21 15:56:00    2017-05-21 15:56:00
92042    30935    622    2017-05-21 21:03:00    2017-05-21 21:03:00
92043    30935    713    2017-05-21 07:26:00    2017-05-21 07:26:00
92044    30935    616    2017-05-21 12:40:00    2017-05-21 12:40:00
92045    30936    853    2017-05-21 04:29:00    2017-05-21 04:29:00
92046    30936    554    2017-05-21 03:36:00    2017-05-21 03:36:00
92047    30936    915    2017-05-21 04:55:00    2017-05-21 04:55:00
92048    30936    529    2017-05-21 15:04:00    2017-05-21 15:04:00
92049    30936    748    2017-05-21 19:44:00    2017-05-21 19:44:00
92050    30937    492    2017-05-21 21:38:00    2017-05-21 21:38:00
92051    30937    601    2017-05-21 14:30:00    2017-05-21 14:30:00
92052    30937    690    2017-05-21 07:18:00    2017-05-21 07:18:00
92053    30937    659    2017-05-21 10:48:00    2017-05-21 10:48:00
92054    30937    791    2017-05-21 18:34:00    2017-05-21 18:34:00
92055    30938    888    2017-05-21 07:01:00    2017-05-21 07:01:00
92056    30938    489    2017-05-21 03:01:00    2017-05-21 03:01:00
92057    30938    689    2017-05-21 03:29:00    2017-05-21 03:29:00
92058    30938    557    2017-05-21 20:02:00    2017-05-21 20:02:00
92059    30938    561    2017-05-21 23:44:00    2017-05-21 23:44:00
92060    30939    697    2017-05-21 04:35:00    2017-05-21 04:35:00
92061    30939    830    2017-05-21 23:23:00    2017-05-21 23:23:00
92062    30939    696    2017-05-21 09:26:00    2017-05-21 09:26:00
92063    30939    518    2017-05-21 14:25:00    2017-05-21 14:25:00
92064    30939    536    2017-05-21 15:41:00    2017-05-21 15:41:00
92065    30940    633    2017-05-21 08:33:00    2017-05-21 08:33:00
92066    30940    922    2017-05-21 20:40:00    2017-05-21 20:40:00
92067    30940    571    2017-05-21 10:32:00    2017-05-21 10:32:00
92068    30940    706    2017-05-21 19:06:00    2017-05-21 19:06:00
92069    30940    934    2017-05-21 02:19:00    2017-05-21 02:19:00
92070    30941    545    2017-05-21 15:17:00    2017-05-21 15:17:00
92071    30941    676    2017-05-21 22:07:00    2017-05-21 22:07:00
92072    30941    478    2017-05-21 08:07:00    2017-05-21 08:07:00
92073    30941    951    2017-05-21 13:44:00    2017-05-21 13:44:00
92074    30941    760    2017-05-21 14:53:00    2017-05-21 14:53:00
92075    30942    677    2017-05-21 03:32:00    2017-05-21 03:32:00
92076    30942    658    2017-05-21 09:00:00    2017-05-21 09:00:00
92077    30942    690    2017-05-21 09:56:00    2017-05-21 09:56:00
92078    30942    783    2017-05-21 04:11:00    2017-05-21 04:11:00
92079    30942    841    2017-05-21 19:46:00    2017-05-21 19:46:00
92080    30943    776    2017-05-21 20:02:00    2017-05-21 20:02:00
92081    30943    808    2017-05-21 09:59:00    2017-05-21 09:59:00
92082    30943    486    2017-05-21 03:51:00    2017-05-21 03:51:00
92083    30943    626    2017-05-21 20:12:00    2017-05-21 20:12:00
92084    30943    661    2017-05-21 22:46:00    2017-05-21 22:46:00
92085    30944    953    2017-05-21 17:23:00    2017-05-21 17:23:00
92086    30944    929    2017-05-21 06:50:00    2017-05-21 06:50:00
92087    30944    930    2017-05-21 06:27:00    2017-05-21 06:27:00
92088    30944    850    2017-05-21 07:54:00    2017-05-21 07:54:00
92089    30944    607    2017-05-21 23:41:00    2017-05-21 23:41:00
92090    30945    712    2017-05-21 22:37:00    2017-05-21 22:37:00
92091    30945    618    2017-05-21 02:41:00    2017-05-21 02:41:00
92092    30945    524    2017-05-21 06:00:00    2017-05-21 06:00:00
92093    30945    678    2017-05-21 14:05:00    2017-05-21 14:05:00
92094    30945    761    2017-05-21 04:37:00    2017-05-21 04:37:00
92095    30946    641    2017-05-21 11:08:00    2017-05-21 11:08:00
92096    30946    492    2017-05-21 18:44:00    2017-05-21 18:44:00
92097    30946    701    2017-05-21 09:34:00    2017-05-21 09:34:00
92098    30946    959    2017-05-21 01:31:00    2017-05-21 01:31:00
92099    30946    642    2017-05-21 08:59:00    2017-05-21 08:59:00
92100    30947    911    2017-05-21 08:29:00    2017-05-21 08:29:00
92101    30947    909    2017-05-21 12:49:00    2017-05-21 12:49:00
92102    30947    845    2017-05-21 07:12:00    2017-05-21 07:12:00
92103    30947    643    2017-05-21 04:18:00    2017-05-21 04:18:00
92104    30947    881    2017-05-21 06:07:00    2017-05-21 06:07:00
92105    30948    887    2017-05-21 05:58:00    2017-05-21 05:58:00
92106    30948    778    2017-05-21 03:57:00    2017-05-21 03:57:00
92107    30948    894    2017-05-21 13:21:00    2017-05-21 13:21:00
92108    30948    645    2017-05-21 13:23:00    2017-05-21 13:23:00
92109    30948    612    2017-05-21 12:10:00    2017-05-21 12:10:00
92110    30949    710    2017-05-21 22:17:00    2017-05-21 22:17:00
92111    30949    872    2017-05-21 11:34:00    2017-05-21 11:34:00
92112    30949    463    2017-05-21 06:06:00    2017-05-21 06:06:00
92113    30949    759    2017-05-21 10:02:00    2017-05-21 10:02:00
92114    30949    650    2017-05-21 19:45:00    2017-05-21 19:45:00
92115    30950    880    2017-05-21 08:09:00    2017-05-21 08:09:00
92116    30950    635    2017-05-21 05:11:00    2017-05-21 05:11:00
92117    30950    676    2017-05-21 22:30:00    2017-05-21 22:30:00
92118    30950    734    2017-05-21 16:42:00    2017-05-21 16:42:00
92119    30950    468    2017-05-21 14:37:00    2017-05-21 14:37:00
92120    30951    834    2017-05-21 01:10:00    2017-05-21 01:10:00
92121    30951    657    2017-05-21 19:28:00    2017-05-21 19:28:00
92122    30951    846    2017-05-21 11:10:00    2017-05-21 11:10:00
92123    30951    659    2017-05-21 02:45:00    2017-05-21 02:45:00
92124    30951    621    2017-05-21 03:26:00    2017-05-21 03:26:00
92125    30952    700    2017-05-21 08:18:00    2017-05-21 08:18:00
92126    30952    845    2017-05-21 14:49:00    2017-05-21 14:49:00
92127    30952    845    2017-05-21 13:44:00    2017-05-21 13:44:00
92128    30952    465    2017-05-21 18:58:00    2017-05-21 18:58:00
92129    30952    521    2017-05-21 09:11:00    2017-05-21 09:11:00
92130    30953    931    2017-05-21 04:50:00    2017-05-21 04:50:00
92131    30953    941    2017-05-21 12:33:00    2017-05-21 12:33:00
92132    30953    486    2017-05-21 21:23:00    2017-05-21 21:23:00
92133    30953    502    2017-05-21 14:07:00    2017-05-21 14:07:00
92134    30953    513    2017-05-21 21:43:00    2017-05-21 21:43:00
92135    30954    719    2017-05-21 14:05:00    2017-05-21 14:05:00
92136    30954    635    2017-05-21 10:52:00    2017-05-21 10:52:00
92137    30954    879    2017-05-21 02:37:00    2017-05-21 02:37:00
92138    30954    542    2017-05-21 09:26:00    2017-05-21 09:26:00
92139    30954    655    2017-05-21 04:44:00    2017-05-21 04:44:00
92140    30955    495    2017-05-21 17:16:00    2017-05-21 17:16:00
92141    30955    497    2017-05-21 17:12:00    2017-05-21 17:12:00
92142    30955    902    2017-05-21 13:07:00    2017-05-21 13:07:00
92143    30955    569    2017-05-21 18:12:00    2017-05-21 18:12:00
92144    30955    691    2017-05-21 11:47:00    2017-05-21 11:47:00
92145    30956    467    2017-05-21 02:58:00    2017-05-21 02:58:00
92146    30956    529    2017-05-21 08:10:00    2017-05-21 08:10:00
92147    30956    739    2017-05-21 19:11:00    2017-05-21 19:11:00
92148    30956    488    2017-05-21 14:16:00    2017-05-21 14:16:00
92149    30956    721    2017-05-21 05:00:00    2017-05-21 05:00:00
92150    30957    659    2017-05-21 18:02:00    2017-05-21 18:02:00
92151    30957    937    2017-05-21 10:24:00    2017-05-21 10:24:00
92152    30957    777    2017-05-21 10:37:00    2017-05-21 10:37:00
92153    30957    551    2017-05-21 01:12:00    2017-05-21 01:12:00
92154    30957    478    2017-05-21 19:42:00    2017-05-21 19:42:00
92155    30958    499    2017-05-21 11:10:00    2017-05-21 11:10:00
92156    30958    730    2017-05-21 07:02:00    2017-05-21 07:02:00
92157    30958    616    2017-05-21 14:30:00    2017-05-21 14:30:00
92158    30958    825    2017-05-21 01:06:00    2017-05-21 01:06:00
92159    30958    594    2017-05-21 21:50:00    2017-05-21 21:50:00
92160    30959    876    2017-05-21 05:27:00    2017-05-21 05:27:00
92161    30959    579    2017-05-21 16:53:00    2017-05-21 16:53:00
92162    30959    769    2017-05-21 11:41:00    2017-05-21 11:41:00
92163    30959    933    2017-05-21 13:19:00    2017-05-21 13:19:00
92164    30959    477    2017-05-21 01:11:00    2017-05-21 01:11:00
92165    30960    794    2017-05-21 03:27:00    2017-05-21 03:27:00
92166    30960    687    2017-05-21 19:34:00    2017-05-21 19:34:00
92167    30960    797    2017-05-21 15:39:00    2017-05-21 15:39:00
92168    30960    489    2017-05-21 02:51:00    2017-05-21 02:51:00
92169    30960    748    2017-05-21 07:00:00    2017-05-21 07:00:00
92170    30961    887    2017-05-21 11:56:00    2017-05-21 11:56:00
92171    30961    561    2017-05-21 12:03:00    2017-05-21 12:03:00
92172    30961    763    2017-05-21 08:47:00    2017-05-21 08:47:00
92173    30961    628    2017-05-21 13:54:00    2017-05-21 13:54:00
92174    30961    831    2017-05-21 09:04:00    2017-05-21 09:04:00
92175    30962    505    2017-05-21 16:49:00    2017-05-21 16:49:00
92176    30962    606    2017-05-21 16:53:00    2017-05-21 16:53:00
92177    30962    730    2017-05-21 22:09:00    2017-05-21 22:09:00
92178    30962    864    2017-05-21 05:14:00    2017-05-21 05:14:00
92179    30962    576    2017-05-21 18:09:00    2017-05-21 18:09:00
92180    30963    714    2017-05-21 09:26:00    2017-05-21 09:26:00
92181    30963    546    2017-05-21 04:29:00    2017-05-21 04:29:00
92182    30963    729    2017-05-21 15:26:00    2017-05-21 15:26:00
92183    30963    946    2017-05-21 08:00:00    2017-05-21 08:00:00
92184    30963    702    2017-05-21 09:54:00    2017-05-21 09:54:00
92185    30964    604    2017-05-21 16:11:00    2017-05-21 16:11:00
92186    30964    700    2017-05-21 12:30:00    2017-05-21 12:30:00
92187    30964    684    2017-05-21 13:46:00    2017-05-21 13:46:00
92188    30964    599    2017-05-21 06:51:00    2017-05-21 06:51:00
92189    30964    775    2017-05-21 11:43:00    2017-05-21 11:43:00
92190    30965    843    2017-05-21 18:44:00    2017-05-21 18:44:00
92191    30965    501    2017-05-21 21:42:00    2017-05-21 21:42:00
92192    30965    738    2017-05-21 14:13:00    2017-05-21 14:13:00
92193    30965    961    2017-05-21 23:06:00    2017-05-21 23:06:00
92194    30965    469    2017-05-21 06:00:00    2017-05-21 06:00:00
92195    30966    841    2017-05-21 23:09:00    2017-05-21 23:09:00
92196    30966    537    2017-05-21 03:46:00    2017-05-21 03:46:00
92197    30966    664    2017-05-21 14:29:00    2017-05-21 14:29:00
92198    30966    916    2017-05-21 04:12:00    2017-05-21 04:12:00
92199    30966    569    2017-05-21 09:03:00    2017-05-21 09:03:00
92200    30967    652    2017-05-21 07:27:00    2017-05-21 07:27:00
92201    30967    634    2017-05-21 07:35:00    2017-05-21 07:35:00
92202    30967    549    2017-05-21 06:16:00    2017-05-21 06:16:00
92203    30967    574    2017-05-21 03:45:00    2017-05-21 03:45:00
92204    30967    666    2017-05-21 03:02:00    2017-05-21 03:02:00
92205    30968    758    2017-05-21 23:36:00    2017-05-21 23:36:00
92206    30968    780    2017-05-21 02:13:00    2017-05-21 02:13:00
92207    30968    569    2017-05-21 10:10:00    2017-05-21 10:10:00
92208    30968    880    2017-05-21 21:36:00    2017-05-21 21:36:00
92209    30968    939    2017-05-21 02:32:00    2017-05-21 02:32:00
92210    30969    662    2017-05-21 09:47:00    2017-05-21 09:47:00
92211    30969    781    2017-05-21 05:25:00    2017-05-21 05:25:00
92212    30969    901    2017-05-21 06:10:00    2017-05-21 06:10:00
92213    30969    708    2017-05-21 06:07:00    2017-05-21 06:07:00
92214    30969    853    2017-05-21 06:08:00    2017-05-21 06:08:00
92215    30970    578    2017-05-21 14:53:00    2017-05-21 14:53:00
92216    30970    484    2017-05-21 02:30:00    2017-05-21 02:30:00
92217    30970    486    2017-05-21 06:51:00    2017-05-21 06:51:00
92218    30970    735    2017-05-21 21:17:00    2017-05-21 21:17:00
92219    30970    559    2017-05-21 19:25:00    2017-05-21 19:25:00
92220    30971    618    2017-05-21 22:08:00    2017-05-21 22:08:00
92221    30971    832    2017-05-21 09:30:00    2017-05-21 09:30:00
92222    30971    592    2017-05-21 08:49:00    2017-05-21 08:49:00
92223    30971    590    2017-05-21 12:46:00    2017-05-21 12:46:00
92224    30971    864    2017-05-21 22:38:00    2017-05-21 22:38:00
92225    30972    649    2017-05-21 13:13:00    2017-05-21 13:13:00
92226    30972    514    2017-05-21 02:04:00    2017-05-21 02:04:00
92227    30972    754    2017-05-21 04:19:00    2017-05-21 04:19:00
92228    30972    704    2017-05-21 17:54:00    2017-05-21 17:54:00
92229    30972    945    2017-05-21 01:15:00    2017-05-21 01:15:00
92230    30973    670    2017-05-21 09:41:00    2017-05-21 09:41:00
92231    30973    636    2017-05-21 13:37:00    2017-05-21 13:37:00
92232    30973    614    2017-05-21 12:25:00    2017-05-21 12:25:00
92233    30973    931    2017-05-21 05:12:00    2017-05-21 05:12:00
92234    30973    747    2017-05-21 17:15:00    2017-05-21 17:15:00
92235    30974    486    2017-05-21 15:43:00    2017-05-21 15:43:00
92236    30974    756    2017-05-21 03:17:00    2017-05-21 03:17:00
92237    30974    547    2017-05-21 19:31:00    2017-05-21 19:31:00
92238    30974    769    2017-05-21 06:04:00    2017-05-21 06:04:00
92239    30974    635    2017-05-21 20:10:00    2017-05-21 20:10:00
92240    30975    846    2017-05-21 20:36:00    2017-05-21 20:36:00
92241    30975    931    2017-05-21 06:44:00    2017-05-21 06:44:00
92242    30975    867    2017-05-21 11:08:00    2017-05-21 11:08:00
92243    30975    796    2017-05-21 02:49:00    2017-05-21 02:49:00
92244    30975    618    2017-05-21 17:03:00    2017-05-21 17:03:00
92245    30976    894    2017-05-21 10:35:00    2017-05-21 10:35:00
92246    30976    786    2017-05-21 11:54:00    2017-05-21 11:54:00
92247    30976    485    2017-05-21 05:06:00    2017-05-21 05:06:00
92248    30976    855    2017-05-21 07:17:00    2017-05-21 07:17:00
92249    30976    580    2017-05-21 09:00:00    2017-05-21 09:00:00
92250    30977    895    2017-05-21 12:00:00    2017-05-21 12:00:00
92251    30977    484    2017-05-21 07:10:00    2017-05-21 07:10:00
92252    30977    780    2017-05-21 03:59:00    2017-05-21 03:59:00
92253    30977    918    2017-05-21 05:46:00    2017-05-21 05:46:00
92254    30977    513    2017-05-21 18:55:00    2017-05-21 18:55:00
92255    30978    929    2017-05-21 08:40:00    2017-05-21 08:40:00
92256    30978    487    2017-05-21 12:09:00    2017-05-21 12:09:00
92257    30978    583    2017-05-21 06:15:00    2017-05-21 06:15:00
92258    30978    500    2017-05-21 23:29:00    2017-05-21 23:29:00
92259    30978    763    2017-05-21 17:14:00    2017-05-21 17:14:00
92260    30979    805    2017-05-21 18:43:00    2017-05-21 18:43:00
92261    30979    854    2017-05-21 12:52:00    2017-05-21 12:52:00
92262    30979    767    2017-05-21 22:29:00    2017-05-21 22:29:00
92263    30979    590    2017-05-21 03:54:00    2017-05-21 03:54:00
92264    30979    496    2017-05-21 07:51:00    2017-05-21 07:51:00
92265    30980    622    2017-05-21 07:55:00    2017-05-21 07:55:00
92266    30980    480    2017-05-21 01:01:00    2017-05-21 01:01:00
92267    30980    935    2017-05-21 18:01:00    2017-05-21 18:01:00
92268    30980    803    2017-05-21 04:37:00    2017-05-21 04:37:00
92269    30980    728    2017-05-21 11:36:00    2017-05-21 11:36:00
92270    30981    723    2017-05-21 20:53:00    2017-05-21 20:53:00
92271    30981    667    2017-05-21 10:55:00    2017-05-21 10:55:00
92272    30981    767    2017-05-21 17:28:00    2017-05-21 17:28:00
92273    30981    868    2017-05-21 04:29:00    2017-05-21 04:29:00
92274    30981    593    2017-05-21 07:56:00    2017-05-21 07:56:00
92275    30982    909    2017-05-21 23:38:00    2017-05-21 23:38:00
92276    30982    666    2017-05-21 20:16:00    2017-05-21 20:16:00
92277    30982    585    2017-05-21 04:41:00    2017-05-21 04:41:00
92278    30982    941    2017-05-21 17:28:00    2017-05-21 17:28:00
92279    30982    902    2017-05-21 13:46:00    2017-05-21 13:46:00
92280    30983    743    2017-05-21 16:31:00    2017-05-21 16:31:00
92281    30983    591    2017-05-21 05:39:00    2017-05-21 05:39:00
92282    30983    875    2017-05-21 02:49:00    2017-05-21 02:49:00
92283    30983    809    2017-05-21 09:24:00    2017-05-21 09:24:00
92284    30983    662    2017-05-21 07:21:00    2017-05-21 07:21:00
92285    30984    668    2017-05-21 08:15:00    2017-05-21 08:15:00
92286    30984    858    2017-05-21 06:36:00    2017-05-21 06:36:00
92287    30984    477    2017-05-21 22:25:00    2017-05-21 22:25:00
92288    30984    675    2017-05-21 04:49:00    2017-05-21 04:49:00
92289    30984    620    2017-05-21 04:25:00    2017-05-21 04:25:00
92290    30985    948    2017-05-21 12:33:00    2017-05-21 12:33:00
92291    30985    730    2017-05-21 22:09:00    2017-05-21 22:09:00
92292    30985    892    2017-05-21 22:09:00    2017-05-21 22:09:00
92293    30985    470    2017-05-21 21:46:00    2017-05-21 21:46:00
92294    30985    818    2017-05-21 22:04:00    2017-05-21 22:04:00
92295    30986    759    2017-05-21 19:25:00    2017-05-21 19:25:00
92296    30986    470    2017-05-21 13:55:00    2017-05-21 13:55:00
92297    30986    794    2017-05-21 23:30:00    2017-05-21 23:30:00
92298    30986    550    2017-05-21 08:00:00    2017-05-21 08:00:00
92299    30986    930    2017-05-21 16:56:00    2017-05-21 16:56:00
92300    30987    560    2017-05-21 19:14:00    2017-05-21 19:14:00
92301    30987    872    2017-05-21 16:01:00    2017-05-21 16:01:00
92302    30987    833    2017-05-21 07:00:00    2017-05-21 07:00:00
92303    30987    947    2017-05-21 11:37:00    2017-05-21 11:37:00
92304    30987    593    2017-05-21 07:01:00    2017-05-21 07:01:00
92305    30988    896    2017-05-21 19:58:00    2017-05-21 19:58:00
92306    30988    810    2017-05-21 22:06:00    2017-05-21 22:06:00
92307    30988    514    2017-05-21 15:43:00    2017-05-21 15:43:00
92308    30988    634    2017-05-21 14:00:00    2017-05-21 14:00:00
92309    30988    960    2017-05-21 02:27:00    2017-05-21 02:27:00
92310    30989    635    2017-05-21 10:33:00    2017-05-21 10:33:00
92311    30989    707    2017-05-21 17:51:00    2017-05-21 17:51:00
92312    30989    877    2017-05-21 17:40:00    2017-05-21 17:40:00
92313    30989    932    2017-05-21 06:23:00    2017-05-21 06:23:00
92314    30989    796    2017-05-21 19:30:00    2017-05-21 19:30:00
92315    30990    715    2017-05-21 12:24:00    2017-05-21 12:24:00
92316    30990    866    2017-05-21 17:27:00    2017-05-21 17:27:00
92317    30990    831    2017-05-21 06:23:00    2017-05-21 06:23:00
92318    30990    922    2017-05-21 04:22:00    2017-05-21 04:22:00
92319    30990    797    2017-05-21 02:53:00    2017-05-21 02:53:00
92320    30991    796    2017-05-21 18:18:00    2017-05-21 18:18:00
92321    30991    516    2017-05-21 09:13:00    2017-05-21 09:13:00
92322    30991    715    2017-05-21 16:16:00    2017-05-21 16:16:00
92323    30991    654    2017-05-21 16:59:00    2017-05-21 16:59:00
92324    30991    847    2017-05-21 08:50:00    2017-05-21 08:50:00
92325    30992    601    2017-05-21 18:58:00    2017-05-21 18:58:00
92326    30992    681    2017-05-21 06:24:00    2017-05-21 06:24:00
92327    30992    790    2017-05-21 21:00:00    2017-05-21 21:00:00
92328    30992    474    2017-05-21 03:53:00    2017-05-21 03:53:00
92329    30992    942    2017-05-21 17:03:00    2017-05-21 17:03:00
92330    30993    618    2017-05-22 23:56:00    2017-05-22 23:56:00
92331    30993    895    2017-05-22 22:14:00    2017-05-22 22:14:00
92332    30993    648    2017-05-22 10:51:00    2017-05-22 10:51:00
92333    30993    870    2017-05-22 13:51:00    2017-05-22 13:51:00
92334    30993    957    2017-05-22 18:49:00    2017-05-22 18:49:00
92335    30994    534    2017-05-22 21:46:00    2017-05-22 21:46:00
92336    30994    724    2017-05-22 02:59:00    2017-05-22 02:59:00
92337    30994    606    2017-05-22 10:11:00    2017-05-22 10:11:00
92338    30994    634    2017-05-22 01:16:00    2017-05-22 01:16:00
92339    30994    543    2017-05-22 22:34:00    2017-05-22 22:34:00
92340    30995    477    2017-05-22 14:33:00    2017-05-22 14:33:00
92341    30995    630    2017-05-22 20:30:00    2017-05-22 20:30:00
92342    30995    469    2017-05-22 13:37:00    2017-05-22 13:37:00
92343    30995    800    2017-05-22 13:52:00    2017-05-22 13:52:00
92344    30995    563    2017-05-22 10:37:00    2017-05-22 10:37:00
92345    30996    682    2017-05-22 01:51:00    2017-05-22 01:51:00
92346    30996    925    2017-05-22 17:42:00    2017-05-22 17:42:00
92347    30996    627    2017-05-22 20:38:00    2017-05-22 20:38:00
92348    30996    509    2017-05-22 01:02:00    2017-05-22 01:02:00
92349    30996    607    2017-05-22 15:00:00    2017-05-22 15:00:00
92350    30997    499    2017-05-22 08:54:00    2017-05-22 08:54:00
92351    30997    885    2017-05-22 06:26:00    2017-05-22 06:26:00
92352    30997    640    2017-05-22 07:13:00    2017-05-22 07:13:00
92353    30997    728    2017-05-22 21:15:00    2017-05-22 21:15:00
92354    30997    923    2017-05-22 18:08:00    2017-05-22 18:08:00
92355    30998    960    2017-05-22 21:57:00    2017-05-22 21:57:00
92356    30998    824    2017-05-22 03:46:00    2017-05-22 03:46:00
92357    30998    716    2017-05-22 20:57:00    2017-05-22 20:57:00
92358    30998    953    2017-05-22 11:14:00    2017-05-22 11:14:00
92359    30998    599    2017-05-22 17:08:00    2017-05-22 17:08:00
92360    30999    565    2017-05-22 05:42:00    2017-05-22 05:42:00
92361    30999    931    2017-05-22 21:46:00    2017-05-22 21:46:00
92362    30999    710    2017-05-22 23:01:00    2017-05-22 23:01:00
92363    30999    873    2017-05-22 04:53:00    2017-05-22 04:53:00
92364    30999    910    2017-05-22 01:20:00    2017-05-22 01:20:00
92365    31000    783    2017-05-22 15:38:00    2017-05-22 15:38:00
92366    31000    721    2017-05-22 18:44:00    2017-05-22 18:44:00
92367    31000    697    2017-05-22 12:12:00    2017-05-22 12:12:00
92368    31000    621    2017-05-22 01:10:00    2017-05-22 01:10:00
92369    31000    752    2017-05-22 02:52:00    2017-05-22 02:52:00
92370    31001    517    2017-05-22 22:15:00    2017-05-22 22:15:00
92371    31001    773    2017-05-22 16:06:00    2017-05-22 16:06:00
92372    31001    930    2017-05-22 11:56:00    2017-05-22 11:56:00
92373    31001    873    2017-05-22 17:16:00    2017-05-22 17:16:00
92374    31001    665    2017-05-22 07:24:00    2017-05-22 07:24:00
92375    31002    583    2017-05-22 08:52:00    2017-05-22 08:52:00
92376    31002    610    2017-05-22 19:58:00    2017-05-22 19:58:00
92377    31002    718    2017-05-22 18:02:00    2017-05-22 18:02:00
92378    31002    558    2017-05-22 13:07:00    2017-05-22 13:07:00
92379    31002    862    2017-05-22 23:13:00    2017-05-22 23:13:00
92380    31003    705    2017-05-22 20:18:00    2017-05-22 20:18:00
92381    31003    783    2017-05-22 04:07:00    2017-05-22 04:07:00
92382    31003    504    2017-05-22 20:28:00    2017-05-22 20:28:00
92383    31003    721    2017-05-22 23:51:00    2017-05-22 23:51:00
92384    31003    832    2017-05-22 09:47:00    2017-05-22 09:47:00
92385    31004    593    2017-05-22 11:06:00    2017-05-22 11:06:00
92386    31004    862    2017-05-22 16:00:00    2017-05-22 16:00:00
92387    31004    891    2017-05-22 17:07:00    2017-05-22 17:07:00
92388    31004    712    2017-05-22 10:55:00    2017-05-22 10:55:00
92389    31004    852    2017-05-22 10:05:00    2017-05-22 10:05:00
92390    31005    510    2017-05-22 20:55:00    2017-05-22 20:55:00
92391    31005    847    2017-05-22 17:46:00    2017-05-22 17:46:00
92392    31005    898    2017-05-22 13:15:00    2017-05-22 13:15:00
92393    31005    695    2017-05-22 14:51:00    2017-05-22 14:51:00
92394    31005    668    2017-05-22 07:11:00    2017-05-22 07:11:00
92395    31006    849    2017-05-23 21:50:00    2017-05-23 21:50:00
92396    31006    627    2017-05-23 01:47:00    2017-05-23 01:47:00
92397    31006    847    2017-05-23 03:56:00    2017-05-23 03:56:00
92398    31006    539    2017-05-23 17:57:00    2017-05-23 17:57:00
92399    31006    609    2017-05-23 16:41:00    2017-05-23 16:41:00
92400    31007    802    2017-05-23 19:23:00    2017-05-23 19:23:00
92401    31007    774    2017-05-23 17:42:00    2017-05-23 17:42:00
92402    31007    841    2017-05-23 08:53:00    2017-05-23 08:53:00
92403    31007    610    2017-05-23 22:35:00    2017-05-23 22:35:00
92404    31007    895    2017-05-23 12:52:00    2017-05-23 12:52:00
92405    31008    768    2017-05-23 07:40:00    2017-05-23 07:40:00
92406    31008    577    2017-05-23 17:09:00    2017-05-23 17:09:00
92407    31008    692    2017-05-23 16:49:00    2017-05-23 16:49:00
92408    31008    661    2017-05-23 08:58:00    2017-05-23 08:58:00
92409    31008    660    2017-05-23 16:07:00    2017-05-23 16:07:00
92410    31009    834    2017-05-23 14:39:00    2017-05-23 14:39:00
92411    31009    536    2017-05-23 16:07:00    2017-05-23 16:07:00
92412    31009    690    2017-05-23 02:01:00    2017-05-23 02:01:00
92413    31009    947    2017-05-23 14:43:00    2017-05-23 14:43:00
92414    31009    732    2017-05-23 18:19:00    2017-05-23 18:19:00
92415    31010    466    2017-05-23 11:27:00    2017-05-23 11:27:00
92416    31010    572    2017-05-23 22:54:00    2017-05-23 22:54:00
92417    31010    939    2017-05-23 21:34:00    2017-05-23 21:34:00
92418    31010    957    2017-05-23 20:58:00    2017-05-23 20:58:00
92419    31010    487    2017-05-23 01:20:00    2017-05-23 01:20:00
92420    31011    682    2017-05-23 04:04:00    2017-05-23 04:04:00
92421    31011    769    2017-05-23 04:04:00    2017-05-23 04:04:00
92422    31011    568    2017-05-23 07:27:00    2017-05-23 07:27:00
92423    31011    552    2017-05-23 11:33:00    2017-05-23 11:33:00
92424    31011    758    2017-05-23 08:30:00    2017-05-23 08:30:00
92425    31012    625    2017-05-23 07:15:00    2017-05-23 07:15:00
92426    31012    959    2017-05-23 04:55:00    2017-05-23 04:55:00
92427    31012    932    2017-05-23 19:06:00    2017-05-23 19:06:00
92428    31012    897    2017-05-23 12:18:00    2017-05-23 12:18:00
92429    31012    899    2017-05-23 05:29:00    2017-05-23 05:29:00
92430    31013    563    2017-05-23 09:58:00    2017-05-23 09:58:00
92431    31013    686    2017-05-23 04:42:00    2017-05-23 04:42:00
92432    31013    516    2017-05-23 06:47:00    2017-05-23 06:47:00
92433    31013    736    2017-05-23 23:33:00    2017-05-23 23:33:00
92434    31013    824    2017-05-23 09:34:00    2017-05-23 09:34:00
92435    31014    563    2017-05-23 02:03:00    2017-05-23 02:03:00
92436    31014    960    2017-05-23 09:56:00    2017-05-23 09:56:00
92437    31014    585    2017-05-23 09:12:00    2017-05-23 09:12:00
92438    31014    525    2017-05-23 21:57:00    2017-05-23 21:57:00
92439    31014    926    2017-05-23 09:04:00    2017-05-23 09:04:00
92440    31015    901    2017-05-23 21:42:00    2017-05-23 21:42:00
92441    31015    490    2017-05-23 13:01:00    2017-05-23 13:01:00
92442    31015    516    2017-05-23 13:23:00    2017-05-23 13:23:00
92443    31015    836    2017-05-23 20:41:00    2017-05-23 20:41:00
92444    31015    586    2017-05-23 09:24:00    2017-05-23 09:24:00
92445    31016    874    2017-05-23 08:59:00    2017-05-23 08:59:00
92446    31016    596    2017-05-23 15:00:00    2017-05-23 15:00:00
92447    31016    685    2017-05-23 13:29:00    2017-05-23 13:29:00
92448    31016    659    2017-05-23 12:05:00    2017-05-23 12:05:00
92449    31016    952    2017-05-23 02:09:00    2017-05-23 02:09:00
92450    31017    941    2017-05-23 22:41:00    2017-05-23 22:41:00
92451    31017    740    2017-05-23 19:39:00    2017-05-23 19:39:00
92452    31017    769    2017-05-23 17:25:00    2017-05-23 17:25:00
92453    31017    724    2017-05-23 09:44:00    2017-05-23 09:44:00
92454    31017    474    2017-05-23 08:56:00    2017-05-23 08:56:00
92455    31018    724    2017-05-23 18:28:00    2017-05-23 18:28:00
92456    31018    563    2017-05-23 05:38:00    2017-05-23 05:38:00
92457    31018    639    2017-05-23 07:29:00    2017-05-23 07:29:00
92458    31018    875    2017-05-23 14:30:00    2017-05-23 14:30:00
92459    31018    654    2017-05-23 01:41:00    2017-05-23 01:41:00
92460    31019    858    2017-05-23 16:48:00    2017-05-23 16:48:00
92461    31019    535    2017-05-23 03:41:00    2017-05-23 03:41:00
92462    31019    726    2017-05-23 18:54:00    2017-05-23 18:54:00
92463    31019    754    2017-05-23 15:52:00    2017-05-23 15:52:00
92464    31019    526    2017-05-23 11:23:00    2017-05-23 11:23:00
92465    31020    567    2017-05-23 22:40:00    2017-05-23 22:40:00
92466    31020    788    2017-05-23 23:25:00    2017-05-23 23:25:00
92467    31020    737    2017-05-23 15:51:00    2017-05-23 15:51:00
92468    31020    936    2017-05-23 07:26:00    2017-05-23 07:26:00
92469    31020    617    2017-05-23 01:57:00    2017-05-23 01:57:00
92470    31021    801    2017-05-23 06:39:00    2017-05-23 06:39:00
92471    31021    603    2017-05-23 07:42:00    2017-05-23 07:42:00
92472    31021    688    2017-05-23 06:56:00    2017-05-23 06:56:00
92473    31021    695    2017-05-23 14:33:00    2017-05-23 14:33:00
92474    31021    618    2017-05-23 03:26:00    2017-05-23 03:26:00
92475    31022    467    2017-05-23 23:25:00    2017-05-23 23:25:00
92476    31022    766    2017-05-23 16:46:00    2017-05-23 16:46:00
92477    31022    485    2017-05-23 13:06:00    2017-05-23 13:06:00
92478    31022    621    2017-05-23 04:46:00    2017-05-23 04:46:00
92479    31022    651    2017-05-23 09:20:00    2017-05-23 09:20:00
92480    31023    828    2017-05-23 16:25:00    2017-05-23 16:25:00
92481    31023    640    2017-05-23 20:14:00    2017-05-23 20:14:00
92482    31023    525    2017-05-23 09:04:00    2017-05-23 09:04:00
92483    31023    507    2017-05-23 19:57:00    2017-05-23 19:57:00
92484    31023    569    2017-05-23 07:44:00    2017-05-23 07:44:00
92485    31024    955    2017-05-23 23:28:00    2017-05-23 23:28:00
92486    31024    816    2017-05-23 07:05:00    2017-05-23 07:05:00
92487    31024    730    2017-05-23 22:05:00    2017-05-23 22:05:00
92488    31024    942    2017-05-23 16:34:00    2017-05-23 16:34:00
92489    31024    700    2017-05-23 02:37:00    2017-05-23 02:37:00
92490    31025    814    2017-05-23 10:20:00    2017-05-23 10:20:00
92491    31025    838    2017-05-23 02:27:00    2017-05-23 02:27:00
92492    31025    814    2017-05-23 02:43:00    2017-05-23 02:43:00
92493    31025    653    2017-05-23 14:38:00    2017-05-23 14:38:00
92494    31025    931    2017-05-23 21:50:00    2017-05-23 21:50:00
92495    31026    553    2017-05-23 06:55:00    2017-05-23 06:55:00
92496    31026    672    2017-05-23 19:04:00    2017-05-23 19:04:00
92497    31026    825    2017-05-23 07:13:00    2017-05-23 07:13:00
92498    31026    666    2017-05-23 11:35:00    2017-05-23 11:35:00
92499    31026    859    2017-05-23 02:24:00    2017-05-23 02:24:00
92500    31027    665    2017-05-23 12:04:00    2017-05-23 12:04:00
92501    31027    653    2017-05-23 13:25:00    2017-05-23 13:25:00
92502    31027    566    2017-05-23 17:02:00    2017-05-23 17:02:00
92503    31027    632    2017-05-23 04:55:00    2017-05-23 04:55:00
92504    31027    566    2017-05-23 16:21:00    2017-05-23 16:21:00
92505    31028    733    2017-05-23 04:17:00    2017-05-23 04:17:00
92506    31028    556    2017-05-23 15:00:00    2017-05-23 15:00:00
92507    31028    782    2017-05-23 12:05:00    2017-05-23 12:05:00
92508    31028    715    2017-05-23 05:21:00    2017-05-23 05:21:00
92509    31028    495    2017-05-23 08:32:00    2017-05-23 08:32:00
92510    31029    665    2017-05-23 22:27:00    2017-05-23 22:27:00
92511    31029    719    2017-05-23 04:27:00    2017-05-23 04:27:00
92512    31029    547    2017-05-23 15:14:00    2017-05-23 15:14:00
92513    31029    851    2017-05-23 22:13:00    2017-05-23 22:13:00
92514    31029    958    2017-05-23 22:55:00    2017-05-23 22:55:00
92515    31030    734    2017-05-23 16:15:00    2017-05-23 16:15:00
92516    31030    637    2017-05-23 04:58:00    2017-05-23 04:58:00
92517    31030    607    2017-05-23 19:01:00    2017-05-23 19:01:00
92518    31030    750    2017-05-23 21:51:00    2017-05-23 21:51:00
92519    31030    746    2017-05-23 03:51:00    2017-05-23 03:51:00
92520    31031    632    2017-05-23 03:39:00    2017-05-23 03:39:00
92521    31031    725    2017-05-23 11:42:00    2017-05-23 11:42:00
92522    31031    886    2017-05-23 22:09:00    2017-05-23 22:09:00
92523    31031    684    2017-05-23 19:12:00    2017-05-23 19:12:00
92524    31031    866    2017-05-23 01:45:00    2017-05-23 01:45:00
92525    31032    470    2017-05-23 18:05:00    2017-05-23 18:05:00
92526    31032    647    2017-05-23 10:04:00    2017-05-23 10:04:00
92527    31032    891    2017-05-23 10:21:00    2017-05-23 10:21:00
92528    31032    774    2017-05-23 21:25:00    2017-05-23 21:25:00
92529    31032    749    2017-05-23 11:27:00    2017-05-23 11:27:00
92530    31033    886    2017-05-23 19:58:00    2017-05-23 19:58:00
92531    31033    954    2017-05-23 22:28:00    2017-05-23 22:28:00
92532    31033    874    2017-05-23 08:57:00    2017-05-23 08:57:00
92533    31033    541    2017-05-23 15:53:00    2017-05-23 15:53:00
92534    31033    750    2017-05-23 12:36:00    2017-05-23 12:36:00
92535    31034    490    2017-05-23 01:57:00    2017-05-23 01:57:00
92536    31034    947    2017-05-23 23:17:00    2017-05-23 23:17:00
92537    31034    919    2017-05-23 22:20:00    2017-05-23 22:20:00
92538    31034    823    2017-05-23 10:09:00    2017-05-23 10:09:00
92539    31034    487    2017-05-23 20:56:00    2017-05-23 20:56:00
92540    31035    527    2017-05-23 17:14:00    2017-05-23 17:14:00
92541    31035    886    2017-05-23 10:48:00    2017-05-23 10:48:00
92542    31035    532    2017-05-23 18:23:00    2017-05-23 18:23:00
92543    31035    925    2017-05-23 08:32:00    2017-05-23 08:32:00
92544    31035    574    2017-05-23 16:47:00    2017-05-23 16:47:00
92545    31036    777    2017-05-23 16:49:00    2017-05-23 16:49:00
92546    31036    630    2017-05-23 11:28:00    2017-05-23 11:28:00
92547    31036    464    2017-05-23 11:30:00    2017-05-23 11:30:00
92548    31036    475    2017-05-23 19:09:00    2017-05-23 19:09:00
92549    31036    954    2017-05-23 17:15:00    2017-05-23 17:15:00
92550    31037    901    2017-05-23 05:24:00    2017-05-23 05:24:00
92551    31037    838    2017-05-23 17:52:00    2017-05-23 17:52:00
92552    31037    518    2017-05-23 14:31:00    2017-05-23 14:31:00
92553    31037    860    2017-05-23 17:12:00    2017-05-23 17:12:00
92554    31037    923    2017-05-23 15:58:00    2017-05-23 15:58:00
92555    31038    642    2017-05-23 09:22:00    2017-05-23 09:22:00
92556    31038    829    2017-05-23 03:08:00    2017-05-23 03:08:00
92557    31038    474    2017-05-23 01:11:00    2017-05-23 01:11:00
92558    31038    621    2017-05-23 15:01:00    2017-05-23 15:01:00
92559    31038    658    2017-05-23 17:33:00    2017-05-23 17:33:00
92560    31039    803    2017-05-23 22:47:00    2017-05-23 22:47:00
92561    31039    522    2017-05-23 03:22:00    2017-05-23 03:22:00
92562    31039    603    2017-05-23 05:09:00    2017-05-23 05:09:00
92563    31039    863    2017-05-23 03:08:00    2017-05-23 03:08:00
92564    31039    819    2017-05-23 10:29:00    2017-05-23 10:29:00
92565    31040    752    2017-05-23 21:29:00    2017-05-23 21:29:00
92566    31040    818    2017-05-23 03:11:00    2017-05-23 03:11:00
92567    31040    902    2017-05-23 23:34:00    2017-05-23 23:34:00
92568    31040    474    2017-05-23 09:18:00    2017-05-23 09:18:00
92569    31040    692    2017-05-23 22:27:00    2017-05-23 22:27:00
92570    31041    496    2017-05-23 13:25:00    2017-05-23 13:25:00
92571    31041    954    2017-05-23 19:01:00    2017-05-23 19:01:00
92572    31041    716    2017-05-23 01:35:00    2017-05-23 01:35:00
92573    31041    870    2017-05-23 13:59:00    2017-05-23 13:59:00
92574    31041    564    2017-05-23 23:51:00    2017-05-23 23:51:00
92575    31042    942    2017-05-23 19:35:00    2017-05-23 19:35:00
92576    31042    728    2017-05-23 21:27:00    2017-05-23 21:27:00
92577    31042    471    2017-05-23 12:37:00    2017-05-23 12:37:00
92578    31042    729    2017-05-23 06:27:00    2017-05-23 06:27:00
92579    31042    850    2017-05-23 08:02:00    2017-05-23 08:02:00
92580    31043    801    2017-05-23 02:05:00    2017-05-23 02:05:00
92581    31043    777    2017-05-23 06:51:00    2017-05-23 06:51:00
92582    31043    931    2017-05-23 23:20:00    2017-05-23 23:20:00
92583    31043    483    2017-05-23 07:26:00    2017-05-23 07:26:00
92584    31043    653    2017-05-23 06:06:00    2017-05-23 06:06:00
92585    31044    666    2017-05-23 07:54:00    2017-05-23 07:54:00
92586    31044    839    2017-05-23 18:30:00    2017-05-23 18:30:00
92587    31044    605    2017-05-23 04:19:00    2017-05-23 04:19:00
92588    31044    619    2017-05-23 01:24:00    2017-05-23 01:24:00
92589    31044    944    2017-05-23 21:08:00    2017-05-23 21:08:00
92590    31045    937    2017-05-23 20:16:00    2017-05-23 20:16:00
92591    31045    620    2017-05-23 14:32:00    2017-05-23 14:32:00
92592    31045    583    2017-05-23 02:37:00    2017-05-23 02:37:00
92593    31045    466    2017-05-23 02:28:00    2017-05-23 02:28:00
92594    31045    544    2017-05-23 06:17:00    2017-05-23 06:17:00
92595    31046    923    2017-05-23 06:32:00    2017-05-23 06:32:00
92596    31046    633    2017-05-23 09:36:00    2017-05-23 09:36:00
92597    31046    569    2017-05-23 21:59:00    2017-05-23 21:59:00
92598    31046    489    2017-05-23 01:53:00    2017-05-23 01:53:00
92599    31046    545    2017-05-23 08:11:00    2017-05-23 08:11:00
92600    31047    921    2017-05-23 08:26:00    2017-05-23 08:26:00
92601    31047    931    2017-05-23 23:22:00    2017-05-23 23:22:00
92602    31047    937    2017-05-23 06:05:00    2017-05-23 06:05:00
92603    31047    865    2017-05-23 13:30:00    2017-05-23 13:30:00
92604    31047    910    2017-05-23 17:16:00    2017-05-23 17:16:00
92605    31048    463    2017-05-23 12:53:00    2017-05-23 12:53:00
92606    31048    830    2017-05-23 08:11:00    2017-05-23 08:11:00
92607    31048    958    2017-05-23 09:06:00    2017-05-23 09:06:00
92608    31048    716    2017-05-23 14:16:00    2017-05-23 14:16:00
92609    31048    881    2017-05-23 20:52:00    2017-05-23 20:52:00
92610    31049    658    2017-05-23 14:13:00    2017-05-23 14:13:00
92611    31049    521    2017-05-23 11:22:00    2017-05-23 11:22:00
92612    31049    600    2017-05-23 20:50:00    2017-05-23 20:50:00
92613    31049    673    2017-05-23 02:15:00    2017-05-23 02:15:00
92614    31049    480    2017-05-23 06:11:00    2017-05-23 06:11:00
92615    31050    575    2017-05-23 22:21:00    2017-05-23 22:21:00
92616    31050    960    2017-05-23 18:51:00    2017-05-23 18:51:00
92617    31050    896    2017-05-23 23:05:00    2017-05-23 23:05:00
92618    31050    516    2017-05-23 19:25:00    2017-05-23 19:25:00
92619    31050    844    2017-05-23 21:41:00    2017-05-23 21:41:00
92620    31051    819    2017-05-23 06:04:00    2017-05-23 06:04:00
92621    31051    932    2017-05-23 06:52:00    2017-05-23 06:52:00
92622    31051    808    2017-05-23 18:42:00    2017-05-23 18:42:00
92623    31051    549    2017-05-23 01:29:00    2017-05-23 01:29:00
92624    31051    506    2017-05-23 14:54:00    2017-05-23 14:54:00
92625    31052    622    2017-05-23 07:04:00    2017-05-23 07:04:00
92626    31052    680    2017-05-23 01:39:00    2017-05-23 01:39:00
92627    31052    561    2017-05-23 11:24:00    2017-05-23 11:24:00
92628    31052    848    2017-05-23 18:05:00    2017-05-23 18:05:00
92629    31052    947    2017-05-23 03:18:00    2017-05-23 03:18:00
92630    31053    482    2017-05-23 07:26:00    2017-05-23 07:26:00
92631    31053    588    2017-05-23 18:26:00    2017-05-23 18:26:00
92632    31053    698    2017-05-23 23:38:00    2017-05-23 23:38:00
92633    31053    515    2017-05-23 15:40:00    2017-05-23 15:40:00
92634    31053    944    2017-05-23 19:21:00    2017-05-23 19:21:00
92635    31054    548    2017-05-23 14:38:00    2017-05-23 14:38:00
92636    31054    890    2017-05-23 12:27:00    2017-05-23 12:27:00
92637    31054    522    2017-05-23 15:09:00    2017-05-23 15:09:00
92638    31054    628    2017-05-23 03:16:00    2017-05-23 03:16:00
92639    31054    528    2017-05-23 17:24:00    2017-05-23 17:24:00
92640    31055    488    2017-05-23 06:35:00    2017-05-23 06:35:00
92641    31055    586    2017-05-23 02:31:00    2017-05-23 02:31:00
92642    31055    922    2017-05-23 11:36:00    2017-05-23 11:36:00
92643    31055    841    2017-05-23 20:23:00    2017-05-23 20:23:00
92644    31055    873    2017-05-23 04:26:00    2017-05-23 04:26:00
92645    31056    856    2017-05-23 04:55:00    2017-05-23 04:55:00
92646    31056    551    2017-05-23 18:23:00    2017-05-23 18:23:00
92647    31056    505    2017-05-23 04:55:00    2017-05-23 04:55:00
92648    31056    733    2017-05-23 18:18:00    2017-05-23 18:18:00
92649    31056    734    2017-05-23 09:12:00    2017-05-23 09:12:00
92650    31057    624    2017-05-23 22:39:00    2017-05-23 22:39:00
92651    31057    585    2017-05-23 04:47:00    2017-05-23 04:47:00
92652    31057    784    2017-05-23 02:56:00    2017-05-23 02:56:00
92653    31057    565    2017-05-23 18:33:00    2017-05-23 18:33:00
92654    31057    916    2017-05-23 13:04:00    2017-05-23 13:04:00
92655    31058    896    2017-05-23 04:44:00    2017-05-23 04:44:00
92656    31058    472    2017-05-23 05:30:00    2017-05-23 05:30:00
92657    31058    896    2017-05-23 10:20:00    2017-05-23 10:20:00
92658    31058    631    2017-05-23 04:22:00    2017-05-23 04:22:00
92659    31058    584    2017-05-23 18:02:00    2017-05-23 18:02:00
92660    31059    943    2017-05-23 16:27:00    2017-05-23 16:27:00
92661    31059    881    2017-05-23 19:45:00    2017-05-23 19:45:00
92662    31059    765    2017-05-23 03:18:00    2017-05-23 03:18:00
92663    31059    490    2017-05-23 07:12:00    2017-05-23 07:12:00
92664    31059    564    2017-05-23 20:31:00    2017-05-23 20:31:00
92665    31060    580    2017-05-23 10:13:00    2017-05-23 10:13:00
92666    31060    649    2017-05-23 04:36:00    2017-05-23 04:36:00
92667    31060    749    2017-05-23 11:16:00    2017-05-23 11:16:00
92668    31060    542    2017-05-23 20:40:00    2017-05-23 20:40:00
92669    31060    924    2017-05-23 20:32:00    2017-05-23 20:32:00
92670    31061    605    2017-05-23 02:24:00    2017-05-23 02:24:00
92672    31061    763    2017-05-23 06:48:00    2017-05-23 06:48:00
92673    31061    742    2017-05-23 08:19:00    2017-05-23 08:19:00
92674    31061    473    2017-05-23 18:54:00    2017-05-23 18:54:00
92675    31062    630    2017-05-23 20:54:00    2017-05-23 20:54:00
92676    31062    776    2017-05-23 15:58:00    2017-05-23 15:58:00
92677    31062    573    2017-05-23 18:16:00    2017-05-23 18:16:00
92678    31062    558    2017-05-23 03:59:00    2017-05-23 03:59:00
92679    31062    946    2017-05-23 04:02:00    2017-05-23 04:02:00
92680    31063    731    2017-05-23 18:12:00    2017-05-23 18:12:00
92681    31063    848    2017-05-23 18:32:00    2017-05-23 18:32:00
92682    31063    662    2017-05-23 13:36:00    2017-05-23 13:36:00
92683    31063    892    2017-05-23 16:18:00    2017-05-23 16:18:00
92684    31063    597    2017-05-23 13:14:00    2017-05-23 13:14:00
92685    31064    489    2017-05-23 20:31:00    2017-05-23 20:31:00
92686    31064    866    2017-05-23 06:00:00    2017-05-23 06:00:00
92687    31064    574    2017-05-23 09:47:00    2017-05-23 09:47:00
92688    31064    830    2017-05-23 12:07:00    2017-05-23 12:07:00
92689    31064    502    2017-05-23 20:55:00    2017-05-23 20:55:00
92690    31065    673    2017-05-23 20:01:00    2017-05-23 20:01:00
92691    31065    917    2017-05-23 08:18:00    2017-05-23 08:18:00
92692    31065    898    2017-05-23 12:29:00    2017-05-23 12:29:00
92693    31065    827    2017-05-23 17:56:00    2017-05-23 17:56:00
92694    31065    941    2017-05-23 21:55:00    2017-05-23 21:55:00
92695    31066    836    2017-05-23 08:59:00    2017-05-23 08:59:00
92696    31066    690    2017-05-23 11:20:00    2017-05-23 11:20:00
92697    31066    826    2017-05-23 22:07:00    2017-05-23 22:07:00
92698    31066    854    2017-05-23 01:28:00    2017-05-23 01:28:00
92699    31066    780    2017-05-23 17:15:00    2017-05-23 17:15:00
92700    31067    499    2017-05-23 07:51:00    2017-05-23 07:51:00
92701    31067    902    2017-05-23 05:37:00    2017-05-23 05:37:00
92702    31067    665    2017-05-23 10:31:00    2017-05-23 10:31:00
92703    31067    785    2017-05-23 20:59:00    2017-05-23 20:59:00
92704    31067    801    2017-05-23 20:45:00    2017-05-23 20:45:00
92705    31068    545    2017-05-23 21:18:00    2017-05-23 21:18:00
92706    31068    861    2017-05-23 01:23:00    2017-05-23 01:23:00
92707    31068    463    2017-05-23 20:17:00    2017-05-23 20:17:00
92708    31068    579    2017-05-23 20:29:00    2017-05-23 20:29:00
92709    31068    603    2017-05-23 03:01:00    2017-05-23 03:01:00
92710    31069    758    2017-05-23 07:31:00    2017-05-23 07:31:00
92711    31069    728    2017-05-23 15:11:00    2017-05-23 15:11:00
92712    31069    767    2017-05-23 19:59:00    2017-05-23 19:59:00
92713    31069    792    2017-05-23 14:29:00    2017-05-23 14:29:00
92714    31069    732    2017-05-23 05:39:00    2017-05-23 05:39:00
92715    31070    728    2017-05-23 18:21:00    2017-05-23 18:21:00
92716    31070    770    2017-05-23 21:11:00    2017-05-23 21:11:00
92717    31070    937    2017-05-23 11:56:00    2017-05-23 11:56:00
92718    31070    862    2017-05-23 14:54:00    2017-05-23 14:54:00
92719    31070    604    2017-05-23 09:48:00    2017-05-23 09:48:00
92720    31071    499    2017-05-23 20:04:00    2017-05-23 20:04:00
92721    31071    835    2017-05-23 12:19:00    2017-05-23 12:19:00
92722    31071    746    2017-05-23 23:23:00    2017-05-23 23:23:00
92723    31071    538    2017-05-23 13:41:00    2017-05-23 13:41:00
92724    31071    792    2017-05-23 21:54:00    2017-05-23 21:54:00
92725    31072    850    2017-05-23 14:17:00    2017-05-23 14:17:00
92726    31072    535    2017-05-23 17:26:00    2017-05-23 17:26:00
92727    31072    638    2017-05-23 05:54:00    2017-05-23 05:54:00
92728    31072    847    2017-05-23 04:07:00    2017-05-23 04:07:00
92729    31072    698    2017-05-23 09:21:00    2017-05-23 09:21:00
92730    31073    470    2017-05-23 15:25:00    2017-05-23 15:25:00
92731    31073    877    2017-05-23 08:30:00    2017-05-23 08:30:00
92732    31073    744    2017-05-23 10:55:00    2017-05-23 10:55:00
92733    31073    487    2017-05-23 14:30:00    2017-05-23 14:30:00
92734    31073    569    2017-05-23 06:02:00    2017-05-23 06:02:00
92735    31074    544    2017-05-23 21:28:00    2017-05-23 21:28:00
92736    31074    524    2017-05-23 18:04:00    2017-05-23 18:04:00
92737    31074    639    2017-05-23 09:52:00    2017-05-23 09:52:00
92738    31074    551    2017-05-23 04:32:00    2017-05-23 04:32:00
92739    31074    752    2017-05-23 22:29:00    2017-05-23 22:29:00
92740    31075    941    2017-05-23 01:33:00    2017-05-23 01:33:00
92741    31075    636    2017-05-23 04:49:00    2017-05-23 04:49:00
92742    31075    861    2017-05-23 16:39:00    2017-05-23 16:39:00
92743    31075    762    2017-05-23 23:43:00    2017-05-23 23:43:00
92744    31075    922    2017-05-23 15:08:00    2017-05-23 15:08:00
92745    31076    613    2017-05-23 02:22:00    2017-05-23 02:22:00
92746    31076    648    2017-05-23 07:32:00    2017-05-23 07:32:00
92747    31076    554    2017-05-23 05:26:00    2017-05-23 05:26:00
92748    31076    665    2017-05-23 20:53:00    2017-05-23 20:53:00
92749    31076    620    2017-05-23 12:24:00    2017-05-23 12:24:00
92750    31077    632    2017-05-23 02:19:00    2017-05-23 02:19:00
92751    31077    875    2017-05-23 02:51:00    2017-05-23 02:51:00
92752    31077    842    2017-05-23 23:00:00    2017-05-23 23:00:00
92753    31077    561    2017-05-23 03:11:00    2017-05-23 03:11:00
92754    31077    700    2017-05-23 05:52:00    2017-05-23 05:52:00
92755    31078    836    2017-05-23 13:08:00    2017-05-23 13:08:00
92756    31078    839    2017-05-23 20:40:00    2017-05-23 20:40:00
92757    31078    779    2017-05-23 04:56:00    2017-05-23 04:56:00
92758    31078    694    2017-05-23 22:54:00    2017-05-23 22:54:00
92759    31078    632    2017-05-23 05:08:00    2017-05-23 05:08:00
92760    31079    608    2017-05-23 12:04:00    2017-05-23 12:04:00
92761    31079    568    2017-05-23 13:35:00    2017-05-23 13:35:00
92762    31079    808    2017-05-23 04:16:00    2017-05-23 04:16:00
92763    31079    579    2017-05-23 07:00:00    2017-05-23 07:00:00
92764    31079    778    2017-05-23 21:17:00    2017-05-23 21:17:00
92765    31080    747    2017-05-23 05:38:00    2017-05-23 05:38:00
92766    31080    701    2017-05-23 17:33:00    2017-05-23 17:33:00
92767    31080    536    2017-05-23 21:33:00    2017-05-23 21:33:00
92768    31080    772    2017-05-23 23:20:00    2017-05-23 23:20:00
92769    31080    560    2017-05-23 01:35:00    2017-05-23 01:35:00
92770    31081    671    2017-05-23 09:31:00    2017-05-23 09:31:00
92771    31081    502    2017-05-23 07:39:00    2017-05-23 07:39:00
92772    31081    531    2017-05-23 18:52:00    2017-05-23 18:52:00
92773    31081    700    2017-05-23 13:42:00    2017-05-23 13:42:00
92774    31081    468    2017-05-23 02:28:00    2017-05-23 02:28:00
92775    31082    879    2017-05-23 01:08:00    2017-05-23 01:08:00
92776    31082    655    2017-05-23 16:52:00    2017-05-23 16:52:00
92777    31082    924    2017-05-23 15:12:00    2017-05-23 15:12:00
92778    31082    658    2017-05-23 02:30:00    2017-05-23 02:30:00
92779    31082    937    2017-05-23 03:05:00    2017-05-23 03:05:00
92780    31083    583    2017-05-23 18:43:00    2017-05-23 18:43:00
92781    31083    616    2017-05-23 18:02:00    2017-05-23 18:02:00
92782    31083    741    2017-05-23 22:00:00    2017-05-23 22:00:00
92783    31083    703    2017-05-23 03:12:00    2017-05-23 03:12:00
92784    31083    882    2017-05-23 02:49:00    2017-05-23 02:49:00
92785    31084    916    2017-05-23 17:00:00    2017-05-23 17:00:00
92786    31084    773    2017-05-23 17:16:00    2017-05-23 17:16:00
92787    31084    907    2017-05-23 17:25:00    2017-05-23 17:25:00
92788    31084    847    2017-05-23 22:03:00    2017-05-23 22:03:00
92789    31084    724    2017-05-23 05:12:00    2017-05-23 05:12:00
92790    31085    760    2017-05-23 22:50:00    2017-05-23 22:50:00
92791    31085    483    2017-05-23 02:40:00    2017-05-23 02:40:00
92792    31085    864    2017-05-23 11:46:00    2017-05-23 11:46:00
92793    31085    763    2017-05-23 16:13:00    2017-05-23 16:13:00
92794    31085    708    2017-05-23 05:27:00    2017-05-23 05:27:00
92795    31086    885    2017-05-23 09:00:00    2017-05-23 09:00:00
92796    31086    561    2017-05-23 15:33:00    2017-05-23 15:33:00
92797    31086    751    2017-05-23 06:47:00    2017-05-23 06:47:00
92798    31086    510    2017-05-23 06:24:00    2017-05-23 06:24:00
92799    31086    525    2017-05-23 04:00:00    2017-05-23 04:00:00
92800    31087    717    2017-05-23 22:57:00    2017-05-23 22:57:00
92801    31087    502    2017-05-23 09:37:00    2017-05-23 09:37:00
92802    31087    684    2017-05-23 04:03:00    2017-05-23 04:03:00
92803    31087    957    2017-05-23 04:00:00    2017-05-23 04:00:00
92804    31087    741    2017-05-23 11:50:00    2017-05-23 11:50:00
92805    31088    597    2017-05-23 14:25:00    2017-05-23 14:25:00
92806    31088    803    2017-05-23 11:11:00    2017-05-23 11:11:00
92807    31088    604    2017-05-23 20:13:00    2017-05-23 20:13:00
92808    31088    648    2017-05-23 11:32:00    2017-05-23 11:32:00
92809    31088    837    2017-05-23 03:28:00    2017-05-23 03:28:00
92810    31089    528    2017-05-23 18:49:00    2017-05-23 18:49:00
92811    31089    949    2017-05-23 08:18:00    2017-05-23 08:18:00
92812    31089    469    2017-05-23 12:03:00    2017-05-23 12:03:00
92813    31089    580    2017-05-23 19:29:00    2017-05-23 19:29:00
92814    31089    689    2017-05-23 11:41:00    2017-05-23 11:41:00
92815    31090    729    2017-05-23 15:57:00    2017-05-23 15:57:00
92816    31090    486    2017-05-23 11:38:00    2017-05-23 11:38:00
92818    31090    775    2017-05-23 14:56:00    2017-05-23 14:56:00
92819    31090    463    2017-05-23 14:23:00    2017-05-23 14:23:00
92820    31091    552    2017-05-23 20:11:00    2017-05-23 20:11:00
92821    31091    621    2017-05-23 23:04:00    2017-05-23 23:04:00
92822    31091    555    2017-05-23 09:51:00    2017-05-23 09:51:00
92823    31091    871    2017-05-23 20:49:00    2017-05-23 20:49:00
92824    31091    939    2017-05-23 19:38:00    2017-05-23 19:38:00
92825    31092    936    2017-05-23 21:39:00    2017-05-23 21:39:00
92826    31092    824    2017-05-23 11:27:00    2017-05-23 11:27:00
92827    31092    766    2017-05-23 05:44:00    2017-05-23 05:44:00
92828    31092    732    2017-05-23 17:33:00    2017-05-23 17:33:00
92829    31092    768    2017-05-23 19:52:00    2017-05-23 19:52:00
92830    31093    853    2017-05-23 08:53:00    2017-05-23 08:53:00
92831    31093    876    2017-05-23 17:00:00    2017-05-23 17:00:00
92832    31093    893    2017-05-23 18:07:00    2017-05-23 18:07:00
92833    31093    790    2017-05-23 15:46:00    2017-05-23 15:46:00
92834    31093    504    2017-05-23 17:36:00    2017-05-23 17:36:00
92835    31094    605    2017-05-23 14:57:00    2017-05-23 14:57:00
92836    31094    589    2017-05-23 06:09:00    2017-05-23 06:09:00
92837    31094    725    2017-05-23 02:35:00    2017-05-23 02:35:00
92838    31094    840    2017-05-23 14:14:00    2017-05-23 14:14:00
92839    31094    861    2017-05-23 19:18:00    2017-05-23 19:18:00
92840    31095    793    2017-05-23 15:06:00    2017-05-23 15:06:00
92841    31095    467    2017-05-23 02:29:00    2017-05-23 02:29:00
92842    31095    661    2017-05-23 19:54:00    2017-05-23 19:54:00
92843    31095    464    2017-05-23 18:12:00    2017-05-23 18:12:00
92844    31095    599    2017-05-23 07:30:00    2017-05-23 07:30:00
92845    31096    851    2017-05-24 03:51:00    2017-05-24 03:51:00
92846    31096    471    2017-05-24 22:22:00    2017-05-24 22:22:00
92847    31096    509    2017-05-24 02:03:00    2017-05-24 02:03:00
92848    31096    824    2017-05-24 13:15:00    2017-05-24 13:15:00
92849    31096    859    2017-05-24 18:58:00    2017-05-24 18:58:00
92850    31097    844    2017-05-24 13:59:00    2017-05-24 13:59:00
92851    31097    867    2017-05-24 07:03:00    2017-05-24 07:03:00
92852    31097    858    2017-05-24 22:25:00    2017-05-24 22:25:00
92853    31097    779    2017-05-24 18:37:00    2017-05-24 18:37:00
92854    31097    699    2017-05-24 03:42:00    2017-05-24 03:42:00
92855    31098    664    2017-05-24 23:27:00    2017-05-24 23:27:00
92856    31098    670    2017-05-24 08:05:00    2017-05-24 08:05:00
92857    31098    879    2017-05-24 02:49:00    2017-05-24 02:49:00
92858    31098    841    2017-05-24 06:41:00    2017-05-24 06:41:00
92859    31098    599    2017-05-24 02:57:00    2017-05-24 02:57:00
92860    31099    659    2017-05-24 13:00:00    2017-05-24 13:00:00
92861    31099    610    2017-05-24 19:51:00    2017-05-24 19:51:00
92862    31099    562    2017-05-24 13:12:00    2017-05-24 13:12:00
92863    31099    704    2017-05-24 06:10:00    2017-05-24 06:10:00
92864    31099    928    2017-05-24 23:01:00    2017-05-24 23:01:00
92865    31100    611    2017-05-24 22:54:00    2017-05-24 22:54:00
92866    31100    733    2017-05-24 06:23:00    2017-05-24 06:23:00
92867    31100    893    2017-05-24 06:46:00    2017-05-24 06:46:00
92868    31100    795    2017-05-24 16:54:00    2017-05-24 16:54:00
92869    31100    599    2017-05-24 02:00:00    2017-05-24 02:00:00
92870    31101    530    2017-05-24 11:27:00    2017-05-24 11:27:00
92871    31101    935    2017-05-24 03:55:00    2017-05-24 03:55:00
92872    31101    782    2017-05-24 05:17:00    2017-05-24 05:17:00
92873    31101    688    2017-05-24 21:04:00    2017-05-24 21:04:00
92874    31101    763    2017-05-24 09:30:00    2017-05-24 09:30:00
92875    31102    739    2017-05-24 21:31:00    2017-05-24 21:31:00
92876    31102    499    2017-05-24 22:42:00    2017-05-24 22:42:00
92877    31102    902    2017-05-24 08:46:00    2017-05-24 08:46:00
92878    31102    598    2017-05-24 18:54:00    2017-05-24 18:54:00
92879    31102    669    2017-05-24 20:01:00    2017-05-24 20:01:00
92880    31103    492    2017-05-24 16:26:00    2017-05-24 16:26:00
92881    31103    557    2017-05-24 03:09:00    2017-05-24 03:09:00
92882    31103    473    2017-05-24 02:38:00    2017-05-24 02:38:00
92883    31103    766    2017-05-24 04:58:00    2017-05-24 04:58:00
92884    31103    904    2017-05-24 17:32:00    2017-05-24 17:32:00
92885    31104    776    2017-05-24 14:19:00    2017-05-24 14:19:00
92886    31104    609    2017-05-24 16:03:00    2017-05-24 16:03:00
92887    31104    620    2017-05-24 19:52:00    2017-05-24 19:52:00
92888    31104    811    2017-05-24 04:21:00    2017-05-24 04:21:00
92889    31104    741    2017-05-24 06:37:00    2017-05-24 06:37:00
92890    31105    501    2017-05-24 22:09:00    2017-05-24 22:09:00
92891    31105    942    2017-05-24 01:17:00    2017-05-24 01:17:00
92892    31105    854    2017-05-24 05:13:00    2017-05-24 05:13:00
92893    31105    650    2017-05-24 22:25:00    2017-05-24 22:25:00
92894    31105    806    2017-05-24 16:38:00    2017-05-24 16:38:00
92895    31106    859    2017-05-24 14:37:00    2017-05-24 14:37:00
92896    31106    838    2017-05-24 17:21:00    2017-05-24 17:21:00
92897    31106    876    2017-05-24 12:15:00    2017-05-24 12:15:00
92898    31106    724    2017-05-24 18:04:00    2017-05-24 18:04:00
92899    31106    654    2017-05-24 06:38:00    2017-05-24 06:38:00
92900    31107    525    2017-05-24 05:30:00    2017-05-24 05:30:00
92901    31107    642    2017-05-24 21:39:00    2017-05-24 21:39:00
92902    31107    718    2017-05-24 06:44:00    2017-05-24 06:44:00
92903    31107    468    2017-05-24 12:59:00    2017-05-24 12:59:00
92904    31107    698    2017-05-24 22:23:00    2017-05-24 22:23:00
92905    31108    828    2017-05-24 13:56:00    2017-05-24 13:56:00
92906    31108    616    2017-05-24 07:57:00    2017-05-24 07:57:00
92907    31108    517    2017-05-24 05:07:00    2017-05-24 05:07:00
92908    31108    876    2017-05-24 12:31:00    2017-05-24 12:31:00
92909    31108    747    2017-05-24 03:12:00    2017-05-24 03:12:00
92910    31109    640    2017-05-24 02:02:00    2017-05-24 02:02:00
92911    31109    661    2017-05-24 23:34:00    2017-05-24 23:34:00
92912    31109    731    2017-05-24 03:05:00    2017-05-24 03:05:00
92913    31109    581    2017-05-24 11:31:00    2017-05-24 11:31:00
92914    31109    514    2017-05-24 08:50:00    2017-05-24 08:50:00
92915    31110    543    2017-05-24 22:01:00    2017-05-24 22:01:00
92916    31110    572    2017-05-24 01:24:00    2017-05-24 01:24:00
92917    31110    746    2017-05-24 16:15:00    2017-05-24 16:15:00
92918    31110    713    2017-05-24 07:42:00    2017-05-24 07:42:00
92919    31110    905    2017-05-24 22:00:00    2017-05-24 22:00:00
92920    31111    957    2017-05-24 19:49:00    2017-05-24 19:49:00
92921    31111    886    2017-05-24 11:58:00    2017-05-24 11:58:00
92922    31111    556    2017-05-24 19:33:00    2017-05-24 19:33:00
92923    31111    910    2017-05-24 15:13:00    2017-05-24 15:13:00
92924    31111    665    2017-05-24 21:38:00    2017-05-24 21:38:00
92925    31112    494    2017-05-24 01:22:00    2017-05-24 01:22:00
92926    31112    642    2017-05-24 12:11:00    2017-05-24 12:11:00
92927    31112    883    2017-05-24 14:42:00    2017-05-24 14:42:00
92928    31112    726    2017-05-24 23:00:00    2017-05-24 23:00:00
92929    31112    657    2017-05-24 08:00:00    2017-05-24 08:00:00
92930    31113    577    2017-05-24 03:42:00    2017-05-24 03:42:00
92931    31113    795    2017-05-24 01:59:00    2017-05-24 01:59:00
92932    31113    555    2017-05-24 02:31:00    2017-05-24 02:31:00
92933    31113    493    2017-05-24 07:24:00    2017-05-24 07:24:00
92934    31113    763    2017-05-24 17:03:00    2017-05-24 17:03:00
92935    31114    799    2017-05-24 20:51:00    2017-05-24 20:51:00
92936    31114    766    2017-05-24 03:49:00    2017-05-24 03:49:00
92937    31114    874    2017-05-24 06:25:00    2017-05-24 06:25:00
92938    31114    859    2017-05-24 16:51:00    2017-05-24 16:51:00
92939    31114    574    2017-05-24 16:50:00    2017-05-24 16:50:00
92940    31115    880    2017-05-24 09:10:00    2017-05-24 09:10:00
92941    31115    708    2017-05-24 12:02:00    2017-05-24 12:02:00
92942    31115    935    2017-05-24 22:32:00    2017-05-24 22:32:00
92943    31115    847    2017-05-24 05:42:00    2017-05-24 05:42:00
92944    31115    577    2017-05-24 08:13:00    2017-05-24 08:13:00
92945    31116    473    2017-05-24 21:47:00    2017-05-24 21:47:00
92946    31116    641    2017-05-24 03:56:00    2017-05-24 03:56:00
92947    31116    917    2017-05-24 20:07:00    2017-05-24 20:07:00
92948    31116    590    2017-05-24 23:30:00    2017-05-24 23:30:00
92949    31116    628    2017-05-24 15:56:00    2017-05-24 15:56:00
92950    31117    887    2017-05-24 16:58:00    2017-05-24 16:58:00
92951    31117    786    2017-05-24 09:48:00    2017-05-24 09:48:00
92952    31117    956    2017-05-24 22:54:00    2017-05-24 22:54:00
92953    31117    523    2017-05-24 12:15:00    2017-05-24 12:15:00
92954    31117    805    2017-05-24 07:46:00    2017-05-24 07:46:00
92955    31118    840    2017-05-24 03:02:00    2017-05-24 03:02:00
92956    31118    904    2017-05-24 08:41:00    2017-05-24 08:41:00
92957    31118    950    2017-05-24 16:18:00    2017-05-24 16:18:00
92958    31118    878    2017-05-24 20:17:00    2017-05-24 20:17:00
92959    31118    505    2017-05-24 14:24:00    2017-05-24 14:24:00
92960    31119    713    2017-05-24 22:59:00    2017-05-24 22:59:00
92961    31119    881    2017-05-24 06:53:00    2017-05-24 06:53:00
92962    31119    895    2017-05-24 23:25:00    2017-05-24 23:25:00
92963    31119    908    2017-05-24 11:27:00    2017-05-24 11:27:00
92964    31119    739    2017-05-24 16:59:00    2017-05-24 16:59:00
92965    31120    936    2017-05-24 02:41:00    2017-05-24 02:41:00
92966    31120    769    2017-05-24 17:31:00    2017-05-24 17:31:00
92967    31120    647    2017-05-24 23:53:00    2017-05-24 23:53:00
92968    31120    954    2017-05-24 01:55:00    2017-05-24 01:55:00
92969    31120    663    2017-05-24 22:00:00    2017-05-24 22:00:00
92970    31121    839    2017-05-24 13:19:00    2017-05-24 13:19:00
92971    31121    777    2017-05-24 19:17:00    2017-05-24 19:17:00
92972    31121    730    2017-05-24 13:38:00    2017-05-24 13:38:00
92973    31121    830    2017-05-24 02:53:00    2017-05-24 02:53:00
92974    31121    598    2017-05-24 02:22:00    2017-05-24 02:22:00
92975    31122    873    2017-05-24 14:21:00    2017-05-24 14:21:00
92976    31122    903    2017-05-24 04:00:00    2017-05-24 04:00:00
92977    31122    942    2017-05-24 13:08:00    2017-05-24 13:08:00
92978    31122    476    2017-05-24 10:23:00    2017-05-24 10:23:00
92979    31122    558    2017-05-24 06:40:00    2017-05-24 06:40:00
92980    31123    671    2017-05-24 09:00:00    2017-05-24 09:00:00
92981    31123    645    2017-05-24 11:42:00    2017-05-24 11:42:00
92982    31123    835    2017-05-24 18:26:00    2017-05-24 18:26:00
92983    31123    490    2017-05-24 16:49:00    2017-05-24 16:49:00
92984    31123    618    2017-05-24 02:08:00    2017-05-24 02:08:00
92985    31124    689    2017-05-24 20:18:00    2017-05-24 20:18:00
92986    31124    584    2017-05-24 09:00:00    2017-05-24 09:00:00
92987    31124    890    2017-05-24 09:33:00    2017-05-24 09:33:00
92988    31124    928    2017-05-24 01:09:00    2017-05-24 01:09:00
92989    31124    679    2017-05-24 22:21:00    2017-05-24 22:21:00
92990    31125    759    2017-05-24 21:49:00    2017-05-24 21:49:00
92991    31125    481    2017-05-24 07:34:00    2017-05-24 07:34:00
92992    31125    854    2017-05-24 17:14:00    2017-05-24 17:14:00
92993    31125    722    2017-05-24 08:37:00    2017-05-24 08:37:00
92994    31125    651    2017-05-24 07:00:00    2017-05-24 07:00:00
92995    31126    799    2017-05-24 15:16:00    2017-05-24 15:16:00
92996    31126    663    2017-05-24 21:39:00    2017-05-24 21:39:00
92997    31126    830    2017-05-24 23:23:00    2017-05-24 23:23:00
92998    31126    603    2017-05-24 13:43:00    2017-05-24 13:43:00
92999    31126    540    2017-05-24 12:20:00    2017-05-24 12:20:00
93000    31127    536    2017-05-24 18:31:00    2017-05-24 18:31:00
93001    31127    755    2017-05-24 10:43:00    2017-05-24 10:43:00
93002    31127    580    2017-05-24 21:50:00    2017-05-24 21:50:00
93003    31127    500    2017-05-24 04:55:00    2017-05-24 04:55:00
93004    31127    698    2017-05-24 07:15:00    2017-05-24 07:15:00
93005    31128    904    2017-05-24 20:56:00    2017-05-24 20:56:00
93006    31128    792    2017-05-24 16:14:00    2017-05-24 16:14:00
93007    31128    744    2017-05-24 09:48:00    2017-05-24 09:48:00
93008    31128    908    2017-05-24 13:44:00    2017-05-24 13:44:00
93009    31128    611    2017-05-24 19:07:00    2017-05-24 19:07:00
93010    31129    528    2017-05-24 15:43:00    2017-05-24 15:43:00
93011    31129    768    2017-05-24 13:30:00    2017-05-24 13:30:00
93012    31129    768    2017-05-24 16:22:00    2017-05-24 16:22:00
93013    31129    671    2017-05-24 09:36:00    2017-05-24 09:36:00
93014    31129    629    2017-05-24 20:16:00    2017-05-24 20:16:00
93015    31130    673    2017-05-24 19:59:00    2017-05-24 19:59:00
93016    31130    686    2017-05-24 15:41:00    2017-05-24 15:41:00
93017    31130    943    2017-05-24 16:59:00    2017-05-24 16:59:00
93018    31130    935    2017-05-24 09:13:00    2017-05-24 09:13:00
93019    31130    572    2017-05-24 03:54:00    2017-05-24 03:54:00
93020    31131    499    2017-05-24 06:45:00    2017-05-24 06:45:00
93021    31131    929    2017-05-24 07:57:00    2017-05-24 07:57:00
93022    31131    809    2017-05-24 23:31:00    2017-05-24 23:31:00
93023    31131    909    2017-05-24 04:31:00    2017-05-24 04:31:00
93024    31131    631    2017-05-24 12:27:00    2017-05-24 12:27:00
93025    31132    830    2017-05-24 14:25:00    2017-05-24 14:25:00
93026    31132    773    2017-05-24 05:10:00    2017-05-24 05:10:00
93027    31132    758    2017-05-24 21:09:00    2017-05-24 21:09:00
93028    31132    892    2017-05-24 23:36:00    2017-05-24 23:36:00
93029    31132    828    2017-05-24 22:35:00    2017-05-24 22:35:00
93030    31133    671    2017-05-24 14:35:00    2017-05-24 14:35:00
93031    31133    558    2017-05-24 11:21:00    2017-05-24 11:21:00
93032    31133    498    2017-05-24 02:47:00    2017-05-24 02:47:00
93033    31133    794    2017-05-24 11:53:00    2017-05-24 11:53:00
93034    31133    696    2017-05-24 07:39:00    2017-05-24 07:39:00
93035    31134    503    2017-05-24 21:18:00    2017-05-24 21:18:00
93036    31134    608    2017-05-24 21:16:00    2017-05-24 21:16:00
93037    31134    788    2017-05-24 04:26:00    2017-05-24 04:26:00
93038    31134    675    2017-05-24 15:23:00    2017-05-24 15:23:00
93039    31134    519    2017-05-24 19:59:00    2017-05-24 19:59:00
93040    31135    479    2017-05-24 02:44:00    2017-05-24 02:44:00
93041    31135    771    2017-05-24 15:14:00    2017-05-24 15:14:00
93042    31135    669    2017-05-24 16:41:00    2017-05-24 16:41:00
93043    31135    802    2017-05-24 15:57:00    2017-05-24 15:57:00
93044    31135    695    2017-05-24 10:01:00    2017-05-24 10:01:00
93045    31136    574    2017-05-24 19:32:00    2017-05-24 19:32:00
93046    31136    829    2017-05-24 15:20:00    2017-05-24 15:20:00
93047    31136    933    2017-05-24 07:23:00    2017-05-24 07:23:00
93048    31136    862    2017-05-24 05:28:00    2017-05-24 05:28:00
93049    31136    766    2017-05-24 17:36:00    2017-05-24 17:36:00
93050    31137    512    2017-05-24 10:26:00    2017-05-24 10:26:00
93051    31137    622    2017-05-24 23:20:00    2017-05-24 23:20:00
93052    31137    803    2017-05-24 20:40:00    2017-05-24 20:40:00
93053    31137    850    2017-05-24 08:17:00    2017-05-24 08:17:00
93054    31137    668    2017-05-24 05:36:00    2017-05-24 05:36:00
93055    31138    959    2017-05-24 04:57:00    2017-05-24 04:57:00
93056    31138    929    2017-05-24 23:24:00    2017-05-24 23:24:00
93057    31138    722    2017-05-24 20:20:00    2017-05-24 20:20:00
93058    31138    481    2017-05-24 04:14:00    2017-05-24 04:14:00
93059    31138    845    2017-05-24 15:38:00    2017-05-24 15:38:00
93060    31139    645    2017-05-24 06:22:00    2017-05-24 06:22:00
93061    31139    505    2017-05-24 05:54:00    2017-05-24 05:54:00
93062    31139    529    2017-05-24 12:17:00    2017-05-24 12:17:00
93063    31139    573    2017-05-24 20:00:00    2017-05-24 20:00:00
93064    31139    802    2017-05-24 06:34:00    2017-05-24 06:34:00
93065    31140    699    2017-05-24 06:48:00    2017-05-24 06:48:00
93066    31140    884    2017-05-24 12:31:00    2017-05-24 12:31:00
93067    31140    795    2017-05-24 06:48:00    2017-05-24 06:48:00
93068    31140    479    2017-05-24 09:05:00    2017-05-24 09:05:00
93069    31140    661    2017-05-24 15:04:00    2017-05-24 15:04:00
93070    31141    696    2017-05-24 01:13:00    2017-05-24 01:13:00
93071    31141    732    2017-05-24 11:10:00    2017-05-24 11:10:00
93072    31141    794    2017-05-24 04:20:00    2017-05-24 04:20:00
93073    31141    851    2017-05-24 09:55:00    2017-05-24 09:55:00
93074    31141    954    2017-05-24 23:33:00    2017-05-24 23:33:00
93075    31142    463    2017-05-24 14:58:00    2017-05-24 14:58:00
93076    31142    675    2017-05-24 06:04:00    2017-05-24 06:04:00
93077    31142    487    2017-05-24 09:57:00    2017-05-24 09:57:00
93078    31142    812    2017-05-24 14:16:00    2017-05-24 14:16:00
93079    31142    706    2017-05-24 15:39:00    2017-05-24 15:39:00
93080    31143    477    2017-05-24 15:55:00    2017-05-24 15:55:00
93081    31143    780    2017-05-24 06:38:00    2017-05-24 06:38:00
93082    31143    747    2017-05-24 09:33:00    2017-05-24 09:33:00
93083    31143    532    2017-05-24 04:05:00    2017-05-24 04:05:00
93084    31143    947    2017-05-24 22:02:00    2017-05-24 22:02:00
93085    31144    927    2017-05-25 04:09:00    2017-05-25 04:09:00
93086    31144    961    2017-05-25 21:33:00    2017-05-25 21:33:00
93087    31144    740    2017-05-25 10:55:00    2017-05-25 10:55:00
93088    31144    846    2017-05-25 05:09:00    2017-05-25 05:09:00
93089    31144    674    2017-05-25 23:52:00    2017-05-25 23:52:00
93090    31145    507    2017-05-25 03:21:00    2017-05-25 03:21:00
93091    31145    711    2017-05-25 07:38:00    2017-05-25 07:38:00
93092    31145    533    2017-05-25 02:14:00    2017-05-25 02:14:00
93093    31145    639    2017-05-25 16:15:00    2017-05-25 16:15:00
93094    31145    900    2017-05-25 10:37:00    2017-05-25 10:37:00
93095    31146    621    2017-05-26 00:00:00    2017-05-26 00:00:00
93096    31146    873    2017-05-25 19:37:00    2017-05-25 19:37:00
93097    31146    759    2017-05-25 18:05:00    2017-05-25 18:05:00
93098    31146    857    2017-05-25 18:38:00    2017-05-25 18:38:00
93099    31146    526    2017-05-25 08:11:00    2017-05-25 08:11:00
93100    31147    687    2017-05-25 23:17:00    2017-05-25 23:17:00
93101    31147    885    2017-05-25 01:38:00    2017-05-25 01:38:00
93102    31147    711    2017-05-25 07:49:00    2017-05-25 07:49:00
93103    31147    908    2017-05-25 06:00:00    2017-05-25 06:00:00
93104    31147    666    2017-05-25 02:30:00    2017-05-25 02:30:00
93105    31148    688    2017-05-25 16:09:00    2017-05-25 16:09:00
93106    31148    958    2017-05-25 09:57:00    2017-05-25 09:57:00
93107    31148    795    2017-05-25 05:44:00    2017-05-25 05:44:00
93108    31148    887    2017-05-25 07:27:00    2017-05-25 07:27:00
93109    31148    508    2017-05-25 08:24:00    2017-05-25 08:24:00
93110    31149    642    2017-05-25 15:53:00    2017-05-25 15:53:00
93111    31149    546    2017-05-25 04:51:00    2017-05-25 04:51:00
93112    31149    849    2017-05-25 20:39:00    2017-05-25 20:39:00
93113    31149    477    2017-05-25 18:45:00    2017-05-25 18:45:00
93114    31149    468    2017-05-25 04:48:00    2017-05-25 04:48:00
93115    31150    650    2017-05-25 08:25:00    2017-05-25 08:25:00
93116    31150    569    2017-05-25 18:57:00    2017-05-25 18:57:00
93117    31150    484    2017-05-25 16:29:00    2017-05-25 16:29:00
93118    31150    908    2017-05-25 12:24:00    2017-05-25 12:24:00
93119    31150    745    2017-05-25 08:48:00    2017-05-25 08:48:00
93120    31151    629    2017-05-25 15:40:00    2017-05-25 15:40:00
93121    31151    890    2017-05-25 20:01:00    2017-05-25 20:01:00
93122    31151    740    2017-05-25 15:23:00    2017-05-25 15:23:00
93123    31151    730    2017-05-25 10:30:00    2017-05-25 10:30:00
93124    31151    681    2017-05-25 02:15:00    2017-05-25 02:15:00
93125    31152    589    2017-05-25 18:02:00    2017-05-25 18:02:00
93126    31152    483    2017-05-25 16:22:00    2017-05-25 16:22:00
93127    31152    630    2017-05-25 08:31:00    2017-05-25 08:31:00
93128    31152    791    2017-05-25 04:23:00    2017-05-25 04:23:00
93129    31152    750    2017-05-25 02:33:00    2017-05-25 02:33:00
93130    31153    693    2017-05-25 22:44:00    2017-05-25 22:44:00
93131    31153    835    2017-05-25 16:09:00    2017-05-25 16:09:00
93132    31153    927    2017-05-25 11:03:00    2017-05-25 11:03:00
93133    31153    545    2017-05-25 22:24:00    2017-05-25 22:24:00
93134    31153    877    2017-05-25 10:23:00    2017-05-25 10:23:00
93135    31154    515    2017-05-25 06:37:00    2017-05-25 06:37:00
93136    31154    910    2017-05-25 01:45:00    2017-05-25 01:45:00
93137    31154    833    2017-05-25 18:05:00    2017-05-25 18:05:00
93138    31154    953    2017-05-25 19:23:00    2017-05-25 19:23:00
93139    31154    753    2017-05-25 05:33:00    2017-05-25 05:33:00
93140    31155    595    2017-05-25 10:24:00    2017-05-25 10:24:00
93141    31155    597    2017-05-25 02:56:00    2017-05-25 02:56:00
93142    31155    688    2017-05-25 01:58:00    2017-05-25 01:58:00
93143    31155    527    2017-05-25 17:28:00    2017-05-25 17:28:00
93144    31155    527    2017-05-25 21:21:00    2017-05-25 21:21:00
93145    31156    579    2017-05-25 16:30:00    2017-05-25 16:30:00
93146    31156    849    2017-05-25 07:22:00    2017-05-25 07:22:00
93147    31156    556    2017-05-25 05:34:00    2017-05-25 05:34:00
93148    31156    682    2017-05-25 10:16:00    2017-05-25 10:16:00
93149    31156    848    2017-05-25 23:19:00    2017-05-25 23:19:00
93150    31157    755    2017-05-25 21:41:00    2017-05-25 21:41:00
93151    31157    774    2017-05-25 20:00:00    2017-05-25 20:00:00
93152    31157    876    2017-05-25 04:26:00    2017-05-25 04:26:00
93153    31157    607    2017-05-25 02:33:00    2017-05-25 02:33:00
93154    31157    819    2017-05-25 08:59:00    2017-05-25 08:59:00
93155    31158    833    2017-05-25 20:26:00    2017-05-25 20:26:00
93156    31158    812    2017-05-25 02:11:00    2017-05-25 02:11:00
93157    31158    901    2017-05-25 01:06:00    2017-05-25 01:06:00
93158    31158    932    2017-05-25 05:44:00    2017-05-25 05:44:00
93159    31158    561    2017-05-25 17:27:00    2017-05-25 17:27:00
93160    31159    949    2017-05-25 13:05:00    2017-05-25 13:05:00
93161    31159    637    2017-05-25 17:47:00    2017-05-25 17:47:00
93162    31159    850    2017-05-25 17:25:00    2017-05-25 17:25:00
93163    31159    624    2017-05-25 21:12:00    2017-05-25 21:12:00
93164    31159    839    2017-05-25 07:48:00    2017-05-25 07:48:00
93165    31160    698    2017-05-25 21:31:00    2017-05-25 21:31:00
93166    31160    738    2017-05-25 13:54:00    2017-05-25 13:54:00
93167    31160    702    2017-05-25 18:23:00    2017-05-25 18:23:00
93168    31160    778    2017-05-25 04:05:00    2017-05-25 04:05:00
93169    31160    913    2017-05-25 12:32:00    2017-05-25 12:32:00
93170    31161    685    2017-05-25 03:45:00    2017-05-25 03:45:00
93171    31161    515    2017-05-25 07:42:00    2017-05-25 07:42:00
93172    31161    605    2017-05-25 05:27:00    2017-05-25 05:27:00
93173    31161    699    2017-05-25 16:31:00    2017-05-25 16:31:00
93174    31161    913    2017-05-25 22:16:00    2017-05-25 22:16:00
93175    31162    817    2017-05-25 04:22:00    2017-05-25 04:22:00
93176    31162    936    2017-05-25 15:47:00    2017-05-25 15:47:00
93177    31162    575    2017-05-25 12:05:00    2017-05-25 12:05:00
93178    31162    826    2017-05-25 02:32:00    2017-05-25 02:32:00
93179    31162    752    2017-05-25 13:27:00    2017-05-25 13:27:00
93180    31163    631    2017-05-25 01:19:00    2017-05-25 01:19:00
93181    31163    714    2017-05-25 19:27:00    2017-05-25 19:27:00
93182    31163    809    2017-05-25 10:08:00    2017-05-25 10:08:00
93183    31163    633    2017-05-25 17:20:00    2017-05-25 17:20:00
93184    31163    594    2017-05-25 18:47:00    2017-05-25 18:47:00
93185    31164    841    2017-05-25 17:31:00    2017-05-25 17:31:00
93186    31164    712    2017-05-25 11:38:00    2017-05-25 11:38:00
93187    31164    730    2017-05-25 14:38:00    2017-05-25 14:38:00
93188    31164    655    2017-05-25 16:42:00    2017-05-25 16:42:00
93189    31164    887    2017-05-25 14:16:00    2017-05-25 14:16:00
93190    31165    760    2017-05-25 16:18:00    2017-05-25 16:18:00
93191    31165    696    2017-05-25 10:18:00    2017-05-25 10:18:00
93192    31165    567    2017-05-25 21:23:00    2017-05-25 21:23:00
93193    31165    766    2017-05-25 06:30:00    2017-05-25 06:30:00
93194    31165    546    2017-05-25 19:42:00    2017-05-25 19:42:00
93195    31166    796    2017-05-25 05:11:00    2017-05-25 05:11:00
93196    31166    664    2017-05-25 17:00:00    2017-05-25 17:00:00
93197    31166    635    2017-05-25 01:34:00    2017-05-25 01:34:00
93198    31166    939    2017-05-25 20:02:00    2017-05-25 20:02:00
93199    31166    763    2017-05-25 17:35:00    2017-05-25 17:35:00
93200    31167    488    2017-05-25 14:44:00    2017-05-25 14:44:00
93201    31167    931    2017-05-25 05:30:00    2017-05-25 05:30:00
93202    31167    652    2017-05-25 06:32:00    2017-05-25 06:32:00
93203    31167    688    2017-05-25 20:06:00    2017-05-25 20:06:00
93204    31167    891    2017-05-25 11:11:00    2017-05-25 11:11:00
93205    31168    599    2017-05-25 12:40:00    2017-05-25 12:40:00
93206    31168    863    2017-05-25 16:13:00    2017-05-25 16:13:00
93207    31168    543    2017-05-25 11:15:00    2017-05-25 11:15:00
93208    31168    552    2017-05-25 06:52:00    2017-05-25 06:52:00
93209    31168    752    2017-05-25 05:29:00    2017-05-25 05:29:00
93210    31169    814    2017-05-25 04:28:00    2017-05-25 04:28:00
93211    31169    640    2017-05-25 07:23:00    2017-05-25 07:23:00
93212    31169    876    2017-05-25 07:28:00    2017-05-25 07:28:00
93213    31169    751    2017-05-25 19:01:00    2017-05-25 19:01:00
93214    31169    782    2017-05-25 10:19:00    2017-05-25 10:19:00
93215    31170    825    2017-05-25 23:40:00    2017-05-25 23:40:00
93216    31170    472    2017-05-25 21:02:00    2017-05-25 21:02:00
93217    31170    521    2017-05-25 14:06:00    2017-05-25 14:06:00
93218    31170    800    2017-05-25 01:25:00    2017-05-25 01:25:00
93219    31170    900    2017-05-25 10:31:00    2017-05-25 10:31:00
93220    31171    792    2017-05-25 11:32:00    2017-05-25 11:32:00
93221    31171    485    2017-05-25 08:54:00    2017-05-25 08:54:00
93222    31171    529    2017-05-25 14:21:00    2017-05-25 14:21:00
93223    31171    879    2017-05-25 01:16:00    2017-05-25 01:16:00
93224    31171    492    2017-05-25 15:30:00    2017-05-25 15:30:00
93225    31172    527    2017-05-25 21:12:00    2017-05-25 21:12:00
93226    31172    761    2017-05-25 20:52:00    2017-05-25 20:52:00
93227    31172    820    2017-05-25 14:18:00    2017-05-25 14:18:00
93228    31172    491    2017-05-25 13:37:00    2017-05-25 13:37:00
93229    31172    525    2017-05-25 20:53:00    2017-05-25 20:53:00
93230    31173    778    2017-05-25 08:16:00    2017-05-25 08:16:00
93231    31173    796    2017-05-25 14:02:00    2017-05-25 14:02:00
93232    31173    961    2017-05-25 04:00:00    2017-05-25 04:00:00
93233    31173    749    2017-05-25 02:31:00    2017-05-25 02:31:00
93234    31173    697    2017-05-25 05:57:00    2017-05-25 05:57:00
93235    31174    513    2017-05-25 13:00:00    2017-05-25 13:00:00
93236    31174    910    2017-05-25 10:21:00    2017-05-25 10:21:00
93237    31174    852    2017-05-25 20:07:00    2017-05-25 20:07:00
93238    31174    470    2017-05-25 22:44:00    2017-05-25 22:44:00
93239    31174    875    2017-05-25 12:30:00    2017-05-25 12:30:00
93240    31175    504    2017-05-25 23:31:00    2017-05-25 23:31:00
93241    31175    604    2017-05-25 18:12:00    2017-05-25 18:12:00
93242    31175    497    2017-05-25 06:59:00    2017-05-25 06:59:00
93243    31175    576    2017-05-25 01:15:00    2017-05-25 01:15:00
93244    31175    517    2017-05-25 04:54:00    2017-05-25 04:54:00
93245    31176    536    2017-05-25 12:33:00    2017-05-25 12:33:00
93246    31176    751    2017-05-25 17:39:00    2017-05-25 17:39:00
93247    31176    900    2017-05-25 06:19:00    2017-05-25 06:19:00
93248    31176    563    2017-05-25 18:50:00    2017-05-25 18:50:00
93249    31176    670    2017-05-25 21:55:00    2017-05-25 21:55:00
93250    31177    695    2017-05-25 09:46:00    2017-05-25 09:46:00
93251    31177    484    2017-05-25 07:56:00    2017-05-25 07:56:00
93252    31177    636    2017-05-25 19:18:00    2017-05-25 19:18:00
93253    31177    645    2017-05-25 15:15:00    2017-05-25 15:15:00
93254    31177    894    2017-05-25 20:39:00    2017-05-25 20:39:00
93255    31178    657    2017-05-25 11:03:00    2017-05-25 11:03:00
93256    31178    540    2017-05-25 04:26:00    2017-05-25 04:26:00
93257    31178    737    2017-05-25 03:01:00    2017-05-25 03:01:00
93258    31178    689    2017-05-25 17:39:00    2017-05-25 17:39:00
93259    31178    690    2017-05-25 11:28:00    2017-05-25 11:28:00
93260    31179    773    2017-05-25 17:38:00    2017-05-25 17:38:00
93261    31179    782    2017-05-25 11:21:00    2017-05-25 11:21:00
93262    31179    950    2017-05-25 03:01:00    2017-05-25 03:01:00
93263    31179    558    2017-05-25 17:37:00    2017-05-25 17:37:00
93264    31179    738    2017-05-25 23:43:00    2017-05-25 23:43:00
93265    31180    612    2017-05-25 01:42:00    2017-05-25 01:42:00
93266    31180    813    2017-05-25 10:15:00    2017-05-25 10:15:00
93267    31180    794    2017-05-25 05:48:00    2017-05-25 05:48:00
93268    31180    941    2017-05-25 18:58:00    2017-05-25 18:58:00
93269    31180    603    2017-05-25 07:09:00    2017-05-25 07:09:00
93270    31181    654    2017-05-25 11:32:00    2017-05-25 11:32:00
93271    31181    883    2017-05-25 15:32:00    2017-05-25 15:32:00
93272    31181    795    2017-05-25 09:29:00    2017-05-25 09:29:00
93273    31181    660    2017-05-25 03:42:00    2017-05-25 03:42:00
93274    31181    952    2017-05-25 16:05:00    2017-05-25 16:05:00
93275    31182    779    2017-05-25 14:21:00    2017-05-25 14:21:00
93276    31182    608    2017-05-25 19:52:00    2017-05-25 19:52:00
93277    31182    559    2017-05-25 23:48:00    2017-05-25 23:48:00
93278    31182    473    2017-05-25 13:30:00    2017-05-25 13:30:00
93279    31182    828    2017-05-25 14:28:00    2017-05-25 14:28:00
93280    31183    543    2017-05-25 06:32:00    2017-05-25 06:32:00
93281    31183    470    2017-05-25 19:00:00    2017-05-25 19:00:00
93282    31183    642    2017-05-25 02:52:00    2017-05-25 02:52:00
93283    31183    816    2017-05-25 23:08:00    2017-05-25 23:08:00
93284    31183    716    2017-05-25 01:28:00    2017-05-25 01:28:00
93285    31184    748    2017-05-25 20:35:00    2017-05-25 20:35:00
93286    31184    935    2017-05-25 14:56:00    2017-05-25 14:56:00
93287    31184    882    2017-05-25 11:36:00    2017-05-25 11:36:00
93288    31184    856    2017-05-25 04:34:00    2017-05-25 04:34:00
93289    31184    911    2017-05-25 06:21:00    2017-05-25 06:21:00
93290    31185    563    2017-05-25 12:44:00    2017-05-25 12:44:00
93291    31185    585    2017-05-25 06:56:00    2017-05-25 06:56:00
93292    31185    852    2017-05-25 20:25:00    2017-05-25 20:25:00
93293    31185    948    2017-05-25 04:51:00    2017-05-25 04:51:00
93294    31185    578    2017-05-25 15:44:00    2017-05-25 15:44:00
93295    31186    638    2017-05-25 05:24:00    2017-05-25 05:24:00
93296    31186    684    2017-05-25 23:07:00    2017-05-25 23:07:00
93297    31186    754    2017-05-25 16:21:00    2017-05-25 16:21:00
93298    31186    578    2017-05-25 12:54:00    2017-05-25 12:54:00
93299    31186    510    2017-05-25 17:56:00    2017-05-25 17:56:00
93300    31187    625    2017-05-25 23:44:00    2017-05-25 23:44:00
93301    31187    596    2017-05-25 04:50:00    2017-05-25 04:50:00
93302    31187    843    2017-05-25 19:29:00    2017-05-25 19:29:00
93303    31187    876    2017-05-25 04:15:00    2017-05-25 04:15:00
93304    31187    830    2017-05-25 15:10:00    2017-05-25 15:10:00
93305    31188    483    2017-05-25 01:16:00    2017-05-25 01:16:00
93306    31188    616    2017-05-25 07:33:00    2017-05-25 07:33:00
93307    31188    741    2017-05-25 20:29:00    2017-05-25 20:29:00
93308    31188    569    2017-05-25 01:48:00    2017-05-25 01:48:00
93309    31188    935    2017-05-25 15:56:00    2017-05-25 15:56:00
93310    31189    653    2017-05-25 21:19:00    2017-05-25 21:19:00
93311    31189    958    2017-05-25 05:10:00    2017-05-25 05:10:00
93312    31189    686    2017-05-25 16:59:00    2017-05-25 16:59:00
93313    31189    672    2017-05-25 05:45:00    2017-05-25 05:45:00
93314    31189    725    2017-05-25 23:20:00    2017-05-25 23:20:00
93315    31190    698    2017-05-25 08:46:00    2017-05-25 08:46:00
93316    31190    648    2017-05-25 09:06:00    2017-05-25 09:06:00
93317    31190    576    2017-05-25 13:03:00    2017-05-25 13:03:00
93318    31190    790    2017-05-25 23:28:00    2017-05-25 23:28:00
93319    31190    527    2017-05-25 15:48:00    2017-05-25 15:48:00
93320    31191    636    2017-05-25 17:20:00    2017-05-25 17:20:00
93321    31191    481    2017-05-25 21:36:00    2017-05-25 21:36:00
93322    31191    535    2017-05-25 18:33:00    2017-05-25 18:33:00
93323    31191    619    2017-05-25 02:42:00    2017-05-25 02:42:00
93324    31191    954    2017-05-25 15:56:00    2017-05-25 15:56:00
93325    31192    531    2017-05-25 09:59:00    2017-05-25 09:59:00
93326    31192    547    2017-05-25 06:25:00    2017-05-25 06:25:00
93327    31192    897    2017-05-25 01:58:00    2017-05-25 01:58:00
93328    31192    788    2017-05-25 11:11:00    2017-05-25 11:11:00
93329    31192    513    2017-05-25 22:05:00    2017-05-25 22:05:00
93330    31193    692    2017-05-26 19:14:00    2017-05-26 19:14:00
93331    31193    729    2017-05-26 16:07:00    2017-05-26 16:07:00
93332    31193    945    2017-05-26 20:05:00    2017-05-26 20:05:00
93333    31193    755    2017-05-26 17:00:00    2017-05-26 17:00:00
93334    31193    892    2017-05-26 03:58:00    2017-05-26 03:58:00
93335    31194    856    2017-05-26 01:44:00    2017-05-26 01:44:00
93336    31194    516    2017-05-26 07:33:00    2017-05-26 07:33:00
93337    31194    631    2017-05-26 11:50:00    2017-05-26 11:50:00
93338    31194    473    2017-05-26 12:54:00    2017-05-26 12:54:00
93339    31194    634    2017-05-26 03:38:00    2017-05-26 03:38:00
93340    31195    649    2017-05-26 21:46:00    2017-05-26 21:46:00
93341    31195    856    2017-05-26 11:42:00    2017-05-26 11:42:00
93342    31195    546    2017-05-26 22:40:00    2017-05-26 22:40:00
93343    31195    897    2017-05-26 20:21:00    2017-05-26 20:21:00
93344    31195    529    2017-05-26 06:59:00    2017-05-26 06:59:00
93345    31196    926    2017-05-26 12:05:00    2017-05-26 12:05:00
93346    31196    687    2017-05-26 17:07:00    2017-05-26 17:07:00
93347    31196    824    2017-05-26 03:00:00    2017-05-26 03:00:00
93348    31196    495    2017-05-26 07:08:00    2017-05-26 07:08:00
93349    31196    489    2017-05-26 02:38:00    2017-05-26 02:38:00
93350    31197    885    2017-05-26 23:10:00    2017-05-26 23:10:00
93351    31197    720    2017-05-26 08:19:00    2017-05-26 08:19:00
93352    31197    561    2017-05-26 23:16:00    2017-05-26 23:16:00
93353    31197    545    2017-05-26 16:57:00    2017-05-26 16:57:00
93354    31197    921    2017-05-26 07:27:00    2017-05-26 07:27:00
93355    31198    813    2017-05-26 03:00:00    2017-05-26 03:00:00
93356    31198    682    2017-05-26 06:59:00    2017-05-26 06:59:00
93357    31198    464    2017-05-26 06:02:00    2017-05-26 06:02:00
93358    31198    483    2017-05-26 06:51:00    2017-05-26 06:51:00
93359    31198    641    2017-05-26 13:03:00    2017-05-26 13:03:00
93360    31199    898    2017-05-26 12:34:00    2017-05-26 12:34:00
93361    31199    646    2017-05-26 13:27:00    2017-05-26 13:27:00
93362    31199    479    2017-05-26 06:18:00    2017-05-26 06:18:00
93363    31199    865    2017-05-26 10:05:00    2017-05-26 10:05:00
93364    31199    491    2017-05-26 19:50:00    2017-05-26 19:50:00
93365    31200    465    2017-05-26 08:38:00    2017-05-26 08:38:00
93366    31200    821    2017-05-26 16:33:00    2017-05-26 16:33:00
93367    31200    832    2017-05-26 19:30:00    2017-05-26 19:30:00
93368    31200    463    2017-05-26 12:27:00    2017-05-26 12:27:00
93369    31200    907    2017-05-26 05:51:00    2017-05-26 05:51:00
93370    31201    529    2017-05-26 05:03:00    2017-05-26 05:03:00
93371    31201    568    2017-05-26 17:44:00    2017-05-26 17:44:00
93372    31201    541    2017-05-26 03:00:00    2017-05-26 03:00:00
93373    31201    835    2017-05-26 17:46:00    2017-05-26 17:46:00
93374    31201    768    2017-05-26 15:51:00    2017-05-26 15:51:00
93375    31202    834    2017-05-26 01:53:00    2017-05-26 01:53:00
93376    31202    624    2017-05-26 19:41:00    2017-05-26 19:41:00
93377    31202    632    2017-05-26 03:32:00    2017-05-26 03:32:00
93378    31202    944    2017-05-26 01:53:00    2017-05-26 01:53:00
93379    31202    698    2017-05-26 14:44:00    2017-05-26 14:44:00
93380    31203    548    2017-05-26 06:28:00    2017-05-26 06:28:00
93381    31203    830    2017-05-26 02:38:00    2017-05-26 02:38:00
93382    31203    793    2017-05-26 04:00:00    2017-05-26 04:00:00
93383    31203    770    2017-05-26 23:21:00    2017-05-26 23:21:00
93384    31203    816    2017-05-26 18:05:00    2017-05-26 18:05:00
93385    31204    764    2017-05-26 01:02:00    2017-05-26 01:02:00
93386    31204    583    2017-05-26 09:00:00    2017-05-26 09:00:00
93387    31204    521    2017-05-26 13:42:00    2017-05-26 13:42:00
93388    31204    649    2017-05-26 02:13:00    2017-05-26 02:13:00
93389    31204    612    2017-05-26 20:38:00    2017-05-26 20:38:00
93390    31205    792    2017-05-26 12:33:00    2017-05-26 12:33:00
93391    31205    633    2017-05-26 13:40:00    2017-05-26 13:40:00
93392    31205    860    2017-05-26 05:31:00    2017-05-26 05:31:00
93393    31205    618    2017-05-26 18:37:00    2017-05-26 18:37:00
93394    31205    872    2017-05-26 05:16:00    2017-05-26 05:16:00
93395    31206    540    2017-05-26 21:03:00    2017-05-26 21:03:00
93396    31206    466    2017-05-26 07:44:00    2017-05-26 07:44:00
93397    31206    778    2017-05-26 05:10:00    2017-05-26 05:10:00
93398    31206    768    2017-05-26 09:44:00    2017-05-26 09:44:00
93399    31206    825    2017-05-26 09:00:00    2017-05-26 09:00:00
93400    31207    930    2017-05-26 11:52:00    2017-05-26 11:52:00
93401    31207    912    2017-05-26 21:27:00    2017-05-26 21:27:00
93402    31207    804    2017-05-26 23:14:00    2017-05-26 23:14:00
93403    31207    557    2017-05-26 12:05:00    2017-05-26 12:05:00
93404    31207    896    2017-05-26 06:43:00    2017-05-26 06:43:00
93405    31208    685    2017-05-26 23:29:00    2017-05-26 23:29:00
93406    31208    801    2017-05-26 11:01:00    2017-05-26 11:01:00
93407    31208    629    2017-05-26 03:15:00    2017-05-26 03:15:00
93408    31208    599    2017-05-26 10:14:00    2017-05-26 10:14:00
93409    31208    915    2017-05-26 17:30:00    2017-05-26 17:30:00
93410    31209    601    2017-05-26 17:14:00    2017-05-26 17:14:00
93411    31209    680    2017-05-26 19:35:00    2017-05-26 19:35:00
93412    31209    574    2017-05-26 13:29:00    2017-05-26 13:29:00
93413    31209    630    2017-05-26 05:45:00    2017-05-26 05:45:00
93414    31209    686    2017-05-26 07:15:00    2017-05-26 07:15:00
93415    31210    864    2017-05-26 04:01:00    2017-05-26 04:01:00
93416    31210    957    2017-05-26 05:49:00    2017-05-26 05:49:00
93417    31210    511    2017-05-26 04:56:00    2017-05-26 04:56:00
93418    31210    504    2017-05-26 11:34:00    2017-05-26 11:34:00
93419    31210    702    2017-05-26 02:35:00    2017-05-26 02:35:00
93420    31211    561    2017-05-26 10:51:00    2017-05-26 10:51:00
93421    31211    795    2017-05-26 06:35:00    2017-05-26 06:35:00
93422    31211    869    2017-05-26 08:06:00    2017-05-26 08:06:00
93423    31211    828    2017-05-26 04:05:00    2017-05-26 04:05:00
93424    31211    616    2017-05-26 06:46:00    2017-05-26 06:46:00
93425    31212    845    2017-05-26 05:09:00    2017-05-26 05:09:00
93426    31212    749    2017-05-26 19:54:00    2017-05-26 19:54:00
93427    31212    901    2017-05-26 13:23:00    2017-05-26 13:23:00
93428    31212    905    2017-05-26 23:11:00    2017-05-26 23:11:00
93429    31212    573    2017-05-26 23:48:00    2017-05-26 23:48:00
93430    31213    768    2017-05-26 18:17:00    2017-05-26 18:17:00
93431    31213    596    2017-05-26 19:57:00    2017-05-26 19:57:00
93432    31213    882    2017-05-26 09:44:00    2017-05-26 09:44:00
93433    31213    930    2017-05-26 13:33:00    2017-05-26 13:33:00
93434    31213    661    2017-05-26 03:50:00    2017-05-26 03:50:00
93435    31214    923    2017-05-26 16:57:00    2017-05-26 16:57:00
93436    31214    757    2017-05-26 06:04:00    2017-05-26 06:04:00
93437    31214    840    2017-05-26 18:10:00    2017-05-26 18:10:00
93438    31214    545    2017-05-26 09:14:00    2017-05-26 09:14:00
93439    31214    960    2017-05-26 21:42:00    2017-05-26 21:42:00
93440    31215    608    2017-05-26 09:58:00    2017-05-26 09:58:00
93441    31215    527    2017-05-26 11:09:00    2017-05-26 11:09:00
93442    31215    549    2017-05-26 03:46:00    2017-05-26 03:46:00
93443    31215    659    2017-05-26 23:31:00    2017-05-26 23:31:00
93444    31215    733    2017-05-26 09:30:00    2017-05-26 09:30:00
93445    31216    465    2017-05-26 12:42:00    2017-05-26 12:42:00
93446    31216    655    2017-05-26 21:05:00    2017-05-26 21:05:00
93447    31216    760    2017-05-26 07:15:00    2017-05-26 07:15:00
93448    31216    724    2017-05-26 06:50:00    2017-05-26 06:50:00
93449    31216    866    2017-05-26 22:13:00    2017-05-26 22:13:00
93450    31217    853    2017-05-26 19:17:00    2017-05-26 19:17:00
93451    31217    577    2017-05-26 10:31:00    2017-05-26 10:31:00
93452    31217    808    2017-05-26 04:32:00    2017-05-26 04:32:00
93453    31217    509    2017-05-26 14:39:00    2017-05-26 14:39:00
93454    31217    597    2017-05-26 21:20:00    2017-05-26 21:20:00
93455    31218    553    2017-05-26 06:32:00    2017-05-26 06:32:00
93456    31218    927    2017-05-26 20:33:00    2017-05-26 20:33:00
93457    31218    836    2017-05-26 03:02:00    2017-05-26 03:02:00
93458    31218    472    2017-05-26 05:38:00    2017-05-26 05:38:00
93459    31218    832    2017-05-26 20:10:00    2017-05-26 20:10:00
93460    31219    517    2017-05-26 06:17:00    2017-05-26 06:17:00
93461    31219    649    2017-05-26 23:09:00    2017-05-26 23:09:00
93462    31219    609    2017-05-26 13:38:00    2017-05-26 13:38:00
93463    31219    468    2017-05-26 12:36:00    2017-05-26 12:36:00
93464    31219    593    2017-05-26 13:00:00    2017-05-26 13:00:00
93465    31220    672    2017-05-26 02:07:00    2017-05-26 02:07:00
93466    31220    475    2017-05-26 15:17:00    2017-05-26 15:17:00
93467    31220    631    2017-05-26 09:05:00    2017-05-26 09:05:00
93468    31220    546    2017-05-26 10:18:00    2017-05-26 10:18:00
93469    31220    738    2017-05-26 17:05:00    2017-05-26 17:05:00
93470    31221    855    2017-05-26 04:44:00    2017-05-26 04:44:00
93471    31221    697    2017-05-26 23:22:00    2017-05-26 23:22:00
93472    31221    566    2017-05-26 15:44:00    2017-05-26 15:44:00
93473    31221    776    2017-05-26 22:49:00    2017-05-26 22:49:00
93474    31221    464    2017-05-26 03:57:00    2017-05-26 03:57:00
93475    31222    481    2017-05-26 02:39:00    2017-05-26 02:39:00
93476    31222    814    2017-05-26 22:43:00    2017-05-26 22:43:00
93477    31222    826    2017-05-26 11:55:00    2017-05-26 11:55:00
93478    31222    725    2017-05-26 21:58:00    2017-05-26 21:58:00
93479    31222    895    2017-05-26 06:53:00    2017-05-26 06:53:00
93480    31223    470    2017-05-26 07:20:00    2017-05-26 07:20:00
93481    31223    634    2017-05-26 13:48:00    2017-05-26 13:48:00
93482    31223    550    2017-05-26 08:19:00    2017-05-26 08:19:00
93483    31223    657    2017-05-26 18:01:00    2017-05-26 18:01:00
93484    31223    714    2017-05-26 14:40:00    2017-05-26 14:40:00
93485    31224    529    2017-05-26 04:43:00    2017-05-26 04:43:00
93486    31224    578    2017-05-26 09:20:00    2017-05-26 09:20:00
93487    31224    827    2017-05-26 04:29:00    2017-05-26 04:29:00
93488    31224    779    2017-05-26 13:47:00    2017-05-26 13:47:00
93489    31224    786    2017-05-26 17:34:00    2017-05-26 17:34:00
93490    31225    936    2017-05-26 23:49:00    2017-05-26 23:49:00
93491    31225    948    2017-05-26 14:47:00    2017-05-26 14:47:00
93492    31225    743    2017-05-26 23:12:00    2017-05-26 23:12:00
93493    31225    540    2017-05-26 23:40:00    2017-05-26 23:40:00
93494    31225    517    2017-05-26 17:58:00    2017-05-26 17:58:00
93495    31226    677    2017-05-26 20:49:00    2017-05-26 20:49:00
93496    31226    587    2017-05-26 18:14:00    2017-05-26 18:14:00
93497    31226    564    2017-05-26 07:52:00    2017-05-26 07:52:00
93498    31226    520    2017-05-26 15:01:00    2017-05-26 15:01:00
93499    31226    572    2017-05-26 09:11:00    2017-05-26 09:11:00
93500    31227    782    2017-05-26 20:31:00    2017-05-26 20:31:00
93501    31227    917    2017-05-26 21:30:00    2017-05-26 21:30:00
93502    31227    537    2017-05-26 12:36:00    2017-05-26 12:36:00
93503    31227    587    2017-05-26 02:27:00    2017-05-26 02:27:00
93504    31227    725    2017-05-26 18:49:00    2017-05-26 18:49:00
93505    31228    709    2017-05-26 20:10:00    2017-05-26 20:10:00
93506    31228    934    2017-05-26 23:31:00    2017-05-26 23:31:00
93507    31228    642    2017-05-26 14:24:00    2017-05-26 14:24:00
93508    31228    926    2017-05-26 22:01:00    2017-05-26 22:01:00
93509    31228    805    2017-05-26 23:01:00    2017-05-26 23:01:00
93510    31229    495    2017-05-26 21:25:00    2017-05-26 21:25:00
93511    31229    734    2017-05-26 04:40:00    2017-05-26 04:40:00
93512    31229    907    2017-05-26 06:31:00    2017-05-26 06:31:00
93513    31229    733    2017-05-26 03:55:00    2017-05-26 03:55:00
93514    31229    836    2017-05-26 23:54:00    2017-05-26 23:54:00
93515    31230    811    2017-05-26 20:03:00    2017-05-26 20:03:00
93516    31230    924    2017-05-26 09:56:00    2017-05-26 09:56:00
93517    31230    595    2017-05-26 06:51:00    2017-05-26 06:51:00
93518    31230    599    2017-05-26 04:16:00    2017-05-26 04:16:00
93519    31230    803    2017-05-26 19:40:00    2017-05-26 19:40:00
93520    31231    699    2017-05-26 02:12:00    2017-05-26 02:12:00
93521    31231    887    2017-05-26 13:18:00    2017-05-26 13:18:00
93522    31231    865    2017-05-26 22:07:00    2017-05-26 22:07:00
93523    31231    802    2017-05-26 14:52:00    2017-05-26 14:52:00
93524    31231    711    2017-05-26 16:35:00    2017-05-26 16:35:00
93525    31232    730    2017-05-27 05:45:00    2017-05-27 05:45:00
93526    31232    633    2017-05-27 01:01:00    2017-05-27 01:01:00
93527    31232    891    2017-05-27 18:58:00    2017-05-27 18:58:00
93528    31232    718    2017-05-27 21:34:00    2017-05-27 21:34:00
93529    31232    928    2017-05-27 08:00:00    2017-05-27 08:00:00
93530    31233    560    2017-05-27 13:45:00    2017-05-27 13:45:00
93531    31233    768    2017-05-27 15:33:00    2017-05-27 15:33:00
93532    31233    807    2017-05-27 21:01:00    2017-05-27 21:01:00
93533    31233    839    2017-05-27 14:27:00    2017-05-27 14:27:00
93534    31233    609    2017-05-27 22:23:00    2017-05-27 22:23:00
93535    31234    781    2017-05-27 13:39:00    2017-05-27 13:39:00
93536    31234    830    2017-05-27 04:48:00    2017-05-27 04:48:00
93537    31234    757    2017-05-27 03:56:00    2017-05-27 03:56:00
93538    31234    886    2017-05-27 05:31:00    2017-05-27 05:31:00
93539    31234    750    2017-05-27 13:51:00    2017-05-27 13:51:00
93540    31235    942    2017-05-27 14:27:00    2017-05-27 14:27:00
93541    31235    746    2017-05-27 13:30:00    2017-05-27 13:30:00
93542    31235    669    2017-05-27 02:13:00    2017-05-27 02:13:00
93543    31235    927    2017-05-27 20:28:00    2017-05-27 20:28:00
93544    31235    723    2017-05-27 10:53:00    2017-05-27 10:53:00
93545    31236    622    2017-05-27 10:40:00    2017-05-27 10:40:00
93546    31236    505    2017-05-27 11:49:00    2017-05-27 11:49:00
93547    31236    960    2017-05-27 06:39:00    2017-05-27 06:39:00
93548    31236    880    2017-05-27 09:33:00    2017-05-27 09:33:00
93549    31236    487    2017-05-27 08:40:00    2017-05-27 08:40:00
93550    31237    630    2017-05-27 17:57:00    2017-05-27 17:57:00
93551    31237    880    2017-05-27 23:38:00    2017-05-27 23:38:00
93552    31237    910    2017-05-27 01:50:00    2017-05-27 01:50:00
93553    31237    537    2017-05-27 21:33:00    2017-05-27 21:33:00
93554    31237    779    2017-05-27 19:52:00    2017-05-27 19:52:00
93555    31238    745    2017-05-27 08:29:00    2017-05-27 08:29:00
93556    31238    523    2017-05-27 06:45:00    2017-05-27 06:45:00
93557    31238    730    2017-05-27 10:24:00    2017-05-27 10:24:00
93558    31238    692    2017-05-27 23:43:00    2017-05-27 23:43:00
93559    31238    828    2017-05-27 22:30:00    2017-05-27 22:30:00
93560    31239    645    2017-05-27 11:27:00    2017-05-27 11:27:00
93561    31239    573    2017-05-27 11:43:00    2017-05-27 11:43:00
93562    31239    640    2017-05-27 03:23:00    2017-05-27 03:23:00
93563    31239    567    2017-05-27 02:13:00    2017-05-27 02:13:00
93564    31239    604    2017-05-27 21:50:00    2017-05-27 21:50:00
93565    31240    714    2017-05-27 08:40:00    2017-05-27 08:40:00
93566    31240    830    2017-05-27 13:20:00    2017-05-27 13:20:00
93567    31240    483    2017-05-27 21:38:00    2017-05-27 21:38:00
93568    31240    651    2017-05-27 02:22:00    2017-05-27 02:22:00
93569    31240    709    2017-05-27 03:52:00    2017-05-27 03:52:00
93570    31241    620    2017-05-27 13:26:00    2017-05-27 13:26:00
93571    31241    916    2017-05-27 01:23:00    2017-05-27 01:23:00
93572    31241    843    2017-05-27 23:06:00    2017-05-27 23:06:00
93573    31241    577    2017-05-27 15:29:00    2017-05-27 15:29:00
93574    31241    520    2017-05-27 05:02:00    2017-05-27 05:02:00
93575    31242    546    2017-05-27 15:51:00    2017-05-27 15:51:00
93576    31242    706    2017-05-27 20:53:00    2017-05-27 20:53:00
93577    31242    473    2017-05-27 13:24:00    2017-05-27 13:24:00
93578    31242    809    2017-05-27 16:55:00    2017-05-27 16:55:00
93579    31242    863    2017-05-27 21:44:00    2017-05-27 21:44:00
93580    31243    712    2017-05-27 17:19:00    2017-05-27 17:19:00
93581    31243    826    2017-05-27 20:47:00    2017-05-27 20:47:00
93582    31243    621    2017-05-27 07:08:00    2017-05-27 07:08:00
93583    31243    751    2017-05-27 21:21:00    2017-05-27 21:21:00
93584    31243    834    2017-05-27 03:36:00    2017-05-27 03:36:00
93585    31244    589    2017-05-27 01:33:00    2017-05-27 01:33:00
93586    31244    762    2017-05-27 16:17:00    2017-05-27 16:17:00
93587    31244    635    2017-05-27 23:17:00    2017-05-27 23:17:00
93588    31244    892    2017-05-27 06:15:00    2017-05-27 06:15:00
93589    31244    896    2017-05-27 14:57:00    2017-05-27 14:57:00
93590    31245    897    2017-05-27 10:43:00    2017-05-27 10:43:00
93591    31245    630    2017-05-27 12:46:00    2017-05-27 12:46:00
93592    31245    754    2017-05-27 07:31:00    2017-05-27 07:31:00
93593    31245    765    2017-05-27 18:04:00    2017-05-27 18:04:00
93594    31245    667    2017-05-27 09:26:00    2017-05-27 09:26:00
93595    31246    869    2017-05-27 05:15:00    2017-05-27 05:15:00
93596    31246    530    2017-05-27 05:25:00    2017-05-27 05:25:00
93597    31246    678    2017-05-27 08:12:00    2017-05-27 08:12:00
93598    31246    498    2017-05-27 19:59:00    2017-05-27 19:59:00
93599    31246    652    2017-05-27 10:13:00    2017-05-27 10:13:00
93600    31247    572    2017-05-27 17:14:00    2017-05-27 17:14:00
93601    31247    739    2017-05-27 01:53:00    2017-05-27 01:53:00
93602    31247    923    2017-05-27 05:49:00    2017-05-27 05:49:00
93603    31247    585    2017-05-27 21:45:00    2017-05-27 21:45:00
93604    31247    633    2017-05-27 18:09:00    2017-05-27 18:09:00
93605    31248    639    2017-05-27 05:44:00    2017-05-27 05:44:00
93606    31248    686    2017-05-27 20:51:00    2017-05-27 20:51:00
93607    31248    819    2017-05-27 16:12:00    2017-05-27 16:12:00
93608    31248    843    2017-05-27 20:16:00    2017-05-27 20:16:00
93609    31248    948    2017-05-27 19:18:00    2017-05-27 19:18:00
93610    31249    916    2017-05-27 07:20:00    2017-05-27 07:20:00
93611    31249    523    2017-05-27 21:04:00    2017-05-27 21:04:00
93612    31249    715    2017-05-27 01:37:00    2017-05-27 01:37:00
93613    31249    471    2017-05-27 16:10:00    2017-05-27 16:10:00
93614    31249    561    2017-05-27 08:03:00    2017-05-27 08:03:00
93615    31250    682    2017-05-27 23:40:00    2017-05-27 23:40:00
93616    31250    862    2017-05-27 10:53:00    2017-05-27 10:53:00
93617    31250    718    2017-05-27 04:34:00    2017-05-27 04:34:00
93618    31250    803    2017-05-27 16:35:00    2017-05-27 16:35:00
93619    31250    629    2017-05-27 10:50:00    2017-05-27 10:50:00
93620    31251    855    2017-05-27 11:37:00    2017-05-27 11:37:00
93621    31251    611    2017-05-27 14:15:00    2017-05-27 14:15:00
93622    31251    705    2017-05-27 14:00:00    2017-05-27 14:00:00
93623    31251    740    2017-05-27 22:11:00    2017-05-27 22:11:00
93624    31251    498    2017-05-27 20:40:00    2017-05-27 20:40:00
93625    31252    829    2017-05-27 10:21:00    2017-05-27 10:21:00
93626    31252    713    2017-05-27 08:33:00    2017-05-27 08:33:00
93627    31252    710    2017-05-27 15:58:00    2017-05-27 15:58:00
93628    31252    548    2017-05-27 19:08:00    2017-05-27 19:08:00
93629    31252    885    2017-05-27 20:49:00    2017-05-27 20:49:00
93630    31253    727    2017-05-27 18:59:00    2017-05-27 18:59:00
93631    31253    487    2017-05-27 11:37:00    2017-05-27 11:37:00
93632    31253    804    2017-05-27 22:14:00    2017-05-27 22:14:00
93633    31253    511    2017-05-27 13:07:00    2017-05-27 13:07:00
93634    31253    866    2017-05-27 10:29:00    2017-05-27 10:29:00
93635    31254    693    2017-05-28 12:49:00    2017-05-28 12:49:00
93636    31254    645    2017-05-28 07:01:00    2017-05-28 07:01:00
93637    31254    716    2017-05-28 14:43:00    2017-05-28 14:43:00
93638    31254    659    2017-05-28 22:16:00    2017-05-28 22:16:00
93639    31254    566    2017-05-28 20:35:00    2017-05-28 20:35:00
93640    31255    500    2017-05-28 05:51:00    2017-05-28 05:51:00
93641    31255    677    2017-05-28 17:30:00    2017-05-28 17:30:00
93642    31255    896    2017-05-28 02:06:00    2017-05-28 02:06:00
93643    31255    653    2017-05-28 01:25:00    2017-05-28 01:25:00
93644    31255    895    2017-05-28 06:03:00    2017-05-28 06:03:00
93645    31256    590    2017-05-28 09:38:00    2017-05-28 09:38:00
93646    31256    830    2017-05-28 23:01:00    2017-05-28 23:01:00
93647    31256    491    2017-05-28 20:00:00    2017-05-28 20:00:00
93648    31256    834    2017-05-28 18:29:00    2017-05-28 18:29:00
93649    31256    911    2017-05-28 13:18:00    2017-05-28 13:18:00
93650    31257    540    2017-05-28 02:25:00    2017-05-28 02:25:00
93651    31257    497    2017-05-28 01:12:00    2017-05-28 01:12:00
93652    31257    849    2017-05-28 01:07:00    2017-05-28 01:07:00
93653    31257    674    2017-05-28 21:08:00    2017-05-28 21:08:00
93654    31257    664    2017-05-28 06:34:00    2017-05-28 06:34:00
93655    31258    671    2017-05-28 13:09:00    2017-05-28 13:09:00
93656    31258    746    2017-05-28 17:13:00    2017-05-28 17:13:00
93657    31258    950    2017-05-28 14:55:00    2017-05-28 14:55:00
93658    31258    591    2017-05-28 20:02:00    2017-05-28 20:02:00
93659    31258    471    2017-05-28 23:20:00    2017-05-28 23:20:00
93660    31259    834    2017-05-28 12:45:00    2017-05-28 12:45:00
93661    31259    850    2017-05-28 09:29:00    2017-05-28 09:29:00
93662    31259    714    2017-05-28 16:22:00    2017-05-28 16:22:00
93663    31259    468    2017-05-28 17:52:00    2017-05-28 17:52:00
93664    31259    483    2017-05-28 06:00:00    2017-05-28 06:00:00
93665    31260    677    2017-05-28 11:46:00    2017-05-28 11:46:00
93666    31260    879    2017-05-28 09:27:00    2017-05-28 09:27:00
93667    31260    737    2017-05-28 22:07:00    2017-05-28 22:07:00
93668    31260    712    2017-05-28 18:18:00    2017-05-28 18:18:00
93669    31260    518    2017-05-28 05:38:00    2017-05-28 05:38:00
93670    31261    665    2017-05-28 18:55:00    2017-05-28 18:55:00
93671    31261    498    2017-05-28 20:38:00    2017-05-28 20:38:00
93672    31261    924    2017-05-28 02:38:00    2017-05-28 02:38:00
93673    31261    844    2017-05-28 05:50:00    2017-05-28 05:50:00
93674    31261    704    2017-05-28 19:43:00    2017-05-28 19:43:00
93675    31262    811    2017-05-28 17:50:00    2017-05-28 17:50:00
93676    31262    574    2017-05-28 09:54:00    2017-05-28 09:54:00
93677    31262    912    2017-05-28 08:00:00    2017-05-28 08:00:00
93678    31262    622    2017-05-28 03:34:00    2017-05-28 03:34:00
93679    31262    497    2017-05-28 08:54:00    2017-05-28 08:54:00
93680    31263    887    2017-05-28 03:23:00    2017-05-28 03:23:00
93681    31263    891    2017-05-28 06:53:00    2017-05-28 06:53:00
93682    31263    738    2017-05-28 02:00:00    2017-05-28 02:00:00
93683    31263    560    2017-05-28 09:12:00    2017-05-28 09:12:00
93684    31263    569    2017-05-28 07:20:00    2017-05-28 07:20:00
93685    31264    832    2017-05-28 07:38:00    2017-05-28 07:38:00
93686    31264    839    2017-05-28 03:55:00    2017-05-28 03:55:00
93687    31264    906    2017-05-28 02:16:00    2017-05-28 02:16:00
93688    31264    937    2017-05-28 10:03:00    2017-05-28 10:03:00
93689    31264    863    2017-05-28 07:14:00    2017-05-28 07:14:00
93690    31265    734    2017-05-28 16:17:00    2017-05-28 16:17:00
93691    31265    793    2017-05-28 09:17:00    2017-05-28 09:17:00
93692    31265    532    2017-05-28 02:57:00    2017-05-28 02:57:00
93693    31265    858    2017-05-28 19:45:00    2017-05-28 19:45:00
93694    31265    790    2017-05-28 07:07:00    2017-05-28 07:07:00
93695    31266    835    2017-05-28 14:29:00    2017-05-28 14:29:00
93696    31266    864    2017-05-28 14:56:00    2017-05-28 14:56:00
93697    31266    627    2017-05-28 10:03:00    2017-05-28 10:03:00
93698    31266    697    2017-05-28 08:06:00    2017-05-28 08:06:00
93699    31266    808    2017-05-28 21:14:00    2017-05-28 21:14:00
93700    31267    479    2017-05-28 17:02:00    2017-05-28 17:02:00
93701    31267    540    2017-05-28 20:44:00    2017-05-28 20:44:00
93702    31267    833    2017-05-28 14:09:00    2017-05-28 14:09:00
93703    31267    520    2017-05-28 15:59:00    2017-05-28 15:59:00
93704    31267    728    2017-05-28 03:18:00    2017-05-28 03:18:00
93705    31268    939    2017-05-28 23:54:00    2017-05-28 23:54:00
93706    31268    642    2017-05-28 18:46:00    2017-05-28 18:46:00
93707    31268    764    2017-05-28 23:57:00    2017-05-28 23:57:00
93708    31268    635    2017-05-28 21:18:00    2017-05-28 21:18:00
93709    31268    900    2017-05-28 08:58:00    2017-05-28 08:58:00
93710    31269    682    2017-05-28 13:10:00    2017-05-28 13:10:00
93711    31269    923    2017-05-28 18:26:00    2017-05-28 18:26:00
93712    31269    793    2017-05-28 23:38:00    2017-05-28 23:38:00
93713    31269    817    2017-05-28 14:40:00    2017-05-28 14:40:00
93714    31269    499    2017-05-28 23:22:00    2017-05-28 23:22:00
93715    31270    698    2017-05-28 17:04:00    2017-05-28 17:04:00
93716    31270    496    2017-05-28 02:38:00    2017-05-28 02:38:00
93717    31270    695    2017-05-28 22:43:00    2017-05-28 22:43:00
93718    31270    846    2017-05-28 04:51:00    2017-05-28 04:51:00
93719    31270    497    2017-05-28 08:32:00    2017-05-28 08:32:00
93720    31271    749    2017-05-28 15:22:00    2017-05-28 15:22:00
93721    31271    800    2017-05-28 07:40:00    2017-05-28 07:40:00
93722    31271    612    2017-05-28 10:25:00    2017-05-28 10:25:00
93723    31271    697    2017-05-28 03:28:00    2017-05-28 03:28:00
93724    31271    852    2017-05-28 05:19:00    2017-05-28 05:19:00
93725    31272    532    2017-05-28 18:23:00    2017-05-28 18:23:00
93726    31272    705    2017-05-28 17:36:00    2017-05-28 17:36:00
93727    31272    807    2017-05-28 11:12:00    2017-05-28 11:12:00
93728    31272    914    2017-05-28 21:59:00    2017-05-28 21:59:00
93729    31272    921    2017-05-28 06:32:00    2017-05-28 06:32:00
93730    31273    731    2017-05-28 17:33:00    2017-05-28 17:33:00
93731    31273    650    2017-05-28 17:38:00    2017-05-28 17:38:00
93732    31273    933    2017-05-28 02:50:00    2017-05-28 02:50:00
93733    31273    756    2017-05-28 13:19:00    2017-05-28 13:19:00
93734    31273    668    2017-05-28 11:11:00    2017-05-28 11:11:00
93735    31274    653    2017-05-28 16:14:00    2017-05-28 16:14:00
93736    31274    717    2017-05-28 12:52:00    2017-05-28 12:52:00
93737    31274    483    2017-05-28 06:36:00    2017-05-28 06:36:00
93738    31274    717    2017-05-28 03:10:00    2017-05-28 03:10:00
93739    31274    922    2017-05-28 05:34:00    2017-05-28 05:34:00
93740    31275    589    2017-05-28 21:46:00    2017-05-28 21:46:00
93741    31275    694    2017-05-28 16:38:00    2017-05-28 16:38:00
93742    31275    684    2017-05-28 11:22:00    2017-05-28 11:22:00
93743    31275    795    2017-05-28 22:56:00    2017-05-28 22:56:00
93744    31275    528    2017-05-28 08:10:00    2017-05-28 08:10:00
93745    31276    900    2017-05-28 10:37:00    2017-05-28 10:37:00
93746    31276    750    2017-05-28 12:51:00    2017-05-28 12:51:00
93747    31276    926    2017-05-28 22:54:00    2017-05-28 22:54:00
93748    31276    912    2017-05-28 08:01:00    2017-05-28 08:01:00
93749    31276    772    2017-05-28 12:27:00    2017-05-28 12:27:00
93750    31277    521    2017-05-28 18:13:00    2017-05-28 18:13:00
93751    31277    546    2017-05-28 14:03:00    2017-05-28 14:03:00
93752    31277    884    2017-05-28 18:31:00    2017-05-28 18:31:00
93753    31277    842    2017-05-28 09:33:00    2017-05-28 09:33:00
93754    31277    709    2017-05-28 11:04:00    2017-05-28 11:04:00
93755    31278    716    2017-05-28 02:15:00    2017-05-28 02:15:00
93756    31278    600    2017-05-28 13:43:00    2017-05-28 13:43:00
93757    31278    582    2017-05-28 14:25:00    2017-05-28 14:25:00
93758    31278    582    2017-05-28 04:04:00    2017-05-28 04:04:00
93759    31278    530    2017-05-28 12:17:00    2017-05-28 12:17:00
93760    31279    499    2017-05-28 19:24:00    2017-05-28 19:24:00
93761    31279    589    2017-05-28 10:23:00    2017-05-28 10:23:00
93762    31279    595    2017-05-28 23:54:00    2017-05-28 23:54:00
93763    31279    852    2017-05-28 08:21:00    2017-05-28 08:21:00
93764    31279    775    2017-05-28 14:14:00    2017-05-28 14:14:00
93765    31280    900    2017-05-28 19:23:00    2017-05-28 19:23:00
93766    31280    732    2017-05-28 06:09:00    2017-05-28 06:09:00
93767    31280    543    2017-05-28 16:44:00    2017-05-28 16:44:00
93768    31280    832    2017-05-28 09:32:00    2017-05-28 09:32:00
93769    31280    577    2017-05-28 22:29:00    2017-05-28 22:29:00
93770    31281    937    2017-05-28 18:46:00    2017-05-28 18:46:00
93771    31281    881    2017-05-28 13:45:00    2017-05-28 13:45:00
93772    31281    529    2017-05-28 19:26:00    2017-05-28 19:26:00
93773    31281    761    2017-05-28 23:01:00    2017-05-28 23:01:00
93774    31281    900    2017-05-28 13:35:00    2017-05-28 13:35:00
93775    31282    590    2017-05-28 07:56:00    2017-05-28 07:56:00
93776    31282    801    2017-05-28 21:30:00    2017-05-28 21:30:00
93777    31282    663    2017-05-28 22:26:00    2017-05-28 22:26:00
93778    31282    515    2017-05-28 14:41:00    2017-05-28 14:41:00
93779    31282    846    2017-05-28 17:01:00    2017-05-28 17:01:00
93780    31283    606    2017-05-28 13:19:00    2017-05-28 13:19:00
93781    31283    710    2017-05-28 09:01:00    2017-05-28 09:01:00
93782    31283    873    2017-05-28 03:28:00    2017-05-28 03:28:00
93783    31283    607    2017-05-28 01:19:00    2017-05-28 01:19:00
93784    31283    756    2017-05-28 14:34:00    2017-05-28 14:34:00
93785    31284    572    2017-05-28 04:12:00    2017-05-28 04:12:00
93786    31284    762    2017-05-28 18:36:00    2017-05-28 18:36:00
93787    31284    487    2017-05-28 12:29:00    2017-05-28 12:29:00
93788    31284    653    2017-05-28 18:15:00    2017-05-28 18:15:00
93789    31284    880    2017-05-28 14:10:00    2017-05-28 14:10:00
93790    31285    715    2017-05-28 08:40:00    2017-05-28 08:40:00
93791    31285    684    2017-05-28 19:25:00    2017-05-28 19:25:00
93792    31285    463    2017-05-28 19:59:00    2017-05-28 19:59:00
93793    31285    483    2017-05-28 05:10:00    2017-05-28 05:10:00
93794    31285    857    2017-05-28 01:14:00    2017-05-28 01:14:00
93795    31286    881    2017-05-28 02:12:00    2017-05-28 02:12:00
93796    31286    605    2017-05-28 17:10:00    2017-05-28 17:10:00
93797    31286    817    2017-05-28 02:17:00    2017-05-28 02:17:00
93798    31286    605    2017-05-28 18:05:00    2017-05-28 18:05:00
93799    31286    727    2017-05-28 01:51:00    2017-05-28 01:51:00
93800    31287    464    2017-05-28 20:10:00    2017-05-28 20:10:00
93801    31287    491    2017-05-28 07:56:00    2017-05-28 07:56:00
93802    31287    523    2017-05-28 04:10:00    2017-05-28 04:10:00
93803    31287    605    2017-05-28 07:41:00    2017-05-28 07:41:00
93804    31287    832    2017-05-28 19:55:00    2017-05-28 19:55:00
93805    31288    877    2017-05-28 21:22:00    2017-05-28 21:22:00
93806    31288    670    2017-05-28 20:19:00    2017-05-28 20:19:00
93807    31288    702    2017-05-28 02:31:00    2017-05-28 02:31:00
93808    31288    898    2017-05-28 15:00:00    2017-05-28 15:00:00
93809    31288    784    2017-05-28 01:35:00    2017-05-28 01:35:00
93810    31289    634    2017-05-28 22:43:00    2017-05-28 22:43:00
93811    31289    694    2017-05-28 03:57:00    2017-05-28 03:57:00
93812    31289    628    2017-05-28 14:51:00    2017-05-28 14:51:00
93813    31289    841    2017-05-28 12:19:00    2017-05-28 12:19:00
93814    31289    511    2017-05-28 15:37:00    2017-05-28 15:37:00
93815    31290    688    2017-05-28 07:20:00    2017-05-28 07:20:00
93816    31290    741    2017-05-28 15:17:00    2017-05-28 15:17:00
93817    31290    768    2017-05-28 14:41:00    2017-05-28 14:41:00
93818    31290    862    2017-05-28 11:33:00    2017-05-28 11:33:00
93819    31290    726    2017-05-28 20:47:00    2017-05-28 20:47:00
93820    31291    916    2017-05-28 13:52:00    2017-05-28 13:52:00
93821    31291    727    2017-05-28 23:11:00    2017-05-28 23:11:00
93822    31291    703    2017-05-28 05:08:00    2017-05-28 05:08:00
93823    31291    641    2017-05-28 02:54:00    2017-05-28 02:54:00
93824    31291    887    2017-05-28 01:00:00    2017-05-28 01:00:00
93825    31292    772    2017-05-28 15:09:00    2017-05-28 15:09:00
93826    31292    557    2017-05-28 06:27:00    2017-05-28 06:27:00
93827    31292    937    2017-05-28 01:36:00    2017-05-28 01:36:00
93828    31292    535    2017-05-28 04:59:00    2017-05-28 04:59:00
93829    31292    688    2017-05-28 23:25:00    2017-05-28 23:25:00
93830    31293    870    2017-05-28 16:56:00    2017-05-28 16:56:00
93831    31293    491    2017-05-28 06:33:00    2017-05-28 06:33:00
93832    31293    954    2017-05-28 14:24:00    2017-05-28 14:24:00
93833    31293    545    2017-05-28 21:19:00    2017-05-28 21:19:00
93834    31293    804    2017-05-28 08:12:00    2017-05-28 08:12:00
93835    31294    911    2017-05-28 02:49:00    2017-05-28 02:49:00
93836    31294    842    2017-05-28 10:18:00    2017-05-28 10:18:00
93837    31294    792    2017-05-28 03:48:00    2017-05-28 03:48:00
93838    31294    833    2017-05-28 19:49:00    2017-05-28 19:49:00
93839    31294    834    2017-05-28 09:30:00    2017-05-28 09:30:00
93840    31295    638    2017-05-28 09:36:00    2017-05-28 09:36:00
93841    31295    922    2017-05-28 20:06:00    2017-05-28 20:06:00
93842    31295    740    2017-05-28 19:36:00    2017-05-28 19:36:00
93843    31295    846    2017-05-28 16:20:00    2017-05-28 16:20:00
93844    31295    617    2017-05-28 05:53:00    2017-05-28 05:53:00
93845    31296    931    2017-05-28 02:46:00    2017-05-28 02:46:00
93846    31296    912    2017-05-28 16:44:00    2017-05-28 16:44:00
93847    31296    557    2017-05-28 14:32:00    2017-05-28 14:32:00
93848    31296    909    2017-05-28 03:34:00    2017-05-28 03:34:00
93849    31296    718    2017-05-28 10:16:00    2017-05-28 10:16:00
93850    31297    534    2017-05-28 08:18:00    2017-05-28 08:18:00
93851    31297    516    2017-05-28 10:46:00    2017-05-28 10:46:00
93852    31297    908    2017-05-28 05:15:00    2017-05-28 05:15:00
93853    31297    640    2017-05-28 05:15:00    2017-05-28 05:15:00
93854    31297    810    2017-05-28 09:44:00    2017-05-28 09:44:00
93855    31298    747    2017-05-28 23:00:00    2017-05-28 23:00:00
93856    31298    866    2017-05-28 04:40:00    2017-05-28 04:40:00
93857    31298    823    2017-05-28 18:11:00    2017-05-28 18:11:00
93858    31298    750    2017-05-28 05:43:00    2017-05-28 05:43:00
93859    31298    959    2017-05-28 06:00:00    2017-05-28 06:00:00
93860    31299    697    2017-05-28 23:57:00    2017-05-28 23:57:00
93861    31299    755    2017-05-28 07:20:00    2017-05-28 07:20:00
93862    31299    760    2017-05-28 18:27:00    2017-05-28 18:27:00
93863    31299    883    2017-05-28 16:20:00    2017-05-28 16:20:00
93864    31299    493    2017-05-28 13:25:00    2017-05-28 13:25:00
93865    31300    499    2017-05-28 03:21:00    2017-05-28 03:21:00
93866    31300    926    2017-05-28 15:37:00    2017-05-28 15:37:00
93867    31300    680    2017-05-28 22:00:00    2017-05-28 22:00:00
93868    31300    782    2017-05-28 17:07:00    2017-05-28 17:07:00
93869    31300    524    2017-05-28 12:27:00    2017-05-28 12:27:00
93870    31301    771    2017-05-28 07:37:00    2017-05-28 07:37:00
93871    31301    709    2017-05-28 01:35:00    2017-05-28 01:35:00
93872    31301    948    2017-05-28 01:11:00    2017-05-28 01:11:00
93873    31301    849    2017-05-28 12:07:00    2017-05-28 12:07:00
93874    31301    669    2017-05-28 21:56:00    2017-05-28 21:56:00
93875    31302    628    2017-05-28 16:43:00    2017-05-28 16:43:00
93876    31302    813    2017-05-28 07:28:00    2017-05-28 07:28:00
93877    31302    955    2017-05-28 18:49:00    2017-05-28 18:49:00
93878    31302    930    2017-05-28 09:02:00    2017-05-28 09:02:00
93879    31302    759    2017-05-28 05:30:00    2017-05-28 05:30:00
93880    31303    947    2017-05-28 05:05:00    2017-05-28 05:05:00
93881    31303    943    2017-05-28 06:31:00    2017-05-28 06:31:00
93882    31303    500    2017-05-28 17:55:00    2017-05-28 17:55:00
93883    31303    927    2017-05-28 22:41:00    2017-05-28 22:41:00
93884    31303    738    2017-05-28 03:55:00    2017-05-28 03:55:00
93885    31304    760    2017-05-28 09:54:00    2017-05-28 09:54:00
93886    31304    820    2017-05-28 13:03:00    2017-05-28 13:03:00
93887    31304    801    2017-05-28 11:34:00    2017-05-28 11:34:00
93888    31304    736    2017-05-28 20:42:00    2017-05-28 20:42:00
93889    31304    927    2017-05-28 21:00:00    2017-05-28 21:00:00
93890    31305    740    2017-05-28 15:32:00    2017-05-28 15:32:00
93891    31305    645    2017-05-28 23:05:00    2017-05-28 23:05:00
93892    31305    664    2017-05-28 09:11:00    2017-05-28 09:11:00
93893    31305    602    2017-05-28 11:02:00    2017-05-28 11:02:00
93894    31305    561    2017-05-28 17:40:00    2017-05-28 17:40:00
93895    31306    645    2017-05-28 12:04:00    2017-05-28 12:04:00
93896    31306    806    2017-05-28 22:47:00    2017-05-28 22:47:00
93897    31306    767    2017-05-28 16:40:00    2017-05-28 16:40:00
93898    31306    913    2017-05-28 06:28:00    2017-05-28 06:28:00
93899    31306    561    2017-05-28 19:36:00    2017-05-28 19:36:00
93900    31307    749    2017-05-28 22:47:00    2017-05-28 22:47:00
93901    31307    648    2017-05-28 02:03:00    2017-05-28 02:03:00
93902    31307    759    2017-05-28 08:05:00    2017-05-28 08:05:00
93903    31307    678    2017-05-28 23:23:00    2017-05-28 23:23:00
93904    31307    831    2017-05-28 21:19:00    2017-05-28 21:19:00
93905    31308    482    2017-05-28 12:08:00    2017-05-28 12:08:00
93906    31308    495    2017-05-28 10:21:00    2017-05-28 10:21:00
93907    31308    526    2017-05-28 18:57:00    2017-05-28 18:57:00
93908    31308    899    2017-05-28 04:09:00    2017-05-28 04:09:00
93909    31308    837    2017-05-28 14:20:00    2017-05-28 14:20:00
93910    31309    853    2017-05-28 05:11:00    2017-05-28 05:11:00
93911    31309    755    2017-05-28 20:47:00    2017-05-28 20:47:00
93912    31309    593    2017-05-28 06:17:00    2017-05-28 06:17:00
93913    31309    490    2017-05-28 11:43:00    2017-05-28 11:43:00
93914    31309    878    2017-05-28 16:45:00    2017-05-28 16:45:00
93915    31310    633    2017-05-28 07:41:00    2017-05-28 07:41:00
93916    31310    752    2017-05-28 20:54:00    2017-05-28 20:54:00
93917    31310    781    2017-05-28 05:00:00    2017-05-28 05:00:00
93918    31310    769    2017-05-28 16:41:00    2017-05-28 16:41:00
93919    31310    693    2017-05-28 11:37:00    2017-05-28 11:37:00
93920    31311    563    2017-05-28 23:18:00    2017-05-28 23:18:00
93921    31311    782    2017-05-28 14:16:00    2017-05-28 14:16:00
93922    31311    635    2017-05-28 09:45:00    2017-05-28 09:45:00
93923    31311    852    2017-05-28 15:26:00    2017-05-28 15:26:00
93924    31311    552    2017-05-28 12:38:00    2017-05-28 12:38:00
93925    31312    668    2017-05-28 17:31:00    2017-05-28 17:31:00
93926    31312    809    2017-05-28 02:48:00    2017-05-28 02:48:00
93927    31312    756    2017-05-28 21:41:00    2017-05-28 21:41:00
93928    31312    707    2017-05-28 17:16:00    2017-05-28 17:16:00
93929    31312    885    2017-05-28 15:18:00    2017-05-28 15:18:00
93930    31313    625    2017-05-28 21:42:00    2017-05-28 21:42:00
93931    31313    504    2017-05-28 11:32:00    2017-05-28 11:32:00
93932    31313    858    2017-05-28 21:14:00    2017-05-28 21:14:00
93933    31313    746    2017-05-28 15:23:00    2017-05-28 15:23:00
93934    31313    688    2017-05-28 12:46:00    2017-05-28 12:46:00
93935    31314    946    2017-05-28 06:54:00    2017-05-28 06:54:00
93936    31314    646    2017-05-28 21:51:00    2017-05-28 21:51:00
93937    31314    827    2017-05-28 16:07:00    2017-05-28 16:07:00
93938    31314    542    2017-05-28 01:45:00    2017-05-28 01:45:00
93939    31314    932    2017-05-28 14:10:00    2017-05-28 14:10:00
93940    31315    694    2017-05-28 16:01:00    2017-05-28 16:01:00
93941    31315    761    2017-05-28 16:45:00    2017-05-28 16:45:00
93942    31315    693    2017-05-28 14:14:00    2017-05-28 14:14:00
93943    31315    836    2017-05-28 23:10:00    2017-05-28 23:10:00
93944    31315    807    2017-05-28 06:00:00    2017-05-28 06:00:00
93945    31316    798    2017-05-28 10:38:00    2017-05-28 10:38:00
93946    31316    715    2017-05-28 11:40:00    2017-05-28 11:40:00
93947    31316    529    2017-05-28 18:31:00    2017-05-28 18:31:00
93948    31316    521    2017-05-28 04:10:00    2017-05-28 04:10:00
93949    31316    902    2017-05-28 22:04:00    2017-05-28 22:04:00
93950    31317    613    2017-05-28 14:25:00    2017-05-28 14:25:00
93951    31317    658    2017-05-28 18:47:00    2017-05-28 18:47:00
93952    31317    913    2017-05-28 20:50:00    2017-05-28 20:50:00
93953    31317    847    2017-05-28 12:50:00    2017-05-28 12:50:00
93954    31317    786    2017-05-28 07:00:00    2017-05-28 07:00:00
93955    31318    932    2017-05-28 19:00:00    2017-05-28 19:00:00
93956    31318    465    2017-05-28 13:19:00    2017-05-28 13:19:00
93957    31318    503    2017-05-28 18:25:00    2017-05-28 18:25:00
93958    31318    720    2017-05-28 12:17:00    2017-05-28 12:17:00
93959    31318    590    2017-05-28 11:37:00    2017-05-28 11:37:00
93960    31319    739    2017-05-28 01:04:00    2017-05-28 01:04:00
93961    31319    924    2017-05-28 11:13:00    2017-05-28 11:13:00
93962    31319    899    2017-05-28 12:47:00    2017-05-28 12:47:00
93963    31319    825    2017-05-28 11:28:00    2017-05-28 11:28:00
93964    31319    516    2017-05-28 22:19:00    2017-05-28 22:19:00
93965    31320    888    2017-05-28 14:57:00    2017-05-28 14:57:00
93966    31320    671    2017-05-28 22:41:00    2017-05-28 22:41:00
93967    31320    505    2017-05-28 10:44:00    2017-05-28 10:44:00
93968    31320    500    2017-05-28 12:38:00    2017-05-28 12:38:00
93969    31320    663    2017-05-28 12:26:00    2017-05-28 12:26:00
93970    31321    494    2017-05-28 23:30:00    2017-05-28 23:30:00
93971    31321    485    2017-05-28 22:02:00    2017-05-28 22:02:00
93972    31321    935    2017-05-28 07:15:00    2017-05-28 07:15:00
93973    31321    801    2017-05-28 08:18:00    2017-05-28 08:18:00
93974    31321    521    2017-05-28 08:29:00    2017-05-28 08:29:00
93975    31322    518    2017-05-28 18:15:00    2017-05-28 18:15:00
93976    31322    648    2017-05-28 17:09:00    2017-05-28 17:09:00
93977    31322    853    2017-05-28 22:34:00    2017-05-28 22:34:00
93978    31322    836    2017-05-28 03:00:00    2017-05-28 03:00:00
93979    31322    818    2017-05-28 06:45:00    2017-05-28 06:45:00
93980    31323    720    2017-05-28 22:04:00    2017-05-28 22:04:00
93981    31323    912    2017-05-28 03:48:00    2017-05-28 03:48:00
93982    31323    643    2017-05-28 23:42:00    2017-05-28 23:42:00
93983    31323    647    2017-05-28 19:10:00    2017-05-28 19:10:00
93984    31323    776    2017-05-28 21:33:00    2017-05-28 21:33:00
93985    31324    581    2017-05-28 23:52:00    2017-05-28 23:52:00
93986    31324    858    2017-05-28 03:24:00    2017-05-28 03:24:00
93987    31324    510    2017-05-28 15:02:00    2017-05-28 15:02:00
93988    31324    738    2017-05-28 08:33:00    2017-05-28 08:33:00
93989    31324    894    2017-05-28 04:25:00    2017-05-28 04:25:00
93990    31325    594    2017-05-28 06:47:00    2017-05-28 06:47:00
93991    31325    773    2017-05-28 15:44:00    2017-05-28 15:44:00
93992    31325    780    2017-05-28 05:45:00    2017-05-28 05:45:00
93993    31325    523    2017-05-28 08:43:00    2017-05-28 08:43:00
93994    31325    767    2017-05-28 22:03:00    2017-05-28 22:03:00
93995    31326    627    2017-05-28 03:49:00    2017-05-28 03:49:00
93996    31326    719    2017-05-28 18:35:00    2017-05-28 18:35:00
93997    31326    802    2017-05-28 14:03:00    2017-05-28 14:03:00
93998    31326    901    2017-05-28 17:15:00    2017-05-28 17:15:00
93999    31326    685    2017-05-28 01:35:00    2017-05-28 01:35:00
94000    31327    512    2017-05-28 14:36:00    2017-05-28 14:36:00
94001    31327    845    2017-05-28 18:25:00    2017-05-28 18:25:00
94002    31327    835    2017-05-28 14:16:00    2017-05-28 14:16:00
94003    31327    471    2017-05-28 18:25:00    2017-05-28 18:25:00
94004    31327    929    2017-05-28 14:00:00    2017-05-28 14:00:00
94005    31328    929    2017-05-28 16:05:00    2017-05-28 16:05:00
94006    31328    866    2017-05-28 10:51:00    2017-05-28 10:51:00
94007    31328    832    2017-05-28 17:16:00    2017-05-28 17:16:00
94008    31328    757    2017-05-28 16:06:00    2017-05-28 16:06:00
94009    31328    492    2017-05-28 02:41:00    2017-05-28 02:41:00
94010    31329    787    2017-05-29 09:05:00    2017-05-29 09:05:00
94011    31329    549    2017-05-29 04:11:00    2017-05-29 04:11:00
94012    31329    591    2017-05-29 17:09:00    2017-05-29 17:09:00
94013    31329    759    2017-05-29 16:38:00    2017-05-29 16:38:00
94014    31329    571    2017-05-29 04:32:00    2017-05-29 04:32:00
94015    31330    629    2017-05-29 13:47:00    2017-05-29 13:47:00
94016    31330    487    2017-05-29 20:23:00    2017-05-29 20:23:00
94017    31330    646    2017-05-29 03:19:00    2017-05-29 03:19:00
94018    31330    606    2017-05-29 20:07:00    2017-05-29 20:07:00
94019    31330    777    2017-05-29 23:40:00    2017-05-29 23:40:00
94020    31331    871    2017-05-29 15:33:00    2017-05-29 15:33:00
94021    31331    560    2017-05-29 22:26:00    2017-05-29 22:26:00
94022    31331    603    2017-05-29 12:50:00    2017-05-29 12:50:00
94023    31331    716    2017-05-29 14:47:00    2017-05-29 14:47:00
94024    31331    718    2017-05-29 09:16:00    2017-05-29 09:16:00
94025    31332    726    2017-05-29 02:35:00    2017-05-29 02:35:00
94026    31332    599    2017-05-29 07:31:00    2017-05-29 07:31:00
94027    31332    665    2017-05-29 07:07:00    2017-05-29 07:07:00
94028    31332    804    2017-05-29 05:13:00    2017-05-29 05:13:00
94029    31332    935    2017-05-29 07:31:00    2017-05-29 07:31:00
94030    31333    617    2017-05-29 08:30:00    2017-05-29 08:30:00
94031    31333    847    2017-05-29 23:42:00    2017-05-29 23:42:00
94032    31333    729    2017-05-29 09:08:00    2017-05-29 09:08:00
94033    31333    941    2017-05-29 22:10:00    2017-05-29 22:10:00
94034    31333    581    2017-05-29 18:02:00    2017-05-29 18:02:00
94035    31334    824    2017-05-29 14:42:00    2017-05-29 14:42:00
94036    31334    630    2017-05-29 19:57:00    2017-05-29 19:57:00
94037    31334    875    2017-05-29 08:21:00    2017-05-29 08:21:00
94038    31334    758    2017-05-29 04:32:00    2017-05-29 04:32:00
94039    31334    881    2017-05-29 04:20:00    2017-05-29 04:20:00
94040    31335    811    2017-05-29 15:26:00    2017-05-29 15:26:00
94041    31335    515    2017-05-29 08:27:00    2017-05-29 08:27:00
94042    31335    718    2017-05-29 01:17:00    2017-05-29 01:17:00
94043    31335    845    2017-05-29 17:22:00    2017-05-29 17:22:00
94044    31335    766    2017-05-29 10:31:00    2017-05-29 10:31:00
94045    31336    669    2017-05-29 12:29:00    2017-05-29 12:29:00
94046    31336    485    2017-05-29 09:16:00    2017-05-29 09:16:00
94047    31336    921    2017-05-29 01:15:00    2017-05-29 01:15:00
94048    31336    766    2017-05-29 11:16:00    2017-05-29 11:16:00
94049    31336    961    2017-05-29 23:30:00    2017-05-29 23:30:00
94050    31337    691    2017-05-29 08:12:00    2017-05-29 08:12:00
94051    31337    597    2017-05-29 17:21:00    2017-05-29 17:21:00
94052    31337    566    2017-05-29 13:06:00    2017-05-29 13:06:00
94053    31337    903    2017-05-29 19:57:00    2017-05-29 19:57:00
94054    31337    476    2017-05-29 13:32:00    2017-05-29 13:32:00
94055    31338    560    2017-05-29 19:55:00    2017-05-29 19:55:00
94056    31338    516    2017-05-29 19:05:00    2017-05-29 19:05:00
94057    31338    961    2017-05-29 20:20:00    2017-05-29 20:20:00
94058    31338    585    2017-05-29 11:47:00    2017-05-29 11:47:00
94059    31338    793    2017-05-29 18:37:00    2017-05-29 18:37:00
94060    31339    797    2017-05-29 03:56:00    2017-05-29 03:56:00
94061    31339    863    2017-05-29 02:33:00    2017-05-29 02:33:00
94062    31339    670    2017-05-29 08:35:00    2017-05-29 08:35:00
94063    31339    690    2017-05-29 17:33:00    2017-05-29 17:33:00
94064    31339    931    2017-05-29 11:13:00    2017-05-29 11:13:00
94065    31340    814    2017-05-29 21:51:00    2017-05-29 21:51:00
94066    31340    607    2017-05-29 07:01:00    2017-05-29 07:01:00
94067    31340    541    2017-05-29 01:06:00    2017-05-29 01:06:00
94068    31340    608    2017-05-29 22:52:00    2017-05-29 22:52:00
94069    31340    678    2017-05-29 17:34:00    2017-05-29 17:34:00
94070    31341    694    2017-05-29 10:01:00    2017-05-29 10:01:00
94071    31341    866    2017-05-29 20:32:00    2017-05-29 20:32:00
94072    31341    640    2017-05-29 18:39:00    2017-05-29 18:39:00
94073    31341    587    2017-05-29 19:47:00    2017-05-29 19:47:00
94074    31341    626    2017-05-29 07:39:00    2017-05-29 07:39:00
94075    31342    721    2017-05-29 19:55:00    2017-05-29 19:55:00
94076    31342    830    2017-05-29 01:01:00    2017-05-29 01:01:00
94077    31342    637    2017-05-29 06:17:00    2017-05-29 06:17:00
94078    31342    714    2017-05-29 13:13:00    2017-05-29 13:13:00
94079    31342    863    2017-05-29 12:16:00    2017-05-29 12:16:00
94080    31343    816    2017-05-29 15:52:00    2017-05-29 15:52:00
94081    31343    633    2017-05-29 01:11:00    2017-05-29 01:11:00
94082    31343    597    2017-05-29 01:34:00    2017-05-29 01:34:00
94083    31343    587    2017-05-29 17:34:00    2017-05-29 17:34:00
94084    31343    859    2017-05-29 19:30:00    2017-05-29 19:30:00
94085    31344    597    2017-05-29 06:29:00    2017-05-29 06:29:00
94086    31344    538    2017-05-29 08:03:00    2017-05-29 08:03:00
94087    31344    641    2017-05-29 12:26:00    2017-05-29 12:26:00
94088    31344    707    2017-05-29 11:26:00    2017-05-29 11:26:00
94089    31344    502    2017-05-29 23:44:00    2017-05-29 23:44:00
94090    31345    766    2017-05-29 01:34:00    2017-05-29 01:34:00
94091    31345    791    2017-05-29 04:49:00    2017-05-29 04:49:00
94092    31345    684    2017-05-29 17:19:00    2017-05-29 17:19:00
94093    31345    589    2017-05-29 03:08:00    2017-05-29 03:08:00
94094    31345    695    2017-05-29 18:57:00    2017-05-29 18:57:00
94095    31346    653    2017-05-29 13:40:00    2017-05-29 13:40:00
94096    31346    918    2017-05-29 14:04:00    2017-05-29 14:04:00
94097    31346    732    2017-05-29 19:18:00    2017-05-29 19:18:00
94098    31346    779    2017-05-29 13:24:00    2017-05-29 13:24:00
94099    31346    682    2017-05-29 15:06:00    2017-05-29 15:06:00
94100    31347    677    2017-05-29 03:57:00    2017-05-29 03:57:00
94101    31347    849    2017-05-29 20:22:00    2017-05-29 20:22:00
94102    31347    538    2017-05-29 08:26:00    2017-05-29 08:26:00
94103    31347    859    2017-05-29 20:26:00    2017-05-29 20:26:00
94104    31347    528    2017-05-29 17:18:00    2017-05-29 17:18:00
94105    31348    529    2017-05-29 08:08:00    2017-05-29 08:08:00
94106    31348    883    2017-05-29 16:17:00    2017-05-29 16:17:00
94107    31348    800    2017-05-29 06:44:00    2017-05-29 06:44:00
94108    31348    642    2017-05-29 18:03:00    2017-05-29 18:03:00
94109    31348    524    2017-05-29 13:13:00    2017-05-29 13:13:00
94110    31349    528    2017-05-29 22:03:00    2017-05-29 22:03:00
94111    31349    620    2017-05-29 04:12:00    2017-05-29 04:12:00
94112    31349    674    2017-05-29 02:07:00    2017-05-29 02:07:00
94113    31349    479    2017-05-29 17:27:00    2017-05-29 17:27:00
94114    31349    593    2017-05-29 20:06:00    2017-05-29 20:06:00
94115    31350    569    2017-05-29 09:10:00    2017-05-29 09:10:00
94116    31350    932    2017-05-29 07:34:00    2017-05-29 07:34:00
94117    31350    659    2017-05-29 08:55:00    2017-05-29 08:55:00
94118    31350    578    2017-05-29 23:11:00    2017-05-29 23:11:00
94119    31350    550    2017-05-29 06:28:00    2017-05-29 06:28:00
94120    31351    565    2017-05-29 04:58:00    2017-05-29 04:58:00
94121    31351    686    2017-05-29 01:41:00    2017-05-29 01:41:00
94122    31351    642    2017-05-29 15:22:00    2017-05-29 15:22:00
94123    31351    828    2017-05-29 02:18:00    2017-05-29 02:18:00
94124    31351    782    2017-05-29 21:54:00    2017-05-29 21:54:00
94125    31352    659    2017-05-29 03:20:00    2017-05-29 03:20:00
94126    31352    707    2017-05-29 04:44:00    2017-05-29 04:44:00
94127    31352    479    2017-05-29 07:00:00    2017-05-29 07:00:00
94128    31352    841    2017-05-29 23:22:00    2017-05-29 23:22:00
94129    31352    465    2017-05-29 20:27:00    2017-05-29 20:27:00
94130    31353    497    2017-05-29 07:54:00    2017-05-29 07:54:00
94131    31353    885    2017-05-29 11:24:00    2017-05-29 11:24:00
94132    31353    546    2017-05-29 14:23:00    2017-05-29 14:23:00
94133    31353    739    2017-05-29 05:05:00    2017-05-29 05:05:00
94134    31353    890    2017-05-29 18:39:00    2017-05-29 18:39:00
94135    31354    563    2017-05-29 14:28:00    2017-05-29 14:28:00
94136    31354    525    2017-05-29 02:17:00    2017-05-29 02:17:00
94137    31354    828    2017-05-29 17:25:00    2017-05-29 17:25:00
94138    31354    530    2017-05-29 12:20:00    2017-05-29 12:20:00
94139    31354    700    2017-05-29 05:56:00    2017-05-29 05:56:00
94140    31355    683    2017-05-30 16:20:00    2017-05-30 16:20:00
94141    31355    708    2017-05-30 22:20:00    2017-05-30 22:20:00
94142    31355    729    2017-05-30 01:23:00    2017-05-30 01:23:00
94143    31355    892    2017-05-30 01:07:00    2017-05-30 01:07:00
94144    31355    495    2017-05-30 16:49:00    2017-05-30 16:49:00
94145    31356    811    2017-05-30 11:35:00    2017-05-30 11:35:00
94146    31356    607    2017-05-30 15:32:00    2017-05-30 15:32:00
94147    31356    700    2017-05-30 16:38:00    2017-05-30 16:38:00
94148    31356    739    2017-05-30 18:45:00    2017-05-30 18:45:00
94149    31356    791    2017-05-30 09:48:00    2017-05-30 09:48:00
94150    31357    814    2017-05-30 16:09:00    2017-05-30 16:09:00
94151    31357    665    2017-05-30 17:43:00    2017-05-30 17:43:00
94152    31357    759    2017-05-30 09:30:00    2017-05-30 09:30:00
94153    31357    756    2017-05-30 11:08:00    2017-05-30 11:08:00
94154    31357    578    2017-05-30 21:49:00    2017-05-30 21:49:00
94155    31358    870    2017-05-30 01:05:00    2017-05-30 01:05:00
94156    31358    761    2017-05-30 07:00:00    2017-05-30 07:00:00
94157    31358    626    2017-05-30 02:49:00    2017-05-30 02:49:00
94158    31358    605    2017-05-30 08:44:00    2017-05-30 08:44:00
94159    31358    546    2017-05-30 21:00:00    2017-05-30 21:00:00
94160    31359    574    2017-05-30 13:07:00    2017-05-30 13:07:00
94161    31359    606    2017-05-30 12:17:00    2017-05-30 12:17:00
94162    31359    533    2017-05-30 22:00:00    2017-05-30 22:00:00
94163    31359    774    2017-05-30 10:59:00    2017-05-30 10:59:00
94164    31359    959    2017-05-30 04:46:00    2017-05-30 04:46:00
94165    31360    776    2017-05-30 05:10:00    2017-05-30 05:10:00
94166    31360    723    2017-05-30 05:05:00    2017-05-30 05:05:00
94167    31360    530    2017-05-30 15:12:00    2017-05-30 15:12:00
94168    31360    483    2017-05-30 16:25:00    2017-05-30 16:25:00
94169    31360    766    2017-05-30 10:55:00    2017-05-30 10:55:00
94170    31361    530    2017-05-30 08:18:00    2017-05-30 08:18:00
94171    31361    581    2017-05-30 17:02:00    2017-05-30 17:02:00
94172    31361    798    2017-05-30 07:07:00    2017-05-30 07:07:00
94173    31361    597    2017-05-30 09:09:00    2017-05-30 09:09:00
94174    31361    567    2017-05-30 16:04:00    2017-05-30 16:04:00
94175    31362    898    2017-05-30 01:55:00    2017-05-30 01:55:00
94176    31362    578    2017-05-30 15:25:00    2017-05-30 15:25:00
94177    31362    627    2017-05-30 18:25:00    2017-05-30 18:25:00
94178    31362    713    2017-05-30 09:21:00    2017-05-30 09:21:00
94179    31362    788    2017-05-30 03:54:00    2017-05-30 03:54:00
94180    31363    691    2017-05-30 10:57:00    2017-05-30 10:57:00
94181    31363    489    2017-05-30 22:01:00    2017-05-30 22:01:00
94182    31363    770    2017-05-30 15:34:00    2017-05-30 15:34:00
94183    31363    801    2017-05-30 20:22:00    2017-05-30 20:22:00
94184    31363    623    2017-05-30 23:54:00    2017-05-30 23:54:00
94185    31364    602    2017-05-30 14:05:00    2017-05-30 14:05:00
94186    31364    537    2017-05-30 02:55:00    2017-05-30 02:55:00
94187    31364    732    2017-05-30 01:48:00    2017-05-30 01:48:00
94188    31364    535    2017-05-30 11:11:00    2017-05-30 11:11:00
94189    31364    886    2017-05-30 10:34:00    2017-05-30 10:34:00
94190    31365    560    2017-05-30 04:19:00    2017-05-30 04:19:00
94191    31365    700    2017-05-30 11:49:00    2017-05-30 11:49:00
94192    31365    841    2017-05-30 19:15:00    2017-05-30 19:15:00
94193    31365    941    2017-05-30 23:49:00    2017-05-30 23:49:00
94194    31365    885    2017-05-30 16:26:00    2017-05-30 16:26:00
94195    31366    597    2017-05-30 02:48:00    2017-05-30 02:48:00
94196    31366    914    2017-05-30 02:44:00    2017-05-30 02:44:00
94197    31366    501    2017-05-30 19:53:00    2017-05-30 19:53:00
94198    31366    619    2017-05-30 05:23:00    2017-05-30 05:23:00
94199    31366    563    2017-05-30 09:14:00    2017-05-30 09:14:00
94200    31367    617    2017-05-30 17:30:00    2017-05-30 17:30:00
94201    31367    564    2017-05-30 11:14:00    2017-05-30 11:14:00
94202    31367    949    2017-05-30 12:44:00    2017-05-30 12:44:00
94203    31367    954    2017-05-30 09:04:00    2017-05-30 09:04:00
94204    31367    729    2017-05-30 23:58:00    2017-05-30 23:58:00
94205    31368    829    2017-05-30 13:15:00    2017-05-30 13:15:00
94206    31368    731    2017-05-30 23:59:00    2017-05-30 23:59:00
94207    31368    916    2017-05-30 19:26:00    2017-05-30 19:26:00
94208    31368    587    2017-05-30 19:35:00    2017-05-30 19:35:00
94209    31368    508    2017-05-30 17:26:00    2017-05-30 17:26:00
94211    31369    817    2017-05-30 10:51:00    2017-05-30 10:51:00
94212    31369    586    2017-05-30 14:55:00    2017-05-30 14:55:00
94213    31369    831    2017-05-30 06:17:00    2017-05-30 06:17:00
94214    31369    745    2017-05-30 01:02:00    2017-05-30 01:02:00
94215    31370    763    2017-05-30 11:44:00    2017-05-30 11:44:00
94216    31370    525    2017-05-30 10:32:00    2017-05-30 10:32:00
94217    31370    910    2017-05-30 20:16:00    2017-05-30 20:16:00
94218    31370    754    2017-05-30 16:56:00    2017-05-30 16:56:00
94219    31370    468    2017-05-30 10:00:00    2017-05-30 10:00:00
94220    31371    721    2017-05-30 07:33:00    2017-05-30 07:33:00
94221    31371    871    2017-05-30 08:55:00    2017-05-30 08:55:00
94222    31371    775    2017-05-30 02:30:00    2017-05-30 02:30:00
94223    31371    515    2017-05-30 17:38:00    2017-05-30 17:38:00
94224    31371    524    2017-05-30 03:54:00    2017-05-30 03:54:00
94225    31372    827    2017-05-30 15:54:00    2017-05-30 15:54:00
94226    31372    585    2017-05-30 05:15:00    2017-05-30 05:15:00
94227    31372    766    2017-05-30 16:37:00    2017-05-30 16:37:00
94228    31372    589    2017-05-30 21:09:00    2017-05-30 21:09:00
94229    31372    587    2017-05-30 02:17:00    2017-05-30 02:17:00
94230    31373    856    2017-05-30 16:56:00    2017-05-30 16:56:00
94231    31373    835    2017-05-30 15:03:00    2017-05-30 15:03:00
94232    31373    686    2017-05-30 04:24:00    2017-05-30 04:24:00
94233    31373    812    2017-05-30 06:00:00    2017-05-30 06:00:00
94234    31373    474    2017-05-30 16:39:00    2017-05-30 16:39:00
94235    31374    700    2017-05-30 08:47:00    2017-05-30 08:47:00
94236    31374    936    2017-05-30 23:43:00    2017-05-30 23:43:00
94237    31374    768    2017-05-30 19:01:00    2017-05-30 19:01:00
94238    31374    555    2017-05-30 19:58:00    2017-05-30 19:58:00
94239    31374    831    2017-05-30 22:49:00    2017-05-30 22:49:00
94240    31375    768    2017-05-30 04:31:00    2017-05-30 04:31:00
94241    31375    766    2017-05-30 07:32:00    2017-05-30 07:32:00
94242    31375    683    2017-05-30 07:30:00    2017-05-30 07:30:00
94243    31375    959    2017-05-30 13:22:00    2017-05-30 13:22:00
94244    31375    592    2017-05-30 17:08:00    2017-05-30 17:08:00
94245    31376    919    2017-05-30 19:51:00    2017-05-30 19:51:00
94246    31376    550    2017-05-30 20:08:00    2017-05-30 20:08:00
94247    31376    520    2017-05-30 04:26:00    2017-05-30 04:26:00
94248    31376    856    2017-05-30 23:07:00    2017-05-30 23:07:00
94249    31376    479    2017-05-30 19:18:00    2017-05-30 19:18:00
94250    31377    532    2017-05-30 08:08:00    2017-05-30 08:08:00
94251    31377    505    2017-05-30 04:34:00    2017-05-30 04:34:00
94252    31377    760    2017-05-30 04:38:00    2017-05-30 04:38:00
94253    31377    703    2017-05-30 17:07:00    2017-05-30 17:07:00
94254    31377    568    2017-05-30 06:09:00    2017-05-30 06:09:00
94255    31378    553    2017-05-30 18:25:00    2017-05-30 18:25:00
94256    31378    787    2017-05-30 22:21:00    2017-05-30 22:21:00
94257    31378    495    2017-05-30 05:15:00    2017-05-30 05:15:00
94258    31378    575    2017-05-30 09:24:00    2017-05-30 09:24:00
94259    31378    890    2017-05-30 10:23:00    2017-05-30 10:23:00
94260    31379    823    2017-05-30 18:38:00    2017-05-30 18:38:00
94261    31379    647    2017-05-30 09:06:00    2017-05-30 09:06:00
94262    31379    602    2017-05-30 09:00:00    2017-05-30 09:00:00
94263    31379    921    2017-05-30 02:23:00    2017-05-30 02:23:00
94264    31379    817    2017-05-30 06:40:00    2017-05-30 06:40:00
94265    31380    581    2017-05-30 21:27:00    2017-05-30 21:27:00
94266    31380    929    2017-05-30 15:48:00    2017-05-30 15:48:00
94267    31380    553    2017-05-30 14:34:00    2017-05-30 14:34:00
94268    31380    678    2017-05-30 05:42:00    2017-05-30 05:42:00
94269    31380    629    2017-05-30 18:47:00    2017-05-30 18:47:00
94270    31381    764    2017-05-30 21:04:00    2017-05-30 21:04:00
94271    31381    787    2017-05-30 09:40:00    2017-05-30 09:40:00
94272    31381    767    2017-05-30 14:24:00    2017-05-30 14:24:00
94273    31381    666    2017-05-30 18:11:00    2017-05-30 18:11:00
94274    31381    869    2017-05-30 15:38:00    2017-05-30 15:38:00
94275    31382    741    2017-05-30 16:53:00    2017-05-30 16:53:00
94276    31382    956    2017-05-30 23:42:00    2017-05-30 23:42:00
94277    31382    572    2017-05-30 20:29:00    2017-05-30 20:29:00
94278    31382    694    2017-05-30 15:00:00    2017-05-30 15:00:00
94279    31382    837    2017-05-30 14:42:00    2017-05-30 14:42:00
94280    31383    770    2017-05-30 20:10:00    2017-05-30 20:10:00
94281    31383    716    2017-05-30 09:15:00    2017-05-30 09:15:00
94282    31383    791    2017-05-30 03:59:00    2017-05-30 03:59:00
94283    31383    695    2017-05-30 04:59:00    2017-05-30 04:59:00
94284    31383    586    2017-05-30 18:20:00    2017-05-30 18:20:00
94285    31384    866    2017-05-30 22:53:00    2017-05-30 22:53:00
94286    31384    936    2017-05-30 12:55:00    2017-05-30 12:55:00
94287    31384    748    2017-05-30 10:18:00    2017-05-30 10:18:00
94288    31384    946    2017-05-30 15:31:00    2017-05-30 15:31:00
94289    31384    756    2017-05-30 17:14:00    2017-05-30 17:14:00
94290    31385    591    2017-05-30 06:34:00    2017-05-30 06:34:00
94291    31385    796    2017-05-30 12:20:00    2017-05-30 12:20:00
94292    31385    933    2017-05-30 18:40:00    2017-05-30 18:40:00
94293    31385    902    2017-05-30 14:59:00    2017-05-30 14:59:00
94294    31385    823    2017-05-30 07:47:00    2017-05-30 07:47:00
94295    31386    614    2017-05-30 14:33:00    2017-05-30 14:33:00
94296    31386    761    2017-05-30 16:28:00    2017-05-30 16:28:00
94297    31386    738    2017-05-30 14:14:00    2017-05-30 14:14:00
94298    31386    527    2017-05-30 22:00:00    2017-05-30 22:00:00
94299    31386    753    2017-05-30 14:22:00    2017-05-30 14:22:00
94300    31387    659    2017-05-30 21:33:00    2017-05-30 21:33:00
94301    31387    512    2017-05-30 23:00:00    2017-05-30 23:00:00
94302    31387    513    2017-05-30 21:44:00    2017-05-30 21:44:00
94303    31387    596    2017-05-30 14:06:00    2017-05-30 14:06:00
94304    31387    536    2017-05-30 21:54:00    2017-05-30 21:54:00
94305    31388    661    2017-05-30 04:10:00    2017-05-30 04:10:00
94306    31388    473    2017-05-30 07:14:00    2017-05-30 07:14:00
94307    31388    944    2017-05-30 02:31:00    2017-05-30 02:31:00
94308    31388    816    2017-05-30 17:50:00    2017-05-30 17:50:00
94309    31388    639    2017-05-30 18:53:00    2017-05-30 18:53:00
94310    31389    536    2017-05-30 10:01:00    2017-05-30 10:01:00
94311    31389    609    2017-05-30 17:23:00    2017-05-30 17:23:00
94312    31389    516    2017-05-30 22:07:00    2017-05-30 22:07:00
94313    31389    652    2017-05-30 02:00:00    2017-05-30 02:00:00
94314    31389    956    2017-05-30 01:03:00    2017-05-30 01:03:00
94315    31390    640    2017-05-30 01:04:00    2017-05-30 01:04:00
94316    31390    776    2017-05-30 19:14:00    2017-05-30 19:14:00
94317    31390    584    2017-05-30 04:58:00    2017-05-30 04:58:00
94318    31390    924    2017-05-30 16:28:00    2017-05-30 16:28:00
94319    31390    715    2017-05-30 22:34:00    2017-05-30 22:34:00
94320    31391    559    2017-05-30 14:49:00    2017-05-30 14:49:00
94321    31391    863    2017-05-30 01:39:00    2017-05-30 01:39:00
94322    31391    666    2017-05-30 18:42:00    2017-05-30 18:42:00
94323    31391    904    2017-05-30 13:32:00    2017-05-30 13:32:00
94324    31391    703    2017-05-30 05:39:00    2017-05-30 05:39:00
94325    31392    752    2017-05-30 21:48:00    2017-05-30 21:48:00
94326    31392    468    2017-05-30 07:14:00    2017-05-30 07:14:00
94327    31392    631    2017-05-30 15:25:00    2017-05-30 15:25:00
94328    31392    815    2017-05-30 12:36:00    2017-05-30 12:36:00
94329    31392    512    2017-05-30 22:29:00    2017-05-30 22:29:00
94330    31393    517    2017-05-30 14:21:00    2017-05-30 14:21:00
94331    31393    533    2017-05-30 23:14:00    2017-05-30 23:14:00
94332    31393    726    2017-05-30 19:10:00    2017-05-30 19:10:00
94333    31393    503    2017-05-30 08:04:00    2017-05-30 08:04:00
94334    31393    918    2017-05-30 22:48:00    2017-05-30 22:48:00
94335    31394    588    2017-05-30 11:44:00    2017-05-30 11:44:00
94336    31394    676    2017-05-30 18:14:00    2017-05-30 18:14:00
94337    31394    486    2017-05-30 18:39:00    2017-05-30 18:39:00
94338    31394    777    2017-05-30 01:33:00    2017-05-30 01:33:00
94339    31394    714    2017-05-30 09:38:00    2017-05-30 09:38:00
94340    31395    906    2017-05-30 21:33:00    2017-05-30 21:33:00
94341    31395    474    2017-05-30 15:04:00    2017-05-30 15:04:00
94342    31395    912    2017-05-30 02:14:00    2017-05-30 02:14:00
94343    31395    762    2017-05-30 06:16:00    2017-05-30 06:16:00
94344    31395    736    2017-05-30 08:25:00    2017-05-30 08:25:00
94345    31396    787    2017-05-30 03:38:00    2017-05-30 03:38:00
94346    31396    493    2017-05-30 22:55:00    2017-05-30 22:55:00
94347    31396    468    2017-05-30 07:52:00    2017-05-30 07:52:00
94348    31396    631    2017-05-30 16:11:00    2017-05-30 16:11:00
94349    31396    599    2017-05-30 14:14:00    2017-05-30 14:14:00
94350    31397    638    2017-05-30 21:00:00    2017-05-30 21:00:00
94351    31397    663    2017-05-30 02:44:00    2017-05-30 02:44:00
94352    31397    874    2017-05-30 06:22:00    2017-05-30 06:22:00
94353    31397    635    2017-05-30 23:45:00    2017-05-30 23:45:00
94354    31397    840    2017-05-30 12:45:00    2017-05-30 12:45:00
94355    31398    930    2017-05-30 17:14:00    2017-05-30 17:14:00
94356    31398    876    2017-05-30 19:38:00    2017-05-30 19:38:00
94357    31398    848    2017-05-30 14:31:00    2017-05-30 14:31:00
94358    31398    677    2017-05-30 15:55:00    2017-05-30 15:55:00
94359    31398    560    2017-05-30 22:32:00    2017-05-30 22:32:00
94360    31399    777    2017-05-30 05:21:00    2017-05-30 05:21:00
94361    31399    853    2017-05-30 12:11:00    2017-05-30 12:11:00
94362    31399    579    2017-05-30 14:08:00    2017-05-30 14:08:00
94363    31399    864    2017-05-30 23:03:00    2017-05-30 23:03:00
94364    31399    826    2017-05-30 16:05:00    2017-05-30 16:05:00
94365    31400    493    2017-05-30 18:33:00    2017-05-30 18:33:00
94366    31400    809    2017-05-30 01:42:00    2017-05-30 01:42:00
94367    31400    519    2017-05-30 10:41:00    2017-05-30 10:41:00
94368    31400    476    2017-05-30 20:37:00    2017-05-30 20:37:00
94369    31400    667    2017-05-30 15:29:00    2017-05-30 15:29:00
94370    31401    508    2017-05-30 09:43:00    2017-05-30 09:43:00
94371    31401    613    2017-05-30 21:35:00    2017-05-30 21:35:00
94372    31401    704    2017-05-30 20:18:00    2017-05-30 20:18:00
94373    31401    507    2017-05-30 09:20:00    2017-05-30 09:20:00
94374    31401    675    2017-05-30 21:54:00    2017-05-30 21:54:00
94375    31402    879    2017-05-30 07:00:00    2017-05-30 07:00:00
94376    31402    777    2017-05-30 23:11:00    2017-05-30 23:11:00
94377    31402    862    2017-05-30 05:55:00    2017-05-30 05:55:00
94378    31402    610    2017-05-30 11:08:00    2017-05-30 11:08:00
94379    31402    687    2017-05-30 21:46:00    2017-05-30 21:46:00
94380    31403    781    2017-05-30 15:19:00    2017-05-30 15:19:00
94381    31403    952    2017-05-30 05:03:00    2017-05-30 05:03:00
94382    31403    635    2017-05-30 13:05:00    2017-05-30 13:05:00
94383    31403    829    2017-05-30 14:51:00    2017-05-30 14:51:00
94384    31403    846    2017-05-30 21:30:00    2017-05-30 21:30:00
94385    31404    528    2017-05-30 03:31:00    2017-05-30 03:31:00
94386    31404    616    2017-05-30 13:00:00    2017-05-30 13:00:00
94387    31404    735    2017-05-30 19:20:00    2017-05-30 19:20:00
94388    31404    589    2017-05-30 22:13:00    2017-05-30 22:13:00
94389    31404    724    2017-05-30 03:17:00    2017-05-30 03:17:00
94390    31405    507    2017-05-30 18:03:00    2017-05-30 18:03:00
94391    31405    474    2017-05-30 15:17:00    2017-05-30 15:17:00
94392    31405    851    2017-05-30 09:48:00    2017-05-30 09:48:00
94393    31405    763    2017-05-30 17:00:00    2017-05-30 17:00:00
94394    31405    671    2017-05-30 23:55:00    2017-05-30 23:55:00
94395    31406    476    2017-05-30 07:00:00    2017-05-30 07:00:00
94396    31406    780    2017-05-30 13:40:00    2017-05-30 13:40:00
94397    31406    505    2017-05-30 11:03:00    2017-05-30 11:03:00
94398    31406    926    2017-05-30 05:13:00    2017-05-30 05:13:00
94399    31406    785    2017-05-30 21:49:00    2017-05-30 21:49:00
94400    31407    816    2017-05-30 20:19:00    2017-05-30 20:19:00
94401    31407    867    2017-05-30 22:38:00    2017-05-30 22:38:00
94402    31407    493    2017-05-30 20:04:00    2017-05-30 20:04:00
94403    31407    555    2017-05-30 05:27:00    2017-05-30 05:27:00
94404    31407    798    2017-05-30 05:55:00    2017-05-30 05:55:00
94405    31408    869    2017-05-30 07:20:00    2017-05-30 07:20:00
94406    31408    885    2017-05-30 15:50:00    2017-05-30 15:50:00
94407    31408    753    2017-05-30 07:35:00    2017-05-30 07:35:00
94408    31408    605    2017-05-30 19:33:00    2017-05-30 19:33:00
94409    31408    498    2017-05-30 10:56:00    2017-05-30 10:56:00
94410    31409    918    2017-05-30 17:43:00    2017-05-30 17:43:00
94411    31409    830    2017-05-30 15:15:00    2017-05-30 15:15:00
94412    31409    853    2017-05-30 04:16:00    2017-05-30 04:16:00
94413    31409    512    2017-05-30 06:24:00    2017-05-30 06:24:00
94414    31409    845    2017-05-30 11:24:00    2017-05-30 11:24:00
94415    31410    856    2017-05-30 09:01:00    2017-05-30 09:01:00
94416    31410    639    2017-05-30 06:46:00    2017-05-30 06:46:00
94417    31410    634    2017-05-30 19:35:00    2017-05-30 19:35:00
94418    31410    533    2017-05-30 19:57:00    2017-05-30 19:57:00
94419    31410    753    2017-05-30 13:47:00    2017-05-30 13:47:00
94420    31411    759    2017-05-30 11:45:00    2017-05-30 11:45:00
94421    31411    944    2017-05-30 03:17:00    2017-05-30 03:17:00
94422    31411    720    2017-05-30 07:39:00    2017-05-30 07:39:00
94423    31411    628    2017-05-30 19:02:00    2017-05-30 19:02:00
94424    31411    503    2017-05-30 07:37:00    2017-05-30 07:37:00
94425    31412    813    2017-05-30 05:58:00    2017-05-30 05:58:00
94426    31412    930    2017-05-30 20:13:00    2017-05-30 20:13:00
94427    31412    664    2017-05-30 08:05:00    2017-05-30 08:05:00
94428    31412    508    2017-05-30 13:54:00    2017-05-30 13:54:00
94429    31412    838    2017-05-30 18:51:00    2017-05-30 18:51:00
94430    31413    848    2017-05-30 04:48:00    2017-05-30 04:48:00
94431    31413    606    2017-05-30 12:13:00    2017-05-30 12:13:00
94432    31413    896    2017-05-30 22:32:00    2017-05-30 22:32:00
94433    31413    832    2017-05-30 14:06:00    2017-05-30 14:06:00
94434    31413    729    2017-05-30 15:37:00    2017-05-30 15:37:00
94435    31414    581    2017-05-30 03:01:00    2017-05-30 03:01:00
94436    31414    747    2017-05-30 15:31:00    2017-05-30 15:31:00
94437    31414    643    2017-05-30 03:35:00    2017-05-30 03:35:00
94438    31414    766    2017-05-30 16:22:00    2017-05-30 16:22:00
94439    31414    593    2017-05-30 20:49:00    2017-05-30 20:49:00
94440    31415    524    2017-05-30 07:14:00    2017-05-30 07:14:00
94441    31415    508    2017-05-30 05:47:00    2017-05-30 05:47:00
94442    31415    590    2017-05-30 02:49:00    2017-05-30 02:49:00
94443    31415    647    2017-05-30 12:44:00    2017-05-30 12:44:00
94444    31415    660    2017-05-30 02:32:00    2017-05-30 02:32:00
94445    31416    783    2017-05-30 08:00:00    2017-05-30 08:00:00
94446    31416    587    2017-05-30 17:52:00    2017-05-30 17:52:00
94447    31416    517    2017-05-30 19:00:00    2017-05-30 19:00:00
94448    31416    715    2017-05-30 10:53:00    2017-05-30 10:53:00
94449    31416    813    2017-05-30 14:54:00    2017-05-30 14:54:00
94450    31417    804    2017-05-30 05:02:00    2017-05-30 05:02:00
94451    31417    564    2017-05-30 13:23:00    2017-05-30 13:23:00
94452    31417    576    2017-05-30 08:22:00    2017-05-30 08:22:00
94453    31417    859    2017-05-30 12:03:00    2017-05-30 12:03:00
94454    31417    736    2017-05-30 20:05:00    2017-05-30 20:05:00
94455    31418    490    2017-05-30 03:11:00    2017-05-30 03:11:00
94456    31418    823    2017-05-30 07:20:00    2017-05-30 07:20:00
94457    31418    853    2017-05-30 12:20:00    2017-05-30 12:20:00
94458    31418    524    2017-05-30 03:16:00    2017-05-30 03:16:00
94459    31418    910    2017-05-30 23:26:00    2017-05-30 23:26:00
94460    31419    559    2017-05-30 20:44:00    2017-05-30 20:44:00
94461    31419    956    2017-05-30 08:31:00    2017-05-30 08:31:00
94462    31419    581    2017-05-30 23:41:00    2017-05-30 23:41:00
94463    31419    926    2017-05-30 10:03:00    2017-05-30 10:03:00
94464    31419    570    2017-05-30 17:30:00    2017-05-30 17:30:00
94465    31420    599    2017-05-30 17:20:00    2017-05-30 17:20:00
94466    31420    524    2017-05-30 01:02:00    2017-05-30 01:02:00
94467    31420    563    2017-05-30 07:50:00    2017-05-30 07:50:00
94468    31420    561    2017-05-30 05:57:00    2017-05-30 05:57:00
94469    31420    820    2017-05-30 13:59:00    2017-05-30 13:59:00
94470    31421    605    2017-05-30 07:04:00    2017-05-30 07:04:00
94471    31421    734    2017-05-30 13:28:00    2017-05-30 13:28:00
94472    31421    572    2017-05-30 12:15:00    2017-05-30 12:15:00
94473    31421    623    2017-05-30 03:08:00    2017-05-30 03:08:00
94474    31421    671    2017-05-30 11:46:00    2017-05-30 11:46:00
94475    31422    653    2017-05-30 04:44:00    2017-05-30 04:44:00
94476    31422    670    2017-05-30 08:27:00    2017-05-30 08:27:00
94477    31422    760    2017-05-30 20:40:00    2017-05-30 20:40:00
94478    31422    798    2017-05-30 20:33:00    2017-05-30 20:33:00
94479    31422    888    2017-05-30 02:04:00    2017-05-30 02:04:00
94480    31423    812    2017-05-30 22:55:00    2017-05-30 22:55:00
94481    31423    826    2017-05-30 15:45:00    2017-05-30 15:45:00
94482    31423    764    2017-05-30 03:44:00    2017-05-30 03:44:00
94483    31423    725    2017-05-30 06:52:00    2017-05-30 06:52:00
94484    31423    944    2017-05-30 14:01:00    2017-05-30 14:01:00
94485    31424    933    2017-05-30 06:26:00    2017-05-30 06:26:00
94486    31424    906    2017-05-30 13:52:00    2017-05-30 13:52:00
94487    31424    606    2017-05-30 14:40:00    2017-05-30 14:40:00
94488    31424    519    2017-05-30 03:39:00    2017-05-30 03:39:00
94489    31424    482    2017-05-30 17:19:00    2017-05-30 17:19:00
94490    31425    798    2017-05-30 03:00:00    2017-05-30 03:00:00
94491    31425    849    2017-05-30 10:40:00    2017-05-30 10:40:00
94492    31425    896    2017-05-30 06:58:00    2017-05-30 06:58:00
94493    31425    833    2017-05-30 16:12:00    2017-05-30 16:12:00
94494    31425    936    2017-05-30 23:17:00    2017-05-30 23:17:00
94495    31426    818    2017-05-30 10:26:00    2017-05-30 10:26:00
94496    31426    533    2017-05-30 16:10:00    2017-05-30 16:10:00
94497    31426    600    2017-05-30 15:16:00    2017-05-30 15:16:00
94498    31426    922    2017-05-30 02:38:00    2017-05-30 02:38:00
94499    31426    726    2017-05-30 14:37:00    2017-05-30 14:37:00
94500    31427    920    2017-05-30 21:32:00    2017-05-30 21:32:00
94501    31427    913    2017-05-30 01:34:00    2017-05-30 01:34:00
94502    31427    778    2017-05-30 05:32:00    2017-05-30 05:32:00
94503    31427    872    2017-05-30 13:47:00    2017-05-30 13:47:00
94504    31427    678    2017-05-30 05:28:00    2017-05-30 05:28:00
94505    31428    606    2017-05-31 20:29:00    2017-05-31 20:29:00
94506    31428    550    2017-05-31 01:03:00    2017-05-31 01:03:00
94507    31428    822    2017-05-31 07:41:00    2017-05-31 07:41:00
94508    31428    848    2017-05-31 07:41:00    2017-05-31 07:41:00
94509    31428    749    2017-05-31 20:55:00    2017-05-31 20:55:00
94510    31429    826    2017-05-31 14:53:00    2017-05-31 14:53:00
94511    31429    816    2017-05-31 01:20:00    2017-05-31 01:20:00
94512    31429    826    2017-05-31 07:46:00    2017-05-31 07:46:00
94513    31429    503    2017-05-31 06:56:00    2017-05-31 06:56:00
94514    31429    622    2017-05-31 22:59:00    2017-05-31 22:59:00
94515    31430    614    2017-05-31 04:33:00    2017-05-31 04:33:00
94516    31430    679    2017-05-31 20:29:00    2017-05-31 20:29:00
94517    31430    559    2017-05-31 16:48:00    2017-05-31 16:48:00
94518    31430    608    2017-05-31 23:52:00    2017-05-31 23:52:00
94519    31430    576    2017-05-31 23:21:00    2017-05-31 23:21:00
94520    31431    722    2017-05-31 19:55:00    2017-05-31 19:55:00
94521    31431    933    2017-05-31 01:28:00    2017-05-31 01:28:00
94522    31431    662    2017-05-31 06:22:00    2017-05-31 06:22:00
94523    31431    481    2017-05-31 20:27:00    2017-05-31 20:27:00
94524    31431    873    2017-05-31 15:11:00    2017-05-31 15:11:00
94525    31432    797    2017-05-31 16:41:00    2017-05-31 16:41:00
94526    31432    688    2017-05-31 04:02:00    2017-05-31 04:02:00
94527    31432    500    2017-05-31 21:44:00    2017-05-31 21:44:00
94528    31432    581    2017-05-31 19:46:00    2017-05-31 19:46:00
94529    31432    918    2017-05-31 20:43:00    2017-05-31 20:43:00
94530    31433    527    2017-05-31 19:38:00    2017-05-31 19:38:00
94531    31433    483    2017-05-31 14:50:00    2017-05-31 14:50:00
94532    31433    924    2017-05-31 21:05:00    2017-05-31 21:05:00
94533    31433    955    2017-05-31 01:49:00    2017-05-31 01:49:00
94534    31433    940    2017-05-31 01:16:00    2017-05-31 01:16:00
94535    31434    640    2017-05-31 09:24:00    2017-05-31 09:24:00
94536    31434    586    2017-05-31 06:41:00    2017-05-31 06:41:00
94537    31434    683    2017-05-31 20:59:00    2017-05-31 20:59:00
94538    31434    784    2017-05-31 15:30:00    2017-05-31 15:30:00
94539    31434    492    2017-05-31 20:15:00    2017-05-31 20:15:00
94540    31435    540    2017-05-31 03:54:00    2017-05-31 03:54:00
94541    31435    840    2017-05-31 13:04:00    2017-05-31 13:04:00
94542    31435    659    2017-05-31 22:03:00    2017-05-31 22:03:00
94543    31435    592    2017-05-31 05:29:00    2017-05-31 05:29:00
94544    31435    739    2017-05-31 09:27:00    2017-05-31 09:27:00
94545    31436    483    2017-05-31 15:07:00    2017-05-31 15:07:00
94546    31436    916    2017-05-31 08:49:00    2017-05-31 08:49:00
94547    31436    616    2017-05-31 09:47:00    2017-05-31 09:47:00
94548    31436    763    2017-05-31 01:31:00    2017-05-31 01:31:00
94549    31436    931    2017-05-31 06:49:00    2017-05-31 06:49:00
94550    31437    721    2017-05-31 04:58:00    2017-05-31 04:58:00
94551    31437    870    2017-05-31 03:54:00    2017-05-31 03:54:00
94552    31437    929    2017-05-31 18:44:00    2017-05-31 18:44:00
94553    31437    947    2017-05-31 12:24:00    2017-05-31 12:24:00
94554    31437    864    2017-05-31 22:31:00    2017-05-31 22:31:00
94555    31438    630    2017-06-01 17:58:00    2017-06-01 17:58:00
94556    31438    872    2017-06-01 12:49:00    2017-06-01 12:49:00
94557    31438    737    2017-06-01 01:37:00    2017-06-01 01:37:00
94558    31438    507    2017-06-01 14:07:00    2017-06-01 14:07:00
94559    31438    955    2017-06-01 11:18:00    2017-06-01 11:18:00
94560    31439    537    2017-06-01 03:21:00    2017-06-01 03:21:00
94561    31439    625    2017-06-01 03:47:00    2017-06-01 03:47:00
94562    31439    758    2017-06-01 13:36:00    2017-06-01 13:36:00
94563    31439    803    2017-06-01 08:05:00    2017-06-01 08:05:00
94564    31439    647    2017-06-01 04:00:00    2017-06-01 04:00:00
94565    31440    834    2017-06-01 03:34:00    2017-06-01 03:34:00
94566    31440    773    2017-06-01 13:20:00    2017-06-01 13:20:00
94567    31440    880    2017-06-01 15:41:00    2017-06-01 15:41:00
94568    31440    604    2017-06-01 17:21:00    2017-06-01 17:21:00
94569    31440    886    2017-06-01 07:37:00    2017-06-01 07:37:00
94570    31441    903    2017-06-01 21:07:00    2017-06-01 21:07:00
94571    31441    668    2017-06-01 04:22:00    2017-06-01 04:22:00
94572    31441    599    2017-06-01 21:17:00    2017-06-01 21:17:00
94573    31441    495    2017-06-01 22:06:00    2017-06-01 22:06:00
94574    31441    516    2017-06-01 07:51:00    2017-06-01 07:51:00
94575    31442    538    2017-06-01 14:46:00    2017-06-01 14:46:00
94576    31442    788    2017-06-01 13:27:00    2017-06-01 13:27:00
94577    31442    516    2017-06-01 13:38:00    2017-06-01 13:38:00
94578    31442    700    2017-06-01 17:17:00    2017-06-01 17:17:00
94579    31442    868    2017-06-01 23:33:00    2017-06-01 23:33:00
94580    31443    763    2017-06-01 01:24:00    2017-06-01 01:24:00
94581    31443    540    2017-06-01 06:34:00    2017-06-01 06:34:00
94582    31443    726    2017-06-01 07:19:00    2017-06-01 07:19:00
94583    31443    828    2017-06-01 19:02:00    2017-06-01 19:02:00
94584    31443    832    2017-06-01 22:54:00    2017-06-01 22:54:00
94585    31444    742    2017-06-01 11:35:00    2017-06-01 11:35:00
94586    31444    723    2017-06-01 16:51:00    2017-06-01 16:51:00
94587    31444    840    2017-06-01 15:17:00    2017-06-01 15:17:00
94588    31444    769    2017-06-01 16:24:00    2017-06-01 16:24:00
94589    31444    817    2017-06-01 18:02:00    2017-06-01 18:02:00
94590    31445    905    2017-06-01 23:42:00    2017-06-01 23:42:00
94591    31445    504    2017-06-01 20:43:00    2017-06-01 20:43:00
94592    31445    545    2017-06-01 16:51:00    2017-06-01 16:51:00
94593    31445    491    2017-06-01 02:09:00    2017-06-01 02:09:00
94594    31445    739    2017-06-01 11:31:00    2017-06-01 11:31:00
94595    31446    872    2017-06-01 19:43:00    2017-06-01 19:43:00
94596    31446    958    2017-06-01 21:59:00    2017-06-01 21:59:00
94597    31446    732    2017-06-01 11:34:00    2017-06-01 11:34:00
94598    31446    740    2017-06-01 03:46:00    2017-06-01 03:46:00
94599    31446    544    2017-06-01 06:51:00    2017-06-01 06:51:00
94600    31447    512    2017-06-01 19:13:00    2017-06-01 19:13:00
94601    31447    800    2017-06-01 08:49:00    2017-06-01 08:49:00
94602    31447    517    2017-06-01 02:16:00    2017-06-01 02:16:00
94603    31447    564    2017-06-01 11:22:00    2017-06-01 11:22:00
94604    31447    542    2017-06-01 14:24:00    2017-06-01 14:24:00
94605    31448    467    2017-06-01 23:15:00    2017-06-01 23:15:00
94606    31448    471    2017-06-01 06:36:00    2017-06-01 06:36:00
94607    31448    792    2017-06-01 16:32:00    2017-06-01 16:32:00
94608    31448    684    2017-06-01 22:07:00    2017-06-01 22:07:00
94609    31448    953    2017-06-01 02:35:00    2017-06-01 02:35:00
94610    31449    836    2017-06-01 16:18:00    2017-06-01 16:18:00
94611    31449    613    2017-06-01 06:58:00    2017-06-01 06:58:00
94612    31449    487    2017-06-01 08:04:00    2017-06-01 08:04:00
94613    31449    606    2017-06-01 10:18:00    2017-06-01 10:18:00
94614    31449    656    2017-06-01 08:42:00    2017-06-01 08:42:00
94615    31450    503    2017-06-01 16:44:00    2017-06-01 16:44:00
94616    31450    482    2017-06-01 05:52:00    2017-06-01 05:52:00
94617    31450    919    2017-06-01 10:25:00    2017-06-01 10:25:00
94618    31450    507    2017-06-01 19:20:00    2017-06-01 19:20:00
94619    31450    738    2017-06-01 17:55:00    2017-06-01 17:55:00
94620    31451    623    2017-06-01 17:25:00    2017-06-01 17:25:00
94621    31451    730    2017-06-01 01:08:00    2017-06-01 01:08:00
94622    31451    767    2017-06-01 09:57:00    2017-06-01 09:57:00
94623    31451    726    2017-06-01 20:26:00    2017-06-01 20:26:00
94624    31451    573    2017-06-01 04:07:00    2017-06-01 04:07:00
94625    31452    534    2017-06-01 04:34:00    2017-06-01 04:34:00
94626    31452    864    2017-06-01 08:00:00    2017-06-01 08:00:00
94627    31452    493    2017-06-01 08:42:00    2017-06-01 08:42:00
94628    31452    801    2017-06-01 08:05:00    2017-06-01 08:05:00
94629    31452    596    2017-06-01 13:26:00    2017-06-01 13:26:00
94630    31453    630    2017-06-01 12:38:00    2017-06-01 12:38:00
94631    31453    717    2017-06-01 04:39:00    2017-06-01 04:39:00
94632    31453    619    2017-06-01 22:52:00    2017-06-01 22:52:00
94633    31453    937    2017-06-01 13:56:00    2017-06-01 13:56:00
94634    31453    733    2017-06-01 08:41:00    2017-06-01 08:41:00
94635    31454    909    2017-06-01 14:05:00    2017-06-01 14:05:00
94636    31454    790    2017-06-01 03:18:00    2017-06-01 03:18:00
94637    31454    658    2017-06-01 22:00:00    2017-06-01 22:00:00
94638    31454    521    2017-06-01 12:05:00    2017-06-01 12:05:00
94639    31454    604    2017-06-01 14:05:00    2017-06-01 14:05:00
94640    31455    894    2017-06-01 20:57:00    2017-06-01 20:57:00
94641    31455    735    2017-06-01 10:48:00    2017-06-01 10:48:00
94642    31455    496    2017-06-01 19:24:00    2017-06-01 19:24:00
94643    31455    803    2017-06-01 18:31:00    2017-06-01 18:31:00
94644    31455    710    2017-06-01 04:56:00    2017-06-01 04:56:00
94645    31456    841    2017-06-01 15:07:00    2017-06-01 15:07:00
94646    31456    925    2017-06-01 21:10:00    2017-06-01 21:10:00
94647    31456    670    2017-06-01 12:20:00    2017-06-01 12:20:00
94648    31456    924    2017-06-01 08:17:00    2017-06-01 08:17:00
94649    31456    479    2017-06-01 19:35:00    2017-06-01 19:35:00
94650    31457    657    2017-06-01 11:06:00    2017-06-01 11:06:00
94651    31457    785    2017-06-01 14:34:00    2017-06-01 14:34:00
94652    31457    865    2017-06-01 02:47:00    2017-06-01 02:47:00
94653    31457    683    2017-06-01 11:50:00    2017-06-01 11:50:00
94654    31457    899    2017-06-01 04:22:00    2017-06-01 04:22:00
94655    31458    573    2017-06-01 14:56:00    2017-06-01 14:56:00
94656    31458    800    2017-06-01 01:32:00    2017-06-01 01:32:00
94657    31458    786    2017-06-01 22:44:00    2017-06-01 22:44:00
94658    31458    633    2017-06-01 17:16:00    2017-06-01 17:16:00
94659    31458    663    2017-06-01 15:18:00    2017-06-01 15:18:00
94660    31459    621    2017-06-01 01:29:00    2017-06-01 01:29:00
94661    31459    924    2017-06-01 13:15:00    2017-06-01 13:15:00
94662    31459    489    2017-06-01 05:30:00    2017-06-01 05:30:00
94663    31459    748    2017-06-01 23:12:00    2017-06-01 23:12:00
94664    31459    508    2017-06-01 08:26:00    2017-06-01 08:26:00
94665    31460    515    2017-06-01 07:56:00    2017-06-01 07:56:00
94666    31460    926    2017-06-01 01:37:00    2017-06-01 01:37:00
94667    31460    869    2017-06-01 08:16:00    2017-06-01 08:16:00
94668    31460    649    2017-06-01 23:45:00    2017-06-01 23:45:00
94669    31460    835    2017-06-01 08:09:00    2017-06-01 08:09:00
94670    31461    547    2017-06-01 15:12:00    2017-06-01 15:12:00
94671    31461    481    2017-06-01 22:41:00    2017-06-01 22:41:00
94672    31461    506    2017-06-01 20:29:00    2017-06-01 20:29:00
94673    31461    723    2017-06-01 07:40:00    2017-06-01 07:40:00
94674    31461    899    2017-06-01 23:18:00    2017-06-01 23:18:00
94675    31462    467    2017-06-02 23:48:00    2017-06-02 23:48:00
94676    31462    470    2017-06-02 17:11:00    2017-06-02 17:11:00
94677    31462    882    2017-06-02 22:16:00    2017-06-02 22:16:00
94678    31462    492    2017-06-02 12:49:00    2017-06-02 12:49:00
94679    31462    938    2017-06-02 20:49:00    2017-06-02 20:49:00
94680    31463    466    2017-06-02 03:01:00    2017-06-02 03:01:00
94681    31463    640    2017-06-02 01:48:00    2017-06-02 01:48:00
94682    31463    829    2017-06-02 11:59:00    2017-06-02 11:59:00
94683    31463    507    2017-06-02 07:25:00    2017-06-02 07:25:00
94684    31463    628    2017-06-02 01:36:00    2017-06-02 01:36:00
94685    31464    713    2017-06-02 16:21:00    2017-06-02 16:21:00
94686    31464    698    2017-06-02 06:52:00    2017-06-02 06:52:00
94687    31464    469    2017-06-02 02:16:00    2017-06-02 02:16:00
94688    31464    525    2017-06-02 19:21:00    2017-06-02 19:21:00
94689    31464    803    2017-06-02 09:21:00    2017-06-02 09:21:00
94690    31465    639    2017-06-02 09:38:00    2017-06-02 09:38:00
94691    31465    669    2017-06-02 16:16:00    2017-06-02 16:16:00
94692    31465    588    2017-06-02 14:10:00    2017-06-02 14:10:00
94693    31465    608    2017-06-02 09:34:00    2017-06-02 09:34:00
94694    31465    939    2017-06-02 14:23:00    2017-06-02 14:23:00
94695    31466    807    2017-06-02 13:02:00    2017-06-02 13:02:00
94696    31466    769    2017-06-02 22:52:00    2017-06-02 22:52:00
94697    31466    928    2017-06-02 18:11:00    2017-06-02 18:11:00
94698    31466    825    2017-06-02 08:51:00    2017-06-02 08:51:00
94699    31466    554    2017-06-02 03:28:00    2017-06-02 03:28:00
94700    31467    843    2017-06-02 13:15:00    2017-06-02 13:15:00
94701    31467    511    2017-06-02 04:47:00    2017-06-02 04:47:00
94702    31467    491    2017-06-02 14:35:00    2017-06-02 14:35:00
94703    31467    834    2017-06-02 06:54:00    2017-06-02 06:54:00
94704    31467    475    2017-06-02 19:09:00    2017-06-02 19:09:00
94705    31468    870    2017-06-02 09:11:00    2017-06-02 09:11:00
94706    31468    722    2017-06-02 12:58:00    2017-06-02 12:58:00
94707    31468    562    2017-06-02 23:59:00    2017-06-02 23:59:00
94708    31468    854    2017-06-02 06:51:00    2017-06-02 06:51:00
94709    31468    770    2017-06-02 06:16:00    2017-06-02 06:16:00
94710    31469    611    2017-06-02 10:48:00    2017-06-02 10:48:00
94711    31469    894    2017-06-02 19:50:00    2017-06-02 19:50:00
94712    31469    939    2017-06-02 22:19:00    2017-06-02 22:19:00
94713    31469    624    2017-06-02 15:52:00    2017-06-02 15:52:00
94714    31469    580    2017-06-02 09:09:00    2017-06-02 09:09:00
94715    31470    782    2017-06-02 23:42:00    2017-06-02 23:42:00
94716    31470    919    2017-06-02 13:17:00    2017-06-02 13:17:00
94717    31470    463    2017-06-02 11:00:00    2017-06-02 11:00:00
94718    31470    520    2017-06-02 20:29:00    2017-06-02 20:29:00
94719    31470    468    2017-06-02 14:48:00    2017-06-02 14:48:00
94720    31471    915    2017-06-02 10:33:00    2017-06-02 10:33:00
94721    31471    796    2017-06-02 17:38:00    2017-06-02 17:38:00
94722    31471    788    2017-06-02 15:07:00    2017-06-02 15:07:00
94723    31471    840    2017-06-02 11:03:00    2017-06-02 11:03:00
94724    31471    845    2017-06-02 22:42:00    2017-06-02 22:42:00
94725    31472    836    2017-06-02 12:03:00    2017-06-02 12:03:00
94726    31472    591    2017-06-02 17:39:00    2017-06-02 17:39:00
94727    31472    943    2017-06-02 06:50:00    2017-06-02 06:50:00
94728    31472    832    2017-06-02 02:24:00    2017-06-02 02:24:00
94729    31472    801    2017-06-02 02:57:00    2017-06-02 02:57:00
94730    31473    745    2017-06-02 08:18:00    2017-06-02 08:18:00
94731    31473    469    2017-06-02 15:00:00    2017-06-02 15:00:00
94732    31473    674    2017-06-02 17:05:00    2017-06-02 17:05:00
94733    31473    543    2017-06-02 21:13:00    2017-06-02 21:13:00
94734    31473    590    2017-06-02 08:25:00    2017-06-02 08:25:00
94735    31474    885    2017-06-02 07:34:00    2017-06-02 07:34:00
94736    31474    653    2017-06-02 18:28:00    2017-06-02 18:28:00
94737    31474    584    2017-06-02 23:44:00    2017-06-02 23:44:00
94738    31474    821    2017-06-02 21:23:00    2017-06-02 21:23:00
94739    31474    869    2017-06-02 20:15:00    2017-06-02 20:15:00
94740    31475    840    2017-06-02 05:23:00    2017-06-02 05:23:00
94741    31475    702    2017-06-02 09:26:00    2017-06-02 09:26:00
94742    31475    810    2017-06-02 22:01:00    2017-06-02 22:01:00
94743    31475    725    2017-06-02 04:16:00    2017-06-02 04:16:00
94744    31475    715    2017-06-02 21:20:00    2017-06-02 21:20:00
94745    31476    882    2017-06-02 16:32:00    2017-06-02 16:32:00
94746    31476    929    2017-06-02 16:39:00    2017-06-02 16:39:00
94747    31476    902    2017-06-02 19:01:00    2017-06-02 19:01:00
94748    31476    517    2017-06-02 20:09:00    2017-06-02 20:09:00
94749    31476    696    2017-06-02 02:16:00    2017-06-02 02:16:00
94750    31477    619    2017-06-02 08:43:00    2017-06-02 08:43:00
94751    31477    802    2017-06-02 14:33:00    2017-06-02 14:33:00
94752    31477    523    2017-06-02 05:34:00    2017-06-02 05:34:00
94753    31477    796    2017-06-02 08:29:00    2017-06-02 08:29:00
94754    31477    524    2017-06-02 05:21:00    2017-06-02 05:21:00
94755    31478    767    2017-06-02 07:25:00    2017-06-02 07:25:00
94756    31478    606    2017-06-02 15:35:00    2017-06-02 15:35:00
94757    31478    493    2017-06-02 07:01:00    2017-06-02 07:01:00
94758    31478    800    2017-06-02 11:06:00    2017-06-02 11:06:00
94759    31478    469    2017-06-02 05:11:00    2017-06-02 05:11:00
94760    31479    825    2017-06-02 05:32:00    2017-06-02 05:32:00
94761    31479    889    2017-06-02 04:49:00    2017-06-02 04:49:00
94762    31479    679    2017-06-02 03:51:00    2017-06-02 03:51:00
94763    31479    492    2017-06-02 22:38:00    2017-06-02 22:38:00
94764    31479    794    2017-06-02 05:21:00    2017-06-02 05:21:00
94765    31480    703    2017-06-02 01:11:00    2017-06-02 01:11:00
94766    31480    929    2017-06-02 07:12:00    2017-06-02 07:12:00
94767    31480    704    2017-06-02 15:34:00    2017-06-02 15:34:00
94768    31480    716    2017-06-02 04:23:00    2017-06-02 04:23:00
94769    31480    753    2017-06-02 15:12:00    2017-06-02 15:12:00
94770    31481    700    2017-06-02 14:05:00    2017-06-02 14:05:00
94771    31481    491    2017-06-02 21:06:00    2017-06-02 21:06:00
94772    31481    594    2017-06-02 10:21:00    2017-06-02 10:21:00
94773    31481    660    2017-06-02 04:34:00    2017-06-02 04:34:00
94774    31481    642    2017-06-02 03:08:00    2017-06-02 03:08:00
94775    31482    782    2017-06-02 20:18:00    2017-06-02 20:18:00
94776    31482    811    2017-06-02 08:17:00    2017-06-02 08:17:00
94777    31482    811    2017-06-02 13:48:00    2017-06-02 13:48:00
94778    31482    587    2017-06-02 14:03:00    2017-06-02 14:03:00
94779    31482    844    2017-06-02 05:48:00    2017-06-02 05:48:00
94780    31483    751    2017-06-02 04:45:00    2017-06-02 04:45:00
94781    31483    874    2017-06-02 08:17:00    2017-06-02 08:17:00
94782    31483    825    2017-06-02 08:05:00    2017-06-02 08:05:00
94783    31483    919    2017-06-02 06:30:00    2017-06-02 06:30:00
94784    31483    958    2017-06-02 08:07:00    2017-06-02 08:07:00
94785    31484    632    2017-06-02 12:05:00    2017-06-02 12:05:00
94786    31484    700    2017-06-02 12:13:00    2017-06-02 12:13:00
94787    31484    887    2017-06-02 19:16:00    2017-06-02 19:16:00
94788    31484    812    2017-06-02 08:47:00    2017-06-02 08:47:00
94789    31484    852    2017-06-02 04:28:00    2017-06-02 04:28:00
94790    31485    943    2017-06-02 22:27:00    2017-06-02 22:27:00
94791    31485    817    2017-06-02 19:54:00    2017-06-02 19:54:00
94792    31485    787    2017-06-02 15:23:00    2017-06-02 15:23:00
94793    31485    601    2017-06-02 22:29:00    2017-06-02 22:29:00
94794    31485    957    2017-06-02 06:18:00    2017-06-02 06:18:00
94795    31486    920    2017-06-02 08:21:00    2017-06-02 08:21:00
94796    31486    896    2017-06-02 22:25:00    2017-06-02 22:25:00
94797    31486    944    2017-06-02 01:07:00    2017-06-02 01:07:00
94798    31486    683    2017-06-02 23:46:00    2017-06-02 23:46:00
94799    31486    774    2017-06-02 13:28:00    2017-06-02 13:28:00
94800    31487    604    2017-06-02 09:37:00    2017-06-02 09:37:00
94801    31487    941    2017-06-02 21:43:00    2017-06-02 21:43:00
94802    31487    823    2017-06-02 20:14:00    2017-06-02 20:14:00
94803    31487    752    2017-06-02 02:01:00    2017-06-02 02:01:00
94804    31487    695    2017-06-02 20:27:00    2017-06-02 20:27:00
94805    31488    610    2017-06-02 17:12:00    2017-06-02 17:12:00
94806    31488    722    2017-06-02 23:03:00    2017-06-02 23:03:00
94807    31488    873    2017-06-02 22:00:00    2017-06-02 22:00:00
94808    31488    587    2017-06-02 23:06:00    2017-06-02 23:06:00
94809    31488    792    2017-06-02 06:40:00    2017-06-02 06:40:00
94810    31489    733    2017-06-02 06:38:00    2017-06-02 06:38:00
94811    31489    793    2017-06-02 17:27:00    2017-06-02 17:27:00
94812    31489    559    2017-06-02 15:16:00    2017-06-02 15:16:00
94813    31489    833    2017-06-02 23:04:00    2017-06-02 23:04:00
94814    31489    806    2017-06-02 21:35:00    2017-06-02 21:35:00
94815    31490    573    2017-06-02 14:06:00    2017-06-02 14:06:00
94816    31490    607    2017-06-02 18:16:00    2017-06-02 18:16:00
94817    31490    646    2017-06-02 14:44:00    2017-06-02 14:44:00
94818    31490    612    2017-06-02 15:08:00    2017-06-02 15:08:00
94819    31490    710    2017-06-02 14:03:00    2017-06-02 14:03:00
94820    31491    861    2017-06-02 14:09:00    2017-06-02 14:09:00
94821    31491    686    2017-06-02 14:12:00    2017-06-02 14:12:00
94822    31491    507    2017-06-02 03:31:00    2017-06-02 03:31:00
94823    31491    680    2017-06-02 05:56:00    2017-06-02 05:56:00
94824    31491    920    2017-06-02 12:43:00    2017-06-02 12:43:00
94825    31492    538    2017-06-02 02:28:00    2017-06-02 02:28:00
94826    31492    508    2017-06-02 02:57:00    2017-06-02 02:57:00
94827    31492    485    2017-06-02 15:11:00    2017-06-02 15:11:00
94828    31492    894    2017-06-02 16:31:00    2017-06-02 16:31:00
94829    31492    485    2017-06-02 15:20:00    2017-06-02 15:20:00
94830    31493    917    2017-06-02 01:46:00    2017-06-02 01:46:00
94831    31493    580    2017-06-02 20:23:00    2017-06-02 20:23:00
94832    31493    551    2017-06-02 20:45:00    2017-06-02 20:45:00
94833    31493    463    2017-06-02 21:57:00    2017-06-02 21:57:00
94834    31493    739    2017-06-02 08:27:00    2017-06-02 08:27:00
94835    31494    926    2017-06-02 16:02:00    2017-06-02 16:02:00
94836    31494    769    2017-06-02 11:48:00    2017-06-02 11:48:00
94837    31494    671    2017-06-02 16:27:00    2017-06-02 16:27:00
94838    31494    781    2017-06-02 20:12:00    2017-06-02 20:12:00
94839    31494    958    2017-06-02 15:44:00    2017-06-02 15:44:00
94840    31495    877    2017-06-02 22:51:00    2017-06-02 22:51:00
94841    31495    568    2017-06-02 12:55:00    2017-06-02 12:55:00
94842    31495    729    2017-06-02 14:34:00    2017-06-02 14:34:00
94843    31495    531    2017-06-02 01:56:00    2017-06-02 01:56:00
94844    31495    852    2017-06-02 21:00:00    2017-06-02 21:00:00
94845    31496    478    2017-06-02 08:17:00    2017-06-02 08:17:00
94846    31496    697    2017-06-02 03:38:00    2017-06-02 03:38:00
94847    31496    579    2017-06-02 10:49:00    2017-06-02 10:49:00
94848    31496    961    2017-06-02 03:06:00    2017-06-02 03:06:00
94849    31496    727    2017-06-02 09:05:00    2017-06-02 09:05:00
94850    31497    541    2017-06-02 21:49:00    2017-06-02 21:49:00
94851    31497    730    2017-06-02 13:29:00    2017-06-02 13:29:00
94852    31497    707    2017-06-02 05:52:00    2017-06-02 05:52:00
94853    31497    641    2017-06-02 12:55:00    2017-06-02 12:55:00
94854    31497    745    2017-06-02 11:42:00    2017-06-02 11:42:00
94855    31498    867    2017-06-02 13:04:00    2017-06-02 13:04:00
94856    31498    912    2017-06-02 16:18:00    2017-06-02 16:18:00
94857    31498    678    2017-06-02 14:34:00    2017-06-02 14:34:00
94858    31498    952    2017-06-02 10:20:00    2017-06-02 10:20:00
94859    31498    633    2017-06-02 05:26:00    2017-06-02 05:26:00
94860    31499    618    2017-06-02 06:12:00    2017-06-02 06:12:00
94861    31499    835    2017-06-02 22:05:00    2017-06-02 22:05:00
94862    31499    691    2017-06-02 12:09:00    2017-06-02 12:09:00
94863    31499    673    2017-06-02 20:10:00    2017-06-02 20:10:00
94864    31499    923    2017-06-02 14:09:00    2017-06-02 14:09:00
94865    31500    557    2017-06-02 20:47:00    2017-06-02 20:47:00
94866    31500    887    2017-06-02 03:05:00    2017-06-02 03:05:00
94867    31500    728    2017-06-02 13:32:00    2017-06-02 13:32:00
94868    31500    741    2017-06-02 19:33:00    2017-06-02 19:33:00
94869    31500    510    2017-06-02 21:11:00    2017-06-02 21:11:00
94870    31501    901    2017-06-02 12:28:00    2017-06-02 12:28:00
94871    31501    881    2017-06-02 14:52:00    2017-06-02 14:52:00
94872    31501    654    2017-06-02 11:30:00    2017-06-02 11:30:00
94873    31501    824    2017-06-02 12:53:00    2017-06-02 12:53:00
94874    31501    552    2017-06-02 17:04:00    2017-06-02 17:04:00
94875    31502    861    2017-06-02 20:15:00    2017-06-02 20:15:00
94876    31502    599    2017-06-02 10:59:00    2017-06-02 10:59:00
94877    31502    825    2017-06-02 10:14:00    2017-06-02 10:14:00
94878    31502    754    2017-06-02 16:36:00    2017-06-02 16:36:00
94879    31502    928    2017-06-02 21:30:00    2017-06-02 21:30:00
94880    31503    782    2017-06-02 11:05:00    2017-06-02 11:05:00
94881    31503    674    2017-06-02 23:33:00    2017-06-02 23:33:00
94882    31503    613    2017-06-02 19:16:00    2017-06-02 19:16:00
94883    31503    899    2017-06-02 16:43:00    2017-06-02 16:43:00
94884    31503    473    2017-06-02 12:02:00    2017-06-02 12:02:00
94885    31504    607    2017-06-02 19:50:00    2017-06-02 19:50:00
94886    31504    800    2017-06-02 02:31:00    2017-06-02 02:31:00
94887    31504    601    2017-06-02 12:50:00    2017-06-02 12:50:00
94888    31504    767    2017-06-02 10:13:00    2017-06-02 10:13:00
94889    31504    727    2017-06-02 14:32:00    2017-06-02 14:32:00
94890    31505    632    2017-06-02 03:24:00    2017-06-02 03:24:00
94891    31505    650    2017-06-02 07:28:00    2017-06-02 07:28:00
94892    31505    648    2017-06-02 19:31:00    2017-06-02 19:31:00
94893    31505    872    2017-06-02 17:50:00    2017-06-02 17:50:00
94894    31505    739    2017-06-02 10:53:00    2017-06-02 10:53:00
94895    31506    578    2017-06-02 11:08:00    2017-06-02 11:08:00
94896    31506    628    2017-06-02 14:01:00    2017-06-02 14:01:00
94897    31506    893    2017-06-02 07:37:00    2017-06-02 07:37:00
94898    31506    714    2017-06-02 23:15:00    2017-06-02 23:15:00
94899    31506    570    2017-06-02 08:15:00    2017-06-02 08:15:00
94900    31507    569    2017-06-02 20:02:00    2017-06-02 20:02:00
94901    31507    551    2017-06-02 10:22:00    2017-06-02 10:22:00
94902    31507    535    2017-06-02 22:35:00    2017-06-02 22:35:00
94903    31507    496    2017-06-02 13:47:00    2017-06-02 13:47:00
94904    31507    684    2017-06-02 18:28:00    2017-06-02 18:28:00
94905    31508    708    2017-06-02 10:49:00    2017-06-02 10:49:00
94906    31508    811    2017-06-02 09:43:00    2017-06-02 09:43:00
94907    31508    951    2017-06-02 04:16:00    2017-06-02 04:16:00
94908    31508    643    2017-06-02 01:37:00    2017-06-02 01:37:00
94909    31508    630    2017-06-02 15:58:00    2017-06-02 15:58:00
94910    31509    524    2017-06-02 09:53:00    2017-06-02 09:53:00
94911    31509    788    2017-06-02 10:57:00    2017-06-02 10:57:00
94912    31509    775    2017-06-02 15:28:00    2017-06-02 15:28:00
94913    31509    900    2017-06-02 08:39:00    2017-06-02 08:39:00
94914    31509    565    2017-06-02 05:31:00    2017-06-02 05:31:00
94915    31510    620    2017-06-02 16:48:00    2017-06-02 16:48:00
94916    31510    783    2017-06-02 17:38:00    2017-06-02 17:38:00
94917    31510    524    2017-06-02 05:18:00    2017-06-02 05:18:00
94918    31510    717    2017-06-02 13:50:00    2017-06-02 13:50:00
94919    31510    770    2017-06-02 01:37:00    2017-06-02 01:37:00
94920    31511    466    2017-06-02 08:00:00    2017-06-02 08:00:00
94921    31511    734    2017-06-02 17:13:00    2017-06-02 17:13:00
94922    31511    493    2017-06-02 06:00:00    2017-06-02 06:00:00
94923    31511    551    2017-06-02 02:30:00    2017-06-02 02:30:00
94924    31511    793    2017-06-02 23:32:00    2017-06-02 23:32:00
94925    31512    767    2017-06-02 23:59:00    2017-06-02 23:59:00
94926    31512    601    2017-06-02 07:33:00    2017-06-02 07:33:00
94927    31512    493    2017-06-02 06:40:00    2017-06-02 06:40:00
94928    31512    519    2017-06-02 10:29:00    2017-06-02 10:29:00
94929    31512    685    2017-06-02 15:06:00    2017-06-02 15:06:00
94930    31513    708    2017-06-02 15:43:00    2017-06-02 15:43:00
94931    31513    746    2017-06-02 07:50:00    2017-06-02 07:50:00
94932    31513    740    2017-06-02 14:48:00    2017-06-02 14:48:00
94933    31513    699    2017-06-02 20:38:00    2017-06-02 20:38:00
94934    31513    740    2017-06-02 06:08:00    2017-06-02 06:08:00
94935    31514    733    2017-06-02 23:15:00    2017-06-02 23:15:00
94936    31514    488    2017-06-02 08:00:00    2017-06-02 08:00:00
94937    31514    663    2017-06-02 11:34:00    2017-06-02 11:34:00
94938    31514    858    2017-06-02 12:51:00    2017-06-02 12:51:00
94939    31514    906    2017-06-02 11:30:00    2017-06-02 11:30:00
94940    31515    867    2017-06-03 12:53:00    2017-06-03 12:53:00
94941    31515    937    2017-06-03 20:25:00    2017-06-03 20:25:00
94942    31515    530    2017-06-03 03:29:00    2017-06-03 03:29:00
94943    31515    798    2017-06-03 23:05:00    2017-06-03 23:05:00
94944    31515    508    2017-06-03 01:14:00    2017-06-03 01:14:00
94945    31516    891    2017-06-03 11:05:00    2017-06-03 11:05:00
94946    31516    469    2017-06-03 11:08:00    2017-06-03 11:08:00
94947    31516    675    2017-06-03 05:25:00    2017-06-03 05:25:00
94948    31516    753    2017-06-03 02:21:00    2017-06-03 02:21:00
94949    31516    518    2017-06-03 07:52:00    2017-06-03 07:52:00
94950    31517    584    2017-06-03 19:15:00    2017-06-03 19:15:00
94951    31517    827    2017-06-03 18:53:00    2017-06-03 18:53:00
94952    31517    781    2017-06-03 18:58:00    2017-06-03 18:58:00
94953    31517    490    2017-06-03 19:55:00    2017-06-03 19:55:00
94954    31517    903    2017-06-03 22:46:00    2017-06-03 22:46:00
94955    31518    484    2017-06-03 20:13:00    2017-06-03 20:13:00
94956    31518    859    2017-06-03 20:01:00    2017-06-03 20:01:00
94957    31518    494    2017-06-03 20:06:00    2017-06-03 20:06:00
94958    31518    534    2017-06-03 01:08:00    2017-06-03 01:08:00
94959    31518    873    2017-06-03 05:45:00    2017-06-03 05:45:00
94960    31519    553    2017-06-03 08:58:00    2017-06-03 08:58:00
94961    31519    490    2017-06-03 13:49:00    2017-06-03 13:49:00
94962    31519    791    2017-06-03 05:47:00    2017-06-03 05:47:00
94963    31519    875    2017-06-03 12:01:00    2017-06-03 12:01:00
94964    31519    495    2017-06-03 18:23:00    2017-06-03 18:23:00
94965    31520    782    2017-06-03 11:10:00    2017-06-03 11:10:00
94966    31520    832    2017-06-03 14:36:00    2017-06-03 14:36:00
94967    31520    730    2017-06-03 05:56:00    2017-06-03 05:56:00
94968    31520    630    2017-06-03 03:47:00    2017-06-03 03:47:00
94969    31520    467    2017-06-03 02:17:00    2017-06-03 02:17:00
94970    31521    840    2017-06-03 09:08:00    2017-06-03 09:08:00
94971    31521    941    2017-06-03 09:37:00    2017-06-03 09:37:00
94972    31521    741    2017-06-03 03:08:00    2017-06-03 03:08:00
94973    31521    936    2017-06-03 10:56:00    2017-06-03 10:56:00
94974    31521    565    2017-06-03 04:46:00    2017-06-03 04:46:00
94975    31522    500    2017-06-03 09:56:00    2017-06-03 09:56:00
94976    31522    860    2017-06-03 05:55:00    2017-06-03 05:55:00
94977    31522    697    2017-06-03 08:01:00    2017-06-03 08:01:00
94978    31522    872    2017-06-03 04:49:00    2017-06-03 04:49:00
94979    31522    958    2017-06-03 18:56:00    2017-06-03 18:56:00
94980    31523    668    2017-06-03 07:09:00    2017-06-03 07:09:00
94981    31523    912    2017-06-03 14:40:00    2017-06-03 14:40:00
94982    31523    694    2017-06-03 23:03:00    2017-06-03 23:03:00
94983    31523    946    2017-06-03 17:53:00    2017-06-03 17:53:00
94984    31523    832    2017-06-03 08:09:00    2017-06-03 08:09:00
94985    31524    866    2017-06-03 18:03:00    2017-06-03 18:03:00
94986    31524    778    2017-06-03 20:17:00    2017-06-03 20:17:00
94987    31524    919    2017-06-03 18:02:00    2017-06-03 18:02:00
94988    31524    802    2017-06-03 21:02:00    2017-06-03 21:02:00
94989    31524    759    2017-06-03 16:45:00    2017-06-03 16:45:00
94990    31525    545    2017-06-03 02:40:00    2017-06-03 02:40:00
94991    31525    631    2017-06-03 06:23:00    2017-06-03 06:23:00
94992    31525    574    2017-06-03 19:05:00    2017-06-03 19:05:00
94993    31525    627    2017-06-03 18:48:00    2017-06-03 18:48:00
94994    31525    783    2017-06-03 16:58:00    2017-06-03 16:58:00
94995    31526    816    2017-06-03 12:53:00    2017-06-03 12:53:00
94996    31526    854    2017-06-03 15:31:00    2017-06-03 15:31:00
94997    31526    754    2017-06-03 09:14:00    2017-06-03 09:14:00
94998    31526    708    2017-06-03 02:20:00    2017-06-03 02:20:00
94999    31526    490    2017-06-03 16:01:00    2017-06-03 16:01:00
95000    31527    765    2017-06-03 15:13:00    2017-06-03 15:13:00
95001    31527    552    2017-06-03 04:37:00    2017-06-03 04:37:00
95002    31527    960    2017-06-03 06:27:00    2017-06-03 06:27:00
95003    31527    901    2017-06-03 06:38:00    2017-06-03 06:38:00
95004    31527    923    2017-06-03 12:21:00    2017-06-03 12:21:00
95005    31528    864    2017-06-03 09:12:00    2017-06-03 09:12:00
95006    31528    847    2017-06-03 16:00:00    2017-06-03 16:00:00
95007    31528    679    2017-06-03 08:24:00    2017-06-03 08:24:00
95008    31528    659    2017-06-03 01:34:00    2017-06-03 01:34:00
95009    31528    820    2017-06-03 06:20:00    2017-06-03 06:20:00
95010    31529    653    2017-06-03 05:27:00    2017-06-03 05:27:00
95011    31529    533    2017-06-03 17:15:00    2017-06-03 17:15:00
95012    31529    780    2017-06-03 01:12:00    2017-06-03 01:12:00
95013    31529    764    2017-06-03 16:50:00    2017-06-03 16:50:00
95014    31529    803    2017-06-03 16:39:00    2017-06-03 16:39:00
95015    31530    718    2017-06-03 06:00:00    2017-06-03 06:00:00
95016    31530    474    2017-06-03 08:29:00    2017-06-03 08:29:00
95017    31530    521    2017-06-03 20:29:00    2017-06-03 20:29:00
95018    31530    950    2017-06-03 15:06:00    2017-06-03 15:06:00
95019    31530    513    2017-06-03 08:26:00    2017-06-03 08:26:00
95020    31531    784    2017-06-03 20:21:00    2017-06-03 20:21:00
95021    31531    814    2017-06-03 01:13:00    2017-06-03 01:13:00
95022    31531    500    2017-06-03 09:43:00    2017-06-03 09:43:00
95023    31531    692    2017-06-03 14:59:00    2017-06-03 14:59:00
95024    31531    543    2017-06-03 10:33:00    2017-06-03 10:33:00
95025    31532    800    2017-06-03 20:51:00    2017-06-03 20:51:00
95026    31532    759    2017-06-03 06:41:00    2017-06-03 06:41:00
95027    31532    842    2017-06-03 02:50:00    2017-06-03 02:50:00
95028    31532    569    2017-06-03 03:00:00    2017-06-03 03:00:00
95029    31532    703    2017-06-03 17:43:00    2017-06-03 17:43:00
95030    31533    654    2017-06-03 05:03:00    2017-06-03 05:03:00
95031    31533    554    2017-06-03 18:02:00    2017-06-03 18:02:00
95032    31533    746    2017-06-03 23:56:00    2017-06-03 23:56:00
95033    31533    699    2017-06-03 06:17:00    2017-06-03 06:17:00
95034    31533    620    2017-06-03 08:17:00    2017-06-03 08:17:00
95035    31534    912    2017-06-03 05:38:00    2017-06-03 05:38:00
95036    31534    610    2017-06-03 09:27:00    2017-06-03 09:27:00
95037    31534    633    2017-06-03 02:38:00    2017-06-03 02:38:00
95038    31534    919    2017-06-03 18:47:00    2017-06-03 18:47:00
95039    31534    780    2017-06-03 05:19:00    2017-06-03 05:19:00
95040    31535    525    2017-06-03 21:59:00    2017-06-03 21:59:00
95041    31535    793    2017-06-03 04:01:00    2017-06-03 04:01:00
95042    31535    773    2017-06-03 13:18:00    2017-06-03 13:18:00
95043    31535    832    2017-06-03 14:54:00    2017-06-03 14:54:00
95044    31535    797    2017-06-03 15:02:00    2017-06-03 15:02:00
95045    31536    538    2017-06-03 08:22:00    2017-06-03 08:22:00
95046    31536    865    2017-06-03 10:01:00    2017-06-03 10:01:00
95047    31536    943    2017-06-03 16:53:00    2017-06-03 16:53:00
95048    31536    638    2017-06-03 09:16:00    2017-06-03 09:16:00
95049    31536    607    2017-06-03 12:42:00    2017-06-03 12:42:00
95050    31537    488    2017-06-03 08:37:00    2017-06-03 08:37:00
95051    31537    881    2017-06-03 22:39:00    2017-06-03 22:39:00
95052    31537    772    2017-06-03 18:16:00    2017-06-03 18:16:00
95053    31537    885    2017-06-03 09:43:00    2017-06-03 09:43:00
95054    31537    961    2017-06-03 10:38:00    2017-06-03 10:38:00
95055    31538    698    2017-06-03 15:31:00    2017-06-03 15:31:00
95056    31538    649    2017-06-03 15:58:00    2017-06-03 15:58:00
95057    31538    567    2017-06-03 16:05:00    2017-06-03 16:05:00
95058    31538    621    2017-06-03 04:50:00    2017-06-03 04:50:00
95059    31538    713    2017-06-03 18:45:00    2017-06-03 18:45:00
95060    31539    534    2017-06-03 18:19:00    2017-06-03 18:19:00
95061    31539    659    2017-06-03 08:45:00    2017-06-03 08:45:00
95062    31539    614    2017-06-03 09:17:00    2017-06-03 09:17:00
95063    31539    749    2017-06-03 11:56:00    2017-06-03 11:56:00
95064    31539    707    2017-06-03 11:35:00    2017-06-03 11:35:00
95065    31540    724    2017-06-03 03:13:00    2017-06-03 03:13:00
95066    31540    810    2017-06-03 13:50:00    2017-06-03 13:50:00
95067    31540    723    2017-06-03 13:35:00    2017-06-03 13:35:00
95068    31540    759    2017-06-03 10:08:00    2017-06-03 10:08:00
95069    31540    749    2017-06-03 03:39:00    2017-06-03 03:39:00
95070    31541    854    2017-06-03 21:26:00    2017-06-03 21:26:00
95071    31541    564    2017-06-03 17:37:00    2017-06-03 17:37:00
95072    31541    882    2017-06-03 07:38:00    2017-06-03 07:38:00
95073    31541    530    2017-06-03 23:40:00    2017-06-03 23:40:00
95074    31541    471    2017-06-03 16:39:00    2017-06-03 16:39:00
95075    31542    495    2017-06-03 19:57:00    2017-06-03 19:57:00
95076    31542    485    2017-06-03 19:00:00    2017-06-03 19:00:00
95077    31542    472    2017-06-03 16:14:00    2017-06-03 16:14:00
95078    31542    961    2017-06-03 14:57:00    2017-06-03 14:57:00
95079    31542    719    2017-06-03 06:04:00    2017-06-03 06:04:00
95080    31543    478    2017-06-03 20:53:00    2017-06-03 20:53:00
95081    31543    946    2017-06-03 20:15:00    2017-06-03 20:15:00
95082    31543    813    2017-06-03 08:39:00    2017-06-03 08:39:00
95083    31543    743    2017-06-03 10:39:00    2017-06-03 10:39:00
95084    31543    532    2017-06-03 03:45:00    2017-06-03 03:45:00
95085    31544    800    2017-06-03 23:12:00    2017-06-03 23:12:00
95086    31544    686    2017-06-03 21:51:00    2017-06-03 21:51:00
95087    31544    589    2017-06-03 16:44:00    2017-06-03 16:44:00
95088    31544    939    2017-06-03 03:34:00    2017-06-03 03:34:00
95089    31544    582    2017-06-03 04:00:00    2017-06-03 04:00:00
95090    31545    733    2017-06-03 23:53:00    2017-06-03 23:53:00
95091    31545    576    2017-06-03 19:01:00    2017-06-03 19:01:00
95092    31545    902    2017-06-03 20:30:00    2017-06-03 20:30:00
95093    31545    768    2017-06-03 05:05:00    2017-06-03 05:05:00
95094    31545    501    2017-06-03 14:14:00    2017-06-03 14:14:00
95095    31546    536    2017-06-03 13:25:00    2017-06-03 13:25:00
95096    31546    710    2017-06-03 06:33:00    2017-06-03 06:33:00
95097    31546    571    2017-06-03 06:19:00    2017-06-03 06:19:00
95098    31546    479    2017-06-03 06:42:00    2017-06-03 06:42:00
95099    31546    824    2017-06-03 10:47:00    2017-06-03 10:47:00
95100    31547    616    2017-06-03 17:27:00    2017-06-03 17:27:00
95101    31547    778    2017-06-03 03:43:00    2017-06-03 03:43:00
95102    31547    881    2017-06-03 02:38:00    2017-06-03 02:38:00
95103    31547    822    2017-06-03 01:56:00    2017-06-03 01:56:00
95104    31547    854    2017-06-03 15:28:00    2017-06-03 15:28:00
95105    31548    713    2017-06-03 17:08:00    2017-06-03 17:08:00
95106    31548    898    2017-06-03 09:19:00    2017-06-03 09:19:00
95107    31548    919    2017-06-03 18:36:00    2017-06-03 18:36:00
95108    31548    588    2017-06-03 12:21:00    2017-06-03 12:21:00
95109    31548    774    2017-06-03 14:13:00    2017-06-03 14:13:00
95110    31549    678    2017-06-03 18:37:00    2017-06-03 18:37:00
95111    31549    698    2017-06-03 11:43:00    2017-06-03 11:43:00
95112    31549    543    2017-06-03 04:11:00    2017-06-03 04:11:00
95113    31549    704    2017-06-03 01:08:00    2017-06-03 01:08:00
95114    31549    960    2017-06-03 07:37:00    2017-06-03 07:37:00
95115    31550    584    2017-06-03 11:07:00    2017-06-03 11:07:00
95116    31550    754    2017-06-03 21:16:00    2017-06-03 21:16:00
95117    31550    523    2017-06-03 22:23:00    2017-06-03 22:23:00
95118    31550    923    2017-06-03 14:47:00    2017-06-03 14:47:00
95119    31550    736    2017-06-03 18:17:00    2017-06-03 18:17:00
95120    31551    705    2017-06-03 18:34:00    2017-06-03 18:34:00
95121    31551    611    2017-06-03 03:47:00    2017-06-03 03:47:00
95122    31551    617    2017-06-03 20:01:00    2017-06-03 20:01:00
95123    31551    935    2017-06-04 00:00:00    2017-06-04 00:00:00
95124    31551    910    2017-06-03 17:08:00    2017-06-03 17:08:00
95125    31552    800    2017-06-03 19:53:00    2017-06-03 19:53:00
95126    31552    472    2017-06-03 09:49:00    2017-06-03 09:49:00
95127    31552    682    2017-06-03 20:00:00    2017-06-03 20:00:00
95128    31552    727    2017-06-03 06:24:00    2017-06-03 06:24:00
95129    31552    929    2017-06-03 03:47:00    2017-06-03 03:47:00
95130    31553    485    2017-06-03 13:28:00    2017-06-03 13:28:00
95131    31553    765    2017-06-03 05:37:00    2017-06-03 05:37:00
95132    31553    875    2017-06-03 21:04:00    2017-06-03 21:04:00
95133    31553    948    2017-06-03 22:21:00    2017-06-03 22:21:00
95134    31553    930    2017-06-03 18:53:00    2017-06-03 18:53:00
95135    31554    735    2017-06-03 07:54:00    2017-06-03 07:54:00
95136    31554    851    2017-06-03 23:27:00    2017-06-03 23:27:00
95137    31554    902    2017-06-03 10:19:00    2017-06-03 10:19:00
95138    31554    635    2017-06-03 23:43:00    2017-06-03 23:43:00
95139    31554    670    2017-06-03 15:52:00    2017-06-03 15:52:00
95140    31555    645    2017-06-03 13:49:00    2017-06-03 13:49:00
95141    31555    804    2017-06-03 22:27:00    2017-06-03 22:27:00
95142    31555    621    2017-06-03 21:11:00    2017-06-03 21:11:00
95143    31555    676    2017-06-03 13:28:00    2017-06-03 13:28:00
95144    31555    556    2017-06-03 21:30:00    2017-06-03 21:30:00
95145    31556    847    2017-06-03 06:00:00    2017-06-03 06:00:00
95146    31556    527    2017-06-03 18:51:00    2017-06-03 18:51:00
95147    31556    862    2017-06-03 09:45:00    2017-06-03 09:45:00
95148    31556    868    2017-06-03 09:37:00    2017-06-03 09:37:00
95149    31556    601    2017-06-03 07:20:00    2017-06-03 07:20:00
95150    31557    518    2017-06-03 07:59:00    2017-06-03 07:59:00
95151    31557    722    2017-06-03 05:40:00    2017-06-03 05:40:00
95152    31557    505    2017-06-03 01:48:00    2017-06-03 01:48:00
95153    31557    778    2017-06-03 15:20:00    2017-06-03 15:20:00
95154    31557    623    2017-06-03 02:18:00    2017-06-03 02:18:00
95155    31558    802    2017-06-03 03:39:00    2017-06-03 03:39:00
95156    31558    697    2017-06-03 13:48:00    2017-06-03 13:48:00
95157    31558    729    2017-06-03 04:20:00    2017-06-03 04:20:00
95158    31558    592    2017-06-03 21:35:00    2017-06-03 21:35:00
95159    31558    914    2017-06-03 18:18:00    2017-06-03 18:18:00
95160    31559    930    2017-06-03 20:45:00    2017-06-03 20:45:00
95161    31559    705    2017-06-03 21:32:00    2017-06-03 21:32:00
95162    31559    961    2017-06-03 10:50:00    2017-06-03 10:50:00
95163    31559    589    2017-06-03 16:19:00    2017-06-03 16:19:00
95164    31559    516    2017-06-03 08:25:00    2017-06-03 08:25:00
95165    31560    688    2017-06-03 05:43:00    2017-06-03 05:43:00
95166    31560    553    2017-06-03 06:04:00    2017-06-03 06:04:00
95167    31560    909    2017-06-03 19:33:00    2017-06-03 19:33:00
95168    31560    817    2017-06-03 06:12:00    2017-06-03 06:12:00
95169    31560    765    2017-06-03 06:20:00    2017-06-03 06:20:00
95170    31561    480    2017-06-03 16:35:00    2017-06-03 16:35:00
95171    31561    770    2017-06-03 06:39:00    2017-06-03 06:39:00
95172    31561    559    2017-06-03 14:53:00    2017-06-03 14:53:00
95173    31561    956    2017-06-03 06:37:00    2017-06-03 06:37:00
95174    31561    523    2017-06-03 02:03:00    2017-06-03 02:03:00
95175    31562    796    2017-06-03 11:55:00    2017-06-03 11:55:00
95176    31562    866    2017-06-03 13:05:00    2017-06-03 13:05:00
95177    31562    790    2017-06-03 09:38:00    2017-06-03 09:38:00
95178    31562    662    2017-06-03 04:00:00    2017-06-03 04:00:00
95179    31562    634    2017-06-03 08:51:00    2017-06-03 08:51:00
95180    31563    726    2017-06-03 10:17:00    2017-06-03 10:17:00
95181    31563    747    2017-06-03 23:55:00    2017-06-03 23:55:00
95182    31563    509    2017-06-03 10:01:00    2017-06-03 10:01:00
95183    31563    621    2017-06-03 22:57:00    2017-06-03 22:57:00
95184    31563    509    2017-06-03 15:49:00    2017-06-03 15:49:00
95185    31564    795    2017-06-03 17:31:00    2017-06-03 17:31:00
95186    31564    942    2017-06-03 13:36:00    2017-06-03 13:36:00
95187    31564    829    2017-06-03 07:57:00    2017-06-03 07:57:00
95188    31564    653    2017-06-03 18:47:00    2017-06-03 18:47:00
95189    31564    859    2017-06-03 22:19:00    2017-06-03 22:19:00
95190    31565    627    2017-06-04 16:24:00    2017-06-04 16:24:00
95191    31565    556    2017-06-04 01:15:00    2017-06-04 01:15:00
95192    31565    895    2017-06-04 18:37:00    2017-06-04 18:37:00
95193    31565    779    2017-06-04 23:21:00    2017-06-04 23:21:00
95194    31565    759    2017-06-04 06:40:00    2017-06-04 06:40:00
95195    31566    945    2017-06-04 07:02:00    2017-06-04 07:02:00
95196    31566    744    2017-06-04 01:11:00    2017-06-04 01:11:00
95197    31566    957    2017-06-04 13:29:00    2017-06-04 13:29:00
95198    31566    520    2017-06-04 19:58:00    2017-06-04 19:58:00
95199    31566    938    2017-06-04 05:00:00    2017-06-04 05:00:00
95200    31567    936    2017-06-04 05:53:00    2017-06-04 05:53:00
95201    31567    690    2017-06-04 07:19:00    2017-06-04 07:19:00
95202    31567    592    2017-06-04 16:44:00    2017-06-04 16:44:00
95203    31567    581    2017-06-04 03:15:00    2017-06-04 03:15:00
95204    31567    655    2017-06-04 10:52:00    2017-06-04 10:52:00
95205    31568    513    2017-06-04 06:18:00    2017-06-04 06:18:00
95206    31568    598    2017-06-04 20:37:00    2017-06-04 20:37:00
95207    31568    749    2017-06-04 08:53:00    2017-06-04 08:53:00
95208    31568    508    2017-06-04 16:46:00    2017-06-04 16:46:00
95209    31568    522    2017-06-04 16:27:00    2017-06-04 16:27:00
95210    31569    500    2017-06-04 18:29:00    2017-06-04 18:29:00
95211    31569    839    2017-06-04 19:46:00    2017-06-04 19:46:00
95212    31569    801    2017-06-04 10:27:00    2017-06-04 10:27:00
95213    31569    904    2017-06-04 17:32:00    2017-06-04 17:32:00
95214    31569    723    2017-06-04 20:59:00    2017-06-04 20:59:00
95215    31570    525    2017-06-04 01:39:00    2017-06-04 01:39:00
95216    31570    869    2017-06-04 23:19:00    2017-06-04 23:19:00
95217    31570    499    2017-06-04 22:19:00    2017-06-04 22:19:00
95218    31570    597    2017-06-04 21:39:00    2017-06-04 21:39:00
95219    31570    758    2017-06-04 12:51:00    2017-06-04 12:51:00
95220    31571    695    2017-06-04 21:35:00    2017-06-04 21:35:00
95221    31571    909    2017-06-04 01:16:00    2017-06-04 01:16:00
95222    31571    625    2017-06-04 06:17:00    2017-06-04 06:17:00
95223    31571    499    2017-06-04 12:24:00    2017-06-04 12:24:00
95224    31571    816    2017-06-04 03:49:00    2017-06-04 03:49:00
95225    31572    533    2017-06-04 04:46:00    2017-06-04 04:46:00
95226    31572    467    2017-06-04 02:59:00    2017-06-04 02:59:00
95227    31572    473    2017-06-04 15:59:00    2017-06-04 15:59:00
95228    31572    795    2017-06-04 14:57:00    2017-06-04 14:57:00
95229    31572    776    2017-06-04 19:35:00    2017-06-04 19:35:00
95230    31573    864    2017-06-04 05:19:00    2017-06-04 05:19:00
95231    31573    899    2017-06-04 07:33:00    2017-06-04 07:33:00
95232    31573    956    2017-06-04 13:15:00    2017-06-04 13:15:00
95233    31573    768    2017-06-04 16:28:00    2017-06-04 16:28:00
95234    31573    844    2017-06-04 07:12:00    2017-06-04 07:12:00
95235    31574    716    2017-06-04 23:20:00    2017-06-04 23:20:00
95236    31574    831    2017-06-04 13:45:00    2017-06-04 13:45:00
95237    31574    503    2017-06-04 07:51:00    2017-06-04 07:51:00
95238    31574    923    2017-06-04 17:28:00    2017-06-04 17:28:00
95239    31574    656    2017-06-04 19:39:00    2017-06-04 19:39:00
95240    31575    627    2017-06-04 01:11:00    2017-06-04 01:11:00
95241    31575    607    2017-06-04 20:33:00    2017-06-04 20:33:00
95242    31575    905    2017-06-04 17:39:00    2017-06-04 17:39:00
95243    31575    835    2017-06-04 05:48:00    2017-06-04 05:48:00
95244    31575    870    2017-06-04 16:01:00    2017-06-04 16:01:00
95245    31576    606    2017-06-05 23:27:00    2017-06-05 23:27:00
95246    31576    837    2017-06-05 15:17:00    2017-06-05 15:17:00
95247    31576    639    2017-06-05 06:55:00    2017-06-05 06:55:00
95248    31576    702    2017-06-05 13:59:00    2017-06-05 13:59:00
95249    31576    940    2017-06-05 04:25:00    2017-06-05 04:25:00
95250    31577    908    2017-06-05 11:05:00    2017-06-05 11:05:00
95251    31577    512    2017-06-05 04:56:00    2017-06-05 04:56:00
95252    31577    576    2017-06-05 12:17:00    2017-06-05 12:17:00
95253    31577    607    2017-06-05 19:20:00    2017-06-05 19:20:00
95254    31577    796    2017-06-05 20:36:00    2017-06-05 20:36:00
95255    31578    749    2017-06-05 08:31:00    2017-06-05 08:31:00
95256    31578    528    2017-06-05 19:07:00    2017-06-05 19:07:00
95257    31578    484    2017-06-05 06:56:00    2017-06-05 06:56:00
95258    31578    705    2017-06-05 21:42:00    2017-06-05 21:42:00
95259    31578    487    2017-06-05 10:29:00    2017-06-05 10:29:00
95260    31579    955    2017-06-05 21:09:00    2017-06-05 21:09:00
95261    31579    802    2017-06-05 17:56:00    2017-06-05 17:56:00
95262    31579    535    2017-06-05 21:07:00    2017-06-05 21:07:00
95263    31579    532    2017-06-05 14:27:00    2017-06-05 14:27:00
95264    31579    754    2017-06-05 15:18:00    2017-06-05 15:18:00
95265    31580    550    2017-06-05 19:16:00    2017-06-05 19:16:00
95266    31580    846    2017-06-05 20:56:00    2017-06-05 20:56:00
95267    31580    554    2017-06-05 08:25:00    2017-06-05 08:25:00
95268    31580    844    2017-06-05 14:53:00    2017-06-05 14:53:00
95269    31580    907    2017-06-05 08:36:00    2017-06-05 08:36:00
95270    31581    516    2017-06-05 19:18:00    2017-06-05 19:18:00
95271    31581    733    2017-06-05 11:44:00    2017-06-05 11:44:00
95272    31581    473    2017-06-05 19:57:00    2017-06-05 19:57:00
95273    31581    803    2017-06-05 19:53:00    2017-06-05 19:53:00
95274    31581    633    2017-06-05 10:29:00    2017-06-05 10:29:00
95275    31582    895    2017-06-05 20:09:00    2017-06-05 20:09:00
95276    31582    935    2017-06-05 22:17:00    2017-06-05 22:17:00
95277    31582    708    2017-06-05 16:36:00    2017-06-05 16:36:00
95278    31582    465    2017-06-05 13:23:00    2017-06-05 13:23:00
95279    31582    839    2017-06-05 17:32:00    2017-06-05 17:32:00
95280    31583    677    2017-06-05 02:11:00    2017-06-05 02:11:00
95281    31583    779    2017-06-05 23:48:00    2017-06-05 23:48:00
95282    31583    749    2017-06-05 09:26:00    2017-06-05 09:26:00
95283    31583    956    2017-06-05 14:16:00    2017-06-05 14:16:00
95284    31583    903    2017-06-05 07:18:00    2017-06-05 07:18:00
95285    31584    953    2017-06-05 21:22:00    2017-06-05 21:22:00
95286    31584    621    2017-06-05 08:41:00    2017-06-05 08:41:00
95287    31584    864    2017-06-05 11:16:00    2017-06-05 11:16:00
95288    31584    809    2017-06-05 20:30:00    2017-06-05 20:30:00
95289    31584    514    2017-06-05 16:25:00    2017-06-05 16:25:00
95290    31585    725    2017-06-05 14:28:00    2017-06-05 14:28:00
95291    31585    844    2017-06-05 23:48:00    2017-06-05 23:48:00
95292    31585    955    2017-06-05 15:58:00    2017-06-05 15:58:00
95293    31585    563    2017-06-05 09:01:00    2017-06-05 09:01:00
95294    31585    539    2017-06-05 23:46:00    2017-06-05 23:46:00
95295    31586    485    2017-06-05 06:08:00    2017-06-05 06:08:00
95296    31586    921    2017-06-05 20:58:00    2017-06-05 20:58:00
95297    31586    825    2017-06-05 07:25:00    2017-06-05 07:25:00
95298    31586    500    2017-06-05 21:34:00    2017-06-05 21:34:00
95299    31586    882    2017-06-05 01:24:00    2017-06-05 01:24:00
95300    31587    468    2017-06-05 03:31:00    2017-06-05 03:31:00
95301    31587    558    2017-06-05 15:18:00    2017-06-05 15:18:00
95302    31587    511    2017-06-05 05:55:00    2017-06-05 05:55:00
95303    31587    772    2017-06-05 18:49:00    2017-06-05 18:49:00
95304    31587    937    2017-06-05 09:11:00    2017-06-05 09:11:00
95305    31588    815    2017-06-05 15:02:00    2017-06-05 15:02:00
95306    31588    586    2017-06-05 05:31:00    2017-06-05 05:31:00
95307    31588    883    2017-06-05 05:22:00    2017-06-05 05:22:00
95308    31588    861    2017-06-05 20:42:00    2017-06-05 20:42:00
95309    31588    572    2017-06-05 17:31:00    2017-06-05 17:31:00
95310    31589    629    2017-06-05 12:52:00    2017-06-05 12:52:00
95311    31589    542    2017-06-05 06:54:00    2017-06-05 06:54:00
95312    31589    551    2017-06-05 08:56:00    2017-06-05 08:56:00
95313    31589    874    2017-06-05 19:49:00    2017-06-05 19:49:00
95314    31589    774    2017-06-05 09:22:00    2017-06-05 09:22:00
95315    31590    907    2017-06-05 12:28:00    2017-06-05 12:28:00
95316    31590    606    2017-06-05 21:06:00    2017-06-05 21:06:00
95317    31590    578    2017-06-05 14:00:00    2017-06-05 14:00:00
95318    31590    573    2017-06-05 16:20:00    2017-06-05 16:20:00
95319    31590    488    2017-06-05 19:45:00    2017-06-05 19:45:00
95320    31591    813    2017-06-05 13:47:00    2017-06-05 13:47:00
95321    31591    865    2017-06-05 03:42:00    2017-06-05 03:42:00
95322    31591    882    2017-06-05 01:28:00    2017-06-05 01:28:00
95323    31591    718    2017-06-05 23:43:00    2017-06-05 23:43:00
95324    31591    723    2017-06-05 19:11:00    2017-06-05 19:11:00
95325    31592    692    2017-06-05 20:13:00    2017-06-05 20:13:00
95326    31592    576    2017-06-05 23:37:00    2017-06-05 23:37:00
95327    31592    665    2017-06-05 14:40:00    2017-06-05 14:40:00
95328    31592    485    2017-06-05 09:16:00    2017-06-05 09:16:00
95329    31592    494    2017-06-05 11:47:00    2017-06-05 11:47:00
95330    31593    670    2017-06-05 20:39:00    2017-06-05 20:39:00
95331    31593    625    2017-06-05 19:15:00    2017-06-05 19:15:00
95332    31593    887    2017-06-05 22:48:00    2017-06-05 22:48:00
95333    31593    781    2017-06-05 05:49:00    2017-06-05 05:49:00
95334    31593    766    2017-06-05 02:27:00    2017-06-05 02:27:00
95335    31594    836    2017-06-05 15:15:00    2017-06-05 15:15:00
95336    31594    885    2017-06-05 11:45:00    2017-06-05 11:45:00
95337    31594    694    2017-06-05 07:48:00    2017-06-05 07:48:00
95338    31594    706    2017-06-05 15:42:00    2017-06-05 15:42:00
95339    31594    717    2017-06-05 22:35:00    2017-06-05 22:35:00
95340    31595    595    2017-06-05 07:01:00    2017-06-05 07:01:00
95341    31595    948    2017-06-05 09:52:00    2017-06-05 09:52:00
95342    31595    532    2017-06-05 05:00:00    2017-06-05 05:00:00
95343    31595    796    2017-06-05 12:21:00    2017-06-05 12:21:00
95344    31595    888    2017-06-05 08:15:00    2017-06-05 08:15:00
95345    31596    938    2017-06-05 13:07:00    2017-06-05 13:07:00
95346    31596    556    2017-06-05 09:09:00    2017-06-05 09:09:00
95347    31596    914    2017-06-05 07:06:00    2017-06-05 07:06:00
95348    31596    650    2017-06-05 13:31:00    2017-06-05 13:31:00
95349    31596    480    2017-06-05 22:40:00    2017-06-05 22:40:00
95350    31597    903    2017-06-05 06:54:00    2017-06-05 06:54:00
95351    31597    655    2017-06-05 21:54:00    2017-06-05 21:54:00
95352    31597    741    2017-06-05 13:50:00    2017-06-05 13:50:00
95353    31597    482    2017-06-05 23:35:00    2017-06-05 23:35:00
95354    31597    887    2017-06-05 13:17:00    2017-06-05 13:17:00
94210    31369    \N    2017-05-30 22:03:00    2017-05-30 22:03:00
92671    31061    \N    2017-05-23 17:19:00    2017-05-23 17:19:00
92817    31090    \N    2017-05-23 10:47:00    2017-05-23 10:47:00
90996    30726    \N    2017-05-18 19:41:00    2017-05-18 19:41:00
90250    30577    \N    2017-05-15 17:00:00    2017-05-15 17:00:00
89695    30466    \N    2017-05-13 05:50:00    2017-05-13 05:50:00
89300    30387    \N    2017-05-11 12:08:00    2017-05-11 12:08:00
88933    30313    \N    2017-05-10 12:51:00    2017-05-10 12:51:00
88236    30174    \N    2017-05-07 03:27:00    2017-05-07 03:27:00
88074    30141    \N    2017-05-06 05:58:00    2017-05-06 05:58:00
87965    30120    \N    2017-05-05 13:08:00    2017-05-05 13:08:00
87722    30071    \N    2017-05-05 12:16:00    2017-05-05 12:16:00
87372    30001    \N    2017-05-04 23:15:00    2017-05-04 23:15:00
87139    29954    \N    2017-05-02 01:31:00    2017-05-02 01:31:00
86786    29884    \N    2017-05-01 23:23:00    2017-05-01 23:23:00
85475    29622    \N    2017-04-27 15:25:00    2017-04-27 15:25:00
84752    29477    \N    2017-04-25 23:36:00    2017-04-25 23:36:00
84902    29507    \N    2017-04-25 06:37:00    2017-04-25 06:37:00
95355    31598    674    2017-06-06 08:32:00    2017-06-06 08:32:00
95356    31598    469    2017-06-06 16:16:00    2017-06-06 16:16:00
95357    31598    592    2017-06-06 23:31:00    2017-06-06 23:31:00
95358    31598    515    2017-06-06 04:58:00    2017-06-06 04:58:00
95359    31598    815    2017-06-06 08:08:00    2017-06-06 08:08:00
95360    31599    623    2017-06-06 13:04:00    2017-06-06 13:04:00
95361    31599    761    2017-06-06 06:34:00    2017-06-06 06:34:00
95362    31599    537    2017-06-06 07:00:00    2017-06-06 07:00:00
95363    31599    709    2017-06-06 06:20:00    2017-06-06 06:20:00
95364    31599    859    2017-06-06 14:55:00    2017-06-06 14:55:00
95365    31600    562    2017-06-06 22:37:00    2017-06-06 22:37:00
95366    31600    939    2017-06-06 01:33:00    2017-06-06 01:33:00
95367    31600    660    2017-06-06 12:45:00    2017-06-06 12:45:00
95368    31600    927    2017-06-06 01:55:00    2017-06-06 01:55:00
95369    31600    674    2017-06-06 16:38:00    2017-06-06 16:38:00
95370    31601    705    2017-06-06 02:30:00    2017-06-06 02:30:00
95371    31601    778    2017-06-06 22:46:00    2017-06-06 22:46:00
95372    31601    684    2017-06-06 20:10:00    2017-06-06 20:10:00
95373    31601    863    2017-06-06 11:33:00    2017-06-06 11:33:00
95374    31601    784    2017-06-06 09:45:00    2017-06-06 09:45:00
95375    31602    957    2017-06-06 21:22:00    2017-06-06 21:22:00
95376    31602    872    2017-06-06 15:48:00    2017-06-06 15:48:00
95377    31602    698    2017-06-06 11:53:00    2017-06-06 11:53:00
95378    31602    950    2017-06-06 16:21:00    2017-06-06 16:21:00
95379    31602    701    2017-06-06 07:41:00    2017-06-06 07:41:00
95380    31603    927    2017-06-06 12:53:00    2017-06-06 12:53:00
95381    31603    575    2017-06-06 23:26:00    2017-06-06 23:26:00
95382    31603    850    2017-06-06 03:33:00    2017-06-06 03:33:00
95383    31603    486    2017-06-06 23:24:00    2017-06-06 23:24:00
95384    31603    781    2017-06-06 11:24:00    2017-06-06 11:24:00
95385    31604    708    2017-06-06 17:10:00    2017-06-06 17:10:00
95386    31604    474    2017-06-06 09:28:00    2017-06-06 09:28:00
95387    31604    821    2017-06-06 02:12:00    2017-06-06 02:12:00
95388    31604    647    2017-06-06 15:56:00    2017-06-06 15:56:00
95389    31604    591    2017-06-06 13:50:00    2017-06-06 13:50:00
95390    31605    733    2017-06-06 16:52:00    2017-06-06 16:52:00
95391    31605    621    2017-06-06 20:11:00    2017-06-06 20:11:00
95392    31605    590    2017-06-06 17:59:00    2017-06-06 17:59:00
95393    31605    508    2017-06-06 08:31:00    2017-06-06 08:31:00
95394    31605    632    2017-06-06 12:50:00    2017-06-06 12:50:00
95395    31606    657    2017-06-06 22:17:00    2017-06-06 22:17:00
95396    31606    641    2017-06-06 22:50:00    2017-06-06 22:50:00
95397    31606    619    2017-06-06 14:17:00    2017-06-06 14:17:00
95398    31606    672    2017-06-06 19:02:00    2017-06-06 19:02:00
95399    31606    842    2017-06-06 13:29:00    2017-06-06 13:29:00
95400    31607    592    2017-06-06 08:59:00    2017-06-06 08:59:00
95401    31607    930    2017-06-06 09:37:00    2017-06-06 09:37:00
95402    31607    878    2017-06-06 10:17:00    2017-06-06 10:17:00
95403    31607    520    2017-06-06 13:06:00    2017-06-06 13:06:00
95404    31607    571    2017-06-06 16:49:00    2017-06-06 16:49:00
95405    31608    856    2017-06-06 23:07:00    2017-06-06 23:07:00
95406    31608    612    2017-06-06 19:45:00    2017-06-06 19:45:00
95407    31608    564    2017-06-06 20:00:00    2017-06-06 20:00:00
95408    31608    605    2017-06-06 23:55:00    2017-06-06 23:55:00
95409    31608    591    2017-06-06 01:24:00    2017-06-06 01:24:00
95410    31609    829    2017-06-06 15:07:00    2017-06-06 15:07:00
95411    31609    784    2017-06-06 08:59:00    2017-06-06 08:59:00
95412    31609    499    2017-06-06 12:10:00    2017-06-06 12:10:00
95413    31609    733    2017-06-06 11:44:00    2017-06-06 11:44:00
95414    31609    827    2017-06-06 07:53:00    2017-06-06 07:53:00
95415    31610    595    2017-06-06 06:32:00    2017-06-06 06:32:00
95416    31610    591    2017-06-06 09:10:00    2017-06-06 09:10:00
95417    31610    677    2017-06-06 03:06:00    2017-06-06 03:06:00
95418    31610    809    2017-06-06 10:12:00    2017-06-06 10:12:00
95419    31610    830    2017-06-06 18:31:00    2017-06-06 18:31:00
95420    31611    855    2017-06-06 02:38:00    2017-06-06 02:38:00
95421    31611    482    2017-06-06 07:07:00    2017-06-06 07:07:00
95422    31611    872    2017-06-06 20:45:00    2017-06-06 20:45:00
95423    31611    933    2017-06-06 13:20:00    2017-06-06 13:20:00
95424    31611    938    2017-06-06 04:22:00    2017-06-06 04:22:00
95425    31612    680    2017-06-06 04:07:00    2017-06-06 04:07:00
95426    31612    872    2017-06-06 17:05:00    2017-06-06 17:05:00
95427    31612    936    2017-06-06 16:15:00    2017-06-06 16:15:00
95428    31612    592    2017-06-06 21:56:00    2017-06-06 21:56:00
95429    31612    818    2017-06-06 18:32:00    2017-06-06 18:32:00
95430    31613    833    2017-06-06 21:14:00    2017-06-06 21:14:00
95431    31613    595    2017-06-06 03:22:00    2017-06-06 03:22:00
95432    31613    591    2017-06-06 09:14:00    2017-06-06 09:14:00
95433    31613    837    2017-06-06 23:37:00    2017-06-06 23:37:00
95434    31613    888    2017-06-06 12:46:00    2017-06-06 12:46:00
95435    31614    881    2017-06-06 08:04:00    2017-06-06 08:04:00
95436    31614    488    2017-06-06 17:55:00    2017-06-06 17:55:00
95437    31614    527    2017-06-06 19:44:00    2017-06-06 19:44:00
95438    31614    765    2017-06-06 16:14:00    2017-06-06 16:14:00
95439    31614    810    2017-06-06 05:43:00    2017-06-06 05:43:00
95440    31615    478    2017-06-06 17:32:00    2017-06-06 17:32:00
95441    31615    487    2017-06-06 03:21:00    2017-06-06 03:21:00
95442    31615    492    2017-06-06 07:06:00    2017-06-06 07:06:00
95443    31615    785    2017-06-06 05:41:00    2017-06-06 05:41:00
95444    31615    903    2017-06-06 11:42:00    2017-06-06 11:42:00
95445    31616    576    2017-06-06 01:17:00    2017-06-06 01:17:00
95446    31616    845    2017-06-06 21:13:00    2017-06-06 21:13:00
95447    31616    589    2017-06-06 17:59:00    2017-06-06 17:59:00
95448    31616    887    2017-06-06 22:05:00    2017-06-06 22:05:00
95449    31616    854    2017-06-06 07:42:00    2017-06-06 07:42:00
95450    31617    657    2017-06-06 04:35:00    2017-06-06 04:35:00
95451    31617    492    2017-06-06 11:56:00    2017-06-06 11:56:00
95452    31617    857    2017-06-06 17:43:00    2017-06-06 17:43:00
95453    31617    708    2017-06-06 18:24:00    2017-06-06 18:24:00
95454    31617    922    2017-06-06 11:51:00    2017-06-06 11:51:00
95455    31618    787    2017-06-06 04:00:00    2017-06-06 04:00:00
95456    31618    528    2017-06-06 10:48:00    2017-06-06 10:48:00
95457    31618    908    2017-06-06 09:25:00    2017-06-06 09:25:00
95458    31618    895    2017-06-06 11:21:00    2017-06-06 11:21:00
95459    31618    956    2017-06-06 04:45:00    2017-06-06 04:45:00
95460    31619    669    2017-06-06 16:23:00    2017-06-06 16:23:00
95461    31619    562    2017-06-06 18:40:00    2017-06-06 18:40:00
95462    31619    946    2017-06-06 09:05:00    2017-06-06 09:05:00
95463    31619    759    2017-06-06 13:14:00    2017-06-06 13:14:00
95464    31619    755    2017-06-06 17:34:00    2017-06-06 17:34:00
95465    31620    781    2017-06-06 23:45:00    2017-06-06 23:45:00
95466    31620    477    2017-06-06 22:36:00    2017-06-06 22:36:00
95467    31620    744    2017-06-06 23:03:00    2017-06-06 23:03:00
95468    31620    721    2017-06-06 13:49:00    2017-06-06 13:49:00
95469    31620    711    2017-06-06 08:20:00    2017-06-06 08:20:00
95470    31621    615    2017-06-06 16:03:00    2017-06-06 16:03:00
95471    31621    878    2017-06-06 22:46:00    2017-06-06 22:46:00
95472    31621    644    2017-06-06 12:22:00    2017-06-06 12:22:00
95473    31621    776    2017-06-06 16:50:00    2017-06-06 16:50:00
95474    31621    701    2017-06-06 23:16:00    2017-06-06 23:16:00
95475    31622    511    2017-06-06 15:46:00    2017-06-06 15:46:00
95476    31622    934    2017-06-06 13:32:00    2017-06-06 13:32:00
95477    31622    907    2017-06-06 23:42:00    2017-06-06 23:42:00
95478    31622    916    2017-06-06 13:43:00    2017-06-06 13:43:00
95479    31622    829    2017-06-06 15:54:00    2017-06-06 15:54:00
95480    31623    508    2017-06-06 11:32:00    2017-06-06 11:32:00
95481    31623    574    2017-06-06 07:32:00    2017-06-06 07:32:00
95482    31623    548    2017-06-06 14:11:00    2017-06-06 14:11:00
95483    31623    878    2017-06-06 10:18:00    2017-06-06 10:18:00
95484    31623    738    2017-06-06 08:23:00    2017-06-06 08:23:00
95485    31624    742    2017-06-06 18:42:00    2017-06-06 18:42:00
95486    31624    515    2017-06-06 23:00:00    2017-06-06 23:00:00
95487    31624    631    2017-06-06 22:55:00    2017-06-06 22:55:00
95488    31624    670    2017-06-06 08:33:00    2017-06-06 08:33:00
95489    31624    640    2017-06-06 14:42:00    2017-06-06 14:42:00
95490    31625    922    2017-06-06 08:28:00    2017-06-06 08:28:00
95491    31625    838    2017-06-06 06:30:00    2017-06-06 06:30:00
95492    31625    671    2017-06-06 05:46:00    2017-06-06 05:46:00
95493    31625    800    2017-06-06 14:00:00    2017-06-06 14:00:00
95494    31625    895    2017-06-06 17:56:00    2017-06-06 17:56:00
95495    31626    499    2017-06-06 20:38:00    2017-06-06 20:38:00
95496    31626    505    2017-06-06 07:00:00    2017-06-06 07:00:00
95497    31626    901    2017-06-06 05:09:00    2017-06-06 05:09:00
95498    31626    736    2017-06-06 10:57:00    2017-06-06 10:57:00
95499    31626    600    2017-06-06 14:33:00    2017-06-06 14:33:00
95500    31627    593    2017-06-06 14:55:00    2017-06-06 14:55:00
95501    31627    576    2017-06-06 07:03:00    2017-06-06 07:03:00
95502    31627    559    2017-06-06 22:32:00    2017-06-06 22:32:00
95503    31627    608    2017-06-06 22:11:00    2017-06-06 22:11:00
95504    31627    833    2017-06-06 11:09:00    2017-06-06 11:09:00
95505    31628    513    2017-06-06 08:51:00    2017-06-06 08:51:00
95506    31628    621    2017-06-06 06:46:00    2017-06-06 06:46:00
95507    31628    697    2017-06-06 08:24:00    2017-06-06 08:24:00
95508    31628    567    2017-06-06 11:34:00    2017-06-06 11:34:00
95509    31628    826    2017-06-06 19:50:00    2017-06-06 19:50:00
95510    31629    613    2017-06-06 22:48:00    2017-06-06 22:48:00
95511    31629    506    2017-06-06 12:23:00    2017-06-06 12:23:00
95512    31629    612    2017-06-06 16:47:00    2017-06-06 16:47:00
95513    31629    917    2017-06-06 20:37:00    2017-06-06 20:37:00
95514    31629    753    2017-06-06 21:12:00    2017-06-06 21:12:00
95515    31630    612    2017-06-06 22:47:00    2017-06-06 22:47:00
95516    31630    850    2017-06-06 14:53:00    2017-06-06 14:53:00
95517    31630    935    2017-06-06 21:44:00    2017-06-06 21:44:00
95518    31630    635    2017-06-06 15:31:00    2017-06-06 15:31:00
95519    31630    734    2017-06-06 18:30:00    2017-06-06 18:30:00
95520    31631    683    2017-06-06 18:14:00    2017-06-06 18:14:00
95521    31631    765    2017-06-06 02:41:00    2017-06-06 02:41:00
95522    31631    897    2017-06-06 08:41:00    2017-06-06 08:41:00
95523    31631    937    2017-06-06 07:00:00    2017-06-06 07:00:00
95524    31631    952    2017-06-06 15:14:00    2017-06-06 15:14:00
95525    31632    889    2017-06-06 20:36:00    2017-06-06 20:36:00
95526    31632    889    2017-06-06 23:52:00    2017-06-06 23:52:00
95527    31632    936    2017-06-06 13:13:00    2017-06-06 13:13:00
95528    31632    899    2017-06-06 11:58:00    2017-06-06 11:58:00
95529    31632    539    2017-06-06 18:12:00    2017-06-06 18:12:00
95530    31633    885    2017-06-06 07:39:00    2017-06-06 07:39:00
95531    31633    505    2017-06-06 07:36:00    2017-06-06 07:36:00
95532    31633    471    2017-06-06 12:49:00    2017-06-06 12:49:00
95533    31633    696    2017-06-06 04:14:00    2017-06-06 04:14:00
95534    31633    784    2017-06-06 02:50:00    2017-06-06 02:50:00
95535    31634    918    2017-06-06 17:16:00    2017-06-06 17:16:00
95536    31634    957    2017-06-06 12:16:00    2017-06-06 12:16:00
95537    31634    756    2017-06-06 07:04:00    2017-06-06 07:04:00
95538    31634    577    2017-06-06 20:30:00    2017-06-06 20:30:00
95539    31634    642    2017-06-06 06:17:00    2017-06-06 06:17:00
95540    31635    601    2017-06-06 12:54:00    2017-06-06 12:54:00
95541    31635    775    2017-06-06 05:12:00    2017-06-06 05:12:00
95542    31635    934    2017-06-06 04:31:00    2017-06-06 04:31:00
95543    31635    547    2017-06-06 03:37:00    2017-06-06 03:37:00
95544    31635    507    2017-06-06 12:04:00    2017-06-06 12:04:00
95545    31636    520    2017-06-06 20:06:00    2017-06-06 20:06:00
95546    31636    664    2017-06-06 04:24:00    2017-06-06 04:24:00
95547    31636    683    2017-06-06 20:34:00    2017-06-06 20:34:00
95548    31636    619    2017-06-06 04:50:00    2017-06-06 04:50:00
95549    31636    481    2017-06-06 11:57:00    2017-06-06 11:57:00
95550    31637    725    2017-06-06 04:47:00    2017-06-06 04:47:00
95551    31637    618    2017-06-06 06:01:00    2017-06-06 06:01:00
95552    31637    637    2017-06-06 23:14:00    2017-06-06 23:14:00
95553    31637    840    2017-06-06 12:00:00    2017-06-06 12:00:00
95554    31637    890    2017-06-06 04:03:00    2017-06-06 04:03:00
95555    31638    724    2017-06-06 08:26:00    2017-06-06 08:26:00
95556    31638    884    2017-06-06 16:11:00    2017-06-06 16:11:00
95557    31638    945    2017-06-06 05:26:00    2017-06-06 05:26:00
95558    31638    875    2017-06-06 22:26:00    2017-06-06 22:26:00
95559    31638    838    2017-06-06 18:43:00    2017-06-06 18:43:00
95560    31639    951    2017-06-06 20:40:00    2017-06-06 20:40:00
95561    31639    569    2017-06-06 08:32:00    2017-06-06 08:32:00
95562    31639    911    2017-06-06 11:26:00    2017-06-06 11:26:00
95563    31639    780    2017-06-06 09:44:00    2017-06-06 09:44:00
95564    31639    516    2017-06-06 23:24:00    2017-06-06 23:24:00
95565    31640    768    2017-06-06 02:02:00    2017-06-06 02:02:00
95566    31640    685    2017-06-06 19:24:00    2017-06-06 19:24:00
95567    31640    494    2017-06-06 02:45:00    2017-06-06 02:45:00
95568    31640    725    2017-06-06 17:02:00    2017-06-06 17:02:00
95569    31640    819    2017-06-06 01:17:00    2017-06-06 01:17:00
95570    31641    523    2017-06-06 05:25:00    2017-06-06 05:25:00
95571    31641    710    2017-06-06 03:52:00    2017-06-06 03:52:00
95572    31641    542    2017-06-06 15:53:00    2017-06-06 15:53:00
95573    31641    497    2017-06-06 01:27:00    2017-06-06 01:27:00
95574    31641    564    2017-06-06 23:45:00    2017-06-06 23:45:00
95575    31642    943    2017-06-06 01:48:00    2017-06-06 01:48:00
95576    31642    864    2017-06-06 06:25:00    2017-06-06 06:25:00
95577    31642    618    2017-06-06 20:00:00    2017-06-06 20:00:00
95578    31642    566    2017-06-06 03:34:00    2017-06-06 03:34:00
95579    31642    919    2017-06-06 11:20:00    2017-06-06 11:20:00
95580    31643    464    2017-06-06 03:43:00    2017-06-06 03:43:00
95581    31643    562    2017-06-06 12:14:00    2017-06-06 12:14:00
95582    31643    899    2017-06-06 06:00:00    2017-06-06 06:00:00
95583    31643    542    2017-06-06 09:55:00    2017-06-06 09:55:00
95584    31643    926    2017-06-06 09:10:00    2017-06-06 09:10:00
95585    31644    482    2017-06-06 04:00:00    2017-06-06 04:00:00
95586    31644    513    2017-06-06 07:28:00    2017-06-06 07:28:00
95587    31644    849    2017-06-06 11:20:00    2017-06-06 11:20:00
95588    31644    752    2017-06-06 01:08:00    2017-06-06 01:08:00
95589    31644    683    2017-06-06 13:53:00    2017-06-06 13:53:00
95590    31645    572    2017-06-06 09:49:00    2017-06-06 09:49:00
95591    31645    683    2017-06-06 03:35:00    2017-06-06 03:35:00
95592    31645    558    2017-06-06 15:26:00    2017-06-06 15:26:00
95593    31645    684    2017-06-06 07:15:00    2017-06-06 07:15:00
95594    31645    818    2017-06-06 17:55:00    2017-06-06 17:55:00
95595    31646    933    2017-06-06 06:27:00    2017-06-06 06:27:00
95596    31646    542    2017-06-06 06:33:00    2017-06-06 06:33:00
95597    31646    800    2017-06-06 13:45:00    2017-06-06 13:45:00
95598    31646    629    2017-06-06 10:52:00    2017-06-06 10:52:00
95599    31646    478    2017-06-06 09:06:00    2017-06-06 09:06:00
95600    31647    831    2017-06-06 01:15:00    2017-06-06 01:15:00
95601    31647    620    2017-06-06 21:35:00    2017-06-06 21:35:00
95602    31647    819    2017-06-06 16:59:00    2017-06-06 16:59:00
95603    31647    603    2017-06-06 16:02:00    2017-06-06 16:02:00
95604    31647    487    2017-06-06 04:18:00    2017-06-06 04:18:00
95605    31648    701    2017-06-06 05:38:00    2017-06-06 05:38:00
95606    31648    604    2017-06-06 22:01:00    2017-06-06 22:01:00
95607    31648    601    2017-06-06 02:18:00    2017-06-06 02:18:00
95608    31648    565    2017-06-06 12:13:00    2017-06-06 12:13:00
95609    31648    651    2017-06-06 16:28:00    2017-06-06 16:28:00
95610    31649    848    2017-06-06 22:12:00    2017-06-06 22:12:00
95611    31649    681    2017-06-06 16:33:00    2017-06-06 16:33:00
95612    31649    562    2017-06-06 12:19:00    2017-06-06 12:19:00
95613    31649    702    2017-06-06 14:27:00    2017-06-06 14:27:00
95614    31649    798    2017-06-06 19:13:00    2017-06-06 19:13:00
95615    31650    884    2017-06-06 20:53:00    2017-06-06 20:53:00
95616    31650    959    2017-06-06 08:16:00    2017-06-06 08:16:00
95617    31650    688    2017-06-06 18:13:00    2017-06-06 18:13:00
95618    31650    666    2017-06-06 10:13:00    2017-06-06 10:13:00
95619    31650    586    2017-06-06 20:00:00    2017-06-06 20:00:00
95620    31651    620    2017-06-06 03:42:00    2017-06-06 03:42:00
95621    31651    683    2017-06-06 09:42:00    2017-06-06 09:42:00
95622    31651    608    2017-06-06 10:33:00    2017-06-06 10:33:00
95623    31651    800    2017-06-06 05:51:00    2017-06-06 05:51:00
95624    31651    745    2017-06-06 19:09:00    2017-06-06 19:09:00
95625    31652    725    2017-06-06 15:44:00    2017-06-06 15:44:00
95626    31652    698    2017-06-06 03:55:00    2017-06-06 03:55:00
95627    31652    600    2017-06-06 06:43:00    2017-06-06 06:43:00
95628    31652    655    2017-06-06 21:07:00    2017-06-06 21:07:00
95629    31652    604    2017-06-06 13:40:00    2017-06-06 13:40:00
95630    31653    940    2017-06-06 03:58:00    2017-06-06 03:58:00
95631    31653    603    2017-06-06 14:00:00    2017-06-06 14:00:00
95632    31653    752    2017-06-06 20:16:00    2017-06-06 20:16:00
95633    31653    751    2017-06-06 17:09:00    2017-06-06 17:09:00
95634    31653    517    2017-06-06 16:18:00    2017-06-06 16:18:00
95635    31654    889    2017-06-06 18:38:00    2017-06-06 18:38:00
95636    31654    533    2017-06-06 19:47:00    2017-06-06 19:47:00
95637    31654    881    2017-06-06 18:47:00    2017-06-06 18:47:00
95638    31654    640    2017-06-06 19:13:00    2017-06-06 19:13:00
95639    31654    485    2017-06-06 07:26:00    2017-06-06 07:26:00
95640    31655    670    2017-06-06 03:02:00    2017-06-06 03:02:00
95641    31655    584    2017-06-06 17:52:00    2017-06-06 17:52:00
95642    31655    620    2017-06-06 10:12:00    2017-06-06 10:12:00
95643    31655    848    2017-06-06 13:03:00    2017-06-06 13:03:00
95644    31655    961    2017-06-06 02:09:00    2017-06-06 02:09:00
95645    31656    939    2017-06-06 22:33:00    2017-06-06 22:33:00
95646    31656    792    2017-06-06 21:16:00    2017-06-06 21:16:00
95647    31656    906    2017-06-06 09:22:00    2017-06-06 09:22:00
95648    31656    495    2017-06-06 06:48:00    2017-06-06 06:48:00
95649    31656    779    2017-06-06 18:41:00    2017-06-06 18:41:00
95650    31657    709    2017-06-06 06:26:00    2017-06-06 06:26:00
95651    31657    794    2017-06-06 21:24:00    2017-06-06 21:24:00
95652    31657    687    2017-06-06 17:55:00    2017-06-06 17:55:00
95653    31657    890    2017-06-06 07:06:00    2017-06-06 07:06:00
95654    31657    952    2017-06-06 10:17:00    2017-06-06 10:17:00
95655    31658    653    2017-06-06 23:24:00    2017-06-06 23:24:00
95656    31658    848    2017-06-06 01:57:00    2017-06-06 01:57:00
95657    31658    532    2017-06-06 14:28:00    2017-06-06 14:28:00
95658    31658    736    2017-06-06 12:40:00    2017-06-06 12:40:00
95659    31658    916    2017-06-06 08:04:00    2017-06-06 08:04:00
95660    31659    513    2017-06-06 06:12:00    2017-06-06 06:12:00
95661    31659    878    2017-06-06 08:45:00    2017-06-06 08:45:00
95662    31659    800    2017-06-06 10:38:00    2017-06-06 10:38:00
95663    31659    944    2017-06-06 21:51:00    2017-06-06 21:51:00
95664    31659    850    2017-06-06 20:08:00    2017-06-06 20:08:00
95665    31660    480    2017-06-07 07:07:00    2017-06-07 07:07:00
95666    31660    905    2017-06-07 11:06:00    2017-06-07 11:06:00
95667    31660    540    2017-06-07 03:00:00    2017-06-07 03:00:00
95668    31660    746    2017-06-07 19:31:00    2017-06-07 19:31:00
95669    31660    565    2017-06-07 18:01:00    2017-06-07 18:01:00
95670    31661    718    2017-06-07 21:45:00    2017-06-07 21:45:00
95671    31661    698    2017-06-07 21:45:00    2017-06-07 21:45:00
95672    31661    712    2017-06-07 08:09:00    2017-06-07 08:09:00
95673    31661    890    2017-06-07 05:29:00    2017-06-07 05:29:00
95674    31661    512    2017-06-07 10:19:00    2017-06-07 10:19:00
95675    31662    541    2017-06-07 21:00:00    2017-06-07 21:00:00
95676    31662    930    2017-06-07 19:57:00    2017-06-07 19:57:00
95677    31662    532    2017-06-07 17:29:00    2017-06-07 17:29:00
95678    31662    896    2017-06-07 18:00:00    2017-06-07 18:00:00
95679    31662    540    2017-06-07 09:09:00    2017-06-07 09:09:00
95680    31663    525    2017-06-07 10:51:00    2017-06-07 10:51:00
95681    31663    616    2017-06-07 11:24:00    2017-06-07 11:24:00
95682    31663    560    2017-06-07 15:02:00    2017-06-07 15:02:00
95683    31663    754    2017-06-07 22:21:00    2017-06-07 22:21:00
95684    31663    669    2017-06-07 04:01:00    2017-06-07 04:01:00
95685    31664    814    2017-06-07 11:09:00    2017-06-07 11:09:00
95686    31664    919    2017-06-07 19:33:00    2017-06-07 19:33:00
95687    31664    563    2017-06-07 23:17:00    2017-06-07 23:17:00
95688    31664    465    2017-06-07 11:56:00    2017-06-07 11:56:00
95689    31664    748    2017-06-07 05:37:00    2017-06-07 05:37:00
95690    31665    725    2017-06-07 10:08:00    2017-06-07 10:08:00
95691    31665    811    2017-06-07 05:50:00    2017-06-07 05:50:00
95692    31665    910    2017-06-07 05:34:00    2017-06-07 05:34:00
95693    31665    669    2017-06-07 06:07:00    2017-06-07 06:07:00
95694    31665    901    2017-06-07 09:46:00    2017-06-07 09:46:00
95695    31666    607    2017-06-07 16:04:00    2017-06-07 16:04:00
95696    31666    790    2017-06-07 08:30:00    2017-06-07 08:30:00
95697    31666    949    2017-06-07 15:58:00    2017-06-07 15:58:00
95698    31666    608    2017-06-07 09:45:00    2017-06-07 09:45:00
95699    31666    891    2017-06-07 16:35:00    2017-06-07 16:35:00
95700    31667    771    2017-06-07 20:08:00    2017-06-07 20:08:00
95701    31667    764    2017-06-07 05:31:00    2017-06-07 05:31:00
95702    31667    767    2017-06-07 11:27:00    2017-06-07 11:27:00
95703    31667    673    2017-06-07 21:13:00    2017-06-07 21:13:00
95704    31667    816    2017-06-07 07:22:00    2017-06-07 07:22:00
95705    31668    730    2017-06-07 23:31:00    2017-06-07 23:31:00
95706    31668    684    2017-06-07 13:49:00    2017-06-07 13:49:00
95707    31668    595    2017-06-07 03:08:00    2017-06-07 03:08:00
95708    31668    820    2017-06-07 23:42:00    2017-06-07 23:42:00
95709    31668    618    2017-06-07 02:09:00    2017-06-07 02:09:00
95710    31669    497    2017-06-07 02:28:00    2017-06-07 02:28:00
95711    31669    740    2017-06-07 23:55:00    2017-06-07 23:55:00
95712    31669    771    2017-06-07 14:20:00    2017-06-07 14:20:00
95713    31669    757    2017-06-07 07:21:00    2017-06-07 07:21:00
95714    31669    871    2017-06-07 03:56:00    2017-06-07 03:56:00
95715    31670    601    2017-06-07 18:48:00    2017-06-07 18:48:00
95716    31670    808    2017-06-07 12:24:00    2017-06-07 12:24:00
95717    31670    853    2017-06-07 21:00:00    2017-06-07 21:00:00
95718    31670    813    2017-06-07 06:54:00    2017-06-07 06:54:00
95719    31670    765    2017-06-07 04:14:00    2017-06-07 04:14:00
95720    31671    468    2017-06-07 23:29:00    2017-06-07 23:29:00
95721    31671    599    2017-06-07 22:08:00    2017-06-07 22:08:00
95722    31671    714    2017-06-07 23:03:00    2017-06-07 23:03:00
95723    31671    558    2017-06-07 18:14:00    2017-06-07 18:14:00
95724    31671    473    2017-06-07 19:28:00    2017-06-07 19:28:00
95725    31672    502    2017-06-07 18:08:00    2017-06-07 18:08:00
95726    31672    730    2017-06-07 02:11:00    2017-06-07 02:11:00
95727    31672    729    2017-06-07 06:44:00    2017-06-07 06:44:00
95728    31672    820    2017-06-07 02:48:00    2017-06-07 02:48:00
95729    31672    948    2017-06-07 22:18:00    2017-06-07 22:18:00
95730    31673    501    2017-06-07 03:06:00    2017-06-07 03:06:00
95731    31673    835    2017-06-07 10:04:00    2017-06-07 10:04:00
95732    31673    595    2017-06-07 14:53:00    2017-06-07 14:53:00
95733    31673    592    2017-06-07 01:29:00    2017-06-07 01:29:00
95734    31673    778    2017-06-07 12:30:00    2017-06-07 12:30:00
95735    31674    534    2017-06-07 18:05:00    2017-06-07 18:05:00
95736    31674    958    2017-06-07 01:16:00    2017-06-07 01:16:00
95737    31674    754    2017-06-07 13:41:00    2017-06-07 13:41:00
95738    31674    625    2017-06-07 03:42:00    2017-06-07 03:42:00
95739    31674    844    2017-06-07 23:44:00    2017-06-07 23:44:00
95740    31675    636    2017-06-07 06:16:00    2017-06-07 06:16:00
95741    31675    945    2017-06-07 02:14:00    2017-06-07 02:14:00
95742    31675    535    2017-06-07 14:19:00    2017-06-07 14:19:00
95743    31675    893    2017-06-07 14:41:00    2017-06-07 14:41:00
95744    31675    937    2017-06-07 22:41:00    2017-06-07 22:41:00
95745    31676    588    2017-06-07 01:57:00    2017-06-07 01:57:00
95746    31676    891    2017-06-07 07:05:00    2017-06-07 07:05:00
95747    31676    660    2017-06-07 19:41:00    2017-06-07 19:41:00
95748    31676    764    2017-06-07 06:42:00    2017-06-07 06:42:00
95749    31676    714    2017-06-07 20:22:00    2017-06-07 20:22:00
95750    31677    865    2017-06-07 18:21:00    2017-06-07 18:21:00
95751    31677    859    2017-06-07 08:34:00    2017-06-07 08:34:00
95752    31677    586    2017-06-07 02:25:00    2017-06-07 02:25:00
95753    31677    641    2017-06-07 10:35:00    2017-06-07 10:35:00
95754    31677    595    2017-06-07 18:07:00    2017-06-07 18:07:00
95755    31678    507    2017-06-07 22:50:00    2017-06-07 22:50:00
95756    31678    828    2017-06-07 18:53:00    2017-06-07 18:53:00
95757    31678    954    2017-06-07 08:41:00    2017-06-07 08:41:00
95758    31678    850    2017-06-07 19:57:00    2017-06-07 19:57:00
95759    31678    678    2017-06-07 16:42:00    2017-06-07 16:42:00
95760    31679    863    2017-06-07 08:18:00    2017-06-07 08:18:00
95761    31679    561    2017-06-07 22:20:00    2017-06-07 22:20:00
95762    31679    866    2017-06-07 09:37:00    2017-06-07 09:37:00
95763    31679    491    2017-06-07 02:31:00    2017-06-07 02:31:00
95764    31679    760    2017-06-07 05:35:00    2017-06-07 05:35:00
95765    31680    725    2017-06-07 16:00:00    2017-06-07 16:00:00
95766    31680    855    2017-06-07 08:46:00    2017-06-07 08:46:00
95767    31680    672    2017-06-07 13:40:00    2017-06-07 13:40:00
95768    31680    683    2017-06-07 02:09:00    2017-06-07 02:09:00
95769    31680    901    2017-06-07 18:50:00    2017-06-07 18:50:00
95770    31681    475    2017-06-07 17:07:00    2017-06-07 17:07:00
95771    31681    587    2017-06-07 01:06:00    2017-06-07 01:06:00
95772    31681    814    2017-06-07 23:29:00    2017-06-07 23:29:00
95773    31681    720    2017-06-07 06:47:00    2017-06-07 06:47:00
95774    31681    569    2017-06-07 12:40:00    2017-06-07 12:40:00
95775    31682    583    2017-06-07 04:03:00    2017-06-07 04:03:00
95776    31682    808    2017-06-07 15:04:00    2017-06-07 15:04:00
95777    31682    725    2017-06-07 17:48:00    2017-06-07 17:48:00
95778    31682    631    2017-06-07 10:04:00    2017-06-07 10:04:00
95779    31682    714    2017-06-07 23:17:00    2017-06-07 23:17:00
95780    31683    940    2017-06-07 11:32:00    2017-06-07 11:32:00
95781    31683    877    2017-06-07 23:22:00    2017-06-07 23:22:00
95782    31683    479    2017-06-07 11:36:00    2017-06-07 11:36:00
95783    31683    850    2017-06-07 16:38:00    2017-06-07 16:38:00
95784    31683    636    2017-06-07 10:57:00    2017-06-07 10:57:00
95785    31684    561    2017-06-07 23:19:00    2017-06-07 23:19:00
95786    31684    841    2017-06-07 20:48:00    2017-06-07 20:48:00
95787    31684    724    2017-06-07 15:24:00    2017-06-07 15:24:00
95788    31684    712    2017-06-07 16:36:00    2017-06-07 16:36:00
95789    31684    535    2017-06-07 10:04:00    2017-06-07 10:04:00
95790    31685    901    2017-06-07 19:46:00    2017-06-07 19:46:00
95791    31685    510    2017-06-07 12:41:00    2017-06-07 12:41:00
95792    31685    600    2017-06-07 12:04:00    2017-06-07 12:04:00
95793    31685    860    2017-06-07 11:16:00    2017-06-07 11:16:00
95794    31685    900    2017-06-07 03:23:00    2017-06-07 03:23:00
95795    31686    853    2017-06-07 20:23:00    2017-06-07 20:23:00
95796    31686    920    2017-06-07 15:23:00    2017-06-07 15:23:00
95797    31686    906    2017-06-07 20:25:00    2017-06-07 20:25:00
95798    31686    619    2017-06-07 04:39:00    2017-06-07 04:39:00
95799    31686    573    2017-06-07 01:53:00    2017-06-07 01:53:00
95800    31687    945    2017-06-07 10:06:00    2017-06-07 10:06:00
95801    31687    695    2017-06-07 03:49:00    2017-06-07 03:49:00
95802    31687    871    2017-06-07 05:43:00    2017-06-07 05:43:00
95803    31687    949    2017-06-07 11:14:00    2017-06-07 11:14:00
95804    31687    500    2017-06-07 23:11:00    2017-06-07 23:11:00
95805    31688    910    2017-06-07 16:07:00    2017-06-07 16:07:00
95806    31688    553    2017-06-07 03:07:00    2017-06-07 03:07:00
95807    31688    910    2017-06-07 12:36:00    2017-06-07 12:36:00
95808    31688    909    2017-06-07 04:36:00    2017-06-07 04:36:00
95809    31688    677    2017-06-07 18:55:00    2017-06-07 18:55:00
95810    31689    753    2017-06-07 03:41:00    2017-06-07 03:41:00
95811    31689    650    2017-06-07 10:54:00    2017-06-07 10:54:00
95812    31689    796    2017-06-07 04:35:00    2017-06-07 04:35:00
95813    31689    772    2017-06-07 23:08:00    2017-06-07 23:08:00
95814    31689    629    2017-06-07 15:47:00    2017-06-07 15:47:00
95815    31690    673    2017-06-07 14:24:00    2017-06-07 14:24:00
95816    31690    575    2017-06-07 05:06:00    2017-06-07 05:06:00
95817    31690    648    2017-06-07 18:31:00    2017-06-07 18:31:00
95818    31690    812    2017-06-07 02:05:00    2017-06-07 02:05:00
95819    31690    501    2017-06-07 09:06:00    2017-06-07 09:06:00
95820    31691    688    2017-06-07 19:16:00    2017-06-07 19:16:00
95821    31691    752    2017-06-07 06:23:00    2017-06-07 06:23:00
95822    31691    684    2017-06-07 13:59:00    2017-06-07 13:59:00
95823    31691    655    2017-06-07 17:49:00    2017-06-07 17:49:00
95824    31691    555    2017-06-07 22:05:00    2017-06-07 22:05:00
95825    31692    694    2017-06-07 14:50:00    2017-06-07 14:50:00
95826    31692    700    2017-06-07 11:24:00    2017-06-07 11:24:00
95827    31692    703    2017-06-07 23:17:00    2017-06-07 23:17:00
95828    31692    694    2017-06-07 11:15:00    2017-06-07 11:15:00
95829    31692    553    2017-06-07 19:58:00    2017-06-07 19:58:00
95830    31693    899    2017-06-07 03:03:00    2017-06-07 03:03:00
95831    31693    595    2017-06-07 20:54:00    2017-06-07 20:54:00
95832    31693    592    2017-06-07 11:20:00    2017-06-07 11:20:00
95833    31693    680    2017-06-07 05:43:00    2017-06-07 05:43:00
95834    31693    929    2017-06-07 14:17:00    2017-06-07 14:17:00
95835    31694    664    2017-06-07 15:59:00    2017-06-07 15:59:00
95836    31694    762    2017-06-07 04:14:00    2017-06-07 04:14:00
95837    31694    501    2017-06-07 08:19:00    2017-06-07 08:19:00
95838    31694    735    2017-06-07 19:08:00    2017-06-07 19:08:00
95839    31694    821    2017-06-07 12:00:00    2017-06-07 12:00:00
95840    31695    743    2017-06-07 08:51:00    2017-06-07 08:51:00
95841    31695    701    2017-06-07 11:30:00    2017-06-07 11:30:00
95842    31695    682    2017-06-07 19:56:00    2017-06-07 19:56:00
95843    31695    897    2017-06-07 17:49:00    2017-06-07 17:49:00
95844    31695    915    2017-06-07 11:55:00    2017-06-07 11:55:00
95845    31696    543    2017-06-07 17:22:00    2017-06-07 17:22:00
95846    31696    647    2017-06-07 06:42:00    2017-06-07 06:42:00
95847    31696    845    2017-06-07 16:35:00    2017-06-07 16:35:00
95848    31696    904    2017-06-07 02:23:00    2017-06-07 02:23:00
95849    31696    552    2017-06-07 15:08:00    2017-06-07 15:08:00
95850    31697    854    2017-06-07 16:02:00    2017-06-07 16:02:00
95851    31697    897    2017-06-07 01:03:00    2017-06-07 01:03:00
95852    31697    701    2017-06-07 17:48:00    2017-06-07 17:48:00
95853    31697    526    2017-06-07 12:27:00    2017-06-07 12:27:00
95854    31697    547    2017-06-07 11:16:00    2017-06-07 11:16:00
95855    31698    552    2017-06-07 08:03:00    2017-06-07 08:03:00
95856    31698    778    2017-06-07 18:02:00    2017-06-07 18:02:00
95857    31698    526    2017-06-07 09:43:00    2017-06-07 09:43:00
95858    31698    721    2017-06-07 12:58:00    2017-06-07 12:58:00
95859    31698    807    2017-06-07 23:02:00    2017-06-07 23:02:00
95860    31699    937    2017-06-07 15:00:00    2017-06-07 15:00:00
95861    31699    589    2017-06-07 12:13:00    2017-06-07 12:13:00
95862    31699    619    2017-06-07 01:47:00    2017-06-07 01:47:00
95863    31699    548    2017-06-07 11:48:00    2017-06-07 11:48:00
95864    31699    639    2017-06-07 07:46:00    2017-06-07 07:46:00
95865    31700    528    2017-06-07 19:25:00    2017-06-07 19:25:00
95866    31700    897    2017-06-07 02:40:00    2017-06-07 02:40:00
95867    31700    514    2017-06-07 04:05:00    2017-06-07 04:05:00
95868    31700    541    2017-06-07 18:18:00    2017-06-07 18:18:00
95869    31700    724    2017-06-07 19:33:00    2017-06-07 19:33:00
95870    31701    688    2017-06-07 05:53:00    2017-06-07 05:53:00
95871    31701    789    2017-06-07 20:25:00    2017-06-07 20:25:00
95872    31701    909    2017-06-07 16:00:00    2017-06-07 16:00:00
95873    31701    802    2017-06-07 20:37:00    2017-06-07 20:37:00
95874    31701    663    2017-06-07 23:23:00    2017-06-07 23:23:00
95875    31702    939    2017-06-07 03:15:00    2017-06-07 03:15:00
95876    31702    588    2017-06-07 12:44:00    2017-06-07 12:44:00
95877    31702    572    2017-06-07 18:47:00    2017-06-07 18:47:00
95878    31702    784    2017-06-07 15:14:00    2017-06-07 15:14:00
95879    31702    535    2017-06-07 20:52:00    2017-06-07 20:52:00
95880    31703    873    2017-06-07 12:33:00    2017-06-07 12:33:00
95881    31703    800    2017-06-07 23:08:00    2017-06-07 23:08:00
95882    31703    639    2017-06-07 04:09:00    2017-06-07 04:09:00
95883    31703    608    2017-06-07 09:48:00    2017-06-07 09:48:00
95884    31703    632    2017-06-07 07:32:00    2017-06-07 07:32:00
95885    31704    530    2017-06-07 22:31:00    2017-06-07 22:31:00
95886    31704    929    2017-06-07 03:04:00    2017-06-07 03:04:00
95887    31704    784    2017-06-07 08:00:00    2017-06-07 08:00:00
95888    31704    563    2017-06-07 18:47:00    2017-06-07 18:47:00
95889    31704    587    2017-06-07 20:00:00    2017-06-07 20:00:00
95890    31705    510    2017-06-07 01:56:00    2017-06-07 01:56:00
95891    31705    919    2017-06-07 15:31:00    2017-06-07 15:31:00
95892    31705    535    2017-06-07 09:29:00    2017-06-07 09:29:00
95893    31705    486    2017-06-07 13:19:00    2017-06-07 13:19:00
95894    31705    810    2017-06-07 14:30:00    2017-06-07 14:30:00
95895    31706    774    2017-06-07 21:59:00    2017-06-07 21:59:00
95896    31706    802    2017-06-07 02:48:00    2017-06-07 02:48:00
95897    31706    587    2017-06-07 02:00:00    2017-06-07 02:00:00
95898    31706    755    2017-06-07 12:31:00    2017-06-07 12:31:00
95899    31706    770    2017-06-07 05:48:00    2017-06-07 05:48:00
95900    31707    917    2017-06-07 15:22:00    2017-06-07 15:22:00
95901    31707    585    2017-06-07 14:47:00    2017-06-07 14:47:00
95902    31707    916    2017-06-07 07:42:00    2017-06-07 07:42:00
95903    31707    699    2017-06-07 20:03:00    2017-06-07 20:03:00
95904    31707    720    2017-06-07 11:29:00    2017-06-07 11:29:00
95905    31708    491    2017-06-07 04:49:00    2017-06-07 04:49:00
95906    31708    610    2017-06-07 09:48:00    2017-06-07 09:48:00
95907    31708    582    2017-06-07 12:57:00    2017-06-07 12:57:00
95908    31708    679    2017-06-07 16:41:00    2017-06-07 16:41:00
95909    31708    809    2017-06-07 12:57:00    2017-06-07 12:57:00
95910    31709    831    2017-06-07 17:49:00    2017-06-07 17:49:00
95911    31709    543    2017-06-07 13:15:00    2017-06-07 13:15:00
95912    31709    523    2017-06-07 06:46:00    2017-06-07 06:46:00
95913    31709    713    2017-06-07 03:28:00    2017-06-07 03:28:00
95914    31709    874    2017-06-07 11:59:00    2017-06-07 11:59:00
95915    31710    622    2017-06-07 19:24:00    2017-06-07 19:24:00
95916    31710    666    2017-06-07 01:21:00    2017-06-07 01:21:00
95917    31710    796    2017-06-07 18:42:00    2017-06-07 18:42:00
95918    31710    810    2017-06-07 20:46:00    2017-06-07 20:46:00
95919    31710    862    2017-06-07 16:31:00    2017-06-07 16:31:00
95920    31711    726    2017-06-07 06:24:00    2017-06-07 06:24:00
95921    31711    941    2017-06-07 23:39:00    2017-06-07 23:39:00
95922    31711    809    2017-06-07 15:02:00    2017-06-07 15:02:00
95923    31711    573    2017-06-07 08:55:00    2017-06-07 08:55:00
95924    31711    789    2017-06-07 18:48:00    2017-06-07 18:48:00
95925    31712    948    2017-06-07 19:50:00    2017-06-07 19:50:00
95926    31712    937    2017-06-07 22:22:00    2017-06-07 22:22:00
95927    31712    675    2017-06-07 09:58:00    2017-06-07 09:58:00
95928    31712    562    2017-06-07 16:47:00    2017-06-07 16:47:00
95929    31712    502    2017-06-07 16:15:00    2017-06-07 16:15:00
95930    31713    472    2017-06-07 08:05:00    2017-06-07 08:05:00
95931    31713    538    2017-06-07 15:47:00    2017-06-07 15:47:00
95932    31713    659    2017-06-07 01:32:00    2017-06-07 01:32:00
95933    31713    704    2017-06-07 16:21:00    2017-06-07 16:21:00
95934    31713    490    2017-06-07 14:56:00    2017-06-07 14:56:00
95935    31714    831    2017-06-07 09:30:00    2017-06-07 09:30:00
95936    31714    508    2017-06-07 17:32:00    2017-06-07 17:32:00
95937    31714    849    2017-06-07 23:36:00    2017-06-07 23:36:00
95938    31714    874    2017-06-07 14:18:00    2017-06-07 14:18:00
95939    31714    864    2017-06-07 19:27:00    2017-06-07 19:27:00
95940    31715    829    2017-06-07 22:11:00    2017-06-07 22:11:00
95941    31715    870    2017-06-07 17:05:00    2017-06-07 17:05:00
95942    31715    467    2017-06-07 19:42:00    2017-06-07 19:42:00
95943    31715    821    2017-06-07 23:13:00    2017-06-07 23:13:00
95944    31715    853    2017-06-07 03:17:00    2017-06-07 03:17:00
95945    31716    532    2017-06-07 06:42:00    2017-06-07 06:42:00
95946    31716    688    2017-06-07 19:09:00    2017-06-07 19:09:00
95947    31716    466    2017-06-07 19:28:00    2017-06-07 19:28:00
95948    31716    850    2017-06-07 22:01:00    2017-06-07 22:01:00
95949    31716    864    2017-06-07 10:13:00    2017-06-07 10:13:00
95950    31717    484    2017-06-07 02:52:00    2017-06-07 02:52:00
95951    31717    833    2017-06-07 15:11:00    2017-06-07 15:11:00
95952    31717    558    2017-06-07 18:16:00    2017-06-07 18:16:00
95953    31717    844    2017-06-07 17:44:00    2017-06-07 17:44:00
95954    31717    495    2017-06-07 05:16:00    2017-06-07 05:16:00
95955    31718    495    2017-06-07 21:35:00    2017-06-07 21:35:00
95956    31718    700    2017-06-07 10:38:00    2017-06-07 10:38:00
95957    31718    579    2017-06-07 20:42:00    2017-06-07 20:42:00
95958    31718    696    2017-06-07 16:26:00    2017-06-07 16:26:00
95959    31718    530    2017-06-07 07:31:00    2017-06-07 07:31:00
95960    31719    786    2017-06-07 04:57:00    2017-06-07 04:57:00
95961    31719    817    2017-06-07 13:32:00    2017-06-07 13:32:00
95962    31719    943    2017-06-07 10:36:00    2017-06-07 10:36:00
95963    31719    677    2017-06-07 03:00:00    2017-06-07 03:00:00
95964    31719    807    2017-06-07 07:21:00    2017-06-07 07:21:00
95965    31720    793    2017-06-07 13:27:00    2017-06-07 13:27:00
95966    31720    506    2017-06-07 16:51:00    2017-06-07 16:51:00
95967    31720    472    2017-06-07 07:56:00    2017-06-07 07:56:00
95968    31720    540    2017-06-07 21:26:00    2017-06-07 21:26:00
95969    31720    675    2017-06-07 08:20:00    2017-06-07 08:20:00
95970    31721    553    2017-06-07 18:38:00    2017-06-07 18:38:00
95971    31721    815    2017-06-07 01:56:00    2017-06-07 01:56:00
95972    31721    856    2017-06-07 06:21:00    2017-06-07 06:21:00
95973    31721    531    2017-06-07 16:48:00    2017-06-07 16:48:00
95974    31721    773    2017-06-07 20:45:00    2017-06-07 20:45:00
95975    31722    551    2017-06-07 17:02:00    2017-06-07 17:02:00
95976    31722    622    2017-06-07 18:16:00    2017-06-07 18:16:00
95977    31722    645    2017-06-07 04:56:00    2017-06-07 04:56:00
95978    31722    836    2017-06-07 11:33:00    2017-06-07 11:33:00
95979    31722    653    2017-06-07 10:41:00    2017-06-07 10:41:00
95980    31723    625    2017-06-07 17:11:00    2017-06-07 17:11:00
95981    31723    665    2017-06-07 18:14:00    2017-06-07 18:14:00
95982    31723    823    2017-06-07 11:57:00    2017-06-07 11:57:00
95983    31723    905    2017-06-07 09:17:00    2017-06-07 09:17:00
95984    31723    828    2017-06-07 11:09:00    2017-06-07 11:09:00
95985    31724    563    2017-06-07 17:40:00    2017-06-07 17:40:00
95986    31724    510    2017-06-07 18:56:00    2017-06-07 18:56:00
95987    31724    956    2017-06-07 05:57:00    2017-06-07 05:57:00
95988    31724    530    2017-06-07 06:28:00    2017-06-07 06:28:00
95989    31724    677    2017-06-07 07:43:00    2017-06-07 07:43:00
95990    31725    540    2017-06-07 09:17:00    2017-06-07 09:17:00
95991    31725    935    2017-06-07 15:58:00    2017-06-07 15:58:00
95992    31725    670    2017-06-07 15:03:00    2017-06-07 15:03:00
95993    31725    567    2017-06-07 10:20:00    2017-06-07 10:20:00
95994    31725    954    2017-06-07 09:59:00    2017-06-07 09:59:00
95995    31726    538    2017-06-07 09:05:00    2017-06-07 09:05:00
95996    31726    870    2017-06-07 06:00:00    2017-06-07 06:00:00
95997    31726    816    2017-06-07 17:51:00    2017-06-07 17:51:00
95998    31726    735    2017-06-07 15:36:00    2017-06-07 15:36:00
95999    31726    569    2017-06-07 22:39:00    2017-06-07 22:39:00
96000    31727    772    2017-06-07 03:26:00    2017-06-07 03:26:00
96001    31727    468    2017-06-07 05:38:00    2017-06-07 05:38:00
96002    31727    925    2017-06-07 22:51:00    2017-06-07 22:51:00
96003    31727    605    2017-06-07 06:10:00    2017-06-07 06:10:00
96004    31727    632    2017-06-07 02:59:00    2017-06-07 02:59:00
96005    31728    812    2017-06-07 08:23:00    2017-06-07 08:23:00
96006    31728    726    2017-06-07 03:15:00    2017-06-07 03:15:00
96007    31728    846    2017-06-07 11:47:00    2017-06-07 11:47:00
96008    31728    611    2017-06-07 05:35:00    2017-06-07 05:35:00
96009    31728    542    2017-06-07 09:34:00    2017-06-07 09:34:00
96010    31729    892    2017-06-07 22:08:00    2017-06-07 22:08:00
96011    31729    679    2017-06-07 08:31:00    2017-06-07 08:31:00
96012    31729    727    2017-06-07 16:21:00    2017-06-07 16:21:00
96013    31729    915    2017-06-07 01:07:00    2017-06-07 01:07:00
96014    31729    770    2017-06-07 12:08:00    2017-06-07 12:08:00
96015    31730    919    2017-06-07 07:53:00    2017-06-07 07:53:00
96016    31730    782    2017-06-07 14:55:00    2017-06-07 14:55:00
96017    31730    647    2017-06-07 20:43:00    2017-06-07 20:43:00
96018    31730    469    2017-06-07 11:58:00    2017-06-07 11:58:00
96019    31730    661    2017-06-07 12:27:00    2017-06-07 12:27:00
96020    31731    773    2017-06-07 16:23:00    2017-06-07 16:23:00
96021    31731    791    2017-06-07 20:46:00    2017-06-07 20:46:00
96022    31731    684    2017-06-07 10:00:00    2017-06-07 10:00:00
96023    31731    805    2017-06-07 15:28:00    2017-06-07 15:28:00
96024    31731    777    2017-06-07 18:57:00    2017-06-07 18:57:00
96025    31732    913    2017-06-07 13:27:00    2017-06-07 13:27:00
96026    31732    854    2017-06-07 15:50:00    2017-06-07 15:50:00
96027    31732    513    2017-06-07 14:22:00    2017-06-07 14:22:00
96028    31732    493    2017-06-07 16:46:00    2017-06-07 16:46:00
96029    31732    910    2017-06-07 11:34:00    2017-06-07 11:34:00
96030    31733    843    2017-06-07 22:45:00    2017-06-07 22:45:00
96031    31733    831    2017-06-07 13:23:00    2017-06-07 13:23:00
96032    31733    581    2017-06-07 21:25:00    2017-06-07 21:25:00
96033    31733    695    2017-06-07 13:34:00    2017-06-07 13:34:00
96034    31733    706    2017-06-07 14:49:00    2017-06-07 14:49:00
96035    31734    708    2017-06-07 09:17:00    2017-06-07 09:17:00
96036    31734    886    2017-06-07 06:19:00    2017-06-07 06:19:00
96037    31734    505    2017-06-07 08:52:00    2017-06-07 08:52:00
96038    31734    588    2017-06-07 02:53:00    2017-06-07 02:53:00
96039    31734    945    2017-06-07 17:38:00    2017-06-07 17:38:00
96040    31735    938    2017-06-07 10:51:00    2017-06-07 10:51:00
96041    31735    588    2017-06-07 11:18:00    2017-06-07 11:18:00
96042    31735    808    2017-06-07 19:50:00    2017-06-07 19:50:00
96043    31735    866    2017-06-07 02:50:00    2017-06-07 02:50:00
96044    31735    662    2017-06-07 10:00:00    2017-06-07 10:00:00
96045    31736    621    2017-06-07 03:37:00    2017-06-07 03:37:00
96046    31736    544    2017-06-07 16:01:00    2017-06-07 16:01:00
96047    31736    776    2017-06-07 11:01:00    2017-06-07 11:01:00
96048    31736    932    2017-06-07 23:30:00    2017-06-07 23:30:00
96049    31736    645    2017-06-07 19:00:00    2017-06-07 19:00:00
96050    31737    726    2017-06-07 04:37:00    2017-06-07 04:37:00
96051    31737    807    2017-06-07 14:44:00    2017-06-07 14:44:00
96052    31737    674    2017-06-07 16:17:00    2017-06-07 16:17:00
96053    31737    596    2017-06-07 16:33:00    2017-06-07 16:33:00
96054    31737    869    2017-06-07 12:00:00    2017-06-07 12:00:00
96055    31738    688    2017-06-07 15:50:00    2017-06-07 15:50:00
96056    31738    957    2017-06-07 16:50:00    2017-06-07 16:50:00
96057    31738    768    2017-06-07 10:27:00    2017-06-07 10:27:00
96058    31738    728    2017-06-07 22:48:00    2017-06-07 22:48:00
96059    31738    808    2017-06-07 22:13:00    2017-06-07 22:13:00
96060    31739    934    2017-06-08 13:58:00    2017-06-08 13:58:00
96061    31739    955    2017-06-08 09:42:00    2017-06-08 09:42:00
96062    31739    564    2017-06-08 02:10:00    2017-06-08 02:10:00
96063    31739    695    2017-06-08 03:32:00    2017-06-08 03:32:00
96064    31739    518    2017-06-08 08:58:00    2017-06-08 08:58:00
96065    31740    955    2017-06-08 22:30:00    2017-06-08 22:30:00
96066    31740    703    2017-06-08 03:59:00    2017-06-08 03:59:00
96067    31740    863    2017-06-08 16:10:00    2017-06-08 16:10:00
96068    31740    549    2017-06-08 19:03:00    2017-06-08 19:03:00
96069    31740    570    2017-06-08 16:05:00    2017-06-08 16:05:00
96070    31741    673    2017-06-08 09:49:00    2017-06-08 09:49:00
96071    31741    665    2017-06-08 10:32:00    2017-06-08 10:32:00
96072    31741    507    2017-06-08 12:33:00    2017-06-08 12:33:00
96073    31741    543    2017-06-08 23:51:00    2017-06-08 23:51:00
96074    31741    868    2017-06-08 17:03:00    2017-06-08 17:03:00
96075    31742    725    2017-06-08 17:24:00    2017-06-08 17:24:00
96076    31742    514    2017-06-08 12:36:00    2017-06-08 12:36:00
96077    31742    941    2017-06-08 02:21:00    2017-06-08 02:21:00
96078    31742    549    2017-06-08 02:38:00    2017-06-08 02:38:00
96079    31742    625    2017-06-08 09:50:00    2017-06-08 09:50:00
96080    31743    641    2017-06-08 22:24:00    2017-06-08 22:24:00
96081    31743    731    2017-06-08 18:35:00    2017-06-08 18:35:00
96082    31743    724    2017-06-08 10:35:00    2017-06-08 10:35:00
96083    31743    760    2017-06-08 09:03:00    2017-06-08 09:03:00
96084    31743    769    2017-06-08 18:30:00    2017-06-08 18:30:00
96085    31744    891    2017-06-08 02:38:00    2017-06-08 02:38:00
96086    31744    812    2017-06-08 13:57:00    2017-06-08 13:57:00
96087    31744    645    2017-06-08 22:10:00    2017-06-08 22:10:00
96088    31744    742    2017-06-08 14:39:00    2017-06-08 14:39:00
96089    31744    797    2017-06-08 22:25:00    2017-06-08 22:25:00
96090    31745    939    2017-06-08 06:08:00    2017-06-08 06:08:00
96091    31745    742    2017-06-08 10:13:00    2017-06-08 10:13:00
96092    31745    507    2017-06-08 10:37:00    2017-06-08 10:37:00
96093    31745    889    2017-06-08 10:04:00    2017-06-08 10:04:00
96094    31745    895    2017-06-08 18:59:00    2017-06-08 18:59:00
96095    31746    541    2017-06-08 22:11:00    2017-06-08 22:11:00
96096    31746    647    2017-06-08 02:23:00    2017-06-08 02:23:00
96097    31746    857    2017-06-08 14:57:00    2017-06-08 14:57:00
96098    31746    705    2017-06-08 13:12:00    2017-06-08 13:12:00
96099    31746    674    2017-06-08 10:31:00    2017-06-08 10:31:00
96100    31747    758    2017-06-08 19:03:00    2017-06-08 19:03:00
96101    31747    907    2017-06-08 10:25:00    2017-06-08 10:25:00
96102    31747    610    2017-06-08 18:38:00    2017-06-08 18:38:00
96103    31747    746    2017-06-08 10:08:00    2017-06-08 10:08:00
96104    31747    722    2017-06-08 03:36:00    2017-06-08 03:36:00
96105    31748    741    2017-06-08 04:47:00    2017-06-08 04:47:00
96106    31748    548    2017-06-08 13:10:00    2017-06-08 13:10:00
96107    31748    721    2017-06-08 11:29:00    2017-06-08 11:29:00
96108    31748    914    2017-06-08 09:43:00    2017-06-08 09:43:00
96109    31748    576    2017-06-08 08:55:00    2017-06-08 08:55:00
96110    31749    731    2017-06-08 11:33:00    2017-06-08 11:33:00
96111    31749    804    2017-06-08 20:45:00    2017-06-08 20:45:00
96112    31749    849    2017-06-08 15:31:00    2017-06-08 15:31:00
96113    31749    813    2017-06-08 22:49:00    2017-06-08 22:49:00
96114    31749    938    2017-06-08 16:34:00    2017-06-08 16:34:00
96115    31750    524    2017-06-08 16:21:00    2017-06-08 16:21:00
96116    31750    696    2017-06-08 11:15:00    2017-06-08 11:15:00
96117    31750    872    2017-06-08 11:33:00    2017-06-08 11:33:00
96118    31750    717    2017-06-08 15:16:00    2017-06-08 15:16:00
96119    31750    617    2017-06-08 22:51:00    2017-06-08 22:51:00
96120    31751    534    2017-06-08 19:17:00    2017-06-08 19:17:00
96121    31751    819    2017-06-08 15:05:00    2017-06-08 15:05:00
96122    31751    558    2017-06-08 08:58:00    2017-06-08 08:58:00
96123    31751    579    2017-06-08 05:32:00    2017-06-08 05:32:00
96124    31751    803    2017-06-08 08:00:00    2017-06-08 08:00:00
96125    31752    713    2017-06-08 03:12:00    2017-06-08 03:12:00
96126    31752    776    2017-06-08 18:39:00    2017-06-08 18:39:00
96127    31752    701    2017-06-08 07:30:00    2017-06-08 07:30:00
96128    31752    774    2017-06-08 15:27:00    2017-06-08 15:27:00
96129    31752    616    2017-06-08 22:28:00    2017-06-08 22:28:00
96130    31753    499    2017-06-08 08:00:00    2017-06-08 08:00:00
96131    31753    928    2017-06-08 19:29:00    2017-06-08 19:29:00
96132    31753    915    2017-06-08 23:58:00    2017-06-08 23:58:00
96133    31753    535    2017-06-08 19:15:00    2017-06-08 19:15:00
96134    31753    737    2017-06-08 22:40:00    2017-06-08 22:40:00
96135    31754    490    2017-06-08 04:54:00    2017-06-08 04:54:00
96136    31754    687    2017-06-08 21:54:00    2017-06-08 21:54:00
96137    31754    678    2017-06-08 09:33:00    2017-06-08 09:33:00
96138    31754    490    2017-06-08 23:26:00    2017-06-08 23:26:00
96139    31754    853    2017-06-08 02:43:00    2017-06-08 02:43:00
96140    31755    825    2017-06-08 16:15:00    2017-06-08 16:15:00
96141    31755    556    2017-06-08 16:16:00    2017-06-08 16:16:00
96142    31755    794    2017-06-08 16:41:00    2017-06-08 16:41:00
96143    31755    956    2017-06-08 23:51:00    2017-06-08 23:51:00
96144    31755    701    2017-06-08 21:38:00    2017-06-08 21:38:00
96145    31756    697    2017-06-09 01:15:00    2017-06-09 01:15:00
96146    31756    512    2017-06-09 03:19:00    2017-06-09 03:19:00
96147    31756    639    2017-06-09 10:51:00    2017-06-09 10:51:00
96148    31756    844    2017-06-09 22:04:00    2017-06-09 22:04:00
96149    31756    705    2017-06-09 21:33:00    2017-06-09 21:33:00
96150    31757    803    2017-06-09 15:25:00    2017-06-09 15:25:00
96151    31757    563    2017-06-09 05:54:00    2017-06-09 05:54:00
96152    31757    763    2017-06-09 02:52:00    2017-06-09 02:52:00
96153    31757    544    2017-06-09 18:22:00    2017-06-09 18:22:00
96154    31757    930    2017-06-09 11:35:00    2017-06-09 11:35:00
96155    31758    834    2017-06-09 05:41:00    2017-06-09 05:41:00
96156    31758    654    2017-06-09 10:53:00    2017-06-09 10:53:00
96157    31758    736    2017-06-09 08:04:00    2017-06-09 08:04:00
96158    31758    502    2017-06-09 11:15:00    2017-06-09 11:15:00
96159    31758    902    2017-06-09 07:37:00    2017-06-09 07:37:00
96160    31759    734    2017-06-09 13:52:00    2017-06-09 13:52:00
96161    31759    472    2017-06-09 13:00:00    2017-06-09 13:00:00
96162    31759    533    2017-06-09 19:05:00    2017-06-09 19:05:00
96163    31759    505    2017-06-09 06:45:00    2017-06-09 06:45:00
96164    31759    646    2017-06-09 20:35:00    2017-06-09 20:35:00
96165    31760    905    2017-06-09 10:57:00    2017-06-09 10:57:00
96166    31760    493    2017-06-09 06:08:00    2017-06-09 06:08:00
96167    31760    514    2017-06-09 15:31:00    2017-06-09 15:31:00
96168    31760    866    2017-06-09 18:56:00    2017-06-09 18:56:00
96169    31760    813    2017-06-09 11:42:00    2017-06-09 11:42:00
96170    31761    613    2017-06-09 02:05:00    2017-06-09 02:05:00
96171    31761    761    2017-06-09 04:46:00    2017-06-09 04:46:00
96172    31761    959    2017-06-09 05:41:00    2017-06-09 05:41:00
96173    31761    637    2017-06-09 19:55:00    2017-06-09 19:55:00
96174    31761    474    2017-06-09 02:44:00    2017-06-09 02:44:00
96175    31762    800    2017-06-09 06:16:00    2017-06-09 06:16:00
96176    31762    835    2017-06-09 20:00:00    2017-06-09 20:00:00
96177    31762    898    2017-06-09 03:28:00    2017-06-09 03:28:00
96178    31762    791    2017-06-09 11:20:00    2017-06-09 11:20:00
96179    31762    611    2017-06-09 08:14:00    2017-06-09 08:14:00
96180    31763    914    2017-06-09 10:06:00    2017-06-09 10:06:00
96181    31763    808    2017-06-09 07:19:00    2017-06-09 07:19:00
96182    31763    765    2017-06-09 07:16:00    2017-06-09 07:16:00
96183    31763    927    2017-06-09 14:21:00    2017-06-09 14:21:00
96184    31763    919    2017-06-09 03:33:00    2017-06-09 03:33:00
96185    31764    518    2017-06-09 08:42:00    2017-06-09 08:42:00
96186    31764    563    2017-06-09 14:57:00    2017-06-09 14:57:00
96187    31764    878    2017-06-09 23:26:00    2017-06-09 23:26:00
96188    31764    703    2017-06-09 13:05:00    2017-06-09 13:05:00
96189    31764    536    2017-06-09 18:28:00    2017-06-09 18:28:00
96190    31765    909    2017-06-09 09:31:00    2017-06-09 09:31:00
96191    31765    728    2017-06-09 17:23:00    2017-06-09 17:23:00
96192    31765    950    2017-06-09 20:31:00    2017-06-09 20:31:00
96193    31765    737    2017-06-09 13:39:00    2017-06-09 13:39:00
96194    31765    472    2017-06-09 16:11:00    2017-06-09 16:11:00
96195    31766    744    2017-06-09 01:08:00    2017-06-09 01:08:00
96196    31766    669    2017-06-09 22:35:00    2017-06-09 22:35:00
96197    31766    911    2017-06-09 22:55:00    2017-06-09 22:55:00
96198    31766    937    2017-06-09 07:54:00    2017-06-09 07:54:00
96199    31766    792    2017-06-09 19:25:00    2017-06-09 19:25:00
96200    31767    645    2017-06-09 12:51:00    2017-06-09 12:51:00
96201    31767    623    2017-06-09 15:57:00    2017-06-09 15:57:00
96202    31767    517    2017-06-09 20:21:00    2017-06-09 20:21:00
96203    31767    957    2017-06-09 10:51:00    2017-06-09 10:51:00
96204    31767    676    2017-06-09 06:59:00    2017-06-09 06:59:00
96205    31768    900    2017-06-09 07:55:00    2017-06-09 07:55:00
96206    31768    708    2017-06-09 17:53:00    2017-06-09 17:53:00
96207    31768    660    2017-06-09 23:57:00    2017-06-09 23:57:00
96208    31768    913    2017-06-09 08:33:00    2017-06-09 08:33:00
96209    31768    495    2017-06-09 13:02:00    2017-06-09 13:02:00
96210    31769    740    2017-06-09 11:35:00    2017-06-09 11:35:00
96211    31769    948    2017-06-09 14:11:00    2017-06-09 14:11:00
96212    31769    696    2017-06-09 04:45:00    2017-06-09 04:45:00
96213    31769    561    2017-06-09 17:41:00    2017-06-09 17:41:00
96214    31769    905    2017-06-09 05:27:00    2017-06-09 05:27:00
96215    31770    766    2017-06-09 15:51:00    2017-06-09 15:51:00
96216    31770    610    2017-06-09 13:13:00    2017-06-09 13:13:00
96217    31770    561    2017-06-09 06:16:00    2017-06-09 06:16:00
96218    31770    719    2017-06-09 08:08:00    2017-06-09 08:08:00
96219    31770    902    2017-06-09 04:12:00    2017-06-09 04:12:00
96220    31771    757    2017-06-09 01:54:00    2017-06-09 01:54:00
96221    31771    953    2017-06-09 16:59:00    2017-06-09 16:59:00
96222    31771    956    2017-06-09 08:13:00    2017-06-09 08:13:00
96223    31771    933    2017-06-09 18:54:00    2017-06-09 18:54:00
96224    31771    801    2017-06-09 07:03:00    2017-06-09 07:03:00
96225    31772    731    2017-06-09 18:57:00    2017-06-09 18:57:00
96226    31772    837    2017-06-09 05:42:00    2017-06-09 05:42:00
96227    31772    935    2017-06-09 20:25:00    2017-06-09 20:25:00
96228    31772    754    2017-06-09 23:23:00    2017-06-09 23:23:00
96229    31772    817    2017-06-09 23:23:00    2017-06-09 23:23:00
96230    31773    940    2017-06-09 01:05:00    2017-06-09 01:05:00
96231    31773    802    2017-06-09 03:17:00    2017-06-09 03:17:00
96232    31773    494    2017-06-09 07:45:00    2017-06-09 07:45:00
96233    31773    578    2017-06-09 01:23:00    2017-06-09 01:23:00
96234    31773    503    2017-06-09 16:13:00    2017-06-09 16:13:00
96235    31774    480    2017-06-09 11:48:00    2017-06-09 11:48:00
96236    31774    766    2017-06-09 19:37:00    2017-06-09 19:37:00
96237    31774    615    2017-06-09 10:27:00    2017-06-09 10:27:00
96238    31774    528    2017-06-09 17:23:00    2017-06-09 17:23:00
96239    31774    804    2017-06-09 03:59:00    2017-06-09 03:59:00
96240    31775    496    2017-06-09 09:12:00    2017-06-09 09:12:00
96241    31775    694    2017-06-09 05:59:00    2017-06-09 05:59:00
96242    31775    592    2017-06-09 06:40:00    2017-06-09 06:40:00
96243    31775    961    2017-06-09 04:51:00    2017-06-09 04:51:00
96244    31775    670    2017-06-09 02:58:00    2017-06-09 02:58:00
96245    31776    549    2017-06-09 08:51:00    2017-06-09 08:51:00
96246    31776    928    2017-06-09 11:40:00    2017-06-09 11:40:00
96247    31776    633    2017-06-09 03:48:00    2017-06-09 03:48:00
96248    31776    751    2017-06-09 13:45:00    2017-06-09 13:45:00
96249    31776    518    2017-06-09 17:30:00    2017-06-09 17:30:00
96250    31777    481    2017-06-09 13:00:00    2017-06-09 13:00:00
96251    31777    583    2017-06-09 22:01:00    2017-06-09 22:01:00
96252    31777    487    2017-06-09 11:58:00    2017-06-09 11:58:00
96253    31777    873    2017-06-09 13:52:00    2017-06-09 13:52:00
96254    31777    627    2017-06-09 01:37:00    2017-06-09 01:37:00
96255    31778    743    2017-06-09 09:20:00    2017-06-09 09:20:00
96256    31778    494    2017-06-09 05:18:00    2017-06-09 05:18:00
96257    31778    768    2017-06-09 22:38:00    2017-06-09 22:38:00
96258    31778    813    2017-06-09 11:29:00    2017-06-09 11:29:00
96259    31778    495    2017-06-09 13:01:00    2017-06-09 13:01:00
96260    31779    778    2017-06-09 08:36:00    2017-06-09 08:36:00
96261    31779    629    2017-06-09 12:10:00    2017-06-09 12:10:00
96262    31779    762    2017-06-09 18:37:00    2017-06-09 18:37:00
96263    31779    887    2017-06-09 16:00:00    2017-06-09 16:00:00
96264    31779    759    2017-06-09 15:16:00    2017-06-09 15:16:00
96265    31780    658    2017-06-09 19:56:00    2017-06-09 19:56:00
96266    31780    949    2017-06-09 20:19:00    2017-06-09 20:19:00
96267    31780    581    2017-06-09 08:18:00    2017-06-09 08:18:00
96268    31780    674    2017-06-09 19:42:00    2017-06-09 19:42:00
96269    31780    650    2017-06-09 06:57:00    2017-06-09 06:57:00
96270    31781    611    2017-06-09 02:22:00    2017-06-09 02:22:00
96271    31781    773    2017-06-09 02:29:00    2017-06-09 02:29:00
96272    31781    645    2017-06-09 20:42:00    2017-06-09 20:42:00
96273    31781    866    2017-06-09 22:43:00    2017-06-09 22:43:00
96274    31781    598    2017-06-09 13:17:00    2017-06-09 13:17:00
96275    31782    480    2017-06-09 02:48:00    2017-06-09 02:48:00
96276    31782    835    2017-06-09 06:22:00    2017-06-09 06:22:00
96277    31782    788    2017-06-09 07:01:00    2017-06-09 07:01:00
96278    31782    841    2017-06-09 22:27:00    2017-06-09 22:27:00
96279    31782    824    2017-06-09 16:40:00    2017-06-09 16:40:00
96280    31783    545    2017-06-09 09:39:00    2017-06-09 09:39:00
96281    31783    578    2017-06-09 23:17:00    2017-06-09 23:17:00
96282    31783    536    2017-06-09 19:46:00    2017-06-09 19:46:00
96283    31783    612    2017-06-09 21:30:00    2017-06-09 21:30:00
96284    31783    738    2017-06-09 03:00:00    2017-06-09 03:00:00
96285    31784    569    2017-06-09 06:16:00    2017-06-09 06:16:00
96286    31784    641    2017-06-09 18:52:00    2017-06-09 18:52:00
96287    31784    940    2017-06-09 14:57:00    2017-06-09 14:57:00
96288    31784    791    2017-06-09 15:47:00    2017-06-09 15:47:00
96289    31784    598    2017-06-09 13:18:00    2017-06-09 13:18:00
96290    31785    942    2017-06-09 03:57:00    2017-06-09 03:57:00
96291    31785    927    2017-06-09 20:23:00    2017-06-09 20:23:00
96292    31785    636    2017-06-09 01:13:00    2017-06-09 01:13:00
96293    31785    617    2017-06-09 06:51:00    2017-06-09 06:51:00
96294    31785    901    2017-06-09 20:06:00    2017-06-09 20:06:00
96295    31786    619    2017-06-09 18:51:00    2017-06-09 18:51:00
96296    31786    661    2017-06-09 22:30:00    2017-06-09 22:30:00
96297    31786    476    2017-06-09 10:01:00    2017-06-09 10:01:00
96298    31786    727    2017-06-09 22:55:00    2017-06-09 22:55:00
96299    31786    781    2017-06-09 20:56:00    2017-06-09 20:56:00
96300    31787    872    2017-06-09 01:32:00    2017-06-09 01:32:00
96301    31787    629    2017-06-09 02:17:00    2017-06-09 02:17:00
96302    31787    870    2017-06-09 14:22:00    2017-06-09 14:22:00
96303    31787    793    2017-06-09 08:52:00    2017-06-09 08:52:00
96304    31787    743    2017-06-09 15:11:00    2017-06-09 15:11:00
96305    31788    678    2017-06-09 08:25:00    2017-06-09 08:25:00
96306    31788    754    2017-06-09 07:05:00    2017-06-09 07:05:00
96307    31788    500    2017-06-09 22:03:00    2017-06-09 22:03:00
96308    31788    560    2017-06-09 04:36:00    2017-06-09 04:36:00
96309    31788    698    2017-06-09 20:16:00    2017-06-09 20:16:00
96310    31789    820    2017-06-09 14:59:00    2017-06-09 14:59:00
96311    31789    688    2017-06-09 08:54:00    2017-06-09 08:54:00
96312    31789    505    2017-06-09 02:59:00    2017-06-09 02:59:00
96313    31789    660    2017-06-09 08:03:00    2017-06-09 08:03:00
96314    31789    748    2017-06-09 22:02:00    2017-06-09 22:02:00
96315    31790    714    2017-06-09 05:43:00    2017-06-09 05:43:00
96316    31790    859    2017-06-09 02:10:00    2017-06-09 02:10:00
96317    31790    627    2017-06-09 09:18:00    2017-06-09 09:18:00
96318    31790    608    2017-06-09 11:38:00    2017-06-09 11:38:00
96319    31790    905    2017-06-09 11:03:00    2017-06-09 11:03:00
96320    31791    470    2017-06-09 01:29:00    2017-06-09 01:29:00
96321    31791    649    2017-06-09 14:18:00    2017-06-09 14:18:00
96322    31791    576    2017-06-09 01:11:00    2017-06-09 01:11:00
96323    31791    500    2017-06-09 11:34:00    2017-06-09 11:34:00
96324    31791    710    2017-06-09 14:16:00    2017-06-09 14:16:00
96325    31792    604    2017-06-09 07:27:00    2017-06-09 07:27:00
96326    31792    576    2017-06-09 14:57:00    2017-06-09 14:57:00
96327    31792    527    2017-06-09 16:40:00    2017-06-09 16:40:00
96328    31792    790    2017-06-09 10:55:00    2017-06-09 10:55:00
96329    31792    896    2017-06-09 20:15:00    2017-06-09 20:15:00
96330    31793    824    2017-06-09 12:05:00    2017-06-09 12:05:00
96331    31793    629    2017-06-09 20:06:00    2017-06-09 20:06:00
96332    31793    612    2017-06-09 06:29:00    2017-06-09 06:29:00
96333    31793    815    2017-06-09 23:30:00    2017-06-09 23:30:00
96334    31793    538    2017-06-09 07:25:00    2017-06-09 07:25:00
96335    31794    931    2017-06-09 15:10:00    2017-06-09 15:10:00
96336    31794    878    2017-06-09 03:29:00    2017-06-09 03:29:00
96337    31794    566    2017-06-09 12:11:00    2017-06-09 12:11:00
96338    31794    852    2017-06-09 02:50:00    2017-06-09 02:50:00
96339    31794    713    2017-06-09 11:16:00    2017-06-09 11:16:00
96340    31795    797    2017-06-09 08:52:00    2017-06-09 08:52:00
96341    31795    490    2017-06-09 11:06:00    2017-06-09 11:06:00
96342    31795    470    2017-06-09 01:08:00    2017-06-09 01:08:00
96343    31795    765    2017-06-09 22:49:00    2017-06-09 22:49:00
96344    31795    485    2017-06-09 18:32:00    2017-06-09 18:32:00
96345    31796    902    2017-06-09 17:24:00    2017-06-09 17:24:00
96346    31796    809    2017-06-09 21:04:00    2017-06-09 21:04:00
96347    31796    595    2017-06-09 17:36:00    2017-06-09 17:36:00
96348    31796    909    2017-06-09 16:06:00    2017-06-09 16:06:00
96349    31796    895    2017-06-09 02:46:00    2017-06-09 02:46:00
96350    31797    706    2017-06-09 22:59:00    2017-06-09 22:59:00
96351    31797    813    2017-06-09 20:32:00    2017-06-09 20:32:00
96352    31797    477    2017-06-09 14:38:00    2017-06-09 14:38:00
96353    31797    530    2017-06-09 14:16:00    2017-06-09 14:16:00
96354    31797    903    2017-06-09 21:35:00    2017-06-09 21:35:00
96355    31798    796    2017-06-09 18:20:00    2017-06-09 18:20:00
96356    31798    549    2017-06-09 23:22:00    2017-06-09 23:22:00
96357    31798    813    2017-06-09 07:08:00    2017-06-09 07:08:00
96358    31798    562    2017-06-09 02:52:00    2017-06-09 02:52:00
96359    31798    571    2017-06-09 21:51:00    2017-06-09 21:51:00
96360    31799    561    2017-06-09 13:03:00    2017-06-09 13:03:00
96361    31799    546    2017-06-09 18:22:00    2017-06-09 18:22:00
96362    31799    884    2017-06-09 22:42:00    2017-06-09 22:42:00
96363    31799    688    2017-06-09 09:52:00    2017-06-09 09:52:00
96364    31799    726    2017-06-09 03:17:00    2017-06-09 03:17:00
96365    31800    738    2017-06-09 12:31:00    2017-06-09 12:31:00
96366    31800    768    2017-06-09 12:56:00    2017-06-09 12:56:00
96367    31800    698    2017-06-09 15:46:00    2017-06-09 15:46:00
96368    31800    791    2017-06-09 21:28:00    2017-06-09 21:28:00
96369    31800    777    2017-06-09 22:00:00    2017-06-09 22:00:00
96370    31801    835    2017-06-09 05:12:00    2017-06-09 05:12:00
96371    31801    704    2017-06-09 16:28:00    2017-06-09 16:28:00
96372    31801    854    2017-06-09 20:56:00    2017-06-09 20:56:00
96373    31801    522    2017-06-09 20:27:00    2017-06-09 20:27:00
96374    31801    546    2017-06-09 08:44:00    2017-06-09 08:44:00
96375    31802    804    2017-06-09 04:31:00    2017-06-09 04:31:00
96376    31802    558    2017-06-09 08:47:00    2017-06-09 08:47:00
96377    31802    573    2017-06-09 19:21:00    2017-06-09 19:21:00
96378    31802    774    2017-06-09 18:37:00    2017-06-09 18:37:00
96379    31802    844    2017-06-09 09:07:00    2017-06-09 09:07:00
96380    31803    663    2017-06-09 08:18:00    2017-06-09 08:18:00
96381    31803    481    2017-06-09 07:51:00    2017-06-09 07:51:00
96382    31803    566    2017-06-09 23:12:00    2017-06-09 23:12:00
96383    31803    758    2017-06-09 17:08:00    2017-06-09 17:08:00
96384    31803    546    2017-06-09 04:52:00    2017-06-09 04:52:00
96385    31804    615    2017-06-09 04:20:00    2017-06-09 04:20:00
96386    31804    904    2017-06-09 18:59:00    2017-06-09 18:59:00
96387    31804    858    2017-06-09 17:15:00    2017-06-09 17:15:00
96388    31804    939    2017-06-09 20:12:00    2017-06-09 20:12:00
96389    31804    570    2017-06-09 18:00:00    2017-06-09 18:00:00
96390    31805    889    2017-06-09 17:45:00    2017-06-09 17:45:00
96391    31805    582    2017-06-09 03:09:00    2017-06-09 03:09:00
96392    31805    778    2017-06-09 12:07:00    2017-06-09 12:07:00
96393    31805    659    2017-06-09 16:23:00    2017-06-09 16:23:00
96394    31805    825    2017-06-09 19:56:00    2017-06-09 19:56:00
96395    31806    918    2017-06-09 19:48:00    2017-06-09 19:48:00
96396    31806    471    2017-06-09 01:46:00    2017-06-09 01:46:00
96397    31806    789    2017-06-09 14:00:00    2017-06-09 14:00:00
96398    31806    588    2017-06-09 02:53:00    2017-06-09 02:53:00
96399    31806    711    2017-06-09 03:16:00    2017-06-09 03:16:00
96400    31807    944    2017-06-09 18:48:00    2017-06-09 18:48:00
96401    31807    526    2017-06-09 14:40:00    2017-06-09 14:40:00
96402    31807    798    2017-06-09 02:33:00    2017-06-09 02:33:00
96403    31807    800    2017-06-09 22:10:00    2017-06-09 22:10:00
96404    31807    482    2017-06-09 09:48:00    2017-06-09 09:48:00
96405    31808    921    2017-06-09 20:35:00    2017-06-09 20:35:00
96406    31808    850    2017-06-09 08:30:00    2017-06-09 08:30:00
96407    31808    913    2017-06-09 13:07:00    2017-06-09 13:07:00
96408    31808    563    2017-06-09 19:32:00    2017-06-09 19:32:00
96409    31808    646    2017-06-09 06:26:00    2017-06-09 06:26:00
96410    31809    499    2017-06-09 01:48:00    2017-06-09 01:48:00
96411    31809    917    2017-06-09 20:01:00    2017-06-09 20:01:00
96412    31809    643    2017-06-09 05:42:00    2017-06-09 05:42:00
96413    31809    738    2017-06-09 03:39:00    2017-06-09 03:39:00
96414    31809    624    2017-06-09 04:30:00    2017-06-09 04:30:00
96415    31810    814    2017-06-09 16:34:00    2017-06-09 16:34:00
96416    31810    641    2017-06-09 12:38:00    2017-06-09 12:38:00
96417    31810    670    2017-06-09 03:56:00    2017-06-09 03:56:00
96418    31810    719    2017-06-09 03:05:00    2017-06-09 03:05:00
96419    31810    631    2017-06-09 05:15:00    2017-06-09 05:15:00
96420    31811    660    2017-06-09 08:26:00    2017-06-09 08:26:00
96421    31811    767    2017-06-09 02:45:00    2017-06-09 02:45:00
96422    31811    757    2017-06-09 02:21:00    2017-06-09 02:21:00
96423    31811    828    2017-06-09 06:20:00    2017-06-09 06:20:00
96424    31811    659    2017-06-09 19:28:00    2017-06-09 19:28:00
96425    31812    798    2017-06-09 14:02:00    2017-06-09 14:02:00
96426    31812    783    2017-06-09 18:36:00    2017-06-09 18:36:00
96427    31812    919    2017-06-09 07:11:00    2017-06-09 07:11:00
96428    31812    915    2017-06-09 14:23:00    2017-06-09 14:23:00
96429    31812    484    2017-06-09 05:28:00    2017-06-09 05:28:00
96430    31813    687    2017-06-09 07:58:00    2017-06-09 07:58:00
96431    31813    901    2017-06-09 20:33:00    2017-06-09 20:33:00
96432    31813    680    2017-06-09 23:36:00    2017-06-09 23:36:00
96433    31813    572    2017-06-09 16:59:00    2017-06-09 16:59:00
96434    31813    835    2017-06-09 11:57:00    2017-06-09 11:57:00
96435    31814    956    2017-06-09 07:00:00    2017-06-09 07:00:00
96436    31814    726    2017-06-09 01:18:00    2017-06-09 01:18:00
96437    31814    754    2017-06-09 12:57:00    2017-06-09 12:57:00
96438    31814    591    2017-06-09 14:25:00    2017-06-09 14:25:00
96439    31814    786    2017-06-09 07:50:00    2017-06-09 07:50:00
96440    31815    927    2017-06-09 01:12:00    2017-06-09 01:12:00
96441    31815    951    2017-06-09 20:38:00    2017-06-09 20:38:00
96442    31815    516    2017-06-09 14:26:00    2017-06-09 14:26:00
96443    31815    511    2017-06-09 08:52:00    2017-06-09 08:52:00
96444    31815    516    2017-06-09 20:40:00    2017-06-09 20:40:00
96445    31816    916    2017-06-09 17:33:00    2017-06-09 17:33:00
96446    31816    507    2017-06-09 04:41:00    2017-06-09 04:41:00
96447    31816    656    2017-06-09 20:03:00    2017-06-09 20:03:00
96448    31816    927    2017-06-09 14:01:00    2017-06-09 14:01:00
96449    31816    856    2017-06-09 21:00:00    2017-06-09 21:00:00
96450    31817    751    2017-06-09 17:45:00    2017-06-09 17:45:00
96451    31817    631    2017-06-09 11:02:00    2017-06-09 11:02:00
96452    31817    583    2017-06-09 21:05:00    2017-06-09 21:05:00
96453    31817    960    2017-06-09 03:15:00    2017-06-09 03:15:00
96454    31817    650    2017-06-09 14:31:00    2017-06-09 14:31:00
96455    31818    954    2017-06-09 14:54:00    2017-06-09 14:54:00
96456    31818    959    2017-06-09 07:36:00    2017-06-09 07:36:00
96457    31818    767    2017-06-09 11:10:00    2017-06-09 11:10:00
96458    31818    772    2017-06-09 13:49:00    2017-06-09 13:49:00
96459    31818    579    2017-06-09 09:47:00    2017-06-09 09:47:00
96460    31819    849    2017-06-09 10:33:00    2017-06-09 10:33:00
96461    31819    913    2017-06-09 04:39:00    2017-06-09 04:39:00
96462    31819    468    2017-06-09 13:14:00    2017-06-09 13:14:00
96463    31819    483    2017-06-09 13:50:00    2017-06-09 13:50:00
96464    31819    925    2017-06-09 15:49:00    2017-06-09 15:49:00
96465    31820    568    2017-06-09 23:15:00    2017-06-09 23:15:00
96466    31820    767    2017-06-09 14:39:00    2017-06-09 14:39:00
96467    31820    842    2017-06-09 16:07:00    2017-06-09 16:07:00
96468    31820    848    2017-06-09 08:51:00    2017-06-09 08:51:00
96469    31820    619    2017-06-09 07:00:00    2017-06-09 07:00:00
96470    31821    867    2017-06-09 12:17:00    2017-06-09 12:17:00
96471    31821    808    2017-06-09 23:33:00    2017-06-09 23:33:00
96472    31821    898    2017-06-09 02:49:00    2017-06-09 02:49:00
96473    31821    892    2017-06-09 06:33:00    2017-06-09 06:33:00
96474    31821    923    2017-06-09 23:36:00    2017-06-09 23:36:00
96475    31822    472    2017-06-09 12:40:00    2017-06-09 12:40:00
96476    31822    804    2017-06-09 10:55:00    2017-06-09 10:55:00
96477    31822    780    2017-06-09 12:13:00    2017-06-09 12:13:00
96478    31822    675    2017-06-09 11:14:00    2017-06-09 11:14:00
96479    31822    734    2017-06-09 16:35:00    2017-06-09 16:35:00
96480    31823    474    2017-06-09 17:31:00    2017-06-09 17:31:00
96481    31823    834    2017-06-09 22:00:00    2017-06-09 22:00:00
96482    31823    808    2017-06-09 09:40:00    2017-06-09 09:40:00
96483    31823    954    2017-06-09 11:22:00    2017-06-09 11:22:00
96484    31823    614    2017-06-09 17:22:00    2017-06-09 17:22:00
96485    31824    855    2017-06-09 10:09:00    2017-06-09 10:09:00
96486    31824    501    2017-06-09 22:36:00    2017-06-09 22:36:00
96487    31824    713    2017-06-09 02:01:00    2017-06-09 02:01:00
96488    31824    906    2017-06-09 09:52:00    2017-06-09 09:52:00
96489    31824    712    2017-06-09 13:33:00    2017-06-09 13:33:00
96490    31825    776    2017-06-09 04:54:00    2017-06-09 04:54:00
96491    31825    725    2017-06-09 13:41:00    2017-06-09 13:41:00
96492    31825    923    2017-06-09 02:00:00    2017-06-09 02:00:00
96493    31825    522    2017-06-09 15:16:00    2017-06-09 15:16:00
96494    31825    687    2017-06-09 06:12:00    2017-06-09 06:12:00
96495    31826    634    2017-06-09 08:03:00    2017-06-09 08:03:00
96496    31826    489    2017-06-09 06:19:00    2017-06-09 06:19:00
96497    31826    706    2017-06-09 05:42:00    2017-06-09 05:42:00
96498    31826    715    2017-06-09 14:38:00    2017-06-09 14:38:00
96499    31826    890    2017-06-09 05:09:00    2017-06-09 05:09:00
96500    31827    665    2017-06-09 13:06:00    2017-06-09 13:06:00
96501    31827    891    2017-06-09 19:11:00    2017-06-09 19:11:00
96502    31827    528    2017-06-09 22:06:00    2017-06-09 22:06:00
96503    31827    737    2017-06-09 06:50:00    2017-06-09 06:50:00
96504    31827    485    2017-06-09 13:56:00    2017-06-09 13:56:00
96505    31828    506    2017-06-09 10:10:00    2017-06-09 10:10:00
96506    31828    847    2017-06-09 17:16:00    2017-06-09 17:16:00
96507    31828    525    2017-06-09 12:50:00    2017-06-09 12:50:00
96508    31828    943    2017-06-09 05:57:00    2017-06-09 05:57:00
96509    31828    582    2017-06-09 11:31:00    2017-06-09 11:31:00
96510    31829    900    2017-06-09 21:37:00    2017-06-09 21:37:00
96511    31829    886    2017-06-09 10:41:00    2017-06-09 10:41:00
96512    31829    654    2017-06-09 05:20:00    2017-06-09 05:20:00
96513    31829    764    2017-06-09 04:20:00    2017-06-09 04:20:00
96514    31829    492    2017-06-09 06:30:00    2017-06-09 06:30:00
96515    31830    939    2017-06-09 16:57:00    2017-06-09 16:57:00
96516    31830    870    2017-06-09 02:38:00    2017-06-09 02:38:00
96517    31830    818    2017-06-09 14:57:00    2017-06-09 14:57:00
96518    31830    536    2017-06-09 07:55:00    2017-06-09 07:55:00
96519    31830    473    2017-06-09 05:28:00    2017-06-09 05:28:00
96520    31831    578    2017-06-09 11:16:00    2017-06-09 11:16:00
96521    31831    590    2017-06-09 08:20:00    2017-06-09 08:20:00
96522    31831    921    2017-06-09 15:07:00    2017-06-09 15:07:00
96523    31831    479    2017-06-09 14:09:00    2017-06-09 14:09:00
96524    31831    926    2017-06-09 20:09:00    2017-06-09 20:09:00
96525    31832    909    2017-06-09 15:49:00    2017-06-09 15:49:00
96526    31832    626    2017-06-09 07:29:00    2017-06-09 07:29:00
96527    31832    637    2017-06-09 01:18:00    2017-06-09 01:18:00
96528    31832    649    2017-06-09 17:21:00    2017-06-09 17:21:00
96529    31832    825    2017-06-09 16:45:00    2017-06-09 16:45:00
96530    31833    876    2017-06-09 12:14:00    2017-06-09 12:14:00
96531    31833    735    2017-06-09 15:36:00    2017-06-09 15:36:00
96532    31833    613    2017-06-09 08:02:00    2017-06-09 08:02:00
96533    31833    588    2017-06-09 18:53:00    2017-06-09 18:53:00
96534    31833    867    2017-06-09 20:39:00    2017-06-09 20:39:00
96535    31834    593    2017-06-09 11:36:00    2017-06-09 11:36:00
96536    31834    621    2017-06-09 06:35:00    2017-06-09 06:35:00
96537    31834    908    2017-06-09 09:56:00    2017-06-09 09:56:00
96538    31834    753    2017-06-09 16:19:00    2017-06-09 16:19:00
96539    31834    674    2017-06-09 01:53:00    2017-06-09 01:53:00
96540    31835    842    2017-06-09 18:12:00    2017-06-09 18:12:00
96541    31835    735    2017-06-09 16:40:00    2017-06-09 16:40:00
96542    31835    950    2017-06-09 21:38:00    2017-06-09 21:38:00
96543    31835    906    2017-06-09 16:14:00    2017-06-09 16:14:00
96544    31835    895    2017-06-09 10:54:00    2017-06-09 10:54:00
96545    31836    784    2017-06-09 17:38:00    2017-06-09 17:38:00
96546    31836    542    2017-06-09 23:07:00    2017-06-09 23:07:00
96547    31836    843    2017-06-09 19:43:00    2017-06-09 19:43:00
96548    31836    597    2017-06-09 07:24:00    2017-06-09 07:24:00
96549    31836    722    2017-06-09 14:33:00    2017-06-09 14:33:00
96550    31837    479    2017-06-09 22:50:00    2017-06-09 22:50:00
96551    31837    690    2017-06-09 03:52:00    2017-06-09 03:52:00
96552    31837    820    2017-06-09 01:10:00    2017-06-09 01:10:00
96553    31837    662    2017-06-09 05:52:00    2017-06-09 05:52:00
96554    31837    601    2017-06-09 18:57:00    2017-06-09 18:57:00
96555    31838    921    2017-06-09 05:44:00    2017-06-09 05:44:00
96556    31838    616    2017-06-09 15:16:00    2017-06-09 15:16:00
96557    31838    763    2017-06-09 07:36:00    2017-06-09 07:36:00
96558    31838    869    2017-06-09 03:50:00    2017-06-09 03:50:00
96559    31838    807    2017-06-09 23:49:00    2017-06-09 23:49:00
96560    31839    469    2017-06-09 21:26:00    2017-06-09 21:26:00
96561    31839    811    2017-06-09 09:21:00    2017-06-09 09:21:00
96562    31839    468    2017-06-09 03:08:00    2017-06-09 03:08:00
96563    31839    880    2017-06-09 14:38:00    2017-06-09 14:38:00
96564    31839    654    2017-06-09 10:53:00    2017-06-09 10:53:00
96565    31840    583    2017-06-09 19:31:00    2017-06-09 19:31:00
96566    31840    758    2017-06-09 19:37:00    2017-06-09 19:37:00
96567    31840    587    2017-06-09 13:01:00    2017-06-09 13:01:00
96568    31840    671    2017-06-09 21:33:00    2017-06-09 21:33:00
96569    31840    742    2017-06-09 06:13:00    2017-06-09 06:13:00
96570    31841    841    2017-06-09 10:53:00    2017-06-09 10:53:00
96571    31841    873    2017-06-09 02:39:00    2017-06-09 02:39:00
96572    31841    935    2017-06-09 06:18:00    2017-06-09 06:18:00
96573    31841    820    2017-06-09 23:28:00    2017-06-09 23:28:00
96574    31841    914    2017-06-09 14:28:00    2017-06-09 14:28:00
96575    31842    469    2017-06-09 04:06:00    2017-06-09 04:06:00
96576    31842    802    2017-06-09 02:38:00    2017-06-09 02:38:00
96577    31842    870    2017-06-09 02:05:00    2017-06-09 02:05:00
96578    31842    537    2017-06-09 11:18:00    2017-06-09 11:18:00
96579    31842    932    2017-06-09 16:54:00    2017-06-09 16:54:00
96580    31843    875    2017-06-09 20:30:00    2017-06-09 20:30:00
96581    31843    537    2017-06-09 09:53:00    2017-06-09 09:53:00
96582    31843    531    2017-06-09 02:08:00    2017-06-09 02:08:00
96583    31843    694    2017-06-09 14:20:00    2017-06-09 14:20:00
96584    31843    937    2017-06-09 09:41:00    2017-06-09 09:41:00
96585    31844    609    2017-06-09 19:12:00    2017-06-09 19:12:00
96586    31844    661    2017-06-09 19:58:00    2017-06-09 19:58:00
96587    31844    491    2017-06-09 12:30:00    2017-06-09 12:30:00
96588    31844    883    2017-06-09 12:05:00    2017-06-09 12:05:00
96589    31844    663    2017-06-09 08:15:00    2017-06-09 08:15:00
96590    31845    682    2017-06-09 12:21:00    2017-06-09 12:21:00
96591    31845    854    2017-06-09 03:21:00    2017-06-09 03:21:00
96592    31845    903    2017-06-09 17:43:00    2017-06-09 17:43:00
96593    31845    957    2017-06-09 18:20:00    2017-06-09 18:20:00
96594    31845    612    2017-06-09 15:54:00    2017-06-09 15:54:00
96595    31846    485    2017-06-09 22:19:00    2017-06-09 22:19:00
96596    31846    546    2017-06-09 10:57:00    2017-06-09 10:57:00
96597    31846    754    2017-06-09 09:47:00    2017-06-09 09:47:00
96598    31846    553    2017-06-09 20:14:00    2017-06-09 20:14:00
96599    31846    683    2017-06-09 10:19:00    2017-06-09 10:19:00
96600    31847    797    2017-06-09 17:51:00    2017-06-09 17:51:00
96601    31847    625    2017-06-09 16:32:00    2017-06-09 16:32:00
96602    31847    791    2017-06-09 07:49:00    2017-06-09 07:49:00
96603    31847    918    2017-06-09 11:47:00    2017-06-09 11:47:00
96604    31847    702    2017-06-09 12:59:00    2017-06-09 12:59:00
96605    31848    895    2017-06-09 05:35:00    2017-06-09 05:35:00
96606    31848    579    2017-06-09 22:25:00    2017-06-09 22:25:00
96607    31848    717    2017-06-09 21:07:00    2017-06-09 21:07:00
96608    31848    931    2017-06-09 05:00:00    2017-06-09 05:00:00
96609    31848    747    2017-06-09 16:02:00    2017-06-09 16:02:00
96610    31849    808    2017-06-09 02:54:00    2017-06-09 02:54:00
96611    31849    608    2017-06-09 22:22:00    2017-06-09 22:22:00
96612    31849    862    2017-06-09 05:50:00    2017-06-09 05:50:00
96613    31849    533    2017-06-09 17:12:00    2017-06-09 17:12:00
96614    31849    522    2017-06-09 02:22:00    2017-06-09 02:22:00
96615    31850    774    2017-06-09 14:06:00    2017-06-09 14:06:00
96616    31850    712    2017-06-09 15:06:00    2017-06-09 15:06:00
96617    31850    764    2017-06-09 21:21:00    2017-06-09 21:21:00
96618    31850    631    2017-06-09 21:20:00    2017-06-09 21:20:00
96619    31850    959    2017-06-09 12:05:00    2017-06-09 12:05:00
96620    31851    847    2017-06-09 16:21:00    2017-06-09 16:21:00
96621    31851    567    2017-06-09 02:26:00    2017-06-09 02:26:00
96622    31851    914    2017-06-09 06:41:00    2017-06-09 06:41:00
96623    31851    818    2017-06-09 04:06:00    2017-06-09 04:06:00
96624    31851    860    2017-06-09 10:56:00    2017-06-09 10:56:00
96625    31852    561    2017-06-09 03:34:00    2017-06-09 03:34:00
96626    31852    522    2017-06-09 12:36:00    2017-06-09 12:36:00
96627    31852    606    2017-06-09 09:01:00    2017-06-09 09:01:00
96628    31852    861    2017-06-09 10:18:00    2017-06-09 10:18:00
96629    31852    577    2017-06-09 17:44:00    2017-06-09 17:44:00
96630    31853    901    2017-06-10 07:14:00    2017-06-10 07:14:00
96631    31853    731    2017-06-10 23:47:00    2017-06-10 23:47:00
96632    31853    521    2017-06-10 14:09:00    2017-06-10 14:09:00
96633    31853    864    2017-06-10 18:56:00    2017-06-10 18:56:00
96634    31853    596    2017-06-10 13:54:00    2017-06-10 13:54:00
96635    31854    802    2017-06-10 13:24:00    2017-06-10 13:24:00
96636    31854    481    2017-06-10 20:21:00    2017-06-10 20:21:00
96637    31854    494    2017-06-10 08:16:00    2017-06-10 08:16:00
96638    31854    592    2017-06-10 17:37:00    2017-06-10 17:37:00
96639    31854    942    2017-06-10 01:07:00    2017-06-10 01:07:00
96640    31855    577    2017-06-10 23:14:00    2017-06-10 23:14:00
96641    31855    889    2017-06-10 18:00:00    2017-06-10 18:00:00
96642    31855    956    2017-06-10 03:36:00    2017-06-10 03:36:00
96643    31855    570    2017-06-10 03:48:00    2017-06-10 03:48:00
96644    31855    530    2017-06-10 15:02:00    2017-06-10 15:02:00
96645    31856    715    2017-06-10 15:29:00    2017-06-10 15:29:00
96646    31856    694    2017-06-10 07:07:00    2017-06-10 07:07:00
96647    31856    530    2017-06-10 11:14:00    2017-06-10 11:14:00
96648    31856    629    2017-06-10 03:12:00    2017-06-10 03:12:00
96649    31856    815    2017-06-10 19:21:00    2017-06-10 19:21:00
96650    31857    643    2017-06-10 21:50:00    2017-06-10 21:50:00
96651    31857    622    2017-06-10 18:19:00    2017-06-10 18:19:00
96652    31857    499    2017-06-10 06:42:00    2017-06-10 06:42:00
96653    31857    628    2017-06-10 10:35:00    2017-06-10 10:35:00
96654    31857    472    2017-06-10 10:51:00    2017-06-10 10:51:00
96655    31858    508    2017-06-10 20:31:00    2017-06-10 20:31:00
96656    31858    949    2017-06-10 15:34:00    2017-06-10 15:34:00
96657    31858    528    2017-06-10 04:07:00    2017-06-10 04:07:00
96658    31858    632    2017-06-10 09:52:00    2017-06-10 09:52:00
96659    31858    957    2017-06-10 22:52:00    2017-06-10 22:52:00
96660    31859    617    2017-06-10 15:27:00    2017-06-10 15:27:00
96661    31859    554    2017-06-10 17:55:00    2017-06-10 17:55:00
96662    31859    516    2017-06-10 13:00:00    2017-06-10 13:00:00
96663    31859    879    2017-06-10 15:48:00    2017-06-10 15:48:00
96664    31859    727    2017-06-10 08:20:00    2017-06-10 08:20:00
96665    31860    819    2017-06-10 07:23:00    2017-06-10 07:23:00
96666    31860    822    2017-06-10 13:00:00    2017-06-10 13:00:00
96667    31860    553    2017-06-10 16:25:00    2017-06-10 16:25:00
96668    31860    709    2017-06-10 08:25:00    2017-06-10 08:25:00
96669    31860    615    2017-06-10 12:06:00    2017-06-10 12:06:00
96670    31861    476    2017-06-10 22:41:00    2017-06-10 22:41:00
96671    31861    580    2017-06-10 23:48:00    2017-06-10 23:48:00
96672    31861    590    2017-06-10 08:30:00    2017-06-10 08:30:00
96673    31861    527    2017-06-10 01:34:00    2017-06-10 01:34:00
96674    31861    854    2017-06-10 20:01:00    2017-06-10 20:01:00
96675    31862    639    2017-06-10 10:04:00    2017-06-10 10:04:00
96676    31862    707    2017-06-10 19:07:00    2017-06-10 19:07:00
96677    31862    901    2017-06-10 22:17:00    2017-06-10 22:17:00
96678    31862    584    2017-06-10 19:22:00    2017-06-10 19:22:00
96679    31862    878    2017-06-10 21:46:00    2017-06-10 21:46:00
96680    31863    888    2017-06-10 17:52:00    2017-06-10 17:52:00
96681    31863    766    2017-06-10 03:52:00    2017-06-10 03:52:00
96682    31863    550    2017-06-10 20:24:00    2017-06-10 20:24:00
96683    31863    680    2017-06-10 07:58:00    2017-06-10 07:58:00
96684    31863    467    2017-06-10 18:09:00    2017-06-10 18:09:00
96685    31864    578    2017-06-10 10:57:00    2017-06-10 10:57:00
96686    31864    765    2017-06-10 07:23:00    2017-06-10 07:23:00
96687    31864    713    2017-06-10 14:03:00    2017-06-10 14:03:00
96688    31864    542    2017-06-10 06:33:00    2017-06-10 06:33:00
96689    31864    782    2017-06-10 18:48:00    2017-06-10 18:48:00
96690    31865    640    2017-06-10 15:18:00    2017-06-10 15:18:00
96691    31865    578    2017-06-10 20:42:00    2017-06-10 20:42:00
96692    31865    790    2017-06-10 14:33:00    2017-06-10 14:33:00
96693    31865    482    2017-06-10 01:56:00    2017-06-10 01:56:00
96694    31865    583    2017-06-10 19:20:00    2017-06-10 19:20:00
96695    31866    765    2017-06-10 19:19:00    2017-06-10 19:19:00
96696    31866    573    2017-06-10 16:00:00    2017-06-10 16:00:00
96697    31866    733    2017-06-10 21:32:00    2017-06-10 21:32:00
96698    31866    799    2017-06-10 07:38:00    2017-06-10 07:38:00
96699    31866    676    2017-06-10 02:02:00    2017-06-10 02:02:00
96700    31867    788    2017-06-10 16:32:00    2017-06-10 16:32:00
96701    31867    689    2017-06-10 20:14:00    2017-06-10 20:14:00
96702    31867    696    2017-06-10 07:44:00    2017-06-10 07:44:00
96703    31867    873    2017-06-10 11:10:00    2017-06-10 11:10:00
96704    31867    836    2017-06-10 04:17:00    2017-06-10 04:17:00
96705    31868    939    2017-06-10 15:11:00    2017-06-10 15:11:00
96706    31868    935    2017-06-10 03:23:00    2017-06-10 03:23:00
96707    31868    599    2017-06-10 17:00:00    2017-06-10 17:00:00
96708    31868    571    2017-06-10 22:26:00    2017-06-10 22:26:00
96709    31868    684    2017-06-10 10:29:00    2017-06-10 10:29:00
96710    31869    844    2017-06-10 10:24:00    2017-06-10 10:24:00
96711    31869    795    2017-06-10 07:57:00    2017-06-10 07:57:00
96712    31869    717    2017-06-10 01:46:00    2017-06-10 01:46:00
96713    31869    613    2017-06-10 14:13:00    2017-06-10 14:13:00
96714    31869    692    2017-06-10 13:30:00    2017-06-10 13:30:00
96715    31870    777    2017-06-10 19:33:00    2017-06-10 19:33:00
96716    31870    723    2017-06-10 22:59:00    2017-06-10 22:59:00
96717    31870    649    2017-06-10 06:37:00    2017-06-10 06:37:00
96718    31870    778    2017-06-10 13:32:00    2017-06-10 13:32:00
96719    31870    879    2017-06-10 19:00:00    2017-06-10 19:00:00
96720    31871    693    2017-06-10 17:31:00    2017-06-10 17:31:00
96721    31871    743    2017-06-10 09:17:00    2017-06-10 09:17:00
96722    31871    650    2017-06-10 02:28:00    2017-06-10 02:28:00
96723    31871    849    2017-06-10 13:58:00    2017-06-10 13:58:00
96724    31871    848    2017-06-10 17:55:00    2017-06-10 17:55:00
96725    31872    941    2017-06-10 15:14:00    2017-06-10 15:14:00
96726    31872    905    2017-06-10 22:11:00    2017-06-10 22:11:00
96727    31872    900    2017-06-10 01:21:00    2017-06-10 01:21:00
96728    31872    739    2017-06-10 15:33:00    2017-06-10 15:33:00
96729    31872    645    2017-06-10 05:25:00    2017-06-10 05:25:00
96730    31873    663    2017-06-10 04:38:00    2017-06-10 04:38:00
96731    31873    561    2017-06-10 09:46:00    2017-06-10 09:46:00
96732    31873    862    2017-06-10 13:26:00    2017-06-10 13:26:00
96733    31873    910    2017-06-10 11:14:00    2017-06-10 11:14:00
96734    31873    570    2017-06-10 11:46:00    2017-06-10 11:46:00
96735    31874    537    2017-06-10 03:21:00    2017-06-10 03:21:00
96736    31874    537    2017-06-10 23:40:00    2017-06-10 23:40:00
96737    31874    868    2017-06-10 23:37:00    2017-06-10 23:37:00
96738    31874    561    2017-06-10 22:45:00    2017-06-10 22:45:00
96739    31874    846    2017-06-10 13:22:00    2017-06-10 13:22:00
96740    31875    708    2017-06-10 21:01:00    2017-06-10 21:01:00
96741    31875    558    2017-06-10 12:53:00    2017-06-10 12:53:00
96742    31875    652    2017-06-10 23:06:00    2017-06-10 23:06:00
96743    31875    795    2017-06-10 14:47:00    2017-06-10 14:47:00
96744    31875    755    2017-06-10 07:51:00    2017-06-10 07:51:00
96745    31876    742    2017-06-10 06:30:00    2017-06-10 06:30:00
96746    31876    675    2017-06-10 01:44:00    2017-06-10 01:44:00
96747    31876    694    2017-06-10 19:24:00    2017-06-10 19:24:00
96748    31876    701    2017-06-10 15:29:00    2017-06-10 15:29:00
96749    31876    581    2017-06-10 03:52:00    2017-06-10 03:52:00
96750    31877    622    2017-06-10 12:29:00    2017-06-10 12:29:00
96751    31877    925    2017-06-10 01:17:00    2017-06-10 01:17:00
96752    31877    951    2017-06-10 17:09:00    2017-06-10 17:09:00
96753    31877    571    2017-06-10 15:23:00    2017-06-10 15:23:00
96754    31877    752    2017-06-10 07:00:00    2017-06-10 07:00:00
96755    31878    561    2017-06-10 22:06:00    2017-06-10 22:06:00
96756    31878    728    2017-06-10 09:07:00    2017-06-10 09:07:00
96757    31878    700    2017-06-10 11:58:00    2017-06-10 11:58:00
96758    31878    838    2017-06-10 16:32:00    2017-06-10 16:32:00
96759    31878    858    2017-06-10 10:43:00    2017-06-10 10:43:00
96760    31879    533    2017-06-10 22:44:00    2017-06-10 22:44:00
96761    31879    896    2017-06-10 17:24:00    2017-06-10 17:24:00
96762    31879    604    2017-06-10 22:18:00    2017-06-10 22:18:00
96763    31879    813    2017-06-10 02:34:00    2017-06-10 02:34:00
96764    31879    823    2017-06-10 01:33:00    2017-06-10 01:33:00
96765    31880    563    2017-06-10 21:56:00    2017-06-10 21:56:00
96766    31880    628    2017-06-10 11:51:00    2017-06-10 11:51:00
96767    31880    488    2017-06-10 12:29:00    2017-06-10 12:29:00
96768    31880    855    2017-06-10 17:18:00    2017-06-10 17:18:00
96769    31880    619    2017-06-10 15:06:00    2017-06-10 15:06:00
96770    31881    762    2017-06-10 23:30:00    2017-06-10 23:30:00
96771    31881    791    2017-06-10 04:18:00    2017-06-10 04:18:00
96772    31881    658    2017-06-10 22:00:00    2017-06-10 22:00:00
96773    31881    562    2017-06-10 11:47:00    2017-06-10 11:47:00
96774    31881    642    2017-06-10 22:50:00    2017-06-10 22:50:00
96775    31882    610    2017-06-10 20:07:00    2017-06-10 20:07:00
96776    31882    725    2017-06-10 03:05:00    2017-06-10 03:05:00
96777    31882    671    2017-06-10 18:03:00    2017-06-10 18:03:00
96778    31882    499    2017-06-10 16:19:00    2017-06-10 16:19:00
96779    31882    784    2017-06-10 13:36:00    2017-06-10 13:36:00
96780    31883    887    2017-06-10 07:57:00    2017-06-10 07:57:00
96781    31883    947    2017-06-10 14:37:00    2017-06-10 14:37:00
96782    31883    637    2017-06-10 21:24:00    2017-06-10 21:24:00
96783    31883    540    2017-06-10 20:22:00    2017-06-10 20:22:00
96784    31883    848    2017-06-10 01:54:00    2017-06-10 01:54:00
96785    31884    546    2017-06-10 07:42:00    2017-06-10 07:42:00
96786    31884    882    2017-06-10 05:18:00    2017-06-10 05:18:00
96787    31884    605    2017-06-10 04:11:00    2017-06-10 04:11:00
96788    31884    686    2017-06-10 06:29:00    2017-06-10 06:29:00
96789    31884    826    2017-06-10 09:30:00    2017-06-10 09:30:00
96790    31885    830    2017-06-10 19:13:00    2017-06-10 19:13:00
96791    31885    593    2017-06-10 13:04:00    2017-06-10 13:04:00
96792    31885    779    2017-06-10 07:15:00    2017-06-10 07:15:00
96793    31885    638    2017-06-10 22:10:00    2017-06-10 22:10:00
96794    31885    902    2017-06-10 07:08:00    2017-06-10 07:08:00
96795    31886    939    2017-06-10 17:59:00    2017-06-10 17:59:00
96796    31886    944    2017-06-10 21:48:00    2017-06-10 21:48:00
96797    31886    619    2017-06-10 16:45:00    2017-06-10 16:45:00
96798    31886    522    2017-06-10 14:01:00    2017-06-10 14:01:00
96799    31886    656    2017-06-10 09:55:00    2017-06-10 09:55:00
96800    31887    518    2017-06-10 02:36:00    2017-06-10 02:36:00
96801    31887    603    2017-06-10 13:03:00    2017-06-10 13:03:00
96802    31887    631    2017-06-10 22:17:00    2017-06-10 22:17:00
96803    31887    517    2017-06-10 09:26:00    2017-06-10 09:26:00
96804    31887    842    2017-06-10 01:05:00    2017-06-10 01:05:00
96805    31888    794    2017-06-10 18:54:00    2017-06-10 18:54:00
96806    31888    862    2017-06-10 11:05:00    2017-06-10 11:05:00
96807    31888    650    2017-06-10 18:43:00    2017-06-10 18:43:00
96808    31888    949    2017-06-10 07:53:00    2017-06-10 07:53:00
96809    31888    892    2017-06-10 03:33:00    2017-06-10 03:33:00
96810    31889    474    2017-06-10 14:20:00    2017-06-10 14:20:00
96811    31889    623    2017-06-10 20:17:00    2017-06-10 20:17:00
96812    31889    567    2017-06-10 04:58:00    2017-06-10 04:58:00
96813    31889    691    2017-06-10 10:02:00    2017-06-10 10:02:00
96814    31889    808    2017-06-10 21:40:00    2017-06-10 21:40:00
96815    31890    686    2017-06-10 06:53:00    2017-06-10 06:53:00
96816    31890    601    2017-06-10 02:28:00    2017-06-10 02:28:00
96817    31890    761    2017-06-10 09:39:00    2017-06-10 09:39:00
96818    31890    861    2017-06-10 04:46:00    2017-06-10 04:46:00
96819    31890    482    2017-06-10 19:15:00    2017-06-10 19:15:00
96820    31891    958    2017-06-10 06:41:00    2017-06-10 06:41:00
96821    31891    875    2017-06-10 21:48:00    2017-06-10 21:48:00
96822    31891    934    2017-06-10 18:24:00    2017-06-10 18:24:00
96823    31891    563    2017-06-10 17:28:00    2017-06-10 17:28:00
96824    31891    746    2017-06-10 02:52:00    2017-06-10 02:52:00
96825    31892    669    2017-06-10 11:15:00    2017-06-10 11:15:00
96826    31892    787    2017-06-10 06:17:00    2017-06-10 06:17:00
96827    31892    815    2017-06-10 08:30:00    2017-06-10 08:30:00
96828    31892    692    2017-06-10 11:15:00    2017-06-10 11:15:00
96829    31892    951    2017-06-10 05:13:00    2017-06-10 05:13:00
96830    31893    583    2017-06-10 06:04:00    2017-06-10 06:04:00
96831    31893    821    2017-06-10 20:27:00    2017-06-10 20:27:00
96832    31893    794    2017-06-10 07:27:00    2017-06-10 07:27:00
96833    31893    802    2017-06-10 20:45:00    2017-06-10 20:45:00
96834    31893    929    2017-06-10 08:26:00    2017-06-10 08:26:00
96835    31894    499    2017-06-10 16:00:00    2017-06-10 16:00:00
96836    31894    916    2017-06-10 07:07:00    2017-06-10 07:07:00
96837    31894    631    2017-06-10 23:16:00    2017-06-10 23:16:00
96838    31894    602    2017-06-10 01:49:00    2017-06-10 01:49:00
96839    31894    922    2017-06-10 15:16:00    2017-06-10 15:16:00
96840    31895    740    2017-06-10 23:53:00    2017-06-10 23:53:00
96841    31895    746    2017-06-10 09:50:00    2017-06-10 09:50:00
96842    31895    521    2017-06-10 11:28:00    2017-06-10 11:28:00
96843    31895    730    2017-06-10 11:39:00    2017-06-10 11:39:00
96844    31895    488    2017-06-10 09:01:00    2017-06-10 09:01:00
96845    31896    958    2017-06-10 09:20:00    2017-06-10 09:20:00
96846    31896    507    2017-06-10 21:36:00    2017-06-10 21:36:00
96847    31896    904    2017-06-10 07:59:00    2017-06-10 07:59:00
96848    31896    846    2017-06-10 22:06:00    2017-06-10 22:06:00
96849    31896    878    2017-06-10 11:39:00    2017-06-10 11:39:00
96850    31897    851    2017-06-10 22:15:00    2017-06-10 22:15:00
96851    31897    613    2017-06-10 03:52:00    2017-06-10 03:52:00
96852    31897    600    2017-06-10 04:27:00    2017-06-10 04:27:00
96853    31897    551    2017-06-10 14:52:00    2017-06-10 14:52:00
96854    31897    926    2017-06-10 14:21:00    2017-06-10 14:21:00
96855    31898    868    2017-06-10 14:05:00    2017-06-10 14:05:00
96856    31898    905    2017-06-10 04:23:00    2017-06-10 04:23:00
96857    31898    524    2017-06-10 11:13:00    2017-06-10 11:13:00
96858    31898    563    2017-06-10 13:16:00    2017-06-10 13:16:00
96859    31898    651    2017-06-10 16:25:00    2017-06-10 16:25:00
96860    31899    538    2017-06-10 23:35:00    2017-06-10 23:35:00
96861    31899    516    2017-06-10 14:06:00    2017-06-10 14:06:00
96862    31899    551    2017-06-10 20:12:00    2017-06-10 20:12:00
96863    31899    919    2017-06-10 20:45:00    2017-06-10 20:45:00
96864    31899    802    2017-06-10 08:07:00    2017-06-10 08:07:00
96865    31900    773    2017-06-10 23:39:00    2017-06-10 23:39:00
96866    31900    844    2017-06-10 05:37:00    2017-06-10 05:37:00
96867    31900    921    2017-06-10 10:43:00    2017-06-10 10:43:00
96868    31900    513    2017-06-10 15:12:00    2017-06-10 15:12:00
96869    31900    944    2017-06-10 01:22:00    2017-06-10 01:22:00
96870    31901    719    2017-06-10 13:34:00    2017-06-10 13:34:00
96871    31901    870    2017-06-10 03:25:00    2017-06-10 03:25:00
96872    31901    476    2017-06-10 01:54:00    2017-06-10 01:54:00
96873    31901    549    2017-06-10 06:44:00    2017-06-10 06:44:00
96874    31901    697    2017-06-10 18:27:00    2017-06-10 18:27:00
96875    31902    819    2017-06-10 16:59:00    2017-06-10 16:59:00
96876    31902    904    2017-06-10 22:14:00    2017-06-10 22:14:00
96877    31902    513    2017-06-10 17:13:00    2017-06-10 17:13:00
96878    31902    681    2017-06-10 08:44:00    2017-06-10 08:44:00
96879    31902    682    2017-06-10 05:47:00    2017-06-10 05:47:00
96880    31903    594    2017-06-10 09:31:00    2017-06-10 09:31:00
96881    31903    686    2017-06-10 17:04:00    2017-06-10 17:04:00
96882    31903    886    2017-06-10 14:05:00    2017-06-10 14:05:00
96883    31903    879    2017-06-10 04:00:00    2017-06-10 04:00:00
96884    31903    694    2017-06-10 04:09:00    2017-06-10 04:09:00
96885    31904    782    2017-06-10 12:33:00    2017-06-10 12:33:00
96886    31904    653    2017-06-10 21:08:00    2017-06-10 21:08:00
96887    31904    582    2017-06-10 21:09:00    2017-06-10 21:09:00
96888    31904    739    2017-06-10 01:44:00    2017-06-10 01:44:00
96889    31904    892    2017-06-10 11:19:00    2017-06-10 11:19:00
96890    31905    521    2017-06-10 09:22:00    2017-06-10 09:22:00
96891    31905    956    2017-06-10 05:56:00    2017-06-10 05:56:00
96892    31905    873    2017-06-10 10:47:00    2017-06-10 10:47:00
96893    31905    628    2017-06-10 12:22:00    2017-06-10 12:22:00
96894    31905    495    2017-06-10 01:38:00    2017-06-10 01:38:00
96895    31906    530    2017-06-10 21:49:00    2017-06-10 21:49:00
96896    31906    478    2017-06-10 20:59:00    2017-06-10 20:59:00
96897    31906    558    2017-06-10 17:22:00    2017-06-10 17:22:00
96898    31906    470    2017-06-10 19:02:00    2017-06-10 19:02:00
96899    31906    955    2017-06-10 19:00:00    2017-06-10 19:00:00
96900    31907    464    2017-06-10 12:52:00    2017-06-10 12:52:00
96901    31907    550    2017-06-10 14:02:00    2017-06-10 14:02:00
96902    31907    548    2017-06-10 13:58:00    2017-06-10 13:58:00
96903    31907    697    2017-06-10 15:17:00    2017-06-10 15:17:00
96904    31907    634    2017-06-10 03:31:00    2017-06-10 03:31:00
96905    31908    834    2017-06-10 05:13:00    2017-06-10 05:13:00
96906    31908    954    2017-06-10 19:26:00    2017-06-10 19:26:00
96907    31908    578    2017-06-10 14:50:00    2017-06-10 14:50:00
96908    31908    637    2017-06-10 09:12:00    2017-06-10 09:12:00
96909    31908    545    2017-06-10 03:00:00    2017-06-10 03:00:00
96910    31909    725    2017-06-10 22:32:00    2017-06-10 22:32:00
96911    31909    801    2017-06-10 18:50:00    2017-06-10 18:50:00
96912    31909    737    2017-06-10 17:34:00    2017-06-10 17:34:00
96913    31909    772    2017-06-10 13:28:00    2017-06-10 13:28:00
96914    31909    490    2017-06-10 15:08:00    2017-06-10 15:08:00
96915    31910    576    2017-06-10 16:59:00    2017-06-10 16:59:00
96916    31910    714    2017-06-10 18:55:00    2017-06-10 18:55:00
96917    31910    893    2017-06-10 07:50:00    2017-06-10 07:50:00
96918    31910    824    2017-06-10 06:29:00    2017-06-10 06:29:00
96919    31910    941    2017-06-10 08:59:00    2017-06-10 08:59:00
96920    31911    691    2017-06-10 15:50:00    2017-06-10 15:50:00
96921    31911    496    2017-06-10 15:00:00    2017-06-10 15:00:00
96922    31911    827    2017-06-10 03:42:00    2017-06-10 03:42:00
96923    31911    476    2017-06-10 16:58:00    2017-06-10 16:58:00
96924    31911    536    2017-06-10 18:02:00    2017-06-10 18:02:00
96925    31912    706    2017-06-10 19:30:00    2017-06-10 19:30:00
96926    31912    757    2017-06-10 04:05:00    2017-06-10 04:05:00
96927    31912    729    2017-06-10 06:11:00    2017-06-10 06:11:00
96928    31912    548    2017-06-10 06:51:00    2017-06-10 06:51:00
96929    31912    869    2017-06-10 15:49:00    2017-06-10 15:49:00
96930    31913    933    2017-06-10 11:02:00    2017-06-10 11:02:00
96931    31913    943    2017-06-10 11:40:00    2017-06-10 11:40:00
96932    31913    755    2017-06-10 02:10:00    2017-06-10 02:10:00
96933    31913    939    2017-06-10 09:17:00    2017-06-10 09:17:00
96934    31913    880    2017-06-10 14:54:00    2017-06-10 14:54:00
96935    31914    623    2017-06-10 05:30:00    2017-06-10 05:30:00
96936    31914    674    2017-06-10 22:50:00    2017-06-10 22:50:00
96937    31914    612    2017-06-10 13:29:00    2017-06-10 13:29:00
96938    31914    510    2017-06-10 12:53:00    2017-06-10 12:53:00
96939    31914    711    2017-06-10 15:37:00    2017-06-10 15:37:00
96940    31915    618    2017-06-10 06:00:00    2017-06-10 06:00:00
96941    31915    754    2017-06-10 07:11:00    2017-06-10 07:11:00
96942    31915    672    2017-06-10 16:36:00    2017-06-10 16:36:00
96943    31915    921    2017-06-10 06:43:00    2017-06-10 06:43:00
96944    31915    885    2017-06-10 19:06:00    2017-06-10 19:06:00
96945    31916    531    2017-06-10 04:45:00    2017-06-10 04:45:00
96946    31916    486    2017-06-10 19:36:00    2017-06-10 19:36:00
96947    31916    546    2017-06-10 18:02:00    2017-06-10 18:02:00
96948    31916    533    2017-06-10 16:38:00    2017-06-10 16:38:00
96949    31916    710    2017-06-10 20:32:00    2017-06-10 20:32:00
96950    31917    915    2017-06-10 09:29:00    2017-06-10 09:29:00
96951    31917    484    2017-06-10 22:06:00    2017-06-10 22:06:00
96952    31917    882    2017-06-10 16:25:00    2017-06-10 16:25:00
96953    31917    755    2017-06-10 08:45:00    2017-06-10 08:45:00
96954    31917    468    2017-06-10 16:12:00    2017-06-10 16:12:00
96955    31918    733    2017-06-10 19:59:00    2017-06-10 19:59:00
96956    31918    826    2017-06-10 18:04:00    2017-06-10 18:04:00
96957    31918    507    2017-06-10 06:50:00    2017-06-10 06:50:00
96958    31918    837    2017-06-10 21:01:00    2017-06-10 21:01:00
96959    31918    579    2017-06-10 05:18:00    2017-06-10 05:18:00
96960    31919    914    2017-06-10 05:52:00    2017-06-10 05:52:00
96961    31919    866    2017-06-10 20:04:00    2017-06-10 20:04:00
96962    31919    932    2017-06-10 22:03:00    2017-06-10 22:03:00
96963    31919    582    2017-06-10 11:37:00    2017-06-10 11:37:00
96964    31919    837    2017-06-10 10:48:00    2017-06-10 10:48:00
96965    31920    511    2017-06-10 23:38:00    2017-06-10 23:38:00
96966    31920    753    2017-06-10 05:40:00    2017-06-10 05:40:00
96967    31920    940    2017-06-10 08:47:00    2017-06-10 08:47:00
96968    31920    571    2017-06-10 19:12:00    2017-06-10 19:12:00
96969    31920    952    2017-06-10 01:00:00    2017-06-10 01:00:00
96970    31921    791    2017-06-10 12:34:00    2017-06-10 12:34:00
96971    31921    926    2017-06-10 12:05:00    2017-06-10 12:05:00
96972    31921    836    2017-06-10 10:02:00    2017-06-10 10:02:00
96973    31921    755    2017-06-10 12:41:00    2017-06-10 12:41:00
96974    31921    695    2017-06-10 10:19:00    2017-06-10 10:19:00
96975    31922    709    2017-06-10 06:48:00    2017-06-10 06:48:00
96976    31922    548    2017-06-10 11:03:00    2017-06-10 11:03:00
96977    31922    735    2017-06-10 04:15:00    2017-06-10 04:15:00
96978    31922    522    2017-06-10 14:59:00    2017-06-10 14:59:00
96979    31922    874    2017-06-10 15:00:00    2017-06-10 15:00:00
96980    31923    932    2017-06-10 14:14:00    2017-06-10 14:14:00
96981    31923    816    2017-06-10 10:47:00    2017-06-10 10:47:00
96982    31923    594    2017-06-10 10:28:00    2017-06-10 10:28:00
96983    31923    853    2017-06-10 10:04:00    2017-06-10 10:04:00
96984    31923    696    2017-06-10 10:51:00    2017-06-10 10:51:00
96985    31924    856    2017-06-10 08:14:00    2017-06-10 08:14:00
96986    31924    662    2017-06-10 22:16:00    2017-06-10 22:16:00
96987    31924    914    2017-06-10 10:20:00    2017-06-10 10:20:00
96988    31924    630    2017-06-10 14:11:00    2017-06-10 14:11:00
96989    31924    571    2017-06-10 14:17:00    2017-06-10 14:17:00
96990    31925    827    2017-06-10 23:51:00    2017-06-10 23:51:00
96991    31925    795    2017-06-10 13:35:00    2017-06-10 13:35:00
96992    31925    748    2017-06-10 02:51:00    2017-06-10 02:51:00
96993    31925    518    2017-06-10 11:19:00    2017-06-10 11:19:00
96994    31925    482    2017-06-10 23:55:00    2017-06-10 23:55:00
96995    31926    825    2017-06-10 07:53:00    2017-06-10 07:53:00
96996    31926    649    2017-06-10 15:52:00    2017-06-10 15:52:00
96997    31926    800    2017-06-10 17:56:00    2017-06-10 17:56:00
96998    31926    539    2017-06-10 16:27:00    2017-06-10 16:27:00
96999    31926    510    2017-06-10 17:16:00    2017-06-10 17:16:00
97000    31927    787    2017-06-10 01:55:00    2017-06-10 01:55:00
97001    31927    725    2017-06-10 18:59:00    2017-06-10 18:59:00
97002    31927    886    2017-06-10 11:00:00    2017-06-10 11:00:00
97003    31927    599    2017-06-10 17:47:00    2017-06-10 17:47:00
97004    31927    573    2017-06-10 21:53:00    2017-06-10 21:53:00
97005    31928    521    2017-06-10 01:52:00    2017-06-10 01:52:00
97006    31928    590    2017-06-10 05:27:00    2017-06-10 05:27:00
97007    31928    720    2017-06-10 07:15:00    2017-06-10 07:15:00
97008    31928    513    2017-06-10 07:36:00    2017-06-10 07:36:00
97009    31928    758    2017-06-10 17:03:00    2017-06-10 17:03:00
97010    31929    801    2017-06-10 15:45:00    2017-06-10 15:45:00
97011    31929    581    2017-06-10 03:17:00    2017-06-10 03:17:00
97012    31929    939    2017-06-10 19:27:00    2017-06-10 19:27:00
97013    31929    542    2017-06-10 05:49:00    2017-06-10 05:49:00
97014    31929    841    2017-06-10 13:19:00    2017-06-10 13:19:00
97015    31930    498    2017-06-10 02:22:00    2017-06-10 02:22:00
97016    31930    956    2017-06-10 10:19:00    2017-06-10 10:19:00
97017    31930    604    2017-06-10 08:50:00    2017-06-10 08:50:00
97018    31930    948    2017-06-10 07:36:00    2017-06-10 07:36:00
97019    31930    780    2017-06-10 20:50:00    2017-06-10 20:50:00
97020    31931    611    2017-06-11 06:08:00    2017-06-11 06:08:00
97021    31931    472    2017-06-11 04:53:00    2017-06-11 04:53:00
97022    31931    789    2017-06-11 02:41:00    2017-06-11 02:41:00
97023    31931    658    2017-06-11 13:56:00    2017-06-11 13:56:00
97024    31931    612    2017-06-11 22:46:00    2017-06-11 22:46:00
97025    31932    604    2017-06-11 09:36:00    2017-06-11 09:36:00
97026    31932    741    2017-06-11 12:07:00    2017-06-11 12:07:00
97027    31932    959    2017-06-11 02:41:00    2017-06-11 02:41:00
97028    31932    594    2017-06-11 19:27:00    2017-06-11 19:27:00
97029    31932    734    2017-06-11 22:29:00    2017-06-11 22:29:00
97030    31933    518    2017-06-11 14:05:00    2017-06-11 14:05:00
97031    31933    759    2017-06-11 15:54:00    2017-06-11 15:54:00
97032    31933    927    2017-06-11 23:42:00    2017-06-11 23:42:00
97033    31933    833    2017-06-11 06:00:00    2017-06-11 06:00:00
97034    31933    871    2017-06-11 11:59:00    2017-06-11 11:59:00
97035    31934    595    2017-06-11 05:48:00    2017-06-11 05:48:00
97036    31934    854    2017-06-11 11:54:00    2017-06-11 11:54:00
97037    31934    575    2017-06-11 08:49:00    2017-06-11 08:49:00
97038    31934    665    2017-06-11 02:28:00    2017-06-11 02:28:00
97039    31934    540    2017-06-11 17:25:00    2017-06-11 17:25:00
97040    31935    576    2017-06-11 19:12:00    2017-06-11 19:12:00
97041    31935    587    2017-06-11 13:30:00    2017-06-11 13:30:00
97042    31935    920    2017-06-11 01:07:00    2017-06-11 01:07:00
97043    31935    466    2017-06-11 12:31:00    2017-06-11 12:31:00
97044    31935    847    2017-06-11 09:01:00    2017-06-11 09:01:00
97045    31936    508    2017-06-11 23:31:00    2017-06-11 23:31:00
97046    31936    933    2017-06-11 13:25:00    2017-06-11 13:25:00
97047    31936    517    2017-06-11 08:55:00    2017-06-11 08:55:00
97048    31936    566    2017-06-11 18:21:00    2017-06-11 18:21:00
97049    31936    650    2017-06-11 14:21:00    2017-06-11 14:21:00
97050    31937    868    2017-06-11 18:41:00    2017-06-11 18:41:00
97051    31937    784    2017-06-11 19:50:00    2017-06-11 19:50:00
97052    31937    680    2017-06-11 11:01:00    2017-06-11 11:01:00
97053    31937    891    2017-06-11 15:27:00    2017-06-11 15:27:00
97054    31937    722    2017-06-11 12:29:00    2017-06-11 12:29:00
97055    31938    710    2017-06-11 02:29:00    2017-06-11 02:29:00
97056    31938    933    2017-06-11 17:53:00    2017-06-11 17:53:00
97057    31938    807    2017-06-11 14:41:00    2017-06-11 14:41:00
97058    31938    820    2017-06-11 12:48:00    2017-06-11 12:48:00
97059    31938    514    2017-06-11 19:40:00    2017-06-11 19:40:00
97060    31939    773    2017-06-11 10:56:00    2017-06-11 10:56:00
97061    31939    645    2017-06-11 21:47:00    2017-06-11 21:47:00
97062    31939    465    2017-06-11 07:29:00    2017-06-11 07:29:00
97063    31939    656    2017-06-11 20:00:00    2017-06-11 20:00:00
97064    31939    603    2017-06-11 18:07:00    2017-06-11 18:07:00
97065    31940    832    2017-06-11 22:12:00    2017-06-11 22:12:00
97066    31940    678    2017-06-11 18:00:00    2017-06-11 18:00:00
97067    31940    692    2017-06-11 19:51:00    2017-06-11 19:51:00
97068    31940    500    2017-06-11 09:29:00    2017-06-11 09:29:00
97069    31940    766    2017-06-11 20:42:00    2017-06-11 20:42:00
97070    31941    475    2017-06-11 19:34:00    2017-06-11 19:34:00
97071    31941    552    2017-06-11 22:11:00    2017-06-11 22:11:00
97072    31941    661    2017-06-11 02:19:00    2017-06-11 02:19:00
97073    31941    550    2017-06-11 20:14:00    2017-06-11 20:14:00
97074    31941    484    2017-06-11 02:07:00    2017-06-11 02:07:00
97075    31942    697    2017-06-11 13:31:00    2017-06-11 13:31:00
97076    31942    940    2017-06-11 15:41:00    2017-06-11 15:41:00
97077    31942    794    2017-06-11 13:59:00    2017-06-11 13:59:00
97078    31942    539    2017-06-11 22:21:00    2017-06-11 22:21:00
97079    31942    689    2017-06-11 16:53:00    2017-06-11 16:53:00
97080    31943    556    2017-06-11 03:56:00    2017-06-11 03:56:00
97081    31943    905    2017-06-11 16:56:00    2017-06-11 16:56:00
97082    31943    500    2017-06-11 02:13:00    2017-06-11 02:13:00
97083    31943    898    2017-06-11 19:46:00    2017-06-11 19:46:00
97084    31943    946    2017-06-11 21:06:00    2017-06-11 21:06:00
97085    31944    873    2017-06-11 02:54:00    2017-06-11 02:54:00
97086    31944    722    2017-06-11 04:50:00    2017-06-11 04:50:00
97087    31944    529    2017-06-11 07:02:00    2017-06-11 07:02:00
97088    31944    559    2017-06-11 17:37:00    2017-06-11 17:37:00
97089    31944    810    2017-06-11 22:44:00    2017-06-11 22:44:00
97090    31945    943    2017-06-11 05:12:00    2017-06-11 05:12:00
97091    31945    750    2017-06-11 10:56:00    2017-06-11 10:56:00
97092    31945    692    2017-06-11 18:21:00    2017-06-11 18:21:00
97093    31945    801    2017-06-11 09:02:00    2017-06-11 09:02:00
97094    31945    711    2017-06-11 15:24:00    2017-06-11 15:24:00
97095    31946    473    2017-06-11 03:19:00    2017-06-11 03:19:00
97096    31946    859    2017-06-11 06:17:00    2017-06-11 06:17:00
97097    31946    803    2017-06-11 21:38:00    2017-06-11 21:38:00
97098    31946    613    2017-06-11 19:11:00    2017-06-11 19:11:00
97099    31946    553    2017-06-11 04:55:00    2017-06-11 04:55:00
97100    31947    485    2017-06-11 08:56:00    2017-06-11 08:56:00
97101    31947    852    2017-06-11 05:14:00    2017-06-11 05:14:00
97102    31947    609    2017-06-11 15:14:00    2017-06-11 15:14:00
97103    31947    895    2017-06-11 06:00:00    2017-06-11 06:00:00
97104    31947    710    2017-06-11 07:04:00    2017-06-11 07:04:00
97105    31948    520    2017-06-11 16:15:00    2017-06-11 16:15:00
97106    31948    729    2017-06-11 07:02:00    2017-06-11 07:02:00
97107    31948    730    2017-06-11 04:03:00    2017-06-11 04:03:00
97108    31948    880    2017-06-11 13:18:00    2017-06-11 13:18:00
97109    31948    469    2017-06-11 22:00:00    2017-06-11 22:00:00
97110    31949    516    2017-06-11 02:11:00    2017-06-11 02:11:00
97111    31949    815    2017-06-11 22:00:00    2017-06-11 22:00:00
97112    31949    717    2017-06-11 03:38:00    2017-06-11 03:38:00
97113    31949    588    2017-06-11 14:50:00    2017-06-11 14:50:00
97114    31949    897    2017-06-11 17:14:00    2017-06-11 17:14:00
97115    31950    657    2017-06-11 19:32:00    2017-06-11 19:32:00
97116    31950    907    2017-06-11 19:01:00    2017-06-11 19:01:00
97117    31950    543    2017-06-11 12:50:00    2017-06-11 12:50:00
97118    31950    541    2017-06-11 21:29:00    2017-06-11 21:29:00
97119    31950    778    2017-06-11 20:11:00    2017-06-11 20:11:00
97120    31951    514    2017-06-11 05:33:00    2017-06-11 05:33:00
97121    31951    952    2017-06-11 08:46:00    2017-06-11 08:46:00
97122    31951    756    2017-06-11 13:57:00    2017-06-11 13:57:00
97123    31951    810    2017-06-11 22:13:00    2017-06-11 22:13:00
97124    31951    889    2017-06-11 03:22:00    2017-06-11 03:22:00
97125    31952    587    2017-06-11 22:58:00    2017-06-11 22:58:00
97126    31952    706    2017-06-11 15:43:00    2017-06-11 15:43:00
97127    31952    487    2017-06-11 20:24:00    2017-06-11 20:24:00
97128    31952    885    2017-06-11 10:06:00    2017-06-11 10:06:00
97129    31952    759    2017-06-11 05:35:00    2017-06-11 05:35:00
97130    31953    952    2017-06-11 15:36:00    2017-06-11 15:36:00
97131    31953    690    2017-06-11 17:44:00    2017-06-11 17:44:00
97132    31953    662    2017-06-11 22:16:00    2017-06-11 22:16:00
97133    31953    498    2017-06-11 10:53:00    2017-06-11 10:53:00
97134    31953    501    2017-06-11 10:47:00    2017-06-11 10:47:00
97135    31954    846    2017-06-11 22:13:00    2017-06-11 22:13:00
97136    31954    722    2017-06-11 04:22:00    2017-06-11 04:22:00
97137    31954    895    2017-06-11 20:06:00    2017-06-11 20:06:00
97138    31954    807    2017-06-11 09:55:00    2017-06-11 09:55:00
97139    31954    541    2017-06-11 02:46:00    2017-06-11 02:46:00
97140    31955    544    2017-06-11 11:50:00    2017-06-11 11:50:00
97141    31955    652    2017-06-11 16:37:00    2017-06-11 16:37:00
97142    31955    679    2017-06-11 03:10:00    2017-06-11 03:10:00
97143    31955    470    2017-06-11 17:59:00    2017-06-11 17:59:00
97144    31955    608    2017-06-11 10:32:00    2017-06-11 10:32:00
97145    31956    839    2017-06-11 14:49:00    2017-06-11 14:49:00
97146    31956    857    2017-06-11 20:08:00    2017-06-11 20:08:00
97147    31956    942    2017-06-11 23:55:00    2017-06-11 23:55:00
97148    31956    879    2017-06-11 02:39:00    2017-06-11 02:39:00
97149    31956    819    2017-06-11 21:41:00    2017-06-11 21:41:00
97150    31957    664    2017-06-11 23:10:00    2017-06-11 23:10:00
97151    31957    653    2017-06-11 18:18:00    2017-06-11 18:18:00
97152    31957    730    2017-06-11 15:43:00    2017-06-11 15:43:00
97153    31957    755    2017-06-11 23:48:00    2017-06-11 23:48:00
97154    31957    799    2017-06-11 22:23:00    2017-06-11 22:23:00
97155    31958    547    2017-06-11 08:16:00    2017-06-11 08:16:00
97156    31958    470    2017-06-11 04:00:00    2017-06-11 04:00:00
97157    31958    609    2017-06-11 10:20:00    2017-06-11 10:20:00
97158    31958    619    2017-06-11 13:17:00    2017-06-11 13:17:00
97159    31958    553    2017-06-11 22:18:00    2017-06-11 22:18:00
97160    31959    661    2017-06-11 07:17:00    2017-06-11 07:17:00
97161    31959    503    2017-06-11 22:39:00    2017-06-11 22:39:00
97162    31959    745    2017-06-11 11:54:00    2017-06-11 11:54:00
97163    31959    852    2017-06-11 09:07:00    2017-06-11 09:07:00
97164    31959    737    2017-06-11 20:59:00    2017-06-11 20:59:00
97165    31960    662    2017-06-11 15:07:00    2017-06-11 15:07:00
97166    31960    857    2017-06-11 21:42:00    2017-06-11 21:42:00
97167    31960    887    2017-06-11 12:34:00    2017-06-11 12:34:00
97168    31960    819    2017-06-11 09:01:00    2017-06-11 09:01:00
97169    31960    662    2017-06-11 16:37:00    2017-06-11 16:37:00
97170    31961    769    2017-06-11 09:45:00    2017-06-11 09:45:00
97171    31961    912    2017-06-11 15:07:00    2017-06-11 15:07:00
97172    31961    754    2017-06-11 04:09:00    2017-06-11 04:09:00
97173    31961    883    2017-06-11 11:16:00    2017-06-11 11:16:00
97174    31961    852    2017-06-11 14:19:00    2017-06-11 14:19:00
97175    31962    815    2017-06-11 18:41:00    2017-06-11 18:41:00
97176    31962    705    2017-06-11 02:00:00    2017-06-11 02:00:00
97177    31962    769    2017-06-11 16:18:00    2017-06-11 16:18:00
97178    31962    832    2017-06-11 12:29:00    2017-06-11 12:29:00
97179    31962    831    2017-06-11 17:21:00    2017-06-11 17:21:00
97180    31963    756    2017-06-11 07:11:00    2017-06-11 07:11:00
97181    31963    689    2017-06-11 14:53:00    2017-06-11 14:53:00
97182    31963    695    2017-06-11 06:01:00    2017-06-11 06:01:00
97183    31963    685    2017-06-11 09:03:00    2017-06-11 09:03:00
97184    31963    854    2017-06-11 21:41:00    2017-06-11 21:41:00
97185    31964    818    2017-06-11 04:35:00    2017-06-11 04:35:00
97186    31964    819    2017-06-11 10:54:00    2017-06-11 10:54:00
97187    31964    671    2017-06-11 17:07:00    2017-06-11 17:07:00
97188    31964    624    2017-06-11 23:44:00    2017-06-11 23:44:00
97189    31964    505    2017-06-11 05:23:00    2017-06-11 05:23:00
97190    31965    961    2017-06-11 01:10:00    2017-06-11 01:10:00
97191    31965    731    2017-06-11 03:58:00    2017-06-11 03:58:00
97192    31965    850    2017-06-11 06:44:00    2017-06-11 06:44:00
97193    31965    901    2017-06-11 23:03:00    2017-06-11 23:03:00
97194    31965    508    2017-06-11 09:58:00    2017-06-11 09:58:00
97195    31966    777    2017-06-11 23:49:00    2017-06-11 23:49:00
97196    31966    783    2017-06-11 20:29:00    2017-06-11 20:29:00
97197    31966    841    2017-06-11 04:24:00    2017-06-11 04:24:00
97198    31966    926    2017-06-11 13:07:00    2017-06-11 13:07:00
97199    31966    820    2017-06-11 14:16:00    2017-06-11 14:16:00
97200    31967    845    2017-06-11 21:54:00    2017-06-11 21:54:00
97201    31967    748    2017-06-11 18:20:00    2017-06-11 18:20:00
97202    31967    642    2017-06-11 06:39:00    2017-06-11 06:39:00
97203    31967    643    2017-06-11 05:55:00    2017-06-11 05:55:00
97204    31967    555    2017-06-11 09:13:00    2017-06-11 09:13:00
97205    31968    956    2017-06-11 01:41:00    2017-06-11 01:41:00
97206    31968    497    2017-06-11 04:56:00    2017-06-11 04:56:00
97207    31968    957    2017-06-11 12:48:00    2017-06-11 12:48:00
97208    31968    760    2017-06-11 05:14:00    2017-06-11 05:14:00
97209    31968    615    2017-06-11 04:58:00    2017-06-11 04:58:00
97210    31969    737    2017-06-11 12:49:00    2017-06-11 12:49:00
97211    31969    523    2017-06-11 18:31:00    2017-06-11 18:31:00
97212    31969    776    2017-06-11 11:18:00    2017-06-11 11:18:00
97213    31969    537    2017-06-11 18:11:00    2017-06-11 18:11:00
97214    31969    895    2017-06-11 22:00:00    2017-06-11 22:00:00
97215    31970    930    2017-06-11 17:36:00    2017-06-11 17:36:00
97216    31970    783    2017-06-11 06:36:00    2017-06-11 06:36:00
97217    31970    773    2017-06-11 02:13:00    2017-06-11 02:13:00
97218    31970    931    2017-06-11 21:53:00    2017-06-11 21:53:00
97219    31970    941    2017-06-11 15:20:00    2017-06-11 15:20:00
97220    31971    560    2017-06-11 05:31:00    2017-06-11 05:31:00
97221    31971    961    2017-06-11 13:00:00    2017-06-11 13:00:00
97222    31971    741    2017-06-11 06:10:00    2017-06-11 06:10:00
97223    31971    807    2017-06-11 01:19:00    2017-06-11 01:19:00
97224    31971    852    2017-06-11 15:18:00    2017-06-11 15:18:00
97225    31972    509    2017-06-11 20:08:00    2017-06-11 20:08:00
97226    31972    930    2017-06-11 11:40:00    2017-06-11 11:40:00
97227    31972    534    2017-06-11 04:01:00    2017-06-11 04:01:00
97228    31972    665    2017-06-11 06:01:00    2017-06-11 06:01:00
97229    31972    731    2017-06-11 01:00:00    2017-06-11 01:00:00
97230    31973    766    2017-06-11 21:56:00    2017-06-11 21:56:00
97231    31973    669    2017-06-11 05:15:00    2017-06-11 05:15:00
97232    31973    549    2017-06-11 07:32:00    2017-06-11 07:32:00
97233    31973    638    2017-06-11 19:02:00    2017-06-11 19:02:00
97234    31973    720    2017-06-11 21:53:00    2017-06-11 21:53:00
97235    31974    649    2017-06-11 02:23:00    2017-06-11 02:23:00
97236    31974    855    2017-06-11 07:39:00    2017-06-11 07:39:00
97237    31974    489    2017-06-11 14:18:00    2017-06-11 14:18:00
97238    31974    920    2017-06-11 07:01:00    2017-06-11 07:01:00
97239    31974    631    2017-06-11 15:12:00    2017-06-11 15:12:00
97240    31975    578    2017-06-11 14:52:00    2017-06-11 14:52:00
97241    31975    881    2017-06-11 14:00:00    2017-06-11 14:00:00
97242    31975    486    2017-06-11 15:04:00    2017-06-11 15:04:00
97243    31975    749    2017-06-11 02:21:00    2017-06-11 02:21:00
97244    31975    552    2017-06-11 11:06:00    2017-06-11 11:06:00
97245    31976    896    2017-06-11 14:27:00    2017-06-11 14:27:00
97246    31976    768    2017-06-11 15:53:00    2017-06-11 15:53:00
97247    31976    592    2017-06-11 14:31:00    2017-06-11 14:31:00
97248    31976    870    2017-06-11 02:59:00    2017-06-11 02:59:00
97249    31976    504    2017-06-11 22:17:00    2017-06-11 22:17:00
97250    31977    960    2017-06-11 14:20:00    2017-06-11 14:20:00
97251    31977    481    2017-06-11 07:03:00    2017-06-11 07:03:00
97252    31977    824    2017-06-11 19:21:00    2017-06-11 19:21:00
97253    31977    784    2017-06-11 13:51:00    2017-06-11 13:51:00
97254    31977    929    2017-06-11 07:33:00    2017-06-11 07:33:00
97255    31978    864    2017-06-11 05:15:00    2017-06-11 05:15:00
97256    31978    670    2017-06-11 20:24:00    2017-06-11 20:24:00
97257    31978    502    2017-06-11 10:43:00    2017-06-11 10:43:00
97258    31978    480    2017-06-11 18:08:00    2017-06-11 18:08:00
97259    31978    741    2017-06-11 13:53:00    2017-06-11 13:53:00
97260    31979    732    2017-06-11 13:59:00    2017-06-11 13:59:00
97261    31979    696    2017-06-11 15:51:00    2017-06-11 15:51:00
97262    31979    570    2017-06-11 16:46:00    2017-06-11 16:46:00
97263    31979    690    2017-06-11 07:20:00    2017-06-11 07:20:00
97264    31979    578    2017-06-11 19:42:00    2017-06-11 19:42:00
97265    31980    719    2017-06-11 18:27:00    2017-06-11 18:27:00
97266    31980    525    2017-06-11 03:33:00    2017-06-11 03:33:00
97267    31980    793    2017-06-11 11:48:00    2017-06-11 11:48:00
97268    31980    676    2017-06-11 08:21:00    2017-06-11 08:21:00
97269    31980    518    2017-06-11 11:38:00    2017-06-11 11:38:00
97270    31981    606    2017-06-12 12:26:00    2017-06-12 12:26:00
97271    31981    637    2017-06-12 07:38:00    2017-06-12 07:38:00
97272    31981    899    2017-06-12 17:02:00    2017-06-12 17:02:00
97273    31981    724    2017-06-12 18:13:00    2017-06-12 18:13:00
97274    31981    870    2017-06-12 07:45:00    2017-06-12 07:45:00
97275    31982    482    2017-06-12 20:41:00    2017-06-12 20:41:00
97276    31982    775    2017-06-12 19:48:00    2017-06-12 19:48:00
97277    31982    572    2017-06-12 03:43:00    2017-06-12 03:43:00
97278    31982    719    2017-06-12 03:35:00    2017-06-12 03:35:00
97279    31982    530    2017-06-12 13:35:00    2017-06-12 13:35:00
97280    31983    730    2017-06-12 02:40:00    2017-06-12 02:40:00
97281    31983    670    2017-06-12 08:18:00    2017-06-12 08:18:00
97282    31983    647    2017-06-12 23:11:00    2017-06-12 23:11:00
97283    31983    806    2017-06-12 23:50:00    2017-06-12 23:50:00
97284    31983    907    2017-06-12 21:51:00    2017-06-12 21:51:00
97285    31984    752    2017-06-12 06:54:00    2017-06-12 06:54:00
97286    31984    604    2017-06-12 17:41:00    2017-06-12 17:41:00
97287    31984    646    2017-06-12 21:32:00    2017-06-12 21:32:00
97288    31984    540    2017-06-12 17:19:00    2017-06-12 17:19:00
97289    31984    798    2017-06-12 16:23:00    2017-06-12 16:23:00
97290    31985    739    2017-06-12 05:57:00    2017-06-12 05:57:00
97291    31985    483    2017-06-12 18:31:00    2017-06-12 18:31:00
97292    31985    706    2017-06-12 06:54:00    2017-06-12 06:54:00
97293    31985    485    2017-06-12 23:24:00    2017-06-12 23:24:00
97294    31985    488    2017-06-12 15:09:00    2017-06-12 15:09:00
97295    31986    645    2017-06-12 01:10:00    2017-06-12 01:10:00
97296    31986    702    2017-06-12 18:24:00    2017-06-12 18:24:00
97297    31986    743    2017-06-12 16:29:00    2017-06-12 16:29:00
97298    31986    874    2017-06-12 08:54:00    2017-06-12 08:54:00
97299    31986    525    2017-06-12 14:37:00    2017-06-12 14:37:00
97300    31987    885    2017-06-12 04:48:00    2017-06-12 04:48:00
97301    31987    568    2017-06-12 09:55:00    2017-06-12 09:55:00
97302    31987    788    2017-06-12 11:39:00    2017-06-12 11:39:00
97303    31987    540    2017-06-12 04:19:00    2017-06-12 04:19:00
97304    31987    644    2017-06-12 09:02:00    2017-06-12 09:02:00
97305    31988    951    2017-06-12 11:52:00    2017-06-12 11:52:00
97306    31988    546    2017-06-12 18:32:00    2017-06-12 18:32:00
97307    31988    587    2017-06-12 17:42:00    2017-06-12 17:42:00
97308    31988    951    2017-06-12 06:57:00    2017-06-12 06:57:00
97309    31988    584    2017-06-12 15:57:00    2017-06-12 15:57:00
97310    31989    508    2017-06-12 20:09:00    2017-06-12 20:09:00
97311    31989    648    2017-06-12 06:49:00    2017-06-12 06:49:00
97312    31989    743    2017-06-12 16:43:00    2017-06-12 16:43:00
97313    31989    473    2017-06-12 05:59:00    2017-06-12 05:59:00
97314    31989    701    2017-06-12 06:32:00    2017-06-12 06:32:00
97315    31990    594    2017-06-12 19:00:00    2017-06-12 19:00:00
97316    31990    703    2017-06-12 08:06:00    2017-06-12 08:06:00
97317    31990    615    2017-06-12 10:53:00    2017-06-12 10:53:00
97318    31990    500    2017-06-12 05:08:00    2017-06-12 05:08:00
97319    31990    833    2017-06-12 17:11:00    2017-06-12 17:11:00
97320    31991    635    2017-06-12 13:17:00    2017-06-12 13:17:00
97321    31991    659    2017-06-12 14:30:00    2017-06-12 14:30:00
97322    31991    624    2017-06-12 21:11:00    2017-06-12 21:11:00
97323    31991    630    2017-06-12 12:10:00    2017-06-12 12:10:00
97324    31991    804    2017-06-12 19:11:00    2017-06-12 19:11:00
97325    31992    845    2017-06-12 07:10:00    2017-06-12 07:10:00
97326    31992    587    2017-06-12 10:06:00    2017-06-12 10:06:00
97327    31992    878    2017-06-12 12:45:00    2017-06-12 12:45:00
97328    31992    744    2017-06-12 16:02:00    2017-06-12 16:02:00
97329    31992    608    2017-06-12 03:03:00    2017-06-12 03:03:00
97330    31993    863    2017-06-12 23:08:00    2017-06-12 23:08:00
97331    31993    774    2017-06-12 05:36:00    2017-06-12 05:36:00
97332    31993    754    2017-06-12 21:37:00    2017-06-12 21:37:00
97333    31993    832    2017-06-12 07:36:00    2017-06-12 07:36:00
97334    31993    600    2017-06-12 01:27:00    2017-06-12 01:27:00
97335    31994    862    2017-06-12 10:45:00    2017-06-12 10:45:00
97336    31994    470    2017-06-12 22:36:00    2017-06-12 22:36:00
97337    31994    759    2017-06-12 08:15:00    2017-06-12 08:15:00
97338    31994    683    2017-06-12 17:00:00    2017-06-12 17:00:00
97339    31994    711    2017-06-12 01:58:00    2017-06-12 01:58:00
97340    31995    885    2017-06-12 12:07:00    2017-06-12 12:07:00
97341    31995    672    2017-06-12 17:30:00    2017-06-12 17:30:00
97342    31995    526    2017-06-12 17:25:00    2017-06-12 17:25:00
97343    31995    861    2017-06-12 16:00:00    2017-06-12 16:00:00
97344    31995    530    2017-06-12 10:26:00    2017-06-12 10:26:00
97345    31996    721    2017-06-12 19:27:00    2017-06-12 19:27:00
97346    31996    591    2017-06-12 06:29:00    2017-06-12 06:29:00
97347    31996    725    2017-06-12 02:33:00    2017-06-12 02:33:00
97348    31996    660    2017-06-12 14:01:00    2017-06-12 14:01:00
97349    31996    517    2017-06-12 21:34:00    2017-06-12 21:34:00
97350    31997    823    2017-06-12 13:40:00    2017-06-12 13:40:00
97351    31997    947    2017-06-12 11:00:00    2017-06-12 11:00:00
97352    31997    845    2017-06-12 01:11:00    2017-06-12 01:11:00
97353    31997    705    2017-06-12 06:10:00    2017-06-12 06:10:00
97354    31997    583    2017-06-12 10:06:00    2017-06-12 10:06:00
97355    31998    733    2017-06-12 08:03:00    2017-06-12 08:03:00
97356    31998    738    2017-06-12 09:58:00    2017-06-12 09:58:00
97357    31998    491    2017-06-12 09:25:00    2017-06-12 09:25:00
97358    31998    718    2017-06-12 03:01:00    2017-06-12 03:01:00
97359    31998    924    2017-06-12 12:16:00    2017-06-12 12:16:00
97360    31999    552    2017-06-12 05:16:00    2017-06-12 05:16:00
97361    31999    517    2017-06-12 17:18:00    2017-06-12 17:18:00
97362    31999    721    2017-06-12 17:37:00    2017-06-12 17:37:00
97363    31999    645    2017-06-12 05:51:00    2017-06-12 05:51:00
97364    31999    681    2017-06-12 03:55:00    2017-06-12 03:55:00
97365    32000    822    2017-06-12 21:53:00    2017-06-12 21:53:00
97366    32000    680    2017-06-12 04:03:00    2017-06-12 04:03:00
97367    32000    856    2017-06-12 05:08:00    2017-06-12 05:08:00
97368    32000    640    2017-06-12 20:04:00    2017-06-12 20:04:00
97369    32000    887    2017-06-12 15:06:00    2017-06-12 15:06:00
97370    32001    629    2017-06-12 05:59:00    2017-06-12 05:59:00
97371    32001    912    2017-06-12 15:02:00    2017-06-12 15:02:00
97372    32001    944    2017-06-12 10:26:00    2017-06-12 10:26:00
97373    32001    658    2017-06-12 03:30:00    2017-06-12 03:30:00
97374    32001    771    2017-06-12 07:34:00    2017-06-12 07:34:00
97375    32002    528    2017-06-12 11:26:00    2017-06-12 11:26:00
97376    32002    686    2017-06-12 03:33:00    2017-06-12 03:33:00
97377    32002    509    2017-06-12 04:44:00    2017-06-12 04:44:00
97378    32002    677    2017-06-12 01:01:00    2017-06-12 01:01:00
97379    32002    928    2017-06-12 20:29:00    2017-06-12 20:29:00
97380    32003    725    2017-06-12 18:38:00    2017-06-12 18:38:00
97381    32003    907    2017-06-12 02:13:00    2017-06-12 02:13:00
97382    32003    646    2017-06-12 17:46:00    2017-06-12 17:46:00
97383    32003    624    2017-06-12 11:48:00    2017-06-12 11:48:00
97384    32003    921    2017-06-12 05:51:00    2017-06-12 05:51:00
97385    32004    782    2017-06-12 04:55:00    2017-06-12 04:55:00
97386    32004    488    2017-06-12 06:42:00    2017-06-12 06:42:00
97387    32004    722    2017-06-12 20:07:00    2017-06-12 20:07:00
97388    32004    490    2017-06-12 18:41:00    2017-06-12 18:41:00
97389    32004    588    2017-06-12 03:41:00    2017-06-12 03:41:00
97390    32005    830    2017-06-12 11:59:00    2017-06-12 11:59:00
97391    32005    739    2017-06-12 09:58:00    2017-06-12 09:58:00
97392    32005    932    2017-06-12 11:20:00    2017-06-12 11:20:00
97393    32005    509    2017-06-12 06:17:00    2017-06-12 06:17:00
97394    32005    707    2017-06-12 17:16:00    2017-06-12 17:16:00
97395    32006    627    2017-06-12 09:55:00    2017-06-12 09:55:00
97397    32006    502    2017-06-12 03:37:00    2017-06-12 03:37:00
97398    32006    498    2017-06-12 14:45:00    2017-06-12 14:45:00
97399    32006    751    2017-06-12 10:32:00    2017-06-12 10:32:00
97400    32007    824    2017-06-12 15:51:00    2017-06-12 15:51:00
97401    32007    530    2017-06-12 04:29:00    2017-06-12 04:29:00
97402    32007    825    2017-06-12 08:07:00    2017-06-12 08:07:00
97403    32007    646    2017-06-12 14:39:00    2017-06-12 14:39:00
97404    32007    821    2017-06-12 06:26:00    2017-06-12 06:26:00
97405    32008    774    2017-06-12 13:45:00    2017-06-12 13:45:00
97406    32008    601    2017-06-12 11:39:00    2017-06-12 11:39:00
97407    32008    846    2017-06-12 11:29:00    2017-06-12 11:29:00
97408    32008    780    2017-06-12 18:36:00    2017-06-12 18:36:00
97409    32008    841    2017-06-12 21:52:00    2017-06-12 21:52:00
97410    32009    606    2017-06-12 02:46:00    2017-06-12 02:46:00
97411    32009    490    2017-06-12 02:55:00    2017-06-12 02:55:00
97412    32009    488    2017-06-12 09:52:00    2017-06-12 09:52:00
97413    32009    636    2017-06-12 08:56:00    2017-06-12 08:56:00
97414    32009    616    2017-06-12 14:19:00    2017-06-12 14:19:00
97415    32010    875    2017-06-12 02:44:00    2017-06-12 02:44:00
97416    32010    714    2017-06-12 07:34:00    2017-06-12 07:34:00
97417    32010    882    2017-06-12 17:02:00    2017-06-12 17:02:00
97418    32010    925    2017-06-12 18:07:00    2017-06-12 18:07:00
97419    32010    634    2017-06-12 03:45:00    2017-06-12 03:45:00
97420    32011    797    2017-06-12 04:37:00    2017-06-12 04:37:00
97421    32011    615    2017-06-12 05:38:00    2017-06-12 05:38:00
97422    32011    728    2017-06-12 06:23:00    2017-06-12 06:23:00
97423    32011    791    2017-06-12 10:19:00    2017-06-12 10:19:00
97424    32011    790    2017-06-12 15:52:00    2017-06-12 15:52:00
97425    32012    723    2017-06-12 21:02:00    2017-06-12 21:02:00
97426    32012    523    2017-06-12 12:34:00    2017-06-12 12:34:00
97427    32012    897    2017-06-12 12:50:00    2017-06-12 12:50:00
97428    32012    862    2017-06-12 21:01:00    2017-06-12 21:01:00
97429    32012    596    2017-06-12 04:46:00    2017-06-12 04:46:00
97430    32013    896    2017-06-12 03:49:00    2017-06-12 03:49:00
97431    32013    632    2017-06-12 16:44:00    2017-06-12 16:44:00
97432    32013    815    2017-06-12 17:33:00    2017-06-12 17:33:00
97433    32013    852    2017-06-12 20:35:00    2017-06-12 20:35:00
97434    32013    950    2017-06-12 16:45:00    2017-06-12 16:45:00
97435    32014    700    2017-06-12 06:19:00    2017-06-12 06:19:00
97436    32014    766    2017-06-12 23:42:00    2017-06-12 23:42:00
97437    32014    831    2017-06-12 20:18:00    2017-06-12 20:18:00
97438    32014    483    2017-06-12 14:42:00    2017-06-12 14:42:00
97439    32014    842    2017-06-12 07:03:00    2017-06-12 07:03:00
97440    32015    734    2017-06-12 05:03:00    2017-06-12 05:03:00
97441    32015    702    2017-06-12 14:30:00    2017-06-12 14:30:00
97442    32015    528    2017-06-12 09:17:00    2017-06-12 09:17:00
97443    32015    744    2017-06-12 10:55:00    2017-06-12 10:55:00
97444    32015    751    2017-06-12 15:50:00    2017-06-12 15:50:00
97445    32016    883    2017-06-12 19:10:00    2017-06-12 19:10:00
97446    32016    775    2017-06-12 17:34:00    2017-06-12 17:34:00
97447    32016    638    2017-06-12 20:26:00    2017-06-12 20:26:00
97448    32016    614    2017-06-12 01:42:00    2017-06-12 01:42:00
97449    32016    519    2017-06-12 09:56:00    2017-06-12 09:56:00
97450    32017    776    2017-06-12 16:31:00    2017-06-12 16:31:00
97451    32017    906    2017-06-12 13:56:00    2017-06-12 13:56:00
97452    32017    644    2017-06-12 05:10:00    2017-06-12 05:10:00
97453    32017    629    2017-06-12 02:48:00    2017-06-12 02:48:00
97454    32017    956    2017-06-12 22:44:00    2017-06-12 22:44:00
97455    32018    721    2017-06-12 18:47:00    2017-06-12 18:47:00
97456    32018    557    2017-06-12 05:21:00    2017-06-12 05:21:00
97457    32018    512    2017-06-12 04:20:00    2017-06-12 04:20:00
97458    32018    906    2017-06-12 10:27:00    2017-06-12 10:27:00
97459    32018    896    2017-06-12 21:12:00    2017-06-12 21:12:00
97460    32019    886    2017-06-12 20:24:00    2017-06-12 20:24:00
97461    32019    930    2017-06-12 07:16:00    2017-06-12 07:16:00
97462    32019    960    2017-06-12 21:37:00    2017-06-12 21:37:00
97463    32019    771    2017-06-12 22:28:00    2017-06-12 22:28:00
97464    32019    767    2017-06-12 13:42:00    2017-06-12 13:42:00
97465    32020    489    2017-06-12 01:56:00    2017-06-12 01:56:00
97466    32020    679    2017-06-12 10:41:00    2017-06-12 10:41:00
97467    32020    737    2017-06-12 04:59:00    2017-06-12 04:59:00
97468    32020    683    2017-06-12 16:33:00    2017-06-12 16:33:00
97469    32020    506    2017-06-12 07:30:00    2017-06-12 07:30:00
97470    32021    884    2017-06-12 19:45:00    2017-06-12 19:45:00
97471    32021    615    2017-06-12 22:37:00    2017-06-12 22:37:00
97472    32021    475    2017-06-12 10:20:00    2017-06-12 10:20:00
97473    32021    832    2017-06-12 06:01:00    2017-06-12 06:01:00
97474    32021    705    2017-06-12 03:11:00    2017-06-12 03:11:00
97475    32022    682    2017-06-12 05:45:00    2017-06-12 05:45:00
97476    32022    678    2017-06-12 05:59:00    2017-06-12 05:59:00
97477    32022    561    2017-06-12 06:51:00    2017-06-12 06:51:00
97478    32022    952    2017-06-12 10:34:00    2017-06-12 10:34:00
97479    32022    570    2017-06-12 11:23:00    2017-06-12 11:23:00
97480    32023    795    2017-06-12 01:23:00    2017-06-12 01:23:00
97481    32023    708    2017-06-12 16:02:00    2017-06-12 16:02:00
97482    32023    872    2017-06-12 19:57:00    2017-06-12 19:57:00
97483    32023    856    2017-06-12 08:54:00    2017-06-12 08:54:00
97484    32023    687    2017-06-12 06:06:00    2017-06-12 06:06:00
97485    32024    686    2017-06-12 23:00:00    2017-06-12 23:00:00
97486    32024    764    2017-06-12 12:00:00    2017-06-12 12:00:00
97487    32024    736    2017-06-12 07:07:00    2017-06-12 07:07:00
97488    32024    681    2017-06-12 18:27:00    2017-06-12 18:27:00
97489    32024    725    2017-06-12 23:27:00    2017-06-12 23:27:00
97490    32025    902    2017-06-12 09:17:00    2017-06-12 09:17:00
97491    32025    852    2017-06-12 18:23:00    2017-06-12 18:23:00
97492    32025    603    2017-06-12 18:43:00    2017-06-12 18:43:00
97493    32025    553    2017-06-12 02:22:00    2017-06-12 02:22:00
97494    32025    592    2017-06-12 02:30:00    2017-06-12 02:30:00
97495    32026    899    2017-06-12 05:24:00    2017-06-12 05:24:00
97496    32026    827    2017-06-12 14:14:00    2017-06-12 14:14:00
97497    32026    495    2017-06-12 20:04:00    2017-06-12 20:04:00
97498    32026    771    2017-06-12 17:29:00    2017-06-12 17:29:00
97499    32026    776    2017-06-12 13:34:00    2017-06-12 13:34:00
97500    32027    750    2017-06-12 06:04:00    2017-06-12 06:04:00
97501    32027    750    2017-06-12 02:11:00    2017-06-12 02:11:00
97502    32027    817    2017-06-12 12:54:00    2017-06-12 12:54:00
97503    32027    851    2017-06-12 14:28:00    2017-06-12 14:28:00
97504    32027    698    2017-06-12 06:15:00    2017-06-12 06:15:00
97505    32028    578    2017-06-12 13:22:00    2017-06-12 13:22:00
97506    32028    526    2017-06-12 11:45:00    2017-06-12 11:45:00
97507    32028    754    2017-06-12 09:03:00    2017-06-12 09:03:00
97508    32028    943    2017-06-12 06:16:00    2017-06-12 06:16:00
97509    32028    821    2017-06-12 05:22:00    2017-06-12 05:22:00
97510    32029    691    2017-06-12 03:38:00    2017-06-12 03:38:00
97511    32029    700    2017-06-12 21:18:00    2017-06-12 21:18:00
97512    32029    669    2017-06-12 07:00:00    2017-06-12 07:00:00
97513    32029    744    2017-06-12 08:08:00    2017-06-12 08:08:00
97514    32029    916    2017-06-12 06:46:00    2017-06-12 06:46:00
97515    32030    577    2017-06-12 19:40:00    2017-06-12 19:40:00
97516    32030    655    2017-06-12 13:23:00    2017-06-12 13:23:00
97517    32030    647    2017-06-12 18:04:00    2017-06-12 18:04:00
97518    32030    617    2017-06-12 03:14:00    2017-06-12 03:14:00
97519    32030    919    2017-06-12 16:12:00    2017-06-12 16:12:00
97520    32031    529    2017-06-12 08:58:00    2017-06-12 08:58:00
97521    32031    737    2017-06-12 17:36:00    2017-06-12 17:36:00
97522    32031    693    2017-06-12 17:35:00    2017-06-12 17:35:00
97523    32031    831    2017-06-12 21:31:00    2017-06-12 21:31:00
97524    32031    952    2017-06-12 07:10:00    2017-06-12 07:10:00
97525    32032    733    2017-06-12 22:20:00    2017-06-12 22:20:00
97526    32032    651    2017-06-12 07:36:00    2017-06-12 07:36:00
97527    32032    563    2017-06-12 13:56:00    2017-06-12 13:56:00
97528    32032    557    2017-06-12 02:21:00    2017-06-12 02:21:00
97529    32032    607    2017-06-12 21:12:00    2017-06-12 21:12:00
97530    32033    852    2017-06-12 23:48:00    2017-06-12 23:48:00
97531    32033    835    2017-06-12 22:25:00    2017-06-12 22:25:00
97532    32033    952    2017-06-12 12:51:00    2017-06-12 12:51:00
97533    32033    653    2017-06-12 01:24:00    2017-06-12 01:24:00
97534    32033    961    2017-06-12 14:11:00    2017-06-12 14:11:00
97535    32034    716    2017-06-12 14:31:00    2017-06-12 14:31:00
97536    32034    858    2017-06-12 14:44:00    2017-06-12 14:44:00
97537    32034    525    2017-06-12 09:37:00    2017-06-12 09:37:00
97538    32034    887    2017-06-12 17:45:00    2017-06-12 17:45:00
97539    32034    943    2017-06-12 15:14:00    2017-06-12 15:14:00
97540    32035    707    2017-06-12 11:47:00    2017-06-12 11:47:00
97541    32035    572    2017-06-12 20:01:00    2017-06-12 20:01:00
97542    32035    534    2017-06-12 09:15:00    2017-06-12 09:15:00
97543    32035    465    2017-06-12 18:48:00    2017-06-12 18:48:00
97544    32035    615    2017-06-12 02:49:00    2017-06-12 02:49:00
97545    32036    581    2017-06-12 17:18:00    2017-06-12 17:18:00
97546    32036    666    2017-06-12 08:47:00    2017-06-12 08:47:00
97547    32036    890    2017-06-12 10:08:00    2017-06-12 10:08:00
97548    32036    863    2017-06-12 16:20:00    2017-06-12 16:20:00
97549    32036    887    2017-06-12 07:40:00    2017-06-12 07:40:00
97550    32037    895    2017-06-12 21:03:00    2017-06-12 21:03:00
97551    32037    644    2017-06-12 18:34:00    2017-06-12 18:34:00
97552    32037    471    2017-06-12 06:59:00    2017-06-12 06:59:00
97553    32037    848    2017-06-12 22:46:00    2017-06-12 22:46:00
97554    32037    844    2017-06-12 21:03:00    2017-06-12 21:03:00
97555    32038    833    2017-06-12 21:03:00    2017-06-12 21:03:00
97556    32038    486    2017-06-12 07:49:00    2017-06-12 07:49:00
97557    32038    663    2017-06-12 12:40:00    2017-06-12 12:40:00
97558    32038    624    2017-06-12 07:39:00    2017-06-12 07:39:00
97559    32038    693    2017-06-12 10:38:00    2017-06-12 10:38:00
97560    32039    855    2017-06-12 11:26:00    2017-06-12 11:26:00
97561    32039    757    2017-06-12 05:57:00    2017-06-12 05:57:00
97562    32039    835    2017-06-12 20:25:00    2017-06-12 20:25:00
97563    32039    480    2017-06-12 22:35:00    2017-06-12 22:35:00
97564    32039    529    2017-06-12 16:36:00    2017-06-12 16:36:00
97565    32040    799    2017-06-12 12:51:00    2017-06-12 12:51:00
97566    32040    697    2017-06-12 18:21:00    2017-06-12 18:21:00
97567    32040    816    2017-06-12 11:23:00    2017-06-12 11:23:00
97568    32040    938    2017-06-12 01:52:00    2017-06-12 01:52:00
97569    32040    697    2017-06-12 23:55:00    2017-06-12 23:55:00
97570    32041    517    2017-06-12 21:48:00    2017-06-12 21:48:00
97571    32041    537    2017-06-12 23:45:00    2017-06-12 23:45:00
97572    32041    835    2017-06-12 10:14:00    2017-06-12 10:14:00
97573    32041    710    2017-06-12 09:08:00    2017-06-12 09:08:00
97574    32041    933    2017-06-12 08:46:00    2017-06-12 08:46:00
97575    32042    773    2017-06-12 03:20:00    2017-06-12 03:20:00
97576    32042    899    2017-06-12 12:42:00    2017-06-12 12:42:00
97577    32042    806    2017-06-12 21:52:00    2017-06-12 21:52:00
97578    32042    553    2017-06-12 15:08:00    2017-06-12 15:08:00
97579    32042    879    2017-06-12 21:44:00    2017-06-12 21:44:00
97580    32043    886    2017-06-12 05:11:00    2017-06-12 05:11:00
97581    32043    769    2017-06-12 13:29:00    2017-06-12 13:29:00
97582    32043    844    2017-06-12 22:17:00    2017-06-12 22:17:00
97583    32043    823    2017-06-12 23:14:00    2017-06-12 23:14:00
97584    32043    653    2017-06-12 08:41:00    2017-06-12 08:41:00
97585    32044    477    2017-06-12 03:22:00    2017-06-12 03:22:00
97586    32044    665    2017-06-12 16:10:00    2017-06-12 16:10:00
97587    32044    694    2017-06-12 02:46:00    2017-06-12 02:46:00
97588    32044    843    2017-06-12 22:00:00    2017-06-12 22:00:00
97589    32044    583    2017-06-12 15:00:00    2017-06-12 15:00:00
97590    32045    740    2017-06-12 09:55:00    2017-06-12 09:55:00
97591    32045    817    2017-06-12 11:21:00    2017-06-12 11:21:00
97592    32045    735    2017-06-12 09:49:00    2017-06-12 09:49:00
97593    32045    484    2017-06-12 22:20:00    2017-06-12 22:20:00
97594    32045    861    2017-06-12 19:03:00    2017-06-12 19:03:00
97595    32046    770    2017-06-12 13:05:00    2017-06-12 13:05:00
97596    32046    721    2017-06-12 11:40:00    2017-06-12 11:40:00
97597    32046    486    2017-06-12 11:16:00    2017-06-12 11:16:00
97598    32046    603    2017-06-12 21:57:00    2017-06-12 21:57:00
97599    32046    546    2017-06-12 03:15:00    2017-06-12 03:15:00
97600    32047    654    2017-06-12 09:08:00    2017-06-12 09:08:00
97601    32047    594    2017-06-12 06:33:00    2017-06-12 06:33:00
97602    32047    894    2017-06-12 12:00:00    2017-06-12 12:00:00
97603    32047    937    2017-06-12 12:03:00    2017-06-12 12:03:00
97604    32047    602    2017-06-12 03:50:00    2017-06-12 03:50:00
97605    32048    919    2017-06-12 10:49:00    2017-06-12 10:49:00
97606    32048    530    2017-06-12 17:58:00    2017-06-12 17:58:00
97607    32048    617    2017-06-12 10:25:00    2017-06-12 10:25:00
97608    32048    648    2017-06-12 19:38:00    2017-06-12 19:38:00
97609    32048    657    2017-06-12 21:57:00    2017-06-12 21:57:00
97610    32049    615    2017-06-12 20:06:00    2017-06-12 20:06:00
97611    32049    562    2017-06-12 15:33:00    2017-06-12 15:33:00
97612    32049    581    2017-06-12 07:48:00    2017-06-12 07:48:00
97613    32049    577    2017-06-12 12:20:00    2017-06-12 12:20:00
97614    32049    465    2017-06-12 14:04:00    2017-06-12 14:04:00
97615    32050    509    2017-06-12 20:21:00    2017-06-12 20:21:00
97616    32050    957    2017-06-12 16:00:00    2017-06-12 16:00:00
97617    32050    600    2017-06-12 18:57:00    2017-06-12 18:57:00
97618    32050    895    2017-06-12 19:36:00    2017-06-12 19:36:00
97619    32050    740    2017-06-12 19:39:00    2017-06-12 19:39:00
97396    32048    488    2017-06-12 23:56:00    2017-06-13 06:27:55.823647
97620    32051    544    2017-06-13 06:20:00    2017-06-13 06:20:00
97621    32051    824    2017-06-13 03:45:00    2017-06-13 03:45:00
97622    32051    645    2017-06-13 23:06:00    2017-06-13 23:06:00
97623    32051    848    2017-06-13 06:18:00    2017-06-13 06:18:00
97624    32051    935    2017-06-13 11:57:00    2017-06-13 11:57:00
97625    32052    636    2017-06-13 03:53:00    2017-06-13 03:53:00
97626    32052    822    2017-06-13 12:25:00    2017-06-13 12:25:00
97627    32052    608    2017-06-13 21:00:00    2017-06-13 21:00:00
97628    32052    594    2017-06-13 01:21:00    2017-06-13 01:21:00
97629    32052    518    2017-06-13 01:25:00    2017-06-13 01:25:00
97630    32053    741    2017-06-13 15:18:00    2017-06-13 15:18:00
97631    32053    500    2017-06-13 02:34:00    2017-06-13 02:34:00
97632    32053    720    2017-06-13 11:05:00    2017-06-13 11:05:00
97633    32053    541    2017-06-13 17:12:00    2017-06-13 17:12:00
97634    32053    791    2017-06-13 15:48:00    2017-06-13 15:48:00
97635    32054    687    2017-06-13 21:39:00    2017-06-13 21:39:00
97636    32054    686    2017-06-13 03:26:00    2017-06-13 03:26:00
97637    32054    868    2017-06-13 23:11:00    2017-06-13 23:11:00
97638    32054    954    2017-06-13 05:11:00    2017-06-13 05:11:00
97639    32054    492    2017-06-13 09:01:00    2017-06-13 09:01:00
97640    32055    648    2017-06-13 21:29:00    2017-06-13 21:29:00
97641    32055    828    2017-06-13 06:04:00    2017-06-13 06:04:00
97642    32055    522    2017-06-13 01:01:00    2017-06-13 01:01:00
97643    32055    841    2017-06-13 18:24:00    2017-06-13 18:24:00
97644    32055    890    2017-06-13 11:28:00    2017-06-13 11:28:00
97645    32056    532    2017-06-13 16:24:00    2017-06-13 16:24:00
97646    32056    649    2017-06-13 16:17:00    2017-06-13 16:17:00
97647    32056    731    2017-06-13 02:16:00    2017-06-13 02:16:00
97648    32056    944    2017-06-13 18:12:00    2017-06-13 18:12:00
97649    32056    546    2017-06-13 10:44:00    2017-06-13 10:44:00
97650    32057    667    2017-06-13 13:43:00    2017-06-13 13:43:00
97651    32057    476    2017-06-13 08:03:00    2017-06-13 08:03:00
97652    32057    519    2017-06-13 22:07:00    2017-06-13 22:07:00
97653    32057    618    2017-06-13 09:58:00    2017-06-13 09:58:00
97654    32057    847    2017-06-13 22:57:00    2017-06-13 22:57:00
97655    32058    874    2017-06-13 07:12:00    2017-06-13 07:12:00
97656    32058    509    2017-06-13 21:37:00    2017-06-13 21:37:00
97657    32058    469    2017-06-13 07:54:00    2017-06-13 07:54:00
97658    32058    671    2017-06-13 06:42:00    2017-06-13 06:42:00
97659    32058    538    2017-06-13 21:30:00    2017-06-13 21:30:00
97660    32059    903    2017-06-13 08:39:00    2017-06-13 08:39:00
97661    32059    762    2017-06-13 14:52:00    2017-06-13 14:52:00
97662    32059    861    2017-06-13 02:37:00    2017-06-13 02:37:00
97663    32059    910    2017-06-13 08:36:00    2017-06-13 08:36:00
97664    32059    704    2017-06-13 03:24:00    2017-06-13 03:24:00
97665    32060    589    2017-06-13 04:07:00    2017-06-13 04:07:00
97666    32060    772    2017-06-13 04:59:00    2017-06-13 04:59:00
97667    32060    912    2017-06-13 11:52:00    2017-06-13 11:52:00
97668    32060    720    2017-06-13 20:03:00    2017-06-13 20:03:00
97669    32060    564    2017-06-13 02:58:00    2017-06-13 02:58:00
97670    32061    661    2017-06-13 03:45:00    2017-06-13 03:45:00
97671    32061    613    2017-06-13 17:41:00    2017-06-13 17:41:00
97672    32061    688    2017-06-13 09:58:00    2017-06-13 09:58:00
97673    32061    698    2017-06-13 20:58:00    2017-06-13 20:58:00
97674    32061    937    2017-06-13 10:31:00    2017-06-13 10:31:00
97675    32062    838    2017-06-13 07:47:00    2017-06-13 07:47:00
97676    32062    605    2017-06-13 04:57:00    2017-06-13 04:57:00
97677    32062    565    2017-06-13 02:57:00    2017-06-13 02:57:00
97678    32062    958    2017-06-13 01:40:00    2017-06-13 01:40:00
97679    32062    743    2017-06-13 14:05:00    2017-06-13 14:05:00
97680    32063    565    2017-06-13 10:59:00    2017-06-13 10:59:00
97681    32063    562    2017-06-13 22:41:00    2017-06-13 22:41:00
97682    32063    555    2017-06-13 20:28:00    2017-06-13 20:28:00
97683    32063    774    2017-06-13 23:00:00    2017-06-13 23:00:00
97684    32063    614    2017-06-13 01:10:00    2017-06-13 01:10:00
97685    32064    800    2017-06-13 20:42:00    2017-06-13 20:42:00
97686    32064    692    2017-06-13 01:56:00    2017-06-13 01:56:00
97687    32064    875    2017-06-13 23:00:00    2017-06-13 23:00:00
97688    32064    871    2017-06-13 12:45:00    2017-06-13 12:45:00
97689    32064    812    2017-06-13 08:39:00    2017-06-13 08:39:00
97690    32065    553    2017-06-13 08:59:00    2017-06-13 08:59:00
97691    32065    937    2017-06-13 09:37:00    2017-06-13 09:37:00
97692    32065    803    2017-06-13 11:00:00    2017-06-13 11:00:00
97693    32065    701    2017-06-13 15:51:00    2017-06-13 15:51:00
97694    32065    506    2017-06-13 01:08:00    2017-06-13 01:08:00
97695    32066    863    2017-06-13 11:37:00    2017-06-13 11:37:00
97696    32066    571    2017-06-13 13:08:00    2017-06-13 13:08:00
97697    32066    592    2017-06-13 18:55:00    2017-06-13 18:55:00
97698    32066    904    2017-06-13 23:06:00    2017-06-13 23:06:00
97699    32066    558    2017-06-13 06:28:00    2017-06-13 06:28:00
97700    32067    754    2017-06-13 19:58:00    2017-06-13 19:58:00
97701    32067    656    2017-06-13 17:53:00    2017-06-13 17:53:00
97702    32067    854    2017-06-13 17:54:00    2017-06-13 17:54:00
97703    32067    792    2017-06-13 08:57:00    2017-06-13 08:57:00
97704    32067    810    2017-06-13 01:11:00    2017-06-13 01:11:00
97705    32068    601    2017-06-13 15:06:00    2017-06-13 15:06:00
97706    32068    883    2017-06-13 06:11:00    2017-06-13 06:11:00
97707    32068    734    2017-06-13 20:48:00    2017-06-13 20:48:00
97708    32068    782    2017-06-13 22:35:00    2017-06-13 22:35:00
97709    32068    635    2017-06-13 06:11:00    2017-06-13 06:11:00
97710    32069    792    2017-06-13 13:28:00    2017-06-13 13:28:00
97711    32069    693    2017-06-13 05:13:00    2017-06-13 05:13:00
97712    32069    548    2017-06-13 16:16:00    2017-06-13 16:16:00
97713    32069    895    2017-06-13 13:07:00    2017-06-13 13:07:00
97714    32069    776    2017-06-13 12:05:00    2017-06-13 12:05:00
97715    32070    675    2017-06-13 08:58:00    2017-06-13 08:58:00
97716    32070    693    2017-06-13 22:54:00    2017-06-13 22:54:00
97717    32070    794    2017-06-13 05:55:00    2017-06-13 05:55:00
97718    32070    690    2017-06-13 13:58:00    2017-06-13 13:58:00
97719    32070    936    2017-06-13 20:29:00    2017-06-13 20:29:00
97720    32071    811    2017-06-13 07:47:00    2017-06-13 07:47:00
97721    32071    647    2017-06-13 15:24:00    2017-06-13 15:24:00
97722    32071    489    2017-06-13 11:39:00    2017-06-13 11:39:00
97723    32071    518    2017-06-13 16:57:00    2017-06-13 16:57:00
97724    32071    795    2017-06-13 11:55:00    2017-06-13 11:55:00
97725    32072    747    2017-06-13 06:12:00    2017-06-13 06:12:00
97726    32072    472    2017-06-13 16:55:00    2017-06-13 16:55:00
97727    32072    703    2017-06-13 11:55:00    2017-06-13 11:55:00
97728    32072    631    2017-06-13 11:52:00    2017-06-13 11:52:00
97729    32072    646    2017-06-13 03:30:00    2017-06-13 03:30:00
97730    32073    875    2017-06-13 21:34:00    2017-06-13 21:34:00
97731    32073    583    2017-06-13 12:15:00    2017-06-13 12:15:00
97732    32073    463    2017-06-13 17:47:00    2017-06-13 17:47:00
97733    32073    658    2017-06-13 19:37:00    2017-06-13 19:37:00
97734    32073    611    2017-06-13 23:49:00    2017-06-13 23:49:00
97735    32074    575    2017-06-13 04:53:00    2017-06-13 04:53:00
97736    32074    662    2017-06-13 04:05:00    2017-06-13 04:05:00
97737    32074    896    2017-06-13 15:38:00    2017-06-13 15:38:00
97738    32074    823    2017-06-13 02:41:00    2017-06-13 02:41:00
97739    32074    670    2017-06-13 02:47:00    2017-06-13 02:47:00
97740    32075    630    2017-06-13 16:36:00    2017-06-13 16:36:00
97741    32075    535    2017-06-13 08:31:00    2017-06-13 08:31:00
97742    32075    475    2017-06-13 10:37:00    2017-06-13 10:37:00
97743    32075    876    2017-06-13 12:00:00    2017-06-13 12:00:00
97744    32075    762    2017-06-13 08:59:00    2017-06-13 08:59:00
97745    32076    955    2017-06-13 21:27:00    2017-06-13 21:27:00
97746    32076    713    2017-06-13 01:21:00    2017-06-13 01:21:00
97747    32076    589    2017-06-13 22:42:00    2017-06-13 22:42:00
97748    32076    474    2017-06-13 02:56:00    2017-06-13 02:56:00
97749    32076    558    2017-06-13 06:36:00    2017-06-13 06:36:00
97750    32077    925    2017-06-13 22:13:00    2017-06-13 22:13:00
97751    32077    495    2017-06-13 10:30:00    2017-06-13 10:30:00
97752    32077    687    2017-06-13 22:14:00    2017-06-13 22:14:00
97753    32077    501    2017-06-13 22:10:00    2017-06-13 22:10:00
97754    32077    473    2017-06-13 08:49:00    2017-06-13 08:49:00
97755    32078    850    2017-06-13 17:22:00    2017-06-13 17:22:00
97756    32078    840    2017-06-13 15:33:00    2017-06-13 15:33:00
97757    32078    582    2017-06-13 02:14:00    2017-06-13 02:14:00
97758    32078    818    2017-06-13 22:46:00    2017-06-13 22:46:00
97759    32078    524    2017-06-13 21:20:00    2017-06-13 21:20:00
97760    32079    596    2017-06-13 15:12:00    2017-06-13 15:12:00
97761    32079    745    2017-06-13 10:44:00    2017-06-13 10:44:00
97762    32079    815    2017-06-13 15:56:00    2017-06-13 15:56:00
97763    32079    884    2017-06-13 13:07:00    2017-06-13 13:07:00
97764    32079    690    2017-06-13 03:04:00    2017-06-13 03:04:00
97765    32080    801    2017-06-13 19:11:00    2017-06-13 19:11:00
97766    32080    945    2017-06-13 09:36:00    2017-06-13 09:36:00
97767    32080    547    2017-06-13 17:54:00    2017-06-13 17:54:00
97768    32080    808    2017-06-13 14:11:00    2017-06-13 14:11:00
97769    32080    568    2017-06-13 21:19:00    2017-06-13 21:19:00
97770    32081    561    2017-06-13 11:56:00    2017-06-13 11:56:00
97771    32081    520    2017-06-13 21:16:00    2017-06-13 21:16:00
97772    32081    877    2017-06-13 18:17:00    2017-06-13 18:17:00
97773    32081    911    2017-06-13 18:20:00    2017-06-13 18:20:00
97774    32081    938    2017-06-13 18:28:00    2017-06-13 18:28:00
97775    32082    780    2017-06-13 09:45:00    2017-06-13 09:45:00
97776    32082    571    2017-06-13 10:28:00    2017-06-13 10:28:00
97777    32082    908    2017-06-13 19:08:00    2017-06-13 19:08:00
97778    32082    770    2017-06-13 19:45:00    2017-06-13 19:45:00
97779    32082    665    2017-06-13 19:21:00    2017-06-13 19:21:00
97780    32083    543    2017-06-13 08:41:00    2017-06-13 08:41:00
97781    32083    729    2017-06-13 16:12:00    2017-06-13 16:12:00
97782    32083    946    2017-06-13 15:51:00    2017-06-13 15:51:00
97783    32083    782    2017-06-13 22:17:00    2017-06-13 22:17:00
97784    32083    804    2017-06-13 05:51:00    2017-06-13 05:51:00
97785    32084    477    2017-06-13 12:04:00    2017-06-13 12:04:00
97786    32084    680    2017-06-13 02:45:00    2017-06-13 02:45:00
97787    32084    562    2017-06-13 21:52:00    2017-06-13 21:52:00
97788    32084    722    2017-06-13 10:02:00    2017-06-13 10:02:00
97789    32084    883    2017-06-13 05:51:00    2017-06-13 05:51:00
97790    32085    647    2017-06-13 12:56:00    2017-06-13 12:56:00
97791    32085    697    2017-06-13 01:14:00    2017-06-13 01:14:00
97792    32085    672    2017-06-13 15:00:00    2017-06-13 15:00:00
97793    32085    577    2017-06-13 23:03:00    2017-06-13 23:03:00
97794    32085    669    2017-06-13 14:24:00    2017-06-13 14:24:00
97795    32086    756    2017-06-13 12:15:00    2017-06-13 12:15:00
97796    32086    844    2017-06-13 20:39:00    2017-06-13 20:39:00
97797    32086    660    2017-06-13 17:04:00    2017-06-13 17:04:00
97798    32086    860    2017-06-13 21:42:00    2017-06-13 21:42:00
97799    32086    798    2017-06-13 02:00:00    2017-06-13 02:00:00
97800    32087    496    2017-06-13 11:24:00    2017-06-13 11:24:00
97801    32087    531    2017-06-13 22:33:00    2017-06-13 22:33:00
97802    32087    549    2017-06-13 03:37:00    2017-06-13 03:37:00
97803    32087    678    2017-06-13 02:21:00    2017-06-13 02:21:00
97804    32087    845    2017-06-13 09:39:00    2017-06-13 09:39:00
97805    32088    955    2017-06-13 23:42:00    2017-06-13 23:42:00
97806    32088    691    2017-06-13 22:18:00    2017-06-13 22:18:00
97807    32088    469    2017-06-13 13:10:00    2017-06-13 13:10:00
97808    32088    681    2017-06-13 19:03:00    2017-06-13 19:03:00
97809    32088    800    2017-06-13 13:23:00    2017-06-13 13:23:00
97810    32089    763    2017-06-13 13:22:00    2017-06-13 13:22:00
97811    32089    846    2017-06-13 09:51:00    2017-06-13 09:51:00
97812    32089    586    2017-06-13 03:58:00    2017-06-13 03:58:00
97813    32089    546    2017-06-13 19:27:00    2017-06-13 19:27:00
97814    32089    752    2017-06-13 08:43:00    2017-06-13 08:43:00
97815    32090    822    2017-06-13 16:15:00    2017-06-13 16:15:00
97816    32090    681    2017-06-13 17:10:00    2017-06-13 17:10:00
97817    32090    659    2017-06-13 22:04:00    2017-06-13 22:04:00
97818    32090    579    2017-06-13 02:21:00    2017-06-13 02:21:00
97819    32090    687    2017-06-13 21:43:00    2017-06-13 21:43:00
97820    32091    695    2017-06-13 02:05:00    2017-06-13 02:05:00
97821    32091    500    2017-06-13 07:58:00    2017-06-13 07:58:00
97822    32091    910    2017-06-13 15:43:00    2017-06-13 15:43:00
97823    32091    836    2017-06-13 06:36:00    2017-06-13 06:36:00
97824    32091    513    2017-06-13 02:11:00    2017-06-13 02:11:00
97825    32092    933    2017-06-13 16:51:00    2017-06-13 16:51:00
97826    32092    718    2017-06-13 12:36:00    2017-06-13 12:36:00
97827    32092    900    2017-06-13 19:22:00    2017-06-13 19:22:00
97828    32092    851    2017-06-13 04:08:00    2017-06-13 04:08:00
97829    32092    744    2017-06-13 19:42:00    2017-06-13 19:42:00
97830    32093    617    2017-06-13 17:18:00    2017-06-13 17:18:00
97831    32093    936    2017-06-13 09:31:00    2017-06-13 09:31:00
97832    32093    961    2017-06-13 20:04:00    2017-06-13 20:04:00
97833    32093    901    2017-06-13 18:42:00    2017-06-13 18:42:00
97834    32093    746    2017-06-13 05:19:00    2017-06-13 05:19:00
97835    32094    536    2017-06-13 18:31:00    2017-06-13 18:31:00
97836    32094    569    2017-06-13 02:40:00    2017-06-13 02:40:00
97837    32094    693    2017-06-13 20:09:00    2017-06-13 20:09:00
97838    32094    538    2017-06-13 14:30:00    2017-06-13 14:30:00
97839    32094    539    2017-06-13 03:55:00    2017-06-13 03:55:00
97840    32095    956    2017-06-13 23:34:00    2017-06-13 23:34:00
97841    32095    768    2017-06-13 13:59:00    2017-06-13 13:59:00
97842    32095    888    2017-06-13 03:47:00    2017-06-13 03:47:00
97843    32095    700    2017-06-13 22:52:00    2017-06-13 22:52:00
97844    32095    901    2017-06-13 04:22:00    2017-06-13 04:22:00
97845    32096    758    2017-06-13 22:47:00    2017-06-13 22:47:00
97846    32096    858    2017-06-13 11:08:00    2017-06-13 11:08:00
97847    32096    821    2017-06-13 17:53:00    2017-06-13 17:53:00
97848    32096    680    2017-06-13 15:13:00    2017-06-13 15:13:00
97849    32096    599    2017-06-13 11:19:00    2017-06-13 11:19:00
97850    32097    959    2017-06-13 14:11:00    2017-06-13 14:11:00
97851    32097    932    2017-06-13 14:32:00    2017-06-13 14:32:00
97852    32097    730    2017-06-13 17:08:00    2017-06-13 17:08:00
97853    32097    761    2017-06-13 22:37:00    2017-06-13 22:37:00
97854    32097    730    2017-06-13 03:12:00    2017-06-13 03:12:00
97855    32098    851    2017-06-13 06:35:00    2017-06-13 06:35:00
97856    32098    660    2017-06-13 20:37:00    2017-06-13 20:37:00
97857    32098    829    2017-06-13 02:46:00    2017-06-13 02:46:00
97858    32098    784    2017-06-13 13:27:00    2017-06-13 13:27:00
97859    32098    684    2017-06-13 02:34:00    2017-06-13 02:34:00
97860    32099    516    2017-06-13 17:20:00    2017-06-13 17:20:00
97861    32099    584    2017-06-13 11:09:00    2017-06-13 11:09:00
97862    32099    909    2017-06-13 05:32:00    2017-06-13 05:32:00
97863    32099    816    2017-06-13 12:30:00    2017-06-13 12:30:00
97864    32099    957    2017-06-13 21:29:00    2017-06-13 21:29:00
97865    32100    956    2017-06-13 18:24:00    2017-06-13 18:24:00
97866    32100    466    2017-06-13 06:56:00    2017-06-13 06:56:00
97867    32100    534    2017-06-13 18:42:00    2017-06-13 18:42:00
97868    32100    675    2017-06-13 18:00:00    2017-06-13 18:00:00
97869    32100    530    2017-06-13 14:45:00    2017-06-13 14:45:00
97870    32101    916    2017-06-13 02:52:00    2017-06-13 02:52:00
97871    32101    632    2017-06-13 12:04:00    2017-06-13 12:04:00
97872    32101    754    2017-06-13 20:20:00    2017-06-13 20:20:00
97873    32101    828    2017-06-13 09:42:00    2017-06-13 09:42:00
97874    32101    581    2017-06-13 19:00:00    2017-06-13 19:00:00
97875    32102    479    2017-06-13 02:05:00    2017-06-13 02:05:00
97876    32102    929    2017-06-13 20:06:00    2017-06-13 20:06:00
97877    32102    775    2017-06-13 13:46:00    2017-06-13 13:46:00
97878    32102    788    2017-06-13 07:19:00    2017-06-13 07:19:00
97879    32102    911    2017-06-13 08:07:00    2017-06-13 08:07:00
97880    32103    583    2017-06-14 14:13:00    2017-06-14 14:13:00
97881    32103    919    2017-06-14 07:47:00    2017-06-14 07:47:00
97882    32103    754    2017-06-14 10:33:00    2017-06-14 10:33:00
97883    32103    803    2017-06-14 23:25:00    2017-06-14 23:25:00
97884    32103    940    2017-06-14 10:35:00    2017-06-14 10:35:00
97885    32104    691    2017-06-14 03:06:00    2017-06-14 03:06:00
97886    32104    694    2017-06-14 04:59:00    2017-06-14 04:59:00
97887    32104    643    2017-06-14 02:34:00    2017-06-14 02:34:00
97888    32104    803    2017-06-14 23:12:00    2017-06-14 23:12:00
97889    32104    845    2017-06-14 21:47:00    2017-06-14 21:47:00
97890    32105    498    2017-06-14 03:00:00    2017-06-14 03:00:00
97891    32105    600    2017-06-14 08:05:00    2017-06-14 08:05:00
97892    32105    502    2017-06-14 01:32:00    2017-06-14 01:32:00
97893    32105    533    2017-06-14 01:16:00    2017-06-14 01:16:00
97894    32105    778    2017-06-14 01:23:00    2017-06-14 01:23:00
97895    32106    727    2017-06-14 10:56:00    2017-06-14 10:56:00
97896    32106    624    2017-06-14 13:37:00    2017-06-14 13:37:00
97897    32106    558    2017-06-14 13:26:00    2017-06-14 13:26:00
97898    32106    769    2017-06-14 18:34:00    2017-06-14 18:34:00
97899    32106    704    2017-06-14 01:53:00    2017-06-14 01:53:00
97900    32107    651    2017-06-14 05:04:00    2017-06-14 05:04:00
97901    32107    939    2017-06-14 12:09:00    2017-06-14 12:09:00
97902    32107    563    2017-06-14 13:02:00    2017-06-14 13:02:00
97903    32107    836    2017-06-14 02:38:00    2017-06-14 02:38:00
97904    32107    540    2017-06-14 01:33:00    2017-06-14 01:33:00
97905    32108    678    2017-06-14 19:53:00    2017-06-14 19:53:00
97906    32108    741    2017-06-14 19:46:00    2017-06-14 19:46:00
97907    32108    564    2017-06-14 23:58:00    2017-06-14 23:58:00
97908    32108    564    2017-06-14 21:55:00    2017-06-14 21:55:00
97909    32108    776    2017-06-14 12:25:00    2017-06-14 12:25:00
97910    32109    788    2017-06-14 18:04:00    2017-06-14 18:04:00
97911    32109    853    2017-06-14 17:39:00    2017-06-14 17:39:00
97912    32109    774    2017-06-14 01:36:00    2017-06-14 01:36:00
97913    32109    675    2017-06-14 15:36:00    2017-06-14 15:36:00
97914    32109    832    2017-06-14 13:07:00    2017-06-14 13:07:00
97915    32110    957    2017-06-14 10:17:00    2017-06-14 10:17:00
97916    32110    863    2017-06-14 13:39:00    2017-06-14 13:39:00
97917    32110    741    2017-06-14 20:21:00    2017-06-14 20:21:00
97918    32110    922    2017-06-14 07:22:00    2017-06-14 07:22:00
97919    32110    710    2017-06-14 06:33:00    2017-06-14 06:33:00
97920    32111    590    2017-06-14 19:47:00    2017-06-14 19:47:00
97921    32111    835    2017-06-14 17:24:00    2017-06-14 17:24:00
97922    32111    483    2017-06-14 15:31:00    2017-06-14 15:31:00
97923    32111    846    2017-06-14 19:01:00    2017-06-14 19:01:00
97924    32111    556    2017-06-14 04:33:00    2017-06-14 04:33:00
97925    32112    615    2017-06-14 23:23:00    2017-06-14 23:23:00
97926    32112    550    2017-06-14 07:56:00    2017-06-14 07:56:00
97927    32112    616    2017-06-14 01:56:00    2017-06-14 01:56:00
97928    32112    695    2017-06-14 12:00:00    2017-06-14 12:00:00
97929    32112    933    2017-06-14 04:50:00    2017-06-14 04:50:00
97930    32113    501    2017-06-14 21:52:00    2017-06-14 21:52:00
97931    32113    908    2017-06-14 14:04:00    2017-06-14 14:04:00
97932    32113    843    2017-06-14 12:02:00    2017-06-14 12:02:00
97933    32113    501    2017-06-14 15:50:00    2017-06-14 15:50:00
97934    32113    828    2017-06-14 04:09:00    2017-06-14 04:09:00
97935    32114    585    2017-06-14 16:49:00    2017-06-14 16:49:00
97936    32114    596    2017-06-14 11:42:00    2017-06-14 11:42:00
97937    32114    836    2017-06-14 01:56:00    2017-06-14 01:56:00
97938    32114    871    2017-06-14 01:25:00    2017-06-14 01:25:00
97939    32114    791    2017-06-14 05:07:00    2017-06-14 05:07:00
97940    32115    856    2017-06-14 02:47:00    2017-06-14 02:47:00
97941    32115    647    2017-06-14 19:05:00    2017-06-14 19:05:00
97942    32115    867    2017-06-14 04:44:00    2017-06-14 04:44:00
97943    32115    516    2017-06-14 05:32:00    2017-06-14 05:32:00
97944    32115    736    2017-06-14 20:35:00    2017-06-14 20:35:00
97945    32116    578    2017-06-14 16:13:00    2017-06-14 16:13:00
97946    32116    865    2017-06-14 04:31:00    2017-06-14 04:31:00
97947    32116    643    2017-06-14 14:51:00    2017-06-14 14:51:00
97948    32116    553    2017-06-14 08:52:00    2017-06-14 08:52:00
97949    32116    715    2017-06-14 04:48:00    2017-06-14 04:48:00
97950    32117    735    2017-06-14 16:38:00    2017-06-14 16:38:00
97951    32117    795    2017-06-14 20:57:00    2017-06-14 20:57:00
97952    32117    585    2017-06-14 05:42:00    2017-06-14 05:42:00
97953    32117    698    2017-06-14 02:36:00    2017-06-14 02:36:00
97954    32117    490    2017-06-14 12:53:00    2017-06-14 12:53:00
97955    32118    903    2017-06-14 12:01:00    2017-06-14 12:01:00
97956    32118    691    2017-06-14 20:50:00    2017-06-14 20:50:00
97957    32118    753    2017-06-14 03:11:00    2017-06-14 03:11:00
97958    32118    836    2017-06-14 20:32:00    2017-06-14 20:32:00
97959    32118    850    2017-06-14 03:16:00    2017-06-14 03:16:00
97960    32119    959    2017-06-14 04:42:00    2017-06-14 04:42:00
97961    32119    606    2017-06-14 22:55:00    2017-06-14 22:55:00
97962    32119    736    2017-06-14 22:13:00    2017-06-14 22:13:00
97963    32119    503    2017-06-14 09:23:00    2017-06-14 09:23:00
97964    32119    880    2017-06-14 22:47:00    2017-06-14 22:47:00
97965    32120    696    2017-06-14 04:00:00    2017-06-14 04:00:00
97966    32120    584    2017-06-14 02:58:00    2017-06-14 02:58:00
97967    32120    526    2017-06-14 02:56:00    2017-06-14 02:56:00
97968    32120    804    2017-06-14 08:54:00    2017-06-14 08:54:00
97969    32120    851    2017-06-14 21:00:00    2017-06-14 21:00:00
97970    32121    630    2017-06-14 06:55:00    2017-06-14 06:55:00
97971    32121    609    2017-06-14 10:32:00    2017-06-14 10:32:00
97972    32121    579    2017-06-14 20:10:00    2017-06-14 20:10:00
97973    32121    540    2017-06-14 15:52:00    2017-06-14 15:52:00
97974    32121    758    2017-06-14 14:37:00    2017-06-14 14:37:00
97975    32122    470    2017-06-14 03:14:00    2017-06-14 03:14:00
97976    32122    473    2017-06-14 16:04:00    2017-06-14 16:04:00
97977    32122    579    2017-06-14 03:00:00    2017-06-14 03:00:00
97978    32122    834    2017-06-14 05:31:00    2017-06-14 05:31:00
97979    32122    760    2017-06-14 19:11:00    2017-06-14 19:11:00
97980    32123    899    2017-06-14 01:29:00    2017-06-14 01:29:00
97981    32123    530    2017-06-14 03:28:00    2017-06-14 03:28:00
97982    32123    571    2017-06-14 12:13:00    2017-06-14 12:13:00
97983    32123    879    2017-06-14 19:22:00    2017-06-14 19:22:00
97984    32123    706    2017-06-14 14:30:00    2017-06-14 14:30:00
97985    32124    759    2017-06-14 19:36:00    2017-06-14 19:36:00
97986    32124    804    2017-06-14 09:09:00    2017-06-14 09:09:00
97987    32124    779    2017-06-14 13:54:00    2017-06-14 13:54:00
97988    32124    893    2017-06-14 07:07:00    2017-06-14 07:07:00
97989    32124    888    2017-06-14 14:55:00    2017-06-14 14:55:00
97990    32125    671    2017-06-14 22:19:00    2017-06-14 22:19:00
97991    32125    830    2017-06-14 06:17:00    2017-06-14 06:17:00
97992    32125    683    2017-06-14 20:36:00    2017-06-14 20:36:00
97993    32125    812    2017-06-14 16:46:00    2017-06-14 16:46:00
97994    32125    773    2017-06-14 19:05:00    2017-06-14 19:05:00
97995    32126    542    2017-06-14 09:55:00    2017-06-14 09:55:00
97996    32126    894    2017-06-14 16:13:00    2017-06-14 16:13:00
97997    32126    600    2017-06-14 22:19:00    2017-06-14 22:19:00
97998    32126    700    2017-06-14 11:38:00    2017-06-14 11:38:00
97999    32126    562    2017-06-14 21:29:00    2017-06-14 21:29:00
98000    32127    947    2017-06-14 07:53:00    2017-06-14 07:53:00
98001    32127    484    2017-06-14 04:25:00    2017-06-14 04:25:00
98002    32127    646    2017-06-14 09:10:00    2017-06-14 09:10:00
98003    32127    566    2017-06-14 14:41:00    2017-06-14 14:41:00
98004    32127    485    2017-06-14 17:40:00    2017-06-14 17:40:00
98005    32128    702    2017-06-14 02:52:00    2017-06-14 02:52:00
98006    32128    780    2017-06-14 05:16:00    2017-06-14 05:16:00
98007    32128    914    2017-06-14 08:20:00    2017-06-14 08:20:00
98008    32128    483    2017-06-14 18:33:00    2017-06-14 18:33:00
98009    32128    528    2017-06-14 05:34:00    2017-06-14 05:34:00
98010    32129    574    2017-06-14 13:05:00    2017-06-14 13:05:00
98011    32129    510    2017-06-14 17:51:00    2017-06-14 17:51:00
98012    32129    542    2017-06-14 11:49:00    2017-06-14 11:49:00
98013    32129    507    2017-06-14 12:57:00    2017-06-14 12:57:00
98014    32129    660    2017-06-14 08:08:00    2017-06-14 08:08:00
98015    32130    942    2017-06-14 21:58:00    2017-06-14 21:58:00
98016    32130    772    2017-06-14 14:49:00    2017-06-14 14:49:00
98017    32130    513    2017-06-14 17:22:00    2017-06-14 17:22:00
98018    32130    786    2017-06-14 11:27:00    2017-06-14 11:27:00
98019    32130    805    2017-06-14 05:37:00    2017-06-14 05:37:00
98020    32131    726    2017-06-14 11:04:00    2017-06-14 11:04:00
98021    32131    818    2017-06-14 10:39:00    2017-06-14 10:39:00
98022    32131    865    2017-06-14 20:52:00    2017-06-14 20:52:00
98023    32131    668    2017-06-14 15:53:00    2017-06-14 15:53:00
98024    32131    713    2017-06-14 17:26:00    2017-06-14 17:26:00
98025    32132    738    2017-06-14 13:44:00    2017-06-14 13:44:00
98026    32132    883    2017-06-14 21:40:00    2017-06-14 21:40:00
98027    32132    578    2017-06-14 21:40:00    2017-06-14 21:40:00
98028    32132    708    2017-06-14 11:02:00    2017-06-14 11:02:00
98029    32132    850    2017-06-14 08:32:00    2017-06-14 08:32:00
98030    32133    898    2017-06-14 20:43:00    2017-06-14 20:43:00
98031    32133    875    2017-06-14 19:48:00    2017-06-14 19:48:00
98032    32133    688    2017-06-14 20:42:00    2017-06-14 20:42:00
98033    32133    799    2017-06-14 20:49:00    2017-06-14 20:49:00
98034    32133    837    2017-06-15 00:00:00    2017-06-15 00:00:00
98035    32134    930    2017-06-14 10:07:00    2017-06-14 10:07:00
98036    32134    892    2017-06-14 17:03:00    2017-06-14 17:03:00
98037    32134    507    2017-06-14 17:14:00    2017-06-14 17:14:00
98038    32134    912    2017-06-14 17:38:00    2017-06-14 17:38:00
98039    32134    559    2017-06-14 10:20:00    2017-06-14 10:20:00
98040    32135    834    2017-06-14 13:17:00    2017-06-14 13:17:00
98041    32135    710    2017-06-14 22:25:00    2017-06-14 22:25:00
98042    32135    682    2017-06-14 20:07:00    2017-06-14 20:07:00
98043    32135    864    2017-06-14 19:13:00    2017-06-14 19:13:00
98044    32135    805    2017-06-14 16:48:00    2017-06-14 16:48:00
98045    32136    481    2017-06-14 03:16:00    2017-06-14 03:16:00
98046    32136    668    2017-06-14 23:26:00    2017-06-14 23:26:00
98047    32136    573    2017-06-14 11:29:00    2017-06-14 11:29:00
98048    32136    960    2017-06-14 08:34:00    2017-06-14 08:34:00
98049    32136    680    2017-06-14 20:32:00    2017-06-14 20:32:00
98050    32137    693    2017-06-14 05:04:00    2017-06-14 05:04:00
98051    32137    671    2017-06-14 18:19:00    2017-06-14 18:19:00
98052    32137    487    2017-06-14 09:27:00    2017-06-14 09:27:00
98053    32137    511    2017-06-14 02:04:00    2017-06-14 02:04:00
98054    32137    476    2017-06-14 12:42:00    2017-06-14 12:42:00
98055    32138    946    2017-06-14 16:34:00    2017-06-14 16:34:00
98056    32138    957    2017-06-14 21:54:00    2017-06-14 21:54:00
98057    32138    899    2017-06-14 09:53:00    2017-06-14 09:53:00
98058    32138    822    2017-06-14 01:57:00    2017-06-14 01:57:00
98059    32138    850    2017-06-14 02:55:00    2017-06-14 02:55:00
98060    32139    822    2017-06-14 22:54:00    2017-06-14 22:54:00
98061    32139    817    2017-06-14 20:34:00    2017-06-14 20:34:00
98062    32139    715    2017-06-14 13:10:00    2017-06-14 13:10:00
98063    32139    492    2017-06-14 19:13:00    2017-06-14 19:13:00
98064    32139    482    2017-06-14 23:32:00    2017-06-14 23:32:00
98065    32140    796    2017-06-14 14:32:00    2017-06-14 14:32:00
98066    32140    960    2017-06-14 03:30:00    2017-06-14 03:30:00
98067    32140    626    2017-06-14 19:18:00    2017-06-14 19:18:00
98068    32140    715    2017-06-14 21:28:00    2017-06-14 21:28:00
98069    32140    910    2017-06-14 06:20:00    2017-06-14 06:20:00
98070    32141    546    2017-06-14 14:14:00    2017-06-14 14:14:00
98071    32141    783    2017-06-14 07:35:00    2017-06-14 07:35:00
98072    32141    530    2017-06-14 11:09:00    2017-06-14 11:09:00
98073    32141    626    2017-06-14 16:19:00    2017-06-14 16:19:00
98074    32141    662    2017-06-14 19:39:00    2017-06-14 19:39:00
98075    32142    640    2017-06-14 18:39:00    2017-06-14 18:39:00
98076    32142    648    2017-06-14 17:58:00    2017-06-14 17:58:00
98077    32142    790    2017-06-14 09:38:00    2017-06-14 09:38:00
98078    32142    645    2017-06-14 18:20:00    2017-06-14 18:20:00
98079    32142    689    2017-06-14 04:58:00    2017-06-14 04:58:00
98080    32143    604    2017-06-14 22:14:00    2017-06-14 22:14:00
98081    32143    639    2017-06-14 19:29:00    2017-06-14 19:29:00
98082    32143    650    2017-06-14 07:26:00    2017-06-14 07:26:00
98083    32143    589    2017-06-14 14:40:00    2017-06-14 14:40:00
98084    32143    648    2017-06-14 18:17:00    2017-06-14 18:17:00
98085    32144    674    2017-06-14 12:14:00    2017-06-14 12:14:00
98086    32144    552    2017-06-14 04:07:00    2017-06-14 04:07:00
98087    32144    687    2017-06-14 12:08:00    2017-06-14 12:08:00
98088    32144    589    2017-06-14 07:35:00    2017-06-14 07:35:00
98089    32144    681    2017-06-14 06:56:00    2017-06-14 06:56:00
98090    32145    836    2017-06-14 13:13:00    2017-06-14 13:13:00
98091    32145    838    2017-06-14 13:58:00    2017-06-14 13:58:00
98092    32145    626    2017-06-14 02:24:00    2017-06-14 02:24:00
98093    32145    843    2017-06-14 04:34:00    2017-06-14 04:34:00
98094    32145    728    2017-06-14 10:29:00    2017-06-14 10:29:00
98095    32146    805    2017-06-14 05:31:00    2017-06-14 05:31:00
98096    32146    608    2017-06-14 09:29:00    2017-06-14 09:29:00
98097    32146    548    2017-06-14 08:48:00    2017-06-14 08:48:00
98098    32146    766    2017-06-14 23:27:00    2017-06-14 23:27:00
98099    32146    949    2017-06-14 16:28:00    2017-06-14 16:28:00
98100    32147    484    2017-06-14 20:59:00    2017-06-14 20:59:00
98101    32147    625    2017-06-14 13:51:00    2017-06-14 13:51:00
98102    32147    908    2017-06-14 02:21:00    2017-06-14 02:21:00
98103    32147    947    2017-06-14 16:00:00    2017-06-14 16:00:00
98104    32147    781    2017-06-14 11:08:00    2017-06-14 11:08:00
98105    32148    522    2017-06-14 10:38:00    2017-06-14 10:38:00
98106    32148    753    2017-06-14 13:06:00    2017-06-14 13:06:00
98107    32148    645    2017-06-14 17:58:00    2017-06-14 17:58:00
98108    32148    843    2017-06-14 19:31:00    2017-06-14 19:31:00
98109    32148    805    2017-06-14 02:10:00    2017-06-14 02:10:00
98110    32149    557    2017-06-14 20:53:00    2017-06-14 20:53:00
98111    32149    763    2017-06-14 01:47:00    2017-06-14 01:47:00
98112    32149    767    2017-06-14 17:43:00    2017-06-14 17:43:00
98113    32149    494    2017-06-14 09:21:00    2017-06-14 09:21:00
98114    32149    572    2017-06-14 07:19:00    2017-06-14 07:19:00
98115    32150    877    2017-06-14 05:22:00    2017-06-14 05:22:00
98116    32150    636    2017-06-14 23:16:00    2017-06-14 23:16:00
98117    32150    576    2017-06-14 10:25:00    2017-06-14 10:25:00
98118    32150    723    2017-06-14 18:26:00    2017-06-14 18:26:00
98119    32150    665    2017-06-14 03:55:00    2017-06-14 03:55:00
98120    32151    683    2017-06-14 03:00:00    2017-06-14 03:00:00
98121    32151    820    2017-06-14 04:05:00    2017-06-14 04:05:00
98122    32151    855    2017-06-14 22:30:00    2017-06-14 22:30:00
98123    32151    543    2017-06-14 18:53:00    2017-06-14 18:53:00
98124    32151    668    2017-06-14 19:58:00    2017-06-14 19:58:00
98125    32152    624    2017-06-14 11:42:00    2017-06-14 11:42:00
98126    32152    486    2017-06-14 13:30:00    2017-06-14 13:30:00
98127    32152    755    2017-06-14 04:31:00    2017-06-14 04:31:00
98128    32152    908    2017-06-14 11:13:00    2017-06-14 11:13:00
98129    32152    826    2017-06-14 01:31:00    2017-06-14 01:31:00
98130    32153    833    2017-06-14 17:12:00    2017-06-14 17:12:00
98131    32153    908    2017-06-14 13:58:00    2017-06-14 13:58:00
98132    32153    856    2017-06-14 17:15:00    2017-06-14 17:15:00
98133    32153    568    2017-06-14 01:00:00    2017-06-14 01:00:00
98134    32153    930    2017-06-14 07:39:00    2017-06-14 07:39:00
98135    32154    666    2017-06-14 23:22:00    2017-06-14 23:22:00
98136    32154    917    2017-06-14 05:09:00    2017-06-14 05:09:00
98137    32154    663    2017-06-14 02:39:00    2017-06-14 02:39:00
98138    32154    873    2017-06-14 03:03:00    2017-06-14 03:03:00
98139    32154    658    2017-06-14 12:30:00    2017-06-14 12:30:00
98140    32155    805    2017-06-14 14:43:00    2017-06-14 14:43:00
98141    32155    540    2017-06-14 13:14:00    2017-06-14 13:14:00
98142    32155    598    2017-06-14 11:32:00    2017-06-14 11:32:00
98143    32155    581    2017-06-14 21:32:00    2017-06-14 21:32:00
98144    32155    811    2017-06-14 07:57:00    2017-06-14 07:57:00
98145    32156    738    2017-06-14 08:21:00    2017-06-14 08:21:00
98146    32156    468    2017-06-14 15:32:00    2017-06-14 15:32:00
98147    32156    700    2017-06-14 11:32:00    2017-06-14 11:32:00
98148    32156    671    2017-06-14 04:17:00    2017-06-14 04:17:00
98149    32156    851    2017-06-14 17:44:00    2017-06-14 17:44:00
98150    32157    617    2017-06-14 13:27:00    2017-06-14 13:27:00
98151    32157    823    2017-06-14 21:05:00    2017-06-14 21:05:00
98152    32157    655    2017-06-14 11:26:00    2017-06-14 11:26:00
98153    32157    957    2017-06-14 13:16:00    2017-06-14 13:16:00
98154    32157    936    2017-06-14 01:22:00    2017-06-14 01:22:00
98155    32158    733    2017-06-14 20:30:00    2017-06-14 20:30:00
98156    32158    787    2017-06-14 13:43:00    2017-06-14 13:43:00
98157    32158    771    2017-06-14 10:58:00    2017-06-14 10:58:00
98158    32158    630    2017-06-14 14:08:00    2017-06-14 14:08:00
98159    32158    596    2017-06-14 13:33:00    2017-06-14 13:33:00
98160    32159    550    2017-06-14 02:15:00    2017-06-14 02:15:00
98161    32159    615    2017-06-14 21:04:00    2017-06-14 21:04:00
98162    32159    530    2017-06-14 20:12:00    2017-06-14 20:12:00
98163    32159    599    2017-06-14 02:16:00    2017-06-14 02:16:00
98164    32159    701    2017-06-14 09:19:00    2017-06-14 09:19:00
98165    32160    944    2017-06-14 10:20:00    2017-06-14 10:20:00
98166    32160    940    2017-06-14 11:54:00    2017-06-14 11:54:00
98167    32160    795    2017-06-14 07:05:00    2017-06-14 07:05:00
98168    32160    677    2017-06-14 19:26:00    2017-06-14 19:26:00
98169    32160    821    2017-06-14 19:25:00    2017-06-14 19:25:00
98170    32161    816    2017-06-14 16:29:00    2017-06-14 16:29:00
98171    32161    501    2017-06-14 15:20:00    2017-06-14 15:20:00
98172    32161    814    2017-06-14 14:36:00    2017-06-14 14:36:00
98173    32161    893    2017-06-14 18:41:00    2017-06-14 18:41:00
98174    32161    783    2017-06-14 01:40:00    2017-06-14 01:40:00
98175    32162    612    2017-06-14 23:02:00    2017-06-14 23:02:00
98176    32162    474    2017-06-14 03:16:00    2017-06-14 03:16:00
98177    32162    727    2017-06-14 21:47:00    2017-06-14 21:47:00
98178    32162    735    2017-06-14 11:22:00    2017-06-14 11:22:00
98179    32162    793    2017-06-14 11:13:00    2017-06-14 11:13:00
98180    32163    709    2017-06-14 06:59:00    2017-06-14 06:59:00
98181    32163    567    2017-06-14 11:45:00    2017-06-14 11:45:00
98182    32163    631    2017-06-14 21:26:00    2017-06-14 21:26:00
98183    32163    572    2017-06-14 20:37:00    2017-06-14 20:37:00
98184    32163    495    2017-06-14 04:21:00    2017-06-14 04:21:00
98185    32164    919    2017-06-14 07:53:00    2017-06-14 07:53:00
98186    32164    851    2017-06-14 23:28:00    2017-06-14 23:28:00
98187    32164    901    2017-06-14 13:34:00    2017-06-14 13:34:00
98188    32164    913    2017-06-14 01:19:00    2017-06-14 01:19:00
98189    32164    842    2017-06-14 13:30:00    2017-06-14 13:30:00
98190    32165    521    2017-06-14 02:56:00    2017-06-14 02:56:00
98191    32165    941    2017-06-14 12:20:00    2017-06-14 12:20:00
98192    32165    864    2017-06-14 11:19:00    2017-06-14 11:19:00
98193    32165    570    2017-06-14 19:16:00    2017-06-14 19:16:00
98194    32165    493    2017-06-14 07:18:00    2017-06-14 07:18:00
98195    32166    556    2017-06-14 21:03:00    2017-06-14 21:03:00
98196    32166    831    2017-06-14 21:36:00    2017-06-14 21:36:00
98197    32166    466    2017-06-14 06:20:00    2017-06-14 06:20:00
98198    32166    799    2017-06-14 14:47:00    2017-06-14 14:47:00
98199    32166    477    2017-06-14 02:20:00    2017-06-14 02:20:00
98200    32167    661    2017-06-14 20:52:00    2017-06-14 20:52:00
98201    32167    960    2017-06-14 21:29:00    2017-06-14 21:29:00
98202    32167    753    2017-06-14 16:29:00    2017-06-14 16:29:00
98203    32167    759    2017-06-14 01:10:00    2017-06-14 01:10:00
98204    32167    634    2017-06-14 20:55:00    2017-06-14 20:55:00
98205    32168    757    2017-06-14 02:56:00    2017-06-14 02:56:00
98206    32168    905    2017-06-14 07:00:00    2017-06-14 07:00:00
98207    32168    622    2017-06-14 14:39:00    2017-06-14 14:39:00
98208    32168    482    2017-06-14 05:56:00    2017-06-14 05:56:00
98209    32168    526    2017-06-14 03:52:00    2017-06-14 03:52:00
98210    32169    754    2017-06-14 06:14:00    2017-06-14 06:14:00
98211    32169    944    2017-06-14 21:14:00    2017-06-14 21:14:00
98212    32169    892    2017-06-14 04:19:00    2017-06-14 04:19:00
98213    32169    716    2017-06-14 07:29:00    2017-06-14 07:29:00
98214    32169    483    2017-06-14 08:06:00    2017-06-14 08:06:00
98215    32170    566    2017-06-14 12:29:00    2017-06-14 12:29:00
98216    32170    751    2017-06-14 17:48:00    2017-06-14 17:48:00
98217    32170    881    2017-06-14 06:24:00    2017-06-14 06:24:00
98218    32170    790    2017-06-14 07:29:00    2017-06-14 07:29:00
98219    32170    798    2017-06-14 18:58:00    2017-06-14 18:58:00
98220    32171    463    2017-06-15 14:55:00    2017-06-15 14:55:00
98221    32171    918    2017-06-15 01:30:00    2017-06-15 01:30:00
98222    32171    806    2017-06-15 05:59:00    2017-06-15 05:59:00
98223    32171    961    2017-06-15 21:03:00    2017-06-15 21:03:00
98224    32171    868    2017-06-15 23:56:00    2017-06-15 23:56:00
98225    32172    901    2017-06-15 15:42:00    2017-06-15 15:42:00
98226    32172    940    2017-06-15 18:02:00    2017-06-15 18:02:00
98227    32172    746    2017-06-15 13:22:00    2017-06-15 13:22:00
98228    32172    806    2017-06-15 20:17:00    2017-06-15 20:17:00
98229    32172    637    2017-06-15 04:26:00    2017-06-15 04:26:00
98230    32173    508    2017-06-15 16:40:00    2017-06-15 16:40:00
98231    32173    502    2017-06-15 20:09:00    2017-06-15 20:09:00
98232    32173    691    2017-06-15 23:21:00    2017-06-15 23:21:00
98233    32173    824    2017-06-15 01:17:00    2017-06-15 01:17:00
98234    32173    855    2017-06-15 07:33:00    2017-06-15 07:33:00
98235    32174    711    2017-06-15 16:37:00    2017-06-15 16:37:00
98236    32174    489    2017-06-15 19:44:00    2017-06-15 19:44:00
98237    32174    471    2017-06-15 07:39:00    2017-06-15 07:39:00
98238    32174    466    2017-06-15 09:15:00    2017-06-15 09:15:00
98239    32174    619    2017-06-15 12:01:00    2017-06-15 12:01:00
98240    32175    640    2017-06-15 03:40:00    2017-06-15 03:40:00
98241    32175    866    2017-06-15 21:05:00    2017-06-15 21:05:00
98242    32175    842    2017-06-15 04:24:00    2017-06-15 04:24:00
98243    32175    797    2017-06-15 12:42:00    2017-06-15 12:42:00
98244    32175    664    2017-06-15 05:57:00    2017-06-15 05:57:00
98245    32176    773    2017-06-15 06:14:00    2017-06-15 06:14:00
98246    32176    920    2017-06-15 04:19:00    2017-06-15 04:19:00
98247    32176    747    2017-06-15 21:55:00    2017-06-15 21:55:00
98248    32176    839    2017-06-15 09:29:00    2017-06-15 09:29:00
98249    32176    656    2017-06-15 01:07:00    2017-06-15 01:07:00
98250    32177    536    2017-06-15 22:11:00    2017-06-15 22:11:00
98251    32177    857    2017-06-15 09:22:00    2017-06-15 09:22:00
98252    32177    735    2017-06-15 23:13:00    2017-06-15 23:13:00
98253    32177    604    2017-06-15 19:30:00    2017-06-15 19:30:00
98254    32177    833    2017-06-15 19:18:00    2017-06-15 19:18:00
98255    32178    829    2017-06-15 18:35:00    2017-06-15 18:35:00
98256    32178    737    2017-06-15 19:57:00    2017-06-15 19:57:00
98257    32178    793    2017-06-15 01:26:00    2017-06-15 01:26:00
98258    32178    935    2017-06-15 02:49:00    2017-06-15 02:49:00
98259    32178    468    2017-06-15 12:47:00    2017-06-15 12:47:00
98260    32179    473    2017-06-15 09:50:00    2017-06-15 09:50:00
98261    32179    749    2017-06-15 03:04:00    2017-06-15 03:04:00
98262    32179    756    2017-06-15 13:21:00    2017-06-15 13:21:00
98263    32179    771    2017-06-15 17:23:00    2017-06-15 17:23:00
98264    32179    562    2017-06-15 06:05:00    2017-06-15 06:05:00
98265    32180    845    2017-06-15 23:39:00    2017-06-15 23:39:00
98266    32180    801    2017-06-15 06:57:00    2017-06-15 06:57:00
98267    32180    664    2017-06-15 14:46:00    2017-06-15 14:46:00
98268    32180    592    2017-06-15 02:06:00    2017-06-15 02:06:00
98269    32180    536    2017-06-15 01:21:00    2017-06-15 01:21:00
98270    32181    481    2017-06-15 07:05:00    2017-06-15 07:05:00
98271    32181    507    2017-06-15 15:34:00    2017-06-15 15:34:00
98272    32181    556    2017-06-15 17:13:00    2017-06-15 17:13:00
98273    32181    596    2017-06-15 15:11:00    2017-06-15 15:11:00
98274    32181    911    2017-06-15 23:29:00    2017-06-15 23:29:00
98275    32182    593    2017-06-15 19:10:00    2017-06-15 19:10:00
98276    32182    543    2017-06-15 13:27:00    2017-06-15 13:27:00
98277    32182    589    2017-06-15 21:33:00    2017-06-15 21:33:00
98278    32182    741    2017-06-15 17:49:00    2017-06-15 17:49:00
98279    32182    581    2017-06-15 16:32:00    2017-06-15 16:32:00
98280    32183    848    2017-06-15 06:01:00    2017-06-15 06:01:00
98281    32183    796    2017-06-15 01:56:00    2017-06-15 01:56:00
98282    32183    481    2017-06-15 10:19:00    2017-06-15 10:19:00
98283    32183    654    2017-06-15 15:57:00    2017-06-15 15:57:00
98284    32183    740    2017-06-15 07:58:00    2017-06-15 07:58:00
98285    32184    622    2017-06-15 03:54:00    2017-06-15 03:54:00
98286    32184    705    2017-06-15 13:37:00    2017-06-15 13:37:00
98287    32184    552    2017-06-15 18:23:00    2017-06-15 18:23:00
98288    32184    941    2017-06-15 05:20:00    2017-06-15 05:20:00
98289    32184    541    2017-06-15 03:36:00    2017-06-15 03:36:00
98290    32185    497    2017-06-15 08:52:00    2017-06-15 08:52:00
98291    32185    839    2017-06-15 16:44:00    2017-06-15 16:44:00
98292    32185    691    2017-06-15 14:14:00    2017-06-15 14:14:00
98293    32185    682    2017-06-15 12:32:00    2017-06-15 12:32:00
98294    32185    646    2017-06-15 19:06:00    2017-06-15 19:06:00
98295    32186    560    2017-06-15 05:53:00    2017-06-15 05:53:00
98296    32186    604    2017-06-15 22:41:00    2017-06-15 22:41:00
98297    32186    803    2017-06-15 04:52:00    2017-06-15 04:52:00
98298    32186    746    2017-06-15 05:07:00    2017-06-15 05:07:00
98299    32186    582    2017-06-15 22:24:00    2017-06-15 22:24:00
98300    32187    709    2017-06-15 06:14:00    2017-06-15 06:14:00
98301    32187    846    2017-06-15 22:33:00    2017-06-15 22:33:00
98302    32187    894    2017-06-15 22:00:00    2017-06-15 22:00:00
98303    32187    651    2017-06-15 11:29:00    2017-06-15 11:29:00
98304    32187    761    2017-06-15 21:27:00    2017-06-15 21:27:00
98305    32188    795    2017-06-15 23:12:00    2017-06-15 23:12:00
98306    32188    929    2017-06-15 18:41:00    2017-06-15 18:41:00
98307    32188    695    2017-06-15 11:20:00    2017-06-15 11:20:00
98308    32188    500    2017-06-15 03:45:00    2017-06-15 03:45:00
98309    32188    544    2017-06-15 07:13:00    2017-06-15 07:13:00
98310    32189    544    2017-06-15 10:05:00    2017-06-15 10:05:00
98311    32189    542    2017-06-15 22:23:00    2017-06-15 22:23:00
98312    32189    763    2017-06-15 12:15:00    2017-06-15 12:15:00
98313    32189    497    2017-06-15 21:33:00    2017-06-15 21:33:00
98314    32189    883    2017-06-15 18:26:00    2017-06-15 18:26:00
98315    32190    615    2017-06-15 17:50:00    2017-06-15 17:50:00
98316    32190    878    2017-06-15 19:56:00    2017-06-15 19:56:00
98317    32190    938    2017-06-15 22:42:00    2017-06-15 22:42:00
98318    32190    496    2017-06-15 07:05:00    2017-06-15 07:05:00
98319    32190    627    2017-06-15 06:12:00    2017-06-15 06:12:00
98320    32191    790    2017-06-15 06:20:00    2017-06-15 06:20:00
98321    32191    840    2017-06-15 02:24:00    2017-06-15 02:24:00
98322    32191    589    2017-06-15 13:11:00    2017-06-15 13:11:00
98323    32191    734    2017-06-15 18:35:00    2017-06-15 18:35:00
98324    32191    546    2017-06-15 12:59:00    2017-06-15 12:59:00
98325    32192    670    2017-06-15 05:25:00    2017-06-15 05:25:00
98326    32192    841    2017-06-15 07:14:00    2017-06-15 07:14:00
98327    32192    560    2017-06-15 09:28:00    2017-06-15 09:28:00
98328    32192    733    2017-06-15 18:37:00    2017-06-15 18:37:00
98329    32192    894    2017-06-15 23:08:00    2017-06-15 23:08:00
98330    32193    720    2017-06-15 10:29:00    2017-06-15 10:29:00
98331    32193    567    2017-06-15 20:05:00    2017-06-15 20:05:00
98332    32193    490    2017-06-15 21:05:00    2017-06-15 21:05:00
98333    32193    510    2017-06-15 22:50:00    2017-06-15 22:50:00
98334    32193    725    2017-06-15 20:32:00    2017-06-15 20:32:00
98335    32194    759    2017-06-15 17:03:00    2017-06-15 17:03:00
98336    32194    635    2017-06-15 05:14:00    2017-06-15 05:14:00
98337    32194    757    2017-06-15 04:03:00    2017-06-15 04:03:00
98338    32194    657    2017-06-15 23:32:00    2017-06-15 23:32:00
98339    32194    702    2017-06-15 16:20:00    2017-06-15 16:20:00
98340    32195    488    2017-06-15 21:09:00    2017-06-15 21:09:00
98341    32195    942    2017-06-15 19:17:00    2017-06-15 19:17:00
98342    32195    611    2017-06-15 18:10:00    2017-06-15 18:10:00
98343    32195    888    2017-06-15 09:39:00    2017-06-15 09:39:00
98344    32195    878    2017-06-15 18:41:00    2017-06-15 18:41:00
98345    32196    649    2017-06-15 15:35:00    2017-06-15 15:35:00
98346    32196    629    2017-06-15 19:17:00    2017-06-15 19:17:00
98347    32196    957    2017-06-15 17:35:00    2017-06-15 17:35:00
98348    32196    840    2017-06-15 06:23:00    2017-06-15 06:23:00
98349    32196    626    2017-06-15 16:49:00    2017-06-15 16:49:00
98350    32197    832    2017-06-15 08:01:00    2017-06-15 08:01:00
98351    32197    880    2017-06-15 05:03:00    2017-06-15 05:03:00
98352    32197    656    2017-06-15 13:36:00    2017-06-15 13:36:00
98353    32197    896    2017-06-15 14:44:00    2017-06-15 14:44:00
98354    32197    584    2017-06-15 06:49:00    2017-06-15 06:49:00
98355    32198    542    2017-06-15 11:00:00    2017-06-15 11:00:00
98356    32198    520    2017-06-15 04:58:00    2017-06-15 04:58:00
98357    32198    745    2017-06-15 16:53:00    2017-06-15 16:53:00
98358    32198    916    2017-06-15 21:14:00    2017-06-15 21:14:00
98359    32198    841    2017-06-15 08:38:00    2017-06-15 08:38:00
98360    32199    799    2017-06-15 16:31:00    2017-06-15 16:31:00
98361    32199    655    2017-06-15 20:20:00    2017-06-15 20:20:00
98362    32199    515    2017-06-15 03:33:00    2017-06-15 03:33:00
98363    32199    516    2017-06-15 03:39:00    2017-06-15 03:39:00
98364    32199    590    2017-06-15 08:05:00    2017-06-15 08:05:00
98365    32200    732    2017-06-15 13:16:00    2017-06-15 13:16:00
98366    32200    774    2017-06-15 23:59:00    2017-06-15 23:59:00
98367    32200    849    2017-06-15 17:00:00    2017-06-15 17:00:00
98368    32200    807    2017-06-15 13:00:00    2017-06-15 13:00:00
98369    32200    556    2017-06-15 11:19:00    2017-06-15 11:19:00
98370    32201    505    2017-06-15 17:43:00    2017-06-15 17:43:00
98371    32201    915    2017-06-15 01:33:00    2017-06-15 01:33:00
98372    32201    637    2017-06-15 14:10:00    2017-06-15 14:10:00
98373    32201    751    2017-06-15 08:17:00    2017-06-15 08:17:00
98374    32201    838    2017-06-15 04:25:00    2017-06-15 04:25:00
98375    32202    464    2017-06-15 20:10:00    2017-06-15 20:10:00
98376    32202    483    2017-06-15 22:36:00    2017-06-15 22:36:00
98377    32202    916    2017-06-15 14:35:00    2017-06-15 14:35:00
98378    32202    853    2017-06-15 16:47:00    2017-06-15 16:47:00
98379    32202    472    2017-06-15 19:27:00    2017-06-15 19:27:00
98380    32203    954    2017-06-15 16:30:00    2017-06-15 16:30:00
98381    32203    608    2017-06-15 21:48:00    2017-06-15 21:48:00
98382    32203    915    2017-06-15 11:48:00    2017-06-15 11:48:00
98383    32203    829    2017-06-15 16:10:00    2017-06-15 16:10:00
98384    32203    739    2017-06-15 15:06:00    2017-06-15 15:06:00
98385    32204    898    2017-06-15 05:49:00    2017-06-15 05:49:00
98386    32204    787    2017-06-15 12:44:00    2017-06-15 12:44:00
98387    32204    568    2017-06-15 21:41:00    2017-06-15 21:41:00
98388    32204    928    2017-06-15 15:09:00    2017-06-15 15:09:00
98389    32204    563    2017-06-15 10:34:00    2017-06-15 10:34:00
98390    32205    918    2017-06-15 01:06:00    2017-06-15 01:06:00
98391    32205    913    2017-06-15 10:18:00    2017-06-15 10:18:00
98392    32205    901    2017-06-15 14:31:00    2017-06-15 14:31:00
98393    32205    928    2017-06-15 04:16:00    2017-06-15 04:16:00
98394    32205    920    2017-06-15 21:11:00    2017-06-15 21:11:00
98395    32206    526    2017-06-16 02:03:00    2017-06-16 02:03:00
98396    32206    476    2017-06-16 17:41:00    2017-06-16 17:41:00
98397    32206    729    2017-06-16 02:33:00    2017-06-16 02:33:00
98398    32206    554    2017-06-16 11:01:00    2017-06-16 11:01:00
98399    32206    797    2017-06-16 20:42:00    2017-06-16 20:42:00
98400    32207    701    2017-06-16 12:49:00    2017-06-16 12:49:00
98401    32207    652    2017-06-16 09:13:00    2017-06-16 09:13:00
98402    32207    852    2017-06-16 09:52:00    2017-06-16 09:52:00
98403    32207    689    2017-06-16 17:15:00    2017-06-16 17:15:00
98404    32207    480    2017-06-16 08:23:00    2017-06-16 08:23:00
98405    32208    785    2017-06-16 21:13:00    2017-06-16 21:13:00
98406    32208    730    2017-06-16 14:21:00    2017-06-16 14:21:00
98407    32208    599    2017-06-16 23:47:00    2017-06-16 23:47:00
98408    32208    606    2017-06-16 03:45:00    2017-06-16 03:45:00
98409    32208    703    2017-06-16 01:34:00    2017-06-16 01:34:00
98410    32209    879    2017-06-16 16:00:00    2017-06-16 16:00:00
98411    32209    551    2017-06-16 17:05:00    2017-06-16 17:05:00
98412    32209    845    2017-06-16 20:11:00    2017-06-16 20:11:00
98413    32209    626    2017-06-16 17:57:00    2017-06-16 17:57:00
98414    32209    767    2017-06-16 02:05:00    2017-06-16 02:05:00
98415    32210    908    2017-06-16 07:23:00    2017-06-16 07:23:00
98416    32210    955    2017-06-16 12:02:00    2017-06-16 12:02:00
98417    32210    813    2017-06-16 17:04:00    2017-06-16 17:04:00
98418    32210    916    2017-06-16 23:00:00    2017-06-16 23:00:00
98419    32210    844    2017-06-16 03:30:00    2017-06-16 03:30:00
98420    32211    536    2017-06-16 18:18:00    2017-06-16 18:18:00
98421    32211    679    2017-06-16 06:48:00    2017-06-16 06:48:00
98422    32211    942    2017-06-16 06:46:00    2017-06-16 06:46:00
98423    32211    476    2017-06-16 16:00:00    2017-06-16 16:00:00
98424    32211    776    2017-06-16 20:43:00    2017-06-16 20:43:00
98425    32212    492    2017-06-16 16:19:00    2017-06-16 16:19:00
98426    32212    594    2017-06-16 10:20:00    2017-06-16 10:20:00
98427    32212    703    2017-06-16 08:28:00    2017-06-16 08:28:00
98428    32212    666    2017-06-16 23:14:00    2017-06-16 23:14:00
98429    32212    883    2017-06-16 05:44:00    2017-06-16 05:44:00
98430    32213    909    2017-06-16 13:52:00    2017-06-16 13:52:00
98431    32213    757    2017-06-16 19:32:00    2017-06-16 19:32:00
98432    32213    662    2017-06-16 14:32:00    2017-06-16 14:32:00
98433    32213    960    2017-06-16 08:41:00    2017-06-16 08:41:00
98434    32213    732    2017-06-16 16:14:00    2017-06-16 16:14:00
98435    32214    534    2017-06-16 03:00:00    2017-06-16 03:00:00
98436    32214    914    2017-06-16 02:42:00    2017-06-16 02:42:00
98437    32214    716    2017-06-16 06:20:00    2017-06-16 06:20:00
98438    32214    880    2017-06-16 03:33:00    2017-06-16 03:33:00
98439    32214    692    2017-06-16 15:12:00    2017-06-16 15:12:00
98440    32215    955    2017-06-16 01:26:00    2017-06-16 01:26:00
98441    32215    554    2017-06-16 21:41:00    2017-06-16 21:41:00
98442    32215    789    2017-06-16 06:21:00    2017-06-16 06:21:00
98443    32215    790    2017-06-16 13:34:00    2017-06-16 13:34:00
98444    32215    501    2017-06-16 11:23:00    2017-06-16 11:23:00
98445    32216    923    2017-06-16 11:03:00    2017-06-16 11:03:00
98446    32216    640    2017-06-16 11:44:00    2017-06-16 11:44:00
98447    32216    486    2017-06-16 02:44:00    2017-06-16 02:44:00
98448    32216    911    2017-06-16 07:27:00    2017-06-16 07:27:00
98449    32216    464    2017-06-16 17:00:00    2017-06-16 17:00:00
98450    32217    812    2017-06-16 14:20:00    2017-06-16 14:20:00
98451    32217    745    2017-06-16 20:25:00    2017-06-16 20:25:00
98452    32217    565    2017-06-16 06:52:00    2017-06-16 06:52:00
98453    32217    657    2017-06-16 06:12:00    2017-06-16 06:12:00
98454    32217    644    2017-06-16 02:15:00    2017-06-16 02:15:00
98455    32218    865    2017-06-16 05:09:00    2017-06-16 05:09:00
98456    32218    469    2017-06-16 11:34:00    2017-06-16 11:34:00
98457    32218    894    2017-06-16 19:56:00    2017-06-16 19:56:00
98458    32218    941    2017-06-16 04:14:00    2017-06-16 04:14:00
98459    32218    505    2017-06-16 10:43:00    2017-06-16 10:43:00
98460    32219    481    2017-06-16 11:14:00    2017-06-16 11:14:00
98461    32219    840    2017-06-16 02:55:00    2017-06-16 02:55:00
98462    32219    694    2017-06-16 21:41:00    2017-06-16 21:41:00
98463    32219    847    2017-06-16 21:16:00    2017-06-16 21:16:00
98464    32219    679    2017-06-16 13:48:00    2017-06-16 13:48:00
98465    32220    791    2017-06-16 22:38:00    2017-06-16 22:38:00
98466    32220    924    2017-06-16 05:51:00    2017-06-16 05:51:00
98467    32220    677    2017-06-16 05:11:00    2017-06-16 05:11:00
98468    32220    701    2017-06-16 07:13:00    2017-06-16 07:13:00
98469    32220    844    2017-06-16 18:21:00    2017-06-16 18:21:00
98470    32221    658    2017-06-16 13:55:00    2017-06-16 13:55:00
98471    32221    505    2017-06-16 01:05:00    2017-06-16 01:05:00
98472    32221    938    2017-06-16 05:32:00    2017-06-16 05:32:00
98473    32221    572    2017-06-16 20:57:00    2017-06-16 20:57:00
98474    32221    837    2017-06-16 15:02:00    2017-06-16 15:02:00
98475    32222    846    2017-06-16 10:59:00    2017-06-16 10:59:00
98476    32222    819    2017-06-16 04:49:00    2017-06-16 04:49:00
98477    32222    475    2017-06-16 20:34:00    2017-06-16 20:34:00
98478    32222    803    2017-06-16 01:20:00    2017-06-16 01:20:00
98479    32222    520    2017-06-16 15:38:00    2017-06-16 15:38:00
98480    32223    872    2017-06-16 03:39:00    2017-06-16 03:39:00
98481    32223    499    2017-06-16 08:45:00    2017-06-16 08:45:00
98482    32223    835    2017-06-16 01:44:00    2017-06-16 01:44:00
98483    32223    615    2017-06-16 02:01:00    2017-06-16 02:01:00
98484    32223    909    2017-06-16 06:30:00    2017-06-16 06:30:00
98485    32224    604    2017-06-16 02:49:00    2017-06-16 02:49:00
98486    32224    642    2017-06-16 16:40:00    2017-06-16 16:40:00
98487    32224    905    2017-06-16 12:40:00    2017-06-16 12:40:00
98488    32224    770    2017-06-16 23:12:00    2017-06-16 23:12:00
98489    32224    804    2017-06-16 17:54:00    2017-06-16 17:54:00
98490    32225    830    2017-06-16 15:58:00    2017-06-16 15:58:00
98491    32225    872    2017-06-16 11:43:00    2017-06-16 11:43:00
98492    32225    472    2017-06-16 11:01:00    2017-06-16 11:01:00
98493    32225    648    2017-06-16 19:28:00    2017-06-16 19:28:00
98494    32225    875    2017-06-16 19:21:00    2017-06-16 19:21:00
98495    32226    488    2017-06-16 09:06:00    2017-06-16 09:06:00
98496    32226    903    2017-06-16 20:17:00    2017-06-16 20:17:00
98497    32226    928    2017-06-16 17:11:00    2017-06-16 17:11:00
98498    32226    750    2017-06-16 07:35:00    2017-06-16 07:35:00
98499    32226    731    2017-06-16 21:33:00    2017-06-16 21:33:00
98500    32227    559    2017-06-16 21:50:00    2017-06-16 21:50:00
98501    32227    552    2017-06-16 22:30:00    2017-06-16 22:30:00
98502    32227    832    2017-06-16 19:59:00    2017-06-16 19:59:00
98503    32227    644    2017-06-16 21:11:00    2017-06-16 21:11:00
98504    32227    723    2017-06-16 23:24:00    2017-06-16 23:24:00
98505    32228    810    2017-06-16 01:23:00    2017-06-16 01:23:00
98506    32228    749    2017-06-16 17:37:00    2017-06-16 17:37:00
98507    32228    562    2017-06-16 23:10:00    2017-06-16 23:10:00
98508    32228    537    2017-06-16 19:25:00    2017-06-16 19:25:00
98509    32228    675    2017-06-16 22:32:00    2017-06-16 22:32:00
98510    32229    932    2017-06-16 10:02:00    2017-06-16 10:02:00
98511    32229    759    2017-06-16 14:12:00    2017-06-16 14:12:00
98512    32229    687    2017-06-16 22:46:00    2017-06-16 22:46:00
98513    32229    772    2017-06-16 20:22:00    2017-06-16 20:22:00
98514    32229    478    2017-06-16 09:48:00    2017-06-16 09:48:00
98515    32230    619    2017-06-16 14:54:00    2017-06-16 14:54:00
98516    32230    490    2017-06-16 11:49:00    2017-06-16 11:49:00
98517    32230    633    2017-06-16 03:32:00    2017-06-16 03:32:00
98518    32230    670    2017-06-16 11:54:00    2017-06-16 11:54:00
98519    32230    706    2017-06-16 23:22:00    2017-06-16 23:22:00
98520    32231    872    2017-06-16 05:42:00    2017-06-16 05:42:00
98521    32231    561    2017-06-16 04:34:00    2017-06-16 04:34:00
98522    32231    739    2017-06-16 23:57:00    2017-06-16 23:57:00
98523    32231    898    2017-06-16 10:18:00    2017-06-16 10:18:00
98524    32231    676    2017-06-16 12:46:00    2017-06-16 12:46:00
98525    32232    716    2017-06-16 20:38:00    2017-06-16 20:38:00
98526    32232    495    2017-06-16 15:00:00    2017-06-16 15:00:00
98527    32232    957    2017-06-16 05:49:00    2017-06-16 05:49:00
98528    32232    642    2017-06-16 15:04:00    2017-06-16 15:04:00
98529    32232    677    2017-06-16 04:17:00    2017-06-16 04:17:00
98530    32233    812    2017-06-16 18:27:00    2017-06-16 18:27:00
98531    32233    857    2017-06-16 09:41:00    2017-06-16 09:41:00
98532    32233    529    2017-06-16 10:26:00    2017-06-16 10:26:00
98533    32233    933    2017-06-16 01:52:00    2017-06-16 01:52:00
98534    32233    467    2017-06-16 05:48:00    2017-06-16 05:48:00
98535    32234    681    2017-06-16 22:47:00    2017-06-16 22:47:00
98536    32234    771    2017-06-16 21:50:00    2017-06-16 21:50:00
98537    32234    914    2017-06-16 02:45:00    2017-06-16 02:45:00
98538    32234    680    2017-06-16 07:58:00    2017-06-16 07:58:00
98539    32234    872    2017-06-16 09:26:00    2017-06-16 09:26:00
98540    32235    913    2017-06-16 03:34:00    2017-06-16 03:34:00
98541    32235    822    2017-06-16 02:20:00    2017-06-16 02:20:00
98542    32235    629    2017-06-16 10:37:00    2017-06-16 10:37:00
98543    32235    834    2017-06-16 07:44:00    2017-06-16 07:44:00
98544    32235    575    2017-06-16 07:24:00    2017-06-16 07:24:00
98545    32236    938    2017-06-16 14:55:00    2017-06-16 14:55:00
98546    32236    662    2017-06-16 15:23:00    2017-06-16 15:23:00
98547    32236    565    2017-06-16 08:50:00    2017-06-16 08:50:00
98548    32236    635    2017-06-16 21:05:00    2017-06-16 21:05:00
98549    32236    469    2017-06-16 22:10:00    2017-06-16 22:10:00
98550    32237    562    2017-06-16 15:04:00    2017-06-16 15:04:00
98551    32237    600    2017-06-16 12:56:00    2017-06-16 12:56:00
98552    32237    693    2017-06-16 13:17:00    2017-06-16 13:17:00
98553    32237    553    2017-06-16 14:45:00    2017-06-16 14:45:00
98554    32237    516    2017-06-16 22:46:00    2017-06-16 22:46:00
98555    32238    924    2017-06-16 06:55:00    2017-06-16 06:55:00
98556    32238    751    2017-06-16 21:23:00    2017-06-16 21:23:00
98557    32238    591    2017-06-16 18:19:00    2017-06-16 18:19:00
98558    32238    867    2017-06-16 16:50:00    2017-06-16 16:50:00
98559    32238    732    2017-06-16 20:58:00    2017-06-16 20:58:00
98560    32239    953    2017-06-16 13:29:00    2017-06-16 13:29:00
98561    32239    822    2017-06-16 15:14:00    2017-06-16 15:14:00
98562    32239    781    2017-06-16 14:33:00    2017-06-16 14:33:00
98563    32239    920    2017-06-16 14:06:00    2017-06-16 14:06:00
98564    32239    849    2017-06-16 10:00:00    2017-06-16 10:00:00
98565    32240    761    2017-06-16 10:47:00    2017-06-16 10:47:00
98566    32240    888    2017-06-16 23:37:00    2017-06-16 23:37:00
98567    32240    697    2017-06-16 12:41:00    2017-06-16 12:41:00
98568    32240    563    2017-06-16 21:43:00    2017-06-16 21:43:00
98569    32240    603    2017-06-16 18:28:00    2017-06-16 18:28:00
98570    32241    850    2017-06-16 16:58:00    2017-06-16 16:58:00
98571    32241    914    2017-06-16 08:16:00    2017-06-16 08:16:00
98572    32241    692    2017-06-16 07:23:00    2017-06-16 07:23:00
98573    32241    519    2017-06-16 14:22:00    2017-06-16 14:22:00
98574    32241    695    2017-06-16 23:37:00    2017-06-16 23:37:00
98575    32242    654    2017-06-16 11:00:00    2017-06-16 11:00:00
98576    32242    681    2017-06-16 18:53:00    2017-06-16 18:53:00
98577    32242    693    2017-06-16 03:24:00    2017-06-16 03:24:00
98578    32242    642    2017-06-16 13:11:00    2017-06-16 13:11:00
98579    32242    593    2017-06-16 21:00:00    2017-06-16 21:00:00
98580    32243    572    2017-06-16 05:11:00    2017-06-16 05:11:00
98581    32243    791    2017-06-16 09:33:00    2017-06-16 09:33:00
98582    32243    940    2017-06-16 16:22:00    2017-06-16 16:22:00
98583    32243    725    2017-06-16 23:11:00    2017-06-16 23:11:00
98584    32243    725    2017-06-16 18:17:00    2017-06-16 18:17:00
98585    32244    930    2017-06-16 07:25:00    2017-06-16 07:25:00
98586    32244    659    2017-06-16 17:11:00    2017-06-16 17:11:00
98587    32244    960    2017-06-16 04:01:00    2017-06-16 04:01:00
98588    32244    895    2017-06-16 03:02:00    2017-06-16 03:02:00
98589    32244    558    2017-06-16 13:24:00    2017-06-16 13:24:00
98590    32245    819    2017-06-17 21:46:00    2017-06-17 21:46:00
98591    32245    859    2017-06-17 07:49:00    2017-06-17 07:49:00
98592    32245    480    2017-06-17 10:18:00    2017-06-17 10:18:00
98593    32245    911    2017-06-17 02:31:00    2017-06-17 02:31:00
98594    32245    893    2017-06-17 13:14:00    2017-06-17 13:14:00
98595    32246    569    2017-06-17 04:19:00    2017-06-17 04:19:00
98596    32246    763    2017-06-17 22:02:00    2017-06-17 22:02:00
98597    32246    710    2017-06-17 02:39:00    2017-06-17 02:39:00
98598    32246    608    2017-06-17 08:46:00    2017-06-17 08:46:00
98599    32246    491    2017-06-17 09:10:00    2017-06-17 09:10:00
98600    32247    909    2017-06-17 16:54:00    2017-06-17 16:54:00
98601    32247    841    2017-06-17 15:57:00    2017-06-17 15:57:00
98602    32247    538    2017-06-17 13:22:00    2017-06-17 13:22:00
98603    32247    480    2017-06-17 10:53:00    2017-06-17 10:53:00
98604    32247    741    2017-06-17 09:54:00    2017-06-17 09:54:00
98605    32248    853    2017-06-17 22:07:00    2017-06-17 22:07:00
98606    32248    839    2017-06-17 16:31:00    2017-06-17 16:31:00
98607    32248    774    2017-06-17 22:26:00    2017-06-17 22:26:00
98608    32248    797    2017-06-17 11:35:00    2017-06-17 11:35:00
98609    32248    772    2017-06-17 18:43:00    2017-06-17 18:43:00
98610    32249    619    2017-06-17 12:38:00    2017-06-17 12:38:00
98611    32249    576    2017-06-17 19:36:00    2017-06-17 19:36:00
98612    32249    590    2017-06-17 02:27:00    2017-06-17 02:27:00
98613    32249    469    2017-06-17 21:57:00    2017-06-17 21:57:00
98614    32249    536    2017-06-17 06:34:00    2017-06-17 06:34:00
98615    32250    525    2017-06-17 20:07:00    2017-06-17 20:07:00
98616    32250    777    2017-06-17 15:01:00    2017-06-17 15:01:00
98617    32250    621    2017-06-17 05:42:00    2017-06-17 05:42:00
98618    32250    766    2017-06-17 23:13:00    2017-06-17 23:13:00
98619    32250    734    2017-06-17 09:50:00    2017-06-17 09:50:00
98620    32251    766    2017-06-17 16:46:00    2017-06-17 16:46:00
98621    32251    482    2017-06-17 23:45:00    2017-06-17 23:45:00
98622    32251    623    2017-06-17 19:54:00    2017-06-17 19:54:00
98623    32251    893    2017-06-17 04:32:00    2017-06-17 04:32:00
98624    32251    511    2017-06-17 08:09:00    2017-06-17 08:09:00
98625    32252    624    2017-06-17 08:26:00    2017-06-17 08:26:00
98626    32252    829    2017-06-17 23:11:00    2017-06-17 23:11:00
98627    32252    584    2017-06-17 12:36:00    2017-06-17 12:36:00
98628    32252    489    2017-06-17 17:31:00    2017-06-17 17:31:00
98629    32252    897    2017-06-17 15:48:00    2017-06-17 15:48:00
98630    32253    514    2017-06-17 08:05:00    2017-06-17 08:05:00
98631    32253    821    2017-06-17 12:57:00    2017-06-17 12:57:00
98632    32253    919    2017-06-17 15:39:00    2017-06-17 15:39:00
98633    32253    944    2017-06-17 08:58:00    2017-06-17 08:58:00
98634    32253    484    2017-06-17 11:50:00    2017-06-17 11:50:00
98635    32254    796    2017-06-17 23:36:00    2017-06-17 23:36:00
98636    32254    615    2017-06-17 10:33:00    2017-06-17 10:33:00
98637    32254    717    2017-06-17 23:20:00    2017-06-17 23:20:00
98638    32254    571    2017-06-17 01:38:00    2017-06-17 01:38:00
98639    32254    684    2017-06-17 21:38:00    2017-06-17 21:38:00
98640    32255    532    2017-06-17 12:58:00    2017-06-17 12:58:00
98641    32255    839    2017-06-17 18:57:00    2017-06-17 18:57:00
98642    32255    946    2017-06-17 02:59:00    2017-06-17 02:59:00
98643    32255    814    2017-06-17 23:20:00    2017-06-17 23:20:00
98644    32255    876    2017-06-17 07:48:00    2017-06-17 07:48:00
98645    32256    624    2017-06-17 08:40:00    2017-06-17 08:40:00
98646    32256    620    2017-06-17 16:46:00    2017-06-17 16:46:00
98647    32256    840    2017-06-17 20:24:00    2017-06-17 20:24:00
98648    32256    536    2017-06-17 21:43:00    2017-06-17 21:43:00
98649    32256    514    2017-06-17 13:25:00    2017-06-17 13:25:00
98650    32257    741    2017-06-17 20:51:00    2017-06-17 20:51:00
98651    32257    911    2017-06-17 12:32:00    2017-06-17 12:32:00
98652    32257    753    2017-06-17 05:52:00    2017-06-17 05:52:00
98653    32257    525    2017-06-17 19:33:00    2017-06-17 19:33:00
98654    32257    666    2017-06-17 01:11:00    2017-06-17 01:11:00
98655    32258    605    2017-06-17 05:38:00    2017-06-17 05:38:00
98656    32258    710    2017-06-17 20:50:00    2017-06-17 20:50:00
98657    32258    842    2017-06-17 09:30:00    2017-06-17 09:30:00
98658    32258    726    2017-06-17 13:07:00    2017-06-17 13:07:00
98659    32258    922    2017-06-17 04:01:00    2017-06-17 04:01:00
98660    32259    541    2017-06-17 05:54:00    2017-06-17 05:54:00
98661    32259    943    2017-06-17 08:39:00    2017-06-17 08:39:00
98662    32259    553    2017-06-17 09:28:00    2017-06-17 09:28:00
98663    32259    922    2017-06-17 01:56:00    2017-06-17 01:56:00
98664    32259    746    2017-06-17 04:02:00    2017-06-17 04:02:00
98665    32260    644    2017-06-17 16:33:00    2017-06-17 16:33:00
98666    32260    723    2017-06-17 18:54:00    2017-06-17 18:54:00
98667    32260    902    2017-06-17 14:50:00    2017-06-17 14:50:00
98668    32260    521    2017-06-17 19:37:00    2017-06-17 19:37:00
98669    32260    946    2017-06-17 11:35:00    2017-06-17 11:35:00
98670    32261    538    2017-06-17 10:20:00    2017-06-17 10:20:00
98671    32261    760    2017-06-17 23:20:00    2017-06-17 23:20:00
98672    32261    573    2017-06-17 15:21:00    2017-06-17 15:21:00
98673    32261    886    2017-06-17 23:10:00    2017-06-17 23:10:00
98674    32261    729    2017-06-17 11:18:00    2017-06-17 11:18:00
98675    32262    958    2017-06-17 07:00:00    2017-06-17 07:00:00
98676    32262    775    2017-06-17 01:48:00    2017-06-17 01:48:00
98677    32262    564    2017-06-17 02:53:00    2017-06-17 02:53:00
98678    32262    598    2017-06-17 14:23:00    2017-06-17 14:23:00
98679    32262    922    2017-06-17 19:34:00    2017-06-17 19:34:00
98680    32263    579    2017-06-17 15:44:00    2017-06-17 15:44:00
98681    32263    583    2017-06-17 15:20:00    2017-06-17 15:20:00
98682    32263    470    2017-06-17 21:36:00    2017-06-17 21:36:00
98683    32263    864    2017-06-17 02:34:00    2017-06-17 02:34:00
98684    32263    616    2017-06-17 21:35:00    2017-06-17 21:35:00
98685    32264    571    2017-06-17 12:04:00    2017-06-17 12:04:00
98686    32264    499    2017-06-17 10:42:00    2017-06-17 10:42:00
98687    32264    577    2017-06-17 05:31:00    2017-06-17 05:31:00
98688    32264    902    2017-06-17 21:16:00    2017-06-17 21:16:00
98689    32264    581    2017-06-17 16:00:00    2017-06-17 16:00:00
98690    32265    626    2017-06-17 16:12:00    2017-06-17 16:12:00
98691    32265    780    2017-06-17 11:35:00    2017-06-17 11:35:00
98692    32265    932    2017-06-17 14:00:00    2017-06-17 14:00:00
98693    32265    961    2017-06-17 10:25:00    2017-06-17 10:25:00
98694    32265    924    2017-06-17 05:54:00    2017-06-17 05:54:00
98695    32266    602    2017-06-17 18:07:00    2017-06-17 18:07:00
98696    32266    732    2017-06-17 16:37:00    2017-06-17 16:37:00
98697    32266    642    2017-06-17 03:41:00    2017-06-17 03:41:00
98698    32266    714    2017-06-17 06:32:00    2017-06-17 06:32:00
98699    32266    599    2017-06-17 10:13:00    2017-06-17 10:13:00
98700    32267    780    2017-06-17 05:54:00    2017-06-17 05:54:00
98701    32267    831    2017-06-17 23:14:00    2017-06-17 23:14:00
98702    32267    523    2017-06-17 23:27:00    2017-06-17 23:27:00
98703    32267    576    2017-06-17 12:04:00    2017-06-17 12:04:00
98704    32267    723    2017-06-17 07:41:00    2017-06-17 07:41:00
98705    32268    500    2017-06-17 02:19:00    2017-06-17 02:19:00
98706    32268    912    2017-06-17 04:34:00    2017-06-17 04:34:00
98707    32268    683    2017-06-17 02:39:00    2017-06-17 02:39:00
98708    32268    476    2017-06-17 08:06:00    2017-06-17 08:06:00
98709    32268    706    2017-06-17 09:21:00    2017-06-17 09:21:00
98710    32269    826    2017-06-17 14:10:00    2017-06-17 14:10:00
98711    32269    901    2017-06-17 02:39:00    2017-06-17 02:39:00
98712    32269    547    2017-06-17 11:40:00    2017-06-17 11:40:00
98713    32269    736    2017-06-17 10:49:00    2017-06-17 10:49:00
98714    32269    548    2017-06-17 01:41:00    2017-06-17 01:41:00
98715    32270    672    2017-06-17 13:58:00    2017-06-17 13:58:00
98716    32270    868    2017-06-17 09:26:00    2017-06-17 09:26:00
98717    32270    935    2017-06-17 03:05:00    2017-06-17 03:05:00
98718    32270    611    2017-06-17 03:55:00    2017-06-17 03:55:00
98719    32270    811    2017-06-17 20:49:00    2017-06-17 20:49:00
98720    32271    709    2017-06-17 16:26:00    2017-06-17 16:26:00
98721    32271    505    2017-06-17 12:04:00    2017-06-17 12:04:00
98722    32271    692    2017-06-17 08:42:00    2017-06-17 08:42:00
98723    32271    573    2017-06-17 23:58:00    2017-06-17 23:58:00
98724    32271    668    2017-06-17 06:13:00    2017-06-17 06:13:00
98725    32272    911    2017-06-17 06:30:00    2017-06-17 06:30:00
98726    32272    738    2017-06-17 17:32:00    2017-06-17 17:32:00
98727    32272    555    2017-06-17 12:21:00    2017-06-17 12:21:00
98728    32272    745    2017-06-17 15:08:00    2017-06-17 15:08:00
98729    32272    475    2017-06-17 18:18:00    2017-06-17 18:18:00
98730    32273    831    2017-06-17 16:25:00    2017-06-17 16:25:00
98731    32273    522    2017-06-17 14:35:00    2017-06-17 14:35:00
98732    32273    832    2017-06-17 03:42:00    2017-06-17 03:42:00
98733    32273    605    2017-06-17 12:00:00    2017-06-17 12:00:00
98734    32273    582    2017-06-17 04:59:00    2017-06-17 04:59:00
98735    32274    742    2017-06-17 02:59:00    2017-06-17 02:59:00
98736    32274    662    2017-06-17 17:30:00    2017-06-17 17:30:00
98737    32274    754    2017-06-17 13:32:00    2017-06-17 13:32:00
98738    32274    935    2017-06-17 04:36:00    2017-06-17 04:36:00
98739    32274    464    2017-06-17 07:36:00    2017-06-17 07:36:00
98740    32275    883    2017-06-17 17:53:00    2017-06-17 17:53:00
98741    32275    625    2017-06-17 06:15:00    2017-06-17 06:15:00
98742    32275    871    2017-06-17 17:17:00    2017-06-17 17:17:00
98743    32275    465    2017-06-17 06:19:00    2017-06-17 06:19:00
98744    32275    935    2017-06-17 13:21:00    2017-06-17 13:21:00
98745    32276    913    2017-06-17 17:04:00    2017-06-17 17:04:00
98746    32276    762    2017-06-17 16:18:00    2017-06-17 16:18:00
98747    32276    527    2017-06-17 19:37:00    2017-06-17 19:37:00
98748    32276    936    2017-06-17 20:26:00    2017-06-17 20:26:00
98749    32276    815    2017-06-17 04:34:00    2017-06-17 04:34:00
98750    32277    806    2017-06-17 09:15:00    2017-06-17 09:15:00
98751    32277    520    2017-06-17 22:24:00    2017-06-17 22:24:00
98752    32277    644    2017-06-17 20:28:00    2017-06-17 20:28:00
98753    32277    836    2017-06-17 14:15:00    2017-06-17 14:15:00
98754    32277    717    2017-06-17 07:05:00    2017-06-17 07:05:00
98756    32278    911    2017-06-17 22:30:00    2017-06-17 22:30:00
98757    32278    917    2017-06-17 02:19:00    2017-06-17 02:19:00
98759    32278    872    2017-06-17 03:48:00    2017-06-17 03:48:00
98760    32279    614    2017-06-17 18:48:00    2017-06-17 18:48:00
98761    32279    660    2017-06-17 19:25:00    2017-06-17 19:25:00
98762    32279    713    2017-06-17 08:46:00    2017-06-17 08:46:00
98763    32279    835    2017-06-17 07:39:00    2017-06-17 07:39:00
98764    32279    664    2017-06-17 01:15:00    2017-06-17 01:15:00
98765    32280    762    2017-06-17 22:17:00    2017-06-17 22:17:00
98766    32280    888    2017-06-17 07:27:00    2017-06-17 07:27:00
98767    32280    683    2017-06-17 14:57:00    2017-06-17 14:57:00
98768    32280    907    2017-06-17 11:41:00    2017-06-17 11:41:00
98769    32280    720    2017-06-17 21:09:00    2017-06-17 21:09:00
98755    \N    550    2017-06-17 14:11:00    2017-06-17 14:11:00
98758    \N    468    2017-06-17 08:45:00    2017-06-17 08:45:00
98770    32281    903    2017-06-18 17:22:00    2017-06-18 17:22:00
98771    32281    719    2017-06-18 09:09:00    2017-06-18 09:09:00
98772    32281    715    2017-06-18 19:37:00    2017-06-18 19:37:00
98773    32281    468    2017-06-18 03:24:00    2017-06-18 03:24:00
98774    32281    685    2017-06-18 03:35:00    2017-06-18 03:35:00
98775    32282    678    2017-06-18 08:18:00    2017-06-18 08:18:00
98776    32282    833    2017-06-18 15:18:00    2017-06-18 15:18:00
98777    32282    870    2017-06-18 04:32:00    2017-06-18 04:32:00
98778    32282    579    2017-06-18 12:46:00    2017-06-18 12:46:00
98779    32282    938    2017-06-18 23:41:00    2017-06-18 23:41:00
98780    32283    742    2017-06-18 07:08:00    2017-06-18 07:08:00
98781    32283    739    2017-06-18 07:35:00    2017-06-18 07:35:00
98782    32283    823    2017-06-18 09:12:00    2017-06-18 09:12:00
98783    32283    894    2017-06-18 09:23:00    2017-06-18 09:23:00
98784    32283    954    2017-06-18 06:17:00    2017-06-18 06:17:00
98785    32284    709    2017-06-18 16:40:00    2017-06-18 16:40:00
98786    32284    468    2017-06-18 15:23:00    2017-06-18 15:23:00
98787    32284    939    2017-06-18 15:28:00    2017-06-18 15:28:00
98788    32284    868    2017-06-18 15:07:00    2017-06-18 15:07:00
98789    32284    886    2017-06-18 06:07:00    2017-06-18 06:07:00
98790    32285    722    2017-06-18 06:08:00    2017-06-18 06:08:00
98791    32285    782    2017-06-18 20:14:00    2017-06-18 20:14:00
98792    32285    866    2017-06-18 02:05:00    2017-06-18 02:05:00
98793    32285    636    2017-06-18 18:58:00    2017-06-18 18:58:00
98794    32285    861    2017-06-18 05:14:00    2017-06-18 05:14:00
98795    32286    644    2017-06-18 19:24:00    2017-06-18 19:24:00
98796    32286    479    2017-06-18 09:24:00    2017-06-18 09:24:00
98797    32286    534    2017-06-18 10:07:00    2017-06-18 10:07:00
98798    32286    927    2017-06-18 14:58:00    2017-06-18 14:58:00
98799    32286    942    2017-06-18 15:50:00    2017-06-18 15:50:00
98800    32287    595    2017-06-18 16:15:00    2017-06-18 16:15:00
98801    32287    482    2017-06-18 02:06:00    2017-06-18 02:06:00
98802    32287    487    2017-06-18 03:34:00    2017-06-18 03:34:00
98803    32287    668    2017-06-18 22:51:00    2017-06-18 22:51:00
98804    32287    581    2017-06-18 22:28:00    2017-06-18 22:28:00
98805    32288    772    2017-06-18 15:10:00    2017-06-18 15:10:00
98806    32288    532    2017-06-18 10:03:00    2017-06-18 10:03:00
98807    32288    952    2017-06-18 12:47:00    2017-06-18 12:47:00
98808    32288    550    2017-06-18 23:31:00    2017-06-18 23:31:00
98809    32288    851    2017-06-18 05:13:00    2017-06-18 05:13:00
98810    32289    905    2017-06-18 08:19:00    2017-06-18 08:19:00
98811    32289    870    2017-06-18 13:01:00    2017-06-18 13:01:00
98812    32289    865    2017-06-18 23:18:00    2017-06-18 23:18:00
98813    32289    700    2017-06-18 18:29:00    2017-06-18 18:29:00
98814    32289    953    2017-06-18 23:04:00    2017-06-18 23:04:00
98815    32290    546    2017-06-18 04:35:00    2017-06-18 04:35:00
98816    32290    779    2017-06-18 13:16:00    2017-06-18 13:16:00
98817    32290    502    2017-06-18 22:32:00    2017-06-18 22:32:00
98818    32290    736    2017-06-18 07:23:00    2017-06-18 07:23:00
98819    32290    901    2017-06-18 03:47:00    2017-06-18 03:47:00
98820    32291    813    2017-06-18 20:22:00    2017-06-18 20:22:00
98821    32291    713    2017-06-18 12:46:00    2017-06-18 12:46:00
98822    32291    630    2017-06-18 14:47:00    2017-06-18 14:47:00
98823    32291    499    2017-06-18 17:31:00    2017-06-18 17:31:00
98824    32291    587    2017-06-18 17:30:00    2017-06-18 17:30:00
98825    32292    642    2017-06-18 04:59:00    2017-06-18 04:59:00
98826    32292    863    2017-06-18 07:18:00    2017-06-18 07:18:00
98827    32292    664    2017-06-18 14:00:00    2017-06-18 14:00:00
98828    32292    737    2017-06-18 01:30:00    2017-06-18 01:30:00
98829    32292    586    2017-06-18 23:04:00    2017-06-18 23:04:00
98830    32293    696    2017-06-18 20:18:00    2017-06-18 20:18:00
98831    32293    604    2017-06-18 14:36:00    2017-06-18 14:36:00
98832    32293    608    2017-06-18 07:37:00    2017-06-18 07:37:00
98833    32293    609    2017-06-18 01:40:00    2017-06-18 01:40:00
98834    32293    713    2017-06-18 03:40:00    2017-06-18 03:40:00
98835    32294    824    2017-06-18 11:46:00    2017-06-18 11:46:00
98836    32294    745    2017-06-18 05:59:00    2017-06-18 05:59:00
98837    32294    793    2017-06-18 10:50:00    2017-06-18 10:50:00
98838    32294    688    2017-06-18 03:46:00    2017-06-18 03:46:00
98839    32294    468    2017-06-18 05:15:00    2017-06-18 05:15:00
98840    32295    857    2017-06-18 08:20:00    2017-06-18 08:20:00
98841    32295    736    2017-06-18 08:52:00    2017-06-18 08:52:00
98842    32295    717    2017-06-18 09:15:00    2017-06-18 09:15:00
98843    32295    921    2017-06-18 13:01:00    2017-06-18 13:01:00
98844    32295    811    2017-06-18 06:55:00    2017-06-18 06:55:00
98845    32296    490    2017-06-18 10:43:00    2017-06-18 10:43:00
98846    32296    768    2017-06-18 20:40:00    2017-06-18 20:40:00
98847    32296    622    2017-06-18 05:38:00    2017-06-18 05:38:00
98848    32296    601    2017-06-18 06:38:00    2017-06-18 06:38:00
98849    32296    770    2017-06-18 03:34:00    2017-06-18 03:34:00
98850    32297    659    2017-06-18 10:29:00    2017-06-18 10:29:00
98851    32297    523    2017-06-18 06:38:00    2017-06-18 06:38:00
98852    32297    486    2017-06-18 14:34:00    2017-06-18 14:34:00
98853    32297    614    2017-06-18 05:05:00    2017-06-18 05:05:00
98854    32297    687    2017-06-18 16:13:00    2017-06-18 16:13:00
98855    32298    708    2017-06-18 22:35:00    2017-06-18 22:35:00
98856    32298    626    2017-06-18 15:48:00    2017-06-18 15:48:00
98857    32298    616    2017-06-18 15:12:00    2017-06-18 15:12:00
98858    32298    933    2017-06-18 01:37:00    2017-06-18 01:37:00
98859    32298    670    2017-06-18 09:51:00    2017-06-18 09:51:00
98860    32299    882    2017-06-18 03:13:00    2017-06-18 03:13:00
98861    32299    916    2017-06-18 16:13:00    2017-06-18 16:13:00
98862    32299    804    2017-06-18 10:41:00    2017-06-18 10:41:00
98863    32299    829    2017-06-18 17:20:00    2017-06-18 17:20:00
98864    32299    796    2017-06-18 01:23:00    2017-06-18 01:23:00
98865    32300    961    2017-06-18 12:05:00    2017-06-18 12:05:00
98866    32300    804    2017-06-18 02:55:00    2017-06-18 02:55:00
98867    32300    582    2017-06-18 20:16:00    2017-06-18 20:16:00
98868    32300    716    2017-06-18 11:09:00    2017-06-18 11:09:00
98869    32300    821    2017-06-18 21:21:00    2017-06-18 21:21:00
98870    32301    608    2017-06-18 14:40:00    2017-06-18 14:40:00
98871    32301    618    2017-06-18 20:29:00    2017-06-18 20:29:00
98872    32301    689    2017-06-18 12:40:00    2017-06-18 12:40:00
98873    32301    707    2017-06-18 01:42:00    2017-06-18 01:42:00
98874    32301    514    2017-06-18 16:28:00    2017-06-18 16:28:00
98875    32302    524    2017-06-18 20:43:00    2017-06-18 20:43:00
98876    32302    703    2017-06-18 09:47:00    2017-06-18 09:47:00
98877    32302    718    2017-06-18 19:00:00    2017-06-18 19:00:00
98878    32302    728    2017-06-18 18:57:00    2017-06-18 18:57:00
98879    32302    922    2017-06-18 22:12:00    2017-06-18 22:12:00
98880    32303    618    2017-06-18 13:01:00    2017-06-18 13:01:00
98881    32303    616    2017-06-18 04:34:00    2017-06-18 04:34:00
98882    32303    865    2017-06-18 04:54:00    2017-06-18 04:54:00
98883    32303    945    2017-06-18 17:05:00    2017-06-18 17:05:00
98884    32303    780    2017-06-18 10:52:00    2017-06-18 10:52:00
98885    32304    690    2017-06-18 08:07:00    2017-06-18 08:07:00
98886    32304    648    2017-06-18 11:04:00    2017-06-18 11:04:00
98887    32304    838    2017-06-18 09:39:00    2017-06-18 09:39:00
98888    32304    568    2017-06-18 16:48:00    2017-06-18 16:48:00
98889    32304    914    2017-06-18 07:51:00    2017-06-18 07:51:00
98890    32305    684    2017-06-18 09:22:00    2017-06-18 09:22:00
98891    32305    736    2017-06-18 06:18:00    2017-06-18 06:18:00
98892    32305    843    2017-06-18 23:43:00    2017-06-18 23:43:00
98893    32305    829    2017-06-18 17:33:00    2017-06-18 17:33:00
98894    32305    482    2017-06-18 23:16:00    2017-06-18 23:16:00
98895    32306    486    2017-06-18 08:28:00    2017-06-18 08:28:00
98896    32306    534    2017-06-18 16:20:00    2017-06-18 16:20:00
98897    32306    531    2017-06-18 10:19:00    2017-06-18 10:19:00
98898    32306    526    2017-06-18 18:33:00    2017-06-18 18:33:00
98899    32306    816    2017-06-18 21:21:00    2017-06-18 21:21:00
98900    32307    858    2017-06-18 11:59:00    2017-06-18 11:59:00
98901    32307    720    2017-06-18 13:57:00    2017-06-18 13:57:00
98902    32307    655    2017-06-18 02:56:00    2017-06-18 02:56:00
98903    32307    623    2017-06-18 19:23:00    2017-06-18 19:23:00
98904    32307    828    2017-06-18 19:55:00    2017-06-18 19:55:00
98905    32308    744    2017-06-18 20:44:00    2017-06-18 20:44:00
98906    32308    859    2017-06-18 14:21:00    2017-06-18 14:21:00
98907    32308    516    2017-06-18 15:27:00    2017-06-18 15:27:00
98908    32308    959    2017-06-18 10:32:00    2017-06-18 10:32:00
98909    32308    645    2017-06-18 12:34:00    2017-06-18 12:34:00
98910    32309    763    2017-06-18 07:33:00    2017-06-18 07:33:00
98911    32309    831    2017-06-18 17:05:00    2017-06-18 17:05:00
98912    32309    795    2017-06-18 01:41:00    2017-06-18 01:41:00
98913    32309    505    2017-06-18 05:55:00    2017-06-18 05:55:00
98914    32309    813    2017-06-18 05:43:00    2017-06-18 05:43:00
98915    32310    749    2017-06-18 16:16:00    2017-06-18 16:16:00
98916    32310    607    2017-06-18 01:54:00    2017-06-18 01:54:00
98917    32310    509    2017-06-18 16:53:00    2017-06-18 16:53:00
98918    32310    633    2017-06-18 01:02:00    2017-06-18 01:02:00
98919    32310    655    2017-06-18 11:10:00    2017-06-18 11:10:00
98920    32311    876    2017-06-18 13:39:00    2017-06-18 13:39:00
98921    32311    666    2017-06-18 18:49:00    2017-06-18 18:49:00
98922    32311    549    2017-06-18 22:49:00    2017-06-18 22:49:00
98923    32311    721    2017-06-18 12:11:00    2017-06-18 12:11:00
98924    32311    816    2017-06-18 06:00:00    2017-06-18 06:00:00
98925    32312    530    2017-06-18 23:44:00    2017-06-18 23:44:00
98926    32312    886    2017-06-18 03:15:00    2017-06-18 03:15:00
98927    32312    817    2017-06-18 03:52:00    2017-06-18 03:52:00
98928    32312    757    2017-06-18 14:59:00    2017-06-18 14:59:00
98929    32312    650    2017-06-18 21:58:00    2017-06-18 21:58:00
98930    32313    882    2017-06-18 04:29:00    2017-06-18 04:29:00
98931    32313    903    2017-06-18 13:52:00    2017-06-18 13:52:00
98932    32313    876    2017-06-18 08:59:00    2017-06-18 08:59:00
98933    32313    651    2017-06-18 17:49:00    2017-06-18 17:49:00
98934    32313    533    2017-06-18 22:55:00    2017-06-18 22:55:00
98935    32314    937    2017-06-18 19:46:00    2017-06-18 19:46:00
98936    32314    592    2017-06-18 09:57:00    2017-06-18 09:57:00
98937    32314    873    2017-06-18 11:58:00    2017-06-18 11:58:00
98938    32314    710    2017-06-18 21:55:00    2017-06-18 21:55:00
98939    32314    585    2017-06-18 17:53:00    2017-06-18 17:53:00
98940    32315    610    2017-06-18 05:27:00    2017-06-18 05:27:00
98941    32315    644    2017-06-18 22:54:00    2017-06-18 22:54:00
98942    32315    699    2017-06-18 16:20:00    2017-06-18 16:20:00
98943    32315    593    2017-06-18 09:12:00    2017-06-18 09:12:00
98944    32315    676    2017-06-18 09:21:00    2017-06-18 09:21:00
98945    32316    792    2017-06-18 10:50:00    2017-06-18 10:50:00
98946    32316    892    2017-06-18 19:39:00    2017-06-18 19:39:00
98947    32316    846    2017-06-18 11:25:00    2017-06-18 11:25:00
98948    32316    907    2017-06-18 20:44:00    2017-06-18 20:44:00
98949    32316    727    2017-06-18 21:39:00    2017-06-18 21:39:00
98950    32317    744    2017-06-18 02:47:00    2017-06-18 02:47:00
98951    32317    921    2017-06-18 01:28:00    2017-06-18 01:28:00
98952    32317    561    2017-06-18 12:25:00    2017-06-18 12:25:00
98953    32317    484    2017-06-18 05:59:00    2017-06-18 05:59:00
98954    32317    724    2017-06-18 09:22:00    2017-06-18 09:22:00
98955    32318    913    2017-06-18 09:56:00    2017-06-18 09:56:00
98956    32318    607    2017-06-18 07:31:00    2017-06-18 07:31:00
98957    32318    626    2017-06-18 07:11:00    2017-06-18 07:11:00
98958    32318    792    2017-06-18 02:00:00    2017-06-18 02:00:00
98959    32318    694    2017-06-18 16:11:00    2017-06-18 16:11:00
98960    32319    776    2017-06-18 11:27:00    2017-06-18 11:27:00
98961    32319    813    2017-06-18 11:59:00    2017-06-18 11:59:00
98962    32319    901    2017-06-18 10:28:00    2017-06-18 10:28:00
98963    32319    626    2017-06-18 20:20:00    2017-06-18 20:20:00
98964    32319    854    2017-06-18 19:02:00    2017-06-18 19:02:00
98965    32320    781    2017-06-18 16:10:00    2017-06-18 16:10:00
98966    32320    610    2017-06-18 07:44:00    2017-06-18 07:44:00
98967    32320    929    2017-06-18 13:02:00    2017-06-18 13:02:00
98968    32320    704    2017-06-18 11:53:00    2017-06-18 11:53:00
98969    32320    883    2017-06-18 16:35:00    2017-06-18 16:35:00
98970    32321    949    2017-06-18 05:03:00    2017-06-18 05:03:00
98971    32321    819    2017-06-18 08:56:00    2017-06-18 08:56:00
98972    32321    673    2017-06-18 11:42:00    2017-06-18 11:42:00
98973    32321    703    2017-06-18 09:28:00    2017-06-18 09:28:00
98974    32321    818    2017-06-18 02:54:00    2017-06-18 02:54:00
98975    32322    800    2017-06-18 04:34:00    2017-06-18 04:34:00
98976    32322    730    2017-06-18 22:07:00    2017-06-18 22:07:00
98977    32322    803    2017-06-18 19:43:00    2017-06-18 19:43:00
98978    32322    845    2017-06-18 21:20:00    2017-06-18 21:20:00
98979    32322    534    2017-06-18 02:58:00    2017-06-18 02:58:00
98980    32323    646    2017-06-18 13:26:00    2017-06-18 13:26:00
98981    32323    781    2017-06-18 15:02:00    2017-06-18 15:02:00
98982    32323    702    2017-06-18 12:50:00    2017-06-18 12:50:00
98983    32323    744    2017-06-18 01:37:00    2017-06-18 01:37:00
98984    32323    802    2017-06-18 20:21:00    2017-06-18 20:21:00
98985    32324    554    2017-06-18 06:49:00    2017-06-18 06:49:00
98986    32324    531    2017-06-18 04:39:00    2017-06-18 04:39:00
98987    32324    812    2017-06-18 11:11:00    2017-06-18 11:11:00
98988    32324    829    2017-06-18 06:32:00    2017-06-18 06:32:00
98989    32324    677    2017-06-18 05:05:00    2017-06-18 05:05:00
98990    32325    958    2017-06-18 03:59:00    2017-06-18 03:59:00
98991    32325    913    2017-06-18 19:52:00    2017-06-18 19:52:00
98992    32325    948    2017-06-18 21:59:00    2017-06-18 21:59:00
98993    32325    747    2017-06-18 06:24:00    2017-06-18 06:24:00
98994    32325    878    2017-06-18 05:44:00    2017-06-18 05:44:00
98995    32326    666    2017-06-18 21:06:00    2017-06-18 21:06:00
98996    32326    486    2017-06-18 19:10:00    2017-06-18 19:10:00
98997    32326    642    2017-06-18 03:37:00    2017-06-18 03:37:00
98998    32326    670    2017-06-18 15:41:00    2017-06-18 15:41:00
98999    32326    474    2017-06-18 22:43:00    2017-06-18 22:43:00
99000    32327    469    2017-06-18 19:59:00    2017-06-18 19:59:00
99001    32327    632    2017-06-18 08:10:00    2017-06-18 08:10:00
99002    32327    683    2017-06-18 01:48:00    2017-06-18 01:48:00
99003    32327    783    2017-06-18 12:57:00    2017-06-18 12:57:00
99004    32327    484    2017-06-18 07:23:00    2017-06-18 07:23:00
99005    32328    900    2017-06-18 02:28:00    2017-06-18 02:28:00
99006    32328    717    2017-06-18 09:46:00    2017-06-18 09:46:00
99007    32328    676    2017-06-18 08:48:00    2017-06-18 08:48:00
99008    32328    783    2017-06-18 06:57:00    2017-06-18 06:57:00
99009    32328    850    2017-06-19 00:00:00    2017-06-19 00:00:00
99010    32329    485    2017-06-18 02:50:00    2017-06-18 02:50:00
99011    32329    748    2017-06-18 10:37:00    2017-06-18 10:37:00
99012    32329    934    2017-06-18 12:04:00    2017-06-18 12:04:00
99013    32329    862    2017-06-18 20:20:00    2017-06-18 20:20:00
99014    32329    911    2017-06-18 22:24:00    2017-06-18 22:24:00
99015    32330    645    2017-06-18 14:37:00    2017-06-18 14:37:00
99016    32330    658    2017-06-18 11:51:00    2017-06-18 11:51:00
99017    32330    576    2017-06-18 16:08:00    2017-06-18 16:08:00
99018    32330    551    2017-06-18 02:56:00    2017-06-18 02:56:00
99019    32330    625    2017-06-18 20:01:00    2017-06-18 20:01:00
99020    32331    474    2017-06-18 18:47:00    2017-06-18 18:47:00
99021    32331    936    2017-06-18 19:02:00    2017-06-18 19:02:00
99022    32331    951    2017-06-18 10:36:00    2017-06-18 10:36:00
99023    32331    705    2017-06-18 21:44:00    2017-06-18 21:44:00
99024    32331    906    2017-06-18 03:44:00    2017-06-18 03:44:00
99025    32332    613    2017-06-18 21:55:00    2017-06-18 21:55:00
99026    32332    789    2017-06-18 06:31:00    2017-06-18 06:31:00
99027    32332    802    2017-06-18 18:57:00    2017-06-18 18:57:00
99028    32332    572    2017-06-18 02:32:00    2017-06-18 02:32:00
99029    32332    734    2017-06-18 17:13:00    2017-06-18 17:13:00
99030    32333    913    2017-06-18 09:59:00    2017-06-18 09:59:00
99031    32333    762    2017-06-18 23:42:00    2017-06-18 23:42:00
99032    32333    737    2017-06-18 08:13:00    2017-06-18 08:13:00
99033    32333    700    2017-06-18 12:03:00    2017-06-18 12:03:00
99034    32333    868    2017-06-18 12:12:00    2017-06-18 12:12:00
99035    32334    709    2017-06-18 17:18:00    2017-06-18 17:18:00
99036    32334    629    2017-06-18 20:23:00    2017-06-18 20:23:00
99037    32334    798    2017-06-18 18:19:00    2017-06-18 18:19:00
99038    32334    698    2017-06-18 08:45:00    2017-06-18 08:45:00
99039    32334    646    2017-06-18 05:33:00    2017-06-18 05:33:00
99040    32335    593    2017-06-18 19:04:00    2017-06-18 19:04:00
99041    32335    859    2017-06-18 13:37:00    2017-06-18 13:37:00
99042    32335    592    2017-06-18 09:45:00    2017-06-18 09:45:00
99043    32335    878    2017-06-18 09:19:00    2017-06-18 09:19:00
99044    32335    821    2017-06-18 23:03:00    2017-06-18 23:03:00
99045    32336    751    2017-06-18 14:30:00    2017-06-18 14:30:00
99046    32336    606    2017-06-18 08:18:00    2017-06-18 08:18:00
99047    32336    943    2017-06-18 20:23:00    2017-06-18 20:23:00
99048    32336    744    2017-06-18 04:34:00    2017-06-18 04:34:00
99049    32336    840    2017-06-18 19:47:00    2017-06-18 19:47:00
99050    32337    939    2017-06-18 07:29:00    2017-06-18 07:29:00
99051    32337    599    2017-06-18 17:13:00    2017-06-18 17:13:00
99052    32337    698    2017-06-18 21:26:00    2017-06-18 21:26:00
99053    32337    524    2017-06-18 17:41:00    2017-06-18 17:41:00
99054    32337    866    2017-06-18 18:22:00    2017-06-18 18:22:00
99055    32338    812    2017-06-18 04:39:00    2017-06-18 04:39:00
99056    32338    667    2017-06-18 03:50:00    2017-06-18 03:50:00
99057    32338    692    2017-06-18 10:57:00    2017-06-18 10:57:00
99058    32338    519    2017-06-18 05:56:00    2017-06-18 05:56:00
99059    32338    711    2017-06-18 10:43:00    2017-06-18 10:43:00
99060    32339    604    2017-06-18 16:42:00    2017-06-18 16:42:00
99061    32339    511    2017-06-18 20:59:00    2017-06-18 20:59:00
99062    32339    886    2017-06-18 16:18:00    2017-06-18 16:18:00
99063    32339    778    2017-06-18 23:09:00    2017-06-18 23:09:00
99064    32339    660    2017-06-18 18:07:00    2017-06-18 18:07:00
99065    32340    886    2017-06-18 03:49:00    2017-06-18 03:49:00
99066    32340    947    2017-06-18 04:56:00    2017-06-18 04:56:00
99067    32340    634    2017-06-18 14:30:00    2017-06-18 14:30:00
99068    32340    709    2017-06-18 23:44:00    2017-06-18 23:44:00
99069    32340    727    2017-06-18 09:28:00    2017-06-18 09:28:00
99070    32341    922    2017-06-18 19:22:00    2017-06-18 19:22:00
99071    32341    565    2017-06-18 16:35:00    2017-06-18 16:35:00
99072    32341    598    2017-06-18 22:08:00    2017-06-18 22:08:00
99073    32341    615    2017-06-18 04:35:00    2017-06-18 04:35:00
99074    32341    831    2017-06-18 14:53:00    2017-06-18 14:53:00
99075    32342    792    2017-06-18 01:36:00    2017-06-18 01:36:00
99076    32342    515    2017-06-18 08:06:00    2017-06-18 08:06:00
99077    32342    675    2017-06-18 20:11:00    2017-06-18 20:11:00
99078    32342    535    2017-06-18 09:17:00    2017-06-18 09:17:00
99079    32342    863    2017-06-18 17:45:00    2017-06-18 17:45:00
99080    32343    710    2017-06-18 02:18:00    2017-06-18 02:18:00
99081    32343    789    2017-06-18 17:34:00    2017-06-18 17:34:00
99082    32343    947    2017-06-18 05:50:00    2017-06-18 05:50:00
99083    32343    870    2017-06-18 11:17:00    2017-06-18 11:17:00
99084    32343    790    2017-06-18 14:35:00    2017-06-18 14:35:00
99085    32344    715    2017-06-18 01:14:00    2017-06-18 01:14:00
99086    32344    912    2017-06-18 17:33:00    2017-06-18 17:33:00
99087    32344    763    2017-06-18 21:47:00    2017-06-18 21:47:00
99088    32344    604    2017-06-18 22:58:00    2017-06-18 22:58:00
99089    32344    656    2017-06-18 23:17:00    2017-06-18 23:17:00
99090    32345    689    2017-06-18 15:25:00    2017-06-18 15:25:00
99091    32345    570    2017-06-18 09:08:00    2017-06-18 09:08:00
99092    32345    556    2017-06-18 01:09:00    2017-06-18 01:09:00
99093    32345    800    2017-06-18 05:56:00    2017-06-18 05:56:00
99094    32345    885    2017-06-18 02:50:00    2017-06-18 02:50:00
99095    32346    908    2017-06-18 22:21:00    2017-06-18 22:21:00
99096    32346    737    2017-06-18 17:57:00    2017-06-18 17:57:00
99097    32346    933    2017-06-18 16:40:00    2017-06-18 16:40:00
99098    32346    686    2017-06-18 23:01:00    2017-06-18 23:01:00
99099    32346    744    2017-06-18 21:36:00    2017-06-18 21:36:00
99100    32347    635    2017-06-18 12:39:00    2017-06-18 12:39:00
99101    32347    890    2017-06-18 20:23:00    2017-06-18 20:23:00
99102    32347    513    2017-06-18 11:57:00    2017-06-18 11:57:00
99103    32347    945    2017-06-18 04:14:00    2017-06-18 04:14:00
99104    32347    815    2017-06-18 17:23:00    2017-06-18 17:23:00
99105    32348    695    2017-06-18 16:00:00    2017-06-18 16:00:00
99106    32348    577    2017-06-18 12:06:00    2017-06-18 12:06:00
99107    32348    464    2017-06-18 06:54:00    2017-06-18 06:54:00
99108    32348    774    2017-06-18 16:15:00    2017-06-18 16:15:00
99109    32348    754    2017-06-18 02:19:00    2017-06-18 02:19:00
99110    32349    715    2017-06-18 02:51:00    2017-06-18 02:51:00
99111    32349    887    2017-06-18 07:03:00    2017-06-18 07:03:00
99112    32349    847    2017-06-18 09:32:00    2017-06-18 09:32:00
99113    32349    871    2017-06-18 15:36:00    2017-06-18 15:36:00
99114    32349    921    2017-06-18 07:56:00    2017-06-18 07:56:00
99115    32350    812    2017-06-18 05:10:00    2017-06-18 05:10:00
99116    32350    926    2017-06-18 01:59:00    2017-06-18 01:59:00
99117    32350    577    2017-06-18 05:26:00    2017-06-18 05:26:00
99118    32350    805    2017-06-18 10:15:00    2017-06-18 10:15:00
99119    32350    730    2017-06-18 17:46:00    2017-06-18 17:46:00
99120    32351    616    2017-06-18 22:03:00    2017-06-18 22:03:00
99121    32351    702    2017-06-18 07:26:00    2017-06-18 07:26:00
99122    32351    752    2017-06-18 03:38:00    2017-06-18 03:38:00
99123    32351    700    2017-06-18 04:53:00    2017-06-18 04:53:00
99124    32351    849    2017-06-18 06:05:00    2017-06-18 06:05:00
99125    32352    490    2017-06-18 06:23:00    2017-06-18 06:23:00
99126    32352    519    2017-06-18 03:55:00    2017-06-18 03:55:00
99127    32352    682    2017-06-18 13:33:00    2017-06-18 13:33:00
99128    32352    559    2017-06-18 18:18:00    2017-06-18 18:18:00
99129    32352    826    2017-06-18 10:03:00    2017-06-18 10:03:00
99130    32353    669    2017-06-18 05:04:00    2017-06-18 05:04:00
99131    32353    885    2017-06-18 23:21:00    2017-06-18 23:21:00
99132    32353    677    2017-06-18 11:59:00    2017-06-18 11:59:00
99133    32353    914    2017-06-18 12:45:00    2017-06-18 12:45:00
99134    32353    480    2017-06-18 20:30:00    2017-06-18 20:30:00
99135    32354    959    2017-06-18 03:23:00    2017-06-18 03:23:00
99136    32354    523    2017-06-18 07:27:00    2017-06-18 07:27:00
99137    32354    947    2017-06-18 15:09:00    2017-06-18 15:09:00
99138    32354    809    2017-06-18 20:52:00    2017-06-18 20:52:00
99139    32354    727    2017-06-18 13:39:00    2017-06-18 13:39:00
99140    32355    561    2017-06-18 07:04:00    2017-06-18 07:04:00
99141    32355    832    2017-06-18 16:28:00    2017-06-18 16:28:00
99142    32355    492    2017-06-18 23:38:00    2017-06-18 23:38:00
99143    32355    887    2017-06-18 11:32:00    2017-06-18 11:32:00
99144    32355    933    2017-06-18 09:49:00    2017-06-18 09:49:00
99145    32356    551    2017-06-18 03:28:00    2017-06-18 03:28:00
99146    32356    818    2017-06-18 17:16:00    2017-06-18 17:16:00
99147    32356    855    2017-06-18 09:49:00    2017-06-18 09:49:00
99148    32356    920    2017-06-18 22:27:00    2017-06-18 22:27:00
99149    32356    547    2017-06-18 20:16:00    2017-06-18 20:16:00
99150    32357    557    2017-06-18 23:22:00    2017-06-18 23:22:00
99151    32357    493    2017-06-18 07:42:00    2017-06-18 07:42:00
99152    32357    903    2017-06-18 18:21:00    2017-06-18 18:21:00
99153    32357    516    2017-06-18 16:40:00    2017-06-18 16:40:00
99154    32357    920    2017-06-18 09:21:00    2017-06-18 09:21:00
99155    32358    837    2017-06-18 16:36:00    2017-06-18 16:36:00
99156    32358    633    2017-06-18 09:27:00    2017-06-18 09:27:00
99157    32358    684    2017-06-18 12:40:00    2017-06-18 12:40:00
99158    32358    755    2017-06-18 13:01:00    2017-06-18 13:01:00
99159    32358    680    2017-06-18 05:22:00    2017-06-18 05:22:00
99160    32359    571    2017-06-18 15:06:00    2017-06-18 15:06:00
99161    32359    645    2017-06-18 01:40:00    2017-06-18 01:40:00
99162    32359    674    2017-06-18 20:03:00    2017-06-18 20:03:00
99163    32359    475    2017-06-18 22:00:00    2017-06-18 22:00:00
99164    32359    548    2017-06-18 07:56:00    2017-06-18 07:56:00
99165    32360    940    2017-06-18 18:23:00    2017-06-18 18:23:00
99166    32360    632    2017-06-18 16:12:00    2017-06-18 16:12:00
99167    32360    653    2017-06-18 19:03:00    2017-06-18 19:03:00
99168    32360    906    2017-06-18 10:57:00    2017-06-18 10:57:00
99169    32360    934    2017-06-18 22:20:00    2017-06-18 22:20:00
99170    32361    744    2017-06-18 14:28:00    2017-06-18 14:28:00
99171    32361    823    2017-06-18 04:16:00    2017-06-18 04:16:00
99172    32361    776    2017-06-18 20:36:00    2017-06-18 20:36:00
99173    32361    542    2017-06-18 17:16:00    2017-06-18 17:16:00
99174    32361    501    2017-06-18 03:00:00    2017-06-18 03:00:00
99175    32362    869    2017-06-18 02:27:00    2017-06-18 02:27:00
99176    32362    489    2017-06-18 15:08:00    2017-06-18 15:08:00
99177    32362    635    2017-06-18 23:06:00    2017-06-18 23:06:00
99178    32362    886    2017-06-18 02:22:00    2017-06-18 02:22:00
99179    32362    764    2017-06-18 17:59:00    2017-06-18 17:59:00
99180    32363    939    2017-06-18 13:36:00    2017-06-18 13:36:00
99181    32363    594    2017-06-18 01:16:00    2017-06-18 01:16:00
99182    32363    778    2017-06-18 14:08:00    2017-06-18 14:08:00
99183    32363    888    2017-06-18 05:31:00    2017-06-18 05:31:00
99184    32363    492    2017-06-18 05:49:00    2017-06-18 05:49:00
99185    32364    712    2017-06-18 05:33:00    2017-06-18 05:33:00
99186    32364    939    2017-06-18 09:50:00    2017-06-18 09:50:00
99187    32364    729    2017-06-18 15:17:00    2017-06-18 15:17:00
99188    32364    685    2017-06-18 16:14:00    2017-06-18 16:14:00
99189    32364    903    2017-06-18 14:45:00    2017-06-18 14:45:00
99190    32365    837    2017-06-18 19:41:00    2017-06-18 19:41:00
99191    32365    539    2017-06-18 04:12:00    2017-06-18 04:12:00
99192    32365    872    2017-06-18 04:54:00    2017-06-18 04:54:00
99193    32365    768    2017-06-18 19:03:00    2017-06-18 19:03:00
99194    32365    618    2017-06-18 07:29:00    2017-06-18 07:29:00
99195    32366    869    2017-06-18 09:59:00    2017-06-18 09:59:00
99196    32366    611    2017-06-18 22:36:00    2017-06-18 22:36:00
99197    32366    797    2017-06-18 14:59:00    2017-06-18 14:59:00
99198    32366    582    2017-06-18 17:29:00    2017-06-18 17:29:00
99199    32366    910    2017-06-18 16:18:00    2017-06-18 16:18:00
99200    32367    478    2017-06-18 21:31:00    2017-06-18 21:31:00
99201    32367    729    2017-06-18 19:45:00    2017-06-18 19:45:00
99202    32367    709    2017-06-18 08:55:00    2017-06-18 08:55:00
99203    32367    849    2017-06-18 07:49:00    2017-06-18 07:49:00
99204    32367    779    2017-06-18 06:26:00    2017-06-18 06:26:00
99205    32368    836    2017-06-18 04:41:00    2017-06-18 04:41:00
99206    32368    917    2017-06-18 20:14:00    2017-06-18 20:14:00
99207    32368    760    2017-06-18 23:29:00    2017-06-18 23:29:00
99208    32368    494    2017-06-18 15:49:00    2017-06-18 15:49:00
99209    32368    504    2017-06-18 15:05:00    2017-06-18 15:05:00
99210    32369    896    2017-06-18 08:17:00    2017-06-18 08:17:00
99211    32369    587    2017-06-18 02:22:00    2017-06-18 02:22:00
99212    32369    597    2017-06-18 03:26:00    2017-06-18 03:26:00
99213    32369    567    2017-06-18 03:44:00    2017-06-18 03:44:00
99214    32369    701    2017-06-18 14:59:00    2017-06-18 14:59:00
99215    32370    786    2017-06-18 01:13:00    2017-06-18 01:13:00
99216    32370    849    2017-06-18 06:22:00    2017-06-18 06:22:00
99217    32370    719    2017-06-18 18:51:00    2017-06-18 18:51:00
99218    32370    768    2017-06-18 05:19:00    2017-06-18 05:19:00
99219    32370    679    2017-06-18 06:15:00    2017-06-18 06:15:00
99220    32371    960    2017-06-18 06:37:00    2017-06-18 06:37:00
99221    32371    540    2017-06-18 09:02:00    2017-06-18 09:02:00
99222    32371    684    2017-06-18 17:29:00    2017-06-18 17:29:00
99223    32371    800    2017-06-18 02:30:00    2017-06-18 02:30:00
99224    32371    718    2017-06-18 11:08:00    2017-06-18 11:08:00
99225    32372    638    2017-06-18 21:48:00    2017-06-18 21:48:00
99226    32372    469    2017-06-18 16:53:00    2017-06-18 16:53:00
99227    32372    828    2017-06-18 09:33:00    2017-06-18 09:33:00
99228    32372    553    2017-06-18 03:33:00    2017-06-18 03:33:00
99229    32372    923    2017-06-18 13:42:00    2017-06-18 13:42:00
99230    32373    582    2017-06-18 21:15:00    2017-06-18 21:15:00
99231    32373    625    2017-06-18 09:27:00    2017-06-18 09:27:00
99232    32373    697    2017-06-18 16:13:00    2017-06-18 16:13:00
99233    32373    566    2017-06-18 10:54:00    2017-06-18 10:54:00
99234    32373    781    2017-06-18 21:13:00    2017-06-18 21:13:00
99235    32374    561    2017-06-18 04:08:00    2017-06-18 04:08:00
99236    32374    884    2017-06-18 11:22:00    2017-06-18 11:22:00
99237    32374    731    2017-06-18 23:33:00    2017-06-18 23:33:00
99238    32374    611    2017-06-18 11:18:00    2017-06-18 11:18:00
99239    32374    937    2017-06-18 17:06:00    2017-06-18 17:06:00
99240    32375    470    2017-06-19 21:24:00    2017-06-19 21:24:00
99241    32375    685    2017-06-19 21:43:00    2017-06-19 21:43:00
99242    32375    627    2017-06-19 17:30:00    2017-06-19 17:30:00
99243    32375    623    2017-06-19 09:39:00    2017-06-19 09:39:00
99244    32375    713    2017-06-19 09:45:00    2017-06-19 09:45:00
99245    32376    717    2017-06-19 11:25:00    2017-06-19 11:25:00
99246    32376    477    2017-06-19 18:44:00    2017-06-19 18:44:00
99247    32376    513    2017-06-19 06:49:00    2017-06-19 06:49:00
99248    32376    586    2017-06-19 19:12:00    2017-06-19 19:12:00
99249    32376    794    2017-06-19 13:36:00    2017-06-19 13:36:00
99250    32377    924    2017-06-19 18:06:00    2017-06-19 18:06:00
99251    32377    740    2017-06-19 23:38:00    2017-06-19 23:38:00
99252    32377    813    2017-06-19 16:50:00    2017-06-19 16:50:00
99253    32377    550    2017-06-19 13:34:00    2017-06-19 13:34:00
99254    32377    916    2017-06-19 18:55:00    2017-06-19 18:55:00
99255    32378    866    2017-06-19 21:57:00    2017-06-19 21:57:00
99256    32378    587    2017-06-19 14:00:00    2017-06-19 14:00:00
99257    32378    485    2017-06-19 07:33:00    2017-06-19 07:33:00
99258    32378    598    2017-06-19 04:52:00    2017-06-19 04:52:00
99259    32378    666    2017-06-19 20:51:00    2017-06-19 20:51:00
99260    32379    568    2017-06-19 20:31:00    2017-06-19 20:31:00
99261    32379    686    2017-06-19 09:53:00    2017-06-19 09:53:00
99262    32379    812    2017-06-19 13:32:00    2017-06-19 13:32:00
99263    32379    813    2017-06-19 22:37:00    2017-06-19 22:37:00
99264    32379    463    2017-06-19 01:57:00    2017-06-19 01:57:00
99265    32380    941    2017-06-19 03:12:00    2017-06-19 03:12:00
99266    32380    826    2017-06-19 13:21:00    2017-06-19 13:21:00
99267    32380    877    2017-06-19 19:36:00    2017-06-19 19:36:00
99268    32380    594    2017-06-19 14:27:00    2017-06-19 14:27:00
99269    32380    648    2017-06-19 20:17:00    2017-06-19 20:17:00
99270    32381    588    2017-06-19 19:02:00    2017-06-19 19:02:00
99271    32381    504    2017-06-19 17:50:00    2017-06-19 17:50:00
99272    32381    804    2017-06-19 11:15:00    2017-06-19 11:15:00
99273    32381    882    2017-06-19 21:32:00    2017-06-19 21:32:00
99274    32381    624    2017-06-19 09:29:00    2017-06-19 09:29:00
99275    32382    619    2017-06-20 06:22:00    2017-06-20 06:22:00
99276    32382    758    2017-06-20 06:12:00    2017-06-20 06:12:00
99277    32382    771    2017-06-20 18:59:00    2017-06-20 18:59:00
99278    32382    829    2017-06-20 06:19:00    2017-06-20 06:19:00
99279    32382    503    2017-06-20 05:26:00    2017-06-20 05:26:00
99280    32383    476    2017-06-20 02:12:00    2017-06-20 02:12:00
99281    32383    578    2017-06-20 07:25:00    2017-06-20 07:25:00
99282    32383    690    2017-06-20 11:48:00    2017-06-20 11:48:00
99283    32383    507    2017-06-20 20:59:00    2017-06-20 20:59:00
99284    32383    788    2017-06-20 19:48:00    2017-06-20 19:48:00
99285    32384    614    2017-06-20 16:10:00    2017-06-20 16:10:00
99286    32384    931    2017-06-20 17:50:00    2017-06-20 17:50:00
99287    32384    672    2017-06-20 03:59:00    2017-06-20 03:59:00
99288    32384    639    2017-06-20 02:42:00    2017-06-20 02:42:00
99289    32384    941    2017-06-20 21:54:00    2017-06-20 21:54:00
99290    32385    787    2017-06-20 15:42:00    2017-06-20 15:42:00
99291    32385    597    2017-06-20 13:06:00    2017-06-20 13:06:00
99292    32385    722    2017-06-20 01:10:00    2017-06-20 01:10:00
99293    32385    695    2017-06-20 13:38:00    2017-06-20 13:38:00
99294    32385    677    2017-06-20 10:45:00    2017-06-20 10:45:00
99295    32386    952    2017-06-20 21:31:00    2017-06-20 21:31:00
99296    32386    735    2017-06-20 18:56:00    2017-06-20 18:56:00
99297    32386    479    2017-06-20 08:16:00    2017-06-20 08:16:00
99298    32386    729    2017-06-20 13:50:00    2017-06-20 13:50:00
99299    32386    888    2017-06-20 19:55:00    2017-06-20 19:55:00
99300    32387    861    2017-06-20 17:37:00    2017-06-20 17:37:00
99301    32387    511    2017-06-20 21:34:00    2017-06-20 21:34:00
99302    32387    619    2017-06-20 01:34:00    2017-06-20 01:34:00
99303    32387    609    2017-06-20 10:44:00    2017-06-20 10:44:00
99304    32387    945    2017-06-20 01:16:00    2017-06-20 01:16:00
99305    32388    815    2017-06-20 10:28:00    2017-06-20 10:28:00
99306    32388    883    2017-06-20 06:33:00    2017-06-20 06:33:00
99307    32388    839    2017-06-20 04:59:00    2017-06-20 04:59:00
99308    32388    685    2017-06-20 03:16:00    2017-06-20 03:16:00
99309    32388    873    2017-06-20 09:46:00    2017-06-20 09:46:00
99310    32389    577    2017-06-20 17:09:00    2017-06-20 17:09:00
99311    32389    903    2017-06-20 06:04:00    2017-06-20 06:04:00
99312    32389    807    2017-06-20 05:30:00    2017-06-20 05:30:00
99314    32389    815    2017-06-20 11:32:00    2017-06-20 11:32:00
99315    32390    489    2017-06-20 15:49:00    2017-06-20 15:49:00
99316    32390    731    2017-06-20 05:46:00    2017-06-20 05:46:00
99317    32390    631    2017-06-20 23:21:00    2017-06-20 23:21:00
99318    32390    512    2017-06-20 22:52:00    2017-06-20 22:52:00
99319    32390    884    2017-06-20 14:46:00    2017-06-20 14:46:00
99320    32391    872    2017-06-20 17:30:00    2017-06-20 17:30:00
99321    32391    588    2017-06-20 23:51:00    2017-06-20 23:51:00
99322    32391    902    2017-06-20 04:15:00    2017-06-20 04:15:00
99323    32391    852    2017-06-20 11:32:00    2017-06-20 11:32:00
99324    32391    893    2017-06-20 07:24:00    2017-06-20 07:24:00
99313    \N    894    2017-06-20 11:57:00    2017-06-20 11:57:00
99325    32392    904    2017-06-21 17:35:00    2017-06-21 17:35:00
99326    32392    614    2017-06-21 04:00:00    2017-06-21 04:00:00
99327    32392    773    2017-06-21 07:10:00    2017-06-21 07:10:00
99328    32392    537    2017-06-21 10:37:00    2017-06-21 10:37:00
99329    32392    961    2017-06-21 06:19:00    2017-06-21 06:19:00
99330    32393    767    2017-06-21 04:09:00    2017-06-21 04:09:00
99331    32393    786    2017-06-21 03:19:00    2017-06-21 03:19:00
99332    32393    713    2017-06-21 14:15:00    2017-06-21 14:15:00
99333    32393    679    2017-06-21 06:13:00    2017-06-21 06:13:00
99334    32393    600    2017-06-21 05:15:00    2017-06-21 05:15:00
99335    32394    836    2017-06-21 22:04:00    2017-06-21 22:04:00
99336    32394    773    2017-06-21 10:27:00    2017-06-21 10:27:00
99337    32394    556    2017-06-21 08:38:00    2017-06-21 08:38:00
99338    32394    591    2017-06-21 21:01:00    2017-06-21 21:01:00
99339    32394    937    2017-06-21 14:51:00    2017-06-21 14:51:00
99340    32395    524    2017-06-21 14:51:00    2017-06-21 14:51:00
99341    32395    902    2017-06-21 18:26:00    2017-06-21 18:26:00
99342    32395    611    2017-06-21 15:16:00    2017-06-21 15:16:00
99343    32395    938    2017-06-21 07:16:00    2017-06-21 07:16:00
99344    32395    842    2017-06-21 15:17:00    2017-06-21 15:17:00
99345    32396    909    2017-06-21 04:54:00    2017-06-21 04:54:00
99346    32396    654    2017-06-21 07:15:00    2017-06-21 07:15:00
99347    32396    812    2017-06-21 09:50:00    2017-06-21 09:50:00
99348    32396    598    2017-06-21 13:33:00    2017-06-21 13:33:00
99349    32396    755    2017-06-21 22:17:00    2017-06-21 22:17:00
99350    32397    502    2017-06-21 10:12:00    2017-06-21 10:12:00
99351    32397    480    2017-06-21 14:18:00    2017-06-21 14:18:00
99352    32397    572    2017-06-21 20:43:00    2017-06-21 20:43:00
99353    32397    675    2017-06-21 01:55:00    2017-06-21 01:55:00
99354    32397    480    2017-06-21 21:54:00    2017-06-21 21:54:00
99355    32398    598    2017-06-21 19:55:00    2017-06-21 19:55:00
99356    32398    830    2017-06-21 11:02:00    2017-06-21 11:02:00
99357    32398    566    2017-06-21 12:17:00    2017-06-21 12:17:00
99358    32398    577    2017-06-21 08:48:00    2017-06-21 08:48:00
99359    32398    628    2017-06-21 16:31:00    2017-06-21 16:31:00
99360    32399    795    2017-06-21 06:10:00    2017-06-21 06:10:00
99361    32399    480    2017-06-21 22:42:00    2017-06-21 22:42:00
99362    32399    635    2017-06-21 06:53:00    2017-06-21 06:53:00
99363    32399    638    2017-06-21 10:48:00    2017-06-21 10:48:00
99364    32399    541    2017-06-21 05:35:00    2017-06-21 05:35:00
99365    32400    673    2017-06-21 15:45:00    2017-06-21 15:45:00
99366    32400    849    2017-06-21 05:14:00    2017-06-21 05:14:00
99367    32400    893    2017-06-21 17:28:00    2017-06-21 17:28:00
99368    32400    553    2017-06-21 18:17:00    2017-06-21 18:17:00
99369    32400    468    2017-06-21 05:56:00    2017-06-21 05:56:00
99370    32401    767    2017-06-21 06:35:00    2017-06-21 06:35:00
99371    32401    597    2017-06-21 19:25:00    2017-06-21 19:25:00
99372    32401    533    2017-06-21 14:28:00    2017-06-21 14:28:00
99373    32401    536    2017-06-21 17:39:00    2017-06-21 17:39:00
99374    32401    615    2017-06-21 23:48:00    2017-06-21 23:48:00
99375    32402    595    2017-06-21 05:28:00    2017-06-21 05:28:00
99376    32402    470    2017-06-21 23:44:00    2017-06-21 23:44:00
99377    32402    938    2017-06-21 22:40:00    2017-06-21 22:40:00
99378    32402    560    2017-06-21 03:50:00    2017-06-21 03:50:00
99379    32402    507    2017-06-21 20:57:00    2017-06-21 20:57:00
99380    32403    596    2017-06-21 06:53:00    2017-06-21 06:53:00
99381    32403    612    2017-06-21 02:19:00    2017-06-21 02:19:00
99382    32403    877    2017-06-21 17:27:00    2017-06-21 17:27:00
99383    32403    846    2017-06-21 02:12:00    2017-06-21 02:12:00
99384    32403    723    2017-06-21 03:00:00    2017-06-21 03:00:00
99385    32404    786    2017-06-21 18:02:00    2017-06-21 18:02:00
99386    32404    811    2017-06-21 08:46:00    2017-06-21 08:46:00
99387    32404    632    2017-06-21 08:26:00    2017-06-21 08:26:00
99388    32404    518    2017-06-21 01:20:00    2017-06-21 01:20:00
99389    32404    833    2017-06-21 11:26:00    2017-06-21 11:26:00
99390    32405    671    2017-06-21 05:07:00    2017-06-21 05:07:00
99391    32405    822    2017-06-21 11:03:00    2017-06-21 11:03:00
99392    32405    573    2017-06-21 02:09:00    2017-06-21 02:09:00
99393    32405    652    2017-06-21 12:34:00    2017-06-21 12:34:00
99394    32405    938    2017-06-21 07:29:00    2017-06-21 07:29:00
99395    32406    543    2017-06-21 21:03:00    2017-06-21 21:03:00
99396    32406    712    2017-06-21 02:15:00    2017-06-21 02:15:00
99397    32406    762    2017-06-21 14:07:00    2017-06-21 14:07:00
99398    32406    935    2017-06-21 15:44:00    2017-06-21 15:44:00
99399    32406    484    2017-06-21 19:51:00    2017-06-21 19:51:00
99400    32407    615    2017-06-21 11:17:00    2017-06-21 11:17:00
99401    32407    732    2017-06-21 14:33:00    2017-06-21 14:33:00
99402    32407    748    2017-06-21 01:41:00    2017-06-21 01:41:00
99403    32407    624    2017-06-21 05:12:00    2017-06-21 05:12:00
99404    32407    629    2017-06-21 18:43:00    2017-06-21 18:43:00
99405    32408    802    2017-06-21 23:23:00    2017-06-21 23:23:00
99406    32408    943    2017-06-21 21:38:00    2017-06-21 21:38:00
99407    32408    776    2017-06-21 05:57:00    2017-06-21 05:57:00
99408    32408    854    2017-06-21 08:48:00    2017-06-21 08:48:00
99409    32408    603    2017-06-21 08:28:00    2017-06-21 08:28:00
99410    32409    814    2017-06-21 21:18:00    2017-06-21 21:18:00
99411    32409    823    2017-06-21 03:18:00    2017-06-21 03:18:00
99412    32409    705    2017-06-21 13:29:00    2017-06-21 13:29:00
99413    32409    867    2017-06-21 05:44:00    2017-06-21 05:44:00
99414    32409    579    2017-06-21 18:47:00    2017-06-21 18:47:00
99415    32410    952    2017-06-21 06:18:00    2017-06-21 06:18:00
99416    32410    803    2017-06-21 04:12:00    2017-06-21 04:12:00
99417    32410    470    2017-06-21 06:27:00    2017-06-21 06:27:00
99418    32410    586    2017-06-21 09:54:00    2017-06-21 09:54:00
99419    32410    506    2017-06-21 10:14:00    2017-06-21 10:14:00
99420    32411    744    2017-06-21 12:50:00    2017-06-21 12:50:00
99421    32411    634    2017-06-21 09:56:00    2017-06-21 09:56:00
99422    32411    505    2017-06-21 19:28:00    2017-06-21 19:28:00
99423    32411    794    2017-06-21 23:51:00    2017-06-21 23:51:00
99424    32411    822    2017-06-21 07:45:00    2017-06-21 07:45:00
99425    32412    565    2017-06-21 07:19:00    2017-06-21 07:19:00
99426    32412    807    2017-06-21 01:14:00    2017-06-21 01:14:00
99427    32412    896    2017-06-21 19:20:00    2017-06-21 19:20:00
99428    32412    847    2017-06-21 12:34:00    2017-06-21 12:34:00
99429    32412    619    2017-06-21 01:25:00    2017-06-21 01:25:00
99430    32413    617    2017-06-21 04:18:00    2017-06-21 04:18:00
99431    32413    786    2017-06-21 22:53:00    2017-06-21 22:53:00
99432    32413    729    2017-06-21 22:41:00    2017-06-21 22:41:00
99433    32413    713    2017-06-21 19:01:00    2017-06-21 19:01:00
99434    32413    858    2017-06-21 11:19:00    2017-06-21 11:19:00
99435    32414    951    2017-06-21 12:46:00    2017-06-21 12:46:00
99436    32414    818    2017-06-21 14:37:00    2017-06-21 14:37:00
99437    32414    846    2017-06-21 13:52:00    2017-06-21 13:52:00
99438    32414    821    2017-06-21 18:27:00    2017-06-21 18:27:00
99439    32414    534    2017-06-21 08:15:00    2017-06-21 08:15:00
99440    32415    788    2017-06-21 19:31:00    2017-06-21 19:31:00
99441    32415    798    2017-06-21 17:27:00    2017-06-21 17:27:00
99442    32415    952    2017-06-21 16:33:00    2017-06-21 16:33:00
99443    32415    854    2017-06-21 04:00:00    2017-06-21 04:00:00
99444    32415    806    2017-06-21 06:13:00    2017-06-21 06:13:00
99445    32416    495    2017-06-21 02:48:00    2017-06-21 02:48:00
99446    32416    873    2017-06-21 13:15:00    2017-06-21 13:15:00
99447    32416    570    2017-06-21 21:56:00    2017-06-21 21:56:00
99448    32416    813    2017-06-21 03:53:00    2017-06-21 03:53:00
99449    32416    638    2017-06-21 07:33:00    2017-06-21 07:33:00
99450    32417    548    2017-06-21 11:42:00    2017-06-21 11:42:00
99451    32417    757    2017-06-21 13:48:00    2017-06-21 13:48:00
99452    32417    811    2017-06-21 15:17:00    2017-06-21 15:17:00
99453    32417    596    2017-06-21 19:24:00    2017-06-21 19:24:00
99454    32417    797    2017-06-21 03:10:00    2017-06-21 03:10:00
99455    32418    706    2017-06-21 23:51:00    2017-06-21 23:51:00
99456    32418    610    2017-06-21 18:20:00    2017-06-21 18:20:00
99457    32418    480    2017-06-21 22:31:00    2017-06-21 22:31:00
99458    32418    782    2017-06-21 01:44:00    2017-06-21 01:44:00
99459    32418    931    2017-06-21 04:33:00    2017-06-21 04:33:00
99460    32419    726    2017-06-21 10:33:00    2017-06-21 10:33:00
99461    32419    886    2017-06-21 17:52:00    2017-06-21 17:52:00
99462    32419    546    2017-06-21 05:16:00    2017-06-21 05:16:00
99463    32419    820    2017-06-21 02:12:00    2017-06-21 02:12:00
99464    32419    555    2017-06-21 05:13:00    2017-06-21 05:13:00
99465    32420    896    2017-06-21 13:22:00    2017-06-21 13:22:00
99466    32420    872    2017-06-21 19:13:00    2017-06-21 19:13:00
99467    32420    890    2017-06-21 06:34:00    2017-06-21 06:34:00
99468    32420    941    2017-06-21 06:47:00    2017-06-21 06:47:00
99469    32420    670    2017-06-21 14:36:00    2017-06-21 14:36:00
99470    32421    890    2017-06-21 14:26:00    2017-06-21 14:26:00
99471    32421    507    2017-06-21 12:25:00    2017-06-21 12:25:00
99472    32421    815    2017-06-21 23:58:00    2017-06-21 23:58:00
99473    32421    772    2017-06-21 11:32:00    2017-06-21 11:32:00
99474    32421    854    2017-06-21 16:07:00    2017-06-21 16:07:00
99475    32422    717    2017-06-21 01:07:00    2017-06-21 01:07:00
99476    32422    866    2017-06-21 09:28:00    2017-06-21 09:28:00
99477    32422    510    2017-06-21 10:38:00    2017-06-21 10:38:00
99478    32422    814    2017-06-21 05:08:00    2017-06-21 05:08:00
99479    32422    573    2017-06-21 18:42:00    2017-06-21 18:42:00
99480    32423    711    2017-06-21 20:55:00    2017-06-21 20:55:00
99481    32423    808    2017-06-21 19:38:00    2017-06-21 19:38:00
99482    32423    765    2017-06-21 01:59:00    2017-06-21 01:59:00
99483    32423    492    2017-06-21 15:42:00    2017-06-21 15:42:00
99484    32423    594    2017-06-21 07:59:00    2017-06-21 07:59:00
99485    32424    639    2017-06-21 14:49:00    2017-06-21 14:49:00
99486    32424    806    2017-06-21 09:15:00    2017-06-21 09:15:00
99487    32424    590    2017-06-21 11:23:00    2017-06-21 11:23:00
99488    32424    726    2017-06-21 15:58:00    2017-06-21 15:58:00
99489    32424    916    2017-06-21 06:00:00    2017-06-21 06:00:00
99490    32425    756    2017-06-21 11:05:00    2017-06-21 11:05:00
99491    32425    906    2017-06-21 02:48:00    2017-06-21 02:48:00
99492    32425    563    2017-06-21 09:34:00    2017-06-21 09:34:00
99493    32425    760    2017-06-21 12:18:00    2017-06-21 12:18:00
99494    32425    640    2017-06-21 13:50:00    2017-06-21 13:50:00
99495    32426    485    2017-06-21 20:44:00    2017-06-21 20:44:00
99496    32426    784    2017-06-21 14:10:00    2017-06-21 14:10:00
99497    32426    592    2017-06-21 03:18:00    2017-06-21 03:18:00
99498    32426    614    2017-06-21 04:31:00    2017-06-21 04:31:00
99499    32426    679    2017-06-21 08:13:00    2017-06-21 08:13:00
99500    32427    805    2017-06-21 15:19:00    2017-06-21 15:19:00
99501    32427    722    2017-06-21 12:57:00    2017-06-21 12:57:00
99502    32427    677    2017-06-21 22:10:00    2017-06-21 22:10:00
99503    32427    856    2017-06-21 18:20:00    2017-06-21 18:20:00
99504    32427    514    2017-06-21 09:40:00    2017-06-21 09:40:00
99505    32428    612    2017-06-21 08:57:00    2017-06-21 08:57:00
99506    32428    813    2017-06-21 21:41:00    2017-06-21 21:41:00
99507    32428    620    2017-06-21 20:19:00    2017-06-21 20:19:00
99508    32428    543    2017-06-21 06:25:00    2017-06-21 06:25:00
99509    32428    615    2017-06-21 17:21:00    2017-06-21 17:21:00
99510    32429    905    2017-06-21 07:45:00    2017-06-21 07:45:00
99511    32429    766    2017-06-21 07:30:00    2017-06-21 07:30:00
99512    32429    850    2017-06-21 08:00:00    2017-06-21 08:00:00
99513    32429    763    2017-06-21 17:32:00    2017-06-21 17:32:00
99514    32429    957    2017-06-21 05:57:00    2017-06-21 05:57:00
99515    32430    753    2017-06-21 11:05:00    2017-06-21 11:05:00
99516    32430    767    2017-06-21 07:48:00    2017-06-21 07:48:00
99517    32430    944    2017-06-21 17:38:00    2017-06-21 17:38:00
99518    32430    522    2017-06-21 07:34:00    2017-06-21 07:34:00
99519    32430    643    2017-06-21 09:18:00    2017-06-21 09:18:00
99520    32431    930    2017-06-21 17:58:00    2017-06-21 17:58:00
99521    32431    620    2017-06-21 09:35:00    2017-06-21 09:35:00
99522    32431    723    2017-06-21 21:21:00    2017-06-21 21:21:00
99523    32431    773    2017-06-21 14:00:00    2017-06-21 14:00:00
99524    32431    854    2017-06-21 20:07:00    2017-06-21 20:07:00
99525    32432    776    2017-06-21 06:50:00    2017-06-21 06:50:00
99526    32432    720    2017-06-21 09:16:00    2017-06-21 09:16:00
99527    32432    635    2017-06-21 16:24:00    2017-06-21 16:24:00
99528    32432    774    2017-06-21 20:47:00    2017-06-21 20:47:00
99529    32432    845    2017-06-21 21:04:00    2017-06-21 21:04:00
99530    32433    503    2017-06-21 07:29:00    2017-06-21 07:29:00
99531    32433    928    2017-06-21 21:52:00    2017-06-21 21:52:00
99532    32433    755    2017-06-21 11:22:00    2017-06-21 11:22:00
99533    32433    764    2017-06-21 21:45:00    2017-06-21 21:45:00
99534    32433    591    2017-06-21 19:06:00    2017-06-21 19:06:00
99535    32434    930    2017-06-21 08:00:00    2017-06-21 08:00:00
99536    32434    933    2017-06-21 09:50:00    2017-06-21 09:50:00
99537    32434    492    2017-06-21 12:16:00    2017-06-21 12:16:00
99538    32434    657    2017-06-21 23:00:00    2017-06-21 23:00:00
99539    32434    807    2017-06-21 21:20:00    2017-06-21 21:20:00
99540    32435    586    2017-06-21 06:03:00    2017-06-21 06:03:00
99541    32435    951    2017-06-21 07:53:00    2017-06-21 07:53:00
99542    32435    490    2017-06-21 16:27:00    2017-06-21 16:27:00
99543    32435    688    2017-06-21 11:57:00    2017-06-21 11:57:00
99544    32435    937    2017-06-21 20:55:00    2017-06-21 20:55:00
99545    32436    843    2017-06-21 12:07:00    2017-06-21 12:07:00
99546    32436    777    2017-06-21 13:16:00    2017-06-21 13:16:00
99547    32436    689    2017-06-21 19:55:00    2017-06-21 19:55:00
99548    32436    577    2017-06-21 19:11:00    2017-06-21 19:11:00
99549    32436    677    2017-06-21 06:05:00    2017-06-21 06:05:00
99550    32437    855    2017-06-21 12:35:00    2017-06-21 12:35:00
99551    32437    889    2017-06-21 04:02:00    2017-06-21 04:02:00
99552    32437    644    2017-06-21 15:27:00    2017-06-21 15:27:00
99553    32437    714    2017-06-21 08:33:00    2017-06-21 08:33:00
99554    32437    492    2017-06-21 05:39:00    2017-06-21 05:39:00
99555    32438    829    2017-06-21 16:58:00    2017-06-21 16:58:00
99556    32438    700    2017-06-21 09:47:00    2017-06-21 09:47:00
99557    32438    573    2017-06-21 13:26:00    2017-06-21 13:26:00
99558    32438    809    2017-06-21 04:54:00    2017-06-21 04:54:00
99559    32438    722    2017-06-21 08:09:00    2017-06-21 08:09:00
99560    32439    683    2017-06-21 20:21:00    2017-06-21 20:21:00
99561    32439    542    2017-06-21 20:22:00    2017-06-21 20:22:00
99562    32439    690    2017-06-21 10:24:00    2017-06-21 10:24:00
99563    32439    503    2017-06-21 11:56:00    2017-06-21 11:56:00
99564    32439    769    2017-06-21 04:26:00    2017-06-21 04:26:00
99565    32440    961    2017-06-21 07:03:00    2017-06-21 07:03:00
99566    32440    678    2017-06-21 23:37:00    2017-06-21 23:37:00
99567    32440    883    2017-06-21 21:48:00    2017-06-21 21:48:00
99568    32440    902    2017-06-21 22:27:00    2017-06-21 22:27:00
99569    32440    917    2017-06-21 18:32:00    2017-06-21 18:32:00
99570    32441    599    2017-06-21 14:15:00    2017-06-21 14:15:00
99571    32441    602    2017-06-21 21:11:00    2017-06-21 21:11:00
99572    32441    592    2017-06-21 16:17:00    2017-06-21 16:17:00
99573    32441    908    2017-06-21 21:41:00    2017-06-21 21:41:00
99574    32441    621    2017-06-21 16:05:00    2017-06-21 16:05:00
99575    32442    739    2017-06-21 14:32:00    2017-06-21 14:32:00
99576    32442    757    2017-06-21 01:36:00    2017-06-21 01:36:00
99577    32442    809    2017-06-21 21:59:00    2017-06-21 21:59:00
99578    32442    643    2017-06-21 20:57:00    2017-06-21 20:57:00
99579    32442    613    2017-06-21 10:46:00    2017-06-21 10:46:00
99580    32443    562    2017-06-21 12:17:00    2017-06-21 12:17:00
99581    32443    877    2017-06-21 08:11:00    2017-06-21 08:11:00
99582    32443    695    2017-06-21 11:45:00    2017-06-21 11:45:00
99583    32443    792    2017-06-21 03:09:00    2017-06-21 03:09:00
99584    32443    488    2017-06-21 08:47:00    2017-06-21 08:47:00
99585    32444    863    2017-06-21 08:31:00    2017-06-21 08:31:00
99586    32444    813    2017-06-21 09:34:00    2017-06-21 09:34:00
99587    32444    464    2017-06-21 22:05:00    2017-06-21 22:05:00
99588    32444    917    2017-06-21 07:59:00    2017-06-21 07:59:00
99589    32444    652    2017-06-21 01:24:00    2017-06-21 01:24:00
99590    32445    894    2017-06-21 20:45:00    2017-06-21 20:45:00
99591    32445    629    2017-06-21 05:25:00    2017-06-21 05:25:00
99592    32445    689    2017-06-21 06:13:00    2017-06-21 06:13:00
99593    32445    796    2017-06-21 13:14:00    2017-06-21 13:14:00
99594    32445    916    2017-06-21 07:18:00    2017-06-21 07:18:00
99595    32446    937    2017-06-21 03:11:00    2017-06-21 03:11:00
99596    32446    498    2017-06-21 05:01:00    2017-06-21 05:01:00
99597    32446    807    2017-06-21 14:59:00    2017-06-21 14:59:00
99598    32446    837    2017-06-21 10:54:00    2017-06-21 10:54:00
99599    32446    468    2017-06-21 07:34:00    2017-06-21 07:34:00
99600    32447    560    2017-06-21 11:02:00    2017-06-21 11:02:00
99601    32447    514    2017-06-21 12:06:00    2017-06-21 12:06:00
99602    32447    648    2017-06-21 09:51:00    2017-06-21 09:51:00
99603    32447    804    2017-06-21 14:02:00    2017-06-21 14:02:00
99604    32447    544    2017-06-21 05:45:00    2017-06-21 05:45:00
99605    32448    473    2017-06-21 07:52:00    2017-06-21 07:52:00
99606    32448    828    2017-06-21 05:54:00    2017-06-21 05:54:00
99607    32448    814    2017-06-21 05:34:00    2017-06-21 05:34:00
99608    32448    930    2017-06-21 23:58:00    2017-06-21 23:58:00
99609    32448    648    2017-06-21 17:29:00    2017-06-21 17:29:00
99610    32449    562    2017-06-21 11:16:00    2017-06-21 11:16:00
99611    32449    642    2017-06-21 01:14:00    2017-06-21 01:14:00
99612    32449    599    2017-06-21 19:03:00    2017-06-21 19:03:00
99613    32449    936    2017-06-21 14:51:00    2017-06-21 14:51:00
99614    32449    589    2017-06-21 09:03:00    2017-06-21 09:03:00
99615    32450    579    2017-06-21 05:13:00    2017-06-21 05:13:00
99616    32450    870    2017-06-21 04:28:00    2017-06-21 04:28:00
99617    32450    517    2017-06-21 17:54:00    2017-06-21 17:54:00
99618    32450    841    2017-06-21 19:27:00    2017-06-21 19:27:00
99619    32450    905    2017-06-21 21:22:00    2017-06-21 21:22:00
99620    32451    728    2017-06-21 08:42:00    2017-06-21 08:42:00
99621    32451    752    2017-06-21 04:19:00    2017-06-21 04:19:00
99622    32451    735    2017-06-21 18:20:00    2017-06-21 18:20:00
99623    32451    906    2017-06-21 05:28:00    2017-06-21 05:28:00
99624    32451    748    2017-06-21 17:04:00    2017-06-21 17:04:00
99625    32452    600    2017-06-22 15:11:00    2017-06-22 15:11:00
99626    32452    876    2017-06-22 09:57:00    2017-06-22 09:57:00
99627    32452    499    2017-06-22 21:57:00    2017-06-22 21:57:00
99628    32452    866    2017-06-22 19:15:00    2017-06-22 19:15:00
99629    32452    928    2017-06-22 16:23:00    2017-06-22 16:23:00
99630    32453    735    2017-06-22 15:41:00    2017-06-22 15:41:00
99631    32453    710    2017-06-22 10:27:00    2017-06-22 10:27:00
99632    32453    483    2017-06-22 05:27:00    2017-06-22 05:27:00
99633    32453    921    2017-06-22 21:43:00    2017-06-22 21:43:00
99634    32453    515    2017-06-22 20:52:00    2017-06-22 20:52:00
99635    32454    610    2017-06-22 06:12:00    2017-06-22 06:12:00
99636    32454    682    2017-06-22 21:55:00    2017-06-22 21:55:00
99637    32454    949    2017-06-22 05:07:00    2017-06-22 05:07:00
99638    32454    777    2017-06-22 02:10:00    2017-06-22 02:10:00
99639    32454    638    2017-06-22 04:43:00    2017-06-22 04:43:00
99640    32455    509    2017-06-22 19:38:00    2017-06-22 19:38:00
99641    32455    854    2017-06-22 09:58:00    2017-06-22 09:58:00
99642    32455    496    2017-06-22 13:39:00    2017-06-22 13:39:00
99643    32455    539    2017-06-22 14:13:00    2017-06-22 14:13:00
99644    32455    632    2017-06-22 19:41:00    2017-06-22 19:41:00
99645    32456    882    2017-06-22 11:26:00    2017-06-22 11:26:00
99646    32456    486    2017-06-22 06:36:00    2017-06-22 06:36:00
99647    32456    554    2017-06-22 07:52:00    2017-06-22 07:52:00
99648    32456    950    2017-06-22 06:22:00    2017-06-22 06:22:00
99649    32456    490    2017-06-22 06:25:00    2017-06-22 06:25:00
99650    32457    839    2017-06-22 01:29:00    2017-06-22 01:29:00
99651    32457    843    2017-06-22 18:22:00    2017-06-22 18:22:00
99652    32457    932    2017-06-22 14:42:00    2017-06-22 14:42:00
99653    32457    485    2017-06-22 07:51:00    2017-06-22 07:51:00
99654    32457    823    2017-06-22 02:07:00    2017-06-22 02:07:00
99655    32458    773    2017-06-22 21:05:00    2017-06-22 21:05:00
99656    32458    718    2017-06-22 01:17:00    2017-06-22 01:17:00
99657    32458    645    2017-06-22 02:04:00    2017-06-22 02:04:00
99658    32458    590    2017-06-22 08:30:00    2017-06-22 08:30:00
99659    32458    809    2017-06-22 14:57:00    2017-06-22 14:57:00
99660    32459    571    2017-06-22 23:49:00    2017-06-22 23:49:00
99661    32459    525    2017-06-22 05:31:00    2017-06-22 05:31:00
99662    32459    628    2017-06-22 10:03:00    2017-06-22 10:03:00
99663    32459    676    2017-06-22 06:02:00    2017-06-22 06:02:00
99664    32459    586    2017-06-22 19:42:00    2017-06-22 19:42:00
99665    32460    777    2017-06-22 21:39:00    2017-06-22 21:39:00
99666    32460    541    2017-06-22 10:15:00    2017-06-22 10:15:00
99667    32460    515    2017-06-22 22:51:00    2017-06-22 22:51:00
99668    32460    908    2017-06-22 15:38:00    2017-06-22 15:38:00
99669    32460    700    2017-06-22 16:03:00    2017-06-22 16:03:00
99670    32461    867    2017-06-22 13:11:00    2017-06-22 13:11:00
99671    32461    765    2017-06-22 10:43:00    2017-06-22 10:43:00
99672    32461    752    2017-06-22 19:39:00    2017-06-22 19:39:00
99673    32461    899    2017-06-22 09:19:00    2017-06-22 09:19:00
99674    32461    849    2017-06-22 10:57:00    2017-06-22 10:57:00
99675    32462    765    2017-06-22 15:18:00    2017-06-22 15:18:00
99676    32462    713    2017-06-22 09:19:00    2017-06-22 09:19:00
99677    32462    576    2017-06-22 20:22:00    2017-06-22 20:22:00
99678    32462    726    2017-06-22 16:44:00    2017-06-22 16:44:00
99679    32462    509    2017-06-22 04:44:00    2017-06-22 04:44:00
99680    32463    889    2017-06-22 09:24:00    2017-06-22 09:24:00
99681    32463    957    2017-06-22 10:51:00    2017-06-22 10:51:00
99682    32463    854    2017-06-22 14:25:00    2017-06-22 14:25:00
99683    32463    464    2017-06-22 13:25:00    2017-06-22 13:25:00
99684    32463    555    2017-06-22 04:29:00    2017-06-22 04:29:00
99685    32464    529    2017-06-22 04:42:00    2017-06-22 04:42:00
99686    32464    727    2017-06-22 12:52:00    2017-06-22 12:52:00
99687    32464    642    2017-06-22 11:22:00    2017-06-22 11:22:00
99688    32464    657    2017-06-22 18:13:00    2017-06-22 18:13:00
99689    32464    848    2017-06-22 17:52:00    2017-06-22 17:52:00
99690    32465    943    2017-06-22 04:45:00    2017-06-22 04:45:00
99691    32465    668    2017-06-22 22:05:00    2017-06-22 22:05:00
99692    32465    755    2017-06-22 13:43:00    2017-06-22 13:43:00
99693    32465    871    2017-06-22 09:08:00    2017-06-22 09:08:00
99694    32465    717    2017-06-22 10:35:00    2017-06-22 10:35:00
99695    32466    817    2017-06-22 17:17:00    2017-06-22 17:17:00
99696    32466    690    2017-06-22 12:21:00    2017-06-22 12:21:00
99697    32466    486    2017-06-22 15:30:00    2017-06-22 15:30:00
99698    32466    586    2017-06-22 02:27:00    2017-06-22 02:27:00
99699    32466    805    2017-06-22 04:56:00    2017-06-22 04:56:00
99700    32467    603    2017-06-22 23:06:00    2017-06-22 23:06:00
99701    32467    573    2017-06-22 02:48:00    2017-06-22 02:48:00
99702    32467    684    2017-06-22 20:18:00    2017-06-22 20:18:00
99703    32467    629    2017-06-22 21:48:00    2017-06-22 21:48:00
99704    32467    853    2017-06-22 18:14:00    2017-06-22 18:14:00
99705    32468    522    2017-06-22 07:50:00    2017-06-22 07:50:00
99706    32468    684    2017-06-22 08:15:00    2017-06-22 08:15:00
99707    32468    917    2017-06-22 04:57:00    2017-06-22 04:57:00
99708    32468    643    2017-06-22 16:15:00    2017-06-22 16:15:00
99709    32468    636    2017-06-22 03:13:00    2017-06-22 03:13:00
99710    32469    923    2017-06-22 02:10:00    2017-06-22 02:10:00
99711    32469    832    2017-06-22 16:48:00    2017-06-22 16:48:00
99712    32469    614    2017-06-22 10:00:00    2017-06-22 10:00:00
99713    32469    670    2017-06-22 23:53:00    2017-06-22 23:53:00
99714    32469    495    2017-06-22 10:04:00    2017-06-22 10:04:00
99715    32470    704    2017-06-22 02:32:00    2017-06-22 02:32:00
99716    32470    518    2017-06-22 06:19:00    2017-06-22 06:19:00
99717    32470    633    2017-06-22 20:39:00    2017-06-22 20:39:00
99718    32470    686    2017-06-22 10:07:00    2017-06-22 10:07:00
99719    32470    763    2017-06-22 16:16:00    2017-06-22 16:16:00
99720    32471    800    2017-06-22 04:53:00    2017-06-22 04:53:00
99721    32471    754    2017-06-22 10:56:00    2017-06-22 10:56:00
99722    32471    525    2017-06-22 13:14:00    2017-06-22 13:14:00
99723    32471    479    2017-06-22 10:41:00    2017-06-22 10:41:00
99724    32471    581    2017-06-22 03:11:00    2017-06-22 03:11:00
99725    32472    836    2017-06-22 07:53:00    2017-06-22 07:53:00
99726    32472    685    2017-06-22 03:11:00    2017-06-22 03:11:00
99727    32472    609    2017-06-22 02:13:00    2017-06-22 02:13:00
99728    32472    795    2017-06-22 05:26:00    2017-06-22 05:26:00
99729    32472    883    2017-06-22 11:08:00    2017-06-22 11:08:00
99730    32473    852    2017-06-22 10:54:00    2017-06-22 10:54:00
99731    32473    577    2017-06-22 15:09:00    2017-06-22 15:09:00
99732    32473    572    2017-06-22 23:09:00    2017-06-22 23:09:00
99733    32473    695    2017-06-22 15:57:00    2017-06-22 15:57:00
99734    32473    807    2017-06-22 21:28:00    2017-06-22 21:28:00
99735    32474    845    2017-06-22 12:39:00    2017-06-22 12:39:00
99736    32474    783    2017-06-22 23:55:00    2017-06-22 23:55:00
99737    32474    547    2017-06-22 22:53:00    2017-06-22 22:53:00
99738    32474    495    2017-06-22 14:50:00    2017-06-22 14:50:00
99739    32474    697    2017-06-22 20:59:00    2017-06-22 20:59:00
99740    32475    889    2017-06-22 21:32:00    2017-06-22 21:32:00
99741    32475    517    2017-06-22 11:00:00    2017-06-22 11:00:00
99742    32475    928    2017-06-22 08:28:00    2017-06-22 08:28:00
99743    32475    839    2017-06-22 14:51:00    2017-06-22 14:51:00
99744    32475    831    2017-06-22 20:25:00    2017-06-22 20:25:00
99745    32476    760    2017-06-22 08:19:00    2017-06-22 08:19:00
99746    32476    804    2017-06-22 08:45:00    2017-06-22 08:45:00
99747    32476    651    2017-06-22 04:21:00    2017-06-22 04:21:00
99748    32476    737    2017-06-22 08:22:00    2017-06-22 08:22:00
99749    32476    503    2017-06-22 19:00:00    2017-06-22 19:00:00
99750    32477    463    2017-06-22 08:57:00    2017-06-22 08:57:00
99751    32477    500    2017-06-22 14:07:00    2017-06-22 14:07:00
99752    32477    671    2017-06-22 10:01:00    2017-06-22 10:01:00
99753    32477    721    2017-06-22 19:00:00    2017-06-22 19:00:00
99754    32477    721    2017-06-22 10:53:00    2017-06-22 10:53:00
99755    32478    927    2017-06-22 02:04:00    2017-06-22 02:04:00
99756    32478    755    2017-06-22 19:36:00    2017-06-22 19:36:00
99757    32478    755    2017-06-22 23:54:00    2017-06-22 23:54:00
99758    32478    932    2017-06-22 13:11:00    2017-06-22 13:11:00
99759    32478    719    2017-06-22 03:17:00    2017-06-22 03:17:00
99760    32479    790    2017-06-22 08:15:00    2017-06-22 08:15:00
99761    32479    561    2017-06-22 17:04:00    2017-06-22 17:04:00
99762    32479    471    2017-06-22 21:15:00    2017-06-22 21:15:00
99763    32479    498    2017-06-22 11:09:00    2017-06-22 11:09:00
99764    32479    710    2017-06-22 11:11:00    2017-06-22 11:11:00
99765    32480    740    2017-06-22 17:34:00    2017-06-22 17:34:00
99766    32480    942    2017-06-22 18:22:00    2017-06-22 18:22:00
99767    32480    869    2017-06-22 10:58:00    2017-06-22 10:58:00
99768    32480    658    2017-06-22 15:30:00    2017-06-22 15:30:00
99769    32480    805    2017-06-22 06:35:00    2017-06-22 06:35:00
99770    32481    704    2017-06-22 01:40:00    2017-06-22 01:40:00
99771    32481    930    2017-06-22 06:07:00    2017-06-22 06:07:00
99772    32481    620    2017-06-22 21:49:00    2017-06-22 21:49:00
99773    32481    639    2017-06-22 04:43:00    2017-06-22 04:43:00
99774    32481    926    2017-06-22 19:30:00    2017-06-22 19:30:00
99775    32482    608    2017-06-22 23:42:00    2017-06-22 23:42:00
99776    32482    640    2017-06-22 20:56:00    2017-06-22 20:56:00
99777    32482    788    2017-06-22 15:41:00    2017-06-22 15:41:00
99778    32482    632    2017-06-22 07:47:00    2017-06-22 07:47:00
99779    32482    606    2017-06-22 20:19:00    2017-06-22 20:19:00
99780    32483    772    2017-06-22 12:32:00    2017-06-22 12:32:00
99781    32483    865    2017-06-22 05:03:00    2017-06-22 05:03:00
99782    32483    683    2017-06-22 04:51:00    2017-06-22 04:51:00
99783    32483    901    2017-06-22 22:06:00    2017-06-22 22:06:00
99784    32483    723    2017-06-22 03:10:00    2017-06-22 03:10:00
99785    32484    877    2017-06-22 13:39:00    2017-06-22 13:39:00
99786    32484    517    2017-06-22 08:53:00    2017-06-22 08:53:00
99787    32484    769    2017-06-22 09:14:00    2017-06-22 09:14:00
99788    32484    490    2017-06-22 04:53:00    2017-06-22 04:53:00
99789    32484    899    2017-06-22 21:26:00    2017-06-22 21:26:00
99790    32485    662    2017-06-22 01:31:00    2017-06-22 01:31:00
99791    32485    949    2017-06-22 02:56:00    2017-06-22 02:56:00
99792    32485    819    2017-06-22 06:04:00    2017-06-22 06:04:00
99793    32485    762    2017-06-22 14:30:00    2017-06-22 14:30:00
99794    32485    809    2017-06-22 12:10:00    2017-06-22 12:10:00
99795    32486    782    2017-06-22 04:24:00    2017-06-22 04:24:00
99796    32486    766    2017-06-22 10:01:00    2017-06-22 10:01:00
99797    32486    505    2017-06-22 11:19:00    2017-06-22 11:19:00
99798    32486    813    2017-06-22 23:25:00    2017-06-22 23:25:00
99799    32486    494    2017-06-22 18:57:00    2017-06-22 18:57:00
99800    32487    809    2017-06-22 10:39:00    2017-06-22 10:39:00
99801    32487    900    2017-06-22 05:42:00    2017-06-22 05:42:00
99802    32487    506    2017-06-22 21:27:00    2017-06-22 21:27:00
99803    32487    477    2017-06-22 21:00:00    2017-06-22 21:00:00
99804    32487    488    2017-06-22 21:22:00    2017-06-22 21:22:00
99805    32488    873    2017-06-22 09:22:00    2017-06-22 09:22:00
99806    32488    585    2017-06-22 01:36:00    2017-06-22 01:36:00
99807    32488    660    2017-06-22 10:44:00    2017-06-22 10:44:00
99808    32488    958    2017-06-22 10:52:00    2017-06-22 10:52:00
99809    32488    610    2017-06-22 11:24:00    2017-06-22 11:24:00
99810    32489    782    2017-06-22 22:25:00    2017-06-22 22:25:00
99811    32489    657    2017-06-22 19:31:00    2017-06-22 19:31:00
99812    32489    806    2017-06-22 21:36:00    2017-06-22 21:36:00
99813    32489    905    2017-06-22 11:24:00    2017-06-22 11:24:00
99814    32489    833    2017-06-22 21:18:00    2017-06-22 21:18:00
99815    32490    711    2017-06-22 17:19:00    2017-06-22 17:19:00
99816    32490    771    2017-06-22 17:33:00    2017-06-22 17:33:00
99817    32490    489    2017-06-22 07:17:00    2017-06-22 07:17:00
99818    32490    665    2017-06-22 08:37:00    2017-06-22 08:37:00
99819    32490    852    2017-06-22 02:53:00    2017-06-22 02:53:00
99820    32491    809    2017-06-22 01:22:00    2017-06-22 01:22:00
99821    32491    591    2017-06-22 02:16:00    2017-06-22 02:16:00
99822    32491    953    2017-06-22 13:57:00    2017-06-22 13:57:00
99823    32491    843    2017-06-22 14:30:00    2017-06-22 14:30:00
99824    32491    892    2017-06-22 04:52:00    2017-06-22 04:52:00
99825    32492    751    2017-06-22 04:22:00    2017-06-22 04:22:00
99826    32492    837    2017-06-22 06:05:00    2017-06-22 06:05:00
99827    32492    658    2017-06-22 10:24:00    2017-06-22 10:24:00
99828    32492    502    2017-06-22 01:48:00    2017-06-22 01:48:00
99829    32492    692    2017-06-22 04:08:00    2017-06-22 04:08:00
99830    32493    901    2017-06-22 10:01:00    2017-06-22 10:01:00
99831    32493    942    2017-06-22 12:15:00    2017-06-22 12:15:00
99832    32493    700    2017-06-22 15:16:00    2017-06-22 15:16:00
99833    32493    772    2017-06-22 07:02:00    2017-06-22 07:02:00
99834    32493    631    2017-06-22 07:24:00    2017-06-22 07:24:00
99835    32494    673    2017-06-22 10:23:00    2017-06-22 10:23:00
99836    32494    877    2017-06-22 21:52:00    2017-06-22 21:52:00
99837    32494    686    2017-06-22 14:32:00    2017-06-22 14:32:00
99838    32494    741    2017-06-22 09:46:00    2017-06-22 09:46:00
99839    32494    684    2017-06-22 21:41:00    2017-06-22 21:41:00
99840    32495    851    2017-06-22 19:04:00    2017-06-22 19:04:00
99841    32495    520    2017-06-22 15:26:00    2017-06-22 15:26:00
99842    32495    769    2017-06-22 08:03:00    2017-06-22 08:03:00
99843    32495    894    2017-06-22 23:34:00    2017-06-22 23:34:00
99844    32495    489    2017-06-22 05:21:00    2017-06-22 05:21:00
99845    32496    526    2017-06-22 21:59:00    2017-06-22 21:59:00
99846    32496    575    2017-06-22 21:19:00    2017-06-22 21:19:00
99847    32496    843    2017-06-22 14:21:00    2017-06-22 14:21:00
99848    32496    629    2017-06-22 16:57:00    2017-06-22 16:57:00
99849    32496    875    2017-06-22 04:38:00    2017-06-22 04:38:00
99850    32497    849    2017-06-22 01:41:00    2017-06-22 01:41:00
99851    32497    785    2017-06-22 13:54:00    2017-06-22 13:54:00
99852    32497    665    2017-06-22 04:19:00    2017-06-22 04:19:00
99853    32497    928    2017-06-22 20:00:00    2017-06-22 20:00:00
99854    32497    701    2017-06-22 02:10:00    2017-06-22 02:10:00
99855    32498    671    2017-06-22 10:58:00    2017-06-22 10:58:00
99856    32498    521    2017-06-22 18:22:00    2017-06-22 18:22:00
99857    32498    480    2017-06-22 09:21:00    2017-06-22 09:21:00
99858    32498    662    2017-06-22 11:56:00    2017-06-22 11:56:00
99859    32498    473    2017-06-22 21:42:00    2017-06-22 21:42:00
99860    32499    582    2017-06-22 18:42:00    2017-06-22 18:42:00
99861    32499    560    2017-06-22 04:13:00    2017-06-22 04:13:00
99862    32499    688    2017-06-22 07:35:00    2017-06-22 07:35:00
99863    32499    952    2017-06-22 19:00:00    2017-06-22 19:00:00
99864    32499    669    2017-06-22 23:25:00    2017-06-22 23:25:00
99865    32500    571    2017-06-22 12:52:00    2017-06-22 12:52:00
99866    32500    943    2017-06-22 06:03:00    2017-06-22 06:03:00
99867    32500    752    2017-06-22 17:10:00    2017-06-22 17:10:00
99868    32500    629    2017-06-22 12:40:00    2017-06-22 12:40:00
99869    32500    849    2017-06-22 23:32:00    2017-06-22 23:32:00
99870    32501    847    2017-06-22 22:55:00    2017-06-22 22:55:00
99871    32501    707    2017-06-22 12:45:00    2017-06-22 12:45:00
99872    32501    697    2017-06-22 19:39:00    2017-06-22 19:39:00
99873    32501    743    2017-06-22 19:54:00    2017-06-22 19:54:00
99874    32501    497    2017-06-22 16:00:00    2017-06-22 16:00:00
99875    32502    759    2017-06-22 02:25:00    2017-06-22 02:25:00
99876    32502    673    2017-06-22 10:12:00    2017-06-22 10:12:00
99877    32502    902    2017-06-22 18:33:00    2017-06-22 18:33:00
99878    32502    554    2017-06-22 01:45:00    2017-06-22 01:45:00
99879    32502    850    2017-06-22 09:28:00    2017-06-22 09:28:00
99880    32503    929    2017-06-22 13:53:00    2017-06-22 13:53:00
99881    32503    708    2017-06-22 20:15:00    2017-06-22 20:15:00
99882    32503    602    2017-06-22 02:07:00    2017-06-22 02:07:00
99883    32503    855    2017-06-22 22:16:00    2017-06-22 22:16:00
99884    32503    746    2017-06-22 14:09:00    2017-06-22 14:09:00
99885    32504    578    2017-06-22 22:10:00    2017-06-22 22:10:00
99886    32504    776    2017-06-22 19:01:00    2017-06-22 19:01:00
99887    32504    549    2017-06-22 19:29:00    2017-06-22 19:29:00
99888    32504    702    2017-06-22 21:02:00    2017-06-22 21:02:00
99889    32504    476    2017-06-22 20:26:00    2017-06-22 20:26:00
99890    32505    494    2017-06-22 20:21:00    2017-06-22 20:21:00
99891    32505    738    2017-06-22 19:34:00    2017-06-22 19:34:00
99892    32505    930    2017-06-22 16:09:00    2017-06-22 16:09:00
99893    32505    944    2017-06-22 21:06:00    2017-06-22 21:06:00
99894    32505    957    2017-06-22 23:14:00    2017-06-22 23:14:00
99895    32506    835    2017-06-22 19:39:00    2017-06-22 19:39:00
99896    32506    584    2017-06-22 18:08:00    2017-06-22 18:08:00
99897    32506    703    2017-06-22 15:36:00    2017-06-22 15:36:00
99898    32506    574    2017-06-22 04:14:00    2017-06-22 04:14:00
99899    32506    656    2017-06-22 01:18:00    2017-06-22 01:18:00
99900    32507    943    2017-06-22 15:22:00    2017-06-22 15:22:00
99901    32507    549    2017-06-22 19:35:00    2017-06-22 19:35:00
99902    32507    638    2017-06-22 12:33:00    2017-06-22 12:33:00
99903    32507    594    2017-06-22 07:57:00    2017-06-22 07:57:00
99904    32507    657    2017-06-22 16:42:00    2017-06-22 16:42:00
99905    32508    867    2017-06-22 05:54:00    2017-06-22 05:54:00
99906    32508    474    2017-06-22 03:25:00    2017-06-22 03:25:00
99907    32508    717    2017-06-22 04:08:00    2017-06-22 04:08:00
99908    32508    771    2017-06-22 17:23:00    2017-06-22 17:23:00
99909    32508    804    2017-06-22 17:00:00    2017-06-22 17:00:00
99910    32509    503    2017-06-22 13:57:00    2017-06-22 13:57:00
99911    32509    504    2017-06-22 07:11:00    2017-06-22 07:11:00
99912    32509    789    2017-06-22 20:03:00    2017-06-22 20:03:00
99913    32509    945    2017-06-22 13:22:00    2017-06-22 13:22:00
99914    32509    921    2017-06-22 11:27:00    2017-06-22 11:27:00
99915    32510    824    2017-06-22 11:02:00    2017-06-22 11:02:00
99916    32510    709    2017-06-22 20:11:00    2017-06-22 20:11:00
99917    32510    958    2017-06-22 23:15:00    2017-06-22 23:15:00
99918    32510    513    2017-06-22 05:08:00    2017-06-22 05:08:00
99919    32510    537    2017-06-22 20:48:00    2017-06-22 20:48:00
99920    32511    735    2017-06-22 01:42:00    2017-06-22 01:42:00
99921    32511    636    2017-06-22 12:55:00    2017-06-22 12:55:00
99922    32511    476    2017-06-22 04:01:00    2017-06-22 04:01:00
99923    32511    863    2017-06-22 23:17:00    2017-06-22 23:17:00
99924    32511    774    2017-06-22 08:26:00    2017-06-22 08:26:00
99925    32512    521    2017-06-22 21:38:00    2017-06-22 21:38:00
99926    32512    699    2017-06-22 23:00:00    2017-06-22 23:00:00
99927    32512    572    2017-06-22 15:31:00    2017-06-22 15:31:00
99928    32512    686    2017-06-22 11:24:00    2017-06-22 11:24:00
99929    32512    606    2017-06-22 20:33:00    2017-06-22 20:33:00
99930    32513    787    2017-06-23 10:29:00    2017-06-23 10:29:00
99931    32513    774    2017-06-23 19:48:00    2017-06-23 19:48:00
99932    32513    720    2017-06-23 10:56:00    2017-06-23 10:56:00
99933    32513    540    2017-06-23 12:42:00    2017-06-23 12:42:00
99934    32513    836    2017-06-23 13:35:00    2017-06-23 13:35:00
99935    32514    673    2017-06-23 09:35:00    2017-06-23 09:35:00
99936    32514    628    2017-06-23 03:58:00    2017-06-23 03:58:00
99937    32514    827    2017-06-23 10:08:00    2017-06-23 10:08:00
99938    32514    835    2017-06-23 01:45:00    2017-06-23 01:45:00
99939    32514    665    2017-06-23 18:46:00    2017-06-23 18:46:00
99940    32515    652    2017-06-23 01:18:00    2017-06-23 01:18:00
99941    32515    556    2017-06-23 08:57:00    2017-06-23 08:57:00
99942    32515    611    2017-06-23 23:14:00    2017-06-23 23:14:00
99943    32515    794    2017-06-23 10:12:00    2017-06-23 10:12:00
99944    32515    928    2017-06-23 17:45:00    2017-06-23 17:45:00
99945    32516    823    2017-06-23 08:27:00    2017-06-23 08:27:00
99946    32516    925    2017-06-23 10:25:00    2017-06-23 10:25:00
99947    32516    531    2017-06-23 11:54:00    2017-06-23 11:54:00
99948    32516    920    2017-06-23 08:31:00    2017-06-23 08:31:00
99949    32516    686    2017-06-23 21:19:00    2017-06-23 21:19:00
99950    32517    855    2017-06-23 21:41:00    2017-06-23 21:41:00
99951    32517    755    2017-06-23 15:57:00    2017-06-23 15:57:00
99952    32517    491    2017-06-23 03:11:00    2017-06-23 03:11:00
99953    32517    860    2017-06-23 17:47:00    2017-06-23 17:47:00
99954    32517    604    2017-06-23 21:18:00    2017-06-23 21:18:00
99955    32518    570    2017-06-23 11:40:00    2017-06-23 11:40:00
99956    32518    709    2017-06-23 05:15:00    2017-06-23 05:15:00
99957    32518    481    2017-06-23 09:05:00    2017-06-23 09:05:00
99958    32518    790    2017-06-23 01:08:00    2017-06-23 01:08:00
99959    32518    902    2017-06-23 06:40:00    2017-06-23 06:40:00
99960    32519    473    2017-06-23 04:38:00    2017-06-23 04:38:00
99961    32519    735    2017-06-23 15:28:00    2017-06-23 15:28:00
99962    32519    620    2017-06-23 23:38:00    2017-06-23 23:38:00
99963    32519    880    2017-06-23 13:55:00    2017-06-23 13:55:00
99964    32519    832    2017-06-23 17:27:00    2017-06-23 17:27:00
99965    32520    936    2017-06-23 01:27:00    2017-06-23 01:27:00
99966    32520    487    2017-06-23 19:29:00    2017-06-23 19:29:00
99967    32520    475    2017-06-23 08:24:00    2017-06-23 08:24:00
99968    32520    579    2017-06-23 22:48:00    2017-06-23 22:48:00
99969    32520    720    2017-06-23 06:23:00    2017-06-23 06:23:00
99970    32521    536    2017-06-23 06:29:00    2017-06-23 06:29:00
99971    32521    468    2017-06-23 19:20:00    2017-06-23 19:20:00
99972    32521    784    2017-06-23 22:02:00    2017-06-23 22:02:00
99973    32521    702    2017-06-23 15:00:00    2017-06-23 15:00:00
99974    32521    701    2017-06-23 18:13:00    2017-06-23 18:13:00
99975    32522    938    2017-06-23 20:00:00    2017-06-23 20:00:00
99976    32522    753    2017-06-23 05:11:00    2017-06-23 05:11:00
99977    32522    548    2017-06-23 05:03:00    2017-06-23 05:03:00
99978    32522    774    2017-06-23 15:41:00    2017-06-23 15:41:00
99979    32522    798    2017-06-23 23:09:00    2017-06-23 23:09:00
99980    32523    540    2017-06-23 22:08:00    2017-06-23 22:08:00
99981    32523    616    2017-06-23 17:46:00    2017-06-23 17:46:00
99982    32523    485    2017-06-23 17:56:00    2017-06-23 17:56:00
99983    32523    595    2017-06-23 05:30:00    2017-06-23 05:30:00
99984    32523    557    2017-06-23 10:06:00    2017-06-23 10:06:00
99985    32524    536    2017-06-23 02:11:00    2017-06-23 02:11:00
99986    32524    886    2017-06-23 16:27:00    2017-06-23 16:27:00
99987    32524    513    2017-06-23 03:28:00    2017-06-23 03:28:00
99988    32524    572    2017-06-23 16:21:00    2017-06-23 16:21:00
99989    32524    915    2017-06-23 01:52:00    2017-06-23 01:52:00
99990    32525    835    2017-06-23 16:45:00    2017-06-23 16:45:00
99991    32525    569    2017-06-23 03:48:00    2017-06-23 03:48:00
99992    32525    478    2017-06-23 19:52:00    2017-06-23 19:52:00
99993    32525    678    2017-06-23 15:08:00    2017-06-23 15:08:00
99994    32525    668    2017-06-23 19:56:00    2017-06-23 19:56:00
99995    32526    649    2017-06-23 05:14:00    2017-06-23 05:14:00
99996    32526    889    2017-06-23 02:24:00    2017-06-23 02:24:00
99997    32526    654    2017-06-23 03:43:00    2017-06-23 03:43:00
99998    32526    960    2017-06-23 22:45:00    2017-06-23 22:45:00
99999    32526    771    2017-06-23 22:11:00    2017-06-23 22:11:00
100000    32527    756    2017-06-23 05:59:00    2017-06-23 05:59:00
100001    32527    952    2017-06-23 13:04:00    2017-06-23 13:04:00
100002    32527    783    2017-06-23 03:31:00    2017-06-23 03:31:00
100003    32527    846    2017-06-23 20:54:00    2017-06-23 20:54:00
100004    32527    794    2017-06-23 02:02:00    2017-06-23 02:02:00
100005    32528    600    2017-06-23 07:13:00    2017-06-23 07:13:00
100006    32528    467    2017-06-23 01:35:00    2017-06-23 01:35:00
100007    32528    519    2017-06-23 02:22:00    2017-06-23 02:22:00
100008    32528    504    2017-06-23 20:32:00    2017-06-23 20:32:00
100009    32528    499    2017-06-23 17:20:00    2017-06-23 17:20:00
100010    32529    920    2017-06-23 08:05:00    2017-06-23 08:05:00
100011    32529    630    2017-06-23 19:57:00    2017-06-23 19:57:00
100012    32529    664    2017-06-23 05:11:00    2017-06-23 05:11:00
100013    32529    720    2017-06-23 02:03:00    2017-06-23 02:03:00
100014    32529    693    2017-06-23 08:11:00    2017-06-23 08:11:00
100015    32530    574    2017-06-23 22:35:00    2017-06-23 22:35:00
100016    32530    750    2017-06-23 14:38:00    2017-06-23 14:38:00
100017    32530    562    2017-06-23 11:58:00    2017-06-23 11:58:00
100018    32530    686    2017-06-23 15:47:00    2017-06-23 15:47:00
100019    32530    951    2017-06-23 05:56:00    2017-06-23 05:56:00
100020    32531    859    2017-06-23 07:58:00    2017-06-23 07:58:00
100021    32531    592    2017-06-23 14:15:00    2017-06-23 14:15:00
100022    32531    930    2017-06-23 14:08:00    2017-06-23 14:08:00
100023    32531    662    2017-06-23 09:43:00    2017-06-23 09:43:00
100024    32531    500    2017-06-23 10:26:00    2017-06-23 10:26:00
100025    32532    486    2017-06-23 02:10:00    2017-06-23 02:10:00
100026    32532    716    2017-06-23 12:46:00    2017-06-23 12:46:00
100027    32532    499    2017-06-23 18:31:00    2017-06-23 18:31:00
100028    32532    897    2017-06-23 05:22:00    2017-06-23 05:22:00
100029    32532    863    2017-06-23 21:19:00    2017-06-23 21:19:00
100030    32533    609    2017-06-23 22:22:00    2017-06-23 22:22:00
100031    32533    614    2017-06-23 15:32:00    2017-06-23 15:32:00
100032    32533    657    2017-06-23 10:19:00    2017-06-23 10:19:00
100033    32533    888    2017-06-23 23:08:00    2017-06-23 23:08:00
100034    32533    725    2017-06-23 23:33:00    2017-06-23 23:33:00
100035    32534    634    2017-06-23 22:28:00    2017-06-23 22:28:00
100036    32534    676    2017-06-23 03:18:00    2017-06-23 03:18:00
100037    32534    752    2017-06-23 07:00:00    2017-06-23 07:00:00
100038    32534    747    2017-06-23 07:28:00    2017-06-23 07:28:00
100039    32534    960    2017-06-23 11:58:00    2017-06-23 11:58:00
100040    32535    798    2017-06-23 02:08:00    2017-06-23 02:08:00
100041    32535    889    2017-06-23 05:38:00    2017-06-23 05:38:00
100042    32535    532    2017-06-23 06:37:00    2017-06-23 06:37:00
100043    32535    700    2017-06-23 19:51:00    2017-06-23 19:51:00
100044    32535    738    2017-06-23 10:55:00    2017-06-23 10:55:00
100045    32536    747    2017-06-23 21:07:00    2017-06-23 21:07:00
100046    32536    514    2017-06-23 22:09:00    2017-06-23 22:09:00
100047    32536    540    2017-06-23 08:35:00    2017-06-23 08:35:00
100048    32536    909    2017-06-23 17:52:00    2017-06-23 17:52:00
100049    32536    896    2017-06-23 10:37:00    2017-06-23 10:37:00
100050    32537    536    2017-06-23 09:23:00    2017-06-23 09:23:00
100051    32537    571    2017-06-23 23:59:00    2017-06-23 23:59:00
100052    32537    931    2017-06-23 09:51:00    2017-06-23 09:51:00
100053    32537    633    2017-06-23 05:34:00    2017-06-23 05:34:00
100054    32537    668    2017-06-23 05:40:00    2017-06-23 05:40:00
100055    32538    683    2017-06-23 09:05:00    2017-06-23 09:05:00
100056    32538    827    2017-06-23 15:47:00    2017-06-23 15:47:00
100057    32538    614    2017-06-23 15:55:00    2017-06-23 15:55:00
100058    32538    834    2017-06-23 20:25:00    2017-06-23 20:25:00
100059    32538    947    2017-06-23 11:51:00    2017-06-23 11:51:00
100060    32539    942    2017-06-23 08:19:00    2017-06-23 08:19:00
100061    32539    617    2017-06-23 07:09:00    2017-06-23 07:09:00
100062    32539    564    2017-06-23 08:09:00    2017-06-23 08:09:00
100063    32539    577    2017-06-23 07:22:00    2017-06-23 07:22:00
100064    32539    561    2017-06-23 10:08:00    2017-06-23 10:08:00
100065    32540    651    2017-06-23 15:39:00    2017-06-23 15:39:00
100066    32540    578    2017-06-23 13:35:00    2017-06-23 13:35:00
100067    32540    645    2017-06-23 10:44:00    2017-06-23 10:44:00
100068    32540    579    2017-06-23 15:06:00    2017-06-23 15:06:00
100069    32540    596    2017-06-23 05:04:00    2017-06-23 05:04:00
100070    32541    867    2017-06-23 02:09:00    2017-06-23 02:09:00
100071    32541    938    2017-06-23 21:33:00    2017-06-23 21:33:00
100072    32541    638    2017-06-23 02:40:00    2017-06-23 02:40:00
100073    32541    867    2017-06-23 05:35:00    2017-06-23 05:35:00
100074    32541    514    2017-06-23 02:05:00    2017-06-23 02:05:00
100075    32542    847    2017-06-23 15:26:00    2017-06-23 15:26:00
100076    32542    885    2017-06-23 03:46:00    2017-06-23 03:46:00
100077    32542    668    2017-06-23 02:40:00    2017-06-23 02:40:00
100078    32542    702    2017-06-23 04:56:00    2017-06-23 04:56:00
100079    32542    547    2017-06-23 11:51:00    2017-06-23 11:51:00
100080    32543    919    2017-06-23 23:53:00    2017-06-23 23:53:00
100081    32543    823    2017-06-23 05:41:00    2017-06-23 05:41:00
100082    32543    540    2017-06-23 19:08:00    2017-06-23 19:08:00
100083    32543    579    2017-06-23 12:49:00    2017-06-23 12:49:00
100084    32543    921    2017-06-23 06:00:00    2017-06-23 06:00:00
100085    32544    803    2017-06-23 06:01:00    2017-06-23 06:01:00
100086    32544    590    2017-06-23 01:58:00    2017-06-23 01:58:00
100087    32544    543    2017-06-23 04:46:00    2017-06-23 04:46:00
100088    32544    814    2017-06-23 19:32:00    2017-06-23 19:32:00
100089    32544    795    2017-06-23 19:57:00    2017-06-23 19:57:00
100090    32545    720    2017-06-23 08:02:00    2017-06-23 08:02:00
100091    32545    566    2017-06-23 13:56:00    2017-06-23 13:56:00
100092    32545    526    2017-06-23 03:07:00    2017-06-23 03:07:00
100093    32545    563    2017-06-23 02:04:00    2017-06-23 02:04:00
100094    32545    501    2017-06-23 12:21:00    2017-06-23 12:21:00
100095    32546    859    2017-06-23 18:28:00    2017-06-23 18:28:00
100096    32546    911    2017-06-23 07:31:00    2017-06-23 07:31:00
100097    32546    787    2017-06-23 14:58:00    2017-06-23 14:58:00
100098    32546    675    2017-06-23 16:15:00    2017-06-23 16:15:00
100099    32546    869    2017-06-23 05:00:00    2017-06-23 05:00:00
100100    32547    563    2017-06-23 17:24:00    2017-06-23 17:24:00
100101    32547    604    2017-06-23 21:47:00    2017-06-23 21:47:00
100102    32547    719    2017-06-23 11:36:00    2017-06-23 11:36:00
100103    32547    869    2017-06-23 11:36:00    2017-06-23 11:36:00
100104    32547    587    2017-06-23 18:58:00    2017-06-23 18:58:00
100105    32548    909    2017-06-23 20:13:00    2017-06-23 20:13:00
100106    32548    888    2017-06-23 10:45:00    2017-06-23 10:45:00
100107    32548    662    2017-06-23 23:13:00    2017-06-23 23:13:00
100108    32548    961    2017-06-23 16:30:00    2017-06-23 16:30:00
100109    32548    598    2017-06-23 01:39:00    2017-06-23 01:39:00
100110    32549    515    2017-06-23 01:56:00    2017-06-23 01:56:00
100111    32549    513    2017-06-23 22:02:00    2017-06-23 22:02:00
100112    32549    581    2017-06-23 09:14:00    2017-06-23 09:14:00
100113    32549    846    2017-06-23 22:37:00    2017-06-23 22:37:00
100114    32549    726    2017-06-23 04:06:00    2017-06-23 04:06:00
100115    32550    857    2017-06-23 09:37:00    2017-06-23 09:37:00
100116    32550    649    2017-06-23 05:24:00    2017-06-23 05:24:00
100117    32550    924    2017-06-23 08:01:00    2017-06-23 08:01:00
100118    32550    710    2017-06-23 04:28:00    2017-06-23 04:28:00
100119    32550    723    2017-06-23 05:43:00    2017-06-23 05:43:00
100120    32551    765    2017-06-23 18:47:00    2017-06-23 18:47:00
100121    32551    579    2017-06-23 18:36:00    2017-06-23 18:36:00
100122    32551    592    2017-06-23 15:19:00    2017-06-23 15:19:00
100123    32551    501    2017-06-23 22:59:00    2017-06-23 22:59:00
100124    32551    681    2017-06-23 13:42:00    2017-06-23 13:42:00
100125    32552    600    2017-06-23 17:03:00    2017-06-23 17:03:00
100126    32552    524    2017-06-23 16:28:00    2017-06-23 16:28:00
100127    32552    641    2017-06-23 07:58:00    2017-06-23 07:58:00
100128    32552    721    2017-06-23 12:10:00    2017-06-23 12:10:00
100129    32552    920    2017-06-23 10:10:00    2017-06-23 10:10:00
100130    32553    531    2017-06-23 17:18:00    2017-06-23 17:18:00
100131    32553    501    2017-06-23 17:06:00    2017-06-23 17:06:00
100132    32553    851    2017-06-23 08:49:00    2017-06-23 08:49:00
100133    32553    805    2017-06-23 02:58:00    2017-06-23 02:58:00
100134    32553    852    2017-06-23 14:29:00    2017-06-23 14:29:00
100135    32554    679    2017-06-23 20:19:00    2017-06-23 20:19:00
100136    32554    467    2017-06-23 05:13:00    2017-06-23 05:13:00
100137    32554    653    2017-06-23 11:01:00    2017-06-23 11:01:00
100138    32554    867    2017-06-23 05:09:00    2017-06-23 05:09:00
100139    32554    835    2017-06-23 18:32:00    2017-06-23 18:32:00
100140    32555    529    2017-06-23 12:20:00    2017-06-23 12:20:00
100141    32555    877    2017-06-23 18:00:00    2017-06-23 18:00:00
100142    32555    903    2017-06-23 02:49:00    2017-06-23 02:49:00
100143    32555    888    2017-06-23 23:27:00    2017-06-23 23:27:00
100144    32555    535    2017-06-23 18:02:00    2017-06-23 18:02:00
100145    32556    865    2017-06-23 09:09:00    2017-06-23 09:09:00
100146    32556    606    2017-06-23 08:33:00    2017-06-23 08:33:00
100147    32556    627    2017-06-23 23:53:00    2017-06-23 23:53:00
100148    32556    696    2017-06-23 06:58:00    2017-06-23 06:58:00
100149    32556    508    2017-06-23 05:56:00    2017-06-23 05:56:00
100150    32557    677    2017-06-23 08:52:00    2017-06-23 08:52:00
100151    32557    899    2017-06-23 02:18:00    2017-06-23 02:18:00
100152    32557    800    2017-06-23 17:03:00    2017-06-23 17:03:00
100153    32557    784    2017-06-23 18:08:00    2017-06-23 18:08:00
100154    32557    899    2017-06-23 13:00:00    2017-06-23 13:00:00
100155    32558    827    2017-06-23 21:17:00    2017-06-23 21:17:00
100156    32558    870    2017-06-23 17:26:00    2017-06-23 17:26:00
100157    32558    605    2017-06-23 08:18:00    2017-06-23 08:18:00
100158    32558    922    2017-06-23 04:50:00    2017-06-23 04:50:00
100159    32558    702    2017-06-23 13:22:00    2017-06-23 13:22:00
100160    32559    959    2017-06-23 15:28:00    2017-06-23 15:28:00
100161    32559    470    2017-06-23 12:28:00    2017-06-23 12:28:00
100162    32559    625    2017-06-23 11:36:00    2017-06-23 11:36:00
100163    32559    529    2017-06-23 20:39:00    2017-06-23 20:39:00
100164    32559    645    2017-06-23 03:42:00    2017-06-23 03:42:00
100165    32560    725    2017-06-23 11:15:00    2017-06-23 11:15:00
100166    32560    674    2017-06-23 20:07:00    2017-06-23 20:07:00
100167    32560    473    2017-06-23 23:27:00    2017-06-23 23:27:00
100168    32560    828    2017-06-23 06:21:00    2017-06-23 06:21:00
100169    32560    646    2017-06-23 11:43:00    2017-06-23 11:43:00
100170    32561    814    2017-06-23 01:34:00    2017-06-23 01:34:00
100171    32561    611    2017-06-23 21:49:00    2017-06-23 21:49:00
100172    32561    873    2017-06-23 04:40:00    2017-06-23 04:40:00
100173    32561    499    2017-06-23 16:39:00    2017-06-23 16:39:00
100174    32561    653    2017-06-23 15:18:00    2017-06-23 15:18:00
100175    32562    914    2017-06-23 06:14:00    2017-06-23 06:14:00
100176    32562    551    2017-06-23 18:43:00    2017-06-23 18:43:00
100177    32562    827    2017-06-23 11:59:00    2017-06-23 11:59:00
100178    32562    469    2017-06-23 23:18:00    2017-06-23 23:18:00
100179    32562    764    2017-06-23 04:38:00    2017-06-23 04:38:00
100180    32563    752    2017-06-23 03:25:00    2017-06-23 03:25:00
100181    32563    608    2017-06-23 02:49:00    2017-06-23 02:49:00
100182    32563    657    2017-06-23 06:07:00    2017-06-23 06:07:00
100183    32563    828    2017-06-23 08:05:00    2017-06-23 08:05:00
100184    32563    586    2017-06-23 23:10:00    2017-06-23 23:10:00
100185    32564    900    2017-06-23 19:46:00    2017-06-23 19:46:00
100186    32564    742    2017-06-23 02:44:00    2017-06-23 02:44:00
100187    32564    876    2017-06-23 16:35:00    2017-06-23 16:35:00
100188    32564    908    2017-06-23 15:43:00    2017-06-23 15:43:00
100189    32564    587    2017-06-23 10:43:00    2017-06-23 10:43:00
100190    32565    484    2017-06-23 10:58:00    2017-06-23 10:58:00
100191    32565    931    2017-06-23 10:01:00    2017-06-23 10:01:00
100192    32565    601    2017-06-23 21:56:00    2017-06-23 21:56:00
100193    32565    759    2017-06-23 16:37:00    2017-06-23 16:37:00
100194    32565    905    2017-06-23 05:55:00    2017-06-23 05:55:00
100195    32566    580    2017-06-23 17:34:00    2017-06-23 17:34:00
100196    32566    533    2017-06-23 13:41:00    2017-06-23 13:41:00
100197    32566    961    2017-06-23 16:01:00    2017-06-23 16:01:00
100198    32566    757    2017-06-23 01:13:00    2017-06-23 01:13:00
100199    32566    754    2017-06-23 12:06:00    2017-06-23 12:06:00
100200    32567    531    2017-06-23 22:37:00    2017-06-23 22:37:00
100201    32567    550    2017-06-23 10:04:00    2017-06-23 10:04:00
100202    32567    768    2017-06-23 20:12:00    2017-06-23 20:12:00
100203    32567    669    2017-06-23 15:47:00    2017-06-23 15:47:00
100204    32567    666    2017-06-23 20:12:00    2017-06-23 20:12:00
100205    32568    611    2017-06-23 02:37:00    2017-06-23 02:37:00
100206    32568    518    2017-06-23 11:41:00    2017-06-23 11:41:00
100207    32568    715    2017-06-23 22:15:00    2017-06-23 22:15:00
100208    32568    584    2017-06-23 20:11:00    2017-06-23 20:11:00
100209    32568    508    2017-06-23 02:44:00    2017-06-23 02:44:00
100210    32569    490    2017-06-23 03:48:00    2017-06-23 03:48:00
100211    32569    921    2017-06-23 03:50:00    2017-06-23 03:50:00
100212    32569    624    2017-06-23 08:20:00    2017-06-23 08:20:00
100213    32569    610    2017-06-23 18:57:00    2017-06-23 18:57:00
100214    32569    508    2017-06-23 03:14:00    2017-06-23 03:14:00
100215    32570    687    2017-06-23 05:17:00    2017-06-23 05:17:00
100216    32570    736    2017-06-23 17:32:00    2017-06-23 17:32:00
100217    32570    879    2017-06-23 20:04:00    2017-06-23 20:04:00
100218    32570    887    2017-06-23 18:49:00    2017-06-23 18:49:00
100219    32570    755    2017-06-23 11:43:00    2017-06-23 11:43:00
100220    32571    957    2017-06-23 03:08:00    2017-06-23 03:08:00
100221    32571    579    2017-06-23 04:06:00    2017-06-23 04:06:00
100222    32571    808    2017-06-23 20:17:00    2017-06-23 20:17:00
100223    32571    527    2017-06-23 16:13:00    2017-06-23 16:13:00
100224    32571    734    2017-06-23 20:00:00    2017-06-23 20:00:00
100225    32572    728    2017-06-23 09:01:00    2017-06-23 09:01:00
100226    32572    893    2017-06-23 14:19:00    2017-06-23 14:19:00
100227    32572    811    2017-06-23 17:57:00    2017-06-23 17:57:00
100228    32572    729    2017-06-23 01:57:00    2017-06-23 01:57:00
100229    32572    644    2017-06-23 21:17:00    2017-06-23 21:17:00
100230    32573    934    2017-06-23 14:19:00    2017-06-23 14:19:00
100231    32573    800    2017-06-23 01:50:00    2017-06-23 01:50:00
100232    32573    933    2017-06-23 14:53:00    2017-06-23 14:53:00
100233    32573    936    2017-06-23 02:57:00    2017-06-23 02:57:00
100234    32573    907    2017-06-23 17:15:00    2017-06-23 17:15:00
100235    32574    725    2017-06-23 04:00:00    2017-06-23 04:00:00
100236    32574    618    2017-06-23 06:46:00    2017-06-23 06:46:00
100237    32574    551    2017-06-23 07:55:00    2017-06-23 07:55:00
100238    32574    677    2017-06-23 01:09:00    2017-06-23 01:09:00
100239    32574    958    2017-06-23 06:47:00    2017-06-23 06:47:00
100240    32575    704    2017-06-23 18:44:00    2017-06-23 18:44:00
100241    32575    484    2017-06-23 20:16:00    2017-06-23 20:16:00
100242    32575    598    2017-06-23 10:24:00    2017-06-23 10:24:00
100243    32575    765    2017-06-23 05:01:00    2017-06-23 05:01:00
100244    32575    607    2017-06-23 17:06:00    2017-06-23 17:06:00
100245    32576    592    2017-06-23 04:18:00    2017-06-23 04:18:00
100246    32576    743    2017-06-23 04:16:00    2017-06-23 04:16:00
100247    32576    652    2017-06-23 05:20:00    2017-06-23 05:20:00
100248    32576    734    2017-06-23 02:59:00    2017-06-23 02:59:00
100249    32576    505    2017-06-23 06:25:00    2017-06-23 06:25:00
100250    32577    907    2017-06-23 22:15:00    2017-06-23 22:15:00
100251    32577    656    2017-06-23 02:44:00    2017-06-23 02:44:00
100252    32577    502    2017-06-23 18:09:00    2017-06-23 18:09:00
100253    32577    828    2017-06-23 23:46:00    2017-06-23 23:46:00
100254    32577    722    2017-06-23 15:38:00    2017-06-23 15:38:00
100255    32578    603    2017-06-23 01:19:00    2017-06-23 01:19:00
100256    32578    828    2017-06-23 10:16:00    2017-06-23 10:16:00
100257    32578    494    2017-06-23 16:18:00    2017-06-23 16:18:00
100258    32578    648    2017-06-23 02:15:00    2017-06-23 02:15:00
100259    32578    729    2017-06-23 22:33:00    2017-06-23 22:33:00
100260    32579    947    2017-06-23 15:18:00    2017-06-23 15:18:00
100261    32579    612    2017-06-23 12:54:00    2017-06-23 12:54:00
100262    32579    501    2017-06-23 06:54:00    2017-06-23 06:54:00
100263    32579    925    2017-06-23 08:18:00    2017-06-23 08:18:00
100264    32579    601    2017-06-23 21:05:00    2017-06-23 21:05:00
100265    32580    564    2017-06-23 21:46:00    2017-06-23 21:46:00
100266    32580    784    2017-06-23 12:29:00    2017-06-23 12:29:00
100267    32580    619    2017-06-23 15:00:00    2017-06-23 15:00:00
100268    32580    791    2017-06-23 11:46:00    2017-06-23 11:46:00
100269    32580    618    2017-06-23 03:03:00    2017-06-23 03:03:00
100270    32581    818    2017-06-23 17:54:00    2017-06-23 17:54:00
100271    32581    825    2017-06-23 08:30:00    2017-06-23 08:30:00
100272    32581    697    2017-06-23 02:34:00    2017-06-23 02:34:00
100273    32581    504    2017-06-23 10:12:00    2017-06-23 10:12:00
100274    32581    850    2017-06-23 04:27:00    2017-06-23 04:27:00
100275    32582    924    2017-06-23 20:26:00    2017-06-23 20:26:00
100276    32582    717    2017-06-23 10:51:00    2017-06-23 10:51:00
100277    32582    944    2017-06-23 07:59:00    2017-06-23 07:59:00
100278    32582    784    2017-06-23 08:57:00    2017-06-23 08:57:00
100279    32582    669    2017-06-23 05:58:00    2017-06-23 05:58:00
100280    32583    709    2017-06-23 18:46:00    2017-06-23 18:46:00
100281    32583    890    2017-06-23 03:35:00    2017-06-23 03:35:00
100282    32583    521    2017-06-23 01:51:00    2017-06-23 01:51:00
100283    32583    839    2017-06-23 01:21:00    2017-06-23 01:21:00
100284    32583    557    2017-06-23 11:23:00    2017-06-23 11:23:00
100285    32584    696    2017-06-23 04:14:00    2017-06-23 04:14:00
100286    32584    718    2017-06-23 22:26:00    2017-06-23 22:26:00
100287    32584    847    2017-06-23 07:12:00    2017-06-23 07:12:00
100288    32584    488    2017-06-23 21:14:00    2017-06-23 21:14:00
100289    32584    899    2017-06-23 20:37:00    2017-06-23 20:37:00
100290    32585    878    2017-06-23 03:11:00    2017-06-23 03:11:00
100291    32585    696    2017-06-23 09:25:00    2017-06-23 09:25:00
100292    32585    621    2017-06-23 21:43:00    2017-06-23 21:43:00
100293    32585    468    2017-06-23 16:18:00    2017-06-23 16:18:00
100294    32585    674    2017-06-23 21:28:00    2017-06-23 21:28:00
100295    32586    913    2017-06-23 11:33:00    2017-06-23 11:33:00
100296    32586    535    2017-06-23 11:00:00    2017-06-23 11:00:00
100297    32586    716    2017-06-23 05:00:00    2017-06-23 05:00:00
100298    32586    553    2017-06-23 13:49:00    2017-06-23 13:49:00
100299    32586    724    2017-06-23 11:34:00    2017-06-23 11:34:00
100300    32587    889    2017-06-23 08:05:00    2017-06-23 08:05:00
100301    32587    860    2017-06-23 05:34:00    2017-06-23 05:34:00
100302    32587    626    2017-06-23 06:40:00    2017-06-23 06:40:00
100303    32587    741    2017-06-23 15:24:00    2017-06-23 15:24:00
100304    32587    636    2017-06-23 05:18:00    2017-06-23 05:18:00
100305    32588    795    2017-06-23 01:21:00    2017-06-23 01:21:00
100306    32588    551    2017-06-23 05:50:00    2017-06-23 05:50:00
100307    32588    668    2017-06-23 09:19:00    2017-06-23 09:19:00
100308    32588    561    2017-06-23 17:18:00    2017-06-23 17:18:00
100309    32588    752    2017-06-23 22:13:00    2017-06-23 22:13:00
100310    32589    663    2017-06-23 12:57:00    2017-06-23 12:57:00
100311    32589    519    2017-06-23 18:17:00    2017-06-23 18:17:00
100312    32589    533    2017-06-23 20:00:00    2017-06-23 20:00:00
100313    32589    581    2017-06-23 01:29:00    2017-06-23 01:29:00
100314    32589    528    2017-06-23 04:10:00    2017-06-23 04:10:00
100315    32590    557    2017-06-23 08:36:00    2017-06-23 08:36:00
100316    32590    655    2017-06-23 06:05:00    2017-06-23 06:05:00
100317    32590    906    2017-06-23 04:04:00    2017-06-23 04:04:00
100318    32590    836    2017-06-23 18:17:00    2017-06-23 18:17:00
100319    32590    890    2017-06-23 22:45:00    2017-06-23 22:45:00
100320    32591    761    2017-06-23 18:32:00    2017-06-23 18:32:00
100321    32591    648    2017-06-23 18:02:00    2017-06-23 18:02:00
100322    32591    702    2017-06-23 21:31:00    2017-06-23 21:31:00
100323    32591    714    2017-06-23 13:16:00    2017-06-23 13:16:00
100324    32591    858    2017-06-23 20:31:00    2017-06-23 20:31:00
100325    32592    465    2017-06-23 06:58:00    2017-06-23 06:58:00
100326    32592    616    2017-06-23 09:17:00    2017-06-23 09:17:00
100327    32592    607    2017-06-23 07:06:00    2017-06-23 07:06:00
100328    32592    789    2017-06-23 15:25:00    2017-06-23 15:25:00
100329    32592    847    2017-06-23 21:10:00    2017-06-23 21:10:00
100330    32593    669    2017-06-23 17:56:00    2017-06-23 17:56:00
100331    32593    677    2017-06-23 07:53:00    2017-06-23 07:53:00
100332    32593    766    2017-06-23 06:50:00    2017-06-23 06:50:00
100333    32593    788    2017-06-23 07:51:00    2017-06-23 07:51:00
100334    32593    570    2017-06-23 10:55:00    2017-06-23 10:55:00
100335    32594    913    2017-06-23 20:12:00    2017-06-23 20:12:00
100336    32594    754    2017-06-23 16:47:00    2017-06-23 16:47:00
100337    32594    471    2017-06-23 05:33:00    2017-06-23 05:33:00
100338    32594    543    2017-06-23 19:17:00    2017-06-23 19:17:00
100339    32594    464    2017-06-23 14:08:00    2017-06-23 14:08:00
100340    32595    649    2017-06-23 01:51:00    2017-06-23 01:51:00
100341    32595    529    2017-06-23 11:39:00    2017-06-23 11:39:00
100342    32595    574    2017-06-23 18:17:00    2017-06-23 18:17:00
100343    32595    914    2017-06-23 20:04:00    2017-06-23 20:04:00
100344    32595    800    2017-06-23 17:43:00    2017-06-23 17:43:00
100345    32596    732    2017-06-23 13:27:00    2017-06-23 13:27:00
100346    32596    938    2017-06-23 20:27:00    2017-06-23 20:27:00
100347    32596    941    2017-06-23 08:42:00    2017-06-23 08:42:00
100348    32596    550    2017-06-23 06:54:00    2017-06-23 06:54:00
100349    32596    575    2017-06-23 04:00:00    2017-06-23 04:00:00
100350    32597    694    2017-06-23 04:23:00    2017-06-23 04:23:00
100351    32597    527    2017-06-23 09:09:00    2017-06-23 09:09:00
100352    32597    946    2017-06-23 06:48:00    2017-06-23 06:48:00
100353    32597    912    2017-06-23 15:17:00    2017-06-23 15:17:00
100354    32597    615    2017-06-23 12:50:00    2017-06-23 12:50:00
100355    32598    773    2017-06-23 09:02:00    2017-06-23 09:02:00
100356    32598    592    2017-06-23 08:28:00    2017-06-23 08:28:00
100357    32598    606    2017-06-23 02:49:00    2017-06-23 02:49:00
100358    32598    588    2017-06-23 01:49:00    2017-06-23 01:49:00
100359    32598    801    2017-06-23 21:31:00    2017-06-23 21:31:00
100360    32599    469    2017-06-23 03:03:00    2017-06-23 03:03:00
100361    32599    805    2017-06-23 16:39:00    2017-06-23 16:39:00
100362    32599    566    2017-06-23 10:00:00    2017-06-23 10:00:00
100363    32599    823    2017-06-23 05:37:00    2017-06-23 05:37:00
100364    32599    762    2017-06-23 20:10:00    2017-06-23 20:10:00
100365    32600    544    2017-06-23 11:42:00    2017-06-23 11:42:00
100366    32600    920    2017-06-23 20:47:00    2017-06-23 20:47:00
100367    32600    713    2017-06-23 16:29:00    2017-06-23 16:29:00
100368    32600    498    2017-06-23 08:34:00    2017-06-23 08:34:00
100369    32600    703    2017-06-23 13:16:00    2017-06-23 13:16:00
100370    32601    464    2017-06-23 22:51:00    2017-06-23 22:51:00
100371    32601    810    2017-06-23 14:37:00    2017-06-23 14:37:00
100372    32601    893    2017-06-23 17:20:00    2017-06-23 17:20:00
100373    32601    710    2017-06-23 03:13:00    2017-06-23 03:13:00
100374    32601    524    2017-06-23 18:00:00    2017-06-23 18:00:00
100375    32602    957    2017-06-23 02:05:00    2017-06-23 02:05:00
100376    32602    479    2017-06-23 03:42:00    2017-06-23 03:42:00
100377    32602    727    2017-06-23 07:02:00    2017-06-23 07:02:00
100378    32602    682    2017-06-23 11:11:00    2017-06-23 11:11:00
100379    32602    546    2017-06-23 18:13:00    2017-06-23 18:13:00
100380    32603    852    2017-06-23 17:59:00    2017-06-23 17:59:00
100381    32603    630    2017-06-23 12:37:00    2017-06-23 12:37:00
100382    32603    589    2017-06-23 06:40:00    2017-06-23 06:40:00
100383    32603    487    2017-06-23 19:45:00    2017-06-23 19:45:00
100384    32603    894    2017-06-23 10:40:00    2017-06-23 10:40:00
100385    32604    498    2017-06-23 06:36:00    2017-06-23 06:36:00
100386    32604    915    2017-06-23 16:27:00    2017-06-23 16:27:00
100387    32604    552    2017-06-23 05:17:00    2017-06-23 05:17:00
100388    32604    819    2017-06-23 14:11:00    2017-06-23 14:11:00
100389    32604    652    2017-06-23 20:59:00    2017-06-23 20:59:00
100390    32605    750    2017-06-23 09:05:00    2017-06-23 09:05:00
100391    32605    934    2017-06-23 04:08:00    2017-06-23 04:08:00
100392    32605    814    2017-06-23 05:24:00    2017-06-23 05:24:00
100393    32605    819    2017-06-23 16:43:00    2017-06-23 16:43:00
100394    32605    694    2017-06-23 14:16:00    2017-06-23 14:16:00
100395    32606    893    2017-06-23 09:27:00    2017-06-23 09:27:00
100396    32606    781    2017-06-23 07:38:00    2017-06-23 07:38:00
100397    32606    549    2017-06-23 01:23:00    2017-06-23 01:23:00
100398    32606    722    2017-06-23 13:39:00    2017-06-23 13:39:00
100399    32606    472    2017-06-23 13:48:00    2017-06-23 13:48:00
100400    32607    843    2017-06-23 07:56:00    2017-06-23 07:56:00
100401    32607    777    2017-06-23 06:35:00    2017-06-23 06:35:00
100402    32607    868    2017-06-23 12:18:00    2017-06-23 12:18:00
100403    32607    587    2017-06-23 19:04:00    2017-06-23 19:04:00
100404    32607    692    2017-06-23 06:07:00    2017-06-23 06:07:00
100405    32608    493    2017-06-23 12:12:00    2017-06-23 12:12:00
100406    32608    927    2017-06-23 07:45:00    2017-06-23 07:45:00
100407    32608    906    2017-06-23 21:33:00    2017-06-23 21:33:00
100408    32608    837    2017-06-23 22:24:00    2017-06-23 22:24:00
100409    32608    724    2017-06-23 15:49:00    2017-06-23 15:49:00
100410    32609    914    2017-06-23 10:03:00    2017-06-23 10:03:00
100411    32609    529    2017-06-23 04:22:00    2017-06-23 04:22:00
100412    32609    857    2017-06-23 17:07:00    2017-06-23 17:07:00
100413    32609    777    2017-06-23 13:01:00    2017-06-23 13:01:00
100414    32609    610    2017-06-23 10:33:00    2017-06-23 10:33:00
100415    32610    881    2017-06-23 15:52:00    2017-06-23 15:52:00
100416    32610    932    2017-06-23 16:33:00    2017-06-23 16:33:00
100417    32610    855    2017-06-23 03:01:00    2017-06-23 03:01:00
100418    32610    721    2017-06-23 15:58:00    2017-06-23 15:58:00
100419    32610    541    2017-06-23 06:53:00    2017-06-23 06:53:00
100420    32611    487    2017-06-23 08:19:00    2017-06-23 08:19:00
100421    32611    957    2017-06-23 03:56:00    2017-06-23 03:56:00
100422    32611    837    2017-06-23 06:04:00    2017-06-23 06:04:00
100423    32611    500    2017-06-23 12:24:00    2017-06-23 12:24:00
100424    32611    857    2017-06-23 19:15:00    2017-06-23 19:15:00
100425    32612    602    2017-06-23 18:20:00    2017-06-23 18:20:00
100426    32612    859    2017-06-23 05:21:00    2017-06-23 05:21:00
100427    32612    488    2017-06-23 18:20:00    2017-06-23 18:20:00
100428    32612    733    2017-06-23 03:20:00    2017-06-23 03:20:00
100429    32612    899    2017-06-23 16:08:00    2017-06-23 16:08:00
100430    32613    761    2017-06-24 01:06:00    2017-06-24 01:06:00
100431    32613    618    2017-06-24 04:02:00    2017-06-24 04:02:00
100432    32613    717    2017-06-24 02:24:00    2017-06-24 02:24:00
100433    32613    852    2017-06-24 17:36:00    2017-06-24 17:36:00
100434    32613    568    2017-06-24 06:44:00    2017-06-24 06:44:00
100435    32614    646    2017-06-24 03:12:00    2017-06-24 03:12:00
100436    32614    762    2017-06-24 14:44:00    2017-06-24 14:44:00
100437    32614    792    2017-06-24 20:15:00    2017-06-24 20:15:00
100438    32614    795    2017-06-24 06:31:00    2017-06-24 06:31:00
100439    32614    889    2017-06-24 03:45:00    2017-06-24 03:45:00
100440    32615    731    2017-06-24 14:11:00    2017-06-24 14:11:00
100441    32615    506    2017-06-24 23:41:00    2017-06-24 23:41:00
100442    32615    840    2017-06-24 10:53:00    2017-06-24 10:53:00
100443    32615    836    2017-06-24 07:18:00    2017-06-24 07:18:00
100444    32615    916    2017-06-24 04:04:00    2017-06-24 04:04:00
100445    32616    786    2017-06-24 19:38:00    2017-06-24 19:38:00
100446    32616    858    2017-06-24 08:08:00    2017-06-24 08:08:00
100447    32616    714    2017-06-24 14:53:00    2017-06-24 14:53:00
100448    32616    924    2017-06-24 07:48:00    2017-06-24 07:48:00
100449    32616    855    2017-06-24 04:28:00    2017-06-24 04:28:00
100450    32617    819    2017-06-24 02:45:00    2017-06-24 02:45:00
100451    32617    913    2017-06-24 23:41:00    2017-06-24 23:41:00
100452    32617    827    2017-06-24 02:37:00    2017-06-24 02:37:00
100453    32617    877    2017-06-24 01:32:00    2017-06-24 01:32:00
100454    32617    608    2017-06-24 06:38:00    2017-06-24 06:38:00
100455    32618    621    2017-06-24 04:42:00    2017-06-24 04:42:00
100456    32618    597    2017-06-24 01:37:00    2017-06-24 01:37:00
100457    32618    743    2017-06-24 06:44:00    2017-06-24 06:44:00
100458    32618    551    2017-06-24 08:37:00    2017-06-24 08:37:00
100459    32618    904    2017-06-24 07:36:00    2017-06-24 07:36:00
100460    32619    785    2017-06-24 23:40:00    2017-06-24 23:40:00
100461    32619    535    2017-06-24 21:48:00    2017-06-24 21:48:00
100462    32619    769    2017-06-24 09:00:00    2017-06-24 09:00:00
100463    32619    644    2017-06-24 17:24:00    2017-06-24 17:24:00
100464    32619    470    2017-06-24 17:25:00    2017-06-24 17:25:00
100465    32620    505    2017-06-24 09:59:00    2017-06-24 09:59:00
100466    32620    931    2017-06-24 13:02:00    2017-06-24 13:02:00
100467    32620    897    2017-06-24 21:28:00    2017-06-24 21:28:00
100468    32620    859    2017-06-24 12:58:00    2017-06-24 12:58:00
100469    32620    493    2017-06-24 14:30:00    2017-06-24 14:30:00
100470    32621    795    2017-06-25 08:53:00    2017-06-25 08:53:00
100471    32621    901    2017-06-25 17:32:00    2017-06-25 17:32:00
100472    32621    705    2017-06-25 17:00:00    2017-06-25 17:00:00
100473    32621    577    2017-06-25 14:04:00    2017-06-25 14:04:00
100474    32621    733    2017-06-25 07:13:00    2017-06-25 07:13:00
100475    32622    750    2017-06-25 13:33:00    2017-06-25 13:33:00
100476    32622    635    2017-06-25 13:33:00    2017-06-25 13:33:00
100477    32622    621    2017-06-25 05:33:00    2017-06-25 05:33:00
100478    32622    795    2017-06-25 06:48:00    2017-06-25 06:48:00
100479    32622    642    2017-06-25 23:02:00    2017-06-25 23:02:00
100480    32623    698    2017-06-25 08:54:00    2017-06-25 08:54:00
100481    32623    899    2017-06-25 07:46:00    2017-06-25 07:46:00
100482    32623    913    2017-06-25 17:05:00    2017-06-25 17:05:00
100483    32623    892    2017-06-25 21:49:00    2017-06-25 21:49:00
100484    32623    554    2017-06-25 13:24:00    2017-06-25 13:24:00
100485    32624    536    2017-06-25 07:53:00    2017-06-25 07:53:00
100486    32624    530    2017-06-25 09:34:00    2017-06-25 09:34:00
100487    32624    470    2017-06-25 02:22:00    2017-06-25 02:22:00
100488    32624    672    2017-06-25 18:14:00    2017-06-25 18:14:00
100489    32624    818    2017-06-25 11:44:00    2017-06-25 11:44:00
100490    32625    497    2017-06-25 12:10:00    2017-06-25 12:10:00
100491    32625    626    2017-06-25 06:44:00    2017-06-25 06:44:00
100492    32625    764    2017-06-25 03:06:00    2017-06-25 03:06:00
100493    32625    896    2017-06-25 03:37:00    2017-06-25 03:37:00
100494    32625    723    2017-06-25 05:01:00    2017-06-25 05:01:00
100495    32626    694    2017-06-25 14:04:00    2017-06-25 14:04:00
100496    32626    780    2017-06-25 16:20:00    2017-06-25 16:20:00
100497    32626    773    2017-06-25 02:16:00    2017-06-25 02:16:00
100498    32626    769    2017-06-25 17:19:00    2017-06-25 17:19:00
100499    32626    527    2017-06-25 09:48:00    2017-06-25 09:48:00
100500    32627    683    2017-06-25 12:23:00    2017-06-25 12:23:00
100501    32627    803    2017-06-25 08:08:00    2017-06-25 08:08:00
100502    32627    546    2017-06-25 23:35:00    2017-06-25 23:35:00
100503    32627    507    2017-06-25 10:49:00    2017-06-25 10:49:00
100504    32627    807    2017-06-25 20:06:00    2017-06-25 20:06:00
100505    32628    608    2017-06-25 23:37:00    2017-06-25 23:37:00
100506    32628    491    2017-06-25 14:09:00    2017-06-25 14:09:00
100507    32628    533    2017-06-25 16:09:00    2017-06-25 16:09:00
100508    32628    672    2017-06-25 17:44:00    2017-06-25 17:44:00
100509    32628    492    2017-06-25 21:20:00    2017-06-25 21:20:00
100510    32629    853    2017-06-25 14:02:00    2017-06-25 14:02:00
100511    32629    535    2017-06-25 11:43:00    2017-06-25 11:43:00
100512    32629    945    2017-06-25 15:36:00    2017-06-25 15:36:00
100513    32629    619    2017-06-25 22:31:00    2017-06-25 22:31:00
100514    32629    907    2017-06-25 22:08:00    2017-06-25 22:08:00
100515    32630    717    2017-06-25 15:00:00    2017-06-25 15:00:00
100516    32630    850    2017-06-25 21:07:00    2017-06-25 21:07:00
100517    32630    897    2017-06-25 23:24:00    2017-06-25 23:24:00
100518    32630    715    2017-06-25 03:17:00    2017-06-25 03:17:00
100519    32630    621    2017-06-25 11:17:00    2017-06-25 11:17:00
100520    32631    586    2017-06-25 21:24:00    2017-06-25 21:24:00
100521    32631    647    2017-06-25 03:53:00    2017-06-25 03:53:00
100522    32631    524    2017-06-25 18:57:00    2017-06-25 18:57:00
100523    32631    738    2017-06-25 23:14:00    2017-06-25 23:14:00
100524    32631    950    2017-06-25 01:48:00    2017-06-25 01:48:00
100525    32632    780    2017-06-25 13:54:00    2017-06-25 13:54:00
100526    32632    864    2017-06-25 13:38:00    2017-06-25 13:38:00
100527    32632    492    2017-06-25 06:18:00    2017-06-25 06:18:00
100528    32632    508    2017-06-25 20:25:00    2017-06-25 20:25:00
100529    32632    750    2017-06-25 17:06:00    2017-06-25 17:06:00
100530    32633    524    2017-06-25 14:26:00    2017-06-25 14:26:00
100531    32633    880    2017-06-25 22:42:00    2017-06-25 22:42:00
100532    32633    557    2017-06-25 14:22:00    2017-06-25 14:22:00
100533    32633    851    2017-06-25 05:40:00    2017-06-25 05:40:00
100534    32633    496    2017-06-25 11:03:00    2017-06-25 11:03:00
100535    32634    909    2017-06-25 19:47:00    2017-06-25 19:47:00
100536    32634    825    2017-06-25 04:23:00    2017-06-25 04:23:00
100537    32634    825    2017-06-25 14:53:00    2017-06-25 14:53:00
100538    32634    616    2017-06-25 23:23:00    2017-06-25 23:23:00
100539    32634    876    2017-06-25 11:37:00    2017-06-25 11:37:00
100540    32635    568    2017-06-25 15:18:00    2017-06-25 15:18:00
100541    32635    809    2017-06-25 04:48:00    2017-06-25 04:48:00
100542    32635    476    2017-06-25 01:49:00    2017-06-25 01:49:00
100543    32635    542    2017-06-25 11:52:00    2017-06-25 11:52:00
100544    32635    741    2017-06-25 18:36:00    2017-06-25 18:36:00
100545    32636    482    2017-06-25 09:34:00    2017-06-25 09:34:00
100546    32636    565    2017-06-25 15:09:00    2017-06-25 15:09:00
100547    32636    754    2017-06-25 04:13:00    2017-06-25 04:13:00
100548    32636    642    2017-06-25 13:20:00    2017-06-25 13:20:00
100549    32636    571    2017-06-25 23:13:00    2017-06-25 23:13:00
100550    32637    664    2017-06-25 22:10:00    2017-06-25 22:10:00
100551    32637    620    2017-06-25 01:54:00    2017-06-25 01:54:00
100552    32637    738    2017-06-25 22:00:00    2017-06-25 22:00:00
100553    32637    732    2017-06-25 08:50:00    2017-06-25 08:50:00
100554    32637    905    2017-06-25 14:00:00    2017-06-25 14:00:00
100555    32638    509    2017-06-25 09:33:00    2017-06-25 09:33:00
100556    32638    821    2017-06-25 04:24:00    2017-06-25 04:24:00
100557    32638    564    2017-06-25 11:41:00    2017-06-25 11:41:00
100558    32638    866    2017-06-25 08:02:00    2017-06-25 08:02:00
100559    32638    644    2017-06-25 03:57:00    2017-06-25 03:57:00
100560    32639    631    2017-06-25 19:20:00    2017-06-25 19:20:00
100561    32639    463    2017-06-25 08:20:00    2017-06-25 08:20:00
100562    32639    757    2017-06-25 22:37:00    2017-06-25 22:37:00
100563    32639    816    2017-06-25 06:25:00    2017-06-25 06:25:00
100564    32639    526    2017-06-25 12:22:00    2017-06-25 12:22:00
100565    32640    567    2017-06-25 04:57:00    2017-06-25 04:57:00
100566    32640    896    2017-06-25 23:39:00    2017-06-25 23:39:00
100567    32640    490    2017-06-25 13:00:00    2017-06-25 13:00:00
100568    32640    468    2017-06-25 18:57:00    2017-06-25 18:57:00
100569    32640    615    2017-06-25 12:35:00    2017-06-25 12:35:00
100570    32641    854    2017-06-25 11:14:00    2017-06-25 11:14:00
100571    32641    693    2017-06-25 12:32:00    2017-06-25 12:32:00
100572    32641    867    2017-06-25 19:23:00    2017-06-25 19:23:00
100573    32641    871    2017-06-25 09:09:00    2017-06-25 09:09:00
100574    32641    588    2017-06-25 08:39:00    2017-06-25 08:39:00
100575    32642    772    2017-06-25 06:30:00    2017-06-25 06:30:00
100576    32642    610    2017-06-25 05:42:00    2017-06-25 05:42:00
100577    32642    923    2017-06-25 07:14:00    2017-06-25 07:14:00
100578    32642    819    2017-06-25 23:53:00    2017-06-25 23:53:00
100579    32642    568    2017-06-25 10:56:00    2017-06-25 10:56:00
100580    32643    532    2017-06-25 20:23:00    2017-06-25 20:23:00
100581    32643    853    2017-06-25 23:16:00    2017-06-25 23:16:00
100582    32643    784    2017-06-25 05:33:00    2017-06-25 05:33:00
100583    32643    725    2017-06-25 12:50:00    2017-06-25 12:50:00
100584    32643    767    2017-06-25 16:18:00    2017-06-25 16:18:00
100585    32644    906    2017-06-25 23:20:00    2017-06-25 23:20:00
100586    32644    787    2017-06-25 09:00:00    2017-06-25 09:00:00
100587    32644    632    2017-06-25 23:41:00    2017-06-25 23:41:00
100588    32644    722    2017-06-25 19:12:00    2017-06-25 19:12:00
100589    32644    693    2017-06-25 18:21:00    2017-06-25 18:21:00
100590    32645    640    2017-06-25 09:07:00    2017-06-25 09:07:00
100591    32645    734    2017-06-25 14:12:00    2017-06-25 14:12:00
100592    32645    888    2017-06-25 05:45:00    2017-06-25 05:45:00
100593    32645    518    2017-06-25 03:46:00    2017-06-25 03:46:00
100594    32645    570    2017-06-25 10:40:00    2017-06-25 10:40:00
100595    32646    931    2017-06-25 13:58:00    2017-06-25 13:58:00
100596    32646    632    2017-06-25 21:27:00    2017-06-25 21:27:00
100597    32646    498    2017-06-25 15:10:00    2017-06-25 15:10:00
100598    32646    740    2017-06-25 19:13:00    2017-06-25 19:13:00
100599    32646    880    2017-06-25 06:30:00    2017-06-25 06:30:00
100600    32647    860    2017-06-25 10:43:00    2017-06-25 10:43:00
100601    32647    600    2017-06-25 10:31:00    2017-06-25 10:31:00
100602    32647    793    2017-06-25 18:21:00    2017-06-25 18:21:00
100603    32647    721    2017-06-25 17:05:00    2017-06-25 17:05:00
100604    32647    556    2017-06-25 20:42:00    2017-06-25 20:42:00
100605    32648    686    2017-06-26 09:40:00    2017-06-26 09:40:00
100606    32648    545    2017-06-26 11:06:00    2017-06-26 11:06:00
100607    32648    883    2017-06-26 05:46:00    2017-06-26 05:46:00
100608    32648    925    2017-06-26 01:56:00    2017-06-26 01:56:00
100609    32648    778    2017-06-26 20:53:00    2017-06-26 20:53:00
100610    32649    941    2017-06-26 21:49:00    2017-06-26 21:49:00
100611    32649    618    2017-06-26 18:58:00    2017-06-26 18:58:00
100612    32649    835    2017-06-26 14:44:00    2017-06-26 14:44:00
100613    32649    680    2017-06-26 10:14:00    2017-06-26 10:14:00
100614    32649    945    2017-06-26 15:15:00    2017-06-26 15:15:00
100615    32650    477    2017-06-26 14:55:00    2017-06-26 14:55:00
100616    32650    856    2017-06-26 14:46:00    2017-06-26 14:46:00
100617    32650    751    2017-06-26 05:40:00    2017-06-26 05:40:00
100618    32650    955    2017-06-26 20:38:00    2017-06-26 20:38:00
100619    32650    836    2017-06-26 12:22:00    2017-06-26 12:22:00
100620    32651    513    2017-06-26 04:32:00    2017-06-26 04:32:00
100621    32651    864    2017-06-26 07:48:00    2017-06-26 07:48:00
100622    32651    590    2017-06-26 02:31:00    2017-06-26 02:31:00
100623    32651    573    2017-06-26 21:38:00    2017-06-26 21:38:00
100624    32651    647    2017-06-26 09:00:00    2017-06-26 09:00:00
100625    32652    607    2017-06-26 14:24:00    2017-06-26 14:24:00
100626    32652    624    2017-06-26 22:56:00    2017-06-26 22:56:00
100627    32652    596    2017-06-26 02:39:00    2017-06-26 02:39:00
100628    32652    466    2017-06-26 15:55:00    2017-06-26 15:55:00
100629    32652    746    2017-06-26 15:01:00    2017-06-26 15:01:00
100630    32653    536    2017-06-26 19:01:00    2017-06-26 19:01:00
100631    32653    590    2017-06-26 19:09:00    2017-06-26 19:09:00
100632    32653    536    2017-06-26 12:17:00    2017-06-26 12:17:00
100633    32653    510    2017-06-26 08:41:00    2017-06-26 08:41:00
100634    32653    482    2017-06-26 09:18:00    2017-06-26 09:18:00
100635    32654    530    2017-06-26 18:24:00    2017-06-26 18:24:00
100636    32654    742    2017-06-26 14:12:00    2017-06-26 14:12:00
100637    32654    753    2017-06-26 15:27:00    2017-06-26 15:27:00
100638    32654    692    2017-06-26 11:09:00    2017-06-26 11:09:00
100639    32654    514    2017-06-26 18:39:00    2017-06-26 18:39:00
100640    32655    703    2017-06-26 10:10:00    2017-06-26 10:10:00
100641    32655    917    2017-06-26 08:32:00    2017-06-26 08:32:00
100642    32655    567    2017-06-26 10:40:00    2017-06-26 10:40:00
100643    32655    879    2017-06-26 23:28:00    2017-06-26 23:28:00
100644    32655    706    2017-06-26 18:34:00    2017-06-26 18:34:00
100645    32656    950    2017-06-26 03:12:00    2017-06-26 03:12:00
100646    32656    849    2017-06-26 07:30:00    2017-06-26 07:30:00
100647    32656    624    2017-06-26 21:50:00    2017-06-26 21:50:00
100648    32656    723    2017-06-26 23:39:00    2017-06-26 23:39:00
100649    32656    703    2017-06-26 13:07:00    2017-06-26 13:07:00
100650    32657    548    2017-06-26 13:16:00    2017-06-26 13:16:00
100651    32657    653    2017-06-26 08:06:00    2017-06-26 08:06:00
100652    32657    632    2017-06-26 12:05:00    2017-06-26 12:05:00
100653    32657    901    2017-06-26 06:47:00    2017-06-26 06:47:00
100654    32657    676    2017-06-26 16:26:00    2017-06-26 16:26:00
100655    32658    797    2017-06-26 04:56:00    2017-06-26 04:56:00
100656    32658    754    2017-06-26 08:21:00    2017-06-26 08:21:00
100657    32658    900    2017-06-26 23:20:00    2017-06-26 23:20:00
100658    32658    902    2017-06-26 09:33:00    2017-06-26 09:33:00
100659    32658    960    2017-06-26 13:14:00    2017-06-26 13:14:00
100660    32659    862    2017-06-26 23:20:00    2017-06-26 23:20:00
100661    32659    872    2017-06-26 02:17:00    2017-06-26 02:17:00
100662    32659    801    2017-06-26 12:43:00    2017-06-26 12:43:00
100663    32659    760    2017-06-26 09:06:00    2017-06-26 09:06:00
100664    32659    729    2017-06-26 15:52:00    2017-06-26 15:52:00
100665    32660    783    2017-06-26 02:09:00    2017-06-26 02:09:00
100666    32660    775    2017-06-26 16:18:00    2017-06-26 16:18:00
100667    32660    782    2017-06-26 20:52:00    2017-06-26 20:52:00
100668    32660    567    2017-06-26 13:38:00    2017-06-26 13:38:00
100669    32660    946    2017-06-26 21:21:00    2017-06-26 21:21:00
100670    32661    812    2017-06-26 19:53:00    2017-06-26 19:53:00
100671    32661    557    2017-06-26 15:31:00    2017-06-26 15:31:00
100672    32661    854    2017-06-26 10:09:00    2017-06-26 10:09:00
100673    32661    868    2017-06-26 10:10:00    2017-06-26 10:10:00
100674    32661    953    2017-06-26 11:50:00    2017-06-26 11:50:00
100675    32662    923    2017-06-26 22:16:00    2017-06-26 22:16:00
100676    32662    504    2017-06-26 14:28:00    2017-06-26 14:28:00
100677    32662    504    2017-06-26 13:51:00    2017-06-26 13:51:00
100678    32662    674    2017-06-26 15:07:00    2017-06-26 15:07:00
100679    32662    947    2017-06-26 06:59:00    2017-06-26 06:59:00
100680    32663    629    2017-06-26 15:04:00    2017-06-26 15:04:00
100681    32663    956    2017-06-26 16:56:00    2017-06-26 16:56:00
100682    32663    887    2017-06-26 03:19:00    2017-06-26 03:19:00
100683    32663    865    2017-06-26 08:08:00    2017-06-26 08:08:00
100684    32663    635    2017-06-26 19:34:00    2017-06-26 19:34:00
100685    32664    579    2017-06-26 01:16:00    2017-06-26 01:16:00
100686    32664    872    2017-06-26 05:28:00    2017-06-26 05:28:00
100687    32664    572    2017-06-26 11:53:00    2017-06-26 11:53:00
100688    32664    777    2017-06-26 07:48:00    2017-06-26 07:48:00
100689    32664    957    2017-06-26 04:14:00    2017-06-26 04:14:00
100690    32665    775    2017-06-26 15:02:00    2017-06-26 15:02:00
100691    32665    826    2017-06-26 18:40:00    2017-06-26 18:40:00
100692    32665    739    2017-06-26 16:17:00    2017-06-26 16:17:00
100693    32665    608    2017-06-26 09:35:00    2017-06-26 09:35:00
100694    32665    732    2017-06-26 17:47:00    2017-06-26 17:47:00
100695    32666    558    2017-06-26 17:25:00    2017-06-26 17:25:00
100696    32666    834    2017-06-26 20:43:00    2017-06-26 20:43:00
100697    32666    925    2017-06-26 08:23:00    2017-06-26 08:23:00
100698    32666    890    2017-06-26 01:37:00    2017-06-26 01:37:00
100699    32666    473    2017-06-26 03:08:00    2017-06-26 03:08:00
100700    32667    842    2017-06-26 10:12:00    2017-06-26 10:12:00
100701    32667    720    2017-06-26 06:59:00    2017-06-26 06:59:00
100702    32667    917    2017-06-26 07:50:00    2017-06-26 07:50:00
100703    32667    806    2017-06-26 16:41:00    2017-06-26 16:41:00
100704    32667    498    2017-06-26 10:38:00    2017-06-26 10:38:00
100705    32668    781    2017-06-26 20:10:00    2017-06-26 20:10:00
100706    32668    930    2017-06-26 21:02:00    2017-06-26 21:02:00
100707    32668    910    2017-06-26 07:36:00    2017-06-26 07:36:00
100708    32668    828    2017-06-26 23:12:00    2017-06-26 23:12:00
100709    32668    581    2017-06-26 06:52:00    2017-06-26 06:52:00
100710    32669    619    2017-06-26 01:41:00    2017-06-26 01:41:00
100711    32669    471    2017-06-26 16:00:00    2017-06-26 16:00:00
100712    32669    905    2017-06-26 18:50:00    2017-06-26 18:50:00
100713    32669    764    2017-06-26 10:20:00    2017-06-26 10:20:00
100714    32669    523    2017-06-26 20:09:00    2017-06-26 20:09:00
100715    32670    554    2017-06-26 04:20:00    2017-06-26 04:20:00
100716    32670    508    2017-06-26 09:57:00    2017-06-26 09:57:00
100717    32670    860    2017-06-26 04:54:00    2017-06-26 04:54:00
100718    32670    865    2017-06-26 04:00:00    2017-06-26 04:00:00
100719    32670    649    2017-06-26 11:56:00    2017-06-26 11:56:00
100720    32671    746    2017-06-26 13:01:00    2017-06-26 13:01:00
100721    32671    707    2017-06-26 20:48:00    2017-06-26 20:48:00
100722    32671    709    2017-06-26 03:14:00    2017-06-26 03:14:00
100723    32671    939    2017-06-26 04:46:00    2017-06-26 04:46:00
100724    32671    760    2017-06-26 02:37:00    2017-06-26 02:37:00
100725    32672    504    2017-06-26 13:55:00    2017-06-26 13:55:00
100726    32672    958    2017-06-26 14:51:00    2017-06-26 14:51:00
100727    32672    658    2017-06-26 04:13:00    2017-06-26 04:13:00
100728    32672    711    2017-06-26 04:07:00    2017-06-26 04:07:00
100729    32672    902    2017-06-26 16:37:00    2017-06-26 16:37:00
100730    32673    912    2017-06-26 07:49:00    2017-06-26 07:49:00
100731    32673    605    2017-06-26 02:47:00    2017-06-26 02:47:00
100732    32673    581    2017-06-26 07:35:00    2017-06-26 07:35:00
100733    32673    755    2017-06-26 17:45:00    2017-06-26 17:45:00
100734    32673    872    2017-06-26 23:00:00    2017-06-26 23:00:00
100735    32674    757    2017-06-26 12:03:00    2017-06-26 12:03:00
100736    32674    528    2017-06-26 01:28:00    2017-06-26 01:28:00
100737    32674    818    2017-06-26 17:07:00    2017-06-26 17:07:00
100738    32674    519    2017-06-26 14:40:00    2017-06-26 14:40:00
100739    32674    740    2017-06-26 10:28:00    2017-06-26 10:28:00
100740    32675    708    2017-06-26 20:43:00    2017-06-26 20:43:00
100741    32675    948    2017-06-26 22:55:00    2017-06-26 22:55:00
100742    32675    519    2017-06-26 22:11:00    2017-06-26 22:11:00
100743    32675    943    2017-06-26 06:23:00    2017-06-26 06:23:00
100744    32675    900    2017-06-26 12:23:00    2017-06-26 12:23:00
100745    32676    670    2017-06-26 12:15:00    2017-06-26 12:15:00
100746    32676    721    2017-06-26 22:25:00    2017-06-26 22:25:00
100747    32676    490    2017-06-26 07:49:00    2017-06-26 07:49:00
100748    32676    902    2017-06-26 14:48:00    2017-06-26 14:48:00
100749    32676    849    2017-06-26 14:40:00    2017-06-26 14:40:00
100750    32677    709    2017-06-26 08:50:00    2017-06-26 08:50:00
100751    32677    741    2017-06-26 21:29:00    2017-06-26 21:29:00
100752    32677    789    2017-06-26 05:03:00    2017-06-26 05:03:00
100753    32677    924    2017-06-26 19:47:00    2017-06-26 19:47:00
100754    32677    691    2017-06-26 16:53:00    2017-06-26 16:53:00
100755    32678    956    2017-06-26 11:09:00    2017-06-26 11:09:00
100756    32678    748    2017-06-26 18:47:00    2017-06-26 18:47:00
100757    32678    789    2017-06-26 17:56:00    2017-06-26 17:56:00
100758    32678    494    2017-06-26 16:54:00    2017-06-26 16:54:00
100759    32678    624    2017-06-26 06:23:00    2017-06-26 06:23:00
100760    32679    727    2017-06-26 08:51:00    2017-06-26 08:51:00
100761    32679    798    2017-06-26 22:15:00    2017-06-26 22:15:00
100762    32679    481    2017-06-26 05:11:00    2017-06-26 05:11:00
100763    32679    515    2017-06-26 02:49:00    2017-06-26 02:49:00
100764    32679    949    2017-06-26 04:49:00    2017-06-26 04:49:00
100765    32680    669    2017-06-26 19:18:00    2017-06-26 19:18:00
100766    32680    473    2017-06-26 12:39:00    2017-06-26 12:39:00
100767    32680    855    2017-06-26 18:30:00    2017-06-26 18:30:00
100768    32680    463    2017-06-26 11:56:00    2017-06-26 11:56:00
100769    32680    574    2017-06-26 15:08:00    2017-06-26 15:08:00
100770    32681    804    2017-06-26 06:16:00    2017-06-26 06:16:00
100771    32681    635    2017-06-26 08:58:00    2017-06-26 08:58:00
100772    32681    529    2017-06-26 16:15:00    2017-06-26 16:15:00
100773    32681    895    2017-06-26 10:42:00    2017-06-26 10:42:00
100774    32681    792    2017-06-26 06:00:00    2017-06-26 06:00:00
100775    32682    882    2017-06-26 07:51:00    2017-06-26 07:51:00
100776    32682    660    2017-06-26 06:24:00    2017-06-26 06:24:00
100777    32682    712    2017-06-26 21:53:00    2017-06-26 21:53:00
100778    32682    806    2017-06-26 09:13:00    2017-06-26 09:13:00
100779    32682    746    2017-06-26 07:11:00    2017-06-26 07:11:00
100780    32683    774    2017-06-27 01:12:00    2017-06-27 01:12:00
100781    32683    526    2017-06-27 03:51:00    2017-06-27 03:51:00
100782    32683    733    2017-06-27 16:00:00    2017-06-27 16:00:00
100783    32683    579    2017-06-27 07:02:00    2017-06-27 07:02:00
100784    32683    622    2017-06-27 10:21:00    2017-06-27 10:21:00
100785    32684    815    2017-06-27 12:06:00    2017-06-27 12:06:00
100786    32684    782    2017-06-27 02:21:00    2017-06-27 02:21:00
100787    32684    919    2017-06-27 14:12:00    2017-06-27 14:12:00
100788    32684    801    2017-06-27 19:32:00    2017-06-27 19:32:00
100789    32684    803    2017-06-27 14:40:00    2017-06-27 14:40:00
100790    32685    677    2017-06-27 17:29:00    2017-06-27 17:29:00
100791    32685    817    2017-06-27 11:08:00    2017-06-27 11:08:00
100792    32685    661    2017-06-27 16:52:00    2017-06-27 16:52:00
100793    32685    690    2017-06-27 03:20:00    2017-06-27 03:20:00
100794    32685    800    2017-06-27 04:59:00    2017-06-27 04:59:00
100795    32686    642    2017-06-27 15:10:00    2017-06-27 15:10:00
100796    32686    645    2017-06-27 05:15:00    2017-06-27 05:15:00
100797    32686    799    2017-06-27 12:33:00    2017-06-27 12:33:00
100798    32686    484    2017-06-27 14:35:00    2017-06-27 14:35:00
100799    32686    614    2017-06-27 11:12:00    2017-06-27 11:12:00
100800    32687    841    2017-06-27 01:52:00    2017-06-27 01:52:00
100801    32687    598    2017-06-27 05:17:00    2017-06-27 05:17:00
100802    32687    854    2017-06-27 15:04:00    2017-06-27 15:04:00
100803    32687    498    2017-06-27 20:20:00    2017-06-27 20:20:00
100804    32687    783    2017-06-27 10:43:00    2017-06-27 10:43:00
100805    32688    858    2017-06-27 18:02:00    2017-06-27 18:02:00
100806    32688    814    2017-06-27 05:51:00    2017-06-27 05:51:00
100807    32688    951    2017-06-27 09:16:00    2017-06-27 09:16:00
100808    32688    954    2017-06-27 23:58:00    2017-06-27 23:58:00
100809    32688    482    2017-06-27 12:39:00    2017-06-27 12:39:00
100810    32689    785    2017-06-27 12:13:00    2017-06-27 12:13:00
100811    32689    898    2017-06-27 07:50:00    2017-06-27 07:50:00
100812    32689    614    2017-06-27 01:44:00    2017-06-27 01:44:00
100813    32689    613    2017-06-27 20:36:00    2017-06-27 20:36:00
100814    32689    948    2017-06-27 15:38:00    2017-06-27 15:38:00
100815    32690    489    2017-06-27 16:48:00    2017-06-27 16:48:00
100816    32690    868    2017-06-27 13:15:00    2017-06-27 13:15:00
100817    32690    729    2017-06-27 06:53:00    2017-06-27 06:53:00
100818    32690    601    2017-06-27 20:29:00    2017-06-27 20:29:00
100819    32690    691    2017-06-27 23:52:00    2017-06-27 23:52:00
100820    32691    903    2017-06-27 08:43:00    2017-06-27 08:43:00
100821    32691    790    2017-06-27 08:14:00    2017-06-27 08:14:00
100822    32691    864    2017-06-27 02:20:00    2017-06-27 02:20:00
100823    32691    765    2017-06-27 04:32:00    2017-06-27 04:32:00
100824    32691    721    2017-06-27 12:40:00    2017-06-27 12:40:00
100825    32692    945    2017-06-27 07:25:00    2017-06-27 07:25:00
100826    32692    685    2017-06-27 13:42:00    2017-06-27 13:42:00
100827    32692    905    2017-06-27 04:20:00    2017-06-27 04:20:00
100828    32692    758    2017-06-27 05:02:00    2017-06-27 05:02:00
100829    32692    680    2017-06-27 17:21:00    2017-06-27 17:21:00
100830    32693    582    2017-06-27 12:58:00    2017-06-27 12:58:00
100831    32693    755    2017-06-27 15:42:00    2017-06-27 15:42:00
100832    32693    527    2017-06-27 03:26:00    2017-06-27 03:26:00
100833    32693    882    2017-06-27 06:17:00    2017-06-27 06:17:00
100834    32693    487    2017-06-27 01:01:00    2017-06-27 01:01:00
100835    32694    833    2017-06-27 10:10:00    2017-06-27 10:10:00
100836    32694    880    2017-06-27 04:46:00    2017-06-27 04:46:00
100837    32694    685    2017-06-27 04:05:00    2017-06-27 04:05:00
100838    32694    854    2017-06-27 22:13:00    2017-06-27 22:13:00
100839    32694    852    2017-06-27 23:38:00    2017-06-27 23:38:00
100840    32695    935    2017-06-27 02:53:00    2017-06-27 02:53:00
100841    32695    489    2017-06-27 14:21:00    2017-06-27 14:21:00
100842    32695    545    2017-06-27 12:56:00    2017-06-27 12:56:00
100843    32695    906    2017-06-27 16:20:00    2017-06-27 16:20:00
100844    32695    470    2017-06-27 14:49:00    2017-06-27 14:49:00
100845    32696    671    2017-06-27 01:42:00    2017-06-27 01:42:00
100846    32696    602    2017-06-27 09:26:00    2017-06-27 09:26:00
100847    32696    807    2017-06-27 07:20:00    2017-06-27 07:20:00
100848    32696    510    2017-06-27 20:32:00    2017-06-27 20:32:00
100849    32696    897    2017-06-27 12:34:00    2017-06-27 12:34:00
100850    32697    574    2017-06-27 20:56:00    2017-06-27 20:56:00
100851    32697    855    2017-06-27 20:55:00    2017-06-27 20:55:00
100852    32697    714    2017-06-27 04:24:00    2017-06-27 04:24:00
100853    32697    499    2017-06-27 12:10:00    2017-06-27 12:10:00
100854    32697    782    2017-06-27 06:43:00    2017-06-27 06:43:00
100855    32698    850    2017-06-27 10:12:00    2017-06-27 10:12:00
100856    32698    701    2017-06-27 14:34:00    2017-06-27 14:34:00
100857    32698    915    2017-06-27 06:46:00    2017-06-27 06:46:00
100858    32698    503    2017-06-27 12:18:00    2017-06-27 12:18:00
100859    32698    776    2017-06-27 03:50:00    2017-06-27 03:50:00
100860    32699    843    2017-06-27 20:45:00    2017-06-27 20:45:00
100861    32699    703    2017-06-27 01:12:00    2017-06-27 01:12:00
100862    32699    556    2017-06-27 16:52:00    2017-06-27 16:52:00
100863    32699    823    2017-06-27 01:32:00    2017-06-27 01:32:00
100864    32699    734    2017-06-27 04:03:00    2017-06-27 04:03:00
100865    32700    742    2017-06-27 19:46:00    2017-06-27 19:46:00
100866    32700    638    2017-06-27 03:10:00    2017-06-27 03:10:00
100867    32700    582    2017-06-27 04:36:00    2017-06-27 04:36:00
100868    32700    667    2017-06-27 13:30:00    2017-06-27 13:30:00
100869    32700    805    2017-06-27 08:50:00    2017-06-27 08:50:00
100870    32701    534    2017-06-27 03:37:00    2017-06-27 03:37:00
100871    32701    799    2017-06-27 21:03:00    2017-06-27 21:03:00
100872    32701    925    2017-06-27 15:21:00    2017-06-27 15:21:00
100873    32701    685    2017-06-27 19:01:00    2017-06-27 19:01:00
100874    32701    470    2017-06-27 01:06:00    2017-06-27 01:06:00
100875    32702    682    2017-06-27 04:51:00    2017-06-27 04:51:00
100876    32702    877    2017-06-27 19:10:00    2017-06-27 19:10:00
100877    32702    584    2017-06-27 03:50:00    2017-06-27 03:50:00
100878    32702    772    2017-06-27 23:42:00    2017-06-27 23:42:00
100879    32702    808    2017-06-27 18:36:00    2017-06-27 18:36:00
100880    32703    923    2017-06-27 08:49:00    2017-06-27 08:49:00
100881    32703    950    2017-06-27 09:56:00    2017-06-27 09:56:00
100882    32703    799    2017-06-27 19:28:00    2017-06-27 19:28:00
100883    32703    631    2017-06-27 20:29:00    2017-06-27 20:29:00
100884    32703    567    2017-06-27 23:58:00    2017-06-27 23:58:00
100885    32704    654    2017-06-27 13:46:00    2017-06-27 13:46:00
100886    32704    577    2017-06-27 11:55:00    2017-06-27 11:55:00
100887    32704    907    2017-06-27 07:19:00    2017-06-27 07:19:00
100888    32704    950    2017-06-27 12:48:00    2017-06-27 12:48:00
100889    32704    637    2017-06-27 23:09:00    2017-06-27 23:09:00
100890    32705    554    2017-06-27 22:50:00    2017-06-27 22:50:00
100891    32705    757    2017-06-27 23:19:00    2017-06-27 23:19:00
100892    32705    798    2017-06-27 17:16:00    2017-06-27 17:16:00
100893    32705    942    2017-06-27 12:21:00    2017-06-27 12:21:00
100894    32705    592    2017-06-27 03:57:00    2017-06-27 03:57:00
100895    32706    814    2017-06-27 18:45:00    2017-06-27 18:45:00
100896    32706    545    2017-06-27 03:12:00    2017-06-27 03:12:00
100897    32706    799    2017-06-27 09:28:00    2017-06-27 09:28:00
100898    32706    509    2017-06-27 08:55:00    2017-06-27 08:55:00
100899    32706    723    2017-06-27 08:04:00    2017-06-27 08:04:00
100900    32707    846    2017-06-27 20:40:00    2017-06-27 20:40:00
100901    32707    685    2017-06-27 10:49:00    2017-06-27 10:49:00
100902    32707    773    2017-06-27 16:12:00    2017-06-27 16:12:00
100903    32707    563    2017-06-27 19:04:00    2017-06-27 19:04:00
100904    32707    915    2017-06-27 23:24:00    2017-06-27 23:24:00
100905    32708    614    2017-06-27 12:56:00    2017-06-27 12:56:00
100906    32708    549    2017-06-27 23:44:00    2017-06-27 23:44:00
100907    32708    525    2017-06-27 16:45:00    2017-06-27 16:45:00
100908    32708    850    2017-06-27 16:59:00    2017-06-27 16:59:00
100909    32708    613    2017-06-27 06:05:00    2017-06-27 06:05:00
100910    32709    825    2017-06-27 19:18:00    2017-06-27 19:18:00
100911    32709    814    2017-06-27 02:28:00    2017-06-27 02:28:00
100912    32709    929    2017-06-27 06:03:00    2017-06-27 06:03:00
100913    32709    472    2017-06-27 02:00:00    2017-06-27 02:00:00
100914    32709    914    2017-06-27 15:09:00    2017-06-27 15:09:00
100915    32710    622    2017-06-28 11:43:00    2017-06-28 11:43:00
100916    32710    934    2017-06-28 03:13:00    2017-06-28 03:13:00
100917    32710    671    2017-06-28 20:27:00    2017-06-28 20:27:00
100918    32710    786    2017-06-28 08:39:00    2017-06-28 08:39:00
100919    32710    756    2017-06-28 20:56:00    2017-06-28 20:56:00
100920    32711    813    2017-06-28 22:13:00    2017-06-28 22:13:00
100921    32711    749    2017-06-28 02:00:00    2017-06-28 02:00:00
100922    32711    687    2017-06-28 07:04:00    2017-06-28 07:04:00
100923    32711    839    2017-06-28 05:00:00    2017-06-28 05:00:00
100924    32711    759    2017-06-28 17:06:00    2017-06-28 17:06:00
100925    32712    745    2017-06-28 02:50:00    2017-06-28 02:50:00
100926    32712    588    2017-06-28 12:52:00    2017-06-28 12:52:00
100927    32712    537    2017-06-28 11:32:00    2017-06-28 11:32:00
100928    32712    881    2017-06-28 15:02:00    2017-06-28 15:02:00
100929    32712    625    2017-06-28 14:08:00    2017-06-28 14:08:00
100930    32713    882    2017-06-28 21:29:00    2017-06-28 21:29:00
100931    32713    515    2017-06-28 09:25:00    2017-06-28 09:25:00
100932    32713    526    2017-06-28 14:13:00    2017-06-28 14:13:00
100933    32713    525    2017-06-28 10:34:00    2017-06-28 10:34:00
100934    32713    825    2017-06-28 14:40:00    2017-06-28 14:40:00
100935    32714    571    2017-06-28 05:09:00    2017-06-28 05:09:00
100936    32714    735    2017-06-28 19:05:00    2017-06-28 19:05:00
100937    32714    799    2017-06-28 01:46:00    2017-06-28 01:46:00
100938    32714    848    2017-06-28 16:10:00    2017-06-28 16:10:00
100939    32714    677    2017-06-28 12:15:00    2017-06-28 12:15:00
100940    32715    899    2017-06-28 03:31:00    2017-06-28 03:31:00
100941    32715    940    2017-06-28 11:24:00    2017-06-28 11:24:00
100942    32715    565    2017-06-28 09:48:00    2017-06-28 09:48:00
100943    32715    679    2017-06-28 17:21:00    2017-06-28 17:21:00
100944    32715    609    2017-06-28 22:57:00    2017-06-28 22:57:00
100945    32716    876    2017-06-28 21:06:00    2017-06-28 21:06:00
100946    32716    765    2017-06-28 16:29:00    2017-06-28 16:29:00
100947    32716    580    2017-06-28 14:33:00    2017-06-28 14:33:00
100948    32716    923    2017-06-28 04:34:00    2017-06-28 04:34:00
100949    32716    787    2017-06-28 09:04:00    2017-06-28 09:04:00
100950    32717    856    2017-06-28 23:37:00    2017-06-28 23:37:00
100951    32717    481    2017-06-28 22:29:00    2017-06-28 22:29:00
100952    32717    875    2017-06-28 19:54:00    2017-06-28 19:54:00
100953    32717    905    2017-06-28 08:31:00    2017-06-28 08:31:00
100954    32717    585    2017-06-28 06:43:00    2017-06-28 06:43:00
100955    32718    917    2017-06-28 06:12:00    2017-06-28 06:12:00
100956    32718    616    2017-06-28 20:04:00    2017-06-28 20:04:00
100957    32718    608    2017-06-28 01:56:00    2017-06-28 01:56:00
100958    32718    845    2017-06-28 15:42:00    2017-06-28 15:42:00
100959    32718    489    2017-06-28 16:20:00    2017-06-28 16:20:00
100960    32719    522    2017-06-28 22:10:00    2017-06-28 22:10:00
100961    32719    876    2017-06-28 16:11:00    2017-06-28 16:11:00
100962    32719    956    2017-06-28 09:17:00    2017-06-28 09:17:00
100963    32719    481    2017-06-28 12:52:00    2017-06-28 12:52:00
100964    32719    532    2017-06-28 18:28:00    2017-06-28 18:28:00
100965    32720    563    2017-06-28 04:10:00    2017-06-28 04:10:00
100966    32720    891    2017-06-28 07:58:00    2017-06-28 07:58:00
100967    32720    948    2017-06-28 11:05:00    2017-06-28 11:05:00
100968    32720    839    2017-06-28 22:18:00    2017-06-28 22:18:00
100969    32720    877    2017-06-28 08:07:00    2017-06-28 08:07:00
100970    32721    670    2017-06-28 05:29:00    2017-06-28 05:29:00
100971    32721    827    2017-06-28 17:10:00    2017-06-28 17:10:00
100972    32721    613    2017-06-28 06:27:00    2017-06-28 06:27:00
100973    32721    886    2017-06-28 03:20:00    2017-06-28 03:20:00
100974    32721    693    2017-06-28 03:35:00    2017-06-28 03:35:00
100975    32722    634    2017-06-28 23:45:00    2017-06-28 23:45:00
100976    32722    898    2017-06-28 06:26:00    2017-06-28 06:26:00
100977    32722    563    2017-06-28 15:59:00    2017-06-28 15:59:00
100978    32722    544    2017-06-28 04:59:00    2017-06-28 04:59:00
100979    32722    782    2017-06-28 14:26:00    2017-06-28 14:26:00
100980    32723    609    2017-06-28 09:10:00    2017-06-28 09:10:00
100981    32723    894    2017-06-28 15:43:00    2017-06-28 15:43:00
100982    32723    627    2017-06-28 03:52:00    2017-06-28 03:52:00
100983    32723    477    2017-06-28 23:42:00    2017-06-28 23:42:00
100984    32723    647    2017-06-28 18:39:00    2017-06-28 18:39:00
100985    32724    524    2017-06-28 02:24:00    2017-06-28 02:24:00
100986    32724    638    2017-06-28 12:30:00    2017-06-28 12:30:00
100987    32724    487    2017-06-28 17:23:00    2017-06-28 17:23:00
100988    32724    612    2017-06-28 17:14:00    2017-06-28 17:14:00
100989    32724    493    2017-06-28 11:51:00    2017-06-28 11:51:00
100990    32725    690    2017-06-28 17:27:00    2017-06-28 17:27:00
100991    32725    675    2017-06-28 22:02:00    2017-06-28 22:02:00
100992    32725    855    2017-06-28 21:34:00    2017-06-28 21:34:00
100993    32725    826    2017-06-28 18:03:00    2017-06-28 18:03:00
100994    32725    946    2017-06-28 03:57:00    2017-06-28 03:57:00
100995    32726    886    2017-06-28 19:59:00    2017-06-28 19:59:00
100996    32726    630    2017-06-28 08:52:00    2017-06-28 08:52:00
100997    32726    935    2017-06-28 23:05:00    2017-06-28 23:05:00
100998    32726    935    2017-06-28 23:06:00    2017-06-28 23:06:00
100999    32726    514    2017-06-28 17:12:00    2017-06-28 17:12:00
101000    32727    547    2017-06-28 17:43:00    2017-06-28 17:43:00
101001    32727    667    2017-06-28 07:45:00    2017-06-28 07:45:00
101002    32727    543    2017-06-28 04:25:00    2017-06-28 04:25:00
101003    32727    610    2017-06-28 20:00:00    2017-06-28 20:00:00
101004    32727    552    2017-06-28 14:35:00    2017-06-28 14:35:00
101005    32728    614    2017-06-28 07:50:00    2017-06-28 07:50:00
101006    32728    858    2017-06-28 14:27:00    2017-06-28 14:27:00
101007    32728    666    2017-06-28 20:20:00    2017-06-28 20:20:00
101008    32728    544    2017-06-28 17:59:00    2017-06-28 17:59:00
101009    32728    670    2017-06-28 21:14:00    2017-06-28 21:14:00
101010    32729    581    2017-06-28 13:15:00    2017-06-28 13:15:00
101011    32729    644    2017-06-28 21:49:00    2017-06-28 21:49:00
101012    32729    678    2017-06-28 01:17:00    2017-06-28 01:17:00
101013    32729    508    2017-06-28 14:10:00    2017-06-28 14:10:00
101014    32729    813    2017-06-28 05:48:00    2017-06-28 05:48:00
101015    32730    960    2017-06-28 07:51:00    2017-06-28 07:51:00
101016    32730    943    2017-06-28 16:20:00    2017-06-28 16:20:00
101017    32730    737    2017-06-28 11:10:00    2017-06-28 11:10:00
101018    32730    483    2017-06-28 07:06:00    2017-06-28 07:06:00
101019    32730    781    2017-06-28 01:39:00    2017-06-28 01:39:00
101020    32731    569    2017-06-28 22:46:00    2017-06-28 22:46:00
101021    32731    914    2017-06-28 11:05:00    2017-06-28 11:05:00
101022    32731    810    2017-06-28 13:19:00    2017-06-28 13:19:00
101023    32731    660    2017-06-28 15:19:00    2017-06-28 15:19:00
101024    32731    642    2017-06-28 23:32:00    2017-06-28 23:32:00
101025    32732    836    2017-06-28 21:07:00    2017-06-28 21:07:00
101026    32732    571    2017-06-28 03:43:00    2017-06-28 03:43:00
101027    32732    944    2017-06-28 17:37:00    2017-06-28 17:37:00
101028    32732    470    2017-06-28 22:47:00    2017-06-28 22:47:00
101029    32732    526    2017-06-28 02:49:00    2017-06-28 02:49:00
101030    32733    678    2017-06-28 21:34:00    2017-06-28 21:34:00
101031    32733    960    2017-06-28 20:44:00    2017-06-28 20:44:00
101032    32733    489    2017-06-28 23:40:00    2017-06-28 23:40:00
101033    32733    779    2017-06-28 02:45:00    2017-06-28 02:45:00
101034    32733    657    2017-06-28 16:16:00    2017-06-28 16:16:00
101035    32734    820    2017-06-28 05:44:00    2017-06-28 05:44:00
101036    32734    665    2017-06-28 23:32:00    2017-06-28 23:32:00
101037    32734    549    2017-06-28 15:38:00    2017-06-28 15:38:00
101038    32734    652    2017-06-28 19:15:00    2017-06-28 19:15:00
101039    32734    583    2017-06-28 11:02:00    2017-06-28 11:02:00
101040    32735    570    2017-06-28 01:04:00    2017-06-28 01:04:00
101041    32735    715    2017-06-28 03:13:00    2017-06-28 03:13:00
101042    32735    812    2017-06-28 12:58:00    2017-06-28 12:58:00
101043    32735    756    2017-06-28 22:12:00    2017-06-28 22:12:00
101044    32735    571    2017-06-28 04:42:00    2017-06-28 04:42:00
101045    32736    911    2017-06-28 17:19:00    2017-06-28 17:19:00
101046    32736    928    2017-06-28 10:38:00    2017-06-28 10:38:00
101047    32736    484    2017-06-28 13:08:00    2017-06-28 13:08:00
101048    32736    469    2017-06-28 06:20:00    2017-06-28 06:20:00
101049    32736    637    2017-06-28 12:31:00    2017-06-28 12:31:00
101050    32737    749    2017-06-28 10:42:00    2017-06-28 10:42:00
101051    32737    510    2017-06-28 22:10:00    2017-06-28 22:10:00
101052    32737    537    2017-06-28 21:56:00    2017-06-28 21:56:00
101053    32737    940    2017-06-28 21:57:00    2017-06-28 21:57:00
101054    32737    587    2017-06-28 20:45:00    2017-06-28 20:45:00
101055    32738    723    2017-06-29 18:41:00    2017-06-29 18:41:00
101056    32738    641    2017-06-29 07:03:00    2017-06-29 07:03:00
101057    32738    553    2017-06-29 12:08:00    2017-06-29 12:08:00
101058    32738    795    2017-06-29 15:10:00    2017-06-29 15:10:00
101059    32738    633    2017-06-29 17:55:00    2017-06-29 17:55:00
101060    32739    928    2017-06-29 23:14:00    2017-06-29 23:14:00
101061    32739    931    2017-06-29 10:21:00    2017-06-29 10:21:00
101062    32739    600    2017-06-29 18:54:00    2017-06-29 18:54:00
101063    32739    711    2017-06-29 16:42:00    2017-06-29 16:42:00
101064    32739    471    2017-06-29 09:41:00    2017-06-29 09:41:00
101065    32740    737    2017-06-29 16:41:00    2017-06-29 16:41:00
101066    32740    594    2017-06-29 16:14:00    2017-06-29 16:14:00
101067    32740    559    2017-06-29 07:27:00    2017-06-29 07:27:00
101068    32740    958    2017-06-29 19:56:00    2017-06-29 19:56:00
101069    32740    847    2017-06-29 03:13:00    2017-06-29 03:13:00
101070    32741    698    2017-06-29 02:33:00    2017-06-29 02:33:00
101071    32741    870    2017-06-29 03:56:00    2017-06-29 03:56:00
101072    32741    884    2017-06-29 15:33:00    2017-06-29 15:33:00
101073    32741    704    2017-06-29 22:16:00    2017-06-29 22:16:00
101074    32741    657    2017-06-29 04:50:00    2017-06-29 04:50:00
101075    32742    832    2017-06-29 06:40:00    2017-06-29 06:40:00
101076    32742    857    2017-06-29 12:41:00    2017-06-29 12:41:00
101077    32742    800    2017-06-29 09:47:00    2017-06-29 09:47:00
101078    32742    484    2017-06-29 18:36:00    2017-06-29 18:36:00
101079    32742    491    2017-06-29 08:59:00    2017-06-29 08:59:00
101080    32743    814    2017-06-29 10:46:00    2017-06-29 10:46:00
101081    32743    839    2017-06-29 11:41:00    2017-06-29 11:41:00
101082    32743    756    2017-06-29 06:01:00    2017-06-29 06:01:00
101083    32743    771    2017-06-29 01:00:00    2017-06-29 01:00:00
101084    32743    564    2017-06-29 10:09:00    2017-06-29 10:09:00
101085    32744    511    2017-06-29 06:40:00    2017-06-29 06:40:00
101086    32744    899    2017-06-29 07:39:00    2017-06-29 07:39:00
101087    32744    523    2017-06-29 21:50:00    2017-06-29 21:50:00
101088    32744    471    2017-06-29 23:01:00    2017-06-29 23:01:00
101089    32744    906    2017-06-29 23:13:00    2017-06-29 23:13:00
101090    32745    774    2017-06-29 02:48:00    2017-06-29 02:48:00
101091    32745    713    2017-06-29 10:58:00    2017-06-29 10:58:00
101092    32745    600    2017-06-29 03:19:00    2017-06-29 03:19:00
101093    32745    493    2017-06-29 07:35:00    2017-06-29 07:35:00
101094    32745    485    2017-06-29 10:55:00    2017-06-29 10:55:00
101095    32746    791    2017-06-29 22:58:00    2017-06-29 22:58:00
101096    32746    821    2017-06-29 12:02:00    2017-06-29 12:02:00
101097    32746    512    2017-06-29 20:37:00    2017-06-29 20:37:00
101098    32746    921    2017-06-29 19:27:00    2017-06-29 19:27:00
101099    32746    481    2017-06-29 03:41:00    2017-06-29 03:41:00
101100    32747    923    2017-06-29 02:00:00    2017-06-29 02:00:00
101101    32747    870    2017-06-29 02:34:00    2017-06-29 02:34:00
101102    32747    693    2017-06-29 14:21:00    2017-06-29 14:21:00
101103    32747    473    2017-06-29 08:20:00    2017-06-29 08:20:00
101104    32747    559    2017-06-29 12:50:00    2017-06-29 12:50:00
101105    32748    846    2017-06-29 15:56:00    2017-06-29 15:56:00
101106    32748    665    2017-06-29 18:27:00    2017-06-29 18:27:00
101107    32748    611    2017-06-29 20:45:00    2017-06-29 20:45:00
101108    32748    890    2017-06-29 12:08:00    2017-06-29 12:08:00
101109    32748    740    2017-06-29 12:45:00    2017-06-29 12:45:00
101110    32749    578    2017-06-29 07:04:00    2017-06-29 07:04:00
101111    32749    774    2017-06-29 22:07:00    2017-06-29 22:07:00
101112    32749    544    2017-06-29 05:16:00    2017-06-29 05:16:00
101113    32749    767    2017-06-29 18:01:00    2017-06-29 18:01:00
101114    32749    497    2017-06-29 15:05:00    2017-06-29 15:05:00
101115    32750    632    2017-06-29 14:24:00    2017-06-29 14:24:00
101116    32750    820    2017-06-29 22:09:00    2017-06-29 22:09:00
101117    32750    796    2017-06-29 17:43:00    2017-06-29 17:43:00
101118    32750    656    2017-06-29 06:06:00    2017-06-29 06:06:00
101119    32750    632    2017-06-29 09:50:00    2017-06-29 09:50:00
101120    32751    753    2017-06-29 05:49:00    2017-06-29 05:49:00
101121    32751    683    2017-06-29 02:43:00    2017-06-29 02:43:00
101122    32751    635    2017-06-29 23:43:00    2017-06-29 23:43:00
101123    32751    650    2017-06-29 08:51:00    2017-06-29 08:51:00
101124    32751    738    2017-06-29 15:20:00    2017-06-29 15:20:00
101125    32752    571    2017-06-29 06:40:00    2017-06-29 06:40:00
101126    32752    895    2017-06-29 07:01:00    2017-06-29 07:01:00
101127    32752    956    2017-06-29 15:09:00    2017-06-29 15:09:00
101128    32752    876    2017-06-29 19:02:00    2017-06-29 19:02:00
101129    32752    786    2017-06-29 14:52:00    2017-06-29 14:52:00
101130    32753    646    2017-06-29 23:48:00    2017-06-29 23:48:00
101131    32753    743    2017-06-29 07:53:00    2017-06-29 07:53:00
101132    32753    930    2017-06-29 13:37:00    2017-06-29 13:37:00
101133    32753    650    2017-06-29 19:11:00    2017-06-29 19:11:00
101134    32753    655    2017-06-29 21:30:00    2017-06-29 21:30:00
101135    32754    683    2017-06-29 08:33:00    2017-06-29 08:33:00
101136    32754    536    2017-06-29 04:00:00    2017-06-29 04:00:00
101137    32754    703    2017-06-29 14:54:00    2017-06-29 14:54:00
101138    32754    911    2017-06-29 12:07:00    2017-06-29 12:07:00
101139    32754    808    2017-06-29 14:06:00    2017-06-29 14:06:00
101140    32755    898    2017-06-29 18:30:00    2017-06-29 18:30:00
101141    32755    764    2017-06-29 02:39:00    2017-06-29 02:39:00
101142    32755    463    2017-06-29 14:11:00    2017-06-29 14:11:00
101143    32755    773    2017-06-29 15:00:00    2017-06-29 15:00:00
101144    32755    773    2017-06-29 02:19:00    2017-06-29 02:19:00
101145    32756    832    2017-06-29 17:51:00    2017-06-29 17:51:00
101146    32756    604    2017-06-29 04:25:00    2017-06-29 04:25:00
101147    32756    749    2017-06-29 11:52:00    2017-06-29 11:52:00
101148    32756    781    2017-06-29 11:16:00    2017-06-29 11:16:00
101149    32756    762    2017-06-29 13:56:00    2017-06-29 13:56:00
101150    32757    912    2017-06-29 10:27:00    2017-06-29 10:27:00
101151    32757    957    2017-06-29 17:01:00    2017-06-29 17:01:00
101152    32757    953    2017-06-29 22:00:00    2017-06-29 22:00:00
101153    32757    824    2017-06-29 20:13:00    2017-06-29 20:13:00
101154    32757    806    2017-06-29 20:02:00    2017-06-29 20:02:00
101155    32758    652    2017-06-29 15:18:00    2017-06-29 15:18:00
101156    32758    493    2017-06-29 22:59:00    2017-06-29 22:59:00
101157    32758    544    2017-06-29 17:22:00    2017-06-29 17:22:00
101158    32758    842    2017-06-29 13:54:00    2017-06-29 13:54:00
101159    32758    617    2017-06-29 18:27:00    2017-06-29 18:27:00
101160    32759    758    2017-06-29 18:41:00    2017-06-29 18:41:00
101161    32759    810    2017-06-29 17:37:00    2017-06-29 17:37:00
101162    32759    791    2017-06-29 13:00:00    2017-06-29 13:00:00
101163    32759    549    2017-06-29 02:36:00    2017-06-29 02:36:00
101164    32759    916    2017-06-29 19:29:00    2017-06-29 19:29:00
101165    32760    930    2017-06-29 22:21:00    2017-06-29 22:21:00
101166    32760    792    2017-06-29 15:44:00    2017-06-29 15:44:00
101167    32760    667    2017-06-29 17:47:00    2017-06-29 17:47:00
101168    32760    484    2017-06-29 06:21:00    2017-06-29 06:21:00
101169    32760    820    2017-06-29 16:02:00    2017-06-29 16:02:00
101170    32761    698    2017-06-29 07:29:00    2017-06-29 07:29:00
101171    32761    620    2017-06-29 14:24:00    2017-06-29 14:24:00
101172    32761    644    2017-06-29 10:51:00    2017-06-29 10:51:00
101173    32761    820    2017-06-29 08:44:00    2017-06-29 08:44:00
101174    32761    557    2017-06-29 12:49:00    2017-06-29 12:49:00
101175    32762    766    2017-06-29 18:37:00    2017-06-29 18:37:00
101176    32762    469    2017-06-29 08:22:00    2017-06-29 08:22:00
101177    32762    654    2017-06-29 22:36:00    2017-06-29 22:36:00
101178    32762    925    2017-06-29 11:47:00    2017-06-29 11:47:00
101179    32762    770    2017-06-29 05:16:00    2017-06-29 05:16:00
101180    32763    606    2017-06-29 07:39:00    2017-06-29 07:39:00
101181    32763    763    2017-06-29 08:56:00    2017-06-29 08:56:00
101182    32763    825    2017-06-29 21:31:00    2017-06-29 21:31:00
101183    32763    571    2017-06-29 15:43:00    2017-06-29 15:43:00
101184    32763    931    2017-06-29 09:06:00    2017-06-29 09:06:00
101185    32764    859    2017-06-29 02:56:00    2017-06-29 02:56:00
101186    32764    860    2017-06-29 20:48:00    2017-06-29 20:48:00
101187    32764    830    2017-06-29 09:00:00    2017-06-29 09:00:00
101188    32764    595    2017-06-29 18:26:00    2017-06-29 18:26:00
101189    32764    787    2017-06-29 15:00:00    2017-06-29 15:00:00
101190    32765    531    2017-06-29 17:29:00    2017-06-29 17:29:00
101191    32765    723    2017-06-29 13:50:00    2017-06-29 13:50:00
101192    32765    884    2017-06-29 02:12:00    2017-06-29 02:12:00
101193    32765    927    2017-06-29 02:53:00    2017-06-29 02:53:00
101194    32765    830    2017-06-29 07:54:00    2017-06-29 07:54:00
101195    32766    758    2017-06-29 08:26:00    2017-06-29 08:26:00
101196    32766    889    2017-06-29 13:47:00    2017-06-29 13:47:00
101197    32766    817    2017-06-29 18:40:00    2017-06-29 18:40:00
101198    32766    828    2017-06-29 16:00:00    2017-06-29 16:00:00
101199    32766    484    2017-06-29 04:35:00    2017-06-29 04:35:00
101200    32767    697    2017-06-29 11:33:00    2017-06-29 11:33:00
101201    32767    588    2017-06-29 07:46:00    2017-06-29 07:46:00
101202    32767    837    2017-06-29 09:52:00    2017-06-29 09:52:00
101203    32767    482    2017-06-29 02:19:00    2017-06-29 02:19:00
101204    32767    932    2017-06-29 18:19:00    2017-06-29 18:19:00
101205    32768    554    2017-06-29 04:37:00    2017-06-29 04:37:00
101206    32768    796    2017-06-29 16:56:00    2017-06-29 16:56:00
101207    32768    727    2017-06-29 14:29:00    2017-06-29 14:29:00
101208    32768    646    2017-06-29 04:09:00    2017-06-29 04:09:00
101209    32768    846    2017-06-29 04:27:00    2017-06-29 04:27:00
101210    32769    893    2017-06-29 22:08:00    2017-06-29 22:08:00
101211    32769    919    2017-06-29 07:02:00    2017-06-29 07:02:00
101212    32769    907    2017-06-29 02:07:00    2017-06-29 02:07:00
101213    32769    630    2017-06-29 23:24:00    2017-06-29 23:24:00
101214    32769    500    2017-06-29 03:43:00    2017-06-29 03:43:00
101215    32770    562    2017-06-29 06:46:00    2017-06-29 06:46:00
101216    32770    547    2017-06-29 10:34:00    2017-06-29 10:34:00
101217    32770    638    2017-06-29 02:09:00    2017-06-29 02:09:00
101218    32770    685    2017-06-29 04:00:00    2017-06-29 04:00:00
101219    32770    781    2017-06-29 08:26:00    2017-06-29 08:26:00
101220    32771    490    2017-06-29 05:16:00    2017-06-29 05:16:00
101221    32771    713    2017-06-29 07:09:00    2017-06-29 07:09:00
101222    32771    776    2017-06-29 21:23:00    2017-06-29 21:23:00
101223    32771    887    2017-06-29 20:06:00    2017-06-29 20:06:00
101224    32771    726    2017-06-29 10:24:00    2017-06-29 10:24:00
101225    32772    890    2017-06-29 02:18:00    2017-06-29 02:18:00
101226    32772    869    2017-06-29 10:20:00    2017-06-29 10:20:00
101227    32772    538    2017-06-29 16:27:00    2017-06-29 16:27:00
101228    32772    607    2017-06-29 20:58:00    2017-06-29 20:58:00
101229    32772    494    2017-06-29 13:41:00    2017-06-29 13:41:00
101230    32773    529    2017-06-29 21:55:00    2017-06-29 21:55:00
101231    32773    735    2017-06-29 14:59:00    2017-06-29 14:59:00
101232    32773    639    2017-06-29 10:24:00    2017-06-29 10:24:00
101233    32773    750    2017-06-29 10:22:00    2017-06-29 10:22:00
101234    32773    781    2017-06-29 16:53:00    2017-06-29 16:53:00
101235    32774    508    2017-06-29 16:16:00    2017-06-29 16:16:00
101236    32774    653    2017-06-29 15:10:00    2017-06-29 15:10:00
101237    32774    800    2017-06-29 05:01:00    2017-06-29 05:01:00
101238    32774    703    2017-06-29 15:00:00    2017-06-29 15:00:00
101239    32774    872    2017-06-29 15:05:00    2017-06-29 15:05:00
101240    32775    745    2017-06-29 12:14:00    2017-06-29 12:14:00
101241    32775    753    2017-06-29 04:47:00    2017-06-29 04:47:00
101242    32775    718    2017-06-29 11:00:00    2017-06-29 11:00:00
101243    32775    789    2017-06-29 08:41:00    2017-06-29 08:41:00
101244    32775    811    2017-06-29 11:28:00    2017-06-29 11:28:00
101245    32776    621    2017-06-29 21:47:00    2017-06-29 21:47:00
101246    32776    606    2017-06-29 23:23:00    2017-06-29 23:23:00
101247    32776    694    2017-06-29 16:07:00    2017-06-29 16:07:00
101248    32776    465    2017-06-29 06:10:00    2017-06-29 06:10:00
101249    32776    936    2017-06-29 12:26:00    2017-06-29 12:26:00
101250    32777    545    2017-06-29 22:44:00    2017-06-29 22:44:00
101251    32777    844    2017-06-29 09:37:00    2017-06-29 09:37:00
101252    32777    673    2017-06-29 04:30:00    2017-06-29 04:30:00
101253    32777    881    2017-06-29 17:09:00    2017-06-29 17:09:00
101254    32777    786    2017-06-29 15:23:00    2017-06-29 15:23:00
101255    32778    544    2017-06-29 04:27:00    2017-06-29 04:27:00
101256    32778    801    2017-06-29 12:17:00    2017-06-29 12:17:00
101257    32778    864    2017-06-29 09:32:00    2017-06-29 09:32:00
101258    32778    914    2017-06-29 08:05:00    2017-06-29 08:05:00
101259    32778    739    2017-06-29 04:18:00    2017-06-29 04:18:00
101260    32779    604    2017-06-29 07:18:00    2017-06-29 07:18:00
101261    32779    559    2017-06-29 03:41:00    2017-06-29 03:41:00
101262    32779    495    2017-06-29 11:53:00    2017-06-29 11:53:00
101263    32779    751    2017-06-29 06:46:00    2017-06-29 06:46:00
101264    32779    504    2017-06-29 18:09:00    2017-06-29 18:09:00
101265    32780    804    2017-06-29 18:07:00    2017-06-29 18:07:00
101266    32780    843    2017-06-29 19:03:00    2017-06-29 19:03:00
101267    32780    703    2017-06-29 12:44:00    2017-06-29 12:44:00
101268    32780    783    2017-06-29 13:38:00    2017-06-29 13:38:00
101269    32780    723    2017-06-29 14:09:00    2017-06-29 14:09:00
101270    32781    893    2017-06-29 11:42:00    2017-06-29 11:42:00
101271    32781    617    2017-06-29 20:54:00    2017-06-29 20:54:00
101272    32781    683    2017-06-29 08:20:00    2017-06-29 08:20:00
101273    32781    867    2017-06-29 03:29:00    2017-06-29 03:29:00
101274    32781    799    2017-06-29 08:53:00    2017-06-29 08:53:00
101275    32782    657    2017-06-29 01:35:00    2017-06-29 01:35:00
101276    32782    932    2017-06-29 04:38:00    2017-06-29 04:38:00
101277    32782    491    2017-06-29 01:30:00    2017-06-29 01:30:00
101278    32782    529    2017-06-29 18:11:00    2017-06-29 18:11:00
101279    32782    617    2017-06-29 13:58:00    2017-06-29 13:58:00
101280    32783    654    2017-06-29 05:18:00    2017-06-29 05:18:00
101281    32783    748    2017-06-29 15:48:00    2017-06-29 15:48:00
101282    32783    855    2017-06-29 10:55:00    2017-06-29 10:55:00
101283    32783    898    2017-06-29 12:44:00    2017-06-29 12:44:00
101284    32783    907    2017-06-29 19:03:00    2017-06-29 19:03:00
101285    32784    862    2017-06-29 20:44:00    2017-06-29 20:44:00
101286    32784    517    2017-06-29 10:32:00    2017-06-29 10:32:00
101287    32784    510    2017-06-29 15:36:00    2017-06-29 15:36:00
101288    32784    693    2017-06-29 04:21:00    2017-06-29 04:21:00
101289    32784    922    2017-06-29 05:40:00    2017-06-29 05:40:00
101290    32785    609    2017-06-29 23:14:00    2017-06-29 23:14:00
101291    32785    927    2017-06-29 01:27:00    2017-06-29 01:27:00
101292    32785    493    2017-06-29 10:00:00    2017-06-29 10:00:00
101293    32785    468    2017-06-29 09:30:00    2017-06-29 09:30:00
101294    32785    851    2017-06-29 01:18:00    2017-06-29 01:18:00
101295    32786    546    2017-06-29 04:11:00    2017-06-29 04:11:00
101296    32786    618    2017-06-29 18:45:00    2017-06-29 18:45:00
101297    32786    610    2017-06-29 16:11:00    2017-06-29 16:11:00
101298    32786    663    2017-06-29 09:02:00    2017-06-29 09:02:00
101299    32786    562    2017-06-29 04:08:00    2017-06-29 04:08:00
101300    32787    921    2017-06-29 01:43:00    2017-06-29 01:43:00
101301    32787    836    2017-06-29 04:03:00    2017-06-29 04:03:00
101302    32787    871    2017-06-29 13:58:00    2017-06-29 13:58:00
101303    32787    884    2017-06-29 05:38:00    2017-06-29 05:38:00
101304    32787    524    2017-06-29 16:21:00    2017-06-29 16:21:00
101305    32788    623    2017-06-29 17:16:00    2017-06-29 17:16:00
101306    32788    732    2017-06-29 01:49:00    2017-06-29 01:49:00
101307    32788    573    2017-06-29 11:46:00    2017-06-29 11:46:00
101308    32788    587    2017-06-29 09:24:00    2017-06-29 09:24:00
101309    32788    720    2017-06-29 01:57:00    2017-06-29 01:57:00
101310    32789    751    2017-06-29 01:04:00    2017-06-29 01:04:00
101311    32789    654    2017-06-29 11:28:00    2017-06-29 11:28:00
101312    32789    929    2017-06-29 04:58:00    2017-06-29 04:58:00
101313    32789    890    2017-06-29 19:16:00    2017-06-29 19:16:00
101314    32789    694    2017-06-29 03:22:00    2017-06-29 03:22:00
101315    32790    610    2017-06-29 04:11:00    2017-06-29 04:11:00
101316    32790    606    2017-06-29 08:51:00    2017-06-29 08:51:00
101317    32790    764    2017-06-29 05:12:00    2017-06-29 05:12:00
101318    32790    688    2017-06-29 12:57:00    2017-06-29 12:57:00
101319    32790    708    2017-06-29 21:10:00    2017-06-29 21:10:00
101320    32791    919    2017-06-29 12:28:00    2017-06-29 12:28:00
101321    32791    534    2017-06-29 02:07:00    2017-06-29 02:07:00
101322    32791    725    2017-06-29 09:23:00    2017-06-29 09:23:00
101323    32791    916    2017-06-29 14:39:00    2017-06-29 14:39:00
101324    32791    942    2017-06-29 23:41:00    2017-06-29 23:41:00
101325    32792    659    2017-06-29 05:17:00    2017-06-29 05:17:00
101326    32792    876    2017-06-29 19:48:00    2017-06-29 19:48:00
101327    32792    754    2017-06-29 03:16:00    2017-06-29 03:16:00
101328    32792    641    2017-06-29 16:21:00    2017-06-29 16:21:00
101329    32792    958    2017-06-29 15:26:00    2017-06-29 15:26:00
101330    32793    627    2017-06-29 11:45:00    2017-06-29 11:45:00
101331    32793    646    2017-06-29 09:09:00    2017-06-29 09:09:00
101332    32793    820    2017-06-29 12:32:00    2017-06-29 12:32:00
101333    32793    875    2017-06-29 07:37:00    2017-06-29 07:37:00
101334    32793    727    2017-06-29 14:52:00    2017-06-29 14:52:00
101335    32794    840    2017-06-29 03:55:00    2017-06-29 03:55:00
101336    32794    688    2017-06-29 14:06:00    2017-06-29 14:06:00
101337    32794    898    2017-06-29 10:44:00    2017-06-29 10:44:00
101338    32794    573    2017-06-29 01:01:00    2017-06-29 01:01:00
101339    32794    646    2017-06-29 11:03:00    2017-06-29 11:03:00
101340    32795    915    2017-06-29 08:05:00    2017-06-29 08:05:00
101341    32795    610    2017-06-29 16:47:00    2017-06-29 16:47:00
101342    32795    935    2017-06-29 22:04:00    2017-06-29 22:04:00
101343    32795    947    2017-06-29 09:29:00    2017-06-29 09:29:00
101344    32795    814    2017-06-29 14:04:00    2017-06-29 14:04:00
101345    32796    633    2017-06-29 10:48:00    2017-06-29 10:48:00
101346    32796    751    2017-06-29 23:44:00    2017-06-29 23:44:00
101347    32796    901    2017-06-29 04:55:00    2017-06-29 04:55:00
101348    32796    886    2017-06-29 23:56:00    2017-06-29 23:56:00
101349    32796    757    2017-06-29 16:30:00    2017-06-29 16:30:00
101350    32797    702    2017-06-29 14:02:00    2017-06-29 14:02:00
101351    32797    906    2017-06-29 23:22:00    2017-06-29 23:22:00
101352    32797    597    2017-06-29 13:07:00    2017-06-29 13:07:00
101353    32797    735    2017-06-29 14:44:00    2017-06-29 14:44:00
101354    32797    818    2017-06-29 22:33:00    2017-06-29 22:33:00
101355    32798    910    2017-06-29 19:32:00    2017-06-29 19:32:00
101356    32798    794    2017-06-29 08:12:00    2017-06-29 08:12:00
101357    32798    546    2017-06-29 23:30:00    2017-06-29 23:30:00
101358    32798    852    2017-06-29 06:35:00    2017-06-29 06:35:00
101359    32798    595    2017-06-29 15:12:00    2017-06-29 15:12:00
101360    32799    788    2017-06-29 15:16:00    2017-06-29 15:16:00
101361    32799    520    2017-06-29 01:46:00    2017-06-29 01:46:00
101362    32799    516    2017-06-29 09:48:00    2017-06-29 09:48:00
101363    32799    930    2017-06-29 19:11:00    2017-06-29 19:11:00
101364    32799    879    2017-06-29 15:11:00    2017-06-29 15:11:00
101365    32800    612    2017-06-29 12:39:00    2017-06-29 12:39:00
101366    32800    600    2017-06-29 19:54:00    2017-06-29 19:54:00
101367    32800    540    2017-06-29 11:50:00    2017-06-29 11:50:00
101368    32800    691    2017-06-29 19:47:00    2017-06-29 19:47:00
101369    32800    614    2017-06-29 21:23:00    2017-06-29 21:23:00
101370    32801    517    2017-06-29 04:59:00    2017-06-29 04:59:00
101371    32801    859    2017-06-29 23:10:00    2017-06-29 23:10:00
101372    32801    760    2017-06-29 06:55:00    2017-06-29 06:55:00
101373    32801    829    2017-06-29 02:43:00    2017-06-29 02:43:00
101374    32801    567    2017-06-29 09:52:00    2017-06-29 09:52:00
101375    32802    694    2017-06-29 17:36:00    2017-06-29 17:36:00
101376    32802    944    2017-06-29 04:07:00    2017-06-29 04:07:00
101377    32802    829    2017-06-29 21:48:00    2017-06-29 21:48:00
101378    32802    517    2017-06-29 21:24:00    2017-06-29 21:24:00
101379    32802    502    2017-06-29 02:12:00    2017-06-29 02:12:00
101380    32803    873    2017-06-29 04:46:00    2017-06-29 04:46:00
101381    32803    819    2017-06-29 19:53:00    2017-06-29 19:53:00
101382    32803    729    2017-06-29 08:19:00    2017-06-29 08:19:00
101383    32803    924    2017-06-29 09:58:00    2017-06-29 09:58:00
101384    32803    612    2017-06-29 02:13:00    2017-06-29 02:13:00
101385    32804    479    2017-06-29 15:11:00    2017-06-29 15:11:00
101386    32804    784    2017-06-29 07:35:00    2017-06-29 07:35:00
101387    32804    464    2017-06-29 12:52:00    2017-06-29 12:52:00
101388    32804    955    2017-06-29 02:28:00    2017-06-29 02:28:00
101389    32804    770    2017-06-29 20:35:00    2017-06-29 20:35:00
101390    32805    473    2017-06-29 05:04:00    2017-06-29 05:04:00
101391    32805    867    2017-06-29 11:41:00    2017-06-29 11:41:00
101392    32805    581    2017-06-29 22:45:00    2017-06-29 22:45:00
101393    32805    726    2017-06-29 17:06:00    2017-06-29 17:06:00
101394    32805    537    2017-06-29 01:30:00    2017-06-29 01:30:00
101395    32806    897    2017-06-29 06:58:00    2017-06-29 06:58:00
101396    32806    515    2017-06-29 13:49:00    2017-06-29 13:49:00
101397    32806    640    2017-06-29 01:37:00    2017-06-29 01:37:00
101398    32806    908    2017-06-29 03:25:00    2017-06-29 03:25:00
101399    32806    956    2017-06-29 02:34:00    2017-06-29 02:34:00
101400    32807    812    2017-06-29 12:09:00    2017-06-29 12:09:00
101401    32807    652    2017-06-29 02:41:00    2017-06-29 02:41:00
101402    32807    799    2017-06-29 04:27:00    2017-06-29 04:27:00
101403    32807    775    2017-06-29 19:54:00    2017-06-29 19:54:00
101404    32807    790    2017-06-29 18:00:00    2017-06-29 18:00:00
101405    32808    945    2017-06-29 15:46:00    2017-06-29 15:46:00
101406    32808    959    2017-06-29 12:52:00    2017-06-29 12:52:00
101407    32808    885    2017-06-29 22:02:00    2017-06-29 22:02:00
101408    32808    582    2017-06-29 04:20:00    2017-06-29 04:20:00
101409    32808    612    2017-06-29 18:24:00    2017-06-29 18:24:00
101410    32809    858    2017-06-29 15:33:00    2017-06-29 15:33:00
101411    32809    813    2017-06-29 13:27:00    2017-06-29 13:27:00
101412    32809    838    2017-06-29 13:40:00    2017-06-29 13:40:00
101413    32809    754    2017-06-29 10:11:00    2017-06-29 10:11:00
101414    32809    463    2017-06-29 02:36:00    2017-06-29 02:36:00
101415    32810    563    2017-06-29 23:37:00    2017-06-29 23:37:00
101416    32810    614    2017-06-29 03:04:00    2017-06-29 03:04:00
101417    32810    637    2017-06-29 12:08:00    2017-06-29 12:08:00
101418    32810    689    2017-06-29 17:35:00    2017-06-29 17:35:00
101419    32810    655    2017-06-29 15:24:00    2017-06-29 15:24:00
101420    32811    523    2017-06-29 20:59:00    2017-06-29 20:59:00
101421    32811    554    2017-06-29 12:56:00    2017-06-29 12:56:00
101422    32811    785    2017-06-29 02:06:00    2017-06-29 02:06:00
101423    32811    880    2017-06-29 22:00:00    2017-06-29 22:00:00
101424    32811    657    2017-06-29 23:18:00    2017-06-29 23:18:00
101425    32812    744    2017-06-29 11:18:00    2017-06-29 11:18:00
101426    32812    936    2017-06-29 13:20:00    2017-06-29 13:20:00
101427    32812    643    2017-06-29 10:37:00    2017-06-29 10:37:00
101428    32812    707    2017-06-29 11:14:00    2017-06-29 11:14:00
101429    32812    808    2017-06-29 11:54:00    2017-06-29 11:54:00
101430    32813    728    2017-06-29 11:31:00    2017-06-29 11:31:00
101431    32813    800    2017-06-29 07:54:00    2017-06-29 07:54:00
101432    32813    677    2017-06-29 08:27:00    2017-06-29 08:27:00
101433    32813    797    2017-06-29 12:25:00    2017-06-29 12:25:00
101434    32813    463    2017-06-29 04:21:00    2017-06-29 04:21:00
101435    32814    583    2017-06-30 22:18:00    2017-06-30 22:18:00
101436    32814    486    2017-06-30 01:19:00    2017-06-30 01:19:00
101437    32814    845    2017-06-30 05:38:00    2017-06-30 05:38:00
101438    32814    552    2017-06-30 16:12:00    2017-06-30 16:12:00
101439    32814    736    2017-06-30 03:15:00    2017-06-30 03:15:00
101440    32815    869    2017-06-30 18:56:00    2017-06-30 18:56:00
101441    32815    776    2017-06-30 23:13:00    2017-06-30 23:13:00
101442    32815    756    2017-06-30 19:53:00    2017-06-30 19:53:00
101443    32815    568    2017-06-30 12:37:00    2017-06-30 12:37:00
101444    32815    621    2017-06-30 11:54:00    2017-06-30 11:54:00
101445    32816    521    2017-06-30 09:50:00    2017-06-30 09:50:00
101446    32816    736    2017-06-30 01:50:00    2017-06-30 01:50:00
101447    32816    574    2017-06-30 03:22:00    2017-06-30 03:22:00
101448    32816    866    2017-06-30 02:42:00    2017-06-30 02:42:00
101449    32816    713    2017-06-30 21:01:00    2017-06-30 21:01:00
101450    32817    463    2017-06-30 02:41:00    2017-06-30 02:41:00
101451    32817    845    2017-06-30 08:29:00    2017-06-30 08:29:00
101452    32817    480    2017-06-30 22:47:00    2017-06-30 22:47:00
101453    32817    500    2017-06-30 23:53:00    2017-06-30 23:53:00
101454    32817    811    2017-06-30 16:21:00    2017-06-30 16:21:00
101455    32818    765    2017-06-30 05:36:00    2017-06-30 05:36:00
101456    32818    548    2017-06-30 13:29:00    2017-06-30 13:29:00
101457    32818    675    2017-06-30 21:37:00    2017-06-30 21:37:00
101458    32818    751    2017-06-30 11:16:00    2017-06-30 11:16:00
101459    32818    557    2017-06-30 08:31:00    2017-06-30 08:31:00
101460    32819    561    2017-06-30 15:37:00    2017-06-30 15:37:00
101461    32819    820    2017-06-30 19:06:00    2017-06-30 19:06:00
101462    32819    959    2017-06-30 19:01:00    2017-06-30 19:01:00
101463    32819    768    2017-06-30 17:30:00    2017-06-30 17:30:00
101464    32819    480    2017-06-30 17:08:00    2017-06-30 17:08:00
101465    32820    850    2017-06-30 13:48:00    2017-06-30 13:48:00
101466    32820    671    2017-06-30 12:03:00    2017-06-30 12:03:00
101467    32820    913    2017-06-30 19:41:00    2017-06-30 19:41:00
101468    32820    886    2017-06-30 12:56:00    2017-06-30 12:56:00
101469    32820    802    2017-06-30 17:10:00    2017-06-30 17:10:00
101470    32821    783    2017-06-30 18:32:00    2017-06-30 18:32:00
101471    32821    799    2017-06-30 14:20:00    2017-06-30 14:20:00
101472    32821    859    2017-06-30 23:57:00    2017-06-30 23:57:00
101473    32821    891    2017-06-30 11:08:00    2017-06-30 11:08:00
101474    32821    735    2017-06-30 06:22:00    2017-06-30 06:22:00
101475    32822    466    2017-06-30 01:27:00    2017-06-30 01:27:00
101476    32822    531    2017-06-30 03:48:00    2017-06-30 03:48:00
101477    32822    688    2017-06-30 19:06:00    2017-06-30 19:06:00
101478    32822    630    2017-06-30 02:19:00    2017-06-30 02:19:00
101479    32822    824    2017-06-30 08:29:00    2017-06-30 08:29:00
101480    32823    663    2017-06-30 23:57:00    2017-06-30 23:57:00
101481    32823    685    2017-06-30 20:04:00    2017-06-30 20:04:00
101482    32823    652    2017-06-30 10:08:00    2017-06-30 10:08:00
101483    32823    543    2017-06-30 06:13:00    2017-06-30 06:13:00
101484    32823    793    2017-06-30 11:00:00    2017-06-30 11:00:00
101485    32824    696    2017-06-30 06:41:00    2017-06-30 06:41:00
101486    32824    525    2017-06-30 09:31:00    2017-06-30 09:31:00
101487    32824    710    2017-06-30 20:56:00    2017-06-30 20:56:00
101488    32824    641    2017-06-30 23:12:00    2017-06-30 23:12:00
101489    32824    659    2017-06-30 13:47:00    2017-06-30 13:47:00
101490    32825    840    2017-06-30 22:25:00    2017-06-30 22:25:00
101491    32825    752    2017-06-30 08:28:00    2017-06-30 08:28:00
101492    32825    837    2017-06-30 16:07:00    2017-06-30 16:07:00
101493    32825    537    2017-06-30 18:12:00    2017-06-30 18:12:00
101494    32825    951    2017-06-30 16:25:00    2017-06-30 16:25:00
101495    32826    661    2017-06-30 05:57:00    2017-06-30 05:57:00
101496    32826    686    2017-06-30 08:24:00    2017-06-30 08:24:00
101497    32826    746    2017-06-30 12:48:00    2017-06-30 12:48:00
101498    32826    895    2017-06-30 15:41:00    2017-06-30 15:41:00
101499    32826    660    2017-06-30 23:46:00    2017-06-30 23:46:00
101500    32827    933    2017-06-30 16:25:00    2017-06-30 16:25:00
101501    32827    840    2017-06-30 23:32:00    2017-06-30 23:32:00
101502    32827    825    2017-06-30 22:36:00    2017-06-30 22:36:00
101503    32827    735    2017-06-30 14:29:00    2017-06-30 14:29:00
101504    32827    894    2017-06-30 12:18:00    2017-06-30 12:18:00
101505    32828    547    2017-06-30 16:34:00    2017-06-30 16:34:00
101506    32828    748    2017-06-30 10:14:00    2017-06-30 10:14:00
101507    32828    727    2017-06-30 12:12:00    2017-06-30 12:12:00
101508    32828    867    2017-06-30 10:58:00    2017-06-30 10:58:00
101509    32828    711    2017-06-30 10:29:00    2017-06-30 10:29:00
101510    32829    919    2017-06-30 05:42:00    2017-06-30 05:42:00
101511    32829    807    2017-06-30 21:56:00    2017-06-30 21:56:00
101512    32829    632    2017-06-30 12:49:00    2017-06-30 12:49:00
101513    32829    545    2017-06-30 07:00:00    2017-06-30 07:00:00
101514    32829    576    2017-06-30 16:11:00    2017-06-30 16:11:00
101515    32830    936    2017-06-30 11:13:00    2017-06-30 11:13:00
101516    32830    561    2017-06-30 05:41:00    2017-06-30 05:41:00
101517    32830    899    2017-06-30 10:53:00    2017-06-30 10:53:00
101518    32830    666    2017-06-30 22:44:00    2017-06-30 22:44:00
101519    32830    491    2017-06-30 23:39:00    2017-06-30 23:39:00
101520    32831    498    2017-06-30 14:41:00    2017-06-30 14:41:00
101521    32831    690    2017-06-30 17:07:00    2017-06-30 17:07:00
101522    32831    930    2017-06-30 04:27:00    2017-06-30 04:27:00
101523    32831    892    2017-06-30 15:26:00    2017-06-30 15:26:00
101524    32831    618    2017-06-30 18:54:00    2017-06-30 18:54:00
101525    32832    508    2017-06-30 02:15:00    2017-06-30 02:15:00
101526    32832    732    2017-06-30 06:12:00    2017-06-30 06:12:00
101527    32832    535    2017-06-30 03:09:00    2017-06-30 03:09:00
101528    32832    631    2017-06-30 22:43:00    2017-06-30 22:43:00
101529    32832    949    2017-06-30 19:10:00    2017-06-30 19:10:00
101530    32833    786    2017-06-30 15:20:00    2017-06-30 15:20:00
101531    32833    611    2017-06-30 04:40:00    2017-06-30 04:40:00
101532    32833    764    2017-06-30 06:05:00    2017-06-30 06:05:00
101533    32833    604    2017-06-30 16:35:00    2017-06-30 16:35:00
101534    32833    903    2017-06-30 16:45:00    2017-06-30 16:45:00
101535    32834    516    2017-06-30 07:32:00    2017-06-30 07:32:00
101536    32834    579    2017-06-30 09:34:00    2017-06-30 09:34:00
101537    32834    680    2017-06-30 04:31:00    2017-06-30 04:31:00
101538    32834    818    2017-06-30 10:27:00    2017-06-30 10:27:00
101539    32834    795    2017-06-30 17:05:00    2017-06-30 17:05:00
101540    32835    856    2017-06-30 03:55:00    2017-06-30 03:55:00
101541    32835    641    2017-06-30 04:22:00    2017-06-30 04:22:00
101542    32835    470    2017-06-30 15:15:00    2017-06-30 15:15:00
101543    32835    463    2017-06-30 01:22:00    2017-06-30 01:22:00
101544    32835    874    2017-06-30 15:23:00    2017-06-30 15:23:00
101545    32836    905    2017-06-30 12:40:00    2017-06-30 12:40:00
101546    32836    526    2017-06-30 19:56:00    2017-06-30 19:56:00
101547    32836    532    2017-06-30 07:14:00    2017-06-30 07:14:00
101548    32836    620    2017-06-30 22:03:00    2017-06-30 22:03:00
101549    32836    820    2017-06-30 01:37:00    2017-06-30 01:37:00
101550    32837    888    2017-06-30 06:00:00    2017-06-30 06:00:00
101551    32837    880    2017-06-30 06:23:00    2017-06-30 06:23:00
101552    32837    566    2017-06-30 21:50:00    2017-06-30 21:50:00
101553    32837    856    2017-06-30 11:32:00    2017-06-30 11:32:00
101554    32837    717    2017-06-30 22:31:00    2017-06-30 22:31:00
101555    32838    829    2017-06-30 20:09:00    2017-06-30 20:09:00
101556    32838    524    2017-06-30 17:15:00    2017-06-30 17:15:00
101557    32838    893    2017-06-30 07:24:00    2017-06-30 07:24:00
101558    32838    569    2017-06-30 15:14:00    2017-06-30 15:14:00
101559    32838    845    2017-06-30 22:39:00    2017-06-30 22:39:00
101560    32839    873    2017-06-30 03:44:00    2017-06-30 03:44:00
101561    32839    868    2017-06-30 14:37:00    2017-06-30 14:37:00
101562    32839    732    2017-06-30 19:20:00    2017-06-30 19:20:00
101563    32839    781    2017-06-30 17:52:00    2017-06-30 17:52:00
101564    32839    914    2017-06-30 21:30:00    2017-06-30 21:30:00
101565    32840    941    2017-06-30 22:20:00    2017-06-30 22:20:00
101566    32840    510    2017-06-30 11:16:00    2017-06-30 11:16:00
101567    32840    727    2017-06-30 21:40:00    2017-06-30 21:40:00
101568    32840    783    2017-06-30 20:47:00    2017-06-30 20:47:00
101569    32840    648    2017-06-30 13:40:00    2017-06-30 13:40:00
101570    32841    807    2017-06-30 18:19:00    2017-06-30 18:19:00
101571    32841    529    2017-06-30 11:20:00    2017-06-30 11:20:00
101572    32841    562    2017-06-30 05:54:00    2017-06-30 05:54:00
101573    32841    566    2017-06-30 07:51:00    2017-06-30 07:51:00
101574    32841    551    2017-06-30 05:21:00    2017-06-30 05:21:00
101575    32842    559    2017-06-30 21:07:00    2017-06-30 21:07:00
101576    32842    702    2017-06-30 03:00:00    2017-06-30 03:00:00
101577    32842    890    2017-06-30 21:11:00    2017-06-30 21:11:00
101578    32842    557    2017-06-30 19:12:00    2017-06-30 19:12:00
101579    32842    502    2017-06-30 17:14:00    2017-06-30 17:14:00
101580    32843    790    2017-06-30 19:35:00    2017-06-30 19:35:00
101581    32843    865    2017-06-30 04:36:00    2017-06-30 04:36:00
101582    32843    766    2017-06-30 14:34:00    2017-06-30 14:34:00
101583    32843    785    2017-06-30 07:04:00    2017-06-30 07:04:00
101584    32843    545    2017-06-30 12:10:00    2017-06-30 12:10:00
101585    32844    884    2017-06-30 03:05:00    2017-06-30 03:05:00
101586    32844    812    2017-06-30 23:09:00    2017-06-30 23:09:00
101587    32844    716    2017-06-30 22:10:00    2017-06-30 22:10:00
101588    32844    729    2017-06-30 12:17:00    2017-06-30 12:17:00
101589    32844    523    2017-06-30 19:59:00    2017-06-30 19:59:00
101590    32845    865    2017-06-30 20:52:00    2017-06-30 20:52:00
101591    32845    871    2017-06-30 20:46:00    2017-06-30 20:46:00
101592    32845    540    2017-06-30 18:31:00    2017-06-30 18:31:00
101593    32845    846    2017-06-30 10:24:00    2017-06-30 10:24:00
101594    32845    896    2017-06-30 17:39:00    2017-06-30 17:39:00
101595    32846    808    2017-06-30 04:47:00    2017-06-30 04:47:00
101596    32846    947    2017-06-30 05:00:00    2017-06-30 05:00:00
101597    32846    616    2017-06-30 06:24:00    2017-06-30 06:24:00
101598    32846    508    2017-06-30 21:21:00    2017-06-30 21:21:00
101599    32846    621    2017-06-30 11:05:00    2017-06-30 11:05:00
101600    32847    600    2017-06-30 02:17:00    2017-06-30 02:17:00
101601    32847    513    2017-06-30 19:50:00    2017-06-30 19:50:00
101602    32847    854    2017-06-30 12:50:00    2017-06-30 12:50:00
101603    32847    849    2017-06-30 10:20:00    2017-06-30 10:20:00
101604    32847    895    2017-06-30 20:12:00    2017-06-30 20:12:00
101605    32848    720    2017-06-30 17:29:00    2017-06-30 17:29:00
101606    32848    592    2017-06-30 04:25:00    2017-06-30 04:25:00
101607    32848    800    2017-06-30 20:52:00    2017-06-30 20:52:00
101608    32848    752    2017-06-30 18:31:00    2017-06-30 18:31:00
101609    32848    475    2017-06-30 17:49:00    2017-06-30 17:49:00
101610    32849    885    2017-07-01 02:32:00    2017-07-01 02:32:00
101611    32849    800    2017-07-01 13:53:00    2017-07-01 13:53:00
101612    32849    495    2017-07-01 19:48:00    2017-07-01 19:48:00
101613    32849    944    2017-07-01 01:37:00    2017-07-01 01:37:00
101614    32849    666    2017-07-01 21:12:00    2017-07-01 21:12:00
101615    32850    590    2017-07-01 01:16:00    2017-07-01 01:16:00
101616    32850    832    2017-07-01 07:00:00    2017-07-01 07:00:00
101617    32850    924    2017-07-01 03:36:00    2017-07-01 03:36:00
101618    32850    769    2017-07-01 08:18:00    2017-07-01 08:18:00
101619    32850    716    2017-07-01 19:15:00    2017-07-01 19:15:00
101620    32851    657    2017-07-01 03:52:00    2017-07-01 03:52:00
101621    32851    950    2017-07-01 03:37:00    2017-07-01 03:37:00
101622    32851    471    2017-07-01 08:58:00    2017-07-01 08:58:00
101623    32851    833    2017-07-01 18:41:00    2017-07-01 18:41:00
101624    32851    537    2017-07-01 04:21:00    2017-07-01 04:21:00
101625    32852    701    2017-07-01 22:08:00    2017-07-01 22:08:00
101626    32852    568    2017-07-01 13:05:00    2017-07-01 13:05:00
101627    32852    471    2017-07-01 02:32:00    2017-07-01 02:32:00
101628    32852    937    2017-07-01 08:38:00    2017-07-01 08:38:00
101629    32852    528    2017-07-01 15:53:00    2017-07-01 15:53:00
101630    32853    619    2017-07-01 23:44:00    2017-07-01 23:44:00
101631    32853    542    2017-07-01 17:44:00    2017-07-01 17:44:00
101632    32853    694    2017-07-01 14:00:00    2017-07-01 14:00:00
101633    32853    859    2017-07-01 11:22:00    2017-07-01 11:22:00
101634    32853    551    2017-07-01 10:17:00    2017-07-01 10:17:00
101635    32854    860    2017-07-01 09:40:00    2017-07-01 09:40:00
101636    32854    650    2017-07-01 08:35:00    2017-07-01 08:35:00
101637    32854    839    2017-07-01 10:17:00    2017-07-01 10:17:00
101638    32854    943    2017-07-01 02:04:00    2017-07-01 02:04:00
101639    32854    834    2017-07-01 18:43:00    2017-07-01 18:43:00
101640    32855    938    2017-07-01 04:19:00    2017-07-01 04:19:00
101641    32855    768    2017-07-01 19:26:00    2017-07-01 19:26:00
101642    32855    717    2017-07-01 06:13:00    2017-07-01 06:13:00
101643    32855    641    2017-07-01 05:21:00    2017-07-01 05:21:00
101644    32855    890    2017-07-01 09:16:00    2017-07-01 09:16:00
101645    32856    884    2017-07-01 20:11:00    2017-07-01 20:11:00
101646    32856    880    2017-07-01 02:50:00    2017-07-01 02:50:00
101647    32856    630    2017-07-01 15:00:00    2017-07-01 15:00:00
101648    32856    713    2017-07-01 07:36:00    2017-07-01 07:36:00
101649    32856    701    2017-07-01 13:16:00    2017-07-01 13:16:00
101650    32857    510    2017-07-01 04:48:00    2017-07-01 04:48:00
101651    32857    812    2017-07-01 02:30:00    2017-07-01 02:30:00
101652    32857    778    2017-07-01 21:25:00    2017-07-01 21:25:00
101653    32857    719    2017-07-01 08:42:00    2017-07-01 08:42:00
101654    32857    693    2017-07-01 04:47:00    2017-07-01 04:47:00
101655    32858    476    2017-07-01 19:36:00    2017-07-01 19:36:00
101656    32858    822    2017-07-01 10:08:00    2017-07-01 10:08:00
101657    32858    810    2017-07-01 04:03:00    2017-07-01 04:03:00
101658    32858    663    2017-07-01 02:11:00    2017-07-01 02:11:00
101659    32858    472    2017-07-01 09:07:00    2017-07-01 09:07:00
101660    32859    803    2017-07-01 08:54:00    2017-07-01 08:54:00
101661    32859    567    2017-07-01 16:17:00    2017-07-01 16:17:00
101662    32859    477    2017-07-01 13:57:00    2017-07-01 13:57:00
101663    32859    491    2017-07-01 08:57:00    2017-07-01 08:57:00
101664    32859    914    2017-07-01 17:20:00    2017-07-01 17:20:00
101665    32860    624    2017-07-01 05:50:00    2017-07-01 05:50:00
101666    32860    463    2017-07-01 01:05:00    2017-07-01 01:05:00
101667    32860    608    2017-07-01 18:00:00    2017-07-01 18:00:00
101668    32860    891    2017-07-01 23:12:00    2017-07-01 23:12:00
101669    32860    878    2017-07-01 15:29:00    2017-07-01 15:29:00
101670    32861    869    2017-07-01 17:14:00    2017-07-01 17:14:00
101671    32861    767    2017-07-01 07:37:00    2017-07-01 07:37:00
101672    32861    781    2017-07-01 20:14:00    2017-07-01 20:14:00
101673    32861    641    2017-07-01 03:07:00    2017-07-01 03:07:00
101674    32861    955    2017-07-01 18:11:00    2017-07-01 18:11:00
101675    32862    489    2017-07-01 17:17:00    2017-07-01 17:17:00
101676    32862    822    2017-07-01 12:24:00    2017-07-01 12:24:00
101677    32862    599    2017-07-01 13:01:00    2017-07-01 13:01:00
101678    32862    638    2017-07-01 04:03:00    2017-07-01 04:03:00
101679    32862    752    2017-07-01 05:41:00    2017-07-01 05:41:00
101680    32863    709    2017-07-01 21:45:00    2017-07-01 21:45:00
101681    32863    916    2017-07-01 17:20:00    2017-07-01 17:20:00
101682    32863    818    2017-07-01 21:57:00    2017-07-01 21:57:00
101683    32863    942    2017-07-01 17:03:00    2017-07-01 17:03:00
101684    32863    602    2017-07-01 20:39:00    2017-07-01 20:39:00
101685    32864    554    2017-07-01 06:06:00    2017-07-01 06:06:00
101686    32864    649    2017-07-01 09:37:00    2017-07-01 09:37:00
101687    32864    702    2017-07-01 02:40:00    2017-07-01 02:40:00
101688    32864    714    2017-07-01 23:20:00    2017-07-01 23:20:00
101689    32864    608    2017-07-01 18:02:00    2017-07-01 18:02:00
101690    32865    655    2017-07-01 13:07:00    2017-07-01 13:07:00
101691    32865    601    2017-07-01 19:48:00    2017-07-01 19:48:00
101692    32865    584    2017-07-01 14:44:00    2017-07-01 14:44:00
101693    32865    465    2017-07-01 19:46:00    2017-07-01 19:46:00
101694    32865    637    2017-07-01 01:15:00    2017-07-01 01:15:00
101695    32866    662    2017-07-01 01:24:00    2017-07-01 01:24:00
101696    32866    660    2017-07-01 01:57:00    2017-07-01 01:57:00
101697    32866    831    2017-07-01 17:39:00    2017-07-01 17:39:00
101698    32866    915    2017-07-01 06:20:00    2017-07-01 06:20:00
101699    32866    520    2017-07-01 19:06:00    2017-07-01 19:06:00
101700    32867    811    2017-07-01 08:14:00    2017-07-01 08:14:00
101701    32867    920    2017-07-01 12:21:00    2017-07-01 12:21:00
101702    32867    518    2017-07-01 21:51:00    2017-07-01 21:51:00
101703    32867    697    2017-07-01 11:43:00    2017-07-01 11:43:00
101704    32867    945    2017-07-01 23:27:00    2017-07-01 23:27:00
101705    32868    773    2017-07-01 15:32:00    2017-07-01 15:32:00
101706    32868    638    2017-07-01 21:51:00    2017-07-01 21:51:00
101707    32868    805    2017-07-01 05:44:00    2017-07-01 05:44:00
101708    32868    528    2017-07-01 10:33:00    2017-07-01 10:33:00
101709    32868    705    2017-07-01 23:46:00    2017-07-01 23:46:00
101710    32869    738    2017-07-01 02:43:00    2017-07-01 02:43:00
101711    32869    546    2017-07-01 05:35:00    2017-07-01 05:35:00
101712    32869    772    2017-07-01 07:32:00    2017-07-01 07:32:00
101713    32869    572    2017-07-01 09:55:00    2017-07-01 09:55:00
101714    32869    551    2017-07-01 05:04:00    2017-07-01 05:04:00
101715    32870    754    2017-07-01 22:33:00    2017-07-01 22:33:00
101716    32870    736    2017-07-01 14:08:00    2017-07-01 14:08:00
101717    32870    905    2017-07-01 13:55:00    2017-07-01 13:55:00
101718    32870    636    2017-07-01 12:34:00    2017-07-01 12:34:00
101719    32870    514    2017-07-01 07:39:00    2017-07-01 07:39:00
101720    32871    549    2017-07-01 15:32:00    2017-07-01 15:32:00
101721    32871    782    2017-07-01 02:53:00    2017-07-01 02:53:00
101722    32871    567    2017-07-01 16:34:00    2017-07-01 16:34:00
101723    32871    751    2017-07-01 03:10:00    2017-07-01 03:10:00
101724    32871    609    2017-07-01 11:01:00    2017-07-01 11:01:00
101725    32872    736    2017-07-01 05:55:00    2017-07-01 05:55:00
101726    32872    789    2017-07-01 12:08:00    2017-07-01 12:08:00
101727    32872    713    2017-07-01 20:59:00    2017-07-01 20:59:00
101728    32872    744    2017-07-01 09:03:00    2017-07-01 09:03:00
101729    32872    893    2017-07-01 17:16:00    2017-07-01 17:16:00
101730    32873    885    2017-07-01 21:19:00    2017-07-01 21:19:00
101731    32873    491    2017-07-01 02:40:00    2017-07-01 02:40:00
101732    32873    474    2017-07-01 02:31:00    2017-07-01 02:31:00
101733    32873    739    2017-07-01 19:16:00    2017-07-01 19:16:00
101734    32873    948    2017-07-01 17:55:00    2017-07-01 17:55:00
101735    32874    643    2017-07-01 06:44:00    2017-07-01 06:44:00
101736    32874    827    2017-07-01 08:14:00    2017-07-01 08:14:00
101737    32874    841    2017-07-01 21:00:00    2017-07-01 21:00:00
101738    32874    741    2017-07-01 10:13:00    2017-07-01 10:13:00
101739    32874    614    2017-07-01 03:02:00    2017-07-01 03:02:00
101740    32875    699    2017-07-01 20:53:00    2017-07-01 20:53:00
101741    32875    541    2017-07-01 05:45:00    2017-07-01 05:45:00
101742    32875    582    2017-07-01 03:38:00    2017-07-01 03:38:00
101743    32875    575    2017-07-01 17:12:00    2017-07-01 17:12:00
101744    32875    763    2017-07-01 09:25:00    2017-07-01 09:25:00
101745    32876    847    2017-07-01 21:12:00    2017-07-01 21:12:00
101746    32876    932    2017-07-01 16:58:00    2017-07-01 16:58:00
101747    32876    755    2017-07-01 11:33:00    2017-07-01 11:33:00
101748    32876    560    2017-07-01 09:57:00    2017-07-01 09:57:00
101749    32876    687    2017-07-01 20:07:00    2017-07-01 20:07:00
101750    32877    685    2017-07-01 04:06:00    2017-07-01 04:06:00
101751    32877    888    2017-07-01 07:12:00    2017-07-01 07:12:00
101752    32877    681    2017-07-01 06:49:00    2017-07-01 06:49:00
101753    32877    778    2017-07-01 09:44:00    2017-07-01 09:44:00
101754    32877    906    2017-07-01 21:56:00    2017-07-01 21:56:00
101755    32878    811    2017-07-01 09:34:00    2017-07-01 09:34:00
101756    32878    875    2017-07-01 01:48:00    2017-07-01 01:48:00
101757    32878    877    2017-07-01 16:42:00    2017-07-01 16:42:00
101758    32878    859    2017-07-01 19:56:00    2017-07-01 19:56:00
101759    32878    506    2017-07-01 04:23:00    2017-07-01 04:23:00
101760    32879    799    2017-07-01 07:57:00    2017-07-01 07:57:00
101761    32879    921    2017-07-01 07:10:00    2017-07-01 07:10:00
101762    32879    681    2017-07-01 09:05:00    2017-07-01 09:05:00
101763    32879    538    2017-07-01 20:19:00    2017-07-01 20:19:00
101764    32879    835    2017-07-01 13:59:00    2017-07-01 13:59:00
101765    32880    760    2017-07-01 22:03:00    2017-07-01 22:03:00
101766    32880    697    2017-07-01 12:22:00    2017-07-01 12:22:00
101767    32880    726    2017-07-01 16:01:00    2017-07-01 16:01:00
101768    32880    667    2017-07-01 21:25:00    2017-07-01 21:25:00
101769    32880    755    2017-07-01 11:06:00    2017-07-01 11:06:00
101770    32881    594    2017-07-01 16:48:00    2017-07-01 16:48:00
101771    32881    748    2017-07-01 20:04:00    2017-07-01 20:04:00
101772    32881    709    2017-07-01 15:29:00    2017-07-01 15:29:00
101773    32881    726    2017-07-01 21:04:00    2017-07-01 21:04:00
101774    32881    676    2017-07-01 11:57:00    2017-07-01 11:57:00
101775    32882    879    2017-07-01 08:48:00    2017-07-01 08:48:00
101776    32882    597    2017-07-01 09:33:00    2017-07-01 09:33:00
101777    32882    926    2017-07-01 17:55:00    2017-07-01 17:55:00
101778    32882    689    2017-07-01 02:45:00    2017-07-01 02:45:00
101779    32882    788    2017-07-01 22:00:00    2017-07-01 22:00:00
101780    32883    732    2017-07-01 04:17:00    2017-07-01 04:17:00
101781    32883    861    2017-07-01 14:58:00    2017-07-01 14:58:00
101782    32883    567    2017-07-01 20:32:00    2017-07-01 20:32:00
101783    32883    905    2017-07-01 01:20:00    2017-07-01 01:20:00
101784    32883    918    2017-07-01 03:00:00    2017-07-01 03:00:00
101785    32884    820    2017-07-01 08:33:00    2017-07-01 08:33:00
101786    32884    712    2017-07-01 17:59:00    2017-07-01 17:59:00
101787    32884    541    2017-07-01 15:13:00    2017-07-01 15:13:00
101788    32884    573    2017-07-01 17:38:00    2017-07-01 17:38:00
101789    32884    575    2017-07-01 17:59:00    2017-07-01 17:59:00
101790    32885    798    2017-07-01 07:18:00    2017-07-01 07:18:00
101791    32885    575    2017-07-01 15:13:00    2017-07-01 15:13:00
101792    32885    713    2017-07-01 22:56:00    2017-07-01 22:56:00
101793    32885    755    2017-07-01 21:45:00    2017-07-01 21:45:00
101794    32885    892    2017-07-01 18:16:00    2017-07-01 18:16:00
101795    32886    882    2017-07-01 04:48:00    2017-07-01 04:48:00
101796    32886    570    2017-07-01 10:33:00    2017-07-01 10:33:00
101797    32886    673    2017-07-01 03:25:00    2017-07-01 03:25:00
101798    32886    735    2017-07-01 12:42:00    2017-07-01 12:42:00
101799    32886    740    2017-07-01 21:00:00    2017-07-01 21:00:00
101800    32887    897    2017-07-01 03:46:00    2017-07-01 03:46:00
101801    32887    486    2017-07-01 19:08:00    2017-07-01 19:08:00
101802    32887    798    2017-07-01 12:37:00    2017-07-01 12:37:00
101803    32887    584    2017-07-01 14:12:00    2017-07-01 14:12:00
101804    32887    498    2017-07-01 07:13:00    2017-07-01 07:13:00
101805    32888    528    2017-07-01 12:24:00    2017-07-01 12:24:00
101806    32888    786    2017-07-01 01:54:00    2017-07-01 01:54:00
101807    32888    732    2017-07-01 03:24:00    2017-07-01 03:24:00
101808    32888    815    2017-07-01 01:30:00    2017-07-01 01:30:00
101809    32888    702    2017-07-01 08:26:00    2017-07-01 08:26:00
101810    32889    616    2017-07-01 17:32:00    2017-07-01 17:32:00
101811    32889    668    2017-07-01 05:39:00    2017-07-01 05:39:00
101812    32889    946    2017-07-01 18:01:00    2017-07-01 18:01:00
101813    32889    602    2017-07-01 17:23:00    2017-07-01 17:23:00
101814    32889    810    2017-07-01 01:12:00    2017-07-01 01:12:00
101815    32890    573    2017-07-01 18:40:00    2017-07-01 18:40:00
101816    32890    720    2017-07-01 03:49:00    2017-07-01 03:49:00
101817    32890    929    2017-07-01 11:14:00    2017-07-01 11:14:00
101818    32890    876    2017-07-01 02:20:00    2017-07-01 02:20:00
101819    32890    669    2017-07-01 07:11:00    2017-07-01 07:11:00
101820    32891    615    2017-07-01 03:34:00    2017-07-01 03:34:00
101821    32891    470    2017-07-01 19:16:00    2017-07-01 19:16:00
101822    32891    880    2017-07-01 18:34:00    2017-07-01 18:34:00
101823    32891    528    2017-07-01 04:42:00    2017-07-01 04:42:00
101824    32891    924    2017-07-01 12:27:00    2017-07-01 12:27:00
101825    32892    806    2017-07-01 12:05:00    2017-07-01 12:05:00
101826    32892    664    2017-07-01 10:49:00    2017-07-01 10:49:00
101827    32892    572    2017-07-01 19:00:00    2017-07-01 19:00:00
101828    32892    958    2017-07-01 12:16:00    2017-07-01 12:16:00
101829    32892    678    2017-07-01 18:24:00    2017-07-01 18:24:00
101830    32893    548    2017-07-01 12:09:00    2017-07-01 12:09:00
101831    32893    862    2017-07-01 15:15:00    2017-07-01 15:15:00
101832    32893    834    2017-07-01 18:21:00    2017-07-01 18:21:00
101833    32893    912    2017-07-01 08:14:00    2017-07-01 08:14:00
101834    32893    487    2017-07-01 01:24:00    2017-07-01 01:24:00
101835    32894    797    2017-07-01 19:30:00    2017-07-01 19:30:00
101836    32894    936    2017-07-01 13:27:00    2017-07-01 13:27:00
101837    32894    864    2017-07-01 09:49:00    2017-07-01 09:49:00
101838    32894    912    2017-07-01 03:34:00    2017-07-01 03:34:00
101839    32894    627    2017-07-01 05:41:00    2017-07-01 05:41:00
101840    32895    918    2017-07-01 20:26:00    2017-07-01 20:26:00
101841    32895    740    2017-07-01 04:19:00    2017-07-01 04:19:00
101842    32895    956    2017-07-01 14:35:00    2017-07-01 14:35:00
101843    32895    875    2017-07-01 07:15:00    2017-07-01 07:15:00
101844    32895    620    2017-07-01 16:52:00    2017-07-01 16:52:00
101845    32896    797    2017-07-01 01:11:00    2017-07-01 01:11:00
101846    32896    898    2017-07-01 04:02:00    2017-07-01 04:02:00
101847    32896    564    2017-07-01 07:24:00    2017-07-01 07:24:00
101848    32896    828    2017-07-01 01:52:00    2017-07-01 01:52:00
101849    32896    865    2017-07-01 04:38:00    2017-07-01 04:38:00
101850    32897    584    2017-07-01 21:10:00    2017-07-01 21:10:00
101851    32897    665    2017-07-01 03:52:00    2017-07-01 03:52:00
101852    32897    880    2017-07-01 06:09:00    2017-07-01 06:09:00
101853    32897    837    2017-07-01 17:10:00    2017-07-01 17:10:00
101854    32897    533    2017-07-01 14:23:00    2017-07-01 14:23:00
101855    32898    744    2017-07-01 05:16:00    2017-07-01 05:16:00
101856    32898    660    2017-07-01 07:04:00    2017-07-01 07:04:00
101857    32898    495    2017-07-01 03:09:00    2017-07-01 03:09:00
101858    32898    565    2017-07-01 09:16:00    2017-07-01 09:16:00
101859    32898    768    2017-07-01 09:32:00    2017-07-01 09:32:00
101860    32899    780    2017-07-01 12:45:00    2017-07-01 12:45:00
101861    32899    537    2017-07-01 15:06:00    2017-07-01 15:06:00
101862    32899    666    2017-07-01 09:54:00    2017-07-01 09:54:00
101863    32899    668    2017-07-01 07:29:00    2017-07-01 07:29:00
101864    32899    656    2017-07-01 15:28:00    2017-07-01 15:28:00
101865    32900    862    2017-07-01 06:39:00    2017-07-01 06:39:00
101866    32900    886    2017-07-01 10:32:00    2017-07-01 10:32:00
101867    32900    773    2017-07-01 19:53:00    2017-07-01 19:53:00
101868    32900    516    2017-07-01 08:16:00    2017-07-01 08:16:00
101869    32900    749    2017-07-01 06:56:00    2017-07-01 06:56:00
101870    32901    782    2017-07-01 03:45:00    2017-07-01 03:45:00
101871    32901    487    2017-07-01 16:28:00    2017-07-01 16:28:00
101872    32901    866    2017-07-01 18:13:00    2017-07-01 18:13:00
101873    32901    589    2017-07-01 04:08:00    2017-07-01 04:08:00
101874    32901    854    2017-07-01 20:22:00    2017-07-01 20:22:00
101875    32902    912    2017-07-01 05:33:00    2017-07-01 05:33:00
101876    32902    647    2017-07-01 08:35:00    2017-07-01 08:35:00
101877    32902    881    2017-07-01 18:09:00    2017-07-01 18:09:00
101878    32902    559    2017-07-01 15:27:00    2017-07-01 15:27:00
101879    32902    624    2017-07-01 19:26:00    2017-07-01 19:26:00
101880    32903    825    2017-07-01 07:55:00    2017-07-01 07:55:00
101881    32903    589    2017-07-01 07:40:00    2017-07-01 07:40:00
101882    32903    879    2017-07-01 03:45:00    2017-07-01 03:45:00
101883    32903    811    2017-07-01 23:32:00    2017-07-01 23:32:00
101884    32903    747    2017-07-01 22:50:00    2017-07-01 22:50:00
101885    32904    552    2017-07-01 04:22:00    2017-07-01 04:22:00
101886    32904    505    2017-07-01 12:15:00    2017-07-01 12:15:00
101887    32904    585    2017-07-01 01:11:00    2017-07-01 01:11:00
101888    32904    641    2017-07-01 13:10:00    2017-07-01 13:10:00
101889    32904    789    2017-07-01 12:04:00    2017-07-01 12:04:00
101890    32905    637    2017-07-01 19:30:00    2017-07-01 19:30:00
101891    32905    893    2017-07-01 22:07:00    2017-07-01 22:07:00
101892    32905    809    2017-07-01 05:35:00    2017-07-01 05:35:00
101893    32905    634    2017-07-01 17:30:00    2017-07-01 17:30:00
101894    32905    483    2017-07-01 17:25:00    2017-07-01 17:25:00
101895    32906    585    2017-07-01 08:05:00    2017-07-01 08:05:00
101896    32906    659    2017-07-01 15:52:00    2017-07-01 15:52:00
101897    32906    818    2017-07-01 01:17:00    2017-07-01 01:17:00
101898    32906    500    2017-07-01 19:45:00    2017-07-01 19:45:00
101899    32906    836    2017-07-01 04:23:00    2017-07-01 04:23:00
101900    32907    947    2017-07-01 08:59:00    2017-07-01 08:59:00
101901    32907    851    2017-07-01 16:15:00    2017-07-01 16:15:00
101902    32907    829    2017-07-01 21:07:00    2017-07-01 21:07:00
101903    32907    809    2017-07-01 11:00:00    2017-07-01 11:00:00
101904    32907    518    2017-07-01 04:22:00    2017-07-01 04:22:00
101905    32908    885    2017-07-01 16:32:00    2017-07-01 16:32:00
101906    32908    590    2017-07-01 01:56:00    2017-07-01 01:56:00
101907    32908    690    2017-07-01 08:15:00    2017-07-01 08:15:00
101908    32908    662    2017-07-01 18:29:00    2017-07-01 18:29:00
101909    32908    581    2017-07-01 13:58:00    2017-07-01 13:58:00
101910    32909    685    2017-07-01 08:56:00    2017-07-01 08:56:00
101911    32909    844    2017-07-01 12:28:00    2017-07-01 12:28:00
101912    32909    715    2017-07-01 08:07:00    2017-07-01 08:07:00
101913    32909    919    2017-07-01 17:40:00    2017-07-01 17:40:00
101914    32909    711    2017-07-01 07:40:00    2017-07-01 07:40:00
101915    32910    727    2017-07-01 15:24:00    2017-07-01 15:24:00
101916    32910    670    2017-07-01 11:44:00    2017-07-01 11:44:00
101917    32910    577    2017-07-01 06:41:00    2017-07-01 06:41:00
101918    32910    775    2017-07-01 21:36:00    2017-07-01 21:36:00
101919    32910    575    2017-07-01 16:57:00    2017-07-01 16:57:00
101920    32911    548    2017-07-01 04:12:00    2017-07-01 04:12:00
101921    32911    800    2017-07-01 07:59:00    2017-07-01 07:59:00
101922    32911    767    2017-07-01 07:32:00    2017-07-01 07:32:00
101923    32911    608    2017-07-01 12:23:00    2017-07-01 12:23:00
101924    32911    591    2017-07-01 11:17:00    2017-07-01 11:17:00
101925    32912    594    2017-07-01 15:27:00    2017-07-01 15:27:00
101926    32912    666    2017-07-01 08:48:00    2017-07-01 08:48:00
101927    32912    887    2017-07-01 08:33:00    2017-07-01 08:33:00
101928    32912    719    2017-07-01 14:55:00    2017-07-01 14:55:00
101929    32912    708    2017-07-01 18:49:00    2017-07-01 18:49:00
101930    32913    861    2017-07-01 05:51:00    2017-07-01 05:51:00
101931    32913    815    2017-07-01 15:29:00    2017-07-01 15:29:00
101932    32913    642    2017-07-01 21:52:00    2017-07-01 21:52:00
101933    32913    864    2017-07-01 03:34:00    2017-07-01 03:34:00
101934    32913    909    2017-07-01 21:09:00    2017-07-01 21:09:00
101935    32914    853    2017-07-01 15:42:00    2017-07-01 15:42:00
101936    32914    503    2017-07-01 14:09:00    2017-07-01 14:09:00
101937    32914    629    2017-07-01 03:05:00    2017-07-01 03:05:00
101938    32914    650    2017-07-01 14:39:00    2017-07-01 14:39:00
101939    32914    841    2017-07-01 07:39:00    2017-07-01 07:39:00
101940    32915    919    2017-07-01 08:46:00    2017-07-01 08:46:00
101941    32915    478    2017-07-01 03:53:00    2017-07-01 03:53:00
101942    32915    750    2017-07-01 05:35:00    2017-07-01 05:35:00
101943    32915    873    2017-07-01 15:02:00    2017-07-01 15:02:00
101944    32915    734    2017-07-01 03:10:00    2017-07-01 03:10:00
101945    32916    610    2017-07-01 03:35:00    2017-07-01 03:35:00
101946    32916    652    2017-07-01 17:59:00    2017-07-01 17:59:00
101947    32916    591    2017-07-01 07:53:00    2017-07-01 07:53:00
101948    32916    744    2017-07-01 10:57:00    2017-07-01 10:57:00
101949    32916    748    2017-07-01 06:02:00    2017-07-01 06:02:00
101950    32917    736    2017-07-01 06:32:00    2017-07-01 06:32:00
101951    32917    594    2017-07-01 09:09:00    2017-07-01 09:09:00
101952    32917    815    2017-07-01 04:33:00    2017-07-01 04:33:00
101953    32917    840    2017-07-01 14:57:00    2017-07-01 14:57:00
101954    32917    487    2017-07-01 22:54:00    2017-07-01 22:54:00
101955    32918    646    2017-07-01 21:17:00    2017-07-01 21:17:00
101956    32918    666    2017-07-01 14:38:00    2017-07-01 14:38:00
101957    32918    909    2017-07-01 07:46:00    2017-07-01 07:46:00
101958    32918    785    2017-07-01 08:44:00    2017-07-01 08:44:00
101959    32918    633    2017-07-01 16:32:00    2017-07-01 16:32:00
101960    32919    751    2017-07-01 09:48:00    2017-07-01 09:48:00
101961    32919    633    2017-07-01 06:15:00    2017-07-01 06:15:00
101962    32919    742    2017-07-01 05:20:00    2017-07-01 05:20:00
101963    32919    838    2017-07-01 23:00:00    2017-07-01 23:00:00
101964    32919    471    2017-07-01 04:55:00    2017-07-01 04:55:00
101965    32920    926    2017-07-01 16:54:00    2017-07-01 16:54:00
101966    32920    536    2017-07-01 05:56:00    2017-07-01 05:56:00
101967    32920    642    2017-07-01 06:05:00    2017-07-01 06:05:00
101968    32920    474    2017-07-01 13:11:00    2017-07-01 13:11:00
101969    32920    884    2017-07-01 20:13:00    2017-07-01 20:13:00
101970    32921    641    2017-07-01 05:19:00    2017-07-01 05:19:00
101971    32921    718    2017-07-01 02:19:00    2017-07-01 02:19:00
101972    32921    518    2017-07-01 08:34:00    2017-07-01 08:34:00
101973    32921    506    2017-07-01 05:32:00    2017-07-01 05:32:00
101974    32921    826    2017-07-01 10:59:00    2017-07-01 10:59:00
101975    32922    565    2017-07-01 04:30:00    2017-07-01 04:30:00
101976    32922    668    2017-07-01 20:32:00    2017-07-01 20:32:00
101977    32922    563    2017-07-01 23:41:00    2017-07-01 23:41:00
101978    32922    703    2017-07-01 07:16:00    2017-07-01 07:16:00
101979    32922    477    2017-07-01 19:17:00    2017-07-01 19:17:00
101980    32923    667    2017-07-01 07:10:00    2017-07-01 07:10:00
101981    32923    510    2017-07-01 07:12:00    2017-07-01 07:12:00
101982    32923    771    2017-07-01 19:12:00    2017-07-01 19:12:00
101983    32923    669    2017-07-01 18:26:00    2017-07-01 18:26:00
101984    32923    486    2017-07-01 09:59:00    2017-07-01 09:59:00
101985    32924    749    2017-07-01 13:53:00    2017-07-01 13:53:00
101986    32924    745    2017-07-01 13:22:00    2017-07-01 13:22:00
101987    32924    914    2017-07-01 07:21:00    2017-07-01 07:21:00
101988    32924    552    2017-07-01 01:38:00    2017-07-01 01:38:00
101989    32924    865    2017-07-01 09:36:00    2017-07-01 09:36:00
101990    32925    542    2017-07-01 15:02:00    2017-07-01 15:02:00
101991    32925    909    2017-07-01 19:37:00    2017-07-01 19:37:00
101992    32925    897    2017-07-01 11:47:00    2017-07-01 11:47:00
101993    32925    710    2017-07-01 21:54:00    2017-07-01 21:54:00
101994    32925    714    2017-07-01 05:01:00    2017-07-01 05:01:00
101995    32926    523    2017-07-01 23:51:00    2017-07-01 23:51:00
101996    32926    850    2017-07-01 18:30:00    2017-07-01 18:30:00
101997    32926    535    2017-07-01 08:19:00    2017-07-01 08:19:00
101998    32926    864    2017-07-01 17:06:00    2017-07-01 17:06:00
101999    32926    498    2017-07-01 04:07:00    2017-07-01 04:07:00
102000    32927    775    2017-07-01 02:38:00    2017-07-01 02:38:00
102001    32927    883    2017-07-01 22:21:00    2017-07-01 22:21:00
102002    32927    614    2017-07-01 17:45:00    2017-07-01 17:45:00
102003    32927    811    2017-07-01 20:59:00    2017-07-01 20:59:00
102004    32927    559    2017-07-01 05:43:00    2017-07-01 05:43:00
102005    32928    490    2017-07-01 14:36:00    2017-07-01 14:36:00
102006    32928    754    2017-07-01 04:00:00    2017-07-01 04:00:00
102007    32928    903    2017-07-01 04:33:00    2017-07-01 04:33:00
102008    32928    814    2017-07-01 17:28:00    2017-07-01 17:28:00
102009    32928    882    2017-07-01 11:59:00    2017-07-01 11:59:00
102010    32929    753    2017-07-01 03:28:00    2017-07-01 03:28:00
102011    32929    509    2017-07-01 18:39:00    2017-07-01 18:39:00
102012    32929    585    2017-07-01 12:54:00    2017-07-01 12:54:00
102013    32929    824    2017-07-01 02:15:00    2017-07-01 02:15:00
102014    32929    739    2017-07-01 05:09:00    2017-07-01 05:09:00
102015    32930    945    2017-07-01 21:22:00    2017-07-01 21:22:00
102016    32930    665    2017-07-01 07:37:00    2017-07-01 07:37:00
102017    32930    895    2017-07-01 04:23:00    2017-07-01 04:23:00
102018    32930    489    2017-07-01 01:16:00    2017-07-01 01:16:00
102019    32930    751    2017-07-01 21:24:00    2017-07-01 21:24:00
102020    32931    723    2017-07-01 21:16:00    2017-07-01 21:16:00
102021    32931    851    2017-07-01 12:17:00    2017-07-01 12:17:00
102022    32931    961    2017-07-01 06:49:00    2017-07-01 06:49:00
102023    32931    546    2017-07-01 13:29:00    2017-07-01 13:29:00
102024    32931    748    2017-07-01 02:09:00    2017-07-01 02:09:00
102025    32932    789    2017-07-01 21:45:00    2017-07-01 21:45:00
102026    32932    635    2017-07-01 20:51:00    2017-07-01 20:51:00
102027    32932    527    2017-07-01 03:19:00    2017-07-01 03:19:00
102028    32932    907    2017-07-01 16:48:00    2017-07-01 16:48:00
102029    32932    961    2017-07-01 13:38:00    2017-07-01 13:38:00
102030    32933    916    2017-07-01 11:42:00    2017-07-01 11:42:00
102031    32933    661    2017-07-01 06:00:00    2017-07-01 06:00:00
102032    32933    813    2017-07-01 05:13:00    2017-07-01 05:13:00
102033    32933    594    2017-07-01 15:19:00    2017-07-01 15:19:00
102034    32933    949    2017-07-01 01:08:00    2017-07-01 01:08:00
102035    32934    917    2017-07-01 09:40:00    2017-07-01 09:40:00
102036    32934    637    2017-07-01 23:50:00    2017-07-01 23:50:00
102037    32934    924    2017-07-01 06:15:00    2017-07-01 06:15:00
102038    32934    721    2017-07-01 07:59:00    2017-07-01 07:59:00
102039    32934    528    2017-07-01 20:56:00    2017-07-01 20:56:00
102040    32935    725    2017-07-01 19:25:00    2017-07-01 19:25:00
102041    32935    621    2017-07-01 12:00:00    2017-07-01 12:00:00
102042    32935    667    2017-07-01 11:54:00    2017-07-01 11:54:00
102043    32935    720    2017-07-01 23:24:00    2017-07-01 23:24:00
102044    32935    836    2017-07-01 15:50:00    2017-07-01 15:50:00
102045    32936    682    2017-07-01 20:55:00    2017-07-01 20:55:00
102046    32936    780    2017-07-01 15:51:00    2017-07-01 15:51:00
102047    32936    596    2017-07-01 22:08:00    2017-07-01 22:08:00
102048    32936    854    2017-07-01 22:29:00    2017-07-01 22:29:00
102049    32936    495    2017-07-01 02:27:00    2017-07-01 02:27:00
102050    32937    834    2017-07-01 16:21:00    2017-07-01 16:21:00
102051    32937    582    2017-07-01 17:28:00    2017-07-01 17:28:00
102052    32937    932    2017-07-01 14:52:00    2017-07-01 14:52:00
102053    32937    925    2017-07-01 20:51:00    2017-07-01 20:51:00
102054    32937    674    2017-07-01 23:24:00    2017-07-01 23:24:00
102057    \N    476    2017-07-01 21:01:00    2017-07-01 21:01:00
102058    \N    959    2017-07-01 18:07:00    2017-07-01 18:07:00
102059    \N    840    2017-07-01 13:33:00    2017-07-01 13:33:00
102055    \N    877    2017-07-01 11:26:00    2017-07-01 11:26:00
102056    \N    845    2017-07-01 09:53:00    2017-07-01 09:53:00
102060    32939    629    2017-07-02 05:55:00    2017-07-02 05:55:00
102061    32939    536    2017-07-02 06:48:00    2017-07-02 06:48:00
102062    32939    947    2017-07-02 03:32:00    2017-07-02 03:32:00
102063    32939    533    2017-07-02 11:02:00    2017-07-02 11:02:00
102064    32939    735    2017-07-02 10:00:00    2017-07-02 10:00:00
102065    32940    706    2017-07-02 17:50:00    2017-07-02 17:50:00
102066    32940    622    2017-07-02 21:51:00    2017-07-02 21:51:00
102067    32940    697    2017-07-02 05:33:00    2017-07-02 05:33:00
102068    32940    634    2017-07-02 09:58:00    2017-07-02 09:58:00
102069    32940    639    2017-07-02 22:56:00    2017-07-02 22:56:00
102070    32941    774    2017-07-02 21:40:00    2017-07-02 21:40:00
102071    32941    702    2017-07-02 08:48:00    2017-07-02 08:48:00
102072    32941    533    2017-07-02 06:49:00    2017-07-02 06:49:00
102073    32941    608    2017-07-02 19:33:00    2017-07-02 19:33:00
102074    32941    923    2017-07-02 02:00:00    2017-07-02 02:00:00
102075    32942    929    2017-07-02 06:34:00    2017-07-02 06:34:00
102076    32942    646    2017-07-02 17:27:00    2017-07-02 17:27:00
102077    32942    786    2017-07-02 04:53:00    2017-07-02 04:53:00
102078    32942    672    2017-07-02 12:14:00    2017-07-02 12:14:00
102079    32942    483    2017-07-02 21:21:00    2017-07-02 21:21:00
102080    32943    535    2017-07-02 18:15:00    2017-07-02 18:15:00
102081    32943    915    2017-07-02 19:12:00    2017-07-02 19:12:00
102082    32943    681    2017-07-02 16:29:00    2017-07-02 16:29:00
102083    32943    552    2017-07-02 19:36:00    2017-07-02 19:36:00
102084    32943    861    2017-07-02 18:28:00    2017-07-02 18:28:00
102085    32944    930    2017-07-02 01:49:00    2017-07-02 01:49:00
102086    32944    943    2017-07-02 22:40:00    2017-07-02 22:40:00
102087    32944    852    2017-07-02 21:47:00    2017-07-02 21:47:00
102088    32944    605    2017-07-02 23:41:00    2017-07-02 23:41:00
102089    32944    947    2017-07-02 03:13:00    2017-07-02 03:13:00
102090    32945    472    2017-07-02 23:17:00    2017-07-02 23:17:00
102091    32945    669    2017-07-02 02:10:00    2017-07-02 02:10:00
102092    32945    765    2017-07-02 23:11:00    2017-07-02 23:11:00
102093    32945    498    2017-07-02 06:59:00    2017-07-02 06:59:00
102094    32945    778    2017-07-02 05:38:00    2017-07-02 05:38:00
102095    32946    722    2017-07-02 16:35:00    2017-07-02 16:35:00
102096    32946    577    2017-07-02 13:11:00    2017-07-02 13:11:00
102097    32946    661    2017-07-02 02:07:00    2017-07-02 02:07:00
102098    32946    583    2017-07-02 02:02:00    2017-07-02 02:02:00
102099    32946    479    2017-07-02 22:25:00    2017-07-02 22:25:00
102100    32947    900    2017-07-02 18:47:00    2017-07-02 18:47:00
102101    32947    893    2017-07-02 18:26:00    2017-07-02 18:26:00
102102    32947    582    2017-07-02 14:52:00    2017-07-02 14:52:00
102103    32947    540    2017-07-02 01:07:00    2017-07-02 01:07:00
102104    32947    807    2017-07-02 17:34:00    2017-07-02 17:34:00
102105    32948    902    2017-07-02 01:26:00    2017-07-02 01:26:00
102106    32948    472    2017-07-02 12:07:00    2017-07-02 12:07:00
102107    32948    589    2017-07-02 13:54:00    2017-07-02 13:54:00
102108    32948    794    2017-07-02 13:57:00    2017-07-02 13:57:00
102109    32948    830    2017-07-02 23:24:00    2017-07-02 23:24:00
102110    32949    722    2017-07-02 04:02:00    2017-07-02 04:02:00
102111    32949    572    2017-07-02 02:32:00    2017-07-02 02:32:00
102112    32949    951    2017-07-02 19:46:00    2017-07-02 19:46:00
102113    32949    676    2017-07-02 12:06:00    2017-07-02 12:06:00
102114    32949    702    2017-07-02 16:29:00    2017-07-02 16:29:00
102115    32950    860    2017-07-02 22:00:00    2017-07-02 22:00:00
102116    32950    609    2017-07-02 05:45:00    2017-07-02 05:45:00
102117    32950    829    2017-07-02 07:19:00    2017-07-02 07:19:00
102118    32950    557    2017-07-02 12:32:00    2017-07-02 12:32:00
102119    32950    854    2017-07-02 13:48:00    2017-07-02 13:48:00
102120    32951    943    2017-07-02 09:14:00    2017-07-02 09:14:00
102121    32951    468    2017-07-02 19:14:00    2017-07-02 19:14:00
102122    32951    943    2017-07-02 13:14:00    2017-07-02 13:14:00
102123    32951    951    2017-07-02 15:30:00    2017-07-02 15:30:00
102124    32951    482    2017-07-02 22:04:00    2017-07-02 22:04:00
102125    32952    592    2017-07-02 19:49:00    2017-07-02 19:49:00
102126    32952    553    2017-07-02 20:20:00    2017-07-02 20:20:00
102127    32952    927    2017-07-02 07:54:00    2017-07-02 07:54:00
102128    32952    634    2017-07-02 21:12:00    2017-07-02 21:12:00
102129    32952    752    2017-07-02 21:57:00    2017-07-02 21:57:00
102130    32953    850    2017-07-02 09:28:00    2017-07-02 09:28:00
102131    32953    669    2017-07-02 11:00:00    2017-07-02 11:00:00
102132    32953    610    2017-07-02 03:55:00    2017-07-02 03:55:00
102133    32953    850    2017-07-02 06:34:00    2017-07-02 06:34:00
102134    32953    835    2017-07-02 17:21:00    2017-07-02 17:21:00
102135    32954    801    2017-07-02 05:46:00    2017-07-02 05:46:00
102136    32954    632    2017-07-02 12:36:00    2017-07-02 12:36:00
102137    32954    783    2017-07-02 13:16:00    2017-07-02 13:16:00
102138    32954    845    2017-07-02 08:22:00    2017-07-02 08:22:00
102139    32954    922    2017-07-02 14:09:00    2017-07-02 14:09:00
102140    32955    910    2017-07-02 01:25:00    2017-07-02 01:25:00
102141    32955    845    2017-07-02 07:04:00    2017-07-02 07:04:00
102142    32955    732    2017-07-02 21:28:00    2017-07-02 21:28:00
102143    32955    513    2017-07-02 13:47:00    2017-07-02 13:47:00
102144    32955    794    2017-07-02 21:36:00    2017-07-02 21:36:00
102145    32956    949    2017-07-02 19:45:00    2017-07-02 19:45:00
102146    32956    688    2017-07-02 17:32:00    2017-07-02 17:32:00
102147    32956    951    2017-07-02 17:27:00    2017-07-02 17:27:00
102148    32956    613    2017-07-02 14:06:00    2017-07-02 14:06:00
102149    32956    686    2017-07-02 03:28:00    2017-07-02 03:28:00
102150    32957    941    2017-07-02 06:28:00    2017-07-02 06:28:00
102151    32957    952    2017-07-02 06:31:00    2017-07-02 06:31:00
102152    32957    656    2017-07-02 20:51:00    2017-07-02 20:51:00
102153    32957    703    2017-07-02 21:46:00    2017-07-02 21:46:00
102154    32957    675    2017-07-02 18:58:00    2017-07-02 18:58:00
102155    32958    760    2017-07-02 01:08:00    2017-07-02 01:08:00
102156    32958    552    2017-07-02 04:11:00    2017-07-02 04:11:00
102157    32958    952    2017-07-02 16:44:00    2017-07-02 16:44:00
102158    32958    885    2017-07-02 09:41:00    2017-07-02 09:41:00
102159    32958    728    2017-07-02 21:37:00    2017-07-02 21:37:00
102160    32959    542    2017-07-02 16:55:00    2017-07-02 16:55:00
102161    32959    485    2017-07-02 22:47:00    2017-07-02 22:47:00
102162    32959    709    2017-07-02 01:56:00    2017-07-02 01:56:00
102163    32959    618    2017-07-02 21:05:00    2017-07-02 21:05:00
102164    32959    723    2017-07-02 04:37:00    2017-07-02 04:37:00
102165    32960    543    2017-07-02 11:52:00    2017-07-02 11:52:00
102166    32960    654    2017-07-02 02:19:00    2017-07-02 02:19:00
102167    32960    602    2017-07-02 18:38:00    2017-07-02 18:38:00
102168    32960    838    2017-07-02 07:33:00    2017-07-02 07:33:00
102169    32960    816    2017-07-02 02:07:00    2017-07-02 02:07:00
102170    32961    638    2017-07-02 03:25:00    2017-07-02 03:25:00
102171    32961    806    2017-07-02 06:44:00    2017-07-02 06:44:00
102172    32961    479    2017-07-02 04:55:00    2017-07-02 04:55:00
102173    32961    799    2017-07-02 16:39:00    2017-07-02 16:39:00
102174    32961    922    2017-07-02 18:32:00    2017-07-02 18:32:00
102175    32962    727    2017-07-02 20:52:00    2017-07-02 20:52:00
102176    32962    948    2017-07-02 08:30:00    2017-07-02 08:30:00
102177    32962    884    2017-07-02 17:51:00    2017-07-02 17:51:00
102178    32962    700    2017-07-02 23:35:00    2017-07-02 23:35:00
102179    32962    866    2017-07-02 20:51:00    2017-07-02 20:51:00
102180    32963    919    2017-07-02 12:32:00    2017-07-02 12:32:00
102181    32963    547    2017-07-02 13:47:00    2017-07-02 13:47:00
102182    32963    485    2017-07-02 16:08:00    2017-07-02 16:08:00
102183    32963    516    2017-07-02 21:34:00    2017-07-02 21:34:00
102184    32963    915    2017-07-02 07:32:00    2017-07-02 07:32:00
102185    32964    866    2017-07-02 18:20:00    2017-07-02 18:20:00
102186    32964    855    2017-07-02 09:57:00    2017-07-02 09:57:00
102187    32964    816    2017-07-02 12:16:00    2017-07-02 12:16:00
102188    32964    797    2017-07-02 18:39:00    2017-07-02 18:39:00
102189    32964    732    2017-07-02 20:35:00    2017-07-02 20:35:00
102190    32965    928    2017-07-02 07:35:00    2017-07-02 07:35:00
102191    32965    560    2017-07-02 07:33:00    2017-07-02 07:33:00
102192    32965    470    2017-07-02 13:03:00    2017-07-02 13:03:00
102193    32965    578    2017-07-02 02:25:00    2017-07-02 02:25:00
102194    32965    561    2017-07-02 06:35:00    2017-07-02 06:35:00
102195    32966    708    2017-07-02 20:17:00    2017-07-02 20:17:00
102196    32966    729    2017-07-02 12:30:00    2017-07-02 12:30:00
102197    32966    796    2017-07-02 02:00:00    2017-07-02 02:00:00
102198    32966    841    2017-07-02 13:49:00    2017-07-02 13:49:00
102199    32966    799    2017-07-02 22:32:00    2017-07-02 22:32:00
102200    32967    662    2017-07-03 15:05:00    2017-07-03 15:05:00
102201    32967    947    2017-07-03 11:44:00    2017-07-03 11:44:00
102202    32967    697    2017-07-03 03:48:00    2017-07-03 03:48:00
102203    32967    556    2017-07-03 21:48:00    2017-07-03 21:48:00
102204    32967    934    2017-07-03 04:51:00    2017-07-03 04:51:00
102205    32968    582    2017-07-03 13:17:00    2017-07-03 13:17:00
102206    32968    947    2017-07-03 16:44:00    2017-07-03 16:44:00
102207    32968    487    2017-07-03 13:06:00    2017-07-03 13:06:00
102208    32968    569    2017-07-03 18:18:00    2017-07-03 18:18:00
102209    32968    796    2017-07-03 03:08:00    2017-07-03 03:08:00
102210    32969    767    2017-07-03 02:00:00    2017-07-03 02:00:00
102211    32969    680    2017-07-03 20:12:00    2017-07-03 20:12:00
102212    32969    880    2017-07-03 13:24:00    2017-07-03 13:24:00
102213    32969    474    2017-07-03 18:16:00    2017-07-03 18:16:00
102214    32969    826    2017-07-03 09:17:00    2017-07-03 09:17:00
102215    32970    550    2017-07-03 12:20:00    2017-07-03 12:20:00
102216    32970    895    2017-07-03 10:52:00    2017-07-03 10:52:00
102217    32970    665    2017-07-03 04:57:00    2017-07-03 04:57:00
102218    32970    571    2017-07-03 08:03:00    2017-07-03 08:03:00
102219    32970    750    2017-07-03 07:13:00    2017-07-03 07:13:00
102220    32971    517    2017-07-03 12:49:00    2017-07-03 12:49:00
102221    32971    524    2017-07-03 07:15:00    2017-07-03 07:15:00
102222    32971    555    2017-07-03 07:30:00    2017-07-03 07:30:00
102223    32971    866    2017-07-03 04:53:00    2017-07-03 04:53:00
102224    32971    742    2017-07-03 21:28:00    2017-07-03 21:28:00
102225    32972    646    2017-07-03 17:07:00    2017-07-03 17:07:00
102226    32972    559    2017-07-03 05:55:00    2017-07-03 05:55:00
102227    32972    758    2017-07-03 12:06:00    2017-07-03 12:06:00
102228    32972    632    2017-07-03 05:28:00    2017-07-03 05:28:00
102229    32972    535    2017-07-03 02:07:00    2017-07-03 02:07:00
102230    32973    861    2017-07-03 20:33:00    2017-07-03 20:33:00
102231    32973    889    2017-07-03 04:33:00    2017-07-03 04:33:00
102232    32973    835    2017-07-03 12:16:00    2017-07-03 12:16:00
102233    32973    707    2017-07-03 01:43:00    2017-07-03 01:43:00
102234    32973    783    2017-07-03 05:27:00    2017-07-03 05:27:00
102235    32974    867    2017-07-03 22:20:00    2017-07-03 22:20:00
102236    32974    697    2017-07-03 11:31:00    2017-07-03 11:31:00
102237    32974    505    2017-07-03 05:22:00    2017-07-03 05:22:00
102238    32974    671    2017-07-03 05:34:00    2017-07-03 05:34:00
102239    32974    631    2017-07-03 06:25:00    2017-07-03 06:25:00
102240    32975    749    2017-07-03 15:03:00    2017-07-03 15:03:00
102241    32975    838    2017-07-03 20:29:00    2017-07-03 20:29:00
102242    32975    899    2017-07-03 07:35:00    2017-07-03 07:35:00
102243    32975    662    2017-07-03 11:20:00    2017-07-03 11:20:00
102244    32975    946    2017-07-03 15:50:00    2017-07-03 15:50:00
102245    32976    616    2017-07-03 18:38:00    2017-07-03 18:38:00
102246    32976    838    2017-07-03 23:50:00    2017-07-03 23:50:00
102247    32976    743    2017-07-03 18:40:00    2017-07-03 18:40:00
102248    32976    754    2017-07-03 10:24:00    2017-07-03 10:24:00
102249    32976    516    2017-07-03 01:31:00    2017-07-03 01:31:00
102250    32977    660    2017-07-03 02:51:00    2017-07-03 02:51:00
102251    32977    488    2017-07-03 11:12:00    2017-07-03 11:12:00
102252    32977    893    2017-07-03 22:34:00    2017-07-03 22:34:00
102253    32977    588    2017-07-03 14:14:00    2017-07-03 14:14:00
102254    32977    603    2017-07-03 13:06:00    2017-07-03 13:06:00
102255    32978    593    2017-07-03 22:52:00    2017-07-03 22:52:00
102256    32978    960    2017-07-03 19:55:00    2017-07-03 19:55:00
102257    32978    480    2017-07-03 04:02:00    2017-07-03 04:02:00
102258    32978    830    2017-07-03 06:42:00    2017-07-03 06:42:00
102259    32978    567    2017-07-03 17:43:00    2017-07-03 17:43:00
102260    32979    512    2017-07-03 19:19:00    2017-07-03 19:19:00
102261    32979    615    2017-07-03 08:28:00    2017-07-03 08:28:00
102262    32979    771    2017-07-03 20:40:00    2017-07-03 20:40:00
102263    32979    665    2017-07-03 02:39:00    2017-07-03 02:39:00
102264    32979    821    2017-07-03 02:45:00    2017-07-03 02:45:00
102265    32980    623    2017-07-03 13:26:00    2017-07-03 13:26:00
102266    32980    797    2017-07-03 12:31:00    2017-07-03 12:31:00
102267    32980    768    2017-07-03 14:45:00    2017-07-03 14:45:00
102268    32980    584    2017-07-03 07:28:00    2017-07-03 07:28:00
102269    32980    469    2017-07-03 06:55:00    2017-07-03 06:55:00
102270    32981    751    2017-07-03 09:11:00    2017-07-03 09:11:00
102271    32981    874    2017-07-03 08:39:00    2017-07-03 08:39:00
102272    32981    541    2017-07-03 04:01:00    2017-07-03 04:01:00
102273    32981    706    2017-07-03 10:34:00    2017-07-03 10:34:00
102274    32981    809    2017-07-03 15:41:00    2017-07-03 15:41:00
102275    32982    836    2017-07-03 17:56:00    2017-07-03 17:56:00
102276    32982    468    2017-07-03 07:02:00    2017-07-03 07:02:00
102277    32982    873    2017-07-03 14:20:00    2017-07-03 14:20:00
102278    32982    881    2017-07-03 08:17:00    2017-07-03 08:17:00
102279    32982    678    2017-07-03 20:14:00    2017-07-03 20:14:00
102280    32983    751    2017-07-03 21:05:00    2017-07-03 21:05:00
102281    32983    564    2017-07-03 23:04:00    2017-07-03 23:04:00
102282    32983    661    2017-07-03 08:55:00    2017-07-03 08:55:00
102283    32983    608    2017-07-03 17:24:00    2017-07-03 17:24:00
102284    32983    758    2017-07-03 09:43:00    2017-07-03 09:43:00
102285    32984    793    2017-07-03 06:47:00    2017-07-03 06:47:00
102286    32984    474    2017-07-03 21:31:00    2017-07-03 21:31:00
102287    32984    842    2017-07-03 11:14:00    2017-07-03 11:14:00
102288    32984    559    2017-07-03 02:20:00    2017-07-03 02:20:00
102289    32984    644    2017-07-03 01:12:00    2017-07-03 01:12:00
102290    32985    690    2017-07-04 14:27:00    2017-07-04 14:27:00
102291    32985    856    2017-07-04 01:54:00    2017-07-04 01:54:00
102292    32985    473    2017-07-04 14:58:00    2017-07-04 14:58:00
102293    32985    864    2017-07-04 15:11:00    2017-07-04 15:11:00
102294    32985    719    2017-07-04 06:37:00    2017-07-04 06:37:00
102295    32986    494    2017-07-04 19:12:00    2017-07-04 19:12:00
102296    32986    941    2017-07-04 09:15:00    2017-07-04 09:15:00
102297    32986    800    2017-07-04 19:45:00    2017-07-04 19:45:00
102298    32986    480    2017-07-04 06:49:00    2017-07-04 06:49:00
102299    32986    676    2017-07-05 00:00:00    2017-07-05 00:00:00
102300    32987    491    2017-07-04 02:28:00    2017-07-04 02:28:00
102301    32987    767    2017-07-04 07:28:00    2017-07-04 07:28:00
102302    32987    802    2017-07-04 14:59:00    2017-07-04 14:59:00
102303    32987    890    2017-07-04 02:23:00    2017-07-04 02:23:00
102304    32987    662    2017-07-04 22:21:00    2017-07-04 22:21:00
102305    32988    730    2017-07-04 12:33:00    2017-07-04 12:33:00
102306    32988    554    2017-07-04 02:03:00    2017-07-04 02:03:00
102307    32988    945    2017-07-04 15:38:00    2017-07-04 15:38:00
102308    32988    897    2017-07-04 23:52:00    2017-07-04 23:52:00
102309    32988    705    2017-07-04 15:30:00    2017-07-04 15:30:00
102310    32989    936    2017-07-04 11:41:00    2017-07-04 11:41:00
102311    32989    790    2017-07-04 16:01:00    2017-07-04 16:01:00
102312    32989    943    2017-07-04 15:58:00    2017-07-04 15:58:00
102313    32989    940    2017-07-04 12:09:00    2017-07-04 12:09:00
102314    32989    941    2017-07-04 06:01:00    2017-07-04 06:01:00
102315    32990    866    2017-07-04 21:41:00    2017-07-04 21:41:00
102316    32990    549    2017-07-04 01:08:00    2017-07-04 01:08:00
102317    32990    465    2017-07-04 12:18:00    2017-07-04 12:18:00
102318    32990    465    2017-07-04 11:16:00    2017-07-04 11:16:00
102319    32990    801    2017-07-04 05:55:00    2017-07-04 05:55:00
102320    32991    738    2017-07-04 21:27:00    2017-07-04 21:27:00
102321    32991    789    2017-07-04 12:58:00    2017-07-04 12:58:00
102322    32991    661    2017-07-04 05:50:00    2017-07-04 05:50:00
102323    32991    783    2017-07-04 03:37:00    2017-07-04 03:37:00
102324    32991    705    2017-07-04 13:05:00    2017-07-04 13:05:00
102325    32992    578    2017-07-04 23:03:00    2017-07-04 23:03:00
102326    32992    491    2017-07-04 13:34:00    2017-07-04 13:34:00
102327    32992    919    2017-07-04 14:58:00    2017-07-04 14:58:00
102328    32992    825    2017-07-04 15:40:00    2017-07-04 15:40:00
102329    32992    613    2017-07-04 16:57:00    2017-07-04 16:57:00
102330    32993    803    2017-07-04 02:01:00    2017-07-04 02:01:00
102331    32993    857    2017-07-04 15:36:00    2017-07-04 15:36:00
102332    32993    621    2017-07-04 10:01:00    2017-07-04 10:01:00
102333    32993    527    2017-07-04 19:33:00    2017-07-04 19:33:00
102334    32993    642    2017-07-04 05:58:00    2017-07-04 05:58:00
102335    32994    488    2017-07-04 04:47:00    2017-07-04 04:47:00
102336    32994    867    2017-07-04 06:47:00    2017-07-04 06:47:00
102337    32994    476    2017-07-04 08:42:00    2017-07-04 08:42:00
102338    32994    476    2017-07-04 20:55:00    2017-07-04 20:55:00
102339    32994    579    2017-07-04 12:59:00    2017-07-04 12:59:00
102340    32995    699    2017-07-04 19:01:00    2017-07-04 19:01:00
102341    32995    904    2017-07-04 06:10:00    2017-07-04 06:10:00
102342    32995    690    2017-07-04 04:38:00    2017-07-04 04:38:00
102343    32995    934    2017-07-04 16:29:00    2017-07-04 16:29:00
102344    32995    491    2017-07-04 19:12:00    2017-07-04 19:12:00
102345    32996    843    2017-07-04 17:56:00    2017-07-04 17:56:00
102346    32996    682    2017-07-04 06:38:00    2017-07-04 06:38:00
102347    32996    647    2017-07-04 19:43:00    2017-07-04 19:43:00
102348    32996    704    2017-07-04 01:21:00    2017-07-04 01:21:00
102349    32996    738    2017-07-04 15:28:00    2017-07-04 15:28:00
102350    32997    776    2017-07-04 03:44:00    2017-07-04 03:44:00
102351    32997    720    2017-07-04 22:44:00    2017-07-04 22:44:00
102352    32997    698    2017-07-04 09:40:00    2017-07-04 09:40:00
102353    32997    811    2017-07-04 05:50:00    2017-07-04 05:50:00
102354    32997    889    2017-07-04 06:49:00    2017-07-04 06:49:00
102355    32998    543    2017-07-04 22:20:00    2017-07-04 22:20:00
102356    32998    615    2017-07-04 15:32:00    2017-07-04 15:32:00
102357    32998    638    2017-07-04 06:02:00    2017-07-04 06:02:00
102358    32998    588    2017-07-04 01:38:00    2017-07-04 01:38:00
102359    32998    684    2017-07-04 13:48:00    2017-07-04 13:48:00
102360    32999    827    2017-07-04 04:24:00    2017-07-04 04:24:00
102361    32999    674    2017-07-04 19:44:00    2017-07-04 19:44:00
102362    32999    795    2017-07-04 16:15:00    2017-07-04 16:15:00
102363    32999    800    2017-07-04 19:48:00    2017-07-04 19:48:00
102364    32999    670    2017-07-04 04:27:00    2017-07-04 04:27:00
102365    33000    876    2017-07-04 11:46:00    2017-07-04 11:46:00
102366    33000    833    2017-07-04 15:56:00    2017-07-04 15:56:00
102367    33000    700    2017-07-04 21:31:00    2017-07-04 21:31:00
102368    33000    549    2017-07-04 19:14:00    2017-07-04 19:14:00
102369    33000    609    2017-07-04 01:25:00    2017-07-04 01:25:00
102370    33001    570    2017-07-04 18:24:00    2017-07-04 18:24:00
102371    33001    737    2017-07-04 08:46:00    2017-07-04 08:46:00
102372    33001    719    2017-07-04 15:43:00    2017-07-04 15:43:00
102373    33001    628    2017-07-04 17:01:00    2017-07-04 17:01:00
102374    33001    958    2017-07-04 07:16:00    2017-07-04 07:16:00
102375    33002    849    2017-07-04 06:25:00    2017-07-04 06:25:00
102376    33002    740    2017-07-04 08:27:00    2017-07-04 08:27:00
102377    33002    543    2017-07-04 18:16:00    2017-07-04 18:16:00
102378    33002    937    2017-07-04 09:31:00    2017-07-04 09:31:00
102379    33002    770    2017-07-04 09:56:00    2017-07-04 09:56:00
102380    33003    919    2017-07-04 04:01:00    2017-07-04 04:01:00
102381    33003    651    2017-07-04 18:17:00    2017-07-04 18:17:00
102382    33003    628    2017-07-04 11:23:00    2017-07-04 11:23:00
102383    33003    785    2017-07-04 01:58:00    2017-07-04 01:58:00
102384    33003    846    2017-07-04 02:21:00    2017-07-04 02:21:00
102385    33004    740    2017-07-04 06:05:00    2017-07-04 06:05:00
102386    33004    824    2017-07-04 21:21:00    2017-07-04 21:21:00
102387    33004    906    2017-07-04 23:26:00    2017-07-04 23:26:00
102388    33004    762    2017-07-04 08:02:00    2017-07-04 08:02:00
102389    33004    843    2017-07-04 03:52:00    2017-07-04 03:52:00
102390    33005    782    2017-07-04 21:59:00    2017-07-04 21:59:00
102391    33005    778    2017-07-04 13:09:00    2017-07-04 13:09:00
102392    33005    569    2017-07-04 13:21:00    2017-07-04 13:21:00
102393    33005    706    2017-07-04 04:14:00    2017-07-04 04:14:00
102394    33005    797    2017-07-04 13:10:00    2017-07-04 13:10:00
102395    33006    550    2017-07-04 17:44:00    2017-07-04 17:44:00
102396    33006    846    2017-07-04 18:18:00    2017-07-04 18:18:00
102397    33006    611    2017-07-04 05:51:00    2017-07-04 05:51:00
102398    33006    763    2017-07-04 01:28:00    2017-07-04 01:28:00
102399    33006    541    2017-07-04 18:18:00    2017-07-04 18:18:00
102400    33007    894    2017-07-04 19:21:00    2017-07-04 19:21:00
102401    33007    959    2017-07-04 21:16:00    2017-07-04 21:16:00
102402    33007    506    2017-07-04 15:20:00    2017-07-04 15:20:00
102403    33007    633    2017-07-04 20:45:00    2017-07-04 20:45:00
102404    33007    722    2017-07-04 10:03:00    2017-07-04 10:03:00
102405    33008    657    2017-07-04 18:09:00    2017-07-04 18:09:00
102406    33008    674    2017-07-04 04:38:00    2017-07-04 04:38:00
102407    33008    784    2017-07-04 17:37:00    2017-07-04 17:37:00
102408    33008    921    2017-07-04 10:24:00    2017-07-04 10:24:00
102409    33008    697    2017-07-04 07:35:00    2017-07-04 07:35:00
102410    33009    479    2017-07-04 21:57:00    2017-07-04 21:57:00
102411    33009    666    2017-07-04 05:18:00    2017-07-04 05:18:00
102412    33009    517    2017-07-04 13:37:00    2017-07-04 13:37:00
102413    33009    725    2017-07-04 13:32:00    2017-07-04 13:32:00
102414    33009    803    2017-07-04 12:38:00    2017-07-04 12:38:00
102415    33010    783    2017-07-04 08:18:00    2017-07-04 08:18:00
102416    33010    667    2017-07-04 08:38:00    2017-07-04 08:38:00
102417    33010    663    2017-07-04 07:36:00    2017-07-04 07:36:00
102418    33010    464    2017-07-04 23:00:00    2017-07-04 23:00:00
102419    33010    530    2017-07-04 17:16:00    2017-07-04 17:16:00
102420    33011    761    2017-07-04 23:23:00    2017-07-04 23:23:00
102421    33011    857    2017-07-04 12:23:00    2017-07-04 12:23:00
102422    33011    864    2017-07-04 18:51:00    2017-07-04 18:51:00
102423    33011    528    2017-07-04 09:27:00    2017-07-04 09:27:00
102424    33011    900    2017-07-04 20:13:00    2017-07-04 20:13:00
102425    33012    843    2017-07-04 03:57:00    2017-07-04 03:57:00
102426    33012    580    2017-07-04 02:24:00    2017-07-04 02:24:00
102427    33012    939    2017-07-04 04:28:00    2017-07-04 04:28:00
102428    33012    741    2017-07-04 23:10:00    2017-07-04 23:10:00
102429    33012    932    2017-07-04 04:20:00    2017-07-04 04:20:00
102430    33013    579    2017-07-04 17:07:00    2017-07-04 17:07:00
102431    33013    511    2017-07-04 08:21:00    2017-07-04 08:21:00
102432    33013    579    2017-07-04 23:51:00    2017-07-04 23:51:00
102433    33013    615    2017-07-04 09:53:00    2017-07-04 09:53:00
102434    33013    841    2017-07-04 21:42:00    2017-07-04 21:42:00
102435    33014    911    2017-07-04 07:00:00    2017-07-04 07:00:00
102436    33014    787    2017-07-04 19:15:00    2017-07-04 19:15:00
102437    33014    705    2017-07-04 20:31:00    2017-07-04 20:31:00
102438    33014    759    2017-07-04 09:00:00    2017-07-04 09:00:00
102439    33014    845    2017-07-04 06:06:00    2017-07-04 06:06:00
102440    33015    733    2017-07-04 22:04:00    2017-07-04 22:04:00
102441    33015    567    2017-07-04 15:43:00    2017-07-04 15:43:00
102442    33015    820    2017-07-04 13:30:00    2017-07-04 13:30:00
102443    33015    630    2017-07-04 09:42:00    2017-07-04 09:42:00
102444    33015    913    2017-07-04 09:18:00    2017-07-04 09:18:00
102445    33016    831    2017-07-04 01:29:00    2017-07-04 01:29:00
102446    33016    590    2017-07-04 12:32:00    2017-07-04 12:32:00
102447    33016    853    2017-07-04 15:56:00    2017-07-04 15:56:00
102448    33016    632    2017-07-04 20:53:00    2017-07-04 20:53:00
102449    33016    604    2017-07-04 01:49:00    2017-07-04 01:49:00
102450    33017    907    2017-07-04 21:06:00    2017-07-04 21:06:00
102451    33017    845    2017-07-04 22:41:00    2017-07-04 22:41:00
102452    33017    537    2017-07-04 01:54:00    2017-07-04 01:54:00
102453    33017    728    2017-07-04 16:18:00    2017-07-04 16:18:00
102454    33017    701    2017-07-04 13:32:00    2017-07-04 13:32:00
102455    33018    809    2017-07-04 13:50:00    2017-07-04 13:50:00
102456    33018    475    2017-07-04 20:14:00    2017-07-04 20:14:00
102457    33018    699    2017-07-04 22:15:00    2017-07-04 22:15:00
102458    33018    710    2017-07-04 03:19:00    2017-07-04 03:19:00
102459    33018    688    2017-07-04 18:44:00    2017-07-04 18:44:00
102460    33019    824    2017-07-04 22:10:00    2017-07-04 22:10:00
102461    33019    495    2017-07-04 12:15:00    2017-07-04 12:15:00
102462    33019    744    2017-07-04 03:38:00    2017-07-04 03:38:00
102463    33019    542    2017-07-04 14:39:00    2017-07-04 14:39:00
102464    33019    805    2017-07-04 01:39:00    2017-07-04 01:39:00
102465    33020    563    2017-07-04 22:41:00    2017-07-04 22:41:00
102466    33020    645    2017-07-04 04:37:00    2017-07-04 04:37:00
102467    33020    917    2017-07-04 19:34:00    2017-07-04 19:34:00
102468    33020    897    2017-07-04 11:45:00    2017-07-04 11:45:00
102469    33020    948    2017-07-04 19:31:00    2017-07-04 19:31:00
102470    33021    773    2017-07-05 12:28:00    2017-07-05 12:28:00
102471    33021    641    2017-07-05 03:54:00    2017-07-05 03:54:00
102472    33021    487    2017-07-05 13:16:00    2017-07-05 13:16:00
102473    33021    807    2017-07-05 17:47:00    2017-07-05 17:47:00
102474    33021    472    2017-07-05 02:40:00    2017-07-05 02:40:00
102475    33022    568    2017-07-05 19:47:00    2017-07-05 19:47:00
102476    33022    568    2017-07-05 18:46:00    2017-07-05 18:46:00
102477    33022    589    2017-07-05 08:11:00    2017-07-05 08:11:00
102478    33022    483    2017-07-05 17:40:00    2017-07-05 17:40:00
102479    33022    682    2017-07-05 04:26:00    2017-07-05 04:26:00
102480    33023    797    2017-07-05 07:03:00    2017-07-05 07:03:00
102481    33023    827    2017-07-05 10:42:00    2017-07-05 10:42:00
102482    33023    605    2017-07-05 14:29:00    2017-07-05 14:29:00
102483    33023    789    2017-07-05 02:07:00    2017-07-05 02:07:00
102484    33023    506    2017-07-05 19:50:00    2017-07-05 19:50:00
102485    33024    919    2017-07-05 06:57:00    2017-07-05 06:57:00
102486    33024    834    2017-07-05 03:06:00    2017-07-05 03:06:00
102487    33024    911    2017-07-05 04:53:00    2017-07-05 04:53:00
102488    33024    592    2017-07-05 02:46:00    2017-07-05 02:46:00
102489    33024    839    2017-07-05 02:09:00    2017-07-05 02:09:00
102490    33025    900    2017-07-05 20:54:00    2017-07-05 20:54:00
102491    33025    709    2017-07-05 18:03:00    2017-07-05 18:03:00
102492    33025    499    2017-07-05 05:21:00    2017-07-05 05:21:00
102493    33025    629    2017-07-05 15:01:00    2017-07-05 15:01:00
102494    33025    871    2017-07-05 13:51:00    2017-07-05 13:51:00
102495    33026    747    2017-07-05 07:17:00    2017-07-05 07:17:00
102496    33026    822    2017-07-05 04:12:00    2017-07-05 04:12:00
102497    33026    842    2017-07-05 11:13:00    2017-07-05 11:13:00
102498    33026    774    2017-07-05 03:09:00    2017-07-05 03:09:00
102499    33026    901    2017-07-05 05:12:00    2017-07-05 05:12:00
102500    33027    739    2017-07-05 23:05:00    2017-07-05 23:05:00
102501    33027    785    2017-07-05 01:50:00    2017-07-05 01:50:00
102502    33027    645    2017-07-05 10:10:00    2017-07-05 10:10:00
102503    33027    489    2017-07-05 10:07:00    2017-07-05 10:07:00
102504    33027    643    2017-07-05 12:04:00    2017-07-05 12:04:00
102505    33028    583    2017-07-05 12:09:00    2017-07-05 12:09:00
102506    33028    932    2017-07-05 05:38:00    2017-07-05 05:38:00
102507    33028    678    2017-07-05 07:37:00    2017-07-05 07:37:00
102508    33028    597    2017-07-05 19:59:00    2017-07-05 19:59:00
102509    33028    616    2017-07-05 10:35:00    2017-07-05 10:35:00
102510    33029    881    2017-07-05 15:58:00    2017-07-05 15:58:00
102511    33029    622    2017-07-05 06:36:00    2017-07-05 06:36:00
102512    33029    910    2017-07-05 04:09:00    2017-07-05 04:09:00
102513    33029    622    2017-07-05 13:54:00    2017-07-05 13:54:00
102514    33029    656    2017-07-05 04:17:00    2017-07-05 04:17:00
102515    33030    547    2017-07-05 18:02:00    2017-07-05 18:02:00
102516    33030    928    2017-07-05 17:09:00    2017-07-05 17:09:00
102517    33030    603    2017-07-05 10:38:00    2017-07-05 10:38:00
102518    33030    467    2017-07-05 11:05:00    2017-07-05 11:05:00
102519    33030    506    2017-07-05 14:08:00    2017-07-05 14:08:00
102520    33031    587    2017-07-05 07:17:00    2017-07-05 07:17:00
102521    33031    550    2017-07-05 21:30:00    2017-07-05 21:30:00
102522    33031    513    2017-07-05 02:17:00    2017-07-05 02:17:00
102523    33031    754    2017-07-05 09:42:00    2017-07-05 09:42:00
102524    33031    843    2017-07-05 14:22:00    2017-07-05 14:22:00
102525    33032    774    2017-07-05 14:39:00    2017-07-05 14:39:00
102526    33032    895    2017-07-05 05:19:00    2017-07-05 05:19:00
102527    33032    645    2017-07-05 03:43:00    2017-07-05 03:43:00
102528    33032    826    2017-07-05 11:16:00    2017-07-05 11:16:00
102529    33032    649    2017-07-05 16:32:00    2017-07-05 16:32:00
102530    33033    810    2017-07-05 07:15:00    2017-07-05 07:15:00
102531    33033    657    2017-07-05 17:00:00    2017-07-05 17:00:00
102532    33033    662    2017-07-05 06:00:00    2017-07-05 06:00:00
102533    33033    478    2017-07-05 14:00:00    2017-07-05 14:00:00
102534    33033    836    2017-07-05 09:45:00    2017-07-05 09:45:00
102535    33034    941    2017-07-05 05:03:00    2017-07-05 05:03:00
102536    33034    900    2017-07-05 02:19:00    2017-07-05 02:19:00
102537    33034    515    2017-07-05 07:34:00    2017-07-05 07:34:00
102538    33034    529    2017-07-05 23:04:00    2017-07-05 23:04:00
102539    33034    611    2017-07-05 06:33:00    2017-07-05 06:33:00
102540    33035    733    2017-07-05 08:07:00    2017-07-05 08:07:00
102541    33035    603    2017-07-05 05:40:00    2017-07-05 05:40:00
102542    33035    851    2017-07-05 12:33:00    2017-07-05 12:33:00
102543    33035    470    2017-07-05 08:41:00    2017-07-05 08:41:00
102544    33035    796    2017-07-05 21:00:00    2017-07-05 21:00:00
102545    33036    717    2017-07-05 16:50:00    2017-07-05 16:50:00
102546    33036    926    2017-07-05 07:22:00    2017-07-05 07:22:00
102547    33036    816    2017-07-05 01:40:00    2017-07-05 01:40:00
102548    33036    932    2017-07-05 01:30:00    2017-07-05 01:30:00
102549    33036    797    2017-07-05 14:00:00    2017-07-05 14:00:00
102550    33037    786    2017-07-05 19:12:00    2017-07-05 19:12:00
102551    33037    792    2017-07-05 01:07:00    2017-07-05 01:07:00
102552    33037    567    2017-07-05 21:38:00    2017-07-05 21:38:00
102553    33037    621    2017-07-05 06:31:00    2017-07-05 06:31:00
102554    33037    928    2017-07-05 13:34:00    2017-07-05 13:34:00
102555    33038    907    2017-07-05 03:44:00    2017-07-05 03:44:00
102556    33038    747    2017-07-05 11:12:00    2017-07-05 11:12:00
102557    33038    815    2017-07-05 03:42:00    2017-07-05 03:42:00
102558    33038    936    2017-07-05 07:27:00    2017-07-05 07:27:00
102559    33038    643    2017-07-05 21:46:00    2017-07-05 21:46:00
102560    33039    484    2017-07-05 16:19:00    2017-07-05 16:19:00
102561    33039    737    2017-07-05 11:51:00    2017-07-05 11:51:00
102562    33039    740    2017-07-05 03:54:00    2017-07-05 03:54:00
102563    33039    843    2017-07-05 23:40:00    2017-07-05 23:40:00
102564    33039    616    2017-07-05 23:54:00    2017-07-05 23:54:00
102565    33040    924    2017-07-05 22:31:00    2017-07-05 22:31:00
102566    33040    510    2017-07-05 07:52:00    2017-07-05 07:52:00
102567    33040    870    2017-07-05 20:27:00    2017-07-05 20:27:00
102568    33040    691    2017-07-05 04:02:00    2017-07-05 04:02:00
102569    33040    670    2017-07-05 11:43:00    2017-07-05 11:43:00
102570    33041    895    2017-07-05 17:48:00    2017-07-05 17:48:00
102571    33041    757    2017-07-05 01:56:00    2017-07-05 01:56:00
102572    33041    903    2017-07-05 12:40:00    2017-07-05 12:40:00
102573    33041    697    2017-07-05 23:35:00    2017-07-05 23:35:00
102574    33041    765    2017-07-05 20:25:00    2017-07-05 20:25:00
102575    33042    829    2017-07-05 20:00:00    2017-07-05 20:00:00
102576    33042    769    2017-07-05 07:00:00    2017-07-05 07:00:00
102577    33042    573    2017-07-05 10:37:00    2017-07-05 10:37:00
102578    33042    867    2017-07-05 22:43:00    2017-07-05 22:43:00
102579    33042    666    2017-07-05 17:35:00    2017-07-05 17:35:00
102580    33043    620    2017-07-05 21:12:00    2017-07-05 21:12:00
102581    33043    824    2017-07-05 01:49:00    2017-07-05 01:49:00
102582    33043    724    2017-07-05 23:21:00    2017-07-05 23:21:00
102583    33043    646    2017-07-05 01:09:00    2017-07-05 01:09:00
102584    33043    611    2017-07-05 08:18:00    2017-07-05 08:18:00
102585    33044    891    2017-07-05 08:20:00    2017-07-05 08:20:00
102586    33044    473    2017-07-05 15:19:00    2017-07-05 15:19:00
102587    33044    687    2017-07-05 23:12:00    2017-07-05 23:12:00
102588    33044    710    2017-07-05 06:16:00    2017-07-05 06:16:00
102589    33044    735    2017-07-05 15:46:00    2017-07-05 15:46:00
102590    33045    491    2017-07-05 16:24:00    2017-07-05 16:24:00
102591    33045    697    2017-07-05 16:51:00    2017-07-05 16:51:00
102592    33045    722    2017-07-05 16:47:00    2017-07-05 16:47:00
102593    33045    559    2017-07-05 11:30:00    2017-07-05 11:30:00
102594    33045    600    2017-07-05 16:30:00    2017-07-05 16:30:00
102595    33046    641    2017-07-05 22:44:00    2017-07-05 22:44:00
102596    33046    792    2017-07-05 15:50:00    2017-07-05 15:50:00
102597    33046    712    2017-07-05 20:53:00    2017-07-05 20:53:00
102598    33046    706    2017-07-05 18:39:00    2017-07-05 18:39:00
102599    33046    765    2017-07-05 16:54:00    2017-07-05 16:54:00
102600    33047    571    2017-07-05 07:41:00    2017-07-05 07:41:00
102601    33047    722    2017-07-05 18:52:00    2017-07-05 18:52:00
102602    33047    915    2017-07-05 11:13:00    2017-07-05 11:13:00
102603    33047    903    2017-07-05 15:15:00    2017-07-05 15:15:00
102604    33047    882    2017-07-05 19:27:00    2017-07-05 19:27:00
102605    33048    545    2017-07-05 01:57:00    2017-07-05 01:57:00
102606    33048    561    2017-07-05 16:26:00    2017-07-05 16:26:00
102607    33048    517    2017-07-05 22:43:00    2017-07-05 22:43:00
102608    33048    494    2017-07-05 20:27:00    2017-07-05 20:27:00
102609    33048    482    2017-07-05 21:10:00    2017-07-05 21:10:00
102610    33049    544    2017-07-05 10:48:00    2017-07-05 10:48:00
102611    33049    596    2017-07-05 04:22:00    2017-07-05 04:22:00
102612    33049    917    2017-07-05 16:36:00    2017-07-05 16:36:00
102613    33049    469    2017-07-05 22:52:00    2017-07-05 22:52:00
102614    33049    630    2017-07-05 22:30:00    2017-07-05 22:30:00
102615    33050    634    2017-07-05 21:48:00    2017-07-05 21:48:00
102616    33050    813    2017-07-05 14:24:00    2017-07-05 14:24:00
102617    33050    841    2017-07-05 15:30:00    2017-07-05 15:30:00
102618    33050    922    2017-07-05 16:09:00    2017-07-05 16:09:00
102619    33050    568    2017-07-05 23:05:00    2017-07-05 23:05:00
102620    33051    710    2017-07-06 18:23:00    2017-07-06 18:23:00
102621    33051    915    2017-07-06 17:51:00    2017-07-06 17:51:00
102622    33051    599    2017-07-06 02:53:00    2017-07-06 02:53:00
102623    33051    838    2017-07-06 02:29:00    2017-07-06 02:29:00
102624    33051    893    2017-07-06 20:58:00    2017-07-06 20:58:00
102625    33052    702    2017-07-06 18:21:00    2017-07-06 18:21:00
102626    33052    524    2017-07-06 17:40:00    2017-07-06 17:40:00
102627    33052    596    2017-07-06 13:52:00    2017-07-06 13:52:00
102628    33052    567    2017-07-06 10:04:00    2017-07-06 10:04:00
102629    33052    543    2017-07-06 15:01:00    2017-07-06 15:01:00
102630    33053    743    2017-07-06 10:30:00    2017-07-06 10:30:00
102631    33053    570    2017-07-06 10:52:00    2017-07-06 10:52:00
102632    33053    677    2017-07-06 04:59:00    2017-07-06 04:59:00
102633    33053    805    2017-07-06 08:46:00    2017-07-06 08:46:00
102634    33053    908    2017-07-06 12:54:00    2017-07-06 12:54:00
102635    33054    728    2017-07-06 13:53:00    2017-07-06 13:53:00
102636    33054    493    2017-07-06 06:16:00    2017-07-06 06:16:00
102637    33054    772    2017-07-06 15:43:00    2017-07-06 15:43:00
102638    33054    602    2017-07-06 04:41:00    2017-07-06 04:41:00
102639    33054    779    2017-07-06 04:24:00    2017-07-06 04:24:00
102640    33055    609    2017-07-06 13:49:00    2017-07-06 13:49:00
102641    33055    771    2017-07-06 05:27:00    2017-07-06 05:27:00
102642    33055    884    2017-07-06 13:42:00    2017-07-06 13:42:00
102643    33055    688    2017-07-06 06:42:00    2017-07-06 06:42:00
102644    33055    868    2017-07-06 15:35:00    2017-07-06 15:35:00
102645    33056    638    2017-07-06 08:24:00    2017-07-06 08:24:00
102646    33056    693    2017-07-06 16:47:00    2017-07-06 16:47:00
102647    33056    779    2017-07-06 19:09:00    2017-07-06 19:09:00
102648    33056    549    2017-07-06 09:40:00    2017-07-06 09:40:00
102649    33056    692    2017-07-06 12:39:00    2017-07-06 12:39:00
102650    33057    525    2017-07-06 23:37:00    2017-07-06 23:37:00
102651    33057    851    2017-07-06 21:43:00    2017-07-06 21:43:00
102652    33057    517    2017-07-06 07:27:00    2017-07-06 07:27:00
102653    33057    768    2017-07-06 14:02:00    2017-07-06 14:02:00
102654    33057    868    2017-07-06 11:48:00    2017-07-06 11:48:00
102655    33058    621    2017-07-06 04:09:00    2017-07-06 04:09:00
102656    33058    849    2017-07-06 03:37:00    2017-07-06 03:37:00
102657    33058    880    2017-07-06 12:45:00    2017-07-06 12:45:00
102658    33058    520    2017-07-06 01:15:00    2017-07-06 01:15:00
102659    33058    792    2017-07-06 21:16:00    2017-07-06 21:16:00
102660    33059    745    2017-07-06 16:04:00    2017-07-06 16:04:00
102661    33059    578    2017-07-06 16:51:00    2017-07-06 16:51:00
102662    33059    678    2017-07-06 15:02:00    2017-07-06 15:02:00
102663    33059    901    2017-07-06 08:00:00    2017-07-06 08:00:00
102664    33059    788    2017-07-06 14:18:00    2017-07-06 14:18:00
102665    33060    808    2017-07-06 06:40:00    2017-07-06 06:40:00
102666    33060    792    2017-07-06 20:28:00    2017-07-06 20:28:00
102667    33060    797    2017-07-06 04:17:00    2017-07-06 04:17:00
102668    33060    769    2017-07-06 09:31:00    2017-07-06 09:31:00
102669    33060    493    2017-07-06 12:45:00    2017-07-06 12:45:00
102670    33061    843    2017-07-06 21:46:00    2017-07-06 21:46:00
102671    33061    822    2017-07-06 11:16:00    2017-07-06 11:16:00
102672    33061    855    2017-07-06 15:35:00    2017-07-06 15:35:00
102673    33061    577    2017-07-06 12:36:00    2017-07-06 12:36:00
102674    33061    717    2017-07-06 07:31:00    2017-07-06 07:31:00
102675    33062    823    2017-07-06 17:17:00    2017-07-06 17:17:00
102676    33062    743    2017-07-06 19:22:00    2017-07-06 19:22:00
102677    33062    845    2017-07-06 08:14:00    2017-07-06 08:14:00
102678    33062    866    2017-07-06 14:11:00    2017-07-06 14:11:00
102679    33062    475    2017-07-06 14:35:00    2017-07-06 14:35:00
102680    33063    477    2017-07-06 18:16:00    2017-07-06 18:16:00
102681    33063    898    2017-07-06 10:00:00    2017-07-06 10:00:00
102682    33063    605    2017-07-06 22:55:00    2017-07-06 22:55:00
102683    33063    482    2017-07-06 18:11:00    2017-07-06 18:11:00
102684    33063    843    2017-07-06 06:15:00    2017-07-06 06:15:00
102685    33064    843    2017-07-06 03:51:00    2017-07-06 03:51:00
102686    33064    731    2017-07-06 13:53:00    2017-07-06 13:53:00
102687    33064    959    2017-07-06 21:19:00    2017-07-06 21:19:00
102688    33064    671    2017-07-06 02:19:00    2017-07-06 02:19:00
102689    33064    805    2017-07-06 21:54:00    2017-07-06 21:54:00
102690    33065    838    2017-07-06 21:17:00    2017-07-06 21:17:00
102691    33065    492    2017-07-06 14:00:00    2017-07-06 14:00:00
102692    33065    605    2017-07-06 04:02:00    2017-07-06 04:02:00
102693    33065    510    2017-07-06 08:00:00    2017-07-06 08:00:00
102694    33065    470    2017-07-06 23:23:00    2017-07-06 23:23:00
102695    33066    600    2017-07-06 15:15:00    2017-07-06 15:15:00
102696    33066    643    2017-07-06 22:58:00    2017-07-06 22:58:00
102697    33066    955    2017-07-06 23:05:00    2017-07-06 23:05:00
102698    33066    680    2017-07-06 17:50:00    2017-07-06 17:50:00
102699    33066    481    2017-07-06 04:18:00    2017-07-06 04:18:00
102700    33067    677    2017-07-06 11:52:00    2017-07-06 11:52:00
102701    33067    901    2017-07-06 02:17:00    2017-07-06 02:17:00
102702    33067    927    2017-07-06 16:20:00    2017-07-06 16:20:00
102703    33067    477    2017-07-06 16:09:00    2017-07-06 16:09:00
102704    33067    910    2017-07-06 19:29:00    2017-07-06 19:29:00
102705    33068    671    2017-07-06 06:00:00    2017-07-06 06:00:00
102706    33068    573    2017-07-06 03:12:00    2017-07-06 03:12:00
102707    33068    949    2017-07-06 07:39:00    2017-07-06 07:39:00
102708    33068    667    2017-07-06 10:15:00    2017-07-06 10:15:00
102709    33068    697    2017-07-06 18:40:00    2017-07-06 18:40:00
102710    33069    949    2017-07-06 07:59:00    2017-07-06 07:59:00
102711    33069    755    2017-07-06 06:19:00    2017-07-06 06:19:00
102712    33069    922    2017-07-06 12:38:00    2017-07-06 12:38:00
102713    33069    914    2017-07-06 17:05:00    2017-07-06 17:05:00
102714    33069    559    2017-07-06 09:48:00    2017-07-06 09:48:00
102715    33070    805    2017-07-06 05:23:00    2017-07-06 05:23:00
102716    33070    574    2017-07-06 11:12:00    2017-07-06 11:12:00
102717    33070    544    2017-07-06 14:56:00    2017-07-06 14:56:00
102718    33070    555    2017-07-06 17:31:00    2017-07-06 17:31:00
102719    33070    465    2017-07-06 10:20:00    2017-07-06 10:20:00
102720    33071    713    2017-07-06 10:56:00    2017-07-06 10:56:00
102721    33071    797    2017-07-06 19:51:00    2017-07-06 19:51:00
102722    33071    780    2017-07-06 07:43:00    2017-07-06 07:43:00
102723    33071    912    2017-07-06 02:52:00    2017-07-06 02:52:00
102724    33071    884    2017-07-06 02:38:00    2017-07-06 02:38:00
102725    33072    606    2017-07-06 21:46:00    2017-07-06 21:46:00
102726    33072    764    2017-07-06 21:47:00    2017-07-06 21:47:00
102727    33072    938    2017-07-06 19:43:00    2017-07-06 19:43:00
102728    33072    930    2017-07-06 03:40:00    2017-07-06 03:40:00
102729    33072    617    2017-07-06 23:22:00    2017-07-06 23:22:00
102730    33073    694    2017-07-06 23:22:00    2017-07-06 23:22:00
102731    33073    468    2017-07-06 16:21:00    2017-07-06 16:21:00
102732    33073    487    2017-07-06 23:35:00    2017-07-06 23:35:00
102733    33073    741    2017-07-06 21:31:00    2017-07-06 21:31:00
102734    33073    838    2017-07-06 01:24:00    2017-07-06 01:24:00
102735    33074    566    2017-07-06 01:02:00    2017-07-06 01:02:00
102736    33074    840    2017-07-06 12:57:00    2017-07-06 12:57:00
102737    33074    527    2017-07-06 20:06:00    2017-07-06 20:06:00
102738    33074    705    2017-07-06 18:02:00    2017-07-06 18:02:00
102739    33074    827    2017-07-06 12:06:00    2017-07-06 12:06:00
102740    33075    931    2017-07-06 12:34:00    2017-07-06 12:34:00
102741    33075    633    2017-07-06 12:31:00    2017-07-06 12:31:00
102742    33075    641    2017-07-06 18:29:00    2017-07-06 18:29:00
102743    33075    814    2017-07-06 18:17:00    2017-07-06 18:17:00
102744    33075    806    2017-07-06 04:29:00    2017-07-06 04:29:00
102745    33076    701    2017-07-06 06:31:00    2017-07-06 06:31:00
102746    33076    744    2017-07-06 18:04:00    2017-07-06 18:04:00
102747    33076    926    2017-07-06 09:20:00    2017-07-06 09:20:00
102748    33076    795    2017-07-06 12:10:00    2017-07-06 12:10:00
102749    33076    463    2017-07-06 21:40:00    2017-07-06 21:40:00
102750    33077    782    2017-07-06 10:43:00    2017-07-06 10:43:00
102751    33077    541    2017-07-06 20:50:00    2017-07-06 20:50:00
102752    33077    579    2017-07-06 06:04:00    2017-07-06 06:04:00
102753    33077    665    2017-07-06 12:06:00    2017-07-06 12:06:00
102754    33077    685    2017-07-06 22:59:00    2017-07-06 22:59:00
102755    33078    577    2017-07-06 18:47:00    2017-07-06 18:47:00
102756    33078    951    2017-07-06 20:14:00    2017-07-06 20:14:00
102757    33078    619    2017-07-06 03:49:00    2017-07-06 03:49:00
102758    33078    856    2017-07-06 02:24:00    2017-07-06 02:24:00
102759    33078    602    2017-07-06 15:05:00    2017-07-06 15:05:00
102760    33079    895    2017-07-06 03:49:00    2017-07-06 03:49:00
102761    33079    653    2017-07-06 13:35:00    2017-07-06 13:35:00
102762    33079    602    2017-07-06 17:36:00    2017-07-06 17:36:00
102763    33079    690    2017-07-06 14:57:00    2017-07-06 14:57:00
102764    33079    953    2017-07-06 20:12:00    2017-07-06 20:12:00
102765    33080    800    2017-07-06 08:06:00    2017-07-06 08:06:00
102766    33080    870    2017-07-06 05:34:00    2017-07-06 05:34:00
102767    33080    690    2017-07-06 04:55:00    2017-07-06 04:55:00
102768    33080    866    2017-07-06 11:36:00    2017-07-06 11:36:00
102769    33080    944    2017-07-06 07:00:00    2017-07-06 07:00:00
102770    33081    856    2017-07-06 17:58:00    2017-07-06 17:58:00
102771    33081    639    2017-07-06 14:12:00    2017-07-06 14:12:00
102772    33081    615    2017-07-06 05:29:00    2017-07-06 05:29:00
102773    33081    708    2017-07-06 23:20:00    2017-07-06 23:20:00
102774    33081    938    2017-07-06 08:48:00    2017-07-06 08:48:00
102775    33082    957    2017-07-06 06:00:00    2017-07-06 06:00:00
102776    33082    939    2017-07-06 06:46:00    2017-07-06 06:46:00
102777    33082    499    2017-07-06 01:03:00    2017-07-06 01:03:00
102778    33082    501    2017-07-06 05:42:00    2017-07-06 05:42:00
102779    33082    890    2017-07-06 11:56:00    2017-07-06 11:56:00
102780    33083    483    2017-07-06 20:14:00    2017-07-06 20:14:00
102781    33083    705    2017-07-06 03:33:00    2017-07-06 03:33:00
102782    33083    571    2017-07-06 01:11:00    2017-07-06 01:11:00
102783    33083    514    2017-07-06 09:35:00    2017-07-06 09:35:00
102784    33083    767    2017-07-06 18:00:00    2017-07-06 18:00:00
102785    33084    811    2017-07-06 06:27:00    2017-07-06 06:27:00
102786    33084    567    2017-07-06 20:49:00    2017-07-06 20:49:00
102787    33084    463    2017-07-06 14:40:00    2017-07-06 14:40:00
102788    33084    816    2017-07-06 17:02:00    2017-07-06 17:02:00
102789    33084    619    2017-07-06 11:38:00    2017-07-06 11:38:00
102790    33085    568    2017-07-06 06:12:00    2017-07-06 06:12:00
102791    33085    536    2017-07-06 02:01:00    2017-07-06 02:01:00
102792    33085    693    2017-07-06 03:20:00    2017-07-06 03:20:00
102793    33085    822    2017-07-06 16:32:00    2017-07-06 16:32:00
102794    33085    683    2017-07-06 02:53:00    2017-07-06 02:53:00
102795    33086    944    2017-07-06 18:46:00    2017-07-06 18:46:00
102796    33086    801    2017-07-06 16:33:00    2017-07-06 16:33:00
102797    33086    922    2017-07-06 15:14:00    2017-07-06 15:14:00
102798    33086    792    2017-07-06 11:09:00    2017-07-06 11:09:00
102799    33086    603    2017-07-06 06:48:00    2017-07-06 06:48:00
102800    33087    619    2017-07-06 20:59:00    2017-07-06 20:59:00
102801    33087    647    2017-07-06 23:47:00    2017-07-06 23:47:00
102802    33087    760    2017-07-06 09:37:00    2017-07-06 09:37:00
102803    33087    912    2017-07-06 07:20:00    2017-07-06 07:20:00
102804    33087    722    2017-07-06 23:01:00    2017-07-06 23:01:00
102805    33088    905    2017-07-06 14:52:00    2017-07-06 14:52:00
102806    33088    711    2017-07-06 20:14:00    2017-07-06 20:14:00
102807    33088    796    2017-07-06 14:26:00    2017-07-06 14:26:00
102808    33088    960    2017-07-06 04:14:00    2017-07-06 04:14:00
102809    33088    731    2017-07-06 05:53:00    2017-07-06 05:53:00
102810    33089    497    2017-07-06 13:42:00    2017-07-06 13:42:00
102811    33089    649    2017-07-06 01:45:00    2017-07-06 01:45:00
102812    33089    796    2017-07-06 23:27:00    2017-07-06 23:27:00
102813    33089    851    2017-07-06 14:38:00    2017-07-06 14:38:00
102814    33089    564    2017-07-06 04:59:00    2017-07-06 04:59:00
102815    33090    850    2017-07-06 04:30:00    2017-07-06 04:30:00
102816    33090    643    2017-07-06 14:56:00    2017-07-06 14:56:00
102817    33090    715    2017-07-06 06:15:00    2017-07-06 06:15:00
102818    33090    776    2017-07-06 23:26:00    2017-07-06 23:26:00
102819    33090    557    2017-07-06 18:42:00    2017-07-06 18:42:00
102820    33091    626    2017-07-06 11:09:00    2017-07-06 11:09:00
102821    33091    533    2017-07-06 08:32:00    2017-07-06 08:32:00
102822    33091    908    2017-07-06 03:10:00    2017-07-06 03:10:00
102823    33091    834    2017-07-06 16:23:00    2017-07-06 16:23:00
102824    33091    557    2017-07-06 13:14:00    2017-07-06 13:14:00
102825    33092    762    2017-07-06 04:02:00    2017-07-06 04:02:00
102826    33092    621    2017-07-06 03:10:00    2017-07-06 03:10:00
102827    33092    954    2017-07-06 23:39:00    2017-07-06 23:39:00
102828    33092    955    2017-07-06 17:39:00    2017-07-06 17:39:00
102829    33092    688    2017-07-06 06:41:00    2017-07-06 06:41:00
102830    33093    682    2017-07-06 06:56:00    2017-07-06 06:56:00
102831    33093    781    2017-07-06 14:30:00    2017-07-06 14:30:00
102832    33093    587    2017-07-06 20:07:00    2017-07-06 20:07:00
102833    33093    897    2017-07-06 02:33:00    2017-07-06 02:33:00
102834    33093    499    2017-07-06 06:58:00    2017-07-06 06:58:00
102835    33094    710    2017-07-06 13:01:00    2017-07-06 13:01:00
102836    33094    936    2017-07-06 08:32:00    2017-07-06 08:32:00
102837    33094    561    2017-07-06 21:30:00    2017-07-06 21:30:00
102838    33094    909    2017-07-06 17:47:00    2017-07-06 17:47:00
102839    33094    726    2017-07-06 23:00:00    2017-07-06 23:00:00
102840    33095    607    2017-07-06 09:41:00    2017-07-06 09:41:00
102841    33095    622    2017-07-06 04:25:00    2017-07-06 04:25:00
102842    33095    937    2017-07-06 10:08:00    2017-07-06 10:08:00
102843    33095    569    2017-07-06 14:03:00    2017-07-06 14:03:00
102844    33095    572    2017-07-06 18:52:00    2017-07-06 18:52:00
102845    33096    800    2017-07-06 07:14:00    2017-07-06 07:14:00
102846    33096    636    2017-07-06 19:24:00    2017-07-06 19:24:00
102847    33096    838    2017-07-06 17:28:00    2017-07-06 17:28:00
102848    33096    834    2017-07-06 15:42:00    2017-07-06 15:42:00
102849    33096    773    2017-07-06 09:17:00    2017-07-06 09:17:00
102850    33097    499    2017-07-07 15:51:00    2017-07-07 15:51:00
102851    33097    598    2017-07-07 22:42:00    2017-07-07 22:42:00
102852    33097    608    2017-07-07 11:08:00    2017-07-07 11:08:00
102853    33097    843    2017-07-07 14:27:00    2017-07-07 14:27:00
102854    33097    888    2017-07-07 19:11:00    2017-07-07 19:11:00
102855    33098    548    2017-07-07 04:58:00    2017-07-07 04:58:00
102856    33098    881    2017-07-07 17:41:00    2017-07-07 17:41:00
102857    33098    546    2017-07-07 09:08:00    2017-07-07 09:08:00
102858    33098    684    2017-07-07 12:53:00    2017-07-07 12:53:00
102859    33098    706    2017-07-07 17:46:00    2017-07-07 17:46:00
102860    33099    892    2017-07-07 23:07:00    2017-07-07 23:07:00
102861    33099    728    2017-07-07 05:22:00    2017-07-07 05:22:00
102862    33099    956    2017-07-07 15:19:00    2017-07-07 15:19:00
102863    33099    668    2017-07-07 03:33:00    2017-07-07 03:33:00
102864    33099    671    2017-07-07 16:12:00    2017-07-07 16:12:00
102865    33100    620    2017-07-07 06:16:00    2017-07-07 06:16:00
102866    33100    956    2017-07-07 05:50:00    2017-07-07 05:50:00
102867    33100    657    2017-07-07 03:24:00    2017-07-07 03:24:00
102868    33100    769    2017-07-07 23:32:00    2017-07-07 23:32:00
102869    33100    611    2017-07-07 14:55:00    2017-07-07 14:55:00
102870    33101    819    2017-07-07 15:06:00    2017-07-07 15:06:00
102871    33101    742    2017-07-07 17:47:00    2017-07-07 17:47:00
102872    33101    886    2017-07-07 05:22:00    2017-07-07 05:22:00
102873    33101    697    2017-07-07 18:20:00    2017-07-07 18:20:00
102874    33101    737    2017-07-07 08:50:00    2017-07-07 08:50:00
102875    33102    542    2017-07-07 11:51:00    2017-07-07 11:51:00
102876    33102    725    2017-07-07 20:12:00    2017-07-07 20:12:00
102877    33102    658    2017-07-07 12:59:00    2017-07-07 12:59:00
102878    33102    485    2017-07-07 07:27:00    2017-07-07 07:27:00
102879    33102    799    2017-07-07 06:47:00    2017-07-07 06:47:00
102880    33103    863    2017-07-07 04:29:00    2017-07-07 04:29:00
102881    33103    660    2017-07-07 12:33:00    2017-07-07 12:33:00
102882    33103    816    2017-07-07 05:48:00    2017-07-07 05:48:00
102883    33103    841    2017-07-07 23:42:00    2017-07-07 23:42:00
102884    33103    576    2017-07-07 21:15:00    2017-07-07 21:15:00
102885    33104    949    2017-07-07 08:28:00    2017-07-07 08:28:00
102886    33104    843    2017-07-07 23:03:00    2017-07-07 23:03:00
102887    33104    842    2017-07-07 17:15:00    2017-07-07 17:15:00
102888    33104    572    2017-07-07 20:22:00    2017-07-07 20:22:00
102889    33104    511    2017-07-07 06:20:00    2017-07-07 06:20:00
102890    33105    559    2017-07-07 16:30:00    2017-07-07 16:30:00
102891    33105    961    2017-07-07 19:29:00    2017-07-07 19:29:00
102892    33105    901    2017-07-07 22:58:00    2017-07-07 22:58:00
102893    33105    748    2017-07-07 05:05:00    2017-07-07 05:05:00
102894    33105    535    2017-07-07 12:13:00    2017-07-07 12:13:00
102895    33106    496    2017-07-07 09:20:00    2017-07-07 09:20:00
102896    33106    692    2017-07-07 21:30:00    2017-07-07 21:30:00
102897    33106    921    2017-07-07 20:21:00    2017-07-07 20:21:00
102898    33106    892    2017-07-07 09:07:00    2017-07-07 09:07:00
102899    33106    788    2017-07-07 19:25:00    2017-07-07 19:25:00
102900    33107    950    2017-07-07 17:11:00    2017-07-07 17:11:00
102901    33107    571    2017-07-07 15:20:00    2017-07-07 15:20:00
102902    33107    865    2017-07-07 10:26:00    2017-07-07 10:26:00
102903    33107    741    2017-07-07 21:13:00    2017-07-07 21:13:00
102904    33107    877    2017-07-07 02:12:00    2017-07-07 02:12:00
102905    33108    940    2017-07-07 06:35:00    2017-07-07 06:35:00
102906    33108    679    2017-07-07 12:44:00    2017-07-07 12:44:00
102907    33108    800    2017-07-07 11:44:00    2017-07-07 11:44:00
102908    33108    904    2017-07-07 21:56:00    2017-07-07 21:56:00
102909    33108    768    2017-07-07 22:11:00    2017-07-07 22:11:00
102910    33109    469    2017-07-07 16:03:00    2017-07-07 16:03:00
102911    33109    738    2017-07-07 05:15:00    2017-07-07 05:15:00
102912    33109    910    2017-07-07 16:35:00    2017-07-07 16:35:00
102913    33109    614    2017-07-07 04:24:00    2017-07-07 04:24:00
102914    33109    733    2017-07-07 02:41:00    2017-07-07 02:41:00
102915    33110    773    2017-07-07 16:50:00    2017-07-07 16:50:00
102916    33110    685    2017-07-07 13:03:00    2017-07-07 13:03:00
102917    33110    836    2017-07-07 02:52:00    2017-07-07 02:52:00
102918    33110    486    2017-07-07 02:50:00    2017-07-07 02:50:00
102919    33110    883    2017-07-07 22:27:00    2017-07-07 22:27:00
102920    33111    559    2017-07-07 09:24:00    2017-07-07 09:24:00
102921    33111    827    2017-07-07 17:17:00    2017-07-07 17:17:00
102922    33111    512    2017-07-07 16:00:00    2017-07-07 16:00:00
102923    33111    923    2017-07-07 07:21:00    2017-07-07 07:21:00
102924    33111    504    2017-07-07 19:36:00    2017-07-07 19:36:00
102925    33112    564    2017-07-07 02:14:00    2017-07-07 02:14:00
102926    33112    765    2017-07-07 13:42:00    2017-07-07 13:42:00
102927    33112    536    2017-07-07 16:31:00    2017-07-07 16:31:00
102928    33112    521    2017-07-07 09:23:00    2017-07-07 09:23:00
102929    33112    889    2017-07-07 17:34:00    2017-07-07 17:34:00
102930    33113    519    2017-07-07 21:37:00    2017-07-07 21:37:00
102931    33113    949    2017-07-07 01:23:00    2017-07-07 01:23:00
102932    33113    723    2017-07-07 15:38:00    2017-07-07 15:38:00
102933    33113    805    2017-07-07 17:36:00    2017-07-07 17:36:00
102934    33113    837    2017-07-07 23:27:00    2017-07-07 23:27:00
102935    33114    779    2017-07-07 23:28:00    2017-07-07 23:28:00
102936    33114    600    2017-07-07 11:06:00    2017-07-07 11:06:00
102937    33114    821    2017-07-07 03:57:00    2017-07-07 03:57:00
102938    33114    661    2017-07-07 15:06:00    2017-07-07 15:06:00
102939    33114    599    2017-07-07 19:10:00    2017-07-07 19:10:00
102940    33115    583    2017-07-07 19:09:00    2017-07-07 19:09:00
102941    33115    579    2017-07-07 11:41:00    2017-07-07 11:41:00
102942    33115    652    2017-07-07 03:58:00    2017-07-07 03:58:00
102943    33115    580    2017-07-07 17:06:00    2017-07-07 17:06:00
102944    33115    846    2017-07-07 19:10:00    2017-07-07 19:10:00
102945    33116    734    2017-07-07 06:53:00    2017-07-07 06:53:00
102946    33116    522    2017-07-07 20:58:00    2017-07-07 20:58:00
102947    33116    529    2017-07-07 09:15:00    2017-07-07 09:15:00
102948    33116    814    2017-07-07 10:39:00    2017-07-07 10:39:00
102949    33116    658    2017-07-07 08:13:00    2017-07-07 08:13:00
102950    33117    926    2017-07-07 08:32:00    2017-07-07 08:32:00
102951    33117    487    2017-07-07 03:09:00    2017-07-07 03:09:00
102952    33117    607    2017-07-07 07:43:00    2017-07-07 07:43:00
102953    33117    484    2017-07-07 22:00:00    2017-07-07 22:00:00
102954    33117    909    2017-07-07 14:00:00    2017-07-07 14:00:00
102955    33118    909    2017-07-07 16:00:00    2017-07-07 16:00:00
102956    33118    529    2017-07-07 01:06:00    2017-07-07 01:06:00
102957    33118    599    2017-07-07 02:11:00    2017-07-07 02:11:00
102958    33118    753    2017-07-07 14:58:00    2017-07-07 14:58:00
102959    33118    790    2017-07-07 03:03:00    2017-07-07 03:03:00
102960    33119    633    2017-07-07 13:01:00    2017-07-07 13:01:00
102961    33119    919    2017-07-07 17:24:00    2017-07-07 17:24:00
102962    33119    537    2017-07-07 03:29:00    2017-07-07 03:29:00
102963    33119    525    2017-07-07 07:36:00    2017-07-07 07:36:00
102964    33119    597    2017-07-07 01:06:00    2017-07-07 01:06:00
102965    33120    588    2017-07-07 05:31:00    2017-07-07 05:31:00
102966    33120    745    2017-07-07 23:44:00    2017-07-07 23:44:00
102967    33120    775    2017-07-07 11:07:00    2017-07-07 11:07:00
102968    33120    857    2017-07-07 02:33:00    2017-07-07 02:33:00
102969    33120    812    2017-07-07 20:54:00    2017-07-07 20:54:00
102970    33121    518    2017-07-07 14:07:00    2017-07-07 14:07:00
102971    33121    818    2017-07-07 02:43:00    2017-07-07 02:43:00
102972    33121    916    2017-07-07 03:58:00    2017-07-07 03:58:00
102973    33121    675    2017-07-07 02:50:00    2017-07-07 02:50:00
102974    33121    822    2017-07-07 04:12:00    2017-07-07 04:12:00
102975    33122    874    2017-07-07 20:13:00    2017-07-07 20:13:00
102976    33122    580    2017-07-07 11:53:00    2017-07-07 11:53:00
102977    33122    885    2017-07-07 22:38:00    2017-07-07 22:38:00
102978    33122    749    2017-07-07 11:24:00    2017-07-07 11:24:00
102979    33122    591    2017-07-07 12:43:00    2017-07-07 12:43:00
102980    33123    662    2017-07-07 10:18:00    2017-07-07 10:18:00
102981    33123    795    2017-07-07 23:06:00    2017-07-07 23:06:00
102982    33123    545    2017-07-07 23:07:00    2017-07-07 23:07:00
102983    33123    614    2017-07-07 23:03:00    2017-07-07 23:03:00
102984    33123    615    2017-07-07 22:52:00    2017-07-07 22:52:00
102985    33124    758    2017-07-07 14:52:00    2017-07-07 14:52:00
102986    33124    721    2017-07-07 12:25:00    2017-07-07 12:25:00
102987    33124    616    2017-07-07 21:59:00    2017-07-07 21:59:00
102988    33124    853    2017-07-07 11:32:00    2017-07-07 11:32:00
102989    33124    657    2017-07-07 18:13:00    2017-07-07 18:13:00
102990    33125    574    2017-07-07 13:59:00    2017-07-07 13:59:00
102991    33125    801    2017-07-07 22:00:00    2017-07-07 22:00:00
102992    33125    574    2017-07-07 18:21:00    2017-07-07 18:21:00
102993    33125    932    2017-07-07 12:23:00    2017-07-07 12:23:00
102994    33125    495    2017-07-07 15:27:00    2017-07-07 15:27:00
102995    33126    933    2017-07-07 14:27:00    2017-07-07 14:27:00
102996    33126    928    2017-07-07 09:55:00    2017-07-07 09:55:00
102997    33126    626    2017-07-07 07:48:00    2017-07-07 07:48:00
102998    33126    675    2017-07-07 16:42:00    2017-07-07 16:42:00
102999    33126    934    2017-07-07 07:08:00    2017-07-07 07:08:00
103000    33127    765    2017-07-07 04:16:00    2017-07-07 04:16:00
103001    33127    790    2017-07-07 23:39:00    2017-07-07 23:39:00
103002    33127    670    2017-07-07 02:46:00    2017-07-07 02:46:00
103003    33127    667    2017-07-07 07:45:00    2017-07-07 07:45:00
103004    33127    713    2017-07-07 23:51:00    2017-07-07 23:51:00
103005    33128    515    2017-07-07 14:07:00    2017-07-07 14:07:00
103006    33128    696    2017-07-07 03:40:00    2017-07-07 03:40:00
103007    33128    625    2017-07-07 17:33:00    2017-07-07 17:33:00
103008    33128    617    2017-07-07 02:07:00    2017-07-07 02:07:00
103009    33128    816    2017-07-07 03:24:00    2017-07-07 03:24:00
103010    33129    650    2017-07-07 03:41:00    2017-07-07 03:41:00
103011    33129    528    2017-07-07 19:46:00    2017-07-07 19:46:00
103012    33129    840    2017-07-07 02:32:00    2017-07-07 02:32:00
103013    33129    489    2017-07-07 04:16:00    2017-07-07 04:16:00
103014    33129    625    2017-07-07 18:49:00    2017-07-07 18:49:00
103015    33130    661    2017-07-07 23:16:00    2017-07-07 23:16:00
103016    33130    858    2017-07-07 18:46:00    2017-07-07 18:46:00
103017    33130    667    2017-07-07 15:41:00    2017-07-07 15:41:00
103018    33130    543    2017-07-07 15:13:00    2017-07-07 15:13:00
103019    33130    953    2017-07-07 06:14:00    2017-07-07 06:14:00
103020    33131    480    2017-07-07 01:33:00    2017-07-07 01:33:00
103021    33131    825    2017-07-07 22:31:00    2017-07-07 22:31:00
103022    33131    688    2017-07-07 19:42:00    2017-07-07 19:42:00
103023    33131    844    2017-07-07 10:45:00    2017-07-07 10:45:00
103024    33131    757    2017-07-07 01:02:00    2017-07-07 01:02:00
103025    33132    588    2017-07-07 20:19:00    2017-07-07 20:19:00
103026    33132    477    2017-07-07 23:14:00    2017-07-07 23:14:00
103027    33132    634    2017-07-07 18:43:00    2017-07-07 18:43:00
103028    33132    583    2017-07-07 20:34:00    2017-07-07 20:34:00
103029    33132    738    2017-07-07 23:54:00    2017-07-07 23:54:00
103030    33133    508    2017-07-07 20:49:00    2017-07-07 20:49:00
103031    33133    615    2017-07-07 09:00:00    2017-07-07 09:00:00
103032    33133    471    2017-07-07 16:45:00    2017-07-07 16:45:00
103033    33133    890    2017-07-07 08:11:00    2017-07-07 08:11:00
103034    33133    700    2017-07-07 14:03:00    2017-07-07 14:03:00
103035    33134    475    2017-07-07 08:59:00    2017-07-07 08:59:00
103036    33134    721    2017-07-07 06:37:00    2017-07-07 06:37:00
103037    33134    660    2017-07-07 02:19:00    2017-07-07 02:19:00
103038    33134    584    2017-07-07 09:37:00    2017-07-07 09:37:00
103039    33134    480    2017-07-07 13:57:00    2017-07-07 13:57:00
103040    33135    850    2017-07-07 14:00:00    2017-07-07 14:00:00
103041    33135    686    2017-07-07 22:21:00    2017-07-07 22:21:00
103042    33135    893    2017-07-07 08:35:00    2017-07-07 08:35:00
103043    33135    532    2017-07-07 04:30:00    2017-07-07 04:30:00
103044    33135    748    2017-07-07 07:10:00    2017-07-07 07:10:00
103045    33136    695    2017-07-07 08:46:00    2017-07-07 08:46:00
103046    33136    840    2017-07-07 04:42:00    2017-07-07 04:42:00
103047    33136    581    2017-07-07 20:29:00    2017-07-07 20:29:00
103048    33136    651    2017-07-07 17:40:00    2017-07-07 17:40:00
103049    33136    555    2017-07-07 06:12:00    2017-07-07 06:12:00
103050    33137    504    2017-07-07 19:00:00    2017-07-07 19:00:00
103051    33137    708    2017-07-07 10:29:00    2017-07-07 10:29:00
103052    33137    567    2017-07-07 04:02:00    2017-07-07 04:02:00
103053    33137    782    2017-07-07 19:04:00    2017-07-07 19:04:00
103054    33137    804    2017-07-07 05:10:00    2017-07-07 05:10:00
103055    33138    495    2017-07-07 05:54:00    2017-07-07 05:54:00
103056    33138    887    2017-07-07 02:04:00    2017-07-07 02:04:00
103057    33138    951    2017-07-07 15:20:00    2017-07-07 15:20:00
103058    33138    570    2017-07-07 06:22:00    2017-07-07 06:22:00
103059    33138    704    2017-07-07 14:13:00    2017-07-07 14:13:00
103060    33139    679    2017-07-07 04:52:00    2017-07-07 04:52:00
103061    33139    606    2017-07-07 04:10:00    2017-07-07 04:10:00
103062    33139    830    2017-07-07 15:22:00    2017-07-07 15:22:00
103063    33139    523    2017-07-07 16:34:00    2017-07-07 16:34:00
103064    33139    748    2017-07-07 04:37:00    2017-07-07 04:37:00
103065    33140    537    2017-07-07 20:34:00    2017-07-07 20:34:00
103066    33140    527    2017-07-07 12:53:00    2017-07-07 12:53:00
103067    33140    548    2017-07-07 21:12:00    2017-07-07 21:12:00
103068    33140    670    2017-07-07 19:58:00    2017-07-07 19:58:00
103069    33140    690    2017-07-07 19:24:00    2017-07-07 19:24:00
103070    33141    655    2017-07-07 16:01:00    2017-07-07 16:01:00
103071    33141    839    2017-07-07 20:03:00    2017-07-07 20:03:00
103072    33141    681    2017-07-07 21:13:00    2017-07-07 21:13:00
103073    33141    663    2017-07-07 19:30:00    2017-07-07 19:30:00
103074    33141    592    2017-07-07 05:39:00    2017-07-07 05:39:00
103075    33142    821    2017-07-07 23:09:00    2017-07-07 23:09:00
103076    33142    618    2017-07-07 02:08:00    2017-07-07 02:08:00
103077    33142    629    2017-07-07 17:04:00    2017-07-07 17:04:00
103078    33142    548    2017-07-07 19:33:00    2017-07-07 19:33:00
103079    33142    901    2017-07-07 06:37:00    2017-07-07 06:37:00
103080    33143    591    2017-07-07 17:49:00    2017-07-07 17:49:00
103081    33143    843    2017-07-07 22:41:00    2017-07-07 22:41:00
103082    33143    537    2017-07-07 13:36:00    2017-07-07 13:36:00
103083    33143    631    2017-07-07 15:56:00    2017-07-07 15:56:00
103084    33143    691    2017-07-07 01:01:00    2017-07-07 01:01:00
103085    33144    785    2017-07-07 14:18:00    2017-07-07 14:18:00
103086    33144    885    2017-07-07 18:03:00    2017-07-07 18:03:00
103087    33144    833    2017-07-07 11:17:00    2017-07-07 11:17:00
103088    33144    928    2017-07-07 20:05:00    2017-07-07 20:05:00
103089    33144    952    2017-07-07 05:56:00    2017-07-07 05:56:00
103090    33145    673    2017-07-07 13:35:00    2017-07-07 13:35:00
103091    33145    604    2017-07-07 21:44:00    2017-07-07 21:44:00
103092    33145    466    2017-07-07 14:01:00    2017-07-07 14:01:00
103093    33145    514    2017-07-07 09:58:00    2017-07-07 09:58:00
103094    33145    476    2017-07-07 13:21:00    2017-07-07 13:21:00
103095    33146    580    2017-07-07 18:58:00    2017-07-07 18:58:00
103096    33146    811    2017-07-07 06:24:00    2017-07-07 06:24:00
103097    33146    921    2017-07-07 16:05:00    2017-07-07 16:05:00
103098    33146    521    2017-07-07 02:57:00    2017-07-07 02:57:00
103099    33146    728    2017-07-07 08:48:00    2017-07-07 08:48:00
103100    33147    664    2017-07-07 09:56:00    2017-07-07 09:56:00
103101    33147    668    2017-07-07 15:55:00    2017-07-07 15:55:00
103102    33147    876    2017-07-07 22:06:00    2017-07-07 22:06:00
103103    33147    946    2017-07-07 04:15:00    2017-07-07 04:15:00
103104    33147    732    2017-07-07 02:52:00    2017-07-07 02:52:00
103105    33148    800    2017-07-07 13:24:00    2017-07-07 13:24:00
103106    33148    682    2017-07-07 10:03:00    2017-07-07 10:03:00
103107    33148    875    2017-07-07 04:12:00    2017-07-07 04:12:00
103108    33148    563    2017-07-07 15:04:00    2017-07-07 15:04:00
103109    33148    667    2017-07-07 06:39:00    2017-07-07 06:39:00
103110    33149    527    2017-07-07 08:56:00    2017-07-07 08:56:00
103111    33149    655    2017-07-07 17:35:00    2017-07-07 17:35:00
103112    33149    856    2017-07-07 17:41:00    2017-07-07 17:41:00
103113    33149    642    2017-07-07 09:36:00    2017-07-07 09:36:00
103114    33149    493    2017-07-07 07:08:00    2017-07-07 07:08:00
103115    33150    603    2017-07-07 09:48:00    2017-07-07 09:48:00
103116    33150    609    2017-07-07 19:12:00    2017-07-07 19:12:00
103117    33150    494    2017-07-07 16:39:00    2017-07-07 16:39:00
103118    33150    861    2017-07-07 21:08:00    2017-07-07 21:08:00
103119    33150    810    2017-07-07 21:21:00    2017-07-07 21:21:00
103120    33151    805    2017-07-07 18:22:00    2017-07-07 18:22:00
103121    33151    838    2017-07-07 22:50:00    2017-07-07 22:50:00
103122    33151    953    2017-07-07 02:48:00    2017-07-07 02:48:00
103123    33151    841    2017-07-07 19:10:00    2017-07-07 19:10:00
103124    33151    466    2017-07-07 06:27:00    2017-07-07 06:27:00
103125    33152    728    2017-07-07 17:13:00    2017-07-07 17:13:00
103126    33152    479    2017-07-07 18:13:00    2017-07-07 18:13:00
103127    33152    698    2017-07-07 19:55:00    2017-07-07 19:55:00
103128    33152    682    2017-07-07 07:42:00    2017-07-07 07:42:00
103129    33152    894    2017-07-07 12:21:00    2017-07-07 12:21:00
103130    33153    957    2017-07-07 23:54:00    2017-07-07 23:54:00
103131    33153    522    2017-07-07 19:22:00    2017-07-07 19:22:00
103132    33153    921    2017-07-07 22:07:00    2017-07-07 22:07:00
103133    33153    793    2017-07-07 01:53:00    2017-07-07 01:53:00
103134    33153    734    2017-07-07 03:10:00    2017-07-07 03:10:00
103135    33154    851    2017-07-07 09:00:00    2017-07-07 09:00:00
103136    33154    573    2017-07-07 08:51:00    2017-07-07 08:51:00
103137    33154    846    2017-07-07 20:41:00    2017-07-07 20:41:00
103138    33154    638    2017-07-07 15:17:00    2017-07-07 15:17:00
103139    33154    616    2017-07-07 15:39:00    2017-07-07 15:39:00
103140    33155    502    2017-07-07 12:58:00    2017-07-07 12:58:00
103141    33155    914    2017-07-07 05:43:00    2017-07-07 05:43:00
103142    33155    946    2017-07-07 16:18:00    2017-07-07 16:18:00
103143    33155    879    2017-07-07 03:33:00    2017-07-07 03:33:00
103144    33155    604    2017-07-07 03:22:00    2017-07-07 03:22:00
103145    33156    599    2017-07-07 16:00:00    2017-07-07 16:00:00
103146    33156    854    2017-07-07 15:17:00    2017-07-07 15:17:00
103147    33156    695    2017-07-07 04:45:00    2017-07-07 04:45:00
103148    33156    800    2017-07-07 04:21:00    2017-07-07 04:21:00
103149    33156    753    2017-07-07 15:11:00    2017-07-07 15:11:00
103150    33157    555    2017-07-07 08:41:00    2017-07-07 08:41:00
103151    33157    567    2017-07-07 08:53:00    2017-07-07 08:53:00
103152    33157    813    2017-07-07 23:27:00    2017-07-07 23:27:00
103153    33157    597    2017-07-07 06:03:00    2017-07-07 06:03:00
103154    33157    776    2017-07-07 01:35:00    2017-07-07 01:35:00
103155    33158    596    2017-07-07 06:04:00    2017-07-07 06:04:00
103156    33158    822    2017-07-07 02:26:00    2017-07-07 02:26:00
103157    33158    902    2017-07-07 21:30:00    2017-07-07 21:30:00
103158    33158    517    2017-07-07 11:15:00    2017-07-07 11:15:00
103159    33158    623    2017-07-07 02:00:00    2017-07-07 02:00:00
103160    33159    839    2017-07-07 07:20:00    2017-07-07 07:20:00
103161    33159    656    2017-07-07 01:46:00    2017-07-07 01:46:00
103162    33159    866    2017-07-07 21:48:00    2017-07-07 21:48:00
103163    33159    593    2017-07-07 14:44:00    2017-07-07 14:44:00
103164    33159    623    2017-07-07 16:13:00    2017-07-07 16:13:00
103165    33160    552    2017-07-07 10:42:00    2017-07-07 10:42:00
103166    33160    610    2017-07-07 06:39:00    2017-07-07 06:39:00
103167    33160    705    2017-07-07 23:15:00    2017-07-07 23:15:00
103168    33160    675    2017-07-07 13:01:00    2017-07-07 13:01:00
103169    33160    811    2017-07-07 12:14:00    2017-07-07 12:14:00
103170    33161    658    2017-07-07 11:52:00    2017-07-07 11:52:00
103171    33161    738    2017-07-07 10:04:00    2017-07-07 10:04:00
103172    33161    553    2017-07-07 22:35:00    2017-07-07 22:35:00
103173    33161    906    2017-07-07 08:42:00    2017-07-07 08:42:00
103174    33161    916    2017-07-07 21:33:00    2017-07-07 21:33:00
103175    33162    544    2017-07-07 09:16:00    2017-07-07 09:16:00
103176    33162    741    2017-07-07 17:37:00    2017-07-07 17:37:00
103177    33162    594    2017-07-07 11:09:00    2017-07-07 11:09:00
103178    33162    509    2017-07-07 05:00:00    2017-07-07 05:00:00
103179    33162    663    2017-07-07 03:17:00    2017-07-07 03:17:00
103180    33163    959    2017-07-07 05:34:00    2017-07-07 05:34:00
103181    33163    885    2017-07-07 02:51:00    2017-07-07 02:51:00
103182    33163    872    2017-07-07 18:07:00    2017-07-07 18:07:00
103183    33163    538    2017-07-07 21:38:00    2017-07-07 21:38:00
103184    33163    675    2017-07-07 17:21:00    2017-07-07 17:21:00
103185    33164    767    2017-07-07 03:14:00    2017-07-07 03:14:00
103186    33164    658    2017-07-07 09:12:00    2017-07-07 09:12:00
103187    33164    951    2017-07-07 13:45:00    2017-07-07 13:45:00
103188    33164    857    2017-07-07 14:53:00    2017-07-07 14:53:00
103189    33164    696    2017-07-07 15:04:00    2017-07-07 15:04:00
103190    33165    623    2017-07-07 11:33:00    2017-07-07 11:33:00
103191    33165    495    2017-07-07 05:16:00    2017-07-07 05:16:00
103192    33165    880    2017-07-07 04:02:00    2017-07-07 04:02:00
103193    33165    893    2017-07-07 21:08:00    2017-07-07 21:08:00
103194    33165    858    2017-07-07 05:38:00    2017-07-07 05:38:00
103195    33166    559    2017-07-07 10:00:00    2017-07-07 10:00:00
103196    33166    902    2017-07-07 14:31:00    2017-07-07 14:31:00
103197    33166    476    2017-07-07 03:11:00    2017-07-07 03:11:00
103198    33166    864    2017-07-07 12:08:00    2017-07-07 12:08:00
103199    33166    656    2017-07-07 01:42:00    2017-07-07 01:42:00
103200    33167    683    2017-07-07 19:46:00    2017-07-07 19:46:00
103201    33167    794    2017-07-07 20:49:00    2017-07-07 20:49:00
103202    33167    780    2017-07-07 05:38:00    2017-07-07 05:38:00
103203    33167    878    2017-07-07 23:57:00    2017-07-07 23:57:00
103204    33167    695    2017-07-07 21:13:00    2017-07-07 21:13:00
103205    33168    917    2017-07-07 20:41:00    2017-07-07 20:41:00
103206    33168    571    2017-07-07 14:47:00    2017-07-07 14:47:00
103207    33168    925    2017-07-07 03:47:00    2017-07-07 03:47:00
103208    33168    594    2017-07-07 13:55:00    2017-07-07 13:55:00
103209    33168    651    2017-07-07 07:00:00    2017-07-07 07:00:00
103210    33169    563    2017-07-07 15:00:00    2017-07-07 15:00:00
103211    33169    686    2017-07-07 04:14:00    2017-07-07 04:14:00
103212    33169    737    2017-07-07 04:02:00    2017-07-07 04:02:00
103213    33169    884    2017-07-07 05:46:00    2017-07-07 05:46:00
103214    33169    468    2017-07-07 14:59:00    2017-07-07 14:59:00
103215    33170    677    2017-07-07 10:52:00    2017-07-07 10:52:00
103216    33170    472    2017-07-07 13:32:00    2017-07-07 13:32:00
103217    33170    667    2017-07-07 22:13:00    2017-07-07 22:13:00
103218    33170    797    2017-07-07 15:39:00    2017-07-07 15:39:00
103219    33170    600    2017-07-07 19:39:00    2017-07-07 19:39:00
103220    33171    929    2017-07-07 05:44:00    2017-07-07 05:44:00
103221    33171    807    2017-07-08 00:00:00    2017-07-08 00:00:00
103222    33171    589    2017-07-07 15:55:00    2017-07-07 15:55:00
103223    33171    485    2017-07-07 05:35:00    2017-07-07 05:35:00
103224    33171    636    2017-07-07 05:05:00    2017-07-07 05:05:00
103225    33172    489    2017-07-07 01:01:00    2017-07-07 01:01:00
103226    33172    832    2017-07-07 14:25:00    2017-07-07 14:25:00
103227    33172    490    2017-07-07 20:14:00    2017-07-07 20:14:00
103228    33172    640    2017-07-07 06:42:00    2017-07-07 06:42:00
103229    33172    810    2017-07-07 19:28:00    2017-07-07 19:28:00
103230    33173    921    2017-07-07 14:55:00    2017-07-07 14:55:00
103231    33173    598    2017-07-07 12:22:00    2017-07-07 12:22:00
103232    33173    477    2017-07-07 14:20:00    2017-07-07 14:20:00
103233    33173    826    2017-07-07 13:52:00    2017-07-07 13:52:00
103234    33173    820    2017-07-07 17:06:00    2017-07-07 17:06:00
103235    33174    761    2017-07-07 19:19:00    2017-07-07 19:19:00
103236    33174    517    2017-07-07 15:32:00    2017-07-07 15:32:00
103237    33174    851    2017-07-07 22:07:00    2017-07-07 22:07:00
103238    33174    465    2017-07-07 07:18:00    2017-07-07 07:18:00
103239    33174    664    2017-07-07 01:48:00    2017-07-07 01:48:00
103240    33175    743    2017-07-07 18:56:00    2017-07-07 18:56:00
103241    33175    666    2017-07-07 06:37:00    2017-07-07 06:37:00
103242    33175    851    2017-07-07 06:07:00    2017-07-07 06:07:00
103243    33175    659    2017-07-07 06:50:00    2017-07-07 06:50:00
103244    33175    678    2017-07-07 16:16:00    2017-07-07 16:16:00
103245    33176    909    2017-07-07 22:59:00    2017-07-07 22:59:00
103246    33176    480    2017-07-07 13:06:00    2017-07-07 13:06:00
103247    33176    784    2017-07-07 15:40:00    2017-07-07 15:40:00
103248    33176    639    2017-07-07 06:52:00    2017-07-07 06:52:00
103249    33176    788    2017-07-07 11:56:00    2017-07-07 11:56:00
103250    33177    787    2017-07-07 17:49:00    2017-07-07 17:49:00
103251    33177    731    2017-07-07 20:20:00    2017-07-07 20:20:00
103252    33177    769    2017-07-07 13:38:00    2017-07-07 13:38:00
103253    33177    876    2017-07-07 17:13:00    2017-07-07 17:13:00
103254    33177    796    2017-07-07 08:19:00    2017-07-07 08:19:00
103255    33178    520    2017-07-07 17:29:00    2017-07-07 17:29:00
103256    33178    470    2017-07-07 23:06:00    2017-07-07 23:06:00
103257    33178    778    2017-07-07 03:17:00    2017-07-07 03:17:00
103258    33178    939    2017-07-07 17:27:00    2017-07-07 17:27:00
103259    33178    860    2017-07-07 02:29:00    2017-07-07 02:29:00
103260    33179    557    2017-07-07 22:27:00    2017-07-07 22:27:00
103261    33179    905    2017-07-07 21:40:00    2017-07-07 21:40:00
103262    33179    912    2017-07-07 01:42:00    2017-07-07 01:42:00
103263    33179    864    2017-07-07 02:07:00    2017-07-07 02:07:00
103264    33179    493    2017-07-07 19:36:00    2017-07-07 19:36:00
103265    33180    813    2017-07-07 01:03:00    2017-07-07 01:03:00
103266    33180    532    2017-07-07 12:28:00    2017-07-07 12:28:00
103267    33180    807    2017-07-07 23:27:00    2017-07-07 23:27:00
103268    33180    707    2017-07-07 18:45:00    2017-07-07 18:45:00
103269    33180    640    2017-07-07 09:55:00    2017-07-07 09:55:00
103270    33181    810    2017-07-07 12:00:00    2017-07-07 12:00:00
103271    33181    683    2017-07-07 14:23:00    2017-07-07 14:23:00
103272    33181    529    2017-07-07 13:08:00    2017-07-07 13:08:00
103273    33181    827    2017-07-07 19:29:00    2017-07-07 19:29:00
103274    33181    657    2017-07-07 13:16:00    2017-07-07 13:16:00
103275    33182    608    2017-07-07 14:39:00    2017-07-07 14:39:00
103276    33182    759    2017-07-07 05:09:00    2017-07-07 05:09:00
103277    33182    941    2017-07-07 12:18:00    2017-07-07 12:18:00
103278    33182    589    2017-07-07 04:39:00    2017-07-07 04:39:00
103279    33182    950    2017-07-07 06:05:00    2017-07-07 06:05:00
103280    33183    682    2017-07-07 05:24:00    2017-07-07 05:24:00
103281    33183    711    2017-07-07 01:30:00    2017-07-07 01:30:00
103282    33183    849    2017-07-07 06:46:00    2017-07-07 06:46:00
103283    33183    795    2017-07-07 20:22:00    2017-07-07 20:22:00
103284    33183    509    2017-07-07 10:49:00    2017-07-07 10:49:00
103285    33184    602    2017-07-07 17:24:00    2017-07-07 17:24:00
103286    33184    695    2017-07-07 20:56:00    2017-07-07 20:56:00
103287    33184    695    2017-07-07 10:48:00    2017-07-07 10:48:00
103288    33184    790    2017-07-07 19:49:00    2017-07-07 19:49:00
103289    33184    765    2017-07-07 04:19:00    2017-07-07 04:19:00
103290    33185    777    2017-07-07 16:33:00    2017-07-07 16:33:00
103291    33185    630    2017-07-07 11:46:00    2017-07-07 11:46:00
103292    33185    588    2017-07-07 20:32:00    2017-07-07 20:32:00
103293    33185    698    2017-07-07 16:48:00    2017-07-07 16:48:00
103294    33185    725    2017-07-07 07:26:00    2017-07-07 07:26:00
103295    33186    769    2017-07-07 19:24:00    2017-07-07 19:24:00
103296    33186    844    2017-07-07 14:47:00    2017-07-07 14:47:00
103297    33186    926    2017-07-07 22:04:00    2017-07-07 22:04:00
103298    33186    876    2017-07-07 12:32:00    2017-07-07 12:32:00
103299    33186    618    2017-07-07 14:22:00    2017-07-07 14:22:00
103300    33187    885    2017-07-07 14:02:00    2017-07-07 14:02:00
103301    33187    624    2017-07-07 08:58:00    2017-07-07 08:58:00
103302    33187    824    2017-07-07 06:04:00    2017-07-07 06:04:00
103303    33187    691    2017-07-07 15:42:00    2017-07-07 15:42:00
103304    33187    504    2017-07-07 06:28:00    2017-07-07 06:28:00
103305    33188    467    2017-07-07 20:46:00    2017-07-07 20:46:00
103306    33188    800    2017-07-07 01:48:00    2017-07-07 01:48:00
103307    33188    473    2017-07-07 02:29:00    2017-07-07 02:29:00
103308    33188    595    2017-07-07 15:18:00    2017-07-07 15:18:00
103309    33188    823    2017-07-07 15:04:00    2017-07-07 15:04:00
103310    33189    768    2017-07-08 11:39:00    2017-07-08 11:39:00
103311    33189    682    2017-07-08 09:02:00    2017-07-08 09:02:00
103312    33189    887    2017-07-08 18:08:00    2017-07-08 18:08:00
103313    33189    509    2017-07-08 23:39:00    2017-07-08 23:39:00
103314    33189    933    2017-07-08 07:27:00    2017-07-08 07:27:00
103315    33190    649    2017-07-08 14:57:00    2017-07-08 14:57:00
103316    33190    718    2017-07-08 08:59:00    2017-07-08 08:59:00
103317    33190    919    2017-07-08 06:59:00    2017-07-08 06:59:00
103318    33190    541    2017-07-08 20:47:00    2017-07-08 20:47:00
103319    33190    781    2017-07-08 23:55:00    2017-07-08 23:55:00
103320    33191    931    2017-07-08 09:21:00    2017-07-08 09:21:00
103321    33191    821    2017-07-08 19:19:00    2017-07-08 19:19:00
103322    33191    569    2017-07-08 18:00:00    2017-07-08 18:00:00
103323    33191    655    2017-07-08 14:50:00    2017-07-08 14:50:00
103324    33191    801    2017-07-08 08:53:00    2017-07-08 08:53:00
103325    33192    748    2017-07-08 09:47:00    2017-07-08 09:47:00
103326    33192    619    2017-07-08 03:52:00    2017-07-08 03:52:00
103327    33192    730    2017-07-08 07:53:00    2017-07-08 07:53:00
103328    33192    537    2017-07-08 08:47:00    2017-07-08 08:47:00
103329    33192    646    2017-07-08 12:00:00    2017-07-08 12:00:00
103330    33193    487    2017-07-08 09:40:00    2017-07-08 09:40:00
103331    33193    775    2017-07-08 17:45:00    2017-07-08 17:45:00
103332    33193    513    2017-07-08 20:05:00    2017-07-08 20:05:00
103333    33193    740    2017-07-08 19:53:00    2017-07-08 19:53:00
103334    33193    856    2017-07-08 22:50:00    2017-07-08 22:50:00
103335    33194    903    2017-07-08 12:46:00    2017-07-08 12:46:00
103336    33194    541    2017-07-08 20:37:00    2017-07-08 20:37:00
103337    33194    463    2017-07-08 12:14:00    2017-07-08 12:14:00
103338    33194    491    2017-07-08 11:41:00    2017-07-08 11:41:00
103339    33194    855    2017-07-08 23:53:00    2017-07-08 23:53:00
103340    33195    551    2017-07-08 07:36:00    2017-07-08 07:36:00
103341    33195    632    2017-07-08 11:22:00    2017-07-08 11:22:00
103342    33195    757    2017-07-08 06:30:00    2017-07-08 06:30:00
103343    33195    637    2017-07-08 18:20:00    2017-07-08 18:20:00
103344    33195    696    2017-07-08 01:16:00    2017-07-08 01:16:00
103345    33196    543    2017-07-08 23:03:00    2017-07-08 23:03:00
103346    33196    954    2017-07-08 10:09:00    2017-07-08 10:09:00
103347    33196    780    2017-07-08 23:30:00    2017-07-08 23:30:00
103348    33196    597    2017-07-08 17:18:00    2017-07-08 17:18:00
103349    33196    928    2017-07-08 18:25:00    2017-07-08 18:25:00
103350    33197    681    2017-07-08 16:51:00    2017-07-08 16:51:00
103351    33197    785    2017-07-08 06:58:00    2017-07-08 06:58:00
103352    33197    522    2017-07-08 19:44:00    2017-07-08 19:44:00
103353    33197    467    2017-07-08 07:32:00    2017-07-08 07:32:00
103354    33197    894    2017-07-08 03:05:00    2017-07-08 03:05:00
103355    33198    629    2017-07-08 10:15:00    2017-07-08 10:15:00
103356    33198    483    2017-07-08 06:25:00    2017-07-08 06:25:00
103357    33198    721    2017-07-08 08:39:00    2017-07-08 08:39:00
103358    33198    464    2017-07-08 09:00:00    2017-07-08 09:00:00
103359    33198    626    2017-07-08 01:16:00    2017-07-08 01:16:00
103360    33199    610    2017-07-08 18:54:00    2017-07-08 18:54:00
103361    33199    832    2017-07-08 09:16:00    2017-07-08 09:16:00
103362    33199    705    2017-07-08 12:18:00    2017-07-08 12:18:00
103363    33199    673    2017-07-08 06:31:00    2017-07-08 06:31:00
103364    33199    685    2017-07-08 01:56:00    2017-07-08 01:56:00
103365    33200    593    2017-07-08 16:07:00    2017-07-08 16:07:00
103366    33200    927    2017-07-08 05:09:00    2017-07-08 05:09:00
103367    33200    640    2017-07-08 06:54:00    2017-07-08 06:54:00
103368    33200    528    2017-07-08 23:08:00    2017-07-08 23:08:00
103369    33200    718    2017-07-08 22:51:00    2017-07-08 22:51:00
103370    33201    524    2017-07-08 01:24:00    2017-07-08 01:24:00
103371    33201    505    2017-07-08 23:30:00    2017-07-08 23:30:00
103372    33201    719    2017-07-08 04:01:00    2017-07-08 04:01:00
103373    33201    587    2017-07-08 08:28:00    2017-07-08 08:28:00
103374    33201    536    2017-07-08 16:00:00    2017-07-08 16:00:00
103375    33202    610    2017-07-08 04:22:00    2017-07-08 04:22:00
103376    33202    928    2017-07-08 23:30:00    2017-07-08 23:30:00
103377    33202    755    2017-07-08 13:55:00    2017-07-08 13:55:00
103378    33202    671    2017-07-08 12:21:00    2017-07-08 12:21:00
103379    33202    924    2017-07-08 08:10:00    2017-07-08 08:10:00
103380    33203    872    2017-07-08 04:59:00    2017-07-08 04:59:00
103381    33203    770    2017-07-08 10:31:00    2017-07-08 10:31:00
103382    33203    663    2017-07-08 06:53:00    2017-07-08 06:53:00
103383    33203    895    2017-07-08 12:11:00    2017-07-08 12:11:00
103384    33203    876    2017-07-08 05:44:00    2017-07-08 05:44:00
103385    33204    814    2017-07-08 19:26:00    2017-07-08 19:26:00
103386    33204    922    2017-07-08 13:09:00    2017-07-08 13:09:00
103387    33204    952    2017-07-08 19:47:00    2017-07-08 19:47:00
103388    33204    671    2017-07-08 08:25:00    2017-07-08 08:25:00
103389    33204    931    2017-07-08 07:15:00    2017-07-08 07:15:00
103390    33205    735    2017-07-08 03:14:00    2017-07-08 03:14:00
103391    33205    514    2017-07-08 19:32:00    2017-07-08 19:32:00
103392    33205    824    2017-07-08 01:20:00    2017-07-08 01:20:00
103393    33205    522    2017-07-08 20:26:00    2017-07-08 20:26:00
103394    33205    924    2017-07-08 02:07:00    2017-07-08 02:07:00
103395    33206    679    2017-07-08 18:38:00    2017-07-08 18:38:00
103396    33206    540    2017-07-08 18:42:00    2017-07-08 18:42:00
103397    33206    887    2017-07-08 17:51:00    2017-07-08 17:51:00
103398    33206    584    2017-07-08 05:44:00    2017-07-08 05:44:00
103399    33206    536    2017-07-08 23:48:00    2017-07-08 23:48:00
103400    33207    673    2017-07-08 05:54:00    2017-07-08 05:54:00
103401    33207    658    2017-07-08 07:42:00    2017-07-08 07:42:00
103402    33207    894    2017-07-08 14:03:00    2017-07-08 14:03:00
103403    33207    486    2017-07-08 10:12:00    2017-07-08 10:12:00
103404    33207    697    2017-07-08 10:37:00    2017-07-08 10:37:00
103405    33208    474    2017-07-08 03:27:00    2017-07-08 03:27:00
103406    33208    536    2017-07-08 06:17:00    2017-07-08 06:17:00
103407    33208    667    2017-07-08 23:24:00    2017-07-08 23:24:00
103408    33208    614    2017-07-08 15:37:00    2017-07-08 15:37:00
103409    33208    583    2017-07-08 05:13:00    2017-07-08 05:13:00
103410    33209    758    2017-07-08 01:22:00    2017-07-08 01:22:00
103411    33209    793    2017-07-08 21:22:00    2017-07-08 21:22:00
103412    33209    944    2017-07-08 05:54:00    2017-07-08 05:54:00
103413    33209    741    2017-07-08 20:55:00    2017-07-08 20:55:00
103414    33209    656    2017-07-08 02:46:00    2017-07-08 02:46:00
103415    33210    745    2017-07-08 23:53:00    2017-07-08 23:53:00
103416    33210    474    2017-07-08 20:38:00    2017-07-08 20:38:00
103417    33210    866    2017-07-08 19:24:00    2017-07-08 19:24:00
103418    33210    829    2017-07-08 08:06:00    2017-07-08 08:06:00
103419    33210    848    2017-07-08 14:09:00    2017-07-08 14:09:00
103420    33211    736    2017-07-08 12:04:00    2017-07-08 12:04:00
103421    33211    491    2017-07-08 18:12:00    2017-07-08 18:12:00
103422    33211    798    2017-07-08 17:24:00    2017-07-08 17:24:00
103423    33211    951    2017-07-08 01:44:00    2017-07-08 01:44:00
103424    33211    668    2017-07-08 05:59:00    2017-07-08 05:59:00
103425    33212    638    2017-07-08 19:38:00    2017-07-08 19:38:00
103426    33212    668    2017-07-08 17:34:00    2017-07-08 17:34:00
103427    33212    652    2017-07-08 22:15:00    2017-07-08 22:15:00
103428    33212    852    2017-07-08 09:31:00    2017-07-08 09:31:00
103429    33212    654    2017-07-08 20:59:00    2017-07-08 20:59:00
103430    33213    880    2017-07-08 02:11:00    2017-07-08 02:11:00
103431    33213    827    2017-07-08 03:01:00    2017-07-08 03:01:00
103432    33213    715    2017-07-08 17:07:00    2017-07-08 17:07:00
103433    33213    850    2017-07-08 06:35:00    2017-07-08 06:35:00
103434    33213    634    2017-07-08 10:58:00    2017-07-08 10:58:00
103435    33214    504    2017-07-08 19:42:00    2017-07-08 19:42:00
103436    33214    759    2017-07-08 18:09:00    2017-07-08 18:09:00
103437    33214    823    2017-07-08 23:12:00    2017-07-08 23:12:00
103438    33214    468    2017-07-08 17:18:00    2017-07-08 17:18:00
103439    33214    900    2017-07-08 16:02:00    2017-07-08 16:02:00
103440    33215    543    2017-07-08 16:54:00    2017-07-08 16:54:00
103441    33215    508    2017-07-08 02:00:00    2017-07-08 02:00:00
103442    33215    488    2017-07-08 02:18:00    2017-07-08 02:18:00
103443    33215    475    2017-07-08 06:19:00    2017-07-08 06:19:00
103444    33215    642    2017-07-08 12:53:00    2017-07-08 12:53:00
103445    33216    654    2017-07-08 20:02:00    2017-07-08 20:02:00
103446    33216    668    2017-07-08 20:41:00    2017-07-08 20:41:00
103447    33216    533    2017-07-08 03:08:00    2017-07-08 03:08:00
103448    33216    759    2017-07-08 14:04:00    2017-07-08 14:04:00
103449    33216    854    2017-07-08 06:34:00    2017-07-08 06:34:00
103450    33217    807    2017-07-08 08:57:00    2017-07-08 08:57:00
103451    33217    901    2017-07-08 14:00:00    2017-07-08 14:00:00
103452    33217    814    2017-07-08 10:46:00    2017-07-08 10:46:00
103453    33217    676    2017-07-08 03:15:00    2017-07-08 03:15:00
103454    33217    520    2017-07-08 23:58:00    2017-07-08 23:58:00
103455    33218    885    2017-07-08 07:10:00    2017-07-08 07:10:00
103456    33218    941    2017-07-08 14:04:00    2017-07-08 14:04:00
103457    33218    819    2017-07-08 09:44:00    2017-07-08 09:44:00
103458    33218    694    2017-07-08 08:27:00    2017-07-08 08:27:00
103459    33218    767    2017-07-08 09:10:00    2017-07-08 09:10:00
103460    33219    941    2017-07-08 18:57:00    2017-07-08 18:57:00
103461    33219    693    2017-07-08 04:12:00    2017-07-08 04:12:00
103462    33219    694    2017-07-08 02:35:00    2017-07-08 02:35:00
103463    33219    923    2017-07-08 17:39:00    2017-07-08 17:39:00
103464    33219    653    2017-07-08 17:22:00    2017-07-08 17:22:00
103465    33220    928    2017-07-08 19:26:00    2017-07-08 19:26:00
103466    33220    681    2017-07-08 01:12:00    2017-07-08 01:12:00
103467    33220    870    2017-07-08 08:01:00    2017-07-08 08:01:00
103468    33220    794    2017-07-08 23:55:00    2017-07-08 23:55:00
103469    33220    507    2017-07-08 02:09:00    2017-07-08 02:09:00
103470    33221    575    2017-07-08 14:36:00    2017-07-08 14:36:00
103471    33221    853    2017-07-08 11:34:00    2017-07-08 11:34:00
103472    33221    467    2017-07-08 08:53:00    2017-07-08 08:53:00
103473    33221    659    2017-07-08 05:23:00    2017-07-08 05:23:00
103474    33221    925    2017-07-08 17:50:00    2017-07-08 17:50:00
103475    33222    602    2017-07-08 07:17:00    2017-07-08 07:17:00
103476    33222    640    2017-07-08 21:04:00    2017-07-08 21:04:00
103477    33222    582    2017-07-08 20:50:00    2017-07-08 20:50:00
103478    33222    793    2017-07-08 15:50:00    2017-07-08 15:50:00
103479    33222    837    2017-07-08 04:02:00    2017-07-08 04:02:00
103480    33223    840    2017-07-08 08:32:00    2017-07-08 08:32:00
103481    33223    465    2017-07-08 05:32:00    2017-07-08 05:32:00
103482    33223    500    2017-07-08 12:09:00    2017-07-08 12:09:00
103483    33223    606    2017-07-08 23:14:00    2017-07-08 23:14:00
103484    33223    704    2017-07-08 11:47:00    2017-07-08 11:47:00
103485    33224    634    2017-07-08 21:52:00    2017-07-08 21:52:00
103486    33224    759    2017-07-08 16:41:00    2017-07-08 16:41:00
103487    33224    813    2017-07-08 13:52:00    2017-07-08 13:52:00
103488    33224    530    2017-07-08 23:59:00    2017-07-08 23:59:00
103489    33224    637    2017-07-08 21:08:00    2017-07-08 21:08:00
103490    33225    775    2017-07-08 06:26:00    2017-07-08 06:26:00
103491    33225    947    2017-07-08 06:57:00    2017-07-08 06:57:00
103492    33225    806    2017-07-08 06:23:00    2017-07-08 06:23:00
103493    33225    623    2017-07-08 20:11:00    2017-07-08 20:11:00
103494    33225    488    2017-07-08 08:00:00    2017-07-08 08:00:00
103495    33226    553    2017-07-08 12:07:00    2017-07-08 12:07:00
103496    33226    703    2017-07-08 14:57:00    2017-07-08 14:57:00
103497    33226    546    2017-07-08 13:59:00    2017-07-08 13:59:00
103498    33226    631    2017-07-08 16:18:00    2017-07-08 16:18:00
103499    33226    633    2017-07-08 08:20:00    2017-07-08 08:20:00
103500    33227    746    2017-07-08 03:42:00    2017-07-08 03:42:00
103501    33227    530    2017-07-08 15:19:00    2017-07-08 15:19:00
103502    33227    833    2017-07-08 23:39:00    2017-07-08 23:39:00
103503    33227    744    2017-07-08 21:32:00    2017-07-08 21:32:00
103504    33227    855    2017-07-08 13:38:00    2017-07-08 13:38:00
103505    33228    909    2017-07-08 18:38:00    2017-07-08 18:38:00
103506    33228    597    2017-07-08 15:58:00    2017-07-08 15:58:00
103507    33228    901    2017-07-08 03:58:00    2017-07-08 03:58:00
103508    33228    768    2017-07-08 10:00:00    2017-07-08 10:00:00
103509    33228    910    2017-07-08 17:47:00    2017-07-08 17:47:00
103510    33229    525    2017-07-08 09:47:00    2017-07-08 09:47:00
103511    33229    828    2017-07-08 18:35:00    2017-07-08 18:35:00
103512    33229    828    2017-07-08 01:26:00    2017-07-08 01:26:00
103513    33229    935    2017-07-08 02:49:00    2017-07-08 02:49:00
103514    33229    487    2017-07-08 16:15:00    2017-07-08 16:15:00
103515    33230    715    2017-07-08 08:14:00    2017-07-08 08:14:00
103516    33230    788    2017-07-08 19:20:00    2017-07-08 19:20:00
103517    33230    656    2017-07-08 06:28:00    2017-07-08 06:28:00
103518    33230    480    2017-07-08 19:40:00    2017-07-08 19:40:00
103519    33230    782    2017-07-08 22:23:00    2017-07-08 22:23:00
103520    33231    567    2017-07-08 02:10:00    2017-07-08 02:10:00
103521    33231    788    2017-07-08 03:32:00    2017-07-08 03:32:00
103522    33231    770    2017-07-08 17:17:00    2017-07-08 17:17:00
103523    33231    953    2017-07-08 23:49:00    2017-07-08 23:49:00
103524    33231    608    2017-07-08 23:39:00    2017-07-08 23:39:00
103525    33232    928    2017-07-08 14:17:00    2017-07-08 14:17:00
103526    33232    571    2017-07-08 07:05:00    2017-07-08 07:05:00
103527    33232    797    2017-07-08 16:36:00    2017-07-08 16:36:00
103528    33232    532    2017-07-08 14:15:00    2017-07-08 14:15:00
103529    33232    796    2017-07-08 22:53:00    2017-07-08 22:53:00
103530    33233    815    2017-07-08 08:33:00    2017-07-08 08:33:00
103531    33233    565    2017-07-08 02:53:00    2017-07-08 02:53:00
103532    33233    887    2017-07-08 13:51:00    2017-07-08 13:51:00
103533    33233    582    2017-07-08 15:06:00    2017-07-08 15:06:00
103534    33233    550    2017-07-08 16:33:00    2017-07-08 16:33:00
103535    33234    522    2017-07-08 14:16:00    2017-07-08 14:16:00
103536    33234    570    2017-07-08 03:43:00    2017-07-08 03:43:00
103537    33234    513    2017-07-08 06:55:00    2017-07-08 06:55:00
103538    33234    598    2017-07-08 09:40:00    2017-07-08 09:40:00
103539    33234    611    2017-07-08 17:08:00    2017-07-08 17:08:00
103540    33235    575    2017-07-08 07:08:00    2017-07-08 07:08:00
103541    33235    583    2017-07-08 11:31:00    2017-07-08 11:31:00
103542    33235    643    2017-07-08 17:34:00    2017-07-08 17:34:00
103543    33235    951    2017-07-08 19:59:00    2017-07-08 19:59:00
103544    33235    520    2017-07-08 06:47:00    2017-07-08 06:47:00
103545    33236    814    2017-07-08 06:42:00    2017-07-08 06:42:00
103546    33236    630    2017-07-08 09:53:00    2017-07-08 09:53:00
103547    33236    738    2017-07-08 09:55:00    2017-07-08 09:55:00
103548    33236    722    2017-07-08 14:33:00    2017-07-08 14:33:00
103549    33236    625    2017-07-08 21:15:00    2017-07-08 21:15:00
103550    33237    732    2017-07-08 09:50:00    2017-07-08 09:50:00
103551    33237    479    2017-07-08 22:40:00    2017-07-08 22:40:00
103552    33237    528    2017-07-08 03:13:00    2017-07-08 03:13:00
103553    33237    839    2017-07-08 02:20:00    2017-07-08 02:20:00
103554    33237    476    2017-07-08 03:06:00    2017-07-08 03:06:00
103555    33238    814    2017-07-08 08:39:00    2017-07-08 08:39:00
103556    33238    811    2017-07-08 06:51:00    2017-07-08 06:51:00
103557    33238    762    2017-07-08 03:46:00    2017-07-08 03:46:00
103558    33238    817    2017-07-08 21:38:00    2017-07-08 21:38:00
103559    33238    544    2017-07-08 06:46:00    2017-07-08 06:46:00
103560    33239    510    2017-07-08 18:37:00    2017-07-08 18:37:00
103561    33239    886    2017-07-08 01:18:00    2017-07-08 01:18:00
103562    33239    563    2017-07-08 09:00:00    2017-07-08 09:00:00
103563    33239    469    2017-07-08 09:02:00    2017-07-08 09:02:00
103564    33239    598    2017-07-08 16:57:00    2017-07-08 16:57:00
103565    33240    469    2017-07-08 12:47:00    2017-07-08 12:47:00
103566    33240    688    2017-07-08 03:51:00    2017-07-08 03:51:00
103567    33240    467    2017-07-08 21:35:00    2017-07-08 21:35:00
103568    33240    611    2017-07-08 03:00:00    2017-07-08 03:00:00
103569    33240    518    2017-07-08 07:01:00    2017-07-08 07:01:00
103570    33241    553    2017-07-08 07:40:00    2017-07-08 07:40:00
103571    33241    604    2017-07-08 10:13:00    2017-07-08 10:13:00
103572    33241    754    2017-07-08 20:47:00    2017-07-08 20:47:00
103573    33241    827    2017-07-08 10:13:00    2017-07-08 10:13:00
103574    33241    635    2017-07-08 07:47:00    2017-07-08 07:47:00
103575    33242    870    2017-07-08 16:18:00    2017-07-08 16:18:00
103576    33242    727    2017-07-08 03:04:00    2017-07-08 03:04:00
103577    33242    706    2017-07-08 17:17:00    2017-07-08 17:17:00
103578    33242    667    2017-07-08 01:33:00    2017-07-08 01:33:00
103579    33242    778    2017-07-08 09:06:00    2017-07-08 09:06:00
103580    33243    563    2017-07-08 11:13:00    2017-07-08 11:13:00
103581    33243    780    2017-07-08 23:11:00    2017-07-08 23:11:00
103582    33243    927    2017-07-08 15:35:00    2017-07-08 15:35:00
103583    33243    754    2017-07-08 22:40:00    2017-07-08 22:40:00
103584    33243    785    2017-07-08 03:55:00    2017-07-08 03:55:00
103585    33244    641    2017-07-08 20:27:00    2017-07-08 20:27:00
103586    33244    717    2017-07-08 08:35:00    2017-07-08 08:35:00
103587    33244    472    2017-07-08 01:43:00    2017-07-08 01:43:00
103588    33244    535    2017-07-08 07:51:00    2017-07-08 07:51:00
103589    33244    779    2017-07-08 12:08:00    2017-07-08 12:08:00
103590    33245    684    2017-07-08 18:36:00    2017-07-08 18:36:00
103591    33245    845    2017-07-08 11:44:00    2017-07-08 11:44:00
103592    33245    939    2017-07-08 21:50:00    2017-07-08 21:50:00
103593    33245    758    2017-07-08 08:48:00    2017-07-08 08:48:00
103594    33245    593    2017-07-08 15:09:00    2017-07-08 15:09:00
103595    33246    756    2017-07-08 23:04:00    2017-07-08 23:04:00
103596    33246    874    2017-07-08 14:45:00    2017-07-08 14:45:00
103597    33246    689    2017-07-08 12:14:00    2017-07-08 12:14:00
103598    33246    846    2017-07-08 16:46:00    2017-07-08 16:46:00
103599    33246    638    2017-07-08 20:59:00    2017-07-08 20:59:00
103600    33247    783    2017-07-08 05:45:00    2017-07-08 05:45:00
103601    33247    732    2017-07-08 14:07:00    2017-07-08 14:07:00
103602    33247    754    2017-07-08 08:34:00    2017-07-08 08:34:00
103603    33247    567    2017-07-08 20:49:00    2017-07-08 20:49:00
103604    33247    641    2017-07-08 01:03:00    2017-07-08 01:03:00
103605    33248    653    2017-07-08 10:10:00    2017-07-08 10:10:00
103606    33248    911    2017-07-08 23:17:00    2017-07-08 23:17:00
103607    33248    931    2017-07-08 17:14:00    2017-07-08 17:14:00
103608    33248    864    2017-07-08 02:36:00    2017-07-08 02:36:00
103609    33248    564    2017-07-08 07:20:00    2017-07-08 07:20:00
103610    33249    814    2017-07-08 04:05:00    2017-07-08 04:05:00
103611    33249    766    2017-07-08 15:45:00    2017-07-08 15:45:00
103612    33249    800    2017-07-08 19:30:00    2017-07-08 19:30:00
103613    33249    937    2017-07-08 15:40:00    2017-07-08 15:40:00
103614    33249    926    2017-07-08 22:38:00    2017-07-08 22:38:00
103615    33250    646    2017-07-08 04:44:00    2017-07-08 04:44:00
103616    33250    478    2017-07-08 05:22:00    2017-07-08 05:22:00
103617    33250    493    2017-07-08 16:25:00    2017-07-08 16:25:00
103618    33250    840    2017-07-08 01:34:00    2017-07-08 01:34:00
103619    33250    744    2017-07-08 17:00:00    2017-07-08 17:00:00
103620    33251    726    2017-07-08 22:33:00    2017-07-08 22:33:00
103621    33251    543    2017-07-08 14:29:00    2017-07-08 14:29:00
103622    33251    594    2017-07-08 07:52:00    2017-07-08 07:52:00
103623    33251    602    2017-07-08 15:16:00    2017-07-08 15:16:00
103624    33251    683    2017-07-08 04:30:00    2017-07-08 04:30:00
103625    33252    682    2017-07-08 12:36:00    2017-07-08 12:36:00
103626    33252    919    2017-07-08 06:30:00    2017-07-08 06:30:00
103627    33252    923    2017-07-08 20:15:00    2017-07-08 20:15:00
103628    33252    955    2017-07-08 01:02:00    2017-07-08 01:02:00
103629    33252    886    2017-07-08 19:16:00    2017-07-08 19:16:00
103630    33253    463    2017-07-08 15:22:00    2017-07-08 15:22:00
103631    33253    483    2017-07-08 01:12:00    2017-07-08 01:12:00
103632    33253    515    2017-07-08 11:48:00    2017-07-08 11:48:00
103633    33253    545    2017-07-08 12:31:00    2017-07-08 12:31:00
103634    33253    608    2017-07-08 04:23:00    2017-07-08 04:23:00
103635    33254    707    2017-07-08 23:12:00    2017-07-08 23:12:00
103636    33254    510    2017-07-08 21:19:00    2017-07-08 21:19:00
103637    33254    490    2017-07-08 17:00:00    2017-07-08 17:00:00
103638    33254    545    2017-07-08 08:40:00    2017-07-08 08:40:00
103639    33254    846    2017-07-08 21:59:00    2017-07-08 21:59:00
103640    33255    725    2017-07-08 12:33:00    2017-07-08 12:33:00
103641    33255    646    2017-07-08 06:08:00    2017-07-08 06:08:00
103642    33255    592    2017-07-08 16:55:00    2017-07-08 16:55:00
103643    33255    607    2017-07-08 01:48:00    2017-07-08 01:48:00
103644    33255    750    2017-07-08 15:27:00    2017-07-08 15:27:00
103645    33256    816    2017-07-09 09:00:00    2017-07-09 09:00:00
103646    33256    867    2017-07-09 12:03:00    2017-07-09 12:03:00
103647    33256    517    2017-07-09 03:48:00    2017-07-09 03:48:00
103648    33256    945    2017-07-09 09:56:00    2017-07-09 09:56:00
103649    33256    772    2017-07-09 11:17:00    2017-07-09 11:17:00
103650    33257    554    2017-07-09 19:05:00    2017-07-09 19:05:00
103651    33257    837    2017-07-09 13:03:00    2017-07-09 13:03:00
103652    33257    779    2017-07-09 16:34:00    2017-07-09 16:34:00
103653    33257    908    2017-07-09 13:29:00    2017-07-09 13:29:00
103654    33257    752    2017-07-09 22:38:00    2017-07-09 22:38:00
103655    33258    650    2017-07-09 18:25:00    2017-07-09 18:25:00
103656    33258    818    2017-07-09 08:48:00    2017-07-09 08:48:00
103657    33258    732    2017-07-09 23:02:00    2017-07-09 23:02:00
103658    33258    602    2017-07-09 17:45:00    2017-07-09 17:45:00
103659    33258    525    2017-07-09 11:16:00    2017-07-09 11:16:00
103660    33259    736    2017-07-09 07:24:00    2017-07-09 07:24:00
103661    33259    793    2017-07-09 02:24:00    2017-07-09 02:24:00
103662    33259    720    2017-07-09 17:45:00    2017-07-09 17:45:00
103663    33259    853    2017-07-09 12:20:00    2017-07-09 12:20:00
103664    33259    686    2017-07-09 11:47:00    2017-07-09 11:47:00
103665    33260    631    2017-07-09 14:52:00    2017-07-09 14:52:00
103666    33260    559    2017-07-09 06:14:00    2017-07-09 06:14:00
103667    33260    585    2017-07-09 02:31:00    2017-07-09 02:31:00
103668    33260    855    2017-07-09 22:08:00    2017-07-09 22:08:00
103669    33260    828    2017-07-09 13:00:00    2017-07-09 13:00:00
103670    33261    759    2017-07-09 13:04:00    2017-07-09 13:04:00
103671    33261    883    2017-07-09 22:23:00    2017-07-09 22:23:00
103672    33261    520    2017-07-09 18:40:00    2017-07-09 18:40:00
103673    33261    673    2017-07-09 15:20:00    2017-07-09 15:20:00
103674    33261    790    2017-07-09 11:49:00    2017-07-09 11:49:00
103675    33262    831    2017-07-09 10:43:00    2017-07-09 10:43:00
103676    33262    473    2017-07-09 14:06:00    2017-07-09 14:06:00
103677    33262    614    2017-07-09 22:53:00    2017-07-09 22:53:00
103678    33262    705    2017-07-09 04:29:00    2017-07-09 04:29:00
103679    33262    671    2017-07-09 23:43:00    2017-07-09 23:43:00
103680    33263    801    2017-07-09 16:14:00    2017-07-09 16:14:00
103681    33263    809    2017-07-09 05:00:00    2017-07-09 05:00:00
103682    33263    593    2017-07-09 02:41:00    2017-07-09 02:41:00
103683    33263    878    2017-07-09 09:01:00    2017-07-09 09:01:00
103684    33263    721    2017-07-09 10:49:00    2017-07-09 10:49:00
103685    33264    912    2017-07-09 21:00:00    2017-07-09 21:00:00
103686    33264    517    2017-07-09 04:49:00    2017-07-09 04:49:00
103687    33264    706    2017-07-09 03:10:00    2017-07-09 03:10:00
103688    33264    606    2017-07-09 20:06:00    2017-07-09 20:06:00
103689    33264    601    2017-07-09 05:45:00    2017-07-09 05:45:00
103690    33265    892    2017-07-09 20:41:00    2017-07-09 20:41:00
103691    33265    660    2017-07-09 18:34:00    2017-07-09 18:34:00
103692    33265    665    2017-07-09 17:18:00    2017-07-09 17:18:00
103693    33265    523    2017-07-09 16:22:00    2017-07-09 16:22:00
103694    33265    946    2017-07-09 08:05:00    2017-07-09 08:05:00
103695    33266    751    2017-07-09 22:08:00    2017-07-09 22:08:00
103696    33266    700    2017-07-09 16:11:00    2017-07-09 16:11:00
103697    33266    697    2017-07-09 01:08:00    2017-07-09 01:08:00
103698    33266    772    2017-07-09 21:07:00    2017-07-09 21:07:00
103699    33266    777    2017-07-09 12:56:00    2017-07-09 12:56:00
103700    33267    852    2017-07-09 12:23:00    2017-07-09 12:23:00
103701    33267    488    2017-07-09 09:51:00    2017-07-09 09:51:00
103702    33267    608    2017-07-09 19:46:00    2017-07-09 19:46:00
103703    33267    859    2017-07-09 10:04:00    2017-07-09 10:04:00
103704    33267    914    2017-07-09 16:22:00    2017-07-09 16:22:00
103705    33268    678    2017-07-09 08:23:00    2017-07-09 08:23:00
103706    33268    717    2017-07-09 04:52:00    2017-07-09 04:52:00
103707    33268    630    2017-07-09 02:41:00    2017-07-09 02:41:00
103708    33268    876    2017-07-09 13:08:00    2017-07-09 13:08:00
103709    33268    921    2017-07-09 15:55:00    2017-07-09 15:55:00
103710    33269    668    2017-07-09 10:41:00    2017-07-09 10:41:00
103711    33269    830    2017-07-09 18:14:00    2017-07-09 18:14:00
103712    33269    903    2017-07-09 01:33:00    2017-07-09 01:33:00
103713    33269    897    2017-07-09 11:15:00    2017-07-09 11:15:00
103714    33269    495    2017-07-09 12:48:00    2017-07-09 12:48:00
103715    33270    594    2017-07-10 12:12:00    2017-07-10 12:12:00
103716    33270    675    2017-07-10 12:26:00    2017-07-10 12:26:00
103717    33270    648    2017-07-10 20:31:00    2017-07-10 20:31:00
103718    33270    670    2017-07-10 12:41:00    2017-07-10 12:41:00
103719    33270    532    2017-07-10 16:58:00    2017-07-10 16:58:00
103720    33271    684    2017-07-10 11:01:00    2017-07-10 11:01:00
103721    33271    834    2017-07-10 11:22:00    2017-07-10 11:22:00
103722    33271    793    2017-07-10 18:14:00    2017-07-10 18:14:00
103723    33271    838    2017-07-10 01:17:00    2017-07-10 01:17:00
103724    33271    694    2017-07-10 15:50:00    2017-07-10 15:50:00
103725    33272    714    2017-07-10 03:09:00    2017-07-10 03:09:00
103726    33272    854    2017-07-10 01:37:00    2017-07-10 01:37:00
103727    33272    763    2017-07-10 15:31:00    2017-07-10 15:31:00
103728    33272    643    2017-07-10 23:13:00    2017-07-10 23:13:00
103729    33272    834    2017-07-10 08:18:00    2017-07-10 08:18:00
103730    33273    631    2017-07-10 10:47:00    2017-07-10 10:47:00
103731    33273    657    2017-07-10 22:15:00    2017-07-10 22:15:00
103732    33273    695    2017-07-10 02:00:00    2017-07-10 02:00:00
103733    33273    750    2017-07-10 23:48:00    2017-07-10 23:48:00
103734    33273    639    2017-07-10 10:55:00    2017-07-10 10:55:00
103735    33274    941    2017-07-10 02:18:00    2017-07-10 02:18:00
103736    33274    872    2017-07-10 02:00:00    2017-07-10 02:00:00
103737    33274    616    2017-07-10 20:30:00    2017-07-10 20:30:00
103738    33274    574    2017-07-10 16:26:00    2017-07-10 16:26:00
103739    33274    844    2017-07-10 19:42:00    2017-07-10 19:42:00
103740    33275    483    2017-07-10 18:58:00    2017-07-10 18:58:00
103741    33275    531    2017-07-10 16:47:00    2017-07-10 16:47:00
103742    33275    687    2017-07-10 16:01:00    2017-07-10 16:01:00
103743    33275    901    2017-07-10 20:56:00    2017-07-10 20:56:00
103744    33275    788    2017-07-10 07:52:00    2017-07-10 07:52:00
103745    33276    736    2017-07-10 08:32:00    2017-07-10 08:32:00
103746    33276    726    2017-07-10 07:43:00    2017-07-10 07:43:00
103747    33276    923    2017-07-10 21:17:00    2017-07-10 21:17:00
103748    33276    545    2017-07-10 07:59:00    2017-07-10 07:59:00
103749    33276    670    2017-07-10 03:23:00    2017-07-10 03:23:00
103750    33277    524    2017-07-10 03:48:00    2017-07-10 03:48:00
103751    33277    899    2017-07-10 11:40:00    2017-07-10 11:40:00
103752    33277    839    2017-07-10 07:05:00    2017-07-10 07:05:00
103753    33277    510    2017-07-10 01:12:00    2017-07-10 01:12:00
103754    33277    698    2017-07-10 10:01:00    2017-07-10 10:01:00
103755    33278    705    2017-07-10 18:23:00    2017-07-10 18:23:00
103756    33278    529    2017-07-10 09:07:00    2017-07-10 09:07:00
103757    33278    629    2017-07-10 23:10:00    2017-07-10 23:10:00
103758    33278    697    2017-07-10 18:44:00    2017-07-10 18:44:00
103759    33278    903    2017-07-10 21:07:00    2017-07-10 21:07:00
103760    33279    528    2017-07-10 05:13:00    2017-07-10 05:13:00
103761    33279    899    2017-07-10 07:50:00    2017-07-10 07:50:00
103762    33279    789    2017-07-10 11:42:00    2017-07-10 11:42:00
103763    33279    488    2017-07-10 08:17:00    2017-07-10 08:17:00
103764    33279    620    2017-07-10 16:01:00    2017-07-10 16:01:00
103765    33280    738    2017-07-10 12:02:00    2017-07-10 12:02:00
103766    33280    545    2017-07-10 07:44:00    2017-07-10 07:44:00
103767    33280    597    2017-07-10 04:04:00    2017-07-10 04:04:00
103768    33280    673    2017-07-10 06:27:00    2017-07-10 06:27:00
103769    33280    705    2017-07-10 21:51:00    2017-07-10 21:51:00
103770    33281    869    2017-07-10 21:34:00    2017-07-10 21:34:00
103771    33281    473    2017-07-10 13:05:00    2017-07-10 13:05:00
103772    33281    544    2017-07-10 06:01:00    2017-07-10 06:01:00
103773    33281    689    2017-07-10 04:26:00    2017-07-10 04:26:00
103774    33281    810    2017-07-10 20:33:00    2017-07-10 20:33:00
103775    33282    775    2017-07-10 21:36:00    2017-07-10 21:36:00
103776    33282    595    2017-07-10 20:03:00    2017-07-10 20:03:00
103777    33282    816    2017-07-10 06:09:00    2017-07-10 06:09:00
103778    33282    753    2017-07-10 01:47:00    2017-07-10 01:47:00
103779    33282    741    2017-07-10 10:42:00    2017-07-10 10:42:00
103780    33283    839    2017-07-10 01:42:00    2017-07-10 01:42:00
103781    33283    606    2017-07-10 03:28:00    2017-07-10 03:28:00
103782    33283    769    2017-07-10 12:11:00    2017-07-10 12:11:00
103783    33283    716    2017-07-10 21:07:00    2017-07-10 21:07:00
103784    33283    493    2017-07-10 12:41:00    2017-07-10 12:41:00
103785    33284    747    2017-07-10 17:24:00    2017-07-10 17:24:00
103786    33284    629    2017-07-10 14:33:00    2017-07-10 14:33:00
103787    33284    835    2017-07-10 19:53:00    2017-07-10 19:53:00
103788    33284    504    2017-07-10 03:23:00    2017-07-10 03:23:00
103789    33284    701    2017-07-10 07:00:00    2017-07-10 07:00:00
103790    33285    930    2017-07-10 14:48:00    2017-07-10 14:48:00
103791    33285    466    2017-07-10 15:17:00    2017-07-10 15:17:00
103792    33285    671    2017-07-10 22:15:00    2017-07-10 22:15:00
103793    33285    828    2017-07-10 11:58:00    2017-07-10 11:58:00
103794    33285    811    2017-07-10 18:44:00    2017-07-10 18:44:00
103795    33286    701    2017-07-10 10:31:00    2017-07-10 10:31:00
103796    33286    775    2017-07-10 20:24:00    2017-07-10 20:24:00
103797    33286    925    2017-07-10 09:33:00    2017-07-10 09:33:00
103798    33286    793    2017-07-10 17:52:00    2017-07-10 17:52:00
103799    33286    618    2017-07-10 21:52:00    2017-07-10 21:52:00
103800    33287    846    2017-07-10 14:40:00    2017-07-10 14:40:00
103801    33287    828    2017-07-10 01:23:00    2017-07-10 01:23:00
103802    33287    465    2017-07-10 13:50:00    2017-07-10 13:50:00
103803    33287    647    2017-07-10 23:36:00    2017-07-10 23:36:00
103804    33287    748    2017-07-10 08:04:00    2017-07-10 08:04:00
103805    33288    844    2017-07-10 09:51:00    2017-07-10 09:51:00
103806    33288    483    2017-07-10 08:45:00    2017-07-10 08:45:00
103807    33288    680    2017-07-10 05:25:00    2017-07-10 05:25:00
103808    33288    730    2017-07-10 06:32:00    2017-07-10 06:32:00
103809    33288    898    2017-07-10 19:16:00    2017-07-10 19:16:00
103810    33289    928    2017-07-10 21:49:00    2017-07-10 21:49:00
103811    33289    485    2017-07-10 20:40:00    2017-07-10 20:40:00
103812    33289    926    2017-07-10 12:00:00    2017-07-10 12:00:00
103813    33289    611    2017-07-10 02:38:00    2017-07-10 02:38:00
103814    33289    858    2017-07-10 11:21:00    2017-07-10 11:21:00
103815    33290    620    2017-07-10 03:43:00    2017-07-10 03:43:00
103816    33290    836    2017-07-10 20:22:00    2017-07-10 20:22:00
103817    33290    800    2017-07-10 04:24:00    2017-07-10 04:24:00
103818    33290    728    2017-07-10 10:51:00    2017-07-10 10:51:00
103819    33290    798    2017-07-10 23:55:00    2017-07-10 23:55:00
103820    33291    649    2017-07-10 08:20:00    2017-07-10 08:20:00
103821    33291    833    2017-07-10 08:56:00    2017-07-10 08:56:00
103822    33291    531    2017-07-10 19:43:00    2017-07-10 19:43:00
103823    33291    784    2017-07-10 11:01:00    2017-07-10 11:01:00
103824    33291    806    2017-07-10 06:35:00    2017-07-10 06:35:00
103825    33292    660    2017-07-10 19:51:00    2017-07-10 19:51:00
103826    33292    525    2017-07-10 15:28:00    2017-07-10 15:28:00
103827    33292    568    2017-07-10 23:11:00    2017-07-10 23:11:00
103828    33292    857    2017-07-10 13:29:00    2017-07-10 13:29:00
103829    33292    951    2017-07-10 22:49:00    2017-07-10 22:49:00
103830    33293    682    2017-07-10 15:18:00    2017-07-10 15:18:00
103831    33293    809    2017-07-10 20:43:00    2017-07-10 20:43:00
103832    33293    755    2017-07-10 10:02:00    2017-07-10 10:02:00
103833    33293    838    2017-07-10 01:26:00    2017-07-10 01:26:00
103834    33293    524    2017-07-10 21:48:00    2017-07-10 21:48:00
103835    33294    797    2017-07-10 21:41:00    2017-07-10 21:41:00
103836    33294    596    2017-07-10 20:45:00    2017-07-10 20:45:00
103837    33294    578    2017-07-10 21:50:00    2017-07-10 21:50:00
103838    33294    498    2017-07-10 14:14:00    2017-07-10 14:14:00
103839    33294    514    2017-07-10 18:51:00    2017-07-10 18:51:00
103840    33295    843    2017-07-10 23:52:00    2017-07-10 23:52:00
103841    33295    496    2017-07-10 21:05:00    2017-07-10 21:05:00
103842    33295    876    2017-07-10 16:33:00    2017-07-10 16:33:00
103843    33295    732    2017-07-10 09:58:00    2017-07-10 09:58:00
103844    33295    715    2017-07-10 18:48:00    2017-07-10 18:48:00
103845    33296    509    2017-07-10 05:35:00    2017-07-10 05:35:00
103846    33296    687    2017-07-10 04:06:00    2017-07-10 04:06:00
103847    33296    636    2017-07-10 14:31:00    2017-07-10 14:31:00
103848    33296    682    2017-07-10 15:26:00    2017-07-10 15:26:00
103849    33296    655    2017-07-10 20:12:00    2017-07-10 20:12:00
103850    33297    513    2017-07-10 18:34:00    2017-07-10 18:34:00
103851    33297    875    2017-07-10 15:58:00    2017-07-10 15:58:00
103852    33297    772    2017-07-10 11:23:00    2017-07-10 11:23:00
103853    33297    907    2017-07-10 03:17:00    2017-07-10 03:17:00
103854    33297    630    2017-07-10 19:50:00    2017-07-10 19:50:00
103855    33298    628    2017-07-10 02:53:00    2017-07-10 02:53:00
103856    33298    682    2017-07-10 02:45:00    2017-07-10 02:45:00
103857    33298    828    2017-07-10 04:47:00    2017-07-10 04:47:00
103858    33298    823    2017-07-10 05:20:00    2017-07-10 05:20:00
103859    33298    633    2017-07-10 19:49:00    2017-07-10 19:49:00
103860    33299    779    2017-07-10 17:41:00    2017-07-10 17:41:00
103861    33299    540    2017-07-10 06:48:00    2017-07-10 06:48:00
103862    33299    753    2017-07-10 04:35:00    2017-07-10 04:35:00
103863    33299    758    2017-07-10 23:15:00    2017-07-10 23:15:00
103864    33299    615    2017-07-10 21:42:00    2017-07-10 21:42:00
103865    33300    721    2017-07-10 19:35:00    2017-07-10 19:35:00
103866    33300    947    2017-07-10 15:59:00    2017-07-10 15:59:00
103867    33300    838    2017-07-10 20:32:00    2017-07-10 20:32:00
103868    33300    624    2017-07-10 08:54:00    2017-07-10 08:54:00
103869    33300    810    2017-07-10 07:15:00    2017-07-10 07:15:00
103870    33301    643    2017-07-10 19:26:00    2017-07-10 19:26:00
103871    33301    512    2017-07-10 01:48:00    2017-07-10 01:48:00
103872    33301    825    2017-07-10 04:19:00    2017-07-10 04:19:00
103873    33301    706    2017-07-10 12:53:00    2017-07-10 12:53:00
103874    33301    735    2017-07-10 07:53:00    2017-07-10 07:53:00
103875    33302    943    2017-07-10 10:17:00    2017-07-10 10:17:00
103876    33302    799    2017-07-10 02:02:00    2017-07-10 02:02:00
103877    33302    649    2017-07-10 17:32:00    2017-07-10 17:32:00
103878    33302    517    2017-07-10 06:02:00    2017-07-10 06:02:00
103879    33302    718    2017-07-10 19:11:00    2017-07-10 19:11:00
103880    33303    951    2017-07-10 12:24:00    2017-07-10 12:24:00
103881    33303    947    2017-07-10 16:42:00    2017-07-10 16:42:00
103882    33303    585    2017-07-10 12:36:00    2017-07-10 12:36:00
103883    33303    860    2017-07-10 15:29:00    2017-07-10 15:29:00
103884    33303    542    2017-07-10 23:02:00    2017-07-10 23:02:00
103885    33304    886    2017-07-10 03:58:00    2017-07-10 03:58:00
103886    33304    784    2017-07-10 20:43:00    2017-07-10 20:43:00
103887    33304    681    2017-07-10 22:42:00    2017-07-10 22:42:00
103888    33304    674    2017-07-10 13:22:00    2017-07-10 13:22:00
103889    33304    530    2017-07-10 20:22:00    2017-07-10 20:22:00
103890    33305    499    2017-07-10 12:10:00    2017-07-10 12:10:00
103891    33305    769    2017-07-10 13:02:00    2017-07-10 13:02:00
103892    33305    661    2017-07-10 01:06:00    2017-07-10 01:06:00
103893    33305    879    2017-07-10 01:00:00    2017-07-10 01:00:00
103894    33305    770    2017-07-10 21:02:00    2017-07-10 21:02:00
103895    33306    577    2017-07-10 14:25:00    2017-07-10 14:25:00
103896    33306    798    2017-07-10 17:11:00    2017-07-10 17:11:00
103897    33306    621    2017-07-10 10:47:00    2017-07-10 10:47:00
103898    33306    868    2017-07-10 06:57:00    2017-07-10 06:57:00
103899    33306    630    2017-07-10 19:07:00    2017-07-10 19:07:00
103900    33307    780    2017-07-10 15:09:00    2017-07-10 15:09:00
103901    33307    781    2017-07-10 14:44:00    2017-07-10 14:44:00
103902    33307    861    2017-07-10 14:02:00    2017-07-10 14:02:00
103903    33307    790    2017-07-10 05:49:00    2017-07-10 05:49:00
103904    33307    463    2017-07-10 11:36:00    2017-07-10 11:36:00
103905    33308    517    2017-07-10 18:29:00    2017-07-10 18:29:00
103906    33308    550    2017-07-10 16:18:00    2017-07-10 16:18:00
103907    33308    740    2017-07-10 15:42:00    2017-07-10 15:42:00
103908    33308    541    2017-07-10 22:52:00    2017-07-10 22:52:00
103909    33308    915    2017-07-10 07:27:00    2017-07-10 07:27:00
103910    33309    841    2017-07-10 18:12:00    2017-07-10 18:12:00
103911    33309    944    2017-07-10 02:45:00    2017-07-10 02:45:00
103912    33309    734    2017-07-10 09:58:00    2017-07-10 09:58:00
103913    33309    578    2017-07-10 23:33:00    2017-07-10 23:33:00
103914    33309    711    2017-07-10 21:04:00    2017-07-10 21:04:00
103915    33310    837    2017-07-10 01:02:00    2017-07-10 01:02:00
103916    33310    744    2017-07-10 11:11:00    2017-07-10 11:11:00
103917    33310    926    2017-07-10 21:23:00    2017-07-10 21:23:00
103918    33310    669    2017-07-10 09:45:00    2017-07-10 09:45:00
103919    33310    698    2017-07-10 05:56:00    2017-07-10 05:56:00
103920    33311    826    2017-07-10 02:38:00    2017-07-10 02:38:00
103921    33311    951    2017-07-10 11:46:00    2017-07-10 11:46:00
103922    33311    753    2017-07-10 04:24:00    2017-07-10 04:24:00
103923    33311    898    2017-07-10 13:38:00    2017-07-10 13:38:00
103924    33311    649    2017-07-10 06:16:00    2017-07-10 06:16:00
103925    33312    619    2017-07-10 12:25:00    2017-07-10 12:25:00
103926    33312    946    2017-07-10 14:25:00    2017-07-10 14:25:00
103927    33312    683    2017-07-10 04:10:00    2017-07-10 04:10:00
103928    33312    677    2017-07-10 17:58:00    2017-07-10 17:58:00
103929    33312    718    2017-07-10 12:04:00    2017-07-10 12:04:00
103930    33313    839    2017-07-10 16:23:00    2017-07-10 16:23:00
103931    33313    797    2017-07-10 05:40:00    2017-07-10 05:40:00
103932    33313    961    2017-07-10 22:54:00    2017-07-10 22:54:00
103933    33313    942    2017-07-10 22:28:00    2017-07-10 22:28:00
103934    33313    914    2017-07-10 18:36:00    2017-07-10 18:36:00
103935    33314    636    2017-07-10 21:34:00    2017-07-10 21:34:00
103936    33314    757    2017-07-10 22:57:00    2017-07-10 22:57:00
103937    33314    867    2017-07-10 23:47:00    2017-07-10 23:47:00
103938    33314    591    2017-07-10 08:56:00    2017-07-10 08:56:00
103939    33314    786    2017-07-10 18:37:00    2017-07-10 18:37:00
103940    33315    547    2017-07-10 07:29:00    2017-07-10 07:29:00
103941    33315    540    2017-07-10 07:05:00    2017-07-10 07:05:00
103942    33315    870    2017-07-10 09:11:00    2017-07-10 09:11:00
103943    33315    581    2017-07-10 23:00:00    2017-07-10 23:00:00
103944    33315    597    2017-07-10 03:54:00    2017-07-10 03:54:00
103945    33316    528    2017-07-10 12:00:00    2017-07-10 12:00:00
103946    33316    953    2017-07-10 20:22:00    2017-07-10 20:22:00
103947    33316    788    2017-07-10 07:37:00    2017-07-10 07:37:00
103948    33316    922    2017-07-10 07:54:00    2017-07-10 07:54:00
103949    33316    893    2017-07-10 05:47:00    2017-07-10 05:47:00
103950    33317    581    2017-07-10 09:42:00    2017-07-10 09:42:00
103951    33317    592    2017-07-10 08:33:00    2017-07-10 08:33:00
103952    33317    778    2017-07-10 23:23:00    2017-07-10 23:23:00
103953    33317    950    2017-07-10 10:28:00    2017-07-10 10:28:00
103954    33317    823    2017-07-10 18:10:00    2017-07-10 18:10:00
103955    33318    565    2017-07-10 11:45:00    2017-07-10 11:45:00
103956    33318    846    2017-07-10 11:49:00    2017-07-10 11:49:00
103957    33318    603    2017-07-10 11:00:00    2017-07-10 11:00:00
103958    33318    543    2017-07-10 07:39:00    2017-07-10 07:39:00
103959    33318    889    2017-07-10 13:13:00    2017-07-10 13:13:00
103960    33319    872    2017-07-10 18:56:00    2017-07-10 18:56:00
103961    33319    588    2017-07-10 20:25:00    2017-07-10 20:25:00
103962    33319    859    2017-07-10 09:37:00    2017-07-10 09:37:00
103963    33319    488    2017-07-10 16:07:00    2017-07-10 16:07:00
103964    33319    933    2017-07-10 10:43:00    2017-07-10 10:43:00
103965    33320    678    2017-07-10 11:39:00    2017-07-10 11:39:00
103966    33320    830    2017-07-10 21:22:00    2017-07-10 21:22:00
103967    33320    782    2017-07-10 13:40:00    2017-07-10 13:40:00
103968    33320    636    2017-07-10 02:18:00    2017-07-10 02:18:00
103969    33320    900    2017-07-10 12:42:00    2017-07-10 12:42:00
103970    33321    568    2017-07-10 17:04:00    2017-07-10 17:04:00
103971    33321    552    2017-07-10 04:34:00    2017-07-10 04:34:00
103972    33321    546    2017-07-10 22:03:00    2017-07-10 22:03:00
103973    33321    655    2017-07-10 04:48:00    2017-07-10 04:48:00
103974    33321    491    2017-07-10 10:46:00    2017-07-10 10:46:00
103975    33322    709    2017-07-10 18:50:00    2017-07-10 18:50:00
103976    33322    468    2017-07-10 04:10:00    2017-07-10 04:10:00
103977    33322    521    2017-07-10 16:52:00    2017-07-10 16:52:00
103978    33322    959    2017-07-10 03:10:00    2017-07-10 03:10:00
103979    33322    684    2017-07-10 22:07:00    2017-07-10 22:07:00
103980    33323    658    2017-07-10 11:09:00    2017-07-10 11:09:00
103981    33323    693    2017-07-10 23:23:00    2017-07-10 23:23:00
103982    33323    484    2017-07-10 07:24:00    2017-07-10 07:24:00
103983    33323    871    2017-07-10 01:21:00    2017-07-10 01:21:00
103984    33323    626    2017-07-10 10:19:00    2017-07-10 10:19:00
103985    33324    849    2017-07-10 14:11:00    2017-07-10 14:11:00
103986    33324    935    2017-07-10 21:47:00    2017-07-10 21:47:00
103987    33324    692    2017-07-10 03:59:00    2017-07-10 03:59:00
103988    33324    847    2017-07-10 13:40:00    2017-07-10 13:40:00
103989    33324    583    2017-07-10 12:12:00    2017-07-10 12:12:00
103990    33325    503    2017-07-10 09:40:00    2017-07-10 09:40:00
103991    33325    918    2017-07-10 23:26:00    2017-07-10 23:26:00
103992    33325    867    2017-07-10 09:00:00    2017-07-10 09:00:00
103993    33325    615    2017-07-10 03:19:00    2017-07-10 03:19:00
103994    33325    598    2017-07-10 03:42:00    2017-07-10 03:42:00
103995    33326    552    2017-07-10 06:26:00    2017-07-10 06:26:00
103996    33326    704    2017-07-10 07:48:00    2017-07-10 07:48:00
103997    33326    555    2017-07-10 06:53:00    2017-07-10 06:53:00
103998    33326    568    2017-07-10 13:18:00    2017-07-10 13:18:00
103999    33326    634    2017-07-10 13:22:00    2017-07-10 13:22:00
104000    33327    590    2017-07-10 03:35:00    2017-07-10 03:35:00
104001    33327    752    2017-07-10 13:33:00    2017-07-10 13:33:00
104002    33327    826    2017-07-10 16:37:00    2017-07-10 16:37:00
104003    33327    477    2017-07-10 10:40:00    2017-07-10 10:40:00
104004    33327    535    2017-07-10 20:42:00    2017-07-10 20:42:00
104005    33328    848    2017-07-10 11:44:00    2017-07-10 11:44:00
104006    33328    716    2017-07-10 20:37:00    2017-07-10 20:37:00
104007    33328    953    2017-07-10 20:17:00    2017-07-10 20:17:00
104008    33328    838    2017-07-10 09:08:00    2017-07-10 09:08:00
104009    33328    776    2017-07-10 13:56:00    2017-07-10 13:56:00
104010    33329    804    2017-07-10 08:41:00    2017-07-10 08:41:00
104011    33329    576    2017-07-10 12:38:00    2017-07-10 12:38:00
104012    33329    807    2017-07-10 22:01:00    2017-07-10 22:01:00
104013    33329    884    2017-07-10 22:13:00    2017-07-10 22:13:00
104014    33329    675    2017-07-10 21:52:00    2017-07-10 21:52:00
104015    33330    549    2017-07-10 19:15:00    2017-07-10 19:15:00
104016    33330    688    2017-07-10 23:23:00    2017-07-10 23:23:00
104017    33330    658    2017-07-10 03:00:00    2017-07-10 03:00:00
104018    33330    523    2017-07-10 13:17:00    2017-07-10 13:17:00
104019    33330    800    2017-07-10 19:19:00    2017-07-10 19:19:00
104020    33331    550    2017-07-10 06:29:00    2017-07-10 06:29:00
104021    33331    638    2017-07-10 19:39:00    2017-07-10 19:39:00
104022    33331    736    2017-07-10 12:36:00    2017-07-10 12:36:00
104023    33331    578    2017-07-10 01:53:00    2017-07-10 01:53:00
104024    33331    823    2017-07-10 19:37:00    2017-07-10 19:37:00
104025    33332    926    2017-07-10 12:28:00    2017-07-10 12:28:00
104026    33332    952    2017-07-10 06:31:00    2017-07-10 06:31:00
104027    33332    590    2017-07-10 21:49:00    2017-07-10 21:49:00
104028    33332    948    2017-07-10 09:45:00    2017-07-10 09:45:00
104029    33332    937    2017-07-10 14:35:00    2017-07-10 14:35:00
104030    33333    542    2017-07-10 06:22:00    2017-07-10 06:22:00
104031    33333    687    2017-07-10 22:53:00    2017-07-10 22:53:00
104032    33333    684    2017-07-10 23:41:00    2017-07-10 23:41:00
104033    33333    931    2017-07-10 19:58:00    2017-07-10 19:58:00
104034    33333    563    2017-07-10 04:53:00    2017-07-10 04:53:00
104035    33334    489    2017-07-10 09:41:00    2017-07-10 09:41:00
104036    33334    488    2017-07-10 13:44:00    2017-07-10 13:44:00
104037    33334    789    2017-07-10 20:00:00    2017-07-10 20:00:00
104038    33334    700    2017-07-10 20:33:00    2017-07-10 20:33:00
104039    33334    955    2017-07-10 13:37:00    2017-07-10 13:37:00
104040    33335    519    2017-07-10 01:12:00    2017-07-10 01:12:00
104041    33335    640    2017-07-10 12:05:00    2017-07-10 12:05:00
104042    33335    560    2017-07-10 20:28:00    2017-07-10 20:28:00
104043    33335    838    2017-07-10 07:38:00    2017-07-10 07:38:00
104044    33335    466    2017-07-10 19:17:00    2017-07-10 19:17:00
104045    33336    784    2017-07-10 13:25:00    2017-07-10 13:25:00
104046    33336    806    2017-07-10 07:58:00    2017-07-10 07:58:00
104047    33336    564    2017-07-10 07:50:00    2017-07-10 07:50:00
104048    33336    472    2017-07-10 19:49:00    2017-07-10 19:49:00
104049    33336    574    2017-07-10 21:07:00    2017-07-10 21:07:00
104050    33337    691    2017-07-10 22:04:00    2017-07-10 22:04:00
104051    33337    727    2017-07-10 16:17:00    2017-07-10 16:17:00
104052    33337    752    2017-07-10 10:14:00    2017-07-10 10:14:00
104053    33337    667    2017-07-10 23:31:00    2017-07-10 23:31:00
104054    33337    812    2017-07-10 04:13:00    2017-07-10 04:13:00
104055    33338    545    2017-07-10 09:28:00    2017-07-10 09:28:00
104056    33338    718    2017-07-10 05:29:00    2017-07-10 05:29:00
104057    33338    596    2017-07-10 12:18:00    2017-07-10 12:18:00
104058    33338    831    2017-07-10 04:21:00    2017-07-10 04:21:00
104059    33338    611    2017-07-10 04:58:00    2017-07-10 04:58:00
104060    33339    953    2017-07-10 03:35:00    2017-07-10 03:35:00
104061    33339    760    2017-07-10 18:48:00    2017-07-10 18:48:00
104062    33339    844    2017-07-10 22:05:00    2017-07-10 22:05:00
104063    33339    653    2017-07-10 15:15:00    2017-07-10 15:15:00
104064    33339    558    2017-07-10 14:26:00    2017-07-10 14:26:00
104065    33340    573    2017-07-10 10:30:00    2017-07-10 10:30:00
104066    33340    472    2017-07-10 18:25:00    2017-07-10 18:25:00
104067    33340    782    2017-07-10 03:16:00    2017-07-10 03:16:00
104068    33340    877    2017-07-10 01:47:00    2017-07-10 01:47:00
104069    33340    593    2017-07-10 12:29:00    2017-07-10 12:29:00
104070    33341    488    2017-07-10 11:35:00    2017-07-10 11:35:00
104071    33341    688    2017-07-10 19:35:00    2017-07-10 19:35:00
104072    33341    850    2017-07-10 04:07:00    2017-07-10 04:07:00
104073    33341    476    2017-07-10 23:01:00    2017-07-10 23:01:00
104074    33341    771    2017-07-10 21:48:00    2017-07-10 21:48:00
104075    33342    642    2017-07-10 19:00:00    2017-07-10 19:00:00
104076    33342    830    2017-07-10 08:52:00    2017-07-10 08:52:00
104077    33342    948    2017-07-10 17:42:00    2017-07-10 17:42:00
104078    33342    675    2017-07-10 03:58:00    2017-07-10 03:58:00
104079    33342    897    2017-07-10 11:49:00    2017-07-10 11:49:00
104080    33343    784    2017-07-10 09:25:00    2017-07-10 09:25:00
104081    33343    595    2017-07-10 11:52:00    2017-07-10 11:52:00
104082    33343    947    2017-07-10 03:34:00    2017-07-10 03:34:00
104083    33343    595    2017-07-10 22:06:00    2017-07-10 22:06:00
104084    33343    736    2017-07-10 10:21:00    2017-07-10 10:21:00
104085    33344    936    2017-07-10 14:19:00    2017-07-10 14:19:00
104086    33344    697    2017-07-10 15:17:00    2017-07-10 15:17:00
104087    33344    742    2017-07-10 09:16:00    2017-07-10 09:16:00
104088    33344    678    2017-07-10 20:05:00    2017-07-10 20:05:00
104089    33344    792    2017-07-10 14:27:00    2017-07-10 14:27:00
104090    33345    797    2017-07-11 05:01:00    2017-07-11 05:01:00
104091    33345    867    2017-07-11 06:53:00    2017-07-11 06:53:00
104092    33345    822    2017-07-11 02:03:00    2017-07-11 02:03:00
104093    33345    760    2017-07-11 20:40:00    2017-07-11 20:40:00
104094    33345    833    2017-07-11 22:28:00    2017-07-11 22:28:00
104095    33346    542    2017-07-11 14:52:00    2017-07-11 14:52:00
104096    33346    795    2017-07-11 08:08:00    2017-07-11 08:08:00
104097    33346    660    2017-07-11 16:07:00    2017-07-11 16:07:00
104098    33346    761    2017-07-11 10:13:00    2017-07-11 10:13:00
104099    33346    910    2017-07-11 21:30:00    2017-07-11 21:30:00
104100    33347    785    2017-07-11 04:05:00    2017-07-11 04:05:00
104101    33347    843    2017-07-11 06:19:00    2017-07-11 06:19:00
104102    33347    826    2017-07-11 16:49:00    2017-07-11 16:49:00
104103    33347    884    2017-07-11 03:50:00    2017-07-11 03:50:00
104104    33347    690    2017-07-11 15:10:00    2017-07-11 15:10:00
104105    33348    663    2017-07-11 15:41:00    2017-07-11 15:41:00
104106    33348    774    2017-07-11 13:52:00    2017-07-11 13:52:00
104107    33348    907    2017-07-11 14:38:00    2017-07-11 14:38:00
104108    33348    656    2017-07-11 11:08:00    2017-07-11 11:08:00
104109    33348    928    2017-07-11 05:31:00    2017-07-11 05:31:00
104110    33349    852    2017-07-11 19:23:00    2017-07-11 19:23:00
104111    33349    542    2017-07-11 23:34:00    2017-07-11 23:34:00
104112    33349    828    2017-07-11 09:47:00    2017-07-11 09:47:00
104113    33349    605    2017-07-11 20:40:00    2017-07-11 20:40:00
104114    33349    660    2017-07-11 23:21:00    2017-07-11 23:21:00
104115    33350    811    2017-07-11 11:21:00    2017-07-11 11:21:00
104116    33350    948    2017-07-11 08:30:00    2017-07-11 08:30:00
104117    33350    851    2017-07-11 09:12:00    2017-07-11 09:12:00
104118    33350    707    2017-07-11 03:30:00    2017-07-11 03:30:00
104119    33350    766    2017-07-11 01:40:00    2017-07-11 01:40:00
104120    33351    533    2017-07-11 10:14:00    2017-07-11 10:14:00
104121    33351    620    2017-07-11 23:07:00    2017-07-11 23:07:00
104122    33351    878    2017-07-11 07:57:00    2017-07-11 07:57:00
104123    33351    640    2017-07-11 10:23:00    2017-07-11 10:23:00
104124    33351    858    2017-07-11 10:36:00    2017-07-11 10:36:00
104125    33352    686    2017-07-11 16:47:00    2017-07-11 16:47:00
104126    33352    848    2017-07-11 22:30:00    2017-07-11 22:30:00
104127    33352    636    2017-07-11 07:10:00    2017-07-11 07:10:00
104128    33352    855    2017-07-11 22:44:00    2017-07-11 22:44:00
104129    33352    605    2017-07-11 04:30:00    2017-07-11 04:30:00
104130    33353    522    2017-07-11 12:31:00    2017-07-11 12:31:00
104131    33353    821    2017-07-11 14:27:00    2017-07-11 14:27:00
104132    33353    481    2017-07-11 13:42:00    2017-07-11 13:42:00
104133    33353    624    2017-07-11 09:52:00    2017-07-11 09:52:00
104134    33353    581    2017-07-11 08:33:00    2017-07-11 08:33:00
104135    33354    903    2017-07-11 10:21:00    2017-07-11 10:21:00
104136    33354    468    2017-07-11 01:37:00    2017-07-11 01:37:00
104137    33354    900    2017-07-11 03:07:00    2017-07-11 03:07:00
104138    33354    734    2017-07-11 06:11:00    2017-07-11 06:11:00
104139    33354    776    2017-07-11 16:17:00    2017-07-11 16:17:00
104140    33355    573    2017-07-11 02:54:00    2017-07-11 02:54:00
104141    33355    517    2017-07-11 19:29:00    2017-07-11 19:29:00
104142    33355    856    2017-07-11 05:00:00    2017-07-11 05:00:00
104143    33355    789    2017-07-11 11:45:00    2017-07-11 11:45:00
104144    33355    752    2017-07-11 15:51:00    2017-07-11 15:51:00
104145    33356    566    2017-07-11 03:01:00    2017-07-11 03:01:00
104146    33356    547    2017-07-11 10:34:00    2017-07-11 10:34:00
104147    33356    774    2017-07-11 19:15:00    2017-07-11 19:15:00
104148    33356    519    2017-07-11 08:19:00    2017-07-11 08:19:00
104149    33356    831    2017-07-11 09:26:00    2017-07-11 09:26:00
104150    33357    779    2017-07-11 15:59:00    2017-07-11 15:59:00
104151    33357    903    2017-07-11 11:34:00    2017-07-11 11:34:00
104152    33357    548    2017-07-11 09:34:00    2017-07-11 09:34:00
104153    33357    503    2017-07-11 02:45:00    2017-07-11 02:45:00
104154    33357    952    2017-07-11 04:21:00    2017-07-11 04:21:00
104155    33358    746    2017-07-11 07:59:00    2017-07-11 07:59:00
104156    33358    906    2017-07-11 13:20:00    2017-07-11 13:20:00
104157    33358    590    2017-07-11 16:00:00    2017-07-11 16:00:00
104158    33358    663    2017-07-11 23:41:00    2017-07-11 23:41:00
104159    33358    602    2017-07-11 02:54:00    2017-07-11 02:54:00
104160    33359    879    2017-07-11 14:51:00    2017-07-11 14:51:00
104161    33359    822    2017-07-11 06:21:00    2017-07-11 06:21:00
104162    33359    709    2017-07-11 08:49:00    2017-07-11 08:49:00
104163    33359    804    2017-07-11 21:59:00    2017-07-11 21:59:00
104164    33359    580    2017-07-11 03:25:00    2017-07-11 03:25:00
104165    33360    523    2017-07-11 18:53:00    2017-07-11 18:53:00
104166    33360    466    2017-07-11 22:13:00    2017-07-11 22:13:00
104167    33360    878    2017-07-11 06:22:00    2017-07-11 06:22:00
104168    33360    832    2017-07-11 04:54:00    2017-07-11 04:54:00
104169    33360    768    2017-07-11 16:15:00    2017-07-11 16:15:00
104170    33361    724    2017-07-11 21:27:00    2017-07-11 21:27:00
104171    33361    912    2017-07-11 11:15:00    2017-07-11 11:15:00
104172    33361    826    2017-07-11 07:03:00    2017-07-11 07:03:00
104173    33361    594    2017-07-11 11:09:00    2017-07-11 11:09:00
104174    33361    848    2017-07-11 23:05:00    2017-07-11 23:05:00
104175    33362    638    2017-07-11 01:34:00    2017-07-11 01:34:00
104176    33362    666    2017-07-11 14:50:00    2017-07-11 14:50:00
104177    33362    771    2017-07-11 03:14:00    2017-07-11 03:14:00
104178    33362    577    2017-07-11 23:35:00    2017-07-11 23:35:00
104179    33362    562    2017-07-11 10:03:00    2017-07-11 10:03:00
104180    33363    652    2017-07-11 13:32:00    2017-07-11 13:32:00
104181    33363    818    2017-07-11 23:31:00    2017-07-11 23:31:00
104182    33363    664    2017-07-11 16:29:00    2017-07-11 16:29:00
104183    33363    496    2017-07-11 07:48:00    2017-07-11 07:48:00
104184    33363    695    2017-07-11 16:30:00    2017-07-11 16:30:00
104185    33364    746    2017-07-11 17:45:00    2017-07-11 17:45:00
104186    33364    651    2017-07-11 01:57:00    2017-07-11 01:57:00
104187    33364    477    2017-07-11 08:50:00    2017-07-11 08:50:00
104188    33364    957    2017-07-11 23:09:00    2017-07-11 23:09:00
104189    33364    691    2017-07-11 04:28:00    2017-07-11 04:28:00
104190    33365    908    2017-07-11 20:23:00    2017-07-11 20:23:00
104191    33365    579    2017-07-11 12:59:00    2017-07-11 12:59:00
104192    33365    701    2017-07-11 19:59:00    2017-07-11 19:59:00
104193    33365    602    2017-07-11 22:58:00    2017-07-11 22:58:00
104194    33365    483    2017-07-11 02:02:00    2017-07-11 02:02:00
104195    33366    463    2017-07-11 09:10:00    2017-07-11 09:10:00
104196    33366    478    2017-07-11 02:45:00    2017-07-11 02:45:00
104197    33366    717    2017-07-11 03:45:00    2017-07-11 03:45:00
104198    33366    702    2017-07-11 14:31:00    2017-07-11 14:31:00
104199    33366    725    2017-07-11 18:48:00    2017-07-11 18:48:00
104200    33367    485    2017-07-11 20:34:00    2017-07-11 20:34:00
104201    33367    499    2017-07-11 17:58:00    2017-07-11 17:58:00
104202    33367    499    2017-07-11 06:59:00    2017-07-11 06:59:00
104203    33367    731    2017-07-11 01:15:00    2017-07-11 01:15:00
104204    33367    809    2017-07-11 18:04:00    2017-07-11 18:04:00
104205    33368    468    2017-07-11 14:39:00    2017-07-11 14:39:00
104206    33368    531    2017-07-11 18:13:00    2017-07-11 18:13:00
104207    33368    615    2017-07-11 21:03:00    2017-07-11 21:03:00
104208    33368    709    2017-07-11 12:05:00    2017-07-11 12:05:00
104209    33368    871    2017-07-11 23:59:00    2017-07-11 23:59:00
104210    33369    955    2017-07-11 12:34:00    2017-07-11 12:34:00
104211    33369    791    2017-07-11 02:31:00    2017-07-11 02:31:00
104212    33369    530    2017-07-11 21:23:00    2017-07-11 21:23:00
104213    33369    910    2017-07-11 02:10:00    2017-07-11 02:10:00
104214    33369    931    2017-07-11 06:27:00    2017-07-11 06:27:00
104215    33370    891    2017-07-11 07:28:00    2017-07-11 07:28:00
104216    33370    648    2017-07-11 03:27:00    2017-07-11 03:27:00
104217    33370    932    2017-07-11 22:39:00    2017-07-11 22:39:00
104218    33370    682    2017-07-11 17:02:00    2017-07-11 17:02:00
104219    33370    715    2017-07-11 03:00:00    2017-07-11 03:00:00
104220    33371    571    2017-07-11 23:54:00    2017-07-11 23:54:00
104221    33371    664    2017-07-11 05:01:00    2017-07-11 05:01:00
104222    33371    831    2017-07-11 06:59:00    2017-07-11 06:59:00
104223    33371    468    2017-07-11 16:11:00    2017-07-11 16:11:00
104224    33371    727    2017-07-11 03:12:00    2017-07-11 03:12:00
104225    33372    847    2017-07-11 13:52:00    2017-07-11 13:52:00
104226    33372    753    2017-07-11 08:09:00    2017-07-11 08:09:00
104227    33372    960    2017-07-11 16:05:00    2017-07-11 16:05:00
104228    33372    653    2017-07-11 06:37:00    2017-07-11 06:37:00
104229    33372    840    2017-07-11 12:35:00    2017-07-11 12:35:00
104230    33373    463    2017-07-11 09:13:00    2017-07-11 09:13:00
104231    33373    551    2017-07-11 21:29:00    2017-07-11 21:29:00
104232    33373    921    2017-07-11 16:13:00    2017-07-11 16:13:00
104233    33373    856    2017-07-11 11:35:00    2017-07-11 11:35:00
104234    33373    945    2017-07-11 04:30:00    2017-07-11 04:30:00
104235    33374    515    2017-07-11 22:19:00    2017-07-11 22:19:00
104236    33374    891    2017-07-11 03:13:00    2017-07-11 03:13:00
104237    33374    554    2017-07-11 03:37:00    2017-07-11 03:37:00
104238    33374    956    2017-07-11 08:45:00    2017-07-11 08:45:00
104239    33374    650    2017-07-11 06:34:00    2017-07-11 06:34:00
104240    33375    515    2017-07-11 20:49:00    2017-07-11 20:49:00
104241    33375    831    2017-07-11 15:26:00    2017-07-11 15:26:00
104242    33375    648    2017-07-11 01:44:00    2017-07-11 01:44:00
104243    33375    850    2017-07-11 10:28:00    2017-07-11 10:28:00
104244    33375    538    2017-07-11 17:46:00    2017-07-11 17:46:00
104245    33376    779    2017-07-11 06:44:00    2017-07-11 06:44:00
104246    33376    466    2017-07-11 14:15:00    2017-07-11 14:15:00
104247    33376    637    2017-07-11 13:27:00    2017-07-11 13:27:00
104248    33376    486    2017-07-11 07:48:00    2017-07-11 07:48:00
104249    33376    926    2017-07-11 17:05:00    2017-07-11 17:05:00
104250    33377    645    2017-07-11 20:17:00    2017-07-11 20:17:00
104251    33377    786    2017-07-11 10:18:00    2017-07-11 10:18:00
104252    33377    486    2017-07-11 01:23:00    2017-07-11 01:23:00
104253    33377    862    2017-07-11 23:26:00    2017-07-11 23:26:00
104254    33377    506    2017-07-11 09:10:00    2017-07-11 09:10:00
104255    33378    659    2017-07-11 22:51:00    2017-07-11 22:51:00
104256    33378    928    2017-07-11 21:19:00    2017-07-11 21:19:00
104257    33378    615    2017-07-11 12:07:00    2017-07-11 12:07:00
104258    33378    584    2017-07-11 01:32:00    2017-07-11 01:32:00
104259    33378    822    2017-07-11 17:41:00    2017-07-11 17:41:00
104260    33379    923    2017-07-11 16:15:00    2017-07-11 16:15:00
104261    33379    791    2017-07-11 19:38:00    2017-07-11 19:38:00
104262    33379    642    2017-07-11 14:24:00    2017-07-11 14:24:00
104263    33379    467    2017-07-11 01:47:00    2017-07-11 01:47:00
104264    33379    780    2017-07-11 05:02:00    2017-07-11 05:02:00
104265    33380    506    2017-07-11 20:29:00    2017-07-11 20:29:00
104266    33380    797    2017-07-11 17:37:00    2017-07-11 17:37:00
104267    33380    472    2017-07-11 04:30:00    2017-07-11 04:30:00
104268    33380    952    2017-07-11 07:30:00    2017-07-11 07:30:00
104269    33380    865    2017-07-11 12:30:00    2017-07-11 12:30:00
104270    33381    768    2017-07-11 03:18:00    2017-07-11 03:18:00
104271    33381    797    2017-07-11 15:06:00    2017-07-11 15:06:00
104272    33381    538    2017-07-11 13:20:00    2017-07-11 13:20:00
104273    33381    560    2017-07-11 17:42:00    2017-07-11 17:42:00
104274    33381    579    2017-07-11 09:08:00    2017-07-11 09:08:00
104275    33382    917    2017-07-11 11:29:00    2017-07-11 11:29:00
104276    33382    671    2017-07-11 02:55:00    2017-07-11 02:55:00
104277    33382    855    2017-07-11 04:06:00    2017-07-11 04:06:00
104278    33382    559    2017-07-11 01:05:00    2017-07-11 01:05:00
104279    33382    932    2017-07-11 09:25:00    2017-07-11 09:25:00
104280    33383    690    2017-07-11 10:04:00    2017-07-11 10:04:00
104281    33383    664    2017-07-11 03:48:00    2017-07-11 03:48:00
104282    33383    854    2017-07-11 13:03:00    2017-07-11 13:03:00
104283    33383    680    2017-07-11 23:45:00    2017-07-11 23:45:00
104284    33383    890    2017-07-11 06:52:00    2017-07-11 06:52:00
104285    33384    775    2017-07-11 07:46:00    2017-07-11 07:46:00
104286    33384    840    2017-07-11 10:34:00    2017-07-11 10:34:00
104287    33384    578    2017-07-11 19:00:00    2017-07-11 19:00:00
104288    33384    516    2017-07-11 10:39:00    2017-07-11 10:39:00
104289    33384    742    2017-07-11 06:32:00    2017-07-11 06:32:00
104290    33385    771    2017-07-12 09:43:00    2017-07-12 09:43:00
104291    33385    814    2017-07-12 01:33:00    2017-07-12 01:33:00
104292    33385    543    2017-07-12 11:11:00    2017-07-12 11:11:00
104293    33385    668    2017-07-12 22:44:00    2017-07-12 22:44:00
104294    33385    609    2017-07-12 09:10:00    2017-07-12 09:10:00
104295    33386    829    2017-07-12 13:24:00    2017-07-12 13:24:00
104296    33386    497    2017-07-12 05:25:00    2017-07-12 05:25:00
104297    33386    494    2017-07-12 08:55:00    2017-07-12 08:55:00
104298    33386    745    2017-07-12 02:27:00    2017-07-12 02:27:00
104299    33386    594    2017-07-12 14:46:00    2017-07-12 14:46:00
104300    33387    937    2017-07-12 14:15:00    2017-07-12 14:15:00
104301    33387    527    2017-07-12 01:17:00    2017-07-12 01:17:00
104302    33387    556    2017-07-12 06:40:00    2017-07-12 06:40:00
104303    33387    528    2017-07-12 13:31:00    2017-07-12 13:31:00
104304    33387    714    2017-07-12 02:38:00    2017-07-12 02:38:00
104305    33388    952    2017-07-12 13:36:00    2017-07-12 13:36:00
104306    33388    656    2017-07-12 13:24:00    2017-07-12 13:24:00
104307    33388    585    2017-07-12 13:13:00    2017-07-12 13:13:00
104308    33388    651    2017-07-12 01:51:00    2017-07-12 01:51:00
104309    33388    703    2017-07-12 13:41:00    2017-07-12 13:41:00
104310    33389    792    2017-07-12 07:36:00    2017-07-12 07:36:00
104311    33389    673    2017-07-12 04:19:00    2017-07-12 04:19:00
104312    33389    796    2017-07-12 12:51:00    2017-07-12 12:51:00
104313    33389    820    2017-07-12 16:46:00    2017-07-12 16:46:00
104314    33389    676    2017-07-12 21:05:00    2017-07-12 21:05:00
104315    33390    474    2017-07-12 06:53:00    2017-07-12 06:53:00
104316    33390    493    2017-07-12 02:47:00    2017-07-12 02:47:00
104317    33390    589    2017-07-12 19:14:00    2017-07-12 19:14:00
104318    33390    700    2017-07-12 14:28:00    2017-07-12 14:28:00
104319    33390    752    2017-07-12 13:48:00    2017-07-12 13:48:00
104320    33391    493    2017-07-12 14:02:00    2017-07-12 14:02:00
104321    33391    669    2017-07-12 14:16:00    2017-07-12 14:16:00
104322    33391    811    2017-07-12 17:26:00    2017-07-12 17:26:00
104323    33391    735    2017-07-12 12:07:00    2017-07-12 12:07:00
104324    33391    572    2017-07-12 11:39:00    2017-07-12 11:39:00
104325    33392    876    2017-07-12 21:20:00    2017-07-12 21:20:00
104326    33392    468    2017-07-12 14:37:00    2017-07-12 14:37:00
104327    33392    493    2017-07-12 17:07:00    2017-07-12 17:07:00
104328    33392    702    2017-07-12 16:55:00    2017-07-12 16:55:00
104329    33392    628    2017-07-12 11:19:00    2017-07-12 11:19:00
104330    33393    805    2017-07-12 01:06:00    2017-07-12 01:06:00
104331    33393    825    2017-07-12 09:57:00    2017-07-12 09:57:00
104332    33393    673    2017-07-12 07:12:00    2017-07-12 07:12:00
104333    33393    592    2017-07-12 13:38:00    2017-07-12 13:38:00
104334    33393    465    2017-07-12 04:04:00    2017-07-12 04:04:00
104335    33394    484    2017-07-12 01:31:00    2017-07-12 01:31:00
104336    33394    952    2017-07-12 20:14:00    2017-07-12 20:14:00
104337    33394    889    2017-07-12 21:42:00    2017-07-12 21:42:00
104338    33394    576    2017-07-12 23:45:00    2017-07-12 23:45:00
104339    33394    508    2017-07-12 07:54:00    2017-07-12 07:54:00
104340    33395    887    2017-07-12 15:53:00    2017-07-12 15:53:00
104341    33395    798    2017-07-12 23:05:00    2017-07-12 23:05:00
104342    33395    746    2017-07-12 01:09:00    2017-07-12 01:09:00
104343    33395    625    2017-07-12 08:32:00    2017-07-12 08:32:00
104344    33395    754    2017-07-12 01:48:00    2017-07-12 01:48:00
104345    33396    945    2017-07-12 02:10:00    2017-07-12 02:10:00
104346    33396    740    2017-07-12 16:20:00    2017-07-12 16:20:00
104347    33396    484    2017-07-12 11:26:00    2017-07-12 11:26:00
104348    33396    861    2017-07-12 13:49:00    2017-07-12 13:49:00
104349    33396    614    2017-07-12 12:48:00    2017-07-12 12:48:00
104350    33397    748    2017-07-12 17:59:00    2017-07-12 17:59:00
104351    33397    737    2017-07-12 18:54:00    2017-07-12 18:54:00
104352    33397    780    2017-07-12 08:26:00    2017-07-12 08:26:00
104353    33397    627    2017-07-12 08:45:00    2017-07-12 08:45:00
104354    33397    631    2017-07-12 06:16:00    2017-07-12 06:16:00
104355    33398    643    2017-07-12 15:01:00    2017-07-12 15:01:00
104356    33398    696    2017-07-12 07:22:00    2017-07-12 07:22:00
104357    33398    646    2017-07-12 23:28:00    2017-07-12 23:28:00
104358    33398    471    2017-07-12 21:12:00    2017-07-12 21:12:00
104359    33398    499    2017-07-12 05:49:00    2017-07-12 05:49:00
104360    33399    690    2017-07-12 05:38:00    2017-07-12 05:38:00
104361    33399    884    2017-07-12 02:02:00    2017-07-12 02:02:00
104362    33399    508    2017-07-12 02:19:00    2017-07-12 02:19:00
104363    33399    632    2017-07-12 17:13:00    2017-07-12 17:13:00
104364    33399    937    2017-07-12 02:05:00    2017-07-12 02:05:00
104365    33400    891    2017-07-12 05:41:00    2017-07-12 05:41:00
104366    33400    678    2017-07-12 06:45:00    2017-07-12 06:45:00
104367    33400    640    2017-07-12 05:40:00    2017-07-12 05:40:00
104368    33400    707    2017-07-12 21:11:00    2017-07-12 21:11:00
104369    33400    574    2017-07-12 11:24:00    2017-07-12 11:24:00
104370    33401    638    2017-07-12 09:01:00    2017-07-12 09:01:00
104371    33401    812    2017-07-12 16:24:00    2017-07-12 16:24:00
104372    33401    940    2017-07-12 06:34:00    2017-07-12 06:34:00
104373    33401    627    2017-07-12 08:51:00    2017-07-12 08:51:00
104374    33401    947    2017-07-12 22:00:00    2017-07-12 22:00:00
104375    33402    507    2017-07-12 16:55:00    2017-07-12 16:55:00
104376    33402    848    2017-07-12 20:51:00    2017-07-12 20:51:00
104377    33402    818    2017-07-12 10:00:00    2017-07-12 10:00:00
104378    33402    533    2017-07-12 18:50:00    2017-07-12 18:50:00
104379    33402    483    2017-07-12 21:36:00    2017-07-12 21:36:00
104380    33403    897    2017-07-12 08:27:00    2017-07-12 08:27:00
104381    33403    907    2017-07-12 13:14:00    2017-07-12 13:14:00
104382    33403    559    2017-07-12 12:54:00    2017-07-12 12:54:00
104383    33403    926    2017-07-12 11:15:00    2017-07-12 11:15:00
104384    33403    851    2017-07-12 13:17:00    2017-07-12 13:17:00
104385    33404    772    2017-07-12 21:12:00    2017-07-12 21:12:00
104386    33404    572    2017-07-12 04:24:00    2017-07-12 04:24:00
104387    33404    630    2017-07-12 08:50:00    2017-07-12 08:50:00
104388    33404    585    2017-07-12 23:07:00    2017-07-12 23:07:00
104389    33404    484    2017-07-12 04:46:00    2017-07-12 04:46:00
104390    33405    711    2017-07-12 12:55:00    2017-07-12 12:55:00
104391    33405    562    2017-07-12 14:37:00    2017-07-12 14:37:00
104392    33405    700    2017-07-12 01:46:00    2017-07-12 01:46:00
104393    33405    688    2017-07-12 08:15:00    2017-07-12 08:15:00
104394    33405    616    2017-07-12 14:25:00    2017-07-12 14:25:00
104395    33406    739    2017-07-12 07:02:00    2017-07-12 07:02:00
104396    33406    654    2017-07-12 02:17:00    2017-07-12 02:17:00
104397    33406    901    2017-07-12 22:29:00    2017-07-12 22:29:00
104398    33406    835    2017-07-12 21:54:00    2017-07-12 21:54:00
104399    33406    624    2017-07-12 11:52:00    2017-07-12 11:52:00
104400    33407    792    2017-07-12 03:30:00    2017-07-12 03:30:00
104401    33407    884    2017-07-12 19:52:00    2017-07-12 19:52:00
104402    33407    934    2017-07-12 01:37:00    2017-07-12 01:37:00
104403    33407    523    2017-07-12 13:28:00    2017-07-12 13:28:00
104404    33407    828    2017-07-12 01:13:00    2017-07-12 01:13:00
104405    33408    768    2017-07-12 23:54:00    2017-07-12 23:54:00
104406    33408    947    2017-07-12 11:38:00    2017-07-12 11:38:00
104407    33408    775    2017-07-12 08:31:00    2017-07-12 08:31:00
104408    33408    885    2017-07-12 18:17:00    2017-07-12 18:17:00
104409    33408    931    2017-07-12 22:42:00    2017-07-12 22:42:00
104410    33409    491    2017-07-12 17:03:00    2017-07-12 17:03:00
104411    33409    698    2017-07-12 18:53:00    2017-07-12 18:53:00
104412    33409    725    2017-07-12 06:55:00    2017-07-12 06:55:00
104413    33409    759    2017-07-12 20:05:00    2017-07-12 20:05:00
104414    33409    928    2017-07-12 07:20:00    2017-07-12 07:20:00
104415    33410    810    2017-07-12 15:27:00    2017-07-12 15:27:00
104416    33410    795    2017-07-12 14:41:00    2017-07-12 14:41:00
104417    33410    871    2017-07-12 17:12:00    2017-07-12 17:12:00
104418    33410    834    2017-07-12 07:11:00    2017-07-12 07:11:00
104419    33410    760    2017-07-12 02:18:00    2017-07-12 02:18:00
104420    33411    472    2017-07-12 21:03:00    2017-07-12 21:03:00
104421    33411    487    2017-07-12 23:19:00    2017-07-12 23:19:00
104422    33411    757    2017-07-12 13:08:00    2017-07-12 13:08:00
104423    33411    608    2017-07-12 08:32:00    2017-07-12 08:32:00
104424    33411    922    2017-07-12 02:24:00    2017-07-12 02:24:00
104425    33412    637    2017-07-12 08:12:00    2017-07-12 08:12:00
104426    33412    574    2017-07-12 13:35:00    2017-07-12 13:35:00
104427    33412    615    2017-07-12 04:02:00    2017-07-12 04:02:00
104428    33412    856    2017-07-12 01:44:00    2017-07-12 01:44:00
104429    33412    568    2017-07-12 09:59:00    2017-07-12 09:59:00
104430    33413    634    2017-07-12 02:56:00    2017-07-12 02:56:00
104431    33413    601    2017-07-12 21:45:00    2017-07-12 21:45:00
104432    33413    826    2017-07-12 21:32:00    2017-07-12 21:32:00
104433    33413    514    2017-07-12 07:38:00    2017-07-12 07:38:00
104434    33413    580    2017-07-12 02:44:00    2017-07-12 02:44:00
104435    33414    478    2017-07-12 15:08:00    2017-07-12 15:08:00
104436    33414    638    2017-07-12 12:32:00    2017-07-12 12:32:00
104437    33414    740    2017-07-12 19:16:00    2017-07-12 19:16:00
104438    33414    881    2017-07-12 03:40:00    2017-07-12 03:40:00
104439    33414    809    2017-07-12 16:08:00    2017-07-12 16:08:00
104440    33415    489    2017-07-12 16:24:00    2017-07-12 16:24:00
104441    33415    538    2017-07-12 15:12:00    2017-07-12 15:12:00
104442    33415    820    2017-07-12 10:07:00    2017-07-12 10:07:00
104443    33415    714    2017-07-12 11:46:00    2017-07-12 11:46:00
104444    33415    496    2017-07-12 22:27:00    2017-07-12 22:27:00
104445    33416    513    2017-07-12 02:42:00    2017-07-12 02:42:00
104446    33416    669    2017-07-12 09:54:00    2017-07-12 09:54:00
104447    33416    634    2017-07-12 17:41:00    2017-07-12 17:41:00
104448    33416    504    2017-07-12 10:04:00    2017-07-12 10:04:00
104449    33416    642    2017-07-12 05:28:00    2017-07-12 05:28:00
104450    33417    740    2017-07-12 11:48:00    2017-07-12 11:48:00
104451    33417    559    2017-07-12 15:13:00    2017-07-12 15:13:00
104452    33417    685    2017-07-12 09:24:00    2017-07-12 09:24:00
104453    33417    914    2017-07-12 13:44:00    2017-07-12 13:44:00
104454    33417    945    2017-07-12 23:47:00    2017-07-12 23:47:00
104455    33418    648    2017-07-13 13:43:00    2017-07-13 13:43:00
104456    33418    780    2017-07-13 16:19:00    2017-07-13 16:19:00
104457    33418    675    2017-07-13 16:01:00    2017-07-13 16:01:00
104458    33418    819    2017-07-13 19:19:00    2017-07-13 19:19:00
104459    33418    895    2017-07-13 02:21:00    2017-07-13 02:21:00
104460    33419    545    2017-07-13 18:52:00    2017-07-13 18:52:00
104461    33419    647    2017-07-13 18:11:00    2017-07-13 18:11:00
104462    33419    896    2017-07-13 19:03:00    2017-07-13 19:03:00
104463    33419    788    2017-07-13 09:56:00    2017-07-13 09:56:00
104464    33419    926    2017-07-13 06:03:00    2017-07-13 06:03:00
104465    33420    523    2017-07-13 11:43:00    2017-07-13 11:43:00
104466    33420    833    2017-07-13 16:34:00    2017-07-13 16:34:00
104467    33420    584    2017-07-13 17:22:00    2017-07-13 17:22:00
104468    33420    817    2017-07-13 02:25:00    2017-07-13 02:25:00
104469    33420    499    2017-07-13 16:45:00    2017-07-13 16:45:00
104470    33421    541    2017-07-13 04:03:00    2017-07-13 04:03:00
104471    33421    859    2017-07-13 03:13:00    2017-07-13 03:13:00
104472    33421    771    2017-07-13 20:15:00    2017-07-13 20:15:00
104473    33421    478    2017-07-13 19:45:00    2017-07-13 19:45:00
104474    33421    708    2017-07-13 16:53:00    2017-07-13 16:53:00
104475    33422    791    2017-07-13 23:06:00    2017-07-13 23:06:00
104476    33422    946    2017-07-13 01:29:00    2017-07-13 01:29:00
104477    33422    775    2017-07-13 13:10:00    2017-07-13 13:10:00
104478    33422    637    2017-07-13 07:44:00    2017-07-13 07:44:00
104479    33422    705    2017-07-13 10:24:00    2017-07-13 10:24:00
104480    33423    702    2017-07-13 13:09:00    2017-07-13 13:09:00
104481    33423    782    2017-07-13 09:08:00    2017-07-13 09:08:00
104482    33423    844    2017-07-13 11:51:00    2017-07-13 11:51:00
104483    33423    475    2017-07-13 12:01:00    2017-07-13 12:01:00
104484    33423    587    2017-07-13 17:33:00    2017-07-13 17:33:00
104485    33424    681    2017-07-13 18:27:00    2017-07-13 18:27:00
104486    33424    839    2017-07-13 18:21:00    2017-07-13 18:21:00
104487    33424    848    2017-07-13 23:58:00    2017-07-13 23:58:00
104488    33424    643    2017-07-13 11:04:00    2017-07-13 11:04:00
104489    33424    479    2017-07-13 06:22:00    2017-07-13 06:22:00
104490    33425    548    2017-07-13 16:22:00    2017-07-13 16:22:00
104491    33425    646    2017-07-13 09:20:00    2017-07-13 09:20:00
104492    33425    518    2017-07-13 19:25:00    2017-07-13 19:25:00
104493    33425    600    2017-07-13 01:48:00    2017-07-13 01:48:00
104494    33425    508    2017-07-13 17:52:00    2017-07-13 17:52:00
104495    33426    661    2017-07-13 21:09:00    2017-07-13 21:09:00
104496    33426    804    2017-07-13 06:28:00    2017-07-13 06:28:00
104497    33426    796    2017-07-13 08:11:00    2017-07-13 08:11:00
104498    33426    845    2017-07-13 22:10:00    2017-07-13 22:10:00
104499    33426    922    2017-07-13 16:59:00    2017-07-13 16:59:00
104500    33427    767    2017-07-13 01:27:00    2017-07-13 01:27:00
104501    33427    598    2017-07-13 14:45:00    2017-07-13 14:45:00
104502    33427    734    2017-07-14 00:00:00    2017-07-14 00:00:00
104503    33427    575    2017-07-13 08:31:00    2017-07-13 08:31:00
104504    33427    781    2017-07-13 05:27:00    2017-07-13 05:27:00
104505    33428    807    2017-07-13 08:54:00    2017-07-13 08:54:00
104506    33428    820    2017-07-13 11:27:00    2017-07-13 11:27:00
104507    33428    757    2017-07-13 06:52:00    2017-07-13 06:52:00
104508    33428    909    2017-07-13 19:18:00    2017-07-13 19:18:00
104509    33428    572    2017-07-13 10:56:00    2017-07-13 10:56:00
104510    33429    762    2017-07-13 08:28:00    2017-07-13 08:28:00
104511    33429    950    2017-07-13 23:57:00    2017-07-13 23:57:00
104512    33429    733    2017-07-13 03:39:00    2017-07-13 03:39:00
104513    33429    762    2017-07-13 23:12:00    2017-07-13 23:12:00
104514    33429    782    2017-07-13 17:26:00    2017-07-13 17:26:00
104515    33430    791    2017-07-13 15:13:00    2017-07-13 15:13:00
104516    33430    678    2017-07-13 06:09:00    2017-07-13 06:09:00
104517    33430    853    2017-07-13 04:43:00    2017-07-13 04:43:00
104518    33430    726    2017-07-13 21:34:00    2017-07-13 21:34:00
104519    33430    695    2017-07-13 21:08:00    2017-07-13 21:08:00
104520    33431    490    2017-07-13 13:39:00    2017-07-13 13:39:00
104521    33431    570    2017-07-13 03:50:00    2017-07-13 03:50:00
104522    33431    869    2017-07-13 05:43:00    2017-07-13 05:43:00
104523    33431    482    2017-07-13 20:04:00    2017-07-13 20:04:00
104524    33431    914    2017-07-13 19:33:00    2017-07-13 19:33:00
104525    33432    579    2017-07-13 20:35:00    2017-07-13 20:35:00
104526    33432    900    2017-07-13 06:34:00    2017-07-13 06:34:00
104527    33432    805    2017-07-13 01:06:00    2017-07-13 01:06:00
104528    33432    843    2017-07-13 18:56:00    2017-07-13 18:56:00
104529    33432    698    2017-07-13 18:34:00    2017-07-13 18:34:00
104530    33433    925    2017-07-13 13:26:00    2017-07-13 13:26:00
104531    33433    636    2017-07-13 13:21:00    2017-07-13 13:21:00
104532    33433    546    2017-07-13 19:47:00    2017-07-13 19:47:00
104533    33433    474    2017-07-13 15:38:00    2017-07-13 15:38:00
104534    33433    951    2017-07-13 14:39:00    2017-07-13 14:39:00
104535    33434    557    2017-07-13 19:36:00    2017-07-13 19:36:00
104536    33434    660    2017-07-13 07:06:00    2017-07-13 07:06:00
104537    33434    810    2017-07-13 18:40:00    2017-07-13 18:40:00
104538    33434    572    2017-07-13 14:18:00    2017-07-13 14:18:00
104539    33434    672    2017-07-13 18:08:00    2017-07-13 18:08:00
104540    33435    956    2017-07-13 07:38:00    2017-07-13 07:38:00
104541    33435    886    2017-07-13 13:44:00    2017-07-13 13:44:00
104542    33435    804    2017-07-13 05:48:00    2017-07-13 05:48:00
104543    33435    500    2017-07-13 07:38:00    2017-07-13 07:38:00
104544    33435    498    2017-07-13 15:54:00    2017-07-13 15:54:00
104545    33436    525    2017-07-13 09:00:00    2017-07-13 09:00:00
104546    33436    817    2017-07-13 16:48:00    2017-07-13 16:48:00
104547    33436    858    2017-07-13 01:14:00    2017-07-13 01:14:00
104548    33436    647    2017-07-13 09:51:00    2017-07-13 09:51:00
104549    33436    895    2017-07-13 23:10:00    2017-07-13 23:10:00
104550    33437    474    2017-07-13 13:00:00    2017-07-13 13:00:00
104551    33437    912    2017-07-13 03:08:00    2017-07-13 03:08:00
104552    33437    769    2017-07-13 04:48:00    2017-07-13 04:48:00
104553    33437    884    2017-07-13 12:22:00    2017-07-13 12:22:00
104554    33437    857    2017-07-13 11:57:00    2017-07-13 11:57:00
104555    33438    805    2017-07-13 21:06:00    2017-07-13 21:06:00
104556    33438    796    2017-07-13 11:53:00    2017-07-13 11:53:00
104557    33438    843    2017-07-13 10:41:00    2017-07-13 10:41:00
104558    33438    868    2017-07-13 10:49:00    2017-07-13 10:49:00
104559    33438    738    2017-07-13 17:30:00    2017-07-13 17:30:00
104560    33439    491    2017-07-13 06:59:00    2017-07-13 06:59:00
104561    33439    695    2017-07-13 22:35:00    2017-07-13 22:35:00
104562    33439    504    2017-07-13 14:20:00    2017-07-13 14:20:00
104563    33439    522    2017-07-13 04:36:00    2017-07-13 04:36:00
104564    33439    524    2017-07-13 14:26:00    2017-07-13 14:26:00
104565    33440    674    2017-07-13 22:22:00    2017-07-13 22:22:00
104566    33440    750    2017-07-13 17:49:00    2017-07-13 17:49:00
104567    33440    775    2017-07-13 19:19:00    2017-07-13 19:19:00
104568    33440    865    2017-07-13 21:04:00    2017-07-13 21:04:00
104569    33440    833    2017-07-13 12:04:00    2017-07-13 12:04:00
104570    33441    588    2017-07-13 12:46:00    2017-07-13 12:46:00
104571    33441    562    2017-07-13 16:11:00    2017-07-13 16:11:00
104572    33441    941    2017-07-13 21:38:00    2017-07-13 21:38:00
104573    33441    939    2017-07-13 19:16:00    2017-07-13 19:16:00
104574    33441    795    2017-07-13 18:39:00    2017-07-13 18:39:00
104575    33442    830    2017-07-13 07:30:00    2017-07-13 07:30:00
104576    33442    764    2017-07-13 21:31:00    2017-07-13 21:31:00
104577    33442    736    2017-07-13 02:18:00    2017-07-13 02:18:00
104578    33442    889    2017-07-13 01:07:00    2017-07-13 01:07:00
104579    33442    746    2017-07-13 02:29:00    2017-07-13 02:29:00
104580    33443    693    2017-07-13 23:29:00    2017-07-13 23:29:00
104581    33443    558    2017-07-13 20:58:00    2017-07-13 20:58:00
104582    33443    636    2017-07-13 19:39:00    2017-07-13 19:39:00
104583    33443    864    2017-07-13 15:21:00    2017-07-13 15:21:00
104584    33443    842    2017-07-13 01:34:00    2017-07-13 01:34:00
104585    33444    585    2017-07-13 10:58:00    2017-07-13 10:58:00
104586    33444    788    2017-07-13 23:50:00    2017-07-13 23:50:00
104587    33444    915    2017-07-13 15:16:00    2017-07-13 15:16:00
104588    33444    610    2017-07-13 17:27:00    2017-07-13 17:27:00
104589    33444    730    2017-07-13 16:18:00    2017-07-13 16:18:00
104590    33445    740    2017-07-13 03:41:00    2017-07-13 03:41:00
104591    33445    478    2017-07-13 14:39:00    2017-07-13 14:39:00
104592    33445    535    2017-07-13 08:14:00    2017-07-13 08:14:00
104593    33445    858    2017-07-13 08:22:00    2017-07-13 08:22:00
104594    33445    593    2017-07-13 15:51:00    2017-07-13 15:51:00
104595    33446    745    2017-07-13 21:09:00    2017-07-13 21:09:00
104596    33446    499    2017-07-13 22:05:00    2017-07-13 22:05:00
104597    33446    935    2017-07-13 20:43:00    2017-07-13 20:43:00
104598    33446    675    2017-07-13 09:45:00    2017-07-13 09:45:00
104599    33446    557    2017-07-13 12:23:00    2017-07-13 12:23:00
104600    33447    676    2017-07-13 15:45:00    2017-07-13 15:45:00
104601    33447    690    2017-07-13 01:09:00    2017-07-13 01:09:00
104602    33447    698    2017-07-13 20:04:00    2017-07-13 20:04:00
104603    33447    639    2017-07-13 20:45:00    2017-07-13 20:45:00
104604    33447    489    2017-07-13 21:16:00    2017-07-13 21:16:00
104605    33448    860    2017-07-13 06:52:00    2017-07-13 06:52:00
104606    33448    715    2017-07-13 18:55:00    2017-07-13 18:55:00
104607    33448    570    2017-07-13 04:04:00    2017-07-13 04:04:00
104608    33448    500    2017-07-13 04:18:00    2017-07-13 04:18:00
104609    33448    891    2017-07-13 19:29:00    2017-07-13 19:29:00
104610    33449    714    2017-07-13 05:14:00    2017-07-13 05:14:00
104611    33449    629    2017-07-13 03:00:00    2017-07-13 03:00:00
104612    33449    607    2017-07-13 18:06:00    2017-07-13 18:06:00
104613    33449    862    2017-07-13 11:44:00    2017-07-13 11:44:00
104614    33449    863    2017-07-13 17:49:00    2017-07-13 17:49:00
104615    33450    775    2017-07-13 18:26:00    2017-07-13 18:26:00
104616    33450    957    2017-07-13 17:08:00    2017-07-13 17:08:00
104617    33450    485    2017-07-13 20:06:00    2017-07-13 20:06:00
104618    33450    856    2017-07-13 13:30:00    2017-07-13 13:30:00
104619    33450    822    2017-07-13 03:29:00    2017-07-13 03:29:00
104620    33451    646    2017-07-13 04:36:00    2017-07-13 04:36:00
104621    33451    633    2017-07-13 22:57:00    2017-07-13 22:57:00
104622    33451    774    2017-07-13 02:38:00    2017-07-13 02:38:00
104623    33451    531    2017-07-13 07:13:00    2017-07-13 07:13:00
104624    33451    610    2017-07-13 09:00:00    2017-07-13 09:00:00
104625    33452    946    2017-07-13 10:04:00    2017-07-13 10:04:00
104626    33452    672    2017-07-13 07:34:00    2017-07-13 07:34:00
104627    33452    880    2017-07-13 03:10:00    2017-07-13 03:10:00
104628    33452    595    2017-07-13 05:10:00    2017-07-13 05:10:00
104629    33452    931    2017-07-13 19:37:00    2017-07-13 19:37:00
104630    33453    767    2017-07-13 22:05:00    2017-07-13 22:05:00
104631    33453    602    2017-07-13 15:16:00    2017-07-13 15:16:00
104632    33453    666    2017-07-13 02:04:00    2017-07-13 02:04:00
104633    33453    735    2017-07-13 06:10:00    2017-07-13 06:10:00
104634    33453    678    2017-07-13 06:52:00    2017-07-13 06:52:00
104635    33454    838    2017-07-13 20:35:00    2017-07-13 20:35:00
104636    33454    653    2017-07-13 05:59:00    2017-07-13 05:59:00
104637    33454    553    2017-07-13 10:12:00    2017-07-13 10:12:00
104638    33454    931    2017-07-13 18:44:00    2017-07-13 18:44:00
104639    33454    930    2017-07-13 11:22:00    2017-07-13 11:22:00
104640    33455    543    2017-07-13 01:05:00    2017-07-13 01:05:00
104641    33455    871    2017-07-13 07:56:00    2017-07-13 07:56:00
104642    33455    725    2017-07-13 11:13:00    2017-07-13 11:13:00
104643    33455    644    2017-07-13 11:58:00    2017-07-13 11:58:00
104644    33455    839    2017-07-13 05:56:00    2017-07-13 05:56:00
104645    33456    745    2017-07-13 16:55:00    2017-07-13 16:55:00
104646    33456    700    2017-07-13 01:30:00    2017-07-13 01:30:00
104647    33456    775    2017-07-13 19:44:00    2017-07-13 19:44:00
104648    33456    694    2017-07-13 05:19:00    2017-07-13 05:19:00
104649    33456    655    2017-07-13 21:40:00    2017-07-13 21:40:00
104650    33457    728    2017-07-13 15:48:00    2017-07-13 15:48:00
104651    33457    499    2017-07-13 04:24:00    2017-07-13 04:24:00
104652    33457    587    2017-07-13 22:25:00    2017-07-13 22:25:00
104653    33457    880    2017-07-13 16:59:00    2017-07-13 16:59:00
104654    33457    729    2017-07-13 18:27:00    2017-07-13 18:27:00
104655    33458    481    2017-07-13 11:08:00    2017-07-13 11:08:00
104656    33458    707    2017-07-13 22:49:00    2017-07-13 22:49:00
104657    33458    536    2017-07-13 16:51:00    2017-07-13 16:51:00
104658    33458    881    2017-07-13 10:55:00    2017-07-13 10:55:00
104659    33458    522    2017-07-13 08:26:00    2017-07-13 08:26:00
104660    33459    947    2017-07-13 11:07:00    2017-07-13 11:07:00
104661    33459    568    2017-07-13 16:53:00    2017-07-13 16:53:00
104662    33459    664    2017-07-13 22:37:00    2017-07-13 22:37:00
104663    33459    881    2017-07-13 15:27:00    2017-07-13 15:27:00
104664    33459    561    2017-07-13 16:02:00    2017-07-13 16:02:00
104665    33460    591    2017-07-13 18:55:00    2017-07-13 18:55:00
104666    33460    532    2017-07-13 19:40:00    2017-07-13 19:40:00
104667    33460    722    2017-07-13 01:35:00    2017-07-13 01:35:00
104668    33460    814    2017-07-13 04:32:00    2017-07-13 04:32:00
104669    33460    775    2017-07-13 07:57:00    2017-07-13 07:57:00
104670    33461    497    2017-07-13 08:55:00    2017-07-13 08:55:00
104671    33461    735    2017-07-13 23:58:00    2017-07-13 23:58:00
104672    33461    893    2017-07-13 02:27:00    2017-07-13 02:27:00
104673    33461    662    2017-07-13 19:01:00    2017-07-13 19:01:00
104674    33461    643    2017-07-13 18:30:00    2017-07-13 18:30:00
104675    33462    686    2017-07-13 06:31:00    2017-07-13 06:31:00
104676    33462    704    2017-07-13 13:31:00    2017-07-13 13:31:00
104677    33462    687    2017-07-13 20:22:00    2017-07-13 20:22:00
104678    33462    738    2017-07-13 08:00:00    2017-07-13 08:00:00
104679    33462    576    2017-07-13 13:28:00    2017-07-13 13:28:00
104680    33463    838    2017-07-13 15:28:00    2017-07-13 15:28:00
104681    33463    577    2017-07-13 17:22:00    2017-07-13 17:22:00
104682    33463    759    2017-07-13 04:35:00    2017-07-13 04:35:00
104683    33463    857    2017-07-13 18:44:00    2017-07-13 18:44:00
104684    33463    706    2017-07-13 04:35:00    2017-07-13 04:35:00
104685    33464    814    2017-07-13 23:38:00    2017-07-13 23:38:00
104686    33464    590    2017-07-13 01:06:00    2017-07-13 01:06:00
104687    33464    833    2017-07-13 05:21:00    2017-07-13 05:21:00
104688    33464    668    2017-07-13 17:42:00    2017-07-13 17:42:00
104689    33464    497    2017-07-13 17:19:00    2017-07-13 17:19:00
104690    33465    761    2017-07-13 13:21:00    2017-07-13 13:21:00
104691    33465    938    2017-07-13 21:16:00    2017-07-13 21:16:00
104692    33465    881    2017-07-13 01:47:00    2017-07-13 01:47:00
104693    33465    773    2017-07-13 04:15:00    2017-07-13 04:15:00
104694    33465    800    2017-07-13 07:12:00    2017-07-13 07:12:00
104695    33466    928    2017-07-13 09:42:00    2017-07-13 09:42:00
104696    33466    749    2017-07-13 10:18:00    2017-07-13 10:18:00
104697    33466    558    2017-07-13 02:45:00    2017-07-13 02:45:00
104698    33466    568    2017-07-13 02:51:00    2017-07-13 02:51:00
104699    33466    477    2017-07-13 18:32:00    2017-07-13 18:32:00
104700    33467    541    2017-07-13 04:25:00    2017-07-13 04:25:00
104701    33467    630    2017-07-13 07:39:00    2017-07-13 07:39:00
104702    33467    573    2017-07-13 11:44:00    2017-07-13 11:44:00
104703    33467    598    2017-07-13 09:24:00    2017-07-13 09:24:00
104704    33467    699    2017-07-13 11:23:00    2017-07-13 11:23:00
104705    33468    497    2017-07-13 05:31:00    2017-07-13 05:31:00
104706    33468    611    2017-07-13 09:42:00    2017-07-13 09:42:00
104707    33468    668    2017-07-13 16:52:00    2017-07-13 16:52:00
104708    33468    814    2017-07-13 11:13:00    2017-07-13 11:13:00
104709    33468    671    2017-07-13 17:06:00    2017-07-13 17:06:00
104710    33469    540    2017-07-13 11:07:00    2017-07-13 11:07:00
104711    33469    639    2017-07-13 20:03:00    2017-07-13 20:03:00
104712    33469    490    2017-07-13 10:26:00    2017-07-13 10:26:00
104713    33469    903    2017-07-13 14:35:00    2017-07-13 14:35:00
104714    33469    827    2017-07-13 05:44:00    2017-07-13 05:44:00
104715    33470    604    2017-07-13 09:36:00    2017-07-13 09:36:00
104716    33470    496    2017-07-13 07:06:00    2017-07-13 07:06:00
104717    33470    764    2017-07-13 21:52:00    2017-07-13 21:52:00
104718    33470    647    2017-07-13 19:08:00    2017-07-13 19:08:00
104719    33470    698    2017-07-13 06:07:00    2017-07-13 06:07:00
104720    33471    953    2017-07-13 09:27:00    2017-07-13 09:27:00
104721    33471    592    2017-07-13 19:30:00    2017-07-13 19:30:00
104722    33471    484    2017-07-13 05:31:00    2017-07-13 05:31:00
104723    33471    943    2017-07-13 07:02:00    2017-07-13 07:02:00
104724    33471    578    2017-07-13 17:19:00    2017-07-13 17:19:00
104725    33472    936    2017-07-13 01:28:00    2017-07-13 01:28:00
104726    33472    763    2017-07-13 17:00:00    2017-07-13 17:00:00
104727    33472    914    2017-07-13 11:54:00    2017-07-13 11:54:00
104728    33472    553    2017-07-13 22:53:00    2017-07-13 22:53:00
104729    33472    766    2017-07-13 15:43:00    2017-07-13 15:43:00
104730    33473    767    2017-07-13 17:38:00    2017-07-13 17:38:00
104731    33473    572    2017-07-13 18:00:00    2017-07-13 18:00:00
104732    33473    678    2017-07-13 10:06:00    2017-07-13 10:06:00
104733    33473    754    2017-07-13 08:14:00    2017-07-13 08:14:00
104734    33473    683    2017-07-13 15:40:00    2017-07-13 15:40:00
104735    33474    816    2017-07-13 22:02:00    2017-07-13 22:02:00
104736    33474    821    2017-07-13 09:35:00    2017-07-13 09:35:00
104737    33474    878    2017-07-13 09:14:00    2017-07-13 09:14:00
104738    33474    748    2017-07-13 16:39:00    2017-07-13 16:39:00
104739    33474    471    2017-07-13 15:38:00    2017-07-13 15:38:00
104740    33475    803    2017-07-13 10:57:00    2017-07-13 10:57:00
104741    33475    549    2017-07-13 06:16:00    2017-07-13 06:16:00
104742    33475    489    2017-07-13 13:28:00    2017-07-13 13:28:00
104743    33475    593    2017-07-13 02:03:00    2017-07-13 02:03:00
104744    33475    797    2017-07-13 18:33:00    2017-07-13 18:33:00
104745    33476    822    2017-07-13 04:41:00    2017-07-13 04:41:00
104746    33476    840    2017-07-13 21:36:00    2017-07-13 21:36:00
104747    33476    581    2017-07-13 06:59:00    2017-07-13 06:59:00
104748    33476    724    2017-07-13 09:08:00    2017-07-13 09:08:00
104749    33476    840    2017-07-13 01:36:00    2017-07-13 01:36:00
104750    33477    527    2017-07-13 20:12:00    2017-07-13 20:12:00
104751    33477    866    2017-07-13 21:43:00    2017-07-13 21:43:00
104752    33477    672    2017-07-13 10:53:00    2017-07-13 10:53:00
104753    33477    845    2017-07-13 21:37:00    2017-07-13 21:37:00
104754    33477    732    2017-07-13 05:50:00    2017-07-13 05:50:00
104755    33478    548    2017-07-13 11:40:00    2017-07-13 11:40:00
104756    33478    870    2017-07-13 12:15:00    2017-07-13 12:15:00
104757    33478    895    2017-07-13 04:46:00    2017-07-13 04:46:00
104758    33478    698    2017-07-13 20:00:00    2017-07-13 20:00:00
104759    33478    862    2017-07-13 09:28:00    2017-07-13 09:28:00
104760    33479    619    2017-07-13 22:27:00    2017-07-13 22:27:00
104761    33479    894    2017-07-13 18:16:00    2017-07-13 18:16:00
104762    33479    560    2017-07-13 13:00:00    2017-07-13 13:00:00
104763    33479    609    2017-07-13 07:42:00    2017-07-13 07:42:00
104764    33479    904    2017-07-13 03:59:00    2017-07-13 03:59:00
104765    33480    942    2017-07-13 12:35:00    2017-07-13 12:35:00
104766    33480    480    2017-07-13 09:00:00    2017-07-13 09:00:00
104767    33480    546    2017-07-13 10:25:00    2017-07-13 10:25:00
104768    33480    927    2017-07-13 14:31:00    2017-07-13 14:31:00
104769    33480    829    2017-07-13 07:31:00    2017-07-13 07:31:00
104770    33481    869    2017-07-13 11:31:00    2017-07-13 11:31:00
104771    33481    624    2017-07-13 16:19:00    2017-07-13 16:19:00
104772    33481    729    2017-07-13 19:58:00    2017-07-13 19:58:00
104773    33481    584    2017-07-13 18:49:00    2017-07-13 18:49:00
104774    33481    537    2017-07-13 12:00:00    2017-07-13 12:00:00
104775    33482    709    2017-07-13 21:33:00    2017-07-13 21:33:00
104776    33482    790    2017-07-13 02:42:00    2017-07-13 02:42:00
104777    33482    747    2017-07-13 23:30:00    2017-07-13 23:30:00
104778    33482    728    2017-07-13 10:04:00    2017-07-13 10:04:00
104779    33482    831    2017-07-13 17:02:00    2017-07-13 17:02:00
104780    33483    835    2017-07-13 16:36:00    2017-07-13 16:36:00
104781    33483    760    2017-07-13 01:02:00    2017-07-13 01:02:00
104782    33483    604    2017-07-13 09:06:00    2017-07-13 09:06:00
104783    33483    890    2017-07-13 22:08:00    2017-07-13 22:08:00
104784    33483    807    2017-07-13 19:13:00    2017-07-13 19:13:00
104785    33484    487    2017-07-13 17:21:00    2017-07-13 17:21:00
104786    33484    805    2017-07-13 20:33:00    2017-07-13 20:33:00
104787    33484    519    2017-07-13 11:28:00    2017-07-13 11:28:00
104788    33484    748    2017-07-13 01:50:00    2017-07-13 01:50:00
104789    33484    860    2017-07-13 16:03:00    2017-07-13 16:03:00
104790    33485    596    2017-07-13 10:38:00    2017-07-13 10:38:00
104791    33485    799    2017-07-13 09:12:00    2017-07-13 09:12:00
104792    33485    841    2017-07-13 09:27:00    2017-07-13 09:27:00
104793    33485    839    2017-07-13 23:03:00    2017-07-13 23:03:00
104794    33485    762    2017-07-13 22:01:00    2017-07-13 22:01:00
104795    33486    643    2017-07-13 22:59:00    2017-07-13 22:59:00
104796    33486    545    2017-07-13 12:24:00    2017-07-13 12:24:00
104797    33486    937    2017-07-13 01:18:00    2017-07-13 01:18:00
104798    33486    765    2017-07-13 13:03:00    2017-07-13 13:03:00
104799    33486    827    2017-07-13 09:22:00    2017-07-13 09:22:00
104800    33487    500    2017-07-13 09:07:00    2017-07-13 09:07:00
104801    33487    556    2017-07-13 22:17:00    2017-07-13 22:17:00
104802    33487    752    2017-07-13 15:40:00    2017-07-13 15:40:00
104803    33487    469    2017-07-13 03:38:00    2017-07-13 03:38:00
104804    33487    726    2017-07-13 07:53:00    2017-07-13 07:53:00
104805    33488    601    2017-07-13 13:47:00    2017-07-13 13:47:00
104806    33488    555    2017-07-13 01:03:00    2017-07-13 01:03:00
104807    33488    956    2017-07-13 07:06:00    2017-07-13 07:06:00
104808    33488    691    2017-07-13 06:16:00    2017-07-13 06:16:00
104809    33488    689    2017-07-13 19:39:00    2017-07-13 19:39:00
104810    33489    735    2017-07-13 19:30:00    2017-07-13 19:30:00
104811    33489    729    2017-07-13 13:28:00    2017-07-13 13:28:00
104812    33489    921    2017-07-13 12:00:00    2017-07-13 12:00:00
104813    33489    595    2017-07-13 08:49:00    2017-07-13 08:49:00
104814    33489    827    2017-07-13 02:00:00    2017-07-13 02:00:00
104815    33490    943    2017-07-13 05:53:00    2017-07-13 05:53:00
104816    33490    805    2017-07-13 08:22:00    2017-07-13 08:22:00
104817    33490    549    2017-07-13 21:30:00    2017-07-13 21:30:00
104818    33490    554    2017-07-13 17:21:00    2017-07-13 17:21:00
104819    33490    638    2017-07-13 20:52:00    2017-07-13 20:52:00
104820    33491    675    2017-07-13 19:48:00    2017-07-13 19:48:00
104821    33491    569    2017-07-13 07:45:00    2017-07-13 07:45:00
104822    33491    500    2017-07-13 19:00:00    2017-07-13 19:00:00
104823    33491    674    2017-07-13 07:41:00    2017-07-13 07:41:00
104824    33491    560    2017-07-13 12:00:00    2017-07-13 12:00:00
104825    33492    917    2017-07-13 22:02:00    2017-07-13 22:02:00
104826    33492    503    2017-07-13 01:42:00    2017-07-13 01:42:00
104827    33492    826    2017-07-13 16:49:00    2017-07-13 16:49:00
104828    33492    483    2017-07-13 08:48:00    2017-07-13 08:48:00
104829    33492    570    2017-07-13 17:15:00    2017-07-13 17:15:00
104830    33493    865    2017-07-13 17:23:00    2017-07-13 17:23:00
104831    33493    598    2017-07-13 20:32:00    2017-07-13 20:32:00
104832    33493    649    2017-07-13 15:58:00    2017-07-13 15:58:00
104833    33493    527    2017-07-13 13:30:00    2017-07-13 13:30:00
104834    33493    870    2017-07-13 09:49:00    2017-07-13 09:49:00
104835    33494    512    2017-07-13 19:07:00    2017-07-13 19:07:00
104836    33494    837    2017-07-13 11:46:00    2017-07-13 11:46:00
104837    33494    841    2017-07-13 13:47:00    2017-07-13 13:47:00
104838    33494    738    2017-07-13 21:37:00    2017-07-13 21:37:00
104839    33494    502    2017-07-13 03:55:00    2017-07-13 03:55:00
104840    33495    786    2017-07-13 22:39:00    2017-07-13 22:39:00
104841    33495    730    2017-07-13 09:30:00    2017-07-13 09:30:00
104842    33495    764    2017-07-13 10:46:00    2017-07-13 10:46:00
104843    33495    789    2017-07-13 14:26:00    2017-07-13 14:26:00
104844    33495    687    2017-07-13 20:14:00    2017-07-13 20:14:00
104845    33496    593    2017-07-13 19:18:00    2017-07-13 19:18:00
104846    33496    696    2017-07-13 16:36:00    2017-07-13 16:36:00
104847    33496    879    2017-07-13 04:43:00    2017-07-13 04:43:00
104848    33496    880    2017-07-13 14:37:00    2017-07-13 14:37:00
104849    33496    708    2017-07-13 04:38:00    2017-07-13 04:38:00
104850    33497    665    2017-07-13 23:06:00    2017-07-13 23:06:00
104851    33497    868    2017-07-13 14:11:00    2017-07-13 14:11:00
104852    33497    697    2017-07-13 16:20:00    2017-07-13 16:20:00
104853    33497    558    2017-07-13 17:45:00    2017-07-13 17:45:00
104854    33497    715    2017-07-13 20:08:00    2017-07-13 20:08:00
104855    33498    536    2017-07-13 18:08:00    2017-07-13 18:08:00
104856    33498    833    2017-07-13 01:31:00    2017-07-13 01:31:00
104857    33498    636    2017-07-13 20:56:00    2017-07-13 20:56:00
104858    33498    515    2017-07-13 22:05:00    2017-07-13 22:05:00
104859    33498    497    2017-07-13 05:21:00    2017-07-13 05:21:00
104860    33499    679    2017-07-13 01:16:00    2017-07-13 01:16:00
104861    33499    665    2017-07-13 17:19:00    2017-07-13 17:19:00
104862    33499    942    2017-07-13 16:37:00    2017-07-13 16:37:00
104863    33499    557    2017-07-13 23:02:00    2017-07-13 23:02:00
104864    33499    792    2017-07-13 02:02:00    2017-07-13 02:02:00
104865    33500    937    2017-07-13 23:59:00    2017-07-13 23:59:00
104866    33500    845    2017-07-13 08:10:00    2017-07-13 08:10:00
104867    33500    885    2017-07-13 10:55:00    2017-07-13 10:55:00
104868    33500    639    2017-07-13 03:22:00    2017-07-13 03:22:00
104869    33500    567    2017-07-13 05:54:00    2017-07-13 05:54:00
104870    33501    613    2017-07-13 04:25:00    2017-07-13 04:25:00
104871    33501    949    2017-07-13 03:26:00    2017-07-13 03:26:00
104872    33501    593    2017-07-13 19:23:00    2017-07-13 19:23:00
104873    33501    733    2017-07-13 18:34:00    2017-07-13 18:34:00
104874    33501    779    2017-07-13 09:42:00    2017-07-13 09:42:00
104875    33502    474    2017-07-13 13:14:00    2017-07-13 13:14:00
104876    33502    714    2017-07-13 18:14:00    2017-07-13 18:14:00
104877    33502    623    2017-07-13 20:54:00    2017-07-13 20:54:00
104878    33502    766    2017-07-13 15:38:00    2017-07-13 15:38:00
104879    33502    762    2017-07-13 02:51:00    2017-07-13 02:51:00
104880    33503    655    2017-07-13 18:59:00    2017-07-13 18:59:00
104881    33503    726    2017-07-13 21:46:00    2017-07-13 21:46:00
104882    33503    724    2017-07-13 08:08:00    2017-07-13 08:08:00
104883    33503    522    2017-07-13 06:52:00    2017-07-13 06:52:00
104884    33503    897    2017-07-13 03:53:00    2017-07-13 03:53:00
104885    33504    694    2017-07-13 21:24:00    2017-07-13 21:24:00
104886    33504    543    2017-07-13 04:49:00    2017-07-13 04:49:00
104887    33504    754    2017-07-13 13:35:00    2017-07-13 13:35:00
104888    33504    714    2017-07-13 02:56:00    2017-07-13 02:56:00
104889    33504    939    2017-07-13 10:54:00    2017-07-13 10:54:00
104890    33505    611    2017-07-13 07:50:00    2017-07-13 07:50:00
104891    33505    743    2017-07-13 20:03:00    2017-07-13 20:03:00
104892    33505    941    2017-07-13 13:29:00    2017-07-13 13:29:00
104893    33505    488    2017-07-13 02:01:00    2017-07-13 02:01:00
104894    33505    939    2017-07-13 08:32:00    2017-07-13 08:32:00
104895    33506    580    2017-07-13 23:35:00    2017-07-13 23:35:00
104896    33506    614    2017-07-13 21:47:00    2017-07-13 21:47:00
104897    33506    749    2017-07-13 15:02:00    2017-07-13 15:02:00
104898    33506    604    2017-07-13 11:51:00    2017-07-13 11:51:00
104899    33506    856    2017-07-13 03:08:00    2017-07-13 03:08:00
104900    33507    563    2017-07-13 21:51:00    2017-07-13 21:51:00
104901    33507    753    2017-07-13 07:36:00    2017-07-13 07:36:00
104902    33507    718    2017-07-13 22:12:00    2017-07-13 22:12:00
104903    33507    596    2017-07-13 07:22:00    2017-07-13 07:22:00
104904    33507    647    2017-07-13 19:27:00    2017-07-13 19:27:00
104905    33508    652    2017-07-13 02:39:00    2017-07-13 02:39:00
104906    33508    789    2017-07-13 02:32:00    2017-07-13 02:32:00
104907    33508    890    2017-07-13 02:59:00    2017-07-13 02:59:00
104908    33508    776    2017-07-13 14:00:00    2017-07-13 14:00:00
104909    33508    913    2017-07-13 09:20:00    2017-07-13 09:20:00
104910    33509    919    2017-07-14 11:31:00    2017-07-14 11:31:00
104911    33509    720    2017-07-14 19:57:00    2017-07-14 19:57:00
104912    33509    665    2017-07-14 17:40:00    2017-07-14 17:40:00
104913    33509    556    2017-07-14 21:47:00    2017-07-14 21:47:00
104914    33509    466    2017-07-14 02:08:00    2017-07-14 02:08:00
104915    33510    561    2017-07-14 16:47:00    2017-07-14 16:47:00
104916    33510    822    2017-07-14 03:12:00    2017-07-14 03:12:00
104917    33510    480    2017-07-14 12:23:00    2017-07-14 12:23:00
104918    33510    574    2017-07-14 22:38:00    2017-07-14 22:38:00
104919    33510    468    2017-07-14 19:53:00    2017-07-14 19:53:00
104920    33511    762    2017-07-14 10:37:00    2017-07-14 10:37:00
104921    33511    716    2017-07-14 17:40:00    2017-07-14 17:40:00
104922    33511    639    2017-07-14 22:46:00    2017-07-14 22:46:00
104923    33511    860    2017-07-14 14:04:00    2017-07-14 14:04:00
104924    33511    955    2017-07-14 06:15:00    2017-07-14 06:15:00
104925    33512    544    2017-07-14 21:38:00    2017-07-14 21:38:00
104926    33512    671    2017-07-14 05:21:00    2017-07-14 05:21:00
104927    33512    617    2017-07-14 20:29:00    2017-07-14 20:29:00
104928    33512    649    2017-07-14 14:18:00    2017-07-14 14:18:00
104929    33512    607    2017-07-14 18:15:00    2017-07-14 18:15:00
104930    33513    872    2017-07-14 14:28:00    2017-07-14 14:28:00
104931    33513    586    2017-07-14 06:39:00    2017-07-14 06:39:00
104932    33513    697    2017-07-14 03:00:00    2017-07-14 03:00:00
104933    33513    540    2017-07-14 22:14:00    2017-07-14 22:14:00
104934    33513    757    2017-07-14 03:47:00    2017-07-14 03:47:00
104935    33514    821    2017-07-14 07:52:00    2017-07-14 07:52:00
104936    33514    936    2017-07-14 12:02:00    2017-07-14 12:02:00
104937    33514    662    2017-07-14 02:45:00    2017-07-14 02:45:00
104938    33514    690    2017-07-14 22:14:00    2017-07-14 22:14:00
104939    33514    613    2017-07-14 02:27:00    2017-07-14 02:27:00
104940    33515    900    2017-07-14 04:57:00    2017-07-14 04:57:00
104941    33515    880    2017-07-14 13:05:00    2017-07-14 13:05:00
104942    33515    679    2017-07-14 21:33:00    2017-07-14 21:33:00
104943    33515    868    2017-07-14 17:50:00    2017-07-14 17:50:00
104944    33515    652    2017-07-14 11:16:00    2017-07-14 11:16:00
104945    33516    537    2017-07-14 12:15:00    2017-07-14 12:15:00
104946    33516    631    2017-07-14 05:38:00    2017-07-14 05:38:00
104947    33516    802    2017-07-14 03:58:00    2017-07-14 03:58:00
104948    33516    529    2017-07-14 11:20:00    2017-07-14 11:20:00
104949    33516    944    2017-07-14 09:16:00    2017-07-14 09:16:00
104950    33517    540    2017-07-14 14:40:00    2017-07-14 14:40:00
104951    33517    954    2017-07-14 23:45:00    2017-07-14 23:45:00
104952    33517    800    2017-07-14 10:28:00    2017-07-14 10:28:00
104953    33517    899    2017-07-14 13:28:00    2017-07-14 13:28:00
104954    33517    701    2017-07-14 12:05:00    2017-07-14 12:05:00
104955    33518    661    2017-07-14 06:36:00    2017-07-14 06:36:00
104956    33518    612    2017-07-14 06:25:00    2017-07-14 06:25:00
104957    33518    497    2017-07-14 09:11:00    2017-07-14 09:11:00
104958    33518    888    2017-07-14 02:25:00    2017-07-14 02:25:00
104959    33518    641    2017-07-14 11:59:00    2017-07-14 11:59:00
104960    33519    781    2017-07-14 21:08:00    2017-07-14 21:08:00
104961    33519    756    2017-07-14 14:37:00    2017-07-14 14:37:00
104962    33519    687    2017-07-14 18:54:00    2017-07-14 18:54:00
104963    33519    783    2017-07-14 20:29:00    2017-07-14 20:29:00
104964    33519    769    2017-07-14 07:00:00    2017-07-14 07:00:00
104965    33520    940    2017-07-14 23:42:00    2017-07-14 23:42:00
104966    33520    524    2017-07-14 14:00:00    2017-07-14 14:00:00
104967    33520    592    2017-07-14 13:34:00    2017-07-14 13:34:00
104968    33520    525    2017-07-14 01:36:00    2017-07-14 01:36:00
104969    33520    805    2017-07-14 15:41:00    2017-07-14 15:41:00
104970    33521    617    2017-07-14 04:16:00    2017-07-14 04:16:00
104971    33521    842    2017-07-14 20:20:00    2017-07-14 20:20:00
104972    33521    770    2017-07-14 12:22:00    2017-07-14 12:22:00
104973    33521    733    2017-07-14 22:00:00    2017-07-14 22:00:00
104974    33521    874    2017-07-14 12:49:00    2017-07-14 12:49:00
104975    33522    856    2017-07-14 01:43:00    2017-07-14 01:43:00
104976    33522    781    2017-07-14 22:20:00    2017-07-14 22:20:00
104977    33522    814    2017-07-14 09:51:00    2017-07-14 09:51:00
104978    33522    783    2017-07-14 02:56:00    2017-07-14 02:56:00
104979    33522    742    2017-07-14 11:48:00    2017-07-14 11:48:00
104980    33523    776    2017-07-14 19:19:00    2017-07-14 19:19:00
104981    33523    852    2017-07-14 19:26:00    2017-07-14 19:26:00
104982    33523    935    2017-07-14 14:34:00    2017-07-14 14:34:00
104983    33523    807    2017-07-14 09:54:00    2017-07-14 09:54:00
104984    33523    896    2017-07-14 23:08:00    2017-07-14 23:08:00
104985    33524    601    2017-07-14 23:56:00    2017-07-14 23:56:00
104986    33524    515    2017-07-14 21:05:00    2017-07-14 21:05:00
104987    33524    703    2017-07-14 02:12:00    2017-07-14 02:12:00
104988    33524    477    2017-07-14 22:33:00    2017-07-14 22:33:00
104989    33524    650    2017-07-14 16:43:00    2017-07-14 16:43:00
104990    33525    816    2017-07-14 18:58:00    2017-07-14 18:58:00
104991    33525    846    2017-07-14 08:09:00    2017-07-14 08:09:00
104992    33525    697    2017-07-14 21:00:00    2017-07-14 21:00:00
104993    33525    719    2017-07-14 23:37:00    2017-07-14 23:37:00
104994    33525    463    2017-07-14 23:08:00    2017-07-14 23:08:00
104995    33526    760    2017-07-15 13:00:00    2017-07-15 13:00:00
104996    33526    825    2017-07-15 16:44:00    2017-07-15 16:44:00
104997    33526    650    2017-07-15 07:44:00    2017-07-15 07:44:00
104998    33526    862    2017-07-15 01:48:00    2017-07-15 01:48:00
104999    33526    797    2017-07-15 02:27:00    2017-07-15 02:27:00
105000    33527    669    2017-07-15 04:46:00    2017-07-15 04:46:00
105001    33527    688    2017-07-15 21:36:00    2017-07-15 21:36:00
105002    33527    497    2017-07-15 08:39:00    2017-07-15 08:39:00
105003    33527    722    2017-07-15 19:02:00    2017-07-15 19:02:00
105004    33527    499    2017-07-15 09:59:00    2017-07-15 09:59:00
105005    33528    812    2017-07-15 01:04:00    2017-07-15 01:04:00
105006    33528    730    2017-07-15 19:14:00    2017-07-15 19:14:00
105007    33528    812    2017-07-15 14:14:00    2017-07-15 14:14:00
105008    33528    631    2017-07-15 03:35:00    2017-07-15 03:35:00
105009    33528    914    2017-07-15 22:05:00    2017-07-15 22:05:00
105010    33529    544    2017-07-15 11:25:00    2017-07-15 11:25:00
105011    33529    834    2017-07-15 08:11:00    2017-07-15 08:11:00
105012    33529    913    2017-07-15 14:00:00    2017-07-15 14:00:00
105013    33529    888    2017-07-15 20:55:00    2017-07-15 20:55:00
105014    33529    945    2017-07-15 18:56:00    2017-07-15 18:56:00
105015    33530    582    2017-07-15 01:06:00    2017-07-15 01:06:00
105016    33530    749    2017-07-15 17:54:00    2017-07-15 17:54:00
105017    33530    625    2017-07-15 05:35:00    2017-07-15 05:35:00
105018    33530    741    2017-07-15 17:15:00    2017-07-15 17:15:00
105019    33530    480    2017-07-15 09:35:00    2017-07-15 09:35:00
105020    33531    795    2017-07-15 15:28:00    2017-07-15 15:28:00
105021    33531    616    2017-07-15 17:07:00    2017-07-15 17:07:00
105022    33531    660    2017-07-15 10:58:00    2017-07-15 10:58:00
105023    33531    587    2017-07-15 18:19:00    2017-07-15 18:19:00
105024    33531    478    2017-07-15 02:48:00    2017-07-15 02:48:00
105025    33532    562    2017-07-15 15:06:00    2017-07-15 15:06:00
105026    33532    800    2017-07-15 19:45:00    2017-07-15 19:45:00
105027    33532    523    2017-07-15 03:51:00    2017-07-15 03:51:00
105028    33532    891    2017-07-15 11:15:00    2017-07-15 11:15:00
105029    33532    655    2017-07-15 06:19:00    2017-07-15 06:19:00
105030    33533    662    2017-07-15 08:37:00    2017-07-15 08:37:00
105031    33533    783    2017-07-15 06:57:00    2017-07-15 06:57:00
105032    33533    804    2017-07-15 17:23:00    2017-07-15 17:23:00
105033    33533    602    2017-07-15 10:48:00    2017-07-15 10:48:00
105034    33533    609    2017-07-15 13:36:00    2017-07-15 13:36:00
105035    33534    832    2017-07-15 04:15:00    2017-07-15 04:15:00
105036    33534    600    2017-07-15 16:27:00    2017-07-15 16:27:00
105037    33534    489    2017-07-15 18:55:00    2017-07-15 18:55:00
105038    33534    822    2017-07-15 03:57:00    2017-07-15 03:57:00
105039    33534    890    2017-07-15 09:14:00    2017-07-15 09:14:00
105040    33535    826    2017-07-15 19:47:00    2017-07-15 19:47:00
105041    33535    820    2017-07-15 08:08:00    2017-07-15 08:08:00
105042    33535    820    2017-07-15 12:20:00    2017-07-15 12:20:00
105043    33535    954    2017-07-15 06:11:00    2017-07-15 06:11:00
105044    33535    636    2017-07-15 23:26:00    2017-07-15 23:26:00
105045    33536    850    2017-07-15 23:45:00    2017-07-15 23:45:00
105046    33536    648    2017-07-15 03:21:00    2017-07-15 03:21:00
105047    33536    523    2017-07-15 09:51:00    2017-07-15 09:51:00
105048    33536    832    2017-07-15 12:36:00    2017-07-15 12:36:00
105049    33536    662    2017-07-15 01:38:00    2017-07-15 01:38:00
105050    33537    706    2017-07-15 20:06:00    2017-07-15 20:06:00
105051    33537    581    2017-07-15 03:18:00    2017-07-15 03:18:00
105052    33537    578    2017-07-15 22:47:00    2017-07-15 22:47:00
105053    33537    739    2017-07-15 16:28:00    2017-07-15 16:28:00
105054    33537    685    2017-07-15 07:22:00    2017-07-15 07:22:00
105055    33538    810    2017-07-15 17:41:00    2017-07-15 17:41:00
105056    33538    665    2017-07-15 11:09:00    2017-07-15 11:09:00
105057    33538    947    2017-07-15 02:46:00    2017-07-15 02:46:00
105058    33538    701    2017-07-15 15:37:00    2017-07-15 15:37:00
105059    33538    729    2017-07-15 10:23:00    2017-07-15 10:23:00
105060    33539    763    2017-07-15 07:43:00    2017-07-15 07:43:00
105061    33539    826    2017-07-15 10:25:00    2017-07-15 10:25:00
105062    33539    700    2017-07-15 06:25:00    2017-07-15 06:25:00
105063    33539    851    2017-07-15 22:18:00    2017-07-15 22:18:00
105064    33539    500    2017-07-15 06:58:00    2017-07-15 06:58:00
105065    33540    610    2017-07-15 09:51:00    2017-07-15 09:51:00
105066    33540    720    2017-07-15 11:59:00    2017-07-15 11:59:00
105067    33540    836    2017-07-15 14:16:00    2017-07-15 14:16:00
105068    33540    488    2017-07-15 05:14:00    2017-07-15 05:14:00
105069    33540    585    2017-07-15 16:36:00    2017-07-15 16:36:00
105070    33541    497    2017-07-15 05:18:00    2017-07-15 05:18:00
105071    33541    656    2017-07-15 03:27:00    2017-07-15 03:27:00
105072    33541    467    2017-07-15 14:50:00    2017-07-15 14:50:00
105073    33541    941    2017-07-15 07:09:00    2017-07-15 07:09:00
105074    33541    949    2017-07-15 12:28:00    2017-07-15 12:28:00
105075    33542    715    2017-07-15 04:09:00    2017-07-15 04:09:00
105076    33542    467    2017-07-15 04:59:00    2017-07-15 04:59:00
105077    33542    737    2017-07-15 18:48:00    2017-07-15 18:48:00
105078    33542    506    2017-07-15 08:24:00    2017-07-15 08:24:00
105079    33542    867    2017-07-15 21:40:00    2017-07-15 21:40:00
105080    33543    810    2017-07-15 08:41:00    2017-07-15 08:41:00
105081    33543    869    2017-07-15 21:47:00    2017-07-15 21:47:00
105082    33543    682    2017-07-15 08:50:00    2017-07-15 08:50:00
105083    33543    633    2017-07-15 17:04:00    2017-07-15 17:04:00
105084    33543    915    2017-07-15 01:27:00    2017-07-15 01:27:00
105085    33544    609    2017-07-15 14:27:00    2017-07-15 14:27:00
105086    33544    801    2017-07-15 02:09:00    2017-07-15 02:09:00
105087    33544    537    2017-07-15 23:01:00    2017-07-15 23:01:00
105088    33544    581    2017-07-15 20:00:00    2017-07-15 20:00:00
105089    33544    727    2017-07-15 20:39:00    2017-07-15 20:39:00
105090    33545    743    2017-07-15 02:36:00    2017-07-15 02:36:00
105091    33545    739    2017-07-15 18:12:00    2017-07-15 18:12:00
105092    33545    494    2017-07-15 04:14:00    2017-07-15 04:14:00
105093    33545    817    2017-07-15 23:58:00    2017-07-15 23:58:00
105094    33545    862    2017-07-15 12:35:00    2017-07-15 12:35:00
105095    33546    920    2017-07-15 20:41:00    2017-07-15 20:41:00
105096    33546    725    2017-07-15 22:39:00    2017-07-15 22:39:00
105097    33546    618    2017-07-15 17:15:00    2017-07-15 17:15:00
105098    33546    717    2017-07-15 22:13:00    2017-07-15 22:13:00
105099    33546    575    2017-07-15 04:28:00    2017-07-15 04:28:00
105100    33547    549    2017-07-15 22:38:00    2017-07-15 22:38:00
105101    33547    919    2017-07-15 03:56:00    2017-07-15 03:56:00
105102    33547    645    2017-07-15 05:18:00    2017-07-15 05:18:00
105103    33547    925    2017-07-15 04:59:00    2017-07-15 04:59:00
105104    33547    657    2017-07-15 05:27:00    2017-07-15 05:27:00
105105    33548    902    2017-07-15 03:10:00    2017-07-15 03:10:00
105106    33548    617    2017-07-15 06:39:00    2017-07-15 06:39:00
105107    33548    580    2017-07-15 10:00:00    2017-07-15 10:00:00
105108    33548    766    2017-07-15 23:27:00    2017-07-15 23:27:00
105109    33548    543    2017-07-15 22:18:00    2017-07-15 22:18:00
105110    33549    647    2017-07-16 20:16:00    2017-07-16 20:16:00
105111    33549    855    2017-07-16 14:44:00    2017-07-16 14:44:00
105112    33549    646    2017-07-16 17:57:00    2017-07-16 17:57:00
105113    33549    921    2017-07-16 14:11:00    2017-07-16 14:11:00
105114    33549    564    2017-07-16 10:40:00    2017-07-16 10:40:00
105115    33550    772    2017-07-16 01:35:00    2017-07-16 01:35:00
105116    33550    849    2017-07-16 15:10:00    2017-07-16 15:10:00
105117    33550    747    2017-07-16 16:21:00    2017-07-16 16:21:00
105118    33550    534    2017-07-16 14:09:00    2017-07-16 14:09:00
105119    33550    881    2017-07-16 14:00:00    2017-07-16 14:00:00
105120    33551    610    2017-07-16 20:17:00    2017-07-16 20:17:00
105121    33551    792    2017-07-16 04:13:00    2017-07-16 04:13:00
105122    33551    882    2017-07-16 20:25:00    2017-07-16 20:25:00
105123    33551    887    2017-07-16 21:45:00    2017-07-16 21:45:00
105124    33551    784    2017-07-16 12:44:00    2017-07-16 12:44:00
105125    33552    849    2017-07-16 23:26:00    2017-07-16 23:26:00
105126    33552    685    2017-07-16 23:00:00    2017-07-16 23:00:00
105127    33552    859    2017-07-16 03:58:00    2017-07-16 03:58:00
105128    33552    724    2017-07-16 19:06:00    2017-07-16 19:06:00
105129    33552    773    2017-07-16 08:58:00    2017-07-16 08:58:00
105130    33553    891    2017-07-16 19:32:00    2017-07-16 19:32:00
105131    33553    508    2017-07-16 17:56:00    2017-07-16 17:56:00
105132    33553    644    2017-07-16 16:37:00    2017-07-16 16:37:00
105133    33553    469    2017-07-16 05:38:00    2017-07-16 05:38:00
105134    33553    947    2017-07-16 02:34:00    2017-07-16 02:34:00
105135    33554    748    2017-07-16 10:16:00    2017-07-16 10:16:00
105136    33554    761    2017-07-16 19:31:00    2017-07-16 19:31:00
105137    33554    573    2017-07-16 15:51:00    2017-07-16 15:51:00
105138    33554    579    2017-07-16 09:13:00    2017-07-16 09:13:00
105139    33554    471    2017-07-16 16:32:00    2017-07-16 16:32:00
105140    33555    697    2017-07-16 13:33:00    2017-07-16 13:33:00
105141    33555    547    2017-07-16 03:11:00    2017-07-16 03:11:00
105142    33555    638    2017-07-16 20:49:00    2017-07-16 20:49:00
105143    33555    493    2017-07-16 02:16:00    2017-07-16 02:16:00
105144    33555    575    2017-07-16 17:09:00    2017-07-16 17:09:00
105145    33556    546    2017-07-16 07:00:00    2017-07-16 07:00:00
105146    33556    518    2017-07-16 10:08:00    2017-07-16 10:08:00
105147    33556    649    2017-07-16 14:51:00    2017-07-16 14:51:00
105148    33556    825    2017-07-16 11:20:00    2017-07-16 11:20:00
105149    33556    484    2017-07-16 21:14:00    2017-07-16 21:14:00
105150    33557    833    2017-07-16 05:39:00    2017-07-16 05:39:00
105151    33557    627    2017-07-16 04:37:00    2017-07-16 04:37:00
105152    33557    493    2017-07-16 15:32:00    2017-07-16 15:32:00
105153    33557    632    2017-07-16 08:24:00    2017-07-16 08:24:00
105154    33557    480    2017-07-16 17:55:00    2017-07-16 17:55:00
105155    33558    594    2017-07-16 05:16:00    2017-07-16 05:16:00
105156    33558    590    2017-07-16 12:35:00    2017-07-16 12:35:00
105157    33558    568    2017-07-16 06:45:00    2017-07-16 06:45:00
105158    33558    735    2017-07-16 10:01:00    2017-07-16 10:01:00
105159    33558    543    2017-07-16 13:58:00    2017-07-16 13:58:00
105160    33559    701    2017-07-16 06:56:00    2017-07-16 06:56:00
105161    33559    881    2017-07-16 13:05:00    2017-07-16 13:05:00
105162    33559    837    2017-07-16 10:17:00    2017-07-16 10:17:00
105163    33559    493    2017-07-16 20:11:00    2017-07-16 20:11:00
105164    33559    719    2017-07-16 13:10:00    2017-07-16 13:10:00
105165    33560    654    2017-07-16 06:48:00    2017-07-16 06:48:00
105166    33560    775    2017-07-16 09:54:00    2017-07-16 09:54:00
105167    33560    864    2017-07-16 06:04:00    2017-07-16 06:04:00
105168    33560    744    2017-07-16 12:10:00    2017-07-16 12:10:00
105169    33560    870    2017-07-16 17:15:00    2017-07-16 17:15:00
105170    33561    557    2017-07-16 01:19:00    2017-07-16 01:19:00
105171    33561    575    2017-07-16 11:10:00    2017-07-16 11:10:00
105172    33561    534    2017-07-16 11:52:00    2017-07-16 11:52:00
105173    33561    646    2017-07-16 11:59:00    2017-07-16 11:59:00
105174    33561    795    2017-07-16 13:36:00    2017-07-16 13:36:00
105175    33562    738    2017-07-16 09:04:00    2017-07-16 09:04:00
105176    33562    954    2017-07-16 09:39:00    2017-07-16 09:39:00
105177    33562    831    2017-07-16 21:13:00    2017-07-16 21:13:00
105178    33562    793    2017-07-16 01:48:00    2017-07-16 01:48:00
105179    33562    696    2017-07-16 01:39:00    2017-07-16 01:39:00
105180    33563    710    2017-07-16 13:50:00    2017-07-16 13:50:00
105181    33563    875    2017-07-16 16:48:00    2017-07-16 16:48:00
105182    33563    762    2017-07-16 11:33:00    2017-07-16 11:33:00
105183    33563    609    2017-07-16 08:13:00    2017-07-16 08:13:00
105184    33563    755    2017-07-16 12:27:00    2017-07-16 12:27:00
105185    33564    904    2017-07-16 19:11:00    2017-07-16 19:11:00
105186    33564    657    2017-07-16 13:08:00    2017-07-16 13:08:00
105187    33564    868    2017-07-16 08:40:00    2017-07-16 08:40:00
105188    33564    877    2017-07-16 22:54:00    2017-07-16 22:54:00
105189    33564    488    2017-07-16 22:11:00    2017-07-16 22:11:00
105190    33565    582    2017-07-16 16:45:00    2017-07-16 16:45:00
105191    33565    564    2017-07-16 05:01:00    2017-07-16 05:01:00
105192    33565    721    2017-07-16 22:21:00    2017-07-16 22:21:00
105193    33565    903    2017-07-16 12:25:00    2017-07-16 12:25:00
105194    33565    921    2017-07-16 06:14:00    2017-07-16 06:14:00
105195    33566    478    2017-07-16 14:03:00    2017-07-16 14:03:00
105196    33566    620    2017-07-16 07:23:00    2017-07-16 07:23:00
105197    33566    681    2017-07-16 03:01:00    2017-07-16 03:01:00
105198    33566    813    2017-07-16 14:49:00    2017-07-16 14:49:00
105199    33566    915    2017-07-16 02:46:00    2017-07-16 02:46:00
105200    33567    732    2017-07-16 05:08:00    2017-07-16 05:08:00
105201    33567    882    2017-07-16 12:36:00    2017-07-16 12:36:00
105202    33567    874    2017-07-16 18:20:00    2017-07-16 18:20:00
105203    33567    463    2017-07-16 06:15:00    2017-07-16 06:15:00
105204    33567    752    2017-07-16 14:45:00    2017-07-16 14:45:00
105205    33568    873    2017-07-16 05:00:00    2017-07-16 05:00:00
105206    33568    600    2017-07-16 20:54:00    2017-07-16 20:54:00
105207    33568    789    2017-07-16 11:58:00    2017-07-16 11:58:00
105208    33568    722    2017-07-16 14:59:00    2017-07-16 14:59:00
105209    33568    671    2017-07-16 13:50:00    2017-07-16 13:50:00
105210    33569    911    2017-07-16 02:42:00    2017-07-16 02:42:00
105211    33569    557    2017-07-16 22:44:00    2017-07-16 22:44:00
105212    33569    784    2017-07-16 07:57:00    2017-07-16 07:57:00
105213    33569    856    2017-07-16 16:12:00    2017-07-16 16:12:00
105214    33569    645    2017-07-16 16:29:00    2017-07-16 16:29:00
105215    33570    557    2017-07-16 14:56:00    2017-07-16 14:56:00
105216    33570    591    2017-07-16 19:24:00    2017-07-16 19:24:00
105217    33570    772    2017-07-16 05:42:00    2017-07-16 05:42:00
105218    33570    654    2017-07-16 11:14:00    2017-07-16 11:14:00
105219    33570    726    2017-07-16 21:04:00    2017-07-16 21:04:00
105220    33571    866    2017-07-16 20:35:00    2017-07-16 20:35:00
105221    33571    857    2017-07-16 02:33:00    2017-07-16 02:33:00
105222    33571    613    2017-07-16 11:03:00    2017-07-16 11:03:00
105223    33571    473    2017-07-16 19:15:00    2017-07-16 19:15:00
105224    33571    768    2017-07-16 22:53:00    2017-07-16 22:53:00
105225    33572    909    2017-07-16 01:07:00    2017-07-16 01:07:00
105226    33572    872    2017-07-16 15:44:00    2017-07-16 15:44:00
105227    33572    886    2017-07-16 01:46:00    2017-07-16 01:46:00
105228    33572    578    2017-07-16 08:28:00    2017-07-16 08:28:00
105229    33572    517    2017-07-16 10:04:00    2017-07-16 10:04:00
105230    33573    616    2017-07-16 05:43:00    2017-07-16 05:43:00
105231    33573    919    2017-07-16 04:44:00    2017-07-16 04:44:00
105232    33573    836    2017-07-16 20:09:00    2017-07-16 20:09:00
105233    33573    723    2017-07-16 05:18:00    2017-07-16 05:18:00
105234    33573    665    2017-07-16 02:35:00    2017-07-16 02:35:00
105235    33574    772    2017-07-16 06:02:00    2017-07-16 06:02:00
105236    33574    494    2017-07-16 15:48:00    2017-07-16 15:48:00
105237    33574    842    2017-07-16 11:55:00    2017-07-16 11:55:00
105238    33574    747    2017-07-16 01:00:00    2017-07-16 01:00:00
105239    33574    737    2017-07-16 09:00:00    2017-07-16 09:00:00
105240    33575    708    2017-07-16 14:52:00    2017-07-16 14:52:00
105241    33575    813    2017-07-16 13:23:00    2017-07-16 13:23:00
105242    33575    788    2017-07-16 05:42:00    2017-07-16 05:42:00
105243    33575    713    2017-07-16 17:32:00    2017-07-16 17:32:00
105244    33575    501    2017-07-16 14:16:00    2017-07-16 14:16:00
105245    33576    762    2017-07-16 03:33:00    2017-07-16 03:33:00
105246    33576    699    2017-07-16 11:43:00    2017-07-16 11:43:00
105247    33576    538    2017-07-16 20:35:00    2017-07-16 20:35:00
105248    33576    876    2017-07-16 10:25:00    2017-07-16 10:25:00
105249    33576    656    2017-07-16 10:53:00    2017-07-16 10:53:00
105250    33577    512    2017-07-16 08:00:00    2017-07-16 08:00:00
105251    33577    719    2017-07-16 18:21:00    2017-07-16 18:21:00
105252    33577    749    2017-07-16 01:18:00    2017-07-16 01:18:00
105253    33577    765    2017-07-16 16:46:00    2017-07-16 16:46:00
105254    33577    849    2017-07-16 10:37:00    2017-07-16 10:37:00
105255    33578    760    2017-07-16 14:35:00    2017-07-16 14:35:00
105256    33578    531    2017-07-16 04:06:00    2017-07-16 04:06:00
105257    33578    851    2017-07-16 23:45:00    2017-07-16 23:45:00
105258    33578    664    2017-07-16 02:59:00    2017-07-16 02:59:00
105259    33578    612    2017-07-16 04:36:00    2017-07-16 04:36:00
105260    33579    922    2017-07-16 18:02:00    2017-07-16 18:02:00
105261    33579    852    2017-07-16 01:29:00    2017-07-16 01:29:00
105262    33579    927    2017-07-16 23:49:00    2017-07-16 23:49:00
105263    33579    682    2017-07-16 07:45:00    2017-07-16 07:45:00
105264    33579    560    2017-07-16 08:27:00    2017-07-16 08:27:00
105265    33580    775    2017-07-16 03:28:00    2017-07-16 03:28:00
105266    33580    842    2017-07-16 08:44:00    2017-07-16 08:44:00
105267    33580    791    2017-07-16 21:07:00    2017-07-16 21:07:00
105268    33580    478    2017-07-16 19:25:00    2017-07-16 19:25:00
105269    33580    766    2017-07-16 09:16:00    2017-07-16 09:16:00
105270    33581    651    2017-07-16 03:40:00    2017-07-16 03:40:00
105271    33581    755    2017-07-16 01:32:00    2017-07-16 01:32:00
105272    33581    484    2017-07-16 17:49:00    2017-07-16 17:49:00
105273    33581    941    2017-07-16 09:53:00    2017-07-16 09:53:00
105274    33581    606    2017-07-16 07:47:00    2017-07-16 07:47:00
105275    33582    949    2017-07-16 23:14:00    2017-07-16 23:14:00
105276    33582    810    2017-07-16 17:54:00    2017-07-16 17:54:00
105277    33582    685    2017-07-16 20:24:00    2017-07-16 20:24:00
105278    33582    583    2017-07-16 01:01:00    2017-07-16 01:01:00
105279    33582    559    2017-07-16 10:34:00    2017-07-16 10:34:00
105280    33583    640    2017-07-16 20:18:00    2017-07-16 20:18:00
105281    33583    463    2017-07-16 16:23:00    2017-07-16 16:23:00
105282    33583    519    2017-07-16 12:41:00    2017-07-16 12:41:00
105283    33583    524    2017-07-16 11:00:00    2017-07-16 11:00:00
105284    33583    913    2017-07-16 01:29:00    2017-07-16 01:29:00
105285    33584    843    2017-07-16 04:17:00    2017-07-16 04:17:00
105286    33584    689    2017-07-16 08:29:00    2017-07-16 08:29:00
105287    33584    602    2017-07-16 08:50:00    2017-07-16 08:50:00
105288    33584    502    2017-07-16 07:06:00    2017-07-16 07:06:00
105289    33584    928    2017-07-16 01:14:00    2017-07-16 01:14:00
105290    33585    625    2017-07-16 03:03:00    2017-07-16 03:03:00
105291    33585    522    2017-07-16 07:59:00    2017-07-16 07:59:00
105292    33585    550    2017-07-16 17:56:00    2017-07-16 17:56:00
105293    33585    579    2017-07-16 20:55:00    2017-07-16 20:55:00
105294    33585    726    2017-07-16 17:50:00    2017-07-16 17:50:00
105295    33586    558    2017-07-16 06:26:00    2017-07-16 06:26:00
105296    33586    646    2017-07-16 08:12:00    2017-07-16 08:12:00
105297    33586    797    2017-07-16 03:02:00    2017-07-16 03:02:00
105298    33586    525    2017-07-16 09:23:00    2017-07-16 09:23:00
105299    33586    537    2017-07-16 15:51:00    2017-07-16 15:51:00
105300    33587    511    2017-07-16 18:32:00    2017-07-16 18:32:00
105301    33587    626    2017-07-16 20:41:00    2017-07-16 20:41:00
105302    33587    644    2017-07-16 04:03:00    2017-07-16 04:03:00
105303    33587    698    2017-07-16 22:35:00    2017-07-16 22:35:00
105304    33587    874    2017-07-16 05:37:00    2017-07-16 05:37:00
105305    33588    569    2017-07-16 10:23:00    2017-07-16 10:23:00
105306    33588    852    2017-07-16 20:41:00    2017-07-16 20:41:00
105307    33588    870    2017-07-16 21:40:00    2017-07-16 21:40:00
105308    33588    947    2017-07-16 22:39:00    2017-07-16 22:39:00
105309    33588    491    2017-07-16 10:32:00    2017-07-16 10:32:00
105310    33589    647    2017-07-16 16:37:00    2017-07-16 16:37:00
105311    33589    475    2017-07-16 19:09:00    2017-07-16 19:09:00
105312    33589    757    2017-07-16 15:34:00    2017-07-16 15:34:00
105313    33589    921    2017-07-16 01:15:00    2017-07-16 01:15:00
105314    33589    722    2017-07-16 17:32:00    2017-07-16 17:32:00
105315    33590    920    2017-07-16 04:48:00    2017-07-16 04:48:00
105316    33590    466    2017-07-16 07:22:00    2017-07-16 07:22:00
105317    33590    698    2017-07-16 15:11:00    2017-07-16 15:11:00
105318    33590    724    2017-07-16 08:35:00    2017-07-16 08:35:00
105319    33590    933    2017-07-16 14:11:00    2017-07-16 14:11:00
105320    33591    540    2017-07-16 05:27:00    2017-07-16 05:27:00
105321    33591    923    2017-07-16 21:09:00    2017-07-16 21:09:00
105322    33591    712    2017-07-16 16:35:00    2017-07-16 16:35:00
105323    33591    773    2017-07-16 03:56:00    2017-07-16 03:56:00
105324    33591    713    2017-07-16 03:57:00    2017-07-16 03:57:00
105325    33592    945    2017-07-16 15:14:00    2017-07-16 15:14:00
105326    33592    649    2017-07-16 04:03:00    2017-07-16 04:03:00
105327    33592    883    2017-07-16 21:14:00    2017-07-16 21:14:00
105328    33592    777    2017-07-16 04:30:00    2017-07-16 04:30:00
105329    33592    905    2017-07-16 08:04:00    2017-07-16 08:04:00
105330    33593    479    2017-07-16 11:24:00    2017-07-16 11:24:00
105331    33593    949    2017-07-16 23:24:00    2017-07-16 23:24:00
105332    33593    694    2017-07-16 11:21:00    2017-07-16 11:21:00
105333    33593    647    2017-07-16 11:32:00    2017-07-16 11:32:00
105334    33593    857    2017-07-16 15:12:00    2017-07-16 15:12:00
105335    33594    880    2017-07-16 11:23:00    2017-07-16 11:23:00
105336    33594    638    2017-07-16 21:29:00    2017-07-16 21:29:00
105337    33594    809    2017-07-16 05:00:00    2017-07-16 05:00:00
105338    33594    705    2017-07-16 21:10:00    2017-07-16 21:10:00
105339    33594    710    2017-07-16 02:42:00    2017-07-16 02:42:00
105340    33595    718    2017-07-16 09:47:00    2017-07-16 09:47:00
105341    33595    594    2017-07-16 11:06:00    2017-07-16 11:06:00
105342    33595    639    2017-07-16 09:30:00    2017-07-16 09:30:00
105343    33595    778    2017-07-16 07:08:00    2017-07-16 07:08:00
105344    33595    929    2017-07-16 15:46:00    2017-07-16 15:46:00
105345    33596    941    2017-07-16 17:18:00    2017-07-16 17:18:00
105346    33596    577    2017-07-16 09:39:00    2017-07-16 09:39:00
105347    33596    840    2017-07-16 10:24:00    2017-07-16 10:24:00
105348    33596    596    2017-07-16 09:11:00    2017-07-16 09:11:00
105349    33596    689    2017-07-16 01:28:00    2017-07-16 01:28:00
105350    33597    897    2017-07-16 14:37:00    2017-07-16 14:37:00
105351    33597    876    2017-07-16 13:38:00    2017-07-16 13:38:00
105352    33597    528    2017-07-16 16:46:00    2017-07-16 16:46:00
105353    33597    788    2017-07-16 16:33:00    2017-07-16 16:33:00
105354    33597    877    2017-07-16 01:24:00    2017-07-16 01:24:00
105355    33598    785    2017-07-16 13:34:00    2017-07-16 13:34:00
105356    33598    648    2017-07-16 09:40:00    2017-07-16 09:40:00
105357    33598    844    2017-07-16 14:06:00    2017-07-16 14:06:00
105358    33598    520    2017-07-16 23:19:00    2017-07-16 23:19:00
105359    33598    625    2017-07-16 01:30:00    2017-07-16 01:30:00
105360    33599    740    2017-07-16 08:49:00    2017-07-16 08:49:00
105361    33599    722    2017-07-16 18:38:00    2017-07-16 18:38:00
105362    33599    675    2017-07-16 16:20:00    2017-07-16 16:20:00
105363    33599    582    2017-07-16 17:34:00    2017-07-16 17:34:00
105364    33599    763    2017-07-16 16:52:00    2017-07-16 16:52:00
105365    33600    522    2017-07-16 12:23:00    2017-07-16 12:23:00
105366    33600    676    2017-07-16 15:44:00    2017-07-16 15:44:00
105367    33600    512    2017-07-16 12:32:00    2017-07-16 12:32:00
105368    33600    470    2017-07-16 19:25:00    2017-07-16 19:25:00
105369    33600    735    2017-07-16 09:42:00    2017-07-16 09:42:00
105370    33601    783    2017-07-16 16:28:00    2017-07-16 16:28:00
105371    33601    495    2017-07-16 10:34:00    2017-07-16 10:34:00
105372    33601    515    2017-07-16 21:16:00    2017-07-16 21:16:00
105373    33601    885    2017-07-16 11:53:00    2017-07-16 11:53:00
105374    33601    863    2017-07-16 23:26:00    2017-07-16 23:26:00
105375    33602    554    2017-07-16 10:34:00    2017-07-16 10:34:00
105376    33602    672    2017-07-16 04:35:00    2017-07-16 04:35:00
105377    33602    528    2017-07-16 19:43:00    2017-07-16 19:43:00
105378    33602    927    2017-07-16 08:43:00    2017-07-16 08:43:00
105379    33602    940    2017-07-16 22:40:00    2017-07-16 22:40:00
105380    33603    574    2017-07-16 20:17:00    2017-07-16 20:17:00
105381    33603    518    2017-07-16 01:41:00    2017-07-16 01:41:00
105382    33603    716    2017-07-16 07:59:00    2017-07-16 07:59:00
105383    33603    794    2017-07-16 23:56:00    2017-07-16 23:56:00
105384    33603    607    2017-07-16 08:20:00    2017-07-16 08:20:00
105385    33604    623    2017-07-16 08:42:00    2017-07-16 08:42:00
105386    33604    606    2017-07-16 23:39:00    2017-07-16 23:39:00
105387    33604    814    2017-07-16 16:28:00    2017-07-16 16:28:00
105388    33604    705    2017-07-16 22:28:00    2017-07-16 22:28:00
105389    33604    903    2017-07-16 21:22:00    2017-07-16 21:22:00
105390    33605    874    2017-07-16 21:00:00    2017-07-16 21:00:00
105391    33605    905    2017-07-16 07:40:00    2017-07-16 07:40:00
105392    33605    948    2017-07-16 03:52:00    2017-07-16 03:52:00
105393    33605    589    2017-07-16 10:33:00    2017-07-16 10:33:00
105394    33605    767    2017-07-16 02:29:00    2017-07-16 02:29:00
105395    33606    641    2017-07-17 16:13:00    2017-07-17 16:13:00
105396    33606    877    2017-07-17 15:38:00    2017-07-17 15:38:00
105397    33606    622    2017-07-17 11:02:00    2017-07-17 11:02:00
105398    33606    487    2017-07-17 03:14:00    2017-07-17 03:14:00
105399    33606    874    2017-07-17 10:57:00    2017-07-17 10:57:00
105400    33607    593    2017-07-17 14:27:00    2017-07-17 14:27:00
105401    33607    795    2017-07-17 03:36:00    2017-07-17 03:36:00
105402    33607    655    2017-07-17 04:10:00    2017-07-17 04:10:00
105403    33607    504    2017-07-17 04:49:00    2017-07-17 04:49:00
105404    33607    946    2017-07-17 08:26:00    2017-07-17 08:26:00
105405    33608    653    2017-07-17 03:25:00    2017-07-17 03:25:00
105406    33608    702    2017-07-17 06:42:00    2017-07-17 06:42:00
105407    33608    931    2017-07-17 08:21:00    2017-07-17 08:21:00
105408    33608    835    2017-07-17 17:20:00    2017-07-17 17:20:00
105409    33608    926    2017-07-17 20:26:00    2017-07-17 20:26:00
105410    33609    568    2017-07-17 16:56:00    2017-07-17 16:56:00
105411    33609    745    2017-07-17 18:14:00    2017-07-17 18:14:00
105412    33609    584    2017-07-17 18:10:00    2017-07-17 18:10:00
105413    33609    645    2017-07-17 23:19:00    2017-07-17 23:19:00
105414    33609    838    2017-07-17 09:44:00    2017-07-17 09:44:00
105415    33610    931    2017-07-17 07:31:00    2017-07-17 07:31:00
105416    33610    604    2017-07-17 19:41:00    2017-07-17 19:41:00
105417    33610    938    2017-07-17 03:03:00    2017-07-17 03:03:00
105418    33610    678    2017-07-17 22:56:00    2017-07-17 22:56:00
105419    33610    668    2017-07-17 08:53:00    2017-07-17 08:53:00
105420    33611    585    2017-07-17 02:53:00    2017-07-17 02:53:00
105421    33611    736    2017-07-17 13:05:00    2017-07-17 13:05:00
105422    33611    800    2017-07-17 15:57:00    2017-07-17 15:57:00
105423    33611    886    2017-07-17 16:11:00    2017-07-17 16:11:00
105424    33611    748    2017-07-17 06:12:00    2017-07-17 06:12:00
105425    33612    680    2017-07-17 08:13:00    2017-07-17 08:13:00
105426    33612    735    2017-07-17 04:20:00    2017-07-17 04:20:00
105427    33612    772    2017-07-17 04:30:00    2017-07-17 04:30:00
105428    33612    716    2017-07-17 01:04:00    2017-07-17 01:04:00
105429    33612    817    2017-07-17 17:35:00    2017-07-17 17:35:00
105430    33613    957    2017-07-17 19:52:00    2017-07-17 19:52:00
105431    33613    664    2017-07-17 06:58:00    2017-07-17 06:58:00
105432    33613    909    2017-07-17 06:01:00    2017-07-17 06:01:00
105433    33613    759    2017-07-17 09:52:00    2017-07-17 09:52:00
105434    33613    565    2017-07-17 05:04:00    2017-07-17 05:04:00
105435    33614    745    2017-07-17 19:45:00    2017-07-17 19:45:00
105436    33614    492    2017-07-17 03:39:00    2017-07-17 03:39:00
105437    33614    674    2017-07-17 01:32:00    2017-07-17 01:32:00
105438    33614    768    2017-07-17 07:31:00    2017-07-17 07:31:00
105439    33614    821    2017-07-17 09:57:00    2017-07-17 09:57:00
105440    33615    928    2017-07-17 19:19:00    2017-07-17 19:19:00
105441    33615    908    2017-07-17 23:08:00    2017-07-17 23:08:00
105442    33615    708    2017-07-17 01:22:00    2017-07-17 01:22:00
105443    33615    703    2017-07-17 10:58:00    2017-07-17 10:58:00
105444    33615    768    2017-07-17 10:53:00    2017-07-17 10:53:00
105445    33616    957    2017-07-17 13:06:00    2017-07-17 13:06:00
105446    33616    774    2017-07-17 19:55:00    2017-07-17 19:55:00
105447    33616    820    2017-07-17 22:50:00    2017-07-17 22:50:00
105448    33616    554    2017-07-17 18:10:00    2017-07-17 18:10:00
105449    33616    642    2017-07-17 15:00:00    2017-07-17 15:00:00
105450    33617    580    2017-07-17 08:53:00    2017-07-17 08:53:00
105451    33617    685    2017-07-17 11:03:00    2017-07-17 11:03:00
105452    33617    946    2017-07-17 18:00:00    2017-07-17 18:00:00
105453    33617    655    2017-07-17 03:56:00    2017-07-17 03:56:00
105454    33617    892    2017-07-17 10:49:00    2017-07-17 10:49:00
105455    33618    542    2017-07-17 22:37:00    2017-07-17 22:37:00
105456    33618    921    2017-07-17 03:49:00    2017-07-17 03:49:00
105457    33618    739    2017-07-17 06:01:00    2017-07-17 06:01:00
105458    33618    553    2017-07-17 06:00:00    2017-07-17 06:00:00
105459    33618    494    2017-07-17 09:13:00    2017-07-17 09:13:00
105460    33619    584    2017-07-17 13:03:00    2017-07-17 13:03:00
105461    33619    829    2017-07-17 04:12:00    2017-07-17 04:12:00
105462    33619    849    2017-07-17 02:49:00    2017-07-17 02:49:00
105463    33619    678    2017-07-17 10:14:00    2017-07-17 10:14:00
105464    33619    778    2017-07-17 01:42:00    2017-07-17 01:42:00
105465    33620    785    2017-07-17 05:42:00    2017-07-17 05:42:00
105466    33620    777    2017-07-17 22:18:00    2017-07-17 22:18:00
105467    33620    729    2017-07-17 03:24:00    2017-07-17 03:24:00
105468    33620    533    2017-07-17 15:39:00    2017-07-17 15:39:00
105469    33620    599    2017-07-17 18:10:00    2017-07-17 18:10:00
105470    33621    643    2017-07-17 01:06:00    2017-07-17 01:06:00
105471    33621    698    2017-07-17 04:10:00    2017-07-17 04:10:00
105472    33621    711    2017-07-17 03:39:00    2017-07-17 03:39:00
105473    33621    572    2017-07-17 22:16:00    2017-07-17 22:16:00
105474    33621    652    2017-07-17 21:00:00    2017-07-17 21:00:00
105475    33622    893    2017-07-17 14:06:00    2017-07-17 14:06:00
105476    33622    729    2017-07-17 20:56:00    2017-07-17 20:56:00
105477    33622    608    2017-07-17 04:40:00    2017-07-17 04:40:00
105478    33622    594    2017-07-17 22:12:00    2017-07-17 22:12:00
105479    33622    553    2017-07-17 16:19:00    2017-07-17 16:19:00
105480    33623    929    2017-07-17 17:14:00    2017-07-17 17:14:00
105481    33623    869    2017-07-17 08:20:00    2017-07-17 08:20:00
105482    33623    704    2017-07-17 05:08:00    2017-07-17 05:08:00
105483    33623    852    2017-07-17 08:17:00    2017-07-17 08:17:00
105484    33623    781    2017-07-17 06:34:00    2017-07-17 06:34:00
105485    33624    625    2017-07-17 05:01:00    2017-07-17 05:01:00
105486    33624    516    2017-07-17 04:11:00    2017-07-17 04:11:00
105487    33624    886    2017-07-17 14:04:00    2017-07-17 14:04:00
105488    33624    799    2017-07-17 11:53:00    2017-07-17 11:53:00
105489    33624    622    2017-07-17 15:08:00    2017-07-17 15:08:00
105490    33625    701    2017-07-17 11:08:00    2017-07-17 11:08:00
105491    33625    915    2017-07-17 09:03:00    2017-07-17 09:03:00
105492    33625    750    2017-07-17 10:27:00    2017-07-17 10:27:00
105493    33625    612    2017-07-17 01:51:00    2017-07-17 01:51:00
105494    33625    734    2017-07-17 12:55:00    2017-07-17 12:55:00
105495    33626    597    2017-07-18 03:01:00    2017-07-18 03:01:00
105496    33626    721    2017-07-18 05:54:00    2017-07-18 05:54:00
105497    33626    847    2017-07-18 19:56:00    2017-07-18 19:56:00
105498    33626    527    2017-07-18 03:58:00    2017-07-18 03:58:00
105499    33626    793    2017-07-18 11:07:00    2017-07-18 11:07:00
105500    33627    525    2017-07-18 07:02:00    2017-07-18 07:02:00
105501    33627    892    2017-07-18 16:39:00    2017-07-18 16:39:00
105502    33627    938    2017-07-18 12:39:00    2017-07-18 12:39:00
105503    33627    650    2017-07-18 06:31:00    2017-07-18 06:31:00
105504    33627    691    2017-07-18 22:59:00    2017-07-18 22:59:00
105505    33628    922    2017-07-18 09:25:00    2017-07-18 09:25:00
105506    33628    659    2017-07-18 16:02:00    2017-07-18 16:02:00
105507    33628    795    2017-07-18 21:41:00    2017-07-18 21:41:00
105508    33628    482    2017-07-18 16:14:00    2017-07-18 16:14:00
105509    33628    633    2017-07-18 05:55:00    2017-07-18 05:55:00
105510    33629    861    2017-07-18 11:29:00    2017-07-18 11:29:00
105511    33629    755    2017-07-18 23:51:00    2017-07-18 23:51:00
105512    33629    686    2017-07-18 12:18:00    2017-07-18 12:18:00
105513    33629    481    2017-07-18 14:00:00    2017-07-18 14:00:00
105514    33629    872    2017-07-18 11:20:00    2017-07-18 11:20:00
105515    33630    605    2017-07-18 11:03:00    2017-07-18 11:03:00
105516    33630    558    2017-07-18 06:26:00    2017-07-18 06:26:00
105517    33630    946    2017-07-18 09:50:00    2017-07-18 09:50:00
105518    33630    783    2017-07-18 08:26:00    2017-07-18 08:26:00
105519    33630    624    2017-07-18 16:24:00    2017-07-18 16:24:00
105520    33631    657    2017-07-18 04:14:00    2017-07-18 04:14:00
105521    33631    712    2017-07-18 05:56:00    2017-07-18 05:56:00
105522    33631    635    2017-07-18 12:04:00    2017-07-18 12:04:00
105523    33631    658    2017-07-18 13:10:00    2017-07-18 13:10:00
105524    33631    901    2017-07-18 14:08:00    2017-07-18 14:08:00
105525    33632    847    2017-07-18 09:33:00    2017-07-18 09:33:00
105526    33632    899    2017-07-18 13:53:00    2017-07-18 13:53:00
105527    33632    609    2017-07-18 12:32:00    2017-07-18 12:32:00
105528    33632    674    2017-07-18 07:55:00    2017-07-18 07:55:00
105529    33632    671    2017-07-18 17:01:00    2017-07-18 17:01:00
105530    33633    590    2017-07-18 14:02:00    2017-07-18 14:02:00
105531    33633    867    2017-07-18 05:18:00    2017-07-18 05:18:00
105532    33633    720    2017-07-18 09:06:00    2017-07-18 09:06:00
105533    33633    939    2017-07-18 18:17:00    2017-07-18 18:17:00
105534    33633    553    2017-07-18 12:28:00    2017-07-18 12:28:00
105535    33634    657    2017-07-18 07:28:00    2017-07-18 07:28:00
105536    33634    952    2017-07-18 09:17:00    2017-07-18 09:17:00
105537    33634    944    2017-07-18 02:03:00    2017-07-18 02:03:00
105538    33634    892    2017-07-18 03:07:00    2017-07-18 03:07:00
105539    33634    812    2017-07-18 20:38:00    2017-07-18 20:38:00
105540    33635    711    2017-07-18 06:50:00    2017-07-18 06:50:00
105541    33635    804    2017-07-18 17:20:00    2017-07-18 17:20:00
105542    33635    622    2017-07-18 19:03:00    2017-07-18 19:03:00
105543    33635    592    2017-07-18 05:19:00    2017-07-18 05:19:00
105544    33635    753    2017-07-18 16:08:00    2017-07-18 16:08:00
105545    33636    650    2017-07-18 22:32:00    2017-07-18 22:32:00
105546    33636    654    2017-07-18 05:49:00    2017-07-18 05:49:00
105547    33636    471    2017-07-18 23:08:00    2017-07-18 23:08:00
105548    33636    824    2017-07-18 18:38:00    2017-07-18 18:38:00
105549    33636    721    2017-07-18 16:26:00    2017-07-18 16:26:00
105550    33637    880    2017-07-18 14:45:00    2017-07-18 14:45:00
105551    33637    529    2017-07-18 09:22:00    2017-07-18 09:22:00
105552    33637    809    2017-07-18 06:24:00    2017-07-18 06:24:00
105553    33637    921    2017-07-18 12:52:00    2017-07-18 12:52:00
105554    33637    540    2017-07-18 13:39:00    2017-07-18 13:39:00
105555    33638    905    2017-07-18 20:16:00    2017-07-18 20:16:00
105556    33638    690    2017-07-18 04:45:00    2017-07-18 04:45:00
105557    33638    952    2017-07-18 22:00:00    2017-07-18 22:00:00
105558    33638    581    2017-07-18 13:07:00    2017-07-18 13:07:00
105559    33638    481    2017-07-18 17:27:00    2017-07-18 17:27:00
105560    33639    884    2017-07-18 10:46:00    2017-07-18 10:46:00
105561    33639    540    2017-07-18 10:32:00    2017-07-18 10:32:00
105562    33639    733    2017-07-18 20:28:00    2017-07-18 20:28:00
105563    33639    630    2017-07-18 21:10:00    2017-07-18 21:10:00
105564    33639    567    2017-07-18 08:30:00    2017-07-18 08:30:00
105565    33640    923    2017-07-18 23:00:00    2017-07-18 23:00:00
105566    33640    735    2017-07-18 18:18:00    2017-07-18 18:18:00
105567    33640    674    2017-07-18 22:30:00    2017-07-18 22:30:00
105568    33640    764    2017-07-18 05:20:00    2017-07-18 05:20:00
105569    33640    589    2017-07-18 13:56:00    2017-07-18 13:56:00
105570    33641    597    2017-07-18 03:18:00    2017-07-18 03:18:00
105571    33641    537    2017-07-18 23:46:00    2017-07-18 23:46:00
105572    33641    585    2017-07-18 03:18:00    2017-07-18 03:18:00
105573    33641    772    2017-07-18 17:09:00    2017-07-18 17:09:00
105574    33641    620    2017-07-18 02:15:00    2017-07-18 02:15:00
105575    33642    638    2017-07-18 03:17:00    2017-07-18 03:17:00
105576    33642    799    2017-07-18 09:15:00    2017-07-18 09:15:00
105577    33642    734    2017-07-18 23:57:00    2017-07-18 23:57:00
105578    33642    629    2017-07-18 20:53:00    2017-07-18 20:53:00
105579    33642    868    2017-07-18 08:53:00    2017-07-18 08:53:00
105580    33643    885    2017-07-18 06:56:00    2017-07-18 06:56:00
105581    33643    900    2017-07-18 04:18:00    2017-07-18 04:18:00
105582    33643    920    2017-07-18 03:48:00    2017-07-18 03:48:00
105583    33643    903    2017-07-18 22:37:00    2017-07-18 22:37:00
105584    33643    537    2017-07-18 09:05:00    2017-07-18 09:05:00
105585    33644    572    2017-07-18 02:40:00    2017-07-18 02:40:00
105586    33644    552    2017-07-18 17:53:00    2017-07-18 17:53:00
105587    33644    939    2017-07-18 07:27:00    2017-07-18 07:27:00
105588    33644    585    2017-07-18 07:57:00    2017-07-18 07:57:00
105589    33644    889    2017-07-18 19:09:00    2017-07-18 19:09:00
105590    33645    487    2017-07-18 18:32:00    2017-07-18 18:32:00
105591    33645    728    2017-07-18 01:51:00    2017-07-18 01:51:00
105592    33645    766    2017-07-18 15:42:00    2017-07-18 15:42:00
105593    33645    544    2017-07-18 03:21:00    2017-07-18 03:21:00
105594    33645    779    2017-07-18 22:15:00    2017-07-18 22:15:00
105595    33646    660    2017-07-18 20:21:00    2017-07-18 20:21:00
105596    33646    493    2017-07-18 09:56:00    2017-07-18 09:56:00
105597    33646    705    2017-07-18 12:56:00    2017-07-18 12:56:00
105598    33646    857    2017-07-18 17:16:00    2017-07-18 17:16:00
105599    33646    733    2017-07-18 23:00:00    2017-07-18 23:00:00
105600    33647    843    2017-07-18 04:30:00    2017-07-18 04:30:00
105601    33647    847    2017-07-18 04:51:00    2017-07-18 04:51:00
105602    33647    679    2017-07-18 11:38:00    2017-07-18 11:38:00
105603    33647    744    2017-07-18 15:05:00    2017-07-18 15:05:00
105604    33647    527    2017-07-18 15:05:00    2017-07-18 15:05:00
105605    33648    848    2017-07-18 10:31:00    2017-07-18 10:31:00
105606    33648    894    2017-07-18 23:25:00    2017-07-18 23:25:00
105607    33648    730    2017-07-18 12:57:00    2017-07-18 12:57:00
105608    33648    520    2017-07-18 06:26:00    2017-07-18 06:26:00
105609    33648    624    2017-07-18 19:17:00    2017-07-18 19:17:00
105610    33649    752    2017-07-18 23:25:00    2017-07-18 23:25:00
105611    33649    523    2017-07-18 08:51:00    2017-07-18 08:51:00
105612    33649    789    2017-07-18 05:06:00    2017-07-18 05:06:00
105613    33649    594    2017-07-18 02:20:00    2017-07-18 02:20:00
105614    33649    551    2017-07-18 11:10:00    2017-07-18 11:10:00
105615    33650    502    2017-07-18 20:33:00    2017-07-18 20:33:00
105616    33650    861    2017-07-18 12:35:00    2017-07-18 12:35:00
105617    33650    644    2017-07-18 20:25:00    2017-07-18 20:25:00
105618    33650    571    2017-07-18 07:58:00    2017-07-18 07:58:00
105619    33650    959    2017-07-18 14:08:00    2017-07-18 14:08:00
105620    33651    651    2017-07-18 22:38:00    2017-07-18 22:38:00
105621    33651    469    2017-07-18 14:33:00    2017-07-18 14:33:00
105622    33651    658    2017-07-18 14:33:00    2017-07-18 14:33:00
105623    33651    743    2017-07-18 10:45:00    2017-07-18 10:45:00
105624    33651    860    2017-07-18 14:36:00    2017-07-18 14:36:00
105625    33652    707    2017-07-18 16:49:00    2017-07-18 16:49:00
105626    33652    735    2017-07-18 16:49:00    2017-07-18 16:49:00
105627    33652    941    2017-07-18 09:25:00    2017-07-18 09:25:00
105628    33652    953    2017-07-18 10:38:00    2017-07-18 10:38:00
105629    33652    481    2017-07-18 02:24:00    2017-07-18 02:24:00
105630    33653    939    2017-07-18 21:54:00    2017-07-18 21:54:00
105631    33653    482    2017-07-18 10:31:00    2017-07-18 10:31:00
105632    33653    521    2017-07-18 15:20:00    2017-07-18 15:20:00
105633    33653    819    2017-07-18 04:35:00    2017-07-18 04:35:00
105634    33653    678    2017-07-18 12:55:00    2017-07-18 12:55:00
105635    33654    515    2017-07-18 23:02:00    2017-07-18 23:02:00
105636    33654    747    2017-07-18 19:47:00    2017-07-18 19:47:00
105637    33654    611    2017-07-18 11:44:00    2017-07-18 11:44:00
105638    33654    731    2017-07-18 21:12:00    2017-07-18 21:12:00
105639    33654    898    2017-07-18 05:26:00    2017-07-18 05:26:00
105640    33655    599    2017-07-18 14:29:00    2017-07-18 14:29:00
105641    33655    480    2017-07-18 03:19:00    2017-07-18 03:19:00
105642    33655    585    2017-07-18 11:10:00    2017-07-18 11:10:00
105643    33655    776    2017-07-18 22:20:00    2017-07-18 22:20:00
105644    33655    484    2017-07-18 06:19:00    2017-07-18 06:19:00
105645    33656    569    2017-07-18 16:56:00    2017-07-18 16:56:00
105646    33656    922    2017-07-18 11:25:00    2017-07-18 11:25:00
105647    33656    835    2017-07-18 17:46:00    2017-07-18 17:46:00
105648    33656    712    2017-07-18 13:40:00    2017-07-18 13:40:00
105649    33656    928    2017-07-18 14:13:00    2017-07-18 14:13:00
105650    33657    761    2017-07-18 03:00:00    2017-07-18 03:00:00
105651    33657    571    2017-07-18 09:18:00    2017-07-18 09:18:00
105652    33657    791    2017-07-18 08:22:00    2017-07-18 08:22:00
105653    33657    577    2017-07-18 04:07:00    2017-07-18 04:07:00
105654    33657    699    2017-07-18 21:09:00    2017-07-18 21:09:00
105655    33658    885    2017-07-18 03:26:00    2017-07-18 03:26:00
105656    33658    659    2017-07-18 05:51:00    2017-07-18 05:51:00
105657    33658    699    2017-07-18 09:14:00    2017-07-18 09:14:00
105658    33658    790    2017-07-18 22:00:00    2017-07-18 22:00:00
105659    33658    692    2017-07-18 18:31:00    2017-07-18 18:31:00
105660    33659    643    2017-07-18 16:32:00    2017-07-18 16:32:00
105661    33659    668    2017-07-18 07:17:00    2017-07-18 07:17:00
105662    33659    950    2017-07-18 17:33:00    2017-07-18 17:33:00
105663    33659    687    2017-07-18 10:38:00    2017-07-18 10:38:00
105664    33659    774    2017-07-18 12:49:00    2017-07-18 12:49:00
105665    33660    670    2017-07-18 21:28:00    2017-07-18 21:28:00
105666    33660    513    2017-07-18 02:32:00    2017-07-18 02:32:00
105667    33660    668    2017-07-18 23:08:00    2017-07-18 23:08:00
105668    33660    672    2017-07-18 20:46:00    2017-07-18 20:46:00
105669    33660    780    2017-07-18 03:55:00    2017-07-18 03:55:00
105670    33661    795    2017-07-18 14:31:00    2017-07-18 14:31:00
105671    33661    771    2017-07-18 10:57:00    2017-07-18 10:57:00
105672    33661    672    2017-07-18 23:52:00    2017-07-18 23:52:00
105673    33661    478    2017-07-18 01:28:00    2017-07-18 01:28:00
105674    33661    784    2017-07-18 12:34:00    2017-07-18 12:34:00
105675    33662    509    2017-07-18 10:32:00    2017-07-18 10:32:00
105676    33662    895    2017-07-18 22:22:00    2017-07-18 22:22:00
105677    33662    767    2017-07-18 01:47:00    2017-07-18 01:47:00
105678    33662    472    2017-07-18 18:06:00    2017-07-18 18:06:00
105679    33662    680    2017-07-18 15:33:00    2017-07-18 15:33:00
105680    33663    737    2017-07-18 19:14:00    2017-07-18 19:14:00
105681    33663    577    2017-07-18 01:08:00    2017-07-18 01:08:00
105682    33663    513    2017-07-18 23:08:00    2017-07-18 23:08:00
105683    33663    554    2017-07-18 02:31:00    2017-07-18 02:31:00
105684    33663    623    2017-07-18 16:58:00    2017-07-18 16:58:00
105685    33664    605    2017-07-18 09:35:00    2017-07-18 09:35:00
105686    33664    483    2017-07-18 14:29:00    2017-07-18 14:29:00
105687    33664    552    2017-07-18 10:03:00    2017-07-18 10:03:00
105688    33664    614    2017-07-18 05:06:00    2017-07-18 05:06:00
105689    33664    661    2017-07-18 13:04:00    2017-07-18 13:04:00
105690    33665    880    2017-07-18 21:28:00    2017-07-18 21:28:00
105691    33665    484    2017-07-18 17:20:00    2017-07-18 17:20:00
105692    33665    546    2017-07-18 04:01:00    2017-07-18 04:01:00
105693    33665    794    2017-07-18 06:12:00    2017-07-18 06:12:00
105694    33665    553    2017-07-18 21:14:00    2017-07-18 21:14:00
105695    33666    556    2017-07-18 18:39:00    2017-07-18 18:39:00
105696    33666    946    2017-07-18 19:37:00    2017-07-18 19:37:00
105697    33666    669    2017-07-18 04:00:00    2017-07-18 04:00:00
105698    33666    566    2017-07-18 10:54:00    2017-07-18 10:54:00
105699    33666    840    2017-07-18 17:07:00    2017-07-18 17:07:00
105700    33667    697    2017-07-18 19:11:00    2017-07-18 19:11:00
105701    33667    585    2017-07-18 17:00:00    2017-07-18 17:00:00
105702    33667    702    2017-07-18 03:50:00    2017-07-18 03:50:00
105703    33667    705    2017-07-18 02:20:00    2017-07-18 02:20:00
105704    33667    698    2017-07-18 21:10:00    2017-07-18 21:10:00
105705    33668    910    2017-07-18 07:16:00    2017-07-18 07:16:00
105706    33668    862    2017-07-18 18:24:00    2017-07-18 18:24:00
105707    33668    778    2017-07-18 20:11:00    2017-07-18 20:11:00
105708    33668    876    2017-07-18 04:45:00    2017-07-18 04:45:00
105709    33668    777    2017-07-18 04:18:00    2017-07-18 04:18:00
105710    33669    957    2017-07-18 03:09:00    2017-07-18 03:09:00
105711    33669    619    2017-07-18 05:26:00    2017-07-18 05:26:00
105712    33669    659    2017-07-18 10:53:00    2017-07-18 10:53:00
105713    33669    555    2017-07-18 13:34:00    2017-07-18 13:34:00
105714    33669    945    2017-07-18 21:46:00    2017-07-18 21:46:00
105715    33670    894    2017-07-18 18:01:00    2017-07-18 18:01:00
105716    33670    854    2017-07-18 06:09:00    2017-07-18 06:09:00
105717    33670    469    2017-07-18 19:31:00    2017-07-18 19:31:00
105718    33670    692    2017-07-18 21:02:00    2017-07-18 21:02:00
105719    33670    697    2017-07-18 03:54:00    2017-07-18 03:54:00
105720    33671    866    2017-07-18 08:41:00    2017-07-18 08:41:00
105721    33671    567    2017-07-18 03:14:00    2017-07-18 03:14:00
105722    33671    566    2017-07-18 12:43:00    2017-07-18 12:43:00
105723    33671    864    2017-07-18 16:48:00    2017-07-18 16:48:00
105724    33671    739    2017-07-18 20:24:00    2017-07-18 20:24:00
105725    33672    799    2017-07-18 17:44:00    2017-07-18 17:44:00
105726    33672    703    2017-07-18 03:24:00    2017-07-18 03:24:00
105727    33672    750    2017-07-18 13:20:00    2017-07-18 13:20:00
105728    33672    766    2017-07-18 11:00:00    2017-07-18 11:00:00
105729    33672    720    2017-07-18 16:53:00    2017-07-18 16:53:00
105730    33673    559    2017-07-19 15:39:00    2017-07-19 15:39:00
105731    33673    783    2017-07-19 14:16:00    2017-07-19 14:16:00
105732    33673    745    2017-07-19 20:14:00    2017-07-19 20:14:00
105733    33673    846    2017-07-19 02:36:00    2017-07-19 02:36:00
105734    33673    738    2017-07-19 03:32:00    2017-07-19 03:32:00
105735    33674    726    2017-07-19 16:00:00    2017-07-19 16:00:00
105736    33674    916    2017-07-19 10:08:00    2017-07-19 10:08:00
105737    33674    679    2017-07-19 01:10:00    2017-07-19 01:10:00
105738    33674    862    2017-07-19 18:59:00    2017-07-19 18:59:00
105739    33674    480    2017-07-19 12:26:00    2017-07-19 12:26:00
105740    33675    946    2017-07-19 18:22:00    2017-07-19 18:22:00
105741    33675    865    2017-07-19 02:04:00    2017-07-19 02:04:00
105742    33675    745    2017-07-19 15:45:00    2017-07-19 15:45:00
105743    33675    620    2017-07-19 06:36:00    2017-07-19 06:36:00
105744    33675    838    2017-07-19 15:00:00    2017-07-19 15:00:00
105745    33676    833    2017-07-19 22:28:00    2017-07-19 22:28:00
105746    33676    564    2017-07-19 11:07:00    2017-07-19 11:07:00
105747    33676    463    2017-07-19 15:02:00    2017-07-19 15:02:00
105748    33676    547    2017-07-19 08:20:00    2017-07-19 08:20:00
105749    33676    773    2017-07-19 23:52:00    2017-07-19 23:52:00
105750    33677    726    2017-07-19 04:18:00    2017-07-19 04:18:00
105751    33677    538    2017-07-19 04:34:00    2017-07-19 04:34:00
105752    33677    943    2017-07-19 12:10:00    2017-07-19 12:10:00
105753    33677    812    2017-07-19 10:19:00    2017-07-19 10:19:00
105754    33677    955    2017-07-19 21:35:00    2017-07-19 21:35:00
105755    33678    760    2017-07-19 23:37:00    2017-07-19 23:37:00
105756    33678    891    2017-07-19 01:41:00    2017-07-19 01:41:00
105757    33678    629    2017-07-19 22:11:00    2017-07-19 22:11:00
105758    33678    733    2017-07-19 07:22:00    2017-07-19 07:22:00
105759    33678    706    2017-07-19 11:58:00    2017-07-19 11:58:00
105760    33679    913    2017-07-19 14:31:00    2017-07-19 14:31:00
105761    33679    666    2017-07-19 18:18:00    2017-07-19 18:18:00
105762    33679    472    2017-07-19 12:59:00    2017-07-19 12:59:00
105763    33679    919    2017-07-19 01:24:00    2017-07-19 01:24:00
105764    33679    525    2017-07-19 16:38:00    2017-07-19 16:38:00
105765    33680    613    2017-07-19 10:44:00    2017-07-19 10:44:00
105766    33680    882    2017-07-19 17:34:00    2017-07-19 17:34:00
105767    33680    688    2017-07-19 18:53:00    2017-07-19 18:53:00
105768    33680    615    2017-07-19 06:35:00    2017-07-19 06:35:00
105769    33680    521    2017-07-19 21:07:00    2017-07-19 21:07:00
105770    33681    488    2017-07-19 22:02:00    2017-07-19 22:02:00
105771    33681    655    2017-07-19 06:34:00    2017-07-19 06:34:00
105772    33681    671    2017-07-19 09:26:00    2017-07-19 09:26:00
105773    33681    559    2017-07-19 10:27:00    2017-07-19 10:27:00
105774    33681    633    2017-07-19 11:19:00    2017-07-19 11:19:00
105775    33682    947    2017-07-19 21:33:00    2017-07-19 21:33:00
105776    33682    474    2017-07-19 22:02:00    2017-07-19 22:02:00
105777    33682    950    2017-07-19 04:59:00    2017-07-19 04:59:00
105778    33682    829    2017-07-19 14:26:00    2017-07-19 14:26:00
105779    33682    960    2017-07-19 16:50:00    2017-07-19 16:50:00
105780    33683    675    2017-07-19 08:35:00    2017-07-19 08:35:00
105781    33683    534    2017-07-19 02:54:00    2017-07-19 02:54:00
105782    33683    899    2017-07-19 05:48:00    2017-07-19 05:48:00
105783    33683    515    2017-07-19 13:02:00    2017-07-19 13:02:00
105784    33683    560    2017-07-19 14:39:00    2017-07-19 14:39:00
105785    33684    481    2017-07-19 22:34:00    2017-07-19 22:34:00
105786    33684    585    2017-07-19 21:42:00    2017-07-19 21:42:00
105787    33684    510    2017-07-19 02:38:00    2017-07-19 02:38:00
105788    33684    841    2017-07-19 11:25:00    2017-07-19 11:25:00
105789    33684    780    2017-07-19 23:43:00    2017-07-19 23:43:00
105790    33685    504    2017-07-19 14:29:00    2017-07-19 14:29:00
105791    33685    593    2017-07-19 18:48:00    2017-07-19 18:48:00
105792    33685    612    2017-07-19 11:37:00    2017-07-19 11:37:00
105793    33685    675    2017-07-19 08:17:00    2017-07-19 08:17:00
105794    33685    593    2017-07-19 02:11:00    2017-07-19 02:11:00
105795    33686    487    2017-07-19 22:59:00    2017-07-19 22:59:00
105796    33686    944    2017-07-19 09:17:00    2017-07-19 09:17:00
105797    33686    608    2017-07-19 13:52:00    2017-07-19 13:52:00
105798    33686    793    2017-07-19 10:11:00    2017-07-19 10:11:00
105799    33686    758    2017-07-19 22:32:00    2017-07-19 22:32:00
105800    33687    505    2017-07-19 11:07:00    2017-07-19 11:07:00
105801    33687    608    2017-07-19 16:52:00    2017-07-19 16:52:00
105802    33687    635    2017-07-19 16:25:00    2017-07-19 16:25:00
105803    33687    583    2017-07-19 08:05:00    2017-07-19 08:05:00
105804    33687    483    2017-07-19 19:39:00    2017-07-19 19:39:00
105805    33688    899    2017-07-19 06:48:00    2017-07-19 06:48:00
105806    33688    465    2017-07-19 15:20:00    2017-07-19 15:20:00
105807    33688    574    2017-07-19 18:46:00    2017-07-19 18:46:00
105808    33688    733    2017-07-19 13:42:00    2017-07-19 13:42:00
105809    33688    917    2017-07-19 09:01:00    2017-07-19 09:01:00
105810    33689    467    2017-07-19 02:08:00    2017-07-19 02:08:00
105811    33689    476    2017-07-19 21:14:00    2017-07-19 21:14:00
105812    33689    635    2017-07-19 18:08:00    2017-07-19 18:08:00
105813    33689    551    2017-07-19 01:39:00    2017-07-19 01:39:00
105814    33689    698    2017-07-19 19:01:00    2017-07-19 19:01:00
105815    33690    634    2017-07-19 17:31:00    2017-07-19 17:31:00
105816    33690    811    2017-07-19 04:14:00    2017-07-19 04:14:00
105817    33690    772    2017-07-19 10:24:00    2017-07-19 10:24:00
105818    33690    511    2017-07-19 05:05:00    2017-07-19 05:05:00
105819    33690    530    2017-07-19 04:31:00    2017-07-19 04:31:00
105820    33691    569    2017-07-19 05:17:00    2017-07-19 05:17:00
105821    33691    796    2017-07-19 12:45:00    2017-07-19 12:45:00
105822    33691    525    2017-07-19 19:38:00    2017-07-19 19:38:00
105823    33691    635    2017-07-19 15:21:00    2017-07-19 15:21:00
105824    33691    504    2017-07-19 19:42:00    2017-07-19 19:42:00
105825    33692    862    2017-07-19 14:17:00    2017-07-19 14:17:00
105826    33692    914    2017-07-19 03:12:00    2017-07-19 03:12:00
105827    33692    599    2017-07-19 11:38:00    2017-07-19 11:38:00
105828    33692    823    2017-07-19 07:52:00    2017-07-19 07:52:00
105829    33692    784    2017-07-19 06:13:00    2017-07-19 06:13:00
105830    33693    598    2017-07-19 13:06:00    2017-07-19 13:06:00
105831    33693    892    2017-07-19 01:53:00    2017-07-19 01:53:00
105832    33693    875    2017-07-19 20:22:00    2017-07-19 20:22:00
105833    33693    517    2017-07-19 23:39:00    2017-07-19 23:39:00
105834    33693    867    2017-07-19 16:35:00    2017-07-19 16:35:00
105835    33694    768    2017-07-19 13:00:00    2017-07-19 13:00:00
105836    33694    901    2017-07-19 18:48:00    2017-07-19 18:48:00
105837    33694    695    2017-07-19 04:56:00    2017-07-19 04:56:00
105838    33694    650    2017-07-19 08:31:00    2017-07-19 08:31:00
105839    33694    766    2017-07-19 05:56:00    2017-07-19 05:56:00
105840    33695    819    2017-07-19 01:51:00    2017-07-19 01:51:00
105841    33695    626    2017-07-19 16:01:00    2017-07-19 16:01:00
105842    33695    846    2017-07-19 18:20:00    2017-07-19 18:20:00
105843    33695    862    2017-07-19 18:23:00    2017-07-19 18:23:00
105844    33695    499    2017-07-19 11:03:00    2017-07-19 11:03:00
105845    33696    615    2017-07-19 11:49:00    2017-07-19 11:49:00
105846    33696    830    2017-07-19 06:06:00    2017-07-19 06:06:00
105847    33696    637    2017-07-19 14:54:00    2017-07-19 14:54:00
105848    33696    540    2017-07-19 09:55:00    2017-07-19 09:55:00
105849    33696    827    2017-07-19 03:14:00    2017-07-19 03:14:00
105850    33697    501    2017-07-19 15:37:00    2017-07-19 15:37:00
105851    33697    711    2017-07-19 20:46:00    2017-07-19 20:46:00
105852    33697    837    2017-07-19 08:45:00    2017-07-19 08:45:00
105853    33697    825    2017-07-19 17:26:00    2017-07-19 17:26:00
105854    33697    847    2017-07-19 08:58:00    2017-07-19 08:58:00
105855    33698    839    2017-07-19 17:30:00    2017-07-19 17:30:00
105856    33698    595    2017-07-19 10:11:00    2017-07-19 10:11:00
105857    33698    616    2017-07-19 01:55:00    2017-07-19 01:55:00
105858    33698    489    2017-07-19 12:28:00    2017-07-19 12:28:00
105859    33698    947    2017-07-19 10:34:00    2017-07-19 10:34:00
105860    33699    601    2017-07-19 20:45:00    2017-07-19 20:45:00
105861    33699    752    2017-07-19 20:49:00    2017-07-19 20:49:00
105862    33699    943    2017-07-19 16:22:00    2017-07-19 16:22:00
105863    33699    722    2017-07-19 09:38:00    2017-07-19 09:38:00
105864    33699    491    2017-07-19 13:30:00    2017-07-19 13:30:00
105865    33700    840    2017-07-19 21:28:00    2017-07-19 21:28:00
105866    33700    630    2017-07-19 01:01:00    2017-07-19 01:01:00
105867    33700    507    2017-07-19 08:11:00    2017-07-19 08:11:00
105868    33700    933    2017-07-19 23:40:00    2017-07-19 23:40:00
105869    33700    488    2017-07-19 16:35:00    2017-07-19 16:35:00
105870    33701    788    2017-07-19 05:56:00    2017-07-19 05:56:00
105871    33701    612    2017-07-19 14:53:00    2017-07-19 14:53:00
105872    33701    911    2017-07-19 09:07:00    2017-07-19 09:07:00
105873    33701    603    2017-07-19 02:35:00    2017-07-19 02:35:00
105874    33701    549    2017-07-19 02:48:00    2017-07-19 02:48:00
105875    33702    812    2017-07-19 16:20:00    2017-07-19 16:20:00
105876    33702    581    2017-07-19 13:56:00    2017-07-19 13:56:00
105877    33702    899    2017-07-19 07:27:00    2017-07-19 07:27:00
105878    33702    639    2017-07-19 15:10:00    2017-07-19 15:10:00
105879    33702    625    2017-07-19 22:33:00    2017-07-19 22:33:00
105880    33703    953    2017-07-19 17:51:00    2017-07-19 17:51:00
105881    33703    834    2017-07-19 17:09:00    2017-07-19 17:09:00
105882    33703    941    2017-07-19 18:19:00    2017-07-19 18:19:00
105883    33703    721    2017-07-19 10:17:00    2017-07-19 10:17:00
105884    33703    911    2017-07-19 10:00:00    2017-07-19 10:00:00
105885    33704    851    2017-07-19 21:42:00    2017-07-19 21:42:00
105886    33704    899    2017-07-19 01:54:00    2017-07-19 01:54:00
105887    33704    517    2017-07-19 11:27:00    2017-07-19 11:27:00
105888    33704    577    2017-07-19 19:10:00    2017-07-19 19:10:00
105889    33704    695    2017-07-19 04:59:00    2017-07-19 04:59:00
105890    33705    933    2017-07-19 22:58:00    2017-07-19 22:58:00
105891    33705    815    2017-07-19 10:58:00    2017-07-19 10:58:00
105892    33705    595    2017-07-19 11:38:00    2017-07-19 11:38:00
105893    33705    766    2017-07-19 22:42:00    2017-07-19 22:42:00
105894    33705    528    2017-07-19 05:31:00    2017-07-19 05:31:00
105895    33706    711    2017-07-19 05:38:00    2017-07-19 05:38:00
105896    33706    546    2017-07-19 22:21:00    2017-07-19 22:21:00
105897    33706    800    2017-07-19 22:40:00    2017-07-19 22:40:00
105898    33706    959    2017-07-19 22:26:00    2017-07-19 22:26:00
105899    33706    554    2017-07-19 06:42:00    2017-07-19 06:42:00
105900    33707    798    2017-07-19 02:56:00    2017-07-19 02:56:00
105901    33707    486    2017-07-19 14:27:00    2017-07-19 14:27:00
105902    33707    828    2017-07-19 23:54:00    2017-07-19 23:54:00
105903    33707    764    2017-07-19 12:07:00    2017-07-19 12:07:00
105904    33707    819    2017-07-19 09:35:00    2017-07-19 09:35:00
105905    33708    470    2017-07-19 13:00:00    2017-07-19 13:00:00
105906    33708    591    2017-07-19 14:14:00    2017-07-19 14:14:00
105907    33708    776    2017-07-19 14:47:00    2017-07-19 14:47:00
105908    33708    667    2017-07-19 11:50:00    2017-07-19 11:50:00
105909    33708    473    2017-07-19 12:16:00    2017-07-19 12:16:00
105910    33709    940    2017-07-19 22:39:00    2017-07-19 22:39:00
105911    33709    619    2017-07-19 05:11:00    2017-07-19 05:11:00
105912    33709    543    2017-07-19 03:00:00    2017-07-19 03:00:00
105913    33709    502    2017-07-19 08:54:00    2017-07-19 08:54:00
105914    33709    546    2017-07-19 04:27:00    2017-07-19 04:27:00
105915    33710    812    2017-07-19 23:18:00    2017-07-19 23:18:00
105916    33710    604    2017-07-19 04:30:00    2017-07-19 04:30:00
105917    33710    658    2017-07-19 01:45:00    2017-07-19 01:45:00
105918    33710    771    2017-07-19 02:16:00    2017-07-19 02:16:00
105919    33710    771    2017-07-19 05:30:00    2017-07-19 05:30:00
105920    33711    720    2017-07-19 18:38:00    2017-07-19 18:38:00
105921    33711    811    2017-07-19 09:37:00    2017-07-19 09:37:00
105922    33711    943    2017-07-19 03:04:00    2017-07-19 03:04:00
105923    33711    605    2017-07-19 18:00:00    2017-07-19 18:00:00
105924    33711    767    2017-07-19 03:46:00    2017-07-19 03:46:00
105925    33712    689    2017-07-19 01:48:00    2017-07-19 01:48:00
105926    33712    836    2017-07-19 04:04:00    2017-07-19 04:04:00
105927    33712    614    2017-07-19 14:41:00    2017-07-19 14:41:00
105928    33712    799    2017-07-19 14:24:00    2017-07-19 14:24:00
105929    33712    464    2017-07-19 02:41:00    2017-07-19 02:41:00
105930    33713    910    2017-07-19 23:04:00    2017-07-19 23:04:00
105931    33713    506    2017-07-19 15:22:00    2017-07-19 15:22:00
105932    33713    747    2017-07-19 07:17:00    2017-07-19 07:17:00
105933    33713    781    2017-07-19 23:43:00    2017-07-19 23:43:00
105934    33713    507    2017-07-19 11:11:00    2017-07-19 11:11:00
105935    33714    929    2017-07-19 16:37:00    2017-07-19 16:37:00
105936    33714    592    2017-07-19 03:00:00    2017-07-19 03:00:00
105937    33714    706    2017-07-19 18:20:00    2017-07-19 18:20:00
105938    33714    680    2017-07-19 05:05:00    2017-07-19 05:05:00
105939    33714    513    2017-07-19 17:02:00    2017-07-19 17:02:00
105940    33715    831    2017-07-19 17:34:00    2017-07-19 17:34:00
105941    33715    516    2017-07-19 06:47:00    2017-07-19 06:47:00
105942    33715    865    2017-07-19 11:02:00    2017-07-19 11:02:00
105943    33715    678    2017-07-19 01:24:00    2017-07-19 01:24:00
105944    33715    615    2017-07-19 18:35:00    2017-07-19 18:35:00
105945    33716    743    2017-07-19 03:25:00    2017-07-19 03:25:00
105946    33716    879    2017-07-19 14:58:00    2017-07-19 14:58:00
105947    33716    693    2017-07-19 05:34:00    2017-07-19 05:34:00
105948    33716    769    2017-07-19 19:10:00    2017-07-19 19:10:00
105949    33716    601    2017-07-19 11:27:00    2017-07-19 11:27:00
105950    33717    529    2017-07-19 22:34:00    2017-07-19 22:34:00
105951    33717    922    2017-07-19 12:34:00    2017-07-19 12:34:00
105952    33717    932    2017-07-19 01:36:00    2017-07-19 01:36:00
105953    33717    899    2017-07-19 15:00:00    2017-07-19 15:00:00
105954    33717    465    2017-07-19 23:08:00    2017-07-19 23:08:00
105955    33718    715    2017-07-19 19:56:00    2017-07-19 19:56:00
105956    33718    838    2017-07-19 18:52:00    2017-07-19 18:52:00
105957    33718    943    2017-07-19 07:16:00    2017-07-19 07:16:00
105958    33718    728    2017-07-19 02:08:00    2017-07-19 02:08:00
105959    33718    747    2017-07-19 19:27:00    2017-07-19 19:27:00
105960    33719    931    2017-07-19 22:31:00    2017-07-19 22:31:00
105961    33719    803    2017-07-19 06:55:00    2017-07-19 06:55:00
105962    33719    537    2017-07-19 04:58:00    2017-07-19 04:58:00
105963    33719    805    2017-07-19 22:53:00    2017-07-19 22:53:00
105964    33719    960    2017-07-19 07:25:00    2017-07-19 07:25:00
105965    33720    884    2017-07-19 20:18:00    2017-07-19 20:18:00
105966    33720    742    2017-07-19 12:53:00    2017-07-19 12:53:00
105967    33720    677    2017-07-19 22:57:00    2017-07-19 22:57:00
105968    33720    847    2017-07-19 20:51:00    2017-07-19 20:51:00
105969    33720    784    2017-07-19 10:39:00    2017-07-19 10:39:00
105970    33721    719    2017-07-19 10:51:00    2017-07-19 10:51:00
105971    33721    820    2017-07-19 12:23:00    2017-07-19 12:23:00
105972    33721    893    2017-07-19 07:19:00    2017-07-19 07:19:00
105973    33721    540    2017-07-19 12:15:00    2017-07-19 12:15:00
105974    33721    569    2017-07-19 15:21:00    2017-07-19 15:21:00
105975    33722    550    2017-07-19 12:27:00    2017-07-19 12:27:00
105976    33722    830    2017-07-19 12:48:00    2017-07-19 12:48:00
105977    33722    913    2017-07-19 01:31:00    2017-07-19 01:31:00
105978    33722    750    2017-07-19 14:01:00    2017-07-19 14:01:00
105979    33722    929    2017-07-19 03:46:00    2017-07-19 03:46:00
105980    33723    695    2017-07-19 23:00:00    2017-07-19 23:00:00
105981    33723    819    2017-07-19 06:04:00    2017-07-19 06:04:00
105982    33723    600    2017-07-19 15:03:00    2017-07-19 15:03:00
105983    33723    765    2017-07-19 15:46:00    2017-07-19 15:46:00
105984    33723    872    2017-07-19 07:47:00    2017-07-19 07:47:00
105985    33724    792    2017-07-19 19:13:00    2017-07-19 19:13:00
105986    33724    926    2017-07-19 20:11:00    2017-07-19 20:11:00
105987    33724    490    2017-07-19 03:08:00    2017-07-19 03:08:00
105988    33724    758    2017-07-19 14:09:00    2017-07-19 14:09:00
105989    33724    479    2017-07-19 15:17:00    2017-07-19 15:17:00
105990    33725    683    2017-07-19 06:16:00    2017-07-19 06:16:00
105991    33725    888    2017-07-19 03:03:00    2017-07-19 03:03:00
105992    33725    471    2017-07-19 18:42:00    2017-07-19 18:42:00
105993    33725    648    2017-07-19 01:35:00    2017-07-19 01:35:00
105994    33725    803    2017-07-19 09:33:00    2017-07-19 09:33:00
105995    33726    854    2017-07-19 02:38:00    2017-07-19 02:38:00
105996    33726    671    2017-07-19 18:38:00    2017-07-19 18:38:00
105997    33726    647    2017-07-19 17:01:00    2017-07-19 17:01:00
105998    33726    945    2017-07-19 15:38:00    2017-07-19 15:38:00
105999    33726    546    2017-07-19 15:04:00    2017-07-19 15:04:00
106000    33727    829    2017-07-19 10:10:00    2017-07-19 10:10:00
106001    33727    633    2017-07-19 08:49:00    2017-07-19 08:49:00
106002    33727    502    2017-07-19 22:03:00    2017-07-19 22:03:00
106003    33727    684    2017-07-19 03:08:00    2017-07-19 03:08:00
106004    33727    909    2017-07-19 05:12:00    2017-07-19 05:12:00
106005    33728    805    2017-07-19 18:10:00    2017-07-19 18:10:00
106006    33728    927    2017-07-19 23:24:00    2017-07-19 23:24:00
106007    33728    651    2017-07-19 13:25:00    2017-07-19 13:25:00
106008    33728    542    2017-07-19 12:04:00    2017-07-19 12:04:00
106009    33728    951    2017-07-19 11:38:00    2017-07-19 11:38:00
106010    33729    778    2017-07-19 09:10:00    2017-07-19 09:10:00
106011    33729    836    2017-07-19 16:47:00    2017-07-19 16:47:00
106012    33729    513    2017-07-19 08:17:00    2017-07-19 08:17:00
106013    33729    763    2017-07-19 13:14:00    2017-07-19 13:14:00
106014    33729    587    2017-07-19 20:24:00    2017-07-19 20:24:00
106015    33730    599    2017-07-19 17:57:00    2017-07-19 17:57:00
106016    33730    524    2017-07-19 03:10:00    2017-07-19 03:10:00
106017    33730    599    2017-07-19 11:17:00    2017-07-19 11:17:00
106018    33730    729    2017-07-19 09:37:00    2017-07-19 09:37:00
106019    33730    801    2017-07-19 15:31:00    2017-07-19 15:31:00
106020    33731    933    2017-07-19 03:06:00    2017-07-19 03:06:00
106021    33731    903    2017-07-19 16:15:00    2017-07-19 16:15:00
106022    33731    496    2017-07-19 13:15:00    2017-07-19 13:15:00
106023    33731    842    2017-07-19 22:42:00    2017-07-19 22:42:00
106024    33731    686    2017-07-19 17:45:00    2017-07-19 17:45:00
106025    33732    477    2017-07-19 09:03:00    2017-07-19 09:03:00
106026    33732    905    2017-07-19 20:07:00    2017-07-19 20:07:00
106027    33732    536    2017-07-19 01:28:00    2017-07-19 01:28:00
106028    33732    656    2017-07-19 15:26:00    2017-07-19 15:26:00
106029    33732    655    2017-07-19 17:35:00    2017-07-19 17:35:00
106030    33733    739    2017-07-19 12:56:00    2017-07-19 12:56:00
106031    33733    553    2017-07-19 14:47:00    2017-07-19 14:47:00
106032    33733    463    2017-07-19 13:58:00    2017-07-19 13:58:00
106033    33733    528    2017-07-19 02:54:00    2017-07-19 02:54:00
106034    33733    750    2017-07-19 13:21:00    2017-07-19 13:21:00
106035    33734    549    2017-07-19 19:01:00    2017-07-19 19:01:00
106036    33734    599    2017-07-19 08:38:00    2017-07-19 08:38:00
106037    33734    939    2017-07-19 02:32:00    2017-07-19 02:32:00
106038    33734    689    2017-07-19 14:56:00    2017-07-19 14:56:00
106039    33734    630    2017-07-19 02:34:00    2017-07-19 02:34:00
106040    33735    804    2017-07-19 19:48:00    2017-07-19 19:48:00
106041    33735    568    2017-07-19 03:32:00    2017-07-19 03:32:00
106042    33735    790    2017-07-19 08:49:00    2017-07-19 08:49:00
106043    33735    610    2017-07-19 08:45:00    2017-07-19 08:45:00
106044    33735    638    2017-07-19 19:49:00    2017-07-19 19:49:00
106045    33736    525    2017-07-19 19:31:00    2017-07-19 19:31:00
106046    33736    529    2017-07-19 16:07:00    2017-07-19 16:07:00
106047    33736    684    2017-07-19 08:26:00    2017-07-19 08:26:00
106048    33736    623    2017-07-19 11:16:00    2017-07-19 11:16:00
106049    33736    944    2017-07-19 06:01:00    2017-07-19 06:01:00
106050    33737    594    2017-07-19 04:56:00    2017-07-19 04:56:00
106051    33737    517    2017-07-19 14:19:00    2017-07-19 14:19:00
106052    33737    952    2017-07-19 05:16:00    2017-07-19 05:16:00
106053    33737    472    2017-07-19 17:39:00    2017-07-19 17:39:00
106054    33737    665    2017-07-19 05:53:00    2017-07-19 05:53:00
106055    33738    909    2017-07-19 06:42:00    2017-07-19 06:42:00
106056    33738    921    2017-07-19 15:59:00    2017-07-19 15:59:00
106057    33738    538    2017-07-19 04:40:00    2017-07-19 04:40:00
106058    33738    483    2017-07-19 08:13:00    2017-07-19 08:13:00
106059    33738    865    2017-07-19 05:32:00    2017-07-19 05:32:00
106060    33739    705    2017-07-19 22:21:00    2017-07-19 22:21:00
106061    33739    501    2017-07-19 20:31:00    2017-07-19 20:31:00
106062    33739    668    2017-07-19 16:09:00    2017-07-19 16:09:00
106063    33739    652    2017-07-19 17:22:00    2017-07-19 17:22:00
106064    33739    567    2017-07-19 02:02:00    2017-07-19 02:02:00
106065    33740    908    2017-07-19 07:53:00    2017-07-19 07:53:00
106066    33740    877    2017-07-19 04:35:00    2017-07-19 04:35:00
106067    33740    852    2017-07-19 17:36:00    2017-07-19 17:36:00
106068    33740    636    2017-07-19 12:08:00    2017-07-19 12:08:00
106069    33740    534    2017-07-19 15:04:00    2017-07-19 15:04:00
106070    33741    472    2017-07-19 02:04:00    2017-07-19 02:04:00
106071    33741    868    2017-07-19 14:00:00    2017-07-19 14:00:00
106072    33741    859    2017-07-19 17:32:00    2017-07-19 17:32:00
106073    33741    494    2017-07-19 13:27:00    2017-07-19 13:27:00
106074    33741    809    2017-07-19 08:15:00    2017-07-19 08:15:00
106075    33742    614    2017-07-19 18:00:00    2017-07-19 18:00:00
106076    33742    480    2017-07-19 21:12:00    2017-07-19 21:12:00
106077    33742    890    2017-07-19 18:12:00    2017-07-19 18:12:00
106078    33742    534    2017-07-19 16:00:00    2017-07-19 16:00:00
106079    33742    796    2017-07-19 17:21:00    2017-07-19 17:21:00
106080    33743    935    2017-07-19 02:35:00    2017-07-19 02:35:00
106081    33743    757    2017-07-19 02:35:00    2017-07-19 02:35:00
106082    33743    898    2017-07-19 18:00:00    2017-07-19 18:00:00
106083    33743    934    2017-07-19 12:55:00    2017-07-19 12:55:00
106084    33743    593    2017-07-19 04:06:00    2017-07-19 04:06:00
106085    33744    887    2017-07-19 20:59:00    2017-07-19 20:59:00
106086    33744    633    2017-07-19 20:05:00    2017-07-19 20:05:00
106087    33744    651    2017-07-19 04:22:00    2017-07-19 04:22:00
106088    33744    691    2017-07-19 15:59:00    2017-07-19 15:59:00
106089    33744    653    2017-07-19 18:07:00    2017-07-19 18:07:00
106090    33745    709    2017-07-19 11:33:00    2017-07-19 11:33:00
106091    33745    544    2017-07-19 18:05:00    2017-07-19 18:05:00
106092    33745    703    2017-07-19 05:00:00    2017-07-19 05:00:00
106093    33745    492    2017-07-19 12:02:00    2017-07-19 12:02:00
106094    33745    885    2017-07-19 10:17:00    2017-07-19 10:17:00
106095    33746    930    2017-07-19 02:44:00    2017-07-19 02:44:00
106096    33746    766    2017-07-19 11:47:00    2017-07-19 11:47:00
106097    33746    694    2017-07-19 03:14:00    2017-07-19 03:14:00
106098    33746    690    2017-07-19 22:58:00    2017-07-19 22:58:00
106099    33746    651    2017-07-19 10:33:00    2017-07-19 10:33:00
106100    33747    740    2017-07-19 22:15:00    2017-07-19 22:15:00
106101    33747    598    2017-07-19 14:56:00    2017-07-19 14:56:00
106102    33747    639    2017-07-19 07:37:00    2017-07-19 07:37:00
106103    33747    938    2017-07-19 04:34:00    2017-07-19 04:34:00
106104    33747    632    2017-07-19 16:08:00    2017-07-19 16:08:00
106105    33748    938    2017-07-19 01:49:00    2017-07-19 01:49:00
106106    33748    812    2017-07-19 06:12:00    2017-07-19 06:12:00
106107    33748    605    2017-07-19 14:04:00    2017-07-19 14:04:00
106108    33748    704    2017-07-19 17:46:00    2017-07-19 17:46:00
106109    33748    894    2017-07-19 22:38:00    2017-07-19 22:38:00
106110    33749    953    2017-07-19 23:02:00    2017-07-19 23:02:00
106111    33749    804    2017-07-19 15:22:00    2017-07-19 15:22:00
106112    33749    609    2017-07-19 01:34:00    2017-07-19 01:34:00
106113    33749    619    2017-07-19 04:21:00    2017-07-19 04:21:00
106114    33749    617    2017-07-19 10:43:00    2017-07-19 10:43:00
106115    33750    463    2017-07-19 23:53:00    2017-07-19 23:53:00
106116    33750    901    2017-07-19 19:40:00    2017-07-19 19:40:00
106117    33750    705    2017-07-19 12:29:00    2017-07-19 12:29:00
106118    33750    844    2017-07-19 19:19:00    2017-07-19 19:19:00
106119    33750    584    2017-07-19 23:36:00    2017-07-19 23:36:00
106120    33751    853    2017-07-19 07:24:00    2017-07-19 07:24:00
106121    33751    535    2017-07-19 10:06:00    2017-07-19 10:06:00
106122    33751    632    2017-07-19 14:22:00    2017-07-19 14:22:00
106123    33751    645    2017-07-19 05:27:00    2017-07-19 05:27:00
106124    33751    876    2017-07-19 04:57:00    2017-07-19 04:57:00
106125    33752    733    2017-07-19 15:32:00    2017-07-19 15:32:00
106126    33752    656    2017-07-19 04:26:00    2017-07-19 04:26:00
106127    33752    584    2017-07-19 04:45:00    2017-07-19 04:45:00
106128    33752    594    2017-07-19 18:25:00    2017-07-19 18:25:00
106129    33752    927    2017-07-19 01:22:00    2017-07-19 01:22:00
106130    33753    635    2017-07-19 20:01:00    2017-07-19 20:01:00
106131    33753    558    2017-07-19 18:27:00    2017-07-19 18:27:00
106132    33753    615    2017-07-19 11:56:00    2017-07-19 11:56:00
106133    33753    918    2017-07-19 10:00:00    2017-07-19 10:00:00
106134    33753    566    2017-07-20 00:00:00    2017-07-20 00:00:00
106135    33754    912    2017-07-19 20:35:00    2017-07-19 20:35:00
106136    33754    516    2017-07-19 18:55:00    2017-07-19 18:55:00
106137    33754    922    2017-07-19 10:59:00    2017-07-19 10:59:00
106138    33754    917    2017-07-19 01:43:00    2017-07-19 01:43:00
106139    33754    682    2017-07-19 06:50:00    2017-07-19 06:50:00
106140    33755    493    2017-07-19 14:54:00    2017-07-19 14:54:00
106141    33755    674    2017-07-19 23:27:00    2017-07-19 23:27:00
106142    33755    546    2017-07-19 15:55:00    2017-07-19 15:55:00
106143    33755    898    2017-07-19 22:09:00    2017-07-19 22:09:00
106144    33755    835    2017-07-19 18:59:00    2017-07-19 18:59:00
106145    33756    497    2017-07-19 01:11:00    2017-07-19 01:11:00
106146    33756    488    2017-07-19 01:51:00    2017-07-19 01:51:00
106147    33756    493    2017-07-19 03:39:00    2017-07-19 03:39:00
106148    33756    475    2017-07-19 08:17:00    2017-07-19 08:17:00
106149    33756    794    2017-07-19 04:27:00    2017-07-19 04:27:00
106150    33757    476    2017-07-19 01:32:00    2017-07-19 01:32:00
106151    33757    852    2017-07-19 16:14:00    2017-07-19 16:14:00
106152    33757    576    2017-07-19 18:55:00    2017-07-19 18:55:00
106153    33757    703    2017-07-19 13:10:00    2017-07-19 13:10:00
106154    33757    515    2017-07-19 15:19:00    2017-07-19 15:19:00
106155    33758    477    2017-07-19 06:03:00    2017-07-19 06:03:00
106156    33758    937    2017-07-19 02:57:00    2017-07-19 02:57:00
106157    33758    706    2017-07-19 05:16:00    2017-07-19 05:16:00
106158    33758    899    2017-07-19 16:33:00    2017-07-19 16:33:00
106159    33758    875    2017-07-19 22:35:00    2017-07-19 22:35:00
106160    33759    833    2017-07-19 12:32:00    2017-07-19 12:32:00
106161    33759    840    2017-07-19 16:47:00    2017-07-19 16:47:00
106162    33759    924    2017-07-19 10:32:00    2017-07-19 10:32:00
106163    33759    757    2017-07-19 04:57:00    2017-07-19 04:57:00
106164    33759    472    2017-07-19 05:22:00    2017-07-19 05:22:00
106165    33760    781    2017-07-20 08:31:00    2017-07-20 08:31:00
106166    33760    555    2017-07-20 11:56:00    2017-07-20 11:56:00
106167    33760    801    2017-07-20 01:55:00    2017-07-20 01:55:00
106168    33760    542    2017-07-20 22:53:00    2017-07-20 22:53:00
106169    33760    800    2017-07-20 17:44:00    2017-07-20 17:44:00
106170    33761    587    2017-07-20 15:59:00    2017-07-20 15:59:00
106171    33761    586    2017-07-20 14:47:00    2017-07-20 14:47:00
106172    33761    502    2017-07-20 04:55:00    2017-07-20 04:55:00
106173    33761    736    2017-07-20 13:19:00    2017-07-20 13:19:00
106174    33761    740    2017-07-20 10:57:00    2017-07-20 10:57:00
106175    33762    840    2017-07-20 08:32:00    2017-07-20 08:32:00
106176    33762    707    2017-07-20 22:58:00    2017-07-20 22:58:00
106177    33762    507    2017-07-20 13:34:00    2017-07-20 13:34:00
106178    33762    652    2017-07-20 23:15:00    2017-07-20 23:15:00
106179    33762    819    2017-07-20 06:33:00    2017-07-20 06:33:00
106180    33763    899    2017-07-20 03:24:00    2017-07-20 03:24:00
106181    33763    812    2017-07-20 06:36:00    2017-07-20 06:36:00
106182    33763    466    2017-07-20 01:51:00    2017-07-20 01:51:00
106183    33763    916    2017-07-20 21:44:00    2017-07-20 21:44:00
106184    33763    648    2017-07-20 02:32:00    2017-07-20 02:32:00
106185    33764    791    2017-07-20 21:37:00    2017-07-20 21:37:00
106186    33764    516    2017-07-20 11:23:00    2017-07-20 11:23:00
106187    33764    773    2017-07-20 04:44:00    2017-07-20 04:44:00
106188    33764    793    2017-07-20 11:53:00    2017-07-20 11:53:00
106189    33764    513    2017-07-20 01:53:00    2017-07-20 01:53:00
106190    33765    673    2017-07-20 13:31:00    2017-07-20 13:31:00
106191    33765    905    2017-07-20 02:32:00    2017-07-20 02:32:00
106192    33765    941    2017-07-20 08:00:00    2017-07-20 08:00:00
106193    33765    803    2017-07-20 16:21:00    2017-07-20 16:21:00
106194    33765    559    2017-07-20 07:09:00    2017-07-20 07:09:00
106195    33766    837    2017-07-20 10:20:00    2017-07-20 10:20:00
106196    33766    928    2017-07-20 14:17:00    2017-07-20 14:17:00
106197    33766    903    2017-07-20 01:14:00    2017-07-20 01:14:00
106198    33766    506    2017-07-20 15:26:00    2017-07-20 15:26:00
106199    33766    740    2017-07-20 01:15:00    2017-07-20 01:15:00
106200    33767    672    2017-07-20 03:24:00    2017-07-20 03:24:00
106201    33767    773    2017-07-20 13:40:00    2017-07-20 13:40:00
106202    33767    822    2017-07-20 11:32:00    2017-07-20 11:32:00
106203    33767    720    2017-07-20 11:56:00    2017-07-20 11:56:00
106204    33767    836    2017-07-20 15:39:00    2017-07-20 15:39:00
106205    33768    465    2017-07-20 14:33:00    2017-07-20 14:33:00
106206    33768    661    2017-07-20 16:35:00    2017-07-20 16:35:00
106207    33768    550    2017-07-20 05:08:00    2017-07-20 05:08:00
106208    33768    599    2017-07-20 13:52:00    2017-07-20 13:52:00
106209    33768    538    2017-07-20 16:52:00    2017-07-20 16:52:00
106210    33769    514    2017-07-20 03:53:00    2017-07-20 03:53:00
106211    33769    580    2017-07-20 05:29:00    2017-07-20 05:29:00
106212    33769    852    2017-07-20 12:14:00    2017-07-20 12:14:00
106213    33769    496    2017-07-20 14:44:00    2017-07-20 14:44:00
106214    33769    961    2017-07-20 04:11:00    2017-07-20 04:11:00
106215    33770    835    2017-07-20 23:51:00    2017-07-20 23:51:00
106216    33770    859    2017-07-20 12:25:00    2017-07-20 12:25:00
106217    33770    498    2017-07-20 16:26:00    2017-07-20 16:26:00
106218    33770    499    2017-07-20 22:31:00    2017-07-20 22:31:00
106219    33770    517    2017-07-20 06:24:00    2017-07-20 06:24:00
106220    33771    500    2017-07-20 19:58:00    2017-07-20 19:58:00
106221    33771    913    2017-07-20 20:17:00    2017-07-20 20:17:00
106222    33771    763    2017-07-20 08:41:00    2017-07-20 08:41:00
106223    33771    517    2017-07-20 09:27:00    2017-07-20 09:27:00
106224    33771    625    2017-07-20 10:46:00    2017-07-20 10:46:00
106225    33772    690    2017-07-20 12:28:00    2017-07-20 12:28:00
106226    33772    636    2017-07-20 15:00:00    2017-07-20 15:00:00
106227    33772    703    2017-07-20 17:38:00    2017-07-20 17:38:00
106228    33772    800    2017-07-20 14:58:00    2017-07-20 14:58:00
106229    33772    519    2017-07-20 07:10:00    2017-07-20 07:10:00
106230    33773    636    2017-07-20 23:18:00    2017-07-20 23:18:00
106231    33773    531    2017-07-20 14:07:00    2017-07-20 14:07:00
106232    33773    847    2017-07-20 18:14:00    2017-07-20 18:14:00
106233    33773    854    2017-07-20 04:41:00    2017-07-20 04:41:00
106234    33773    645    2017-07-20 18:34:00    2017-07-20 18:34:00
106235    33774    645    2017-07-20 14:05:00    2017-07-20 14:05:00
106236    33774    618    2017-07-20 17:14:00    2017-07-20 17:14:00
106237    33774    646    2017-07-20 05:43:00    2017-07-20 05:43:00
106238    33774    536    2017-07-20 14:00:00    2017-07-20 14:00:00
106239    33774    482    2017-07-20 13:51:00    2017-07-20 13:51:00
106240    33775    610    2017-07-20 21:35:00    2017-07-20 21:35:00
106241    33775    491    2017-07-20 17:58:00    2017-07-20 17:58:00
106242    33775    707    2017-07-20 18:52:00    2017-07-20 18:52:00
106243    33775    522    2017-07-20 20:59:00    2017-07-20 20:59:00
106244    33775    836    2017-07-20 08:26:00    2017-07-20 08:26:00
106245    33776    470    2017-07-20 16:51:00    2017-07-20 16:51:00
106246    33776    632    2017-07-20 19:37:00    2017-07-20 19:37:00
106247    33776    737    2017-07-20 03:46:00    2017-07-20 03:46:00
106248    33776    551    2017-07-20 04:37:00    2017-07-20 04:37:00
106249    33776    903    2017-07-20 22:38:00    2017-07-20 22:38:00
106250    33777    739    2017-07-20 03:42:00    2017-07-20 03:42:00
106251    33777    855    2017-07-20 02:10:00    2017-07-20 02:10:00
106252    33777    810    2017-07-20 06:45:00    2017-07-20 06:45:00
106253    33777    938    2017-07-20 13:15:00    2017-07-20 13:15:00
106254    33777    525    2017-07-20 07:15:00    2017-07-20 07:15:00
106255    33778    785    2017-07-20 11:07:00    2017-07-20 11:07:00
106256    33778    503    2017-07-20 12:47:00    2017-07-20 12:47:00
106257    33778    922    2017-07-20 04:15:00    2017-07-20 04:15:00
106258    33778    880    2017-07-20 06:55:00    2017-07-20 06:55:00
106259    33778    858    2017-07-20 12:18:00    2017-07-20 12:18:00
106260    33779    532    2017-07-20 15:31:00    2017-07-20 15:31:00
106261    33779    530    2017-07-20 03:42:00    2017-07-20 03:42:00
106262    33779    656    2017-07-20 09:34:00    2017-07-20 09:34:00
106263    33779    790    2017-07-20 07:07:00    2017-07-20 07:07:00
106264    33779    488    2017-07-20 13:36:00    2017-07-20 13:36:00
106265    33780    633    2017-07-20 09:12:00    2017-07-20 09:12:00
106266    33780    895    2017-07-20 17:04:00    2017-07-20 17:04:00
106267    33780    915    2017-07-20 05:33:00    2017-07-20 05:33:00
106268    33780    586    2017-07-20 07:02:00    2017-07-20 07:02:00
106269    33780    523    2017-07-20 17:08:00    2017-07-20 17:08:00
106270    33781    727    2017-07-20 08:43:00    2017-07-20 08:43:00
106271    33781    588    2017-07-20 23:40:00    2017-07-20 23:40:00
106272    33781    938    2017-07-20 12:51:00    2017-07-20 12:51:00
106273    33781    697    2017-07-20 08:04:00    2017-07-20 08:04:00
106274    33781    847    2017-07-20 22:21:00    2017-07-20 22:21:00
106275    33782    794    2017-07-20 20:53:00    2017-07-20 20:53:00
106276    33782    494    2017-07-20 23:16:00    2017-07-20 23:16:00
106277    33782    711    2017-07-20 21:14:00    2017-07-20 21:14:00
106278    33782    495    2017-07-20 14:33:00    2017-07-20 14:33:00
106279    33782    671    2017-07-20 22:09:00    2017-07-20 22:09:00
106280    33783    842    2017-07-20 01:23:00    2017-07-20 01:23:00
106281    33783    490    2017-07-20 09:28:00    2017-07-20 09:28:00
106282    33783    576    2017-07-20 16:23:00    2017-07-20 16:23:00
106283    33783    950    2017-07-20 17:57:00    2017-07-20 17:57:00
106284    33783    825    2017-07-20 06:40:00    2017-07-20 06:40:00
106285    33784    566    2017-07-20 20:23:00    2017-07-20 20:23:00
106286    33784    497    2017-07-20 17:33:00    2017-07-20 17:33:00
106287    33784    933    2017-07-20 18:19:00    2017-07-20 18:19:00
106288    33784    766    2017-07-20 10:11:00    2017-07-20 10:11:00
106289    33784    897    2017-07-20 15:52:00    2017-07-20 15:52:00
106290    33785    835    2017-07-20 09:17:00    2017-07-20 09:17:00
106291    33785    891    2017-07-20 23:31:00    2017-07-20 23:31:00
106292    33785    487    2017-07-20 12:20:00    2017-07-20 12:20:00
106293    33785    489    2017-07-20 21:04:00    2017-07-20 21:04:00
106294    33785    621    2017-07-20 01:03:00    2017-07-20 01:03:00
106295    33786    815    2017-07-20 11:19:00    2017-07-20 11:19:00
106296    33786    724    2017-07-20 06:33:00    2017-07-20 06:33:00
106297    33786    552    2017-07-20 05:50:00    2017-07-20 05:50:00
106298    33786    912    2017-07-20 02:12:00    2017-07-20 02:12:00
106299    33786    765    2017-07-20 02:38:00    2017-07-20 02:38:00
106300    33787    771    2017-07-20 07:32:00    2017-07-20 07:32:00
106301    33787    633    2017-07-20 20:05:00    2017-07-20 20:05:00
106302    33787    504    2017-07-20 02:52:00    2017-07-20 02:52:00
106303    33787    677    2017-07-20 16:36:00    2017-07-20 16:36:00
106304    33787    783    2017-07-20 05:34:00    2017-07-20 05:34:00
106305    33788    547    2017-07-20 18:06:00    2017-07-20 18:06:00
106306    33788    648    2017-07-20 20:20:00    2017-07-20 20:20:00
106307    33788    706    2017-07-20 13:55:00    2017-07-20 13:55:00
106308    33788    748    2017-07-20 15:03:00    2017-07-20 15:03:00
106309    33788    918    2017-07-20 13:03:00    2017-07-20 13:03:00
106310    33789    945    2017-07-20 08:09:00    2017-07-20 08:09:00
106311    33789    918    2017-07-20 22:58:00    2017-07-20 22:58:00
106312    33789    957    2017-07-20 22:04:00    2017-07-20 22:04:00
106313    33789    808    2017-07-20 04:41:00    2017-07-20 04:41:00
106314    33789    539    2017-07-20 18:56:00    2017-07-20 18:56:00
106315    33790    864    2017-07-20 23:28:00    2017-07-20 23:28:00
106316    33790    639    2017-07-20 05:42:00    2017-07-20 05:42:00
106317    33790    917    2017-07-20 08:55:00    2017-07-20 08:55:00
106318    33790    498    2017-07-20 17:31:00    2017-07-20 17:31:00
106319    33790    887    2017-07-20 14:40:00    2017-07-20 14:40:00
106320    33791    935    2017-07-20 02:59:00    2017-07-20 02:59:00
106321    33791    884    2017-07-20 16:10:00    2017-07-20 16:10:00
106322    33791    897    2017-07-20 03:29:00    2017-07-20 03:29:00
106323    33791    729    2017-07-20 07:50:00    2017-07-20 07:50:00
106324    33791    640    2017-07-20 04:48:00    2017-07-20 04:48:00
106325    33792    752    2017-07-20 04:36:00    2017-07-20 04:36:00
106326    33792    561    2017-07-20 22:18:00    2017-07-20 22:18:00
106327    33792    669    2017-07-20 11:47:00    2017-07-20 11:47:00
106328    33792    919    2017-07-20 23:25:00    2017-07-20 23:25:00
106329    33792    826    2017-07-20 21:00:00    2017-07-20 21:00:00
106330    33793    801    2017-07-20 07:54:00    2017-07-20 07:54:00
106331    33793    855    2017-07-20 08:50:00    2017-07-20 08:50:00
106332    33793    809    2017-07-20 09:36:00    2017-07-20 09:36:00
106333    33793    622    2017-07-20 23:15:00    2017-07-20 23:15:00
106334    33793    546    2017-07-20 10:35:00    2017-07-20 10:35:00
106335    33794    895    2017-07-20 18:05:00    2017-07-20 18:05:00
106336    33794    594    2017-07-20 09:42:00    2017-07-20 09:42:00
106337    33794    715    2017-07-20 21:42:00    2017-07-20 21:42:00
106338    33794    914    2017-07-20 11:27:00    2017-07-20 11:27:00
106339    33794    715    2017-07-20 17:46:00    2017-07-20 17:46:00
106340    33795    789    2017-07-20 01:57:00    2017-07-20 01:57:00
106341    33795    745    2017-07-20 10:06:00    2017-07-20 10:06:00
106342    33795    819    2017-07-20 03:51:00    2017-07-20 03:51:00
106343    33795    683    2017-07-20 09:05:00    2017-07-20 09:05:00
106344    33795    748    2017-07-20 19:46:00    2017-07-20 19:46:00
106345    33796    722    2017-07-20 17:07:00    2017-07-20 17:07:00
106346    33796    891    2017-07-20 23:58:00    2017-07-20 23:58:00
106347    33796    539    2017-07-20 18:35:00    2017-07-20 18:35:00
106348    33796    786    2017-07-20 06:51:00    2017-07-20 06:51:00
106349    33796    509    2017-07-20 04:12:00    2017-07-20 04:12:00
106350    33797    890    2017-07-20 03:05:00    2017-07-20 03:05:00
106351    33797    956    2017-07-20 12:37:00    2017-07-20 12:37:00
106352    33797    753    2017-07-20 23:31:00    2017-07-20 23:31:00
106353    33797    466    2017-07-20 08:53:00    2017-07-20 08:53:00
106354    33797    585    2017-07-20 10:00:00    2017-07-20 10:00:00
106355    33798    897    2017-07-20 23:24:00    2017-07-20 23:24:00
106356    33798    954    2017-07-20 23:38:00    2017-07-20 23:38:00
106357    33798    806    2017-07-20 19:11:00    2017-07-20 19:11:00
106358    33798    714    2017-07-20 16:13:00    2017-07-20 16:13:00
106359    33798    681    2017-07-20 17:23:00    2017-07-20 17:23:00
106360    33799    929    2017-07-20 17:30:00    2017-07-20 17:30:00
106361    33799    597    2017-07-20 03:24:00    2017-07-20 03:24:00
106362    33799    826    2017-07-20 22:33:00    2017-07-20 22:33:00
106363    33799    884    2017-07-20 10:06:00    2017-07-20 10:06:00
106364    33799    845    2017-07-20 20:17:00    2017-07-20 20:17:00
106365    33800    776    2017-07-20 23:04:00    2017-07-20 23:04:00
106366    33800    837    2017-07-20 05:46:00    2017-07-20 05:46:00
106367    33800    510    2017-07-20 12:28:00    2017-07-20 12:28:00
106368    33800    832    2017-07-20 07:40:00    2017-07-20 07:40:00
106369    33800    695    2017-07-20 22:49:00    2017-07-20 22:49:00
106370    33801    739    2017-07-20 14:38:00    2017-07-20 14:38:00
106371    33801    541    2017-07-20 23:50:00    2017-07-20 23:50:00
106372    33801    867    2017-07-20 05:41:00    2017-07-20 05:41:00
106373    33801    471    2017-07-20 13:22:00    2017-07-20 13:22:00
106374    33801    753    2017-07-20 10:44:00    2017-07-20 10:44:00
106375    33802    568    2017-07-20 11:22:00    2017-07-20 11:22:00
106376    33802    928    2017-07-20 02:58:00    2017-07-20 02:58:00
106377    33802    701    2017-07-20 02:19:00    2017-07-20 02:19:00
106378    33802    632    2017-07-20 05:43:00    2017-07-20 05:43:00
106379    33802    754    2017-07-20 11:06:00    2017-07-20 11:06:00
106380    33803    710    2017-07-20 08:34:00    2017-07-20 08:34:00
106381    33803    656    2017-07-20 23:14:00    2017-07-20 23:14:00
106382    33803    671    2017-07-20 17:52:00    2017-07-20 17:52:00
106383    33803    680    2017-07-20 14:51:00    2017-07-20 14:51:00
106384    33803    541    2017-07-20 07:46:00    2017-07-20 07:46:00
106385    33804    693    2017-07-20 23:29:00    2017-07-20 23:29:00
106386    33804    805    2017-07-20 23:45:00    2017-07-20 23:45:00
106387    33804    761    2017-07-20 09:22:00    2017-07-20 09:22:00
106388    33804    501    2017-07-20 06:12:00    2017-07-20 06:12:00
106389    33804    504    2017-07-20 14:50:00    2017-07-20 14:50:00
106390    33805    864    2017-07-20 04:45:00    2017-07-20 04:45:00
106391    33805    600    2017-07-20 22:40:00    2017-07-20 22:40:00
106392    33805    870    2017-07-20 11:22:00    2017-07-20 11:22:00
106393    33805    709    2017-07-20 08:12:00    2017-07-20 08:12:00
106394    33805    753    2017-07-20 07:13:00    2017-07-20 07:13:00
106395    33806    844    2017-07-20 02:41:00    2017-07-20 02:41:00
106396    33806    581    2017-07-20 23:01:00    2017-07-20 23:01:00
106397    33806    744    2017-07-20 19:20:00    2017-07-20 19:20:00
106398    33806    821    2017-07-20 23:34:00    2017-07-20 23:34:00
106399    33806    931    2017-07-20 06:06:00    2017-07-20 06:06:00
106400    33807    514    2017-07-20 08:15:00    2017-07-20 08:15:00
106401    33807    857    2017-07-20 16:29:00    2017-07-20 16:29:00
106402    33807    538    2017-07-20 10:49:00    2017-07-20 10:49:00
106403    33807    759    2017-07-20 06:27:00    2017-07-20 06:27:00
106404    33807    845    2017-07-20 17:26:00    2017-07-20 17:26:00
106405    33808    560    2017-07-20 07:18:00    2017-07-20 07:18:00
106406    33808    563    2017-07-20 16:13:00    2017-07-20 16:13:00
106407    33808    539    2017-07-20 03:37:00    2017-07-20 03:37:00
106408    33808    777    2017-07-20 03:24:00    2017-07-20 03:24:00
106409    33808    475    2017-07-20 19:58:00    2017-07-20 19:58:00
106410    33809    656    2017-07-20 05:50:00    2017-07-20 05:50:00
106411    33809    691    2017-07-20 23:27:00    2017-07-20 23:27:00
106412    33809    705    2017-07-20 12:21:00    2017-07-20 12:21:00
106413    33809    635    2017-07-20 20:51:00    2017-07-20 20:51:00
106414    33809    862    2017-07-20 03:51:00    2017-07-20 03:51:00
106415    33810    795    2017-07-20 04:59:00    2017-07-20 04:59:00
106416    33810    625    2017-07-20 16:52:00    2017-07-20 16:52:00
106417    33810    610    2017-07-20 01:52:00    2017-07-20 01:52:00
106418    33810    696    2017-07-20 22:27:00    2017-07-20 22:27:00
106419    33810    586    2017-07-20 20:46:00    2017-07-20 20:46:00
106420    33811    699    2017-07-20 11:52:00    2017-07-20 11:52:00
106421    33811    578    2017-07-20 23:08:00    2017-07-20 23:08:00
106422    33811    523    2017-07-20 05:30:00    2017-07-20 05:30:00
106423    33811    883    2017-07-20 10:00:00    2017-07-20 10:00:00
106424    33811    489    2017-07-20 18:44:00    2017-07-20 18:44:00
106425    33812    780    2017-07-20 03:02:00    2017-07-20 03:02:00
106426    33812    908    2017-07-20 17:06:00    2017-07-20 17:06:00
106427    33812    719    2017-07-20 19:02:00    2017-07-20 19:02:00
106428    33812    657    2017-07-20 19:59:00    2017-07-20 19:59:00
106429    33812    938    2017-07-20 23:20:00    2017-07-20 23:20:00
106430    33813    536    2017-07-20 06:15:00    2017-07-20 06:15:00
106431    33813    684    2017-07-20 15:31:00    2017-07-20 15:31:00
106432    33813    782    2017-07-20 22:08:00    2017-07-20 22:08:00
106433    33813    685    2017-07-20 22:29:00    2017-07-20 22:29:00
106434    33813    799    2017-07-20 03:58:00    2017-07-20 03:58:00
106435    33814    633    2017-07-20 06:16:00    2017-07-20 06:16:00
106436    33814    560    2017-07-20 12:39:00    2017-07-20 12:39:00
106437    33814    485    2017-07-20 16:36:00    2017-07-20 16:36:00
106438    33814    503    2017-07-20 05:30:00    2017-07-20 05:30:00
106439    33814    591    2017-07-20 15:57:00    2017-07-20 15:57:00
106440    33815    948    2017-07-20 13:48:00    2017-07-20 13:48:00
106441    33815    709    2017-07-20 07:58:00    2017-07-20 07:58:00
106442    33815    772    2017-07-20 13:33:00    2017-07-20 13:33:00
106443    33815    892    2017-07-20 08:20:00    2017-07-20 08:20:00
106444    33815    634    2017-07-20 14:58:00    2017-07-20 14:58:00
106445    33816    694    2017-07-20 05:45:00    2017-07-20 05:45:00
106446    33816    806    2017-07-20 07:04:00    2017-07-20 07:04:00
106447    33816    704    2017-07-20 22:09:00    2017-07-20 22:09:00
106448    33816    898    2017-07-20 01:48:00    2017-07-20 01:48:00
106449    33816    721    2017-07-20 04:08:00    2017-07-20 04:08:00
106450    33817    869    2017-07-20 21:44:00    2017-07-20 21:44:00
106451    33817    711    2017-07-20 05:47:00    2017-07-20 05:47:00
106452    33817    726    2017-07-20 21:01:00    2017-07-20 21:01:00
106453    33817    922    2017-07-20 15:44:00    2017-07-20 15:44:00
106454    33817    751    2017-07-20 22:29:00    2017-07-20 22:29:00
106455    33818    503    2017-07-20 19:31:00    2017-07-20 19:31:00
106456    33818    514    2017-07-20 04:40:00    2017-07-20 04:40:00
106457    33818    563    2017-07-20 16:00:00    2017-07-20 16:00:00
106458    33818    788    2017-07-20 14:04:00    2017-07-20 14:04:00
106459    33818    534    2017-07-20 22:27:00    2017-07-20 22:27:00
106460    33819    811    2017-07-20 23:57:00    2017-07-20 23:57:00
106461    33819    824    2017-07-20 20:37:00    2017-07-20 20:37:00
106462    33819    823    2017-07-20 19:49:00    2017-07-20 19:49:00
106463    33819    590    2017-07-20 08:42:00    2017-07-20 08:42:00
106464    33819    801    2017-07-20 21:41:00    2017-07-20 21:41:00
106465    33820    495    2017-07-20 23:15:00    2017-07-20 23:15:00
106466    33820    912    2017-07-20 17:51:00    2017-07-20 17:51:00
106467    33820    961    2017-07-20 20:05:00    2017-07-20 20:05:00
106468    33820    751    2017-07-20 16:32:00    2017-07-20 16:32:00
106469    33820    564    2017-07-20 13:29:00    2017-07-20 13:29:00
106470    33821    919    2017-07-20 04:38:00    2017-07-20 04:38:00
106471    33821    599    2017-07-20 07:21:00    2017-07-20 07:21:00
106472    33821    697    2017-07-20 09:00:00    2017-07-20 09:00:00
106473    33821    696    2017-07-20 01:43:00    2017-07-20 01:43:00
106474    33821    652    2017-07-20 07:50:00    2017-07-20 07:50:00
106475    33822    499    2017-07-20 15:54:00    2017-07-20 15:54:00
106476    33822    656    2017-07-20 22:00:00    2017-07-20 22:00:00
106477    33822    628    2017-07-20 05:15:00    2017-07-20 05:15:00
106478    33822    663    2017-07-20 05:11:00    2017-07-20 05:11:00
106479    33822    626    2017-07-20 05:41:00    2017-07-20 05:41:00
106480    33823    510    2017-07-20 19:19:00    2017-07-20 19:19:00
106481    33823    869    2017-07-20 11:25:00    2017-07-20 11:25:00
106482    33823    550    2017-07-20 03:47:00    2017-07-20 03:47:00
106483    33823    722    2017-07-20 03:00:00    2017-07-20 03:00:00
106484    33823    641    2017-07-20 12:35:00    2017-07-20 12:35:00
106485    33824    829    2017-07-20 18:21:00    2017-07-20 18:21:00
106486    33824    959    2017-07-20 19:50:00    2017-07-20 19:50:00
106487    33824    890    2017-07-20 22:18:00    2017-07-20 22:18:00
106488    33824    600    2017-07-20 03:50:00    2017-07-20 03:50:00
106489    33824    746    2017-07-20 07:00:00    2017-07-20 07:00:00
106490    33825    758    2017-07-20 22:53:00    2017-07-20 22:53:00
106491    33825    764    2017-07-20 16:38:00    2017-07-20 16:38:00
106492    33825    778    2017-07-20 14:00:00    2017-07-20 14:00:00
106493    33825    726    2017-07-20 14:51:00    2017-07-20 14:51:00
106494    33825    471    2017-07-20 14:10:00    2017-07-20 14:10:00
106495    33826    942    2017-07-20 22:44:00    2017-07-20 22:44:00
106496    33826    820    2017-07-20 12:00:00    2017-07-20 12:00:00
106497    33826    946    2017-07-20 10:54:00    2017-07-20 10:54:00
106498    33826    533    2017-07-20 07:00:00    2017-07-20 07:00:00
106499    33826    797    2017-07-20 01:58:00    2017-07-20 01:58:00
106500    33827    719    2017-07-20 05:08:00    2017-07-20 05:08:00
106501    33827    695    2017-07-20 16:53:00    2017-07-20 16:53:00
106502    33827    565    2017-07-20 11:31:00    2017-07-20 11:31:00
106503    33827    960    2017-07-20 06:18:00    2017-07-20 06:18:00
106504    33827    604    2017-07-20 02:41:00    2017-07-20 02:41:00
106505    33828    867    2017-07-20 01:42:00    2017-07-20 01:42:00
106506    33828    741    2017-07-20 01:06:00    2017-07-20 01:06:00
106507    33828    732    2017-07-20 06:24:00    2017-07-20 06:24:00
106508    33828    563    2017-07-20 03:49:00    2017-07-20 03:49:00
106509    33828    856    2017-07-20 10:35:00    2017-07-20 10:35:00
106510    33829    952    2017-07-20 17:29:00    2017-07-20 17:29:00
106511    33829    665    2017-07-20 04:00:00    2017-07-20 04:00:00
106512    33829    525    2017-07-20 06:51:00    2017-07-20 06:51:00
106513    33829    726    2017-07-20 02:41:00    2017-07-20 02:41:00
106514    33829    627    2017-07-20 10:36:00    2017-07-20 10:36:00
106515    33830    573    2017-07-20 14:58:00    2017-07-20 14:58:00
106516    33830    545    2017-07-20 09:32:00    2017-07-20 09:32:00
106517    33830    517    2017-07-20 22:53:00    2017-07-20 22:53:00
106518    33830    600    2017-07-20 10:42:00    2017-07-20 10:42:00
106519    33830    715    2017-07-20 15:38:00    2017-07-20 15:38:00
106520    33831    862    2017-07-20 18:54:00    2017-07-20 18:54:00
106521    33831    615    2017-07-20 23:04:00    2017-07-20 23:04:00
106522    33831    864    2017-07-20 07:22:00    2017-07-20 07:22:00
106523    33831    609    2017-07-20 04:40:00    2017-07-20 04:40:00
106524    33831    806    2017-07-20 21:26:00    2017-07-20 21:26:00
106525    33832    723    2017-07-20 11:00:00    2017-07-20 11:00:00
106526    33832    768    2017-07-20 13:43:00    2017-07-20 13:43:00
106527    33832    732    2017-07-20 03:05:00    2017-07-20 03:05:00
106528    33832    736    2017-07-20 03:04:00    2017-07-20 03:04:00
106529    33832    952    2017-07-20 11:31:00    2017-07-20 11:31:00
106530    33833    708    2017-07-20 05:36:00    2017-07-20 05:36:00
106531    33833    675    2017-07-20 16:44:00    2017-07-20 16:44:00
106532    33833    808    2017-07-20 06:01:00    2017-07-20 06:01:00
106533    33833    504    2017-07-20 10:01:00    2017-07-20 10:01:00
106534    33833    503    2017-07-20 03:44:00    2017-07-20 03:44:00
106535    33834    882    2017-07-21 12:12:00    2017-07-21 12:12:00
106536    33834    698    2017-07-21 19:57:00    2017-07-21 19:57:00
106537    33834    778    2017-07-21 07:57:00    2017-07-21 07:57:00
106538    33834    854    2017-07-21 08:17:00    2017-07-21 08:17:00
106539    33834    586    2017-07-21 05:27:00    2017-07-21 05:27:00
106540    33835    836    2017-07-21 14:20:00    2017-07-21 14:20:00
106541    33835    925    2017-07-21 18:18:00    2017-07-21 18:18:00
106542    33835    868    2017-07-21 01:57:00    2017-07-21 01:57:00
106543    33835    878    2017-07-21 20:40:00    2017-07-21 20:40:00
106544    33835    937    2017-07-21 12:26:00    2017-07-21 12:26:00
106545    33836    839    2017-07-21 06:29:00    2017-07-21 06:29:00
106546    33836    841    2017-07-21 19:01:00    2017-07-21 19:01:00
106547    33836    540    2017-07-21 01:41:00    2017-07-21 01:41:00
106548    33836    482    2017-07-21 06:35:00    2017-07-21 06:35:00
106549    33836    948    2017-07-21 23:26:00    2017-07-21 23:26:00
106550    33837    921    2017-07-21 17:06:00    2017-07-21 17:06:00
106551    33837    470    2017-07-21 19:00:00    2017-07-21 19:00:00
106552    33837    573    2017-07-21 08:42:00    2017-07-21 08:42:00
106553    33837    602    2017-07-21 21:28:00    2017-07-21 21:28:00
106554    33837    812    2017-07-21 11:42:00    2017-07-21 11:42:00
106555    33838    913    2017-07-21 02:21:00    2017-07-21 02:21:00
106556    33838    526    2017-07-21 16:41:00    2017-07-21 16:41:00
106557    33838    926    2017-07-21 19:37:00    2017-07-21 19:37:00
106558    33838    918    2017-07-21 16:01:00    2017-07-21 16:01:00
106559    33838    917    2017-07-21 22:58:00    2017-07-21 22:58:00
106560    33839    932    2017-07-21 08:59:00    2017-07-21 08:59:00
106561    33839    716    2017-07-21 15:30:00    2017-07-21 15:30:00
106562    33839    667    2017-07-21 22:29:00    2017-07-21 22:29:00
106563    33839    900    2017-07-21 22:19:00    2017-07-21 22:19:00
106564    33839    742    2017-07-21 12:45:00    2017-07-21 12:45:00
106565    33840    584    2017-07-21 09:20:00    2017-07-21 09:20:00
106566    33840    835    2017-07-21 13:40:00    2017-07-21 13:40:00
106567    33840    829    2017-07-21 17:53:00    2017-07-21 17:53:00
106568    33840    626    2017-07-21 09:06:00    2017-07-21 09:06:00
106569    33840    641    2017-07-21 13:14:00    2017-07-21 13:14:00
106570    33841    814    2017-07-21 08:55:00    2017-07-21 08:55:00
106571    33841    917    2017-07-21 10:05:00    2017-07-21 10:05:00
106572    33841    667    2017-07-21 05:33:00    2017-07-21 05:33:00
106573    33841    710    2017-07-21 13:23:00    2017-07-21 13:23:00
106574    33841    597    2017-07-21 12:51:00    2017-07-21 12:51:00
106575    33842    746    2017-07-21 18:15:00    2017-07-21 18:15:00
106576    33842    727    2017-07-21 17:50:00    2017-07-21 17:50:00
106577    33842    843    2017-07-21 18:24:00    2017-07-21 18:24:00
106578    33842    943    2017-07-21 15:08:00    2017-07-21 15:08:00
106579    33842    878    2017-07-21 22:49:00    2017-07-21 22:49:00
106580    33843    481    2017-07-21 20:44:00    2017-07-21 20:44:00
106581    33843    695    2017-07-21 07:28:00    2017-07-21 07:28:00
106582    33843    959    2017-07-21 13:21:00    2017-07-21 13:21:00
106583    33843    836    2017-07-21 17:03:00    2017-07-21 17:03:00
106584    33843    700    2017-07-21 20:05:00    2017-07-21 20:05:00
106585    33844    688    2017-07-21 12:48:00    2017-07-21 12:48:00
106586    33844    852    2017-07-21 06:24:00    2017-07-21 06:24:00
106587    33844    689    2017-07-21 12:23:00    2017-07-21 12:23:00
106588    33844    890    2017-07-21 01:18:00    2017-07-21 01:18:00
106589    33844    631    2017-07-21 01:26:00    2017-07-21 01:26:00
106590    33845    761    2017-07-21 08:00:00    2017-07-21 08:00:00
106591    33845    903    2017-07-21 21:22:00    2017-07-21 21:22:00
106592    33845    463    2017-07-21 10:19:00    2017-07-21 10:19:00
106593    33845    683    2017-07-21 14:02:00    2017-07-21 14:02:00
106594    33845    709    2017-07-21 13:37:00    2017-07-21 13:37:00
106595    33846    527    2017-07-21 20:39:00    2017-07-21 20:39:00
106596    33846    572    2017-07-21 17:09:00    2017-07-21 17:09:00
106597    33846    504    2017-07-21 14:37:00    2017-07-21 14:37:00
106598    33846    489    2017-07-21 20:47:00    2017-07-21 20:47:00
106599    33846    956    2017-07-21 09:13:00    2017-07-21 09:13:00
106600    33847    914    2017-07-21 23:40:00    2017-07-21 23:40:00
106601    33847    916    2017-07-21 13:20:00    2017-07-21 13:20:00
106602    33847    688    2017-07-21 19:55:00    2017-07-21 19:55:00
106603    33847    913    2017-07-21 12:03:00    2017-07-21 12:03:00
106604    33847    772    2017-07-21 16:12:00    2017-07-21 16:12:00
106605    33848    500    2017-07-21 12:36:00    2017-07-21 12:36:00
106606    33848    681    2017-07-21 16:54:00    2017-07-21 16:54:00
106607    33848    537    2017-07-21 05:54:00    2017-07-21 05:54:00
106608    33848    706    2017-07-21 12:48:00    2017-07-21 12:48:00
106609    33848    638    2017-07-21 03:09:00    2017-07-21 03:09:00
106610    33849    769    2017-07-21 17:23:00    2017-07-21 17:23:00
106611    33849    734    2017-07-21 20:09:00    2017-07-21 20:09:00
106612    33849    812    2017-07-21 01:45:00    2017-07-21 01:45:00
106613    33849    877    2017-07-21 17:50:00    2017-07-21 17:50:00
106614    33849    467    2017-07-21 08:04:00    2017-07-21 08:04:00
106615    33850    507    2017-07-21 21:09:00    2017-07-21 21:09:00
106616    33850    747    2017-07-21 13:44:00    2017-07-21 13:44:00
106617    33850    617    2017-07-21 02:07:00    2017-07-21 02:07:00
106618    33850    606    2017-07-21 23:50:00    2017-07-21 23:50:00
106619    33850    765    2017-07-21 15:19:00    2017-07-21 15:19:00
106620    33851    532    2017-07-21 01:39:00    2017-07-21 01:39:00
106621    33851    485    2017-07-21 20:12:00    2017-07-21 20:12:00
106622    33851    758    2017-07-21 11:44:00    2017-07-21 11:44:00
106623    33851    800    2017-07-21 18:52:00    2017-07-21 18:52:00
106624    33851    699    2017-07-21 04:37:00    2017-07-21 04:37:00
106625    33852    704    2017-07-21 21:25:00    2017-07-21 21:25:00
106626    33852    712    2017-07-21 18:48:00    2017-07-21 18:48:00
106627    33852    844    2017-07-21 01:50:00    2017-07-21 01:50:00
106628    33852    653    2017-07-21 09:39:00    2017-07-21 09:39:00
106629    33852    677    2017-07-21 18:03:00    2017-07-21 18:03:00
106630    33853    771    2017-07-21 15:08:00    2017-07-21 15:08:00
106631    33853    739    2017-07-21 21:58:00    2017-07-21 21:58:00
106632    33853    757    2017-07-21 02:56:00    2017-07-21 02:56:00
106633    33853    694    2017-07-21 22:31:00    2017-07-21 22:31:00
106634    33853    554    2017-07-21 13:16:00    2017-07-21 13:16:00
106635    33854    894    2017-07-21 03:44:00    2017-07-21 03:44:00
106636    33854    871    2017-07-21 12:08:00    2017-07-21 12:08:00
106637    33854    660    2017-07-21 16:37:00    2017-07-21 16:37:00
106638    33854    749    2017-07-21 11:16:00    2017-07-21 11:16:00
106639    33854    894    2017-07-21 09:26:00    2017-07-21 09:26:00
106640    33855    542    2017-07-21 03:13:00    2017-07-21 03:13:00
106641    33855    666    2017-07-21 18:46:00    2017-07-21 18:46:00
106642    33855    919    2017-07-21 09:30:00    2017-07-21 09:30:00
106643    33855    737    2017-07-21 07:34:00    2017-07-21 07:34:00
106644    33855    497    2017-07-21 09:39:00    2017-07-21 09:39:00
106645    33856    528    2017-07-21 01:00:00    2017-07-21 01:00:00
106646    33856    711    2017-07-21 20:11:00    2017-07-21 20:11:00
106647    33856    674    2017-07-21 06:42:00    2017-07-21 06:42:00
106648    33856    575    2017-07-21 12:38:00    2017-07-21 12:38:00
106649    33856    861    2017-07-21 08:12:00    2017-07-21 08:12:00
106650    33857    758    2017-07-21 13:38:00    2017-07-21 13:38:00
106651    33857    823    2017-07-21 19:18:00    2017-07-21 19:18:00
106652    33857    714    2017-07-21 19:35:00    2017-07-21 19:35:00
106653    33857    610    2017-07-21 20:47:00    2017-07-21 20:47:00
106654    33857    723    2017-07-21 03:59:00    2017-07-21 03:59:00
106655    33858    818    2017-07-21 08:41:00    2017-07-21 08:41:00
106656    33858    886    2017-07-21 13:57:00    2017-07-21 13:57:00
106657    33858    566    2017-07-21 01:45:00    2017-07-21 01:45:00
106658    33858    659    2017-07-21 06:20:00    2017-07-21 06:20:00
106659    33858    933    2017-07-21 17:52:00    2017-07-21 17:52:00
106660    33859    884    2017-07-21 01:34:00    2017-07-21 01:34:00
106661    33859    704    2017-07-21 04:24:00    2017-07-21 04:24:00
106662    33859    711    2017-07-21 16:04:00    2017-07-21 16:04:00
106663    33859    509    2017-07-21 12:25:00    2017-07-21 12:25:00
106664    33859    652    2017-07-21 21:40:00    2017-07-21 21:40:00
106665    33860    593    2017-07-21 19:18:00    2017-07-21 19:18:00
106666    33860    891    2017-07-21 04:02:00    2017-07-21 04:02:00
106667    33860    900    2017-07-21 07:34:00    2017-07-21 07:34:00
106668    33860    930    2017-07-21 01:37:00    2017-07-21 01:37:00
106669    33860    510    2017-07-21 03:08:00    2017-07-21 03:08:00
106670    33861    904    2017-07-21 18:13:00    2017-07-21 18:13:00
106671    33861    911    2017-07-21 17:37:00    2017-07-21 17:37:00
106672    33861    587    2017-07-21 11:43:00    2017-07-21 11:43:00
106673    33861    531    2017-07-21 10:46:00    2017-07-21 10:46:00
106674    33861    933    2017-07-21 04:44:00    2017-07-21 04:44:00
106675    33862    648    2017-07-21 10:08:00    2017-07-21 10:08:00
106676    33862    473    2017-07-21 17:04:00    2017-07-21 17:04:00
106677    33862    802    2017-07-21 07:09:00    2017-07-21 07:09:00
106678    33862    836    2017-07-21 18:58:00    2017-07-21 18:58:00
106679    33862    644    2017-07-21 12:44:00    2017-07-21 12:44:00
106680    33863    472    2017-07-21 05:56:00    2017-07-21 05:56:00
106681    33863    485    2017-07-21 15:37:00    2017-07-21 15:37:00
106682    33863    898    2017-07-21 20:38:00    2017-07-21 20:38:00
106683    33863    745    2017-07-21 10:13:00    2017-07-21 10:13:00
106684    33863    692    2017-07-21 09:16:00    2017-07-21 09:16:00
106685    33864    540    2017-07-21 14:32:00    2017-07-21 14:32:00
106686    33864    641    2017-07-21 11:52:00    2017-07-21 11:52:00
106687    33864    835    2017-07-21 17:57:00    2017-07-21 17:57:00
106688    33864    931    2017-07-21 02:49:00    2017-07-21 02:49:00
106689    33864    608    2017-07-21 12:29:00    2017-07-21 12:29:00
106690    33865    789    2017-07-21 04:40:00    2017-07-21 04:40:00
106691    33865    618    2017-07-21 13:30:00    2017-07-21 13:30:00
106692    33865    936    2017-07-21 06:08:00    2017-07-21 06:08:00
106693    33865    761    2017-07-21 15:11:00    2017-07-21 15:11:00
106694    33865    824    2017-07-21 14:43:00    2017-07-21 14:43:00
106695    33866    900    2017-07-21 05:33:00    2017-07-21 05:33:00
106696    33866    911    2017-07-21 01:56:00    2017-07-21 01:56:00
106697    33866    819    2017-07-21 18:40:00    2017-07-21 18:40:00
106698    33866    845    2017-07-21 22:57:00    2017-07-21 22:57:00
106699    33866    719    2017-07-21 21:56:00    2017-07-21 21:56:00
106700    33867    900    2017-07-21 19:24:00    2017-07-21 19:24:00
106701    33867    867    2017-07-21 15:00:00    2017-07-21 15:00:00
106702    33867    579    2017-07-21 02:06:00    2017-07-21 02:06:00
106703    33867    929    2017-07-21 23:13:00    2017-07-21 23:13:00
106704    33867    900    2017-07-21 14:42:00    2017-07-21 14:42:00
106705    33868    612    2017-07-21 02:41:00    2017-07-21 02:41:00
106706    33868    961    2017-07-21 03:09:00    2017-07-21 03:09:00
106707    33868    508    2017-07-21 04:53:00    2017-07-21 04:53:00
106708    33868    570    2017-07-21 04:55:00    2017-07-21 04:55:00
106709    33868    838    2017-07-21 04:37:00    2017-07-21 04:37:00
106710    33869    666    2017-07-21 09:45:00    2017-07-21 09:45:00
106711    33869    762    2017-07-21 10:49:00    2017-07-21 10:49:00
106712    33869    816    2017-07-21 12:08:00    2017-07-21 12:08:00
106713    33869    775    2017-07-21 10:42:00    2017-07-21 10:42:00
106714    33869    662    2017-07-21 12:44:00    2017-07-21 12:44:00
106715    33870    469    2017-07-21 12:18:00    2017-07-21 12:18:00
106716    33870    596    2017-07-21 14:23:00    2017-07-21 14:23:00
106717    33870    731    2017-07-21 23:07:00    2017-07-21 23:07:00
106718    33870    859    2017-07-21 06:03:00    2017-07-21 06:03:00
106719    33870    739    2017-07-21 22:32:00    2017-07-21 22:32:00
106720    33871    608    2017-07-21 02:08:00    2017-07-21 02:08:00
106721    33871    540    2017-07-21 04:02:00    2017-07-21 04:02:00
106722    33871    483    2017-07-21 14:34:00    2017-07-21 14:34:00
106723    33871    505    2017-07-21 15:56:00    2017-07-21 15:56:00
106724    33871    718    2017-07-21 01:51:00    2017-07-21 01:51:00
106725    33872    563    2017-07-21 13:05:00    2017-07-21 13:05:00
106726    33872    883    2017-07-21 14:26:00    2017-07-21 14:26:00
106727    33872    818    2017-07-21 22:36:00    2017-07-21 22:36:00
106728    33872    857    2017-07-21 11:13:00    2017-07-21 11:13:00
106729    33872    683    2017-07-21 23:19:00    2017-07-21 23:19:00
106730    33873    463    2017-07-21 06:34:00    2017-07-21 06:34:00
106731    33873    829    2017-07-21 13:58:00    2017-07-21 13:58:00
106732    33873    771    2017-07-21 17:21:00    2017-07-21 17:21:00
106733    33873    945    2017-07-21 20:51:00    2017-07-21 20:51:00
106734    33873    815    2017-07-21 04:39:00    2017-07-21 04:39:00
106735    33874    892    2017-07-21 06:19:00    2017-07-21 06:19:00
106736    33874    583    2017-07-21 22:09:00    2017-07-21 22:09:00
106737    33874    606    2017-07-21 23:48:00    2017-07-21 23:48:00
106738    33874    804    2017-07-21 14:53:00    2017-07-21 14:53:00
106739    33874    917    2017-07-21 13:19:00    2017-07-21 13:19:00
106740    33875    714    2017-07-21 11:17:00    2017-07-21 11:17:00
106741    33875    528    2017-07-21 08:25:00    2017-07-21 08:25:00
106742    33875    881    2017-07-21 22:43:00    2017-07-21 22:43:00
106743    33875    570    2017-07-21 16:34:00    2017-07-21 16:34:00
106744    33875    584    2017-07-21 11:35:00    2017-07-21 11:35:00
106745    33876    848    2017-07-21 02:09:00    2017-07-21 02:09:00
106746    33876    891    2017-07-21 18:09:00    2017-07-21 18:09:00
106747    33876    792    2017-07-21 22:19:00    2017-07-21 22:19:00
106748    33876    654    2017-07-21 06:26:00    2017-07-21 06:26:00
106749    33876    802    2017-07-21 01:36:00    2017-07-21 01:36:00
106750    33877    890    2017-07-21 06:52:00    2017-07-21 06:52:00
106751    33877    595    2017-07-21 20:01:00    2017-07-21 20:01:00
106752    33877    865    2017-07-21 01:35:00    2017-07-21 01:35:00
106753    33877    739    2017-07-21 03:04:00    2017-07-21 03:04:00
106754    33877    716    2017-07-21 14:26:00    2017-07-21 14:26:00
106755    33878    758    2017-07-21 08:52:00    2017-07-21 08:52:00
106756    33878    477    2017-07-21 17:49:00    2017-07-21 17:49:00
106757    33878    497    2017-07-21 10:44:00    2017-07-21 10:44:00
106758    33878    851    2017-07-21 20:12:00    2017-07-21 20:12:00
106759    33878    518    2017-07-21 07:13:00    2017-07-21 07:13:00
106760    33879    930    2017-07-21 04:25:00    2017-07-21 04:25:00
106761    33879    551    2017-07-21 19:49:00    2017-07-21 19:49:00
106762    33879    530    2017-07-21 06:49:00    2017-07-21 06:49:00
106763    33879    732    2017-07-21 23:18:00    2017-07-21 23:18:00
106764    33879    899    2017-07-21 23:57:00    2017-07-21 23:57:00
106765    33880    704    2017-07-21 19:39:00    2017-07-21 19:39:00
106766    33880    829    2017-07-21 11:13:00    2017-07-21 11:13:00
106767    33880    817    2017-07-21 15:09:00    2017-07-21 15:09:00
106768    33880    502    2017-07-21 03:18:00    2017-07-21 03:18:00
106769    33880    960    2017-07-21 14:29:00    2017-07-21 14:29:00
106770    33881    942    2017-07-21 06:35:00    2017-07-21 06:35:00
106771    33881    767    2017-07-21 14:00:00    2017-07-21 14:00:00
106772    33881    889    2017-07-21 06:30:00    2017-07-21 06:30:00
106773    33881    699    2017-07-21 18:39:00    2017-07-21 18:39:00
106774    33881    874    2017-07-21 22:49:00    2017-07-21 22:49:00
106775    33882    576    2017-07-21 18:09:00    2017-07-21 18:09:00
106776    33882    649    2017-07-21 04:07:00    2017-07-21 04:07:00
106777    33882    527    2017-07-21 01:45:00    2017-07-21 01:45:00
106778    33882    775    2017-07-21 08:19:00    2017-07-21 08:19:00
106779    33882    931    2017-07-21 09:26:00    2017-07-21 09:26:00
106780    33883    651    2017-07-21 13:45:00    2017-07-21 13:45:00
106781    33883    833    2017-07-21 20:09:00    2017-07-21 20:09:00
106782    33883    654    2017-07-21 18:10:00    2017-07-21 18:10:00
106783    33883    897    2017-07-21 04:01:00    2017-07-21 04:01:00
106784    33883    950    2017-07-21 01:11:00    2017-07-21 01:11:00
106785    33884    493    2017-07-21 09:58:00    2017-07-21 09:58:00
106786    33884    809    2017-07-21 21:00:00    2017-07-21 21:00:00
106787    33884    510    2017-07-21 18:33:00    2017-07-21 18:33:00
106788    33884    956    2017-07-21 03:18:00    2017-07-21 03:18:00
106789    33884    489    2017-07-21 11:46:00    2017-07-21 11:46:00
106790    33885    689    2017-07-21 02:45:00    2017-07-21 02:45:00
106791    33885    580    2017-07-21 15:48:00    2017-07-21 15:48:00
106792    33885    468    2017-07-21 06:47:00    2017-07-21 06:47:00
106793    33885    851    2017-07-21 08:17:00    2017-07-21 08:17:00
106794    33885    612    2017-07-21 17:30:00    2017-07-21 17:30:00
106795    33886    765    2017-07-21 10:53:00    2017-07-21 10:53:00
106796    33886    712    2017-07-21 05:52:00    2017-07-21 05:52:00
106797    33886    605    2017-07-21 17:17:00    2017-07-21 17:17:00
106798    33886    645    2017-07-21 16:24:00    2017-07-21 16:24:00
106799    33886    722    2017-07-21 08:18:00    2017-07-21 08:18:00
106800    33887    907    2017-07-21 18:14:00    2017-07-21 18:14:00
106801    33887    678    2017-07-21 13:14:00    2017-07-21 13:14:00
106802    33887    613    2017-07-21 06:47:00    2017-07-21 06:47:00
106803    33887    527    2017-07-21 06:29:00    2017-07-21 06:29:00
106804    33887    721    2017-07-21 19:35:00    2017-07-21 19:35:00
106805    33888    830    2017-07-21 08:07:00    2017-07-21 08:07:00
106806    33888    566    2017-07-21 16:38:00    2017-07-21 16:38:00
106807    33888    485    2017-07-21 11:35:00    2017-07-21 11:35:00
106808    33888    823    2017-07-21 14:32:00    2017-07-21 14:32:00
106809    33888    682    2017-07-21 17:16:00    2017-07-21 17:16:00
106810    33889    639    2017-07-21 01:40:00    2017-07-21 01:40:00
106811    33889    612    2017-07-21 10:51:00    2017-07-21 10:51:00
106812    33889    743    2017-07-21 06:49:00    2017-07-21 06:49:00
106813    33889    582    2017-07-21 13:49:00    2017-07-21 13:49:00
106814    33889    664    2017-07-21 01:49:00    2017-07-21 01:49:00
106815    33890    678    2017-07-21 03:25:00    2017-07-21 03:25:00
106816    33890    861    2017-07-21 05:53:00    2017-07-21 05:53:00
106817    33890    856    2017-07-21 07:58:00    2017-07-21 07:58:00
106818    33890    623    2017-07-21 06:52:00    2017-07-21 06:52:00
106819    33890    735    2017-07-21 21:04:00    2017-07-21 21:04:00
106820    33891    587    2017-07-21 01:01:00    2017-07-21 01:01:00
106821    33891    566    2017-07-21 02:35:00    2017-07-21 02:35:00
106822    33891    501    2017-07-21 23:18:00    2017-07-21 23:18:00
106823    33891    862    2017-07-21 21:45:00    2017-07-21 21:45:00
106824    33891    943    2017-07-21 12:19:00    2017-07-21 12:19:00
106825    33892    866    2017-07-21 03:39:00    2017-07-21 03:39:00
106826    33892    478    2017-07-21 22:35:00    2017-07-21 22:35:00
106827    33892    703    2017-07-21 22:54:00    2017-07-21 22:54:00
106828    33892    926    2017-07-21 18:09:00    2017-07-21 18:09:00
106829    33892    914    2017-07-21 17:44:00    2017-07-21 17:44:00
106830    33893    891    2017-07-21 15:25:00    2017-07-21 15:25:00
106831    33893    694    2017-07-21 10:34:00    2017-07-21 10:34:00
106832    33893    837    2017-07-21 14:07:00    2017-07-21 14:07:00
106833    33893    657    2017-07-21 03:41:00    2017-07-21 03:41:00
106834    33893    793    2017-07-21 09:50:00    2017-07-21 09:50:00
106835    33894    892    2017-07-21 09:03:00    2017-07-21 09:03:00
106836    33894    813    2017-07-21 22:45:00    2017-07-21 22:45:00
106837    33894    849    2017-07-21 16:44:00    2017-07-21 16:44:00
106838    33894    614    2017-07-21 19:22:00    2017-07-21 19:22:00
106839    33894    826    2017-07-21 01:35:00    2017-07-21 01:35:00
106840    33895    655    2017-07-21 11:49:00    2017-07-21 11:49:00
106841    33895    798    2017-07-21 09:14:00    2017-07-21 09:14:00
106842    33895    616    2017-07-21 15:53:00    2017-07-21 15:53:00
106843    33895    623    2017-07-21 09:03:00    2017-07-21 09:03:00
106844    33895    471    2017-07-21 04:37:00    2017-07-21 04:37:00
106845    33896    666    2017-07-21 01:10:00    2017-07-21 01:10:00
106846    33896    933    2017-07-21 07:13:00    2017-07-21 07:13:00
106847    33896    874    2017-07-21 20:29:00    2017-07-21 20:29:00
106848    33896    766    2017-07-21 23:00:00    2017-07-21 23:00:00
106849    33896    890    2017-07-21 06:59:00    2017-07-21 06:59:00
106850    33897    554    2017-07-21 19:30:00    2017-07-21 19:30:00
106851    33897    475    2017-07-21 12:44:00    2017-07-21 12:44:00
106852    33897    938    2017-07-21 09:43:00    2017-07-21 09:43:00
106853    33897    743    2017-07-21 14:29:00    2017-07-21 14:29:00
106854    33897    662    2017-07-21 18:47:00    2017-07-21 18:47:00
106855    33898    875    2017-07-21 14:35:00    2017-07-21 14:35:00
106856    33898    794    2017-07-21 20:07:00    2017-07-21 20:07:00
106857    33898    836    2017-07-21 06:37:00    2017-07-21 06:37:00
106858    33898    469    2017-07-21 03:17:00    2017-07-21 03:17:00
106859    33898    471    2017-07-21 08:17:00    2017-07-21 08:17:00
106860    33899    857    2017-07-21 20:10:00    2017-07-21 20:10:00
106861    33899    875    2017-07-21 11:19:00    2017-07-21 11:19:00
106862    33899    783    2017-07-21 20:05:00    2017-07-21 20:05:00
106863    33899    798    2017-07-21 21:43:00    2017-07-21 21:43:00
106864    33899    642    2017-07-21 16:38:00    2017-07-21 16:38:00
106865    33900    741    2017-07-21 14:50:00    2017-07-21 14:50:00
106866    33900    573    2017-07-21 17:31:00    2017-07-21 17:31:00
106867    33900    557    2017-07-21 22:35:00    2017-07-21 22:35:00
106868    33900    937    2017-07-21 13:12:00    2017-07-21 13:12:00
106869    33900    695    2017-07-21 11:46:00    2017-07-21 11:46:00
106870    33901    892    2017-07-21 15:25:00    2017-07-21 15:25:00
106871    33901    599    2017-07-21 19:39:00    2017-07-21 19:39:00
106872    33901    645    2017-07-21 15:33:00    2017-07-21 15:33:00
106873    33901    476    2017-07-21 10:13:00    2017-07-21 10:13:00
106874    33901    590    2017-07-21 11:38:00    2017-07-21 11:38:00
106875    33902    701    2017-07-21 11:35:00    2017-07-21 11:35:00
106876    33902    810    2017-07-21 01:27:00    2017-07-21 01:27:00
106877    33902    959    2017-07-21 19:45:00    2017-07-21 19:45:00
106878    33902    773    2017-07-21 07:37:00    2017-07-21 07:37:00
106879    33902    921    2017-07-21 12:32:00    2017-07-21 12:32:00
106880    33903    811    2017-07-21 17:29:00    2017-07-21 17:29:00
106881    33903    725    2017-07-21 01:01:00    2017-07-21 01:01:00
106882    33903    577    2017-07-21 20:38:00    2017-07-21 20:38:00
106883    33903    627    2017-07-21 01:46:00    2017-07-21 01:46:00
106884    33903    586    2017-07-21 10:38:00    2017-07-21 10:38:00
106885    33904    507    2017-07-21 12:51:00    2017-07-21 12:51:00
106886    33904    672    2017-07-21 23:11:00    2017-07-21 23:11:00
106887    33904    708    2017-07-21 19:08:00    2017-07-21 19:08:00
106888    33904    796    2017-07-21 16:20:00    2017-07-21 16:20:00
106889    33904    921    2017-07-21 21:03:00    2017-07-21 21:03:00
106890    33905    787    2017-07-21 12:23:00    2017-07-21 12:23:00
106891    33905    849    2017-07-21 08:33:00    2017-07-21 08:33:00
106892    33905    758    2017-07-21 01:17:00    2017-07-21 01:17:00
106893    33905    647    2017-07-21 23:24:00    2017-07-21 23:24:00
106894    33905    867    2017-07-21 21:53:00    2017-07-21 21:53:00
106895    33906    750    2017-07-21 18:02:00    2017-07-21 18:02:00
106896    33906    706    2017-07-21 17:56:00    2017-07-21 17:56:00
106897    33906    524    2017-07-21 05:29:00    2017-07-21 05:29:00
106898    33906    673    2017-07-21 11:37:00    2017-07-21 11:37:00
106899    33906    615    2017-07-21 09:19:00    2017-07-21 09:19:00
106900    33907    865    2017-07-21 21:37:00    2017-07-21 21:37:00
106901    33907    843    2017-07-21 17:43:00    2017-07-21 17:43:00
106902    33907    724    2017-07-21 08:04:00    2017-07-21 08:04:00
106903    33907    922    2017-07-21 17:11:00    2017-07-21 17:11:00
106904    33907    614    2017-07-21 10:10:00    2017-07-21 10:10:00
106905    33908    621    2017-07-21 18:28:00    2017-07-21 18:28:00
106906    33908    519    2017-07-21 04:13:00    2017-07-21 04:13:00
106907    33908    840    2017-07-21 04:28:00    2017-07-21 04:28:00
106908    33908    815    2017-07-21 13:32:00    2017-07-21 13:32:00
106909    33908    914    2017-07-21 05:32:00    2017-07-21 05:32:00
106910    33909    614    2017-07-21 12:52:00    2017-07-21 12:52:00
106911    33909    533    2017-07-21 13:19:00    2017-07-21 13:19:00
106912    33909    607    2017-07-21 08:43:00    2017-07-21 08:43:00
106913    33909    804    2017-07-21 03:04:00    2017-07-21 03:04:00
106914    33909    873    2017-07-21 12:27:00    2017-07-21 12:27:00
106915    33910    860    2017-07-21 13:14:00    2017-07-21 13:14:00
106916    33910    551    2017-07-21 20:11:00    2017-07-21 20:11:00
106917    33910    697    2017-07-21 02:09:00    2017-07-21 02:09:00
106918    33910    607    2017-07-21 21:57:00    2017-07-21 21:57:00
106919    33910    917    2017-07-21 09:38:00    2017-07-21 09:38:00
106920    33911    732    2017-07-21 02:32:00    2017-07-21 02:32:00
106921    33911    649    2017-07-21 05:40:00    2017-07-21 05:40:00
106922    33911    952    2017-07-21 04:38:00    2017-07-21 04:38:00
106923    33911    633    2017-07-21 23:02:00    2017-07-21 23:02:00
106924    33911    858    2017-07-21 12:18:00    2017-07-21 12:18:00
106925    33912    547    2017-07-21 20:41:00    2017-07-21 20:41:00
106926    33912    805    2017-07-21 23:28:00    2017-07-21 23:28:00
106927    33912    662    2017-07-21 02:24:00    2017-07-21 02:24:00
106928    33912    534    2017-07-21 18:24:00    2017-07-21 18:24:00
106929    33912    807    2017-07-21 14:57:00    2017-07-21 14:57:00
106930    33913    485    2017-07-21 06:42:00    2017-07-21 06:42:00
106931    33913    715    2017-07-21 03:07:00    2017-07-21 03:07:00
106932    33913    954    2017-07-21 19:39:00    2017-07-21 19:39:00
106933    33913    755    2017-07-21 07:01:00    2017-07-21 07:01:00
106934    33913    761    2017-07-21 04:14:00    2017-07-21 04:14:00
106935    33914    564    2017-07-21 23:30:00    2017-07-21 23:30:00
106936    33914    502    2017-07-21 19:04:00    2017-07-21 19:04:00
106937    33914    952    2017-07-21 20:04:00    2017-07-21 20:04:00
106938    33914    489    2017-07-21 05:55:00    2017-07-21 05:55:00
106939    33914    862    2017-07-21 23:00:00    2017-07-21 23:00:00
106940    33915    641    2017-07-21 10:07:00    2017-07-21 10:07:00
106941    33915    838    2017-07-21 10:35:00    2017-07-21 10:35:00
106942    33915    753    2017-07-21 19:06:00    2017-07-21 19:06:00
106943    33915    781    2017-07-21 18:52:00    2017-07-21 18:52:00
106944    33915    550    2017-07-21 15:15:00    2017-07-21 15:15:00
106945    33916    684    2017-07-21 19:28:00    2017-07-21 19:28:00
106946    33916    707    2017-07-21 15:43:00    2017-07-21 15:43:00
106947    33916    798    2017-07-21 09:15:00    2017-07-21 09:15:00
106948    33916    771    2017-07-21 21:34:00    2017-07-21 21:34:00
106949    33916    490    2017-07-21 09:01:00    2017-07-21 09:01:00
106950    33917    676    2017-07-21 15:03:00    2017-07-21 15:03:00
106951    33917    786    2017-07-21 11:43:00    2017-07-21 11:43:00
106952    33917    535    2017-07-21 11:24:00    2017-07-21 11:24:00
106953    33917    548    2017-07-21 05:31:00    2017-07-21 05:31:00
106954    33917    513    2017-07-21 21:19:00    2017-07-21 21:19:00
106955    33918    799    2017-07-21 16:17:00    2017-07-21 16:17:00
106956    33918    706    2017-07-21 07:44:00    2017-07-21 07:44:00
106957    33918    870    2017-07-21 01:54:00    2017-07-21 01:54:00
106958    33918    886    2017-07-21 03:39:00    2017-07-21 03:39:00
106959    33918    838    2017-07-21 05:12:00    2017-07-21 05:12:00
106960    33919    647    2017-07-21 23:28:00    2017-07-21 23:28:00
106961    33919    687    2017-07-21 10:48:00    2017-07-21 10:48:00
106962    33919    712    2017-07-21 14:37:00    2017-07-21 14:37:00
106963    33919    582    2017-07-22 00:00:00    2017-07-22 00:00:00
106964    33919    793    2017-07-21 13:19:00    2017-07-21 13:19:00
106965    33920    812    2017-07-21 15:51:00    2017-07-21 15:51:00
106966    33920    697    2017-07-21 15:35:00    2017-07-21 15:35:00
106967    33920    746    2017-07-21 20:42:00    2017-07-21 20:42:00
106968    33920    916    2017-07-21 04:40:00    2017-07-21 04:40:00
106969    33920    952    2017-07-21 06:04:00    2017-07-21 06:04:00
106970    33921    477    2017-07-21 02:14:00    2017-07-21 02:14:00
106971    33921    517    2017-07-21 20:01:00    2017-07-21 20:01:00
106972    33921    663    2017-07-21 23:18:00    2017-07-21 23:18:00
106973    33921    521    2017-07-21 23:55:00    2017-07-21 23:55:00
106974    33921    831    2017-07-21 13:13:00    2017-07-21 13:13:00
106975    33922    538    2017-07-21 13:39:00    2017-07-21 13:39:00
106976    33922    640    2017-07-21 18:34:00    2017-07-21 18:34:00
106977    33922    767    2017-07-21 18:22:00    2017-07-21 18:22:00
106978    33922    536    2017-07-21 17:32:00    2017-07-21 17:32:00
106979    33922    472    2017-07-21 13:43:00    2017-07-21 13:43:00
106980    33923    646    2017-07-21 18:24:00    2017-07-21 18:24:00
106981    33923    534    2017-07-21 05:14:00    2017-07-21 05:14:00
106982    33923    935    2017-07-21 01:26:00    2017-07-21 01:26:00
106983    33923    944    2017-07-21 22:30:00    2017-07-21 22:30:00
106984    33923    742    2017-07-21 16:27:00    2017-07-21 16:27:00
106985    33924    550    2017-07-21 18:57:00    2017-07-21 18:57:00
106986    33924    474    2017-07-21 11:24:00    2017-07-21 11:24:00
106987    33924    861    2017-07-21 08:57:00    2017-07-21 08:57:00
106988    33924    823    2017-07-21 07:58:00    2017-07-21 07:58:00
106989    33924    534    2017-07-21 04:20:00    2017-07-21 04:20:00
106990    33925    698    2017-07-21 16:03:00    2017-07-21 16:03:00
106991    33925    559    2017-07-21 18:54:00    2017-07-21 18:54:00
106992    33925    464    2017-07-21 03:18:00    2017-07-21 03:18:00
106993    33925    648    2017-07-21 05:27:00    2017-07-21 05:27:00
106994    33925    842    2017-07-21 22:13:00    2017-07-21 22:13:00
106995    33926    657    2017-07-21 20:07:00    2017-07-21 20:07:00
106996    33926    783    2017-07-21 12:49:00    2017-07-21 12:49:00
106997    33926    643    2017-07-21 23:36:00    2017-07-21 23:36:00
106998    33926    921    2017-07-21 21:13:00    2017-07-21 21:13:00
106999    33926    493    2017-07-21 02:46:00    2017-07-21 02:46:00
107000    33927    795    2017-07-22 17:34:00    2017-07-22 17:34:00
107001    33927    659    2017-07-22 12:32:00    2017-07-22 12:32:00
107002    33927    923    2017-07-22 16:26:00    2017-07-22 16:26:00
107003    33927    943    2017-07-22 10:46:00    2017-07-22 10:46:00
107004    33927    789    2017-07-22 23:25:00    2017-07-22 23:25:00
107005    33928    545    2017-07-22 15:12:00    2017-07-22 15:12:00
107006    33928    597    2017-07-22 23:11:00    2017-07-22 23:11:00
107007    33928    468    2017-07-22 09:50:00    2017-07-22 09:50:00
107008    33928    926    2017-07-22 12:43:00    2017-07-22 12:43:00
107009    33928    613    2017-07-22 06:39:00    2017-07-22 06:39:00
107010    33929    467    2017-07-22 06:35:00    2017-07-22 06:35:00
107011    33929    650    2017-07-22 10:27:00    2017-07-22 10:27:00
107012    33929    734    2017-07-22 05:52:00    2017-07-22 05:52:00
107013    33929    888    2017-07-22 13:40:00    2017-07-22 13:40:00
107014    33929    733    2017-07-22 15:04:00    2017-07-22 15:04:00
107015    33930    851    2017-07-22 12:20:00    2017-07-22 12:20:00
107016    33930    661    2017-07-22 10:25:00    2017-07-22 10:25:00
107017    33930    794    2017-07-22 05:53:00    2017-07-22 05:53:00
107018    33930    593    2017-07-22 20:18:00    2017-07-22 20:18:00
107019    33930    595    2017-07-22 06:59:00    2017-07-22 06:59:00
107020    33931    693    2017-07-22 15:28:00    2017-07-22 15:28:00
107021    33931    613    2017-07-22 23:53:00    2017-07-22 23:53:00
107022    33931    483    2017-07-22 12:51:00    2017-07-22 12:51:00
107023    33931    709    2017-07-22 06:03:00    2017-07-22 06:03:00
107024    33931    865    2017-07-22 07:31:00    2017-07-22 07:31:00
107025    33932    818    2017-07-22 04:10:00    2017-07-22 04:10:00
107026    33932    799    2017-07-22 20:24:00    2017-07-22 20:24:00
107027    33932    806    2017-07-22 23:59:00    2017-07-22 23:59:00
107028    33932    658    2017-07-22 07:40:00    2017-07-22 07:40:00
107029    33932    560    2017-07-22 13:28:00    2017-07-22 13:28:00
107030    33933    677    2017-07-22 23:40:00    2017-07-22 23:40:00
107031    33933    682    2017-07-22 15:23:00    2017-07-22 15:23:00
107032    33933    566    2017-07-22 08:12:00    2017-07-22 08:12:00
107033    33933    616    2017-07-22 23:09:00    2017-07-22 23:09:00
107034    33933    922    2017-07-22 21:52:00    2017-07-22 21:52:00
107035    33934    854    2017-07-22 19:40:00    2017-07-22 19:40:00
107036    33934    581    2017-07-22 19:01:00    2017-07-22 19:01:00
107037    33934    531    2017-07-22 20:12:00    2017-07-22 20:12:00
107038    33934    843    2017-07-22 13:04:00    2017-07-22 13:04:00
107039    33934    883    2017-07-22 08:32:00    2017-07-22 08:32:00
107040    33935    533    2017-07-22 03:17:00    2017-07-22 03:17:00
107041    33935    839    2017-07-22 18:54:00    2017-07-22 18:54:00
107042    33935    843    2017-07-22 22:54:00    2017-07-22 22:54:00
107043    33935    838    2017-07-22 12:35:00    2017-07-22 12:35:00
107044    33935    485    2017-07-22 20:41:00    2017-07-22 20:41:00
107045    33936    747    2017-07-22 06:11:00    2017-07-22 06:11:00
107046    33936    868    2017-07-22 21:03:00    2017-07-22 21:03:00
107047    33936    703    2017-07-22 03:05:00    2017-07-22 03:05:00
107048    33936    936    2017-07-22 20:40:00    2017-07-22 20:40:00
107049    33936    776    2017-07-22 16:39:00    2017-07-22 16:39:00
107050    33937    490    2017-07-22 06:24:00    2017-07-22 06:24:00
107051    33937    939    2017-07-22 12:59:00    2017-07-22 12:59:00
107052    33937    854    2017-07-22 05:31:00    2017-07-22 05:31:00
107053    33937    641    2017-07-22 10:17:00    2017-07-22 10:17:00
107054    33937    942    2017-07-22 04:38:00    2017-07-22 04:38:00
107055    33938    619    2017-07-22 21:31:00    2017-07-22 21:31:00
107056    33938    692    2017-07-22 14:11:00    2017-07-22 14:11:00
107057    33938    820    2017-07-22 19:05:00    2017-07-22 19:05:00
107058    33938    558    2017-07-22 10:07:00    2017-07-22 10:07:00
107059    33938    939    2017-07-22 01:09:00    2017-07-22 01:09:00
107060    33939    782    2017-07-22 07:52:00    2017-07-22 07:52:00
107061    33939    641    2017-07-22 21:34:00    2017-07-22 21:34:00
107062    33939    483    2017-07-22 20:58:00    2017-07-22 20:58:00
107063    33939    482    2017-07-22 21:42:00    2017-07-22 21:42:00
107064    33939    698    2017-07-22 08:05:00    2017-07-22 08:05:00
107065    33940    855    2017-07-22 06:01:00    2017-07-22 06:01:00
107066    33940    779    2017-07-22 21:13:00    2017-07-22 21:13:00
107067    33940    837    2017-07-22 12:54:00    2017-07-22 12:54:00
107068    33940    766    2017-07-22 21:05:00    2017-07-22 21:05:00
107069    33940    880    2017-07-22 08:56:00    2017-07-22 08:56:00
107070    33941    555    2017-07-22 05:16:00    2017-07-22 05:16:00
107071    33941    811    2017-07-22 08:01:00    2017-07-22 08:01:00
107072    33941    692    2017-07-22 14:06:00    2017-07-22 14:06:00
107073    33941    484    2017-07-22 08:03:00    2017-07-22 08:03:00
107074    33941    762    2017-07-22 13:43:00    2017-07-22 13:43:00
107075    33942    958    2017-07-22 04:36:00    2017-07-22 04:36:00
107076    33942    909    2017-07-22 06:07:00    2017-07-22 06:07:00
107077    33942    551    2017-07-22 19:56:00    2017-07-22 19:56:00
107078    33942    685    2017-07-22 03:54:00    2017-07-22 03:54:00
107079    33942    625    2017-07-22 22:23:00    2017-07-22 22:23:00
107080    33943    642    2017-07-22 19:12:00    2017-07-22 19:12:00
107081    33943    600    2017-07-22 13:07:00    2017-07-22 13:07:00
107082    33943    715    2017-07-22 03:49:00    2017-07-22 03:49:00
107083    33943    920    2017-07-22 15:47:00    2017-07-22 15:47:00
107084    33943    506    2017-07-22 14:02:00    2017-07-22 14:02:00
107085    33944    797    2017-07-22 07:45:00    2017-07-22 07:45:00
107086    33944    667    2017-07-22 02:25:00    2017-07-22 02:25:00
107087    33944    851    2017-07-22 14:14:00    2017-07-22 14:14:00
107088    33944    649    2017-07-22 12:51:00    2017-07-22 12:51:00
107089    33944    595    2017-07-22 08:58:00    2017-07-22 08:58:00
107090    33945    750    2017-07-22 07:39:00    2017-07-22 07:39:00
107091    33945    714    2017-07-22 03:52:00    2017-07-22 03:52:00
107092    33945    959    2017-07-22 12:45:00    2017-07-22 12:45:00
107093    33945    754    2017-07-22 05:41:00    2017-07-22 05:41:00
107094    33945    692    2017-07-22 01:41:00    2017-07-22 01:41:00
107095    33946    806    2017-07-22 03:51:00    2017-07-22 03:51:00
107096    33946    662    2017-07-22 10:34:00    2017-07-22 10:34:00
107097    33946    602    2017-07-22 21:19:00    2017-07-22 21:19:00
107098    33946    550    2017-07-22 04:48:00    2017-07-22 04:48:00
107099    33946    653    2017-07-22 18:39:00    2017-07-22 18:39:00
107100    33947    489    2017-07-22 20:49:00    2017-07-22 20:49:00
107101    33947    947    2017-07-22 18:42:00    2017-07-22 18:42:00
107102    33947    754    2017-07-22 04:16:00    2017-07-22 04:16:00
107103    33947    663    2017-07-22 14:57:00    2017-07-22 14:57:00
107104    33947    897    2017-07-22 10:46:00    2017-07-22 10:46:00
107105    33948    777    2017-07-22 01:53:00    2017-07-22 01:53:00
107106    33948    468    2017-07-22 22:18:00    2017-07-22 22:18:00
107107    33948    698    2017-07-22 14:16:00    2017-07-22 14:16:00
107108    33948    585    2017-07-22 11:41:00    2017-07-22 11:41:00
107109    33948    850    2017-07-22 04:25:00    2017-07-22 04:25:00
107110    33949    641    2017-07-22 23:56:00    2017-07-22 23:56:00
107111    33949    559    2017-07-22 15:00:00    2017-07-22 15:00:00
107112    33949    665    2017-07-22 12:58:00    2017-07-22 12:58:00
107113    33949    735    2017-07-22 21:31:00    2017-07-22 21:31:00
107114    33949    927    2017-07-22 22:19:00    2017-07-22 22:19:00
107115    33950    888    2017-07-22 04:25:00    2017-07-22 04:25:00
107116    33950    652    2017-07-22 06:15:00    2017-07-22 06:15:00
107117    33950    604    2017-07-22 09:01:00    2017-07-22 09:01:00
107118    33950    950    2017-07-22 22:44:00    2017-07-22 22:44:00
107119    33950    683    2017-07-22 19:24:00    2017-07-22 19:24:00
107120    33951    857    2017-07-22 14:49:00    2017-07-22 14:49:00
107121    33951    510    2017-07-22 10:07:00    2017-07-22 10:07:00
107122    33951    669    2017-07-22 18:54:00    2017-07-22 18:54:00
107123    33951    751    2017-07-22 23:32:00    2017-07-22 23:32:00
107124    33951    606    2017-07-22 06:30:00    2017-07-22 06:30:00
107125    33952    703    2017-07-22 23:51:00    2017-07-22 23:51:00
107126    33952    514    2017-07-22 08:27:00    2017-07-22 08:27:00
107127    33952    780    2017-07-22 23:12:00    2017-07-22 23:12:00
107128    33952    504    2017-07-22 10:02:00    2017-07-22 10:02:00
107129    33952    708    2017-07-22 10:02:00    2017-07-22 10:02:00
107130    33953    742    2017-07-22 02:51:00    2017-07-22 02:51:00
107131    33953    545    2017-07-22 01:20:00    2017-07-22 01:20:00
107132    33953    927    2017-07-22 04:14:00    2017-07-22 04:14:00
107133    33953    723    2017-07-22 22:17:00    2017-07-22 22:17:00
107134    33953    576    2017-07-22 20:07:00    2017-07-22 20:07:00
107135    33954    617    2017-07-22 07:16:00    2017-07-22 07:16:00
107136    33954    713    2017-07-22 18:24:00    2017-07-22 18:24:00
107137    33954    583    2017-07-22 03:09:00    2017-07-22 03:09:00
107138    33954    557    2017-07-22 07:19:00    2017-07-22 07:19:00
107139    33954    642    2017-07-22 08:42:00    2017-07-22 08:42:00
107140    33955    559    2017-07-22 06:37:00    2017-07-22 06:37:00
107141    33955    884    2017-07-22 19:33:00    2017-07-22 19:33:00
107142    33955    476    2017-07-22 20:02:00    2017-07-22 20:02:00
107143    33955    649    2017-07-22 07:21:00    2017-07-22 07:21:00
107144    33955    807    2017-07-22 05:59:00    2017-07-22 05:59:00
107145    33956    679    2017-07-22 16:06:00    2017-07-22 16:06:00
107146    33956    518    2017-07-22 19:00:00    2017-07-22 19:00:00
107147    33956    915    2017-07-22 16:52:00    2017-07-22 16:52:00
107148    33956    929    2017-07-22 18:02:00    2017-07-22 18:02:00
107149    33956    853    2017-07-22 05:02:00    2017-07-22 05:02:00
107150    33957    527    2017-07-22 18:53:00    2017-07-22 18:53:00
107151    33957    926    2017-07-22 22:43:00    2017-07-22 22:43:00
107152    33957    608    2017-07-22 17:06:00    2017-07-22 17:06:00
107153    33957    637    2017-07-22 10:07:00    2017-07-22 10:07:00
107154    33957    760    2017-07-22 22:09:00    2017-07-22 22:09:00
107155    33958    737    2017-07-22 04:50:00    2017-07-22 04:50:00
107156    33958    867    2017-07-22 06:20:00    2017-07-22 06:20:00
107157    33958    746    2017-07-22 08:44:00    2017-07-22 08:44:00
107158    33958    875    2017-07-22 03:58:00    2017-07-22 03:58:00
107159    33958    727    2017-07-22 09:27:00    2017-07-22 09:27:00
107160    33959    721    2017-07-22 19:42:00    2017-07-22 19:42:00
107161    33959    558    2017-07-22 06:58:00    2017-07-22 06:58:00
107162    33959    537    2017-07-22 20:01:00    2017-07-22 20:01:00
107163    33959    958    2017-07-22 05:07:00    2017-07-22 05:07:00
107164    33959    849    2017-07-22 10:50:00    2017-07-22 10:50:00
107165    33960    472    2017-07-22 04:21:00    2017-07-22 04:21:00
107166    33960    773    2017-07-22 12:21:00    2017-07-22 12:21:00
107167    33960    509    2017-07-22 10:31:00    2017-07-22 10:31:00
107168    33960    714    2017-07-22 09:00:00    2017-07-22 09:00:00
107169    33960    701    2017-07-22 15:59:00    2017-07-22 15:59:00
107170    33961    680    2017-07-22 04:51:00    2017-07-22 04:51:00
107171    33961    937    2017-07-22 08:02:00    2017-07-22 08:02:00
107172    33961    553    2017-07-22 07:21:00    2017-07-22 07:21:00
107173    33961    925    2017-07-22 04:38:00    2017-07-22 04:38:00
107174    33961    840    2017-07-22 13:29:00    2017-07-22 13:29:00
107175    33962    822    2017-07-22 01:38:00    2017-07-22 01:38:00
107176    33962    772    2017-07-22 07:50:00    2017-07-22 07:50:00
107177    33962    584    2017-07-22 04:52:00    2017-07-22 04:52:00
107178    33962    858    2017-07-22 15:44:00    2017-07-22 15:44:00
107179    33962    677    2017-07-22 17:58:00    2017-07-22 17:58:00
107180    33963    842    2017-07-22 12:26:00    2017-07-22 12:26:00
107181    33963    700    2017-07-22 11:46:00    2017-07-22 11:46:00
107182    33963    566    2017-07-22 05:25:00    2017-07-22 05:25:00
107183    33963    867    2017-07-22 15:50:00    2017-07-22 15:50:00
107184    33963    905    2017-07-22 01:44:00    2017-07-22 01:44:00
107185    33964    749    2017-07-22 03:20:00    2017-07-22 03:20:00
107186    33964    786    2017-07-22 14:16:00    2017-07-22 14:16:00
107187    33964    691    2017-07-22 11:36:00    2017-07-22 11:36:00
107188    33964    658    2017-07-22 04:31:00    2017-07-22 04:31:00
107189    33964    542    2017-07-22 23:46:00    2017-07-22 23:46:00
107190    33965    601    2017-07-22 19:45:00    2017-07-22 19:45:00
107191    33965    881    2017-07-22 10:18:00    2017-07-22 10:18:00
107192    33965    709    2017-07-22 12:48:00    2017-07-22 12:48:00
107193    33965    527    2017-07-22 02:59:00    2017-07-22 02:59:00
107194    33965    626    2017-07-22 10:25:00    2017-07-22 10:25:00
107195    33966    531    2017-07-22 09:35:00    2017-07-22 09:35:00
107196    33966    838    2017-07-22 07:17:00    2017-07-22 07:17:00
107197    33966    808    2017-07-22 11:51:00    2017-07-22 11:51:00
107198    33966    682    2017-07-22 04:27:00    2017-07-22 04:27:00
107199    33966    893    2017-07-22 10:01:00    2017-07-22 10:01:00
107200    33967    512    2017-07-22 16:08:00    2017-07-22 16:08:00
107201    33967    634    2017-07-22 09:07:00    2017-07-22 09:07:00
107202    33967    956    2017-07-22 11:29:00    2017-07-22 11:29:00
107203    33967    857    2017-07-22 17:19:00    2017-07-22 17:19:00
107204    33967    776    2017-07-22 16:21:00    2017-07-22 16:21:00
107205    33968    850    2017-07-22 15:40:00    2017-07-22 15:40:00
107206    33968    937    2017-07-22 17:55:00    2017-07-22 17:55:00
107207    33968    523    2017-07-22 08:32:00    2017-07-22 08:32:00
107208    33968    615    2017-07-22 17:06:00    2017-07-22 17:06:00
107209    33968    595    2017-07-22 12:29:00    2017-07-22 12:29:00
107210    33969    528    2017-07-22 11:54:00    2017-07-22 11:54:00
107211    33969    695    2017-07-22 13:45:00    2017-07-22 13:45:00
107212    33969    580    2017-07-22 20:38:00    2017-07-22 20:38:00
107213    33969    621    2017-07-22 11:47:00    2017-07-22 11:47:00
107214    33969    764    2017-07-22 17:29:00    2017-07-22 17:29:00
107215    33970    665    2017-07-22 20:39:00    2017-07-22 20:39:00
107216    33970    700    2017-07-22 20:24:00    2017-07-22 20:24:00
107217    33970    720    2017-07-22 02:03:00    2017-07-22 02:03:00
107218    33970    706    2017-07-22 11:19:00    2017-07-22 11:19:00
107219    33970    694    2017-07-22 12:25:00    2017-07-22 12:25:00
107220    33971    646    2017-07-22 22:16:00    2017-07-22 22:16:00
107221    33971    960    2017-07-22 18:45:00    2017-07-22 18:45:00
107222    33971    925    2017-07-22 12:08:00    2017-07-22 12:08:00
107223    33971    698    2017-07-22 14:50:00    2017-07-22 14:50:00
107224    33971    829    2017-07-22 12:09:00    2017-07-22 12:09:00
107225    33972    722    2017-07-22 15:25:00    2017-07-22 15:25:00
107226    33972    634    2017-07-22 11:44:00    2017-07-22 11:44:00
107227    33972    947    2017-07-22 07:45:00    2017-07-22 07:45:00
107228    33972    726    2017-07-22 19:36:00    2017-07-22 19:36:00
107229    33972    559    2017-07-22 07:17:00    2017-07-22 07:17:00
107230    33973    871    2017-07-22 22:49:00    2017-07-22 22:49:00
107231    33973    598    2017-07-22 22:37:00    2017-07-22 22:37:00
107232    33973    762    2017-07-22 12:34:00    2017-07-22 12:34:00
107233    33973    500    2017-07-22 17:09:00    2017-07-22 17:09:00
107234    33973    590    2017-07-22 04:45:00    2017-07-22 04:45:00
107235    33974    505    2017-07-22 02:57:00    2017-07-22 02:57:00
107236    33974    734    2017-07-22 12:34:00    2017-07-22 12:34:00
107237    33974    914    2017-07-22 09:11:00    2017-07-22 09:11:00
107238    33974    685    2017-07-22 02:28:00    2017-07-22 02:28:00
107239    33974    496    2017-07-22 12:55:00    2017-07-22 12:55:00
107240    33975    554    2017-07-22 20:31:00    2017-07-22 20:31:00
107241    33975    883    2017-07-22 12:50:00    2017-07-22 12:50:00
107242    33975    572    2017-07-22 08:37:00    2017-07-22 08:37:00
107243    33975    546    2017-07-22 15:38:00    2017-07-22 15:38:00
107244    33975    921    2017-07-22 08:42:00    2017-07-22 08:42:00
107245    33976    599    2017-07-22 07:27:00    2017-07-22 07:27:00
107246    33976    526    2017-07-22 04:39:00    2017-07-22 04:39:00
107247    33976    578    2017-07-22 04:43:00    2017-07-22 04:43:00
107248    33976    652    2017-07-22 21:52:00    2017-07-22 21:52:00
107249    33976    958    2017-07-22 23:58:00    2017-07-22 23:58:00
107250    33977    507    2017-07-22 14:42:00    2017-07-22 14:42:00
107251    33977    908    2017-07-22 21:39:00    2017-07-22 21:39:00
107252    33977    648    2017-07-22 08:08:00    2017-07-22 08:08:00
107253    33977    943    2017-07-22 11:15:00    2017-07-22 11:15:00
107254    33977    729    2017-07-22 14:17:00    2017-07-22 14:17:00
107255    33978    961    2017-07-22 07:18:00    2017-07-22 07:18:00
107256    33978    732    2017-07-22 13:22:00    2017-07-22 13:22:00
107257    33978    649    2017-07-22 07:30:00    2017-07-22 07:30:00
107258    33978    688    2017-07-22 02:15:00    2017-07-22 02:15:00
107259    33978    498    2017-07-22 08:26:00    2017-07-22 08:26:00
107260    33979    589    2017-07-22 05:49:00    2017-07-22 05:49:00
107261    33979    924    2017-07-22 03:22:00    2017-07-22 03:22:00
107262    33979    781    2017-07-22 23:02:00    2017-07-22 23:02:00
107263    33979    485    2017-07-22 07:20:00    2017-07-22 07:20:00
107264    33979    700    2017-07-22 07:49:00    2017-07-22 07:49:00
107265    33980    929    2017-07-22 23:27:00    2017-07-22 23:27:00
107266    33980    746    2017-07-22 20:31:00    2017-07-22 20:31:00
107267    33980    526    2017-07-22 13:07:00    2017-07-22 13:07:00
107268    33980    828    2017-07-22 05:21:00    2017-07-22 05:21:00
107269    33980    800    2017-07-22 21:23:00    2017-07-22 21:23:00
107270    33981    776    2017-07-22 07:18:00    2017-07-22 07:18:00
107271    33981    930    2017-07-22 22:11:00    2017-07-22 22:11:00
107272    33981    734    2017-07-22 16:24:00    2017-07-22 16:24:00
107273    33981    571    2017-07-22 10:42:00    2017-07-22 10:42:00
107274    33981    577    2017-07-22 22:59:00    2017-07-22 22:59:00
107275    33982    804    2017-07-22 13:03:00    2017-07-22 13:03:00
107276    33982    787    2017-07-22 20:03:00    2017-07-22 20:03:00
107277    33982    830    2017-07-22 20:07:00    2017-07-22 20:07:00
107278    33982    541    2017-07-22 21:14:00    2017-07-22 21:14:00
107279    33982    571    2017-07-22 18:32:00    2017-07-22 18:32:00
107280    33983    644    2017-07-22 13:34:00    2017-07-22 13:34:00
107281    33983    474    2017-07-22 14:07:00    2017-07-22 14:07:00
107282    33983    508    2017-07-22 16:38:00    2017-07-22 16:38:00
107283    33983    515    2017-07-22 10:00:00    2017-07-22 10:00:00
107284    33983    637    2017-07-22 21:01:00    2017-07-22 21:01:00
107285    33984    924    2017-07-22 10:06:00    2017-07-22 10:06:00
107286    33984    953    2017-07-22 14:03:00    2017-07-22 14:03:00
107287    33984    670    2017-07-22 03:07:00    2017-07-22 03:07:00
107288    33984    615    2017-07-22 20:33:00    2017-07-22 20:33:00
107289    33984    497    2017-07-22 13:00:00    2017-07-22 13:00:00
107290    33985    597    2017-07-22 12:05:00    2017-07-22 12:05:00
107291    33985    795    2017-07-22 10:49:00    2017-07-22 10:49:00
107292    33985    960    2017-07-22 15:21:00    2017-07-22 15:21:00
107293    33985    559    2017-07-22 20:53:00    2017-07-22 20:53:00
107294    33985    697    2017-07-22 17:17:00    2017-07-22 17:17:00
107295    33986    830    2017-07-22 14:02:00    2017-07-22 14:02:00
107296    33986    666    2017-07-22 05:41:00    2017-07-22 05:41:00
107297    33986    763    2017-07-22 21:11:00    2017-07-22 21:11:00
107298    33986    851    2017-07-22 18:35:00    2017-07-22 18:35:00
107299    33986    622    2017-07-22 12:18:00    2017-07-22 12:18:00
107300    33987    804    2017-07-22 20:00:00    2017-07-22 20:00:00
107301    33987    691    2017-07-22 03:18:00    2017-07-22 03:18:00
107302    33987    890    2017-07-22 08:46:00    2017-07-22 08:46:00
107303    33987    475    2017-07-22 06:54:00    2017-07-22 06:54:00
107304    33987    791    2017-07-22 03:25:00    2017-07-22 03:25:00
107305    33988    937    2017-07-22 21:03:00    2017-07-22 21:03:00
107306    33988    737    2017-07-22 01:21:00    2017-07-22 01:21:00
107307    33988    490    2017-07-22 17:29:00    2017-07-22 17:29:00
107308    33988    591    2017-07-22 05:33:00    2017-07-22 05:33:00
107309    33988    644    2017-07-22 01:20:00    2017-07-22 01:20:00
107310    33989    615    2017-07-22 01:36:00    2017-07-22 01:36:00
107311    33989    666    2017-07-22 20:57:00    2017-07-22 20:57:00
107312    33989    652    2017-07-22 12:20:00    2017-07-22 12:20:00
107313    33989    591    2017-07-22 18:09:00    2017-07-22 18:09:00
107314    33989    713    2017-07-22 15:27:00    2017-07-22 15:27:00
107315    33990    761    2017-07-22 09:43:00    2017-07-22 09:43:00
107316    33990    611    2017-07-22 22:29:00    2017-07-22 22:29:00
107317    33990    709    2017-07-22 10:26:00    2017-07-22 10:26:00
107318    33990    476    2017-07-22 22:56:00    2017-07-22 22:56:00
107319    33990    847    2017-07-22 18:15:00    2017-07-22 18:15:00
107320    33991    508    2017-07-22 20:24:00    2017-07-22 20:24:00
107321    33991    579    2017-07-22 14:29:00    2017-07-22 14:29:00
107322    33991    519    2017-07-22 20:48:00    2017-07-22 20:48:00
107323    33991    705    2017-07-22 19:37:00    2017-07-22 19:37:00
107324    33991    663    2017-07-22 19:47:00    2017-07-22 19:47:00
107325    33992    549    2017-07-22 17:36:00    2017-07-22 17:36:00
107326    33992    578    2017-07-22 19:23:00    2017-07-22 19:23:00
107327    33992    903    2017-07-22 09:45:00    2017-07-22 09:45:00
107328    33992    857    2017-07-22 09:20:00    2017-07-22 09:20:00
107329    33992    624    2017-07-22 08:26:00    2017-07-22 08:26:00
107330    33993    788    2017-07-22 01:59:00    2017-07-22 01:59:00
107331    33993    761    2017-07-22 09:28:00    2017-07-22 09:28:00
107332    33993    716    2017-07-22 15:47:00    2017-07-22 15:47:00
107333    33993    866    2017-07-22 10:06:00    2017-07-22 10:06:00
107334    33993    649    2017-07-23 00:00:00    2017-07-23 00:00:00
107335    33994    928    2017-07-22 02:22:00    2017-07-22 02:22:00
107336    33994    834    2017-07-22 23:48:00    2017-07-22 23:48:00
107337    33994    584    2017-07-22 07:18:00    2017-07-22 07:18:00
107338    33994    594    2017-07-22 08:07:00    2017-07-22 08:07:00
107339    33994    685    2017-07-22 10:39:00    2017-07-22 10:39:00
107340    33995    897    2017-07-22 13:00:00    2017-07-22 13:00:00
107341    33995    587    2017-07-22 09:18:00    2017-07-22 09:18:00
107342    33995    925    2017-07-22 12:53:00    2017-07-22 12:53:00
107343    33995    707    2017-07-22 22:44:00    2017-07-22 22:44:00
107344    33995    799    2017-07-22 06:44:00    2017-07-22 06:44:00
107345    33996    667    2017-07-22 21:37:00    2017-07-22 21:37:00
107346    33996    859    2017-07-22 07:39:00    2017-07-22 07:39:00
107347    33996    769    2017-07-22 21:32:00    2017-07-22 21:32:00
107348    33996    778    2017-07-22 23:03:00    2017-07-22 23:03:00
107349    33996    726    2017-07-22 22:41:00    2017-07-22 22:41:00
107350    33997    919    2017-07-22 03:21:00    2017-07-22 03:21:00
107351    33997    749    2017-07-22 09:55:00    2017-07-22 09:55:00
107352    33997    621    2017-07-22 16:45:00    2017-07-22 16:45:00
107353    33997    524    2017-07-22 07:57:00    2017-07-22 07:57:00
107354    33997    495    2017-07-22 04:51:00    2017-07-22 04:51:00
107355    33998    819    2017-07-22 07:03:00    2017-07-22 07:03:00
107356    33998    505    2017-07-22 05:34:00    2017-07-22 05:34:00
107357    33998    787    2017-07-22 12:51:00    2017-07-22 12:51:00
107358    33998    536    2017-07-22 18:26:00    2017-07-22 18:26:00
107359    33998    673    2017-07-22 17:22:00    2017-07-22 17:22:00
107360    33999    692    2017-07-22 01:04:00    2017-07-22 01:04:00
107361    33999    925    2017-07-22 11:52:00    2017-07-22 11:52:00
107362    33999    691    2017-07-22 19:26:00    2017-07-22 19:26:00
107363    33999    464    2017-07-22 16:59:00    2017-07-22 16:59:00
107364    33999    912    2017-07-22 18:09:00    2017-07-22 18:09:00
107365    34000    674    2017-07-22 13:09:00    2017-07-22 13:09:00
107366    34000    558    2017-07-22 04:55:00    2017-07-22 04:55:00
107367    34000    943    2017-07-22 15:15:00    2017-07-22 15:15:00
107368    34000    715    2017-07-22 10:24:00    2017-07-22 10:24:00
107369    34000    725    2017-07-22 14:26:00    2017-07-22 14:26:00
107370    34001    866    2017-07-22 05:51:00    2017-07-22 05:51:00
107371    34001    957    2017-07-22 04:03:00    2017-07-22 04:03:00
107372    34001    935    2017-07-22 09:23:00    2017-07-22 09:23:00
107373    34001    551    2017-07-22 11:42:00    2017-07-22 11:42:00
107374    34001    763    2017-07-22 09:48:00    2017-07-22 09:48:00
107375    34002    755    2017-07-22 01:15:00    2017-07-22 01:15:00
107376    34002    464    2017-07-22 08:22:00    2017-07-22 08:22:00
107377    34002    711    2017-07-22 17:04:00    2017-07-22 17:04:00
107378    34002    865    2017-07-22 11:29:00    2017-07-22 11:29:00
107379    34002    588    2017-07-22 21:48:00    2017-07-22 21:48:00
107380    34003    954    2017-07-22 17:20:00    2017-07-22 17:20:00
107381    34003    668    2017-07-22 01:46:00    2017-07-22 01:46:00
107382    34003    669    2017-07-22 13:28:00    2017-07-22 13:28:00
107383    34003    588    2017-07-22 02:21:00    2017-07-22 02:21:00
107384    34003    895    2017-07-22 10:54:00    2017-07-22 10:54:00
107385    34004    650    2017-07-22 17:58:00    2017-07-22 17:58:00
107386    34004    936    2017-07-22 08:22:00    2017-07-22 08:22:00
107387    34004    517    2017-07-22 02:06:00    2017-07-22 02:06:00
107388    34004    906    2017-07-22 16:34:00    2017-07-22 16:34:00
107389    34004    634    2017-07-22 05:17:00    2017-07-22 05:17:00
107390    34005    773    2017-07-22 12:14:00    2017-07-22 12:14:00
107391    34005    752    2017-07-22 08:52:00    2017-07-22 08:52:00
107392    34005    936    2017-07-22 22:50:00    2017-07-22 22:50:00
107393    34005    841    2017-07-22 04:01:00    2017-07-22 04:01:00
107394    34005    580    2017-07-22 06:29:00    2017-07-22 06:29:00
107395    34006    808    2017-07-22 12:07:00    2017-07-22 12:07:00
107396    34006    893    2017-07-22 02:46:00    2017-07-22 02:46:00
107397    34006    826    2017-07-22 23:20:00    2017-07-22 23:20:00
107398    34006    894    2017-07-22 17:46:00    2017-07-22 17:46:00
107399    34006    721    2017-07-22 07:10:00    2017-07-22 07:10:00
107400    34007    935    2017-07-22 14:51:00    2017-07-22 14:51:00
107401    34007    599    2017-07-22 02:35:00    2017-07-22 02:35:00
107402    34007    796    2017-07-22 01:23:00    2017-07-22 01:23:00
107403    34007    868    2017-07-22 15:57:00    2017-07-22 15:57:00
107404    34007    955    2017-07-22 04:18:00    2017-07-22 04:18:00
107405    34008    876    2017-07-22 23:43:00    2017-07-22 23:43:00
107406    34008    758    2017-07-22 11:15:00    2017-07-22 11:15:00
107407    34008    527    2017-07-22 05:49:00    2017-07-22 05:49:00
107408    34008    853    2017-07-22 17:27:00    2017-07-22 17:27:00
107409    34008    497    2017-07-22 12:46:00    2017-07-22 12:46:00
107410    34009    472    2017-07-22 23:54:00    2017-07-22 23:54:00
107411    34009    544    2017-07-22 13:40:00    2017-07-22 13:40:00
107412    34009    551    2017-07-22 06:05:00    2017-07-22 06:05:00
107413    34009    607    2017-07-22 23:06:00    2017-07-22 23:06:00
107414    34009    542    2017-07-22 17:23:00    2017-07-22 17:23:00
107415    34010    816    2017-07-22 16:21:00    2017-07-22 16:21:00
107416    34010    846    2017-07-22 05:54:00    2017-07-22 05:54:00
107417    34010    742    2017-07-22 13:26:00    2017-07-22 13:26:00
107418    34010    931    2017-07-22 18:32:00    2017-07-22 18:32:00
107419    34010    587    2017-07-22 17:13:00    2017-07-22 17:13:00
107420    34011    935    2017-07-22 13:38:00    2017-07-22 13:38:00
107421    34011    776    2017-07-22 06:17:00    2017-07-22 06:17:00
107422    34011    784    2017-07-22 13:59:00    2017-07-22 13:59:00
107423    34011    814    2017-07-22 20:39:00    2017-07-22 20:39:00
107424    34011    892    2017-07-22 19:27:00    2017-07-22 19:27:00
107425    34012    625    2017-07-22 21:39:00    2017-07-22 21:39:00
107426    34012    652    2017-07-22 23:36:00    2017-07-22 23:36:00
107427    34012    728    2017-07-22 14:59:00    2017-07-22 14:59:00
107428    34012    665    2017-07-22 07:49:00    2017-07-22 07:49:00
107429    34012    870    2017-07-22 05:32:00    2017-07-22 05:32:00
107430    34013    503    2017-07-22 18:18:00    2017-07-22 18:18:00
107431    34013    816    2017-07-22 04:15:00    2017-07-22 04:15:00
107432    34013    724    2017-07-22 23:04:00    2017-07-22 23:04:00
107433    34013    548    2017-07-22 06:48:00    2017-07-22 06:48:00
107434    34013    666    2017-07-22 20:39:00    2017-07-22 20:39:00
107435    34014    735    2017-07-22 14:51:00    2017-07-22 14:51:00
107436    34014    518    2017-07-22 21:35:00    2017-07-22 21:35:00
107437    34014    489    2017-07-22 01:35:00    2017-07-22 01:35:00
107438    34014    575    2017-07-22 19:43:00    2017-07-22 19:43:00
107439    34014    634    2017-07-22 06:34:00    2017-07-22 06:34:00
107440    34015    597    2017-07-22 06:02:00    2017-07-22 06:02:00
107441    34015    605    2017-07-22 18:21:00    2017-07-22 18:21:00
107442    34015    485    2017-07-22 21:38:00    2017-07-22 21:38:00
107443    34015    558    2017-07-22 10:46:00    2017-07-22 10:46:00
107444    34015    730    2017-07-22 18:19:00    2017-07-22 18:19:00
107445    34016    904    2017-07-22 08:01:00    2017-07-22 08:01:00
107446    34016    486    2017-07-22 23:39:00    2017-07-22 23:39:00
107447    34016    791    2017-07-22 01:45:00    2017-07-22 01:45:00
107448    34016    540    2017-07-22 20:30:00    2017-07-22 20:30:00
107449    34016    560    2017-07-22 17:46:00    2017-07-22 17:46:00
107450    34017    478    2017-07-22 16:08:00    2017-07-22 16:08:00
107451    34017    887    2017-07-22 04:57:00    2017-07-22 04:57:00
107452    34017    953    2017-07-22 08:40:00    2017-07-22 08:40:00
107453    34017    568    2017-07-22 09:47:00    2017-07-22 09:47:00
107454    34017    946    2017-07-22 23:54:00    2017-07-22 23:54:00
107455    34018    640    2017-07-22 08:53:00    2017-07-22 08:53:00
107456    34018    755    2017-07-22 19:15:00    2017-07-22 19:15:00
107457    34018    515    2017-07-22 08:01:00    2017-07-22 08:01:00
107458    34018    730    2017-07-22 12:27:00    2017-07-22 12:27:00
107459    34018    668    2017-07-22 06:53:00    2017-07-22 06:53:00
107460    34019    550    2017-07-22 15:45:00    2017-07-22 15:45:00
107461    34019    812    2017-07-22 13:17:00    2017-07-22 13:17:00
107462    34019    517    2017-07-22 20:16:00    2017-07-22 20:16:00
107463    34019    767    2017-07-22 04:58:00    2017-07-22 04:58:00
107464    34019    757    2017-07-22 21:00:00    2017-07-22 21:00:00
107465    34020    717    2017-07-22 16:46:00    2017-07-22 16:46:00
107466    34020    920    2017-07-22 19:33:00    2017-07-22 19:33:00
107467    34020    726    2017-07-22 13:06:00    2017-07-22 13:06:00
107468    34020    733    2017-07-22 13:54:00    2017-07-22 13:54:00
107469    34020    839    2017-07-22 04:05:00    2017-07-22 04:05:00
107470    34021    894    2017-07-22 20:32:00    2017-07-22 20:32:00
107471    34021    552    2017-07-22 19:11:00    2017-07-22 19:11:00
107472    34021    477    2017-07-22 22:28:00    2017-07-22 22:28:00
107473    34021    647    2017-07-22 13:23:00    2017-07-22 13:23:00
107474    34021    750    2017-07-22 19:12:00    2017-07-22 19:12:00
107475    34022    726    2017-07-22 19:53:00    2017-07-22 19:53:00
107476    34022    542    2017-07-22 12:17:00    2017-07-22 12:17:00
107477    34022    470    2017-07-22 01:07:00    2017-07-22 01:07:00
107478    34022    892    2017-07-22 23:15:00    2017-07-22 23:15:00
107479    34022    837    2017-07-22 02:31:00    2017-07-22 02:31:00
107480    34023    874    2017-07-22 22:35:00    2017-07-22 22:35:00
107481    34023    565    2017-07-22 15:56:00    2017-07-22 15:56:00
107482    34023    850    2017-07-22 17:37:00    2017-07-22 17:37:00
107483    34023    533    2017-07-22 11:22:00    2017-07-22 11:22:00
107484    34023    573    2017-07-22 15:06:00    2017-07-22 15:06:00
107485    34024    926    2017-07-22 08:00:00    2017-07-22 08:00:00
107486    34024    506    2017-07-22 23:42:00    2017-07-22 23:42:00
107487    34024    640    2017-07-22 16:13:00    2017-07-22 16:13:00
107488    34024    581    2017-07-22 23:01:00    2017-07-22 23:01:00
107489    34024    862    2017-07-22 18:21:00    2017-07-22 18:21:00
107490    34025    581    2017-07-23 02:04:00    2017-07-23 02:04:00
107491    34025    893    2017-07-23 09:35:00    2017-07-23 09:35:00
107492    34025    868    2017-07-23 22:03:00    2017-07-23 22:03:00
107493    34025    599    2017-07-23 15:54:00    2017-07-23 15:54:00
107494    34025    511    2017-07-23 20:35:00    2017-07-23 20:35:00
107495    34026    531    2017-07-23 22:54:00    2017-07-23 22:54:00
107496    34026    933    2017-07-23 09:01:00    2017-07-23 09:01:00
107497    34026    616    2017-07-23 02:53:00    2017-07-23 02:53:00
107498    34026    627    2017-07-23 02:01:00    2017-07-23 02:01:00
107499    34026    635    2017-07-23 06:02:00    2017-07-23 06:02:00
107500    34027    499    2017-07-23 04:15:00    2017-07-23 04:15:00
107501    34027    768    2017-07-23 17:22:00    2017-07-23 17:22:00
107502    34027    524    2017-07-23 06:42:00    2017-07-23 06:42:00
107503    34027    900    2017-07-23 05:46:00    2017-07-23 05:46:00
107504    34027    556    2017-07-23 04:29:00    2017-07-23 04:29:00
107505    34028    961    2017-07-23 13:32:00    2017-07-23 13:32:00
107506    34028    765    2017-07-23 03:19:00    2017-07-23 03:19:00
107507    34028    555    2017-07-23 05:50:00    2017-07-23 05:50:00
107508    34028    797    2017-07-23 10:12:00    2017-07-23 10:12:00
107509    34028    771    2017-07-23 08:53:00    2017-07-23 08:53:00
107510    34029    918    2017-07-23 01:49:00    2017-07-23 01:49:00
107511    34029    674    2017-07-23 05:33:00    2017-07-23 05:33:00
107512    34029    639    2017-07-23 08:38:00    2017-07-23 08:38:00
107513    34029    557    2017-07-23 16:43:00    2017-07-23 16:43:00
107514    34029    889    2017-07-23 15:32:00    2017-07-23 15:32:00
107515    34030    705    2017-07-23 07:50:00    2017-07-23 07:50:00
107516    34030    742    2017-07-23 22:46:00    2017-07-23 22:46:00
107517    34030    511    2017-07-23 18:13:00    2017-07-23 18:13:00
107518    34030    490    2017-07-23 19:14:00    2017-07-23 19:14:00
107519    34030    857    2017-07-23 04:23:00    2017-07-23 04:23:00
107520    34031    533    2017-07-23 06:52:00    2017-07-23 06:52:00
107521    34031    519    2017-07-23 19:12:00    2017-07-23 19:12:00
107522    34031    624    2017-07-23 09:54:00    2017-07-23 09:54:00
107523    34031    756    2017-07-23 15:32:00    2017-07-23 15:32:00
107524    34031    514    2017-07-23 11:14:00    2017-07-23 11:14:00
107525    34032    896    2017-07-23 05:42:00    2017-07-23 05:42:00
107526    34032    641    2017-07-23 17:57:00    2017-07-23 17:57:00
107527    34032    811    2017-07-23 11:01:00    2017-07-23 11:01:00
107528    34032    658    2017-07-23 12:49:00    2017-07-23 12:49:00
107529    34032    536    2017-07-23 15:33:00    2017-07-23 15:33:00
107530    34033    844    2017-07-23 08:41:00    2017-07-23 08:41:00
107531    34033    888    2017-07-23 19:12:00    2017-07-23 19:12:00
107532    34033    779    2017-07-23 06:13:00    2017-07-23 06:13:00
107533    34033    879    2017-07-23 01:31:00    2017-07-23 01:31:00
107534    34033    534    2017-07-23 04:43:00    2017-07-23 04:43:00
107535    34034    889    2017-07-23 04:40:00    2017-07-23 04:40:00
107536    34034    582    2017-07-23 12:50:00    2017-07-23 12:50:00
107537    34034    659    2017-07-23 17:49:00    2017-07-23 17:49:00
107538    34034    512    2017-07-23 19:26:00    2017-07-23 19:26:00
107539    34034    669    2017-07-23 17:41:00    2017-07-23 17:41:00
107540    34035    667    2017-07-23 05:21:00    2017-07-23 05:21:00
107541    34035    617    2017-07-23 18:26:00    2017-07-23 18:26:00
107542    34035    545    2017-07-23 12:00:00    2017-07-23 12:00:00
107543    34035    838    2017-07-23 03:07:00    2017-07-23 03:07:00
107544    34035    795    2017-07-23 05:00:00    2017-07-23 05:00:00
107545    34036    550    2017-07-23 05:29:00    2017-07-23 05:29:00
107546    34036    833    2017-07-23 10:43:00    2017-07-23 10:43:00
107547    34036    957    2017-07-23 10:10:00    2017-07-23 10:10:00
107548    34036    737    2017-07-23 04:11:00    2017-07-23 04:11:00
107549    34036    942    2017-07-23 09:51:00    2017-07-23 09:51:00
107550    34037    670    2017-07-23 09:21:00    2017-07-23 09:21:00
107551    34037    865    2017-07-23 22:54:00    2017-07-23 22:54:00
107552    34037    718    2017-07-23 04:55:00    2017-07-23 04:55:00
107553    34037    759    2017-07-23 15:19:00    2017-07-23 15:19:00
107554    34037    934    2017-07-23 04:19:00    2017-07-23 04:19:00
107555    34038    520    2017-07-23 03:45:00    2017-07-23 03:45:00
107556    34038    777    2017-07-23 01:54:00    2017-07-23 01:54:00
107557    34038    694    2017-07-23 02:10:00    2017-07-23 02:10:00
107558    34038    935    2017-07-23 21:04:00    2017-07-23 21:04:00
107559    34038    530    2017-07-23 12:10:00    2017-07-23 12:10:00
107560    34039    611    2017-07-23 06:19:00    2017-07-23 06:19:00
107561    34039    571    2017-07-23 19:25:00    2017-07-23 19:25:00
107562    34039    698    2017-07-23 10:00:00    2017-07-23 10:00:00
107563    34039    536    2017-07-23 10:00:00    2017-07-23 10:00:00
107564    34039    687    2017-07-23 20:31:00    2017-07-23 20:31:00
107565    34040    598    2017-07-23 23:49:00    2017-07-23 23:49:00
107566    34040    732    2017-07-23 03:39:00    2017-07-23 03:39:00
107567    34040    778    2017-07-23 13:57:00    2017-07-23 13:57:00
107568    34040    597    2017-07-23 01:11:00    2017-07-23 01:11:00
107569    34040    722    2017-07-23 15:19:00    2017-07-23 15:19:00
107570    34041    568    2017-07-23 19:31:00    2017-07-23 19:31:00
107571    34041    723    2017-07-23 22:46:00    2017-07-23 22:46:00
107572    34041    571    2017-07-23 19:45:00    2017-07-23 19:45:00
107573    34041    733    2017-07-23 02:56:00    2017-07-23 02:56:00
107574    34041    926    2017-07-23 01:10:00    2017-07-23 01:10:00
107575    34042    672    2017-07-23 21:42:00    2017-07-23 21:42:00
107576    34042    475    2017-07-23 08:05:00    2017-07-23 08:05:00
107577    34042    847    2017-07-23 16:54:00    2017-07-23 16:54:00
107578    34042    937    2017-07-23 21:53:00    2017-07-23 21:53:00
107579    34042    469    2017-07-23 19:54:00    2017-07-23 19:54:00
107580    34043    922    2017-07-23 12:02:00    2017-07-23 12:02:00
107581    34043    851    2017-07-23 12:50:00    2017-07-23 12:50:00
107582    34043    682    2017-07-23 09:55:00    2017-07-23 09:55:00
107583    34043    897    2017-07-23 06:06:00    2017-07-23 06:06:00
107584    34043    711    2017-07-23 10:05:00    2017-07-23 10:05:00
107585    34044    537    2017-07-23 21:00:00    2017-07-23 21:00:00
107586    34044    467    2017-07-23 17:11:00    2017-07-23 17:11:00
107587    34044    948    2017-07-23 01:36:00    2017-07-23 01:36:00
107588    34044    888    2017-07-23 20:54:00    2017-07-23 20:54:00
107589    34044    960    2017-07-23 17:01:00    2017-07-23 17:01:00
107590    34045    644    2017-07-23 22:33:00    2017-07-23 22:33:00
107591    34045    818    2017-07-23 21:38:00    2017-07-23 21:38:00
107592    34045    540    2017-07-23 04:56:00    2017-07-23 04:56:00
107593    34045    522    2017-07-23 06:50:00    2017-07-23 06:50:00
107594    34045    493    2017-07-23 23:50:00    2017-07-23 23:50:00
107595    34046    534    2017-07-23 15:29:00    2017-07-23 15:29:00
107596    34046    613    2017-07-23 05:04:00    2017-07-23 05:04:00
107597    34046    637    2017-07-23 16:53:00    2017-07-23 16:53:00
107598    34046    892    2017-07-23 01:45:00    2017-07-23 01:45:00
107599    34046    553    2017-07-23 11:49:00    2017-07-23 11:49:00
107600    34047    695    2017-07-23 16:50:00    2017-07-23 16:50:00
107601    34047    582    2017-07-23 06:23:00    2017-07-23 06:23:00
107602    34047    587    2017-07-23 01:45:00    2017-07-23 01:45:00
107603    34047    477    2017-07-23 14:14:00    2017-07-23 14:14:00
107604    34047    742    2017-07-23 15:42:00    2017-07-23 15:42:00
107605    34048    734    2017-07-23 05:16:00    2017-07-23 05:16:00
107606    34048    954    2017-07-23 07:11:00    2017-07-23 07:11:00
107607    34048    540    2017-07-23 13:37:00    2017-07-23 13:37:00
107608    34048    753    2017-07-23 12:24:00    2017-07-23 12:24:00
107609    34048    802    2017-07-23 04:42:00    2017-07-23 04:42:00
107610    34049    861    2017-07-23 13:42:00    2017-07-23 13:42:00
107611    34049    896    2017-07-23 12:23:00    2017-07-23 12:23:00
107612    34049    825    2017-07-23 21:21:00    2017-07-23 21:21:00
107613    34049    829    2017-07-23 19:52:00    2017-07-23 19:52:00
107614    34049    801    2017-07-23 16:47:00    2017-07-23 16:47:00
107615    34050    852    2017-07-23 02:55:00    2017-07-23 02:55:00
107616    34050    545    2017-07-23 01:51:00    2017-07-23 01:51:00
107617    34050    652    2017-07-23 12:25:00    2017-07-23 12:25:00
107618    34050    521    2017-07-23 15:26:00    2017-07-23 15:26:00
107619    34050    694    2017-07-23 21:21:00    2017-07-23 21:21:00
107620    34051    787    2017-07-23 08:51:00    2017-07-23 08:51:00
107621    34051    596    2017-07-23 05:11:00    2017-07-23 05:11:00
107622    34051    724    2017-07-23 23:21:00    2017-07-23 23:21:00
107623    34051    487    2017-07-23 01:01:00    2017-07-23 01:01:00
107624    34051    497    2017-07-23 06:12:00    2017-07-23 06:12:00
107625    34052    483    2017-07-23 03:11:00    2017-07-23 03:11:00
107626    34052    921    2017-07-23 07:14:00    2017-07-23 07:14:00
107627    34052    910    2017-07-23 13:22:00    2017-07-23 13:22:00
107628    34052    840    2017-07-23 01:12:00    2017-07-23 01:12:00
107629    34052    944    2017-07-23 07:51:00    2017-07-23 07:51:00
107630    34053    557    2017-07-23 04:03:00    2017-07-23 04:03:00
107631    34053    685    2017-07-23 18:38:00    2017-07-23 18:38:00
107632    34053    709    2017-07-23 01:27:00    2017-07-23 01:27:00
107633    34053    918    2017-07-23 02:24:00    2017-07-23 02:24:00
107634    34053    749    2017-07-23 16:20:00    2017-07-23 16:20:00
107635    34054    507    2017-07-23 18:20:00    2017-07-23 18:20:00
107636    34054    705    2017-07-23 11:14:00    2017-07-23 11:14:00
107637    34054    714    2017-07-23 20:27:00    2017-07-23 20:27:00
107638    34054    765    2017-07-23 09:48:00    2017-07-23 09:48:00
107639    34054    677    2017-07-23 02:25:00    2017-07-23 02:25:00
107640    34055    485    2017-07-23 17:32:00    2017-07-23 17:32:00
107641    34055    851    2017-07-23 10:12:00    2017-07-23 10:12:00
107642    34055    907    2017-07-23 01:40:00    2017-07-23 01:40:00
107643    34055    847    2017-07-23 04:56:00    2017-07-23 04:56:00
107644    34055    818    2017-07-23 07:24:00    2017-07-23 07:24:00
107645    34056    890    2017-07-23 01:21:00    2017-07-23 01:21:00
107646    34056    886    2017-07-23 02:41:00    2017-07-23 02:41:00
107647    34056    475    2017-07-23 02:58:00    2017-07-23 02:58:00
107648    34056    956    2017-07-23 12:12:00    2017-07-23 12:12:00
107649    34056    493    2017-07-23 09:06:00    2017-07-23 09:06:00
107650    34057    870    2017-07-23 08:38:00    2017-07-23 08:38:00
107651    34057    544    2017-07-23 03:37:00    2017-07-23 03:37:00
107652    34057    808    2017-07-23 23:38:00    2017-07-23 23:38:00
107653    34057    562    2017-07-23 01:13:00    2017-07-23 01:13:00
107654    34057    769    2017-07-23 15:00:00    2017-07-23 15:00:00
107655    34058    536    2017-07-23 07:03:00    2017-07-23 07:03:00
107656    34058    892    2017-07-23 05:42:00    2017-07-23 05:42:00
107657    34058    860    2017-07-23 12:49:00    2017-07-23 12:49:00
107658    34058    840    2017-07-23 11:06:00    2017-07-23 11:06:00
107659    34058    886    2017-07-23 03:40:00    2017-07-23 03:40:00
107660    34059    569    2017-07-23 12:17:00    2017-07-23 12:17:00
107661    34059    751    2017-07-23 10:17:00    2017-07-23 10:17:00
107662    34059    516    2017-07-23 07:56:00    2017-07-23 07:56:00
107663    34059    885    2017-07-23 02:12:00    2017-07-23 02:12:00
107664    34059    959    2017-07-23 06:08:00    2017-07-23 06:08:00
107665    34060    659    2017-07-23 15:10:00    2017-07-23 15:10:00
107666    34060    638    2017-07-23 03:08:00    2017-07-23 03:08:00
107667    34060    951    2017-07-23 11:59:00    2017-07-23 11:59:00
107668    34060    769    2017-07-23 13:51:00    2017-07-23 13:51:00
107669    34060    483    2017-07-23 08:27:00    2017-07-23 08:27:00
107670    34061    788    2017-07-23 01:27:00    2017-07-23 01:27:00
107671    34061    609    2017-07-23 23:08:00    2017-07-23 23:08:00
107672    34061    899    2017-07-23 19:56:00    2017-07-23 19:56:00
107673    34061    737    2017-07-23 07:26:00    2017-07-23 07:26:00
107674    34061    667    2017-07-23 19:53:00    2017-07-23 19:53:00
107675    34062    958    2017-07-23 15:00:00    2017-07-23 15:00:00
107676    34062    681    2017-07-23 21:11:00    2017-07-23 21:11:00
107677    34062    539    2017-07-23 23:50:00    2017-07-23 23:50:00
107678    34062    868    2017-07-23 16:30:00    2017-07-23 16:30:00
107679    34062    553    2017-07-23 09:19:00    2017-07-23 09:19:00
107680    34063    808    2017-07-23 11:22:00    2017-07-23 11:22:00
107681    34063    752    2017-07-23 07:20:00    2017-07-23 07:20:00
107682    34063    690    2017-07-23 04:57:00    2017-07-23 04:57:00
107683    34063    821    2017-07-23 06:22:00    2017-07-23 06:22:00
107684    34063    655    2017-07-23 13:22:00    2017-07-23 13:22:00
107685    34064    699    2017-07-23 14:35:00    2017-07-23 14:35:00
107686    34064    961    2017-07-23 15:42:00    2017-07-23 15:42:00
107687    34064    778    2017-07-23 14:49:00    2017-07-23 14:49:00
107688    34064    477    2017-07-23 20:55:00    2017-07-23 20:55:00
107689    34064    767    2017-07-23 07:11:00    2017-07-23 07:11:00
107690    34065    862    2017-07-23 02:45:00    2017-07-23 02:45:00
107691    34065    793    2017-07-23 02:45:00    2017-07-23 02:45:00
107692    34065    911    2017-07-23 07:39:00    2017-07-23 07:39:00
107693    34065    939    2017-07-23 13:57:00    2017-07-23 13:57:00
107694    34065    925    2017-07-23 19:12:00    2017-07-23 19:12:00
107695    34066    707    2017-07-23 10:15:00    2017-07-23 10:15:00
107696    34066    650    2017-07-23 17:38:00    2017-07-23 17:38:00
107697    34066    765    2017-07-23 12:29:00    2017-07-23 12:29:00
107698    34066    728    2017-07-23 05:57:00    2017-07-23 05:57:00
107699    34066    782    2017-07-23 18:46:00    2017-07-23 18:46:00
107700    34067    862    2017-07-23 19:51:00    2017-07-23 19:51:00
107701    34067    617    2017-07-23 05:01:00    2017-07-23 05:01:00
107702    34067    521    2017-07-23 20:00:00    2017-07-23 20:00:00
107703    34067    940    2017-07-23 03:31:00    2017-07-23 03:31:00
107704    34067    895    2017-07-23 04:07:00    2017-07-23 04:07:00
107705    34068    610    2017-07-23 08:38:00    2017-07-23 08:38:00
107706    34068    923    2017-07-23 18:27:00    2017-07-23 18:27:00
107707    34068    491    2017-07-23 19:20:00    2017-07-23 19:20:00
107708    34068    782    2017-07-23 08:56:00    2017-07-23 08:56:00
107709    34068    884    2017-07-23 15:30:00    2017-07-23 15:30:00
107710    34069    588    2017-07-23 01:01:00    2017-07-23 01:01:00
107711    34069    647    2017-07-23 07:58:00    2017-07-23 07:58:00
107712    34069    578    2017-07-23 15:57:00    2017-07-23 15:57:00
107713    34069    774    2017-07-23 16:30:00    2017-07-23 16:30:00
107714    34069    561    2017-07-23 01:31:00    2017-07-23 01:31:00
107715    34070    466    2017-07-23 20:06:00    2017-07-23 20:06:00
107716    34070    552    2017-07-23 05:07:00    2017-07-23 05:07:00
107717    34070    522    2017-07-23 07:09:00    2017-07-23 07:09:00
107718    34070    572    2017-07-23 18:49:00    2017-07-23 18:49:00
107719    34070    623    2017-07-23 13:18:00    2017-07-23 13:18:00
107720    34071    770    2017-07-23 08:11:00    2017-07-23 08:11:00
107721    34071    959    2017-07-23 07:25:00    2017-07-23 07:25:00
107722    34071    582    2017-07-23 06:45:00    2017-07-23 06:45:00
107723    34071    959    2017-07-23 18:45:00    2017-07-23 18:45:00
107724    34071    480    2017-07-23 18:22:00    2017-07-23 18:22:00
107725    34072    672    2017-07-23 08:58:00    2017-07-23 08:58:00
107726    34072    634    2017-07-23 02:19:00    2017-07-23 02:19:00
107727    34072    776    2017-07-23 22:50:00    2017-07-23 22:50:00
107728    34072    793    2017-07-23 15:41:00    2017-07-23 15:41:00
107729    34072    807    2017-07-23 18:11:00    2017-07-23 18:11:00
107730    34073    833    2017-07-23 04:06:00    2017-07-23 04:06:00
107731    34073    609    2017-07-23 21:19:00    2017-07-23 21:19:00
107732    34073    780    2017-07-23 05:29:00    2017-07-23 05:29:00
107733    34073    889    2017-07-23 21:09:00    2017-07-23 21:09:00
107734    34073    945    2017-07-23 18:25:00    2017-07-23 18:25:00
107735    34074    935    2017-07-23 16:03:00    2017-07-23 16:03:00
107736    34074    570    2017-07-23 01:09:00    2017-07-23 01:09:00
107737    34074    649    2017-07-23 05:37:00    2017-07-23 05:37:00
107738    34074    653    2017-07-23 06:47:00    2017-07-23 06:47:00
107739    34074    859    2017-07-23 08:32:00    2017-07-23 08:32:00
107740    34075    550    2017-07-23 09:34:00    2017-07-23 09:34:00
107741    34075    753    2017-07-23 05:01:00    2017-07-23 05:01:00
107742    34075    730    2017-07-23 04:47:00    2017-07-23 04:47:00
107743    34075    664    2017-07-23 22:22:00    2017-07-23 22:22:00
107744    34075    924    2017-07-23 22:54:00    2017-07-23 22:54:00
107745    34076    561    2017-07-23 23:50:00    2017-07-23 23:50:00
107746    34076    795    2017-07-23 11:26:00    2017-07-23 11:26:00
107747    34076    880    2017-07-23 18:24:00    2017-07-23 18:24:00
107748    34076    656    2017-07-23 18:27:00    2017-07-23 18:27:00
107749    34076    749    2017-07-23 22:17:00    2017-07-23 22:17:00
107750    34077    734    2017-07-23 20:58:00    2017-07-23 20:58:00
107751    34077    660    2017-07-23 09:28:00    2017-07-23 09:28:00
107752    34077    519    2017-07-23 01:14:00    2017-07-23 01:14:00
107753    34077    759    2017-07-23 04:01:00    2017-07-23 04:01:00
107754    34077    484    2017-07-23 05:07:00    2017-07-23 05:07:00
107755    34078    926    2017-07-23 09:06:00    2017-07-23 09:06:00
107756    34078    694    2017-07-23 06:07:00    2017-07-23 06:07:00
107757    34078    576    2017-07-23 02:00:00    2017-07-23 02:00:00
107758    34078    808    2017-07-23 14:38:00    2017-07-23 14:38:00
107759    34078    858    2017-07-23 02:45:00    2017-07-23 02:45:00
107760    34079    471    2017-07-23 08:08:00    2017-07-23 08:08:00
107761    34079    754    2017-07-23 06:57:00    2017-07-23 06:57:00
107762    34079    954    2017-07-23 22:20:00    2017-07-23 22:20:00
107763    34079    713    2017-07-23 17:38:00    2017-07-23 17:38:00
107764    34079    524    2017-07-23 11:11:00    2017-07-23 11:11:00
107765    34080    466    2017-07-23 09:58:00    2017-07-23 09:58:00
107766    34080    680    2017-07-23 20:51:00    2017-07-23 20:51:00
107767    34080    524    2017-07-23 06:39:00    2017-07-23 06:39:00
107768    34080    870    2017-07-23 22:28:00    2017-07-23 22:28:00
107769    34080    686    2017-07-23 13:45:00    2017-07-23 13:45:00
107770    34081    469    2017-07-23 09:20:00    2017-07-23 09:20:00
107771    34081    754    2017-07-23 18:00:00    2017-07-23 18:00:00
107772    34081    925    2017-07-23 10:12:00    2017-07-23 10:12:00
107773    34081    767    2017-07-23 01:33:00    2017-07-23 01:33:00
107774    34081    706    2017-07-23 10:28:00    2017-07-23 10:28:00
107775    34082    891    2017-07-23 08:53:00    2017-07-23 08:53:00
107776    34082    714    2017-07-23 22:22:00    2017-07-23 22:22:00
107777    34082    467    2017-07-23 19:58:00    2017-07-23 19:58:00
107778    34082    803    2017-07-23 18:07:00    2017-07-23 18:07:00
107779    34082    576    2017-07-23 08:39:00    2017-07-23 08:39:00
107780    34083    541    2017-07-23 17:43:00    2017-07-23 17:43:00
107781    34083    544    2017-07-23 20:38:00    2017-07-23 20:38:00
107782    34083    490    2017-07-23 22:17:00    2017-07-23 22:17:00
107783    34083    574    2017-07-23 22:34:00    2017-07-23 22:34:00
107784    34083    931    2017-07-23 19:40:00    2017-07-23 19:40:00
107785    34084    941    2017-07-23 10:00:00    2017-07-23 10:00:00
107786    34084    877    2017-07-23 20:39:00    2017-07-23 20:39:00
107787    34084    598    2017-07-23 18:11:00    2017-07-23 18:11:00
107788    34084    577    2017-07-23 15:49:00    2017-07-23 15:49:00
107789    34084    838    2017-07-23 16:59:00    2017-07-23 16:59:00
107790    34085    608    2017-07-23 12:23:00    2017-07-23 12:23:00
107791    34085    713    2017-07-23 13:54:00    2017-07-23 13:54:00
107792    34085    874    2017-07-23 04:41:00    2017-07-23 04:41:00
107793    34085    547    2017-07-23 17:08:00    2017-07-23 17:08:00
107794    34085    540    2017-07-23 09:43:00    2017-07-23 09:43:00
107795    34086    908    2017-07-23 17:50:00    2017-07-23 17:50:00
107796    34086    656    2017-07-23 23:35:00    2017-07-23 23:35:00
107797    34086    802    2017-07-23 09:10:00    2017-07-23 09:10:00
107798    34086    891    2017-07-23 19:22:00    2017-07-23 19:22:00
107799    34086    638    2017-07-23 14:49:00    2017-07-23 14:49:00
107800    34087    946    2017-07-23 01:39:00    2017-07-23 01:39:00
107801    34087    621    2017-07-23 09:01:00    2017-07-23 09:01:00
107802    34087    927    2017-07-23 11:17:00    2017-07-23 11:17:00
107803    34087    836    2017-07-23 03:46:00    2017-07-23 03:46:00
107804    34087    842    2017-07-23 15:16:00    2017-07-23 15:16:00
107805    34088    920    2017-07-23 22:17:00    2017-07-23 22:17:00
107806    34088    759    2017-07-23 04:22:00    2017-07-23 04:22:00
107807    34088    475    2017-07-23 01:29:00    2017-07-23 01:29:00
107808    34088    811    2017-07-23 14:47:00    2017-07-23 14:47:00
107809    34088    603    2017-07-23 14:40:00    2017-07-23 14:40:00
107810    34089    776    2017-07-23 08:20:00    2017-07-23 08:20:00
107811    34089    657    2017-07-23 19:27:00    2017-07-23 19:27:00
107812    34089    845    2017-07-23 08:50:00    2017-07-23 08:50:00
107813    34089    503    2017-07-23 02:26:00    2017-07-23 02:26:00
107814    34089    691    2017-07-23 13:48:00    2017-07-23 13:48:00
107815    34090    705    2017-07-23 19:47:00    2017-07-23 19:47:00
107816    34090    740    2017-07-23 16:40:00    2017-07-23 16:40:00
107817    34090    662    2017-07-23 23:58:00    2017-07-23 23:58:00
107818    34090    856    2017-07-23 12:21:00    2017-07-23 12:21:00
107819    34090    798    2017-07-23 14:25:00    2017-07-23 14:25:00
107820    34091    614    2017-07-23 22:17:00    2017-07-23 22:17:00
107821    34091    546    2017-07-23 10:08:00    2017-07-23 10:08:00
107822    34091    944    2017-07-23 09:09:00    2017-07-23 09:09:00
107823    34091    844    2017-07-23 05:02:00    2017-07-23 05:02:00
107824    34091    857    2017-07-23 23:33:00    2017-07-23 23:33:00
107825    34092    659    2017-07-23 02:00:00    2017-07-23 02:00:00
107826    34092    629    2017-07-23 16:00:00    2017-07-23 16:00:00
107827    34092    646    2017-07-23 14:00:00    2017-07-23 14:00:00
107828    34092    917    2017-07-23 06:09:00    2017-07-23 06:09:00
107829    34092    538    2017-07-23 02:44:00    2017-07-23 02:44:00
107830    34093    823    2017-07-23 23:28:00    2017-07-23 23:28:00
107831    34093    916    2017-07-23 14:16:00    2017-07-23 14:16:00
107832    34093    778    2017-07-23 13:39:00    2017-07-23 13:39:00
107833    34093    713    2017-07-23 09:17:00    2017-07-23 09:17:00
107834    34093    555    2017-07-23 14:19:00    2017-07-23 14:19:00
107835    34094    547    2017-07-23 09:47:00    2017-07-23 09:47:00
107836    34094    875    2017-07-23 18:02:00    2017-07-23 18:02:00
107837    34094    685    2017-07-23 02:39:00    2017-07-23 02:39:00
107838    34094    638    2017-07-23 01:31:00    2017-07-23 01:31:00
107839    34094    781    2017-07-23 22:50:00    2017-07-23 22:50:00
107840    34095    521    2017-07-23 19:31:00    2017-07-23 19:31:00
107841    34095    524    2017-07-23 04:34:00    2017-07-23 04:34:00
107842    34095    813    2017-07-23 11:02:00    2017-07-23 11:02:00
107843    34095    748    2017-07-23 19:01:00    2017-07-23 19:01:00
107844    34095    720    2017-07-23 10:34:00    2017-07-23 10:34:00
107845    34096    857    2017-07-23 03:08:00    2017-07-23 03:08:00
107846    34096    599    2017-07-23 05:46:00    2017-07-23 05:46:00
107847    34096    800    2017-07-23 21:05:00    2017-07-23 21:05:00
107848    34096    910    2017-07-23 07:37:00    2017-07-23 07:37:00
107849    34096    775    2017-07-23 08:52:00    2017-07-23 08:52:00
107850    34097    858    2017-07-23 09:06:00    2017-07-23 09:06:00
107851    34097    519    2017-07-23 05:48:00    2017-07-23 05:48:00
107852    34097    818    2017-07-23 11:42:00    2017-07-23 11:42:00
107853    34097    477    2017-07-23 02:42:00    2017-07-23 02:42:00
107854    34097    629    2017-07-23 16:06:00    2017-07-23 16:06:00
107855    34098    507    2017-07-23 11:36:00    2017-07-23 11:36:00
107856    34098    880    2017-07-23 16:03:00    2017-07-23 16:03:00
107857    34098    556    2017-07-23 19:59:00    2017-07-23 19:59:00
107858    34098    921    2017-07-23 03:01:00    2017-07-23 03:01:00
107859    34098    602    2017-07-23 05:00:00    2017-07-23 05:00:00
107860    34099    563    2017-07-23 18:24:00    2017-07-23 18:24:00
107861    34099    768    2017-07-23 18:41:00    2017-07-23 18:41:00
107862    34099    934    2017-07-23 05:20:00    2017-07-23 05:20:00
107863    34099    670    2017-07-23 12:42:00    2017-07-23 12:42:00
107864    34099    959    2017-07-23 03:48:00    2017-07-23 03:48:00
107865    34100    486    2017-07-23 03:22:00    2017-07-23 03:22:00
107866    34100    886    2017-07-23 18:02:00    2017-07-23 18:02:00
107867    34100    919    2017-07-23 03:11:00    2017-07-23 03:11:00
107868    34100    538    2017-07-23 01:32:00    2017-07-23 01:32:00
107869    34100    875    2017-07-23 10:13:00    2017-07-23 10:13:00
107870    34101    547    2017-07-23 19:45:00    2017-07-23 19:45:00
107871    34101    927    2017-07-23 16:34:00    2017-07-23 16:34:00
107872    34101    879    2017-07-23 19:45:00    2017-07-23 19:45:00
107873    34101    839    2017-07-23 06:10:00    2017-07-23 06:10:00
107874    34101    625    2017-07-23 01:28:00    2017-07-23 01:28:00
107875    34102    604    2017-07-23 17:35:00    2017-07-23 17:35:00
107876    34102    770    2017-07-23 10:22:00    2017-07-23 10:22:00
107877    34102    575    2017-07-23 15:14:00    2017-07-23 15:14:00
107878    34102    907    2017-07-23 21:59:00    2017-07-23 21:59:00
107879    34102    854    2017-07-23 12:08:00    2017-07-23 12:08:00
107880    34103    915    2017-07-23 04:26:00    2017-07-23 04:26:00
107881    34103    724    2017-07-23 15:49:00    2017-07-23 15:49:00
107882    34103    858    2017-07-23 07:01:00    2017-07-23 07:01:00
107883    34103    698    2017-07-23 09:49:00    2017-07-23 09:49:00
107884    34103    639    2017-07-23 15:31:00    2017-07-23 15:31:00
107885    34104    868    2017-07-23 15:09:00    2017-07-23 15:09:00
107886    34104    621    2017-07-23 17:45:00    2017-07-23 17:45:00
107887    34104    676    2017-07-23 19:28:00    2017-07-23 19:28:00
107888    34104    586    2017-07-23 15:21:00    2017-07-23 15:21:00
107889    34104    787    2017-07-23 22:00:00    2017-07-23 22:00:00
107890    34105    774    2017-07-23 08:52:00    2017-07-23 08:52:00
107891    34105    927    2017-07-23 13:50:00    2017-07-23 13:50:00
107892    34105    472    2017-07-23 21:36:00    2017-07-23 21:36:00
107893    34105    470    2017-07-23 21:43:00    2017-07-23 21:43:00
107894    34105    490    2017-07-23 10:22:00    2017-07-23 10:22:00
107895    34106    925    2017-07-23 17:49:00    2017-07-23 17:49:00
107896    34106    470    2017-07-23 10:54:00    2017-07-23 10:54:00
107897    34106    550    2017-07-23 13:42:00    2017-07-23 13:42:00
107898    34106    866    2017-07-23 21:00:00    2017-07-23 21:00:00
107899    34106    808    2017-07-23 16:18:00    2017-07-23 16:18:00
107900    34107    666    2017-07-23 13:38:00    2017-07-23 13:38:00
107901    34107    588    2017-07-23 14:25:00    2017-07-23 14:25:00
107902    34107    820    2017-07-23 18:49:00    2017-07-23 18:49:00
107903    34107    750    2017-07-23 10:57:00    2017-07-23 10:57:00
107904    34107    861    2017-07-23 17:33:00    2017-07-23 17:33:00
107905    34108    528    2017-07-23 11:25:00    2017-07-23 11:25:00
107906    34108    665    2017-07-23 05:06:00    2017-07-23 05:06:00
107907    34108    830    2017-07-23 23:02:00    2017-07-23 23:02:00
107908    34108    646    2017-07-23 21:12:00    2017-07-23 21:12:00
107909    34108    564    2017-07-23 12:47:00    2017-07-23 12:47:00
107910    34109    694    2017-07-23 17:36:00    2017-07-23 17:36:00
107911    34109    532    2017-07-23 07:42:00    2017-07-23 07:42:00
107912    34109    581    2017-07-23 20:56:00    2017-07-23 20:56:00
107913    34109    625    2017-07-23 12:27:00    2017-07-23 12:27:00
107914    34109    860    2017-07-23 16:29:00    2017-07-23 16:29:00
107915    34110    907    2017-07-23 14:58:00    2017-07-23 14:58:00
107916    34110    722    2017-07-23 07:42:00    2017-07-23 07:42:00
107917    34110    954    2017-07-23 01:09:00    2017-07-23 01:09:00
107918    34110    752    2017-07-23 21:11:00    2017-07-23 21:11:00
107919    34110    555    2017-07-23 10:14:00    2017-07-23 10:14:00
107920    34111    947    2017-07-23 02:52:00    2017-07-23 02:52:00
107921    34111    793    2017-07-23 20:50:00    2017-07-23 20:50:00
107922    34111    501    2017-07-23 05:54:00    2017-07-23 05:54:00
107923    34111    518    2017-07-23 12:22:00    2017-07-23 12:22:00
107924    34111    489    2017-07-23 05:58:00    2017-07-23 05:58:00
107925    34112    846    2017-07-23 01:50:00    2017-07-23 01:50:00
107926    34112    625    2017-07-23 15:10:00    2017-07-23 15:10:00
107927    34112    897    2017-07-23 23:27:00    2017-07-23 23:27:00
107928    34112    774    2017-07-23 02:43:00    2017-07-23 02:43:00
107929    34112    848    2017-07-23 19:45:00    2017-07-23 19:45:00
107930    34113    687    2017-07-23 08:23:00    2017-07-23 08:23:00
107931    34113    899    2017-07-23 02:07:00    2017-07-23 02:07:00
107932    34113    775    2017-07-23 07:13:00    2017-07-23 07:13:00
107933    34113    676    2017-07-23 08:43:00    2017-07-23 08:43:00
107934    34113    595    2017-07-23 12:54:00    2017-07-23 12:54:00
107935    34114    760    2017-07-23 22:58:00    2017-07-23 22:58:00
107936    34114    922    2017-07-23 11:39:00    2017-07-23 11:39:00
107937    34114    830    2017-07-23 11:06:00    2017-07-23 11:06:00
107938    34114    496    2017-07-23 18:01:00    2017-07-23 18:01:00
107939    34114    503    2017-07-23 15:42:00    2017-07-23 15:42:00
107940    34115    723    2017-07-23 05:09:00    2017-07-23 05:09:00
107941    34115    611    2017-07-23 16:11:00    2017-07-23 16:11:00
107942    34115    932    2017-07-23 16:18:00    2017-07-23 16:18:00
107943    34115    744    2017-07-23 14:09:00    2017-07-23 14:09:00
107944    34115    514    2017-07-23 19:59:00    2017-07-23 19:59:00
107945    34116    718    2017-07-24 06:09:00    2017-07-24 06:09:00
107946    34116    506    2017-07-24 16:45:00    2017-07-24 16:45:00
107947    34116    915    2017-07-24 16:52:00    2017-07-24 16:52:00
107948    34116    531    2017-07-24 08:47:00    2017-07-24 08:47:00
107949    34116    519    2017-07-24 04:00:00    2017-07-24 04:00:00
107950    34117    827    2017-07-24 13:02:00    2017-07-24 13:02:00
107951    34117    915    2017-07-24 13:00:00    2017-07-24 13:00:00
107952    34117    906    2017-07-24 16:21:00    2017-07-24 16:21:00
107953    34117    629    2017-07-24 18:48:00    2017-07-24 18:48:00
107954    34117    793    2017-07-24 03:05:00    2017-07-24 03:05:00
107955    34118    862    2017-07-24 04:18:00    2017-07-24 04:18:00
107956    34118    708    2017-07-24 03:51:00    2017-07-24 03:51:00
107957    34118    477    2017-07-24 19:54:00    2017-07-24 19:54:00
107958    34118    713    2017-07-24 15:14:00    2017-07-24 15:14:00
107959    34118    473    2017-07-24 02:24:00    2017-07-24 02:24:00
107960    34119    942    2017-07-24 15:20:00    2017-07-24 15:20:00
107961    34119    522    2017-07-24 17:37:00    2017-07-24 17:37:00
107962    34119    659    2017-07-24 12:01:00    2017-07-24 12:01:00
107963    34119    496    2017-07-24 06:15:00    2017-07-24 06:15:00
107964    34119    938    2017-07-24 01:51:00    2017-07-24 01:51:00
107965    34120    778    2017-07-24 13:46:00    2017-07-24 13:46:00
107966    34120    954    2017-07-24 05:35:00    2017-07-24 05:35:00
107967    34120    489    2017-07-24 05:38:00    2017-07-24 05:38:00
107968    34120    838    2017-07-24 02:50:00    2017-07-24 02:50:00
107969    34120    483    2017-07-24 02:46:00    2017-07-24 02:46:00
107970    34121    545    2017-07-24 16:36:00    2017-07-24 16:36:00
107971    34121    619    2017-07-24 15:16:00    2017-07-24 15:16:00
107972    34121    472    2017-07-24 22:12:00    2017-07-24 22:12:00
107973    34121    493    2017-07-24 23:55:00    2017-07-24 23:55:00
107974    34121    869    2017-07-24 05:00:00    2017-07-24 05:00:00
107975    34122    702    2017-07-24 20:44:00    2017-07-24 20:44:00
107976    34122    859    2017-07-24 23:32:00    2017-07-24 23:32:00
107977    34122    688    2017-07-24 06:44:00    2017-07-24 06:44:00
107978    34122    824    2017-07-24 12:28:00    2017-07-24 12:28:00
107979    34122    584    2017-07-24 22:29:00    2017-07-24 22:29:00
107980    34123    651    2017-07-24 16:38:00    2017-07-24 16:38:00
107981    34123    928    2017-07-24 01:44:00    2017-07-24 01:44:00
107982    34123    588    2017-07-24 20:45:00    2017-07-24 20:45:00
107983    34123    504    2017-07-24 06:00:00    2017-07-24 06:00:00
107984    34123    714    2017-07-24 05:51:00    2017-07-24 05:51:00
107985    34124    809    2017-07-24 17:20:00    2017-07-24 17:20:00
107986    34124    607    2017-07-24 01:23:00    2017-07-24 01:23:00
107987    34124    718    2017-07-24 16:10:00    2017-07-24 16:10:00
107988    34124    593    2017-07-24 09:14:00    2017-07-24 09:14:00
107989    34124    515    2017-07-24 04:31:00    2017-07-24 04:31:00
107990    34125    606    2017-07-24 20:05:00    2017-07-24 20:05:00
107991    34125    723    2017-07-24 16:11:00    2017-07-24 16:11:00
107992    34125    928    2017-07-24 02:05:00    2017-07-24 02:05:00
107993    34125    576    2017-07-24 05:55:00    2017-07-24 05:55:00
107994    34125    769    2017-07-24 06:04:00    2017-07-24 06:04:00
107995    34126    950    2017-07-24 17:28:00    2017-07-24 17:28:00
107996    34126    786    2017-07-24 06:38:00    2017-07-24 06:38:00
107997    34126    706    2017-07-24 02:59:00    2017-07-24 02:59:00
107998    34126    487    2017-07-24 23:02:00    2017-07-24 23:02:00
107999    34126    802    2017-07-24 07:48:00    2017-07-24 07:48:00
108000    34127    918    2017-07-24 10:16:00    2017-07-24 10:16:00
108001    34127    745    2017-07-24 19:51:00    2017-07-24 19:51:00
108002    34127    923    2017-07-24 05:17:00    2017-07-24 05:17:00
108003    34127    625    2017-07-24 21:54:00    2017-07-24 21:54:00
108004    34127    841    2017-07-24 03:31:00    2017-07-24 03:31:00
108005    34128    695    2017-07-24 08:12:00    2017-07-24 08:12:00
108006    34128    607    2017-07-24 05:54:00    2017-07-24 05:54:00
108007    34128    501    2017-07-24 18:58:00    2017-07-24 18:58:00
108008    34128    487    2017-07-24 18:29:00    2017-07-24 18:29:00
108009    34128    657    2017-07-24 21:10:00    2017-07-24 21:10:00
108010    34129    706    2017-07-24 17:23:00    2017-07-24 17:23:00
108011    34129    556    2017-07-24 11:42:00    2017-07-24 11:42:00
108012    34129    535    2017-07-24 23:00:00    2017-07-24 23:00:00
108013    34129    513    2017-07-24 10:11:00    2017-07-24 10:11:00
108014    34129    559    2017-07-24 12:00:00    2017-07-24 12:00:00
108015    34130    509    2017-07-24 06:27:00    2017-07-24 06:27:00
108016    34130    669    2017-07-24 15:58:00    2017-07-24 15:58:00
108017    34130    935    2017-07-24 17:56:00    2017-07-24 17:56:00
108018    34130    609    2017-07-24 05:54:00    2017-07-24 05:54:00
108019    34130    715    2017-07-24 03:31:00    2017-07-24 03:31:00
108020    34131    961    2017-07-24 03:55:00    2017-07-24 03:55:00
108021    34131    749    2017-07-24 01:54:00    2017-07-24 01:54:00
108022    34131    683    2017-07-24 16:39:00    2017-07-24 16:39:00
108023    34131    822    2017-07-24 11:55:00    2017-07-24 11:55:00
108024    34131    654    2017-07-24 16:20:00    2017-07-24 16:20:00
108025    34132    485    2017-07-24 03:27:00    2017-07-24 03:27:00
108026    34132    529    2017-07-24 13:49:00    2017-07-24 13:49:00
108027    34132    772    2017-07-24 08:52:00    2017-07-24 08:52:00
108028    34132    659    2017-07-24 14:26:00    2017-07-24 14:26:00
108029    34132    570    2017-07-24 14:31:00    2017-07-24 14:31:00
108030    34133    486    2017-07-24 13:56:00    2017-07-24 13:56:00
108031    34133    619    2017-07-24 12:15:00    2017-07-24 12:15:00
108032    34133    704    2017-07-24 19:51:00    2017-07-24 19:51:00
108033    34133    542    2017-07-24 07:28:00    2017-07-24 07:28:00
108034    34133    741    2017-07-24 19:32:00    2017-07-24 19:32:00
108035    34134    491    2017-07-24 23:48:00    2017-07-24 23:48:00
108036    34134    905    2017-07-24 05:18:00    2017-07-24 05:18:00
108037    34134    792    2017-07-24 11:37:00    2017-07-24 11:37:00
108038    34134    498    2017-07-24 15:12:00    2017-07-24 15:12:00
108039    34134    508    2017-07-24 23:32:00    2017-07-24 23:32:00
108040    34135    686    2017-07-24 11:05:00    2017-07-24 11:05:00
108041    34135    875    2017-07-24 03:24:00    2017-07-24 03:24:00
108042    34135    578    2017-07-24 06:04:00    2017-07-24 06:04:00
108043    34135    690    2017-07-24 03:56:00    2017-07-24 03:56:00
108044    34135    868    2017-07-24 08:56:00    2017-07-24 08:56:00
108045    34136    825    2017-07-24 10:54:00    2017-07-24 10:54:00
108046    34136    775    2017-07-24 07:07:00    2017-07-24 07:07:00
108047    34136    538    2017-07-24 03:08:00    2017-07-24 03:08:00
108048    34136    492    2017-07-24 01:04:00    2017-07-24 01:04:00
108049    34136    943    2017-07-24 19:50:00    2017-07-24 19:50:00
108050    34137    892    2017-07-24 02:01:00    2017-07-24 02:01:00
108051    34137    821    2017-07-24 03:58:00    2017-07-24 03:58:00
108052    34137    683    2017-07-24 15:56:00    2017-07-24 15:56:00
108053    34137    669    2017-07-24 04:16:00    2017-07-24 04:16:00
108054    34137    922    2017-07-24 01:41:00    2017-07-24 01:41:00
108055    34138    748    2017-07-24 17:06:00    2017-07-24 17:06:00
108056    34138    525    2017-07-24 14:37:00    2017-07-24 14:37:00
108057    34138    640    2017-07-24 14:40:00    2017-07-24 14:40:00
108058    34138    706    2017-07-24 11:24:00    2017-07-24 11:24:00
108059    34138    916    2017-07-24 17:48:00    2017-07-24 17:48:00
108060    34139    707    2017-07-24 10:40:00    2017-07-24 10:40:00
108061    34139    716    2017-07-24 08:23:00    2017-07-24 08:23:00
108062    34139    643    2017-07-24 04:13:00    2017-07-24 04:13:00
108063    34139    741    2017-07-24 23:42:00    2017-07-24 23:42:00
108064    34139    616    2017-07-24 03:28:00    2017-07-24 03:28:00
108065    34140    850    2017-07-24 01:42:00    2017-07-24 01:42:00
108066    34140    869    2017-07-24 02:47:00    2017-07-24 02:47:00
108067    34140    468    2017-07-24 13:43:00    2017-07-24 13:43:00
108068    34140    795    2017-07-24 19:20:00    2017-07-24 19:20:00
108069    34140    671    2017-07-24 11:22:00    2017-07-24 11:22:00
108070    34141    478    2017-07-24 13:30:00    2017-07-24 13:30:00
108071    34141    603    2017-07-24 16:00:00    2017-07-24 16:00:00
108072    34141    731    2017-07-24 08:19:00    2017-07-24 08:19:00
108073    34141    471    2017-07-24 15:46:00    2017-07-24 15:46:00
108074    34141    951    2017-07-24 21:48:00    2017-07-24 21:48:00
108075    34142    729    2017-07-24 21:00:00    2017-07-24 21:00:00
108076    34142    918    2017-07-24 12:18:00    2017-07-24 12:18:00
108077    34142    501    2017-07-24 18:08:00    2017-07-24 18:08:00
108078    34142    702    2017-07-24 03:13:00    2017-07-24 03:13:00
108079    34142    650    2017-07-24 18:43:00    2017-07-24 18:43:00
108080    34143    561    2017-07-24 13:30:00    2017-07-24 13:30:00
108081    34143    783    2017-07-24 17:43:00    2017-07-24 17:43:00
108082    34143    652    2017-07-24 02:11:00    2017-07-24 02:11:00
108083    34143    821    2017-07-24 03:06:00    2017-07-24 03:06:00
108084    34143    705    2017-07-24 04:22:00    2017-07-24 04:22:00
108085    34144    892    2017-07-24 14:06:00    2017-07-24 14:06:00
108086    34144    922    2017-07-24 01:45:00    2017-07-24 01:45:00
108087    34144    920    2017-07-24 12:55:00    2017-07-24 12:55:00
108088    34144    576    2017-07-24 20:07:00    2017-07-24 20:07:00
108089    34144    767    2017-07-24 09:17:00    2017-07-24 09:17:00
108090    34145    498    2017-07-24 12:12:00    2017-07-24 12:12:00
108091    34145    898    2017-07-24 16:17:00    2017-07-24 16:17:00
108092    34145    623    2017-07-24 08:15:00    2017-07-24 08:15:00
108093    34145    655    2017-07-24 15:03:00    2017-07-24 15:03:00
108094    34145    933    2017-07-24 22:19:00    2017-07-24 22:19:00
108095    34146    901    2017-07-24 21:17:00    2017-07-24 21:17:00
108096    34146    929    2017-07-24 14:53:00    2017-07-24 14:53:00
108097    34146    534    2017-07-24 08:29:00    2017-07-24 08:29:00
108098    34146    745    2017-07-24 04:42:00    2017-07-24 04:42:00
108099    34146    573    2017-07-24 11:47:00    2017-07-24 11:47:00
108100    34147    861    2017-07-24 12:51:00    2017-07-24 12:51:00
108101    34147    876    2017-07-24 16:50:00    2017-07-24 16:50:00
108102    34147    695    2017-07-24 08:50:00    2017-07-24 08:50:00
108103    34147    842    2017-07-24 08:19:00    2017-07-24 08:19:00
108104    34147    757    2017-07-24 12:49:00    2017-07-24 12:49:00
108105    34148    605    2017-07-24 09:23:00    2017-07-24 09:23:00
108106    34148    533    2017-07-24 07:18:00    2017-07-24 07:18:00
108107    34148    557    2017-07-24 16:16:00    2017-07-24 16:16:00
108108    34148    683    2017-07-24 22:31:00    2017-07-24 22:31:00
108109    34148    489    2017-07-24 04:08:00    2017-07-24 04:08:00
108110    34149    677    2017-07-24 08:11:00    2017-07-24 08:11:00
108111    34149    552    2017-07-24 06:21:00    2017-07-24 06:21:00
108112    34149    472    2017-07-24 22:25:00    2017-07-24 22:25:00
108113    34149    728    2017-07-24 01:38:00    2017-07-24 01:38:00
108114    34149    756    2017-07-24 21:18:00    2017-07-24 21:18:00
108115    34150    701    2017-07-24 14:09:00    2017-07-24 14:09:00
108116    34150    709    2017-07-24 03:16:00    2017-07-24 03:16:00
108117    34150    881    2017-07-24 18:11:00    2017-07-24 18:11:00
108118    34150    884    2017-07-24 13:26:00    2017-07-24 13:26:00
108119    34150    871    2017-07-24 08:05:00    2017-07-24 08:05:00
108120    34151    664    2017-07-24 20:56:00    2017-07-24 20:56:00
108121    34151    545    2017-07-24 05:18:00    2017-07-24 05:18:00
108122    34151    842    2017-07-24 15:48:00    2017-07-24 15:48:00
108123    34151    502    2017-07-24 22:18:00    2017-07-24 22:18:00
108124    34151    679    2017-07-24 16:48:00    2017-07-24 16:48:00
108125    34152    943    2017-07-24 01:42:00    2017-07-24 01:42:00
108126    34152    586    2017-07-24 14:47:00    2017-07-24 14:47:00
108127    34152    775    2017-07-24 09:28:00    2017-07-24 09:28:00
108128    34152    652    2017-07-24 05:43:00    2017-07-24 05:43:00
108129    34152    786    2017-07-24 20:14:00    2017-07-24 20:14:00
108130    34153    893    2017-07-24 17:59:00    2017-07-24 17:59:00
108131    34153    479    2017-07-24 06:37:00    2017-07-24 06:37:00
108132    34153    604    2017-07-24 08:10:00    2017-07-24 08:10:00
108133    34153    940    2017-07-24 06:20:00    2017-07-24 06:20:00
108134    34153    565    2017-07-24 12:52:00    2017-07-24 12:52:00
108135    34154    542    2017-07-24 05:04:00    2017-07-24 05:04:00
108136    34154    472    2017-07-24 05:57:00    2017-07-24 05:57:00
108137    34154    736    2017-07-24 20:45:00    2017-07-24 20:45:00
108138    34154    734    2017-07-24 09:18:00    2017-07-24 09:18:00
108139    34154    591    2017-07-24 11:41:00    2017-07-24 11:41:00
108140    34155    756    2017-07-24 07:32:00    2017-07-24 07:32:00
108141    34155    518    2017-07-24 23:25:00    2017-07-24 23:25:00
108142    34155    851    2017-07-24 23:53:00    2017-07-24 23:53:00
108143    34155    611    2017-07-24 16:25:00    2017-07-24 16:25:00
108144    34155    933    2017-07-24 10:11:00    2017-07-24 10:11:00
108145    34156    953    2017-07-24 22:13:00    2017-07-24 22:13:00
108146    34156    466    2017-07-24 13:29:00    2017-07-24 13:29:00
108147    34156    645    2017-07-24 15:49:00    2017-07-24 15:49:00
108148    34156    666    2017-07-24 01:27:00    2017-07-24 01:27:00
108149    34156    513    2017-07-24 15:28:00    2017-07-24 15:28:00
108150    34157    671    2017-07-24 09:37:00    2017-07-24 09:37:00
108151    34157    633    2017-07-24 17:30:00    2017-07-24 17:30:00
108152    34157    740    2017-07-24 12:04:00    2017-07-24 12:04:00
108153    34157    690    2017-07-24 01:10:00    2017-07-24 01:10:00
108154    34157    839    2017-07-24 07:24:00    2017-07-24 07:24:00
108155    34158    862    2017-07-24 16:23:00    2017-07-24 16:23:00
108156    34158    581    2017-07-24 18:33:00    2017-07-24 18:33:00
108157    34158    919    2017-07-24 09:47:00    2017-07-24 09:47:00
108158    34158    904    2017-07-24 11:37:00    2017-07-24 11:37:00
108159    34158    885    2017-07-24 21:02:00    2017-07-24 21:02:00
108160    34159    657    2017-07-24 16:52:00    2017-07-24 16:52:00
108161    34159    823    2017-07-24 18:00:00    2017-07-24 18:00:00
108162    34159    910    2017-07-24 18:17:00    2017-07-24 18:17:00
108163    34159    597    2017-07-24 16:16:00    2017-07-24 16:16:00
108164    34159    936    2017-07-24 03:32:00    2017-07-24 03:32:00
108165    34160    583    2017-07-24 15:08:00    2017-07-24 15:08:00
108166    34160    519    2017-07-24 05:43:00    2017-07-24 05:43:00
108167    34160    574    2017-07-24 03:24:00    2017-07-24 03:24:00
108168    34160    764    2017-07-24 04:29:00    2017-07-24 04:29:00
108169    34160    832    2017-07-24 19:48:00    2017-07-24 19:48:00
108170    34161    853    2017-07-24 22:06:00    2017-07-24 22:06:00
108171    34161    776    2017-07-24 22:50:00    2017-07-24 22:50:00
108172    34161    594    2017-07-24 03:24:00    2017-07-24 03:24:00
108173    34161    673    2017-07-24 02:34:00    2017-07-24 02:34:00
108174    34161    830    2017-07-24 20:24:00    2017-07-24 20:24:00
108175    34162    923    2017-07-24 13:00:00    2017-07-24 13:00:00
108176    34162    571    2017-07-24 09:13:00    2017-07-24 09:13:00
108177    34162    731    2017-07-24 10:35:00    2017-07-24 10:35:00
108178    34162    820    2017-07-24 08:14:00    2017-07-24 08:14:00
108179    34162    623    2017-07-24 10:50:00    2017-07-24 10:50:00
108180    34163    532    2017-07-24 19:52:00    2017-07-24 19:52:00
108181    34163    929    2017-07-24 13:39:00    2017-07-24 13:39:00
108182    34163    825    2017-07-24 17:42:00    2017-07-24 17:42:00
108183    34163    542    2017-07-24 10:51:00    2017-07-24 10:51:00
108184    34163    610    2017-07-24 09:14:00    2017-07-24 09:14:00
108185    34164    686    2017-07-24 01:24:00    2017-07-24 01:24:00
108186    34164    957    2017-07-24 06:40:00    2017-07-24 06:40:00
108187    34164    862    2017-07-24 10:36:00    2017-07-24 10:36:00
108188    34164    738    2017-07-24 23:53:00    2017-07-24 23:53:00
108189    34164    669    2017-07-24 07:00:00    2017-07-24 07:00:00
108190    34165    825    2017-07-24 18:58:00    2017-07-24 18:58:00
108191    34165    528    2017-07-24 01:24:00    2017-07-24 01:24:00
108192    34165    747    2017-07-24 11:22:00    2017-07-24 11:22:00
108193    34165    672    2017-07-24 15:07:00    2017-07-24 15:07:00
108194    34165    862    2017-07-24 16:34:00    2017-07-24 16:34:00
108195    34166    558    2017-07-24 22:39:00    2017-07-24 22:39:00
108196    34166    802    2017-07-24 16:18:00    2017-07-24 16:18:00
108197    34166    884    2017-07-24 21:29:00    2017-07-24 21:29:00
108198    34166    543    2017-07-24 22:00:00    2017-07-24 22:00:00
108199    34166    783    2017-07-24 19:59:00    2017-07-24 19:59:00
108200    34167    697    2017-07-24 18:14:00    2017-07-24 18:14:00
108201    34167    627    2017-07-24 04:10:00    2017-07-24 04:10:00
108202    34167    836    2017-07-24 04:01:00    2017-07-24 04:01:00
108203    34167    665    2017-07-24 05:10:00    2017-07-24 05:10:00
108204    34167    796    2017-07-24 11:37:00    2017-07-24 11:37:00
108205    34168    949    2017-07-24 08:32:00    2017-07-24 08:32:00
108206    34168    928    2017-07-24 11:56:00    2017-07-24 11:56:00
108207    34168    550    2017-07-24 20:22:00    2017-07-24 20:22:00
108208    34168    470    2017-07-24 09:11:00    2017-07-24 09:11:00
108209    34168    880    2017-07-24 14:17:00    2017-07-24 14:17:00
108210    34169    693    2017-07-24 09:12:00    2017-07-24 09:12:00
108211    34169    660    2017-07-24 18:06:00    2017-07-24 18:06:00
108212    34169    692    2017-07-24 18:54:00    2017-07-24 18:54:00
108213    34169    594    2017-07-24 19:01:00    2017-07-24 19:01:00
108214    34169    568    2017-07-24 17:41:00    2017-07-24 17:41:00
108215    34170    821    2017-07-24 03:48:00    2017-07-24 03:48:00
108216    34170    534    2017-07-24 10:09:00    2017-07-24 10:09:00
108217    34170    789    2017-07-24 09:00:00    2017-07-24 09:00:00
108218    34170    476    2017-07-24 01:45:00    2017-07-24 01:45:00
108219    34170    910    2017-07-24 05:23:00    2017-07-24 05:23:00
108220    34171    477    2017-07-24 22:30:00    2017-07-24 22:30:00
108221    34171    635    2017-07-24 15:33:00    2017-07-24 15:33:00
108222    34171    847    2017-07-24 04:50:00    2017-07-24 04:50:00
108223    34171    660    2017-07-24 04:15:00    2017-07-24 04:15:00
108224    34171    798    2017-07-24 20:25:00    2017-07-24 20:25:00
108225    34172    604    2017-07-24 07:01:00    2017-07-24 07:01:00
108226    34172    703    2017-07-24 20:53:00    2017-07-24 20:53:00
108227    34172    533    2017-07-24 03:23:00    2017-07-24 03:23:00
108228    34172    957    2017-07-24 17:50:00    2017-07-24 17:50:00
108229    34172    603    2017-07-24 15:33:00    2017-07-24 15:33:00
108230    34173    939    2017-07-24 05:54:00    2017-07-24 05:54:00
108231    34173    519    2017-07-24 12:11:00    2017-07-24 12:11:00
108232    34173    485    2017-07-24 02:00:00    2017-07-24 02:00:00
108233    34173    687    2017-07-24 11:35:00    2017-07-24 11:35:00
108234    34173    961    2017-07-24 12:27:00    2017-07-24 12:27:00
108235    34174    720    2017-07-24 13:33:00    2017-07-24 13:33:00
108236    34174    920    2017-07-24 15:50:00    2017-07-24 15:50:00
108237    34174    614    2017-07-24 02:22:00    2017-07-24 02:22:00
108238    34174    500    2017-07-24 04:51:00    2017-07-24 04:51:00
108239    34174    662    2017-07-24 02:52:00    2017-07-24 02:52:00
108240    34175    542    2017-07-24 07:35:00    2017-07-24 07:35:00
108241    34175    702    2017-07-24 13:50:00    2017-07-24 13:50:00
108242    34175    692    2017-07-24 11:13:00    2017-07-24 11:13:00
108243    34175    674    2017-07-24 16:05:00    2017-07-24 16:05:00
108244    34175    563    2017-07-24 23:50:00    2017-07-24 23:50:00
108245    34176    580    2017-07-24 08:06:00    2017-07-24 08:06:00
108246    34176    837    2017-07-24 22:39:00    2017-07-24 22:39:00
108247    34176    595    2017-07-24 10:05:00    2017-07-24 10:05:00
108248    34176    616    2017-07-24 19:25:00    2017-07-24 19:25:00
108249    34176    894    2017-07-24 16:51:00    2017-07-24 16:51:00
108250    34177    705    2017-07-24 18:16:00    2017-07-24 18:16:00
108251    34177    769    2017-07-24 20:25:00    2017-07-24 20:25:00
108252    34177    789    2017-07-24 02:19:00    2017-07-24 02:19:00
108253    34177    540    2017-07-24 05:41:00    2017-07-24 05:41:00
108254    34177    479    2017-07-24 13:48:00    2017-07-24 13:48:00
108255    34178    611    2017-07-24 12:34:00    2017-07-24 12:34:00
108256    34178    934    2017-07-24 13:34:00    2017-07-24 13:34:00
108257    34178    680    2017-07-24 11:12:00    2017-07-24 11:12:00
108258    34178    776    2017-07-24 19:06:00    2017-07-24 19:06:00
108259    34178    660    2017-07-24 19:06:00    2017-07-24 19:06:00
108260    34179    841    2017-07-24 15:15:00    2017-07-24 15:15:00
108261    34179    664    2017-07-24 17:28:00    2017-07-24 17:28:00
108262    34179    738    2017-07-24 04:25:00    2017-07-24 04:25:00
108263    34179    611    2017-07-24 11:41:00    2017-07-24 11:41:00
108264    34179    541    2017-07-24 06:34:00    2017-07-24 06:34:00
108265    34180    932    2017-07-24 04:00:00    2017-07-24 04:00:00
108266    34180    958    2017-07-24 12:04:00    2017-07-24 12:04:00
108267    34180    539    2017-07-24 12:00:00    2017-07-24 12:00:00
108268    34180    657    2017-07-24 10:58:00    2017-07-24 10:58:00
108269    34180    851    2017-07-24 01:21:00    2017-07-24 01:21:00
108270    34181    589    2017-07-24 03:55:00    2017-07-24 03:55:00
108271    34181    933    2017-07-24 20:51:00    2017-07-24 20:51:00
108272    34181    922    2017-07-24 02:40:00    2017-07-24 02:40:00
108273    34181    817    2017-07-24 07:23:00    2017-07-24 07:23:00
108274    34181    892    2017-07-24 16:04:00    2017-07-24 16:04:00
108275    34182    715    2017-07-24 16:26:00    2017-07-24 16:26:00
108276    34182    549    2017-07-24 23:10:00    2017-07-24 23:10:00
108277    34182    631    2017-07-24 05:38:00    2017-07-24 05:38:00
108278    34182    834    2017-07-24 01:09:00    2017-07-24 01:09:00
108279    34182    778    2017-07-24 05:53:00    2017-07-24 05:53:00
108280    34183    903    2017-07-24 11:00:00    2017-07-24 11:00:00
108281    34183    838    2017-07-24 12:55:00    2017-07-24 12:55:00
108282    34183    714    2017-07-24 06:57:00    2017-07-24 06:57:00
108283    34183    698    2017-07-24 05:07:00    2017-07-24 05:07:00
108284    34183    538    2017-07-24 05:57:00    2017-07-24 05:57:00
108285    34184    779    2017-07-24 13:21:00    2017-07-24 13:21:00
108286    34184    656    2017-07-24 04:30:00    2017-07-24 04:30:00
108287    34184    935    2017-07-24 10:55:00    2017-07-24 10:55:00
108288    34184    691    2017-07-24 10:52:00    2017-07-24 10:52:00
108289    34184    757    2017-07-24 19:22:00    2017-07-24 19:22:00
108290    34185    939    2017-07-24 04:19:00    2017-07-24 04:19:00
108291    34185    783    2017-07-24 22:34:00    2017-07-24 22:34:00
108292    34185    607    2017-07-24 17:52:00    2017-07-24 17:52:00
108293    34185    666    2017-07-24 09:41:00    2017-07-24 09:41:00
108294    34185    621    2017-07-24 08:59:00    2017-07-24 08:59:00
108295    34186    541    2017-07-24 12:21:00    2017-07-24 12:21:00
108296    34186    575    2017-07-24 21:38:00    2017-07-24 21:38:00
108297    34186    924    2017-07-24 21:41:00    2017-07-24 21:41:00
108298    34186    667    2017-07-24 17:50:00    2017-07-24 17:50:00
108299    34186    730    2017-07-24 19:08:00    2017-07-24 19:08:00
108300    34187    939    2017-07-24 07:39:00    2017-07-24 07:39:00
108301    34187    900    2017-07-24 03:55:00    2017-07-24 03:55:00
108302    34187    503    2017-07-24 22:51:00    2017-07-24 22:51:00
108303    34187    851    2017-07-24 14:43:00    2017-07-24 14:43:00
108304    34187    699    2017-07-24 05:33:00    2017-07-24 05:33:00
108305    34188    840    2017-07-24 04:44:00    2017-07-24 04:44:00
108306    34188    524    2017-07-24 10:15:00    2017-07-24 10:15:00
108307    34188    539    2017-07-24 17:28:00    2017-07-24 17:28:00
108308    34188    953    2017-07-24 02:18:00    2017-07-24 02:18:00
108309    34188    798    2017-07-24 07:30:00    2017-07-24 07:30:00
108310    34189    847    2017-07-24 06:19:00    2017-07-24 06:19:00
108311    34189    616    2017-07-24 22:18:00    2017-07-24 22:18:00
108312    34189    854    2017-07-24 01:38:00    2017-07-24 01:38:00
108313    34189    835    2017-07-24 21:06:00    2017-07-24 21:06:00
108314    34189    851    2017-07-24 09:52:00    2017-07-24 09:52:00
108315    34190    557    2017-07-24 20:26:00    2017-07-24 20:26:00
108316    34190    508    2017-07-24 18:03:00    2017-07-24 18:03:00
108317    34190    823    2017-07-24 14:28:00    2017-07-24 14:28:00
108318    34190    577    2017-07-24 13:39:00    2017-07-24 13:39:00
108319    34190    691    2017-07-24 08:26:00    2017-07-24 08:26:00
108320    34191    503    2017-07-24 03:14:00    2017-07-24 03:14:00
108321    34191    913    2017-07-24 08:34:00    2017-07-24 08:34:00
108322    34191    881    2017-07-24 05:55:00    2017-07-24 05:55:00
108323    34191    692    2017-07-24 20:23:00    2017-07-24 20:23:00
108324    34191    940    2017-07-24 16:08:00    2017-07-24 16:08:00
108325    34192    808    2017-07-24 21:44:00    2017-07-24 21:44:00
108326    34192    668    2017-07-24 01:53:00    2017-07-24 01:53:00
108327    34192    531    2017-07-24 04:37:00    2017-07-24 04:37:00
108328    34192    944    2017-07-24 16:37:00    2017-07-24 16:37:00
108329    34192    534    2017-07-24 02:45:00    2017-07-24 02:45:00
108330    34193    853    2017-07-24 01:43:00    2017-07-24 01:43:00
108331    34193    534    2017-07-24 12:18:00    2017-07-24 12:18:00
108332    34193    814    2017-07-24 14:03:00    2017-07-24 14:03:00
108333    34193    490    2017-07-24 18:10:00    2017-07-24 18:10:00
108334    34193    953    2017-07-24 21:06:00    2017-07-24 21:06:00
108335    34194    829    2017-07-24 14:46:00    2017-07-24 14:46:00
108336    34194    795    2017-07-24 16:09:00    2017-07-24 16:09:00
108337    34194    600    2017-07-24 07:35:00    2017-07-24 07:35:00
108338    34194    831    2017-07-24 22:51:00    2017-07-24 22:51:00
108339    34194    759    2017-07-24 08:31:00    2017-07-24 08:31:00
108340    34195    868    2017-07-24 15:26:00    2017-07-24 15:26:00
108341    34195    708    2017-07-24 03:11:00    2017-07-24 03:11:00
108342    34195    899    2017-07-24 15:54:00    2017-07-24 15:54:00
108343    34195    626    2017-07-24 07:02:00    2017-07-24 07:02:00
108344    34195    951    2017-07-24 23:34:00    2017-07-24 23:34:00
108345    34196    852    2017-07-24 14:53:00    2017-07-24 14:53:00
108346    34196    537    2017-07-24 15:28:00    2017-07-24 15:28:00
108347    34196    501    2017-07-24 19:31:00    2017-07-24 19:31:00
108348    34196    861    2017-07-24 03:43:00    2017-07-24 03:43:00
108349    34196    565    2017-07-24 16:15:00    2017-07-24 16:15:00
108350    34197    543    2017-07-24 14:54:00    2017-07-24 14:54:00
108351    34197    586    2017-07-24 12:10:00    2017-07-24 12:10:00
108352    34197    783    2017-07-24 14:41:00    2017-07-24 14:41:00
108353    34197    557    2017-07-24 09:26:00    2017-07-24 09:26:00
108354    34197    950    2017-07-24 18:26:00    2017-07-24 18:26:00
108355    34198    618    2017-07-24 09:09:00    2017-07-24 09:09:00
108356    34198    776    2017-07-24 07:13:00    2017-07-24 07:13:00
108357    34198    465    2017-07-24 14:17:00    2017-07-24 14:17:00
108358    34198    597    2017-07-24 23:54:00    2017-07-24 23:54:00
108359    34198    726    2017-07-24 12:59:00    2017-07-24 12:59:00
108360    34199    680    2017-07-24 21:28:00    2017-07-24 21:28:00
108361    34199    565    2017-07-24 01:11:00    2017-07-24 01:11:00
108362    34199    537    2017-07-24 23:02:00    2017-07-24 23:02:00
108363    34199    840    2017-07-24 05:48:00    2017-07-24 05:48:00
108364    34199    847    2017-07-24 11:43:00    2017-07-24 11:43:00
108365    34200    781    2017-07-24 05:55:00    2017-07-24 05:55:00
108366    34200    550    2017-07-24 01:28:00    2017-07-24 01:28:00
108367    34200    708    2017-07-24 03:39:00    2017-07-24 03:39:00
108368    34200    885    2017-07-24 05:05:00    2017-07-24 05:05:00
108369    34200    838    2017-07-24 04:01:00    2017-07-24 04:01:00
108370    34201    855    2017-07-24 03:40:00    2017-07-24 03:40:00
108371    34201    485    2017-07-24 12:27:00    2017-07-24 12:27:00
108372    34201    903    2017-07-24 10:37:00    2017-07-24 10:37:00
108373    34201    822    2017-07-24 21:34:00    2017-07-24 21:34:00
108374    34201    593    2017-07-24 22:28:00    2017-07-24 22:28:00
108375    34202    860    2017-07-24 05:06:00    2017-07-24 05:06:00
108376    34202    794    2017-07-24 15:34:00    2017-07-24 15:34:00
108377    34202    603    2017-07-24 04:12:00    2017-07-24 04:12:00
108378    34202    960    2017-07-24 13:40:00    2017-07-24 13:40:00
108379    34202    772    2017-07-24 21:11:00    2017-07-24 21:11:00
108380    34203    518    2017-07-24 14:06:00    2017-07-24 14:06:00
108381    34203    921    2017-07-24 22:28:00    2017-07-24 22:28:00
108382    34203    536    2017-07-24 02:44:00    2017-07-24 02:44:00
108383    34203    859    2017-07-24 03:57:00    2017-07-24 03:57:00
108384    34203    487    2017-07-24 14:09:00    2017-07-24 14:09:00
108385    34204    698    2017-07-24 02:28:00    2017-07-24 02:28:00
108386    34204    586    2017-07-24 01:01:00    2017-07-24 01:01:00
108387    34204    553    2017-07-24 19:48:00    2017-07-24 19:48:00
108388    34204    770    2017-07-24 01:14:00    2017-07-24 01:14:00
108389    34204    800    2017-07-24 12:22:00    2017-07-24 12:22:00
108390    34205    823    2017-07-24 13:20:00    2017-07-24 13:20:00
108391    34205    669    2017-07-24 11:29:00    2017-07-24 11:29:00
108392    34205    756    2017-07-24 18:08:00    2017-07-24 18:08:00
108393    34205    674    2017-07-24 08:13:00    2017-07-24 08:13:00
108394    34205    722    2017-07-24 19:30:00    2017-07-24 19:30:00
108395    34206    834    2017-07-24 08:44:00    2017-07-24 08:44:00
108396    34206    610    2017-07-24 16:37:00    2017-07-24 16:37:00
108397    34206    694    2017-07-24 07:49:00    2017-07-24 07:49:00
108398    34206    464    2017-07-24 10:14:00    2017-07-24 10:14:00
108399    34206    826    2017-07-24 06:47:00    2017-07-24 06:47:00
108400    34207    835    2017-07-24 13:44:00    2017-07-24 13:44:00
108401    34207    544    2017-07-24 11:12:00    2017-07-24 11:12:00
108402    34207    732    2017-07-24 19:06:00    2017-07-24 19:06:00
108403    34207    825    2017-07-24 05:28:00    2017-07-24 05:28:00
108404    34207    638    2017-07-24 03:02:00    2017-07-24 03:02:00
108405    34208    506    2017-07-24 05:00:00    2017-07-24 05:00:00
108406    34208    840    2017-07-24 06:24:00    2017-07-24 06:24:00
108407    34208    681    2017-07-24 06:48:00    2017-07-24 06:48:00
108408    34208    557    2017-07-24 16:34:00    2017-07-24 16:34:00
108409    34208    773    2017-07-24 11:41:00    2017-07-24 11:41:00
108410    34209    513    2017-07-24 22:17:00    2017-07-24 22:17:00
108411    34209    874    2017-07-24 06:33:00    2017-07-24 06:33:00
108412    34209    532    2017-07-24 16:18:00    2017-07-24 16:18:00
108413    34209    739    2017-07-24 10:21:00    2017-07-24 10:21:00
108414    34209    721    2017-07-24 15:26:00    2017-07-24 15:26:00
108415    34210    815    2017-07-25 03:09:00    2017-07-25 03:09:00
108416    34210    712    2017-07-25 01:27:00    2017-07-25 01:27:00
108417    34210    957    2017-07-25 22:19:00    2017-07-25 22:19:00
108418    34210    465    2017-07-25 11:02:00    2017-07-25 11:02:00
108419    34210    555    2017-07-25 15:00:00    2017-07-25 15:00:00
108420    34211    925    2017-07-25 15:24:00    2017-07-25 15:24:00
108421    34211    934    2017-07-25 05:06:00    2017-07-25 05:06:00
108422    34211    802    2017-07-25 07:58:00    2017-07-25 07:58:00
108423    34211    782    2017-07-25 15:11:00    2017-07-25 15:11:00
108424    34211    472    2017-07-25 23:22:00    2017-07-25 23:22:00
108425    34212    552    2017-07-25 02:31:00    2017-07-25 02:31:00
108426    34212    740    2017-07-25 20:54:00    2017-07-25 20:54:00
108427    34212    651    2017-07-25 14:58:00    2017-07-25 14:58:00
108428    34212    655    2017-07-25 04:46:00    2017-07-25 04:46:00
108429    34212    467    2017-07-25 08:36:00    2017-07-25 08:36:00
108430    34213    867    2017-07-25 06:49:00    2017-07-25 06:49:00
108431    34213    894    2017-07-25 13:56:00    2017-07-25 13:56:00
108432    34213    528    2017-07-25 22:44:00    2017-07-25 22:44:00
108433    34213    629    2017-07-25 16:54:00    2017-07-25 16:54:00
108434    34213    804    2017-07-25 17:29:00    2017-07-25 17:29:00
108435    34214    584    2017-07-25 05:58:00    2017-07-25 05:58:00
108436    34214    924    2017-07-25 10:23:00    2017-07-25 10:23:00
108437    34214    598    2017-07-25 19:51:00    2017-07-25 19:51:00
108438    34214    707    2017-07-25 04:20:00    2017-07-25 04:20:00
108439    34214    679    2017-07-25 01:19:00    2017-07-25 01:19:00
108440    34215    913    2017-07-25 15:11:00    2017-07-25 15:11:00
108441    34215    480    2017-07-25 23:11:00    2017-07-25 23:11:00
108442    34215    865    2017-07-25 09:25:00    2017-07-25 09:25:00
108443    34215    778    2017-07-25 20:30:00    2017-07-25 20:30:00
108444    34215    847    2017-07-25 03:51:00    2017-07-25 03:51:00
108445    34216    622    2017-07-25 20:15:00    2017-07-25 20:15:00
108446    34216    714    2017-07-25 03:58:00    2017-07-25 03:58:00
108447    34216    519    2017-07-25 04:38:00    2017-07-25 04:38:00
108448    34216    944    2017-07-25 23:57:00    2017-07-25 23:57:00
108449    34216    783    2017-07-25 12:24:00    2017-07-25 12:24:00
108450    34217    620    2017-07-25 12:00:00    2017-07-25 12:00:00
108451    34217    505    2017-07-25 04:39:00    2017-07-25 04:39:00
108452    34217    816    2017-07-25 20:16:00    2017-07-25 20:16:00
108453    34217    790    2017-07-25 10:50:00    2017-07-25 10:50:00
108454    34217    841    2017-07-25 16:23:00    2017-07-25 16:23:00
108455    34218    785    2017-07-26 17:16:00    2017-07-26 17:16:00
108456    34218    922    2017-07-26 08:43:00    2017-07-26 08:43:00
108457    34218    538    2017-07-26 06:44:00    2017-07-26 06:44:00
108458    34218    494    2017-07-26 04:58:00    2017-07-26 04:58:00
108459    34218    888    2017-07-26 12:05:00    2017-07-26 12:05:00
108460    34219    467    2017-07-26 15:04:00    2017-07-26 15:04:00
108461    34219    788    2017-07-26 23:52:00    2017-07-26 23:52:00
108462    34219    502    2017-07-26 19:01:00    2017-07-26 19:01:00
108463    34219    934    2017-07-26 18:58:00    2017-07-26 18:58:00
108464    34219    757    2017-07-26 08:04:00    2017-07-26 08:04:00
108465    34220    810    2017-07-26 16:54:00    2017-07-26 16:54:00
108466    34220    744    2017-07-26 22:02:00    2017-07-26 22:02:00
108467    34220    885    2017-07-26 15:04:00    2017-07-26 15:04:00
108468    34220    842    2017-07-26 05:24:00    2017-07-26 05:24:00
108469    34220    881    2017-07-26 11:03:00    2017-07-26 11:03:00
108470    34221    698    2017-07-26 10:17:00    2017-07-26 10:17:00
108471    34221    575    2017-07-26 23:33:00    2017-07-26 23:33:00
108472    34221    613    2017-07-26 18:30:00    2017-07-26 18:30:00
108473    34221    749    2017-07-26 06:50:00    2017-07-26 06:50:00
108474    34221    465    2017-07-26 12:57:00    2017-07-26 12:57:00
108475    34222    927    2017-07-26 15:17:00    2017-07-26 15:17:00
108476    34222    523    2017-07-26 16:59:00    2017-07-26 16:59:00
108477    34222    779    2017-07-26 01:33:00    2017-07-26 01:33:00
108478    34222    785    2017-07-26 14:21:00    2017-07-26 14:21:00
108479    34222    771    2017-07-26 05:54:00    2017-07-26 05:54:00
108480    34223    769    2017-07-26 11:58:00    2017-07-26 11:58:00
108481    34223    658    2017-07-26 15:45:00    2017-07-26 15:45:00
108482    34223    688    2017-07-26 20:41:00    2017-07-26 20:41:00
108483    34223    525    2017-07-26 11:22:00    2017-07-26 11:22:00
108484    34223    640    2017-07-26 23:10:00    2017-07-26 23:10:00
108485    34224    912    2017-07-26 15:54:00    2017-07-26 15:54:00
108486    34224    530    2017-07-26 02:45:00    2017-07-26 02:45:00
108487    34224    542    2017-07-26 08:12:00    2017-07-26 08:12:00
108488    34224    613    2017-07-26 16:59:00    2017-07-26 16:59:00
108489    34224    915    2017-07-26 21:32:00    2017-07-26 21:32:00
108490    34225    547    2017-07-26 01:08:00    2017-07-26 01:08:00
108491    34225    801    2017-07-26 07:00:00    2017-07-26 07:00:00
108492    34225    797    2017-07-26 12:19:00    2017-07-26 12:19:00
108493    34225    905    2017-07-26 05:26:00    2017-07-26 05:26:00
108494    34225    660    2017-07-26 22:33:00    2017-07-26 22:33:00
108495    34226    922    2017-07-26 18:15:00    2017-07-26 18:15:00
108496    34226    563    2017-07-26 15:32:00    2017-07-26 15:32:00
108497    34226    835    2017-07-26 23:42:00    2017-07-26 23:42:00
108498    34226    790    2017-07-26 01:51:00    2017-07-26 01:51:00
108499    34226    723    2017-07-26 05:52:00    2017-07-26 05:52:00
108500    34227    744    2017-07-26 11:14:00    2017-07-26 11:14:00
108501    34227    709    2017-07-26 07:37:00    2017-07-26 07:37:00
108502    34227    509    2017-07-26 18:00:00    2017-07-26 18:00:00
108503    34227    528    2017-07-26 23:05:00    2017-07-26 23:05:00
108504    34227    470    2017-07-26 18:21:00    2017-07-26 18:21:00
108505    34228    723    2017-07-26 15:03:00    2017-07-26 15:03:00
108506    34228    767    2017-07-26 15:00:00    2017-07-26 15:00:00
108507    34228    865    2017-07-26 11:36:00    2017-07-26 11:36:00
108508    34228    950    2017-07-26 09:53:00    2017-07-26 09:53:00
108509    34228    718    2017-07-26 07:24:00    2017-07-26 07:24:00
108510    34229    638    2017-07-26 13:00:00    2017-07-26 13:00:00
108511    34229    878    2017-07-26 01:13:00    2017-07-26 01:13:00
108512    34229    573    2017-07-26 09:19:00    2017-07-26 09:19:00
108513    34229    496    2017-07-26 20:00:00    2017-07-26 20:00:00
108514    34229    555    2017-07-26 22:02:00    2017-07-26 22:02:00
108515    34230    754    2017-07-26 17:25:00    2017-07-26 17:25:00
108516    34230    686    2017-07-26 22:04:00    2017-07-26 22:04:00
108517    34230    855    2017-07-26 13:28:00    2017-07-26 13:28:00
108518    34230    502    2017-07-26 09:12:00    2017-07-26 09:12:00
108519    34230    566    2017-07-26 20:42:00    2017-07-26 20:42:00
108520    34231    956    2017-07-26 11:53:00    2017-07-26 11:53:00
108521    34231    811    2017-07-26 15:45:00    2017-07-26 15:45:00
108522    34231    810    2017-07-26 18:56:00    2017-07-26 18:56:00
108523    34231    540    2017-07-26 02:23:00    2017-07-26 02:23:00
108524    34231    653    2017-07-26 09:20:00    2017-07-26 09:20:00
108525    34232    942    2017-07-26 03:24:00    2017-07-26 03:24:00
108526    34232    844    2017-07-26 07:10:00    2017-07-26 07:10:00
108527    34232    696    2017-07-26 14:41:00    2017-07-26 14:41:00
108528    34232    795    2017-07-26 09:32:00    2017-07-26 09:32:00
108529    34232    491    2017-07-26 16:03:00    2017-07-26 16:03:00
108530    34233    543    2017-07-26 14:04:00    2017-07-26 14:04:00
108531    34233    474    2017-07-26 05:38:00    2017-07-26 05:38:00
108532    34233    887    2017-07-26 16:23:00    2017-07-26 16:23:00
108533    34233    664    2017-07-26 16:07:00    2017-07-26 16:07:00
108534    34233    755    2017-07-26 10:51:00    2017-07-26 10:51:00
108535    34234    805    2017-07-26 09:13:00    2017-07-26 09:13:00
108536    34234    545    2017-07-26 18:52:00    2017-07-26 18:52:00
108537    34234    840    2017-07-26 11:35:00    2017-07-26 11:35:00
108538    34234    854    2017-07-26 08:53:00    2017-07-26 08:53:00
108539    34234    466    2017-07-26 09:27:00    2017-07-26 09:27:00
108540    34235    542    2017-07-26 11:18:00    2017-07-26 11:18:00
108541    34235    551    2017-07-26 04:00:00    2017-07-26 04:00:00
108542    34235    639    2017-07-26 15:48:00    2017-07-26 15:48:00
108543    34235    703    2017-07-26 06:00:00    2017-07-26 06:00:00
108544    34235    702    2017-07-26 23:59:00    2017-07-26 23:59:00
108545    34236    825    2017-07-26 01:50:00    2017-07-26 01:50:00
108546    34236    531    2017-07-26 17:30:00    2017-07-26 17:30:00
108547    34236    836    2017-07-26 07:28:00    2017-07-26 07:28:00
108548    34236    758    2017-07-26 12:34:00    2017-07-26 12:34:00
108549    34236    563    2017-07-26 16:03:00    2017-07-26 16:03:00
108550    34237    907    2017-07-26 12:00:00    2017-07-26 12:00:00
108551    34237    677    2017-07-26 22:04:00    2017-07-26 22:04:00
108552    34237    517    2017-07-26 04:01:00    2017-07-26 04:01:00
108553    34237    803    2017-07-26 19:33:00    2017-07-26 19:33:00
108554    34237    593    2017-07-26 16:37:00    2017-07-26 16:37:00
108555    34238    463    2017-07-26 09:34:00    2017-07-26 09:34:00
108556    34238    734    2017-07-26 21:15:00    2017-07-26 21:15:00
108557    34238    616    2017-07-26 21:00:00    2017-07-26 21:00:00
108558    34238    858    2017-07-26 10:23:00    2017-07-26 10:23:00
108559    34238    838    2017-07-26 04:00:00    2017-07-26 04:00:00
108560    34239    909    2017-07-26 21:58:00    2017-07-26 21:58:00
108561    34239    521    2017-07-26 22:49:00    2017-07-26 22:49:00
108562    34239    544    2017-07-26 22:00:00    2017-07-26 22:00:00
108563    34239    604    2017-07-26 22:04:00    2017-07-26 22:04:00
108564    34239    787    2017-07-26 12:13:00    2017-07-26 12:13:00
108565    34240    948    2017-07-26 19:56:00    2017-07-26 19:56:00
108566    34240    634    2017-07-26 06:39:00    2017-07-26 06:39:00
108567    34240    721    2017-07-26 23:44:00    2017-07-26 23:44:00
108568    34240    783    2017-07-26 18:30:00    2017-07-26 18:30:00
108569    34240    753    2017-07-26 18:30:00    2017-07-26 18:30:00
108570    34241    827    2017-07-26 16:15:00    2017-07-26 16:15:00
108571    34241    472    2017-07-26 09:32:00    2017-07-26 09:32:00
108572    34241    874    2017-07-26 16:00:00    2017-07-26 16:00:00
108573    34241    863    2017-07-26 07:58:00    2017-07-26 07:58:00
108574    34241    818    2017-07-26 21:13:00    2017-07-26 21:13:00
108575    34242    692    2017-07-26 01:16:00    2017-07-26 01:16:00
108576    34242    905    2017-07-26 08:27:00    2017-07-26 08:27:00
108577    34242    482    2017-07-26 04:34:00    2017-07-26 04:34:00
108578    34242    470    2017-07-26 08:22:00    2017-07-26 08:22:00
108579    34242    607    2017-07-26 15:07:00    2017-07-26 15:07:00
108580    34243    840    2017-07-26 19:43:00    2017-07-26 19:43:00
108581    34243    628    2017-07-26 18:57:00    2017-07-26 18:57:00
108582    34243    723    2017-07-26 06:41:00    2017-07-26 06:41:00
108583    34243    593    2017-07-26 22:28:00    2017-07-26 22:28:00
108584    34243    621    2017-07-26 02:12:00    2017-07-26 02:12:00
108585    34244    615    2017-07-26 02:33:00    2017-07-26 02:33:00
108586    34244    572    2017-07-26 06:28:00    2017-07-26 06:28:00
108587    34244    465    2017-07-26 14:25:00    2017-07-26 14:25:00
108588    34244    869    2017-07-26 13:51:00    2017-07-26 13:51:00
108589    34244    850    2017-07-26 08:14:00    2017-07-26 08:14:00
108590    34245    600    2017-07-26 10:53:00    2017-07-26 10:53:00
108591    34245    714    2017-07-26 08:00:00    2017-07-26 08:00:00
108592    34245    470    2017-07-26 01:26:00    2017-07-26 01:26:00
108593    34245    945    2017-07-26 21:19:00    2017-07-26 21:19:00
108594    34245    865    2017-07-26 05:01:00    2017-07-26 05:01:00
108595    34246    546    2017-07-26 10:05:00    2017-07-26 10:05:00
108596    34246    853    2017-07-26 05:58:00    2017-07-26 05:58:00
108597    34246    810    2017-07-26 13:35:00    2017-07-26 13:35:00
108598    34246    701    2017-07-26 18:01:00    2017-07-26 18:01:00
108599    34246    638    2017-07-26 16:15:00    2017-07-26 16:15:00
108600    34247    918    2017-07-26 21:43:00    2017-07-26 21:43:00
108601    34247    933    2017-07-26 10:25:00    2017-07-26 10:25:00
108602    34247    931    2017-07-26 04:25:00    2017-07-26 04:25:00
108603    34247    523    2017-07-26 16:38:00    2017-07-26 16:38:00
108604    34247    846    2017-07-26 01:15:00    2017-07-26 01:15:00
108605    34248    646    2017-07-26 12:17:00    2017-07-26 12:17:00
108606    34248    917    2017-07-26 11:17:00    2017-07-26 11:17:00
108607    34248    830    2017-07-26 01:28:00    2017-07-26 01:28:00
108608    34248    768    2017-07-26 11:01:00    2017-07-26 11:01:00
108609    34248    865    2017-07-26 16:36:00    2017-07-26 16:36:00
108610    34249    486    2017-07-26 17:54:00    2017-07-26 17:54:00
108611    34249    762    2017-07-26 19:08:00    2017-07-26 19:08:00
108612    34249    794    2017-07-26 06:47:00    2017-07-26 06:47:00
108613    34249    677    2017-07-26 10:09:00    2017-07-26 10:09:00
108614    34249    877    2017-07-26 01:19:00    2017-07-26 01:19:00
108615    34250    778    2017-07-26 12:03:00    2017-07-26 12:03:00
108616    34250    503    2017-07-26 18:38:00    2017-07-26 18:38:00
108617    34250    610    2017-07-26 14:57:00    2017-07-26 14:57:00
108618    34250    488    2017-07-26 05:50:00    2017-07-26 05:50:00
108619    34250    941    2017-07-26 17:58:00    2017-07-26 17:58:00
108620    34251    902    2017-07-26 11:28:00    2017-07-26 11:28:00
108621    34251    873    2017-07-26 04:23:00    2017-07-26 04:23:00
108622    34251    520    2017-07-26 21:00:00    2017-07-26 21:00:00
108623    34251    620    2017-07-26 01:24:00    2017-07-26 01:24:00
108624    34251    803    2017-07-26 14:15:00    2017-07-26 14:15:00
108625    34252    513    2017-07-26 05:52:00    2017-07-26 05:52:00
108626    34252    691    2017-07-26 18:46:00    2017-07-26 18:46:00
108627    34252    781    2017-07-26 18:06:00    2017-07-26 18:06:00
108628    34252    949    2017-07-26 11:50:00    2017-07-26 11:50:00
108629    34252    690    2017-07-26 21:40:00    2017-07-26 21:40:00
108630    34253    773    2017-07-26 02:56:00    2017-07-26 02:56:00
108631    34253    788    2017-07-26 16:33:00    2017-07-26 16:33:00
108632    34253    631    2017-07-26 18:09:00    2017-07-26 18:09:00
108633    34253    663    2017-07-26 09:16:00    2017-07-26 09:16:00
108634    34253    740    2017-07-26 08:39:00    2017-07-26 08:39:00
108635    34254    853    2017-07-26 03:42:00    2017-07-26 03:42:00
108636    34254    904    2017-07-26 12:56:00    2017-07-26 12:56:00
108637    34254    694    2017-07-26 08:24:00    2017-07-26 08:24:00
108638    34254    862    2017-07-26 13:10:00    2017-07-26 13:10:00
108639    34254    560    2017-07-26 15:39:00    2017-07-26 15:39:00
108640    34255    886    2017-07-26 10:35:00    2017-07-26 10:35:00
108641    34255    544    2017-07-26 18:03:00    2017-07-26 18:03:00
108642    34255    875    2017-07-26 11:55:00    2017-07-26 11:55:00
108643    34255    961    2017-07-26 10:10:00    2017-07-26 10:10:00
108644    34255    669    2017-07-26 10:47:00    2017-07-26 10:47:00
108645    34256    621    2017-07-26 18:29:00    2017-07-26 18:29:00
108646    34256    510    2017-07-26 01:29:00    2017-07-26 01:29:00
108647    34256    733    2017-07-26 04:03:00    2017-07-26 04:03:00
108648    34256    542    2017-07-26 16:43:00    2017-07-26 16:43:00
108649    34256    718    2017-07-26 22:08:00    2017-07-26 22:08:00
108650    34257    853    2017-07-26 01:31:00    2017-07-26 01:31:00
108651    34257    477    2017-07-26 18:18:00    2017-07-26 18:18:00
108652    34257    942    2017-07-26 20:05:00    2017-07-26 20:05:00
108653    34257    471    2017-07-26 04:13:00    2017-07-26 04:13:00
108654    34257    631    2017-07-26 17:57:00    2017-07-26 17:57:00
108655    34258    759    2017-07-26 07:01:00    2017-07-26 07:01:00
108656    34258    907    2017-07-26 10:55:00    2017-07-26 10:55:00
108657    34258    511    2017-07-26 19:28:00    2017-07-26 19:28:00
108658    34258    907    2017-07-26 03:47:00    2017-07-26 03:47:00
108659    34258    902    2017-07-26 06:50:00    2017-07-26 06:50:00
108660    34259    706    2017-07-26 13:29:00    2017-07-26 13:29:00
108661    34259    618    2017-07-26 10:23:00    2017-07-26 10:23:00
108662    34259    930    2017-07-26 05:17:00    2017-07-26 05:17:00
108663    34259    473    2017-07-26 08:14:00    2017-07-26 08:14:00
108664    34259    576    2017-07-26 04:13:00    2017-07-26 04:13:00
108665    34260    761    2017-07-26 16:12:00    2017-07-26 16:12:00
108666    34260    627    2017-07-26 12:00:00    2017-07-26 12:00:00
108667    34260    817    2017-07-26 14:25:00    2017-07-26 14:25:00
108668    34260    753    2017-07-26 09:06:00    2017-07-26 09:06:00
108669    34260    928    2017-07-26 20:22:00    2017-07-26 20:22:00
108670    34261    588    2017-07-26 14:05:00    2017-07-26 14:05:00
108671    34261    763    2017-07-26 16:48:00    2017-07-26 16:48:00
108672    34261    670    2017-07-26 11:19:00    2017-07-26 11:19:00
108673    34261    771    2017-07-26 12:30:00    2017-07-26 12:30:00
108674    34261    723    2017-07-26 03:04:00    2017-07-26 03:04:00
108675    34262    531    2017-07-26 18:54:00    2017-07-26 18:54:00
108676    34262    635    2017-07-26 09:13:00    2017-07-26 09:13:00
108677    34262    520    2017-07-26 05:14:00    2017-07-26 05:14:00
108678    34262    536    2017-07-26 22:37:00    2017-07-26 22:37:00
108679    34262    468    2017-07-26 22:47:00    2017-07-26 22:47:00
108680    34263    829    2017-07-26 18:44:00    2017-07-26 18:44:00
108681    34263    541    2017-07-26 21:13:00    2017-07-26 21:13:00
108682    34263    626    2017-07-26 19:09:00    2017-07-26 19:09:00
108683    34263    514    2017-07-26 14:42:00    2017-07-26 14:42:00
108684    34263    671    2017-07-26 09:51:00    2017-07-26 09:51:00
108685    34264    871    2017-07-26 23:12:00    2017-07-26 23:12:00
108686    34264    498    2017-07-26 08:42:00    2017-07-26 08:42:00
108687    34264    730    2017-07-26 08:04:00    2017-07-26 08:04:00
108688    34264    463    2017-07-26 22:35:00    2017-07-26 22:35:00
108689    34264    899    2017-07-26 09:18:00    2017-07-26 09:18:00
108690    34265    562    2017-07-26 03:23:00    2017-07-26 03:23:00
108691    34265    902    2017-07-26 19:07:00    2017-07-26 19:07:00
108692    34265    617    2017-07-26 19:38:00    2017-07-26 19:38:00
108693    34265    716    2017-07-26 05:05:00    2017-07-26 05:05:00
108694    34265    750    2017-07-26 12:39:00    2017-07-26 12:39:00
108695    34266    596    2017-07-26 14:04:00    2017-07-26 14:04:00
108696    34266    529    2017-07-26 12:29:00    2017-07-26 12:29:00
108697    34266    737    2017-07-26 17:45:00    2017-07-26 17:45:00
108698    34266    701    2017-07-26 19:43:00    2017-07-26 19:43:00
108699    34266    616    2017-07-26 01:52:00    2017-07-26 01:52:00
108700    34267    647    2017-07-26 23:26:00    2017-07-26 23:26:00
108701    34267    874    2017-07-26 01:21:00    2017-07-26 01:21:00
108702    34267    613    2017-07-26 15:45:00    2017-07-26 15:45:00
108703    34267    649    2017-07-26 06:09:00    2017-07-26 06:09:00
108704    34267    608    2017-07-26 13:24:00    2017-07-26 13:24:00
108705    34268    500    2017-07-26 22:42:00    2017-07-26 22:42:00
108706    34268    680    2017-07-26 22:28:00    2017-07-26 22:28:00
108707    34268    497    2017-07-26 04:02:00    2017-07-26 04:02:00
108708    34268    941    2017-07-26 02:45:00    2017-07-26 02:45:00
108709    34268    604    2017-07-26 17:54:00    2017-07-26 17:54:00
108710    34269    469    2017-07-26 18:21:00    2017-07-26 18:21:00
108711    34269    572    2017-07-26 08:53:00    2017-07-26 08:53:00
108712    34269    784    2017-07-26 10:01:00    2017-07-26 10:01:00
108713    34269    646    2017-07-26 18:24:00    2017-07-26 18:24:00
108714    34269    717    2017-07-26 10:34:00    2017-07-26 10:34:00
108715    34270    574    2017-07-26 16:00:00    2017-07-26 16:00:00
108716    34270    609    2017-07-26 16:07:00    2017-07-26 16:07:00
108717    34270    773    2017-07-26 20:22:00    2017-07-26 20:22:00
108718    34270    945    2017-07-26 02:38:00    2017-07-26 02:38:00
108719    34270    661    2017-07-26 20:34:00    2017-07-26 20:34:00
108720    34271    930    2017-07-26 20:41:00    2017-07-26 20:41:00
108721    34271    591    2017-07-26 02:10:00    2017-07-26 02:10:00
108722    34271    877    2017-07-26 17:54:00    2017-07-26 17:54:00
108723    34271    711    2017-07-26 03:21:00    2017-07-26 03:21:00
108724    34271    556    2017-07-26 19:53:00    2017-07-26 19:53:00
108725    34272    498    2017-07-26 09:29:00    2017-07-26 09:29:00
108726    34272    932    2017-07-26 15:04:00    2017-07-26 15:04:00
108727    34272    606    2017-07-26 16:54:00    2017-07-26 16:54:00
108728    34272    872    2017-07-26 21:23:00    2017-07-26 21:23:00
108729    34272    945    2017-07-26 09:39:00    2017-07-26 09:39:00
108730    34273    886    2017-07-26 11:38:00    2017-07-26 11:38:00
108731    34273    668    2017-07-26 01:53:00    2017-07-26 01:53:00
108732    34273    577    2017-07-26 02:57:00    2017-07-26 02:57:00
108733    34273    657    2017-07-26 13:00:00    2017-07-26 13:00:00
108734    34273    501    2017-07-26 19:17:00    2017-07-26 19:17:00
108735    34274    954    2017-07-26 14:47:00    2017-07-26 14:47:00
108736    34274    682    2017-07-26 11:49:00    2017-07-26 11:49:00
108737    34274    725    2017-07-26 12:59:00    2017-07-26 12:59:00
108738    34274    860    2017-07-26 07:42:00    2017-07-26 07:42:00
108739    34274    609    2017-07-26 14:23:00    2017-07-26 14:23:00
108740    34275    468    2017-07-26 12:49:00    2017-07-26 12:49:00
108741    34275    490    2017-07-26 15:22:00    2017-07-26 15:22:00
108742    34275    802    2017-07-26 09:29:00    2017-07-26 09:29:00
108743    34275    520    2017-07-26 03:57:00    2017-07-26 03:57:00
108744    34275    878    2017-07-26 20:43:00    2017-07-26 20:43:00
108745    34276    922    2017-07-26 17:30:00    2017-07-26 17:30:00
108746    34276    665    2017-07-26 12:50:00    2017-07-26 12:50:00
108747    34276    757    2017-07-26 07:53:00    2017-07-26 07:53:00
108748    34276    918    2017-07-26 18:05:00    2017-07-26 18:05:00
108749    34276    610    2017-07-26 09:56:00    2017-07-26 09:56:00
108750    34277    508    2017-07-26 08:51:00    2017-07-26 08:51:00
108751    34277    529    2017-07-26 06:52:00    2017-07-26 06:52:00
108752    34277    649    2017-07-26 20:44:00    2017-07-26 20:44:00
108753    34277    736    2017-07-26 21:44:00    2017-07-26 21:44:00
108754    34277    546    2017-07-26 11:04:00    2017-07-26 11:04:00
108755    34278    878    2017-07-26 09:34:00    2017-07-26 09:34:00
108756    34278    574    2017-07-26 12:16:00    2017-07-26 12:16:00
108757    34278    478    2017-07-26 01:33:00    2017-07-26 01:33:00
108758    34278    811    2017-07-26 09:23:00    2017-07-26 09:23:00
108759    34278    522    2017-07-26 08:35:00    2017-07-26 08:35:00
108760    34279    685    2017-07-26 12:11:00    2017-07-26 12:11:00
108761    34279    786    2017-07-26 18:32:00    2017-07-26 18:32:00
108762    34279    518    2017-07-26 02:43:00    2017-07-26 02:43:00
108763    34279    588    2017-07-26 19:55:00    2017-07-26 19:55:00
108764    34279    646    2017-07-26 20:54:00    2017-07-26 20:54:00
108765    34280    574    2017-07-26 01:04:00    2017-07-26 01:04:00
108766    34280    938    2017-07-26 11:59:00    2017-07-26 11:59:00
108767    34280    525    2017-07-26 08:12:00    2017-07-26 08:12:00
108768    34280    679    2017-07-26 22:40:00    2017-07-26 22:40:00
108769    34280    819    2017-07-26 08:27:00    2017-07-26 08:27:00
108770    34281    709    2017-07-26 07:07:00    2017-07-26 07:07:00
108771    34281    843    2017-07-26 01:36:00    2017-07-26 01:36:00
108772    34281    878    2017-07-26 01:03:00    2017-07-26 01:03:00
108773    34281    927    2017-07-26 03:37:00    2017-07-26 03:37:00
108774    34281    532    2017-07-26 08:24:00    2017-07-26 08:24:00
108775    34282    585    2017-07-26 04:33:00    2017-07-26 04:33:00
108776    34282    748    2017-07-26 19:52:00    2017-07-26 19:52:00
108777    34282    845    2017-07-26 21:27:00    2017-07-26 21:27:00
108778    34282    936    2017-07-26 16:08:00    2017-07-26 16:08:00
108779    34282    793    2017-07-26 20:03:00    2017-07-26 20:03:00
108780    34283    526    2017-07-26 12:25:00    2017-07-26 12:25:00
108781    34283    602    2017-07-26 20:11:00    2017-07-26 20:11:00
108782    34283    601    2017-07-26 02:57:00    2017-07-26 02:57:00
108783    34283    685    2017-07-26 02:01:00    2017-07-26 02:01:00
108784    34283    657    2017-07-26 13:21:00    2017-07-26 13:21:00
108785    34284    691    2017-07-26 04:10:00    2017-07-26 04:10:00
108786    34284    756    2017-07-26 02:02:00    2017-07-26 02:02:00
108787    34284    492    2017-07-26 16:33:00    2017-07-26 16:33:00
108788    34284    664    2017-07-26 14:09:00    2017-07-26 14:09:00
108789    34284    960    2017-07-26 10:47:00    2017-07-26 10:47:00
108790    34285    748    2017-07-26 06:25:00    2017-07-26 06:25:00
108791    34285    762    2017-07-26 08:24:00    2017-07-26 08:24:00
108792    34285    549    2017-07-26 12:44:00    2017-07-26 12:44:00
108793    34285    808    2017-07-26 07:18:00    2017-07-26 07:18:00
108794    34285    513    2017-07-26 18:44:00    2017-07-26 18:44:00
108795    34286    935    2017-07-26 03:25:00    2017-07-26 03:25:00
108796    34286    643    2017-07-26 18:42:00    2017-07-26 18:42:00
108797    34286    676    2017-07-26 16:28:00    2017-07-26 16:28:00
108798    34286    605    2017-07-26 22:36:00    2017-07-26 22:36:00
108799    34286    801    2017-07-26 01:45:00    2017-07-26 01:45:00
108800    34287    664    2017-07-26 22:41:00    2017-07-26 22:41:00
108801    34287    887    2017-07-26 06:17:00    2017-07-26 06:17:00
108802    34287    732    2017-07-26 13:22:00    2017-07-26 13:22:00
108803    34287    489    2017-07-26 13:12:00    2017-07-26 13:12:00
108804    34287    882    2017-07-26 08:46:00    2017-07-26 08:46:00
108805    34288    620    2017-07-26 06:35:00    2017-07-26 06:35:00
108806    34288    830    2017-07-26 05:07:00    2017-07-26 05:07:00
108807    34288    794    2017-07-26 03:42:00    2017-07-26 03:42:00
108808    34288    941    2017-07-26 08:10:00    2017-07-26 08:10:00
108809    34288    732    2017-07-26 21:11:00    2017-07-26 21:11:00
108810    34289    954    2017-07-26 13:11:00    2017-07-26 13:11:00
108811    34289    615    2017-07-26 16:44:00    2017-07-26 16:44:00
108812    34289    690    2017-07-26 19:03:00    2017-07-26 19:03:00
108813    34289    834    2017-07-26 22:38:00    2017-07-26 22:38:00
108814    34289    593    2017-07-26 17:22:00    2017-07-26 17:22:00
108815    34290    463    2017-07-26 05:03:00    2017-07-26 05:03:00
108816    34290    768    2017-07-26 05:51:00    2017-07-26 05:51:00
108817    34290    638    2017-07-26 13:52:00    2017-07-26 13:52:00
108818    34290    766    2017-07-26 09:51:00    2017-07-26 09:51:00
108819    34290    585    2017-07-26 10:09:00    2017-07-26 10:09:00
108820    34291    833    2017-07-26 18:02:00    2017-07-26 18:02:00
108821    34291    955    2017-07-26 04:50:00    2017-07-26 04:50:00
108822    34291    857    2017-07-26 19:39:00    2017-07-26 19:39:00
108823    34291    653    2017-07-26 06:09:00    2017-07-26 06:09:00
108824    34291    745    2017-07-26 09:54:00    2017-07-26 09:54:00
108825    34292    558    2017-07-26 18:49:00    2017-07-26 18:49:00
108826    34292    908    2017-07-26 01:31:00    2017-07-26 01:31:00
108827    34292    870    2017-07-26 03:32:00    2017-07-26 03:32:00
108828    34292    732    2017-07-26 20:28:00    2017-07-26 20:28:00
108829    34292    547    2017-07-26 20:14:00    2017-07-26 20:14:00
108830    34293    525    2017-07-26 07:45:00    2017-07-26 07:45:00
108831    34293    828    2017-07-26 13:26:00    2017-07-26 13:26:00
108832    34293    958    2017-07-26 02:53:00    2017-07-26 02:53:00
108833    34293    732    2017-07-26 21:40:00    2017-07-26 21:40:00
108834    34293    686    2017-07-26 17:33:00    2017-07-26 17:33:00
108835    34294    668    2017-07-26 09:22:00    2017-07-26 09:22:00
108836    34294    691    2017-07-26 08:10:00    2017-07-26 08:10:00
108837    34294    567    2017-07-26 17:53:00    2017-07-26 17:53:00
108838    34294    637    2017-07-26 23:41:00    2017-07-26 23:41:00
108839    34294    929    2017-07-26 15:51:00    2017-07-26 15:51:00
108840    34295    846    2017-07-26 14:11:00    2017-07-26 14:11:00
108841    34295    897    2017-07-26 12:26:00    2017-07-26 12:26:00
108842    34295    815    2017-07-26 04:09:00    2017-07-26 04:09:00
108843    34295    532    2017-07-26 22:00:00    2017-07-26 22:00:00
108844    34295    869    2017-07-26 02:43:00    2017-07-26 02:43:00
108845    34296    765    2017-07-26 12:49:00    2017-07-26 12:49:00
108846    34296    499    2017-07-26 01:35:00    2017-07-26 01:35:00
108847    34296    612    2017-07-26 23:24:00    2017-07-26 23:24:00
108848    34296    509    2017-07-26 21:06:00    2017-07-26 21:06:00
108849    34296    689    2017-07-26 15:33:00    2017-07-26 15:33:00
108850    34297    475    2017-07-26 08:34:00    2017-07-26 08:34:00
108851    34297    751    2017-07-26 06:30:00    2017-07-26 06:30:00
108852    34297    531    2017-07-26 22:06:00    2017-07-26 22:06:00
108853    34297    764    2017-07-26 14:55:00    2017-07-26 14:55:00
108854    34297    499    2017-07-26 10:50:00    2017-07-26 10:50:00
108855    34298    626    2017-07-26 13:07:00    2017-07-26 13:07:00
108856    34298    644    2017-07-26 02:44:00    2017-07-26 02:44:00
108857    34298    824    2017-07-26 20:02:00    2017-07-26 20:02:00
108858    34298    899    2017-07-26 09:58:00    2017-07-26 09:58:00
108859    34298    783    2017-07-26 16:36:00    2017-07-26 16:36:00
108860    34299    551    2017-07-26 09:03:00    2017-07-26 09:03:00
108861    34299    852    2017-07-26 19:47:00    2017-07-26 19:47:00
108862    34299    746    2017-07-26 10:41:00    2017-07-26 10:41:00
108863    34299    960    2017-07-26 10:10:00    2017-07-26 10:10:00
108864    34299    611    2017-07-26 06:14:00    2017-07-26 06:14:00
108865    34300    593    2017-07-26 01:23:00    2017-07-26 01:23:00
108866    34300    848    2017-07-26 19:15:00    2017-07-26 19:15:00
108867    34300    862    2017-07-26 15:25:00    2017-07-26 15:25:00
108868    34300    668    2017-07-26 03:49:00    2017-07-26 03:49:00
108869    34300    753    2017-07-26 07:19:00    2017-07-26 07:19:00
108870    34301    582    2017-07-26 08:30:00    2017-07-26 08:30:00
108871    34301    612    2017-07-26 07:44:00    2017-07-26 07:44:00
108872    34301    679    2017-07-26 22:01:00    2017-07-26 22:01:00
108873    34301    760    2017-07-26 13:11:00    2017-07-26 13:11:00
108874    34301    791    2017-07-26 20:52:00    2017-07-26 20:52:00
108875    34302    683    2017-07-26 22:37:00    2017-07-26 22:37:00
108876    34302    715    2017-07-26 08:36:00    2017-07-26 08:36:00
108877    34302    564    2017-07-26 17:39:00    2017-07-26 17:39:00
108878    34302    809    2017-07-26 17:57:00    2017-07-26 17:57:00
108879    34302    850    2017-07-26 15:13:00    2017-07-26 15:13:00
108880    34303    815    2017-07-26 17:47:00    2017-07-26 17:47:00
108881    34303    820    2017-07-26 17:53:00    2017-07-26 17:53:00
108882    34303    821    2017-07-26 14:13:00    2017-07-26 14:13:00
108883    34303    892    2017-07-26 02:22:00    2017-07-26 02:22:00
108884    34303    714    2017-07-26 15:03:00    2017-07-26 15:03:00
108885    34304    893    2017-07-26 23:57:00    2017-07-26 23:57:00
108886    34304    605    2017-07-26 18:06:00    2017-07-26 18:06:00
108887    34304    614    2017-07-26 18:23:00    2017-07-26 18:23:00
108888    34304    674    2017-07-26 08:57:00    2017-07-26 08:57:00
108889    34304    660    2017-07-26 16:23:00    2017-07-26 16:23:00
108890    34305    660    2017-07-26 14:45:00    2017-07-26 14:45:00
108891    34305    888    2017-07-26 11:54:00    2017-07-26 11:54:00
108892    34305    948    2017-07-26 14:12:00    2017-07-26 14:12:00
108893    34305    758    2017-07-26 07:43:00    2017-07-26 07:43:00
108894    34305    765    2017-07-26 15:35:00    2017-07-26 15:35:00
108895    34306    946    2017-07-26 10:24:00    2017-07-26 10:24:00
108896    34306    556    2017-07-26 20:07:00    2017-07-26 20:07:00
108897    34306    877    2017-07-26 04:07:00    2017-07-26 04:07:00
108898    34306    688    2017-07-26 07:42:00    2017-07-26 07:42:00
108899    34306    663    2017-07-26 10:22:00    2017-07-26 10:22:00
108900    34307    661    2017-07-26 12:09:00    2017-07-26 12:09:00
108901    34307    576    2017-07-26 10:50:00    2017-07-26 10:50:00
108902    34307    701    2017-07-26 09:06:00    2017-07-26 09:06:00
108903    34307    930    2017-07-26 14:40:00    2017-07-26 14:40:00
108904    34307    876    2017-07-26 21:02:00    2017-07-26 21:02:00
108905    34308    867    2017-07-26 22:08:00    2017-07-26 22:08:00
108906    34308    599    2017-07-26 11:30:00    2017-07-26 11:30:00
108907    34308    625    2017-07-26 15:55:00    2017-07-26 15:55:00
108908    34308    522    2017-07-26 21:44:00    2017-07-26 21:44:00
108909    34308    560    2017-07-26 16:20:00    2017-07-26 16:20:00
108910    34309    595    2017-07-26 20:07:00    2017-07-26 20:07:00
108911    34309    668    2017-07-26 06:44:00    2017-07-26 06:44:00
108912    34309    866    2017-07-26 03:21:00    2017-07-26 03:21:00
108913    34309    648    2017-07-26 23:41:00    2017-07-26 23:41:00
108914    34309    694    2017-07-26 12:21:00    2017-07-26 12:21:00
108915    34310    563    2017-07-26 07:26:00    2017-07-26 07:26:00
108916    34310    841    2017-07-26 02:22:00    2017-07-26 02:22:00
108917    34310    679    2017-07-26 15:57:00    2017-07-26 15:57:00
108918    34310    493    2017-07-26 09:27:00    2017-07-26 09:27:00
108919    34310    891    2017-07-26 02:46:00    2017-07-26 02:46:00
108920    34311    610    2017-07-26 12:28:00    2017-07-26 12:28:00
108921    34311    596    2017-07-26 01:21:00    2017-07-26 01:21:00
108922    34311    706    2017-07-26 04:11:00    2017-07-26 04:11:00
108923    34311    673    2017-07-26 12:47:00    2017-07-26 12:47:00
108924    34311    483    2017-07-26 17:09:00    2017-07-26 17:09:00
108925    34312    762    2017-07-26 13:28:00    2017-07-26 13:28:00
108926    34312    493    2017-07-26 22:44:00    2017-07-26 22:44:00
108927    34312    852    2017-07-26 05:07:00    2017-07-26 05:07:00
108928    34312    699    2017-07-26 17:54:00    2017-07-26 17:54:00
108929    34312    620    2017-07-26 12:21:00    2017-07-26 12:21:00
108930    34313    829    2017-07-26 04:11:00    2017-07-26 04:11:00
108931    34313    728    2017-07-26 21:13:00    2017-07-26 21:13:00
108932    34313    556    2017-07-26 06:21:00    2017-07-26 06:21:00
108933    34313    860    2017-07-26 12:41:00    2017-07-26 12:41:00
108934    34313    573    2017-07-26 14:12:00    2017-07-26 14:12:00
108935    34314    573    2017-07-26 23:12:00    2017-07-26 23:12:00
108936    34314    586    2017-07-26 01:51:00    2017-07-26 01:51:00
108937    34314    648    2017-07-26 10:52:00    2017-07-26 10:52:00
108938    34314    802    2017-07-26 23:20:00    2017-07-26 23:20:00
108939    34314    551    2017-07-26 08:30:00    2017-07-26 08:30:00
108940    34315    653    2017-07-26 08:30:00    2017-07-26 08:30:00
108941    34315    584    2017-07-26 16:31:00    2017-07-26 16:31:00
108942    34315    810    2017-07-26 17:25:00    2017-07-26 17:25:00
108943    34315    474    2017-07-26 20:06:00    2017-07-26 20:06:00
108944    34315    463    2017-07-26 09:37:00    2017-07-26 09:37:00
108945    34316    780    2017-07-26 16:39:00    2017-07-26 16:39:00
108946    34316    852    2017-07-26 20:50:00    2017-07-26 20:50:00
108947    34316    646    2017-07-26 13:59:00    2017-07-26 13:59:00
108948    34316    515    2017-07-26 06:57:00    2017-07-26 06:57:00
108949    34316    730    2017-07-26 09:59:00    2017-07-26 09:59:00
108950    34317    881    2017-07-26 16:48:00    2017-07-26 16:48:00
108951    34317    739    2017-07-26 23:44:00    2017-07-26 23:44:00
108952    34317    553    2017-07-26 09:29:00    2017-07-26 09:29:00
108953    34317    510    2017-07-26 20:46:00    2017-07-26 20:46:00
108954    34317    832    2017-07-26 17:51:00    2017-07-26 17:51:00
108955    34318    746    2017-07-27 05:24:00    2017-07-27 05:24:00
108956    34318    613    2017-07-27 09:40:00    2017-07-27 09:40:00
108957    34318    673    2017-07-27 12:28:00    2017-07-27 12:28:00
108958    34318    768    2017-07-27 21:43:00    2017-07-27 21:43:00
108959    34318    644    2017-07-27 04:04:00    2017-07-27 04:04:00
108960    34319    711    2017-07-27 01:42:00    2017-07-27 01:42:00
108961    34319    532    2017-07-27 22:24:00    2017-07-27 22:24:00
108962    34319    610    2017-07-27 09:00:00    2017-07-27 09:00:00
108963    34319    799    2017-07-27 20:45:00    2017-07-27 20:45:00
108964    34319    496    2017-07-27 04:25:00    2017-07-27 04:25:00
108965    34320    718    2017-07-27 15:05:00    2017-07-27 15:05:00
108966    34320    623    2017-07-27 18:56:00    2017-07-27 18:56:00
108967    34320    931    2017-07-27 18:42:00    2017-07-27 18:42:00
108968    34320    571    2017-07-27 16:03:00    2017-07-27 16:03:00
108969    34320    680    2017-07-27 03:00:00    2017-07-27 03:00:00
108970    34321    744    2017-07-27 07:47:00    2017-07-27 07:47:00
108971    34321    691    2017-07-27 11:52:00    2017-07-27 11:52:00
108972    34321    591    2017-07-27 17:16:00    2017-07-27 17:16:00
108973    34321    823    2017-07-27 13:20:00    2017-07-27 13:20:00
108974    34321    602    2017-07-27 08:02:00    2017-07-27 08:02:00
108975    34322    590    2017-07-27 13:45:00    2017-07-27 13:45:00
108976    34322    671    2017-07-27 20:19:00    2017-07-27 20:19:00
108977    34322    819    2017-07-27 22:12:00    2017-07-27 22:12:00
108978    34322    471    2017-07-27 02:04:00    2017-07-27 02:04:00
108979    34322    830    2017-07-27 11:47:00    2017-07-27 11:47:00
108980    34323    870    2017-07-27 03:05:00    2017-07-27 03:05:00
108981    34323    752    2017-07-27 01:58:00    2017-07-27 01:58:00
108982    34323    735    2017-07-27 01:12:00    2017-07-27 01:12:00
108983    34323    546    2017-07-27 13:01:00    2017-07-27 13:01:00
108984    34323    905    2017-07-27 15:44:00    2017-07-27 15:44:00
108985    34324    707    2017-07-27 03:55:00    2017-07-27 03:55:00
108986    34324    516    2017-07-27 19:02:00    2017-07-27 19:02:00
108987    34324    554    2017-07-27 12:07:00    2017-07-27 12:07:00
108988    34324    724    2017-07-27 17:03:00    2017-07-27 17:03:00
108989    34324    772    2017-07-27 20:31:00    2017-07-27 20:31:00
108990    34325    720    2017-07-27 03:34:00    2017-07-27 03:34:00
108991    34325    704    2017-07-27 08:55:00    2017-07-27 08:55:00
108992    34325    792    2017-07-27 20:01:00    2017-07-27 20:01:00
108993    34325    709    2017-07-27 07:07:00    2017-07-27 07:07:00
108994    34325    555    2017-07-27 23:39:00    2017-07-27 23:39:00
108995    34326    628    2017-07-27 15:20:00    2017-07-27 15:20:00
108996    34326    828    2017-07-27 14:01:00    2017-07-27 14:01:00
108997    34326    799    2017-07-27 05:22:00    2017-07-27 05:22:00
108998    34326    662    2017-07-27 04:16:00    2017-07-27 04:16:00
108999    34326    791    2017-07-27 11:13:00    2017-07-27 11:13:00
109000    34327    590    2017-07-27 17:45:00    2017-07-27 17:45:00
109001    34327    513    2017-07-27 18:01:00    2017-07-27 18:01:00
109002    34327    605    2017-07-27 21:23:00    2017-07-27 21:23:00
109003    34327    690    2017-07-27 09:55:00    2017-07-27 09:55:00
109004    34327    610    2017-07-27 12:35:00    2017-07-27 12:35:00
109005    34328    623    2017-07-27 21:31:00    2017-07-27 21:31:00
109006    34328    540    2017-07-27 16:23:00    2017-07-27 16:23:00
109007    34328    877    2017-07-27 18:58:00    2017-07-27 18:58:00
109008    34328    743    2017-07-27 23:02:00    2017-07-27 23:02:00
109009    34328    801    2017-07-27 16:10:00    2017-07-27 16:10:00
109010    34329    656    2017-07-27 01:56:00    2017-07-27 01:56:00
109011    34329    751    2017-07-27 14:26:00    2017-07-27 14:26:00
109012    34329    883    2017-07-27 01:52:00    2017-07-27 01:52:00
109013    34329    476    2017-07-27 08:17:00    2017-07-27 08:17:00
109014    34329    756    2017-07-27 09:08:00    2017-07-27 09:08:00
109015    34330    766    2017-07-27 21:31:00    2017-07-27 21:31:00
109016    34330    583    2017-07-27 07:48:00    2017-07-27 07:48:00
109017    34330    685    2017-07-27 22:54:00    2017-07-27 22:54:00
109018    34330    648    2017-07-27 05:13:00    2017-07-27 05:13:00
109019    34330    544    2017-07-27 18:51:00    2017-07-27 18:51:00
109020    34331    631    2017-07-27 09:11:00    2017-07-27 09:11:00
109021    34331    717    2017-07-27 23:13:00    2017-07-27 23:13:00
109022    34331    877    2017-07-27 18:18:00    2017-07-27 18:18:00
109023    34331    567    2017-07-27 19:19:00    2017-07-27 19:19:00
109024    34331    714    2017-07-27 06:54:00    2017-07-27 06:54:00
109025    34332    881    2017-07-27 11:19:00    2017-07-27 11:19:00
109026    34332    524    2017-07-27 11:33:00    2017-07-27 11:33:00
109027    34332    534    2017-07-27 12:06:00    2017-07-27 12:06:00
109028    34332    497    2017-07-27 20:12:00    2017-07-27 20:12:00
109029    34332    683    2017-07-27 13:04:00    2017-07-27 13:04:00
109030    34333    541    2017-07-27 07:05:00    2017-07-27 07:05:00
109031    34333    680    2017-07-27 22:18:00    2017-07-27 22:18:00
109032    34333    626    2017-07-27 13:42:00    2017-07-27 13:42:00
109033    34333    579    2017-07-27 02:00:00    2017-07-27 02:00:00
109034    34333    606    2017-07-27 04:24:00    2017-07-27 04:24:00
109035    34334    872    2017-07-27 05:15:00    2017-07-27 05:15:00
109036    34334    876    2017-07-27 03:18:00    2017-07-27 03:18:00
109037    34334    630    2017-07-27 03:05:00    2017-07-27 03:05:00
109038    34334    649    2017-07-27 17:39:00    2017-07-27 17:39:00
109039    34334    958    2017-07-27 12:52:00    2017-07-27 12:52:00
109040    34335    812    2017-07-27 08:09:00    2017-07-27 08:09:00
109041    34335    584    2017-07-27 05:30:00    2017-07-27 05:30:00
109042    34335    883    2017-07-27 22:26:00    2017-07-27 22:26:00
109043    34335    755    2017-07-27 18:54:00    2017-07-27 18:54:00
109044    34335    542    2017-07-27 10:40:00    2017-07-27 10:40:00
109045    34336    669    2017-07-27 23:15:00    2017-07-27 23:15:00
109046    34336    469    2017-07-27 16:21:00    2017-07-27 16:21:00
109047    34336    710    2017-07-27 18:20:00    2017-07-27 18:20:00
109048    34336    747    2017-07-27 09:48:00    2017-07-27 09:48:00
109049    34336    839    2017-07-27 02:25:00    2017-07-27 02:25:00
109050    34337    884    2017-07-27 01:26:00    2017-07-27 01:26:00
109051    34337    680    2017-07-27 19:23:00    2017-07-27 19:23:00
109052    34337    560    2017-07-27 05:24:00    2017-07-27 05:24:00
109053    34337    761    2017-07-27 05:18:00    2017-07-27 05:18:00
109054    34337    615    2017-07-27 15:08:00    2017-07-27 15:08:00
109055    34338    646    2017-07-27 16:11:00    2017-07-27 16:11:00
109056    34338    581    2017-07-27 12:55:00    2017-07-27 12:55:00
109057    34338    845    2017-07-27 22:10:00    2017-07-27 22:10:00
109058    34338    476    2017-07-27 13:17:00    2017-07-27 13:17:00
109059    34338    507    2017-07-27 18:35:00    2017-07-27 18:35:00
109060    34339    914    2017-07-27 20:01:00    2017-07-27 20:01:00
109061    34339    765    2017-07-27 12:51:00    2017-07-27 12:51:00
109062    34339    951    2017-07-27 09:15:00    2017-07-27 09:15:00
109063    34339    691    2017-07-27 03:01:00    2017-07-27 03:01:00
109064    34339    621    2017-07-27 23:22:00    2017-07-27 23:22:00
109065    34340    630    2017-07-27 22:59:00    2017-07-27 22:59:00
109066    34340    747    2017-07-27 08:25:00    2017-07-27 08:25:00
109067    34340    716    2017-07-27 23:29:00    2017-07-27 23:29:00
109068    34340    898    2017-07-27 01:47:00    2017-07-27 01:47:00
109069    34340    819    2017-07-27 09:53:00    2017-07-27 09:53:00
109070    34341    924    2017-07-27 10:52:00    2017-07-27 10:52:00
109071    34341    468    2017-07-27 10:38:00    2017-07-27 10:38:00
109072    34341    488    2017-07-27 01:53:00    2017-07-27 01:53:00
109073    34341    540    2017-07-27 02:11:00    2017-07-27 02:11:00
109074    34341    521    2017-07-27 20:53:00    2017-07-27 20:53:00
109075    34342    539    2017-07-27 14:20:00    2017-07-27 14:20:00
109076    34342    641    2017-07-27 06:53:00    2017-07-27 06:53:00
109077    34342    513    2017-07-27 21:41:00    2017-07-27 21:41:00
109078    34342    601    2017-07-27 21:00:00    2017-07-27 21:00:00
109079    34342    615    2017-07-27 21:40:00    2017-07-27 21:40:00
109080    34343    471    2017-07-27 01:25:00    2017-07-27 01:25:00
109081    34343    754    2017-07-27 03:52:00    2017-07-27 03:52:00
109082    34343    571    2017-07-27 14:08:00    2017-07-27 14:08:00
109083    34343    765    2017-07-27 14:35:00    2017-07-27 14:35:00
109084    34343    638    2017-07-27 02:30:00    2017-07-27 02:30:00
109085    34344    803    2017-07-27 06:56:00    2017-07-27 06:56:00
109086    34344    709    2017-07-27 13:00:00    2017-07-27 13:00:00
109087    34344    506    2017-07-27 23:28:00    2017-07-27 23:28:00
109088    34344    500    2017-07-27 06:58:00    2017-07-27 06:58:00
109089    34344    640    2017-07-27 14:15:00    2017-07-27 14:15:00
109090    34345    655    2017-07-27 11:02:00    2017-07-27 11:02:00
109091    34345    903    2017-07-27 17:44:00    2017-07-27 17:44:00
109092    34345    833    2017-07-27 17:05:00    2017-07-27 17:05:00
109093    34345    631    2017-07-27 18:51:00    2017-07-27 18:51:00
109094    34345    666    2017-07-27 09:02:00    2017-07-27 09:02:00
109095    34346    951    2017-07-27 06:06:00    2017-07-27 06:06:00
109096    34346    840    2017-07-27 10:12:00    2017-07-27 10:12:00
109097    34346    871    2017-07-27 19:24:00    2017-07-27 19:24:00
109098    34346    779    2017-07-27 16:56:00    2017-07-27 16:56:00
109099    34346    482    2017-07-27 04:34:00    2017-07-27 04:34:00
109100    34347    613    2017-07-27 18:15:00    2017-07-27 18:15:00
109101    34347    536    2017-07-27 03:32:00    2017-07-27 03:32:00
109102    34347    465    2017-07-27 06:24:00    2017-07-27 06:24:00
109103    34347    783    2017-07-27 06:45:00    2017-07-27 06:45:00
109104    34347    599    2017-07-27 16:34:00    2017-07-27 16:34:00
109105    34348    609    2017-07-27 13:11:00    2017-07-27 13:11:00
109106    34348    473    2017-07-27 19:00:00    2017-07-27 19:00:00
109107    34348    875    2017-07-27 07:42:00    2017-07-27 07:42:00
109108    34348    687    2017-07-27 09:25:00    2017-07-27 09:25:00
109109    34348    700    2017-07-27 07:03:00    2017-07-27 07:03:00
109110    34349    700    2017-07-27 06:26:00    2017-07-27 06:26:00
109111    34349    580    2017-07-27 01:23:00    2017-07-27 01:23:00
109112    34349    534    2017-07-27 12:52:00    2017-07-27 12:52:00
109113    34349    960    2017-07-27 13:23:00    2017-07-27 13:23:00
109114    34349    654    2017-07-27 02:17:00    2017-07-27 02:17:00
109115    34350    550    2017-07-27 07:52:00    2017-07-27 07:52:00
109116    34350    722    2017-07-27 20:33:00    2017-07-27 20:33:00
109117    34350    642    2017-07-27 17:14:00    2017-07-27 17:14:00
109118    34350    635    2017-07-27 22:01:00    2017-07-27 22:01:00
109119    34350    516    2017-07-27 15:57:00    2017-07-27 15:57:00
109120    34351    494    2017-07-27 14:45:00    2017-07-27 14:45:00
109121    34351    651    2017-07-27 01:04:00    2017-07-27 01:04:00
109122    34351    915    2017-07-27 16:23:00    2017-07-27 16:23:00
109123    34351    565    2017-07-27 05:30:00    2017-07-27 05:30:00
109124    34351    514    2017-07-27 22:45:00    2017-07-27 22:45:00
109125    34352    760    2017-07-27 06:01:00    2017-07-27 06:01:00
109126    34352    637    2017-07-27 22:26:00    2017-07-27 22:26:00
109127    34352    475    2017-07-27 10:42:00    2017-07-27 10:42:00
109128    34352    656    2017-07-27 12:28:00    2017-07-27 12:28:00
109129    34352    790    2017-07-27 12:59:00    2017-07-27 12:59:00
109130    34353    494    2017-07-27 06:25:00    2017-07-27 06:25:00
109131    34353    678    2017-07-27 20:51:00    2017-07-27 20:51:00
109132    34353    884    2017-07-27 22:11:00    2017-07-27 22:11:00
109133    34353    554    2017-07-27 15:24:00    2017-07-27 15:24:00
109134    34353    857    2017-07-27 13:58:00    2017-07-27 13:58:00
109135    34354    824    2017-07-27 08:19:00    2017-07-27 08:19:00
109136    34354    813    2017-07-27 20:26:00    2017-07-27 20:26:00
109137    34354    562    2017-07-27 08:27:00    2017-07-27 08:27:00
109138    34354    801    2017-07-27 19:41:00    2017-07-27 19:41:00
109139    34354    903    2017-07-27 21:35:00    2017-07-27 21:35:00
109140    34355    478    2017-07-27 17:02:00    2017-07-27 17:02:00
109141    34355    755    2017-07-27 20:01:00    2017-07-27 20:01:00
109142    34355    819    2017-07-27 21:42:00    2017-07-27 21:42:00
109143    34355    957    2017-07-27 17:56:00    2017-07-27 17:56:00
109144    34355    941    2017-07-27 19:26:00    2017-07-27 19:26:00
109145    34356    609    2017-07-27 23:14:00    2017-07-27 23:14:00
109146    34356    501    2017-07-27 07:52:00    2017-07-27 07:52:00
109147    34356    697    2017-07-27 20:01:00    2017-07-27 20:01:00
109148    34356    500    2017-07-27 06:42:00    2017-07-27 06:42:00
109149    34356    621    2017-07-27 07:18:00    2017-07-27 07:18:00
109150    34357    756    2017-07-27 15:23:00    2017-07-27 15:23:00
109151    34357    853    2017-07-27 08:15:00    2017-07-27 08:15:00
109152    34357    694    2017-07-27 11:41:00    2017-07-27 11:41:00
109153    34357    797    2017-07-27 12:17:00    2017-07-27 12:17:00
109154    34357    873    2017-07-27 04:36:00    2017-07-27 04:36:00
109155    34358    916    2017-07-27 04:07:00    2017-07-27 04:07:00
109156    34358    766    2017-07-27 20:40:00    2017-07-27 20:40:00
109157    34358    961    2017-07-27 02:17:00    2017-07-27 02:17:00
109158    34358    892    2017-07-27 20:19:00    2017-07-27 20:19:00
109159    34358    528    2017-07-27 12:09:00    2017-07-27 12:09:00
109160    34359    650    2017-07-27 02:43:00    2017-07-27 02:43:00
109161    34359    552    2017-07-27 16:46:00    2017-07-27 16:46:00
109162    34359    682    2017-07-27 18:44:00    2017-07-27 18:44:00
109163    34359    834    2017-07-27 02:57:00    2017-07-27 02:57:00
109164    34359    614    2017-07-27 22:58:00    2017-07-27 22:58:00
109165    34360    627    2017-07-27 18:02:00    2017-07-27 18:02:00
109166    34360    724    2017-07-27 12:32:00    2017-07-27 12:32:00
109167    34360    545    2017-07-27 18:58:00    2017-07-27 18:58:00
109168    34360    597    2017-07-27 16:49:00    2017-07-27 16:49:00
109169    34360    742    2017-07-27 07:22:00    2017-07-27 07:22:00
109170    34361    834    2017-07-27 05:28:00    2017-07-27 05:28:00
109171    34361    863    2017-07-27 23:16:00    2017-07-27 23:16:00
109172    34361    627    2017-07-27 10:42:00    2017-07-27 10:42:00
109173    34361    621    2017-07-27 10:17:00    2017-07-27 10:17:00
109174    34361    688    2017-07-27 08:55:00    2017-07-27 08:55:00
109175    34362    630    2017-07-27 07:12:00    2017-07-27 07:12:00
109176    34362    763    2017-07-27 23:01:00    2017-07-27 23:01:00
109177    34362    623    2017-07-27 08:13:00    2017-07-27 08:13:00
109178    34362    663    2017-07-27 20:33:00    2017-07-27 20:33:00
109179    34362    954    2017-07-27 06:52:00    2017-07-27 06:52:00
109180    34363    719    2017-07-27 18:45:00    2017-07-27 18:45:00
109181    34363    725    2017-07-27 17:57:00    2017-07-27 17:57:00
109182    34363    490    2017-07-27 16:32:00    2017-07-27 16:32:00
109183    34363    597    2017-07-27 13:03:00    2017-07-27 13:03:00
109184    34363    788    2017-07-27 19:01:00    2017-07-27 19:01:00
109185    34364    736    2017-07-27 16:16:00    2017-07-27 16:16:00
109186    34364    783    2017-07-27 05:41:00    2017-07-27 05:41:00
109187    34364    898    2017-07-27 04:40:00    2017-07-27 04:40:00
109188    34364    918    2017-07-27 06:58:00    2017-07-27 06:58:00
109189    34364    682    2017-07-27 19:19:00    2017-07-27 19:19:00
109190    34365    490    2017-07-27 12:41:00    2017-07-27 12:41:00
109191    34365    759    2017-07-27 01:57:00    2017-07-27 01:57:00
109192    34365    861    2017-07-27 03:20:00    2017-07-27 03:20:00
109193    34365    854    2017-07-27 16:51:00    2017-07-27 16:51:00
109194    34365    779    2017-07-27 22:22:00    2017-07-27 22:22:00
109195    34366    936    2017-07-27 16:34:00    2017-07-27 16:34:00
109196    34366    841    2017-07-27 17:51:00    2017-07-27 17:51:00
109197    34366    915    2017-07-27 14:56:00    2017-07-27 14:56:00
109198    34366    710    2017-07-27 07:09:00    2017-07-27 07:09:00
109199    34366    874    2017-07-27 21:27:00    2017-07-27 21:27:00
109200    34367    745    2017-07-27 03:34:00    2017-07-27 03:34:00
109201    34367    838    2017-07-27 11:17:00    2017-07-27 11:17:00
109202    34367    644    2017-07-27 21:45:00    2017-07-27 21:45:00
109203    34367    758    2017-07-27 13:20:00    2017-07-27 13:20:00
109204    34367    696    2017-07-27 10:09:00    2017-07-27 10:09:00
109205    34368    542    2017-07-27 11:15:00    2017-07-27 11:15:00
109206    34368    714    2017-07-27 22:51:00    2017-07-27 22:51:00
109207    34368    942    2017-07-27 15:45:00    2017-07-27 15:45:00
109208    34368    625    2017-07-27 17:59:00    2017-07-27 17:59:00
109209    34368    500    2017-07-27 10:38:00    2017-07-27 10:38:00
109210    34369    817    2017-07-27 15:40:00    2017-07-27 15:40:00
109211    34369    807    2017-07-27 13:14:00    2017-07-27 13:14:00
109212    34369    633    2017-07-27 01:03:00    2017-07-27 01:03:00
109213    34369    811    2017-07-27 20:16:00    2017-07-27 20:16:00
109214    34369    817    2017-07-27 21:34:00    2017-07-27 21:34:00
109215    34370    615    2017-07-27 09:59:00    2017-07-27 09:59:00
109216    34370    681    2017-07-27 22:54:00    2017-07-27 22:54:00
109217    34370    709    2017-07-27 01:51:00    2017-07-27 01:51:00
109218    34370    614    2017-07-27 09:05:00    2017-07-27 09:05:00
109219    34370    809    2017-07-27 18:14:00    2017-07-27 18:14:00
109220    34371    721    2017-07-27 14:06:00    2017-07-27 14:06:00
109221    34371    925    2017-07-27 06:54:00    2017-07-27 06:54:00
109222    34371    579    2017-07-27 05:15:00    2017-07-27 05:15:00
109223    34371    928    2017-07-27 11:08:00    2017-07-27 11:08:00
109224    34371    485    2017-07-27 20:07:00    2017-07-27 20:07:00
109225    34372    517    2017-07-27 11:57:00    2017-07-27 11:57:00
109226    34372    817    2017-07-27 10:53:00    2017-07-27 10:53:00
109227    34372    615    2017-07-27 20:43:00    2017-07-27 20:43:00
109228    34372    664    2017-07-27 08:03:00    2017-07-27 08:03:00
109229    34372    589    2017-07-27 14:09:00    2017-07-27 14:09:00
109230    34373    899    2017-07-27 04:54:00    2017-07-27 04:54:00
109231    34373    600    2017-07-27 12:22:00    2017-07-27 12:22:00
109232    34373    552    2017-07-27 11:43:00    2017-07-27 11:43:00
109233    34373    700    2017-07-27 19:52:00    2017-07-27 19:52:00
109234    34373    937    2017-07-27 03:13:00    2017-07-27 03:13:00
109235    34374    520    2017-07-27 14:36:00    2017-07-27 14:36:00
109236    34374    668    2017-07-27 08:51:00    2017-07-27 08:51:00
109237    34374    479    2017-07-27 07:10:00    2017-07-27 07:10:00
109238    34374    949    2017-07-27 02:22:00    2017-07-27 02:22:00
109239    34374    896    2017-07-27 01:24:00    2017-07-27 01:24:00
109240    34375    470    2017-07-27 13:25:00    2017-07-27 13:25:00
109241    34375    642    2017-07-27 12:48:00    2017-07-27 12:48:00
109242    34375    959    2017-07-27 19:01:00    2017-07-27 19:01:00
109243    34375    649    2017-07-27 07:36:00    2017-07-27 07:36:00
109244    34375    957    2017-07-27 14:15:00    2017-07-27 14:15:00
109245    34376    466    2017-07-27 15:38:00    2017-07-27 15:38:00
109246    34376    696    2017-07-27 13:44:00    2017-07-27 13:44:00
109247    34376    469    2017-07-27 22:14:00    2017-07-27 22:14:00
109248    34376    637    2017-07-27 05:51:00    2017-07-27 05:51:00
109249    34376    673    2017-07-27 16:22:00    2017-07-27 16:22:00
109250    34377    674    2017-07-27 15:55:00    2017-07-27 15:55:00
109251    34377    595    2017-07-27 03:05:00    2017-07-27 03:05:00
109252    34377    622    2017-07-27 06:34:00    2017-07-27 06:34:00
109253    34377    534    2017-07-27 03:48:00    2017-07-27 03:48:00
109254    34377    561    2017-07-27 03:25:00    2017-07-27 03:25:00
109255    34378    850    2017-07-27 19:05:00    2017-07-27 19:05:00
109256    34378    801    2017-07-27 09:57:00    2017-07-27 09:57:00
109257    34378    596    2017-07-27 11:54:00    2017-07-27 11:54:00
109258    34378    791    2017-07-27 22:46:00    2017-07-27 22:46:00
109259    34378    765    2017-07-27 04:34:00    2017-07-27 04:34:00
109260    34379    932    2017-07-27 12:03:00    2017-07-27 12:03:00
109261    34379    473    2017-07-27 23:18:00    2017-07-27 23:18:00
109262    34379    776    2017-07-27 18:21:00    2017-07-27 18:21:00
109263    34379    961    2017-07-27 05:44:00    2017-07-27 05:44:00
109264    34379    934    2017-07-27 07:46:00    2017-07-27 07:46:00
109265    34380    789    2017-07-28 14:10:00    2017-07-28 14:10:00
109266    34380    675    2017-07-28 03:16:00    2017-07-28 03:16:00
109267    34380    517    2017-07-28 07:48:00    2017-07-28 07:48:00
109268    34380    854    2017-07-28 16:18:00    2017-07-28 16:18:00
109269    34380    504    2017-07-28 02:23:00    2017-07-28 02:23:00
109270    34381    914    2017-07-28 07:23:00    2017-07-28 07:23:00
109271    34381    726    2017-07-28 21:27:00    2017-07-28 21:27:00
109272    34381    481    2017-07-28 06:27:00    2017-07-28 06:27:00
109273    34381    536    2017-07-28 12:30:00    2017-07-28 12:30:00
109274    34381    919    2017-07-28 22:30:00    2017-07-28 22:30:00
109275    34382    945    2017-07-28 09:54:00    2017-07-28 09:54:00
109276    34382    761    2017-07-28 11:11:00    2017-07-28 11:11:00
109277    34382    950    2017-07-28 15:52:00    2017-07-28 15:52:00
109278    34382    603    2017-07-28 06:13:00    2017-07-28 06:13:00
109279    34382    956    2017-07-28 17:47:00    2017-07-28 17:47:00
109280    34383    638    2017-07-28 16:44:00    2017-07-28 16:44:00
109281    34383    846    2017-07-28 16:32:00    2017-07-28 16:32:00
109282    34383    723    2017-07-28 03:16:00    2017-07-28 03:16:00
109283    34383    930    2017-07-28 06:23:00    2017-07-28 06:23:00
109284    34383    648    2017-07-28 22:58:00    2017-07-28 22:58:00
109285    34384    732    2017-07-28 10:39:00    2017-07-28 10:39:00
109286    34384    867    2017-07-28 01:25:00    2017-07-28 01:25:00
109287    34384    946    2017-07-28 17:47:00    2017-07-28 17:47:00
109288    34384    739    2017-07-28 21:55:00    2017-07-28 21:55:00
109289    34384    839    2017-07-28 12:45:00    2017-07-28 12:45:00
109290    34385    541    2017-07-28 05:35:00    2017-07-28 05:35:00
109291    34385    823    2017-07-28 23:03:00    2017-07-28 23:03:00
109292    34385    840    2017-07-28 13:38:00    2017-07-28 13:38:00
109293    34385    492    2017-07-28 03:00:00    2017-07-28 03:00:00
109294    34385    554    2017-07-28 22:09:00    2017-07-28 22:09:00
109295    34386    840    2017-07-28 04:51:00    2017-07-28 04:51:00
109296    34386    724    2017-07-28 12:55:00    2017-07-28 12:55:00
109297    34386    847    2017-07-28 06:36:00    2017-07-28 06:36:00
109298    34386    467    2017-07-28 11:58:00    2017-07-28 11:58:00
109299    34386    531    2017-07-28 23:18:00    2017-07-28 23:18:00
109300    34387    870    2017-07-28 15:12:00    2017-07-28 15:12:00
109301    34387    763    2017-07-28 14:03:00    2017-07-28 14:03:00
109302    34387    619    2017-07-28 23:19:00    2017-07-28 23:19:00
109303    34387    523    2017-07-28 11:00:00    2017-07-28 11:00:00
109304    34387    581    2017-07-28 16:35:00    2017-07-28 16:35:00
109305    34388    479    2017-07-28 14:55:00    2017-07-28 14:55:00
109306    34388    603    2017-07-28 12:02:00    2017-07-28 12:02:00
109307    34388    797    2017-07-28 06:40:00    2017-07-28 06:40:00
109308    34388    961    2017-07-28 22:32:00    2017-07-28 22:32:00
109309    34388    830    2017-07-28 09:44:00    2017-07-28 09:44:00
109310    34389    750    2017-07-28 23:16:00    2017-07-28 23:16:00
109311    34389    960    2017-07-28 08:01:00    2017-07-28 08:01:00
109312    34389    921    2017-07-28 01:24:00    2017-07-28 01:24:00
109313    34389    544    2017-07-28 07:12:00    2017-07-28 07:12:00
109314    34389    857    2017-07-28 16:18:00    2017-07-28 16:18:00
109315    34390    588    2017-07-28 23:59:00    2017-07-28 23:59:00
109316    34390    563    2017-07-28 21:49:00    2017-07-28 21:49:00
109317    34390    918    2017-07-28 09:22:00    2017-07-28 09:22:00
109318    34390    856    2017-07-28 13:37:00    2017-07-28 13:37:00
109319    34390    600    2017-07-28 12:35:00    2017-07-28 12:35:00
109320    34391    593    2017-07-28 07:25:00    2017-07-28 07:25:00
109321    34391    917    2017-07-28 08:04:00    2017-07-28 08:04:00
109322    34391    491    2017-07-28 08:10:00    2017-07-28 08:10:00
109323    34391    533    2017-07-28 06:52:00    2017-07-28 06:52:00
109324    34391    743    2017-07-28 13:35:00    2017-07-28 13:35:00
109325    34392    583    2017-07-28 08:32:00    2017-07-28 08:32:00
109326    34392    904    2017-07-28 12:51:00    2017-07-28 12:51:00
109327    34392    508    2017-07-28 07:58:00    2017-07-28 07:58:00
109328    34392    693    2017-07-28 09:36:00    2017-07-28 09:36:00
109329    34392    517    2017-07-28 20:10:00    2017-07-28 20:10:00
109330    34393    547    2017-07-28 07:27:00    2017-07-28 07:27:00
109331    34393    772    2017-07-28 17:02:00    2017-07-28 17:02:00
109332    34393    509    2017-07-28 16:49:00    2017-07-28 16:49:00
109333    34393    565    2017-07-28 18:18:00    2017-07-28 18:18:00
109334    34393    660    2017-07-28 18:10:00    2017-07-28 18:10:00
109335    34394    494    2017-07-28 06:38:00    2017-07-28 06:38:00
109336    34394    585    2017-07-28 19:58:00    2017-07-28 19:58:00
109337    34394    525    2017-07-28 17:15:00    2017-07-28 17:15:00
109338    34394    528    2017-07-28 13:47:00    2017-07-28 13:47:00
109339    34394    880    2017-07-28 03:14:00    2017-07-28 03:14:00
109340    34395    654    2017-07-28 20:13:00    2017-07-28 20:13:00
109341    34395    698    2017-07-28 23:29:00    2017-07-28 23:29:00
109342    34395    944    2017-07-28 14:25:00    2017-07-28 14:25:00
109343    34395    660    2017-07-28 15:38:00    2017-07-28 15:38:00
109344    34395    806    2017-07-28 17:00:00    2017-07-28 17:00:00
109345    34396    616    2017-07-28 16:33:00    2017-07-28 16:33:00
109346    34396    959    2017-07-28 13:36:00    2017-07-28 13:36:00
109347    34396    776    2017-07-28 12:00:00    2017-07-28 12:00:00
109348    34396    481    2017-07-28 04:27:00    2017-07-28 04:27:00
109349    34396    694    2017-07-28 11:15:00    2017-07-28 11:15:00
109350    34397    493    2017-07-28 05:47:00    2017-07-28 05:47:00
109351    34397    521    2017-07-28 09:41:00    2017-07-28 09:41:00
109352    34397    664    2017-07-28 02:59:00    2017-07-28 02:59:00
109353    34397    938    2017-07-28 13:03:00    2017-07-28 13:03:00
109354    34397    502    2017-07-28 15:04:00    2017-07-28 15:04:00
109355    34398    485    2017-07-28 10:58:00    2017-07-28 10:58:00
109356    34398    479    2017-07-28 22:54:00    2017-07-28 22:54:00
109357    34398    613    2017-07-28 02:07:00    2017-07-28 02:07:00
109358    34398    688    2017-07-28 06:13:00    2017-07-28 06:13:00
109359    34398    797    2017-07-28 07:22:00    2017-07-28 07:22:00
109360    34399    668    2017-07-28 20:13:00    2017-07-28 20:13:00
109361    34399    835    2017-07-28 10:57:00    2017-07-28 10:57:00
109362    34399    906    2017-07-28 14:04:00    2017-07-28 14:04:00
109363    34399    642    2017-07-28 10:26:00    2017-07-28 10:26:00
109364    34399    858    2017-07-28 15:56:00    2017-07-28 15:56:00
109365    34400    907    2017-07-28 04:16:00    2017-07-28 04:16:00
109366    34400    937    2017-07-28 14:48:00    2017-07-28 14:48:00
109367    34400    945    2017-07-28 21:06:00    2017-07-28 21:06:00
109368    34400    694    2017-07-28 13:49:00    2017-07-28 13:49:00
109369    34400    648    2017-07-28 13:41:00    2017-07-28 13:41:00
109370    34401    943    2017-07-28 01:42:00    2017-07-28 01:42:00
109371    34401    841    2017-07-28 10:31:00    2017-07-28 10:31:00
109372    34401    631    2017-07-28 19:28:00    2017-07-28 19:28:00
109373    34401    935    2017-07-28 06:04:00    2017-07-28 06:04:00
109374    34401    638    2017-07-28 07:13:00    2017-07-28 07:13:00
109375    34402    658    2017-07-28 22:23:00    2017-07-28 22:23:00
109376    34402    516    2017-07-28 23:19:00    2017-07-28 23:19:00
109377    34402    577    2017-07-28 05:14:00    2017-07-28 05:14:00
109378    34402    911    2017-07-28 05:34:00    2017-07-28 05:34:00
109379    34402    704    2017-07-28 11:58:00    2017-07-28 11:58:00
109380    34403    872    2017-07-28 11:09:00    2017-07-28 11:09:00
109381    34403    500    2017-07-28 21:23:00    2017-07-28 21:23:00
109382    34403    766    2017-07-28 20:34:00    2017-07-28 20:34:00
109383    34403    879    2017-07-28 17:11:00    2017-07-28 17:11:00
109384    34403    956    2017-07-28 11:15:00    2017-07-28 11:15:00
109385    34404    464    2017-07-28 10:19:00    2017-07-28 10:19:00
109386    34404    858    2017-07-28 08:37:00    2017-07-28 08:37:00
109387    34404    904    2017-07-28 14:41:00    2017-07-28 14:41:00
109388    34404    942    2017-07-28 14:59:00    2017-07-28 14:59:00
109389    34404    894    2017-07-28 23:43:00    2017-07-28 23:43:00
109390    34405    790    2017-07-28 13:27:00    2017-07-28 13:27:00
109391    34405    572    2017-07-28 23:49:00    2017-07-28 23:49:00
109392    34405    958    2017-07-28 01:34:00    2017-07-28 01:34:00
109393    34405    818    2017-07-28 14:39:00    2017-07-28 14:39:00
109394    34405    921    2017-07-28 17:19:00    2017-07-28 17:19:00
109395    34406    915    2017-07-28 14:02:00    2017-07-28 14:02:00
109396    34406    511    2017-07-28 09:36:00    2017-07-28 09:36:00
109397    34406    568    2017-07-28 04:27:00    2017-07-28 04:27:00
109398    34406    463    2017-07-28 02:20:00    2017-07-28 02:20:00
109399    34406    954    2017-07-28 12:09:00    2017-07-28 12:09:00
109400    34407    546    2017-07-28 11:34:00    2017-07-28 11:34:00
109401    34407    777    2017-07-28 04:49:00    2017-07-28 04:49:00
109402    34407    703    2017-07-28 08:53:00    2017-07-28 08:53:00
109403    34407    901    2017-07-28 11:06:00    2017-07-28 11:06:00
109404    34407    657    2017-07-28 13:14:00    2017-07-28 13:14:00
109405    34408    656    2017-07-28 23:10:00    2017-07-28 23:10:00
109406    34408    675    2017-07-28 19:15:00    2017-07-28 19:15:00
109407    34408    791    2017-07-28 07:33:00    2017-07-28 07:33:00
109408    34408    484    2017-07-28 08:46:00    2017-07-28 08:46:00
109409    34408    512    2017-07-28 17:00:00    2017-07-28 17:00:00
109410    34409    669    2017-07-28 21:02:00    2017-07-28 21:02:00
109411    34409    729    2017-07-28 20:27:00    2017-07-28 20:27:00
109412    34409    954    2017-07-28 07:40:00    2017-07-28 07:40:00
109413    34409    735    2017-07-28 13:20:00    2017-07-28 13:20:00
109414    34409    647    2017-07-28 10:01:00    2017-07-28 10:01:00
109415    34410    841    2017-07-28 12:45:00    2017-07-28 12:45:00
109416    34410    875    2017-07-28 22:05:00    2017-07-28 22:05:00
109417    34410    732    2017-07-28 19:30:00    2017-07-28 19:30:00
109418    34410    669    2017-07-28 05:29:00    2017-07-28 05:29:00
109419    34410    657    2017-07-28 04:02:00    2017-07-28 04:02:00
109420    34411    711    2017-07-28 04:47:00    2017-07-28 04:47:00
109421    34411    895    2017-07-28 21:08:00    2017-07-28 21:08:00
109422    34411    531    2017-07-28 02:35:00    2017-07-28 02:35:00
109423    34411    648    2017-07-28 09:34:00    2017-07-28 09:34:00
109424    34411    592    2017-07-28 21:22:00    2017-07-28 21:22:00
109425    34412    896    2017-07-29 18:00:00    2017-07-29 18:00:00
109426    34412    936    2017-07-29 15:45:00    2017-07-29 15:45:00
109427    34412    469    2017-07-29 18:12:00    2017-07-29 18:12:00
109428    34412    481    2017-07-29 02:31:00    2017-07-29 02:31:00
109429    34412    472    2017-07-29 16:24:00    2017-07-29 16:24:00
109430    34413    785    2017-07-29 09:57:00    2017-07-29 09:57:00
109431    34413    721    2017-07-29 05:58:00    2017-07-29 05:58:00
109432    34413    768    2017-07-29 12:34:00    2017-07-29 12:34:00
109433    34413    759    2017-07-29 02:16:00    2017-07-29 02:16:00
109434    34413    871    2017-07-29 03:00:00    2017-07-29 03:00:00
109435    34414    912    2017-07-29 07:28:00    2017-07-29 07:28:00
109436    34414    499    2017-07-29 19:16:00    2017-07-29 19:16:00
109437    34414    540    2017-07-29 03:13:00    2017-07-29 03:13:00
109438    34414    764    2017-07-29 22:27:00    2017-07-29 22:27:00
109439    34414    595    2017-07-29 01:41:00    2017-07-29 01:41:00
109440    34415    951    2017-07-29 06:46:00    2017-07-29 06:46:00
109441    34415    724    2017-07-29 11:55:00    2017-07-29 11:55:00
109442    34415    705    2017-07-29 19:51:00    2017-07-29 19:51:00
109443    34415    882    2017-07-29 10:06:00    2017-07-29 10:06:00
109444    34415    655    2017-07-29 17:03:00    2017-07-29 17:03:00
109445    34416    562    2017-07-29 18:33:00    2017-07-29 18:33:00
109446    34416    711    2017-07-29 14:31:00    2017-07-29 14:31:00
109447    34416    919    2017-07-29 20:13:00    2017-07-29 20:13:00
109448    34416    645    2017-07-29 15:53:00    2017-07-29 15:53:00
109449    34416    617    2017-07-29 14:23:00    2017-07-29 14:23:00
109450    34417    785    2017-07-29 10:26:00    2017-07-29 10:26:00
109451    34417    469    2017-07-29 16:18:00    2017-07-29 16:18:00
109452    34417    829    2017-07-29 06:26:00    2017-07-29 06:26:00
109453    34417    925    2017-07-29 20:30:00    2017-07-29 20:30:00
109454    34417    687    2017-07-29 10:01:00    2017-07-29 10:01:00
109455    34418    878    2017-07-29 05:24:00    2017-07-29 05:24:00
109456    34418    773    2017-07-29 09:30:00    2017-07-29 09:30:00
109457    34418    621    2017-07-29 20:33:00    2017-07-29 20:33:00
109458    34418    519    2017-07-29 15:35:00    2017-07-29 15:35:00
109459    34418    559    2017-07-29 04:09:00    2017-07-29 04:09:00
109460    34419    706    2017-07-29 08:29:00    2017-07-29 08:29:00
109461    34419    576    2017-07-29 10:37:00    2017-07-29 10:37:00
109462    34419    685    2017-07-29 05:37:00    2017-07-29 05:37:00
109463    34419    957    2017-07-29 01:46:00    2017-07-29 01:46:00
109464    34419    543    2017-07-29 17:48:00    2017-07-29 17:48:00
109465    34420    702    2017-07-29 18:23:00    2017-07-29 18:23:00
109466    34420    856    2017-07-29 15:32:00    2017-07-29 15:32:00
109467    34420    533    2017-07-29 10:07:00    2017-07-29 10:07:00
109468    34420    947    2017-07-29 10:42:00    2017-07-29 10:42:00
109469    34420    491    2017-07-29 08:20:00    2017-07-29 08:20:00
109470    34421    854    2017-07-29 03:37:00    2017-07-29 03:37:00
109471    34421    847    2017-07-29 19:13:00    2017-07-29 19:13:00
109472    34421    819    2017-07-29 06:23:00    2017-07-29 06:23:00
109473    34421    852    2017-07-29 02:28:00    2017-07-29 02:28:00
109474    34421    481    2017-07-29 16:10:00    2017-07-29 16:10:00
109475    34422    591    2017-07-29 10:27:00    2017-07-29 10:27:00
109476    34422    650    2017-07-29 05:45:00    2017-07-29 05:45:00
109477    34422    590    2017-07-29 05:42:00    2017-07-29 05:42:00
109478    34422    918    2017-07-29 12:19:00    2017-07-29 12:19:00
109479    34422    691    2017-07-29 01:43:00    2017-07-29 01:43:00
109480    34423    753    2017-07-29 16:34:00    2017-07-29 16:34:00
109481    34423    659    2017-07-29 08:03:00    2017-07-29 08:03:00
109482    34423    526    2017-07-29 03:58:00    2017-07-29 03:58:00
109483    34423    835    2017-07-29 02:18:00    2017-07-29 02:18:00
109484    34423    634    2017-07-29 21:02:00    2017-07-29 21:02:00
109485    34424    818    2017-07-29 19:14:00    2017-07-29 19:14:00
109486    34424    466    2017-07-29 06:37:00    2017-07-29 06:37:00
109487    34424    733    2017-07-29 08:20:00    2017-07-29 08:20:00
109488    34424    587    2017-07-29 17:21:00    2017-07-29 17:21:00
109489    34424    814    2017-07-29 17:32:00    2017-07-29 17:32:00
109490    34425    619    2017-07-29 10:39:00    2017-07-29 10:39:00
109491    34425    509    2017-07-29 21:46:00    2017-07-29 21:46:00
109492    34425    516    2017-07-29 18:08:00    2017-07-29 18:08:00
109493    34425    884    2017-07-29 19:38:00    2017-07-29 19:38:00
109494    34425    957    2017-07-29 04:41:00    2017-07-29 04:41:00
109495    34426    539    2017-07-29 02:24:00    2017-07-29 02:24:00
109496    34426    489    2017-07-29 01:58:00    2017-07-29 01:58:00
109497    34426    809    2017-07-29 07:42:00    2017-07-29 07:42:00
109498    34426    777    2017-07-29 15:22:00    2017-07-29 15:22:00
109499    34426    650    2017-07-29 09:29:00    2017-07-29 09:29:00
109500    34427    655    2017-07-29 02:39:00    2017-07-29 02:39:00
109501    34427    644    2017-07-29 01:33:00    2017-07-29 01:33:00
109502    34427    762    2017-07-29 06:49:00    2017-07-29 06:49:00
109503    34427    897    2017-07-29 07:17:00    2017-07-29 07:17:00
109504    34427    930    2017-07-29 21:21:00    2017-07-29 21:21:00
109505    34428    513    2017-07-29 11:47:00    2017-07-29 11:47:00
109506    34428    586    2017-07-29 06:28:00    2017-07-29 06:28:00
109507    34428    843    2017-07-29 06:11:00    2017-07-29 06:11:00
109508    34428    724    2017-07-29 08:07:00    2017-07-29 08:07:00
109509    34428    488    2017-07-29 04:23:00    2017-07-29 04:23:00
109510    34429    915    2017-07-29 01:38:00    2017-07-29 01:38:00
109511    34429    630    2017-07-29 01:38:00    2017-07-29 01:38:00
109512    34429    833    2017-07-29 22:22:00    2017-07-29 22:22:00
109513    34429    687    2017-07-29 12:55:00    2017-07-29 12:55:00
109514    34429    582    2017-07-29 22:20:00    2017-07-29 22:20:00
109515    34430    842    2017-07-29 18:25:00    2017-07-29 18:25:00
109516    34430    627    2017-07-29 19:14:00    2017-07-29 19:14:00
109517    34430    949    2017-07-29 12:52:00    2017-07-29 12:52:00
109518    34430    693    2017-07-29 08:54:00    2017-07-29 08:54:00
109519    34430    575    2017-07-29 09:33:00    2017-07-29 09:33:00
109520    34431    895    2017-07-29 07:56:00    2017-07-29 07:56:00
109521    34431    583    2017-07-29 03:54:00    2017-07-29 03:54:00
109522    34431    877    2017-07-29 16:14:00    2017-07-29 16:14:00
109523    34431    605    2017-07-29 13:10:00    2017-07-29 13:10:00
109524    34431    653    2017-07-29 04:12:00    2017-07-29 04:12:00
109525    34432    924    2017-07-29 06:51:00    2017-07-29 06:51:00
109526    34432    900    2017-07-29 21:59:00    2017-07-29 21:59:00
109527    34432    799    2017-07-29 22:20:00    2017-07-29 22:20:00
109528    34432    956    2017-07-29 20:38:00    2017-07-29 20:38:00
109529    34432    713    2017-07-29 17:29:00    2017-07-29 17:29:00
109530    34433    755    2017-07-29 10:37:00    2017-07-29 10:37:00
109531    34433    496    2017-07-29 10:07:00    2017-07-29 10:07:00
109532    34433    476    2017-07-29 02:14:00    2017-07-29 02:14:00
109533    34433    769    2017-07-29 02:58:00    2017-07-29 02:58:00
109534    34433    803    2017-07-29 10:10:00    2017-07-29 10:10:00
109535    34434    603    2017-07-29 18:28:00    2017-07-29 18:28:00
109536    34434    717    2017-07-29 15:22:00    2017-07-29 15:22:00
109537    34434    655    2017-07-29 18:52:00    2017-07-29 18:52:00
109538    34434    811    2017-07-29 12:41:00    2017-07-29 12:41:00
109539    34434    837    2017-07-29 05:30:00    2017-07-29 05:30:00
109540    34435    780    2017-07-29 15:31:00    2017-07-29 15:31:00
109541    34435    932    2017-07-29 01:27:00    2017-07-29 01:27:00
109542    34435    636    2017-07-29 21:03:00    2017-07-29 21:03:00
109543    34435    855    2017-07-29 21:34:00    2017-07-29 21:34:00
109544    34435    728    2017-07-29 09:26:00    2017-07-29 09:26:00
109545    34436    533    2017-07-29 16:59:00    2017-07-29 16:59:00
109546    34436    470    2017-07-29 15:56:00    2017-07-29 15:56:00
109547    34436    621    2017-07-29 02:01:00    2017-07-29 02:01:00
109548    34436    879    2017-07-29 22:14:00    2017-07-29 22:14:00
109549    34436    720    2017-07-29 06:03:00    2017-07-29 06:03:00
109550    34437    546    2017-07-29 03:11:00    2017-07-29 03:11:00
109551    34437    561    2017-07-29 05:55:00    2017-07-29 05:55:00
109552    34437    469    2017-07-29 05:35:00    2017-07-29 05:35:00
109553    34437    939    2017-07-29 22:54:00    2017-07-29 22:54:00
109554    34437    564    2017-07-29 12:30:00    2017-07-29 12:30:00
109555    34438    707    2017-07-29 22:20:00    2017-07-29 22:20:00
109556    34438    738    2017-07-29 03:59:00    2017-07-29 03:59:00
109557    34438    939    2017-07-29 19:23:00    2017-07-29 19:23:00
109558    34438    851    2017-07-29 07:35:00    2017-07-29 07:35:00
109559    34438    898    2017-07-29 17:30:00    2017-07-29 17:30:00
109560    34439    581    2017-07-29 14:52:00    2017-07-29 14:52:00
109561    34439    718    2017-07-29 16:29:00    2017-07-29 16:29:00
109562    34439    806    2017-07-29 22:34:00    2017-07-29 22:34:00
109563    34439    521    2017-07-29 12:14:00    2017-07-29 12:14:00
109564    34439    902    2017-07-29 20:56:00    2017-07-29 20:56:00
109565    34440    558    2017-07-29 11:05:00    2017-07-29 11:05:00
109566    34440    478    2017-07-29 16:23:00    2017-07-29 16:23:00
109567    34440    795    2017-07-29 22:30:00    2017-07-29 22:30:00
109568    34440    531    2017-07-29 10:21:00    2017-07-29 10:21:00
109569    34440    901    2017-07-29 10:46:00    2017-07-29 10:46:00
109570    34441    842    2017-07-29 21:11:00    2017-07-29 21:11:00
109571    34441    819    2017-07-29 23:06:00    2017-07-29 23:06:00
109572    34441    961    2017-07-29 19:58:00    2017-07-29 19:58:00
109573    34441    835    2017-07-29 17:45:00    2017-07-29 17:45:00
109574    34441    850    2017-07-29 15:10:00    2017-07-29 15:10:00
109575    34442    655    2017-07-29 15:39:00    2017-07-29 15:39:00
109576    34442    471    2017-07-29 15:57:00    2017-07-29 15:57:00
109577    34442    688    2017-07-29 12:13:00    2017-07-29 12:13:00
109578    34442    657    2017-07-29 23:41:00    2017-07-29 23:41:00
109579    34442    584    2017-07-29 02:27:00    2017-07-29 02:27:00
109580    34443    580    2017-07-29 04:37:00    2017-07-29 04:37:00
109581    34443    605    2017-07-29 11:00:00    2017-07-29 11:00:00
109582    34443    937    2017-07-29 05:00:00    2017-07-29 05:00:00
109583    34443    509    2017-07-29 16:22:00    2017-07-29 16:22:00
109584    34443    805    2017-07-29 16:48:00    2017-07-29 16:48:00
109585    34444    689    2017-07-29 11:53:00    2017-07-29 11:53:00
109586    34444    854    2017-07-29 16:14:00    2017-07-29 16:14:00
109587    34444    812    2017-07-29 02:18:00    2017-07-29 02:18:00
109588    34444    533    2017-07-29 02:20:00    2017-07-29 02:20:00
109589    34444    779    2017-07-29 01:27:00    2017-07-29 01:27:00
109590    34445    926    2017-07-29 16:36:00    2017-07-29 16:36:00
109591    34445    789    2017-07-29 08:18:00    2017-07-29 08:18:00
109592    34445    698    2017-07-29 14:33:00    2017-07-29 14:33:00
109593    34445    668    2017-07-29 16:19:00    2017-07-29 16:19:00
109594    34445    941    2017-07-29 21:29:00    2017-07-29 21:29:00
109595    34446    770    2017-07-29 06:42:00    2017-07-29 06:42:00
109596    34446    706    2017-07-29 14:40:00    2017-07-29 14:40:00
109597    34446    637    2017-07-29 02:48:00    2017-07-29 02:48:00
109598    34446    810    2017-07-29 11:09:00    2017-07-29 11:09:00
109599    34446    620    2017-07-29 04:19:00    2017-07-29 04:19:00
109600    34447    725    2017-07-29 06:01:00    2017-07-29 06:01:00
109601    34447    466    2017-07-29 07:27:00    2017-07-29 07:27:00
109602    34447    488    2017-07-29 22:17:00    2017-07-29 22:17:00
109603    34447    931    2017-07-29 01:16:00    2017-07-29 01:16:00
109604    34447    689    2017-07-29 05:06:00    2017-07-29 05:06:00
109605    34448    525    2017-07-29 08:47:00    2017-07-29 08:47:00
109606    34448    614    2017-07-29 18:23:00    2017-07-29 18:23:00
109607    34448    833    2017-07-29 09:30:00    2017-07-29 09:30:00
109608    34448    545    2017-07-29 05:01:00    2017-07-29 05:01:00
109609    34448    853    2017-07-29 15:15:00    2017-07-29 15:15:00
109610    34449    587    2017-07-29 08:26:00    2017-07-29 08:26:00
109611    34449    502    2017-07-29 14:28:00    2017-07-29 14:28:00
109612    34449    463    2017-07-29 19:04:00    2017-07-29 19:04:00
109613    34449    630    2017-07-29 21:35:00    2017-07-29 21:35:00
109614    34449    744    2017-07-29 18:18:00    2017-07-29 18:18:00
109615    34450    843    2017-07-29 19:15:00    2017-07-29 19:15:00
109616    34450    584    2017-07-29 08:38:00    2017-07-29 08:38:00
109617    34450    530    2017-07-29 21:11:00    2017-07-29 21:11:00
109618    34450    953    2017-07-29 04:00:00    2017-07-29 04:00:00
109619    34450    547    2017-07-29 12:18:00    2017-07-29 12:18:00
109620    34451    563    2017-07-29 18:00:00    2017-07-29 18:00:00
109621    34451    830    2017-07-29 17:08:00    2017-07-29 17:08:00
109622    34451    689    2017-07-29 04:39:00    2017-07-29 04:39:00
109623    34451    650    2017-07-29 19:44:00    2017-07-29 19:44:00
109624    34451    523    2017-07-29 06:49:00    2017-07-29 06:49:00
109625    34452    750    2017-07-29 02:25:00    2017-07-29 02:25:00
109626    34452    957    2017-07-29 15:56:00    2017-07-29 15:56:00
109627    34452    954    2017-07-29 15:52:00    2017-07-29 15:52:00
109628    34452    506    2017-07-29 23:31:00    2017-07-29 23:31:00
109629    34452    872    2017-07-29 11:04:00    2017-07-29 11:04:00
109630    34453    514    2017-07-29 06:28:00    2017-07-29 06:28:00
109631    34453    930    2017-07-29 07:25:00    2017-07-29 07:25:00
109632    34453    514    2017-07-29 14:30:00    2017-07-29 14:30:00
109633    34453    553    2017-07-29 01:08:00    2017-07-29 01:08:00
109634    34453    643    2017-07-29 23:02:00    2017-07-29 23:02:00
109635    34454    694    2017-07-29 10:15:00    2017-07-29 10:15:00
109636    34454    949    2017-07-29 22:18:00    2017-07-29 22:18:00
109637    34454    781    2017-07-29 08:28:00    2017-07-29 08:28:00
109638    34454    766    2017-07-29 05:05:00    2017-07-29 05:05:00
109639    34454    841    2017-07-29 08:48:00    2017-07-29 08:48:00
109640    34455    880    2017-07-29 07:00:00    2017-07-29 07:00:00
109641    34455    598    2017-07-29 06:09:00    2017-07-29 06:09:00
109642    34455    565    2017-07-29 08:51:00    2017-07-29 08:51:00
109643    34455    577    2017-07-29 10:38:00    2017-07-29 10:38:00
109644    34455    624    2017-07-29 20:03:00    2017-07-29 20:03:00
109645    34456    928    2017-07-29 22:07:00    2017-07-29 22:07:00
109646    34456    710    2017-07-29 14:53:00    2017-07-29 14:53:00
109647    34456    595    2017-07-29 15:11:00    2017-07-29 15:11:00
109648    34456    565    2017-07-29 19:57:00    2017-07-29 19:57:00
109649    34456    682    2017-07-29 11:00:00    2017-07-29 11:00:00
109650    34457    793    2017-07-29 05:47:00    2017-07-29 05:47:00
109651    34457    676    2017-07-29 18:35:00    2017-07-29 18:35:00
109652    34457    666    2017-07-29 13:12:00    2017-07-29 13:12:00
109653    34457    548    2017-07-29 03:05:00    2017-07-29 03:05:00
109654    34457    810    2017-07-29 05:14:00    2017-07-29 05:14:00
109655    34458    604    2017-07-29 06:32:00    2017-07-29 06:32:00
109656    34458    857    2017-07-29 22:02:00    2017-07-29 22:02:00
109657    34458    619    2017-07-29 15:46:00    2017-07-29 15:46:00
109658    34458    508    2017-07-29 09:14:00    2017-07-29 09:14:00
109659    34458    859    2017-07-29 09:52:00    2017-07-29 09:52:00
109660    34459    745    2017-07-29 12:47:00    2017-07-29 12:47:00
109661    34459    937    2017-07-29 23:06:00    2017-07-29 23:06:00
109662    34459    550    2017-07-29 18:07:00    2017-07-29 18:07:00
109663    34459    886    2017-07-29 21:37:00    2017-07-29 21:37:00
109664    34459    903    2017-07-29 14:51:00    2017-07-29 14:51:00
109665    34460    731    2017-07-30 00:00:00    2017-07-30 00:00:00
109666    34460    929    2017-07-29 06:03:00    2017-07-29 06:03:00
109667    34460    592    2017-07-29 16:00:00    2017-07-29 16:00:00
109668    34460    667    2017-07-29 21:58:00    2017-07-29 21:58:00
109669    34460    571    2017-07-29 14:33:00    2017-07-29 14:33:00
109670    34461    574    2017-07-29 13:30:00    2017-07-29 13:30:00
109671    34461    534    2017-07-29 11:17:00    2017-07-29 11:17:00
109672    34461    733    2017-07-29 19:25:00    2017-07-29 19:25:00
109673    34461    487    2017-07-29 05:26:00    2017-07-29 05:26:00
109674    34461    875    2017-07-29 12:30:00    2017-07-29 12:30:00
109675    34462    782    2017-07-29 16:00:00    2017-07-29 16:00:00
109676    34462    496    2017-07-29 06:06:00    2017-07-29 06:06:00
109677    34462    513    2017-07-29 16:16:00    2017-07-29 16:16:00
109678    34462    944    2017-07-29 17:15:00    2017-07-29 17:15:00
109679    34462    604    2017-07-29 18:17:00    2017-07-29 18:17:00
109680    34463    569    2017-07-29 05:02:00    2017-07-29 05:02:00
109681    34463    916    2017-07-29 02:58:00    2017-07-29 02:58:00
109682    34463    672    2017-07-29 04:22:00    2017-07-29 04:22:00
109683    34463    923    2017-07-29 03:58:00    2017-07-29 03:58:00
109684    34463    782    2017-07-29 04:55:00    2017-07-29 04:55:00
109685    34464    624    2017-07-29 11:30:00    2017-07-29 11:30:00
109686    34464    647    2017-07-29 14:42:00    2017-07-29 14:42:00
109687    34464    501    2017-07-29 21:20:00    2017-07-29 21:20:00
109688    34464    837    2017-07-29 15:01:00    2017-07-29 15:01:00
109689    34464    556    2017-07-29 19:20:00    2017-07-29 19:20:00
109690    34465    853    2017-07-30 12:46:00    2017-07-30 12:46:00
109691    34465    609    2017-07-30 23:35:00    2017-07-30 23:35:00
109692    34465    563    2017-07-30 20:31:00    2017-07-30 20:31:00
109693    34465    961    2017-07-30 08:56:00    2017-07-30 08:56:00
109694    34465    771    2017-07-30 10:27:00    2017-07-30 10:27:00
109695    34466    877    2017-07-30 12:00:00    2017-07-30 12:00:00
109696    34466    464    2017-07-30 08:53:00    2017-07-30 08:53:00
109697    34466    863    2017-07-30 06:15:00    2017-07-30 06:15:00
109698    34466    724    2017-07-30 09:31:00    2017-07-30 09:31:00
109699    34466    919    2017-07-30 06:14:00    2017-07-30 06:14:00
109700    34467    569    2017-07-30 05:39:00    2017-07-30 05:39:00
109701    34467    954    2017-07-30 13:33:00    2017-07-30 13:33:00
109702    34467    783    2017-07-30 15:45:00    2017-07-30 15:45:00
109703    34467    675    2017-07-30 12:56:00    2017-07-30 12:56:00
109704    34467    695    2017-07-30 09:35:00    2017-07-30 09:35:00
109705    34468    528    2017-07-30 22:44:00    2017-07-30 22:44:00
109706    34468    783    2017-07-30 11:02:00    2017-07-30 11:02:00
109707    34468    633    2017-07-30 12:29:00    2017-07-30 12:29:00
109708    34468    928    2017-07-30 17:04:00    2017-07-30 17:04:00
109709    34468    898    2017-07-30 20:30:00    2017-07-30 20:30:00
109710    34469    679    2017-07-30 13:04:00    2017-07-30 13:04:00
109711    34469    564    2017-07-30 02:43:00    2017-07-30 02:43:00
109712    34469    841    2017-07-30 04:05:00    2017-07-30 04:05:00
109713    34469    552    2017-07-30 04:14:00    2017-07-30 04:14:00
109714    34469    874    2017-07-30 05:09:00    2017-07-30 05:09:00
109715    34470    611    2017-07-30 19:35:00    2017-07-30 19:35:00
109716    34470    880    2017-07-30 09:50:00    2017-07-30 09:50:00
109717    34470    960    2017-07-30 23:20:00    2017-07-30 23:20:00
109718    34470    567    2017-07-30 07:37:00    2017-07-30 07:37:00
109719    34470    818    2017-07-30 01:37:00    2017-07-30 01:37:00
109720    34471    531    2017-07-30 19:23:00    2017-07-30 19:23:00
109721    34471    766    2017-07-30 06:30:00    2017-07-30 06:30:00
109722    34471    672    2017-07-30 17:55:00    2017-07-30 17:55:00
109723    34471    492    2017-07-30 16:46:00    2017-07-30 16:46:00
109724    34471    563    2017-07-30 01:40:00    2017-07-30 01:40:00
109725    34472    891    2017-07-30 09:48:00    2017-07-30 09:48:00
109726    34472    600    2017-07-30 17:40:00    2017-07-30 17:40:00
109727    34472    785    2017-07-30 23:24:00    2017-07-30 23:24:00
109728    34472    488    2017-07-30 03:28:00    2017-07-30 03:28:00
109729    34472    826    2017-07-30 11:59:00    2017-07-30 11:59:00
109730    34473    515    2017-07-30 19:44:00    2017-07-30 19:44:00
109731    34473    940    2017-07-30 22:20:00    2017-07-30 22:20:00
109732    34473    498    2017-07-30 08:37:00    2017-07-30 08:37:00
109733    34473    585    2017-07-30 21:43:00    2017-07-30 21:43:00
109734    34473    648    2017-07-30 14:46:00    2017-07-30 14:46:00
109735    34474    658    2017-07-30 21:24:00    2017-07-30 21:24:00
109736    34474    503    2017-07-30 22:02:00    2017-07-30 22:02:00
109737    34474    551    2017-07-30 13:28:00    2017-07-30 13:28:00
109738    34474    866    2017-07-30 04:56:00    2017-07-30 04:56:00
109739    34474    755    2017-07-30 18:25:00    2017-07-30 18:25:00
109740    34475    901    2017-07-30 05:47:00    2017-07-30 05:47:00
109741    34475    601    2017-07-30 10:46:00    2017-07-30 10:46:00
109742    34475    485    2017-07-30 10:15:00    2017-07-30 10:15:00
109743    34475    651    2017-07-30 10:27:00    2017-07-30 10:27:00
109744    34475    772    2017-07-30 10:41:00    2017-07-30 10:41:00
109745    34476    782    2017-07-30 11:19:00    2017-07-30 11:19:00
109746    34476    717    2017-07-30 17:10:00    2017-07-30 17:10:00
109747    34476    715    2017-07-30 11:26:00    2017-07-30 11:26:00
109748    34476    799    2017-07-30 12:07:00    2017-07-30 12:07:00
109749    34476    665    2017-07-30 11:36:00    2017-07-30 11:36:00
109750    34477    695    2017-07-30 17:19:00    2017-07-30 17:19:00
109751    34477    833    2017-07-30 04:26:00    2017-07-30 04:26:00
109752    34477    589    2017-07-30 03:36:00    2017-07-30 03:36:00
109753    34477    484    2017-07-30 14:38:00    2017-07-30 14:38:00
109754    34477    740    2017-07-30 12:14:00    2017-07-30 12:14:00
109755    34478    630    2017-07-30 07:07:00    2017-07-30 07:07:00
109756    34478    911    2017-07-30 12:36:00    2017-07-30 12:36:00
109757    34478    804    2017-07-30 23:06:00    2017-07-30 23:06:00
109758    34478    694    2017-07-30 09:15:00    2017-07-30 09:15:00
109759    34478    901    2017-07-30 09:36:00    2017-07-30 09:36:00
109760    34479    823    2017-07-30 08:48:00    2017-07-30 08:48:00
109761    34479    882    2017-07-30 05:27:00    2017-07-30 05:27:00
109762    34479    862    2017-07-30 04:07:00    2017-07-30 04:07:00
109763    34479    574    2017-07-30 23:42:00    2017-07-30 23:42:00
109764    34479    742    2017-07-30 05:25:00    2017-07-30 05:25:00
109765    34480    685    2017-07-30 15:01:00    2017-07-30 15:01:00
109766    34480    475    2017-07-30 22:37:00    2017-07-30 22:37:00
109767    34480    508    2017-07-30 19:13:00    2017-07-30 19:13:00
109768    34480    950    2017-07-30 05:53:00    2017-07-30 05:53:00
109769    34480    838    2017-07-30 02:54:00    2017-07-30 02:54:00
109770    34481    553    2017-07-30 11:00:00    2017-07-30 11:00:00
109771    34481    692    2017-07-30 18:35:00    2017-07-30 18:35:00
109772    34481    543    2017-07-30 13:12:00    2017-07-30 13:12:00
109773    34481    666    2017-07-30 15:20:00    2017-07-30 15:20:00
109774    34481    547    2017-07-30 18:56:00    2017-07-30 18:56:00
109775    34482    794    2017-07-30 06:49:00    2017-07-30 06:49:00
109776    34482    825    2017-07-30 20:09:00    2017-07-30 20:09:00
109777    34482    535    2017-07-30 14:57:00    2017-07-30 14:57:00
109778    34482    903    2017-07-30 04:32:00    2017-07-30 04:32:00
109779    34482    774    2017-07-30 08:07:00    2017-07-30 08:07:00
109780    34483    819    2017-07-30 04:05:00    2017-07-30 04:05:00
109781    34483    468    2017-07-30 12:00:00    2017-07-30 12:00:00
109782    34483    929    2017-07-30 16:22:00    2017-07-30 16:22:00
109783    34483    607    2017-07-30 23:31:00    2017-07-30 23:31:00
109784    34483    513    2017-07-30 20:51:00    2017-07-30 20:51:00
109785    34484    784    2017-07-30 10:56:00    2017-07-30 10:56:00
109786    34484    498    2017-07-30 14:37:00    2017-07-30 14:37:00
109787    34484    933    2017-07-30 08:13:00    2017-07-30 08:13:00
109788    34484    658    2017-07-30 21:41:00    2017-07-30 21:41:00
109789    34484    527    2017-07-30 21:24:00    2017-07-30 21:24:00
109790    34485    489    2017-07-30 18:52:00    2017-07-30 18:52:00
109791    34485    816    2017-07-30 10:33:00    2017-07-30 10:33:00
109792    34485    548    2017-07-30 17:55:00    2017-07-30 17:55:00
109793    34485    510    2017-07-30 11:27:00    2017-07-30 11:27:00
109794    34485    826    2017-07-30 23:42:00    2017-07-30 23:42:00
109795    34486    695    2017-07-30 15:29:00    2017-07-30 15:29:00
109796    34486    740    2017-07-30 15:58:00    2017-07-30 15:58:00
109797    34486    582    2017-07-30 02:52:00    2017-07-30 02:52:00
109798    34486    764    2017-07-30 07:33:00    2017-07-30 07:33:00
109799    34486    920    2017-07-30 09:02:00    2017-07-30 09:02:00
109800    34487    846    2017-07-30 12:57:00    2017-07-30 12:57:00
109801    34487    650    2017-07-30 23:08:00    2017-07-30 23:08:00
109802    34487    880    2017-07-30 04:29:00    2017-07-30 04:29:00
109803    34487    651    2017-07-30 10:05:00    2017-07-30 10:05:00
109804    34487    658    2017-07-30 09:51:00    2017-07-30 09:51:00
109805    34488    500    2017-07-30 14:30:00    2017-07-30 14:30:00
109806    34488    801    2017-07-30 02:53:00    2017-07-30 02:53:00
109807    34488    629    2017-07-30 01:07:00    2017-07-30 01:07:00
109808    34488    818    2017-07-30 22:56:00    2017-07-30 22:56:00
109809    34488    499    2017-07-30 22:49:00    2017-07-30 22:49:00
109810    34489    591    2017-07-30 01:55:00    2017-07-30 01:55:00
109811    34489    768    2017-07-30 11:08:00    2017-07-30 11:08:00
109812    34489    609    2017-07-30 13:06:00    2017-07-30 13:06:00
109813    34489    726    2017-07-30 08:58:00    2017-07-30 08:58:00
109814    34489    787    2017-07-30 09:02:00    2017-07-30 09:02:00
109815    34490    882    2017-07-30 07:26:00    2017-07-30 07:26:00
109816    34490    654    2017-07-30 02:12:00    2017-07-30 02:12:00
109817    34490    469    2017-07-30 06:15:00    2017-07-30 06:15:00
109818    34490    607    2017-07-30 12:40:00    2017-07-30 12:40:00
109819    34490    524    2017-07-30 11:36:00    2017-07-30 11:36:00
109820    34491    695    2017-07-31 01:24:00    2017-07-31 01:24:00
109821    34491    758    2017-07-31 21:57:00    2017-07-31 21:57:00
109822    34491    939    2017-07-31 23:53:00    2017-07-31 23:53:00
109823    34491    879    2017-07-31 02:29:00    2017-07-31 02:29:00
109824    34491    775    2017-07-31 12:33:00    2017-07-31 12:33:00
109825    34492    873    2017-07-31 21:09:00    2017-07-31 21:09:00
109826    34492    548    2017-07-31 05:41:00    2017-07-31 05:41:00
109827    34492    748    2017-07-31 15:40:00    2017-07-31 15:40:00
109828    34492    579    2017-07-31 08:36:00    2017-07-31 08:36:00
109829    34492    496    2017-07-31 18:38:00    2017-07-31 18:38:00
109830    34493    761    2017-07-31 20:08:00    2017-07-31 20:08:00
109831    34493    684    2017-07-31 10:50:00    2017-07-31 10:50:00
109832    34493    549    2017-07-31 23:19:00    2017-07-31 23:19:00
109833    34493    574    2017-07-31 06:11:00    2017-07-31 06:11:00
109834    34493    488    2017-07-31 11:05:00    2017-07-31 11:05:00
109835    34494    597    2017-07-31 20:55:00    2017-07-31 20:55:00
109836    34494    686    2017-07-31 16:33:00    2017-07-31 16:33:00
109837    34494    599    2017-07-31 04:50:00    2017-07-31 04:50:00
109838    34494    515    2017-07-31 11:56:00    2017-07-31 11:56:00
109839    34494    897    2017-07-31 05:57:00    2017-07-31 05:57:00
109840    34495    674    2017-07-31 09:46:00    2017-07-31 09:46:00
109841    34495    946    2017-07-31 01:42:00    2017-07-31 01:42:00
109842    34495    829    2017-07-31 11:48:00    2017-07-31 11:48:00
109843    34495    656    2017-07-31 02:32:00    2017-07-31 02:32:00
109844    34495    733    2017-07-31 20:40:00    2017-07-31 20:40:00
109845    34496    611    2017-07-31 02:15:00    2017-07-31 02:15:00
109846    34496    485    2017-07-31 08:27:00    2017-07-31 08:27:00
109847    34496    825    2017-07-31 13:25:00    2017-07-31 13:25:00
109848    34496    737    2017-07-31 02:32:00    2017-07-31 02:32:00
109849    34496    946    2017-07-31 01:35:00    2017-07-31 01:35:00
109850    34497    827    2017-07-31 19:38:00    2017-07-31 19:38:00
109851    34497    674    2017-07-31 10:50:00    2017-07-31 10:50:00
109852    34497    477    2017-07-31 03:00:00    2017-07-31 03:00:00
109853    34497    478    2017-07-31 16:27:00    2017-07-31 16:27:00
109854    34497    917    2017-07-31 10:52:00    2017-07-31 10:52:00
109855    34498    733    2017-07-31 09:57:00    2017-07-31 09:57:00
109856    34498    948    2017-07-31 06:39:00    2017-07-31 06:39:00
109857    34498    919    2017-07-31 06:25:00    2017-07-31 06:25:00
109858    34498    821    2017-07-31 02:26:00    2017-07-31 02:26:00
109859    34498    856    2017-07-31 05:50:00    2017-07-31 05:50:00
109860    34499    688    2017-07-31 03:45:00    2017-07-31 03:45:00
109861    34499    808    2017-07-31 21:33:00    2017-07-31 21:33:00
109862    34499    472    2017-07-31 05:12:00    2017-07-31 05:12:00
109863    34499    890    2017-07-31 10:11:00    2017-07-31 10:11:00
109864    34499    961    2017-07-31 16:29:00    2017-07-31 16:29:00
109865    34500    515    2017-07-31 12:34:00    2017-07-31 12:34:00
109866    34500    878    2017-07-31 09:14:00    2017-07-31 09:14:00
109867    34500    629    2017-07-31 23:18:00    2017-07-31 23:18:00
109868    34500    796    2017-07-31 02:42:00    2017-07-31 02:42:00
109869    34500    629    2017-07-31 14:38:00    2017-07-31 14:38:00
109870    34501    530    2017-07-31 14:51:00    2017-07-31 14:51:00
109871    34501    617    2017-07-31 07:55:00    2017-07-31 07:55:00
109872    34501    543    2017-07-31 21:58:00    2017-07-31 21:58:00
109873    34501    893    2017-07-31 07:32:00    2017-07-31 07:32:00
109874    34501    879    2017-07-31 13:39:00    2017-07-31 13:39:00
109875    34502    527    2017-07-31 07:26:00    2017-07-31 07:26:00
109876    34502    764    2017-07-31 15:33:00    2017-07-31 15:33:00
109877    34502    789    2017-07-31 16:22:00    2017-07-31 16:22:00
109878    34502    953    2017-07-31 07:21:00    2017-07-31 07:21:00
109879    34502    493    2017-07-31 14:29:00    2017-07-31 14:29:00
109880    34503    929    2017-07-31 22:41:00    2017-07-31 22:41:00
109881    34503    555    2017-07-31 20:10:00    2017-07-31 20:10:00
109882    34503    765    2017-07-31 02:39:00    2017-07-31 02:39:00
109883    34503    721    2017-07-31 04:33:00    2017-07-31 04:33:00
109884    34503    919    2017-07-31 09:40:00    2017-07-31 09:40:00
109885    34504    806    2017-07-31 15:09:00    2017-07-31 15:09:00
109886    34504    637    2017-07-31 14:36:00    2017-07-31 14:36:00
109887    34504    882    2017-07-31 06:59:00    2017-07-31 06:59:00
109888    34504    617    2017-07-31 01:12:00    2017-07-31 01:12:00
109889    34504    698    2017-07-31 10:47:00    2017-07-31 10:47:00
109890    34505    760    2017-07-31 12:16:00    2017-07-31 12:16:00
109891    34505    501    2017-07-31 18:44:00    2017-07-31 18:44:00
109892    34505    833    2017-07-31 22:33:00    2017-07-31 22:33:00
109893    34505    948    2017-07-31 16:39:00    2017-07-31 16:39:00
109894    34505    755    2017-07-31 04:55:00    2017-07-31 04:55:00
109895    34506    882    2017-07-31 10:12:00    2017-07-31 10:12:00
109896    34506    910    2017-07-31 23:17:00    2017-07-31 23:17:00
109897    34506    720    2017-07-31 14:32:00    2017-07-31 14:32:00
109898    34506    818    2017-07-31 01:15:00    2017-07-31 01:15:00
109899    34506    815    2017-07-31 18:32:00    2017-07-31 18:32:00
109900    34507    927    2017-07-31 17:38:00    2017-07-31 17:38:00
109901    34507    507    2017-07-31 07:59:00    2017-07-31 07:59:00
109902    34507    895    2017-07-31 05:12:00    2017-07-31 05:12:00
109903    34507    686    2017-07-31 18:20:00    2017-07-31 18:20:00
109904    34507    959    2017-07-31 06:31:00    2017-07-31 06:31:00
109905    34508    841    2017-07-31 21:00:00    2017-07-31 21:00:00
109906    34508    902    2017-07-31 09:26:00    2017-07-31 09:26:00
109907    34508    656    2017-07-31 14:24:00    2017-07-31 14:24:00
109908    34508    566    2017-07-31 23:19:00    2017-07-31 23:19:00
109909    34508    797    2017-07-31 12:15:00    2017-07-31 12:15:00
109910    34509    888    2017-07-31 02:19:00    2017-07-31 02:19:00
109911    34509    560    2017-07-31 01:58:00    2017-07-31 01:58:00
109912    34509    669    2017-07-31 12:25:00    2017-07-31 12:25:00
109913    34509    885    2017-07-31 05:38:00    2017-07-31 05:38:00
109914    34509    470    2017-07-31 03:21:00    2017-07-31 03:21:00
109915    34510    635    2017-07-31 11:00:00    2017-07-31 11:00:00
109916    34510    479    2017-07-31 18:18:00    2017-07-31 18:18:00
109917    34510    814    2017-07-31 08:46:00    2017-07-31 08:46:00
109918    34510    567    2017-07-31 23:54:00    2017-07-31 23:54:00
109919    34510    763    2017-07-31 14:02:00    2017-07-31 14:02:00
109920    34511    567    2017-07-31 17:11:00    2017-07-31 17:11:00
109921    34511    541    2017-07-31 02:25:00    2017-07-31 02:25:00
109922    34511    506    2017-07-31 20:22:00    2017-07-31 20:22:00
109923    34511    665    2017-07-31 05:00:00    2017-07-31 05:00:00
109924    34511    541    2017-07-31 13:32:00    2017-07-31 13:32:00
109925    34512    897    2017-07-31 19:29:00    2017-07-31 19:29:00
109926    34512    862    2017-07-31 21:20:00    2017-07-31 21:20:00
109927    34512    873    2017-07-31 22:35:00    2017-07-31 22:35:00
109928    34512    606    2017-07-31 12:50:00    2017-07-31 12:50:00
109929    34512    476    2017-07-31 08:13:00    2017-07-31 08:13:00
109930    34513    713    2017-07-31 05:28:00    2017-07-31 05:28:00
109931    34513    695    2017-07-31 04:50:00    2017-07-31 04:50:00
109932    34513    786    2017-07-31 20:35:00    2017-07-31 20:35:00
109933    34513    850    2017-07-31 05:14:00    2017-07-31 05:14:00
109934    34513    880    2017-07-31 10:56:00    2017-07-31 10:56:00
109935    34514    631    2017-07-31 10:52:00    2017-07-31 10:52:00
109936    34514    593    2017-07-31 04:00:00    2017-07-31 04:00:00
109937    34514    668    2017-07-31 15:08:00    2017-07-31 15:08:00
109938    34514    470    2017-07-31 16:46:00    2017-07-31 16:46:00
109939    34514    669    2017-07-31 08:01:00    2017-07-31 08:01:00
109940    34515    532    2017-07-31 04:21:00    2017-07-31 04:21:00
109941    34515    672    2017-07-31 03:52:00    2017-07-31 03:52:00
109942    34515    565    2017-07-31 14:02:00    2017-07-31 14:02:00
109943    34515    774    2017-07-31 06:33:00    2017-07-31 06:33:00
109944    34515    819    2017-07-31 18:00:00    2017-07-31 18:00:00
109945    34516    733    2017-07-31 03:21:00    2017-07-31 03:21:00
109946    34516    670    2017-07-31 21:25:00    2017-07-31 21:25:00
109947    34516    680    2017-07-31 10:22:00    2017-07-31 10:22:00
109948    34516    613    2017-07-31 18:51:00    2017-07-31 18:51:00
109949    34516    543    2017-07-31 14:11:00    2017-07-31 14:11:00
109950    34517    614    2017-07-31 03:00:00    2017-07-31 03:00:00
109951    34517    934    2017-07-31 03:47:00    2017-07-31 03:47:00
109952    34517    958    2017-07-31 16:44:00    2017-07-31 16:44:00
109953    34517    928    2017-07-31 11:50:00    2017-07-31 11:50:00
109954    34517    589    2017-07-31 03:11:00    2017-07-31 03:11:00
109955    34518    668    2017-08-01 07:05:00    2017-08-01 07:05:00
109956    34518    645    2017-08-01 18:20:00    2017-08-01 18:20:00
109957    34518    679    2017-08-01 10:36:00    2017-08-01 10:36:00
109958    34518    489    2017-08-01 01:42:00    2017-08-01 01:42:00
109959    34518    622    2017-08-01 01:58:00    2017-08-01 01:58:00
109960    34519    640    2017-08-01 19:09:00    2017-08-01 19:09:00
109961    34519    636    2017-08-01 07:37:00    2017-08-01 07:37:00
109962    34519    953    2017-08-01 05:55:00    2017-08-01 05:55:00
109963    34519    490    2017-08-01 16:15:00    2017-08-01 16:15:00
109964    34519    668    2017-08-01 06:00:00    2017-08-01 06:00:00
109965    34520    748    2017-08-01 07:42:00    2017-08-01 07:42:00
109966    34520    586    2017-08-01 16:02:00    2017-08-01 16:02:00
109967    34520    481    2017-08-01 06:43:00    2017-08-01 06:43:00
109968    34520    650    2017-08-01 19:42:00    2017-08-01 19:42:00
109969    34520    482    2017-08-01 07:22:00    2017-08-01 07:22:00
109970    34521    594    2017-08-01 03:27:00    2017-08-01 03:27:00
109971    34521    469    2017-08-01 08:49:00    2017-08-01 08:49:00
109972    34521    781    2017-08-01 02:09:00    2017-08-01 02:09:00
109973    34521    703    2017-08-01 11:48:00    2017-08-01 11:48:00
109974    34521    770    2017-08-01 05:34:00    2017-08-01 05:34:00
109975    34522    746    2017-08-01 11:58:00    2017-08-01 11:58:00
109976    34522    797    2017-08-01 13:11:00    2017-08-01 13:11:00
109977    34522    825    2017-08-01 23:56:00    2017-08-01 23:56:00
109978    34522    504    2017-08-01 08:12:00    2017-08-01 08:12:00
109979    34522    948    2017-08-01 16:24:00    2017-08-01 16:24:00
109980    34523    823    2017-08-01 06:39:00    2017-08-01 06:39:00
109981    34523    699    2017-08-01 08:37:00    2017-08-01 08:37:00
109982    34523    737    2017-08-01 06:29:00    2017-08-01 06:29:00
109983    34523    776    2017-08-01 16:21:00    2017-08-01 16:21:00
109984    34523    805    2017-08-01 12:39:00    2017-08-01 12:39:00
109985    34524    898    2017-08-01 02:11:00    2017-08-01 02:11:00
109986    34524    607    2017-08-01 09:19:00    2017-08-01 09:19:00
109987    34524    645    2017-08-01 22:13:00    2017-08-01 22:13:00
109988    34524    860    2017-08-01 20:35:00    2017-08-01 20:35:00
109989    34524    748    2017-08-01 09:03:00    2017-08-01 09:03:00
109990    34525    760    2017-08-01 06:19:00    2017-08-01 06:19:00
109991    34525    616    2017-08-01 22:28:00    2017-08-01 22:28:00
109992    34525    660    2017-08-01 13:30:00    2017-08-01 13:30:00
109993    34525    750    2017-08-01 13:17:00    2017-08-01 13:17:00
109994    34525    886    2017-08-01 16:10:00    2017-08-01 16:10:00
109995    34526    510    2017-08-01 21:17:00    2017-08-01 21:17:00
109996    34526    553    2017-08-01 11:25:00    2017-08-01 11:25:00
109997    34526    865    2017-08-01 04:00:00    2017-08-01 04:00:00
109998    34526    774    2017-08-01 23:25:00    2017-08-01 23:25:00
109999    34526    698    2017-08-01 21:10:00    2017-08-01 21:10:00
110000    34527    789    2017-08-01 01:33:00    2017-08-01 01:33:00
110001    34527    826    2017-08-01 18:57:00    2017-08-01 18:57:00
110002    34527    486    2017-08-01 07:30:00    2017-08-01 07:30:00
110003    34527    765    2017-08-01 16:51:00    2017-08-01 16:51:00
110004    34527    672    2017-08-01 22:20:00    2017-08-01 22:20:00
110005    34528    630    2017-08-01 15:14:00    2017-08-01 15:14:00
110006    34528    838    2017-08-01 20:02:00    2017-08-01 20:02:00
110007    34528    686    2017-08-01 20:46:00    2017-08-01 20:46:00
110008    34528    690    2017-08-01 07:16:00    2017-08-01 07:16:00
110009    34528    775    2017-08-01 11:46:00    2017-08-01 11:46:00
110010    34529    514    2017-08-01 03:38:00    2017-08-01 03:38:00
110011    34529    719    2017-08-01 03:29:00    2017-08-01 03:29:00
110012    34529    529    2017-08-01 10:45:00    2017-08-01 10:45:00
110013    34529    531    2017-08-01 22:50:00    2017-08-01 22:50:00
110014    34529    525    2017-08-01 04:30:00    2017-08-01 04:30:00
110015    34530    798    2017-08-01 12:51:00    2017-08-01 12:51:00
110016    34530    751    2017-08-01 23:15:00    2017-08-01 23:15:00
110017    34530    676    2017-08-01 07:21:00    2017-08-01 07:21:00
110018    34530    697    2017-08-01 03:41:00    2017-08-01 03:41:00
110019    34530    721    2017-08-01 22:04:00    2017-08-01 22:04:00
110020    34531    559    2017-08-01 10:30:00    2017-08-01 10:30:00
110021    34531    469    2017-08-01 15:15:00    2017-08-01 15:15:00
110022    34531    478    2017-08-01 10:34:00    2017-08-01 10:34:00
110023    34531    591    2017-08-01 02:15:00    2017-08-01 02:15:00
110024    34531    539    2017-08-01 14:34:00    2017-08-01 14:34:00
110025    34532    663    2017-08-01 02:31:00    2017-08-01 02:31:00
110026    34532    846    2017-08-01 06:42:00    2017-08-01 06:42:00
110027    34532    770    2017-08-01 19:18:00    2017-08-01 19:18:00
110028    34532    940    2017-08-01 14:07:00    2017-08-01 14:07:00
110029    34532    876    2017-08-01 07:30:00    2017-08-01 07:30:00
110030    34533    822    2017-08-01 17:06:00    2017-08-01 17:06:00
110031    34533    956    2017-08-01 08:19:00    2017-08-01 08:19:00
110032    34533    760    2017-08-01 20:57:00    2017-08-01 20:57:00
110033    34533    529    2017-08-01 07:10:00    2017-08-01 07:10:00
110034    34533    509    2017-08-01 06:02:00    2017-08-01 06:02:00
110035    34534    509    2017-08-01 11:33:00    2017-08-01 11:33:00
110036    34534    500    2017-08-01 16:21:00    2017-08-01 16:21:00
110037    34534    541    2017-08-01 09:51:00    2017-08-01 09:51:00
110038    34534    619    2017-08-01 21:50:00    2017-08-01 21:50:00
110039    34534    726    2017-08-01 15:00:00    2017-08-01 15:00:00
110040    34535    926    2017-08-01 03:19:00    2017-08-01 03:19:00
110041    34535    821    2017-08-01 04:43:00    2017-08-01 04:43:00
110042    34535    935    2017-08-01 20:42:00    2017-08-01 20:42:00
110043    34535    814    2017-08-01 17:52:00    2017-08-01 17:52:00
110044    34535    562    2017-08-01 21:12:00    2017-08-01 21:12:00
110045    34536    767    2017-08-01 23:12:00    2017-08-01 23:12:00
110046    34536    751    2017-08-01 16:51:00    2017-08-01 16:51:00
110047    34536    919    2017-08-01 19:13:00    2017-08-01 19:13:00
110048    34536    797    2017-08-01 13:56:00    2017-08-01 13:56:00
110049    34536    873    2017-08-01 16:28:00    2017-08-01 16:28:00
110050    34537    525    2017-08-01 06:25:00    2017-08-01 06:25:00
110051    34537    644    2017-08-01 18:47:00    2017-08-01 18:47:00
110052    34537    567    2017-08-01 13:08:00    2017-08-01 13:08:00
110053    34537    612    2017-08-01 22:31:00    2017-08-01 22:31:00
110054    34537    588    2017-08-01 11:00:00    2017-08-01 11:00:00
110055    34538    813    2017-08-01 02:02:00    2017-08-01 02:02:00
110056    34538    572    2017-08-01 03:50:00    2017-08-01 03:50:00
110057    34538    688    2017-08-01 18:06:00    2017-08-01 18:06:00
110058    34538    952    2017-08-01 22:32:00    2017-08-01 22:32:00
110059    34538    791    2017-08-01 20:51:00    2017-08-01 20:51:00
110060    34539    785    2017-08-01 17:55:00    2017-08-01 17:55:00
110061    34539    724    2017-08-01 08:31:00    2017-08-01 08:31:00
110062    34539    604    2017-08-01 05:35:00    2017-08-01 05:35:00
110063    34539    611    2017-08-01 04:12:00    2017-08-01 04:12:00
110064    34539    935    2017-08-01 12:26:00    2017-08-01 12:26:00
110065    34540    843    2017-08-01 14:25:00    2017-08-01 14:25:00
110066    34540    663    2017-08-01 20:30:00    2017-08-01 20:30:00
110067    34540    639    2017-08-01 07:57:00    2017-08-01 07:57:00
110068    34540    952    2017-08-01 01:07:00    2017-08-01 01:07:00
110069    34540    476    2017-08-01 03:00:00    2017-08-01 03:00:00
110070    34541    955    2017-08-01 22:47:00    2017-08-01 22:47:00
110071    34541    902    2017-08-01 02:23:00    2017-08-01 02:23:00
110072    34541    741    2017-08-01 09:34:00    2017-08-01 09:34:00
110073    34541    631    2017-08-01 08:37:00    2017-08-01 08:37:00
110074    34541    558    2017-08-01 12:25:00    2017-08-01 12:25:00
110075    34542    783    2017-08-01 20:43:00    2017-08-01 20:43:00
110076    34542    876    2017-08-01 15:47:00    2017-08-01 15:47:00
110077    34542    681    2017-08-01 14:09:00    2017-08-01 14:09:00
110078    34542    784    2017-08-01 11:45:00    2017-08-01 11:45:00
110079    34542    947    2017-08-01 21:02:00    2017-08-01 21:02:00
110080    34543    746    2017-08-01 13:39:00    2017-08-01 13:39:00
110081    34543    685    2017-08-01 04:02:00    2017-08-01 04:02:00
110082    34543    873    2017-08-01 21:43:00    2017-08-01 21:43:00
110083    34543    780    2017-08-01 02:16:00    2017-08-01 02:16:00
110084    34543    547    2017-08-01 02:00:00    2017-08-01 02:00:00
110085    34544    584    2017-08-01 19:54:00    2017-08-01 19:54:00
110086    34544    777    2017-08-01 22:33:00    2017-08-01 22:33:00
110087    34544    746    2017-08-01 03:07:00    2017-08-01 03:07:00
110088    34544    775    2017-08-01 09:40:00    2017-08-01 09:40:00
110089    34544    933    2017-08-01 18:47:00    2017-08-01 18:47:00
110090    34545    562    2017-08-01 04:51:00    2017-08-01 04:51:00
110091    34545    492    2017-08-01 09:44:00    2017-08-01 09:44:00
110092    34545    904    2017-08-01 13:10:00    2017-08-01 13:10:00
110093    34545    736    2017-08-01 14:31:00    2017-08-01 14:31:00
110094    34545    694    2017-08-01 14:32:00    2017-08-01 14:32:00
110095    34546    574    2017-08-01 09:47:00    2017-08-01 09:47:00
110096    34546    543    2017-08-01 08:09:00    2017-08-01 08:09:00
110097    34546    777    2017-08-01 09:05:00    2017-08-01 09:05:00
110098    34546    564    2017-08-01 14:12:00    2017-08-01 14:12:00
110099    34546    843    2017-08-01 06:21:00    2017-08-01 06:21:00
110100    34547    855    2017-08-01 04:45:00    2017-08-01 04:45:00
110101    34547    787    2017-08-01 03:17:00    2017-08-01 03:17:00
110102    34547    858    2017-08-01 05:02:00    2017-08-01 05:02:00
110103    34547    500    2017-08-01 20:56:00    2017-08-01 20:56:00
110104    34547    608    2017-08-01 18:38:00    2017-08-01 18:38:00
110105    34548    810    2017-08-01 04:36:00    2017-08-01 04:36:00
110106    34548    595    2017-08-01 11:56:00    2017-08-01 11:56:00
110107    34548    741    2017-08-01 17:32:00    2017-08-01 17:32:00
110108    34548    645    2017-08-01 08:00:00    2017-08-01 08:00:00
110109    34548    852    2017-08-01 04:57:00    2017-08-01 04:57:00
110110    34549    746    2017-08-01 11:35:00    2017-08-01 11:35:00
110111    34549    853    2017-08-01 01:54:00    2017-08-01 01:54:00
110112    34549    522    2017-08-01 06:19:00    2017-08-01 06:19:00
110113    34549    927    2017-08-01 09:18:00    2017-08-01 09:18:00
110114    34549    638    2017-08-01 03:50:00    2017-08-01 03:50:00
110115    34550    675    2017-08-01 13:54:00    2017-08-01 13:54:00
110116    34550    744    2017-08-01 19:35:00    2017-08-01 19:35:00
110117    34550    614    2017-08-01 18:37:00    2017-08-01 18:37:00
110118    34550    465    2017-08-01 19:28:00    2017-08-01 19:28:00
110119    34550    928    2017-08-01 21:00:00    2017-08-01 21:00:00
110120    34551    830    2017-08-01 15:35:00    2017-08-01 15:35:00
110121    34551    893    2017-08-01 10:10:00    2017-08-01 10:10:00
110122    34551    545    2017-08-01 16:20:00    2017-08-01 16:20:00
110123    34551    519    2017-08-01 05:33:00    2017-08-01 05:33:00
110124    34551    736    2017-08-01 12:16:00    2017-08-01 12:16:00
110125    34552    570    2017-08-01 21:24:00    2017-08-01 21:24:00
110126    34552    883    2017-08-01 17:40:00    2017-08-01 17:40:00
110127    34552    613    2017-08-01 12:22:00    2017-08-01 12:22:00
110128    34552    721    2017-08-01 18:52:00    2017-08-01 18:52:00
110129    34552    527    2017-08-01 09:41:00    2017-08-01 09:41:00
110130    34553    671    2017-08-01 23:07:00    2017-08-01 23:07:00
110131    34553    710    2017-08-01 07:53:00    2017-08-01 07:53:00
110132    34553    719    2017-08-01 15:35:00    2017-08-01 15:35:00
110133    34553    915    2017-08-01 05:25:00    2017-08-01 05:25:00
110134    34553    486    2017-08-01 20:07:00    2017-08-01 20:07:00
110135    34554    561    2017-08-01 13:21:00    2017-08-01 13:21:00
110136    34554    807    2017-08-01 13:10:00    2017-08-01 13:10:00
110137    34554    639    2017-08-01 23:50:00    2017-08-01 23:50:00
110138    34554    850    2017-08-01 20:16:00    2017-08-01 20:16:00
110139    34554    470    2017-08-01 04:12:00    2017-08-01 04:12:00
110140    34555    888    2017-08-01 18:27:00    2017-08-01 18:27:00
110141    34555    799    2017-08-01 05:09:00    2017-08-01 05:09:00
110142    34555    598    2017-08-01 19:57:00    2017-08-01 19:57:00
110143    34555    661    2017-08-01 20:12:00    2017-08-01 20:12:00
110144    34555    786    2017-08-01 17:59:00    2017-08-01 17:59:00
110145    34556    803    2017-08-01 13:41:00    2017-08-01 13:41:00
110146    34556    664    2017-08-01 16:34:00    2017-08-01 16:34:00
110147    34556    518    2017-08-01 06:33:00    2017-08-01 06:33:00
110148    34556    486    2017-08-01 12:30:00    2017-08-01 12:30:00
110149    34556    803    2017-08-01 12:06:00    2017-08-01 12:06:00
110150    34557    582    2017-08-01 02:07:00    2017-08-01 02:07:00
110151    34557    931    2017-08-01 21:35:00    2017-08-01 21:35:00
110152    34557    480    2017-08-01 23:00:00    2017-08-01 23:00:00
110153    34557    713    2017-08-01 15:27:00    2017-08-01 15:27:00
110154    34557    765    2017-08-01 20:40:00    2017-08-01 20:40:00
110155    34558    797    2017-08-01 08:46:00    2017-08-01 08:46:00
110156    34558    517    2017-08-01 10:30:00    2017-08-01 10:30:00
110157    34558    872    2017-08-01 05:35:00    2017-08-01 05:35:00
110158    34558    824    2017-08-01 18:57:00    2017-08-01 18:57:00
110159    34558    471    2017-08-01 09:57:00    2017-08-01 09:57:00
110160    34559    598    2017-08-01 07:56:00    2017-08-01 07:56:00
110161    34559    815    2017-08-01 22:01:00    2017-08-01 22:01:00
110162    34559    917    2017-08-01 06:09:00    2017-08-01 06:09:00
110163    34559    885    2017-08-01 13:42:00    2017-08-01 13:42:00
110164    34559    621    2017-08-01 10:36:00    2017-08-01 10:36:00
110165    34560    493    2017-08-01 21:50:00    2017-08-01 21:50:00
110166    34560    582    2017-08-01 06:45:00    2017-08-01 06:45:00
110167    34560    517    2017-08-01 11:27:00    2017-08-01 11:27:00
110168    34560    909    2017-08-01 17:42:00    2017-08-01 17:42:00
110169    34560    730    2017-08-01 11:14:00    2017-08-01 11:14:00
110170    34561    541    2017-08-01 06:23:00    2017-08-01 06:23:00
110171    34561    861    2017-08-01 13:08:00    2017-08-01 13:08:00
110172    34561    925    2017-08-01 13:23:00    2017-08-01 13:23:00
110173    34561    469    2017-08-01 06:32:00    2017-08-01 06:32:00
110174    34561    487    2017-08-01 02:43:00    2017-08-01 02:43:00
110175    34562    676    2017-08-01 19:25:00    2017-08-01 19:25:00
110176    34562    738    2017-08-01 12:29:00    2017-08-01 12:29:00
110177    34562    518    2017-08-01 09:51:00    2017-08-01 09:51:00
110178    34562    692    2017-08-01 06:38:00    2017-08-01 06:38:00
110179    34562    534    2017-08-01 12:00:00    2017-08-01 12:00:00
110180    34563    582    2017-08-01 20:09:00    2017-08-01 20:09:00
110181    34563    872    2017-08-01 01:21:00    2017-08-01 01:21:00
110182    34563    911    2017-08-01 11:00:00    2017-08-01 11:00:00
110183    34563    522    2017-08-01 15:16:00    2017-08-01 15:16:00
110184    34563    784    2017-08-01 06:40:00    2017-08-01 06:40:00
110185    34564    798    2017-08-01 11:09:00    2017-08-01 11:09:00
110186    34564    632    2017-08-01 03:27:00    2017-08-01 03:27:00
110187    34564    602    2017-08-01 22:18:00    2017-08-01 22:18:00
110188    34564    725    2017-08-01 22:59:00    2017-08-01 22:59:00
110189    34564    569    2017-08-01 10:51:00    2017-08-01 10:51:00
110190    34565    782    2017-08-01 23:25:00    2017-08-01 23:25:00
110191    34565    536    2017-08-01 20:06:00    2017-08-01 20:06:00
110192    34565    646    2017-08-01 20:52:00    2017-08-01 20:52:00
110193    34565    505    2017-08-01 14:38:00    2017-08-01 14:38:00
110194    34565    511    2017-08-01 13:52:00    2017-08-01 13:52:00
110195    34566    949    2017-08-01 23:52:00    2017-08-01 23:52:00
110196    34566    867    2017-08-01 05:20:00    2017-08-01 05:20:00
110197    34566    791    2017-08-01 04:46:00    2017-08-01 04:46:00
110198    34566    825    2017-08-01 05:37:00    2017-08-01 05:37:00
110199    34566    628    2017-08-01 14:13:00    2017-08-01 14:13:00
110200    34567    955    2017-08-01 18:45:00    2017-08-01 18:45:00
110201    34567    857    2017-08-01 16:30:00    2017-08-01 16:30:00
110202    34567    527    2017-08-01 08:34:00    2017-08-01 08:34:00
110203    34567    730    2017-08-01 13:24:00    2017-08-01 13:24:00
110204    34567    914    2017-08-01 04:10:00    2017-08-01 04:10:00
110205    34568    891    2017-08-01 06:01:00    2017-08-01 06:01:00
110206    34568    956    2017-08-01 11:01:00    2017-08-01 11:01:00
110207    34568    861    2017-08-01 07:39:00    2017-08-01 07:39:00
110208    34568    527    2017-08-01 20:43:00    2017-08-01 20:43:00
110209    34568    880    2017-08-01 04:13:00    2017-08-01 04:13:00
110210    34569    953    2017-08-01 13:19:00    2017-08-01 13:19:00
110211    34569    594    2017-08-01 19:36:00    2017-08-01 19:36:00
110212    34569    570    2017-08-01 12:35:00    2017-08-01 12:35:00
110213    34569    603    2017-08-01 03:46:00    2017-08-01 03:46:00
110214    34569    848    2017-08-01 06:49:00    2017-08-01 06:49:00
110215    34570    889    2017-08-01 10:08:00    2017-08-01 10:08:00
110216    34570    936    2017-08-01 18:36:00    2017-08-01 18:36:00
110217    34570    632    2017-08-01 02:45:00    2017-08-01 02:45:00
110218    34570    854    2017-08-01 02:18:00    2017-08-01 02:18:00
110219    34570    795    2017-08-01 23:05:00    2017-08-01 23:05:00
110220    34571    707    2017-08-01 01:03:00    2017-08-01 01:03:00
110221    34571    658    2017-08-01 16:49:00    2017-08-01 16:49:00
110222    34571    764    2017-08-01 03:33:00    2017-08-01 03:33:00
110223    34571    557    2017-08-01 20:59:00    2017-08-01 20:59:00
110224    34571    931    2017-08-01 19:46:00    2017-08-01 19:46:00
110225    34572    699    2017-08-01 21:07:00    2017-08-01 21:07:00
110226    34572    852    2017-08-01 20:26:00    2017-08-01 20:26:00
110227    34572    910    2017-08-01 05:12:00    2017-08-01 05:12:00
110228    34572    842    2017-08-01 08:22:00    2017-08-01 08:22:00
110229    34572    469    2017-08-01 13:09:00    2017-08-01 13:09:00
110230    34573    512    2017-08-01 16:04:00    2017-08-01 16:04:00
110231    34573    694    2017-08-01 07:31:00    2017-08-01 07:31:00
110232    34573    675    2017-08-01 02:36:00    2017-08-01 02:36:00
110233    34573    592    2017-08-01 17:28:00    2017-08-01 17:28:00
110234    34573    676    2017-08-01 11:08:00    2017-08-01 11:08:00
110235    34574    861    2017-08-01 23:58:00    2017-08-01 23:58:00
110236    34574    592    2017-08-01 16:21:00    2017-08-01 16:21:00
110237    34574    766    2017-08-01 09:37:00    2017-08-01 09:37:00
110238    34574    540    2017-08-01 20:11:00    2017-08-01 20:11:00
110239    34574    536    2017-08-01 17:34:00    2017-08-01 17:34:00
110240    34575    536    2017-08-01 12:32:00    2017-08-01 12:32:00
110241    34575    511    2017-08-01 19:55:00    2017-08-01 19:55:00
110242    34575    808    2017-08-01 02:41:00    2017-08-01 02:41:00
110243    34575    847    2017-08-01 01:30:00    2017-08-01 01:30:00
110244    34575    738    2017-08-01 12:26:00    2017-08-01 12:26:00
110245    34576    712    2017-08-01 23:28:00    2017-08-01 23:28:00
110246    34576    927    2017-08-01 19:56:00    2017-08-01 19:56:00
110247    34576    697    2017-08-01 23:14:00    2017-08-01 23:14:00
110248    34576    569    2017-08-01 21:01:00    2017-08-01 21:01:00
110249    34576    719    2017-08-01 10:42:00    2017-08-01 10:42:00
110250    34577    952    2017-08-01 17:06:00    2017-08-01 17:06:00
110251    34577    806    2017-08-01 09:25:00    2017-08-01 09:25:00
110252    34577    863    2017-08-01 06:19:00    2017-08-01 06:19:00
110253    34577    790    2017-08-01 14:14:00    2017-08-01 14:14:00
110254    34577    556    2017-08-01 19:32:00    2017-08-01 19:32:00
110255    34578    744    2017-08-01 02:25:00    2017-08-01 02:25:00
110256    34578    574    2017-08-01 01:37:00    2017-08-01 01:37:00
110257    34578    823    2017-08-01 16:55:00    2017-08-01 16:55:00
110258    34578    500    2017-08-01 01:05:00    2017-08-01 01:05:00
110259    34578    557    2017-08-01 06:14:00    2017-08-01 06:14:00
110260    34579    548    2017-08-02 20:12:00    2017-08-02 20:12:00
110261    34579    647    2017-08-02 12:44:00    2017-08-02 12:44:00
110262    34579    864    2017-08-02 22:25:00    2017-08-02 22:25:00
110263    34579    939    2017-08-02 01:22:00    2017-08-02 01:22:00
110264    34579    760    2017-08-02 13:00:00    2017-08-02 13:00:00
110265    34580    484    2017-08-02 08:27:00    2017-08-02 08:27:00
110266    34580    768    2017-08-02 07:14:00    2017-08-02 07:14:00
110267    34580    543    2017-08-02 03:24:00    2017-08-02 03:24:00
110268    34580    724    2017-08-02 20:38:00    2017-08-02 20:38:00
110269    34580    947    2017-08-02 17:26:00    2017-08-02 17:26:00
110270    34581    861    2017-08-02 01:59:00    2017-08-02 01:59:00
110271    34581    731    2017-08-02 14:28:00    2017-08-02 14:28:00
110272    34581    491    2017-08-02 22:46:00    2017-08-02 22:46:00
110273    34581    908    2017-08-02 11:25:00    2017-08-02 11:25:00
110274    34581    705    2017-08-02 12:27:00    2017-08-02 12:27:00
110275    34582    947    2017-08-02 23:15:00    2017-08-02 23:15:00
110276    34582    739    2017-08-02 07:42:00    2017-08-02 07:42:00
110277    34582    661    2017-08-02 13:05:00    2017-08-02 13:05:00
110278    34582    562    2017-08-02 12:15:00    2017-08-02 12:15:00
110279    34582    783    2017-08-02 11:19:00    2017-08-02 11:19:00
110280    34583    899    2017-08-02 18:33:00    2017-08-02 18:33:00
110281    34583    812    2017-08-02 15:04:00    2017-08-02 15:04:00
110282    34583    637    2017-08-02 11:01:00    2017-08-02 11:01:00
110283    34583    771    2017-08-02 18:43:00    2017-08-02 18:43:00
110284    34583    840    2017-08-02 06:00:00    2017-08-02 06:00:00
110285    34584    948    2017-08-02 06:11:00    2017-08-02 06:11:00
110286    34584    468    2017-08-02 21:43:00    2017-08-02 21:43:00
110287    34584    722    2017-08-02 17:46:00    2017-08-02 17:46:00
110288    34584    860    2017-08-02 17:31:00    2017-08-02 17:31:00
110289    34584    512    2017-08-02 08:06:00    2017-08-02 08:06:00
110290    34585    888    2017-08-02 17:31:00    2017-08-02 17:31:00
110291    34585    612    2017-08-02 07:06:00    2017-08-02 07:06:00
110292    34585    828    2017-08-02 20:32:00    2017-08-02 20:32:00
110293    34585    584    2017-08-02 02:02:00    2017-08-02 02:02:00
110294    34585    750    2017-08-02 21:30:00    2017-08-02 21:30:00
110295    34586    486    2017-08-02 12:40:00    2017-08-02 12:40:00
110296    34586    797    2017-08-02 10:43:00    2017-08-02 10:43:00
110297    34586    518    2017-08-02 03:11:00    2017-08-02 03:11:00
110298    34586    898    2017-08-02 21:49:00    2017-08-02 21:49:00
110299    34586    787    2017-08-02 04:54:00    2017-08-02 04:54:00
110300    34587    903    2017-08-02 07:34:00    2017-08-02 07:34:00
110301    34587    882    2017-08-02 04:58:00    2017-08-02 04:58:00
110302    34587    949    2017-08-02 22:13:00    2017-08-02 22:13:00
110303    34587    522    2017-08-02 09:19:00    2017-08-02 09:19:00
110304    34587    750    2017-08-02 17:07:00    2017-08-02 17:07:00
110305    34588    584    2017-08-02 05:29:00    2017-08-02 05:29:00
110306    34588    769    2017-08-02 10:13:00    2017-08-02 10:13:00
110307    34588    857    2017-08-02 20:36:00    2017-08-02 20:36:00
110308    34588    625    2017-08-02 05:12:00    2017-08-02 05:12:00
110309    34588    666    2017-08-02 16:10:00    2017-08-02 16:10:00
110310    34589    884    2017-08-02 22:50:00    2017-08-02 22:50:00
110311    34589    874    2017-08-02 13:53:00    2017-08-02 13:53:00
110312    34589    621    2017-08-02 08:44:00    2017-08-02 08:44:00
110313    34589    522    2017-08-02 08:42:00    2017-08-02 08:42:00
110314    34589    898    2017-08-02 02:28:00    2017-08-02 02:28:00
110315    34590    939    2017-08-02 01:42:00    2017-08-02 01:42:00
110316    34590    605    2017-08-02 02:06:00    2017-08-02 02:06:00
110317    34590    546    2017-08-02 10:30:00    2017-08-02 10:30:00
110318    34590    766    2017-08-02 14:00:00    2017-08-02 14:00:00
110319    34590    733    2017-08-02 03:10:00    2017-08-02 03:10:00
110320    34591    475    2017-08-02 23:08:00    2017-08-02 23:08:00
110321    34591    768    2017-08-02 23:35:00    2017-08-02 23:35:00
110322    34591    764    2017-08-02 07:53:00    2017-08-02 07:53:00
110323    34591    761    2017-08-02 18:09:00    2017-08-02 18:09:00
110324    34591    650    2017-08-02 15:10:00    2017-08-02 15:10:00
110325    34592    679    2017-08-02 06:47:00    2017-08-02 06:47:00
110326    34592    770    2017-08-02 03:09:00    2017-08-02 03:09:00
110327    34592    833    2017-08-02 06:24:00    2017-08-02 06:24:00
110328    34592    591    2017-08-02 22:45:00    2017-08-02 22:45:00
110329    34592    796    2017-08-02 22:22:00    2017-08-02 22:22:00
110330    34593    882    2017-08-02 02:37:00    2017-08-02 02:37:00
110331    34593    531    2017-08-02 22:03:00    2017-08-02 22:03:00
110332    34593    505    2017-08-02 04:22:00    2017-08-02 04:22:00
110333    34593    867    2017-08-02 04:52:00    2017-08-02 04:52:00
110334    34593    580    2017-08-02 23:05:00    2017-08-02 23:05:00
110335    34594    940    2017-08-02 13:26:00    2017-08-02 13:26:00
110336    34594    560    2017-08-02 18:37:00    2017-08-02 18:37:00
110337    34594    715    2017-08-02 15:52:00    2017-08-02 15:52:00
110338    34594    932    2017-08-02 05:14:00    2017-08-02 05:14:00
110339    34594    658    2017-08-02 14:46:00    2017-08-02 14:46:00
110340    34595    781    2017-08-02 18:26:00    2017-08-02 18:26:00
110341    34595    937    2017-08-02 09:20:00    2017-08-02 09:20:00
110342    34595    745    2017-08-02 12:22:00    2017-08-02 12:22:00
110343    34595    622    2017-08-02 18:59:00    2017-08-02 18:59:00
110344    34595    883    2017-08-02 06:27:00    2017-08-02 06:27:00
110345    34596    661    2017-08-02 05:45:00    2017-08-02 05:45:00
110346    34596    885    2017-08-02 04:21:00    2017-08-02 04:21:00
110347    34596    716    2017-08-02 03:29:00    2017-08-02 03:29:00
110348    34596    622    2017-08-02 02:53:00    2017-08-02 02:53:00
110349    34596    511    2017-08-02 22:48:00    2017-08-02 22:48:00
110350    34597    947    2017-08-02 20:53:00    2017-08-02 20:53:00
110351    34597    756    2017-08-02 01:43:00    2017-08-02 01:43:00
110352    34597    833    2017-08-02 14:51:00    2017-08-02 14:51:00
110353    34597    547    2017-08-02 08:47:00    2017-08-02 08:47:00
110354    34597    945    2017-08-02 14:41:00    2017-08-02 14:41:00
110355    34598    937    2017-08-02 09:01:00    2017-08-02 09:01:00
110356    34598    662    2017-08-02 21:20:00    2017-08-02 21:20:00
110357    34598    759    2017-08-02 02:53:00    2017-08-02 02:53:00
110358    34598    750    2017-08-02 17:30:00    2017-08-02 17:30:00
110359    34598    765    2017-08-02 16:49:00    2017-08-02 16:49:00
110360    34599    540    2017-08-02 04:35:00    2017-08-02 04:35:00
110361    34599    593    2017-08-02 20:14:00    2017-08-02 20:14:00
110362    34599    498    2017-08-02 13:18:00    2017-08-02 13:18:00
110363    34599    519    2017-08-02 14:31:00    2017-08-02 14:31:00
110364    34599    752    2017-08-02 07:18:00    2017-08-02 07:18:00
110365    34600    949    2017-08-02 14:13:00    2017-08-02 14:13:00
110366    34600    695    2017-08-02 20:18:00    2017-08-02 20:18:00
110367    34600    877    2017-08-02 22:38:00    2017-08-02 22:38:00
110368    34600    471    2017-08-02 03:55:00    2017-08-02 03:55:00
110369    34600    488    2017-08-02 06:29:00    2017-08-02 06:29:00
110370    34601    878    2017-08-02 01:42:00    2017-08-02 01:42:00
110371    34601    477    2017-08-02 15:11:00    2017-08-02 15:11:00
110372    34601    657    2017-08-02 18:52:00    2017-08-02 18:52:00
110373    34601    932    2017-08-02 01:38:00    2017-08-02 01:38:00
110374    34601    654    2017-08-02 22:41:00    2017-08-02 22:41:00
110375    34602    653    2017-08-02 11:54:00    2017-08-02 11:54:00
110376    34602    735    2017-08-02 04:13:00    2017-08-02 04:13:00
110377    34602    641    2017-08-02 06:15:00    2017-08-02 06:15:00
110378    34602    891    2017-08-02 02:08:00    2017-08-02 02:08:00
110379    34602    751    2017-08-02 22:26:00    2017-08-02 22:26:00
110380    34603    721    2017-08-02 19:09:00    2017-08-02 19:09:00
110381    34603    785    2017-08-02 03:03:00    2017-08-02 03:03:00
110382    34603    691    2017-08-02 11:55:00    2017-08-02 11:55:00
110383    34603    712    2017-08-02 01:32:00    2017-08-02 01:32:00
110384    34603    822    2017-08-02 01:50:00    2017-08-02 01:50:00
110385    34604    590    2017-08-02 14:20:00    2017-08-02 14:20:00
110386    34604    808    2017-08-02 11:06:00    2017-08-02 11:06:00
110387    34604    922    2017-08-02 03:54:00    2017-08-02 03:54:00
110388    34604    889    2017-08-02 19:10:00    2017-08-02 19:10:00
110389    34604    733    2017-08-02 20:56:00    2017-08-02 20:56:00
110390    34605    797    2017-08-02 04:47:00    2017-08-02 04:47:00
110391    34605    715    2017-08-02 10:11:00    2017-08-02 10:11:00
110392    34605    667    2017-08-02 16:25:00    2017-08-02 16:25:00
110393    34605    541    2017-08-02 16:43:00    2017-08-02 16:43:00
110394    34605    594    2017-08-02 13:42:00    2017-08-02 13:42:00
110395    34606    600    2017-08-02 01:04:00    2017-08-02 01:04:00
110396    34606    714    2017-08-02 16:30:00    2017-08-02 16:30:00
110397    34606    704    2017-08-02 23:22:00    2017-08-02 23:22:00
110398    34606    495    2017-08-02 09:09:00    2017-08-02 09:09:00
110399    34606    768    2017-08-02 13:16:00    2017-08-02 13:16:00
110400    34607    926    2017-08-02 13:58:00    2017-08-02 13:58:00
110401    34607    485    2017-08-02 15:46:00    2017-08-02 15:46:00
110402    34607    773    2017-08-02 06:42:00    2017-08-02 06:42:00
110403    34607    518    2017-08-02 19:40:00    2017-08-02 19:40:00
110404    34607    556    2017-08-02 13:21:00    2017-08-02 13:21:00
110405    34608    628    2017-08-02 02:34:00    2017-08-02 02:34:00
110406    34608    513    2017-08-02 05:34:00    2017-08-02 05:34:00
110407    34608    917    2017-08-02 13:41:00    2017-08-02 13:41:00
110408    34608    691    2017-08-02 04:48:00    2017-08-02 04:48:00
110409    34608    946    2017-08-02 08:42:00    2017-08-02 08:42:00
110410    34609    949    2017-08-02 07:26:00    2017-08-02 07:26:00
110411    34609    558    2017-08-02 06:14:00    2017-08-02 06:14:00
110412    34609    520    2017-08-02 15:08:00    2017-08-02 15:08:00
110413    34609    616    2017-08-02 06:44:00    2017-08-02 06:44:00
110414    34609    634    2017-08-02 10:25:00    2017-08-02 10:25:00
110415    34610    951    2017-08-02 22:26:00    2017-08-02 22:26:00
110416    34610    760    2017-08-02 19:46:00    2017-08-02 19:46:00
110417    34610    727    2017-08-02 23:23:00    2017-08-02 23:23:00
110418    34610    727    2017-08-02 18:08:00    2017-08-02 18:08:00
110419    34610    665    2017-08-02 16:04:00    2017-08-02 16:04:00
110420    34611    780    2017-08-02 03:59:00    2017-08-02 03:59:00
110421    34611    898    2017-08-02 15:34:00    2017-08-02 15:34:00
110422    34611    784    2017-08-02 13:46:00    2017-08-02 13:46:00
110423    34611    821    2017-08-02 15:59:00    2017-08-02 15:59:00
110424    34611    736    2017-08-02 09:56:00    2017-08-02 09:56:00
110425    34612    954    2017-08-02 04:20:00    2017-08-02 04:20:00
110426    34612    927    2017-08-02 14:20:00    2017-08-02 14:20:00
110427    34612    493    2017-08-02 23:18:00    2017-08-02 23:18:00
110428    34612    888    2017-08-02 06:26:00    2017-08-02 06:26:00
110429    34612    902    2017-08-02 13:19:00    2017-08-02 13:19:00
110430    34613    809    2017-08-02 23:24:00    2017-08-02 23:24:00
110431    34613    936    2017-08-02 02:07:00    2017-08-02 02:07:00
110432    34613    826    2017-08-02 22:50:00    2017-08-02 22:50:00
110433    34613    603    2017-08-02 10:19:00    2017-08-02 10:19:00
110434    34613    718    2017-08-02 13:12:00    2017-08-02 13:12:00
110435    34614    790    2017-08-02 08:04:00    2017-08-02 08:04:00
110436    34614    685    2017-08-02 02:23:00    2017-08-02 02:23:00
110437    34614    803    2017-08-02 13:11:00    2017-08-02 13:11:00
110438    34614    788    2017-08-02 02:23:00    2017-08-02 02:23:00
110439    34614    726    2017-08-02 06:21:00    2017-08-02 06:21:00
110440    34615    757    2017-08-03 14:26:00    2017-08-03 14:26:00
110441    34615    597    2017-08-03 01:11:00    2017-08-03 01:11:00
110442    34615    748    2017-08-03 10:56:00    2017-08-03 10:56:00
110443    34615    710    2017-08-03 23:59:00    2017-08-03 23:59:00
110444    34615    653    2017-08-03 17:29:00    2017-08-03 17:29:00
110445    34616    584    2017-08-03 11:01:00    2017-08-03 11:01:00
110446    34616    956    2017-08-03 23:52:00    2017-08-03 23:52:00
110447    34616    869    2017-08-03 01:40:00    2017-08-03 01:40:00
110448    34616    817    2017-08-03 18:19:00    2017-08-03 18:19:00
110449    34616    654    2017-08-03 18:48:00    2017-08-03 18:48:00
110450    34617    946    2017-08-03 04:00:00    2017-08-03 04:00:00
110451    34617    824    2017-08-03 18:24:00    2017-08-03 18:24:00
110452    34617    792    2017-08-03 11:31:00    2017-08-03 11:31:00
110453    34617    554    2017-08-03 14:57:00    2017-08-03 14:57:00
110454    34617    865    2017-08-03 09:06:00    2017-08-03 09:06:00
110455    34618    610    2017-08-03 12:24:00    2017-08-03 12:24:00
110456    34618    505    2017-08-03 17:50:00    2017-08-03 17:50:00
110457    34618    587    2017-08-03 10:10:00    2017-08-03 10:10:00
110458    34618    524    2017-08-03 23:12:00    2017-08-03 23:12:00
110459    34618    513    2017-08-03 22:43:00    2017-08-03 22:43:00
110460    34619    605    2017-08-03 23:22:00    2017-08-03 23:22:00
110461    34619    644    2017-08-03 19:12:00    2017-08-03 19:12:00
110462    34619    709    2017-08-03 03:50:00    2017-08-03 03:50:00
110463    34619    474    2017-08-03 01:37:00    2017-08-03 01:37:00
110464    34619    616    2017-08-03 01:32:00    2017-08-03 01:32:00
110465    34620    607    2017-08-03 11:28:00    2017-08-03 11:28:00
110466    34620    649    2017-08-03 09:06:00    2017-08-03 09:06:00
110467    34620    660    2017-08-03 14:26:00    2017-08-03 14:26:00
110468    34620    653    2017-08-03 22:43:00    2017-08-03 22:43:00
110469    34620    536    2017-08-03 10:34:00    2017-08-03 10:34:00
110470    34621    484    2017-08-04 14:28:00    2017-08-04 14:28:00
110471    34621    888    2017-08-04 01:26:00    2017-08-04 01:26:00
110472    34621    952    2017-08-04 10:58:00    2017-08-04 10:58:00
110473    34621    804    2017-08-04 07:35:00    2017-08-04 07:35:00
110474    34621    564    2017-08-04 09:32:00    2017-08-04 09:32:00
110475    34622    867    2017-08-04 12:53:00    2017-08-04 12:53:00
110476    34622    853    2017-08-04 06:34:00    2017-08-04 06:34:00
110477    34622    736    2017-08-04 09:14:00    2017-08-04 09:14:00
110478    34622    657    2017-08-04 08:31:00    2017-08-04 08:31:00
110479    34622    511    2017-08-04 22:07:00    2017-08-04 22:07:00
110480    34623    515    2017-08-04 23:49:00    2017-08-04 23:49:00
110481    34623    682    2017-08-04 08:24:00    2017-08-04 08:24:00
110482    34623    471    2017-08-04 09:09:00    2017-08-04 09:09:00
110483    34623    743    2017-08-04 16:20:00    2017-08-04 16:20:00
110484    34623    790    2017-08-04 18:02:00    2017-08-04 18:02:00
110485    34624    916    2017-08-04 08:13:00    2017-08-04 08:13:00
110486    34624    935    2017-08-04 20:34:00    2017-08-04 20:34:00
110487    34624    939    2017-08-04 08:21:00    2017-08-04 08:21:00
110488    34624    792    2017-08-04 16:52:00    2017-08-04 16:52:00
110489    34624    944    2017-08-04 01:32:00    2017-08-04 01:32:00
110490    34625    631    2017-08-04 04:48:00    2017-08-04 04:48:00
110491    34625    889    2017-08-04 15:42:00    2017-08-04 15:42:00
110492    34625    872    2017-08-04 09:48:00    2017-08-04 09:48:00
110493    34625    682    2017-08-04 15:09:00    2017-08-04 15:09:00
110494    34625    953    2017-08-04 20:58:00    2017-08-04 20:58:00
110495    34626    700    2017-08-04 03:53:00    2017-08-04 03:53:00
110496    34626    611    2017-08-04 20:18:00    2017-08-04 20:18:00
110497    34626    925    2017-08-04 15:16:00    2017-08-04 15:16:00
110498    34626    497    2017-08-04 07:19:00    2017-08-04 07:19:00
110499    34626    762    2017-08-04 18:29:00    2017-08-04 18:29:00
110500    34627    599    2017-08-04 11:31:00    2017-08-04 11:31:00
110501    34627    775    2017-08-04 03:03:00    2017-08-04 03:03:00
110502    34627    843    2017-08-04 22:44:00    2017-08-04 22:44:00
110503    34627    730    2017-08-04 18:15:00    2017-08-04 18:15:00
110504    34627    590    2017-08-04 13:05:00    2017-08-04 13:05:00
110505    34628    830    2017-08-04 13:52:00    2017-08-04 13:52:00
110506    34628    605    2017-08-04 09:43:00    2017-08-04 09:43:00
110507    34628    702    2017-08-04 01:20:00    2017-08-04 01:20:00
110508    34628    901    2017-08-04 20:43:00    2017-08-04 20:43:00
110509    34628    812    2017-08-04 23:38:00    2017-08-04 23:38:00
110510    34629    735    2017-08-04 22:15:00    2017-08-04 22:15:00
110511    34629    918    2017-08-04 20:49:00    2017-08-04 20:49:00
110512    34629    743    2017-08-04 20:50:00    2017-08-04 20:50:00
110513    34629    741    2017-08-04 20:14:00    2017-08-04 20:14:00
110514    34629    625    2017-08-04 03:18:00    2017-08-04 03:18:00
110515    34630    942    2017-08-04 14:27:00    2017-08-04 14:27:00
110516    34630    782    2017-08-04 12:48:00    2017-08-04 12:48:00
110517    34630    468    2017-08-04 17:00:00    2017-08-04 17:00:00
110518    34630    753    2017-08-04 23:58:00    2017-08-04 23:58:00
110519    34630    466    2017-08-04 19:19:00    2017-08-04 19:19:00
110520    34631    641    2017-08-04 04:41:00    2017-08-04 04:41:00
110521    34631    783    2017-08-04 06:24:00    2017-08-04 06:24:00
110522    34631    730    2017-08-04 16:23:00    2017-08-04 16:23:00
110523    34631    921    2017-08-04 12:08:00    2017-08-04 12:08:00
110524    34631    551    2017-08-04 23:09:00    2017-08-04 23:09:00
110525    34632    944    2017-08-04 15:13:00    2017-08-04 15:13:00
110526    34632    932    2017-08-04 18:20:00    2017-08-04 18:20:00
110527    34632    738    2017-08-04 21:04:00    2017-08-04 21:04:00
110528    34632    762    2017-08-04 11:42:00    2017-08-04 11:42:00
110529    34632    957    2017-08-04 10:51:00    2017-08-04 10:51:00
110530    34633    957    2017-08-04 06:55:00    2017-08-04 06:55:00
110531    34633    878    2017-08-04 18:27:00    2017-08-04 18:27:00
110532    34633    917    2017-08-04 07:41:00    2017-08-04 07:41:00
110533    34633    901    2017-08-04 03:26:00    2017-08-04 03:26:00
110534    34633    859    2017-08-04 15:48:00    2017-08-04 15:48:00
110535    34634    883    2017-08-04 23:53:00    2017-08-04 23:53:00
110536    34634    718    2017-08-04 22:23:00    2017-08-04 22:23:00
110537    34634    944    2017-08-04 03:22:00    2017-08-04 03:22:00
110538    34634    569    2017-08-04 03:19:00    2017-08-04 03:19:00
110539    34634    941    2017-08-04 17:35:00    2017-08-04 17:35:00
110540    34635    521    2017-08-04 21:12:00    2017-08-04 21:12:00
110541    34635    804    2017-08-04 05:18:00    2017-08-04 05:18:00
110542    34635    880    2017-08-04 13:07:00    2017-08-04 13:07:00
110543    34635    730    2017-08-04 09:08:00    2017-08-04 09:08:00
110544    34635    900    2017-08-04 07:10:00    2017-08-04 07:10:00
110545    34636    722    2017-08-04 11:39:00    2017-08-04 11:39:00
110546    34636    632    2017-08-04 14:35:00    2017-08-04 14:35:00
110547    34636    684    2017-08-04 05:11:00    2017-08-04 05:11:00
110548    34636    678    2017-08-04 15:46:00    2017-08-04 15:46:00
110549    34636    900    2017-08-04 23:33:00    2017-08-04 23:33:00
110550    34637    956    2017-08-04 20:15:00    2017-08-04 20:15:00
110551    34637    937    2017-08-04 14:18:00    2017-08-04 14:18:00
110552    34637    692    2017-08-04 12:22:00    2017-08-04 12:22:00
110553    34637    936    2017-08-04 19:35:00    2017-08-04 19:35:00
110554    34637    599    2017-08-04 06:31:00    2017-08-04 06:31:00
110555    34638    526    2017-08-04 05:00:00    2017-08-04 05:00:00
110556    34638    605    2017-08-04 11:42:00    2017-08-04 11:42:00
110557    34638    830    2017-08-04 21:03:00    2017-08-04 21:03:00
110558    34638    463    2017-08-04 06:23:00    2017-08-04 06:23:00
110559    34638    555    2017-08-04 20:30:00    2017-08-04 20:30:00
110560    34639    552    2017-08-04 10:14:00    2017-08-04 10:14:00
110561    34639    764    2017-08-04 07:24:00    2017-08-04 07:24:00
110562    34639    807    2017-08-04 03:36:00    2017-08-04 03:36:00
110563    34639    560    2017-08-04 23:10:00    2017-08-04 23:10:00
110564    34639    724    2017-08-04 18:36:00    2017-08-04 18:36:00
110565    34640    717    2017-08-04 10:48:00    2017-08-04 10:48:00
110566    34640    487    2017-08-04 03:32:00    2017-08-04 03:32:00
110567    34640    523    2017-08-04 12:36:00    2017-08-04 12:36:00
110568    34640    785    2017-08-04 16:40:00    2017-08-04 16:40:00
110569    34640    812    2017-08-04 12:24:00    2017-08-04 12:24:00
110570    34641    861    2017-08-04 17:05:00    2017-08-04 17:05:00
110571    34641    681    2017-08-04 18:24:00    2017-08-04 18:24:00
110572    34641    922    2017-08-04 21:56:00    2017-08-04 21:56:00
110573    34641    660    2017-08-04 06:31:00    2017-08-04 06:31:00
110574    34641    675    2017-08-04 14:59:00    2017-08-04 14:59:00
110575    34642    837    2017-08-04 16:28:00    2017-08-04 16:28:00
110576    34642    494    2017-08-04 03:44:00    2017-08-04 03:44:00
110577    34642    692    2017-08-04 06:40:00    2017-08-04 06:40:00
110578    34642    589    2017-08-04 02:58:00    2017-08-04 02:58:00
110579    34642    859    2017-08-04 04:13:00    2017-08-04 04:13:00
110580    34643    855    2017-08-04 15:22:00    2017-08-04 15:22:00
110581    34643    809    2017-08-04 18:12:00    2017-08-04 18:12:00
110582    34643    629    2017-08-04 22:00:00    2017-08-04 22:00:00
110583    34643    482    2017-08-04 04:32:00    2017-08-04 04:32:00
110584    34643    733    2017-08-04 14:43:00    2017-08-04 14:43:00
110585    34644    508    2017-08-04 04:43:00    2017-08-04 04:43:00
110586    34644    681    2017-08-04 20:41:00    2017-08-04 20:41:00
110587    34644    902    2017-08-04 22:53:00    2017-08-04 22:53:00
110588    34644    915    2017-08-04 03:38:00    2017-08-04 03:38:00
110589    34644    800    2017-08-04 23:19:00    2017-08-04 23:19:00
110590    34645    697    2017-08-04 20:20:00    2017-08-04 20:20:00
110591    34645    684    2017-08-04 17:10:00    2017-08-04 17:10:00
110592    34645    950    2017-08-04 20:06:00    2017-08-04 20:06:00
110593    34645    785    2017-08-04 16:03:00    2017-08-04 16:03:00
110594    34645    492    2017-08-04 18:47:00    2017-08-04 18:47:00
110595    34646    516    2017-08-04 23:14:00    2017-08-04 23:14:00
110596    34646    681    2017-08-04 15:45:00    2017-08-04 15:45:00
110597    34646    673    2017-08-04 19:11:00    2017-08-04 19:11:00
110598    34646    817    2017-08-04 02:46:00    2017-08-04 02:46:00
110599    34646    930    2017-08-04 22:09:00    2017-08-04 22:09:00
110600    34647    797    2017-08-04 01:57:00    2017-08-04 01:57:00
110601    34647    469    2017-08-04 22:05:00    2017-08-04 22:05:00
110602    34647    959    2017-08-04 20:58:00    2017-08-04 20:58:00
110603    34647    809    2017-08-04 16:11:00    2017-08-04 16:11:00
110604    34647    517    2017-08-04 12:00:00    2017-08-04 12:00:00
110605    34648    877    2017-08-04 04:56:00    2017-08-04 04:56:00
110606    34648    799    2017-08-04 05:18:00    2017-08-04 05:18:00
110607    34648    510    2017-08-04 09:23:00    2017-08-04 09:23:00
110608    34648    877    2017-08-04 06:46:00    2017-08-04 06:46:00
110609    34648    637    2017-08-04 01:49:00    2017-08-04 01:49:00
110610    34649    644    2017-08-04 16:26:00    2017-08-04 16:26:00
110611    34649    557    2017-08-04 05:25:00    2017-08-04 05:25:00
110612    34649    866    2017-08-04 08:30:00    2017-08-04 08:30:00
110613    34649    523    2017-08-04 06:00:00    2017-08-04 06:00:00
110614    34649    786    2017-08-04 16:52:00    2017-08-04 16:52:00
110615    34650    872    2017-08-04 17:40:00    2017-08-04 17:40:00
110616    34650    722    2017-08-04 21:35:00    2017-08-04 21:35:00
110617    34650    833    2017-08-04 09:37:00    2017-08-04 09:37:00
110618    34650    566    2017-08-04 20:58:00    2017-08-04 20:58:00
110619    34650    899    2017-08-04 23:55:00    2017-08-04 23:55:00
110620    34651    520    2017-08-04 19:31:00    2017-08-04 19:31:00
110621    34651    773    2017-08-04 21:54:00    2017-08-04 21:54:00
110622    34651    848    2017-08-04 18:18:00    2017-08-04 18:18:00
110623    34651    771    2017-08-04 02:15:00    2017-08-04 02:15:00
110624    34651    542    2017-08-04 07:56:00    2017-08-04 07:56:00
110625    34652    707    2017-08-04 20:07:00    2017-08-04 20:07:00
110626    34652    881    2017-08-04 08:29:00    2017-08-04 08:29:00
110627    34652    824    2017-08-04 08:40:00    2017-08-04 08:40:00
110628    34652    511    2017-08-04 14:02:00    2017-08-04 14:02:00
110629    34652    868    2017-08-04 12:31:00    2017-08-04 12:31:00
110630    34653    634    2017-08-04 15:34:00    2017-08-04 15:34:00
110631    34653    656    2017-08-04 04:31:00    2017-08-04 04:31:00
110632    34653    927    2017-08-04 04:54:00    2017-08-04 04:54:00
110633    34653    737    2017-08-04 10:09:00    2017-08-04 10:09:00
110634    34653    796    2017-08-04 14:57:00    2017-08-04 14:57:00
110635    34654    574    2017-08-04 08:42:00    2017-08-04 08:42:00
110636    34654    602    2017-08-04 22:54:00    2017-08-04 22:54:00
110637    34654    646    2017-08-04 07:24:00    2017-08-04 07:24:00
110638    34654    804    2017-08-04 08:26:00    2017-08-04 08:26:00
110639    34654    764    2017-08-04 11:09:00    2017-08-04 11:09:00
110640    34655    800    2017-08-04 19:52:00    2017-08-04 19:52:00
110641    34655    557    2017-08-04 17:01:00    2017-08-04 17:01:00
110642    34655    513    2017-08-04 14:04:00    2017-08-04 14:04:00
110643    34655    676    2017-08-04 06:54:00    2017-08-04 06:54:00
110644    34655    498    2017-08-04 22:47:00    2017-08-04 22:47:00
110645    34656    702    2017-08-04 22:32:00    2017-08-04 22:32:00
110646    34656    953    2017-08-04 13:03:00    2017-08-04 13:03:00
110647    34656    572    2017-08-04 16:41:00    2017-08-04 16:41:00
110648    34656    725    2017-08-04 23:05:00    2017-08-04 23:05:00
110649    34656    848    2017-08-04 14:30:00    2017-08-04 14:30:00
110650    34657    738    2017-08-04 04:43:00    2017-08-04 04:43:00
110651    34657    909    2017-08-04 10:13:00    2017-08-04 10:13:00
110652    34657    775    2017-08-04 22:04:00    2017-08-04 22:04:00
110653    34657    886    2017-08-04 01:24:00    2017-08-04 01:24:00
110654    34657    731    2017-08-04 09:45:00    2017-08-04 09:45:00
110655    34658    764    2017-08-04 07:09:00    2017-08-04 07:09:00
110656    34658    645    2017-08-04 02:15:00    2017-08-04 02:15:00
110657    34658    871    2017-08-04 16:40:00    2017-08-04 16:40:00
110658    34658    668    2017-08-04 04:37:00    2017-08-04 04:37:00
110659    34658    773    2017-08-04 06:30:00    2017-08-04 06:30:00
110660    34659    897    2017-08-04 13:51:00    2017-08-04 13:51:00
110661    34659    774    2017-08-04 05:26:00    2017-08-04 05:26:00
110662    34659    613    2017-08-04 23:26:00    2017-08-04 23:26:00
110663    34659    696    2017-08-04 21:52:00    2017-08-04 21:52:00
110664    34659    743    2017-08-04 02:46:00    2017-08-04 02:46:00
110665    34660    695    2017-08-04 06:52:00    2017-08-04 06:52:00
110666    34660    708    2017-08-04 12:17:00    2017-08-04 12:17:00
110667    34660    557    2017-08-04 05:39:00    2017-08-04 05:39:00
110668    34660    690    2017-08-04 23:32:00    2017-08-04 23:32:00
110669    34660    722    2017-08-04 17:56:00    2017-08-04 17:56:00
110670    34661    538    2017-08-04 20:38:00    2017-08-04 20:38:00
110671    34661    467    2017-08-04 08:49:00    2017-08-04 08:49:00
110672    34661    531    2017-08-04 15:41:00    2017-08-04 15:41:00
110673    34661    713    2017-08-04 22:57:00    2017-08-04 22:57:00
110674    34661    589    2017-08-04 09:17:00    2017-08-04 09:17:00
110675    34662    536    2017-08-04 20:32:00    2017-08-04 20:32:00
110676    34662    767    2017-08-04 04:06:00    2017-08-04 04:06:00
110677    34662    560    2017-08-04 02:40:00    2017-08-04 02:40:00
110678    34662    851    2017-08-04 07:45:00    2017-08-04 07:45:00
110679    34662    596    2017-08-04 15:31:00    2017-08-04 15:31:00
110680    34663    495    2017-08-04 13:45:00    2017-08-04 13:45:00
110681    34663    648    2017-08-04 01:31:00    2017-08-04 01:31:00
110682    34663    521    2017-08-04 12:21:00    2017-08-04 12:21:00
110683    34663    686    2017-08-04 16:47:00    2017-08-04 16:47:00
110684    34663    686    2017-08-04 07:09:00    2017-08-04 07:09:00
110685    34664    511    2017-08-04 01:56:00    2017-08-04 01:56:00
110686    34664    947    2017-08-04 02:09:00    2017-08-04 02:09:00
110687    34664    637    2017-08-04 12:47:00    2017-08-04 12:47:00
110688    34664    631    2017-08-04 05:55:00    2017-08-04 05:55:00
110689    34664    741    2017-08-04 18:56:00    2017-08-04 18:56:00
110690    34665    468    2017-08-04 18:00:00    2017-08-04 18:00:00
110691    34665    608    2017-08-04 14:53:00    2017-08-04 14:53:00
110692    34665    596    2017-08-04 04:54:00    2017-08-04 04:54:00
110693    34665    747    2017-08-04 07:06:00    2017-08-04 07:06:00
110694    34665    829    2017-08-04 02:08:00    2017-08-04 02:08:00
110695    34666    613    2017-08-04 20:57:00    2017-08-04 20:57:00
110696    34666    523    2017-08-04 06:47:00    2017-08-04 06:47:00
110697    34666    606    2017-08-04 11:54:00    2017-08-04 11:54:00
110698    34666    954    2017-08-04 09:02:00    2017-08-04 09:02:00
110699    34666    695    2017-08-04 02:35:00    2017-08-04 02:35:00
110700    34667    829    2017-08-04 03:15:00    2017-08-04 03:15:00
110701    34667    613    2017-08-04 20:50:00    2017-08-04 20:50:00
110702    34667    848    2017-08-04 06:08:00    2017-08-04 06:08:00
110703    34667    824    2017-08-04 19:01:00    2017-08-04 19:01:00
110704    34667    673    2017-08-04 19:08:00    2017-08-04 19:08:00
110705    34668    905    2017-08-04 04:55:00    2017-08-04 04:55:00
110706    34668    500    2017-08-04 04:34:00    2017-08-04 04:34:00
110707    34668    632    2017-08-04 03:24:00    2017-08-04 03:24:00
110708    34668    641    2017-08-04 13:42:00    2017-08-04 13:42:00
110709    34668    576    2017-08-04 10:37:00    2017-08-04 10:37:00
110710    34669    940    2017-08-04 09:37:00    2017-08-04 09:37:00
110711    34669    687    2017-08-04 18:21:00    2017-08-04 18:21:00
110712    34669    652    2017-08-04 18:00:00    2017-08-04 18:00:00
110713    34669    897    2017-08-04 10:00:00    2017-08-04 10:00:00
110714    34669    615    2017-08-04 08:40:00    2017-08-04 08:40:00
110715    34670    872    2017-08-04 17:09:00    2017-08-04 17:09:00
110716    34670    474    2017-08-04 23:25:00    2017-08-04 23:25:00
110717    34670    718    2017-08-04 05:14:00    2017-08-04 05:14:00
110718    34670    824    2017-08-04 17:07:00    2017-08-04 17:07:00
110719    34670    500    2017-08-04 01:23:00    2017-08-04 01:23:00
110720    34671    645    2017-08-04 19:52:00    2017-08-04 19:52:00
110721    34671    961    2017-08-04 03:10:00    2017-08-04 03:10:00
110722    34671    660    2017-08-04 10:29:00    2017-08-04 10:29:00
110723    34671    863    2017-08-04 14:27:00    2017-08-04 14:27:00
110724    34671    648    2017-08-04 08:18:00    2017-08-04 08:18:00
110725    34672    681    2017-08-04 22:50:00    2017-08-04 22:50:00
110726    34672    630    2017-08-04 03:13:00    2017-08-04 03:13:00
110727    34672    914    2017-08-04 12:29:00    2017-08-04 12:29:00
110728    34672    598    2017-08-04 01:10:00    2017-08-04 01:10:00
110729    34672    742    2017-08-04 20:12:00    2017-08-04 20:12:00
110730    34673    584    2017-08-04 07:13:00    2017-08-04 07:13:00
110731    34673    588    2017-08-04 19:36:00    2017-08-04 19:36:00
110732    34673    718    2017-08-04 10:50:00    2017-08-04 10:50:00
110733    34673    544    2017-08-04 07:18:00    2017-08-04 07:18:00
110734    34673    718    2017-08-04 15:32:00    2017-08-04 15:32:00
110735    34674    656    2017-08-04 19:06:00    2017-08-04 19:06:00
110736    34674    664    2017-08-04 23:02:00    2017-08-04 23:02:00
110737    34674    504    2017-08-04 19:53:00    2017-08-04 19:53:00
110738    34674    770    2017-08-04 22:48:00    2017-08-04 22:48:00
110739    34674    696    2017-08-04 15:00:00    2017-08-04 15:00:00
110740    34675    588    2017-08-04 21:21:00    2017-08-04 21:21:00
110741    34675    480    2017-08-04 23:27:00    2017-08-04 23:27:00
110742    34675    507    2017-08-04 11:37:00    2017-08-04 11:37:00
110743    34675    473    2017-08-04 19:23:00    2017-08-04 19:23:00
110744    34675    791    2017-08-04 09:40:00    2017-08-04 09:40:00
110745    34676    766    2017-08-04 21:52:00    2017-08-04 21:52:00
110746    34676    730    2017-08-04 18:20:00    2017-08-04 18:20:00
110747    34676    504    2017-08-04 05:35:00    2017-08-04 05:35:00
110748    34676    649    2017-08-04 09:17:00    2017-08-04 09:17:00
110749    34676    479    2017-08-04 17:03:00    2017-08-04 17:03:00
110750    34677    527    2017-08-04 23:29:00    2017-08-04 23:29:00
110751    34677    667    2017-08-04 20:15:00    2017-08-04 20:15:00
110752    34677    469    2017-08-04 21:34:00    2017-08-04 21:34:00
110753    34677    747    2017-08-04 16:59:00    2017-08-04 16:59:00
110754    34677    563    2017-08-04 22:42:00    2017-08-04 22:42:00
110755    34678    760    2017-08-04 12:57:00    2017-08-04 12:57:00
110756    34678    574    2017-08-04 08:07:00    2017-08-04 08:07:00
110757    34678    815    2017-08-04 18:26:00    2017-08-04 18:26:00
110758    34678    673    2017-08-04 17:46:00    2017-08-04 17:46:00
110759    34678    484    2017-08-04 20:43:00    2017-08-04 20:43:00
110760    34679    873    2017-08-04 15:30:00    2017-08-04 15:30:00
110761    34679    752    2017-08-04 14:00:00    2017-08-04 14:00:00
110762    34679    800    2017-08-04 19:00:00    2017-08-04 19:00:00
110763    34679    733    2017-08-04 02:13:00    2017-08-04 02:13:00
110764    34679    933    2017-08-04 18:03:00    2017-08-04 18:03:00
110765    34680    793    2017-08-04 17:52:00    2017-08-04 17:52:00
110766    34680    556    2017-08-04 10:42:00    2017-08-04 10:42:00
110767    34680    914    2017-08-04 05:27:00    2017-08-04 05:27:00
110768    34680    945    2017-08-04 16:56:00    2017-08-04 16:56:00
110769    34680    541    2017-08-04 08:21:00    2017-08-04 08:21:00
110770    34681    516    2017-08-04 11:56:00    2017-08-04 11:56:00
110771    34681    622    2017-08-04 05:53:00    2017-08-04 05:53:00
110772    34681    672    2017-08-04 21:26:00    2017-08-04 21:26:00
110773    34681    564    2017-08-04 14:31:00    2017-08-04 14:31:00
110774    34681    479    2017-08-04 23:59:00    2017-08-04 23:59:00
110775    34682    625    2017-08-04 03:41:00    2017-08-04 03:41:00
110776    34682    770    2017-08-04 08:30:00    2017-08-04 08:30:00
110777    34682    593    2017-08-04 03:11:00    2017-08-04 03:11:00
110778    34682    915    2017-08-04 17:21:00    2017-08-04 17:21:00
110779    34682    566    2017-08-04 18:38:00    2017-08-04 18:38:00
110780    34683    780    2017-08-04 23:51:00    2017-08-04 23:51:00
110781    34683    617    2017-08-04 18:38:00    2017-08-04 18:38:00
110782    34683    633    2017-08-04 14:36:00    2017-08-04 14:36:00
110783    34683    801    2017-08-04 07:42:00    2017-08-04 07:42:00
110784    34683    641    2017-08-04 03:27:00    2017-08-04 03:27:00
110785    34684    726    2017-08-04 23:40:00    2017-08-04 23:40:00
110786    34684    958    2017-08-04 13:28:00    2017-08-04 13:28:00
110787    34684    881    2017-08-04 04:39:00    2017-08-04 04:39:00
110788    34684    676    2017-08-04 13:13:00    2017-08-04 13:13:00
110789    34684    479    2017-08-04 15:15:00    2017-08-04 15:15:00
110790    34685    517    2017-08-04 10:16:00    2017-08-04 10:16:00
110791    34685    606    2017-08-04 08:09:00    2017-08-04 08:09:00
110792    34685    776    2017-08-04 04:00:00    2017-08-04 04:00:00
110793    34685    933    2017-08-04 02:30:00    2017-08-04 02:30:00
110794    34685    765    2017-08-04 10:08:00    2017-08-04 10:08:00
110795    34686    877    2017-08-04 17:29:00    2017-08-04 17:29:00
110796    34686    795    2017-08-04 01:49:00    2017-08-04 01:49:00
110797    34686    574    2017-08-04 04:37:00    2017-08-04 04:37:00
110798    34686    817    2017-08-04 06:11:00    2017-08-04 06:11:00
110799    34686    575    2017-08-04 05:53:00    2017-08-04 05:53:00
110800    34687    798    2017-08-04 11:58:00    2017-08-04 11:58:00
110801    34687    539    2017-08-04 16:27:00    2017-08-04 16:27:00
110802    34687    830    2017-08-04 12:13:00    2017-08-04 12:13:00
110803    34687    700    2017-08-04 04:21:00    2017-08-04 04:21:00
110804    34687    695    2017-08-04 06:29:00    2017-08-04 06:29:00
110805    34688    686    2017-08-04 20:06:00    2017-08-04 20:06:00
110806    34688    908    2017-08-04 09:40:00    2017-08-04 09:40:00
110807    34688    725    2017-08-04 02:20:00    2017-08-04 02:20:00
110808    34688    784    2017-08-04 21:26:00    2017-08-04 21:26:00
110809    34688    523    2017-08-04 06:32:00    2017-08-04 06:32:00
110810    34689    807    2017-08-04 07:52:00    2017-08-04 07:52:00
110811    34689    841    2017-08-04 07:59:00    2017-08-04 07:59:00
110812    34689    502    2017-08-04 15:50:00    2017-08-04 15:50:00
110813    34689    826    2017-08-04 09:47:00    2017-08-04 09:47:00
110814    34689    580    2017-08-04 12:10:00    2017-08-04 12:10:00
110815    34690    622    2017-08-04 13:56:00    2017-08-04 13:56:00
110816    34690    490    2017-08-04 15:00:00    2017-08-04 15:00:00
110817    34690    819    2017-08-04 04:41:00    2017-08-04 04:41:00
110818    34690    764    2017-08-04 02:08:00    2017-08-04 02:08:00
110819    34690    945    2017-08-04 21:46:00    2017-08-04 21:46:00
110820    34691    948    2017-08-04 12:04:00    2017-08-04 12:04:00
110821    34691    637    2017-08-04 05:25:00    2017-08-04 05:25:00
110822    34691    598    2017-08-04 19:24:00    2017-08-04 19:24:00
110823    34691    478    2017-08-04 06:34:00    2017-08-04 06:34:00
110824    34691    775    2017-08-04 08:08:00    2017-08-04 08:08:00
110825    34692    781    2017-08-04 05:48:00    2017-08-04 05:48:00
110826    34692    948    2017-08-04 16:05:00    2017-08-04 16:05:00
110827    34692    956    2017-08-04 12:37:00    2017-08-04 12:37:00
110828    34692    647    2017-08-04 15:07:00    2017-08-04 15:07:00
110829    34692    813    2017-08-04 01:11:00    2017-08-04 01:11:00
110830    34693    507    2017-08-04 09:00:00    2017-08-04 09:00:00
110831    34693    961    2017-08-04 19:49:00    2017-08-04 19:49:00
110832    34693    936    2017-08-04 01:31:00    2017-08-04 01:31:00
110833    34693    502    2017-08-04 19:41:00    2017-08-04 19:41:00
110834    34693    812    2017-08-04 23:20:00    2017-08-04 23:20:00
110835    34694    822    2017-08-04 11:30:00    2017-08-04 11:30:00
110836    34694    800    2017-08-04 18:11:00    2017-08-04 18:11:00
110837    34694    528    2017-08-04 09:14:00    2017-08-04 09:14:00
110838    34694    916    2017-08-04 04:11:00    2017-08-04 04:11:00
110839    34694    708    2017-08-04 10:02:00    2017-08-04 10:02:00
110840    34695    668    2017-08-04 06:45:00    2017-08-04 06:45:00
110841    34695    574    2017-08-04 08:26:00    2017-08-04 08:26:00
110842    34695    956    2017-08-04 09:17:00    2017-08-04 09:17:00
110843    34695    596    2017-08-04 20:42:00    2017-08-04 20:42:00
110844    34695    543    2017-08-04 18:07:00    2017-08-04 18:07:00
110845    34696    471    2017-08-04 10:50:00    2017-08-04 10:50:00
110846    34696    618    2017-08-04 23:40:00    2017-08-04 23:40:00
110847    34696    481    2017-08-04 07:39:00    2017-08-04 07:39:00
110848    34696    703    2017-08-04 23:43:00    2017-08-04 23:43:00
110849    34696    792    2017-08-04 17:13:00    2017-08-04 17:13:00
110850    34697    564    2017-08-04 07:43:00    2017-08-04 07:43:00
110851    34697    589    2017-08-04 23:27:00    2017-08-04 23:27:00
110852    34697    686    2017-08-04 05:39:00    2017-08-04 05:39:00
110853    34697    537    2017-08-04 19:49:00    2017-08-04 19:49:00
110854    34697    931    2017-08-04 21:07:00    2017-08-04 21:07:00
110855    34698    775    2017-08-04 11:27:00    2017-08-04 11:27:00
110856    34698    770    2017-08-04 20:02:00    2017-08-04 20:02:00
110857    34698    858    2017-08-04 03:12:00    2017-08-04 03:12:00
110858    34698    656    2017-08-04 15:00:00    2017-08-04 15:00:00
110859    34698    618    2017-08-04 08:21:00    2017-08-04 08:21:00
110860    34699    682    2017-08-04 02:20:00    2017-08-04 02:20:00
110861    34699    709    2017-08-04 02:23:00    2017-08-04 02:23:00
110862    34699    650    2017-08-04 15:06:00    2017-08-04 15:06:00
110863    34699    945    2017-08-04 10:39:00    2017-08-04 10:39:00
110864    34699    609    2017-08-04 14:09:00    2017-08-04 14:09:00
110865    34700    862    2017-08-04 19:21:00    2017-08-04 19:21:00
110866    34700    617    2017-08-04 22:16:00    2017-08-04 22:16:00
110867    34700    920    2017-08-04 22:04:00    2017-08-04 22:04:00
110868    34700    693    2017-08-04 19:17:00    2017-08-04 19:17:00
110869    34700    521    2017-08-04 20:02:00    2017-08-04 20:02:00
110870    34701    485    2017-08-04 12:34:00    2017-08-04 12:34:00
110871    34701    571    2017-08-04 20:42:00    2017-08-04 20:42:00
110872    34701    507    2017-08-04 11:42:00    2017-08-04 11:42:00
110873    34701    557    2017-08-04 06:42:00    2017-08-04 06:42:00
110874    34701    671    2017-08-04 20:13:00    2017-08-04 20:13:00
110875    34702    720    2017-08-04 12:12:00    2017-08-04 12:12:00
110876    34702    580    2017-08-04 13:37:00    2017-08-04 13:37:00
110877    34702    801    2017-08-04 19:34:00    2017-08-04 19:34:00
110878    34702    689    2017-08-04 13:00:00    2017-08-04 13:00:00
110879    34702    853    2017-08-04 23:00:00    2017-08-04 23:00:00
110880    34703    821    2017-08-04 19:36:00    2017-08-04 19:36:00
110881    34703    648    2017-08-04 09:41:00    2017-08-04 09:41:00
110882    34703    803    2017-08-04 09:37:00    2017-08-04 09:37:00
110883    34703    874    2017-08-04 07:12:00    2017-08-04 07:12:00
110884    34703    845    2017-08-04 01:35:00    2017-08-04 01:35:00
110885    34704    908    2017-08-04 16:25:00    2017-08-04 16:25:00
110886    34704    621    2017-08-04 09:57:00    2017-08-04 09:57:00
110887    34704    928    2017-08-04 16:09:00    2017-08-04 16:09:00
110888    34704    478    2017-08-04 04:11:00    2017-08-04 04:11:00
110889    34704    509    2017-08-04 12:32:00    2017-08-04 12:32:00
110890    34705    592    2017-08-04 11:22:00    2017-08-04 11:22:00
110891    34705    488    2017-08-04 13:34:00    2017-08-04 13:34:00
110892    34705    667    2017-08-04 06:58:00    2017-08-04 06:58:00
110893    34705    951    2017-08-04 03:06:00    2017-08-04 03:06:00
110894    34705    784    2017-08-04 09:59:00    2017-08-04 09:59:00
110895    34706    600    2017-08-04 21:38:00    2017-08-04 21:38:00
110896    34706    664    2017-08-04 07:44:00    2017-08-04 07:44:00
110897    34706    764    2017-08-04 12:00:00    2017-08-04 12:00:00
110898    34706    865    2017-08-04 10:45:00    2017-08-04 10:45:00
110899    34706    815    2017-08-04 03:33:00    2017-08-04 03:33:00
110900    34707    678    2017-08-04 15:21:00    2017-08-04 15:21:00
110901    34707    813    2017-08-04 14:00:00    2017-08-04 14:00:00
110902    34707    594    2017-08-04 12:49:00    2017-08-04 12:49:00
110903    34707    947    2017-08-04 10:20:00    2017-08-04 10:20:00
110904    34707    920    2017-08-04 18:13:00    2017-08-04 18:13:00
110905    34708    821    2017-08-04 14:38:00    2017-08-04 14:38:00
110906    34708    849    2017-08-04 17:04:00    2017-08-04 17:04:00
110907    34708    785    2017-08-04 05:36:00    2017-08-04 05:36:00
110908    34708    669    2017-08-04 02:14:00    2017-08-04 02:14:00
110909    34708    544    2017-08-04 09:31:00    2017-08-04 09:31:00
110910    34709    848    2017-08-04 22:36:00    2017-08-04 22:36:00
110911    34709    824    2017-08-04 01:36:00    2017-08-04 01:36:00
110912    34709    872    2017-08-04 15:03:00    2017-08-04 15:03:00
110913    34709    768    2017-08-04 22:31:00    2017-08-04 22:31:00
110914    34709    917    2017-08-04 06:37:00    2017-08-04 06:37:00
110915    34710    707    2017-08-04 15:10:00    2017-08-04 15:10:00
110916    34710    556    2017-08-04 19:57:00    2017-08-04 19:57:00
110917    34710    578    2017-08-04 13:55:00    2017-08-04 13:55:00
110918    34710    720    2017-08-04 01:52:00    2017-08-04 01:52:00
110919    34710    677    2017-08-04 18:18:00    2017-08-04 18:18:00
110920    34711    787    2017-08-04 03:29:00    2017-08-04 03:29:00
110921    34711    470    2017-08-04 13:24:00    2017-08-04 13:24:00
110922    34711    774    2017-08-04 22:28:00    2017-08-04 22:28:00
110923    34711    472    2017-08-04 10:28:00    2017-08-04 10:28:00
110924    34711    834    2017-08-04 21:33:00    2017-08-04 21:33:00
110925    34712    655    2017-08-04 08:02:00    2017-08-04 08:02:00
110926    34712    606    2017-08-04 04:55:00    2017-08-04 04:55:00
110927    34712    725    2017-08-04 01:37:00    2017-08-04 01:37:00
110928    34712    503    2017-08-04 06:20:00    2017-08-04 06:20:00
110929    34712    945    2017-08-04 11:28:00    2017-08-04 11:28:00
110930    34713    628    2017-08-04 08:24:00    2017-08-04 08:24:00
110931    34713    471    2017-08-04 09:26:00    2017-08-04 09:26:00
110932    34713    960    2017-08-04 19:05:00    2017-08-04 19:05:00
110933    34713    877    2017-08-04 10:06:00    2017-08-04 10:06:00
110934    34713    588    2017-08-04 03:47:00    2017-08-04 03:47:00
110935    34714    755    2017-08-04 11:56:00    2017-08-04 11:56:00
110936    34714    676    2017-08-04 14:51:00    2017-08-04 14:51:00
110937    34714    649    2017-08-04 03:45:00    2017-08-04 03:45:00
110938    34714    866    2017-08-04 14:41:00    2017-08-04 14:41:00
110939    34714    802    2017-08-04 18:30:00    2017-08-04 18:30:00
110940    34715    708    2017-08-04 08:56:00    2017-08-04 08:56:00
110941    34715    605    2017-08-04 09:24:00    2017-08-04 09:24:00
110942    34715    561    2017-08-04 18:57:00    2017-08-04 18:57:00
110943    34715    763    2017-08-04 05:51:00    2017-08-04 05:51:00
110944    34715    871    2017-08-04 14:23:00    2017-08-04 14:23:00
110945    34716    523    2017-08-05 13:03:00    2017-08-05 13:03:00
110946    34716    732    2017-08-05 12:53:00    2017-08-05 12:53:00
110947    34716    544    2017-08-05 08:03:00    2017-08-05 08:03:00
110948    34716    520    2017-08-05 11:09:00    2017-08-05 11:09:00
110949    34716    815    2017-08-05 05:42:00    2017-08-05 05:42:00
110950    34717    801    2017-08-05 08:40:00    2017-08-05 08:40:00
110951    34717    556    2017-08-05 05:52:00    2017-08-05 05:52:00
110952    34717    837    2017-08-05 01:02:00    2017-08-05 01:02:00
110953    34717    627    2017-08-05 17:50:00    2017-08-05 17:50:00
110954    34717    666    2017-08-05 21:55:00    2017-08-05 21:55:00
110955    34718    738    2017-08-05 14:01:00    2017-08-05 14:01:00
110956    34718    824    2017-08-05 21:39:00    2017-08-05 21:39:00
110957    34718    917    2017-08-05 03:02:00    2017-08-05 03:02:00
110958    34718    527    2017-08-05 06:19:00    2017-08-05 06:19:00
110959    34718    852    2017-08-05 13:27:00    2017-08-05 13:27:00
110960    34719    841    2017-08-05 10:40:00    2017-08-05 10:40:00
110961    34719    564    2017-08-05 16:10:00    2017-08-05 16:10:00
110962    34719    895    2017-08-05 17:52:00    2017-08-05 17:52:00
110963    34719    798    2017-08-05 01:29:00    2017-08-05 01:29:00
110964    34719    612    2017-08-05 07:32:00    2017-08-05 07:32:00
110965    34720    570    2017-08-05 22:16:00    2017-08-05 22:16:00
110966    34720    893    2017-08-05 09:19:00    2017-08-05 09:19:00
110967    34720    631    2017-08-05 07:52:00    2017-08-05 07:52:00
110968    34720    708    2017-08-05 17:45:00    2017-08-05 17:45:00
110969    34720    626    2017-08-05 03:46:00    2017-08-05 03:46:00
110970    34721    649    2017-08-05 04:08:00    2017-08-05 04:08:00
110971    34721    515    2017-08-05 06:10:00    2017-08-05 06:10:00
110972    34721    472    2017-08-05 11:32:00    2017-08-05 11:32:00
110973    34721    901    2017-08-05 18:02:00    2017-08-05 18:02:00
110974    34721    596    2017-08-05 12:43:00    2017-08-05 12:43:00
110975    34722    507    2017-08-05 15:09:00    2017-08-05 15:09:00
110976    34722    828    2017-08-05 12:32:00    2017-08-05 12:32:00
110977    34722    757    2017-08-05 08:06:00    2017-08-05 08:06:00
110978    34722    744    2017-08-05 08:47:00    2017-08-05 08:47:00
110979    34722    763    2017-08-05 03:32:00    2017-08-05 03:32:00
110980    34723    755    2017-08-05 03:16:00    2017-08-05 03:16:00
110981    34723    716    2017-08-05 10:03:00    2017-08-05 10:03:00
110982    34723    520    2017-08-05 11:24:00    2017-08-05 11:24:00
110983    34723    788    2017-08-05 09:09:00    2017-08-05 09:09:00
110984    34723    805    2017-08-05 16:45:00    2017-08-05 16:45:00
110985    34724    910    2017-08-05 20:29:00    2017-08-05 20:29:00
110986    34724    923    2017-08-05 04:01:00    2017-08-05 04:01:00
110987    34724    792    2017-08-05 23:55:00    2017-08-05 23:55:00
110988    34724    842    2017-08-05 15:31:00    2017-08-05 15:31:00
110989    34724    505    2017-08-05 01:50:00    2017-08-05 01:50:00
110990    34725    558    2017-08-05 14:58:00    2017-08-05 14:58:00
110991    34725    870    2017-08-05 05:57:00    2017-08-05 05:57:00
110992    34725    702    2017-08-05 19:47:00    2017-08-05 19:47:00
110993    34725    890    2017-08-05 11:52:00    2017-08-05 11:52:00
110994    34725    789    2017-08-05 21:55:00    2017-08-05 21:55:00
110995    34726    574    2017-08-05 03:04:00    2017-08-05 03:04:00
110996    34726    784    2017-08-05 17:02:00    2017-08-05 17:02:00
110997    34726    652    2017-08-05 20:21:00    2017-08-05 20:21:00
110998    34726    567    2017-08-05 17:53:00    2017-08-05 17:53:00
110999    34726    756    2017-08-05 17:18:00    2017-08-05 17:18:00
111000    34727    804    2017-08-05 17:47:00    2017-08-05 17:47:00
111001    34727    724    2017-08-05 08:58:00    2017-08-05 08:58:00
111002    34727    868    2017-08-05 21:39:00    2017-08-05 21:39:00
111003    34727    790    2017-08-05 21:38:00    2017-08-05 21:38:00
111004    34727    641    2017-08-05 05:29:00    2017-08-05 05:29:00
111005    34728    897    2017-08-05 07:06:00    2017-08-05 07:06:00
111006    34728    894    2017-08-05 12:39:00    2017-08-05 12:39:00
111007    34728    564    2017-08-05 21:03:00    2017-08-05 21:03:00
111008    34728    700    2017-08-05 14:21:00    2017-08-05 14:21:00
111009    34728    592    2017-08-05 03:07:00    2017-08-05 03:07:00
111010    34729    669    2017-08-05 20:20:00    2017-08-05 20:20:00
111011    34729    571    2017-08-05 03:20:00    2017-08-05 03:20:00
111012    34729    746    2017-08-05 19:22:00    2017-08-05 19:22:00
111013    34729    958    2017-08-05 04:21:00    2017-08-05 04:21:00
111014    34729    771    2017-08-05 01:56:00    2017-08-05 01:56:00
111015    34730    696    2017-08-05 05:31:00    2017-08-05 05:31:00
111016    34730    473    2017-08-05 21:35:00    2017-08-05 21:35:00
111017    34730    930    2017-08-05 07:09:00    2017-08-05 07:09:00
111018    34730    738    2017-08-05 07:31:00    2017-08-05 07:31:00
111019    34730    562    2017-08-05 06:29:00    2017-08-05 06:29:00
111020    34731    703    2017-08-05 01:57:00    2017-08-05 01:57:00
111021    34731    541    2017-08-05 07:20:00    2017-08-05 07:20:00
111022    34731    939    2017-08-05 17:06:00    2017-08-05 17:06:00
111023    34731    799    2017-08-05 18:49:00    2017-08-05 18:49:00
111024    34731    504    2017-08-05 10:44:00    2017-08-05 10:44:00
111025    34732    951    2017-08-05 16:57:00    2017-08-05 16:57:00
111026    34732    945    2017-08-05 14:14:00    2017-08-05 14:14:00
111027    34732    956    2017-08-05 22:10:00    2017-08-05 22:10:00
111028    34732    888    2017-08-05 11:59:00    2017-08-05 11:59:00
111029    34732    822    2017-08-05 18:11:00    2017-08-05 18:11:00
111030    34733    728    2017-08-05 20:54:00    2017-08-05 20:54:00
111031    34733    907    2017-08-05 07:57:00    2017-08-05 07:57:00
111032    34733    680    2017-08-05 02:44:00    2017-08-05 02:44:00
111033    34733    500    2017-08-05 16:37:00    2017-08-05 16:37:00
111034    34733    951    2017-08-05 13:03:00    2017-08-05 13:03:00
111035    34734    497    2017-08-05 07:05:00    2017-08-05 07:05:00
111036    34734    469    2017-08-05 02:13:00    2017-08-05 02:13:00
111037    34734    926    2017-08-05 03:40:00    2017-08-05 03:40:00
111038    34734    529    2017-08-05 17:16:00    2017-08-05 17:16:00
111039    34734    814    2017-08-05 18:10:00    2017-08-05 18:10:00
111040    34735    691    2017-08-05 15:10:00    2017-08-05 15:10:00
111041    34735    818    2017-08-05 14:00:00    2017-08-05 14:00:00
111042    34735    797    2017-08-05 06:41:00    2017-08-05 06:41:00
111043    34735    538    2017-08-05 15:22:00    2017-08-05 15:22:00
111044    34735    643    2017-08-05 12:58:00    2017-08-05 12:58:00
111045    34736    655    2017-08-05 09:18:00    2017-08-05 09:18:00
111046    34736    692    2017-08-05 18:52:00    2017-08-05 18:52:00
111047    34736    735    2017-08-05 15:16:00    2017-08-05 15:16:00
111048    34736    741    2017-08-05 05:13:00    2017-08-05 05:13:00
111049    34736    705    2017-08-05 12:52:00    2017-08-05 12:52:00
111050    34737    543    2017-08-05 10:31:00    2017-08-05 10:31:00
111051    34737    544    2017-08-05 06:18:00    2017-08-05 06:18:00
111052    34737    905    2017-08-05 22:24:00    2017-08-05 22:24:00
111053    34737    725    2017-08-05 20:25:00    2017-08-05 20:25:00
111054    34737    846    2017-08-05 10:28:00    2017-08-05 10:28:00
111055    34738    789    2017-08-05 06:23:00    2017-08-05 06:23:00
111056    34738    874    2017-08-05 21:20:00    2017-08-05 21:20:00
111057    34738    646    2017-08-05 16:13:00    2017-08-05 16:13:00
111058    34738    813    2017-08-05 23:45:00    2017-08-05 23:45:00
111059    34738    564    2017-08-05 07:59:00    2017-08-05 07:59:00
111060    34739    709    2017-08-05 03:01:00    2017-08-05 03:01:00
111061    34739    960    2017-08-05 17:00:00    2017-08-05 17:00:00
111062    34739    885    2017-08-05 06:55:00    2017-08-05 06:55:00
111063    34739    945    2017-08-05 09:13:00    2017-08-05 09:13:00
111064    34739    682    2017-08-05 10:36:00    2017-08-05 10:36:00
111065    34740    565    2017-08-05 11:43:00    2017-08-05 11:43:00
111066    34740    888    2017-08-05 16:09:00    2017-08-05 16:09:00
111067    34740    882    2017-08-05 05:13:00    2017-08-05 05:13:00
111068    34740    768    2017-08-05 16:03:00    2017-08-05 16:03:00
111069    34740    702    2017-08-05 12:38:00    2017-08-05 12:38:00
111070    34741    835    2017-08-05 10:03:00    2017-08-05 10:03:00
111071    34741    722    2017-08-05 02:35:00    2017-08-05 02:35:00
111072    34741    735    2017-08-05 05:45:00    2017-08-05 05:45:00
111073    34741    595    2017-08-05 22:11:00    2017-08-05 22:11:00
111074    34741    488    2017-08-05 01:16:00    2017-08-05 01:16:00
111075    34742    750    2017-08-05 09:04:00    2017-08-05 09:04:00
111076    34742    829    2017-08-05 22:40:00    2017-08-05 22:40:00
111077    34742    520    2017-08-05 01:11:00    2017-08-05 01:11:00
111078    34742    484    2017-08-05 06:31:00    2017-08-05 06:31:00
111079    34742    724    2017-08-05 22:20:00    2017-08-05 22:20:00
111080    34743    744    2017-08-05 14:00:00    2017-08-05 14:00:00
111081    34743    960    2017-08-05 16:10:00    2017-08-05 16:10:00
111082    34743    959    2017-08-05 09:48:00    2017-08-05 09:48:00
111083    34743    891    2017-08-05 08:15:00    2017-08-05 08:15:00
111084    34743    645    2017-08-05 14:51:00    2017-08-05 14:51:00
111085    34744    647    2017-08-05 05:30:00    2017-08-05 05:30:00
111086    34744    564    2017-08-05 20:54:00    2017-08-05 20:54:00
111087    34744    664    2017-08-05 07:53:00    2017-08-05 07:53:00
111088    34744    884    2017-08-05 20:10:00    2017-08-05 20:10:00
111089    34744    615    2017-08-05 10:31:00    2017-08-05 10:31:00
111090    34745    802    2017-08-05 22:55:00    2017-08-05 22:55:00
111091    34745    806    2017-08-05 05:26:00    2017-08-05 05:26:00
111092    34745    944    2017-08-05 09:34:00    2017-08-05 09:34:00
111093    34745    596    2017-08-05 10:59:00    2017-08-05 10:59:00
111094    34745    863    2017-08-05 15:21:00    2017-08-05 15:21:00
111095    34746    591    2017-08-05 15:30:00    2017-08-05 15:30:00
111096    34746    827    2017-08-05 22:34:00    2017-08-05 22:34:00
111097    34746    910    2017-08-05 15:05:00    2017-08-05 15:05:00
111098    34746    948    2017-08-05 16:11:00    2017-08-05 16:11:00
111099    34746    717    2017-08-05 16:45:00    2017-08-05 16:45:00
111100    34747    501    2017-08-05 12:59:00    2017-08-05 12:59:00
111101    34747    696    2017-08-05 22:09:00    2017-08-05 22:09:00
111102    34747    773    2017-08-05 12:41:00    2017-08-05 12:41:00
111103    34747    935    2017-08-05 21:28:00    2017-08-05 21:28:00
111104    34747    488    2017-08-05 03:44:00    2017-08-05 03:44:00
111105    34748    471    2017-08-05 06:31:00    2017-08-05 06:31:00
111106    34748    800    2017-08-05 04:45:00    2017-08-05 04:45:00
111107    34748    769    2017-08-05 05:25:00    2017-08-05 05:25:00
111108    34748    486    2017-08-05 20:18:00    2017-08-05 20:18:00
111109    34748    916    2017-08-05 19:38:00    2017-08-05 19:38:00
111110    34749    620    2017-08-05 22:50:00    2017-08-05 22:50:00
111111    34749    911    2017-08-05 17:19:00    2017-08-05 17:19:00
111112    34749    800    2017-08-05 09:41:00    2017-08-05 09:41:00
111113    34749    927    2017-08-05 16:46:00    2017-08-05 16:46:00
111114    34749    766    2017-08-05 15:53:00    2017-08-05 15:53:00
111115    34750    667    2017-08-05 07:36:00    2017-08-05 07:36:00
111116    34750    920    2017-08-05 04:41:00    2017-08-05 04:41:00
111117    34750    711    2017-08-05 02:18:00    2017-08-05 02:18:00
111118    34750    922    2017-08-05 11:55:00    2017-08-05 11:55:00
111119    34750    891    2017-08-05 05:23:00    2017-08-05 05:23:00
111120    34751    746    2017-08-05 11:49:00    2017-08-05 11:49:00
111121    34751    561    2017-08-05 07:36:00    2017-08-05 07:36:00
111122    34751    627    2017-08-05 13:23:00    2017-08-05 13:23:00
111123    34751    514    2017-08-05 09:51:00    2017-08-05 09:51:00
111124    34751    685    2017-08-05 10:52:00    2017-08-05 10:52:00
111125    34752    857    2017-08-05 01:33:00    2017-08-05 01:33:00
111126    34752    871    2017-08-05 23:26:00    2017-08-05 23:26:00
111127    34752    916    2017-08-05 13:43:00    2017-08-05 13:43:00
111128    34752    484    2017-08-05 08:54:00    2017-08-05 08:54:00
111129    34752    750    2017-08-05 04:09:00    2017-08-05 04:09:00
111130    34753    587    2017-08-05 03:22:00    2017-08-05 03:22:00
111131    34753    678    2017-08-05 10:49:00    2017-08-05 10:49:00
111132    34753    854    2017-08-05 09:38:00    2017-08-05 09:38:00
111133    34753    771    2017-08-05 19:46:00    2017-08-05 19:46:00
111134    34753    812    2017-08-05 04:33:00    2017-08-05 04:33:00
111135    34754    604    2017-08-05 22:18:00    2017-08-05 22:18:00
111136    34754    888    2017-08-05 02:04:00    2017-08-05 02:04:00
111137    34754    852    2017-08-05 20:36:00    2017-08-05 20:36:00
111138    34754    897    2017-08-05 21:32:00    2017-08-05 21:32:00
111139    34754    587    2017-08-05 10:16:00    2017-08-05 10:16:00
111140    34755    740    2017-08-05 13:34:00    2017-08-05 13:34:00
111141    34755    833    2017-08-05 11:58:00    2017-08-05 11:58:00
111142    34755    844    2017-08-05 10:16:00    2017-08-05 10:16:00
111143    34755    648    2017-08-05 01:13:00    2017-08-05 01:13:00
111144    34755    715    2017-08-05 12:57:00    2017-08-05 12:57:00
111145    34756    730    2017-08-05 15:15:00    2017-08-05 15:15:00
111146    34756    862    2017-08-05 16:19:00    2017-08-05 16:19:00
111147    34756    928    2017-08-05 16:56:00    2017-08-05 16:56:00
111148    34756    766    2017-08-05 06:04:00    2017-08-05 06:04:00
111149    34756    538    2017-08-05 01:20:00    2017-08-05 01:20:00
111150    34757    781    2017-08-05 22:31:00    2017-08-05 22:31:00
111151    34757    779    2017-08-05 21:22:00    2017-08-05 21:22:00
111152    34757    865    2017-08-05 05:12:00    2017-08-05 05:12:00
111153    34757    593    2017-08-05 16:31:00    2017-08-05 16:31:00
111154    34757    715    2017-08-05 14:27:00    2017-08-05 14:27:00
111155    34758    726    2017-08-05 12:54:00    2017-08-05 12:54:00
111156    34758    904    2017-08-05 06:44:00    2017-08-05 06:44:00
111157    34758    558    2017-08-05 19:08:00    2017-08-05 19:08:00
111158    34758    508    2017-08-05 01:53:00    2017-08-05 01:53:00
111159    34758    960    2017-08-05 20:39:00    2017-08-05 20:39:00
111160    34759    700    2017-08-05 04:04:00    2017-08-05 04:04:00
111161    34759    486    2017-08-05 20:40:00    2017-08-05 20:40:00
111162    34759    801    2017-08-05 01:26:00    2017-08-05 01:26:00
111163    34759    641    2017-08-05 23:17:00    2017-08-05 23:17:00
111164    34759    512    2017-08-05 15:36:00    2017-08-05 15:36:00
111165    34760    595    2017-08-05 22:49:00    2017-08-05 22:49:00
111166    34760    569    2017-08-05 01:19:00    2017-08-05 01:19:00
111167    34760    651    2017-08-05 07:36:00    2017-08-05 07:36:00
111168    34760    537    2017-08-05 15:19:00    2017-08-05 15:19:00
111169    34760    691    2017-08-05 15:26:00    2017-08-05 15:26:00
111170    34761    884    2017-08-05 17:00:00    2017-08-05 17:00:00
111171    34761    817    2017-08-05 22:57:00    2017-08-05 22:57:00
111172    34761    480    2017-08-05 23:55:00    2017-08-05 23:55:00
111173    34761    502    2017-08-05 16:42:00    2017-08-05 16:42:00
111174    34761    504    2017-08-05 15:46:00    2017-08-05 15:46:00
111175    34762    735    2017-08-05 20:17:00    2017-08-05 20:17:00
111176    34762    784    2017-08-05 12:06:00    2017-08-05 12:06:00
111177    34762    560    2017-08-05 08:33:00    2017-08-05 08:33:00
111178    34762    491    2017-08-05 22:55:00    2017-08-05 22:55:00
111179    34762    908    2017-08-05 06:01:00    2017-08-05 06:01:00
111180    34763    834    2017-08-05 20:30:00    2017-08-05 20:30:00
111181    34763    733    2017-08-05 23:36:00    2017-08-05 23:36:00
111182    34763    806    2017-08-05 07:38:00    2017-08-05 07:38:00
111183    34763    528    2017-08-05 06:37:00    2017-08-05 06:37:00
111184    34763    531    2017-08-05 05:54:00    2017-08-05 05:54:00
111185    34764    714    2017-08-05 01:44:00    2017-08-05 01:44:00
111186    34764    959    2017-08-05 13:50:00    2017-08-05 13:50:00
111187    34764    868    2017-08-05 15:58:00    2017-08-05 15:58:00
111188    34764    544    2017-08-05 20:51:00    2017-08-05 20:51:00
111189    34764    601    2017-08-05 05:34:00    2017-08-05 05:34:00
111190    34765    750    2017-08-05 07:17:00    2017-08-05 07:17:00
111191    34765    679    2017-08-05 08:11:00    2017-08-05 08:11:00
111192    34765    525    2017-08-05 08:22:00    2017-08-05 08:22:00
111193    34765    882    2017-08-05 08:15:00    2017-08-05 08:15:00
111194    34765    753    2017-08-05 07:54:00    2017-08-05 07:54:00
111195    34766    646    2017-08-05 09:19:00    2017-08-05 09:19:00
111196    34766    628    2017-08-05 10:24:00    2017-08-05 10:24:00
111197    34766    791    2017-08-05 23:10:00    2017-08-05 23:10:00
111198    34766    497    2017-08-05 12:55:00    2017-08-05 12:55:00
111199    34766    613    2017-08-05 04:59:00    2017-08-05 04:59:00
111200    34767    872    2017-08-05 12:17:00    2017-08-05 12:17:00
111201    34767    817    2017-08-05 08:05:00    2017-08-05 08:05:00
111202    34767    767    2017-08-05 16:01:00    2017-08-05 16:01:00
111203    34767    847    2017-08-05 16:07:00    2017-08-05 16:07:00
111204    34767    826    2017-08-05 10:18:00    2017-08-05 10:18:00
111205    34768    943    2017-08-05 03:32:00    2017-08-05 03:32:00
111206    34768    463    2017-08-05 15:22:00    2017-08-05 15:22:00
111207    34768    827    2017-08-05 20:42:00    2017-08-05 20:42:00
111208    34768    575    2017-08-05 10:09:00    2017-08-05 10:09:00
111209    34768    631    2017-08-05 17:48:00    2017-08-05 17:48:00
111210    34769    546    2017-08-05 17:45:00    2017-08-05 17:45:00
111211    34769    883    2017-08-05 07:19:00    2017-08-05 07:19:00
111212    34769    729    2017-08-05 11:48:00    2017-08-05 11:48:00
111213    34769    786    2017-08-05 18:22:00    2017-08-05 18:22:00
111214    34769    849    2017-08-05 11:16:00    2017-08-05 11:16:00
111215    34770    513    2017-08-05 18:21:00    2017-08-05 18:21:00
111216    34770    534    2017-08-05 15:02:00    2017-08-05 15:02:00
111217    34770    786    2017-08-05 03:02:00    2017-08-05 03:02:00
111218    34770    783    2017-08-05 06:08:00    2017-08-05 06:08:00
111219    34770    803    2017-08-05 12:14:00    2017-08-05 12:14:00
111220    34771    514    2017-08-05 14:47:00    2017-08-05 14:47:00
111221    34771    913    2017-08-05 06:47:00    2017-08-05 06:47:00
111222    34771    844    2017-08-05 19:51:00    2017-08-05 19:51:00
111223    34771    881    2017-08-05 19:38:00    2017-08-05 19:38:00
111224    34771    934    2017-08-05 16:07:00    2017-08-05 16:07:00
111225    34772    578    2017-08-05 10:19:00    2017-08-05 10:19:00
111226    34772    730    2017-08-05 22:41:00    2017-08-05 22:41:00
111227    34772    879    2017-08-05 07:13:00    2017-08-05 07:13:00
111228    34772    590    2017-08-05 19:48:00    2017-08-05 19:48:00
111229    34772    656    2017-08-05 15:47:00    2017-08-05 15:47:00
111230    34773    624    2017-08-05 14:39:00    2017-08-05 14:39:00
111231    34773    582    2017-08-05 05:00:00    2017-08-05 05:00:00
111232    34773    882    2017-08-05 02:08:00    2017-08-05 02:08:00
111233    34773    588    2017-08-05 13:02:00    2017-08-05 13:02:00
111234    34773    827    2017-08-05 06:29:00    2017-08-05 06:29:00
111235    34774    890    2017-08-05 01:54:00    2017-08-05 01:54:00
111236    34774    494    2017-08-05 03:19:00    2017-08-05 03:19:00
111237    34774    941    2017-08-05 10:57:00    2017-08-05 10:57:00
111238    34774    959    2017-08-05 21:02:00    2017-08-05 21:02:00
111239    34774    706    2017-08-05 16:58:00    2017-08-05 16:58:00
111240    34775    743    2017-08-05 07:52:00    2017-08-05 07:52:00
111241    34775    736    2017-08-05 02:31:00    2017-08-05 02:31:00
111242    34775    720    2017-08-05 04:48:00    2017-08-05 04:48:00
111243    34775    558    2017-08-05 01:46:00    2017-08-05 01:46:00
111244    34775    847    2017-08-05 10:00:00    2017-08-05 10:00:00
111245    34776    879    2017-08-05 09:18:00    2017-08-05 09:18:00
111246    34776    631    2017-08-05 21:51:00    2017-08-05 21:51:00
111247    34776    584    2017-08-05 15:38:00    2017-08-05 15:38:00
111248    34776    918    2017-08-05 10:13:00    2017-08-05 10:13:00
111249    34776    751    2017-08-05 12:06:00    2017-08-05 12:06:00
111250    34777    954    2017-08-05 17:31:00    2017-08-05 17:31:00
111251    34777    721    2017-08-05 07:02:00    2017-08-05 07:02:00
111252    34777    513    2017-08-05 09:51:00    2017-08-05 09:51:00
111253    34777    859    2017-08-05 18:04:00    2017-08-05 18:04:00
111254    34777    602    2017-08-05 09:46:00    2017-08-05 09:46:00
111255    34778    505    2017-08-05 07:59:00    2017-08-05 07:59:00
111256    34778    865    2017-08-05 13:33:00    2017-08-05 13:33:00
111257    34778    570    2017-08-05 01:19:00    2017-08-05 01:19:00
111258    34778    816    2017-08-05 01:33:00    2017-08-05 01:33:00
111259    34778    594    2017-08-05 23:15:00    2017-08-05 23:15:00
111260    34779    477    2017-08-06 01:52:00    2017-08-06 01:52:00
111261    34779    531    2017-08-06 01:47:00    2017-08-06 01:47:00
111262    34779    799    2017-08-06 04:11:00    2017-08-06 04:11:00
111263    34779    848    2017-08-06 10:36:00    2017-08-06 10:36:00
111264    34779    829    2017-08-06 03:30:00    2017-08-06 03:30:00
111265    34780    464    2017-08-06 10:35:00    2017-08-06 10:35:00
111266    34780    530    2017-08-06 16:41:00    2017-08-06 16:41:00
111267    34780    754    2017-08-06 04:02:00    2017-08-06 04:02:00
111268    34780    613    2017-08-06 03:38:00    2017-08-06 03:38:00
111269    34780    503    2017-08-06 18:41:00    2017-08-06 18:41:00
111270    34781    473    2017-08-06 22:38:00    2017-08-06 22:38:00
111271    34781    580    2017-08-06 03:06:00    2017-08-06 03:06:00
111272    34781    584    2017-08-06 23:11:00    2017-08-06 23:11:00
111273    34781    509    2017-08-06 08:31:00    2017-08-06 08:31:00
111274    34781    958    2017-08-06 08:23:00    2017-08-06 08:23:00
111275    34782    771    2017-08-06 23:09:00    2017-08-06 23:09:00
111276    34782    735    2017-08-06 02:46:00    2017-08-06 02:46:00
111277    34782    933    2017-08-06 13:19:00    2017-08-06 13:19:00
111278    34782    654    2017-08-06 04:13:00    2017-08-06 04:13:00
111279    34782    927    2017-08-06 18:43:00    2017-08-06 18:43:00
111280    34783    715    2017-08-06 07:31:00    2017-08-06 07:31:00
111281    34783    541    2017-08-06 11:47:00    2017-08-06 11:47:00
111282    34783    547    2017-08-06 04:50:00    2017-08-06 04:50:00
111283    34783    908    2017-08-06 06:34:00    2017-08-06 06:34:00
111284    34783    559    2017-08-06 03:26:00    2017-08-06 03:26:00
111285    34784    952    2017-08-06 04:12:00    2017-08-06 04:12:00
111286    34784    880    2017-08-06 19:46:00    2017-08-06 19:46:00
111287    34784    741    2017-08-06 11:07:00    2017-08-06 11:07:00
111288    34784    742    2017-08-06 08:27:00    2017-08-06 08:27:00
111289    34784    911    2017-08-06 17:05:00    2017-08-06 17:05:00
111290    34785    953    2017-08-06 17:35:00    2017-08-06 17:35:00
111291    34785    847    2017-08-06 05:28:00    2017-08-06 05:28:00
111292    34785    777    2017-08-06 03:03:00    2017-08-06 03:03:00
111293    34785    468    2017-08-06 07:23:00    2017-08-06 07:23:00
111294    34785    885    2017-08-06 09:45:00    2017-08-06 09:45:00
111295    34786    861    2017-08-06 14:05:00    2017-08-06 14:05:00
111296    34786    535    2017-08-06 20:30:00    2017-08-06 20:30:00
111297    34786    936    2017-08-06 14:23:00    2017-08-06 14:23:00
111298    34786    581    2017-08-06 09:36:00    2017-08-06 09:36:00
111299    34786    528    2017-08-06 19:42:00    2017-08-06 19:42:00
111300    34787    519    2017-08-06 04:11:00    2017-08-06 04:11:00
111301    34787    602    2017-08-06 21:26:00    2017-08-06 21:26:00
111302    34787    682    2017-08-06 18:31:00    2017-08-06 18:31:00
111303    34787    815    2017-08-06 05:55:00    2017-08-06 05:55:00
111304    34787    496    2017-08-06 05:24:00    2017-08-06 05:24:00
111305    34788    716    2017-08-06 10:06:00    2017-08-06 10:06:00
111306    34788    471    2017-08-06 17:55:00    2017-08-06 17:55:00
111307    34788    623    2017-08-06 06:13:00    2017-08-06 06:13:00
111308    34788    490    2017-08-06 10:33:00    2017-08-06 10:33:00
111309    34788    679    2017-08-06 04:44:00    2017-08-06 04:44:00
111310    34789    726    2017-08-06 21:32:00    2017-08-06 21:32:00
111311    34789    675    2017-08-06 04:16:00    2017-08-06 04:16:00
111312    34789    668    2017-08-06 13:29:00    2017-08-06 13:29:00
111313    34789    566    2017-08-06 12:15:00    2017-08-06 12:15:00
111314    34789    959    2017-08-06 10:51:00    2017-08-06 10:51:00
111315    34790    629    2017-08-06 06:30:00    2017-08-06 06:30:00
111316    34790    812    2017-08-06 12:08:00    2017-08-06 12:08:00
111317    34790    930    2017-08-06 13:29:00    2017-08-06 13:29:00
111318    34790    818    2017-08-06 06:47:00    2017-08-06 06:47:00
111319    34790    549    2017-08-06 10:29:00    2017-08-06 10:29:00
111320    34791    645    2017-08-06 07:19:00    2017-08-06 07:19:00
111321    34791    622    2017-08-06 20:24:00    2017-08-06 20:24:00
111322    34791    604    2017-08-06 23:25:00    2017-08-06 23:25:00
111323    34791    706    2017-08-06 05:06:00    2017-08-06 05:06:00
111324    34791    563    2017-08-06 16:29:00    2017-08-06 16:29:00
111325    34792    602    2017-08-06 14:58:00    2017-08-06 14:58:00
111326    34792    607    2017-08-06 11:30:00    2017-08-06 11:30:00
111327    34792    669    2017-08-06 03:04:00    2017-08-06 03:04:00
111328    34792    633    2017-08-06 19:41:00    2017-08-06 19:41:00
111329    34792    589    2017-08-06 19:53:00    2017-08-06 19:53:00
111330    34793    681    2017-08-06 01:17:00    2017-08-06 01:17:00
111331    34793    479    2017-08-06 22:56:00    2017-08-06 22:56:00
111332    34793    856    2017-08-06 08:32:00    2017-08-06 08:32:00
111333    34793    954    2017-08-06 10:55:00    2017-08-06 10:55:00
111334    34793    777    2017-08-06 15:17:00    2017-08-06 15:17:00
111335    34794    755    2017-08-06 10:19:00    2017-08-06 10:19:00
111336    34794    539    2017-08-06 10:39:00    2017-08-06 10:39:00
111337    34794    711    2017-08-06 06:54:00    2017-08-06 06:54:00
111338    34794    734    2017-08-06 19:33:00    2017-08-06 19:33:00
111339    34794    490    2017-08-06 04:29:00    2017-08-06 04:29:00
111340    34795    606    2017-08-06 08:23:00    2017-08-06 08:23:00
111341    34795    900    2017-08-06 14:44:00    2017-08-06 14:44:00
111342    34795    586    2017-08-06 23:09:00    2017-08-06 23:09:00
111343    34795    599    2017-08-06 02:43:00    2017-08-06 02:43:00
111344    34795    717    2017-08-06 17:07:00    2017-08-06 17:07:00
111345    34796    851    2017-08-06 08:09:00    2017-08-06 08:09:00
111346    34796    562    2017-08-06 09:42:00    2017-08-06 09:42:00
111347    34796    520    2017-08-06 22:59:00    2017-08-06 22:59:00
111348    34796    612    2017-08-06 08:49:00    2017-08-06 08:49:00
111349    34796    476    2017-08-06 04:02:00    2017-08-06 04:02:00
111350    34797    747    2017-08-06 05:51:00    2017-08-06 05:51:00
111351    34797    634    2017-08-06 23:53:00    2017-08-06 23:53:00
111352    34797    656    2017-08-06 14:24:00    2017-08-06 14:24:00
111353    34797    573    2017-08-06 09:06:00    2017-08-06 09:06:00
111354    34797    571    2017-08-06 06:15:00    2017-08-06 06:15:00
111355    34798    502    2017-08-06 14:51:00    2017-08-06 14:51:00
111356    34798    652    2017-08-06 07:57:00    2017-08-06 07:57:00
111357    34798    778    2017-08-06 04:06:00    2017-08-06 04:06:00
111358    34798    883    2017-08-06 20:49:00    2017-08-06 20:49:00
111359    34798    763    2017-08-06 13:54:00    2017-08-06 13:54:00
111360    34799    613    2017-08-06 17:04:00    2017-08-06 17:04:00
111361    34799    750    2017-08-06 21:37:00    2017-08-06 21:37:00
111362    34799    620    2017-08-06 13:08:00    2017-08-06 13:08:00
111363    34799    864    2017-08-06 10:07:00    2017-08-06 10:07:00
111364    34799    557    2017-08-06 14:52:00    2017-08-06 14:52:00
111365    34800    660    2017-08-06 19:13:00    2017-08-06 19:13:00
111366    34800    961    2017-08-06 16:28:00    2017-08-06 16:28:00
111367    34800    577    2017-08-06 10:50:00    2017-08-06 10:50:00
111368    34800    594    2017-08-06 21:58:00    2017-08-06 21:58:00
111369    34800    881    2017-08-06 10:00:00    2017-08-06 10:00:00
111370    34801    581    2017-08-06 04:53:00    2017-08-06 04:53:00
111371    34801    555    2017-08-06 02:08:00    2017-08-06 02:08:00
111372    34801    925    2017-08-06 06:00:00    2017-08-06 06:00:00
111373    34801    723    2017-08-06 21:19:00    2017-08-06 21:19:00
111374    34801    625    2017-08-06 17:59:00    2017-08-06 17:59:00
111375    34802    698    2017-08-06 11:19:00    2017-08-06 11:19:00
111376    34802    829    2017-08-06 20:14:00    2017-08-06 20:14:00
111377    34802    916    2017-08-06 19:07:00    2017-08-06 19:07:00
111378    34802    902    2017-08-06 10:31:00    2017-08-06 10:31:00
111379    34802    499    2017-08-06 16:58:00    2017-08-06 16:58:00
111380    34803    555    2017-08-06 21:01:00    2017-08-06 21:01:00
111381    34803    834    2017-08-06 13:37:00    2017-08-06 13:37:00
111382    34803    743    2017-08-06 11:13:00    2017-08-06 11:13:00
111383    34803    663    2017-08-06 15:37:00    2017-08-06 15:37:00
111384    34803    702    2017-08-06 02:27:00    2017-08-06 02:27:00
111385    34804    578    2017-08-06 02:02:00    2017-08-06 02:02:00
111386    34804    835    2017-08-06 01:29:00    2017-08-06 01:29:00
111387    34804    663    2017-08-06 20:30:00    2017-08-06 20:30:00
111388    34804    772    2017-08-06 14:01:00    2017-08-06 14:01:00
111389    34804    852    2017-08-06 02:00:00    2017-08-06 02:00:00
111390    34805    713    2017-08-06 23:44:00    2017-08-06 23:44:00
111391    34805    505    2017-08-06 20:35:00    2017-08-06 20:35:00
111392    34805    600    2017-08-06 19:24:00    2017-08-06 19:24:00
111393    34805    818    2017-08-06 13:45:00    2017-08-06 13:45:00
111394    34805    910    2017-08-06 19:08:00    2017-08-06 19:08:00
111395    34806    604    2017-08-06 03:32:00    2017-08-06 03:32:00
111396    34806    614    2017-08-06 17:42:00    2017-08-06 17:42:00
111397    34806    556    2017-08-06 02:50:00    2017-08-06 02:50:00
111398    34806    667    2017-08-06 03:43:00    2017-08-06 03:43:00
111399    34806    890    2017-08-06 15:51:00    2017-08-06 15:51:00
111400    34807    946    2017-08-06 05:58:00    2017-08-06 05:58:00
111401    34807    516    2017-08-06 19:15:00    2017-08-06 19:15:00
111402    34807    664    2017-08-06 14:12:00    2017-08-06 14:12:00
111403    34807    525    2017-08-06 13:17:00    2017-08-06 13:17:00
111404    34807    806    2017-08-06 23:17:00    2017-08-06 23:17:00
111405    34808    603    2017-08-06 08:29:00    2017-08-06 08:29:00
111406    34808    501    2017-08-06 04:34:00    2017-08-06 04:34:00
111407    34808    505    2017-08-06 08:21:00    2017-08-06 08:21:00
111408    34808    496    2017-08-06 16:13:00    2017-08-06 16:13:00
111409    34808    591    2017-08-06 02:43:00    2017-08-06 02:43:00
111410    34809    499    2017-08-06 23:42:00    2017-08-06 23:42:00
111411    34809    798    2017-08-06 14:54:00    2017-08-06 14:54:00
111412    34809    916    2017-08-06 09:40:00    2017-08-06 09:40:00
111413    34809    553    2017-08-06 19:31:00    2017-08-06 19:31:00
111414    34809    770    2017-08-06 16:55:00    2017-08-06 16:55:00
111415    34810    651    2017-08-06 05:21:00    2017-08-06 05:21:00
111416    34810    791    2017-08-06 06:58:00    2017-08-06 06:58:00
111417    34810    808    2017-08-06 12:31:00    2017-08-06 12:31:00
111418    34810    752    2017-08-06 12:09:00    2017-08-06 12:09:00
111419    34810    678    2017-08-06 01:55:00    2017-08-06 01:55:00
111420    34811    647    2017-08-06 06:39:00    2017-08-06 06:39:00
111421    34811    616    2017-08-06 12:07:00    2017-08-06 12:07:00
111422    34811    687    2017-08-06 20:12:00    2017-08-06 20:12:00
111423    34811    855    2017-08-06 20:33:00    2017-08-06 20:33:00
111424    34811    613    2017-08-06 09:19:00    2017-08-06 09:19:00
111425    34812    694    2017-08-06 09:31:00    2017-08-06 09:31:00
111426    34812    795    2017-08-06 08:34:00    2017-08-06 08:34:00
111427    34812    953    2017-08-06 20:10:00    2017-08-06 20:10:00
111428    34812    645    2017-08-06 08:23:00    2017-08-06 08:23:00
111429    34812    796    2017-08-06 21:13:00    2017-08-06 21:13:00
111430    34813    762    2017-08-06 23:24:00    2017-08-06 23:24:00
111431    34813    694    2017-08-06 05:23:00    2017-08-06 05:23:00
111432    34813    633    2017-08-06 23:44:00    2017-08-06 23:44:00
111433    34813    730    2017-08-06 19:21:00    2017-08-06 19:21:00
111434    34813    611    2017-08-06 10:42:00    2017-08-06 10:42:00
111435    34814    863    2017-08-06 04:10:00    2017-08-06 04:10:00
111436    34814    611    2017-08-06 13:34:00    2017-08-06 13:34:00
111437    34814    725    2017-08-06 13:38:00    2017-08-06 13:38:00
111438    34814    619    2017-08-06 04:44:00    2017-08-06 04:44:00
111439    34814    761    2017-08-06 12:56:00    2017-08-06 12:56:00
111440    34815    803    2017-08-06 22:38:00    2017-08-06 22:38:00
111441    34815    629    2017-08-06 16:30:00    2017-08-06 16:30:00
111442    34815    748    2017-08-06 03:16:00    2017-08-06 03:16:00
111443    34815    695    2017-08-06 15:06:00    2017-08-06 15:06:00
111444    34815    834    2017-08-07 00:00:00    2017-08-07 00:00:00
111445    34816    564    2017-08-06 14:59:00    2017-08-06 14:59:00
111446    34816    679    2017-08-06 17:00:00    2017-08-06 17:00:00
111447    34816    681    2017-08-06 22:00:00    2017-08-06 22:00:00
111448    34816    830    2017-08-06 23:44:00    2017-08-06 23:44:00
111449    34816    922    2017-08-06 22:37:00    2017-08-06 22:37:00
111450    34817    921    2017-08-06 11:33:00    2017-08-06 11:33:00
111451    34817    920    2017-08-06 09:28:00    2017-08-06 09:28:00
111452    34817    734    2017-08-06 02:37:00    2017-08-06 02:37:00
111453    34817    534    2017-08-06 09:54:00    2017-08-06 09:54:00
111454    34817    494    2017-08-06 06:13:00    2017-08-06 06:13:00
111455    34818    734    2017-08-06 15:10:00    2017-08-06 15:10:00
111456    34818    517    2017-08-06 19:37:00    2017-08-06 19:37:00
111457    34818    733    2017-08-06 23:17:00    2017-08-06 23:17:00
111458    34818    583    2017-08-06 09:34:00    2017-08-06 09:34:00
111459    34818    741    2017-08-06 13:46:00    2017-08-06 13:46:00
111460    34819    655    2017-08-06 05:50:00    2017-08-06 05:50:00
111461    34819    892    2017-08-06 01:31:00    2017-08-06 01:31:00
111462    34819    855    2017-08-06 09:36:00    2017-08-06 09:36:00
111463    34819    941    2017-08-06 06:32:00    2017-08-06 06:32:00
111464    34819    905    2017-08-06 22:43:00    2017-08-06 22:43:00
111465    34820    872    2017-08-06 08:54:00    2017-08-06 08:54:00
111466    34820    676    2017-08-06 13:11:00    2017-08-06 13:11:00
111467    34820    848    2017-08-06 21:55:00    2017-08-06 21:55:00
111468    34820    594    2017-08-06 13:08:00    2017-08-06 13:08:00
111469    34820    754    2017-08-06 09:32:00    2017-08-06 09:32:00
111470    34821    812    2017-08-06 01:49:00    2017-08-06 01:49:00
111471    34821    883    2017-08-06 12:45:00    2017-08-06 12:45:00
111472    34821    614    2017-08-06 06:59:00    2017-08-06 06:59:00
111473    34821    648    2017-08-06 20:28:00    2017-08-06 20:28:00
111474    34821    697    2017-08-06 08:50:00    2017-08-06 08:50:00
111475    34822    913    2017-08-06 04:19:00    2017-08-06 04:19:00
111476    34822    720    2017-08-06 11:36:00    2017-08-06 11:36:00
111477    34822    521    2017-08-06 12:30:00    2017-08-06 12:30:00
111478    34822    918    2017-08-06 11:34:00    2017-08-06 11:34:00
111479    34822    540    2017-08-06 04:17:00    2017-08-06 04:17:00
111480    34823    568    2017-08-06 07:41:00    2017-08-06 07:41:00
111481    34823    573    2017-08-06 08:54:00    2017-08-06 08:54:00
111482    34823    599    2017-08-06 02:05:00    2017-08-06 02:05:00
111483    34823    805    2017-08-06 03:44:00    2017-08-06 03:44:00
111484    34823    895    2017-08-06 01:12:00    2017-08-06 01:12:00
111485    34824    753    2017-08-06 22:56:00    2017-08-06 22:56:00
111486    34824    913    2017-08-06 12:58:00    2017-08-06 12:58:00
111487    34824    519    2017-08-06 13:28:00    2017-08-06 13:28:00
111488    34824    542    2017-08-06 22:26:00    2017-08-06 22:26:00
111489    34824    658    2017-08-06 10:00:00    2017-08-06 10:00:00
111490    34825    555    2017-08-06 19:59:00    2017-08-06 19:59:00
111491    34825    708    2017-08-06 14:56:00    2017-08-06 14:56:00
111492    34825    540    2017-08-06 21:04:00    2017-08-06 21:04:00
111493    34825    629    2017-08-06 04:13:00    2017-08-06 04:13:00
111494    34825    534    2017-08-06 08:10:00    2017-08-06 08:10:00
111495    34826    700    2017-08-06 06:57:00    2017-08-06 06:57:00
111496    34826    570    2017-08-06 03:17:00    2017-08-06 03:17:00
111497    34826    530    2017-08-06 18:34:00    2017-08-06 18:34:00
111498    34826    876    2017-08-06 17:31:00    2017-08-06 17:31:00
111499    34826    488    2017-08-06 23:45:00    2017-08-06 23:45:00
111500    34827    877    2017-08-06 04:47:00    2017-08-06 04:47:00
111501    34827    949    2017-08-06 09:12:00    2017-08-06 09:12:00
111502    34827    541    2017-08-06 22:59:00    2017-08-06 22:59:00
111503    34827    830    2017-08-06 01:13:00    2017-08-06 01:13:00
111504    34827    721    2017-08-06 14:27:00    2017-08-06 14:27:00
111505    34828    749    2017-08-06 22:45:00    2017-08-06 22:45:00
111506    34828    738    2017-08-06 09:47:00    2017-08-06 09:47:00
111507    34828    942    2017-08-06 04:12:00    2017-08-06 04:12:00
111508    34828    636    2017-08-06 01:26:00    2017-08-06 01:26:00
111509    34828    911    2017-08-06 01:55:00    2017-08-06 01:55:00
111510    34829    759    2017-08-06 18:21:00    2017-08-06 18:21:00
111511    34829    729    2017-08-06 14:52:00    2017-08-06 14:52:00
111512    34829    469    2017-08-06 02:30:00    2017-08-06 02:30:00
111513    34829    529    2017-08-06 14:57:00    2017-08-06 14:57:00
111514    34829    546    2017-08-06 17:49:00    2017-08-06 17:49:00
111515    34830    778    2017-08-06 02:48:00    2017-08-06 02:48:00
111516    34830    812    2017-08-06 07:49:00    2017-08-06 07:49:00
111517    34830    959    2017-08-06 13:49:00    2017-08-06 13:49:00
111518    34830    801    2017-08-06 07:18:00    2017-08-06 07:18:00
111519    34830    957    2017-08-06 23:56:00    2017-08-06 23:56:00
111520    34831    774    2017-08-06 02:33:00    2017-08-06 02:33:00
111521    34831    706    2017-08-06 02:48:00    2017-08-06 02:48:00
111522    34831    740    2017-08-06 13:30:00    2017-08-06 13:30:00
111523    34831    655    2017-08-06 01:08:00    2017-08-06 01:08:00
111524    34831    572    2017-08-06 09:40:00    2017-08-06 09:40:00
111525    34832    664    2017-08-06 06:53:00    2017-08-06 06:53:00
111526    34832    797    2017-08-06 10:03:00    2017-08-06 10:03:00
111527    34832    850    2017-08-06 01:56:00    2017-08-06 01:56:00
111528    34832    794    2017-08-06 14:18:00    2017-08-06 14:18:00
111529    34832    496    2017-08-06 14:00:00    2017-08-06 14:00:00
111530    34833    787    2017-08-06 04:33:00    2017-08-06 04:33:00
111531    34833    836    2017-08-06 04:28:00    2017-08-06 04:28:00
111532    34833    950    2017-08-06 15:51:00    2017-08-06 15:51:00
111533    34833    479    2017-08-06 12:13:00    2017-08-06 12:13:00
111534    34833    930    2017-08-06 02:16:00    2017-08-06 02:16:00
111535    34834    659    2017-08-06 18:24:00    2017-08-06 18:24:00
111536    34834    647    2017-08-06 23:31:00    2017-08-06 23:31:00
111537    34834    643    2017-08-06 05:17:00    2017-08-06 05:17:00
111538    34834    938    2017-08-06 01:28:00    2017-08-06 01:28:00
111539    34834    473    2017-08-06 18:59:00    2017-08-06 18:59:00
111540    34835    933    2017-08-06 10:28:00    2017-08-06 10:28:00
111541    34835    952    2017-08-06 10:04:00    2017-08-06 10:04:00
111542    34835    801    2017-08-06 03:12:00    2017-08-06 03:12:00
111543    34835    513    2017-08-06 16:00:00    2017-08-06 16:00:00
111544    34835    475    2017-08-06 09:17:00    2017-08-06 09:17:00
111545    34836    957    2017-08-06 11:07:00    2017-08-06 11:07:00
111546    34836    620    2017-08-06 10:12:00    2017-08-06 10:12:00
111547    34836    951    2017-08-06 14:53:00    2017-08-06 14:53:00
111548    34836    503    2017-08-06 07:44:00    2017-08-06 07:44:00
111549    34836    594    2017-08-06 01:59:00    2017-08-06 01:59:00
111550    34837    646    2017-08-06 08:14:00    2017-08-06 08:14:00
111551    34837    508    2017-08-06 01:40:00    2017-08-06 01:40:00
111552    34837    656    2017-08-06 21:48:00    2017-08-06 21:48:00
111553    34837    905    2017-08-06 09:43:00    2017-08-06 09:43:00
111554    34837    493    2017-08-06 13:31:00    2017-08-06 13:31:00
111555    34838    629    2017-08-06 18:17:00    2017-08-06 18:17:00
111556    34838    814    2017-08-06 04:00:00    2017-08-06 04:00:00
111557    34838    826    2017-08-06 03:47:00    2017-08-06 03:47:00
111558    34838    664    2017-08-06 12:24:00    2017-08-06 12:24:00
111559    34838    630    2017-08-06 13:39:00    2017-08-06 13:39:00
111560    34839    525    2017-08-06 17:05:00    2017-08-06 17:05:00
111561    34839    947    2017-08-06 14:55:00    2017-08-06 14:55:00
111562    34839    496    2017-08-06 23:07:00    2017-08-06 23:07:00
111563    34839    798    2017-08-06 10:06:00    2017-08-06 10:06:00
111564    34839    823    2017-08-06 01:15:00    2017-08-06 01:15:00
111565    34840    837    2017-08-06 08:12:00    2017-08-06 08:12:00
111566    34840    570    2017-08-06 07:33:00    2017-08-06 07:33:00
111567    34840    808    2017-08-06 07:04:00    2017-08-06 07:04:00
111568    34840    615    2017-08-06 15:47:00    2017-08-06 15:47:00
111569    34840    525    2017-08-06 14:44:00    2017-08-06 14:44:00
111570    34841    585    2017-08-06 22:23:00    2017-08-06 22:23:00
111571    34841    881    2017-08-06 15:19:00    2017-08-06 15:19:00
111572    34841    879    2017-08-06 06:24:00    2017-08-06 06:24:00
111573    34841    744    2017-08-06 05:13:00    2017-08-06 05:13:00
111574    34841    885    2017-08-06 17:21:00    2017-08-06 17:21:00
111575    34842    481    2017-08-06 08:39:00    2017-08-06 08:39:00
111576    34842    535    2017-08-06 21:09:00    2017-08-06 21:09:00
111577    34842    818    2017-08-06 10:44:00    2017-08-06 10:44:00
111578    34842    644    2017-08-06 04:06:00    2017-08-06 04:06:00
111579    34842    591    2017-08-06 10:33:00    2017-08-06 10:33:00
111580    34843    656    2017-08-06 08:28:00    2017-08-06 08:28:00
111581    34843    876    2017-08-06 16:57:00    2017-08-06 16:57:00
111582    34843    790    2017-08-06 12:32:00    2017-08-06 12:32:00
111583    34843    769    2017-08-06 02:31:00    2017-08-06 02:31:00
111584    34843    469    2017-08-06 20:08:00    2017-08-06 20:08:00
111585    34844    609    2017-08-06 04:53:00    2017-08-06 04:53:00
111586    34844    491    2017-08-06 10:54:00    2017-08-06 10:54:00
111587    34844    637    2017-08-06 21:36:00    2017-08-06 21:36:00
111588    34844    626    2017-08-06 09:05:00    2017-08-06 09:05:00
111589    34844    589    2017-08-06 09:24:00    2017-08-06 09:24:00
111590    34845    926    2017-08-06 23:24:00    2017-08-06 23:24:00
111591    34845    770    2017-08-06 02:08:00    2017-08-06 02:08:00
111592    34845    624    2017-08-06 09:58:00    2017-08-06 09:58:00
111593    34845    626    2017-08-06 12:02:00    2017-08-06 12:02:00
111594    34845    935    2017-08-06 05:18:00    2017-08-06 05:18:00
111595    34846    504    2017-08-06 23:45:00    2017-08-06 23:45:00
111596    34846    541    2017-08-06 19:18:00    2017-08-06 19:18:00
111597    34846    804    2017-08-06 17:57:00    2017-08-06 17:57:00
111598    34846    494    2017-08-06 23:27:00    2017-08-06 23:27:00
111599    34846    781    2017-08-06 13:58:00    2017-08-06 13:58:00
111600    34847    822    2017-08-06 23:22:00    2017-08-06 23:22:00
111601    34847    714    2017-08-06 10:20:00    2017-08-06 10:20:00
111602    34847    853    2017-08-06 23:11:00    2017-08-06 23:11:00
111603    34847    754    2017-08-06 05:27:00    2017-08-06 05:27:00
111604    34847    484    2017-08-06 22:39:00    2017-08-06 22:39:00
111605    34848    863    2017-08-06 20:35:00    2017-08-06 20:35:00
111606    34848    770    2017-08-06 04:00:00    2017-08-06 04:00:00
111607    34848    570    2017-08-06 19:04:00    2017-08-06 19:04:00
111608    34848    726    2017-08-06 12:49:00    2017-08-06 12:49:00
111609    34848    844    2017-08-06 19:48:00    2017-08-06 19:48:00
111610    34849    615    2017-08-06 19:54:00    2017-08-06 19:54:00
111611    34849    899    2017-08-06 09:55:00    2017-08-06 09:55:00
111612    34849    720    2017-08-06 02:34:00    2017-08-06 02:34:00
111613    34849    912    2017-08-06 13:30:00    2017-08-06 13:30:00
111614    34849    700    2017-08-06 21:50:00    2017-08-06 21:50:00
111615    34850    836    2017-08-06 15:46:00    2017-08-06 15:46:00
111616    34850    924    2017-08-06 07:24:00    2017-08-06 07:24:00
111617    34850    483    2017-08-06 20:52:00    2017-08-06 20:52:00
111618    34850    651    2017-08-06 21:36:00    2017-08-06 21:36:00
111619    34850    592    2017-08-06 05:43:00    2017-08-06 05:43:00
111620    34851    620    2017-08-06 20:30:00    2017-08-06 20:30:00
111621    34851    543    2017-08-06 16:38:00    2017-08-06 16:38:00
111622    34851    828    2017-08-06 11:34:00    2017-08-06 11:34:00
111623    34851    476    2017-08-06 07:55:00    2017-08-06 07:55:00
111624    34851    701    2017-08-06 15:49:00    2017-08-06 15:49:00
111625    34852    932    2017-08-06 17:19:00    2017-08-06 17:19:00
111626    34852    770    2017-08-06 13:52:00    2017-08-06 13:52:00
111627    34852    763    2017-08-06 16:44:00    2017-08-06 16:44:00
111628    34852    609    2017-08-06 08:42:00    2017-08-06 08:42:00
111629    34852    663    2017-08-06 09:53:00    2017-08-06 09:53:00
111630    34853    667    2017-08-06 21:35:00    2017-08-06 21:35:00
111631    34853    728    2017-08-06 21:25:00    2017-08-06 21:25:00
111632    34853    840    2017-08-06 11:19:00    2017-08-06 11:19:00
111633    34853    738    2017-08-06 16:30:00    2017-08-06 16:30:00
111634    34853    868    2017-08-06 04:22:00    2017-08-06 04:22:00
111635    34854    906    2017-08-06 07:38:00    2017-08-06 07:38:00
111636    34854    602    2017-08-06 03:46:00    2017-08-06 03:46:00
111637    34854    838    2017-08-06 06:16:00    2017-08-06 06:16:00
111638    34854    844    2017-08-06 08:06:00    2017-08-06 08:06:00
111639    34854    692    2017-08-06 13:59:00    2017-08-06 13:59:00
111640    34855    658    2017-08-06 14:50:00    2017-08-06 14:50:00
111641    34855    901    2017-08-06 07:11:00    2017-08-06 07:11:00
111642    34855    635    2017-08-06 06:51:00    2017-08-06 06:51:00
111643    34855    573    2017-08-06 08:51:00    2017-08-06 08:51:00
111644    34855    836    2017-08-06 20:43:00    2017-08-06 20:43:00
111645    34856    643    2017-08-06 17:51:00    2017-08-06 17:51:00
111646    34856    887    2017-08-06 22:55:00    2017-08-06 22:55:00
111647    34856    564    2017-08-06 22:15:00    2017-08-06 22:15:00
111648    34856    663    2017-08-06 13:05:00    2017-08-06 13:05:00
111649    34856    480    2017-08-06 11:43:00    2017-08-06 11:43:00
111650    34857    802    2017-08-06 11:05:00    2017-08-06 11:05:00
111651    34857    596    2017-08-06 09:38:00    2017-08-06 09:38:00
111652    34857    505    2017-08-06 09:08:00    2017-08-06 09:08:00
111653    34857    780    2017-08-06 15:49:00    2017-08-06 15:49:00
111654    34857    553    2017-08-06 20:27:00    2017-08-06 20:27:00
111655    34858    946    2017-08-06 04:39:00    2017-08-06 04:39:00
111656    34858    666    2017-08-06 13:04:00    2017-08-06 13:04:00
111657    34858    637    2017-08-06 20:17:00    2017-08-06 20:17:00
111658    34858    959    2017-08-06 02:42:00    2017-08-06 02:42:00
111659    34858    699    2017-08-06 20:39:00    2017-08-06 20:39:00
111660    34859    465    2017-08-06 22:01:00    2017-08-06 22:01:00
111661    34859    707    2017-08-06 01:06:00    2017-08-06 01:06:00
111662    34859    813    2017-08-06 11:32:00    2017-08-06 11:32:00
111663    34859    849    2017-08-06 21:44:00    2017-08-06 21:44:00
111664    34859    535    2017-08-06 18:54:00    2017-08-06 18:54:00
111665    34860    723    2017-08-06 17:09:00    2017-08-06 17:09:00
111666    34860    662    2017-08-06 20:37:00    2017-08-06 20:37:00
111667    34860    633    2017-08-06 23:12:00    2017-08-06 23:12:00
111668    34860    485    2017-08-06 01:25:00    2017-08-06 01:25:00
111669    34860    761    2017-08-06 11:02:00    2017-08-06 11:02:00
111670    34861    463    2017-08-06 19:31:00    2017-08-06 19:31:00
111671    34861    722    2017-08-06 21:06:00    2017-08-06 21:06:00
111672    34861    798    2017-08-06 01:23:00    2017-08-06 01:23:00
111673    34861    646    2017-08-06 15:37:00    2017-08-06 15:37:00
111674    34861    597    2017-08-06 13:13:00    2017-08-06 13:13:00
111675    34862    572    2017-08-06 13:58:00    2017-08-06 13:58:00
111676    34862    828    2017-08-06 12:50:00    2017-08-06 12:50:00
111677    34862    536    2017-08-06 16:38:00    2017-08-06 16:38:00
111678    34862    909    2017-08-06 11:32:00    2017-08-06 11:32:00
111679    34862    786    2017-08-06 02:04:00    2017-08-06 02:04:00
111680    34863    906    2017-08-06 21:34:00    2017-08-06 21:34:00
111681    34863    744    2017-08-06 18:24:00    2017-08-06 18:24:00
111682    34863    814    2017-08-06 20:31:00    2017-08-06 20:31:00
111683    34863    814    2017-08-06 01:38:00    2017-08-06 01:38:00
111684    34863    920    2017-08-06 03:57:00    2017-08-06 03:57:00
111685    34864    599    2017-08-07 08:36:00    2017-08-07 08:36:00
111686    34864    837    2017-08-07 08:04:00    2017-08-07 08:04:00
111687    34864    894    2017-08-07 19:33:00    2017-08-07 19:33:00
111688    34864    858    2017-08-07 19:38:00    2017-08-07 19:38:00
111689    34864    816    2017-08-07 11:27:00    2017-08-07 11:27:00
111690    34865    903    2017-08-07 12:35:00    2017-08-07 12:35:00
111691    34865    939    2017-08-07 06:37:00    2017-08-07 06:37:00
111692    34865    547    2017-08-07 08:34:00    2017-08-07 08:34:00
111693    34865    798    2017-08-07 08:38:00    2017-08-07 08:38:00
111694    34865    498    2017-08-07 05:52:00    2017-08-07 05:52:00
111695    34866    736    2017-08-07 05:45:00    2017-08-07 05:45:00
111696    34866    619    2017-08-07 22:28:00    2017-08-07 22:28:00
111697    34866    618    2017-08-07 01:02:00    2017-08-07 01:02:00
111698    34866    520    2017-08-07 22:14:00    2017-08-07 22:14:00
111699    34866    641    2017-08-07 21:25:00    2017-08-07 21:25:00
111700    34867    904    2017-08-07 06:58:00    2017-08-07 06:58:00
111701    34867    472    2017-08-07 03:58:00    2017-08-07 03:58:00
111702    34867    858    2017-08-07 10:16:00    2017-08-07 10:16:00
111703    34867    867    2017-08-07 12:10:00    2017-08-07 12:10:00
111704    34867    500    2017-08-07 20:47:00    2017-08-07 20:47:00
111705    34868    534    2017-08-07 04:40:00    2017-08-07 04:40:00
111706    34868    571    2017-08-07 09:52:00    2017-08-07 09:52:00
111707    34868    557    2017-08-07 17:48:00    2017-08-07 17:48:00
111708    34868    600    2017-08-07 10:20:00    2017-08-07 10:20:00
111709    34868    736    2017-08-07 07:27:00    2017-08-07 07:27:00
111710    34869    626    2017-08-07 15:35:00    2017-08-07 15:35:00
111711    34869    613    2017-08-07 04:38:00    2017-08-07 04:38:00
111712    34869    493    2017-08-07 14:05:00    2017-08-07 14:05:00
111713    34869    601    2017-08-07 19:33:00    2017-08-07 19:33:00
111714    34869    676    2017-08-07 04:38:00    2017-08-07 04:38:00
111715    34870    924    2017-08-07 10:21:00    2017-08-07 10:21:00
111716    34870    955    2017-08-07 11:13:00    2017-08-07 11:13:00
111717    34870    681    2017-08-07 14:28:00    2017-08-07 14:28:00
111718    34870    514    2017-08-07 06:36:00    2017-08-07 06:36:00
111719    34870    646    2017-08-07 11:48:00    2017-08-07 11:48:00
111720    34871    830    2017-08-07 14:08:00    2017-08-07 14:08:00
111721    34871    760    2017-08-07 12:33:00    2017-08-07 12:33:00
111722    34871    503    2017-08-07 09:36:00    2017-08-07 09:36:00
111723    34871    961    2017-08-07 14:33:00    2017-08-07 14:33:00
111724    34871    659    2017-08-07 11:27:00    2017-08-07 11:27:00
111725    34872    747    2017-08-07 18:43:00    2017-08-07 18:43:00
111726    34872    739    2017-08-07 15:27:00    2017-08-07 15:27:00
111727    34872    790    2017-08-07 16:00:00    2017-08-07 16:00:00
111728    34872    601    2017-08-07 11:21:00    2017-08-07 11:21:00
111729    34872    480    2017-08-07 22:22:00    2017-08-07 22:22:00
111730    34873    961    2017-08-07 01:44:00    2017-08-07 01:44:00
111731    34873    558    2017-08-07 01:08:00    2017-08-07 01:08:00
111732    34873    542    2017-08-07 02:52:00    2017-08-07 02:52:00
111733    34873    550    2017-08-07 15:00:00    2017-08-07 15:00:00
111734    34873    663    2017-08-07 12:42:00    2017-08-07 12:42:00
111735    34874    706    2017-08-07 17:23:00    2017-08-07 17:23:00
111736    34874    517    2017-08-07 05:01:00    2017-08-07 05:01:00
111737    34874    743    2017-08-07 13:15:00    2017-08-07 13:15:00
111738    34874    500    2017-08-07 04:31:00    2017-08-07 04:31:00
111739    34874    697    2017-08-07 12:15:00    2017-08-07 12:15:00
111740    34875    615    2017-08-07 23:32:00    2017-08-07 23:32:00
111741    34875    940    2017-08-07 19:14:00    2017-08-07 19:14:00
111742    34875    620    2017-08-07 18:31:00    2017-08-07 18:31:00
111743    34875    809    2017-08-07 10:40:00    2017-08-07 10:40:00
111744    34875    890    2017-08-07 03:07:00    2017-08-07 03:07:00
111745    34876    695    2017-08-07 16:34:00    2017-08-07 16:34:00
111746    34876    471    2017-08-07 23:08:00    2017-08-07 23:08:00
111747    34876    706    2017-08-07 03:24:00    2017-08-07 03:24:00
111748    34876    958    2017-08-07 23:00:00    2017-08-07 23:00:00
111749    34876    846    2017-08-07 13:40:00    2017-08-07 13:40:00
111750    34877    800    2017-08-07 21:24:00    2017-08-07 21:24:00
111751    34877    782    2017-08-07 20:48:00    2017-08-07 20:48:00
111752    34877    600    2017-08-07 02:46:00    2017-08-07 02:46:00
111753    34877    748    2017-08-07 23:55:00    2017-08-07 23:55:00
111754    34877    779    2017-08-07 21:48:00    2017-08-07 21:48:00
111755    34878    859    2017-08-08 21:30:00    2017-08-08 21:30:00
111756    34878    646    2017-08-08 22:16:00    2017-08-08 22:16:00
111757    34878    564    2017-08-08 15:56:00    2017-08-08 15:56:00
111758    34878    777    2017-08-08 08:20:00    2017-08-08 08:20:00
111759    34878    524    2017-08-08 23:12:00    2017-08-08 23:12:00
111760    34879    468    2017-08-08 09:21:00    2017-08-08 09:21:00
111761    34879    911    2017-08-08 07:16:00    2017-08-08 07:16:00
111762    34879    814    2017-08-08 09:24:00    2017-08-08 09:24:00
111763    34879    723    2017-08-08 10:53:00    2017-08-08 10:53:00
111764    34879    492    2017-08-08 02:02:00    2017-08-08 02:02:00
111765    34880    781    2017-08-08 18:16:00    2017-08-08 18:16:00
111766    34880    489    2017-08-08 09:20:00    2017-08-08 09:20:00
111767    34880    483    2017-08-08 14:04:00    2017-08-08 14:04:00
111768    34880    704    2017-08-08 01:10:00    2017-08-08 01:10:00
111769    34880    482    2017-08-08 07:28:00    2017-08-08 07:28:00
111770    34881    566    2017-08-08 12:26:00    2017-08-08 12:26:00
111771    34881    661    2017-08-08 13:32:00    2017-08-08 13:32:00
111772    34881    912    2017-08-08 12:07:00    2017-08-08 12:07:00
111773    34881    798    2017-08-08 07:56:00    2017-08-08 07:56:00
111774    34881    566    2017-08-08 07:30:00    2017-08-08 07:30:00
111775    34882    596    2017-08-08 04:56:00    2017-08-08 04:56:00
111776    34882    707    2017-08-08 20:18:00    2017-08-08 20:18:00
111777    34882    513    2017-08-08 18:58:00    2017-08-08 18:58:00
111778    34882    797    2017-08-08 01:21:00    2017-08-08 01:21:00
111779    34882    626    2017-08-08 09:32:00    2017-08-08 09:32:00
111780    34883    797    2017-08-08 22:53:00    2017-08-08 22:53:00
111781    34883    833    2017-08-08 05:28:00    2017-08-08 05:28:00
111782    34883    903    2017-08-08 20:17:00    2017-08-08 20:17:00
111783    34883    755    2017-08-08 18:37:00    2017-08-08 18:37:00
111784    34883    560    2017-08-08 03:57:00    2017-08-08 03:57:00
111785    34884    675    2017-08-08 21:21:00    2017-08-08 21:21:00
111786    34884    859    2017-08-08 18:11:00    2017-08-08 18:11:00
111787    34884    923    2017-08-08 22:53:00    2017-08-08 22:53:00
111788    34884    671    2017-08-08 14:58:00    2017-08-08 14:58:00
111789    34884    586    2017-08-08 01:18:00    2017-08-08 01:18:00
111790    34885    515    2017-08-08 01:12:00    2017-08-08 01:12:00
111791    34885    946    2017-08-08 09:42:00    2017-08-08 09:42:00
111792    34885    772    2017-08-08 13:27:00    2017-08-08 13:27:00
111793    34885    740    2017-08-08 06:59:00    2017-08-08 06:59:00
111794    34885    716    2017-08-08 18:09:00    2017-08-08 18:09:00
111795    34886    596    2017-08-08 04:44:00    2017-08-08 04:44:00
111796    34886    681    2017-08-08 14:11:00    2017-08-08 14:11:00
111797    34886    776    2017-08-08 19:20:00    2017-08-08 19:20:00
111798    34886    484    2017-08-08 20:59:00    2017-08-08 20:59:00
111799    34886    576    2017-08-08 13:10:00    2017-08-08 13:10:00
111800    34887    893    2017-08-08 16:18:00    2017-08-08 16:18:00
111801    34887    849    2017-08-08 05:48:00    2017-08-08 05:48:00
111802    34887    712    2017-08-08 07:43:00    2017-08-08 07:43:00
111803    34887    758    2017-08-08 09:26:00    2017-08-08 09:26:00
111804    34887    547    2017-08-08 11:46:00    2017-08-08 11:46:00
111805    34888    904    2017-08-08 20:06:00    2017-08-08 20:06:00
111806    34888    727    2017-08-08 12:38:00    2017-08-08 12:38:00
111807    34888    875    2017-08-08 01:26:00    2017-08-08 01:26:00
111808    34888    872    2017-08-08 08:24:00    2017-08-08 08:24:00
111809    34888    766    2017-08-08 21:10:00    2017-08-08 21:10:00
111810    34889    464    2017-08-08 12:36:00    2017-08-08 12:36:00
111811    34889    930    2017-08-08 08:48:00    2017-08-08 08:48:00
111812    34889    640    2017-08-08 04:16:00    2017-08-08 04:16:00
111813    34889    762    2017-08-08 06:33:00    2017-08-08 06:33:00
111814    34889    809    2017-08-08 03:11:00    2017-08-08 03:11:00
111815    34890    775    2017-08-08 16:41:00    2017-08-08 16:41:00
111816    34890    816    2017-08-08 06:00:00    2017-08-08 06:00:00
111817    34890    735    2017-08-08 01:17:00    2017-08-08 01:17:00
111818    34890    491    2017-08-08 18:39:00    2017-08-08 18:39:00
111819    34890    615    2017-08-08 12:51:00    2017-08-08 12:51:00
111820    34891    827    2017-08-08 02:51:00    2017-08-08 02:51:00
111821    34891    612    2017-08-08 13:46:00    2017-08-08 13:46:00
111822    34891    730    2017-08-08 10:35:00    2017-08-08 10:35:00
111823    34891    627    2017-08-08 18:27:00    2017-08-08 18:27:00
111824    34891    772    2017-08-08 06:53:00    2017-08-08 06:53:00
111825    34892    570    2017-08-08 13:51:00    2017-08-08 13:51:00
111826    34892    868    2017-08-08 11:41:00    2017-08-08 11:41:00
111827    34892    641    2017-08-08 03:57:00    2017-08-08 03:57:00
111828    34892    670    2017-08-08 16:48:00    2017-08-08 16:48:00
111829    34892    740    2017-08-08 15:20:00    2017-08-08 15:20:00
111830    34893    895    2017-08-08 18:19:00    2017-08-08 18:19:00
111831    34893    701    2017-08-08 10:12:00    2017-08-08 10:12:00
111832    34893    922    2017-08-08 16:24:00    2017-08-08 16:24:00
111833    34893    655    2017-08-08 11:26:00    2017-08-08 11:26:00
111834    34893    882    2017-08-08 07:48:00    2017-08-08 07:48:00
111835    34894    686    2017-08-08 09:26:00    2017-08-08 09:26:00
111836    34894    821    2017-08-08 23:37:00    2017-08-08 23:37:00
111837    34894    867    2017-08-08 20:26:00    2017-08-08 20:26:00
111838    34894    731    2017-08-08 03:02:00    2017-08-08 03:02:00
111839    34894    481    2017-08-08 22:39:00    2017-08-08 22:39:00
111840    34895    539    2017-08-08 14:00:00    2017-08-08 14:00:00
111841    34895    587    2017-08-08 21:11:00    2017-08-08 21:11:00
111842    34895    767    2017-08-08 12:45:00    2017-08-08 12:45:00
111843    34895    506    2017-08-08 15:39:00    2017-08-08 15:39:00
111844    34895    896    2017-08-08 02:42:00    2017-08-08 02:42:00
111845    34896    816    2017-08-08 13:58:00    2017-08-08 13:58:00
111846    34896    810    2017-08-08 16:56:00    2017-08-08 16:56:00
111847    34896    743    2017-08-08 17:15:00    2017-08-08 17:15:00
111848    34896    907    2017-08-08 06:32:00    2017-08-08 06:32:00
111849    34896    847    2017-08-08 14:36:00    2017-08-08 14:36:00
111850    34897    650    2017-08-08 22:46:00    2017-08-08 22:46:00
111851    34897    605    2017-08-08 21:32:00    2017-08-08 21:32:00
111852    34897    642    2017-08-08 18:31:00    2017-08-08 18:31:00
111853    34897    782    2017-08-08 14:20:00    2017-08-08 14:20:00
111854    34897    511    2017-08-08 07:19:00    2017-08-08 07:19:00
111855    34898    782    2017-08-08 09:43:00    2017-08-08 09:43:00
111856    34898    522    2017-08-08 20:18:00    2017-08-08 20:18:00
111857    34898    892    2017-08-08 18:04:00    2017-08-08 18:04:00
111858    34898    546    2017-08-08 23:36:00    2017-08-08 23:36:00
111859    34898    937    2017-08-08 06:55:00    2017-08-08 06:55:00
111860    34899    644    2017-08-08 01:07:00    2017-08-08 01:07:00
111861    34899    524    2017-08-08 16:01:00    2017-08-08 16:01:00
111862    34899    510    2017-08-08 09:11:00    2017-08-08 09:11:00
111863    34899    702    2017-08-08 22:19:00    2017-08-08 22:19:00
111864    34899    588    2017-08-08 14:58:00    2017-08-08 14:58:00
111865    34900    662    2017-08-08 05:38:00    2017-08-08 05:38:00
111866    34900    957    2017-08-08 23:33:00    2017-08-08 23:33:00
111867    34900    851    2017-08-08 04:00:00    2017-08-08 04:00:00
111868    34900    726    2017-08-08 04:15:00    2017-08-08 04:15:00
111869    34900    657    2017-08-08 11:41:00    2017-08-08 11:41:00
111870    34901    600    2017-08-08 16:47:00    2017-08-08 16:47:00
111871    34901    468    2017-08-08 09:43:00    2017-08-08 09:43:00
111872    34901    871    2017-08-08 19:14:00    2017-08-08 19:14:00
111873    34901    618    2017-08-08 07:26:00    2017-08-08 07:26:00
111874    34901    837    2017-08-08 06:41:00    2017-08-08 06:41:00
111875    34902    798    2017-08-08 11:55:00    2017-08-08 11:55:00
111876    34902    472    2017-08-08 06:00:00    2017-08-08 06:00:00
111877    34902    591    2017-08-08 08:27:00    2017-08-08 08:27:00
111878    34902    736    2017-08-08 07:57:00    2017-08-08 07:57:00
111879    34902    861    2017-08-08 14:35:00    2017-08-08 14:35:00
111880    34903    902    2017-08-08 06:19:00    2017-08-08 06:19:00
111881    34903    788    2017-08-08 22:44:00    2017-08-08 22:44:00
111882    34903    724    2017-08-08 16:43:00    2017-08-08 16:43:00
111883    34903    613    2017-08-08 05:33:00    2017-08-08 05:33:00
111884    34903    934    2017-08-08 02:26:00    2017-08-08 02:26:00
111885    34904    848    2017-08-08 23:45:00    2017-08-08 23:45:00
111886    34904    593    2017-08-08 10:45:00    2017-08-08 10:45:00
111887    34904    593    2017-08-08 05:24:00    2017-08-08 05:24:00
111888    34904    508    2017-08-08 09:16:00    2017-08-08 09:16:00
111889    34904    512    2017-08-08 10:06:00    2017-08-08 10:06:00
111890    34905    949    2017-08-08 05:56:00    2017-08-08 05:56:00
111891    34905    944    2017-08-08 12:09:00    2017-08-08 12:09:00
111892    34905    811    2017-08-08 10:48:00    2017-08-08 10:48:00
111893    34905    717    2017-08-08 09:02:00    2017-08-08 09:02:00
111894    34905    851    2017-08-08 06:28:00    2017-08-08 06:28:00
111895    34906    492    2017-08-08 21:29:00    2017-08-08 21:29:00
111896    34906    768    2017-08-08 02:17:00    2017-08-08 02:17:00
111897    34906    553    2017-08-08 15:22:00    2017-08-08 15:22:00
111898    34906    743    2017-08-08 02:44:00    2017-08-08 02:44:00
111899    34906    675    2017-08-08 19:29:00    2017-08-08 19:29:00
111900    34907    623    2017-08-08 09:59:00    2017-08-08 09:59:00
111901    34907    707    2017-08-08 16:39:00    2017-08-08 16:39:00
111902    34907    608    2017-08-08 22:46:00    2017-08-08 22:46:00
111903    34907    670    2017-08-08 08:37:00    2017-08-08 08:37:00
111904    34907    511    2017-08-08 20:09:00    2017-08-08 20:09:00
111905    34908    506    2017-08-08 19:58:00    2017-08-08 19:58:00
111906    34908    638    2017-08-08 12:12:00    2017-08-08 12:12:00
111907    34908    597    2017-08-08 02:06:00    2017-08-08 02:06:00
111908    34908    692    2017-08-08 07:19:00    2017-08-08 07:19:00
111909    34908    910    2017-08-08 06:27:00    2017-08-08 06:27:00
111910    34909    488    2017-08-08 06:12:00    2017-08-08 06:12:00
111911    34909    551    2017-08-08 06:49:00    2017-08-08 06:49:00
111912    34909    691    2017-08-08 18:27:00    2017-08-08 18:27:00
111913    34909    610    2017-08-08 15:06:00    2017-08-08 15:06:00
111914    34909    514    2017-08-08 11:18:00    2017-08-08 11:18:00
111915    34910    576    2017-08-08 06:55:00    2017-08-08 06:55:00
111916    34910    470    2017-08-08 07:56:00    2017-08-08 07:56:00
111917    34910    479    2017-08-08 11:16:00    2017-08-08 11:16:00
111918    34910    474    2017-08-08 18:18:00    2017-08-08 18:18:00
111919    34910    493    2017-08-08 14:54:00    2017-08-08 14:54:00
111920    34911    908    2017-08-08 08:22:00    2017-08-08 08:22:00
111921    34911    530    2017-08-08 16:05:00    2017-08-08 16:05:00
111922    34911    734    2017-08-08 13:18:00    2017-08-08 13:18:00
111923    34911    895    2017-08-08 12:23:00    2017-08-08 12:23:00
111924    34911    498    2017-08-08 18:22:00    2017-08-08 18:22:00
111925    34912    787    2017-08-08 13:28:00    2017-08-08 13:28:00
111926    34912    503    2017-08-08 18:54:00    2017-08-08 18:54:00
111927    34912    498    2017-08-08 12:42:00    2017-08-08 12:42:00
111928    34912    900    2017-08-08 07:00:00    2017-08-08 07:00:00
111929    34912    532    2017-08-08 10:03:00    2017-08-08 10:03:00
111930    34913    803    2017-08-08 11:20:00    2017-08-08 11:20:00
111931    34913    762    2017-08-08 06:21:00    2017-08-08 06:21:00
111932    34913    846    2017-08-08 03:23:00    2017-08-08 03:23:00
111933    34913    809    2017-08-08 10:59:00    2017-08-08 10:59:00
111934    34913    859    2017-08-08 07:36:00    2017-08-08 07:36:00
111935    34914    753    2017-08-08 14:11:00    2017-08-08 14:11:00
111936    34914    787    2017-08-08 22:45:00    2017-08-08 22:45:00
111937    34914    643    2017-08-08 21:09:00    2017-08-08 21:09:00
111938    34914    524    2017-08-08 14:11:00    2017-08-08 14:11:00
111939    34914    921    2017-08-08 08:35:00    2017-08-08 08:35:00
111940    34915    797    2017-08-08 14:16:00    2017-08-08 14:16:00
111941    34915    498    2017-08-08 01:02:00    2017-08-08 01:02:00
111942    34915    829    2017-08-08 02:17:00    2017-08-08 02:17:00
111943    34915    552    2017-08-08 13:21:00    2017-08-08 13:21:00
111944    34915    900    2017-08-08 22:24:00    2017-08-08 22:24:00
111945    34916    805    2017-08-08 20:52:00    2017-08-08 20:52:00
111946    34916    711    2017-08-08 07:38:00    2017-08-08 07:38:00
111947    34916    479    2017-08-08 12:10:00    2017-08-08 12:10:00
111948    34916    467    2017-08-08 14:25:00    2017-08-08 14:25:00
111949    34916    875    2017-08-08 05:44:00    2017-08-08 05:44:00
111950    34917    572    2017-08-08 02:12:00    2017-08-08 02:12:00
111951    34917    907    2017-08-08 14:09:00    2017-08-08 14:09:00
111952    34917    539    2017-08-08 03:52:00    2017-08-08 03:52:00
111953    34917    613    2017-08-08 08:16:00    2017-08-08 08:16:00
111954    34917    662    2017-08-08 02:16:00    2017-08-08 02:16:00
111955    34918    757    2017-08-08 04:31:00    2017-08-08 04:31:00
111956    34918    730    2017-08-08 04:47:00    2017-08-08 04:47:00
111957    34918    807    2017-08-08 11:00:00    2017-08-08 11:00:00
111958    34918    942    2017-08-08 09:21:00    2017-08-08 09:21:00
111959    34918    548    2017-08-08 01:54:00    2017-08-08 01:54:00
111960    34919    955    2017-08-08 13:06:00    2017-08-08 13:06:00
111961    34919    644    2017-08-08 07:51:00    2017-08-08 07:51:00
111962    34919    654    2017-08-08 08:51:00    2017-08-08 08:51:00
111963    34919    574    2017-08-08 08:42:00    2017-08-08 08:42:00
111964    34919    705    2017-08-08 12:29:00    2017-08-08 12:29:00
111965    34920    476    2017-08-08 12:59:00    2017-08-08 12:59:00
111966    34920    652    2017-08-08 02:23:00    2017-08-08 02:23:00
111967    34920    466    2017-08-08 04:02:00    2017-08-08 04:02:00
111968    34920    547    2017-08-08 02:01:00    2017-08-08 02:01:00
111969    34920    490    2017-08-08 21:22:00    2017-08-08 21:22:00
111970    34921    774    2017-08-08 16:30:00    2017-08-08 16:30:00
111971    34921    957    2017-08-08 20:11:00    2017-08-08 20:11:00
111972    34921    706    2017-08-08 16:33:00    2017-08-08 16:33:00
111973    34921    817    2017-08-08 19:59:00    2017-08-08 19:59:00
111974    34921    644    2017-08-08 22:59:00    2017-08-08 22:59:00
111975    34922    588    2017-08-08 11:19:00    2017-08-08 11:19:00
111976    34922    469    2017-08-08 17:18:00    2017-08-08 17:18:00
111977    34922    717    2017-08-08 11:22:00    2017-08-08 11:22:00
111978    34922    511    2017-08-08 05:18:00    2017-08-08 05:18:00
111979    34922    765    2017-08-08 20:09:00    2017-08-08 20:09:00
111980    34923    765    2017-08-08 19:08:00    2017-08-08 19:08:00
111981    34923    758    2017-08-08 21:21:00    2017-08-08 21:21:00
111982    34923    618    2017-08-08 01:18:00    2017-08-08 01:18:00
111983    34923    730    2017-08-08 10:23:00    2017-08-08 10:23:00
111984    34923    665    2017-08-08 04:29:00    2017-08-08 04:29:00
111985    34924    595    2017-08-08 17:53:00    2017-08-08 17:53:00
111986    34924    805    2017-08-08 03:31:00    2017-08-08 03:31:00
111987    34924    931    2017-08-08 05:40:00    2017-08-08 05:40:00
111988    34924    554    2017-08-08 09:02:00    2017-08-08 09:02:00
111989    34924    916    2017-08-08 06:12:00    2017-08-08 06:12:00
111990    34925    545    2017-08-08 19:18:00    2017-08-08 19:18:00
111991    34925    922    2017-08-08 08:09:00    2017-08-08 08:09:00
111992    34925    602    2017-08-08 12:51:00    2017-08-08 12:51:00
111993    34925    580    2017-08-08 09:38:00    2017-08-08 09:38:00
111994    34925    959    2017-08-08 20:03:00    2017-08-08 20:03:00
111995    34926    742    2017-08-08 22:36:00    2017-08-08 22:36:00
111996    34926    687    2017-08-08 23:40:00    2017-08-08 23:40:00
111997    34926    926    2017-08-08 16:54:00    2017-08-08 16:54:00
111998    34926    597    2017-08-08 12:32:00    2017-08-08 12:32:00
111999    34926    604    2017-08-08 13:30:00    2017-08-08 13:30:00
112000    34927    684    2017-08-08 05:26:00    2017-08-08 05:26:00
112001    34927    746    2017-08-08 10:02:00    2017-08-08 10:02:00
112002    34927    520    2017-08-08 15:07:00    2017-08-08 15:07:00
112003    34927    595    2017-08-08 11:13:00    2017-08-08 11:13:00
112004    34927    720    2017-08-08 06:21:00    2017-08-08 06:21:00
112005    34928    610    2017-08-08 15:59:00    2017-08-08 15:59:00
112006    34928    545    2017-08-08 06:35:00    2017-08-08 06:35:00
112007    34928    696    2017-08-08 07:36:00    2017-08-08 07:36:00
112008    34928    680    2017-08-08 08:21:00    2017-08-08 08:21:00
112009    34928    685    2017-08-08 05:18:00    2017-08-08 05:18:00
112010    34929    835    2017-08-08 15:00:00    2017-08-08 15:00:00
112011    34929    955    2017-08-08 05:25:00    2017-08-08 05:25:00
112012    34929    741    2017-08-08 22:22:00    2017-08-08 22:22:00
112013    34929    868    2017-08-08 15:13:00    2017-08-08 15:13:00
112014    34929    749    2017-08-08 07:09:00    2017-08-08 07:09:00
112015    34930    902    2017-08-08 06:32:00    2017-08-08 06:32:00
112016    34930    811    2017-08-08 06:07:00    2017-08-08 06:07:00
112017    34930    490    2017-08-08 14:39:00    2017-08-08 14:39:00
112018    34930    549    2017-08-08 08:57:00    2017-08-08 08:57:00
112019    34930    909    2017-08-08 15:49:00    2017-08-08 15:49:00
112020    34931    488    2017-08-08 08:00:00    2017-08-08 08:00:00
112021    34931    946    2017-08-08 16:13:00    2017-08-08 16:13:00
112022    34931    527    2017-08-08 04:15:00    2017-08-08 04:15:00
112023    34931    899    2017-08-08 21:39:00    2017-08-08 21:39:00
112024    34931    869    2017-08-08 13:24:00    2017-08-08 13:24:00
112025    34932    939    2017-08-08 14:45:00    2017-08-08 14:45:00
112026    34932    709    2017-08-08 05:44:00    2017-08-08 05:44:00
112027    34932    685    2017-08-08 10:09:00    2017-08-08 10:09:00
112028    34932    474    2017-08-08 10:34:00    2017-08-08 10:34:00
112029    34932    827    2017-08-08 22:06:00    2017-08-08 22:06:00
112030    34933    552    2017-08-08 02:42:00    2017-08-08 02:42:00
112031    34933    831    2017-08-08 15:33:00    2017-08-08 15:33:00
112032    34933    672    2017-08-08 10:02:00    2017-08-08 10:02:00
112033    34933    786    2017-08-08 06:35:00    2017-08-08 06:35:00
112034    34933    752    2017-08-08 23:21:00    2017-08-08 23:21:00
112035    34934    837    2017-08-08 12:43:00    2017-08-08 12:43:00
112036    34934    563    2017-08-08 09:43:00    2017-08-08 09:43:00
112037    34934    521    2017-08-08 07:05:00    2017-08-08 07:05:00
112038    34934    642    2017-08-08 16:57:00    2017-08-08 16:57:00
112039    34934    858    2017-08-08 01:04:00    2017-08-08 01:04:00
112040    34935    660    2017-08-08 20:11:00    2017-08-08 20:11:00
112041    34935    741    2017-08-08 22:34:00    2017-08-08 22:34:00
112042    34935    696    2017-08-08 21:57:00    2017-08-08 21:57:00
112043    34935    599    2017-08-08 06:17:00    2017-08-08 06:17:00
112044    34935    525    2017-08-08 22:43:00    2017-08-08 22:43:00
112045    34936    649    2017-08-08 08:28:00    2017-08-08 08:28:00
112046    34936    467    2017-08-08 11:00:00    2017-08-08 11:00:00
112047    34936    755    2017-08-08 02:53:00    2017-08-08 02:53:00
112048    34936    762    2017-08-08 11:25:00    2017-08-08 11:25:00
112049    34936    828    2017-08-08 21:49:00    2017-08-08 21:49:00
112050    34937    788    2017-08-08 12:53:00    2017-08-08 12:53:00
112051    34937    877    2017-08-08 03:53:00    2017-08-08 03:53:00
112052    34937    856    2017-08-08 23:57:00    2017-08-08 23:57:00
112053    34937    899    2017-08-08 02:55:00    2017-08-08 02:55:00
112054    34937    837    2017-08-08 03:46:00    2017-08-08 03:46:00
112055    34938    847    2017-08-08 10:10:00    2017-08-08 10:10:00
112056    34938    731    2017-08-08 19:56:00    2017-08-08 19:56:00
112057    34938    771    2017-08-08 13:01:00    2017-08-08 13:01:00
112058    34938    886    2017-08-08 15:53:00    2017-08-08 15:53:00
112059    34938    805    2017-08-08 20:34:00    2017-08-08 20:34:00
112060    34939    824    2017-08-08 22:33:00    2017-08-08 22:33:00
112061    34939    944    2017-08-08 10:24:00    2017-08-08 10:24:00
112062    34939    905    2017-08-08 06:58:00    2017-08-08 06:58:00
112063    34939    904    2017-08-08 17:13:00    2017-08-08 17:13:00
112064    34939    577    2017-08-08 05:45:00    2017-08-08 05:45:00
112065    34940    658    2017-08-09 17:04:00    2017-08-09 17:04:00
112066    34940    560    2017-08-09 09:36:00    2017-08-09 09:36:00
112067    34940    864    2017-08-09 05:40:00    2017-08-09 05:40:00
112068    34940    750    2017-08-09 13:14:00    2017-08-09 13:14:00
112069    34940    673    2017-08-09 14:33:00    2017-08-09 14:33:00
112070    34941    571    2017-08-09 16:34:00    2017-08-09 16:34:00
112071    34941    813    2017-08-09 14:40:00    2017-08-09 14:40:00
112072    34941    757    2017-08-09 13:42:00    2017-08-09 13:42:00
112073    34941    679    2017-08-09 10:46:00    2017-08-09 10:46:00
112074    34941    821    2017-08-09 02:11:00    2017-08-09 02:11:00
112075    34942    735    2017-08-09 07:44:00    2017-08-09 07:44:00
112076    34942    851    2017-08-09 11:20:00    2017-08-09 11:20:00
112077    34942    759    2017-08-09 03:32:00    2017-08-09 03:32:00
112078    34942    490    2017-08-09 06:36:00    2017-08-09 06:36:00
112079    34942    633    2017-08-09 10:40:00    2017-08-09 10:40:00
112080    34943    811    2017-08-09 20:33:00    2017-08-09 20:33:00
112081    34943    725    2017-08-09 01:42:00    2017-08-09 01:42:00
112082    34943    536    2017-08-09 10:02:00    2017-08-09 10:02:00
112083    34943    889    2017-08-09 13:58:00    2017-08-09 13:58:00
112084    34943    831    2017-08-09 15:00:00    2017-08-09 15:00:00
112085    34944    525    2017-08-09 01:20:00    2017-08-09 01:20:00
112086    34944    722    2017-08-09 12:22:00    2017-08-09 12:22:00
112087    34944    634    2017-08-09 12:05:00    2017-08-09 12:05:00
112088    34944    696    2017-08-09 16:54:00    2017-08-09 16:54:00
112089    34944    875    2017-08-09 23:20:00    2017-08-09 23:20:00
112090    34945    471    2017-08-09 06:21:00    2017-08-09 06:21:00
112091    34945    794    2017-08-09 10:16:00    2017-08-09 10:16:00
112092    34945    669    2017-08-09 02:23:00    2017-08-09 02:23:00
112093    34945    534    2017-08-09 23:21:00    2017-08-09 23:21:00
112094    34945    781    2017-08-09 17:00:00    2017-08-09 17:00:00
112095    34946    936    2017-08-09 10:50:00    2017-08-09 10:50:00
112096    34946    700    2017-08-09 22:03:00    2017-08-09 22:03:00
112097    34946    675    2017-08-09 07:59:00    2017-08-09 07:59:00
112098    34946    956    2017-08-09 03:05:00    2017-08-09 03:05:00
112099    34946    747    2017-08-09 06:59:00    2017-08-09 06:59:00
112100    34947    701    2017-08-09 03:09:00    2017-08-09 03:09:00
112101    34947    935    2017-08-09 14:17:00    2017-08-09 14:17:00
112102    34947    607    2017-08-09 01:01:00    2017-08-09 01:01:00
112103    34947    493    2017-08-09 13:26:00    2017-08-09 13:26:00
112104    34947    906    2017-08-09 21:58:00    2017-08-09 21:58:00
112105    34948    900    2017-08-09 07:50:00    2017-08-09 07:50:00
112106    34948    588    2017-08-09 11:22:00    2017-08-09 11:22:00
112107    34948    737    2017-08-09 07:27:00    2017-08-09 07:27:00
112108    34948    704    2017-08-09 15:28:00    2017-08-09 15:28:00
112109    34948    487    2017-08-09 19:10:00    2017-08-09 19:10:00
112110    34949    861    2017-08-09 13:02:00    2017-08-09 13:02:00
112111    34949    468    2017-08-09 06:53:00    2017-08-09 06:53:00
112112    34949    579    2017-08-09 10:17:00    2017-08-09 10:17:00
112113    34949    551    2017-08-09 18:43:00    2017-08-09 18:43:00
112114    34949    809    2017-08-09 12:29:00    2017-08-09 12:29:00
112115    34950    548    2017-08-09 04:57:00    2017-08-09 04:57:00
112116    34950    725    2017-08-09 10:25:00    2017-08-09 10:25:00
112117    34950    777    2017-08-09 05:39:00    2017-08-09 05:39:00
112118    34950    707    2017-08-09 08:23:00    2017-08-09 08:23:00
112119    34950    923    2017-08-09 09:25:00    2017-08-09 09:25:00
112120    34951    771    2017-08-09 19:43:00    2017-08-09 19:43:00
112121    34951    720    2017-08-09 07:27:00    2017-08-09 07:27:00
112122    34951    835    2017-08-09 23:36:00    2017-08-09 23:36:00
112123    34951    720    2017-08-09 06:58:00    2017-08-09 06:58:00
112124    34951    511    2017-08-09 22:42:00    2017-08-09 22:42:00
112125    34952    620    2017-08-09 22:32:00    2017-08-09 22:32:00
112126    34952    550    2017-08-09 10:08:00    2017-08-09 10:08:00
112127    34952    856    2017-08-09 07:29:00    2017-08-09 07:29:00
112128    34952    826    2017-08-09 04:24:00    2017-08-09 04:24:00
112129    34952    755    2017-08-09 09:13:00    2017-08-09 09:13:00
112130    34953    651    2017-08-09 16:31:00    2017-08-09 16:31:00
112131    34953    787    2017-08-09 06:53:00    2017-08-09 06:53:00
112132    34953    774    2017-08-09 15:45:00    2017-08-09 15:45:00
112133    34953    582    2017-08-09 15:40:00    2017-08-09 15:40:00
112134    34953    793    2017-08-09 13:42:00    2017-08-09 13:42:00
112135    34954    957    2017-08-09 16:57:00    2017-08-09 16:57:00
112136    34954    757    2017-08-09 02:37:00    2017-08-09 02:37:00
112137    34954    514    2017-08-09 18:02:00    2017-08-09 18:02:00
112138    34954    705    2017-08-09 18:38:00    2017-08-09 18:38:00
112139    34954    800    2017-08-09 21:30:00    2017-08-09 21:30:00
112140    34955    826    2017-08-09 19:31:00    2017-08-09 19:31:00
112141    34955    787    2017-08-09 21:02:00    2017-08-09 21:02:00
112142    34955    752    2017-08-09 21:47:00    2017-08-09 21:47:00
112143    34955    830    2017-08-09 05:00:00    2017-08-09 05:00:00
112144    34955    574    2017-08-09 19:05:00    2017-08-09 19:05:00
112145    34956    532    2017-08-09 11:05:00    2017-08-09 11:05:00
112146    34956    628    2017-08-09 20:13:00    2017-08-09 20:13:00
112147    34956    465    2017-08-09 07:13:00    2017-08-09 07:13:00
112148    34956    823    2017-08-09 21:47:00    2017-08-09 21:47:00
112149    34956    904    2017-08-09 02:56:00    2017-08-09 02:56:00
112150    34957    914    2017-08-09 06:19:00    2017-08-09 06:19:00
112151    34957    488    2017-08-09 12:37:00    2017-08-09 12:37:00
112152    34957    754    2017-08-09 01:29:00    2017-08-09 01:29:00
112153    34957    715    2017-08-09 20:11:00    2017-08-09 20:11:00
112154    34957    710    2017-08-09 09:24:00    2017-08-09 09:24:00
112155    34958    609    2017-08-09 04:00:00    2017-08-09 04:00:00
112156    34958    496    2017-08-09 14:42:00    2017-08-09 14:42:00
112157    34958    818    2017-08-09 12:48:00    2017-08-09 12:48:00
112158    34958    883    2017-08-09 01:03:00    2017-08-09 01:03:00
112159    34958    545    2017-08-09 21:48:00    2017-08-09 21:48:00
112160    34959    587    2017-08-09 09:29:00    2017-08-09 09:29:00
112161    34959    549    2017-08-09 08:10:00    2017-08-09 08:10:00
112162    34959    934    2017-08-09 05:49:00    2017-08-09 05:49:00
112163    34959    891    2017-08-09 02:45:00    2017-08-09 02:45:00
112164    34959    491    2017-08-09 21:10:00    2017-08-09 21:10:00
112165    34960    640    2017-08-09 08:12:00    2017-08-09 08:12:00
112166    34960    690    2017-08-09 22:10:00    2017-08-09 22:10:00
112167    34960    479    2017-08-09 16:39:00    2017-08-09 16:39:00
112168    34960    529    2017-08-09 18:22:00    2017-08-09 18:22:00
112169    34960    771    2017-08-09 18:06:00    2017-08-09 18:06:00
112170    34961    665    2017-08-09 04:53:00    2017-08-09 04:53:00
112171    34961    846    2017-08-09 12:21:00    2017-08-09 12:21:00
112172    34961    844    2017-08-09 05:12:00    2017-08-09 05:12:00
112173    34961    467    2017-08-09 03:29:00    2017-08-09 03:29:00
112174    34961    762    2017-08-09 15:57:00    2017-08-09 15:57:00
112175    34962    852    2017-08-09 13:55:00    2017-08-09 13:55:00
112176    34962    693    2017-08-09 01:30:00    2017-08-09 01:30:00
112177    34962    935    2017-08-09 18:15:00    2017-08-09 18:15:00
112178    34962    786    2017-08-09 04:11:00    2017-08-09 04:11:00
112179    34962    944    2017-08-09 08:29:00    2017-08-09 08:29:00
112180    34963    669    2017-08-09 02:18:00    2017-08-09 02:18:00
112181    34963    924    2017-08-09 16:28:00    2017-08-09 16:28:00
112182    34963    934    2017-08-09 21:42:00    2017-08-09 21:42:00
112183    34963    489    2017-08-09 09:30:00    2017-08-09 09:30:00
112184    34963    713    2017-08-09 06:51:00    2017-08-09 06:51:00
112185    34964    473    2017-08-09 21:17:00    2017-08-09 21:17:00
112186    34964    483    2017-08-09 03:12:00    2017-08-09 03:12:00
112187    34964    771    2017-08-09 11:13:00    2017-08-09 11:13:00
112188    34964    735    2017-08-09 10:51:00    2017-08-09 10:51:00
112189    34964    538    2017-08-09 02:06:00    2017-08-09 02:06:00
112190    34965    847    2017-08-09 23:38:00    2017-08-09 23:38:00
112191    34965    686    2017-08-09 02:55:00    2017-08-09 02:55:00
112192    34965    667    2017-08-09 22:05:00    2017-08-09 22:05:00
112193    34965    886    2017-08-09 09:56:00    2017-08-09 09:56:00
112194    34965    614    2017-08-09 06:00:00    2017-08-09 06:00:00
112195    34966    749    2017-08-09 07:17:00    2017-08-09 07:17:00
112196    34966    609    2017-08-09 18:19:00    2017-08-09 18:19:00
112197    34966    544    2017-08-09 07:27:00    2017-08-09 07:27:00
112198    34966    848    2017-08-09 02:36:00    2017-08-09 02:36:00
112199    34966    686    2017-08-09 18:47:00    2017-08-09 18:47:00
112200    34967    704    2017-08-09 15:18:00    2017-08-09 15:18:00
112201    34967    721    2017-08-09 08:10:00    2017-08-09 08:10:00
112202    34967    739    2017-08-09 17:02:00    2017-08-09 17:02:00
112203    34967    489    2017-08-09 07:59:00    2017-08-09 07:59:00
112204    34967    798    2017-08-09 08:23:00    2017-08-09 08:23:00
112205    34968    783    2017-08-09 14:55:00    2017-08-09 14:55:00
112206    34968    598    2017-08-09 06:51:00    2017-08-09 06:51:00
112207    34968    941    2017-08-09 13:03:00    2017-08-09 13:03:00
112208    34968    522    2017-08-09 22:52:00    2017-08-09 22:52:00
112209    34968    894    2017-08-09 15:03:00    2017-08-09 15:03:00
112210    34969    597    2017-08-09 02:26:00    2017-08-09 02:26:00
112211    34969    718    2017-08-09 18:23:00    2017-08-09 18:23:00
112212    34969    582    2017-08-09 19:27:00    2017-08-09 19:27:00
112213    34969    676    2017-08-09 04:58:00    2017-08-09 04:58:00
112214    34969    798    2017-08-09 17:13:00    2017-08-09 17:13:00
112215    34970    900    2017-08-09 06:45:00    2017-08-09 06:45:00
112216    34970    586    2017-08-09 14:27:00    2017-08-09 14:27:00
112217    34970    634    2017-08-09 02:59:00    2017-08-09 02:59:00
112218    34970    820    2017-08-09 06:47:00    2017-08-09 06:47:00
112219    34970    802    2017-08-09 19:11:00    2017-08-09 19:11:00
112220    34971    743    2017-08-09 07:00:00    2017-08-09 07:00:00
112221    34971    535    2017-08-09 21:29:00    2017-08-09 21:29:00
112222    34971    891    2017-08-09 17:23:00    2017-08-09 17:23:00
112223    34971    788    2017-08-09 09:36:00    2017-08-09 09:36:00
112224    34971    637    2017-08-09 15:46:00    2017-08-09 15:46:00
112225    34972    641    2017-08-09 19:36:00    2017-08-09 19:36:00
112226    34972    605    2017-08-09 17:05:00    2017-08-09 17:05:00
112227    34972    497    2017-08-09 14:24:00    2017-08-09 14:24:00
112228    34972    888    2017-08-09 23:59:00    2017-08-09 23:59:00
112229    34972    938    2017-08-09 19:30:00    2017-08-09 19:30:00
112230    34973    644    2017-08-09 22:24:00    2017-08-09 22:24:00
112231    34973    878    2017-08-09 14:25:00    2017-08-09 14:25:00
112232    34973    788    2017-08-09 17:30:00    2017-08-09 17:30:00
112233    34973    734    2017-08-09 11:31:00    2017-08-09 11:31:00
112234    34973    805    2017-08-09 16:19:00    2017-08-09 16:19:00
112235    34974    679    2017-08-09 13:01:00    2017-08-09 13:01:00
112236    34974    716    2017-08-09 10:48:00    2017-08-09 10:48:00
112237    34974    608    2017-08-09 16:38:00    2017-08-09 16:38:00
112238    34974    942    2017-08-09 12:31:00    2017-08-09 12:31:00
112239    34974    787    2017-08-09 20:52:00    2017-08-09 20:52:00
112240    34975    937    2017-08-09 21:31:00    2017-08-09 21:31:00
112241    34975    961    2017-08-09 11:58:00    2017-08-09 11:58:00
112242    34975    589    2017-08-09 08:21:00    2017-08-09 08:21:00
112243    34975    805    2017-08-09 09:38:00    2017-08-09 09:38:00
112244    34975    480    2017-08-09 13:23:00    2017-08-09 13:23:00
112245    34976    780    2017-08-09 21:13:00    2017-08-09 21:13:00
112246    34976    824    2017-08-09 01:06:00    2017-08-09 01:06:00
112247    34976    671    2017-08-09 08:19:00    2017-08-09 08:19:00
112248    34976    504    2017-08-09 03:36:00    2017-08-09 03:36:00
112249    34976    802    2017-08-09 15:08:00    2017-08-09 15:08:00
112250    34977    928    2017-08-09 18:32:00    2017-08-09 18:32:00
112251    34977    784    2017-08-09 15:12:00    2017-08-09 15:12:00
112252    34977    809    2017-08-09 04:39:00    2017-08-09 04:39:00
112253    34977    574    2017-08-09 20:41:00    2017-08-09 20:41:00
112254    34977    773    2017-08-09 12:18:00    2017-08-09 12:18:00
112255    34978    739    2017-08-09 16:23:00    2017-08-09 16:23:00
112256    34978    834    2017-08-09 23:09:00    2017-08-09 23:09:00
112257    34978    585    2017-08-09 18:58:00    2017-08-09 18:58:00
112258    34978    715    2017-08-09 07:42:00    2017-08-09 07:42:00
112259    34978    470    2017-08-09 01:24:00    2017-08-09 01:24:00
112260    34979    909    2017-08-09 06:07:00    2017-08-09 06:07:00
112261    34979    544    2017-08-09 16:25:00    2017-08-09 16:25:00
112262    34979    808    2017-08-09 16:20:00    2017-08-09 16:20:00
112263    34979    949    2017-08-09 09:26:00    2017-08-09 09:26:00
112264    34979    908    2017-08-09 01:46:00    2017-08-09 01:46:00
112265    34980    918    2017-08-09 23:06:00    2017-08-09 23:06:00
112266    34980    596    2017-08-09 05:07:00    2017-08-09 05:07:00
112267    34980    863    2017-08-09 18:00:00    2017-08-09 18:00:00
112268    34980    733    2017-08-09 08:27:00    2017-08-09 08:27:00
112269    34980    853    2017-08-09 22:10:00    2017-08-09 22:10:00
112270    34981    594    2017-08-09 20:03:00    2017-08-09 20:03:00
112271    34981    747    2017-08-09 01:18:00    2017-08-09 01:18:00
112272    34981    846    2017-08-09 05:48:00    2017-08-09 05:48:00
112273    34981    666    2017-08-09 12:03:00    2017-08-09 12:03:00
112274    34981    517    2017-08-09 15:44:00    2017-08-09 15:44:00
112275    34982    730    2017-08-09 11:23:00    2017-08-09 11:23:00
112276    34982    650    2017-08-09 05:34:00    2017-08-09 05:34:00
112277    34982    560    2017-08-09 20:29:00    2017-08-09 20:29:00
112278    34982    643    2017-08-09 05:14:00    2017-08-09 05:14:00
112279    34982    642    2017-08-09 08:02:00    2017-08-09 08:02:00
112280    34983    803    2017-08-09 05:18:00    2017-08-09 05:18:00
112281    34983    839    2017-08-09 22:25:00    2017-08-09 22:25:00
112282    34983    527    2017-08-09 02:53:00    2017-08-09 02:53:00
112283    34983    549    2017-08-09 22:10:00    2017-08-09 22:10:00
112284    34983    493    2017-08-09 11:03:00    2017-08-09 11:03:00
112285    34984    490    2017-08-09 12:38:00    2017-08-09 12:38:00
112286    34984    625    2017-08-09 18:23:00    2017-08-09 18:23:00
112287    34984    638    2017-08-09 18:25:00    2017-08-09 18:25:00
112288    34984    546    2017-08-09 05:22:00    2017-08-09 05:22:00
112289    34984    846    2017-08-09 04:08:00    2017-08-09 04:08:00
112290    34985    555    2017-08-09 15:25:00    2017-08-09 15:25:00
112291    34985    905    2017-08-09 13:27:00    2017-08-09 13:27:00
112292    34985    856    2017-08-09 19:08:00    2017-08-09 19:08:00
112293    34985    881    2017-08-09 13:42:00    2017-08-09 13:42:00
112294    34985    663    2017-08-09 07:05:00    2017-08-09 07:05:00
112295    34986    606    2017-08-09 14:34:00    2017-08-09 14:34:00
112296    34986    819    2017-08-09 14:18:00    2017-08-09 14:18:00
112297    34986    958    2017-08-09 01:59:00    2017-08-09 01:59:00
112298    34986    883    2017-08-09 13:37:00    2017-08-09 13:37:00
112299    34986    847    2017-08-09 09:14:00    2017-08-09 09:14:00
112300    34987    598    2017-08-09 16:39:00    2017-08-09 16:39:00
112301    34987    712    2017-08-09 15:57:00    2017-08-09 15:57:00
112302    34987    805    2017-08-09 05:19:00    2017-08-09 05:19:00
112303    34987    629    2017-08-09 06:29:00    2017-08-09 06:29:00
112304    34987    822    2017-08-09 23:55:00    2017-08-09 23:55:00
112305    34988    757    2017-08-09 21:29:00    2017-08-09 21:29:00
112306    34988    620    2017-08-09 03:48:00    2017-08-09 03:48:00
112307    34988    558    2017-08-09 18:19:00    2017-08-09 18:19:00
112308    34988    564    2017-08-09 01:51:00    2017-08-09 01:51:00
112309    34988    822    2017-08-09 18:53:00    2017-08-09 18:53:00
112310    34989    905    2017-08-09 20:09:00    2017-08-09 20:09:00
112311    34989    881    2017-08-09 03:08:00    2017-08-09 03:08:00
112312    34989    873    2017-08-09 11:44:00    2017-08-09 11:44:00
112313    34989    869    2017-08-09 11:49:00    2017-08-09 11:49:00
112314    34989    813    2017-08-09 10:03:00    2017-08-09 10:03:00
112315    34990    892    2017-08-09 10:28:00    2017-08-09 10:28:00
112316    34990    564    2017-08-09 15:16:00    2017-08-09 15:16:00
112317    34990    680    2017-08-09 15:08:00    2017-08-09 15:08:00
112318    34990    849    2017-08-09 07:45:00    2017-08-09 07:45:00
112319    34990    763    2017-08-09 14:05:00    2017-08-09 14:05:00
112320    34991    854    2017-08-09 10:16:00    2017-08-09 10:16:00
112321    34991    925    2017-08-09 02:22:00    2017-08-09 02:22:00
112322    34991    648    2017-08-09 14:07:00    2017-08-09 14:07:00
112323    34991    775    2017-08-09 23:07:00    2017-08-09 23:07:00
112324    34991    774    2017-08-09 20:34:00    2017-08-09 20:34:00
112325    34992    471    2017-08-09 02:39:00    2017-08-09 02:39:00
112326    34992    616    2017-08-09 10:19:00    2017-08-09 10:19:00
112327    34992    871    2017-08-09 19:10:00    2017-08-09 19:10:00
112328    34992    623    2017-08-09 11:23:00    2017-08-09 11:23:00
112329    34992    766    2017-08-09 12:00:00    2017-08-09 12:00:00
112330    34993    470    2017-08-09 08:19:00    2017-08-09 08:19:00
112331    34993    494    2017-08-09 23:58:00    2017-08-09 23:58:00
112332    34993    775    2017-08-09 08:08:00    2017-08-09 08:08:00
112333    34993    835    2017-08-09 13:49:00    2017-08-09 13:49:00
112334    34993    764    2017-08-09 06:15:00    2017-08-09 06:15:00
112335    34994    839    2017-08-09 08:25:00    2017-08-09 08:25:00
112336    34994    639    2017-08-09 19:53:00    2017-08-09 19:53:00
112337    34994    679    2017-08-09 17:03:00    2017-08-09 17:03:00
112338    34994    669    2017-08-09 01:01:00    2017-08-09 01:01:00
112339    34994    716    2017-08-09 10:21:00    2017-08-09 10:21:00
112340    34995    623    2017-08-09 03:14:00    2017-08-09 03:14:00
112341    34995    802    2017-08-09 02:37:00    2017-08-09 02:37:00
112342    34995    497    2017-08-09 14:19:00    2017-08-09 14:19:00
112343    34995    681    2017-08-09 05:08:00    2017-08-09 05:08:00
112344    34995    613    2017-08-09 07:43:00    2017-08-09 07:43:00
112345    34996    496    2017-08-09 10:27:00    2017-08-09 10:27:00
112346    34996    575    2017-08-09 13:06:00    2017-08-09 13:06:00
112347    34996    734    2017-08-09 20:35:00    2017-08-09 20:35:00
112348    34996    695    2017-08-09 01:13:00    2017-08-09 01:13:00
112349    34996    580    2017-08-09 23:24:00    2017-08-09 23:24:00
112350    34997    912    2017-08-09 15:39:00    2017-08-09 15:39:00
112351    34997    582    2017-08-09 10:34:00    2017-08-09 10:34:00
112352    34997    496    2017-08-09 08:55:00    2017-08-09 08:55:00
112353    34997    945    2017-08-09 14:26:00    2017-08-09 14:26:00
112354    34997    771    2017-08-09 09:51:00    2017-08-09 09:51:00
112355    34998    834    2017-08-09 10:29:00    2017-08-09 10:29:00
112356    34998    720    2017-08-09 20:38:00    2017-08-09 20:38:00
112357    34998    820    2017-08-09 09:29:00    2017-08-09 09:29:00
112358    34998    538    2017-08-09 09:39:00    2017-08-09 09:39:00
112359    34998    564    2017-08-09 11:10:00    2017-08-09 11:10:00
112360    34999    911    2017-08-09 12:01:00    2017-08-09 12:01:00
112361    34999    513    2017-08-09 21:38:00    2017-08-09 21:38:00
112362    34999    700    2017-08-09 23:03:00    2017-08-09 23:03:00
112363    34999    542    2017-08-09 06:31:00    2017-08-09 06:31:00
112364    34999    945    2017-08-09 11:23:00    2017-08-09 11:23:00
112365    35000    498    2017-08-09 11:43:00    2017-08-09 11:43:00
112366    35000    908    2017-08-09 13:15:00    2017-08-09 13:15:00
112367    35000    804    2017-08-09 19:22:00    2017-08-09 19:22:00
112368    35000    828    2017-08-09 21:39:00    2017-08-09 21:39:00
112369    35000    573    2017-08-09 05:21:00    2017-08-09 05:21:00
112370    35001    502    2017-08-09 20:28:00    2017-08-09 20:28:00
112371    35001    475    2017-08-09 01:42:00    2017-08-09 01:42:00
112372    35001    873    2017-08-09 02:53:00    2017-08-09 02:53:00
112373    35001    466    2017-08-09 09:14:00    2017-08-09 09:14:00
112374    35001    798    2017-08-09 14:32:00    2017-08-09 14:32:00
112375    35002    546    2017-08-09 12:24:00    2017-08-09 12:24:00
112376    35002    470    2017-08-09 15:04:00    2017-08-09 15:04:00
112377    35002    867    2017-08-09 17:42:00    2017-08-09 17:42:00
112378    35002    937    2017-08-09 11:55:00    2017-08-09 11:55:00
112379    35002    893    2017-08-09 14:18:00    2017-08-09 14:18:00
112380    35003    893    2017-08-09 23:09:00    2017-08-09 23:09:00
112381    35003    714    2017-08-09 16:07:00    2017-08-09 16:07:00
112382    35003    846    2017-08-09 23:00:00    2017-08-09 23:00:00
112383    35003    820    2017-08-09 12:45:00    2017-08-09 12:45:00
112384    35003    651    2017-08-09 22:43:00    2017-08-09 22:43:00
112385    35004    867    2017-08-09 06:06:00    2017-08-09 06:06:00
112386    35004    669    2017-08-09 03:20:00    2017-08-09 03:20:00
112387    35004    848    2017-08-09 05:04:00    2017-08-09 05:04:00
112388    35004    528    2017-08-09 16:56:00    2017-08-09 16:56:00
112389    35004    567    2017-08-09 16:24:00    2017-08-09 16:24:00
112390    35005    897    2017-08-09 14:50:00    2017-08-09 14:50:00
112391    35005    774    2017-08-09 15:02:00    2017-08-09 15:02:00
112392    35005    820    2017-08-09 08:35:00    2017-08-09 08:35:00
112393    35005    872    2017-08-09 20:43:00    2017-08-09 20:43:00
112394    35005    594    2017-08-09 13:58:00    2017-08-09 13:58:00
112395    35006    939    2017-08-09 06:40:00    2017-08-09 06:40:00
112396    35006    905    2017-08-09 01:10:00    2017-08-09 01:10:00
112397    35006    489    2017-08-09 09:00:00    2017-08-09 09:00:00
112398    35006    494    2017-08-09 01:02:00    2017-08-09 01:02:00
112399    35006    727    2017-08-09 19:58:00    2017-08-09 19:58:00
112400    35007    485    2017-08-09 14:33:00    2017-08-09 14:33:00
112401    35007    487    2017-08-09 11:50:00    2017-08-09 11:50:00
112402    35007    563    2017-08-09 03:03:00    2017-08-09 03:03:00
112403    35007    559    2017-08-09 19:46:00    2017-08-09 19:46:00
112404    35007    540    2017-08-09 13:56:00    2017-08-09 13:56:00
112405    35008    915    2017-08-09 22:49:00    2017-08-09 22:49:00
112406    35008    471    2017-08-09 11:31:00    2017-08-09 11:31:00
112407    35008    788    2017-08-09 13:09:00    2017-08-09 13:09:00
112408    35008    685    2017-08-09 17:11:00    2017-08-09 17:11:00
112409    35008    689    2017-08-09 16:36:00    2017-08-09 16:36:00
112410    35009    878    2017-08-09 05:43:00    2017-08-09 05:43:00
112411    35009    657    2017-08-09 03:30:00    2017-08-09 03:30:00
112412    35009    655    2017-08-09 09:16:00    2017-08-09 09:16:00
112413    35009    622    2017-08-09 09:01:00    2017-08-09 09:01:00
112414    35009    610    2017-08-09 11:56:00    2017-08-09 11:56:00
112415    35010    473    2017-08-09 22:58:00    2017-08-09 22:58:00
112416    35010    791    2017-08-09 03:57:00    2017-08-09 03:57:00
112417    35010    947    2017-08-09 02:22:00    2017-08-09 02:22:00
112418    35010    548    2017-08-09 23:31:00    2017-08-09 23:31:00
112419    35010    702    2017-08-09 14:07:00    2017-08-09 14:07:00
112420    35011    923    2017-08-09 01:17:00    2017-08-09 01:17:00
112421    35011    885    2017-08-09 14:35:00    2017-08-09 14:35:00
112422    35011    615    2017-08-09 20:30:00    2017-08-09 20:30:00
112423    35011    567    2017-08-09 10:24:00    2017-08-09 10:24:00
112424    35011    785    2017-08-09 18:13:00    2017-08-09 18:13:00
112425    35012    723    2017-08-09 22:46:00    2017-08-09 22:46:00
112426    35012    610    2017-08-09 18:20:00    2017-08-09 18:20:00
112427    35012    910    2017-08-09 08:04:00    2017-08-09 08:04:00
112428    35012    653    2017-08-09 02:36:00    2017-08-09 02:36:00
112429    35012    944    2017-08-09 13:22:00    2017-08-09 13:22:00
112430    35013    834    2017-08-09 18:55:00    2017-08-09 18:55:00
112431    35013    527    2017-08-09 10:24:00    2017-08-09 10:24:00
112432    35013    863    2017-08-09 10:55:00    2017-08-09 10:55:00
112433    35013    868    2017-08-09 23:40:00    2017-08-09 23:40:00
112434    35013    740    2017-08-09 15:17:00    2017-08-09 15:17:00
112435    35014    505    2017-08-09 20:44:00    2017-08-09 20:44:00
112436    35014    486    2017-08-09 21:32:00    2017-08-09 21:32:00
112437    35014    946    2017-08-09 14:40:00    2017-08-09 14:40:00
112438    35014    814    2017-08-09 13:41:00    2017-08-09 13:41:00
112439    35014    840    2017-08-09 18:56:00    2017-08-09 18:56:00
112440    35015    668    2017-08-09 19:03:00    2017-08-09 19:03:00
112441    35015    894    2017-08-09 10:28:00    2017-08-09 10:28:00
112442    35015    511    2017-08-09 03:21:00    2017-08-09 03:21:00
112443    35015    958    2017-08-09 19:29:00    2017-08-09 19:29:00
112444    35015    829    2017-08-09 20:13:00    2017-08-09 20:13:00
112445    35016    933    2017-08-09 06:13:00    2017-08-09 06:13:00
112446    35016    595    2017-08-09 17:36:00    2017-08-09 17:36:00
112447    35016    520    2017-08-09 17:13:00    2017-08-09 17:13:00
112448    35016    878    2017-08-09 11:33:00    2017-08-09 11:33:00
112449    35016    854    2017-08-09 15:06:00    2017-08-09 15:06:00
112450    35017    810    2017-08-09 14:34:00    2017-08-09 14:34:00
112451    35017    721    2017-08-09 01:50:00    2017-08-09 01:50:00
112452    35017    947    2017-08-09 02:18:00    2017-08-09 02:18:00
112453    35017    668    2017-08-09 19:41:00    2017-08-09 19:41:00
112454    35017    866    2017-08-09 03:11:00    2017-08-09 03:11:00
112455    35018    837    2017-08-09 11:26:00    2017-08-09 11:26:00
112456    35018    886    2017-08-09 12:17:00    2017-08-09 12:17:00
112457    35018    730    2017-08-09 02:57:00    2017-08-09 02:57:00
112458    35018    954    2017-08-09 19:52:00    2017-08-09 19:52:00
112459    35018    708    2017-08-09 01:39:00    2017-08-09 01:39:00
112460    35019    596    2017-08-09 13:50:00    2017-08-09 13:50:00
112461    35019    797    2017-08-09 04:37:00    2017-08-09 04:37:00
112462    35019    642    2017-08-09 19:22:00    2017-08-09 19:22:00
112463    35019    476    2017-08-09 01:13:00    2017-08-09 01:13:00
112464    35019    936    2017-08-09 20:15:00    2017-08-09 20:15:00
112465    35020    873    2017-08-09 19:22:00    2017-08-09 19:22:00
112466    35020    686    2017-08-09 23:22:00    2017-08-09 23:22:00
112467    35020    958    2017-08-09 11:14:00    2017-08-09 11:14:00
112468    35020    707    2017-08-09 23:45:00    2017-08-09 23:45:00
112469    35020    610    2017-08-09 15:58:00    2017-08-09 15:58:00
112470    35021    618    2017-08-09 03:49:00    2017-08-09 03:49:00
112471    35021    487    2017-08-09 02:25:00    2017-08-09 02:25:00
112472    35021    783    2017-08-09 23:16:00    2017-08-09 23:16:00
112473    35021    732    2017-08-09 06:18:00    2017-08-09 06:18:00
112474    35021    553    2017-08-09 13:16:00    2017-08-09 13:16:00
112475    35022    556    2017-08-09 01:04:00    2017-08-09 01:04:00
112476    35022    563    2017-08-09 18:38:00    2017-08-09 18:38:00
112477    35022    781    2017-08-09 15:25:00    2017-08-09 15:25:00
112478    35022    720    2017-08-09 09:08:00    2017-08-09 09:08:00
112479    35022    574    2017-08-09 04:33:00    2017-08-09 04:33:00
112480    35023    894    2017-08-09 20:40:00    2017-08-09 20:40:00
112481    35023    864    2017-08-09 15:04:00    2017-08-09 15:04:00
112482    35023    780    2017-08-09 19:55:00    2017-08-09 19:55:00
112483    35023    750    2017-08-09 04:45:00    2017-08-09 04:45:00
112484    35023    891    2017-08-09 13:22:00    2017-08-09 13:22:00
112485    35024    884    2017-08-09 03:09:00    2017-08-09 03:09:00
112486    35024    937    2017-08-09 02:09:00    2017-08-09 02:09:00
112487    35024    778    2017-08-09 20:36:00    2017-08-09 20:36:00
112488    35024    509    2017-08-09 10:24:00    2017-08-09 10:24:00
112489    35024    531    2017-08-09 03:36:00    2017-08-09 03:36:00
112490    35025    710    2017-08-09 10:54:00    2017-08-09 10:54:00
112491    35025    533    2017-08-09 05:49:00    2017-08-09 05:49:00
112492    35025    852    2017-08-09 13:17:00    2017-08-09 13:17:00
112493    35025    715    2017-08-09 12:47:00    2017-08-09 12:47:00
112494    35025    682    2017-08-09 01:33:00    2017-08-09 01:33:00
112495    35026    846    2017-08-09 03:07:00    2017-08-09 03:07:00
112496    35026    733    2017-08-09 08:28:00    2017-08-09 08:28:00
112497    35026    472    2017-08-09 02:42:00    2017-08-09 02:42:00
112498    35026    712    2017-08-09 19:39:00    2017-08-09 19:39:00
112499    35026    842    2017-08-09 06:06:00    2017-08-09 06:06:00
112500    35027    825    2017-08-09 03:37:00    2017-08-09 03:37:00
112501    35027    929    2017-08-09 16:34:00    2017-08-09 16:34:00
112502    35027    580    2017-08-09 09:31:00    2017-08-09 09:31:00
112503    35027    651    2017-08-09 06:13:00    2017-08-09 06:13:00
112504    35027    617    2017-08-09 21:22:00    2017-08-09 21:22:00
112505    35028    506    2017-08-09 05:35:00    2017-08-09 05:35:00
112506    35028    904    2017-08-09 04:27:00    2017-08-09 04:27:00
112507    35028    489    2017-08-09 11:02:00    2017-08-09 11:02:00
112508    35028    781    2017-08-09 08:28:00    2017-08-09 08:28:00
112509    35028    549    2017-08-09 11:51:00    2017-08-09 11:51:00
112510    35029    940    2017-08-09 10:46:00    2017-08-09 10:46:00
112511    35029    735    2017-08-09 04:00:00    2017-08-09 04:00:00
112512    35029    854    2017-08-09 14:03:00    2017-08-09 14:03:00
112513    35029    869    2017-08-09 10:51:00    2017-08-09 10:51:00
112514    35029    710    2017-08-09 18:50:00    2017-08-09 18:50:00
112515    35030    723    2017-08-09 21:21:00    2017-08-09 21:21:00
112516    35030    677    2017-08-09 08:18:00    2017-08-09 08:18:00
112517    35030    556    2017-08-09 21:24:00    2017-08-09 21:24:00
112518    35030    870    2017-08-09 19:16:00    2017-08-09 19:16:00
112519    35030    579    2017-08-09 09:11:00    2017-08-09 09:11:00
112520    35031    786    2017-08-09 03:31:00    2017-08-09 03:31:00
112521    35031    772    2017-08-09 06:18:00    2017-08-09 06:18:00
112522    35031    613    2017-08-09 19:54:00    2017-08-09 19:54:00
112523    35031    862    2017-08-09 18:23:00    2017-08-09 18:23:00
112524    35031    761    2017-08-09 07:31:00    2017-08-09 07:31:00
112525    35032    484    2017-08-10 18:58:00    2017-08-10 18:58:00
112526    35032    786    2017-08-10 10:18:00    2017-08-10 10:18:00
112527    35032    833    2017-08-10 22:19:00    2017-08-10 22:19:00
112528    35032    742    2017-08-10 18:26:00    2017-08-10 18:26:00
112529    35032    545    2017-08-10 06:50:00    2017-08-10 06:50:00
112530    35033    953    2017-08-10 10:45:00    2017-08-10 10:45:00
112531    35033    483    2017-08-10 18:30:00    2017-08-10 18:30:00
112532    35033    652    2017-08-10 05:45:00    2017-08-10 05:45:00
112533    35033    889    2017-08-10 06:39:00    2017-08-10 06:39:00
112534    35033    717    2017-08-10 09:42:00    2017-08-10 09:42:00
112535    35034    955    2017-08-10 10:00:00    2017-08-10 10:00:00
112536    35034    723    2017-08-10 03:47:00    2017-08-10 03:47:00
112537    35034    865    2017-08-10 10:41:00    2017-08-10 10:41:00
112538    35034    628    2017-08-10 18:43:00    2017-08-10 18:43:00
112539    35034    887    2017-08-10 17:01:00    2017-08-10 17:01:00
112540    35035    867    2017-08-10 15:29:00    2017-08-10 15:29:00
112541    35035    747    2017-08-10 14:55:00    2017-08-10 14:55:00
112542    35035    756    2017-08-10 01:33:00    2017-08-10 01:33:00
112543    35035    492    2017-08-10 22:07:00    2017-08-10 22:07:00
112544    35035    819    2017-08-10 17:56:00    2017-08-10 17:56:00
112545    35036    823    2017-08-10 18:08:00    2017-08-10 18:08:00
112546    35036    702    2017-08-10 21:45:00    2017-08-10 21:45:00
112547    35036    935    2017-08-10 19:14:00    2017-08-10 19:14:00
112548    35036    691    2017-08-10 16:10:00    2017-08-10 16:10:00
112549    35036    715    2017-08-10 22:20:00    2017-08-10 22:20:00
112550    35037    627    2017-08-10 09:27:00    2017-08-10 09:27:00
112551    35037    806    2017-08-10 22:12:00    2017-08-10 22:12:00
112552    35037    821    2017-08-10 09:25:00    2017-08-10 09:25:00
112553    35037    685    2017-08-10 08:37:00    2017-08-10 08:37:00
112554    35037    543    2017-08-10 04:58:00    2017-08-10 04:58:00
112555    35038    871    2017-08-10 20:28:00    2017-08-10 20:28:00
112556    35038    707    2017-08-10 23:41:00    2017-08-10 23:41:00
112557    35038    497    2017-08-10 01:00:00    2017-08-10 01:00:00
112558    35038    830    2017-08-10 23:13:00    2017-08-10 23:13:00
112559    35038    604    2017-08-10 11:55:00    2017-08-10 11:55:00
112560    35039    600    2017-08-10 15:26:00    2017-08-10 15:26:00
112561    35039    879    2017-08-10 21:16:00    2017-08-10 21:16:00
112562    35039    476    2017-08-10 03:54:00    2017-08-10 03:54:00
112563    35039    575    2017-08-10 04:43:00    2017-08-10 04:43:00
112564    35039    887    2017-08-10 22:48:00    2017-08-10 22:48:00
112565    35040    807    2017-08-10 20:55:00    2017-08-10 20:55:00
112566    35040    535    2017-08-10 07:05:00    2017-08-10 07:05:00
112567    35040    903    2017-08-10 10:01:00    2017-08-10 10:01:00
112568    35040    858    2017-08-10 20:58:00    2017-08-10 20:58:00
112569    35040    525    2017-08-10 01:46:00    2017-08-10 01:46:00
112570    35041    576    2017-08-10 05:33:00    2017-08-10 05:33:00
112571    35041    770    2017-08-10 12:04:00    2017-08-10 12:04:00
112572    35041    953    2017-08-10 09:36:00    2017-08-10 09:36:00
112573    35041    619    2017-08-10 18:40:00    2017-08-10 18:40:00
112574    35041    866    2017-08-10 06:24:00    2017-08-10 06:24:00
112575    35042    566    2017-08-10 17:00:00    2017-08-10 17:00:00
112576    35042    761    2017-08-10 10:46:00    2017-08-10 10:46:00
112577    35042    518    2017-08-10 23:02:00    2017-08-10 23:02:00
112578    35042    928    2017-08-10 15:48:00    2017-08-10 15:48:00
112579    35042    653    2017-08-10 19:50:00    2017-08-10 19:50:00
112580    35043    695    2017-08-10 07:14:00    2017-08-10 07:14:00
112581    35043    499    2017-08-10 13:08:00    2017-08-10 13:08:00
112582    35043    837    2017-08-10 22:20:00    2017-08-10 22:20:00
112583    35043    846    2017-08-10 19:10:00    2017-08-10 19:10:00
112584    35043    485    2017-08-10 18:14:00    2017-08-10 18:14:00
112585    35044    516    2017-08-10 03:54:00    2017-08-10 03:54:00
112586    35044    481    2017-08-10 08:03:00    2017-08-10 08:03:00
112587    35044    674    2017-08-10 01:29:00    2017-08-10 01:29:00
112588    35044    825    2017-08-10 14:16:00    2017-08-10 14:16:00
112589    35044    853    2017-08-10 22:16:00    2017-08-10 22:16:00
112590    35045    700    2017-08-10 21:29:00    2017-08-10 21:29:00
112591    35045    495    2017-08-10 16:43:00    2017-08-10 16:43:00
112592    35045    466    2017-08-10 18:05:00    2017-08-10 18:05:00
112593    35045    574    2017-08-10 11:04:00    2017-08-10 11:04:00
112594    35045    597    2017-08-10 08:31:00    2017-08-10 08:31:00
112595    35046    865    2017-08-10 10:24:00    2017-08-10 10:24:00
112596    35046    589    2017-08-10 15:54:00    2017-08-10 15:54:00
112597    35046    569    2017-08-10 14:11:00    2017-08-10 14:11:00
112598    35046    864    2017-08-10 08:27:00    2017-08-10 08:27:00
112599    35046    657    2017-08-10 16:31:00    2017-08-10 16:31:00
112600    35047    601    2017-08-10 17:03:00    2017-08-10 17:03:00
112601    35047    588    2017-08-10 22:07:00    2017-08-10 22:07:00
112602    35047    889    2017-08-10 18:17:00    2017-08-10 18:17:00
112603    35047    608    2017-08-10 12:43:00    2017-08-10 12:43:00
112604    35047    749    2017-08-10 14:20:00    2017-08-10 14:20:00
112605    35048    772    2017-08-10 14:40:00    2017-08-10 14:40:00
112606    35048    479    2017-08-10 07:22:00    2017-08-10 07:22:00
112607    35048    474    2017-08-10 05:28:00    2017-08-10 05:28:00
112608    35048    905    2017-08-10 03:27:00    2017-08-10 03:27:00
112609    35048    708    2017-08-10 05:17:00    2017-08-10 05:17:00
112610    35049    821    2017-08-10 02:35:00    2017-08-10 02:35:00
112611    35049    858    2017-08-10 18:47:00    2017-08-10 18:47:00
112612    35049    727    2017-08-10 15:55:00    2017-08-10 15:55:00
112613    35049    801    2017-08-10 22:15:00    2017-08-10 22:15:00
112614    35049    636    2017-08-10 17:09:00    2017-08-10 17:09:00
112615    35050    722    2017-08-10 02:42:00    2017-08-10 02:42:00
112616    35050    628    2017-08-10 04:25:00    2017-08-10 04:25:00
112617    35050    858    2017-08-10 23:12:00    2017-08-10 23:12:00
112618    35050    774    2017-08-10 16:39:00    2017-08-10 16:39:00
112619    35050    705    2017-08-10 05:21:00    2017-08-10 05:21:00
112620    35051    465    2017-08-10 13:03:00    2017-08-10 13:03:00
112621    35051    734    2017-08-10 23:37:00    2017-08-10 23:37:00
112622    35051    482    2017-08-10 22:16:00    2017-08-10 22:16:00
112623    35051    652    2017-08-10 04:16:00    2017-08-10 04:16:00
112624    35051    845    2017-08-10 07:18:00    2017-08-10 07:18:00
112625    35052    477    2017-08-10 12:53:00    2017-08-10 12:53:00
112626    35052    527    2017-08-10 02:20:00    2017-08-10 02:20:00
112627    35052    801    2017-08-10 18:56:00    2017-08-10 18:56:00
112628    35052    577    2017-08-10 23:40:00    2017-08-10 23:40:00
112629    35052    642    2017-08-10 22:22:00    2017-08-10 22:22:00
112630    35053    490    2017-08-10 23:02:00    2017-08-10 23:02:00
112631    35053    534    2017-08-10 23:28:00    2017-08-10 23:28:00
112632    35053    778    2017-08-10 04:02:00    2017-08-10 04:02:00
112633    35053    687    2017-08-10 04:03:00    2017-08-10 04:03:00
112634    35053    576    2017-08-10 09:57:00    2017-08-10 09:57:00
112635    35054    533    2017-08-10 17:47:00    2017-08-10 17:47:00
112636    35054    913    2017-08-10 11:35:00    2017-08-10 11:35:00
112637    35054    643    2017-08-10 18:12:00    2017-08-10 18:12:00
112638    35054    750    2017-08-10 22:36:00    2017-08-10 22:36:00
112639    35054    636    2017-08-10 03:03:00    2017-08-10 03:03:00
112640    35055    821    2017-08-10 14:19:00    2017-08-10 14:19:00
112641    35055    564    2017-08-10 01:45:00    2017-08-10 01:45:00
112642    35055    504    2017-08-10 19:09:00    2017-08-10 19:09:00
112643    35055    650    2017-08-10 11:29:00    2017-08-10 11:29:00
112644    35055    556    2017-08-10 11:55:00    2017-08-10 11:55:00
112645    35056    490    2017-08-10 20:42:00    2017-08-10 20:42:00
112646    35056    719    2017-08-10 09:56:00    2017-08-10 09:56:00
112647    35056    834    2017-08-10 06:02:00    2017-08-10 06:02:00
112648    35056    666    2017-08-10 20:49:00    2017-08-10 20:49:00
112649    35056    840    2017-08-10 05:22:00    2017-08-10 05:22:00
112650    35057    750    2017-08-10 01:30:00    2017-08-10 01:30:00
112651    35057    499    2017-08-10 19:58:00    2017-08-10 19:58:00
112652    35057    636    2017-08-10 12:09:00    2017-08-10 12:09:00
112653    35057    919    2017-08-10 22:50:00    2017-08-10 22:50:00
112654    35057    498    2017-08-10 22:08:00    2017-08-10 22:08:00
112655    35058    851    2017-08-10 05:45:00    2017-08-10 05:45:00
112656    35058    597    2017-08-10 19:48:00    2017-08-10 19:48:00
112657    35058    724    2017-08-10 20:09:00    2017-08-10 20:09:00
112658    35058    910    2017-08-10 03:13:00    2017-08-10 03:13:00
112659    35058    629    2017-08-10 18:15:00    2017-08-10 18:15:00
112660    35059    926    2017-08-10 01:54:00    2017-08-10 01:54:00
112661    35059    483    2017-08-10 07:56:00    2017-08-10 07:56:00
112662    35059    846    2017-08-10 13:31:00    2017-08-10 13:31:00
112663    35059    818    2017-08-10 07:40:00    2017-08-10 07:40:00
112664    35059    880    2017-08-10 02:14:00    2017-08-10 02:14:00
112665    35060    569    2017-08-10 01:12:00    2017-08-10 01:12:00
112666    35060    951    2017-08-10 23:35:00    2017-08-10 23:35:00
112667    35060    583    2017-08-10 12:54:00    2017-08-10 12:54:00
112668    35060    766    2017-08-10 08:35:00    2017-08-10 08:35:00
112669    35060    677    2017-08-10 07:30:00    2017-08-10 07:30:00
112670    35061    767    2017-08-10 17:27:00    2017-08-10 17:27:00
112671    35061    936    2017-08-10 01:21:00    2017-08-10 01:21:00
112672    35061    851    2017-08-10 11:40:00    2017-08-10 11:40:00
112673    35061    672    2017-08-10 04:51:00    2017-08-10 04:51:00
112674    35061    809    2017-08-10 19:05:00    2017-08-10 19:05:00
112675    35062    887    2017-08-10 01:53:00    2017-08-10 01:53:00
112676    35062    756    2017-08-10 03:39:00    2017-08-10 03:39:00
112677    35062    913    2017-08-10 04:27:00    2017-08-10 04:27:00
112678    35062    550    2017-08-10 17:43:00    2017-08-10 17:43:00
112679    35062    809    2017-08-10 21:43:00    2017-08-10 21:43:00
112680    35063    930    2017-08-11 12:18:00    2017-08-11 12:18:00
112681    35063    640    2017-08-11 05:10:00    2017-08-11 05:10:00
112682    35063    901    2017-08-11 22:24:00    2017-08-11 22:24:00
112683    35063    580    2017-08-11 02:11:00    2017-08-11 02:11:00
112684    35063    943    2017-08-11 03:40:00    2017-08-11 03:40:00
112685    35064    867    2017-08-11 08:12:00    2017-08-11 08:12:00
112686    35064    522    2017-08-11 01:44:00    2017-08-11 01:44:00
112687    35064    790    2017-08-11 10:02:00    2017-08-11 10:02:00
112688    35064    804    2017-08-11 11:37:00    2017-08-11 11:37:00
112689    35064    695    2017-08-11 20:48:00    2017-08-11 20:48:00
112690    35065    932    2017-08-11 02:36:00    2017-08-11 02:36:00
112691    35065    829    2017-08-11 10:08:00    2017-08-11 10:08:00
112692    35065    507    2017-08-11 01:31:00    2017-08-11 01:31:00
112693    35065    892    2017-08-11 17:00:00    2017-08-11 17:00:00
112694    35065    811    2017-08-11 16:31:00    2017-08-11 16:31:00
112695    35066    702    2017-08-11 06:24:00    2017-08-11 06:24:00
112696    35066    741    2017-08-11 20:11:00    2017-08-11 20:11:00
112697    35066    657    2017-08-11 09:22:00    2017-08-11 09:22:00
112698    35066    696    2017-08-11 01:35:00    2017-08-11 01:35:00
112699    35066    938    2017-08-11 06:07:00    2017-08-11 06:07:00
112700    35067    619    2017-08-11 02:03:00    2017-08-11 02:03:00
112701    35067    466    2017-08-11 14:49:00    2017-08-11 14:49:00
112702    35067    777    2017-08-11 02:44:00    2017-08-11 02:44:00
112703    35067    855    2017-08-11 02:42:00    2017-08-11 02:42:00
112704    35067    816    2017-08-11 17:39:00    2017-08-11 17:39:00
112705    35068    756    2017-08-11 07:41:00    2017-08-11 07:41:00
112706    35068    830    2017-08-11 02:59:00    2017-08-11 02:59:00
112707    35068    819    2017-08-11 13:24:00    2017-08-11 13:24:00
112708    35068    902    2017-08-11 22:14:00    2017-08-11 22:14:00
112709    35068    510    2017-08-11 15:32:00    2017-08-11 15:32:00
112710    35069    669    2017-08-11 03:21:00    2017-08-11 03:21:00
112711    35069    893    2017-08-11 16:17:00    2017-08-11 16:17:00
112712    35069    657    2017-08-11 16:59:00    2017-08-11 16:59:00
112713    35069    473    2017-08-11 13:36:00    2017-08-11 13:36:00
112714    35069    717    2017-08-11 10:31:00    2017-08-11 10:31:00
112715    35070    681    2017-08-11 13:25:00    2017-08-11 13:25:00
112716    35070    644    2017-08-11 21:44:00    2017-08-11 21:44:00
112717    35070    548    2017-08-11 14:06:00    2017-08-11 14:06:00
112718    35070    747    2017-08-11 05:47:00    2017-08-11 05:47:00
112719    35070    482    2017-08-11 09:28:00    2017-08-11 09:28:00
112720    35071    744    2017-08-11 19:00:00    2017-08-11 19:00:00
112721    35071    470    2017-08-11 18:27:00    2017-08-11 18:27:00
112722    35071    465    2017-08-11 01:59:00    2017-08-11 01:59:00
112723    35071    543    2017-08-11 04:21:00    2017-08-11 04:21:00
112724    35071    560    2017-08-11 02:51:00    2017-08-11 02:51:00
112725    35072    774    2017-08-11 04:06:00    2017-08-11 04:06:00
112726    35072    680    2017-08-11 04:24:00    2017-08-11 04:24:00
112727    35072    620    2017-08-11 14:29:00    2017-08-11 14:29:00
112728    35072    478    2017-08-11 23:33:00    2017-08-11 23:33:00
112729    35072    936    2017-08-11 13:33:00    2017-08-11 13:33:00
112730    35073    874    2017-08-11 11:24:00    2017-08-11 11:24:00
112731    35073    505    2017-08-11 14:59:00    2017-08-11 14:59:00
112732    35073    896    2017-08-11 23:04:00    2017-08-11 23:04:00
112733    35073    732    2017-08-11 16:28:00    2017-08-11 16:28:00
112734    35073    740    2017-08-11 05:27:00    2017-08-11 05:27:00
112735    35074    674    2017-08-11 11:40:00    2017-08-11 11:40:00
112736    35074    822    2017-08-11 22:18:00    2017-08-11 22:18:00
112737    35074    862    2017-08-11 11:29:00    2017-08-11 11:29:00
112738    35074    838    2017-08-11 07:55:00    2017-08-11 07:55:00
112739    35074    738    2017-08-11 13:58:00    2017-08-11 13:58:00
112740    35075    553    2017-08-11 20:10:00    2017-08-11 20:10:00
112741    35075    585    2017-08-11 02:47:00    2017-08-11 02:47:00
112742    35075    752    2017-08-11 14:20:00    2017-08-11 14:20:00
112743    35075    552    2017-08-11 14:11:00    2017-08-11 14:11:00
112744    35075    735    2017-08-11 10:26:00    2017-08-11 10:26:00
112745    35076    594    2017-08-11 08:30:00    2017-08-11 08:30:00
112746    35076    944    2017-08-11 06:08:00    2017-08-11 06:08:00
112747    35076    520    2017-08-11 14:55:00    2017-08-11 14:55:00
112748    35076    623    2017-08-11 06:40:00    2017-08-11 06:40:00
112749    35076    708    2017-08-11 15:15:00    2017-08-11 15:15:00
112750    35077    633    2017-08-11 10:30:00    2017-08-11 10:30:00
112751    35077    482    2017-08-11 18:28:00    2017-08-11 18:28:00
112752    35077    639    2017-08-11 10:44:00    2017-08-11 10:44:00
112753    35077    763    2017-08-11 23:01:00    2017-08-11 23:01:00
112754    35077    741    2017-08-11 19:04:00    2017-08-11 19:04:00
112755    35078    757    2017-08-11 16:24:00    2017-08-11 16:24:00
112756    35078    566    2017-08-11 03:27:00    2017-08-11 03:27:00
112757    35078    832    2017-08-11 10:13:00    2017-08-11 10:13:00
112758    35078    716    2017-08-11 14:53:00    2017-08-11 14:53:00
112759    35078    811    2017-08-11 10:52:00    2017-08-11 10:52:00
112760    35079    575    2017-08-11 22:44:00    2017-08-11 22:44:00
112761    35079    525    2017-08-11 07:26:00    2017-08-11 07:26:00
112762    35079    886    2017-08-11 10:18:00    2017-08-11 10:18:00
112763    35079    856    2017-08-11 13:54:00    2017-08-11 13:54:00
112764    35079    478    2017-08-11 07:43:00    2017-08-11 07:43:00
112765    35080    895    2017-08-12 03:04:00    2017-08-12 03:04:00
112766    35080    531    2017-08-12 22:21:00    2017-08-12 22:21:00
112767    35080    714    2017-08-12 02:11:00    2017-08-12 02:11:00
112768    35080    878    2017-08-12 12:29:00    2017-08-12 12:29:00
112769    35080    800    2017-08-12 11:34:00    2017-08-12 11:34:00
112770    35081    469    2017-08-12 17:27:00    2017-08-12 17:27:00
112771    35081    521    2017-08-12 22:49:00    2017-08-12 22:49:00
112772    35081    689    2017-08-12 16:30:00    2017-08-12 16:30:00
112773    35081    912    2017-08-12 04:31:00    2017-08-12 04:31:00
112774    35081    637    2017-08-12 22:26:00    2017-08-12 22:26:00
112775    35082    748    2017-08-12 18:42:00    2017-08-12 18:42:00
112776    35082    471    2017-08-12 11:47:00    2017-08-12 11:47:00
112777    35082    945    2017-08-12 13:33:00    2017-08-12 13:33:00
112778    35082    850    2017-08-12 05:09:00    2017-08-12 05:09:00
112779    35082    763    2017-08-12 14:18:00    2017-08-12 14:18:00
112780    35083    666    2017-08-12 06:24:00    2017-08-12 06:24:00
112781    35083    484    2017-08-12 04:27:00    2017-08-12 04:27:00
112782    35083    815    2017-08-12 20:43:00    2017-08-12 20:43:00
112783    35083    766    2017-08-12 04:49:00    2017-08-12 04:49:00
112784    35083    610    2017-08-12 19:00:00    2017-08-12 19:00:00
112785    35084    885    2017-08-12 04:50:00    2017-08-12 04:50:00
112786    35084    695    2017-08-12 20:37:00    2017-08-12 20:37:00
112787    35084    685    2017-08-12 13:24:00    2017-08-12 13:24:00
112788    35084    486    2017-08-12 22:47:00    2017-08-12 22:47:00
112789    35084    787    2017-08-12 02:45:00    2017-08-12 02:45:00
112790    35085    751    2017-08-12 07:26:00    2017-08-12 07:26:00
112791    35085    673    2017-08-12 11:28:00    2017-08-12 11:28:00
112792    35085    806    2017-08-12 08:36:00    2017-08-12 08:36:00
112793    35085    839    2017-08-12 11:53:00    2017-08-12 11:53:00
112794    35085    583    2017-08-12 13:32:00    2017-08-12 13:32:00
112795    35086    788    2017-08-12 13:18:00    2017-08-12 13:18:00
112796    35086    510    2017-08-12 13:06:00    2017-08-12 13:06:00
112797    35086    859    2017-08-13 00:00:00    2017-08-13 00:00:00
112798    35086    480    2017-08-12 19:21:00    2017-08-12 19:21:00
112799    35086    873    2017-08-12 09:17:00    2017-08-12 09:17:00
112800    35087    626    2017-08-12 18:11:00    2017-08-12 18:11:00
112801    35087    693    2017-08-12 18:24:00    2017-08-12 18:24:00
112802    35087    840    2017-08-12 18:54:00    2017-08-12 18:54:00
112803    35087    538    2017-08-12 18:52:00    2017-08-12 18:52:00
112804    35087    478    2017-08-12 11:38:00    2017-08-12 11:38:00
112805    35088    921    2017-08-12 11:24:00    2017-08-12 11:24:00
112806    35088    739    2017-08-12 07:15:00    2017-08-12 07:15:00
112807    35088    538    2017-08-12 20:34:00    2017-08-12 20:34:00
112808    35088    539    2017-08-12 11:00:00    2017-08-12 11:00:00
112809    35088    868    2017-08-12 19:34:00    2017-08-12 19:34:00
112810    35089    537    2017-08-12 17:04:00    2017-08-12 17:04:00
112811    35089    783    2017-08-12 12:29:00    2017-08-12 12:29:00
112812    35089    536    2017-08-12 13:16:00    2017-08-12 13:16:00
112813    35089    942    2017-08-12 08:19:00    2017-08-12 08:19:00
112814    35089    777    2017-08-12 14:13:00    2017-08-12 14:13:00
112815    35090    526    2017-08-12 19:46:00    2017-08-12 19:46:00
112816    35090    749    2017-08-12 21:16:00    2017-08-12 21:16:00
112817    35090    843    2017-08-12 19:52:00    2017-08-12 19:52:00
112818    35090    720    2017-08-12 04:08:00    2017-08-12 04:08:00
112819    35090    690    2017-08-12 21:00:00    2017-08-12 21:00:00
112820    35091    799    2017-08-12 06:57:00    2017-08-12 06:57:00
112821    35091    776    2017-08-12 14:06:00    2017-08-12 14:06:00
112822    35091    735    2017-08-12 21:44:00    2017-08-12 21:44:00
112823    35091    528    2017-08-12 19:04:00    2017-08-12 19:04:00
112824    35091    871    2017-08-12 14:39:00    2017-08-12 14:39:00
112825    35092    921    2017-08-12 14:47:00    2017-08-12 14:47:00
112826    35092    762    2017-08-12 16:31:00    2017-08-12 16:31:00
112827    35092    659    2017-08-12 02:17:00    2017-08-12 02:17:00
112828    35092    502    2017-08-12 18:04:00    2017-08-12 18:04:00
112829    35092    679    2017-08-12 05:01:00    2017-08-12 05:01:00
112830    35093    751    2017-08-12 10:05:00    2017-08-12 10:05:00
112831    35093    494    2017-08-12 12:05:00    2017-08-12 12:05:00
112832    35093    925    2017-08-12 06:21:00    2017-08-12 06:21:00
112833    35093    816    2017-08-12 07:39:00    2017-08-12 07:39:00
112834    35093    816    2017-08-12 15:00:00    2017-08-12 15:00:00
112835    35094    950    2017-08-12 18:29:00    2017-08-12 18:29:00
112836    35094    741    2017-08-12 15:59:00    2017-08-12 15:59:00
112837    35094    510    2017-08-12 20:37:00    2017-08-12 20:37:00
112838    35094    843    2017-08-12 09:01:00    2017-08-12 09:01:00
112839    35094    621    2017-08-12 12:03:00    2017-08-12 12:03:00
112840    35095    569    2017-08-12 05:56:00    2017-08-12 05:56:00
112841    35095    764    2017-08-12 06:02:00    2017-08-12 06:02:00
112842    35095    928    2017-08-12 14:39:00    2017-08-12 14:39:00
112843    35095    811    2017-08-12 02:03:00    2017-08-12 02:03:00
112844    35095    661    2017-08-12 10:33:00    2017-08-12 10:33:00
112845    35096    673    2017-08-12 05:15:00    2017-08-12 05:15:00
112846    35096    944    2017-08-12 13:31:00    2017-08-12 13:31:00
112847    35096    527    2017-08-12 20:45:00    2017-08-12 20:45:00
112848    35096    866    2017-08-12 17:54:00    2017-08-12 17:54:00
112849    35096    759    2017-08-12 19:11:00    2017-08-12 19:11:00
112850    35097    570    2017-08-12 21:11:00    2017-08-12 21:11:00
112851    35097    805    2017-08-12 12:23:00    2017-08-12 12:23:00
112852    35097    700    2017-08-12 01:41:00    2017-08-12 01:41:00
112853    35097    940    2017-08-12 01:11:00    2017-08-12 01:11:00
112854    35097    768    2017-08-12 23:11:00    2017-08-12 23:11:00
112855    35098    539    2017-08-12 05:11:00    2017-08-12 05:11:00
112856    35098    510    2017-08-12 14:02:00    2017-08-12 14:02:00
112857    35098    649    2017-08-12 08:37:00    2017-08-12 08:37:00
112858    35098    946    2017-08-12 09:37:00    2017-08-12 09:37:00
112859    35098    648    2017-08-12 08:20:00    2017-08-12 08:20:00
112860    35099    664    2017-08-12 10:20:00    2017-08-12 10:20:00
112861    35099    648    2017-08-12 14:56:00    2017-08-12 14:56:00
112862    35099    697    2017-08-12 14:03:00    2017-08-12 14:03:00
112863    35099    936    2017-08-12 09:20:00    2017-08-12 09:20:00
112864    35099    835    2017-08-12 14:05:00    2017-08-12 14:05:00
112865    35100    559    2017-08-12 23:30:00    2017-08-12 23:30:00
112866    35100    693    2017-08-12 21:45:00    2017-08-12 21:45:00
112867    35100    798    2017-08-12 01:36:00    2017-08-12 01:36:00
112868    35100    855    2017-08-12 03:56:00    2017-08-12 03:56:00
112869    35100    752    2017-08-12 18:45:00    2017-08-12 18:45:00
112870    35101    757    2017-08-12 09:04:00    2017-08-12 09:04:00
112871    35101    596    2017-08-12 13:42:00    2017-08-12 13:42:00
112872    35101    819    2017-08-12 07:52:00    2017-08-12 07:52:00
112873    35101    873    2017-08-12 13:52:00    2017-08-12 13:52:00
112874    35101    886    2017-08-12 22:33:00    2017-08-12 22:33:00
112875    35102    688    2017-08-12 08:17:00    2017-08-12 08:17:00
112876    35102    475    2017-08-12 07:44:00    2017-08-12 07:44:00
112877    35102    734    2017-08-12 20:08:00    2017-08-12 20:08:00
112878    35102    482    2017-08-12 12:29:00    2017-08-12 12:29:00
112879    35102    811    2017-08-12 18:33:00    2017-08-12 18:33:00
112880    35103    800    2017-08-12 17:09:00    2017-08-12 17:09:00
112881    35103    691    2017-08-12 11:47:00    2017-08-12 11:47:00
112882    35103    877    2017-08-12 15:43:00    2017-08-12 15:43:00
112883    35103    606    2017-08-12 20:10:00    2017-08-12 20:10:00
112884    35103    467    2017-08-12 01:19:00    2017-08-12 01:19:00
112885    35104    535    2017-08-12 18:44:00    2017-08-12 18:44:00
112886    35104    736    2017-08-12 05:21:00    2017-08-12 05:21:00
112887    35104    859    2017-08-12 17:43:00    2017-08-12 17:43:00
112888    35104    776    2017-08-12 23:14:00    2017-08-12 23:14:00
112889    35104    716    2017-08-12 03:57:00    2017-08-12 03:57:00
112890    35105    485    2017-08-12 07:24:00    2017-08-12 07:24:00
112891    35105    571    2017-08-12 10:23:00    2017-08-12 10:23:00
112892    35105    879    2017-08-12 21:55:00    2017-08-12 21:55:00
112893    35105    723    2017-08-12 07:06:00    2017-08-12 07:06:00
112894    35105    881    2017-08-12 14:13:00    2017-08-12 14:13:00
112895    35106    929    2017-08-12 18:24:00    2017-08-12 18:24:00
112896    35106    501    2017-08-12 15:23:00    2017-08-12 15:23:00
112897    35106    513    2017-08-12 08:11:00    2017-08-12 08:11:00
112898    35106    569    2017-08-12 20:12:00    2017-08-12 20:12:00
112899    35106    755    2017-08-12 14:03:00    2017-08-12 14:03:00
112900    35107    577    2017-08-12 07:30:00    2017-08-12 07:30:00
112901    35107    623    2017-08-12 11:09:00    2017-08-12 11:09:00
112902    35107    808    2017-08-12 19:12:00    2017-08-12 19:12:00
112903    35107    613    2017-08-12 06:00:00    2017-08-12 06:00:00
112904    35107    475    2017-08-12 02:32:00    2017-08-12 02:32:00
112905    35108    475    2017-08-12 15:06:00    2017-08-12 15:06:00
112906    35108    874    2017-08-12 07:00:00    2017-08-12 07:00:00
112907    35108    819    2017-08-12 09:40:00    2017-08-12 09:40:00
112908    35108    483    2017-08-12 07:02:00    2017-08-12 07:02:00
112909    35108    679    2017-08-12 21:21:00    2017-08-12 21:21:00
112910    35109    478    2017-08-12 18:44:00    2017-08-12 18:44:00
112911    35109    471    2017-08-12 06:19:00    2017-08-12 06:19:00
112912    35109    881    2017-08-12 13:02:00    2017-08-12 13:02:00
112913    35109    497    2017-08-12 20:31:00    2017-08-12 20:31:00
112914    35109    621    2017-08-12 01:32:00    2017-08-12 01:32:00
112915    35110    856    2017-08-12 19:53:00    2017-08-12 19:53:00
112916    35110    936    2017-08-12 02:13:00    2017-08-12 02:13:00
112917    35110    820    2017-08-12 21:05:00    2017-08-12 21:05:00
112918    35110    954    2017-08-12 03:06:00    2017-08-12 03:06:00
112919    35110    653    2017-08-12 16:46:00    2017-08-12 16:46:00
112920    35111    522    2017-08-12 09:36:00    2017-08-12 09:36:00
112921    35111    731    2017-08-12 05:00:00    2017-08-12 05:00:00
112922    35111    808    2017-08-12 07:13:00    2017-08-12 07:13:00
112923    35111    875    2017-08-12 01:41:00    2017-08-12 01:41:00
112924    35111    704    2017-08-12 19:12:00    2017-08-12 19:12:00
112925    35112    465    2017-08-12 13:13:00    2017-08-12 13:13:00
112926    35112    638    2017-08-12 14:34:00    2017-08-12 14:34:00
112927    35112    722    2017-08-12 19:53:00    2017-08-12 19:53:00
112928    35112    900    2017-08-12 07:14:00    2017-08-12 07:14:00
112929    35112    491    2017-08-12 02:28:00    2017-08-12 02:28:00
112930    35113    616    2017-08-12 12:45:00    2017-08-12 12:45:00
112931    35113    691    2017-08-12 23:32:00    2017-08-12 23:32:00
112932    35113    783    2017-08-12 10:21:00    2017-08-12 10:21:00
112933    35113    527    2017-08-12 03:54:00    2017-08-12 03:54:00
112934    35113    539    2017-08-12 03:12:00    2017-08-12 03:12:00
112935    35114    491    2017-08-12 20:25:00    2017-08-12 20:25:00
112936    35114    862    2017-08-12 01:35:00    2017-08-12 01:35:00
112937    35114    923    2017-08-12 18:14:00    2017-08-12 18:14:00
112938    35114    960    2017-08-12 16:50:00    2017-08-12 16:50:00
112939    35114    592    2017-08-12 15:46:00    2017-08-12 15:46:00
112940    35115    719    2017-08-12 07:18:00    2017-08-12 07:18:00
112941    35115    480    2017-08-12 15:28:00    2017-08-12 15:28:00
112942    35115    808    2017-08-12 05:16:00    2017-08-12 05:16:00
112943    35115    610    2017-08-12 13:13:00    2017-08-12 13:13:00
112944    35115    705    2017-08-12 20:42:00    2017-08-12 20:42:00
112945    35116    737    2017-08-12 13:18:00    2017-08-12 13:18:00
112946    35116    802    2017-08-12 05:59:00    2017-08-12 05:59:00
112947    35116    608    2017-08-12 20:23:00    2017-08-12 20:23:00
112948    35116    736    2017-08-12 16:27:00    2017-08-12 16:27:00
112949    35116    577    2017-08-12 20:15:00    2017-08-12 20:15:00
112950    35117    764    2017-08-12 19:20:00    2017-08-12 19:20:00
112951    35117    616    2017-08-12 19:17:00    2017-08-12 19:17:00
112952    35117    686    2017-08-12 19:43:00    2017-08-12 19:43:00
112953    35117    632    2017-08-12 18:03:00    2017-08-12 18:03:00
112954    35117    726    2017-08-12 13:52:00    2017-08-12 13:52:00
112955    35118    537    2017-08-12 14:20:00    2017-08-12 14:20:00
112956    35118    747    2017-08-12 03:00:00    2017-08-12 03:00:00
112957    35118    466    2017-08-12 08:35:00    2017-08-12 08:35:00
112958    35118    893    2017-08-12 23:12:00    2017-08-12 23:12:00
112959    35118    589    2017-08-12 07:35:00    2017-08-12 07:35:00
112960    35119    887    2017-08-12 12:28:00    2017-08-12 12:28:00
112961    35119    643    2017-08-12 08:11:00    2017-08-12 08:11:00
112962    35119    708    2017-08-12 20:41:00    2017-08-12 20:41:00
112963    35119    653    2017-08-12 06:44:00    2017-08-12 06:44:00
112964    35119    529    2017-08-12 10:11:00    2017-08-12 10:11:00
112965    35120    519    2017-08-12 22:05:00    2017-08-12 22:05:00
112966    35120    693    2017-08-12 21:42:00    2017-08-12 21:42:00
112967    35120    539    2017-08-12 05:17:00    2017-08-12 05:17:00
112968    35120    840    2017-08-12 15:27:00    2017-08-12 15:27:00
112969    35120    676    2017-08-12 18:14:00    2017-08-12 18:14:00
112970    35121    711    2017-08-12 14:58:00    2017-08-12 14:58:00
112971    35121    619    2017-08-12 14:32:00    2017-08-12 14:32:00
112972    35121    498    2017-08-12 06:22:00    2017-08-12 06:22:00
112973    35121    830    2017-08-12 03:10:00    2017-08-12 03:10:00
112974    35121    800    2017-08-12 12:29:00    2017-08-12 12:29:00
112975    35122    934    2017-08-12 09:00:00    2017-08-12 09:00:00
112976    35122    540    2017-08-12 14:58:00    2017-08-12 14:58:00
112977    35122    734    2017-08-12 15:00:00    2017-08-12 15:00:00
112978    35122    914    2017-08-12 22:18:00    2017-08-12 22:18:00
112979    35122    769    2017-08-12 13:30:00    2017-08-12 13:30:00
112980    35123    716    2017-08-12 10:54:00    2017-08-12 10:54:00
112981    35123    793    2017-08-12 20:39:00    2017-08-12 20:39:00
112982    35123    489    2017-08-12 10:59:00    2017-08-12 10:59:00
112983    35123    715    2017-08-12 16:35:00    2017-08-12 16:35:00
112984    35123    751    2017-08-12 19:55:00    2017-08-12 19:55:00
112985    35124    669    2017-08-12 08:22:00    2017-08-12 08:22:00
112986    35124    474    2017-08-12 19:10:00    2017-08-12 19:10:00
112987    35124    945    2017-08-12 04:00:00    2017-08-12 04:00:00
112988    35124    642    2017-08-12 03:16:00    2017-08-12 03:16:00
112989    35124    754    2017-08-12 10:37:00    2017-08-12 10:37:00
112990    35125    491    2017-08-12 06:58:00    2017-08-12 06:58:00
112991    35125    498    2017-08-12 23:10:00    2017-08-12 23:10:00
112992    35125    947    2017-08-12 19:06:00    2017-08-12 19:06:00
112993    35125    590    2017-08-12 20:06:00    2017-08-12 20:06:00
112994    35125    488    2017-08-12 19:55:00    2017-08-12 19:55:00
112995    35126    497    2017-08-12 15:33:00    2017-08-12 15:33:00
112996    35126    767    2017-08-12 07:00:00    2017-08-12 07:00:00
112997    35126    618    2017-08-12 14:28:00    2017-08-12 14:28:00
112998    35126    713    2017-08-12 17:10:00    2017-08-12 17:10:00
112999    35126    659    2017-08-12 03:49:00    2017-08-12 03:49:00
113000    35127    504    2017-08-13 19:15:00    2017-08-13 19:15:00
113001    35127    904    2017-08-13 03:47:00    2017-08-13 03:47:00
113002    35127    945    2017-08-13 22:37:00    2017-08-13 22:37:00
113003    35127    814    2017-08-13 14:00:00    2017-08-13 14:00:00
113004    35127    760    2017-08-13 20:50:00    2017-08-13 20:50:00
113005    35128    909    2017-08-13 19:40:00    2017-08-13 19:40:00
113006    35128    509    2017-08-13 16:40:00    2017-08-13 16:40:00
113007    35128    585    2017-08-13 06:24:00    2017-08-13 06:24:00
113008    35128    622    2017-08-13 06:25:00    2017-08-13 06:25:00
113009    35128    485    2017-08-13 18:14:00    2017-08-13 18:14:00
113010    35129    884    2017-08-13 16:06:00    2017-08-13 16:06:00
113011    35129    546    2017-08-13 11:14:00    2017-08-13 11:14:00
113012    35129    489    2017-08-13 06:53:00    2017-08-13 06:53:00
113013    35129    765    2017-08-13 11:14:00    2017-08-13 11:14:00
113014    35129    557    2017-08-13 06:47:00    2017-08-13 06:47:00
113015    35130    703    2017-08-13 02:08:00    2017-08-13 02:08:00
113016    35130    862    2017-08-13 03:14:00    2017-08-13 03:14:00
113017    35130    937    2017-08-13 09:46:00    2017-08-13 09:46:00
113018    35130    604    2017-08-13 10:10:00    2017-08-13 10:10:00
113019    35130    742    2017-08-13 17:49:00    2017-08-13 17:49:00
113020    35131    689    2017-08-13 09:02:00    2017-08-13 09:02:00
113021    35131    799    2017-08-13 02:19:00    2017-08-13 02:19:00
113022    35131    710    2017-08-13 16:27:00    2017-08-13 16:27:00
113023    35131    903    2017-08-13 12:25:00    2017-08-13 12:25:00
113024    35131    901    2017-08-13 20:01:00    2017-08-13 20:01:00
113025    35132    892    2017-08-13 11:03:00    2017-08-13 11:03:00
113026    35132    709    2017-08-13 08:59:00    2017-08-13 08:59:00
113027    35132    836    2017-08-13 05:03:00    2017-08-13 05:03:00
113028    35132    571    2017-08-13 15:12:00    2017-08-13 15:12:00
113029    35132    748    2017-08-13 01:10:00    2017-08-13 01:10:00
113030    35133    671    2017-08-13 23:20:00    2017-08-13 23:20:00
113031    35133    632    2017-08-13 11:42:00    2017-08-13 11:42:00
113032    35133    855    2017-08-13 09:21:00    2017-08-13 09:21:00
113033    35133    483    2017-08-13 03:27:00    2017-08-13 03:27:00
113034    35133    930    2017-08-13 03:24:00    2017-08-13 03:24:00
113035    35134    917    2017-08-13 15:14:00    2017-08-13 15:14:00
113036    35134    938    2017-08-13 13:49:00    2017-08-13 13:49:00
113037    35134    729    2017-08-13 09:15:00    2017-08-13 09:15:00
113038    35134    650    2017-08-13 15:51:00    2017-08-13 15:51:00
113039    35134    813    2017-08-13 15:43:00    2017-08-13 15:43:00
113040    35135    758    2017-08-13 02:52:00    2017-08-13 02:52:00
113041    35135    684    2017-08-13 06:15:00    2017-08-13 06:15:00
113042    35135    749    2017-08-13 10:33:00    2017-08-13 10:33:00
113043    35135    492    2017-08-13 08:19:00    2017-08-13 08:19:00
113044    35135    525    2017-08-13 03:31:00    2017-08-13 03:31:00
113045    35136    674    2017-08-13 04:05:00    2017-08-13 04:05:00
113046    35136    808    2017-08-13 16:37:00    2017-08-13 16:37:00
113047    35136    475    2017-08-13 17:10:00    2017-08-13 17:10:00
113048    35136    857    2017-08-13 04:20:00    2017-08-13 04:20:00
113049    35136    655    2017-08-13 12:10:00    2017-08-13 12:10:00
113050    35137    625    2017-08-13 07:05:00    2017-08-13 07:05:00
113051    35137    908    2017-08-13 17:08:00    2017-08-13 17:08:00
113052    35137    947    2017-08-13 09:12:00    2017-08-13 09:12:00
113053    35137    544    2017-08-13 01:44:00    2017-08-13 01:44:00
113054    35137    494    2017-08-13 20:49:00    2017-08-13 20:49:00
113055    35138    896    2017-08-13 17:49:00    2017-08-13 17:49:00
113056    35138    848    2017-08-13 22:15:00    2017-08-13 22:15:00
113057    35138    540    2017-08-13 15:09:00    2017-08-13 15:09:00
113058    35138    511    2017-08-13 23:55:00    2017-08-13 23:55:00
113059    35138    519    2017-08-13 19:36:00    2017-08-13 19:36:00
113060    35139    488    2017-08-13 06:29:00    2017-08-13 06:29:00
113061    35139    622    2017-08-13 17:06:00    2017-08-13 17:06:00
113062    35139    800    2017-08-13 20:54:00    2017-08-13 20:54:00
113063    35139    753    2017-08-13 03:08:00    2017-08-13 03:08:00
113064    35139    824    2017-08-13 19:36:00    2017-08-13 19:36:00
113065    35140    557    2017-08-13 15:33:00    2017-08-13 15:33:00
113066    35140    690    2017-08-13 05:15:00    2017-08-13 05:15:00
113067    35140    923    2017-08-13 05:34:00    2017-08-13 05:34:00
113068    35140    907    2017-08-13 02:00:00    2017-08-13 02:00:00
113069    35140    941    2017-08-13 12:36:00    2017-08-13 12:36:00
113070    35141    499    2017-08-13 08:09:00    2017-08-13 08:09:00
113071    35141    539    2017-08-13 06:54:00    2017-08-13 06:54:00
113072    35141    961    2017-08-13 22:58:00    2017-08-13 22:58:00
113073    35141    959    2017-08-13 09:38:00    2017-08-13 09:38:00
113074    35141    540    2017-08-13 07:01:00    2017-08-13 07:01:00
113075    35142    499    2017-08-13 03:20:00    2017-08-13 03:20:00
113076    35142    603    2017-08-13 08:40:00    2017-08-13 08:40:00
113077    35142    600    2017-08-13 01:18:00    2017-08-13 01:18:00
113078    35142    874    2017-08-13 01:03:00    2017-08-13 01:03:00
113079    35142    470    2017-08-13 11:01:00    2017-08-13 11:01:00
113080    35143    599    2017-08-13 12:27:00    2017-08-13 12:27:00
113081    35143    834    2017-08-13 14:15:00    2017-08-13 14:15:00
113082    35143    468    2017-08-13 22:35:00    2017-08-13 22:35:00
113083    35143    647    2017-08-13 02:57:00    2017-08-13 02:57:00
113084    35143    574    2017-08-13 03:17:00    2017-08-13 03:17:00
113085    35144    480    2017-08-13 13:00:00    2017-08-13 13:00:00
113086    35144    543    2017-08-13 22:02:00    2017-08-13 22:02:00
113087    35144    611    2017-08-13 07:30:00    2017-08-13 07:30:00
113088    35144    595    2017-08-13 03:51:00    2017-08-13 03:51:00
113089    35144    739    2017-08-13 07:12:00    2017-08-13 07:12:00
113090    35145    515    2017-08-13 18:32:00    2017-08-13 18:32:00
113091    35145    727    2017-08-13 04:35:00    2017-08-13 04:35:00
113092    35145    932    2017-08-13 23:01:00    2017-08-13 23:01:00
113093    35145    706    2017-08-13 20:39:00    2017-08-13 20:39:00
113094    35145    948    2017-08-13 15:52:00    2017-08-13 15:52:00
113095    35146    836    2017-08-13 13:27:00    2017-08-13 13:27:00
113096    35146    946    2017-08-13 12:48:00    2017-08-13 12:48:00
113097    35146    552    2017-08-13 11:27:00    2017-08-13 11:27:00
113098    35146    891    2017-08-13 22:00:00    2017-08-13 22:00:00
113099    35146    807    2017-08-13 23:47:00    2017-08-13 23:47:00
113100    35147    875    2017-08-13 23:30:00    2017-08-13 23:30:00
113101    35147    776    2017-08-13 18:26:00    2017-08-13 18:26:00
113102    35147    466    2017-08-13 09:11:00    2017-08-13 09:11:00
113103    35147    527    2017-08-13 13:53:00    2017-08-13 13:53:00
113104    35147    701    2017-08-13 10:45:00    2017-08-13 10:45:00
113105    35148    879    2017-08-13 02:18:00    2017-08-13 02:18:00
113106    35148    553    2017-08-13 07:07:00    2017-08-13 07:07:00
113107    35148    715    2017-08-13 08:51:00    2017-08-13 08:51:00
113108    35148    494    2017-08-13 22:51:00    2017-08-13 22:51:00
113109    35148    493    2017-08-13 04:16:00    2017-08-13 04:16:00
113110    35149    809    2017-08-13 09:58:00    2017-08-13 09:58:00
113111    35149    664    2017-08-13 08:26:00    2017-08-13 08:26:00
113112    35149    464    2017-08-13 03:43:00    2017-08-13 03:43:00
113113    35149    516    2017-08-13 04:53:00    2017-08-13 04:53:00
113114    35149    907    2017-08-13 11:08:00    2017-08-13 11:08:00
113115    35150    878    2017-08-13 20:39:00    2017-08-13 20:39:00
113116    35150    758    2017-08-13 22:33:00    2017-08-13 22:33:00
113117    35150    874    2017-08-13 22:58:00    2017-08-13 22:58:00
113118    35150    874    2017-08-13 03:03:00    2017-08-13 03:03:00
113119    35150    625    2017-08-13 07:31:00    2017-08-13 07:31:00
113120    35151    601    2017-08-13 13:12:00    2017-08-13 13:12:00
113121    35151    709    2017-08-13 23:25:00    2017-08-13 23:25:00
113122    35151    886    2017-08-13 11:11:00    2017-08-13 11:11:00
113123    35151    703    2017-08-13 14:37:00    2017-08-13 14:37:00
113124    35151    876    2017-08-13 10:12:00    2017-08-13 10:12:00
113125    35152    687    2017-08-13 14:25:00    2017-08-13 14:25:00
113126    35152    547    2017-08-13 11:49:00    2017-08-13 11:49:00
113127    35152    873    2017-08-13 16:35:00    2017-08-13 16:35:00
113128    35152    772    2017-08-13 14:40:00    2017-08-13 14:40:00
113129    35152    503    2017-08-13 11:59:00    2017-08-13 11:59:00
113130    35153    860    2017-08-13 15:10:00    2017-08-13 15:10:00
113131    35153    703    2017-08-13 09:03:00    2017-08-13 09:03:00
113132    35153    831    2017-08-13 08:37:00    2017-08-13 08:37:00
113133    35153    664    2017-08-13 04:40:00    2017-08-13 04:40:00
113134    35153    830    2017-08-13 20:54:00    2017-08-13 20:54:00
113135    35154    566    2017-08-13 22:07:00    2017-08-13 22:07:00
113136    35154    912    2017-08-13 02:00:00    2017-08-13 02:00:00
113137    35154    617    2017-08-13 03:25:00    2017-08-13 03:25:00
113138    35154    757    2017-08-13 04:23:00    2017-08-13 04:23:00
113139    35154    691    2017-08-13 10:53:00    2017-08-13 10:53:00
113140    35155    714    2017-08-13 22:50:00    2017-08-13 22:50:00
113141    35155    650    2017-08-13 04:43:00    2017-08-13 04:43:00
113142    35155    747    2017-08-13 06:36:00    2017-08-13 06:36:00
113143    35155    792    2017-08-13 12:05:00    2017-08-13 12:05:00
113144    35155    732    2017-08-13 07:49:00    2017-08-13 07:49:00
113145    35156    911    2017-08-13 21:50:00    2017-08-13 21:50:00
113146    35156    764    2017-08-13 09:17:00    2017-08-13 09:17:00
113147    35156    516    2017-08-13 21:05:00    2017-08-13 21:05:00
113148    35156    560    2017-08-13 12:29:00    2017-08-13 12:29:00
113149    35156    690    2017-08-13 06:36:00    2017-08-13 06:36:00
113150    35157    955    2017-08-13 21:17:00    2017-08-13 21:17:00
113151    35157    679    2017-08-13 08:12:00    2017-08-13 08:12:00
113152    35157    907    2017-08-13 15:05:00    2017-08-13 15:05:00
113153    35157    534    2017-08-13 23:09:00    2017-08-13 23:09:00
113154    35157    609    2017-08-13 04:37:00    2017-08-13 04:37:00
113155    35158    653    2017-08-13 13:12:00    2017-08-13 13:12:00
113156    35158    921    2017-08-13 14:11:00    2017-08-13 14:11:00
113157    35158    768    2017-08-13 20:53:00    2017-08-13 20:53:00
113158    35158    496    2017-08-13 19:24:00    2017-08-13 19:24:00
113159    35158    913    2017-08-13 07:08:00    2017-08-13 07:08:00
113160    35159    940    2017-08-13 19:23:00    2017-08-13 19:23:00
113161    35159    868    2017-08-13 15:39:00    2017-08-13 15:39:00
113162    35159    464    2017-08-13 23:21:00    2017-08-13 23:21:00
113163    35159    524    2017-08-13 21:11:00    2017-08-13 21:11:00
113164    35159    843    2017-08-13 04:33:00    2017-08-13 04:33:00
113165    35160    555    2017-08-13 17:22:00    2017-08-13 17:22:00
113166    35160    886    2017-08-13 01:26:00    2017-08-13 01:26:00
113167    35160    950    2017-08-13 11:18:00    2017-08-13 11:18:00
113168    35160    510    2017-08-13 02:27:00    2017-08-13 02:27:00
113169    35160    841    2017-08-13 20:56:00    2017-08-13 20:56:00
113170    35161    644    2017-08-13 23:17:00    2017-08-13 23:17:00
113171    35161    515    2017-08-13 09:46:00    2017-08-13 09:46:00
113172    35161    804    2017-08-13 07:46:00    2017-08-13 07:46:00
113173    35161    884    2017-08-13 07:16:00    2017-08-13 07:16:00
113174    35161    781    2017-08-13 21:34:00    2017-08-13 21:34:00
113175    35162    783    2017-08-13 08:51:00    2017-08-13 08:51:00
113176    35162    659    2017-08-13 16:37:00    2017-08-13 16:37:00
113177    35162    954    2017-08-13 09:46:00    2017-08-13 09:46:00
113178    35162    779    2017-08-13 10:19:00    2017-08-13 10:19:00
113179    35162    512    2017-08-13 20:09:00    2017-08-13 20:09:00
113180    35163    917    2017-08-13 16:36:00    2017-08-13 16:36:00
113181    35163    633    2017-08-13 04:26:00    2017-08-13 04:26:00
113182    35163    807    2017-08-13 01:03:00    2017-08-13 01:03:00
113183    35163    535    2017-08-13 20:48:00    2017-08-13 20:48:00
113184    35163    811    2017-08-13 01:34:00    2017-08-13 01:34:00
113185    35164    738    2017-08-13 14:14:00    2017-08-13 14:14:00
113186    35164    520    2017-08-13 13:40:00    2017-08-13 13:40:00
113187    35164    888    2017-08-13 11:48:00    2017-08-13 11:48:00
113188    35164    793    2017-08-13 08:00:00    2017-08-13 08:00:00
113189    35164    570    2017-08-13 05:08:00    2017-08-13 05:08:00
113190    35165    619    2017-08-13 18:51:00    2017-08-13 18:51:00
113191    35165    638    2017-08-13 18:03:00    2017-08-13 18:03:00
113192    35165    847    2017-08-13 15:35:00    2017-08-13 15:35:00
113193    35165    919    2017-08-13 20:18:00    2017-08-13 20:18:00
113194    35165    816    2017-08-13 20:11:00    2017-08-13 20:11:00
113195    35166    958    2017-08-13 05:10:00    2017-08-13 05:10:00
113196    35166    560    2017-08-13 08:25:00    2017-08-13 08:25:00
113197    35166    586    2017-08-13 04:53:00    2017-08-13 04:53:00
113198    35166    892    2017-08-13 21:09:00    2017-08-13 21:09:00
113199    35166    914    2017-08-13 22:08:00    2017-08-13 22:08:00
113200    35167    641    2017-08-13 09:22:00    2017-08-13 09:22:00
113201    35167    712    2017-08-13 23:29:00    2017-08-13 23:29:00
113202    35167    804    2017-08-13 06:22:00    2017-08-13 06:22:00
113203    35167    658    2017-08-13 02:21:00    2017-08-13 02:21:00
113204    35167    702    2017-08-13 18:10:00    2017-08-13 18:10:00
113205    35168    721    2017-08-13 21:59:00    2017-08-13 21:59:00
113206    35168    515    2017-08-13 22:33:00    2017-08-13 22:33:00
113207    35168    658    2017-08-13 04:06:00    2017-08-13 04:06:00
113208    35168    732    2017-08-13 09:31:00    2017-08-13 09:31:00
113209    35168    629    2017-08-13 12:55:00    2017-08-13 12:55:00
113210    35169    711    2017-08-13 20:01:00    2017-08-13 20:01:00
113211    35169    741    2017-08-13 02:47:00    2017-08-13 02:47:00
113212    35169    550    2017-08-13 11:32:00    2017-08-13 11:32:00
113213    35169    816    2017-08-13 15:56:00    2017-08-13 15:56:00
113214    35169    870    2017-08-13 01:27:00    2017-08-13 01:27:00
113215    35170    871    2017-08-13 04:19:00    2017-08-13 04:19:00
113216    35170    543    2017-08-13 14:37:00    2017-08-13 14:37:00
113217    35170    700    2017-08-13 13:31:00    2017-08-13 13:31:00
113218    35170    581    2017-08-13 10:17:00    2017-08-13 10:17:00
113219    35170    918    2017-08-13 12:03:00    2017-08-13 12:03:00
113220    35171    824    2017-08-13 06:57:00    2017-08-13 06:57:00
113221    35171    475    2017-08-13 04:10:00    2017-08-13 04:10:00
113222    35171    485    2017-08-13 06:42:00    2017-08-13 06:42:00
113223    35171    909    2017-08-13 09:35:00    2017-08-13 09:35:00
113224    35171    747    2017-08-13 11:03:00    2017-08-13 11:03:00
113225    35172    726    2017-08-13 09:08:00    2017-08-13 09:08:00
113226    35172    589    2017-08-13 06:58:00    2017-08-13 06:58:00
113227    35172    657    2017-08-13 02:05:00    2017-08-13 02:05:00
113228    35172    940    2017-08-13 01:49:00    2017-08-13 01:49:00
113229    35172    631    2017-08-13 08:48:00    2017-08-13 08:48:00
113230    35173    645    2017-08-13 02:41:00    2017-08-13 02:41:00
113231    35173    683    2017-08-13 11:42:00    2017-08-13 11:42:00
113232    35173    533    2017-08-13 11:01:00    2017-08-13 11:01:00
113233    35173    491    2017-08-13 13:14:00    2017-08-13 13:14:00
113234    35173    749    2017-08-13 04:06:00    2017-08-13 04:06:00
113235    35174    766    2017-08-13 12:06:00    2017-08-13 12:06:00
113236    35174    882    2017-08-13 23:41:00    2017-08-13 23:41:00
113237    35174    919    2017-08-13 10:04:00    2017-08-13 10:04:00
113238    35174    650    2017-08-13 02:58:00    2017-08-13 02:58:00
113239    35174    716    2017-08-13 10:52:00    2017-08-13 10:52:00
113240    35175    830    2017-08-13 19:25:00    2017-08-13 19:25:00
113241    35175    808    2017-08-13 13:29:00    2017-08-13 13:29:00
113242    35175    835    2017-08-13 01:27:00    2017-08-13 01:27:00
113243    35175    868    2017-08-13 14:47:00    2017-08-13 14:47:00
113244    35175    690    2017-08-13 16:52:00    2017-08-13 16:52:00
113245    35176    708    2017-08-13 10:20:00    2017-08-13 10:20:00
113246    35176    567    2017-08-13 09:57:00    2017-08-13 09:57:00
113247    35176    812    2017-08-13 18:52:00    2017-08-13 18:52:00
113248    35176    504    2017-08-13 15:55:00    2017-08-13 15:55:00
113249    35176    699    2017-08-13 09:06:00    2017-08-13 09:06:00
113250    35177    854    2017-08-13 09:29:00    2017-08-13 09:29:00
113251    35177    602    2017-08-13 03:46:00    2017-08-13 03:46:00
113252    35177    838    2017-08-13 23:31:00    2017-08-13 23:31:00
113253    35177    647    2017-08-13 14:22:00    2017-08-13 14:22:00
113254    35177    497    2017-08-13 13:55:00    2017-08-13 13:55:00
113255    35178    770    2017-08-13 23:56:00    2017-08-13 23:56:00
113256    35178    589    2017-08-13 11:23:00    2017-08-13 11:23:00
113257    35178    959    2017-08-13 19:38:00    2017-08-13 19:38:00
113258    35178    833    2017-08-13 09:37:00    2017-08-13 09:37:00
113259    35178    668    2017-08-13 03:04:00    2017-08-13 03:04:00
113260    35179    630    2017-08-13 03:51:00    2017-08-13 03:51:00
113261    35179    852    2017-08-13 16:49:00    2017-08-13 16:49:00
113262    35179    630    2017-08-13 06:00:00    2017-08-13 06:00:00
113263    35179    959    2017-08-13 04:12:00    2017-08-13 04:12:00
113264    35179    716    2017-08-13 07:34:00    2017-08-13 07:34:00
113265    35180    679    2017-08-13 10:08:00    2017-08-13 10:08:00
113266    35180    551    2017-08-13 12:26:00    2017-08-13 12:26:00
113267    35180    669    2017-08-13 22:20:00    2017-08-13 22:20:00
113268    35180    773    2017-08-13 20:31:00    2017-08-13 20:31:00
113269    35180    515    2017-08-13 08:50:00    2017-08-13 08:50:00
113270    35181    641    2017-08-13 23:57:00    2017-08-13 23:57:00
113271    35181    703    2017-08-13 08:32:00    2017-08-13 08:32:00
113272    35181    863    2017-08-13 17:28:00    2017-08-13 17:28:00
113273    35181    953    2017-08-13 13:27:00    2017-08-13 13:27:00
113274    35181    614    2017-08-13 22:11:00    2017-08-13 22:11:00
113275    35182    641    2017-08-13 16:26:00    2017-08-13 16:26:00
113276    35182    931    2017-08-13 08:00:00    2017-08-13 08:00:00
113277    35182    657    2017-08-13 09:53:00    2017-08-13 09:53:00
113278    35182    852    2017-08-13 05:04:00    2017-08-13 05:04:00
113279    35182    702    2017-08-13 18:46:00    2017-08-13 18:46:00
113280    35183    961    2017-08-13 18:10:00    2017-08-13 18:10:00
113281    35183    873    2017-08-13 07:28:00    2017-08-13 07:28:00
113282    35183    702    2017-08-13 11:55:00    2017-08-13 11:55:00
113283    35183    518    2017-08-13 01:03:00    2017-08-13 01:03:00
113284    35183    737    2017-08-13 03:17:00    2017-08-13 03:17:00
113285    35184    745    2017-08-13 05:29:00    2017-08-13 05:29:00
113286    35184    834    2017-08-13 17:42:00    2017-08-13 17:42:00
113287    35184    469    2017-08-13 01:49:00    2017-08-13 01:49:00
113288    35184    582    2017-08-13 05:17:00    2017-08-13 05:17:00
113289    35184    514    2017-08-13 09:06:00    2017-08-13 09:06:00
113290    35185    512    2017-08-13 06:51:00    2017-08-13 06:51:00
113291    35185    614    2017-08-13 13:34:00    2017-08-13 13:34:00
113292    35185    877    2017-08-13 18:35:00    2017-08-13 18:35:00
113293    35185    894    2017-08-13 21:02:00    2017-08-13 21:02:00
113294    35185    842    2017-08-13 22:55:00    2017-08-13 22:55:00
113295    35186    531    2017-08-13 05:48:00    2017-08-13 05:48:00
113296    35186    736    2017-08-13 18:21:00    2017-08-13 18:21:00
113297    35186    647    2017-08-13 05:27:00    2017-08-13 05:27:00
113298    35186    888    2017-08-13 16:51:00    2017-08-13 16:51:00
113299    35186    799    2017-08-13 18:45:00    2017-08-13 18:45:00
113300    35187    690    2017-08-13 14:08:00    2017-08-13 14:08:00
113301    35187    856    2017-08-13 20:13:00    2017-08-13 20:13:00
113302    35187    768    2017-08-13 16:36:00    2017-08-13 16:36:00
113303    35187    906    2017-08-13 11:16:00    2017-08-13 11:16:00
113304    35187    533    2017-08-13 21:14:00    2017-08-13 21:14:00
113305    35188    765    2017-08-14 02:33:00    2017-08-14 02:33:00
113306    35188    813    2017-08-14 21:19:00    2017-08-14 21:19:00
113307    35188    767    2017-08-14 22:18:00    2017-08-14 22:18:00
113308    35188    854    2017-08-14 14:36:00    2017-08-14 14:36:00
113309    35188    529    2017-08-14 21:44:00    2017-08-14 21:44:00
113310    35189    545    2017-08-14 07:24:00    2017-08-14 07:24:00
113311    35189    748    2017-08-14 20:06:00    2017-08-14 20:06:00
113312    35189    757    2017-08-14 13:54:00    2017-08-14 13:54:00
113313    35189    941    2017-08-14 05:55:00    2017-08-14 05:55:00
113314    35189    781    2017-08-14 16:31:00    2017-08-14 16:31:00
113315    35190    822    2017-08-14 10:05:00    2017-08-14 10:05:00
113316    35190    919    2017-08-14 23:58:00    2017-08-14 23:58:00
113317    35190    536    2017-08-14 22:21:00    2017-08-14 22:21:00
113318    35190    902    2017-08-14 13:24:00    2017-08-14 13:24:00
113319    35190    843    2017-08-14 05:59:00    2017-08-14 05:59:00
113320    35191    828    2017-08-14 08:46:00    2017-08-14 08:46:00
113321    35191    557    2017-08-14 19:17:00    2017-08-14 19:17:00
113322    35191    814    2017-08-14 01:33:00    2017-08-14 01:33:00
113323    35191    660    2017-08-14 18:33:00    2017-08-14 18:33:00
113324    35191    874    2017-08-14 04:12:00    2017-08-14 04:12:00
113325    35192    841    2017-08-14 20:48:00    2017-08-14 20:48:00
113326    35192    466    2017-08-14 20:29:00    2017-08-14 20:29:00
113327    35192    517    2017-08-14 19:53:00    2017-08-14 19:53:00
113328    35192    903    2017-08-14 19:20:00    2017-08-14 19:20:00
113329    35192    737    2017-08-14 17:45:00    2017-08-14 17:45:00
113330    35193    540    2017-08-14 08:53:00    2017-08-14 08:53:00
113331    35193    724    2017-08-14 10:51:00    2017-08-14 10:51:00
113332    35193    655    2017-08-14 09:03:00    2017-08-14 09:03:00
113333    35193    661    2017-08-14 15:46:00    2017-08-14 15:46:00
113334    35193    946    2017-08-14 14:21:00    2017-08-14 14:21:00
113335    35194    810    2017-08-14 10:56:00    2017-08-14 10:56:00
113336    35194    907    2017-08-14 02:38:00    2017-08-14 02:38:00
113337    35194    471    2017-08-14 09:44:00    2017-08-14 09:44:00
113338    35194    609    2017-08-14 16:01:00    2017-08-14 16:01:00
113339    35194    601    2017-08-14 07:40:00    2017-08-14 07:40:00
113340    35195    760    2017-08-14 17:57:00    2017-08-14 17:57:00
113341    35195    827    2017-08-14 03:13:00    2017-08-14 03:13:00
113342    35195    961    2017-08-14 01:56:00    2017-08-14 01:56:00
113343    35195    931    2017-08-14 08:21:00    2017-08-14 08:21:00
113344    35195    570    2017-08-14 23:11:00    2017-08-14 23:11:00
113345    35196    932    2017-08-14 17:49:00    2017-08-14 17:49:00
113346    35196    852    2017-08-14 17:59:00    2017-08-14 17:59:00
113347    35196    715    2017-08-14 19:11:00    2017-08-14 19:11:00
113348    35196    605    2017-08-14 13:09:00    2017-08-14 13:09:00
113349    35196    784    2017-08-14 22:44:00    2017-08-14 22:44:00
113350    35197    535    2017-08-14 05:33:00    2017-08-14 05:33:00
113351    35197    749    2017-08-14 15:55:00    2017-08-14 15:55:00
113352    35197    883    2017-08-14 13:02:00    2017-08-14 13:02:00
113353    35197    865    2017-08-14 03:55:00    2017-08-14 03:55:00
113354    35197    756    2017-08-14 18:21:00    2017-08-14 18:21:00
113355    35198    773    2017-08-14 04:32:00    2017-08-14 04:32:00
113356    35198    697    2017-08-14 05:02:00    2017-08-14 05:02:00
113357    35198    863    2017-08-14 14:09:00    2017-08-14 14:09:00
113358    35198    722    2017-08-14 16:43:00    2017-08-14 16:43:00
113359    35198    666    2017-08-14 16:00:00    2017-08-14 16:00:00
113360    35199    716    2017-08-14 05:42:00    2017-08-14 05:42:00
113361    35199    948    2017-08-14 18:49:00    2017-08-14 18:49:00
113362    35199    769    2017-08-14 21:47:00    2017-08-14 21:47:00
113363    35199    700    2017-08-14 18:46:00    2017-08-14 18:46:00
113364    35199    868    2017-08-14 03:19:00    2017-08-14 03:19:00
113365    35200    557    2017-08-14 08:19:00    2017-08-14 08:19:00
113366    35200    730    2017-08-14 18:47:00    2017-08-14 18:47:00
113367    35200    709    2017-08-14 05:30:00    2017-08-14 05:30:00
113368    35200    610    2017-08-14 10:06:00    2017-08-14 10:06:00
113369    35200    809    2017-08-14 22:38:00    2017-08-14 22:38:00
113370    35201    834    2017-08-14 04:53:00    2017-08-14 04:53:00
113371    35201    589    2017-08-14 04:14:00    2017-08-14 04:14:00
113372    35201    807    2017-08-14 01:02:00    2017-08-14 01:02:00
113373    35201    602    2017-08-14 16:21:00    2017-08-14 16:21:00
113374    35201    725    2017-08-14 23:18:00    2017-08-14 23:18:00
113375    35202    616    2017-08-14 19:12:00    2017-08-14 19:12:00
113376    35202    886    2017-08-14 14:50:00    2017-08-14 14:50:00
113377    35202    844    2017-08-14 17:08:00    2017-08-14 17:08:00
113378    35202    559    2017-08-14 07:57:00    2017-08-14 07:57:00
113379    35202    693    2017-08-14 23:02:00    2017-08-14 23:02:00
113380    35203    582    2017-08-14 07:55:00    2017-08-14 07:55:00
113381    35203    926    2017-08-14 08:32:00    2017-08-14 08:32:00
113382    35203    481    2017-08-14 13:26:00    2017-08-14 13:26:00
113383    35203    744    2017-08-14 22:08:00    2017-08-14 22:08:00
113384    35203    633    2017-08-14 12:35:00    2017-08-14 12:35:00
113385    35204    545    2017-08-14 18:47:00    2017-08-14 18:47:00
113386    35204    612    2017-08-14 22:26:00    2017-08-14 22:26:00
113387    35204    862    2017-08-14 09:04:00    2017-08-14 09:04:00
113388    35204    844    2017-08-14 19:47:00    2017-08-14 19:47:00
113389    35204    847    2017-08-14 16:46:00    2017-08-14 16:46:00
113390    35205    780    2017-08-14 20:57:00    2017-08-14 20:57:00
113391    35205    739    2017-08-14 21:27:00    2017-08-14 21:27:00
113392    35205    721    2017-08-14 10:15:00    2017-08-14 10:15:00
113393    35205    559    2017-08-14 22:13:00    2017-08-14 22:13:00
113394    35205    468    2017-08-14 19:07:00    2017-08-14 19:07:00
113395    35206    715    2017-08-14 01:15:00    2017-08-14 01:15:00
113396    35206    828    2017-08-14 12:36:00    2017-08-14 12:36:00
113397    35206    705    2017-08-14 18:45:00    2017-08-14 18:45:00
113398    35206    518    2017-08-14 04:38:00    2017-08-14 04:38:00
113399    35206    726    2017-08-14 13:50:00    2017-08-14 13:50:00
113400    35207    648    2017-08-14 07:58:00    2017-08-14 07:58:00
113401    35207    531    2017-08-14 15:19:00    2017-08-14 15:19:00
113402    35207    725    2017-08-14 05:27:00    2017-08-14 05:27:00
113403    35207    678    2017-08-14 05:01:00    2017-08-14 05:01:00
113404    35207    655    2017-08-14 19:56:00    2017-08-14 19:56:00
113405    35208    572    2017-08-14 06:01:00    2017-08-14 06:01:00
113406    35208    590    2017-08-14 19:51:00    2017-08-14 19:51:00
113407    35208    772    2017-08-14 15:50:00    2017-08-14 15:50:00
113408    35208    488    2017-08-14 02:20:00    2017-08-14 02:20:00
113409    35208    543    2017-08-14 14:45:00    2017-08-14 14:45:00
113410    35209    668    2017-08-14 14:11:00    2017-08-14 14:11:00
113411    35209    699    2017-08-14 23:07:00    2017-08-14 23:07:00
113412    35209    554    2017-08-14 02:09:00    2017-08-14 02:09:00
113413    35209    686    2017-08-14 19:42:00    2017-08-14 19:42:00
113414    35209    788    2017-08-14 11:17:00    2017-08-14 11:17:00
113415    35210    918    2017-08-14 06:35:00    2017-08-14 06:35:00
113416    35210    740    2017-08-14 03:10:00    2017-08-14 03:10:00
113417    35210    726    2017-08-14 19:45:00    2017-08-14 19:45:00
113418    35210    869    2017-08-14 21:03:00    2017-08-14 21:03:00
113419    35210    501    2017-08-14 11:05:00    2017-08-14 11:05:00
113420    35211    592    2017-08-14 10:42:00    2017-08-14 10:42:00
113421    35211    736    2017-08-14 23:26:00    2017-08-14 23:26:00
113422    35211    568    2017-08-14 22:26:00    2017-08-14 22:26:00
113423    35211    903    2017-08-14 20:03:00    2017-08-14 20:03:00
113424    35211    546    2017-08-14 16:25:00    2017-08-14 16:25:00
113425    35212    656    2017-08-14 05:33:00    2017-08-14 05:33:00
113426    35212    801    2017-08-14 01:47:00    2017-08-14 01:47:00
113427    35212    638    2017-08-14 08:02:00    2017-08-14 08:02:00
113428    35212    709    2017-08-14 20:03:00    2017-08-14 20:03:00
113429    35212    668    2017-08-14 18:26:00    2017-08-14 18:26:00
113430    35213    775    2017-08-14 10:17:00    2017-08-14 10:17:00
113431    35213    955    2017-08-14 13:40:00    2017-08-14 13:40:00
113432    35213    938    2017-08-14 17:49:00    2017-08-14 17:49:00
113433    35213    555    2017-08-14 17:16:00    2017-08-14 17:16:00
113434    35213    952    2017-08-14 08:27:00    2017-08-14 08:27:00
113435    35214    840    2017-08-14 03:28:00    2017-08-14 03:28:00
113436    35214    605    2017-08-14 18:42:00    2017-08-14 18:42:00
113437    35214    888    2017-08-14 03:00:00    2017-08-14 03:00:00
113438    35214    503    2017-08-14 20:04:00    2017-08-14 20:04:00
113439    35214    659    2017-08-14 19:27:00    2017-08-14 19:27:00
113440    35215    940    2017-08-14 05:48:00    2017-08-14 05:48:00
113441    35215    848    2017-08-14 03:00:00    2017-08-14 03:00:00
113442    35215    783    2017-08-14 04:17:00    2017-08-14 04:17:00
113443    35215    621    2017-08-14 07:10:00    2017-08-14 07:10:00
113444    35215    705    2017-08-14 06:08:00    2017-08-14 06:08:00
113445    35216    464    2017-08-14 01:03:00    2017-08-14 01:03:00
113446    35216    569    2017-08-14 03:50:00    2017-08-14 03:50:00
113447    35216    591    2017-08-14 18:22:00    2017-08-14 18:22:00
113448    35216    815    2017-08-14 18:50:00    2017-08-14 18:50:00
113449    35216    550    2017-08-14 01:16:00    2017-08-14 01:16:00
113450    35217    861    2017-08-14 19:21:00    2017-08-14 19:21:00
113451    35217    783    2017-08-14 23:49:00    2017-08-14 23:49:00
113452    35217    716    2017-08-14 18:06:00    2017-08-14 18:06:00
113453    35217    545    2017-08-14 05:37:00    2017-08-14 05:37:00
113454    35217    774    2017-08-14 09:50:00    2017-08-14 09:50:00
113455    35218    894    2017-08-14 07:57:00    2017-08-14 07:57:00
113456    35218    534    2017-08-14 13:31:00    2017-08-14 13:31:00
113457    35218    790    2017-08-14 23:35:00    2017-08-14 23:35:00
113458    35218    585    2017-08-14 16:59:00    2017-08-14 16:59:00
113459    35218    483    2017-08-14 11:21:00    2017-08-14 11:21:00
113460    35219    520    2017-08-14 05:20:00    2017-08-14 05:20:00
113461    35219    773    2017-08-14 23:19:00    2017-08-14 23:19:00
113462    35219    921    2017-08-14 13:26:00    2017-08-14 13:26:00
113463    35219    568    2017-08-14 13:16:00    2017-08-14 13:16:00
113464    35219    886    2017-08-14 15:16:00    2017-08-14 15:16:00
113465    35220    617    2017-08-14 17:41:00    2017-08-14 17:41:00
113466    35220    843    2017-08-14 20:03:00    2017-08-14 20:03:00
113467    35220    644    2017-08-14 01:14:00    2017-08-14 01:14:00
113468    35220    836    2017-08-14 10:37:00    2017-08-14 10:37:00
113469    35220    848    2017-08-14 11:45:00    2017-08-14 11:45:00
113470    35221    824    2017-08-14 23:27:00    2017-08-14 23:27:00
113471    35221    658    2017-08-14 07:27:00    2017-08-14 07:27:00
113472    35221    925    2017-08-14 19:45:00    2017-08-14 19:45:00
113473    35221    887    2017-08-14 22:46:00    2017-08-14 22:46:00
113474    35221    547    2017-08-14 01:23:00    2017-08-14 01:23:00
113475    35222    533    2017-08-14 19:00:00    2017-08-14 19:00:00
113476    35222    930    2017-08-14 06:12:00    2017-08-14 06:12:00
113477    35222    648    2017-08-14 07:46:00    2017-08-14 07:46:00
113478    35222    886    2017-08-14 01:40:00    2017-08-14 01:40:00
113479    35222    469    2017-08-14 12:28:00    2017-08-14 12:28:00
113480    35223    845    2017-08-14 12:37:00    2017-08-14 12:37:00
113481    35223    563    2017-08-14 11:14:00    2017-08-14 11:14:00
113482    35223    920    2017-08-14 19:30:00    2017-08-14 19:30:00
113483    35223    819    2017-08-14 14:16:00    2017-08-14 14:16:00
113484    35223    530    2017-08-14 15:35:00    2017-08-14 15:35:00
113485    35224    820    2017-08-14 04:29:00    2017-08-14 04:29:00
113486    35224    729    2017-08-14 19:08:00    2017-08-14 19:08:00
113487    35224    925    2017-08-14 07:07:00    2017-08-14 07:07:00
113488    35224    847    2017-08-14 05:01:00    2017-08-14 05:01:00
113489    35224    513    2017-08-14 03:09:00    2017-08-14 03:09:00
113490    35225    584    2017-08-14 23:31:00    2017-08-14 23:31:00
113491    35225    919    2017-08-14 06:29:00    2017-08-14 06:29:00
113492    35225    499    2017-08-14 12:45:00    2017-08-14 12:45:00
113493    35225    607    2017-08-14 10:41:00    2017-08-14 10:41:00
113494    35225    648    2017-08-14 10:33:00    2017-08-14 10:33:00
113495    35226    882    2017-08-14 17:20:00    2017-08-14 17:20:00
113496    35226    810    2017-08-14 15:49:00    2017-08-14 15:49:00
113497    35226    805    2017-08-14 07:37:00    2017-08-14 07:37:00
113498    35226    907    2017-08-14 09:43:00    2017-08-14 09:43:00
113499    35226    926    2017-08-14 19:23:00    2017-08-14 19:23:00
113500    35227    562    2017-08-14 14:15:00    2017-08-14 14:15:00
113501    35227    597    2017-08-14 05:21:00    2017-08-14 05:21:00
113502    35227    627    2017-08-14 11:50:00    2017-08-14 11:50:00
113503    35227    716    2017-08-14 04:22:00    2017-08-14 04:22:00
113504    35227    540    2017-08-14 04:42:00    2017-08-14 04:42:00
113505    35228    691    2017-08-14 02:00:00    2017-08-14 02:00:00
113506    35228    491    2017-08-14 17:31:00    2017-08-14 17:31:00
113507    35228    797    2017-08-14 22:28:00    2017-08-14 22:28:00
113508    35228    569    2017-08-14 13:53:00    2017-08-14 13:53:00
113509    35228    734    2017-08-14 18:14:00    2017-08-14 18:14:00
113510    35229    676    2017-08-14 20:00:00    2017-08-14 20:00:00
113511    35229    700    2017-08-14 23:16:00    2017-08-14 23:16:00
113512    35229    784    2017-08-14 07:41:00    2017-08-14 07:41:00
113513    35229    659    2017-08-14 16:49:00    2017-08-14 16:49:00
113514    35229    890    2017-08-14 17:51:00    2017-08-14 17:51:00
113515    35230    625    2017-08-14 04:45:00    2017-08-14 04:45:00
113516    35230    621    2017-08-14 17:34:00    2017-08-14 17:34:00
113517    35230    932    2017-08-14 03:17:00    2017-08-14 03:17:00
113518    35230    528    2017-08-14 08:31:00    2017-08-14 08:31:00
113519    35230    658    2017-08-14 05:52:00    2017-08-14 05:52:00
113520    35231    951    2017-08-14 19:15:00    2017-08-14 19:15:00
113521    35231    534    2017-08-14 08:19:00    2017-08-14 08:19:00
113522    35231    675    2017-08-14 16:50:00    2017-08-14 16:50:00
113523    35231    483    2017-08-14 10:19:00    2017-08-14 10:19:00
113524    35231    550    2017-08-14 07:04:00    2017-08-14 07:04:00
113525    35232    940    2017-08-14 19:14:00    2017-08-14 19:14:00
113526    35232    916    2017-08-14 16:41:00    2017-08-14 16:41:00
113527    35232    513    2017-08-14 12:40:00    2017-08-14 12:40:00
113528    35232    801    2017-08-14 14:15:00    2017-08-14 14:15:00
113529    35232    498    2017-08-14 01:25:00    2017-08-14 01:25:00
113530    35233    734    2017-08-14 02:13:00    2017-08-14 02:13:00
113531    35233    474    2017-08-14 12:20:00    2017-08-14 12:20:00
113532    35233    546    2017-08-14 02:30:00    2017-08-14 02:30:00
113533    35233    850    2017-08-14 01:41:00    2017-08-14 01:41:00
113534    35233    728    2017-08-14 09:50:00    2017-08-14 09:50:00
113535    35234    825    2017-08-14 05:10:00    2017-08-14 05:10:00
113536    35234    595    2017-08-14 10:49:00    2017-08-14 10:49:00
113537    35234    739    2017-08-14 04:20:00    2017-08-14 04:20:00
113538    35234    587    2017-08-14 23:47:00    2017-08-14 23:47:00
113539    35234    694    2017-08-14 14:54:00    2017-08-14 14:54:00
113540    35235    840    2017-08-14 05:54:00    2017-08-14 05:54:00
113541    35235    675    2017-08-14 12:18:00    2017-08-14 12:18:00
113542    35235    805    2017-08-14 05:16:00    2017-08-14 05:16:00
113543    35235    548    2017-08-14 07:23:00    2017-08-14 07:23:00
113544    35235    944    2017-08-14 06:11:00    2017-08-14 06:11:00
113545    35236    739    2017-08-14 08:55:00    2017-08-14 08:55:00
113546    35236    824    2017-08-14 01:23:00    2017-08-14 01:23:00
113547    35236    709    2017-08-14 23:51:00    2017-08-14 23:51:00
113548    35236    693    2017-08-14 14:10:00    2017-08-14 14:10:00
113549    35236    802    2017-08-14 01:37:00    2017-08-14 01:37:00
113550    35237    910    2017-08-14 17:41:00    2017-08-14 17:41:00
113551    35237    833    2017-08-14 07:55:00    2017-08-14 07:55:00
113552    35237    627    2017-08-14 20:51:00    2017-08-14 20:51:00
113553    35237    639    2017-08-14 16:00:00    2017-08-14 16:00:00
113554    35237    645    2017-08-14 09:02:00    2017-08-14 09:02:00
113555    35238    894    2017-08-14 09:58:00    2017-08-14 09:58:00
113556    35238    752    2017-08-14 13:11:00    2017-08-14 13:11:00
113557    35238    532    2017-08-14 19:20:00    2017-08-14 19:20:00
113558    35238    741    2017-08-14 23:40:00    2017-08-14 23:40:00
113559    35238    748    2017-08-14 22:43:00    2017-08-14 22:43:00
113560    35239    480    2017-08-14 11:59:00    2017-08-14 11:59:00
113561    35239    542    2017-08-14 13:36:00    2017-08-14 13:36:00
113562    35239    852    2017-08-14 12:59:00    2017-08-14 12:59:00
113563    35239    921    2017-08-14 03:04:00    2017-08-14 03:04:00
113564    35239    551    2017-08-14 03:41:00    2017-08-14 03:41:00
113565    35240    659    2017-08-14 18:43:00    2017-08-14 18:43:00
113566    35240    594    2017-08-14 19:03:00    2017-08-14 19:03:00
113567    35240    785    2017-08-14 05:38:00    2017-08-14 05:38:00
113568    35240    531    2017-08-14 17:15:00    2017-08-14 17:15:00
113569    35240    618    2017-08-14 22:36:00    2017-08-14 22:36:00
113570    35241    567    2017-08-14 04:24:00    2017-08-14 04:24:00
113571    35241    589    2017-08-14 02:08:00    2017-08-14 02:08:00
113572    35241    815    2017-08-14 20:01:00    2017-08-14 20:01:00
113573    35241    889    2017-08-14 23:23:00    2017-08-14 23:23:00
113574    35241    787    2017-08-14 22:43:00    2017-08-14 22:43:00
113575    35242    704    2017-08-14 11:37:00    2017-08-14 11:37:00
113576    35242    834    2017-08-14 12:31:00    2017-08-14 12:31:00
113577    35242    935    2017-08-14 22:54:00    2017-08-14 22:54:00
113578    35242    832    2017-08-14 14:20:00    2017-08-14 14:20:00
113579    35242    656    2017-08-14 05:18:00    2017-08-14 05:18:00
113580    35243    659    2017-08-14 04:31:00    2017-08-14 04:31:00
113581    35243    779    2017-08-14 03:04:00    2017-08-14 03:04:00
113582    35243    883    2017-08-14 08:34:00    2017-08-14 08:34:00
113583    35243    765    2017-08-14 21:48:00    2017-08-14 21:48:00
113584    35243    616    2017-08-14 05:38:00    2017-08-14 05:38:00
113585    35244    872    2017-08-14 18:24:00    2017-08-14 18:24:00
113586    35244    491    2017-08-14 22:49:00    2017-08-14 22:49:00
113587    35244    944    2017-08-14 13:11:00    2017-08-14 13:11:00
113588    35244    873    2017-08-14 15:44:00    2017-08-14 15:44:00
113589    35244    534    2017-08-14 13:13:00    2017-08-14 13:13:00
113590    35245    606    2017-08-14 01:32:00    2017-08-14 01:32:00
113591    35245    824    2017-08-14 18:57:00    2017-08-14 18:57:00
113592    35245    894    2017-08-14 04:15:00    2017-08-14 04:15:00
113593    35245    749    2017-08-14 21:40:00    2017-08-14 21:40:00
113594    35245    520    2017-08-14 01:19:00    2017-08-14 01:19:00
113595    35246    903    2017-08-14 05:09:00    2017-08-14 05:09:00
113596    35246    891    2017-08-14 01:26:00    2017-08-14 01:26:00
113597    35246    490    2017-08-14 14:35:00    2017-08-14 14:35:00
113598    35246    569    2017-08-14 01:49:00    2017-08-14 01:49:00
113599    35246    614    2017-08-14 15:16:00    2017-08-14 15:16:00
113600    35247    926    2017-08-14 11:12:00    2017-08-14 11:12:00
113601    35247    524    2017-08-14 09:31:00    2017-08-14 09:31:00
113602    35247    777    2017-08-14 08:23:00    2017-08-14 08:23:00
113603    35247    671    2017-08-14 12:45:00    2017-08-14 12:45:00
113604    35247    622    2017-08-14 11:25:00    2017-08-14 11:25:00
113605    35248    944    2017-08-15 15:13:00    2017-08-15 15:13:00
113606    35248    871    2017-08-15 01:51:00    2017-08-15 01:51:00
113607    35248    554    2017-08-15 13:27:00    2017-08-15 13:27:00
113608    35248    769    2017-08-15 08:32:00    2017-08-15 08:32:00
113609    35248    952    2017-08-15 04:34:00    2017-08-15 04:34:00
113610    35249    579    2017-08-15 20:46:00    2017-08-15 20:46:00
113611    35249    634    2017-08-15 02:49:00    2017-08-15 02:49:00
113612    35249    639    2017-08-15 12:56:00    2017-08-15 12:56:00
113613    35249    501    2017-08-15 17:22:00    2017-08-15 17:22:00
113614    35249    942    2017-08-15 11:25:00    2017-08-15 11:25:00
113615    35250    524    2017-08-15 05:07:00    2017-08-15 05:07:00
113616    35250    617    2017-08-15 13:41:00    2017-08-15 13:41:00
113617    35250    632    2017-08-15 22:36:00    2017-08-15 22:36:00
113618    35250    576    2017-08-15 13:16:00    2017-08-15 13:16:00
113619    35250    733    2017-08-15 18:23:00    2017-08-15 18:23:00
113620    35251    919    2017-08-15 11:14:00    2017-08-15 11:14:00
113621    35251    846    2017-08-15 02:02:00    2017-08-15 02:02:00
113622    35251    862    2017-08-15 13:12:00    2017-08-15 13:12:00
113623    35251    711    2017-08-15 06:34:00    2017-08-15 06:34:00
113624    35251    871    2017-08-15 20:17:00    2017-08-15 20:17:00
113625    35252    807    2017-08-15 09:49:00    2017-08-15 09:49:00
113626    35252    501    2017-08-15 20:05:00    2017-08-15 20:05:00
113627    35252    512    2017-08-15 11:06:00    2017-08-15 11:06:00
113628    35252    608    2017-08-15 08:43:00    2017-08-15 08:43:00
113629    35252    491    2017-08-15 10:34:00    2017-08-15 10:34:00
113630    35253    925    2017-08-15 18:49:00    2017-08-15 18:49:00
113631    35253    725    2017-08-15 13:15:00    2017-08-15 13:15:00
113632    35253    502    2017-08-15 12:39:00    2017-08-15 12:39:00
113633    35253    712    2017-08-15 18:09:00    2017-08-15 18:09:00
113634    35253    627    2017-08-15 08:18:00    2017-08-15 08:18:00
113635    35254    698    2017-08-15 20:37:00    2017-08-15 20:37:00
113636    35254    943    2017-08-15 16:08:00    2017-08-15 16:08:00
113637    35254    897    2017-08-15 06:12:00    2017-08-15 06:12:00
113638    35254    640    2017-08-15 17:16:00    2017-08-15 17:16:00
113639    35254    590    2017-08-15 02:35:00    2017-08-15 02:35:00
113640    35255    833    2017-08-15 22:46:00    2017-08-15 22:46:00
113641    35255    903    2017-08-15 12:58:00    2017-08-15 12:58:00
113642    35255    785    2017-08-15 09:44:00    2017-08-15 09:44:00
113643    35255    687    2017-08-15 13:44:00    2017-08-15 13:44:00
113644    35255    755    2017-08-15 12:27:00    2017-08-15 12:27:00
113645    35256    623    2017-08-15 06:31:00    2017-08-15 06:31:00
113646    35256    643    2017-08-15 11:35:00    2017-08-15 11:35:00
113647    35256    765    2017-08-15 21:19:00    2017-08-15 21:19:00
113648    35256    848    2017-08-15 05:56:00    2017-08-15 05:56:00
113649    35256    948    2017-08-15 16:42:00    2017-08-15 16:42:00
113650    35257    602    2017-08-15 10:28:00    2017-08-15 10:28:00
113651    35257    660    2017-08-15 14:25:00    2017-08-15 14:25:00
113652    35257    753    2017-08-15 05:49:00    2017-08-15 05:49:00
113653    35257    589    2017-08-15 04:40:00    2017-08-15 04:40:00
113654    35257    537    2017-08-15 07:37:00    2017-08-15 07:37:00
113655    35258    611    2017-08-15 23:51:00    2017-08-15 23:51:00
113656    35258    758    2017-08-15 11:23:00    2017-08-15 11:23:00
113657    35258    701    2017-08-15 14:20:00    2017-08-15 14:20:00
113658    35258    914    2017-08-15 21:15:00    2017-08-15 21:15:00
113659    35258    589    2017-08-15 19:41:00    2017-08-15 19:41:00
113660    35259    701    2017-08-15 05:16:00    2017-08-15 05:16:00
113661    35259    603    2017-08-15 17:25:00    2017-08-15 17:25:00
113662    35259    870    2017-08-15 21:47:00    2017-08-15 21:47:00
113663    35259    591    2017-08-15 04:01:00    2017-08-15 04:01:00
113664    35259    879    2017-08-15 02:51:00    2017-08-15 02:51:00
113665    35260    555    2017-08-15 04:59:00    2017-08-15 04:59:00
113666    35260    840    2017-08-15 21:38:00    2017-08-15 21:38:00
113667    35260    739    2017-08-15 12:36:00    2017-08-15 12:36:00
113668    35260    781    2017-08-15 23:14:00    2017-08-15 23:14:00
113669    35260    671    2017-08-15 18:48:00    2017-08-15 18:48:00
113670    35261    547    2017-08-15 19:08:00    2017-08-15 19:08:00
113671    35261    709    2017-08-15 01:59:00    2017-08-15 01:59:00
113672    35261    902    2017-08-15 09:23:00    2017-08-15 09:23:00
113673    35261    607    2017-08-15 17:17:00    2017-08-15 17:17:00
113674    35261    774    2017-08-15 17:22:00    2017-08-15 17:22:00
113675    35262    541    2017-08-15 13:40:00    2017-08-15 13:40:00
113676    35262    599    2017-08-15 19:03:00    2017-08-15 19:03:00
113677    35262    782    2017-08-15 16:08:00    2017-08-15 16:08:00
113678    35262    747    2017-08-15 15:04:00    2017-08-15 15:04:00
113679    35262    926    2017-08-15 04:11:00    2017-08-15 04:11:00
113680    35263    520    2017-08-15 03:32:00    2017-08-15 03:32:00
113681    35263    691    2017-08-15 18:09:00    2017-08-15 18:09:00
113682    35263    879    2017-08-15 13:36:00    2017-08-15 13:36:00
113683    35263    585    2017-08-15 03:52:00    2017-08-15 03:52:00
113684    35263    746    2017-08-15 17:28:00    2017-08-15 17:28:00
113685    35264    822    2017-08-15 12:42:00    2017-08-15 12:42:00
113686    35264    560    2017-08-15 11:44:00    2017-08-15 11:44:00
113687    35264    585    2017-08-15 11:32:00    2017-08-15 11:32:00
113688    35264    753    2017-08-15 05:46:00    2017-08-15 05:46:00
113689    35264    765    2017-08-15 16:06:00    2017-08-15 16:06:00
113690    35265    513    2017-08-15 08:00:00    2017-08-15 08:00:00
113691    35265    654    2017-08-15 06:35:00    2017-08-15 06:35:00
113692    35265    673    2017-08-15 07:27:00    2017-08-15 07:27:00
113693    35265    705    2017-08-15 04:06:00    2017-08-15 04:06:00
113694    35265    727    2017-08-15 20:54:00    2017-08-15 20:54:00
113695    35266    902    2017-08-15 04:08:00    2017-08-15 04:08:00
113696    35266    655    2017-08-15 18:27:00    2017-08-15 18:27:00
113697    35266    878    2017-08-15 20:50:00    2017-08-15 20:50:00
113698    35266    803    2017-08-15 18:50:00    2017-08-15 18:50:00
113699    35266    761    2017-08-15 11:47:00    2017-08-15 11:47:00
113700    35267    880    2017-08-15 10:47:00    2017-08-15 10:47:00
113701    35267    826    2017-08-15 08:56:00    2017-08-15 08:56:00
113702    35267    570    2017-08-15 03:08:00    2017-08-15 03:08:00
113703    35267    657    2017-08-15 21:53:00    2017-08-15 21:53:00
113704    35267    521    2017-08-15 12:06:00    2017-08-15 12:06:00
113705    35268    721    2017-08-16 05:21:00    2017-08-16 05:21:00
113706    35268    562    2017-08-16 08:59:00    2017-08-16 08:59:00
113707    35268    944    2017-08-16 08:11:00    2017-08-16 08:11:00
113708    35268    844    2017-08-16 19:15:00    2017-08-16 19:15:00
113709    35268    784    2017-08-16 17:15:00    2017-08-16 17:15:00
113710    35269    513    2017-08-16 15:14:00    2017-08-16 15:14:00
113711    35269    908    2017-08-16 09:49:00    2017-08-16 09:49:00
113712    35269    727    2017-08-16 12:55:00    2017-08-16 12:55:00
113713    35269    673    2017-08-16 17:28:00    2017-08-16 17:28:00
113714    35269    738    2017-08-16 01:58:00    2017-08-16 01:58:00
113715    35270    565    2017-08-16 18:18:00    2017-08-16 18:18:00
113716    35270    787    2017-08-16 19:39:00    2017-08-16 19:39:00
113717    35270    897    2017-08-16 09:51:00    2017-08-16 09:51:00
113718    35270    494    2017-08-16 05:09:00    2017-08-16 05:09:00
113719    35270    526    2017-08-16 20:23:00    2017-08-16 20:23:00
113720    35271    696    2017-08-16 06:46:00    2017-08-16 06:46:00
113721    35271    857    2017-08-16 14:47:00    2017-08-16 14:47:00
113722    35271    771    2017-08-16 23:23:00    2017-08-16 23:23:00
113723    35271    736    2017-08-16 21:45:00    2017-08-16 21:45:00
113724    35271    902    2017-08-16 05:10:00    2017-08-16 05:10:00
113725    35272    689    2017-08-16 01:42:00    2017-08-16 01:42:00
113726    35272    479    2017-08-16 19:02:00    2017-08-16 19:02:00
113727    35272    564    2017-08-16 07:10:00    2017-08-16 07:10:00
113728    35272    851    2017-08-16 11:47:00    2017-08-16 11:47:00
113729    35272    855    2017-08-16 13:14:00    2017-08-16 13:14:00
113730    35273    684    2017-08-16 12:39:00    2017-08-16 12:39:00
113731    35273    466    2017-08-16 19:53:00    2017-08-16 19:53:00
113732    35273    557    2017-08-16 13:48:00    2017-08-16 13:48:00
113733    35273    741    2017-08-16 09:02:00    2017-08-16 09:02:00
113734    35273    940    2017-08-16 07:47:00    2017-08-16 07:47:00
113735    35274    694    2017-08-16 06:35:00    2017-08-16 06:35:00
113736    35274    944    2017-08-16 23:19:00    2017-08-16 23:19:00
113737    35274    500    2017-08-16 01:29:00    2017-08-16 01:29:00
113738    35274    626    2017-08-16 02:33:00    2017-08-16 02:33:00
113739    35274    595    2017-08-16 05:59:00    2017-08-16 05:59:00
113740    35275    868    2017-08-16 02:55:00    2017-08-16 02:55:00
113741    35275    893    2017-08-16 14:13:00    2017-08-16 14:13:00
113742    35275    922    2017-08-16 07:31:00    2017-08-16 07:31:00
113743    35275    921    2017-08-16 07:58:00    2017-08-16 07:58:00
113744    35275    527    2017-08-16 22:46:00    2017-08-16 22:46:00
113745    35276    924    2017-08-16 20:25:00    2017-08-16 20:25:00
113746    35276    943    2017-08-16 18:20:00    2017-08-16 18:20:00
113747    35276    863    2017-08-16 23:17:00    2017-08-16 23:17:00
113748    35276    958    2017-08-16 20:51:00    2017-08-16 20:51:00
113749    35276    814    2017-08-16 20:25:00    2017-08-16 20:25:00
113750    35277    809    2017-08-16 09:24:00    2017-08-16 09:24:00
113751    35277    903    2017-08-16 04:53:00    2017-08-16 04:53:00
113752    35277    940    2017-08-16 14:50:00    2017-08-16 14:50:00
113753    35277    727    2017-08-16 05:23:00    2017-08-16 05:23:00
113754    35277    806    2017-08-16 13:17:00    2017-08-16 13:17:00
113755    35278    883    2017-08-16 14:00:00    2017-08-16 14:00:00
113756    35278    700    2017-08-16 23:21:00    2017-08-16 23:21:00
113757    35278    511    2017-08-16 06:51:00    2017-08-16 06:51:00
113758    35278    727    2017-08-16 05:03:00    2017-08-16 05:03:00
113759    35278    511    2017-08-16 07:58:00    2017-08-16 07:58:00
113760    35279    680    2017-08-16 23:18:00    2017-08-16 23:18:00
113761    35279    948    2017-08-16 13:19:00    2017-08-16 13:19:00
113762    35279    906    2017-08-16 19:51:00    2017-08-16 19:51:00
113763    35279    485    2017-08-16 16:25:00    2017-08-16 16:25:00
113764    35279    467    2017-08-16 04:59:00    2017-08-16 04:59:00
113765    35280    559    2017-08-16 11:39:00    2017-08-16 11:39:00
113766    35280    621    2017-08-16 12:55:00    2017-08-16 12:55:00
113767    35280    617    2017-08-16 01:11:00    2017-08-16 01:11:00
113768    35280    671    2017-08-16 06:48:00    2017-08-16 06:48:00
113769    35280    559    2017-08-16 22:28:00    2017-08-16 22:28:00
113770    35281    953    2017-08-16 22:38:00    2017-08-16 22:38:00
113771    35281    808    2017-08-16 06:12:00    2017-08-16 06:12:00
113772    35281    478    2017-08-16 10:34:00    2017-08-16 10:34:00
113773    35281    531    2017-08-16 18:05:00    2017-08-16 18:05:00
113774    35281    886    2017-08-16 21:24:00    2017-08-16 21:24:00
113775    35282    559    2017-08-16 12:49:00    2017-08-16 12:49:00
113776    35282    557    2017-08-16 15:31:00    2017-08-16 15:31:00
113777    35282    905    2017-08-16 22:15:00    2017-08-16 22:15:00
113778    35282    587    2017-08-16 01:54:00    2017-08-16 01:54:00
113779    35282    507    2017-08-16 04:44:00    2017-08-16 04:44:00
113780    35283    900    2017-08-16 04:11:00    2017-08-16 04:11:00
113781    35283    939    2017-08-16 19:38:00    2017-08-16 19:38:00
113782    35283    769    2017-08-16 02:24:00    2017-08-16 02:24:00
113783    35283    875    2017-08-16 03:17:00    2017-08-16 03:17:00
113784    35283    740    2017-08-16 04:21:00    2017-08-16 04:21:00
113785    35284    869    2017-08-16 04:43:00    2017-08-16 04:43:00
113786    35284    712    2017-08-16 11:07:00    2017-08-16 11:07:00
113787    35284    911    2017-08-16 16:18:00    2017-08-16 16:18:00
113788    35284    955    2017-08-16 01:36:00    2017-08-16 01:36:00
113789    35284    731    2017-08-16 23:18:00    2017-08-16 23:18:00
113790    35285    906    2017-08-16 20:00:00    2017-08-16 20:00:00
113791    35285    574    2017-08-16 23:41:00    2017-08-16 23:41:00
113792    35285    730    2017-08-16 13:55:00    2017-08-16 13:55:00
113793    35285    943    2017-08-16 20:07:00    2017-08-16 20:07:00
113794    35285    818    2017-08-16 11:17:00    2017-08-16 11:17:00
113795    35286    786    2017-08-16 02:46:00    2017-08-16 02:46:00
113796    35286    933    2017-08-16 04:09:00    2017-08-16 04:09:00
113797    35286    747    2017-08-16 14:18:00    2017-08-16 14:18:00
113798    35286    497    2017-08-16 01:15:00    2017-08-16 01:15:00
113799    35286    649    2017-08-16 23:23:00    2017-08-16 23:23:00
113800    35287    494    2017-08-16 02:09:00    2017-08-16 02:09:00
113801    35287    812    2017-08-16 16:56:00    2017-08-16 16:56:00
113802    35287    939    2017-08-16 13:10:00    2017-08-16 13:10:00
113803    35287    882    2017-08-16 05:29:00    2017-08-16 05:29:00
113804    35287    706    2017-08-16 08:35:00    2017-08-16 08:35:00
113805    35288    859    2017-08-16 03:40:00    2017-08-16 03:40:00
113806    35288    541    2017-08-16 21:36:00    2017-08-16 21:36:00
113807    35288    514    2017-08-16 15:47:00    2017-08-16 15:47:00
113808    35288    509    2017-08-16 05:09:00    2017-08-16 05:09:00
113809    35288    740    2017-08-16 20:19:00    2017-08-16 20:19:00
113810    35289    708    2017-08-16 02:04:00    2017-08-16 02:04:00
113811    35289    842    2017-08-16 10:13:00    2017-08-16 10:13:00
113812    35289    541    2017-08-16 18:27:00    2017-08-16 18:27:00
113813    35289    473    2017-08-16 07:28:00    2017-08-16 07:28:00
113814    35289    468    2017-08-16 12:35:00    2017-08-16 12:35:00
113815    35290    642    2017-08-16 07:56:00    2017-08-16 07:56:00
113816    35290    771    2017-08-16 03:26:00    2017-08-16 03:26:00
113817    35290    751    2017-08-16 23:44:00    2017-08-16 23:44:00
113818    35290    912    2017-08-16 09:20:00    2017-08-16 09:20:00
113819    35290    926    2017-08-16 20:26:00    2017-08-16 20:26:00
113820    35291    767    2017-08-16 09:23:00    2017-08-16 09:23:00
113821    35291    511    2017-08-16 03:18:00    2017-08-16 03:18:00
113822    35291    527    2017-08-16 04:04:00    2017-08-16 04:04:00
113823    35291    662    2017-08-16 14:53:00    2017-08-16 14:53:00
113824    35291    867    2017-08-16 04:25:00    2017-08-16 04:25:00
113825    35292    711    2017-08-16 21:53:00    2017-08-16 21:53:00
113826    35292    822    2017-08-16 17:55:00    2017-08-16 17:55:00
113827    35292    484    2017-08-16 06:31:00    2017-08-16 06:31:00
113828    35292    504    2017-08-16 08:15:00    2017-08-16 08:15:00
113829    35292    943    2017-08-16 13:04:00    2017-08-16 13:04:00
113830    35293    487    2017-08-16 01:19:00    2017-08-16 01:19:00
113831    35293    636    2017-08-16 10:44:00    2017-08-16 10:44:00
113832    35293    789    2017-08-16 18:47:00    2017-08-16 18:47:00
113833    35293    749    2017-08-16 20:36:00    2017-08-16 20:36:00
113834    35293    918    2017-08-16 22:47:00    2017-08-16 22:47:00
113835    35294    521    2017-08-16 06:24:00    2017-08-16 06:24:00
113836    35294    604    2017-08-16 18:45:00    2017-08-16 18:45:00
113837    35294    514    2017-08-16 15:23:00    2017-08-16 15:23:00
113838    35294    847    2017-08-16 19:42:00    2017-08-16 19:42:00
113839    35294    762    2017-08-16 06:25:00    2017-08-16 06:25:00
113840    35295    528    2017-08-16 23:21:00    2017-08-16 23:21:00
113841    35295    665    2017-08-16 09:20:00    2017-08-16 09:20:00
113842    35295    696    2017-08-16 12:31:00    2017-08-16 12:31:00
113843    35295    830    2017-08-16 12:21:00    2017-08-16 12:21:00
113844    35295    709    2017-08-16 19:24:00    2017-08-16 19:24:00
113845    35296    525    2017-08-16 18:40:00    2017-08-16 18:40:00
113846    35296    760    2017-08-16 12:19:00    2017-08-16 12:19:00
113847    35296    541    2017-08-16 05:13:00    2017-08-16 05:13:00
113848    35296    731    2017-08-16 09:33:00    2017-08-16 09:33:00
113849    35296    820    2017-08-16 11:05:00    2017-08-16 11:05:00
113850    35297    768    2017-08-17 15:23:00    2017-08-17 15:23:00
113851    35297    795    2017-08-17 17:39:00    2017-08-17 17:39:00
113852    35297    728    2017-08-17 19:41:00    2017-08-17 19:41:00
113853    35297    486    2017-08-17 13:50:00    2017-08-17 13:50:00
113854    35297    582    2017-08-17 18:10:00    2017-08-17 18:10:00
113855    35298    842    2017-08-17 14:17:00    2017-08-17 14:17:00
113856    35298    583    2017-08-17 09:35:00    2017-08-17 09:35:00
113857    35298    662    2017-08-17 16:06:00    2017-08-17 16:06:00
113858    35298    800    2017-08-17 16:57:00    2017-08-17 16:57:00
113859    35298    681    2017-08-17 22:06:00    2017-08-17 22:06:00
113860    35299    507    2017-08-17 05:47:00    2017-08-17 05:47:00
113861    35299    697    2017-08-17 16:03:00    2017-08-17 16:03:00
113862    35299    752    2017-08-17 14:49:00    2017-08-17 14:49:00
113863    35299    796    2017-08-17 15:57:00    2017-08-17 15:57:00
113864    35299    470    2017-08-17 15:35:00    2017-08-17 15:35:00
113865    35300    900    2017-08-17 12:21:00    2017-08-17 12:21:00
113866    35300    887    2017-08-17 16:10:00    2017-08-17 16:10:00
113867    35300    753    2017-08-17 06:23:00    2017-08-17 06:23:00
113868    35300    884    2017-08-17 01:18:00    2017-08-17 01:18:00
113869    35300    952    2017-08-17 18:26:00    2017-08-17 18:26:00
113870    35301    624    2017-08-17 02:43:00    2017-08-17 02:43:00
113871    35301    652    2017-08-17 10:02:00    2017-08-17 10:02:00
113872    35301    796    2017-08-17 15:18:00    2017-08-17 15:18:00
113873    35301    622    2017-08-17 02:04:00    2017-08-17 02:04:00
113874    35301    688    2017-08-17 17:45:00    2017-08-17 17:45:00
113875    35302    956    2017-08-17 07:11:00    2017-08-17 07:11:00
113876    35302    834    2017-08-17 11:35:00    2017-08-17 11:35:00
113877    35302    799    2017-08-17 21:57:00    2017-08-17 21:57:00
113878    35302    505    2017-08-17 10:12:00    2017-08-17 10:12:00
113879    35302    512    2017-08-17 11:03:00    2017-08-17 11:03:00
113880    35303    586    2017-08-17 12:49:00    2017-08-17 12:49:00
113881    35303    490    2017-08-17 09:35:00    2017-08-17 09:35:00
113882    35303    781    2017-08-17 21:58:00    2017-08-17 21:58:00
113883    35303    496    2017-08-17 05:40:00    2017-08-17 05:40:00
113884    35303    849    2017-08-17 21:14:00    2017-08-17 21:14:00
113885    35304    631    2017-08-17 11:21:00    2017-08-17 11:21:00
113886    35304    648    2017-08-17 04:29:00    2017-08-17 04:29:00
113887    35304    748    2017-08-17 10:57:00    2017-08-17 10:57:00
113888    35304    896    2017-08-17 04:43:00    2017-08-17 04:43:00
113889    35304    859    2017-08-17 16:26:00    2017-08-17 16:26:00
113890    35305    870    2017-08-17 08:06:00    2017-08-17 08:06:00
113891    35305    820    2017-08-17 20:06:00    2017-08-17 20:06:00
113892    35305    953    2017-08-17 18:49:00    2017-08-17 18:49:00
113893    35305    637    2017-08-17 06:06:00    2017-08-17 06:06:00
113894    35305    896    2017-08-17 23:35:00    2017-08-17 23:35:00
113895    35306    958    2017-08-17 19:36:00    2017-08-17 19:36:00
113896    35306    779    2017-08-17 16:25:00    2017-08-17 16:25:00
113897    35306    935    2017-08-17 04:10:00    2017-08-17 04:10:00
113898    35306    810    2017-08-17 10:23:00    2017-08-17 10:23:00
113899    35306    735    2017-08-17 23:26:00    2017-08-17 23:26:00
113900    35307    614    2017-08-17 18:27:00    2017-08-17 18:27:00
113901    35307    632    2017-08-17 22:08:00    2017-08-17 22:08:00
113902    35307    571    2017-08-17 09:04:00    2017-08-17 09:04:00
113903    35307    799    2017-08-17 11:31:00    2017-08-17 11:31:00
113904    35307    771    2017-08-17 23:21:00    2017-08-17 23:21:00
113905    35308    857    2017-08-17 16:09:00    2017-08-17 16:09:00
113906    35308    755    2017-08-17 07:36:00    2017-08-17 07:36:00
113907    35308    464    2017-08-17 08:30:00    2017-08-17 08:30:00
113908    35308    495    2017-08-17 10:31:00    2017-08-17 10:31:00
113909    35308    585    2017-08-17 04:57:00    2017-08-17 04:57:00
113910    35309    857    2017-08-17 06:49:00    2017-08-17 06:49:00
113911    35309    630    2017-08-17 10:30:00    2017-08-17 10:30:00
113912    35309    604    2017-08-17 21:06:00    2017-08-17 21:06:00
113913    35309    735    2017-08-17 17:59:00    2017-08-17 17:59:00
113914    35309    542    2017-08-17 10:46:00    2017-08-17 10:46:00
113915    35310    677    2017-08-17 06:11:00    2017-08-17 06:11:00
113916    35310    750    2017-08-17 04:51:00    2017-08-17 04:51:00
113917    35310    907    2017-08-17 20:39:00    2017-08-17 20:39:00
113918    35310    853    2017-08-17 20:00:00    2017-08-17 20:00:00
113919    35310    894    2017-08-17 20:44:00    2017-08-17 20:44:00
113920    35311    568    2017-08-17 10:50:00    2017-08-17 10:50:00
113921    35311    917    2017-08-17 20:31:00    2017-08-17 20:31:00
113922    35311    660    2017-08-17 07:32:00    2017-08-17 07:32:00
113923    35311    490    2017-08-17 06:06:00    2017-08-17 06:06:00
113924    35311    639    2017-08-17 11:15:00    2017-08-17 11:15:00
113925    35312    669    2017-08-17 21:46:00    2017-08-17 21:46:00
113926    35312    862    2017-08-17 14:03:00    2017-08-17 14:03:00
113927    35312    848    2017-08-17 06:46:00    2017-08-17 06:46:00
113928    35312    854    2017-08-17 23:07:00    2017-08-17 23:07:00
113929    35312    882    2017-08-17 04:18:00    2017-08-17 04:18:00
113930    35313    738    2017-08-17 14:52:00    2017-08-17 14:52:00
113931    35313    670    2017-08-17 22:29:00    2017-08-17 22:29:00
113932    35313    545    2017-08-17 12:30:00    2017-08-17 12:30:00
113933    35313    850    2017-08-17 20:37:00    2017-08-17 20:37:00
113934    35313    799    2017-08-17 20:17:00    2017-08-17 20:17:00
113935    35314    832    2017-08-17 18:52:00    2017-08-17 18:52:00
113936    35314    726    2017-08-17 12:42:00    2017-08-17 12:42:00
113937    35314    586    2017-08-17 19:36:00    2017-08-17 19:36:00
113938    35314    905    2017-08-17 05:56:00    2017-08-17 05:56:00
113939    35314    751    2017-08-17 05:15:00    2017-08-17 05:15:00
113940    35315    939    2017-08-17 19:24:00    2017-08-17 19:24:00
113941    35315    467    2017-08-17 15:44:00    2017-08-17 15:44:00
113942    35315    903    2017-08-17 02:36:00    2017-08-17 02:36:00
113943    35315    938    2017-08-17 22:13:00    2017-08-17 22:13:00
113944    35315    777    2017-08-17 22:39:00    2017-08-17 22:39:00
113945    35316    713    2017-08-17 11:11:00    2017-08-17 11:11:00
113946    35316    863    2017-08-17 13:56:00    2017-08-17 13:56:00
113947    35316    845    2017-08-17 21:18:00    2017-08-17 21:18:00
113948    35316    617    2017-08-17 20:59:00    2017-08-17 20:59:00
113949    35316    957    2017-08-17 18:43:00    2017-08-17 18:43:00
113950    35317    852    2017-08-17 15:43:00    2017-08-17 15:43:00
113951    35317    715    2017-08-17 05:01:00    2017-08-17 05:01:00
113952    35317    602    2017-08-17 16:17:00    2017-08-17 16:17:00
113953    35317    941    2017-08-17 01:41:00    2017-08-17 01:41:00
113954    35317    498    2017-08-17 20:36:00    2017-08-17 20:36:00
113955    35318    855    2017-08-17 13:16:00    2017-08-17 13:16:00
113956    35318    679    2017-08-17 11:12:00    2017-08-17 11:12:00
113957    35318    651    2017-08-17 09:48:00    2017-08-17 09:48:00
113958    35318    521    2017-08-17 17:41:00    2017-08-17 17:41:00
113959    35318    592    2017-08-17 17:04:00    2017-08-17 17:04:00
113960    35319    493    2017-08-17 20:17:00    2017-08-17 20:17:00
113961    35319    958    2017-08-17 02:17:00    2017-08-17 02:17:00
113962    35319    919    2017-08-17 20:14:00    2017-08-17 20:14:00
113963    35319    709    2017-08-17 23:07:00    2017-08-17 23:07:00
113964    35319    822    2017-08-17 11:25:00    2017-08-17 11:25:00
113965    35320    693    2017-08-17 21:01:00    2017-08-17 21:01:00
113966    35320    511    2017-08-17 21:16:00    2017-08-17 21:16:00
113967    35320    750    2017-08-17 13:23:00    2017-08-17 13:23:00
113968    35320    932    2017-08-17 18:17:00    2017-08-17 18:17:00
113969    35320    683    2017-08-17 10:02:00    2017-08-17 10:02:00
113970    35321    626    2017-08-17 23:29:00    2017-08-17 23:29:00
113971    35321    918    2017-08-17 07:47:00    2017-08-17 07:47:00
113972    35321    585    2017-08-17 20:55:00    2017-08-17 20:55:00
113973    35321    710    2017-08-17 08:26:00    2017-08-17 08:26:00
113974    35321    713    2017-08-17 23:45:00    2017-08-17 23:45:00
113975    35322    835    2017-08-17 16:54:00    2017-08-17 16:54:00
113976    35322    790    2017-08-17 17:22:00    2017-08-17 17:22:00
113977    35322    746    2017-08-17 01:19:00    2017-08-17 01:19:00
113978    35322    839    2017-08-17 14:53:00    2017-08-17 14:53:00
113979    35322    664    2017-08-17 13:49:00    2017-08-17 13:49:00
113980    35323    620    2017-08-17 13:14:00    2017-08-17 13:14:00
113981    35323    549    2017-08-17 20:17:00    2017-08-17 20:17:00
113982    35323    824    2017-08-17 01:47:00    2017-08-17 01:47:00
113983    35323    881    2017-08-17 05:29:00    2017-08-17 05:29:00
113984    35323    839    2017-08-17 10:20:00    2017-08-17 10:20:00
113985    35324    741    2017-08-17 14:57:00    2017-08-17 14:57:00
113986    35324    883    2017-08-17 19:11:00    2017-08-17 19:11:00
113987    35324    756    2017-08-17 10:47:00    2017-08-17 10:47:00
113988    35324    886    2017-08-17 04:04:00    2017-08-17 04:04:00
113989    35324    945    2017-08-17 11:36:00    2017-08-17 11:36:00
113990    35325    727    2017-08-17 05:34:00    2017-08-17 05:34:00
113991    35325    745    2017-08-17 01:39:00    2017-08-17 01:39:00
113992    35325    539    2017-08-17 02:22:00    2017-08-17 02:22:00
113993    35325    879    2017-08-17 04:28:00    2017-08-17 04:28:00
113994    35325    627    2017-08-17 14:01:00    2017-08-17 14:01:00
113995    35326    840    2017-08-17 22:29:00    2017-08-17 22:29:00
113996    35326    703    2017-08-17 15:59:00    2017-08-17 15:59:00
113997    35326    494    2017-08-17 15:57:00    2017-08-17 15:57:00
113998    35326    808    2017-08-17 20:56:00    2017-08-17 20:56:00
113999    35326    557    2017-08-17 04:12:00    2017-08-17 04:12:00
114000    35327    548    2017-08-17 19:36:00    2017-08-17 19:36:00
114001    35327    804    2017-08-17 22:21:00    2017-08-17 22:21:00
114002    35327    932    2017-08-17 13:28:00    2017-08-17 13:28:00
114003    35327    507    2017-08-17 19:51:00    2017-08-17 19:51:00
114004    35327    723    2017-08-17 09:22:00    2017-08-17 09:22:00
114005    35328    890    2017-08-17 11:10:00    2017-08-17 11:10:00
114006    35328    704    2017-08-17 12:24:00    2017-08-17 12:24:00
114007    35328    604    2017-08-17 12:37:00    2017-08-17 12:37:00
114008    35328    629    2017-08-17 20:02:00    2017-08-17 20:02:00
114009    35328    554    2017-08-17 23:16:00    2017-08-17 23:16:00
114010    35329    807    2017-08-17 14:07:00    2017-08-17 14:07:00
114011    35329    858    2017-08-17 01:18:00    2017-08-17 01:18:00
114012    35329    907    2017-08-17 08:12:00    2017-08-17 08:12:00
114013    35329    490    2017-08-17 08:35:00    2017-08-17 08:35:00
114014    35329    754    2017-08-17 04:34:00    2017-08-17 04:34:00
114015    35330    761    2017-08-17 01:40:00    2017-08-17 01:40:00
114016    35330    838    2017-08-17 18:55:00    2017-08-17 18:55:00
114017    35330    708    2017-08-17 02:49:00    2017-08-17 02:49:00
114018    35330    475    2017-08-17 18:45:00    2017-08-17 18:45:00
114019    35330    584    2017-08-17 23:28:00    2017-08-17 23:28:00
114020    35331    487    2017-08-17 12:08:00    2017-08-17 12:08:00
114021    35331    868    2017-08-17 12:44:00    2017-08-17 12:44:00
114022    35331    752    2017-08-17 17:32:00    2017-08-17 17:32:00
114023    35331    786    2017-08-17 05:55:00    2017-08-17 05:55:00
114024    35331    700    2017-08-17 07:02:00    2017-08-17 07:02:00
114025    35332    711    2017-08-17 08:55:00    2017-08-17 08:55:00
114026    35332    721    2017-08-17 10:13:00    2017-08-17 10:13:00
114027    35332    757    2017-08-17 13:21:00    2017-08-17 13:21:00
114028    35332    874    2017-08-17 23:29:00    2017-08-17 23:29:00
114029    35332    936    2017-08-17 23:28:00    2017-08-17 23:28:00
114030    35333    921    2017-08-17 09:43:00    2017-08-17 09:43:00
114031    35333    553    2017-08-17 02:19:00    2017-08-17 02:19:00
114032    35333    504    2017-08-17 08:08:00    2017-08-17 08:08:00
114033    35333    465    2017-08-17 12:04:00    2017-08-17 12:04:00
114034    35333    611    2017-08-17 10:58:00    2017-08-17 10:58:00
114035    35334    802    2017-08-17 09:41:00    2017-08-17 09:41:00
114036    35334    769    2017-08-17 16:53:00    2017-08-17 16:53:00
114037    35334    490    2017-08-17 02:04:00    2017-08-17 02:04:00
114038    35334    468    2017-08-17 13:07:00    2017-08-17 13:07:00
114039    35334    478    2017-08-17 13:38:00    2017-08-17 13:38:00
114040    35335    863    2017-08-17 18:46:00    2017-08-17 18:46:00
114041    35335    510    2017-08-17 02:43:00    2017-08-17 02:43:00
114042    35335    918    2017-08-17 20:04:00    2017-08-17 20:04:00
114043    35335    525    2017-08-17 05:41:00    2017-08-17 05:41:00
114044    35335    467    2017-08-17 08:04:00    2017-08-17 08:04:00
114045    35336    804    2017-08-17 13:44:00    2017-08-17 13:44:00
114046    35336    560    2017-08-17 16:35:00    2017-08-17 16:35:00
114047    35336    578    2017-08-17 15:44:00    2017-08-17 15:44:00
114048    35336    569    2017-08-17 17:13:00    2017-08-17 17:13:00
114049    35336    950    2017-08-17 23:32:00    2017-08-17 23:32:00
114050    35337    882    2017-08-17 19:06:00    2017-08-17 19:06:00
114051    35337    697    2017-08-17 12:12:00    2017-08-17 12:12:00
114052    35337    826    2017-08-17 13:57:00    2017-08-17 13:57:00
114053    35337    921    2017-08-17 15:04:00    2017-08-17 15:04:00
114054    35337    854    2017-08-17 05:53:00    2017-08-17 05:53:00
114055    35338    753    2017-08-17 23:55:00    2017-08-17 23:55:00
114056    35338    776    2017-08-17 13:14:00    2017-08-17 13:14:00
114057    35338    624    2017-08-17 02:46:00    2017-08-17 02:46:00
114058    35338    602    2017-08-17 16:40:00    2017-08-17 16:40:00
114059    35338    521    2017-08-17 15:17:00    2017-08-17 15:17:00
114060    35339    547    2017-08-17 10:55:00    2017-08-17 10:55:00
114061    35339    557    2017-08-17 20:21:00    2017-08-17 20:21:00
114062    35339    603    2017-08-17 08:00:00    2017-08-17 08:00:00
114063    35339    881    2017-08-17 20:45:00    2017-08-17 20:45:00
114064    35339    869    2017-08-17 07:37:00    2017-08-17 07:37:00
114065    35340    804    2017-08-17 04:42:00    2017-08-17 04:42:00
114066    35340    880    2017-08-17 18:20:00    2017-08-17 18:20:00
114067    35340    732    2017-08-17 15:47:00    2017-08-17 15:47:00
114068    35340    930    2017-08-17 17:44:00    2017-08-17 17:44:00
114069    35340    725    2017-08-17 01:30:00    2017-08-17 01:30:00
114070    35341    842    2017-08-17 16:31:00    2017-08-17 16:31:00
114071    35341    880    2017-08-17 12:24:00    2017-08-17 12:24:00
114072    35341    574    2017-08-17 13:04:00    2017-08-17 13:04:00
114073    35341    748    2017-08-17 12:47:00    2017-08-17 12:47:00
114074    35341    550    2017-08-17 06:57:00    2017-08-17 06:57:00
114075    35342    792    2017-08-17 06:40:00    2017-08-17 06:40:00
114076    35342    766    2017-08-17 17:35:00    2017-08-17 17:35:00
114077    35342    808    2017-08-17 23:40:00    2017-08-17 23:40:00
114078    35342    803    2017-08-17 13:31:00    2017-08-17 13:31:00
114079    35342    817    2017-08-17 15:14:00    2017-08-17 15:14:00
114080    35343    710    2017-08-17 04:25:00    2017-08-17 04:25:00
114081    35343    523    2017-08-17 04:08:00    2017-08-17 04:08:00
114082    35343    533    2017-08-17 21:50:00    2017-08-17 21:50:00
114083    35343    600    2017-08-17 21:46:00    2017-08-17 21:46:00
114084    35343    889    2017-08-17 08:13:00    2017-08-17 08:13:00
114085    35344    613    2017-08-17 17:12:00    2017-08-17 17:12:00
114086    35344    739    2017-08-17 13:51:00    2017-08-17 13:51:00
114087    35344    483    2017-08-17 09:12:00    2017-08-17 09:12:00
114088    35344    571    2017-08-17 01:36:00    2017-08-17 01:36:00
114089    35344    858    2017-08-17 19:02:00    2017-08-17 19:02:00
114090    35345    584    2017-08-17 18:16:00    2017-08-17 18:16:00
114091    35345    728    2017-08-17 03:30:00    2017-08-17 03:30:00
114092    35345    571    2017-08-17 02:20:00    2017-08-17 02:20:00
114093    35345    758    2017-08-17 12:28:00    2017-08-17 12:28:00
114094    35345    594    2017-08-17 06:27:00    2017-08-17 06:27:00
114095    35346    602    2017-08-17 23:13:00    2017-08-17 23:13:00
114096    35346    743    2017-08-17 08:41:00    2017-08-17 08:41:00
114097    35346    928    2017-08-17 21:37:00    2017-08-17 21:37:00
114098    35346    883    2017-08-17 07:55:00    2017-08-17 07:55:00
114099    35346    702    2017-08-17 02:39:00    2017-08-17 02:39:00
114100    35347    546    2017-08-17 13:25:00    2017-08-17 13:25:00
114101    35347    585    2017-08-17 06:28:00    2017-08-17 06:28:00
114102    35347    899    2017-08-17 01:18:00    2017-08-17 01:18:00
114103    35347    740    2017-08-17 07:01:00    2017-08-17 07:01:00
114104    35347    564    2017-08-17 18:35:00    2017-08-17 18:35:00
114105    35348    574    2017-08-18 14:00:00    2017-08-18 14:00:00
114106    35348    520    2017-08-18 23:51:00    2017-08-18 23:51:00
114107    35348    636    2017-08-18 23:58:00    2017-08-18 23:58:00
114108    35348    571    2017-08-18 16:35:00    2017-08-18 16:35:00
114109    35348    640    2017-08-18 04:39:00    2017-08-18 04:39:00
114110    35349    655    2017-08-18 01:21:00    2017-08-18 01:21:00
114111    35349    623    2017-08-18 02:38:00    2017-08-18 02:38:00
114112    35349    592    2017-08-18 06:23:00    2017-08-18 06:23:00
114113    35349    695    2017-08-18 17:25:00    2017-08-18 17:25:00
114114    35349    730    2017-08-18 03:05:00    2017-08-18 03:05:00
114115    35350    786    2017-08-18 15:15:00    2017-08-18 15:15:00
114116    35350    765    2017-08-18 23:25:00    2017-08-18 23:25:00
114117    35350    652    2017-08-18 07:10:00    2017-08-18 07:10:00
114118    35350    847    2017-08-18 18:07:00    2017-08-18 18:07:00
114119    35350    537    2017-08-18 08:21:00    2017-08-18 08:21:00
114120    35351    551    2017-08-18 08:50:00    2017-08-18 08:50:00
114121    35351    793    2017-08-18 01:27:00    2017-08-18 01:27:00
114122    35351    961    2017-08-18 03:57:00    2017-08-18 03:57:00
114123    35351    874    2017-08-18 01:05:00    2017-08-18 01:05:00
114124    35351    560    2017-08-18 16:05:00    2017-08-18 16:05:00
114125    35352    929    2017-08-18 09:47:00    2017-08-18 09:47:00
114126    35352    801    2017-08-18 06:21:00    2017-08-18 06:21:00
114127    35352    930    2017-08-18 14:51:00    2017-08-18 14:51:00
114128    35352    935    2017-08-18 05:59:00    2017-08-18 05:59:00
114129    35352    597    2017-08-18 15:23:00    2017-08-18 15:23:00
114130    35353    800    2017-08-18 15:25:00    2017-08-18 15:25:00
114131    35353    488    2017-08-18 09:16:00    2017-08-18 09:16:00
114132    35353    864    2017-08-18 03:38:00    2017-08-18 03:38:00
114133    35353    911    2017-08-18 06:17:00    2017-08-18 06:17:00
114134    35353    950    2017-08-18 17:42:00    2017-08-18 17:42:00
114135    35354    679    2017-08-18 22:59:00    2017-08-18 22:59:00
114136    35354    917    2017-08-18 09:28:00    2017-08-18 09:28:00
114137    35354    631    2017-08-18 17:46:00    2017-08-18 17:46:00
114138    35354    693    2017-08-18 10:21:00    2017-08-18 10:21:00
114139    35354    825    2017-08-18 18:25:00    2017-08-18 18:25:00
114140    35355    550    2017-08-18 19:20:00    2017-08-18 19:20:00
114141    35355    520    2017-08-18 12:22:00    2017-08-18 12:22:00
114142    35355    873    2017-08-18 08:02:00    2017-08-18 08:02:00
114143    35355    833    2017-08-18 03:05:00    2017-08-18 03:05:00
114144    35355    705    2017-08-18 11:36:00    2017-08-18 11:36:00
114145    35356    875    2017-08-18 18:09:00    2017-08-18 18:09:00
114146    35356    958    2017-08-18 04:54:00    2017-08-18 04:54:00
114147    35356    772    2017-08-18 04:47:00    2017-08-18 04:47:00
114148    35356    700    2017-08-18 05:29:00    2017-08-18 05:29:00
114149    35356    605    2017-08-18 08:07:00    2017-08-18 08:07:00
114150    35357    483    2017-08-18 11:37:00    2017-08-18 11:37:00
114151    35357    938    2017-08-18 23:55:00    2017-08-18 23:55:00
114152    35357    619    2017-08-18 19:29:00    2017-08-18 19:29:00
114153    35357    822    2017-08-18 21:25:00    2017-08-18 21:25:00
114154    35357    574    2017-08-18 08:55:00    2017-08-18 08:55:00
114155    35358    918    2017-08-18 19:30:00    2017-08-18 19:30:00
114156    35358    613    2017-08-18 22:41:00    2017-08-18 22:41:00
114157    35358    533    2017-08-18 12:00:00    2017-08-18 12:00:00
114158    35358    919    2017-08-18 09:57:00    2017-08-18 09:57:00
114159    35358    898    2017-08-18 16:19:00    2017-08-18 16:19:00
114160    35359    477    2017-08-18 14:36:00    2017-08-18 14:36:00
114161    35359    755    2017-08-18 06:32:00    2017-08-18 06:32:00
114162    35359    754    2017-08-18 04:04:00    2017-08-18 04:04:00
114163    35359    844    2017-08-18 14:51:00    2017-08-18 14:51:00
114164    35359    847    2017-08-18 08:18:00    2017-08-18 08:18:00
114165    35360    557    2017-08-18 01:06:00    2017-08-18 01:06:00
114166    35360    756    2017-08-18 11:55:00    2017-08-18 11:55:00
114167    35360    617    2017-08-18 06:11:00    2017-08-18 06:11:00
114168    35360    559    2017-08-18 15:12:00    2017-08-18 15:12:00
114169    35360    600    2017-08-18 18:38:00    2017-08-18 18:38:00
114170    35361    793    2017-08-18 15:54:00    2017-08-18 15:54:00
114171    35361    943    2017-08-18 23:01:00    2017-08-18 23:01:00
114172    35361    568    2017-08-18 17:29:00    2017-08-18 17:29:00
114173    35361    907    2017-08-18 03:18:00    2017-08-18 03:18:00
114174    35361    881    2017-08-18 01:19:00    2017-08-18 01:19:00
114175    35362    686    2017-08-18 12:04:00    2017-08-18 12:04:00
114176    35362    723    2017-08-18 06:24:00    2017-08-18 06:24:00
114177    35362    492    2017-08-18 07:57:00    2017-08-18 07:57:00
114178    35362    720    2017-08-18 18:29:00    2017-08-18 18:29:00
114179    35362    600    2017-08-18 02:16:00    2017-08-18 02:16:00
114180    35363    814    2017-08-18 19:21:00    2017-08-18 19:21:00
114181    35363    603    2017-08-18 09:17:00    2017-08-18 09:17:00
114182    35363    829    2017-08-18 03:21:00    2017-08-18 03:21:00
114183    35363    625    2017-08-18 09:35:00    2017-08-18 09:35:00
114184    35363    916    2017-08-18 14:14:00    2017-08-18 14:14:00
114185    35364    708    2017-08-18 03:39:00    2017-08-18 03:39:00
114186    35364    870    2017-08-18 21:18:00    2017-08-18 21:18:00
114187    35364    690    2017-08-18 23:20:00    2017-08-18 23:20:00
114188    35364    727    2017-08-18 16:21:00    2017-08-18 16:21:00
114189    35364    491    2017-08-18 08:29:00    2017-08-18 08:29:00
114190    35365    469    2017-08-18 16:37:00    2017-08-18 16:37:00
114191    35365    718    2017-08-18 09:15:00    2017-08-18 09:15:00
114192    35365    776    2017-08-18 09:27:00    2017-08-18 09:27:00
114193    35365    470    2017-08-18 03:59:00    2017-08-18 03:59:00
114194    35365    473    2017-08-18 04:20:00    2017-08-18 04:20:00
114195    35366    532    2017-08-18 05:51:00    2017-08-18 05:51:00
114196    35366    643    2017-08-18 02:09:00    2017-08-18 02:09:00
114197    35366    489    2017-08-18 22:09:00    2017-08-18 22:09:00
114198    35366    939    2017-08-18 07:09:00    2017-08-18 07:09:00
114199    35366    854    2017-08-18 06:20:00    2017-08-18 06:20:00
114200    35367    898    2017-08-18 05:47:00    2017-08-18 05:47:00
114201    35367    610    2017-08-18 04:59:00    2017-08-18 04:59:00
114202    35367    735    2017-08-18 10:07:00    2017-08-18 10:07:00
114203    35367    650    2017-08-18 11:47:00    2017-08-18 11:47:00
114204    35367    645    2017-08-18 23:08:00    2017-08-18 23:08:00
114205    35368    535    2017-08-18 10:50:00    2017-08-18 10:50:00
114206    35368    690    2017-08-18 19:04:00    2017-08-18 19:04:00
114207    35368    544    2017-08-18 11:25:00    2017-08-18 11:25:00
114208    35368    903    2017-08-18 02:04:00    2017-08-18 02:04:00
114209    35368    730    2017-08-18 07:13:00    2017-08-18 07:13:00
114210    35369    941    2017-08-18 06:33:00    2017-08-18 06:33:00
114211    35369    794    2017-08-18 12:27:00    2017-08-18 12:27:00
114212    35369    859    2017-08-18 13:03:00    2017-08-18 13:03:00
114213    35369    951    2017-08-18 15:14:00    2017-08-18 15:14:00
114214    35369    829    2017-08-18 14:37:00    2017-08-18 14:37:00
114215    35370    727    2017-08-18 07:11:00    2017-08-18 07:11:00
114216    35370    773    2017-08-18 03:18:00    2017-08-18 03:18:00
114217    35370    580    2017-08-18 03:42:00    2017-08-18 03:42:00
114218    35370    488    2017-08-18 02:40:00    2017-08-18 02:40:00
114219    35370    762    2017-08-18 10:51:00    2017-08-18 10:51:00
114220    35371    795    2017-08-18 06:03:00    2017-08-18 06:03:00
114221    35371    655    2017-08-18 13:21:00    2017-08-18 13:21:00
114222    35371    485    2017-08-18 19:18:00    2017-08-18 19:18:00
114223    35371    802    2017-08-18 02:41:00    2017-08-18 02:41:00
114224    35371    691    2017-08-18 03:46:00    2017-08-18 03:46:00
114225    35372    604    2017-08-18 05:46:00    2017-08-18 05:46:00
114226    35372    851    2017-08-18 08:23:00    2017-08-18 08:23:00
114227    35372    701    2017-08-18 21:52:00    2017-08-18 21:52:00
114228    35372    689    2017-08-18 10:26:00    2017-08-18 10:26:00
114229    35372    553    2017-08-18 07:47:00    2017-08-18 07:47:00
114230    35373    487    2017-08-18 16:15:00    2017-08-18 16:15:00
114231    35373    491    2017-08-18 21:33:00    2017-08-18 21:33:00
114232    35373    480    2017-08-18 18:30:00    2017-08-18 18:30:00
114233    35373    940    2017-08-18 16:37:00    2017-08-18 16:37:00
114234    35373    778    2017-08-18 08:41:00    2017-08-18 08:41:00
114235    35374    662    2017-08-18 12:34:00    2017-08-18 12:34:00
114236    35374    764    2017-08-18 09:48:00    2017-08-18 09:48:00
114237    35374    464    2017-08-18 23:37:00    2017-08-18 23:37:00
114238    35374    505    2017-08-18 14:23:00    2017-08-18 14:23:00
114239    35374    948    2017-08-18 01:57:00    2017-08-18 01:57:00
114240    35375    603    2017-08-18 12:11:00    2017-08-18 12:11:00
114241    35375    823    2017-08-18 04:38:00    2017-08-18 04:38:00
114242    35375    924    2017-08-18 16:32:00    2017-08-18 16:32:00
114243    35375    914    2017-08-18 14:56:00    2017-08-18 14:56:00
114244    35375    596    2017-08-18 01:20:00    2017-08-18 01:20:00
114245    35376    524    2017-08-18 15:00:00    2017-08-18 15:00:00
114246    35376    772    2017-08-18 04:06:00    2017-08-18 04:06:00
114247    35376    892    2017-08-18 06:45:00    2017-08-18 06:45:00
114248    35376    552    2017-08-18 11:59:00    2017-08-18 11:59:00
114249    35376    945    2017-08-18 11:32:00    2017-08-18 11:32:00
114250    35377    606    2017-08-18 11:00:00    2017-08-18 11:00:00
114251    35377    730    2017-08-18 08:11:00    2017-08-18 08:11:00
114252    35377    713    2017-08-18 23:39:00    2017-08-18 23:39:00
114253    35377    703    2017-08-18 10:01:00    2017-08-18 10:01:00
114254    35377    836    2017-08-18 12:23:00    2017-08-18 12:23:00
114255    35378    822    2017-08-18 01:08:00    2017-08-18 01:08:00
114256    35378    589    2017-08-18 15:59:00    2017-08-18 15:59:00
114257    35378    797    2017-08-18 17:53:00    2017-08-18 17:53:00
114258    35378    500    2017-08-18 23:12:00    2017-08-18 23:12:00
114259    35378    511    2017-08-18 14:18:00    2017-08-18 14:18:00
114260    35379    531    2017-08-18 11:25:00    2017-08-18 11:25:00
114261    35379    518    2017-08-18 21:55:00    2017-08-18 21:55:00
114262    35379    656    2017-08-18 13:35:00    2017-08-18 13:35:00
114263    35379    600    2017-08-18 01:53:00    2017-08-18 01:53:00
114264    35379    892    2017-08-18 14:05:00    2017-08-18 14:05:00
114265    35380    569    2017-08-18 18:36:00    2017-08-18 18:36:00
114266    35380    836    2017-08-18 12:16:00    2017-08-18 12:16:00
114267    35380    792    2017-08-18 05:01:00    2017-08-18 05:01:00
114268    35380    835    2017-08-18 21:50:00    2017-08-18 21:50:00
114269    35380    872    2017-08-18 06:03:00    2017-08-18 06:03:00
114270    35381    897    2017-08-18 04:10:00    2017-08-18 04:10:00
114271    35381    700    2017-08-18 23:06:00    2017-08-18 23:06:00
114272    35381    760    2017-08-18 23:43:00    2017-08-18 23:43:00
114273    35381    585    2017-08-18 18:16:00    2017-08-18 18:16:00
114274    35381    521    2017-08-18 04:35:00    2017-08-18 04:35:00
114275    35382    928    2017-08-18 20:57:00    2017-08-18 20:57:00
114276    35382    686    2017-08-18 20:55:00    2017-08-18 20:55:00
114277    35382    473    2017-08-18 13:44:00    2017-08-18 13:44:00
114278    35382    931    2017-08-18 16:18:00    2017-08-18 16:18:00
114279    35382    497    2017-08-18 16:58:00    2017-08-18 16:58:00
114280    35383    824    2017-08-18 07:27:00    2017-08-18 07:27:00
114281    35383    782    2017-08-18 16:12:00    2017-08-18 16:12:00
114282    35383    755    2017-08-18 18:19:00    2017-08-18 18:19:00
114283    35383    801    2017-08-18 15:00:00    2017-08-18 15:00:00
114284    35383    810    2017-08-18 16:33:00    2017-08-18 16:33:00
114285    35384    665    2017-08-18 17:21:00    2017-08-18 17:21:00
114286    35384    809    2017-08-18 01:50:00    2017-08-18 01:50:00
114287    35384    697    2017-08-18 20:47:00    2017-08-18 20:47:00
114288    35384    662    2017-08-18 08:10:00    2017-08-18 08:10:00
114289    35384    863    2017-08-18 02:29:00    2017-08-18 02:29:00
114290    35385    546    2017-08-18 20:42:00    2017-08-18 20:42:00
114291    35385    480    2017-08-18 09:23:00    2017-08-18 09:23:00
114292    35385    658    2017-08-18 07:28:00    2017-08-18 07:28:00
114293    35385    803    2017-08-18 18:29:00    2017-08-18 18:29:00
114294    35385    473    2017-08-18 06:43:00    2017-08-18 06:43:00
114295    35386    623    2017-08-18 11:58:00    2017-08-18 11:58:00
114296    35386    528    2017-08-18 01:51:00    2017-08-18 01:51:00
114297    35386    670    2017-08-18 19:10:00    2017-08-18 19:10:00
114298    35386    514    2017-08-18 21:51:00    2017-08-18 21:51:00
114299    35386    537    2017-08-18 01:44:00    2017-08-18 01:44:00
114300    35387    801    2017-08-18 02:14:00    2017-08-18 02:14:00
114301    35387    569    2017-08-18 06:51:00    2017-08-18 06:51:00
114302    35387    494    2017-08-18 08:49:00    2017-08-18 08:49:00
114303    35387    613    2017-08-18 11:54:00    2017-08-18 11:54:00
114304    35387    758    2017-08-18 20:28:00    2017-08-18 20:28:00
114305    35388    592    2017-08-18 23:24:00    2017-08-18 23:24:00
114306    35388    551    2017-08-18 04:23:00    2017-08-18 04:23:00
114307    35388    815    2017-08-18 04:30:00    2017-08-18 04:30:00
114308    35388    789    2017-08-18 19:40:00    2017-08-18 19:40:00
114309    35388    523    2017-08-18 13:50:00    2017-08-18 13:50:00
114310    35389    887    2017-08-18 18:54:00    2017-08-18 18:54:00
114311    35389    732    2017-08-18 01:33:00    2017-08-18 01:33:00
114312    35389    953    2017-08-18 12:07:00    2017-08-18 12:07:00
114313    35389    938    2017-08-18 05:57:00    2017-08-18 05:57:00
114314    35389    743    2017-08-18 15:00:00    2017-08-18 15:00:00
114315    35390    937    2017-08-18 22:03:00    2017-08-18 22:03:00
114316    35390    873    2017-08-18 04:12:00    2017-08-18 04:12:00
114317    35390    543    2017-08-18 23:32:00    2017-08-18 23:32:00
114318    35390    534    2017-08-18 04:27:00    2017-08-18 04:27:00
114319    35390    614    2017-08-18 03:55:00    2017-08-18 03:55:00
114320    35391    656    2017-08-18 19:06:00    2017-08-18 19:06:00
114321    35391    629    2017-08-18 18:19:00    2017-08-18 18:19:00
114322    35391    768    2017-08-18 16:10:00    2017-08-18 16:10:00
114323    35391    640    2017-08-18 05:18:00    2017-08-18 05:18:00
114324    35391    842    2017-08-18 18:43:00    2017-08-18 18:43:00
114325    35392    675    2017-08-18 09:52:00    2017-08-18 09:52:00
114326    35392    657    2017-08-18 03:59:00    2017-08-18 03:59:00
114327    35392    489    2017-08-18 03:47:00    2017-08-18 03:47:00
114328    35392    842    2017-08-18 21:33:00    2017-08-18 21:33:00
114329    35392    555    2017-08-18 08:01:00    2017-08-18 08:01:00
114330    35393    630    2017-08-18 09:48:00    2017-08-18 09:48:00
114331    35393    494    2017-08-18 08:41:00    2017-08-18 08:41:00
114332    35393    812    2017-08-18 11:39:00    2017-08-18 11:39:00
114333    35393    569    2017-08-18 03:19:00    2017-08-18 03:19:00
114334    35393    581    2017-08-18 01:35:00    2017-08-18 01:35:00
114335    35394    499    2017-08-18 23:01:00    2017-08-18 23:01:00
114336    35394    824    2017-08-18 10:00:00    2017-08-18 10:00:00
114337    35394    800    2017-08-18 09:49:00    2017-08-18 09:49:00
114338    35394    680    2017-08-18 17:22:00    2017-08-18 17:22:00
114339    35394    545    2017-08-18 14:53:00    2017-08-18 14:53:00
114340    35395    530    2017-08-18 10:19:00    2017-08-18 10:19:00
114341    35395    910    2017-08-18 04:57:00    2017-08-18 04:57:00
114342    35395    733    2017-08-18 01:38:00    2017-08-18 01:38:00
114343    35395    867    2017-08-18 13:35:00    2017-08-18 13:35:00
114344    35395    821    2017-08-18 14:06:00    2017-08-18 14:06:00
114345    35396    515    2017-08-18 09:06:00    2017-08-18 09:06:00
114346    35396    568    2017-08-18 07:09:00    2017-08-18 07:09:00
114347    35396    917    2017-08-18 13:11:00    2017-08-18 13:11:00
114348    35396    943    2017-08-18 02:14:00    2017-08-18 02:14:00
114349    35396    534    2017-08-18 23:39:00    2017-08-18 23:39:00
114350    35397    930    2017-08-18 06:39:00    2017-08-18 06:39:00
114351    35397    877    2017-08-18 19:24:00    2017-08-18 19:24:00
114352    35397    891    2017-08-18 19:04:00    2017-08-18 19:04:00
114353    35397    653    2017-08-18 08:54:00    2017-08-18 08:54:00
114354    35397    937    2017-08-18 10:19:00    2017-08-18 10:19:00
114355    35398    530    2017-08-18 14:09:00    2017-08-18 14:09:00
114356    35398    641    2017-08-18 12:36:00    2017-08-18 12:36:00
114357    35398    667    2017-08-18 23:31:00    2017-08-18 23:31:00
114358    35398    701    2017-08-18 19:00:00    2017-08-18 19:00:00
114359    35398    698    2017-08-18 11:42:00    2017-08-18 11:42:00
114360    35399    480    2017-08-18 14:18:00    2017-08-18 14:18:00
114361    35399    905    2017-08-18 15:27:00    2017-08-18 15:27:00
114362    35399    677    2017-08-18 01:54:00    2017-08-18 01:54:00
114363    35399    490    2017-08-18 02:18:00    2017-08-18 02:18:00
114364    35399    531    2017-08-18 10:22:00    2017-08-18 10:22:00
114365    35400    822    2017-08-18 07:38:00    2017-08-18 07:38:00
114366    35400    529    2017-08-18 05:32:00    2017-08-18 05:32:00
114367    35400    709    2017-08-18 09:04:00    2017-08-18 09:04:00
114368    35400    463    2017-08-18 23:56:00    2017-08-18 23:56:00
114369    35400    726    2017-08-18 13:18:00    2017-08-18 13:18:00
114370    35401    539    2017-08-18 10:53:00    2017-08-18 10:53:00
114371    35401    626    2017-08-18 09:09:00    2017-08-18 09:09:00
114372    35401    817    2017-08-18 21:39:00    2017-08-18 21:39:00
114373    35401    761    2017-08-18 14:26:00    2017-08-18 14:26:00
114374    35401    666    2017-08-18 07:13:00    2017-08-18 07:13:00
114375    35402    878    2017-08-18 06:49:00    2017-08-18 06:49:00
114376    35402    734    2017-08-18 14:48:00    2017-08-18 14:48:00
114377    35402    753    2017-08-18 01:41:00    2017-08-18 01:41:00
114378    35402    512    2017-08-18 07:45:00    2017-08-18 07:45:00
114379    35402    529    2017-08-18 12:58:00    2017-08-18 12:58:00
114380    35403    772    2017-08-18 06:31:00    2017-08-18 06:31:00
114381    35403    649    2017-08-18 04:29:00    2017-08-18 04:29:00
114382    35403    517    2017-08-18 03:59:00    2017-08-18 03:59:00
114383    35403    515    2017-08-18 01:09:00    2017-08-18 01:09:00
114384    35403    762    2017-08-18 05:52:00    2017-08-18 05:52:00
114385    35404    880    2017-08-18 08:32:00    2017-08-18 08:32:00
114386    35404    658    2017-08-18 04:33:00    2017-08-18 04:33:00
114387    35404    945    2017-08-18 21:35:00    2017-08-18 21:35:00
114388    35404    691    2017-08-18 13:00:00    2017-08-18 13:00:00
114389    35404    658    2017-08-18 18:03:00    2017-08-18 18:03:00
114390    35405    704    2017-08-18 18:25:00    2017-08-18 18:25:00
114391    35405    771    2017-08-18 16:00:00    2017-08-18 16:00:00
114392    35405    500    2017-08-18 13:18:00    2017-08-18 13:18:00
114393    35405    523    2017-08-18 21:22:00    2017-08-18 21:22:00
114394    35405    791    2017-08-18 23:03:00    2017-08-18 23:03:00
114395    35406    486    2017-08-19 09:52:00    2017-08-19 09:52:00
114396    35406    761    2017-08-19 07:46:00    2017-08-19 07:46:00
114397    35406    627    2017-08-19 11:30:00    2017-08-19 11:30:00
114398    35406    604    2017-08-19 08:17:00    2017-08-19 08:17:00
114399    35406    669    2017-08-19 09:54:00    2017-08-19 09:54:00
114400    35407    908    2017-08-19 04:03:00    2017-08-19 04:03:00
114401    35407    613    2017-08-19 03:23:00    2017-08-19 03:23:00
114402    35407    687    2017-08-19 09:40:00    2017-08-19 09:40:00
114403    35407    663    2017-08-19 15:07:00    2017-08-19 15:07:00
114404    35407    910    2017-08-19 20:55:00    2017-08-19 20:55:00
114405    35408    842    2017-08-19 20:00:00    2017-08-19 20:00:00
114406    35408    705    2017-08-19 05:49:00    2017-08-19 05:49:00
114407    35408    874    2017-08-19 15:58:00    2017-08-19 15:58:00
114408    35408    641    2017-08-19 21:12:00    2017-08-19 21:12:00
114409    35408    617    2017-08-19 03:53:00    2017-08-19 03:53:00
114410    35409    891    2017-08-19 22:13:00    2017-08-19 22:13:00
114411    35409    906    2017-08-19 10:25:00    2017-08-19 10:25:00
114412    35409    885    2017-08-19 01:06:00    2017-08-19 01:06:00
114413    35409    513    2017-08-19 02:04:00    2017-08-19 02:04:00
114414    35409    794    2017-08-19 06:46:00    2017-08-19 06:46:00
114415    35410    679    2017-08-19 16:13:00    2017-08-19 16:13:00
114416    35410    798    2017-08-19 09:05:00    2017-08-19 09:05:00
114417    35410    879    2017-08-19 01:57:00    2017-08-19 01:57:00
114418    35410    582    2017-08-19 12:02:00    2017-08-19 12:02:00
114419    35410    911    2017-08-19 12:03:00    2017-08-19 12:03:00
114420    35411    591    2017-08-19 09:36:00    2017-08-19 09:36:00
114421    35411    691    2017-08-19 18:42:00    2017-08-19 18:42:00
114422    35411    912    2017-08-19 13:44:00    2017-08-19 13:44:00
114423    35411    580    2017-08-19 19:34:00    2017-08-19 19:34:00
114424    35411    600    2017-08-19 17:22:00    2017-08-19 17:22:00
114425    35412    554    2017-08-19 10:42:00    2017-08-19 10:42:00
114426    35412    602    2017-08-19 02:25:00    2017-08-19 02:25:00
114427    35412    484    2017-08-19 01:30:00    2017-08-19 01:30:00
114428    35412    574    2017-08-19 09:09:00    2017-08-19 09:09:00
114429    35412    499    2017-08-19 18:52:00    2017-08-19 18:52:00
114430    35413    595    2017-08-19 06:41:00    2017-08-19 06:41:00
114431    35413    921    2017-08-19 12:13:00    2017-08-19 12:13:00
114432    35413    562    2017-08-19 22:20:00    2017-08-19 22:20:00
114433    35413    584    2017-08-19 22:37:00    2017-08-19 22:37:00
114434    35413    935    2017-08-19 19:23:00    2017-08-19 19:23:00
114435    35414    772    2017-08-19 13:43:00    2017-08-19 13:43:00
114436    35414    674    2017-08-19 14:01:00    2017-08-19 14:01:00
114437    35414    541    2017-08-19 01:26:00    2017-08-19 01:26:00
114438    35414    949    2017-08-19 10:56:00    2017-08-19 10:56:00
114439    35414    622    2017-08-19 14:02:00    2017-08-19 14:02:00
114440    35415    915    2017-08-19 08:54:00    2017-08-19 08:54:00
114441    35415    687    2017-08-19 07:12:00    2017-08-19 07:12:00
114442    35415    750    2017-08-19 23:20:00    2017-08-19 23:20:00
114443    35415    542    2017-08-19 12:14:00    2017-08-19 12:14:00
114444    35415    873    2017-08-19 11:48:00    2017-08-19 11:48:00
114445    35416    890    2017-08-19 18:00:00    2017-08-19 18:00:00
114446    35416    463    2017-08-19 10:57:00    2017-08-19 10:57:00
114447    35416    877    2017-08-19 18:49:00    2017-08-19 18:49:00
114448    35416    924    2017-08-19 09:04:00    2017-08-19 09:04:00
114449    35416    947    2017-08-19 12:56:00    2017-08-19 12:56:00
114450    35417    584    2017-08-19 16:25:00    2017-08-19 16:25:00
114451    35417    672    2017-08-19 01:00:00    2017-08-19 01:00:00
114452    35417    752    2017-08-19 03:02:00    2017-08-19 03:02:00
114453    35417    943    2017-08-19 21:49:00    2017-08-19 21:49:00
114454    35417    500    2017-08-19 06:57:00    2017-08-19 06:57:00
114455    35418    736    2017-08-19 22:51:00    2017-08-19 22:51:00
114456    35418    589    2017-08-19 10:45:00    2017-08-19 10:45:00
114457    35418    490    2017-08-19 09:48:00    2017-08-19 09:48:00
114458    35418    873    2017-08-19 04:16:00    2017-08-19 04:16:00
114459    35418    466    2017-08-19 17:13:00    2017-08-19 17:13:00
114460    35419    917    2017-08-19 13:20:00    2017-08-19 13:20:00
114461    35419    639    2017-08-19 04:42:00    2017-08-19 04:42:00
114462    35419    869    2017-08-19 11:18:00    2017-08-19 11:18:00
114463    35419    539    2017-08-19 18:23:00    2017-08-19 18:23:00
114464    35419    931    2017-08-19 16:11:00    2017-08-19 16:11:00
114465    35420    531    2017-08-19 08:07:00    2017-08-19 08:07:00
114466    35420    936    2017-08-19 04:21:00    2017-08-19 04:21:00
114467    35420    481    2017-08-19 21:59:00    2017-08-19 21:59:00
114468    35420    682    2017-08-19 10:02:00    2017-08-19 10:02:00
114469    35420    508    2017-08-19 01:55:00    2017-08-19 01:55:00
114470    35421    547    2017-08-19 23:57:00    2017-08-19 23:57:00
114471    35421    569    2017-08-19 10:10:00    2017-08-19 10:10:00
114472    35421    646    2017-08-19 09:29:00    2017-08-19 09:29:00
114473    35421    549    2017-08-19 09:00:00    2017-08-19 09:00:00
114474    35421    664    2017-08-19 09:55:00    2017-08-19 09:55:00
114475    35422    472    2017-08-19 06:13:00    2017-08-19 06:13:00
114476    35422    865    2017-08-19 08:13:00    2017-08-19 08:13:00
114477    35422    549    2017-08-19 15:57:00    2017-08-19 15:57:00
114478    35422    931    2017-08-19 15:30:00    2017-08-19 15:30:00
114479    35422    590    2017-08-19 21:05:00    2017-08-19 21:05:00
114480    35423    752    2017-08-19 09:36:00    2017-08-19 09:36:00
114481    35423    538    2017-08-19 15:05:00    2017-08-19 15:05:00
114482    35423    719    2017-08-19 21:02:00    2017-08-19 21:02:00
114483    35423    870    2017-08-19 18:18:00    2017-08-19 18:18:00
114484    35423    903    2017-08-19 02:37:00    2017-08-19 02:37:00
114485    35424    588    2017-08-19 15:05:00    2017-08-19 15:05:00
114486    35424    914    2017-08-19 16:45:00    2017-08-19 16:45:00
114487    35424    817    2017-08-19 17:02:00    2017-08-19 17:02:00
114488    35424    572    2017-08-19 01:25:00    2017-08-19 01:25:00
114489    35424    920    2017-08-19 21:16:00    2017-08-19 21:16:00
114490    35425    675    2017-08-19 16:02:00    2017-08-19 16:02:00
114491    35425    770    2017-08-19 13:01:00    2017-08-19 13:01:00
114492    35425    697    2017-08-19 09:26:00    2017-08-19 09:26:00
114493    35425    614    2017-08-19 14:50:00    2017-08-19 14:50:00
114494    35425    649    2017-08-19 04:09:00    2017-08-19 04:09:00
114495    35426    523    2017-08-19 14:36:00    2017-08-19 14:36:00
114496    35426    671    2017-08-19 10:00:00    2017-08-19 10:00:00
114497    35426    490    2017-08-19 19:43:00    2017-08-19 19:43:00
114498    35426    469    2017-08-19 21:56:00    2017-08-19 21:56:00
114499    35426    936    2017-08-19 06:15:00    2017-08-19 06:15:00
114500    35427    487    2017-08-19 04:02:00    2017-08-19 04:02:00
114501    35427    584    2017-08-19 22:41:00    2017-08-19 22:41:00
114502    35427    538    2017-08-19 09:27:00    2017-08-19 09:27:00
114503    35427    595    2017-08-19 11:01:00    2017-08-19 11:01:00
114504    35427    552    2017-08-19 21:00:00    2017-08-19 21:00:00
114505    35428    917    2017-08-19 16:03:00    2017-08-19 16:03:00
114506    35428    794    2017-08-19 23:45:00    2017-08-19 23:45:00
114507    35428    465    2017-08-19 07:41:00    2017-08-19 07:41:00
114508    35428    894    2017-08-19 06:29:00    2017-08-19 06:29:00
114509    35428    537    2017-08-19 04:19:00    2017-08-19 04:19:00
114510    35429    732    2017-08-19 01:09:00    2017-08-19 01:09:00
114511    35429    546    2017-08-19 20:09:00    2017-08-19 20:09:00
114512    35429    781    2017-08-19 21:59:00    2017-08-19 21:59:00
114513    35429    563    2017-08-19 16:27:00    2017-08-19 16:27:00
114514    35429    720    2017-08-19 22:51:00    2017-08-19 22:51:00
114515    35430    933    2017-08-19 01:28:00    2017-08-19 01:28:00
114516    35430    947    2017-08-19 15:53:00    2017-08-19 15:53:00
114517    35430    504    2017-08-19 10:28:00    2017-08-19 10:28:00
114518    35430    596    2017-08-19 21:33:00    2017-08-19 21:33:00
114519    35430    719    2017-08-19 16:16:00    2017-08-19 16:16:00
114520    35431    953    2017-08-19 03:08:00    2017-08-19 03:08:00
114521    35431    542    2017-08-19 20:49:00    2017-08-19 20:49:00
114522    35431    640    2017-08-19 04:27:00    2017-08-19 04:27:00
114523    35431    688    2017-08-19 13:50:00    2017-08-19 13:50:00
114524    35431    570    2017-08-19 06:29:00    2017-08-19 06:29:00
114525    35432    532    2017-08-19 22:31:00    2017-08-19 22:31:00
114526    35432    542    2017-08-19 12:30:00    2017-08-19 12:30:00
114527    35432    554    2017-08-19 12:24:00    2017-08-19 12:24:00
114528    35432    562    2017-08-19 08:18:00    2017-08-19 08:18:00
114529    35432    733    2017-08-19 17:51:00    2017-08-19 17:51:00
114530    35433    646    2017-08-19 20:02:00    2017-08-19 20:02:00
114531    35433    774    2017-08-19 16:27:00    2017-08-19 16:27:00
114532    35433    660    2017-08-19 07:35:00    2017-08-19 07:35:00
114533    35433    650    2017-08-19 08:50:00    2017-08-19 08:50:00
114534    35433    790    2017-08-19 21:33:00    2017-08-19 21:33:00
114535    35434    603    2017-08-19 02:01:00    2017-08-19 02:01:00
114536    35434    820    2017-08-19 06:49:00    2017-08-19 06:49:00
114537    35434    464    2017-08-19 17:55:00    2017-08-19 17:55:00
114538    35434    673    2017-08-19 20:47:00    2017-08-19 20:47:00
114539    35434    518    2017-08-19 16:06:00    2017-08-19 16:06:00
114540    35435    755    2017-08-19 18:26:00    2017-08-19 18:26:00
114541    35435    883    2017-08-19 18:26:00    2017-08-19 18:26:00
114542    35435    549    2017-08-19 22:38:00    2017-08-19 22:38:00
114543    35435    624    2017-08-19 11:22:00    2017-08-19 11:22:00
114544    35435    645    2017-08-19 19:56:00    2017-08-19 19:56:00
114545    35436    489    2017-08-20 04:59:00    2017-08-20 04:59:00
114546    35436    805    2017-08-20 15:52:00    2017-08-20 15:52:00
114547    35436    535    2017-08-20 13:36:00    2017-08-20 13:36:00
114548    35436    727    2017-08-20 07:23:00    2017-08-20 07:23:00
114549    35436    534    2017-08-20 19:07:00    2017-08-20 19:07:00
114550    35437    933    2017-08-20 03:11:00    2017-08-20 03:11:00
114551    35437    620    2017-08-20 08:50:00    2017-08-20 08:50:00
114552    35437    710    2017-08-20 15:38:00    2017-08-20 15:38:00
114553    35437    513    2017-08-20 10:49:00    2017-08-20 10:49:00
114554    35437    947    2017-08-20 15:59:00    2017-08-20 15:59:00
114555    35438    554    2017-08-20 14:21:00    2017-08-20 14:21:00
114556    35438    880    2017-08-20 18:53:00    2017-08-20 18:53:00
114557    35438    654    2017-08-20 03:39:00    2017-08-20 03:39:00
114558    35438    643    2017-08-20 20:51:00    2017-08-20 20:51:00
114559    35438    630    2017-08-20 22:36:00    2017-08-20 22:36:00
114560    35439    740    2017-08-20 06:08:00    2017-08-20 06:08:00
114561    35439    681    2017-08-20 15:55:00    2017-08-20 15:55:00
114562    35439    747    2017-08-20 21:52:00    2017-08-20 21:52:00
114563    35439    767    2017-08-20 18:48:00    2017-08-20 18:48:00
114564    35439    877    2017-08-20 19:43:00    2017-08-20 19:43:00
114565    35440    773    2017-08-20 13:19:00    2017-08-20 13:19:00
114566    35440    642    2017-08-20 17:17:00    2017-08-20 17:17:00
114567    35440    785    2017-08-20 04:47:00    2017-08-20 04:47:00
114568    35440    774    2017-08-20 17:54:00    2017-08-20 17:54:00
114569    35440    787    2017-08-20 03:14:00    2017-08-20 03:14:00
114570    35441    732    2017-08-20 23:46:00    2017-08-20 23:46:00
114571    35441    578    2017-08-20 19:52:00    2017-08-20 19:52:00
114572    35441    845    2017-08-20 13:52:00    2017-08-20 13:52:00
114573    35441    482    2017-08-20 16:59:00    2017-08-20 16:59:00
114574    35441    881    2017-08-20 19:55:00    2017-08-20 19:55:00
114575    35442    531    2017-08-20 18:36:00    2017-08-20 18:36:00
114576    35442    635    2017-08-20 07:40:00    2017-08-20 07:40:00
114577    35442    861    2017-08-20 04:27:00    2017-08-20 04:27:00
114578    35442    615    2017-08-20 17:24:00    2017-08-20 17:24:00
114579    35442    711    2017-08-20 11:54:00    2017-08-20 11:54:00
114580    35443    506    2017-08-20 19:14:00    2017-08-20 19:14:00
114581    35443    577    2017-08-20 21:17:00    2017-08-20 21:17:00
114582    35443    566    2017-08-20 10:21:00    2017-08-20 10:21:00
114583    35443    875    2017-08-20 21:27:00    2017-08-20 21:27:00
114584    35443    568    2017-08-20 23:56:00    2017-08-20 23:56:00
114585    35444    751    2017-08-20 19:35:00    2017-08-20 19:35:00
114586    35444    519    2017-08-20 07:21:00    2017-08-20 07:21:00
114587    35444    610    2017-08-20 02:21:00    2017-08-20 02:21:00
114588    35444    638    2017-08-20 13:35:00    2017-08-20 13:35:00
114589    35444    734    2017-08-20 05:08:00    2017-08-20 05:08:00
114590    35445    618    2017-08-20 09:33:00    2017-08-20 09:33:00
114591    35445    576    2017-08-20 17:37:00    2017-08-20 17:37:00
114592    35445    595    2017-08-20 12:25:00    2017-08-20 12:25:00
114593    35445    601    2017-08-20 08:27:00    2017-08-20 08:27:00
114594    35445    692    2017-08-20 07:16:00    2017-08-20 07:16:00
114595    35446    919    2017-08-20 16:41:00    2017-08-20 16:41:00
114596    35446    626    2017-08-20 06:45:00    2017-08-20 06:45:00
114597    35446    592    2017-08-20 03:01:00    2017-08-20 03:01:00
114598    35446    896    2017-08-20 18:54:00    2017-08-20 18:54:00
114599    35446    882    2017-08-20 13:01:00    2017-08-20 13:01:00
114600    35447    466    2017-08-20 10:16:00    2017-08-20 10:16:00
114601    35447    606    2017-08-20 10:01:00    2017-08-20 10:01:00
114602    35447    542    2017-08-20 04:32:00    2017-08-20 04:32:00
114603    35447    472    2017-08-20 17:51:00    2017-08-20 17:51:00
114604    35447    725    2017-08-20 22:19:00    2017-08-20 22:19:00
114605    35448    515    2017-08-20 09:33:00    2017-08-20 09:33:00
114606    35448    844    2017-08-20 12:21:00    2017-08-20 12:21:00
114607    35448    947    2017-08-20 10:36:00    2017-08-20 10:36:00
114608    35448    562    2017-08-20 19:15:00    2017-08-20 19:15:00
114609    35448    718    2017-08-20 21:32:00    2017-08-20 21:32:00
114610    35449    710    2017-08-20 11:58:00    2017-08-20 11:58:00
114611    35449    961    2017-08-20 08:44:00    2017-08-20 08:44:00
114612    35449    598    2017-08-20 06:33:00    2017-08-20 06:33:00
114613    35449    491    2017-08-20 10:42:00    2017-08-20 10:42:00
114614    35449    626    2017-08-20 03:15:00    2017-08-20 03:15:00
114615    35450    511    2017-08-20 04:37:00    2017-08-20 04:37:00
114616    35450    512    2017-08-20 17:59:00    2017-08-20 17:59:00
114617    35450    750    2017-08-20 02:08:00    2017-08-20 02:08:00
114618    35450    671    2017-08-20 16:04:00    2017-08-20 16:04:00
114619    35450    514    2017-08-20 05:53:00    2017-08-20 05:53:00
114620    35451    629    2017-08-20 12:36:00    2017-08-20 12:36:00
114621    35451    906    2017-08-20 14:56:00    2017-08-20 14:56:00
114622    35451    936    2017-08-20 19:24:00    2017-08-20 19:24:00
114623    35451    933    2017-08-20 21:36:00    2017-08-20 21:36:00
114624    35451    925    2017-08-20 03:10:00    2017-08-20 03:10:00
114625    35452    699    2017-08-20 06:34:00    2017-08-20 06:34:00
114626    35452    775    2017-08-20 19:23:00    2017-08-20 19:23:00
114627    35452    645    2017-08-20 19:54:00    2017-08-20 19:54:00
114628    35452    712    2017-08-20 20:32:00    2017-08-20 20:32:00
114629    35452    563    2017-08-20 09:40:00    2017-08-20 09:40:00
114630    35453    872    2017-08-20 20:14:00    2017-08-20 20:14:00
114631    35453    774    2017-08-20 21:44:00    2017-08-20 21:44:00
114632    35453    777    2017-08-20 03:55:00    2017-08-20 03:55:00
114633    35453    711    2017-08-20 23:44:00    2017-08-20 23:44:00
114634    35453    513    2017-08-20 04:48:00    2017-08-20 04:48:00
114635    35454    548    2017-08-20 15:34:00    2017-08-20 15:34:00
114636    35454    857    2017-08-20 17:04:00    2017-08-20 17:04:00
114637    35454    716    2017-08-20 04:37:00    2017-08-20 04:37:00
114638    35454    695    2017-08-20 09:19:00    2017-08-20 09:19:00
114639    35454    937    2017-08-20 09:41:00    2017-08-20 09:41:00
114640    35455    781    2017-08-20 11:43:00    2017-08-20 11:43:00
114641    35455    693    2017-08-20 03:50:00    2017-08-20 03:50:00
114642    35455    489    2017-08-20 02:28:00    2017-08-20 02:28:00
114643    35455    529    2017-08-20 11:57:00    2017-08-20 11:57:00
114644    35455    496    2017-08-20 21:12:00    2017-08-20 21:12:00
114645    35456    502    2017-08-20 11:30:00    2017-08-20 11:30:00
114646    35456    634    2017-08-20 15:59:00    2017-08-20 15:59:00
114647    35456    559    2017-08-20 18:28:00    2017-08-20 18:28:00
114648    35456    685    2017-08-20 02:51:00    2017-08-20 02:51:00
114649    35456    880    2017-08-20 03:25:00    2017-08-20 03:25:00
114650    35457    669    2017-08-20 22:04:00    2017-08-20 22:04:00
114651    35457    828    2017-08-20 19:06:00    2017-08-20 19:06:00
114652    35457    771    2017-08-20 13:20:00    2017-08-20 13:20:00
114653    35457    874    2017-08-20 13:50:00    2017-08-20 13:50:00
114654    35457    596    2017-08-20 23:46:00    2017-08-20 23:46:00
114655    35458    910    2017-08-20 08:18:00    2017-08-20 08:18:00
114656    35458    841    2017-08-20 15:02:00    2017-08-20 15:02:00
114657    35458    656    2017-08-20 21:41:00    2017-08-20 21:41:00
114658    35458    856    2017-08-20 03:37:00    2017-08-20 03:37:00
114659    35458    959    2017-08-20 05:49:00    2017-08-20 05:49:00
114660    35459    818    2017-08-20 16:27:00    2017-08-20 16:27:00
114661    35459    881    2017-08-20 22:57:00    2017-08-20 22:57:00
114662    35459    469    2017-08-20 12:56:00    2017-08-20 12:56:00
114663    35459    609    2017-08-20 17:54:00    2017-08-20 17:54:00
114664    35459    726    2017-08-20 09:43:00    2017-08-20 09:43:00
114665    35460    722    2017-08-20 05:07:00    2017-08-20 05:07:00
114666    35460    470    2017-08-20 16:33:00    2017-08-20 16:33:00
114667    35460    522    2017-08-20 03:14:00    2017-08-20 03:14:00
114668    35460    865    2017-08-20 02:09:00    2017-08-20 02:09:00
114669    35460    718    2017-08-20 22:10:00    2017-08-20 22:10:00
114670    35461    478    2017-08-20 07:49:00    2017-08-20 07:49:00
114671    35461    825    2017-08-20 06:51:00    2017-08-20 06:51:00
114672    35461    809    2017-08-20 22:50:00    2017-08-20 22:50:00
114673    35461    541    2017-08-20 17:37:00    2017-08-20 17:37:00
114674    35461    488    2017-08-20 18:43:00    2017-08-20 18:43:00
114675    35462    787    2017-08-20 01:20:00    2017-08-20 01:20:00
114676    35462    945    2017-08-20 05:00:00    2017-08-20 05:00:00
114677    35462    959    2017-08-20 12:11:00    2017-08-20 12:11:00
114678    35462    643    2017-08-20 15:48:00    2017-08-20 15:48:00
114679    35462    707    2017-08-20 07:57:00    2017-08-20 07:57:00
114680    35463    712    2017-08-20 22:07:00    2017-08-20 22:07:00
114681    35463    515    2017-08-20 05:57:00    2017-08-20 05:57:00
114682    35463    862    2017-08-20 07:32:00    2017-08-20 07:32:00
114683    35463    578    2017-08-20 16:00:00    2017-08-20 16:00:00
114684    35463    867    2017-08-20 04:42:00    2017-08-20 04:42:00
114685    35464    777    2017-08-20 20:43:00    2017-08-20 20:43:00
114686    35464    847    2017-08-20 11:37:00    2017-08-20 11:37:00
114687    35464    576    2017-08-20 02:00:00    2017-08-20 02:00:00
114688    35464    734    2017-08-20 16:31:00    2017-08-20 16:31:00
114689    35464    671    2017-08-20 03:29:00    2017-08-20 03:29:00
114690    35465    925    2017-08-20 02:03:00    2017-08-20 02:03:00
114691    35465    557    2017-08-20 20:59:00    2017-08-20 20:59:00
114692    35465    509    2017-08-20 06:39:00    2017-08-20 06:39:00
114693    35465    531    2017-08-20 05:26:00    2017-08-20 05:26:00
114694    35465    867    2017-08-20 12:47:00    2017-08-20 12:47:00
114695    35466    749    2017-08-20 04:18:00    2017-08-20 04:18:00
114696    35466    486    2017-08-20 22:15:00    2017-08-20 22:15:00
114697    35466    924    2017-08-20 11:04:00    2017-08-20 11:04:00
114698    35466    490    2017-08-20 03:57:00    2017-08-20 03:57:00
114699    35466    608    2017-08-20 23:08:00    2017-08-20 23:08:00
114700    35467    952    2017-08-20 20:26:00    2017-08-20 20:26:00
114701    35467    727    2017-08-20 21:03:00    2017-08-20 21:03:00
114702    35467    463    2017-08-20 12:56:00    2017-08-20 12:56:00
114703    35467    891    2017-08-20 15:52:00    2017-08-20 15:52:00
114704    35467    579    2017-08-20 04:06:00    2017-08-20 04:06:00
114705    35468    734    2017-08-20 11:56:00    2017-08-20 11:56:00
114706    35468    730    2017-08-20 18:19:00    2017-08-20 18:19:00
114707    35468    615    2017-08-20 17:39:00    2017-08-20 17:39:00
114708    35468    761    2017-08-20 05:06:00    2017-08-20 05:06:00
114709    35468    668    2017-08-20 18:17:00    2017-08-20 18:17:00
114710    35469    594    2017-08-20 05:41:00    2017-08-20 05:41:00
114711    35469    740    2017-08-20 08:08:00    2017-08-20 08:08:00
114712    35469    737    2017-08-20 18:00:00    2017-08-20 18:00:00
114713    35469    693    2017-08-20 19:09:00    2017-08-20 19:09:00
114714    35469    600    2017-08-20 04:32:00    2017-08-20 04:32:00
114715    35470    882    2017-08-20 06:54:00    2017-08-20 06:54:00
114716    35470    757    2017-08-20 19:51:00    2017-08-20 19:51:00
114717    35470    779    2017-08-20 09:25:00    2017-08-20 09:25:00
114718    35470    876    2017-08-20 13:52:00    2017-08-20 13:52:00
114719    35470    609    2017-08-20 13:58:00    2017-08-20 13:58:00
114720    35471    530    2017-08-20 10:17:00    2017-08-20 10:17:00
114721    35471    771    2017-08-20 06:55:00    2017-08-20 06:55:00
114722    35471    472    2017-08-20 10:41:00    2017-08-20 10:41:00
114723    35471    519    2017-08-20 17:18:00    2017-08-20 17:18:00
114724    35471    655    2017-08-20 02:05:00    2017-08-20 02:05:00
114725    35472    657    2017-08-20 08:47:00    2017-08-20 08:47:00
114726    35472    677    2017-08-20 14:41:00    2017-08-20 14:41:00
114727    35472    711    2017-08-20 12:00:00    2017-08-20 12:00:00
114728    35472    611    2017-08-20 10:21:00    2017-08-20 10:21:00
114729    35472    668    2017-08-20 22:06:00    2017-08-20 22:06:00
114730    35473    890    2017-08-20 05:30:00    2017-08-20 05:30:00
114731    35473    800    2017-08-20 11:33:00    2017-08-20 11:33:00
114732    35473    882    2017-08-20 09:11:00    2017-08-20 09:11:00
114733    35473    474    2017-08-20 15:58:00    2017-08-20 15:58:00
114734    35473    878    2017-08-20 13:50:00    2017-08-20 13:50:00
114735    35474    750    2017-08-20 08:38:00    2017-08-20 08:38:00
114736    35474    473    2017-08-20 10:37:00    2017-08-20 10:37:00
114737    35474    603    2017-08-20 21:04:00    2017-08-20 21:04:00
114738    35474    697    2017-08-20 06:20:00    2017-08-20 06:20:00
114739    35474    682    2017-08-20 18:20:00    2017-08-20 18:20:00
114740    35475    523    2017-08-20 14:35:00    2017-08-20 14:35:00
114741    35475    553    2017-08-20 04:34:00    2017-08-20 04:34:00
114742    35475    597    2017-08-20 02:44:00    2017-08-20 02:44:00
114743    35475    856    2017-08-20 21:15:00    2017-08-20 21:15:00
114744    35475    954    2017-08-20 04:49:00    2017-08-20 04:49:00
114745    35476    780    2017-08-20 23:09:00    2017-08-20 23:09:00
114746    35476    666    2017-08-20 12:35:00    2017-08-20 12:35:00
114747    35476    691    2017-08-20 23:45:00    2017-08-20 23:45:00
114748    35476    635    2017-08-20 11:15:00    2017-08-20 11:15:00
114749    35476    611    2017-08-20 02:28:00    2017-08-20 02:28:00
114750    35477    691    2017-08-20 15:12:00    2017-08-20 15:12:00
114751    35477    819    2017-08-20 13:03:00    2017-08-20 13:03:00
114752    35477    678    2017-08-20 04:00:00    2017-08-20 04:00:00
114753    35477    463    2017-08-20 11:57:00    2017-08-20 11:57:00
114754    35477    844    2017-08-20 19:00:00    2017-08-20 19:00:00
114755    35478    840    2017-08-20 23:57:00    2017-08-20 23:57:00
114756    35478    551    2017-08-20 23:35:00    2017-08-20 23:35:00
114757    35478    942    2017-08-20 22:00:00    2017-08-20 22:00:00
114758    35478    937    2017-08-20 17:04:00    2017-08-20 17:04:00
114759    35478    848    2017-08-20 02:37:00    2017-08-20 02:37:00
114760    35479    935    2017-08-20 11:45:00    2017-08-20 11:45:00
114761    35479    472    2017-08-20 12:52:00    2017-08-20 12:52:00
114762    35479    632    2017-08-20 11:51:00    2017-08-20 11:51:00
114763    35479    860    2017-08-20 14:45:00    2017-08-20 14:45:00
114764    35479    507    2017-08-20 02:00:00    2017-08-20 02:00:00
114765    35480    731    2017-08-20 02:01:00    2017-08-20 02:01:00
114766    35480    688    2017-08-20 01:07:00    2017-08-20 01:07:00
114767    35480    919    2017-08-20 21:36:00    2017-08-20 21:36:00
114768    35480    837    2017-08-20 03:40:00    2017-08-20 03:40:00
114769    35480    481    2017-08-20 09:15:00    2017-08-20 09:15:00
114770    35481    507    2017-08-20 22:26:00    2017-08-20 22:26:00
114771    35481    608    2017-08-20 07:02:00    2017-08-20 07:02:00
114772    35481    682    2017-08-20 13:41:00    2017-08-20 13:41:00
114773    35481    909    2017-08-20 05:45:00    2017-08-20 05:45:00
114774    35481    713    2017-08-20 20:01:00    2017-08-20 20:01:00
114775    35482    698    2017-08-20 06:40:00    2017-08-20 06:40:00
114776    35482    950    2017-08-20 05:35:00    2017-08-20 05:35:00
114777    35482    680    2017-08-20 09:59:00    2017-08-20 09:59:00
114778    35482    849    2017-08-20 04:16:00    2017-08-20 04:16:00
114779    35482    515    2017-08-20 06:14:00    2017-08-20 06:14:00
114780    35483    883    2017-08-20 01:22:00    2017-08-20 01:22:00
114781    35483    931    2017-08-20 11:38:00    2017-08-20 11:38:00
114782    35483    565    2017-08-20 15:40:00    2017-08-20 15:40:00
114783    35483    565    2017-08-20 03:49:00    2017-08-20 03:49:00
114784    35483    612    2017-08-20 16:44:00    2017-08-20 16:44:00
114785    35484    915    2017-08-20 10:40:00    2017-08-20 10:40:00
114786    35484    834    2017-08-20 21:50:00    2017-08-20 21:50:00
114787    35484    933    2017-08-20 18:15:00    2017-08-20 18:15:00
114788    35484    648    2017-08-20 15:16:00    2017-08-20 15:16:00
114789    35484    774    2017-08-20 03:12:00    2017-08-20 03:12:00
114790    35485    536    2017-08-20 17:43:00    2017-08-20 17:43:00
114791    35485    557    2017-08-20 18:31:00    2017-08-20 18:31:00
114792    35485    476    2017-08-20 07:27:00    2017-08-20 07:27:00
114793    35485    698    2017-08-20 20:32:00    2017-08-20 20:32:00
114794    35485    937    2017-08-20 16:52:00    2017-08-20 16:52:00
114795    35486    736    2017-08-20 17:12:00    2017-08-20 17:12:00
114796    35486    504    2017-08-20 23:30:00    2017-08-20 23:30:00
114797    35486    657    2017-08-20 15:20:00    2017-08-20 15:20:00
114798    35486    934    2017-08-20 19:05:00    2017-08-20 19:05:00
114799    35486    710    2017-08-20 21:01:00    2017-08-20 21:01:00
114800    35487    823    2017-08-20 05:23:00    2017-08-20 05:23:00
114801    35487    940    2017-08-20 16:48:00    2017-08-20 16:48:00
114802    35487    672    2017-08-20 19:14:00    2017-08-20 19:14:00
114803    35487    560    2017-08-20 13:37:00    2017-08-20 13:37:00
114804    35487    558    2017-08-20 01:22:00    2017-08-20 01:22:00
114805    35488    752    2017-08-20 11:04:00    2017-08-20 11:04:00
114806    35488    851    2017-08-20 14:10:00    2017-08-20 14:10:00
114807    35488    773    2017-08-20 18:33:00    2017-08-20 18:33:00
114808    35488    884    2017-08-20 01:49:00    2017-08-20 01:49:00
114809    35488    592    2017-08-20 05:07:00    2017-08-20 05:07:00
114810    35489    914    2017-08-20 13:18:00    2017-08-20 13:18:00
114811    35489    753    2017-08-20 23:58:00    2017-08-20 23:58:00
114812    35489    636    2017-08-20 05:27:00    2017-08-20 05:27:00
114813    35489    736    2017-08-20 05:40:00    2017-08-20 05:40:00
114814    35489    757    2017-08-20 14:28:00    2017-08-20 14:28:00
114815    35490    848    2017-08-20 08:15:00    2017-08-20 08:15:00
114816    35490    879    2017-08-20 04:10:00    2017-08-20 04:10:00
114817    35490    473    2017-08-20 13:57:00    2017-08-20 13:57:00
114818    35490    891    2017-08-20 16:41:00    2017-08-20 16:41:00
114819    35490    882    2017-08-20 18:50:00    2017-08-20 18:50:00
114820    35491    474    2017-08-20 10:58:00    2017-08-20 10:58:00
114821    35491    854    2017-08-20 23:59:00    2017-08-20 23:59:00
114822    35491    777    2017-08-20 02:08:00    2017-08-20 02:08:00
114823    35491    946    2017-08-20 02:55:00    2017-08-20 02:55:00
114824    35491    526    2017-08-20 20:15:00    2017-08-20 20:15:00
114825    35492    509    2017-08-20 18:00:00    2017-08-20 18:00:00
114826    35492    807    2017-08-20 01:01:00    2017-08-20 01:01:00
114827    35492    847    2017-08-20 01:48:00    2017-08-20 01:48:00
114828    35492    803    2017-08-20 18:30:00    2017-08-20 18:30:00
114829    35492    703    2017-08-20 19:35:00    2017-08-20 19:35:00
114830    35493    913    2017-08-20 11:28:00    2017-08-20 11:28:00
114831    35493    899    2017-08-20 02:46:00    2017-08-20 02:46:00
114832    35493    632    2017-08-20 19:09:00    2017-08-20 19:09:00
114833    35493    837    2017-08-20 22:54:00    2017-08-20 22:54:00
114834    35493    749    2017-08-20 05:31:00    2017-08-20 05:31:00
114835    35494    659    2017-08-20 03:06:00    2017-08-20 03:06:00
114836    35494    681    2017-08-20 17:09:00    2017-08-20 17:09:00
114837    35494    897    2017-08-20 15:12:00    2017-08-20 15:12:00
114838    35494    908    2017-08-20 01:55:00    2017-08-20 01:55:00
114839    35494    481    2017-08-20 14:33:00    2017-08-20 14:33:00
114840    35495    913    2017-08-20 13:59:00    2017-08-20 13:59:00
114841    35495    512    2017-08-20 23:25:00    2017-08-20 23:25:00
114842    35495    498    2017-08-20 17:03:00    2017-08-20 17:03:00
114843    35495    936    2017-08-20 14:10:00    2017-08-20 14:10:00
114844    35495    651    2017-08-20 08:51:00    2017-08-20 08:51:00
114845    35496    702    2017-08-20 22:36:00    2017-08-20 22:36:00
114846    35496    624    2017-08-20 06:28:00    2017-08-20 06:28:00
114847    35496    574    2017-08-20 15:46:00    2017-08-20 15:46:00
114848    35496    956    2017-08-20 14:16:00    2017-08-20 14:16:00
114849    35496    946    2017-08-20 07:19:00    2017-08-20 07:19:00
114850    35497    857    2017-08-20 22:38:00    2017-08-20 22:38:00
114851    35497    870    2017-08-20 08:25:00    2017-08-20 08:25:00
114852    35497    720    2017-08-20 16:26:00    2017-08-20 16:26:00
114853    35497    576    2017-08-20 06:43:00    2017-08-20 06:43:00
114854    35497    666    2017-08-20 04:03:00    2017-08-20 04:03:00
114855    35498    761    2017-08-20 20:27:00    2017-08-20 20:27:00
114856    35498    549    2017-08-20 10:28:00    2017-08-20 10:28:00
114857    35498    572    2017-08-20 16:46:00    2017-08-20 16:46:00
114858    35498    865    2017-08-20 21:02:00    2017-08-20 21:02:00
114859    35498    704    2017-08-20 17:56:00    2017-08-20 17:56:00
114860    35499    633    2017-08-20 06:28:00    2017-08-20 06:28:00
114861    35499    511    2017-08-20 12:25:00    2017-08-20 12:25:00
114862    35499    782    2017-08-20 19:10:00    2017-08-20 19:10:00
114863    35499    931    2017-08-20 16:42:00    2017-08-20 16:42:00
114864    35499    690    2017-08-20 22:20:00    2017-08-20 22:20:00
114865    35500    775    2017-08-20 10:07:00    2017-08-20 10:07:00
114866    35500    935    2017-08-20 05:28:00    2017-08-20 05:28:00
114867    35500    957    2017-08-20 09:33:00    2017-08-20 09:33:00
114868    35500    603    2017-08-20 13:05:00    2017-08-20 13:05:00
114869    35500    508    2017-08-20 18:43:00    2017-08-20 18:43:00
114870    35501    873    2017-08-20 11:36:00    2017-08-20 11:36:00
114871    35501    715    2017-08-20 15:31:00    2017-08-20 15:31:00
114872    35501    582    2017-08-20 13:55:00    2017-08-20 13:55:00
114873    35501    466    2017-08-20 02:14:00    2017-08-20 02:14:00
114874    35501    580    2017-08-20 18:00:00    2017-08-20 18:00:00
114875    35502    582    2017-08-20 20:38:00    2017-08-20 20:38:00
114876    35502    740    2017-08-20 02:34:00    2017-08-20 02:34:00
114877    35502    732    2017-08-20 17:03:00    2017-08-20 17:03:00
114878    35502    483    2017-08-20 05:52:00    2017-08-20 05:52:00
114879    35502    471    2017-08-20 18:27:00    2017-08-20 18:27:00
114880    35503    710    2017-08-20 15:06:00    2017-08-20 15:06:00
114881    35503    664    2017-08-20 23:45:00    2017-08-20 23:45:00
114882    35503    700    2017-08-20 15:52:00    2017-08-20 15:52:00
114883    35503    575    2017-08-20 15:02:00    2017-08-20 15:02:00
114884    35503    589    2017-08-20 08:27:00    2017-08-20 08:27:00
114885    35504    692    2017-08-20 12:25:00    2017-08-20 12:25:00
114886    35504    933    2017-08-20 01:47:00    2017-08-20 01:47:00
114887    35504    949    2017-08-20 18:37:00    2017-08-20 18:37:00
114888    35504    626    2017-08-20 12:54:00    2017-08-20 12:54:00
114889    35504    919    2017-08-20 03:53:00    2017-08-20 03:53:00
114890    35505    928    2017-08-20 12:54:00    2017-08-20 12:54:00
114891    35505    949    2017-08-20 07:03:00    2017-08-20 07:03:00
114892    35505    568    2017-08-20 09:52:00    2017-08-20 09:52:00
114893    35505    598    2017-08-20 08:24:00    2017-08-20 08:24:00
114894    35505    624    2017-08-20 19:56:00    2017-08-20 19:56:00
114895    35506    750    2017-08-20 06:39:00    2017-08-20 06:39:00
114896    35506    754    2017-08-20 05:28:00    2017-08-20 05:28:00
114897    35506    671    2017-08-20 03:26:00    2017-08-20 03:26:00
114898    35506    777    2017-08-20 17:30:00    2017-08-20 17:30:00
114899    35506    773    2017-08-20 11:15:00    2017-08-20 11:15:00
114900    35507    854    2017-08-20 22:02:00    2017-08-20 22:02:00
114901    35507    508    2017-08-20 01:20:00    2017-08-20 01:20:00
114902    35507    515    2017-08-20 01:27:00    2017-08-20 01:27:00
114903    35507    607    2017-08-20 14:36:00    2017-08-20 14:36:00
114904    35507    727    2017-08-20 19:54:00    2017-08-20 19:54:00
114905    35508    705    2017-08-20 12:45:00    2017-08-20 12:45:00
114906    35508    720    2017-08-20 22:27:00    2017-08-20 22:27:00
114907    35508    708    2017-08-20 10:10:00    2017-08-20 10:10:00
114908    35508    548    2017-08-20 11:38:00    2017-08-20 11:38:00
114909    35508    877    2017-08-20 07:44:00    2017-08-20 07:44:00
114910    35509    896    2017-08-20 20:47:00    2017-08-20 20:47:00
114911    35509    519    2017-08-20 11:40:00    2017-08-20 11:40:00
114912    35509    939    2017-08-20 22:34:00    2017-08-20 22:34:00
114913    35509    527    2017-08-20 09:40:00    2017-08-20 09:40:00
114914    35509    808    2017-08-20 11:04:00    2017-08-20 11:04:00
114915    35510    669    2017-08-20 18:06:00    2017-08-20 18:06:00
114916    35510    701    2017-08-20 07:20:00    2017-08-20 07:20:00
114917    35510    772    2017-08-20 11:00:00    2017-08-20 11:00:00
114918    35510    637    2017-08-20 03:52:00    2017-08-20 03:52:00
114919    35510    866    2017-08-20 07:27:00    2017-08-20 07:27:00
114920    35511    503    2017-08-20 23:02:00    2017-08-20 23:02:00
114921    35511    692    2017-08-20 22:05:00    2017-08-20 22:05:00
114922    35511    588    2017-08-20 13:52:00    2017-08-20 13:52:00
114923    35511    676    2017-08-20 19:12:00    2017-08-20 19:12:00
114924    35511    674    2017-08-20 13:22:00    2017-08-20 13:22:00
114925    35512    879    2017-08-20 12:25:00    2017-08-20 12:25:00
114926    35512    489    2017-08-20 23:15:00    2017-08-20 23:15:00
114927    35512    810    2017-08-20 07:32:00    2017-08-20 07:32:00
114928    35512    948    2017-08-20 07:25:00    2017-08-20 07:25:00
114929    35512    686    2017-08-20 16:20:00    2017-08-20 16:20:00
114930    35513    843    2017-08-20 06:07:00    2017-08-20 06:07:00
114931    35513    494    2017-08-20 12:26:00    2017-08-20 12:26:00
114932    35513    904    2017-08-20 13:51:00    2017-08-20 13:51:00
114933    35513    717    2017-08-20 09:35:00    2017-08-20 09:35:00
114934    35513    480    2017-08-20 03:27:00    2017-08-20 03:27:00
114935    35514    816    2017-08-20 01:26:00    2017-08-20 01:26:00
114936    35514    481    2017-08-20 06:43:00    2017-08-20 06:43:00
114937    35514    510    2017-08-20 22:51:00    2017-08-20 22:51:00
114938    35514    549    2017-08-20 11:46:00    2017-08-20 11:46:00
114939    35514    805    2017-08-20 04:54:00    2017-08-20 04:54:00
114940    35515    568    2017-08-20 01:58:00    2017-08-20 01:58:00
114941    35515    543    2017-08-20 22:11:00    2017-08-20 22:11:00
114942    35515    627    2017-08-20 21:31:00    2017-08-20 21:31:00
114943    35515    762    2017-08-20 23:11:00    2017-08-20 23:11:00
114944    35515    856    2017-08-20 18:16:00    2017-08-20 18:16:00
114945    35516    890    2017-08-20 14:48:00    2017-08-20 14:48:00
114946    35516    910    2017-08-20 18:16:00    2017-08-20 18:16:00
114947    35516    879    2017-08-20 12:43:00    2017-08-20 12:43:00
114948    35516    557    2017-08-20 14:28:00    2017-08-20 14:28:00
114949    35516    497    2017-08-20 16:04:00    2017-08-20 16:04:00
114950    35517    687    2017-08-20 19:00:00    2017-08-20 19:00:00
114951    35517    878    2017-08-20 19:21:00    2017-08-20 19:21:00
114952    35517    733    2017-08-20 22:11:00    2017-08-20 22:11:00
114953    35517    961    2017-08-20 21:12:00    2017-08-20 21:12:00
114954    35517    833    2017-08-20 17:06:00    2017-08-20 17:06:00
114955    35518    697    2017-08-20 11:01:00    2017-08-20 11:01:00
114956    35518    592    2017-08-20 03:22:00    2017-08-20 03:22:00
114957    35518    484    2017-08-20 05:15:00    2017-08-20 05:15:00
114958    35518    541    2017-08-20 10:32:00    2017-08-20 10:32:00
114959    35518    788    2017-08-20 16:19:00    2017-08-20 16:19:00
114960    35519    652    2017-08-21 21:56:00    2017-08-21 21:56:00
114961    35519    480    2017-08-21 08:06:00    2017-08-21 08:06:00
114962    35519    571    2017-08-21 14:00:00    2017-08-21 14:00:00
114963    35519    549    2017-08-21 13:37:00    2017-08-21 13:37:00
114964    35519    511    2017-08-21 09:05:00    2017-08-21 09:05:00
114965    35520    858    2017-08-21 15:10:00    2017-08-21 15:10:00
114966    35520    859    2017-08-21 21:12:00    2017-08-21 21:12:00
114967    35520    954    2017-08-21 07:11:00    2017-08-21 07:11:00
114968    35520    464    2017-08-21 08:21:00    2017-08-21 08:21:00
114969    35520    953    2017-08-21 04:39:00    2017-08-21 04:39:00
114970    35521    884    2017-08-21 16:29:00    2017-08-21 16:29:00
114971    35521    506    2017-08-21 10:05:00    2017-08-21 10:05:00
114972    35521    704    2017-08-21 05:54:00    2017-08-21 05:54:00
114973    35521    945    2017-08-21 19:41:00    2017-08-21 19:41:00
114974    35521    482    2017-08-21 04:41:00    2017-08-21 04:41:00
114975    35522    549    2017-08-21 07:50:00    2017-08-21 07:50:00
114976    35522    520    2017-08-21 04:13:00    2017-08-21 04:13:00
114977    35522    492    2017-08-21 13:37:00    2017-08-21 13:37:00
114978    35522    837    2017-08-21 11:04:00    2017-08-21 11:04:00
114979    35522    634    2017-08-21 19:51:00    2017-08-21 19:51:00
114980    35523    888    2017-08-21 04:13:00    2017-08-21 04:13:00
114981    35523    499    2017-08-21 13:20:00    2017-08-21 13:20:00
114982    35523    599    2017-08-21 20:44:00    2017-08-21 20:44:00
114983    35523    587    2017-08-21 12:51:00    2017-08-21 12:51:00
114984    35523    958    2017-08-21 17:54:00    2017-08-21 17:54:00
114985    35524    532    2017-08-21 10:02:00    2017-08-21 10:02:00
114986    35524    492    2017-08-21 22:09:00    2017-08-21 22:09:00
114987    35524    801    2017-08-21 15:28:00    2017-08-21 15:28:00
114988    35524    940    2017-08-21 01:04:00    2017-08-21 01:04:00
114989    35524    642    2017-08-21 23:13:00    2017-08-21 23:13:00
114990    35525    698    2017-08-21 03:24:00    2017-08-21 03:24:00
114991    35525    758    2017-08-21 14:01:00    2017-08-21 14:01:00
114992    35525    674    2017-08-21 10:45:00    2017-08-21 10:45:00
114993    35525    536    2017-08-21 18:38:00    2017-08-21 18:38:00
114994    35525    655    2017-08-21 06:55:00    2017-08-21 06:55:00
114995    35526    816    2017-08-21 02:05:00    2017-08-21 02:05:00
114996    35526    537    2017-08-21 09:14:00    2017-08-21 09:14:00
114997    35526    823    2017-08-21 03:11:00    2017-08-21 03:11:00
114998    35526    812    2017-08-21 15:26:00    2017-08-21 15:26:00
114999    35526    547    2017-08-21 11:33:00    2017-08-21 11:33:00
115000    35527    767    2017-08-21 16:21:00    2017-08-21 16:21:00
115001    35527    588    2017-08-21 10:22:00    2017-08-21 10:22:00
115002    35527    850    2017-08-21 18:55:00    2017-08-21 18:55:00
115003    35527    783    2017-08-21 22:36:00    2017-08-21 22:36:00
115004    35527    909    2017-08-21 23:07:00    2017-08-21 23:07:00
115005    35528    838    2017-08-21 02:47:00    2017-08-21 02:47:00
115006    35528    639    2017-08-21 19:13:00    2017-08-21 19:13:00
115007    35528    508    2017-08-21 12:33:00    2017-08-21 12:33:00
115008    35528    690    2017-08-21 10:38:00    2017-08-21 10:38:00
115009    35528    858    2017-08-21 10:13:00    2017-08-21 10:13:00
115010    35529    785    2017-08-21 14:47:00    2017-08-21 14:47:00
115011    35529    550    2017-08-21 13:59:00    2017-08-21 13:59:00
115012    35529    673    2017-08-21 13:09:00    2017-08-21 13:09:00
115013    35529    892    2017-08-21 12:45:00    2017-08-21 12:45:00
115014    35529    509    2017-08-21 15:45:00    2017-08-21 15:45:00
115015    35530    903    2017-08-22 01:19:00    2017-08-22 01:19:00
115016    35530    694    2017-08-22 04:13:00    2017-08-22 04:13:00
115017    35530    788    2017-08-22 07:00:00    2017-08-22 07:00:00
115018    35530    497    2017-08-22 19:18:00    2017-08-22 19:18:00
115019    35530    613    2017-08-22 05:43:00    2017-08-22 05:43:00
115020    35531    946    2017-08-22 15:34:00    2017-08-22 15:34:00
115021    35531    469    2017-08-22 15:05:00    2017-08-22 15:05:00
115022    35531    818    2017-08-22 03:43:00    2017-08-22 03:43:00
115023    35531    866    2017-08-22 09:00:00    2017-08-22 09:00:00
115024    35531    883    2017-08-22 19:48:00    2017-08-22 19:48:00
115025    35532    549    2017-08-22 07:39:00    2017-08-22 07:39:00
115026    35532    819    2017-08-22 17:15:00    2017-08-22 17:15:00
115027    35532    650    2017-08-22 05:18:00    2017-08-22 05:18:00
115028    35532    632    2017-08-22 19:25:00    2017-08-22 19:25:00
115029    35532    616    2017-08-22 17:06:00    2017-08-22 17:06:00
115030    35533    895    2017-08-22 12:54:00    2017-08-22 12:54:00
115031    35533    772    2017-08-22 02:22:00    2017-08-22 02:22:00
115032    35533    824    2017-08-22 23:38:00    2017-08-22 23:38:00
115033    35533    620    2017-08-22 17:47:00    2017-08-22 17:47:00
115034    35533    908    2017-08-22 20:24:00    2017-08-22 20:24:00
115035    35534    560    2017-08-22 13:22:00    2017-08-22 13:22:00
115036    35534    612    2017-08-22 13:06:00    2017-08-22 13:06:00
115037    35534    488    2017-08-22 23:22:00    2017-08-22 23:22:00
115038    35534    776    2017-08-22 08:05:00    2017-08-22 08:05:00
115039    35534    748    2017-08-22 14:42:00    2017-08-22 14:42:00
115040    35535    938    2017-08-22 10:51:00    2017-08-22 10:51:00
115041    35535    812    2017-08-22 16:06:00    2017-08-22 16:06:00
115042    35535    682    2017-08-22 17:43:00    2017-08-22 17:43:00
115043    35535    670    2017-08-22 07:54:00    2017-08-22 07:54:00
115044    35535    774    2017-08-22 14:15:00    2017-08-22 14:15:00
115045    35536    637    2017-08-22 10:06:00    2017-08-22 10:06:00
115046    35536    600    2017-08-22 03:09:00    2017-08-22 03:09:00
115047    35536    751    2017-08-22 09:44:00    2017-08-22 09:44:00
115048    35536    570    2017-08-22 21:13:00    2017-08-22 21:13:00
115049    35536    686    2017-08-22 18:28:00    2017-08-22 18:28:00
115050    35537    754    2017-08-22 10:20:00    2017-08-22 10:20:00
115051    35537    615    2017-08-22 09:46:00    2017-08-22 09:46:00
115052    35537    523    2017-08-22 08:08:00    2017-08-22 08:08:00
115053    35537    793    2017-08-22 01:23:00    2017-08-22 01:23:00
115054    35537    571    2017-08-22 16:54:00    2017-08-22 16:54:00
115055    35538    602    2017-08-22 19:05:00    2017-08-22 19:05:00
115056    35538    675    2017-08-22 06:54:00    2017-08-22 06:54:00
115057    35538    710    2017-08-22 06:38:00    2017-08-22 06:38:00
115058    35538    611    2017-08-22 06:47:00    2017-08-22 06:47:00
115059    35538    638    2017-08-22 20:13:00    2017-08-22 20:13:00
115060    35539    912    2017-08-22 10:59:00    2017-08-22 10:59:00
115061    35539    909    2017-08-22 20:43:00    2017-08-22 20:43:00
115062    35539    854    2017-08-22 09:49:00    2017-08-22 09:49:00
115063    35539    661    2017-08-22 01:23:00    2017-08-22 01:23:00
115064    35539    639    2017-08-22 03:14:00    2017-08-22 03:14:00
115065    35540    761    2017-08-22 17:02:00    2017-08-22 17:02:00
115066    35540    686    2017-08-22 14:19:00    2017-08-22 14:19:00
115067    35540    496    2017-08-22 16:41:00    2017-08-22 16:41:00
115068    35540    761    2017-08-22 12:54:00    2017-08-22 12:54:00
115069    35540    483    2017-08-22 13:30:00    2017-08-22 13:30:00
115070    35541    521    2017-08-22 01:42:00    2017-08-22 01:42:00
115071    35541    820    2017-08-22 18:48:00    2017-08-22 18:48:00
115072    35541    618    2017-08-22 10:29:00    2017-08-22 10:29:00
115073    35541    778    2017-08-22 16:50:00    2017-08-22 16:50:00
115074    35541    806    2017-08-22 01:47:00    2017-08-22 01:47:00
115075    35542    612    2017-08-22 09:46:00    2017-08-22 09:46:00
115076    35542    595    2017-08-22 21:02:00    2017-08-22 21:02:00
115077    35542    912    2017-08-22 21:54:00    2017-08-22 21:54:00
115078    35542    946    2017-08-22 23:00:00    2017-08-22 23:00:00
115079    35542    510    2017-08-22 05:23:00    2017-08-22 05:23:00
115080    35543    770    2017-08-22 07:38:00    2017-08-22 07:38:00
115081    35543    523    2017-08-22 01:54:00    2017-08-22 01:54:00
115082    35543    506    2017-08-22 07:15:00    2017-08-22 07:15:00
115083    35543    486    2017-08-22 12:36:00    2017-08-22 12:36:00
115084    35543    897    2017-08-22 03:55:00    2017-08-22 03:55:00
115085    35544    613    2017-08-22 22:02:00    2017-08-22 22:02:00
115086    35544    846    2017-08-22 15:54:00    2017-08-22 15:54:00
115087    35544    496    2017-08-22 11:38:00    2017-08-22 11:38:00
115088    35544    955    2017-08-22 09:59:00    2017-08-22 09:59:00
115089    35544    537    2017-08-22 08:51:00    2017-08-22 08:51:00
115090    35545    525    2017-08-22 13:45:00    2017-08-22 13:45:00
115091    35545    497    2017-08-22 07:40:00    2017-08-22 07:40:00
115092    35545    905    2017-08-22 15:55:00    2017-08-22 15:55:00
115093    35545    921    2017-08-22 06:25:00    2017-08-22 06:25:00
115094    35545    891    2017-08-22 21:22:00    2017-08-22 21:22:00
115095    35546    618    2017-08-22 12:20:00    2017-08-22 12:20:00
115096    35546    507    2017-08-22 01:57:00    2017-08-22 01:57:00
115097    35546    715    2017-08-22 17:53:00    2017-08-22 17:53:00
115098    35546    663    2017-08-22 09:18:00    2017-08-22 09:18:00
115099    35546    562    2017-08-22 16:45:00    2017-08-22 16:45:00
115100    35547    775    2017-08-22 05:49:00    2017-08-22 05:49:00
115101    35547    561    2017-08-22 20:59:00    2017-08-22 20:59:00
115102    35547    732    2017-08-22 21:32:00    2017-08-22 21:32:00
115103    35547    776    2017-08-22 12:38:00    2017-08-22 12:38:00
115104    35547    771    2017-08-22 18:37:00    2017-08-22 18:37:00
115105    35548    917    2017-08-22 05:55:00    2017-08-22 05:55:00
115106    35548    680    2017-08-22 04:10:00    2017-08-22 04:10:00
115107    35548    612    2017-08-22 11:38:00    2017-08-22 11:38:00
115108    35548    643    2017-08-22 12:09:00    2017-08-22 12:09:00
115109    35548    765    2017-08-22 02:04:00    2017-08-22 02:04:00
115110    35549    851    2017-08-22 02:49:00    2017-08-22 02:49:00
115111    35549    554    2017-08-22 16:02:00    2017-08-22 16:02:00
115112    35549    502    2017-08-22 18:49:00    2017-08-22 18:49:00
115113    35549    689    2017-08-22 22:00:00    2017-08-22 22:00:00
115114    35549    864    2017-08-22 15:23:00    2017-08-22 15:23:00
115115    35550    477    2017-08-22 04:13:00    2017-08-22 04:13:00
115116    35550    616    2017-08-22 12:37:00    2017-08-22 12:37:00
115117    35550    819    2017-08-22 01:55:00    2017-08-22 01:55:00
115118    35550    618    2017-08-22 23:18:00    2017-08-22 23:18:00
115119    35550    636    2017-08-22 05:59:00    2017-08-22 05:59:00
115120    35551    618    2017-08-22 13:14:00    2017-08-22 13:14:00
115121    35551    566    2017-08-22 22:29:00    2017-08-22 22:29:00
115122    35551    785    2017-08-22 07:43:00    2017-08-22 07:43:00
115123    35551    584    2017-08-22 04:07:00    2017-08-22 04:07:00
115124    35551    498    2017-08-22 04:54:00    2017-08-22 04:54:00
115125    35552    814    2017-08-22 15:24:00    2017-08-22 15:24:00
115126    35552    699    2017-08-22 14:10:00    2017-08-22 14:10:00
115127    35552    841    2017-08-22 06:45:00    2017-08-22 06:45:00
115128    35552    464    2017-08-22 20:38:00    2017-08-22 20:38:00
115129    35552    924    2017-08-22 16:48:00    2017-08-22 16:48:00
115130    35553    920    2017-08-22 01:44:00    2017-08-22 01:44:00
115131    35553    758    2017-08-22 14:18:00    2017-08-22 14:18:00
115132    35553    866    2017-08-22 16:49:00    2017-08-22 16:49:00
115133    35553    911    2017-08-22 09:13:00    2017-08-22 09:13:00
115134    35553    650    2017-08-22 11:17:00    2017-08-22 11:17:00
115135    35554    639    2017-08-22 05:46:00    2017-08-22 05:46:00
115136    35554    638    2017-08-22 19:38:00    2017-08-22 19:38:00
115137    35554    927    2017-08-22 04:39:00    2017-08-22 04:39:00
115138    35554    860    2017-08-22 18:36:00    2017-08-22 18:36:00
115139    35554    655    2017-08-22 17:40:00    2017-08-22 17:40:00
115140    35555    874    2017-08-22 02:06:00    2017-08-22 02:06:00
115141    35555    754    2017-08-22 22:22:00    2017-08-22 22:22:00
115142    35555    909    2017-08-22 10:21:00    2017-08-22 10:21:00
115143    35555    906    2017-08-22 14:57:00    2017-08-22 14:57:00
115144    35555    759    2017-08-22 15:28:00    2017-08-22 15:28:00
115145    35556    651    2017-08-22 22:01:00    2017-08-22 22:01:00
115146    35556    753    2017-08-22 15:01:00    2017-08-22 15:01:00
115147    35556    684    2017-08-22 22:54:00    2017-08-22 22:54:00
115148    35556    778    2017-08-22 23:35:00    2017-08-22 23:35:00
115149    35556    725    2017-08-22 22:53:00    2017-08-22 22:53:00
115150    35557    918    2017-08-22 03:12:00    2017-08-22 03:12:00
115151    35557    887    2017-08-22 09:24:00    2017-08-22 09:24:00
115152    35557    899    2017-08-22 02:06:00    2017-08-22 02:06:00
115153    35557    908    2017-08-22 12:58:00    2017-08-22 12:58:00
115154    35557    628    2017-08-22 13:19:00    2017-08-22 13:19:00
115155    35558    490    2017-08-22 15:38:00    2017-08-22 15:38:00
115156    35558    872    2017-08-22 20:18:00    2017-08-22 20:18:00
115157    35558    532    2017-08-22 16:04:00    2017-08-22 16:04:00
115158    35558    486    2017-08-22 11:08:00    2017-08-22 11:08:00
115159    35558    704    2017-08-22 20:49:00    2017-08-22 20:49:00
115160    35559    844    2017-08-22 07:17:00    2017-08-22 07:17:00
115161    35559    851    2017-08-22 23:33:00    2017-08-22 23:33:00
115162    35559    820    2017-08-22 03:24:00    2017-08-22 03:24:00
115163    35559    472    2017-08-22 08:45:00    2017-08-22 08:45:00
115164    35559    645    2017-08-22 12:06:00    2017-08-22 12:06:00
115165    35560    818    2017-08-22 20:33:00    2017-08-22 20:33:00
115166    35560    539    2017-08-22 10:50:00    2017-08-22 10:50:00
115167    35560    744    2017-08-22 10:01:00    2017-08-22 10:01:00
115168    35560    876    2017-08-22 15:27:00    2017-08-22 15:27:00
115169    35560    865    2017-08-22 21:34:00    2017-08-22 21:34:00
115170    35561    516    2017-08-22 08:57:00    2017-08-22 08:57:00
115171    35561    718    2017-08-22 14:39:00    2017-08-22 14:39:00
115172    35561    672    2017-08-22 02:50:00    2017-08-22 02:50:00
115173    35561    535    2017-08-22 02:00:00    2017-08-22 02:00:00
115174    35561    922    2017-08-22 05:24:00    2017-08-22 05:24:00
115175    35562    612    2017-08-22 17:46:00    2017-08-22 17:46:00
115176    35562    528    2017-08-22 22:35:00    2017-08-22 22:35:00
115177    35562    761    2017-08-22 12:37:00    2017-08-22 12:37:00
115178    35562    810    2017-08-22 11:19:00    2017-08-22 11:19:00
115179    35562    607    2017-08-22 13:16:00    2017-08-22 13:16:00
115180    35563    499    2017-08-22 16:50:00    2017-08-22 16:50:00
115181    35563    485    2017-08-22 21:46:00    2017-08-22 21:46:00
115182    35563    582    2017-08-22 09:30:00    2017-08-22 09:30:00
115183    35563    898    2017-08-22 02:09:00    2017-08-22 02:09:00
115184    35563    490    2017-08-22 15:40:00    2017-08-22 15:40:00
115185    35564    494    2017-08-22 11:24:00    2017-08-22 11:24:00
115186    35564    717    2017-08-22 16:07:00    2017-08-22 16:07:00
115187    35564    590    2017-08-22 02:44:00    2017-08-22 02:44:00
115188    35564    897    2017-08-22 23:06:00    2017-08-22 23:06:00
115189    35564    774    2017-08-22 12:42:00    2017-08-22 12:42:00
115190    35565    760    2017-08-22 07:00:00    2017-08-22 07:00:00
115191    35565    530    2017-08-22 01:39:00    2017-08-22 01:39:00
115192    35565    794    2017-08-22 21:11:00    2017-08-22 21:11:00
115193    35565    952    2017-08-22 07:15:00    2017-08-22 07:15:00
115194    35565    738    2017-08-22 21:39:00    2017-08-22 21:39:00
115195    35566    923    2017-08-22 07:25:00    2017-08-22 07:25:00
115196    35566    516    2017-08-22 07:31:00    2017-08-22 07:31:00
115197    35566    684    2017-08-22 22:47:00    2017-08-22 22:47:00
115198    35566    745    2017-08-22 11:11:00    2017-08-22 11:11:00
115199    35566    806    2017-08-22 22:34:00    2017-08-22 22:34:00
115200    35567    753    2017-08-22 13:05:00    2017-08-22 13:05:00
115201    35567    841    2017-08-22 04:30:00    2017-08-22 04:30:00
115202    35567    524    2017-08-22 03:24:00    2017-08-22 03:24:00
115203    35567    842    2017-08-22 15:03:00    2017-08-22 15:03:00
115204    35567    554    2017-08-22 03:56:00    2017-08-22 03:56:00
115205    35568    559    2017-08-22 16:09:00    2017-08-22 16:09:00
115206    35568    772    2017-08-22 06:19:00    2017-08-22 06:19:00
115207    35568    891    2017-08-22 18:16:00    2017-08-22 18:16:00
115208    35568    531    2017-08-22 16:00:00    2017-08-22 16:00:00
115209    35568    619    2017-08-22 05:24:00    2017-08-22 05:24:00
115210    35569    656    2017-08-22 16:41:00    2017-08-22 16:41:00
115211    35569    560    2017-08-22 04:16:00    2017-08-22 04:16:00
115212    35569    716    2017-08-22 17:12:00    2017-08-22 17:12:00
115213    35569    678    2017-08-22 11:06:00    2017-08-22 11:06:00
115214    35569    614    2017-08-22 14:18:00    2017-08-22 14:18:00
115215    35570    613    2017-08-22 14:16:00    2017-08-22 14:16:00
115216    35570    763    2017-08-22 20:28:00    2017-08-22 20:28:00
115217    35570    807    2017-08-22 22:03:00    2017-08-22 22:03:00
115218    35570    635    2017-08-22 01:56:00    2017-08-22 01:56:00
115219    35570    550    2017-08-22 22:00:00    2017-08-22 22:00:00
115220    35571    914    2017-08-22 03:47:00    2017-08-22 03:47:00
115221    35571    842    2017-08-22 14:03:00    2017-08-22 14:03:00
115222    35571    800    2017-08-22 18:03:00    2017-08-22 18:03:00
115223    35571    889    2017-08-22 01:50:00    2017-08-22 01:50:00
115224    35571    721    2017-08-22 19:46:00    2017-08-22 19:46:00
115225    35572    515    2017-08-22 12:17:00    2017-08-22 12:17:00
115226    35572    898    2017-08-22 08:27:00    2017-08-22 08:27:00
115227    35572    579    2017-08-22 07:21:00    2017-08-22 07:21:00
115228    35572    566    2017-08-22 16:39:00    2017-08-22 16:39:00
115229    35572    725    2017-08-22 10:03:00    2017-08-22 10:03:00
115230    35573    725    2017-08-22 01:21:00    2017-08-22 01:21:00
115231    35573    577    2017-08-22 14:50:00    2017-08-22 14:50:00
115232    35573    526    2017-08-22 06:58:00    2017-08-22 06:58:00
115233    35573    483    2017-08-22 08:16:00    2017-08-22 08:16:00
115234    35573    907    2017-08-22 23:45:00    2017-08-22 23:45:00
115235    35574    609    2017-08-22 02:22:00    2017-08-22 02:22:00
115236    35574    857    2017-08-22 19:18:00    2017-08-22 19:18:00
115237    35574    938    2017-08-22 17:04:00    2017-08-22 17:04:00
115238    35574    531    2017-08-22 08:15:00    2017-08-22 08:15:00
115239    35574    466    2017-08-22 05:52:00    2017-08-22 05:52:00
115240    35575    560    2017-08-22 21:06:00    2017-08-22 21:06:00
115241    35575    690    2017-08-22 22:28:00    2017-08-22 22:28:00
115242    35575    760    2017-08-22 17:25:00    2017-08-22 17:25:00
115243    35575    908    2017-08-22 10:45:00    2017-08-22 10:45:00
115244    35575    857    2017-08-22 23:33:00    2017-08-22 23:33:00
115245    35576    787    2017-08-22 23:23:00    2017-08-22 23:23:00
115246    35576    554    2017-08-22 09:02:00    2017-08-22 09:02:00
115247    35576    531    2017-08-22 22:06:00    2017-08-22 22:06:00
115248    35576    633    2017-08-22 13:40:00    2017-08-22 13:40:00
115249    35576    602    2017-08-22 21:15:00    2017-08-22 21:15:00
115250    35577    698    2017-08-22 04:18:00    2017-08-22 04:18:00
115251    35577    528    2017-08-22 07:50:00    2017-08-22 07:50:00
115252    35577    765    2017-08-22 11:57:00    2017-08-22 11:57:00
115253    35577    552    2017-08-22 10:36:00    2017-08-22 10:36:00
115254    35577    726    2017-08-22 21:02:00    2017-08-22 21:02:00
115255    35578    731    2017-08-22 04:12:00    2017-08-22 04:12:00
115256    35578    594    2017-08-22 11:18:00    2017-08-22 11:18:00
115257    35578    638    2017-08-22 02:04:00    2017-08-22 02:04:00
115258    35578    486    2017-08-22 07:48:00    2017-08-22 07:48:00
115259    35578    494    2017-08-22 02:09:00    2017-08-22 02:09:00
115260    35579    908    2017-08-22 11:49:00    2017-08-22 11:49:00
115261    35579    506    2017-08-22 01:08:00    2017-08-22 01:08:00
115262    35579    909    2017-08-22 22:29:00    2017-08-22 22:29:00
115263    35579    470    2017-08-22 08:12:00    2017-08-22 08:12:00
115264    35579    841    2017-08-22 16:06:00    2017-08-22 16:06:00
115265    35580    951    2017-08-22 09:08:00    2017-08-22 09:08:00
115266    35580    668    2017-08-22 23:25:00    2017-08-22 23:25:00
115267    35580    536    2017-08-22 17:16:00    2017-08-22 17:16:00
115268    35580    694    2017-08-22 06:27:00    2017-08-22 06:27:00
115269    35580    496    2017-08-22 02:40:00    2017-08-22 02:40:00
115270    35581    470    2017-08-22 23:48:00    2017-08-22 23:48:00
115271    35581    792    2017-08-22 22:22:00    2017-08-22 22:22:00
115272    35581    947    2017-08-22 19:49:00    2017-08-22 19:49:00
115273    35581    548    2017-08-22 12:34:00    2017-08-22 12:34:00
115274    35581    704    2017-08-22 16:18:00    2017-08-22 16:18:00
115275    35582    732    2017-08-22 22:00:00    2017-08-22 22:00:00
115276    35582    592    2017-08-22 23:27:00    2017-08-22 23:27:00
115277    35582    583    2017-08-22 09:38:00    2017-08-22 09:38:00
115278    35582    594    2017-08-22 10:04:00    2017-08-22 10:04:00
115279    35582    582    2017-08-22 05:58:00    2017-08-22 05:58:00
115280    35583    931    2017-08-22 23:28:00    2017-08-22 23:28:00
115281    35583    541    2017-08-22 03:32:00    2017-08-22 03:32:00
115282    35583    555    2017-08-22 10:07:00    2017-08-22 10:07:00
115283    35583    751    2017-08-22 10:21:00    2017-08-22 10:21:00
115284    35583    684    2017-08-22 01:36:00    2017-08-22 01:36:00
115285    35584    837    2017-08-22 23:23:00    2017-08-22 23:23:00
115286    35584    472    2017-08-22 06:07:00    2017-08-22 06:07:00
115287    35584    491    2017-08-22 22:23:00    2017-08-22 22:23:00
115288    35584    810    2017-08-22 19:36:00    2017-08-22 19:36:00
115289    35584    682    2017-08-22 21:12:00    2017-08-22 21:12:00
115290    35585    709    2017-08-22 21:29:00    2017-08-22 21:29:00
115291    35585    466    2017-08-22 16:20:00    2017-08-22 16:20:00
115292    35585    795    2017-08-22 22:16:00    2017-08-22 22:16:00
115293    35585    813    2017-08-22 11:55:00    2017-08-22 11:55:00
115294    35585    703    2017-08-22 22:23:00    2017-08-22 22:23:00
115295    35586    951    2017-08-22 04:13:00    2017-08-22 04:13:00
115296    35586    817    2017-08-22 12:40:00    2017-08-22 12:40:00
115297    35586    951    2017-08-22 12:58:00    2017-08-22 12:58:00
115298    35586    733    2017-08-22 19:36:00    2017-08-22 19:36:00
115299    35586    933    2017-08-22 11:43:00    2017-08-22 11:43:00
115300    35587    675    2017-08-22 04:50:00    2017-08-22 04:50:00
115301    35587    714    2017-08-22 10:31:00    2017-08-22 10:31:00
115302    35587    697    2017-08-22 02:14:00    2017-08-22 02:14:00
115303    35587    899    2017-08-22 03:37:00    2017-08-22 03:37:00
115304    35587    555    2017-08-22 11:29:00    2017-08-22 11:29:00
115305    35588    667    2017-08-23 05:24:00    2017-08-23 05:24:00
115306    35588    873    2017-08-23 11:05:00    2017-08-23 11:05:00
115307    35588    509    2017-08-23 21:15:00    2017-08-23 21:15:00
115308    35588    939    2017-08-23 03:23:00    2017-08-23 03:23:00
115309    35588    730    2017-08-23 03:21:00    2017-08-23 03:21:00
115310    35589    900    2017-08-23 01:27:00    2017-08-23 01:27:00
115311    35589    755    2017-08-23 06:01:00    2017-08-23 06:01:00
115312    35589    764    2017-08-23 23:58:00    2017-08-23 23:58:00
115313    35589    909    2017-08-23 07:23:00    2017-08-23 07:23:00
115314    35589    785    2017-08-23 15:29:00    2017-08-23 15:29:00
115315    35590    848    2017-08-23 04:15:00    2017-08-23 04:15:00
115316    35590    930    2017-08-23 11:41:00    2017-08-23 11:41:00
115317    35590    477    2017-08-23 22:29:00    2017-08-23 22:29:00
115318    35590    879    2017-08-23 03:05:00    2017-08-23 03:05:00
115319    35590    563    2017-08-23 07:18:00    2017-08-23 07:18:00
115320    35591    782    2017-08-23 23:38:00    2017-08-23 23:38:00
115321    35591    741    2017-08-23 22:52:00    2017-08-23 22:52:00
115322    35591    961    2017-08-23 17:55:00    2017-08-23 17:55:00
115323    35591    594    2017-08-23 14:04:00    2017-08-23 14:04:00
115324    35591    899    2017-08-23 19:02:00    2017-08-23 19:02:00
115325    35592    644    2017-08-23 01:39:00    2017-08-23 01:39:00
115326    35592    775    2017-08-23 05:56:00    2017-08-23 05:56:00
115327    35592    880    2017-08-23 23:09:00    2017-08-23 23:09:00
115328    35592    474    2017-08-23 12:12:00    2017-08-23 12:12:00
115329    35592    463    2017-08-23 10:51:00    2017-08-23 10:51:00
115330    35593    587    2017-08-23 16:48:00    2017-08-23 16:48:00
115331    35593    729    2017-08-23 16:51:00    2017-08-23 16:51:00
115332    35593    908    2017-08-23 08:41:00    2017-08-23 08:41:00
115333    35593    859    2017-08-23 21:18:00    2017-08-23 21:18:00
115334    35593    603    2017-08-23 14:27:00    2017-08-23 14:27:00
115335    35594    892    2017-08-23 22:19:00    2017-08-23 22:19:00
115336    35594    679    2017-08-23 13:02:00    2017-08-23 13:02:00
115337    35594    801    2017-08-23 18:41:00    2017-08-23 18:41:00
115338    35594    566    2017-08-23 23:06:00    2017-08-23 23:06:00
115339    35594    926    2017-08-23 16:35:00    2017-08-23 16:35:00
115340    35595    678    2017-08-23 03:58:00    2017-08-23 03:58:00
115341    35595    533    2017-08-23 23:59:00    2017-08-23 23:59:00
115342    35595    524    2017-08-23 16:11:00    2017-08-23 16:11:00
115343    35595    952    2017-08-23 02:51:00    2017-08-23 02:51:00
115344    35595    514    2017-08-23 18:18:00    2017-08-23 18:18:00
115345    35596    941    2017-08-23 08:37:00    2017-08-23 08:37:00
115346    35596    720    2017-08-23 11:59:00    2017-08-23 11:59:00
115347    35596    684    2017-08-23 23:53:00    2017-08-23 23:53:00
115348    35596    939    2017-08-23 12:40:00    2017-08-23 12:40:00
115349    35596    817    2017-08-23 17:38:00    2017-08-23 17:38:00
115350    35597    502    2017-08-23 11:10:00    2017-08-23 11:10:00
115351    35597    907    2017-08-23 10:38:00    2017-08-23 10:38:00
115352    35597    928    2017-08-23 12:00:00    2017-08-23 12:00:00
115353    35597    853    2017-08-23 11:28:00    2017-08-23 11:28:00
115354    35597    854    2017-08-23 23:57:00    2017-08-23 23:57:00
115355    35598    558    2017-08-23 18:19:00    2017-08-23 18:19:00
115356    35598    821    2017-08-23 22:38:00    2017-08-23 22:38:00
115357    35598    890    2017-08-23 01:08:00    2017-08-23 01:08:00
115358    35598    817    2017-08-23 17:11:00    2017-08-23 17:11:00
115359    35598    893    2017-08-23 04:12:00    2017-08-23 04:12:00
115360    35599    895    2017-08-23 03:00:00    2017-08-23 03:00:00
115361    35599    654    2017-08-23 07:21:00    2017-08-23 07:21:00
115362    35599    465    2017-08-23 11:03:00    2017-08-23 11:03:00
115363    35599    622    2017-08-23 07:45:00    2017-08-23 07:45:00
115364    35599    922    2017-08-23 23:26:00    2017-08-23 23:26:00
115365    35600    694    2017-08-23 05:09:00    2017-08-23 05:09:00
115366    35600    551    2017-08-23 14:02:00    2017-08-23 14:02:00
115367    35600    568    2017-08-23 06:49:00    2017-08-23 06:49:00
115368    35600    870    2017-08-23 06:25:00    2017-08-23 06:25:00
115369    35600    685    2017-08-23 10:55:00    2017-08-23 10:55:00
115370    35601    876    2017-08-23 16:00:00    2017-08-23 16:00:00
115371    35601    699    2017-08-23 22:15:00    2017-08-23 22:15:00
115372    35601    875    2017-08-23 18:12:00    2017-08-23 18:12:00
115373    35601    476    2017-08-23 09:59:00    2017-08-23 09:59:00
115374    35601    941    2017-08-23 13:32:00    2017-08-23 13:32:00
115375    35602    929    2017-08-23 20:01:00    2017-08-23 20:01:00
115376    35602    850    2017-08-23 12:42:00    2017-08-23 12:42:00
115377    35602    819    2017-08-23 01:53:00    2017-08-23 01:53:00
115378    35602    709    2017-08-23 04:42:00    2017-08-23 04:42:00
115379    35602    870    2017-08-23 08:00:00    2017-08-23 08:00:00
115380    35603    716    2017-08-23 21:56:00    2017-08-23 21:56:00
115381    35603    504    2017-08-23 13:50:00    2017-08-23 13:50:00
115382    35603    825    2017-08-23 17:51:00    2017-08-23 17:51:00
115383    35603    960    2017-08-23 04:18:00    2017-08-23 04:18:00
115384    35603    609    2017-08-23 08:50:00    2017-08-23 08:50:00
115385    35604    516    2017-08-23 02:30:00    2017-08-23 02:30:00
115386    35604    761    2017-08-23 06:00:00    2017-08-23 06:00:00
115387    35604    549    2017-08-23 06:32:00    2017-08-23 06:32:00
115388    35604    938    2017-08-23 02:27:00    2017-08-23 02:27:00
115389    35604    949    2017-08-23 02:36:00    2017-08-23 02:36:00
115390    35605    736    2017-08-23 06:50:00    2017-08-23 06:50:00
115391    35605    488    2017-08-23 14:34:00    2017-08-23 14:34:00
115392    35605    772    2017-08-23 09:19:00    2017-08-23 09:19:00
115393    35605    732    2017-08-23 18:11:00    2017-08-23 18:11:00
115394    35605    821    2017-08-23 17:48:00    2017-08-23 17:48:00
115395    35606    861    2017-08-23 20:16:00    2017-08-23 20:16:00
115396    35606    612    2017-08-23 11:34:00    2017-08-23 11:34:00
115397    35606    882    2017-08-23 13:57:00    2017-08-23 13:57:00
115398    35606    605    2017-08-23 12:53:00    2017-08-23 12:53:00
115399    35606    664    2017-08-23 16:28:00    2017-08-23 16:28:00
115400    35607    518    2017-08-23 13:10:00    2017-08-23 13:10:00
115401    35607    667    2017-08-23 05:27:00    2017-08-23 05:27:00
115402    35607    513    2017-08-23 02:29:00    2017-08-23 02:29:00
115403    35607    472    2017-08-23 14:06:00    2017-08-23 14:06:00
115404    35607    855    2017-08-23 19:51:00    2017-08-23 19:51:00
115405    35608    584    2017-08-23 14:00:00    2017-08-23 14:00:00
115406    35608    669    2017-08-23 19:19:00    2017-08-23 19:19:00
115407    35608    876    2017-08-23 11:38:00    2017-08-23 11:38:00
115408    35608    774    2017-08-23 09:19:00    2017-08-23 09:19:00
115409    35608    688    2017-08-23 13:56:00    2017-08-23 13:56:00
115410    35609    788    2017-08-23 23:32:00    2017-08-23 23:32:00
115411    35609    522    2017-08-23 12:03:00    2017-08-23 12:03:00
115412    35609    658    2017-08-23 10:01:00    2017-08-23 10:01:00
115413    35609    760    2017-08-23 22:09:00    2017-08-23 22:09:00
115414    35609    469    2017-08-23 02:43:00    2017-08-23 02:43:00
115415    35610    507    2017-08-23 01:02:00    2017-08-23 01:02:00
115416    35610    854    2017-08-23 15:48:00    2017-08-23 15:48:00
115417    35610    529    2017-08-23 15:25:00    2017-08-23 15:25:00
115418    35610    915    2017-08-23 02:33:00    2017-08-23 02:33:00
115419    35610    581    2017-08-23 12:05:00    2017-08-23 12:05:00
115420    35611    533    2017-08-23 05:13:00    2017-08-23 05:13:00
115421    35611    623    2017-08-23 05:15:00    2017-08-23 05:15:00
115422    35611    664    2017-08-23 09:58:00    2017-08-23 09:58:00
115423    35611    834    2017-08-23 17:25:00    2017-08-23 17:25:00
115424    35611    870    2017-08-23 20:14:00    2017-08-23 20:14:00
115425    35612    678    2017-08-23 05:11:00    2017-08-23 05:11:00
115426    35612    726    2017-08-23 06:38:00    2017-08-23 06:38:00
115427    35612    869    2017-08-23 02:12:00    2017-08-23 02:12:00
115428    35612    855    2017-08-23 16:34:00    2017-08-23 16:34:00
115429    35612    677    2017-08-23 09:12:00    2017-08-23 09:12:00
115430    35613    871    2017-08-23 19:27:00    2017-08-23 19:27:00
115431    35613    539    2017-08-23 13:58:00    2017-08-23 13:58:00
115432    35613    502    2017-08-23 02:00:00    2017-08-23 02:00:00
115433    35613    780    2017-08-23 22:48:00    2017-08-23 22:48:00
115434    35613    878    2017-08-23 14:31:00    2017-08-23 14:31:00
115435    35614    693    2017-08-23 14:58:00    2017-08-23 14:58:00
115436    35614    553    2017-08-23 19:13:00    2017-08-23 19:13:00
115437    35614    841    2017-08-23 20:00:00    2017-08-23 20:00:00
115438    35614    667    2017-08-23 10:37:00    2017-08-23 10:37:00
115439    35614    897    2017-08-23 12:26:00    2017-08-23 12:26:00
115440    35615    549    2017-08-23 22:49:00    2017-08-23 22:49:00
115441    35615    840    2017-08-23 07:59:00    2017-08-23 07:59:00
115442    35615    495    2017-08-23 12:41:00    2017-08-23 12:41:00
115443    35615    737    2017-08-23 23:51:00    2017-08-23 23:51:00
115444    35615    754    2017-08-23 08:51:00    2017-08-23 08:51:00
115445    35616    774    2017-08-23 01:36:00    2017-08-23 01:36:00
115446    35616    844    2017-08-23 14:29:00    2017-08-23 14:29:00
115447    35616    589    2017-08-23 23:08:00    2017-08-23 23:08:00
115448    35616    746    2017-08-23 03:20:00    2017-08-23 03:20:00
115449    35616    860    2017-08-23 20:52:00    2017-08-23 20:52:00
115450    35617    729    2017-08-23 08:59:00    2017-08-23 08:59:00
115451    35617    595    2017-08-23 13:28:00    2017-08-23 13:28:00
115452    35617    907    2017-08-23 01:58:00    2017-08-23 01:58:00
115453    35617    490    2017-08-23 13:09:00    2017-08-23 13:09:00
115454    35617    777    2017-08-23 10:36:00    2017-08-23 10:36:00
115455    35618    904    2017-08-23 09:52:00    2017-08-23 09:52:00
115456    35618    617    2017-08-23 03:12:00    2017-08-23 03:12:00
115457    35618    625    2017-08-23 17:34:00    2017-08-23 17:34:00
115458    35618    878    2017-08-23 18:06:00    2017-08-23 18:06:00
115459    35618    883    2017-08-23 19:40:00    2017-08-23 19:40:00
115460    35619    471    2017-08-23 23:25:00    2017-08-23 23:25:00
115461    35619    765    2017-08-23 09:08:00    2017-08-23 09:08:00
115462    35619    591    2017-08-23 11:54:00    2017-08-23 11:54:00
115463    35619    680    2017-08-23 21:59:00    2017-08-23 21:59:00
115464    35619    507    2017-08-23 17:26:00    2017-08-23 17:26:00
115465    35620    517    2017-08-23 22:26:00    2017-08-23 22:26:00
115466    35620    532    2017-08-23 08:52:00    2017-08-23 08:52:00
115467    35620    658    2017-08-23 14:58:00    2017-08-23 14:58:00
115468    35620    908    2017-08-23 13:32:00    2017-08-23 13:32:00
115469    35620    720    2017-08-23 14:53:00    2017-08-23 14:53:00
115470    35621    487    2017-08-23 01:53:00    2017-08-23 01:53:00
115471    35621    728    2017-08-23 22:44:00    2017-08-23 22:44:00
115472    35621    538    2017-08-23 07:23:00    2017-08-23 07:23:00
115473    35621    617    2017-08-23 16:57:00    2017-08-23 16:57:00
115474    35621    478    2017-08-23 03:08:00    2017-08-23 03:08:00
115475    35622    737    2017-08-23 06:31:00    2017-08-23 06:31:00
115476    35622    731    2017-08-23 03:49:00    2017-08-23 03:49:00
115477    35622    491    2017-08-23 08:07:00    2017-08-23 08:07:00
115478    35622    639    2017-08-23 05:57:00    2017-08-23 05:57:00
115479    35622    818    2017-08-23 06:30:00    2017-08-23 06:30:00
115480    35623    931    2017-08-23 17:33:00    2017-08-23 17:33:00
115481    35623    802    2017-08-23 19:41:00    2017-08-23 19:41:00
115482    35623    756    2017-08-23 12:12:00    2017-08-23 12:12:00
115483    35623    577    2017-08-23 18:15:00    2017-08-23 18:15:00
115484    35623    704    2017-08-23 09:22:00    2017-08-23 09:22:00
115485    35624    905    2017-08-23 06:04:00    2017-08-23 06:04:00
115486    35624    587    2017-08-23 04:52:00    2017-08-23 04:52:00
115487    35624    610    2017-08-23 15:31:00    2017-08-23 15:31:00
115488    35624    485    2017-08-23 16:37:00    2017-08-23 16:37:00
115489    35624    921    2017-08-23 05:09:00    2017-08-23 05:09:00
115490    35625    475    2017-08-23 03:44:00    2017-08-23 03:44:00
115491    35625    519    2017-08-23 11:55:00    2017-08-23 11:55:00
115492    35625    956    2017-08-23 04:42:00    2017-08-23 04:42:00
115493    35625    486    2017-08-23 06:18:00    2017-08-23 06:18:00
115494    35625    617    2017-08-23 09:22:00    2017-08-23 09:22:00
115495    35626    546    2017-08-23 14:41:00    2017-08-23 14:41:00
115496    35626    935    2017-08-23 20:00:00    2017-08-23 20:00:00
115497    35626    764    2017-08-23 12:43:00    2017-08-23 12:43:00
115498    35626    863    2017-08-23 21:31:00    2017-08-23 21:31:00
115499    35626    560    2017-08-23 04:06:00    2017-08-23 04:06:00
115500    35627    705    2017-08-23 09:30:00    2017-08-23 09:30:00
115501    35627    730    2017-08-23 16:45:00    2017-08-23 16:45:00
115502    35627    501    2017-08-23 06:53:00    2017-08-23 06:53:00
115503    35627    535    2017-08-23 04:32:00    2017-08-23 04:32:00
115504    35627    668    2017-08-23 11:36:00    2017-08-23 11:36:00
115505    35628    775    2017-08-23 06:22:00    2017-08-23 06:22:00
115506    35628    477    2017-08-23 21:21:00    2017-08-23 21:21:00
115507    35628    737    2017-08-23 11:50:00    2017-08-23 11:50:00
115508    35628    528    2017-08-23 22:34:00    2017-08-23 22:34:00
115509    35628    493    2017-08-23 06:44:00    2017-08-23 06:44:00
115510    35629    893    2017-08-23 22:32:00    2017-08-23 22:32:00
115511    35629    934    2017-08-23 08:17:00    2017-08-23 08:17:00
115512    35629    950    2017-08-23 06:47:00    2017-08-23 06:47:00
115513    35629    709    2017-08-23 07:47:00    2017-08-23 07:47:00
115514    35629    643    2017-08-23 17:18:00    2017-08-23 17:18:00
115515    35630    732    2017-08-23 16:00:00    2017-08-23 16:00:00
115516    35630    839    2017-08-23 14:06:00    2017-08-23 14:06:00
115517    35630    886    2017-08-23 10:55:00    2017-08-23 10:55:00
115518    35630    638    2017-08-23 07:34:00    2017-08-23 07:34:00
115519    35630    767    2017-08-23 20:44:00    2017-08-23 20:44:00
115520    35631    506    2017-08-23 06:26:00    2017-08-23 06:26:00
115521    35631    712    2017-08-23 20:41:00    2017-08-23 20:41:00
115522    35631    658    2017-08-23 02:13:00    2017-08-23 02:13:00
115523    35631    651    2017-08-23 15:25:00    2017-08-23 15:25:00
115524    35631    918    2017-08-23 04:59:00    2017-08-23 04:59:00
115525    35632    946    2017-08-23 16:04:00    2017-08-23 16:04:00
115526    35632    632    2017-08-23 06:31:00    2017-08-23 06:31:00
115527    35632    736    2017-08-23 20:05:00    2017-08-23 20:05:00
115528    35632    885    2017-08-23 10:02:00    2017-08-23 10:02:00
115529    35632    858    2017-08-23 18:17:00    2017-08-23 18:17:00
115530    35633    695    2017-08-23 13:01:00    2017-08-23 13:01:00
115531    35633    796    2017-08-23 22:47:00    2017-08-23 22:47:00
115532    35633    834    2017-08-23 16:39:00    2017-08-23 16:39:00
115533    35633    557    2017-08-23 08:28:00    2017-08-23 08:28:00
115534    35633    840    2017-08-23 19:44:00    2017-08-23 19:44:00
115535    35634    506    2017-08-23 16:59:00    2017-08-23 16:59:00
115536    35634    812    2017-08-23 20:23:00    2017-08-23 20:23:00
115537    35634    711    2017-08-23 13:30:00    2017-08-23 13:30:00
115538    35634    524    2017-08-23 12:14:00    2017-08-23 12:14:00
115539    35634    870    2017-08-23 15:29:00    2017-08-23 15:29:00
115540    35635    587    2017-08-23 10:08:00    2017-08-23 10:08:00
115541    35635    717    2017-08-23 14:13:00    2017-08-23 14:13:00
115542    35635    768    2017-08-23 20:25:00    2017-08-23 20:25:00
115543    35635    706    2017-08-23 10:10:00    2017-08-23 10:10:00
115544    35635    660    2017-08-23 11:32:00    2017-08-23 11:32:00
115545    35636    954    2017-08-24 05:22:00    2017-08-24 05:22:00
115546    35636    734    2017-08-24 22:17:00    2017-08-24 22:17:00
115547    35636    847    2017-08-24 07:17:00    2017-08-24 07:17:00
115548    35636    762    2017-08-24 11:16:00    2017-08-24 11:16:00
115549    35636    483    2017-08-24 20:53:00    2017-08-24 20:53:00
115550    35637    893    2017-08-24 01:49:00    2017-08-24 01:49:00
115551    35637    515    2017-08-24 04:37:00    2017-08-24 04:37:00
115552    35637    631    2017-08-24 23:17:00    2017-08-24 23:17:00
115553    35637    797    2017-08-24 03:50:00    2017-08-24 03:50:00
115554    35637    541    2017-08-24 15:02:00    2017-08-24 15:02:00
115555    35638    810    2017-08-24 22:06:00    2017-08-24 22:06:00
115556    35638    812    2017-08-24 05:19:00    2017-08-24 05:19:00
115557    35638    662    2017-08-24 05:41:00    2017-08-24 05:41:00
115558    35638    915    2017-08-24 14:59:00    2017-08-24 14:59:00
115559    35638    710    2017-08-24 22:06:00    2017-08-24 22:06:00
115560    35639    490    2017-08-24 19:09:00    2017-08-24 19:09:00
115561    35639    635    2017-08-24 17:12:00    2017-08-24 17:12:00
115562    35639    603    2017-08-24 15:30:00    2017-08-24 15:30:00
115563    35639    885    2017-08-24 19:12:00    2017-08-24 19:12:00
115564    35639    835    2017-08-24 09:47:00    2017-08-24 09:47:00
115565    35640    472    2017-08-24 12:21:00    2017-08-24 12:21:00
115566    35640    870    2017-08-24 03:54:00    2017-08-24 03:54:00
115567    35640    538    2017-08-24 15:34:00    2017-08-24 15:34:00
115568    35640    686    2017-08-24 18:40:00    2017-08-24 18:40:00
115569    35640    591    2017-08-24 02:08:00    2017-08-24 02:08:00
115570    35641    795    2017-08-24 09:50:00    2017-08-24 09:50:00
115571    35641    677    2017-08-24 02:02:00    2017-08-24 02:02:00
115572    35641    661    2017-08-24 22:44:00    2017-08-24 22:44:00
115573    35641    554    2017-08-24 21:34:00    2017-08-24 21:34:00
115574    35641    779    2017-08-24 10:43:00    2017-08-24 10:43:00
115575    35642    826    2017-08-24 12:14:00    2017-08-24 12:14:00
115576    35642    795    2017-08-24 10:13:00    2017-08-24 10:13:00
115577    35642    495    2017-08-24 14:36:00    2017-08-24 14:36:00
115578    35642    722    2017-08-24 10:24:00    2017-08-24 10:24:00
115579    35642    603    2017-08-24 17:43:00    2017-08-24 17:43:00
115580    35643    589    2017-08-24 01:53:00    2017-08-24 01:53:00
115581    35643    508    2017-08-24 16:14:00    2017-08-24 16:14:00
115582    35643    742    2017-08-24 02:48:00    2017-08-24 02:48:00
115583    35643    536    2017-08-24 22:10:00    2017-08-24 22:10:00
115584    35643    901    2017-08-24 21:27:00    2017-08-24 21:27:00
115585    35644    695    2017-08-24 16:00:00    2017-08-24 16:00:00
115586    35644    935    2017-08-24 13:59:00    2017-08-24 13:59:00
115587    35644    700    2017-08-24 01:24:00    2017-08-24 01:24:00
115588    35644    849    2017-08-24 03:36:00    2017-08-24 03:36:00
115589    35644    749    2017-08-24 15:41:00    2017-08-24 15:41:00
115590    35645    676    2017-08-24 21:53:00    2017-08-24 21:53:00
115591    35645    533    2017-08-24 03:28:00    2017-08-24 03:28:00
115592    35645    905    2017-08-24 11:55:00    2017-08-24 11:55:00
115593    35645    596    2017-08-24 14:07:00    2017-08-24 14:07:00
115594    35645    933    2017-08-24 16:36:00    2017-08-24 16:36:00
115595    35646    463    2017-08-24 11:46:00    2017-08-24 11:46:00
115596    35646    732    2017-08-24 05:21:00    2017-08-24 05:21:00
115597    35646    628    2017-08-24 20:38:00    2017-08-24 20:38:00
115598    35646    887    2017-08-24 10:37:00    2017-08-24 10:37:00
115599    35646    521    2017-08-24 21:36:00    2017-08-24 21:36:00
115600    35647    637    2017-08-24 17:13:00    2017-08-24 17:13:00
115601    35647    583    2017-08-24 03:54:00    2017-08-24 03:54:00
115602    35647    580    2017-08-24 01:04:00    2017-08-24 01:04:00
115603    35647    854    2017-08-24 01:47:00    2017-08-24 01:47:00
115604    35647    501    2017-08-24 16:08:00    2017-08-24 16:08:00
115605    35648    862    2017-08-24 01:20:00    2017-08-24 01:20:00
115606    35648    508    2017-08-24 16:32:00    2017-08-24 16:32:00
115607    35648    594    2017-08-24 19:43:00    2017-08-24 19:43:00
115608    35648    905    2017-08-24 03:34:00    2017-08-24 03:34:00
115609    35648    923    2017-08-24 15:48:00    2017-08-24 15:48:00
115610    35649    874    2017-08-24 09:48:00    2017-08-24 09:48:00
115611    35649    804    2017-08-24 08:45:00    2017-08-24 08:45:00
115612    35649    680    2017-08-24 08:08:00    2017-08-24 08:08:00
115613    35649    651    2017-08-24 08:19:00    2017-08-24 08:19:00
115614    35649    584    2017-08-24 08:26:00    2017-08-24 08:26:00
115615    35650    670    2017-08-24 21:58:00    2017-08-24 21:58:00
115616    35650    824    2017-08-24 13:19:00    2017-08-24 13:19:00
115617    35650    822    2017-08-24 12:16:00    2017-08-24 12:16:00
115618    35650    524    2017-08-24 03:32:00    2017-08-24 03:32:00
115619    35650    897    2017-08-24 20:00:00    2017-08-24 20:00:00
115620    35651    515    2017-08-24 06:20:00    2017-08-24 06:20:00
115621    35651    752    2017-08-24 11:11:00    2017-08-24 11:11:00
115622    35651    548    2017-08-24 22:42:00    2017-08-24 22:42:00
115623    35651    508    2017-08-24 16:15:00    2017-08-24 16:15:00
115624    35651    822    2017-08-24 21:47:00    2017-08-24 21:47:00
115625    35652    790    2017-08-24 05:13:00    2017-08-24 05:13:00
115626    35652    514    2017-08-24 22:08:00    2017-08-24 22:08:00
115627    35652    949    2017-08-24 16:23:00    2017-08-24 16:23:00
115628    35652    525    2017-08-24 22:49:00    2017-08-24 22:49:00
115629    35652    770    2017-08-24 07:48:00    2017-08-24 07:48:00
115630    35653    842    2017-08-24 07:37:00    2017-08-24 07:37:00
115631    35653    805    2017-08-24 15:32:00    2017-08-24 15:32:00
115632    35653    501    2017-08-24 21:05:00    2017-08-24 21:05:00
115633    35653    522    2017-08-24 06:39:00    2017-08-24 06:39:00
115634    35653    808    2017-08-24 01:39:00    2017-08-24 01:39:00
115635    35654    760    2017-08-24 01:41:00    2017-08-24 01:41:00
115636    35654    846    2017-08-24 12:44:00    2017-08-24 12:44:00
115637    35654    872    2017-08-24 05:18:00    2017-08-24 05:18:00
115638    35654    787    2017-08-24 21:43:00    2017-08-24 21:43:00
115639    35654    873    2017-08-24 17:20:00    2017-08-24 17:20:00
115640    35655    862    2017-08-24 21:50:00    2017-08-24 21:50:00
115641    35655    552    2017-08-24 12:59:00    2017-08-24 12:59:00
115642    35655    842    2017-08-24 20:37:00    2017-08-24 20:37:00
115643    35655    929    2017-08-24 15:01:00    2017-08-24 15:01:00
115644    35655    544    2017-08-24 07:33:00    2017-08-24 07:33:00
115645    35656    734    2017-08-24 11:39:00    2017-08-24 11:39:00
115646    35656    467    2017-08-24 20:22:00    2017-08-24 20:22:00
115647    35656    620    2017-08-24 22:28:00    2017-08-24 22:28:00
115648    35656    819    2017-08-24 09:00:00    2017-08-24 09:00:00
115649    35656    922    2017-08-24 16:54:00    2017-08-24 16:54:00
115650    35657    916    2017-08-24 07:33:00    2017-08-24 07:33:00
115651    35657    943    2017-08-24 17:07:00    2017-08-24 17:07:00
115652    35657    836    2017-08-24 02:07:00    2017-08-24 02:07:00
115653    35657    927    2017-08-24 07:56:00    2017-08-24 07:56:00
115654    35657    831    2017-08-24 10:16:00    2017-08-24 10:16:00
115655    35658    863    2017-08-24 18:06:00    2017-08-24 18:06:00
115656    35658    801    2017-08-24 13:00:00    2017-08-24 13:00:00
115657    35658    737    2017-08-24 16:35:00    2017-08-24 16:35:00
115658    35658    894    2017-08-24 11:05:00    2017-08-24 11:05:00
115659    35658    798    2017-08-24 07:16:00    2017-08-24 07:16:00
115660    35659    946    2017-08-24 17:11:00    2017-08-24 17:11:00
115661    35659    697    2017-08-24 16:23:00    2017-08-24 16:23:00
115662    35659    694    2017-08-24 15:58:00    2017-08-24 15:58:00
115663    35659    922    2017-08-24 04:48:00    2017-08-24 04:48:00
115664    35659    921    2017-08-24 15:59:00    2017-08-24 15:59:00
115665    35660    729    2017-08-24 04:35:00    2017-08-24 04:35:00
115666    35660    751    2017-08-24 14:01:00    2017-08-24 14:01:00
115667    35660    464    2017-08-24 18:49:00    2017-08-24 18:49:00
115668    35660    659    2017-08-24 19:59:00    2017-08-24 19:59:00
115669    35660    939    2017-08-24 11:00:00    2017-08-24 11:00:00
115670    35661    774    2017-08-24 04:16:00    2017-08-24 04:16:00
115671    35661    697    2017-08-24 06:18:00    2017-08-24 06:18:00
115672    35661    884    2017-08-24 14:12:00    2017-08-24 14:12:00
115673    35661    714    2017-08-24 07:36:00    2017-08-24 07:36:00
115674    35661    730    2017-08-24 22:24:00    2017-08-24 22:24:00
115675    35662    864    2017-08-24 08:01:00    2017-08-24 08:01:00
115676    35662    775    2017-08-25 00:00:00    2017-08-25 00:00:00
115677    35662    556    2017-08-24 22:47:00    2017-08-24 22:47:00
115678    35662    488    2017-08-24 20:19:00    2017-08-24 20:19:00
115679    35662    815    2017-08-24 01:29:00    2017-08-24 01:29:00
115680    35663    827    2017-08-24 12:11:00    2017-08-24 12:11:00
115681    35663    666    2017-08-24 04:52:00    2017-08-24 04:52:00
115682    35663    857    2017-08-24 05:33:00    2017-08-24 05:33:00
115683    35663    745    2017-08-24 02:59:00    2017-08-24 02:59:00
115684    35663    463    2017-08-24 01:23:00    2017-08-24 01:23:00
115685    35664    547    2017-08-24 01:36:00    2017-08-24 01:36:00
115686    35664    660    2017-08-24 01:13:00    2017-08-24 01:13:00
115687    35664    672    2017-08-24 09:12:00    2017-08-24 09:12:00
115688    35664    662    2017-08-24 04:39:00    2017-08-24 04:39:00
115689    35664    944    2017-08-24 05:51:00    2017-08-24 05:51:00
115690    35665    775    2017-08-24 03:42:00    2017-08-24 03:42:00
115691    35665    660    2017-08-24 05:00:00    2017-08-24 05:00:00
115692    35665    466    2017-08-24 06:25:00    2017-08-24 06:25:00
115693    35665    913    2017-08-24 05:40:00    2017-08-24 05:40:00
115694    35665    537    2017-08-24 10:07:00    2017-08-24 10:07:00
115695    35666    914    2017-08-24 18:37:00    2017-08-24 18:37:00
115696    35666    853    2017-08-24 11:08:00    2017-08-24 11:08:00
115697    35666    555    2017-08-24 07:36:00    2017-08-24 07:36:00
115698    35666    885    2017-08-24 20:35:00    2017-08-24 20:35:00
115699    35666    656    2017-08-24 19:54:00    2017-08-24 19:54:00
115700    35667    784    2017-08-24 08:56:00    2017-08-24 08:56:00
115701    35667    616    2017-08-24 03:21:00    2017-08-24 03:21:00
115702    35667    911    2017-08-24 21:45:00    2017-08-24 21:45:00
115703    35667    678    2017-08-24 08:07:00    2017-08-24 08:07:00
115704    35667    740    2017-08-24 20:06:00    2017-08-24 20:06:00
115705    35668    722    2017-08-24 19:07:00    2017-08-24 19:07:00
115706    35668    521    2017-08-24 02:11:00    2017-08-24 02:11:00
115707    35668    482    2017-08-24 10:12:00    2017-08-24 10:12:00
115708    35668    594    2017-08-24 06:57:00    2017-08-24 06:57:00
115709    35668    561    2017-08-24 05:04:00    2017-08-24 05:04:00
115710    35669    865    2017-08-24 19:55:00    2017-08-24 19:55:00
115711    35669    761    2017-08-24 15:00:00    2017-08-24 15:00:00
115712    35669    789    2017-08-24 12:16:00    2017-08-24 12:16:00
115713    35669    821    2017-08-24 01:16:00    2017-08-24 01:16:00
115714    35669    490    2017-08-24 18:21:00    2017-08-24 18:21:00
115715    35670    952    2017-08-24 04:40:00    2017-08-24 04:40:00
115716    35670    519    2017-08-24 20:46:00    2017-08-24 20:46:00
115717    35670    626    2017-08-24 13:27:00    2017-08-24 13:27:00
115718    35670    753    2017-08-24 17:59:00    2017-08-24 17:59:00
115719    35670    609    2017-08-24 01:52:00    2017-08-24 01:52:00
115720    35671    583    2017-08-24 01:06:00    2017-08-24 01:06:00
115721    35671    703    2017-08-24 23:14:00    2017-08-24 23:14:00
115722    35671    870    2017-08-24 14:47:00    2017-08-24 14:47:00
115723    35671    717    2017-08-24 20:21:00    2017-08-24 20:21:00
115724    35671    818    2017-08-24 12:48:00    2017-08-24 12:48:00
115725    35672    653    2017-08-24 23:51:00    2017-08-24 23:51:00
115726    35672    524    2017-08-24 13:15:00    2017-08-24 13:15:00
115727    35672    498    2017-08-24 22:40:00    2017-08-24 22:40:00
115728    35672    665    2017-08-24 13:35:00    2017-08-24 13:35:00
115729    35672    798    2017-08-24 20:19:00    2017-08-24 20:19:00
115730    35673    470    2017-08-24 16:43:00    2017-08-24 16:43:00
115731    35673    726    2017-08-24 21:29:00    2017-08-24 21:29:00
115732    35673    710    2017-08-24 09:16:00    2017-08-24 09:16:00
115733    35673    654    2017-08-24 22:33:00    2017-08-24 22:33:00
115734    35673    642    2017-08-24 04:28:00    2017-08-24 04:28:00
115735    35674    712    2017-08-24 12:04:00    2017-08-24 12:04:00
115736    35674    814    2017-08-24 03:38:00    2017-08-24 03:38:00
115737    35674    614    2017-08-24 12:38:00    2017-08-24 12:38:00
115738    35674    907    2017-08-24 07:07:00    2017-08-24 07:07:00
115739    35674    705    2017-08-24 11:11:00    2017-08-24 11:11:00
115740    35675    476    2017-08-24 13:59:00    2017-08-24 13:59:00
115741    35675    756    2017-08-24 07:29:00    2017-08-24 07:29:00
115742    35675    700    2017-08-24 06:58:00    2017-08-24 06:58:00
115743    35675    769    2017-08-24 15:07:00    2017-08-24 15:07:00
115744    35675    912    2017-08-24 20:02:00    2017-08-24 20:02:00
115745    35676    838    2017-08-24 07:25:00    2017-08-24 07:25:00
115746    35676    476    2017-08-24 11:38:00    2017-08-24 11:38:00
115747    35676    788    2017-08-24 04:59:00    2017-08-24 04:59:00
115748    35676    842    2017-08-24 07:23:00    2017-08-24 07:23:00
115749    35676    660    2017-08-24 03:58:00    2017-08-24 03:58:00
115750    35677    852    2017-08-24 13:11:00    2017-08-24 13:11:00
115751    35677    663    2017-08-24 17:04:00    2017-08-24 17:04:00
115752    35677    921    2017-08-24 11:42:00    2017-08-24 11:42:00
115753    35677    722    2017-08-24 20:09:00    2017-08-24 20:09:00
115754    35677    576    2017-08-24 18:23:00    2017-08-24 18:23:00
115755    35678    873    2017-08-24 13:13:00    2017-08-24 13:13:00
115756    35678    613    2017-08-24 09:42:00    2017-08-24 09:42:00
115757    35678    863    2017-08-24 04:01:00    2017-08-24 04:01:00
115758    35678    640    2017-08-24 22:20:00    2017-08-24 22:20:00
115759    35678    748    2017-08-24 07:14:00    2017-08-24 07:14:00
115760    35679    629    2017-08-24 20:59:00    2017-08-24 20:59:00
115761    35679    900    2017-08-24 19:19:00    2017-08-24 19:19:00
115762    35679    826    2017-08-24 21:35:00    2017-08-24 21:35:00
115763    35679    612    2017-08-24 13:12:00    2017-08-24 13:12:00
115764    35679    522    2017-08-24 12:56:00    2017-08-24 12:56:00
115765    35680    872    2017-08-24 16:04:00    2017-08-24 16:04:00
115766    35680    933    2017-08-24 01:30:00    2017-08-24 01:30:00
115767    35680    560    2017-08-24 10:53:00    2017-08-24 10:53:00
115768    35680    768    2017-08-24 20:44:00    2017-08-24 20:44:00
115769    35680    540    2017-08-24 09:11:00    2017-08-24 09:11:00
115770    35681    606    2017-08-24 05:00:00    2017-08-24 05:00:00
115771    35681    688    2017-08-24 17:19:00    2017-08-24 17:19:00
115772    35681    922    2017-08-24 01:42:00    2017-08-24 01:42:00
115773    35681    552    2017-08-24 22:36:00    2017-08-24 22:36:00
115774    35681    842    2017-08-24 20:07:00    2017-08-24 20:07:00
115775    35682    664    2017-08-24 03:40:00    2017-08-24 03:40:00
115776    35682    800    2017-08-24 01:09:00    2017-08-24 01:09:00
115777    35682    933    2017-08-24 19:15:00    2017-08-24 19:15:00
115778    35682    705    2017-08-24 04:03:00    2017-08-24 04:03:00
115779    35682    776    2017-08-24 08:13:00    2017-08-24 08:13:00
115780    35683    880    2017-08-24 17:39:00    2017-08-24 17:39:00
115781    35683    511    2017-08-24 06:46:00    2017-08-24 06:46:00
115782    35683    747    2017-08-24 23:45:00    2017-08-24 23:45:00
115783    35683    517    2017-08-24 18:00:00    2017-08-24 18:00:00
115784    35683    945    2017-08-24 08:07:00    2017-08-24 08:07:00
115785    35684    661    2017-08-24 07:56:00    2017-08-24 07:56:00
115786    35684    870    2017-08-24 22:20:00    2017-08-24 22:20:00
115787    35684    957    2017-08-24 12:00:00    2017-08-24 12:00:00
115788    35684    911    2017-08-24 11:42:00    2017-08-24 11:42:00
115789    35684    625    2017-08-24 22:25:00    2017-08-24 22:25:00
115790    35685    604    2017-08-24 11:12:00    2017-08-24 11:12:00
115791    35685    832    2017-08-24 17:49:00    2017-08-24 17:49:00
115792    35685    597    2017-08-24 17:54:00    2017-08-24 17:54:00
115793    35685    814    2017-08-24 19:25:00    2017-08-24 19:25:00
115794    35685    716    2017-08-24 03:45:00    2017-08-24 03:45:00
115795    35686    856    2017-08-24 06:09:00    2017-08-24 06:09:00
115796    35686    927    2017-08-24 19:19:00    2017-08-24 19:19:00
115797    35686    869    2017-08-24 14:00:00    2017-08-24 14:00:00
115798    35686    687    2017-08-24 03:08:00    2017-08-24 03:08:00
115799    35686    679    2017-08-24 23:36:00    2017-08-24 23:36:00
115800    35687    686    2017-08-24 02:03:00    2017-08-24 02:03:00
115801    35687    914    2017-08-24 20:14:00    2017-08-24 20:14:00
115802    35687    463    2017-08-24 07:23:00    2017-08-24 07:23:00
115803    35687    868    2017-08-24 20:51:00    2017-08-24 20:51:00
115804    35687    566    2017-08-24 22:39:00    2017-08-24 22:39:00
115805    35688    467    2017-08-24 01:16:00    2017-08-24 01:16:00
115806    35688    501    2017-08-24 09:20:00    2017-08-24 09:20:00
115807    35688    521    2017-08-24 04:22:00    2017-08-24 04:22:00
115808    35688    529    2017-08-24 18:15:00    2017-08-24 18:15:00
115809    35688    834    2017-08-24 12:33:00    2017-08-24 12:33:00
115810    35689    892    2017-08-25 12:03:00    2017-08-25 12:03:00
115811    35689    834    2017-08-25 21:41:00    2017-08-25 21:41:00
115812    35689    559    2017-08-25 06:59:00    2017-08-25 06:59:00
115813    35689    755    2017-08-25 13:57:00    2017-08-25 13:57:00
115814    35689    828    2017-08-25 16:36:00    2017-08-25 16:36:00
115815    35690    531    2017-08-25 20:23:00    2017-08-25 20:23:00
115816    35690    944    2017-08-25 11:30:00    2017-08-25 11:30:00
115817    35690    705    2017-08-25 07:50:00    2017-08-25 07:50:00
115818    35690    815    2017-08-25 13:33:00    2017-08-25 13:33:00
115819    35690    921    2017-08-25 11:57:00    2017-08-25 11:57:00
115820    35691    711    2017-08-25 06:43:00    2017-08-25 06:43:00
115821    35691    533    2017-08-25 19:20:00    2017-08-25 19:20:00
115822    35691    502    2017-08-25 13:46:00    2017-08-25 13:46:00
115823    35691    482    2017-08-25 09:30:00    2017-08-25 09:30:00
115824    35691    699    2017-08-25 19:20:00    2017-08-25 19:20:00
115825    35692    615    2017-08-25 01:47:00    2017-08-25 01:47:00
115826    35692    672    2017-08-25 21:18:00    2017-08-25 21:18:00
115827    35692    789    2017-08-25 15:32:00    2017-08-25 15:32:00
115828    35692    812    2017-08-25 22:06:00    2017-08-25 22:06:00
115829    35692    800    2017-08-25 17:01:00    2017-08-25 17:01:00
115830    35693    509    2017-08-25 17:05:00    2017-08-25 17:05:00
115831    35693    741    2017-08-25 10:04:00    2017-08-25 10:04:00
115832    35693    941    2017-08-25 04:12:00    2017-08-25 04:12:00
115833    35693    562    2017-08-25 17:39:00    2017-08-25 17:39:00
115834    35693    545    2017-08-25 08:13:00    2017-08-25 08:13:00
115835    35694    634    2017-08-25 18:43:00    2017-08-25 18:43:00
115836    35694    659    2017-08-25 07:15:00    2017-08-25 07:15:00
115837    35694    600    2017-08-25 09:22:00    2017-08-25 09:22:00
115838    35694    901    2017-08-25 02:26:00    2017-08-25 02:26:00
115839    35694    857    2017-08-25 16:58:00    2017-08-25 16:58:00
115840    35695    871    2017-08-25 21:20:00    2017-08-25 21:20:00
115841    35695    929    2017-08-25 04:38:00    2017-08-25 04:38:00
115842    35695    780    2017-08-25 01:32:00    2017-08-25 01:32:00
115843    35695    734    2017-08-25 12:23:00    2017-08-25 12:23:00
115844    35695    725    2017-08-25 01:17:00    2017-08-25 01:17:00
115845    35696    818    2017-08-25 08:00:00    2017-08-25 08:00:00
115846    35696    904    2017-08-25 12:48:00    2017-08-25 12:48:00
115847    35696    687    2017-08-25 08:59:00    2017-08-25 08:59:00
115848    35696    858    2017-08-25 12:21:00    2017-08-25 12:21:00
115849    35696    713    2017-08-25 10:00:00    2017-08-25 10:00:00
115850    35697    930    2017-08-25 10:32:00    2017-08-25 10:32:00
115851    35697    742    2017-08-25 16:51:00    2017-08-25 16:51:00
115852    35697    712    2017-08-25 03:16:00    2017-08-25 03:16:00
115853    35697    474    2017-08-25 06:43:00    2017-08-25 06:43:00
115854    35697    725    2017-08-25 20:00:00    2017-08-25 20:00:00
115855    35698    609    2017-08-25 18:14:00    2017-08-25 18:14:00
115856    35698    774    2017-08-25 09:07:00    2017-08-25 09:07:00
115857    35698    651    2017-08-25 04:38:00    2017-08-25 04:38:00
115858    35698    609    2017-08-25 13:27:00    2017-08-25 13:27:00
115859    35698    580    2017-08-25 14:39:00    2017-08-25 14:39:00
115860    35699    470    2017-08-25 08:39:00    2017-08-25 08:39:00
115861    35699    751    2017-08-25 04:02:00    2017-08-25 04:02:00
115862    35699    602    2017-08-25 19:06:00    2017-08-25 19:06:00
115863    35699    480    2017-08-25 16:07:00    2017-08-25 16:07:00
115864    35699    760    2017-08-25 13:13:00    2017-08-25 13:13:00
115865    35700    947    2017-08-25 09:53:00    2017-08-25 09:53:00
115866    35700    730    2017-08-25 09:48:00    2017-08-25 09:48:00
115867    35700    885    2017-08-25 09:46:00    2017-08-25 09:46:00
115868    35700    726    2017-08-25 23:19:00    2017-08-25 23:19:00
115869    35700    569    2017-08-25 06:14:00    2017-08-25 06:14:00
115870    35701    609    2017-08-25 02:43:00    2017-08-25 02:43:00
115871    35701    623    2017-08-25 16:23:00    2017-08-25 16:23:00
115872    35701    646    2017-08-25 22:36:00    2017-08-25 22:36:00
115873    35701    915    2017-08-25 05:01:00    2017-08-25 05:01:00
115874    35701    879    2017-08-25 02:55:00    2017-08-25 02:55:00
115875    35702    910    2017-08-25 02:37:00    2017-08-25 02:37:00
115876    35702    686    2017-08-25 22:18:00    2017-08-25 22:18:00
115877    35702    755    2017-08-25 20:44:00    2017-08-25 20:44:00
115878    35702    722    2017-08-25 12:41:00    2017-08-25 12:41:00
115879    35702    521    2017-08-25 23:01:00    2017-08-25 23:01:00
115880    35703    694    2017-08-25 22:10:00    2017-08-25 22:10:00
115881    35703    478    2017-08-25 09:57:00    2017-08-25 09:57:00
115882    35703    683    2017-08-25 06:38:00    2017-08-25 06:38:00
115883    35703    893    2017-08-25 17:44:00    2017-08-25 17:44:00
115884    35703    831    2017-08-25 18:43:00    2017-08-25 18:43:00
115885    35704    522    2017-08-25 06:28:00    2017-08-25 06:28:00
115886    35704    627    2017-08-25 06:47:00    2017-08-25 06:47:00
115887    35704    735    2017-08-25 08:11:00    2017-08-25 08:11:00
115888    35704    886    2017-08-25 08:51:00    2017-08-25 08:51:00
115889    35704    932    2017-08-25 15:10:00    2017-08-25 15:10:00
115890    35705    529    2017-08-25 16:24:00    2017-08-25 16:24:00
115891    35705    906    2017-08-25 10:10:00    2017-08-25 10:10:00
115892    35705    776    2017-08-25 03:02:00    2017-08-25 03:02:00
115893    35705    632    2017-08-25 21:58:00    2017-08-25 21:58:00
115894    35705    611    2017-08-25 08:02:00    2017-08-25 08:02:00
115895    35706    676    2017-08-25 22:00:00    2017-08-25 22:00:00
115896    35706    700    2017-08-25 23:57:00    2017-08-25 23:57:00
115897    35706    634    2017-08-25 06:44:00    2017-08-25 06:44:00
115898    35706    943    2017-08-25 21:58:00    2017-08-25 21:58:00
115899    35706    689    2017-08-25 04:12:00    2017-08-25 04:12:00
115900    35707    764    2017-08-25 10:51:00    2017-08-25 10:51:00
115901    35707    792    2017-08-25 18:55:00    2017-08-25 18:55:00
115902    35707    791    2017-08-25 15:27:00    2017-08-25 15:27:00
115903    35707    831    2017-08-25 19:36:00    2017-08-25 19:36:00
115904    35707    786    2017-08-25 07:21:00    2017-08-25 07:21:00
115905    35708    621    2017-08-25 01:42:00    2017-08-25 01:42:00
115906    35708    748    2017-08-25 19:42:00    2017-08-25 19:42:00
115907    35708    846    2017-08-25 20:53:00    2017-08-25 20:53:00
115908    35708    820    2017-08-25 21:48:00    2017-08-25 21:48:00
115909    35708    798    2017-08-25 21:34:00    2017-08-25 21:34:00
115910    35709    762    2017-08-25 01:40:00    2017-08-25 01:40:00
115911    35709    515    2017-08-25 22:03:00    2017-08-25 22:03:00
115912    35709    677    2017-08-25 15:47:00    2017-08-25 15:47:00
115913    35709    600    2017-08-25 08:38:00    2017-08-25 08:38:00
115914    35709    953    2017-08-25 18:00:00    2017-08-25 18:00:00
115915    35710    933    2017-08-25 11:51:00    2017-08-25 11:51:00
115916    35710    627    2017-08-25 16:34:00    2017-08-25 16:34:00
115917    35710    672    2017-08-25 16:35:00    2017-08-25 16:35:00
115918    35710    536    2017-08-25 08:58:00    2017-08-25 08:58:00
115919    35710    708    2017-08-25 05:42:00    2017-08-25 05:42:00
115920    35711    605    2017-08-25 05:27:00    2017-08-25 05:27:00
115921    35711    663    2017-08-25 04:38:00    2017-08-25 04:38:00
115922    35711    536    2017-08-25 09:36:00    2017-08-25 09:36:00
115923    35711    706    2017-08-25 23:47:00    2017-08-25 23:47:00
115924    35711    856    2017-08-25 19:27:00    2017-08-25 19:27:00
115925    35712    648    2017-08-25 22:11:00    2017-08-25 22:11:00
115926    35712    597    2017-08-25 14:45:00    2017-08-25 14:45:00
115927    35712    616    2017-08-25 18:47:00    2017-08-25 18:47:00
115928    35712    850    2017-08-25 19:05:00    2017-08-25 19:05:00
115929    35712    874    2017-08-25 23:11:00    2017-08-25 23:11:00
115930    35713    835    2017-08-25 08:47:00    2017-08-25 08:47:00
115931    35713    576    2017-08-25 21:21:00    2017-08-25 21:21:00
115932    35713    673    2017-08-25 09:08:00    2017-08-25 09:08:00
115933    35713    504    2017-08-25 16:03:00    2017-08-25 16:03:00
115934    35713    555    2017-08-25 15:47:00    2017-08-25 15:47:00
115935    35714    467    2017-08-25 13:40:00    2017-08-25 13:40:00
115936    35714    869    2017-08-25 22:18:00    2017-08-25 22:18:00
115937    35714    568    2017-08-25 21:54:00    2017-08-25 21:54:00
115938    35714    637    2017-08-25 11:25:00    2017-08-25 11:25:00
115939    35714    892    2017-08-25 11:21:00    2017-08-25 11:21:00
115940    35715    574    2017-08-25 02:53:00    2017-08-25 02:53:00
115941    35715    877    2017-08-25 11:54:00    2017-08-25 11:54:00
115942    35715    533    2017-08-25 17:19:00    2017-08-25 17:19:00
115943    35715    764    2017-08-25 18:07:00    2017-08-25 18:07:00
115944    35715    818    2017-08-25 23:34:00    2017-08-25 23:34:00
115945    35716    960    2017-08-25 04:00:00    2017-08-25 04:00:00
115946    35716    553    2017-08-25 23:23:00    2017-08-25 23:23:00
115947    35716    930    2017-08-25 01:51:00    2017-08-25 01:51:00
115948    35716    714    2017-08-25 06:11:00    2017-08-25 06:11:00
115949    35716    591    2017-08-25 01:13:00    2017-08-25 01:13:00
115950    35717    607    2017-08-25 12:29:00    2017-08-25 12:29:00
115951    35717    721    2017-08-25 14:57:00    2017-08-25 14:57:00
115952    35717    811    2017-08-25 10:12:00    2017-08-25 10:12:00
115953    35717    726    2017-08-25 12:42:00    2017-08-25 12:42:00
115954    35717    735    2017-08-25 03:21:00    2017-08-25 03:21:00
115955    35718    814    2017-08-25 03:09:00    2017-08-25 03:09:00
115956    35718    648    2017-08-25 11:29:00    2017-08-25 11:29:00
115957    35718    904    2017-08-25 14:10:00    2017-08-25 14:10:00
115958    35718    483    2017-08-25 17:16:00    2017-08-25 17:16:00
115959    35718    828    2017-08-25 22:02:00    2017-08-25 22:02:00
115960    35719    477    2017-08-25 17:44:00    2017-08-25 17:44:00
115961    35719    772    2017-08-25 04:21:00    2017-08-25 04:21:00
115962    35719    807    2017-08-25 13:30:00    2017-08-25 13:30:00
115963    35719    864    2017-08-25 06:48:00    2017-08-25 06:48:00
115964    35719    833    2017-08-25 04:30:00    2017-08-25 04:30:00
115965    35720    464    2017-08-25 10:53:00    2017-08-25 10:53:00
115966    35720    663    2017-08-25 10:37:00    2017-08-25 10:37:00
115967    35720    814    2017-08-25 07:54:00    2017-08-25 07:54:00
115968    35720    506    2017-08-25 05:09:00    2017-08-25 05:09:00
115969    35720    788    2017-08-25 20:28:00    2017-08-25 20:28:00
115970    35721    906    2017-08-25 19:02:00    2017-08-25 19:02:00
115971    35721    712    2017-08-25 06:24:00    2017-08-25 06:24:00
115972    35721    478    2017-08-25 10:13:00    2017-08-25 10:13:00
115973    35721    828    2017-08-25 01:50:00    2017-08-25 01:50:00
115974    35721    649    2017-08-25 05:35:00    2017-08-25 05:35:00
115975    35722    818    2017-08-25 02:49:00    2017-08-25 02:49:00
115976    35722    701    2017-08-25 07:13:00    2017-08-25 07:13:00
115977    35722    912    2017-08-25 01:59:00    2017-08-25 01:59:00
115978    35722    942    2017-08-25 01:28:00    2017-08-25 01:28:00
115979    35722    784    2017-08-25 12:47:00    2017-08-25 12:47:00
115980    35723    620    2017-08-25 06:21:00    2017-08-25 06:21:00
115981    35723    806    2017-08-25 10:37:00    2017-08-25 10:37:00
115982    35723    734    2017-08-25 07:03:00    2017-08-25 07:03:00
115983    35723    491    2017-08-25 06:24:00    2017-08-25 06:24:00
115984    35723    664    2017-08-25 09:09:00    2017-08-25 09:09:00
115985    35724    817    2017-08-25 16:59:00    2017-08-25 16:59:00
115986    35724    662    2017-08-25 04:33:00    2017-08-25 04:33:00
115987    35724    470    2017-08-25 12:15:00    2017-08-25 12:15:00
115988    35724    626    2017-08-25 17:12:00    2017-08-25 17:12:00
115989    35724    616    2017-08-25 06:58:00    2017-08-25 06:58:00
115990    35725    608    2017-08-25 12:19:00    2017-08-25 12:19:00
115991    35725    867    2017-08-25 07:40:00    2017-08-25 07:40:00
115992    35725    805    2017-08-25 09:19:00    2017-08-25 09:19:00
115993    35725    817    2017-08-25 01:24:00    2017-08-25 01:24:00
115994    35725    939    2017-08-25 05:00:00    2017-08-25 05:00:00
115995    35726    892    2017-08-25 09:02:00    2017-08-25 09:02:00
115996    35726    574    2017-08-25 04:12:00    2017-08-25 04:12:00
115997    35726    831    2017-08-25 01:29:00    2017-08-25 01:29:00
115998    35726    587    2017-08-25 23:58:00    2017-08-25 23:58:00
115999    35726    857    2017-08-25 21:06:00    2017-08-25 21:06:00
116000    35727    514    2017-08-25 05:09:00    2017-08-25 05:09:00
116001    35727    935    2017-08-25 16:03:00    2017-08-25 16:03:00
116002    35727    498    2017-08-25 20:46:00    2017-08-25 20:46:00
116003    35727    914    2017-08-25 04:32:00    2017-08-25 04:32:00
116004    35727    786    2017-08-25 22:22:00    2017-08-25 22:22:00
116005    35728    596    2017-08-25 15:04:00    2017-08-25 15:04:00
116006    35728    463    2017-08-25 12:44:00    2017-08-25 12:44:00
116007    35728    906    2017-08-25 07:11:00    2017-08-25 07:11:00
116008    35728    627    2017-08-25 12:25:00    2017-08-25 12:25:00
116009    35728    819    2017-08-25 06:40:00    2017-08-25 06:40:00
116010    35729    842    2017-08-25 23:00:00    2017-08-25 23:00:00
116011    35729    504    2017-08-25 23:36:00    2017-08-25 23:36:00
116012    35729    922    2017-08-25 04:18:00    2017-08-25 04:18:00
116013    35729    850    2017-08-25 08:08:00    2017-08-25 08:08:00
116014    35729    686    2017-08-25 19:27:00    2017-08-25 19:27:00
116015    35730    919    2017-08-25 09:01:00    2017-08-25 09:01:00
116016    35730    724    2017-08-25 05:43:00    2017-08-25 05:43:00
116017    35730    492    2017-08-25 15:50:00    2017-08-25 15:50:00
116018    35730    845    2017-08-25 13:01:00    2017-08-25 13:01:00
116019    35730    858    2017-08-25 06:00:00    2017-08-25 06:00:00
116020    35731    848    2017-08-25 10:02:00    2017-08-25 10:02:00
116021    35731    815    2017-08-25 23:52:00    2017-08-25 23:52:00
116022    35731    576    2017-08-25 20:14:00    2017-08-25 20:14:00
116023    35731    842    2017-08-25 08:49:00    2017-08-25 08:49:00
116024    35731    574    2017-08-25 18:41:00    2017-08-25 18:41:00
116025    35732    577    2017-08-25 01:49:00    2017-08-25 01:49:00
116026    35732    915    2017-08-25 18:41:00    2017-08-25 18:41:00
116027    35732    911    2017-08-25 23:20:00    2017-08-25 23:20:00
116028    35732    866    2017-08-25 04:53:00    2017-08-25 04:53:00
116029    35732    668    2017-08-25 21:55:00    2017-08-25 21:55:00
116030    35733    908    2017-08-25 16:58:00    2017-08-25 16:58:00
116031    35733    931    2017-08-25 01:37:00    2017-08-25 01:37:00
116032    35733    786    2017-08-25 19:24:00    2017-08-25 19:24:00
116033    35733    539    2017-08-25 09:04:00    2017-08-25 09:04:00
116034    35733    768    2017-08-25 05:52:00    2017-08-25 05:52:00
116035    35734    571    2017-08-25 19:55:00    2017-08-25 19:55:00
116036    35734    518    2017-08-25 20:20:00    2017-08-25 20:20:00
116037    35734    570    2017-08-25 18:39:00    2017-08-25 18:39:00
116038    35734    770    2017-08-25 16:38:00    2017-08-25 16:38:00
116039    35734    923    2017-08-25 02:20:00    2017-08-25 02:20:00
116040    35735    481    2017-08-25 02:23:00    2017-08-25 02:23:00
116041    35735    865    2017-08-25 01:15:00    2017-08-25 01:15:00
116042    35735    463    2017-08-25 03:05:00    2017-08-25 03:05:00
116043    35735    512    2017-08-25 17:53:00    2017-08-25 17:53:00
116044    35735    689    2017-08-25 11:57:00    2017-08-25 11:57:00
116045    35736    744    2017-08-25 04:42:00    2017-08-25 04:42:00
116046    35736    516    2017-08-25 20:56:00    2017-08-25 20:56:00
116047    35736    918    2017-08-25 11:47:00    2017-08-25 11:47:00
116048    35736    603    2017-08-25 16:16:00    2017-08-25 16:16:00
116049    35736    645    2017-08-25 02:19:00    2017-08-25 02:19:00
116050    35737    664    2017-08-25 12:31:00    2017-08-25 12:31:00
116051    35737    683    2017-08-25 03:48:00    2017-08-25 03:48:00
116052    35737    727    2017-08-25 09:41:00    2017-08-25 09:41:00
116053    35737    522    2017-08-25 19:50:00    2017-08-25 19:50:00
116054    35737    488    2017-08-25 02:24:00    2017-08-25 02:24:00
116055    35738    516    2017-08-25 22:27:00    2017-08-25 22:27:00
116056    35738    471    2017-08-25 15:38:00    2017-08-25 15:38:00
116057    35738    636    2017-08-25 15:54:00    2017-08-25 15:54:00
116058    35738    750    2017-08-25 05:51:00    2017-08-25 05:51:00
116059    35738    608    2017-08-25 16:05:00    2017-08-25 16:05:00
116060    35739    821    2017-08-25 22:28:00    2017-08-25 22:28:00
116061    35739    692    2017-08-25 22:56:00    2017-08-25 22:56:00
116062    35739    708    2017-08-25 18:24:00    2017-08-25 18:24:00
116063    35739    466    2017-08-25 02:19:00    2017-08-25 02:19:00
116064    35739    959    2017-08-25 17:00:00    2017-08-25 17:00:00
116065    35740    538    2017-08-25 07:48:00    2017-08-25 07:48:00
116066    35740    630    2017-08-25 13:33:00    2017-08-25 13:33:00
116067    35740    848    2017-08-25 17:50:00    2017-08-25 17:50:00
116068    35740    781    2017-08-25 21:46:00    2017-08-25 21:46:00
116069    35740    926    2017-08-25 06:27:00    2017-08-25 06:27:00
116070    35741    691    2017-08-25 06:00:00    2017-08-25 06:00:00
116071    35741    611    2017-08-25 14:05:00    2017-08-25 14:05:00
116072    35741    562    2017-08-25 16:20:00    2017-08-25 16:20:00
116073    35741    649    2017-08-25 10:43:00    2017-08-25 10:43:00
116074    35741    517    2017-08-25 17:01:00    2017-08-25 17:01:00
116075    35742    610    2017-08-25 21:24:00    2017-08-25 21:24:00
116076    35742    776    2017-08-25 16:54:00    2017-08-25 16:54:00
116077    35742    820    2017-08-25 09:54:00    2017-08-25 09:54:00
116078    35742    820    2017-08-25 18:58:00    2017-08-25 18:58:00
116079    35742    845    2017-08-25 17:45:00    2017-08-25 17:45:00
116080    35743    596    2017-08-25 07:05:00    2017-08-25 07:05:00
116081    35743    498    2017-08-25 18:46:00    2017-08-25 18:46:00
116082    35743    722    2017-08-25 02:31:00    2017-08-25 02:31:00
116083    35743    949    2017-08-25 16:12:00    2017-08-25 16:12:00
116084    35743    656    2017-08-25 11:49:00    2017-08-25 11:49:00
116085    35744    538    2017-08-25 12:42:00    2017-08-25 12:42:00
116086    35744    561    2017-08-25 21:10:00    2017-08-25 21:10:00
116087    35744    945    2017-08-25 12:52:00    2017-08-25 12:52:00
116088    35744    572    2017-08-25 10:58:00    2017-08-25 10:58:00
116089    35744    683    2017-08-25 17:42:00    2017-08-25 17:42:00
116090    35745    748    2017-08-25 22:18:00    2017-08-25 22:18:00
116091    35745    573    2017-08-25 20:33:00    2017-08-25 20:33:00
116092    35745    849    2017-08-25 20:43:00    2017-08-25 20:43:00
116093    35745    831    2017-08-25 05:15:00    2017-08-25 05:15:00
116094    35745    483    2017-08-25 07:13:00    2017-08-25 07:13:00
116095    35746    943    2017-08-25 11:38:00    2017-08-25 11:38:00
116096    35746    482    2017-08-25 17:09:00    2017-08-25 17:09:00
116097    35746    539    2017-08-25 14:55:00    2017-08-25 14:55:00
116098    35746    597    2017-08-25 07:58:00    2017-08-25 07:58:00
116099    35746    653    2017-08-25 21:40:00    2017-08-25 21:40:00
116100    35747    603    2017-08-25 17:39:00    2017-08-25 17:39:00
116101    35747    586    2017-08-25 08:43:00    2017-08-25 08:43:00
116102    35747    953    2017-08-25 16:34:00    2017-08-25 16:34:00
116103    35747    505    2017-08-25 02:45:00    2017-08-25 02:45:00
116104    35747    951    2017-08-25 14:00:00    2017-08-25 14:00:00
116105    35748    840    2017-08-25 21:39:00    2017-08-25 21:39:00
116106    35748    627    2017-08-25 10:01:00    2017-08-25 10:01:00
116107    35748    878    2017-08-25 03:50:00    2017-08-25 03:50:00
116108    35748    544    2017-08-25 07:18:00    2017-08-25 07:18:00
116109    35748    480    2017-08-25 06:31:00    2017-08-25 06:31:00
116110    35749    697    2017-08-25 11:59:00    2017-08-25 11:59:00
116111    35749    620    2017-08-25 14:40:00    2017-08-25 14:40:00
116112    35749    643    2017-08-25 23:32:00    2017-08-25 23:32:00
116113    35749    896    2017-08-25 13:51:00    2017-08-25 13:51:00
116114    35749    673    2017-08-25 02:50:00    2017-08-25 02:50:00
116115    35750    871    2017-08-25 01:10:00    2017-08-25 01:10:00
116116    35750    834    2017-08-25 21:22:00    2017-08-25 21:22:00
116117    35750    629    2017-08-25 23:17:00    2017-08-25 23:17:00
116118    35750    684    2017-08-25 11:49:00    2017-08-25 11:49:00
116119    35750    875    2017-08-25 12:16:00    2017-08-25 12:16:00
116120    35751    652    2017-08-25 22:43:00    2017-08-25 22:43:00
116121    35751    543    2017-08-25 06:13:00    2017-08-25 06:13:00
116122    35751    844    2017-08-25 04:26:00    2017-08-25 04:26:00
116123    35751    563    2017-08-25 16:50:00    2017-08-25 16:50:00
116124    35751    719    2017-08-25 10:27:00    2017-08-25 10:27:00
116125    35752    713    2017-08-25 10:36:00    2017-08-25 10:36:00
116126    35752    657    2017-08-25 14:15:00    2017-08-25 14:15:00
116127    35752    779    2017-08-25 13:41:00    2017-08-25 13:41:00
116128    35752    533    2017-08-25 15:28:00    2017-08-25 15:28:00
116129    35752    602    2017-08-25 09:35:00    2017-08-25 09:35:00
116130    35753    690    2017-08-25 13:15:00    2017-08-25 13:15:00
116131    35753    541    2017-08-25 09:16:00    2017-08-25 09:16:00
116132    35753    538    2017-08-25 05:13:00    2017-08-25 05:13:00
116133    35753    715    2017-08-25 11:17:00    2017-08-25 11:17:00
116134    35753    538    2017-08-25 14:15:00    2017-08-25 14:15:00
116135    35754    618    2017-08-25 13:53:00    2017-08-25 13:53:00
116136    35754    551    2017-08-25 08:42:00    2017-08-25 08:42:00
116137    35754    514    2017-08-25 07:26:00    2017-08-25 07:26:00
116138    35754    493    2017-08-25 16:11:00    2017-08-25 16:11:00
116139    35754    755    2017-08-25 06:17:00    2017-08-25 06:17:00
116140    35755    793    2017-08-25 08:29:00    2017-08-25 08:29:00
116141    35755    589    2017-08-25 03:09:00    2017-08-25 03:09:00
116142    35755    471    2017-08-25 06:38:00    2017-08-25 06:38:00
116143    35755    897    2017-08-25 23:37:00    2017-08-25 23:37:00
116144    35755    472    2017-08-25 12:51:00    2017-08-25 12:51:00
116145    35756    501    2017-08-25 21:36:00    2017-08-25 21:36:00
116146    35756    641    2017-08-25 23:35:00    2017-08-25 23:35:00
116147    35756    949    2017-08-25 19:27:00    2017-08-25 19:27:00
116148    35756    623    2017-08-25 18:24:00    2017-08-25 18:24:00
116149    35756    491    2017-08-25 08:54:00    2017-08-25 08:54:00
116150    35757    739    2017-08-25 14:57:00    2017-08-25 14:57:00
116151    35757    912    2017-08-25 13:53:00    2017-08-25 13:53:00
116152    35757    829    2017-08-25 10:13:00    2017-08-25 10:13:00
116153    35757    815    2017-08-25 07:00:00    2017-08-25 07:00:00
116154    35757    757    2017-08-25 03:13:00    2017-08-25 03:13:00
116155    35758    893    2017-08-26 02:31:00    2017-08-26 02:31:00
116156    35758    547    2017-08-26 10:08:00    2017-08-26 10:08:00
116157    35758    751    2017-08-26 03:49:00    2017-08-26 03:49:00
116158    35758    821    2017-08-26 03:23:00    2017-08-26 03:23:00
116159    35758    890    2017-08-26 21:54:00    2017-08-26 21:54:00
116160    35759    601    2017-08-26 05:09:00    2017-08-26 05:09:00
116161    35759    755    2017-08-26 19:14:00    2017-08-26 19:14:00
116162    35759    540    2017-08-26 20:48:00    2017-08-26 20:48:00
116163    35759    570    2017-08-26 14:26:00    2017-08-26 14:26:00
116164    35759    616    2017-08-26 15:49:00    2017-08-26 15:49:00
116165    35760    671    2017-08-26 02:23:00    2017-08-26 02:23:00
116166    35760    767    2017-08-26 20:52:00    2017-08-26 20:52:00
116167    35760    485    2017-08-26 11:23:00    2017-08-26 11:23:00
116168    35760    661    2017-08-26 03:16:00    2017-08-26 03:16:00
116169    35760    833    2017-08-26 04:42:00    2017-08-26 04:42:00
116170    35761    775    2017-08-26 07:00:00    2017-08-26 07:00:00
116171    35761    658    2017-08-26 06:24:00    2017-08-26 06:24:00
116172    35761    850    2017-08-26 06:39:00    2017-08-26 06:39:00
116173    35761    557    2017-08-26 15:47:00    2017-08-26 15:47:00
116174    35761    689    2017-08-26 10:55:00    2017-08-26 10:55:00
116175    35762    757    2017-08-26 22:18:00    2017-08-26 22:18:00
116176    35762    818    2017-08-26 23:25:00    2017-08-26 23:25:00
116177    35762    535    2017-08-26 15:54:00    2017-08-26 15:54:00
116178    35762    960    2017-08-26 06:15:00    2017-08-26 06:15:00
116179    35762    649    2017-08-26 21:39:00    2017-08-26 21:39:00
116180    35763    545    2017-08-26 04:20:00    2017-08-26 04:20:00
116181    35763    505    2017-08-26 20:06:00    2017-08-26 20:06:00
116182    35763    848    2017-08-26 07:04:00    2017-08-26 07:04:00
116183    35763    912    2017-08-26 03:10:00    2017-08-26 03:10:00
116184    35763    664    2017-08-26 02:20:00    2017-08-26 02:20:00
116185    35764    472    2017-08-26 04:00:00    2017-08-26 04:00:00
116186    35764    949    2017-08-26 12:15:00    2017-08-26 12:15:00
116187    35764    946    2017-08-26 13:17:00    2017-08-26 13:17:00
116188    35764    934    2017-08-26 08:17:00    2017-08-26 08:17:00
116189    35764    484    2017-08-26 04:16:00    2017-08-26 04:16:00
116190    35765    465    2017-08-26 01:17:00    2017-08-26 01:17:00
116191    35765    869    2017-08-26 16:19:00    2017-08-26 16:19:00
116192    35765    727    2017-08-26 18:54:00    2017-08-26 18:54:00
116193    35765    859    2017-08-26 12:44:00    2017-08-26 12:44:00
116194    35765    877    2017-08-26 20:10:00    2017-08-26 20:10:00
116195    35766    768    2017-08-26 02:14:00    2017-08-26 02:14:00
116196    35766    472    2017-08-26 14:44:00    2017-08-26 14:44:00
116197    35766    644    2017-08-26 09:16:00    2017-08-26 09:16:00
116198    35766    894    2017-08-26 19:53:00    2017-08-26 19:53:00
116199    35766    803    2017-08-26 18:13:00    2017-08-26 18:13:00
116200    35767    634    2017-08-26 01:57:00    2017-08-26 01:57:00
116201    35767    565    2017-08-26 15:58:00    2017-08-26 15:58:00
116202    35767    841    2017-08-26 11:07:00    2017-08-26 11:07:00
116203    35767    719    2017-08-26 15:06:00    2017-08-26 15:06:00
116204    35767    950    2017-08-26 04:26:00    2017-08-26 04:26:00
116205    35768    522    2017-08-26 10:20:00    2017-08-26 10:20:00
116206    35768    649    2017-08-26 02:10:00    2017-08-26 02:10:00
116207    35768    650    2017-08-26 15:25:00    2017-08-26 15:25:00
116208    35768    513    2017-08-26 08:53:00    2017-08-26 08:53:00
116209    35768    729    2017-08-26 05:12:00    2017-08-26 05:12:00
116210    35769    890    2017-08-26 07:23:00    2017-08-26 07:23:00
116211    35769    489    2017-08-26 23:57:00    2017-08-26 23:57:00
116212    35769    582    2017-08-26 16:23:00    2017-08-26 16:23:00
116213    35769    797    2017-08-26 04:52:00    2017-08-26 04:52:00
116214    35769    599    2017-08-26 22:19:00    2017-08-26 22:19:00
116215    35770    824    2017-08-26 08:49:00    2017-08-26 08:49:00
116216    35770    793    2017-08-26 02:48:00    2017-08-26 02:48:00
116217    35770    631    2017-08-26 23:01:00    2017-08-26 23:01:00
116218    35770    925    2017-08-26 08:06:00    2017-08-26 08:06:00
116219    35770    910    2017-08-26 15:07:00    2017-08-26 15:07:00
116220    35771    807    2017-08-26 09:49:00    2017-08-26 09:49:00
116221    35771    679    2017-08-26 01:04:00    2017-08-26 01:04:00
116222    35771    622    2017-08-26 15:11:00    2017-08-26 15:11:00
116223    35771    876    2017-08-26 18:58:00    2017-08-26 18:58:00
116224    35771    675    2017-08-26 23:08:00    2017-08-26 23:08:00
116225    35772    709    2017-08-26 10:06:00    2017-08-26 10:06:00
116226    35772    823    2017-08-26 11:28:00    2017-08-26 11:28:00
116227    35772    517    2017-08-26 06:29:00    2017-08-26 06:29:00
116228    35772    689    2017-08-26 09:56:00    2017-08-26 09:56:00
116229    35772    874    2017-08-26 01:18:00    2017-08-26 01:18:00
116230    35773    924    2017-08-26 16:23:00    2017-08-26 16:23:00
116231    35773    891    2017-08-26 08:24:00    2017-08-26 08:24:00
116232    35773    561    2017-08-26 22:51:00    2017-08-26 22:51:00
116233    35773    686    2017-08-26 14:34:00    2017-08-26 14:34:00
116234    35773    486    2017-08-26 10:46:00    2017-08-26 10:46:00
116235    35774    567    2017-08-26 17:20:00    2017-08-26 17:20:00
116236    35774    657    2017-08-26 13:44:00    2017-08-26 13:44:00
116237    35774    646    2017-08-26 21:28:00    2017-08-26 21:28:00
116238    35774    690    2017-08-26 05:36:00    2017-08-26 05:36:00
116239    35774    735    2017-08-26 02:30:00    2017-08-26 02:30:00
116240    35775    590    2017-08-26 14:53:00    2017-08-26 14:53:00
116241    35775    473    2017-08-26 03:45:00    2017-08-26 03:45:00
116242    35775    952    2017-08-26 11:39:00    2017-08-26 11:39:00
116243    35775    503    2017-08-26 07:24:00    2017-08-26 07:24:00
116244    35775    766    2017-08-26 06:30:00    2017-08-26 06:30:00
116245    35776    595    2017-08-26 01:43:00    2017-08-26 01:43:00
116246    35776    552    2017-08-26 06:23:00    2017-08-26 06:23:00
116247    35776    893    2017-08-26 14:22:00    2017-08-26 14:22:00
116248    35776    467    2017-08-26 12:45:00    2017-08-26 12:45:00
116249    35776    725    2017-08-26 06:29:00    2017-08-26 06:29:00
116250    35777    738    2017-08-26 22:22:00    2017-08-26 22:22:00
116251    35777    577    2017-08-26 07:10:00    2017-08-26 07:10:00
116252    35777    737    2017-08-26 13:07:00    2017-08-26 13:07:00
116253    35777    782    2017-08-26 21:47:00    2017-08-26 21:47:00
116254    35777    607    2017-08-26 06:08:00    2017-08-26 06:08:00
116255    35778    830    2017-08-26 12:55:00    2017-08-26 12:55:00
116256    35778    681    2017-08-26 01:45:00    2017-08-26 01:45:00
116257    35778    600    2017-08-26 05:34:00    2017-08-26 05:34:00
116258    35778    958    2017-08-26 21:55:00    2017-08-26 21:55:00
116259    35778    824    2017-08-26 04:54:00    2017-08-26 04:54:00
116260    35779    802    2017-08-26 04:00:00    2017-08-26 04:00:00
116261    35779    875    2017-08-26 11:02:00    2017-08-26 11:02:00
116262    35779    902    2017-08-26 16:04:00    2017-08-26 16:04:00
116263    35779    918    2017-08-26 18:15:00    2017-08-26 18:15:00
116264    35779    923    2017-08-26 11:01:00    2017-08-26 11:01:00
116265    35780    653    2017-08-26 17:11:00    2017-08-26 17:11:00
116266    35780    478    2017-08-26 17:22:00    2017-08-26 17:22:00
116267    35780    480    2017-08-26 16:33:00    2017-08-26 16:33:00
116268    35780    517    2017-08-26 09:51:00    2017-08-26 09:51:00
116269    35780    682    2017-08-26 10:44:00    2017-08-26 10:44:00
116270    35781    722    2017-08-26 23:44:00    2017-08-26 23:44:00
116271    35781    677    2017-08-26 18:15:00    2017-08-26 18:15:00
116272    35781    630    2017-08-26 05:28:00    2017-08-26 05:28:00
116273    35781    668    2017-08-26 17:09:00    2017-08-26 17:09:00
116274    35781    793    2017-08-26 08:22:00    2017-08-26 08:22:00
116275    35782    949    2017-08-26 20:07:00    2017-08-26 20:07:00
116276    35782    578    2017-08-26 15:04:00    2017-08-26 15:04:00
116277    35782    775    2017-08-26 17:13:00    2017-08-26 17:13:00
116278    35782    676    2017-08-26 23:05:00    2017-08-26 23:05:00
116279    35782    557    2017-08-26 05:17:00    2017-08-26 05:17:00
116280    35783    874    2017-08-26 08:38:00    2017-08-26 08:38:00
116281    35783    547    2017-08-26 01:50:00    2017-08-26 01:50:00
116282    35783    668    2017-08-26 05:50:00    2017-08-26 05:50:00
116283    35783    515    2017-08-26 11:02:00    2017-08-26 11:02:00
116284    35783    757    2017-08-26 08:01:00    2017-08-26 08:01:00
116285    35784    777    2017-08-26 14:19:00    2017-08-26 14:19:00
116286    35784    767    2017-08-26 06:00:00    2017-08-26 06:00:00
116287    35784    669    2017-08-26 04:28:00    2017-08-26 04:28:00
116288    35784    928    2017-08-26 08:50:00    2017-08-26 08:50:00
116289    35784    856    2017-08-26 08:26:00    2017-08-26 08:26:00
116290    35785    855    2017-08-26 04:14:00    2017-08-26 04:14:00
116291    35785    692    2017-08-26 23:58:00    2017-08-26 23:58:00
116292    35785    475    2017-08-26 08:49:00    2017-08-26 08:49:00
116293    35785    840    2017-08-26 21:00:00    2017-08-26 21:00:00
116294    35785    649    2017-08-26 04:13:00    2017-08-26 04:13:00
116295    35786    719    2017-08-26 20:18:00    2017-08-26 20:18:00
116296    35786    563    2017-08-26 04:58:00    2017-08-26 04:58:00
116297    35786    567    2017-08-26 06:53:00    2017-08-26 06:53:00
116298    35786    507    2017-08-26 05:12:00    2017-08-26 05:12:00
116299    35786    545    2017-08-26 23:15:00    2017-08-26 23:15:00
116300    35787    756    2017-08-26 08:00:00    2017-08-26 08:00:00
116301    35787    868    2017-08-26 21:20:00    2017-08-26 21:20:00
116302    35787    638    2017-08-26 07:14:00    2017-08-26 07:14:00
116303    35787    721    2017-08-26 04:11:00    2017-08-26 04:11:00
116304    35787    948    2017-08-26 11:11:00    2017-08-26 11:11:00
116305    35788    763    2017-08-26 07:33:00    2017-08-26 07:33:00
116306    35788    931    2017-08-26 18:47:00    2017-08-26 18:47:00
116307    35788    554    2017-08-26 19:05:00    2017-08-26 19:05:00
116308    35788    536    2017-08-26 14:31:00    2017-08-26 14:31:00
116309    35788    635    2017-08-26 20:50:00    2017-08-26 20:50:00
116310    35789    763    2017-08-26 17:54:00    2017-08-26 17:54:00
116311    35789    499    2017-08-26 08:43:00    2017-08-26 08:43:00
116312    35789    769    2017-08-26 06:45:00    2017-08-26 06:45:00
116313    35789    489    2017-08-26 13:15:00    2017-08-26 13:15:00
116314    35789    633    2017-08-26 13:31:00    2017-08-26 13:31:00
116315    35790    536    2017-08-26 01:05:00    2017-08-26 01:05:00
116316    35790    749    2017-08-26 23:30:00    2017-08-26 23:30:00
116317    35790    534    2017-08-26 13:11:00    2017-08-26 13:11:00
116318    35790    664    2017-08-26 13:04:00    2017-08-26 13:04:00
116319    35790    898    2017-08-26 14:33:00    2017-08-26 14:33:00
116320    35791    622    2017-08-26 17:00:00    2017-08-26 17:00:00
116321    35791    700    2017-08-26 21:29:00    2017-08-26 21:29:00
116322    35791    726    2017-08-26 07:31:00    2017-08-26 07:31:00
116323    35791    926    2017-08-26 02:19:00    2017-08-26 02:19:00
116324    35791    561    2017-08-26 01:55:00    2017-08-26 01:55:00
116325    35792    893    2017-08-26 05:58:00    2017-08-26 05:58:00
116326    35792    814    2017-08-26 03:57:00    2017-08-26 03:57:00
116327    35792    596    2017-08-26 16:32:00    2017-08-26 16:32:00
116328    35792    474    2017-08-26 10:17:00    2017-08-26 10:17:00
116329    35792    483    2017-08-26 14:43:00    2017-08-26 14:43:00
116330    35793    764    2017-08-26 03:36:00    2017-08-26 03:36:00
116331    35793    510    2017-08-26 19:10:00    2017-08-26 19:10:00
116332    35793    611    2017-08-26 20:52:00    2017-08-26 20:52:00
116333    35793    510    2017-08-26 22:16:00    2017-08-26 22:16:00
116334    35793    793    2017-08-26 07:45:00    2017-08-26 07:45:00
116335    35794    788    2017-08-26 16:36:00    2017-08-26 16:36:00
116336    35794    652    2017-08-26 19:30:00    2017-08-26 19:30:00
116337    35794    592    2017-08-26 10:53:00    2017-08-26 10:53:00
116338    35794    894    2017-08-26 17:59:00    2017-08-26 17:59:00
116339    35794    936    2017-08-26 06:17:00    2017-08-26 06:17:00
116340    35795    507    2017-08-26 03:19:00    2017-08-26 03:19:00
116341    35795    560    2017-08-26 02:01:00    2017-08-26 02:01:00
116342    35795    622    2017-08-26 01:48:00    2017-08-26 01:48:00
116343    35795    723    2017-08-26 02:13:00    2017-08-26 02:13:00
116344    35795    793    2017-08-26 07:01:00    2017-08-26 07:01:00
116345    35796    541    2017-08-26 08:13:00    2017-08-26 08:13:00
116346    35796    761    2017-08-26 18:27:00    2017-08-26 18:27:00
116347    35796    712    2017-08-26 19:32:00    2017-08-26 19:32:00
116348    35796    901    2017-08-26 10:09:00    2017-08-26 10:09:00
116349    35796    710    2017-08-26 04:53:00    2017-08-26 04:53:00
116350    35797    670    2017-08-26 01:15:00    2017-08-26 01:15:00
116351    35797    782    2017-08-26 05:57:00    2017-08-26 05:57:00
116352    35797    564    2017-08-26 16:24:00    2017-08-26 16:24:00
116353    35797    573    2017-08-26 17:52:00    2017-08-26 17:52:00
116354    35797    859    2017-08-26 03:06:00    2017-08-26 03:06:00
116355    35798    640    2017-08-26 13:15:00    2017-08-26 13:15:00
116356    35798    743    2017-08-26 20:29:00    2017-08-26 20:29:00
116357    35798    917    2017-08-26 23:53:00    2017-08-26 23:53:00
116358    35798    554    2017-08-26 01:58:00    2017-08-26 01:58:00
116359    35798    569    2017-08-26 20:37:00    2017-08-26 20:37:00
116360    35799    767    2017-08-26 22:27:00    2017-08-26 22:27:00
116361    35799    699    2017-08-26 17:52:00    2017-08-26 17:52:00
116362    35799    533    2017-08-26 19:40:00    2017-08-26 19:40:00
116363    35799    522    2017-08-26 09:49:00    2017-08-26 09:49:00
116364    35799    637    2017-08-26 20:42:00    2017-08-26 20:42:00
116365    35800    473    2017-08-26 22:40:00    2017-08-26 22:40:00
116366    35800    630    2017-08-26 05:31:00    2017-08-26 05:31:00
116367    35800    958    2017-08-26 12:05:00    2017-08-26 12:05:00
116368    35800    878    2017-08-26 07:29:00    2017-08-26 07:29:00
116369    35800    708    2017-08-26 07:16:00    2017-08-26 07:16:00
116370    35801    867    2017-08-26 19:03:00    2017-08-26 19:03:00
116371    35801    861    2017-08-26 04:11:00    2017-08-26 04:11:00
116372    35801    481    2017-08-26 13:41:00    2017-08-26 13:41:00
116373    35801    832    2017-08-26 08:48:00    2017-08-26 08:48:00
116374    35801    807    2017-08-26 07:10:00    2017-08-26 07:10:00
116375    35802    492    2017-08-26 05:18:00    2017-08-26 05:18:00
116376    35802    907    2017-08-26 13:31:00    2017-08-26 13:31:00
116377    35802    801    2017-08-26 17:50:00    2017-08-26 17:50:00
116378    35802    759    2017-08-26 06:21:00    2017-08-26 06:21:00
116379    35802    530    2017-08-26 06:57:00    2017-08-26 06:57:00
116380    35803    806    2017-08-26 23:00:00    2017-08-26 23:00:00
116381    35803    490    2017-08-26 18:05:00    2017-08-26 18:05:00
116382    35803    493    2017-08-26 23:24:00    2017-08-26 23:24:00
116383    35803    674    2017-08-26 13:23:00    2017-08-26 13:23:00
116384    35803    717    2017-08-26 17:14:00    2017-08-26 17:14:00
116385    35804    481    2017-08-26 23:36:00    2017-08-26 23:36:00
116386    35804    504    2017-08-26 09:09:00    2017-08-26 09:09:00
116387    35804    554    2017-08-26 12:24:00    2017-08-26 12:24:00
116388    35804    585    2017-08-26 22:30:00    2017-08-26 22:30:00
116389    35804    501    2017-08-26 07:51:00    2017-08-26 07:51:00
116390    35805    740    2017-08-26 10:03:00    2017-08-26 10:03:00
116391    35805    704    2017-08-26 20:35:00    2017-08-26 20:35:00
116392    35805    538    2017-08-26 10:40:00    2017-08-26 10:40:00
116393    35805    604    2017-08-26 01:28:00    2017-08-26 01:28:00
116394    35805    601    2017-08-26 17:19:00    2017-08-26 17:19:00
116395    35806    523    2017-08-26 12:21:00    2017-08-26 12:21:00
116396    35806    632    2017-08-26 01:57:00    2017-08-26 01:57:00
116397    35806    800    2017-08-26 22:00:00    2017-08-26 22:00:00
116398    35806    820    2017-08-26 19:42:00    2017-08-26 19:42:00
116399    35806    606    2017-08-26 14:10:00    2017-08-26 14:10:00
116400    35807    667    2017-08-26 14:05:00    2017-08-26 14:05:00
116401    35807    863    2017-08-26 08:45:00    2017-08-26 08:45:00
116402    35807    786    2017-08-26 04:53:00    2017-08-26 04:53:00
116403    35807    579    2017-08-26 10:12:00    2017-08-26 10:12:00
116404    35807    664    2017-08-26 22:10:00    2017-08-26 22:10:00
116405    35808    465    2017-08-26 09:39:00    2017-08-26 09:39:00
116406    35808    584    2017-08-26 08:59:00    2017-08-26 08:59:00
116407    35808    657    2017-08-26 23:49:00    2017-08-26 23:49:00
116408    35808    808    2017-08-26 01:45:00    2017-08-26 01:45:00
116409    35808    777    2017-08-26 17:58:00    2017-08-26 17:58:00
116410    35809    918    2017-08-26 16:29:00    2017-08-26 16:29:00
116411    35809    843    2017-08-26 16:31:00    2017-08-26 16:31:00
116412    35809    939    2017-08-26 12:11:00    2017-08-26 12:11:00
116413    35809    556    2017-08-26 22:29:00    2017-08-26 22:29:00
116414    35809    875    2017-08-26 10:26:00    2017-08-26 10:26:00
116415    35810    845    2017-08-26 06:51:00    2017-08-26 06:51:00
116416    35810    694    2017-08-26 13:06:00    2017-08-26 13:06:00
116417    35810    569    2017-08-26 13:08:00    2017-08-26 13:08:00
116418    35810    817    2017-08-26 07:37:00    2017-08-26 07:37:00
116419    35810    790    2017-08-26 05:26:00    2017-08-26 05:26:00
116420    35811    521    2017-08-26 07:42:00    2017-08-26 07:42:00
116421    35811    916    2017-08-26 22:41:00    2017-08-26 22:41:00
116422    35811    890    2017-08-26 05:38:00    2017-08-26 05:38:00
116423    35811    906    2017-08-26 07:34:00    2017-08-26 07:34:00
116424    35811    862    2017-08-26 09:10:00    2017-08-26 09:10:00
116425    35812    561    2017-08-26 03:57:00    2017-08-26 03:57:00
116426    35812    775    2017-08-26 07:38:00    2017-08-26 07:38:00
116427    35812    472    2017-08-26 10:11:00    2017-08-26 10:11:00
116428    35812    719    2017-08-26 12:39:00    2017-08-26 12:39:00
116429    35812    588    2017-08-26 10:38:00    2017-08-26 10:38:00
116430    35813    540    2017-08-26 23:05:00    2017-08-26 23:05:00
116431    35813    809    2017-08-26 02:48:00    2017-08-26 02:48:00
116432    35813    490    2017-08-26 11:39:00    2017-08-26 11:39:00
116433    35813    875    2017-08-26 01:07:00    2017-08-26 01:07:00
116434    35813    496    2017-08-26 01:33:00    2017-08-26 01:33:00
116435    35814    788    2017-08-26 22:16:00    2017-08-26 22:16:00
116436    35814    884    2017-08-26 13:43:00    2017-08-26 13:43:00
116437    35814    739    2017-08-26 16:32:00    2017-08-26 16:32:00
116438    35814    732    2017-08-26 11:40:00    2017-08-26 11:40:00
116439    35814    649    2017-08-26 18:05:00    2017-08-26 18:05:00
116440    35815    858    2017-08-26 13:52:00    2017-08-26 13:52:00
116441    35815    708    2017-08-26 03:48:00    2017-08-26 03:48:00
116442    35815    944    2017-08-26 12:50:00    2017-08-26 12:50:00
116443    35815    625    2017-08-26 21:09:00    2017-08-26 21:09:00
116444    35815    711    2017-08-26 21:39:00    2017-08-26 21:39:00
116445    35816    837    2017-08-26 11:57:00    2017-08-26 11:57:00
116446    35816    900    2017-08-26 05:50:00    2017-08-26 05:50:00
116447    35816    760    2017-08-26 18:14:00    2017-08-26 18:14:00
116448    35816    790    2017-08-26 15:26:00    2017-08-26 15:26:00
116449    35816    915    2017-08-26 04:46:00    2017-08-26 04:46:00
116450    35817    719    2017-08-26 10:56:00    2017-08-26 10:56:00
116451    35817    709    2017-08-26 04:20:00    2017-08-26 04:20:00
116452    35817    575    2017-08-26 17:57:00    2017-08-26 17:57:00
116453    35817    549    2017-08-26 12:28:00    2017-08-26 12:28:00
116454    35817    685    2017-08-26 04:52:00    2017-08-26 04:52:00
116455    35818    728    2017-08-26 05:07:00    2017-08-26 05:07:00
116456    35818    899    2017-08-26 06:25:00    2017-08-26 06:25:00
116457    35818    904    2017-08-26 04:09:00    2017-08-26 04:09:00
116458    35818    914    2017-08-26 15:51:00    2017-08-26 15:51:00
116459    35818    832    2017-08-26 15:09:00    2017-08-26 15:09:00
116460    35819    602    2017-08-26 07:06:00    2017-08-26 07:06:00
116461    35819    938    2017-08-26 01:55:00    2017-08-26 01:55:00
116462    35819    676    2017-08-26 07:23:00    2017-08-26 07:23:00
116463    35819    646    2017-08-26 11:18:00    2017-08-26 11:18:00
116464    35819    474    2017-08-26 11:08:00    2017-08-26 11:08:00
116465    35820    508    2017-08-26 11:12:00    2017-08-26 11:12:00
116466    35820    862    2017-08-26 06:08:00    2017-08-26 06:08:00
116467    35820    738    2017-08-26 08:30:00    2017-08-26 08:30:00
116468    35820    647    2017-08-26 18:42:00    2017-08-26 18:42:00
116469    35820    803    2017-08-26 08:03:00    2017-08-26 08:03:00
116470    35821    661    2017-08-26 12:47:00    2017-08-26 12:47:00
116471    35821    569    2017-08-26 09:19:00    2017-08-26 09:19:00
116472    35821    952    2017-08-26 11:07:00    2017-08-26 11:07:00
116473    35821    612    2017-08-26 14:59:00    2017-08-26 14:59:00
116474    35821    858    2017-08-26 05:53:00    2017-08-26 05:53:00
116475    35822    486    2017-08-26 12:58:00    2017-08-26 12:58:00
116476    35822    927    2017-08-26 23:07:00    2017-08-26 23:07:00
116477    35822    639    2017-08-26 05:01:00    2017-08-26 05:01:00
116478    35822    890    2017-08-26 18:06:00    2017-08-26 18:06:00
116479    35822    601    2017-08-26 20:35:00    2017-08-26 20:35:00
116480    35823    731    2017-08-26 01:11:00    2017-08-26 01:11:00
116481    35823    675    2017-08-26 06:43:00    2017-08-26 06:43:00
116482    35823    780    2017-08-26 18:44:00    2017-08-26 18:44:00
116483    35823    646    2017-08-26 05:02:00    2017-08-26 05:02:00
116484    35823    687    2017-08-26 10:18:00    2017-08-26 10:18:00
116485    35824    538    2017-08-26 19:34:00    2017-08-26 19:34:00
116486    35824    687    2017-08-26 10:36:00    2017-08-26 10:36:00
116487    35824    705    2017-08-26 21:58:00    2017-08-26 21:58:00
116488    35824    871    2017-08-26 11:26:00    2017-08-26 11:26:00
116489    35824    793    2017-08-26 22:32:00    2017-08-26 22:32:00
116490    35825    723    2017-08-26 16:54:00    2017-08-26 16:54:00
116491    35825    474    2017-08-26 07:25:00    2017-08-26 07:25:00
116492    35825    627    2017-08-26 10:39:00    2017-08-26 10:39:00
116493    35825    583    2017-08-26 18:49:00    2017-08-26 18:49:00
116494    35825    737    2017-08-26 09:00:00    2017-08-26 09:00:00
116495    35826    498    2017-08-26 23:22:00    2017-08-26 23:22:00
116496    35826    595    2017-08-26 20:05:00    2017-08-26 20:05:00
116497    35826    864    2017-08-26 05:17:00    2017-08-26 05:17:00
116498    35826    910    2017-08-26 13:30:00    2017-08-26 13:30:00
116499    35826    784    2017-08-26 20:42:00    2017-08-26 20:42:00
116500    35827    911    2017-08-26 10:16:00    2017-08-26 10:16:00
116501    35827    690    2017-08-26 17:00:00    2017-08-26 17:00:00
116502    35827    956    2017-08-26 02:41:00    2017-08-26 02:41:00
116503    35827    666    2017-08-26 06:39:00    2017-08-26 06:39:00
116504    35827    756    2017-08-26 21:53:00    2017-08-26 21:53:00
116505    35828    702    2017-08-26 23:41:00    2017-08-26 23:41:00
116506    35828    944    2017-08-26 04:33:00    2017-08-26 04:33:00
116507    35828    598    2017-08-26 13:02:00    2017-08-26 13:02:00
116508    35828    496    2017-08-26 12:54:00    2017-08-26 12:54:00
116509    35828    739    2017-08-26 03:45:00    2017-08-26 03:45:00
116510    35829    611    2017-08-26 08:00:00    2017-08-26 08:00:00
116511    35829    666    2017-08-26 06:36:00    2017-08-26 06:36:00
116512    35829    794    2017-08-26 21:12:00    2017-08-26 21:12:00
116513    35829    545    2017-08-26 01:41:00    2017-08-26 01:41:00
116514    35829    811    2017-08-26 16:32:00    2017-08-26 16:32:00
116515    35830    477    2017-08-26 07:45:00    2017-08-26 07:45:00
116516    35830    731    2017-08-26 02:09:00    2017-08-26 02:09:00
116517    35830    701    2017-08-26 23:58:00    2017-08-26 23:58:00
116518    35830    513    2017-08-26 17:34:00    2017-08-26 17:34:00
116519    35830    867    2017-08-26 13:35:00    2017-08-26 13:35:00
116520    35831    756    2017-08-26 11:29:00    2017-08-26 11:29:00
116521    35831    489    2017-08-26 23:32:00    2017-08-26 23:32:00
116522    35831    758    2017-08-26 07:15:00    2017-08-26 07:15:00
116523    35831    838    2017-08-26 14:17:00    2017-08-26 14:17:00
116524    35831    602    2017-08-26 11:02:00    2017-08-26 11:02:00
116525    35832    826    2017-08-26 21:18:00    2017-08-26 21:18:00
116526    35832    478    2017-08-26 11:22:00    2017-08-26 11:22:00
116527    35832    720    2017-08-26 05:00:00    2017-08-26 05:00:00
116528    35832    766    2017-08-26 21:17:00    2017-08-26 21:17:00
116529    35832    673    2017-08-26 07:18:00    2017-08-26 07:18:00
116530    35833    725    2017-08-26 12:47:00    2017-08-26 12:47:00
116531    35833    748    2017-08-26 21:12:00    2017-08-26 21:12:00
116532    35833    902    2017-08-26 12:37:00    2017-08-26 12:37:00
116533    35833    780    2017-08-26 07:07:00    2017-08-26 07:07:00
116534    35833    826    2017-08-26 23:06:00    2017-08-26 23:06:00
116535    35834    913    2017-08-26 08:46:00    2017-08-26 08:46:00
116536    35834    810    2017-08-26 22:18:00    2017-08-26 22:18:00
116537    35834    628    2017-08-26 15:16:00    2017-08-26 15:16:00
116538    35834    690    2017-08-26 12:24:00    2017-08-26 12:24:00
116539    35834    561    2017-08-26 04:25:00    2017-08-26 04:25:00
116540    35835    531    2017-08-26 02:13:00    2017-08-26 02:13:00
116541    35835    775    2017-08-26 20:06:00    2017-08-26 20:06:00
116542    35835    632    2017-08-26 12:04:00    2017-08-26 12:04:00
116543    35835    779    2017-08-26 03:17:00    2017-08-26 03:17:00
116544    35835    700    2017-08-26 23:05:00    2017-08-26 23:05:00
116545    35836    806    2017-08-26 10:27:00    2017-08-26 10:27:00
116546    35836    586    2017-08-26 04:32:00    2017-08-26 04:32:00
116547    35836    879    2017-08-26 17:01:00    2017-08-26 17:01:00
116548    35836    576    2017-08-26 05:08:00    2017-08-26 05:08:00
116549    35836    467    2017-08-26 08:40:00    2017-08-26 08:40:00
116550    35837    562    2017-08-26 19:00:00    2017-08-26 19:00:00
116551    35837    600    2017-08-26 07:18:00    2017-08-26 07:18:00
116552    35837    744    2017-08-26 12:53:00    2017-08-26 12:53:00
116553    35837    741    2017-08-26 04:55:00    2017-08-26 04:55:00
116554    35837    769    2017-08-26 01:24:00    2017-08-26 01:24:00
116555    35838    588    2017-08-27 08:30:00    2017-08-27 08:30:00
116556    35838    497    2017-08-27 04:47:00    2017-08-27 04:47:00
116557    35838    888    2017-08-27 02:23:00    2017-08-27 02:23:00
116558    35838    534    2017-08-27 18:23:00    2017-08-27 18:23:00
116559    35838    813    2017-08-27 19:36:00    2017-08-27 19:36:00
116560    35839    702    2017-08-27 23:57:00    2017-08-27 23:57:00
116561    35839    685    2017-08-27 17:04:00    2017-08-27 17:04:00
116562    35839    836    2017-08-27 02:03:00    2017-08-27 02:03:00
116563    35839    879    2017-08-27 03:40:00    2017-08-27 03:40:00
116564    35839    604    2017-08-27 03:25:00    2017-08-27 03:25:00
116565    35840    771    2017-08-27 11:21:00    2017-08-27 11:21:00
116566    35840    710    2017-08-27 19:49:00    2017-08-27 19:49:00
116567    35840    599    2017-08-27 04:09:00    2017-08-27 04:09:00
116568    35840    549    2017-08-27 13:34:00    2017-08-27 13:34:00
116569    35840    625    2017-08-27 23:24:00    2017-08-27 23:24:00
116570    35841    826    2017-08-27 10:29:00    2017-08-27 10:29:00
116571    35841    823    2017-08-27 16:42:00    2017-08-27 16:42:00
116572    35841    894    2017-08-27 09:32:00    2017-08-27 09:32:00
116573    35841    588    2017-08-27 09:00:00    2017-08-27 09:00:00
116574    35841    903    2017-08-27 17:12:00    2017-08-27 17:12:00
116575    35842    809    2017-08-27 19:20:00    2017-08-27 19:20:00
116576    35842    640    2017-08-27 20:49:00    2017-08-27 20:49:00
116577    35842    568    2017-08-27 19:38:00    2017-08-27 19:38:00
116578    35842    602    2017-08-27 03:26:00    2017-08-27 03:26:00
116579    35842    742    2017-08-27 06:21:00    2017-08-27 06:21:00
116580    35843    775    2017-08-28 12:48:00    2017-08-28 12:48:00
116581    35843    863    2017-08-28 07:43:00    2017-08-28 07:43:00
116582    35843    884    2017-08-28 19:30:00    2017-08-28 19:30:00
116583    35843    741    2017-08-28 14:03:00    2017-08-28 14:03:00
116584    35843    602    2017-08-28 13:00:00    2017-08-28 13:00:00
116585    35844    894    2017-08-28 07:19:00    2017-08-28 07:19:00
116586    35844    707    2017-08-28 13:25:00    2017-08-28 13:25:00
116587    35844    601    2017-08-28 11:24:00    2017-08-28 11:24:00
116588    35844    808    2017-08-28 18:04:00    2017-08-28 18:04:00
116589    35844    768    2017-08-28 08:36:00    2017-08-28 08:36:00
116590    35845    896    2017-08-28 10:36:00    2017-08-28 10:36:00
116591    35845    507    2017-08-28 23:34:00    2017-08-28 23:34:00
116592    35845    556    2017-08-28 06:45:00    2017-08-28 06:45:00
116593    35845    548    2017-08-28 18:18:00    2017-08-28 18:18:00
116594    35845    613    2017-08-28 19:30:00    2017-08-28 19:30:00
116595    35846    801    2017-08-28 09:52:00    2017-08-28 09:52:00
116596    35846    605    2017-08-28 16:16:00    2017-08-28 16:16:00
116597    35846    610    2017-08-28 05:01:00    2017-08-28 05:01:00
116598    35846    579    2017-08-28 21:42:00    2017-08-28 21:42:00
116599    35846    583    2017-08-28 06:01:00    2017-08-28 06:01:00
116600    35847    880    2017-08-28 12:34:00    2017-08-28 12:34:00
116601    35847    672    2017-08-28 14:22:00    2017-08-28 14:22:00
116602    35847    834    2017-08-28 22:38:00    2017-08-28 22:38:00
116603    35847    684    2017-08-28 18:04:00    2017-08-28 18:04:00
116604    35847    771    2017-08-28 18:06:00    2017-08-28 18:06:00
116605    35848    829    2017-08-28 07:01:00    2017-08-28 07:01:00
116606    35848    842    2017-08-28 16:11:00    2017-08-28 16:11:00
116607    35848    557    2017-08-28 17:31:00    2017-08-28 17:31:00
116608    35848    554    2017-08-28 05:00:00    2017-08-28 05:00:00
116609    35848    473    2017-08-28 14:08:00    2017-08-28 14:08:00
116610    35849    505    2017-08-28 17:51:00    2017-08-28 17:51:00
116611    35849    853    2017-08-28 06:20:00    2017-08-28 06:20:00
116612    35849    954    2017-08-28 06:14:00    2017-08-28 06:14:00
116613    35849    939    2017-08-28 21:34:00    2017-08-28 21:34:00
116614    35849    772    2017-08-28 22:05:00    2017-08-28 22:05:00
116615    35850    900    2017-08-28 05:28:00    2017-08-28 05:28:00
116616    35850    825    2017-08-28 03:45:00    2017-08-28 03:45:00
116617    35850    478    2017-08-28 13:53:00    2017-08-28 13:53:00
116618    35850    507    2017-08-28 17:09:00    2017-08-28 17:09:00
116619    35850    699    2017-08-28 03:04:00    2017-08-28 03:04:00
116620    35851    613    2017-08-28 11:55:00    2017-08-28 11:55:00
116621    35851    671    2017-08-28 08:06:00    2017-08-28 08:06:00
116622    35851    483    2017-08-28 09:01:00    2017-08-28 09:01:00
116623    35851    787    2017-08-28 03:05:00    2017-08-28 03:05:00
116624    35851    925    2017-08-28 05:29:00    2017-08-28 05:29:00
116625    35852    473    2017-08-28 03:44:00    2017-08-28 03:44:00
116626    35852    826    2017-08-28 16:10:00    2017-08-28 16:10:00
116627    35852    592    2017-08-28 23:53:00    2017-08-28 23:53:00
116628    35852    624    2017-08-28 09:04:00    2017-08-28 09:04:00
116629    35852    874    2017-08-28 01:04:00    2017-08-28 01:04:00
116630    35853    474    2017-08-28 14:34:00    2017-08-28 14:34:00
116631    35853    697    2017-08-28 13:00:00    2017-08-28 13:00:00
116632    35853    820    2017-08-28 21:17:00    2017-08-28 21:17:00
116633    35853    586    2017-08-28 11:30:00    2017-08-28 11:30:00
116634    35853    877    2017-08-28 11:10:00    2017-08-28 11:10:00
116635    35854    814    2017-08-28 15:43:00    2017-08-28 15:43:00
116636    35854    525    2017-08-28 06:41:00    2017-08-28 06:41:00
116637    35854    549    2017-08-28 02:40:00    2017-08-28 02:40:00
116638    35854    836    2017-08-28 17:33:00    2017-08-28 17:33:00
116639    35854    465    2017-08-28 05:53:00    2017-08-28 05:53:00
116640    35855    552    2017-08-28 06:47:00    2017-08-28 06:47:00
116641    35855    863    2017-08-28 13:43:00    2017-08-28 13:43:00
116642    35855    672    2017-08-28 11:07:00    2017-08-28 11:07:00
116643    35855    528    2017-08-28 06:30:00    2017-08-28 06:30:00
116644    35855    721    2017-08-28 11:45:00    2017-08-28 11:45:00
116645    35856    473    2017-08-28 19:38:00    2017-08-28 19:38:00
116646    35856    695    2017-08-28 02:48:00    2017-08-28 02:48:00
116647    35856    804    2017-08-28 18:28:00    2017-08-28 18:28:00
116648    35856    658    2017-08-28 14:45:00    2017-08-28 14:45:00
116649    35856    681    2017-08-28 21:51:00    2017-08-28 21:51:00
116650    35857    642    2017-08-28 03:27:00    2017-08-28 03:27:00
116651    35857    566    2017-08-28 12:49:00    2017-08-28 12:49:00
116652    35857    624    2017-08-28 02:44:00    2017-08-28 02:44:00
116653    35857    826    2017-08-28 17:25:00    2017-08-28 17:25:00
116654    35857    579    2017-08-28 13:21:00    2017-08-28 13:21:00
116655    35858    570    2017-08-28 08:52:00    2017-08-28 08:52:00
116656    35858    885    2017-08-28 09:41:00    2017-08-28 09:41:00
116657    35858    862    2017-08-28 09:28:00    2017-08-28 09:28:00
116658    35858    767    2017-08-28 01:28:00    2017-08-28 01:28:00
116659    35858    717    2017-08-28 13:34:00    2017-08-28 13:34:00
116660    35859    511    2017-08-28 14:57:00    2017-08-28 14:57:00
116661    35859    579    2017-08-28 17:37:00    2017-08-28 17:37:00
116662    35859    476    2017-08-28 11:30:00    2017-08-28 11:30:00
116663    35859    728    2017-08-28 01:57:00    2017-08-28 01:57:00
116664    35859    889    2017-08-28 08:49:00    2017-08-28 08:49:00
116665    35860    669    2017-08-28 23:57:00    2017-08-28 23:57:00
116666    35860    921    2017-08-28 06:09:00    2017-08-28 06:09:00
116667    35860    945    2017-08-28 11:39:00    2017-08-28 11:39:00
116668    35860    549    2017-08-28 11:42:00    2017-08-28 11:42:00
116669    35860    841    2017-08-28 11:15:00    2017-08-28 11:15:00
116670    35861    770    2017-08-29 10:26:00    2017-08-29 10:26:00
116671    35861    664    2017-08-29 01:06:00    2017-08-29 01:06:00
116672    35861    650    2017-08-29 01:36:00    2017-08-29 01:36:00
116673    35861    949    2017-08-29 13:00:00    2017-08-29 13:00:00
116674    35861    598    2017-08-29 11:40:00    2017-08-29 11:40:00
116675    35862    733    2017-08-29 20:30:00    2017-08-29 20:30:00
116676    35862    560    2017-08-29 23:51:00    2017-08-29 23:51:00
116677    35862    615    2017-08-29 09:02:00    2017-08-29 09:02:00
116678    35862    490    2017-08-29 17:07:00    2017-08-29 17:07:00
116679    35862    496    2017-08-29 03:23:00    2017-08-29 03:23:00
116680    35863    844    2017-08-29 14:56:00    2017-08-29 14:56:00
116681    35863    917    2017-08-29 15:02:00    2017-08-29 15:02:00
116682    35863    705    2017-08-29 09:50:00    2017-08-29 09:50:00
116683    35863    537    2017-08-29 16:30:00    2017-08-29 16:30:00
116684    35863    685    2017-08-29 03:14:00    2017-08-29 03:14:00
116685    35864    933    2017-08-29 10:35:00    2017-08-29 10:35:00
116686    35864    865    2017-08-29 06:07:00    2017-08-29 06:07:00
116687    35864    671    2017-08-29 20:58:00    2017-08-29 20:58:00
116688    35864    761    2017-08-29 15:46:00    2017-08-29 15:46:00
116689    35864    682    2017-08-29 10:07:00    2017-08-29 10:07:00
116690    35865    773    2017-08-29 07:51:00    2017-08-29 07:51:00
116691    35865    850    2017-08-29 08:28:00    2017-08-29 08:28:00
116692    35865    615    2017-08-29 07:31:00    2017-08-29 07:31:00
116693    35865    745    2017-08-29 12:23:00    2017-08-29 12:23:00
116694    35865    756    2017-08-29 16:29:00    2017-08-29 16:29:00
116695    35866    826    2017-08-29 13:00:00    2017-08-29 13:00:00
116696    35866    671    2017-08-29 03:23:00    2017-08-29 03:23:00
116697    35866    773    2017-08-29 05:53:00    2017-08-29 05:53:00
116698    35866    534    2017-08-29 12:52:00    2017-08-29 12:52:00
116699    35866    880    2017-08-29 13:23:00    2017-08-29 13:23:00
116700    35867    474    2017-08-29 01:12:00    2017-08-29 01:12:00
116701    35867    851    2017-08-29 04:17:00    2017-08-29 04:17:00
116702    35867    959    2017-08-29 19:15:00    2017-08-29 19:15:00
116703    35867    680    2017-08-29 08:35:00    2017-08-29 08:35:00
116704    35867    651    2017-08-29 02:47:00    2017-08-29 02:47:00
116705    35868    760    2017-08-29 12:55:00    2017-08-29 12:55:00
116706    35868    813    2017-08-29 06:02:00    2017-08-29 06:02:00
116707    35868    607    2017-08-29 18:24:00    2017-08-29 18:24:00
116708    35868    582    2017-08-29 05:22:00    2017-08-29 05:22:00
116709    35868    859    2017-08-29 13:44:00    2017-08-29 13:44:00
116710    35869    687    2017-08-29 20:58:00    2017-08-29 20:58:00
116711    35869    821    2017-08-29 09:25:00    2017-08-29 09:25:00
116712    35869    529    2017-08-29 20:47:00    2017-08-29 20:47:00
116713    35869    957    2017-08-29 03:22:00    2017-08-29 03:22:00
116714    35869    925    2017-08-29 20:15:00    2017-08-29 20:15:00
116715    35870    625    2017-08-29 22:49:00    2017-08-29 22:49:00
116716    35870    825    2017-08-29 15:05:00    2017-08-29 15:05:00
116717    35870    474    2017-08-29 19:31:00    2017-08-29 19:31:00
116718    35870    698    2017-08-29 18:17:00    2017-08-29 18:17:00
116719    35870    950    2017-08-29 17:05:00    2017-08-29 17:05:00
116720    35871    858    2017-08-29 22:05:00    2017-08-29 22:05:00
116721    35871    859    2017-08-29 01:49:00    2017-08-29 01:49:00
116722    35871    738    2017-08-29 23:45:00    2017-08-29 23:45:00
116723    35871    830    2017-08-29 14:24:00    2017-08-29 14:24:00
116724    35871    827    2017-08-29 13:35:00    2017-08-29 13:35:00
116725    35872    942    2017-08-29 21:09:00    2017-08-29 21:09:00
116726    35872    600    2017-08-29 06:35:00    2017-08-29 06:35:00
116727    35872    548    2017-08-29 05:38:00    2017-08-29 05:38:00
116728    35872    490    2017-08-29 17:16:00    2017-08-29 17:16:00
116729    35872    887    2017-08-29 12:36:00    2017-08-29 12:36:00
116730    35873    879    2017-08-29 06:29:00    2017-08-29 06:29:00
116731    35873    857    2017-08-29 02:16:00    2017-08-29 02:16:00
116732    35873    607    2017-08-29 03:48:00    2017-08-29 03:48:00
116733    35873    877    2017-08-29 12:42:00    2017-08-29 12:42:00
116734    35873    896    2017-08-29 09:41:00    2017-08-29 09:41:00
116735    35874    615    2017-08-29 10:05:00    2017-08-29 10:05:00
116736    35874    745    2017-08-29 19:37:00    2017-08-29 19:37:00
116737    35874    518    2017-08-29 10:50:00    2017-08-29 10:50:00
116738    35874    848    2017-08-29 22:46:00    2017-08-29 22:46:00
116739    35874    590    2017-08-29 14:40:00    2017-08-29 14:40:00
116740    35875    684    2017-08-29 20:44:00    2017-08-29 20:44:00
116741    35875    931    2017-08-29 21:38:00    2017-08-29 21:38:00
116742    35875    488    2017-08-29 07:09:00    2017-08-29 07:09:00
116743    35875    631    2017-08-29 13:41:00    2017-08-29 13:41:00
116744    35875    508    2017-08-29 21:11:00    2017-08-29 21:11:00
116745    35876    543    2017-08-29 18:55:00    2017-08-29 18:55:00
116746    35876    603    2017-08-29 06:39:00    2017-08-29 06:39:00
116747    35876    776    2017-08-29 13:20:00    2017-08-29 13:20:00
116748    35876    554    2017-08-29 06:18:00    2017-08-29 06:18:00
116749    35876    470    2017-08-29 11:09:00    2017-08-29 11:09:00
116750    35877    850    2017-08-29 05:32:00    2017-08-29 05:32:00
116751    35877    951    2017-08-29 09:02:00    2017-08-29 09:02:00
116752    35877    651    2017-08-29 06:44:00    2017-08-29 06:44:00
116753    35877    464    2017-08-29 03:33:00    2017-08-29 03:33:00
116754    35877    626    2017-08-29 08:48:00    2017-08-29 08:48:00
116755    35878    728    2017-08-29 22:00:00    2017-08-29 22:00:00
116756    35878    847    2017-08-29 17:55:00    2017-08-29 17:55:00
116757    35878    819    2017-08-29 19:52:00    2017-08-29 19:52:00
116758    35878    488    2017-08-29 13:21:00    2017-08-29 13:21:00
116759    35878    564    2017-08-29 11:32:00    2017-08-29 11:32:00
116760    35879    569    2017-08-29 05:12:00    2017-08-29 05:12:00
116761    35879    757    2017-08-29 16:26:00    2017-08-29 16:26:00
116762    35879    490    2017-08-29 23:51:00    2017-08-29 23:51:00
116763    35879    490    2017-08-29 19:02:00    2017-08-29 19:02:00
116764    35879    574    2017-08-29 20:28:00    2017-08-29 20:28:00
116765    35880    773    2017-08-29 04:00:00    2017-08-29 04:00:00
116766    35880    738    2017-08-29 16:00:00    2017-08-29 16:00:00
116767    35880    670    2017-08-29 04:26:00    2017-08-29 04:26:00
116768    35880    954    2017-08-29 05:18:00    2017-08-29 05:18:00
116769    35880    892    2017-08-29 03:42:00    2017-08-29 03:42:00
116770    35881    951    2017-08-29 08:49:00    2017-08-29 08:49:00
116771    35881    551    2017-08-29 21:38:00    2017-08-29 21:38:00
116772    35881    956    2017-08-29 16:42:00    2017-08-29 16:42:00
116773    35881    818    2017-08-29 12:01:00    2017-08-29 12:01:00
116774    35881    642    2017-08-29 14:42:00    2017-08-29 14:42:00
116775    35882    855    2017-08-29 16:07:00    2017-08-29 16:07:00
116776    35882    587    2017-08-29 11:45:00    2017-08-29 11:45:00
116777    35882    797    2017-08-29 12:45:00    2017-08-29 12:45:00
116778    35882    908    2017-08-29 23:18:00    2017-08-29 23:18:00
116779    35882    860    2017-08-29 14:02:00    2017-08-29 14:02:00
116780    35883    531    2017-08-29 07:36:00    2017-08-29 07:36:00
116781    35883    579    2017-08-29 13:46:00    2017-08-29 13:46:00
116782    35883    847    2017-08-29 22:59:00    2017-08-29 22:59:00
116783    35883    597    2017-08-29 01:59:00    2017-08-29 01:59:00
116784    35883    920    2017-08-29 04:41:00    2017-08-29 04:41:00
116785    35884    723    2017-08-29 20:59:00    2017-08-29 20:59:00
116786    35884    857    2017-08-29 18:54:00    2017-08-29 18:54:00
116787    35884    571    2017-08-29 16:47:00    2017-08-29 16:47:00
116788    35884    900    2017-08-29 10:45:00    2017-08-29 10:45:00
116789    35884    932    2017-08-29 05:38:00    2017-08-29 05:38:00
116790    35885    890    2017-08-29 02:40:00    2017-08-29 02:40:00
116791    35885    795    2017-08-29 13:59:00    2017-08-29 13:59:00
116792    35885    949    2017-08-29 20:22:00    2017-08-29 20:22:00
116793    35885    553    2017-08-29 18:59:00    2017-08-29 18:59:00
116794    35885    509    2017-08-29 08:44:00    2017-08-29 08:44:00
116795    35886    511    2017-08-29 03:00:00    2017-08-29 03:00:00
116796    35886    755    2017-08-29 05:47:00    2017-08-29 05:47:00
116797    35886    483    2017-08-29 05:07:00    2017-08-29 05:07:00
116798    35886    532    2017-08-29 18:55:00    2017-08-29 18:55:00
116799    35886    473    2017-08-29 20:35:00    2017-08-29 20:35:00
116800    35887    853    2017-08-29 02:16:00    2017-08-29 02:16:00
116801    35887    746    2017-08-29 12:38:00    2017-08-29 12:38:00
116802    35887    828    2017-08-29 20:09:00    2017-08-29 20:09:00
116803    35887    943    2017-08-29 20:51:00    2017-08-29 20:51:00
116804    35887    509    2017-08-29 19:44:00    2017-08-29 19:44:00
116805    35888    662    2017-08-29 21:51:00    2017-08-29 21:51:00
116806    35888    652    2017-08-29 16:38:00    2017-08-29 16:38:00
116807    35888    773    2017-08-29 02:57:00    2017-08-29 02:57:00
116808    35888    904    2017-08-29 05:57:00    2017-08-29 05:57:00
116809    35888    919    2017-08-29 05:03:00    2017-08-29 05:03:00
116810    35889    712    2017-08-29 15:43:00    2017-08-29 15:43:00
116811    35889    791    2017-08-29 07:36:00    2017-08-29 07:36:00
116812    35889    785    2017-08-29 05:13:00    2017-08-29 05:13:00
116813    35889    501    2017-08-29 11:08:00    2017-08-29 11:08:00
116814    35889    910    2017-08-29 04:18:00    2017-08-29 04:18:00
116815    35890    918    2017-08-29 01:41:00    2017-08-29 01:41:00
116816    35890    715    2017-08-29 01:00:00    2017-08-29 01:00:00
116817    35890    899    2017-08-29 22:16:00    2017-08-29 22:16:00
116818    35890    932    2017-08-29 19:45:00    2017-08-29 19:45:00
116819    35890    585    2017-08-29 19:42:00    2017-08-29 19:42:00
116820    35891    657    2017-08-29 11:11:00    2017-08-29 11:11:00
116821    35891    848    2017-08-29 01:45:00    2017-08-29 01:45:00
116822    35891    536    2017-08-29 06:27:00    2017-08-29 06:27:00
116823    35891    510    2017-08-29 23:43:00    2017-08-29 23:43:00
116824    35891    510    2017-08-29 09:07:00    2017-08-29 09:07:00
116825    35892    802    2017-08-29 16:29:00    2017-08-29 16:29:00
116826    35892    904    2017-08-29 19:05:00    2017-08-29 19:05:00
116827    35892    721    2017-08-29 04:07:00    2017-08-29 04:07:00
116828    35892    947    2017-08-29 10:42:00    2017-08-29 10:42:00
116829    35892    785    2017-08-29 08:38:00    2017-08-29 08:38:00
116830    35893    895    2017-08-29 11:33:00    2017-08-29 11:33:00
116831    35893    790    2017-08-29 10:47:00    2017-08-29 10:47:00
116832    35893    790    2017-08-29 04:16:00    2017-08-29 04:16:00
116833    35893    810    2017-08-29 16:33:00    2017-08-29 16:33:00
116834    35893    702    2017-08-29 11:16:00    2017-08-29 11:16:00
116835    35894    837    2017-08-29 11:20:00    2017-08-29 11:20:00
116836    35894    839    2017-08-29 09:37:00    2017-08-29 09:37:00
116837    35894    493    2017-08-29 10:00:00    2017-08-29 10:00:00
116838    35894    493    2017-08-29 14:20:00    2017-08-29 14:20:00
116839    35894    603    2017-08-29 12:27:00    2017-08-29 12:27:00
116840    35895    670    2017-08-29 03:01:00    2017-08-29 03:01:00
116841    35895    723    2017-08-29 11:42:00    2017-08-29 11:42:00
116842    35895    601    2017-08-29 10:43:00    2017-08-29 10:43:00
116843    35895    698    2017-08-29 03:58:00    2017-08-29 03:58:00
116844    35895    608    2017-08-29 22:23:00    2017-08-29 22:23:00
116845    35896    873    2017-08-29 21:14:00    2017-08-29 21:14:00
116846    35896    795    2017-08-29 01:32:00    2017-08-29 01:32:00
116847    35896    774    2017-08-29 04:33:00    2017-08-29 04:33:00
116848    35896    767    2017-08-29 06:33:00    2017-08-29 06:33:00
116849    35896    839    2017-08-29 08:12:00    2017-08-29 08:12:00
116850    35897    894    2017-08-29 04:40:00    2017-08-29 04:40:00
116851    35897    645    2017-08-29 22:03:00    2017-08-29 22:03:00
116852    35897    830    2017-08-29 09:51:00    2017-08-29 09:51:00
116853    35897    544    2017-08-29 14:45:00    2017-08-29 14:45:00
116854    35897    757    2017-08-29 09:41:00    2017-08-29 09:41:00
116855    35898    673    2017-08-29 23:42:00    2017-08-29 23:42:00
116856    35898    918    2017-08-29 03:24:00    2017-08-29 03:24:00
116857    35898    586    2017-08-29 21:32:00    2017-08-29 21:32:00
116858    35898    759    2017-08-29 17:30:00    2017-08-29 17:30:00
116859    35898    784    2017-08-29 16:55:00    2017-08-29 16:55:00
116860    35899    874    2017-08-29 12:16:00    2017-08-29 12:16:00
116861    35899    882    2017-08-29 04:21:00    2017-08-29 04:21:00
116862    35899    534    2017-08-29 01:42:00    2017-08-29 01:42:00
116863    35899    817    2017-08-29 08:52:00    2017-08-29 08:52:00
116864    35899    900    2017-08-29 11:47:00    2017-08-29 11:47:00
116865    35900    908    2017-08-29 03:03:00    2017-08-29 03:03:00
116866    35900    927    2017-08-29 21:42:00    2017-08-29 21:42:00
116867    35900    856    2017-08-29 02:47:00    2017-08-29 02:47:00
116868    35900    917    2017-08-29 01:39:00    2017-08-29 01:39:00
116869    35900    776    2017-08-29 16:40:00    2017-08-29 16:40:00
116870    35901    484    2017-08-29 18:22:00    2017-08-29 18:22:00
116871    35901    935    2017-08-29 19:54:00    2017-08-29 19:54:00
116872    35901    915    2017-08-29 09:24:00    2017-08-29 09:24:00
116873    35901    912    2017-08-29 20:14:00    2017-08-29 20:14:00
116874    35901    624    2017-08-29 21:08:00    2017-08-29 21:08:00
116875    35902    527    2017-08-29 15:25:00    2017-08-29 15:25:00
116876    35902    728    2017-08-29 23:46:00    2017-08-29 23:46:00
116877    35902    722    2017-08-29 20:57:00    2017-08-29 20:57:00
116878    35902    689    2017-08-29 21:33:00    2017-08-29 21:33:00
116879    35902    611    2017-08-29 01:30:00    2017-08-29 01:30:00
116880    35903    911    2017-08-29 19:03:00    2017-08-29 19:03:00
116881    35903    521    2017-08-29 20:53:00    2017-08-29 20:53:00
116882    35903    762    2017-08-29 16:25:00    2017-08-29 16:25:00
116883    35903    789    2017-08-29 07:04:00    2017-08-29 07:04:00
116884    35903    750    2017-08-29 15:06:00    2017-08-29 15:06:00
116885    35904    913    2017-08-29 01:55:00    2017-08-29 01:55:00
116886    35904    907    2017-08-29 09:22:00    2017-08-29 09:22:00
116887    35904    901    2017-08-29 07:17:00    2017-08-29 07:17:00
116888    35904    828    2017-08-29 18:01:00    2017-08-29 18:01:00
116889    35904    717    2017-08-29 08:03:00    2017-08-29 08:03:00
116890    35905    897    2017-08-29 15:06:00    2017-08-29 15:06:00
116891    35905    570    2017-08-29 01:03:00    2017-08-29 01:03:00
116892    35905    651    2017-08-29 21:39:00    2017-08-29 21:39:00
116893    35905    496    2017-08-29 10:03:00    2017-08-29 10:03:00
116894    35905    745    2017-08-29 05:05:00    2017-08-29 05:05:00
116895    35906    743    2017-08-29 17:06:00    2017-08-29 17:06:00
116896    35906    874    2017-08-29 03:31:00    2017-08-29 03:31:00
116897    35906    865    2017-08-29 06:05:00    2017-08-29 06:05:00
116898    35906    622    2017-08-29 16:01:00    2017-08-29 16:01:00
116899    35906    670    2017-08-29 14:18:00    2017-08-29 14:18:00
116900    35907    647    2017-08-29 13:16:00    2017-08-29 13:16:00
116901    35907    812    2017-08-29 14:52:00    2017-08-29 14:52:00
116902    35907    531    2017-08-29 21:46:00    2017-08-29 21:46:00
116903    35907    922    2017-08-29 22:53:00    2017-08-29 22:53:00
116904    35907    802    2017-08-29 14:15:00    2017-08-29 14:15:00
116905    35908    488    2017-08-29 09:47:00    2017-08-29 09:47:00
116906    35908    807    2017-08-29 14:51:00    2017-08-29 14:51:00
116907    35908    822    2017-08-29 04:34:00    2017-08-29 04:34:00
116908    35908    796    2017-08-29 16:58:00    2017-08-29 16:58:00
116909    35908    933    2017-08-29 21:59:00    2017-08-29 21:59:00
116910    35909    876    2017-08-29 18:39:00    2017-08-29 18:39:00
116911    35909    947    2017-08-29 21:34:00    2017-08-29 21:34:00
116912    35909    729    2017-08-29 01:37:00    2017-08-29 01:37:00
116913    35909    494    2017-08-29 16:46:00    2017-08-29 16:46:00
116914    35909    479    2017-08-29 14:31:00    2017-08-29 14:31:00
116915    35910    868    2017-08-29 09:33:00    2017-08-29 09:33:00
116916    35910    534    2017-08-29 02:17:00    2017-08-29 02:17:00
116917    35910    652    2017-08-29 05:38:00    2017-08-29 05:38:00
116918    35910    913    2017-08-29 04:29:00    2017-08-29 04:29:00
116919    35910    807    2017-08-29 11:28:00    2017-08-29 11:28:00
116920    35911    475    2017-08-29 07:29:00    2017-08-29 07:29:00
116921    35911    939    2017-08-29 21:32:00    2017-08-29 21:32:00
116922    35911    629    2017-08-29 13:28:00    2017-08-29 13:28:00
116923    35911    757    2017-08-29 02:00:00    2017-08-29 02:00:00
116924    35911    526    2017-08-29 15:38:00    2017-08-29 15:38:00
116925    35912    492    2017-08-29 02:44:00    2017-08-29 02:44:00
116926    35912    744    2017-08-29 15:53:00    2017-08-29 15:53:00
116927    35912    846    2017-08-29 03:31:00    2017-08-29 03:31:00
116928    35912    908    2017-08-29 23:45:00    2017-08-29 23:45:00
116929    35912    866    2017-08-29 18:36:00    2017-08-29 18:36:00
116930    35913    944    2017-08-29 21:10:00    2017-08-29 21:10:00
116931    35913    824    2017-08-29 15:24:00    2017-08-29 15:24:00
116932    35913    508    2017-08-29 12:58:00    2017-08-29 12:58:00
116933    35913    523    2017-08-29 05:20:00    2017-08-29 05:20:00
116934    35913    713    2017-08-29 05:40:00    2017-08-29 05:40:00
116935    35914    894    2017-08-29 04:05:00    2017-08-29 04:05:00
116936    35914    750    2017-08-29 01:32:00    2017-08-29 01:32:00
116937    35914    788    2017-08-29 19:42:00    2017-08-29 19:42:00
116938    35914    876    2017-08-29 03:04:00    2017-08-29 03:04:00
116939    35914    651    2017-08-29 21:18:00    2017-08-29 21:18:00
116940    35915    535    2017-08-29 17:08:00    2017-08-29 17:08:00
116941    35915    858    2017-08-29 21:32:00    2017-08-29 21:32:00
116942    35915    600    2017-08-29 08:20:00    2017-08-29 08:20:00
116943    35915    630    2017-08-29 03:43:00    2017-08-29 03:43:00
116944    35915    743    2017-08-29 18:50:00    2017-08-29 18:50:00
116945    35916    579    2017-08-29 07:27:00    2017-08-29 07:27:00
116946    35916    789    2017-08-29 08:26:00    2017-08-29 08:26:00
116947    35916    677    2017-08-29 11:35:00    2017-08-29 11:35:00
116948    35916    807    2017-08-29 08:03:00    2017-08-29 08:03:00
116949    35916    917    2017-08-29 08:53:00    2017-08-29 08:53:00
116950    35917    627    2017-08-29 20:00:00    2017-08-29 20:00:00
116951    35917    937    2017-08-29 20:38:00    2017-08-29 20:38:00
116952    35917    489    2017-08-29 22:51:00    2017-08-29 22:51:00
116953    35917    868    2017-08-29 22:52:00    2017-08-29 22:52:00
116954    35917    938    2017-08-29 05:17:00    2017-08-29 05:17:00
116955    35918    838    2017-08-29 17:48:00    2017-08-29 17:48:00
116956    35918    912    2017-08-29 02:43:00    2017-08-29 02:43:00
116957    35918    536    2017-08-29 04:00:00    2017-08-29 04:00:00
116958    35918    950    2017-08-29 12:31:00    2017-08-29 12:31:00
116959    35918    503    2017-08-29 20:19:00    2017-08-29 20:19:00
116960    35919    594    2017-08-29 18:27:00    2017-08-29 18:27:00
116961    35919    689    2017-08-29 04:05:00    2017-08-29 04:05:00
116962    35919    521    2017-08-29 21:16:00    2017-08-29 21:16:00
116963    35919    492    2017-08-29 05:59:00    2017-08-29 05:59:00
116964    35919    753    2017-08-29 21:01:00    2017-08-29 21:01:00
116965    35920    853    2017-08-29 05:31:00    2017-08-29 05:31:00
116966    35920    584    2017-08-29 04:00:00    2017-08-29 04:00:00
116967    35920    533    2017-08-29 09:57:00    2017-08-29 09:57:00
116968    35920    597    2017-08-29 03:19:00    2017-08-29 03:19:00
116969    35920    949    2017-08-29 06:28:00    2017-08-29 06:28:00
116970    35921    715    2017-08-29 03:34:00    2017-08-29 03:34:00
116971    35921    470    2017-08-29 16:15:00    2017-08-29 16:15:00
116972    35921    615    2017-08-29 17:27:00    2017-08-29 17:27:00
116973    35921    682    2017-08-29 15:09:00    2017-08-29 15:09:00
116974    35921    530    2017-08-29 07:18:00    2017-08-29 07:18:00
116975    35922    897    2017-08-29 01:32:00    2017-08-29 01:32:00
116976    35922    623    2017-08-29 04:58:00    2017-08-29 04:58:00
116977    35922    707    2017-08-29 23:58:00    2017-08-29 23:58:00
116978    35922    488    2017-08-29 19:13:00    2017-08-29 19:13:00
116979    35922    602    2017-08-29 18:59:00    2017-08-29 18:59:00
116980    35923    633    2017-08-29 16:27:00    2017-08-29 16:27:00
116981    35923    585    2017-08-29 19:00:00    2017-08-29 19:00:00
116982    35923    623    2017-08-29 18:42:00    2017-08-29 18:42:00
116983    35923    667    2017-08-29 19:46:00    2017-08-29 19:46:00
116984    35923    590    2017-08-29 08:12:00    2017-08-29 08:12:00
116985    35924    531    2017-08-29 16:32:00    2017-08-29 16:32:00
116986    35924    859    2017-08-29 17:24:00    2017-08-29 17:24:00
116987    35924    783    2017-08-29 01:45:00    2017-08-29 01:45:00
116988    35924    491    2017-08-29 02:02:00    2017-08-29 02:02:00
116989    35924    724    2017-08-29 09:09:00    2017-08-29 09:09:00
116990    35925    744    2017-08-29 01:13:00    2017-08-29 01:13:00
116991    35925    540    2017-08-29 07:12:00    2017-08-29 07:12:00
116992    35925    775    2017-08-29 13:45:00    2017-08-29 13:45:00
116993    35925    478    2017-08-29 17:18:00    2017-08-29 17:18:00
116994    35925    877    2017-08-29 14:01:00    2017-08-29 14:01:00
116995    35926    581    2017-08-29 03:31:00    2017-08-29 03:31:00
116996    35926    507    2017-08-29 12:07:00    2017-08-29 12:07:00
116997    35926    554    2017-08-29 10:42:00    2017-08-29 10:42:00
116998    35926    866    2017-08-29 23:58:00    2017-08-29 23:58:00
116999    35926    916    2017-08-29 14:59:00    2017-08-29 14:59:00
117000    35927    501    2017-08-29 23:13:00    2017-08-29 23:13:00
117001    35927    537    2017-08-29 05:17:00    2017-08-29 05:17:00
117002    35927    513    2017-08-29 20:59:00    2017-08-29 20:59:00
117003    35927    948    2017-08-29 08:32:00    2017-08-29 08:32:00
117004    35927    877    2017-08-29 17:01:00    2017-08-29 17:01:00
117005    35928    604    2017-08-29 11:27:00    2017-08-29 11:27:00
117006    35928    814    2017-08-29 05:49:00    2017-08-29 05:49:00
117007    35928    680    2017-08-29 13:41:00    2017-08-29 13:41:00
117008    35928    875    2017-08-29 13:56:00    2017-08-29 13:56:00
117009    35928    956    2017-08-29 21:05:00    2017-08-29 21:05:00
117010    35929    901    2017-08-29 03:03:00    2017-08-29 03:03:00
117011    35929    777    2017-08-29 17:19:00    2017-08-29 17:19:00
117012    35929    585    2017-08-29 02:46:00    2017-08-29 02:46:00
117013    35929    685    2017-08-29 20:51:00    2017-08-29 20:51:00
117014    35929    907    2017-08-29 19:39:00    2017-08-29 19:39:00
117015    35930    669    2017-08-29 09:22:00    2017-08-29 09:22:00
117016    35930    640    2017-08-29 17:45:00    2017-08-29 17:45:00
117017    35930    836    2017-08-29 14:12:00    2017-08-29 14:12:00
117018    35930    669    2017-08-29 20:08:00    2017-08-29 20:08:00
117019    35930    929    2017-08-29 13:18:00    2017-08-29 13:18:00
117020    35931    867    2017-08-29 01:28:00    2017-08-29 01:28:00
117021    35931    491    2017-08-29 22:56:00    2017-08-29 22:56:00
117022    35931    489    2017-08-29 22:12:00    2017-08-29 22:12:00
117023    35931    805    2017-08-29 23:44:00    2017-08-29 23:44:00
117024    35931    478    2017-08-29 06:21:00    2017-08-29 06:21:00
117025    35932    712    2017-08-29 04:38:00    2017-08-29 04:38:00
117026    35932    931    2017-08-29 17:25:00    2017-08-29 17:25:00
117027    35932    905    2017-08-29 19:37:00    2017-08-29 19:37:00
117028    35932    602    2017-08-29 11:10:00    2017-08-29 11:10:00
117029    35932    527    2017-08-29 02:10:00    2017-08-29 02:10:00
117030    35933    522    2017-08-29 02:55:00    2017-08-29 02:55:00
117031    35933    628    2017-08-29 18:58:00    2017-08-29 18:58:00
117032    35933    804    2017-08-29 13:39:00    2017-08-29 13:39:00
117033    35933    556    2017-08-29 04:24:00    2017-08-29 04:24:00
117034    35933    488    2017-08-29 21:40:00    2017-08-29 21:40:00
117035    35934    832    2017-08-29 02:42:00    2017-08-29 02:42:00
117036    35934    804    2017-08-29 20:13:00    2017-08-29 20:13:00
117037    35934    585    2017-08-29 05:39:00    2017-08-29 05:39:00
117038    35934    521    2017-08-29 22:19:00    2017-08-29 22:19:00
117039    35934    492    2017-08-29 22:30:00    2017-08-29 22:30:00
117040    35935    689    2017-08-29 14:22:00    2017-08-29 14:22:00
117041    35935    907    2017-08-29 10:21:00    2017-08-29 10:21:00
117042    35935    654    2017-08-29 11:48:00    2017-08-29 11:48:00
117043    35935    538    2017-08-29 23:03:00    2017-08-29 23:03:00
117044    35935    694    2017-08-29 08:27:00    2017-08-29 08:27:00
117045    35936    662    2017-08-29 02:25:00    2017-08-29 02:25:00
117046    35936    926    2017-08-29 10:32:00    2017-08-29 10:32:00
117047    35936    663    2017-08-29 03:17:00    2017-08-29 03:17:00
117048    35936    706    2017-08-29 20:47:00    2017-08-29 20:47:00
117049    35936    924    2017-08-29 01:23:00    2017-08-29 01:23:00
117050    35937    525    2017-08-29 18:34:00    2017-08-29 18:34:00
117051    35937    887    2017-08-29 11:47:00    2017-08-29 11:47:00
117052    35937    794    2017-08-29 14:18:00    2017-08-29 14:18:00
117053    35937    765    2017-08-29 05:54:00    2017-08-29 05:54:00
117054    35937    533    2017-08-29 21:31:00    2017-08-29 21:31:00
117055    35938    857    2017-08-29 09:29:00    2017-08-29 09:29:00
117056    35938    830    2017-08-29 17:56:00    2017-08-29 17:56:00
117057    35938    820    2017-08-29 14:35:00    2017-08-29 14:35:00
117058    35938    700    2017-08-29 22:15:00    2017-08-29 22:15:00
117059    35938    852    2017-08-29 06:21:00    2017-08-29 06:21:00
117060    35939    615    2017-08-29 22:07:00    2017-08-29 22:07:00
117061    35939    909    2017-08-29 11:51:00    2017-08-29 11:51:00
117062    35939    890    2017-08-29 01:44:00    2017-08-29 01:44:00
117063    35939    835    2017-08-29 07:17:00    2017-08-29 07:17:00
117064    35939    954    2017-08-29 23:54:00    2017-08-29 23:54:00
117065    35940    708    2017-08-29 03:57:00    2017-08-29 03:57:00
117066    35940    793    2017-08-29 16:47:00    2017-08-29 16:47:00
117067    35940    555    2017-08-29 04:12:00    2017-08-29 04:12:00
117068    35940    610    2017-08-29 02:43:00    2017-08-29 02:43:00
117069    35940    895    2017-08-29 17:12:00    2017-08-29 17:12:00
117070    35941    901    2017-08-29 02:33:00    2017-08-29 02:33:00
117071    35941    932    2017-08-29 13:05:00    2017-08-29 13:05:00
117072    35941    859    2017-08-29 06:58:00    2017-08-29 06:58:00
117073    35941    562    2017-08-29 17:02:00    2017-08-29 17:02:00
117074    35941    915    2017-08-29 23:19:00    2017-08-29 23:19:00
117075    35942    806    2017-08-29 20:47:00    2017-08-29 20:47:00
117076    35942    866    2017-08-29 03:27:00    2017-08-29 03:27:00
117077    35942    594    2017-08-29 01:23:00    2017-08-29 01:23:00
117078    35942    714    2017-08-29 13:54:00    2017-08-29 13:54:00
117079    35942    521    2017-08-29 08:44:00    2017-08-29 08:44:00
117080    35943    741    2017-08-29 05:39:00    2017-08-29 05:39:00
117081    35943    856    2017-08-29 13:37:00    2017-08-29 13:37:00
117082    35943    759    2017-08-29 20:32:00    2017-08-29 20:32:00
117083    35943    682    2017-08-29 23:04:00    2017-08-29 23:04:00
117084    35943    509    2017-08-29 12:21:00    2017-08-29 12:21:00
117085    35944    529    2017-08-29 01:38:00    2017-08-29 01:38:00
117086    35944    596    2017-08-29 05:37:00    2017-08-29 05:37:00
117087    35944    831    2017-08-29 01:21:00    2017-08-29 01:21:00
117088    35944    473    2017-08-29 20:55:00    2017-08-29 20:55:00
117089    35944    515    2017-08-29 11:55:00    2017-08-29 11:55:00
117090    35945    927    2017-08-29 15:32:00    2017-08-29 15:32:00
117091    35945    496    2017-08-29 15:32:00    2017-08-29 15:32:00
117092    35945    517    2017-08-29 05:35:00    2017-08-29 05:35:00
117093    35945    716    2017-08-29 05:41:00    2017-08-29 05:41:00
117094    35945    888    2017-08-29 10:01:00    2017-08-29 10:01:00
117095    35946    670    2017-08-29 05:29:00    2017-08-29 05:29:00
117096    35946    760    2017-08-29 19:21:00    2017-08-29 19:21:00
117097    35946    593    2017-08-29 11:00:00    2017-08-29 11:00:00
117098    35946    876    2017-08-29 21:22:00    2017-08-29 21:22:00
117099    35946    494    2017-08-29 22:16:00    2017-08-29 22:16:00
117100    35947    619    2017-08-29 10:28:00    2017-08-29 10:28:00
117101    35947    957    2017-08-29 02:24:00    2017-08-29 02:24:00
117102    35947    602    2017-08-29 04:43:00    2017-08-29 04:43:00
117103    35947    772    2017-08-29 20:19:00    2017-08-29 20:19:00
117104    35947    730    2017-08-29 03:32:00    2017-08-29 03:32:00
117105    35948    488    2017-08-29 13:04:00    2017-08-29 13:04:00
117106    35948    577    2017-08-29 07:49:00    2017-08-29 07:49:00
117107    35948    592    2017-08-29 07:24:00    2017-08-29 07:24:00
117108    35948    953    2017-08-29 06:08:00    2017-08-29 06:08:00
117109    35948    574    2017-08-29 12:02:00    2017-08-29 12:02:00
117110    35949    698    2017-08-29 23:20:00    2017-08-29 23:20:00
117111    35949    954    2017-08-29 03:02:00    2017-08-29 03:02:00
117112    35949    585    2017-08-29 04:33:00    2017-08-29 04:33:00
117113    35949    852    2017-08-29 22:38:00    2017-08-29 22:38:00
117114    35949    484    2017-08-29 03:08:00    2017-08-29 03:08:00
117115    35950    611    2017-08-29 06:11:00    2017-08-29 06:11:00
117116    35950    558    2017-08-29 23:50:00    2017-08-29 23:50:00
117117    35950    756    2017-08-29 15:49:00    2017-08-29 15:49:00
117118    35950    665    2017-08-29 20:14:00    2017-08-29 20:14:00
117119    35950    560    2017-08-29 11:34:00    2017-08-29 11:34:00
117120    35951    725    2017-08-29 21:09:00    2017-08-29 21:09:00
117121    35951    952    2017-08-29 06:07:00    2017-08-29 06:07:00
117122    35951    792    2017-08-29 06:54:00    2017-08-29 06:54:00
117123    35951    945    2017-08-29 13:23:00    2017-08-29 13:23:00
117124    35951    835    2017-08-29 11:54:00    2017-08-29 11:54:00
117125    35952    735    2017-08-29 18:29:00    2017-08-29 18:29:00
117126    35952    752    2017-08-29 20:22:00    2017-08-29 20:22:00
117127    35952    787    2017-08-29 15:23:00    2017-08-29 15:23:00
117128    35952    692    2017-08-29 03:15:00    2017-08-29 03:15:00
117129    35952    518    2017-08-29 05:58:00    2017-08-29 05:58:00
117130    35953    698    2017-08-29 06:29:00    2017-08-29 06:29:00
117131    35953    568    2017-08-29 22:46:00    2017-08-29 22:46:00
117132    35953    634    2017-08-29 09:16:00    2017-08-29 09:16:00
117133    35953    635    2017-08-29 01:20:00    2017-08-29 01:20:00
117134    35953    581    2017-08-29 22:28:00    2017-08-29 22:28:00
117135    35954    480    2017-08-30 18:23:00    2017-08-30 18:23:00
117136    35954    776    2017-08-30 20:43:00    2017-08-30 20:43:00
117137    35954    581    2017-08-30 11:41:00    2017-08-30 11:41:00
117138    35954    795    2017-08-30 21:51:00    2017-08-30 21:51:00
117139    35954    465    2017-08-30 14:27:00    2017-08-30 14:27:00
117140    35955    854    2017-08-30 18:20:00    2017-08-30 18:20:00
117141    35955    755    2017-08-30 21:27:00    2017-08-30 21:27:00
117142    35955    515    2017-08-30 07:10:00    2017-08-30 07:10:00
117143    35955    621    2017-08-30 01:07:00    2017-08-30 01:07:00
117144    35955    959    2017-08-30 15:04:00    2017-08-30 15:04:00
117145    35956    689    2017-08-30 17:49:00    2017-08-30 17:49:00
117146    35956    827    2017-08-30 11:26:00    2017-08-30 11:26:00
117147    35956    691    2017-08-30 08:27:00    2017-08-30 08:27:00
117148    35956    498    2017-08-30 07:44:00    2017-08-30 07:44:00
117149    35956    766    2017-08-30 06:46:00    2017-08-30 06:46:00
117150    35957    612    2017-08-30 12:06:00    2017-08-30 12:06:00
117151    35957    914    2017-08-30 18:06:00    2017-08-30 18:06:00
117152    35957    930    2017-08-30 07:16:00    2017-08-30 07:16:00
117153    35957    601    2017-08-30 03:05:00    2017-08-30 03:05:00
117154    35957    860    2017-08-30 07:23:00    2017-08-30 07:23:00
117155    35958    687    2017-08-30 05:08:00    2017-08-30 05:08:00
117156    35958    848    2017-08-30 05:38:00    2017-08-30 05:38:00
117157    35958    574    2017-08-30 07:03:00    2017-08-30 07:03:00
117158    35958    620    2017-08-30 15:35:00    2017-08-30 15:35:00
117159    35958    711    2017-08-30 20:18:00    2017-08-30 20:18:00
117160    35959    519    2017-08-30 09:15:00    2017-08-30 09:15:00
117161    35959    860    2017-08-30 06:16:00    2017-08-30 06:16:00
117162    35959    884    2017-08-30 19:31:00    2017-08-30 19:31:00
117163    35959    934    2017-08-30 06:00:00    2017-08-30 06:00:00
117164    35959    482    2017-08-30 07:21:00    2017-08-30 07:21:00
117165    35960    805    2017-08-30 11:48:00    2017-08-30 11:48:00
117166    35960    793    2017-08-30 06:28:00    2017-08-30 06:28:00
117167    35960    810    2017-08-30 23:09:00    2017-08-30 23:09:00
117168    35960    496    2017-08-30 12:51:00    2017-08-30 12:51:00
117169    35960    476    2017-08-30 16:05:00    2017-08-30 16:05:00
117170    35961    483    2017-08-30 01:52:00    2017-08-30 01:52:00
117171    35961    749    2017-08-30 04:46:00    2017-08-30 04:46:00
117172    35961    699    2017-08-30 01:52:00    2017-08-30 01:52:00
117173    35961    600    2017-08-30 17:44:00    2017-08-30 17:44:00
117174    35961    722    2017-08-30 21:11:00    2017-08-30 21:11:00
117175    35962    951    2017-08-30 21:40:00    2017-08-30 21:40:00
117176    35962    884    2017-08-30 05:27:00    2017-08-30 05:27:00
117177    35962    907    2017-08-30 21:13:00    2017-08-30 21:13:00
117178    35962    721    2017-08-30 06:42:00    2017-08-30 06:42:00
117179    35962    727    2017-08-30 06:06:00    2017-08-30 06:06:00
117180    35963    761    2017-08-30 02:00:00    2017-08-30 02:00:00
117181    35963    509    2017-08-30 22:17:00    2017-08-30 22:17:00
117182    35963    890    2017-08-30 16:26:00    2017-08-30 16:26:00
117183    35963    702    2017-08-30 18:13:00    2017-08-30 18:13:00
117184    35963    713    2017-08-30 22:03:00    2017-08-30 22:03:00
117185    35964    518    2017-08-30 03:20:00    2017-08-30 03:20:00
117186    35964    833    2017-08-30 15:56:00    2017-08-30 15:56:00
117187    35964    513    2017-08-30 16:24:00    2017-08-30 16:24:00
117188    35964    636    2017-08-30 09:07:00    2017-08-30 09:07:00
117189    35964    798    2017-08-30 18:14:00    2017-08-30 18:14:00
117190    35965    876    2017-08-30 21:37:00    2017-08-30 21:37:00
117191    35965    480    2017-08-30 17:00:00    2017-08-30 17:00:00
117192    35965    949    2017-08-30 23:52:00    2017-08-30 23:52:00
117193    35965    778    2017-08-30 20:43:00    2017-08-30 20:43:00
117194    35965    800    2017-08-30 05:32:00    2017-08-30 05:32:00
117195    35966    902    2017-08-30 02:21:00    2017-08-30 02:21:00
117196    35966    777    2017-08-30 15:54:00    2017-08-30 15:54:00
117197    35966    872    2017-08-30 18:24:00    2017-08-30 18:24:00
117198    35966    677    2017-08-30 09:43:00    2017-08-30 09:43:00
117199    35966    614    2017-08-30 10:43:00    2017-08-30 10:43:00
117200    35967    488    2017-08-30 11:53:00    2017-08-30 11:53:00
117201    35967    947    2017-08-30 07:47:00    2017-08-30 07:47:00
117202    35967    576    2017-08-30 02:40:00    2017-08-30 02:40:00
117203    35967    668    2017-08-30 05:16:00    2017-08-30 05:16:00
117204    35967    575    2017-08-30 10:58:00    2017-08-30 10:58:00
117205    35968    831    2017-08-30 04:41:00    2017-08-30 04:41:00
117206    35968    746    2017-08-30 22:23:00    2017-08-30 22:23:00
117207    35968    698    2017-08-30 12:16:00    2017-08-30 12:16:00
117208    35968    830    2017-08-30 07:28:00    2017-08-30 07:28:00
117209    35968    714    2017-08-30 12:48:00    2017-08-30 12:48:00
117210    35969    554    2017-08-30 15:40:00    2017-08-30 15:40:00
117211    35969    893    2017-08-30 18:58:00    2017-08-30 18:58:00
117212    35969    607    2017-08-30 23:57:00    2017-08-30 23:57:00
117213    35969    538    2017-08-30 21:00:00    2017-08-30 21:00:00
117214    35969    948    2017-08-30 07:34:00    2017-08-30 07:34:00
117215    35970    826    2017-08-30 13:18:00    2017-08-30 13:18:00
117216    35970    831    2017-08-30 07:16:00    2017-08-30 07:16:00
117217    35970    742    2017-08-30 08:06:00    2017-08-30 08:06:00
117218    35970    564    2017-08-30 16:16:00    2017-08-30 16:16:00
117219    35970    614    2017-08-30 09:25:00    2017-08-30 09:25:00
117220    35971    757    2017-08-30 23:01:00    2017-08-30 23:01:00
117221    35971    779    2017-08-30 04:42:00    2017-08-30 04:42:00
117222    35971    833    2017-08-30 13:18:00    2017-08-30 13:18:00
117223    35971    911    2017-08-30 07:24:00    2017-08-30 07:24:00
117224    35971    572    2017-08-30 10:03:00    2017-08-30 10:03:00
117225    35972    724    2017-08-30 23:39:00    2017-08-30 23:39:00
117226    35972    504    2017-08-30 13:49:00    2017-08-30 13:49:00
117227    35972    557    2017-08-30 07:12:00    2017-08-30 07:12:00
117228    35972    922    2017-08-30 17:55:00    2017-08-30 17:55:00
117229    35972    774    2017-08-30 16:44:00    2017-08-30 16:44:00
117230    35973    922    2017-08-30 05:19:00    2017-08-30 05:19:00
117231    35973    575    2017-08-30 10:14:00    2017-08-30 10:14:00
117232    35973    825    2017-08-30 20:31:00    2017-08-30 20:31:00
117233    35973    555    2017-08-30 03:31:00    2017-08-30 03:31:00
117234    35973    825    2017-08-30 09:06:00    2017-08-30 09:06:00
117235    35974    818    2017-08-30 08:07:00    2017-08-30 08:07:00
117236    35974    623    2017-08-30 19:25:00    2017-08-30 19:25:00
117237    35974    487    2017-08-30 10:03:00    2017-08-30 10:03:00
117238    35974    770    2017-08-30 15:21:00    2017-08-30 15:21:00
117239    35974    591    2017-08-30 20:03:00    2017-08-30 20:03:00
117240    35975    955    2017-08-30 18:40:00    2017-08-30 18:40:00
117241    35975    800    2017-08-30 13:43:00    2017-08-30 13:43:00
117242    35975    831    2017-08-30 17:07:00    2017-08-30 17:07:00
117243    35975    780    2017-08-30 04:16:00    2017-08-30 04:16:00
117244    35975    627    2017-08-30 17:05:00    2017-08-30 17:05:00
117245    35976    723    2017-08-30 16:01:00    2017-08-30 16:01:00
117246    35976    662    2017-08-30 18:44:00    2017-08-30 18:44:00
117247    35976    664    2017-08-30 19:14:00    2017-08-30 19:14:00
117248    35976    686    2017-08-30 04:38:00    2017-08-30 04:38:00
117249    35976    796    2017-08-30 01:29:00    2017-08-30 01:29:00
117250    35977    896    2017-08-30 01:24:00    2017-08-30 01:24:00
117251    35977    934    2017-08-30 17:28:00    2017-08-30 17:28:00
117252    35977    721    2017-08-30 04:35:00    2017-08-30 04:35:00
117253    35977    502    2017-08-30 14:59:00    2017-08-30 14:59:00
117254    35977    619    2017-08-30 07:07:00    2017-08-30 07:07:00
117255    35978    680    2017-08-30 12:00:00    2017-08-30 12:00:00
117256    35978    719    2017-08-30 11:06:00    2017-08-30 11:06:00
117257    35978    795    2017-08-30 18:42:00    2017-08-30 18:42:00
117258    35978    830    2017-08-30 01:30:00    2017-08-30 01:30:00
117259    35978    487    2017-08-30 06:41:00    2017-08-30 06:41:00
117260    35979    865    2017-08-30 09:51:00    2017-08-30 09:51:00
117261    35979    808    2017-08-30 11:38:00    2017-08-30 11:38:00
117262    35979    686    2017-08-30 07:45:00    2017-08-30 07:45:00
117263    35979    520    2017-08-30 18:25:00    2017-08-30 18:25:00
117264    35979    618    2017-08-30 11:03:00    2017-08-30 11:03:00
117265    35980    741    2017-08-30 17:53:00    2017-08-30 17:53:00
117266    35980    929    2017-08-30 13:42:00    2017-08-30 13:42:00
117267    35980    742    2017-08-30 17:25:00    2017-08-30 17:25:00
117268    35980    587    2017-08-30 17:25:00    2017-08-30 17:25:00
117269    35980    630    2017-08-30 17:56:00    2017-08-30 17:56:00
117270    35981    871    2017-08-30 11:16:00    2017-08-30 11:16:00
117271    35981    859    2017-08-30 06:54:00    2017-08-30 06:54:00
117272    35981    664    2017-08-30 11:26:00    2017-08-30 11:26:00
117273    35981    635    2017-08-30 05:54:00    2017-08-30 05:54:00
117274    35981    846    2017-08-30 11:21:00    2017-08-30 11:21:00
117275    35982    799    2017-08-30 04:33:00    2017-08-30 04:33:00
117276    35982    884    2017-08-30 13:58:00    2017-08-30 13:58:00
117277    35982    570    2017-08-30 07:54:00    2017-08-30 07:54:00
117278    35982    725    2017-08-30 16:27:00    2017-08-30 16:27:00
117279    35982    562    2017-08-30 04:36:00    2017-08-30 04:36:00
117280    35983    512    2017-08-30 07:59:00    2017-08-30 07:59:00
117281    35983    573    2017-08-30 21:58:00    2017-08-30 21:58:00
117282    35983    875    2017-08-30 23:53:00    2017-08-30 23:53:00
117283    35983    474    2017-08-30 14:56:00    2017-08-30 14:56:00
117284    35983    873    2017-08-30 21:41:00    2017-08-30 21:41:00
117285    35984    636    2017-08-30 01:03:00    2017-08-30 01:03:00
117286    35984    813    2017-08-30 01:12:00    2017-08-30 01:12:00
117287    35984    936    2017-08-30 04:30:00    2017-08-30 04:30:00
117288    35984    617    2017-08-30 16:48:00    2017-08-30 16:48:00
117289    35984    618    2017-08-30 16:00:00    2017-08-30 16:00:00
117290    35985    497    2017-08-30 17:01:00    2017-08-30 17:01:00
117291    35985    747    2017-08-30 17:36:00    2017-08-30 17:36:00
117292    35985    915    2017-08-30 07:45:00    2017-08-30 07:45:00
117293    35985    719    2017-08-30 10:23:00    2017-08-30 10:23:00
117294    35985    701    2017-08-30 09:15:00    2017-08-30 09:15:00
117295    35986    559    2017-08-30 03:37:00    2017-08-30 03:37:00
117296    35986    822    2017-08-30 23:22:00    2017-08-30 23:22:00
117297    35986    693    2017-08-30 18:27:00    2017-08-30 18:27:00
117298    35986    948    2017-08-30 19:58:00    2017-08-30 19:58:00
117299    35986    712    2017-08-30 08:57:00    2017-08-30 08:57:00
117300    35987    551    2017-08-30 11:33:00    2017-08-30 11:33:00
117301    35987    856    2017-08-30 14:20:00    2017-08-30 14:20:00
117302    35987    705    2017-08-30 11:40:00    2017-08-30 11:40:00
117303    35987    823    2017-08-30 05:57:00    2017-08-30 05:57:00
117304    35987    570    2017-08-30 03:11:00    2017-08-30 03:11:00
117305    35988    692    2017-08-30 18:56:00    2017-08-30 18:56:00
117306    35988    591    2017-08-30 04:35:00    2017-08-30 04:35:00
117307    35988    878    2017-08-30 02:44:00    2017-08-30 02:44:00
117308    35988    780    2017-08-30 20:49:00    2017-08-30 20:49:00
117309    35988    840    2017-08-30 10:05:00    2017-08-30 10:05:00
117310    35989    639    2017-08-30 21:53:00    2017-08-30 21:53:00
117311    35989    953    2017-08-30 17:16:00    2017-08-30 17:16:00
117312    35989    775    2017-08-30 23:05:00    2017-08-30 23:05:00
117313    35989    880    2017-08-30 07:11:00    2017-08-30 07:11:00
117314    35989    741    2017-08-30 19:34:00    2017-08-30 19:34:00
117315    35990    550    2017-08-30 12:58:00    2017-08-30 12:58:00
117316    35990    710    2017-08-30 02:49:00    2017-08-30 02:49:00
117317    35990    855    2017-08-30 07:01:00    2017-08-30 07:01:00
117318    35990    927    2017-08-30 04:18:00    2017-08-30 04:18:00
117319    35990    886    2017-08-30 10:18:00    2017-08-30 10:18:00
117320    35991    682    2017-08-30 01:36:00    2017-08-30 01:36:00
117321    35991    949    2017-08-30 21:52:00    2017-08-30 21:52:00
117322    35991    883    2017-08-30 15:50:00    2017-08-30 15:50:00
117323    35991    503    2017-08-30 05:21:00    2017-08-30 05:21:00
117324    35991    930    2017-08-30 05:45:00    2017-08-30 05:45:00
117325    35992    677    2017-08-30 03:58:00    2017-08-30 03:58:00
117326    35992    490    2017-08-30 11:01:00    2017-08-30 11:01:00
117327    35992    871    2017-08-30 08:15:00    2017-08-30 08:15:00
117328    35992    810    2017-08-30 21:08:00    2017-08-30 21:08:00
117329    35992    848    2017-08-30 16:48:00    2017-08-30 16:48:00
117330    35993    809    2017-08-31 20:43:00    2017-08-31 20:43:00
117331    35993    617    2017-08-31 01:48:00    2017-08-31 01:48:00
117332    35993    726    2017-08-31 14:40:00    2017-08-31 14:40:00
117333    35993    823    2017-08-31 11:27:00    2017-08-31 11:27:00
117334    35993    681    2017-08-31 18:53:00    2017-08-31 18:53:00
117335    35994    498    2017-08-31 08:23:00    2017-08-31 08:23:00
117336    35994    960    2017-08-31 13:35:00    2017-08-31 13:35:00
117337    35994    687    2017-08-31 15:28:00    2017-08-31 15:28:00
117338    35994    468    2017-08-31 23:01:00    2017-08-31 23:01:00
117339    35994    641    2017-08-31 20:54:00    2017-08-31 20:54:00
117340    35995    773    2017-08-31 10:59:00    2017-08-31 10:59:00
117341    35995    828    2017-08-31 05:45:00    2017-08-31 05:45:00
117342    35995    650    2017-08-31 13:39:00    2017-08-31 13:39:00
117343    35995    738    2017-08-31 10:19:00    2017-08-31 10:19:00
117344    35995    702    2017-08-31 22:00:00    2017-08-31 22:00:00
117345    35996    527    2017-08-31 23:29:00    2017-08-31 23:29:00
117346    35996    795    2017-08-31 05:14:00    2017-08-31 05:14:00
117347    35996    757    2017-08-31 19:38:00    2017-08-31 19:38:00
117348    35996    567    2017-08-31 21:39:00    2017-08-31 21:39:00
117349    35996    653    2017-08-31 15:56:00    2017-08-31 15:56:00
117350    35997    900    2017-08-31 02:11:00    2017-08-31 02:11:00
117351    35997    909    2017-08-31 22:22:00    2017-08-31 22:22:00
117352    35997    801    2017-08-31 22:25:00    2017-08-31 22:25:00
117353    35997    632    2017-08-31 15:57:00    2017-08-31 15:57:00
117354    35997    701    2017-08-31 14:00:00    2017-08-31 14:00:00
117355    35998    743    2017-08-31 15:45:00    2017-08-31 15:45:00
117356    35998    894    2017-08-31 06:09:00    2017-08-31 06:09:00
117357    35998    638    2017-08-31 16:45:00    2017-08-31 16:45:00
117358    35998    737    2017-08-31 22:59:00    2017-08-31 22:59:00
117359    35998    529    2017-08-31 04:37:00    2017-08-31 04:37:00
117360    35999    855    2017-08-31 12:35:00    2017-08-31 12:35:00
117361    35999    746    2017-08-31 16:41:00    2017-08-31 16:41:00
117362    35999    672    2017-08-31 12:34:00    2017-08-31 12:34:00
117363    35999    534    2017-08-31 10:25:00    2017-08-31 10:25:00
117364    35999    714    2017-08-31 15:09:00    2017-08-31 15:09:00
117365    36000    670    2017-08-31 23:51:00    2017-08-31 23:51:00
117366    36000    800    2017-08-31 19:37:00    2017-08-31 19:37:00
117367    36000    833    2017-08-31 11:47:00    2017-08-31 11:47:00
117368    36000    541    2017-08-31 15:17:00    2017-08-31 15:17:00
117369    36000    843    2017-08-31 20:42:00    2017-08-31 20:42:00
117370    36001    888    2017-08-31 19:15:00    2017-08-31 19:15:00
117371    36001    467    2017-08-31 08:25:00    2017-08-31 08:25:00
117372    36001    730    2017-08-31 21:03:00    2017-08-31 21:03:00
117373    36001    872    2017-08-31 20:50:00    2017-08-31 20:50:00
117374    36001    792    2017-08-31 08:18:00    2017-08-31 08:18:00
117375    36002    713    2017-08-31 03:30:00    2017-08-31 03:30:00
117376    36002    874    2017-08-31 08:35:00    2017-08-31 08:35:00
117377    36002    896    2017-08-31 07:18:00    2017-08-31 07:18:00
117378    36002    830    2017-08-31 18:00:00    2017-08-31 18:00:00
117379    36002    812    2017-08-31 03:45:00    2017-08-31 03:45:00
117380    36003    848    2017-08-31 20:24:00    2017-08-31 20:24:00
117381    36003    729    2017-08-31 01:28:00    2017-08-31 01:28:00
117382    36003    726    2017-08-31 21:27:00    2017-08-31 21:27:00
117383    36003    798    2017-08-31 10:35:00    2017-08-31 10:35:00
117384    36003    838    2017-08-31 15:42:00    2017-08-31 15:42:00
117385    36004    622    2017-08-31 23:00:00    2017-08-31 23:00:00
117386    36004    624    2017-08-31 15:54:00    2017-08-31 15:54:00
117387    36004    829    2017-08-31 06:44:00    2017-08-31 06:44:00
117388    36004    579    2017-08-31 20:32:00    2017-08-31 20:32:00
117389    36004    565    2017-08-31 13:14:00    2017-08-31 13:14:00
117390    36005    619    2017-08-31 19:34:00    2017-08-31 19:34:00
117391    36005    911    2017-08-31 09:14:00    2017-08-31 09:14:00
117392    36005    563    2017-08-31 05:13:00    2017-08-31 05:13:00
117393    36005    753    2017-08-31 11:08:00    2017-08-31 11:08:00
117394    36005    812    2017-08-31 10:09:00    2017-08-31 10:09:00
117395    36006    508    2017-08-31 10:23:00    2017-08-31 10:23:00
117396    36006    684    2017-08-31 05:02:00    2017-08-31 05:02:00
117397    36006    805    2017-08-31 12:21:00    2017-08-31 12:21:00
117398    36006    479    2017-08-31 02:43:00    2017-08-31 02:43:00
117399    36006    951    2017-08-31 17:32:00    2017-08-31 17:32:00
117400    36007    695    2017-08-31 12:41:00    2017-08-31 12:41:00
117401    36007    608    2017-08-31 12:01:00    2017-08-31 12:01:00
117402    36007    917    2017-08-31 22:47:00    2017-08-31 22:47:00
117403    36007    780    2017-08-31 16:44:00    2017-08-31 16:44:00
117404    36007    620    2017-08-31 23:38:00    2017-08-31 23:38:00
117405    36008    834    2017-08-31 21:16:00    2017-08-31 21:16:00
117406    36008    685    2017-08-31 22:45:00    2017-08-31 22:45:00
117407    36008    728    2017-08-31 19:29:00    2017-08-31 19:29:00
117408    36008    483    2017-08-31 17:23:00    2017-08-31 17:23:00
117409    36008    617    2017-08-31 12:22:00    2017-08-31 12:22:00
117410    36009    909    2017-08-31 08:36:00    2017-08-31 08:36:00
117411    36009    646    2017-08-31 08:57:00    2017-08-31 08:57:00
117412    36009    590    2017-08-31 10:00:00    2017-08-31 10:00:00
117413    36009    926    2017-08-31 02:50:00    2017-08-31 02:50:00
117414    36009    960    2017-08-31 01:02:00    2017-08-31 01:02:00
117415    36010    926    2017-08-31 15:57:00    2017-08-31 15:57:00
117416    36010    537    2017-08-31 06:56:00    2017-08-31 06:56:00
117417    36010    776    2017-08-31 04:39:00    2017-08-31 04:39:00
117418    36010    616    2017-08-31 15:57:00    2017-08-31 15:57:00
117419    36010    953    2017-08-31 21:02:00    2017-08-31 21:02:00
117420    36011    641    2017-08-31 21:26:00    2017-08-31 21:26:00
117421    36011    890    2017-08-31 22:36:00    2017-08-31 22:36:00
117422    36011    609    2017-08-31 08:27:00    2017-08-31 08:27:00
117423    36011    891    2017-08-31 11:06:00    2017-08-31 11:06:00
117424    36011    729    2017-08-31 20:01:00    2017-08-31 20:01:00
117425    36012    640    2017-08-31 06:41:00    2017-08-31 06:41:00
117426    36012    730    2017-08-31 22:44:00    2017-08-31 22:44:00
117427    36012    477    2017-08-31 14:29:00    2017-08-31 14:29:00
117428    36012    781    2017-08-31 08:03:00    2017-08-31 08:03:00
117429    36012    560    2017-08-31 13:32:00    2017-08-31 13:32:00
117430    36013    953    2017-08-31 15:23:00    2017-08-31 15:23:00
117431    36013    716    2017-08-31 17:10:00    2017-08-31 17:10:00
117432    36013    649    2017-08-31 18:35:00    2017-08-31 18:35:00
117433    36013    850    2017-08-31 08:42:00    2017-08-31 08:42:00
117434    36013    572    2017-08-31 17:53:00    2017-08-31 17:53:00
117435    36014    852    2017-08-31 15:31:00    2017-08-31 15:31:00
117436    36014    785    2017-08-31 03:47:00    2017-08-31 03:47:00
117437    36014    842    2017-08-31 01:29:00    2017-08-31 01:29:00
117438    36014    507    2017-08-31 15:41:00    2017-08-31 15:41:00
117439    36014    834    2017-08-31 16:50:00    2017-08-31 16:50:00
117440    36015    878    2017-08-31 11:18:00    2017-08-31 11:18:00
117441    36015    832    2017-08-31 05:27:00    2017-08-31 05:27:00
117442    36015    465    2017-08-31 14:48:00    2017-08-31 14:48:00
117443    36015    636    2017-08-31 04:09:00    2017-08-31 04:09:00
117444    36015    490    2017-08-31 14:07:00    2017-08-31 14:07:00
117445    36016    771    2017-08-31 17:58:00    2017-08-31 17:58:00
117446    36016    496    2017-08-31 13:00:00    2017-08-31 13:00:00
117447    36016    639    2017-08-31 01:01:00    2017-08-31 01:01:00
117448    36016    791    2017-08-31 16:55:00    2017-08-31 16:55:00
117449    36016    724    2017-08-31 22:17:00    2017-08-31 22:17:00
117450    36017    550    2017-08-31 02:42:00    2017-08-31 02:42:00
117451    36017    776    2017-08-31 19:12:00    2017-08-31 19:12:00
117452    36017    621    2017-08-31 09:01:00    2017-08-31 09:01:00
117453    36017    598    2017-08-31 05:52:00    2017-08-31 05:52:00
117454    36017    864    2017-08-31 06:38:00    2017-08-31 06:38:00
117455    36018    573    2017-08-31 21:02:00    2017-08-31 21:02:00
117456    36018    912    2017-08-31 21:55:00    2017-08-31 21:55:00
117457    36018    616    2017-08-31 11:56:00    2017-08-31 11:56:00
117458    36018    835    2017-08-31 05:33:00    2017-08-31 05:33:00
117459    36018    729    2017-08-31 16:38:00    2017-08-31 16:38:00
117460    36019    747    2017-08-31 08:15:00    2017-08-31 08:15:00
117461    36019    474    2017-08-31 20:48:00    2017-08-31 20:48:00
117462    36019    728    2017-08-31 15:43:00    2017-08-31 15:43:00
117463    36019    898    2017-08-31 12:28:00    2017-08-31 12:28:00
117464    36019    770    2017-08-31 02:48:00    2017-08-31 02:48:00
117465    36020    874    2017-08-31 08:50:00    2017-08-31 08:50:00
117466    36020    789    2017-08-31 08:16:00    2017-08-31 08:16:00
117467    36020    931    2017-08-31 07:08:00    2017-08-31 07:08:00
117468    36020    754    2017-08-31 11:54:00    2017-08-31 11:54:00
117469    36020    684    2017-08-31 06:00:00    2017-08-31 06:00:00
117470    36021    617    2017-08-31 22:44:00    2017-08-31 22:44:00
117471    36021    576    2017-08-31 03:40:00    2017-08-31 03:40:00
117472    36021    667    2017-08-31 19:39:00    2017-08-31 19:39:00
117473    36021    579    2017-08-31 08:28:00    2017-08-31 08:28:00
117474    36021    658    2017-08-31 03:01:00    2017-08-31 03:01:00
117475    36022    657    2017-08-31 20:13:00    2017-08-31 20:13:00
117476    36022    735    2017-08-31 22:22:00    2017-08-31 22:22:00
117477    36022    761    2017-08-31 06:06:00    2017-08-31 06:06:00
117478    36022    865    2017-08-31 14:09:00    2017-08-31 14:09:00
117479    36022    803    2017-08-31 22:38:00    2017-08-31 22:38:00
117480    36023    640    2017-08-31 18:47:00    2017-08-31 18:47:00
117481    36023    815    2017-08-31 02:19:00    2017-08-31 02:19:00
117482    36023    764    2017-08-31 22:37:00    2017-08-31 22:37:00
117483    36023    724    2017-08-31 18:40:00    2017-08-31 18:40:00
117484    36023    900    2017-08-31 13:13:00    2017-08-31 13:13:00
117485    36024    626    2017-08-31 18:35:00    2017-08-31 18:35:00
117486    36024    707    2017-08-31 06:36:00    2017-08-31 06:36:00
117487    36024    940    2017-08-31 22:07:00    2017-08-31 22:07:00
117488    36024    747    2017-08-31 01:36:00    2017-08-31 01:36:00
117489    36024    670    2017-08-31 08:22:00    2017-08-31 08:22:00
117490    36025    558    2017-08-31 15:18:00    2017-08-31 15:18:00
117491    36025    823    2017-08-31 21:00:00    2017-08-31 21:00:00
117492    36025    560    2017-08-31 13:31:00    2017-08-31 13:31:00
117493    36025    529    2017-08-31 20:47:00    2017-08-31 20:47:00
117494    36025    881    2017-08-31 06:08:00    2017-08-31 06:08:00
117495    36026    718    2017-08-31 13:19:00    2017-08-31 13:19:00
117496    36026    701    2017-08-31 21:19:00    2017-08-31 21:19:00
117497    36026    485    2017-08-31 03:42:00    2017-08-31 03:42:00
117498    36026    692    2017-08-31 22:00:00    2017-08-31 22:00:00
117499    36026    812    2017-08-31 09:55:00    2017-08-31 09:55:00
117500    36027    642    2017-08-31 12:45:00    2017-08-31 12:45:00
117501    36027    808    2017-08-31 16:01:00    2017-08-31 16:01:00
117502    36027    778    2017-08-31 05:43:00    2017-08-31 05:43:00
117503    36027    557    2017-08-31 14:00:00    2017-08-31 14:00:00
117504    36027    893    2017-08-31 22:29:00    2017-08-31 22:29:00
117505    36028    816    2017-08-31 13:46:00    2017-08-31 13:46:00
117506    36028    519    2017-08-31 23:16:00    2017-08-31 23:16:00
117507    36028    849    2017-08-31 12:56:00    2017-08-31 12:56:00
117508    36028    864    2017-08-31 20:34:00    2017-08-31 20:34:00
117509    36028    869    2017-08-31 07:03:00    2017-08-31 07:03:00
117510    36029    799    2017-08-31 02:10:00    2017-08-31 02:10:00
117511    36029    788    2017-08-31 14:18:00    2017-08-31 14:18:00
117512    36029    723    2017-08-31 01:18:00    2017-08-31 01:18:00
117513    36029    945    2017-08-31 08:24:00    2017-08-31 08:24:00
117514    36029    833    2017-08-31 07:15:00    2017-08-31 07:15:00
117515    36030    826    2017-08-31 17:45:00    2017-08-31 17:45:00
117516    36030    920    2017-08-31 04:56:00    2017-08-31 04:56:00
117517    36030    653    2017-08-31 19:58:00    2017-08-31 19:58:00
117518    36030    765    2017-08-31 19:01:00    2017-08-31 19:01:00
117519    36030    883    2017-08-31 23:01:00    2017-08-31 23:01:00
117520    36031    630    2017-08-31 13:56:00    2017-08-31 13:56:00
117521    36031    647    2017-08-31 20:23:00    2017-08-31 20:23:00
117522    36031    804    2017-08-31 04:46:00    2017-08-31 04:46:00
117523    36031    606    2017-08-31 16:37:00    2017-08-31 16:37:00
117524    36031    498    2017-08-31 11:33:00    2017-08-31 11:33:00
117525    36032    491    2017-08-31 19:54:00    2017-08-31 19:54:00
117526    36032    637    2017-08-31 06:31:00    2017-08-31 06:31:00
117527    36032    913    2017-08-31 07:21:00    2017-08-31 07:21:00
117528    36032    742    2017-08-31 10:17:00    2017-08-31 10:17:00
117529    36032    472    2017-08-31 20:31:00    2017-08-31 20:31:00
117530    36033    502    2017-08-31 19:16:00    2017-08-31 19:16:00
117531    36033    674    2017-08-31 01:47:00    2017-08-31 01:47:00
117532    36033    677    2017-08-31 03:40:00    2017-08-31 03:40:00
117533    36033    749    2017-08-31 04:55:00    2017-08-31 04:55:00
117534    36033    631    2017-08-31 21:06:00    2017-08-31 21:06:00
117535    36034    639    2017-08-31 06:12:00    2017-08-31 06:12:00
117536    36034    582    2017-08-31 10:19:00    2017-08-31 10:19:00
117537    36034    854    2017-08-31 03:09:00    2017-08-31 03:09:00
117538    36034    787    2017-08-31 18:40:00    2017-08-31 18:40:00
117539    36034    958    2017-08-31 11:22:00    2017-08-31 11:22:00
117540    36035    918    2017-08-31 22:32:00    2017-08-31 22:32:00
117541    36035    887    2017-08-31 10:54:00    2017-08-31 10:54:00
117542    36035    718    2017-08-31 10:53:00    2017-08-31 10:53:00
117543    36035    497    2017-08-31 01:37:00    2017-08-31 01:37:00
117544    36035    549    2017-08-31 07:30:00    2017-08-31 07:30:00
117545    36036    825    2017-08-31 18:36:00    2017-08-31 18:36:00
117546    36036    575    2017-08-31 13:40:00    2017-08-31 13:40:00
117547    36036    917    2017-08-31 02:18:00    2017-08-31 02:18:00
117548    36036    943    2017-08-31 15:36:00    2017-08-31 15:36:00
117549    36036    888    2017-08-31 21:24:00    2017-08-31 21:24:00
117550    36037    702    2017-08-31 13:04:00    2017-08-31 13:04:00
117551    36037    708    2017-08-31 17:10:00    2017-08-31 17:10:00
117552    36037    611    2017-08-31 12:10:00    2017-08-31 12:10:00
117553    36037    808    2017-08-31 11:03:00    2017-08-31 11:03:00
117554    36037    933    2017-08-31 20:22:00    2017-08-31 20:22:00
117555    36038    762    2017-08-31 10:49:00    2017-08-31 10:49:00
117556    36038    842    2017-08-31 23:49:00    2017-08-31 23:49:00
117557    36038    854    2017-08-31 22:56:00    2017-08-31 22:56:00
117558    36038    935    2017-08-31 18:36:00    2017-08-31 18:36:00
117559    36038    870    2017-08-31 05:19:00    2017-08-31 05:19:00
117560    36039    819    2017-08-31 07:50:00    2017-08-31 07:50:00
117561    36039    909    2017-08-31 09:23:00    2017-08-31 09:23:00
117562    36039    736    2017-08-31 06:33:00    2017-08-31 06:33:00
117563    36039    522    2017-08-31 09:25:00    2017-08-31 09:25:00
117564    36039    811    2017-08-31 15:58:00    2017-08-31 15:58:00
117565    36040    627    2017-08-31 12:49:00    2017-08-31 12:49:00
117566    36040    551    2017-08-31 20:08:00    2017-08-31 20:08:00
117567    36040    738    2017-08-31 16:12:00    2017-08-31 16:12:00
117568    36040    745    2017-08-31 03:02:00    2017-08-31 03:02:00
117569    36040    935    2017-08-31 12:58:00    2017-08-31 12:58:00
117570    36041    763    2017-08-31 23:47:00    2017-08-31 23:47:00
117571    36041    619    2017-08-31 16:53:00    2017-08-31 16:53:00
117572    36041    763    2017-08-31 23:46:00    2017-08-31 23:46:00
117573    36041    782    2017-08-31 22:26:00    2017-08-31 22:26:00
117574    36041    863    2017-08-31 03:29:00    2017-08-31 03:29:00
117575    36042    898    2017-08-31 20:08:00    2017-08-31 20:08:00
117576    36042    825    2017-08-31 22:10:00    2017-08-31 22:10:00
117577    36042    494    2017-08-31 15:49:00    2017-08-31 15:49:00
117578    36042    811    2017-08-31 17:20:00    2017-08-31 17:20:00
117579    36042    876    2017-08-31 18:26:00    2017-08-31 18:26:00
117580    36043    534    2017-08-31 18:25:00    2017-08-31 18:25:00
117581    36043    501    2017-08-31 18:21:00    2017-08-31 18:21:00
117582    36043    654    2017-08-31 06:08:00    2017-08-31 06:08:00
117583    36043    890    2017-08-31 23:39:00    2017-08-31 23:39:00
117584    36043    686    2017-08-31 09:47:00    2017-08-31 09:47:00
117585    36044    759    2017-08-31 19:28:00    2017-08-31 19:28:00
117586    36044    488    2017-08-31 07:48:00    2017-08-31 07:48:00
117587    36044    756    2017-08-31 20:42:00    2017-08-31 20:42:00
117588    36044    635    2017-08-31 15:39:00    2017-08-31 15:39:00
117589    36044    900    2017-08-31 11:34:00    2017-08-31 11:34:00
117590    36045    463    2017-08-31 01:23:00    2017-08-31 01:23:00
117591    36045    835    2017-08-31 21:16:00    2017-08-31 21:16:00
117592    36045    605    2017-08-31 01:40:00    2017-08-31 01:40:00
117593    36045    508    2017-08-31 17:21:00    2017-08-31 17:21:00
117594    36045    891    2017-08-31 16:37:00    2017-08-31 16:37:00
117595    36046    892    2017-08-31 21:55:00    2017-08-31 21:55:00
117596    36046    846    2017-08-31 23:44:00    2017-08-31 23:44:00
117597    36046    847    2017-08-31 08:39:00    2017-08-31 08:39:00
117598    36046    468    2017-08-31 20:16:00    2017-08-31 20:16:00
117599    36046    564    2017-08-31 03:47:00    2017-08-31 03:47:00
117600    36047    867    2017-08-31 16:54:00    2017-08-31 16:54:00
117601    36047    660    2017-08-31 03:07:00    2017-08-31 03:07:00
117602    36047    492    2017-08-31 05:26:00    2017-08-31 05:26:00
117603    36047    612    2017-08-31 05:37:00    2017-08-31 05:37:00
117604    36047    578    2017-08-31 13:43:00    2017-08-31 13:43:00
117605    36048    485    2017-08-31 21:44:00    2017-08-31 21:44:00
117606    36048    795    2017-08-31 06:23:00    2017-08-31 06:23:00
117607    36048    929    2017-08-31 20:12:00    2017-08-31 20:12:00
117608    36048    762    2017-08-31 15:38:00    2017-08-31 15:38:00
117609    36048    552    2017-08-31 01:19:00    2017-08-31 01:19:00
117610    36049    658    2017-08-31 10:23:00    2017-08-31 10:23:00
117611    36049    626    2017-08-31 10:14:00    2017-08-31 10:14:00
117612    36049    938    2017-08-31 20:10:00    2017-08-31 20:10:00
117613    36049    481    2017-08-31 09:24:00    2017-08-31 09:24:00
117614    36049    543    2017-08-31 02:30:00    2017-08-31 02:30:00
117615    36050    768    2017-08-31 05:55:00    2017-08-31 05:55:00
117616    36050    712    2017-08-31 22:31:00    2017-08-31 22:31:00
117617    36050    936    2017-08-31 04:25:00    2017-08-31 04:25:00
117618    36050    690    2017-08-31 18:27:00    2017-08-31 18:27:00
117619    36050    525    2017-08-31 23:20:00    2017-08-31 23:20:00
117620    36051    714    2017-08-31 13:11:00    2017-08-31 13:11:00
117621    36051    878    2017-08-31 20:13:00    2017-08-31 20:13:00
117622    36051    744    2017-08-31 20:13:00    2017-08-31 20:13:00
117623    36051    533    2017-08-31 08:08:00    2017-08-31 08:08:00
117624    36051    731    2017-08-31 10:00:00    2017-08-31 10:00:00
117625    36052    880    2017-08-31 19:47:00    2017-08-31 19:47:00
117626    36052    575    2017-08-31 04:43:00    2017-08-31 04:43:00
117627    36052    957    2017-08-31 08:17:00    2017-08-31 08:17:00
117628    36052    732    2017-08-31 12:14:00    2017-08-31 12:14:00
117629    36052    860    2017-08-31 16:10:00    2017-08-31 16:10:00
117630    36053    811    2017-08-31 09:23:00    2017-08-31 09:23:00
117631    36053    634    2017-08-31 14:50:00    2017-08-31 14:50:00
117632    36053    619    2017-08-31 22:14:00    2017-08-31 22:14:00
117633    36053    799    2017-08-31 03:31:00    2017-08-31 03:31:00
117634    36053    862    2017-08-31 10:51:00    2017-08-31 10:51:00
117635    36054    927    2017-08-31 04:48:00    2017-08-31 04:48:00
117636    36054    749    2017-08-31 13:30:00    2017-08-31 13:30:00
117637    36054    944    2017-08-31 04:29:00    2017-08-31 04:29:00
117638    36054    541    2017-08-31 01:23:00    2017-08-31 01:23:00
117639    36054    929    2017-08-31 13:22:00    2017-08-31 13:22:00
117640    36055    484    2017-08-31 11:40:00    2017-08-31 11:40:00
117641    36055    836    2017-08-31 23:45:00    2017-08-31 23:45:00
117642    36055    952    2017-08-31 22:49:00    2017-08-31 22:49:00
117643    36055    624    2017-08-31 09:11:00    2017-08-31 09:11:00
117644    36055    489    2017-08-31 13:29:00    2017-08-31 13:29:00
117645    36056    633    2017-08-31 17:35:00    2017-08-31 17:35:00
117646    36056    724    2017-08-31 08:30:00    2017-08-31 08:30:00
117647    36056    471    2017-08-31 01:41:00    2017-08-31 01:41:00
117648    36056    857    2017-08-31 19:22:00    2017-08-31 19:22:00
117649    36056    893    2017-08-31 23:25:00    2017-08-31 23:25:00
117650    36057    926    2017-08-31 10:44:00    2017-08-31 10:44:00
117651    36057    529    2017-08-31 10:58:00    2017-08-31 10:58:00
117652    36057    499    2017-08-31 19:51:00    2017-08-31 19:51:00
117653    36057    569    2017-08-31 05:09:00    2017-08-31 05:09:00
117654    36057    477    2017-08-31 09:41:00    2017-08-31 09:41:00
117655    36058    890    2017-08-31 23:53:00    2017-08-31 23:53:00
117656    36058    728    2017-08-31 11:04:00    2017-08-31 11:04:00
117657    36058    543    2017-08-31 12:59:00    2017-08-31 12:59:00
117658    36058    572    2017-08-31 23:53:00    2017-08-31 23:53:00
117659    36058    917    2017-08-31 04:51:00    2017-08-31 04:51:00
117660    36059    465    2017-08-31 23:16:00    2017-08-31 23:16:00
117661    36059    814    2017-08-31 03:32:00    2017-08-31 03:32:00
117662    36059    788    2017-08-31 05:09:00    2017-08-31 05:09:00
117663    36059    538    2017-08-31 13:07:00    2017-08-31 13:07:00
117664    36059    732    2017-08-31 15:30:00    2017-08-31 15:30:00
117665    36060    883    2017-08-31 15:41:00    2017-08-31 15:41:00
117666    36060    728    2017-08-31 02:41:00    2017-08-31 02:41:00
117667    36060    621    2017-08-31 21:02:00    2017-08-31 21:02:00
117668    36060    897    2017-08-31 12:26:00    2017-08-31 12:26:00
117669    36060    844    2017-08-31 17:55:00    2017-08-31 17:55:00
117670    36061    783    2017-08-31 05:19:00    2017-08-31 05:19:00
117671    36061    833    2017-08-31 16:24:00    2017-08-31 16:24:00
117672    36061    475    2017-08-31 15:31:00    2017-08-31 15:31:00
117673    36061    768    2017-08-31 06:52:00    2017-08-31 06:52:00
117674    36061    639    2017-08-31 18:37:00    2017-08-31 18:37:00
117675    36062    795    2017-08-31 09:51:00    2017-08-31 09:51:00
117676    36062    771    2017-08-31 09:42:00    2017-08-31 09:42:00
117677    36062    566    2017-08-31 09:32:00    2017-08-31 09:32:00
117678    36062    625    2017-08-31 07:08:00    2017-08-31 07:08:00
117679    36062    946    2017-08-31 11:34:00    2017-08-31 11:34:00
117680    36063    561    2017-08-31 17:01:00    2017-08-31 17:01:00
117681    36063    625    2017-08-31 10:49:00    2017-08-31 10:49:00
117682    36063    838    2017-08-31 22:24:00    2017-08-31 22:24:00
117683    36063    549    2017-08-31 19:48:00    2017-08-31 19:48:00
117684    36063    487    2017-08-31 13:11:00    2017-08-31 13:11:00
117685    36064    695    2017-08-31 20:43:00    2017-08-31 20:43:00
117686    36064    810    2017-08-31 01:09:00    2017-08-31 01:09:00
117687    36064    816    2017-08-31 15:08:00    2017-08-31 15:08:00
117688    36064    502    2017-08-31 08:16:00    2017-08-31 08:16:00
117689    36064    723    2017-08-31 03:54:00    2017-08-31 03:54:00
117690    36065    531    2017-08-31 14:43:00    2017-08-31 14:43:00
117691    36065    773    2017-08-31 17:01:00    2017-08-31 17:01:00
117692    36065    738    2017-08-31 17:07:00    2017-08-31 17:07:00
117693    36065    778    2017-08-31 13:03:00    2017-08-31 13:03:00
117694    36065    749    2017-08-31 19:22:00    2017-08-31 19:22:00
117695    36066    679    2017-08-31 02:18:00    2017-08-31 02:18:00
117696    36066    680    2017-08-31 20:02:00    2017-08-31 20:02:00
117697    36066    523    2017-08-31 18:59:00    2017-08-31 18:59:00
117698    36066    715    2017-08-31 11:39:00    2017-08-31 11:39:00
117699    36066    939    2017-08-31 10:06:00    2017-08-31 10:06:00
117700    36067    469    2017-08-31 17:40:00    2017-08-31 17:40:00
117701    36067    943    2017-08-31 20:05:00    2017-08-31 20:05:00
117702    36067    559    2017-08-31 01:51:00    2017-08-31 01:51:00
117703    36067    747    2017-08-31 16:30:00    2017-08-31 16:30:00
117704    36067    545    2017-08-31 08:51:00    2017-08-31 08:51:00
117705    36068    527    2017-08-31 02:39:00    2017-08-31 02:39:00
117706    36068    936    2017-08-31 10:35:00    2017-08-31 10:35:00
117707    36068    562    2017-08-31 01:58:00    2017-08-31 01:58:00
117708    36068    665    2017-08-31 02:20:00    2017-08-31 02:20:00
117709    36068    910    2017-08-31 21:27:00    2017-08-31 21:27:00
117710    36069    803    2017-08-31 07:56:00    2017-08-31 07:56:00
117711    36069    864    2017-08-31 20:05:00    2017-08-31 20:05:00
117712    36069    941    2017-08-31 21:14:00    2017-08-31 21:14:00
117713    36069    745    2017-08-31 23:00:00    2017-08-31 23:00:00
117714    36069    954    2017-08-31 03:38:00    2017-08-31 03:38:00
117715    36070    676    2017-08-31 15:54:00    2017-08-31 15:54:00
117716    36070    778    2017-08-31 05:04:00    2017-08-31 05:04:00
117717    36070    609    2017-08-31 04:07:00    2017-08-31 04:07:00
117718    36070    730    2017-08-31 11:00:00    2017-08-31 11:00:00
117719    36070    750    2017-08-31 16:06:00    2017-08-31 16:06:00
117720    36071    573    2017-08-31 07:02:00    2017-08-31 07:02:00
117721    36071    729    2017-08-31 15:40:00    2017-08-31 15:40:00
117722    36071    686    2017-08-31 21:28:00    2017-08-31 21:28:00
117723    36071    891    2017-08-31 12:33:00    2017-08-31 12:33:00
117724    36071    555    2017-08-31 01:25:00    2017-08-31 01:25:00
117725    36072    650    2017-08-31 14:33:00    2017-08-31 14:33:00
117726    36072    755    2017-08-31 02:15:00    2017-08-31 02:15:00
117727    36072    492    2017-08-31 02:27:00    2017-08-31 02:27:00
117728    36072    911    2017-08-31 16:23:00    2017-08-31 16:23:00
117729    36072    695    2017-08-31 20:50:00    2017-08-31 20:50:00
117730    36073    580    2017-08-31 14:51:00    2017-08-31 14:51:00
117731    36073    583    2017-08-31 14:12:00    2017-08-31 14:12:00
117732    36073    948    2017-08-31 13:27:00    2017-08-31 13:27:00
117733    36073    524    2017-08-31 12:45:00    2017-08-31 12:45:00
117734    36073    821    2017-08-31 06:40:00    2017-08-31 06:40:00
117735    36074    801    2017-08-31 04:58:00    2017-08-31 04:58:00
117736    36074    674    2017-08-31 07:39:00    2017-08-31 07:39:00
117737    36074    539    2017-08-31 10:09:00    2017-08-31 10:09:00
117738    36074    666    2017-08-31 11:12:00    2017-08-31 11:12:00
117739    36074    660    2017-08-31 20:25:00    2017-08-31 20:25:00
117740    36075    598    2017-08-31 14:43:00    2017-08-31 14:43:00
117741    36075    872    2017-08-31 16:02:00    2017-08-31 16:02:00
117742    36075    479    2017-08-31 20:28:00    2017-08-31 20:28:00
117743    36075    767    2017-08-31 15:57:00    2017-08-31 15:57:00
117744    36075    863    2017-08-31 05:56:00    2017-08-31 05:56:00
117745    36076    598    2017-08-31 04:49:00    2017-08-31 04:49:00
117746    36076    638    2017-08-31 22:51:00    2017-08-31 22:51:00
117747    36076    876    2017-08-31 23:21:00    2017-08-31 23:21:00
117748    36076    747    2017-08-31 12:59:00    2017-08-31 12:59:00
117749    36076    742    2017-08-31 19:11:00    2017-08-31 19:11:00
117750    36077    639    2017-08-31 14:59:00    2017-08-31 14:59:00
117751    36077    547    2017-08-31 18:25:00    2017-08-31 18:25:00
117752    36077    631    2017-08-31 08:42:00    2017-08-31 08:42:00
117753    36077    476    2017-08-31 19:01:00    2017-08-31 19:01:00
117754    36077    659    2017-08-31 04:51:00    2017-08-31 04:51:00
117755    36078    465    2017-08-31 02:59:00    2017-08-31 02:59:00
117756    36078    583    2017-08-31 11:35:00    2017-08-31 11:35:00
117757    36078    528    2017-08-31 09:12:00    2017-08-31 09:12:00
117758    36078    904    2017-08-31 20:05:00    2017-08-31 20:05:00
117759    36078    556    2017-08-31 12:35:00    2017-08-31 12:35:00
117760    36079    855    2017-09-01 01:39:00    2017-09-01 01:39:00
117761    36079    727    2017-09-01 04:52:00    2017-09-01 04:52:00
117762    36079    581    2017-09-01 15:54:00    2017-09-01 15:54:00
117763    36079    951    2017-09-01 02:00:00    2017-09-01 02:00:00
117764    36079    631    2017-09-01 06:02:00    2017-09-01 06:02:00
117765    36080    665    2017-09-01 11:18:00    2017-09-01 11:18:00
117766    36080    874    2017-09-01 16:46:00    2017-09-01 16:46:00
117767    36080    535    2017-09-01 10:46:00    2017-09-01 10:46:00
117768    36080    618    2017-09-01 19:25:00    2017-09-01 19:25:00
117769    36080    505    2017-09-01 21:22:00    2017-09-01 21:22:00
117770    36081    571    2017-09-01 15:22:00    2017-09-01 15:22:00
117771    36081    652    2017-09-01 17:15:00    2017-09-01 17:15:00
117772    36081    764    2017-09-01 09:42:00    2017-09-01 09:42:00
117773    36081    754    2017-09-01 04:46:00    2017-09-01 04:46:00
117774    36081    843    2017-09-01 21:26:00    2017-09-01 21:26:00
117775    36082    695    2017-09-01 20:44:00    2017-09-01 20:44:00
117776    36082    956    2017-09-01 08:03:00    2017-09-01 08:03:00
117777    36082    470    2017-09-01 10:20:00    2017-09-01 10:20:00
117778    36082    530    2017-09-01 03:25:00    2017-09-01 03:25:00
117779    36082    734    2017-09-01 16:09:00    2017-09-01 16:09:00
117780    36083    935    2017-09-01 05:47:00    2017-09-01 05:47:00
117781    36083    743    2017-09-01 22:07:00    2017-09-01 22:07:00
117782    36083    512    2017-09-01 01:10:00    2017-09-01 01:10:00
117783    36083    612    2017-09-01 17:37:00    2017-09-01 17:37:00
117784    36083    761    2017-09-01 04:29:00    2017-09-01 04:29:00
117785    36084    871    2017-09-01 02:14:00    2017-09-01 02:14:00
117786    36084    624    2017-09-01 11:44:00    2017-09-01 11:44:00
117787    36084    864    2017-09-01 06:36:00    2017-09-01 06:36:00
117788    36084    567    2017-09-01 18:22:00    2017-09-01 18:22:00
117789    36084    782    2017-09-01 21:22:00    2017-09-01 21:22:00
117790    36085    718    2017-09-01 23:51:00    2017-09-01 23:51:00
117791    36085    587    2017-09-01 04:31:00    2017-09-01 04:31:00
117792    36085    889    2017-09-01 13:41:00    2017-09-01 13:41:00
117793    36085    949    2017-09-01 14:50:00    2017-09-01 14:50:00
117794    36085    931    2017-09-01 12:00:00    2017-09-01 12:00:00
117795    36086    751    2017-09-01 01:06:00    2017-09-01 01:06:00
117796    36086    726    2017-09-01 01:13:00    2017-09-01 01:13:00
117797    36086    762    2017-09-01 13:56:00    2017-09-01 13:56:00
117798    36086    712    2017-09-01 09:56:00    2017-09-01 09:56:00
117799    36086    852    2017-09-01 17:39:00    2017-09-01 17:39:00
117800    36087    734    2017-09-01 15:02:00    2017-09-01 15:02:00
117801    36087    551    2017-09-01 17:26:00    2017-09-01 17:26:00
117802    36087    742    2017-09-01 04:35:00    2017-09-01 04:35:00
117803    36087    829    2017-09-01 07:27:00    2017-09-01 07:27:00
117804    36087    715    2017-09-01 02:22:00    2017-09-01 02:22:00
117805    36088    504    2017-09-01 10:49:00    2017-09-01 10:49:00
117806    36088    841    2017-09-01 04:34:00    2017-09-01 04:34:00
117807    36088    837    2017-09-01 10:37:00    2017-09-01 10:37:00
117808    36088    508    2017-09-01 10:58:00    2017-09-01 10:58:00
117809    36088    758    2017-09-01 11:29:00    2017-09-01 11:29:00
117810    36089    585    2017-09-01 04:24:00    2017-09-01 04:24:00
117811    36089    477    2017-09-01 03:09:00    2017-09-01 03:09:00
117812    36089    511    2017-09-01 08:48:00    2017-09-01 08:48:00
117813    36089    529    2017-09-01 20:53:00    2017-09-01 20:53:00
117814    36089    717    2017-09-01 22:30:00    2017-09-01 22:30:00
117815    36090    561    2017-09-01 13:39:00    2017-09-01 13:39:00
117816    36090    806    2017-09-01 13:24:00    2017-09-01 13:24:00
117817    36090    850    2017-09-01 03:06:00    2017-09-01 03:06:00
117818    36090    634    2017-09-01 22:00:00    2017-09-01 22:00:00
117819    36090    812    2017-09-01 22:22:00    2017-09-01 22:22:00
117820    36091    560    2017-09-01 22:30:00    2017-09-01 22:30:00
117821    36091    762    2017-09-01 21:49:00    2017-09-01 21:49:00
117822    36091    653    2017-09-01 13:31:00    2017-09-01 13:31:00
117823    36091    736    2017-09-01 19:08:00    2017-09-01 19:08:00
117824    36091    525    2017-09-01 22:46:00    2017-09-01 22:46:00
117825    36092    715    2017-09-01 21:35:00    2017-09-01 21:35:00
117826    36092    700    2017-09-01 15:46:00    2017-09-01 15:46:00
117827    36092    649    2017-09-01 15:30:00    2017-09-01 15:30:00
117828    36092    573    2017-09-01 17:36:00    2017-09-01 17:36:00
117829    36092    804    2017-09-01 06:23:00    2017-09-01 06:23:00
117830    36093    542    2017-09-01 17:59:00    2017-09-01 17:59:00
117831    36093    851    2017-09-01 13:13:00    2017-09-01 13:13:00
117832    36093    661    2017-09-01 03:56:00    2017-09-01 03:56:00
117833    36093    949    2017-09-01 21:12:00    2017-09-01 21:12:00
117834    36093    523    2017-09-01 15:47:00    2017-09-01 15:47:00
117835    36094    934    2017-09-01 16:51:00    2017-09-01 16:51:00
117836    36094    631    2017-09-01 19:46:00    2017-09-01 19:46:00
117837    36094    715    2017-09-01 06:20:00    2017-09-01 06:20:00
117838    36094    853    2017-09-01 23:13:00    2017-09-01 23:13:00
117839    36094    877    2017-09-01 08:37:00    2017-09-01 08:37:00
117840    36095    824    2017-09-01 03:27:00    2017-09-01 03:27:00
117841    36095    908    2017-09-01 07:50:00    2017-09-01 07:50:00
117842    36095    486    2017-09-01 02:15:00    2017-09-01 02:15:00
117843    36095    779    2017-09-01 23:52:00    2017-09-01 23:52:00
117844    36095    904    2017-09-01 19:20:00    2017-09-01 19:20:00
117845    36096    791    2017-09-01 13:18:00    2017-09-01 13:18:00
117846    36096    781    2017-09-01 05:08:00    2017-09-01 05:08:00
117847    36096    898    2017-09-01 13:15:00    2017-09-01 13:15:00
117848    36096    558    2017-09-01 08:29:00    2017-09-01 08:29:00
117849    36096    501    2017-09-01 13:25:00    2017-09-01 13:25:00
117850    36097    784    2017-09-01 18:42:00    2017-09-01 18:42:00
117851    36097    953    2017-09-01 01:24:00    2017-09-01 01:24:00
117852    36097    836    2017-09-01 09:57:00    2017-09-01 09:57:00
117853    36097    568    2017-09-01 14:03:00    2017-09-01 14:03:00
117854    36097    624    2017-09-01 12:19:00    2017-09-01 12:19:00
117855    36098    877    2017-09-01 11:18:00    2017-09-01 11:18:00
117856    36098    784    2017-09-01 06:54:00    2017-09-01 06:54:00
117857    36098    658    2017-09-01 16:00:00    2017-09-01 16:00:00
117858    36098    517    2017-09-01 04:01:00    2017-09-01 04:01:00
117859    36098    769    2017-09-01 03:00:00    2017-09-01 03:00:00
117860    36099    867    2017-09-01 17:36:00    2017-09-01 17:36:00
117861    36099    723    2017-09-01 21:46:00    2017-09-01 21:46:00
117862    36099    733    2017-09-01 02:26:00    2017-09-01 02:26:00
117863    36099    723    2017-09-01 06:26:00    2017-09-01 06:26:00
117864    36099    713    2017-09-01 19:48:00    2017-09-01 19:48:00
117865    36100    825    2017-09-01 17:23:00    2017-09-01 17:23:00
117866    36100    728    2017-09-01 04:38:00    2017-09-01 04:38:00
117867    36100    712    2017-09-01 02:15:00    2017-09-01 02:15:00
117868    36100    768    2017-09-01 17:03:00    2017-09-01 17:03:00
117869    36100    585    2017-09-01 14:03:00    2017-09-01 14:03:00
117870    36101    497    2017-09-01 23:56:00    2017-09-01 23:56:00
117871    36101    759    2017-09-01 03:49:00    2017-09-01 03:49:00
117872    36101    610    2017-09-01 07:56:00    2017-09-01 07:56:00
117873    36101    599    2017-09-01 01:13:00    2017-09-01 01:13:00
117874    36101    883    2017-09-01 09:13:00    2017-09-01 09:13:00
117875    36102    783    2017-09-01 01:47:00    2017-09-01 01:47:00
117876    36102    692    2017-09-01 09:17:00    2017-09-01 09:17:00
117877    36102    694    2017-09-01 13:48:00    2017-09-01 13:48:00
117878    36102    793    2017-09-01 14:46:00    2017-09-01 14:46:00
117879    36102    867    2017-09-01 19:08:00    2017-09-01 19:08:00
117880    36103    638    2017-09-01 20:10:00    2017-09-01 20:10:00
117881    36103    663    2017-09-01 20:30:00    2017-09-01 20:30:00
117882    36103    833    2017-09-01 05:23:00    2017-09-01 05:23:00
117883    36103    839    2017-09-01 19:01:00    2017-09-01 19:01:00
117884    36103    733    2017-09-01 08:23:00    2017-09-01 08:23:00
117885    36104    798    2017-09-01 19:07:00    2017-09-01 19:07:00
117886    36104    530    2017-09-01 17:54:00    2017-09-01 17:54:00
117887    36104    680    2017-09-01 12:47:00    2017-09-01 12:47:00
117888    36104    542    2017-09-01 08:12:00    2017-09-01 08:12:00
117889    36104    830    2017-09-01 20:53:00    2017-09-01 20:53:00
117890    36105    526    2017-09-01 03:09:00    2017-09-01 03:09:00
117891    36105    922    2017-09-01 14:11:00    2017-09-01 14:11:00
117892    36105    932    2017-09-01 14:19:00    2017-09-01 14:19:00
117893    36105    851    2017-09-01 15:44:00    2017-09-01 15:44:00
117894    36105    741    2017-09-01 06:38:00    2017-09-01 06:38:00
117895    36106    605    2017-09-01 07:35:00    2017-09-01 07:35:00
117896    36106    745    2017-09-01 06:16:00    2017-09-01 06:16:00
117897    36106    898    2017-09-01 07:05:00    2017-09-01 07:05:00
117898    36106    784    2017-09-01 04:41:00    2017-09-01 04:41:00
117899    36106    664    2017-09-01 16:27:00    2017-09-01 16:27:00
117900    36107    869    2017-09-01 07:36:00    2017-09-01 07:36:00
117901    36107    722    2017-09-01 05:52:00    2017-09-01 05:52:00
117902    36107    685    2017-09-01 23:48:00    2017-09-01 23:48:00
117903    36107    542    2017-09-01 05:54:00    2017-09-01 05:54:00
117904    36107    622    2017-09-01 19:28:00    2017-09-01 19:28:00
117905    36108    650    2017-09-01 09:23:00    2017-09-01 09:23:00
117906    36108    796    2017-09-01 21:31:00    2017-09-01 21:31:00
117907    36108    639    2017-09-01 16:03:00    2017-09-01 16:03:00
117908    36108    708    2017-09-01 03:30:00    2017-09-01 03:30:00
117909    36108    772    2017-09-01 22:49:00    2017-09-01 22:49:00
117910    36109    821    2017-09-01 23:07:00    2017-09-01 23:07:00
117911    36109    913    2017-09-01 15:41:00    2017-09-01 15:41:00
117912    36109    698    2017-09-01 13:39:00    2017-09-01 13:39:00
117913    36109    892    2017-09-01 06:25:00    2017-09-01 06:25:00
117914    36109    850    2017-09-01 18:25:00    2017-09-01 18:25:00
117915    36110    582    2017-09-01 14:51:00    2017-09-01 14:51:00
117916    36110    800    2017-09-01 17:26:00    2017-09-01 17:26:00
117917    36110    730    2017-09-01 01:30:00    2017-09-01 01:30:00
117918    36110    872    2017-09-01 04:13:00    2017-09-01 04:13:00
117919    36110    550    2017-09-01 21:13:00    2017-09-01 21:13:00
117920    36111    689    2017-09-01 12:42:00    2017-09-01 12:42:00
117921    36111    560    2017-09-01 18:49:00    2017-09-01 18:49:00
117922    36111    632    2017-09-01 05:24:00    2017-09-01 05:24:00
117923    36111    632    2017-09-01 23:15:00    2017-09-01 23:15:00
117924    36111    522    2017-09-01 23:46:00    2017-09-01 23:46:00
117925    36112    910    2017-09-01 11:04:00    2017-09-01 11:04:00
117926    36112    938    2017-09-01 22:02:00    2017-09-01 22:02:00
117927    36112    584    2017-09-01 04:04:00    2017-09-01 04:04:00
117928    36112    884    2017-09-01 03:24:00    2017-09-01 03:24:00
117929    36112    537    2017-09-01 12:53:00    2017-09-01 12:53:00
117930    36113    807    2017-09-01 20:59:00    2017-09-01 20:59:00
117931    36113    536    2017-09-01 10:36:00    2017-09-01 10:36:00
117932    36113    873    2017-09-01 10:10:00    2017-09-01 10:10:00
117933    36113    651    2017-09-01 16:36:00    2017-09-01 16:36:00
117934    36113    830    2017-09-01 01:50:00    2017-09-01 01:50:00
117935    36114    788    2017-09-01 04:47:00    2017-09-01 04:47:00
117936    36114    853    2017-09-01 06:29:00    2017-09-01 06:29:00
117937    36114    940    2017-09-01 02:10:00    2017-09-01 02:10:00
117938    36114    589    2017-09-01 16:39:00    2017-09-01 16:39:00
117939    36114    752    2017-09-01 09:11:00    2017-09-01 09:11:00
117940    36115    689    2017-09-01 08:42:00    2017-09-01 08:42:00
117941    36115    634    2017-09-01 22:45:00    2017-09-01 22:45:00
117942    36115    908    2017-09-01 20:17:00    2017-09-01 20:17:00
117943    36115    675    2017-09-01 05:33:00    2017-09-01 05:33:00
117944    36115    912    2017-09-01 14:53:00    2017-09-01 14:53:00
117945    36116    804    2017-09-01 10:01:00    2017-09-01 10:01:00
117946    36116    573    2017-09-01 20:54:00    2017-09-01 20:54:00
117947    36116    748    2017-09-01 16:12:00    2017-09-01 16:12:00
117948    36116    922    2017-09-01 09:00:00    2017-09-01 09:00:00
117949    36116    919    2017-09-01 15:37:00    2017-09-01 15:37:00
117950    36117    909    2017-09-01 19:00:00    2017-09-01 19:00:00
117951    36117    666    2017-09-01 20:17:00    2017-09-01 20:17:00
117952    36117    535    2017-09-01 14:55:00    2017-09-01 14:55:00
117953    36117    811    2017-09-01 17:39:00    2017-09-01 17:39:00
117954    36117    793    2017-09-01 23:36:00    2017-09-01 23:36:00
117955    36118    803    2017-09-01 11:42:00    2017-09-01 11:42:00
117956    36118    909    2017-09-01 13:11:00    2017-09-01 13:11:00
117957    36118    797    2017-09-01 13:16:00    2017-09-01 13:16:00
117958    36118    872    2017-09-01 22:31:00    2017-09-01 22:31:00
117959    36118    773    2017-09-01 19:46:00    2017-09-01 19:46:00
117960    36119    738    2017-09-01 12:39:00    2017-09-01 12:39:00
117961    36119    514    2017-09-01 09:34:00    2017-09-01 09:34:00
117962    36119    625    2017-09-01 21:49:00    2017-09-01 21:49:00
117963    36119    474    2017-09-01 19:20:00    2017-09-01 19:20:00
117964    36119    485    2017-09-01 15:46:00    2017-09-01 15:46:00
117965    36120    578    2017-09-01 03:46:00    2017-09-01 03:46:00
117966    36120    606    2017-09-01 10:36:00    2017-09-01 10:36:00
117967    36120    624    2017-09-01 19:02:00    2017-09-01 19:02:00
117968    36120    757    2017-09-01 05:28:00    2017-09-01 05:28:00
117969    36120    799    2017-09-01 19:05:00    2017-09-01 19:05:00
117970    36121    587    2017-09-01 18:50:00    2017-09-01 18:50:00
117971    36121    497    2017-09-01 08:49:00    2017-09-01 08:49:00
117972    36121    957    2017-09-01 23:51:00    2017-09-01 23:51:00
117973    36121    575    2017-09-01 22:06:00    2017-09-01 22:06:00
117974    36121    951    2017-09-01 16:53:00    2017-09-01 16:53:00
117975    36122    836    2017-09-01 13:28:00    2017-09-01 13:28:00
117976    36122    620    2017-09-01 07:35:00    2017-09-01 07:35:00
117977    36122    592    2017-09-01 15:20:00    2017-09-01 15:20:00
117978    36122    498    2017-09-01 21:42:00    2017-09-01 21:42:00
117979    36122    631    2017-09-01 03:21:00    2017-09-01 03:21:00
117980    36123    566    2017-09-01 09:57:00    2017-09-01 09:57:00
117981    36123    512    2017-09-01 19:25:00    2017-09-01 19:25:00
117982    36123    609    2017-09-01 14:22:00    2017-09-01 14:22:00
117983    36123    927    2017-09-01 11:06:00    2017-09-01 11:06:00
117984    36123    790    2017-09-01 21:28:00    2017-09-01 21:28:00
117985    36124    771    2017-09-01 14:37:00    2017-09-01 14:37:00
117986    36124    799    2017-09-01 12:00:00    2017-09-01 12:00:00
117987    36124    628    2017-09-01 10:16:00    2017-09-01 10:16:00
117988    36124    767    2017-09-01 14:06:00    2017-09-01 14:06:00
117989    36124    551    2017-09-01 04:13:00    2017-09-01 04:13:00
117990    36125    872    2017-09-01 12:47:00    2017-09-01 12:47:00
117991    36125    752    2017-09-01 13:12:00    2017-09-01 13:12:00
117992    36125    670    2017-09-01 11:24:00    2017-09-01 11:24:00
117993    36125    914    2017-09-01 02:11:00    2017-09-01 02:11:00
117994    36125    593    2017-09-01 21:51:00    2017-09-01 21:51:00
117995    36126    943    2017-09-01 06:57:00    2017-09-01 06:57:00
117996    36126    593    2017-09-01 04:47:00    2017-09-01 04:47:00
117997    36126    757    2017-09-01 21:44:00    2017-09-01 21:44:00
117998    36126    720    2017-09-01 15:22:00    2017-09-01 15:22:00
117999    36126    719    2017-09-01 17:22:00    2017-09-01 17:22:00
118000    36127    770    2017-09-01 20:49:00    2017-09-01 20:49:00
118001    36127    735    2017-09-01 19:54:00    2017-09-01 19:54:00
118002    36127    752    2017-09-01 18:49:00    2017-09-01 18:49:00
118003    36127    796    2017-09-01 02:00:00    2017-09-01 02:00:00
118004    36127    622    2017-09-01 12:14:00    2017-09-01 12:14:00
118005    36128    562    2017-09-01 20:27:00    2017-09-01 20:27:00
118006    36128    492    2017-09-01 15:25:00    2017-09-01 15:25:00
118007    36128    647    2017-09-01 19:34:00    2017-09-01 19:34:00
118008    36128    634    2017-09-01 01:57:00    2017-09-01 01:57:00
118009    36128    883    2017-09-01 18:25:00    2017-09-01 18:25:00
118010    36129    722    2017-09-01 23:54:00    2017-09-01 23:54:00
118011    36129    871    2017-09-01 17:36:00    2017-09-01 17:36:00
118012    36129    740    2017-09-01 20:40:00    2017-09-01 20:40:00
118013    36129    509    2017-09-01 22:52:00    2017-09-01 22:52:00
118014    36129    639    2017-09-01 12:52:00    2017-09-01 12:52:00
118015    36130    519    2017-09-01 16:10:00    2017-09-01 16:10:00
118016    36130    747    2017-09-01 14:10:00    2017-09-01 14:10:00
118017    36130    723    2017-09-01 15:53:00    2017-09-01 15:53:00
118018    36130    780    2017-09-01 19:51:00    2017-09-01 19:51:00
118019    36130    901    2017-09-01 19:36:00    2017-09-01 19:36:00
118020    36131    874    2017-09-01 16:20:00    2017-09-01 16:20:00
118021    36131    786    2017-09-01 01:51:00    2017-09-01 01:51:00
118022    36131    553    2017-09-01 09:04:00    2017-09-01 09:04:00
118023    36131    569    2017-09-01 06:29:00    2017-09-01 06:29:00
118024    36131    955    2017-09-01 04:02:00    2017-09-01 04:02:00
118025    36132    830    2017-09-01 16:35:00    2017-09-01 16:35:00
118026    36132    554    2017-09-01 17:03:00    2017-09-01 17:03:00
118027    36132    911    2017-09-01 09:21:00    2017-09-01 09:21:00
118028    36132    876    2017-09-01 08:19:00    2017-09-01 08:19:00
118029    36132    751    2017-09-01 10:48:00    2017-09-01 10:48:00
118030    36133    751    2017-09-01 16:01:00    2017-09-01 16:01:00
118031    36133    735    2017-09-01 20:42:00    2017-09-01 20:42:00
118032    36133    601    2017-09-01 16:45:00    2017-09-01 16:45:00
118033    36133    610    2017-09-01 06:09:00    2017-09-01 06:09:00
118034    36133    497    2017-09-01 23:09:00    2017-09-01 23:09:00
118035    36134    608    2017-09-01 01:04:00    2017-09-01 01:04:00
118036    36134    914    2017-09-01 18:00:00    2017-09-01 18:00:00
118037    36134    878    2017-09-01 05:49:00    2017-09-01 05:49:00
118038    36134    763    2017-09-01 18:28:00    2017-09-01 18:28:00
118039    36134    472    2017-09-01 09:28:00    2017-09-01 09:28:00
118040    36135    634    2017-09-01 10:51:00    2017-09-01 10:51:00
118041    36135    854    2017-09-01 13:23:00    2017-09-01 13:23:00
118042    36135    880    2017-09-01 11:48:00    2017-09-01 11:48:00
118043    36135    675    2017-09-01 05:33:00    2017-09-01 05:33:00
118044    36135    520    2017-09-01 06:08:00    2017-09-01 06:08:00
118045    36136    947    2017-09-01 20:07:00    2017-09-01 20:07:00
118046    36136    846    2017-09-01 23:20:00    2017-09-01 23:20:00
118047    36136    520    2017-09-01 04:51:00    2017-09-01 04:51:00
118048    36136    779    2017-09-01 11:28:00    2017-09-01 11:28:00
118049    36136    856    2017-09-01 23:18:00    2017-09-01 23:18:00
118050    36137    534    2017-09-01 05:31:00    2017-09-01 05:31:00
118051    36137    578    2017-09-01 10:45:00    2017-09-01 10:45:00
118052    36137    572    2017-09-01 23:40:00    2017-09-01 23:40:00
118053    36137    819    2017-09-01 06:39:00    2017-09-01 06:39:00
118054    36137    564    2017-09-01 23:46:00    2017-09-01 23:46:00
118055    36138    941    2017-09-01 12:22:00    2017-09-01 12:22:00
118056    36138    655    2017-09-01 05:10:00    2017-09-01 05:10:00
118057    36138    920    2017-09-01 09:05:00    2017-09-01 09:05:00
118058    36138    949    2017-09-01 20:48:00    2017-09-01 20:48:00
118059    36138    854    2017-09-01 07:34:00    2017-09-01 07:34:00
118060    36139    649    2017-09-02 07:50:00    2017-09-02 07:50:00
118061    36139    815    2017-09-02 22:00:00    2017-09-02 22:00:00
118062    36139    493    2017-09-02 01:43:00    2017-09-02 01:43:00
118063    36139    617    2017-09-02 09:24:00    2017-09-02 09:24:00
118064    36139    757    2017-09-02 03:59:00    2017-09-02 03:59:00
118065    36140    951    2017-09-02 18:56:00    2017-09-02 18:56:00
118066    36140    479    2017-09-02 20:46:00    2017-09-02 20:46:00
118067    36140    859    2017-09-02 19:42:00    2017-09-02 19:42:00
118068    36140    710    2017-09-02 23:03:00    2017-09-02 23:03:00
118069    36140    888    2017-09-02 23:49:00    2017-09-02 23:49:00
118070    36141    815    2017-09-02 20:47:00    2017-09-02 20:47:00
118071    36141    763    2017-09-02 10:43:00    2017-09-02 10:43:00
118072    36141    902    2017-09-02 04:38:00    2017-09-02 04:38:00
118073    36141    653    2017-09-02 01:37:00    2017-09-02 01:37:00
118074    36141    935    2017-09-02 04:41:00    2017-09-02 04:41:00
118075    36142    592    2017-09-02 18:35:00    2017-09-02 18:35:00
118076    36142    923    2017-09-02 03:24:00    2017-09-02 03:24:00
118077    36142    652    2017-09-02 23:11:00    2017-09-02 23:11:00
118078    36142    638    2017-09-02 22:11:00    2017-09-02 22:11:00
118079    36142    525    2017-09-02 08:50:00    2017-09-02 08:50:00
118080    36143    468    2017-09-02 03:57:00    2017-09-02 03:57:00
118081    36143    588    2017-09-02 03:40:00    2017-09-02 03:40:00
118082    36143    890    2017-09-02 19:39:00    2017-09-02 19:39:00
118083    36143    576    2017-09-02 15:12:00    2017-09-02 15:12:00
118084    36143    480    2017-09-02 16:44:00    2017-09-02 16:44:00
118085    36144    931    2017-09-02 05:14:00    2017-09-02 05:14:00
118086    36144    476    2017-09-02 01:57:00    2017-09-02 01:57:00
118087    36144    579    2017-09-02 06:14:00    2017-09-02 06:14:00
118088    36144    758    2017-09-02 05:54:00    2017-09-02 05:54:00
118089    36144    504    2017-09-02 17:17:00    2017-09-02 17:17:00
118090    36145    815    2017-09-02 22:20:00    2017-09-02 22:20:00
118091    36145    514    2017-09-02 15:35:00    2017-09-02 15:35:00
118092    36145    642    2017-09-02 06:07:00    2017-09-02 06:07:00
118093    36145    771    2017-09-02 19:52:00    2017-09-02 19:52:00
118094    36145    738    2017-09-02 15:17:00    2017-09-02 15:17:00
118095    36146    804    2017-09-02 18:35:00    2017-09-02 18:35:00
118096    36146    748    2017-09-02 03:50:00    2017-09-02 03:50:00
118097    36146    876    2017-09-02 08:30:00    2017-09-02 08:30:00
118098    36146    774    2017-09-02 09:35:00    2017-09-02 09:35:00
118099    36146    662    2017-09-02 11:06:00    2017-09-02 11:06:00
118100    36147    924    2017-09-02 23:31:00    2017-09-02 23:31:00
118101    36147    616    2017-09-02 11:00:00    2017-09-02 11:00:00
118102    36147    589    2017-09-02 19:03:00    2017-09-02 19:03:00
118103    36147    488    2017-09-02 21:29:00    2017-09-02 21:29:00
118104    36147    713    2017-09-02 05:53:00    2017-09-02 05:53:00
118105    36148    711    2017-09-02 10:33:00    2017-09-02 10:33:00
118106    36148    660    2017-09-02 12:30:00    2017-09-02 12:30:00
118107    36148    850    2017-09-02 22:39:00    2017-09-02 22:39:00
118108    36148    596    2017-09-02 02:01:00    2017-09-02 02:01:00
118109    36148    656    2017-09-02 04:08:00    2017-09-02 04:08:00
118110    36149    796    2017-09-02 18:14:00    2017-09-02 18:14:00
118111    36149    706    2017-09-02 04:52:00    2017-09-02 04:52:00
118112    36149    544    2017-09-02 11:11:00    2017-09-02 11:11:00
118113    36149    705    2017-09-02 06:01:00    2017-09-02 06:01:00
118114    36149    663    2017-09-02 09:26:00    2017-09-02 09:26:00
118115    36150    904    2017-09-02 03:43:00    2017-09-02 03:43:00
118116    36150    550    2017-09-02 23:30:00    2017-09-02 23:30:00
118117    36150    814    2017-09-02 17:31:00    2017-09-02 17:31:00
118118    36150    957    2017-09-02 19:25:00    2017-09-02 19:25:00
118119    36150    560    2017-09-02 01:40:00    2017-09-02 01:40:00
118120    36151    913    2017-09-02 13:47:00    2017-09-02 13:47:00
118121    36151    658    2017-09-02 03:30:00    2017-09-02 03:30:00
118122    36151    727    2017-09-02 06:40:00    2017-09-02 06:40:00
118123    36151    852    2017-09-02 08:34:00    2017-09-02 08:34:00
118124    36151    799    2017-09-02 09:44:00    2017-09-02 09:44:00
118125    36152    567    2017-09-02 03:16:00    2017-09-02 03:16:00
118126    36152    777    2017-09-02 17:41:00    2017-09-02 17:41:00
118127    36152    867    2017-09-02 03:13:00    2017-09-02 03:13:00
118128    36152    944    2017-09-02 11:23:00    2017-09-02 11:23:00
118129    36152    639    2017-09-02 04:18:00    2017-09-02 04:18:00
118130    36153    915    2017-09-02 01:56:00    2017-09-02 01:56:00
118131    36153    476    2017-09-02 11:33:00    2017-09-02 11:33:00
118132    36153    615    2017-09-02 15:26:00    2017-09-02 15:26:00
118133    36153    741    2017-09-02 13:21:00    2017-09-02 13:21:00
118134    36153    692    2017-09-02 17:27:00    2017-09-02 17:27:00
118135    36154    808    2017-09-02 11:01:00    2017-09-02 11:01:00
118136    36154    682    2017-09-02 05:18:00    2017-09-02 05:18:00
118137    36154    751    2017-09-02 05:53:00    2017-09-02 05:53:00
118138    36154    778    2017-09-02 05:48:00    2017-09-02 05:48:00
118139    36154    604    2017-09-02 11:29:00    2017-09-02 11:29:00
118140    36155    929    2017-09-02 20:32:00    2017-09-02 20:32:00
118141    36155    547    2017-09-02 06:59:00    2017-09-02 06:59:00
118142    36155    571    2017-09-02 04:49:00    2017-09-02 04:49:00
118143    36155    611    2017-09-02 10:19:00    2017-09-02 10:19:00
118144    36155    521    2017-09-02 13:39:00    2017-09-02 13:39:00
118145    36156    844    2017-09-02 07:57:00    2017-09-02 07:57:00
118146    36156    600    2017-09-02 14:45:00    2017-09-02 14:45:00
118147    36156    585    2017-09-02 09:52:00    2017-09-02 09:52:00
118148    36156    831    2017-09-02 16:00:00    2017-09-02 16:00:00
118149    36156    473    2017-09-02 04:46:00    2017-09-02 04:46:00
118150    36157    813    2017-09-02 09:19:00    2017-09-02 09:19:00
118151    36157    853    2017-09-02 08:31:00    2017-09-02 08:31:00
118152    36157    799    2017-09-02 03:12:00    2017-09-02 03:12:00
118153    36157    501    2017-09-02 22:00:00    2017-09-02 22:00:00
118154    36157    559    2017-09-02 10:12:00    2017-09-02 10:12:00
118155    36158    827    2017-09-02 20:54:00    2017-09-02 20:54:00
118156    36158    618    2017-09-02 10:19:00    2017-09-02 10:19:00
118157    36158    500    2017-09-02 13:50:00    2017-09-02 13:50:00
118158    36158    489    2017-09-02 03:17:00    2017-09-02 03:17:00
118159    36158    542    2017-09-02 11:19:00    2017-09-02 11:19:00
118160    36159    889    2017-09-02 15:09:00    2017-09-02 15:09:00
118161    36159    629    2017-09-02 10:32:00    2017-09-02 10:32:00
118162    36159    541    2017-09-02 06:37:00    2017-09-02 06:37:00
118163    36159    904    2017-09-02 17:33:00    2017-09-02 17:33:00
118164    36159    776    2017-09-02 03:15:00    2017-09-02 03:15:00
118165    36160    741    2017-09-02 01:33:00    2017-09-02 01:33:00
118166    36160    784    2017-09-02 07:55:00    2017-09-02 07:55:00
118167    36160    528    2017-09-02 03:19:00    2017-09-02 03:19:00
118168    36160    752    2017-09-02 11:23:00    2017-09-02 11:23:00
118169    36160    754    2017-09-02 14:17:00    2017-09-02 14:17:00
118170    36161    616    2017-09-02 10:54:00    2017-09-02 10:54:00
118171    36161    877    2017-09-02 06:48:00    2017-09-02 06:48:00
118172    36161    673    2017-09-02 21:20:00    2017-09-02 21:20:00
118173    36161    613    2017-09-02 01:21:00    2017-09-02 01:21:00
118174    36161    639    2017-09-02 14:03:00    2017-09-02 14:03:00
118175    36162    804    2017-09-02 17:15:00    2017-09-02 17:15:00
118176    36162    645    2017-09-02 03:11:00    2017-09-02 03:11:00
118177    36162    671    2017-09-02 23:57:00    2017-09-02 23:57:00
118178    36162    678    2017-09-02 17:59:00    2017-09-02 17:59:00
118179    36162    768    2017-09-02 05:44:00    2017-09-02 05:44:00
118180    36163    852    2017-09-02 15:53:00    2017-09-02 15:53:00
118181    36163    469    2017-09-02 04:05:00    2017-09-02 04:05:00
118182    36163    799    2017-09-02 23:04:00    2017-09-02 23:04:00
118183    36163    705    2017-09-02 04:07:00    2017-09-02 04:07:00
118184    36163    955    2017-09-02 02:23:00    2017-09-02 02:23:00
118185    36164    876    2017-09-02 09:55:00    2017-09-02 09:55:00
118186    36164    520    2017-09-02 01:18:00    2017-09-02 01:18:00
118187    36164    606    2017-09-02 09:53:00    2017-09-02 09:53:00
118188    36164    737    2017-09-02 03:12:00    2017-09-02 03:12:00
118189    36164    837    2017-09-02 12:36:00    2017-09-02 12:36:00
118190    36165    601    2017-09-02 17:08:00    2017-09-02 17:08:00
118191    36165    721    2017-09-02 21:36:00    2017-09-02 21:36:00
118192    36165    534    2017-09-02 16:46:00    2017-09-02 16:46:00
118193    36165    503    2017-09-02 19:42:00    2017-09-02 19:42:00
118194    36165    523    2017-09-02 11:40:00    2017-09-02 11:40:00
118195    36166    603    2017-09-02 22:45:00    2017-09-02 22:45:00
118196    36166    918    2017-09-02 08:01:00    2017-09-02 08:01:00
118197    36166    935    2017-09-02 20:51:00    2017-09-02 20:51:00
118198    36166    541    2017-09-02 20:02:00    2017-09-02 20:02:00
118199    36166    718    2017-09-02 07:06:00    2017-09-02 07:06:00
118200    36167    713    2017-09-02 22:22:00    2017-09-02 22:22:00
118201    36167    680    2017-09-02 01:48:00    2017-09-02 01:48:00
118202    36167    623    2017-09-02 08:12:00    2017-09-02 08:12:00
118203    36167    676    2017-09-02 02:26:00    2017-09-02 02:26:00
118204    36167    731    2017-09-02 20:19:00    2017-09-02 20:19:00
118205    36168    631    2017-09-02 17:56:00    2017-09-02 17:56:00
118206    36168    497    2017-09-02 10:46:00    2017-09-02 10:46:00
118207    36168    744    2017-09-02 21:56:00    2017-09-02 21:56:00
118208    36168    724    2017-09-02 04:13:00    2017-09-02 04:13:00
118209    36168    767    2017-09-02 15:01:00    2017-09-02 15:01:00
118210    36169    490    2017-09-02 22:24:00    2017-09-02 22:24:00
118211    36169    515    2017-09-02 19:42:00    2017-09-02 19:42:00
118212    36169    884    2017-09-02 11:26:00    2017-09-02 11:26:00
118213    36169    616    2017-09-02 12:26:00    2017-09-02 12:26:00
118214    36169    722    2017-09-02 07:19:00    2017-09-02 07:19:00
118215    36170    704    2017-09-02 18:46:00    2017-09-02 18:46:00
118216    36170    902    2017-09-02 04:26:00    2017-09-02 04:26:00
118217    36170    740    2017-09-02 15:53:00    2017-09-02 15:53:00
118218    36170    784    2017-09-02 14:36:00    2017-09-02 14:36:00
118219    36170    576    2017-09-02 04:10:00    2017-09-02 04:10:00
118220    36171    910    2017-09-02 14:17:00    2017-09-02 14:17:00
118221    36171    472    2017-09-02 16:53:00    2017-09-02 16:53:00
118222    36171    943    2017-09-02 01:00:00    2017-09-02 01:00:00
118223    36171    786    2017-09-02 10:12:00    2017-09-02 10:12:00
118224    36171    786    2017-09-02 18:52:00    2017-09-02 18:52:00
118225    36172    485    2017-09-02 10:48:00    2017-09-02 10:48:00
118226    36172    587    2017-09-02 22:26:00    2017-09-02 22:26:00
118227    36172    807    2017-09-02 19:11:00    2017-09-02 19:11:00
118228    36172    913    2017-09-02 03:13:00    2017-09-02 03:13:00
118229    36172    695    2017-09-02 23:32:00    2017-09-02 23:32:00
118230    36173    863    2017-09-02 14:27:00    2017-09-02 14:27:00
118231    36173    879    2017-09-02 23:07:00    2017-09-02 23:07:00
118232    36173    649    2017-09-02 22:26:00    2017-09-02 22:26:00
118233    36173    905    2017-09-02 03:03:00    2017-09-02 03:03:00
118234    36173    942    2017-09-02 20:36:00    2017-09-02 20:36:00
118235    36174    501    2017-09-02 10:30:00    2017-09-02 10:30:00
118236    36174    519    2017-09-02 22:59:00    2017-09-02 22:59:00
118237    36174    522    2017-09-02 06:06:00    2017-09-02 06:06:00
118238    36174    937    2017-09-02 06:16:00    2017-09-02 06:16:00
118239    36174    932    2017-09-02 16:34:00    2017-09-02 16:34:00
118240    36175    475    2017-09-02 20:18:00    2017-09-02 20:18:00
118241    36175    928    2017-09-02 22:31:00    2017-09-02 22:31:00
118242    36175    514    2017-09-02 13:20:00    2017-09-02 13:20:00
118243    36175    600    2017-09-02 14:15:00    2017-09-02 14:15:00
118244    36175    697    2017-09-02 11:00:00    2017-09-02 11:00:00
118245    36176    757    2017-09-02 08:56:00    2017-09-02 08:56:00
118246    36176    886    2017-09-02 02:41:00    2017-09-02 02:41:00
118247    36176    568    2017-09-02 07:07:00    2017-09-02 07:07:00
118248    36176    514    2017-09-02 02:31:00    2017-09-02 02:31:00
118249    36176    717    2017-09-02 15:31:00    2017-09-02 15:31:00
118250    36177    487    2017-09-02 12:01:00    2017-09-02 12:01:00
118251    36177    763    2017-09-02 03:56:00    2017-09-02 03:56:00
118252    36177    716    2017-09-02 19:41:00    2017-09-02 19:41:00
118253    36177    866    2017-09-02 20:38:00    2017-09-02 20:38:00
118254    36177    538    2017-09-02 23:16:00    2017-09-02 23:16:00
118255    36178    645    2017-09-02 14:16:00    2017-09-02 14:16:00
118256    36178    596    2017-09-02 02:30:00    2017-09-02 02:30:00
118257    36178    940    2017-09-02 02:55:00    2017-09-02 02:55:00
118258    36178    490    2017-09-02 04:46:00    2017-09-02 04:46:00
118259    36178    912    2017-09-02 06:54:00    2017-09-02 06:54:00
118260    36179    632    2017-09-02 10:25:00    2017-09-02 10:25:00
118261    36179    876    2017-09-02 05:13:00    2017-09-02 05:13:00
118262    36179    741    2017-09-02 05:02:00    2017-09-02 05:02:00
118263    36179    511    2017-09-02 14:45:00    2017-09-02 14:45:00
118264    36179    498    2017-09-02 13:50:00    2017-09-02 13:50:00
118265    36180    863    2017-09-03 09:37:00    2017-09-03 09:37:00
118266    36180    540    2017-09-03 14:38:00    2017-09-03 14:38:00
118267    36180    598    2017-09-03 03:12:00    2017-09-03 03:12:00
118268    36180    745    2017-09-03 15:38:00    2017-09-03 15:38:00
118269    36180    714    2017-09-03 22:43:00    2017-09-03 22:43:00
118270    36181    745    2017-09-03 21:12:00    2017-09-03 21:12:00
118271    36181    743    2017-09-03 22:40:00    2017-09-03 22:40:00
118272    36181    720    2017-09-03 12:24:00    2017-09-03 12:24:00
118273    36181    729    2017-09-03 23:50:00    2017-09-03 23:50:00
118274    36181    700    2017-09-03 08:42:00    2017-09-03 08:42:00
118275    36182    583    2017-09-03 13:45:00    2017-09-03 13:45:00
118276    36182    736    2017-09-03 14:45:00    2017-09-03 14:45:00
118277    36182    907    2017-09-03 23:29:00    2017-09-03 23:29:00
118278    36182    477    2017-09-03 05:43:00    2017-09-03 05:43:00
118279    36182    585    2017-09-03 15:28:00    2017-09-03 15:28:00
118280    36183    535    2017-09-03 15:52:00    2017-09-03 15:52:00
118281    36183    900    2017-09-03 02:37:00    2017-09-03 02:37:00
118282    36183    676    2017-09-03 05:01:00    2017-09-03 05:01:00
118283    36183    763    2017-09-03 22:12:00    2017-09-03 22:12:00
118284    36183    958    2017-09-03 04:17:00    2017-09-03 04:17:00
118285    36184    682    2017-09-03 23:39:00    2017-09-03 23:39:00
118286    36184    521    2017-09-03 06:23:00    2017-09-03 06:23:00
118287    36184    530    2017-09-03 18:04:00    2017-09-03 18:04:00
118288    36184    937    2017-09-03 22:03:00    2017-09-03 22:03:00
118289    36184    467    2017-09-03 16:16:00    2017-09-03 16:16:00
118290    36185    916    2017-09-03 02:11:00    2017-09-03 02:11:00
118291    36185    691    2017-09-03 01:26:00    2017-09-03 01:26:00
118292    36185    813    2017-09-03 11:18:00    2017-09-03 11:18:00
118293    36185    781    2017-09-03 08:09:00    2017-09-03 08:09:00
118294    36185    694    2017-09-03 19:25:00    2017-09-03 19:25:00
118295    36186    496    2017-09-03 15:17:00    2017-09-03 15:17:00
118296    36186    754    2017-09-03 19:49:00    2017-09-03 19:49:00
118297    36186    598    2017-09-03 06:58:00    2017-09-03 06:58:00
118298    36186    548    2017-09-03 16:25:00    2017-09-03 16:25:00
118299    36186    728    2017-09-03 05:38:00    2017-09-03 05:38:00
118300    36187    463    2017-09-03 10:25:00    2017-09-03 10:25:00
118301    36187    805    2017-09-03 11:47:00    2017-09-03 11:47:00
118302    36187    752    2017-09-03 05:44:00    2017-09-03 05:44:00
118303    36187    682    2017-09-03 12:40:00    2017-09-03 12:40:00
118304    36187    954    2017-09-03 18:50:00    2017-09-03 18:50:00
118305    36188    471    2017-09-03 12:55:00    2017-09-03 12:55:00
118306    36188    552    2017-09-03 05:47:00    2017-09-03 05:47:00
118307    36188    777    2017-09-03 01:21:00    2017-09-03 01:21:00
118308    36188    675    2017-09-03 11:35:00    2017-09-03 11:35:00
118309    36188    477    2017-09-03 22:47:00    2017-09-03 22:47:00
118310    36189    750    2017-09-03 07:00:00    2017-09-03 07:00:00
118311    36189    867    2017-09-03 01:03:00    2017-09-03 01:03:00
118312    36189    676    2017-09-03 11:36:00    2017-09-03 11:36:00
118313    36189    831    2017-09-03 03:33:00    2017-09-03 03:33:00
118314    36189    591    2017-09-03 19:11:00    2017-09-03 19:11:00
118315    36190    749    2017-09-03 11:19:00    2017-09-03 11:19:00
118316    36190    834    2017-09-03 15:08:00    2017-09-03 15:08:00
118317    36190    637    2017-09-03 03:54:00    2017-09-03 03:54:00
118318    36190    648    2017-09-03 14:47:00    2017-09-03 14:47:00
118319    36190    605    2017-09-03 02:20:00    2017-09-03 02:20:00
118320    36191    825    2017-09-03 01:56:00    2017-09-03 01:56:00
118321    36191    577    2017-09-03 16:33:00    2017-09-03 16:33:00
118322    36191    789    2017-09-03 09:48:00    2017-09-03 09:48:00
118323    36191    688    2017-09-03 20:57:00    2017-09-03 20:57:00
118324    36191    630    2017-09-03 07:44:00    2017-09-03 07:44:00
118325    36192    897    2017-09-03 06:09:00    2017-09-03 06:09:00
118326    36192    529    2017-09-03 18:27:00    2017-09-03 18:27:00
118327    36192    940    2017-09-03 07:49:00    2017-09-03 07:49:00
118328    36192    890    2017-09-03 09:05:00    2017-09-03 09:05:00
118329    36192    613    2017-09-03 16:42:00    2017-09-03 16:42:00
118330    36193    509    2017-09-03 22:47:00    2017-09-03 22:47:00
118331    36193    494    2017-09-03 20:00:00    2017-09-03 20:00:00
118332    36193    860    2017-09-03 05:48:00    2017-09-03 05:48:00
118333    36193    661    2017-09-03 05:21:00    2017-09-03 05:21:00
118334    36193    495    2017-09-03 07:14:00    2017-09-03 07:14:00
118335    36194    910    2017-09-03 17:00:00    2017-09-03 17:00:00
118336    36194    466    2017-09-03 08:34:00    2017-09-03 08:34:00
118337    36194    547    2017-09-03 12:07:00    2017-09-03 12:07:00
118338    36194    540    2017-09-03 04:53:00    2017-09-03 04:53:00
118339    36194    947    2017-09-03 17:33:00    2017-09-03 17:33:00
118340    36195    467    2017-09-03 12:06:00    2017-09-03 12:06:00
118341    36195    510    2017-09-03 05:00:00    2017-09-03 05:00:00
118342    36195    655    2017-09-03 03:11:00    2017-09-03 03:11:00
118343    36195    713    2017-09-03 13:18:00    2017-09-03 13:18:00
118344    36195    587    2017-09-03 12:38:00    2017-09-03 12:38:00
118345    36196    530    2017-09-03 11:05:00    2017-09-03 11:05:00
118346    36196    504    2017-09-03 05:50:00    2017-09-03 05:50:00
118347    36196    527    2017-09-03 13:13:00    2017-09-03 13:13:00
118348    36196    790    2017-09-03 01:58:00    2017-09-03 01:58:00
118349    36196    691    2017-09-03 12:01:00    2017-09-03 12:01:00
118350    36197    634    2017-09-03 13:20:00    2017-09-03 13:20:00
118351    36197    602    2017-09-03 02:40:00    2017-09-03 02:40:00
118352    36197    693    2017-09-03 14:12:00    2017-09-03 14:12:00
118353    36197    482    2017-09-03 11:42:00    2017-09-03 11:42:00
118354    36197    479    2017-09-03 14:38:00    2017-09-03 14:38:00
118355    36198    669    2017-09-03 13:20:00    2017-09-03 13:20:00
118356    36198    485    2017-09-03 19:12:00    2017-09-03 19:12:00
118357    36198    855    2017-09-03 01:06:00    2017-09-03 01:06:00
118358    36198    750    2017-09-03 14:29:00    2017-09-03 14:29:00
118359    36198    778    2017-09-03 15:32:00    2017-09-03 15:32:00
118360    36199    812    2017-09-03 08:53:00    2017-09-03 08:53:00
118361    36199    535    2017-09-03 11:22:00    2017-09-03 11:22:00
118362    36199    781    2017-09-03 23:09:00    2017-09-03 23:09:00
118363    36199    561    2017-09-03 20:14:00    2017-09-03 20:14:00
118364    36199    770    2017-09-03 16:45:00    2017-09-03 16:45:00
118365    36200    691    2017-09-03 23:39:00    2017-09-03 23:39:00
118366    36200    901    2017-09-03 15:12:00    2017-09-03 15:12:00
118367    36200    955    2017-09-03 22:30:00    2017-09-03 22:30:00
118368    36200    715    2017-09-03 05:25:00    2017-09-03 05:25:00
118369    36200    954    2017-09-03 09:13:00    2017-09-03 09:13:00
118370    36201    873    2017-09-03 02:27:00    2017-09-03 02:27:00
118371    36201    592    2017-09-03 14:26:00    2017-09-03 14:26:00
118372    36201    611    2017-09-03 14:46:00    2017-09-03 14:46:00
118373    36201    783    2017-09-03 04:39:00    2017-09-03 04:39:00
118374    36201    795    2017-09-03 23:31:00    2017-09-03 23:31:00
118375    36202    675    2017-09-03 07:54:00    2017-09-03 07:54:00
118376    36202    933    2017-09-03 18:31:00    2017-09-03 18:31:00
118377    36202    475    2017-09-03 07:04:00    2017-09-03 07:04:00
118378    36202    693    2017-09-03 04:33:00    2017-09-03 04:33:00
118379    36202    947    2017-09-03 15:53:00    2017-09-03 15:53:00
118380    36203    886    2017-09-04 04:04:00    2017-09-04 04:04:00
118381    36203    907    2017-09-04 01:25:00    2017-09-04 01:25:00
118382    36203    861    2017-09-04 23:01:00    2017-09-04 23:01:00
118383    36203    836    2017-09-04 08:21:00    2017-09-04 08:21:00
118384    36203    703    2017-09-04 02:23:00    2017-09-04 02:23:00
118385    36204    677    2017-09-04 16:05:00    2017-09-04 16:05:00
118386    36204    479    2017-09-04 22:38:00    2017-09-04 22:38:00
118387    36204    705    2017-09-04 23:20:00    2017-09-04 23:20:00
118388    36204    577    2017-09-04 18:43:00    2017-09-04 18:43:00
118389    36204    775    2017-09-04 19:00:00    2017-09-04 19:00:00
118390    36205    606    2017-09-04 01:42:00    2017-09-04 01:42:00
118391    36205    528    2017-09-04 01:32:00    2017-09-04 01:32:00
118392    36205    768    2017-09-04 15:37:00    2017-09-04 15:37:00
118393    36205    601    2017-09-04 20:59:00    2017-09-04 20:59:00
118394    36205    784    2017-09-04 10:45:00    2017-09-04 10:45:00
118395    36206    929    2017-09-04 08:07:00    2017-09-04 08:07:00
118396    36206    742    2017-09-04 20:28:00    2017-09-04 20:28:00
118397    36206    899    2017-09-04 09:39:00    2017-09-04 09:39:00
118398    36206    835    2017-09-04 15:03:00    2017-09-04 15:03:00
118399    36206    503    2017-09-04 23:46:00    2017-09-04 23:46:00
118400    36207    681    2017-09-04 21:48:00    2017-09-04 21:48:00
118401    36207    735    2017-09-04 14:46:00    2017-09-04 14:46:00
118402    36207    894    2017-09-04 23:49:00    2017-09-04 23:49:00
118403    36207    740    2017-09-04 21:33:00    2017-09-04 21:33:00
118404    36207    649    2017-09-04 19:49:00    2017-09-04 19:49:00
118405    36208    799    2017-09-04 04:13:00    2017-09-04 04:13:00
118406    36208    947    2017-09-04 01:49:00    2017-09-04 01:49:00
118407    36208    954    2017-09-04 17:53:00    2017-09-04 17:53:00
118408    36208    498    2017-09-04 08:59:00    2017-09-04 08:59:00
118409    36208    728    2017-09-04 23:47:00    2017-09-04 23:47:00
118410    36209    885    2017-09-04 01:55:00    2017-09-04 01:55:00
118411    36209    734    2017-09-04 12:32:00    2017-09-04 12:32:00
118412    36209    501    2017-09-04 21:24:00    2017-09-04 21:24:00
118413    36209    684    2017-09-04 22:28:00    2017-09-04 22:28:00
118414    36209    710    2017-09-04 08:09:00    2017-09-04 08:09:00
118415    36210    655    2017-09-04 03:26:00    2017-09-04 03:26:00
118416    36210    690    2017-09-04 21:56:00    2017-09-04 21:56:00
118417    36210    656    2017-09-04 06:19:00    2017-09-04 06:19:00
118418    36210    723    2017-09-04 18:51:00    2017-09-04 18:51:00
118419    36210    800    2017-09-04 06:17:00    2017-09-04 06:17:00
118420    36211    895    2017-09-04 01:54:00    2017-09-04 01:54:00
118421    36211    831    2017-09-04 15:49:00    2017-09-04 15:49:00
118422    36211    743    2017-09-04 21:59:00    2017-09-04 21:59:00
118423    36211    747    2017-09-04 07:45:00    2017-09-04 07:45:00
118424    36211    768    2017-09-04 08:13:00    2017-09-04 08:13:00
118425    36212    639    2017-09-04 10:31:00    2017-09-04 10:31:00
118426    36212    541    2017-09-04 20:28:00    2017-09-04 20:28:00
118427    36212    580    2017-09-04 13:09:00    2017-09-04 13:09:00
118428    36212    841    2017-09-04 21:26:00    2017-09-04 21:26:00
118429    36212    568    2017-09-04 11:11:00    2017-09-04 11:11:00
118430    36213    561    2017-09-04 09:21:00    2017-09-04 09:21:00
118431    36213    843    2017-09-04 15:17:00    2017-09-04 15:17:00
118432    36213    556    2017-09-04 09:42:00    2017-09-04 09:42:00
118433    36213    505    2017-09-04 15:33:00    2017-09-04 15:33:00
118434    36213    509    2017-09-04 08:59:00    2017-09-04 08:59:00
118435    36214    534    2017-09-04 01:51:00    2017-09-04 01:51:00
118436    36214    764    2017-09-04 03:12:00    2017-09-04 03:12:00
118437    36214    494    2017-09-04 23:36:00    2017-09-04 23:36:00
118438    36214    632    2017-09-04 03:50:00    2017-09-04 03:50:00
118439    36214    813    2017-09-04 04:29:00    2017-09-04 04:29:00
118440    36215    811    2017-09-04 05:12:00    2017-09-04 05:12:00
118441    36215    599    2017-09-04 14:54:00    2017-09-04 14:54:00
118442    36215    532    2017-09-04 22:13:00    2017-09-04 22:13:00
118443    36215    629    2017-09-04 19:38:00    2017-09-04 19:38:00
118444    36215    684    2017-09-04 19:47:00    2017-09-04 19:47:00
118445    36216    487    2017-09-04 03:24:00    2017-09-04 03:24:00
118446    36216    929    2017-09-04 07:03:00    2017-09-04 07:03:00
118447    36216    864    2017-09-04 03:50:00    2017-09-04 03:50:00
118448    36216    940    2017-09-04 10:44:00    2017-09-04 10:44:00
118449    36216    875    2017-09-04 20:08:00    2017-09-04 20:08:00
118450    36217    871    2017-09-04 04:33:00    2017-09-04 04:33:00
118451    36217    622    2017-09-04 21:09:00    2017-09-04 21:09:00
118452    36217    847    2017-09-04 14:01:00    2017-09-04 14:01:00
118453    36217    837    2017-09-04 03:46:00    2017-09-04 03:46:00
118454    36217    892    2017-09-04 20:18:00    2017-09-04 20:18:00
118455    36218    738    2017-09-04 04:20:00    2017-09-04 04:20:00
118456    36218    530    2017-09-04 08:07:00    2017-09-04 08:07:00
118457    36218    583    2017-09-04 07:57:00    2017-09-04 07:57:00
118458    36218    855    2017-09-04 09:44:00    2017-09-04 09:44:00
118459    36218    472    2017-09-04 19:48:00    2017-09-04 19:48:00
118460    36219    664    2017-09-04 05:55:00    2017-09-04 05:55:00
118461    36219    939    2017-09-04 04:17:00    2017-09-04 04:17:00
118462    36219    952    2017-09-04 04:35:00    2017-09-04 04:35:00
118463    36219    910    2017-09-04 18:12:00    2017-09-04 18:12:00
118464    36219    823    2017-09-04 18:10:00    2017-09-04 18:10:00
118465    36220    467    2017-09-04 23:27:00    2017-09-04 23:27:00
118466    36220    708    2017-09-04 16:29:00    2017-09-04 16:29:00
118467    36220    798    2017-09-04 14:44:00    2017-09-04 14:44:00
118468    36220    558    2017-09-04 18:08:00    2017-09-04 18:08:00
118469    36220    516    2017-09-04 12:04:00    2017-09-04 12:04:00
118470    36221    938    2017-09-04 08:00:00    2017-09-04 08:00:00
118471    36221    835    2017-09-04 12:28:00    2017-09-04 12:28:00
118472    36221    640    2017-09-04 19:51:00    2017-09-04 19:51:00
118473    36221    742    2017-09-04 17:50:00    2017-09-04 17:50:00
118474    36221    665    2017-09-04 07:01:00    2017-09-04 07:01:00
118475    36222    597    2017-09-04 01:48:00    2017-09-04 01:48:00
118476    36222    923    2017-09-04 02:31:00    2017-09-04 02:31:00
118477    36222    506    2017-09-04 13:08:00    2017-09-04 13:08:00
118478    36222    586    2017-09-04 01:37:00    2017-09-04 01:37:00
118479    36222    487    2017-09-04 20:04:00    2017-09-04 20:04:00
118480    36223    808    2017-09-04 19:01:00    2017-09-04 19:01:00
118481    36223    960    2017-09-04 06:18:00    2017-09-04 06:18:00
118482    36223    661    2017-09-04 09:47:00    2017-09-04 09:47:00
118483    36223    622    2017-09-04 11:06:00    2017-09-04 11:06:00
118484    36223    565    2017-09-04 12:23:00    2017-09-04 12:23:00
118485    36224    767    2017-09-04 18:49:00    2017-09-04 18:49:00
118486    36224    694    2017-09-04 20:20:00    2017-09-04 20:20:00
118487    36224    638    2017-09-04 12:36:00    2017-09-04 12:36:00
118488    36224    579    2017-09-04 10:18:00    2017-09-04 10:18:00
118489    36224    627    2017-09-04 23:12:00    2017-09-04 23:12:00
118490    36225    927    2017-09-04 14:11:00    2017-09-04 14:11:00
118491    36225    937    2017-09-04 06:52:00    2017-09-04 06:52:00
118492    36225    567    2017-09-04 06:24:00    2017-09-04 06:24:00
118493    36225    837    2017-09-04 04:19:00    2017-09-04 04:19:00
118494    36225    947    2017-09-04 23:24:00    2017-09-04 23:24:00
118495    36226    622    2017-09-04 20:22:00    2017-09-04 20:22:00
118496    36226    773    2017-09-04 07:08:00    2017-09-04 07:08:00
118497    36226    489    2017-09-04 08:13:00    2017-09-04 08:13:00
118498    36226    636    2017-09-04 17:03:00    2017-09-04 17:03:00
118499    36226    490    2017-09-04 08:14:00    2017-09-04 08:14:00
118500    36227    463    2017-09-04 12:42:00    2017-09-04 12:42:00
118501    36227    809    2017-09-04 01:19:00    2017-09-04 01:19:00
118502    36227    738    2017-09-04 21:16:00    2017-09-04 21:16:00
118503    36227    593    2017-09-04 23:08:00    2017-09-04 23:08:00
118504    36227    534    2017-09-04 04:26:00    2017-09-04 04:26:00
118505    36228    541    2017-09-04 15:50:00    2017-09-04 15:50:00
118506    36228    698    2017-09-04 22:00:00    2017-09-04 22:00:00
118507    36228    750    2017-09-04 11:32:00    2017-09-04 11:32:00
118508    36228    944    2017-09-04 05:57:00    2017-09-04 05:57:00
118509    36228    650    2017-09-04 06:04:00    2017-09-04 06:04:00
118510    36229    481    2017-09-04 09:44:00    2017-09-04 09:44:00
118511    36229    822    2017-09-04 07:55:00    2017-09-04 07:55:00
118512    36229    642    2017-09-04 22:30:00    2017-09-04 22:30:00
118513    36229    582    2017-09-04 11:17:00    2017-09-04 11:17:00
118514    36229    933    2017-09-04 19:01:00    2017-09-04 19:01:00
118515    36230    777    2017-09-04 11:58:00    2017-09-04 11:58:00
118516    36230    470    2017-09-04 19:26:00    2017-09-04 19:26:00
118517    36230    910    2017-09-04 02:21:00    2017-09-04 02:21:00
118518    36230    524    2017-09-04 04:10:00    2017-09-04 04:10:00
118519    36230    546    2017-09-04 12:46:00    2017-09-04 12:46:00
118520    36231    886    2017-09-04 15:31:00    2017-09-04 15:31:00
118521    36231    469    2017-09-04 17:01:00    2017-09-04 17:01:00
118522    36231    488    2017-09-04 14:40:00    2017-09-04 14:40:00
118523    36231    707    2017-09-04 18:12:00    2017-09-04 18:12:00
118524    36231    512    2017-09-04 20:17:00    2017-09-04 20:17:00
118525    36232    704    2017-09-04 23:31:00    2017-09-04 23:31:00
118526    36232    878    2017-09-04 09:19:00    2017-09-04 09:19:00
118527    36232    669    2017-09-04 17:55:00    2017-09-04 17:55:00
118528    36232    540    2017-09-04 11:48:00    2017-09-04 11:48:00
118529    36232    674    2017-09-04 12:34:00    2017-09-04 12:34:00
118530    36233    796    2017-09-04 02:56:00    2017-09-04 02:56:00
118531    36233    924    2017-09-04 04:08:00    2017-09-04 04:08:00
118532    36233    911    2017-09-04 15:55:00    2017-09-04 15:55:00
118533    36233    736    2017-09-04 18:48:00    2017-09-04 18:48:00
118534    36233    950    2017-09-04 18:16:00    2017-09-04 18:16:00
118535    36234    657    2017-09-04 18:39:00    2017-09-04 18:39:00
118536    36234    645    2017-09-04 23:53:00    2017-09-04 23:53:00
118537    36234    872    2017-09-04 19:30:00    2017-09-04 19:30:00
118538    36234    722    2017-09-04 11:30:00    2017-09-04 11:30:00
118539    36234    619    2017-09-04 16:35:00    2017-09-04 16:35:00
118540    36235    542    2017-09-04 14:53:00    2017-09-04 14:53:00
118541    36235    934    2017-09-04 04:55:00    2017-09-04 04:55:00
118542    36235    928    2017-09-04 23:12:00    2017-09-04 23:12:00
118543    36235    539    2017-09-04 04:51:00    2017-09-04 04:51:00
118544    36235    758    2017-09-04 05:47:00    2017-09-04 05:47:00
118545    36236    608    2017-09-04 08:26:00    2017-09-04 08:26:00
118546    36236    816    2017-09-04 18:00:00    2017-09-04 18:00:00
118547    36236    701    2017-09-04 10:16:00    2017-09-04 10:16:00
118548    36236    689    2017-09-04 21:31:00    2017-09-04 21:31:00
118549    36236    780    2017-09-04 18:31:00    2017-09-04 18:31:00
118550    36237    859    2017-09-04 21:30:00    2017-09-04 21:30:00
118551    36237    953    2017-09-04 12:45:00    2017-09-04 12:45:00
118552    36237    598    2017-09-04 05:29:00    2017-09-04 05:29:00
118553    36237    764    2017-09-04 02:18:00    2017-09-04 02:18:00
118554    36237    875    2017-09-04 22:10:00    2017-09-04 22:10:00
118555    36238    523    2017-09-04 12:17:00    2017-09-04 12:17:00
118556    36238    824    2017-09-04 19:57:00    2017-09-04 19:57:00
118557    36238    747    2017-09-04 10:09:00    2017-09-04 10:09:00
118558    36238    925    2017-09-04 05:18:00    2017-09-04 05:18:00
118559    36238    882    2017-09-04 12:06:00    2017-09-04 12:06:00
118560    36239    571    2017-09-04 13:19:00    2017-09-04 13:19:00
118561    36239    599    2017-09-04 07:47:00    2017-09-04 07:47:00
118562    36239    938    2017-09-04 05:04:00    2017-09-04 05:04:00
118563    36239    650    2017-09-04 03:08:00    2017-09-04 03:08:00
118564    36239    718    2017-09-04 10:46:00    2017-09-04 10:46:00
118565    36240    733    2017-09-04 02:35:00    2017-09-04 02:35:00
118566    36240    731    2017-09-04 20:08:00    2017-09-04 20:08:00
118567    36240    490    2017-09-04 04:27:00    2017-09-04 04:27:00
118568    36240    526    2017-09-04 01:24:00    2017-09-04 01:24:00
118569    36240    555    2017-09-04 21:12:00    2017-09-04 21:12:00
118570    36241    544    2017-09-04 03:40:00    2017-09-04 03:40:00
118571    36241    843    2017-09-04 13:29:00    2017-09-04 13:29:00
118572    36241    728    2017-09-04 18:00:00    2017-09-04 18:00:00
118573    36241    668    2017-09-04 22:27:00    2017-09-04 22:27:00
118574    36241    730    2017-09-04 09:52:00    2017-09-04 09:52:00
118575    36242    664    2017-09-04 01:57:00    2017-09-04 01:57:00
118576    36242    770    2017-09-04 20:39:00    2017-09-04 20:39:00
118577    36242    891    2017-09-04 05:04:00    2017-09-04 05:04:00
118578    36242    644    2017-09-04 09:11:00    2017-09-04 09:11:00
118579    36242    559    2017-09-04 16:36:00    2017-09-04 16:36:00
118580    36243    860    2017-09-04 17:36:00    2017-09-04 17:36:00
118581    36243    557    2017-09-04 16:11:00    2017-09-04 16:11:00
118582    36243    478    2017-09-04 11:56:00    2017-09-04 11:56:00
118583    36243    904    2017-09-04 11:13:00    2017-09-04 11:13:00
118584    36243    905    2017-09-04 20:28:00    2017-09-04 20:28:00
118585    36244    629    2017-09-04 22:48:00    2017-09-04 22:48:00
118586    36244    696    2017-09-04 16:04:00    2017-09-04 16:04:00
118587    36244    941    2017-09-04 19:59:00    2017-09-04 19:59:00
118588    36244    672    2017-09-04 20:31:00    2017-09-04 20:31:00
118589    36244    669    2017-09-04 23:08:00    2017-09-04 23:08:00
118590    36245    710    2017-09-04 04:36:00    2017-09-04 04:36:00
118591    36245    821    2017-09-04 02:12:00    2017-09-04 02:12:00
118592    36245    519    2017-09-04 21:46:00    2017-09-04 21:46:00
118593    36245    696    2017-09-04 20:58:00    2017-09-04 20:58:00
118594    36245    934    2017-09-04 23:31:00    2017-09-04 23:31:00
118595    36246    940    2017-09-04 06:28:00    2017-09-04 06:28:00
118596    36246    642    2017-09-04 11:23:00    2017-09-04 11:23:00
118597    36246    820    2017-09-04 02:35:00    2017-09-04 02:35:00
118598    36246    829    2017-09-04 08:33:00    2017-09-04 08:33:00
118599    36246    505    2017-09-04 02:41:00    2017-09-04 02:41:00
118600    36247    544    2017-09-04 21:56:00    2017-09-04 21:56:00
118601    36247    584    2017-09-04 16:17:00    2017-09-04 16:17:00
118602    36247    659    2017-09-04 18:40:00    2017-09-04 18:40:00
118603    36247    502    2017-09-04 11:56:00    2017-09-04 11:56:00
118604    36247    851    2017-09-04 23:47:00    2017-09-04 23:47:00
118605    36248    669    2017-09-04 05:04:00    2017-09-04 05:04:00
118606    36248    779    2017-09-04 07:29:00    2017-09-04 07:29:00
118607    36248    676    2017-09-04 06:43:00    2017-09-04 06:43:00
118608    36248    716    2017-09-04 12:56:00    2017-09-04 12:56:00
118609    36248    694    2017-09-04 15:47:00    2017-09-04 15:47:00
118610    36249    856    2017-09-04 11:07:00    2017-09-04 11:07:00
118611    36249    907    2017-09-04 09:31:00    2017-09-04 09:31:00
118612    36249    733    2017-09-04 18:51:00    2017-09-04 18:51:00
118613    36249    788    2017-09-04 13:35:00    2017-09-04 13:35:00
118614    36249    591    2017-09-04 06:33:00    2017-09-04 06:33:00
118615    36250    581    2017-09-04 05:10:00    2017-09-04 05:10:00
118616    36250    869    2017-09-04 07:46:00    2017-09-04 07:46:00
118617    36250    891    2017-09-04 17:28:00    2017-09-04 17:28:00
118618    36250    792    2017-09-04 17:49:00    2017-09-04 17:49:00
118619    36250    956    2017-09-04 02:47:00    2017-09-04 02:47:00
118620    36251    590    2017-09-04 10:25:00    2017-09-04 10:25:00
118621    36251    482    2017-09-04 08:48:00    2017-09-04 08:48:00
118622    36251    639    2017-09-04 01:50:00    2017-09-04 01:50:00
118623    36251    731    2017-09-04 14:39:00    2017-09-04 14:39:00
118624    36251    653    2017-09-04 23:49:00    2017-09-04 23:49:00
118625    36252    817    2017-09-04 17:52:00    2017-09-04 17:52:00
118626    36252    880    2017-09-04 15:31:00    2017-09-04 15:31:00
118627    36252    631    2017-09-04 05:05:00    2017-09-04 05:05:00
118628    36252    808    2017-09-04 02:45:00    2017-09-04 02:45:00
118629    36252    916    2017-09-04 18:57:00    2017-09-04 18:57:00
118630    36253    872    2017-09-04 12:12:00    2017-09-04 12:12:00
118631    36253    579    2017-09-04 14:00:00    2017-09-04 14:00:00
118632    36253    899    2017-09-04 13:45:00    2017-09-04 13:45:00
118633    36253    659    2017-09-04 06:58:00    2017-09-04 06:58:00
118634    36253    708    2017-09-04 13:46:00    2017-09-04 13:46:00
118635    36254    470    2017-09-04 03:39:00    2017-09-04 03:39:00
118636    36254    786    2017-09-04 05:04:00    2017-09-04 05:04:00
118637    36254    890    2017-09-04 02:57:00    2017-09-04 02:57:00
118638    36254    937    2017-09-04 02:02:00    2017-09-04 02:02:00
118639    36254    813    2017-09-04 13:00:00    2017-09-04 13:00:00
118640    36255    770    2017-09-04 23:54:00    2017-09-04 23:54:00
118641    36255    905    2017-09-04 01:13:00    2017-09-04 01:13:00
118642    36255    601    2017-09-04 15:09:00    2017-09-04 15:09:00
118643    36255    756    2017-09-04 21:19:00    2017-09-04 21:19:00
118644    36255    911    2017-09-04 05:00:00    2017-09-04 05:00:00
118645    36256    893    2017-09-04 20:54:00    2017-09-04 20:54:00
118646    36256    719    2017-09-04 05:54:00    2017-09-04 05:54:00
118647    36256    784    2017-09-04 05:32:00    2017-09-04 05:32:00
118648    36256    778    2017-09-04 17:28:00    2017-09-04 17:28:00
118649    36256    682    2017-09-04 17:09:00    2017-09-04 17:09:00
118650    36257    884    2017-09-04 03:20:00    2017-09-04 03:20:00
118651    36257    769    2017-09-04 09:14:00    2017-09-04 09:14:00
118652    36257    862    2017-09-04 10:13:00    2017-09-04 10:13:00
118653    36257    484    2017-09-04 12:08:00    2017-09-04 12:08:00
118654    36257    465    2017-09-04 03:35:00    2017-09-04 03:35:00
118655    36258    732    2017-09-04 09:44:00    2017-09-04 09:44:00
118656    36258    914    2017-09-04 17:13:00    2017-09-04 17:13:00
118657    36258    519    2017-09-04 21:32:00    2017-09-04 21:32:00
118658    36258    946    2017-09-04 19:48:00    2017-09-04 19:48:00
118659    36258    876    2017-09-04 20:39:00    2017-09-04 20:39:00
118660    36259    833    2017-09-04 07:34:00    2017-09-04 07:34:00
118661    36259    540    2017-09-04 22:45:00    2017-09-04 22:45:00
118662    36259    736    2017-09-04 05:02:00    2017-09-04 05:02:00
118663    36259    735    2017-09-04 12:22:00    2017-09-04 12:22:00
118664    36259    471    2017-09-04 18:01:00    2017-09-04 18:01:00
118665    36260    570    2017-09-04 15:31:00    2017-09-04 15:31:00
118666    36260    961    2017-09-04 06:41:00    2017-09-04 06:41:00
118667    36260    574    2017-09-04 05:16:00    2017-09-04 05:16:00
118668    36260    501    2017-09-04 05:39:00    2017-09-04 05:39:00
118669    36260    654    2017-09-04 19:08:00    2017-09-04 19:08:00
118670    36261    879    2017-09-04 09:41:00    2017-09-04 09:41:00
118671    36261    600    2017-09-04 18:05:00    2017-09-04 18:05:00
118672    36261    589    2017-09-04 19:33:00    2017-09-04 19:33:00
118673    36261    714    2017-09-04 13:19:00    2017-09-04 13:19:00
118674    36261    467    2017-09-04 14:52:00    2017-09-04 14:52:00
118675    36262    643    2017-09-04 10:11:00    2017-09-04 10:11:00
118676    36262    793    2017-09-04 20:44:00    2017-09-04 20:44:00
118677    36262    929    2017-09-04 11:30:00    2017-09-04 11:30:00
118678    36262    941    2017-09-04 07:17:00    2017-09-04 07:17:00
118679    36262    506    2017-09-04 20:35:00    2017-09-04 20:35:00
118680    36263    926    2017-09-04 16:57:00    2017-09-04 16:57:00
118681    36263    628    2017-09-04 15:27:00    2017-09-04 15:27:00
118682    36263    713    2017-09-04 14:47:00    2017-09-04 14:47:00
118683    36263    915    2017-09-04 09:13:00    2017-09-04 09:13:00
118684    36263    627    2017-09-04 10:05:00    2017-09-04 10:05:00
118685    36264    668    2017-09-04 05:06:00    2017-09-04 05:06:00
118686    36264    639    2017-09-04 01:10:00    2017-09-04 01:10:00
118687    36264    743    2017-09-04 05:54:00    2017-09-04 05:54:00
118688    36264    807    2017-09-04 22:00:00    2017-09-04 22:00:00
118689    36264    917    2017-09-04 13:54:00    2017-09-04 13:54:00
118690    36265    868    2017-09-04 08:51:00    2017-09-04 08:51:00
118691    36265    710    2017-09-04 04:09:00    2017-09-04 04:09:00
118692    36265    626    2017-09-04 12:35:00    2017-09-04 12:35:00
118693    36265    743    2017-09-04 21:04:00    2017-09-04 21:04:00
118694    36265    521    2017-09-04 09:36:00    2017-09-04 09:36:00
118695    36266    609    2017-09-04 04:40:00    2017-09-04 04:40:00
118696    36266    776    2017-09-04 11:53:00    2017-09-04 11:53:00
118697    36266    650    2017-09-04 17:49:00    2017-09-04 17:49:00
118698    36266    926    2017-09-04 19:30:00    2017-09-04 19:30:00
118699    36266    603    2017-09-04 15:07:00    2017-09-04 15:07:00
118700    36267    887    2017-09-04 19:27:00    2017-09-04 19:27:00
118701    36267    550    2017-09-04 12:21:00    2017-09-04 12:21:00
118702    36267    615    2017-09-04 04:40:00    2017-09-04 04:40:00
118703    36267    468    2017-09-04 16:03:00    2017-09-04 16:03:00
118704    36267    650    2017-09-04 08:26:00    2017-09-04 08:26:00
118705    36268    927    2017-09-04 11:11:00    2017-09-04 11:11:00
118706    36268    824    2017-09-04 05:37:00    2017-09-04 05:37:00
118707    36268    631    2017-09-04 08:19:00    2017-09-04 08:19:00
118708    36268    776    2017-09-04 04:09:00    2017-09-04 04:09:00
118709    36268    769    2017-09-04 05:06:00    2017-09-04 05:06:00
118710    36269    920    2017-09-04 07:25:00    2017-09-04 07:25:00
118711    36269    682    2017-09-04 23:46:00    2017-09-04 23:46:00
118712    36269    886    2017-09-04 12:31:00    2017-09-04 12:31:00
118713    36269    573    2017-09-04 09:00:00    2017-09-04 09:00:00
118714    36269    647    2017-09-04 19:06:00    2017-09-04 19:06:00
118715    36270    588    2017-09-04 14:19:00    2017-09-04 14:19:00
118716    36270    504    2017-09-04 15:05:00    2017-09-04 15:05:00
118717    36270    812    2017-09-04 13:00:00    2017-09-04 13:00:00
118718    36270    529    2017-09-04 09:24:00    2017-09-04 09:24:00
118719    36270    848    2017-09-04 20:36:00    2017-09-04 20:36:00
118720    36271    715    2017-09-04 05:06:00    2017-09-04 05:06:00
118721    36271    604    2017-09-04 13:42:00    2017-09-04 13:42:00
118722    36271    695    2017-09-04 15:30:00    2017-09-04 15:30:00
118723    36271    765    2017-09-04 21:08:00    2017-09-04 21:08:00
118724    36271    596    2017-09-04 14:54:00    2017-09-04 14:54:00
118725    36272    693    2017-09-04 18:04:00    2017-09-04 18:04:00
118726    36272    634    2017-09-04 08:37:00    2017-09-04 08:37:00
118727    36272    851    2017-09-04 15:58:00    2017-09-04 15:58:00
118728    36272    889    2017-09-04 22:50:00    2017-09-04 22:50:00
118729    36272    927    2017-09-04 16:02:00    2017-09-04 16:02:00
118730    36273    518    2017-09-04 09:22:00    2017-09-04 09:22:00
118731    36273    884    2017-09-04 15:14:00    2017-09-04 15:14:00
118732    36273    617    2017-09-04 21:44:00    2017-09-04 21:44:00
118733    36273    594    2017-09-04 16:41:00    2017-09-04 16:41:00
118734    36273    645    2017-09-04 12:36:00    2017-09-04 12:36:00
118735    36274    665    2017-09-04 02:06:00    2017-09-04 02:06:00
118736    36274    647    2017-09-04 21:48:00    2017-09-04 21:48:00
118737    36274    648    2017-09-04 14:46:00    2017-09-04 14:46:00
118738    36274    535    2017-09-04 01:19:00    2017-09-04 01:19:00
118739    36274    811    2017-09-04 01:24:00    2017-09-04 01:24:00
118740    36275    621    2017-09-04 03:23:00    2017-09-04 03:23:00
118741    36275    895    2017-09-04 01:51:00    2017-09-04 01:51:00
118742    36275    502    2017-09-04 20:08:00    2017-09-04 20:08:00
118743    36275    785    2017-09-04 08:46:00    2017-09-04 08:46:00
118744    36275    698    2017-09-04 18:49:00    2017-09-04 18:49:00
118745    36276    819    2017-09-04 19:32:00    2017-09-04 19:32:00
118746    36276    932    2017-09-04 20:52:00    2017-09-04 20:52:00
118747    36276    587    2017-09-04 04:10:00    2017-09-04 04:10:00
118748    36276    736    2017-09-04 15:00:00    2017-09-04 15:00:00
118749    36276    469    2017-09-04 20:24:00    2017-09-04 20:24:00
118750    36277    766    2017-09-04 20:51:00    2017-09-04 20:51:00
118751    36277    463    2017-09-04 22:48:00    2017-09-04 22:48:00
118752    36277    756    2017-09-04 08:50:00    2017-09-04 08:50:00
118753    36277    927    2017-09-04 03:33:00    2017-09-04 03:33:00
118754    36277    787    2017-09-04 01:24:00    2017-09-04 01:24:00
118755    36278    885    2017-09-04 01:15:00    2017-09-04 01:15:00
118756    36278    604    2017-09-04 09:17:00    2017-09-04 09:17:00
118757    36278    863    2017-09-04 11:08:00    2017-09-04 11:08:00
118758    36278    657    2017-09-04 12:32:00    2017-09-04 12:32:00
118759    36278    519    2017-09-04 06:06:00    2017-09-04 06:06:00
118760    36279    872    2017-09-04 09:49:00    2017-09-04 09:49:00
118761    36279    748    2017-09-04 04:11:00    2017-09-04 04:11:00
118762    36279    795    2017-09-04 23:32:00    2017-09-04 23:32:00
118763    36279    891    2017-09-04 05:58:00    2017-09-04 05:58:00
118764    36279    636    2017-09-04 05:34:00    2017-09-04 05:34:00
118765    36280    775    2017-09-04 07:59:00    2017-09-04 07:59:00
118766    36280    815    2017-09-04 07:13:00    2017-09-04 07:13:00
118767    36280    879    2017-09-04 06:40:00    2017-09-04 06:40:00
118768    36280    726    2017-09-04 05:04:00    2017-09-04 05:04:00
118769    36280    796    2017-09-04 07:34:00    2017-09-04 07:34:00
118770    36281    831    2017-09-04 14:26:00    2017-09-04 14:26:00
118771    36281    628    2017-09-04 08:56:00    2017-09-04 08:56:00
118772    36281    816    2017-09-04 08:51:00    2017-09-04 08:51:00
118773    36281    678    2017-09-04 04:47:00    2017-09-04 04:47:00
118774    36281    899    2017-09-04 23:52:00    2017-09-04 23:52:00
118775    36282    634    2017-09-04 16:14:00    2017-09-04 16:14:00
118776    36282    908    2017-09-04 06:14:00    2017-09-04 06:14:00
118777    36282    622    2017-09-04 11:53:00    2017-09-04 11:53:00
118778    36282    713    2017-09-04 22:04:00    2017-09-04 22:04:00
118779    36282    696    2017-09-04 03:44:00    2017-09-04 03:44:00
118780    36283    727    2017-09-04 07:35:00    2017-09-04 07:35:00
118781    36283    679    2017-09-04 19:58:00    2017-09-04 19:58:00
118782    36283    731    2017-09-04 06:50:00    2017-09-04 06:50:00
118783    36283    500    2017-09-04 20:48:00    2017-09-04 20:48:00
118784    36283    742    2017-09-04 10:45:00    2017-09-04 10:45:00
118785    36284    611    2017-09-04 05:00:00    2017-09-04 05:00:00
118786    36284    927    2017-09-04 06:18:00    2017-09-04 06:18:00
118787    36284    790    2017-09-04 21:24:00    2017-09-04 21:24:00
118788    36284    957    2017-09-04 06:18:00    2017-09-04 06:18:00
118789    36284    743    2017-09-04 02:13:00    2017-09-04 02:13:00
118790    36285    853    2017-09-04 03:09:00    2017-09-04 03:09:00
118791    36285    555    2017-09-04 11:23:00    2017-09-04 11:23:00
118792    36285    882    2017-09-04 08:28:00    2017-09-04 08:28:00
118793    36285    764    2017-09-04 01:07:00    2017-09-04 01:07:00
118794    36285    526    2017-09-04 12:41:00    2017-09-04 12:41:00
118795    36286    501    2017-09-04 09:04:00    2017-09-04 09:04:00
118796    36286    476    2017-09-04 13:19:00    2017-09-04 13:19:00
118797    36286    540    2017-09-04 20:18:00    2017-09-04 20:18:00
118798    36286    545    2017-09-04 05:07:00    2017-09-04 05:07:00
118799    36286    696    2017-09-04 13:36:00    2017-09-04 13:36:00
118800    36287    526    2017-09-04 01:26:00    2017-09-04 01:26:00
118801    36287    649    2017-09-04 05:00:00    2017-09-04 05:00:00
118802    36287    490    2017-09-04 21:23:00    2017-09-04 21:23:00
118803    36287    809    2017-09-04 13:18:00    2017-09-04 13:18:00
118804    36287    555    2017-09-04 14:57:00    2017-09-04 14:57:00
118805    36288    568    2017-09-04 04:21:00    2017-09-04 04:21:00
118806    36288    760    2017-09-04 08:47:00    2017-09-04 08:47:00
118807    36288    732    2017-09-04 11:49:00    2017-09-04 11:49:00
118808    36288    859    2017-09-04 01:41:00    2017-09-04 01:41:00
118809    36288    800    2017-09-04 17:12:00    2017-09-04 17:12:00
118810    36289    598    2017-09-04 03:49:00    2017-09-04 03:49:00
118811    36289    672    2017-09-04 03:17:00    2017-09-04 03:17:00
118812    36289    636    2017-09-04 23:55:00    2017-09-04 23:55:00
118813    36289    618    2017-09-04 11:59:00    2017-09-04 11:59:00
118814    36289    756    2017-09-04 06:40:00    2017-09-04 06:40:00
118815    36290    740    2017-09-04 11:28:00    2017-09-04 11:28:00
118816    36290    628    2017-09-04 13:22:00    2017-09-04 13:22:00
118817    36290    527    2017-09-04 13:12:00    2017-09-04 13:12:00
118818    36290    615    2017-09-04 17:01:00    2017-09-04 17:01:00
118819    36290    516    2017-09-04 17:30:00    2017-09-04 17:30:00
118820    36291    524    2017-09-04 14:00:00    2017-09-04 14:00:00
118821    36291    764    2017-09-04 17:50:00    2017-09-04 17:50:00
118822    36291    623    2017-09-04 22:01:00    2017-09-04 22:01:00
118823    36291    808    2017-09-04 22:32:00    2017-09-04 22:32:00
118824    36291    835    2017-09-04 08:05:00    2017-09-04 08:05:00
118825    36292    957    2017-09-04 23:20:00    2017-09-04 23:20:00
118826    36292    538    2017-09-04 17:01:00    2017-09-04 17:01:00
118827    36292    706    2017-09-04 15:14:00    2017-09-04 15:14:00
118828    36292    607    2017-09-04 02:57:00    2017-09-04 02:57:00
118829    36292    556    2017-09-04 16:28:00    2017-09-04 16:28:00
118831    36293    703    2017-09-04 02:02:00    2017-09-04 02:02:00
118832    36293    613    2017-09-04 14:56:00    2017-09-04 14:56:00
118833    36293    830    2017-09-04 16:54:00    2017-09-04 16:54:00
118834    36293    801    2017-09-04 14:47:00    2017-09-04 14:47:00
118835    36294    819    2017-09-04 15:53:00    2017-09-04 15:53:00
118836    36294    641    2017-09-04 04:14:00    2017-09-04 04:14:00
118837    36294    754    2017-09-04 21:38:00    2017-09-04 21:38:00
118838    36294    784    2017-09-04 02:24:00    2017-09-04 02:24:00
118839    36294    657    2017-09-04 06:46:00    2017-09-04 06:46:00
118840    36295    913    2017-09-04 11:48:00    2017-09-04 11:48:00
118841    36295    604    2017-09-04 01:00:00    2017-09-04 01:00:00
118842    36295    727    2017-09-04 13:07:00    2017-09-04 13:07:00
118843    36295    755    2017-09-04 21:59:00    2017-09-04 21:59:00
118844    36295    912    2017-09-04 22:04:00    2017-09-04 22:04:00
118830    \N    887    2017-09-04 19:45:00    2017-09-04 19:45:00
118845    36296    550    2017-09-05 06:09:00    2017-09-05 06:09:00
118846    36296    490    2017-09-05 21:41:00    2017-09-05 21:41:00
118847    36296    516    2017-09-05 20:49:00    2017-09-05 20:49:00
118848    36296    926    2017-09-05 19:35:00    2017-09-05 19:35:00
118849    36296    905    2017-09-05 09:27:00    2017-09-05 09:27:00
118850    36297    567    2017-09-05 11:49:00    2017-09-05 11:49:00
118851    36297    648    2017-09-05 10:08:00    2017-09-05 10:08:00
118852    36297    591    2017-09-05 08:48:00    2017-09-05 08:48:00
118853    36297    866    2017-09-05 05:36:00    2017-09-05 05:36:00
118854    36297    789    2017-09-05 15:46:00    2017-09-05 15:46:00
118855    36298    716    2017-09-05 09:00:00    2017-09-05 09:00:00
118856    36298    817    2017-09-05 17:37:00    2017-09-05 17:37:00
118857    36298    688    2017-09-05 07:16:00    2017-09-05 07:16:00
118858    36298    504    2017-09-05 18:31:00    2017-09-05 18:31:00
118859    36298    738    2017-09-05 15:56:00    2017-09-05 15:56:00
118860    36299    910    2017-09-05 10:49:00    2017-09-05 10:49:00
118861    36299    549    2017-09-05 03:22:00    2017-09-05 03:22:00
118862    36299    833    2017-09-05 12:39:00    2017-09-05 12:39:00
118863    36299    719    2017-09-05 13:09:00    2017-09-05 13:09:00
118864    36299    625    2017-09-05 16:52:00    2017-09-05 16:52:00
118865    36300    847    2017-09-05 04:39:00    2017-09-05 04:39:00
118866    36300    601    2017-09-05 22:10:00    2017-09-05 22:10:00
118867    36300    735    2017-09-05 01:07:00    2017-09-05 01:07:00
118868    36300    648    2017-09-05 12:29:00    2017-09-05 12:29:00
118869    36300    870    2017-09-05 05:56:00    2017-09-05 05:56:00
118870    36301    620    2017-09-05 07:10:00    2017-09-05 07:10:00
118871    36301    470    2017-09-05 15:18:00    2017-09-05 15:18:00
118872    36301    912    2017-09-05 05:37:00    2017-09-05 05:37:00
118873    36301    711    2017-09-05 05:41:00    2017-09-05 05:41:00
118874    36301    466    2017-09-05 23:51:00    2017-09-05 23:51:00
118875    36302    639    2017-09-05 08:28:00    2017-09-05 08:28:00
118876    36302    671    2017-09-05 04:26:00    2017-09-05 04:26:00
118877    36302    797    2017-09-05 13:00:00    2017-09-05 13:00:00
118878    36302    742    2017-09-05 08:11:00    2017-09-05 08:11:00
118879    36302    960    2017-09-05 04:37:00    2017-09-05 04:37:00
118880    36303    796    2017-09-05 12:00:00    2017-09-05 12:00:00
118881    36303    769    2017-09-05 20:15:00    2017-09-05 20:15:00
118882    36303    877    2017-09-05 07:39:00    2017-09-05 07:39:00
118883    36303    883    2017-09-05 19:02:00    2017-09-05 19:02:00
118884    36303    821    2017-09-05 17:28:00    2017-09-05 17:28:00
118885    36304    674    2017-09-05 16:09:00    2017-09-05 16:09:00
118886    36304    843    2017-09-05 09:12:00    2017-09-05 09:12:00
118887    36304    665    2017-09-05 14:31:00    2017-09-05 14:31:00
118888    36304    879    2017-09-05 06:26:00    2017-09-05 06:26:00
118889    36304    507    2017-09-05 11:46:00    2017-09-05 11:46:00
118890    36305    711    2017-09-05 11:25:00    2017-09-05 11:25:00
118891    36305    712    2017-09-05 17:07:00    2017-09-05 17:07:00
118892    36305    495    2017-09-05 15:33:00    2017-09-05 15:33:00
118893    36305    463    2017-09-05 11:44:00    2017-09-05 11:44:00
118894    36305    934    2017-09-05 21:07:00    2017-09-05 21:07:00
118895    36306    669    2017-09-05 18:29:00    2017-09-05 18:29:00
118896    36306    743    2017-09-05 23:47:00    2017-09-05 23:47:00
118897    36306    938    2017-09-05 12:31:00    2017-09-05 12:31:00
118898    36306    480    2017-09-05 20:30:00    2017-09-05 20:30:00
118899    36306    689    2017-09-05 23:29:00    2017-09-05 23:29:00
118900    36307    855    2017-09-05 04:12:00    2017-09-05 04:12:00
118901    36307    715    2017-09-05 14:51:00    2017-09-05 14:51:00
118902    36307    802    2017-09-05 14:53:00    2017-09-05 14:53:00
118903    36307    883    2017-09-05 10:30:00    2017-09-05 10:30:00
118904    36307    484    2017-09-05 17:39:00    2017-09-05 17:39:00
118905    36308    735    2017-09-05 18:03:00    2017-09-05 18:03:00
118906    36308    716    2017-09-05 02:27:00    2017-09-05 02:27:00
118907    36308    581    2017-09-05 12:58:00    2017-09-05 12:58:00
118908    36308    945    2017-09-05 12:54:00    2017-09-05 12:54:00
118909    36308    884    2017-09-05 18:20:00    2017-09-05 18:20:00
118910    36309    523    2017-09-05 21:51:00    2017-09-05 21:51:00
118911    36309    738    2017-09-05 18:31:00    2017-09-05 18:31:00
118912    36309    796    2017-09-05 20:11:00    2017-09-05 20:11:00
118913    36309    711    2017-09-05 10:01:00    2017-09-05 10:01:00
118914    36309    561    2017-09-05 02:37:00    2017-09-05 02:37:00
118915    36310    762    2017-09-05 11:35:00    2017-09-05 11:35:00
118916    36310    551    2017-09-05 19:47:00    2017-09-05 19:47:00
118917    36310    907    2017-09-05 20:05:00    2017-09-05 20:05:00
118918    36310    680    2017-09-05 19:46:00    2017-09-05 19:46:00
118919    36310    802    2017-09-05 05:40:00    2017-09-05 05:40:00
118920    36311    841    2017-09-05 07:13:00    2017-09-05 07:13:00
118921    36311    706    2017-09-05 08:00:00    2017-09-05 08:00:00
118922    36311    759    2017-09-05 01:58:00    2017-09-05 01:58:00
118923    36311    583    2017-09-05 15:32:00    2017-09-05 15:32:00
118924    36311    830    2017-09-05 07:46:00    2017-09-05 07:46:00
118925    36312    511    2017-09-05 15:36:00    2017-09-05 15:36:00
118926    36312    889    2017-09-05 03:22:00    2017-09-05 03:22:00
118927    36312    753    2017-09-05 13:57:00    2017-09-05 13:57:00
118928    36312    611    2017-09-05 16:50:00    2017-09-05 16:50:00
118929    36312    508    2017-09-05 15:08:00    2017-09-05 15:08:00
118930    36313    499    2017-09-05 01:51:00    2017-09-05 01:51:00
118931    36313    885    2017-09-05 01:56:00    2017-09-05 01:56:00
118932    36313    920    2017-09-05 02:17:00    2017-09-05 02:17:00
118933    36313    955    2017-09-05 17:38:00    2017-09-05 17:38:00
118934    36313    522    2017-09-05 16:32:00    2017-09-05 16:32:00
118935    36314    841    2017-09-05 04:04:00    2017-09-05 04:04:00
118936    36314    529    2017-09-05 20:39:00    2017-09-05 20:39:00
118937    36314    557    2017-09-05 23:18:00    2017-09-05 23:18:00
118938    36314    803    2017-09-05 04:36:00    2017-09-05 04:36:00
118939    36314    596    2017-09-05 19:21:00    2017-09-05 19:21:00
118940    36315    881    2017-09-05 01:56:00    2017-09-05 01:56:00
118941    36315    539    2017-09-05 15:49:00    2017-09-05 15:49:00
118942    36315    597    2017-09-05 08:35:00    2017-09-05 08:35:00
118943    36315    698    2017-09-05 02:12:00    2017-09-05 02:12:00
118944    36315    621    2017-09-05 15:31:00    2017-09-05 15:31:00
118945    36316    637    2017-09-05 23:31:00    2017-09-05 23:31:00
118946    36316    504    2017-09-05 22:31:00    2017-09-05 22:31:00
118947    36316    620    2017-09-05 20:26:00    2017-09-05 20:26:00
118948    36316    737    2017-09-05 03:36:00    2017-09-05 03:36:00
118949    36316    698    2017-09-05 15:06:00    2017-09-05 15:06:00
118950    36317    779    2017-09-05 07:41:00    2017-09-05 07:41:00
118951    36317    943    2017-09-05 14:08:00    2017-09-05 14:08:00
118952    36317    699    2017-09-05 19:12:00    2017-09-05 19:12:00
118953    36317    555    2017-09-05 09:32:00    2017-09-05 09:32:00
118954    36317    472    2017-09-05 23:35:00    2017-09-05 23:35:00
118955    36318    523    2017-09-05 14:16:00    2017-09-05 14:16:00
118956    36318    637    2017-09-05 12:49:00    2017-09-05 12:49:00
118957    36318    960    2017-09-05 11:03:00    2017-09-05 11:03:00
118958    36318    794    2017-09-05 15:00:00    2017-09-05 15:00:00
118959    36318    919    2017-09-05 20:48:00    2017-09-05 20:48:00
118960    36319    577    2017-09-05 11:25:00    2017-09-05 11:25:00
118961    36319    526    2017-09-05 02:49:00    2017-09-05 02:49:00
118962    36319    793    2017-09-05 16:20:00    2017-09-05 16:20:00
118963    36319    835    2017-09-05 22:23:00    2017-09-05 22:23:00
118964    36319    647    2017-09-05 15:55:00    2017-09-05 15:55:00
118965    36320    504    2017-09-05 03:06:00    2017-09-05 03:06:00
118966    36320    466    2017-09-05 19:21:00    2017-09-05 19:21:00
118967    36320    568    2017-09-05 18:15:00    2017-09-05 18:15:00
118968    36320    792    2017-09-05 21:26:00    2017-09-05 21:26:00
118969    36320    805    2017-09-05 18:21:00    2017-09-05 18:21:00
118970    36321    532    2017-09-05 22:29:00    2017-09-05 22:29:00
118971    36321    835    2017-09-05 12:14:00    2017-09-05 12:14:00
118972    36321    608    2017-09-05 13:28:00    2017-09-05 13:28:00
118973    36321    759    2017-09-05 13:56:00    2017-09-05 13:56:00
118974    36321    475    2017-09-05 18:18:00    2017-09-05 18:18:00
118975    36322    783    2017-09-05 05:14:00    2017-09-05 05:14:00
118976    36322    648    2017-09-05 07:56:00    2017-09-05 07:56:00
118977    36322    904    2017-09-05 14:09:00    2017-09-05 14:09:00
118978    36322    748    2017-09-05 01:30:00    2017-09-05 01:30:00
118979    36322    863    2017-09-05 12:43:00    2017-09-05 12:43:00
118980    36323    750    2017-09-05 02:41:00    2017-09-05 02:41:00
118981    36323    475    2017-09-05 20:12:00    2017-09-05 20:12:00
118982    36323    466    2017-09-05 10:02:00    2017-09-05 10:02:00
118983    36323    638    2017-09-05 05:05:00    2017-09-05 05:05:00
118984    36323    712    2017-09-05 07:11:00    2017-09-05 07:11:00
118985    36324    493    2017-09-05 20:46:00    2017-09-05 20:46:00
118986    36324    822    2017-09-05 01:45:00    2017-09-05 01:45:00
118987    36324    731    2017-09-05 15:24:00    2017-09-05 15:24:00
118988    36324    525    2017-09-05 23:02:00    2017-09-05 23:02:00
118989    36324    797    2017-09-05 20:43:00    2017-09-05 20:43:00
118990    36325    636    2017-09-05 03:59:00    2017-09-05 03:59:00
118991    36325    869    2017-09-05 06:54:00    2017-09-05 06:54:00
118992    36325    675    2017-09-05 04:43:00    2017-09-05 04:43:00
118993    36325    611    2017-09-05 10:33:00    2017-09-05 10:33:00
118994    36325    568    2017-09-05 18:58:00    2017-09-05 18:58:00
118995    36326    757    2017-09-05 14:00:00    2017-09-05 14:00:00
118996    36326    628    2017-09-05 12:09:00    2017-09-05 12:09:00
118997    36326    783    2017-09-05 21:25:00    2017-09-05 21:25:00
118998    36326    710    2017-09-05 21:19:00    2017-09-05 21:19:00
118999    36326    544    2017-09-05 23:52:00    2017-09-05 23:52:00
119000    36327    688    2017-09-05 16:23:00    2017-09-05 16:23:00
119001    36327    489    2017-09-05 22:57:00    2017-09-05 22:57:00
119002    36327    611    2017-09-05 10:50:00    2017-09-05 10:50:00
119003    36327    640    2017-09-05 03:13:00    2017-09-05 03:13:00
119004    36327    927    2017-09-05 10:00:00    2017-09-05 10:00:00
119005    36328    816    2017-09-05 18:09:00    2017-09-05 18:09:00
119006    36328    601    2017-09-05 08:57:00    2017-09-05 08:57:00
119007    36328    467    2017-09-05 03:24:00    2017-09-05 03:24:00
119008    36328    528    2017-09-05 08:02:00    2017-09-05 08:02:00
119009    36328    773    2017-09-05 17:59:00    2017-09-05 17:59:00
119010    36329    931    2017-09-05 12:40:00    2017-09-05 12:40:00
119011    36329    626    2017-09-05 01:49:00    2017-09-05 01:49:00
119012    36329    568    2017-09-05 08:08:00    2017-09-05 08:08:00
119013    36329    919    2017-09-05 16:09:00    2017-09-05 16:09:00
119014    36329    851    2017-09-05 04:47:00    2017-09-05 04:47:00
119015    36330    840    2017-09-05 19:59:00    2017-09-05 19:59:00
119016    36330    647    2017-09-05 20:04:00    2017-09-05 20:04:00
119017    36330    938    2017-09-05 12:54:00    2017-09-05 12:54:00
119018    36330    480    2017-09-05 08:40:00    2017-09-05 08:40:00
119019    36330    856    2017-09-05 10:32:00    2017-09-05 10:32:00
119020    36331    470    2017-09-05 12:40:00    2017-09-05 12:40:00
119021    36331    765    2017-09-05 12:35:00    2017-09-05 12:35:00
119022    36331    927    2017-09-05 03:54:00    2017-09-05 03:54:00
119023    36331    806    2017-09-05 13:18:00    2017-09-05 13:18:00
119024    36331    637    2017-09-05 12:00:00    2017-09-05 12:00:00
119025    36332    739    2017-09-05 06:20:00    2017-09-05 06:20:00
119026    36332    704    2017-09-05 22:25:00    2017-09-05 22:25:00
119027    36332    527    2017-09-05 03:26:00    2017-09-05 03:26:00
119028    36332    738    2017-09-05 18:34:00    2017-09-05 18:34:00
119029    36332    495    2017-09-05 08:50:00    2017-09-05 08:50:00
119030    36333    957    2017-09-05 21:18:00    2017-09-05 21:18:00
119031    36333    902    2017-09-05 17:18:00    2017-09-05 17:18:00
119032    36333    759    2017-09-05 17:34:00    2017-09-05 17:34:00
119033    36333    483    2017-09-05 15:02:00    2017-09-05 15:02:00
119034    36333    602    2017-09-05 08:14:00    2017-09-05 08:14:00
119035    36334    885    2017-09-05 12:29:00    2017-09-05 12:29:00
119036    36334    506    2017-09-05 23:14:00    2017-09-05 23:14:00
119037    36334    548    2017-09-05 20:29:00    2017-09-05 20:29:00
119038    36334    561    2017-09-05 14:03:00    2017-09-05 14:03:00
119039    36334    756    2017-09-05 06:03:00    2017-09-05 06:03:00
119040    36335    469    2017-09-05 20:44:00    2017-09-05 20:44:00
119041    36335    921    2017-09-05 23:38:00    2017-09-05 23:38:00
119042    36335    886    2017-09-05 05:59:00    2017-09-05 05:59:00
119043    36335    706    2017-09-05 11:59:00    2017-09-05 11:59:00
119044    36335    644    2017-09-05 11:54:00    2017-09-05 11:54:00
119045    36336    696    2017-09-05 11:00:00    2017-09-05 11:00:00
119046    36336    603    2017-09-05 11:05:00    2017-09-05 11:05:00
119047    36336    789    2017-09-05 22:08:00    2017-09-05 22:08:00
119048    36336    576    2017-09-05 02:00:00    2017-09-05 02:00:00
119049    36336    577    2017-09-05 14:48:00    2017-09-05 14:48:00
119050    36337    751    2017-09-05 21:24:00    2017-09-05 21:24:00
119051    36337    567    2017-09-05 22:23:00    2017-09-05 22:23:00
119052    36337    829    2017-09-05 20:00:00    2017-09-05 20:00:00
119053    36337    853    2017-09-05 14:05:00    2017-09-05 14:05:00
119054    36337    567    2017-09-05 17:33:00    2017-09-05 17:33:00
119055    36338    946    2017-09-05 07:01:00    2017-09-05 07:01:00
119056    36338    776    2017-09-05 08:05:00    2017-09-05 08:05:00
119057    36338    679    2017-09-05 17:58:00    2017-09-05 17:58:00
119058    36338    818    2017-09-05 10:21:00    2017-09-05 10:21:00
119059    36338    467    2017-09-05 02:10:00    2017-09-05 02:10:00
119060    36339    700    2017-09-05 17:53:00    2017-09-05 17:53:00
119061    36339    626    2017-09-05 17:40:00    2017-09-05 17:40:00
119062    36339    774    2017-09-05 09:12:00    2017-09-05 09:12:00
119063    36339    843    2017-09-05 09:51:00    2017-09-05 09:51:00
119064    36339    627    2017-09-05 19:16:00    2017-09-05 19:16:00
119065    36340    628    2017-09-05 15:17:00    2017-09-05 15:17:00
119066    36340    952    2017-09-05 03:29:00    2017-09-05 03:29:00
119067    36340    846    2017-09-05 05:34:00    2017-09-05 05:34:00
119068    36340    828    2017-09-05 22:28:00    2017-09-05 22:28:00
119069    36340    723    2017-09-05 12:08:00    2017-09-05 12:08:00
119070    36341    515    2017-09-05 21:56:00    2017-09-05 21:56:00
119071    36341    755    2017-09-05 19:27:00    2017-09-05 19:27:00
119072    36341    843    2017-09-05 04:44:00    2017-09-05 04:44:00
119073    36341    617    2017-09-05 06:39:00    2017-09-05 06:39:00
119074    36341    890    2017-09-05 01:21:00    2017-09-05 01:21:00
119075    36342    856    2017-09-05 15:01:00    2017-09-05 15:01:00
119076    36342    787    2017-09-05 20:49:00    2017-09-05 20:49:00
119077    36342    558    2017-09-05 10:46:00    2017-09-05 10:46:00
119078    36342    677    2017-09-05 13:59:00    2017-09-05 13:59:00
119079    36342    574    2017-09-05 23:23:00    2017-09-05 23:23:00
119080    36343    701    2017-09-05 01:21:00    2017-09-05 01:21:00
119081    36343    930    2017-09-05 07:41:00    2017-09-05 07:41:00
119082    36343    657    2017-09-05 04:08:00    2017-09-05 04:08:00
119083    36343    634    2017-09-05 20:35:00    2017-09-05 20:35:00
119084    36343    707    2017-09-05 05:18:00    2017-09-05 05:18:00
119085    36344    881    2017-09-05 06:43:00    2017-09-05 06:43:00
119086    36344    780    2017-09-05 02:39:00    2017-09-05 02:39:00
119087    36344    469    2017-09-05 01:14:00    2017-09-05 01:14:00
119088    36344    857    2017-09-05 19:45:00    2017-09-05 19:45:00
119089    36344    899    2017-09-05 19:21:00    2017-09-05 19:21:00
119090    36345    567    2017-09-05 05:53:00    2017-09-05 05:53:00
119091    36345    900    2017-09-05 02:58:00    2017-09-05 02:58:00
119092    36345    542    2017-09-05 03:44:00    2017-09-05 03:44:00
119093    36345    644    2017-09-05 13:22:00    2017-09-05 13:22:00
119094    36345    898    2017-09-05 02:38:00    2017-09-05 02:38:00
119095    36346    849    2017-09-05 10:48:00    2017-09-05 10:48:00
119096    36346    579    2017-09-05 21:51:00    2017-09-05 21:51:00
119097    36346    896    2017-09-05 08:54:00    2017-09-05 08:54:00
119098    36346    714    2017-09-05 07:04:00    2017-09-05 07:04:00
119099    36346    767    2017-09-05 03:01:00    2017-09-05 03:01:00
119100    36347    600    2017-09-05 04:05:00    2017-09-05 04:05:00
119101    36347    523    2017-09-05 16:39:00    2017-09-05 16:39:00
119102    36347    751    2017-09-05 17:18:00    2017-09-05 17:18:00
119103    36347    517    2017-09-05 03:17:00    2017-09-05 03:17:00
119104    36347    483    2017-09-05 17:39:00    2017-09-05 17:39:00
119105    36348    616    2017-09-05 19:00:00    2017-09-05 19:00:00
119106    36348    480    2017-09-05 04:40:00    2017-09-05 04:40:00
119107    36348    921    2017-09-05 06:56:00    2017-09-05 06:56:00
119108    36348    726    2017-09-05 15:32:00    2017-09-05 15:32:00
119109    36348    552    2017-09-05 09:01:00    2017-09-05 09:01:00
119110    36349    725    2017-09-05 12:43:00    2017-09-05 12:43:00
119111    36349    957    2017-09-05 18:55:00    2017-09-05 18:55:00
119112    36349    796    2017-09-05 01:50:00    2017-09-05 01:50:00
119113    36349    680    2017-09-05 11:56:00    2017-09-05 11:56:00
119114    36349    477    2017-09-05 05:23:00    2017-09-05 05:23:00
119115    36350    821    2017-09-05 21:47:00    2017-09-05 21:47:00
119116    36350    905    2017-09-05 10:14:00    2017-09-05 10:14:00
119117    36350    925    2017-09-05 16:06:00    2017-09-05 16:06:00
119118    36350    505    2017-09-05 18:46:00    2017-09-05 18:46:00
119119    36350    925    2017-09-05 14:33:00    2017-09-05 14:33:00
119120    36351    597    2017-09-05 11:38:00    2017-09-05 11:38:00
119121    36351    498    2017-09-05 18:44:00    2017-09-05 18:44:00
119122    36351    913    2017-09-05 06:45:00    2017-09-05 06:45:00
119123    36351    907    2017-09-05 08:27:00    2017-09-05 08:27:00
119124    36351    736    2017-09-05 06:22:00    2017-09-05 06:22:00
119125    36352    639    2017-09-05 17:11:00    2017-09-05 17:11:00
119126    36352    586    2017-09-05 08:45:00    2017-09-05 08:45:00
119127    36352    644    2017-09-05 17:50:00    2017-09-05 17:50:00
119128    36352    719    2017-09-05 15:36:00    2017-09-05 15:36:00
119129    36352    659    2017-09-05 06:20:00    2017-09-05 06:20:00
119130    36353    889    2017-09-05 21:35:00    2017-09-05 21:35:00
119131    36353    934    2017-09-05 22:33:00    2017-09-05 22:33:00
119132    36353    560    2017-09-05 14:47:00    2017-09-05 14:47:00
119133    36353    513    2017-09-05 13:00:00    2017-09-05 13:00:00
119134    36353    700    2017-09-05 13:45:00    2017-09-05 13:45:00
119135    36354    515    2017-09-05 15:09:00    2017-09-05 15:09:00
119136    36354    690    2017-09-05 04:14:00    2017-09-05 04:14:00
119137    36354    751    2017-09-05 10:52:00    2017-09-05 10:52:00
119138    36354    598    2017-09-05 01:14:00    2017-09-05 01:14:00
119139    36354    543    2017-09-05 21:16:00    2017-09-05 21:16:00
119140    36355    737    2017-09-05 08:27:00    2017-09-05 08:27:00
119141    36355    597    2017-09-05 05:05:00    2017-09-05 05:05:00
119142    36355    547    2017-09-05 14:42:00    2017-09-05 14:42:00
119143    36355    588    2017-09-05 11:12:00    2017-09-05 11:12:00
119144    36355    883    2017-09-05 10:52:00    2017-09-05 10:52:00
119145    36356    847    2017-09-05 20:27:00    2017-09-05 20:27:00
119146    36356    767    2017-09-05 20:14:00    2017-09-05 20:14:00
119147    36356    828    2017-09-05 13:48:00    2017-09-05 13:48:00
119148    36356    886    2017-09-05 22:07:00    2017-09-05 22:07:00
119149    36356    750    2017-09-05 12:24:00    2017-09-05 12:24:00
119150    36357    576    2017-09-05 19:42:00    2017-09-05 19:42:00
119151    36357    473    2017-09-05 14:57:00    2017-09-05 14:57:00
119152    36357    838    2017-09-05 10:10:00    2017-09-05 10:10:00
119153    36357    684    2017-09-05 01:19:00    2017-09-05 01:19:00
119154    36357    572    2017-09-05 08:17:00    2017-09-05 08:17:00
119155    36358    944    2017-09-05 02:07:00    2017-09-05 02:07:00
119156    36358    903    2017-09-05 01:29:00    2017-09-05 01:29:00
119157    36358    623    2017-09-05 11:56:00    2017-09-05 11:56:00
119158    36358    557    2017-09-05 18:40:00    2017-09-05 18:40:00
119159    36358    949    2017-09-05 16:34:00    2017-09-05 16:34:00
119160    36359    857    2017-09-05 10:42:00    2017-09-05 10:42:00
119161    36359    480    2017-09-05 07:38:00    2017-09-05 07:38:00
119162    36359    881    2017-09-05 12:50:00    2017-09-05 12:50:00
119163    36359    830    2017-09-05 01:51:00    2017-09-05 01:51:00
119164    36359    868    2017-09-05 15:59:00    2017-09-05 15:59:00
119165    36360    741    2017-09-05 14:10:00    2017-09-05 14:10:00
119166    36360    816    2017-09-05 17:31:00    2017-09-05 17:31:00
119167    36360    709    2017-09-05 02:09:00    2017-09-05 02:09:00
119168    36360    653    2017-09-05 08:30:00    2017-09-05 08:30:00
119169    36360    717    2017-09-05 22:43:00    2017-09-05 22:43:00
119170    36361    713    2017-09-05 18:16:00    2017-09-05 18:16:00
119171    36361    640    2017-09-05 14:39:00    2017-09-05 14:39:00
119172    36361    703    2017-09-05 07:59:00    2017-09-05 07:59:00
119173    36361    932    2017-09-05 03:12:00    2017-09-05 03:12:00
119174    36361    607    2017-09-05 18:36:00    2017-09-05 18:36:00
119175    36362    521    2017-09-05 22:39:00    2017-09-05 22:39:00
119176    36362    790    2017-09-05 07:42:00    2017-09-05 07:42:00
119177    36362    521    2017-09-05 22:16:00    2017-09-05 22:16:00
119178    36362    610    2017-09-05 13:00:00    2017-09-05 13:00:00
119179    36362    713    2017-09-05 16:13:00    2017-09-05 16:13:00
119180    36363    533    2017-09-05 21:40:00    2017-09-05 21:40:00
119181    36363    661    2017-09-05 16:51:00    2017-09-05 16:51:00
119182    36363    524    2017-09-05 15:32:00    2017-09-05 15:32:00
119183    36363    572    2017-09-05 17:24:00    2017-09-05 17:24:00
119184    36363    497    2017-09-05 23:48:00    2017-09-05 23:48:00
119185    36364    781    2017-09-05 23:48:00    2017-09-05 23:48:00
119186    36364    925    2017-09-05 21:11:00    2017-09-05 21:11:00
119187    36364    882    2017-09-05 06:00:00    2017-09-05 06:00:00
119188    36364    906    2017-09-05 19:43:00    2017-09-05 19:43:00
119189    36364    485    2017-09-05 02:34:00    2017-09-05 02:34:00
119190    36365    540    2017-09-05 19:06:00    2017-09-05 19:06:00
119191    36365    575    2017-09-05 04:54:00    2017-09-05 04:54:00
119192    36365    565    2017-09-05 19:00:00    2017-09-05 19:00:00
119193    36365    556    2017-09-05 12:33:00    2017-09-05 12:33:00
119194    36365    585    2017-09-05 22:01:00    2017-09-05 22:01:00
119195    36366    592    2017-09-05 17:17:00    2017-09-05 17:17:00
119196    36366    882    2017-09-05 19:47:00    2017-09-05 19:47:00
119197    36366    918    2017-09-05 14:53:00    2017-09-05 14:53:00
119198    36366    844    2017-09-05 12:14:00    2017-09-05 12:14:00
119199    36366    676    2017-09-05 19:40:00    2017-09-05 19:40:00
119200    36367    808    2017-09-05 19:50:00    2017-09-05 19:50:00
119201    36367    584    2017-09-05 15:15:00    2017-09-05 15:15:00
119202    36367    881    2017-09-05 16:10:00    2017-09-05 16:10:00
119203    36367    724    2017-09-05 09:43:00    2017-09-05 09:43:00
119204    36367    477    2017-09-05 18:06:00    2017-09-05 18:06:00
119205    36368    624    2017-09-05 19:50:00    2017-09-05 19:50:00
119206    36368    803    2017-09-05 18:45:00    2017-09-05 18:45:00
119207    36368    824    2017-09-05 10:42:00    2017-09-05 10:42:00
119208    36368    896    2017-09-05 12:48:00    2017-09-05 12:48:00
119209    36368    697    2017-09-05 03:25:00    2017-09-05 03:25:00
119210    36369    909    2017-09-05 18:30:00    2017-09-05 18:30:00
119211    36369    529    2017-09-05 03:56:00    2017-09-05 03:56:00
119212    36369    892    2017-09-05 03:10:00    2017-09-05 03:10:00
119213    36369    566    2017-09-05 11:14:00    2017-09-05 11:14:00
119214    36369    657    2017-09-05 18:13:00    2017-09-05 18:13:00
119215    36370    500    2017-09-05 13:44:00    2017-09-05 13:44:00
119216    36370    777    2017-09-05 22:11:00    2017-09-05 22:11:00
119217    36370    541    2017-09-05 03:38:00    2017-09-05 03:38:00
119218    36370    471    2017-09-05 13:48:00    2017-09-05 13:48:00
119219    36370    810    2017-09-05 11:08:00    2017-09-05 11:08:00
119220    36371    580    2017-09-05 22:04:00    2017-09-05 22:04:00
119221    36371    909    2017-09-05 20:19:00    2017-09-05 20:19:00
119222    36371    850    2017-09-05 07:57:00    2017-09-05 07:57:00
119223    36371    472    2017-09-05 05:51:00    2017-09-05 05:51:00
119224    36371    770    2017-09-05 06:20:00    2017-09-05 06:20:00
119225    36372    492    2017-09-05 12:31:00    2017-09-05 12:31:00
119226    36372    656    2017-09-05 18:17:00    2017-09-05 18:17:00
119227    36372    524    2017-09-05 16:53:00    2017-09-05 16:53:00
119228    36372    853    2017-09-05 18:07:00    2017-09-05 18:07:00
119229    36372    566    2017-09-05 18:01:00    2017-09-05 18:01:00
119230    36373    866    2017-09-05 13:54:00    2017-09-05 13:54:00
119231    36373    486    2017-09-05 11:45:00    2017-09-05 11:45:00
119232    36373    896    2017-09-05 04:29:00    2017-09-05 04:29:00
119233    36373    626    2017-09-05 12:39:00    2017-09-05 12:39:00
119234    36373    780    2017-09-05 03:50:00    2017-09-05 03:50:00
119235    36374    580    2017-09-06 15:16:00    2017-09-06 15:16:00
119236    36374    766    2017-09-06 03:48:00    2017-09-06 03:48:00
119237    36374    687    2017-09-06 11:43:00    2017-09-06 11:43:00
119238    36374    842    2017-09-06 14:05:00    2017-09-06 14:05:00
119239    36374    813    2017-09-06 22:50:00    2017-09-06 22:50:00
119240    36375    650    2017-09-06 23:02:00    2017-09-06 23:02:00
119241    36375    492    2017-09-06 05:31:00    2017-09-06 05:31:00
119242    36375    634    2017-09-06 15:53:00    2017-09-06 15:53:00
119243    36375    651    2017-09-06 04:21:00    2017-09-06 04:21:00
119244    36375    582    2017-09-06 05:57:00    2017-09-06 05:57:00
119245    36376    689    2017-09-06 23:36:00    2017-09-06 23:36:00
119246    36376    853    2017-09-06 06:59:00    2017-09-06 06:59:00
119247    36376    733    2017-09-06 15:25:00    2017-09-06 15:25:00
119248    36376    522    2017-09-06 03:31:00    2017-09-06 03:31:00
119249    36376    516    2017-09-06 09:14:00    2017-09-06 09:14:00
119250    36377    884    2017-09-06 10:39:00    2017-09-06 10:39:00
119251    36377    779    2017-09-06 02:41:00    2017-09-06 02:41:00
119252    36377    598    2017-09-06 13:52:00    2017-09-06 13:52:00
119253    36377    733    2017-09-06 06:06:00    2017-09-06 06:06:00
119254    36377    571    2017-09-06 07:16:00    2017-09-06 07:16:00
119255    36378    803    2017-09-06 18:09:00    2017-09-06 18:09:00
119256    36378    496    2017-09-06 02:09:00    2017-09-06 02:09:00
119257    36378    653    2017-09-06 20:57:00    2017-09-06 20:57:00
119258    36378    586    2017-09-06 13:12:00    2017-09-06 13:12:00
119259    36378    472    2017-09-06 06:12:00    2017-09-06 06:12:00
119260    36379    798    2017-09-06 21:46:00    2017-09-06 21:46:00
119261    36379    791    2017-09-06 17:46:00    2017-09-06 17:46:00
119262    36379    810    2017-09-06 10:03:00    2017-09-06 10:03:00
119263    36379    656    2017-09-06 11:47:00    2017-09-06 11:47:00
119264    36379    512    2017-09-06 18:04:00    2017-09-06 18:04:00
119265    36380    864    2017-09-06 11:18:00    2017-09-06 11:18:00
119266    36380    701    2017-09-06 20:20:00    2017-09-06 20:20:00
119267    36380    545    2017-09-06 12:23:00    2017-09-06 12:23:00
119268    36380    584    2017-09-06 22:43:00    2017-09-06 22:43:00
119269    36380    686    2017-09-06 10:06:00    2017-09-06 10:06:00
119270    36381    759    2017-09-06 04:44:00    2017-09-06 04:44:00
119271    36381    690    2017-09-06 12:39:00    2017-09-06 12:39:00
119272    36381    589    2017-09-06 15:19:00    2017-09-06 15:19:00
119273    36381    495    2017-09-06 22:29:00    2017-09-06 22:29:00
119274    36381    786    2017-09-06 22:08:00    2017-09-06 22:08:00
119275    36382    686    2017-09-06 16:28:00    2017-09-06 16:28:00
119276    36382    603    2017-09-06 09:33:00    2017-09-06 09:33:00
119277    36382    514    2017-09-06 10:16:00    2017-09-06 10:16:00
119278    36382    491    2017-09-06 02:05:00    2017-09-06 02:05:00
119279    36382    788    2017-09-06 18:50:00    2017-09-06 18:50:00
119280    36383    578    2017-09-06 13:16:00    2017-09-06 13:16:00
119281    36383    845    2017-09-06 19:10:00    2017-09-06 19:10:00
119282    36383    831    2017-09-06 20:43:00    2017-09-06 20:43:00
119283    36383    693    2017-09-06 04:16:00    2017-09-06 04:16:00
119284    36383    879    2017-09-06 08:42:00    2017-09-06 08:42:00
119285    36384    912    2017-09-06 23:38:00    2017-09-06 23:38:00
119286    36384    776    2017-09-06 10:28:00    2017-09-06 10:28:00
119287    36384    468    2017-09-06 04:22:00    2017-09-06 04:22:00
119288    36384    607    2017-09-06 23:13:00    2017-09-06 23:13:00
119289    36384    484    2017-09-06 09:49:00    2017-09-06 09:49:00
119290    36385    685    2017-09-06 05:54:00    2017-09-06 05:54:00
119291    36385    613    2017-09-06 09:55:00    2017-09-06 09:55:00
119292    36385    474    2017-09-06 01:30:00    2017-09-06 01:30:00
119293    36385    704    2017-09-06 08:33:00    2017-09-06 08:33:00
119294    36385    713    2017-09-06 10:00:00    2017-09-06 10:00:00
119295    36386    958    2017-09-06 10:09:00    2017-09-06 10:09:00
119296    36386    878    2017-09-06 08:52:00    2017-09-06 08:52:00
119297    36386    701    2017-09-06 21:58:00    2017-09-06 21:58:00
119298    36386    857    2017-09-06 10:35:00    2017-09-06 10:35:00
119299    36386    523    2017-09-06 02:15:00    2017-09-06 02:15:00
119300    36387    488    2017-09-06 01:33:00    2017-09-06 01:33:00
119301    36387    580    2017-09-06 12:30:00    2017-09-06 12:30:00
119302    36387    680    2017-09-06 13:02:00    2017-09-06 13:02:00
119303    36387    666    2017-09-06 10:22:00    2017-09-06 10:22:00
119304    36387    723    2017-09-06 12:06:00    2017-09-06 12:06:00
119305    36388    606    2017-09-06 01:31:00    2017-09-06 01:31:00
119306    36388    605    2017-09-06 23:38:00    2017-09-06 23:38:00
119307    36388    812    2017-09-06 04:50:00    2017-09-06 04:50:00
119308    36388    881    2017-09-06 22:02:00    2017-09-06 22:02:00
119309    36388    500    2017-09-06 03:09:00    2017-09-06 03:09:00
119310    36389    910    2017-09-06 05:53:00    2017-09-06 05:53:00
119311    36389    881    2017-09-06 18:16:00    2017-09-06 18:16:00
119312    36389    951    2017-09-06 18:13:00    2017-09-06 18:13:00
119313    36389    839    2017-09-06 01:09:00    2017-09-06 01:09:00
119314    36389    718    2017-09-06 02:40:00    2017-09-06 02:40:00
119315    36390    735    2017-09-06 05:34:00    2017-09-06 05:34:00
119316    36390    612    2017-09-06 13:20:00    2017-09-06 13:20:00
119317    36390    865    2017-09-06 06:00:00    2017-09-06 06:00:00
119318    36390    809    2017-09-06 01:56:00    2017-09-06 01:56:00
119319    36390    541    2017-09-06 22:02:00    2017-09-06 22:02:00
119320    36391    914    2017-09-06 04:26:00    2017-09-06 04:26:00
119321    36391    662    2017-09-06 19:35:00    2017-09-06 19:35:00
119322    36391    667    2017-09-06 02:29:00    2017-09-06 02:29:00
119323    36391    564    2017-09-06 19:11:00    2017-09-06 19:11:00
119324    36391    540    2017-09-06 10:01:00    2017-09-06 10:01:00
119325    36392    806    2017-09-06 13:26:00    2017-09-06 13:26:00
119326    36392    762    2017-09-06 21:08:00    2017-09-06 21:08:00
119327    36392    525    2017-09-06 12:13:00    2017-09-06 12:13:00
119328    36392    655    2017-09-06 08:25:00    2017-09-06 08:25:00
119329    36392    548    2017-09-06 04:01:00    2017-09-06 04:01:00
119330    36393    724    2017-09-06 23:45:00    2017-09-06 23:45:00
119331    36393    799    2017-09-06 20:13:00    2017-09-06 20:13:00
119332    36393    950    2017-09-06 01:50:00    2017-09-06 01:50:00
119333    36393    523    2017-09-06 08:38:00    2017-09-06 08:38:00
119334    36393    690    2017-09-06 01:38:00    2017-09-06 01:38:00
119335    36394    679    2017-09-06 16:16:00    2017-09-06 16:16:00
119336    36394    493    2017-09-06 12:42:00    2017-09-06 12:42:00
119337    36394    714    2017-09-06 17:16:00    2017-09-06 17:16:00
119338    36394    557    2017-09-06 07:59:00    2017-09-06 07:59:00
119339    36394    733    2017-09-06 03:40:00    2017-09-06 03:40:00
119340    36395    961    2017-09-06 05:58:00    2017-09-06 05:58:00
119341    36395    803    2017-09-06 20:00:00    2017-09-06 20:00:00
119342    36395    744    2017-09-06 09:49:00    2017-09-06 09:49:00
119343    36395    867    2017-09-06 08:19:00    2017-09-06 08:19:00
119344    36395    892    2017-09-06 23:37:00    2017-09-06 23:37:00
119345    36396    560    2017-09-06 03:53:00    2017-09-06 03:53:00
119346    36396    831    2017-09-06 14:21:00    2017-09-06 14:21:00
119347    36396    661    2017-09-06 02:40:00    2017-09-06 02:40:00
119348    36396    662    2017-09-06 04:39:00    2017-09-06 04:39:00
119349    36396    858    2017-09-06 16:31:00    2017-09-06 16:31:00
119350    36397    542    2017-09-06 20:30:00    2017-09-06 20:30:00
119351    36397    519    2017-09-06 18:35:00    2017-09-06 18:35:00
119352    36397    698    2017-09-06 23:03:00    2017-09-06 23:03:00
119353    36397    795    2017-09-06 19:07:00    2017-09-06 19:07:00
119354    36397    503    2017-09-06 21:36:00    2017-09-06 21:36:00
119355    36398    551    2017-09-06 09:53:00    2017-09-06 09:53:00
119356    36398    517    2017-09-06 02:18:00    2017-09-06 02:18:00
119357    36398    953    2017-09-06 07:32:00    2017-09-06 07:32:00
119358    36398    689    2017-09-06 11:04:00    2017-09-06 11:04:00
119359    36398    588    2017-09-06 22:35:00    2017-09-06 22:35:00
119360    36399    661    2017-09-06 19:52:00    2017-09-06 19:52:00
119361    36399    633    2017-09-06 13:05:00    2017-09-06 13:05:00
119362    36399    908    2017-09-06 05:34:00    2017-09-06 05:34:00
119363    36399    863    2017-09-06 16:24:00    2017-09-06 16:24:00
119364    36399    504    2017-09-06 18:00:00    2017-09-06 18:00:00
119365    36400    746    2017-09-06 20:25:00    2017-09-06 20:25:00
119366    36400    719    2017-09-06 06:59:00    2017-09-06 06:59:00
119367    36400    561    2017-09-06 17:37:00    2017-09-06 17:37:00
119368    36400    509    2017-09-06 17:44:00    2017-09-06 17:44:00
119369    36400    838    2017-09-06 12:40:00    2017-09-06 12:40:00
119370    36401    856    2017-09-06 07:38:00    2017-09-06 07:38:00
119371    36401    728    2017-09-06 22:33:00    2017-09-06 22:33:00
119372    36401    928    2017-09-06 10:30:00    2017-09-06 10:30:00
119373    36401    857    2017-09-06 02:15:00    2017-09-06 02:15:00
119374    36401    824    2017-09-06 02:51:00    2017-09-06 02:51:00
119375    36402    926    2017-09-06 09:49:00    2017-09-06 09:49:00
119376    36402    763    2017-09-06 04:44:00    2017-09-06 04:44:00
119377    36402    486    2017-09-06 21:37:00    2017-09-06 21:37:00
119378    36402    800    2017-09-06 15:38:00    2017-09-06 15:38:00
119379    36402    933    2017-09-06 17:31:00    2017-09-06 17:31:00
119380    36403    465    2017-09-06 09:49:00    2017-09-06 09:49:00
119381    36403    650    2017-09-06 20:33:00    2017-09-06 20:33:00
119382    36403    628    2017-09-06 21:50:00    2017-09-06 21:50:00
119383    36403    726    2017-09-06 01:57:00    2017-09-06 01:57:00
119384    36403    720    2017-09-06 15:52:00    2017-09-06 15:52:00
119385    36404    543    2017-09-07 09:03:00    2017-09-07 09:03:00
119386    36404    932    2017-09-07 09:41:00    2017-09-07 09:41:00
119387    36404    491    2017-09-07 18:38:00    2017-09-07 18:38:00
119388    36404    887    2017-09-07 13:21:00    2017-09-07 13:21:00
119389    36404    701    2017-09-07 03:16:00    2017-09-07 03:16:00
119390    36405    749    2017-09-07 23:41:00    2017-09-07 23:41:00
119391    36405    893    2017-09-07 23:38:00    2017-09-07 23:38:00
119392    36405    684    2017-09-07 08:48:00    2017-09-07 08:48:00
119393    36405    781    2017-09-07 20:23:00    2017-09-07 20:23:00
119394    36405    512    2017-09-07 16:02:00    2017-09-07 16:02:00
119395    36406    750    2017-09-07 15:47:00    2017-09-07 15:47:00
119396    36406    539    2017-09-07 23:56:00    2017-09-07 23:56:00
119397    36406    640    2017-09-07 17:38:00    2017-09-07 17:38:00
119398    36406    563    2017-09-07 05:17:00    2017-09-07 05:17:00
119399    36406    899    2017-09-07 21:06:00    2017-09-07 21:06:00
119400    36407    510    2017-09-07 09:10:00    2017-09-07 09:10:00
119401    36407    936    2017-09-07 06:32:00    2017-09-07 06:32:00
119402    36407    682    2017-09-07 05:18:00    2017-09-07 05:18:00
119403    36407    468    2017-09-07 03:10:00    2017-09-07 03:10:00
119404    36407    682    2017-09-07 01:41:00    2017-09-07 01:41:00
119405    36408    497    2017-09-07 09:46:00    2017-09-07 09:46:00
119406    36408    623    2017-09-07 11:05:00    2017-09-07 11:05:00
119407    36408    834    2017-09-07 01:48:00    2017-09-07 01:48:00
119408    36408    590    2017-09-07 20:02:00    2017-09-07 20:02:00
119409    36408    874    2017-09-07 13:55:00    2017-09-07 13:55:00
119410    36409    819    2017-09-07 17:07:00    2017-09-07 17:07:00
119411    36409    838    2017-09-07 15:22:00    2017-09-07 15:22:00
119412    36409    650    2017-09-07 06:06:00    2017-09-07 06:06:00
119413    36409    629    2017-09-07 13:22:00    2017-09-07 13:22:00
119414    36409    508    2017-09-07 12:37:00    2017-09-07 12:37:00
119415    36410    600    2017-09-07 01:35:00    2017-09-07 01:35:00
119416    36410    841    2017-09-07 05:16:00    2017-09-07 05:16:00
119417    36410    822    2017-09-07 09:12:00    2017-09-07 09:12:00
119418    36410    542    2017-09-07 18:05:00    2017-09-07 18:05:00
119419    36410    942    2017-09-07 05:31:00    2017-09-07 05:31:00
119420    36411    728    2017-09-07 12:39:00    2017-09-07 12:39:00
119421    36411    707    2017-09-07 15:25:00    2017-09-07 15:25:00
119422    36411    736    2017-09-07 09:50:00    2017-09-07 09:50:00
119423    36411    553    2017-09-07 12:54:00    2017-09-07 12:54:00
119424    36411    849    2017-09-07 10:26:00    2017-09-07 10:26:00
119425    36412    886    2017-09-07 12:31:00    2017-09-07 12:31:00
119426    36412    487    2017-09-07 19:18:00    2017-09-07 19:18:00
119427    36412    857    2017-09-07 12:41:00    2017-09-07 12:41:00
119428    36412    569    2017-09-07 18:46:00    2017-09-07 18:46:00
119429    36412    737    2017-09-07 22:26:00    2017-09-07 22:26:00
119430    36413    529    2017-09-07 03:31:00    2017-09-07 03:31:00
119431    36413    589    2017-09-07 19:13:00    2017-09-07 19:13:00
119432    36413    870    2017-09-07 07:12:00    2017-09-07 07:12:00
119433    36413    805    2017-09-07 02:40:00    2017-09-07 02:40:00
119434    36413    748    2017-09-07 23:35:00    2017-09-07 23:35:00
119435    36414    616    2017-09-07 08:06:00    2017-09-07 08:06:00
119436    36414    691    2017-09-07 19:13:00    2017-09-07 19:13:00
119437    36414    810    2017-09-07 09:20:00    2017-09-07 09:20:00
119438    36414    856    2017-09-07 15:49:00    2017-09-07 15:49:00
119439    36414    848    2017-09-07 02:32:00    2017-09-07 02:32:00
119440    36415    652    2017-09-07 04:53:00    2017-09-07 04:53:00
119441    36415    517    2017-09-07 13:30:00    2017-09-07 13:30:00
119442    36415    483    2017-09-07 05:15:00    2017-09-07 05:15:00
119443    36415    725    2017-09-07 05:52:00    2017-09-07 05:52:00
119444    36415    730    2017-09-07 22:40:00    2017-09-07 22:40:00
119445    36416    796    2017-09-07 14:43:00    2017-09-07 14:43:00
119446    36416    871    2017-09-07 17:41:00    2017-09-07 17:41:00
119447    36416    879    2017-09-07 15:20:00    2017-09-07 15:20:00
119448    36416    922    2017-09-07 14:00:00    2017-09-07 14:00:00
119449    36416    843    2017-09-07 11:52:00    2017-09-07 11:52:00
119450    36417    816    2017-09-07 12:09:00    2017-09-07 12:09:00
119451    36417    947    2017-09-07 01:40:00    2017-09-07 01:40:00
119452    36417    832    2017-09-07 12:32:00    2017-09-07 12:32:00
119453    36417    653    2017-09-07 20:12:00    2017-09-07 20:12:00
119454    36417    572    2017-09-07 18:09:00    2017-09-07 18:09:00
119455    36418    816    2017-09-07 14:39:00    2017-09-07 14:39:00
119456    36418    587    2017-09-07 11:00:00    2017-09-07 11:00:00
119457    36418    681    2017-09-07 05:12:00    2017-09-07 05:12:00
119458    36418    731    2017-09-07 22:32:00    2017-09-07 22:32:00
119459    36418    573    2017-09-07 13:00:00    2017-09-07 13:00:00
119460    36419    598    2017-09-07 23:10:00    2017-09-07 23:10:00
119461    36419    579    2017-09-07 13:22:00    2017-09-07 13:22:00
119462    36419    742    2017-09-07 15:26:00    2017-09-07 15:26:00
119463    36419    590    2017-09-07 17:11:00    2017-09-07 17:11:00
119464    36419    816    2017-09-07 21:06:00    2017-09-07 21:06:00
119465    36420    653    2017-09-07 01:26:00    2017-09-07 01:26:00
119466    36420    726    2017-09-07 03:03:00    2017-09-07 03:03:00
119467    36420    561    2017-09-07 19:58:00    2017-09-07 19:58:00
119468    36420    938    2017-09-07 16:30:00    2017-09-07 16:30:00
119469    36420    502    2017-09-07 20:41:00    2017-09-07 20:41:00
119470    36421    782    2017-09-07 22:45:00    2017-09-07 22:45:00
119471    36421    637    2017-09-07 20:49:00    2017-09-07 20:49:00
119472    36421    686    2017-09-07 10:10:00    2017-09-07 10:10:00
119473    36421    753    2017-09-07 19:02:00    2017-09-07 19:02:00
119474    36421    713    2017-09-07 19:50:00    2017-09-07 19:50:00
119475    36422    873    2017-09-07 17:24:00    2017-09-07 17:24:00
119476    36422    635    2017-09-07 07:02:00    2017-09-07 07:02:00
119477    36422    774    2017-09-07 01:29:00    2017-09-07 01:29:00
119478    36422    735    2017-09-07 08:27:00    2017-09-07 08:27:00
119479    36422    940    2017-09-07 08:01:00    2017-09-07 08:01:00
119480    36423    467    2017-09-07 13:26:00    2017-09-07 13:26:00
119481    36423    619    2017-09-07 23:29:00    2017-09-07 23:29:00
119482    36423    499    2017-09-07 03:22:00    2017-09-07 03:22:00
119483    36423    930    2017-09-07 18:35:00    2017-09-07 18:35:00
119484    36423    894    2017-09-07 21:57:00    2017-09-07 21:57:00
119485    36424    491    2017-09-07 09:00:00    2017-09-07 09:00:00
119486    36424    831    2017-09-07 11:59:00    2017-09-07 11:59:00
119487    36424    729    2017-09-07 16:08:00    2017-09-07 16:08:00
119488    36424    788    2017-09-07 04:20:00    2017-09-07 04:20:00
119489    36424    617    2017-09-07 06:38:00    2017-09-07 06:38:00
119490    36425    501    2017-09-07 13:50:00    2017-09-07 13:50:00
119491    36425    484    2017-09-07 18:31:00    2017-09-07 18:31:00
119492    36425    653    2017-09-07 09:42:00    2017-09-07 09:42:00
119493    36425    575    2017-09-07 19:53:00    2017-09-07 19:53:00
119494    36425    530    2017-09-07 05:39:00    2017-09-07 05:39:00
119495    36426    551    2017-09-07 16:30:00    2017-09-07 16:30:00
119496    36426    822    2017-09-07 14:22:00    2017-09-07 14:22:00
119497    36426    496    2017-09-07 15:22:00    2017-09-07 15:22:00
119498    36426    932    2017-09-07 23:33:00    2017-09-07 23:33:00
119499    36426    824    2017-09-07 07:34:00    2017-09-07 07:34:00
119500    36427    892    2017-09-07 17:04:00    2017-09-07 17:04:00
119501    36427    928    2017-09-07 23:56:00    2017-09-07 23:56:00
119502    36427    687    2017-09-07 20:58:00    2017-09-07 20:58:00
119503    36427    793    2017-09-07 23:13:00    2017-09-07 23:13:00
119504    36427    662    2017-09-07 21:40:00    2017-09-07 21:40:00
119505    36428    858    2017-09-07 15:16:00    2017-09-07 15:16:00
119506    36428    552    2017-09-07 01:28:00    2017-09-07 01:28:00
119507    36428    498    2017-09-07 10:45:00    2017-09-07 10:45:00
119508    36428    815    2017-09-07 03:03:00    2017-09-07 03:03:00
119509    36428    742    2017-09-07 21:59:00    2017-09-07 21:59:00
119510    36429    609    2017-09-07 16:59:00    2017-09-07 16:59:00
119511    36429    586    2017-09-07 16:32:00    2017-09-07 16:32:00
119512    36429    769    2017-09-07 12:39:00    2017-09-07 12:39:00
119513    36429    726    2017-09-07 21:37:00    2017-09-07 21:37:00
119514    36429    632    2017-09-07 03:02:00    2017-09-07 03:02:00
119515    36430    745    2017-09-07 04:42:00    2017-09-07 04:42:00
119516    36430    638    2017-09-07 03:22:00    2017-09-07 03:22:00
119517    36430    729    2017-09-07 11:40:00    2017-09-07 11:40:00
119518    36430    507    2017-09-07 20:16:00    2017-09-07 20:16:00
119519    36430    816    2017-09-07 06:12:00    2017-09-07 06:12:00
119520    36431    495    2017-09-07 06:56:00    2017-09-07 06:56:00
119521    36431    790    2017-09-07 18:49:00    2017-09-07 18:49:00
119522    36431    687    2017-09-07 22:34:00    2017-09-07 22:34:00
119523    36431    569    2017-09-07 15:50:00    2017-09-07 15:50:00
119524    36431    529    2017-09-07 18:02:00    2017-09-07 18:02:00
119525    36432    912    2017-09-07 16:40:00    2017-09-07 16:40:00
119526    36432    534    2017-09-07 15:28:00    2017-09-07 15:28:00
119527    36432    701    2017-09-07 01:54:00    2017-09-07 01:54:00
119528    36432    702    2017-09-07 11:36:00    2017-09-07 11:36:00
119529    36432    505    2017-09-07 23:09:00    2017-09-07 23:09:00
119530    36433    899    2017-09-07 14:46:00    2017-09-07 14:46:00
119531    36433    813    2017-09-07 20:08:00    2017-09-07 20:08:00
119532    36433    510    2017-09-07 07:19:00    2017-09-07 07:19:00
119533    36433    681    2017-09-07 16:32:00    2017-09-07 16:32:00
119534    36433    740    2017-09-07 05:40:00    2017-09-07 05:40:00
119535    36434    735    2017-09-07 01:46:00    2017-09-07 01:46:00
119536    36434    787    2017-09-07 20:45:00    2017-09-07 20:45:00
119537    36434    728    2017-09-07 13:50:00    2017-09-07 13:50:00
119538    36434    777    2017-09-07 01:34:00    2017-09-07 01:34:00
119539    36434    802    2017-09-07 14:51:00    2017-09-07 14:51:00
119540    36435    877    2017-09-07 20:56:00    2017-09-07 20:56:00
119541    36435    607    2017-09-07 06:48:00    2017-09-07 06:48:00
119542    36435    662    2017-09-07 22:23:00    2017-09-07 22:23:00
119543    36435    872    2017-09-07 23:59:00    2017-09-07 23:59:00
119544    36435    554    2017-09-07 06:22:00    2017-09-07 06:22:00
119545    36436    641    2017-09-07 02:27:00    2017-09-07 02:27:00
119546    36436    665    2017-09-07 12:49:00    2017-09-07 12:49:00
119547    36436    588    2017-09-07 22:08:00    2017-09-07 22:08:00
119548    36436    685    2017-09-07 07:54:00    2017-09-07 07:54:00
119549    36436    679    2017-09-07 18:04:00    2017-09-07 18:04:00
119550    36437    623    2017-09-07 14:59:00    2017-09-07 14:59:00
119551    36437    842    2017-09-07 08:36:00    2017-09-07 08:36:00
119552    36437    826    2017-09-07 16:39:00    2017-09-07 16:39:00
119553    36437    606    2017-09-07 05:14:00    2017-09-07 05:14:00
119554    36437    699    2017-09-07 17:02:00    2017-09-07 17:02:00
119555    36438    761    2017-09-07 09:14:00    2017-09-07 09:14:00
119556    36438    775    2017-09-07 02:04:00    2017-09-07 02:04:00
119557    36438    670    2017-09-07 08:56:00    2017-09-07 08:56:00
119558    36438    483    2017-09-07 10:24:00    2017-09-07 10:24:00
119559    36438    732    2017-09-07 21:52:00    2017-09-07 21:52:00
119560    36439    576    2017-09-07 22:22:00    2017-09-07 22:22:00
119561    36439    811    2017-09-07 17:36:00    2017-09-07 17:36:00
119562    36439    877    2017-09-07 01:15:00    2017-09-07 01:15:00
119563    36439    953    2017-09-07 16:40:00    2017-09-07 16:40:00
119564    36439    511    2017-09-07 08:43:00    2017-09-07 08:43:00
119565    36440    527    2017-09-07 14:23:00    2017-09-07 14:23:00
119566    36440    628    2017-09-07 18:52:00    2017-09-07 18:52:00
119567    36440    957    2017-09-07 13:15:00    2017-09-07 13:15:00
119568    36440    883    2017-09-07 04:39:00    2017-09-07 04:39:00
119569    36440    702    2017-09-07 17:05:00    2017-09-07 17:05:00
119570    36441    538    2017-09-07 12:20:00    2017-09-07 12:20:00
119571    36441    883    2017-09-07 20:42:00    2017-09-07 20:42:00
119572    36441    483    2017-09-07 17:19:00    2017-09-07 17:19:00
119573    36441    634    2017-09-07 14:02:00    2017-09-07 14:02:00
119574    36441    850    2017-09-07 02:53:00    2017-09-07 02:53:00
119575    36442    835    2017-09-07 21:55:00    2017-09-07 21:55:00
119576    36442    759    2017-09-07 06:11:00    2017-09-07 06:11:00
119577    36442    744    2017-09-07 05:06:00    2017-09-07 05:06:00
119578    36442    633    2017-09-07 07:11:00    2017-09-07 07:11:00
119579    36442    556    2017-09-07 23:48:00    2017-09-07 23:48:00
119580    36443    911    2017-09-07 07:20:00    2017-09-07 07:20:00
119581    36443    656    2017-09-07 08:46:00    2017-09-07 08:46:00
119582    36443    502    2017-09-07 21:28:00    2017-09-07 21:28:00
119583    36443    784    2017-09-07 18:11:00    2017-09-07 18:11:00
119584    36443    624    2017-09-07 18:57:00    2017-09-07 18:57:00
119585    36444    893    2017-09-07 12:12:00    2017-09-07 12:12:00
119586    36444    551    2017-09-07 11:31:00    2017-09-07 11:31:00
119587    36444    708    2017-09-07 17:10:00    2017-09-07 17:10:00
119588    36444    746    2017-09-07 13:22:00    2017-09-07 13:22:00
119589    36444    464    2017-09-07 01:01:00    2017-09-07 01:01:00
119590    36445    936    2017-09-07 02:06:00    2017-09-07 02:06:00
119591    36445    601    2017-09-07 12:41:00    2017-09-07 12:41:00
119592    36445    803    2017-09-07 12:58:00    2017-09-07 12:58:00
119593    36445    786    2017-09-07 22:23:00    2017-09-07 22:23:00
119594    36445    730    2017-09-07 15:21:00    2017-09-07 15:21:00
119595    36446    634    2017-09-07 11:07:00    2017-09-07 11:07:00
119596    36446    926    2017-09-07 04:04:00    2017-09-07 04:04:00
119597    36446    873    2017-09-07 19:03:00    2017-09-07 19:03:00
119598    36446    856    2017-09-07 23:29:00    2017-09-07 23:29:00
119599    36446    469    2017-09-07 10:48:00    2017-09-07 10:48:00
119600    36447    914    2017-09-07 10:46:00    2017-09-07 10:46:00
119601    36447    791    2017-09-07 23:51:00    2017-09-07 23:51:00
119602    36447    485    2017-09-07 11:05:00    2017-09-07 11:05:00
119603    36447    595    2017-09-07 08:15:00    2017-09-07 08:15:00
119604    36447    938    2017-09-07 03:36:00    2017-09-07 03:36:00
119605    36448    517    2017-09-07 14:51:00    2017-09-07 14:51:00
119606    36448    929    2017-09-07 19:16:00    2017-09-07 19:16:00
119607    36448    652    2017-09-07 20:39:00    2017-09-07 20:39:00
119608    36448    576    2017-09-07 12:18:00    2017-09-07 12:18:00
119609    36448    535    2017-09-07 08:22:00    2017-09-07 08:22:00
119610    36449    666    2017-09-07 20:31:00    2017-09-07 20:31:00
119611    36449    730    2017-09-07 20:34:00    2017-09-07 20:34:00
119612    36449    476    2017-09-07 02:03:00    2017-09-07 02:03:00
119613    36449    712    2017-09-07 21:19:00    2017-09-07 21:19:00
119614    36449    649    2017-09-07 18:21:00    2017-09-07 18:21:00
119615    36450    743    2017-09-07 14:24:00    2017-09-07 14:24:00
119616    36450    609    2017-09-07 12:29:00    2017-09-07 12:29:00
119617    36450    872    2017-09-07 10:26:00    2017-09-07 10:26:00
119618    36450    546    2017-09-07 20:25:00    2017-09-07 20:25:00
119619    36450    871    2017-09-07 23:07:00    2017-09-07 23:07:00
119620    36451    624    2017-09-08 09:55:00    2017-09-08 09:55:00
119621    36451    847    2017-09-08 18:35:00    2017-09-08 18:35:00
119622    36451    931    2017-09-08 01:11:00    2017-09-08 01:11:00
119623    36451    705    2017-09-08 01:22:00    2017-09-08 01:22:00
119624    36451    470    2017-09-08 14:21:00    2017-09-08 14:21:00
119625    36452    572    2017-09-08 16:18:00    2017-09-08 16:18:00
119626    36452    640    2017-09-08 17:42:00    2017-09-08 17:42:00
119627    36452    600    2017-09-08 10:09:00    2017-09-08 10:09:00
119628    36452    641    2017-09-08 04:53:00    2017-09-08 04:53:00
119629    36452    807    2017-09-08 14:53:00    2017-09-08 14:53:00
119630    36453    575    2017-09-08 13:17:00    2017-09-08 13:17:00
119631    36453    713    2017-09-08 12:08:00    2017-09-08 12:08:00
119632    36453    672    2017-09-08 07:25:00    2017-09-08 07:25:00
119633    36453    625    2017-09-08 15:06:00    2017-09-08 15:06:00
119634    36453    670    2017-09-08 07:31:00    2017-09-08 07:31:00
119635    36454    481    2017-09-08 18:14:00    2017-09-08 18:14:00
119636    36454    531    2017-09-08 13:13:00    2017-09-08 13:13:00
119637    36454    572    2017-09-08 09:45:00    2017-09-08 09:45:00
119638    36454    653    2017-09-08 05:34:00    2017-09-08 05:34:00
119639    36454    497    2017-09-08 09:24:00    2017-09-08 09:24:00
119640    36455    498    2017-09-08 09:18:00    2017-09-08 09:18:00
119641    36455    832    2017-09-08 20:22:00    2017-09-08 20:22:00
119642    36455    786    2017-09-08 16:52:00    2017-09-08 16:52:00
119643    36455    666    2017-09-08 08:38:00    2017-09-08 08:38:00
119644    36455    813    2017-09-08 12:56:00    2017-09-08 12:56:00
119645    36456    885    2017-09-08 14:51:00    2017-09-08 14:51:00
119646    36456    941    2017-09-08 16:08:00    2017-09-08 16:08:00
119647    36456    501    2017-09-08 06:29:00    2017-09-08 06:29:00
119648    36456    931    2017-09-08 08:17:00    2017-09-08 08:17:00
119649    36456    545    2017-09-08 21:15:00    2017-09-08 21:15:00
119650    36457    777    2017-09-08 02:03:00    2017-09-08 02:03:00
119651    36457    667    2017-09-08 17:17:00    2017-09-08 17:17:00
119652    36457    543    2017-09-08 04:22:00    2017-09-08 04:22:00
119653    36457    879    2017-09-08 23:59:00    2017-09-08 23:59:00
119654    36457    518    2017-09-08 10:26:00    2017-09-08 10:26:00
119655    36458    627    2017-09-08 01:11:00    2017-09-08 01:11:00
119656    36458    694    2017-09-08 23:00:00    2017-09-08 23:00:00
119657    36458    902    2017-09-08 09:46:00    2017-09-08 09:46:00
119658    36458    915    2017-09-08 01:09:00    2017-09-08 01:09:00
119659    36458    568    2017-09-08 10:17:00    2017-09-08 10:17:00
119660    36459    584    2017-09-09 07:05:00    2017-09-09 07:05:00
119661    36459    831    2017-09-09 11:20:00    2017-09-09 11:20:00
119662    36459    528    2017-09-09 01:07:00    2017-09-09 01:07:00
119663    36459    760    2017-09-09 11:49:00    2017-09-09 11:49:00
119664    36459    758    2017-09-09 18:41:00    2017-09-09 18:41:00
119665    36460    483    2017-09-09 22:24:00    2017-09-09 22:24:00
119666    36460    605    2017-09-09 02:40:00    2017-09-09 02:40:00
119667    36460    941    2017-09-09 23:02:00    2017-09-09 23:02:00
119668    36460    609    2017-09-09 01:08:00    2017-09-09 01:08:00
119669    36460    603    2017-09-09 05:58:00    2017-09-09 05:58:00
119670    36461    795    2017-09-09 09:07:00    2017-09-09 09:07:00
119671    36461    665    2017-09-09 16:58:00    2017-09-09 16:58:00
119672    36461    616    2017-09-09 08:46:00    2017-09-09 08:46:00
119673    36461    663    2017-09-09 19:44:00    2017-09-09 19:44:00
119674    36461    789    2017-09-09 11:08:00    2017-09-09 11:08:00
119675    36462    580    2017-09-09 08:16:00    2017-09-09 08:16:00
119676    36462    492    2017-09-09 18:48:00    2017-09-09 18:48:00
119677    36462    857    2017-09-09 14:16:00    2017-09-09 14:16:00
119678    36462    581    2017-09-09 21:47:00    2017-09-09 21:47:00
119679    36462    662    2017-09-09 22:52:00    2017-09-09 22:52:00
119680    36463    474    2017-09-09 18:35:00    2017-09-09 18:35:00
119681    36463    779    2017-09-09 16:55:00    2017-09-09 16:55:00
119682    36463    936    2017-09-09 16:38:00    2017-09-09 16:38:00
119683    36463    737    2017-09-09 15:43:00    2017-09-09 15:43:00
119684    36463    801    2017-09-09 23:32:00    2017-09-09 23:32:00
119685    36464    806    2017-09-09 04:55:00    2017-09-09 04:55:00
119686    36464    654    2017-09-09 20:57:00    2017-09-09 20:57:00
119687    36464    650    2017-09-09 11:06:00    2017-09-09 11:06:00
119688    36464    833    2017-09-09 01:45:00    2017-09-09 01:45:00
119689    36464    662    2017-09-09 17:15:00    2017-09-09 17:15:00
119690    36465    947    2017-09-09 11:09:00    2017-09-09 11:09:00
119691    36465    727    2017-09-09 12:56:00    2017-09-09 12:56:00
119692    36465    489    2017-09-09 08:35:00    2017-09-09 08:35:00
119693    36465    564    2017-09-09 21:21:00    2017-09-09 21:21:00
119694    36465    682    2017-09-09 12:19:00    2017-09-09 12:19:00
119695    36466    956    2017-09-09 03:21:00    2017-09-09 03:21:00
119696    36466    842    2017-09-09 03:43:00    2017-09-09 03:43:00
119697    36466    890    2017-09-09 20:16:00    2017-09-09 20:16:00
119698    36466    543    2017-09-09 23:08:00    2017-09-09 23:08:00
119699    36466    860    2017-09-09 17:26:00    2017-09-09 17:26:00
119700    36467    507    2017-09-09 01:30:00    2017-09-09 01:30:00
119701    36467    790    2017-09-09 20:28:00    2017-09-09 20:28:00
119702    36467    531    2017-09-09 18:38:00    2017-09-09 18:38:00
119703    36467    470    2017-09-09 10:17:00    2017-09-09 10:17:00
119704    36467    628    2017-09-09 13:16:00    2017-09-09 13:16:00
119705    36468    899    2017-09-09 07:06:00    2017-09-09 07:06:00
119706    36468    888    2017-09-09 20:11:00    2017-09-09 20:11:00
119707    36468    933    2017-09-09 05:35:00    2017-09-09 05:35:00
119708    36468    747    2017-09-09 06:36:00    2017-09-09 06:36:00
119709    36468    823    2017-09-09 02:41:00    2017-09-09 02:41:00
119710    36469    522    2017-09-09 19:06:00    2017-09-09 19:06:00
119711    36469    645    2017-09-09 14:40:00    2017-09-09 14:40:00
119712    36469    942    2017-09-09 15:42:00    2017-09-09 15:42:00
119713    36469    704    2017-09-09 06:17:00    2017-09-09 06:17:00
119714    36469    751    2017-09-09 01:10:00    2017-09-09 01:10:00
119715    36470    745    2017-09-09 11:03:00    2017-09-09 11:03:00
119716    36470    619    2017-09-09 18:41:00    2017-09-09 18:41:00
119717    36470    606    2017-09-09 11:52:00    2017-09-09 11:52:00
119718    36470    719    2017-09-09 23:32:00    2017-09-09 23:32:00
119719    36470    908    2017-09-09 12:26:00    2017-09-09 12:26:00
119720    36471    633    2017-09-09 19:30:00    2017-09-09 19:30:00
119721    36471    901    2017-09-09 10:13:00    2017-09-09 10:13:00
119722    36471    632    2017-09-09 14:58:00    2017-09-09 14:58:00
119723    36471    897    2017-09-09 22:22:00    2017-09-09 22:22:00
119724    36471    737    2017-09-09 07:18:00    2017-09-09 07:18:00
119725    36472    602    2017-09-09 22:36:00    2017-09-09 22:36:00
119726    36472    799    2017-09-09 14:39:00    2017-09-09 14:39:00
119727    36472    744    2017-09-09 02:28:00    2017-09-09 02:28:00
119728    36472    606    2017-09-09 08:46:00    2017-09-09 08:46:00
119729    36472    911    2017-09-09 12:05:00    2017-09-09 12:05:00
119730    36473    857    2017-09-09 22:23:00    2017-09-09 22:23:00
119731    36473    563    2017-09-09 23:04:00    2017-09-09 23:04:00
119732    36473    929    2017-09-09 06:14:00    2017-09-09 06:14:00
119733    36473    894    2017-09-09 22:24:00    2017-09-09 22:24:00
119734    36473    905    2017-09-09 01:20:00    2017-09-09 01:20:00
119735    36474    632    2017-09-09 18:18:00    2017-09-09 18:18:00
119736    36474    903    2017-09-09 04:32:00    2017-09-09 04:32:00
119737    36474    915    2017-09-09 12:51:00    2017-09-09 12:51:00
119738    36474    682    2017-09-09 17:56:00    2017-09-09 17:56:00
119739    36474    897    2017-09-09 01:32:00    2017-09-09 01:32:00
119740    36475    677    2017-09-09 07:13:00    2017-09-09 07:13:00
119741    36475    820    2017-09-09 08:57:00    2017-09-09 08:57:00
119742    36475    891    2017-09-09 04:02:00    2017-09-09 04:02:00
119743    36475    513    2017-09-09 09:54:00    2017-09-09 09:54:00
119744    36475    779    2017-09-09 10:36:00    2017-09-09 10:36:00
119745    36476    671    2017-09-09 12:21:00    2017-09-09 12:21:00
119746    36476    803    2017-09-09 02:59:00    2017-09-09 02:59:00
119747    36476    898    2017-09-09 18:38:00    2017-09-09 18:38:00
119748    36476    513    2017-09-09 12:36:00    2017-09-09 12:36:00
119749    36476    571    2017-09-09 16:31:00    2017-09-09 16:31:00
119750    36477    790    2017-09-09 02:23:00    2017-09-09 02:23:00
119751    36477    692    2017-09-09 04:02:00    2017-09-09 04:02:00
119752    36477    497    2017-09-09 02:42:00    2017-09-09 02:42:00
119753    36477    563    2017-09-09 01:13:00    2017-09-09 01:13:00
119754    36477    864    2017-09-09 10:02:00    2017-09-09 10:02:00
119755    36478    500    2017-09-09 10:35:00    2017-09-09 10:35:00
119756    36478    927    2017-09-09 11:40:00    2017-09-09 11:40:00
119757    36478    735    2017-09-09 01:04:00    2017-09-09 01:04:00
119758    36478    835    2017-09-09 09:28:00    2017-09-09 09:28:00
119759    36478    518    2017-09-09 15:51:00    2017-09-09 15:51:00
119760    36479    958    2017-09-09 02:56:00    2017-09-09 02:56:00
119761    36479    734    2017-09-09 21:06:00    2017-09-09 21:06:00
119762    36479    914    2017-09-09 17:52:00    2017-09-09 17:52:00
119763    36479    720    2017-09-09 15:36:00    2017-09-09 15:36:00
119764    36479    761    2017-09-09 05:10:00    2017-09-09 05:10:00
119765    36480    921    2017-09-09 04:13:00    2017-09-09 04:13:00
119766    36480    800    2017-09-09 20:55:00    2017-09-09 20:55:00
119767    36480    902    2017-09-09 03:03:00    2017-09-09 03:03:00
119768    36480    841    2017-09-09 11:34:00    2017-09-09 11:34:00
119769    36480    876    2017-09-09 05:26:00    2017-09-09 05:26:00
119770    36481    824    2017-09-09 01:42:00    2017-09-09 01:42:00
119771    36481    742    2017-09-09 06:02:00    2017-09-09 06:02:00
119772    36481    729    2017-09-09 03:07:00    2017-09-09 03:07:00
119773    36481    709    2017-09-09 11:27:00    2017-09-09 11:27:00
119774    36481    692    2017-09-09 12:36:00    2017-09-09 12:36:00
119775    36482    571    2017-09-09 23:38:00    2017-09-09 23:38:00
119776    36482    619    2017-09-09 15:26:00    2017-09-09 15:26:00
119777    36482    548    2017-09-09 03:53:00    2017-09-09 03:53:00
119778    36482    605    2017-09-09 12:57:00    2017-09-09 12:57:00
119779    36482    528    2017-09-09 21:46:00    2017-09-09 21:46:00
119780    36483    634    2017-09-09 05:30:00    2017-09-09 05:30:00
119781    36483    870    2017-09-09 05:48:00    2017-09-09 05:48:00
119782    36483    524    2017-09-09 16:10:00    2017-09-09 16:10:00
119783    36483    773    2017-09-09 19:44:00    2017-09-09 19:44:00
119784    36483    706    2017-09-09 23:39:00    2017-09-09 23:39:00
119785    36484    612    2017-09-09 13:02:00    2017-09-09 13:02:00
119786    36484    934    2017-09-09 09:07:00    2017-09-09 09:07:00
119787    36484    588    2017-09-09 23:13:00    2017-09-09 23:13:00
119788    36484    807    2017-09-09 22:54:00    2017-09-09 22:54:00
119789    36484    741    2017-09-09 12:59:00    2017-09-09 12:59:00
119790    36485    541    2017-09-09 11:37:00    2017-09-09 11:37:00
119791    36485    857    2017-09-09 15:46:00    2017-09-09 15:46:00
119792    36485    802    2017-09-09 15:40:00    2017-09-09 15:40:00
119793    36485    650    2017-09-09 22:54:00    2017-09-09 22:54:00
119794    36485    828    2017-09-09 19:23:00    2017-09-09 19:23:00
119795    36486    890    2017-09-09 21:02:00    2017-09-09 21:02:00
119796    36486    816    2017-09-09 22:55:00    2017-09-09 22:55:00
119797    36486    510    2017-09-09 20:24:00    2017-09-09 20:24:00
119798    36486    538    2017-09-09 16:25:00    2017-09-09 16:25:00
119799    36486    840    2017-09-09 04:06:00    2017-09-09 04:06:00
119800    36487    664    2017-09-09 05:49:00    2017-09-09 05:49:00
119801    36487    702    2017-09-09 23:00:00    2017-09-09 23:00:00
119802    36487    713    2017-09-09 09:47:00    2017-09-09 09:47:00
119803    36487    959    2017-09-09 05:20:00    2017-09-09 05:20:00
119804    36487    903    2017-09-09 05:31:00    2017-09-09 05:31:00
119805    36488    915    2017-09-09 23:50:00    2017-09-09 23:50:00
119806    36488    496    2017-09-09 17:43:00    2017-09-09 17:43:00
119807    36488    772    2017-09-09 09:18:00    2017-09-09 09:18:00
119808    36488    654    2017-09-09 16:04:00    2017-09-09 16:04:00
119809    36488    959    2017-09-09 10:37:00    2017-09-09 10:37:00
119810    36489    907    2017-09-09 02:58:00    2017-09-09 02:58:00
119811    36489    821    2017-09-09 09:17:00    2017-09-09 09:17:00
119812    36489    508    2017-09-09 23:36:00    2017-09-09 23:36:00
119813    36489    866    2017-09-09 14:48:00    2017-09-09 14:48:00
119814    36489    634    2017-09-09 20:44:00    2017-09-09 20:44:00
119815    36490    470    2017-09-09 07:11:00    2017-09-09 07:11:00
119816    36490    920    2017-09-09 21:40:00    2017-09-09 21:40:00
119817    36490    946    2017-09-09 15:31:00    2017-09-09 15:31:00
119818    36490    802    2017-09-09 18:03:00    2017-09-09 18:03:00
119819    36490    571    2017-09-09 20:03:00    2017-09-09 20:03:00
119820    36491    840    2017-09-09 16:33:00    2017-09-09 16:33:00
119821    36491    628    2017-09-09 19:32:00    2017-09-09 19:32:00
119822    36491    732    2017-09-09 22:58:00    2017-09-09 22:58:00
119823    36491    839    2017-09-09 01:05:00    2017-09-09 01:05:00
119824    36491    811    2017-09-09 16:53:00    2017-09-09 16:53:00
119825    36492    858    2017-09-09 06:07:00    2017-09-09 06:07:00
119826    36492    519    2017-09-09 22:27:00    2017-09-09 22:27:00
119827    36492    732    2017-09-09 13:19:00    2017-09-09 13:19:00
119828    36492    745    2017-09-09 03:31:00    2017-09-09 03:31:00
119829    36492    779    2017-09-09 17:52:00    2017-09-09 17:52:00
119830    36493    465    2017-09-09 04:27:00    2017-09-09 04:27:00
119831    36493    698    2017-09-09 16:16:00    2017-09-09 16:16:00
119832    36493    616    2017-09-09 21:03:00    2017-09-09 21:03:00
119833    36493    476    2017-09-09 22:27:00    2017-09-09 22:27:00
119834    36493    633    2017-09-09 15:36:00    2017-09-09 15:36:00
119835    36494    648    2017-09-09 06:03:00    2017-09-09 06:03:00
119836    36494    718    2017-09-09 08:01:00    2017-09-09 08:01:00
119837    36494    746    2017-09-09 17:17:00    2017-09-09 17:17:00
119838    36494    939    2017-09-09 23:34:00    2017-09-09 23:34:00
119839    36494    482    2017-09-09 22:45:00    2017-09-09 22:45:00
119840    36495    554    2017-09-09 22:34:00    2017-09-09 22:34:00
119841    36495    688    2017-09-09 19:13:00    2017-09-09 19:13:00
119842    36495    847    2017-09-09 05:11:00    2017-09-09 05:11:00
119843    36495    498    2017-09-09 18:49:00    2017-09-09 18:49:00
119844    36495    518    2017-09-09 03:41:00    2017-09-09 03:41:00
119845    36496    542    2017-09-09 18:37:00    2017-09-09 18:37:00
119846    36496    856    2017-09-09 18:18:00    2017-09-09 18:18:00
119847    36496    819    2017-09-09 11:59:00    2017-09-09 11:59:00
119848    36496    769    2017-09-09 14:28:00    2017-09-09 14:28:00
119849    36496    884    2017-09-09 06:22:00    2017-09-09 06:22:00
119850    36497    775    2017-09-09 05:12:00    2017-09-09 05:12:00
119851    36497    749    2017-09-09 18:31:00    2017-09-09 18:31:00
119852    36497    569    2017-09-09 20:35:00    2017-09-09 20:35:00
119853    36497    558    2017-09-09 02:30:00    2017-09-09 02:30:00
119854    36497    809    2017-09-09 20:15:00    2017-09-09 20:15:00
119855    36498    906    2017-09-09 02:27:00    2017-09-09 02:27:00
119856    36498    489    2017-09-09 21:22:00    2017-09-09 21:22:00
119857    36498    501    2017-09-09 15:41:00    2017-09-09 15:41:00
119858    36498    775    2017-09-09 21:57:00    2017-09-09 21:57:00
119859    36498    594    2017-09-09 14:43:00    2017-09-09 14:43:00
119860    36499    524    2017-09-09 07:20:00    2017-09-09 07:20:00
119861    36499    957    2017-09-09 19:47:00    2017-09-09 19:47:00
119862    36499    689    2017-09-09 06:42:00    2017-09-09 06:42:00
119863    36499    914    2017-09-09 07:58:00    2017-09-09 07:58:00
119864    36499    630    2017-09-09 17:58:00    2017-09-09 17:58:00
119865    36500    731    2017-09-09 22:53:00    2017-09-09 22:53:00
119866    36500    787    2017-09-09 04:41:00    2017-09-09 04:41:00
119867    36500    504    2017-09-09 15:29:00    2017-09-09 15:29:00
119868    36500    673    2017-09-09 14:37:00    2017-09-09 14:37:00
119869    36500    516    2017-09-09 10:46:00    2017-09-09 10:46:00
119870    36501    639    2017-09-09 04:39:00    2017-09-09 04:39:00
119871    36501    764    2017-09-09 18:22:00    2017-09-09 18:22:00
119872    36501    761    2017-09-09 21:36:00    2017-09-09 21:36:00
119873    36501    886    2017-09-09 10:51:00    2017-09-09 10:51:00
119874    36501    733    2017-09-09 18:48:00    2017-09-09 18:48:00
119875    36502    673    2017-09-09 15:17:00    2017-09-09 15:17:00
119876    36502    656    2017-09-09 08:08:00    2017-09-09 08:08:00
119877    36502    734    2017-09-09 02:23:00    2017-09-09 02:23:00
119878    36502    484    2017-09-09 15:37:00    2017-09-09 15:37:00
119879    36502    905    2017-09-09 14:18:00    2017-09-09 14:18:00
119880    36503    627    2017-09-09 02:43:00    2017-09-09 02:43:00
119881    36503    616    2017-09-09 07:23:00    2017-09-09 07:23:00
119882    36503    525    2017-09-09 09:59:00    2017-09-09 09:59:00
119883    36503    522    2017-09-09 21:51:00    2017-09-09 21:51:00
119884    36503    661    2017-09-09 20:36:00    2017-09-09 20:36:00
119885    36504    517    2017-09-09 04:23:00    2017-09-09 04:23:00
119886    36504    865    2017-09-09 19:54:00    2017-09-09 19:54:00
119887    36504    742    2017-09-09 23:32:00    2017-09-09 23:32:00
119888    36504    581    2017-09-09 18:00:00    2017-09-09 18:00:00
119889    36504    597    2017-09-09 03:23:00    2017-09-09 03:23:00
119890    36505    899    2017-09-09 20:15:00    2017-09-09 20:15:00
119891    36505    952    2017-09-09 19:16:00    2017-09-09 19:16:00
119892    36505    819    2017-09-09 18:57:00    2017-09-09 18:57:00
119893    36505    757    2017-09-09 04:05:00    2017-09-09 04:05:00
119894    36505    916    2017-09-09 09:58:00    2017-09-09 09:58:00
119895    36506    888    2017-09-09 09:39:00    2017-09-09 09:39:00
119896    36506    959    2017-09-09 23:30:00    2017-09-09 23:30:00
119897    36506    646    2017-09-09 18:15:00    2017-09-09 18:15:00
119898    36506    710    2017-09-09 19:46:00    2017-09-09 19:46:00
119899    36506    796    2017-09-09 12:16:00    2017-09-09 12:16:00
119900    36507    599    2017-09-09 01:24:00    2017-09-09 01:24:00
119901    36507    888    2017-09-09 07:01:00    2017-09-09 07:01:00
119902    36507    566    2017-09-09 08:41:00    2017-09-09 08:41:00
119903    36507    896    2017-09-09 20:46:00    2017-09-09 20:46:00
119904    36507    911    2017-09-09 11:37:00    2017-09-09 11:37:00
119905    36508    477    2017-09-10 16:49:00    2017-09-10 16:49:00
119906    36508    677    2017-09-10 03:42:00    2017-09-10 03:42:00
119907    36508    711    2017-09-10 20:12:00    2017-09-10 20:12:00
119908    36508    878    2017-09-10 09:10:00    2017-09-10 09:10:00
119909    36508    809    2017-09-10 01:21:00    2017-09-10 01:21:00
119910    36509    515    2017-09-10 11:55:00    2017-09-10 11:55:00
119911    36509    697    2017-09-10 17:38:00    2017-09-10 17:38:00
119912    36509    951    2017-09-10 21:28:00    2017-09-10 21:28:00
119913    36509    780    2017-09-10 02:45:00    2017-09-10 02:45:00
119914    36509    643    2017-09-10 14:46:00    2017-09-10 14:46:00
119915    36510    930    2017-09-10 17:52:00    2017-09-10 17:52:00
119916    36510    686    2017-09-10 11:29:00    2017-09-10 11:29:00
119917    36510    707    2017-09-10 03:50:00    2017-09-10 03:50:00
119918    36510    706    2017-09-10 11:58:00    2017-09-10 11:58:00
119919    36510    891    2017-09-10 13:31:00    2017-09-10 13:31:00
119920    36511    618    2017-09-10 10:49:00    2017-09-10 10:49:00
119921    36511    567    2017-09-10 01:38:00    2017-09-10 01:38:00
119922    36511    837    2017-09-10 06:48:00    2017-09-10 06:48:00
119923    36511    910    2017-09-10 07:04:00    2017-09-10 07:04:00
119924    36511    649    2017-09-10 04:40:00    2017-09-10 04:40:00
119925    36512    884    2017-09-10 18:27:00    2017-09-10 18:27:00
119926    36512    497    2017-09-10 07:15:00    2017-09-10 07:15:00
119927    36512    602    2017-09-10 20:56:00    2017-09-10 20:56:00
119928    36512    629    2017-09-10 22:27:00    2017-09-10 22:27:00
119929    36512    731    2017-09-10 10:05:00    2017-09-10 10:05:00
119930    36513    505    2017-09-10 03:49:00    2017-09-10 03:49:00
119931    36513    954    2017-09-10 19:24:00    2017-09-10 19:24:00
119932    36513    653    2017-09-10 23:18:00    2017-09-10 23:18:00
119933    36513    495    2017-09-10 22:20:00    2017-09-10 22:20:00
119934    36513    497    2017-09-10 04:56:00    2017-09-10 04:56:00
119935    36514    894    2017-09-10 10:51:00    2017-09-10 10:51:00
119936    36514    703    2017-09-10 02:07:00    2017-09-10 02:07:00
119937    36514    663    2017-09-10 19:12:00    2017-09-10 19:12:00
119938    36514    716    2017-09-10 21:07:00    2017-09-10 21:07:00
119939    36514    499    2017-09-10 21:38:00    2017-09-10 21:38:00
119940    36515    831    2017-09-10 14:58:00    2017-09-10 14:58:00
119941    36515    875    2017-09-10 05:10:00    2017-09-10 05:10:00
119942    36515    804    2017-09-10 21:59:00    2017-09-10 21:59:00
119943    36515    480    2017-09-10 06:23:00    2017-09-10 06:23:00
119944    36515    527    2017-09-10 13:05:00    2017-09-10 13:05:00
119945    36516    649    2017-09-10 01:00:00    2017-09-10 01:00:00
119946    36516    600    2017-09-10 23:13:00    2017-09-10 23:13:00
119947    36516    663    2017-09-10 03:23:00    2017-09-10 03:23:00
119948    36516    678    2017-09-10 23:51:00    2017-09-10 23:51:00
119949    36516    715    2017-09-10 02:54:00    2017-09-10 02:54:00
119950    36517    848    2017-09-10 10:43:00    2017-09-10 10:43:00
119951    36517    882    2017-09-10 08:36:00    2017-09-10 08:36:00
119952    36517    930    2017-09-10 01:22:00    2017-09-10 01:22:00
119953    36517    694    2017-09-10 17:22:00    2017-09-10 17:22:00
119954    36517    937    2017-09-10 06:39:00    2017-09-10 06:39:00
119955    36518    558    2017-09-10 10:54:00    2017-09-10 10:54:00
119956    36518    466    2017-09-10 21:00:00    2017-09-10 21:00:00
119957    36518    822    2017-09-10 15:42:00    2017-09-10 15:42:00
119958    36518    624    2017-09-10 05:04:00    2017-09-10 05:04:00
119959    36518    853    2017-09-10 11:25:00    2017-09-10 11:25:00
119960    36519    721    2017-09-10 19:52:00    2017-09-10 19:52:00
119961    36519    670    2017-09-10 07:53:00    2017-09-10 07:53:00
119962    36519    465    2017-09-10 14:59:00    2017-09-10 14:59:00
119963    36519    719    2017-09-10 21:40:00    2017-09-10 21:40:00
119964    36519    632    2017-09-10 08:35:00    2017-09-10 08:35:00
119965    36520    920    2017-09-10 02:51:00    2017-09-10 02:51:00
119966    36520    850    2017-09-10 23:53:00    2017-09-10 23:53:00
119967    36520    796    2017-09-10 02:36:00    2017-09-10 02:36:00
119968    36520    916    2017-09-10 17:33:00    2017-09-10 17:33:00
119969    36520    661    2017-09-10 01:45:00    2017-09-10 01:45:00
119970    36521    588    2017-09-10 18:23:00    2017-09-10 18:23:00
119971    36521    777    2017-09-10 21:43:00    2017-09-10 21:43:00
119972    36521    624    2017-09-10 01:57:00    2017-09-10 01:57:00
119973    36521    875    2017-09-10 15:12:00    2017-09-10 15:12:00
119974    36521    507    2017-09-10 08:26:00    2017-09-10 08:26:00
119975    36522    867    2017-09-10 15:06:00    2017-09-10 15:06:00
119976    36522    558    2017-09-10 09:04:00    2017-09-10 09:04:00
119977    36522    684    2017-09-10 07:46:00    2017-09-10 07:46:00
119978    36522    958    2017-09-10 10:07:00    2017-09-10 10:07:00
119979    36522    641    2017-09-10 18:20:00    2017-09-10 18:20:00
119980    36523    567    2017-09-10 10:37:00    2017-09-10 10:37:00
119981    36523    883    2017-09-10 08:42:00    2017-09-10 08:42:00
119982    36523    961    2017-09-10 12:39:00    2017-09-10 12:39:00
119983    36523    502    2017-09-10 10:08:00    2017-09-10 10:08:00
119984    36523    895    2017-09-10 23:31:00    2017-09-10 23:31:00
119985    36524    803    2017-09-10 21:21:00    2017-09-10 21:21:00
119986    36524    613    2017-09-10 09:39:00    2017-09-10 09:39:00
119987    36524    715    2017-09-10 13:14:00    2017-09-10 13:14:00
119988    36524    793    2017-09-10 16:45:00    2017-09-10 16:45:00
119989    36524    469    2017-09-10 18:31:00    2017-09-10 18:31:00
119990    36525    583    2017-09-10 16:18:00    2017-09-10 16:18:00
119991    36525    736    2017-09-10 12:11:00    2017-09-10 12:11:00
119992    36525    487    2017-09-10 20:24:00    2017-09-10 20:24:00
119993    36525    685    2017-09-10 22:01:00    2017-09-10 22:01:00
119994    36525    664    2017-09-10 20:24:00    2017-09-10 20:24:00
119995    36526    493    2017-09-10 12:21:00    2017-09-10 12:21:00
119996    36526    705    2017-09-10 17:55:00    2017-09-10 17:55:00
119997    36526    851    2017-09-10 19:21:00    2017-09-10 19:21:00
119998    36526    948    2017-09-10 23:40:00    2017-09-10 23:40:00
119999    36526    741    2017-09-10 19:21:00    2017-09-10 19:21:00
120000    36527    658    2017-09-10 01:54:00    2017-09-10 01:54:00
120001    36527    861    2017-09-10 07:17:00    2017-09-10 07:17:00
120002    36527    536    2017-09-10 21:01:00    2017-09-10 21:01:00
120003    36527    819    2017-09-10 03:06:00    2017-09-10 03:06:00
120004    36527    961    2017-09-10 05:36:00    2017-09-10 05:36:00
120005    36528    813    2017-09-10 12:12:00    2017-09-10 12:12:00
120006    36528    471    2017-09-10 03:00:00    2017-09-10 03:00:00
120007    36528    956    2017-09-10 09:28:00    2017-09-10 09:28:00
120008    36528    936    2017-09-10 06:28:00    2017-09-10 06:28:00
120009    36528    501    2017-09-10 07:08:00    2017-09-10 07:08:00
120010    36529    666    2017-09-10 21:59:00    2017-09-10 21:59:00
120011    36529    795    2017-09-10 19:55:00    2017-09-10 19:55:00
120012    36529    910    2017-09-10 18:28:00    2017-09-10 18:28:00
120013    36529    551    2017-09-10 11:36:00    2017-09-10 11:36:00
120014    36529    715    2017-09-10 04:20:00    2017-09-10 04:20:00
120015    36530    815    2017-09-10 15:10:00    2017-09-10 15:10:00
120016    36530    490    2017-09-10 20:31:00    2017-09-10 20:31:00
120017    36530    847    2017-09-10 04:50:00    2017-09-10 04:50:00
120018    36530    655    2017-09-10 07:12:00    2017-09-10 07:12:00
120019    36530    558    2017-09-10 17:06:00    2017-09-10 17:06:00
120020    36531    582    2017-09-10 16:58:00    2017-09-10 16:58:00
120021    36531    649    2017-09-10 10:23:00    2017-09-10 10:23:00
120022    36531    757    2017-09-10 21:27:00    2017-09-10 21:27:00
120023    36531    683    2017-09-10 08:58:00    2017-09-10 08:58:00
120024    36531    490    2017-09-10 23:45:00    2017-09-10 23:45:00
120025    36532    568    2017-09-10 15:41:00    2017-09-10 15:41:00
120026    36532    631    2017-09-10 01:03:00    2017-09-10 01:03:00
120027    36532    910    2017-09-10 09:10:00    2017-09-10 09:10:00
120028    36532    630    2017-09-10 02:28:00    2017-09-10 02:28:00
120029    36532    503    2017-09-10 06:43:00    2017-09-10 06:43:00
120030    36533    639    2017-09-10 21:27:00    2017-09-10 21:27:00
120031    36533    690    2017-09-10 16:52:00    2017-09-10 16:52:00
120032    36533    809    2017-09-10 15:00:00    2017-09-10 15:00:00
120033    36533    829    2017-09-10 19:01:00    2017-09-10 19:01:00
120034    36533    737    2017-09-10 13:30:00    2017-09-10 13:30:00
120035    36534    562    2017-09-10 01:17:00    2017-09-10 01:17:00
120036    36534    946    2017-09-10 22:36:00    2017-09-10 22:36:00
120037    36534    850    2017-09-10 01:31:00    2017-09-10 01:31:00
120038    36534    845    2017-09-10 16:44:00    2017-09-10 16:44:00
120039    36534    721    2017-09-10 03:56:00    2017-09-10 03:56:00
120040    36535    874    2017-09-10 08:54:00    2017-09-10 08:54:00
120041    36535    742    2017-09-10 17:35:00    2017-09-10 17:35:00
120042    36535    881    2017-09-10 13:43:00    2017-09-10 13:43:00
120043    36535    765    2017-09-10 16:32:00    2017-09-10 16:32:00
120044    36535    726    2017-09-10 16:42:00    2017-09-10 16:42:00
120045    36536    698    2017-09-10 20:55:00    2017-09-10 20:55:00
120046    36536    793    2017-09-10 11:00:00    2017-09-10 11:00:00
120047    36536    715    2017-09-10 09:34:00    2017-09-10 09:34:00
120048    36536    938    2017-09-10 09:45:00    2017-09-10 09:45:00
120049    36536    496    2017-09-10 12:06:00    2017-09-10 12:06:00
120050    36537    723    2017-09-10 01:52:00    2017-09-10 01:52:00
120051    36537    672    2017-09-10 20:14:00    2017-09-10 20:14:00
120052    36537    831    2017-09-10 08:26:00    2017-09-10 08:26:00
120053    36537    841    2017-09-10 18:33:00    2017-09-10 18:33:00
120054    36537    574    2017-09-10 14:50:00    2017-09-10 14:50:00
120055    36538    466    2017-09-10 18:12:00    2017-09-10 18:12:00
120056    36538    909    2017-09-10 04:25:00    2017-09-10 04:25:00
120057    36538    917    2017-09-10 02:24:00    2017-09-10 02:24:00
120058    36538    572    2017-09-10 12:03:00    2017-09-10 12:03:00
120059    36538    698    2017-09-10 05:57:00    2017-09-10 05:57:00
120060    36539    543    2017-09-10 13:14:00    2017-09-10 13:14:00
120061    36539    875    2017-09-10 19:54:00    2017-09-10 19:54:00
120062    36539    665    2017-09-10 17:43:00    2017-09-10 17:43:00
120063    36539    712    2017-09-10 11:43:00    2017-09-10 11:43:00
120064    36539    866    2017-09-10 06:56:00    2017-09-10 06:56:00
120065    36540    586    2017-09-10 18:06:00    2017-09-10 18:06:00
120066    36540    816    2017-09-10 07:56:00    2017-09-10 07:56:00
120067    36540    621    2017-09-10 09:01:00    2017-09-10 09:01:00
120068    36540    861    2017-09-10 22:57:00    2017-09-10 22:57:00
120069    36540    466    2017-09-10 06:00:00    2017-09-10 06:00:00
120070    36541    831    2017-09-10 13:51:00    2017-09-10 13:51:00
120071    36541    741    2017-09-10 04:08:00    2017-09-10 04:08:00
120072    36541    766    2017-09-10 10:09:00    2017-09-10 10:09:00
120073    36541    773    2017-09-10 23:39:00    2017-09-10 23:39:00
120074    36541    728    2017-09-10 07:41:00    2017-09-10 07:41:00
120075    36542    866    2017-09-10 15:38:00    2017-09-10 15:38:00
120076    36542    564    2017-09-10 08:43:00    2017-09-10 08:43:00
120077    36542    494    2017-09-10 21:03:00    2017-09-10 21:03:00
120078    36542    530    2017-09-10 06:03:00    2017-09-10 06:03:00
120079    36542    674    2017-09-10 15:23:00    2017-09-10 15:23:00
120080    36543    768    2017-09-10 03:19:00    2017-09-10 03:19:00
120081    36543    573    2017-09-10 06:23:00    2017-09-10 06:23:00
120082    36543    735    2017-09-10 10:00:00    2017-09-10 10:00:00
120083    36543    875    2017-09-10 01:51:00    2017-09-10 01:51:00
120084    36543    700    2017-09-10 11:49:00    2017-09-10 11:49:00
120085    36544    882    2017-09-10 13:50:00    2017-09-10 13:50:00
120086    36544    569    2017-09-10 10:41:00    2017-09-10 10:41:00
120087    36544    644    2017-09-10 04:00:00    2017-09-10 04:00:00
120088    36544    577    2017-09-10 03:23:00    2017-09-10 03:23:00
120089    36544    902    2017-09-10 20:54:00    2017-09-10 20:54:00
120090    36545    926    2017-09-10 02:46:00    2017-09-10 02:46:00
120091    36545    571    2017-09-10 04:30:00    2017-09-10 04:30:00
120092    36545    952    2017-09-10 10:22:00    2017-09-10 10:22:00
120093    36545    788    2017-09-10 20:04:00    2017-09-10 20:04:00
120094    36545    706    2017-09-10 23:41:00    2017-09-10 23:41:00
120095    36546    570    2017-09-10 03:19:00    2017-09-10 03:19:00
120096    36546    949    2017-09-10 19:00:00    2017-09-10 19:00:00
120097    36546    879    2017-09-10 02:46:00    2017-09-10 02:46:00
120098    36546    545    2017-09-10 10:10:00    2017-09-10 10:10:00
120099    36546    647    2017-09-10 03:18:00    2017-09-10 03:18:00
120100    36547    932    2017-09-10 15:22:00    2017-09-10 15:22:00
120101    36547    877    2017-09-10 21:13:00    2017-09-10 21:13:00
120102    36547    720    2017-09-10 09:38:00    2017-09-10 09:38:00
120103    36547    923    2017-09-10 17:30:00    2017-09-10 17:30:00
120104    36547    577    2017-09-10 14:31:00    2017-09-10 14:31:00
120105    36548    776    2017-09-10 15:16:00    2017-09-10 15:16:00
120106    36548    492    2017-09-10 11:41:00    2017-09-10 11:41:00
120107    36548    649    2017-09-10 07:09:00    2017-09-10 07:09:00
120108    36548    548    2017-09-10 10:49:00    2017-09-10 10:49:00
120109    36548    723    2017-09-10 09:18:00    2017-09-10 09:18:00
120110    36549    596    2017-09-10 13:54:00    2017-09-10 13:54:00
120111    36549    702    2017-09-10 09:19:00    2017-09-10 09:19:00
120112    36549    594    2017-09-10 15:36:00    2017-09-10 15:36:00
120113    36549    865    2017-09-10 16:30:00    2017-09-10 16:30:00
120114    36549    952    2017-09-10 11:54:00    2017-09-10 11:54:00
120115    36550    839    2017-09-10 05:05:00    2017-09-10 05:05:00
120116    36550    581    2017-09-10 16:55:00    2017-09-10 16:55:00
120117    36550    941    2017-09-10 19:07:00    2017-09-10 19:07:00
120118    36550    594    2017-09-10 09:13:00    2017-09-10 09:13:00
120119    36550    561    2017-09-10 15:48:00    2017-09-10 15:48:00
120120    36551    526    2017-09-10 19:01:00    2017-09-10 19:01:00
120121    36551    873    2017-09-10 09:58:00    2017-09-10 09:58:00
120122    36551    789    2017-09-10 06:30:00    2017-09-10 06:30:00
120123    36551    783    2017-09-10 05:07:00    2017-09-10 05:07:00
120124    36551    743    2017-09-10 04:47:00    2017-09-10 04:47:00
120125    36552    769    2017-09-11 13:48:00    2017-09-11 13:48:00
120126    36552    698    2017-09-11 02:50:00    2017-09-11 02:50:00
120127    36552    956    2017-09-11 04:32:00    2017-09-11 04:32:00
120128    36552    737    2017-09-11 02:52:00    2017-09-11 02:52:00
120129    36552    762    2017-09-11 11:04:00    2017-09-11 11:04:00
120130    36553    565    2017-09-11 12:44:00    2017-09-11 12:44:00
120131    36553    728    2017-09-11 16:15:00    2017-09-11 16:15:00
120132    36553    729    2017-09-11 08:52:00    2017-09-11 08:52:00
120133    36553    744    2017-09-11 11:33:00    2017-09-11 11:33:00
120134    36553    894    2017-09-11 02:01:00    2017-09-11 02:01:00
120135    36554    652    2017-09-11 14:50:00    2017-09-11 14:50:00
120136    36554    626    2017-09-11 13:53:00    2017-09-11 13:53:00
120137    36554    904    2017-09-11 08:10:00    2017-09-11 08:10:00
120138    36554    946    2017-09-11 10:58:00    2017-09-11 10:58:00
120139    36554    961    2017-09-11 18:53:00    2017-09-11 18:53:00
120140    36555    525    2017-09-11 09:23:00    2017-09-11 09:23:00
120141    36555    616    2017-09-11 19:30:00    2017-09-11 19:30:00
120142    36555    590    2017-09-11 19:40:00    2017-09-11 19:40:00
120143    36555    824    2017-09-11 06:31:00    2017-09-11 06:31:00
120144    36555    951    2017-09-11 10:06:00    2017-09-11 10:06:00
120145    36556    689    2017-09-11 17:10:00    2017-09-11 17:10:00
120146    36556    768    2017-09-11 14:09:00    2017-09-11 14:09:00
120147    36556    530    2017-09-11 02:41:00    2017-09-11 02:41:00
120148    36556    843    2017-09-11 22:47:00    2017-09-11 22:47:00
120149    36556    554    2017-09-11 15:33:00    2017-09-11 15:33:00
120150    36557    814    2017-09-11 14:34:00    2017-09-11 14:34:00
120151    36557    620    2017-09-11 06:14:00    2017-09-11 06:14:00
120152    36557    799    2017-09-11 20:15:00    2017-09-11 20:15:00
120153    36557    679    2017-09-11 07:39:00    2017-09-11 07:39:00
120154    36557    742    2017-09-11 02:35:00    2017-09-11 02:35:00
120155    36558    864    2017-09-11 20:50:00    2017-09-11 20:50:00
120156    36558    859    2017-09-11 13:52:00    2017-09-11 13:52:00
120157    36558    539    2017-09-11 12:13:00    2017-09-11 12:13:00
120158    36558    609    2017-09-11 21:39:00    2017-09-11 21:39:00
120159    36558    938    2017-09-11 21:23:00    2017-09-11 21:23:00
120160    36559    792    2017-09-11 08:52:00    2017-09-11 08:52:00
120161    36559    464    2017-09-11 08:16:00    2017-09-11 08:16:00
120162    36559    495    2017-09-11 02:13:00    2017-09-11 02:13:00
120163    36559    752    2017-09-11 17:49:00    2017-09-11 17:49:00
120164    36559    671    2017-09-11 20:47:00    2017-09-11 20:47:00
120165    36560    780    2017-09-11 11:00:00    2017-09-11 11:00:00
120166    36560    908    2017-09-11 10:31:00    2017-09-11 10:31:00
120167    36560    640    2017-09-11 01:06:00    2017-09-11 01:06:00
120168    36560    751    2017-09-11 16:33:00    2017-09-11 16:33:00
120169    36560    573    2017-09-11 01:29:00    2017-09-11 01:29:00
120170    36561    822    2017-09-11 23:39:00    2017-09-11 23:39:00
120171    36561    672    2017-09-11 14:38:00    2017-09-11 14:38:00
120172    36561    578    2017-09-11 03:23:00    2017-09-11 03:23:00
120173    36561    704    2017-09-11 19:10:00    2017-09-11 19:10:00
120174    36561    542    2017-09-11 04:45:00    2017-09-11 04:45:00
120175    36562    576    2017-09-11 11:17:00    2017-09-11 11:17:00
120176    36562    648    2017-09-11 02:42:00    2017-09-11 02:42:00
120177    36562    921    2017-09-11 13:02:00    2017-09-11 13:02:00
120178    36562    582    2017-09-11 22:43:00    2017-09-11 22:43:00
120179    36562    700    2017-09-11 22:13:00    2017-09-11 22:13:00
120180    36563    652    2017-09-11 19:13:00    2017-09-11 19:13:00
120181    36563    572    2017-09-11 04:46:00    2017-09-11 04:46:00
120182    36563    675    2017-09-11 14:56:00    2017-09-11 14:56:00
120183    36563    952    2017-09-11 13:08:00    2017-09-11 13:08:00
120184    36563    627    2017-09-11 18:57:00    2017-09-11 18:57:00
120185    36564    810    2017-09-11 01:08:00    2017-09-11 01:08:00
120186    36564    958    2017-09-11 04:45:00    2017-09-11 04:45:00
120187    36564    918    2017-09-11 15:49:00    2017-09-11 15:49:00
120188    36564    823    2017-09-11 18:31:00    2017-09-11 18:31:00
120189    36564    711    2017-09-11 10:39:00    2017-09-11 10:39:00
120190    36565    472    2017-09-11 04:40:00    2017-09-11 04:40:00
120191    36565    912    2017-09-11 02:12:00    2017-09-11 02:12:00
120192    36565    812    2017-09-11 15:19:00    2017-09-11 15:19:00
120193    36565    906    2017-09-11 17:56:00    2017-09-11 17:56:00
120194    36565    863    2017-09-11 15:49:00    2017-09-11 15:49:00
120195    36566    899    2017-09-11 15:51:00    2017-09-11 15:51:00
120196    36566    591    2017-09-11 17:56:00    2017-09-11 17:56:00
120197    36566    860    2017-09-11 06:59:00    2017-09-11 06:59:00
120198    36566    925    2017-09-11 20:21:00    2017-09-11 20:21:00
120199    36566    615    2017-09-11 20:55:00    2017-09-11 20:55:00
120200    36567    873    2017-09-11 01:48:00    2017-09-11 01:48:00
120201    36567    879    2017-09-11 11:22:00    2017-09-11 11:22:00
120202    36567    762    2017-09-11 18:09:00    2017-09-11 18:09:00
120203    36567    955    2017-09-11 10:32:00    2017-09-11 10:32:00
120204    36567    474    2017-09-11 10:04:00    2017-09-11 10:04:00
120205    36568    503    2017-09-11 15:34:00    2017-09-11 15:34:00
120206    36568    621    2017-09-11 11:24:00    2017-09-11 11:24:00
120207    36568    639    2017-09-11 10:46:00    2017-09-11 10:46:00
120208    36568    719    2017-09-11 22:30:00    2017-09-11 22:30:00
120209    36568    734    2017-09-11 17:50:00    2017-09-11 17:50:00
120210    36569    797    2017-09-11 19:53:00    2017-09-11 19:53:00
120211    36569    895    2017-09-11 10:41:00    2017-09-11 10:41:00
120212    36569    908    2017-09-11 21:47:00    2017-09-11 21:47:00
120213    36569    835    2017-09-11 11:17:00    2017-09-11 11:17:00
120214    36569    937    2017-09-11 22:02:00    2017-09-11 22:02:00
120215    36570    927    2017-09-11 17:51:00    2017-09-11 17:51:00
120216    36570    757    2017-09-11 07:03:00    2017-09-11 07:03:00
120217    36570    591    2017-09-11 14:41:00    2017-09-11 14:41:00
120218    36570    911    2017-09-11 18:14:00    2017-09-11 18:14:00
120219    36570    501    2017-09-11 08:12:00    2017-09-11 08:12:00
120220    36571    564    2017-09-11 10:21:00    2017-09-11 10:21:00
120221    36571    615    2017-09-11 07:03:00    2017-09-11 07:03:00
120222    36571    601    2017-09-11 05:43:00    2017-09-11 05:43:00
120223    36571    650    2017-09-11 06:40:00    2017-09-11 06:40:00
120224    36571    856    2017-09-11 23:27:00    2017-09-11 23:27:00
120225    36572    857    2017-09-11 02:22:00    2017-09-11 02:22:00
120226    36572    740    2017-09-11 15:20:00    2017-09-11 15:20:00
120227    36572    499    2017-09-11 10:35:00    2017-09-11 10:35:00
120228    36572    866    2017-09-11 11:00:00    2017-09-11 11:00:00
120229    36572    684    2017-09-11 16:53:00    2017-09-11 16:53:00
120230    36573    804    2017-09-11 23:36:00    2017-09-11 23:36:00
120231    36573    932    2017-09-11 16:34:00    2017-09-11 16:34:00
120232    36573    589    2017-09-11 01:10:00    2017-09-11 01:10:00
120233    36573    876    2017-09-11 01:07:00    2017-09-11 01:07:00
120234    36573    728    2017-09-11 22:17:00    2017-09-11 22:17:00
120235    36574    658    2017-09-11 17:18:00    2017-09-11 17:18:00
120236    36574    592    2017-09-11 20:17:00    2017-09-11 20:17:00
120237    36574    796    2017-09-11 11:40:00    2017-09-11 11:40:00
120238    36574    624    2017-09-11 09:45:00    2017-09-11 09:45:00
120239    36574    749    2017-09-11 21:53:00    2017-09-11 21:53:00
120240    36575    755    2017-09-11 06:10:00    2017-09-11 06:10:00
120241    36575    624    2017-09-11 07:32:00    2017-09-11 07:32:00
120242    36575    655    2017-09-11 08:26:00    2017-09-11 08:26:00
120243    36575    520    2017-09-11 06:43:00    2017-09-11 06:43:00
120244    36575    665    2017-09-11 13:04:00    2017-09-11 13:04:00
120245    36576    925    2017-09-11 04:20:00    2017-09-11 04:20:00
120246    36576    924    2017-09-11 16:33:00    2017-09-11 16:33:00
120247    36576    674    2017-09-11 13:32:00    2017-09-11 13:32:00
120248    36576    513    2017-09-11 02:20:00    2017-09-11 02:20:00
120249    36576    709    2017-09-11 17:26:00    2017-09-11 17:26:00
120250    36577    871    2017-09-11 12:29:00    2017-09-11 12:29:00
120251    36577    690    2017-09-11 01:38:00    2017-09-11 01:38:00
120252    36577    581    2017-09-11 18:01:00    2017-09-11 18:01:00
120253    36577    733    2017-09-11 18:34:00    2017-09-11 18:34:00
120254    36577    957    2017-09-11 04:38:00    2017-09-11 04:38:00
120255    36578    648    2017-09-11 18:58:00    2017-09-11 18:58:00
120256    36578    733    2017-09-11 20:48:00    2017-09-11 20:48:00
120257    36578    668    2017-09-11 09:48:00    2017-09-11 09:48:00
120258    36578    705    2017-09-11 22:53:00    2017-09-11 22:53:00
120259    36578    657    2017-09-11 23:49:00    2017-09-11 23:49:00
120260    36579    715    2017-09-11 12:36:00    2017-09-11 12:36:00
120261    36579    771    2017-09-11 01:32:00    2017-09-11 01:32:00
120262    36579    617    2017-09-11 10:07:00    2017-09-11 10:07:00
120263    36579    561    2017-09-11 12:50:00    2017-09-11 12:50:00
120264    36579    501    2017-09-11 20:37:00    2017-09-11 20:37:00
120265    36580    569    2017-09-11 01:55:00    2017-09-11 01:55:00
120266    36580    820    2017-09-11 11:32:00    2017-09-11 11:32:00
120267    36580    837    2017-09-11 13:15:00    2017-09-11 13:15:00
120268    36580    819    2017-09-11 03:05:00    2017-09-11 03:05:00
120269    36580    916    2017-09-11 22:09:00    2017-09-11 22:09:00
120270    36581    522    2017-09-11 10:05:00    2017-09-11 10:05:00
120271    36581    830    2017-09-11 19:45:00    2017-09-11 19:45:00
120272    36581    544    2017-09-11 08:14:00    2017-09-11 08:14:00
120273    36581    533    2017-09-11 20:38:00    2017-09-11 20:38:00
120274    36581    571    2017-09-11 12:02:00    2017-09-11 12:02:00
120275    36582    592    2017-09-11 03:36:00    2017-09-11 03:36:00
120276    36582    752    2017-09-11 02:04:00    2017-09-11 02:04:00
120277    36582    758    2017-09-11 17:00:00    2017-09-11 17:00:00
120278    36582    938    2017-09-11 13:42:00    2017-09-11 13:42:00
120279    36582    917    2017-09-11 01:24:00    2017-09-11 01:24:00
120280    36583    549    2017-09-11 17:34:00    2017-09-11 17:34:00
120281    36583    577    2017-09-11 14:12:00    2017-09-11 14:12:00
120282    36583    933    2017-09-11 14:03:00    2017-09-11 14:03:00
120283    36583    523    2017-09-11 16:55:00    2017-09-11 16:55:00
120284    36583    853    2017-09-11 03:07:00    2017-09-11 03:07:00
120285    36584    493    2017-09-11 19:18:00    2017-09-11 19:18:00
120286    36584    640    2017-09-11 07:22:00    2017-09-11 07:22:00
120287    36584    666    2017-09-11 13:56:00    2017-09-11 13:56:00
120288    36584    505    2017-09-11 19:44:00    2017-09-11 19:44:00
120289    36584    497    2017-09-11 04:06:00    2017-09-11 04:06:00
120290    36585    565    2017-09-11 15:14:00    2017-09-11 15:14:00
120291    36585    917    2017-09-11 22:59:00    2017-09-11 22:59:00
120292    36585    711    2017-09-11 08:06:00    2017-09-11 08:06:00
120293    36585    484    2017-09-11 13:41:00    2017-09-11 13:41:00
120294    36585    620    2017-09-11 22:04:00    2017-09-11 22:04:00
120295    36586    478    2017-09-11 23:30:00    2017-09-11 23:30:00
120296    36586    640    2017-09-11 13:30:00    2017-09-11 13:30:00
120297    36586    691    2017-09-11 11:05:00    2017-09-11 11:05:00
120298    36586    481    2017-09-11 17:50:00    2017-09-11 17:50:00
120299    36586    918    2017-09-11 02:47:00    2017-09-11 02:47:00
120300    36587    608    2017-09-11 23:58:00    2017-09-11 23:58:00
120301    36587    787    2017-09-11 16:07:00    2017-09-11 16:07:00
120302    36587    620    2017-09-11 16:45:00    2017-09-11 16:45:00
120303    36587    529    2017-09-11 02:23:00    2017-09-11 02:23:00
120304    36587    481    2017-09-11 16:00:00    2017-09-11 16:00:00
120305    36588    498    2017-09-11 22:08:00    2017-09-11 22:08:00
120306    36588    920    2017-09-11 19:05:00    2017-09-11 19:05:00
120307    36588    541    2017-09-11 09:56:00    2017-09-11 09:56:00
120308    36588    924    2017-09-11 15:02:00    2017-09-11 15:02:00
120309    36588    764    2017-09-11 16:19:00    2017-09-11 16:19:00
120310    36589    803    2017-09-11 15:24:00    2017-09-11 15:24:00
120311    36589    619    2017-09-11 22:42:00    2017-09-11 22:42:00
120312    36589    862    2017-09-11 19:42:00    2017-09-11 19:42:00
120313    36589    589    2017-09-11 16:36:00    2017-09-11 16:36:00
120314    36589    764    2017-09-11 21:14:00    2017-09-11 21:14:00
120315    36590    761    2017-09-11 23:04:00    2017-09-11 23:04:00
120316    36590    659    2017-09-11 01:09:00    2017-09-11 01:09:00
120317    36590    549    2017-09-11 02:32:00    2017-09-11 02:32:00
120318    36590    881    2017-09-11 19:36:00    2017-09-11 19:36:00
120319    36590    815    2017-09-11 19:00:00    2017-09-11 19:00:00
120320    36591    873    2017-09-11 13:01:00    2017-09-11 13:01:00
120321    36591    802    2017-09-11 20:09:00    2017-09-11 20:09:00
120322    36591    848    2017-09-11 18:44:00    2017-09-11 18:44:00
120323    36591    571    2017-09-11 20:49:00    2017-09-11 20:49:00
120324    36591    527    2017-09-11 19:54:00    2017-09-11 19:54:00
120325    36592    792    2017-09-11 10:01:00    2017-09-11 10:01:00
120326    36592    872    2017-09-11 09:03:00    2017-09-11 09:03:00
120327    36592    746    2017-09-11 11:45:00    2017-09-11 11:45:00
120328    36592    671    2017-09-11 08:44:00    2017-09-11 08:44:00
120329    36592    857    2017-09-11 17:17:00    2017-09-11 17:17:00
120330    36593    573    2017-09-11 08:14:00    2017-09-11 08:14:00
120331    36593    941    2017-09-11 16:54:00    2017-09-11 16:54:00
120332    36593    943    2017-09-11 04:38:00    2017-09-11 04:38:00
120333    36593    808    2017-09-11 02:34:00    2017-09-11 02:34:00
120334    36593    918    2017-09-11 19:41:00    2017-09-11 19:41:00
120335    36594    734    2017-09-11 08:34:00    2017-09-11 08:34:00
120336    36594    867    2017-09-11 11:29:00    2017-09-11 11:29:00
120337    36594    816    2017-09-11 15:05:00    2017-09-11 15:05:00
120338    36594    480    2017-09-11 10:02:00    2017-09-11 10:02:00
120339    36594    620    2017-09-11 09:59:00    2017-09-11 09:59:00
120340    36595    616    2017-09-11 18:49:00    2017-09-11 18:49:00
120341    36595    779    2017-09-11 16:04:00    2017-09-11 16:04:00
120342    36595    824    2017-09-11 19:18:00    2017-09-11 19:18:00
120343    36595    719    2017-09-11 03:30:00    2017-09-11 03:30:00
120344    36595    592    2017-09-11 10:30:00    2017-09-11 10:30:00
120345    36596    662    2017-09-11 07:08:00    2017-09-11 07:08:00
120346    36596    888    2017-09-11 13:25:00    2017-09-11 13:25:00
120347    36596    877    2017-09-11 22:24:00    2017-09-11 22:24:00
120348    36596    872    2017-09-11 17:37:00    2017-09-11 17:37:00
120349    36596    662    2017-09-11 19:30:00    2017-09-11 19:30:00
120350    36597    549    2017-09-11 13:36:00    2017-09-11 13:36:00
120351    36597    876    2017-09-11 21:30:00    2017-09-11 21:30:00
120352    36597    809    2017-09-11 01:09:00    2017-09-11 01:09:00
120353    36597    492    2017-09-11 04:40:00    2017-09-11 04:40:00
120354    36597    641    2017-09-11 18:54:00    2017-09-11 18:54:00
120355    36598    570    2017-09-11 10:03:00    2017-09-11 10:03:00
120356    36598    736    2017-09-11 02:30:00    2017-09-11 02:30:00
120357    36598    748    2017-09-11 07:05:00    2017-09-11 07:05:00
120358    36598    623    2017-09-11 07:37:00    2017-09-11 07:37:00
120359    36598    640    2017-09-11 08:55:00    2017-09-11 08:55:00
120360    36599    849    2017-09-11 09:37:00    2017-09-11 09:37:00
120361    36599    670    2017-09-11 01:53:00    2017-09-11 01:53:00
120362    36599    800    2017-09-11 16:40:00    2017-09-11 16:40:00
120363    36599    518    2017-09-11 21:00:00    2017-09-11 21:00:00
120364    36599    766    2017-09-11 14:52:00    2017-09-11 14:52:00
120365    36600    504    2017-09-11 03:32:00    2017-09-11 03:32:00
120366    36600    522    2017-09-11 05:46:00    2017-09-11 05:46:00
120367    36600    800    2017-09-11 18:29:00    2017-09-11 18:29:00
120368    36600    869    2017-09-11 23:25:00    2017-09-11 23:25:00
120369    36600    740    2017-09-11 07:01:00    2017-09-11 07:01:00
120370    36601    869    2017-09-11 13:45:00    2017-09-11 13:45:00
120371    36601    956    2017-09-11 23:04:00    2017-09-11 23:04:00
120372    36601    816    2017-09-11 09:05:00    2017-09-11 09:05:00
120373    36601    950    2017-09-11 19:34:00    2017-09-11 19:34:00
120374    36601    869    2017-09-11 19:24:00    2017-09-11 19:24:00
120375    36602    472    2017-09-11 20:31:00    2017-09-11 20:31:00
120376    36602    496    2017-09-11 08:40:00    2017-09-11 08:40:00
120377    36602    534    2017-09-11 01:29:00    2017-09-11 01:29:00
120378    36602    880    2017-09-11 08:40:00    2017-09-11 08:40:00
120379    36602    823    2017-09-11 01:34:00    2017-09-11 01:34:00
120380    36603    584    2017-09-11 18:23:00    2017-09-11 18:23:00
120381    36603    743    2017-09-11 02:02:00    2017-09-11 02:02:00
120382    36603    800    2017-09-11 15:10:00    2017-09-11 15:10:00
120383    36603    755    2017-09-11 22:27:00    2017-09-11 22:27:00
120384    36603    524    2017-09-11 17:24:00    2017-09-11 17:24:00
120385    36604    871    2017-09-11 14:36:00    2017-09-11 14:36:00
120386    36604    893    2017-09-11 09:08:00    2017-09-11 09:08:00
120387    36604    803    2017-09-11 05:00:00    2017-09-11 05:00:00
120388    36604    960    2017-09-11 16:25:00    2017-09-11 16:25:00
120389    36604    617    2017-09-11 02:37:00    2017-09-11 02:37:00
120390    36605    860    2017-09-11 14:32:00    2017-09-11 14:32:00
120391    36605    786    2017-09-11 13:41:00    2017-09-11 13:41:00
120392    36605    628    2017-09-11 01:50:00    2017-09-11 01:50:00
120393    36605    913    2017-09-11 12:08:00    2017-09-11 12:08:00
120394    36605    889    2017-09-11 01:32:00    2017-09-11 01:32:00
120395    36606    937    2017-09-11 17:16:00    2017-09-11 17:16:00
120396    36606    929    2017-09-11 21:46:00    2017-09-11 21:46:00
120397    36606    903    2017-09-11 22:10:00    2017-09-11 22:10:00
120398    36606    537    2017-09-11 18:19:00    2017-09-11 18:19:00
120399    36606    799    2017-09-11 20:46:00    2017-09-11 20:46:00
120400    36607    822    2017-09-11 02:03:00    2017-09-11 02:03:00
120401    36607    756    2017-09-11 08:09:00    2017-09-11 08:09:00
120402    36607    748    2017-09-11 12:19:00    2017-09-11 12:19:00
120403    36607    842    2017-09-11 16:19:00    2017-09-11 16:19:00
120404    36607    854    2017-09-11 18:41:00    2017-09-11 18:41:00
120405    36608    624    2017-09-11 04:04:00    2017-09-11 04:04:00
120406    36608    848    2017-09-11 21:45:00    2017-09-11 21:45:00
120407    36608    879    2017-09-11 18:14:00    2017-09-11 18:14:00
120408    36608    695    2017-09-11 13:05:00    2017-09-11 13:05:00
120409    36608    899    2017-09-11 20:09:00    2017-09-11 20:09:00
120410    36609    722    2017-09-11 09:00:00    2017-09-11 09:00:00
120411    36609    938    2017-09-11 15:50:00    2017-09-11 15:50:00
120412    36609    636    2017-09-11 17:38:00    2017-09-11 17:38:00
120413    36609    531    2017-09-11 22:32:00    2017-09-11 22:32:00
120414    36609    635    2017-09-11 03:43:00    2017-09-11 03:43:00
120415    36610    591    2017-09-11 14:29:00    2017-09-11 14:29:00
120416    36610    645    2017-09-11 05:53:00    2017-09-11 05:53:00
120417    36610    804    2017-09-11 03:02:00    2017-09-11 03:02:00
120418    36610    583    2017-09-11 01:45:00    2017-09-11 01:45:00
120419    36610    870    2017-09-11 18:48:00    2017-09-11 18:48:00
120420    36611    512    2017-09-11 02:21:00    2017-09-11 02:21:00
120421    36611    533    2017-09-11 23:01:00    2017-09-11 23:01:00
120422    36611    805    2017-09-11 21:18:00    2017-09-11 21:18:00
120423    36611    902    2017-09-11 05:39:00    2017-09-11 05:39:00
120424    36611    555    2017-09-11 11:20:00    2017-09-11 11:20:00
120425    36612    587    2017-09-11 13:47:00    2017-09-11 13:47:00
120426    36612    664    2017-09-11 22:10:00    2017-09-11 22:10:00
120427    36612    653    2017-09-11 06:06:00    2017-09-11 06:06:00
120428    36612    523    2017-09-11 13:17:00    2017-09-11 13:17:00
120429    36612    859    2017-09-11 05:38:00    2017-09-11 05:38:00
120430    36613    626    2017-09-11 23:37:00    2017-09-11 23:37:00
120431    36613    689    2017-09-11 16:13:00    2017-09-11 16:13:00
120432    36613    595    2017-09-11 18:07:00    2017-09-11 18:07:00
120433    36613    536    2017-09-11 04:26:00    2017-09-11 04:26:00
120434    36613    555    2017-09-11 15:21:00    2017-09-11 15:21:00
120435    36614    778    2017-09-11 01:04:00    2017-09-11 01:04:00
120436    36614    480    2017-09-11 19:33:00    2017-09-11 19:33:00
120437    36614    565    2017-09-11 19:58:00    2017-09-11 19:58:00
120438    36614    899    2017-09-11 13:02:00    2017-09-11 13:02:00
120439    36614    611    2017-09-11 15:56:00    2017-09-11 15:56:00
120440    36615    912    2017-09-11 12:32:00    2017-09-11 12:32:00
120441    36615    586    2017-09-12 00:00:00    2017-09-12 00:00:00
120442    36615    578    2017-09-11 16:10:00    2017-09-11 16:10:00
120443    36615    631    2017-09-11 01:41:00    2017-09-11 01:41:00
120444    36615    622    2017-09-11 09:33:00    2017-09-11 09:33:00
120445    36616    717    2017-09-11 13:16:00    2017-09-11 13:16:00
120446    36616    877    2017-09-11 22:55:00    2017-09-11 22:55:00
120447    36616    811    2017-09-11 21:37:00    2017-09-11 21:37:00
120448    36616    739    2017-09-11 07:41:00    2017-09-11 07:41:00
120449    36616    547    2017-09-11 04:12:00    2017-09-11 04:12:00
120450    36617    535    2017-09-11 02:54:00    2017-09-11 02:54:00
120451    36617    766    2017-09-11 03:19:00    2017-09-11 03:19:00
120452    36617    832    2017-09-11 22:02:00    2017-09-11 22:02:00
120453    36617    838    2017-09-11 03:06:00    2017-09-11 03:06:00
120454    36617    745    2017-09-11 09:44:00    2017-09-11 09:44:00
120455    36618    619    2017-09-11 19:28:00    2017-09-11 19:28:00
120456    36618    817    2017-09-11 06:58:00    2017-09-11 06:58:00
120457    36618    494    2017-09-11 02:22:00    2017-09-11 02:22:00
120458    36618    780    2017-09-11 09:30:00    2017-09-11 09:30:00
120459    36618    862    2017-09-11 10:06:00    2017-09-11 10:06:00
120460    36619    728    2017-09-11 23:12:00    2017-09-11 23:12:00
120461    36619    758    2017-09-11 20:30:00    2017-09-11 20:30:00
120462    36619    827    2017-09-11 12:50:00    2017-09-11 12:50:00
120463    36619    740    2017-09-11 13:18:00    2017-09-11 13:18:00
120464    36619    798    2017-09-11 05:01:00    2017-09-11 05:01:00
120465    36620    566    2017-09-11 02:10:00    2017-09-11 02:10:00
120466    36620    554    2017-09-11 10:38:00    2017-09-11 10:38:00
120467    36620    906    2017-09-11 21:22:00    2017-09-11 21:22:00
120468    36620    875    2017-09-11 03:20:00    2017-09-11 03:20:00
120469    36620    946    2017-09-11 03:05:00    2017-09-11 03:05:00
120470    36621    529    2017-09-11 15:43:00    2017-09-11 15:43:00
120471    36621    756    2017-09-11 16:31:00    2017-09-11 16:31:00
120472    36621    772    2017-09-11 06:22:00    2017-09-11 06:22:00
120473    36621    477    2017-09-11 18:21:00    2017-09-11 18:21:00
120474    36621    925    2017-09-11 15:59:00    2017-09-11 15:59:00
120475    36622    706    2017-09-11 22:55:00    2017-09-11 22:55:00
120476    36622    484    2017-09-11 18:25:00    2017-09-11 18:25:00
120477    36622    671    2017-09-11 10:10:00    2017-09-11 10:10:00
120478    36622    569    2017-09-11 19:55:00    2017-09-11 19:55:00
120479    36622    585    2017-09-11 10:02:00    2017-09-11 10:02:00
120480    36623    872    2017-09-11 17:00:00    2017-09-11 17:00:00
120481    36623    524    2017-09-11 04:08:00    2017-09-11 04:08:00
120482    36623    727    2017-09-11 10:11:00    2017-09-11 10:11:00
120483    36623    513    2017-09-11 06:31:00    2017-09-11 06:31:00
120484    36623    961    2017-09-11 10:42:00    2017-09-11 10:42:00
120485    36624    732    2017-09-11 22:39:00    2017-09-11 22:39:00
120486    36624    602    2017-09-11 02:49:00    2017-09-11 02:49:00
120487    36624    783    2017-09-11 14:19:00    2017-09-11 14:19:00
120488    36624    918    2017-09-11 12:44:00    2017-09-11 12:44:00
120489    36624    669    2017-09-11 06:53:00    2017-09-11 06:53:00
120490    36625    932    2017-09-11 17:09:00    2017-09-11 17:09:00
120491    36625    809    2017-09-11 03:21:00    2017-09-11 03:21:00
120492    36625    946    2017-09-11 08:59:00    2017-09-11 08:59:00
120493    36625    891    2017-09-11 12:41:00    2017-09-11 12:41:00
120494    36625    781    2017-09-11 05:59:00    2017-09-11 05:59:00
120495    36626    846    2017-09-11 22:40:00    2017-09-11 22:40:00
120496    36626    646    2017-09-11 10:22:00    2017-09-11 10:22:00
120497    36626    597    2017-09-11 06:15:00    2017-09-11 06:15:00
120498    36626    862    2017-09-11 15:00:00    2017-09-11 15:00:00
120499    36626    486    2017-09-11 20:19:00    2017-09-11 20:19:00
120500    36627    881    2017-09-11 17:18:00    2017-09-11 17:18:00
120501    36627    852    2017-09-11 11:18:00    2017-09-11 11:18:00
120502    36627    524    2017-09-11 03:23:00    2017-09-11 03:23:00
120503    36627    771    2017-09-11 17:53:00    2017-09-11 17:53:00
120504    36627    893    2017-09-11 10:26:00    2017-09-11 10:26:00
120505    36628    935    2017-09-11 01:45:00    2017-09-11 01:45:00
120506    36628    858    2017-09-11 12:01:00    2017-09-11 12:01:00
120507    36628    901    2017-09-11 05:49:00    2017-09-11 05:49:00
120508    36628    707    2017-09-11 09:03:00    2017-09-11 09:03:00
120509    36628    742    2017-09-11 02:32:00    2017-09-11 02:32:00
120510    36629    616    2017-09-11 15:14:00    2017-09-11 15:14:00
120511    36629    842    2017-09-11 20:54:00    2017-09-11 20:54:00
120512    36629    571    2017-09-11 18:27:00    2017-09-11 18:27:00
120513    36629    640    2017-09-11 13:17:00    2017-09-11 13:17:00
120514    36629    833    2017-09-11 09:13:00    2017-09-11 09:13:00
120515    36630    547    2017-09-11 17:24:00    2017-09-11 17:24:00
120516    36630    527    2017-09-11 12:18:00    2017-09-11 12:18:00
120517    36630    884    2017-09-11 03:47:00    2017-09-11 03:47:00
120518    36630    613    2017-09-11 10:35:00    2017-09-11 10:35:00
120519    36630    885    2017-09-11 20:51:00    2017-09-11 20:51:00
120520    36631    470    2017-09-12 06:08:00    2017-09-12 06:08:00
120521    36631    886    2017-09-12 22:03:00    2017-09-12 22:03:00
120522    36631    517    2017-09-12 19:32:00    2017-09-12 19:32:00
120523    36631    913    2017-09-12 14:02:00    2017-09-12 14:02:00
120524    36631    786    2017-09-12 11:24:00    2017-09-12 11:24:00
120525    36632    947    2017-09-12 08:39:00    2017-09-12 08:39:00
120526    36632    766    2017-09-12 15:00:00    2017-09-12 15:00:00
120527    36632    546    2017-09-12 22:22:00    2017-09-12 22:22:00
120528    36632    712    2017-09-12 12:57:00    2017-09-12 12:57:00
120529    36632    603    2017-09-12 10:07:00    2017-09-12 10:07:00
120530    36633    692    2017-09-12 07:52:00    2017-09-12 07:52:00
120531    36633    898    2017-09-12 23:52:00    2017-09-12 23:52:00
120532    36633    925    2017-09-12 14:48:00    2017-09-12 14:48:00
120533    36633    868    2017-09-12 08:36:00    2017-09-12 08:36:00
120534    36633    558    2017-09-12 12:08:00    2017-09-12 12:08:00
120535    36634    560    2017-09-12 10:00:00    2017-09-12 10:00:00
120536    36634    827    2017-09-12 23:27:00    2017-09-12 23:27:00
120537    36634    486    2017-09-12 14:31:00    2017-09-12 14:31:00
120538    36634    954    2017-09-12 22:52:00    2017-09-12 22:52:00
120539    36634    956    2017-09-12 11:08:00    2017-09-12 11:08:00
120540    36635    883    2017-09-12 13:14:00    2017-09-12 13:14:00
120541    36635    484    2017-09-12 11:41:00    2017-09-12 11:41:00
120542    36635    780    2017-09-12 23:55:00    2017-09-12 23:55:00
120543    36635    756    2017-09-12 18:00:00    2017-09-12 18:00:00
120544    36635    888    2017-09-12 17:41:00    2017-09-12 17:41:00
120545    36636    543    2017-09-13 14:26:00    2017-09-13 14:26:00
120546    36636    850    2017-09-13 16:18:00    2017-09-13 16:18:00
120547    36636    638    2017-09-13 15:26:00    2017-09-13 15:26:00
120548    36636    826    2017-09-13 01:52:00    2017-09-13 01:52:00
120549    36636    922    2017-09-13 11:26:00    2017-09-13 11:26:00
120550    36637    639    2017-09-13 16:15:00    2017-09-13 16:15:00
120551    36637    758    2017-09-13 07:25:00    2017-09-13 07:25:00
120552    36637    597    2017-09-13 12:41:00    2017-09-13 12:41:00
120553    36637    501    2017-09-13 01:40:00    2017-09-13 01:40:00
120554    36637    604    2017-09-13 20:34:00    2017-09-13 20:34:00
120555    36638    555    2017-09-13 05:11:00    2017-09-13 05:11:00
120556    36638    777    2017-09-13 13:53:00    2017-09-13 13:53:00
120557    36638    651    2017-09-13 10:20:00    2017-09-13 10:20:00
120558    36638    797    2017-09-13 20:38:00    2017-09-13 20:38:00
120559    36638    947    2017-09-13 06:25:00    2017-09-13 06:25:00
120560    36639    950    2017-09-13 08:04:00    2017-09-13 08:04:00
120561    36639    928    2017-09-13 11:07:00    2017-09-13 11:07:00
120562    36639    524    2017-09-13 14:56:00    2017-09-13 14:56:00
120563    36639    830    2017-09-13 15:43:00    2017-09-13 15:43:00
120564    36639    760    2017-09-13 03:01:00    2017-09-13 03:01:00
120565    36640    556    2017-09-13 23:19:00    2017-09-13 23:19:00
120566    36640    471    2017-09-13 23:56:00    2017-09-13 23:56:00
120567    36640    576    2017-09-13 22:08:00    2017-09-13 22:08:00
120568    36640    749    2017-09-13 09:50:00    2017-09-13 09:50:00
120569    36640    697    2017-09-13 03:17:00    2017-09-13 03:17:00
120570    36641    828    2017-09-13 04:27:00    2017-09-13 04:27:00
120571    36641    664    2017-09-13 23:30:00    2017-09-13 23:30:00
120572    36641    593    2017-09-13 07:34:00    2017-09-13 07:34:00
120573    36641    717    2017-09-13 19:53:00    2017-09-13 19:53:00
120574    36641    764    2017-09-13 19:00:00    2017-09-13 19:00:00
120575    36642    811    2017-09-13 02:05:00    2017-09-13 02:05:00
120576    36642    670    2017-09-13 08:15:00    2017-09-13 08:15:00
120577    36642    490    2017-09-13 14:29:00    2017-09-13 14:29:00
120578    36642    851    2017-09-13 15:20:00    2017-09-13 15:20:00
120579    36642    819    2017-09-13 16:54:00    2017-09-13 16:54:00
120580    36643    588    2017-09-13 19:54:00    2017-09-13 19:54:00
120581    36643    498    2017-09-13 16:53:00    2017-09-13 16:53:00
120582    36643    956    2017-09-13 05:45:00    2017-09-13 05:45:00
120583    36643    523    2017-09-13 17:16:00    2017-09-13 17:16:00
120584    36643    954    2017-09-13 21:07:00    2017-09-13 21:07:00
120585    36644    637    2017-09-13 16:35:00    2017-09-13 16:35:00
120586    36644    954    2017-09-13 14:54:00    2017-09-13 14:54:00
120587    36644    909    2017-09-13 03:10:00    2017-09-13 03:10:00
120588    36644    960    2017-09-13 23:43:00    2017-09-13 23:43:00
120589    36644    849    2017-09-13 16:44:00    2017-09-13 16:44:00
120590    36645    676    2017-09-13 17:27:00    2017-09-13 17:27:00
120591    36645    476    2017-09-13 10:15:00    2017-09-13 10:15:00
120592    36645    799    2017-09-13 14:46:00    2017-09-13 14:46:00
120593    36645    635    2017-09-13 17:17:00    2017-09-13 17:17:00
120594    36645    569    2017-09-13 15:29:00    2017-09-13 15:29:00
120595    36646    606    2017-09-13 03:18:00    2017-09-13 03:18:00
120596    36646    876    2017-09-13 06:08:00    2017-09-13 06:08:00
120597    36646    957    2017-09-13 02:42:00    2017-09-13 02:42:00
120598    36646    959    2017-09-13 15:04:00    2017-09-13 15:04:00
120599    36646    757    2017-09-13 10:55:00    2017-09-13 10:55:00
120600    36647    784    2017-09-13 13:52:00    2017-09-13 13:52:00
120601    36647    470    2017-09-13 02:35:00    2017-09-13 02:35:00
120602    36647    934    2017-09-13 14:11:00    2017-09-13 14:11:00
120603    36647    583    2017-09-13 17:42:00    2017-09-13 17:42:00
120604    36647    935    2017-09-13 08:55:00    2017-09-13 08:55:00
120605    36648    500    2017-09-13 10:02:00    2017-09-13 10:02:00
120606    36648    534    2017-09-13 12:34:00    2017-09-13 12:34:00
120607    36648    661    2017-09-13 07:21:00    2017-09-13 07:21:00
120608    36648    917    2017-09-13 05:41:00    2017-09-13 05:41:00
120609    36648    624    2017-09-13 22:15:00    2017-09-13 22:15:00
120610    36649    800    2017-09-13 10:23:00    2017-09-13 10:23:00
120611    36649    598    2017-09-13 18:51:00    2017-09-13 18:51:00
120612    36649    690    2017-09-13 01:35:00    2017-09-13 01:35:00
120613    36649    864    2017-09-13 01:22:00    2017-09-13 01:22:00
120614    36649    723    2017-09-13 18:46:00    2017-09-13 18:46:00
120615    36650    581    2017-09-13 02:42:00    2017-09-13 02:42:00
120616    36650    586    2017-09-13 12:41:00    2017-09-13 12:41:00
120617    36650    688    2017-09-13 04:11:00    2017-09-13 04:11:00
120618    36650    668    2017-09-13 15:56:00    2017-09-13 15:56:00
120619    36650    520    2017-09-13 16:31:00    2017-09-13 16:31:00
120620    36651    591    2017-09-13 12:30:00    2017-09-13 12:30:00
120621    36651    605    2017-09-13 05:15:00    2017-09-13 05:15:00
120622    36651    627    2017-09-13 01:42:00    2017-09-13 01:42:00
120623    36651    576    2017-09-13 02:18:00    2017-09-13 02:18:00
120624    36651    716    2017-09-13 14:03:00    2017-09-13 14:03:00
120625    36652    595    2017-09-13 12:59:00    2017-09-13 12:59:00
120626    36652    744    2017-09-13 09:24:00    2017-09-13 09:24:00
120627    36652    911    2017-09-13 10:13:00    2017-09-13 10:13:00
120628    36652    809    2017-09-13 02:46:00    2017-09-13 02:46:00
120629    36652    545    2017-09-13 10:38:00    2017-09-13 10:38:00
120630    36653    688    2017-09-13 02:36:00    2017-09-13 02:36:00
120631    36653    505    2017-09-13 13:37:00    2017-09-13 13:37:00
120632    36653    512    2017-09-13 14:12:00    2017-09-13 14:12:00
120633    36653    858    2017-09-13 14:33:00    2017-09-13 14:33:00
120634    36653    700    2017-09-13 13:48:00    2017-09-13 13:48:00
120635    36654    490    2017-09-13 02:14:00    2017-09-13 02:14:00
120636    36654    721    2017-09-13 05:41:00    2017-09-13 05:41:00
120637    36654    629    2017-09-13 23:37:00    2017-09-13 23:37:00
120638    36654    884    2017-09-13 18:52:00    2017-09-13 18:52:00
120639    36654    837    2017-09-13 10:42:00    2017-09-13 10:42:00
120640    36655    816    2017-09-13 19:52:00    2017-09-13 19:52:00
120641    36655    696    2017-09-13 23:33:00    2017-09-13 23:33:00
120642    36655    580    2017-09-13 14:08:00    2017-09-13 14:08:00
120643    36655    701    2017-09-13 16:43:00    2017-09-13 16:43:00
120644    36655    866    2017-09-13 23:34:00    2017-09-13 23:34:00
120645    36656    946    2017-09-13 18:28:00    2017-09-13 18:28:00
120646    36656    862    2017-09-13 10:33:00    2017-09-13 10:33:00
120647    36656    767    2017-09-13 20:01:00    2017-09-13 20:01:00
120648    36656    903    2017-09-13 11:25:00    2017-09-13 11:25:00
120649    36656    883    2017-09-13 16:24:00    2017-09-13 16:24:00
120650    36657    786    2017-09-13 13:34:00    2017-09-13 13:34:00
120651    36657    886    2017-09-13 04:48:00    2017-09-13 04:48:00
120652    36657    957    2017-09-13 14:59:00    2017-09-13 14:59:00
120653    36657    755    2017-09-13 14:14:00    2017-09-13 14:14:00
120654    36657    644    2017-09-13 12:07:00    2017-09-13 12:07:00
120655    36658    952    2017-09-13 07:23:00    2017-09-13 07:23:00
120656    36658    690    2017-09-13 09:23:00    2017-09-13 09:23:00
120657    36658    672    2017-09-13 03:45:00    2017-09-13 03:45:00
120658    36658    640    2017-09-13 08:10:00    2017-09-13 08:10:00
120659    36658    816    2017-09-13 01:34:00    2017-09-13 01:34:00
120660    36659    697    2017-09-13 09:03:00    2017-09-13 09:03:00
120661    36659    654    2017-09-13 04:34:00    2017-09-13 04:34:00
120662    36659    603    2017-09-13 15:00:00    2017-09-13 15:00:00
120663    36659    685    2017-09-13 18:02:00    2017-09-13 18:02:00
120664    36659    707    2017-09-13 10:03:00    2017-09-13 10:03:00
120665    36660    525    2017-09-13 04:20:00    2017-09-13 04:20:00
120666    36660    632    2017-09-13 02:10:00    2017-09-13 02:10:00
120667    36660    654    2017-09-13 10:38:00    2017-09-13 10:38:00
120668    36660    841    2017-09-13 07:22:00    2017-09-13 07:22:00
120669    36660    759    2017-09-13 19:35:00    2017-09-13 19:35:00
120670    36661    847    2017-09-13 16:14:00    2017-09-13 16:14:00
120671    36661    504    2017-09-13 16:46:00    2017-09-13 16:46:00
120672    36661    702    2017-09-13 19:52:00    2017-09-13 19:52:00
120673    36661    942    2017-09-13 04:12:00    2017-09-13 04:12:00
120674    36661    653    2017-09-13 05:42:00    2017-09-13 05:42:00
120675    36662    490    2017-09-13 11:58:00    2017-09-13 11:58:00
120676    36662    867    2017-09-13 12:41:00    2017-09-13 12:41:00
120677    36662    915    2017-09-13 04:49:00    2017-09-13 04:49:00
120678    36662    508    2017-09-13 03:25:00    2017-09-13 03:25:00
120679    36662    750    2017-09-13 13:52:00    2017-09-13 13:52:00
120680    36663    552    2017-09-13 17:44:00    2017-09-13 17:44:00
120681    36663    755    2017-09-13 18:34:00    2017-09-13 18:34:00
120682    36663    694    2017-09-13 12:41:00    2017-09-13 12:41:00
120683    36663    704    2017-09-13 17:45:00    2017-09-13 17:45:00
120684    36663    653    2017-09-13 18:57:00    2017-09-13 18:57:00
120685    36664    875    2017-09-13 02:29:00    2017-09-13 02:29:00
120686    36664    529    2017-09-13 23:34:00    2017-09-13 23:34:00
120687    36664    692    2017-09-13 21:32:00    2017-09-13 21:32:00
120688    36664    798    2017-09-13 15:42:00    2017-09-13 15:42:00
120689    36664    521    2017-09-13 13:09:00    2017-09-13 13:09:00
120690    36665    632    2017-09-13 13:53:00    2017-09-13 13:53:00
120691    36665    607    2017-09-13 07:00:00    2017-09-13 07:00:00
120692    36665    868    2017-09-13 22:51:00    2017-09-13 22:51:00
120693    36665    489    2017-09-13 16:00:00    2017-09-13 16:00:00
120694    36665    716    2017-09-13 15:33:00    2017-09-13 15:33:00
120695    36666    814    2017-09-13 04:30:00    2017-09-13 04:30:00
120696    36666    635    2017-09-13 16:22:00    2017-09-13 16:22:00
120697    36666    463    2017-09-13 16:18:00    2017-09-13 16:18:00
120698    36666    479    2017-09-13 18:51:00    2017-09-13 18:51:00
120699    36666    614    2017-09-13 09:29:00    2017-09-13 09:29:00
120700    36667    711    2017-09-13 09:36:00    2017-09-13 09:36:00
120701    36667    606    2017-09-13 18:53:00    2017-09-13 18:53:00
120702    36667    516    2017-09-13 01:56:00    2017-09-13 01:56:00
120703    36667    548    2017-09-13 18:37:00    2017-09-13 18:37:00
120704    36667    509    2017-09-13 15:48:00    2017-09-13 15:48:00
120705    36668    759    2017-09-13 02:31:00    2017-09-13 02:31:00
120706    36668    587    2017-09-13 07:07:00    2017-09-13 07:07:00
120707    36668    561    2017-09-13 04:43:00    2017-09-13 04:43:00
120708    36668    857    2017-09-13 09:25:00    2017-09-13 09:25:00
120709    36668    588    2017-09-13 02:07:00    2017-09-13 02:07:00
120710    36669    486    2017-09-14 22:30:00    2017-09-14 22:30:00
120711    36669    884    2017-09-14 20:46:00    2017-09-14 20:46:00
120712    36669    742    2017-09-14 16:17:00    2017-09-14 16:17:00
120713    36669    505    2017-09-14 19:05:00    2017-09-14 19:05:00
120714    36669    715    2017-09-14 01:33:00    2017-09-14 01:33:00
120715    36670    937    2017-09-14 15:54:00    2017-09-14 15:54:00
120716    36670    753    2017-09-14 17:53:00    2017-09-14 17:53:00
120717    36670    621    2017-09-14 11:30:00    2017-09-14 11:30:00
120718    36670    754    2017-09-14 05:28:00    2017-09-14 05:28:00
120719    36670    634    2017-09-14 20:18:00    2017-09-14 20:18:00
120720    36671    652    2017-09-14 18:57:00    2017-09-14 18:57:00
120721    36671    948    2017-09-14 15:37:00    2017-09-14 15:37:00
120722    36671    641    2017-09-14 16:35:00    2017-09-14 16:35:00
120723    36671    549    2017-09-14 23:15:00    2017-09-14 23:15:00
120724    36671    536    2017-09-14 06:55:00    2017-09-14 06:55:00
120725    36672    823    2017-09-14 02:24:00    2017-09-14 02:24:00
120726    36672    492    2017-09-14 22:34:00    2017-09-14 22:34:00
120727    36672    829    2017-09-14 14:35:00    2017-09-14 14:35:00
120728    36672    748    2017-09-14 03:18:00    2017-09-14 03:18:00
120729    36672    577    2017-09-14 21:17:00    2017-09-14 21:17:00
120730    36673    893    2017-09-14 21:29:00    2017-09-14 21:29:00
120731    36673    815    2017-09-14 09:42:00    2017-09-14 09:42:00
120732    36673    749    2017-09-14 09:01:00    2017-09-14 09:01:00
120733    36673    856    2017-09-14 22:52:00    2017-09-14 22:52:00
120734    36673    474    2017-09-14 03:51:00    2017-09-14 03:51:00
120735    36674    858    2017-09-14 13:57:00    2017-09-14 13:57:00
120736    36674    949    2017-09-14 04:38:00    2017-09-14 04:38:00
120737    36674    505    2017-09-14 21:31:00    2017-09-14 21:31:00
120738    36674    809    2017-09-14 05:47:00    2017-09-14 05:47:00
120739    36674    731    2017-09-14 20:45:00    2017-09-14 20:45:00
120740    36675    633    2017-09-14 21:02:00    2017-09-14 21:02:00
120741    36675    557    2017-09-14 03:00:00    2017-09-14 03:00:00
120742    36675    810    2017-09-14 15:27:00    2017-09-14 15:27:00
120743    36675    478    2017-09-14 13:33:00    2017-09-14 13:33:00
120744    36675    834    2017-09-14 12:07:00    2017-09-14 12:07:00
120745    36676    585    2017-09-14 17:56:00    2017-09-14 17:56:00
120746    36676    540    2017-09-14 23:51:00    2017-09-14 23:51:00
120747    36676    676    2017-09-14 20:15:00    2017-09-14 20:15:00
120748    36676    539    2017-09-14 15:16:00    2017-09-14 15:16:00
120749    36676    551    2017-09-14 19:46:00    2017-09-14 19:46:00
120750    36677    944    2017-09-14 13:10:00    2017-09-14 13:10:00
120751    36677    928    2017-09-14 03:08:00    2017-09-14 03:08:00
120752    36677    792    2017-09-14 05:18:00    2017-09-14 05:18:00
120753    36677    586    2017-09-14 02:18:00    2017-09-14 02:18:00
120754    36677    941    2017-09-14 06:53:00    2017-09-14 06:53:00
120755    36678    754    2017-09-14 15:00:00    2017-09-14 15:00:00
120756    36678    677    2017-09-14 16:27:00    2017-09-14 16:27:00
120757    36678    902    2017-09-14 19:59:00    2017-09-14 19:59:00
120758    36678    910    2017-09-14 08:47:00    2017-09-14 08:47:00
120759    36678    586    2017-09-14 02:38:00    2017-09-14 02:38:00
120760    36679    690    2017-09-14 18:46:00    2017-09-14 18:46:00
120761    36679    876    2017-09-14 04:25:00    2017-09-14 04:25:00
120762    36679    898    2017-09-14 03:15:00    2017-09-14 03:15:00
120763    36679    897    2017-09-14 11:15:00    2017-09-14 11:15:00
120764    36679    595    2017-09-14 07:53:00    2017-09-14 07:53:00
120765    36680    806    2017-09-14 19:16:00    2017-09-14 19:16:00
120766    36680    922    2017-09-14 12:58:00    2017-09-14 12:58:00
120767    36680    903    2017-09-14 17:10:00    2017-09-14 17:10:00
120768    36680    616    2017-09-14 04:17:00    2017-09-14 04:17:00
120769    36680    675    2017-09-14 07:02:00    2017-09-14 07:02:00
120770    36681    647    2017-09-14 08:25:00    2017-09-14 08:25:00
120771    36681    469    2017-09-14 16:33:00    2017-09-14 16:33:00
120772    36681    517    2017-09-14 01:27:00    2017-09-14 01:27:00
120773    36681    519    2017-09-14 20:03:00    2017-09-14 20:03:00
120774    36681    615    2017-09-14 19:38:00    2017-09-14 19:38:00
120775    36682    908    2017-09-14 05:10:00    2017-09-14 05:10:00
120776    36682    853    2017-09-14 21:55:00    2017-09-14 21:55:00
120777    36682    825    2017-09-14 17:10:00    2017-09-14 17:10:00
120778    36682    504    2017-09-14 10:50:00    2017-09-14 10:50:00
120779    36682    866    2017-09-14 22:06:00    2017-09-14 22:06:00
120780    36683    605    2017-09-14 08:40:00    2017-09-14 08:40:00
120781    36683    898    2017-09-14 05:11:00    2017-09-14 05:11:00
120782    36683    563    2017-09-14 02:44:00    2017-09-14 02:44:00
120783    36683    503    2017-09-14 01:52:00    2017-09-14 01:52:00
120784    36683    828    2017-09-14 09:38:00    2017-09-14 09:38:00
120785    36684    601    2017-09-14 18:46:00    2017-09-14 18:46:00
120786    36684    899    2017-09-14 17:16:00    2017-09-14 17:16:00
120787    36684    810    2017-09-14 08:32:00    2017-09-14 08:32:00
120788    36684    672    2017-09-14 18:15:00    2017-09-14 18:15:00
120789    36684    770    2017-09-14 10:31:00    2017-09-14 10:31:00
120790    36685    505    2017-09-14 20:00:00    2017-09-14 20:00:00
120791    36685    725    2017-09-14 21:32:00    2017-09-14 21:32:00
120792    36685    579    2017-09-14 04:58:00    2017-09-14 04:58:00
120793    36685    766    2017-09-14 09:20:00    2017-09-14 09:20:00
120794    36685    696    2017-09-14 07:56:00    2017-09-14 07:56:00
120795    36686    622    2017-09-14 13:29:00    2017-09-14 13:29:00
120796    36686    806    2017-09-14 18:57:00    2017-09-14 18:57:00
120797    36686    932    2017-09-14 08:39:00    2017-09-14 08:39:00
120798    36686    959    2017-09-14 08:09:00    2017-09-14 08:09:00
120799    36686    483    2017-09-14 06:29:00    2017-09-14 06:29:00
120800    36687    691    2017-09-14 22:23:00    2017-09-14 22:23:00
120801    36687    631    2017-09-14 06:58:00    2017-09-14 06:58:00
120802    36687    680    2017-09-14 07:27:00    2017-09-14 07:27:00
120803    36687    710    2017-09-14 04:56:00    2017-09-14 04:56:00
120804    36687    673    2017-09-14 06:47:00    2017-09-14 06:47:00
120805    36688    814    2017-09-14 18:30:00    2017-09-14 18:30:00
120806    36688    785    2017-09-14 17:48:00    2017-09-14 17:48:00
120807    36688    560    2017-09-14 20:48:00    2017-09-14 20:48:00
120808    36688    746    2017-09-14 21:22:00    2017-09-14 21:22:00
120809    36688    760    2017-09-14 09:12:00    2017-09-14 09:12:00
120810    36689    496    2017-09-14 18:53:00    2017-09-14 18:53:00
120811    36689    961    2017-09-14 19:03:00    2017-09-14 19:03:00
120812    36689    737    2017-09-14 11:45:00    2017-09-14 11:45:00
120813    36689    696    2017-09-14 05:23:00    2017-09-14 05:23:00
120814    36689    804    2017-09-14 04:07:00    2017-09-14 04:07:00
120815    36690    765    2017-09-14 20:16:00    2017-09-14 20:16:00
120816    36690    569    2017-09-14 15:26:00    2017-09-14 15:26:00
120817    36690    935    2017-09-14 11:22:00    2017-09-14 11:22:00
120818    36690    769    2017-09-14 06:18:00    2017-09-14 06:18:00
120819    36690    830    2017-09-14 06:45:00    2017-09-14 06:45:00
120820    36691    880    2017-09-14 11:16:00    2017-09-14 11:16:00
120821    36691    796    2017-09-14 18:49:00    2017-09-14 18:49:00
120822    36691    937    2017-09-14 02:42:00    2017-09-14 02:42:00
120823    36691    506    2017-09-14 08:37:00    2017-09-14 08:37:00
120824    36691    773    2017-09-14 23:23:00    2017-09-14 23:23:00
120825    36692    581    2017-09-14 08:08:00    2017-09-14 08:08:00
120826    36692    648    2017-09-14 22:35:00    2017-09-14 22:35:00
120827    36692    562    2017-09-14 02:24:00    2017-09-14 02:24:00
120828    36692    721    2017-09-14 13:13:00    2017-09-14 13:13:00
120829    36692    782    2017-09-14 15:27:00    2017-09-14 15:27:00
120830    36693    921    2017-09-14 03:39:00    2017-09-14 03:39:00
120831    36693    802    2017-09-14 20:51:00    2017-09-14 20:51:00
120832    36693    913    2017-09-14 05:44:00    2017-09-14 05:44:00
120833    36693    642    2017-09-14 03:09:00    2017-09-14 03:09:00
120834    36693    725    2017-09-14 14:02:00    2017-09-14 14:02:00
120835    36694    880    2017-09-14 07:20:00    2017-09-14 07:20:00
120836    36694    572    2017-09-14 08:40:00    2017-09-14 08:40:00
120837    36694    465    2017-09-14 21:24:00    2017-09-14 21:24:00
120838    36694    780    2017-09-14 10:56:00    2017-09-14 10:56:00
120839    36694    650    2017-09-14 09:40:00    2017-09-14 09:40:00
120840    36695    527    2017-09-14 03:05:00    2017-09-14 03:05:00
120841    36695    517    2017-09-14 07:06:00    2017-09-14 07:06:00
120842    36695    841    2017-09-14 11:09:00    2017-09-14 11:09:00
120843    36695    916    2017-09-14 15:39:00    2017-09-14 15:39:00
120844    36695    656    2017-09-14 10:15:00    2017-09-14 10:15:00
120845    36696    568    2017-09-14 10:59:00    2017-09-14 10:59:00
120846    36696    517    2017-09-14 18:22:00    2017-09-14 18:22:00
120847    36696    548    2017-09-14 02:16:00    2017-09-14 02:16:00
120848    36696    463    2017-09-14 15:35:00    2017-09-14 15:35:00
120849    36696    949    2017-09-14 21:48:00    2017-09-14 21:48:00
120850    36697    928    2017-09-14 01:57:00    2017-09-14 01:57:00
120851    36697    787    2017-09-14 11:36:00    2017-09-14 11:36:00
120852    36697    472    2017-09-14 15:17:00    2017-09-14 15:17:00
120853    36697    517    2017-09-14 01:08:00    2017-09-14 01:08:00
120854    36697    470    2017-09-14 07:20:00    2017-09-14 07:20:00
120855    36698    502    2017-09-14 13:21:00    2017-09-14 13:21:00
120856    36698    704    2017-09-14 10:07:00    2017-09-14 10:07:00
120857    36698    877    2017-09-14 16:03:00    2017-09-14 16:03:00
120858    36698    781    2017-09-14 08:10:00    2017-09-14 08:10:00
120859    36698    914    2017-09-14 23:09:00    2017-09-14 23:09:00
120860    36699    732    2017-09-14 21:00:00    2017-09-14 21:00:00
120861    36699    463    2017-09-14 14:37:00    2017-09-14 14:37:00
120862    36699    814    2017-09-14 07:21:00    2017-09-14 07:21:00
120863    36699    727    2017-09-14 06:56:00    2017-09-14 06:56:00
120864    36699    773    2017-09-14 02:00:00    2017-09-14 02:00:00
120865    36700    619    2017-09-14 22:13:00    2017-09-14 22:13:00
120866    36700    793    2017-09-14 22:34:00    2017-09-14 22:34:00
120867    36700    755    2017-09-14 23:08:00    2017-09-14 23:08:00
120868    36700    595    2017-09-14 03:48:00    2017-09-14 03:48:00
120869    36700    853    2017-09-14 13:46:00    2017-09-14 13:46:00
120870    36701    569    2017-09-14 18:33:00    2017-09-14 18:33:00
120871    36701    698    2017-09-14 12:31:00    2017-09-14 12:31:00
120872    36701    886    2017-09-14 16:23:00    2017-09-14 16:23:00
120873    36701    827    2017-09-14 19:02:00    2017-09-14 19:02:00
120874    36701    711    2017-09-14 03:15:00    2017-09-14 03:15:00
120875    36702    844    2017-09-14 14:55:00    2017-09-14 14:55:00
120876    36702    476    2017-09-14 03:04:00    2017-09-14 03:04:00
120877    36702    522    2017-09-14 13:56:00    2017-09-14 13:56:00
120878    36702    718    2017-09-14 04:21:00    2017-09-14 04:21:00
120879    36702    851    2017-09-14 04:07:00    2017-09-14 04:07:00
120880    36703    921    2017-09-14 14:54:00    2017-09-14 14:54:00
120881    36703    621    2017-09-14 23:11:00    2017-09-14 23:11:00
120882    36703    511    2017-09-14 13:25:00    2017-09-14 13:25:00
120883    36703    648    2017-09-14 15:32:00    2017-09-14 15:32:00
120884    36703    949    2017-09-14 17:29:00    2017-09-14 17:29:00
120885    36704    933    2017-09-14 14:29:00    2017-09-14 14:29:00
120886    36704    944    2017-09-14 23:17:00    2017-09-14 23:17:00
120887    36704    573    2017-09-14 09:55:00    2017-09-14 09:55:00
120888    36704    463    2017-09-14 01:53:00    2017-09-14 01:53:00
120889    36704    855    2017-09-14 09:25:00    2017-09-14 09:25:00
120890    36705    698    2017-09-14 14:59:00    2017-09-14 14:59:00
120891    36705    877    2017-09-14 09:01:00    2017-09-14 09:01:00
120892    36705    907    2017-09-14 02:03:00    2017-09-14 02:03:00
120893    36705    473    2017-09-14 22:57:00    2017-09-14 22:57:00
120894    36705    940    2017-09-14 14:45:00    2017-09-14 14:45:00
120895    36706    943    2017-09-14 05:32:00    2017-09-14 05:32:00
120896    36706    832    2017-09-14 22:35:00    2017-09-14 22:35:00
120897    36706    851    2017-09-14 03:36:00    2017-09-14 03:36:00
120898    36706    493    2017-09-14 17:59:00    2017-09-14 17:59:00
120899    36706    600    2017-09-14 07:43:00    2017-09-14 07:43:00
120900    36707    602    2017-09-14 08:46:00    2017-09-14 08:46:00
120901    36707    571    2017-09-14 14:24:00    2017-09-14 14:24:00
120902    36707    474    2017-09-14 06:15:00    2017-09-14 06:15:00
120903    36707    786    2017-09-14 09:19:00    2017-09-14 09:19:00
120904    36707    759    2017-09-14 08:37:00    2017-09-14 08:37:00
120905    36708    569    2017-09-14 03:18:00    2017-09-14 03:18:00
120906    36708    932    2017-09-14 15:47:00    2017-09-14 15:47:00
120907    36708    555    2017-09-14 03:07:00    2017-09-14 03:07:00
120908    36708    547    2017-09-14 04:29:00    2017-09-14 04:29:00
120909    36708    468    2017-09-14 15:45:00    2017-09-14 15:45:00
120910    36709    671    2017-09-14 01:04:00    2017-09-14 01:04:00
120911    36709    845    2017-09-14 22:22:00    2017-09-14 22:22:00
120912    36709    890    2017-09-14 12:11:00    2017-09-14 12:11:00
120913    36709    618    2017-09-14 23:44:00    2017-09-14 23:44:00
120914    36709    480    2017-09-14 11:27:00    2017-09-14 11:27:00
120915    36710    626    2017-09-14 19:00:00    2017-09-14 19:00:00
120916    36710    479    2017-09-14 20:27:00    2017-09-14 20:27:00
120917    36710    842    2017-09-14 20:01:00    2017-09-14 20:01:00
120918    36710    898    2017-09-14 01:42:00    2017-09-14 01:42:00
120919    36710    516    2017-09-14 01:22:00    2017-09-14 01:22:00
120920    36711    469    2017-09-14 02:47:00    2017-09-14 02:47:00
120921    36711    775    2017-09-14 13:41:00    2017-09-14 13:41:00
120922    36711    714    2017-09-14 21:38:00    2017-09-14 21:38:00
120923    36711    930    2017-09-14 12:51:00    2017-09-14 12:51:00
120924    36711    901    2017-09-14 03:36:00    2017-09-14 03:36:00
120925    36712    517    2017-09-14 09:10:00    2017-09-14 09:10:00
120926    36712    516    2017-09-14 22:56:00    2017-09-14 22:56:00
120927    36712    848    2017-09-14 09:36:00    2017-09-14 09:36:00
120928    36712    702    2017-09-14 10:19:00    2017-09-14 10:19:00
120929    36712    539    2017-09-14 06:25:00    2017-09-14 06:25:00
120930    36713    860    2017-09-14 14:14:00    2017-09-14 14:14:00
120931    36713    497    2017-09-14 02:47:00    2017-09-14 02:47:00
120932    36713    683    2017-09-14 06:18:00    2017-09-14 06:18:00
120933    36713    600    2017-09-14 23:00:00    2017-09-14 23:00:00
120934    36713    805    2017-09-14 07:32:00    2017-09-14 07:32:00
120935    36714    536    2017-09-14 01:08:00    2017-09-14 01:08:00
120936    36714    613    2017-09-14 04:40:00    2017-09-14 04:40:00
120937    36714    949    2017-09-14 07:18:00    2017-09-14 07:18:00
120938    36714    742    2017-09-14 05:43:00    2017-09-14 05:43:00
120939    36714    673    2017-09-14 01:52:00    2017-09-14 01:52:00
120940    36715    553    2017-09-14 04:23:00    2017-09-14 04:23:00
120941    36715    582    2017-09-14 21:10:00    2017-09-14 21:10:00
120942    36715    476    2017-09-14 21:14:00    2017-09-14 21:14:00
120943    36715    490    2017-09-14 18:15:00    2017-09-14 18:15:00
120944    36715    820    2017-09-14 16:36:00    2017-09-14 16:36:00
120945    36716    728    2017-09-14 06:42:00    2017-09-14 06:42:00
120946    36716    814    2017-09-14 09:25:00    2017-09-14 09:25:00
120947    36716    750    2017-09-14 22:41:00    2017-09-14 22:41:00
120948    36716    591    2017-09-14 01:43:00    2017-09-14 01:43:00
120949    36716    509    2017-09-14 08:56:00    2017-09-14 08:56:00
120950    36717    764    2017-09-14 12:26:00    2017-09-14 12:26:00
120951    36717    481    2017-09-14 23:19:00    2017-09-14 23:19:00
120952    36717    916    2017-09-14 08:46:00    2017-09-14 08:46:00
120953    36717    508    2017-09-14 14:05:00    2017-09-14 14:05:00
120954    36717    509    2017-09-14 10:12:00    2017-09-14 10:12:00
120955    36718    618    2017-09-14 22:15:00    2017-09-14 22:15:00
120956    36718    723    2017-09-14 10:34:00    2017-09-14 10:34:00
120957    36718    828    2017-09-14 21:17:00    2017-09-14 21:17:00
120958    36718    517    2017-09-14 18:16:00    2017-09-14 18:16:00
120959    36718    790    2017-09-14 23:51:00    2017-09-14 23:51:00
120960    36719    760    2017-09-14 10:41:00    2017-09-14 10:41:00
120961    36719    735    2017-09-14 02:27:00    2017-09-14 02:27:00
120962    36719    687    2017-09-14 11:35:00    2017-09-14 11:35:00
120963    36719    499    2017-09-14 18:04:00    2017-09-14 18:04:00
120964    36719    850    2017-09-14 02:58:00    2017-09-14 02:58:00
120965    36720    614    2017-09-14 12:59:00    2017-09-14 12:59:00
120966    36720    666    2017-09-14 21:12:00    2017-09-14 21:12:00
120967    36720    706    2017-09-14 16:51:00    2017-09-14 16:51:00
120968    36720    755    2017-09-14 03:22:00    2017-09-14 03:22:00
120969    36720    710    2017-09-14 02:23:00    2017-09-14 02:23:00
120970    36721    486    2017-09-14 04:28:00    2017-09-14 04:28:00
120971    36721    556    2017-09-14 07:49:00    2017-09-14 07:49:00
120972    36721    668    2017-09-14 11:00:00    2017-09-14 11:00:00
120973    36721    729    2017-09-14 17:29:00    2017-09-14 17:29:00
120974    36721    484    2017-09-14 22:15:00    2017-09-14 22:15:00
120975    36722    576    2017-09-14 22:12:00    2017-09-14 22:12:00
120976    36722    838    2017-09-14 10:53:00    2017-09-14 10:53:00
120977    36722    848    2017-09-14 07:33:00    2017-09-14 07:33:00
120978    36722    861    2017-09-14 02:26:00    2017-09-14 02:26:00
120979    36722    794    2017-09-14 16:40:00    2017-09-14 16:40:00
120980    36723    674    2017-09-14 03:39:00    2017-09-14 03:39:00
120981    36723    836    2017-09-14 09:51:00    2017-09-14 09:51:00
120982    36723    618    2017-09-14 19:42:00    2017-09-14 19:42:00
120983    36723    916    2017-09-14 09:30:00    2017-09-14 09:30:00
120984    36723    605    2017-09-14 09:44:00    2017-09-14 09:44:00
120985    36724    622    2017-09-14 14:16:00    2017-09-14 14:16:00
120986    36724    810    2017-09-14 20:55:00    2017-09-14 20:55:00
120987    36724    465    2017-09-14 19:09:00    2017-09-14 19:09:00
120988    36724    588    2017-09-14 03:33:00    2017-09-14 03:33:00
120989    36724    777    2017-09-14 15:30:00    2017-09-14 15:30:00
120990    36725    489    2017-09-14 22:10:00    2017-09-14 22:10:00
120991    36725    886    2017-09-14 10:44:00    2017-09-14 10:44:00
120992    36725    818    2017-09-14 10:26:00    2017-09-14 10:26:00
120993    36725    680    2017-09-14 22:58:00    2017-09-14 22:58:00
120994    36725    481    2017-09-14 10:37:00    2017-09-14 10:37:00
120995    36726    534    2017-09-14 11:34:00    2017-09-14 11:34:00
120996    36726    900    2017-09-14 21:51:00    2017-09-14 21:51:00
120997    36726    898    2017-09-14 09:34:00    2017-09-14 09:34:00
120998    36726    959    2017-09-14 11:25:00    2017-09-14 11:25:00
120999    36726    465    2017-09-14 13:25:00    2017-09-14 13:25:00
121000    36727    727    2017-09-14 15:41:00    2017-09-14 15:41:00
121001    36727    511    2017-09-14 20:46:00    2017-09-14 20:46:00
121002    36727    669    2017-09-14 01:22:00    2017-09-14 01:22:00
121003    36727    516    2017-09-14 13:44:00    2017-09-14 13:44:00
121004    36727    756    2017-09-14 05:53:00    2017-09-14 05:53:00
121005    36728    781    2017-09-14 18:16:00    2017-09-14 18:16:00
121006    36728    803    2017-09-14 22:49:00    2017-09-14 22:49:00
121007    36728    849    2017-09-14 14:05:00    2017-09-14 14:05:00
121008    36728    719    2017-09-14 05:39:00    2017-09-14 05:39:00
121009    36728    743    2017-09-14 04:19:00    2017-09-14 04:19:00
121010    36729    629    2017-09-14 03:13:00    2017-09-14 03:13:00
121011    36729    612    2017-09-14 16:40:00    2017-09-14 16:40:00
121012    36729    612    2017-09-14 16:23:00    2017-09-14 16:23:00
121013    36729    629    2017-09-14 15:37:00    2017-09-14 15:37:00
121014    36729    790    2017-09-14 08:18:00    2017-09-14 08:18:00
121015    36730    541    2017-09-14 20:33:00    2017-09-14 20:33:00
121016    36730    868    2017-09-14 17:38:00    2017-09-14 17:38:00
121017    36730    747    2017-09-14 18:52:00    2017-09-14 18:52:00
121018    36730    526    2017-09-14 20:54:00    2017-09-14 20:54:00
121019    36730    695    2017-09-14 12:22:00    2017-09-14 12:22:00
121020    36731    908    2017-09-14 06:46:00    2017-09-14 06:46:00
121021    36731    692    2017-09-14 13:22:00    2017-09-14 13:22:00
121022    36731    869    2017-09-14 14:06:00    2017-09-14 14:06:00
121023    36731    861    2017-09-14 01:58:00    2017-09-14 01:58:00
121024    36731    646    2017-09-14 05:52:00    2017-09-14 05:52:00
121025    36732    834    2017-09-14 19:23:00    2017-09-14 19:23:00
121026    36732    717    2017-09-14 12:08:00    2017-09-14 12:08:00
121027    36732    571    2017-09-14 01:49:00    2017-09-14 01:49:00
121028    36732    726    2017-09-14 02:13:00    2017-09-14 02:13:00
121029    36732    650    2017-09-14 16:00:00    2017-09-14 16:00:00
121030    36733    464    2017-09-14 13:34:00    2017-09-14 13:34:00
121031    36733    665    2017-09-14 03:55:00    2017-09-14 03:55:00
121032    36733    773    2017-09-14 20:28:00    2017-09-14 20:28:00
121033    36733    562    2017-09-14 18:48:00    2017-09-14 18:48:00
121034    36733    469    2017-09-14 04:10:00    2017-09-14 04:10:00
121035    36734    569    2017-09-14 12:53:00    2017-09-14 12:53:00
121036    36734    923    2017-09-14 19:09:00    2017-09-14 19:09:00
121037    36734    765    2017-09-14 05:40:00    2017-09-14 05:40:00
121038    36734    692    2017-09-14 08:35:00    2017-09-14 08:35:00
121039    36734    522    2017-09-14 18:49:00    2017-09-14 18:49:00
121040    36735    581    2017-09-14 08:32:00    2017-09-14 08:32:00
121041    36735    789    2017-09-14 13:06:00    2017-09-14 13:06:00
121042    36735    517    2017-09-14 04:45:00    2017-09-14 04:45:00
121043    36735    659    2017-09-14 22:15:00    2017-09-14 22:15:00
121044    36735    586    2017-09-14 13:13:00    2017-09-14 13:13:00
121045    36736    683    2017-09-14 02:20:00    2017-09-14 02:20:00
121046    36736    843    2017-09-14 19:18:00    2017-09-14 19:18:00
121047    36736    472    2017-09-14 15:08:00    2017-09-14 15:08:00
121048    36736    648    2017-09-14 09:43:00    2017-09-14 09:43:00
121049    36736    836    2017-09-14 21:23:00    2017-09-14 21:23:00
121050    36737    888    2017-09-14 21:24:00    2017-09-14 21:24:00
121051    36737    836    2017-09-14 07:17:00    2017-09-14 07:17:00
121052    36737    674    2017-09-14 15:53:00    2017-09-14 15:53:00
121053    36737    924    2017-09-14 22:49:00    2017-09-14 22:49:00
121054    36737    957    2017-09-14 03:52:00    2017-09-14 03:52:00
121055    36738    810    2017-09-14 23:00:00    2017-09-14 23:00:00
121056    36738    941    2017-09-14 16:56:00    2017-09-14 16:56:00
121057    36738    627    2017-09-14 09:27:00    2017-09-14 09:27:00
121058    36738    502    2017-09-14 22:38:00    2017-09-14 22:38:00
121059    36738    961    2017-09-14 20:11:00    2017-09-14 20:11:00
121060    36739    687    2017-09-15 13:33:00    2017-09-15 13:33:00
121061    36739    759    2017-09-15 02:22:00    2017-09-15 02:22:00
121062    36739    790    2017-09-15 15:00:00    2017-09-15 15:00:00
121063    36739    550    2017-09-15 16:35:00    2017-09-15 16:35:00
121064    36739    652    2017-09-15 01:04:00    2017-09-15 01:04:00
121065    36740    477    2017-09-15 06:29:00    2017-09-15 06:29:00
121066    36740    886    2017-09-15 04:23:00    2017-09-15 04:23:00
121067    36740    875    2017-09-15 16:15:00    2017-09-15 16:15:00
121068    36740    770    2017-09-15 08:43:00    2017-09-15 08:43:00
121069    36740    743    2017-09-15 02:20:00    2017-09-15 02:20:00
121070    36741    946    2017-09-15 23:54:00    2017-09-15 23:54:00
121071    36741    638    2017-09-15 05:33:00    2017-09-15 05:33:00
121072    36741    872    2017-09-15 19:16:00    2017-09-15 19:16:00
121073    36741    859    2017-09-15 04:37:00    2017-09-15 04:37:00
121074    36741    583    2017-09-15 06:24:00    2017-09-15 06:24:00
121075    36742    846    2017-09-15 07:22:00    2017-09-15 07:22:00
121076    36742    609    2017-09-15 19:03:00    2017-09-15 19:03:00
121077    36742    742    2017-09-15 08:53:00    2017-09-15 08:53:00
121078    36742    656    2017-09-15 14:43:00    2017-09-15 14:43:00
121079    36742    772    2017-09-15 21:48:00    2017-09-15 21:48:00
121080    36743    619    2017-09-15 08:34:00    2017-09-15 08:34:00
121081    36743    688    2017-09-15 23:53:00    2017-09-15 23:53:00
121082    36743    842    2017-09-15 08:27:00    2017-09-15 08:27:00
121083    36743    807    2017-09-15 05:51:00    2017-09-15 05:51:00
121084    36743    859    2017-09-15 11:41:00    2017-09-15 11:41:00
121085    36744    521    2017-09-15 20:35:00    2017-09-15 20:35:00
121086    36744    716    2017-09-15 12:41:00    2017-09-15 12:41:00
121087    36744    794    2017-09-15 01:48:00    2017-09-15 01:48:00
121088    36744    813    2017-09-15 08:52:00    2017-09-15 08:52:00
121089    36744    859    2017-09-15 01:49:00    2017-09-15 01:49:00
121090    36745    585    2017-09-15 05:04:00    2017-09-15 05:04:00
121091    36745    907    2017-09-15 12:42:00    2017-09-15 12:42:00
121092    36745    470    2017-09-15 08:04:00    2017-09-15 08:04:00
121093    36745    601    2017-09-15 09:07:00    2017-09-15 09:07:00
121094    36745    888    2017-09-15 07:54:00    2017-09-15 07:54:00
121095    36746    753    2017-09-15 16:32:00    2017-09-15 16:32:00
121096    36746    549    2017-09-15 09:12:00    2017-09-15 09:12:00
121097    36746    829    2017-09-15 04:19:00    2017-09-15 04:19:00
121098    36746    916    2017-09-15 17:26:00    2017-09-15 17:26:00
121099    36746    825    2017-09-15 05:48:00    2017-09-15 05:48:00
121100    36747    496    2017-09-15 21:33:00    2017-09-15 21:33:00
121101    36747    861    2017-09-15 06:06:00    2017-09-15 06:06:00
121102    36747    571    2017-09-15 09:51:00    2017-09-15 09:51:00
121103    36747    859    2017-09-15 12:03:00    2017-09-15 12:03:00
121104    36747    556    2017-09-15 12:22:00    2017-09-15 12:22:00
121105    36748    757    2017-09-15 09:29:00    2017-09-15 09:29:00
121106    36748    925    2017-09-15 23:18:00    2017-09-15 23:18:00
121107    36748    744    2017-09-15 12:56:00    2017-09-15 12:56:00
121108    36748    464    2017-09-15 19:40:00    2017-09-15 19:40:00
121109    36748    652    2017-09-15 12:32:00    2017-09-15 12:32:00
121110    36749    599    2017-09-15 02:55:00    2017-09-15 02:55:00
121111    36749    948    2017-09-15 05:40:00    2017-09-15 05:40:00
121112    36749    859    2017-09-15 07:32:00    2017-09-15 07:32:00
121113    36749    769    2017-09-15 04:23:00    2017-09-15 04:23:00
121114    36749    699    2017-09-15 07:59:00    2017-09-15 07:59:00
121115    36750    948    2017-09-15 08:36:00    2017-09-15 08:36:00
121116    36750    636    2017-09-15 06:54:00    2017-09-15 06:54:00
121117    36750    941    2017-09-15 11:26:00    2017-09-15 11:26:00
121118    36750    933    2017-09-15 12:06:00    2017-09-15 12:06:00
121119    36750    612    2017-09-15 09:25:00    2017-09-15 09:25:00
121120    36751    507    2017-09-15 06:16:00    2017-09-15 06:16:00
121121    36751    475    2017-09-15 15:23:00    2017-09-15 15:23:00
121122    36751    782    2017-09-15 10:58:00    2017-09-15 10:58:00
121123    36751    831    2017-09-15 14:14:00    2017-09-15 14:14:00
121124    36751    918    2017-09-15 15:57:00    2017-09-15 15:57:00
121125    36752    656    2017-09-15 22:37:00    2017-09-15 22:37:00
121126    36752    857    2017-09-15 10:39:00    2017-09-15 10:39:00
121127    36752    479    2017-09-15 08:31:00    2017-09-15 08:31:00
121128    36752    903    2017-09-15 09:05:00    2017-09-15 09:05:00
121129    36752    547    2017-09-15 04:59:00    2017-09-15 04:59:00
121130    36753    665    2017-09-15 03:05:00    2017-09-15 03:05:00
121131    36753    611    2017-09-15 03:18:00    2017-09-15 03:18:00
121132    36753    842    2017-09-15 19:38:00    2017-09-15 19:38:00
121133    36753    745    2017-09-15 10:59:00    2017-09-15 10:59:00
121134    36753    571    2017-09-15 10:53:00    2017-09-15 10:53:00
121135    36754    625    2017-09-15 21:25:00    2017-09-15 21:25:00
121136    36754    800    2017-09-15 03:33:00    2017-09-15 03:33:00
121137    36754    787    2017-09-15 19:11:00    2017-09-15 19:11:00
121138    36754    478    2017-09-15 15:10:00    2017-09-15 15:10:00
121139    36754    561    2017-09-15 07:59:00    2017-09-15 07:59:00
121140    36755    602    2017-09-15 13:56:00    2017-09-15 13:56:00
121141    36755    524    2017-09-15 05:30:00    2017-09-15 05:30:00
121142    36755    796    2017-09-15 21:46:00    2017-09-15 21:46:00
121143    36755    546    2017-09-15 21:20:00    2017-09-15 21:20:00
121144    36755    583    2017-09-15 07:23:00    2017-09-15 07:23:00
121145    36756    839    2017-09-15 01:50:00    2017-09-15 01:50:00
121146    36756    820    2017-09-15 13:03:00    2017-09-15 13:03:00
121147    36756    939    2017-09-15 22:48:00    2017-09-15 22:48:00
121148    36756    632    2017-09-15 16:22:00    2017-09-15 16:22:00
121149    36756    850    2017-09-15 10:10:00    2017-09-15 10:10:00
121150    36757    829    2017-09-15 11:17:00    2017-09-15 11:17:00
121151    36757    823    2017-09-15 22:43:00    2017-09-15 22:43:00
121152    36757    597    2017-09-15 11:06:00    2017-09-15 11:06:00
121153    36757    954    2017-09-15 12:24:00    2017-09-15 12:24:00
121154    36757    784    2017-09-15 05:36:00    2017-09-15 05:36:00
121155    36758    559    2017-09-15 06:01:00    2017-09-15 06:01:00
121156    36758    530    2017-09-15 09:38:00    2017-09-15 09:38:00
121157    36758    848    2017-09-15 05:40:00    2017-09-15 05:40:00
121158    36758    624    2017-09-15 04:14:00    2017-09-15 04:14:00
121159    36758    645    2017-09-15 18:36:00    2017-09-15 18:36:00
121160    36759    853    2017-09-15 11:00:00    2017-09-15 11:00:00
121161    36759    937    2017-09-15 09:37:00    2017-09-15 09:37:00
121162    36759    586    2017-09-15 14:18:00    2017-09-15 14:18:00
121163    36759    897    2017-09-15 12:17:00    2017-09-15 12:17:00
121164    36759    655    2017-09-15 18:48:00    2017-09-15 18:48:00
121165    36760    570    2017-09-15 11:13:00    2017-09-15 11:13:00
121166    36760    784    2017-09-15 09:22:00    2017-09-15 09:22:00
121167    36760    470    2017-09-15 20:23:00    2017-09-15 20:23:00
121168    36760    867    2017-09-15 14:42:00    2017-09-15 14:42:00
121169    36760    463    2017-09-15 07:31:00    2017-09-15 07:31:00
121170    36761    927    2017-09-15 18:34:00    2017-09-15 18:34:00
121171    36761    546    2017-09-15 03:46:00    2017-09-15 03:46:00
121172    36761    953    2017-09-15 17:29:00    2017-09-15 17:29:00
121173    36761    714    2017-09-15 20:04:00    2017-09-15 20:04:00
121174    36761    932    2017-09-15 11:13:00    2017-09-15 11:13:00
121175    36762    815    2017-09-15 19:17:00    2017-09-15 19:17:00
121176    36762    784    2017-09-15 15:14:00    2017-09-15 15:14:00
121177    36762    815    2017-09-15 10:00:00    2017-09-15 10:00:00
121178    36762    789    2017-09-15 14:35:00    2017-09-15 14:35:00
121179    36762    766    2017-09-15 06:31:00    2017-09-15 06:31:00
121180    36763    582    2017-09-15 13:11:00    2017-09-15 13:11:00
121181    36763    514    2017-09-15 14:32:00    2017-09-15 14:32:00
121182    36763    668    2017-09-15 09:29:00    2017-09-15 09:29:00
121183    36763    816    2017-09-15 04:47:00    2017-09-15 04:47:00
121184    36763    660    2017-09-15 04:04:00    2017-09-15 04:04:00
121185    36764    946    2017-09-15 05:49:00    2017-09-15 05:49:00
121186    36764    709    2017-09-15 18:24:00    2017-09-15 18:24:00
121187    36764    475    2017-09-15 20:27:00    2017-09-15 20:27:00
121188    36764    576    2017-09-15 07:26:00    2017-09-15 07:26:00
121189    36764    504    2017-09-15 02:45:00    2017-09-15 02:45:00
121190    36765    639    2017-09-15 06:54:00    2017-09-15 06:54:00
121191    36765    803    2017-09-15 12:57:00    2017-09-15 12:57:00
121192    36765    734    2017-09-15 22:01:00    2017-09-15 22:01:00
121193    36765    707    2017-09-15 01:09:00    2017-09-15 01:09:00
121194    36765    464    2017-09-15 10:53:00    2017-09-15 10:53:00
121195    36766    639    2017-09-15 17:39:00    2017-09-15 17:39:00
121196    36766    697    2017-09-15 16:53:00    2017-09-15 16:53:00
121197    36766    463    2017-09-15 02:12:00    2017-09-15 02:12:00
121198    36766    730    2017-09-15 01:48:00    2017-09-15 01:48:00
121199    36766    722    2017-09-15 20:17:00    2017-09-15 20:17:00
121200    36767    616    2017-09-15 11:38:00    2017-09-15 11:38:00
121201    36767    741    2017-09-15 04:57:00    2017-09-15 04:57:00
121202    36767    799    2017-09-15 19:02:00    2017-09-15 19:02:00
121203    36767    580    2017-09-15 11:35:00    2017-09-15 11:35:00
121204    36767    779    2017-09-15 07:59:00    2017-09-15 07:59:00
121205    36768    470    2017-09-15 19:40:00    2017-09-15 19:40:00
121206    36768    923    2017-09-15 07:40:00    2017-09-15 07:40:00
121207    36768    695    2017-09-15 04:40:00    2017-09-15 04:40:00
121208    36768    650    2017-09-15 08:32:00    2017-09-15 08:32:00
121209    36768    469    2017-09-15 19:00:00    2017-09-15 19:00:00
121210    36769    679    2017-09-15 18:25:00    2017-09-15 18:25:00
121211    36769    510    2017-09-15 14:50:00    2017-09-15 14:50:00
121212    36769    866    2017-09-15 06:56:00    2017-09-15 06:56:00
121213    36769    761    2017-09-15 18:19:00    2017-09-15 18:19:00
121214    36769    473    2017-09-15 22:06:00    2017-09-15 22:06:00
121215    36770    685    2017-09-15 01:49:00    2017-09-15 01:49:00
121216    36770    677    2017-09-15 05:25:00    2017-09-15 05:25:00
121217    36770    907    2017-09-15 17:06:00    2017-09-15 17:06:00
121218    36770    901    2017-09-15 04:08:00    2017-09-15 04:08:00
121219    36770    473    2017-09-15 01:18:00    2017-09-15 01:18:00
121220    36771    617    2017-09-15 19:59:00    2017-09-15 19:59:00
121221    36771    637    2017-09-15 11:50:00    2017-09-15 11:50:00
121222    36771    488    2017-09-15 03:04:00    2017-09-15 03:04:00
121223    36771    466    2017-09-15 12:10:00    2017-09-15 12:10:00
121224    36771    944    2017-09-15 14:00:00    2017-09-15 14:00:00
121225    36772    508    2017-09-15 07:20:00    2017-09-15 07:20:00
121226    36772    699    2017-09-15 22:09:00    2017-09-15 22:09:00
121227    36772    645    2017-09-15 20:08:00    2017-09-15 20:08:00
121228    36772    907    2017-09-15 19:51:00    2017-09-15 19:51:00
121229    36772    534    2017-09-15 03:09:00    2017-09-15 03:09:00
121230    36773    742    2017-09-15 05:19:00    2017-09-15 05:19:00
121231    36773    535    2017-09-15 07:20:00    2017-09-15 07:20:00
121232    36773    859    2017-09-15 17:24:00    2017-09-15 17:24:00
121233    36773    901    2017-09-15 02:25:00    2017-09-15 02:25:00
121234    36773    623    2017-09-15 20:17:00    2017-09-15 20:17:00
121235    36774    832    2017-09-15 05:48:00    2017-09-15 05:48:00
121236    36774    937    2017-09-15 17:39:00    2017-09-15 17:39:00
121237    36774    914    2017-09-15 19:16:00    2017-09-15 19:16:00
121238    36774    864    2017-09-15 14:32:00    2017-09-15 14:32:00
121239    36774    781    2017-09-15 10:26:00    2017-09-15 10:26:00
121240    36775    467    2017-09-15 10:27:00    2017-09-15 10:27:00
121241    36775    861    2017-09-15 05:38:00    2017-09-15 05:38:00
121242    36775    563    2017-09-15 19:38:00    2017-09-15 19:38:00
121243    36775    681    2017-09-15 20:33:00    2017-09-15 20:33:00
121244    36775    725    2017-09-15 10:17:00    2017-09-15 10:17:00
121245    36776    789    2017-09-15 07:53:00    2017-09-15 07:53:00
121246    36776    781    2017-09-15 02:40:00    2017-09-15 02:40:00
121247    36776    727    2017-09-15 05:57:00    2017-09-15 05:57:00
121248    36776    864    2017-09-15 13:35:00    2017-09-15 13:35:00
121249    36776    695    2017-09-15 12:40:00    2017-09-15 12:40:00
121250    36777    478    2017-09-15 15:30:00    2017-09-15 15:30:00
121251    36777    675    2017-09-15 10:54:00    2017-09-15 10:54:00
121252    36777    688    2017-09-15 09:45:00    2017-09-15 09:45:00
121253    36777    535    2017-09-15 17:45:00    2017-09-15 17:45:00
121254    36777    761    2017-09-15 13:58:00    2017-09-15 13:58:00
121255    36778    601    2017-09-15 05:39:00    2017-09-15 05:39:00
121256    36778    756    2017-09-15 03:44:00    2017-09-15 03:44:00
121257    36778    468    2017-09-15 21:54:00    2017-09-15 21:54:00
121258    36778    737    2017-09-15 03:28:00    2017-09-15 03:28:00
121259    36778    843    2017-09-15 19:00:00    2017-09-15 19:00:00
121260    36779    587    2017-09-16 03:29:00    2017-09-16 03:29:00
121261    36779    919    2017-09-16 22:13:00    2017-09-16 22:13:00
121262    36779    757    2017-09-16 14:43:00    2017-09-16 14:43:00
121263    36779    757    2017-09-16 16:26:00    2017-09-16 16:26:00
121264    36779    747    2017-09-16 15:07:00    2017-09-16 15:07:00
121265    36780    808    2017-09-16 05:47:00    2017-09-16 05:47:00
121266    36780    652    2017-09-16 17:02:00    2017-09-16 17:02:00
121267    36780    550    2017-09-16 09:39:00    2017-09-16 09:39:00
121268    36780    925    2017-09-16 03:10:00    2017-09-16 03:10:00
121269    36780    868    2017-09-16 07:52:00    2017-09-16 07:52:00
121270    36781    830    2017-09-16 05:23:00    2017-09-16 05:23:00
121271    36781    586    2017-09-16 10:01:00    2017-09-16 10:01:00
121272    36781    500    2017-09-16 04:17:00    2017-09-16 04:17:00
121273    36781    816    2017-09-16 05:04:00    2017-09-16 05:04:00
121274    36781    839    2017-09-16 15:17:00    2017-09-16 15:17:00
121275    36782    821    2017-09-16 06:44:00    2017-09-16 06:44:00
121276    36782    956    2017-09-16 18:00:00    2017-09-16 18:00:00
121277    36782    751    2017-09-16 13:32:00    2017-09-16 13:32:00
121278    36782    853    2017-09-16 21:52:00    2017-09-16 21:52:00
121279    36782    824    2017-09-16 05:41:00    2017-09-16 05:41:00
121280    36783    775    2017-09-16 11:34:00    2017-09-16 11:34:00
121281    36783    798    2017-09-16 23:56:00    2017-09-16 23:56:00
121282    36783    771    2017-09-16 09:01:00    2017-09-16 09:01:00
121283    36783    608    2017-09-16 06:23:00    2017-09-16 06:23:00
121284    36783    526    2017-09-16 12:27:00    2017-09-16 12:27:00
121285    36784    819    2017-09-16 15:16:00    2017-09-16 15:16:00
121286    36784    663    2017-09-16 13:42:00    2017-09-16 13:42:00
121287    36784    835    2017-09-16 03:02:00    2017-09-16 03:02:00
121288    36784    604    2017-09-16 08:06:00    2017-09-16 08:06:00
121289    36784    707    2017-09-16 06:35:00    2017-09-16 06:35:00
121290    36785    616    2017-09-16 05:22:00    2017-09-16 05:22:00
121291    36785    873    2017-09-16 09:01:00    2017-09-16 09:01:00
121292    36785    704    2017-09-16 08:59:00    2017-09-16 08:59:00
121293    36785    738    2017-09-16 17:00:00    2017-09-16 17:00:00
121294    36785    878    2017-09-16 13:07:00    2017-09-16 13:07:00
121295    36786    806    2017-09-16 21:28:00    2017-09-16 21:28:00
121296    36786    537    2017-09-16 02:31:00    2017-09-16 02:31:00
121297    36786    595    2017-09-16 08:50:00    2017-09-16 08:50:00
121298    36786    646    2017-09-16 10:51:00    2017-09-16 10:51:00
121299    36786    748    2017-09-16 03:58:00    2017-09-16 03:58:00
121300    36787    555    2017-09-16 17:00:00    2017-09-16 17:00:00
121301    36787    633    2017-09-16 12:30:00    2017-09-16 12:30:00
121302    36787    467    2017-09-16 09:34:00    2017-09-16 09:34:00
121303    36787    616    2017-09-16 17:50:00    2017-09-16 17:50:00
121304    36787    689    2017-09-16 22:49:00    2017-09-16 22:49:00
121305    36788    517    2017-09-16 16:49:00    2017-09-16 16:49:00
121306    36788    463    2017-09-16 04:54:00    2017-09-16 04:54:00
121307    36788    800    2017-09-16 05:51:00    2017-09-16 05:51:00
121308    36788    944    2017-09-16 06:14:00    2017-09-16 06:14:00
121309    36788    531    2017-09-16 05:49:00    2017-09-16 05:49:00
121310    36789    872    2017-09-16 05:41:00    2017-09-16 05:41:00
121311    36789    714    2017-09-16 22:29:00    2017-09-16 22:29:00
121312    36789    789    2017-09-16 19:42:00    2017-09-16 19:42:00
121313    36789    536    2017-09-16 10:35:00    2017-09-16 10:35:00
121314    36789    679    2017-09-16 04:00:00    2017-09-16 04:00:00
121315    36790    519    2017-09-16 04:44:00    2017-09-16 04:44:00
121316    36790    862    2017-09-16 12:00:00    2017-09-16 12:00:00
121317    36790    843    2017-09-16 07:00:00    2017-09-16 07:00:00
121318    36790    745    2017-09-16 14:54:00    2017-09-16 14:54:00
121319    36790    504    2017-09-16 16:45:00    2017-09-16 16:45:00
121320    36791    479    2017-09-16 01:38:00    2017-09-16 01:38:00
121321    36791    610    2017-09-16 21:00:00    2017-09-16 21:00:00
121322    36791    527    2017-09-16 04:42:00    2017-09-16 04:42:00
121323    36791    933    2017-09-16 02:34:00    2017-09-16 02:34:00
121324    36791    676    2017-09-16 12:30:00    2017-09-16 12:30:00
121325    36792    719    2017-09-16 20:17:00    2017-09-16 20:17:00
121326    36792    874    2017-09-16 05:22:00    2017-09-16 05:22:00
121327    36792    763    2017-09-16 07:52:00    2017-09-16 07:52:00
121328    36792    836    2017-09-16 23:13:00    2017-09-16 23:13:00
121329    36792    663    2017-09-16 10:22:00    2017-09-16 10:22:00
121330    36793    895    2017-09-16 05:58:00    2017-09-16 05:58:00
121331    36793    620    2017-09-16 19:07:00    2017-09-16 19:07:00
121332    36793    940    2017-09-16 12:38:00    2017-09-16 12:38:00
121333    36793    801    2017-09-16 09:45:00    2017-09-16 09:45:00
121334    36793    855    2017-09-16 19:17:00    2017-09-16 19:17:00
121335    36794    882    2017-09-16 10:19:00    2017-09-16 10:19:00
121336    36794    740    2017-09-16 13:05:00    2017-09-16 13:05:00
121337    36794    524    2017-09-16 16:19:00    2017-09-16 16:19:00
121338    36794    952    2017-09-16 21:38:00    2017-09-16 21:38:00
121339    36794    651    2017-09-16 03:45:00    2017-09-16 03:45:00
121340    36795    722    2017-09-16 21:43:00    2017-09-16 21:43:00
121341    36795    520    2017-09-16 15:01:00    2017-09-16 15:01:00
121342    36795    687    2017-09-16 15:23:00    2017-09-16 15:23:00
121343    36795    498    2017-09-16 16:05:00    2017-09-16 16:05:00
121344    36795    532    2017-09-16 22:51:00    2017-09-16 22:51:00
121345    36796    796    2017-09-16 09:10:00    2017-09-16 09:10:00
121346    36796    782    2017-09-16 02:44:00    2017-09-16 02:44:00
121347    36796    842    2017-09-16 20:58:00    2017-09-16 20:58:00
121348    36796    940    2017-09-16 18:13:00    2017-09-16 18:13:00
121349    36796    957    2017-09-16 06:08:00    2017-09-16 06:08:00
121350    36797    649    2017-09-16 04:55:00    2017-09-16 04:55:00
121351    36797    653    2017-09-16 02:23:00    2017-09-16 02:23:00
121352    36797    949    2017-09-16 18:02:00    2017-09-16 18:02:00
121353    36797    927    2017-09-16 02:56:00    2017-09-16 02:56:00
121354    36797    601    2017-09-16 08:45:00    2017-09-16 08:45:00
121355    36798    606    2017-09-16 14:25:00    2017-09-16 14:25:00
121356    36798    813    2017-09-16 18:00:00    2017-09-16 18:00:00
121357    36798    887    2017-09-16 20:09:00    2017-09-16 20:09:00
121358    36798    481    2017-09-16 16:08:00    2017-09-16 16:08:00
121359    36798    711    2017-09-16 19:03:00    2017-09-16 19:03:00
121360    36799    648    2017-09-16 04:18:00    2017-09-16 04:18:00
121361    36799    533    2017-09-16 19:25:00    2017-09-16 19:25:00
121362    36799    739    2017-09-16 19:35:00    2017-09-16 19:35:00
121363    36799    694    2017-09-16 19:18:00    2017-09-16 19:18:00
121364    36799    504    2017-09-16 07:42:00    2017-09-16 07:42:00
121365    36800    705    2017-09-16 10:52:00    2017-09-16 10:52:00
121366    36800    692    2017-09-16 05:57:00    2017-09-16 05:57:00
121367    36800    906    2017-09-16 08:24:00    2017-09-16 08:24:00
121368    36800    912    2017-09-16 23:43:00    2017-09-16 23:43:00
121369    36800    776    2017-09-16 14:50:00    2017-09-16 14:50:00
121370    36801    625    2017-09-16 03:40:00    2017-09-16 03:40:00
121371    36801    845    2017-09-16 14:34:00    2017-09-16 14:34:00
121372    36801    689    2017-09-16 10:38:00    2017-09-16 10:38:00
121373    36801    645    2017-09-16 18:25:00    2017-09-16 18:25:00
121374    36801    586    2017-09-16 16:11:00    2017-09-16 16:11:00
121375    36802    855    2017-09-16 04:00:00    2017-09-16 04:00:00
121376    36802    643    2017-09-16 18:00:00    2017-09-16 18:00:00
121377    36802    627    2017-09-16 16:00:00    2017-09-16 16:00:00
121378    36802    523    2017-09-16 03:15:00    2017-09-16 03:15:00
121379    36802    941    2017-09-16 08:39:00    2017-09-16 08:39:00
121380    36803    605    2017-09-16 10:17:00    2017-09-16 10:17:00
121381    36803    752    2017-09-16 06:03:00    2017-09-16 06:03:00
121382    36803    490    2017-09-16 05:58:00    2017-09-16 05:58:00
121383    36803    947    2017-09-16 21:11:00    2017-09-16 21:11:00
121384    36803    929    2017-09-16 05:20:00    2017-09-16 05:20:00
121385    36804    930    2017-09-16 13:22:00    2017-09-16 13:22:00
121386    36804    904    2017-09-16 23:04:00    2017-09-16 23:04:00
121387    36804    917    2017-09-16 03:56:00    2017-09-16 03:56:00
121388    36804    555    2017-09-16 01:09:00    2017-09-16 01:09:00
121389    36804    512    2017-09-16 18:37:00    2017-09-16 18:37:00
121390    36805    647    2017-09-16 23:00:00    2017-09-16 23:00:00
121391    36805    463    2017-09-16 01:06:00    2017-09-16 01:06:00
121392    36805    957    2017-09-16 23:55:00    2017-09-16 23:55:00
121393    36805    737    2017-09-16 05:44:00    2017-09-16 05:44:00
121394    36805    793    2017-09-16 09:03:00    2017-09-16 09:03:00
121395    36806    713    2017-09-16 01:12:00    2017-09-16 01:12:00
121396    36806    682    2017-09-16 08:17:00    2017-09-16 08:17:00
121397    36806    933    2017-09-16 03:32:00    2017-09-16 03:32:00
121398    36806    901    2017-09-16 11:16:00    2017-09-16 11:16:00
121399    36806    682    2017-09-16 17:37:00    2017-09-16 17:37:00
121400    36807    861    2017-09-16 03:23:00    2017-09-16 03:23:00
121401    36807    739    2017-09-16 22:24:00    2017-09-16 22:24:00
121402    36807    522    2017-09-16 20:08:00    2017-09-16 20:08:00
121403    36807    928    2017-09-16 14:50:00    2017-09-16 14:50:00
121404    36807    927    2017-09-16 07:03:00    2017-09-16 07:03:00
121405    36808    619    2017-09-16 03:15:00    2017-09-16 03:15:00
121406    36808    513    2017-09-16 14:15:00    2017-09-16 14:15:00
121407    36808    941    2017-09-16 16:51:00    2017-09-16 16:51:00
121408    36808    808    2017-09-16 15:18:00    2017-09-16 15:18:00
121409    36808    471    2017-09-16 04:01:00    2017-09-16 04:01:00
121410    36809    706    2017-09-16 11:40:00    2017-09-16 11:40:00
121411    36809    937    2017-09-16 16:22:00    2017-09-16 16:22:00
121412    36809    564    2017-09-16 23:09:00    2017-09-16 23:09:00
121413    36809    724    2017-09-16 20:36:00    2017-09-16 20:36:00
121414    36809    608    2017-09-16 11:27:00    2017-09-16 11:27:00
121415    36810    707    2017-09-16 17:41:00    2017-09-16 17:41:00
121416    36810    598    2017-09-16 02:04:00    2017-09-16 02:04:00
121417    36810    821    2017-09-16 19:52:00    2017-09-16 19:52:00
121418    36810    810    2017-09-16 01:42:00    2017-09-16 01:42:00
121419    36810    748    2017-09-16 10:37:00    2017-09-16 10:37:00
121420    36811    872    2017-09-16 16:55:00    2017-09-16 16:55:00
121421    36811    573    2017-09-16 12:03:00    2017-09-16 12:03:00
121422    36811    762    2017-09-16 02:50:00    2017-09-16 02:50:00
121423    36811    593    2017-09-16 04:08:00    2017-09-16 04:08:00
121424    36811    636    2017-09-16 15:12:00    2017-09-16 15:12:00
121425    36812    664    2017-09-16 11:26:00    2017-09-16 11:26:00
121426    36812    524    2017-09-16 13:35:00    2017-09-16 13:35:00
121427    36812    959    2017-09-16 02:04:00    2017-09-16 02:04:00
121428    36812    562    2017-09-16 10:34:00    2017-09-16 10:34:00
121429    36812    887    2017-09-16 15:57:00    2017-09-16 15:57:00
121430    36813    562    2017-09-16 15:51:00    2017-09-16 15:51:00
121431    36813    812    2017-09-16 15:21:00    2017-09-16 15:21:00
121432    36813    927    2017-09-16 17:47:00    2017-09-16 17:47:00
121433    36813    706    2017-09-16 11:54:00    2017-09-16 11:54:00
121434    36813    836    2017-09-16 23:42:00    2017-09-16 23:42:00
121435    36814    613    2017-09-16 19:37:00    2017-09-16 19:37:00
121436    36814    940    2017-09-16 10:14:00    2017-09-16 10:14:00
121437    36814    836    2017-09-16 16:45:00    2017-09-16 16:45:00
121438    36814    871    2017-09-16 21:56:00    2017-09-16 21:56:00
121439    36814    623    2017-09-16 13:14:00    2017-09-16 13:14:00
121440    36815    494    2017-09-16 22:17:00    2017-09-16 22:17:00
121441    36815    802    2017-09-16 20:42:00    2017-09-16 20:42:00
121442    36815    772    2017-09-16 15:04:00    2017-09-16 15:04:00
121443    36815    646    2017-09-16 05:57:00    2017-09-16 05:57:00
121444    36815    653    2017-09-16 01:26:00    2017-09-16 01:26:00
121445    36816    875    2017-09-16 06:57:00    2017-09-16 06:57:00
121446    36816    520    2017-09-16 12:09:00    2017-09-16 12:09:00
121447    36816    491    2017-09-16 16:43:00    2017-09-16 16:43:00
121448    36816    551    2017-09-16 18:57:00    2017-09-16 18:57:00
121449    36816    549    2017-09-16 13:19:00    2017-09-16 13:19:00
121450    36817    868    2017-09-16 15:30:00    2017-09-16 15:30:00
121451    36817    637    2017-09-16 10:36:00    2017-09-16 10:36:00
121452    36817    691    2017-09-16 01:49:00    2017-09-16 01:49:00
121453    36817    593    2017-09-16 09:04:00    2017-09-16 09:04:00
121454    36817    481    2017-09-16 14:00:00    2017-09-16 14:00:00
121455    36818    810    2017-09-16 01:12:00    2017-09-16 01:12:00
121456    36818    802    2017-09-16 10:19:00    2017-09-16 10:19:00
121457    36818    590    2017-09-16 18:03:00    2017-09-16 18:03:00
121458    36818    855    2017-09-16 07:42:00    2017-09-16 07:42:00
121459    36818    885    2017-09-16 12:04:00    2017-09-16 12:04:00
121460    36819    474    2017-09-16 20:52:00    2017-09-16 20:52:00
121461    36819    520    2017-09-16 19:50:00    2017-09-16 19:50:00
121462    36819    726    2017-09-16 22:51:00    2017-09-16 22:51:00
121463    36819    591    2017-09-16 08:03:00    2017-09-16 08:03:00
121464    36819    792    2017-09-16 13:57:00    2017-09-16 13:57:00
121465    36820    515    2017-09-16 16:16:00    2017-09-16 16:16:00
121466    36820    727    2017-09-16 02:06:00    2017-09-16 02:06:00
121467    36820    772    2017-09-16 20:50:00    2017-09-16 20:50:00
121468    36820    747    2017-09-16 08:21:00    2017-09-16 08:21:00
121469    36820    772    2017-09-16 15:25:00    2017-09-16 15:25:00
121470    36821    617    2017-09-16 10:44:00    2017-09-16 10:44:00
121471    36821    948    2017-09-16 18:36:00    2017-09-16 18:36:00
121472    36821    589    2017-09-16 05:20:00    2017-09-16 05:20:00
121473    36821    675    2017-09-16 21:41:00    2017-09-16 21:41:00
121474    36821    564    2017-09-16 17:14:00    2017-09-16 17:14:00
121475    36822    551    2017-09-16 10:07:00    2017-09-16 10:07:00
121476    36822    580    2017-09-16 14:01:00    2017-09-16 14:01:00
121477    36822    820    2017-09-16 01:19:00    2017-09-16 01:19:00
121478    36822    707    2017-09-16 09:27:00    2017-09-16 09:27:00
121479    36822    708    2017-09-16 14:21:00    2017-09-16 14:21:00
121480    36823    678    2017-09-16 22:17:00    2017-09-16 22:17:00
121481    36823    676    2017-09-16 07:35:00    2017-09-16 07:35:00
121482    36823    726    2017-09-16 09:49:00    2017-09-16 09:49:00
121483    36823    623    2017-09-16 02:24:00    2017-09-16 02:24:00
121484    36823    889    2017-09-16 12:24:00    2017-09-16 12:24:00
121485    36824    482    2017-09-16 16:57:00    2017-09-16 16:57:00
121486    36824    688    2017-09-16 03:55:00    2017-09-16 03:55:00
121487    36824    836    2017-09-16 09:29:00    2017-09-16 09:29:00
121488    36824    716    2017-09-16 13:05:00    2017-09-16 13:05:00
121489    36824    915    2017-09-16 18:11:00    2017-09-16 18:11:00
121490    36825    888    2017-09-16 21:03:00    2017-09-16 21:03:00
121491    36825    775    2017-09-16 06:24:00    2017-09-16 06:24:00
121492    36825    680    2017-09-16 03:55:00    2017-09-16 03:55:00
121493    36825    854    2017-09-16 17:12:00    2017-09-16 17:12:00
121494    36825    552    2017-09-16 05:59:00    2017-09-16 05:59:00
121495    36826    506    2017-09-16 13:40:00    2017-09-16 13:40:00
121496    36826    762    2017-09-16 20:23:00    2017-09-16 20:23:00
121497    36826    724    2017-09-16 21:42:00    2017-09-16 21:42:00
121498    36826    612    2017-09-16 20:16:00    2017-09-16 20:16:00
121499    36826    703    2017-09-16 18:36:00    2017-09-16 18:36:00
121500    36827    857    2017-09-16 17:37:00    2017-09-16 17:37:00
121501    36827    885    2017-09-16 18:56:00    2017-09-16 18:56:00
121502    36827    586    2017-09-16 05:04:00    2017-09-16 05:04:00
121503    36827    900    2017-09-16 15:29:00    2017-09-16 15:29:00
121504    36827    780    2017-09-16 13:20:00    2017-09-16 13:20:00
121505    36828    926    2017-09-16 09:17:00    2017-09-16 09:17:00
121506    36828    523    2017-09-16 11:07:00    2017-09-16 11:07:00
121507    36828    837    2017-09-16 15:17:00    2017-09-16 15:17:00
121508    36828    745    2017-09-16 22:45:00    2017-09-16 22:45:00
121509    36828    914    2017-09-16 07:00:00    2017-09-16 07:00:00
121510    36829    674    2017-09-16 15:57:00    2017-09-16 15:57:00
121511    36829    886    2017-09-16 03:13:00    2017-09-16 03:13:00
121512    36829    755    2017-09-16 15:28:00    2017-09-16 15:28:00
121513    36829    717    2017-09-16 17:55:00    2017-09-16 17:55:00
121514    36829    842    2017-09-16 09:05:00    2017-09-16 09:05:00
121515    36830    555    2017-09-16 22:18:00    2017-09-16 22:18:00
121516    36830    937    2017-09-16 02:46:00    2017-09-16 02:46:00
121517    36830    894    2017-09-16 23:25:00    2017-09-16 23:25:00
121518    36830    835    2017-09-16 04:08:00    2017-09-16 04:08:00
121519    36830    588    2017-09-16 03:02:00    2017-09-16 03:02:00
121520    36831    661    2017-09-16 16:39:00    2017-09-16 16:39:00
121521    36831    704    2017-09-16 16:05:00    2017-09-16 16:05:00
121522    36831    576    2017-09-16 23:00:00    2017-09-16 23:00:00
121523    36831    752    2017-09-16 14:55:00    2017-09-16 14:55:00
121524    36831    740    2017-09-16 08:10:00    2017-09-16 08:10:00
121525    36832    469    2017-09-16 10:52:00    2017-09-16 10:52:00
121526    36832    669    2017-09-16 16:44:00    2017-09-16 16:44:00
121527    36832    773    2017-09-16 16:20:00    2017-09-16 16:20:00
121528    36832    546    2017-09-16 11:26:00    2017-09-16 11:26:00
121529    36832    634    2017-09-16 20:36:00    2017-09-16 20:36:00
121530    36833    609    2017-09-16 19:44:00    2017-09-16 19:44:00
121531    36833    759    2017-09-16 07:13:00    2017-09-16 07:13:00
121532    36833    717    2017-09-16 18:47:00    2017-09-16 18:47:00
121533    36833    685    2017-09-16 03:50:00    2017-09-16 03:50:00
121534    36833    483    2017-09-16 07:04:00    2017-09-16 07:04:00
121535    36834    665    2017-09-16 08:10:00    2017-09-16 08:10:00
121536    36834    902    2017-09-16 17:07:00    2017-09-16 17:07:00
121537    36834    912    2017-09-16 21:21:00    2017-09-16 21:21:00
121538    36834    724    2017-09-16 03:52:00    2017-09-16 03:52:00
121539    36834    711    2017-09-16 19:56:00    2017-09-16 19:56:00
121540    36835    671    2017-09-16 21:54:00    2017-09-16 21:54:00
121541    36835    707    2017-09-16 05:42:00    2017-09-16 05:42:00
121542    36835    940    2017-09-16 03:24:00    2017-09-16 03:24:00
121543    36835    483    2017-09-16 17:46:00    2017-09-16 17:46:00
121544    36835    834    2017-09-16 18:48:00    2017-09-16 18:48:00
121545    36836    761    2017-09-16 06:51:00    2017-09-16 06:51:00
121546    36836    556    2017-09-16 11:30:00    2017-09-16 11:30:00
121547    36836    791    2017-09-16 12:10:00    2017-09-16 12:10:00
121548    36836    632    2017-09-16 07:53:00    2017-09-16 07:53:00
121549    36836    655    2017-09-16 02:30:00    2017-09-16 02:30:00
121550    36837    579    2017-09-16 18:16:00    2017-09-16 18:16:00
121551    36837    600    2017-09-16 12:41:00    2017-09-16 12:41:00
121552    36837    498    2017-09-16 16:41:00    2017-09-16 16:41:00
121553    36837    646    2017-09-16 13:28:00    2017-09-16 13:28:00
121554    36837    740    2017-09-16 09:40:00    2017-09-16 09:40:00
121555    36838    622    2017-09-16 17:34:00    2017-09-16 17:34:00
121556    36838    832    2017-09-16 22:27:00    2017-09-16 22:27:00
121557    36838    583    2017-09-16 07:43:00    2017-09-16 07:43:00
121558    36838    679    2017-09-16 20:52:00    2017-09-16 20:52:00
121559    36838    492    2017-09-16 08:48:00    2017-09-16 08:48:00
121560    36839    678    2017-09-16 14:28:00    2017-09-16 14:28:00
121561    36839    633    2017-09-16 12:44:00    2017-09-16 12:44:00
121562    36839    525    2017-09-16 23:57:00    2017-09-16 23:57:00
121563    36839    553    2017-09-16 21:10:00    2017-09-16 21:10:00
121564    36839    723    2017-09-16 11:00:00    2017-09-16 11:00:00
121565    36840    882    2017-09-16 11:55:00    2017-09-16 11:55:00
121566    36840    631    2017-09-16 14:06:00    2017-09-16 14:06:00
121567    36840    689    2017-09-16 20:50:00    2017-09-16 20:50:00
121568    36840    663    2017-09-16 23:55:00    2017-09-16 23:55:00
121569    36840    813    2017-09-16 02:56:00    2017-09-16 02:56:00
121570    36841    955    2017-09-16 06:36:00    2017-09-16 06:36:00
121571    36841    744    2017-09-16 12:34:00    2017-09-16 12:34:00
121572    36841    482    2017-09-16 22:25:00    2017-09-16 22:25:00
121573    36841    915    2017-09-16 20:59:00    2017-09-16 20:59:00
121574    36841    621    2017-09-16 09:55:00    2017-09-16 09:55:00
121575    36842    615    2017-09-16 08:06:00    2017-09-16 08:06:00
121576    36842    800    2017-09-16 21:19:00    2017-09-16 21:19:00
121577    36842    769    2017-09-16 16:08:00    2017-09-16 16:08:00
121578    36842    578    2017-09-16 22:51:00    2017-09-16 22:51:00
121579    36842    630    2017-09-16 23:09:00    2017-09-16 23:09:00
121580    36843    591    2017-09-16 03:41:00    2017-09-16 03:41:00
121581    36843    840    2017-09-16 03:04:00    2017-09-16 03:04:00
121582    36843    732    2017-09-16 09:50:00    2017-09-16 09:50:00
121583    36843    952    2017-09-16 05:25:00    2017-09-16 05:25:00
121584    36843    588    2017-09-16 21:34:00    2017-09-16 21:34:00
121585    36844    530    2017-09-16 04:52:00    2017-09-16 04:52:00
121586    36844    592    2017-09-16 17:56:00    2017-09-16 17:56:00
121587    36844    477    2017-09-16 17:09:00    2017-09-16 17:09:00
121588    36844    850    2017-09-16 18:02:00    2017-09-16 18:02:00
121589    36844    787    2017-09-16 11:00:00    2017-09-16 11:00:00
121590    36845    701    2017-09-16 20:20:00    2017-09-16 20:20:00
121591    36845    690    2017-09-16 09:59:00    2017-09-16 09:59:00
121592    36845    865    2017-09-16 05:54:00    2017-09-16 05:54:00
121593    36845    487    2017-09-16 05:44:00    2017-09-16 05:44:00
121594    36845    925    2017-09-16 16:16:00    2017-09-16 16:16:00
121595    36846    689    2017-09-16 19:25:00    2017-09-16 19:25:00
121596    36846    574    2017-09-16 08:46:00    2017-09-16 08:46:00
121597    36846    597    2017-09-16 08:59:00    2017-09-16 08:59:00
121598    36846    953    2017-09-16 13:49:00    2017-09-16 13:49:00
121599    36846    793    2017-09-16 02:22:00    2017-09-16 02:22:00
121600    36847    850    2017-09-16 06:29:00    2017-09-16 06:29:00
121601    36847    922    2017-09-16 03:23:00    2017-09-16 03:23:00
121602    36847    721    2017-09-16 11:40:00    2017-09-16 11:40:00
121603    36847    853    2017-09-16 16:54:00    2017-09-16 16:54:00
121604    36847    941    2017-09-16 19:09:00    2017-09-16 19:09:00
121605    36848    483    2017-09-16 09:21:00    2017-09-16 09:21:00
121606    36848    830    2017-09-16 09:21:00    2017-09-16 09:21:00
121607    36848    700    2017-09-16 02:45:00    2017-09-16 02:45:00
121608    36848    895    2017-09-16 22:20:00    2017-09-16 22:20:00
121609    36848    853    2017-09-16 17:37:00    2017-09-16 17:37:00
121610    36849    489    2017-09-16 01:54:00    2017-09-16 01:54:00
121611    36849    709    2017-09-16 22:09:00    2017-09-16 22:09:00
121612    36849    593    2017-09-16 23:21:00    2017-09-16 23:21:00
121613    36849    663    2017-09-16 02:45:00    2017-09-16 02:45:00
121614    36849    737    2017-09-16 08:24:00    2017-09-16 08:24:00
121615    36850    958    2017-09-16 21:49:00    2017-09-16 21:49:00
121616    36850    871    2017-09-16 09:54:00    2017-09-16 09:54:00
121617    36850    766    2017-09-16 15:14:00    2017-09-16 15:14:00
121618    36850    500    2017-09-16 01:16:00    2017-09-16 01:16:00
121619    36850    946    2017-09-16 14:08:00    2017-09-16 14:08:00
121620    36851    512    2017-09-16 15:50:00    2017-09-16 15:50:00
121621    36851    677    2017-09-16 12:06:00    2017-09-16 12:06:00
121622    36851    571    2017-09-16 19:18:00    2017-09-16 19:18:00
121623    36851    739    2017-09-16 06:31:00    2017-09-16 06:31:00
121624    36851    509    2017-09-16 02:10:00    2017-09-16 02:10:00
121625    36852    551    2017-09-16 20:46:00    2017-09-16 20:46:00
121626    36852    851    2017-09-16 08:49:00    2017-09-16 08:49:00
121627    36852    849    2017-09-16 08:16:00    2017-09-16 08:16:00
121628    36852    906    2017-09-16 10:01:00    2017-09-16 10:01:00
121629    36852    791    2017-09-16 02:23:00    2017-09-16 02:23:00
121630    36853    467    2017-09-16 19:34:00    2017-09-16 19:34:00
121631    36853    668    2017-09-16 04:29:00    2017-09-16 04:29:00
121632    36853    470    2017-09-16 16:36:00    2017-09-16 16:36:00
121633    36853    598    2017-09-16 02:28:00    2017-09-16 02:28:00
121634    36853    481    2017-09-16 07:22:00    2017-09-16 07:22:00
121635    36854    663    2017-09-16 15:29:00    2017-09-16 15:29:00
121636    36854    791    2017-09-16 12:43:00    2017-09-16 12:43:00
121637    36854    513    2017-09-16 03:15:00    2017-09-16 03:15:00
121638    36854    772    2017-09-16 01:07:00    2017-09-16 01:07:00
121639    36854    799    2017-09-16 13:48:00    2017-09-16 13:48:00
121640    36855    906    2017-09-16 20:06:00    2017-09-16 20:06:00
121641    36855    496    2017-09-16 02:24:00    2017-09-16 02:24:00
121642    36855    615    2017-09-16 19:23:00    2017-09-16 19:23:00
121643    36855    696    2017-09-16 08:55:00    2017-09-16 08:55:00
121644    36855    778    2017-09-16 18:33:00    2017-09-16 18:33:00
121645    36856    617    2017-09-16 09:44:00    2017-09-16 09:44:00
121646    36856    710    2017-09-16 17:38:00    2017-09-16 17:38:00
121647    36856    769    2017-09-16 01:13:00    2017-09-16 01:13:00
121648    36856    595    2017-09-16 17:25:00    2017-09-16 17:25:00
121649    36856    690    2017-09-16 02:07:00    2017-09-16 02:07:00
121650    36857    737    2017-09-16 15:58:00    2017-09-16 15:58:00
121651    36857    769    2017-09-16 16:44:00    2017-09-16 16:44:00
121652    36857    932    2017-09-16 12:57:00    2017-09-16 12:57:00
121653    36857    604    2017-09-16 10:22:00    2017-09-16 10:22:00
121654    36857    925    2017-09-16 14:26:00    2017-09-16 14:26:00
121655    36858    592    2017-09-16 11:06:00    2017-09-16 11:06:00
121656    36858    678    2017-09-16 03:06:00    2017-09-16 03:06:00
121657    36858    628    2017-09-16 01:35:00    2017-09-16 01:35:00
121658    36858    932    2017-09-16 04:21:00    2017-09-16 04:21:00
121659    36858    894    2017-09-16 18:11:00    2017-09-16 18:11:00
121660    36859    660    2017-09-16 22:10:00    2017-09-16 22:10:00
121661    36859    586    2017-09-16 10:31:00    2017-09-16 10:31:00
121662    36859    961    2017-09-16 20:23:00    2017-09-16 20:23:00
121663    36859    632    2017-09-16 05:00:00    2017-09-16 05:00:00
121664    36859    490    2017-09-16 10:16:00    2017-09-16 10:16:00
121665    36860    895    2017-09-16 20:41:00    2017-09-16 20:41:00
121666    36860    851    2017-09-16 04:27:00    2017-09-16 04:27:00
121667    36860    887    2017-09-16 10:02:00    2017-09-16 10:02:00
121668    36860    540    2017-09-16 09:22:00    2017-09-16 09:22:00
121669    36860    742    2017-09-16 20:28:00    2017-09-16 20:28:00
121670    36861    581    2017-09-16 21:28:00    2017-09-16 21:28:00
121671    36861    554    2017-09-16 06:10:00    2017-09-16 06:10:00
121672    36861    772    2017-09-16 09:54:00    2017-09-16 09:54:00
121673    36861    686    2017-09-16 23:51:00    2017-09-16 23:51:00
121674    36861    592    2017-09-16 02:56:00    2017-09-16 02:56:00
121675    36862    535    2017-09-16 18:25:00    2017-09-16 18:25:00
121676    36862    566    2017-09-16 17:33:00    2017-09-16 17:33:00
121677    36862    540    2017-09-16 12:09:00    2017-09-16 12:09:00
121678    36862    783    2017-09-16 18:41:00    2017-09-16 18:41:00
121679    36862    798    2017-09-16 15:45:00    2017-09-16 15:45:00
121680    36863    883    2017-09-16 18:00:00    2017-09-16 18:00:00
121681    36863    668    2017-09-16 15:05:00    2017-09-16 15:05:00
121682    36863    599    2017-09-16 18:26:00    2017-09-16 18:26:00
121683    36863    614    2017-09-16 15:41:00    2017-09-16 15:41:00
121684    36863    481    2017-09-16 23:03:00    2017-09-16 23:03:00
121685    36864    528    2017-09-16 07:42:00    2017-09-16 07:42:00
121686    36864    913    2017-09-16 06:05:00    2017-09-16 06:05:00
121687    36864    904    2017-09-16 11:00:00    2017-09-16 11:00:00
121688    36864    868    2017-09-16 07:50:00    2017-09-16 07:50:00
121689    36864    685    2017-09-16 10:23:00    2017-09-16 10:23:00
121690    36865    607    2017-09-16 03:06:00    2017-09-16 03:06:00
121691    36865    884    2017-09-16 01:41:00    2017-09-16 01:41:00
121692    36865    814    2017-09-16 15:38:00    2017-09-16 15:38:00
121693    36865    799    2017-09-16 19:48:00    2017-09-16 19:48:00
121694    36865    572    2017-09-16 11:28:00    2017-09-16 11:28:00
121695    36866    832    2017-09-16 16:27:00    2017-09-16 16:27:00
121696    36866    880    2017-09-16 10:36:00    2017-09-16 10:36:00
121697    36866    927    2017-09-16 18:52:00    2017-09-16 18:52:00
121698    36866    606    2017-09-16 05:24:00    2017-09-16 05:24:00
121699    36866    920    2017-09-16 07:21:00    2017-09-16 07:21:00
121700    36867    610    2017-09-16 09:11:00    2017-09-16 09:11:00
121701    36867    531    2017-09-16 23:44:00    2017-09-16 23:44:00
121702    36867    601    2017-09-16 20:20:00    2017-09-16 20:20:00
121703    36867    562    2017-09-16 06:38:00    2017-09-16 06:38:00
121704    36867    498    2017-09-16 15:13:00    2017-09-16 15:13:00
121705    36868    630    2017-09-16 18:16:00    2017-09-16 18:16:00
121706    36868    847    2017-09-16 13:49:00    2017-09-16 13:49:00
121707    36868    821    2017-09-16 18:49:00    2017-09-16 18:49:00
121708    36868    483    2017-09-16 13:32:00    2017-09-16 13:32:00
121709    36868    488    2017-09-16 04:46:00    2017-09-16 04:46:00
121710    36869    484    2017-09-16 10:52:00    2017-09-16 10:52:00
121711    36869    665    2017-09-16 19:11:00    2017-09-16 19:11:00
121712    36869    870    2017-09-16 16:40:00    2017-09-16 16:40:00
121713    36869    494    2017-09-16 20:28:00    2017-09-16 20:28:00
121714    36869    510    2017-09-16 23:21:00    2017-09-16 23:21:00
121715    36870    665    2017-09-16 05:55:00    2017-09-16 05:55:00
121716    36870    879    2017-09-16 16:45:00    2017-09-16 16:45:00
121717    36870    703    2017-09-16 06:20:00    2017-09-16 06:20:00
121718    36870    737    2017-09-16 20:53:00    2017-09-16 20:53:00
121719    36870    756    2017-09-16 23:53:00    2017-09-16 23:53:00
121720    36871    927    2017-09-16 21:11:00    2017-09-16 21:11:00
121721    36871    833    2017-09-16 14:43:00    2017-09-16 14:43:00
121722    36871    672    2017-09-16 01:58:00    2017-09-16 01:58:00
121723    36871    527    2017-09-16 01:26:00    2017-09-16 01:26:00
121724    36871    925    2017-09-16 01:54:00    2017-09-16 01:54:00
121725    36872    813    2017-09-16 08:34:00    2017-09-16 08:34:00
121726    36872    804    2017-09-16 19:50:00    2017-09-16 19:50:00
121727    36872    865    2017-09-16 14:49:00    2017-09-16 14:49:00
121728    36872    645    2017-09-16 01:16:00    2017-09-16 01:16:00
121729    36872    781    2017-09-16 13:45:00    2017-09-16 13:45:00
121730    36873    608    2017-09-16 18:13:00    2017-09-16 18:13:00
121731    36873    961    2017-09-16 05:10:00    2017-09-16 05:10:00
121732    36873    497    2017-09-16 20:30:00    2017-09-16 20:30:00
121733    36873    826    2017-09-16 04:47:00    2017-09-16 04:47:00
121734    36873    852    2017-09-16 01:42:00    2017-09-16 01:42:00
121735    36874    612    2017-09-16 23:46:00    2017-09-16 23:46:00
121736    36874    943    2017-09-16 20:00:00    2017-09-16 20:00:00
121737    36874    948    2017-09-16 16:38:00    2017-09-16 16:38:00
121738    36874    689    2017-09-16 11:17:00    2017-09-16 11:17:00
121739    36874    547    2017-09-16 05:50:00    2017-09-16 05:50:00
121740    36875    697    2017-09-16 07:06:00    2017-09-16 07:06:00
121741    36875    511    2017-09-16 19:47:00    2017-09-16 19:47:00
121742    36875    475    2017-09-16 04:55:00    2017-09-16 04:55:00
121743    36875    533    2017-09-16 15:36:00    2017-09-16 15:36:00
121744    36875    739    2017-09-16 17:08:00    2017-09-16 17:08:00
121745    36876    828    2017-09-16 04:15:00    2017-09-16 04:15:00
121746    36876    838    2017-09-16 12:09:00    2017-09-16 12:09:00
121747    36876    736    2017-09-16 13:52:00    2017-09-16 13:52:00
121748    36876    636    2017-09-16 18:35:00    2017-09-16 18:35:00
121749    36876    548    2017-09-16 02:04:00    2017-09-16 02:04:00
121750    36877    716    2017-09-16 05:42:00    2017-09-16 05:42:00
121751    36877    901    2017-09-16 21:07:00    2017-09-16 21:07:00
121752    36877    628    2017-09-16 04:52:00    2017-09-16 04:52:00
121753    36877    914    2017-09-16 03:20:00    2017-09-16 03:20:00
121754    36877    475    2017-09-16 17:44:00    2017-09-16 17:44:00
121755    36878    492    2017-09-16 20:15:00    2017-09-16 20:15:00
121756    36878    723    2017-09-16 06:06:00    2017-09-16 06:06:00
121757    36878    661    2017-09-16 12:30:00    2017-09-16 12:30:00
121758    36878    679    2017-09-16 16:28:00    2017-09-16 16:28:00
121759    36878    867    2017-09-16 18:29:00    2017-09-16 18:29:00
121760    36879    755    2017-09-17 12:37:00    2017-09-17 12:37:00
121761    36879    514    2017-09-17 20:57:00    2017-09-17 20:57:00
121762    36879    724    2017-09-17 23:26:00    2017-09-17 23:26:00
121763    36879    710    2017-09-17 05:06:00    2017-09-17 05:06:00
121764    36879    780    2017-09-17 01:32:00    2017-09-17 01:32:00
121765    36880    695    2017-09-17 23:57:00    2017-09-17 23:57:00
121766    36880    528    2017-09-17 06:57:00    2017-09-17 06:57:00
121767    36880    527    2017-09-17 10:39:00    2017-09-17 10:39:00
121768    36880    773    2017-09-17 03:36:00    2017-09-17 03:36:00
121769    36880    532    2017-09-17 13:08:00    2017-09-17 13:08:00
121770    36881    944    2017-09-17 10:44:00    2017-09-17 10:44:00
121771    36881    513    2017-09-17 17:43:00    2017-09-17 17:43:00
121772    36881    851    2017-09-17 13:11:00    2017-09-17 13:11:00
121773    36881    582    2017-09-17 18:31:00    2017-09-17 18:31:00
121774    36881    679    2017-09-17 13:52:00    2017-09-17 13:52:00
121775    36882    730    2017-09-17 17:00:00    2017-09-17 17:00:00
121776    36882    817    2017-09-17 02:40:00    2017-09-17 02:40:00
121777    36882    933    2017-09-17 17:28:00    2017-09-17 17:28:00
121778    36882    497    2017-09-17 04:32:00    2017-09-17 04:32:00
121779    36882    758    2017-09-17 13:28:00    2017-09-17 13:28:00
121780    36883    696    2017-09-17 18:21:00    2017-09-17 18:21:00
121781    36883    777    2017-09-17 01:43:00    2017-09-17 01:43:00
121782    36883    537    2017-09-17 12:09:00    2017-09-17 12:09:00
121783    36883    758    2017-09-17 17:46:00    2017-09-17 17:46:00
121784    36883    478    2017-09-17 07:39:00    2017-09-17 07:39:00
121785    36884    740    2017-09-17 14:46:00    2017-09-17 14:46:00
121786    36884    787    2017-09-17 21:56:00    2017-09-17 21:56:00
121787    36884    684    2017-09-17 15:23:00    2017-09-17 15:23:00
121788    36884    729    2017-09-17 14:52:00    2017-09-17 14:52:00
121789    36884    659    2017-09-17 22:21:00    2017-09-17 22:21:00
121790    36885    886    2017-09-17 05:53:00    2017-09-17 05:53:00
121791    36885    801    2017-09-17 11:01:00    2017-09-17 11:01:00
121792    36885    932    2017-09-17 13:28:00    2017-09-17 13:28:00
121793    36885    679    2017-09-17 07:35:00    2017-09-17 07:35:00
121794    36885    549    2017-09-17 23:10:00    2017-09-17 23:10:00
121795    36886    672    2017-09-17 16:00:00    2017-09-17 16:00:00
121796    36886    618    2017-09-17 01:08:00    2017-09-17 01:08:00
121797    36886    805    2017-09-17 23:27:00    2017-09-17 23:27:00
121798    36886    755    2017-09-17 06:54:00    2017-09-17 06:54:00
121799    36886    867    2017-09-17 04:03:00    2017-09-17 04:03:00
121800    36887    711    2017-09-17 22:02:00    2017-09-17 22:02:00
121801    36887    898    2017-09-17 10:20:00    2017-09-17 10:20:00
121802    36887    924    2017-09-17 18:01:00    2017-09-17 18:01:00
121803    36887    570    2017-09-17 22:49:00    2017-09-17 22:49:00
121804    36887    480    2017-09-17 10:27:00    2017-09-17 10:27:00
121805    36888    821    2017-09-17 17:27:00    2017-09-17 17:27:00
121806    36888    481    2017-09-17 16:20:00    2017-09-17 16:20:00
121807    36888    540    2017-09-17 06:24:00    2017-09-17 06:24:00
121808    36888    904    2017-09-17 21:53:00    2017-09-17 21:53:00
121809    36888    868    2017-09-17 22:27:00    2017-09-17 22:27:00
121810    36889    621    2017-09-17 05:33:00    2017-09-17 05:33:00
121811    36889    945    2017-09-17 06:19:00    2017-09-17 06:19:00
121812    36889    789    2017-09-17 05:51:00    2017-09-17 05:51:00
121813    36889    830    2017-09-17 08:32:00    2017-09-17 08:32:00
121814    36889    726    2017-09-17 02:59:00    2017-09-17 02:59:00
121815    36890    845    2017-09-17 14:58:00    2017-09-17 14:58:00
121816    36890    507    2017-09-17 13:13:00    2017-09-17 13:13:00
121817    36890    483    2017-09-17 14:30:00    2017-09-17 14:30:00
121818    36890    550    2017-09-17 21:23:00    2017-09-17 21:23:00
121819    36890    931    2017-09-17 10:49:00    2017-09-17 10:49:00
121820    36891    760    2017-09-17 23:24:00    2017-09-17 23:24:00
121821    36891    864    2017-09-17 06:49:00    2017-09-17 06:49:00
121822    36891    501    2017-09-17 08:56:00    2017-09-17 08:56:00
121823    36891    913    2017-09-17 14:35:00    2017-09-17 14:35:00
121824    36891    697    2017-09-17 10:22:00    2017-09-17 10:22:00
121825    36892    879    2017-09-17 20:19:00    2017-09-17 20:19:00
121826    36892    584    2017-09-17 08:54:00    2017-09-17 08:54:00
121827    36892    551    2017-09-17 04:28:00    2017-09-17 04:28:00
121828    36892    803    2017-09-17 21:21:00    2017-09-17 21:21:00
121829    36892    864    2017-09-17 13:52:00    2017-09-17 13:52:00
121830    36893    582    2017-09-17 10:44:00    2017-09-17 10:44:00
121831    36893    520    2017-09-17 13:10:00    2017-09-17 13:10:00
121832    36893    863    2017-09-17 01:09:00    2017-09-17 01:09:00
121833    36893    558    2017-09-17 21:00:00    2017-09-17 21:00:00
121834    36893    544    2017-09-17 14:00:00    2017-09-17 14:00:00
121835    36894    483    2017-09-17 17:14:00    2017-09-17 17:14:00
121836    36894    960    2017-09-17 18:59:00    2017-09-17 18:59:00
121837    36894    670    2017-09-17 04:06:00    2017-09-17 04:06:00
121838    36894    832    2017-09-17 19:27:00    2017-09-17 19:27:00
121839    36894    532    2017-09-17 20:54:00    2017-09-17 20:54:00
121840    36895    584    2017-09-17 23:21:00    2017-09-17 23:21:00
121841    36895    557    2017-09-17 04:28:00    2017-09-17 04:28:00
121842    36895    636    2017-09-17 14:05:00    2017-09-17 14:05:00
121843    36895    478    2017-09-17 11:37:00    2017-09-17 11:37:00
121844    36895    524    2017-09-17 07:47:00    2017-09-17 07:47:00
121845    36896    764    2017-09-17 13:10:00    2017-09-17 13:10:00
121846    36896    604    2017-09-17 02:43:00    2017-09-17 02:43:00
121847    36896    598    2017-09-17 06:01:00    2017-09-17 06:01:00
121848    36896    509    2017-09-17 10:04:00    2017-09-17 10:04:00
121849    36896    943    2017-09-17 07:50:00    2017-09-17 07:50:00
121850    36897    833    2017-09-17 09:35:00    2017-09-17 09:35:00
121851    36897    514    2017-09-17 18:58:00    2017-09-17 18:58:00
121852    36897    783    2017-09-17 22:13:00    2017-09-17 22:13:00
121853    36897    563    2017-09-17 05:32:00    2017-09-17 05:32:00
121854    36897    650    2017-09-17 07:02:00    2017-09-17 07:02:00
121855    36898    520    2017-09-17 12:30:00    2017-09-17 12:30:00
121856    36898    513    2017-09-17 03:38:00    2017-09-17 03:38:00
121857    36898    557    2017-09-17 14:34:00    2017-09-17 14:34:00
121858    36898    857    2017-09-17 17:18:00    2017-09-17 17:18:00
121859    36898    861    2017-09-17 22:21:00    2017-09-17 22:21:00
121860    36899    483    2017-09-17 05:50:00    2017-09-17 05:50:00
121861    36899    669    2017-09-17 14:01:00    2017-09-17 14:01:00
121862    36899    789    2017-09-17 02:08:00    2017-09-17 02:08:00
121863    36899    601    2017-09-17 22:51:00    2017-09-17 22:51:00
121864    36899    909    2017-09-17 07:51:00    2017-09-17 07:51:00
121865    36900    921    2017-09-17 12:31:00    2017-09-17 12:31:00
121866    36900    702    2017-09-17 04:28:00    2017-09-17 04:28:00
121867    36900    593    2017-09-17 17:40:00    2017-09-17 17:40:00
121868    36900    615    2017-09-17 05:56:00    2017-09-17 05:56:00
121869    36900    562    2017-09-17 13:04:00    2017-09-17 13:04:00
121870    36901    913    2017-09-17 23:27:00    2017-09-17 23:27:00
121871    36901    908    2017-09-17 08:21:00    2017-09-17 08:21:00
121872    36901    541    2017-09-17 03:24:00    2017-09-17 03:24:00
121873    36901    465    2017-09-17 04:33:00    2017-09-17 04:33:00
121874    36901    810    2017-09-17 06:48:00    2017-09-17 06:48:00
121875    36902    668    2017-09-17 13:57:00    2017-09-17 13:57:00
121876    36902    602    2017-09-17 10:57:00    2017-09-17 10:57:00
121877    36902    880    2017-09-17 14:05:00    2017-09-17 14:05:00
121878    36902    870    2017-09-17 04:16:00    2017-09-17 04:16:00
121879    36902    693    2017-09-17 02:09:00    2017-09-17 02:09:00
121880    36903    822    2017-09-17 16:37:00    2017-09-17 16:37:00
121881    36903    651    2017-09-17 23:24:00    2017-09-17 23:24:00
121882    36903    669    2017-09-17 18:41:00    2017-09-17 18:41:00
121883    36903    593    2017-09-17 08:29:00    2017-09-17 08:29:00
121884    36903    563    2017-09-17 18:06:00    2017-09-17 18:06:00
121885    36904    567    2017-09-17 12:52:00    2017-09-17 12:52:00
121886    36904    492    2017-09-17 16:50:00    2017-09-17 16:50:00
121887    36904    813    2017-09-17 09:43:00    2017-09-17 09:43:00
121888    36904    560    2017-09-17 23:21:00    2017-09-17 23:21:00
121889    36904    568    2017-09-17 23:56:00    2017-09-17 23:56:00
121890    36905    627    2017-09-17 23:41:00    2017-09-17 23:41:00
121891    36905    627    2017-09-17 09:35:00    2017-09-17 09:35:00
121892    36905    557    2017-09-17 17:57:00    2017-09-17 17:57:00
121893    36905    784    2017-09-17 20:54:00    2017-09-17 20:54:00
121894    36905    942    2017-09-17 12:30:00    2017-09-17 12:30:00
121895    36906    570    2017-09-17 22:13:00    2017-09-17 22:13:00
121896    36906    566    2017-09-17 02:20:00    2017-09-17 02:20:00
121897    36906    745    2017-09-17 07:58:00    2017-09-17 07:58:00
121898    36906    556    2017-09-17 05:04:00    2017-09-17 05:04:00
121899    36906    953    2017-09-17 12:52:00    2017-09-17 12:52:00
121900    36907    679    2017-09-17 05:06:00    2017-09-17 05:06:00
121901    36907    617    2017-09-17 05:27:00    2017-09-17 05:27:00
121902    36907    949    2017-09-17 11:37:00    2017-09-17 11:37:00
121903    36907    797    2017-09-17 19:51:00    2017-09-17 19:51:00
121904    36907    725    2017-09-17 22:56:00    2017-09-17 22:56:00
121905    36908    820    2017-09-17 04:28:00    2017-09-17 04:28:00
121906    36908    846    2017-09-17 04:46:00    2017-09-17 04:46:00
121907    36908    768    2017-09-17 19:03:00    2017-09-17 19:03:00
121908    36908    900    2017-09-17 09:34:00    2017-09-17 09:34:00
121909    36908    760    2017-09-17 11:32:00    2017-09-17 11:32:00
121910    36909    535    2017-09-17 05:12:00    2017-09-17 05:12:00
121911    36909    616    2017-09-17 13:02:00    2017-09-17 13:02:00
121912    36909    959    2017-09-17 16:42:00    2017-09-17 16:42:00
121913    36909    915    2017-09-17 07:32:00    2017-09-17 07:32:00
121914    36909    912    2017-09-17 13:20:00    2017-09-17 13:20:00
121915    36910    810    2017-09-17 12:41:00    2017-09-17 12:41:00
121916    36910    862    2017-09-17 18:31:00    2017-09-17 18:31:00
121917    36910    509    2017-09-17 10:37:00    2017-09-17 10:37:00
121918    36910    948    2017-09-17 18:39:00    2017-09-17 18:39:00
121919    36910    479    2017-09-17 01:34:00    2017-09-17 01:34:00
121920    36911    718    2017-09-17 14:40:00    2017-09-17 14:40:00
121921    36911    880    2017-09-17 17:40:00    2017-09-17 17:40:00
121922    36911    557    2017-09-17 12:29:00    2017-09-17 12:29:00
121923    36911    723    2017-09-17 06:55:00    2017-09-17 06:55:00
121924    36911    563    2017-09-17 20:05:00    2017-09-17 20:05:00
121925    36912    888    2017-09-17 07:20:00    2017-09-17 07:20:00
121926    36912    767    2017-09-17 13:01:00    2017-09-17 13:01:00
121927    36912    927    2017-09-17 05:36:00    2017-09-17 05:36:00
121928    36912    826    2017-09-17 11:25:00    2017-09-17 11:25:00
121929    36912    722    2017-09-17 02:50:00    2017-09-17 02:50:00
121930    36913    924    2017-09-17 08:50:00    2017-09-17 08:50:00
121931    36913    754    2017-09-17 11:34:00    2017-09-17 11:34:00
121932    36913    591    2017-09-17 21:22:00    2017-09-17 21:22:00
121933    36913    519    2017-09-17 09:30:00    2017-09-17 09:30:00
121934    36913    945    2017-09-17 22:48:00    2017-09-17 22:48:00
121935    36914    563    2017-09-17 11:16:00    2017-09-17 11:16:00
121936    36914    803    2017-09-17 20:09:00    2017-09-17 20:09:00
121937    36914    836    2017-09-17 02:28:00    2017-09-17 02:28:00
121938    36914    931    2017-09-17 23:32:00    2017-09-17 23:32:00
121939    36914    648    2017-09-17 17:55:00    2017-09-17 17:55:00
121940    36915    625    2017-09-17 07:18:00    2017-09-17 07:18:00
121941    36915    829    2017-09-17 18:13:00    2017-09-17 18:13:00
121942    36915    571    2017-09-17 03:43:00    2017-09-17 03:43:00
121943    36915    824    2017-09-17 15:41:00    2017-09-17 15:41:00
121944    36915    783    2017-09-17 18:25:00    2017-09-17 18:25:00
121945    36916    868    2017-09-17 18:56:00    2017-09-17 18:56:00
121946    36916    578    2017-09-17 12:03:00    2017-09-17 12:03:00
121947    36916    668    2017-09-17 14:42:00    2017-09-17 14:42:00
121948    36916    667    2017-09-17 18:45:00    2017-09-17 18:45:00
121949    36916    538    2017-09-17 11:39:00    2017-09-17 11:39:00
121950    36917    485    2017-09-17 15:55:00    2017-09-17 15:55:00
121951    36917    804    2017-09-17 17:09:00    2017-09-17 17:09:00
121952    36917    488    2017-09-17 14:27:00    2017-09-17 14:27:00
121953    36917    668    2017-09-17 01:43:00    2017-09-17 01:43:00
121954    36917    588    2017-09-17 11:06:00    2017-09-17 11:06:00
121955    36918    633    2017-09-17 13:08:00    2017-09-17 13:08:00
121956    36918    699    2017-09-17 23:46:00    2017-09-17 23:46:00
121957    36918    848    2017-09-17 10:30:00    2017-09-17 10:30:00
121958    36918    508    2017-09-17 04:55:00    2017-09-17 04:55:00
121959    36918    536    2017-09-17 12:17:00    2017-09-17 12:17:00
121960    36919    527    2017-09-17 15:54:00    2017-09-17 15:54:00
121961    36919    526    2017-09-17 08:54:00    2017-09-17 08:54:00
121962    36919    673    2017-09-17 15:41:00    2017-09-17 15:41:00
121963    36919    487    2017-09-17 12:31:00    2017-09-17 12:31:00
121964    36919    857    2017-09-17 14:33:00    2017-09-17 14:33:00
121965    36920    676    2017-09-17 12:05:00    2017-09-17 12:05:00
121966    36920    564    2017-09-17 21:16:00    2017-09-17 21:16:00
121967    36920    834    2017-09-17 02:00:00    2017-09-17 02:00:00
121968    36920    528    2017-09-17 10:57:00    2017-09-17 10:57:00
121969    36920    941    2017-09-17 07:47:00    2017-09-17 07:47:00
121970    36921    570    2017-09-17 11:28:00    2017-09-17 11:28:00
121971    36921    897    2017-09-17 22:39:00    2017-09-17 22:39:00
121972    36921    519    2017-09-17 06:38:00    2017-09-17 06:38:00
121973    36921    866    2017-09-17 11:38:00    2017-09-17 11:38:00
121974    36921    821    2017-09-17 11:00:00    2017-09-17 11:00:00
121975    36922    821    2017-09-17 13:39:00    2017-09-17 13:39:00
121976    36922    526    2017-09-17 06:14:00    2017-09-17 06:14:00
121977    36922    878    2017-09-17 15:27:00    2017-09-17 15:27:00
121978    36922    749    2017-09-17 12:25:00    2017-09-17 12:25:00
121979    36922    750    2017-09-17 16:00:00    2017-09-17 16:00:00
121980    36923    695    2017-09-17 07:29:00    2017-09-17 07:29:00
121981    36923    798    2017-09-17 04:51:00    2017-09-17 04:51:00
121982    36923    761    2017-09-17 19:53:00    2017-09-17 19:53:00
121983    36923    943    2017-09-17 04:52:00    2017-09-17 04:52:00
121984    36923    943    2017-09-17 06:04:00    2017-09-17 06:04:00
121985    36924    955    2017-09-17 07:28:00    2017-09-17 07:28:00
121986    36924    515    2017-09-17 18:47:00    2017-09-17 18:47:00
121987    36924    804    2017-09-17 07:30:00    2017-09-17 07:30:00
121988    36924    706    2017-09-17 12:10:00    2017-09-17 12:10:00
121989    36924    473    2017-09-17 22:05:00    2017-09-17 22:05:00
121990    36925    946    2017-09-17 11:04:00    2017-09-17 11:04:00
121991    36925    939    2017-09-17 04:40:00    2017-09-17 04:40:00
121992    36925    667    2017-09-17 09:07:00    2017-09-17 09:07:00
121993    36925    871    2017-09-17 11:46:00    2017-09-17 11:46:00
121994    36925    869    2017-09-17 17:12:00    2017-09-17 17:12:00
121995    36926    892    2017-09-17 18:53:00    2017-09-17 18:53:00
121996    36926    762    2017-09-17 14:34:00    2017-09-17 14:34:00
121997    36926    878    2017-09-17 05:05:00    2017-09-17 05:05:00
121998    36926    936    2017-09-17 09:36:00    2017-09-17 09:36:00
121999    36926    510    2017-09-17 05:39:00    2017-09-17 05:39:00
122000    36927    759    2017-09-17 09:07:00    2017-09-17 09:07:00
122001    36927    550    2017-09-17 01:00:00    2017-09-17 01:00:00
122002    36927    531    2017-09-17 07:34:00    2017-09-17 07:34:00
122003    36927    738    2017-09-17 01:19:00    2017-09-17 01:19:00
122004    36927    674    2017-09-17 19:12:00    2017-09-17 19:12:00
122005    36928    882    2017-09-17 04:05:00    2017-09-17 04:05:00
122006    36928    857    2017-09-17 04:25:00    2017-09-17 04:25:00
122007    36928    539    2017-09-17 09:59:00    2017-09-17 09:59:00
122008    36928    716    2017-09-17 22:01:00    2017-09-17 22:01:00
122009    36928    906    2017-09-17 23:46:00    2017-09-17 23:46:00
122010    36929    872    2017-09-17 13:57:00    2017-09-17 13:57:00
122011    36929    787    2017-09-17 14:11:00    2017-09-17 14:11:00
122012    36929    746    2017-09-17 16:03:00    2017-09-17 16:03:00
122013    36929    483    2017-09-17 03:21:00    2017-09-17 03:21:00
122014    36929    540    2017-09-17 18:24:00    2017-09-17 18:24:00
122015    36930    739    2017-09-17 15:22:00    2017-09-17 15:22:00
122016    36930    725    2017-09-17 13:12:00    2017-09-17 13:12:00
122017    36930    573    2017-09-17 04:51:00    2017-09-17 04:51:00
122018    36930    487    2017-09-17 10:41:00    2017-09-17 10:41:00
122019    36930    493    2017-09-17 13:40:00    2017-09-17 13:40:00
122020    36931    947    2017-09-18 06:08:00    2017-09-18 06:08:00
122021    36931    520    2017-09-18 10:26:00    2017-09-18 10:26:00
122022    36931    768    2017-09-18 15:57:00    2017-09-18 15:57:00
122023    36931    861    2017-09-18 20:40:00    2017-09-18 20:40:00
122024    36931    475    2017-09-18 23:59:00    2017-09-18 23:59:00
122025    36932    506    2017-09-18 15:10:00    2017-09-18 15:10:00
122026    36932    724    2017-09-18 17:19:00    2017-09-18 17:19:00
122027    36932    759    2017-09-18 15:16:00    2017-09-18 15:16:00
122028    36932    524    2017-09-18 10:08:00    2017-09-18 10:08:00
122029    36932    909    2017-09-18 11:14:00    2017-09-18 11:14:00
122030    36933    630    2017-09-18 20:22:00    2017-09-18 20:22:00
122031    36933    688    2017-09-18 04:13:00    2017-09-18 04:13:00
122032    36933    569    2017-09-18 14:00:00    2017-09-18 14:00:00
122033    36933    840    2017-09-18 13:49:00    2017-09-18 13:49:00
122034    36933    643    2017-09-18 04:06:00    2017-09-18 04:06:00
122035    36934    698    2017-09-18 08:15:00    2017-09-18 08:15:00
122036    36934    959    2017-09-18 17:41:00    2017-09-18 17:41:00
122037    36934    868    2017-09-18 18:37:00    2017-09-18 18:37:00
122038    36934    698    2017-09-18 08:21:00    2017-09-18 08:21:00
122039    36934    828    2017-09-18 18:13:00    2017-09-18 18:13:00
122040    36935    805    2017-09-18 18:33:00    2017-09-18 18:33:00
122041    36935    570    2017-09-18 08:39:00    2017-09-18 08:39:00
122042    36935    579    2017-09-18 13:49:00    2017-09-18 13:49:00
122043    36935    669    2017-09-18 11:15:00    2017-09-18 11:15:00
122044    36935    612    2017-09-18 10:39:00    2017-09-18 10:39:00
122045    36936    479    2017-09-19 23:19:00    2017-09-19 23:19:00
122046    36936    958    2017-09-19 16:06:00    2017-09-19 16:06:00
122047    36936    821    2017-09-19 14:54:00    2017-09-19 14:54:00
122048    36936    517    2017-09-19 08:33:00    2017-09-19 08:33:00
122049    36936    845    2017-09-19 12:08:00    2017-09-19 12:08:00
122050    36937    835    2017-09-19 18:53:00    2017-09-19 18:53:00
122051    36937    673    2017-09-19 14:13:00    2017-09-19 14:13:00
122052    36937    644    2017-09-19 12:08:00    2017-09-19 12:08:00
122053    36937    847    2017-09-19 21:35:00    2017-09-19 21:35:00
122054    36937    665    2017-09-19 14:55:00    2017-09-19 14:55:00
122055    36938    839    2017-09-19 15:30:00    2017-09-19 15:30:00
122056    36938    538    2017-09-19 15:17:00    2017-09-19 15:17:00
122057    36938    613    2017-09-19 14:05:00    2017-09-19 14:05:00
122058    36938    632    2017-09-19 19:14:00    2017-09-19 19:14:00
122059    36938    529    2017-09-19 15:11:00    2017-09-19 15:11:00
122060    36939    529    2017-09-19 01:41:00    2017-09-19 01:41:00
122061    36939    849    2017-09-19 05:07:00    2017-09-19 05:07:00
122062    36939    505    2017-09-19 21:45:00    2017-09-19 21:45:00
122063    36939    553    2017-09-19 16:48:00    2017-09-19 16:48:00
122064    36939    693    2017-09-19 13:14:00    2017-09-19 13:14:00
122065    36940    817    2017-09-19 11:40:00    2017-09-19 11:40:00
122066    36940    912    2017-09-19 03:21:00    2017-09-19 03:21:00
122067    36940    808    2017-09-19 17:29:00    2017-09-19 17:29:00
122068    36940    888    2017-09-19 22:16:00    2017-09-19 22:16:00
122069    36940    853    2017-09-19 14:19:00    2017-09-19 14:19:00
122070    36941    482    2017-09-19 21:45:00    2017-09-19 21:45:00
122071    36941    487    2017-09-19 03:51:00    2017-09-19 03:51:00
122072    36941    910    2017-09-19 19:28:00    2017-09-19 19:28:00
122073    36941    465    2017-09-19 16:00:00    2017-09-19 16:00:00
122074    36941    905    2017-09-19 17:20:00    2017-09-19 17:20:00
122075    36942    738    2017-09-19 11:19:00    2017-09-19 11:19:00
122076    36942    694    2017-09-19 01:47:00    2017-09-19 01:47:00
122077    36942    666    2017-09-19 03:56:00    2017-09-19 03:56:00
122078    36942    680    2017-09-19 11:17:00    2017-09-19 11:17:00
122079    36942    627    2017-09-19 07:59:00    2017-09-19 07:59:00
122080    36943    679    2017-09-19 20:32:00    2017-09-19 20:32:00
122081    36943    565    2017-09-19 12:13:00    2017-09-19 12:13:00
122082    36943    774    2017-09-19 22:29:00    2017-09-19 22:29:00
122083    36943    921    2017-09-19 20:26:00    2017-09-19 20:26:00
122084    36943    589    2017-09-19 17:34:00    2017-09-19 17:34:00
122085    36944    513    2017-09-19 14:16:00    2017-09-19 14:16:00
122086    36944    740    2017-09-19 06:30:00    2017-09-19 06:30:00
122087    36944    540    2017-09-19 21:09:00    2017-09-19 21:09:00
122088    36944    927    2017-09-19 03:19:00    2017-09-19 03:19:00
122089    36944    594    2017-09-19 14:11:00    2017-09-19 14:11:00
122090    36945    904    2017-09-19 18:38:00    2017-09-19 18:38:00
122091    36945    944    2017-09-19 21:42:00    2017-09-19 21:42:00
122092    36945    575    2017-09-19 12:39:00    2017-09-19 12:39:00
122093    36945    794    2017-09-19 23:17:00    2017-09-19 23:17:00
122094    36945    949    2017-09-19 01:10:00    2017-09-19 01:10:00
122095    36946    874    2017-09-20 20:43:00    2017-09-20 20:43:00
122096    36946    676    2017-09-20 23:20:00    2017-09-20 23:20:00
122097    36946    655    2017-09-20 11:30:00    2017-09-20 11:30:00
122098    36946    554    2017-09-20 02:26:00    2017-09-20 02:26:00
122099    36946    615    2017-09-20 03:45:00    2017-09-20 03:45:00
122100    36947    497    2017-09-20 01:15:00    2017-09-20 01:15:00
122101    36947    626    2017-09-20 01:10:00    2017-09-20 01:10:00
122102    36947    941    2017-09-20 19:39:00    2017-09-20 19:39:00
122103    36947    694    2017-09-20 02:06:00    2017-09-20 02:06:00
122104    36947    951    2017-09-20 06:01:00    2017-09-20 06:01:00
122105    36948    586    2017-09-20 19:57:00    2017-09-20 19:57:00
122106    36948    537    2017-09-20 23:07:00    2017-09-20 23:07:00
122107    36948    948    2017-09-20 13:27:00    2017-09-20 13:27:00
122108    36948    893    2017-09-20 16:35:00    2017-09-20 16:35:00
122109    36948    598    2017-09-20 04:31:00    2017-09-20 04:31:00
122110    36949    864    2017-09-20 19:23:00    2017-09-20 19:23:00
122111    36949    910    2017-09-20 18:37:00    2017-09-20 18:37:00
122112    36949    661    2017-09-20 13:41:00    2017-09-20 13:41:00
122113    36949    796    2017-09-20 10:54:00    2017-09-20 10:54:00
122114    36949    744    2017-09-20 20:56:00    2017-09-20 20:56:00
122115    36950    821    2017-09-20 22:17:00    2017-09-20 22:17:00
122116    36950    865    2017-09-20 07:23:00    2017-09-20 07:23:00
122117    36950    825    2017-09-20 05:06:00    2017-09-20 05:06:00
122118    36950    757    2017-09-20 03:53:00    2017-09-20 03:53:00
122119    36950    663    2017-09-20 23:22:00    2017-09-20 23:22:00
122120    36951    947    2017-09-20 01:05:00    2017-09-20 01:05:00
122121    36951    540    2017-09-20 14:46:00    2017-09-20 14:46:00
122122    36951    804    2017-09-20 17:08:00    2017-09-20 17:08:00
122123    36951    662    2017-09-20 23:42:00    2017-09-20 23:42:00
122124    36951    801    2017-09-20 10:10:00    2017-09-20 10:10:00
122125    36952    822    2017-09-20 07:19:00    2017-09-20 07:19:00
122126    36952    893    2017-09-20 10:11:00    2017-09-20 10:11:00
122127    36952    612    2017-09-20 22:17:00    2017-09-20 22:17:00
122128    36952    690    2017-09-20 17:23:00    2017-09-20 17:23:00
122129    36952    694    2017-09-20 23:15:00    2017-09-20 23:15:00
122130    36953    775    2017-09-20 07:26:00    2017-09-20 07:26:00
122131    36953    567    2017-09-20 08:02:00    2017-09-20 08:02:00
122132    36953    736    2017-09-20 14:11:00    2017-09-20 14:11:00
122133    36953    709    2017-09-20 12:41:00    2017-09-20 12:41:00
122134    36953    902    2017-09-20 22:26:00    2017-09-20 22:26:00
122135    36954    915    2017-09-20 08:13:00    2017-09-20 08:13:00
122136    36954    791    2017-09-20 18:16:00    2017-09-20 18:16:00
122137    36954    514    2017-09-20 16:32:00    2017-09-20 16:32:00
122138    36954    500    2017-09-20 12:08:00    2017-09-20 12:08:00
122139    36954    780    2017-09-20 14:39:00    2017-09-20 14:39:00
122140    36955    737    2017-09-20 22:37:00    2017-09-20 22:37:00
122141    36955    920    2017-09-20 03:42:00    2017-09-20 03:42:00
122142    36955    630    2017-09-20 09:17:00    2017-09-20 09:17:00
122143    36955    626    2017-09-20 01:58:00    2017-09-20 01:58:00
122144    36955    752    2017-09-20 18:15:00    2017-09-20 18:15:00
122145    36956    470    2017-09-20 20:59:00    2017-09-20 20:59:00
122146    36956    712    2017-09-20 20:03:00    2017-09-20 20:03:00
122147    36956    683    2017-09-20 05:11:00    2017-09-20 05:11:00
122148    36956    725    2017-09-20 05:01:00    2017-09-20 05:01:00
122149    36956    782    2017-09-20 18:16:00    2017-09-20 18:16:00
122150    36957    617    2017-09-20 06:19:00    2017-09-20 06:19:00
122151    36957    647    2017-09-20 21:23:00    2017-09-20 21:23:00
122152    36957    526    2017-09-20 04:43:00    2017-09-20 04:43:00
122153    36957    876    2017-09-20 03:47:00    2017-09-20 03:47:00
122154    36957    522    2017-09-20 07:55:00    2017-09-20 07:55:00
122155    36958    866    2017-09-20 16:41:00    2017-09-20 16:41:00
122156    36958    484    2017-09-20 22:45:00    2017-09-20 22:45:00
122157    36958    917    2017-09-20 01:38:00    2017-09-20 01:38:00
122158    36958    855    2017-09-20 10:46:00    2017-09-20 10:46:00
122159    36958    464    2017-09-20 03:14:00    2017-09-20 03:14:00
122160    36959    685    2017-09-20 02:47:00    2017-09-20 02:47:00
122161    36959    717    2017-09-20 06:53:00    2017-09-20 06:53:00
122162    36959    878    2017-09-20 04:19:00    2017-09-20 04:19:00
122163    36959    670    2017-09-20 12:16:00    2017-09-20 12:16:00
122164    36959    853    2017-09-20 03:30:00    2017-09-20 03:30:00
122165    36960    478    2017-09-20 02:32:00    2017-09-20 02:32:00
122166    36960    939    2017-09-20 04:16:00    2017-09-20 04:16:00
122167    36960    830    2017-09-20 11:00:00    2017-09-20 11:00:00
122168    36960    584    2017-09-20 06:36:00    2017-09-20 06:36:00
122169    36960    568    2017-09-20 20:24:00    2017-09-20 20:24:00
122170    36961    659    2017-09-20 14:17:00    2017-09-20 14:17:00
122171    36961    871    2017-09-20 18:22:00    2017-09-20 18:22:00
122172    36961    706    2017-09-20 21:00:00    2017-09-20 21:00:00
122173    36961    734    2017-09-20 10:05:00    2017-09-20 10:05:00
122174    36961    584    2017-09-20 06:07:00    2017-09-20 06:07:00
122175    36962    700    2017-09-20 05:10:00    2017-09-20 05:10:00
122176    36962    723    2017-09-20 19:09:00    2017-09-20 19:09:00
122177    36962    860    2017-09-20 21:22:00    2017-09-20 21:22:00
122178    36962    645    2017-09-20 02:41:00    2017-09-20 02:41:00
122179    36962    668    2017-09-20 13:17:00    2017-09-20 13:17:00
122180    36963    779    2017-09-20 07:00:00    2017-09-20 07:00:00
122181    36963    943    2017-09-20 13:15:00    2017-09-20 13:15:00
122182    36963    884    2017-09-20 11:27:00    2017-09-20 11:27:00
122183    36963    490    2017-09-20 06:12:00    2017-09-20 06:12:00
122184    36963    518    2017-09-20 15:02:00    2017-09-20 15:02:00
122185    36964    778    2017-09-20 21:23:00    2017-09-20 21:23:00
122186    36964    706    2017-09-20 05:00:00    2017-09-20 05:00:00
122187    36964    632    2017-09-20 21:43:00    2017-09-20 21:43:00
122188    36964    850    2017-09-20 11:45:00    2017-09-20 11:45:00
122189    36964    647    2017-09-20 05:49:00    2017-09-20 05:49:00
122190    36965    476    2017-09-20 17:39:00    2017-09-20 17:39:00
122191    36965    817    2017-09-20 17:34:00    2017-09-20 17:34:00
122192    36965    892    2017-09-20 18:42:00    2017-09-20 18:42:00
122193    36965    942    2017-09-20 12:42:00    2017-09-20 12:42:00
122194    36965    917    2017-09-20 11:45:00    2017-09-20 11:45:00
122195    36966    817    2017-09-20 09:43:00    2017-09-20 09:43:00
122196    36966    603    2017-09-20 13:18:00    2017-09-20 13:18:00
122197    36966    635    2017-09-20 13:54:00    2017-09-20 13:54:00
122198    36966    958    2017-09-20 14:06:00    2017-09-20 14:06:00
122199    36966    584    2017-09-20 02:48:00    2017-09-20 02:48:00
122200    36967    701    2017-09-20 12:55:00    2017-09-20 12:55:00
122201    36967    717    2017-09-20 04:50:00    2017-09-20 04:50:00
122202    36967    815    2017-09-20 02:53:00    2017-09-20 02:53:00
122203    36967    627    2017-09-20 01:46:00    2017-09-20 01:46:00
122204    36967    952    2017-09-20 12:42:00    2017-09-20 12:42:00
122205    36968    587    2017-09-20 03:34:00    2017-09-20 03:34:00
122206    36968    601    2017-09-20 01:41:00    2017-09-20 01:41:00
122207    36968    542    2017-09-20 05:32:00    2017-09-20 05:32:00
122208    36968    589    2017-09-20 02:59:00    2017-09-20 02:59:00
122209    36968    934    2017-09-20 06:28:00    2017-09-20 06:28:00
122210    36969    837    2017-09-20 15:28:00    2017-09-20 15:28:00
122211    36969    788    2017-09-20 10:55:00    2017-09-20 10:55:00
122212    36969    754    2017-09-20 04:30:00    2017-09-20 04:30:00
122213    36969    763    2017-09-20 05:17:00    2017-09-20 05:17:00
122214    36969    622    2017-09-20 02:13:00    2017-09-20 02:13:00
122215    36970    854    2017-09-20 09:22:00    2017-09-20 09:22:00
122216    36970    921    2017-09-20 10:19:00    2017-09-20 10:19:00
122217    36970    945    2017-09-20 06:26:00    2017-09-20 06:26:00
122218    36970    591    2017-09-20 03:58:00    2017-09-20 03:58:00
122219    36970    733    2017-09-20 02:45:00    2017-09-20 02:45:00
122220    36971    481    2017-09-20 02:47:00    2017-09-20 02:47:00
122221    36971    638    2017-09-20 13:14:00    2017-09-20 13:14:00
122222    36971    472    2017-09-20 06:40:00    2017-09-20 06:40:00
122223    36971    608    2017-09-20 05:51:00    2017-09-20 05:51:00
122224    36971    879    2017-09-20 04:35:00    2017-09-20 04:35:00
122225    36972    773    2017-09-20 17:52:00    2017-09-20 17:52:00
122226    36972    654    2017-09-20 18:36:00    2017-09-20 18:36:00
122227    36972    598    2017-09-20 21:49:00    2017-09-20 21:49:00
122228    36972    791    2017-09-20 05:26:00    2017-09-20 05:26:00
122229    36972    734    2017-09-20 09:35:00    2017-09-20 09:35:00
122230    36973    818    2017-09-20 01:49:00    2017-09-20 01:49:00
122231    36973    836    2017-09-20 22:43:00    2017-09-20 22:43:00
122232    36973    739    2017-09-20 16:59:00    2017-09-20 16:59:00
122233    36973    655    2017-09-20 12:54:00    2017-09-20 12:54:00
122234    36973    751    2017-09-20 22:54:00    2017-09-20 22:54:00
122235    36974    866    2017-09-20 03:51:00    2017-09-20 03:51:00
122236    36974    472    2017-09-20 18:48:00    2017-09-20 18:48:00
122237    36974    469    2017-09-20 23:52:00    2017-09-20 23:52:00
122238    36974    511    2017-09-20 20:54:00    2017-09-20 20:54:00
122239    36974    948    2017-09-20 15:02:00    2017-09-20 15:02:00
122240    36975    496    2017-09-20 04:06:00    2017-09-20 04:06:00
122241    36975    900    2017-09-20 09:29:00    2017-09-20 09:29:00
122242    36975    704    2017-09-20 20:09:00    2017-09-20 20:09:00
122243    36975    642    2017-09-20 18:12:00    2017-09-20 18:12:00
122244    36975    754    2017-09-20 16:31:00    2017-09-20 16:31:00
122245    36976    868    2017-09-20 20:46:00    2017-09-20 20:46:00
122246    36976    706    2017-09-20 12:47:00    2017-09-20 12:47:00
122247    36976    474    2017-09-20 20:54:00    2017-09-20 20:54:00
122248    36976    501    2017-09-20 14:11:00    2017-09-20 14:11:00
122249    36976    662    2017-09-20 08:33:00    2017-09-20 08:33:00
122250    36977    868    2017-09-20 08:45:00    2017-09-20 08:45:00
122251    36977    640    2017-09-20 05:40:00    2017-09-20 05:40:00
122252    36977    712    2017-09-20 21:30:00    2017-09-20 21:30:00
122253    36977    955    2017-09-20 08:15:00    2017-09-20 08:15:00
122254    36977    587    2017-09-20 11:14:00    2017-09-20 11:14:00
122255    36978    931    2017-09-20 22:47:00    2017-09-20 22:47:00
122256    36978    676    2017-09-20 15:48:00    2017-09-20 15:48:00
122257    36978    858    2017-09-20 22:08:00    2017-09-20 22:08:00
122258    36978    590    2017-09-20 09:26:00    2017-09-20 09:26:00
122259    36978    943    2017-09-20 23:53:00    2017-09-20 23:53:00
122260    36979    565    2017-09-20 04:23:00    2017-09-20 04:23:00
122261    36979    944    2017-09-20 19:34:00    2017-09-20 19:34:00
122262    36979    578    2017-09-20 17:12:00    2017-09-20 17:12:00
122263    36979    747    2017-09-20 23:31:00    2017-09-20 23:31:00
122264    36979    539    2017-09-20 05:11:00    2017-09-20 05:11:00
122265    36980    638    2017-09-20 07:08:00    2017-09-20 07:08:00
122266    36980    657    2017-09-20 18:56:00    2017-09-20 18:56:00
122267    36980    907    2017-09-20 02:00:00    2017-09-20 02:00:00
122268    36980    536    2017-09-20 02:05:00    2017-09-20 02:05:00
122269    36980    692    2017-09-20 12:16:00    2017-09-20 12:16:00
122270    36981    489    2017-09-20 15:02:00    2017-09-20 15:02:00
122271    36981    574    2017-09-20 19:57:00    2017-09-20 19:57:00
122272    36981    886    2017-09-20 10:53:00    2017-09-20 10:53:00
122273    36981    510    2017-09-20 19:29:00    2017-09-20 19:29:00
122274    36981    784    2017-09-20 21:19:00    2017-09-20 21:19:00
122275    36982    820    2017-09-20 23:19:00    2017-09-20 23:19:00
122276    36982    629    2017-09-20 16:26:00    2017-09-20 16:26:00
122277    36982    934    2017-09-20 06:51:00    2017-09-20 06:51:00
122278    36982    476    2017-09-20 16:09:00    2017-09-20 16:09:00
122279    36982    535    2017-09-20 04:27:00    2017-09-20 04:27:00
122280    36983    931    2017-09-20 06:36:00    2017-09-20 06:36:00
122281    36983    791    2017-09-20 06:06:00    2017-09-20 06:06:00
122282    36983    952    2017-09-20 19:32:00    2017-09-20 19:32:00
122283    36983    895    2017-09-20 05:59:00    2017-09-20 05:59:00
122284    36983    945    2017-09-20 18:53:00    2017-09-20 18:53:00
122285    36984    890    2017-09-20 15:14:00    2017-09-20 15:14:00
122286    36984    854    2017-09-20 22:30:00    2017-09-20 22:30:00
122287    36984    902    2017-09-20 05:19:00    2017-09-20 05:19:00
122288    36984    571    2017-09-20 06:32:00    2017-09-20 06:32:00
122289    36984    804    2017-09-20 21:34:00    2017-09-20 21:34:00
122290    36985    757    2017-09-20 12:22:00    2017-09-20 12:22:00
122291    36985    509    2017-09-20 13:22:00    2017-09-20 13:22:00
122292    36985    899    2017-09-20 09:03:00    2017-09-20 09:03:00
122293    36985    595    2017-09-20 20:46:00    2017-09-20 20:46:00
122294    36985    737    2017-09-20 13:58:00    2017-09-20 13:58:00
122295    36986    716    2017-09-20 16:14:00    2017-09-20 16:14:00
122296    36986    530    2017-09-20 13:03:00    2017-09-20 13:03:00
122297    36986    698    2017-09-20 16:40:00    2017-09-20 16:40:00
122298    36986    765    2017-09-20 15:46:00    2017-09-20 15:46:00
122299    36986    497    2017-09-20 16:00:00    2017-09-20 16:00:00
122300    36987    494    2017-09-20 22:38:00    2017-09-20 22:38:00
122301    36987    667    2017-09-20 15:14:00    2017-09-20 15:14:00
122302    36987    699    2017-09-20 16:20:00    2017-09-20 16:20:00
122303    36987    885    2017-09-20 09:57:00    2017-09-20 09:57:00
122304    36987    856    2017-09-20 23:51:00    2017-09-20 23:51:00
122305    36988    877    2017-09-20 03:20:00    2017-09-20 03:20:00
122306    36988    730    2017-09-20 08:52:00    2017-09-20 08:52:00
122307    36988    661    2017-09-20 13:56:00    2017-09-20 13:56:00
122308    36988    520    2017-09-20 03:51:00    2017-09-20 03:51:00
122309    36988    761    2017-09-20 11:54:00    2017-09-20 11:54:00
122310    36989    606    2017-09-20 18:52:00    2017-09-20 18:52:00
122311    36989    809    2017-09-20 09:30:00    2017-09-20 09:30:00
122312    36989    850    2017-09-20 14:10:00    2017-09-20 14:10:00
122313    36989    738    2017-09-20 22:59:00    2017-09-20 22:59:00
122314    36989    925    2017-09-20 14:50:00    2017-09-20 14:50:00
122315    36990    697    2017-09-20 16:32:00    2017-09-20 16:32:00
122316    36990    921    2017-09-20 13:27:00    2017-09-20 13:27:00
122317    36990    924    2017-09-20 20:37:00    2017-09-20 20:37:00
122318    36990    541    2017-09-20 07:45:00    2017-09-20 07:45:00
122319    36990    763    2017-09-20 22:30:00    2017-09-20 22:30:00
122320    36991    656    2017-09-20 11:28:00    2017-09-20 11:28:00
122321    36991    728    2017-09-20 16:17:00    2017-09-20 16:17:00
122322    36991    687    2017-09-20 19:10:00    2017-09-20 19:10:00
122323    36991    696    2017-09-20 04:39:00    2017-09-20 04:39:00
122324    36991    618    2017-09-20 13:37:00    2017-09-20 13:37:00
122325    36992    722    2017-09-20 23:30:00    2017-09-20 23:30:00
122326    36992    593    2017-09-20 23:16:00    2017-09-20 23:16:00
122327    36992    858    2017-09-20 08:10:00    2017-09-20 08:10:00
122328    36992    690    2017-09-20 10:09:00    2017-09-20 10:09:00
122329    36992    631    2017-09-20 14:45:00    2017-09-20 14:45:00
122330    36993    684    2017-09-21 01:56:00    2017-09-21 01:56:00
122331    36993    646    2017-09-21 01:11:00    2017-09-21 01:11:00
122332    36993    799    2017-09-21 08:00:00    2017-09-21 08:00:00
122333    36993    920    2017-09-21 20:00:00    2017-09-21 20:00:00
122334    36993    584    2017-09-21 03:24:00    2017-09-21 03:24:00
122335    36994    794    2017-09-21 23:35:00    2017-09-21 23:35:00
122336    36994    764    2017-09-21 17:30:00    2017-09-21 17:30:00
122337    36994    539    2017-09-21 02:31:00    2017-09-21 02:31:00
122338    36994    665    2017-09-21 16:52:00    2017-09-21 16:52:00
122339    36994    788    2017-09-21 19:43:00    2017-09-21 19:43:00
122340    36995    593    2017-09-21 12:23:00    2017-09-21 12:23:00
122341    36995    651    2017-09-21 01:30:00    2017-09-21 01:30:00
122342    36995    570    2017-09-21 18:09:00    2017-09-21 18:09:00
122343    36995    810    2017-09-21 23:06:00    2017-09-21 23:06:00
122344    36995    827    2017-09-21 11:32:00    2017-09-21 11:32:00
122345    36996    520    2017-09-21 05:34:00    2017-09-21 05:34:00
122346    36996    734    2017-09-21 21:49:00    2017-09-21 21:49:00
122347    36996    907    2017-09-21 11:22:00    2017-09-21 11:22:00
122348    36996    706    2017-09-21 11:19:00    2017-09-21 11:19:00
122349    36996    480    2017-09-21 10:34:00    2017-09-21 10:34:00
122350    36997    739    2017-09-21 07:57:00    2017-09-21 07:57:00
122351    36997    723    2017-09-21 10:44:00    2017-09-21 10:44:00
122352    36997    913    2017-09-21 14:08:00    2017-09-21 14:08:00
122353    36997    508    2017-09-21 15:08:00    2017-09-21 15:08:00
122354    36997    900    2017-09-21 20:43:00    2017-09-21 20:43:00
122355    36998    747    2017-09-21 16:07:00    2017-09-21 16:07:00
122356    36998    576    2017-09-21 13:00:00    2017-09-21 13:00:00
122357    36998    910    2017-09-21 15:00:00    2017-09-21 15:00:00
122358    36998    599    2017-09-21 14:05:00    2017-09-21 14:05:00
122359    36998    771    2017-09-21 13:23:00    2017-09-21 13:23:00
122360    36999    789    2017-09-21 02:18:00    2017-09-21 02:18:00
122361    36999    679    2017-09-21 17:15:00    2017-09-21 17:15:00
122362    36999    961    2017-09-21 23:29:00    2017-09-21 23:29:00
122363    36999    470    2017-09-21 11:05:00    2017-09-21 11:05:00
122364    36999    615    2017-09-21 07:35:00    2017-09-21 07:35:00
122365    37000    833    2017-09-21 20:08:00    2017-09-21 20:08:00
122366    37000    786    2017-09-21 23:49:00    2017-09-21 23:49:00
122367    37000    956    2017-09-21 15:12:00    2017-09-21 15:12:00
122368    37000    748    2017-09-21 08:59:00    2017-09-21 08:59:00
122369    37000    620    2017-09-21 08:05:00    2017-09-21 08:05:00
122370    37001    517    2017-09-21 13:48:00    2017-09-21 13:48:00
122371    37001    554    2017-09-21 03:55:00    2017-09-21 03:55:00
122372    37001    485    2017-09-21 19:39:00    2017-09-21 19:39:00
122373    37001    466    2017-09-21 13:15:00    2017-09-21 13:15:00
122374    37001    930    2017-09-21 18:26:00    2017-09-21 18:26:00
122375    37002    683    2017-09-21 01:02:00    2017-09-21 01:02:00
122376    37002    815    2017-09-21 17:57:00    2017-09-21 17:57:00
122377    37002    786    2017-09-21 09:37:00    2017-09-21 09:37:00
122378    37002    466    2017-09-21 23:07:00    2017-09-21 23:07:00
122379    37002    739    2017-09-21 02:22:00    2017-09-21 02:22:00
122380    37003    645    2017-09-21 07:00:00    2017-09-21 07:00:00
122381    37003    954    2017-09-21 10:12:00    2017-09-21 10:12:00
122382    37003    698    2017-09-21 08:06:00    2017-09-21 08:06:00
122383    37003    525    2017-09-21 01:00:00    2017-09-21 01:00:00
122384    37003    849    2017-09-21 13:51:00    2017-09-21 13:51:00
122385    37004    750    2017-09-21 05:20:00    2017-09-21 05:20:00
122386    37004    956    2017-09-21 22:39:00    2017-09-21 22:39:00
122387    37004    945    2017-09-21 12:05:00    2017-09-21 12:05:00
122388    37004    571    2017-09-21 10:05:00    2017-09-21 10:05:00
122389    37004    587    2017-09-21 03:44:00    2017-09-21 03:44:00
122390    37005    702    2017-09-21 15:59:00    2017-09-21 15:59:00
122391    37005    553    2017-09-21 09:47:00    2017-09-21 09:47:00
122392    37005    803    2017-09-21 19:26:00    2017-09-21 19:26:00
122393    37005    669    2017-09-21 05:25:00    2017-09-21 05:25:00
122394    37005    508    2017-09-21 04:30:00    2017-09-21 04:30:00
122395    37006    942    2017-09-21 03:23:00    2017-09-21 03:23:00
122396    37006    847    2017-09-21 06:55:00    2017-09-21 06:55:00
122397    37006    485    2017-09-21 17:32:00    2017-09-21 17:32:00
122398    37006    704    2017-09-21 02:38:00    2017-09-21 02:38:00
122399    37006    590    2017-09-21 15:24:00    2017-09-21 15:24:00
122400    37007    646    2017-09-21 05:02:00    2017-09-21 05:02:00
122401    37007    756    2017-09-21 02:59:00    2017-09-21 02:59:00
122402    37007    949    2017-09-21 05:36:00    2017-09-21 05:36:00
122403    37007    527    2017-09-21 18:14:00    2017-09-21 18:14:00
122404    37007    464    2017-09-21 10:53:00    2017-09-21 10:53:00
122405    37008    667    2017-09-21 01:41:00    2017-09-21 01:41:00
122406    37008    704    2017-09-21 11:29:00    2017-09-21 11:29:00
122407    37008    918    2017-09-21 21:21:00    2017-09-21 21:21:00
122408    37008    776    2017-09-21 17:47:00    2017-09-21 17:47:00
122409    37008    792    2017-09-21 01:42:00    2017-09-21 01:42:00
122410    37009    807    2017-09-21 13:49:00    2017-09-21 13:49:00
122411    37009    663    2017-09-21 08:50:00    2017-09-21 08:50:00
122412    37009    828    2017-09-21 02:08:00    2017-09-21 02:08:00
122413    37009    646    2017-09-21 15:50:00    2017-09-21 15:50:00
122414    37009    733    2017-09-21 08:48:00    2017-09-21 08:48:00
122415    37010    802    2017-09-21 17:00:00    2017-09-21 17:00:00
122416    37010    657    2017-09-21 01:30:00    2017-09-21 01:30:00
122417    37010    880    2017-09-21 23:09:00    2017-09-21 23:09:00
122418    37010    532    2017-09-21 01:29:00    2017-09-21 01:29:00
122419    37010    807    2017-09-21 01:27:00    2017-09-21 01:27:00
122420    37011    877    2017-09-21 07:55:00    2017-09-21 07:55:00
122421    37011    511    2017-09-21 11:21:00    2017-09-21 11:21:00
122422    37011    534    2017-09-21 05:32:00    2017-09-21 05:32:00
122423    37011    658    2017-09-21 08:09:00    2017-09-21 08:09:00
122424    37011    895    2017-09-21 05:01:00    2017-09-21 05:01:00
122425    37012    878    2017-09-21 03:23:00    2017-09-21 03:23:00
122426    37012    599    2017-09-21 23:20:00    2017-09-21 23:20:00
122427    37012    637    2017-09-21 10:54:00    2017-09-21 10:54:00
122428    37012    913    2017-09-21 10:29:00    2017-09-21 10:29:00
122429    37012    648    2017-09-21 08:23:00    2017-09-21 08:23:00
122430    37013    799    2017-09-21 18:25:00    2017-09-21 18:25:00
122431    37013    785    2017-09-21 21:25:00    2017-09-21 21:25:00
122432    37013    522    2017-09-21 15:26:00    2017-09-21 15:26:00
122433    37013    959    2017-09-21 18:00:00    2017-09-21 18:00:00
122434    37013    918    2017-09-21 03:36:00    2017-09-21 03:36:00
122435    37014    698    2017-09-21 10:46:00    2017-09-21 10:46:00
122436    37014    740    2017-09-21 19:20:00    2017-09-21 19:20:00
122437    37014    685    2017-09-21 23:28:00    2017-09-21 23:28:00
122438    37014    686    2017-09-21 21:31:00    2017-09-21 21:31:00
122439    37014    537    2017-09-21 08:49:00    2017-09-21 08:49:00
122440    37015    737    2017-09-21 17:02:00    2017-09-21 17:02:00
122441    37015    537    2017-09-21 13:14:00    2017-09-21 13:14:00
122442    37015    831    2017-09-21 22:47:00    2017-09-21 22:47:00
122443    37015    800    2017-09-21 18:44:00    2017-09-21 18:44:00
122444    37015    759    2017-09-21 19:16:00    2017-09-21 19:16:00
122445    37016    810    2017-09-21 11:38:00    2017-09-21 11:38:00
122446    37016    874    2017-09-21 09:53:00    2017-09-21 09:53:00
122447    37016    823    2017-09-21 15:24:00    2017-09-21 15:24:00
122448    37016    570    2017-09-21 06:49:00    2017-09-21 06:49:00
122449    37016    856    2017-09-21 04:49:00    2017-09-21 04:49:00
122450    37017    596    2017-09-21 07:09:00    2017-09-21 07:09:00
122451    37017    907    2017-09-21 17:36:00    2017-09-21 17:36:00
122452    37017    896    2017-09-21 21:47:00    2017-09-21 21:47:00
122453    37017    631    2017-09-21 17:22:00    2017-09-21 17:22:00
122454    37017    600    2017-09-21 21:57:00    2017-09-21 21:57:00
122455    37018    801    2017-09-21 06:28:00    2017-09-21 06:28:00
122456    37018    871    2017-09-21 15:57:00    2017-09-21 15:57:00
122457    37018    907    2017-09-21 10:42:00    2017-09-21 10:42:00
122458    37018    936    2017-09-21 07:34:00    2017-09-21 07:34:00
122459    37018    874    2017-09-21 20:16:00    2017-09-21 20:16:00
122460    37019    956    2017-09-21 08:56:00    2017-09-21 08:56:00
122461    37019    639    2017-09-21 06:55:00    2017-09-21 06:55:00
122462    37019    780    2017-09-21 05:09:00    2017-09-21 05:09:00
122463    37019    866    2017-09-21 12:32:00    2017-09-21 12:32:00
122464    37019    662    2017-09-21 14:14:00    2017-09-21 14:14:00
122465    37020    948    2017-09-21 05:49:00    2017-09-21 05:49:00
122466    37020    610    2017-09-21 15:40:00    2017-09-21 15:40:00
122467    37020    676    2017-09-21 15:25:00    2017-09-21 15:25:00
122468    37020    525    2017-09-21 09:20:00    2017-09-21 09:20:00
122469    37020    729    2017-09-21 13:30:00    2017-09-21 13:30:00
122470    37021    947    2017-09-21 03:59:00    2017-09-21 03:59:00
122471    37021    917    2017-09-21 09:38:00    2017-09-21 09:38:00
122472    37021    654    2017-09-21 07:55:00    2017-09-21 07:55:00
122473    37021    739    2017-09-21 23:32:00    2017-09-21 23:32:00
122474    37021    537    2017-09-21 17:21:00    2017-09-21 17:21:00
122475    37022    643    2017-09-21 15:08:00    2017-09-21 15:08:00
122476    37022    958    2017-09-21 03:11:00    2017-09-21 03:11:00
122477    37022    587    2017-09-21 13:40:00    2017-09-21 13:40:00
122478    37022    706    2017-09-21 17:34:00    2017-09-21 17:34:00
122479    37022    782    2017-09-21 21:21:00    2017-09-21 21:21:00
122480    37023    950    2017-09-21 10:30:00    2017-09-21 10:30:00
122481    37023    584    2017-09-21 02:00:00    2017-09-21 02:00:00
122482    37023    474    2017-09-21 05:13:00    2017-09-21 05:13:00
122483    37023    652    2017-09-21 01:54:00    2017-09-21 01:54:00
122484    37023    806    2017-09-21 20:07:00    2017-09-21 20:07:00
122485    37024    812    2017-09-21 02:00:00    2017-09-21 02:00:00
122486    37024    937    2017-09-21 22:42:00    2017-09-21 22:42:00
122487    37024    814    2017-09-21 09:23:00    2017-09-21 09:23:00
122488    37024    725    2017-09-21 14:13:00    2017-09-21 14:13:00
122489    37024    731    2017-09-21 21:37:00    2017-09-21 21:37:00
122490    37025    861    2017-09-21 12:23:00    2017-09-21 12:23:00
122491    37025    804    2017-09-21 13:00:00    2017-09-21 13:00:00
122492    37025    688    2017-09-21 21:02:00    2017-09-21 21:02:00
122493    37025    826    2017-09-21 22:53:00    2017-09-21 22:53:00
122494    37025    897    2017-09-21 21:35:00    2017-09-21 21:35:00
122495    37026    795    2017-09-21 12:38:00    2017-09-21 12:38:00
122496    37026    748    2017-09-21 11:35:00    2017-09-21 11:35:00
122497    37026    810    2017-09-21 15:56:00    2017-09-21 15:56:00
122498    37026    718    2017-09-21 12:55:00    2017-09-21 12:55:00
122499    37026    812    2017-09-21 01:45:00    2017-09-21 01:45:00
122500    37027    954    2017-09-21 03:28:00    2017-09-21 03:28:00
122501    37027    556    2017-09-21 03:43:00    2017-09-21 03:43:00
122502    37027    619    2017-09-21 22:18:00    2017-09-21 22:18:00
122503    37027    662    2017-09-21 14:31:00    2017-09-21 14:31:00
122504    37027    483    2017-09-21 22:53:00    2017-09-21 22:53:00
122505    37028    610    2017-09-21 21:11:00    2017-09-21 21:11:00
122506    37028    669    2017-09-21 17:12:00    2017-09-21 17:12:00
122507    37028    866    2017-09-21 11:40:00    2017-09-21 11:40:00
122508    37028    550    2017-09-21 15:02:00    2017-09-21 15:02:00
122509    37028    865    2017-09-21 18:40:00    2017-09-21 18:40:00
122510    37029    508    2017-09-21 11:44:00    2017-09-21 11:44:00
122511    37029    572    2017-09-21 15:56:00    2017-09-21 15:56:00
122512    37029    514    2017-09-21 05:12:00    2017-09-21 05:12:00
122513    37029    718    2017-09-21 19:54:00    2017-09-21 19:54:00
122514    37029    541    2017-09-21 18:55:00    2017-09-21 18:55:00
122515    37030    914    2017-09-21 17:46:00    2017-09-21 17:46:00
122516    37030    538    2017-09-21 01:48:00    2017-09-21 01:48:00
122517    37030    773    2017-09-21 22:43:00    2017-09-21 22:43:00
122518    37030    909    2017-09-21 20:30:00    2017-09-21 20:30:00
122519    37030    920    2017-09-21 08:12:00    2017-09-21 08:12:00
122520    37031    812    2017-09-21 11:22:00    2017-09-21 11:22:00
122521    37031    677    2017-09-21 21:59:00    2017-09-21 21:59:00
122522    37031    792    2017-09-21 10:58:00    2017-09-21 10:58:00
122523    37031    958    2017-09-21 12:03:00    2017-09-21 12:03:00
122524    37031    957    2017-09-21 19:38:00    2017-09-21 19:38:00
122525    37032    935    2017-09-21 21:39:00    2017-09-21 21:39:00
122526    37032    808    2017-09-21 05:01:00    2017-09-21 05:01:00
122527    37032    796    2017-09-21 03:52:00    2017-09-21 03:52:00
122528    37032    494    2017-09-21 22:56:00    2017-09-21 22:56:00
122529    37032    763    2017-09-21 03:38:00    2017-09-21 03:38:00
122530    37033    663    2017-09-21 01:48:00    2017-09-21 01:48:00
122531    37033    839    2017-09-21 05:18:00    2017-09-21 05:18:00
122532    37033    617    2017-09-21 11:28:00    2017-09-21 11:28:00
122533    37033    839    2017-09-21 02:40:00    2017-09-21 02:40:00
122534    37033    739    2017-09-21 23:07:00    2017-09-21 23:07:00
122535    37034    743    2017-09-21 21:47:00    2017-09-21 21:47:00
122536    37034    575    2017-09-21 13:48:00    2017-09-21 13:48:00
122537    37034    786    2017-09-21 13:25:00    2017-09-21 13:25:00
122538    37034    880    2017-09-21 04:52:00    2017-09-21 04:52:00
122539    37034    474    2017-09-21 13:19:00    2017-09-21 13:19:00
122540    37035    503    2017-09-21 03:36:00    2017-09-21 03:36:00
122541    37035    638    2017-09-21 20:33:00    2017-09-21 20:33:00
122542    37035    708    2017-09-21 10:49:00    2017-09-21 10:49:00
122543    37035    538    2017-09-21 22:53:00    2017-09-21 22:53:00
122544    37035    617    2017-09-21 21:36:00    2017-09-21 21:36:00
122545    37036    753    2017-09-21 04:04:00    2017-09-21 04:04:00
122546    37036    864    2017-09-21 01:17:00    2017-09-21 01:17:00
122547    37036    547    2017-09-21 15:33:00    2017-09-21 15:33:00
122548    37036    465    2017-09-21 09:42:00    2017-09-21 09:42:00
122549    37036    762    2017-09-21 07:44:00    2017-09-21 07:44:00
122550    37037    646    2017-09-21 08:57:00    2017-09-21 08:57:00
122551    37037    640    2017-09-21 21:15:00    2017-09-21 21:15:00
122552    37037    868    2017-09-21 18:54:00    2017-09-21 18:54:00
122553    37037    902    2017-09-21 07:00:00    2017-09-21 07:00:00
122554    37037    699    2017-09-21 17:57:00    2017-09-21 17:57:00
122555    37038    810    2017-09-21 02:21:00    2017-09-21 02:21:00
122556    37038    548    2017-09-21 16:20:00    2017-09-21 16:20:00
122557    37038    673    2017-09-21 19:24:00    2017-09-21 19:24:00
122558    37038    676    2017-09-21 07:14:00    2017-09-21 07:14:00
122559    37038    659    2017-09-21 11:32:00    2017-09-21 11:32:00
122560    37039    807    2017-09-21 20:09:00    2017-09-21 20:09:00
122561    37039    521    2017-09-21 02:02:00    2017-09-21 02:02:00
122562    37039    901    2017-09-21 01:10:00    2017-09-21 01:10:00
122563    37039    949    2017-09-21 01:31:00    2017-09-21 01:31:00
122564    37039    711    2017-09-21 18:55:00    2017-09-21 18:55:00
122565    37040    750    2017-09-21 23:24:00    2017-09-21 23:24:00
122566    37040    792    2017-09-21 21:21:00    2017-09-21 21:21:00
122567    37040    700    2017-09-21 03:09:00    2017-09-21 03:09:00
122568    37040    827    2017-09-21 17:00:00    2017-09-21 17:00:00
122569    37040    722    2017-09-21 16:17:00    2017-09-21 16:17:00
122570    37041    600    2017-09-21 02:42:00    2017-09-21 02:42:00
122571    37041    917    2017-09-21 17:03:00    2017-09-21 17:03:00
122572    37041    774    2017-09-21 02:45:00    2017-09-21 02:45:00
122573    37041    504    2017-09-21 17:02:00    2017-09-21 17:02:00
122574    37041    755    2017-09-21 16:11:00    2017-09-21 16:11:00
122575    37042    756    2017-09-21 04:25:00    2017-09-21 04:25:00
122576    37042    751    2017-09-21 11:03:00    2017-09-21 11:03:00
122577    37042    833    2017-09-21 14:48:00    2017-09-21 14:48:00
122578    37042    917    2017-09-21 06:07:00    2017-09-21 06:07:00
122579    37042    779    2017-09-21 05:19:00    2017-09-21 05:19:00
122580    37043    605    2017-09-21 12:26:00    2017-09-21 12:26:00
122581    37043    787    2017-09-21 12:07:00    2017-09-21 12:07:00
122582    37043    713    2017-09-21 16:57:00    2017-09-21 16:57:00
122583    37043    817    2017-09-21 22:26:00    2017-09-21 22:26:00
122584    37043    728    2017-09-21 01:46:00    2017-09-21 01:46:00
122585    37044    487    2017-09-21 04:38:00    2017-09-21 04:38:00
122586    37044    673    2017-09-21 22:55:00    2017-09-21 22:55:00
122587    37044    600    2017-09-21 02:46:00    2017-09-21 02:46:00
122588    37044    775    2017-09-21 14:08:00    2017-09-21 14:08:00
122589    37044    742    2017-09-21 17:49:00    2017-09-21 17:49:00
122590    37045    612    2017-09-21 07:06:00    2017-09-21 07:06:00
122591    37045    529    2017-09-21 17:40:00    2017-09-21 17:40:00
122592    37045    581    2017-09-21 06:07:00    2017-09-21 06:07:00
122593    37045    536    2017-09-21 18:22:00    2017-09-21 18:22:00
122594    37045    844    2017-09-21 01:29:00    2017-09-21 01:29:00
122595    37046    883    2017-09-21 19:14:00    2017-09-21 19:14:00
122596    37046    548    2017-09-21 01:01:00    2017-09-21 01:01:00
122597    37046    556    2017-09-21 04:07:00    2017-09-21 04:07:00
122598    37046    520    2017-09-21 15:48:00    2017-09-21 15:48:00
122599    37046    604    2017-09-21 03:36:00    2017-09-21 03:36:00
122600    37047    949    2017-09-21 15:38:00    2017-09-21 15:38:00
122601    37047    829    2017-09-21 18:14:00    2017-09-21 18:14:00
122602    37047    774    2017-09-21 11:15:00    2017-09-21 11:15:00
122603    37047    490    2017-09-21 16:38:00    2017-09-21 16:38:00
122604    37047    750    2017-09-21 22:12:00    2017-09-21 22:12:00
122605    37048    724    2017-09-21 15:22:00    2017-09-21 15:22:00
122606    37048    481    2017-09-21 11:22:00    2017-09-21 11:22:00
122607    37048    601    2017-09-21 03:08:00    2017-09-21 03:08:00
122608    37048    842    2017-09-21 03:03:00    2017-09-21 03:03:00
122609    37048    879    2017-09-21 15:13:00    2017-09-21 15:13:00
122610    37049    744    2017-09-21 04:32:00    2017-09-21 04:32:00
122611    37049    565    2017-09-21 15:35:00    2017-09-21 15:35:00
122612    37049    579    2017-09-21 01:39:00    2017-09-21 01:39:00
122613    37049    674    2017-09-21 08:13:00    2017-09-21 08:13:00
122614    37049    703    2017-09-21 06:06:00    2017-09-21 06:06:00
122615    37050    936    2017-09-21 11:08:00    2017-09-21 11:08:00
122616    37050    667    2017-09-21 21:29:00    2017-09-21 21:29:00
122617    37050    785    2017-09-21 03:06:00    2017-09-21 03:06:00
122618    37050    834    2017-09-21 14:25:00    2017-09-21 14:25:00
122619    37050    648    2017-09-21 04:40:00    2017-09-21 04:40:00
122620    37051    507    2017-09-21 21:03:00    2017-09-21 21:03:00
122621    37051    692    2017-09-21 21:24:00    2017-09-21 21:24:00
122622    37051    844    2017-09-21 09:33:00    2017-09-21 09:33:00
122623    37051    514    2017-09-21 04:59:00    2017-09-21 04:59:00
122624    37051    516    2017-09-21 10:21:00    2017-09-21 10:21:00
122625    37052    801    2017-09-21 03:18:00    2017-09-21 03:18:00
122626    37052    516    2017-09-21 02:51:00    2017-09-21 02:51:00
122627    37052    921    2017-09-21 05:12:00    2017-09-21 05:12:00
122628    37052    649    2017-09-21 18:41:00    2017-09-21 18:41:00
122629    37052    953    2017-09-21 23:20:00    2017-09-21 23:20:00
122630    37053    782    2017-09-21 14:06:00    2017-09-21 14:06:00
122631    37053    755    2017-09-21 23:09:00    2017-09-21 23:09:00
122632    37053    774    2017-09-21 19:15:00    2017-09-21 19:15:00
122633    37053    537    2017-09-21 23:58:00    2017-09-21 23:58:00
122634    37053    714    2017-09-21 22:22:00    2017-09-21 22:22:00
122635    37054    491    2017-09-21 14:23:00    2017-09-21 14:23:00
122636    37054    794    2017-09-21 09:33:00    2017-09-21 09:33:00
122637    37054    520    2017-09-21 14:36:00    2017-09-21 14:36:00
122638    37054    636    2017-09-21 09:19:00    2017-09-21 09:19:00
122639    37054    667    2017-09-21 23:16:00    2017-09-21 23:16:00
122640    37055    871    2017-09-21 08:33:00    2017-09-21 08:33:00
122641    37055    559    2017-09-21 12:10:00    2017-09-21 12:10:00
122642    37055    773    2017-09-21 17:53:00    2017-09-21 17:53:00
122643    37055    505    2017-09-21 04:36:00    2017-09-21 04:36:00
122644    37055    842    2017-09-21 10:04:00    2017-09-21 10:04:00
122645    37056    723    2017-09-21 11:49:00    2017-09-21 11:49:00
122646    37056    822    2017-09-21 22:54:00    2017-09-21 22:54:00
122647    37056    511    2017-09-21 10:58:00    2017-09-21 10:58:00
122648    37056    837    2017-09-21 20:42:00    2017-09-21 20:42:00
122649    37056    667    2017-09-21 08:19:00    2017-09-21 08:19:00
122650    37057    911    2017-09-21 14:34:00    2017-09-21 14:34:00
122651    37057    784    2017-09-21 08:52:00    2017-09-21 08:52:00
122652    37057    802    2017-09-21 12:54:00    2017-09-21 12:54:00
122653    37057    604    2017-09-21 05:37:00    2017-09-21 05:37:00
122654    37057    641    2017-09-21 08:00:00    2017-09-21 08:00:00
122655    37058    563    2017-09-21 19:46:00    2017-09-21 19:46:00
122656    37058    749    2017-09-21 10:34:00    2017-09-21 10:34:00
122657    37058    736    2017-09-21 17:27:00    2017-09-21 17:27:00
122658    37058    787    2017-09-21 08:10:00    2017-09-21 08:10:00
122659    37058    606    2017-09-21 05:47:00    2017-09-21 05:47:00
122660    37059    551    2017-09-21 07:06:00    2017-09-21 07:06:00
122661    37059    705    2017-09-21 20:18:00    2017-09-21 20:18:00
122662    37059    529    2017-09-21 07:21:00    2017-09-21 07:21:00
122663    37059    875    2017-09-21 19:31:00    2017-09-21 19:31:00
122664    37059    679    2017-09-21 10:34:00    2017-09-21 10:34:00
122665    37060    544    2017-09-22 19:59:00    2017-09-22 19:59:00
122666    37060    713    2017-09-22 20:19:00    2017-09-22 20:19:00
122667    37060    791    2017-09-22 13:23:00    2017-09-22 13:23:00
122668    37060    907    2017-09-22 14:41:00    2017-09-22 14:41:00
122669    37060    858    2017-09-22 09:53:00    2017-09-22 09:53:00
122670    37061    780    2017-09-22 15:16:00    2017-09-22 15:16:00
122671    37061    615    2017-09-22 12:10:00    2017-09-22 12:10:00
122672    37061    928    2017-09-22 06:07:00    2017-09-22 06:07:00
122673    37061    764    2017-09-22 21:35:00    2017-09-22 21:35:00
122674    37061    838    2017-09-22 04:31:00    2017-09-22 04:31:00
122675    37062    711    2017-09-22 13:20:00    2017-09-22 13:20:00
122676    37062    584    2017-09-22 18:58:00    2017-09-22 18:58:00
122677    37062    566    2017-09-22 23:48:00    2017-09-22 23:48:00
122678    37062    687    2017-09-22 13:46:00    2017-09-22 13:46:00
122679    37062    502    2017-09-22 21:36:00    2017-09-22 21:36:00
122680    37063    804    2017-09-22 08:10:00    2017-09-22 08:10:00
122681    37063    843    2017-09-22 02:21:00    2017-09-22 02:21:00
122682    37063    507    2017-09-22 23:34:00    2017-09-22 23:34:00
122683    37063    787    2017-09-22 04:07:00    2017-09-22 04:07:00
122684    37063    720    2017-09-22 16:10:00    2017-09-22 16:10:00
122685    37064    658    2017-09-22 10:19:00    2017-09-22 10:19:00
122686    37064    540    2017-09-22 06:09:00    2017-09-22 06:09:00
122687    37064    872    2017-09-22 20:30:00    2017-09-22 20:30:00
122688    37064    692    2017-09-22 17:07:00    2017-09-22 17:07:00
122689    37064    726    2017-09-22 08:08:00    2017-09-22 08:08:00
122690    37065    530    2017-09-22 01:14:00    2017-09-22 01:14:00
122691    37065    733    2017-09-22 18:53:00    2017-09-22 18:53:00
122692    37065    745    2017-09-22 05:18:00    2017-09-22 05:18:00
122693    37065    731    2017-09-22 05:50:00    2017-09-22 05:50:00
122694    37065    905    2017-09-22 11:23:00    2017-09-22 11:23:00
122695    37066    765    2017-09-22 16:11:00    2017-09-22 16:11:00
122696    37066    955    2017-09-22 14:43:00    2017-09-22 14:43:00
122697    37066    467    2017-09-22 03:09:00    2017-09-22 03:09:00
122698    37066    894    2017-09-22 02:36:00    2017-09-22 02:36:00
122699    37066    673    2017-09-22 23:36:00    2017-09-22 23:36:00
122700    37067    663    2017-09-22 01:18:00    2017-09-22 01:18:00
122701    37067    896    2017-09-22 09:32:00    2017-09-22 09:32:00
122702    37067    868    2017-09-22 04:13:00    2017-09-22 04:13:00
122703    37067    777    2017-09-22 02:23:00    2017-09-22 02:23:00
122704    37067    600    2017-09-22 20:50:00    2017-09-22 20:50:00
122705    37068    675    2017-09-22 18:17:00    2017-09-22 18:17:00
122706    37068    782    2017-09-22 23:12:00    2017-09-22 23:12:00
122707    37068    946    2017-09-22 04:36:00    2017-09-22 04:36:00
122708    37068    587    2017-09-22 10:40:00    2017-09-22 10:40:00
122709    37068    639    2017-09-22 18:27:00    2017-09-22 18:27:00
122710    37069    528    2017-09-22 08:10:00    2017-09-22 08:10:00
122711    37069    861    2017-09-22 12:16:00    2017-09-22 12:16:00
122712    37069    944    2017-09-22 02:37:00    2017-09-22 02:37:00
122713    37069    749    2017-09-22 21:25:00    2017-09-22 21:25:00
122714    37069    655    2017-09-22 02:59:00    2017-09-22 02:59:00
122715    37070    871    2017-09-22 21:08:00    2017-09-22 21:08:00
122716    37070    588    2017-09-22 03:58:00    2017-09-22 03:58:00
122717    37070    825    2017-09-22 13:41:00    2017-09-22 13:41:00
122718    37070    479    2017-09-22 16:36:00    2017-09-22 16:36:00
122719    37070    940    2017-09-22 01:33:00    2017-09-22 01:33:00
122720    37071    626    2017-09-22 13:46:00    2017-09-22 13:46:00
122721    37071    689    2017-09-22 14:28:00    2017-09-22 14:28:00
122722    37071    669    2017-09-22 15:55:00    2017-09-22 15:55:00
122723    37071    503    2017-09-22 19:12:00    2017-09-22 19:12:00
122724    37071    513    2017-09-22 01:16:00    2017-09-22 01:16:00
122725    37072    570    2017-09-22 21:21:00    2017-09-22 21:21:00
122726    37072    723    2017-09-22 17:55:00    2017-09-22 17:55:00
122727    37072    473    2017-09-22 07:47:00    2017-09-22 07:47:00
122728    37072    920    2017-09-22 18:54:00    2017-09-22 18:54:00
122729    37072    738    2017-09-22 07:20:00    2017-09-22 07:20:00
122730    37073    805    2017-09-23 04:15:00    2017-09-23 04:15:00
122731    37073    810    2017-09-23 16:58:00    2017-09-23 16:58:00
122732    37073    715    2017-09-23 13:01:00    2017-09-23 13:01:00
122733    37073    861    2017-09-23 13:21:00    2017-09-23 13:21:00
122734    37073    695    2017-09-23 18:23:00    2017-09-23 18:23:00
122735    37074    666    2017-09-23 15:01:00    2017-09-23 15:01:00
122736    37074    793    2017-09-23 12:33:00    2017-09-23 12:33:00
122737    37074    583    2017-09-23 14:35:00    2017-09-23 14:35:00
122738    37074    794    2017-09-23 12:37:00    2017-09-23 12:37:00
122739    37074    546    2017-09-23 10:14:00    2017-09-23 10:14:00
122740    37075    538    2017-09-23 15:11:00    2017-09-23 15:11:00
122741    37075    468    2017-09-23 04:47:00    2017-09-23 04:47:00
122742    37075    813    2017-09-23 03:12:00    2017-09-23 03:12:00
122743    37075    834    2017-09-23 16:11:00    2017-09-23 16:11:00
122744    37075    928    2017-09-23 16:53:00    2017-09-23 16:53:00
122745    37076    627    2017-09-23 15:11:00    2017-09-23 15:11:00
122746    37076    878    2017-09-23 04:50:00    2017-09-23 04:50:00
122747    37076    611    2017-09-23 06:41:00    2017-09-23 06:41:00
122748    37076    727    2017-09-23 05:23:00    2017-09-23 05:23:00
122749    37076    797    2017-09-23 09:58:00    2017-09-23 09:58:00
122750    37077    630    2017-09-23 04:04:00    2017-09-23 04:04:00
122751    37077    728    2017-09-23 22:51:00    2017-09-23 22:51:00
122752    37077    896    2017-09-23 10:19:00    2017-09-23 10:19:00
122753    37077    558    2017-09-23 10:35:00    2017-09-23 10:35:00
122754    37077    534    2017-09-23 05:41:00    2017-09-23 05:41:00
122755    37078    747    2017-09-23 19:16:00    2017-09-23 19:16:00
122756    37078    813    2017-09-23 13:24:00    2017-09-23 13:24:00
122757    37078    603    2017-09-23 10:58:00    2017-09-23 10:58:00
122758    37078    709    2017-09-23 21:40:00    2017-09-23 21:40:00
122759    37078    749    2017-09-23 06:59:00    2017-09-23 06:59:00
122760    37079    575    2017-09-23 02:31:00    2017-09-23 02:31:00
122761    37079    626    2017-09-23 22:21:00    2017-09-23 22:21:00
122762    37079    685    2017-09-23 16:26:00    2017-09-23 16:26:00
122763    37079    877    2017-09-23 06:02:00    2017-09-23 06:02:00
122764    37079    696    2017-09-23 08:19:00    2017-09-23 08:19:00
122765    37080    722    2017-09-23 20:31:00    2017-09-23 20:31:00
122766    37080    711    2017-09-23 12:40:00    2017-09-23 12:40:00
122767    37080    696    2017-09-23 03:00:00    2017-09-23 03:00:00
122768    37080    832    2017-09-23 05:00:00    2017-09-23 05:00:00
122769    37080    816    2017-09-23 06:23:00    2017-09-23 06:23:00
122770    37081    953    2017-09-23 18:07:00    2017-09-23 18:07:00
122771    37081    674    2017-09-23 06:12:00    2017-09-23 06:12:00
122772    37081    868    2017-09-23 17:22:00    2017-09-23 17:22:00
122773    37081    577    2017-09-23 08:12:00    2017-09-23 08:12:00
122774    37081    938    2017-09-23 19:41:00    2017-09-23 19:41:00
122775    37082    880    2017-09-23 10:09:00    2017-09-23 10:09:00
122776    37082    749    2017-09-23 16:40:00    2017-09-23 16:40:00
122777    37082    791    2017-09-23 02:18:00    2017-09-23 02:18:00
122778    37082    919    2017-09-23 22:03:00    2017-09-23 22:03:00
122779    37082    939    2017-09-23 11:58:00    2017-09-23 11:58:00
122780    37083    679    2017-09-23 11:24:00    2017-09-23 11:24:00
122781    37083    578    2017-09-23 09:53:00    2017-09-23 09:53:00
122782    37083    547    2017-09-23 13:41:00    2017-09-23 13:41:00
122783    37083    604    2017-09-23 17:15:00    2017-09-23 17:15:00
122784    37083    542    2017-09-23 06:22:00    2017-09-23 06:22:00
122785    37084    813    2017-09-23 09:01:00    2017-09-23 09:01:00
122786    37084    507    2017-09-23 10:43:00    2017-09-23 10:43:00
122787    37084    800    2017-09-23 16:30:00    2017-09-23 16:30:00
122788    37084    792    2017-09-23 12:24:00    2017-09-23 12:24:00
122789    37084    765    2017-09-23 09:55:00    2017-09-23 09:55:00
122790    37085    515    2017-09-23 05:47:00    2017-09-23 05:47:00
122791    37085    666    2017-09-23 08:22:00    2017-09-23 08:22:00
122792    37085    953    2017-09-23 13:50:00    2017-09-23 13:50:00
122793    37085    600    2017-09-23 07:17:00    2017-09-23 07:17:00
122794    37085    776    2017-09-23 23:33:00    2017-09-23 23:33:00
122795    37086    866    2017-09-23 04:41:00    2017-09-23 04:41:00
122796    37086    818    2017-09-23 20:27:00    2017-09-23 20:27:00
122797    37086    479    2017-09-23 16:27:00    2017-09-23 16:27:00
122798    37086    669    2017-09-23 21:19:00    2017-09-23 21:19:00
122799    37086    708    2017-09-23 14:11:00    2017-09-23 14:11:00
122800    37087    843    2017-09-23 06:48:00    2017-09-23 06:48:00
122801    37087    708    2017-09-23 20:07:00    2017-09-23 20:07:00
122802    37087    628    2017-09-23 18:52:00    2017-09-23 18:52:00
122803    37087    827    2017-09-23 15:48:00    2017-09-23 15:48:00
122804    37087    873    2017-09-23 09:02:00    2017-09-23 09:02:00
122805    37088    854    2017-09-23 14:53:00    2017-09-23 14:53:00
122806    37088    951    2017-09-23 15:58:00    2017-09-23 15:58:00
122807    37088    606    2017-09-23 13:29:00    2017-09-23 13:29:00
122808    37088    854    2017-09-23 20:11:00    2017-09-23 20:11:00
122809    37088    686    2017-09-23 10:11:00    2017-09-23 10:11:00
122810    37089    738    2017-09-23 13:12:00    2017-09-23 13:12:00
122811    37089    826    2017-09-23 12:12:00    2017-09-23 12:12:00
122812    37089    486    2017-09-23 16:07:00    2017-09-23 16:07:00
122813    37089    473    2017-09-23 01:12:00    2017-09-23 01:12:00
122814    37089    682    2017-09-23 18:33:00    2017-09-23 18:33:00
122815    37090    744    2017-09-23 19:22:00    2017-09-23 19:22:00
122816    37090    499    2017-09-23 10:58:00    2017-09-23 10:58:00
122817    37090    682    2017-09-23 15:43:00    2017-09-23 15:43:00
122818    37090    732    2017-09-23 08:02:00    2017-09-23 08:02:00
122819    37090    653    2017-09-23 08:39:00    2017-09-23 08:39:00
122820    37091    714    2017-09-23 22:12:00    2017-09-23 22:12:00
122821    37091    908    2017-09-23 13:39:00    2017-09-23 13:39:00
122822    37091    646    2017-09-23 09:48:00    2017-09-23 09:48:00
122823    37091    707    2017-09-23 19:39:00    2017-09-23 19:39:00
122824    37091    467    2017-09-23 01:17:00    2017-09-23 01:17:00
122825    37092    509    2017-09-23 23:22:00    2017-09-23 23:22:00
122826    37092    470    2017-09-23 11:31:00    2017-09-23 11:31:00
122827    37092    891    2017-09-23 22:23:00    2017-09-23 22:23:00
122828    37092    493    2017-09-23 22:00:00    2017-09-23 22:00:00
122829    37092    830    2017-09-23 23:50:00    2017-09-23 23:50:00
122830    37093    840    2017-09-23 18:21:00    2017-09-23 18:21:00
122831    37093    537    2017-09-23 23:15:00    2017-09-23 23:15:00
122832    37093    516    2017-09-23 06:49:00    2017-09-23 06:49:00
122833    37093    759    2017-09-23 17:50:00    2017-09-23 17:50:00
122834    37093    820    2017-09-23 06:00:00    2017-09-23 06:00:00
122835    37094    480    2017-09-23 01:42:00    2017-09-23 01:42:00
122836    37094    930    2017-09-23 19:29:00    2017-09-23 19:29:00
122837    37094    953    2017-09-23 08:41:00    2017-09-23 08:41:00
122838    37094    508    2017-09-23 19:14:00    2017-09-23 19:14:00
122839    37094    734    2017-09-23 03:06:00    2017-09-23 03:06:00
122840    37095    483    2017-09-23 18:20:00    2017-09-23 18:20:00
122841    37095    919    2017-09-23 17:46:00    2017-09-23 17:46:00
122842    37095    602    2017-09-23 16:37:00    2017-09-23 16:37:00
122843    37095    583    2017-09-23 09:19:00    2017-09-23 09:19:00
122844    37095    625    2017-09-23 09:34:00    2017-09-23 09:34:00
122845    37096    732    2017-09-23 05:37:00    2017-09-23 05:37:00
122846    37096    713    2017-09-23 11:24:00    2017-09-23 11:24:00
122847    37096    605    2017-09-23 09:38:00    2017-09-23 09:38:00
122848    37096    603    2017-09-23 02:53:00    2017-09-23 02:53:00
122849    37096    821    2017-09-23 23:02:00    2017-09-23 23:02:00
122850    37097    533    2017-09-23 04:23:00    2017-09-23 04:23:00
122851    37097    689    2017-09-23 12:15:00    2017-09-23 12:15:00
122852    37097    623    2017-09-23 10:06:00    2017-09-23 10:06:00
122853    37097    552    2017-09-23 04:27:00    2017-09-23 04:27:00
122854    37097    727    2017-09-23 21:07:00    2017-09-23 21:07:00
122855    37098    642    2017-09-23 17:47:00    2017-09-23 17:47:00
122856    37098    876    2017-09-23 15:48:00    2017-09-23 15:48:00
122857    37098    756    2017-09-23 01:53:00    2017-09-23 01:53:00
122858    37098    583    2017-09-23 03:51:00    2017-09-23 03:51:00
122859    37098    823    2017-09-23 08:18:00    2017-09-23 08:18:00
122860    37099    554    2017-09-23 21:16:00    2017-09-23 21:16:00
122861    37099    706    2017-09-23 07:21:00    2017-09-23 07:21:00
122862    37099    910    2017-09-23 20:11:00    2017-09-23 20:11:00
122863    37099    911    2017-09-23 16:36:00    2017-09-23 16:36:00
122864    37099    675    2017-09-23 11:34:00    2017-09-23 11:34:00
122865    37100    653    2017-09-23 23:47:00    2017-09-23 23:47:00
122866    37100    832    2017-09-23 11:12:00    2017-09-23 11:12:00
122867    37100    890    2017-09-23 07:42:00    2017-09-23 07:42:00
122868    37100    703    2017-09-23 01:17:00    2017-09-23 01:17:00
122869    37100    746    2017-09-23 04:18:00    2017-09-23 04:18:00
122870    37101    633    2017-09-23 05:00:00    2017-09-23 05:00:00
122871    37101    642    2017-09-23 21:21:00    2017-09-23 21:21:00
122872    37101    516    2017-09-23 15:32:00    2017-09-23 15:32:00
122873    37101    639    2017-09-23 07:17:00    2017-09-23 07:17:00
122874    37101    798    2017-09-23 08:17:00    2017-09-23 08:17:00
122875    37102    649    2017-09-23 18:43:00    2017-09-23 18:43:00
122876    37102    642    2017-09-23 07:52:00    2017-09-23 07:52:00
122877    37102    928    2017-09-23 14:15:00    2017-09-23 14:15:00
122878    37102    722    2017-09-23 12:27:00    2017-09-23 12:27:00
122879    37102    788    2017-09-23 09:43:00    2017-09-23 09:43:00
122880    37103    788    2017-09-23 02:50:00    2017-09-23 02:50:00
122881    37103    911    2017-09-23 10:55:00    2017-09-23 10:55:00
122882    37103    690    2017-09-23 02:03:00    2017-09-23 02:03:00
122883    37103    743    2017-09-23 17:59:00    2017-09-23 17:59:00
122884    37103    645    2017-09-23 09:24:00    2017-09-23 09:24:00
122885    37104    953    2017-09-23 23:17:00    2017-09-23 23:17:00
122886    37104    488    2017-09-23 07:06:00    2017-09-23 07:06:00
122887    37104    635    2017-09-23 17:54:00    2017-09-23 17:54:00
122888    37104    611    2017-09-23 15:05:00    2017-09-23 15:05:00
122889    37104    832    2017-09-23 17:44:00    2017-09-23 17:44:00
122890    37105    641    2017-09-23 03:15:00    2017-09-23 03:15:00
122891    37105    775    2017-09-23 23:44:00    2017-09-23 23:44:00
122892    37105    882    2017-09-23 19:57:00    2017-09-23 19:57:00
122893    37105    589    2017-09-23 21:03:00    2017-09-23 21:03:00
122894    37105    813    2017-09-23 09:47:00    2017-09-23 09:47:00
122895    37106    737    2017-09-23 21:58:00    2017-09-23 21:58:00
122896    37106    662    2017-09-23 22:11:00    2017-09-23 22:11:00
122897    37106    941    2017-09-23 20:27:00    2017-09-23 20:27:00
122898    37106    833    2017-09-23 14:02:00    2017-09-23 14:02:00
122899    37106    922    2017-09-23 23:28:00    2017-09-23 23:28:00
122900    37107    510    2017-09-23 14:06:00    2017-09-23 14:06:00
122901    37107    725    2017-09-23 06:18:00    2017-09-23 06:18:00
122902    37107    911    2017-09-23 19:31:00    2017-09-23 19:31:00
122903    37107    593    2017-09-23 20:02:00    2017-09-23 20:02:00
122904    37107    644    2017-09-23 15:11:00    2017-09-23 15:11:00
122905    37108    503    2017-09-23 09:05:00    2017-09-23 09:05:00
122906    37108    592    2017-09-23 13:04:00    2017-09-23 13:04:00
122907    37108    505    2017-09-23 02:48:00    2017-09-23 02:48:00
122908    37108    780    2017-09-23 18:58:00    2017-09-23 18:58:00
122909    37108    812    2017-09-23 17:58:00    2017-09-23 17:58:00
122910    37109    842    2017-09-23 23:13:00    2017-09-23 23:13:00
122911    37109    770    2017-09-23 21:32:00    2017-09-23 21:32:00
122912    37109    781    2017-09-23 08:31:00    2017-09-23 08:31:00
122913    37109    873    2017-09-23 10:38:00    2017-09-23 10:38:00
122914    37109    841    2017-09-23 09:12:00    2017-09-23 09:12:00
122915    37110    737    2017-09-23 06:40:00    2017-09-23 06:40:00
122916    37110    587    2017-09-23 23:17:00    2017-09-23 23:17:00
122917    37110    774    2017-09-23 18:56:00    2017-09-23 18:56:00
122918    37110    857    2017-09-23 18:34:00    2017-09-23 18:34:00
122919    37110    550    2017-09-23 18:27:00    2017-09-23 18:27:00
122920    37111    465    2017-09-23 03:11:00    2017-09-23 03:11:00
122921    37111    955    2017-09-23 17:41:00    2017-09-23 17:41:00
122922    37111    595    2017-09-23 04:36:00    2017-09-23 04:36:00
122923    37111    812    2017-09-23 16:25:00    2017-09-23 16:25:00
122924    37111    488    2017-09-23 01:27:00    2017-09-23 01:27:00
122925    37112    888    2017-09-23 10:13:00    2017-09-23 10:13:00
122926    37112    474    2017-09-23 23:20:00    2017-09-23 23:20:00
122927    37112    860    2017-09-23 18:15:00    2017-09-23 18:15:00
122928    37112    725    2017-09-23 07:04:00    2017-09-23 07:04:00
122929    37112    833    2017-09-23 19:36:00    2017-09-23 19:36:00
122930    37113    784    2017-09-23 04:05:00    2017-09-23 04:05:00
122931    37113    937    2017-09-23 02:19:00    2017-09-23 02:19:00
122932    37113    817    2017-09-23 11:39:00    2017-09-23 11:39:00
122933    37113    567    2017-09-23 14:32:00    2017-09-23 14:32:00
122934    37113    524    2017-09-23 08:15:00    2017-09-23 08:15:00
122935    37114    687    2017-09-23 08:42:00    2017-09-23 08:42:00
122936    37114    622    2017-09-23 13:35:00    2017-09-23 13:35:00
122937    37114    737    2017-09-23 01:58:00    2017-09-23 01:58:00
122938    37114    750    2017-09-23 15:53:00    2017-09-23 15:53:00
122939    37114    803    2017-09-23 21:21:00    2017-09-23 21:21:00
122940    37115    656    2017-09-23 05:43:00    2017-09-23 05:43:00
122941    37115    736    2017-09-23 03:26:00    2017-09-23 03:26:00
122942    37115    925    2017-09-23 05:07:00    2017-09-23 05:07:00
122943    37115    525    2017-09-23 01:48:00    2017-09-23 01:48:00
122944    37115    637    2017-09-23 14:23:00    2017-09-23 14:23:00
122945    37116    821    2017-09-23 23:50:00    2017-09-23 23:50:00
122946    37116    942    2017-09-23 09:12:00    2017-09-23 09:12:00
122947    37116    945    2017-09-23 22:40:00    2017-09-23 22:40:00
122948    37116    633    2017-09-23 02:28:00    2017-09-23 02:28:00
122949    37116    475    2017-09-23 12:04:00    2017-09-23 12:04:00
122950    37117    888    2017-09-23 02:21:00    2017-09-23 02:21:00
122951    37117    668    2017-09-23 14:26:00    2017-09-23 14:26:00
122952    37117    889    2017-09-23 23:46:00    2017-09-23 23:46:00
122953    37117    727    2017-09-23 14:03:00    2017-09-23 14:03:00
122954    37117    677    2017-09-23 05:28:00    2017-09-23 05:28:00
122955    37118    713    2017-09-24 14:52:00    2017-09-24 14:52:00
122956    37118    486    2017-09-24 18:38:00    2017-09-24 18:38:00
122957    37118    820    2017-09-24 13:59:00    2017-09-24 13:59:00
122958    37118    488    2017-09-24 07:00:00    2017-09-24 07:00:00
122959    37118    738    2017-09-24 02:55:00    2017-09-24 02:55:00
122960    37119    522    2017-09-24 01:41:00    2017-09-24 01:41:00
122961    37119    750    2017-09-24 11:58:00    2017-09-24 11:58:00
122962    37119    514    2017-09-24 02:33:00    2017-09-24 02:33:00
122963    37119    887    2017-09-24 19:15:00    2017-09-24 19:15:00
122964    37119    912    2017-09-24 17:41:00    2017-09-24 17:41:00
122965    37120    783    2017-09-24 11:00:00    2017-09-24 11:00:00
122966    37120    827    2017-09-24 06:36:00    2017-09-24 06:36:00
122967    37120    463    2017-09-24 13:17:00    2017-09-24 13:17:00
122968    37120    482    2017-09-24 15:28:00    2017-09-24 15:28:00
122969    37120    598    2017-09-24 11:26:00    2017-09-24 11:26:00
122970    37121    887    2017-09-24 23:49:00    2017-09-24 23:49:00
122971    37121    872    2017-09-24 22:40:00    2017-09-24 22:40:00
122972    37121    586    2017-09-24 07:11:00    2017-09-24 07:11:00
122973    37121    679    2017-09-24 08:15:00    2017-09-24 08:15:00
122974    37121    696    2017-09-24 20:33:00    2017-09-24 20:33:00
122975    37122    553    2017-09-24 10:24:00    2017-09-24 10:24:00
122976    37122    931    2017-09-24 03:30:00    2017-09-24 03:30:00
122977    37122    798    2017-09-24 14:51:00    2017-09-24 14:51:00
122978    37122    958    2017-09-24 20:07:00    2017-09-24 20:07:00
122979    37122    762    2017-09-24 10:33:00    2017-09-24 10:33:00
122980    37123    590    2017-09-24 07:11:00    2017-09-24 07:11:00
122981    37123    521    2017-09-24 04:15:00    2017-09-24 04:15:00
122982    37123    638    2017-09-24 08:06:00    2017-09-24 08:06:00
122983    37123    783    2017-09-24 23:50:00    2017-09-24 23:50:00
122984    37123    668    2017-09-24 15:24:00    2017-09-24 15:24:00
122985    37124    669    2017-09-24 19:54:00    2017-09-24 19:54:00
122986    37124    521    2017-09-24 22:24:00    2017-09-24 22:24:00
122987    37124    900    2017-09-24 17:19:00    2017-09-24 17:19:00
122988    37124    914    2017-09-24 02:15:00    2017-09-24 02:15:00
122989    37124    564    2017-09-24 23:43:00    2017-09-24 23:43:00
122990    37125    550    2017-09-24 20:22:00    2017-09-24 20:22:00
122991    37125    929    2017-09-24 19:00:00    2017-09-24 19:00:00
122992    37125    942    2017-09-24 12:56:00    2017-09-24 12:56:00
122993    37125    623    2017-09-24 03:46:00    2017-09-24 03:46:00
122994    37125    731    2017-09-24 15:36:00    2017-09-24 15:36:00
122995    37126    707    2017-09-24 06:05:00    2017-09-24 06:05:00
122996    37126    561    2017-09-24 14:36:00    2017-09-24 14:36:00
122997    37126    948    2017-09-24 23:50:00    2017-09-24 23:50:00
122998    37126    650    2017-09-24 01:49:00    2017-09-24 01:49:00
122999    37126    704    2017-09-24 02:15:00    2017-09-24 02:15:00
123000    37127    741    2017-09-24 21:33:00    2017-09-24 21:33:00
123001    37127    842    2017-09-24 02:18:00    2017-09-24 02:18:00
123002    37127    743    2017-09-24 16:58:00    2017-09-24 16:58:00
123003    37127    489    2017-09-24 04:52:00    2017-09-24 04:52:00
123004    37127    775    2017-09-24 19:17:00    2017-09-24 19:17:00
123005    37128    835    2017-09-24 21:00:00    2017-09-24 21:00:00
123006    37128    817    2017-09-24 18:36:00    2017-09-24 18:36:00
123007    37128    711    2017-09-24 10:19:00    2017-09-24 10:19:00
123008    37128    793    2017-09-24 23:59:00    2017-09-24 23:59:00
123009    37128    787    2017-09-24 16:22:00    2017-09-24 16:22:00
123010    37129    659    2017-09-24 22:56:00    2017-09-24 22:56:00
123011    37129    793    2017-09-24 14:26:00    2017-09-24 14:26:00
123012    37129    959    2017-09-24 04:08:00    2017-09-24 04:08:00
123013    37129    821    2017-09-24 07:27:00    2017-09-24 07:27:00
123014    37129    881    2017-09-24 23:42:00    2017-09-24 23:42:00
123015    37130    953    2017-09-24 14:41:00    2017-09-24 14:41:00
123016    37130    952    2017-09-24 06:02:00    2017-09-24 06:02:00
123017    37130    767    2017-09-24 01:07:00    2017-09-24 01:07:00
123018    37130    917    2017-09-24 14:00:00    2017-09-24 14:00:00
123019    37130    924    2017-09-24 19:02:00    2017-09-24 19:02:00
123020    37131    647    2017-09-24 16:45:00    2017-09-24 16:45:00
123021    37131    731    2017-09-24 19:38:00    2017-09-24 19:38:00
123022    37131    937    2017-09-24 13:57:00    2017-09-24 13:57:00
123023    37131    915    2017-09-24 03:06:00    2017-09-24 03:06:00
123024    37131    472    2017-09-24 19:08:00    2017-09-24 19:08:00
123025    37132    772    2017-09-24 05:56:00    2017-09-24 05:56:00
123026    37132    862    2017-09-24 19:20:00    2017-09-24 19:20:00
123027    37132    537    2017-09-24 12:08:00    2017-09-24 12:08:00
123028    37132    590    2017-09-24 19:32:00    2017-09-24 19:32:00
123029    37132    877    2017-09-24 23:29:00    2017-09-24 23:29:00
123030    37133    583    2017-09-24 12:56:00    2017-09-24 12:56:00
123031    37133    739    2017-09-24 23:17:00    2017-09-24 23:17:00
123032    37133    815    2017-09-24 11:16:00    2017-09-24 11:16:00
123033    37133    792    2017-09-24 09:24:00    2017-09-24 09:24:00
123034    37133    951    2017-09-24 19:52:00    2017-09-24 19:52:00
123035    37134    492    2017-09-24 01:54:00    2017-09-24 01:54:00
123036    37134    895    2017-09-24 21:44:00    2017-09-24 21:44:00
123037    37134    794    2017-09-24 10:27:00    2017-09-24 10:27:00
123038    37134    852    2017-09-24 11:44:00    2017-09-24 11:44:00
123039    37134    933    2017-09-24 06:23:00    2017-09-24 06:23:00
123040    37135    864    2017-09-24 08:44:00    2017-09-24 08:44:00
123041    37135    724    2017-09-24 07:33:00    2017-09-24 07:33:00
123042    37135    546    2017-09-24 04:54:00    2017-09-24 04:54:00
123043    37135    912    2017-09-24 07:04:00    2017-09-24 07:04:00
123044    37135    551    2017-09-24 02:47:00    2017-09-24 02:47:00
123045    37136    713    2017-09-24 02:37:00    2017-09-24 02:37:00
123046    37136    694    2017-09-24 22:20:00    2017-09-24 22:20:00
123047    37136    845    2017-09-24 09:11:00    2017-09-24 09:11:00
123048    37136    571    2017-09-24 15:33:00    2017-09-24 15:33:00
123049    37136    573    2017-09-24 07:25:00    2017-09-24 07:25:00
123050    37137    783    2017-09-24 15:18:00    2017-09-24 15:18:00
123051    37137    912    2017-09-24 08:37:00    2017-09-24 08:37:00
123052    37137    653    2017-09-24 05:53:00    2017-09-24 05:53:00
123053    37137    634    2017-09-24 16:57:00    2017-09-24 16:57:00
123054    37137    842    2017-09-24 07:16:00    2017-09-24 07:16:00
123055    37138    705    2017-09-24 21:49:00    2017-09-24 21:49:00
123056    37138    754    2017-09-24 05:03:00    2017-09-24 05:03:00
123057    37138    902    2017-09-24 20:13:00    2017-09-24 20:13:00
123058    37138    592    2017-09-24 15:34:00    2017-09-24 15:34:00
123059    37138    464    2017-09-24 23:17:00    2017-09-24 23:17:00
123060    37139    753    2017-09-24 19:58:00    2017-09-24 19:58:00
123061    37139    532    2017-09-24 01:13:00    2017-09-24 01:13:00
123062    37139    756    2017-09-24 04:13:00    2017-09-24 04:13:00
123063    37139    591    2017-09-24 02:07:00    2017-09-24 02:07:00
123064    37139    905    2017-09-24 11:20:00    2017-09-24 11:20:00
123065    37140    629    2017-09-24 21:56:00    2017-09-24 21:56:00
123066    37140    539    2017-09-24 10:13:00    2017-09-24 10:13:00
123067    37140    492    2017-09-24 20:21:00    2017-09-24 20:21:00
123068    37140    525    2017-09-24 08:44:00    2017-09-24 08:44:00
123069    37140    930    2017-09-24 04:07:00    2017-09-24 04:07:00
123070    37141    706    2017-09-24 07:08:00    2017-09-24 07:08:00
123071    37141    840    2017-09-24 18:23:00    2017-09-24 18:23:00
123072    37141    532    2017-09-24 11:24:00    2017-09-24 11:24:00
123073    37141    709    2017-09-24 14:20:00    2017-09-24 14:20:00
123074    37141    838    2017-09-24 07:23:00    2017-09-24 07:23:00
123075    37142    789    2017-09-24 21:54:00    2017-09-24 21:54:00
123076    37142    503    2017-09-24 04:22:00    2017-09-24 04:22:00
123077    37142    930    2017-09-24 05:28:00    2017-09-24 05:28:00
123078    37142    773    2017-09-24 11:14:00    2017-09-24 11:14:00
123079    37142    548    2017-09-24 01:01:00    2017-09-24 01:01:00
123080    37143    496    2017-09-24 07:22:00    2017-09-24 07:22:00
123081    37143    792    2017-09-24 21:51:00    2017-09-24 21:51:00
123082    37143    505    2017-09-24 15:03:00    2017-09-24 15:03:00
123083    37143    731    2017-09-24 03:05:00    2017-09-24 03:05:00
123084    37143    852    2017-09-24 14:09:00    2017-09-24 14:09:00
123085    37144    814    2017-09-24 01:57:00    2017-09-24 01:57:00
123086    37144    641    2017-09-24 15:51:00    2017-09-24 15:51:00
123087    37144    598    2017-09-24 02:31:00    2017-09-24 02:31:00
123088    37144    958    2017-09-24 04:01:00    2017-09-24 04:01:00
123089    37144    529    2017-09-24 10:45:00    2017-09-24 10:45:00
123090    37145    778    2017-09-24 17:09:00    2017-09-24 17:09:00
123091    37145    781    2017-09-24 13:03:00    2017-09-24 13:03:00
123092    37145    634    2017-09-24 01:41:00    2017-09-24 01:41:00
123093    37145    748    2017-09-24 15:40:00    2017-09-24 15:40:00
123094    37145    638    2017-09-24 23:52:00    2017-09-24 23:52:00
123095    37146    720    2017-09-24 12:09:00    2017-09-24 12:09:00
123096    37146    753    2017-09-24 15:04:00    2017-09-24 15:04:00
123097    37146    586    2017-09-24 14:28:00    2017-09-24 14:28:00
123098    37146    688    2017-09-24 18:04:00    2017-09-24 18:04:00
123099    37146    615    2017-09-24 23:45:00    2017-09-24 23:45:00
123100    37147    597    2017-09-24 13:01:00    2017-09-24 13:01:00
123101    37147    839    2017-09-24 07:28:00    2017-09-24 07:28:00
123102    37147    599    2017-09-24 08:53:00    2017-09-24 08:53:00
123103    37147    902    2017-09-24 02:43:00    2017-09-24 02:43:00
123104    37147    587    2017-09-24 07:38:00    2017-09-24 07:38:00
123105    37148    584    2017-09-24 17:47:00    2017-09-24 17:47:00
123106    37148    504    2017-09-24 13:07:00    2017-09-24 13:07:00
123107    37148    722    2017-09-24 15:55:00    2017-09-24 15:55:00
123108    37148    569    2017-09-24 01:16:00    2017-09-24 01:16:00
123109    37148    785    2017-09-24 06:01:00    2017-09-24 06:01:00
123110    37149    645    2017-09-24 15:53:00    2017-09-24 15:53:00
123111    37149    706    2017-09-24 21:11:00    2017-09-24 21:11:00
123112    37149    569    2017-09-24 07:47:00    2017-09-24 07:47:00
123113    37149    707    2017-09-24 06:15:00    2017-09-24 06:15:00
123114    37149    861    2017-09-24 09:00:00    2017-09-24 09:00:00
123115    37150    850    2017-09-25 13:16:00    2017-09-25 13:16:00
123116    37150    517    2017-09-25 18:40:00    2017-09-25 18:40:00
123117    37150    557    2017-09-25 11:14:00    2017-09-25 11:14:00
123118    37150    731    2017-09-25 07:16:00    2017-09-25 07:16:00
123119    37150    475    2017-09-25 05:39:00    2017-09-25 05:39:00
123120    37151    504    2017-09-25 18:28:00    2017-09-25 18:28:00
123121    37151    824    2017-09-25 16:15:00    2017-09-25 16:15:00
123122    37151    916    2017-09-25 01:16:00    2017-09-25 01:16:00
123123    37151    565    2017-09-25 07:48:00    2017-09-25 07:48:00
123124    37151    587    2017-09-25 23:00:00    2017-09-25 23:00:00
123125    37152    588    2017-09-25 05:23:00    2017-09-25 05:23:00
123126    37152    626    2017-09-25 09:34:00    2017-09-25 09:34:00
123127    37152    813    2017-09-25 16:23:00    2017-09-25 16:23:00
123128    37152    919    2017-09-25 05:58:00    2017-09-25 05:58:00
123129    37152    518    2017-09-25 12:40:00    2017-09-25 12:40:00
123130    37153    580    2017-09-25 21:23:00    2017-09-25 21:23:00
123131    37153    955    2017-09-25 15:25:00    2017-09-25 15:25:00
123132    37153    583    2017-09-25 23:20:00    2017-09-25 23:20:00
123133    37153    746    2017-09-25 02:51:00    2017-09-25 02:51:00
123134    37153    682    2017-09-25 15:39:00    2017-09-25 15:39:00
123135    37154    556    2017-09-25 07:57:00    2017-09-25 07:57:00
123136    37154    649    2017-09-25 05:05:00    2017-09-25 05:05:00
123137    37154    721    2017-09-25 09:21:00    2017-09-25 09:21:00
123138    37154    822    2017-09-25 07:43:00    2017-09-25 07:43:00
123139    37154    565    2017-09-25 22:15:00    2017-09-25 22:15:00
123140    37155    650    2017-09-25 23:44:00    2017-09-25 23:44:00
123141    37155    595    2017-09-25 07:51:00    2017-09-25 07:51:00
123142    37155    849    2017-09-25 02:16:00    2017-09-25 02:16:00
123143    37155    893    2017-09-25 03:02:00    2017-09-25 03:02:00
123144    37155    632    2017-09-25 03:15:00    2017-09-25 03:15:00
123145    37156    714    2017-09-25 20:55:00    2017-09-25 20:55:00
123146    37156    513    2017-09-25 19:17:00    2017-09-25 19:17:00
123147    37156    671    2017-09-25 21:34:00    2017-09-25 21:34:00
123148    37156    649    2017-09-25 21:18:00    2017-09-25 21:18:00
123149    37156    589    2017-09-25 02:56:00    2017-09-25 02:56:00
123150    37157    655    2017-09-25 16:49:00    2017-09-25 16:49:00
123151    37157    490    2017-09-25 22:23:00    2017-09-25 22:23:00
123152    37157    810    2017-09-25 08:02:00    2017-09-25 08:02:00
123153    37157    484    2017-09-25 06:20:00    2017-09-25 06:20:00
123154    37157    466    2017-09-25 10:37:00    2017-09-25 10:37:00
123155    37158    676    2017-09-25 18:16:00    2017-09-25 18:16:00
123156    37158    830    2017-09-25 20:58:00    2017-09-25 20:58:00
123157    37158    642    2017-09-25 03:37:00    2017-09-25 03:37:00
123158    37158    602    2017-09-25 03:19:00    2017-09-25 03:19:00
123159    37158    630    2017-09-25 09:12:00    2017-09-25 09:12:00
123160    37159    527    2017-09-25 04:41:00    2017-09-25 04:41:00
123161    37159    751    2017-09-25 08:01:00    2017-09-25 08:01:00
123162    37159    715    2017-09-25 04:37:00    2017-09-25 04:37:00
123163    37159    719    2017-09-25 15:21:00    2017-09-25 15:21:00
123164    37159    523    2017-09-25 17:41:00    2017-09-25 17:41:00
123165    37160    558    2017-09-25 07:19:00    2017-09-25 07:19:00
123166    37160    856    2017-09-25 04:26:00    2017-09-25 04:26:00
123167    37160    486    2017-09-25 14:20:00    2017-09-25 14:20:00
123168    37160    943    2017-09-25 03:48:00    2017-09-25 03:48:00
123169    37160    507    2017-09-25 18:17:00    2017-09-25 18:17:00
123170    37161    539    2017-09-25 07:04:00    2017-09-25 07:04:00
123171    37161    726    2017-09-25 05:24:00    2017-09-25 05:24:00
123172    37161    840    2017-09-25 11:10:00    2017-09-25 11:10:00
123173    37161    783    2017-09-25 19:22:00    2017-09-25 19:22:00
123174    37161    725    2017-09-25 09:00:00    2017-09-25 09:00:00
123175    37162    844    2017-09-25 05:55:00    2017-09-25 05:55:00
123176    37162    624    2017-09-25 08:10:00    2017-09-25 08:10:00
123177    37162    724    2017-09-25 01:17:00    2017-09-25 01:17:00
123178    37162    744    2017-09-25 06:40:00    2017-09-25 06:40:00
123179    37162    774    2017-09-25 15:26:00    2017-09-25 15:26:00
123180    37163    695    2017-09-25 04:48:00    2017-09-25 04:48:00
123181    37163    747    2017-09-25 23:44:00    2017-09-25 23:44:00
123182    37163    611    2017-09-25 08:45:00    2017-09-25 08:45:00
123183    37163    847    2017-09-25 08:43:00    2017-09-25 08:43:00
123184    37163    832    2017-09-25 11:08:00    2017-09-25 11:08:00
123185    37164    878    2017-09-25 05:03:00    2017-09-25 05:03:00
123186    37164    910    2017-09-25 13:42:00    2017-09-25 13:42:00
123187    37164    945    2017-09-25 20:49:00    2017-09-25 20:49:00
123188    37164    796    2017-09-25 13:48:00    2017-09-25 13:48:00
123189    37164    515    2017-09-25 22:05:00    2017-09-25 22:05:00
123190    37165    878    2017-09-25 21:38:00    2017-09-25 21:38:00
123191    37165    762    2017-09-25 06:25:00    2017-09-25 06:25:00
123192    37165    516    2017-09-25 02:12:00    2017-09-25 02:12:00
123193    37165    637    2017-09-25 13:28:00    2017-09-25 13:28:00
123194    37165    858    2017-09-25 06:36:00    2017-09-25 06:36:00
123195    37166    603    2017-09-25 15:22:00    2017-09-25 15:22:00
123196    37166    834    2017-09-25 16:31:00    2017-09-25 16:31:00
123197    37166    743    2017-09-25 05:45:00    2017-09-25 05:45:00
123198    37166    851    2017-09-25 02:55:00    2017-09-25 02:55:00
123199    37166    776    2017-09-25 23:09:00    2017-09-25 23:09:00
123200    37167    601    2017-09-25 20:55:00    2017-09-25 20:55:00
123201    37167    687    2017-09-25 20:04:00    2017-09-25 20:04:00
123202    37167    511    2017-09-25 13:42:00    2017-09-25 13:42:00
123203    37167    880    2017-09-25 13:37:00    2017-09-25 13:37:00
123204    37167    476    2017-09-25 15:33:00    2017-09-25 15:33:00
123205    37168    874    2017-09-25 15:04:00    2017-09-25 15:04:00
123206    37168    624    2017-09-25 12:12:00    2017-09-25 12:12:00
123207    37168    637    2017-09-25 01:52:00    2017-09-25 01:52:00
123208    37168    750    2017-09-25 17:29:00    2017-09-25 17:29:00
123209    37168    812    2017-09-25 03:01:00    2017-09-25 03:01:00
123210    37169    749    2017-09-25 12:52:00    2017-09-25 12:52:00
123211    37169    771    2017-09-25 14:39:00    2017-09-25 14:39:00
123212    37169    827    2017-09-25 21:30:00    2017-09-25 21:30:00
123213    37169    597    2017-09-25 22:25:00    2017-09-25 22:25:00
123214    37169    882    2017-09-25 11:28:00    2017-09-25 11:28:00
123215    37170    953    2017-09-25 02:58:00    2017-09-25 02:58:00
123216    37170    787    2017-09-25 22:00:00    2017-09-25 22:00:00
123217    37170    633    2017-09-25 04:00:00    2017-09-25 04:00:00
123218    37170    667    2017-09-25 23:11:00    2017-09-25 23:11:00
123219    37170    541    2017-09-25 15:58:00    2017-09-25 15:58:00
123220    37171    889    2017-09-25 19:41:00    2017-09-25 19:41:00
123221    37171    640    2017-09-25 04:11:00    2017-09-25 04:11:00
123222    37171    544    2017-09-25 18:06:00    2017-09-25 18:06:00
123223    37171    481    2017-09-25 20:33:00    2017-09-25 20:33:00
123224    37171    590    2017-09-25 06:12:00    2017-09-25 06:12:00
123225    37172    481    2017-09-25 14:49:00    2017-09-25 14:49:00
123226    37172    952    2017-09-25 04:16:00    2017-09-25 04:16:00
123227    37172    644    2017-09-25 03:13:00    2017-09-25 03:13:00
123228    37172    494    2017-09-25 11:16:00    2017-09-25 11:16:00
123229    37172    583    2017-09-25 12:31:00    2017-09-25 12:31:00
123230    37173    650    2017-09-25 02:57:00    2017-09-25 02:57:00
123231    37173    789    2017-09-25 16:29:00    2017-09-25 16:29:00
123232    37173    608    2017-09-25 20:56:00    2017-09-25 20:56:00
123233    37173    938    2017-09-25 16:50:00    2017-09-25 16:50:00
123234    37173    825    2017-09-25 13:16:00    2017-09-25 13:16:00
123235    37174    562    2017-09-25 11:48:00    2017-09-25 11:48:00
123236    37174    464    2017-09-25 10:51:00    2017-09-25 10:51:00
123237    37174    661    2017-09-25 07:52:00    2017-09-25 07:52:00
123238    37174    474    2017-09-25 13:20:00    2017-09-25 13:20:00
123239    37174    680    2017-09-25 14:49:00    2017-09-25 14:49:00
123240    37175    487    2017-09-25 10:30:00    2017-09-25 10:30:00
123241    37175    742    2017-09-25 03:29:00    2017-09-25 03:29:00
123242    37175    637    2017-09-25 14:17:00    2017-09-25 14:17:00
123243    37175    506    2017-09-25 13:27:00    2017-09-25 13:27:00
123244    37175    516    2017-09-25 21:16:00    2017-09-25 21:16:00
123245    37176    817    2017-09-25 22:02:00    2017-09-25 22:02:00
123246    37176    501    2017-09-25 09:51:00    2017-09-25 09:51:00
123247    37176    741    2017-09-25 15:20:00    2017-09-25 15:20:00
123248    37176    859    2017-09-25 11:15:00    2017-09-25 11:15:00
123249    37176    641    2017-09-25 20:13:00    2017-09-25 20:13:00
123250    37177    696    2017-09-25 13:44:00    2017-09-25 13:44:00
123251    37177    875    2017-09-25 11:27:00    2017-09-25 11:27:00
123252    37177    506    2017-09-25 06:25:00    2017-09-25 06:25:00
123253    37177    485    2017-09-25 01:52:00    2017-09-25 01:52:00
123254    37177    929    2017-09-25 22:15:00    2017-09-25 22:15:00
123255    37178    643    2017-09-25 07:17:00    2017-09-25 07:17:00
123256    37178    478    2017-09-25 02:05:00    2017-09-25 02:05:00
123257    37178    702    2017-09-25 09:20:00    2017-09-25 09:20:00
123258    37178    573    2017-09-25 22:03:00    2017-09-25 22:03:00
123259    37178    586    2017-09-25 09:25:00    2017-09-25 09:25:00
123260    37179    677    2017-09-25 08:13:00    2017-09-25 08:13:00
123261    37179    665    2017-09-25 08:33:00    2017-09-25 08:33:00
123262    37179    787    2017-09-25 15:36:00    2017-09-25 15:36:00
123263    37179    760    2017-09-25 10:05:00    2017-09-25 10:05:00
123264    37179    762    2017-09-25 02:39:00    2017-09-25 02:39:00
123265    37180    565    2017-09-25 04:27:00    2017-09-25 04:27:00
123266    37180    681    2017-09-25 01:55:00    2017-09-25 01:55:00
123267    37180    791    2017-09-25 18:51:00    2017-09-25 18:51:00
123268    37180    759    2017-09-25 09:25:00    2017-09-25 09:25:00
123269    37180    508    2017-09-25 16:07:00    2017-09-25 16:07:00
123270    37181    893    2017-09-25 19:31:00    2017-09-25 19:31:00
123271    37181    829    2017-09-25 22:58:00    2017-09-25 22:58:00
123272    37181    511    2017-09-25 06:37:00    2017-09-25 06:37:00
123273    37181    735    2017-09-25 04:00:00    2017-09-25 04:00:00
123274    37181    565    2017-09-25 14:08:00    2017-09-25 14:08:00
123275    37182    754    2017-09-25 07:44:00    2017-09-25 07:44:00
123276    37182    506    2017-09-25 10:44:00    2017-09-25 10:44:00
123277    37182    712    2017-09-25 03:48:00    2017-09-25 03:48:00
123278    37182    598    2017-09-25 03:42:00    2017-09-25 03:42:00
123279    37182    901    2017-09-25 05:52:00    2017-09-25 05:52:00
123280    37183    731    2017-09-25 23:43:00    2017-09-25 23:43:00
123281    37183    839    2017-09-25 12:04:00    2017-09-25 12:04:00
123282    37183    489    2017-09-25 13:51:00    2017-09-25 13:51:00
123283    37183    481    2017-09-25 23:15:00    2017-09-25 23:15:00
123284    37183    601    2017-09-25 14:37:00    2017-09-25 14:37:00
123285    37184    514    2017-09-25 02:50:00    2017-09-25 02:50:00
123286    37184    819    2017-09-25 14:53:00    2017-09-25 14:53:00
123287    37184    920    2017-09-25 17:00:00    2017-09-25 17:00:00
123288    37184    870    2017-09-25 15:45:00    2017-09-25 15:45:00
123289    37184    938    2017-09-25 12:13:00    2017-09-25 12:13:00
123290    37185    932    2017-09-25 14:44:00    2017-09-25 14:44:00
123291    37185    919    2017-09-25 15:26:00    2017-09-25 15:26:00
123292    37185    661    2017-09-25 07:33:00    2017-09-25 07:33:00
123293    37185    910    2017-09-25 10:16:00    2017-09-25 10:16:00
123294    37185    863    2017-09-25 15:34:00    2017-09-25 15:34:00
123295    37186    911    2017-09-25 11:47:00    2017-09-25 11:47:00
123296    37186    497    2017-09-25 13:31:00    2017-09-25 13:31:00
123297    37186    867    2017-09-25 16:10:00    2017-09-25 16:10:00
123298    37186    810    2017-09-25 02:27:00    2017-09-25 02:27:00
123299    37186    686    2017-09-25 22:56:00    2017-09-25 22:56:00
123300    37187    504    2017-09-25 05:02:00    2017-09-25 05:02:00
123301    37187    679    2017-09-25 08:56:00    2017-09-25 08:56:00
123302    37187    636    2017-09-25 09:15:00    2017-09-25 09:15:00
123303    37187    912    2017-09-25 04:18:00    2017-09-25 04:18:00
123304    37187    950    2017-09-25 18:00:00    2017-09-25 18:00:00
123305    37188    707    2017-09-25 07:52:00    2017-09-25 07:52:00
123306    37188    780    2017-09-25 22:30:00    2017-09-25 22:30:00
123307    37188    827    2017-09-25 07:36:00    2017-09-25 07:36:00
123308    37188    722    2017-09-25 08:12:00    2017-09-25 08:12:00
123309    37188    778    2017-09-25 03:40:00    2017-09-25 03:40:00
123310    37189    540    2017-09-25 05:15:00    2017-09-25 05:15:00
123311    37189    652    2017-09-25 22:21:00    2017-09-25 22:21:00
123312    37189    715    2017-09-25 20:04:00    2017-09-25 20:04:00
123313    37189    869    2017-09-25 21:30:00    2017-09-25 21:30:00
123314    37189    893    2017-09-25 17:55:00    2017-09-25 17:55:00
123315    37190    624    2017-09-25 22:21:00    2017-09-25 22:21:00
123316    37190    652    2017-09-25 03:31:00    2017-09-25 03:31:00
123317    37190    581    2017-09-25 07:53:00    2017-09-25 07:53:00
123318    37190    485    2017-09-25 04:08:00    2017-09-25 04:08:00
123319    37190    677    2017-09-25 11:41:00    2017-09-25 11:41:00
123320    37191    879    2017-09-25 18:18:00    2017-09-25 18:18:00
123321    37191    795    2017-09-25 16:43:00    2017-09-25 16:43:00
123322    37191    860    2017-09-25 19:15:00    2017-09-25 19:15:00
123323    37191    600    2017-09-25 18:49:00    2017-09-25 18:49:00
123324    37191    743    2017-09-25 21:37:00    2017-09-25 21:37:00
123325    37192    791    2017-09-25 11:22:00    2017-09-25 11:22:00
123326    37192    588    2017-09-25 01:13:00    2017-09-25 01:13:00
123327    37192    553    2017-09-25 14:29:00    2017-09-25 14:29:00
123328    37192    942    2017-09-25 13:10:00    2017-09-25 13:10:00
123329    37192    496    2017-09-25 10:08:00    2017-09-25 10:08:00
123330    37193    570    2017-09-25 02:50:00    2017-09-25 02:50:00
123331    37193    621    2017-09-25 14:44:00    2017-09-25 14:44:00
123332    37193    688    2017-09-25 03:14:00    2017-09-25 03:14:00
123333    37193    859    2017-09-25 09:51:00    2017-09-25 09:51:00
123334    37193    918    2017-09-25 05:42:00    2017-09-25 05:42:00
123335    37194    675    2017-09-25 03:23:00    2017-09-25 03:23:00
123336    37194    545    2017-09-25 01:42:00    2017-09-25 01:42:00
123337    37194    671    2017-09-25 14:04:00    2017-09-25 14:04:00
123338    37194    498    2017-09-25 03:39:00    2017-09-25 03:39:00
123339    37194    529    2017-09-25 14:39:00    2017-09-25 14:39:00
123340    37195    615    2017-09-25 01:00:00    2017-09-25 01:00:00
123341    37195    858    2017-09-25 04:02:00    2017-09-25 04:02:00
123342    37195    707    2017-09-25 03:35:00    2017-09-25 03:35:00
123343    37195    660    2017-09-25 23:57:00    2017-09-25 23:57:00
123344    37195    698    2017-09-25 16:55:00    2017-09-25 16:55:00
123345    37196    902    2017-09-25 12:17:00    2017-09-25 12:17:00
123346    37196    815    2017-09-25 06:42:00    2017-09-25 06:42:00
123347    37196    948    2017-09-25 03:24:00    2017-09-25 03:24:00
123348    37196    710    2017-09-25 02:19:00    2017-09-25 02:19:00
123349    37196    489    2017-09-25 13:59:00    2017-09-25 13:59:00
123350    37197    666    2017-09-25 08:42:00    2017-09-25 08:42:00
123351    37197    915    2017-09-25 12:40:00    2017-09-25 12:40:00
123352    37197    713    2017-09-25 06:55:00    2017-09-25 06:55:00
123353    37197    693    2017-09-25 07:03:00    2017-09-25 07:03:00
123354    37197    652    2017-09-25 03:24:00    2017-09-25 03:24:00
123355    37198    781    2017-09-25 02:08:00    2017-09-25 02:08:00
123356    37198    521    2017-09-25 04:45:00    2017-09-25 04:45:00
123357    37198    818    2017-09-25 14:49:00    2017-09-25 14:49:00
123358    37198    802    2017-09-25 09:11:00    2017-09-25 09:11:00
123359    37198    532    2017-09-25 10:04:00    2017-09-25 10:04:00
123360    37199    901    2017-09-25 03:20:00    2017-09-25 03:20:00
123361    37199    585    2017-09-25 11:11:00    2017-09-25 11:11:00
123362    37199    474    2017-09-25 19:11:00    2017-09-25 19:11:00
123363    37199    948    2017-09-25 11:18:00    2017-09-25 11:18:00
123364    37199    716    2017-09-25 08:12:00    2017-09-25 08:12:00
123365    37200    677    2017-09-25 23:25:00    2017-09-25 23:25:00
123366    37200    467    2017-09-25 11:31:00    2017-09-25 11:31:00
123367    37200    866    2017-09-25 17:00:00    2017-09-25 17:00:00
123368    37200    656    2017-09-25 04:18:00    2017-09-25 04:18:00
123369    37200    537    2017-09-25 03:36:00    2017-09-25 03:36:00
123370    37201    892    2017-09-25 01:30:00    2017-09-25 01:30:00
123371    37201    695    2017-09-25 23:17:00    2017-09-25 23:17:00
123372    37201    549    2017-09-25 08:09:00    2017-09-25 08:09:00
123373    37201    773    2017-09-25 03:50:00    2017-09-25 03:50:00
123374    37201    839    2017-09-25 15:54:00    2017-09-25 15:54:00
123375    37202    637    2017-09-25 17:12:00    2017-09-25 17:12:00
123376    37202    941    2017-09-25 04:40:00    2017-09-25 04:40:00
123377    37202    499    2017-09-25 17:20:00    2017-09-25 17:20:00
123378    37202    886    2017-09-25 22:27:00    2017-09-25 22:27:00
123379    37202    631    2017-09-25 23:02:00    2017-09-25 23:02:00
123380    37203    923    2017-09-26 03:58:00    2017-09-26 03:58:00
123381    37203    655    2017-09-26 02:02:00    2017-09-26 02:02:00
123382    37203    598    2017-09-26 23:46:00    2017-09-26 23:46:00
123383    37203    706    2017-09-26 12:02:00    2017-09-26 12:02:00
123384    37203    863    2017-09-26 23:48:00    2017-09-26 23:48:00
123385    37204    949    2017-09-26 08:45:00    2017-09-26 08:45:00
123386    37204    627    2017-09-26 07:10:00    2017-09-26 07:10:00
123387    37204    718    2017-09-26 06:00:00    2017-09-26 06:00:00
123388    37204    899    2017-09-26 14:13:00    2017-09-26 14:13:00
123389    37204    688    2017-09-26 07:57:00    2017-09-26 07:57:00
123390    37205    857    2017-09-26 13:54:00    2017-09-26 13:54:00
123391    37205    938    2017-09-26 23:59:00    2017-09-26 23:59:00
123392    37205    601    2017-09-26 14:29:00    2017-09-26 14:29:00
123393    37205    826    2017-09-26 02:44:00    2017-09-26 02:44:00
123394    37205    676    2017-09-26 09:38:00    2017-09-26 09:38:00
123395    37206    747    2017-09-26 15:10:00    2017-09-26 15:10:00
123396    37206    501    2017-09-26 16:20:00    2017-09-26 16:20:00
123397    37206    880    2017-09-26 22:23:00    2017-09-26 22:23:00
123398    37206    808    2017-09-26 13:13:00    2017-09-26 13:13:00
123399    37206    472    2017-09-26 03:01:00    2017-09-26 03:01:00
123400    37207    556    2017-09-26 23:40:00    2017-09-26 23:40:00
123401    37207    778    2017-09-26 01:45:00    2017-09-26 01:45:00
123402    37207    764    2017-09-26 07:28:00    2017-09-26 07:28:00
123403    37207    840    2017-09-26 15:09:00    2017-09-26 15:09:00
123404    37207    493    2017-09-26 01:15:00    2017-09-26 01:15:00
123405    37208    829    2017-09-26 21:00:00    2017-09-26 21:00:00
123406    37208    741    2017-09-26 11:14:00    2017-09-26 11:14:00
123407    37208    836    2017-09-27 00:00:00    2017-09-27 00:00:00
123408    37208    880    2017-09-26 12:36:00    2017-09-26 12:36:00
123409    37208    842    2017-09-26 03:58:00    2017-09-26 03:58:00
123410    37209    947    2017-09-26 22:11:00    2017-09-26 22:11:00
123411    37209    702    2017-09-26 09:01:00    2017-09-26 09:01:00
123412    37209    894    2017-09-26 07:18:00    2017-09-26 07:18:00
123413    37209    746    2017-09-26 06:13:00    2017-09-26 06:13:00
123414    37209    598    2017-09-26 11:46:00    2017-09-26 11:46:00
123415    37210    907    2017-09-26 01:55:00    2017-09-26 01:55:00
123416    37210    732    2017-09-26 08:46:00    2017-09-26 08:46:00
123417    37210    931    2017-09-26 17:23:00    2017-09-26 17:23:00
123418    37210    889    2017-09-26 07:50:00    2017-09-26 07:50:00
123419    37210    882    2017-09-26 11:50:00    2017-09-26 11:50:00
123420    37211    876    2017-09-26 20:47:00    2017-09-26 20:47:00
123421    37211    720    2017-09-26 05:52:00    2017-09-26 05:52:00
123422    37211    571    2017-09-26 15:02:00    2017-09-26 15:02:00
123423    37211    797    2017-09-26 01:15:00    2017-09-26 01:15:00
123424    37211    533    2017-09-26 03:32:00    2017-09-26 03:32:00
123425    37212    555    2017-09-26 23:51:00    2017-09-26 23:51:00
123426    37212    896    2017-09-26 21:43:00    2017-09-26 21:43:00
123427    37212    712    2017-09-26 21:59:00    2017-09-26 21:59:00
123428    37212    939    2017-09-26 06:21:00    2017-09-26 06:21:00
123429    37212    909    2017-09-26 16:13:00    2017-09-26 16:13:00
123430    37213    556    2017-09-26 08:23:00    2017-09-26 08:23:00
123431    37213    927    2017-09-26 15:17:00    2017-09-26 15:17:00
123432    37213    507    2017-09-26 15:49:00    2017-09-26 15:49:00
123433    37213    480    2017-09-26 12:40:00    2017-09-26 12:40:00
123434    37213    611    2017-09-26 19:07:00    2017-09-26 19:07:00
123435    37214    742    2017-09-26 09:25:00    2017-09-26 09:25:00
123436    37214    911    2017-09-26 20:21:00    2017-09-26 20:21:00
123437    37214    905    2017-09-26 14:20:00    2017-09-26 14:20:00
123438    37214    523    2017-09-26 04:46:00    2017-09-26 04:46:00
123439    37214    746    2017-09-26 20:32:00    2017-09-26 20:32:00
123440    37215    774    2017-09-26 06:59:00    2017-09-26 06:59:00
123441    37215    628    2017-09-26 07:43:00    2017-09-26 07:43:00
123442    37215    827    2017-09-26 02:16:00    2017-09-26 02:16:00
123443    37215    928    2017-09-26 08:35:00    2017-09-26 08:35:00
123444    37215    573    2017-09-26 02:47:00    2017-09-26 02:47:00
123445    37216    748    2017-09-26 17:29:00    2017-09-26 17:29:00
123446    37216    615    2017-09-26 12:17:00    2017-09-26 12:17:00
123447    37216    778    2017-09-26 19:42:00    2017-09-26 19:42:00
123448    37216    591    2017-09-26 16:50:00    2017-09-26 16:50:00
123449    37216    477    2017-09-26 03:44:00    2017-09-26 03:44:00
123450    37217    664    2017-09-26 09:10:00    2017-09-26 09:10:00
123451    37217    833    2017-09-26 05:59:00    2017-09-26 05:59:00
123452    37217    524    2017-09-26 04:18:00    2017-09-26 04:18:00
123453    37217    850    2017-09-26 11:48:00    2017-09-26 11:48:00
123454    37217    577    2017-09-26 23:20:00    2017-09-26 23:20:00
123455    37218    887    2017-09-26 03:29:00    2017-09-26 03:29:00
123456    37218    464    2017-09-26 05:38:00    2017-09-26 05:38:00
123457    37218    483    2017-09-26 18:59:00    2017-09-26 18:59:00
123458    37218    667    2017-09-26 13:41:00    2017-09-26 13:41:00
123459    37218    950    2017-09-26 14:33:00    2017-09-26 14:33:00
123460    37219    580    2017-09-26 08:52:00    2017-09-26 08:52:00
123461    37219    540    2017-09-26 20:30:00    2017-09-26 20:30:00
123462    37219    516    2017-09-26 21:05:00    2017-09-26 21:05:00
123463    37219    828    2017-09-26 08:44:00    2017-09-26 08:44:00
123464    37219    591    2017-09-26 15:14:00    2017-09-26 15:14:00
123465    37220    957    2017-09-26 08:54:00    2017-09-26 08:54:00
123466    37220    887    2017-09-26 16:58:00    2017-09-26 16:58:00
123467    37220    654    2017-09-26 21:56:00    2017-09-26 21:56:00
123468    37220    771    2017-09-26 01:46:00    2017-09-26 01:46:00
123469    37220    793    2017-09-26 04:26:00    2017-09-26 04:26:00
123470    37221    800    2017-09-26 04:48:00    2017-09-26 04:48:00
123471    37221    918    2017-09-26 19:00:00    2017-09-26 19:00:00
123472    37221    812    2017-09-26 16:37:00    2017-09-26 16:37:00
123473    37221    831    2017-09-26 02:06:00    2017-09-26 02:06:00
123474    37221    783    2017-09-26 20:20:00    2017-09-26 20:20:00
123475    37222    537    2017-09-26 15:55:00    2017-09-26 15:55:00
123476    37222    916    2017-09-26 16:32:00    2017-09-26 16:32:00
123477    37222    950    2017-09-26 06:34:00    2017-09-26 06:34:00
123478    37222    664    2017-09-26 14:11:00    2017-09-26 14:11:00
123479    37222    936    2017-09-26 21:04:00    2017-09-26 21:04:00
123480    37223    920    2017-09-26 21:03:00    2017-09-26 21:03:00
123481    37223    853    2017-09-26 03:30:00    2017-09-26 03:30:00
123482    37223    954    2017-09-26 22:12:00    2017-09-26 22:12:00
123483    37223    630    2017-09-26 20:21:00    2017-09-26 20:21:00
123484    37223    552    2017-09-26 05:46:00    2017-09-26 05:46:00
123485    37224    785    2017-09-26 20:44:00    2017-09-26 20:44:00
123486    37224    689    2017-09-26 17:01:00    2017-09-26 17:01:00
123487    37224    470    2017-09-26 17:28:00    2017-09-26 17:28:00
123488    37224    702    2017-09-26 20:34:00    2017-09-26 20:34:00
123489    37224    753    2017-09-26 15:37:00    2017-09-26 15:37:00
123490    37225    917    2017-09-26 16:06:00    2017-09-26 16:06:00
123491    37225    494    2017-09-26 22:33:00    2017-09-26 22:33:00
123492    37225    483    2017-09-26 15:54:00    2017-09-26 15:54:00
123493    37225    484    2017-09-26 01:49:00    2017-09-26 01:49:00
123494    37225    755    2017-09-26 13:19:00    2017-09-26 13:19:00
123495    37226    486    2017-09-27 12:39:00    2017-09-27 12:39:00
123496    37226    525    2017-09-27 01:59:00    2017-09-27 01:59:00
123497    37226    855    2017-09-27 08:56:00    2017-09-27 08:56:00
123498    37226    710    2017-09-27 15:58:00    2017-09-27 15:58:00
123499    37226    643    2017-09-27 21:16:00    2017-09-27 21:16:00
123500    37227    695    2017-09-27 18:33:00    2017-09-27 18:33:00
123501    37227    944    2017-09-27 01:34:00    2017-09-27 01:34:00
123502    37227    658    2017-09-27 13:39:00    2017-09-27 13:39:00
123503    37227    560    2017-09-27 13:50:00    2017-09-27 13:50:00
123504    37227    514    2017-09-27 05:23:00    2017-09-27 05:23:00
123505    37228    603    2017-09-27 05:47:00    2017-09-27 05:47:00
123506    37228    791    2017-09-27 03:58:00    2017-09-27 03:58:00
123507    37228    507    2017-09-27 04:20:00    2017-09-27 04:20:00
123508    37228    752    2017-09-27 20:59:00    2017-09-27 20:59:00
123509    37228    721    2017-09-27 12:34:00    2017-09-27 12:34:00
123510    37229    937    2017-09-27 13:46:00    2017-09-27 13:46:00
123511    37229    883    2017-09-27 11:53:00    2017-09-27 11:53:00
123512    37229    544    2017-09-27 11:44:00    2017-09-27 11:44:00
123513    37229    896    2017-09-27 11:04:00    2017-09-27 11:04:00
123514    37229    620    2017-09-27 19:59:00    2017-09-27 19:59:00
123515    37230    567    2017-09-27 04:00:00    2017-09-27 04:00:00
123516    37230    601    2017-09-27 22:11:00    2017-09-27 22:11:00
123517    37230    528    2017-09-27 11:02:00    2017-09-27 11:02:00
123518    37230    776    2017-09-27 23:00:00    2017-09-27 23:00:00
123519    37230    776    2017-09-27 14:12:00    2017-09-27 14:12:00
123520    37231    873    2017-09-27 11:34:00    2017-09-27 11:34:00
123521    37231    804    2017-09-27 01:40:00    2017-09-27 01:40:00
123522    37231    848    2017-09-27 11:09:00    2017-09-27 11:09:00
123523    37231    938    2017-09-27 22:01:00    2017-09-27 22:01:00
123524    37231    574    2017-09-27 06:08:00    2017-09-27 06:08:00
123525    37232    616    2017-09-27 17:34:00    2017-09-27 17:34:00
123526    37232    692    2017-09-27 13:13:00    2017-09-27 13:13:00
123527    37232    536    2017-09-27 17:40:00    2017-09-27 17:40:00
123528    37232    669    2017-09-27 04:38:00    2017-09-27 04:38:00
123529    37232    918    2017-09-27 10:48:00    2017-09-27 10:48:00
123530    37233    930    2017-09-27 22:54:00    2017-09-27 22:54:00
123531    37233    546    2017-09-27 16:07:00    2017-09-27 16:07:00
123532    37233    700    2017-09-27 10:43:00    2017-09-27 10:43:00
123533    37233    724    2017-09-27 15:17:00    2017-09-27 15:17:00
123534    37233    560    2017-09-27 18:20:00    2017-09-27 18:20:00
123535    37234    905    2017-09-27 01:18:00    2017-09-27 01:18:00
123536    37234    584    2017-09-27 07:35:00    2017-09-27 07:35:00
123537    37234    612    2017-09-27 03:57:00    2017-09-27 03:57:00
123538    37234    669    2017-09-27 18:20:00    2017-09-27 18:20:00
123539    37234    710    2017-09-27 19:57:00    2017-09-27 19:57:00
123540    37235    568    2017-09-27 01:59:00    2017-09-27 01:59:00
123541    37235    667    2017-09-27 02:42:00    2017-09-27 02:42:00
123542    37235    843    2017-09-27 21:09:00    2017-09-27 21:09:00
123543    37235    637    2017-09-27 15:11:00    2017-09-27 15:11:00
123544    37235    760    2017-09-27 18:08:00    2017-09-27 18:08:00
123545    37236    562    2017-09-27 17:13:00    2017-09-27 17:13:00
123546    37236    630    2017-09-27 14:11:00    2017-09-27 14:11:00
123547    37236    801    2017-09-27 20:19:00    2017-09-27 20:19:00
123548    37236    678    2017-09-27 19:16:00    2017-09-27 19:16:00
123549    37236    705    2017-09-27 05:03:00    2017-09-27 05:03:00
123550    37237    579    2017-09-27 10:00:00    2017-09-27 10:00:00
123551    37237    747    2017-09-27 14:51:00    2017-09-27 14:51:00
123552    37237    722    2017-09-27 15:38:00    2017-09-27 15:38:00
123553    37237    753    2017-09-27 14:47:00    2017-09-27 14:47:00
123554    37237    496    2017-09-27 22:53:00    2017-09-27 22:53:00
123555    37238    694    2017-09-27 07:22:00    2017-09-27 07:22:00
123556    37238    938    2017-09-27 15:49:00    2017-09-27 15:49:00
123557    37238    918    2017-09-27 14:22:00    2017-09-27 14:22:00
123558    37238    862    2017-09-27 12:51:00    2017-09-27 12:51:00
123559    37238    677    2017-09-27 03:37:00    2017-09-27 03:37:00
123560    37239    947    2017-09-27 15:01:00    2017-09-27 15:01:00
123561    37239    488    2017-09-27 07:37:00    2017-09-27 07:37:00
123562    37239    848    2017-09-27 13:35:00    2017-09-27 13:35:00
123563    37239    733    2017-09-27 19:13:00    2017-09-27 19:13:00
123564    37239    516    2017-09-27 08:55:00    2017-09-27 08:55:00
123565    37240    877    2017-09-27 16:20:00    2017-09-27 16:20:00
123566    37240    924    2017-09-27 04:11:00    2017-09-27 04:11:00
123567    37240    571    2017-09-27 17:04:00    2017-09-27 17:04:00
123568    37240    603    2017-09-27 06:56:00    2017-09-27 06:56:00
123569    37240    825    2017-09-27 09:29:00    2017-09-27 09:29:00
123570    37241    895    2017-09-27 11:26:00    2017-09-27 11:26:00
123571    37241    715    2017-09-27 22:11:00    2017-09-27 22:11:00
123572    37241    951    2017-09-27 02:36:00    2017-09-27 02:36:00
123573    37241    702    2017-09-27 01:17:00    2017-09-27 01:17:00
123574    37241    830    2017-09-27 04:19:00    2017-09-27 04:19:00
123575    37242    636    2017-09-27 18:10:00    2017-09-27 18:10:00
123576    37242    798    2017-09-27 22:53:00    2017-09-27 22:53:00
123577    37242    889    2017-09-27 02:35:00    2017-09-27 02:35:00
123578    37242    869    2017-09-27 07:47:00    2017-09-27 07:47:00
123579    37242    665    2017-09-27 08:21:00    2017-09-27 08:21:00
123580    37243    853    2017-09-27 07:54:00    2017-09-27 07:54:00
123581    37243    469    2017-09-27 07:38:00    2017-09-27 07:38:00
123582    37243    752    2017-09-27 19:04:00    2017-09-27 19:04:00
123583    37243    912    2017-09-27 09:00:00    2017-09-27 09:00:00
123584    37243    658    2017-09-27 22:13:00    2017-09-27 22:13:00
123585    37244    763    2017-09-27 19:52:00    2017-09-27 19:52:00
123586    37244    483    2017-09-27 17:55:00    2017-09-27 17:55:00
123587    37244    552    2017-09-27 21:14:00    2017-09-27 21:14:00
123588    37244    917    2017-09-27 21:42:00    2017-09-27 21:42:00
123589    37244    554    2017-09-27 11:02:00    2017-09-27 11:02:00
123590    37245    886    2017-09-27 13:56:00    2017-09-27 13:56:00
123591    37245    817    2017-09-27 21:21:00    2017-09-27 21:21:00
123592    37245    721    2017-09-27 21:17:00    2017-09-27 21:17:00
123593    37245    694    2017-09-27 18:05:00    2017-09-27 18:05:00
123594    37245    611    2017-09-27 01:21:00    2017-09-27 01:21:00
123595    37246    567    2017-09-27 19:55:00    2017-09-27 19:55:00
123596    37246    720    2017-09-27 15:50:00    2017-09-27 15:50:00
123597    37246    622    2017-09-27 08:03:00    2017-09-27 08:03:00
123598    37246    882    2017-09-27 03:26:00    2017-09-27 03:26:00
123599    37246    740    2017-09-27 19:12:00    2017-09-27 19:12:00
123600    37247    878    2017-09-27 19:39:00    2017-09-27 19:39:00
123601    37247    629    2017-09-27 18:16:00    2017-09-27 18:16:00
123602    37247    640    2017-09-27 17:53:00    2017-09-27 17:53:00
123603    37247    577    2017-09-27 18:44:00    2017-09-27 18:44:00
123604    37247    771    2017-09-27 14:11:00    2017-09-27 14:11:00
123605    37248    613    2017-09-27 20:07:00    2017-09-27 20:07:00
123606    37248    877    2017-09-27 15:49:00    2017-09-27 15:49:00
123607    37248    494    2017-09-27 09:35:00    2017-09-27 09:35:00
123608    37248    609    2017-09-27 02:55:00    2017-09-27 02:55:00
123609    37248    739    2017-09-27 03:34:00    2017-09-27 03:34:00
123610    37249    768    2017-09-27 17:32:00    2017-09-27 17:32:00
123611    37249    688    2017-09-27 01:33:00    2017-09-27 01:33:00
123612    37249    874    2017-09-27 01:22:00    2017-09-27 01:22:00
123613    37249    894    2017-09-27 16:49:00    2017-09-27 16:49:00
123614    37249    741    2017-09-27 03:02:00    2017-09-27 03:02:00
123615    37250    838    2017-09-27 23:08:00    2017-09-27 23:08:00
123616    37250    795    2017-09-27 15:02:00    2017-09-27 15:02:00
123617    37250    597    2017-09-27 05:43:00    2017-09-27 05:43:00
123618    37250    646    2017-09-27 05:49:00    2017-09-27 05:49:00
123619    37250    906    2017-09-27 17:20:00    2017-09-27 17:20:00
123620    37251    494    2017-09-27 23:32:00    2017-09-27 23:32:00
123621    37251    664    2017-09-27 11:40:00    2017-09-27 11:40:00
123622    37251    605    2017-09-27 19:03:00    2017-09-27 19:03:00
123623    37251    634    2017-09-27 22:09:00    2017-09-27 22:09:00
123624    37251    593    2017-09-27 23:31:00    2017-09-27 23:31:00
123625    37252    581    2017-09-27 12:55:00    2017-09-27 12:55:00
123626    37252    867    2017-09-27 11:06:00    2017-09-27 11:06:00
123627    37252    561    2017-09-27 05:17:00    2017-09-27 05:17:00
123628    37252    509    2017-09-27 14:57:00    2017-09-27 14:57:00
123629    37252    765    2017-09-27 19:19:00    2017-09-27 19:19:00
123630    37253    636    2017-09-27 05:46:00    2017-09-27 05:46:00
123631    37253    792    2017-09-27 07:57:00    2017-09-27 07:57:00
123632    37253    717    2017-09-27 02:55:00    2017-09-27 02:55:00
123633    37253    601    2017-09-27 12:26:00    2017-09-27 12:26:00
123634    37253    770    2017-09-27 10:39:00    2017-09-27 10:39:00
123635    37254    786    2017-09-27 06:08:00    2017-09-27 06:08:00
123636    37254    782    2017-09-27 09:45:00    2017-09-27 09:45:00
123637    37254    944    2017-09-27 22:48:00    2017-09-27 22:48:00
123638    37254    584    2017-09-27 06:15:00    2017-09-27 06:15:00
123639    37254    785    2017-09-27 04:23:00    2017-09-27 04:23:00
123640    37255    578    2017-09-27 07:41:00    2017-09-27 07:41:00
123641    37255    884    2017-09-27 16:17:00    2017-09-27 16:17:00
123642    37255    791    2017-09-27 03:36:00    2017-09-27 03:36:00
123643    37255    931    2017-09-27 12:08:00    2017-09-27 12:08:00
123644    37255    801    2017-09-27 03:49:00    2017-09-27 03:49:00
123645    37256    582    2017-09-27 22:11:00    2017-09-27 22:11:00
123646    37256    923    2017-09-27 03:11:00    2017-09-27 03:11:00
123647    37256    779    2017-09-27 18:37:00    2017-09-27 18:37:00
123648    37256    683    2017-09-27 18:45:00    2017-09-27 18:45:00
123649    37256    470    2017-09-27 19:42:00    2017-09-27 19:42:00
123650    37257    829    2017-09-27 23:40:00    2017-09-27 23:40:00
123651    37257    798    2017-09-27 18:48:00    2017-09-27 18:48:00
123652    37257    544    2017-09-27 11:39:00    2017-09-27 11:39:00
123653    37257    512    2017-09-27 17:33:00    2017-09-27 17:33:00
123654    37257    719    2017-09-27 06:53:00    2017-09-27 06:53:00
123655    37258    642    2017-09-27 14:49:00    2017-09-27 14:49:00
123656    37258    607    2017-09-27 16:20:00    2017-09-27 16:20:00
123657    37258    959    2017-09-27 18:00:00    2017-09-27 18:00:00
123658    37258    664    2017-09-27 08:15:00    2017-09-27 08:15:00
123659    37258    562    2017-09-27 19:44:00    2017-09-27 19:44:00
123660    37259    703    2017-09-27 18:00:00    2017-09-27 18:00:00
123661    37259    704    2017-09-27 07:55:00    2017-09-27 07:55:00
123662    37259    700    2017-09-27 04:52:00    2017-09-27 04:52:00
123663    37259    939    2017-09-27 16:25:00    2017-09-27 16:25:00
123664    37259    960    2017-09-27 17:32:00    2017-09-27 17:32:00
123665    37260    560    2017-09-27 23:30:00    2017-09-27 23:30:00
123666    37260    743    2017-09-27 23:24:00    2017-09-27 23:24:00
123667    37260    646    2017-09-27 11:02:00    2017-09-27 11:02:00
123668    37260    537    2017-09-27 13:31:00    2017-09-27 13:31:00
123669    37260    585    2017-09-27 22:10:00    2017-09-27 22:10:00
123670    37261    855    2017-09-27 21:13:00    2017-09-27 21:13:00
123671    37261    760    2017-09-27 18:02:00    2017-09-27 18:02:00
123672    37261    659    2017-09-27 08:00:00    2017-09-27 08:00:00
123673    37261    889    2017-09-27 20:08:00    2017-09-27 20:08:00
123674    37261    668    2017-09-27 15:30:00    2017-09-27 15:30:00
123675    37262    907    2017-09-27 12:48:00    2017-09-27 12:48:00
123676    37262    596    2017-09-27 14:39:00    2017-09-27 14:39:00
123677    37262    878    2017-09-27 08:11:00    2017-09-27 08:11:00
123678    37262    884    2017-09-27 09:18:00    2017-09-27 09:18:00
123679    37262    579    2017-09-27 08:00:00    2017-09-27 08:00:00
123680    37263    625    2017-09-27 23:01:00    2017-09-27 23:01:00
123681    37263    657    2017-09-27 17:23:00    2017-09-27 17:23:00
123682    37263    531    2017-09-27 13:40:00    2017-09-27 13:40:00
123683    37263    637    2017-09-27 09:30:00    2017-09-27 09:30:00
123684    37263    666    2017-09-27 11:43:00    2017-09-27 11:43:00
123685    37264    813    2017-09-27 08:47:00    2017-09-27 08:47:00
123686    37264    854    2017-09-27 05:01:00    2017-09-27 05:01:00
123687    37264    590    2017-09-27 12:38:00    2017-09-27 12:38:00
123688    37264    956    2017-09-27 08:31:00    2017-09-27 08:31:00
123689    37264    890    2017-09-27 02:54:00    2017-09-27 02:54:00
123690    37265    479    2017-09-27 19:46:00    2017-09-27 19:46:00
123691    37265    721    2017-09-27 15:41:00    2017-09-27 15:41:00
123692    37265    698    2017-09-27 06:15:00    2017-09-27 06:15:00
123693    37265    709    2017-09-27 17:20:00    2017-09-27 17:20:00
123694    37265    853    2017-09-27 19:48:00    2017-09-27 19:48:00
123695    37266    926    2017-09-27 17:51:00    2017-09-27 17:51:00
123696    37266    578    2017-09-27 01:00:00    2017-09-27 01:00:00
123697    37266    530    2017-09-27 20:27:00    2017-09-27 20:27:00
123698    37266    936    2017-09-27 12:13:00    2017-09-27 12:13:00
123699    37266    935    2017-09-27 15:37:00    2017-09-27 15:37:00
123700    37267    529    2017-09-27 03:15:00    2017-09-27 03:15:00
123701    37267    626    2017-09-27 07:47:00    2017-09-27 07:47:00
123702    37267    592    2017-09-27 19:05:00    2017-09-27 19:05:00
123703    37267    683    2017-09-27 02:25:00    2017-09-27 02:25:00
123704    37267    679    2017-09-27 19:37:00    2017-09-27 19:37:00
123705    37268    802    2017-09-27 01:32:00    2017-09-27 01:32:00
123706    37268    517    2017-09-27 11:58:00    2017-09-27 11:58:00
123707    37268    762    2017-09-27 05:42:00    2017-09-27 05:42:00
123708    37268    468    2017-09-27 19:08:00    2017-09-27 19:08:00
123709    37268    465    2017-09-27 16:37:00    2017-09-27 16:37:00
123710    37269    651    2017-09-27 06:30:00    2017-09-27 06:30:00
123711    37269    558    2017-09-27 23:51:00    2017-09-27 23:51:00
123712    37269    596    2017-09-27 11:47:00    2017-09-27 11:47:00
123713    37269    847    2017-09-27 17:48:00    2017-09-27 17:48:00
123714    37269    524    2017-09-27 11:42:00    2017-09-27 11:42:00
123715    37270    952    2017-09-27 16:19:00    2017-09-27 16:19:00
123716    37270    831    2017-09-27 05:25:00    2017-09-27 05:25:00
123717    37270    563    2017-09-27 13:45:00    2017-09-27 13:45:00
123718    37270    705    2017-09-27 01:06:00    2017-09-27 01:06:00
123719    37270    664    2017-09-27 12:27:00    2017-09-27 12:27:00
123720    37271    895    2017-09-27 15:33:00    2017-09-27 15:33:00
123721    37271    475    2017-09-27 05:57:00    2017-09-27 05:57:00
123722    37271    579    2017-09-27 09:28:00    2017-09-27 09:28:00
123723    37271    907    2017-09-27 09:49:00    2017-09-27 09:49:00
123724    37271    620    2017-09-27 20:12:00    2017-09-27 20:12:00
123725    37272    805    2017-09-27 03:24:00    2017-09-27 03:24:00
123726    37272    941    2017-09-27 01:06:00    2017-09-27 01:06:00
123727    37272    612    2017-09-27 20:19:00    2017-09-27 20:19:00
123728    37272    710    2017-09-27 07:35:00    2017-09-27 07:35:00
123729    37272    932    2017-09-27 22:24:00    2017-09-27 22:24:00
123730    37273    541    2017-09-27 20:27:00    2017-09-27 20:27:00
123731    37273    616    2017-09-27 05:15:00    2017-09-27 05:15:00
123732    37273    583    2017-09-27 04:02:00    2017-09-27 04:02:00
123733    37273    485    2017-09-27 02:16:00    2017-09-27 02:16:00
123734    37273    950    2017-09-27 16:30:00    2017-09-27 16:30:00
123735    37274    521    2017-09-27 01:08:00    2017-09-27 01:08:00
123736    37274    957    2017-09-27 01:56:00    2017-09-27 01:56:00
123737    37274    771    2017-09-27 11:42:00    2017-09-27 11:42:00
123738    37274    494    2017-09-27 12:18:00    2017-09-27 12:18:00
123739    37274    837    2017-09-27 13:25:00    2017-09-27 13:25:00
123740    37275    849    2017-09-27 06:41:00    2017-09-27 06:41:00
123741    37275    896    2017-09-27 10:36:00    2017-09-27 10:36:00
123742    37275    488    2017-09-27 23:30:00    2017-09-27 23:30:00
123743    37275    704    2017-09-27 22:54:00    2017-09-27 22:54:00
123744    37275    727    2017-09-27 09:04:00    2017-09-27 09:04:00
123745    37276    943    2017-09-27 10:03:00    2017-09-27 10:03:00
123746    37276    801    2017-09-27 10:33:00    2017-09-27 10:33:00
123747    37276    626    2017-09-27 11:56:00    2017-09-27 11:56:00
123748    37276    952    2017-09-27 14:06:00    2017-09-27 14:06:00
123749    37276    663    2017-09-27 05:13:00    2017-09-27 05:13:00
123750    37277    623    2017-09-27 17:30:00    2017-09-27 17:30:00
123751    37277    691    2017-09-27 08:25:00    2017-09-27 08:25:00
123752    37277    485    2017-09-27 01:14:00    2017-09-27 01:14:00
123753    37277    677    2017-09-27 16:38:00    2017-09-27 16:38:00
123754    37277    522    2017-09-27 17:24:00    2017-09-27 17:24:00
123755    37278    949    2017-09-27 02:06:00    2017-09-27 02:06:00
123756    37278    868    2017-09-27 20:20:00    2017-09-27 20:20:00
123757    37278    559    2017-09-27 13:37:00    2017-09-27 13:37:00
123758    37278    524    2017-09-27 13:48:00    2017-09-27 13:48:00
123759    37278    705    2017-09-27 23:36:00    2017-09-27 23:36:00
123760    37279    942    2017-09-27 08:37:00    2017-09-27 08:37:00
123761    37279    645    2017-09-27 03:50:00    2017-09-27 03:50:00
123762    37279    614    2017-09-27 01:40:00    2017-09-27 01:40:00
123763    37279    599    2017-09-27 10:20:00    2017-09-27 10:20:00
123764    37279    525    2017-09-27 23:57:00    2017-09-27 23:57:00
123765    37280    528    2017-09-27 06:11:00    2017-09-27 06:11:00
123766    37280    961    2017-09-27 04:13:00    2017-09-27 04:13:00
123767    37280    667    2017-09-27 17:00:00    2017-09-27 17:00:00
123768    37280    497    2017-09-27 10:46:00    2017-09-27 10:46:00
123769    37280    901    2017-09-27 22:00:00    2017-09-27 22:00:00
123770    37281    884    2017-09-27 16:56:00    2017-09-27 16:56:00
123771    37281    733    2017-09-27 12:16:00    2017-09-27 12:16:00
123772    37281    887    2017-09-27 20:51:00    2017-09-27 20:51:00
123773    37281    802    2017-09-27 09:44:00    2017-09-27 09:44:00
123774    37281    799    2017-09-27 21:56:00    2017-09-27 21:56:00
123775    37282    484    2017-09-27 22:51:00    2017-09-27 22:51:00
123776    37282    736    2017-09-27 16:03:00    2017-09-27 16:03:00
123777    37282    789    2017-09-27 01:33:00    2017-09-27 01:33:00
123778    37282    713    2017-09-27 17:32:00    2017-09-27 17:32:00
123779    37282    817    2017-09-27 19:12:00    2017-09-27 19:12:00
123780    37283    606    2017-09-27 16:51:00    2017-09-27 16:51:00
123781    37283    480    2017-09-27 04:28:00    2017-09-27 04:28:00
123782    37283    667    2017-09-27 16:23:00    2017-09-27 16:23:00
123783    37283    710    2017-09-27 13:41:00    2017-09-27 13:41:00
123784    37283    912    2017-09-27 12:04:00    2017-09-27 12:04:00
123785    37284    526    2017-09-27 20:57:00    2017-09-27 20:57:00
123786    37284    603    2017-09-27 19:14:00    2017-09-27 19:14:00
123787    37284    587    2017-09-27 18:25:00    2017-09-27 18:25:00
123788    37284    578    2017-09-27 16:55:00    2017-09-27 16:55:00
123789    37284    648    2017-09-27 22:15:00    2017-09-27 22:15:00
123790    37285    837    2017-09-27 08:13:00    2017-09-27 08:13:00
123791    37285    625    2017-09-27 16:18:00    2017-09-27 16:18:00
123792    37285    837    2017-09-27 22:52:00    2017-09-27 22:52:00
123793    37285    673    2017-09-27 17:28:00    2017-09-27 17:28:00
123794    37285    948    2017-09-27 08:05:00    2017-09-27 08:05:00
123795    37286    488    2017-09-27 08:47:00    2017-09-27 08:47:00
123796    37286    477    2017-09-27 22:16:00    2017-09-27 22:16:00
123797    37286    894    2017-09-27 03:35:00    2017-09-27 03:35:00
123798    37286    730    2017-09-27 21:58:00    2017-09-27 21:58:00
123799    37286    650    2017-09-27 19:39:00    2017-09-27 19:39:00
123800    37287    729    2017-09-27 10:31:00    2017-09-27 10:31:00
123801    37287    586    2017-09-27 16:24:00    2017-09-27 16:24:00
123802    37287    834    2017-09-27 13:24:00    2017-09-27 13:24:00
123803    37287    822    2017-09-27 18:54:00    2017-09-27 18:54:00
123804    37287    603    2017-09-27 14:07:00    2017-09-27 14:07:00
123805    37288    925    2017-09-27 13:54:00    2017-09-27 13:54:00
123806    37288    814    2017-09-27 07:00:00    2017-09-27 07:00:00
123807    37288    544    2017-09-27 01:39:00    2017-09-27 01:39:00
123808    37288    656    2017-09-27 19:07:00    2017-09-27 19:07:00
123809    37288    772    2017-09-27 03:24:00    2017-09-27 03:24:00
123810    37289    742    2017-09-27 03:36:00    2017-09-27 03:36:00
123811    37289    521    2017-09-27 16:44:00    2017-09-27 16:44:00
123812    37289    664    2017-09-27 07:59:00    2017-09-27 07:59:00
123813    37289    830    2017-09-27 05:50:00    2017-09-27 05:50:00
123814    37289    675    2017-09-27 15:26:00    2017-09-27 15:26:00
123815    37290    586    2017-09-27 01:54:00    2017-09-27 01:54:00
123816    37290    881    2017-09-27 01:38:00    2017-09-27 01:38:00
123817    37290    834    2017-09-27 01:37:00    2017-09-27 01:37:00
123818    37290    463    2017-09-27 08:47:00    2017-09-27 08:47:00
123819    37290    604    2017-09-27 02:28:00    2017-09-27 02:28:00
123820    37291    715    2017-09-27 04:18:00    2017-09-27 04:18:00
123821    37291    501    2017-09-27 10:07:00    2017-09-27 10:07:00
123822    37291    704    2017-09-27 23:20:00    2017-09-27 23:20:00
123823    37291    833    2017-09-27 04:17:00    2017-09-27 04:17:00
123824    37291    719    2017-09-27 07:31:00    2017-09-27 07:31:00
123825    37292    874    2017-09-27 09:16:00    2017-09-27 09:16:00
123826    37292    492    2017-09-27 16:46:00    2017-09-27 16:46:00
123827    37292    723    2017-09-27 23:57:00    2017-09-27 23:57:00
123828    37292    634    2017-09-27 02:23:00    2017-09-27 02:23:00
123829    37292    852    2017-09-27 12:53:00    2017-09-27 12:53:00
123830    37293    890    2017-09-27 11:22:00    2017-09-27 11:22:00
123831    37293    776    2017-09-27 11:45:00    2017-09-27 11:45:00
123832    37293    889    2017-09-27 03:48:00    2017-09-27 03:48:00
123833    37293    734    2017-09-27 11:50:00    2017-09-27 11:50:00
123834    37293    599    2017-09-27 12:50:00    2017-09-27 12:50:00
123835    37294    924    2017-09-27 07:38:00    2017-09-27 07:38:00
123836    37294    580    2017-09-27 23:57:00    2017-09-27 23:57:00
123837    37294    893    2017-09-27 04:28:00    2017-09-27 04:28:00
123838    37294    612    2017-09-27 10:16:00    2017-09-27 10:16:00
123839    37294    891    2017-09-27 23:57:00    2017-09-27 23:57:00
123840    37295    825    2017-09-27 10:44:00    2017-09-27 10:44:00
123841    37295    956    2017-09-27 21:13:00    2017-09-27 21:13:00
123842    37295    825    2017-09-27 16:29:00    2017-09-27 16:29:00
123843    37295    477    2017-09-27 09:32:00    2017-09-27 09:32:00
123844    37295    648    2017-09-27 01:33:00    2017-09-27 01:33:00
123845    37296    787    2017-09-27 06:21:00    2017-09-27 06:21:00
123846    37296    720    2017-09-27 13:47:00    2017-09-27 13:47:00
123847    37296    712    2017-09-27 07:35:00    2017-09-27 07:35:00
123848    37296    686    2017-09-27 06:33:00    2017-09-27 06:33:00
123849    37296    494    2017-09-27 14:15:00    2017-09-27 14:15:00
123850    37297    795    2017-09-27 18:59:00    2017-09-27 18:59:00
123851    37297    531    2017-09-27 14:58:00    2017-09-27 14:58:00
123852    37297    541    2017-09-27 17:52:00    2017-09-27 17:52:00
123853    37297    689    2017-09-27 22:58:00    2017-09-27 22:58:00
123854    37297    551    2017-09-27 10:23:00    2017-09-27 10:23:00
123855    37298    881    2017-09-27 20:51:00    2017-09-27 20:51:00
123856    37298    844    2017-09-27 17:50:00    2017-09-27 17:50:00
123857    37298    600    2017-09-27 21:47:00    2017-09-27 21:47:00
123858    37298    504    2017-09-27 15:23:00    2017-09-27 15:23:00
123859    37298    511    2017-09-27 01:59:00    2017-09-27 01:59:00
123860    37299    607    2017-09-27 03:29:00    2017-09-27 03:29:00
123861    37299    893    2017-09-27 11:10:00    2017-09-27 11:10:00
123862    37299    558    2017-09-27 15:22:00    2017-09-27 15:22:00
123863    37299    731    2017-09-27 14:10:00    2017-09-27 14:10:00
123864    37299    941    2017-09-27 23:10:00    2017-09-27 23:10:00
123865    37300    743    2017-09-27 16:03:00    2017-09-27 16:03:00
123866    37300    474    2017-09-27 06:26:00    2017-09-27 06:26:00
123867    37300    736    2017-09-27 15:13:00    2017-09-27 15:13:00
123868    37300    886    2017-09-27 05:03:00    2017-09-27 05:03:00
123869    37300    633    2017-09-27 13:13:00    2017-09-27 13:13:00
123870    37301    877    2017-09-27 16:11:00    2017-09-27 16:11:00
123871    37301    829    2017-09-27 15:51:00    2017-09-27 15:51:00
123872    37301    621    2017-09-27 05:34:00    2017-09-27 05:34:00
123873    37301    659    2017-09-27 22:58:00    2017-09-27 22:58:00
123874    37301    893    2017-09-27 17:02:00    2017-09-27 17:02:00
123875    37302    501    2017-09-27 15:35:00    2017-09-27 15:35:00
123876    37302    800    2017-09-27 02:17:00    2017-09-27 02:17:00
123877    37302    932    2017-09-27 11:49:00    2017-09-27 11:49:00
123878    37302    703    2017-09-27 03:23:00    2017-09-27 03:23:00
123879    37302    465    2017-09-27 18:02:00    2017-09-27 18:02:00
123880    37303    790    2017-09-28 21:02:00    2017-09-28 21:02:00
123881    37303    603    2017-09-28 09:51:00    2017-09-28 09:51:00
123882    37303    530    2017-09-28 22:19:00    2017-09-28 22:19:00
123883    37303    622    2017-09-28 23:30:00    2017-09-28 23:30:00
123884    37303    960    2017-09-28 09:21:00    2017-09-28 09:21:00
123885    37304    761    2017-09-28 21:18:00    2017-09-28 21:18:00
123886    37304    823    2017-09-28 04:57:00    2017-09-28 04:57:00
123887    37304    699    2017-09-28 17:20:00    2017-09-28 17:20:00
123888    37304    474    2017-09-28 11:36:00    2017-09-28 11:36:00
123889    37304    762    2017-09-28 16:37:00    2017-09-28 16:37:00
123890    37305    547    2017-09-28 17:48:00    2017-09-28 17:48:00
123891    37305    474    2017-09-28 22:13:00    2017-09-28 22:13:00
123892    37305    958    2017-09-28 16:55:00    2017-09-28 16:55:00
123893    37305    892    2017-09-28 07:25:00    2017-09-28 07:25:00
123894    37305    599    2017-09-28 13:16:00    2017-09-28 13:16:00
123895    37306    747    2017-09-28 13:08:00    2017-09-28 13:08:00
123896    37306    533    2017-09-28 19:58:00    2017-09-28 19:58:00
123897    37306    924    2017-09-28 18:24:00    2017-09-28 18:24:00
123898    37306    529    2017-09-28 11:56:00    2017-09-28 11:56:00
123899    37306    673    2017-09-28 13:32:00    2017-09-28 13:32:00
123900    37307    697    2017-09-28 11:33:00    2017-09-28 11:33:00
123901    37307    682    2017-09-28 04:24:00    2017-09-28 04:24:00
123902    37307    782    2017-09-28 13:55:00    2017-09-28 13:55:00
123903    37307    631    2017-09-28 21:55:00    2017-09-28 21:55:00
123904    37307    832    2017-09-28 17:57:00    2017-09-28 17:57:00
123905    37308    868    2017-09-28 15:26:00    2017-09-28 15:26:00
123906    37308    694    2017-09-28 21:55:00    2017-09-28 21:55:00
123907    37308    950    2017-09-28 05:09:00    2017-09-28 05:09:00
123908    37308    582    2017-09-28 08:35:00    2017-09-28 08:35:00
123909    37308    728    2017-09-28 12:22:00    2017-09-28 12:22:00
123910    37309    961    2017-09-28 17:18:00    2017-09-28 17:18:00
123911    37309    675    2017-09-28 18:45:00    2017-09-28 18:45:00
123912    37309    763    2017-09-28 11:44:00    2017-09-28 11:44:00
123913    37309    680    2017-09-28 11:39:00    2017-09-28 11:39:00
123914    37309    867    2017-09-28 13:18:00    2017-09-28 13:18:00
123915    37310    549    2017-09-28 21:11:00    2017-09-28 21:11:00
123916    37310    795    2017-09-28 03:18:00    2017-09-28 03:18:00
123917    37310    540    2017-09-28 10:23:00    2017-09-28 10:23:00
123918    37310    484    2017-09-28 10:06:00    2017-09-28 10:06:00
123919    37310    825    2017-09-28 11:38:00    2017-09-28 11:38:00
123920    37311    728    2017-09-28 17:48:00    2017-09-28 17:48:00
123921    37311    511    2017-09-28 03:04:00    2017-09-28 03:04:00
123922    37311    874    2017-09-28 02:32:00    2017-09-28 02:32:00
123923    37311    504    2017-09-28 03:48:00    2017-09-28 03:48:00
123924    37311    583    2017-09-28 01:33:00    2017-09-28 01:33:00
123925    37312    666    2017-09-28 12:06:00    2017-09-28 12:06:00
123926    37312    939    2017-09-28 03:26:00    2017-09-28 03:26:00
123927    37312    852    2017-09-28 07:31:00    2017-09-28 07:31:00
123928    37312    910    2017-09-28 14:41:00    2017-09-28 14:41:00
123929    37312    923    2017-09-28 05:50:00    2017-09-28 05:50:00
123930    37313    926    2017-09-28 19:15:00    2017-09-28 19:15:00
123931    37313    531    2017-09-28 13:17:00    2017-09-28 13:17:00
123932    37313    509    2017-09-28 03:16:00    2017-09-28 03:16:00
123933    37313    958    2017-09-28 13:29:00    2017-09-28 13:29:00
123934    37313    920    2017-09-28 04:32:00    2017-09-28 04:32:00
123935    37314    560    2017-09-28 23:35:00    2017-09-28 23:35:00
123936    37314    725    2017-09-28 13:54:00    2017-09-28 13:54:00
123937    37314    936    2017-09-28 01:53:00    2017-09-28 01:53:00
123938    37314    873    2017-09-28 08:27:00    2017-09-28 08:27:00
123939    37314    480    2017-09-28 06:29:00    2017-09-28 06:29:00
123940    37315    617    2017-09-28 15:48:00    2017-09-28 15:48:00
123941    37315    799    2017-09-28 09:51:00    2017-09-28 09:51:00
123942    37315    839    2017-09-28 07:09:00    2017-09-28 07:09:00
123943    37315    848    2017-09-28 20:59:00    2017-09-28 20:59:00
123944    37315    903    2017-09-28 15:10:00    2017-09-28 15:10:00
123945    37316    922    2017-09-28 22:33:00    2017-09-28 22:33:00
123946    37316    589    2017-09-28 21:08:00    2017-09-28 21:08:00
123947    37316    748    2017-09-28 10:24:00    2017-09-28 10:24:00
123948    37316    930    2017-09-28 02:12:00    2017-09-28 02:12:00
123949    37316    639    2017-09-28 21:38:00    2017-09-28 21:38:00
123950    37317    634    2017-09-28 15:25:00    2017-09-28 15:25:00
123951    37317    692    2017-09-28 08:35:00    2017-09-28 08:35:00
123952    37317    739    2017-09-28 16:38:00    2017-09-28 16:38:00
123953    37317    869    2017-09-28 05:41:00    2017-09-28 05:41:00
123954    37317    563    2017-09-28 18:10:00    2017-09-28 18:10:00
123955    37318    530    2017-09-28 03:37:00    2017-09-28 03:37:00
123956    37318    912    2017-09-28 03:31:00    2017-09-28 03:31:00
123957    37318    575    2017-09-28 17:33:00    2017-09-28 17:33:00
123958    37318    698    2017-09-28 01:03:00    2017-09-28 01:03:00
123959    37318    566    2017-09-28 11:02:00    2017-09-28 11:02:00
123960    37319    945    2017-09-28 08:24:00    2017-09-28 08:24:00
123961    37319    850    2017-09-28 02:38:00    2017-09-28 02:38:00
123962    37319    924    2017-09-28 21:43:00    2017-09-28 21:43:00
123963    37319    700    2017-09-28 07:30:00    2017-09-28 07:30:00
123964    37319    802    2017-09-28 19:06:00    2017-09-28 19:06:00
123965    37320    837    2017-09-28 23:13:00    2017-09-28 23:13:00
123966    37320    619    2017-09-28 21:30:00    2017-09-28 21:30:00
123967    37320    850    2017-09-28 13:08:00    2017-09-28 13:08:00
123968    37320    488    2017-09-28 01:39:00    2017-09-28 01:39:00
123969    37320    553    2017-09-28 01:35:00    2017-09-28 01:35:00
123970    37321    829    2017-09-28 10:00:00    2017-09-28 10:00:00
123971    37321    470    2017-09-28 09:50:00    2017-09-28 09:50:00
123972    37321    575    2017-09-28 04:37:00    2017-09-28 04:37:00
123973    37321    577    2017-09-28 03:21:00    2017-09-28 03:21:00
123974    37321    828    2017-09-28 04:00:00    2017-09-28 04:00:00
123975    37322    860    2017-09-28 07:50:00    2017-09-28 07:50:00
123976    37322    601    2017-09-28 11:30:00    2017-09-28 11:30:00
123977    37322    924    2017-09-28 11:37:00    2017-09-28 11:37:00
123978    37322    758    2017-09-28 05:00:00    2017-09-28 05:00:00
123979    37322    709    2017-09-28 17:12:00    2017-09-28 17:12:00
123980    37323    485    2017-09-28 06:58:00    2017-09-28 06:58:00
123981    37323    557    2017-09-28 18:11:00    2017-09-28 18:11:00
123982    37323    504    2017-09-28 08:09:00    2017-09-28 08:09:00
123983    37323    820    2017-09-28 11:41:00    2017-09-28 11:41:00
123984    37323    493    2017-09-28 08:44:00    2017-09-28 08:44:00
123985    37324    839    2017-09-28 07:44:00    2017-09-28 07:44:00
123986    37324    855    2017-09-28 22:39:00    2017-09-28 22:39:00
123987    37324    708    2017-09-28 23:08:00    2017-09-28 23:08:00
123988    37324    475    2017-09-28 12:00:00    2017-09-28 12:00:00
123989    37324    639    2017-09-28 02:34:00    2017-09-28 02:34:00
123990    37325    773    2017-09-28 09:39:00    2017-09-28 09:39:00
123991    37325    593    2017-09-28 21:20:00    2017-09-28 21:20:00
123992    37325    815    2017-09-28 09:55:00    2017-09-28 09:55:00
123993    37325    762    2017-09-28 10:02:00    2017-09-28 10:02:00
123994    37325    744    2017-09-28 19:49:00    2017-09-28 19:49:00
123995    37326    661    2017-09-28 23:10:00    2017-09-28 23:10:00
123996    37326    744    2017-09-28 17:59:00    2017-09-28 17:59:00
123997    37326    816    2017-09-28 02:36:00    2017-09-28 02:36:00
123998    37326    813    2017-09-28 02:47:00    2017-09-28 02:47:00
123999    37326    589    2017-09-28 23:54:00    2017-09-28 23:54:00
124000    37327    912    2017-09-28 11:49:00    2017-09-28 11:49:00
124001    37327    631    2017-09-28 18:20:00    2017-09-28 18:20:00
124002    37327    551    2017-09-28 23:57:00    2017-09-28 23:57:00
124003    37327    954    2017-09-28 05:11:00    2017-09-28 05:11:00
124004    37327    691    2017-09-28 11:28:00    2017-09-28 11:28:00
124005    37328    630    2017-09-28 17:14:00    2017-09-28 17:14:00
124006    37328    930    2017-09-28 13:22:00    2017-09-28 13:22:00
124007    37328    592    2017-09-28 02:39:00    2017-09-28 02:39:00
124008    37328    724    2017-09-28 07:04:00    2017-09-28 07:04:00
124009    37328    566    2017-09-28 14:47:00    2017-09-28 14:47:00
124010    37329    909    2017-09-28 03:41:00    2017-09-28 03:41:00
124011    37329    811    2017-09-28 17:57:00    2017-09-28 17:57:00
124012    37329    534    2017-09-28 13:00:00    2017-09-28 13:00:00
124013    37329    505    2017-09-28 02:16:00    2017-09-28 02:16:00
124014    37329    816    2017-09-28 19:44:00    2017-09-28 19:44:00
124015    37330    648    2017-09-28 22:00:00    2017-09-28 22:00:00
124016    37330    562    2017-09-28 12:15:00    2017-09-28 12:15:00
124017    37330    796    2017-09-28 15:39:00    2017-09-28 15:39:00
124018    37330    555    2017-09-28 13:01:00    2017-09-28 13:01:00
124019    37330    682    2017-09-28 08:52:00    2017-09-28 08:52:00
124020    37331    558    2017-09-28 03:33:00    2017-09-28 03:33:00
124021    37331    836    2017-09-28 02:40:00    2017-09-28 02:40:00
124022    37331    646    2017-09-28 05:35:00    2017-09-28 05:35:00
124023    37331    851    2017-09-28 11:38:00    2017-09-28 11:38:00
124024    37331    679    2017-09-28 20:03:00    2017-09-28 20:03:00
124025    37332    491    2017-09-28 13:34:00    2017-09-28 13:34:00
124026    37332    514    2017-09-28 21:12:00    2017-09-28 21:12:00
124027    37332    904    2017-09-28 06:57:00    2017-09-28 06:57:00
124028    37332    695    2017-09-28 12:39:00    2017-09-28 12:39:00
124029    37332    531    2017-09-28 13:41:00    2017-09-28 13:41:00
124030    37333    855    2017-09-28 21:30:00    2017-09-28 21:30:00
124031    37333    474    2017-09-28 04:07:00    2017-09-28 04:07:00
124032    37333    538    2017-09-28 02:35:00    2017-09-28 02:35:00
124033    37333    593    2017-09-28 18:50:00    2017-09-28 18:50:00
124034    37333    846    2017-09-28 08:56:00    2017-09-28 08:56:00
124035    37334    883    2017-09-28 13:33:00    2017-09-28 13:33:00
124036    37334    797    2017-09-28 18:56:00    2017-09-28 18:56:00
124037    37334    920    2017-09-28 12:12:00    2017-09-28 12:12:00
124038    37334    867    2017-09-28 08:23:00    2017-09-28 08:23:00
124039    37334    528    2017-09-28 19:08:00    2017-09-28 19:08:00
124040    37335    583    2017-09-28 22:17:00    2017-09-28 22:17:00
124041    37335    480    2017-09-28 17:21:00    2017-09-28 17:21:00
124042    37335    484    2017-09-28 08:00:00    2017-09-28 08:00:00
124043    37335    807    2017-09-28 20:34:00    2017-09-28 20:34:00
124044    37335    571    2017-09-28 08:31:00    2017-09-28 08:31:00
124045    37336    811    2017-09-28 14:55:00    2017-09-28 14:55:00
124046    37336    782    2017-09-28 19:23:00    2017-09-28 19:23:00
124047    37336    530    2017-09-28 12:22:00    2017-09-28 12:22:00
124048    37336    590    2017-09-28 11:40:00    2017-09-28 11:40:00
124049    37336    679    2017-09-28 13:46:00    2017-09-28 13:46:00
124050    37337    872    2017-09-28 21:50:00    2017-09-28 21:50:00
124051    37337    662    2017-09-28 22:45:00    2017-09-28 22:45:00
124052    37337    777    2017-09-28 20:59:00    2017-09-28 20:59:00
124053    37337    699    2017-09-28 23:11:00    2017-09-28 23:11:00
124054    37337    939    2017-09-28 02:32:00    2017-09-28 02:32:00
124055    37338    901    2017-09-28 02:12:00    2017-09-28 02:12:00
124056    37338    491    2017-09-28 23:54:00    2017-09-28 23:54:00
124057    37338    884    2017-09-28 05:45:00    2017-09-28 05:45:00
124058    37338    741    2017-09-28 05:37:00    2017-09-28 05:37:00
124059    37338    517    2017-09-28 04:38:00    2017-09-28 04:38:00
124060    37339    821    2017-09-28 12:00:00    2017-09-28 12:00:00
124061    37339    652    2017-09-28 13:22:00    2017-09-28 13:22:00
124062    37339    692    2017-09-28 16:05:00    2017-09-28 16:05:00
124063    37339    500    2017-09-28 07:33:00    2017-09-28 07:33:00
124064    37339    728    2017-09-28 17:30:00    2017-09-28 17:30:00
124065    37340    700    2017-09-28 07:54:00    2017-09-28 07:54:00
124066    37340    941    2017-09-28 17:20:00    2017-09-28 17:20:00
124067    37340    932    2017-09-28 04:38:00    2017-09-28 04:38:00
124068    37340    546    2017-09-28 16:07:00    2017-09-28 16:07:00
124069    37340    551    2017-09-28 11:34:00    2017-09-28 11:34:00
124070    37341    798    2017-09-28 11:01:00    2017-09-28 11:01:00
124071    37341    864    2017-09-28 22:06:00    2017-09-28 22:06:00
124072    37341    594    2017-09-28 11:32:00    2017-09-28 11:32:00
124073    37341    849    2017-09-28 14:43:00    2017-09-28 14:43:00
124074    37341    553    2017-09-28 16:50:00    2017-09-28 16:50:00
124075    37342    941    2017-09-28 11:05:00    2017-09-28 11:05:00
124076    37342    464    2017-09-28 12:07:00    2017-09-28 12:07:00
124077    37342    753    2017-09-28 04:52:00    2017-09-28 04:52:00
124078    37342    856    2017-09-28 03:31:00    2017-09-28 03:31:00
124079    37342    720    2017-09-28 05:44:00    2017-09-28 05:44:00
124080    37343    600    2017-09-28 01:01:00    2017-09-28 01:01:00
124081    37343    746    2017-09-28 13:35:00    2017-09-28 13:35:00
124082    37343    582    2017-09-28 01:33:00    2017-09-28 01:33:00
124083    37343    894    2017-09-28 21:35:00    2017-09-28 21:35:00
124084    37343    481    2017-09-28 10:21:00    2017-09-28 10:21:00
124085    37344    762    2017-09-29 02:57:00    2017-09-29 02:57:00
124086    37344    759    2017-09-29 03:03:00    2017-09-29 03:03:00
124087    37344    646    2017-09-29 13:17:00    2017-09-29 13:17:00
124088    37344    468    2017-09-29 02:40:00    2017-09-29 02:40:00
124089    37344    585    2017-09-29 06:44:00    2017-09-29 06:44:00
124090    37345    660    2017-09-29 21:36:00    2017-09-29 21:36:00
124091    37345    899    2017-09-29 12:02:00    2017-09-29 12:02:00
124092    37345    961    2017-09-29 17:11:00    2017-09-29 17:11:00
124093    37345    609    2017-09-29 18:03:00    2017-09-29 18:03:00
124094    37345    839    2017-09-29 19:55:00    2017-09-29 19:55:00
124095    37346    904    2017-09-29 08:15:00    2017-09-29 08:15:00
124096    37346    953    2017-09-29 05:53:00    2017-09-29 05:53:00
124097    37346    893    2017-09-29 23:12:00    2017-09-29 23:12:00
124098    37346    823    2017-09-29 22:35:00    2017-09-29 22:35:00
124099    37346    801    2017-09-29 04:31:00    2017-09-29 04:31:00
124100    37347    913    2017-09-29 12:41:00    2017-09-29 12:41:00
124101    37347    663    2017-09-29 13:35:00    2017-09-29 13:35:00
124102    37347    567    2017-09-29 04:27:00    2017-09-29 04:27:00
124103    37347    898    2017-09-29 21:06:00    2017-09-29 21:06:00
124104    37347    662    2017-09-29 11:02:00    2017-09-29 11:02:00
124105    37348    575    2017-09-29 03:17:00    2017-09-29 03:17:00
124106    37348    775    2017-09-29 13:16:00    2017-09-29 13:16:00
124107    37348    898    2017-09-29 18:58:00    2017-09-29 18:58:00
124108    37348    674    2017-09-29 15:19:00    2017-09-29 15:19:00
124109    37348    528    2017-09-29 20:46:00    2017-09-29 20:46:00
124110    37349    608    2017-09-29 23:37:00    2017-09-29 23:37:00
124111    37349    802    2017-09-29 16:32:00    2017-09-29 16:32:00
124112    37349    944    2017-09-29 03:17:00    2017-09-29 03:17:00
124113    37349    569    2017-09-29 17:53:00    2017-09-29 17:53:00
124114    37349    900    2017-09-29 23:11:00    2017-09-29 23:11:00
124115    37350    569    2017-09-29 22:18:00    2017-09-29 22:18:00
124116    37350    940    2017-09-29 07:35:00    2017-09-29 07:35:00
124117    37350    751    2017-09-29 09:37:00    2017-09-29 09:37:00
124118    37350    767    2017-09-29 15:55:00    2017-09-29 15:55:00
124119    37350    636    2017-09-29 13:41:00    2017-09-29 13:41:00
124120    37351    476    2017-09-29 11:31:00    2017-09-29 11:31:00
124121    37351    785    2017-09-29 06:55:00    2017-09-29 06:55:00
124122    37351    508    2017-09-29 22:47:00    2017-09-29 22:47:00
124123    37351    525    2017-09-29 19:26:00    2017-09-29 19:26:00
124124    37351    874    2017-09-29 06:17:00    2017-09-29 06:17:00
124125    37352    914    2017-09-29 03:25:00    2017-09-29 03:25:00
124126    37352    543    2017-09-29 23:13:00    2017-09-29 23:13:00
124127    37352    648    2017-09-29 05:06:00    2017-09-29 05:06:00
124128    37352    709    2017-09-29 19:43:00    2017-09-29 19:43:00
124129    37352    774    2017-09-29 20:06:00    2017-09-29 20:06:00
124130    37353    685    2017-09-29 18:34:00    2017-09-29 18:34:00
124131    37353    502    2017-09-29 17:26:00    2017-09-29 17:26:00
124132    37353    845    2017-09-29 01:36:00    2017-09-29 01:36:00
124133    37353    792    2017-09-29 12:08:00    2017-09-29 12:08:00
124134    37353    632    2017-09-29 17:15:00    2017-09-29 17:15:00
124135    37354    576    2017-09-29 15:41:00    2017-09-29 15:41:00
124136    37354    906    2017-09-29 02:03:00    2017-09-29 02:03:00
124137    37354    865    2017-09-29 19:00:00    2017-09-29 19:00:00
124138    37354    941    2017-09-29 05:37:00    2017-09-29 05:37:00
124139    37354    802    2017-09-29 21:53:00    2017-09-29 21:53:00
124140    37355    538    2017-09-29 17:28:00    2017-09-29 17:28:00
124141    37355    560    2017-09-29 22:54:00    2017-09-29 22:54:00
124142    37355    781    2017-09-29 08:07:00    2017-09-29 08:07:00
124143    37355    519    2017-09-29 11:42:00    2017-09-29 11:42:00
124144    37355    780    2017-09-29 01:56:00    2017-09-29 01:56:00
124145    37356    465    2017-09-29 17:22:00    2017-09-29 17:22:00
124146    37356    748    2017-09-29 09:39:00    2017-09-29 09:39:00
124147    37356    491    2017-09-29 13:05:00    2017-09-29 13:05:00
124148    37356    496    2017-09-29 03:57:00    2017-09-29 03:57:00
124149    37356    902    2017-09-29 10:04:00    2017-09-29 10:04:00
124150    37357    643    2017-09-29 09:21:00    2017-09-29 09:21:00
124151    37357    834    2017-09-29 09:42:00    2017-09-29 09:42:00
124152    37357    776    2017-09-29 09:10:00    2017-09-29 09:10:00
124153    37357    772    2017-09-29 08:26:00    2017-09-29 08:26:00
124154    37357    720    2017-09-29 23:19:00    2017-09-29 23:19:00
124155    37358    540    2017-09-29 17:40:00    2017-09-29 17:40:00
124156    37358    571    2017-09-29 20:21:00    2017-09-29 20:21:00
124157    37358    590    2017-09-29 02:19:00    2017-09-29 02:19:00
124158    37358    650    2017-09-29 15:09:00    2017-09-29 15:09:00
124159    37358    539    2017-09-29 09:15:00    2017-09-29 09:15:00
124160    37359    894    2017-09-29 04:24:00    2017-09-29 04:24:00
124161    37359    561    2017-09-29 07:42:00    2017-09-29 07:42:00
124162    37359    774    2017-09-29 07:02:00    2017-09-29 07:02:00
124163    37359    608    2017-09-29 14:05:00    2017-09-29 14:05:00
124164    37359    830    2017-09-29 02:29:00    2017-09-29 02:29:00
124165    37360    819    2017-09-29 23:30:00    2017-09-29 23:30:00
124166    37360    955    2017-09-29 18:18:00    2017-09-29 18:18:00
124167    37360    608    2017-09-29 20:21:00    2017-09-29 20:21:00
124168    37360    914    2017-09-29 23:12:00    2017-09-29 23:12:00
124169    37360    563    2017-09-29 03:00:00    2017-09-29 03:00:00
124170    37361    854    2017-09-29 17:30:00    2017-09-29 17:30:00
124171    37361    736    2017-09-29 10:42:00    2017-09-29 10:42:00
124172    37361    799    2017-09-29 20:19:00    2017-09-29 20:19:00
124173    37361    720    2017-09-29 16:29:00    2017-09-29 16:29:00
124174    37361    927    2017-09-29 04:46:00    2017-09-29 04:46:00
124175    37362    620    2017-09-29 16:29:00    2017-09-29 16:29:00
124176    37362    598    2017-09-29 13:41:00    2017-09-29 13:41:00
124177    37362    717    2017-09-29 06:40:00    2017-09-29 06:40:00
124178    37362    601    2017-09-29 21:29:00    2017-09-29 21:29:00
124179    37362    558    2017-09-29 03:00:00    2017-09-29 03:00:00
124180    37363    781    2017-09-29 04:40:00    2017-09-29 04:40:00
124181    37363    713    2017-09-29 11:14:00    2017-09-29 11:14:00
124182    37363    853    2017-09-29 09:44:00    2017-09-29 09:44:00
124183    37363    806    2017-09-29 18:05:00    2017-09-29 18:05:00
124184    37363    638    2017-09-29 20:10:00    2017-09-29 20:10:00
124185    37364    595    2017-09-29 15:11:00    2017-09-29 15:11:00
124186    37364    860    2017-09-29 15:22:00    2017-09-29 15:22:00
124187    37364    667    2017-09-29 03:37:00    2017-09-29 03:37:00
124188    37364    804    2017-09-29 09:46:00    2017-09-29 09:46:00
124189    37364    895    2017-09-29 10:26:00    2017-09-29 10:26:00
124190    37365    783    2017-09-29 09:25:00    2017-09-29 09:25:00
124191    37365    863    2017-09-29 06:10:00    2017-09-29 06:10:00
124192    37365    800    2017-09-29 09:58:00    2017-09-29 09:58:00
124193    37365    909    2017-09-29 18:53:00    2017-09-29 18:53:00
124194    37365    894    2017-09-29 14:11:00    2017-09-29 14:11:00
124195    37366    958    2017-09-29 01:23:00    2017-09-29 01:23:00
124196    37366    841    2017-09-29 18:40:00    2017-09-29 18:40:00
124197    37366    945    2017-09-29 10:25:00    2017-09-29 10:25:00
124198    37366    552    2017-09-29 02:07:00    2017-09-29 02:07:00
124199    37366    591    2017-09-29 18:02:00    2017-09-29 18:02:00
124200    37367    507    2017-09-29 19:43:00    2017-09-29 19:43:00
124201    37367    866    2017-09-29 18:40:00    2017-09-29 18:40:00
124202    37367    540    2017-09-29 19:09:00    2017-09-29 19:09:00
124203    37367    580    2017-09-29 12:22:00    2017-09-29 12:22:00
124204    37367    594    2017-09-29 18:39:00    2017-09-29 18:39:00
124205    37368    950    2017-09-29 09:12:00    2017-09-29 09:12:00
124206    37368    868    2017-09-29 11:55:00    2017-09-29 11:55:00
124207    37368    840    2017-09-29 12:47:00    2017-09-29 12:47:00
124208    37368    817    2017-09-29 13:47:00    2017-09-29 13:47:00
124209    37368    615    2017-09-29 07:35:00    2017-09-29 07:35:00
124210    37369    839    2017-09-29 19:43:00    2017-09-29 19:43:00
124211    37369    647    2017-09-29 16:39:00    2017-09-29 16:39:00
124212    37369    574    2017-09-29 11:49:00    2017-09-29 11:49:00
124213    37369    622    2017-09-29 16:26:00    2017-09-29 16:26:00
124214    37369    945    2017-09-29 03:47:00    2017-09-29 03:47:00
124215    37370    833    2017-09-29 01:24:00    2017-09-29 01:24:00
124216    37370    541    2017-09-29 10:08:00    2017-09-29 10:08:00
124217    37370    621    2017-09-29 23:56:00    2017-09-29 23:56:00
124218    37370    803    2017-09-29 14:24:00    2017-09-29 14:24:00
124219    37370    731    2017-09-29 11:27:00    2017-09-29 11:27:00
124220    37371    503    2017-09-29 07:06:00    2017-09-29 07:06:00
124221    37371    743    2017-09-29 11:31:00    2017-09-29 11:31:00
124222    37371    549    2017-09-29 08:56:00    2017-09-29 08:56:00
124223    37371    658    2017-09-29 20:45:00    2017-09-29 20:45:00
124224    37371    740    2017-09-29 15:11:00    2017-09-29 15:11:00
124225    37372    475    2017-09-29 09:03:00    2017-09-29 09:03:00
124226    37372    918    2017-09-29 05:13:00    2017-09-29 05:13:00
124227    37372    832    2017-09-29 03:00:00    2017-09-29 03:00:00
124228    37372    755    2017-09-29 17:43:00    2017-09-29 17:43:00
124229    37372    621    2017-09-29 14:10:00    2017-09-29 14:10:00
124230    37373    660    2017-09-29 08:49:00    2017-09-29 08:49:00
124231    37373    560    2017-09-29 13:57:00    2017-09-29 13:57:00
124232    37373    921    2017-09-29 13:45:00    2017-09-29 13:45:00
124233    37373    696    2017-09-29 18:33:00    2017-09-29 18:33:00
124234    37373    670    2017-09-29 08:44:00    2017-09-29 08:44:00
124235    37374    684    2017-09-29 04:02:00    2017-09-29 04:02:00
124236    37374    609    2017-09-29 04:17:00    2017-09-29 04:17:00
124237    37374    924    2017-09-29 10:15:00    2017-09-29 10:15:00
124238    37374    728    2017-09-29 20:04:00    2017-09-29 20:04:00
124239    37374    708    2017-09-29 04:51:00    2017-09-29 04:51:00
124240    37375    680    2017-09-29 07:49:00    2017-09-29 07:49:00
124241    37375    821    2017-09-29 04:53:00    2017-09-29 04:53:00
124242    37375    848    2017-09-29 19:40:00    2017-09-29 19:40:00
124243    37375    801    2017-09-29 12:35:00    2017-09-29 12:35:00
124244    37375    888    2017-09-29 21:54:00    2017-09-29 21:54:00
124245    37376    577    2017-09-29 05:08:00    2017-09-29 05:08:00
124246    37376    506    2017-09-29 07:52:00    2017-09-29 07:52:00
124247    37376    878    2017-09-29 20:20:00    2017-09-29 20:20:00
124248    37376    674    2017-09-29 17:44:00    2017-09-29 17:44:00
124249    37376    943    2017-09-29 20:51:00    2017-09-29 20:51:00
124250    37377    526    2017-09-29 01:35:00    2017-09-29 01:35:00
124251    37377    757    2017-09-29 17:10:00    2017-09-29 17:10:00
124252    37377    814    2017-09-29 01:41:00    2017-09-29 01:41:00
124253    37377    526    2017-09-29 01:51:00    2017-09-29 01:51:00
124254    37377    937    2017-09-29 17:36:00    2017-09-29 17:36:00
124255    37378    819    2017-09-30 05:46:00    2017-09-30 05:46:00
124256    37378    650    2017-09-30 18:16:00    2017-09-30 18:16:00
124257    37378    745    2017-09-30 10:36:00    2017-09-30 10:36:00
124258    37378    638    2017-09-30 12:19:00    2017-09-30 12:19:00
124259    37378    645    2017-09-30 21:17:00    2017-09-30 21:17:00
124260    37379    793    2017-09-30 15:04:00    2017-09-30 15:04:00
124261    37379    709    2017-09-30 04:20:00    2017-09-30 04:20:00
124262    37379    765    2017-09-30 19:58:00    2017-09-30 19:58:00
124263    37379    905    2017-09-30 05:38:00    2017-09-30 05:38:00
124264    37379    644    2017-09-30 05:04:00    2017-09-30 05:04:00
124265    37380    478    2017-09-30 12:08:00    2017-09-30 12:08:00
124266    37380    470    2017-09-30 08:05:00    2017-09-30 08:05:00
124267    37380    564    2017-09-30 13:01:00    2017-09-30 13:01:00
124268    37380    770    2017-09-30 11:04:00    2017-09-30 11:04:00
124269    37380    810    2017-09-30 17:07:00    2017-09-30 17:07:00
124270    37381    900    2017-09-30 14:19:00    2017-09-30 14:19:00
124271    37381    659    2017-09-30 02:13:00    2017-09-30 02:13:00
124272    37381    653    2017-09-30 18:49:00    2017-09-30 18:49:00
124273    37381    662    2017-09-30 04:41:00    2017-09-30 04:41:00
124274    37381    653    2017-09-30 09:10:00    2017-09-30 09:10:00
124275    37382    648    2017-09-30 10:08:00    2017-09-30 10:08:00
124276    37382    872    2017-09-30 01:32:00    2017-09-30 01:32:00
124277    37382    712    2017-09-30 15:00:00    2017-09-30 15:00:00
124278    37382    584    2017-09-30 08:07:00    2017-09-30 08:07:00
124279    37382    523    2017-09-30 17:50:00    2017-09-30 17:50:00
124280    37383    783    2017-09-30 07:35:00    2017-09-30 07:35:00
124281    37383    888    2017-09-30 18:42:00    2017-09-30 18:42:00
124282    37383    485    2017-09-30 07:29:00    2017-09-30 07:29:00
124283    37383    626    2017-09-30 23:28:00    2017-09-30 23:28:00
124284    37383    733    2017-09-30 20:47:00    2017-09-30 20:47:00
124285    37384    578    2017-09-30 20:41:00    2017-09-30 20:41:00
124286    37384    522    2017-09-30 13:49:00    2017-09-30 13:49:00
124287    37384    696    2017-09-30 06:06:00    2017-09-30 06:06:00
124288    37384    529    2017-09-30 15:02:00    2017-09-30 15:02:00
124289    37384    923    2017-09-30 09:30:00    2017-09-30 09:30:00
124290    37385    842    2017-09-30 18:07:00    2017-09-30 18:07:00
124291    37385    587    2017-09-30 02:17:00    2017-09-30 02:17:00
124292    37385    739    2017-09-30 20:33:00    2017-09-30 20:33:00
124293    37385    748    2017-09-30 18:24:00    2017-09-30 18:24:00
124294    37385    517    2017-09-30 06:17:00    2017-09-30 06:17:00
124295    37386    886    2017-09-30 14:19:00    2017-09-30 14:19:00
124296    37386    565    2017-09-30 12:04:00    2017-09-30 12:04:00
124297    37386    794    2017-09-30 06:41:00    2017-09-30 06:41:00
124298    37386    783    2017-09-30 06:36:00    2017-09-30 06:36:00
124299    37386    899    2017-09-30 02:48:00    2017-09-30 02:48:00
124300    37387    672    2017-09-30 14:01:00    2017-09-30 14:01:00
124301    37387    922    2017-09-30 22:29:00    2017-09-30 22:29:00
124302    37387    927    2017-09-30 13:26:00    2017-09-30 13:26:00
124303    37387    721    2017-09-30 23:17:00    2017-09-30 23:17:00
124304    37387    785    2017-09-30 18:52:00    2017-09-30 18:52:00
124305    37388    607    2017-09-30 07:24:00    2017-09-30 07:24:00
124306    37388    731    2017-09-30 15:05:00    2017-09-30 15:05:00
124307    37388    572    2017-09-30 20:52:00    2017-09-30 20:52:00
124308    37388    503    2017-09-30 16:58:00    2017-09-30 16:58:00
124309    37388    960    2017-09-30 12:23:00    2017-09-30 12:23:00
124310    37389    939    2017-09-30 12:02:00    2017-09-30 12:02:00
124311    37389    487    2017-09-30 13:47:00    2017-09-30 13:47:00
124312    37389    780    2017-09-30 16:38:00    2017-09-30 16:38:00
124313    37389    877    2017-09-30 13:38:00    2017-09-30 13:38:00
124314    37389    785    2017-09-30 13:00:00    2017-09-30 13:00:00
124315    37390    826    2017-09-30 11:29:00    2017-09-30 11:29:00
124316    37390    758    2017-09-30 16:44:00    2017-09-30 16:44:00
124317    37390    733    2017-09-30 22:14:00    2017-09-30 22:14:00
124318    37390    868    2017-09-30 18:17:00    2017-09-30 18:17:00
124319    37390    836    2017-09-30 12:44:00    2017-09-30 12:44:00
124320    37391    869    2017-09-30 17:33:00    2017-09-30 17:33:00
124321    37391    508    2017-09-30 22:02:00    2017-09-30 22:02:00
124322    37391    808    2017-09-30 01:44:00    2017-09-30 01:44:00
124323    37391    934    2017-09-30 07:18:00    2017-09-30 07:18:00
124324    37391    797    2017-09-30 23:36:00    2017-09-30 23:36:00
124325    37392    802    2017-09-30 21:20:00    2017-09-30 21:20:00
124326    37392    529    2017-09-30 01:06:00    2017-09-30 01:06:00
124327    37392    719    2017-09-30 12:53:00    2017-09-30 12:53:00
124328    37392    919    2017-09-30 03:18:00    2017-09-30 03:18:00
124329    37392    959    2017-09-30 09:53:00    2017-09-30 09:53:00
124330    37393    733    2017-09-30 02:16:00    2017-09-30 02:16:00
124331    37393    761    2017-09-30 19:17:00    2017-09-30 19:17:00
124332    37393    802    2017-09-30 16:47:00    2017-09-30 16:47:00
124333    37393    882    2017-09-30 07:50:00    2017-09-30 07:50:00
124334    37393    733    2017-09-30 15:26:00    2017-09-30 15:26:00
124335    37394    889    2017-09-30 01:11:00    2017-09-30 01:11:00
124336    37394    727    2017-09-30 11:33:00    2017-09-30 11:33:00
124337    37394    576    2017-09-30 03:40:00    2017-09-30 03:40:00
124338    37394    701    2017-09-30 12:10:00    2017-09-30 12:10:00
124339    37394    780    2017-09-30 12:44:00    2017-09-30 12:44:00
124340    37395    579    2017-09-30 01:54:00    2017-09-30 01:54:00
124341    37395    679    2017-09-30 17:19:00    2017-09-30 17:19:00
124342    37395    722    2017-09-30 18:11:00    2017-09-30 18:11:00
124343    37395    703    2017-09-30 04:47:00    2017-09-30 04:47:00
124344    37395    908    2017-09-30 12:43:00    2017-09-30 12:43:00
124345    37396    774    2017-09-30 04:29:00    2017-09-30 04:29:00
124346    37396    728    2017-09-30 01:24:00    2017-09-30 01:24:00
124347    37396    666    2017-09-30 20:45:00    2017-09-30 20:45:00
124348    37396    917    2017-09-30 01:25:00    2017-09-30 01:25:00
124349    37396    551    2017-09-30 04:29:00    2017-09-30 04:29:00
124350    37397    951    2017-09-30 01:22:00    2017-09-30 01:22:00
124351    37397    842    2017-09-30 12:15:00    2017-09-30 12:15:00
124352    37397    858    2017-09-30 16:45:00    2017-09-30 16:45:00
124353    37397    722    2017-09-30 14:54:00    2017-09-30 14:54:00
124354    37397    634    2017-09-30 03:59:00    2017-09-30 03:59:00
124355    37398    712    2017-09-30 01:20:00    2017-09-30 01:20:00
124356    37398    875    2017-09-30 09:03:00    2017-09-30 09:03:00
124357    37398    541    2017-09-30 16:50:00    2017-09-30 16:50:00
124358    37398    719    2017-09-30 15:07:00    2017-09-30 15:07:00
124359    37398    813    2017-09-30 08:25:00    2017-09-30 08:25:00
124360    37399    609    2017-09-30 20:21:00    2017-09-30 20:21:00
124361    37399    826    2017-09-30 09:59:00    2017-09-30 09:59:00
124362    37399    949    2017-09-30 14:48:00    2017-09-30 14:48:00
124363    37399    869    2017-09-30 21:58:00    2017-09-30 21:58:00
124364    37399    537    2017-09-30 15:08:00    2017-09-30 15:08:00
124365    37400    623    2017-09-30 02:12:00    2017-09-30 02:12:00
124366    37400    742    2017-09-30 09:45:00    2017-09-30 09:45:00
124367    37400    506    2017-09-30 14:03:00    2017-09-30 14:03:00
124368    37400    785    2017-09-30 14:11:00    2017-09-30 14:11:00
124369    37400    684    2017-09-30 18:12:00    2017-09-30 18:12:00
124370    37401    538    2017-09-30 21:35:00    2017-09-30 21:35:00
124371    37401    471    2017-09-30 13:09:00    2017-09-30 13:09:00
124372    37401    563    2017-09-30 07:22:00    2017-09-30 07:22:00
124373    37401    527    2017-09-30 14:51:00    2017-09-30 14:51:00
124374    37401    872    2017-09-30 19:47:00    2017-09-30 19:47:00
124375    37402    526    2017-09-30 12:07:00    2017-09-30 12:07:00
124376    37402    732    2017-09-30 12:07:00    2017-09-30 12:07:00
124377    37402    852    2017-09-30 20:22:00    2017-09-30 20:22:00
124378    37402    777    2017-09-30 10:06:00    2017-09-30 10:06:00
124379    37402    635    2017-09-30 22:37:00    2017-09-30 22:37:00
124380    37403    731    2017-09-30 17:10:00    2017-09-30 17:10:00
124381    37403    881    2017-09-30 22:07:00    2017-09-30 22:07:00
124382    37403    890    2017-09-30 11:30:00    2017-09-30 11:30:00
124383    37403    550    2017-09-30 15:53:00    2017-09-30 15:53:00
124384    37403    649    2017-09-30 07:21:00    2017-09-30 07:21:00
124385    37404    827    2017-09-30 11:30:00    2017-09-30 11:30:00
124386    37404    721    2017-09-30 03:08:00    2017-09-30 03:08:00
124387    37404    509    2017-09-30 07:26:00    2017-09-30 07:26:00
124388    37404    661    2017-09-30 03:08:00    2017-09-30 03:08:00
124389    37404    870    2017-09-30 18:52:00    2017-09-30 18:52:00
124390    37405    758    2017-09-30 10:46:00    2017-09-30 10:46:00
124391    37405    702    2017-09-30 08:53:00    2017-09-30 08:53:00
124392    37405    624    2017-09-30 23:54:00    2017-09-30 23:54:00
124393    37405    753    2017-09-30 08:39:00    2017-09-30 08:39:00
124394    37405    860    2017-09-30 16:14:00    2017-09-30 16:14:00
124395    37406    501    2017-09-30 23:28:00    2017-09-30 23:28:00
124396    37406    777    2017-09-30 04:06:00    2017-09-30 04:06:00
124397    37406    813    2017-09-30 01:09:00    2017-09-30 01:09:00
124398    37406    839    2017-09-30 17:38:00    2017-09-30 17:38:00
124399    37406    948    2017-09-30 22:22:00    2017-09-30 22:22:00
124400    37407    495    2017-09-30 02:21:00    2017-09-30 02:21:00
124401    37407    879    2017-09-30 16:46:00    2017-09-30 16:46:00
124402    37407    585    2017-09-30 03:31:00    2017-09-30 03:31:00
124403    37407    942    2017-09-30 21:16:00    2017-09-30 21:16:00
124404    37407    873    2017-09-30 07:52:00    2017-09-30 07:52:00
124405    37408    652    2017-09-30 17:50:00    2017-09-30 17:50:00
124406    37408    725    2017-09-30 21:35:00    2017-09-30 21:35:00
124407    37408    851    2017-09-30 05:05:00    2017-09-30 05:05:00
124408    37408    907    2017-09-30 15:02:00    2017-09-30 15:02:00
124409    37408    584    2017-09-30 17:25:00    2017-09-30 17:25:00
124410    37409    679    2017-09-30 08:36:00    2017-09-30 08:36:00
124411    37409    691    2017-09-30 19:00:00    2017-09-30 19:00:00
124412    37409    673    2017-09-30 22:04:00    2017-09-30 22:04:00
124413    37409    828    2017-09-30 23:40:00    2017-09-30 23:40:00
124414    37409    546    2017-09-30 08:15:00    2017-09-30 08:15:00
124415    37410    663    2017-09-30 14:16:00    2017-09-30 14:16:00
124416    37410    595    2017-09-30 21:44:00    2017-09-30 21:44:00
124417    37410    772    2017-09-30 16:25:00    2017-09-30 16:25:00
124418    37410    720    2017-09-30 11:40:00    2017-09-30 11:40:00
124419    37410    754    2017-09-30 04:35:00    2017-09-30 04:35:00
124420    37411    588    2017-09-30 16:06:00    2017-09-30 16:06:00
124421    37411    721    2017-09-30 18:56:00    2017-09-30 18:56:00
124422    37411    757    2017-09-30 02:32:00    2017-09-30 02:32:00
124423    37411    555    2017-09-30 20:41:00    2017-09-30 20:41:00
124424    37411    806    2017-09-30 16:41:00    2017-09-30 16:41:00
124425    37412    539    2017-09-30 13:58:00    2017-09-30 13:58:00
124426    37412    535    2017-09-30 23:07:00    2017-09-30 23:07:00
124427    37412    744    2017-09-30 02:39:00    2017-09-30 02:39:00
124428    37412    761    2017-09-30 02:30:00    2017-09-30 02:30:00
124429    37412    812    2017-09-30 06:41:00    2017-09-30 06:41:00
124430    37413    725    2017-09-30 08:38:00    2017-09-30 08:38:00
124431    37413    931    2017-09-30 12:23:00    2017-09-30 12:23:00
124432    37413    690    2017-09-30 08:27:00    2017-09-30 08:27:00
124433    37413    563    2017-09-30 19:50:00    2017-09-30 19:50:00
124434    37413    580    2017-09-30 02:57:00    2017-09-30 02:57:00
124435    37414    871    2017-09-30 07:20:00    2017-09-30 07:20:00
124436    37414    811    2017-09-30 12:14:00    2017-09-30 12:14:00
124437    37414    893    2017-09-30 15:25:00    2017-09-30 15:25:00
124438    37414    518    2017-09-30 07:04:00    2017-09-30 07:04:00
124439    37414    814    2017-09-30 14:33:00    2017-09-30 14:33:00
124440    37415    879    2017-09-30 12:05:00    2017-09-30 12:05:00
124441    37415    901    2017-09-30 02:35:00    2017-09-30 02:35:00
124442    37415    547    2017-09-30 13:47:00    2017-09-30 13:47:00
124443    37415    501    2017-09-30 19:32:00    2017-09-30 19:32:00
124444    37415    619    2017-09-30 16:38:00    2017-09-30 16:38:00
124445    37416    923    2017-09-30 21:12:00    2017-09-30 21:12:00
124446    37416    644    2017-09-30 16:11:00    2017-09-30 16:11:00
124447    37416    895    2017-09-30 03:43:00    2017-09-30 03:43:00
124448    37416    625    2017-09-30 04:03:00    2017-09-30 04:03:00
124449    37416    615    2017-09-30 20:31:00    2017-09-30 20:31:00
124450    37417    729    2017-09-30 14:17:00    2017-09-30 14:17:00
124451    37417    798    2017-09-30 18:40:00    2017-09-30 18:40:00
124452    37417    861    2017-09-30 15:28:00    2017-09-30 15:28:00
124453    37417    602    2017-09-30 17:40:00    2017-09-30 17:40:00
124454    37417    745    2017-09-30 06:52:00    2017-09-30 06:52:00
124455    37418    665    2017-09-30 07:50:00    2017-09-30 07:50:00
124456    37418    838    2017-09-30 01:08:00    2017-09-30 01:08:00
124457    37418    524    2017-09-30 01:09:00    2017-09-30 01:09:00
124458    37418    768    2017-09-30 09:39:00    2017-09-30 09:39:00
124459    37418    848    2017-09-30 14:02:00    2017-09-30 14:02:00
124460    37419    601    2017-09-30 17:07:00    2017-09-30 17:07:00
124461    37419    707    2017-09-30 16:26:00    2017-09-30 16:26:00
124462    37419    954    2017-09-30 01:47:00    2017-09-30 01:47:00
124463    37419    907    2017-09-30 23:18:00    2017-09-30 23:18:00
124464    37419    754    2017-09-30 10:43:00    2017-09-30 10:43:00
124465    37420    904    2017-09-30 13:36:00    2017-09-30 13:36:00
124466    37420    689    2017-09-30 20:09:00    2017-09-30 20:09:00
124467    37420    507    2017-09-30 02:08:00    2017-09-30 02:08:00
124468    37420    585    2017-09-30 16:45:00    2017-09-30 16:45:00
124469    37420    669    2017-09-30 15:09:00    2017-09-30 15:09:00
124470    37421    766    2017-09-30 06:00:00    2017-09-30 06:00:00
124471    37421    567    2017-09-30 05:35:00    2017-09-30 05:35:00
124472    37421    582    2017-09-30 14:24:00    2017-09-30 14:24:00
124473    37421    499    2017-09-30 09:33:00    2017-09-30 09:33:00
124474    37421    644    2017-09-30 08:08:00    2017-09-30 08:08:00
124475    37422    873    2017-09-30 13:52:00    2017-09-30 13:52:00
124476    37422    623    2017-09-30 12:56:00    2017-09-30 12:56:00
124477    37422    616    2017-09-30 23:45:00    2017-09-30 23:45:00
124478    37422    825    2017-09-30 15:15:00    2017-09-30 15:15:00
124479    37422    873    2017-09-30 10:27:00    2017-09-30 10:27:00
124480    37423    765    2017-09-30 21:19:00    2017-09-30 21:19:00
124481    37423    894    2017-09-30 16:41:00    2017-09-30 16:41:00
124482    37423    776    2017-09-30 06:07:00    2017-09-30 06:07:00
124483    37423    716    2017-09-30 04:44:00    2017-09-30 04:44:00
124484    37423    863    2017-09-30 02:41:00    2017-09-30 02:41:00
124485    37424    603    2017-09-30 14:19:00    2017-09-30 14:19:00
124486    37424    564    2017-09-30 07:45:00    2017-09-30 07:45:00
124487    37424    907    2017-09-30 15:50:00    2017-09-30 15:50:00
124488    37424    628    2017-09-30 02:24:00    2017-09-30 02:24:00
124489    37424    932    2017-09-30 23:58:00    2017-09-30 23:58:00
124490    37425    474    2017-09-30 14:50:00    2017-09-30 14:50:00
124491    37425    874    2017-09-30 16:53:00    2017-09-30 16:53:00
124492    37425    905    2017-09-30 13:35:00    2017-09-30 13:35:00
124493    37425    762    2017-09-30 13:02:00    2017-09-30 13:02:00
124494    37425    662    2017-09-30 23:00:00    2017-09-30 23:00:00
124495    37426    499    2017-09-30 14:25:00    2017-09-30 14:25:00
124496    37426    577    2017-09-30 23:02:00    2017-09-30 23:02:00
124497    37426    750    2017-09-30 01:23:00    2017-09-30 01:23:00
124498    37426    961    2017-09-30 15:52:00    2017-09-30 15:52:00
124499    37426    612    2017-09-30 12:23:00    2017-09-30 12:23:00
124500    37427    702    2017-09-30 06:45:00    2017-09-30 06:45:00
124501    37427    487    2017-09-30 03:48:00    2017-09-30 03:48:00
124502    37427    584    2017-09-30 19:27:00    2017-09-30 19:27:00
124503    37427    563    2017-09-30 08:01:00    2017-09-30 08:01:00
124504    37427    768    2017-09-30 05:16:00    2017-09-30 05:16:00
124505    37428    818    2017-09-30 23:00:00    2017-09-30 23:00:00
124506    37428    509    2017-09-30 01:01:00    2017-09-30 01:01:00
124507    37428    544    2017-09-30 01:45:00    2017-09-30 01:45:00
124508    37428    528    2017-09-30 15:30:00    2017-09-30 15:30:00
124509    37428    510    2017-09-30 20:21:00    2017-09-30 20:21:00
124510    37429    596    2017-09-30 01:14:00    2017-09-30 01:14:00
124511    37429    586    2017-09-30 11:57:00    2017-09-30 11:57:00
124512    37429    610    2017-09-30 19:24:00    2017-09-30 19:24:00
124513    37429    553    2017-09-30 14:43:00    2017-09-30 14:43:00
124514    37429    476    2017-09-30 13:16:00    2017-09-30 13:16:00
124515    37430    945    2017-09-30 10:00:00    2017-09-30 10:00:00
124516    37430    476    2017-09-30 18:22:00    2017-09-30 18:22:00
124517    37430    563    2017-09-30 05:03:00    2017-09-30 05:03:00
124518    37430    693    2017-09-30 16:16:00    2017-09-30 16:16:00
124519    37430    634    2017-09-30 07:48:00    2017-09-30 07:48:00
124520    37431    803    2017-09-30 04:02:00    2017-09-30 04:02:00
124521    37431    526    2017-09-30 02:00:00    2017-09-30 02:00:00
124522    37431    852    2017-09-30 15:47:00    2017-09-30 15:47:00
124523    37431    730    2017-09-30 14:16:00    2017-09-30 14:16:00
124524    37431    885    2017-09-30 09:11:00    2017-09-30 09:11:00
124525    37432    669    2017-09-30 06:05:00    2017-09-30 06:05:00
124526    37432    563    2017-09-30 12:08:00    2017-09-30 12:08:00
124527    37432    926    2017-09-30 06:54:00    2017-09-30 06:54:00
124528    37432    798    2017-09-30 03:20:00    2017-09-30 03:20:00
124529    37432    899    2017-09-30 11:56:00    2017-09-30 11:56:00
124530    37433    744    2017-09-30 17:05:00    2017-09-30 17:05:00
124531    37433    860    2017-09-30 05:00:00    2017-09-30 05:00:00
124532    37433    894    2017-09-30 06:06:00    2017-09-30 06:06:00
124533    37433    536    2017-09-30 12:28:00    2017-09-30 12:28:00
124534    37433    675    2017-09-30 22:09:00    2017-09-30 22:09:00
124535    37434    851    2017-09-30 13:59:00    2017-09-30 13:59:00
124536    37434    542    2017-09-30 02:00:00    2017-09-30 02:00:00
124537    37434    915    2017-10-01 00:00:00    2017-10-01 00:00:00
124538    37434    492    2017-09-30 18:50:00    2017-09-30 18:50:00
124539    37434    512    2017-09-30 08:01:00    2017-09-30 08:01:00
124540    37435    596    2017-09-30 03:38:00    2017-09-30 03:38:00
124541    37435    881    2017-09-30 14:15:00    2017-09-30 14:15:00
124542    37435    749    2017-09-30 02:20:00    2017-09-30 02:20:00
124543    37435    510    2017-09-30 12:09:00    2017-09-30 12:09:00
124544    37435    878    2017-09-30 15:04:00    2017-09-30 15:04:00
124545    37436    807    2017-09-30 21:04:00    2017-09-30 21:04:00
124546    37436    872    2017-09-30 05:52:00    2017-09-30 05:52:00
124547    37436    960    2017-09-30 21:30:00    2017-09-30 21:30:00
124548    37436    619    2017-09-30 16:06:00    2017-09-30 16:06:00
124549    37436    857    2017-09-30 18:54:00    2017-09-30 18:54:00
124550    37437    643    2017-09-30 15:01:00    2017-09-30 15:01:00
124551    37437    818    2017-09-30 03:15:00    2017-09-30 03:15:00
124552    37437    812    2017-09-30 07:11:00    2017-09-30 07:11:00
124553    37437    477    2017-09-30 07:29:00    2017-09-30 07:29:00
124554    37437    611    2017-09-30 22:50:00    2017-09-30 22:50:00
124555    37438    655    2017-09-30 01:14:00    2017-09-30 01:14:00
124556    37438    768    2017-09-30 04:03:00    2017-09-30 04:03:00
124557    37438    935    2017-09-30 09:44:00    2017-09-30 09:44:00
124558    37438    893    2017-09-30 08:32:00    2017-09-30 08:32:00
124559    37438    762    2017-09-30 12:57:00    2017-09-30 12:57:00
124560    37439    684    2017-09-30 06:28:00    2017-09-30 06:28:00
124561    37439    635    2017-09-30 15:33:00    2017-09-30 15:33:00
124562    37439    867    2017-09-30 02:28:00    2017-09-30 02:28:00
124563    37439    835    2017-09-30 18:41:00    2017-09-30 18:41:00
124564    37439    862    2017-09-30 11:47:00    2017-09-30 11:47:00
124565    37440    848    2017-09-30 07:21:00    2017-09-30 07:21:00
124566    37440    644    2017-09-30 06:34:00    2017-09-30 06:34:00
124567    37440    752    2017-09-30 18:04:00    2017-09-30 18:04:00
124568    37440    641    2017-09-30 06:48:00    2017-09-30 06:48:00
124569    37440    850    2017-09-30 23:18:00    2017-09-30 23:18:00
124570    37441    849    2017-09-30 23:12:00    2017-09-30 23:12:00
124571    37441    736    2017-09-30 10:57:00    2017-09-30 10:57:00
124572    37441    496    2017-09-30 12:46:00    2017-09-30 12:46:00
124573    37441    485    2017-09-30 14:09:00    2017-09-30 14:09:00
124574    37441    754    2017-09-30 14:44:00    2017-09-30 14:44:00
124575    37442    793    2017-10-01 20:35:00    2017-10-01 20:35:00
124576    37442    731    2017-10-01 12:06:00    2017-10-01 12:06:00
124577    37442    752    2017-10-01 22:49:00    2017-10-01 22:49:00
124578    37442    792    2017-10-01 20:15:00    2017-10-01 20:15:00
124579    37442    594    2017-10-01 11:52:00    2017-10-01 11:52:00
124580    37443    944    2017-10-01 14:21:00    2017-10-01 14:21:00
124581    37443    881    2017-10-01 04:16:00    2017-10-01 04:16:00
124582    37443    670    2017-10-01 05:11:00    2017-10-01 05:11:00
124583    37443    489    2017-10-01 14:16:00    2017-10-01 14:16:00
124584    37443    479    2017-10-01 08:38:00    2017-10-01 08:38:00
124585    37444    936    2017-10-01 15:21:00    2017-10-01 15:21:00
124586    37444    707    2017-10-01 11:55:00    2017-10-01 11:55:00
124587    37444    907    2017-10-01 12:29:00    2017-10-01 12:29:00
124588    37444    735    2017-10-01 10:54:00    2017-10-01 10:54:00
124589    37444    933    2017-10-01 13:42:00    2017-10-01 13:42:00
124590    37445    648    2017-10-01 11:30:00    2017-10-01 11:30:00
124591    37445    745    2017-10-01 12:34:00    2017-10-01 12:34:00
124592    37445    893    2017-10-01 12:32:00    2017-10-01 12:32:00
124593    37445    755    2017-10-01 13:35:00    2017-10-01 13:35:00
124594    37445    809    2017-10-01 23:06:00    2017-10-01 23:06:00
124595    37446    643    2017-10-01 10:17:00    2017-10-01 10:17:00
124596    37446    939    2017-10-01 21:43:00    2017-10-01 21:43:00
124597    37446    493    2017-10-01 17:38:00    2017-10-01 17:38:00
124598    37446    882    2017-10-01 06:09:00    2017-10-01 06:09:00
124599    37446    548    2017-10-01 01:53:00    2017-10-01 01:53:00
124600    37447    570    2017-10-01 01:27:00    2017-10-01 01:27:00
124601    37447    493    2017-10-01 19:49:00    2017-10-01 19:49:00
124602    37447    631    2017-10-01 09:01:00    2017-10-01 09:01:00
124603    37447    957    2017-10-01 16:07:00    2017-10-01 16:07:00
124604    37447    898    2017-10-01 09:50:00    2017-10-01 09:50:00
124605    37448    653    2017-10-01 09:49:00    2017-10-01 09:49:00
124606    37448    585    2017-10-01 23:33:00    2017-10-01 23:33:00
124607    37448    778    2017-10-01 09:13:00    2017-10-01 09:13:00
124608    37448    761    2017-10-01 11:46:00    2017-10-01 11:46:00
124609    37448    706    2017-10-01 18:47:00    2017-10-01 18:47:00
124610    37449    543    2017-10-01 19:33:00    2017-10-01 19:33:00
124611    37449    691    2017-10-01 10:59:00    2017-10-01 10:59:00
124612    37449    797    2017-10-01 05:00:00    2017-10-01 05:00:00
124613    37449    639    2017-10-01 15:11:00    2017-10-01 15:11:00
124614    37449    634    2017-10-01 14:40:00    2017-10-01 14:40:00
124615    37450    617    2017-10-01 04:35:00    2017-10-01 04:35:00
124616    37450    518    2017-10-01 01:07:00    2017-10-01 01:07:00
124617    37450    720    2017-10-01 10:57:00    2017-10-01 10:57:00
124618    37450    837    2017-10-01 05:08:00    2017-10-01 05:08:00
124619    37450    565    2017-10-01 15:43:00    2017-10-01 15:43:00
124620    37451    796    2017-10-01 02:33:00    2017-10-01 02:33:00
124621    37451    768    2017-10-01 19:24:00    2017-10-01 19:24:00
124622    37451    756    2017-10-01 14:30:00    2017-10-01 14:30:00
124623    37451    509    2017-10-01 22:41:00    2017-10-01 22:41:00
124624    37451    790    2017-10-01 14:45:00    2017-10-01 14:45:00
124625    37452    813    2017-10-01 16:59:00    2017-10-01 16:59:00
124626    37452    768    2017-10-01 15:32:00    2017-10-01 15:32:00
124627    37452    542    2017-10-01 12:41:00    2017-10-01 12:41:00
124628    37452    700    2017-10-01 12:12:00    2017-10-01 12:12:00
124629    37452    540    2017-10-01 20:36:00    2017-10-01 20:36:00
124630    37453    949    2017-10-01 09:42:00    2017-10-01 09:42:00
124631    37453    695    2017-10-01 23:45:00    2017-10-01 23:45:00
124632    37453    684    2017-10-01 10:45:00    2017-10-01 10:45:00
124633    37453    893    2017-10-01 19:12:00    2017-10-01 19:12:00
124634    37453    560    2017-10-01 17:11:00    2017-10-01 17:11:00
124635    37454    733    2017-10-01 06:26:00    2017-10-01 06:26:00
124636    37454    841    2017-10-01 06:34:00    2017-10-01 06:34:00
124637    37454    589    2017-10-01 11:41:00    2017-10-01 11:41:00
124638    37454    729    2017-10-01 07:19:00    2017-10-01 07:19:00
124639    37454    925    2017-10-01 12:35:00    2017-10-01 12:35:00
124640    37455    777    2017-10-01 13:41:00    2017-10-01 13:41:00
124641    37455    495    2017-10-01 06:05:00    2017-10-01 06:05:00
124642    37455    561    2017-10-01 17:41:00    2017-10-01 17:41:00
124643    37455    837    2017-10-01 22:52:00    2017-10-01 22:52:00
124644    37455    615    2017-10-01 07:19:00    2017-10-01 07:19:00
124645    37456    860    2017-10-01 14:49:00    2017-10-01 14:49:00
124646    37456    759    2017-10-01 12:40:00    2017-10-01 12:40:00
124647    37456    907    2017-10-01 23:40:00    2017-10-01 23:40:00
124648    37456    934    2017-10-01 07:14:00    2017-10-01 07:14:00
124649    37456    655    2017-10-01 16:39:00    2017-10-01 16:39:00
124650    37457    893    2017-10-01 22:26:00    2017-10-01 22:26:00
124651    37457    801    2017-10-01 18:56:00    2017-10-01 18:56:00
124652    37457    854    2017-10-01 12:15:00    2017-10-01 12:15:00
124653    37457    718    2017-10-01 20:43:00    2017-10-01 20:43:00
124654    37457    748    2017-10-01 09:13:00    2017-10-01 09:13:00
124655    37458    675    2017-10-01 01:48:00    2017-10-01 01:48:00
124656    37458    857    2017-10-01 18:16:00    2017-10-01 18:16:00
124657    37458    766    2017-10-01 02:08:00    2017-10-01 02:08:00
124658    37458    860    2017-10-01 17:25:00    2017-10-01 17:25:00
124659    37458    482    2017-10-01 15:28:00    2017-10-01 15:28:00
124660    37459    735    2017-10-01 14:55:00    2017-10-01 14:55:00
124661    37459    711    2017-10-01 20:35:00    2017-10-01 20:35:00
124662    37459    903    2017-10-01 09:14:00    2017-10-01 09:14:00
124663    37459    477    2017-10-01 04:44:00    2017-10-01 04:44:00
124664    37459    830    2017-10-01 08:28:00    2017-10-01 08:28:00
124665    37460    954    2017-10-01 04:35:00    2017-10-01 04:35:00
124666    37460    662    2017-10-01 14:05:00    2017-10-01 14:05:00
124667    37460    499    2017-10-01 15:08:00    2017-10-01 15:08:00
124668    37460    895    2017-10-01 23:24:00    2017-10-01 23:24:00
124669    37460    834    2017-10-01 14:20:00    2017-10-01 14:20:00
124670    37461    802    2017-10-01 11:38:00    2017-10-01 11:38:00
124671    37461    903    2017-10-01 06:22:00    2017-10-01 06:22:00
124672    37461    766    2017-10-01 14:20:00    2017-10-01 14:20:00
124673    37461    803    2017-10-01 20:49:00    2017-10-01 20:49:00
124674    37461    590    2017-10-01 01:37:00    2017-10-01 01:37:00
124675    37462    781    2017-10-01 04:35:00    2017-10-01 04:35:00
124676    37462    518    2017-10-01 08:08:00    2017-10-01 08:08:00
124677    37462    771    2017-10-01 02:34:00    2017-10-01 02:34:00
124678    37462    711    2017-10-01 19:26:00    2017-10-01 19:26:00
124679    37462    698    2017-10-01 01:46:00    2017-10-01 01:46:00
124680    37463    638    2017-10-01 08:19:00    2017-10-01 08:19:00
124681    37463    673    2017-10-01 15:10:00    2017-10-01 15:10:00
124682    37463    938    2017-10-01 03:37:00    2017-10-01 03:37:00
124683    37463    570    2017-10-01 16:25:00    2017-10-01 16:25:00
124684    37463    650    2017-10-01 11:37:00    2017-10-01 11:37:00
124685    37464    519    2017-10-01 23:57:00    2017-10-01 23:57:00
124686    37464    771    2017-10-01 14:11:00    2017-10-01 14:11:00
124687    37464    643    2017-10-01 15:31:00    2017-10-01 15:31:00
124688    37464    685    2017-10-01 01:27:00    2017-10-01 01:27:00
124689    37464    688    2017-10-01 10:07:00    2017-10-01 10:07:00
124690    37465    938    2017-10-01 21:56:00    2017-10-01 21:56:00
124691    37465    492    2017-10-01 13:54:00    2017-10-01 13:54:00
124692    37465    718    2017-10-01 13:38:00    2017-10-01 13:38:00
124693    37465    749    2017-10-01 12:24:00    2017-10-01 12:24:00
124694    37465    519    2017-10-01 17:25:00    2017-10-01 17:25:00
124695    37466    600    2017-10-01 19:10:00    2017-10-01 19:10:00
124696    37466    889    2017-10-01 08:57:00    2017-10-01 08:57:00
124697    37466    853    2017-10-01 06:01:00    2017-10-01 06:01:00
124698    37466    588    2017-10-01 11:22:00    2017-10-01 11:22:00
124699    37466    557    2017-10-01 18:11:00    2017-10-01 18:11:00
124700    37467    686    2017-10-01 09:24:00    2017-10-01 09:24:00
124701    37467    923    2017-10-01 23:35:00    2017-10-01 23:35:00
124702    37467    676    2017-10-01 17:24:00    2017-10-01 17:24:00
124703    37467    950    2017-10-01 05:56:00    2017-10-01 05:56:00
124704    37467    794    2017-10-01 09:50:00    2017-10-01 09:50:00
124705    37468    547    2017-10-01 03:52:00    2017-10-01 03:52:00
124706    37468    817    2017-10-01 19:43:00    2017-10-01 19:43:00
124707    37468    901    2017-10-01 13:58:00    2017-10-01 13:58:00
124708    37468    542    2017-10-01 16:51:00    2017-10-01 16:51:00
124709    37468    466    2017-10-01 06:31:00    2017-10-01 06:31:00
124710    37469    854    2017-10-01 13:10:00    2017-10-01 13:10:00
124711    37469    718    2017-10-01 17:53:00    2017-10-01 17:53:00
124712    37469    521    2017-10-01 05:34:00    2017-10-01 05:34:00
124713    37469    483    2017-10-01 22:11:00    2017-10-01 22:11:00
124714    37469    636    2017-10-01 05:01:00    2017-10-01 05:01:00
124715    37470    468    2017-10-01 23:50:00    2017-10-01 23:50:00
124716    37470    756    2017-10-01 09:00:00    2017-10-01 09:00:00
124717    37470    727    2017-10-01 23:01:00    2017-10-01 23:01:00
124718    37470    949    2017-10-01 02:39:00    2017-10-01 02:39:00
124719    37470    853    2017-10-01 05:43:00    2017-10-01 05:43:00
124720    37471    952    2017-10-01 23:22:00    2017-10-01 23:22:00
124721    37471    824    2017-10-01 19:41:00    2017-10-01 19:41:00
124722    37471    639    2017-10-01 09:40:00    2017-10-01 09:40:00
124723    37471    554    2017-10-01 04:19:00    2017-10-01 04:19:00
124724    37471    888    2017-10-01 13:38:00    2017-10-01 13:38:00
124725    37472    872    2017-10-01 09:33:00    2017-10-01 09:33:00
124726    37472    524    2017-10-01 17:01:00    2017-10-01 17:01:00
124727    37472    545    2017-10-01 04:55:00    2017-10-01 04:55:00
124728    37472    873    2017-10-01 14:16:00    2017-10-01 14:16:00
124729    37472    914    2017-10-01 22:36:00    2017-10-01 22:36:00
124730    37473    524    2017-10-01 07:00:00    2017-10-01 07:00:00
124731    37473    684    2017-10-01 18:25:00    2017-10-01 18:25:00
124732    37473    794    2017-10-01 16:13:00    2017-10-01 16:13:00
124733    37473    599    2017-10-01 01:51:00    2017-10-01 01:51:00
124734    37473    589    2017-10-01 04:42:00    2017-10-01 04:42:00
124735    37474    661    2017-10-01 09:54:00    2017-10-01 09:54:00
124736    37474    721    2017-10-01 13:54:00    2017-10-01 13:54:00
124737    37474    505    2017-10-01 22:57:00    2017-10-01 22:57:00
124738    37474    850    2017-10-01 04:01:00    2017-10-01 04:01:00
124739    37474    676    2017-10-01 09:38:00    2017-10-01 09:38:00
124740    37475    532    2017-10-01 20:06:00    2017-10-01 20:06:00
124741    37475    479    2017-10-01 01:14:00    2017-10-01 01:14:00
124742    37475    468    2017-10-01 06:01:00    2017-10-01 06:01:00
124743    37475    854    2017-10-01 08:14:00    2017-10-01 08:14:00
124744    37475    504    2017-10-01 15:51:00    2017-10-01 15:51:00
124745    37476    746    2017-10-01 10:52:00    2017-10-01 10:52:00
124746    37476    712    2017-10-01 20:59:00    2017-10-01 20:59:00
124747    37476    601    2017-10-01 21:50:00    2017-10-01 21:50:00
124748    37476    804    2017-10-01 01:52:00    2017-10-01 01:52:00
124749    37476    703    2017-10-01 05:09:00    2017-10-01 05:09:00
124750    37477    769    2017-10-01 16:06:00    2017-10-01 16:06:00
124751    37477    740    2017-10-01 19:32:00    2017-10-01 19:32:00
124752    37477    652    2017-10-01 03:20:00    2017-10-01 03:20:00
124753    37477    608    2017-10-01 02:39:00    2017-10-01 02:39:00
124754    37477    690    2017-10-01 23:24:00    2017-10-01 23:24:00
124755    37478    708    2017-10-01 05:36:00    2017-10-01 05:36:00
124756    37478    928    2017-10-01 20:02:00    2017-10-01 20:02:00
124757    37478    859    2017-10-01 14:10:00    2017-10-01 14:10:00
124758    37478    511    2017-10-01 20:21:00    2017-10-01 20:21:00
124759    37478    791    2017-10-01 10:27:00    2017-10-01 10:27:00
124760    37479    621    2017-10-01 03:11:00    2017-10-01 03:11:00
124761    37479    526    2017-10-01 19:05:00    2017-10-01 19:05:00
124762    37479    837    2017-10-01 06:43:00    2017-10-01 06:43:00
124763    37479    696    2017-10-01 01:46:00    2017-10-01 01:46:00
124764    37479    557    2017-10-01 22:09:00    2017-10-01 22:09:00
124765    37480    539    2017-10-01 21:56:00    2017-10-01 21:56:00
124766    37480    497    2017-10-01 18:58:00    2017-10-01 18:58:00
124767    37480    903    2017-10-01 15:08:00    2017-10-01 15:08:00
124768    37480    677    2017-10-01 20:40:00    2017-10-01 20:40:00
124769    37480    485    2017-10-01 12:13:00    2017-10-01 12:13:00
124770    37481    718    2017-10-01 07:50:00    2017-10-01 07:50:00
124771    37481    562    2017-10-01 23:32:00    2017-10-01 23:32:00
124772    37481    891    2017-10-01 23:02:00    2017-10-01 23:02:00
124773    37481    558    2017-10-01 16:49:00    2017-10-01 16:49:00
124774    37481    856    2017-10-01 20:10:00    2017-10-01 20:10:00
124775    37482    589    2017-10-01 11:11:00    2017-10-01 11:11:00
124776    37482    552    2017-10-01 21:01:00    2017-10-01 21:01:00
124777    37482    762    2017-10-01 22:17:00    2017-10-01 22:17:00
124778    37482    632    2017-10-01 13:45:00    2017-10-01 13:45:00
124779    37482    581    2017-10-01 23:28:00    2017-10-01 23:28:00
124780    37483    651    2017-10-01 17:13:00    2017-10-01 17:13:00
124781    37483    813    2017-10-01 12:48:00    2017-10-01 12:48:00
124782    37483    902    2017-10-01 02:33:00    2017-10-01 02:33:00
124783    37483    825    2017-10-01 04:13:00    2017-10-01 04:13:00
124784    37483    889    2017-10-01 04:51:00    2017-10-01 04:51:00
124785    37484    547    2017-10-01 08:38:00    2017-10-01 08:38:00
124786    37484    662    2017-10-01 11:13:00    2017-10-01 11:13:00
124787    37484    765    2017-10-01 01:34:00    2017-10-01 01:34:00
124788    37484    563    2017-10-01 02:39:00    2017-10-01 02:39:00
124789    37484    555    2017-10-01 01:20:00    2017-10-01 01:20:00
124790    37485    617    2017-10-01 21:46:00    2017-10-01 21:46:00
124791    37485    636    2017-10-01 14:50:00    2017-10-01 14:50:00
124792    37485    519    2017-10-01 22:58:00    2017-10-01 22:58:00
124793    37485    592    2017-10-01 18:27:00    2017-10-01 18:27:00
124794    37485    492    2017-10-01 01:03:00    2017-10-01 01:03:00
124795    37486    551    2017-10-01 17:02:00    2017-10-01 17:02:00
124796    37486    487    2017-10-01 15:07:00    2017-10-01 15:07:00
124797    37486    916    2017-10-01 09:01:00    2017-10-01 09:01:00
124798    37486    533    2017-10-01 06:45:00    2017-10-01 06:45:00
124799    37486    542    2017-10-01 06:45:00    2017-10-01 06:45:00
124800    37487    716    2017-10-01 21:07:00    2017-10-01 21:07:00
124801    37487    831    2017-10-01 16:06:00    2017-10-01 16:06:00
124802    37487    644    2017-10-01 15:04:00    2017-10-01 15:04:00
124803    37487    469    2017-10-01 23:10:00    2017-10-01 23:10:00
124804    37487    524    2017-10-01 22:45:00    2017-10-01 22:45:00
124805    37488    845    2017-10-01 20:26:00    2017-10-01 20:26:00
124806    37488    779    2017-10-01 17:24:00    2017-10-01 17:24:00
124807    37488    594    2017-10-01 21:10:00    2017-10-01 21:10:00
124808    37488    657    2017-10-01 21:06:00    2017-10-01 21:06:00
124809    37488    657    2017-10-01 06:49:00    2017-10-01 06:49:00
124810    37489    617    2017-10-01 18:09:00    2017-10-01 18:09:00
124811    37489    774    2017-10-01 12:48:00    2017-10-01 12:48:00
124812    37489    674    2017-10-01 18:30:00    2017-10-01 18:30:00
124813    37489    744    2017-10-01 15:29:00    2017-10-01 15:29:00
124814    37489    674    2017-10-01 20:47:00    2017-10-01 20:47:00
124815    37490    762    2017-10-01 17:11:00    2017-10-01 17:11:00
124816    37490    755    2017-10-01 01:37:00    2017-10-01 01:37:00
124817    37490    762    2017-10-01 01:29:00    2017-10-01 01:29:00
124818    37490    529    2017-10-01 05:29:00    2017-10-01 05:29:00
124819    37490    568    2017-10-01 12:34:00    2017-10-01 12:34:00
124820    37491    888    2017-10-01 17:26:00    2017-10-01 17:26:00
124821    37491    508    2017-10-01 07:12:00    2017-10-01 07:12:00
124822    37491    493    2017-10-01 15:21:00    2017-10-01 15:21:00
124823    37491    812    2017-10-01 23:16:00    2017-10-01 23:16:00
124824    37491    691    2017-10-01 06:00:00    2017-10-01 06:00:00
124825    37492    753    2017-10-01 22:02:00    2017-10-01 22:02:00
124826    37492    870    2017-10-01 20:29:00    2017-10-01 20:29:00
124827    37492    652    2017-10-01 19:09:00    2017-10-01 19:09:00
124828    37492    838    2017-10-01 19:46:00    2017-10-01 19:46:00
124829    37492    577    2017-10-01 08:05:00    2017-10-01 08:05:00
124830    37493    623    2017-10-01 03:36:00    2017-10-01 03:36:00
124831    37493    676    2017-10-01 04:48:00    2017-10-01 04:48:00
124832    37493    573    2017-10-01 22:56:00    2017-10-01 22:56:00
124833    37493    917    2017-10-01 10:32:00    2017-10-01 10:32:00
124834    37493    515    2017-10-01 04:13:00    2017-10-01 04:13:00
124835    37494    723    2017-10-01 03:45:00    2017-10-01 03:45:00
124836    37494    849    2017-10-01 06:34:00    2017-10-01 06:34:00
124837    37494    751    2017-10-01 04:49:00    2017-10-01 04:49:00
124838    37494    623    2017-10-01 01:21:00    2017-10-01 01:21:00
124839    37494    666    2017-10-01 11:49:00    2017-10-01 11:49:00
124840    37495    739    2017-10-01 11:55:00    2017-10-01 11:55:00
124841    37495    952    2017-10-01 10:49:00    2017-10-01 10:49:00
124842    37495    889    2017-10-01 23:36:00    2017-10-01 23:36:00
124843    37495    845    2017-10-01 01:25:00    2017-10-01 01:25:00
124844    37495    906    2017-10-01 21:45:00    2017-10-01 21:45:00
124845    37496    933    2017-10-01 13:28:00    2017-10-01 13:28:00
124846    37496    862    2017-10-01 20:48:00    2017-10-01 20:48:00
124847    37496    520    2017-10-01 03:47:00    2017-10-01 03:47:00
124848    37496    541    2017-10-01 07:54:00    2017-10-01 07:54:00
124849    37496    600    2017-10-01 04:46:00    2017-10-01 04:46:00
124850    37497    508    2017-10-01 16:20:00    2017-10-01 16:20:00
124851    37497    917    2017-10-01 19:37:00    2017-10-01 19:37:00
124852    37497    629    2017-10-01 16:42:00    2017-10-01 16:42:00
124853    37497    703    2017-10-01 08:18:00    2017-10-01 08:18:00
124854    37497    824    2017-10-01 09:31:00    2017-10-01 09:31:00
124855    37498    760    2017-10-01 14:11:00    2017-10-01 14:11:00
124856    37498    538    2017-10-01 03:37:00    2017-10-01 03:37:00
124857    37498    776    2017-10-01 11:02:00    2017-10-01 11:02:00
124858    37498    697    2017-10-01 19:46:00    2017-10-01 19:46:00
124859    37498    840    2017-10-01 12:58:00    2017-10-01 12:58:00
124860    37499    759    2017-10-01 10:30:00    2017-10-01 10:30:00
124861    37499    953    2017-10-01 19:51:00    2017-10-01 19:51:00
124862    37499    664    2017-10-01 14:20:00    2017-10-01 14:20:00
124863    37499    737    2017-10-01 01:01:00    2017-10-01 01:01:00
124864    37499    630    2017-10-01 17:18:00    2017-10-01 17:18:00
124865    37500    914    2017-10-01 15:11:00    2017-10-01 15:11:00
124866    37500    783    2017-10-01 04:03:00    2017-10-01 04:03:00
124867    37500    491    2017-10-01 03:57:00    2017-10-01 03:57:00
124868    37500    702    2017-10-01 02:00:00    2017-10-01 02:00:00
124869    37500    647    2017-10-01 19:08:00    2017-10-01 19:08:00
124870    37501    849    2017-10-01 09:58:00    2017-10-01 09:58:00
124871    37501    537    2017-10-01 19:25:00    2017-10-01 19:25:00
124872    37501    748    2017-10-01 21:29:00    2017-10-01 21:29:00
124873    37501    521    2017-10-01 15:34:00    2017-10-01 15:34:00
124874    37501    824    2017-10-01 18:49:00    2017-10-01 18:49:00
124875    37502    855    2017-10-01 17:21:00    2017-10-01 17:21:00
124876    37502    810    2017-10-01 01:58:00    2017-10-01 01:58:00
124877    37502    632    2017-10-01 14:57:00    2017-10-01 14:57:00
124878    37502    551    2017-10-01 02:56:00    2017-10-01 02:56:00
124879    37502    536    2017-10-01 11:05:00    2017-10-01 11:05:00
124880    37503    682    2017-10-01 17:45:00    2017-10-01 17:45:00
124881    37503    661    2017-10-01 12:19:00    2017-10-01 12:19:00
124882    37503    564    2017-10-01 05:56:00    2017-10-01 05:56:00
124883    37503    786    2017-10-01 13:25:00    2017-10-01 13:25:00
124884    37503    624    2017-10-01 21:39:00    2017-10-01 21:39:00
124885    37504    815    2017-10-01 23:39:00    2017-10-01 23:39:00
124886    37504    747    2017-10-01 10:21:00    2017-10-01 10:21:00
124887    37504    610    2017-10-01 09:40:00    2017-10-01 09:40:00
124888    37504    645    2017-10-01 05:02:00    2017-10-01 05:02:00
124889    37504    793    2017-10-01 18:14:00    2017-10-01 18:14:00
124890    37505    575    2017-10-01 07:08:00    2017-10-01 07:08:00
124891    37505    786    2017-10-01 19:14:00    2017-10-01 19:14:00
124892    37505    590    2017-10-01 08:45:00    2017-10-01 08:45:00
124893    37505    518    2017-10-01 21:13:00    2017-10-01 21:13:00
124894    37505    658    2017-10-01 13:47:00    2017-10-01 13:47:00
124895    37506    750    2017-10-01 12:11:00    2017-10-01 12:11:00
124896    37506    703    2017-10-01 10:30:00    2017-10-01 10:30:00
124897    37506    839    2017-10-01 15:19:00    2017-10-01 15:19:00
124898    37506    566    2017-10-01 10:49:00    2017-10-01 10:49:00
124899    37506    919    2017-10-01 16:36:00    2017-10-01 16:36:00
124900    37507    494    2017-10-01 21:52:00    2017-10-01 21:52:00
124901    37507    606    2017-10-01 17:10:00    2017-10-01 17:10:00
124902    37507    700    2017-10-01 13:04:00    2017-10-01 13:04:00
124903    37507    685    2017-10-01 08:50:00    2017-10-01 08:50:00
124904    37507    541    2017-10-01 09:00:00    2017-10-01 09:00:00
124905    37508    736    2017-10-01 23:49:00    2017-10-01 23:49:00
124906    37508    854    2017-10-01 15:09:00    2017-10-01 15:09:00
124907    37508    629    2017-10-01 02:21:00    2017-10-01 02:21:00
124908    37508    555    2017-10-01 05:15:00    2017-10-01 05:15:00
124909    37508    536    2017-10-01 12:22:00    2017-10-01 12:22:00
124910    37509    815    2017-10-01 16:19:00    2017-10-01 16:19:00
124911    37509    791    2017-10-01 01:19:00    2017-10-01 01:19:00
124912    37509    464    2017-10-01 02:15:00    2017-10-01 02:15:00
124913    37509    592    2017-10-01 04:32:00    2017-10-01 04:32:00
124914    37509    761    2017-10-01 15:06:00    2017-10-01 15:06:00
124915    37510    693    2017-10-01 04:13:00    2017-10-01 04:13:00
124916    37510    801    2017-10-01 06:31:00    2017-10-01 06:31:00
124917    37510    775    2017-10-01 17:44:00    2017-10-01 17:44:00
124918    37510    879    2017-10-01 10:08:00    2017-10-01 10:08:00
124919    37510    745    2017-10-01 04:39:00    2017-10-01 04:39:00
124920    37511    581    2017-10-01 04:57:00    2017-10-01 04:57:00
124921    37511    775    2017-10-01 18:51:00    2017-10-01 18:51:00
124922    37511    610    2017-10-01 08:29:00    2017-10-01 08:29:00
124923    37511    728    2017-10-01 01:10:00    2017-10-01 01:10:00
124924    37511    747    2017-10-01 11:30:00    2017-10-01 11:30:00
124925    37512    810    2017-10-02 12:22:00    2017-10-02 12:22:00
124926    37512    740    2017-10-02 09:03:00    2017-10-02 09:03:00
124927    37512    749    2017-10-02 01:15:00    2017-10-02 01:15:00
124928    37512    489    2017-10-02 12:52:00    2017-10-02 12:52:00
124929    37512    859    2017-10-02 05:03:00    2017-10-02 05:03:00
124930    37513    728    2017-10-02 09:48:00    2017-10-02 09:48:00
124931    37513    515    2017-10-02 21:13:00    2017-10-02 21:13:00
124932    37513    495    2017-10-02 03:25:00    2017-10-02 03:25:00
124933    37513    777    2017-10-02 21:41:00    2017-10-02 21:41:00
124934    37513    842    2017-10-02 22:42:00    2017-10-02 22:42:00
124935    37514    796    2017-10-02 01:53:00    2017-10-02 01:53:00
124936    37514    762    2017-10-02 07:56:00    2017-10-02 07:56:00
124937    37514    951    2017-10-02 22:08:00    2017-10-02 22:08:00
124938    37514    894    2017-10-02 09:28:00    2017-10-02 09:28:00
124939    37514    475    2017-10-02 17:22:00    2017-10-02 17:22:00
124940    37515    859    2017-10-02 11:43:00    2017-10-02 11:43:00
124941    37515    480    2017-10-02 14:00:00    2017-10-02 14:00:00
124942    37515    708    2017-10-02 10:05:00    2017-10-02 10:05:00
124943    37515    715    2017-10-02 12:05:00    2017-10-02 12:05:00
124944    37515    924    2017-10-02 07:18:00    2017-10-02 07:18:00
124945    37516    476    2017-10-02 13:37:00    2017-10-02 13:37:00
124946    37516    488    2017-10-02 10:26:00    2017-10-02 10:26:00
124947    37516    759    2017-10-02 05:22:00    2017-10-02 05:22:00
124948    37516    674    2017-10-02 08:17:00    2017-10-02 08:17:00
124949    37516    608    2017-10-02 22:53:00    2017-10-02 22:53:00
124950    37517    887    2017-10-02 09:45:00    2017-10-02 09:45:00
124951    37517    760    2017-10-02 11:06:00    2017-10-02 11:06:00
124952    37517    567    2017-10-02 23:46:00    2017-10-02 23:46:00
124953    37517    578    2017-10-02 08:44:00    2017-10-02 08:44:00
124954    37517    863    2017-10-02 02:27:00    2017-10-02 02:27:00
124955    37518    497    2017-10-02 08:40:00    2017-10-02 08:40:00
124956    37518    500    2017-10-02 01:19:00    2017-10-02 01:19:00
124957    37518    527    2017-10-02 07:07:00    2017-10-02 07:07:00
124958    37518    918    2017-10-02 22:19:00    2017-10-02 22:19:00
124959    37518    493    2017-10-02 18:13:00    2017-10-02 18:13:00
124960    37519    638    2017-10-02 01:49:00    2017-10-02 01:49:00
124961    37519    722    2017-10-02 11:53:00    2017-10-02 11:53:00
124962    37519    602    2017-10-02 12:32:00    2017-10-02 12:32:00
124963    37519    589    2017-10-02 07:47:00    2017-10-02 07:47:00
124964    37519    709    2017-10-02 16:50:00    2017-10-02 16:50:00
124965    37520    757    2017-10-02 02:47:00    2017-10-02 02:47:00
124966    37520    725    2017-10-02 07:33:00    2017-10-02 07:33:00
124967    37520    529    2017-10-02 14:19:00    2017-10-02 14:19:00
124968    37520    949    2017-10-02 16:16:00    2017-10-02 16:16:00
124969    37520    514    2017-10-02 04:29:00    2017-10-02 04:29:00
124970    37521    661    2017-10-02 05:38:00    2017-10-02 05:38:00
124971    37521    654    2017-10-02 23:45:00    2017-10-02 23:45:00
124972    37521    902    2017-10-02 08:04:00    2017-10-02 08:04:00
124973    37521    848    2017-10-02 07:44:00    2017-10-02 07:44:00
124974    37521    736    2017-10-02 13:56:00    2017-10-02 13:56:00
124975    37522    840    2017-10-02 02:06:00    2017-10-02 02:06:00
124976    37522    939    2017-10-02 20:32:00    2017-10-02 20:32:00
124977    37522    621    2017-10-02 22:34:00    2017-10-02 22:34:00
124978    37522    765    2017-10-02 10:42:00    2017-10-02 10:42:00
124979    37522    605    2017-10-02 17:28:00    2017-10-02 17:28:00
124980    37523    642    2017-10-02 19:48:00    2017-10-02 19:48:00
124981    37523    550    2017-10-02 09:41:00    2017-10-02 09:41:00
124982    37523    903    2017-10-02 04:59:00    2017-10-02 04:59:00
124983    37523    539    2017-10-02 02:58:00    2017-10-02 02:58:00
124984    37523    785    2017-10-02 06:26:00    2017-10-02 06:26:00
124985    37524    686    2017-10-02 05:15:00    2017-10-02 05:15:00
124986    37524    577    2017-10-02 08:21:00    2017-10-02 08:21:00
124987    37524    530    2017-10-02 22:54:00    2017-10-02 22:54:00
124988    37524    699    2017-10-02 19:21:00    2017-10-02 19:21:00
124989    37524    711    2017-10-02 17:14:00    2017-10-02 17:14:00
124990    37525    676    2017-10-02 13:00:00    2017-10-02 13:00:00
124991    37525    953    2017-10-02 13:38:00    2017-10-02 13:38:00
124992    37525    667    2017-10-02 09:24:00    2017-10-02 09:24:00
124993    37525    801    2017-10-02 01:26:00    2017-10-02 01:26:00
124994    37525    795    2017-10-02 11:06:00    2017-10-02 11:06:00
124995    37526    606    2017-10-02 21:02:00    2017-10-02 21:02:00
124996    37526    830    2017-10-02 16:35:00    2017-10-02 16:35:00
124997    37526    708    2017-10-02 18:11:00    2017-10-02 18:11:00
124998    37526    850    2017-10-02 05:59:00    2017-10-02 05:59:00
124999    37526    680    2017-10-02 08:21:00    2017-10-02 08:21:00
125000    37527    560    2017-10-02 13:11:00    2017-10-02 13:11:00
125001    37527    861    2017-10-02 18:24:00    2017-10-02 18:24:00
125002    37527    955    2017-10-02 20:40:00    2017-10-02 20:40:00
125003    37527    956    2017-10-02 15:13:00    2017-10-02 15:13:00
125004    37527    794    2017-10-02 01:44:00    2017-10-02 01:44:00
125005    37528    914    2017-10-02 14:03:00    2017-10-02 14:03:00
125006    37528    593    2017-10-02 18:40:00    2017-10-02 18:40:00
125007    37528    931    2017-10-02 07:38:00    2017-10-02 07:38:00
125008    37528    626    2017-10-02 02:42:00    2017-10-02 02:42:00
125009    37528    533    2017-10-02 16:28:00    2017-10-02 16:28:00
125010    37529    592    2017-10-02 15:59:00    2017-10-02 15:59:00
125011    37529    715    2017-10-02 18:18:00    2017-10-02 18:18:00
125012    37529    545    2017-10-02 03:47:00    2017-10-02 03:47:00
125013    37529    518    2017-10-02 11:13:00    2017-10-02 11:13:00
125014    37529    811    2017-10-02 01:09:00    2017-10-02 01:09:00
125015    37530    496    2017-10-02 07:28:00    2017-10-02 07:28:00
125016    37530    692    2017-10-02 14:25:00    2017-10-02 14:25:00
125017    37530    490    2017-10-02 20:00:00    2017-10-02 20:00:00
125018    37530    754    2017-10-02 23:51:00    2017-10-02 23:51:00
125019    37530    742    2017-10-02 17:53:00    2017-10-02 17:53:00
125020    37531    726    2017-10-02 23:32:00    2017-10-02 23:32:00
125021    37531    859    2017-10-02 12:31:00    2017-10-02 12:31:00
125022    37531    608    2017-10-02 02:06:00    2017-10-02 02:06:00
125023    37531    957    2017-10-02 08:58:00    2017-10-02 08:58:00
125024    37531    541    2017-10-02 17:31:00    2017-10-02 17:31:00
125025    37532    714    2017-10-02 15:36:00    2017-10-02 15:36:00
125026    37532    592    2017-10-02 04:02:00    2017-10-02 04:02:00
125027    37532    842    2017-10-02 16:26:00    2017-10-02 16:26:00
125028    37532    893    2017-10-02 19:25:00    2017-10-02 19:25:00
125029    37532    848    2017-10-02 20:41:00    2017-10-02 20:41:00
125030    37533    897    2017-10-02 07:49:00    2017-10-02 07:49:00
125031    37533    752    2017-10-02 10:52:00    2017-10-02 10:52:00
125032    37533    956    2017-10-02 15:21:00    2017-10-02 15:21:00
125033    37533    511    2017-10-02 12:13:00    2017-10-02 12:13:00
125034    37533    899    2017-10-02 23:06:00    2017-10-02 23:06:00
125035    37534    863    2017-10-02 11:56:00    2017-10-02 11:56:00
125036    37534    658    2017-10-02 05:36:00    2017-10-02 05:36:00
125037    37534    923    2017-10-02 10:37:00    2017-10-02 10:37:00
125038    37534    940    2017-10-02 18:29:00    2017-10-02 18:29:00
125039    37534    760    2017-10-02 04:55:00    2017-10-02 04:55:00
125040    37535    941    2017-10-02 22:41:00    2017-10-02 22:41:00
125041    37535    537    2017-10-02 22:48:00    2017-10-02 22:48:00
125042    37535    896    2017-10-02 14:58:00    2017-10-02 14:58:00
125043    37535    699    2017-10-02 23:34:00    2017-10-02 23:34:00
125044    37535    679    2017-10-02 03:25:00    2017-10-02 03:25:00
125045    37536    625    2017-10-02 10:51:00    2017-10-02 10:51:00
125046    37536    582    2017-10-02 19:52:00    2017-10-02 19:52:00
125047    37536    873    2017-10-02 05:27:00    2017-10-02 05:27:00
125048    37536    904    2017-10-02 03:51:00    2017-10-02 03:51:00
125049    37536    608    2017-10-02 23:43:00    2017-10-02 23:43:00
125050    37537    566    2017-10-02 22:04:00    2017-10-02 22:04:00
125051    37537    500    2017-10-02 21:00:00    2017-10-02 21:00:00
125052    37537    897    2017-10-02 17:20:00    2017-10-02 17:20:00
125053    37537    565    2017-10-02 08:05:00    2017-10-02 08:05:00
125054    37537    468    2017-10-02 21:45:00    2017-10-02 21:45:00
125055    37538    687    2017-10-02 07:36:00    2017-10-02 07:36:00
125056    37538    900    2017-10-02 18:44:00    2017-10-02 18:44:00
125057    37538    933    2017-10-02 19:01:00    2017-10-02 19:01:00
125058    37538    871    2017-10-02 15:16:00    2017-10-02 15:16:00
125059    37538    804    2017-10-02 16:51:00    2017-10-02 16:51:00
125060    37539    468    2017-10-02 16:02:00    2017-10-02 16:02:00
125061    37539    870    2017-10-02 18:33:00    2017-10-02 18:33:00
125062    37539    959    2017-10-02 14:27:00    2017-10-02 14:27:00
125063    37539    904    2017-10-02 05:42:00    2017-10-02 05:42:00
125064    37539    591    2017-10-02 20:00:00    2017-10-02 20:00:00
125065    37540    712    2017-10-02 22:10:00    2017-10-02 22:10:00
125066    37540    613    2017-10-02 21:55:00    2017-10-02 21:55:00
125067    37540    519    2017-10-02 18:52:00    2017-10-02 18:52:00
125068    37540    632    2017-10-02 14:45:00    2017-10-02 14:45:00
125069    37540    615    2017-10-02 15:26:00    2017-10-02 15:26:00
125070    37541    845    2017-10-02 23:22:00    2017-10-02 23:22:00
125071    37541    630    2017-10-02 08:52:00    2017-10-02 08:52:00
125072    37541    846    2017-10-02 02:45:00    2017-10-02 02:45:00
125073    37541    685    2017-10-02 11:41:00    2017-10-02 11:41:00
125074    37541    760    2017-10-02 05:20:00    2017-10-02 05:20:00
125075    37542    697    2017-10-02 17:09:00    2017-10-02 17:09:00
125076    37542    816    2017-10-02 03:11:00    2017-10-02 03:11:00
125077    37542    681    2017-10-02 08:20:00    2017-10-02 08:20:00
125078    37542    850    2017-10-02 09:16:00    2017-10-02 09:16:00
125079    37542    872    2017-10-02 11:04:00    2017-10-02 11:04:00
125080    37543    688    2017-10-02 16:00:00    2017-10-02 16:00:00
125081    37543    563    2017-10-02 03:23:00    2017-10-02 03:23:00
125082    37543    764    2017-10-02 14:29:00    2017-10-02 14:29:00
125083    37543    640    2017-10-02 10:24:00    2017-10-02 10:24:00
125084    37543    615    2017-10-02 06:03:00    2017-10-02 06:03:00
125085    37544    837    2017-10-02 20:30:00    2017-10-02 20:30:00
125086    37544    940    2017-10-02 18:01:00    2017-10-02 18:01:00
125087    37544    844    2017-10-02 05:12:00    2017-10-02 05:12:00
125088    37544    775    2017-10-02 21:28:00    2017-10-02 21:28:00
125089    37544    755    2017-10-02 17:17:00    2017-10-02 17:17:00
125090    37545    726    2017-10-02 20:16:00    2017-10-02 20:16:00
125091    37545    836    2017-10-02 02:50:00    2017-10-02 02:50:00
125092    37545    737    2017-10-02 08:02:00    2017-10-02 08:02:00
125093    37545    877    2017-10-02 03:44:00    2017-10-02 03:44:00
125094    37545    938    2017-10-02 13:59:00    2017-10-02 13:59:00
125095    37546    642    2017-10-02 21:19:00    2017-10-02 21:19:00
125096    37546    934    2017-10-02 08:39:00    2017-10-02 08:39:00
125097    37546    712    2017-10-02 02:55:00    2017-10-02 02:55:00
125098    37546    603    2017-10-02 13:01:00    2017-10-02 13:01:00
125099    37546    703    2017-10-02 08:08:00    2017-10-02 08:08:00
125100    37547    701    2017-10-02 20:45:00    2017-10-02 20:45:00
125101    37547    481    2017-10-02 14:00:00    2017-10-02 14:00:00
125102    37547    518    2017-10-02 04:42:00    2017-10-02 04:42:00
125103    37547    951    2017-10-02 13:40:00    2017-10-02 13:40:00
125104    37547    564    2017-10-02 12:11:00    2017-10-02 12:11:00
125105    37548    668    2017-10-02 14:06:00    2017-10-02 14:06:00
125106    37548    799    2017-10-02 13:40:00    2017-10-02 13:40:00
125107    37548    870    2017-10-02 23:22:00    2017-10-02 23:22:00
125108    37548    740    2017-10-02 13:26:00    2017-10-02 13:26:00
125109    37548    908    2017-10-02 04:58:00    2017-10-02 04:58:00
125110    37549    837    2017-10-02 17:07:00    2017-10-02 17:07:00
125111    37549    705    2017-10-02 03:17:00    2017-10-02 03:17:00
125112    37549    623    2017-10-02 08:46:00    2017-10-02 08:46:00
125113    37549    862    2017-10-02 18:18:00    2017-10-02 18:18:00
125114    37549    909    2017-10-02 08:35:00    2017-10-02 08:35:00
125115    37550    661    2017-10-02 01:56:00    2017-10-02 01:56:00
125116    37550    881    2017-10-02 08:19:00    2017-10-02 08:19:00
125117    37550    609    2017-10-02 20:13:00    2017-10-02 20:13:00
125118    37550    721    2017-10-02 13:01:00    2017-10-02 13:01:00
125119    37550    938    2017-10-02 18:12:00    2017-10-02 18:12:00
125120    37551    757    2017-10-02 07:33:00    2017-10-02 07:33:00
125121    37551    883    2017-10-02 15:04:00    2017-10-02 15:04:00
125122    37551    471    2017-10-02 07:40:00    2017-10-02 07:40:00
125123    37551    744    2017-10-02 15:42:00    2017-10-02 15:42:00
125124    37551    533    2017-10-02 11:26:00    2017-10-02 11:26:00
125125    37552    872    2017-10-02 16:08:00    2017-10-02 16:08:00
125126    37552    501    2017-10-02 15:00:00    2017-10-02 15:00:00
125127    37552    670    2017-10-02 01:21:00    2017-10-02 01:21:00
125128    37552    867    2017-10-02 17:13:00    2017-10-02 17:13:00
125129    37552    878    2017-10-02 21:08:00    2017-10-02 21:08:00
125130    37553    819    2017-10-02 20:40:00    2017-10-02 20:40:00
125131    37553    583    2017-10-02 10:53:00    2017-10-02 10:53:00
125132    37553    953    2017-10-02 20:09:00    2017-10-02 20:09:00
125133    37553    490    2017-10-02 21:37:00    2017-10-02 21:37:00
125134    37553    643    2017-10-02 05:32:00    2017-10-02 05:32:00
125135    37554    918    2017-10-02 06:52:00    2017-10-02 06:52:00
125136    37554    709    2017-10-02 03:58:00    2017-10-02 03:58:00
125137    37554    711    2017-10-02 16:30:00    2017-10-02 16:30:00
125138    37554    954    2017-10-02 23:58:00    2017-10-02 23:58:00
125139    37554    630    2017-10-02 04:27:00    2017-10-02 04:27:00
125140    37555    780    2017-10-02 01:44:00    2017-10-02 01:44:00
125141    37555    936    2017-10-02 09:04:00    2017-10-02 09:04:00
125142    37555    943    2017-10-02 06:24:00    2017-10-02 06:24:00
125143    37555    639    2017-10-02 01:29:00    2017-10-02 01:29:00
125144    37555    818    2017-10-02 10:50:00    2017-10-02 10:50:00
125145    37556    470    2017-10-02 15:02:00    2017-10-02 15:02:00
125146    37556    918    2017-10-02 09:27:00    2017-10-02 09:27:00
125147    37556    468    2017-10-02 11:41:00    2017-10-02 11:41:00
125148    37556    621    2017-10-02 12:56:00    2017-10-02 12:56:00
125149    37556    610    2017-10-02 09:44:00    2017-10-02 09:44:00
125150    37557    537    2017-10-02 18:24:00    2017-10-02 18:24:00
125151    37557    763    2017-10-02 05:09:00    2017-10-02 05:09:00
125152    37557    717    2017-10-02 06:48:00    2017-10-02 06:48:00
125153    37557    795    2017-10-02 13:34:00    2017-10-02 13:34:00
125154    37557    693    2017-10-02 20:56:00    2017-10-02 20:56:00
125155    37558    949    2017-10-02 07:13:00    2017-10-02 07:13:00
125156    37558    778    2017-10-02 14:43:00    2017-10-02 14:43:00
125157    37558    537    2017-10-02 05:10:00    2017-10-02 05:10:00
125158    37558    880    2017-10-02 07:38:00    2017-10-02 07:38:00
125159    37558    494    2017-10-02 15:13:00    2017-10-02 15:13:00
125160    37559    610    2017-10-02 03:52:00    2017-10-02 03:52:00
125161    37559    841    2017-10-02 03:06:00    2017-10-02 03:06:00
125162    37559    692    2017-10-02 18:08:00    2017-10-02 18:08:00
125163    37559    679    2017-10-02 05:37:00    2017-10-02 05:37:00
125164    37559    711    2017-10-02 19:56:00    2017-10-02 19:56:00
125165    37560    780    2017-10-02 17:22:00    2017-10-02 17:22:00
125166    37560    932    2017-10-02 11:55:00    2017-10-02 11:55:00
125167    37560    485    2017-10-02 16:39:00    2017-10-02 16:39:00
125168    37560    808    2017-10-02 21:02:00    2017-10-02 21:02:00
125169    37560    759    2017-10-02 06:40:00    2017-10-02 06:40:00
125170    37561    560    2017-10-02 06:49:00    2017-10-02 06:49:00
125171    37561    518    2017-10-02 09:37:00    2017-10-02 09:37:00
125172    37561    855    2017-10-02 11:49:00    2017-10-02 11:49:00
125173    37561    904    2017-10-02 23:10:00    2017-10-02 23:10:00
125174    37561    881    2017-10-02 12:42:00    2017-10-02 12:42:00
125175    37562    761    2017-10-02 01:35:00    2017-10-02 01:35:00
125176    37562    657    2017-10-02 23:47:00    2017-10-02 23:47:00
125177    37562    695    2017-10-02 18:21:00    2017-10-02 18:21:00
125178    37562    709    2017-10-02 21:47:00    2017-10-02 21:47:00
125179    37562    585    2017-10-02 02:06:00    2017-10-02 02:06:00
125180    37563    482    2017-10-02 23:00:00    2017-10-02 23:00:00
125181    37563    659    2017-10-02 23:13:00    2017-10-02 23:13:00
125182    37563    914    2017-10-02 22:10:00    2017-10-02 22:10:00
125183    37563    474    2017-10-02 17:08:00    2017-10-02 17:08:00
125184    37563    822    2017-10-02 19:13:00    2017-10-02 19:13:00
125185    37564    761    2017-10-02 16:25:00    2017-10-02 16:25:00
125186    37564    492    2017-10-02 14:56:00    2017-10-02 14:56:00
125187    37564    699    2017-10-02 06:27:00    2017-10-02 06:27:00
125188    37564    743    2017-10-02 20:42:00    2017-10-02 20:42:00
125189    37564    779    2017-10-02 15:54:00    2017-10-02 15:54:00
125190    37565    519    2017-10-02 04:48:00    2017-10-02 04:48:00
125191    37565    680    2017-10-02 21:54:00    2017-10-02 21:54:00
125192    37565    961    2017-10-02 22:07:00    2017-10-02 22:07:00
125193    37565    917    2017-10-02 16:36:00    2017-10-02 16:36:00
125194    37565    859    2017-10-02 20:31:00    2017-10-02 20:31:00
125195    37566    677    2017-10-02 03:32:00    2017-10-02 03:32:00
125196    37566    778    2017-10-02 19:20:00    2017-10-02 19:20:00
125197    37566    559    2017-10-02 18:12:00    2017-10-02 18:12:00
125198    37566    514    2017-10-02 18:51:00    2017-10-02 18:51:00
125199    37566    626    2017-10-02 17:29:00    2017-10-02 17:29:00
125200    37567    465    2017-10-02 16:23:00    2017-10-02 16:23:00
125201    37567    698    2017-10-02 03:16:00    2017-10-02 03:16:00
125202    37567    584    2017-10-02 10:47:00    2017-10-02 10:47:00
125203    37567    692    2017-10-02 16:40:00    2017-10-02 16:40:00
125204    37567    613    2017-10-02 23:48:00    2017-10-02 23:48:00
125205    37568    958    2017-10-02 12:10:00    2017-10-02 12:10:00
125206    37568    627    2017-10-02 05:05:00    2017-10-02 05:05:00
125207    37568    559    2017-10-02 12:54:00    2017-10-02 12:54:00
125208    37568    531    2017-10-02 13:51:00    2017-10-02 13:51:00
125209    37568    620    2017-10-02 16:17:00    2017-10-02 16:17:00
125210    37569    805    2017-10-02 16:27:00    2017-10-02 16:27:00
125211    37569    768    2017-10-02 10:53:00    2017-10-02 10:53:00
125212    37569    555    2017-10-02 23:41:00    2017-10-02 23:41:00
125213    37569    788    2017-10-02 03:46:00    2017-10-02 03:46:00
125214    37569    487    2017-10-02 20:19:00    2017-10-02 20:19:00
125215    37570    671    2017-10-02 02:19:00    2017-10-02 02:19:00
125216    37570    911    2017-10-02 15:16:00    2017-10-02 15:16:00
125217    37570    880    2017-10-02 09:44:00    2017-10-02 09:44:00
125218    37570    466    2017-10-02 23:26:00    2017-10-02 23:26:00
125219    37570    568    2017-10-02 11:17:00    2017-10-02 11:17:00
125220    37571    798    2017-10-03 02:30:00    2017-10-03 02:30:00
125221    37571    896    2017-10-03 08:52:00    2017-10-03 08:52:00
125222    37571    756    2017-10-03 15:46:00    2017-10-03 15:46:00
125223    37571    747    2017-10-03 04:49:00    2017-10-03 04:49:00
125224    37571    639    2017-10-03 19:47:00    2017-10-03 19:47:00
125225    37572    890    2017-10-03 19:55:00    2017-10-03 19:55:00
125226    37572    463    2017-10-03 05:51:00    2017-10-03 05:51:00
125227    37572    628    2017-10-03 19:17:00    2017-10-03 19:17:00
125228    37572    556    2017-10-03 02:29:00    2017-10-03 02:29:00
125229    37572    588    2017-10-03 14:12:00    2017-10-03 14:12:00
125230    37573    913    2017-10-03 02:24:00    2017-10-03 02:24:00
125231    37573    783    2017-10-03 13:20:00    2017-10-03 13:20:00
125232    37573    708    2017-10-03 23:19:00    2017-10-03 23:19:00
125233    37573    850    2017-10-03 18:31:00    2017-10-03 18:31:00
125234    37573    822    2017-10-03 13:25:00    2017-10-03 13:25:00
125235    37574    882    2017-10-03 02:04:00    2017-10-03 02:04:00
125236    37574    684    2017-10-03 15:49:00    2017-10-03 15:49:00
125237    37574    906    2017-10-03 14:31:00    2017-10-03 14:31:00
125238    37574    873    2017-10-03 10:08:00    2017-10-03 10:08:00
125239    37574    623    2017-10-03 13:51:00    2017-10-03 13:51:00
125240    37575    901    2017-10-03 19:09:00    2017-10-03 19:09:00
125241    37575    957    2017-10-03 11:50:00    2017-10-03 11:50:00
125242    37575    935    2017-10-03 07:00:00    2017-10-03 07:00:00
125243    37575    726    2017-10-03 17:42:00    2017-10-03 17:42:00
125244    37575    904    2017-10-03 22:37:00    2017-10-03 22:37:00
125245    37576    876    2017-10-03 05:07:00    2017-10-03 05:07:00
125246    37576    954    2017-10-03 03:22:00    2017-10-03 03:22:00
125247    37576    489    2017-10-03 08:05:00    2017-10-03 08:05:00
125248    37576    471    2017-10-03 14:06:00    2017-10-03 14:06:00
125249    37576    614    2017-10-03 14:23:00    2017-10-03 14:23:00
125250    37577    788    2017-10-03 20:34:00    2017-10-03 20:34:00
125251    37577    867    2017-10-03 14:05:00    2017-10-03 14:05:00
125252    37577    785    2017-10-03 20:06:00    2017-10-03 20:06:00
125253    37577    891    2017-10-03 01:20:00    2017-10-03 01:20:00
125254    37577    884    2017-10-03 10:10:00    2017-10-03 10:10:00
125255    37578    898    2017-10-03 22:37:00    2017-10-03 22:37:00
125256    37578    847    2017-10-03 10:51:00    2017-10-03 10:51:00
125257    37578    621    2017-10-03 22:34:00    2017-10-03 22:34:00
125258    37578    805    2017-10-03 20:07:00    2017-10-03 20:07:00
125259    37578    783    2017-10-03 18:09:00    2017-10-03 18:09:00
125260    37579    891    2017-10-03 05:35:00    2017-10-03 05:35:00
125261    37579    651    2017-10-03 05:02:00    2017-10-03 05:02:00
125262    37579    959    2017-10-03 02:27:00    2017-10-03 02:27:00
125263    37579    862    2017-10-03 05:51:00    2017-10-03 05:51:00
125264    37579    867    2017-10-03 06:51:00    2017-10-03 06:51:00
125265    37580    856    2017-10-03 21:23:00    2017-10-03 21:23:00
125266    37580    498    2017-10-03 18:29:00    2017-10-03 18:29:00
125267    37580    763    2017-10-03 18:09:00    2017-10-03 18:09:00
125268    37580    790    2017-10-03 12:12:00    2017-10-03 12:12:00
125269    37580    872    2017-10-03 21:07:00    2017-10-03 21:07:00
125270    37581    919    2017-10-03 11:04:00    2017-10-03 11:04:00
125271    37581    810    2017-10-03 08:11:00    2017-10-03 08:11:00
125272    37581    753    2017-10-03 22:39:00    2017-10-03 22:39:00
125273    37581    734    2017-10-03 06:32:00    2017-10-03 06:32:00
125274    37581    683    2017-10-03 03:17:00    2017-10-03 03:17:00
125275    37582    692    2017-10-03 16:04:00    2017-10-03 16:04:00
125276    37582    905    2017-10-03 18:29:00    2017-10-03 18:29:00
125277    37582    846    2017-10-03 18:48:00    2017-10-03 18:48:00
125278    37582    926    2017-10-03 17:00:00    2017-10-03 17:00:00
125279    37582    756    2017-10-03 09:27:00    2017-10-03 09:27:00
125280    37583    897    2017-10-03 17:24:00    2017-10-03 17:24:00
125281    37583    600    2017-10-03 15:43:00    2017-10-03 15:43:00
125282    37583    549    2017-10-03 18:53:00    2017-10-03 18:53:00
125283    37583    494    2017-10-03 17:56:00    2017-10-03 17:56:00
125284    37583    849    2017-10-03 13:08:00    2017-10-03 13:08:00
125285    37584    786    2017-10-03 07:58:00    2017-10-03 07:58:00
125286    37584    694    2017-10-03 01:08:00    2017-10-03 01:08:00
125287    37584    592    2017-10-03 09:08:00    2017-10-03 09:08:00
125288    37584    728    2017-10-03 02:58:00    2017-10-03 02:58:00
125289    37584    553    2017-10-03 03:42:00    2017-10-03 03:42:00
125290    37585    689    2017-10-03 15:57:00    2017-10-03 15:57:00
125291    37585    935    2017-10-03 09:53:00    2017-10-03 09:53:00
125292    37585    765    2017-10-03 15:17:00    2017-10-03 15:17:00
125293    37585    552    2017-10-03 07:53:00    2017-10-03 07:53:00
125294    37585    848    2017-10-03 03:01:00    2017-10-03 03:01:00
125295    37586    602    2017-10-03 12:57:00    2017-10-03 12:57:00
125296    37586    890    2017-10-03 06:57:00    2017-10-03 06:57:00
125297    37586    615    2017-10-03 09:33:00    2017-10-03 09:33:00
125298    37586    855    2017-10-03 03:24:00    2017-10-03 03:24:00
125299    37586    901    2017-10-03 18:29:00    2017-10-03 18:29:00
125300    37587    484    2017-10-03 14:27:00    2017-10-03 14:27:00
125301    37587    604    2017-10-03 04:10:00    2017-10-03 04:10:00
125302    37587    510    2017-10-03 04:22:00    2017-10-03 04:22:00
125303    37587    764    2017-10-03 01:41:00    2017-10-03 01:41:00
125304    37587    518    2017-10-03 11:19:00    2017-10-03 11:19:00
125305    37588    592    2017-10-03 17:49:00    2017-10-03 17:49:00
125306    37588    465    2017-10-03 20:52:00    2017-10-03 20:52:00
125307    37588    911    2017-10-03 04:17:00    2017-10-03 04:17:00
125308    37588    777    2017-10-03 14:33:00    2017-10-03 14:33:00
125309    37588    752    2017-10-03 18:01:00    2017-10-03 18:01:00
125310    37589    681    2017-10-03 01:08:00    2017-10-03 01:08:00
125311    37589    581    2017-10-03 17:27:00    2017-10-03 17:27:00
125312    37589    713    2017-10-03 18:38:00    2017-10-03 18:38:00
125313    37589    858    2017-10-03 16:27:00    2017-10-03 16:27:00
125314    37589    846    2017-10-03 20:25:00    2017-10-03 20:25:00
125315    37590    704    2017-10-03 22:43:00    2017-10-03 22:43:00
125316    37590    664    2017-10-03 11:20:00    2017-10-03 11:20:00
125317    37590    675    2017-10-03 20:39:00    2017-10-03 20:39:00
125318    37590    721    2017-10-03 19:02:00    2017-10-03 19:02:00
125319    37590    561    2017-10-03 06:23:00    2017-10-03 06:23:00
125320    37591    817    2017-10-03 15:20:00    2017-10-03 15:20:00
125321    37591    869    2017-10-03 08:42:00    2017-10-03 08:42:00
125322    37591    512    2017-10-03 23:49:00    2017-10-03 23:49:00
125323    37591    868    2017-10-03 06:17:00    2017-10-03 06:17:00
125324    37591    783    2017-10-03 05:18:00    2017-10-03 05:18:00
125325    37592    522    2017-10-03 14:14:00    2017-10-03 14:14:00
125326    37592    719    2017-10-03 09:12:00    2017-10-03 09:12:00
125327    37592    958    2017-10-03 21:23:00    2017-10-03 21:23:00
125328    37592    636    2017-10-03 05:00:00    2017-10-03 05:00:00
125329    37592    694    2017-10-03 10:24:00    2017-10-03 10:24:00
125330    37593    614    2017-10-03 09:06:00    2017-10-03 09:06:00
125331    37593    587    2017-10-03 02:08:00    2017-10-03 02:08:00
125332    37593    814    2017-10-03 01:06:00    2017-10-03 01:06:00
125333    37593    613    2017-10-03 08:13:00    2017-10-03 08:13:00
125334    37593    856    2017-10-03 18:55:00    2017-10-03 18:55:00
125335    37594    571    2017-10-03 07:32:00    2017-10-03 07:32:00
125336    37594    748    2017-10-03 05:14:00    2017-10-03 05:14:00
125337    37594    785    2017-10-03 06:46:00    2017-10-03 06:46:00
125338    37594    846    2017-10-03 22:35:00    2017-10-03 22:35:00
125339    37594    686    2017-10-03 20:10:00    2017-10-03 20:10:00
125340    37595    809    2017-10-03 21:55:00    2017-10-03 21:55:00
125341    37595    603    2017-10-03 23:30:00    2017-10-03 23:30:00
125342    37595    954    2017-10-03 01:11:00    2017-10-03 01:11:00
125343    37595    738    2017-10-03 07:03:00    2017-10-03 07:03:00
125344    37595    840    2017-10-03 15:45:00    2017-10-03 15:45:00
125345    37596    909    2017-10-03 23:27:00    2017-10-03 23:27:00
125346    37596    668    2017-10-03 08:34:00    2017-10-03 08:34:00
125347    37596    662    2017-10-03 20:46:00    2017-10-03 20:46:00
125348    37596    778    2017-10-03 09:05:00    2017-10-03 09:05:00
125349    37596    560    2017-10-03 19:03:00    2017-10-03 19:03:00
125350    37597    910    2017-10-03 11:05:00    2017-10-03 11:05:00
125351    37597    939    2017-10-03 15:17:00    2017-10-03 15:17:00
125352    37597    891    2017-10-03 21:05:00    2017-10-03 21:05:00
125353    37597    654    2017-10-03 20:54:00    2017-10-03 20:54:00
125354    37597    946    2017-10-03 18:40:00    2017-10-03 18:40:00
125355    37598    837    2017-10-03 06:06:00    2017-10-03 06:06:00
125356    37598    661    2017-10-03 23:01:00    2017-10-03 23:01:00
125357    37598    791    2017-10-03 09:26:00    2017-10-03 09:26:00
125358    37598    466    2017-10-03 22:41:00    2017-10-03 22:41:00
125359    37598    874    2017-10-03 11:07:00    2017-10-03 11:07:00
125360    37599    737    2017-10-03 01:35:00    2017-10-03 01:35:00
125361    37599    495    2017-10-03 23:32:00    2017-10-03 23:32:00
125362    37599    464    2017-10-03 05:26:00    2017-10-03 05:26:00
125363    37599    608    2017-10-03 11:09:00    2017-10-03 11:09:00
125364    37599    603    2017-10-03 12:42:00    2017-10-03 12:42:00
125365    37600    514    2017-10-03 04:55:00    2017-10-03 04:55:00
125366    37600    634    2017-10-03 23:05:00    2017-10-03 23:05:00
125367    37600    877    2017-10-03 23:35:00    2017-10-03 23:35:00
125368    37600    853    2017-10-03 02:24:00    2017-10-03 02:24:00
125369    37600    822    2017-10-03 04:42:00    2017-10-03 04:42:00
125370    37601    798    2017-10-03 22:04:00    2017-10-03 22:04:00
125371    37601    816    2017-10-03 02:04:00    2017-10-03 02:04:00
125372    37601    896    2017-10-03 06:42:00    2017-10-03 06:42:00
125373    37601    712    2017-10-03 15:36:00    2017-10-03 15:36:00
125374    37601    498    2017-10-03 21:09:00    2017-10-03 21:09:00
125375    37602    764    2017-10-03 14:59:00    2017-10-03 14:59:00
125376    37602    716    2017-10-03 03:50:00    2017-10-03 03:50:00
125377    37602    753    2017-10-03 21:08:00    2017-10-03 21:08:00
125378    37602    567    2017-10-03 23:02:00    2017-10-03 23:02:00
125379    37602    756    2017-10-03 06:50:00    2017-10-03 06:50:00
125380    37603    463    2017-10-03 15:55:00    2017-10-03 15:55:00
125381    37603    600    2017-10-03 01:27:00    2017-10-03 01:27:00
125382    37603    795    2017-10-03 03:32:00    2017-10-03 03:32:00
125383    37603    909    2017-10-03 01:49:00    2017-10-03 01:49:00
125384    37603    580    2017-10-03 16:00:00    2017-10-03 16:00:00
125385    37604    848    2017-10-03 02:13:00    2017-10-03 02:13:00
125386    37604    814    2017-10-03 21:52:00    2017-10-03 21:52:00
125387    37604    947    2017-10-03 07:12:00    2017-10-03 07:12:00
125388    37604    951    2017-10-03 12:50:00    2017-10-03 12:50:00
125389    37604    959    2017-10-03 02:27:00    2017-10-03 02:27:00
125390    37605    677    2017-10-03 20:43:00    2017-10-03 20:43:00
125391    37605    892    2017-10-03 07:43:00    2017-10-03 07:43:00
125392    37605    485    2017-10-03 08:25:00    2017-10-03 08:25:00
125393    37605    716    2017-10-03 02:29:00    2017-10-03 02:29:00
125394    37605    837    2017-10-03 08:10:00    2017-10-03 08:10:00
125395    37606    937    2017-10-03 16:11:00    2017-10-03 16:11:00
125396    37606    852    2017-10-03 07:14:00    2017-10-03 07:14:00
125397    37606    571    2017-10-03 15:04:00    2017-10-03 15:04:00
125398    37606    473    2017-10-03 15:56:00    2017-10-03 15:56:00
125399    37606    564    2017-10-03 02:12:00    2017-10-03 02:12:00
125400    37607    601    2017-10-03 07:32:00    2017-10-03 07:32:00
125401    37607    692    2017-10-03 22:14:00    2017-10-03 22:14:00
125402    37607    775    2017-10-03 16:36:00    2017-10-03 16:36:00
125403    37607    946    2017-10-03 20:21:00    2017-10-03 20:21:00
125404    37607    707    2017-10-03 04:46:00    2017-10-03 04:46:00
125405    37608    503    2017-10-03 07:50:00    2017-10-03 07:50:00
125406    37608    479    2017-10-03 16:42:00    2017-10-03 16:42:00
125407    37608    672    2017-10-03 05:08:00    2017-10-03 05:08:00
125408    37608    531    2017-10-03 03:57:00    2017-10-03 03:57:00
125409    37608    828    2017-10-03 10:50:00    2017-10-03 10:50:00
125410    37609    693    2017-10-03 19:34:00    2017-10-03 19:34:00
125411    37609    628    2017-10-03 23:59:00    2017-10-03 23:59:00
125412    37609    961    2017-10-03 09:27:00    2017-10-03 09:27:00
125413    37609    600    2017-10-03 01:56:00    2017-10-03 01:56:00
125414    37609    915    2017-10-03 13:33:00    2017-10-03 13:33:00
125415    37610    681    2017-10-03 18:13:00    2017-10-03 18:13:00
125416    37610    889    2017-10-03 15:12:00    2017-10-03 15:12:00
125417    37610    632    2017-10-03 01:00:00    2017-10-03 01:00:00
125418    37610    943    2017-10-03 09:53:00    2017-10-03 09:53:00
125419    37610    603    2017-10-03 20:26:00    2017-10-03 20:26:00
125420    37611    769    2017-10-03 15:50:00    2017-10-03 15:50:00
125421    37611    822    2017-10-03 13:45:00    2017-10-03 13:45:00
125422    37611    717    2017-10-03 19:05:00    2017-10-03 19:05:00
125423    37611    481    2017-10-03 13:12:00    2017-10-03 13:12:00
125424    37611    921    2017-10-03 23:24:00    2017-10-03 23:24:00
125425    37612    708    2017-10-03 17:19:00    2017-10-03 17:19:00
125426    37612    860    2017-10-03 23:19:00    2017-10-03 23:19:00
125427    37612    805    2017-10-03 07:36:00    2017-10-03 07:36:00
125428    37612    951    2017-10-03 04:21:00    2017-10-03 04:21:00
125429    37612    548    2017-10-03 13:47:00    2017-10-03 13:47:00
125430    37613    723    2017-10-03 12:49:00    2017-10-03 12:49:00
125431    37613    573    2017-10-03 11:41:00    2017-10-03 11:41:00
125432    37613    701    2017-10-03 07:44:00    2017-10-03 07:44:00
125433    37613    640    2017-10-03 07:48:00    2017-10-03 07:48:00
125434    37613    917    2017-10-03 18:36:00    2017-10-03 18:36:00
125435    37614    736    2017-10-03 09:19:00    2017-10-03 09:19:00
125436    37614    856    2017-10-03 20:50:00    2017-10-03 20:50:00
125437    37614    854    2017-10-03 21:45:00    2017-10-03 21:45:00
125438    37614    928    2017-10-03 12:45:00    2017-10-03 12:45:00
125439    37614    799    2017-10-03 07:19:00    2017-10-03 07:19:00
125440    37615    554    2017-10-03 14:15:00    2017-10-03 14:15:00
125441    37615    859    2017-10-03 17:57:00    2017-10-03 17:57:00
125442    37615    798    2017-10-03 19:57:00    2017-10-03 19:57:00
125443    37615    938    2017-10-03 07:30:00    2017-10-03 07:30:00
125444    37615    794    2017-10-03 02:50:00    2017-10-03 02:50:00
125445    37616    730    2017-10-03 21:31:00    2017-10-03 21:31:00
125446    37616    486    2017-10-03 18:19:00    2017-10-03 18:19:00
125447    37616    495    2017-10-03 07:09:00    2017-10-03 07:09:00
125448    37616    649    2017-10-03 16:06:00    2017-10-03 16:06:00
125449    37616    897    2017-10-03 06:20:00    2017-10-03 06:20:00
125450    37617    946    2017-10-03 03:18:00    2017-10-03 03:18:00
125451    37617    625    2017-10-03 10:31:00    2017-10-03 10:31:00
125452    37617    744    2017-10-03 21:28:00    2017-10-03 21:28:00
125453    37617    884    2017-10-03 16:26:00    2017-10-03 16:26:00
125454    37617    551    2017-10-03 04:40:00    2017-10-03 04:40:00
125455    37618    559    2017-10-04 23:09:00    2017-10-04 23:09:00
125456    37618    665    2017-10-04 10:38:00    2017-10-04 10:38:00
125457    37618    833    2017-10-04 04:32:00    2017-10-04 04:32:00
125458    37618    681    2017-10-04 07:50:00    2017-10-04 07:50:00
125459    37618    491    2017-10-04 06:53:00    2017-10-04 06:53:00
125460    37619    788    2017-10-04 22:24:00    2017-10-04 22:24:00
125461    37619    570    2017-10-04 08:35:00    2017-10-04 08:35:00
125462    37619    614    2017-10-04 19:42:00    2017-10-04 19:42:00
125463    37619    959    2017-10-04 13:26:00    2017-10-04 13:26:00
125464    37619    856    2017-10-04 02:30:00    2017-10-04 02:30:00
125465    37620    769    2017-10-04 21:15:00    2017-10-04 21:15:00
125466    37620    516    2017-10-04 04:34:00    2017-10-04 04:34:00
125467    37620    652    2017-10-04 18:19:00    2017-10-04 18:19:00
125468    37620    744    2017-10-04 21:15:00    2017-10-04 21:15:00
125469    37620    851    2017-10-04 21:14:00    2017-10-04 21:14:00
125470    37621    857    2017-10-04 16:46:00    2017-10-04 16:46:00
125471    37621    891    2017-10-04 13:48:00    2017-10-04 13:48:00
125472    37621    597    2017-10-04 22:54:00    2017-10-04 22:54:00
125473    37621    662    2017-10-04 23:10:00    2017-10-04 23:10:00
125474    37621    948    2017-10-04 06:20:00    2017-10-04 06:20:00
125475    37622    812    2017-10-04 07:35:00    2017-10-04 07:35:00
125476    37622    832    2017-10-04 19:20:00    2017-10-04 19:20:00
125477    37622    773    2017-10-04 01:58:00    2017-10-04 01:58:00
125478    37622    588    2017-10-04 09:36:00    2017-10-04 09:36:00
125479    37622    822    2017-10-04 20:03:00    2017-10-04 20:03:00
125480    37623    621    2017-10-04 19:20:00    2017-10-04 19:20:00
125481    37623    628    2017-10-04 21:55:00    2017-10-04 21:55:00
125482    37623    646    2017-10-04 20:34:00    2017-10-04 20:34:00
125483    37623    933    2017-10-04 04:00:00    2017-10-04 04:00:00
125484    37623    508    2017-10-04 12:41:00    2017-10-04 12:41:00
125485    37624    838    2017-10-04 07:55:00    2017-10-04 07:55:00
125486    37624    741    2017-10-04 18:58:00    2017-10-04 18:58:00
125487    37624    721    2017-10-04 14:25:00    2017-10-04 14:25:00
125488    37624    607    2017-10-04 14:20:00    2017-10-04 14:20:00
125489    37624    609    2017-10-04 17:28:00    2017-10-04 17:28:00
125490    37625    926    2017-10-04 21:44:00    2017-10-04 21:44:00
125491    37625    818    2017-10-04 19:55:00    2017-10-04 19:55:00
125492    37625    804    2017-10-04 11:37:00    2017-10-04 11:37:00
125493    37625    729    2017-10-04 01:59:00    2017-10-04 01:59:00
125494    37625    897    2017-10-04 14:30:00    2017-10-04 14:30:00
125495    37626    823    2017-10-04 23:11:00    2017-10-04 23:11:00
125496    37626    660    2017-10-04 13:31:00    2017-10-04 13:31:00
125497    37626    876    2017-10-04 21:52:00    2017-10-04 21:52:00
125498    37626    693    2017-10-04 17:40:00    2017-10-04 17:40:00
125499    37626    787    2017-10-04 20:01:00    2017-10-04 20:01:00
125500    37627    505    2017-10-04 08:07:00    2017-10-04 08:07:00
125501    37627    588    2017-10-04 12:55:00    2017-10-04 12:55:00
125502    37627    480    2017-10-04 15:24:00    2017-10-04 15:24:00
125503    37627    701    2017-10-04 19:28:00    2017-10-04 19:28:00
125504    37627    908    2017-10-04 02:32:00    2017-10-04 02:32:00
125505    37628    948    2017-10-04 13:14:00    2017-10-04 13:14:00
125506    37628    532    2017-10-04 01:42:00    2017-10-04 01:42:00
125507    37628    873    2017-10-04 18:09:00    2017-10-04 18:09:00
125508    37628    544    2017-10-04 13:39:00    2017-10-04 13:39:00
125509    37628    632    2017-10-04 09:39:00    2017-10-04 09:39:00
125510    37629    952    2017-10-04 15:33:00    2017-10-04 15:33:00
125511    37629    590    2017-10-04 02:57:00    2017-10-04 02:57:00
125512    37629    690    2017-10-04 09:57:00    2017-10-04 09:57:00
125513    37629    617    2017-10-04 08:57:00    2017-10-04 08:57:00
125514    37629    741    2017-10-04 03:42:00    2017-10-04 03:42:00
125515    37630    536    2017-10-04 23:04:00    2017-10-04 23:04:00
125516    37630    788    2017-10-04 09:30:00    2017-10-04 09:30:00
125517    37630    483    2017-10-04 14:56:00    2017-10-04 14:56:00
125518    37630    719    2017-10-04 16:25:00    2017-10-04 16:25:00
125519    37630    823    2017-10-04 23:46:00    2017-10-04 23:46:00
125520    37631    903    2017-10-04 07:24:00    2017-10-04 07:24:00
125521    37631    868    2017-10-04 08:12:00    2017-10-04 08:12:00
125522    37631    513    2017-10-04 16:45:00    2017-10-04 16:45:00
125523    37631    474    2017-10-04 06:51:00    2017-10-04 06:51:00
125524    37631    503    2017-10-04 15:54:00    2017-10-04 15:54:00
125525    37632    670    2017-10-04 14:11:00    2017-10-04 14:11:00
125526    37632    585    2017-10-04 01:39:00    2017-10-04 01:39:00
125527    37632    736    2017-10-04 13:13:00    2017-10-04 13:13:00
125528    37632    633    2017-10-04 14:31:00    2017-10-04 14:31:00
125529    37632    556    2017-10-04 04:16:00    2017-10-04 04:16:00
125530    37633    766    2017-10-04 04:01:00    2017-10-04 04:01:00
125531    37633    720    2017-10-04 08:25:00    2017-10-04 08:25:00
125532    37633    547    2017-10-04 09:48:00    2017-10-04 09:48:00
125533    37633    653    2017-10-04 21:35:00    2017-10-04 21:35:00
125534    37633    598    2017-10-04 11:54:00    2017-10-04 11:54:00
125535    37634    740    2017-10-04 12:39:00    2017-10-04 12:39:00
125536    37634    779    2017-10-04 15:56:00    2017-10-04 15:56:00
125537    37634    714    2017-10-04 15:10:00    2017-10-04 15:10:00
125538    37634    906    2017-10-04 11:32:00    2017-10-04 11:32:00
125539    37634    727    2017-10-04 22:14:00    2017-10-04 22:14:00
125540    37635    755    2017-10-04 11:36:00    2017-10-04 11:36:00
125541    37635    648    2017-10-04 08:36:00    2017-10-04 08:36:00
125542    37635    675    2017-10-04 17:29:00    2017-10-04 17:29:00
125543    37635    581    2017-10-04 06:13:00    2017-10-04 06:13:00
125544    37635    540    2017-10-04 20:52:00    2017-10-04 20:52:00
125545    37636    778    2017-10-04 18:58:00    2017-10-04 18:58:00
125546    37636    475    2017-10-04 02:14:00    2017-10-04 02:14:00
125547    37636    527    2017-10-04 19:23:00    2017-10-04 19:23:00
125548    37636    616    2017-10-04 19:08:00    2017-10-04 19:08:00
125549    37636    861    2017-10-04 01:18:00    2017-10-04 01:18:00
125550    37637    900    2017-10-04 14:10:00    2017-10-04 14:10:00
125551    37637    524    2017-10-04 08:38:00    2017-10-04 08:38:00
125552    37637    779    2017-10-04 16:18:00    2017-10-04 16:18:00
125553    37637    902    2017-10-04 04:50:00    2017-10-04 04:50:00
125554    37637    739    2017-10-04 02:21:00    2017-10-04 02:21:00
125555    37638    890    2017-10-04 19:26:00    2017-10-04 19:26:00
125556    37638    484    2017-10-04 16:18:00    2017-10-04 16:18:00
125557    37638    489    2017-10-04 20:50:00    2017-10-04 20:50:00
125558    37638    567    2017-10-04 23:09:00    2017-10-04 23:09:00
125559    37638    905    2017-10-04 15:11:00    2017-10-04 15:11:00
125560    37639    612    2017-10-04 07:44:00    2017-10-04 07:44:00
125561    37639    666    2017-10-04 15:58:00    2017-10-04 15:58:00
125562    37639    468    2017-10-04 14:04:00    2017-10-04 14:04:00
125563    37639    744    2017-10-04 06:38:00    2017-10-04 06:38:00
125564    37639    898    2017-10-04 05:33:00    2017-10-04 05:33:00
125565    37640    630    2017-10-04 18:45:00    2017-10-04 18:45:00
125566    37640    829    2017-10-04 10:42:00    2017-10-04 10:42:00
125567    37640    740    2017-10-04 16:59:00    2017-10-04 16:59:00
125568    37640    815    2017-10-04 11:35:00    2017-10-04 11:35:00
125569    37640    808    2017-10-04 22:02:00    2017-10-04 22:02:00
125570    37641    805    2017-10-04 21:50:00    2017-10-04 21:50:00
125571    37641    541    2017-10-04 18:22:00    2017-10-04 18:22:00
125572    37641    913    2017-10-04 21:59:00    2017-10-04 21:59:00
125573    37641    655    2017-10-04 08:10:00    2017-10-04 08:10:00
125574    37641    690    2017-10-04 17:51:00    2017-10-04 17:51:00
125575    37642    861    2017-10-04 15:55:00    2017-10-04 15:55:00
125576    37642    576    2017-10-04 02:15:00    2017-10-04 02:15:00
125577    37642    522    2017-10-04 07:30:00    2017-10-04 07:30:00
125578    37642    867    2017-10-04 20:07:00    2017-10-04 20:07:00
125579    37642    919    2017-10-04 22:04:00    2017-10-04 22:04:00
125580    37643    685    2017-10-04 15:23:00    2017-10-04 15:23:00
125581    37643    894    2017-10-04 12:55:00    2017-10-04 12:55:00
125582    37643    939    2017-10-04 08:07:00    2017-10-04 08:07:00
125583    37643    619    2017-10-04 07:07:00    2017-10-04 07:07:00
125584    37643    695    2017-10-04 13:16:00    2017-10-04 13:16:00
125585    37644    655    2017-10-04 09:39:00    2017-10-04 09:39:00
125586    37644    788    2017-10-04 07:22:00    2017-10-04 07:22:00
125587    37644    778    2017-10-04 11:13:00    2017-10-04 11:13:00
125588    37644    684    2017-10-04 19:16:00    2017-10-04 19:16:00
125589    37644    785    2017-10-04 17:26:00    2017-10-04 17:26:00
125590    37645    655    2017-10-05 09:45:00    2017-10-05 09:45:00
125591    37645    614    2017-10-05 02:11:00    2017-10-05 02:11:00
125592    37645    603    2017-10-05 16:23:00    2017-10-05 16:23:00
125593    37645    711    2017-10-05 08:08:00    2017-10-05 08:08:00
125594    37645    463    2017-10-05 14:05:00    2017-10-05 14:05:00
125595    37646    781    2017-10-05 08:06:00    2017-10-05 08:06:00
125596    37646    769    2017-10-05 15:49:00    2017-10-05 15:49:00
125597    37646    720    2017-10-05 21:21:00    2017-10-05 21:21:00
125598    37646    757    2017-10-05 15:58:00    2017-10-05 15:58:00
125599    37646    609    2017-10-05 09:32:00    2017-10-05 09:32:00
125600    37647    539    2017-10-05 20:23:00    2017-10-05 20:23:00
125601    37647    612    2017-10-05 09:29:00    2017-10-05 09:29:00
125602    37647    839    2017-10-05 22:23:00    2017-10-05 22:23:00
125603    37647    659    2017-10-05 11:20:00    2017-10-05 11:20:00
125604    37647    478    2017-10-05 06:09:00    2017-10-05 06:09:00
125605    37648    552    2017-10-05 22:25:00    2017-10-05 22:25:00
125606    37648    783    2017-10-05 07:21:00    2017-10-05 07:21:00
125607    37648    946    2017-10-05 19:16:00    2017-10-05 19:16:00
125608    37648    874    2017-10-05 16:33:00    2017-10-05 16:33:00
125609    37648    641    2017-10-05 23:30:00    2017-10-05 23:30:00
125610    37649    648    2017-10-05 18:42:00    2017-10-05 18:42:00
125611    37649    566    2017-10-05 20:26:00    2017-10-05 20:26:00
125612    37649    875    2017-10-05 18:27:00    2017-10-05 18:27:00
125613    37649    860    2017-10-05 17:27:00    2017-10-05 17:27:00
125614    37649    959    2017-10-05 22:47:00    2017-10-05 22:47:00
125615    37650    777    2017-10-05 15:27:00    2017-10-05 15:27:00
125616    37650    747    2017-10-05 19:18:00    2017-10-05 19:18:00
125617    37650    475    2017-10-05 13:12:00    2017-10-05 13:12:00
125618    37650    464    2017-10-05 22:39:00    2017-10-05 22:39:00
125619    37650    914    2017-10-05 04:28:00    2017-10-05 04:28:00
125620    37651    659    2017-10-05 23:22:00    2017-10-05 23:22:00
125621    37651    579    2017-10-05 07:47:00    2017-10-05 07:47:00
125622    37651    770    2017-10-05 20:23:00    2017-10-05 20:23:00
125623    37651    564    2017-10-05 07:25:00    2017-10-05 07:25:00
125624    37651    517    2017-10-05 15:58:00    2017-10-05 15:58:00
125625    37652    847    2017-10-05 16:30:00    2017-10-05 16:30:00
125626    37652    873    2017-10-05 10:47:00    2017-10-05 10:47:00
125627    37652    941    2017-10-05 09:41:00    2017-10-05 09:41:00
125628    37652    951    2017-10-05 10:22:00    2017-10-05 10:22:00
125629    37652    607    2017-10-05 19:53:00    2017-10-05 19:53:00
125630    37653    796    2017-10-05 05:27:00    2017-10-05 05:27:00
125631    37653    942    2017-10-05 02:36:00    2017-10-05 02:36:00
125632    37653    938    2017-10-05 20:12:00    2017-10-05 20:12:00
125633    37653    506    2017-10-05 10:06:00    2017-10-05 10:06:00
125634    37653    666    2017-10-05 12:36:00    2017-10-05 12:36:00
125635    37654    535    2017-10-05 10:00:00    2017-10-05 10:00:00
125636    37654    566    2017-10-05 10:02:00    2017-10-05 10:02:00
125637    37654    953    2017-10-05 23:47:00    2017-10-05 23:47:00
125638    37654    529    2017-10-05 14:43:00    2017-10-05 14:43:00
125639    37654    839    2017-10-05 07:55:00    2017-10-05 07:55:00
125640    37655    843    2017-10-05 21:27:00    2017-10-05 21:27:00
125641    37655    804    2017-10-05 12:25:00    2017-10-05 12:25:00
125642    37655    910    2017-10-05 02:46:00    2017-10-05 02:46:00
125643    37655    495    2017-10-05 20:04:00    2017-10-05 20:04:00
125644    37655    926    2017-10-05 13:17:00    2017-10-05 13:17:00
125645    37656    729    2017-10-05 11:13:00    2017-10-05 11:13:00
125646    37656    481    2017-10-05 19:56:00    2017-10-05 19:56:00
125647    37656    888    2017-10-05 12:03:00    2017-10-05 12:03:00
125648    37656    465    2017-10-05 22:09:00    2017-10-05 22:09:00
125649    37656    914    2017-10-05 19:07:00    2017-10-05 19:07:00
125650    37657    483    2017-10-05 04:39:00    2017-10-05 04:39:00
125651    37657    945    2017-10-05 21:19:00    2017-10-05 21:19:00
125652    37657    726    2017-10-05 20:33:00    2017-10-05 20:33:00
125653    37657    877    2017-10-05 14:56:00    2017-10-05 14:56:00
125654    37657    757    2017-10-05 18:10:00    2017-10-05 18:10:00
125655    37658    636    2017-10-05 15:59:00    2017-10-05 15:59:00
125656    37658    573    2017-10-05 10:15:00    2017-10-05 10:15:00
125657    37658    815    2017-10-05 11:31:00    2017-10-05 11:31:00
125658    37658    800    2017-10-05 13:23:00    2017-10-05 13:23:00
125659    37658    477    2017-10-05 06:18:00    2017-10-05 06:18:00
125660    37659    683    2017-10-05 09:11:00    2017-10-05 09:11:00
125661    37659    681    2017-10-05 08:32:00    2017-10-05 08:32:00
125662    37659    806    2017-10-05 08:53:00    2017-10-05 08:53:00
125663    37659    795    2017-10-05 06:43:00    2017-10-05 06:43:00
125664    37659    657    2017-10-05 01:13:00    2017-10-05 01:13:00
125665    37660    960    2017-10-05 22:05:00    2017-10-05 22:05:00
125666    37660    641    2017-10-05 19:26:00    2017-10-05 19:26:00
125667    37660    527    2017-10-05 19:28:00    2017-10-05 19:28:00
125668    37660    486    2017-10-05 16:58:00    2017-10-05 16:58:00
125669    37660    598    2017-10-05 20:22:00    2017-10-05 20:22:00
125670    37661    822    2017-10-05 02:21:00    2017-10-05 02:21:00
125671    37661    825    2017-10-05 21:49:00    2017-10-05 21:49:00
125672    37661    893    2017-10-05 13:09:00    2017-10-05 13:09:00
125673    37661    906    2017-10-05 15:34:00    2017-10-05 15:34:00
125674    37661    888    2017-10-05 11:30:00    2017-10-05 11:30:00
125675    37662    751    2017-10-05 06:44:00    2017-10-05 06:44:00
125676    37662    721    2017-10-05 06:11:00    2017-10-05 06:11:00
125677    37662    894    2017-10-05 22:20:00    2017-10-05 22:20:00
125678    37662    924    2017-10-05 13:42:00    2017-10-05 13:42:00
125679    37662    813    2017-10-05 23:07:00    2017-10-05 23:07:00
125680    37663    507    2017-10-05 06:57:00    2017-10-05 06:57:00
125681    37663    692    2017-10-05 07:58:00    2017-10-05 07:58:00
125682    37663    530    2017-10-05 23:21:00    2017-10-05 23:21:00
125683    37663    692    2017-10-05 15:53:00    2017-10-05 15:53:00
125684    37663    514    2017-10-05 16:12:00    2017-10-05 16:12:00
125685    37664    791    2017-10-05 17:59:00    2017-10-05 17:59:00
125686    37664    727    2017-10-05 20:18:00    2017-10-05 20:18:00
125687    37664    870    2017-10-05 11:07:00    2017-10-05 11:07:00
125688    37664    643    2017-10-05 07:04:00    2017-10-05 07:04:00
125689    37664    512    2017-10-05 07:01:00    2017-10-05 07:01:00
125690    37665    513    2017-10-05 19:29:00    2017-10-05 19:29:00
125691    37665    530    2017-10-05 20:15:00    2017-10-05 20:15:00
125692    37665    480    2017-10-05 12:05:00    2017-10-05 12:05:00
125693    37665    484    2017-10-05 20:01:00    2017-10-05 20:01:00
125694    37665    569    2017-10-05 13:44:00    2017-10-05 13:44:00
125695    37666    677    2017-10-05 23:06:00    2017-10-05 23:06:00
125696    37666    946    2017-10-05 02:19:00    2017-10-05 02:19:00
125697    37666    955    2017-10-05 01:04:00    2017-10-05 01:04:00
125698    37666    521    2017-10-05 23:32:00    2017-10-05 23:32:00
125699    37666    552    2017-10-05 08:42:00    2017-10-05 08:42:00
125700    37667    898    2017-10-05 04:47:00    2017-10-05 04:47:00
125701    37667    625    2017-10-05 10:27:00    2017-10-05 10:27:00
125702    37667    567    2017-10-05 18:51:00    2017-10-05 18:51:00
125703    37667    727    2017-10-05 15:27:00    2017-10-05 15:27:00
125704    37667    792    2017-10-05 16:06:00    2017-10-05 16:06:00
125705    37668    840    2017-10-05 10:10:00    2017-10-05 10:10:00
125706    37668    495    2017-10-05 07:21:00    2017-10-05 07:21:00
125707    37668    558    2017-10-05 02:15:00    2017-10-05 02:15:00
125708    37668    564    2017-10-05 23:01:00    2017-10-05 23:01:00
125709    37668    654    2017-10-05 07:12:00    2017-10-05 07:12:00
125710    37669    854    2017-10-05 07:53:00    2017-10-05 07:53:00
125711    37669    927    2017-10-05 20:14:00    2017-10-05 20:14:00
125712    37669    617    2017-10-05 05:27:00    2017-10-05 05:27:00
125713    37669    907    2017-10-05 13:20:00    2017-10-05 13:20:00
125714    37669    674    2017-10-05 13:08:00    2017-10-05 13:08:00
125715    37670    521    2017-10-05 14:01:00    2017-10-05 14:01:00
125716    37670    804    2017-10-05 17:59:00    2017-10-05 17:59:00
125717    37670    667    2017-10-05 14:03:00    2017-10-05 14:03:00
125718    37670    626    2017-10-05 20:11:00    2017-10-05 20:11:00
125719    37670    813    2017-10-05 01:33:00    2017-10-05 01:33:00
125720    37671    906    2017-10-05 18:16:00    2017-10-05 18:16:00
125721    37671    652    2017-10-05 14:15:00    2017-10-05 14:15:00
125722    37671    604    2017-10-05 02:04:00    2017-10-05 02:04:00
125723    37671    897    2017-10-05 23:27:00    2017-10-05 23:27:00
125724    37671    921    2017-10-05 19:12:00    2017-10-05 19:12:00
125725    37672    855    2017-10-05 20:41:00    2017-10-05 20:41:00
125726    37672    731    2017-10-05 16:47:00    2017-10-05 16:47:00
125727    37672    887    2017-10-05 10:25:00    2017-10-05 10:25:00
125728    37672    840    2017-10-05 23:31:00    2017-10-05 23:31:00
125729    37672    577    2017-10-05 10:16:00    2017-10-05 10:16:00
125730    37673    922    2017-10-05 05:10:00    2017-10-05 05:10:00
125731    37673    666    2017-10-05 14:52:00    2017-10-05 14:52:00
125732    37673    599    2017-10-05 14:31:00    2017-10-05 14:31:00
125733    37673    717    2017-10-05 12:40:00    2017-10-05 12:40:00
125734    37673    825    2017-10-05 16:07:00    2017-10-05 16:07:00
125735    37674    847    2017-10-05 22:11:00    2017-10-05 22:11:00
125736    37674    568    2017-10-05 09:50:00    2017-10-05 09:50:00
125737    37674    816    2017-10-05 07:51:00    2017-10-05 07:51:00
125738    37674    956    2017-10-05 22:17:00    2017-10-05 22:17:00
125739    37674    645    2017-10-05 10:40:00    2017-10-05 10:40:00
125740    37675    589    2017-10-05 04:55:00    2017-10-05 04:55:00
125741    37675    545    2017-10-05 14:17:00    2017-10-05 14:17:00
125742    37675    822    2017-10-05 09:57:00    2017-10-05 09:57:00
125743    37675    928    2017-10-05 08:35:00    2017-10-05 08:35:00
125744    37675    918    2017-10-05 04:17:00    2017-10-05 04:17:00
125745    37676    841    2017-10-05 14:45:00    2017-10-05 14:45:00
125746    37676    718    2017-10-05 08:50:00    2017-10-05 08:50:00
125747    37676    503    2017-10-05 04:28:00    2017-10-05 04:28:00
125748    37676    718    2017-10-05 05:33:00    2017-10-05 05:33:00
125749    37676    812    2017-10-05 22:15:00    2017-10-05 22:15:00
125750    37677    866    2017-10-05 21:25:00    2017-10-05 21:25:00
125751    37677    774    2017-10-05 12:35:00    2017-10-05 12:35:00
125752    37677    553    2017-10-05 20:33:00    2017-10-05 20:33:00
125753    37677    739    2017-10-05 06:06:00    2017-10-05 06:06:00
125754    37677    515    2017-10-05 19:17:00    2017-10-05 19:17:00
125755    37678    514    2017-10-05 10:07:00    2017-10-05 10:07:00
125756    37678    570    2017-10-05 17:34:00    2017-10-05 17:34:00
125757    37678    556    2017-10-05 04:57:00    2017-10-05 04:57:00
125758    37678    853    2017-10-05 01:44:00    2017-10-05 01:44:00
125759    37678    856    2017-10-05 13:49:00    2017-10-05 13:49:00
125760    37679    561    2017-10-05 07:54:00    2017-10-05 07:54:00
125761    37679    592    2017-10-05 11:50:00    2017-10-05 11:50:00
125762    37679    941    2017-10-05 11:02:00    2017-10-05 11:02:00
125763    37679    948    2017-10-05 23:54:00    2017-10-05 23:54:00
125764    37679    838    2017-10-05 19:21:00    2017-10-05 19:21:00
125765    37680    711    2017-10-05 02:39:00    2017-10-05 02:39:00
125766    37680    743    2017-10-05 14:52:00    2017-10-05 14:52:00
125767    37680    535    2017-10-05 07:29:00    2017-10-05 07:29:00
125768    37680    959    2017-10-05 18:20:00    2017-10-05 18:20:00
125769    37680    632    2017-10-05 10:03:00    2017-10-05 10:03:00
125770    37681    746    2017-10-05 15:21:00    2017-10-05 15:21:00
125771    37681    865    2017-10-05 04:25:00    2017-10-05 04:25:00
125772    37681    525    2017-10-05 18:19:00    2017-10-05 18:19:00
125773    37681    537    2017-10-05 03:22:00    2017-10-05 03:22:00
125774    37681    817    2017-10-05 20:38:00    2017-10-05 20:38:00
125775    37682    959    2017-10-05 11:03:00    2017-10-05 11:03:00
125776    37682    515    2017-10-05 05:43:00    2017-10-05 05:43:00
125777    37682    550    2017-10-05 19:23:00    2017-10-05 19:23:00
125778    37682    772    2017-10-05 17:37:00    2017-10-05 17:37:00
125779    37682    789    2017-10-05 10:03:00    2017-10-05 10:03:00
125780    37683    515    2017-10-05 14:31:00    2017-10-05 14:31:00
125781    37683    954    2017-10-05 09:12:00    2017-10-05 09:12:00
125782    37683    511    2017-10-05 19:29:00    2017-10-05 19:29:00
125783    37683    612    2017-10-05 08:19:00    2017-10-05 08:19:00
125784    37683    561    2017-10-05 18:01:00    2017-10-05 18:01:00
125785    37684    913    2017-10-05 19:51:00    2017-10-05 19:51:00
125786    37684    871    2017-10-05 12:05:00    2017-10-05 12:05:00
125787    37684    540    2017-10-05 15:28:00    2017-10-05 15:28:00
125788    37684    887    2017-10-05 12:10:00    2017-10-05 12:10:00
125789    37684    809    2017-10-05 02:10:00    2017-10-05 02:10:00
125790    37685    911    2017-10-05 14:47:00    2017-10-05 14:47:00
125791    37685    610    2017-10-05 05:19:00    2017-10-05 05:19:00
125792    37685    533    2017-10-05 14:49:00    2017-10-05 14:49:00
125793    37685    674    2017-10-05 11:04:00    2017-10-05 11:04:00
125794    37685    674    2017-10-05 03:40:00    2017-10-05 03:40:00
125795    37686    671    2017-10-05 21:46:00    2017-10-05 21:46:00
125796    37686    872    2017-10-05 10:07:00    2017-10-05 10:07:00
125797    37686    605    2017-10-05 03:36:00    2017-10-05 03:36:00
125798    37686    484    2017-10-05 09:49:00    2017-10-05 09:49:00
125799    37686    909    2017-10-05 13:37:00    2017-10-05 13:37:00
125800    37687    639    2017-10-05 11:25:00    2017-10-05 11:25:00
125801    37687    582    2017-10-05 21:37:00    2017-10-05 21:37:00
125802    37687    837    2017-10-05 02:49:00    2017-10-05 02:49:00
125803    37687    687    2017-10-05 05:35:00    2017-10-05 05:35:00
125804    37687    512    2017-10-05 12:43:00    2017-10-05 12:43:00
125805    37688    665    2017-10-05 22:51:00    2017-10-05 22:51:00
125806    37688    873    2017-10-05 01:35:00    2017-10-05 01:35:00
125807    37688    882    2017-10-05 09:27:00    2017-10-05 09:27:00
125808    37688    818    2017-10-05 03:09:00    2017-10-05 03:09:00
125809    37688    893    2017-10-05 20:09:00    2017-10-05 20:09:00
125810    37689    747    2017-10-05 12:24:00    2017-10-05 12:24:00
125811    37689    634    2017-10-05 11:54:00    2017-10-05 11:54:00
125812    37689    554    2017-10-05 05:54:00    2017-10-05 05:54:00
125813    37689    806    2017-10-05 13:51:00    2017-10-05 13:51:00
125814    37689    719    2017-10-05 18:44:00    2017-10-05 18:44:00
125815    37690    644    2017-10-05 14:22:00    2017-10-05 14:22:00
125816    37690    488    2017-10-05 02:21:00    2017-10-05 02:21:00
125817    37690    791    2017-10-05 06:15:00    2017-10-05 06:15:00
125818    37690    923    2017-10-05 19:21:00    2017-10-05 19:21:00
125819    37690    545    2017-10-05 13:28:00    2017-10-05 13:28:00
125820    37691    928    2017-10-05 18:01:00    2017-10-05 18:01:00
125821    37691    644    2017-10-05 08:18:00    2017-10-05 08:18:00
125822    37691    541    2017-10-05 12:25:00    2017-10-05 12:25:00
125823    37691    688    2017-10-05 03:29:00    2017-10-05 03:29:00
125824    37691    694    2017-10-05 04:41:00    2017-10-05 04:41:00
125825    37692    591    2017-10-05 13:06:00    2017-10-05 13:06:00
125826    37692    758    2017-10-05 01:12:00    2017-10-05 01:12:00
125827    37692    702    2017-10-05 01:36:00    2017-10-05 01:36:00
125828    37692    890    2017-10-05 23:38:00    2017-10-05 23:38:00
125829    37692    631    2017-10-05 21:01:00    2017-10-05 21:01:00
125830    37693    475    2017-10-05 09:11:00    2017-10-05 09:11:00
125831    37693    562    2017-10-05 18:36:00    2017-10-05 18:36:00
125832    37693    647    2017-10-05 12:14:00    2017-10-05 12:14:00
125833    37693    626    2017-10-05 03:22:00    2017-10-05 03:22:00
125834    37693    878    2017-10-05 21:34:00    2017-10-05 21:34:00
125835    37694    710    2017-10-05 14:25:00    2017-10-05 14:25:00
125836    37694    604    2017-10-05 08:05:00    2017-10-05 08:05:00
125837    37694    925    2017-10-05 10:23:00    2017-10-05 10:23:00
125838    37694    940    2017-10-05 16:47:00    2017-10-05 16:47:00
125839    37694    607    2017-10-05 15:01:00    2017-10-05 15:01:00
125840    37695    519    2017-10-05 20:21:00    2017-10-05 20:21:00
125841    37695    917    2017-10-05 09:46:00    2017-10-05 09:46:00
125842    37695    647    2017-10-05 16:37:00    2017-10-05 16:37:00
125843    37695    955    2017-10-05 14:42:00    2017-10-05 14:42:00
125844    37695    628    2017-10-05 17:02:00    2017-10-05 17:02:00
125845    37696    665    2017-10-05 23:19:00    2017-10-05 23:19:00
125846    37696    830    2017-10-05 15:33:00    2017-10-05 15:33:00
125847    37696    676    2017-10-05 17:19:00    2017-10-05 17:19:00
125848    37696    741    2017-10-05 17:07:00    2017-10-05 17:07:00
125849    37696    702    2017-10-05 05:11:00    2017-10-05 05:11:00
125850    37697    477    2017-10-05 08:09:00    2017-10-05 08:09:00
125851    37697    678    2017-10-05 19:32:00    2017-10-05 19:32:00
125852    37697    542    2017-10-05 18:40:00    2017-10-05 18:40:00
125853    37697    464    2017-10-05 22:00:00    2017-10-05 22:00:00
125854    37697    638    2017-10-05 22:24:00    2017-10-05 22:24:00
125855    37698    584    2017-10-05 10:17:00    2017-10-05 10:17:00
125856    37698    509    2017-10-05 10:35:00    2017-10-05 10:35:00
125857    37698    918    2017-10-05 14:38:00    2017-10-05 14:38:00
125858    37698    633    2017-10-05 16:39:00    2017-10-05 16:39:00
125859    37698    797    2017-10-05 12:40:00    2017-10-05 12:40:00
125860    37699    608    2017-10-05 19:31:00    2017-10-05 19:31:00
125861    37699    919    2017-10-05 23:43:00    2017-10-05 23:43:00
125862    37699    771    2017-10-05 05:45:00    2017-10-05 05:45:00
125863    37699    871    2017-10-05 12:26:00    2017-10-05 12:26:00
125864    37699    524    2017-10-05 17:21:00    2017-10-05 17:21:00
125865    37700    746    2017-10-05 12:03:00    2017-10-05 12:03:00
125866    37700    611    2017-10-05 03:37:00    2017-10-05 03:37:00
125867    37700    742    2017-10-05 07:47:00    2017-10-05 07:47:00
125868    37700    861    2017-10-05 11:07:00    2017-10-05 11:07:00
125869    37700    913    2017-10-05 07:22:00    2017-10-05 07:22:00
125870    37701    728    2017-10-05 09:27:00    2017-10-05 09:27:00
125871    37701    658    2017-10-05 07:34:00    2017-10-05 07:34:00
125872    37701    480    2017-10-05 14:52:00    2017-10-05 14:52:00
125873    37701    948    2017-10-05 21:00:00    2017-10-05 21:00:00
125874    37701    961    2017-10-05 11:44:00    2017-10-05 11:44:00
125875    37702    898    2017-10-05 01:05:00    2017-10-05 01:05:00
125876    37702    829    2017-10-05 07:36:00    2017-10-05 07:36:00
125877    37702    512    2017-10-05 13:20:00    2017-10-05 13:20:00
125878    37702    767    2017-10-05 22:11:00    2017-10-05 22:11:00
125879    37702    875    2017-10-05 13:04:00    2017-10-05 13:04:00
125880    37703    765    2017-10-05 16:56:00    2017-10-05 16:56:00
125881    37703    641    2017-10-05 12:03:00    2017-10-05 12:03:00
125882    37703    657    2017-10-05 16:59:00    2017-10-05 16:59:00
125883    37703    530    2017-10-05 05:38:00    2017-10-05 05:38:00
125884    37703    785    2017-10-05 12:35:00    2017-10-05 12:35:00
125885    37704    672    2017-10-05 03:51:00    2017-10-05 03:51:00
125886    37704    571    2017-10-05 09:22:00    2017-10-05 09:22:00
125887    37704    546    2017-10-05 05:43:00    2017-10-05 05:43:00
125888    37704    881    2017-10-05 14:55:00    2017-10-05 14:55:00
125889    37704    752    2017-10-05 06:55:00    2017-10-05 06:55:00
125890    37705    690    2017-10-05 21:00:00    2017-10-05 21:00:00
125891    37705    832    2017-10-05 15:36:00    2017-10-05 15:36:00
125892    37705    718    2017-10-05 23:17:00    2017-10-05 23:17:00
125893    37705    575    2017-10-05 12:03:00    2017-10-05 12:03:00
125894    37705    690    2017-10-05 09:36:00    2017-10-05 09:36:00
125895    37706    957    2017-10-05 01:11:00    2017-10-05 01:11:00
125896    37706    506    2017-10-05 15:07:00    2017-10-05 15:07:00
125897    37706    684    2017-10-05 04:03:00    2017-10-05 04:03:00
125898    37706    840    2017-10-05 05:45:00    2017-10-05 05:45:00
125899    37706    782    2017-10-05 02:40:00    2017-10-05 02:40:00
125900    37707    532    2017-10-05 08:09:00    2017-10-05 08:09:00
125901    37707    783    2017-10-05 06:32:00    2017-10-05 06:32:00
125902    37707    809    2017-10-05 07:11:00    2017-10-05 07:11:00
125903    37707    680    2017-10-05 13:10:00    2017-10-05 13:10:00
125904    37707    642    2017-10-05 08:01:00    2017-10-05 08:01:00
125905    37708    736    2017-10-05 09:06:00    2017-10-05 09:06:00
125906    37708    712    2017-10-05 02:14:00    2017-10-05 02:14:00
125907    37708    952    2017-10-05 20:03:00    2017-10-05 20:03:00
125908    37708    941    2017-10-05 11:00:00    2017-10-05 11:00:00
125909    37708    930    2017-10-05 23:49:00    2017-10-05 23:49:00
125910    37709    929    2017-10-05 23:39:00    2017-10-05 23:39:00
125911    37709    679    2017-10-05 23:23:00    2017-10-05 23:23:00
125912    37709    592    2017-10-05 08:12:00    2017-10-05 08:12:00
125913    37709    670    2017-10-05 08:44:00    2017-10-05 08:44:00
125914    37709    533    2017-10-05 02:49:00    2017-10-05 02:49:00
125915    37710    681    2017-10-05 06:56:00    2017-10-05 06:56:00
125916    37710    578    2017-10-05 20:07:00    2017-10-05 20:07:00
125917    37710    848    2017-10-05 22:25:00    2017-10-05 22:25:00
125918    37710    895    2017-10-05 14:55:00    2017-10-05 14:55:00
125919    37710    796    2017-10-05 03:36:00    2017-10-05 03:36:00
125920    37711    642    2017-10-05 23:35:00    2017-10-05 23:35:00
125921    37711    867    2017-10-05 05:44:00    2017-10-05 05:44:00
125922    37711    552    2017-10-05 20:08:00    2017-10-05 20:08:00
125923    37711    719    2017-10-05 05:15:00    2017-10-05 05:15:00
125924    37711    887    2017-10-05 19:16:00    2017-10-05 19:16:00
125925    37712    532    2017-10-05 07:00:00    2017-10-05 07:00:00
125926    37712    703    2017-10-05 02:33:00    2017-10-05 02:33:00
125927    37712    646    2017-10-05 03:54:00    2017-10-05 03:54:00
125928    37712    623    2017-10-05 07:17:00    2017-10-05 07:17:00
125929    37712    609    2017-10-05 02:27:00    2017-10-05 02:27:00
125930    37713    533    2017-10-05 03:57:00    2017-10-05 03:57:00
125931    37713    563    2017-10-05 05:04:00    2017-10-05 05:04:00
125932    37713    939    2017-10-05 18:47:00    2017-10-05 18:47:00
125933    37713    860    2017-10-05 16:01:00    2017-10-05 16:01:00
125934    37713    649    2017-10-05 19:24:00    2017-10-05 19:24:00
125935    37714    620    2017-10-05 13:38:00    2017-10-05 13:38:00
125936    37714    731    2017-10-05 17:30:00    2017-10-05 17:30:00
125937    37714    935    2017-10-05 04:24:00    2017-10-05 04:24:00
125938    37714    595    2017-10-05 06:03:00    2017-10-05 06:03:00
125939    37714    761    2017-10-05 02:39:00    2017-10-05 02:39:00
125940    37715    481    2017-10-05 22:26:00    2017-10-05 22:26:00
125941    37715    469    2017-10-05 14:01:00    2017-10-05 14:01:00
125942    37715    673    2017-10-05 09:15:00    2017-10-05 09:15:00
125943    37715    813    2017-10-05 10:00:00    2017-10-05 10:00:00
125944    37715    479    2017-10-05 18:46:00    2017-10-05 18:46:00
125945    37716    926    2017-10-05 13:46:00    2017-10-05 13:46:00
125946    37716    890    2017-10-05 22:20:00    2017-10-05 22:20:00
125947    37716    798    2017-10-05 12:46:00    2017-10-05 12:46:00
125948    37716    509    2017-10-05 04:12:00    2017-10-05 04:12:00
125949    37716    688    2017-10-05 11:02:00    2017-10-05 11:02:00
125950    37717    719    2017-10-05 14:08:00    2017-10-05 14:08:00
125951    37717    834    2017-10-05 04:11:00    2017-10-05 04:11:00
125952    37717    634    2017-10-05 11:14:00    2017-10-05 11:14:00
125953    37717    553    2017-10-05 18:59:00    2017-10-05 18:59:00
125954    37717    910    2017-10-05 05:45:00    2017-10-05 05:45:00
125955    37718    843    2017-10-05 17:52:00    2017-10-05 17:52:00
125956    37718    678    2017-10-05 23:21:00    2017-10-05 23:21:00
125957    37718    668    2017-10-05 16:38:00    2017-10-05 16:38:00
125958    37718    714    2017-10-05 08:11:00    2017-10-05 08:11:00
125959    37718    837    2017-10-05 12:39:00    2017-10-05 12:39:00
125960    37719    774    2017-10-05 16:23:00    2017-10-05 16:23:00
125961    37719    942    2017-10-05 23:48:00    2017-10-05 23:48:00
125962    37719    712    2017-10-05 21:41:00    2017-10-05 21:41:00
125963    37719    737    2017-10-05 16:19:00    2017-10-05 16:19:00
125964    37719    600    2017-10-05 19:54:00    2017-10-05 19:54:00
125965    37720    780    2017-10-05 21:12:00    2017-10-05 21:12:00
125966    37720    577    2017-10-05 18:20:00    2017-10-05 18:20:00
125967    37720    789    2017-10-05 05:03:00    2017-10-05 05:03:00
125968    37720    464    2017-10-05 22:52:00    2017-10-05 22:52:00
125969    37720    589    2017-10-05 06:38:00    2017-10-05 06:38:00
125970    37721    624    2017-10-05 23:45:00    2017-10-05 23:45:00
125971    37721    708    2017-10-05 04:49:00    2017-10-05 04:49:00
125972    37721    594    2017-10-05 16:19:00    2017-10-05 16:19:00
125973    37721    482    2017-10-05 23:57:00    2017-10-05 23:57:00
125974    37721    518    2017-10-05 13:44:00    2017-10-05 13:44:00
125975    37722    905    2017-10-05 18:28:00    2017-10-05 18:28:00
125976    37722    542    2017-10-05 06:04:00    2017-10-05 06:04:00
125977    37722    949    2017-10-05 15:55:00    2017-10-05 15:55:00
125978    37722    792    2017-10-05 09:42:00    2017-10-05 09:42:00
125979    37722    612    2017-10-05 03:46:00    2017-10-05 03:46:00
125980    37723    805    2017-10-05 04:28:00    2017-10-05 04:28:00
125981    37723    833    2017-10-05 13:28:00    2017-10-05 13:28:00
125982    37723    469    2017-10-05 10:10:00    2017-10-05 10:10:00
125983    37723    535    2017-10-05 20:23:00    2017-10-05 20:23:00
125984    37723    482    2017-10-05 13:38:00    2017-10-05 13:38:00
125985    37724    632    2017-10-05 05:22:00    2017-10-05 05:22:00
125986    37724    526    2017-10-05 23:25:00    2017-10-05 23:25:00
125987    37724    506    2017-10-05 14:12:00    2017-10-05 14:12:00
125988    37724    466    2017-10-05 08:31:00    2017-10-05 08:31:00
125989    37724    671    2017-10-05 22:53:00    2017-10-05 22:53:00
125990    37725    502    2017-10-06 09:18:00    2017-10-06 09:18:00
125991    37725    951    2017-10-06 06:45:00    2017-10-06 06:45:00
125992    37725    803    2017-10-06 19:41:00    2017-10-06 19:41:00
125993    37725    556    2017-10-06 11:06:00    2017-10-06 11:06:00
125994    37725    573    2017-10-06 23:13:00    2017-10-06 23:13:00
125995    37726    832    2017-10-06 03:19:00    2017-10-06 03:19:00
125996    37726    466    2017-10-06 14:52:00    2017-10-06 14:52:00
125997    37726    809    2017-10-06 11:03:00    2017-10-06 11:03:00
125998    37726    734    2017-10-06 23:19:00    2017-10-06 23:19:00
125999    37726    567    2017-10-06 11:21:00    2017-10-06 11:21:00
126000    37727    588    2017-10-06 23:24:00    2017-10-06 23:24:00
126001    37727    664    2017-10-06 04:02:00    2017-10-06 04:02:00
126002    37727    824    2017-10-06 20:31:00    2017-10-06 20:31:00
126003    37727    851    2017-10-06 02:30:00    2017-10-06 02:30:00
126004    37727    613    2017-10-06 09:41:00    2017-10-06 09:41:00
126005    37728    548    2017-10-06 08:56:00    2017-10-06 08:56:00
126006    37728    810    2017-10-06 22:12:00    2017-10-06 22:12:00
126007    37728    472    2017-10-06 11:09:00    2017-10-06 11:09:00
126008    37728    622    2017-10-06 10:27:00    2017-10-06 10:27:00
126009    37728    657    2017-10-06 17:50:00    2017-10-06 17:50:00
126010    37729    900    2017-10-06 09:54:00    2017-10-06 09:54:00
126011    37729    871    2017-10-06 08:40:00    2017-10-06 08:40:00
126012    37729    585    2017-10-06 09:50:00    2017-10-06 09:50:00
126013    37729    922    2017-10-06 22:32:00    2017-10-06 22:32:00
126014    37729    922    2017-10-06 09:52:00    2017-10-06 09:52:00
126015    37730    826    2017-10-06 07:44:00    2017-10-06 07:44:00
126016    37730    753    2017-10-06 21:51:00    2017-10-06 21:51:00
126017    37730    637    2017-10-06 19:13:00    2017-10-06 19:13:00
126018    37730    595    2017-10-06 18:00:00    2017-10-06 18:00:00
126019    37730    510    2017-10-06 08:36:00    2017-10-06 08:36:00
126020    37731    888    2017-10-06 22:30:00    2017-10-06 22:30:00
126021    37731    734    2017-10-06 09:21:00    2017-10-06 09:21:00
126022    37731    835    2017-10-06 08:06:00    2017-10-06 08:06:00
126023    37731    589    2017-10-06 09:44:00    2017-10-06 09:44:00
126024    37731    693    2017-10-06 11:17:00    2017-10-06 11:17:00
126025    37732    646    2017-10-06 12:27:00    2017-10-06 12:27:00
126026    37732    471    2017-10-06 14:18:00    2017-10-06 14:18:00
126027    37732    730    2017-10-06 23:37:00    2017-10-06 23:37:00
126028    37732    678    2017-10-06 22:35:00    2017-10-06 22:35:00
126029    37732    945    2017-10-06 13:10:00    2017-10-06 13:10:00
126030    37733    558    2017-10-06 04:31:00    2017-10-06 04:31:00
126031    37733    562    2017-10-07 00:00:00    2017-10-07 00:00:00
126032    37733    908    2017-10-06 11:03:00    2017-10-06 11:03:00
126033    37733    683    2017-10-06 20:04:00    2017-10-06 20:04:00
126034    37733    500    2017-10-06 10:27:00    2017-10-06 10:27:00
126035    37734    639    2017-10-06 16:10:00    2017-10-06 16:10:00
126036    37734    727    2017-10-06 14:36:00    2017-10-06 14:36:00
126037    37734    910    2017-10-06 08:06:00    2017-10-06 08:06:00
126038    37734    679    2017-10-06 22:45:00    2017-10-06 22:45:00
126039    37734    524    2017-10-06 18:05:00    2017-10-06 18:05:00
126040    37735    647    2017-10-06 08:17:00    2017-10-06 08:17:00
126041    37735    766    2017-10-06 12:00:00    2017-10-06 12:00:00
126042    37735    851    2017-10-06 04:54:00    2017-10-06 04:54:00
126043    37735    484    2017-10-06 13:49:00    2017-10-06 13:49:00
126044    37735    781    2017-10-06 10:23:00    2017-10-06 10:23:00
126045    37736    621    2017-10-06 08:11:00    2017-10-06 08:11:00
126046    37736    645    2017-10-06 14:08:00    2017-10-06 14:08:00
126047    37736    834    2017-10-06 02:30:00    2017-10-06 02:30:00
126048    37736    812    2017-10-06 17:56:00    2017-10-06 17:56:00
126049    37736    516    2017-10-06 09:02:00    2017-10-06 09:02:00
126050    37737    794    2017-10-06 07:03:00    2017-10-06 07:03:00
126051    37737    756    2017-10-06 18:56:00    2017-10-06 18:56:00
126052    37737    753    2017-10-06 01:41:00    2017-10-06 01:41:00
126053    37737    844    2017-10-06 02:02:00    2017-10-06 02:02:00
126054    37737    503    2017-10-06 06:12:00    2017-10-06 06:12:00
126055    37738    743    2017-10-06 16:02:00    2017-10-06 16:02:00
126056    37738    467    2017-10-06 18:00:00    2017-10-06 18:00:00
126057    37738    910    2017-10-06 20:35:00    2017-10-06 20:35:00
126058    37738    886    2017-10-06 01:03:00    2017-10-06 01:03:00
126059    37738    950    2017-10-06 03:00:00    2017-10-06 03:00:00
126060    37739    870    2017-10-06 13:48:00    2017-10-06 13:48:00
126061    37739    693    2017-10-06 23:12:00    2017-10-06 23:12:00
126062    37739    736    2017-10-06 18:37:00    2017-10-06 18:37:00
126063    37739    542    2017-10-06 10:19:00    2017-10-06 10:19:00
126064    37739    539    2017-10-06 22:03:00    2017-10-06 22:03:00
126065    37740    791    2017-10-07 14:54:00    2017-10-07 14:54:00
126066    37740    468    2017-10-07 11:37:00    2017-10-07 11:37:00
126067    37740    626    2017-10-07 04:53:00    2017-10-07 04:53:00
126068    37740    661    2017-10-07 17:48:00    2017-10-07 17:48:00
126069    37740    669    2017-10-07 23:49:00    2017-10-07 23:49:00
126070    37741    707    2017-10-07 23:16:00    2017-10-07 23:16:00
126071    37741    841    2017-10-07 01:14:00    2017-10-07 01:14:00
126072    37741    867    2017-10-07 08:08:00    2017-10-07 08:08:00
126073    37741    797    2017-10-07 10:37:00    2017-10-07 10:37:00
126074    37741    594    2017-10-07 17:47:00    2017-10-07 17:47:00
126075    37742    504    2017-10-07 18:00:00    2017-10-07 18:00:00
126076    37742    508    2017-10-07 05:36:00    2017-10-07 05:36:00
126077    37742    925    2017-10-07 12:46:00    2017-10-07 12:46:00
126078    37742    579    2017-10-07 05:37:00    2017-10-07 05:37:00
126079    37742    775    2017-10-07 12:08:00    2017-10-07 12:08:00
126080    37743    724    2017-10-07 13:21:00    2017-10-07 13:21:00
126081    37743    664    2017-10-07 23:17:00    2017-10-07 23:17:00
126082    37743    625    2017-10-07 17:42:00    2017-10-07 17:42:00
126083    37743    694    2017-10-07 22:33:00    2017-10-07 22:33:00
126084    37743    738    2017-10-07 08:30:00    2017-10-07 08:30:00
126085    37744    586    2017-10-07 18:28:00    2017-10-07 18:28:00
126086    37744    474    2017-10-07 23:47:00    2017-10-07 23:47:00
126087    37744    909    2017-10-07 12:56:00    2017-10-07 12:56:00
126088    37744    477    2017-10-07 21:59:00    2017-10-07 21:59:00
126089    37744    672    2017-10-07 15:11:00    2017-10-07 15:11:00
126090    37745    911    2017-10-07 17:48:00    2017-10-07 17:48:00
126091    37745    704    2017-10-07 15:07:00    2017-10-07 15:07:00
126092    37745    675    2017-10-07 17:00:00    2017-10-07 17:00:00
126093    37745    955    2017-10-07 02:32:00    2017-10-07 02:32:00
126094    37745    922    2017-10-07 09:34:00    2017-10-07 09:34:00
126095    37746    915    2017-10-07 19:33:00    2017-10-07 19:33:00
126096    37746    824    2017-10-07 23:27:00    2017-10-07 23:27:00
126097    37746    944    2017-10-07 19:17:00    2017-10-07 19:17:00
126098    37746    845    2017-10-07 12:57:00    2017-10-07 12:57:00
126099    37746    509    2017-10-07 01:08:00    2017-10-07 01:08:00
126100    37747    760    2017-10-07 08:41:00    2017-10-07 08:41:00
126101    37747    717    2017-10-07 10:59:00    2017-10-07 10:59:00
126102    37747    942    2017-10-07 04:38:00    2017-10-07 04:38:00
126103    37747    830    2017-10-07 16:39:00    2017-10-07 16:39:00
126104    37747    526    2017-10-07 19:58:00    2017-10-07 19:58:00
126105    37748    852    2017-10-07 12:38:00    2017-10-07 12:38:00
126106    37748    938    2017-10-07 09:16:00    2017-10-07 09:16:00
126107    37748    533    2017-10-07 14:58:00    2017-10-07 14:58:00
126108    37748    687    2017-10-07 22:20:00    2017-10-07 22:20:00
126109    37748    933    2017-10-07 03:41:00    2017-10-07 03:41:00
126110    37749    593    2017-10-07 07:05:00    2017-10-07 07:05:00
126111    37749    671    2017-10-07 03:12:00    2017-10-07 03:12:00
126112    37749    506    2017-10-07 01:39:00    2017-10-07 01:39:00
126113    37749    764    2017-10-07 21:26:00    2017-10-07 21:26:00
126114    37749    686    2017-10-07 20:43:00    2017-10-07 20:43:00
126115    37750    545    2017-10-07 13:48:00    2017-10-07 13:48:00
126116    37750    789    2017-10-07 07:59:00    2017-10-07 07:59:00
126117    37750    515    2017-10-07 11:02:00    2017-10-07 11:02:00
126118    37750    660    2017-10-07 23:00:00    2017-10-07 23:00:00
126119    37750    480    2017-10-07 17:15:00    2017-10-07 17:15:00
126120    37751    704    2017-10-07 06:10:00    2017-10-07 06:10:00
126121    37751    508    2017-10-07 03:44:00    2017-10-07 03:44:00
126122    37751    929    2017-10-07 08:21:00    2017-10-07 08:21:00
126123    37751    756    2017-10-07 12:22:00    2017-10-07 12:22:00
126124    37751    651    2017-10-07 09:40:00    2017-10-07 09:40:00
126125    37752    660    2017-10-07 16:10:00    2017-10-07 16:10:00
126126    37752    797    2017-10-07 19:58:00    2017-10-07 19:58:00
126127    37752    778    2017-10-07 15:54:00    2017-10-07 15:54:00
126128    37752    792    2017-10-07 21:09:00    2017-10-07 21:09:00
126129    37752    613    2017-10-07 15:01:00    2017-10-07 15:01:00
126130    37753    562    2017-10-07 22:13:00    2017-10-07 22:13:00
126131    37753    716    2017-10-07 03:53:00    2017-10-07 03:53:00
126132    37753    940    2017-10-07 16:00:00    2017-10-07 16:00:00
126133    37753    716    2017-10-07 20:31:00    2017-10-07 20:31:00
126134    37753    525    2017-10-07 19:30:00    2017-10-07 19:30:00
126135    37754    935    2017-10-07 20:27:00    2017-10-07 20:27:00
126136    37754    723    2017-10-07 09:34:00    2017-10-07 09:34:00
126137    37754    604    2017-10-07 13:21:00    2017-10-07 13:21:00
126138    37754    674    2017-10-07 02:39:00    2017-10-07 02:39:00
126139    37754    927    2017-10-07 10:57:00    2017-10-07 10:57:00
126140    37755    542    2017-10-07 12:12:00    2017-10-07 12:12:00
126141    37755    812    2017-10-07 11:53:00    2017-10-07 11:53:00
126142    37755    939    2017-10-07 17:42:00    2017-10-07 17:42:00
126143    37755    512    2017-10-07 04:18:00    2017-10-07 04:18:00
126144    37755    544    2017-10-07 17:26:00    2017-10-07 17:26:00
126145    37756    716    2017-10-07 07:21:00    2017-10-07 07:21:00
126146    37756    937    2017-10-07 12:34:00    2017-10-07 12:34:00
126147    37756    691    2017-10-07 07:21:00    2017-10-07 07:21:00
126148    37756    732    2017-10-07 20:12:00    2017-10-07 20:12:00
126149    37756    780    2017-10-07 11:24:00    2017-10-07 11:24:00
126150    37757    917    2017-10-07 22:12:00    2017-10-07 22:12:00
126151    37757    863    2017-10-07 07:08:00    2017-10-07 07:08:00
126152    37757    774    2017-10-07 05:00:00    2017-10-07 05:00:00
126153    37757    500    2017-10-07 13:39:00    2017-10-07 13:39:00
126154    37757    564    2017-10-07 19:07:00    2017-10-07 19:07:00
126155    37758    547    2017-10-07 18:38:00    2017-10-07 18:38:00
126156    37758    668    2017-10-07 19:15:00    2017-10-07 19:15:00
126157    37758    844    2017-10-07 19:09:00    2017-10-07 19:09:00
126158    37758    800    2017-10-07 03:55:00    2017-10-07 03:55:00
126159    37758    502    2017-10-07 17:09:00    2017-10-07 17:09:00
126160    37759    518    2017-10-07 08:51:00    2017-10-07 08:51:00
126161    37759    767    2017-10-07 10:28:00    2017-10-07 10:28:00
126162    37759    529    2017-10-07 21:29:00    2017-10-07 21:29:00
126163    37759    853    2017-10-07 16:49:00    2017-10-07 16:49:00
126164    37759    920    2017-10-07 07:38:00    2017-10-07 07:38:00
126165    37760    670    2017-10-07 01:15:00    2017-10-07 01:15:00
126166    37760    503    2017-10-07 05:48:00    2017-10-07 05:48:00
126167    37760    618    2017-10-07 10:52:00    2017-10-07 10:52:00
126168    37760    882    2017-10-07 23:11:00    2017-10-07 23:11:00
126169    37760    712    2017-10-07 21:01:00    2017-10-07 21:01:00
126170    37761    681    2017-10-07 15:42:00    2017-10-07 15:42:00
126171    37761    499    2017-10-07 05:36:00    2017-10-07 05:36:00
126172    37761    838    2017-10-07 08:13:00    2017-10-07 08:13:00
126173    37761    783    2017-10-07 18:45:00    2017-10-07 18:45:00
126174    37761    890    2017-10-07 17:04:00    2017-10-07 17:04:00
126175    37762    669    2017-10-07 04:47:00    2017-10-07 04:47:00
126176    37762    717    2017-10-07 23:32:00    2017-10-07 23:32:00
126177    37762    498    2017-10-07 08:31:00    2017-10-07 08:31:00
126178    37762    856    2017-10-07 11:17:00    2017-10-07 11:17:00
126179    37762    553    2017-10-07 04:06:00    2017-10-07 04:06:00
126180    37763    632    2017-10-07 12:13:00    2017-10-07 12:13:00
126181    37763    838    2017-10-07 04:32:00    2017-10-07 04:32:00
126182    37763    908    2017-10-07 05:15:00    2017-10-07 05:15:00
126183    37763    572    2017-10-07 20:02:00    2017-10-07 20:02:00
126184    37763    906    2017-10-07 16:48:00    2017-10-07 16:48:00
126185    37764    747    2017-10-07 23:01:00    2017-10-07 23:01:00
126186    37764    615    2017-10-07 02:00:00    2017-10-07 02:00:00
126187    37764    744    2017-10-07 16:25:00    2017-10-07 16:25:00
126188    37764    647    2017-10-07 18:09:00    2017-10-07 18:09:00
126189    37764    644    2017-10-07 15:01:00    2017-10-07 15:01:00
126190    37765    760    2017-10-07 09:23:00    2017-10-07 09:23:00
126191    37765    464    2017-10-07 06:10:00    2017-10-07 06:10:00
126192    37765    777    2017-10-07 09:23:00    2017-10-07 09:23:00
126193    37765    872    2017-10-07 05:25:00    2017-10-07 05:25:00
126194    37765    844    2017-10-07 16:21:00    2017-10-07 16:21:00
126195    37766    587    2017-10-07 14:44:00    2017-10-07 14:44:00
126196    37766    672    2017-10-07 14:08:00    2017-10-07 14:08:00
126197    37766    714    2017-10-07 08:32:00    2017-10-07 08:32:00
126198    37766    524    2017-10-07 16:35:00    2017-10-07 16:35:00
126199    37766    871    2017-10-07 06:16:00    2017-10-07 06:16:00
126200    37767    636    2017-10-07 16:00:00    2017-10-07 16:00:00
126201    37767    472    2017-10-07 14:00:00    2017-10-07 14:00:00
126202    37767    799    2017-10-07 05:08:00    2017-10-07 05:08:00
126203    37767    734    2017-10-07 14:13:00    2017-10-07 14:13:00
126204    37767    670    2017-10-07 16:57:00    2017-10-07 16:57:00
126205    37768    683    2017-10-07 03:29:00    2017-10-07 03:29:00
126206    37768    574    2017-10-07 21:26:00    2017-10-07 21:26:00
126207    37768    505    2017-10-07 09:01:00    2017-10-07 09:01:00
126208    37768    898    2017-10-07 23:00:00    2017-10-07 23:00:00
126209    37768    712    2017-10-07 19:16:00    2017-10-07 19:16:00
126210    37769    779    2017-10-07 19:21:00    2017-10-07 19:21:00
126211    37769    474    2017-10-07 03:59:00    2017-10-07 03:59:00
126212    37769    656    2017-10-07 03:03:00    2017-10-07 03:03:00
126213    37769    888    2017-10-07 09:27:00    2017-10-07 09:27:00
126214    37769    548    2017-10-07 20:15:00    2017-10-07 20:15:00
126215    37770    555    2017-10-07 05:05:00    2017-10-07 05:05:00
126216    37770    491    2017-10-07 18:44:00    2017-10-07 18:44:00
126217    37770    671    2017-10-07 11:48:00    2017-10-07 11:48:00
126218    37770    805    2017-10-07 23:33:00    2017-10-07 23:33:00
126219    37770    847    2017-10-07 12:59:00    2017-10-07 12:59:00
126220    37771    730    2017-10-07 12:07:00    2017-10-07 12:07:00
126221    37771    588    2017-10-07 02:42:00    2017-10-07 02:42:00
126222    37771    508    2017-10-07 14:09:00    2017-10-07 14:09:00
126223    37771    760    2017-10-07 19:49:00    2017-10-07 19:49:00
126224    37771    566    2017-10-07 23:42:00    2017-10-07 23:42:00
126225    37772    499    2017-10-07 05:29:00    2017-10-07 05:29:00
126226    37772    930    2017-10-07 14:14:00    2017-10-07 14:14:00
126227    37772    928    2017-10-07 11:28:00    2017-10-07 11:28:00
126228    37772    762    2017-10-07 04:02:00    2017-10-07 04:02:00
126229    37772    645    2017-10-07 22:25:00    2017-10-07 22:25:00
126230    37773    960    2017-10-07 16:52:00    2017-10-07 16:52:00
126231    37773    870    2017-10-07 21:53:00    2017-10-07 21:53:00
126232    37773    850    2017-10-07 22:02:00    2017-10-07 22:02:00
126233    37773    856    2017-10-07 19:10:00    2017-10-07 19:10:00
126234    37773    565    2017-10-07 22:00:00    2017-10-07 22:00:00
126235    37774    670    2017-10-07 02:42:00    2017-10-07 02:42:00
126236    37774    505    2017-10-07 12:19:00    2017-10-07 12:19:00
126237    37774    487    2017-10-07 10:36:00    2017-10-07 10:36:00
126238    37774    628    2017-10-07 17:32:00    2017-10-07 17:32:00
126239    37774    762    2017-10-07 22:50:00    2017-10-07 22:50:00
126240    37775    479    2017-10-07 04:41:00    2017-10-07 04:41:00
126241    37775    713    2017-10-07 08:43:00    2017-10-07 08:43:00
126242    37775    914    2017-10-07 18:43:00    2017-10-07 18:43:00
126243    37775    744    2017-10-07 21:00:00    2017-10-07 21:00:00
126244    37775    582    2017-10-07 21:55:00    2017-10-07 21:55:00
126245    37776    506    2017-10-07 03:13:00    2017-10-07 03:13:00
126246    37776    592    2017-10-07 06:50:00    2017-10-07 06:50:00
126247    37776    930    2017-10-07 15:19:00    2017-10-07 15:19:00
126248    37776    515    2017-10-07 14:17:00    2017-10-07 14:17:00
126249    37776    519    2017-10-07 14:55:00    2017-10-07 14:55:00
126250    37777    740    2017-10-07 17:40:00    2017-10-07 17:40:00
126251    37777    776    2017-10-07 05:15:00    2017-10-07 05:15:00
126252    37777    555    2017-10-07 05:59:00    2017-10-07 05:59:00
126253    37777    804    2017-10-07 05:17:00    2017-10-07 05:17:00
126254    37777    842    2017-10-07 23:57:00    2017-10-07 23:57:00
126255    37778    604    2017-10-07 09:41:00    2017-10-07 09:41:00
126256    37778    618    2017-10-07 02:56:00    2017-10-07 02:56:00
126257    37778    496    2017-10-07 11:11:00    2017-10-07 11:11:00
126258    37778    892    2017-10-07 23:12:00    2017-10-07 23:12:00
126259    37778    744    2017-10-07 14:03:00    2017-10-07 14:03:00
126260    37779    553    2017-10-07 22:56:00    2017-10-07 22:56:00
126261    37779    888    2017-10-07 05:23:00    2017-10-07 05:23:00
126262    37779    645    2017-10-07 16:05:00    2017-10-07 16:05:00
126263    37779    478    2017-10-07 10:19:00    2017-10-07 10:19:00
126264    37779    636    2017-10-07 19:13:00    2017-10-07 19:13:00
126265    37780    682    2017-10-07 14:35:00    2017-10-07 14:35:00
126266    37780    905    2017-10-07 12:06:00    2017-10-07 12:06:00
126267    37780    509    2017-10-07 20:23:00    2017-10-07 20:23:00
126268    37780    836    2017-10-07 08:21:00    2017-10-07 08:21:00
126269    37780    476    2017-10-07 04:46:00    2017-10-07 04:46:00
126270    37781    521    2017-10-07 15:38:00    2017-10-07 15:38:00
126271    37781    702    2017-10-07 01:42:00    2017-10-07 01:42:00
126272    37781    620    2017-10-07 05:39:00    2017-10-07 05:39:00
126273    37781    955    2017-10-07 21:38:00    2017-10-07 21:38:00
126274    37781    819    2017-10-07 16:06:00    2017-10-07 16:06:00
126275    37782    634    2017-10-07 12:56:00    2017-10-07 12:56:00
126276    37782    924    2017-10-07 21:24:00    2017-10-07 21:24:00
126277    37782    886    2017-10-07 06:50:00    2017-10-07 06:50:00
126278    37782    710    2017-10-07 21:42:00    2017-10-07 21:42:00
126279    37782    608    2017-10-07 14:50:00    2017-10-07 14:50:00
126280    37783    601    2017-10-07 06:33:00    2017-10-07 06:33:00
126281    37783    925    2017-10-07 16:25:00    2017-10-07 16:25:00
126282    37783    498    2017-10-07 01:40:00    2017-10-07 01:40:00
126283    37783    541    2017-10-07 09:40:00    2017-10-07 09:40:00
126284    37783    571    2017-10-07 22:54:00    2017-10-07 22:54:00
126285    37784    683    2017-10-07 16:07:00    2017-10-07 16:07:00
126286    37784    940    2017-10-07 10:14:00    2017-10-07 10:14:00
126287    37784    832    2017-10-07 09:01:00    2017-10-07 09:01:00
126288    37784    851    2017-10-07 20:59:00    2017-10-07 20:59:00
126289    37784    678    2017-10-07 20:11:00    2017-10-07 20:11:00
126290    37785    635    2017-10-07 07:43:00    2017-10-07 07:43:00
126291    37785    520    2017-10-07 05:33:00    2017-10-07 05:33:00
126292    37785    838    2017-10-07 10:22:00    2017-10-07 10:22:00
126293    37785    600    2017-10-07 21:07:00    2017-10-07 21:07:00
126294    37785    621    2017-10-07 19:28:00    2017-10-07 19:28:00
126295    37786    624    2017-10-07 23:31:00    2017-10-07 23:31:00
126296    37786    687    2017-10-07 10:13:00    2017-10-07 10:13:00
126297    37786    467    2017-10-07 15:30:00    2017-10-07 15:30:00
126298    37786    635    2017-10-07 18:14:00    2017-10-07 18:14:00
126299    37786    559    2017-10-07 09:58:00    2017-10-07 09:58:00
126300    37787    683    2017-10-07 12:24:00    2017-10-07 12:24:00
126301    37787    888    2017-10-07 15:32:00    2017-10-07 15:32:00
126302    37787    856    2017-10-07 07:22:00    2017-10-07 07:22:00
126303    37787    952    2017-10-07 11:30:00    2017-10-07 11:30:00
126304    37787    843    2017-10-07 20:18:00    2017-10-07 20:18:00
126305    37788    646    2017-10-07 17:54:00    2017-10-07 17:54:00
126306    37788    581    2017-10-07 17:30:00    2017-10-07 17:30:00
126307    37788    551    2017-10-07 08:48:00    2017-10-07 08:48:00
126308    37788    705    2017-10-07 20:31:00    2017-10-07 20:31:00
126309    37788    585    2017-10-07 22:22:00    2017-10-07 22:22:00
126310    37789    832    2017-10-07 21:23:00    2017-10-07 21:23:00
126311    37789    561    2017-10-07 09:52:00    2017-10-07 09:52:00
126312    37789    584    2017-10-07 05:05:00    2017-10-07 05:05:00
126313    37789    780    2017-10-07 16:17:00    2017-10-07 16:17:00
126314    37789    858    2017-10-07 21:34:00    2017-10-07 21:34:00
126315    37790    730    2017-10-07 21:42:00    2017-10-07 21:42:00
126316    37790    928    2017-10-07 23:09:00    2017-10-07 23:09:00
126317    37790    533    2017-10-07 03:01:00    2017-10-07 03:01:00
126318    37790    597    2017-10-07 07:47:00    2017-10-07 07:47:00
126319    37790    602    2017-10-07 12:53:00    2017-10-07 12:53:00
126320    37791    844    2017-10-07 18:29:00    2017-10-07 18:29:00
126321    37791    521    2017-10-07 22:59:00    2017-10-07 22:59:00
126322    37791    869    2017-10-07 06:29:00    2017-10-07 06:29:00
126323    37791    776    2017-10-07 14:16:00    2017-10-07 14:16:00
126324    37791    495    2017-10-07 14:23:00    2017-10-07 14:23:00
126325    37792    731    2017-10-07 19:40:00    2017-10-07 19:40:00
126326    37792    780    2017-10-07 11:25:00    2017-10-07 11:25:00
126327    37792    732    2017-10-07 06:17:00    2017-10-07 06:17:00
126328    37792    552    2017-10-07 19:08:00    2017-10-07 19:08:00
126329    37792    818    2017-10-07 12:22:00    2017-10-07 12:22:00
126330    37793    596    2017-10-07 05:27:00    2017-10-07 05:27:00
126331    37793    542    2017-10-07 04:20:00    2017-10-07 04:20:00
126332    37793    860    2017-10-07 09:59:00    2017-10-07 09:59:00
126333    37793    665    2017-10-07 11:18:00    2017-10-07 11:18:00
126334    37793    509    2017-10-07 11:17:00    2017-10-07 11:17:00
126335    37794    943    2017-10-07 23:33:00    2017-10-07 23:33:00
126336    37794    475    2017-10-07 23:30:00    2017-10-07 23:30:00
126337    37794    961    2017-10-07 03:21:00    2017-10-07 03:21:00
126338    37794    753    2017-10-07 11:58:00    2017-10-07 11:58:00
126339    37794    890    2017-10-07 02:14:00    2017-10-07 02:14:00
126340    37795    777    2017-10-07 21:46:00    2017-10-07 21:46:00
126341    37795    706    2017-10-07 20:39:00    2017-10-07 20:39:00
126342    37795    609    2017-10-07 04:26:00    2017-10-07 04:26:00
126343    37795    708    2017-10-07 01:01:00    2017-10-07 01:01:00
126344    37795    766    2017-10-07 21:56:00    2017-10-07 21:56:00
126345    37796    957    2017-10-07 14:52:00    2017-10-07 14:52:00
126346    37796    819    2017-10-07 12:21:00    2017-10-07 12:21:00
126347    37796    697    2017-10-07 10:43:00    2017-10-07 10:43:00
126348    37796    543    2017-10-07 19:54:00    2017-10-07 19:54:00
126349    37796    622    2017-10-07 21:42:00    2017-10-07 21:42:00
126350    37797    571    2017-10-07 07:15:00    2017-10-07 07:15:00
126351    37797    832    2017-10-07 09:51:00    2017-10-07 09:51:00
126352    37797    819    2017-10-07 07:50:00    2017-10-07 07:50:00
126353    37797    542    2017-10-07 21:00:00    2017-10-07 21:00:00
126354    37797    925    2017-10-07 17:48:00    2017-10-07 17:48:00
126355    37798    560    2017-10-07 13:01:00    2017-10-07 13:01:00
126356    37798    796    2017-10-07 11:12:00    2017-10-07 11:12:00
126357    37798    637    2017-10-07 06:41:00    2017-10-07 06:41:00
126358    37798    662    2017-10-07 11:16:00    2017-10-07 11:16:00
126359    37798    924    2017-10-07 17:27:00    2017-10-07 17:27:00
126360    37799    760    2017-10-07 23:52:00    2017-10-07 23:52:00
126361    37799    530    2017-10-07 05:14:00    2017-10-07 05:14:00
126362    37799    860    2017-10-07 17:42:00    2017-10-07 17:42:00
126363    37799    475    2017-10-07 17:44:00    2017-10-07 17:44:00
126364    37799    476    2017-10-07 20:43:00    2017-10-07 20:43:00
126365    37800    859    2017-10-07 20:45:00    2017-10-07 20:45:00
126366    37800    754    2017-10-07 12:35:00    2017-10-07 12:35:00
126367    37800    597    2017-10-07 12:30:00    2017-10-07 12:30:00
126368    37800    733    2017-10-07 12:44:00    2017-10-07 12:44:00
126369    37800    740    2017-10-07 13:28:00    2017-10-07 13:28:00
126370    37801    595    2017-10-07 01:44:00    2017-10-07 01:44:00
126371    37801    782    2017-10-07 22:33:00    2017-10-07 22:33:00
126372    37801    554    2017-10-07 20:07:00    2017-10-07 20:07:00
126373    37801    528    2017-10-07 04:10:00    2017-10-07 04:10:00
126374    37801    507    2017-10-07 12:55:00    2017-10-07 12:55:00
126375    37802    872    2017-10-07 12:46:00    2017-10-07 12:46:00
126376    37802    793    2017-10-07 22:34:00    2017-10-07 22:34:00
126377    37802    510    2017-10-07 07:24:00    2017-10-07 07:24:00
126378    37802    920    2017-10-07 03:25:00    2017-10-07 03:25:00
126379    37802    689    2017-10-07 08:01:00    2017-10-07 08:01:00
126380    37803    630    2017-10-07 19:12:00    2017-10-07 19:12:00
126381    37803    530    2017-10-07 13:30:00    2017-10-07 13:30:00
126382    37803    642    2017-10-07 10:34:00    2017-10-07 10:34:00
126383    37803    883    2017-10-07 08:05:00    2017-10-07 08:05:00
126384    37803    752    2017-10-07 06:59:00    2017-10-07 06:59:00
126385    37804    495    2017-10-07 08:23:00    2017-10-07 08:23:00
126386    37804    868    2017-10-07 11:17:00    2017-10-07 11:17:00
126387    37804    890    2017-10-07 23:38:00    2017-10-07 23:38:00
126388    37804    573    2017-10-07 06:47:00    2017-10-07 06:47:00
126389    37804    736    2017-10-07 09:35:00    2017-10-07 09:35:00
126390    37805    851    2017-10-07 11:58:00    2017-10-07 11:58:00
126391    37805    878    2017-10-07 06:10:00    2017-10-07 06:10:00
126392    37805    607    2017-10-07 07:10:00    2017-10-07 07:10:00
126393    37805    670    2017-10-07 11:17:00    2017-10-07 11:17:00
126394    37805    498    2017-10-07 09:10:00    2017-10-07 09:10:00
126395    37806    466    2017-10-07 04:37:00    2017-10-07 04:37:00
126396    37806    759    2017-10-07 13:37:00    2017-10-07 13:37:00
126397    37806    904    2017-10-07 01:19:00    2017-10-07 01:19:00
126398    37806    908    2017-10-07 18:06:00    2017-10-07 18:06:00
126399    37806    565    2017-10-07 14:14:00    2017-10-07 14:14:00
126400    37807    673    2017-10-07 14:32:00    2017-10-07 14:32:00
126401    37807    581    2017-10-07 22:56:00    2017-10-07 22:56:00
126402    37807    585    2017-10-07 16:11:00    2017-10-07 16:11:00
126403    37807    643    2017-10-07 20:28:00    2017-10-07 20:28:00
126404    37807    807    2017-10-07 11:42:00    2017-10-07 11:42:00
126405    37808    941    2017-10-07 13:06:00    2017-10-07 13:06:00
126406    37808    600    2017-10-07 06:36:00    2017-10-07 06:36:00
126407    37808    923    2017-10-07 04:34:00    2017-10-07 04:34:00
126408    37808    823    2017-10-07 02:55:00    2017-10-07 02:55:00
126409    37808    934    2017-10-07 04:56:00    2017-10-07 04:56:00
126410    37809    695    2017-10-07 11:44:00    2017-10-07 11:44:00
126411    37809    489    2017-10-07 15:08:00    2017-10-07 15:08:00
126412    37809    915    2017-10-07 12:58:00    2017-10-07 12:58:00
126413    37809    837    2017-10-07 11:38:00    2017-10-07 11:38:00
126414    37809    676    2017-10-07 06:27:00    2017-10-07 06:27:00
126415    37810    930    2017-10-07 06:03:00    2017-10-07 06:03:00
126416    37810    673    2017-10-07 08:12:00    2017-10-07 08:12:00
126417    37810    507    2017-10-07 09:15:00    2017-10-07 09:15:00
126418    37810    651    2017-10-07 06:23:00    2017-10-07 06:23:00
126419    37810    791    2017-10-07 16:51:00    2017-10-07 16:51:00
126420    37811    840    2017-10-07 07:52:00    2017-10-07 07:52:00
126421    37811    546    2017-10-07 12:50:00    2017-10-07 12:50:00
126422    37811    953    2017-10-07 16:47:00    2017-10-07 16:47:00
126423    37811    937    2017-10-07 22:32:00    2017-10-07 22:32:00
126424    37811    738    2017-10-07 01:23:00    2017-10-07 01:23:00
126425    37812    566    2017-10-08 08:01:00    2017-10-08 08:01:00
126426    37812    728    2017-10-08 06:52:00    2017-10-08 06:52:00
126427    37812    549    2017-10-08 23:49:00    2017-10-08 23:49:00
126428    37812    893    2017-10-08 13:35:00    2017-10-08 13:35:00
126429    37812    540    2017-10-08 09:27:00    2017-10-08 09:27:00
126430    37813    744    2017-10-08 05:13:00    2017-10-08 05:13:00
126431    37813    941    2017-10-08 16:24:00    2017-10-08 16:24:00
126432    37813    824    2017-10-08 18:16:00    2017-10-08 18:16:00
126433    37813    571    2017-10-08 04:58:00    2017-10-08 04:58:00
126434    37813    924    2017-10-08 23:39:00    2017-10-08 23:39:00
126435    37814    738    2017-10-08 09:33:00    2017-10-08 09:33:00
126436    37814    955    2017-10-08 17:17:00    2017-10-08 17:17:00
126437    37814    481    2017-10-08 20:53:00    2017-10-08 20:53:00
126438    37814    598    2017-10-08 17:55:00    2017-10-08 17:55:00
126439    37814    720    2017-10-08 16:33:00    2017-10-08 16:33:00
126440    37815    747    2017-10-08 12:34:00    2017-10-08 12:34:00
126441    37815    542    2017-10-08 15:01:00    2017-10-08 15:01:00
126442    37815    562    2017-10-08 14:44:00    2017-10-08 14:44:00
126443    37815    633    2017-10-08 05:21:00    2017-10-08 05:21:00
126444    37815    555    2017-10-08 09:41:00    2017-10-08 09:41:00
126445    37816    495    2017-10-08 10:53:00    2017-10-08 10:53:00
126446    37816    496    2017-10-08 11:45:00    2017-10-08 11:45:00
126447    37816    807    2017-10-08 04:25:00    2017-10-08 04:25:00
126448    37816    875    2017-10-08 23:33:00    2017-10-08 23:33:00
126449    37816    559    2017-10-08 18:00:00    2017-10-08 18:00:00
126450    37817    798    2017-10-08 14:35:00    2017-10-08 14:35:00
126451    37817    606    2017-10-08 20:57:00    2017-10-08 20:57:00
126452    37817    687    2017-10-08 19:30:00    2017-10-08 19:30:00
126453    37817    553    2017-10-08 14:59:00    2017-10-08 14:59:00
126454    37817    484    2017-10-08 06:59:00    2017-10-08 06:59:00
126455    37818    730    2017-10-08 20:00:00    2017-10-08 20:00:00
126456    37818    876    2017-10-08 22:44:00    2017-10-08 22:44:00
126457    37818    768    2017-10-08 22:13:00    2017-10-08 22:13:00
126458    37818    758    2017-10-08 23:54:00    2017-10-08 23:54:00
126459    37818    499    2017-10-08 06:29:00    2017-10-08 06:29:00
126460    37819    674    2017-10-08 17:00:00    2017-10-08 17:00:00
126461    37819    949    2017-10-08 06:54:00    2017-10-08 06:54:00
126462    37819    876    2017-10-08 23:59:00    2017-10-08 23:59:00
126463    37819    778    2017-10-08 20:03:00    2017-10-08 20:03:00
126464    37819    645    2017-10-08 05:35:00    2017-10-08 05:35:00
126465    37820    846    2017-10-08 13:39:00    2017-10-08 13:39:00
126466    37820    491    2017-10-08 16:00:00    2017-10-08 16:00:00
126467    37820    945    2017-10-08 13:52:00    2017-10-08 13:52:00
126468    37820    900    2017-10-08 18:16:00    2017-10-08 18:16:00
126469    37820    882    2017-10-08 04:24:00    2017-10-08 04:24:00
126470    37821    547    2017-10-08 03:35:00    2017-10-08 03:35:00
126471    37821    924    2017-10-08 11:03:00    2017-10-08 11:03:00
126472    37821    684    2017-10-08 13:26:00    2017-10-08 13:26:00
126473    37821    551    2017-10-08 13:20:00    2017-10-08 13:20:00
126474    37821    547    2017-10-08 16:39:00    2017-10-08 16:39:00
126475    37822    825    2017-10-08 15:32:00    2017-10-08 15:32:00
126476    37822    621    2017-10-08 16:29:00    2017-10-08 16:29:00
126477    37822    754    2017-10-08 13:35:00    2017-10-08 13:35:00
126478    37822    470    2017-10-08 03:30:00    2017-10-08 03:30:00
126479    37822    513    2017-10-08 16:12:00    2017-10-08 16:12:00
126480    37823    685    2017-10-08 07:09:00    2017-10-08 07:09:00
126481    37823    564    2017-10-08 14:13:00    2017-10-08 14:13:00
126482    37823    935    2017-10-08 03:19:00    2017-10-08 03:19:00
126483    37823    712    2017-10-08 04:56:00    2017-10-08 04:56:00
126484    37823    884    2017-10-08 23:35:00    2017-10-08 23:35:00
126485    37824    919    2017-10-08 09:11:00    2017-10-08 09:11:00
126486    37824    628    2017-10-08 18:43:00    2017-10-08 18:43:00
126487    37824    758    2017-10-08 04:23:00    2017-10-08 04:23:00
126488    37824    599    2017-10-08 14:00:00    2017-10-08 14:00:00
126489    37824    739    2017-10-08 20:12:00    2017-10-08 20:12:00
126490    37825    767    2017-10-08 07:20:00    2017-10-08 07:20:00
126491    37825    527    2017-10-08 23:28:00    2017-10-08 23:28:00
126492    37825    511    2017-10-08 16:32:00    2017-10-08 16:32:00
126493    37825    480    2017-10-08 23:17:00    2017-10-08 23:17:00
126494    37825    553    2017-10-08 23:23:00    2017-10-08 23:23:00
126495    37826    931    2017-10-08 17:47:00    2017-10-08 17:47:00
126496    37826    749    2017-10-08 06:03:00    2017-10-08 06:03:00
126497    37826    657    2017-10-08 09:46:00    2017-10-08 09:46:00
126498    37826    531    2017-10-08 04:19:00    2017-10-08 04:19:00
126499    37826    915    2017-10-08 12:44:00    2017-10-08 12:44:00
126500    37827    626    2017-10-08 05:01:00    2017-10-08 05:01:00
126501    37827    734    2017-10-08 15:06:00    2017-10-08 15:06:00
126502    37827    953    2017-10-08 19:41:00    2017-10-08 19:41:00
126503    37827    744    2017-10-08 09:38:00    2017-10-08 09:38:00
126504    37827    675    2017-10-08 18:03:00    2017-10-08 18:03:00
126505    37828    644    2017-10-08 16:30:00    2017-10-08 16:30:00
126506    37828    566    2017-10-08 22:54:00    2017-10-08 22:54:00
126507    37828    883    2017-10-08 23:40:00    2017-10-08 23:40:00
126508    37828    770    2017-10-08 02:07:00    2017-10-08 02:07:00
126509    37828    917    2017-10-08 04:36:00    2017-10-08 04:36:00
126510    37829    542    2017-10-08 05:57:00    2017-10-08 05:57:00
126511    37829    585    2017-10-08 07:35:00    2017-10-08 07:35:00
126512    37829    617    2017-10-08 07:02:00    2017-10-08 07:02:00
126513    37829    593    2017-10-08 18:27:00    2017-10-08 18:27:00
126514    37829    633    2017-10-08 19:18:00    2017-10-08 19:18:00
126515    37830    675    2017-10-08 01:15:00    2017-10-08 01:15:00
126516    37830    714    2017-10-08 22:58:00    2017-10-08 22:58:00
126517    37830    840    2017-10-08 06:23:00    2017-10-08 06:23:00
126518    37830    821    2017-10-08 02:10:00    2017-10-08 02:10:00
126519    37830    860    2017-10-08 14:57:00    2017-10-08 14:57:00
126520    37831    903    2017-10-08 09:45:00    2017-10-08 09:45:00
126521    37831    801    2017-10-08 21:01:00    2017-10-08 21:01:00
126522    37831    679    2017-10-08 15:17:00    2017-10-08 15:17:00
126523    37831    606    2017-10-08 12:30:00    2017-10-08 12:30:00
126524    37831    611    2017-10-08 11:51:00    2017-10-08 11:51:00
126525    37832    507    2017-10-08 19:49:00    2017-10-08 19:49:00
126526    37832    902    2017-10-08 15:15:00    2017-10-08 15:15:00
126527    37832    732    2017-10-08 01:47:00    2017-10-08 01:47:00
126528    37832    939    2017-10-08 08:13:00    2017-10-08 08:13:00
126529    37832    839    2017-10-08 11:27:00    2017-10-08 11:27:00
126530    37833    528    2017-10-08 15:14:00    2017-10-08 15:14:00
126531    37833    630    2017-10-08 10:22:00    2017-10-08 10:22:00
126532    37833    923    2017-10-08 15:50:00    2017-10-08 15:50:00
126533    37833    876    2017-10-08 19:23:00    2017-10-08 19:23:00
126534    37833    835    2017-10-08 04:40:00    2017-10-08 04:40:00
126535    37834    826    2017-10-08 09:54:00    2017-10-08 09:54:00
126536    37834    588    2017-10-08 14:08:00    2017-10-08 14:08:00
126537    37834    872    2017-10-08 11:05:00    2017-10-08 11:05:00
126538    37834    548    2017-10-08 19:33:00    2017-10-08 19:33:00
126539    37834    519    2017-10-08 17:16:00    2017-10-08 17:16:00
126540    37835    613    2017-10-08 20:02:00    2017-10-08 20:02:00
126541    37835    929    2017-10-08 17:57:00    2017-10-08 17:57:00
126542    37835    856    2017-10-08 18:38:00    2017-10-08 18:38:00
126543    37835    497    2017-10-08 13:44:00    2017-10-08 13:44:00
126544    37835    824    2017-10-08 08:01:00    2017-10-08 08:01:00
126545    37836    716    2017-10-08 02:08:00    2017-10-08 02:08:00
126546    37836    710    2017-10-08 13:03:00    2017-10-08 13:03:00
126547    37836    772    2017-10-08 21:01:00    2017-10-08 21:01:00
126548    37836    850    2017-10-08 06:32:00    2017-10-08 06:32:00
126549    37836    477    2017-10-08 12:02:00    2017-10-08 12:02:00
126550    37837    543    2017-10-08 02:56:00    2017-10-08 02:56:00
126551    37837    505    2017-10-08 04:25:00    2017-10-08 04:25:00
126552    37837    596    2017-10-08 02:06:00    2017-10-08 02:06:00
126553    37837    859    2017-10-08 23:59:00    2017-10-08 23:59:00
126554    37837    758    2017-10-08 15:58:00    2017-10-08 15:58:00
126555    37838    615    2017-10-08 19:09:00    2017-10-08 19:09:00
126556    37838    652    2017-10-08 03:51:00    2017-10-08 03:51:00
126557    37838    810    2017-10-08 16:32:00    2017-10-08 16:32:00
126558    37838    812    2017-10-08 10:41:00    2017-10-08 10:41:00
126559    37838    758    2017-10-08 19:57:00    2017-10-08 19:57:00
126560    37839    740    2017-10-09 16:46:00    2017-10-09 16:46:00
126561    37839    762    2017-10-09 18:23:00    2017-10-09 18:23:00
126562    37839    637    2017-10-09 23:04:00    2017-10-09 23:04:00
126563    37839    848    2017-10-09 22:58:00    2017-10-09 22:58:00
126564    37839    889    2017-10-09 18:09:00    2017-10-09 18:09:00
126565    37840    729    2017-10-09 03:59:00    2017-10-09 03:59:00
126566    37840    789    2017-10-09 01:00:00    2017-10-09 01:00:00
126567    37840    658    2017-10-09 12:00:00    2017-10-09 12:00:00
126568    37840    498    2017-10-09 13:31:00    2017-10-09 13:31:00
126569    37840    526    2017-10-09 13:44:00    2017-10-09 13:44:00
126570    37841    592    2017-10-09 05:05:00    2017-10-09 05:05:00
126571    37841    808    2017-10-09 21:15:00    2017-10-09 21:15:00
126572    37841    478    2017-10-09 07:23:00    2017-10-09 07:23:00
126573    37841    841    2017-10-09 18:21:00    2017-10-09 18:21:00
126574    37841    789    2017-10-09 09:52:00    2017-10-09 09:52:00
126575    37842    855    2017-10-10 00:00:00    2017-10-10 00:00:00
126576    37842    644    2017-10-09 12:04:00    2017-10-09 12:04:00
126577    37842    775    2017-10-09 18:40:00    2017-10-09 18:40:00
126578    37842    718    2017-10-09 20:25:00    2017-10-09 20:25:00
126579    37842    876    2017-10-09 18:58:00    2017-10-09 18:58:00
126580    37843    773    2017-10-09 12:37:00    2017-10-09 12:37:00
126581    37843    576    2017-10-09 01:29:00    2017-10-09 01:29:00
126582    37843    551    2017-10-09 19:07:00    2017-10-09 19:07:00
126583    37843    606    2017-10-09 14:56:00    2017-10-09 14:56:00
126584    37843    472    2017-10-09 21:13:00    2017-10-09 21:13:00
126585    37844    709    2017-10-09 01:47:00    2017-10-09 01:47:00
126586    37844    475    2017-10-09 01:54:00    2017-10-09 01:54:00
126587    37844    551    2017-10-09 14:09:00    2017-10-09 14:09:00
126588    37844    505    2017-10-09 16:14:00    2017-10-09 16:14:00
126589    37844    860    2017-10-09 07:26:00    2017-10-09 07:26:00
126590    37845    833    2017-10-09 18:52:00    2017-10-09 18:52:00
126591    37845    815    2017-10-09 02:08:00    2017-10-09 02:08:00
126592    37845    930    2017-10-09 06:10:00    2017-10-09 06:10:00
126593    37845    756    2017-10-09 21:37:00    2017-10-09 21:37:00
126594    37845    802    2017-10-09 10:21:00    2017-10-09 10:21:00
126595    37846    540    2017-10-09 04:00:00    2017-10-09 04:00:00
126596    37846    880    2017-10-09 10:32:00    2017-10-09 10:32:00
126597    37846    757    2017-10-09 08:02:00    2017-10-09 08:02:00
126598    37846    794    2017-10-09 01:38:00    2017-10-09 01:38:00
126599    37846    911    2017-10-09 10:09:00    2017-10-09 10:09:00
126600    37847    753    2017-10-09 22:33:00    2017-10-09 22:33:00
126601    37847    885    2017-10-09 09:18:00    2017-10-09 09:18:00
126602    37847    951    2017-10-09 21:20:00    2017-10-09 21:20:00
126603    37847    563    2017-10-09 08:17:00    2017-10-09 08:17:00
126604    37847    772    2017-10-09 14:59:00    2017-10-09 14:59:00
126605    37848    893    2017-10-09 03:34:00    2017-10-09 03:34:00
126606    37848    654    2017-10-09 01:42:00    2017-10-09 01:42:00
126607    37848    598    2017-10-09 01:10:00    2017-10-09 01:10:00
126608    37848    719    2017-10-09 10:30:00    2017-10-09 10:30:00
126609    37848    784    2017-10-09 23:53:00    2017-10-09 23:53:00
126610    37849    694    2017-10-09 18:54:00    2017-10-09 18:54:00
126611    37849    473    2017-10-09 13:33:00    2017-10-09 13:33:00
126612    37849    809    2017-10-09 21:21:00    2017-10-09 21:21:00
126613    37849    854    2017-10-09 02:39:00    2017-10-09 02:39:00
126614    37849    915    2017-10-09 22:13:00    2017-10-09 22:13:00
126615    37850    605    2017-10-09 03:48:00    2017-10-09 03:48:00
126616    37850    709    2017-10-09 07:47:00    2017-10-09 07:47:00
126617    37850    689    2017-10-09 04:26:00    2017-10-09 04:26:00
126618    37850    886    2017-10-09 22:48:00    2017-10-09 22:48:00
126619    37850    664    2017-10-09 23:30:00    2017-10-09 23:30:00
126620    37851    589    2017-10-09 04:45:00    2017-10-09 04:45:00
126621    37851    842    2017-10-09 15:07:00    2017-10-09 15:07:00
126622    37851    689    2017-10-09 08:33:00    2017-10-09 08:33:00
126623    37851    776    2017-10-09 18:09:00    2017-10-09 18:09:00
126624    37851    837    2017-10-09 07:28:00    2017-10-09 07:28:00
126625    37852    863    2017-10-09 21:05:00    2017-10-09 21:05:00
126626    37852    727    2017-10-09 20:21:00    2017-10-09 20:21:00
126627    37852    546    2017-10-09 08:40:00    2017-10-09 08:40:00
126628    37852    849    2017-10-09 06:20:00    2017-10-09 06:20:00
126629    37852    826    2017-10-09 08:01:00    2017-10-09 08:01:00
126630    37853    872    2017-10-09 16:00:00    2017-10-09 16:00:00
126631    37853    863    2017-10-09 21:26:00    2017-10-09 21:26:00
126632    37853    957    2017-10-09 15:26:00    2017-10-09 15:26:00
126633    37853    770    2017-10-09 22:47:00    2017-10-09 22:47:00
126634    37853    909    2017-10-09 04:07:00    2017-10-09 04:07:00
126635    37854    542    2017-10-09 15:08:00    2017-10-09 15:08:00
126636    37854    951    2017-10-09 22:58:00    2017-10-09 22:58:00
126637    37854    951    2017-10-09 06:47:00    2017-10-09 06:47:00
126638    37854    726    2017-10-09 13:27:00    2017-10-09 13:27:00
126639    37854    866    2017-10-09 23:26:00    2017-10-09 23:26:00
126640    37855    886    2017-10-09 14:41:00    2017-10-09 14:41:00
126641    37855    881    2017-10-09 05:52:00    2017-10-09 05:52:00
126642    37855    563    2017-10-09 10:06:00    2017-10-09 10:06:00
126643    37855    756    2017-10-09 02:16:00    2017-10-09 02:16:00
126644    37855    942    2017-10-09 20:12:00    2017-10-09 20:12:00
126645    37856    585    2017-10-09 20:09:00    2017-10-09 20:09:00
126646    37856    937    2017-10-09 18:39:00    2017-10-09 18:39:00
126647    37856    770    2017-10-09 02:23:00    2017-10-09 02:23:00
126648    37856    598    2017-10-09 16:55:00    2017-10-09 16:55:00
126649    37856    812    2017-10-09 19:26:00    2017-10-09 19:26:00
126650    37857    506    2017-10-09 09:18:00    2017-10-09 09:18:00
126651    37857    523    2017-10-09 23:21:00    2017-10-09 23:21:00
126652    37857    788    2017-10-09 14:01:00    2017-10-09 14:01:00
126653    37857    843    2017-10-09 08:40:00    2017-10-09 08:40:00
126654    37857    635    2017-10-09 12:31:00    2017-10-09 12:31:00
126655    37858    604    2017-10-09 11:52:00    2017-10-09 11:52:00
126656    37858    638    2017-10-09 02:54:00    2017-10-09 02:54:00
126657    37858    736    2017-10-09 17:54:00    2017-10-09 17:54:00
126658    37858    958    2017-10-09 19:00:00    2017-10-09 19:00:00
126659    37858    465    2017-10-09 14:47:00    2017-10-09 14:47:00
126660    37859    661    2017-10-09 19:45:00    2017-10-09 19:45:00
126661    37859    841    2017-10-09 18:16:00    2017-10-09 18:16:00
126662    37859    629    2017-10-09 14:38:00    2017-10-09 14:38:00
126663    37859    545    2017-10-09 13:54:00    2017-10-09 13:54:00
126664    37859    820    2017-10-09 01:44:00    2017-10-09 01:44:00
126665    37860    806    2017-10-09 01:02:00    2017-10-09 01:02:00
126666    37860    796    2017-10-09 19:45:00    2017-10-09 19:45:00
126667    37860    809    2017-10-09 02:22:00    2017-10-09 02:22:00
126668    37860    499    2017-10-09 23:41:00    2017-10-09 23:41:00
126669    37860    721    2017-10-09 01:08:00    2017-10-09 01:08:00
126670    37861    526    2017-10-09 09:00:00    2017-10-09 09:00:00
126671    37861    503    2017-10-09 13:44:00    2017-10-09 13:44:00
126672    37861    789    2017-10-09 23:49:00    2017-10-09 23:49:00
126673    37861    859    2017-10-09 19:50:00    2017-10-09 19:50:00
126674    37861    505    2017-10-09 02:42:00    2017-10-09 02:42:00
126675    37862    814    2017-10-09 08:35:00    2017-10-09 08:35:00
126676    37862    950    2017-10-09 06:00:00    2017-10-09 06:00:00
126677    37862    852    2017-10-09 16:07:00    2017-10-09 16:07:00
126678    37862    481    2017-10-09 12:57:00    2017-10-09 12:57:00
126679    37862    559    2017-10-09 08:04:00    2017-10-09 08:04:00
126680    37863    479    2017-10-09 10:22:00    2017-10-09 10:22:00
126681    37863    843    2017-10-09 08:08:00    2017-10-09 08:08:00
126682    37863    649    2017-10-09 06:19:00    2017-10-09 06:19:00
126683    37863    687    2017-10-09 15:00:00    2017-10-09 15:00:00
126684    37863    660    2017-10-09 17:06:00    2017-10-09 17:06:00
126685    37864    945    2017-10-09 10:17:00    2017-10-09 10:17:00
126686    37864    799    2017-10-09 19:35:00    2017-10-09 19:35:00
126687    37864    548    2017-10-09 12:43:00    2017-10-09 12:43:00
126688    37864    905    2017-10-09 13:35:00    2017-10-09 13:35:00
126689    37864    495    2017-10-09 09:19:00    2017-10-09 09:19:00
126690    37865    861    2017-10-09 15:28:00    2017-10-09 15:28:00
126691    37865    891    2017-10-09 07:15:00    2017-10-09 07:15:00
126692    37865    630    2017-10-09 21:23:00    2017-10-09 21:23:00
126693    37865    585    2017-10-09 18:55:00    2017-10-09 18:55:00
126694    37865    506    2017-10-09 11:00:00    2017-10-09 11:00:00
126695    37866    592    2017-10-09 15:27:00    2017-10-09 15:27:00
126696    37866    563    2017-10-09 08:27:00    2017-10-09 08:27:00
126697    37866    722    2017-10-09 06:11:00    2017-10-09 06:11:00
126698    37866    628    2017-10-09 02:27:00    2017-10-09 02:27:00
126699    37866    651    2017-10-09 16:22:00    2017-10-09 16:22:00
126700    37867    485    2017-10-09 07:29:00    2017-10-09 07:29:00
126701    37867    651    2017-10-09 16:11:00    2017-10-09 16:11:00
126702    37867    577    2017-10-09 06:12:00    2017-10-09 06:12:00
126703    37867    469    2017-10-09 18:27:00    2017-10-09 18:27:00
126704    37867    613    2017-10-09 01:05:00    2017-10-09 01:05:00
126705    37868    469    2017-10-09 17:06:00    2017-10-09 17:06:00
126706    37868    795    2017-10-09 21:59:00    2017-10-09 21:59:00
126707    37868    505    2017-10-09 11:03:00    2017-10-09 11:03:00
126708    37868    567    2017-10-09 23:59:00    2017-10-09 23:59:00
126709    37868    581    2017-10-09 08:26:00    2017-10-09 08:26:00
126710    37869    667    2017-10-09 09:54:00    2017-10-09 09:54:00
126711    37869    480    2017-10-09 15:11:00    2017-10-09 15:11:00
126712    37869    870    2017-10-09 02:34:00    2017-10-09 02:34:00
126713    37869    640    2017-10-09 08:26:00    2017-10-09 08:26:00
126714    37869    541    2017-10-09 08:51:00    2017-10-09 08:51:00
126715    37870    519    2017-10-09 06:58:00    2017-10-09 06:58:00
126716    37870    623    2017-10-09 16:56:00    2017-10-09 16:56:00
126717    37870    942    2017-10-09 05:58:00    2017-10-09 05:58:00
126718    37870    726    2017-10-09 18:11:00    2017-10-09 18:11:00
126719    37870    661    2017-10-09 02:22:00    2017-10-09 02:22:00
126720    37871    778    2017-10-09 12:03:00    2017-10-09 12:03:00
126721    37871    571    2017-10-09 07:08:00    2017-10-09 07:08:00
126722    37871    663    2017-10-09 16:11:00    2017-10-09 16:11:00
126723    37871    577    2017-10-09 10:53:00    2017-10-09 10:53:00
126724    37871    756    2017-10-09 17:20:00    2017-10-09 17:20:00
126725    37872    951    2017-10-09 22:17:00    2017-10-09 22:17:00
126726    37872    775    2017-10-09 19:38:00    2017-10-09 19:38:00
126727    37872    586    2017-10-09 15:26:00    2017-10-09 15:26:00
126728    37872    586    2017-10-09 22:29:00    2017-10-09 22:29:00
126729    37872    649    2017-10-09 08:00:00    2017-10-09 08:00:00
126730    37873    548    2017-10-09 20:29:00    2017-10-09 20:29:00
126731    37873    620    2017-10-09 22:18:00    2017-10-09 22:18:00
126732    37873    834    2017-10-09 13:37:00    2017-10-09 13:37:00
126733    37873    554    2017-10-09 20:24:00    2017-10-09 20:24:00
126734    37873    578    2017-10-09 10:59:00    2017-10-09 10:59:00
126735    37874    806    2017-10-09 17:14:00    2017-10-09 17:14:00
126736    37874    774    2017-10-09 17:19:00    2017-10-09 17:19:00
126737    37874    661    2017-10-09 07:48:00    2017-10-09 07:48:00
126738    37874    716    2017-10-09 07:07:00    2017-10-09 07:07:00
126739    37874    478    2017-10-09 02:32:00    2017-10-09 02:32:00
126740    37875    855    2017-10-09 15:04:00    2017-10-09 15:04:00
126741    37875    714    2017-10-09 09:00:00    2017-10-09 09:00:00
126742    37875    783    2017-10-09 12:31:00    2017-10-09 12:31:00
126743    37875    856    2017-10-09 16:59:00    2017-10-09 16:59:00
126744    37875    690    2017-10-09 01:00:00    2017-10-09 01:00:00
126745    37876    889    2017-10-09 13:33:00    2017-10-09 13:33:00
126746    37876    466    2017-10-09 01:36:00    2017-10-09 01:36:00
126747    37876    804    2017-10-09 03:34:00    2017-10-09 03:34:00
126748    37876    855    2017-10-09 21:06:00    2017-10-09 21:06:00
126749    37876    538    2017-10-09 22:47:00    2017-10-09 22:47:00
126750    37877    888    2017-10-09 17:41:00    2017-10-09 17:41:00
126751    37877    483    2017-10-09 03:55:00    2017-10-09 03:55:00
126752    37877    892    2017-10-09 13:07:00    2017-10-09 13:07:00
126753    37877    721    2017-10-09 03:29:00    2017-10-09 03:29:00
126754    37877    483    2017-10-09 08:05:00    2017-10-09 08:05:00
126755    37878    543    2017-10-09 05:07:00    2017-10-09 05:07:00
126756    37878    791    2017-10-09 16:00:00    2017-10-09 16:00:00
126757    37878    657    2017-10-09 16:17:00    2017-10-09 16:17:00
126758    37878    695    2017-10-09 15:52:00    2017-10-09 15:52:00
126759    37878    784    2017-10-09 05:44:00    2017-10-09 05:44:00
126760    37879    759    2017-10-09 01:31:00    2017-10-09 01:31:00
126761    37879    775    2017-10-09 03:34:00    2017-10-09 03:34:00
126762    37879    516    2017-10-09 05:55:00    2017-10-09 05:55:00
126763    37879    548    2017-10-09 20:49:00    2017-10-09 20:49:00
126764    37879    955    2017-10-09 23:40:00    2017-10-09 23:40:00
126765    37880    698    2017-10-09 11:00:00    2017-10-09 11:00:00
126766    37880    480    2017-10-09 16:21:00    2017-10-09 16:21:00
126767    37880    550    2017-10-09 01:28:00    2017-10-09 01:28:00
126768    37880    863    2017-10-09 06:56:00    2017-10-09 06:56:00
126769    37880    775    2017-10-09 04:10:00    2017-10-09 04:10:00
126770    37881    755    2017-10-09 08:59:00    2017-10-09 08:59:00
126771    37881    472    2017-10-09 19:39:00    2017-10-09 19:39:00
126772    37881    847    2017-10-09 20:28:00    2017-10-09 20:28:00
126773    37881    604    2017-10-09 09:53:00    2017-10-09 09:53:00
126774    37881    895    2017-10-09 18:42:00    2017-10-09 18:42:00
126775    37882    634    2017-10-09 22:31:00    2017-10-09 22:31:00
126776    37882    873    2017-10-09 17:56:00    2017-10-09 17:56:00
126777    37882    895    2017-10-09 18:16:00    2017-10-09 18:16:00
126778    37882    525    2017-10-09 03:20:00    2017-10-09 03:20:00
126779    37882    778    2017-10-09 10:47:00    2017-10-09 10:47:00
126780    37883    852    2017-10-09 11:41:00    2017-10-09 11:41:00
126781    37883    910    2017-10-09 20:19:00    2017-10-09 20:19:00
126782    37883    754    2017-10-09 09:54:00    2017-10-09 09:54:00
126783    37883    734    2017-10-09 07:30:00    2017-10-09 07:30:00
126784    37883    762    2017-10-09 23:43:00    2017-10-09 23:43:00
126785    37884    528    2017-10-09 15:46:00    2017-10-09 15:46:00
126786    37884    856    2017-10-09 14:46:00    2017-10-09 14:46:00
126787    37884    463    2017-10-09 08:00:00    2017-10-09 08:00:00
126788    37884    886    2017-10-09 21:58:00    2017-10-09 21:58:00
126789    37884    729    2017-10-09 23:17:00    2017-10-09 23:17:00
126790    37885    464    2017-10-09 16:31:00    2017-10-09 16:31:00
126791    37885    779    2017-10-09 20:14:00    2017-10-09 20:14:00
126792    37885    875    2017-10-09 16:52:00    2017-10-09 16:52:00
126793    37885    956    2017-10-09 13:47:00    2017-10-09 13:47:00
126794    37885    634    2017-10-09 23:09:00    2017-10-09 23:09:00
126795    37886    729    2017-10-09 20:37:00    2017-10-09 20:37:00
126796    37886    526    2017-10-09 18:50:00    2017-10-09 18:50:00
126797    37886    679    2017-10-09 10:40:00    2017-10-09 10:40:00
126798    37886    552    2017-10-09 02:56:00    2017-10-09 02:56:00
126799    37886    785    2017-10-09 14:07:00    2017-10-09 14:07:00
126800    37887    572    2017-10-09 18:43:00    2017-10-09 18:43:00
126801    37887    591    2017-10-09 06:11:00    2017-10-09 06:11:00
126802    37887    813    2017-10-09 17:58:00    2017-10-09 17:58:00
126803    37887    891    2017-10-09 06:17:00    2017-10-09 06:17:00
126804    37887    535    2017-10-09 22:29:00    2017-10-09 22:29:00
126805    37888    729    2017-10-09 03:36:00    2017-10-09 03:36:00
126806    37888    674    2017-10-09 22:16:00    2017-10-09 22:16:00
126807    37888    864    2017-10-09 14:45:00    2017-10-09 14:45:00
126808    37888    525    2017-10-09 21:58:00    2017-10-09 21:58:00
126809    37888    932    2017-10-09 20:45:00    2017-10-09 20:45:00
126810    37889    615    2017-10-09 11:44:00    2017-10-09 11:44:00
126811    37889    645    2017-10-09 20:40:00    2017-10-09 20:40:00
126812    37889    746    2017-10-09 19:16:00    2017-10-09 19:16:00
126813    37889    765    2017-10-09 23:46:00    2017-10-09 23:46:00
126814    37889    633    2017-10-09 05:43:00    2017-10-09 05:43:00
126815    37890    746    2017-10-09 23:10:00    2017-10-09 23:10:00
126816    37890    679    2017-10-09 08:29:00    2017-10-09 08:29:00
126817    37890    492    2017-10-09 03:26:00    2017-10-09 03:26:00
126818    37890    551    2017-10-09 08:47:00    2017-10-09 08:47:00
126819    37890    657    2017-10-09 04:15:00    2017-10-09 04:15:00
126820    37891    680    2017-10-10 18:30:00    2017-10-10 18:30:00
126821    37891    646    2017-10-10 02:08:00    2017-10-10 02:08:00
126822    37891    704    2017-10-10 19:38:00    2017-10-10 19:38:00
126823    37891    924    2017-10-10 12:31:00    2017-10-10 12:31:00
126824    37891    754    2017-10-10 12:44:00    2017-10-10 12:44:00
126825    37892    614    2017-10-10 10:55:00    2017-10-10 10:55:00
126826    37892    489    2017-10-10 15:39:00    2017-10-10 15:39:00
126827    37892    514    2017-10-10 05:06:00    2017-10-10 05:06:00
126828    37892    674    2017-10-10 12:02:00    2017-10-10 12:02:00
126829    37892    752    2017-10-10 11:54:00    2017-10-10 11:54:00
126830    37893    931    2017-10-10 09:07:00    2017-10-10 09:07:00
126831    37893    949    2017-10-10 23:20:00    2017-10-10 23:20:00
126832    37893    772    2017-10-10 18:08:00    2017-10-10 18:08:00
126833    37893    788    2017-10-10 01:32:00    2017-10-10 01:32:00
126834    37893    654    2017-10-10 19:00:00    2017-10-10 19:00:00
126835    37894    755    2017-10-10 12:29:00    2017-10-10 12:29:00
126836    37894    579    2017-10-10 13:35:00    2017-10-10 13:35:00
126837    37894    936    2017-10-10 08:50:00    2017-10-10 08:50:00
126838    37894    894    2017-10-10 16:35:00    2017-10-10 16:35:00
126839    37894    707    2017-10-10 07:49:00    2017-10-10 07:49:00
126840    37895    857    2017-10-10 09:31:00    2017-10-10 09:31:00
126841    37895    623    2017-10-10 12:31:00    2017-10-10 12:31:00
126842    37895    921    2017-10-10 15:50:00    2017-10-10 15:50:00
126843    37895    696    2017-10-10 18:57:00    2017-10-10 18:57:00
126844    37895    661    2017-10-10 22:17:00    2017-10-10 22:17:00
126845    37896    485    2017-10-10 22:52:00    2017-10-10 22:52:00
126846    37896    601    2017-10-10 13:32:00    2017-10-10 13:32:00
126847    37896    649    2017-10-10 05:40:00    2017-10-10 05:40:00
126848    37896    464    2017-10-10 18:25:00    2017-10-10 18:25:00
126849    37896    806    2017-10-10 10:34:00    2017-10-10 10:34:00
126850    37897    692    2017-10-10 09:52:00    2017-10-10 09:52:00
126851    37897    497    2017-10-10 16:31:00    2017-10-10 16:31:00
126852    37897    725    2017-10-10 02:08:00    2017-10-10 02:08:00
126853    37897    749    2017-10-10 16:12:00    2017-10-10 16:12:00
126854    37897    469    2017-10-10 04:50:00    2017-10-10 04:50:00
126855    37898    883    2017-10-10 05:28:00    2017-10-10 05:28:00
126856    37898    720    2017-10-10 07:07:00    2017-10-10 07:07:00
126857    37898    541    2017-10-10 22:54:00    2017-10-10 22:54:00
126858    37898    618    2017-10-10 02:48:00    2017-10-10 02:48:00
126859    37898    681    2017-10-10 03:05:00    2017-10-10 03:05:00
126860    37899    793    2017-10-10 18:34:00    2017-10-10 18:34:00
126861    37899    914    2017-10-10 19:00:00    2017-10-10 19:00:00
126862    37899    890    2017-10-10 07:59:00    2017-10-10 07:59:00
126863    37899    751    2017-10-10 13:17:00    2017-10-10 13:17:00
126864    37899    515    2017-10-10 14:14:00    2017-10-10 14:14:00
126865    37900    658    2017-10-10 16:23:00    2017-10-10 16:23:00
126866    37900    594    2017-10-10 13:45:00    2017-10-10 13:45:00
126867    37900    771    2017-10-10 13:53:00    2017-10-10 13:53:00
126868    37900    838    2017-10-10 17:41:00    2017-10-10 17:41:00
126869    37900    734    2017-10-10 04:02:00    2017-10-10 04:02:00
126870    37901    878    2017-10-10 17:42:00    2017-10-10 17:42:00
126871    37901    608    2017-10-10 05:22:00    2017-10-10 05:22:00
126872    37901    756    2017-10-10 20:57:00    2017-10-10 20:57:00
126873    37901    556    2017-10-10 09:39:00    2017-10-10 09:39:00
126874    37901    807    2017-10-10 01:18:00    2017-10-10 01:18:00
126875    37902    604    2017-10-10 18:47:00    2017-10-10 18:47:00
126876    37902    725    2017-10-10 19:59:00    2017-10-10 19:59:00
126877    37902    676    2017-10-10 17:30:00    2017-10-10 17:30:00
126878    37902    931    2017-10-10 11:50:00    2017-10-10 11:50:00
126879    37902    718    2017-10-10 13:44:00    2017-10-10 13:44:00
126880    37903    799    2017-10-10 05:09:00    2017-10-10 05:09:00
126881    37903    895    2017-10-10 14:26:00    2017-10-10 14:26:00
126882    37903    638    2017-10-10 13:32:00    2017-10-10 13:32:00
126883    37903    507    2017-10-10 01:28:00    2017-10-10 01:28:00
126884    37903    875    2017-10-10 06:33:00    2017-10-10 06:33:00
126885    37904    496    2017-10-10 12:43:00    2017-10-10 12:43:00
126886    37904    686    2017-10-10 03:09:00    2017-10-10 03:09:00
126887    37904    715    2017-10-10 23:52:00    2017-10-10 23:52:00
126888    37904    764    2017-10-10 11:26:00    2017-10-10 11:26:00
126889    37904    699    2017-10-10 19:54:00    2017-10-10 19:54:00
126890    37905    644    2017-10-10 03:32:00    2017-10-10 03:32:00
126891    37905    735    2017-10-10 11:08:00    2017-10-10 11:08:00
126892    37905    832    2017-10-10 09:38:00    2017-10-10 09:38:00
126893    37905    545    2017-10-10 20:52:00    2017-10-10 20:52:00
126894    37905    588    2017-10-10 02:11:00    2017-10-10 02:11:00
126895    37906    825    2017-10-10 23:57:00    2017-10-10 23:57:00
126896    37906    853    2017-10-10 23:46:00    2017-10-10 23:46:00
126897    37906    938    2017-10-10 18:46:00    2017-10-10 18:46:00
126898    37906    877    2017-10-10 23:00:00    2017-10-10 23:00:00
126899    37906    709    2017-10-10 14:08:00    2017-10-10 14:08:00
126900    37907    883    2017-10-10 23:46:00    2017-10-10 23:46:00
126901    37907    486    2017-10-10 17:12:00    2017-10-10 17:12:00
126902    37907    737    2017-10-10 08:34:00    2017-10-10 08:34:00
126903    37907    841    2017-10-10 23:00:00    2017-10-10 23:00:00
126904    37907    704    2017-10-10 16:42:00    2017-10-10 16:42:00
126905    37908    760    2017-10-10 02:21:00    2017-10-10 02:21:00
126906    37908    602    2017-10-10 14:20:00    2017-10-10 14:20:00
126907    37908    855    2017-10-10 09:22:00    2017-10-10 09:22:00
126908    37908    746    2017-10-10 23:14:00    2017-10-10 23:14:00
126909    37908    474    2017-10-10 20:48:00    2017-10-10 20:48:00
126910    37909    707    2017-10-10 14:00:00    2017-10-10 14:00:00
126911    37909    945    2017-10-10 11:02:00    2017-10-10 11:02:00
126912    37909    936    2017-10-10 08:16:00    2017-10-10 08:16:00
126913    37909    844    2017-10-10 08:37:00    2017-10-10 08:37:00
126914    37909    517    2017-10-10 20:57:00    2017-10-10 20:57:00
126915    37910    793    2017-10-10 21:06:00    2017-10-10 21:06:00
126916    37910    932    2017-10-10 18:25:00    2017-10-10 18:25:00
126917    37910    943    2017-10-10 15:48:00    2017-10-10 15:48:00
126918    37910    771    2017-10-10 18:34:00    2017-10-10 18:34:00
126919    37910    940    2017-10-10 11:05:00    2017-10-10 11:05:00
126920    37911    542    2017-10-10 21:12:00    2017-10-10 21:12:00
126921    37911    865    2017-10-10 01:02:00    2017-10-10 01:02:00
126922    37911    946    2017-10-10 03:06:00    2017-10-10 03:06:00
126923    37911    486    2017-10-10 02:56:00    2017-10-10 02:56:00
126924    37911    925    2017-10-10 10:33:00    2017-10-10 10:33:00
126925    37912    740    2017-10-10 18:17:00    2017-10-10 18:17:00
126926    37912    730    2017-10-10 03:54:00    2017-10-10 03:54:00
126927    37912    798    2017-10-10 01:13:00    2017-10-10 01:13:00
126928    37912    673    2017-10-10 13:19:00    2017-10-10 13:19:00
126929    37912    672    2017-10-10 16:07:00    2017-10-10 16:07:00
126930    37913    593    2017-10-10 02:06:00    2017-10-10 02:06:00
126931    37913    793    2017-10-10 22:04:00    2017-10-10 22:04:00
126932    37913    707    2017-10-10 05:04:00    2017-10-10 05:04:00
126933    37913    722    2017-10-10 22:33:00    2017-10-10 22:33:00
126934    37913    926    2017-10-10 18:46:00    2017-10-10 18:46:00
126935    37914    501    2017-10-10 16:05:00    2017-10-10 16:05:00
126936    37914    857    2017-10-10 11:48:00    2017-10-10 11:48:00
126937    37914    524    2017-10-10 11:26:00    2017-10-10 11:26:00
126938    37914    644    2017-10-10 23:19:00    2017-10-10 23:19:00
126939    37914    479    2017-10-10 17:12:00    2017-10-10 17:12:00
126940    37915    689    2017-10-10 02:01:00    2017-10-10 02:01:00
126941    37915    912    2017-10-10 02:12:00    2017-10-10 02:12:00
126942    37915    731    2017-10-10 11:34:00    2017-10-10 11:34:00
126943    37915    725    2017-10-10 01:38:00    2017-10-10 01:38:00
126944    37915    617    2017-10-10 13:20:00    2017-10-10 13:20:00
126945    37916    516    2017-10-10 07:04:00    2017-10-10 07:04:00
126946    37916    708    2017-10-10 12:44:00    2017-10-10 12:44:00
126947    37916    860    2017-10-10 23:28:00    2017-10-10 23:28:00
126948    37916    602    2017-10-10 08:19:00    2017-10-10 08:19:00
126949    37916    808    2017-10-10 03:33:00    2017-10-10 03:33:00
126950    37917    801    2017-10-10 14:07:00    2017-10-10 14:07:00
126951    37917    586    2017-10-10 11:46:00    2017-10-10 11:46:00
126952    37917    610    2017-10-10 09:20:00    2017-10-10 09:20:00
126953    37917    653    2017-10-10 09:02:00    2017-10-10 09:02:00
126954    37917    511    2017-10-10 14:41:00    2017-10-10 14:41:00
126955    37918    942    2017-10-10 16:47:00    2017-10-10 16:47:00
126956    37918    708    2017-10-10 01:15:00    2017-10-10 01:15:00
126957    37918    699    2017-10-10 17:41:00    2017-10-10 17:41:00
126958    37918    507    2017-10-10 17:16:00    2017-10-10 17:16:00
126959    37918    932    2017-10-10 02:41:00    2017-10-10 02:41:00
126960    37919    731    2017-10-10 13:58:00    2017-10-10 13:58:00
126961    37919    609    2017-10-10 10:19:00    2017-10-10 10:19:00
126962    37919    890    2017-10-10 04:07:00    2017-10-10 04:07:00
126963    37919    470    2017-10-10 03:30:00    2017-10-10 03:30:00
126964    37919    502    2017-10-10 18:20:00    2017-10-10 18:20:00
126965    37920    465    2017-10-10 03:54:00    2017-10-10 03:54:00
126966    37920    934    2017-10-10 08:16:00    2017-10-10 08:16:00
126967    37920    560    2017-10-10 21:54:00    2017-10-10 21:54:00
126968    37920    777    2017-10-10 22:13:00    2017-10-10 22:13:00
126969    37920    498    2017-10-10 16:55:00    2017-10-10 16:55:00
126970    37921    534    2017-10-10 13:14:00    2017-10-10 13:14:00
126971    37921    483    2017-10-10 07:37:00    2017-10-10 07:37:00
126972    37921    623    2017-10-10 13:09:00    2017-10-10 13:09:00
126973    37921    577    2017-10-10 12:40:00    2017-10-10 12:40:00
126974    37921    508    2017-10-10 10:59:00    2017-10-10 10:59:00
126975    37922    741    2017-10-10 04:48:00    2017-10-10 04:48:00
126976    37922    569    2017-10-10 18:33:00    2017-10-10 18:33:00
126977    37922    905    2017-10-10 10:45:00    2017-10-10 10:45:00
126978    37922    718    2017-10-10 20:49:00    2017-10-10 20:49:00
126979    37922    719    2017-10-10 23:53:00    2017-10-10 23:53:00
126980    37923    716    2017-10-10 02:17:00    2017-10-10 02:17:00
126981    37923    857    2017-10-10 02:39:00    2017-10-10 02:39:00
126982    37923    569    2017-10-10 07:20:00    2017-10-10 07:20:00
126983    37923    558    2017-10-10 04:20:00    2017-10-10 04:20:00
126984    37923    552    2017-10-10 01:31:00    2017-10-10 01:31:00
126985    37924    653    2017-10-10 14:00:00    2017-10-10 14:00:00
126986    37924    485    2017-10-10 17:45:00    2017-10-10 17:45:00
126987    37924    933    2017-10-10 11:35:00    2017-10-10 11:35:00
126988    37924    695    2017-10-10 18:34:00    2017-10-10 18:34:00
126989    37924    768    2017-10-10 18:32:00    2017-10-10 18:32:00
126990    37925    844    2017-10-10 01:02:00    2017-10-10 01:02:00
126991    37925    742    2017-10-10 09:00:00    2017-10-10 09:00:00
126992    37925    576    2017-10-10 05:05:00    2017-10-10 05:05:00
126993    37925    483    2017-10-10 20:55:00    2017-10-10 20:55:00
126994    37925    709    2017-10-10 09:44:00    2017-10-10 09:44:00
126995    37926    606    2017-10-10 09:11:00    2017-10-10 09:11:00
126996    37926    598    2017-10-10 05:00:00    2017-10-10 05:00:00
126997    37926    740    2017-10-10 20:19:00    2017-10-10 20:19:00
126998    37926    903    2017-10-10 13:17:00    2017-10-10 13:17:00
126999    37926    478    2017-10-10 11:50:00    2017-10-10 11:50:00
127000    37927    954    2017-10-10 02:46:00    2017-10-10 02:46:00
127001    37927    925    2017-10-10 17:01:00    2017-10-10 17:01:00
127002    37927    928    2017-10-10 22:06:00    2017-10-10 22:06:00
127003    37927    596    2017-10-10 07:57:00    2017-10-10 07:57:00
127004    37927    509    2017-10-10 22:27:00    2017-10-10 22:27:00
127005    37928    680    2017-10-10 11:53:00    2017-10-10 11:53:00
127006    37928    762    2017-10-10 07:27:00    2017-10-10 07:27:00
127007    37928    636    2017-10-10 11:57:00    2017-10-10 11:57:00
127008    37928    636    2017-10-10 17:16:00    2017-10-10 17:16:00
127009    37928    521    2017-10-10 07:14:00    2017-10-10 07:14:00
127010    37929    500    2017-10-11 14:02:00    2017-10-11 14:02:00
127011    37929    651    2017-10-11 20:07:00    2017-10-11 20:07:00
127012    37929    732    2017-10-11 07:42:00    2017-10-11 07:42:00
127013    37929    486    2017-10-11 15:06:00    2017-10-11 15:06:00
127014    37929    757    2017-10-11 09:15:00    2017-10-11 09:15:00
127015    37930    865    2017-10-11 16:46:00    2017-10-11 16:46:00
127016    37930    832    2017-10-11 08:46:00    2017-10-11 08:46:00
127017    37930    508    2017-10-11 10:22:00    2017-10-11 10:22:00
127018    37930    679    2017-10-11 19:25:00    2017-10-11 19:25:00
127019    37930    707    2017-10-11 07:42:00    2017-10-11 07:42:00
127020    37931    868    2017-10-11 17:22:00    2017-10-11 17:22:00
127021    37931    892    2017-10-11 20:35:00    2017-10-11 20:35:00
127022    37931    609    2017-10-11 20:50:00    2017-10-11 20:50:00
127023    37931    686    2017-10-11 07:52:00    2017-10-11 07:52:00
127024    37931    837    2017-10-11 15:36:00    2017-10-11 15:36:00
127025    37932    828    2017-10-11 16:34:00    2017-10-11 16:34:00
127026    37932    678    2017-10-11 22:46:00    2017-10-11 22:46:00
127027    37932    551    2017-10-11 13:37:00    2017-10-11 13:37:00
127028    37932    782    2017-10-11 07:29:00    2017-10-11 07:29:00
127029    37932    595    2017-10-11 03:06:00    2017-10-11 03:06:00
127030    37933    564    2017-10-11 09:26:00    2017-10-11 09:26:00
127031    37933    844    2017-10-11 18:00:00    2017-10-11 18:00:00
127032    37933    586    2017-10-11 01:22:00    2017-10-11 01:22:00
127033    37933    617    2017-10-11 22:08:00    2017-10-11 22:08:00
127034    37933    511    2017-10-11 19:23:00    2017-10-11 19:23:00
127035    37934    562    2017-10-11 20:03:00    2017-10-11 20:03:00
127036    37934    504    2017-10-11 21:26:00    2017-10-11 21:26:00
127037    37934    694    2017-10-11 14:01:00    2017-10-11 14:01:00
127038    37934    654    2017-10-11 14:29:00    2017-10-11 14:29:00
127039    37934    776    2017-10-11 21:59:00    2017-10-11 21:59:00
127040    37935    911    2017-10-11 13:53:00    2017-10-11 13:53:00
127041    37935    911    2017-10-11 23:20:00    2017-10-11 23:20:00
127042    37935    478    2017-10-11 09:16:00    2017-10-11 09:16:00
127043    37935    504    2017-10-11 12:39:00    2017-10-11 12:39:00
127044    37935    911    2017-10-11 22:38:00    2017-10-11 22:38:00
127045    37936    470    2017-10-11 18:03:00    2017-10-11 18:03:00
127046    37936    619    2017-10-11 02:38:00    2017-10-11 02:38:00
127047    37936    488    2017-10-11 05:08:00    2017-10-11 05:08:00
127048    37936    912    2017-10-11 03:25:00    2017-10-11 03:25:00
127049    37936    650    2017-10-11 10:23:00    2017-10-11 10:23:00
127050    37937    911    2017-10-11 08:09:00    2017-10-11 08:09:00
127051    37937    675    2017-10-11 17:01:00    2017-10-11 17:01:00
127052    37937    653    2017-10-11 07:38:00    2017-10-11 07:38:00
127053    37937    646    2017-10-11 01:20:00    2017-10-11 01:20:00
127054    37937    790    2017-10-11 22:20:00    2017-10-11 22:20:00
127055    37938    842    2017-10-11 20:32:00    2017-10-11 20:32:00
127056    37938    845    2017-10-11 01:52:00    2017-10-11 01:52:00
127057    37938    906    2017-10-11 22:56:00    2017-10-11 22:56:00
127058    37938    551    2017-10-11 12:18:00    2017-10-11 12:18:00
127059    37938    629    2017-10-11 14:55:00    2017-10-11 14:55:00
127060    37939    507    2017-10-11 02:51:00    2017-10-11 02:51:00
127061    37939    929    2017-10-11 08:41:00    2017-10-11 08:41:00
127062    37939    721    2017-10-11 17:42:00    2017-10-11 17:42:00
127063    37939    725    2017-10-11 11:24:00    2017-10-11 11:24:00
127064    37939    854    2017-10-11 21:54:00    2017-10-11 21:54:00
127065    37940    705    2017-10-11 16:03:00    2017-10-11 16:03:00
127066    37940    586    2017-10-11 10:07:00    2017-10-11 10:07:00
127067    37940    703    2017-10-11 06:59:00    2017-10-11 06:59:00
127068    37940    683    2017-10-11 15:19:00    2017-10-11 15:19:00
127069    37940    798    2017-10-11 08:28:00    2017-10-11 08:28:00
127070    37941    789    2017-10-11 10:22:00    2017-10-11 10:22:00
127071    37941    543    2017-10-11 13:55:00    2017-10-11 13:55:00
127072    37941    729    2017-10-11 12:53:00    2017-10-11 12:53:00
127073    37941    835    2017-10-11 22:50:00    2017-10-11 22:50:00
127074    37941    710    2017-10-11 02:00:00    2017-10-11 02:00:00
127075    37942    941    2017-10-11 09:26:00    2017-10-11 09:26:00
127076    37942    848    2017-10-11 14:37:00    2017-10-11 14:37:00
127077    37942    911    2017-10-11 02:03:00    2017-10-11 02:03:00
127078    37942    666    2017-10-11 16:00:00    2017-10-11 16:00:00
127079    37942    637    2017-10-11 14:26:00    2017-10-11 14:26:00
127080    37943    485    2017-10-11 21:55:00    2017-10-11 21:55:00
127081    37943    793    2017-10-11 19:52:00    2017-10-11 19:52:00
127082    37943    520    2017-10-11 07:00:00    2017-10-11 07:00:00
127083    37943    671    2017-10-11 09:53:00    2017-10-11 09:53:00
127084    37943    683    2017-10-11 11:53:00    2017-10-11 11:53:00
127085    37944    514    2017-10-11 15:39:00    2017-10-11 15:39:00
127086    37944    540    2017-10-11 22:50:00    2017-10-11 22:50:00
127087    37944    892    2017-10-11 06:10:00    2017-10-11 06:10:00
127088    37944    679    2017-10-11 18:10:00    2017-10-11 18:10:00
127089    37944    579    2017-10-11 13:09:00    2017-10-11 13:09:00
127090    37945    524    2017-10-11 15:12:00    2017-10-11 15:12:00
127091    37945    762    2017-10-11 13:27:00    2017-10-11 13:27:00
127092    37945    475    2017-10-11 06:00:00    2017-10-11 06:00:00
127093    37945    897    2017-10-11 05:17:00    2017-10-11 05:17:00
127094    37945    769    2017-10-11 11:25:00    2017-10-11 11:25:00
127095    37946    506    2017-10-11 05:23:00    2017-10-11 05:23:00
127096    37946    685    2017-10-11 09:05:00    2017-10-11 09:05:00
127097    37946    851    2017-10-11 18:20:00    2017-10-11 18:20:00
127098    37946    905    2017-10-11 12:11:00    2017-10-11 12:11:00
127099    37946    779    2017-10-11 19:57:00    2017-10-11 19:57:00
127100    37947    478    2017-10-11 03:03:00    2017-10-11 03:03:00
127101    37947    481    2017-10-11 10:34:00    2017-10-11 10:34:00
127102    37947    903    2017-10-11 15:14:00    2017-10-11 15:14:00
127103    37947    754    2017-10-11 14:12:00    2017-10-11 14:12:00
127104    37947    811    2017-10-11 16:34:00    2017-10-11 16:34:00
127105    37948    581    2017-10-11 02:23:00    2017-10-11 02:23:00
127106    37948    769    2017-10-11 21:40:00    2017-10-11 21:40:00
127107    37948    645    2017-10-11 23:46:00    2017-10-11 23:46:00
127108    37948    762    2017-10-11 02:27:00    2017-10-11 02:27:00
127109    37948    873    2017-10-11 14:40:00    2017-10-11 14:40:00
127110    37949    737    2017-10-11 13:26:00    2017-10-11 13:26:00
127111    37949    675    2017-10-11 12:50:00    2017-10-11 12:50:00
127112    37949    589    2017-10-11 02:56:00    2017-10-11 02:56:00
127113    37949    870    2017-10-11 03:40:00    2017-10-11 03:40:00
127114    37949    489    2017-10-11 23:46:00    2017-10-11 23:46:00
127115    37950    678    2017-10-11 05:47:00    2017-10-11 05:47:00
127116    37950    576    2017-10-11 12:12:00    2017-10-11 12:12:00
127117    37950    815    2017-10-11 01:35:00    2017-10-11 01:35:00
127118    37950    939    2017-10-11 05:15:00    2017-10-11 05:15:00
127119    37950    833    2017-10-11 18:44:00    2017-10-11 18:44:00
127120    37951    705    2017-10-11 03:50:00    2017-10-11 03:50:00
127121    37951    663    2017-10-11 15:02:00    2017-10-11 15:02:00
127122    37951    502    2017-10-11 07:13:00    2017-10-11 07:13:00
127123    37951    806    2017-10-11 01:36:00    2017-10-11 01:36:00
127124    37951    585    2017-10-11 08:14:00    2017-10-11 08:14:00
127125    37952    771    2017-10-11 22:04:00    2017-10-11 22:04:00
127126    37952    810    2017-10-11 01:35:00    2017-10-11 01:35:00
127127    37952    580    2017-10-11 05:09:00    2017-10-11 05:09:00
127128    37952    795    2017-10-11 04:33:00    2017-10-11 04:33:00
127129    37952    789    2017-10-11 07:03:00    2017-10-11 07:03:00
127130    37953    540    2017-10-11 16:36:00    2017-10-11 16:36:00
127131    37953    724    2017-10-11 17:02:00    2017-10-11 17:02:00
127132    37953    667    2017-10-11 03:05:00    2017-10-11 03:05:00
127133    37953    571    2017-10-11 10:12:00    2017-10-11 10:12:00
127134    37953    532    2017-10-11 17:10:00    2017-10-11 17:10:00
127135    37954    663    2017-10-11 07:40:00    2017-10-11 07:40:00
127136    37954    725    2017-10-11 23:00:00    2017-10-11 23:00:00
127137    37954    758    2017-10-11 13:42:00    2017-10-11 13:42:00
127138    37954    473    2017-10-11 22:32:00    2017-10-11 22:32:00
127139    37954    707    2017-10-11 23:07:00    2017-10-11 23:07:00
127140    37955    723    2017-10-11 21:46:00    2017-10-11 21:46:00
127141    37955    772    2017-10-11 07:44:00    2017-10-11 07:44:00
127142    37955    589    2017-10-11 22:00:00    2017-10-11 22:00:00
127143    37955    646    2017-10-11 15:14:00    2017-10-11 15:14:00
127144    37955    783    2017-10-11 13:12:00    2017-10-11 13:12:00
127145    37956    633    2017-10-11 15:57:00    2017-10-11 15:57:00
127146    37956    930    2017-10-11 15:30:00    2017-10-11 15:30:00
127147    37956    784    2017-10-11 11:01:00    2017-10-11 11:01:00
127148    37956    744    2017-10-11 05:25:00    2017-10-11 05:25:00
127149    37956    483    2017-10-11 05:49:00    2017-10-11 05:49:00
127150    37957    941    2017-10-11 07:52:00    2017-10-11 07:52:00
127151    37957    687    2017-10-11 08:28:00    2017-10-11 08:28:00
127152    37957    939    2017-10-11 16:35:00    2017-10-11 16:35:00
127153    37957    747    2017-10-11 02:15:00    2017-10-11 02:15:00
127154    37957    671    2017-10-11 06:41:00    2017-10-11 06:41:00
127155    37958    726    2017-10-11 05:41:00    2017-10-11 05:41:00
127156    37958    920    2017-10-11 01:39:00    2017-10-11 01:39:00
127157    37958    499    2017-10-11 23:11:00    2017-10-11 23:11:00
127158    37958    680    2017-10-11 06:07:00    2017-10-11 06:07:00
127159    37958    623    2017-10-11 21:04:00    2017-10-11 21:04:00
127160    37959    710    2017-10-11 11:42:00    2017-10-11 11:42:00
127161    37959    784    2017-10-11 12:14:00    2017-10-11 12:14:00
127162    37959    623    2017-10-11 04:46:00    2017-10-11 04:46:00
127163    37959    823    2017-10-11 22:31:00    2017-10-11 22:31:00
127164    37959    474    2017-10-11 08:22:00    2017-10-11 08:22:00
127165    37960    606    2017-10-11 15:50:00    2017-10-11 15:50:00
127166    37960    893    2017-10-11 03:27:00    2017-10-11 03:27:00
127167    37960    737    2017-10-11 07:53:00    2017-10-11 07:53:00
127168    37960    903    2017-10-11 14:39:00    2017-10-11 14:39:00
127169    37960    627    2017-10-11 15:35:00    2017-10-11 15:35:00
127170    37961    695    2017-10-11 14:15:00    2017-10-11 14:15:00
127171    37961    680    2017-10-11 07:38:00    2017-10-11 07:38:00
127172    37961    807    2017-10-11 07:30:00    2017-10-11 07:30:00
127173    37961    660    2017-10-11 07:53:00    2017-10-11 07:53:00
127174    37961    517    2017-10-11 08:52:00    2017-10-11 08:52:00
127175    37962    842    2017-10-11 06:03:00    2017-10-11 06:03:00
127176    37962    904    2017-10-11 14:06:00    2017-10-11 14:06:00
127177    37962    917    2017-10-11 04:49:00    2017-10-11 04:49:00
127178    37962    704    2017-10-11 23:16:00    2017-10-11 23:16:00
127179    37962    508    2017-10-11 02:32:00    2017-10-11 02:32:00
127180    37963    733    2017-10-11 06:32:00    2017-10-11 06:32:00
127181    37963    548    2017-10-11 23:56:00    2017-10-11 23:56:00
127182    37963    826    2017-10-11 21:57:00    2017-10-11 21:57:00
127183    37963    766    2017-10-11 13:23:00    2017-10-11 13:23:00
127184    37963    961    2017-10-11 16:52:00    2017-10-11 16:52:00
127185    37964    545    2017-10-11 01:16:00    2017-10-11 01:16:00
127186    37964    606    2017-10-11 04:18:00    2017-10-11 04:18:00
127187    37964    552    2017-10-11 04:37:00    2017-10-11 04:37:00
127188    37964    489    2017-10-11 03:43:00    2017-10-11 03:43:00
127189    37964    597    2017-10-11 12:14:00    2017-10-11 12:14:00
127190    37965    922    2017-10-11 08:44:00    2017-10-11 08:44:00
127191    37965    837    2017-10-11 09:11:00    2017-10-11 09:11:00
127192    37965    767    2017-10-11 05:09:00    2017-10-11 05:09:00
127193    37965    886    2017-10-11 05:35:00    2017-10-11 05:35:00
127194    37965    840    2017-10-11 20:05:00    2017-10-11 20:05:00
127195    37966    938    2017-10-11 16:23:00    2017-10-11 16:23:00
127196    37966    671    2017-10-11 20:00:00    2017-10-11 20:00:00
127197    37966    753    2017-10-11 17:30:00    2017-10-11 17:30:00
127198    37966    552    2017-10-11 11:11:00    2017-10-11 11:11:00
127199    37966    843    2017-10-11 19:22:00    2017-10-11 19:22:00
127200    37967    742    2017-10-11 15:09:00    2017-10-11 15:09:00
127201    37967    516    2017-10-11 21:33:00    2017-10-11 21:33:00
127202    37967    873    2017-10-11 01:40:00    2017-10-11 01:40:00
127203    37967    848    2017-10-11 18:43:00    2017-10-11 18:43:00
127204    37967    742    2017-10-11 05:09:00    2017-10-11 05:09:00
127205    37968    957    2017-10-11 22:55:00    2017-10-11 22:55:00
127206    37968    762    2017-10-11 01:38:00    2017-10-11 01:38:00
127207    37968    796    2017-10-11 07:06:00    2017-10-11 07:06:00
127208    37968    904    2017-10-11 14:28:00    2017-10-11 14:28:00
127209    37968    903    2017-10-11 07:21:00    2017-10-11 07:21:00
127210    37969    838    2017-10-11 10:48:00    2017-10-11 10:48:00
127211    37969    608    2017-10-11 03:20:00    2017-10-11 03:20:00
127212    37969    467    2017-10-11 23:34:00    2017-10-11 23:34:00
127213    37969    648    2017-10-11 21:55:00    2017-10-11 21:55:00
127214    37969    706    2017-10-11 10:09:00    2017-10-11 10:09:00
127215    37970    590    2017-10-11 06:09:00    2017-10-11 06:09:00
127216    37970    656    2017-10-11 04:20:00    2017-10-11 04:20:00
127217    37970    631    2017-10-11 13:27:00    2017-10-11 13:27:00
127218    37970    607    2017-10-11 10:19:00    2017-10-11 10:19:00
127219    37970    906    2017-10-11 20:28:00    2017-10-11 20:28:00
127220    37971    597    2017-10-11 15:38:00    2017-10-11 15:38:00
127221    37971    658    2017-10-11 15:13:00    2017-10-11 15:13:00
127222    37971    504    2017-10-11 22:12:00    2017-10-11 22:12:00
127223    37971    923    2017-10-11 06:23:00    2017-10-11 06:23:00
127224    37971    944    2017-10-11 14:40:00    2017-10-11 14:40:00
127225    37972    960    2017-10-11 11:36:00    2017-10-11 11:36:00
127226    37972    896    2017-10-11 08:10:00    2017-10-11 08:10:00
127227    37972    570    2017-10-11 10:43:00    2017-10-11 10:43:00
127228    37972    917    2017-10-11 08:22:00    2017-10-11 08:22:00
127229    37972    532    2017-10-11 03:24:00    2017-10-11 03:24:00
127230    37973    867    2017-10-11 13:00:00    2017-10-11 13:00:00
127231    37973    603    2017-10-11 17:33:00    2017-10-11 17:33:00
127232    37973    810    2017-10-11 14:24:00    2017-10-11 14:24:00
127233    37973    596    2017-10-11 23:49:00    2017-10-11 23:49:00
127234    37973    820    2017-10-11 04:08:00    2017-10-11 04:08:00
127235    37974    839    2017-10-11 17:54:00    2017-10-11 17:54:00
127236    37974    946    2017-10-11 22:02:00    2017-10-11 22:02:00
127237    37974    471    2017-10-11 22:03:00    2017-10-11 22:03:00
127238    37974    767    2017-10-11 21:55:00    2017-10-11 21:55:00
127239    37974    753    2017-10-11 17:55:00    2017-10-11 17:55:00
127240    37975    942    2017-10-11 05:03:00    2017-10-11 05:03:00
127241    37975    897    2017-10-11 13:04:00    2017-10-11 13:04:00
127242    37975    724    2017-10-11 12:27:00    2017-10-11 12:27:00
127243    37975    675    2017-10-11 15:13:00    2017-10-11 15:13:00
127244    37975    504    2017-10-11 05:29:00    2017-10-11 05:29:00
127245    37976    914    2017-10-11 03:48:00    2017-10-11 03:48:00
127246    37976    920    2017-10-11 07:30:00    2017-10-11 07:30:00
127247    37976    727    2017-10-11 06:29:00    2017-10-11 06:29:00
127248    37976    484    2017-10-11 04:58:00    2017-10-11 04:58:00
127249    37976    791    2017-10-11 14:21:00    2017-10-11 14:21:00
127250    37977    559    2017-10-11 13:51:00    2017-10-11 13:51:00
127251    37977    479    2017-10-11 12:16:00    2017-10-11 12:16:00
127252    37977    677    2017-10-11 05:28:00    2017-10-11 05:28:00
127253    37977    666    2017-10-11 04:55:00    2017-10-11 04:55:00
127254    37977    916    2017-10-11 09:03:00    2017-10-11 09:03:00
127255    37978    844    2017-10-11 05:32:00    2017-10-11 05:32:00
127256    37978    530    2017-10-11 03:33:00    2017-10-11 03:33:00
127257    37978    860    2017-10-11 23:01:00    2017-10-11 23:01:00
127258    37978    702    2017-10-11 18:32:00    2017-10-11 18:32:00
127259    37978    491    2017-10-11 02:30:00    2017-10-11 02:30:00
127260    37979    845    2017-10-11 21:10:00    2017-10-11 21:10:00
127261    37979    757    2017-10-11 18:13:00    2017-10-11 18:13:00
127262    37979    506    2017-10-11 04:36:00    2017-10-11 04:36:00
127263    37979    545    2017-10-11 22:36:00    2017-10-11 22:36:00
127264    37979    675    2017-10-11 18:00:00    2017-10-11 18:00:00
127265    37980    869    2017-10-11 05:55:00    2017-10-11 05:55:00
127266    37980    709    2017-10-11 22:38:00    2017-10-11 22:38:00
127267    37980    917    2017-10-11 01:29:00    2017-10-11 01:29:00
127268    37980    727    2017-10-11 10:08:00    2017-10-11 10:08:00
127269    37980    875    2017-10-11 22:36:00    2017-10-11 22:36:00
127270    37981    638    2017-10-11 01:20:00    2017-10-11 01:20:00
127271    37981    781    2017-10-11 10:32:00    2017-10-11 10:32:00
127272    37981    683    2017-10-11 02:11:00    2017-10-11 02:11:00
127273    37981    851    2017-10-11 10:14:00    2017-10-11 10:14:00
127274    37981    674    2017-10-11 05:00:00    2017-10-11 05:00:00
127275    37982    578    2017-10-11 15:35:00    2017-10-11 15:35:00
127276    37982    947    2017-10-11 17:46:00    2017-10-11 17:46:00
127277    37982    508    2017-10-11 17:11:00    2017-10-11 17:11:00
127278    37982    903    2017-10-11 07:29:00    2017-10-11 07:29:00
127279    37982    934    2017-10-11 09:45:00    2017-10-11 09:45:00
127280    37983    683    2017-10-11 02:19:00    2017-10-11 02:19:00
127281    37983    739    2017-10-11 19:38:00    2017-10-11 19:38:00
127282    37983    579    2017-10-11 21:33:00    2017-10-11 21:33:00
127283    37983    706    2017-10-11 15:24:00    2017-10-11 15:24:00
127284    37983    565    2017-10-11 06:52:00    2017-10-11 06:52:00
127285    37984    711    2017-10-11 06:57:00    2017-10-11 06:57:00
127286    37984    938    2017-10-11 21:20:00    2017-10-11 21:20:00
127287    37984    830    2017-10-11 10:29:00    2017-10-11 10:29:00
127288    37984    725    2017-10-11 23:07:00    2017-10-11 23:07:00
127289    37984    728    2017-10-11 20:59:00    2017-10-11 20:59:00
127290    37985    707    2017-10-11 21:06:00    2017-10-11 21:06:00
127291    37985    957    2017-10-11 20:49:00    2017-10-11 20:49:00
127292    37985    562    2017-10-11 09:30:00    2017-10-11 09:30:00
127293    37985    520    2017-10-11 22:36:00    2017-10-11 22:36:00
127294    37985    897    2017-10-11 17:19:00    2017-10-11 17:19:00
127295    37986    712    2017-10-11 19:54:00    2017-10-11 19:54:00
127296    37986    875    2017-10-11 19:23:00    2017-10-11 19:23:00
127297    37986    700    2017-10-11 19:31:00    2017-10-11 19:31:00
127298    37986    614    2017-10-11 04:49:00    2017-10-11 04:49:00
127299    37986    882    2017-10-11 15:34:00    2017-10-11 15:34:00
127300    37987    614    2017-10-11 07:23:00    2017-10-11 07:23:00
127301    37987    683    2017-10-11 02:05:00    2017-10-11 02:05:00
127302    37987    897    2017-10-11 21:20:00    2017-10-11 21:20:00
127303    37987    560    2017-10-11 19:15:00    2017-10-11 19:15:00
127304    37987    950    2017-10-11 04:41:00    2017-10-11 04:41:00
127305    37988    764    2017-10-11 22:55:00    2017-10-11 22:55:00
127306    37988    524    2017-10-11 10:54:00    2017-10-11 10:54:00
127307    37988    585    2017-10-11 21:19:00    2017-10-11 21:19:00
127308    37988    855    2017-10-11 16:00:00    2017-10-11 16:00:00
127309    37988    475    2017-10-11 15:12:00    2017-10-11 15:12:00
127310    37989    841    2017-10-11 11:55:00    2017-10-11 11:55:00
127311    37989    944    2017-10-11 07:27:00    2017-10-11 07:27:00
127312    37989    550    2017-10-11 05:10:00    2017-10-11 05:10:00
127313    37989    829    2017-10-11 16:05:00    2017-10-11 16:05:00
127314    37989    491    2017-10-11 06:10:00    2017-10-11 06:10:00
127315    37990    659    2017-10-11 08:26:00    2017-10-11 08:26:00
127316    37990    574    2017-10-11 17:52:00    2017-10-11 17:52:00
127317    37990    594    2017-10-11 17:35:00    2017-10-11 17:35:00
127318    37990    917    2017-10-11 21:27:00    2017-10-11 21:27:00
127319    37990    472    2017-10-11 13:48:00    2017-10-11 13:48:00
127320    37991    774    2017-10-11 15:08:00    2017-10-11 15:08:00
127321    37991    873    2017-10-11 01:23:00    2017-10-11 01:23:00
127322    37991    511    2017-10-11 13:29:00    2017-10-11 13:29:00
127323    37991    499    2017-10-11 09:26:00    2017-10-11 09:26:00
127324    37991    950    2017-10-11 12:31:00    2017-10-11 12:31:00
127325    37992    849    2017-10-11 18:13:00    2017-10-11 18:13:00
127326    37992    677    2017-10-11 07:37:00    2017-10-11 07:37:00
127327    37992    525    2017-10-11 08:36:00    2017-10-11 08:36:00
127328    37992    577    2017-10-11 12:21:00    2017-10-11 12:21:00
127329    37992    674    2017-10-11 06:31:00    2017-10-11 06:31:00
127330    37993    644    2017-10-11 17:23:00    2017-10-11 17:23:00
127331    37993    517    2017-10-11 10:45:00    2017-10-11 10:45:00
127332    37993    720    2017-10-11 15:30:00    2017-10-11 15:30:00
127333    37993    568    2017-10-11 10:29:00    2017-10-11 10:29:00
127334    37993    705    2017-10-11 02:34:00    2017-10-11 02:34:00
127335    37994    848    2017-10-11 08:04:00    2017-10-11 08:04:00
127336    37994    535    2017-10-11 09:42:00    2017-10-11 09:42:00
127337    37994    618    2017-10-11 23:55:00    2017-10-11 23:55:00
127338    37994    684    2017-10-11 08:19:00    2017-10-11 08:19:00
127339    37994    604    2017-10-11 09:19:00    2017-10-11 09:19:00
127340    37995    558    2017-10-11 02:30:00    2017-10-11 02:30:00
127341    37995    743    2017-10-11 12:33:00    2017-10-11 12:33:00
127342    37995    641    2017-10-11 09:05:00    2017-10-11 09:05:00
127343    37995    644    2017-10-11 01:13:00    2017-10-11 01:13:00
127344    37995    467    2017-10-11 10:48:00    2017-10-11 10:48:00
127345    37996    898    2017-10-11 09:02:00    2017-10-11 09:02:00
127346    37996    735    2017-10-11 21:29:00    2017-10-11 21:29:00
127347    37996    486    2017-10-11 13:16:00    2017-10-11 13:16:00
127348    37996    599    2017-10-11 06:17:00    2017-10-11 06:17:00
127349    37996    475    2017-10-11 01:20:00    2017-10-11 01:20:00
127350    37997    805    2017-10-11 16:24:00    2017-10-11 16:24:00
127351    37997    755    2017-10-11 07:47:00    2017-10-11 07:47:00
127352    37997    923    2017-10-11 12:33:00    2017-10-11 12:33:00
127353    37997    609    2017-10-11 19:38:00    2017-10-11 19:38:00
127354    37997    517    2017-10-11 08:22:00    2017-10-11 08:22:00
127355    37998    622    2017-10-11 03:21:00    2017-10-11 03:21:00
127356    37998    574    2017-10-11 15:37:00    2017-10-11 15:37:00
127357    37998    602    2017-10-11 04:39:00    2017-10-11 04:39:00
127358    37998    871    2017-10-11 01:35:00    2017-10-11 01:35:00
127359    37998    487    2017-10-11 03:52:00    2017-10-11 03:52:00
127360    37999    557    2017-10-11 09:52:00    2017-10-11 09:52:00
127361    37999    779    2017-10-11 18:51:00    2017-10-11 18:51:00
127362    37999    511    2017-10-11 02:13:00    2017-10-11 02:13:00
127363    37999    818    2017-10-11 14:48:00    2017-10-11 14:48:00
127364    37999    709    2017-10-11 15:18:00    2017-10-11 15:18:00
127365    38000    463    2017-10-11 19:08:00    2017-10-11 19:08:00
127366    38000    767    2017-10-11 11:27:00    2017-10-11 11:27:00
127367    38000    852    2017-10-11 12:11:00    2017-10-11 12:11:00
127368    38000    483    2017-10-11 11:20:00    2017-10-11 11:20:00
127369    38000    638    2017-10-11 01:59:00    2017-10-11 01:59:00
127370    38001    614    2017-10-11 07:27:00    2017-10-11 07:27:00
127371    38001    714    2017-10-11 14:49:00    2017-10-11 14:49:00
127372    38001    744    2017-10-11 21:28:00    2017-10-11 21:28:00
127373    38001    543    2017-10-11 11:17:00    2017-10-11 11:17:00
127374    38001    686    2017-10-11 20:11:00    2017-10-11 20:11:00
127375    38002    788    2017-10-11 12:48:00    2017-10-11 12:48:00
127376    38002    663    2017-10-11 21:54:00    2017-10-11 21:54:00
127377    38002    748    2017-10-11 14:15:00    2017-10-11 14:15:00
127378    38002    648    2017-10-11 14:09:00    2017-10-11 14:09:00
127379    38002    813    2017-10-11 10:26:00    2017-10-11 10:26:00
127380    38003    922    2017-10-11 04:23:00    2017-10-11 04:23:00
127381    38003    706    2017-10-11 14:08:00    2017-10-11 14:08:00
127382    38003    531    2017-10-11 22:37:00    2017-10-11 22:37:00
127383    38003    928    2017-10-11 17:48:00    2017-10-11 17:48:00
127384    38003    561    2017-10-11 17:57:00    2017-10-11 17:57:00
127385    38004    526    2017-10-11 15:35:00    2017-10-11 15:35:00
127386    38004    537    2017-10-11 05:08:00    2017-10-11 05:08:00
127387    38004    795    2017-10-11 02:05:00    2017-10-11 02:05:00
127388    38004    784    2017-10-11 20:48:00    2017-10-11 20:48:00
127389    38004    685    2017-10-11 19:51:00    2017-10-11 19:51:00
127390    38005    531    2017-10-11 16:34:00    2017-10-11 16:34:00
127391    38005    639    2017-10-11 14:37:00    2017-10-11 14:37:00
127392    38005    921    2017-10-11 11:26:00    2017-10-11 11:26:00
127393    38005    616    2017-10-11 22:09:00    2017-10-11 22:09:00
127394    38005    705    2017-10-11 06:35:00    2017-10-11 06:35:00
127395    38006    478    2017-10-11 19:40:00    2017-10-11 19:40:00
127396    38006    586    2017-10-11 01:05:00    2017-10-11 01:05:00
127397    38006    720    2017-10-11 09:33:00    2017-10-11 09:33:00
127398    38006    810    2017-10-11 14:47:00    2017-10-11 14:47:00
127399    38006    736    2017-10-11 07:14:00    2017-10-11 07:14:00
127400    38007    808    2017-10-11 18:34:00    2017-10-11 18:34:00
127401    38007    823    2017-10-11 18:27:00    2017-10-11 18:27:00
127402    38007    480    2017-10-11 20:39:00    2017-10-11 20:39:00
127403    38007    615    2017-10-11 03:35:00    2017-10-11 03:35:00
127404    38007    930    2017-10-11 10:11:00    2017-10-11 10:11:00
127405    38008    618    2017-10-11 20:56:00    2017-10-11 20:56:00
127406    38008    588    2017-10-11 21:32:00    2017-10-11 21:32:00
127407    38008    519    2017-10-11 08:10:00    2017-10-11 08:10:00
127408    38008    580    2017-10-11 04:56:00    2017-10-11 04:56:00
127409    38008    702    2017-10-11 20:44:00    2017-10-11 20:44:00
127410    38009    563    2017-10-11 09:59:00    2017-10-11 09:59:00
127411    38009    539    2017-10-11 07:54:00    2017-10-11 07:54:00
127412    38009    580    2017-10-11 04:52:00    2017-10-11 04:52:00
127413    38009    480    2017-10-11 08:12:00    2017-10-11 08:12:00
127414    38009    956    2017-10-11 03:05:00    2017-10-11 03:05:00
127415    38010    882    2017-10-11 03:36:00    2017-10-11 03:36:00
127416    38010    908    2017-10-11 18:51:00    2017-10-11 18:51:00
127417    38010    918    2017-10-11 09:42:00    2017-10-11 09:42:00
127418    38010    561    2017-10-11 23:25:00    2017-10-11 23:25:00
127419    38010    833    2017-10-11 06:04:00    2017-10-11 06:04:00
127420    38011    949    2017-10-11 21:32:00    2017-10-11 21:32:00
127421    38011    888    2017-10-11 11:03:00    2017-10-11 11:03:00
127422    38011    631    2017-10-11 21:21:00    2017-10-11 21:21:00
127423    38011    617    2017-10-11 15:37:00    2017-10-11 15:37:00
127424    38011    494    2017-10-11 02:21:00    2017-10-11 02:21:00
127425    38012    660    2017-10-11 03:55:00    2017-10-11 03:55:00
127426    38012    489    2017-10-11 10:02:00    2017-10-11 10:02:00
127427    38012    862    2017-10-11 20:07:00    2017-10-11 20:07:00
127428    38012    947    2017-10-11 13:25:00    2017-10-11 13:25:00
127429    38012    463    2017-10-11 05:20:00    2017-10-11 05:20:00
127430    38013    689    2017-10-11 08:16:00    2017-10-11 08:16:00
127431    38013    564    2017-10-11 09:00:00    2017-10-11 09:00:00
127432    38013    635    2017-10-11 03:52:00    2017-10-11 03:52:00
127433    38013    848    2017-10-11 12:25:00    2017-10-11 12:25:00
127434    38013    920    2017-10-11 04:06:00    2017-10-11 04:06:00
127435    38014    678    2017-10-11 21:47:00    2017-10-11 21:47:00
127436    38014    673    2017-10-11 19:24:00    2017-10-11 19:24:00
127437    38014    656    2017-10-11 22:40:00    2017-10-11 22:40:00
127438    38014    817    2017-10-11 13:35:00    2017-10-11 13:35:00
127439    38014    774    2017-10-11 22:11:00    2017-10-11 22:11:00
127440    38015    820    2017-10-12 21:24:00    2017-10-12 21:24:00
127441    38015    649    2017-10-12 13:13:00    2017-10-12 13:13:00
127442    38015    943    2017-10-12 15:56:00    2017-10-12 15:56:00
127443    38015    572    2017-10-12 12:10:00    2017-10-12 12:10:00
127444    38015    790    2017-10-12 18:31:00    2017-10-12 18:31:00
127445    38016    579    2017-10-12 07:50:00    2017-10-12 07:50:00
127446    38016    550    2017-10-12 13:54:00    2017-10-12 13:54:00
127447    38016    618    2017-10-12 14:07:00    2017-10-12 14:07:00
127448    38016    828    2017-10-12 12:03:00    2017-10-12 12:03:00
127449    38016    712    2017-10-12 20:17:00    2017-10-12 20:17:00
127450    38017    624    2017-10-12 02:54:00    2017-10-12 02:54:00
127451    38017    566    2017-10-12 15:25:00    2017-10-12 15:25:00
127452    38017    876    2017-10-12 15:21:00    2017-10-12 15:21:00
127453    38017    652    2017-10-12 08:43:00    2017-10-12 08:43:00
127454    38017    744    2017-10-12 05:30:00    2017-10-12 05:30:00
127455    38018    842    2017-10-12 03:08:00    2017-10-12 03:08:00
127456    38018    609    2017-10-12 08:26:00    2017-10-12 08:26:00
127457    38018    534    2017-10-12 13:56:00    2017-10-12 13:56:00
127458    38018    741    2017-10-12 08:57:00    2017-10-12 08:57:00
127459    38018    537    2017-10-12 12:28:00    2017-10-12 12:28:00
127460    38019    637    2017-10-12 20:56:00    2017-10-12 20:56:00
127461    38019    553    2017-10-12 06:12:00    2017-10-12 06:12:00
127462    38019    524    2017-10-12 12:22:00    2017-10-12 12:22:00
127463    38019    610    2017-10-12 17:51:00    2017-10-12 17:51:00
127464    38019    622    2017-10-12 20:03:00    2017-10-12 20:03:00
127465    38020    671    2017-10-12 05:54:00    2017-10-12 05:54:00
127466    38020    787    2017-10-12 15:00:00    2017-10-12 15:00:00
127467    38020    639    2017-10-12 07:24:00    2017-10-12 07:24:00
127468    38020    912    2017-10-12 04:59:00    2017-10-12 04:59:00
127469    38020    616    2017-10-12 07:49:00    2017-10-12 07:49:00
127470    38021    938    2017-10-12 18:55:00    2017-10-12 18:55:00
127471    38021    916    2017-10-12 20:00:00    2017-10-12 20:00:00
127472    38021    608    2017-10-12 15:30:00    2017-10-12 15:30:00
127473    38021    519    2017-10-12 17:41:00    2017-10-12 17:41:00
127474    38021    680    2017-10-12 12:00:00    2017-10-12 12:00:00
127475    38022    610    2017-10-12 10:57:00    2017-10-12 10:57:00
127476    38022    703    2017-10-12 19:46:00    2017-10-12 19:46:00
127477    38022    761    2017-10-12 21:13:00    2017-10-12 21:13:00
127478    38022    774    2017-10-12 09:39:00    2017-10-12 09:39:00
127479    38022    769    2017-10-12 01:50:00    2017-10-12 01:50:00
127480    38023    530    2017-10-12 21:51:00    2017-10-12 21:51:00
127481    38023    732    2017-10-12 13:03:00    2017-10-12 13:03:00
127482    38023    806    2017-10-12 01:04:00    2017-10-12 01:04:00
127483    38023    859    2017-10-12 05:20:00    2017-10-12 05:20:00
127484    38023    950    2017-10-12 07:58:00    2017-10-12 07:58:00
127485    38024    482    2017-10-12 10:57:00    2017-10-12 10:57:00
127486    38024    576    2017-10-12 20:30:00    2017-10-12 20:30:00
127487    38024    897    2017-10-12 02:56:00    2017-10-12 02:56:00
127488    38024    773    2017-10-12 03:28:00    2017-10-12 03:28:00
127489    38024    893    2017-10-12 04:30:00    2017-10-12 04:30:00
127490    38025    507    2017-10-12 23:38:00    2017-10-12 23:38:00
127491    38025    661    2017-10-12 23:11:00    2017-10-12 23:11:00
127492    38025    466    2017-10-12 21:54:00    2017-10-12 21:54:00
127493    38025    494    2017-10-12 04:15:00    2017-10-12 04:15:00
127494    38025    706    2017-10-12 18:56:00    2017-10-12 18:56:00
127495    38026    490    2017-10-12 08:53:00    2017-10-12 08:53:00
127496    38026    694    2017-10-12 22:04:00    2017-10-12 22:04:00
127497    38026    525    2017-10-12 07:32:00    2017-10-12 07:32:00
127498    38026    498    2017-10-12 07:30:00    2017-10-12 07:30:00
127499    38026    536    2017-10-12 19:25:00    2017-10-12 19:25:00
127500    38027    771    2017-10-12 09:35:00    2017-10-12 09:35:00
127501    38027    840    2017-10-12 22:00:00    2017-10-12 22:00:00
127502    38027    636    2017-10-12 09:49:00    2017-10-12 09:49:00
127503    38027    932    2017-10-12 11:08:00    2017-10-12 11:08:00
127504    38027    545    2017-10-12 09:42:00    2017-10-12 09:42:00
127505    38028    949    2017-10-12 23:17:00    2017-10-12 23:17:00
127506    38028    581    2017-10-12 20:43:00    2017-10-12 20:43:00
127507    38028    886    2017-10-12 13:38:00    2017-10-12 13:38:00
127508    38028    673    2017-10-12 17:55:00    2017-10-12 17:55:00
127509    38028    845    2017-10-12 04:06:00    2017-10-12 04:06:00
127510    38029    515    2017-10-12 18:33:00    2017-10-12 18:33:00
127511    38029    636    2017-10-12 11:42:00    2017-10-12 11:42:00
127512    38029    574    2017-10-12 21:14:00    2017-10-12 21:14:00
127513    38029    891    2017-10-12 08:11:00    2017-10-12 08:11:00
127514    38029    817    2017-10-12 01:30:00    2017-10-12 01:30:00
127515    38030    629    2017-10-12 07:45:00    2017-10-12 07:45:00
127516    38030    708    2017-10-12 03:35:00    2017-10-12 03:35:00
127517    38030    662    2017-10-12 22:23:00    2017-10-12 22:23:00
127518    38030    515    2017-10-12 01:00:00    2017-10-12 01:00:00
127519    38030    918    2017-10-12 21:01:00    2017-10-12 21:01:00
127520    38031    843    2017-10-12 19:51:00    2017-10-12 19:51:00
127521    38031    958    2017-10-12 16:22:00    2017-10-12 16:22:00
127522    38031    498    2017-10-12 10:18:00    2017-10-12 10:18:00
127523    38031    896    2017-10-12 21:51:00    2017-10-12 21:51:00
127524    38031    848    2017-10-12 07:15:00    2017-10-12 07:15:00
127525    38032    636    2017-10-12 23:29:00    2017-10-12 23:29:00
127526    38032    533    2017-10-12 10:02:00    2017-10-12 10:02:00
127527    38032    920    2017-10-12 18:10:00    2017-10-12 18:10:00
127528    38032    469    2017-10-12 12:50:00    2017-10-12 12:50:00
127529    38032    703    2017-10-12 09:15:00    2017-10-12 09:15:00
127530    38033    912    2017-10-12 04:31:00    2017-10-12 04:31:00
127531    38033    761    2017-10-12 08:57:00    2017-10-12 08:57:00
127532    38033    856    2017-10-12 14:27:00    2017-10-12 14:27:00
127533    38033    697    2017-10-12 16:58:00    2017-10-12 16:58:00
127534    38033    923    2017-10-12 05:45:00    2017-10-12 05:45:00
127535    38034    766    2017-10-12 22:57:00    2017-10-12 22:57:00
127536    38034    477    2017-10-12 09:13:00    2017-10-12 09:13:00
127537    38034    553    2017-10-12 16:24:00    2017-10-12 16:24:00
127538    38034    856    2017-10-12 09:46:00    2017-10-12 09:46:00
127539    38034    863    2017-10-12 14:00:00    2017-10-12 14:00:00
127540    38035    932    2017-10-12 20:14:00    2017-10-12 20:14:00
127541    38035    910    2017-10-12 23:01:00    2017-10-12 23:01:00
127542    38035    540    2017-10-12 08:14:00    2017-10-12 08:14:00
127543    38035    933    2017-10-12 08:45:00    2017-10-12 08:45:00
127544    38035    620    2017-10-12 23:04:00    2017-10-12 23:04:00
127545    38036    603    2017-10-12 08:43:00    2017-10-12 08:43:00
127546    38036    731    2017-10-12 18:33:00    2017-10-12 18:33:00
127547    38036    560    2017-10-12 23:03:00    2017-10-12 23:03:00
127548    38036    803    2017-10-12 12:44:00    2017-10-12 12:44:00
127549    38036    602    2017-10-12 15:00:00    2017-10-12 15:00:00
127550    38037    769    2017-10-12 21:11:00    2017-10-12 21:11:00
127551    38037    824    2017-10-12 19:10:00    2017-10-12 19:10:00
127552    38037    743    2017-10-12 12:47:00    2017-10-12 12:47:00
127553    38037    866    2017-10-12 11:21:00    2017-10-12 11:21:00
127554    38037    480    2017-10-12 17:55:00    2017-10-12 17:55:00
127555    38038    847    2017-10-12 07:55:00    2017-10-12 07:55:00
127556    38038    680    2017-10-12 09:27:00    2017-10-12 09:27:00
127557    38038    855    2017-10-12 22:14:00    2017-10-12 22:14:00
127558    38038    626    2017-10-12 08:19:00    2017-10-12 08:19:00
127559    38038    582    2017-10-12 01:22:00    2017-10-12 01:22:00
127560    38039    907    2017-10-12 19:09:00    2017-10-12 19:09:00
127561    38039    500    2017-10-12 02:56:00    2017-10-12 02:56:00
127562    38039    541    2017-10-12 12:15:00    2017-10-12 12:15:00
127563    38039    788    2017-10-12 09:21:00    2017-10-12 09:21:00
127564    38039    744    2017-10-12 02:36:00    2017-10-12 02:36:00
127565    38040    727    2017-10-12 20:17:00    2017-10-12 20:17:00
127566    38040    640    2017-10-12 08:13:00    2017-10-12 08:13:00
127567    38040    867    2017-10-12 13:28:00    2017-10-12 13:28:00
127568    38040    747    2017-10-12 22:42:00    2017-10-12 22:42:00
127569    38040    536    2017-10-12 09:14:00    2017-10-12 09:14:00
127570    38041    516    2017-10-12 19:35:00    2017-10-12 19:35:00
127571    38041    944    2017-10-12 14:37:00    2017-10-12 14:37:00
127572    38041    898    2017-10-12 17:29:00    2017-10-12 17:29:00
127573    38041    894    2017-10-12 21:25:00    2017-10-12 21:25:00
127574    38041    614    2017-10-12 11:02:00    2017-10-12 11:02:00
127575    38042    842    2017-10-12 03:45:00    2017-10-12 03:45:00
127576    38042    815    2017-10-12 04:59:00    2017-10-12 04:59:00
127577    38042    773    2017-10-12 13:55:00    2017-10-12 13:55:00
127578    38042    524    2017-10-12 12:42:00    2017-10-12 12:42:00
127579    38042    735    2017-10-12 04:28:00    2017-10-12 04:28:00
127580    38043    669    2017-10-12 16:38:00    2017-10-12 16:38:00
127581    38043    688    2017-10-12 02:15:00    2017-10-12 02:15:00
127582    38043    719    2017-10-12 06:00:00    2017-10-12 06:00:00
127583    38043    674    2017-10-12 21:39:00    2017-10-12 21:39:00
127584    38043    553    2017-10-12 21:26:00    2017-10-12 21:26:00
127585    38044    703    2017-10-12 03:07:00    2017-10-12 03:07:00
127586    38044    797    2017-10-12 23:22:00    2017-10-12 23:22:00
127587    38044    901    2017-10-12 01:34:00    2017-10-12 01:34:00
127588    38044    953    2017-10-12 11:40:00    2017-10-12 11:40:00
127589    38044    866    2017-10-12 16:08:00    2017-10-12 16:08:00
127590    38045    673    2017-10-12 08:38:00    2017-10-12 08:38:00
127591    38045    686    2017-10-12 11:05:00    2017-10-12 11:05:00
127592    38045    797    2017-10-12 19:04:00    2017-10-12 19:04:00
127593    38045    492    2017-10-12 03:41:00    2017-10-12 03:41:00
127594    38045    504    2017-10-12 15:19:00    2017-10-12 15:19:00
127595    38046    663    2017-10-12 08:43:00    2017-10-12 08:43:00
127596    38046    652    2017-10-12 07:04:00    2017-10-12 07:04:00
127597    38046    612    2017-10-12 21:20:00    2017-10-12 21:20:00
127598    38046    635    2017-10-12 15:07:00    2017-10-12 15:07:00
127599    38046    545    2017-10-12 02:54:00    2017-10-12 02:54:00
127600    38047    467    2017-10-12 08:47:00    2017-10-12 08:47:00
127601    38047    508    2017-10-12 14:18:00    2017-10-12 14:18:00
127602    38047    817    2017-10-12 15:17:00    2017-10-12 15:17:00
127603    38047    496    2017-10-12 16:38:00    2017-10-12 16:38:00
127604    38047    470    2017-10-12 16:36:00    2017-10-12 16:36:00
127605    38048    562    2017-10-12 07:05:00    2017-10-12 07:05:00
127606    38048    477    2017-10-12 21:38:00    2017-10-12 21:38:00
127607    38048    634    2017-10-12 11:51:00    2017-10-12 11:51:00
127608    38048    571    2017-10-12 16:46:00    2017-10-12 16:46:00
127609    38048    781    2017-10-12 01:22:00    2017-10-12 01:22:00
127610    38049    785    2017-10-12 13:30:00    2017-10-12 13:30:00
127611    38049    641    2017-10-12 16:15:00    2017-10-12 16:15:00
127612    38049    651    2017-10-12 08:43:00    2017-10-12 08:43:00
127613    38049    603    2017-10-12 07:36:00    2017-10-12 07:36:00
127614    38049    622    2017-10-12 09:30:00    2017-10-12 09:30:00
127615    38050    823    2017-10-12 16:12:00    2017-10-12 16:12:00
127616    38050    595    2017-10-12 10:47:00    2017-10-12 10:47:00
127617    38050    883    2017-10-12 08:54:00    2017-10-12 08:54:00
127618    38050    574    2017-10-12 01:15:00    2017-10-12 01:15:00
127619    38050    515    2017-10-12 08:54:00    2017-10-12 08:54:00
127620    38051    917    2017-10-12 23:52:00    2017-10-12 23:52:00
127621    38051    591    2017-10-12 09:32:00    2017-10-12 09:32:00
127622    38051    632    2017-10-12 17:33:00    2017-10-12 17:33:00
127623    38051    568    2017-10-12 19:10:00    2017-10-12 19:10:00
127624    38051    659    2017-10-12 20:25:00    2017-10-12 20:25:00
127625    38052    940    2017-10-12 03:26:00    2017-10-12 03:26:00
127626    38052    513    2017-10-12 19:16:00    2017-10-12 19:16:00
127627    38052    692    2017-10-12 03:48:00    2017-10-12 03:48:00
127628    38052    467    2017-10-12 03:38:00    2017-10-12 03:38:00
127629    38052    839    2017-10-12 22:20:00    2017-10-12 22:20:00
127630    38053    749    2017-10-12 20:53:00    2017-10-12 20:53:00
127631    38053    897    2017-10-12 02:59:00    2017-10-12 02:59:00
127632    38053    840    2017-10-12 15:06:00    2017-10-12 15:06:00
127633    38053    588    2017-10-12 22:06:00    2017-10-12 22:06:00
127634    38053    919    2017-10-12 21:47:00    2017-10-12 21:47:00
127635    38054    470    2017-10-12 16:34:00    2017-10-12 16:34:00
127636    38054    604    2017-10-12 10:24:00    2017-10-12 10:24:00
127637    38054    903    2017-10-12 15:03:00    2017-10-12 15:03:00
127638    38054    886    2017-10-12 21:11:00    2017-10-12 21:11:00
127639    38054    788    2017-10-12 04:43:00    2017-10-12 04:43:00
127640    38055    632    2017-10-12 13:04:00    2017-10-12 13:04:00
127641    38055    871    2017-10-12 20:15:00    2017-10-12 20:15:00
127642    38055    673    2017-10-12 10:08:00    2017-10-12 10:08:00
127643    38055    946    2017-10-12 07:20:00    2017-10-12 07:20:00
127644    38055    673    2017-10-12 09:26:00    2017-10-12 09:26:00
127645    38056    653    2017-10-12 01:41:00    2017-10-12 01:41:00
127646    38056    533    2017-10-12 14:59:00    2017-10-12 14:59:00
127647    38056    568    2017-10-12 04:19:00    2017-10-12 04:19:00
127648    38056    721    2017-10-12 17:16:00    2017-10-12 17:16:00
127649    38056    590    2017-10-12 10:49:00    2017-10-12 10:49:00
127650    38057    862    2017-10-12 20:11:00    2017-10-12 20:11:00
127651    38057    866    2017-10-12 22:49:00    2017-10-12 22:49:00
127652    38057    855    2017-10-12 10:41:00    2017-10-12 10:41:00
127653    38057    782    2017-10-12 08:05:00    2017-10-12 08:05:00
127654    38057    772    2017-10-12 06:17:00    2017-10-12 06:17:00
127655    38058    795    2017-10-12 06:06:00    2017-10-12 06:06:00
127656    38058    512    2017-10-12 01:36:00    2017-10-12 01:36:00
127657    38058    851    2017-10-12 09:24:00    2017-10-12 09:24:00
127658    38058    838    2017-10-12 07:03:00    2017-10-12 07:03:00
127659    38058    616    2017-10-12 18:48:00    2017-10-12 18:48:00
127660    38059    639    2017-10-12 21:12:00    2017-10-12 21:12:00
127661    38059    634    2017-10-12 17:54:00    2017-10-12 17:54:00
127662    38059    608    2017-10-12 23:29:00    2017-10-12 23:29:00
127663    38059    874    2017-10-12 21:47:00    2017-10-12 21:47:00
127664    38059    747    2017-10-12 17:02:00    2017-10-12 17:02:00
127665    38060    758    2017-10-12 04:42:00    2017-10-12 04:42:00
127666    38060    529    2017-10-12 23:22:00    2017-10-12 23:22:00
127667    38060    818    2017-10-12 19:17:00    2017-10-12 19:17:00
127668    38060    639    2017-10-12 21:35:00    2017-10-12 21:35:00
127669    38060    585    2017-10-12 06:28:00    2017-10-12 06:28:00
127670    38061    907    2017-10-12 08:46:00    2017-10-12 08:46:00
127671    38061    511    2017-10-12 01:42:00    2017-10-12 01:42:00
127672    38061    852    2017-10-12 22:22:00    2017-10-12 22:22:00
127673    38061    920    2017-10-12 10:51:00    2017-10-12 10:51:00
127674    38061    929    2017-10-12 10:16:00    2017-10-12 10:16:00
127675    38062    524    2017-10-12 18:51:00    2017-10-12 18:51:00
127676    38062    737    2017-10-12 13:36:00    2017-10-12 13:36:00
127677    38062    723    2017-10-12 08:16:00    2017-10-12 08:16:00
127678    38062    806    2017-10-12 17:33:00    2017-10-12 17:33:00
127679    38062    666    2017-10-12 22:52:00    2017-10-12 22:52:00
127680    38063    624    2017-10-12 06:54:00    2017-10-12 06:54:00
127681    38063    744    2017-10-12 19:30:00    2017-10-12 19:30:00
127682    38063    686    2017-10-12 10:11:00    2017-10-12 10:11:00
127683    38063    781    2017-10-12 11:57:00    2017-10-12 11:57:00
127684    38063    485    2017-10-12 16:33:00    2017-10-12 16:33:00
127685    38064    474    2017-10-12 17:53:00    2017-10-12 17:53:00
127686    38064    869    2017-10-12 01:10:00    2017-10-12 01:10:00
127687    38064    848    2017-10-12 03:36:00    2017-10-12 03:36:00
127688    38064    855    2017-10-12 20:28:00    2017-10-12 20:28:00
127689    38064    655    2017-10-12 20:15:00    2017-10-12 20:15:00
127690    38065    569    2017-10-12 10:21:00    2017-10-12 10:21:00
127691    38065    815    2017-10-12 08:14:00    2017-10-12 08:14:00
127692    38065    737    2017-10-12 11:06:00    2017-10-12 11:06:00
127693    38065    660    2017-10-12 07:10:00    2017-10-12 07:10:00
127694    38065    946    2017-10-12 15:52:00    2017-10-12 15:52:00
127695    38066    884    2017-10-12 14:29:00    2017-10-12 14:29:00
127696    38066    691    2017-10-12 23:41:00    2017-10-12 23:41:00
127697    38066    503    2017-10-12 02:03:00    2017-10-12 02:03:00
127698    38066    599    2017-10-12 14:27:00    2017-10-12 14:27:00
127699    38066    872    2017-10-12 18:42:00    2017-10-12 18:42:00
127700    38067    774    2017-10-12 08:00:00    2017-10-12 08:00:00
127701    38067    604    2017-10-12 07:46:00    2017-10-12 07:46:00
127702    38067    648    2017-10-12 13:00:00    2017-10-12 13:00:00
127703    38067    915    2017-10-12 11:37:00    2017-10-12 11:37:00
127704    38067    499    2017-10-12 12:07:00    2017-10-12 12:07:00
127705    38068    691    2017-10-13 09:52:00    2017-10-13 09:52:00
127706    38068    559    2017-10-13 23:49:00    2017-10-13 23:49:00
127707    38068    564    2017-10-13 11:07:00    2017-10-13 11:07:00
127708    38068    773    2017-10-13 11:14:00    2017-10-13 11:14:00
127709    38068    526    2017-10-13 10:23:00    2017-10-13 10:23:00
127710    38069    916    2017-10-13 16:22:00    2017-10-13 16:22:00
127711    38069    896    2017-10-13 07:59:00    2017-10-13 07:59:00
127712    38069    775    2017-10-13 08:59:00    2017-10-13 08:59:00
127713    38069    711    2017-10-13 07:40:00    2017-10-13 07:40:00
127714    38069    948    2017-10-13 10:53:00    2017-10-13 10:53:00
127715    38070    513    2017-10-13 16:26:00    2017-10-13 16:26:00
127716    38070    687    2017-10-13 17:58:00    2017-10-13 17:58:00
127717    38070    899    2017-10-13 07:16:00    2017-10-13 07:16:00
127718    38070    703    2017-10-13 22:06:00    2017-10-13 22:06:00
127719    38070    642    2017-10-13 17:44:00    2017-10-13 17:44:00
127720    38071    863    2017-10-13 05:41:00    2017-10-13 05:41:00
127721    38071    587    2017-10-13 15:48:00    2017-10-13 15:48:00
127722    38071    693    2017-10-13 05:09:00    2017-10-13 05:09:00
127723    38071    783    2017-10-13 01:14:00    2017-10-13 01:14:00
127724    38071    485    2017-10-13 06:46:00    2017-10-13 06:46:00
127725    38072    519    2017-10-13 11:24:00    2017-10-13 11:24:00
127726    38072    694    2017-10-13 21:09:00    2017-10-13 21:09:00
127727    38072    831    2017-10-13 04:25:00    2017-10-13 04:25:00
127728    38072    820    2017-10-13 06:32:00    2017-10-13 06:32:00
127729    38072    943    2017-10-13 03:46:00    2017-10-13 03:46:00
127730    38073    565    2017-10-13 02:52:00    2017-10-13 02:52:00
127731    38073    703    2017-10-13 01:57:00    2017-10-13 01:57:00
127732    38073    630    2017-10-13 22:23:00    2017-10-13 22:23:00
127733    38073    675    2017-10-13 20:51:00    2017-10-13 20:51:00
127734    38073    471    2017-10-13 16:43:00    2017-10-13 16:43:00
127735    38074    478    2017-10-13 10:32:00    2017-10-13 10:32:00
127736    38074    903    2017-10-13 05:47:00    2017-10-13 05:47:00
127737    38074    474    2017-10-13 23:17:00    2017-10-13 23:17:00
127738    38074    597    2017-10-13 03:45:00    2017-10-13 03:45:00
127739    38074    591    2017-10-13 14:12:00    2017-10-13 14:12:00
127740    38075    611    2017-10-13 12:11:00    2017-10-13 12:11:00
127741    38075    608    2017-10-13 17:00:00    2017-10-13 17:00:00
127742    38075    607    2017-10-13 13:30:00    2017-10-13 13:30:00
127743    38075    624    2017-10-13 16:00:00    2017-10-13 16:00:00
127744    38075    951    2017-10-13 19:16:00    2017-10-13 19:16:00
127745    38076    610    2017-10-13 05:36:00    2017-10-13 05:36:00
127746    38076    684    2017-10-13 22:37:00    2017-10-13 22:37:00
127747    38076    485    2017-10-13 03:00:00    2017-10-13 03:00:00
127748    38076    656    2017-10-13 11:18:00    2017-10-13 11:18:00
127749    38076    538    2017-10-13 10:41:00    2017-10-13 10:41:00
127750    38077    475    2017-10-13 04:27:00    2017-10-13 04:27:00
127751    38077    585    2017-10-13 10:13:00    2017-10-13 10:13:00
127752    38077    835    2017-10-13 21:06:00    2017-10-13 21:06:00
127753    38077    880    2017-10-13 20:28:00    2017-10-13 20:28:00
127754    38077    588    2017-10-13 10:10:00    2017-10-13 10:10:00
127755    38078    601    2017-10-13 16:43:00    2017-10-13 16:43:00
127756    38078    579    2017-10-13 16:49:00    2017-10-13 16:49:00
127757    38078    548    2017-10-13 07:54:00    2017-10-13 07:54:00
127758    38078    933    2017-10-13 19:22:00    2017-10-13 19:22:00
127759    38078    534    2017-10-13 14:02:00    2017-10-13 14:02:00
127760    38079    634    2017-10-13 19:01:00    2017-10-13 19:01:00
127761    38079    762    2017-10-13 01:40:00    2017-10-13 01:40:00
127762    38079    823    2017-10-13 04:56:00    2017-10-13 04:56:00
127763    38079    577    2017-10-13 19:20:00    2017-10-13 19:20:00
127764    38079    510    2017-10-13 16:57:00    2017-10-13 16:57:00
127765    38080    598    2017-10-13 23:22:00    2017-10-13 23:22:00
127766    38080    699    2017-10-13 14:54:00    2017-10-13 14:54:00
127767    38080    878    2017-10-13 04:39:00    2017-10-13 04:39:00
127768    38080    496    2017-10-13 11:12:00    2017-10-13 11:12:00
127769    38080    744    2017-10-13 14:00:00    2017-10-13 14:00:00
127770    38081    609    2017-10-13 05:57:00    2017-10-13 05:57:00
127771    38081    622    2017-10-13 13:34:00    2017-10-13 13:34:00
127772    38081    481    2017-10-13 18:14:00    2017-10-13 18:14:00
127773    38081    818    2017-10-13 21:12:00    2017-10-13 21:12:00
127774    38081    803    2017-10-13 08:06:00    2017-10-13 08:06:00
127775    38082    811    2017-10-13 10:18:00    2017-10-13 10:18:00
127776    38082    862    2017-10-13 17:12:00    2017-10-13 17:12:00
127777    38082    723    2017-10-13 19:14:00    2017-10-13 19:14:00
127778    38082    696    2017-10-13 08:14:00    2017-10-13 08:14:00
127779    38082    669    2017-10-13 21:31:00    2017-10-13 21:31:00
127780    38083    482    2017-10-13 03:15:00    2017-10-13 03:15:00
127781    38083    684    2017-10-13 05:45:00    2017-10-13 05:45:00
127782    38083    649    2017-10-13 09:39:00    2017-10-13 09:39:00
127783    38083    622    2017-10-13 15:40:00    2017-10-13 15:40:00
127784    38083    923    2017-10-13 14:51:00    2017-10-13 14:51:00
127785    38084    802    2017-10-13 06:24:00    2017-10-13 06:24:00
127786    38084    863    2017-10-13 16:53:00    2017-10-13 16:53:00
127787    38084    881    2017-10-13 18:11:00    2017-10-13 18:11:00
127788    38084    869    2017-10-13 04:45:00    2017-10-13 04:45:00
127789    38084    683    2017-10-13 09:11:00    2017-10-13 09:11:00
127790    38085    912    2017-10-13 15:50:00    2017-10-13 15:50:00
127791    38085    474    2017-10-13 09:29:00    2017-10-13 09:29:00
127792    38085    731    2017-10-13 11:15:00    2017-10-13 11:15:00
127793    38085    824    2017-10-13 23:50:00    2017-10-13 23:50:00
127794    38085    703    2017-10-13 13:15:00    2017-10-13 13:15:00
127795    38086    685    2017-10-13 17:58:00    2017-10-13 17:58:00
127796    38086    769    2017-10-13 17:29:00    2017-10-13 17:29:00
127797    38086    664    2017-10-13 11:52:00    2017-10-13 11:52:00
127798    38086    850    2017-10-13 06:00:00    2017-10-13 06:00:00
127799    38086    579    2017-10-13 07:28:00    2017-10-13 07:28:00
127800    38087    533    2017-10-13 20:23:00    2017-10-13 20:23:00
127801    38087    551    2017-10-13 10:26:00    2017-10-13 10:26:00
127802    38087    909    2017-10-13 07:33:00    2017-10-13 07:33:00
127803    38087    955    2017-10-13 16:54:00    2017-10-13 16:54:00
127804    38087    641    2017-10-13 02:50:00    2017-10-13 02:50:00
127805    38088    944    2017-10-13 19:52:00    2017-10-13 19:52:00
127806    38088    704    2017-10-13 13:42:00    2017-10-13 13:42:00
127807    38088    571    2017-10-13 17:36:00    2017-10-13 17:36:00
127808    38088    557    2017-10-13 02:05:00    2017-10-13 02:05:00
127809    38088    640    2017-10-13 19:38:00    2017-10-13 19:38:00
127810    38089    938    2017-10-13 22:31:00    2017-10-13 22:31:00
127811    38089    530    2017-10-13 17:34:00    2017-10-13 17:34:00
127812    38089    749    2017-10-13 19:33:00    2017-10-13 19:33:00
127813    38089    520    2017-10-13 12:30:00    2017-10-13 12:30:00
127814    38089    812    2017-10-13 02:47:00    2017-10-13 02:47:00
127815    38090    786    2017-10-13 18:54:00    2017-10-13 18:54:00
127816    38090    889    2017-10-13 01:59:00    2017-10-13 01:59:00
127817    38090    769    2017-10-13 08:30:00    2017-10-13 08:30:00
127818    38090    545    2017-10-13 20:13:00    2017-10-13 20:13:00
127819    38090    658    2017-10-13 13:59:00    2017-10-13 13:59:00
127820    38091    687    2017-10-13 16:24:00    2017-10-13 16:24:00
127821    38091    566    2017-10-13 08:17:00    2017-10-13 08:17:00
127822    38091    917    2017-10-13 21:51:00    2017-10-13 21:51:00
127823    38091    528    2017-10-13 02:44:00    2017-10-13 02:44:00
127824    38091    865    2017-10-13 10:23:00    2017-10-13 10:23:00
127825    38092    783    2017-10-13 08:30:00    2017-10-13 08:30:00
127826    38092    614    2017-10-13 17:20:00    2017-10-13 17:20:00
127827    38092    565    2017-10-13 11:23:00    2017-10-13 11:23:00
127828    38092    513    2017-10-13 07:15:00    2017-10-13 07:15:00
127829    38092    724    2017-10-13 02:31:00    2017-10-13 02:31:00
127830    38093    959    2017-10-13 05:51:00    2017-10-13 05:51:00
127831    38093    765    2017-10-13 13:00:00    2017-10-13 13:00:00
127832    38093    489    2017-10-13 14:45:00    2017-10-13 14:45:00
127833    38093    553    2017-10-13 07:36:00    2017-10-13 07:36:00
127834    38093    945    2017-10-13 08:12:00    2017-10-13 08:12:00
127835    38094    587    2017-10-13 18:28:00    2017-10-13 18:28:00
127836    38094    821    2017-10-13 04:07:00    2017-10-13 04:07:00
127837    38094    664    2017-10-13 02:54:00    2017-10-13 02:54:00
127838    38094    522    2017-10-13 16:41:00    2017-10-13 16:41:00
127839    38094    794    2017-10-13 10:12:00    2017-10-13 10:12:00
127840    38095    807    2017-10-13 05:36:00    2017-10-13 05:36:00
127841    38095    480    2017-10-13 09:19:00    2017-10-13 09:19:00
127842    38095    878    2017-10-13 13:30:00    2017-10-13 13:30:00
127843    38095    727    2017-10-13 12:39:00    2017-10-13 12:39:00
127844    38095    699    2017-10-13 20:30:00    2017-10-13 20:30:00
127845    38096    841    2017-10-13 13:00:00    2017-10-13 13:00:00
127846    38096    930    2017-10-13 06:04:00    2017-10-13 06:04:00
127847    38096    692    2017-10-13 18:55:00    2017-10-13 18:55:00
127848    38096    556    2017-10-13 13:27:00    2017-10-13 13:27:00
127849    38096    464    2017-10-13 01:13:00    2017-10-13 01:13:00
127850    38097    514    2017-10-13 06:23:00    2017-10-13 06:23:00
127851    38097    802    2017-10-13 22:17:00    2017-10-13 22:17:00
127852    38097    725    2017-10-13 04:06:00    2017-10-13 04:06:00
127853    38097    961    2017-10-13 16:51:00    2017-10-13 16:51:00
127854    38097    726    2017-10-13 06:30:00    2017-10-13 06:30:00
127855    38098    955    2017-10-13 13:56:00    2017-10-13 13:56:00
127856    38098    625    2017-10-13 11:55:00    2017-10-13 11:55:00
127857    38098    620    2017-10-13 21:43:00    2017-10-13 21:43:00
127858    38098    655    2017-10-13 23:31:00    2017-10-13 23:31:00
127859    38098    806    2017-10-13 05:38:00    2017-10-13 05:38:00
127860    38099    914    2017-10-13 01:03:00    2017-10-13 01:03:00
127861    38099    623    2017-10-13 07:35:00    2017-10-13 07:35:00
127862    38099    651    2017-10-13 16:39:00    2017-10-13 16:39:00
127863    38099    619    2017-10-13 22:37:00    2017-10-13 22:37:00
127864    38099    502    2017-10-13 14:51:00    2017-10-13 14:51:00
127865    38100    820    2017-10-13 06:15:00    2017-10-13 06:15:00
127866    38100    585    2017-10-13 05:28:00    2017-10-13 05:28:00
127867    38100    486    2017-10-13 16:36:00    2017-10-13 16:36:00
127868    38100    759    2017-10-13 11:46:00    2017-10-13 11:46:00
127869    38100    845    2017-10-13 06:45:00    2017-10-13 06:45:00
127870    38101    953    2017-10-13 01:45:00    2017-10-13 01:45:00
127871    38101    754    2017-10-13 01:52:00    2017-10-13 01:52:00
127872    38101    833    2017-10-13 19:35:00    2017-10-13 19:35:00
127873    38101    893    2017-10-13 21:06:00    2017-10-13 21:06:00
127874    38101    811    2017-10-13 21:54:00    2017-10-13 21:54:00
127875    38102    757    2017-10-13 15:20:00    2017-10-13 15:20:00
127876    38102    503    2017-10-13 16:02:00    2017-10-13 16:02:00
127877    38102    614    2017-10-13 22:47:00    2017-10-13 22:47:00
127878    38102    631    2017-10-13 12:23:00    2017-10-13 12:23:00
127879    38102    612    2017-10-13 04:28:00    2017-10-13 04:28:00
127880    38103    538    2017-10-13 15:05:00    2017-10-13 15:05:00
127881    38103    518    2017-10-13 11:52:00    2017-10-13 11:52:00
127882    38103    812    2017-10-13 02:25:00    2017-10-13 02:25:00
127883    38103    512    2017-10-13 04:00:00    2017-10-13 04:00:00
127884    38103    495    2017-10-13 09:16:00    2017-10-13 09:16:00
127885    38104    812    2017-10-13 01:48:00    2017-10-13 01:48:00
127886    38104    596    2017-10-13 08:12:00    2017-10-13 08:12:00
127887    38104    756    2017-10-13 19:39:00    2017-10-13 19:39:00
127888    38104    519    2017-10-13 07:46:00    2017-10-13 07:46:00
127889    38104    521    2017-10-13 19:06:00    2017-10-13 19:06:00
127890    38105    591    2017-10-13 17:15:00    2017-10-13 17:15:00
127891    38105    784    2017-10-13 10:58:00    2017-10-13 10:58:00
127892    38105    783    2017-10-13 19:04:00    2017-10-13 19:04:00
127893    38105    538    2017-10-13 20:23:00    2017-10-13 20:23:00
127894    38105    624    2017-10-13 14:56:00    2017-10-13 14:56:00
127895    38106    611    2017-10-13 16:20:00    2017-10-13 16:20:00
127896    38106    831    2017-10-13 13:49:00    2017-10-13 13:49:00
127897    38106    912    2017-10-13 05:56:00    2017-10-13 05:56:00
127898    38106    958    2017-10-13 13:07:00    2017-10-13 13:07:00
127899    38106    860    2017-10-13 19:13:00    2017-10-13 19:13:00
127900    38107    938    2017-10-13 10:32:00    2017-10-13 10:32:00
127901    38107    596    2017-10-13 08:36:00    2017-10-13 08:36:00
127902    38107    473    2017-10-13 15:53:00    2017-10-13 15:53:00
127903    38107    492    2017-10-13 18:41:00    2017-10-13 18:41:00
127904    38107    708    2017-10-13 16:34:00    2017-10-13 16:34:00
127905    38108    958    2017-10-13 02:24:00    2017-10-13 02:24:00
127906    38108    722    2017-10-13 13:01:00    2017-10-13 13:01:00
127907    38108    772    2017-10-13 02:21:00    2017-10-13 02:21:00
127908    38108    597    2017-10-13 10:15:00    2017-10-13 10:15:00
127909    38108    784    2017-10-13 03:43:00    2017-10-13 03:43:00
127910    38109    547    2017-10-13 17:06:00    2017-10-13 17:06:00
127911    38109    722    2017-10-13 18:00:00    2017-10-13 18:00:00
127912    38109    583    2017-10-13 23:53:00    2017-10-13 23:53:00
127913    38109    664    2017-10-13 13:19:00    2017-10-13 13:19:00
127914    38109    917    2017-10-13 20:00:00    2017-10-13 20:00:00
127915    38110    686    2017-10-13 06:30:00    2017-10-13 06:30:00
127916    38110    719    2017-10-13 08:38:00    2017-10-13 08:38:00
127917    38110    595    2017-10-13 14:21:00    2017-10-13 14:21:00
127918    38110    828    2017-10-13 12:56:00    2017-10-13 12:56:00
127919    38110    854    2017-10-13 09:51:00    2017-10-13 09:51:00
127920    38111    819    2017-10-13 19:00:00    2017-10-13 19:00:00
127921    38111    589    2017-10-13 03:02:00    2017-10-13 03:02:00
127922    38111    671    2017-10-13 13:07:00    2017-10-13 13:07:00
127923    38111    837    2017-10-13 23:18:00    2017-10-13 23:18:00
127924    38111    609    2017-10-13 23:23:00    2017-10-13 23:23:00
127925    38112    824    2017-10-13 05:00:00    2017-10-13 05:00:00
127926    38112    495    2017-10-13 08:12:00    2017-10-13 08:12:00
127927    38112    527    2017-10-13 07:47:00    2017-10-13 07:47:00
127928    38112    908    2017-10-13 09:24:00    2017-10-13 09:24:00
127929    38112    603    2017-10-13 18:47:00    2017-10-13 18:47:00
127930    38113    877    2017-10-13 08:04:00    2017-10-13 08:04:00
127931    38113    597    2017-10-13 15:02:00    2017-10-13 15:02:00
127932    38113    604    2017-10-13 16:58:00    2017-10-13 16:58:00
127933    38113    479    2017-10-13 18:30:00    2017-10-13 18:30:00
127934    38113    660    2017-10-13 12:58:00    2017-10-13 12:58:00
127935    38114    894    2017-10-13 23:59:00    2017-10-13 23:59:00
127936    38114    923    2017-10-13 23:59:00    2017-10-13 23:59:00
127937    38114    465    2017-10-13 11:40:00    2017-10-13 11:40:00
127938    38114    471    2017-10-13 11:53:00    2017-10-13 11:53:00
127939    38114    816    2017-10-13 14:36:00    2017-10-13 14:36:00
127940    38115    854    2017-10-13 18:37:00    2017-10-13 18:37:00
127941    38115    925    2017-10-13 10:01:00    2017-10-13 10:01:00
127942    38115    803    2017-10-13 01:43:00    2017-10-13 01:43:00
127943    38115    943    2017-10-13 13:59:00    2017-10-13 13:59:00
127944    38115    681    2017-10-13 07:03:00    2017-10-13 07:03:00
127945    38116    922    2017-10-13 19:38:00    2017-10-13 19:38:00
127946    38116    662    2017-10-13 08:58:00    2017-10-13 08:58:00
127947    38116    637    2017-10-13 17:16:00    2017-10-13 17:16:00
127948    38116    665    2017-10-13 07:17:00    2017-10-13 07:17:00
127949    38116    659    2017-10-13 19:27:00    2017-10-13 19:27:00
127950    38117    779    2017-10-13 05:15:00    2017-10-13 05:15:00
127951    38117    640    2017-10-13 14:27:00    2017-10-13 14:27:00
127952    38117    740    2017-10-13 11:51:00    2017-10-13 11:51:00
127953    38117    938    2017-10-13 08:01:00    2017-10-13 08:01:00
127954    38117    793    2017-10-13 12:32:00    2017-10-13 12:32:00
127955    38118    870    2017-10-13 23:39:00    2017-10-13 23:39:00
127956    38118    588    2017-10-13 05:27:00    2017-10-13 05:27:00
127957    38118    479    2017-10-13 11:00:00    2017-10-13 11:00:00
127958    38118    808    2017-10-13 10:55:00    2017-10-13 10:55:00
127959    38118    760    2017-10-13 01:46:00    2017-10-13 01:46:00
127960    38119    551    2017-10-13 01:13:00    2017-10-13 01:13:00
127961    38119    739    2017-10-13 03:24:00    2017-10-13 03:24:00
127962    38119    697    2017-10-13 01:46:00    2017-10-13 01:46:00
127963    38119    932    2017-10-13 15:36:00    2017-10-13 15:36:00
127964    38119    659    2017-10-13 03:51:00    2017-10-13 03:51:00
127965    38120    857    2017-10-13 07:39:00    2017-10-13 07:39:00
127966    38120    716    2017-10-13 08:07:00    2017-10-13 08:07:00
127967    38120    835    2017-10-13 03:33:00    2017-10-13 03:33:00
127968    38120    642    2017-10-13 06:01:00    2017-10-13 06:01:00
127969    38120    664    2017-10-13 02:02:00    2017-10-13 02:02:00
127970    38121    775    2017-10-13 15:02:00    2017-10-13 15:02:00
127971    38121    565    2017-10-13 16:41:00    2017-10-13 16:41:00
127972    38121    587    2017-10-13 20:55:00    2017-10-13 20:55:00
127973    38121    956    2017-10-13 18:06:00    2017-10-13 18:06:00
127974    38121    695    2017-10-13 23:01:00    2017-10-13 23:01:00
127975    38122    954    2017-10-13 13:13:00    2017-10-13 13:13:00
127976    38122    915    2017-10-13 10:14:00    2017-10-13 10:14:00
127977    38122    700    2017-10-13 12:11:00    2017-10-13 12:11:00
127978    38122    881    2017-10-13 21:20:00    2017-10-13 21:20:00
127979    38122    506    2017-10-13 03:24:00    2017-10-13 03:24:00
127980    38123    953    2017-10-13 08:31:00    2017-10-13 08:31:00
127981    38123    676    2017-10-13 14:38:00    2017-10-13 14:38:00
127982    38123    809    2017-10-13 03:33:00    2017-10-13 03:33:00
127983    38123    804    2017-10-13 07:16:00    2017-10-13 07:16:00
127984    38123    499    2017-10-13 15:53:00    2017-10-13 15:53:00
127985    38124    794    2017-10-13 23:26:00    2017-10-13 23:26:00
127986    38124    789    2017-10-13 22:02:00    2017-10-13 22:02:00
127987    38124    944    2017-10-13 11:00:00    2017-10-13 11:00:00
127988    38124    879    2017-10-13 02:33:00    2017-10-13 02:33:00
127989    38124    630    2017-10-13 09:22:00    2017-10-13 09:22:00
127990    38125    758    2017-10-13 01:45:00    2017-10-13 01:45:00
127991    38125    526    2017-10-13 02:03:00    2017-10-13 02:03:00
127992    38125    682    2017-10-13 23:59:00    2017-10-13 23:59:00
127993    38125    945    2017-10-13 18:01:00    2017-10-13 18:01:00
127994    38125    853    2017-10-13 03:44:00    2017-10-13 03:44:00
127995    38126    725    2017-10-13 02:52:00    2017-10-13 02:52:00
127996    38126    640    2017-10-13 03:16:00    2017-10-13 03:16:00
127997    38126    743    2017-10-13 17:21:00    2017-10-13 17:21:00
127998    38126    945    2017-10-13 17:16:00    2017-10-13 17:16:00
127999    38126    603    2017-10-13 07:25:00    2017-10-13 07:25:00
128000    38127    674    2017-10-13 22:31:00    2017-10-13 22:31:00
128001    38127    547    2017-10-13 09:51:00    2017-10-13 09:51:00
128002    38127    947    2017-10-13 07:20:00    2017-10-13 07:20:00
128003    38127    688    2017-10-13 13:35:00    2017-10-13 13:35:00
128004    38127    537    2017-10-13 11:02:00    2017-10-13 11:02:00
128005    38128    907    2017-10-13 04:37:00    2017-10-13 04:37:00
128006    38128    637    2017-10-13 14:08:00    2017-10-13 14:08:00
128007    38128    900    2017-10-13 07:41:00    2017-10-13 07:41:00
128008    38128    503    2017-10-13 18:00:00    2017-10-13 18:00:00
128009    38128    611    2017-10-13 01:37:00    2017-10-13 01:37:00
128010    38129    773    2017-10-13 04:03:00    2017-10-13 04:03:00
128011    38129    495    2017-10-13 10:42:00    2017-10-13 10:42:00
128012    38129    863    2017-10-13 04:53:00    2017-10-13 04:53:00
128013    38129    706    2017-10-13 13:15:00    2017-10-13 13:15:00
128014    38129    754    2017-10-13 04:42:00    2017-10-13 04:42:00
128015    38130    707    2017-10-13 19:35:00    2017-10-13 19:35:00
128016    38130    783    2017-10-13 01:14:00    2017-10-13 01:14:00
128017    38130    563    2017-10-13 16:46:00    2017-10-13 16:46:00
128018    38130    847    2017-10-13 22:17:00    2017-10-13 22:17:00
128019    38130    949    2017-10-13 20:07:00    2017-10-13 20:07:00
128020    38131    890    2017-10-13 17:02:00    2017-10-13 17:02:00
128021    38131    891    2017-10-13 17:07:00    2017-10-13 17:07:00
128022    38131    804    2017-10-13 11:35:00    2017-10-13 11:35:00
128023    38131    938    2017-10-13 20:42:00    2017-10-13 20:42:00
128024    38131    739    2017-10-13 07:46:00    2017-10-13 07:46:00
128025    38132    942    2017-10-14 17:55:00    2017-10-14 17:55:00
128026    38132    734    2017-10-14 09:33:00    2017-10-14 09:33:00
128027    38132    720    2017-10-14 21:45:00    2017-10-14 21:45:00
128028    38132    775    2017-10-14 11:07:00    2017-10-14 11:07:00
128029    38132    514    2017-10-14 09:49:00    2017-10-14 09:49:00
128030    38133    706    2017-10-14 10:43:00    2017-10-14 10:43:00
128031    38133    761    2017-10-14 20:03:00    2017-10-14 20:03:00
128032    38133    813    2017-10-14 22:38:00    2017-10-14 22:38:00
128033    38133    632    2017-10-14 08:23:00    2017-10-14 08:23:00
128034    38133    704    2017-10-14 11:01:00    2017-10-14 11:01:00
128035    38134    918    2017-10-14 14:29:00    2017-10-14 14:29:00
128036    38134    485    2017-10-14 08:49:00    2017-10-14 08:49:00
128037    38134    513    2017-10-14 17:36:00    2017-10-14 17:36:00
128038    38134    742    2017-10-14 14:47:00    2017-10-14 14:47:00
128039    38134    560    2017-10-14 04:00:00    2017-10-14 04:00:00
128040    38135    908    2017-10-14 06:21:00    2017-10-14 06:21:00
128041    38135    522    2017-10-14 08:00:00    2017-10-14 08:00:00
128042    38135    690    2017-10-14 03:06:00    2017-10-14 03:06:00
128043    38135    822    2017-10-14 03:51:00    2017-10-14 03:51:00
128044    38135    529    2017-10-14 16:39:00    2017-10-14 16:39:00
128045    38136    739    2017-10-14 19:03:00    2017-10-14 19:03:00
128046    38136    581    2017-10-14 14:26:00    2017-10-14 14:26:00
128047    38136    623    2017-10-14 23:25:00    2017-10-14 23:25:00
128048    38136    710    2017-10-14 05:46:00    2017-10-14 05:46:00
128049    38136    727    2017-10-14 04:37:00    2017-10-14 04:37:00
128050    38137    487    2017-10-14 23:57:00    2017-10-14 23:57:00
128051    38137    509    2017-10-14 15:11:00    2017-10-14 15:11:00
128052    38137    684    2017-10-14 08:59:00    2017-10-14 08:59:00
128053    38137    608    2017-10-14 20:56:00    2017-10-14 20:56:00
128054    38137    511    2017-10-14 17:38:00    2017-10-14 17:38:00
128055    38138    684    2017-10-14 09:46:00    2017-10-14 09:46:00
128056    38138    499    2017-10-14 14:48:00    2017-10-14 14:48:00
128057    38138    919    2017-10-14 01:59:00    2017-10-14 01:59:00
128058    38138    807    2017-10-14 12:59:00    2017-10-14 12:59:00
128059    38138    679    2017-10-14 05:59:00    2017-10-14 05:59:00
128060    38139    658    2017-10-14 11:26:00    2017-10-14 11:26:00
128061    38139    801    2017-10-14 18:27:00    2017-10-14 18:27:00
128062    38139    866    2017-10-14 05:47:00    2017-10-14 05:47:00
128063    38139    875    2017-10-14 18:48:00    2017-10-14 18:48:00
128064    38139    824    2017-10-14 20:01:00    2017-10-14 20:01:00
128065    38140    528    2017-10-14 20:56:00    2017-10-14 20:56:00
128066    38140    950    2017-10-14 10:46:00    2017-10-14 10:46:00
128067    38140    711    2017-10-14 12:48:00    2017-10-14 12:48:00
128068    38140    916    2017-10-14 13:27:00    2017-10-14 13:27:00
128069    38140    620    2017-10-14 18:23:00    2017-10-14 18:23:00
128070    38141    535    2017-10-14 15:42:00    2017-10-14 15:42:00
128071    38141    744    2017-10-14 19:04:00    2017-10-14 19:04:00
128072    38141    577    2017-10-14 04:05:00    2017-10-14 04:05:00
128073    38141    507    2017-10-14 10:26:00    2017-10-14 10:26:00
128074    38141    590    2017-10-14 13:50:00    2017-10-14 13:50:00
128075    38142    512    2017-10-14 19:00:00    2017-10-14 19:00:00
128076    38142    904    2017-10-14 20:14:00    2017-10-14 20:14:00
128077    38142    855    2017-10-14 01:44:00    2017-10-14 01:44:00
128078    38142    707    2017-10-14 07:44:00    2017-10-14 07:44:00
128079    38142    640    2017-10-14 12:45:00    2017-10-14 12:45:00
128080    38143    848    2017-10-14 09:18:00    2017-10-14 09:18:00
128081    38143    759    2017-10-14 09:39:00    2017-10-14 09:39:00
128082    38143    560    2017-10-14 05:50:00    2017-10-14 05:50:00
128083    38143    488    2017-10-14 19:25:00    2017-10-14 19:25:00
128084    38143    718    2017-10-14 08:21:00    2017-10-14 08:21:00
128085    38144    826    2017-10-14 20:24:00    2017-10-14 20:24:00
128086    38144    472    2017-10-14 03:52:00    2017-10-14 03:52:00
128087    38144    747    2017-10-14 06:48:00    2017-10-14 06:48:00
128088    38144    744    2017-10-14 07:35:00    2017-10-14 07:35:00
128089    38144    596    2017-10-14 07:14:00    2017-10-14 07:14:00
128090    38145    721    2017-10-14 16:30:00    2017-10-14 16:30:00
128091    38145    549    2017-10-14 02:24:00    2017-10-14 02:24:00
128092    38145    616    2017-10-14 22:15:00    2017-10-14 22:15:00
128093    38145    527    2017-10-14 12:25:00    2017-10-14 12:25:00
128094    38145    495    2017-10-14 20:17:00    2017-10-14 20:17:00
128095    38146    595    2017-10-14 21:25:00    2017-10-14 21:25:00
128096    38146    848    2017-10-14 15:42:00    2017-10-14 15:42:00
128097    38146    705    2017-10-14 18:32:00    2017-10-14 18:32:00
128098    38146    538    2017-10-14 22:32:00    2017-10-14 22:32:00
128099    38146    904    2017-10-14 01:23:00    2017-10-14 01:23:00
128100    38147    731    2017-10-14 01:17:00    2017-10-14 01:17:00
128101    38147    904    2017-10-14 23:01:00    2017-10-14 23:01:00
128102    38147    639    2017-10-14 17:14:00    2017-10-14 17:14:00
128103    38147    929    2017-10-14 17:35:00    2017-10-14 17:35:00
128104    38147    957    2017-10-14 20:19:00    2017-10-14 20:19:00
128105    38148    590    2017-10-14 13:47:00    2017-10-14 13:47:00
128106    38148    490    2017-10-14 15:30:00    2017-10-14 15:30:00
128107    38148    493    2017-10-14 01:16:00    2017-10-14 01:16:00
128108    38148    490    2017-10-14 12:20:00    2017-10-14 12:20:00
128109    38148    792    2017-10-14 13:32:00    2017-10-14 13:32:00
128110    38149    803    2017-10-15 20:52:00    2017-10-15 20:52:00
128111    38149    762    2017-10-15 10:27:00    2017-10-15 10:27:00
128112    38149    476    2017-10-15 05:02:00    2017-10-15 05:02:00
128113    38149    552    2017-10-15 12:52:00    2017-10-15 12:52:00
128114    38149    596    2017-10-15 10:33:00    2017-10-15 10:33:00
128115    38150    635    2017-10-15 21:02:00    2017-10-15 21:02:00
128116    38150    670    2017-10-15 04:05:00    2017-10-15 04:05:00
128117    38150    890    2017-10-15 14:57:00    2017-10-15 14:57:00
128118    38150    669    2017-10-15 22:14:00    2017-10-15 22:14:00
128119    38150    603    2017-10-15 18:24:00    2017-10-15 18:24:00
128120    38151    892    2017-10-15 03:58:00    2017-10-15 03:58:00
128121    38151    692    2017-10-15 03:54:00    2017-10-15 03:54:00
128122    38151    667    2017-10-15 12:51:00    2017-10-15 12:51:00
128123    38151    825    2017-10-15 14:10:00    2017-10-15 14:10:00
128124    38151    941    2017-10-15 20:43:00    2017-10-15 20:43:00
128125    38152    465    2017-10-15 06:51:00    2017-10-15 06:51:00
128126    38152    520    2017-10-15 02:20:00    2017-10-15 02:20:00
128127    38152    731    2017-10-15 14:08:00    2017-10-15 14:08:00
128128    38152    943    2017-10-15 15:33:00    2017-10-15 15:33:00
128129    38152    841    2017-10-15 07:00:00    2017-10-15 07:00:00
128130    38153    742    2017-10-15 04:29:00    2017-10-15 04:29:00
128131    38153    563    2017-10-15 23:38:00    2017-10-15 23:38:00
128132    38153    589    2017-10-15 23:32:00    2017-10-15 23:32:00
128133    38153    919    2017-10-15 04:59:00    2017-10-15 04:59:00
128134    38153    571    2017-10-15 02:18:00    2017-10-15 02:18:00
128135    38154    848    2017-10-15 02:15:00    2017-10-15 02:15:00
128136    38154    704    2017-10-15 03:34:00    2017-10-15 03:34:00
128137    38154    568    2017-10-15 18:02:00    2017-10-15 18:02:00
128138    38154    557    2017-10-15 02:48:00    2017-10-15 02:48:00
128139    38154    766    2017-10-15 12:36:00    2017-10-15 12:36:00
128140    38155    837    2017-10-15 21:38:00    2017-10-15 21:38:00
128141    38155    539    2017-10-15 23:16:00    2017-10-15 23:16:00
128142    38155    920    2017-10-15 02:54:00    2017-10-15 02:54:00
128143    38155    554    2017-10-15 02:21:00    2017-10-15 02:21:00
128144    38155    939    2017-10-15 02:12:00    2017-10-15 02:12:00
128145    38156    787    2017-10-15 04:24:00    2017-10-15 04:24:00
128146    38156    907    2017-10-15 03:52:00    2017-10-15 03:52:00
128147    38156    651    2017-10-15 11:07:00    2017-10-15 11:07:00
128148    38156    794    2017-10-15 20:06:00    2017-10-15 20:06:00
128149    38156    623    2017-10-15 20:06:00    2017-10-15 20:06:00
128150    38157    710    2017-10-15 17:17:00    2017-10-15 17:17:00
128151    38157    770    2017-10-15 06:35:00    2017-10-15 06:35:00
128152    38157    865    2017-10-15 02:26:00    2017-10-15 02:26:00
128153    38157    830    2017-10-15 19:39:00    2017-10-15 19:39:00
128154    38157    942    2017-10-15 11:25:00    2017-10-15 11:25:00
128155    38158    555    2017-10-15 08:39:00    2017-10-15 08:39:00
128156    38158    895    2017-10-15 15:27:00    2017-10-15 15:27:00
128157    38158    791    2017-10-15 02:54:00    2017-10-15 02:54:00
128158    38158    932    2017-10-15 15:16:00    2017-10-15 15:16:00
128159    38158    777    2017-10-15 01:57:00    2017-10-15 01:57:00
128160    38159    859    2017-10-15 21:45:00    2017-10-15 21:45:00
128161    38159    913    2017-10-15 14:39:00    2017-10-15 14:39:00
128162    38159    921    2017-10-15 11:06:00    2017-10-15 11:06:00
128163    38159    618    2017-10-15 22:52:00    2017-10-15 22:52:00
128164    38159    526    2017-10-15 01:13:00    2017-10-15 01:13:00
128165    38160    698    2017-10-15 15:47:00    2017-10-15 15:47:00
128166    38160    669    2017-10-15 13:33:00    2017-10-15 13:33:00
128167    38160    726    2017-10-15 08:54:00    2017-10-15 08:54:00
128168    38160    593    2017-10-15 03:43:00    2017-10-15 03:43:00
128169    38160    896    2017-10-15 19:37:00    2017-10-15 19:37:00
128170    38161    869    2017-10-15 10:32:00    2017-10-15 10:32:00
128171    38161    545    2017-10-15 21:15:00    2017-10-15 21:15:00
128172    38161    523    2017-10-15 08:19:00    2017-10-15 08:19:00
128173    38161    482    2017-10-15 21:39:00    2017-10-15 21:39:00
128174    38161    764    2017-10-15 19:36:00    2017-10-15 19:36:00
128175    38162    788    2017-10-15 02:31:00    2017-10-15 02:31:00
128176    38162    549    2017-10-15 11:55:00    2017-10-15 11:55:00
128177    38162    713    2017-10-15 04:30:00    2017-10-15 04:30:00
128178    38162    853    2017-10-15 19:30:00    2017-10-15 19:30:00
128179    38162    599    2017-10-15 21:58:00    2017-10-15 21:58:00
128180    38163    697    2017-10-15 03:40:00    2017-10-15 03:40:00
128181    38163    497    2017-10-15 10:06:00    2017-10-15 10:06:00
128182    38163    592    2017-10-15 18:29:00    2017-10-15 18:29:00
128183    38163    619    2017-10-15 05:52:00    2017-10-15 05:52:00
128184    38163    756    2017-10-15 23:02:00    2017-10-15 23:02:00
128185    38164    646    2017-10-16 04:10:00    2017-10-16 04:10:00
128186    38164    647    2017-10-16 07:03:00    2017-10-16 07:03:00
128187    38164    585    2017-10-16 20:57:00    2017-10-16 20:57:00
128188    38164    871    2017-10-16 19:54:00    2017-10-16 19:54:00
128189    38164    497    2017-10-16 11:11:00    2017-10-16 11:11:00
128190    38165    901    2017-10-16 07:03:00    2017-10-16 07:03:00
128191    38165    728    2017-10-16 12:34:00    2017-10-16 12:34:00
128192    38165    948    2017-10-16 15:05:00    2017-10-16 15:05:00
128193    38165    694    2017-10-16 15:55:00    2017-10-16 15:55:00
128194    38165    627    2017-10-16 16:25:00    2017-10-16 16:25:00
128195    38166    925    2017-10-16 21:07:00    2017-10-16 21:07:00
128196    38166    674    2017-10-16 21:22:00    2017-10-16 21:22:00
128197    38166    870    2017-10-16 07:32:00    2017-10-16 07:32:00
128198    38166    507    2017-10-16 16:41:00    2017-10-16 16:41:00
128199    38166    827    2017-10-16 07:46:00    2017-10-16 07:46:00
128200    38167    495    2017-10-16 14:34:00    2017-10-16 14:34:00
128201    38167    796    2017-10-16 07:19:00    2017-10-16 07:19:00
128202    38167    569    2017-10-16 17:21:00    2017-10-16 17:21:00
128203    38167    896    2017-10-16 12:20:00    2017-10-16 12:20:00
128204    38167    609    2017-10-16 01:45:00    2017-10-16 01:45:00
128205    38168    730    2017-10-16 04:43:00    2017-10-16 04:43:00
128206    38168    687    2017-10-16 04:34:00    2017-10-16 04:34:00
128207    38168    782    2017-10-16 12:06:00    2017-10-16 12:06:00
128208    38168    549    2017-10-16 02:42:00    2017-10-16 02:42:00
128209    38168    921    2017-10-16 04:51:00    2017-10-16 04:51:00
128210    38169    675    2017-10-16 22:07:00    2017-10-16 22:07:00
128211    38169    741    2017-10-16 09:08:00    2017-10-16 09:08:00
128212    38169    523    2017-10-16 17:24:00    2017-10-16 17:24:00
128213    38169    748    2017-10-16 06:49:00    2017-10-16 06:49:00
128214    38169    778    2017-10-16 02:44:00    2017-10-16 02:44:00
128215    38170    508    2017-10-16 10:03:00    2017-10-16 10:03:00
128216    38170    753    2017-10-16 03:22:00    2017-10-16 03:22:00
128217    38170    559    2017-10-16 10:16:00    2017-10-16 10:16:00
128218    38170    891    2017-10-16 15:49:00    2017-10-16 15:49:00
128219    38170    590    2017-10-16 10:36:00    2017-10-16 10:36:00
128220    38171    496    2017-10-16 02:15:00    2017-10-16 02:15:00
128221    38171    651    2017-10-16 23:25:00    2017-10-16 23:25:00
128222    38171    630    2017-10-16 09:06:00    2017-10-16 09:06:00
128223    38171    827    2017-10-16 04:29:00    2017-10-16 04:29:00
128224    38171    633    2017-10-16 07:35:00    2017-10-16 07:35:00
128225    38172    575    2017-10-16 08:02:00    2017-10-16 08:02:00
128226    38172    915    2017-10-16 16:55:00    2017-10-16 16:55:00
128227    38172    480    2017-10-16 04:13:00    2017-10-16 04:13:00
128228    38172    835    2017-10-16 03:21:00    2017-10-16 03:21:00
128229    38172    926    2017-10-16 09:28:00    2017-10-16 09:28:00
128230    38173    853    2017-10-16 15:13:00    2017-10-16 15:13:00
128231    38173    767    2017-10-16 08:57:00    2017-10-16 08:57:00
128232    38173    791    2017-10-16 21:36:00    2017-10-16 21:36:00
128233    38173    509    2017-10-16 20:17:00    2017-10-16 20:17:00
128234    38173    471    2017-10-16 18:01:00    2017-10-16 18:01:00
128235    38174    863    2017-10-16 17:00:00    2017-10-16 17:00:00
128236    38174    914    2017-10-16 10:50:00    2017-10-16 10:50:00
128237    38174    593    2017-10-16 23:11:00    2017-10-16 23:11:00
128238    38174    780    2017-10-16 17:00:00    2017-10-16 17:00:00
128239    38174    832    2017-10-16 16:00:00    2017-10-16 16:00:00
128240    38175    625    2017-10-16 02:20:00    2017-10-16 02:20:00
128241    38175    530    2017-10-16 23:03:00    2017-10-16 23:03:00
128242    38175    761    2017-10-16 16:01:00    2017-10-16 16:01:00
128243    38175    879    2017-10-16 17:30:00    2017-10-16 17:30:00
128244    38175    934    2017-10-16 14:49:00    2017-10-16 14:49:00
128245    38176    705    2017-10-16 10:46:00    2017-10-16 10:46:00
128246    38176    889    2017-10-16 07:49:00    2017-10-16 07:49:00
128247    38176    838    2017-10-16 08:44:00    2017-10-16 08:44:00
128248    38176    541    2017-10-16 06:41:00    2017-10-16 06:41:00
128249    38176    873    2017-10-16 01:02:00    2017-10-16 01:02:00
128250    38177    760    2017-10-16 13:52:00    2017-10-16 13:52:00
128251    38177    530    2017-10-16 14:11:00    2017-10-16 14:11:00
128252    38177    882    2017-10-16 02:44:00    2017-10-16 02:44:00
128253    38177    558    2017-10-16 19:28:00    2017-10-16 19:28:00
128254    38177    541    2017-10-16 07:35:00    2017-10-16 07:35:00
128255    38178    488    2017-10-16 08:23:00    2017-10-16 08:23:00
128256    38178    504    2017-10-16 04:18:00    2017-10-16 04:18:00
128257    38178    806    2017-10-16 07:09:00    2017-10-16 07:09:00
128258    38178    834    2017-10-16 04:46:00    2017-10-16 04:46:00
128259    38178    563    2017-10-16 05:24:00    2017-10-16 05:24:00
128260    38179    582    2017-10-16 11:18:00    2017-10-16 11:18:00
128261    38179    619    2017-10-16 03:59:00    2017-10-16 03:59:00
128262    38179    506    2017-10-16 19:18:00    2017-10-16 19:18:00
128263    38179    941    2017-10-17 00:00:00    2017-10-17 00:00:00
128264    38179    785    2017-10-16 17:20:00    2017-10-16 17:20:00
128265    38180    708    2017-10-16 21:08:00    2017-10-16 21:08:00
128266    38180    488    2017-10-16 04:10:00    2017-10-16 04:10:00
128267    38180    725    2017-10-16 11:16:00    2017-10-16 11:16:00
128268    38180    722    2017-10-16 15:35:00    2017-10-16 15:35:00
128269    38180    839    2017-10-16 20:37:00    2017-10-16 20:37:00
128270    38181    547    2017-10-16 11:30:00    2017-10-16 11:30:00
128271    38181    658    2017-10-16 02:27:00    2017-10-16 02:27:00
128272    38181    465    2017-10-16 07:33:00    2017-10-16 07:33:00
128273    38181    947    2017-10-16 04:58:00    2017-10-16 04:58:00
128274    38181    769    2017-10-16 03:55:00    2017-10-16 03:55:00
128275    38182    724    2017-10-16 16:18:00    2017-10-16 16:18:00
128276    38182    486    2017-10-16 03:59:00    2017-10-16 03:59:00
128277    38182    943    2017-10-16 04:20:00    2017-10-16 04:20:00
128278    38182    577    2017-10-16 02:38:00    2017-10-16 02:38:00
128279    38182    842    2017-10-16 10:59:00    2017-10-16 10:59:00
128280    38183    533    2017-10-16 01:51:00    2017-10-16 01:51:00
128281    38183    937    2017-10-16 02:16:00    2017-10-16 02:16:00
128282    38183    837    2017-10-16 04:32:00    2017-10-16 04:32:00
128283    38183    465    2017-10-16 01:07:00    2017-10-16 01:07:00
128284    38183    583    2017-10-16 08:37:00    2017-10-16 08:37:00
128285    38184    630    2017-10-16 14:47:00    2017-10-16 14:47:00
128286    38184    923    2017-10-16 09:13:00    2017-10-16 09:13:00
128287    38184    467    2017-10-16 20:26:00    2017-10-16 20:26:00
128288    38184    885    2017-10-16 07:14:00    2017-10-16 07:14:00
128289    38184    603    2017-10-16 06:59:00    2017-10-16 06:59:00
128290    38185    857    2017-10-16 13:14:00    2017-10-16 13:14:00
128291    38185    547    2017-10-16 09:02:00    2017-10-16 09:02:00
128292    38185    807    2017-10-16 20:50:00    2017-10-16 20:50:00
128293    38185    637    2017-10-16 12:22:00    2017-10-16 12:22:00
128294    38185    511    2017-10-16 19:53:00    2017-10-16 19:53:00
128295    38186    901    2017-10-16 23:36:00    2017-10-16 23:36:00
128296    38186    944    2017-10-16 13:57:00    2017-10-16 13:57:00
128297    38186    542    2017-10-16 02:51:00    2017-10-16 02:51:00
128298    38186    810    2017-10-16 18:55:00    2017-10-16 18:55:00
128299    38186    631    2017-10-16 12:04:00    2017-10-16 12:04:00
128300    38187    501    2017-10-16 20:56:00    2017-10-16 20:56:00
128301    38187    754    2017-10-16 09:24:00    2017-10-16 09:24:00
128302    38187    559    2017-10-16 22:18:00    2017-10-16 22:18:00
128303    38187    868    2017-10-16 03:54:00    2017-10-16 03:54:00
128304    38187    741    2017-10-16 05:53:00    2017-10-16 05:53:00
128305    38188    681    2017-10-16 23:38:00    2017-10-16 23:38:00
128306    38188    946    2017-10-16 23:10:00    2017-10-16 23:10:00
128307    38188    533    2017-10-16 09:50:00    2017-10-16 09:50:00
128308    38188    934    2017-10-16 17:48:00    2017-10-16 17:48:00
128309    38188    520    2017-10-16 18:12:00    2017-10-16 18:12:00
128310    38189    546    2017-10-16 01:46:00    2017-10-16 01:46:00
128311    38189    819    2017-10-16 15:14:00    2017-10-16 15:14:00
128312    38189    517    2017-10-16 20:32:00    2017-10-16 20:32:00
128313    38189    837    2017-10-16 22:42:00    2017-10-16 22:42:00
128314    38189    879    2017-10-16 10:09:00    2017-10-16 10:09:00
128315    38190    587    2017-10-16 03:34:00    2017-10-16 03:34:00
128316    38190    624    2017-10-16 11:25:00    2017-10-16 11:25:00
128317    38190    664    2017-10-16 13:04:00    2017-10-16 13:04:00
128318    38190    784    2017-10-16 20:36:00    2017-10-16 20:36:00
128319    38190    619    2017-10-16 11:13:00    2017-10-16 11:13:00
128320    38191    820    2017-10-16 10:07:00    2017-10-16 10:07:00
128321    38191    766    2017-10-16 19:36:00    2017-10-16 19:36:00
128322    38191    940    2017-10-16 03:21:00    2017-10-16 03:21:00
128323    38191    791    2017-10-16 10:08:00    2017-10-16 10:08:00
128324    38191    951    2017-10-16 18:32:00    2017-10-16 18:32:00
128325    38192    905    2017-10-16 20:41:00    2017-10-16 20:41:00
128326    38192    596    2017-10-16 19:51:00    2017-10-16 19:51:00
128327    38192    935    2017-10-16 11:49:00    2017-10-16 11:49:00
128328    38192    835    2017-10-16 08:22:00    2017-10-16 08:22:00
128329    38192    508    2017-10-16 23:38:00    2017-10-16 23:38:00
128330    38193    533    2017-10-16 13:03:00    2017-10-16 13:03:00
128331    38193    784    2017-10-16 04:07:00    2017-10-16 04:07:00
128332    38193    489    2017-10-16 10:44:00    2017-10-16 10:44:00
128333    38193    949    2017-10-16 14:00:00    2017-10-16 14:00:00
128334    38193    627    2017-10-16 16:37:00    2017-10-16 16:37:00
128335    38194    501    2017-10-16 20:39:00    2017-10-16 20:39:00
128336    38194    504    2017-10-16 05:13:00    2017-10-16 05:13:00
128337    38194    750    2017-10-16 03:28:00    2017-10-16 03:28:00
128338    38194    618    2017-10-16 22:00:00    2017-10-16 22:00:00
128339    38194    685    2017-10-16 06:06:00    2017-10-16 06:06:00
128340    38195    494    2017-10-16 19:39:00    2017-10-16 19:39:00
128341    38195    508    2017-10-16 16:09:00    2017-10-16 16:09:00
128342    38195    666    2017-10-16 02:10:00    2017-10-16 02:10:00
128343    38195    531    2017-10-16 18:28:00    2017-10-16 18:28:00
128344    38195    872    2017-10-16 02:59:00    2017-10-16 02:59:00
128345    38196    607    2017-10-16 11:29:00    2017-10-16 11:29:00
128346    38196    850    2017-10-16 18:31:00    2017-10-16 18:31:00
128347    38196    690    2017-10-16 20:49:00    2017-10-16 20:49:00
128348    38196    912    2017-10-16 19:26:00    2017-10-16 19:26:00
128349    38196    575    2017-10-16 18:58:00    2017-10-16 18:58:00
128350    38197    933    2017-10-16 07:50:00    2017-10-16 07:50:00
128351    38197    883    2017-10-16 17:21:00    2017-10-16 17:21:00
128352    38197    960    2017-10-16 11:48:00    2017-10-16 11:48:00
128353    38197    764    2017-10-16 21:23:00    2017-10-16 21:23:00
128354    38197    863    2017-10-16 19:28:00    2017-10-16 19:28:00
128355    38198    721    2017-10-16 18:40:00    2017-10-16 18:40:00
128356    38198    533    2017-10-16 19:13:00    2017-10-16 19:13:00
128357    38198    882    2017-10-16 11:29:00    2017-10-16 11:29:00
128358    38198    858    2017-10-16 16:00:00    2017-10-16 16:00:00
128359    38198    553    2017-10-16 23:10:00    2017-10-16 23:10:00
128360    38199    612    2017-10-16 08:44:00    2017-10-16 08:44:00
128361    38199    473    2017-10-16 21:39:00    2017-10-16 21:39:00
128362    38199    484    2017-10-16 05:49:00    2017-10-16 05:49:00
128363    38199    559    2017-10-16 10:18:00    2017-10-16 10:18:00
128364    38199    782    2017-10-16 07:50:00    2017-10-16 07:50:00
128365    38200    514    2017-10-16 01:38:00    2017-10-16 01:38:00
128366    38200    937    2017-10-16 05:42:00    2017-10-16 05:42:00
128367    38200    555    2017-10-16 03:13:00    2017-10-16 03:13:00
128368    38200    694    2017-10-16 09:54:00    2017-10-16 09:54:00
128369    38200    813    2017-10-16 10:16:00    2017-10-16 10:16:00
128370    38201    551    2017-10-16 23:45:00    2017-10-16 23:45:00
128371    38201    508    2017-10-16 04:37:00    2017-10-16 04:37:00
128372    38201    936    2017-10-16 22:08:00    2017-10-16 22:08:00
128373    38201    858    2017-10-16 16:11:00    2017-10-16 16:11:00
128374    38201    784    2017-10-16 09:16:00    2017-10-16 09:16:00
128375    38202    473    2017-10-16 21:12:00    2017-10-16 21:12:00
128376    38202    959    2017-10-16 16:27:00    2017-10-16 16:27:00
128377    38202    854    2017-10-16 10:15:00    2017-10-16 10:15:00
128378    38202    792    2017-10-16 15:09:00    2017-10-16 15:09:00
128379    38202    937    2017-10-16 15:51:00    2017-10-16 15:51:00
128380    38203    925    2017-10-16 23:56:00    2017-10-16 23:56:00
128381    38203    516    2017-10-16 18:48:00    2017-10-16 18:48:00
128382    38203    937    2017-10-16 03:49:00    2017-10-16 03:49:00
128383    38203    903    2017-10-16 12:36:00    2017-10-16 12:36:00
128384    38203    855    2017-10-16 18:35:00    2017-10-16 18:35:00
128385    38204    797    2017-10-16 07:29:00    2017-10-16 07:29:00
128386    38204    802    2017-10-16 16:01:00    2017-10-16 16:01:00
128387    38204    757    2017-10-16 02:42:00    2017-10-16 02:42:00
128388    38204    508    2017-10-16 09:45:00    2017-10-16 09:45:00
128389    38204    929    2017-10-16 10:59:00    2017-10-16 10:59:00
128390    38205    653    2017-10-16 06:43:00    2017-10-16 06:43:00
128391    38205    924    2017-10-17 00:00:00    2017-10-17 00:00:00
128392    38205    759    2017-10-16 21:43:00    2017-10-16 21:43:00
128393    38205    938    2017-10-16 07:08:00    2017-10-16 07:08:00
128394    38205    804    2017-10-16 21:37:00    2017-10-16 21:37:00
128395    38206    594    2017-10-16 01:44:00    2017-10-16 01:44:00
128396    38206    649    2017-10-16 11:20:00    2017-10-16 11:20:00
128397    38206    869    2017-10-16 07:26:00    2017-10-16 07:26:00
128398    38206    658    2017-10-16 17:26:00    2017-10-16 17:26:00
128399    38206    725    2017-10-16 23:44:00    2017-10-16 23:44:00
128400    38207    484    2017-10-16 01:24:00    2017-10-16 01:24:00
128401    38207    671    2017-10-16 08:32:00    2017-10-16 08:32:00
128402    38207    835    2017-10-16 03:08:00    2017-10-16 03:08:00
128403    38207    605    2017-10-16 20:44:00    2017-10-16 20:44:00
128404    38207    661    2017-10-16 11:04:00    2017-10-16 11:04:00
128405    38208    519    2017-10-16 06:25:00    2017-10-16 06:25:00
128406    38208    925    2017-10-16 05:44:00    2017-10-16 05:44:00
128407    38208    541    2017-10-16 04:30:00    2017-10-16 04:30:00
128408    38208    615    2017-10-16 03:52:00    2017-10-16 03:52:00
128409    38208    604    2017-10-16 23:21:00    2017-10-16 23:21:00
128410    38209    799    2017-10-16 21:02:00    2017-10-16 21:02:00
128411    38209    501    2017-10-16 04:25:00    2017-10-16 04:25:00
128412    38209    744    2017-10-16 04:28:00    2017-10-16 04:28:00
128413    38209    792    2017-10-16 21:51:00    2017-10-16 21:51:00
128414    38209    474    2017-10-16 22:11:00    2017-10-16 22:11:00
128415    38210    876    2017-10-16 06:01:00    2017-10-16 06:01:00
128416    38210    545    2017-10-16 21:31:00    2017-10-16 21:31:00
128417    38210    567    2017-10-16 17:28:00    2017-10-16 17:28:00
128418    38210    892    2017-10-16 13:08:00    2017-10-16 13:08:00
128419    38210    627    2017-10-16 02:06:00    2017-10-16 02:06:00
128420    38211    931    2017-10-16 12:05:00    2017-10-16 12:05:00
128421    38211    885    2017-10-16 11:45:00    2017-10-16 11:45:00
128422    38211    658    2017-10-16 13:16:00    2017-10-16 13:16:00
128423    38211    653    2017-10-16 01:26:00    2017-10-16 01:26:00
128424    38211    602    2017-10-16 20:01:00    2017-10-16 20:01:00
128425    38212    753    2017-10-16 08:35:00    2017-10-16 08:35:00
128426    38212    548    2017-10-16 13:24:00    2017-10-16 13:24:00
128427    38212    482    2017-10-16 09:29:00    2017-10-16 09:29:00
128428    38212    796    2017-10-16 10:00:00    2017-10-16 10:00:00
128429    38212    514    2017-10-16 13:34:00    2017-10-16 13:34:00
128430    38213    790    2017-10-16 13:29:00    2017-10-16 13:29:00
128431    38213    864    2017-10-16 10:12:00    2017-10-16 10:12:00
128432    38213    934    2017-10-16 21:42:00    2017-10-16 21:42:00
128433    38213    786    2017-10-16 14:40:00    2017-10-16 14:40:00
128434    38213    597    2017-10-16 10:50:00    2017-10-16 10:50:00
128435    38214    645    2017-10-16 08:56:00    2017-10-16 08:56:00
128436    38214    915    2017-10-16 18:16:00    2017-10-16 18:16:00
128437    38214    756    2017-10-16 20:09:00    2017-10-16 20:09:00
128438    38214    821    2017-10-16 06:47:00    2017-10-16 06:47:00
128439    38214    623    2017-10-16 03:29:00    2017-10-16 03:29:00
128440    38215    652    2017-10-16 21:18:00    2017-10-16 21:18:00
128441    38215    860    2017-10-16 18:33:00    2017-10-16 18:33:00
128442    38215    814    2017-10-16 22:28:00    2017-10-16 22:28:00
128443    38215    919    2017-10-16 16:52:00    2017-10-16 16:52:00
128444    38215    528    2017-10-16 06:30:00    2017-10-16 06:30:00
128445    38216    626    2017-10-16 01:17:00    2017-10-16 01:17:00
128446    38216    487    2017-10-16 09:19:00    2017-10-16 09:19:00
128447    38216    745    2017-10-16 04:49:00    2017-10-16 04:49:00
128448    38216    952    2017-10-16 02:14:00    2017-10-16 02:14:00
128449    38216    673    2017-10-16 18:46:00    2017-10-16 18:46:00
128450    38217    678    2017-10-16 03:56:00    2017-10-16 03:56:00
128451    38217    480    2017-10-16 06:09:00    2017-10-16 06:09:00
128452    38217    689    2017-10-16 14:21:00    2017-10-16 14:21:00
128453    38217    877    2017-10-16 13:48:00    2017-10-16 13:48:00
128454    38217    828    2017-10-16 11:12:00    2017-10-16 11:12:00
128455    38218    693    2017-10-16 11:18:00    2017-10-16 11:18:00
128456    38218    922    2017-10-16 09:48:00    2017-10-16 09:48:00
128457    38218    621    2017-10-16 01:02:00    2017-10-16 01:02:00
128458    38218    875    2017-10-16 11:14:00    2017-10-16 11:14:00
128459    38218    498    2017-10-16 10:25:00    2017-10-16 10:25:00
128460    38219    696    2017-10-16 13:00:00    2017-10-16 13:00:00
128461    38219    953    2017-10-16 13:13:00    2017-10-16 13:13:00
128462    38219    535    2017-10-16 23:46:00    2017-10-16 23:46:00
128463    38219    638    2017-10-16 01:13:00    2017-10-16 01:13:00
128464    38219    861    2017-10-16 18:10:00    2017-10-16 18:10:00
128465    38220    698    2017-10-16 05:58:00    2017-10-16 05:58:00
128466    38220    923    2017-10-16 07:35:00    2017-10-16 07:35:00
128467    38220    588    2017-10-16 11:37:00    2017-10-16 11:37:00
128468    38220    539    2017-10-16 10:00:00    2017-10-16 10:00:00
128469    38220    945    2017-10-16 13:18:00    2017-10-16 13:18:00
128470    38221    746    2017-10-16 17:42:00    2017-10-16 17:42:00
128471    38221    463    2017-10-16 22:41:00    2017-10-16 22:41:00
128472    38221    950    2017-10-16 09:00:00    2017-10-16 09:00:00
128473    38221    687    2017-10-16 09:49:00    2017-10-16 09:49:00
128474    38221    689    2017-10-16 08:04:00    2017-10-16 08:04:00
128475    38222    911    2017-10-16 22:36:00    2017-10-16 22:36:00
128476    38222    659    2017-10-16 02:31:00    2017-10-16 02:31:00
128477    38222    768    2017-10-16 23:36:00    2017-10-16 23:36:00
128478    38222    675    2017-10-16 16:47:00    2017-10-16 16:47:00
128479    38222    671    2017-10-16 09:23:00    2017-10-16 09:23:00
128480    38223    734    2017-10-16 09:21:00    2017-10-16 09:21:00
128481    38223    573    2017-10-16 12:50:00    2017-10-16 12:50:00
128482    38223    597    2017-10-16 20:03:00    2017-10-16 20:03:00
128483    38223    814    2017-10-16 11:57:00    2017-10-16 11:57:00
128484    38223    525    2017-10-16 01:03:00    2017-10-16 01:03:00
128485    38224    666    2017-10-16 09:22:00    2017-10-16 09:22:00
128486    38224    528    2017-10-16 18:44:00    2017-10-16 18:44:00
128487    38224    891    2017-10-16 17:06:00    2017-10-16 17:06:00
128488    38224    758    2017-10-16 17:34:00    2017-10-16 17:34:00
128489    38224    572    2017-10-16 13:36:00    2017-10-16 13:36:00
128490    38225    643    2017-10-16 06:04:00    2017-10-16 06:04:00
128491    38225    670    2017-10-16 15:06:00    2017-10-16 15:06:00
128492    38225    502    2017-10-16 09:55:00    2017-10-16 09:55:00
128493    38225    527    2017-10-16 02:00:00    2017-10-16 02:00:00
128494    38225    606    2017-10-16 09:18:00    2017-10-16 09:18:00
128495    38226    601    2017-10-16 02:39:00    2017-10-16 02:39:00
128496    38226    815    2017-10-16 20:34:00    2017-10-16 20:34:00
128497    38226    604    2017-10-16 15:51:00    2017-10-16 15:51:00
128498    38226    681    2017-10-16 12:30:00    2017-10-16 12:30:00
128499    38226    901    2017-10-16 13:08:00    2017-10-16 13:08:00
128500    38227    780    2017-10-16 19:19:00    2017-10-16 19:19:00
128501    38227    842    2017-10-16 19:00:00    2017-10-16 19:00:00
128502    38227    517    2017-10-16 07:04:00    2017-10-16 07:04:00
128503    38227    680    2017-10-16 07:43:00    2017-10-16 07:43:00
128504    38227    860    2017-10-16 05:05:00    2017-10-16 05:05:00
128505    38228    802    2017-10-16 23:57:00    2017-10-16 23:57:00
128506    38228    594    2017-10-16 20:57:00    2017-10-16 20:57:00
128507    38228    837    2017-10-16 16:19:00    2017-10-16 16:19:00
128508    38228    689    2017-10-16 17:22:00    2017-10-16 17:22:00
128509    38228    885    2017-10-16 14:00:00    2017-10-16 14:00:00
128510    38229    823    2017-10-16 04:40:00    2017-10-16 04:40:00
128511    38229    491    2017-10-16 10:10:00    2017-10-16 10:10:00
128512    38229    646    2017-10-16 10:04:00    2017-10-16 10:04:00
128513    38229    780    2017-10-16 02:55:00    2017-10-16 02:55:00
128514    38229    571    2017-10-16 18:00:00    2017-10-16 18:00:00
128515    38230    596    2017-10-16 07:31:00    2017-10-16 07:31:00
128516    38230    774    2017-10-16 17:37:00    2017-10-16 17:37:00
128517    38230    878    2017-10-16 21:58:00    2017-10-16 21:58:00
128518    38230    907    2017-10-16 08:48:00    2017-10-16 08:48:00
128519    38230    545    2017-10-16 15:21:00    2017-10-16 15:21:00
128520    38231    491    2017-10-16 15:26:00    2017-10-16 15:26:00
128521    38231    802    2017-10-16 23:27:00    2017-10-16 23:27:00
128522    38231    507    2017-10-16 18:19:00    2017-10-16 18:19:00
128523    38231    885    2017-10-16 06:57:00    2017-10-16 06:57:00
128524    38231    494    2017-10-16 10:04:00    2017-10-16 10:04:00
128525    38232    529    2017-10-16 01:58:00    2017-10-16 01:58:00
128526    38232    686    2017-10-16 04:09:00    2017-10-16 04:09:00
128527    38232    609    2017-10-16 04:46:00    2017-10-16 04:46:00
128528    38232    623    2017-10-16 20:06:00    2017-10-16 20:06:00
128529    38232    850    2017-10-16 12:45:00    2017-10-16 12:45:00
128530    38233    617    2017-10-16 20:31:00    2017-10-16 20:31:00
128531    38233    895    2017-10-16 10:13:00    2017-10-16 10:13:00
128532    38233    629    2017-10-16 07:07:00    2017-10-16 07:07:00
128533    38233    468    2017-10-16 20:58:00    2017-10-16 20:58:00
128534    38233    603    2017-10-16 17:49:00    2017-10-16 17:49:00
128535    38234    560    2017-10-16 23:48:00    2017-10-16 23:48:00
128536    38234    827    2017-10-16 14:12:00    2017-10-16 14:12:00
128537    38234    915    2017-10-16 16:00:00    2017-10-16 16:00:00
128538    38234    959    2017-10-16 11:55:00    2017-10-16 11:55:00
128539    38234    921    2017-10-16 19:05:00    2017-10-16 19:05:00
128540    38235    641    2017-10-16 22:57:00    2017-10-16 22:57:00
128541    38235    669    2017-10-16 08:22:00    2017-10-16 08:22:00
128542    38235    696    2017-10-16 17:37:00    2017-10-16 17:37:00
128543    38235    659    2017-10-16 21:14:00    2017-10-16 21:14:00
128544    38235    525    2017-10-16 21:50:00    2017-10-16 21:50:00
128545    38236    872    2017-10-16 19:55:00    2017-10-16 19:55:00
128546    38236    806    2017-10-16 22:52:00    2017-10-16 22:52:00
128547    38236    503    2017-10-16 15:19:00    2017-10-16 15:19:00
128548    38236    600    2017-10-16 05:17:00    2017-10-16 05:17:00
128549    38236    485    2017-10-16 16:29:00    2017-10-16 16:29:00
128550    38237    827    2017-10-16 14:12:00    2017-10-16 14:12:00
128551    38237    568    2017-10-16 01:11:00    2017-10-16 01:11:00
128552    38237    661    2017-10-16 17:31:00    2017-10-16 17:31:00
128553    38237    626    2017-10-16 02:16:00    2017-10-16 02:16:00
128554    38237    773    2017-10-16 10:13:00    2017-10-16 10:13:00
128555    38238    764    2017-10-16 13:41:00    2017-10-16 13:41:00
128556    38238    697    2017-10-16 03:01:00    2017-10-16 03:01:00
128557    38238    754    2017-10-16 10:09:00    2017-10-16 10:09:00
128558    38238    904    2017-10-16 16:31:00    2017-10-16 16:31:00
128559    38238    613    2017-10-16 02:48:00    2017-10-16 02:48:00
128560    38239    616    2017-10-16 23:14:00    2017-10-16 23:14:00
128561    38239    853    2017-10-16 20:11:00    2017-10-16 20:11:00
128562    38239    586    2017-10-16 02:35:00    2017-10-16 02:35:00
128563    38239    483    2017-10-16 23:31:00    2017-10-16 23:31:00
128564    38239    565    2017-10-16 14:12:00    2017-10-16 14:12:00
128565    38240    903    2017-10-16 21:03:00    2017-10-16 21:03:00
128566    38240    640    2017-10-16 22:35:00    2017-10-16 22:35:00
128567    38240    717    2017-10-16 06:05:00    2017-10-16 06:05:00
128568    38240    886    2017-10-16 03:58:00    2017-10-16 03:58:00
128569    38240    861    2017-10-16 01:37:00    2017-10-16 01:37:00
128570    38241    616    2017-10-16 15:13:00    2017-10-16 15:13:00
128571    38241    521    2017-10-16 15:42:00    2017-10-16 15:42:00
128572    38241    877    2017-10-16 05:15:00    2017-10-16 05:15:00
128573    38241    831    2017-10-16 15:10:00    2017-10-16 15:10:00
128574    38241    939    2017-10-16 06:17:00    2017-10-16 06:17:00
128575    38242    638    2017-10-16 12:54:00    2017-10-16 12:54:00
128576    38242    488    2017-10-16 04:30:00    2017-10-16 04:30:00
128577    38242    852    2017-10-16 10:23:00    2017-10-16 10:23:00
128578    38242    744    2017-10-16 21:37:00    2017-10-16 21:37:00
128579    38242    743    2017-10-16 06:00:00    2017-10-16 06:00:00
128580    38243    795    2017-10-16 23:39:00    2017-10-16 23:39:00
128581    38243    571    2017-10-16 23:52:00    2017-10-16 23:52:00
128582    38243    662    2017-10-16 17:38:00    2017-10-16 17:38:00
128583    38243    872    2017-10-16 07:34:00    2017-10-16 07:34:00
128584    38243    702    2017-10-16 08:26:00    2017-10-16 08:26:00
128585    38244    914    2017-10-17 08:21:00    2017-10-17 08:21:00
128586    38244    911    2017-10-17 11:56:00    2017-10-17 11:56:00
128587    38244    707    2017-10-17 11:32:00    2017-10-17 11:32:00
128588    38244    858    2017-10-17 13:21:00    2017-10-17 13:21:00
128589    38244    952    2017-10-17 07:44:00    2017-10-17 07:44:00
128590    38245    582    2017-10-17 08:14:00    2017-10-17 08:14:00
128591    38245    961    2017-10-17 14:17:00    2017-10-17 14:17:00
128592    38245    912    2017-10-17 14:49:00    2017-10-17 14:49:00
128593    38245    851    2017-10-17 14:11:00    2017-10-17 14:11:00
128594    38245    599    2017-10-17 22:39:00    2017-10-17 22:39:00
128595    38246    668    2017-10-17 22:11:00    2017-10-17 22:11:00
128596    38246    711    2017-10-17 17:32:00    2017-10-17 17:32:00
128597    38246    566    2017-10-17 15:38:00    2017-10-17 15:38:00
128598    38246    479    2017-10-17 21:42:00    2017-10-17 21:42:00
128599    38246    730    2017-10-17 13:48:00    2017-10-17 13:48:00
128600    38247    558    2017-10-17 12:04:00    2017-10-17 12:04:00
128601    38247    493    2017-10-17 22:44:00    2017-10-17 22:44:00
128602    38247    709    2017-10-17 21:13:00    2017-10-17 21:13:00
128603    38247    548    2017-10-17 04:37:00    2017-10-17 04:37:00
128604    38247    484    2017-10-17 01:31:00    2017-10-17 01:31:00
128605    38248    786    2017-10-17 16:06:00    2017-10-17 16:06:00
128606    38248    709    2017-10-17 10:44:00    2017-10-17 10:44:00
128607    38248    567    2017-10-17 20:01:00    2017-10-17 20:01:00
128608    38248    758    2017-10-17 14:09:00    2017-10-17 14:09:00
128609    38248    562    2017-10-17 11:53:00    2017-10-17 11:53:00
128610    38249    773    2017-10-17 06:09:00    2017-10-17 06:09:00
128611    38249    800    2017-10-17 18:45:00    2017-10-17 18:45:00
128612    38249    957    2017-10-17 02:30:00    2017-10-17 02:30:00
128613    38249    803    2017-10-17 08:09:00    2017-10-17 08:09:00
128614    38249    923    2017-10-17 23:16:00    2017-10-17 23:16:00
128615    38250    551    2017-10-17 14:20:00    2017-10-17 14:20:00
128616    38250    501    2017-10-17 13:12:00    2017-10-17 13:12:00
128617    38250    593    2017-10-17 16:19:00    2017-10-17 16:19:00
128618    38250    876    2017-10-17 02:25:00    2017-10-17 02:25:00
128619    38250    725    2017-10-17 15:36:00    2017-10-17 15:36:00
128620    38251    697    2017-10-17 11:43:00    2017-10-17 11:43:00
128621    38251    659    2017-10-17 11:12:00    2017-10-17 11:12:00
128622    38251    834    2017-10-17 18:19:00    2017-10-17 18:19:00
128623    38251    771    2017-10-17 10:15:00    2017-10-17 10:15:00
128624    38251    629    2017-10-17 06:15:00    2017-10-17 06:15:00
128625    38252    528    2017-10-17 15:52:00    2017-10-17 15:52:00
128626    38252    722    2017-10-17 06:04:00    2017-10-17 06:04:00
128627    38252    467    2017-10-17 10:49:00    2017-10-17 10:49:00
128628    38252    676    2017-10-17 19:32:00    2017-10-17 19:32:00
128629    38252    808    2017-10-17 03:25:00    2017-10-17 03:25:00
128630    38253    722    2017-10-17 06:58:00    2017-10-17 06:58:00
128631    38253    927    2017-10-17 04:48:00    2017-10-17 04:48:00
128632    38253    764    2017-10-17 05:14:00    2017-10-17 05:14:00
128633    38253    880    2017-10-17 10:17:00    2017-10-17 10:17:00
128634    38253    830    2017-10-17 19:32:00    2017-10-17 19:32:00
128635    38254    655    2017-10-17 07:21:00    2017-10-17 07:21:00
128636    38254    558    2017-10-17 10:26:00    2017-10-17 10:26:00
128637    38254    727    2017-10-17 06:26:00    2017-10-17 06:26:00
128638    38254    675    2017-10-17 02:21:00    2017-10-17 02:21:00
128639    38254    807    2017-10-17 03:05:00    2017-10-17 03:05:00
128640    38255    542    2017-10-17 02:09:00    2017-10-17 02:09:00
128641    38255    708    2017-10-17 07:58:00    2017-10-17 07:58:00
128642    38255    865    2017-10-17 01:15:00    2017-10-17 01:15:00
128643    38255    466    2017-10-17 17:18:00    2017-10-17 17:18:00
128644    38255    654    2017-10-17 21:02:00    2017-10-17 21:02:00
128645    38256    479    2017-10-17 18:37:00    2017-10-17 18:37:00
128646    38256    577    2017-10-17 10:28:00    2017-10-17 10:28:00
128647    38256    814    2017-10-17 23:24:00    2017-10-17 23:24:00
128648    38256    690    2017-10-17 21:16:00    2017-10-17 21:16:00
128649    38256    928    2017-10-17 10:29:00    2017-10-17 10:29:00
128650    38257    841    2017-10-17 05:15:00    2017-10-17 05:15:00
128651    38257    465    2017-10-17 05:46:00    2017-10-17 05:46:00
128652    38257    721    2017-10-17 11:50:00    2017-10-17 11:50:00
128653    38257    702    2017-10-17 04:24:00    2017-10-17 04:24:00
128654    38257    475    2017-10-17 18:11:00    2017-10-17 18:11:00
128655    38258    538    2017-10-17 11:51:00    2017-10-17 11:51:00
128656    38258    493    2017-10-17 05:00:00    2017-10-17 05:00:00
128657    38258    884    2017-10-17 03:33:00    2017-10-17 03:33:00
128658    38258    915    2017-10-17 18:18:00    2017-10-17 18:18:00
128659    38258    542    2017-10-17 04:04:00    2017-10-17 04:04:00
128660    38259    700    2017-10-17 15:24:00    2017-10-17 15:24:00
128661    38259    804    2017-10-17 21:29:00    2017-10-17 21:29:00
128662    38259    822    2017-10-17 01:50:00    2017-10-17 01:50:00
128663    38259    754    2017-10-17 23:26:00    2017-10-17 23:26:00
128664    38259    623    2017-10-17 05:23:00    2017-10-17 05:23:00
128665    38260    512    2017-10-17 10:42:00    2017-10-17 10:42:00
128666    38260    706    2017-10-17 23:51:00    2017-10-17 23:51:00
128667    38260    775    2017-10-17 20:02:00    2017-10-17 20:02:00
128668    38260    695    2017-10-17 01:12:00    2017-10-17 01:12:00
128669    38260    616    2017-10-17 09:39:00    2017-10-17 09:39:00
128670    38261    774    2017-10-18 21:08:00    2017-10-18 21:08:00
128671    38261    817    2017-10-18 07:30:00    2017-10-18 07:30:00
128672    38261    931    2017-10-18 13:57:00    2017-10-18 13:57:00
128673    38261    629    2017-10-18 06:08:00    2017-10-18 06:08:00
128674    38261    670    2017-10-18 06:45:00    2017-10-18 06:45:00
128675    38262    584    2017-10-18 19:04:00    2017-10-18 19:04:00
128676    38262    959    2017-10-18 18:00:00    2017-10-18 18:00:00
128677    38262    556    2017-10-18 19:06:00    2017-10-18 19:06:00
128678    38262    470    2017-10-18 17:10:00    2017-10-18 17:10:00
128679    38262    592    2017-10-18 19:00:00    2017-10-18 19:00:00
128680    38263    799    2017-10-18 08:05:00    2017-10-18 08:05:00
128681    38263    765    2017-10-18 16:25:00    2017-10-18 16:25:00
128682    38263    626    2017-10-18 11:53:00    2017-10-18 11:53:00
128683    38263    719    2017-10-18 08:56:00    2017-10-18 08:56:00
128684    38263    544    2017-10-18 21:12:00    2017-10-18 21:12:00
128685    38264    560    2017-10-18 21:58:00    2017-10-18 21:58:00
128686    38264    667    2017-10-18 14:17:00    2017-10-18 14:17:00
128687    38264    588    2017-10-18 10:08:00    2017-10-18 10:08:00
128688    38264    548    2017-10-18 20:47:00    2017-10-18 20:47:00
128689    38264    489    2017-10-18 10:24:00    2017-10-18 10:24:00
128690    38265    926    2017-10-18 09:08:00    2017-10-18 09:08:00
128691    38265    677    2017-10-18 08:04:00    2017-10-18 08:04:00
128692    38265    737    2017-10-18 02:01:00    2017-10-18 02:01:00
128693    38265    929    2017-10-18 04:23:00    2017-10-18 04:23:00
128694    38265    709    2017-10-18 21:00:00    2017-10-18 21:00:00
128695    38266    857    2017-10-18 20:03:00    2017-10-18 20:03:00
128696    38266    949    2017-10-18 23:22:00    2017-10-18 23:22:00
128697    38266    823    2017-10-18 01:51:00    2017-10-18 01:51:00
128698    38266    493    2017-10-18 06:23:00    2017-10-18 06:23:00
128699    38266    574    2017-10-18 12:59:00    2017-10-18 12:59:00
128700    38267    824    2017-10-18 07:11:00    2017-10-18 07:11:00
128701    38267    750    2017-10-18 13:38:00    2017-10-18 13:38:00
128702    38267    931    2017-10-18 01:39:00    2017-10-18 01:39:00
128703    38267    706    2017-10-18 17:24:00    2017-10-18 17:24:00
128704    38267    664    2017-10-18 14:58:00    2017-10-18 14:58:00
128705    38268    598    2017-10-18 09:16:00    2017-10-18 09:16:00
128706    38268    706    2017-10-18 01:31:00    2017-10-18 01:31:00
128707    38268    554    2017-10-18 14:18:00    2017-10-18 14:18:00
128708    38268    757    2017-10-18 23:10:00    2017-10-18 23:10:00
128709    38268    942    2017-10-18 11:13:00    2017-10-18 11:13:00
128710    38269    779    2017-10-18 16:30:00    2017-10-18 16:30:00
128711    38269    896    2017-10-18 16:14:00    2017-10-18 16:14:00
128712    38269    696    2017-10-18 20:17:00    2017-10-18 20:17:00
128713    38269    919    2017-10-18 06:32:00    2017-10-18 06:32:00
128714    38269    715    2017-10-18 03:13:00    2017-10-18 03:13:00
128715    38270    582    2017-10-18 01:05:00    2017-10-18 01:05:00
128716    38270    668    2017-10-18 18:23:00    2017-10-18 18:23:00
128717    38270    726    2017-10-18 14:16:00    2017-10-18 14:16:00
128718    38270    583    2017-10-18 06:53:00    2017-10-18 06:53:00
128719    38270    768    2017-10-18 19:02:00    2017-10-18 19:02:00
128720    38271    470    2017-10-18 17:45:00    2017-10-18 17:45:00
128721    38271    638    2017-10-18 20:16:00    2017-10-18 20:16:00
128722    38271    847    2017-10-18 23:24:00    2017-10-18 23:24:00
128723    38271    546    2017-10-18 15:53:00    2017-10-18 15:53:00
128724    38271    901    2017-10-18 02:41:00    2017-10-18 02:41:00
128725    38272    588    2017-10-18 19:08:00    2017-10-18 19:08:00
128726    38272    703    2017-10-18 05:52:00    2017-10-18 05:52:00
128727    38272    851    2017-10-18 10:14:00    2017-10-18 10:14:00
128728    38272    732    2017-10-18 09:43:00    2017-10-18 09:43:00
128729    38272    667    2017-10-18 16:41:00    2017-10-18 16:41:00
128730    38273    788    2017-10-18 04:12:00    2017-10-18 04:12:00
128731    38273    679    2017-10-18 07:26:00    2017-10-18 07:26:00
128732    38273    786    2017-10-18 07:42:00    2017-10-18 07:42:00
128733    38273    855    2017-10-18 14:02:00    2017-10-18 14:02:00
128734    38273    675    2017-10-18 03:45:00    2017-10-18 03:45:00
128735    38274    600    2017-10-18 23:48:00    2017-10-18 23:48:00
128736    38274    526    2017-10-18 09:15:00    2017-10-18 09:15:00
128737    38274    637    2017-10-18 23:10:00    2017-10-18 23:10:00
128738    38274    736    2017-10-18 06:45:00    2017-10-18 06:45:00
128739    38274    628    2017-10-18 15:48:00    2017-10-18 15:48:00
128740    38275    883    2017-10-18 23:19:00    2017-10-18 23:19:00
128741    38275    558    2017-10-18 17:45:00    2017-10-18 17:45:00
128742    38275    876    2017-10-18 12:31:00    2017-10-18 12:31:00
128743    38275    830    2017-10-18 03:26:00    2017-10-18 03:26:00
128744    38275    865    2017-10-18 06:00:00    2017-10-18 06:00:00
128745    38276    941    2017-10-18 07:08:00    2017-10-18 07:08:00
128746    38276    947    2017-10-18 23:57:00    2017-10-18 23:57:00
128747    38276    749    2017-10-18 12:43:00    2017-10-18 12:43:00
128748    38276    960    2017-10-18 08:30:00    2017-10-18 08:30:00
128749    38276    740    2017-10-18 21:36:00    2017-10-18 21:36:00
128750    38277    913    2017-10-18 18:08:00    2017-10-18 18:08:00
128751    38277    834    2017-10-18 03:58:00    2017-10-18 03:58:00
128752    38277    685    2017-10-18 16:28:00    2017-10-18 16:28:00
128753    38277    573    2017-10-18 21:38:00    2017-10-18 21:38:00
128754    38277    790    2017-10-18 22:14:00    2017-10-18 22:14:00
128755    38278    797    2017-10-18 16:24:00    2017-10-18 16:24:00
128756    38278    633    2017-10-18 19:51:00    2017-10-18 19:51:00
128757    38278    620    2017-10-18 10:01:00    2017-10-18 10:01:00
128758    38278    940    2017-10-18 08:05:00    2017-10-18 08:05:00
128759    38278    732    2017-10-18 05:26:00    2017-10-18 05:26:00
128760    38279    699    2017-10-18 05:58:00    2017-10-18 05:58:00
128761    38279    578    2017-10-18 02:44:00    2017-10-18 02:44:00
128762    38279    632    2017-10-18 14:57:00    2017-10-18 14:57:00
128763    38279    922    2017-10-18 17:15:00    2017-10-18 17:15:00
128764    38279    781    2017-10-18 05:24:00    2017-10-18 05:24:00
128765    38280    958    2017-10-18 05:54:00    2017-10-18 05:54:00
128766    38280    849    2017-10-18 13:40:00    2017-10-18 13:40:00
128767    38280    490    2017-10-18 03:31:00    2017-10-18 03:31:00
128768    38280    511    2017-10-18 17:41:00    2017-10-18 17:41:00
128769    38280    901    2017-10-18 10:46:00    2017-10-18 10:46:00
128770    38281    829    2017-10-18 13:41:00    2017-10-18 13:41:00
128771    38281    837    2017-10-18 05:32:00    2017-10-18 05:32:00
128772    38281    749    2017-10-18 11:56:00    2017-10-18 11:56:00
128773    38281    672    2017-10-18 04:42:00    2017-10-18 04:42:00
128774    38281    693    2017-10-18 08:44:00    2017-10-18 08:44:00
128775    38282    800    2017-10-18 16:50:00    2017-10-18 16:50:00
128776    38282    881    2017-10-18 12:09:00    2017-10-18 12:09:00
128777    38282    757    2017-10-18 12:08:00    2017-10-18 12:08:00
128778    38282    530    2017-10-18 03:11:00    2017-10-18 03:11:00
128779    38282    466    2017-10-18 21:21:00    2017-10-18 21:21:00
128780    38283    489    2017-10-18 07:22:00    2017-10-18 07:22:00
128781    38283    813    2017-10-18 10:27:00    2017-10-18 10:27:00
128782    38283    731    2017-10-18 19:49:00    2017-10-18 19:49:00
128783    38283    651    2017-10-18 04:25:00    2017-10-18 04:25:00
128784    38283    876    2017-10-18 18:54:00    2017-10-18 18:54:00
128785    38284    819    2017-10-18 07:13:00    2017-10-18 07:13:00
128786    38284    706    2017-10-18 18:27:00    2017-10-18 18:27:00
128787    38284    918    2017-10-18 04:49:00    2017-10-18 04:49:00
128788    38284    582    2017-10-18 10:55:00    2017-10-18 10:55:00
128789    38284    774    2017-10-18 02:47:00    2017-10-18 02:47:00
128790    38285    783    2017-10-18 17:56:00    2017-10-18 17:56:00
128791    38285    473    2017-10-18 13:04:00    2017-10-18 13:04:00
128792    38285    656    2017-10-18 14:41:00    2017-10-18 14:41:00
128793    38285    637    2017-10-18 14:33:00    2017-10-18 14:33:00
128794    38285    840    2017-10-18 02:07:00    2017-10-18 02:07:00
128795    38286    583    2017-10-18 17:01:00    2017-10-18 17:01:00
128796    38286    828    2017-10-18 16:49:00    2017-10-18 16:49:00
128797    38286    938    2017-10-18 09:09:00    2017-10-18 09:09:00
128798    38286    955    2017-10-18 10:46:00    2017-10-18 10:46:00
128799    38286    549    2017-10-18 13:29:00    2017-10-18 13:29:00
128800    38287    786    2017-10-18 01:06:00    2017-10-18 01:06:00
128801    38287    745    2017-10-18 22:34:00    2017-10-18 22:34:00
128802    38287    618    2017-10-18 09:46:00    2017-10-18 09:46:00
128803    38287    777    2017-10-18 11:43:00    2017-10-18 11:43:00
128804    38287    574    2017-10-18 10:12:00    2017-10-18 10:12:00
128805    38288    837    2017-10-18 12:31:00    2017-10-18 12:31:00
128806    38288    670    2017-10-18 04:02:00    2017-10-18 04:02:00
128807    38288    659    2017-10-18 02:35:00    2017-10-18 02:35:00
128808    38288    567    2017-10-18 14:11:00    2017-10-18 14:11:00
128809    38288    513    2017-10-18 07:36:00    2017-10-18 07:36:00
128810    38289    524    2017-10-18 09:25:00    2017-10-18 09:25:00
128811    38289    754    2017-10-18 12:48:00    2017-10-18 12:48:00
128812    38289    709    2017-10-18 03:39:00    2017-10-18 03:39:00
128813    38289    914    2017-10-18 05:38:00    2017-10-18 05:38:00
128814    38289    607    2017-10-18 11:07:00    2017-10-18 11:07:00
128815    38290    769    2017-10-18 22:42:00    2017-10-18 22:42:00
128816    38290    594    2017-10-18 18:07:00    2017-10-18 18:07:00
128817    38290    768    2017-10-18 13:46:00    2017-10-18 13:46:00
128818    38290    585    2017-10-18 11:58:00    2017-10-18 11:58:00
128819    38290    843    2017-10-18 08:29:00    2017-10-18 08:29:00
128820    38291    493    2017-10-18 12:05:00    2017-10-18 12:05:00
128821    38291    764    2017-10-18 09:19:00    2017-10-18 09:19:00
128822    38291    709    2017-10-18 18:34:00    2017-10-18 18:34:00
128823    38291    781    2017-10-18 13:39:00    2017-10-18 13:39:00
128824    38291    633    2017-10-18 11:27:00    2017-10-18 11:27:00
128825    38292    647    2017-10-18 07:58:00    2017-10-18 07:58:00
128826    38292    693    2017-10-18 13:09:00    2017-10-18 13:09:00
128827    38292    899    2017-10-18 09:51:00    2017-10-18 09:51:00
128828    38292    831    2017-10-18 09:37:00    2017-10-18 09:37:00
128829    38292    630    2017-10-18 20:14:00    2017-10-18 20:14:00
128830    38293    793    2017-10-18 01:45:00    2017-10-18 01:45:00
128831    38293    592    2017-10-18 04:55:00    2017-10-18 04:55:00
128832    38293    800    2017-10-18 12:52:00    2017-10-18 12:52:00
128833    38293    882    2017-10-18 06:48:00    2017-10-18 06:48:00
128834    38293    531    2017-10-18 07:43:00    2017-10-18 07:43:00
128835    38294    633    2017-10-18 02:55:00    2017-10-18 02:55:00
128836    38294    907    2017-10-18 22:19:00    2017-10-18 22:19:00
128837    38294    657    2017-10-18 18:22:00    2017-10-18 18:22:00
128838    38294    748    2017-10-18 07:59:00    2017-10-18 07:59:00
128839    38294    781    2017-10-18 13:07:00    2017-10-18 13:07:00
128840    38295    719    2017-10-18 11:13:00    2017-10-18 11:13:00
128841    38295    776    2017-10-18 15:03:00    2017-10-18 15:03:00
128842    38295    814    2017-10-18 23:43:00    2017-10-18 23:43:00
128843    38295    776    2017-10-18 12:47:00    2017-10-18 12:47:00
128844    38295    642    2017-10-18 11:12:00    2017-10-18 11:12:00
128845    38296    751    2017-10-18 12:28:00    2017-10-18 12:28:00
128846    38296    635    2017-10-18 02:49:00    2017-10-18 02:49:00
128847    38296    739    2017-10-18 20:04:00    2017-10-18 20:04:00
128848    38296    626    2017-10-18 05:18:00    2017-10-18 05:18:00
128849    38296    467    2017-10-18 19:50:00    2017-10-18 19:50:00
128850    38297    888    2017-10-18 06:50:00    2017-10-18 06:50:00
128851    38297    903    2017-10-18 15:03:00    2017-10-18 15:03:00
128852    38297    611    2017-10-18 21:12:00    2017-10-18 21:12:00
128853    38297    507    2017-10-18 16:54:00    2017-10-18 16:54:00
128854    38297    911    2017-10-18 14:28:00    2017-10-18 14:28:00
128855    38298    723    2017-10-18 22:34:00    2017-10-18 22:34:00
128856    38298    606    2017-10-18 19:59:00    2017-10-18 19:59:00
128857    38298    594    2017-10-18 17:36:00    2017-10-18 17:36:00
128858    38298    715    2017-10-18 17:46:00    2017-10-18 17:46:00
128859    38298    685    2017-10-18 15:13:00    2017-10-18 15:13:00
128860    38299    541    2017-10-18 06:20:00    2017-10-18 06:20:00
128861    38299    564    2017-10-18 12:01:00    2017-10-18 12:01:00
128862    38299    627    2017-10-18 08:57:00    2017-10-18 08:57:00
128863    38299    503    2017-10-18 14:15:00    2017-10-18 14:15:00
128864    38299    524    2017-10-18 09:28:00    2017-10-18 09:28:00
128865    38300    928    2017-10-18 05:50:00    2017-10-18 05:50:00
128866    38300    547    2017-10-18 19:41:00    2017-10-18 19:41:00
128867    38300    824    2017-10-18 18:58:00    2017-10-18 18:58:00
128868    38300    463    2017-10-18 03:18:00    2017-10-18 03:18:00
128869    38300    654    2017-10-18 23:27:00    2017-10-18 23:27:00
128870    38301    886    2017-10-18 13:52:00    2017-10-18 13:52:00
128871    38301    917    2017-10-18 08:28:00    2017-10-18 08:28:00
128872    38301    927    2017-10-18 23:18:00    2017-10-18 23:18:00
128873    38301    562    2017-10-18 18:36:00    2017-10-18 18:36:00
128874    38301    841    2017-10-18 17:46:00    2017-10-18 17:46:00
128875    38302    914    2017-10-18 11:51:00    2017-10-18 11:51:00
128876    38302    838    2017-10-18 22:52:00    2017-10-18 22:52:00
128877    38302    606    2017-10-18 04:57:00    2017-10-18 04:57:00
128878    38302    548    2017-10-18 19:48:00    2017-10-18 19:48:00
128879    38302    660    2017-10-18 14:42:00    2017-10-18 14:42:00
128880    38303    841    2017-10-18 05:08:00    2017-10-18 05:08:00
128881    38303    547    2017-10-18 04:00:00    2017-10-18 04:00:00
128882    38303    510    2017-10-18 17:59:00    2017-10-18 17:59:00
128883    38303    607    2017-10-18 22:44:00    2017-10-18 22:44:00
128884    38303    870    2017-10-18 07:17:00    2017-10-18 07:17:00
128885    38304    554    2017-10-18 02:36:00    2017-10-18 02:36:00
128886    38304    824    2017-10-18 11:33:00    2017-10-18 11:33:00
128887    38304    523    2017-10-18 23:56:00    2017-10-18 23:56:00
128888    38304    776    2017-10-18 21:49:00    2017-10-18 21:49:00
128889    38304    717    2017-10-18 14:44:00    2017-10-18 14:44:00
128890    38305    503    2017-10-18 18:12:00    2017-10-18 18:12:00
128891    38305    625    2017-10-18 06:49:00    2017-10-18 06:49:00
128892    38305    551    2017-10-18 03:17:00    2017-10-18 03:17:00
128893    38305    882    2017-10-18 22:10:00    2017-10-18 22:10:00
128894    38305    596    2017-10-18 22:32:00    2017-10-18 22:32:00
128895    38306    849    2017-10-18 05:26:00    2017-10-18 05:26:00
128896    38306    463    2017-10-18 09:04:00    2017-10-18 09:04:00
128897    38306    690    2017-10-18 15:31:00    2017-10-18 15:31:00
128898    38306    891    2017-10-18 20:15:00    2017-10-18 20:15:00
128899    38306    932    2017-10-18 16:06:00    2017-10-18 16:06:00
128900    38307    674    2017-10-18 20:21:00    2017-10-18 20:21:00
128901    38307    825    2017-10-18 22:32:00    2017-10-18 22:32:00
128902    38307    539    2017-10-18 10:42:00    2017-10-18 10:42:00
128903    38307    609    2017-10-18 12:08:00    2017-10-18 12:08:00
128904    38307    803    2017-10-18 10:39:00    2017-10-18 10:39:00
128905    38308    524    2017-10-18 02:12:00    2017-10-18 02:12:00
128906    38308    944    2017-10-18 13:31:00    2017-10-18 13:31:00
128907    38308    470    2017-10-18 13:14:00    2017-10-18 13:14:00
128908    38308    479    2017-10-18 07:38:00    2017-10-18 07:38:00
128909    38308    492    2017-10-18 10:18:00    2017-10-18 10:18:00
128910    38309    797    2017-10-18 15:52:00    2017-10-18 15:52:00
128911    38309    549    2017-10-18 09:55:00    2017-10-18 09:55:00
128912    38309    707    2017-10-18 23:00:00    2017-10-18 23:00:00
128913    38309    520    2017-10-18 23:45:00    2017-10-18 23:45:00
128914    38309    915    2017-10-18 14:58:00    2017-10-18 14:58:00
128915    38310    532    2017-10-18 13:33:00    2017-10-18 13:33:00
128916    38310    801    2017-10-18 13:48:00    2017-10-18 13:48:00
128917    38310    641    2017-10-18 02:21:00    2017-10-18 02:21:00
128918    38310    759    2017-10-18 07:38:00    2017-10-18 07:38:00
128919    38310    900    2017-10-18 19:35:00    2017-10-18 19:35:00
128920    38311    709    2017-10-18 23:35:00    2017-10-18 23:35:00
128921    38311    861    2017-10-18 11:53:00    2017-10-18 11:53:00
128922    38311    854    2017-10-18 16:45:00    2017-10-18 16:45:00
128923    38311    898    2017-10-18 20:55:00    2017-10-18 20:55:00
128924    38311    806    2017-10-18 20:04:00    2017-10-18 20:04:00
128925    38312    566    2017-10-18 13:34:00    2017-10-18 13:34:00
128926    38312    888    2017-10-18 07:12:00    2017-10-18 07:12:00
128927    38312    789    2017-10-18 19:57:00    2017-10-18 19:57:00
128928    38312    670    2017-10-18 16:09:00    2017-10-18 16:09:00
128929    38312    733    2017-10-18 07:18:00    2017-10-18 07:18:00
128930    38313    759    2017-10-18 11:29:00    2017-10-18 11:29:00
128931    38313    895    2017-10-18 19:45:00    2017-10-18 19:45:00
128932    38313    765    2017-10-18 21:43:00    2017-10-18 21:43:00
128933    38313    669    2017-10-18 14:51:00    2017-10-18 14:51:00
128934    38313    909    2017-10-18 09:31:00    2017-10-18 09:31:00
128935    38314    463    2017-10-18 01:54:00    2017-10-18 01:54:00
128936    38314    627    2017-10-18 11:48:00    2017-10-18 11:48:00
128937    38314    960    2017-10-18 15:06:00    2017-10-18 15:06:00
128938    38314    884    2017-10-18 17:01:00    2017-10-18 17:01:00
128939    38314    511    2017-10-18 21:35:00    2017-10-18 21:35:00
128940    38315    922    2017-10-18 23:49:00    2017-10-18 23:49:00
128941    38315    890    2017-10-18 14:55:00    2017-10-18 14:55:00
128942    38315    929    2017-10-18 11:41:00    2017-10-18 11:41:00
128943    38315    644    2017-10-18 07:11:00    2017-10-18 07:11:00
128944    38315    632    2017-10-18 11:05:00    2017-10-18 11:05:00
128945    38316    721    2017-10-18 14:29:00    2017-10-18 14:29:00
128946    38316    677    2017-10-18 05:55:00    2017-10-18 05:55:00
128947    38316    651    2017-10-18 11:11:00    2017-10-18 11:11:00
128948    38316    807    2017-10-18 01:10:00    2017-10-18 01:10:00
128949    38316    941    2017-10-18 06:38:00    2017-10-18 06:38:00
128950    38317    703    2017-10-18 10:56:00    2017-10-18 10:56:00
128951    38317    876    2017-10-18 04:20:00    2017-10-18 04:20:00
128952    38317    701    2017-10-18 12:58:00    2017-10-18 12:58:00
128953    38317    473    2017-10-18 11:13:00    2017-10-18 11:13:00
128954    38317    472    2017-10-18 04:44:00    2017-10-18 04:44:00
128955    38318    880    2017-10-18 22:04:00    2017-10-18 22:04:00
128956    38318    672    2017-10-18 02:45:00    2017-10-18 02:45:00
128957    38318    517    2017-10-18 19:42:00    2017-10-18 19:42:00
128958    38318    777    2017-10-18 02:08:00    2017-10-18 02:08:00
128959    38318    881    2017-10-18 05:48:00    2017-10-18 05:48:00
128960    38319    780    2017-10-18 22:29:00    2017-10-18 22:29:00
128961    38319    716    2017-10-18 20:52:00    2017-10-18 20:52:00
128962    38319    832    2017-10-18 18:00:00    2017-10-18 18:00:00
128963    38319    544    2017-10-18 19:19:00    2017-10-18 19:19:00
128964    38319    677    2017-10-18 15:01:00    2017-10-18 15:01:00
128965    38320    913    2017-10-18 04:05:00    2017-10-18 04:05:00
128966    38320    926    2017-10-18 10:17:00    2017-10-18 10:17:00
128967    38320    605    2017-10-18 17:56:00    2017-10-18 17:56:00
128968    38320    721    2017-10-18 13:30:00    2017-10-18 13:30:00
128969    38320    673    2017-10-18 22:04:00    2017-10-18 22:04:00
128970    38321    562    2017-10-18 13:19:00    2017-10-18 13:19:00
128971    38321    733    2017-10-18 21:56:00    2017-10-18 21:56:00
128972    38321    620    2017-10-18 20:38:00    2017-10-18 20:38:00
128973    38321    852    2017-10-18 20:59:00    2017-10-18 20:59:00
128974    38321    601    2017-10-18 04:00:00    2017-10-18 04:00:00
128975    38322    594    2017-10-18 20:51:00    2017-10-18 20:51:00
128976    38322    758    2017-10-18 10:57:00    2017-10-18 10:57:00
128977    38322    587    2017-10-18 19:11:00    2017-10-18 19:11:00
128978    38322    573    2017-10-18 19:45:00    2017-10-18 19:45:00
128979    38322    755    2017-10-18 02:31:00    2017-10-18 02:31:00
128980    38323    526    2017-10-18 17:17:00    2017-10-18 17:17:00
128981    38323    508    2017-10-18 05:03:00    2017-10-18 05:03:00
128982    38323    751    2017-10-18 09:38:00    2017-10-18 09:38:00
128983    38323    925    2017-10-18 06:54:00    2017-10-18 06:54:00
128984    38323    698    2017-10-18 20:38:00    2017-10-18 20:38:00
128985    38324    628    2017-10-18 04:49:00    2017-10-18 04:49:00
128986    38324    626    2017-10-18 22:08:00    2017-10-18 22:08:00
128987    38324    571    2017-10-18 07:07:00    2017-10-18 07:07:00
128988    38324    885    2017-10-18 16:36:00    2017-10-18 16:36:00
128989    38324    577    2017-10-18 10:25:00    2017-10-18 10:25:00
128990    38325    812    2017-10-18 08:10:00    2017-10-18 08:10:00
128991    38325    714    2017-10-18 06:44:00    2017-10-18 06:44:00
128992    38325    729    2017-10-18 16:57:00    2017-10-18 16:57:00
128993    38325    828    2017-10-18 15:39:00    2017-10-18 15:39:00
128994    38325    603    2017-10-18 07:39:00    2017-10-18 07:39:00
128995    38326    811    2017-10-18 10:06:00    2017-10-18 10:06:00
128996    38326    506    2017-10-18 18:25:00    2017-10-18 18:25:00
128997    38326    624    2017-10-18 21:55:00    2017-10-18 21:55:00
128998    38326    673    2017-10-18 19:41:00    2017-10-18 19:41:00
128999    38326    486    2017-10-18 17:33:00    2017-10-18 17:33:00
129000    38327    738    2017-10-19 19:06:00    2017-10-19 19:06:00
129001    38327    706    2017-10-19 19:31:00    2017-10-19 19:31:00
129002    38327    656    2017-10-19 13:13:00    2017-10-19 13:13:00
129003    38327    828    2017-10-19 14:10:00    2017-10-19 14:10:00
129004    38327    741    2017-10-19 19:21:00    2017-10-19 19:21:00
129005    38328    911    2017-10-19 23:16:00    2017-10-19 23:16:00
129006    38328    693    2017-10-19 19:28:00    2017-10-19 19:28:00
129007    38328    498    2017-10-19 15:03:00    2017-10-19 15:03:00
129008    38328    794    2017-10-19 05:07:00    2017-10-19 05:07:00
129009    38328    505    2017-10-19 05:32:00    2017-10-19 05:32:00
129010    38329    615    2017-10-19 04:42:00    2017-10-19 04:42:00
129011    38329    799    2017-10-19 18:32:00    2017-10-19 18:32:00
129012    38329    472    2017-10-19 01:01:00    2017-10-19 01:01:00
129013    38329    575    2017-10-19 13:12:00    2017-10-19 13:12:00
129014    38329    501    2017-10-19 06:54:00    2017-10-19 06:54:00
129015    38330    761    2017-10-19 20:17:00    2017-10-19 20:17:00
129016    38330    776    2017-10-19 05:53:00    2017-10-19 05:53:00
129017    38330    632    2017-10-19 14:17:00    2017-10-19 14:17:00
129018    38330    864    2017-10-19 17:36:00    2017-10-19 17:36:00
129019    38330    464    2017-10-19 18:10:00    2017-10-19 18:10:00
129020    38331    914    2017-10-19 17:09:00    2017-10-19 17:09:00
129021    38331    783    2017-10-19 03:23:00    2017-10-19 03:23:00
129022    38331    859    2017-10-19 21:23:00    2017-10-19 21:23:00
129023    38331    916    2017-10-19 01:53:00    2017-10-19 01:53:00
129024    38331    633    2017-10-19 20:53:00    2017-10-19 20:53:00
129025    38332    651    2017-10-19 16:35:00    2017-10-19 16:35:00
129026    38332    953    2017-10-19 08:51:00    2017-10-19 08:51:00
129027    38332    564    2017-10-19 06:29:00    2017-10-19 06:29:00
129028    38332    876    2017-10-19 07:20:00    2017-10-19 07:20:00
129029    38332    534    2017-10-19 20:19:00    2017-10-19 20:19:00
129030    38333    719    2017-10-19 01:36:00    2017-10-19 01:36:00
129031    38333    486    2017-10-19 15:54:00    2017-10-19 15:54:00
129032    38333    924    2017-10-19 13:02:00    2017-10-19 13:02:00
129033    38333    564    2017-10-19 10:26:00    2017-10-19 10:26:00
129034    38333    463    2017-10-19 19:47:00    2017-10-19 19:47:00
129035    38334    535    2017-10-19 07:47:00    2017-10-19 07:47:00
129036    38334    837    2017-10-19 11:36:00    2017-10-19 11:36:00
129037    38334    742    2017-10-19 21:49:00    2017-10-19 21:49:00
129038    38334    645    2017-10-19 16:45:00    2017-10-19 16:45:00
129039    38334    697    2017-10-19 02:31:00    2017-10-19 02:31:00
129040    38335    695    2017-10-19 19:00:00    2017-10-19 19:00:00
129041    38335    943    2017-10-19 15:42:00    2017-10-19 15:42:00
129042    38335    703    2017-10-19 16:48:00    2017-10-19 16:48:00
129043    38335    872    2017-10-19 15:02:00    2017-10-19 15:02:00
129044    38335    559    2017-10-19 17:51:00    2017-10-19 17:51:00
129045    38336    795    2017-10-19 17:13:00    2017-10-19 17:13:00
129046    38336    699    2017-10-19 18:12:00    2017-10-19 18:12:00
129047    38336    619    2017-10-19 14:09:00    2017-10-19 14:09:00
129048    38336    595    2017-10-19 02:15:00    2017-10-19 02:15:00
129049    38336    714    2017-10-19 19:36:00    2017-10-19 19:36:00
129050    38337    608    2017-10-19 21:16:00    2017-10-19 21:16:00
129051    38337    753    2017-10-19 22:42:00    2017-10-19 22:42:00
129052    38337    487    2017-10-19 15:29:00    2017-10-19 15:29:00
129053    38337    715    2017-10-19 13:00:00    2017-10-19 13:00:00
129054    38337    467    2017-10-19 18:50:00    2017-10-19 18:50:00
129055    38338    765    2017-10-19 04:41:00    2017-10-19 04:41:00
129056    38338    528    2017-10-19 09:45:00    2017-10-19 09:45:00
129057    38338    775    2017-10-19 04:40:00    2017-10-19 04:40:00
129058    38338    721    2017-10-19 14:38:00    2017-10-19 14:38:00
129059    38338    506    2017-10-19 03:33:00    2017-10-19 03:33:00
129060    38339    809    2017-10-19 22:42:00    2017-10-19 22:42:00
129061    38339    513    2017-10-19 15:12:00    2017-10-19 15:12:00
129062    38339    864    2017-10-19 14:14:00    2017-10-19 14:14:00
129063    38339    510    2017-10-19 10:22:00    2017-10-19 10:22:00
129064    38339    825    2017-10-19 17:38:00    2017-10-19 17:38:00
129065    38340    630    2017-10-19 02:43:00    2017-10-19 02:43:00
129066    38340    751    2017-10-19 19:12:00    2017-10-19 19:12:00
129067    38340    744    2017-10-19 07:31:00    2017-10-19 07:31:00
129068    38340    889    2017-10-19 10:06:00    2017-10-19 10:06:00
129069    38340    680    2017-10-19 19:57:00    2017-10-19 19:57:00
129070    38341    575    2017-10-19 03:32:00    2017-10-19 03:32:00
129071    38341    486    2017-10-19 07:53:00    2017-10-19 07:53:00
129072    38341    959    2017-10-19 17:43:00    2017-10-19 17:43:00
129073    38341    815    2017-10-19 16:03:00    2017-10-19 16:03:00
129074    38341    618    2017-10-19 16:38:00    2017-10-19 16:38:00
129075    38342    696    2017-10-19 04:21:00    2017-10-19 04:21:00
129076    38342    920    2017-10-19 04:27:00    2017-10-19 04:27:00
129077    38342    785    2017-10-19 17:41:00    2017-10-19 17:41:00
129078    38342    492    2017-10-19 10:13:00    2017-10-19 10:13:00
129079    38342    510    2017-10-19 05:54:00    2017-10-19 05:54:00
129080    38343    575    2017-10-19 08:47:00    2017-10-19 08:47:00
129081    38343    538    2017-10-19 23:17:00    2017-10-19 23:17:00
129082    38343    646    2017-10-19 11:09:00    2017-10-19 11:09:00
129083    38343    766    2017-10-19 19:49:00    2017-10-19 19:49:00
129084    38343    867    2017-10-19 16:50:00    2017-10-19 16:50:00
129085    38344    741    2017-10-19 19:40:00    2017-10-19 19:40:00
129086    38344    816    2017-10-19 15:32:00    2017-10-19 15:32:00
129087    38344    634    2017-10-19 23:33:00    2017-10-19 23:33:00
129088    38344    695    2017-10-19 11:30:00    2017-10-19 11:30:00
129089    38344    529    2017-10-19 14:30:00    2017-10-19 14:30:00
129090    38345    761    2017-10-19 15:27:00    2017-10-19 15:27:00
129091    38345    912    2017-10-19 01:40:00    2017-10-19 01:40:00
129092    38345    534    2017-10-19 18:50:00    2017-10-19 18:50:00
129093    38345    682    2017-10-19 10:37:00    2017-10-19 10:37:00
129094    38345    564    2017-10-19 15:53:00    2017-10-19 15:53:00
129095    38346    864    2017-10-19 21:11:00    2017-10-19 21:11:00
129096    38346    482    2017-10-19 13:47:00    2017-10-19 13:47:00
129097    38346    759    2017-10-19 21:30:00    2017-10-19 21:30:00
129098    38346    905    2017-10-19 11:59:00    2017-10-19 11:59:00
129099    38346    626    2017-10-19 15:47:00    2017-10-19 15:47:00
129100    38347    832    2017-10-19 19:15:00    2017-10-19 19:15:00
129101    38347    850    2017-10-19 19:13:00    2017-10-19 19:13:00
129102    38347    812    2017-10-19 11:50:00    2017-10-19 11:50:00
129103    38347    679    2017-10-19 23:07:00    2017-10-19 23:07:00
129104    38347    857    2017-10-19 11:11:00    2017-10-19 11:11:00
129105    38348    604    2017-10-19 23:58:00    2017-10-19 23:58:00
129106    38348    913    2017-10-19 18:40:00    2017-10-19 18:40:00
129107    38348    875    2017-10-19 18:20:00    2017-10-19 18:20:00
129108    38348    658    2017-10-19 06:48:00    2017-10-19 06:48:00
129109    38348    596    2017-10-19 08:25:00    2017-10-19 08:25:00
129110    38349    532    2017-10-19 08:57:00    2017-10-19 08:57:00
129111    38349    653    2017-10-19 19:25:00    2017-10-19 19:25:00
129112    38349    736    2017-10-19 23:52:00    2017-10-19 23:52:00
129113    38349    759    2017-10-19 07:55:00    2017-10-19 07:55:00
129114    38349    647    2017-10-19 22:38:00    2017-10-19 22:38:00
129115    38350    612    2017-10-19 16:28:00    2017-10-19 16:28:00
129116    38350    835    2017-10-19 09:41:00    2017-10-19 09:41:00
129117    38350    847    2017-10-19 05:40:00    2017-10-19 05:40:00
129118    38350    697    2017-10-19 01:18:00    2017-10-19 01:18:00
129119    38350    805    2017-10-19 22:39:00    2017-10-19 22:39:00
129120    38351    564    2017-10-19 01:22:00    2017-10-19 01:22:00
129121    38351    779    2017-10-19 10:52:00    2017-10-19 10:52:00
129122    38351    911    2017-10-19 15:04:00    2017-10-19 15:04:00
129123    38351    918    2017-10-19 11:02:00    2017-10-19 11:02:00
129124    38351    499    2017-10-19 05:30:00    2017-10-19 05:30:00
129125    38352    906    2017-10-19 03:52:00    2017-10-19 03:52:00
129126    38352    897    2017-10-19 12:52:00    2017-10-19 12:52:00
129127    38352    944    2017-10-19 13:21:00    2017-10-19 13:21:00
129128    38352    750    2017-10-19 11:54:00    2017-10-19 11:54:00
129129    38352    680    2017-10-19 03:13:00    2017-10-19 03:13:00
129130    38353    641    2017-10-19 14:38:00    2017-10-19 14:38:00
129131    38353    690    2017-10-19 09:50:00    2017-10-19 09:50:00
129132    38353    951    2017-10-19 15:15:00    2017-10-19 15:15:00
129133    38353    855    2017-10-19 21:54:00    2017-10-19 21:54:00
129134    38353    782    2017-10-19 22:25:00    2017-10-19 22:25:00
129135    38354    555    2017-10-19 23:25:00    2017-10-19 23:25:00
129136    38354    499    2017-10-19 01:14:00    2017-10-19 01:14:00
129137    38354    778    2017-10-19 23:52:00    2017-10-19 23:52:00
129138    38354    651    2017-10-19 01:13:00    2017-10-19 01:13:00
129139    38354    627    2017-10-19 12:54:00    2017-10-19 12:54:00
129140    38355    745    2017-10-19 21:33:00    2017-10-19 21:33:00
129141    38355    475    2017-10-19 19:52:00    2017-10-19 19:52:00
129142    38355    591    2017-10-19 13:30:00    2017-10-19 13:30:00
129143    38355    737    2017-10-19 19:09:00    2017-10-19 19:09:00
129144    38355    730    2017-10-19 13:28:00    2017-10-19 13:28:00
129145    38356    858    2017-10-20 23:47:00    2017-10-20 23:47:00
129146    38356    735    2017-10-20 03:28:00    2017-10-20 03:28:00
129147    38356    734    2017-10-20 06:43:00    2017-10-20 06:43:00
129148    38356    913    2017-10-20 06:38:00    2017-10-20 06:38:00
129149    38356    506    2017-10-20 13:20:00    2017-10-20 13:20:00
129150    38357    564    2017-10-20 17:44:00    2017-10-20 17:44:00
129151    38357    629    2017-10-20 16:50:00    2017-10-20 16:50:00
129152    38357    725    2017-10-20 11:14:00    2017-10-20 11:14:00
129153    38357    724    2017-10-20 08:35:00    2017-10-20 08:35:00
129154    38357    714    2017-10-20 15:53:00    2017-10-20 15:53:00
129155    38358    836    2017-10-20 16:59:00    2017-10-20 16:59:00
129156    38358    696    2017-10-20 01:25:00    2017-10-20 01:25:00
129157    38358    534    2017-10-20 06:40:00    2017-10-20 06:40:00
129158    38358    556    2017-10-20 18:01:00    2017-10-20 18:01:00
129159    38358    779    2017-10-20 19:11:00    2017-10-20 19:11:00
129160    38359    533    2017-10-20 14:30:00    2017-10-20 14:30:00
129161    38359    760    2017-10-20 21:43:00    2017-10-20 21:43:00
129162    38359    762    2017-10-20 21:04:00    2017-10-20 21:04:00
129163    38359    916    2017-10-20 20:00:00    2017-10-20 20:00:00
129164    38359    504    2017-10-20 08:17:00    2017-10-20 08:17:00
129165    38360    758    2017-10-20 10:32:00    2017-10-20 10:32:00
129166    38360    639    2017-10-20 16:30:00    2017-10-20 16:30:00
129167    38360    777    2017-10-20 23:20:00    2017-10-20 23:20:00
129168    38360    651    2017-10-20 20:20:00    2017-10-20 20:20:00
129169    38360    853    2017-10-20 20:40:00    2017-10-20 20:40:00
129170    38361    937    2017-10-20 08:02:00    2017-10-20 08:02:00
129171    38361    654    2017-10-20 20:57:00    2017-10-20 20:57:00
129172    38361    847    2017-10-20 21:42:00    2017-10-20 21:42:00
129173    38361    559    2017-10-20 13:54:00    2017-10-20 13:54:00
129174    38361    951    2017-10-20 11:48:00    2017-10-20 11:48:00
129175    38362    856    2017-10-20 21:44:00    2017-10-20 21:44:00
129176    38362    508    2017-10-20 01:03:00    2017-10-20 01:03:00
129177    38362    731    2017-10-20 06:44:00    2017-10-20 06:44:00
129178    38362    482    2017-10-20 18:51:00    2017-10-20 18:51:00
129179    38362    525    2017-10-20 16:15:00    2017-10-20 16:15:00
129180    38363    566    2017-10-20 08:31:00    2017-10-20 08:31:00
129181    38363    837    2017-10-20 11:39:00    2017-10-20 11:39:00
129182    38363    927    2017-10-20 17:17:00    2017-10-20 17:17:00
129183    38363    899    2017-10-20 15:04:00    2017-10-20 15:04:00
129184    38363    533    2017-10-20 11:31:00    2017-10-20 11:31:00
129185    38364    557    2017-10-20 16:29:00    2017-10-20 16:29:00
129186    38364    956    2017-10-20 02:42:00    2017-10-20 02:42:00
129187    38364    838    2017-10-20 14:26:00    2017-10-20 14:26:00
129188    38364    690    2017-10-20 04:41:00    2017-10-20 04:41:00
129189    38364    814    2017-10-20 03:30:00    2017-10-20 03:30:00
129190    38365    651    2017-10-20 12:31:00    2017-10-20 12:31:00
129191    38365    635    2017-10-20 18:17:00    2017-10-20 18:17:00
129192    38365    585    2017-10-20 13:14:00    2017-10-20 13:14:00
129193    38365    651    2017-10-20 10:15:00    2017-10-20 10:15:00
129194    38365    947    2017-10-20 15:17:00    2017-10-20 15:17:00
129195    38366    563    2017-10-20 08:54:00    2017-10-20 08:54:00
129196    38366    464    2017-10-20 10:41:00    2017-10-20 10:41:00
129197    38366    843    2017-10-20 06:20:00    2017-10-20 06:20:00
129198    38366    916    2017-10-20 08:15:00    2017-10-20 08:15:00
129199    38366    787    2017-10-20 18:24:00    2017-10-20 18:24:00
129200    38367    953    2017-10-20 14:36:00    2017-10-20 14:36:00
129201    38367    473    2017-10-20 23:00:00    2017-10-20 23:00:00
129202    38367    719    2017-10-20 18:54:00    2017-10-20 18:54:00
129203    38367    944    2017-10-20 02:47:00    2017-10-20 02:47:00
129204    38367    655    2017-10-20 14:24:00    2017-10-20 14:24:00
129205    38368    737    2017-10-20 09:25:00    2017-10-20 09:25:00
129206    38368    931    2017-10-20 19:03:00    2017-10-20 19:03:00
129207    38368    703    2017-10-20 20:26:00    2017-10-20 20:26:00
129208    38368    946    2017-10-20 11:54:00    2017-10-20 11:54:00
129209    38368    559    2017-10-20 08:13:00    2017-10-20 08:13:00
129210    38369    779    2017-10-20 22:26:00    2017-10-20 22:26:00
129211    38369    804    2017-10-20 07:25:00    2017-10-20 07:25:00
129212    38369    889    2017-10-20 22:55:00    2017-10-20 22:55:00
129213    38369    943    2017-10-20 01:42:00    2017-10-20 01:42:00
129214    38369    863    2017-10-20 04:30:00    2017-10-20 04:30:00
129215    38370    796    2017-10-20 04:08:00    2017-10-20 04:08:00
129216    38370    776    2017-10-20 16:28:00    2017-10-20 16:28:00
129217    38370    625    2017-10-20 04:10:00    2017-10-20 04:10:00
129218    38370    549    2017-10-20 06:40:00    2017-10-20 06:40:00
129219    38370    796    2017-10-20 16:42:00    2017-10-20 16:42:00
129220    38371    629    2017-10-20 06:17:00    2017-10-20 06:17:00
129221    38371    756    2017-10-20 18:13:00    2017-10-20 18:13:00
129222    38371    616    2017-10-20 08:47:00    2017-10-20 08:47:00
129223    38371    731    2017-10-20 03:32:00    2017-10-20 03:32:00
129224    38371    945    2017-10-20 20:15:00    2017-10-20 20:15:00
129225    38372    615    2017-10-20 04:59:00    2017-10-20 04:59:00
129226    38372    743    2017-10-20 11:02:00    2017-10-20 11:02:00
129227    38372    758    2017-10-20 23:54:00    2017-10-20 23:54:00
129228    38372    768    2017-10-20 16:03:00    2017-10-20 16:03:00
129229    38372    951    2017-10-20 22:41:00    2017-10-20 22:41:00
129230    38373    865    2017-10-20 09:15:00    2017-10-20 09:15:00
129231    38373    893    2017-10-20 19:40:00    2017-10-20 19:40:00
129232    38373    674    2017-10-20 07:20:00    2017-10-20 07:20:00
129233    38373    624    2017-10-20 04:46:00    2017-10-20 04:46:00
129234    38373    497    2017-10-20 07:57:00    2017-10-20 07:57:00
129235    38374    621    2017-10-20 03:53:00    2017-10-20 03:53:00
129236    38374    493    2017-10-20 04:08:00    2017-10-20 04:08:00
129237    38374    666    2017-10-20 14:29:00    2017-10-20 14:29:00
129238    38374    935    2017-10-20 05:42:00    2017-10-20 05:42:00
129239    38374    652    2017-10-20 11:37:00    2017-10-20 11:37:00
129240    38375    826    2017-10-20 23:30:00    2017-10-20 23:30:00
129241    38375    869    2017-10-20 06:44:00    2017-10-20 06:44:00
129242    38375    902    2017-10-20 08:12:00    2017-10-20 08:12:00
129243    38375    558    2017-10-20 22:37:00    2017-10-20 22:37:00
129244    38375    671    2017-10-20 21:53:00    2017-10-20 21:53:00
129245    38376    767    2017-10-20 14:35:00    2017-10-20 14:35:00
129246    38376    939    2017-10-20 13:23:00    2017-10-20 13:23:00
129247    38376    898    2017-10-20 13:59:00    2017-10-20 13:59:00
129248    38376    588    2017-10-20 10:09:00    2017-10-20 10:09:00
129249    38376    766    2017-10-20 21:07:00    2017-10-20 21:07:00
129250    38377    779    2017-10-20 23:25:00    2017-10-20 23:25:00
129251    38377    890    2017-10-20 22:47:00    2017-10-20 22:47:00
129252    38377    473    2017-10-20 07:49:00    2017-10-20 07:49:00
129253    38377    797    2017-10-20 01:22:00    2017-10-20 01:22:00
129254    38377    603    2017-10-20 22:09:00    2017-10-20 22:09:00
129255    38378    942    2017-10-20 16:24:00    2017-10-20 16:24:00
129256    38378    801    2017-10-20 10:43:00    2017-10-20 10:43:00
129257    38378    473    2017-10-20 07:37:00    2017-10-20 07:37:00
129258    38378    747    2017-10-20 16:23:00    2017-10-20 16:23:00
129259    38378    912    2017-10-20 10:06:00    2017-10-20 10:06:00
129260    38379    471    2017-10-20 18:13:00    2017-10-20 18:13:00
129261    38379    766    2017-10-20 04:48:00    2017-10-20 04:48:00
129262    38379    630    2017-10-20 17:43:00    2017-10-20 17:43:00
129263    38379    854    2017-10-20 13:17:00    2017-10-20 13:17:00
129264    38379    801    2017-10-20 04:05:00    2017-10-20 04:05:00
129265    38380    860    2017-10-20 14:16:00    2017-10-20 14:16:00
129266    38380    687    2017-10-20 17:29:00    2017-10-20 17:29:00
129267    38380    514    2017-10-20 21:54:00    2017-10-20 21:54:00
129268    38380    770    2017-10-20 05:58:00    2017-10-20 05:58:00
129269    38380    939    2017-10-20 01:07:00    2017-10-20 01:07:00
129270    38381    691    2017-10-20 03:21:00    2017-10-20 03:21:00
129271    38381    805    2017-10-20 10:31:00    2017-10-20 10:31:00
129272    38381    852    2017-10-20 20:06:00    2017-10-20 20:06:00
129273    38381    586    2017-10-20 06:44:00    2017-10-20 06:44:00
129274    38381    955    2017-10-20 20:52:00    2017-10-20 20:52:00
129275    38382    826    2017-10-20 18:12:00    2017-10-20 18:12:00
129276    38382    923    2017-10-20 04:49:00    2017-10-20 04:49:00
129277    38382    677    2017-10-20 01:52:00    2017-10-20 01:52:00
129278    38382    932    2017-10-20 13:39:00    2017-10-20 13:39:00
129279    38382    806    2017-10-20 07:28:00    2017-10-20 07:28:00
129280    38383    818    2017-10-20 15:43:00    2017-10-20 15:43:00
129281    38383    499    2017-10-20 09:30:00    2017-10-20 09:30:00
129282    38383    925    2017-10-20 01:09:00    2017-10-20 01:09:00
129283    38383    720    2017-10-20 04:28:00    2017-10-20 04:28:00
129284    38383    719    2017-10-20 09:43:00    2017-10-20 09:43:00
129285    38384    873    2017-10-20 21:27:00    2017-10-20 21:27:00
129286    38384    610    2017-10-20 19:15:00    2017-10-20 19:15:00
129287    38384    588    2017-10-20 01:56:00    2017-10-20 01:56:00
129288    38384    653    2017-10-20 18:22:00    2017-10-20 18:22:00
129289    38384    933    2017-10-20 13:05:00    2017-10-20 13:05:00
129290    38385    775    2017-10-20 22:07:00    2017-10-20 22:07:00
129291    38385    683    2017-10-20 21:00:00    2017-10-20 21:00:00
129292    38385    696    2017-10-20 19:03:00    2017-10-20 19:03:00
129293    38385    587    2017-10-20 17:05:00    2017-10-20 17:05:00
129294    38385    608    2017-10-20 20:52:00    2017-10-20 20:52:00
129295    38386    831    2017-10-20 03:25:00    2017-10-20 03:25:00
129296    38386    862    2017-10-20 21:50:00    2017-10-20 21:50:00
129297    38386    714    2017-10-20 04:24:00    2017-10-20 04:24:00
129298    38386    741    2017-10-20 07:47:00    2017-10-20 07:47:00
129299    38386    582    2017-10-20 04:20:00    2017-10-20 04:20:00
129300    38387    778    2017-10-20 11:48:00    2017-10-20 11:48:00
129301    38387    524    2017-10-20 08:14:00    2017-10-20 08:14:00
129302    38387    800    2017-10-20 03:29:00    2017-10-20 03:29:00
129303    38387    768    2017-10-20 23:10:00    2017-10-20 23:10:00
129304    38387    759    2017-10-20 11:16:00    2017-10-20 11:16:00
129305    38388    856    2017-10-20 03:23:00    2017-10-20 03:23:00
129306    38388    768    2017-10-20 10:17:00    2017-10-20 10:17:00
129307    38388    794    2017-10-20 11:10:00    2017-10-20 11:10:00
129308    38388    627    2017-10-20 08:39:00    2017-10-20 08:39:00
129309    38388    552    2017-10-20 20:29:00    2017-10-20 20:29:00
129310    38389    900    2017-10-20 10:08:00    2017-10-20 10:08:00
129311    38389    802    2017-10-20 09:54:00    2017-10-20 09:54:00
129312    38389    961    2017-10-20 18:50:00    2017-10-20 18:50:00
129313    38389    959    2017-10-20 12:15:00    2017-10-20 12:15:00
129314    38389    827    2017-10-20 09:30:00    2017-10-20 09:30:00
129315    38390    505    2017-10-20 20:53:00    2017-10-20 20:53:00
129316    38390    513    2017-10-20 18:27:00    2017-10-20 18:27:00
129317    38390    696    2017-10-20 23:29:00    2017-10-20 23:29:00
129318    38390    869    2017-10-20 09:22:00    2017-10-20 09:22:00
129319    38390    619    2017-10-20 10:55:00    2017-10-20 10:55:00
129320    38391    597    2017-10-20 08:00:00    2017-10-20 08:00:00
129321    38391    492    2017-10-20 16:28:00    2017-10-20 16:28:00
129322    38391    847    2017-10-20 14:58:00    2017-10-20 14:58:00
129323    38391    734    2017-10-20 04:02:00    2017-10-20 04:02:00
129324    38391    780    2017-10-20 18:47:00    2017-10-20 18:47:00
129325    38392    763    2017-10-20 09:58:00    2017-10-20 09:58:00
129326    38392    895    2017-10-20 11:31:00    2017-10-20 11:31:00
129327    38392    717    2017-10-20 16:19:00    2017-10-20 16:19:00
129328    38392    921    2017-10-20 09:17:00    2017-10-20 09:17:00
129329    38392    778    2017-10-20 03:53:00    2017-10-20 03:53:00
129330    38393    528    2017-10-20 11:43:00    2017-10-20 11:43:00
129331    38393    736    2017-10-20 16:11:00    2017-10-20 16:11:00
129332    38393    588    2017-10-20 20:16:00    2017-10-20 20:16:00
129333    38393    786    2017-10-20 11:04:00    2017-10-20 11:04:00
129334    38393    678    2017-10-20 06:54:00    2017-10-20 06:54:00
129335    38394    951    2017-10-20 08:21:00    2017-10-20 08:21:00
129336    38394    539    2017-10-20 18:01:00    2017-10-20 18:01:00
129337    38394    723    2017-10-20 08:50:00    2017-10-20 08:50:00
129338    38394    515    2017-10-20 18:42:00    2017-10-20 18:42:00
129339    38394    890    2017-10-20 11:19:00    2017-10-20 11:19:00
129340    38395    523    2017-10-20 06:50:00    2017-10-20 06:50:00
129341    38395    957    2017-10-20 07:04:00    2017-10-20 07:04:00
129342    38395    855    2017-10-20 23:32:00    2017-10-20 23:32:00
129343    38395    932    2017-10-20 08:10:00    2017-10-20 08:10:00
129344    38395    847    2017-10-20 15:31:00    2017-10-20 15:31:00
129345    38396    801    2017-10-20 05:44:00    2017-10-20 05:44:00
129346    38396    607    2017-10-20 04:18:00    2017-10-20 04:18:00
129347    38396    921    2017-10-20 08:34:00    2017-10-20 08:34:00
129348    38396    839    2017-10-20 20:51:00    2017-10-20 20:51:00
129349    38396    938    2017-10-20 23:10:00    2017-10-20 23:10:00
129350    38397    884    2017-10-20 20:01:00    2017-10-20 20:01:00
129351    38397    930    2017-10-20 03:37:00    2017-10-20 03:37:00
129352    38397    773    2017-10-20 23:09:00    2017-10-20 23:09:00
129353    38397    735    2017-10-20 04:17:00    2017-10-20 04:17:00
129354    38397    960    2017-10-20 15:51:00    2017-10-20 15:51:00
129355    38398    663    2017-10-20 23:20:00    2017-10-20 23:20:00
129356    38398    797    2017-10-20 11:11:00    2017-10-20 11:11:00
129357    38398    713    2017-10-20 08:12:00    2017-10-20 08:12:00
129358    38398    643    2017-10-20 14:02:00    2017-10-20 14:02:00
129359    38398    533    2017-10-20 14:51:00    2017-10-20 14:51:00
129360    38399    860    2017-10-20 22:53:00    2017-10-20 22:53:00
129361    38399    518    2017-10-20 15:48:00    2017-10-20 15:48:00
129362    38399    625    2017-10-20 12:58:00    2017-10-20 12:58:00
129363    38399    776    2017-10-20 08:44:00    2017-10-20 08:44:00
129364    38399    592    2017-10-20 09:35:00    2017-10-20 09:35:00
129365    38400    610    2017-10-20 06:41:00    2017-10-20 06:41:00
129366    38400    853    2017-10-20 12:35:00    2017-10-20 12:35:00
129367    38400    826    2017-10-20 10:52:00    2017-10-20 10:52:00
129368    38400    874    2017-10-20 03:18:00    2017-10-20 03:18:00
129369    38400    494    2017-10-20 21:34:00    2017-10-20 21:34:00
129370    38401    865    2017-10-21 06:24:00    2017-10-21 06:24:00
129371    38401    959    2017-10-21 17:16:00    2017-10-21 17:16:00
129372    38401    960    2017-10-21 12:36:00    2017-10-21 12:36:00
129373    38401    842    2017-10-21 05:23:00    2017-10-21 05:23:00
129374    38401    474    2017-10-21 01:31:00    2017-10-21 01:31:00
129375    38402    607    2017-10-21 03:52:00    2017-10-21 03:52:00
129376    38402    519    2017-10-21 04:05:00    2017-10-21 04:05:00
129377    38402    927    2017-10-21 10:10:00    2017-10-21 10:10:00
129378    38402    596    2017-10-21 22:27:00    2017-10-21 22:27:00
129379    38402    835    2017-10-21 21:44:00    2017-10-21 21:44:00
129380    38403    836    2017-10-21 19:21:00    2017-10-21 19:21:00
129381    38403    515    2017-10-21 12:46:00    2017-10-21 12:46:00
129382    38403    469    2017-10-21 15:01:00    2017-10-21 15:01:00
129383    38403    463    2017-10-21 19:40:00    2017-10-21 19:40:00
129384    38403    661    2017-10-21 14:26:00    2017-10-21 14:26:00
129385    38404    609    2017-10-21 23:25:00    2017-10-21 23:25:00
129386    38404    785    2017-10-21 12:18:00    2017-10-21 12:18:00
129387    38404    689    2017-10-21 14:15:00    2017-10-21 14:15:00
129388    38404    600    2017-10-21 13:50:00    2017-10-21 13:50:00
129389    38404    645    2017-10-21 17:31:00    2017-10-21 17:31:00
129390    38405    757    2017-10-21 07:40:00    2017-10-21 07:40:00
129391    38405    483    2017-10-21 08:03:00    2017-10-21 08:03:00
129392    38405    679    2017-10-21 12:05:00    2017-10-21 12:05:00
129393    38405    903    2017-10-21 08:23:00    2017-10-21 08:23:00
129394    38405    860    2017-10-21 13:27:00    2017-10-21 13:27:00
129395    38406    954    2017-10-21 13:44:00    2017-10-21 13:44:00
129396    38406    774    2017-10-21 04:31:00    2017-10-21 04:31:00
129397    38406    571    2017-10-21 18:56:00    2017-10-21 18:56:00
129398    38406    746    2017-10-21 13:06:00    2017-10-21 13:06:00
129399    38406    933    2017-10-21 19:13:00    2017-10-21 19:13:00
129400    38407    589    2017-10-21 07:21:00    2017-10-21 07:21:00
129401    38407    771    2017-10-21 01:24:00    2017-10-21 01:24:00
129402    38407    578    2017-10-21 11:44:00    2017-10-21 11:44:00
129403    38407    671    2017-10-21 10:33:00    2017-10-21 10:33:00
129404    38407    672    2017-10-21 04:15:00    2017-10-21 04:15:00
129405    38408    709    2017-10-21 13:05:00    2017-10-21 13:05:00
129406    38408    712    2017-10-21 10:50:00    2017-10-21 10:50:00
129407    38408    603    2017-10-21 14:58:00    2017-10-21 14:58:00
129408    38408    823    2017-10-21 05:59:00    2017-10-21 05:59:00
129409    38408    863    2017-10-21 10:24:00    2017-10-21 10:24:00
129410    38409    923    2017-10-21 09:10:00    2017-10-21 09:10:00
129411    38409    817    2017-10-21 02:52:00    2017-10-21 02:52:00
129412    38409    945    2017-10-21 21:30:00    2017-10-21 21:30:00
129413    38409    846    2017-10-21 10:56:00    2017-10-21 10:56:00
129414    38409    810    2017-10-21 16:14:00    2017-10-21 16:14:00
129415    38410    646    2017-10-21 18:27:00    2017-10-21 18:27:00
129416    38410    633    2017-10-21 09:40:00    2017-10-21 09:40:00
129417    38410    881    2017-10-21 10:08:00    2017-10-21 10:08:00
129418    38410    836    2017-10-21 10:18:00    2017-10-21 10:18:00
129419    38410    793    2017-10-21 11:05:00    2017-10-21 11:05:00
129420    38411    648    2017-10-21 07:15:00    2017-10-21 07:15:00
129421    38411    931    2017-10-21 19:37:00    2017-10-21 19:37:00
129422    38411    475    2017-10-21 17:48:00    2017-10-21 17:48:00
129423    38411    780    2017-10-21 22:12:00    2017-10-21 22:12:00
129424    38411    672    2017-10-21 05:12:00    2017-10-21 05:12:00
129425    38412    774    2017-10-21 04:03:00    2017-10-21 04:03:00
129426    38412    885    2017-10-21 18:58:00    2017-10-21 18:58:00
129427    38412    635    2017-10-21 02:10:00    2017-10-21 02:10:00
129428    38412    572    2017-10-21 09:50:00    2017-10-21 09:50:00
129429    38412    576    2017-10-21 07:38:00    2017-10-21 07:38:00
129430    38413    489    2017-10-21 01:59:00    2017-10-21 01:59:00
129431    38413    601    2017-10-21 20:11:00    2017-10-21 20:11:00
129432    38413    702    2017-10-21 17:49:00    2017-10-21 17:49:00
129433    38413    752    2017-10-21 01:24:00    2017-10-21 01:24:00
129434    38413    863    2017-10-21 06:24:00    2017-10-21 06:24:00
129435    38414    892    2017-10-21 09:19:00    2017-10-21 09:19:00
129436    38414    744    2017-10-21 11:10:00    2017-10-21 11:10:00
129437    38414    897    2017-10-21 05:18:00    2017-10-21 05:18:00
129438    38414    804    2017-10-21 14:45:00    2017-10-21 14:45:00
129439    38414    476    2017-10-21 12:01:00    2017-10-21 12:01:00
129440    38415    880    2017-10-21 11:01:00    2017-10-21 11:01:00
129441    38415    596    2017-10-21 02:05:00    2017-10-21 02:05:00
129442    38415    774    2017-10-21 07:15:00    2017-10-21 07:15:00
129443    38415    820    2017-10-21 03:25:00    2017-10-21 03:25:00
129444    38415    665    2017-10-21 16:14:00    2017-10-21 16:14:00
129445    38416    514    2017-10-21 14:46:00    2017-10-21 14:46:00
129446    38416    699    2017-10-21 02:20:00    2017-10-21 02:20:00
129447    38416    478    2017-10-21 08:17:00    2017-10-21 08:17:00
129448    38416    465    2017-10-21 20:01:00    2017-10-21 20:01:00
129449    38416    746    2017-10-21 10:10:00    2017-10-21 10:10:00
129450    38417    951    2017-10-21 19:22:00    2017-10-21 19:22:00
129451    38417    494    2017-10-21 05:19:00    2017-10-21 05:19:00
129452    38417    923    2017-10-21 02:57:00    2017-10-21 02:57:00
129453    38417    825    2017-10-21 21:59:00    2017-10-21 21:59:00
129454    38417    746    2017-10-21 05:33:00    2017-10-21 05:33:00
129455    38418    670    2017-10-21 04:33:00    2017-10-21 04:33:00
129456    38418    630    2017-10-21 22:37:00    2017-10-21 22:37:00
129457    38418    464    2017-10-21 10:36:00    2017-10-21 10:36:00
129458    38418    693    2017-10-21 18:02:00    2017-10-21 18:02:00
129459    38418    771    2017-10-21 09:38:00    2017-10-21 09:38:00
129460    38419    522    2017-10-21 06:34:00    2017-10-21 06:34:00
129461    38419    576    2017-10-21 23:41:00    2017-10-21 23:41:00
129462    38419    935    2017-10-21 07:03:00    2017-10-21 07:03:00
129463    38419    839    2017-10-21 02:33:00    2017-10-21 02:33:00
129464    38419    737    2017-10-21 01:09:00    2017-10-21 01:09:00
129465    38420    663    2017-10-21 08:09:00    2017-10-21 08:09:00
129466    38420    505    2017-10-21 12:45:00    2017-10-21 12:45:00
129467    38420    513    2017-10-21 05:58:00    2017-10-21 05:58:00
129468    38420    587    2017-10-21 16:32:00    2017-10-21 16:32:00
129469    38420    910    2017-10-21 01:50:00    2017-10-21 01:50:00
129470    38421    708    2017-10-21 01:43:00    2017-10-21 01:43:00
129471    38421    712    2017-10-21 02:53:00    2017-10-21 02:53:00
129472    38421    810    2017-10-21 12:37:00    2017-10-21 12:37:00
129473    38421    728    2017-10-21 02:16:00    2017-10-21 02:16:00
129474    38421    792    2017-10-21 20:23:00    2017-10-21 20:23:00
129475    38422    830    2017-10-21 21:32:00    2017-10-21 21:32:00
129476    38422    862    2017-10-21 16:21:00    2017-10-21 16:21:00
129477    38422    669    2017-10-21 02:56:00    2017-10-21 02:56:00
129478    38422    495    2017-10-21 13:21:00    2017-10-21 13:21:00
129479    38422    524    2017-10-21 12:20:00    2017-10-21 12:20:00
129480    38423    920    2017-10-21 20:20:00    2017-10-21 20:20:00
129481    38423    615    2017-10-21 22:47:00    2017-10-21 22:47:00
129482    38423    887    2017-10-21 22:15:00    2017-10-21 22:15:00
129483    38423    725    2017-10-21 13:28:00    2017-10-21 13:28:00
129484    38423    771    2017-10-21 16:14:00    2017-10-21 16:14:00
129485    38424    598    2017-10-22 20:30:00    2017-10-22 20:30:00
129486    38424    710    2017-10-22 18:02:00    2017-10-22 18:02:00
129487    38424    564    2017-10-22 21:26:00    2017-10-22 21:26:00
129488    38424    931    2017-10-22 14:56:00    2017-10-22 14:56:00
129489    38424    718    2017-10-22 18:59:00    2017-10-22 18:59:00
129490    38425    822    2017-10-22 04:42:00    2017-10-22 04:42:00
129491    38425    684    2017-10-22 04:13:00    2017-10-22 04:13:00
129492    38425    574    2017-10-22 02:51:00    2017-10-22 02:51:00
129493    38425    843    2017-10-22 19:55:00    2017-10-22 19:55:00
129494    38425    804    2017-10-22 08:13:00    2017-10-22 08:13:00
129495    38426    851    2017-10-22 11:23:00    2017-10-22 11:23:00
129496    38426    664    2017-10-22 04:48:00    2017-10-22 04:48:00
129497    38426    551    2017-10-22 11:01:00    2017-10-22 11:01:00
129498    38426    706    2017-10-22 17:25:00    2017-10-22 17:25:00
129499    38426    465    2017-10-22 02:05:00    2017-10-22 02:05:00
129500    38427    796    2017-10-22 06:23:00    2017-10-22 06:23:00
129501    38427    573    2017-10-22 06:54:00    2017-10-22 06:54:00
129502    38427    528    2017-10-22 10:09:00    2017-10-22 10:09:00
129503    38427    631    2017-10-22 19:52:00    2017-10-22 19:52:00
129504    38427    788    2017-10-22 17:43:00    2017-10-22 17:43:00
129505    38428    893    2017-10-22 17:53:00    2017-10-22 17:53:00
129506    38428    758    2017-10-22 03:34:00    2017-10-22 03:34:00
129507    38428    801    2017-10-22 11:11:00    2017-10-22 11:11:00
129508    38428    746    2017-10-22 08:34:00    2017-10-22 08:34:00
129509    38428    607    2017-10-22 23:53:00    2017-10-22 23:53:00
129510    38429    910    2017-10-22 07:38:00    2017-10-22 07:38:00
129511    38429    816    2017-10-22 06:23:00    2017-10-22 06:23:00
129512    38429    814    2017-10-22 14:54:00    2017-10-22 14:54:00
129513    38429    812    2017-10-22 18:30:00    2017-10-22 18:30:00
129514    38429    704    2017-10-22 09:03:00    2017-10-22 09:03:00
129515    38430    832    2017-10-22 10:54:00    2017-10-22 10:54:00
129516    38430    483    2017-10-22 09:57:00    2017-10-22 09:57:00
129517    38430    937    2017-10-22 03:52:00    2017-10-22 03:52:00
129518    38430    789    2017-10-22 20:59:00    2017-10-22 20:59:00
129519    38430    463    2017-10-22 15:47:00    2017-10-22 15:47:00
129520    38431    533    2017-10-23 17:57:00    2017-10-23 17:57:00
129521    38431    910    2017-10-23 19:41:00    2017-10-23 19:41:00
129522    38431    560    2017-10-23 19:30:00    2017-10-23 19:30:00
129523    38431    651    2017-10-23 05:53:00    2017-10-23 05:53:00
129524    38431    487    2017-10-23 09:52:00    2017-10-23 09:52:00
129525    38432    700    2017-10-23 19:33:00    2017-10-23 19:33:00
129526    38432    631    2017-10-23 10:32:00    2017-10-23 10:32:00
129527    38432    581    2017-10-23 20:31:00    2017-10-23 20:31:00
129528    38432    604    2017-10-23 18:52:00    2017-10-23 18:52:00
129529    38432    841    2017-10-23 15:40:00    2017-10-23 15:40:00
129530    38433    959    2017-10-23 01:05:00    2017-10-23 01:05:00
129531    38433    616    2017-10-23 20:08:00    2017-10-23 20:08:00
129532    38433    940    2017-10-23 05:53:00    2017-10-23 05:53:00
129533    38433    527    2017-10-23 12:33:00    2017-10-23 12:33:00
129534    38433    690    2017-10-23 01:18:00    2017-10-23 01:18:00
129535    38434    517    2017-10-23 09:39:00    2017-10-23 09:39:00
129536    38434    695    2017-10-23 03:11:00    2017-10-23 03:11:00
129537    38434    899    2017-10-23 18:45:00    2017-10-23 18:45:00
129538    38434    578    2017-10-23 23:57:00    2017-10-23 23:57:00
129539    38434    632    2017-10-23 16:44:00    2017-10-23 16:44:00
129540    38435    708    2017-10-23 18:37:00    2017-10-23 18:37:00
129541    38435    522    2017-10-23 15:55:00    2017-10-23 15:55:00
129542    38435    593    2017-10-23 05:48:00    2017-10-23 05:48:00
129543    38435    879    2017-10-23 17:49:00    2017-10-23 17:49:00
129544    38435    463    2017-10-23 12:03:00    2017-10-23 12:03:00
129545    38436    957    2017-10-23 11:14:00    2017-10-23 11:14:00
129546    38436    904    2017-10-23 12:24:00    2017-10-23 12:24:00
129547    38436    697    2017-10-23 18:20:00    2017-10-23 18:20:00
129548    38436    641    2017-10-23 02:22:00    2017-10-23 02:22:00
129549    38436    884    2017-10-23 18:16:00    2017-10-23 18:16:00
129550    38437    945    2017-10-23 06:16:00    2017-10-23 06:16:00
129551    38437    640    2017-10-23 15:53:00    2017-10-23 15:53:00
129552    38437    897    2017-10-23 16:00:00    2017-10-23 16:00:00
129553    38437    873    2017-10-23 16:04:00    2017-10-23 16:04:00
129554    38437    526    2017-10-23 16:21:00    2017-10-23 16:21:00
129555    38438    474    2017-10-23 21:42:00    2017-10-23 21:42:00
129556    38438    866    2017-10-23 20:56:00    2017-10-23 20:56:00
129557    38438    749    2017-10-23 17:01:00    2017-10-23 17:01:00
129558    38438    621    2017-10-23 14:14:00    2017-10-23 14:14:00
129559    38438    807    2017-10-23 02:07:00    2017-10-23 02:07:00
129560    38439    765    2017-10-23 23:12:00    2017-10-23 23:12:00
129561    38439    955    2017-10-23 01:13:00    2017-10-23 01:13:00
129562    38439    913    2017-10-23 17:12:00    2017-10-23 17:12:00
129563    38439    612    2017-10-23 02:51:00    2017-10-23 02:51:00
129564    38439    919    2017-10-23 17:38:00    2017-10-23 17:38:00
129565    38440    687    2017-10-23 22:47:00    2017-10-23 22:47:00
129566    38440    858    2017-10-23 01:05:00    2017-10-23 01:05:00
129567    38440    927    2017-10-23 21:30:00    2017-10-23 21:30:00
129568    38440    581    2017-10-23 21:55:00    2017-10-23 21:55:00
129569    38440    726    2017-10-23 16:38:00    2017-10-23 16:38:00
129570    38441    629    2017-10-23 06:18:00    2017-10-23 06:18:00
129571    38441    693    2017-10-23 13:02:00    2017-10-23 13:02:00
129572    38441    798    2017-10-23 10:37:00    2017-10-23 10:37:00
129573    38441    486    2017-10-23 21:16:00    2017-10-23 21:16:00
129574    38441    754    2017-10-23 22:24:00    2017-10-23 22:24:00
129575    38442    788    2017-10-23 01:04:00    2017-10-23 01:04:00
129576    38442    917    2017-10-23 15:28:00    2017-10-23 15:28:00
129577    38442    691    2017-10-23 17:56:00    2017-10-23 17:56:00
129578    38442    478    2017-10-23 01:58:00    2017-10-23 01:58:00
129579    38442    908    2017-10-23 16:45:00    2017-10-23 16:45:00
129580    38443    706    2017-10-23 11:04:00    2017-10-23 11:04:00
129581    38443    650    2017-10-23 21:50:00    2017-10-23 21:50:00
129582    38443    582    2017-10-23 20:53:00    2017-10-23 20:53:00
129583    38443    465    2017-10-23 18:02:00    2017-10-23 18:02:00
129584    38443    784    2017-10-23 18:24:00    2017-10-23 18:24:00
129585    38444    874    2017-10-23 17:31:00    2017-10-23 17:31:00
129586    38444    748    2017-10-23 04:47:00    2017-10-23 04:47:00
129587    38444    790    2017-10-23 23:22:00    2017-10-23 23:22:00
129588    38444    573    2017-10-23 01:55:00    2017-10-23 01:55:00
129589    38444    838    2017-10-23 15:36:00    2017-10-23 15:36:00
129590    38445    617    2017-10-23 21:00:00    2017-10-23 21:00:00
129591    38445    810    2017-10-23 17:54:00    2017-10-23 17:54:00
129592    38445    696    2017-10-23 23:22:00    2017-10-23 23:22:00
129593    38445    697    2017-10-23 19:34:00    2017-10-23 19:34:00
129594    38445    522    2017-10-23 07:09:00    2017-10-23 07:09:00
129595    38446    502    2017-10-23 23:07:00    2017-10-23 23:07:00
129596    38446    487    2017-10-23 10:44:00    2017-10-23 10:44:00
129597    38446    932    2017-10-23 23:51:00    2017-10-23 23:51:00
129598    38446    592    2017-10-23 16:15:00    2017-10-23 16:15:00
129599    38446    579    2017-10-23 22:48:00    2017-10-23 22:48:00
129600    38447    648    2017-10-23 07:24:00    2017-10-23 07:24:00
129601    38447    839    2017-10-23 17:18:00    2017-10-23 17:18:00
129602    38447    867    2017-10-23 09:18:00    2017-10-23 09:18:00
129603    38447    546    2017-10-23 18:17:00    2017-10-23 18:17:00
129604    38447    479    2017-10-23 23:34:00    2017-10-23 23:34:00
129605    38448    485    2017-10-23 05:38:00    2017-10-23 05:38:00
129606    38448    494    2017-10-23 16:47:00    2017-10-23 16:47:00
129607    38448    665    2017-10-23 13:56:00    2017-10-23 13:56:00
129608    38448    604    2017-10-23 12:21:00    2017-10-23 12:21:00
129609    38448    589    2017-10-23 05:06:00    2017-10-23 05:06:00
129610    38449    489    2017-10-23 11:20:00    2017-10-23 11:20:00
129611    38449    825    2017-10-23 21:27:00    2017-10-23 21:27:00
129612    38449    535    2017-10-23 04:34:00    2017-10-23 04:34:00
129613    38449    865    2017-10-23 13:08:00    2017-10-23 13:08:00
129614    38449    562    2017-10-23 05:27:00    2017-10-23 05:27:00
129615    38450    894    2017-10-23 13:20:00    2017-10-23 13:20:00
129616    38450    512    2017-10-23 19:09:00    2017-10-23 19:09:00
129617    38450    770    2017-10-23 10:41:00    2017-10-23 10:41:00
129618    38450    846    2017-10-23 23:42:00    2017-10-23 23:42:00
129619    38450    862    2017-10-23 17:38:00    2017-10-23 17:38:00
129620    38451    491    2017-10-23 13:46:00    2017-10-23 13:46:00
129621    38451    600    2017-10-23 18:56:00    2017-10-23 18:56:00
129622    38451    865    2017-10-23 17:23:00    2017-10-23 17:23:00
129623    38451    510    2017-10-23 12:09:00    2017-10-23 12:09:00
129624    38451    750    2017-10-23 08:22:00    2017-10-23 08:22:00
129625    38452    621    2017-10-23 01:04:00    2017-10-23 01:04:00
129626    38452    495    2017-10-23 15:06:00    2017-10-23 15:06:00
129627    38452    815    2017-10-23 17:23:00    2017-10-23 17:23:00
129628    38452    768    2017-10-23 10:13:00    2017-10-23 10:13:00
129629    38452    640    2017-10-23 05:55:00    2017-10-23 05:55:00
129630    38453    842    2017-10-23 08:43:00    2017-10-23 08:43:00
129631    38453    756    2017-10-23 01:32:00    2017-10-23 01:32:00
129632    38453    885    2017-10-23 18:30:00    2017-10-23 18:30:00
129633    38453    704    2017-10-23 10:45:00    2017-10-23 10:45:00
129634    38453    902    2017-10-23 06:06:00    2017-10-23 06:06:00
129635    38454    567    2017-10-23 09:34:00    2017-10-23 09:34:00
129636    38454    880    2017-10-23 11:19:00    2017-10-23 11:19:00
129637    38454    541    2017-10-23 22:07:00    2017-10-23 22:07:00
129638    38454    584    2017-10-23 01:31:00    2017-10-23 01:31:00
129639    38454    644    2017-10-23 08:03:00    2017-10-23 08:03:00
129640    38455    677    2017-10-23 21:09:00    2017-10-23 21:09:00
129641    38455    927    2017-10-23 20:09:00    2017-10-23 20:09:00
129642    38455    627    2017-10-23 16:56:00    2017-10-23 16:56:00
129643    38455    580    2017-10-23 16:56:00    2017-10-23 16:56:00
129644    38455    542    2017-10-23 09:55:00    2017-10-23 09:55:00
129645    38456    886    2017-10-23 02:07:00    2017-10-23 02:07:00
129646    38456    691    2017-10-23 02:15:00    2017-10-23 02:15:00
129647    38456    812    2017-10-23 23:28:00    2017-10-23 23:28:00
129648    38456    697    2017-10-23 18:09:00    2017-10-23 18:09:00
129649    38456    853    2017-10-23 02:28:00    2017-10-23 02:28:00
129650    38457    944    2017-10-23 12:19:00    2017-10-23 12:19:00
129651    38457    616    2017-10-23 05:15:00    2017-10-23 05:15:00
129652    38457    761    2017-10-23 16:04:00    2017-10-23 16:04:00
129653    38457    538    2017-10-23 20:07:00    2017-10-23 20:07:00
129654    38457    643    2017-10-23 20:42:00    2017-10-23 20:42:00
129655    38458    614    2017-10-23 01:07:00    2017-10-23 01:07:00
129656    38458    937    2017-10-23 18:10:00    2017-10-23 18:10:00
129657    38458    831    2017-10-23 14:36:00    2017-10-23 14:36:00
129658    38458    542    2017-10-23 11:21:00    2017-10-23 11:21:00
129659    38458    615    2017-10-23 02:13:00    2017-10-23 02:13:00
129660    38459    914    2017-10-23 18:52:00    2017-10-23 18:52:00
129661    38459    526    2017-10-23 13:15:00    2017-10-23 13:15:00
129662    38459    697    2017-10-23 08:55:00    2017-10-23 08:55:00
129663    38459    643    2017-10-23 03:00:00    2017-10-23 03:00:00
129664    38459    794    2017-10-23 12:55:00    2017-10-23 12:55:00
129665    38460    873    2017-10-23 15:59:00    2017-10-23 15:59:00
129666    38460    643    2017-10-23 07:37:00    2017-10-23 07:37:00
129667    38460    576    2017-10-23 10:29:00    2017-10-23 10:29:00
129668    38460    913    2017-10-23 19:38:00    2017-10-23 19:38:00
129669    38460    647    2017-10-23 04:58:00    2017-10-23 04:58:00
129670    38461    726    2017-10-23 18:50:00    2017-10-23 18:50:00
129671    38461    642    2017-10-23 21:55:00    2017-10-23 21:55:00
129672    38461    535    2017-10-23 11:33:00    2017-10-23 11:33:00
129673    38461    673    2017-10-23 20:22:00    2017-10-23 20:22:00
129674    38461    786    2017-10-23 17:53:00    2017-10-23 17:53:00
129675    38462    620    2017-10-23 03:35:00    2017-10-23 03:35:00
129676    38462    764    2017-10-23 17:16:00    2017-10-23 17:16:00
129677    38462    856    2017-10-23 02:31:00    2017-10-23 02:31:00
129678    38462    538    2017-10-23 06:54:00    2017-10-23 06:54:00
129679    38462    864    2017-10-23 12:57:00    2017-10-23 12:57:00
129680    38463    480    2017-10-23 12:35:00    2017-10-23 12:35:00
129681    38463    639    2017-10-23 15:44:00    2017-10-23 15:44:00
129682    38463    700    2017-10-23 07:11:00    2017-10-23 07:11:00
129683    38463    579    2017-10-23 23:55:00    2017-10-23 23:55:00
129684    38463    924    2017-10-23 05:08:00    2017-10-23 05:08:00
129685    38464    701    2017-10-23 02:33:00    2017-10-23 02:33:00
129686    38464    551    2017-10-23 20:01:00    2017-10-23 20:01:00
129687    38464    606    2017-10-23 15:10:00    2017-10-23 15:10:00
129688    38464    523    2017-10-23 11:13:00    2017-10-23 11:13:00
129689    38464    822    2017-10-23 06:15:00    2017-10-23 06:15:00
129690    38465    516    2017-10-23 04:16:00    2017-10-23 04:16:00
129691    38465    684    2017-10-23 18:52:00    2017-10-23 18:52:00
129692    38465    835    2017-10-23 13:37:00    2017-10-23 13:37:00
129693    38465    711    2017-10-23 06:22:00    2017-10-23 06:22:00
129694    38465    516    2017-10-23 02:34:00    2017-10-23 02:34:00
129695    38466    834    2017-10-23 23:15:00    2017-10-23 23:15:00
129696    38466    762    2017-10-23 08:15:00    2017-10-23 08:15:00
129697    38466    761    2017-10-23 21:13:00    2017-10-23 21:13:00
129698    38466    574    2017-10-23 05:17:00    2017-10-23 05:17:00
129699    38466    619    2017-10-23 17:33:00    2017-10-23 17:33:00
129700    38467    524    2017-10-23 19:23:00    2017-10-23 19:23:00
129701    38467    847    2017-10-23 17:38:00    2017-10-23 17:38:00
129702    38467    716    2017-10-23 11:41:00    2017-10-23 11:41:00
129703    38467    641    2017-10-23 07:43:00    2017-10-23 07:43:00
129704    38467    779    2017-10-23 10:58:00    2017-10-23 10:58:00
129705    38468    554    2017-10-23 19:50:00    2017-10-23 19:50:00
129706    38468    839    2017-10-23 07:39:00    2017-10-23 07:39:00
129707    38468    585    2017-10-23 18:52:00    2017-10-23 18:52:00
129708    38468    884    2017-10-23 05:50:00    2017-10-23 05:50:00
129709    38468    954    2017-10-23 06:04:00    2017-10-23 06:04:00
129710    38469    472    2017-10-23 11:14:00    2017-10-23 11:14:00
129711    38469    917    2017-10-23 17:24:00    2017-10-23 17:24:00
129712    38469    823    2017-10-23 07:52:00    2017-10-23 07:52:00
129713    38469    688    2017-10-23 12:12:00    2017-10-23 12:12:00
129714    38469    554    2017-10-23 09:18:00    2017-10-23 09:18:00
129715    38470    845    2017-10-23 15:30:00    2017-10-23 15:30:00
129716    38470    830    2017-10-23 10:21:00    2017-10-23 10:21:00
129717    38470    950    2017-10-23 17:37:00    2017-10-23 17:37:00
129718    38470    742    2017-10-23 03:38:00    2017-10-23 03:38:00
129719    38470    757    2017-10-23 15:34:00    2017-10-23 15:34:00
129720    38471    896    2017-10-23 15:43:00    2017-10-23 15:43:00
129721    38471    473    2017-10-23 18:21:00    2017-10-23 18:21:00
129722    38471    637    2017-10-23 21:47:00    2017-10-23 21:47:00
129723    38471    533    2017-10-23 22:52:00    2017-10-23 22:52:00
129724    38471    905    2017-10-23 12:11:00    2017-10-23 12:11:00
129725    38472    745    2017-10-23 17:03:00    2017-10-23 17:03:00
129726    38472    645    2017-10-23 22:45:00    2017-10-23 22:45:00
129727    38472    524    2017-10-23 17:59:00    2017-10-23 17:59:00
129728    38472    503    2017-10-23 18:07:00    2017-10-23 18:07:00
129729    38472    776    2017-10-23 03:54:00    2017-10-23 03:54:00
129730    38473    862    2017-10-23 14:12:00    2017-10-23 14:12:00
129731    38473    775    2017-10-23 07:37:00    2017-10-23 07:37:00
129732    38473    799    2017-10-23 10:40:00    2017-10-23 10:40:00
129733    38473    831    2017-10-23 23:05:00    2017-10-23 23:05:00
129734    38473    712    2017-10-23 03:22:00    2017-10-23 03:22:00
129735    38474    672    2017-10-23 23:20:00    2017-10-23 23:20:00
129736    38474    765    2017-10-23 21:09:00    2017-10-23 21:09:00
129737    38474    892    2017-10-23 21:21:00    2017-10-23 21:21:00
129738    38474    667    2017-10-23 15:21:00    2017-10-23 15:21:00
129739    38474    478    2017-10-23 13:22:00    2017-10-23 13:22:00
129740    38475    918    2017-10-23 07:10:00    2017-10-23 07:10:00
129741    38475    700    2017-10-23 19:07:00    2017-10-23 19:07:00
129742    38475    480    2017-10-23 22:01:00    2017-10-23 22:01:00
129743    38475    568    2017-10-23 09:07:00    2017-10-23 09:07:00
129744    38475    780    2017-10-23 07:16:00    2017-10-23 07:16:00
129745    38476    740    2017-10-23 16:49:00    2017-10-23 16:49:00
129746    38476    796    2017-10-23 14:46:00    2017-10-23 14:46:00
129747    38476    499    2017-10-23 03:36:00    2017-10-23 03:36:00
129748    38476    957    2017-10-23 11:07:00    2017-10-23 11:07:00
129749    38476    900    2017-10-23 18:00:00    2017-10-23 18:00:00
129750    38477    643    2017-10-23 05:03:00    2017-10-23 05:03:00
129751    38477    514    2017-10-23 12:33:00    2017-10-23 12:33:00
129752    38477    857    2017-10-23 23:53:00    2017-10-23 23:53:00
129753    38477    877    2017-10-23 11:42:00    2017-10-23 11:42:00
129754    38477    889    2017-10-23 21:02:00    2017-10-23 21:02:00
129755    38478    766    2017-10-23 22:42:00    2017-10-23 22:42:00
129756    38478    505    2017-10-23 02:07:00    2017-10-23 02:07:00
129757    38478    912    2017-10-23 17:23:00    2017-10-23 17:23:00
129758    38478    804    2017-10-23 07:14:00    2017-10-23 07:14:00
129759    38478    503    2017-10-23 15:39:00    2017-10-23 15:39:00
129760    38479    903    2017-10-23 04:38:00    2017-10-23 04:38:00
129761    38479    682    2017-10-23 11:53:00    2017-10-23 11:53:00
129762    38479    675    2017-10-23 23:03:00    2017-10-23 23:03:00
129763    38479    640    2017-10-23 07:00:00    2017-10-23 07:00:00
129764    38479    474    2017-10-23 04:51:00    2017-10-23 04:51:00
129765    38480    557    2017-10-23 04:23:00    2017-10-23 04:23:00
129766    38480    551    2017-10-23 22:59:00    2017-10-23 22:59:00
129767    38480    763    2017-10-23 05:35:00    2017-10-23 05:35:00
129768    38480    465    2017-10-23 17:23:00    2017-10-23 17:23:00
129769    38480    955    2017-10-23 19:16:00    2017-10-23 19:16:00
129770    38481    777    2017-10-23 08:12:00    2017-10-23 08:12:00
129771    38481    859    2017-10-23 21:50:00    2017-10-23 21:50:00
129772    38481    761    2017-10-23 07:48:00    2017-10-23 07:48:00
129773    38481    533    2017-10-23 03:35:00    2017-10-23 03:35:00
129774    38481    666    2017-10-23 19:20:00    2017-10-23 19:20:00
129775    38482    504    2017-10-23 22:30:00    2017-10-23 22:30:00
129776    38482    915    2017-10-23 14:25:00    2017-10-23 14:25:00
129777    38482    948    2017-10-23 19:44:00    2017-10-23 19:44:00
129778    38482    775    2017-10-23 05:08:00    2017-10-23 05:08:00
129779    38482    578    2017-10-23 22:52:00    2017-10-23 22:52:00
129780    38483    703    2017-10-23 15:39:00    2017-10-23 15:39:00
129781    38483    473    2017-10-23 12:39:00    2017-10-23 12:39:00
129782    38483    474    2017-10-23 14:40:00    2017-10-23 14:40:00
129783    38483    585    2017-10-23 14:00:00    2017-10-23 14:00:00
129784    38483    623    2017-10-23 19:28:00    2017-10-23 19:28:00
129785    38484    813    2017-10-23 04:24:00    2017-10-23 04:24:00
129786    38484    671    2017-10-23 02:58:00    2017-10-23 02:58:00
129787    38484    826    2017-10-23 14:55:00    2017-10-23 14:55:00
129788    38484    553    2017-10-23 16:40:00    2017-10-23 16:40:00
129789    38484    804    2017-10-23 16:05:00    2017-10-23 16:05:00
129790    38485    830    2017-10-23 15:18:00    2017-10-23 15:18:00
129791    38485    846    2017-10-23 07:57:00    2017-10-23 07:57:00
129792    38485    639    2017-10-23 22:36:00    2017-10-23 22:36:00
129793    38485    758    2017-10-23 04:15:00    2017-10-23 04:15:00
129794    38485    498    2017-10-23 13:13:00    2017-10-23 13:13:00
129795    38486    525    2017-10-23 17:34:00    2017-10-23 17:34:00
129796    38486    587    2017-10-23 18:20:00    2017-10-23 18:20:00
129797    38486    839    2017-10-23 23:40:00    2017-10-23 23:40:00
129798    38486    724    2017-10-23 23:25:00    2017-10-23 23:25:00
129799    38486    596    2017-10-23 23:17:00    2017-10-23 23:17:00
129800    38487    714    2017-10-23 14:07:00    2017-10-23 14:07:00
129801    38487    648    2017-10-23 16:44:00    2017-10-23 16:44:00
129802    38487    649    2017-10-23 22:01:00    2017-10-23 22:01:00
129803    38487    915    2017-10-23 02:38:00    2017-10-23 02:38:00
129804    38487    782    2017-10-23 23:53:00    2017-10-23 23:53:00
129805    38488    801    2017-10-23 13:19:00    2017-10-23 13:19:00
129806    38488    502    2017-10-23 16:25:00    2017-10-23 16:25:00
129807    38488    687    2017-10-23 15:57:00    2017-10-23 15:57:00
129808    38488    636    2017-10-23 02:02:00    2017-10-23 02:02:00
129809    38488    860    2017-10-23 06:58:00    2017-10-23 06:58:00
129810    38489    739    2017-10-23 19:43:00    2017-10-23 19:43:00
129811    38489    576    2017-10-23 21:02:00    2017-10-23 21:02:00
129812    38489    946    2017-10-23 23:41:00    2017-10-23 23:41:00
129813    38489    852    2017-10-23 21:17:00    2017-10-23 21:17:00
129814    38489    474    2017-10-23 07:34:00    2017-10-23 07:34:00
129815    38490    896    2017-10-23 23:55:00    2017-10-23 23:55:00
129816    38490    761    2017-10-23 21:31:00    2017-10-23 21:31:00
129817    38490    770    2017-10-23 06:48:00    2017-10-23 06:48:00
129818    38490    747    2017-10-23 17:10:00    2017-10-23 17:10:00
129819    38490    782    2017-10-23 18:33:00    2017-10-23 18:33:00
129820    38491    697    2017-10-23 21:22:00    2017-10-23 21:22:00
129821    38491    620    2017-10-23 06:07:00    2017-10-23 06:07:00
129822    38491    910    2017-10-23 11:39:00    2017-10-23 11:39:00
129823    38491    861    2017-10-23 09:06:00    2017-10-23 09:06:00
129824    38491    530    2017-10-23 09:08:00    2017-10-23 09:08:00
129825    38492    587    2017-10-23 03:04:00    2017-10-23 03:04:00
129826    38492    625    2017-10-23 07:10:00    2017-10-23 07:10:00
129827    38492    807    2017-10-23 07:14:00    2017-10-23 07:14:00
129828    38492    895    2017-10-23 14:51:00    2017-10-23 14:51:00
129829    38492    740    2017-10-23 23:33:00    2017-10-23 23:33:00
129830    38493    855    2017-10-23 01:45:00    2017-10-23 01:45:00
129831    38493    732    2017-10-23 11:15:00    2017-10-23 11:15:00
129832    38493    733    2017-10-23 15:12:00    2017-10-23 15:12:00
129833    38493    606    2017-10-23 23:36:00    2017-10-23 23:36:00
129834    38493    889    2017-10-23 19:51:00    2017-10-23 19:51:00
129835    38494    707    2017-10-23 01:14:00    2017-10-23 01:14:00
129836    38494    764    2017-10-23 07:03:00    2017-10-23 07:03:00
129837    38494    952    2017-10-23 20:52:00    2017-10-23 20:52:00
129838    38494    666    2017-10-23 06:27:00    2017-10-23 06:27:00
129839    38494    688    2017-10-23 03:03:00    2017-10-23 03:03:00
129840    38495    470    2017-10-23 22:05:00    2017-10-23 22:05:00
129841    38495    567    2017-10-23 14:05:00    2017-10-23 14:05:00
129842    38495    926    2017-10-23 06:28:00    2017-10-23 06:28:00
129843    38495    568    2017-10-23 22:22:00    2017-10-23 22:22:00
129844    38495    467    2017-10-23 12:26:00    2017-10-23 12:26:00
129845    38496    956    2017-10-23 10:02:00    2017-10-23 10:02:00
129846    38496    855    2017-10-23 23:17:00    2017-10-23 23:17:00
129847    38496    893    2017-10-23 22:32:00    2017-10-23 22:32:00
129848    38496    585    2017-10-23 15:39:00    2017-10-23 15:39:00
129849    38496    619    2017-10-23 22:48:00    2017-10-23 22:48:00
129850    38497    874    2017-10-23 04:13:00    2017-10-23 04:13:00
129851    38497    926    2017-10-23 08:31:00    2017-10-23 08:31:00
129852    38497    583    2017-10-23 06:27:00    2017-10-23 06:27:00
129853    38497    912    2017-10-23 12:20:00    2017-10-23 12:20:00
129854    38497    917    2017-10-23 12:57:00    2017-10-23 12:57:00
129855    38498    463    2017-10-23 14:56:00    2017-10-23 14:56:00
129856    38498    776    2017-10-23 13:52:00    2017-10-23 13:52:00
129857    38498    884    2017-10-23 03:00:00    2017-10-23 03:00:00
129858    38498    680    2017-10-23 05:49:00    2017-10-23 05:49:00
129859    38498    928    2017-10-23 09:19:00    2017-10-23 09:19:00
129860    38499    888    2017-10-23 18:28:00    2017-10-23 18:28:00
129861    38499    742    2017-10-23 20:19:00    2017-10-23 20:19:00
129862    38499    498    2017-10-23 16:13:00    2017-10-23 16:13:00
129863    38499    728    2017-10-23 02:35:00    2017-10-23 02:35:00
129864    38499    799    2017-10-23 16:37:00    2017-10-23 16:37:00
129865    38500    789    2017-10-23 20:55:00    2017-10-23 20:55:00
129866    38500    872    2017-10-23 07:11:00    2017-10-23 07:11:00
129867    38500    633    2017-10-23 09:06:00    2017-10-23 09:06:00
129868    38500    809    2017-10-23 23:26:00    2017-10-23 23:26:00
129869    38500    542    2017-10-23 05:00:00    2017-10-23 05:00:00
129870    38501    557    2017-10-23 23:02:00    2017-10-23 23:02:00
129871    38501    650    2017-10-23 03:22:00    2017-10-23 03:22:00
129872    38501    948    2017-10-23 03:22:00    2017-10-23 03:22:00
129873    38501    478    2017-10-23 18:06:00    2017-10-23 18:06:00
129874    38501    482    2017-10-23 10:56:00    2017-10-23 10:56:00
129875    38502    657    2017-10-23 03:35:00    2017-10-23 03:35:00
129876    38502    643    2017-10-23 19:56:00    2017-10-23 19:56:00
129877    38502    698    2017-10-23 18:00:00    2017-10-23 18:00:00
129878    38502    837    2017-10-23 20:25:00    2017-10-23 20:25:00
129879    38502    935    2017-10-23 10:17:00    2017-10-23 10:17:00
129880    38503    691    2017-10-23 18:07:00    2017-10-23 18:07:00
129881    38503    883    2017-10-23 01:33:00    2017-10-23 01:33:00
129882    38503    891    2017-10-23 10:39:00    2017-10-23 10:39:00
129883    38503    692    2017-10-23 05:11:00    2017-10-23 05:11:00
129884    38503    636    2017-10-23 09:40:00    2017-10-23 09:40:00
129885    38504    547    2017-10-23 10:06:00    2017-10-23 10:06:00
129886    38504    831    2017-10-23 03:51:00    2017-10-23 03:51:00
129887    38504    677    2017-10-23 01:14:00    2017-10-23 01:14:00
129888    38504    747    2017-10-23 15:28:00    2017-10-23 15:28:00
129889    38504    779    2017-10-23 10:55:00    2017-10-23 10:55:00
129890    38505    572    2017-10-24 18:00:00    2017-10-24 18:00:00
129891    38505    767    2017-10-24 20:30:00    2017-10-24 20:30:00
129892    38505    726    2017-10-24 23:58:00    2017-10-24 23:58:00
129893    38505    953    2017-10-24 09:22:00    2017-10-24 09:22:00
129894    38505    726    2017-10-24 10:24:00    2017-10-24 10:24:00
129895    38506    630    2017-10-24 01:25:00    2017-10-24 01:25:00
129896    38506    641    2017-10-24 23:39:00    2017-10-24 23:39:00
129897    38506    612    2017-10-24 18:49:00    2017-10-24 18:49:00
129898    38506    847    2017-10-24 13:22:00    2017-10-24 13:22:00
129899    38506    847    2017-10-24 05:33:00    2017-10-24 05:33:00
129900    38507    848    2017-10-24 13:42:00    2017-10-24 13:42:00
129901    38507    557    2017-10-24 19:05:00    2017-10-24 19:05:00
129902    38507    900    2017-10-24 10:11:00    2017-10-24 10:11:00
129903    38507    958    2017-10-24 23:53:00    2017-10-24 23:53:00
129904    38507    529    2017-10-24 12:23:00    2017-10-24 12:23:00
129905    38508    866    2017-10-24 10:09:00    2017-10-24 10:09:00
129906    38508    868    2017-10-24 15:18:00    2017-10-24 15:18:00
129907    38508    882    2017-10-24 06:57:00    2017-10-24 06:57:00
129908    38508    959    2017-10-24 22:35:00    2017-10-24 22:35:00
129909    38508    752    2017-10-24 10:28:00    2017-10-24 10:28:00
129910    38509    956    2017-10-24 13:55:00    2017-10-24 13:55:00
129911    38509    761    2017-10-24 21:07:00    2017-10-24 21:07:00
129912    38509    779    2017-10-24 14:41:00    2017-10-24 14:41:00
129913    38509    734    2017-10-24 14:42:00    2017-10-24 14:42:00
129914    38509    539    2017-10-24 08:54:00    2017-10-24 08:54:00
129915    38510    914    2017-10-24 09:32:00    2017-10-24 09:32:00
129916    38510    488    2017-10-24 04:57:00    2017-10-24 04:57:00
129917    38510    750    2017-10-24 17:34:00    2017-10-24 17:34:00
129918    38510    584    2017-10-24 22:13:00    2017-10-24 22:13:00
129919    38510    911    2017-10-24 07:47:00    2017-10-24 07:47:00
129920    38511    471    2017-10-24 20:21:00    2017-10-24 20:21:00
129921    38511    669    2017-10-24 15:23:00    2017-10-24 15:23:00
129922    38511    514    2017-10-24 18:56:00    2017-10-24 18:56:00
129923    38511    787    2017-10-24 23:24:00    2017-10-24 23:24:00
129924    38511    853    2017-10-24 20:09:00    2017-10-24 20:09:00
129925    38512    810    2017-10-24 20:48:00    2017-10-24 20:48:00
129926    38512    504    2017-10-24 22:51:00    2017-10-24 22:51:00
129927    38512    705    2017-10-24 22:40:00    2017-10-24 22:40:00
129928    38512    871    2017-10-24 03:49:00    2017-10-24 03:49:00
129929    38512    489    2017-10-24 06:46:00    2017-10-24 06:46:00
129930    38513    933    2017-10-24 16:21:00    2017-10-24 16:21:00
129931    38513    701    2017-10-24 05:50:00    2017-10-24 05:50:00
129932    38513    936    2017-10-24 09:31:00    2017-10-24 09:31:00
129933    38513    800    2017-10-24 02:46:00    2017-10-24 02:46:00
129934    38513    685    2017-10-24 09:40:00    2017-10-24 09:40:00
129935    38514    710    2017-10-24 20:23:00    2017-10-24 20:23:00
129936    38514    941    2017-10-24 19:56:00    2017-10-24 19:56:00
129937    38514    677    2017-10-24 05:40:00    2017-10-24 05:40:00
129938    38514    567    2017-10-24 17:12:00    2017-10-24 17:12:00
129939    38514    938    2017-10-24 10:04:00    2017-10-24 10:04:00
129940    38515    832    2017-10-24 14:37:00    2017-10-24 14:37:00
129941    38515    732    2017-10-24 18:26:00    2017-10-24 18:26:00
129942    38515    878    2017-10-24 09:00:00    2017-10-24 09:00:00
129943    38515    602    2017-10-24 05:54:00    2017-10-24 05:54:00
129944    38515    717    2017-10-24 14:36:00    2017-10-24 14:36:00
129945    38516    750    2017-10-24 10:57:00    2017-10-24 10:57:00
129946    38516    633    2017-10-24 23:55:00    2017-10-24 23:55:00
129947    38516    866    2017-10-24 20:27:00    2017-10-24 20:27:00
129948    38516    825    2017-10-24 02:09:00    2017-10-24 02:09:00
129949    38516    556    2017-10-24 18:20:00    2017-10-24 18:20:00
129950    38517    822    2017-10-24 16:36:00    2017-10-24 16:36:00
129951    38517    549    2017-10-24 17:50:00    2017-10-24 17:50:00
129952    38517    735    2017-10-24 20:00:00    2017-10-24 20:00:00
129953    38517    502    2017-10-24 17:48:00    2017-10-24 17:48:00
129954    38517    893    2017-10-24 18:53:00    2017-10-24 18:53:00
129955    38518    775    2017-10-24 18:18:00    2017-10-24 18:18:00
129956    38518    717    2017-10-24 17:36:00    2017-10-24 17:36:00
129957    38518    867    2017-10-24 08:35:00    2017-10-24 08:35:00
129958    38518    758    2017-10-24 01:11:00    2017-10-24 01:11:00
129959    38518    735    2017-10-24 03:19:00    2017-10-24 03:19:00
129960    38519    900    2017-10-24 07:01:00    2017-10-24 07:01:00
129961    38519    693    2017-10-24 15:09:00    2017-10-24 15:09:00
129962    38519    921    2017-10-24 14:36:00    2017-10-24 14:36:00
129963    38519    603    2017-10-24 14:35:00    2017-10-24 14:35:00
129964    38519    614    2017-10-24 05:36:00    2017-10-24 05:36:00
129965    38520    705    2017-10-24 08:24:00    2017-10-24 08:24:00
129966    38520    573    2017-10-24 13:26:00    2017-10-24 13:26:00
129967    38520    532    2017-10-24 12:02:00    2017-10-24 12:02:00
129968    38520    586    2017-10-24 01:20:00    2017-10-24 01:20:00
129969    38520    924    2017-10-24 18:34:00    2017-10-24 18:34:00
129970    38521    626    2017-10-24 16:40:00    2017-10-24 16:40:00
129971    38521    671    2017-10-24 17:31:00    2017-10-24 17:31:00
129972    38521    742    2017-10-24 21:54:00    2017-10-24 21:54:00
129973    38521    523    2017-10-24 18:49:00    2017-10-24 18:49:00
129974    38521    793    2017-10-24 15:29:00    2017-10-24 15:29:00
129975    38522    956    2017-10-24 22:50:00    2017-10-24 22:50:00
129976    38522    741    2017-10-24 11:37:00    2017-10-24 11:37:00
129977    38522    569    2017-10-24 01:14:00    2017-10-24 01:14:00
129978    38522    661    2017-10-24 06:12:00    2017-10-24 06:12:00
129979    38522    914    2017-10-24 07:13:00    2017-10-24 07:13:00
129980    38523    600    2017-10-24 03:03:00    2017-10-24 03:03:00
129981    38523    588    2017-10-24 23:59:00    2017-10-24 23:59:00
129982    38523    527    2017-10-24 14:47:00    2017-10-24 14:47:00
129983    38523    750    2017-10-24 03:05:00    2017-10-24 03:05:00
129984    38523    595    2017-10-24 17:59:00    2017-10-24 17:59:00
129985    38524    745    2017-10-24 19:09:00    2017-10-24 19:09:00
129986    38524    916    2017-10-24 04:00:00    2017-10-24 04:00:00
129987    38524    773    2017-10-24 03:49:00    2017-10-24 03:49:00
129988    38524    846    2017-10-24 15:11:00    2017-10-24 15:11:00
129989    38524    744    2017-10-24 04:32:00    2017-10-24 04:32:00
129990    38525    934    2017-10-24 18:25:00    2017-10-24 18:25:00
129991    38525    486    2017-10-24 19:21:00    2017-10-24 19:21:00
129992    38525    929    2017-10-24 13:16:00    2017-10-24 13:16:00
129993    38525    803    2017-10-24 21:26:00    2017-10-24 21:26:00
129994    38525    673    2017-10-24 07:33:00    2017-10-24 07:33:00
129995    38526    500    2017-10-24 20:59:00    2017-10-24 20:59:00
129996    38526    622    2017-10-24 11:36:00    2017-10-24 11:36:00
129997    38526    884    2017-10-24 14:03:00    2017-10-24 14:03:00
129998    38526    874    2017-10-24 02:04:00    2017-10-24 02:04:00
129999    38526    649    2017-10-24 11:27:00    2017-10-24 11:27:00
130000    38527    728    2017-10-24 07:58:00    2017-10-24 07:58:00
130001    38527    936    2017-10-24 12:33:00    2017-10-24 12:33:00
130002    38527    837    2017-10-24 21:39:00    2017-10-24 21:39:00
130003    38527    946    2017-10-24 20:28:00    2017-10-24 20:28:00
130004    38527    473    2017-10-24 06:35:00    2017-10-24 06:35:00
130005    38528    536    2017-10-24 16:17:00    2017-10-24 16:17:00
130006    38528    608    2017-10-24 13:53:00    2017-10-24 13:53:00
130007    38528    937    2017-10-24 07:32:00    2017-10-24 07:32:00
130008    38528    939    2017-10-24 18:39:00    2017-10-24 18:39:00
130009    38528    930    2017-10-24 09:56:00    2017-10-24 09:56:00
130010    38529    835    2017-10-24 07:07:00    2017-10-24 07:07:00
130011    38529    809    2017-10-24 01:59:00    2017-10-24 01:59:00
130012    38529    713    2017-10-24 16:46:00    2017-10-24 16:46:00
130013    38529    878    2017-10-24 21:29:00    2017-10-24 21:29:00
130014    38529    551    2017-10-24 04:25:00    2017-10-24 04:25:00
130015    38530    478    2017-10-24 03:21:00    2017-10-24 03:21:00
130016    38530    839    2017-10-24 19:53:00    2017-10-24 19:53:00
130017    38530    609    2017-10-24 16:42:00    2017-10-24 16:42:00
130018    38530    812    2017-10-24 11:16:00    2017-10-24 11:16:00
130019    38530    667    2017-10-24 01:18:00    2017-10-24 01:18:00
130020    38531    809    2017-10-24 19:43:00    2017-10-24 19:43:00
130021    38531    901    2017-10-24 03:54:00    2017-10-24 03:54:00
130022    38531    694    2017-10-24 10:19:00    2017-10-24 10:19:00
130023    38531    552    2017-10-24 13:02:00    2017-10-24 13:02:00
130024    38531    635    2017-10-24 13:32:00    2017-10-24 13:32:00
130025    38532    487    2017-10-24 04:08:00    2017-10-24 04:08:00
130026    38532    542    2017-10-24 04:54:00    2017-10-24 04:54:00
130027    38532    842    2017-10-24 07:09:00    2017-10-24 07:09:00
130028    38532    740    2017-10-24 02:56:00    2017-10-24 02:56:00
130029    38532    485    2017-10-24 04:22:00    2017-10-24 04:22:00
130030    38533    782    2017-10-24 18:21:00    2017-10-24 18:21:00
130031    38533    951    2017-10-24 21:28:00    2017-10-24 21:28:00
130032    38533    665    2017-10-24 22:13:00    2017-10-24 22:13:00
130033    38533    584    2017-10-24 08:20:00    2017-10-24 08:20:00
130034    38533    603    2017-10-24 22:29:00    2017-10-24 22:29:00
130035    38534    686    2017-10-24 18:24:00    2017-10-24 18:24:00
130036    38534    651    2017-10-24 03:21:00    2017-10-24 03:21:00
130037    38534    779    2017-10-24 11:07:00    2017-10-24 11:07:00
130038    38534    860    2017-10-24 22:21:00    2017-10-24 22:21:00
130039    38534    807    2017-10-24 02:00:00    2017-10-24 02:00:00
130040    38535    700    2017-10-24 09:00:00    2017-10-24 09:00:00
130041    38535    757    2017-10-24 03:00:00    2017-10-24 03:00:00
130042    38535    942    2017-10-24 07:21:00    2017-10-24 07:21:00
130043    38535    602    2017-10-24 18:07:00    2017-10-24 18:07:00
130044    38535    520    2017-10-24 02:43:00    2017-10-24 02:43:00
130045    38536    778    2017-10-24 18:40:00    2017-10-24 18:40:00
130046    38536    487    2017-10-24 11:44:00    2017-10-24 11:44:00
130047    38536    684    2017-10-24 03:40:00    2017-10-24 03:40:00
130048    38536    599    2017-10-24 03:20:00    2017-10-24 03:20:00
130049    38536    911    2017-10-24 15:05:00    2017-10-24 15:05:00
130050    38537    487    2017-10-24 19:50:00    2017-10-24 19:50:00
130051    38537    531    2017-10-24 18:07:00    2017-10-24 18:07:00
130052    38537    518    2017-10-24 21:15:00    2017-10-24 21:15:00
130053    38537    559    2017-10-24 11:10:00    2017-10-24 11:10:00
130054    38537    945    2017-10-24 14:16:00    2017-10-24 14:16:00
130055    38538    898    2017-10-24 08:20:00    2017-10-24 08:20:00
130056    38538    862    2017-10-24 19:50:00    2017-10-24 19:50:00
130057    38538    463    2017-10-24 11:27:00    2017-10-24 11:27:00
130058    38538    778    2017-10-24 12:53:00    2017-10-24 12:53:00
130059    38538    608    2017-10-24 02:04:00    2017-10-24 02:04:00
130060    38539    742    2017-10-24 08:43:00    2017-10-24 08:43:00
130061    38539    587    2017-10-24 07:27:00    2017-10-24 07:27:00
130062    38539    675    2017-10-24 14:16:00    2017-10-24 14:16:00
130063    38539    901    2017-10-24 15:54:00    2017-10-24 15:54:00
130064    38539    790    2017-10-24 16:00:00    2017-10-24 16:00:00
130065    38540    541    2017-10-24 19:20:00    2017-10-24 19:20:00
130066    38540    626    2017-10-24 21:08:00    2017-10-24 21:08:00
130067    38540    846    2017-10-24 10:20:00    2017-10-24 10:20:00
130068    38540    615    2017-10-24 02:07:00    2017-10-24 02:07:00
130069    38540    635    2017-10-24 14:45:00    2017-10-24 14:45:00
130070    38541    886    2017-10-24 05:22:00    2017-10-24 05:22:00
130071    38541    560    2017-10-24 10:52:00    2017-10-24 10:52:00
130072    38541    941    2017-10-24 17:16:00    2017-10-24 17:16:00
130073    38541    909    2017-10-24 09:18:00    2017-10-24 09:18:00
130074    38541    870    2017-10-24 19:30:00    2017-10-24 19:30:00
130075    38542    948    2017-10-24 18:00:00    2017-10-24 18:00:00
130076    38542    491    2017-10-24 09:54:00    2017-10-24 09:54:00
130077    38542    938    2017-10-24 18:42:00    2017-10-24 18:42:00
130078    38542    836    2017-10-24 08:27:00    2017-10-24 08:27:00
130079    38542    926    2017-10-24 07:05:00    2017-10-24 07:05:00
130080    38543    748    2017-10-24 05:09:00    2017-10-24 05:09:00
130081    38543    802    2017-10-24 09:31:00    2017-10-24 09:31:00
130082    38543    787    2017-10-24 18:42:00    2017-10-24 18:42:00
130083    38543    708    2017-10-24 14:58:00    2017-10-24 14:58:00
130084    38543    645    2017-10-24 11:06:00    2017-10-24 11:06:00
130085    38544    699    2017-10-24 07:22:00    2017-10-24 07:22:00
130086    38544    653    2017-10-24 21:08:00    2017-10-24 21:08:00
130087    38544    775    2017-10-24 08:54:00    2017-10-24 08:54:00
130088    38544    508    2017-10-24 08:34:00    2017-10-24 08:34:00
130089    38544    725    2017-10-24 15:12:00    2017-10-24 15:12:00
130090    38545    514    2017-10-24 15:50:00    2017-10-24 15:50:00
130091    38545    570    2017-10-24 06:50:00    2017-10-24 06:50:00
130092    38545    617    2017-10-24 11:42:00    2017-10-24 11:42:00
130093    38545    538    2017-10-24 15:18:00    2017-10-24 15:18:00
130094    38545    504    2017-10-24 15:52:00    2017-10-24 15:52:00
130095    38546    703    2017-10-24 21:34:00    2017-10-24 21:34:00
130096    38546    875    2017-10-24 10:19:00    2017-10-24 10:19:00
130097    38546    838    2017-10-24 08:13:00    2017-10-24 08:13:00
130098    38546    571    2017-10-24 05:10:00    2017-10-24 05:10:00
130099    38546    651    2017-10-24 11:59:00    2017-10-24 11:59:00
130100    38547    942    2017-10-24 20:10:00    2017-10-24 20:10:00
130101    38547    881    2017-10-24 10:06:00    2017-10-24 10:06:00
130102    38547    612    2017-10-24 08:18:00    2017-10-24 08:18:00
130103    38547    764    2017-10-24 17:50:00    2017-10-24 17:50:00
130104    38547    510    2017-10-24 04:36:00    2017-10-24 04:36:00
130105    38548    825    2017-10-24 15:19:00    2017-10-24 15:19:00
130106    38548    780    2017-10-24 20:02:00    2017-10-24 20:02:00
130107    38548    838    2017-10-24 03:00:00    2017-10-24 03:00:00
130108    38548    624    2017-10-24 10:00:00    2017-10-24 10:00:00
130109    38548    861    2017-10-24 22:16:00    2017-10-24 22:16:00
130110    38549    822    2017-10-24 08:29:00    2017-10-24 08:29:00
130111    38549    651    2017-10-24 22:06:00    2017-10-24 22:06:00
130112    38549    797    2017-10-24 14:50:00    2017-10-24 14:50:00
130113    38549    671    2017-10-24 08:51:00    2017-10-24 08:51:00
130114    38549    794    2017-10-24 02:17:00    2017-10-24 02:17:00
130115    38550    722    2017-10-24 18:09:00    2017-10-24 18:09:00
130116    38550    946    2017-10-24 22:22:00    2017-10-24 22:22:00
130117    38550    599    2017-10-24 19:45:00    2017-10-24 19:45:00
130118    38550    887    2017-10-24 03:13:00    2017-10-24 03:13:00
130119    38550    775    2017-10-24 13:36:00    2017-10-24 13:36:00
130120    38551    757    2017-10-24 21:06:00    2017-10-24 21:06:00
130121    38551    629    2017-10-24 14:24:00    2017-10-24 14:24:00
130122    38551    940    2017-10-24 11:48:00    2017-10-24 11:48:00
130123    38551    684    2017-10-24 03:59:00    2017-10-24 03:59:00
130124    38551    503    2017-10-24 14:47:00    2017-10-24 14:47:00
130125    38552    959    2017-10-24 13:57:00    2017-10-24 13:57:00
130126    38552    879    2017-10-24 16:53:00    2017-10-24 16:53:00
130127    38552    466    2017-10-24 02:36:00    2017-10-24 02:36:00
130128    38552    661    2017-10-24 21:03:00    2017-10-24 21:03:00
130129    38552    503    2017-10-24 23:31:00    2017-10-24 23:31:00
130130    38553    576    2017-10-24 08:09:00    2017-10-24 08:09:00
130131    38553    718    2017-10-24 10:29:00    2017-10-24 10:29:00
130132    38553    507    2017-10-24 23:58:00    2017-10-24 23:58:00
130133    38553    607    2017-10-24 08:26:00    2017-10-24 08:26:00
130134    38553    486    2017-10-24 22:00:00    2017-10-24 22:00:00
130135    38554    658    2017-10-24 07:33:00    2017-10-24 07:33:00
130136    38554    926    2017-10-24 15:30:00    2017-10-24 15:30:00
130137    38554    896    2017-10-24 09:59:00    2017-10-24 09:59:00
130138    38554    578    2017-10-24 10:21:00    2017-10-24 10:21:00
130139    38554    709    2017-10-24 20:25:00    2017-10-24 20:25:00
130140    38555    484    2017-10-24 09:12:00    2017-10-24 09:12:00
130141    38555    584    2017-10-24 18:37:00    2017-10-24 18:37:00
130142    38555    536    2017-10-24 14:45:00    2017-10-24 14:45:00
130143    38555    942    2017-10-24 17:40:00    2017-10-24 17:40:00
130144    38555    908    2017-10-24 07:26:00    2017-10-24 07:26:00
130145    38556    576    2017-10-24 09:39:00    2017-10-24 09:39:00
130146    38556    882    2017-10-24 23:44:00    2017-10-24 23:44:00
130147    38556    806    2017-10-24 01:16:00    2017-10-24 01:16:00
130148    38556    851    2017-10-24 14:44:00    2017-10-24 14:44:00
130149    38556    493    2017-10-24 21:59:00    2017-10-24 21:59:00
130150    38557    634    2017-10-24 02:42:00    2017-10-24 02:42:00
130151    38557    477    2017-10-24 20:42:00    2017-10-24 20:42:00
130152    38557    513    2017-10-24 02:47:00    2017-10-24 02:47:00
130153    38557    833    2017-10-24 02:26:00    2017-10-24 02:26:00
130154    38557    632    2017-10-24 10:20:00    2017-10-24 10:20:00
130155    38558    624    2017-10-24 22:32:00    2017-10-24 22:32:00
130156    38558    685    2017-10-24 13:48:00    2017-10-24 13:48:00
130157    38558    783    2017-10-24 16:46:00    2017-10-24 16:46:00
130158    38558    803    2017-10-24 15:38:00    2017-10-24 15:38:00
130159    38558    877    2017-10-24 21:20:00    2017-10-24 21:20:00
130160    38559    914    2017-10-24 18:00:00    2017-10-24 18:00:00
130161    38559    530    2017-10-24 04:06:00    2017-10-24 04:06:00
130162    38559    483    2017-10-24 09:33:00    2017-10-24 09:33:00
130163    38559    508    2017-10-24 19:35:00    2017-10-24 19:35:00
130164    38559    717    2017-10-24 04:48:00    2017-10-24 04:48:00
130165    38560    611    2017-10-24 02:37:00    2017-10-24 02:37:00
130166    38560    942    2017-10-24 09:23:00    2017-10-24 09:23:00
130167    38560    483    2017-10-24 14:57:00    2017-10-24 14:57:00
130168    38560    502    2017-10-24 21:48:00    2017-10-24 21:48:00
130169    38560    910    2017-10-24 20:02:00    2017-10-24 20:02:00
130170    38561    594    2017-10-24 04:45:00    2017-10-24 04:45:00
130171    38561    889    2017-10-24 14:03:00    2017-10-24 14:03:00
130172    38561    517    2017-10-24 22:27:00    2017-10-24 22:27:00
130173    38561    801    2017-10-24 06:51:00    2017-10-24 06:51:00
130174    38561    734    2017-10-24 09:07:00    2017-10-24 09:07:00
130175    38562    485    2017-10-24 12:06:00    2017-10-24 12:06:00
130176    38562    530    2017-10-24 20:53:00    2017-10-24 20:53:00
130177    38562    961    2017-10-24 23:25:00    2017-10-24 23:25:00
130178    38562    560    2017-10-24 16:01:00    2017-10-24 16:01:00
130179    38562    667    2017-10-24 22:42:00    2017-10-24 22:42:00
130180    38563    582    2017-10-24 09:07:00    2017-10-24 09:07:00
130181    38563    743    2017-10-24 03:33:00    2017-10-24 03:33:00
130182    38563    824    2017-10-24 06:57:00    2017-10-24 06:57:00
130183    38563    954    2017-10-24 07:18:00    2017-10-24 07:18:00
130184    38563    521    2017-10-24 17:11:00    2017-10-24 17:11:00
130185    38564    496    2017-10-24 01:57:00    2017-10-24 01:57:00
130186    38564    679    2017-10-24 07:00:00    2017-10-24 07:00:00
130187    38564    770    2017-10-24 05:12:00    2017-10-24 05:12:00
130188    38564    591    2017-10-24 22:52:00    2017-10-24 22:52:00
130189    38564    806    2017-10-24 03:32:00    2017-10-24 03:32:00
130190    38565    583    2017-10-24 02:20:00    2017-10-24 02:20:00
130191    38565    475    2017-10-24 13:34:00    2017-10-24 13:34:00
130192    38565    760    2017-10-24 05:06:00    2017-10-24 05:06:00
130193    38565    464    2017-10-24 10:48:00    2017-10-24 10:48:00
130194    38565    861    2017-10-24 12:23:00    2017-10-24 12:23:00
130195    38566    605    2017-10-24 17:07:00    2017-10-24 17:07:00
130196    38566    562    2017-10-24 16:29:00    2017-10-24 16:29:00
130197    38566    583    2017-10-24 19:28:00    2017-10-24 19:28:00
130198    38566    887    2017-10-24 19:05:00    2017-10-24 19:05:00
130199    38566    545    2017-10-24 10:27:00    2017-10-24 10:27:00
130200    38567    913    2017-10-24 07:10:00    2017-10-24 07:10:00
130201    38567    749    2017-10-24 15:40:00    2017-10-24 15:40:00
130202    38567    779    2017-10-24 14:30:00    2017-10-24 14:30:00
130203    38567    894    2017-10-24 20:20:00    2017-10-24 20:20:00
130204    38567    613    2017-10-24 11:58:00    2017-10-24 11:58:00
130205    38568    944    2017-10-24 07:54:00    2017-10-24 07:54:00
130206    38568    916    2017-10-24 08:00:00    2017-10-24 08:00:00
130207    38568    827    2017-10-24 11:12:00    2017-10-24 11:12:00
130208    38568    468    2017-10-24 09:48:00    2017-10-24 09:48:00
130209    38568    569    2017-10-24 21:55:00    2017-10-24 21:55:00
130210    38569    955    2017-10-24 21:21:00    2017-10-24 21:21:00
130211    38569    883    2017-10-24 16:03:00    2017-10-24 16:03:00
130212    38569    727    2017-10-24 10:43:00    2017-10-24 10:43:00
130213    38569    859    2017-10-24 17:53:00    2017-10-24 17:53:00
130214    38569    929    2017-10-24 21:16:00    2017-10-24 21:16:00
130215    38570    529    2017-10-24 11:34:00    2017-10-24 11:34:00
130216    38570    664    2017-10-24 13:25:00    2017-10-24 13:25:00
130217    38570    813    2017-10-24 02:55:00    2017-10-24 02:55:00
130218    38570    723    2017-10-24 05:00:00    2017-10-24 05:00:00
130219    38570    939    2017-10-24 18:28:00    2017-10-24 18:28:00
130220    38571    844    2017-10-25 22:58:00    2017-10-25 22:58:00
130221    38571    864    2017-10-25 07:00:00    2017-10-25 07:00:00
130222    38571    612    2017-10-25 15:16:00    2017-10-25 15:16:00
130223    38571    640    2017-10-25 20:42:00    2017-10-25 20:42:00
130224    38571    558    2017-10-25 08:36:00    2017-10-25 08:36:00
130225    38572    778    2017-10-25 23:05:00    2017-10-25 23:05:00
130226    38572    691    2017-10-25 09:17:00    2017-10-25 09:17:00
130227    38572    666    2017-10-25 05:19:00    2017-10-25 05:19:00
130228    38572    801    2017-10-25 18:18:00    2017-10-25 18:18:00
130229    38572    775    2017-10-25 10:53:00    2017-10-25 10:53:00
130230    38573    632    2017-10-25 12:14:00    2017-10-25 12:14:00
130231    38573    757    2017-10-25 10:44:00    2017-10-25 10:44:00
130232    38573    553    2017-10-25 23:26:00    2017-10-25 23:26:00
130233    38573    608    2017-10-25 13:28:00    2017-10-25 13:28:00
130234    38573    914    2017-10-25 08:05:00    2017-10-25 08:05:00
130235    38574    908    2017-10-25 02:44:00    2017-10-25 02:44:00
130236    38574    852    2017-10-25 23:03:00    2017-10-25 23:03:00
130237    38574    954    2017-10-25 10:39:00    2017-10-25 10:39:00
130238    38574    465    2017-10-25 19:16:00    2017-10-25 19:16:00
130239    38574    877    2017-10-25 16:52:00    2017-10-25 16:52:00
130240    38575    896    2017-10-25 21:10:00    2017-10-25 21:10:00
130241    38575    787    2017-10-25 07:58:00    2017-10-25 07:58:00
130242    38575    563    2017-10-25 02:17:00    2017-10-25 02:17:00
130243    38575    730    2017-10-25 09:45:00    2017-10-25 09:45:00
130244    38575    721    2017-10-25 15:28:00    2017-10-25 15:28:00
130245    38576    789    2017-10-25 16:16:00    2017-10-25 16:16:00
130246    38576    546    2017-10-25 03:58:00    2017-10-25 03:58:00
130247    38576    473    2017-10-25 21:00:00    2017-10-25 21:00:00
130248    38576    677    2017-10-25 16:17:00    2017-10-25 16:17:00
130249    38576    634    2017-10-25 13:28:00    2017-10-25 13:28:00
130250    38577    737    2017-10-25 13:54:00    2017-10-25 13:54:00
130251    38577    890    2017-10-25 20:45:00    2017-10-25 20:45:00
130252    38577    483    2017-10-25 03:22:00    2017-10-25 03:22:00
130253    38577    512    2017-10-25 12:13:00    2017-10-25 12:13:00
130254    38577    859    2017-10-25 13:18:00    2017-10-25 13:18:00
130255    38578    960    2017-10-25 21:45:00    2017-10-25 21:45:00
130256    38578    466    2017-10-25 22:12:00    2017-10-25 22:12:00
130257    38578    503    2017-10-25 23:42:00    2017-10-25 23:42:00
130258    38578    486    2017-10-25 07:47:00    2017-10-25 07:47:00
130259    38578    766    2017-10-25 03:01:00    2017-10-25 03:01:00
130260    38579    844    2017-10-25 05:53:00    2017-10-25 05:53:00
130261    38579    732    2017-10-25 14:05:00    2017-10-25 14:05:00
130262    38579    699    2017-10-25 11:00:00    2017-10-25 11:00:00
130263    38579    601    2017-10-25 01:39:00    2017-10-25 01:39:00
130264    38579    676    2017-10-25 04:43:00    2017-10-25 04:43:00
130265    38580    579    2017-10-25 01:01:00    2017-10-25 01:01:00
130266    38580    700    2017-10-25 03:44:00    2017-10-25 03:44:00
130267    38580    471    2017-10-25 08:21:00    2017-10-25 08:21:00
130268    38580    486    2017-10-25 06:03:00    2017-10-25 06:03:00
130269    38580    842    2017-10-25 15:27:00    2017-10-25 15:27:00
130270    38581    790    2017-10-25 12:41:00    2017-10-25 12:41:00
130271    38581    624    2017-10-25 12:23:00    2017-10-25 12:23:00
130272    38581    940    2017-10-25 11:39:00    2017-10-25 11:39:00
130273    38581    518    2017-10-25 18:51:00    2017-10-25 18:51:00
130274    38581    720    2017-10-25 21:21:00    2017-10-25 21:21:00
130275    38582    498    2017-10-25 09:00:00    2017-10-25 09:00:00
130276    38582    775    2017-10-25 07:46:00    2017-10-25 07:46:00
130277    38582    517    2017-10-25 04:39:00    2017-10-25 04:39:00
130278    38582    938    2017-10-25 21:45:00    2017-10-25 21:45:00
130279    38582    718    2017-10-25 07:32:00    2017-10-25 07:32:00
130280    38583    601    2017-10-25 22:47:00    2017-10-25 22:47:00
130281    38583    715    2017-10-25 19:01:00    2017-10-25 19:01:00
130282    38583    952    2017-10-25 22:16:00    2017-10-25 22:16:00
130283    38583    573    2017-10-25 11:00:00    2017-10-25 11:00:00
130284    38583    760    2017-10-25 06:11:00    2017-10-25 06:11:00
130285    38584    492    2017-10-25 03:29:00    2017-10-25 03:29:00
130286    38584    833    2017-10-25 08:41:00    2017-10-25 08:41:00
130287    38584    694    2017-10-25 02:00:00    2017-10-25 02:00:00
130288    38584    469    2017-10-25 10:46:00    2017-10-25 10:46:00
130289    38584    562    2017-10-25 22:54:00    2017-10-25 22:54:00
130290    38585    792    2017-10-25 08:56:00    2017-10-25 08:56:00
130291    38585    896    2017-10-25 03:52:00    2017-10-25 03:52:00
130292    38585    658    2017-10-25 11:57:00    2017-10-25 11:57:00
130293    38585    495    2017-10-25 10:08:00    2017-10-25 10:08:00
130294    38585    881    2017-10-25 05:08:00    2017-10-25 05:08:00
130295    38586    686    2017-10-25 21:09:00    2017-10-25 21:09:00
130296    38586    698    2017-10-25 16:55:00    2017-10-25 16:55:00
130297    38586    487    2017-10-25 13:41:00    2017-10-25 13:41:00
130298    38586    816    2017-10-25 17:41:00    2017-10-25 17:41:00
130299    38586    838    2017-10-25 11:01:00    2017-10-25 11:01:00
130300    38587    896    2017-10-25 03:27:00    2017-10-25 03:27:00
130301    38587    664    2017-10-25 01:42:00    2017-10-25 01:42:00
130302    38587    514    2017-10-25 19:15:00    2017-10-25 19:15:00
130303    38587    759    2017-10-25 15:31:00    2017-10-25 15:31:00
130304    38587    584    2017-10-25 19:04:00    2017-10-25 19:04:00
130305    38588    634    2017-10-25 19:54:00    2017-10-25 19:54:00
130306    38588    590    2017-10-25 22:47:00    2017-10-25 22:47:00
130307    38588    934    2017-10-25 14:05:00    2017-10-25 14:05:00
130308    38588    683    2017-10-25 06:16:00    2017-10-25 06:16:00
130309    38588    929    2017-10-25 23:58:00    2017-10-25 23:58:00
130310    38589    693    2017-10-25 08:35:00    2017-10-25 08:35:00
130311    38589    822    2017-10-25 16:14:00    2017-10-25 16:14:00
130312    38589    714    2017-10-25 19:28:00    2017-10-25 19:28:00
130313    38589    700    2017-10-25 10:52:00    2017-10-25 10:52:00
130314    38589    527    2017-10-25 10:28:00    2017-10-25 10:28:00
130315    38590    676    2017-10-25 15:12:00    2017-10-25 15:12:00
130316    38590    598    2017-10-25 13:34:00    2017-10-25 13:34:00
130317    38590    679    2017-10-25 13:59:00    2017-10-25 13:59:00
130318    38590    501    2017-10-25 09:13:00    2017-10-25 09:13:00
130319    38590    648    2017-10-25 18:51:00    2017-10-25 18:51:00
130320    38591    806    2017-10-25 08:27:00    2017-10-25 08:27:00
130321    38591    471    2017-10-25 13:22:00    2017-10-25 13:22:00
130322    38591    495    2017-10-25 14:58:00    2017-10-25 14:58:00
130323    38591    502    2017-10-25 06:12:00    2017-10-25 06:12:00
130324    38591    578    2017-10-25 10:57:00    2017-10-25 10:57:00
130325    38592    808    2017-10-25 16:26:00    2017-10-25 16:26:00
130326    38592    774    2017-10-25 17:00:00    2017-10-25 17:00:00
130327    38592    525    2017-10-25 04:17:00    2017-10-25 04:17:00
130328    38592    590    2017-10-25 15:28:00    2017-10-25 15:28:00
130329    38592    853    2017-10-25 17:12:00    2017-10-25 17:12:00
130330    38593    553    2017-10-25 19:15:00    2017-10-25 19:15:00
130331    38593    523    2017-10-25 21:10:00    2017-10-25 21:10:00
130332    38593    751    2017-10-25 18:24:00    2017-10-25 18:24:00
130333    38593    816    2017-10-25 12:22:00    2017-10-25 12:22:00
130334    38593    621    2017-10-25 01:11:00    2017-10-25 01:11:00
130335    38594    956    2017-10-25 03:07:00    2017-10-25 03:07:00
130336    38594    772    2017-10-25 22:22:00    2017-10-25 22:22:00
130337    38594    715    2017-10-25 13:30:00    2017-10-25 13:30:00
130339    38594    504    2017-10-25 04:22:00    2017-10-25 04:22:00
130340    38595    751    2017-10-25 09:46:00    2017-10-25 09:46:00
130341    38595    910    2017-10-25 04:07:00    2017-10-25 04:07:00
130342    38595    633    2017-10-25 18:12:00    2017-10-25 18:12:00
130343    38595    919    2017-10-25 05:02:00    2017-10-25 05:02:00
130344    38595    591    2017-10-25 16:24:00    2017-10-25 16:24:00
130345    38596    728    2017-10-25 23:40:00    2017-10-25 23:40:00
130346    38596    497    2017-10-25 07:43:00    2017-10-25 07:43:00
130347    38596    818    2017-10-25 05:37:00    2017-10-25 05:37:00
130348    38596    471    2017-10-25 10:39:00    2017-10-25 10:39:00
130349    38596    600    2017-10-25 23:52:00    2017-10-25 23:52:00
130350    38597    741    2017-10-25 04:48:00    2017-10-25 04:48:00
130351    38597    698    2017-10-25 16:55:00    2017-10-25 16:55:00
130352    38597    812    2017-10-25 19:47:00    2017-10-25 19:47:00
130353    38597    771    2017-10-25 09:24:00    2017-10-25 09:24:00
130354    38597    813    2017-10-25 05:46:00    2017-10-25 05:46:00
130355    38598    515    2017-10-25 21:58:00    2017-10-25 21:58:00
130356    38598    715    2017-10-25 12:37:00    2017-10-25 12:37:00
130357    38598    552    2017-10-25 05:17:00    2017-10-25 05:17:00
130358    38598    904    2017-10-25 22:01:00    2017-10-25 22:01:00
130359    38598    559    2017-10-25 02:58:00    2017-10-25 02:58:00
130360    38599    912    2017-10-25 05:28:00    2017-10-25 05:28:00
130361    38599    681    2017-10-25 05:16:00    2017-10-25 05:16:00
130362    38599    466    2017-10-25 20:41:00    2017-10-25 20:41:00
130363    38599    885    2017-10-25 14:00:00    2017-10-25 14:00:00
130364    38599    649    2017-10-25 12:30:00    2017-10-25 12:30:00
130365    38600    617    2017-10-25 11:53:00    2017-10-25 11:53:00
130366    38600    627    2017-10-25 19:58:00    2017-10-25 19:58:00
130367    38600    950    2017-10-25 18:28:00    2017-10-25 18:28:00
130368    38600    884    2017-10-25 11:37:00    2017-10-25 11:37:00
130369    38600    824    2017-10-25 09:48:00    2017-10-25 09:48:00
130370    38601    915    2017-10-25 20:21:00    2017-10-25 20:21:00
130371    38601    634    2017-10-25 21:44:00    2017-10-25 21:44:00
130372    38601    766    2017-10-25 01:12:00    2017-10-25 01:12:00
130373    38601    483    2017-10-25 02:15:00    2017-10-25 02:15:00
130374    38601    954    2017-10-25 21:25:00    2017-10-25 21:25:00
130375    38602    890    2017-10-25 08:47:00    2017-10-25 08:47:00
130376    38602    533    2017-10-25 23:55:00    2017-10-25 23:55:00
130377    38602    747    2017-10-25 05:42:00    2017-10-25 05:42:00
130378    38602    596    2017-10-25 20:40:00    2017-10-25 20:40:00
130379    38602    557    2017-10-25 16:00:00    2017-10-25 16:00:00
130380    38603    722    2017-10-25 16:11:00    2017-10-25 16:11:00
130381    38603    757    2017-10-25 18:07:00    2017-10-25 18:07:00
130382    38603    891    2017-10-25 12:54:00    2017-10-25 12:54:00
130383    38603    466    2017-10-25 11:49:00    2017-10-25 11:49:00
130384    38603    752    2017-10-25 14:57:00    2017-10-25 14:57:00
130385    38604    752    2017-10-25 17:17:00    2017-10-25 17:17:00
130386    38604    861    2017-10-25 07:07:00    2017-10-25 07:07:00
130387    38604    894    2017-10-25 10:23:00    2017-10-25 10:23:00
130388    38604    660    2017-10-25 12:15:00    2017-10-25 12:15:00
130389    38604    632    2017-10-25 16:02:00    2017-10-25 16:02:00
130390    38605    917    2017-10-25 12:37:00    2017-10-25 12:37:00
130391    38605    591    2017-10-25 03:45:00    2017-10-25 03:45:00
130392    38605    789    2017-10-25 13:50:00    2017-10-25 13:50:00
130393    38605    684    2017-10-25 09:50:00    2017-10-25 09:50:00
130394    38605    505    2017-10-25 17:37:00    2017-10-25 17:37:00
130395    38606    465    2017-10-25 14:32:00    2017-10-25 14:32:00
130396    38606    763    2017-10-25 14:34:00    2017-10-25 14:34:00
130397    38606    775    2017-10-25 06:43:00    2017-10-25 06:43:00
130398    38606    844    2017-10-25 05:57:00    2017-10-25 05:57:00
130399    38606    480    2017-10-25 21:40:00    2017-10-25 21:40:00
130400    38607    786    2017-10-25 08:22:00    2017-10-25 08:22:00
130401    38607    767    2017-10-25 15:46:00    2017-10-25 15:46:00
130402    38607    538    2017-10-25 19:54:00    2017-10-25 19:54:00
130403    38607    907    2017-10-25 08:50:00    2017-10-25 08:50:00
130404    38607    801    2017-10-25 18:54:00    2017-10-25 18:54:00
130405    38608    941    2017-10-25 01:36:00    2017-10-25 01:36:00
130406    38608    638    2017-10-25 10:12:00    2017-10-25 10:12:00
130407    38608    749    2017-10-25 23:20:00    2017-10-25 23:20:00
130408    38608    706    2017-10-25 02:02:00    2017-10-25 02:02:00
130409    38608    634    2017-10-25 19:28:00    2017-10-25 19:28:00
130410    38609    704    2017-10-25 21:57:00    2017-10-25 21:57:00
130411    38609    464    2017-10-25 06:05:00    2017-10-25 06:05:00
130412    38609    787    2017-10-25 11:47:00    2017-10-25 11:47:00
130413    38609    923    2017-10-25 13:56:00    2017-10-25 13:56:00
130414    38609    921    2017-10-25 12:09:00    2017-10-25 12:09:00
130415    38610    941    2017-10-25 05:18:00    2017-10-25 05:18:00
130416    38610    471    2017-10-25 05:23:00    2017-10-25 05:23:00
130417    38610    691    2017-10-25 05:35:00    2017-10-25 05:35:00
130418    38610    558    2017-10-25 02:37:00    2017-10-25 02:37:00
130419    38610    823    2017-10-25 20:36:00    2017-10-25 20:36:00
130420    38611    501    2017-10-25 06:44:00    2017-10-25 06:44:00
130421    38611    719    2017-10-25 20:54:00    2017-10-25 20:54:00
130422    38611    824    2017-10-25 17:26:00    2017-10-25 17:26:00
130423    38611    487    2017-10-25 19:03:00    2017-10-25 19:03:00
130424    38611    913    2017-10-25 20:31:00    2017-10-25 20:31:00
130425    38612    752    2017-10-25 07:43:00    2017-10-25 07:43:00
130426    38612    853    2017-10-25 13:36:00    2017-10-25 13:36:00
130427    38612    597    2017-10-25 10:21:00    2017-10-25 10:21:00
130428    38612    474    2017-10-25 19:19:00    2017-10-25 19:19:00
130429    38612    676    2017-10-25 06:55:00    2017-10-25 06:55:00
130430    38613    715    2017-10-25 20:07:00    2017-10-25 20:07:00
130431    38613    946    2017-10-25 16:03:00    2017-10-25 16:03:00
130432    38613    836    2017-10-25 18:02:00    2017-10-25 18:02:00
130433    38613    667    2017-10-25 10:18:00    2017-10-25 10:18:00
130434    38613    639    2017-10-25 05:07:00    2017-10-25 05:07:00
130435    38614    952    2017-10-25 03:00:00    2017-10-25 03:00:00
130436    38614    547    2017-10-25 14:00:00    2017-10-25 14:00:00
130437    38614    646    2017-10-25 17:52:00    2017-10-25 17:52:00
130438    38614    834    2017-10-25 10:26:00    2017-10-25 10:26:00
130439    38614    520    2017-10-25 18:45:00    2017-10-25 18:45:00
130440    38615    674    2017-10-25 19:28:00    2017-10-25 19:28:00
130441    38615    813    2017-10-25 06:50:00    2017-10-25 06:50:00
130442    38615    732    2017-10-25 14:29:00    2017-10-25 14:29:00
130443    38615    748    2017-10-25 15:22:00    2017-10-25 15:22:00
130444    38615    618    2017-10-25 11:25:00    2017-10-25 11:25:00
130445    38616    907    2017-10-25 22:06:00    2017-10-25 22:06:00
130446    38616    463    2017-10-25 23:23:00    2017-10-25 23:23:00
130447    38616    543    2017-10-25 10:06:00    2017-10-25 10:06:00
130448    38616    738    2017-10-25 19:05:00    2017-10-25 19:05:00
130449    38616    773    2017-10-25 12:38:00    2017-10-25 12:38:00
130450    38617    856    2017-10-25 06:39:00    2017-10-25 06:39:00
130451    38617    871    2017-10-25 19:26:00    2017-10-25 19:26:00
130452    38617    521    2017-10-25 22:47:00    2017-10-25 22:47:00
130453    38617    883    2017-10-25 18:32:00    2017-10-25 18:32:00
130454    38617    839    2017-10-25 23:18:00    2017-10-25 23:18:00
130455    38618    928    2017-10-25 06:23:00    2017-10-25 06:23:00
130456    38618    779    2017-10-25 22:11:00    2017-10-25 22:11:00
130457    38618    752    2017-10-25 04:24:00    2017-10-25 04:24:00
130458    38618    914    2017-10-25 11:14:00    2017-10-25 11:14:00
130459    38618    787    2017-10-25 05:13:00    2017-10-25 05:13:00
130460    38619    786    2017-10-25 01:06:00    2017-10-25 01:06:00
130461    38619    634    2017-10-25 09:14:00    2017-10-25 09:14:00
130462    38619    642    2017-10-25 09:21:00    2017-10-25 09:21:00
130463    38619    897    2017-10-25 04:05:00    2017-10-25 04:05:00
130464    38619    511    2017-10-25 22:42:00    2017-10-25 22:42:00
130465    38620    881    2017-10-25 23:04:00    2017-10-25 23:04:00
130466    38620    842    2017-10-25 21:50:00    2017-10-25 21:50:00
130467    38620    646    2017-10-25 12:18:00    2017-10-25 12:18:00
130468    38620    912    2017-10-25 18:58:00    2017-10-25 18:58:00
130469    38620    803    2017-10-25 15:14:00    2017-10-25 15:14:00
130470    38621    777    2017-10-25 07:15:00    2017-10-25 07:15:00
130471    38621    506    2017-10-25 16:11:00    2017-10-25 16:11:00
130472    38621    672    2017-10-25 23:44:00    2017-10-25 23:44:00
130473    38621    477    2017-10-25 08:43:00    2017-10-25 08:43:00
130474    38621    902    2017-10-25 12:15:00    2017-10-25 12:15:00
130475    38622    900    2017-10-25 03:40:00    2017-10-25 03:40:00
130476    38622    758    2017-10-25 23:39:00    2017-10-25 23:39:00
130477    38622    522    2017-10-25 11:08:00    2017-10-25 11:08:00
130478    38622    899    2017-10-25 06:09:00    2017-10-25 06:09:00
130479    38622    522    2017-10-25 03:45:00    2017-10-25 03:45:00
130480    38623    713    2017-10-25 06:53:00    2017-10-25 06:53:00
130481    38623    514    2017-10-25 14:23:00    2017-10-25 14:23:00
130482    38623    835    2017-10-25 06:19:00    2017-10-25 06:19:00
130483    38623    631    2017-10-25 04:44:00    2017-10-25 04:44:00
130484    38623    745    2017-10-25 11:00:00    2017-10-25 11:00:00
130485    38624    504    2017-10-25 02:28:00    2017-10-25 02:28:00
130486    38624    674    2017-10-25 17:41:00    2017-10-25 17:41:00
130487    38624    723    2017-10-25 23:40:00    2017-10-25 23:40:00
130488    38624    833    2017-10-25 18:28:00    2017-10-25 18:28:00
130489    38624    571    2017-10-25 22:48:00    2017-10-25 22:48:00
130490    38625    686    2017-10-25 19:54:00    2017-10-25 19:54:00
130491    38625    665    2017-10-25 03:27:00    2017-10-25 03:27:00
130492    38625    524    2017-10-25 17:50:00    2017-10-25 17:50:00
130493    38625    949    2017-10-25 18:24:00    2017-10-25 18:24:00
130494    38625    628    2017-10-25 17:50:00    2017-10-25 17:50:00
130495    38626    472    2017-10-25 16:05:00    2017-10-25 16:05:00
130496    38626    588    2017-10-25 03:12:00    2017-10-25 03:12:00
130497    38626    753    2017-10-25 13:46:00    2017-10-25 13:46:00
130498    38626    574    2017-10-25 22:01:00    2017-10-25 22:01:00
130499    38626    683    2017-10-25 10:30:00    2017-10-25 10:30:00
130500    38627    739    2017-10-25 16:01:00    2017-10-25 16:01:00
130501    38627    503    2017-10-25 09:25:00    2017-10-25 09:25:00
130502    38627    744    2017-10-25 16:59:00    2017-10-25 16:59:00
130503    38627    467    2017-10-25 12:48:00    2017-10-25 12:48:00
130504    38627    682    2017-10-25 02:56:00    2017-10-25 02:56:00
130505    38628    749    2017-10-25 03:08:00    2017-10-25 03:08:00
130506    38628    886    2017-10-25 05:50:00    2017-10-25 05:50:00
130507    38628    782    2017-10-25 05:14:00    2017-10-25 05:14:00
130508    38628    554    2017-10-25 20:43:00    2017-10-25 20:43:00
130509    38628    650    2017-10-25 05:28:00    2017-10-25 05:28:00
130510    38629    725    2017-10-25 23:41:00    2017-10-25 23:41:00
130511    38629    763    2017-10-25 05:32:00    2017-10-25 05:32:00
130512    38629    835    2017-10-25 22:35:00    2017-10-25 22:35:00
130513    38629    690    2017-10-25 02:07:00    2017-10-25 02:07:00
130514    38629    955    2017-10-25 15:34:00    2017-10-25 15:34:00
130515    38630    634    2017-10-25 16:06:00    2017-10-25 16:06:00
130516    38630    546    2017-10-25 04:19:00    2017-10-25 04:19:00
130517    38630    484    2017-10-25 14:07:00    2017-10-25 14:07:00
130518    38630    541    2017-10-25 03:10:00    2017-10-25 03:10:00
130519    38630    650    2017-10-25 09:31:00    2017-10-25 09:31:00
130520    38631    921    2017-10-25 11:03:00    2017-10-25 11:03:00
130521    38631    712    2017-10-25 12:21:00    2017-10-25 12:21:00
130522    38631    717    2017-10-25 19:10:00    2017-10-25 19:10:00
130523    38631    663    2017-10-25 16:56:00    2017-10-25 16:56:00
130524    38631    605    2017-10-25 21:20:00    2017-10-25 21:20:00
130525    38632    576    2017-10-25 08:30:00    2017-10-25 08:30:00
130526    38632    743    2017-10-25 20:10:00    2017-10-25 20:10:00
130527    38632    565    2017-10-25 20:30:00    2017-10-25 20:30:00
130528    38632    463    2017-10-25 11:21:00    2017-10-25 11:21:00
130529    38632    553    2017-10-25 11:19:00    2017-10-25 11:19:00
130530    38633    697    2017-10-25 02:54:00    2017-10-25 02:54:00
130531    38633    616    2017-10-25 19:34:00    2017-10-25 19:34:00
130532    38633    805    2017-10-25 17:15:00    2017-10-25 17:15:00
130533    38633    533    2017-10-25 12:16:00    2017-10-25 12:16:00
130534    38633    769    2017-10-25 15:00:00    2017-10-25 15:00:00
130535    38634    876    2017-10-25 07:57:00    2017-10-25 07:57:00
130536    38634    464    2017-10-25 18:00:00    2017-10-25 18:00:00
130537    38634    507    2017-10-25 17:21:00    2017-10-25 17:21:00
130538    38634    616    2017-10-25 06:07:00    2017-10-25 06:07:00
130539    38634    809    2017-10-25 14:08:00    2017-10-25 14:08:00
130540    38635    818    2017-10-25 13:27:00    2017-10-25 13:27:00
130541    38635    696    2017-10-25 04:39:00    2017-10-25 04:39:00
130542    38635    833    2017-10-25 21:00:00    2017-10-25 21:00:00
130543    38635    731    2017-10-25 21:29:00    2017-10-25 21:29:00
130544    38635    822    2017-10-25 19:30:00    2017-10-25 19:30:00
130545    38636    559    2017-10-25 03:58:00    2017-10-25 03:58:00
130546    38636    890    2017-10-25 18:17:00    2017-10-25 18:17:00
130547    38636    532    2017-10-25 06:10:00    2017-10-25 06:10:00
130548    38636    528    2017-10-25 06:48:00    2017-10-25 06:48:00
130549    38636    921    2017-10-25 18:53:00    2017-10-25 18:53:00
130550    38637    707    2017-10-25 18:12:00    2017-10-25 18:12:00
130551    38637    757    2017-10-25 09:22:00    2017-10-25 09:22:00
130552    38637    679    2017-10-25 07:49:00    2017-10-25 07:49:00
130553    38637    774    2017-10-25 02:33:00    2017-10-25 02:33:00
130554    38637    559    2017-10-25 17:20:00    2017-10-25 17:20:00
130555    38638    839    2017-10-25 07:01:00    2017-10-25 07:01:00
130556    38638    750    2017-10-25 12:40:00    2017-10-25 12:40:00
130557    38638    939    2017-10-25 04:01:00    2017-10-25 04:01:00
130558    38638    584    2017-10-25 16:29:00    2017-10-25 16:29:00
130559    38638    544    2017-10-25 12:57:00    2017-10-25 12:57:00
130560    38639    644    2017-10-25 08:27:00    2017-10-25 08:27:00
130561    38639    793    2017-10-25 19:01:00    2017-10-25 19:01:00
130562    38639    667    2017-10-25 21:02:00    2017-10-25 21:02:00
130563    38639    563    2017-10-25 15:16:00    2017-10-25 15:16:00
130564    38639    852    2017-10-25 07:36:00    2017-10-25 07:36:00
130565    38640    951    2017-10-25 21:29:00    2017-10-25 21:29:00
130566    38640    783    2017-10-25 04:13:00    2017-10-25 04:13:00
130567    38640    906    2017-10-25 14:28:00    2017-10-25 14:28:00
130568    38640    656    2017-10-25 21:38:00    2017-10-25 21:38:00
130569    38640    889    2017-10-25 07:13:00    2017-10-25 07:13:00
130570    38641    480    2017-10-25 05:59:00    2017-10-25 05:59:00
130571    38641    746    2017-10-25 19:43:00    2017-10-25 19:43:00
130572    38641    925    2017-10-25 05:22:00    2017-10-25 05:22:00
130573    38641    775    2017-10-25 14:10:00    2017-10-25 14:10:00
130574    38641    736    2017-10-25 05:09:00    2017-10-25 05:09:00
130575    38642    858    2017-10-25 03:04:00    2017-10-25 03:04:00
130576    38642    919    2017-10-25 18:29:00    2017-10-25 18:29:00
130577    38642    677    2017-10-25 08:51:00    2017-10-25 08:51:00
130578    38642    551    2017-10-25 14:58:00    2017-10-25 14:58:00
130579    38642    475    2017-10-25 13:49:00    2017-10-25 13:49:00
130580    38643    938    2017-10-25 08:34:00    2017-10-25 08:34:00
130581    38643    755    2017-10-25 03:51:00    2017-10-25 03:51:00
130582    38643    831    2017-10-25 20:06:00    2017-10-25 20:06:00
130583    38643    853    2017-10-25 13:51:00    2017-10-25 13:51:00
130584    38643    476    2017-10-25 14:17:00    2017-10-25 14:17:00
130585    38644    879    2017-10-25 12:12:00    2017-10-25 12:12:00
130586    38644    708    2017-10-25 06:03:00    2017-10-25 06:03:00
130587    38644    824    2017-10-25 01:39:00    2017-10-25 01:39:00
130588    38644    756    2017-10-25 12:08:00    2017-10-25 12:08:00
130589    38644    707    2017-10-25 01:21:00    2017-10-25 01:21:00
130590    38645    903    2017-10-25 16:03:00    2017-10-25 16:03:00
130591    38645    575    2017-10-25 14:21:00    2017-10-25 14:21:00
130592    38645    635    2017-10-25 13:18:00    2017-10-25 13:18:00
130593    38645    516    2017-10-25 21:12:00    2017-10-25 21:12:00
130594    38645    950    2017-10-25 22:50:00    2017-10-25 22:50:00
130595    38646    586    2017-10-25 06:31:00    2017-10-25 06:31:00
130596    38646    825    2017-10-25 22:30:00    2017-10-25 22:30:00
130597    38646    669    2017-10-25 22:09:00    2017-10-25 22:09:00
130598    38646    922    2017-10-25 10:52:00    2017-10-25 10:52:00
130599    38646    914    2017-10-25 08:53:00    2017-10-25 08:53:00
130600    38647    864    2017-10-25 12:32:00    2017-10-25 12:32:00
130601    38647    950    2017-10-25 03:38:00    2017-10-25 03:38:00
130602    38647    891    2017-10-25 21:07:00    2017-10-25 21:07:00
130603    38647    518    2017-10-25 20:59:00    2017-10-25 20:59:00
130604    38647    535    2017-10-25 08:36:00    2017-10-25 08:36:00
130605    38648    586    2017-10-25 22:43:00    2017-10-25 22:43:00
130606    38648    509    2017-10-25 20:14:00    2017-10-25 20:14:00
130607    38648    487    2017-10-25 23:01:00    2017-10-25 23:01:00
130608    38648    705    2017-10-25 10:06:00    2017-10-25 10:06:00
130609    38648    492    2017-10-25 15:01:00    2017-10-25 15:01:00
130610    38649    524    2017-10-25 15:05:00    2017-10-25 15:05:00
130611    38649    614    2017-10-25 06:39:00    2017-10-25 06:39:00
130612    38649    873    2017-10-25 13:18:00    2017-10-25 13:18:00
130613    38649    648    2017-10-25 13:28:00    2017-10-25 13:28:00
130614    38649    562    2017-10-25 03:14:00    2017-10-25 03:14:00
130615    38650    803    2017-10-25 06:10:00    2017-10-25 06:10:00
130616    38650    881    2017-10-25 23:51:00    2017-10-25 23:51:00
130617    38650    873    2017-10-25 18:02:00    2017-10-25 18:02:00
130618    38650    676    2017-10-25 05:27:00    2017-10-25 05:27:00
130619    38650    507    2017-10-25 16:08:00    2017-10-25 16:08:00
130620    38651    578    2017-10-25 05:09:00    2017-10-25 05:09:00
130621    38651    477    2017-10-25 13:23:00    2017-10-25 13:23:00
130622    38651    568    2017-10-25 19:51:00    2017-10-25 19:51:00
130623    38651    828    2017-10-25 14:33:00    2017-10-25 14:33:00
130624    38651    913    2017-10-25 02:33:00    2017-10-25 02:33:00
130625    38652    813    2017-10-25 17:45:00    2017-10-25 17:45:00
130626    38652    922    2017-10-25 19:38:00    2017-10-25 19:38:00
130627    38652    469    2017-10-25 07:46:00    2017-10-25 07:46:00
130628    38652    880    2017-10-25 20:25:00    2017-10-25 20:25:00
130629    38652    631    2017-10-25 05:01:00    2017-10-25 05:01:00
130630    38653    839    2017-10-25 02:12:00    2017-10-25 02:12:00
130631    38653    764    2017-10-25 07:55:00    2017-10-25 07:55:00
130632    38653    862    2017-10-25 08:59:00    2017-10-25 08:59:00
130633    38653    948    2017-10-25 20:40:00    2017-10-25 20:40:00
130634    38653    659    2017-10-25 08:50:00    2017-10-25 08:50:00
130635    38654    629    2017-10-25 16:58:00    2017-10-25 16:58:00
130636    38654    726    2017-10-25 21:48:00    2017-10-25 21:48:00
130637    38654    772    2017-10-25 14:47:00    2017-10-25 14:47:00
130638    38654    497    2017-10-25 20:36:00    2017-10-25 20:36:00
130639    38654    735    2017-10-25 11:50:00    2017-10-25 11:50:00
130640    38655    781    2017-10-25 03:25:00    2017-10-25 03:25:00
130641    38655    848    2017-10-25 02:24:00    2017-10-25 02:24:00
130642    38655    889    2017-10-25 14:32:00    2017-10-25 14:32:00
130643    38655    504    2017-10-25 12:47:00    2017-10-25 12:47:00
130644    38655    840    2017-10-25 11:45:00    2017-10-25 11:45:00
130645    38656    488    2017-10-25 16:42:00    2017-10-25 16:42:00
130646    38656    782    2017-10-25 10:37:00    2017-10-25 10:37:00
130647    38656    914    2017-10-25 03:55:00    2017-10-25 03:55:00
130648    38656    758    2017-10-25 16:09:00    2017-10-25 16:09:00
130649    38656    845    2017-10-25 13:52:00    2017-10-25 13:52:00
130650    38657    938    2017-10-26 16:04:00    2017-10-26 16:04:00
130651    38657    701    2017-10-26 07:11:00    2017-10-26 07:11:00
130652    38657    717    2017-10-26 02:34:00    2017-10-26 02:34:00
130653    38657    844    2017-10-26 23:17:00    2017-10-26 23:17:00
130654    38657    942    2017-10-26 09:12:00    2017-10-26 09:12:00
130655    38658    668    2017-10-26 12:22:00    2017-10-26 12:22:00
130656    38658    557    2017-10-26 03:57:00    2017-10-26 03:57:00
130657    38658    812    2017-10-26 02:10:00    2017-10-26 02:10:00
130658    38658    494    2017-10-26 09:23:00    2017-10-26 09:23:00
130659    38658    507    2017-10-26 13:43:00    2017-10-26 13:43:00
130660    38659    847    2017-10-26 20:24:00    2017-10-26 20:24:00
130661    38659    880    2017-10-26 11:48:00    2017-10-26 11:48:00
130662    38659    956    2017-10-26 20:26:00    2017-10-26 20:26:00
130663    38659    809    2017-10-26 18:37:00    2017-10-26 18:37:00
130664    38659    545    2017-10-26 20:48:00    2017-10-26 20:48:00
130665    38660    580    2017-10-26 13:56:00    2017-10-26 13:56:00
130666    38660    691    2017-10-26 03:54:00    2017-10-26 03:54:00
130667    38660    556    2017-10-26 15:12:00    2017-10-26 15:12:00
130668    38660    839    2017-10-26 22:47:00    2017-10-26 22:47:00
130669    38660    492    2017-10-26 17:34:00    2017-10-26 17:34:00
130670    38661    580    2017-10-26 14:01:00    2017-10-26 14:01:00
130671    38661    779    2017-10-26 05:58:00    2017-10-26 05:58:00
130672    38661    593    2017-10-26 23:32:00    2017-10-26 23:32:00
130673    38661    794    2017-10-26 09:28:00    2017-10-26 09:28:00
130674    38661    753    2017-10-26 03:29:00    2017-10-26 03:29:00
130675    38662    492    2017-10-26 17:07:00    2017-10-26 17:07:00
130676    38662    633    2017-10-26 09:40:00    2017-10-26 09:40:00
130677    38662    602    2017-10-26 16:11:00    2017-10-26 16:11:00
130678    38662    831    2017-10-26 11:49:00    2017-10-26 11:49:00
130679    38662    479    2017-10-26 21:44:00    2017-10-26 21:44:00
130680    38663    759    2017-10-26 05:51:00    2017-10-26 05:51:00
130681    38663    674    2017-10-26 08:18:00    2017-10-26 08:18:00
130682    38663    844    2017-10-26 08:35:00    2017-10-26 08:35:00
130683    38663    642    2017-10-26 08:12:00    2017-10-26 08:12:00
130684    38663    566    2017-10-26 13:17:00    2017-10-26 13:17:00
130685    38664    960    2017-10-26 02:00:00    2017-10-26 02:00:00
130686    38664    507    2017-10-26 12:23:00    2017-10-26 12:23:00
130687    38664    787    2017-10-26 02:45:00    2017-10-26 02:45:00
130688    38664    484    2017-10-26 06:33:00    2017-10-26 06:33:00
130689    38664    846    2017-10-26 15:58:00    2017-10-26 15:58:00
130690    38665    825    2017-10-26 07:22:00    2017-10-26 07:22:00
130691    38665    615    2017-10-26 01:37:00    2017-10-26 01:37:00
130692    38665    692    2017-10-26 06:42:00    2017-10-26 06:42:00
130693    38665    883    2017-10-26 12:07:00    2017-10-26 12:07:00
130694    38665    473    2017-10-26 08:32:00    2017-10-26 08:32:00
130695    38666    922    2017-10-26 05:02:00    2017-10-26 05:02:00
130696    38666    509    2017-10-26 22:25:00    2017-10-26 22:25:00
130697    38666    495    2017-10-26 11:44:00    2017-10-26 11:44:00
130698    38666    942    2017-10-26 07:30:00    2017-10-26 07:30:00
130699    38666    925    2017-10-26 21:54:00    2017-10-26 21:54:00
130700    38667    499    2017-10-26 22:22:00    2017-10-26 22:22:00
130701    38667    926    2017-10-26 08:45:00    2017-10-26 08:45:00
130702    38667    555    2017-10-26 18:51:00    2017-10-26 18:51:00
130703    38667    769    2017-10-26 07:16:00    2017-10-26 07:16:00
130704    38667    805    2017-10-26 22:13:00    2017-10-26 22:13:00
130705    38668    821    2017-10-26 03:39:00    2017-10-26 03:39:00
130706    38668    590    2017-10-26 06:30:00    2017-10-26 06:30:00
130707    38668    747    2017-10-26 13:00:00    2017-10-26 13:00:00
130708    38668    476    2017-10-26 11:36:00    2017-10-26 11:36:00
130709    38668    944    2017-10-26 13:40:00    2017-10-26 13:40:00
130710    38669    738    2017-10-26 21:00:00    2017-10-26 21:00:00
130711    38669    620    2017-10-26 04:32:00    2017-10-26 04:32:00
130712    38669    937    2017-10-26 03:15:00    2017-10-26 03:15:00
130713    38669    595    2017-10-26 07:37:00    2017-10-26 07:37:00
130714    38669    745    2017-10-26 05:27:00    2017-10-26 05:27:00
130715    38670    747    2017-10-26 01:57:00    2017-10-26 01:57:00
130716    38670    799    2017-10-26 21:25:00    2017-10-26 21:25:00
130717    38670    708    2017-10-26 12:39:00    2017-10-26 12:39:00
130718    38670    521    2017-10-26 01:33:00    2017-10-26 01:33:00
130719    38670    713    2017-10-26 09:47:00    2017-10-26 09:47:00
130720    38671    710    2017-10-26 01:27:00    2017-10-26 01:27:00
130721    38671    613    2017-10-26 20:59:00    2017-10-26 20:59:00
130722    38671    675    2017-10-26 06:31:00    2017-10-26 06:31:00
130723    38671    536    2017-10-26 11:26:00    2017-10-26 11:26:00
130724    38671    864    2017-10-26 05:56:00    2017-10-26 05:56:00
130725    38672    480    2017-10-26 17:59:00    2017-10-26 17:59:00
130726    38672    529    2017-10-26 12:14:00    2017-10-26 12:14:00
130727    38672    885    2017-10-26 23:44:00    2017-10-26 23:44:00
130728    38672    906    2017-10-26 19:24:00    2017-10-26 19:24:00
130729    38672    596    2017-10-26 20:53:00    2017-10-26 20:53:00
130730    38673    885    2017-10-26 04:45:00    2017-10-26 04:45:00
130731    38673    469    2017-10-26 17:53:00    2017-10-26 17:53:00
130732    38673    473    2017-10-26 13:52:00    2017-10-26 13:52:00
130733    38673    509    2017-10-26 20:28:00    2017-10-26 20:28:00
130734    38673    692    2017-10-26 14:07:00    2017-10-26 14:07:00
130735    38674    761    2017-10-26 20:18:00    2017-10-26 20:18:00
130736    38674    697    2017-10-26 15:07:00    2017-10-26 15:07:00
130737    38674    934    2017-10-26 19:03:00    2017-10-26 19:03:00
130738    38674    659    2017-10-26 20:39:00    2017-10-26 20:39:00
130739    38674    868    2017-10-26 05:49:00    2017-10-26 05:49:00
130740    38675    823    2017-10-26 21:27:00    2017-10-26 21:27:00
130741    38675    760    2017-10-26 22:16:00    2017-10-26 22:16:00
130742    38675    618    2017-10-26 18:04:00    2017-10-26 18:04:00
130743    38675    792    2017-10-26 08:57:00    2017-10-26 08:57:00
130744    38675    486    2017-10-26 09:23:00    2017-10-26 09:23:00
130745    38676    628    2017-10-26 04:05:00    2017-10-26 04:05:00
130746    38676    625    2017-10-26 10:51:00    2017-10-26 10:51:00
130747    38676    768    2017-10-26 17:44:00    2017-10-26 17:44:00
130748    38676    918    2017-10-26 05:59:00    2017-10-26 05:59:00
130749    38676    855    2017-10-26 14:27:00    2017-10-26 14:27:00
130750    38677    583    2017-10-26 12:08:00    2017-10-26 12:08:00
130751    38677    676    2017-10-26 23:01:00    2017-10-26 23:01:00
130752    38677    894    2017-10-26 07:37:00    2017-10-26 07:37:00
130753    38677    561    2017-10-26 20:33:00    2017-10-26 20:33:00
130754    38677    730    2017-10-26 18:53:00    2017-10-26 18:53:00
130755    38678    488    2017-10-26 13:20:00    2017-10-26 13:20:00
130756    38678    941    2017-10-26 09:28:00    2017-10-26 09:28:00
130757    38678    466    2017-10-26 17:19:00    2017-10-26 17:19:00
130758    38678    591    2017-10-26 11:00:00    2017-10-26 11:00:00
130759    38678    494    2017-10-26 20:49:00    2017-10-26 20:49:00
130760    38679    869    2017-10-26 10:43:00    2017-10-26 10:43:00
130761    38679    479    2017-10-26 20:59:00    2017-10-26 20:59:00
130762    38679    807    2017-10-26 04:48:00    2017-10-26 04:48:00
130763    38679    581    2017-10-26 03:04:00    2017-10-26 03:04:00
130764    38679    785    2017-10-26 07:00:00    2017-10-26 07:00:00
130765    38680    668    2017-10-26 05:27:00    2017-10-26 05:27:00
130766    38680    902    2017-10-26 02:02:00    2017-10-26 02:02:00
130767    38680    698    2017-10-26 11:53:00    2017-10-26 11:53:00
130768    38680    501    2017-10-26 02:56:00    2017-10-26 02:56:00
130769    38680    607    2017-10-26 22:20:00    2017-10-26 22:20:00
130770    38681    664    2017-10-26 02:49:00    2017-10-26 02:49:00
130771    38681    716    2017-10-26 05:03:00    2017-10-26 05:03:00
130772    38681    467    2017-10-26 06:44:00    2017-10-26 06:44:00
130773    38681    939    2017-10-26 04:00:00    2017-10-26 04:00:00
130774    38681    832    2017-10-26 08:02:00    2017-10-26 08:02:00
130775    38682    519    2017-10-26 08:14:00    2017-10-26 08:14:00
130776    38682    470    2017-10-26 15:55:00    2017-10-26 15:55:00
130777    38682    809    2017-10-26 02:36:00    2017-10-26 02:36:00
130778    38682    662    2017-10-26 19:13:00    2017-10-26 19:13:00
130779    38682    896    2017-10-26 14:52:00    2017-10-26 14:52:00
130780    38683    697    2017-10-26 02:24:00    2017-10-26 02:24:00
130781    38683    814    2017-10-26 08:55:00    2017-10-26 08:55:00
130782    38683    565    2017-10-26 02:46:00    2017-10-26 02:46:00
130783    38683    523    2017-10-26 16:01:00    2017-10-26 16:01:00
130784    38683    804    2017-10-26 05:46:00    2017-10-26 05:46:00
130785    38684    884    2017-10-26 04:37:00    2017-10-26 04:37:00
130786    38684    685    2017-10-26 16:44:00    2017-10-26 16:44:00
130787    38684    699    2017-10-26 10:38:00    2017-10-26 10:38:00
130788    38684    875    2017-10-26 01:59:00    2017-10-26 01:59:00
130789    38684    733    2017-10-26 12:34:00    2017-10-26 12:34:00
130790    38685    468    2017-10-26 21:29:00    2017-10-26 21:29:00
130791    38685    940    2017-10-26 17:30:00    2017-10-26 17:30:00
130792    38685    680    2017-10-26 16:14:00    2017-10-26 16:14:00
130793    38685    896    2017-10-26 07:03:00    2017-10-26 07:03:00
130794    38685    842    2017-10-26 15:39:00    2017-10-26 15:39:00
130795    38686    891    2017-10-26 20:14:00    2017-10-26 20:14:00
130796    38686    463    2017-10-26 13:57:00    2017-10-26 13:57:00
130797    38686    740    2017-10-26 16:19:00    2017-10-26 16:19:00
130798    38686    670    2017-10-26 02:58:00    2017-10-26 02:58:00
130799    38686    555    2017-10-26 14:51:00    2017-10-26 14:51:00
130800    38687    622    2017-10-26 02:04:00    2017-10-26 02:04:00
130801    38687    789    2017-10-26 18:07:00    2017-10-26 18:07:00
130802    38687    890    2017-10-26 22:47:00    2017-10-26 22:47:00
130803    38687    576    2017-10-26 09:21:00    2017-10-26 09:21:00
130804    38687    469    2017-10-26 05:06:00    2017-10-26 05:06:00
130805    38688    629    2017-10-26 15:41:00    2017-10-26 15:41:00
130806    38688    896    2017-10-26 07:46:00    2017-10-26 07:46:00
130807    38688    948    2017-10-26 19:12:00    2017-10-26 19:12:00
130808    38688    729    2017-10-26 14:16:00    2017-10-26 14:16:00
130809    38688    499    2017-10-26 02:01:00    2017-10-26 02:01:00
130810    38689    917    2017-10-26 17:43:00    2017-10-26 17:43:00
130811    38689    617    2017-10-26 18:17:00    2017-10-26 18:17:00
130812    38689    794    2017-10-26 06:04:00    2017-10-26 06:04:00
130813    38689    584    2017-10-26 08:54:00    2017-10-26 08:54:00
130814    38689    935    2017-10-26 20:31:00    2017-10-26 20:31:00
130815    38690    682    2017-10-26 01:16:00    2017-10-26 01:16:00
130816    38690    692    2017-10-26 21:06:00    2017-10-26 21:06:00
130817    38690    634    2017-10-26 13:51:00    2017-10-26 13:51:00
130818    38690    546    2017-10-26 02:51:00    2017-10-26 02:51:00
130819    38690    519    2017-10-26 13:16:00    2017-10-26 13:16:00
130820    38691    549    2017-10-26 17:53:00    2017-10-26 17:53:00
130821    38691    942    2017-10-26 04:07:00    2017-10-26 04:07:00
130822    38691    899    2017-10-26 22:08:00    2017-10-26 22:08:00
130823    38691    564    2017-10-26 02:56:00    2017-10-26 02:56:00
130824    38691    922    2017-10-26 05:06:00    2017-10-26 05:06:00
130825    38692    881    2017-10-26 18:58:00    2017-10-26 18:58:00
130826    38692    827    2017-10-26 03:09:00    2017-10-26 03:09:00
130827    38692    766    2017-10-26 18:27:00    2017-10-26 18:27:00
130828    38692    809    2017-10-26 20:49:00    2017-10-26 20:49:00
130829    38692    789    2017-10-26 08:57:00    2017-10-26 08:57:00
130830    38693    894    2017-10-26 18:23:00    2017-10-26 18:23:00
130831    38693    539    2017-10-26 19:00:00    2017-10-26 19:00:00
130832    38693    672    2017-10-26 01:56:00    2017-10-26 01:56:00
130833    38693    531    2017-10-26 05:30:00    2017-10-26 05:30:00
130834    38693    490    2017-10-26 11:13:00    2017-10-26 11:13:00
130835    38694    908    2017-10-26 10:48:00    2017-10-26 10:48:00
130836    38694    574    2017-10-26 06:49:00    2017-10-26 06:49:00
130837    38694    608    2017-10-26 09:26:00    2017-10-26 09:26:00
130838    38694    867    2017-10-26 15:50:00    2017-10-26 15:50:00
130839    38694    922    2017-10-26 23:03:00    2017-10-26 23:03:00
130840    38695    949    2017-10-26 11:52:00    2017-10-26 11:52:00
130841    38695    590    2017-10-26 01:05:00    2017-10-26 01:05:00
130842    38695    665    2017-10-26 02:22:00    2017-10-26 02:22:00
130843    38695    677    2017-10-26 15:44:00    2017-10-26 15:44:00
130844    38695    892    2017-10-26 15:49:00    2017-10-26 15:49:00
130845    38696    873    2017-10-26 06:50:00    2017-10-26 06:50:00
130846    38696    490    2017-10-26 14:25:00    2017-10-26 14:25:00
130847    38696    953    2017-10-26 17:47:00    2017-10-26 17:47:00
130848    38696    770    2017-10-26 06:13:00    2017-10-26 06:13:00
130849    38696    687    2017-10-26 05:08:00    2017-10-26 05:08:00
130850    38697    614    2017-10-26 05:47:00    2017-10-26 05:47:00
130851    38697    733    2017-10-26 09:59:00    2017-10-26 09:59:00
130852    38697    599    2017-10-26 01:50:00    2017-10-26 01:50:00
130853    38697    483    2017-10-26 06:05:00    2017-10-26 06:05:00
130854    38697    801    2017-10-26 04:28:00    2017-10-26 04:28:00
130855    38698    519    2017-10-26 01:22:00    2017-10-26 01:22:00
130856    38698    919    2017-10-26 09:34:00    2017-10-26 09:34:00
130857    38698    562    2017-10-26 10:03:00    2017-10-26 10:03:00
130858    38698    495    2017-10-26 16:26:00    2017-10-26 16:26:00
130859    38698    947    2017-10-26 01:57:00    2017-10-26 01:57:00
130860    38699    785    2017-10-26 01:17:00    2017-10-26 01:17:00
130861    38699    537    2017-10-26 08:28:00    2017-10-26 08:28:00
130862    38699    727    2017-10-26 11:00:00    2017-10-26 11:00:00
130863    38699    948    2017-10-26 18:39:00    2017-10-26 18:39:00
130864    38699    924    2017-10-26 14:06:00    2017-10-26 14:06:00
130865    38700    609    2017-10-26 18:19:00    2017-10-26 18:19:00
130866    38700    794    2017-10-26 23:36:00    2017-10-26 23:36:00
130867    38700    635    2017-10-26 07:37:00    2017-10-26 07:37:00
130868    38700    737    2017-10-26 15:31:00    2017-10-26 15:31:00
130869    38700    491    2017-10-26 01:55:00    2017-10-26 01:55:00
130870    38701    860    2017-10-26 05:27:00    2017-10-26 05:27:00
130871    38701    759    2017-10-26 04:08:00    2017-10-26 04:08:00
130872    38701    768    2017-10-26 11:04:00    2017-10-26 11:04:00
130873    38701    472    2017-10-26 23:35:00    2017-10-26 23:35:00
130874    38701    570    2017-10-26 10:58:00    2017-10-26 10:58:00
130875    38702    824    2017-10-26 09:23:00    2017-10-26 09:23:00
130876    38702    684    2017-10-26 03:30:00    2017-10-26 03:30:00
130877    38702    763    2017-10-26 10:06:00    2017-10-26 10:06:00
130878    38702    896    2017-10-26 05:44:00    2017-10-26 05:44:00
130879    38702    476    2017-10-26 10:43:00    2017-10-26 10:43:00
130880    38703    599    2017-10-26 08:14:00    2017-10-26 08:14:00
130881    38703    585    2017-10-26 14:12:00    2017-10-26 14:12:00
130882    38703    529    2017-10-26 22:01:00    2017-10-26 22:01:00
130883    38703    794    2017-10-26 10:53:00    2017-10-26 10:53:00
130884    38703    674    2017-10-26 18:32:00    2017-10-26 18:32:00
130885    38704    578    2017-10-26 05:21:00    2017-10-26 05:21:00
130886    38704    591    2017-10-26 11:04:00    2017-10-26 11:04:00
130887    38704    558    2017-10-26 12:06:00    2017-10-26 12:06:00
130888    38704    645    2017-10-26 06:50:00    2017-10-26 06:50:00
130889    38704    645    2017-10-26 07:10:00    2017-10-26 07:10:00
130890    38705    644    2017-10-26 16:50:00    2017-10-26 16:50:00
130891    38705    959    2017-10-26 23:36:00    2017-10-26 23:36:00
130892    38705    854    2017-10-26 22:35:00    2017-10-26 22:35:00
130893    38705    668    2017-10-26 05:15:00    2017-10-26 05:15:00
130894    38705    497    2017-10-26 04:15:00    2017-10-26 04:15:00
130895    38706    953    2017-10-26 11:10:00    2017-10-26 11:10:00
130896    38706    645    2017-10-26 09:53:00    2017-10-26 09:53:00
130897    38706    582    2017-10-26 11:12:00    2017-10-26 11:12:00
130898    38706    959    2017-10-26 06:47:00    2017-10-26 06:47:00
130899    38706    511    2017-10-26 02:26:00    2017-10-26 02:26:00
130900    38707    808    2017-10-26 18:56:00    2017-10-26 18:56:00
130901    38707    518    2017-10-26 14:22:00    2017-10-26 14:22:00
130902    38707    918    2017-10-26 20:59:00    2017-10-26 20:59:00
130903    38707    639    2017-10-26 01:36:00    2017-10-26 01:36:00
130904    38707    589    2017-10-26 11:30:00    2017-10-26 11:30:00
130905    38708    766    2017-10-26 02:31:00    2017-10-26 02:31:00
130906    38708    607    2017-10-26 20:00:00    2017-10-26 20:00:00
130907    38708    600    2017-10-26 20:38:00    2017-10-26 20:38:00
130908    38708    743    2017-10-26 11:34:00    2017-10-26 11:34:00
130909    38708    536    2017-10-26 17:51:00    2017-10-26 17:51:00
130910    38709    578    2017-10-26 15:50:00    2017-10-26 15:50:00
130911    38709    611    2017-10-26 14:28:00    2017-10-26 14:28:00
130912    38709    566    2017-10-26 01:36:00    2017-10-26 01:36:00
130913    38709    768    2017-10-26 21:26:00    2017-10-26 21:26:00
130914    38709    768    2017-10-26 23:24:00    2017-10-26 23:24:00
130915    38710    502    2017-10-26 02:11:00    2017-10-26 02:11:00
130916    38710    709    2017-10-26 05:35:00    2017-10-26 05:35:00
130917    38710    542    2017-10-26 06:50:00    2017-10-26 06:50:00
130918    38710    828    2017-10-26 14:21:00    2017-10-26 14:21:00
130919    38710    560    2017-10-26 12:12:00    2017-10-26 12:12:00
130920    38711    805    2017-10-26 11:31:00    2017-10-26 11:31:00
130921    38711    499    2017-10-26 13:28:00    2017-10-26 13:28:00
130922    38711    747    2017-10-26 19:09:00    2017-10-26 19:09:00
130923    38711    849    2017-10-26 07:24:00    2017-10-26 07:24:00
130924    38711    958    2017-10-26 21:08:00    2017-10-26 21:08:00
130925    38712    704    2017-10-26 22:22:00    2017-10-26 22:22:00
130926    38712    924    2017-10-26 21:00:00    2017-10-26 21:00:00
130927    38712    865    2017-10-26 19:56:00    2017-10-26 19:56:00
130928    38712    541    2017-10-26 09:39:00    2017-10-26 09:39:00
130929    38712    819    2017-10-26 20:06:00    2017-10-26 20:06:00
130930    38713    923    2017-10-26 21:10:00    2017-10-26 21:10:00
130931    38713    945    2017-10-26 19:22:00    2017-10-26 19:22:00
130932    38713    722    2017-10-26 03:14:00    2017-10-26 03:14:00
130933    38713    511    2017-10-26 09:01:00    2017-10-26 09:01:00
130934    38713    831    2017-10-26 23:53:00    2017-10-26 23:53:00
130935    38714    955    2017-10-26 12:52:00    2017-10-26 12:52:00
130936    38714    872    2017-10-26 06:25:00    2017-10-26 06:25:00
130937    38714    586    2017-10-26 08:50:00    2017-10-26 08:50:00
130938    38714    620    2017-10-26 14:17:00    2017-10-26 14:17:00
130939    38714    922    2017-10-26 10:40:00    2017-10-26 10:40:00
130940    38715    909    2017-10-26 10:38:00    2017-10-26 10:38:00
130941    38715    844    2017-10-26 05:29:00    2017-10-26 05:29:00
130942    38715    769    2017-10-26 04:32:00    2017-10-26 04:32:00
130943    38715    817    2017-10-26 10:00:00    2017-10-26 10:00:00
130944    38715    806    2017-10-26 11:18:00    2017-10-26 11:18:00
130945    38716    719    2017-10-26 21:35:00    2017-10-26 21:35:00
130946    38716    852    2017-10-26 10:17:00    2017-10-26 10:17:00
130947    38716    904    2017-10-26 22:49:00    2017-10-26 22:49:00
130948    38716    881    2017-10-26 14:58:00    2017-10-26 14:58:00
130949    38716    798    2017-10-26 02:19:00    2017-10-26 02:19:00
130950    38717    658    2017-10-26 08:27:00    2017-10-26 08:27:00
130951    38717    739    2017-10-26 05:48:00    2017-10-26 05:48:00
130952    38717    664    2017-10-26 13:20:00    2017-10-26 13:20:00
130953    38717    762    2017-10-26 19:31:00    2017-10-26 19:31:00
130954    38717    530    2017-10-26 21:48:00    2017-10-26 21:48:00
130955    38718    668    2017-10-26 13:52:00    2017-10-26 13:52:00
130956    38718    657    2017-10-26 02:30:00    2017-10-26 02:30:00
130957    38718    852    2017-10-26 07:26:00    2017-10-26 07:26:00
130958    38718    755    2017-10-26 04:35:00    2017-10-26 04:35:00
130959    38718    540    2017-10-26 13:56:00    2017-10-26 13:56:00
130960    38719    782    2017-10-26 23:57:00    2017-10-26 23:57:00
130961    38719    545    2017-10-26 02:11:00    2017-10-26 02:11:00
130962    38719    794    2017-10-26 23:40:00    2017-10-26 23:40:00
130963    38719    797    2017-10-26 02:13:00    2017-10-26 02:13:00
130964    38719    518    2017-10-26 16:46:00    2017-10-26 16:46:00
130965    38720    577    2017-10-26 10:16:00    2017-10-26 10:16:00
130966    38720    567    2017-10-26 03:32:00    2017-10-26 03:32:00
130967    38720    849    2017-10-26 23:52:00    2017-10-26 23:52:00
130968    38720    691    2017-10-26 05:54:00    2017-10-26 05:54:00
130969    38720    534    2017-10-26 23:44:00    2017-10-26 23:44:00
130970    38721    604    2017-10-26 19:18:00    2017-10-26 19:18:00
130971    38721    570    2017-10-26 19:32:00    2017-10-26 19:32:00
130972    38721    520    2017-10-26 17:16:00    2017-10-26 17:16:00
130973    38721    755    2017-10-26 04:30:00    2017-10-26 04:30:00
130974    38721    795    2017-10-26 02:35:00    2017-10-26 02:35:00
130975    38722    897    2017-10-26 11:20:00    2017-10-26 11:20:00
130976    38722    848    2017-10-26 19:16:00    2017-10-26 19:16:00
130977    38722    498    2017-10-26 06:43:00    2017-10-26 06:43:00
130978    38722    624    2017-10-26 13:04:00    2017-10-26 13:04:00
130979    38722    480    2017-10-26 03:17:00    2017-10-26 03:17:00
130980    38723    708    2017-10-26 09:00:00    2017-10-26 09:00:00
130981    38723    591    2017-10-26 11:48:00    2017-10-26 11:48:00
130982    38723    767    2017-10-26 19:56:00    2017-10-26 19:56:00
130983    38723    633    2017-10-26 08:56:00    2017-10-26 08:56:00
130984    38723    909    2017-10-26 09:23:00    2017-10-26 09:23:00
130985    38724    616    2017-10-26 10:12:00    2017-10-26 10:12:00
130986    38724    834    2017-10-26 04:06:00    2017-10-26 04:06:00
130987    38724    608    2017-10-26 20:11:00    2017-10-26 20:11:00
130988    38724    471    2017-10-26 22:43:00    2017-10-26 22:43:00
130989    38724    649    2017-10-26 08:34:00    2017-10-26 08:34:00
130990    38725    759    2017-10-26 18:36:00    2017-10-26 18:36:00
130991    38725    741    2017-10-26 09:06:00    2017-10-26 09:06:00
130992    38725    863    2017-10-26 06:32:00    2017-10-26 06:32:00
130993    38725    885    2017-10-26 09:31:00    2017-10-26 09:31:00
130994    38725    605    2017-10-26 13:17:00    2017-10-26 13:17:00
130995    38726    880    2017-10-26 13:48:00    2017-10-26 13:48:00
130996    38726    540    2017-10-26 12:56:00    2017-10-26 12:56:00
130997    38726    742    2017-10-26 16:03:00    2017-10-26 16:03:00
130998    38726    846    2017-10-26 15:50:00    2017-10-26 15:50:00
130999    38726    830    2017-10-26 14:15:00    2017-10-26 14:15:00
131000    38727    938    2017-10-26 01:16:00    2017-10-26 01:16:00
131001    38727    834    2017-10-26 15:41:00    2017-10-26 15:41:00
131002    38727    699    2017-10-26 09:43:00    2017-10-26 09:43:00
131003    38727    608    2017-10-26 18:52:00    2017-10-26 18:52:00
131004    38727    555    2017-10-26 17:43:00    2017-10-26 17:43:00
131005    38728    805    2017-10-26 17:43:00    2017-10-26 17:43:00
131006    38728    653    2017-10-26 17:55:00    2017-10-26 17:55:00
131007    38728    561    2017-10-26 22:50:00    2017-10-26 22:50:00
131008    38728    637    2017-10-26 17:05:00    2017-10-26 17:05:00
131009    38728    772    2017-10-26 07:53:00    2017-10-26 07:53:00
131010    38729    598    2017-10-26 15:45:00    2017-10-26 15:45:00
131011    38729    471    2017-10-26 01:41:00    2017-10-26 01:41:00
131012    38729    491    2017-10-26 18:34:00    2017-10-26 18:34:00
131013    38729    708    2017-10-26 18:04:00    2017-10-26 18:04:00
131014    38729    915    2017-10-26 17:00:00    2017-10-26 17:00:00
131015    38730    547    2017-10-26 09:44:00    2017-10-26 09:44:00
131016    38730    644    2017-10-26 16:48:00    2017-10-26 16:48:00
131017    38730    779    2017-10-26 01:23:00    2017-10-26 01:23:00
131018    38730    716    2017-10-26 10:37:00    2017-10-26 10:37:00
131019    38730    464    2017-10-26 19:09:00    2017-10-26 19:09:00
131020    38731    739    2017-10-26 11:54:00    2017-10-26 11:54:00
131021    38731    905    2017-10-26 21:28:00    2017-10-26 21:28:00
131022    38731    526    2017-10-26 12:34:00    2017-10-26 12:34:00
131023    38731    610    2017-10-26 09:56:00    2017-10-26 09:56:00
131024    38731    685    2017-10-26 20:56:00    2017-10-26 20:56:00
131025    38732    759    2017-10-26 23:21:00    2017-10-26 23:21:00
131026    38732    955    2017-10-26 18:49:00    2017-10-26 18:49:00
131027    38732    602    2017-10-26 14:46:00    2017-10-26 14:46:00
131028    38732    517    2017-10-26 16:11:00    2017-10-26 16:11:00
131029    38732    783    2017-10-26 03:31:00    2017-10-26 03:31:00
131030    38733    612    2017-10-26 04:24:00    2017-10-26 04:24:00
131031    38733    595    2017-10-26 09:25:00    2017-10-26 09:25:00
131032    38733    893    2017-10-26 07:23:00    2017-10-26 07:23:00
131033    38733    630    2017-10-26 04:40:00    2017-10-26 04:40:00
131034    38733    891    2017-10-26 08:40:00    2017-10-26 08:40:00
131035    38734    887    2017-10-26 09:34:00    2017-10-26 09:34:00
131036    38734    633    2017-10-26 22:26:00    2017-10-26 22:26:00
131037    38734    576    2017-10-26 09:25:00    2017-10-26 09:25:00
131038    38734    923    2017-10-26 16:33:00    2017-10-26 16:33:00
131039    38734    614    2017-10-26 09:26:00    2017-10-26 09:26:00
131040    38735    553    2017-10-26 10:53:00    2017-10-26 10:53:00
131041    38735    531    2017-10-26 11:29:00    2017-10-26 11:29:00
131042    38735    692    2017-10-26 02:14:00    2017-10-26 02:14:00
131043    38735    695    2017-10-26 05:16:00    2017-10-26 05:16:00
131044    38735    626    2017-10-26 05:00:00    2017-10-26 05:00:00
131045    38736    506    2017-10-26 15:44:00    2017-10-26 15:44:00
131046    38736    824    2017-10-26 10:45:00    2017-10-26 10:45:00
131047    38736    554    2017-10-26 01:19:00    2017-10-26 01:19:00
131048    38736    758    2017-10-26 05:41:00    2017-10-26 05:41:00
131049    38736    815    2017-10-26 01:22:00    2017-10-26 01:22:00
131050    38737    849    2017-10-26 06:04:00    2017-10-26 06:04:00
131051    38737    581    2017-10-26 23:49:00    2017-10-26 23:49:00
131052    38737    815    2017-10-26 08:23:00    2017-10-26 08:23:00
131053    38737    560    2017-10-26 20:49:00    2017-10-26 20:49:00
131054    38737    548    2017-10-26 06:21:00    2017-10-26 06:21:00
131055    38738    731    2017-10-27 11:10:00    2017-10-27 11:10:00
131056    38738    781    2017-10-27 02:35:00    2017-10-27 02:35:00
131057    38738    837    2017-10-27 22:08:00    2017-10-27 22:08:00
131058    38738    832    2017-10-27 04:33:00    2017-10-27 04:33:00
131059    38738    742    2017-10-27 13:22:00    2017-10-27 13:22:00
131060    38739    662    2017-10-27 07:42:00    2017-10-27 07:42:00
131061    38739    562    2017-10-27 15:43:00    2017-10-27 15:43:00
131062    38739    492    2017-10-27 20:23:00    2017-10-27 20:23:00
131063    38739    562    2017-10-27 22:11:00    2017-10-27 22:11:00
131064    38739    792    2017-10-27 08:54:00    2017-10-27 08:54:00
131065    38740    692    2017-10-27 23:42:00    2017-10-27 23:42:00
131066    38740    707    2017-10-27 19:39:00    2017-10-27 19:39:00
131067    38740    687    2017-10-27 20:43:00    2017-10-27 20:43:00
131068    38740    742    2017-10-27 09:17:00    2017-10-27 09:17:00
131069    38740    557    2017-10-27 20:25:00    2017-10-27 20:25:00
131070    38741    617    2017-10-27 14:13:00    2017-10-27 14:13:00
131071    38741    551    2017-10-27 22:31:00    2017-10-27 22:31:00
131072    38741    801    2017-10-27 23:37:00    2017-10-27 23:37:00
131073    38741    904    2017-10-27 22:59:00    2017-10-27 22:59:00
131074    38741    573    2017-10-27 20:17:00    2017-10-27 20:17:00
131075    38742    891    2017-10-27 04:31:00    2017-10-27 04:31:00
131076    38742    917    2017-10-27 18:15:00    2017-10-27 18:15:00
131077    38742    527    2017-10-27 05:49:00    2017-10-27 05:49:00
131078    38742    615    2017-10-27 13:16:00    2017-10-27 13:16:00
131079    38742    509    2017-10-27 04:47:00    2017-10-27 04:47:00
131080    38743    565    2017-10-27 16:44:00    2017-10-27 16:44:00
131081    38743    531    2017-10-27 12:26:00    2017-10-27 12:26:00
131082    38743    703    2017-10-27 20:30:00    2017-10-27 20:30:00
131083    38743    479    2017-10-27 14:57:00    2017-10-27 14:57:00
131084    38743    632    2017-10-27 16:37:00    2017-10-27 16:37:00
131085    38744    606    2017-10-27 16:14:00    2017-10-27 16:14:00
131086    38744    543    2017-10-27 14:19:00    2017-10-27 14:19:00
131087    38744    786    2017-10-27 17:52:00    2017-10-27 17:52:00
131088    38744    935    2017-10-27 21:08:00    2017-10-27 21:08:00
131089    38744    652    2017-10-27 22:12:00    2017-10-27 22:12:00
131090    38745    792    2017-10-27 18:35:00    2017-10-27 18:35:00
131091    38745    591    2017-10-27 05:38:00    2017-10-27 05:38:00
131092    38745    572    2017-10-27 12:43:00    2017-10-27 12:43:00
131093    38745    568    2017-10-27 03:09:00    2017-10-27 03:09:00
131094    38745    723    2017-10-27 15:46:00    2017-10-27 15:46:00
131095    38746    860    2017-10-27 09:32:00    2017-10-27 09:32:00
131096    38746    532    2017-10-27 07:34:00    2017-10-27 07:34:00
131097    38746    558    2017-10-27 18:38:00    2017-10-27 18:38:00
131098    38746    676    2017-10-27 18:57:00    2017-10-27 18:57:00
131099    38746    509    2017-10-27 04:26:00    2017-10-27 04:26:00
131100    38747    669    2017-10-27 19:19:00    2017-10-27 19:19:00
131101    38747    732    2017-10-27 13:35:00    2017-10-27 13:35:00
131102    38747    475    2017-10-27 05:15:00    2017-10-27 05:15:00
131103    38747    807    2017-10-27 13:38:00    2017-10-27 13:38:00
131104    38747    913    2017-10-27 07:01:00    2017-10-27 07:01:00
131105    38748    573    2017-10-27 04:05:00    2017-10-27 04:05:00
131106    38748    530    2017-10-27 02:51:00    2017-10-27 02:51:00
131107    38748    916    2017-10-27 03:15:00    2017-10-27 03:15:00
131108    38748    756    2017-10-27 01:52:00    2017-10-27 01:52:00
131109    38748    655    2017-10-27 15:19:00    2017-10-27 15:19:00
131110    38749    934    2017-10-27 04:08:00    2017-10-27 04:08:00
131111    38749    756    2017-10-27 04:56:00    2017-10-27 04:56:00
131112    38749    515    2017-10-27 07:07:00    2017-10-27 07:07:00
131113    38749    691    2017-10-27 09:59:00    2017-10-27 09:59:00
131114    38749    689    2017-10-27 20:13:00    2017-10-27 20:13:00
131115    38750    607    2017-10-27 04:40:00    2017-10-27 04:40:00
131116    38750    626    2017-10-27 07:56:00    2017-10-27 07:56:00
131117    38750    549    2017-10-27 04:19:00    2017-10-27 04:19:00
131118    38750    623    2017-10-27 20:38:00    2017-10-27 20:38:00
131119    38750    714    2017-10-27 13:44:00    2017-10-27 13:44:00
131120    38751    542    2017-10-27 10:16:00    2017-10-27 10:16:00
131121    38751    654    2017-10-27 11:30:00    2017-10-27 11:30:00
131122    38751    752    2017-10-27 20:01:00    2017-10-27 20:01:00
131123    38751    819    2017-10-27 03:42:00    2017-10-27 03:42:00
131124    38751    550    2017-10-27 19:53:00    2017-10-27 19:53:00
131125    38752    813    2017-10-27 09:22:00    2017-10-27 09:22:00
131126    38752    845    2017-10-27 02:00:00    2017-10-27 02:00:00
131127    38752    772    2017-10-27 13:31:00    2017-10-27 13:31:00
131128    38752    876    2017-10-27 21:52:00    2017-10-27 21:52:00
131129    38752    500    2017-10-27 09:21:00    2017-10-27 09:21:00
131130    38753    884    2017-10-27 06:18:00    2017-10-27 06:18:00
131131    38753    958    2017-10-27 18:16:00    2017-10-27 18:16:00
131132    38753    857    2017-10-27 13:34:00    2017-10-27 13:34:00
131133    38753    770    2017-10-27 05:55:00    2017-10-27 05:55:00
131134    38753    537    2017-10-27 02:37:00    2017-10-27 02:37:00
131135    38754    792    2017-10-27 05:04:00    2017-10-27 05:04:00
131136    38754    864    2017-10-27 10:16:00    2017-10-27 10:16:00
131137    38754    575    2017-10-27 19:31:00    2017-10-27 19:31:00
131138    38754    905    2017-10-27 23:07:00    2017-10-27 23:07:00
131139    38754    566    2017-10-27 03:19:00    2017-10-27 03:19:00
131140    38755    664    2017-10-27 17:47:00    2017-10-27 17:47:00
131141    38755    859    2017-10-27 11:31:00    2017-10-27 11:31:00
131142    38755    604    2017-10-27 07:31:00    2017-10-27 07:31:00
131143    38755    695    2017-10-27 10:59:00    2017-10-27 10:59:00
131144    38755    598    2017-10-27 18:11:00    2017-10-27 18:11:00
131145    38756    949    2017-10-27 22:15:00    2017-10-27 22:15:00
131146    38756    838    2017-10-27 09:43:00    2017-10-27 09:43:00
131147    38756    669    2017-10-27 08:15:00    2017-10-27 08:15:00
131148    38756    734    2017-10-27 18:07:00    2017-10-27 18:07:00
131149    38756    637    2017-10-27 13:46:00    2017-10-27 13:46:00
131150    38757    781    2017-10-27 21:16:00    2017-10-27 21:16:00
131151    38757    526    2017-10-27 20:02:00    2017-10-27 20:02:00
131152    38757    500    2017-10-27 18:32:00    2017-10-27 18:32:00
131153    38757    734    2017-10-27 13:04:00    2017-10-27 13:04:00
131154    38757    790    2017-10-27 23:21:00    2017-10-27 23:21:00
131155    38758    595    2017-10-27 16:15:00    2017-10-27 16:15:00
131156    38758    744    2017-10-27 07:55:00    2017-10-27 07:55:00
131157    38758    670    2017-10-27 05:11:00    2017-10-27 05:11:00
131158    38758    577    2017-10-27 01:34:00    2017-10-27 01:34:00
131159    38758    721    2017-10-27 03:30:00    2017-10-27 03:30:00
131160    38759    546    2017-10-27 01:06:00    2017-10-27 01:06:00
131161    38759    530    2017-10-27 02:29:00    2017-10-27 02:29:00
131162    38759    492    2017-10-27 10:58:00    2017-10-27 10:58:00
131163    38759    733    2017-10-27 03:46:00    2017-10-27 03:46:00
131164    38759    464    2017-10-27 16:09:00    2017-10-27 16:09:00
131165    38760    700    2017-10-27 01:17:00    2017-10-27 01:17:00
131166    38760    889    2017-10-27 04:00:00    2017-10-27 04:00:00
131167    38760    815    2017-10-27 21:50:00    2017-10-27 21:50:00
131168    38760    524    2017-10-27 12:47:00    2017-10-27 12:47:00
131169    38760    876    2017-10-27 08:09:00    2017-10-27 08:09:00
131170    38761    644    2017-10-27 15:45:00    2017-10-27 15:45:00
131171    38761    558    2017-10-27 20:36:00    2017-10-27 20:36:00
131172    38761    688    2017-10-27 08:24:00    2017-10-27 08:24:00
131173    38761    814    2017-10-27 18:41:00    2017-10-27 18:41:00
131174    38761    804    2017-10-27 04:15:00    2017-10-27 04:15:00
131175    38762    502    2017-10-27 04:27:00    2017-10-27 04:27:00
131176    38762    854    2017-10-27 14:38:00    2017-10-27 14:38:00
131177    38762    878    2017-10-27 15:27:00    2017-10-27 15:27:00
131178    38762    827    2017-10-27 20:36:00    2017-10-27 20:36:00
131179    38762    541    2017-10-27 08:25:00    2017-10-27 08:25:00
131180    38763    760    2017-10-27 11:34:00    2017-10-27 11:34:00
131181    38763    886    2017-10-27 02:47:00    2017-10-27 02:47:00
131182    38763    633    2017-10-27 15:11:00    2017-10-27 15:11:00
131183    38763    745    2017-10-27 08:26:00    2017-10-27 08:26:00
131184    38763    819    2017-10-27 01:08:00    2017-10-27 01:08:00
131185    38764    597    2017-10-27 21:20:00    2017-10-27 21:20:00
131186    38764    724    2017-10-27 05:26:00    2017-10-27 05:26:00
131187    38764    579    2017-10-27 05:08:00    2017-10-27 05:08:00
131188    38764    763    2017-10-27 19:10:00    2017-10-27 19:10:00
131189    38764    554    2017-10-27 17:37:00    2017-10-27 17:37:00
131190    38765    617    2017-10-27 09:57:00    2017-10-27 09:57:00
131191    38765    912    2017-10-27 09:04:00    2017-10-27 09:04:00
131192    38765    724    2017-10-27 22:36:00    2017-10-27 22:36:00
131193    38765    859    2017-10-27 12:46:00    2017-10-27 12:46:00
131194    38765    562    2017-10-27 07:20:00    2017-10-27 07:20:00
131195    38766    855    2017-10-27 19:18:00    2017-10-27 19:18:00
131196    38766    929    2017-10-27 16:17:00    2017-10-27 16:17:00
131197    38766    791    2017-10-27 06:09:00    2017-10-27 06:09:00
131198    38766    523    2017-10-27 09:56:00    2017-10-27 09:56:00
131199    38766    594    2017-10-27 22:47:00    2017-10-27 22:47:00
131200    38767    700    2017-10-27 13:29:00    2017-10-27 13:29:00
131201    38767    794    2017-10-27 22:36:00    2017-10-27 22:36:00
131202    38767    671    2017-10-27 02:31:00    2017-10-27 02:31:00
131203    38767    610    2017-10-27 16:17:00    2017-10-27 16:17:00
131204    38767    652    2017-10-27 03:17:00    2017-10-27 03:17:00
131205    38768    835    2017-10-27 21:02:00    2017-10-27 21:02:00
131206    38768    609    2017-10-27 01:36:00    2017-10-27 01:36:00
131207    38768    510    2017-10-27 01:16:00    2017-10-27 01:16:00
131208    38768    469    2017-10-27 14:05:00    2017-10-27 14:05:00
131209    38768    467    2017-10-27 19:33:00    2017-10-27 19:33:00
131210    38769    805    2017-10-27 17:05:00    2017-10-27 17:05:00
131211    38769    903    2017-10-27 23:25:00    2017-10-27 23:25:00
131212    38769    580    2017-10-27 19:13:00    2017-10-27 19:13:00
131213    38769    810    2017-10-27 16:19:00    2017-10-27 16:19:00
131214    38769    677    2017-10-27 10:19:00    2017-10-27 10:19:00
131215    38770    679    2017-10-27 04:44:00    2017-10-27 04:44:00
131216    38770    718    2017-10-27 12:18:00    2017-10-27 12:18:00
131217    38770    864    2017-10-27 21:10:00    2017-10-27 21:10:00
131218    38770    927    2017-10-27 14:43:00    2017-10-27 14:43:00
131219    38770    576    2017-10-27 12:55:00    2017-10-27 12:55:00
131220    38771    779    2017-10-27 06:57:00    2017-10-27 06:57:00
131221    38771    709    2017-10-27 17:59:00    2017-10-27 17:59:00
131222    38771    886    2017-10-27 03:24:00    2017-10-27 03:24:00
131223    38771    498    2017-10-27 10:24:00    2017-10-27 10:24:00
131224    38771    554    2017-10-27 03:15:00    2017-10-27 03:15:00
131225    38772    673    2017-10-27 16:50:00    2017-10-27 16:50:00
131226    38772    861    2017-10-27 21:08:00    2017-10-27 21:08:00
131227    38772    798    2017-10-27 15:37:00    2017-10-27 15:37:00
131228    38772    689    2017-10-27 20:37:00    2017-10-27 20:37:00
131229    38772    896    2017-10-27 18:56:00    2017-10-27 18:56:00
131230    38773    900    2017-10-27 06:02:00    2017-10-27 06:02:00
131231    38773    553    2017-10-27 02:58:00    2017-10-27 02:58:00
131232    38773    739    2017-10-27 13:44:00    2017-10-27 13:44:00
131233    38773    908    2017-10-27 11:11:00    2017-10-27 11:11:00
131234    38773    478    2017-10-27 10:49:00    2017-10-27 10:49:00
131235    38774    925    2017-10-27 14:06:00    2017-10-27 14:06:00
131236    38774    674    2017-10-27 16:00:00    2017-10-27 16:00:00
131237    38774    463    2017-10-27 22:46:00    2017-10-27 22:46:00
131238    38774    811    2017-10-27 20:59:00    2017-10-27 20:59:00
131239    38774    503    2017-10-27 10:42:00    2017-10-27 10:42:00
131240    38775    794    2017-10-27 19:12:00    2017-10-27 19:12:00
131241    38775    773    2017-10-27 09:45:00    2017-10-27 09:45:00
131242    38775    836    2017-10-27 01:17:00    2017-10-27 01:17:00
131243    38775    881    2017-10-27 03:42:00    2017-10-27 03:42:00
131244    38775    776    2017-10-27 17:07:00    2017-10-27 17:07:00
131245    38776    792    2017-10-28 13:45:00    2017-10-28 13:45:00
131246    38776    806    2017-10-28 16:01:00    2017-10-28 16:01:00
131247    38776    566    2017-10-28 20:14:00    2017-10-28 20:14:00
131248    38776    784    2017-10-28 11:27:00    2017-10-28 11:27:00
131249    38776    492    2017-10-28 18:00:00    2017-10-28 18:00:00
131250    38777    666    2017-10-28 18:23:00    2017-10-28 18:23:00
131251    38777    768    2017-10-28 04:03:00    2017-10-28 04:03:00
131252    38777    938    2017-10-28 15:29:00    2017-10-28 15:29:00
131253    38777    914    2017-10-28 02:56:00    2017-10-28 02:56:00
131254    38777    837    2017-10-28 22:58:00    2017-10-28 22:58:00
131255    38778    667    2017-10-28 16:50:00    2017-10-28 16:50:00
131256    38778    748    2017-10-28 15:08:00    2017-10-28 15:08:00
131257    38778    834    2017-10-28 21:36:00    2017-10-28 21:36:00
131258    38778    718    2017-10-28 06:33:00    2017-10-28 06:33:00
131259    38778    745    2017-10-28 19:53:00    2017-10-28 19:53:00
131260    38779    473    2017-10-28 23:08:00    2017-10-28 23:08:00
131261    38779    492    2017-10-28 11:22:00    2017-10-28 11:22:00
131262    38779    803    2017-10-28 01:17:00    2017-10-28 01:17:00
131263    38779    515    2017-10-28 01:51:00    2017-10-28 01:51:00
131264    38779    521    2017-10-28 13:49:00    2017-10-28 13:49:00
131265    38780    813    2017-10-28 01:09:00    2017-10-28 01:09:00
131266    38780    545    2017-10-28 16:04:00    2017-10-28 16:04:00
131267    38780    533    2017-10-28 02:04:00    2017-10-28 02:04:00
131268    38780    701    2017-10-28 15:19:00    2017-10-28 15:19:00
131269    38780    855    2017-10-28 14:23:00    2017-10-28 14:23:00
131270    38781    504    2017-10-28 19:00:00    2017-10-28 19:00:00
131271    38781    926    2017-10-28 12:52:00    2017-10-28 12:52:00
131272    38781    950    2017-10-28 10:38:00    2017-10-28 10:38:00
131273    38781    693    2017-10-28 15:29:00    2017-10-28 15:29:00
131274    38781    542    2017-10-28 20:43:00    2017-10-28 20:43:00
131275    38782    734    2017-10-28 09:46:00    2017-10-28 09:46:00
131276    38782    626    2017-10-28 05:51:00    2017-10-28 05:51:00
131277    38782    521    2017-10-28 01:27:00    2017-10-28 01:27:00
131278    38782    855    2017-10-28 23:49:00    2017-10-28 23:49:00
131279    38782    523    2017-10-28 09:41:00    2017-10-28 09:41:00
131280    38783    926    2017-10-28 01:48:00    2017-10-28 01:48:00
131281    38783    684    2017-10-28 19:16:00    2017-10-28 19:16:00
131282    38783    505    2017-10-28 07:52:00    2017-10-28 07:52:00
131283    38783    938    2017-10-28 23:32:00    2017-10-28 23:32:00
131284    38783    726    2017-10-28 10:28:00    2017-10-28 10:28:00
131285    38784    856    2017-10-28 08:45:00    2017-10-28 08:45:00
131286    38784    692    2017-10-28 06:11:00    2017-10-28 06:11:00
131287    38784    668    2017-10-28 23:46:00    2017-10-28 23:46:00
131288    38784    607    2017-10-28 11:01:00    2017-10-28 11:01:00
131289    38784    595    2017-10-28 17:05:00    2017-10-28 17:05:00
131290    38785    724    2017-10-28 22:04:00    2017-10-28 22:04:00
131291    38785    906    2017-10-28 07:24:00    2017-10-28 07:24:00
131292    38785    761    2017-10-28 04:27:00    2017-10-28 04:27:00
131293    38785    721    2017-10-28 07:54:00    2017-10-28 07:54:00
131294    38785    673    2017-10-28 05:02:00    2017-10-28 05:02:00
131295    38786    683    2017-10-28 18:26:00    2017-10-28 18:26:00
131296    38786    774    2017-10-28 10:36:00    2017-10-28 10:36:00
131297    38786    635    2017-10-28 23:52:00    2017-10-28 23:52:00
131298    38786    644    2017-10-28 07:08:00    2017-10-28 07:08:00
131299    38786    696    2017-10-28 08:50:00    2017-10-28 08:50:00
131300    38787    763    2017-10-28 08:24:00    2017-10-28 08:24:00
131301    38787    801    2017-10-28 01:43:00    2017-10-28 01:43:00
131302    38787    470    2017-10-28 15:31:00    2017-10-28 15:31:00
131303    38787    588    2017-10-28 18:04:00    2017-10-28 18:04:00
131304    38787    742    2017-10-28 05:47:00    2017-10-28 05:47:00
131305    38788    655    2017-10-28 21:01:00    2017-10-28 21:01:00
131306    38788    816    2017-10-28 01:33:00    2017-10-28 01:33:00
131307    38788    891    2017-10-28 13:33:00    2017-10-28 13:33:00
131308    38788    702    2017-10-28 19:28:00    2017-10-28 19:28:00
131309    38788    641    2017-10-28 10:37:00    2017-10-28 10:37:00
131310    38789    719    2017-10-28 09:38:00    2017-10-28 09:38:00
131311    38789    942    2017-10-28 02:16:00    2017-10-28 02:16:00
131312    38789    755    2017-10-28 06:58:00    2017-10-28 06:58:00
131313    38789    691    2017-10-28 02:00:00    2017-10-28 02:00:00
131314    38789    679    2017-10-28 17:58:00    2017-10-28 17:58:00
131315    38790    668    2017-10-28 07:02:00    2017-10-28 07:02:00
131316    38790    676    2017-10-28 07:27:00    2017-10-28 07:27:00
131317    38790    576    2017-10-28 06:34:00    2017-10-28 06:34:00
131318    38790    850    2017-10-28 01:58:00    2017-10-28 01:58:00
131319    38790    902    2017-10-28 14:00:00    2017-10-28 14:00:00
131320    38791    688    2017-10-28 07:38:00    2017-10-28 07:38:00
131321    38791    472    2017-10-28 08:28:00    2017-10-28 08:28:00
131322    38791    524    2017-10-28 03:44:00    2017-10-28 03:44:00
131323    38791    868    2017-10-28 04:03:00    2017-10-28 04:03:00
131324    38791    783    2017-10-28 07:58:00    2017-10-28 07:58:00
131325    38792    665    2017-10-28 04:39:00    2017-10-28 04:39:00
131326    38792    885    2017-10-28 23:13:00    2017-10-28 23:13:00
131327    38792    691    2017-10-28 05:07:00    2017-10-28 05:07:00
131328    38792    680    2017-10-28 09:14:00    2017-10-28 09:14:00
131329    38792    498    2017-10-28 22:25:00    2017-10-28 22:25:00
131330    38793    775    2017-10-28 07:50:00    2017-10-28 07:50:00
131331    38793    731    2017-10-28 13:50:00    2017-10-28 13:50:00
131332    38793    505    2017-10-28 06:09:00    2017-10-28 06:09:00
131333    38793    520    2017-10-28 08:59:00    2017-10-28 08:59:00
131334    38793    783    2017-10-28 11:02:00    2017-10-28 11:02:00
131335    38794    468    2017-10-28 09:09:00    2017-10-28 09:09:00
131336    38794    922    2017-10-28 20:45:00    2017-10-28 20:45:00
131337    38794    740    2017-10-28 06:16:00    2017-10-28 06:16:00
131338    38794    773    2017-10-28 08:35:00    2017-10-28 08:35:00
131339    38794    956    2017-10-28 16:38:00    2017-10-28 16:38:00
131340    38795    872    2017-10-28 04:54:00    2017-10-28 04:54:00
131341    38795    816    2017-10-28 22:42:00    2017-10-28 22:42:00
131342    38795    814    2017-10-28 17:09:00    2017-10-28 17:09:00
131343    38795    694    2017-10-28 04:01:00    2017-10-28 04:01:00
131344    38795    515    2017-10-28 21:26:00    2017-10-28 21:26:00
131345    38796    948    2017-10-28 16:27:00    2017-10-28 16:27:00
131346    38796    947    2017-10-28 14:08:00    2017-10-28 14:08:00
131347    38796    956    2017-10-28 01:01:00    2017-10-28 01:01:00
131348    38796    561    2017-10-28 04:45:00    2017-10-28 04:45:00
131349    38796    744    2017-10-28 19:20:00    2017-10-28 19:20:00
131350    38797    911    2017-10-28 18:56:00    2017-10-28 18:56:00
131351    38797    794    2017-10-28 04:10:00    2017-10-28 04:10:00
131352    38797    622    2017-10-28 13:38:00    2017-10-28 13:38:00
131353    38797    851    2017-10-28 05:15:00    2017-10-28 05:15:00
131354    38797    572    2017-10-28 18:28:00    2017-10-28 18:28:00
131355    38798    801    2017-10-28 10:31:00    2017-10-28 10:31:00
131356    38798    697    2017-10-28 20:12:00    2017-10-28 20:12:00
131357    38798    628    2017-10-28 18:11:00    2017-10-28 18:11:00
131358    38798    780    2017-10-28 11:06:00    2017-10-28 11:06:00
131359    38798    556    2017-10-28 19:01:00    2017-10-28 19:01:00
131360    38799    863    2017-10-28 08:54:00    2017-10-28 08:54:00
131361    38799    799    2017-10-28 18:35:00    2017-10-28 18:35:00
131362    38799    755    2017-10-28 17:33:00    2017-10-28 17:33:00
131363    38799    465    2017-10-28 14:25:00    2017-10-28 14:25:00
131364    38799    826    2017-10-28 18:46:00    2017-10-28 18:46:00
131365    38800    772    2017-10-28 11:25:00    2017-10-28 11:25:00
131366    38800    652    2017-10-28 20:36:00    2017-10-28 20:36:00
131367    38800    938    2017-10-28 08:15:00    2017-10-28 08:15:00
131368    38800    796    2017-10-28 08:15:00    2017-10-28 08:15:00
131369    38800    772    2017-10-28 14:16:00    2017-10-28 14:16:00
131370    38801    949    2017-10-28 17:28:00    2017-10-28 17:28:00
131371    38801    560    2017-10-28 13:45:00    2017-10-28 13:45:00
131372    38801    811    2017-10-28 19:33:00    2017-10-28 19:33:00
131373    38801    861    2017-10-28 20:54:00    2017-10-28 20:54:00
131374    38801    542    2017-10-28 10:10:00    2017-10-28 10:10:00
131375    38802    848    2017-10-28 04:55:00    2017-10-28 04:55:00
131376    38802    528    2017-10-28 14:50:00    2017-10-28 14:50:00
131377    38802    916    2017-10-28 20:12:00    2017-10-28 20:12:00
131378    38802    903    2017-10-28 19:39:00    2017-10-28 19:39:00
131379    38802    605    2017-10-28 05:21:00    2017-10-28 05:21:00
131380    38803    844    2017-10-28 16:25:00    2017-10-28 16:25:00
131381    38803    702    2017-10-28 13:07:00    2017-10-28 13:07:00
131382    38803    794    2017-10-28 18:52:00    2017-10-28 18:52:00
131383    38803    881    2017-10-28 04:55:00    2017-10-28 04:55:00
131384    38803    690    2017-10-28 20:19:00    2017-10-28 20:19:00
131385    38804    589    2017-10-28 10:35:00    2017-10-28 10:35:00
131386    38804    724    2017-10-28 16:12:00    2017-10-28 16:12:00
131387    38804    478    2017-10-28 06:41:00    2017-10-28 06:41:00
131388    38804    490    2017-10-28 17:20:00    2017-10-28 17:20:00
131389    38804    816    2017-10-28 22:14:00    2017-10-28 22:14:00
131390    38805    718    2017-10-28 12:26:00    2017-10-28 12:26:00
131391    38805    600    2017-10-28 22:22:00    2017-10-28 22:22:00
131392    38805    555    2017-10-28 21:18:00    2017-10-28 21:18:00
131393    38805    791    2017-10-28 19:13:00    2017-10-28 19:13:00
131394    38805    751    2017-10-28 15:16:00    2017-10-28 15:16:00
131395    38806    775    2017-10-28 01:41:00    2017-10-28 01:41:00
131396    38806    571    2017-10-28 05:55:00    2017-10-28 05:55:00
131397    38806    561    2017-10-28 08:14:00    2017-10-28 08:14:00
131398    38806    629    2017-10-28 14:32:00    2017-10-28 14:32:00
131399    38806    741    2017-10-28 23:41:00    2017-10-28 23:41:00
131400    38807    874    2017-10-28 03:01:00    2017-10-28 03:01:00
131401    38807    653    2017-10-28 06:57:00    2017-10-28 06:57:00
131402    38807    912    2017-10-28 23:33:00    2017-10-28 23:33:00
131403    38807    516    2017-10-28 17:05:00    2017-10-28 17:05:00
131404    38807    481    2017-10-28 15:49:00    2017-10-28 15:49:00
131405    38808    914    2017-10-29 18:38:00    2017-10-29 18:38:00
131406    38808    654    2017-10-29 01:20:00    2017-10-29 01:20:00
131407    38808    533    2017-10-29 04:37:00    2017-10-29 04:37:00
131408    38808    549    2017-10-29 21:20:00    2017-10-29 21:20:00
131409    38808    921    2017-10-29 15:39:00    2017-10-29 15:39:00
131410    38809    523    2017-10-29 16:20:00    2017-10-29 16:20:00
131411    38809    918    2017-10-29 10:00:00    2017-10-29 10:00:00
131412    38809    671    2017-10-29 08:22:00    2017-10-29 08:22:00
131413    38809    900    2017-10-29 14:48:00    2017-10-29 14:48:00
131414    38809    627    2017-10-29 09:47:00    2017-10-29 09:47:00
131415    38810    834    2017-10-29 10:24:00    2017-10-29 10:24:00
131416    38810    679    2017-10-29 14:25:00    2017-10-29 14:25:00
131417    38810    726    2017-10-29 07:27:00    2017-10-29 07:27:00
131418    38810    856    2017-10-29 14:37:00    2017-10-29 14:37:00
131419    38810    712    2017-10-29 11:42:00    2017-10-29 11:42:00
131420    38811    472    2017-10-29 19:39:00    2017-10-29 19:39:00
131421    38811    668    2017-10-29 14:57:00    2017-10-29 14:57:00
131422    38811    510    2017-10-29 21:59:00    2017-10-29 21:59:00
131423    38811    544    2017-10-29 21:28:00    2017-10-29 21:28:00
131424    38811    952    2017-10-29 15:43:00    2017-10-29 15:43:00
131425    38812    785    2017-10-29 02:33:00    2017-10-29 02:33:00
131426    38812    953    2017-10-29 06:03:00    2017-10-29 06:03:00
131427    38812    627    2017-10-29 18:29:00    2017-10-29 18:29:00
131428    38812    542    2017-10-29 19:57:00    2017-10-29 19:57:00
131429    38812    675    2017-10-29 15:30:00    2017-10-29 15:30:00
131430    38813    661    2017-10-29 01:57:00    2017-10-29 01:57:00
131431    38813    508    2017-10-29 02:09:00    2017-10-29 02:09:00
131432    38813    906    2017-10-29 08:15:00    2017-10-29 08:15:00
131433    38813    946    2017-10-29 23:30:00    2017-10-29 23:30:00
131434    38813    562    2017-10-29 14:48:00    2017-10-29 14:48:00
131435    38814    853    2017-10-29 06:15:00    2017-10-29 06:15:00
131436    38814    582    2017-10-29 23:37:00    2017-10-29 23:37:00
131437    38814    894    2017-10-29 23:06:00    2017-10-29 23:06:00
131438    38814    745    2017-10-29 07:59:00    2017-10-29 07:59:00
131439    38814    572    2017-10-29 16:51:00    2017-10-29 16:51:00
131440    38815    494    2017-10-29 13:37:00    2017-10-29 13:37:00
131441    38815    625    2017-10-29 14:38:00    2017-10-29 14:38:00
131442    38815    862    2017-10-29 11:35:00    2017-10-29 11:35:00
131443    38815    684    2017-10-29 12:50:00    2017-10-29 12:50:00
131444    38815    658    2017-10-29 08:07:00    2017-10-29 08:07:00
131445    38816    477    2017-10-29 12:13:00    2017-10-29 12:13:00
131446    38816    897    2017-10-29 06:02:00    2017-10-29 06:02:00
131447    38816    756    2017-10-29 23:04:00    2017-10-29 23:04:00
131448    38816    738    2017-10-29 01:59:00    2017-10-29 01:59:00
131449    38816    757    2017-10-29 20:28:00    2017-10-29 20:28:00
131450    38817    604    2017-10-29 20:49:00    2017-10-29 20:49:00
131451    38817    632    2017-10-29 06:34:00    2017-10-29 06:34:00
131452    38817    776    2017-10-29 13:19:00    2017-10-29 13:19:00
131453    38817    508    2017-10-29 08:14:00    2017-10-29 08:14:00
131454    38817    863    2017-10-29 12:40:00    2017-10-29 12:40:00
131455    38818    877    2017-10-29 21:44:00    2017-10-29 21:44:00
131456    38818    896    2017-10-29 20:39:00    2017-10-29 20:39:00
131457    38818    951    2017-10-29 08:06:00    2017-10-29 08:06:00
131458    38818    737    2017-10-29 17:25:00    2017-10-29 17:25:00
131459    38818    910    2017-10-29 14:00:00    2017-10-29 14:00:00
131460    38819    936    2017-10-29 02:05:00    2017-10-29 02:05:00
131461    38819    835    2017-10-29 19:57:00    2017-10-29 19:57:00
131462    38819    890    2017-10-29 08:08:00    2017-10-29 08:08:00
131463    38819    748    2017-10-29 04:17:00    2017-10-29 04:17:00
131464    38819    628    2017-10-29 04:52:00    2017-10-29 04:52:00
131465    38820    538    2017-10-29 19:42:00    2017-10-29 19:42:00
131466    38820    947    2017-10-29 08:56:00    2017-10-29 08:56:00
131467    38820    950    2017-10-29 02:37:00    2017-10-29 02:37:00
131468    38820    706    2017-10-29 13:01:00    2017-10-29 13:01:00
131469    38820    936    2017-10-29 09:02:00    2017-10-29 09:02:00
131470    38821    875    2017-10-29 04:47:00    2017-10-29 04:47:00
131471    38821    536    2017-10-29 14:36:00    2017-10-29 14:36:00
131472    38821    510    2017-10-29 18:50:00    2017-10-29 18:50:00
131473    38821    933    2017-10-29 01:28:00    2017-10-29 01:28:00
131474    38821    910    2017-10-29 18:26:00    2017-10-29 18:26:00
131475    38822    933    2017-10-29 06:32:00    2017-10-29 06:32:00
131476    38822    951    2017-10-29 01:09:00    2017-10-29 01:09:00
131477    38822    803    2017-10-29 08:56:00    2017-10-29 08:56:00
131478    38822    716    2017-10-29 20:31:00    2017-10-29 20:31:00
131479    38822    518    2017-10-29 09:39:00    2017-10-29 09:39:00
131480    38823    869    2017-10-29 19:01:00    2017-10-29 19:01:00
131481    38823    557    2017-10-29 11:07:00    2017-10-29 11:07:00
131482    38823    513    2017-10-29 23:03:00    2017-10-29 23:03:00
131483    38823    931    2017-10-29 17:36:00    2017-10-29 17:36:00
131484    38823    771    2017-10-29 14:50:00    2017-10-29 14:50:00
131485    38824    858    2017-10-29 13:16:00    2017-10-29 13:16:00
131486    38824    525    2017-10-29 18:00:00    2017-10-29 18:00:00
131487    38824    479    2017-10-29 13:21:00    2017-10-29 13:21:00
131488    38824    767    2017-10-29 09:58:00    2017-10-29 09:58:00
131489    38824    952    2017-10-29 20:09:00    2017-10-29 20:09:00
131490    38825    533    2017-10-29 18:18:00    2017-10-29 18:18:00
131491    38825    729    2017-10-29 15:32:00    2017-10-29 15:32:00
131492    38825    686    2017-10-29 23:26:00    2017-10-29 23:26:00
131493    38825    950    2017-10-29 12:26:00    2017-10-29 12:26:00
131494    38825    813    2017-10-29 06:24:00    2017-10-29 06:24:00
131495    38826    850    2017-10-29 11:05:00    2017-10-29 11:05:00
131496    38826    547    2017-10-29 02:55:00    2017-10-29 02:55:00
131497    38826    844    2017-10-29 21:50:00    2017-10-29 21:50:00
131498    38826    692    2017-10-29 15:39:00    2017-10-29 15:39:00
131499    38826    808    2017-10-29 18:18:00    2017-10-29 18:18:00
131500    38827    803    2017-10-29 02:07:00    2017-10-29 02:07:00
131501    38827    534    2017-10-29 13:58:00    2017-10-29 13:58:00
131502    38827    958    2017-10-29 07:26:00    2017-10-29 07:26:00
131503    38827    668    2017-10-29 13:21:00    2017-10-29 13:21:00
131504    38827    485    2017-10-29 11:18:00    2017-10-29 11:18:00
131505    38828    819    2017-10-29 02:49:00    2017-10-29 02:49:00
131506    38828    789    2017-10-29 05:04:00    2017-10-29 05:04:00
131507    38828    617    2017-10-29 15:55:00    2017-10-29 15:55:00
131508    38828    597    2017-10-29 22:59:00    2017-10-29 22:59:00
131509    38828    931    2017-10-29 15:03:00    2017-10-29 15:03:00
131510    38829    801    2017-10-29 04:48:00    2017-10-29 04:48:00
131511    38829    643    2017-10-29 03:52:00    2017-10-29 03:52:00
131512    38829    585    2017-10-29 07:55:00    2017-10-29 07:55:00
131513    38829    499    2017-10-29 04:00:00    2017-10-29 04:00:00
131514    38829    634    2017-10-29 05:27:00    2017-10-29 05:27:00
131515    38830    464    2017-10-29 14:26:00    2017-10-29 14:26:00
131516    38830    852    2017-10-29 17:49:00    2017-10-29 17:49:00
131517    38830    810    2017-10-29 18:13:00    2017-10-29 18:13:00
131518    38830    913    2017-10-29 13:56:00    2017-10-29 13:56:00
131519    38830    903    2017-10-29 16:57:00    2017-10-29 16:57:00
131520    38831    683    2017-10-29 09:09:00    2017-10-29 09:09:00
131521    38831    478    2017-10-29 17:15:00    2017-10-29 17:15:00
131522    38831    822    2017-10-29 14:34:00    2017-10-29 14:34:00
131523    38831    512    2017-10-29 12:35:00    2017-10-29 12:35:00
131524    38831    713    2017-10-29 08:25:00    2017-10-29 08:25:00
131525    38832    481    2017-10-29 21:43:00    2017-10-29 21:43:00
131526    38832    602    2017-10-29 21:24:00    2017-10-29 21:24:00
131527    38832    671    2017-10-29 01:52:00    2017-10-29 01:52:00
131528    38832    938    2017-10-29 02:20:00    2017-10-29 02:20:00
131529    38832    663    2017-10-29 04:50:00    2017-10-29 04:50:00
131530    38833    666    2017-10-29 07:45:00    2017-10-29 07:45:00
131531    38833    508    2017-10-29 19:44:00    2017-10-29 19:44:00
131532    38833    889    2017-10-29 03:42:00    2017-10-29 03:42:00
131533    38833    584    2017-10-29 17:01:00    2017-10-29 17:01:00
131534    38833    813    2017-10-29 16:58:00    2017-10-29 16:58:00
131535    38834    938    2017-10-29 17:18:00    2017-10-29 17:18:00
131536    38834    567    2017-10-29 08:11:00    2017-10-29 08:11:00
131537    38834    827    2017-10-29 13:07:00    2017-10-29 13:07:00
131538    38834    916    2017-10-29 19:47:00    2017-10-29 19:47:00
131539    38834    914    2017-10-29 01:15:00    2017-10-29 01:15:00
131540    38835    572    2017-10-29 05:40:00    2017-10-29 05:40:00
131541    38835    727    2017-10-29 12:37:00    2017-10-29 12:37:00
131542    38835    507    2017-10-29 10:58:00    2017-10-29 10:58:00
131543    38835    547    2017-10-29 17:00:00    2017-10-29 17:00:00
131544    38835    517    2017-10-29 20:22:00    2017-10-29 20:22:00
131545    38836    522    2017-10-29 05:43:00    2017-10-29 05:43:00
131546    38836    915    2017-10-29 08:25:00    2017-10-29 08:25:00
131547    38836    824    2017-10-29 23:44:00    2017-10-29 23:44:00
131548    38836    501    2017-10-29 03:18:00    2017-10-29 03:18:00
131549    38836    855    2017-10-29 05:03:00    2017-10-29 05:03:00
131550    38837    609    2017-10-29 13:46:00    2017-10-29 13:46:00
131551    38837    560    2017-10-29 12:45:00    2017-10-29 12:45:00
131552    38837    832    2017-10-29 09:35:00    2017-10-29 09:35:00
131553    38837    848    2017-10-29 21:35:00    2017-10-29 21:35:00
131554    38837    878    2017-10-29 10:56:00    2017-10-29 10:56:00
131555    38838    852    2017-10-29 04:03:00    2017-10-29 04:03:00
131556    38838    692    2017-10-29 17:59:00    2017-10-29 17:59:00
131557    38838    689    2017-10-29 06:15:00    2017-10-29 06:15:00
131558    38838    787    2017-10-29 14:56:00    2017-10-29 14:56:00
131559    38838    753    2017-10-29 04:45:00    2017-10-29 04:45:00
131560    38839    941    2017-10-29 11:16:00    2017-10-29 11:16:00
131561    38839    584    2017-10-29 14:41:00    2017-10-29 14:41:00
131562    38839    527    2017-10-29 16:19:00    2017-10-29 16:19:00
131563    38839    741    2017-10-29 13:12:00    2017-10-29 13:12:00
131564    38839    506    2017-10-29 06:28:00    2017-10-29 06:28:00
131565    38840    561    2017-10-29 11:51:00    2017-10-29 11:51:00
131566    38840    905    2017-10-29 19:17:00    2017-10-29 19:17:00
131567    38840    686    2017-10-29 08:37:00    2017-10-29 08:37:00
131568    38840    607    2017-10-29 03:53:00    2017-10-29 03:53:00
131569    38840    852    2017-10-29 19:19:00    2017-10-29 19:19:00
131570    38841    640    2017-10-29 18:34:00    2017-10-29 18:34:00
131571    38841    773    2017-10-29 23:20:00    2017-10-29 23:20:00
131572    38841    560    2017-10-29 01:00:00    2017-10-29 01:00:00
131573    38841    947    2017-10-29 07:18:00    2017-10-29 07:18:00
131574    38841    703    2017-10-29 19:21:00    2017-10-29 19:21:00
131575    38842    537    2017-10-29 09:24:00    2017-10-29 09:24:00
131576    38842    825    2017-10-29 11:38:00    2017-10-29 11:38:00
131577    38842    533    2017-10-29 01:15:00    2017-10-29 01:15:00
131578    38842    763    2017-10-29 06:18:00    2017-10-29 06:18:00
131579    38842    930    2017-10-29 14:24:00    2017-10-29 14:24:00
131580    38843    804    2017-10-29 08:52:00    2017-10-29 08:52:00
131581    38843    960    2017-10-29 08:36:00    2017-10-29 08:36:00
131582    38843    794    2017-10-29 14:51:00    2017-10-29 14:51:00
131583    38843    514    2017-10-29 08:21:00    2017-10-29 08:21:00
131584    38843    638    2017-10-29 10:34:00    2017-10-29 10:34:00
131585    38844    669    2017-10-29 14:21:00    2017-10-29 14:21:00
131586    38844    943    2017-10-29 09:25:00    2017-10-29 09:25:00
131587    38844    596    2017-10-29 14:22:00    2017-10-29 14:22:00
131588    38844    536    2017-10-29 14:47:00    2017-10-29 14:47:00
131589    38844    528    2017-10-29 16:48:00    2017-10-29 16:48:00
131590    38845    837    2017-10-29 06:18:00    2017-10-29 06:18:00
131591    38845    897    2017-10-29 07:43:00    2017-10-29 07:43:00
131592    38845    848    2017-10-29 01:09:00    2017-10-29 01:09:00
131593    38845    823    2017-10-29 11:03:00    2017-10-29 11:03:00
131594    38845    662    2017-10-29 23:15:00    2017-10-29 23:15:00
131595    38846    782    2017-10-29 19:07:00    2017-10-29 19:07:00
131596    38846    681    2017-10-29 10:38:00    2017-10-29 10:38:00
131597    38846    631    2017-10-29 17:04:00    2017-10-29 17:04:00
131598    38846    858    2017-10-29 18:33:00    2017-10-29 18:33:00
131599    38846    730    2017-10-29 22:38:00    2017-10-29 22:38:00
131600    38847    859    2017-10-29 23:49:00    2017-10-29 23:49:00
131601    38847    726    2017-10-29 09:26:00    2017-10-29 09:26:00
131602    38847    699    2017-10-29 22:44:00    2017-10-29 22:44:00
131603    38847    882    2017-10-29 05:56:00    2017-10-29 05:56:00
131604    38847    631    2017-10-29 21:00:00    2017-10-29 21:00:00
131605    38848    826    2017-10-29 04:20:00    2017-10-29 04:20:00
131606    38848    526    2017-10-29 21:28:00    2017-10-29 21:28:00
131607    38848    572    2017-10-29 11:14:00    2017-10-29 11:14:00
131608    38848    501    2017-10-29 13:43:00    2017-10-29 13:43:00
131609    38848    820    2017-10-29 14:53:00    2017-10-29 14:53:00
131610    38849    557    2017-10-29 23:03:00    2017-10-29 23:03:00
131611    38849    534    2017-10-29 04:52:00    2017-10-29 04:52:00
131612    38849    713    2017-10-29 07:54:00    2017-10-29 07:54:00
131613    38849    796    2017-10-29 19:26:00    2017-10-29 19:26:00
131614    38849    594    2017-10-29 15:58:00    2017-10-29 15:58:00
131615    38850    588    2017-10-29 22:29:00    2017-10-29 22:29:00
131616    38850    766    2017-10-29 19:15:00    2017-10-29 19:15:00
131617    38850    524    2017-10-29 15:58:00    2017-10-29 15:58:00
131618    38850    862    2017-10-29 07:10:00    2017-10-29 07:10:00
131619    38850    632    2017-10-29 05:38:00    2017-10-29 05:38:00
131620    38851    687    2017-10-29 03:04:00    2017-10-29 03:04:00
131621    38851    915    2017-10-29 21:06:00    2017-10-29 21:06:00
131622    38851    891    2017-10-29 13:41:00    2017-10-29 13:41:00
131623    38851    887    2017-10-29 14:30:00    2017-10-29 14:30:00
131624    38851    762    2017-10-29 06:51:00    2017-10-29 06:51:00
131625    38852    921    2017-10-29 15:38:00    2017-10-29 15:38:00
131626    38852    691    2017-10-29 03:46:00    2017-10-29 03:46:00
131627    38852    586    2017-10-29 15:28:00    2017-10-29 15:28:00
131628    38852    961    2017-10-29 08:16:00    2017-10-29 08:16:00
131629    38852    960    2017-10-29 21:24:00    2017-10-29 21:24:00
131630    38853    957    2017-10-29 20:45:00    2017-10-29 20:45:00
131631    38853    734    2017-10-29 22:27:00    2017-10-29 22:27:00
131632    38853    672    2017-10-29 02:33:00    2017-10-29 02:33:00
131633    38853    915    2017-10-29 17:35:00    2017-10-29 17:35:00
131634    38853    740    2017-10-29 15:31:00    2017-10-29 15:31:00
131635    38854    703    2017-10-29 12:24:00    2017-10-29 12:24:00
131636    38854    494    2017-10-29 15:57:00    2017-10-29 15:57:00
131637    38854    953    2017-10-29 19:02:00    2017-10-29 19:02:00
131638    38854    518    2017-10-29 02:40:00    2017-10-29 02:40:00
131639    38854    470    2017-10-29 08:32:00    2017-10-29 08:32:00
131640    38855    802    2017-10-29 09:21:00    2017-10-29 09:21:00
131641    38855    532    2017-10-29 04:11:00    2017-10-29 04:11:00
131642    38855    837    2017-10-29 03:59:00    2017-10-29 03:59:00
131643    38855    891    2017-10-29 12:38:00    2017-10-29 12:38:00
131644    38855    466    2017-10-29 17:07:00    2017-10-29 17:07:00
131645    38856    564    2017-10-29 13:33:00    2017-10-29 13:33:00
131646    38856    802    2017-10-29 15:54:00    2017-10-29 15:54:00
131647    38856    954    2017-10-29 10:08:00    2017-10-29 10:08:00
131648    38856    689    2017-10-29 09:37:00    2017-10-29 09:37:00
131649    38856    961    2017-10-29 17:35:00    2017-10-29 17:35:00
131650    38857    607    2017-10-29 17:52:00    2017-10-29 17:52:00
131651    38857    777    2017-10-29 03:30:00    2017-10-29 03:30:00
131652    38857    726    2017-10-29 20:18:00    2017-10-29 20:18:00
131653    38857    467    2017-10-29 23:08:00    2017-10-29 23:08:00
131654    38857    764    2017-10-29 20:32:00    2017-10-29 20:32:00
131655    38858    682    2017-10-29 21:04:00    2017-10-29 21:04:00
131656    38858    496    2017-10-30 00:00:00    2017-10-30 00:00:00
131657    38858    470    2017-10-29 22:01:00    2017-10-29 22:01:00
131658    38858    831    2017-10-29 07:36:00    2017-10-29 07:36:00
131659    38858    895    2017-10-29 15:46:00    2017-10-29 15:46:00
131660    38859    541    2017-10-29 23:20:00    2017-10-29 23:20:00
131661    38859    723    2017-10-29 07:00:00    2017-10-29 07:00:00
131662    38859    470    2017-10-29 13:25:00    2017-10-29 13:25:00
131663    38859    692    2017-10-29 09:34:00    2017-10-29 09:34:00
131664    38859    775    2017-10-29 20:16:00    2017-10-29 20:16:00
131665    38860    715    2017-10-29 20:37:00    2017-10-29 20:37:00
131666    38860    828    2017-10-29 18:36:00    2017-10-29 18:36:00
131667    38860    499    2017-10-29 13:48:00    2017-10-29 13:48:00
131668    38860    840    2017-10-29 20:10:00    2017-10-29 20:10:00
131669    38860    741    2017-10-29 03:53:00    2017-10-29 03:53:00
131670    38861    476    2017-10-29 08:59:00    2017-10-29 08:59:00
131671    38861    464    2017-10-29 03:09:00    2017-10-29 03:09:00
131672    38861    893    2017-10-29 03:27:00    2017-10-29 03:27:00
131673    38861    532    2017-10-29 03:08:00    2017-10-29 03:08:00
131674    38861    556    2017-10-29 02:51:00    2017-10-29 02:51:00
131675    38862    596    2017-10-29 01:26:00    2017-10-29 01:26:00
131676    38862    783    2017-10-29 15:05:00    2017-10-29 15:05:00
131677    38862    708    2017-10-29 14:37:00    2017-10-29 14:37:00
131678    38862    543    2017-10-29 04:52:00    2017-10-29 04:52:00
131679    38862    752    2017-10-29 22:30:00    2017-10-29 22:30:00
131680    38863    841    2017-10-29 04:12:00    2017-10-29 04:12:00
131681    38863    501    2017-10-29 08:08:00    2017-10-29 08:08:00
131682    38863    555    2017-10-29 10:23:00    2017-10-29 10:23:00
131683    38863    612    2017-10-29 13:54:00    2017-10-29 13:54:00
131684    38863    837    2017-10-29 23:29:00    2017-10-29 23:29:00
131685    38864    637    2017-10-29 03:39:00    2017-10-29 03:39:00
131686    38864    473    2017-10-29 23:20:00    2017-10-29 23:20:00
131687    38864    931    2017-10-29 03:41:00    2017-10-29 03:41:00
131688    38864    474    2017-10-29 08:06:00    2017-10-29 08:06:00
131689    38864    751    2017-10-29 09:31:00    2017-10-29 09:31:00
131690    38865    882    2017-10-29 01:43:00    2017-10-29 01:43:00
131691    38865    830    2017-10-29 10:40:00    2017-10-29 10:40:00
131692    38865    647    2017-10-29 13:52:00    2017-10-29 13:52:00
131693    38865    936    2017-10-29 14:25:00    2017-10-29 14:25:00
131694    38865    561    2017-10-29 16:45:00    2017-10-29 16:45:00
131695    38866    597    2017-10-29 09:24:00    2017-10-29 09:24:00
131696    38866    694    2017-10-29 12:17:00    2017-10-29 12:17:00
131697    38866    591    2017-10-29 21:10:00    2017-10-29 21:10:00
131698    38866    809    2017-10-29 08:04:00    2017-10-29 08:04:00
131699    38866    888    2017-10-29 20:13:00    2017-10-29 20:13:00
131700    38867    558    2017-10-29 04:17:00    2017-10-29 04:17:00
131701    38867    736    2017-10-29 10:45:00    2017-10-29 10:45:00
131702    38867    867    2017-10-29 09:52:00    2017-10-29 09:52:00
131703    38867    947    2017-10-29 20:05:00    2017-10-29 20:05:00
131704    38867    589    2017-10-29 08:01:00    2017-10-29 08:01:00
131705    38868    766    2017-10-29 03:23:00    2017-10-29 03:23:00
131706    38868    530    2017-10-29 19:24:00    2017-10-29 19:24:00
131707    38868    658    2017-10-29 09:25:00    2017-10-29 09:25:00
131708    38868    852    2017-10-29 18:20:00    2017-10-29 18:20:00
131709    38868    670    2017-10-29 03:53:00    2017-10-29 03:53:00
131710    38869    954    2017-10-29 02:52:00    2017-10-29 02:52:00
131711    38869    718    2017-10-29 09:21:00    2017-10-29 09:21:00
131712    38869    843    2017-10-29 21:59:00    2017-10-29 21:59:00
131713    38869    577    2017-10-29 05:41:00    2017-10-29 05:41:00
131714    38869    638    2017-10-29 06:59:00    2017-10-29 06:59:00
131715    38870    621    2017-10-29 18:50:00    2017-10-29 18:50:00
131716    38870    944    2017-10-29 04:54:00    2017-10-29 04:54:00
131717    38870    737    2017-10-29 20:05:00    2017-10-29 20:05:00
131718    38870    814    2017-10-29 07:30:00    2017-10-29 07:30:00
131719    38870    835    2017-10-29 13:05:00    2017-10-29 13:05:00
131720    38871    806    2017-10-29 18:46:00    2017-10-29 18:46:00
131721    38871    845    2017-10-29 16:30:00    2017-10-29 16:30:00
131722    38871    496    2017-10-29 01:34:00    2017-10-29 01:34:00
131723    38871    566    2017-10-29 10:25:00    2017-10-29 10:25:00
131724    38871    907    2017-10-29 18:27:00    2017-10-29 18:27:00
131725    38872    606    2017-10-29 16:19:00    2017-10-29 16:19:00
131726    38872    669    2017-10-29 09:01:00    2017-10-29 09:01:00
131727    38872    522    2017-10-29 16:18:00    2017-10-29 16:18:00
131728    38872    635    2017-10-29 03:16:00    2017-10-29 03:16:00
131729    38872    919    2017-10-29 01:09:00    2017-10-29 01:09:00
131730    38873    838    2017-10-29 23:21:00    2017-10-29 23:21:00
131731    38873    466    2017-10-29 07:48:00    2017-10-29 07:48:00
131732    38873    615    2017-10-29 16:33:00    2017-10-29 16:33:00
131733    38873    858    2017-10-29 16:03:00    2017-10-29 16:03:00
131734    38873    537    2017-10-29 05:14:00    2017-10-29 05:14:00
131735    38874    857    2017-10-29 21:32:00    2017-10-29 21:32:00
131736    38874    674    2017-10-29 19:50:00    2017-10-29 19:50:00
131737    38874    483    2017-10-29 15:31:00    2017-10-29 15:31:00
131738    38874    727    2017-10-29 08:25:00    2017-10-29 08:25:00
131739    38874    524    2017-10-29 17:05:00    2017-10-29 17:05:00
131740    38875    568    2017-10-29 05:20:00    2017-10-29 05:20:00
131741    38875    957    2017-10-29 10:00:00    2017-10-29 10:00:00
131742    38875    885    2017-10-29 15:47:00    2017-10-29 15:47:00
131743    38875    832    2017-10-29 03:01:00    2017-10-29 03:01:00
131744    38875    699    2017-10-29 13:56:00    2017-10-29 13:56:00
131745    38876    470    2017-10-29 01:51:00    2017-10-29 01:51:00
131746    38876    857    2017-10-29 01:39:00    2017-10-29 01:39:00
131747    38876    569    2017-10-29 07:02:00    2017-10-29 07:02:00
131748    38876    623    2017-10-29 11:31:00    2017-10-29 11:31:00
131749    38876    788    2017-10-29 08:40:00    2017-10-29 08:40:00
131750    38877    660    2017-10-29 18:52:00    2017-10-29 18:52:00
131751    38877    815    2017-10-29 23:09:00    2017-10-29 23:09:00
131752    38877    466    2017-10-29 07:25:00    2017-10-29 07:25:00
131753    38877    810    2017-10-29 09:19:00    2017-10-29 09:19:00
131754    38877    881    2017-10-29 20:04:00    2017-10-29 20:04:00
131755    38878    717    2017-10-29 20:45:00    2017-10-29 20:45:00
131756    38878    668    2017-10-29 18:24:00    2017-10-29 18:24:00
131757    38878    731    2017-10-29 02:42:00    2017-10-29 02:42:00
131758    38878    789    2017-10-29 01:51:00    2017-10-29 01:51:00
131759    38878    820    2017-10-29 01:03:00    2017-10-29 01:03:00
131760    38879    833    2017-10-29 15:31:00    2017-10-29 15:31:00
131761    38879    598    2017-10-29 10:51:00    2017-10-29 10:51:00
131762    38879    672    2017-10-29 22:32:00    2017-10-29 22:32:00
131763    38879    516    2017-10-29 09:41:00    2017-10-29 09:41:00
131764    38879    828    2017-10-29 10:53:00    2017-10-29 10:53:00
131765    38880    676    2017-10-29 05:33:00    2017-10-29 05:33:00
131766    38880    825    2017-10-29 20:53:00    2017-10-29 20:53:00
131767    38880    680    2017-10-29 07:18:00    2017-10-29 07:18:00
131768    38880    491    2017-10-29 23:58:00    2017-10-29 23:58:00
131769    38880    941    2017-10-29 07:46:00    2017-10-29 07:46:00
131770    38881    489    2017-10-29 23:41:00    2017-10-29 23:41:00
131771    38881    520    2017-10-29 19:10:00    2017-10-29 19:10:00
131772    38881    769    2017-10-29 17:18:00    2017-10-29 17:18:00
131773    38881    622    2017-10-29 22:20:00    2017-10-29 22:20:00
131774    38881    467    2017-10-29 15:31:00    2017-10-29 15:31:00
131775    38882    839    2017-10-29 22:37:00    2017-10-29 22:37:00
131776    38882    737    2017-10-29 10:00:00    2017-10-29 10:00:00
131777    38882    519    2017-10-29 01:12:00    2017-10-29 01:12:00
131778    38882    686    2017-10-29 05:37:00    2017-10-29 05:37:00
131779    38882    953    2017-10-29 08:01:00    2017-10-29 08:01:00
131780    38883    911    2017-10-29 01:34:00    2017-10-29 01:34:00
131781    38883    731    2017-10-29 11:11:00    2017-10-29 11:11:00
131782    38883    503    2017-10-29 05:06:00    2017-10-29 05:06:00
131783    38883    647    2017-10-29 17:50:00    2017-10-29 17:50:00
131784    38883    525    2017-10-29 23:03:00    2017-10-29 23:03:00
131785    38884    916    2017-10-29 20:45:00    2017-10-29 20:45:00
131786    38884    569    2017-10-29 02:07:00    2017-10-29 02:07:00
131787    38884    582    2017-10-29 21:22:00    2017-10-29 21:22:00
131788    38884    583    2017-10-29 04:35:00    2017-10-29 04:35:00
131789    38884    778    2017-10-29 04:06:00    2017-10-29 04:06:00
131790    38885    520    2017-10-29 12:21:00    2017-10-29 12:21:00
131791    38885    852    2017-10-29 10:31:00    2017-10-29 10:31:00
131792    38885    882    2017-10-29 16:37:00    2017-10-29 16:37:00
131793    38885    663    2017-10-29 16:59:00    2017-10-29 16:59:00
131794    38885    559    2017-10-29 22:49:00    2017-10-29 22:49:00
131795    38886    600    2017-10-29 17:29:00    2017-10-29 17:29:00
131796    38886    811    2017-10-29 17:55:00    2017-10-29 17:55:00
131797    38886    495    2017-10-29 13:19:00    2017-10-29 13:19:00
131798    38886    767    2017-10-29 01:46:00    2017-10-29 01:46:00
131799    38886    878    2017-10-29 18:02:00    2017-10-29 18:02:00
131800    38887    464    2017-10-29 08:12:00    2017-10-29 08:12:00
131801    38887    623    2017-10-29 11:11:00    2017-10-29 11:11:00
131802    38887    519    2017-10-29 01:57:00    2017-10-29 01:57:00
131803    38887    835    2017-10-29 01:39:00    2017-10-29 01:39:00
131804    38887    838    2017-10-29 19:22:00    2017-10-29 19:22:00
131805    38888    881    2017-10-29 12:30:00    2017-10-29 12:30:00
131806    38888    651    2017-10-29 01:22:00    2017-10-29 01:22:00
131807    38888    702    2017-10-29 03:27:00    2017-10-29 03:27:00
131808    38888    866    2017-10-29 22:07:00    2017-10-29 22:07:00
131809    38888    474    2017-10-29 07:48:00    2017-10-29 07:48:00
131810    38889    628    2017-10-29 23:54:00    2017-10-29 23:54:00
131811    38889    518    2017-10-29 13:08:00    2017-10-29 13:08:00
131812    38889    851    2017-10-29 20:52:00    2017-10-29 20:52:00
131813    38889    663    2017-10-29 16:20:00    2017-10-29 16:20:00
131814    38889    493    2017-10-29 05:03:00    2017-10-29 05:03:00
131815    38890    713    2017-10-29 17:18:00    2017-10-29 17:18:00
131816    38890    892    2017-10-29 16:50:00    2017-10-29 16:50:00
131817    38890    483    2017-10-29 12:37:00    2017-10-29 12:37:00
131818    38890    616    2017-10-29 21:21:00    2017-10-29 21:21:00
131819    38890    708    2017-10-29 23:08:00    2017-10-29 23:08:00
131820    38891    735    2017-10-29 13:20:00    2017-10-29 13:20:00
131821    38891    494    2017-10-29 09:28:00    2017-10-29 09:28:00
131822    38891    626    2017-10-29 22:10:00    2017-10-29 22:10:00
131823    38891    823    2017-10-29 05:56:00    2017-10-29 05:56:00
131824    38891    507    2017-10-29 05:31:00    2017-10-29 05:31:00
131825    38892    827    2017-10-29 18:02:00    2017-10-29 18:02:00
131826    38892    534    2017-10-29 01:45:00    2017-10-29 01:45:00
131827    38892    792    2017-10-29 11:29:00    2017-10-29 11:29:00
131828    38892    625    2017-10-29 14:56:00    2017-10-29 14:56:00
131829    38892    545    2017-10-29 06:58:00    2017-10-29 06:58:00
131830    38893    474    2017-10-29 13:10:00    2017-10-29 13:10:00
131831    38893    591    2017-10-29 02:53:00    2017-10-29 02:53:00
131832    38893    490    2017-10-29 08:48:00    2017-10-29 08:48:00
131833    38893    667    2017-10-29 05:16:00    2017-10-29 05:16:00
131834    38893    949    2017-10-29 03:58:00    2017-10-29 03:58:00
131835    38894    661    2017-10-29 12:20:00    2017-10-29 12:20:00
131836    38894    502    2017-10-29 13:33:00    2017-10-29 13:33:00
131837    38894    897    2017-10-29 07:14:00    2017-10-29 07:14:00
131838    38894    686    2017-10-29 11:52:00    2017-10-29 11:52:00
131839    38894    714    2017-10-29 01:12:00    2017-10-29 01:12:00
131840    38895    816    2017-10-29 16:32:00    2017-10-29 16:32:00
131841    38895    783    2017-10-29 22:08:00    2017-10-29 22:08:00
131842    38895    703    2017-10-29 04:50:00    2017-10-29 04:50:00
131843    38895    896    2017-10-29 05:03:00    2017-10-29 05:03:00
131844    38895    664    2017-10-29 05:44:00    2017-10-29 05:44:00
131845    38896    687    2017-10-29 15:22:00    2017-10-29 15:22:00
131846    38896    934    2017-10-29 01:07:00    2017-10-29 01:07:00
131847    38896    793    2017-10-29 10:24:00    2017-10-29 10:24:00
131848    38896    699    2017-10-29 16:50:00    2017-10-29 16:50:00
131849    38896    807    2017-10-29 07:06:00    2017-10-29 07:06:00
131850    38897    882    2017-10-29 10:12:00    2017-10-29 10:12:00
131851    38897    786    2017-10-29 15:16:00    2017-10-29 15:16:00
131852    38897    537    2017-10-29 11:46:00    2017-10-29 11:46:00
131853    38897    523    2017-10-29 15:12:00    2017-10-29 15:12:00
131854    38897    540    2017-10-29 23:45:00    2017-10-29 23:45:00
130338    38594    \N    2017-10-25 11:45:00    2017-10-25 11:45:00
131855    38898    589    2017-10-30 22:20:00    2017-10-30 22:20:00
131856    38898    766    2017-10-30 23:32:00    2017-10-30 23:32:00
131857    38898    833    2017-10-30 08:57:00    2017-10-30 08:57:00
131858    38898    813    2017-10-30 02:56:00    2017-10-30 02:56:00
131859    38898    602    2017-10-30 16:27:00    2017-10-30 16:27:00
131860    38899    539    2017-10-30 07:53:00    2017-10-30 07:53:00
131861    38899    858    2017-10-30 14:34:00    2017-10-30 14:34:00
131862    38899    709    2017-10-30 11:12:00    2017-10-30 11:12:00
131863    38899    700    2017-10-30 14:53:00    2017-10-30 14:53:00
131864    38899    785    2017-10-30 17:57:00    2017-10-30 17:57:00
131865    38900    650    2017-10-30 11:09:00    2017-10-30 11:09:00
131866    38900    869    2017-10-30 21:14:00    2017-10-30 21:14:00
131867    38900    961    2017-10-30 03:34:00    2017-10-30 03:34:00
131868    38900    490    2017-10-30 03:26:00    2017-10-30 03:26:00
131869    38900    735    2017-10-30 16:31:00    2017-10-30 16:31:00
131870    38901    656    2017-10-30 12:47:00    2017-10-30 12:47:00
131871    38901    846    2017-10-30 22:49:00    2017-10-30 22:49:00
131872    38901    543    2017-10-30 13:20:00    2017-10-30 13:20:00
131873    38901    926    2017-10-30 20:11:00    2017-10-30 20:11:00
131874    38901    773    2017-10-30 01:15:00    2017-10-30 01:15:00
131875    38902    708    2017-10-30 22:32:00    2017-10-30 22:32:00
131876    38902    925    2017-10-30 05:04:00    2017-10-30 05:04:00
131877    38902    494    2017-10-30 12:06:00    2017-10-30 12:06:00
131878    38902    615    2017-10-30 17:41:00    2017-10-30 17:41:00
131879    38902    763    2017-10-30 13:57:00    2017-10-30 13:57:00
131880    38903    683    2017-10-30 10:49:00    2017-10-30 10:49:00
131881    38903    941    2017-10-30 22:02:00    2017-10-30 22:02:00
131882    38903    575    2017-10-30 22:45:00    2017-10-30 22:45:00
131883    38903    858    2017-10-30 22:44:00    2017-10-30 22:44:00
131884    38903    574    2017-10-30 15:29:00    2017-10-30 15:29:00
131885    38904    543    2017-10-30 05:31:00    2017-10-30 05:31:00
131886    38904    798    2017-10-30 09:57:00    2017-10-30 09:57:00
131887    38904    468    2017-10-30 04:15:00    2017-10-30 04:15:00
131888    38904    519    2017-10-30 05:18:00    2017-10-30 05:18:00
131889    38904    948    2017-10-30 03:27:00    2017-10-30 03:27:00
131890    38905    525    2017-10-30 18:13:00    2017-10-30 18:13:00
131891    38905    782    2017-10-30 03:43:00    2017-10-30 03:43:00
131892    38905    786    2017-10-30 15:46:00    2017-10-30 15:46:00
131893    38905    504    2017-10-30 07:31:00    2017-10-30 07:31:00
131894    38905    803    2017-10-30 03:40:00    2017-10-30 03:40:00
131895    38906    654    2017-10-30 07:58:00    2017-10-30 07:58:00
131896    38906    701    2017-10-30 17:06:00    2017-10-30 17:06:00
131897    38906    561    2017-10-30 18:03:00    2017-10-30 18:03:00
131898    38906    915    2017-10-30 15:01:00    2017-10-30 15:01:00
131899    38906    630    2017-10-30 17:40:00    2017-10-30 17:40:00
131900    38907    509    2017-10-31 22:57:00    2017-10-31 22:57:00
131901    38907    937    2017-10-31 16:59:00    2017-10-31 16:59:00
131902    38907    543    2017-10-31 13:00:00    2017-10-31 13:00:00
131903    38907    496    2017-10-31 11:55:00    2017-10-31 11:55:00
131904    38907    648    2017-10-31 16:02:00    2017-10-31 16:02:00
131905    38908    605    2017-10-31 05:26:00    2017-10-31 05:26:00
131906    38908    817    2017-10-31 01:28:00    2017-10-31 01:28:00
131907    38908    721    2017-10-31 21:47:00    2017-10-31 21:47:00
131908    38908    742    2017-10-31 07:40:00    2017-10-31 07:40:00
131909    38908    929    2017-10-31 15:00:00    2017-10-31 15:00:00
131910    38909    709    2017-10-31 04:49:00    2017-10-31 04:49:00
131911    38909    511    2017-10-31 06:31:00    2017-10-31 06:31:00
131912    38909    796    2017-10-31 20:31:00    2017-10-31 20:31:00
131913    38909    858    2017-10-31 19:07:00    2017-10-31 19:07:00
131914    38909    809    2017-10-31 02:35:00    2017-10-31 02:35:00
131915    38910    463    2017-10-31 13:45:00    2017-10-31 13:45:00
131916    38910    907    2017-10-31 22:02:00    2017-10-31 22:02:00
131917    38910    492    2017-10-31 13:28:00    2017-10-31 13:28:00
131918    38910    659    2017-10-31 01:39:00    2017-10-31 01:39:00
131919    38910    767    2017-10-31 03:00:00    2017-10-31 03:00:00
131920    38911    906    2017-10-31 16:00:00    2017-10-31 16:00:00
131921    38911    513    2017-10-31 11:37:00    2017-10-31 11:37:00
131922    38911    501    2017-10-31 21:46:00    2017-10-31 21:46:00
131923    38911    782    2017-10-31 10:37:00    2017-10-31 10:37:00
131924    38911    554    2017-10-31 21:30:00    2017-10-31 21:30:00
131925    38912    772    2017-10-31 18:37:00    2017-10-31 18:37:00
131926    38912    747    2017-10-31 04:04:00    2017-10-31 04:04:00
131927    38912    619    2017-10-31 01:05:00    2017-10-31 01:05:00
131928    38912    521    2017-10-31 17:09:00    2017-10-31 17:09:00
131929    38912    709    2017-10-31 04:08:00    2017-10-31 04:08:00
131930    38913    533    2017-10-31 12:27:00    2017-10-31 12:27:00
131931    38913    504    2017-10-31 04:38:00    2017-10-31 04:38:00
131932    38913    565    2017-10-31 11:22:00    2017-10-31 11:22:00
131933    38913    613    2017-10-31 22:20:00    2017-10-31 22:20:00
131934    38913    660    2017-10-31 10:55:00    2017-10-31 10:55:00
131935    38914    775    2017-10-31 07:02:00    2017-10-31 07:02:00
131936    38914    672    2017-10-31 14:14:00    2017-10-31 14:14:00
131937    38914    669    2017-10-31 15:17:00    2017-10-31 15:17:00
131938    38914    640    2017-10-31 04:51:00    2017-10-31 04:51:00
131939    38914    590    2017-10-31 18:40:00    2017-10-31 18:40:00
131940    38915    870    2017-10-31 13:26:00    2017-10-31 13:26:00
131941    38915    858    2017-10-31 15:48:00    2017-10-31 15:48:00
131942    38915    725    2017-10-31 21:03:00    2017-10-31 21:03:00
131943    38915    917    2017-10-31 02:17:00    2017-10-31 02:17:00
131944    38915    583    2017-10-31 21:55:00    2017-10-31 21:55:00
131945    38916    742    2017-10-31 18:28:00    2017-10-31 18:28:00
131946    38916    567    2017-10-31 08:11:00    2017-10-31 08:11:00
131947    38916    936    2017-10-31 14:25:00    2017-10-31 14:25:00
131948    38916    743    2017-10-31 17:50:00    2017-10-31 17:50:00
131949    38916    535    2017-10-31 14:19:00    2017-10-31 14:19:00
131950    38917    527    2017-10-31 07:06:00    2017-10-31 07:06:00
131951    38917    578    2017-10-31 13:35:00    2017-10-31 13:35:00
131952    38917    625    2017-10-31 16:21:00    2017-10-31 16:21:00
131953    38917    659    2017-10-31 13:19:00    2017-10-31 13:19:00
131954    38917    902    2017-10-31 17:46:00    2017-10-31 17:46:00
131955    38918    853    2017-10-31 02:30:00    2017-10-31 02:30:00
131956    38918    958    2017-10-31 20:02:00    2017-10-31 20:02:00
131957    38918    522    2017-10-31 02:39:00    2017-10-31 02:39:00
131958    38918    909    2017-10-31 04:48:00    2017-10-31 04:48:00
131959    38918    720    2017-10-31 08:37:00    2017-10-31 08:37:00
131960    38919    817    2017-10-31 23:06:00    2017-10-31 23:06:00
131961    38919    952    2017-10-31 01:20:00    2017-10-31 01:20:00
131962    38919    492    2017-10-31 18:47:00    2017-10-31 18:47:00
131963    38919    693    2017-10-31 22:58:00    2017-10-31 22:58:00
131964    38919    697    2017-10-31 22:14:00    2017-10-31 22:14:00
131965    38920    746    2017-10-31 17:52:00    2017-10-31 17:52:00
131966    38920    699    2017-10-31 01:33:00    2017-10-31 01:33:00
131967    38920    518    2017-10-31 10:58:00    2017-10-31 10:58:00
131968    38920    624    2017-10-31 11:17:00    2017-10-31 11:17:00
131969    38920    525    2017-10-31 20:17:00    2017-10-31 20:17:00
131970    38921    614    2017-10-31 13:13:00    2017-10-31 13:13:00
131971    38921    628    2017-10-31 20:43:00    2017-10-31 20:43:00
131972    38921    652    2017-10-31 10:12:00    2017-10-31 10:12:00
131973    38921    606    2017-10-31 19:40:00    2017-10-31 19:40:00
131974    38921    531    2017-10-31 03:56:00    2017-10-31 03:56:00
131975    38922    677    2017-10-31 05:33:00    2017-10-31 05:33:00
131976    38922    827    2017-10-31 03:42:00    2017-10-31 03:42:00
131977    38922    492    2017-10-31 10:18:00    2017-10-31 10:18:00
131978    38922    835    2017-10-31 15:56:00    2017-10-31 15:56:00
131979    38922    796    2017-10-31 16:35:00    2017-10-31 16:35:00
131980    38923    517    2017-10-31 11:17:00    2017-10-31 11:17:00
131981    38923    868    2017-10-31 23:56:00    2017-10-31 23:56:00
131982    38923    865    2017-10-31 17:49:00    2017-10-31 17:49:00
131983    38923    556    2017-10-31 09:00:00    2017-10-31 09:00:00
131984    38923    713    2017-10-31 18:25:00    2017-10-31 18:25:00
131985    38924    690    2017-10-31 04:22:00    2017-10-31 04:22:00
131986    38924    800    2017-10-31 05:37:00    2017-10-31 05:37:00
131987    38924    707    2017-10-31 14:08:00    2017-10-31 14:08:00
131988    38924    582    2017-10-31 02:03:00    2017-10-31 02:03:00
131989    38924    519    2017-10-31 20:20:00    2017-10-31 20:20:00
131990    38925    822    2017-10-31 10:18:00    2017-10-31 10:18:00
131991    38925    581    2017-10-31 11:42:00    2017-10-31 11:42:00
131992    38925    782    2017-10-31 03:59:00    2017-10-31 03:59:00
131993    38925    562    2017-10-31 13:30:00    2017-10-31 13:30:00
131994    38925    710    2017-10-31 23:46:00    2017-10-31 23:46:00
131995    38926    603    2017-10-31 12:17:00    2017-10-31 12:17:00
131996    38926    759    2017-10-31 18:43:00    2017-10-31 18:43:00
131997    38926    811    2017-10-31 22:37:00    2017-10-31 22:37:00
131998    38926    597    2017-10-31 13:32:00    2017-10-31 13:32:00
131999    38926    636    2017-10-31 11:41:00    2017-10-31 11:41:00
132000    38927    939    2017-10-31 09:02:00    2017-10-31 09:02:00
132001    38927    631    2017-10-31 14:42:00    2017-10-31 14:42:00
132002    38927    957    2017-10-31 11:09:00    2017-10-31 11:09:00
132003    38927    959    2017-10-31 15:11:00    2017-10-31 15:11:00
132004    38927    638    2017-10-31 15:07:00    2017-10-31 15:07:00
132005    38928    915    2017-10-31 18:07:00    2017-10-31 18:07:00
132006    38928    788    2017-10-31 10:07:00    2017-10-31 10:07:00
132007    38928    697    2017-10-31 02:39:00    2017-10-31 02:39:00
132008    38928    740    2017-10-31 13:25:00    2017-10-31 13:25:00
132009    38928    665    2017-10-31 20:27:00    2017-10-31 20:27:00
132010    38929    542    2017-10-31 10:15:00    2017-10-31 10:15:00
132011    38929    878    2017-10-31 21:07:00    2017-10-31 21:07:00
132012    38929    650    2017-10-31 20:16:00    2017-10-31 20:16:00
132013    38929    650    2017-10-31 09:48:00    2017-10-31 09:48:00
132014    38929    707    2017-10-31 20:36:00    2017-10-31 20:36:00
132015    38930    935    2017-10-31 17:11:00    2017-10-31 17:11:00
132016    38930    638    2017-10-31 20:31:00    2017-10-31 20:31:00
132017    38930    713    2017-10-31 16:23:00    2017-10-31 16:23:00
132018    38930    777    2017-10-31 04:31:00    2017-10-31 04:31:00
132019    38930    617    2017-10-31 03:12:00    2017-10-31 03:12:00
132020    38931    677    2017-10-31 09:44:00    2017-10-31 09:44:00
132021    38931    543    2017-10-31 22:58:00    2017-10-31 22:58:00
132022    38931    616    2017-10-31 11:58:00    2017-10-31 11:58:00
132023    38931    606    2017-10-31 18:16:00    2017-10-31 18:16:00
132024    38931    562    2017-10-31 06:04:00    2017-10-31 06:04:00
132025    38932    604    2017-10-31 14:10:00    2017-10-31 14:10:00
132026    38932    697    2017-10-31 07:27:00    2017-10-31 07:27:00
132027    38932    639    2017-10-31 21:50:00    2017-10-31 21:50:00
132028    38932    563    2017-10-31 17:24:00    2017-10-31 17:24:00
132029    38932    529    2017-10-31 10:53:00    2017-10-31 10:53:00
132030    38933    671    2017-10-31 16:10:00    2017-10-31 16:10:00
132031    38933    858    2017-10-31 23:23:00    2017-10-31 23:23:00
132032    38933    828    2017-10-31 10:10:00    2017-10-31 10:10:00
132033    38933    945    2017-10-31 20:44:00    2017-10-31 20:44:00
132034    38933    628    2017-10-31 11:29:00    2017-10-31 11:29:00
132035    38934    468    2017-10-31 21:28:00    2017-10-31 21:28:00
132036    38934    817    2017-10-31 10:29:00    2017-10-31 10:29:00
132037    38934    644    2017-10-31 16:31:00    2017-10-31 16:31:00
132038    38934    957    2017-10-31 09:52:00    2017-10-31 09:52:00
132039    38934    850    2017-10-31 20:35:00    2017-10-31 20:35:00
132040    38935    853    2017-10-31 03:23:00    2017-10-31 03:23:00
132041    38935    529    2017-10-31 10:59:00    2017-10-31 10:59:00
132042    38935    484    2017-10-31 12:37:00    2017-10-31 12:37:00
132043    38935    903    2017-10-31 03:21:00    2017-10-31 03:21:00
132044    38935    789    2017-10-31 03:48:00    2017-10-31 03:48:00
132045    38936    834    2017-10-31 04:19:00    2017-10-31 04:19:00
132046    38936    639    2017-10-31 21:17:00    2017-10-31 21:17:00
132047    38936    644    2017-10-31 08:10:00    2017-10-31 08:10:00
132048    38936    669    2017-10-31 04:34:00    2017-10-31 04:34:00
132049    38936    940    2017-10-31 13:40:00    2017-10-31 13:40:00
132050    38937    589    2017-10-31 10:32:00    2017-10-31 10:32:00
132051    38937    676    2017-10-31 05:50:00    2017-10-31 05:50:00
132052    38937    939    2017-10-31 12:46:00    2017-10-31 12:46:00
132053    38937    482    2017-10-31 14:55:00    2017-10-31 14:55:00
132054    38937    923    2017-10-31 12:23:00    2017-10-31 12:23:00
132055    38938    548    2017-10-31 08:47:00    2017-10-31 08:47:00
132056    38938    906    2017-10-31 12:23:00    2017-10-31 12:23:00
132057    38938    670    2017-10-31 02:10:00    2017-10-31 02:10:00
132058    38938    524    2017-10-31 22:23:00    2017-10-31 22:23:00
132059    38938    567    2017-10-31 13:08:00    2017-10-31 13:08:00
132060    38939    883    2017-10-31 06:13:00    2017-10-31 06:13:00
132061    38939    604    2017-10-31 21:08:00    2017-10-31 21:08:00
132062    38939    529    2017-10-31 20:30:00    2017-10-31 20:30:00
132063    38939    614    2017-10-31 07:13:00    2017-10-31 07:13:00
132064    38939    824    2017-10-31 01:39:00    2017-10-31 01:39:00
132065    38940    655    2017-10-31 20:03:00    2017-10-31 20:03:00
132066    38940    695    2017-10-31 13:51:00    2017-10-31 13:51:00
132067    38940    627    2017-10-31 05:05:00    2017-10-31 05:05:00
132068    38940    669    2017-10-31 08:17:00    2017-10-31 08:17:00
132069    38940    841    2017-10-31 21:21:00    2017-10-31 21:21:00
132070    38941    953    2017-10-31 16:26:00    2017-10-31 16:26:00
132071    38941    699    2017-10-31 14:07:00    2017-10-31 14:07:00
132072    38941    497    2017-10-31 16:37:00    2017-10-31 16:37:00
132073    38941    717    2017-10-31 06:14:00    2017-10-31 06:14:00
132074    38941    486    2017-10-31 17:23:00    2017-10-31 17:23:00
132075    38942    870    2017-10-31 18:42:00    2017-10-31 18:42:00
132076    38942    528    2017-10-31 04:56:00    2017-10-31 04:56:00
132077    38942    518    2017-10-31 01:07:00    2017-10-31 01:07:00
132078    38942    915    2017-10-31 23:19:00    2017-10-31 23:19:00
132079    38942    755    2017-10-31 03:39:00    2017-10-31 03:39:00
132080    38943    619    2017-10-31 07:19:00    2017-10-31 07:19:00
132081    38943    954    2017-10-31 14:24:00    2017-10-31 14:24:00
132082    38943    915    2017-10-31 07:25:00    2017-10-31 07:25:00
132083    38943    845    2017-10-31 11:17:00    2017-10-31 11:17:00
132084    38943    793    2017-10-31 11:10:00    2017-10-31 11:10:00
132085    38944    722    2017-10-31 05:33:00    2017-10-31 05:33:00
132086    38944    646    2017-10-31 18:22:00    2017-10-31 18:22:00
132087    38944    903    2017-10-31 09:00:00    2017-10-31 09:00:00
132088    38944    698    2017-10-31 23:13:00    2017-10-31 23:13:00
132089    38944    598    2017-10-31 21:54:00    2017-10-31 21:54:00
132090    38945    804    2017-10-31 11:57:00    2017-10-31 11:57:00
132091    38945    574    2017-10-31 01:11:00    2017-10-31 01:11:00
132092    38945    636    2017-10-31 17:18:00    2017-10-31 17:18:00
132093    38945    654    2017-10-31 01:38:00    2017-10-31 01:38:00
132094    38945    729    2017-10-31 23:31:00    2017-10-31 23:31:00
132095    38946    805    2017-10-31 18:19:00    2017-10-31 18:19:00
132096    38946    751    2017-10-31 16:29:00    2017-10-31 16:29:00
132097    38946    894    2017-10-31 15:07:00    2017-10-31 15:07:00
132098    38946    703    2017-10-31 04:49:00    2017-10-31 04:49:00
132099    38946    917    2017-10-31 03:01:00    2017-10-31 03:01:00
132100    38947    685    2017-10-31 22:27:00    2017-10-31 22:27:00
132101    38947    645    2017-10-31 03:12:00    2017-10-31 03:12:00
132102    38947    627    2017-10-31 06:13:00    2017-10-31 06:13:00
132103    38947    715    2017-10-31 18:53:00    2017-10-31 18:53:00
132104    38947    728    2017-10-31 15:19:00    2017-10-31 15:19:00
132105    38948    497    2017-10-31 04:06:00    2017-10-31 04:06:00
132106    38948    742    2017-10-31 23:27:00    2017-10-31 23:27:00
132107    38948    654    2017-10-31 13:11:00    2017-10-31 13:11:00
132108    38948    668    2017-10-31 17:12:00    2017-10-31 17:12:00
132109    38948    869    2017-10-31 20:27:00    2017-10-31 20:27:00
132110    38949    511    2017-10-31 18:50:00    2017-10-31 18:50:00
132111    38949    775    2017-10-31 02:00:00    2017-10-31 02:00:00
132112    38949    594    2017-10-31 01:16:00    2017-10-31 01:16:00
132113    38949    952    2017-10-31 13:36:00    2017-10-31 13:36:00
132114    38949    618    2017-10-31 16:00:00    2017-10-31 16:00:00
132115    38950    670    2017-10-31 07:04:00    2017-10-31 07:04:00
132116    38950    899    2017-10-31 19:39:00    2017-10-31 19:39:00
132117    38950    792    2017-10-31 15:03:00    2017-10-31 15:03:00
132118    38950    854    2017-10-31 07:08:00    2017-10-31 07:08:00
132119    38950    846    2017-10-31 06:58:00    2017-10-31 06:58:00
132120    38951    748    2017-10-31 15:30:00    2017-10-31 15:30:00
132121    38951    716    2017-10-31 21:29:00    2017-10-31 21:29:00
132122    38951    604    2017-10-31 04:59:00    2017-10-31 04:59:00
132123    38951    604    2017-10-31 03:45:00    2017-10-31 03:45:00
132124    38951    627    2017-10-31 19:09:00    2017-10-31 19:09:00
132125    38952    749    2017-10-31 09:50:00    2017-10-31 09:50:00
132126    38952    959    2017-10-31 03:02:00    2017-10-31 03:02:00
132127    38952    821    2017-10-31 15:29:00    2017-10-31 15:29:00
132128    38952    734    2017-10-31 01:07:00    2017-10-31 01:07:00
132129    38952    789    2017-10-31 10:24:00    2017-10-31 10:24:00
132130    38953    472    2017-11-01 02:40:00    2017-11-01 02:40:00
132131    38953    924    2017-11-01 08:40:00    2017-11-01 08:40:00
132132    38953    503    2017-11-01 01:34:00    2017-11-01 01:34:00
132133    38953    477    2017-11-01 09:11:00    2017-11-01 09:11:00
132134    38953    908    2017-11-01 08:10:00    2017-11-01 08:10:00
132135    38954    721    2017-11-01 13:22:00    2017-11-01 13:22:00
132136    38954    626    2017-11-01 06:55:00    2017-11-01 06:55:00
132137    38954    622    2017-11-01 18:05:00    2017-11-01 18:05:00
132138    38954    541    2017-11-01 01:16:00    2017-11-01 01:16:00
132139    38954    773    2017-11-01 01:17:00    2017-11-01 01:17:00
132140    38955    734    2017-11-01 16:49:00    2017-11-01 16:49:00
132141    38955    779    2017-11-01 16:30:00    2017-11-01 16:30:00
132142    38955    700    2017-11-01 22:05:00    2017-11-01 22:05:00
132143    38955    761    2017-11-01 21:35:00    2017-11-01 21:35:00
132144    38955    761    2017-11-01 02:24:00    2017-11-01 02:24:00
132145    38956    525    2017-11-01 06:16:00    2017-11-01 06:16:00
132146    38956    936    2017-11-01 06:16:00    2017-11-01 06:16:00
132147    38956    941    2017-11-01 06:42:00    2017-11-01 06:42:00
132148    38956    472    2017-11-01 19:00:00    2017-11-01 19:00:00
132149    38956    936    2017-11-01 01:43:00    2017-11-01 01:43:00
132150    38957    888    2017-11-01 12:39:00    2017-11-01 12:39:00
132151    38957    926    2017-11-01 20:25:00    2017-11-01 20:25:00
132152    38957    648    2017-11-01 03:00:00    2017-11-01 03:00:00
132153    38957    689    2017-11-01 19:41:00    2017-11-01 19:41:00
132154    38957    496    2017-11-01 02:05:00    2017-11-01 02:05:00
132155    38958    889    2017-11-01 10:16:00    2017-11-01 10:16:00
132156    38958    789    2017-11-01 01:59:00    2017-11-01 01:59:00
132157    38958    743    2017-11-01 18:55:00    2017-11-01 18:55:00
132158    38958    604    2017-11-01 23:19:00    2017-11-01 23:19:00
132159    38958    493    2017-11-01 06:23:00    2017-11-01 06:23:00
132160    38959    639    2017-11-01 10:00:00    2017-11-01 10:00:00
132161    38959    696    2017-11-01 22:06:00    2017-11-01 22:06:00
132162    38959    778    2017-11-01 11:46:00    2017-11-01 11:46:00
132163    38959    710    2017-11-01 19:48:00    2017-11-01 19:48:00
132164    38959    677    2017-11-01 06:01:00    2017-11-01 06:01:00
132165    38960    534    2017-11-01 18:10:00    2017-11-01 18:10:00
132166    38960    511    2017-11-01 04:49:00    2017-11-01 04:49:00
132167    38960    479    2017-11-01 06:35:00    2017-11-01 06:35:00
132168    38960    748    2017-11-01 01:08:00    2017-11-01 01:08:00
132169    38960    669    2017-11-01 10:15:00    2017-11-01 10:15:00
132170    38961    794    2017-11-01 20:49:00    2017-11-01 20:49:00
132171    38961    473    2017-11-01 03:39:00    2017-11-01 03:39:00
132172    38961    606    2017-11-01 02:37:00    2017-11-01 02:37:00
132173    38961    622    2017-11-01 20:07:00    2017-11-01 20:07:00
132174    38961    730    2017-11-01 19:39:00    2017-11-01 19:39:00
132175    38962    873    2017-11-01 11:33:00    2017-11-01 11:33:00
132176    38962    712    2017-11-01 02:12:00    2017-11-01 02:12:00
132177    38962    928    2017-11-01 21:17:00    2017-11-01 21:17:00
132178    38962    672    2017-11-01 03:23:00    2017-11-01 03:23:00
132179    38962    615    2017-11-01 03:05:00    2017-11-01 03:05:00
132180    38963    611    2017-11-01 20:59:00    2017-11-01 20:59:00
132181    38963    940    2017-11-01 07:35:00    2017-11-01 07:35:00
132182    38963    480    2017-11-01 08:00:00    2017-11-01 08:00:00
132183    38963    779    2017-11-01 02:57:00    2017-11-01 02:57:00
132184    38963    781    2017-11-01 13:37:00    2017-11-01 13:37:00
132185    38964    832    2017-11-01 03:23:00    2017-11-01 03:23:00
132186    38964    930    2017-11-01 16:21:00    2017-11-01 16:21:00
132187    38964    926    2017-11-01 04:06:00    2017-11-01 04:06:00
132188    38964    866    2017-11-01 20:11:00    2017-11-01 20:11:00
132189    38964    878    2017-11-01 01:19:00    2017-11-01 01:19:00
132190    38965    474    2017-11-01 03:31:00    2017-11-01 03:31:00
132191    38965    543    2017-11-01 06:00:00    2017-11-01 06:00:00
132192    38965    907    2017-11-01 23:20:00    2017-11-01 23:20:00
132193    38965    958    2017-11-01 19:38:00    2017-11-01 19:38:00
132194    38965    508    2017-11-01 23:11:00    2017-11-01 23:11:00
132195    38966    522    2017-11-01 23:59:00    2017-11-01 23:59:00
132196    38966    887    2017-11-01 06:07:00    2017-11-01 06:07:00
132197    38966    521    2017-11-01 02:51:00    2017-11-01 02:51:00
132198    38966    745    2017-11-01 01:08:00    2017-11-01 01:08:00
132199    38966    594    2017-11-01 12:21:00    2017-11-01 12:21:00
132200    38967    901    2017-11-01 06:55:00    2017-11-01 06:55:00
132201    38967    541    2017-11-01 07:30:00    2017-11-01 07:30:00
132202    38967    758    2017-11-01 08:34:00    2017-11-01 08:34:00
132203    38967    471    2017-11-01 07:14:00    2017-11-01 07:14:00
132204    38967    692    2017-11-01 06:18:00    2017-11-01 06:18:00
132205    38968    695    2017-11-01 02:52:00    2017-11-01 02:52:00
132206    38968    512    2017-11-01 02:09:00    2017-11-01 02:09:00
132207    38968    527    2017-11-01 14:20:00    2017-11-01 14:20:00
132208    38968    913    2017-11-01 16:33:00    2017-11-01 16:33:00
132209    38968    545    2017-11-01 14:42:00    2017-11-01 14:42:00
132210    38969    932    2017-11-01 14:30:00    2017-11-01 14:30:00
132211    38969    955    2017-11-01 08:32:00    2017-11-01 08:32:00
132212    38969    504    2017-11-01 16:54:00    2017-11-01 16:54:00
132213    38969    871    2017-11-01 11:38:00    2017-11-01 11:38:00
132214    38969    799    2017-11-01 09:27:00    2017-11-01 09:27:00
132215    38970    850    2017-11-01 13:06:00    2017-11-01 13:06:00
132216    38970    550    2017-11-01 01:34:00    2017-11-01 01:34:00
132217    38970    653    2017-11-01 13:34:00    2017-11-01 13:34:00
132218    38970    861    2017-11-01 05:21:00    2017-11-01 05:21:00
132219    38970    903    2017-11-01 04:34:00    2017-11-01 04:34:00
132220    38971    707    2017-11-01 13:12:00    2017-11-01 13:12:00
132221    38971    508    2017-11-01 03:54:00    2017-11-01 03:54:00
132222    38971    469    2017-11-01 12:49:00    2017-11-01 12:49:00
132223    38971    510    2017-11-01 19:32:00    2017-11-01 19:32:00
132224    38971    726    2017-11-01 06:21:00    2017-11-01 06:21:00
132225    38972    876    2017-11-01 22:20:00    2017-11-01 22:20:00
132226    38972    834    2017-11-01 08:49:00    2017-11-01 08:49:00
132227    38972    685    2017-11-01 12:01:00    2017-11-01 12:01:00
132228    38972    732    2017-11-01 03:26:00    2017-11-01 03:26:00
132229    38972    786    2017-11-01 08:48:00    2017-11-01 08:48:00
132230    38973    834    2017-11-01 04:19:00    2017-11-01 04:19:00
132231    38973    894    2017-11-01 19:57:00    2017-11-01 19:57:00
132232    38973    853    2017-11-01 22:28:00    2017-11-01 22:28:00
132233    38973    570    2017-11-01 11:36:00    2017-11-01 11:36:00
132234    38973    481    2017-11-01 03:50:00    2017-11-01 03:50:00
132235    38974    928    2017-11-01 19:44:00    2017-11-01 19:44:00
132236    38974    491    2017-11-01 07:52:00    2017-11-01 07:52:00
132237    38974    661    2017-11-01 18:28:00    2017-11-01 18:28:00
132238    38974    596    2017-11-01 03:09:00    2017-11-01 03:09:00
132239    38974    771    2017-11-01 23:00:00    2017-11-01 23:00:00
132240    38975    779    2017-11-01 08:13:00    2017-11-01 08:13:00
132241    38975    696    2017-11-01 04:32:00    2017-11-01 04:32:00
132242    38975    499    2017-11-01 13:42:00    2017-11-01 13:42:00
132243    38975    736    2017-11-01 05:50:00    2017-11-01 05:50:00
132244    38975    657    2017-11-01 22:54:00    2017-11-01 22:54:00
132245    38976    734    2017-11-01 23:12:00    2017-11-01 23:12:00
132246    38976    769    2017-11-01 01:53:00    2017-11-01 01:53:00
132247    38976    698    2017-11-01 16:48:00    2017-11-01 16:48:00
132248    38976    668    2017-11-01 03:48:00    2017-11-01 03:48:00
132249    38976    743    2017-11-01 05:56:00    2017-11-01 05:56:00
132250    38977    960    2017-11-01 11:36:00    2017-11-01 11:36:00
132251    38977    805    2017-11-01 23:09:00    2017-11-01 23:09:00
132252    38977    774    2017-11-01 13:40:00    2017-11-01 13:40:00
132253    38977    750    2017-11-01 18:52:00    2017-11-01 18:52:00
132254    38977    487    2017-11-01 12:22:00    2017-11-01 12:22:00
132255    38978    677    2017-11-01 14:49:00    2017-11-01 14:49:00
132256    38978    742    2017-11-01 23:48:00    2017-11-01 23:48:00
132257    38978    884    2017-11-01 06:19:00    2017-11-01 06:19:00
132258    38978    676    2017-11-01 19:12:00    2017-11-01 19:12:00
132259    38978    817    2017-11-01 17:57:00    2017-11-01 17:57:00
132260    38979    886    2017-11-01 08:22:00    2017-11-01 08:22:00
132261    38979    679    2017-11-01 08:14:00    2017-11-01 08:14:00
132262    38979    612    2017-11-01 21:26:00    2017-11-01 21:26:00
132263    38979    708    2017-11-01 05:05:00    2017-11-01 05:05:00
132264    38979    906    2017-11-01 09:16:00    2017-11-01 09:16:00
132265    38980    945    2017-11-01 22:37:00    2017-11-01 22:37:00
132266    38980    488    2017-11-01 05:21:00    2017-11-01 05:21:00
132267    38980    767    2017-11-01 21:20:00    2017-11-01 21:20:00
132268    38980    534    2017-11-01 07:20:00    2017-11-01 07:20:00
132269    38980    563    2017-11-01 23:32:00    2017-11-01 23:32:00
132270    38981    618    2017-11-01 14:46:00    2017-11-01 14:46:00
132271    38981    498    2017-11-01 13:52:00    2017-11-01 13:52:00
132272    38981    631    2017-11-01 22:46:00    2017-11-01 22:46:00
132273    38981    668    2017-11-01 07:39:00    2017-11-01 07:39:00
132274    38981    482    2017-11-01 16:32:00    2017-11-01 16:32:00
132275    38982    892    2017-11-01 12:00:00    2017-11-01 12:00:00
132276    38982    746    2017-11-01 05:22:00    2017-11-01 05:22:00
132277    38982    919    2017-11-01 05:25:00    2017-11-01 05:25:00
132278    38982    892    2017-11-01 01:28:00    2017-11-01 01:28:00
132279    38982    831    2017-11-01 11:50:00    2017-11-01 11:50:00
132280    38983    740    2017-11-01 10:47:00    2017-11-01 10:47:00
132281    38983    940    2017-11-01 04:31:00    2017-11-01 04:31:00
132282    38983    830    2017-11-01 03:00:00    2017-11-01 03:00:00
132283    38983    479    2017-11-01 12:41:00    2017-11-01 12:41:00
132284    38983    632    2017-11-01 14:23:00    2017-11-01 14:23:00
132285    38984    882    2017-11-01 10:16:00    2017-11-01 10:16:00
132286    38984    922    2017-11-01 03:03:00    2017-11-01 03:03:00
132287    38984    702    2017-11-01 14:16:00    2017-11-01 14:16:00
132288    38984    730    2017-11-01 02:12:00    2017-11-01 02:12:00
132289    38984    464    2017-11-01 01:07:00    2017-11-01 01:07:00
132290    38985    740    2017-11-01 08:32:00    2017-11-01 08:32:00
132291    38985    731    2017-11-01 07:39:00    2017-11-01 07:39:00
132292    38985    656    2017-11-01 08:26:00    2017-11-01 08:26:00
132293    38985    486    2017-11-01 21:07:00    2017-11-01 21:07:00
132294    38985    836    2017-11-01 14:24:00    2017-11-01 14:24:00
132295    38986    631    2017-11-01 09:08:00    2017-11-01 09:08:00
132296    38986    877    2017-11-01 20:24:00    2017-11-01 20:24:00
132297    38986    532    2017-11-01 03:54:00    2017-11-01 03:54:00
132298    38986    764    2017-11-01 16:30:00    2017-11-01 16:30:00
132299    38986    665    2017-11-01 03:27:00    2017-11-01 03:27:00
132300    38987    621    2017-11-01 14:21:00    2017-11-01 14:21:00
132301    38987    600    2017-11-01 02:08:00    2017-11-01 02:08:00
132302    38987    872    2017-11-01 08:51:00    2017-11-01 08:51:00
132303    38987    834    2017-11-01 23:36:00    2017-11-01 23:36:00
132304    38987    669    2017-11-01 09:51:00    2017-11-01 09:51:00
132305    38988    716    2017-11-01 19:31:00    2017-11-01 19:31:00
132306    38988    600    2017-11-01 11:25:00    2017-11-01 11:25:00
132307    38988    875    2017-11-01 04:09:00    2017-11-01 04:09:00
132308    38988    726    2017-11-01 14:43:00    2017-11-01 14:43:00
132309    38988    953    2017-11-01 21:52:00    2017-11-01 21:52:00
132310    38989    810    2017-11-01 21:03:00    2017-11-01 21:03:00
132311    38989    641    2017-11-01 13:27:00    2017-11-01 13:27:00
132312    38989    612    2017-11-01 03:13:00    2017-11-01 03:13:00
132313    38989    904    2017-11-01 20:31:00    2017-11-01 20:31:00
132314    38989    654    2017-11-01 18:33:00    2017-11-01 18:33:00
132315    38990    711    2017-11-01 13:16:00    2017-11-01 13:16:00
132316    38990    919    2017-11-01 21:00:00    2017-11-01 21:00:00
132317    38990    677    2017-11-01 03:11:00    2017-11-01 03:11:00
132318    38990    689    2017-11-01 19:45:00    2017-11-01 19:45:00
132319    38990    634    2017-11-01 08:31:00    2017-11-01 08:31:00
132320    38991    588    2017-11-01 08:23:00    2017-11-01 08:23:00
132321    38991    712    2017-11-01 02:51:00    2017-11-01 02:51:00
132322    38991    809    2017-11-01 23:46:00    2017-11-01 23:46:00
132323    38991    716    2017-11-01 06:21:00    2017-11-01 06:21:00
132324    38991    545    2017-11-01 21:00:00    2017-11-01 21:00:00
132325    38992    709    2017-11-01 05:51:00    2017-11-01 05:51:00
132326    38992    573    2017-11-01 02:55:00    2017-11-01 02:55:00
132327    38992    673    2017-11-01 13:57:00    2017-11-01 13:57:00
132328    38992    679    2017-11-01 22:52:00    2017-11-01 22:52:00
132329    38992    839    2017-11-01 07:16:00    2017-11-01 07:16:00
132330    38993    699    2017-11-01 02:53:00    2017-11-01 02:53:00
132331    38993    901    2017-11-01 02:54:00    2017-11-01 02:54:00
132332    38993    951    2017-11-01 23:16:00    2017-11-01 23:16:00
132333    38993    497    2017-11-01 10:07:00    2017-11-01 10:07:00
132334    38993    478    2017-11-01 13:05:00    2017-11-01 13:05:00
132335    38994    617    2017-11-01 23:22:00    2017-11-01 23:22:00
132336    38994    747    2017-11-01 07:44:00    2017-11-01 07:44:00
132337    38994    845    2017-11-01 10:14:00    2017-11-01 10:14:00
132338    38994    944    2017-11-01 22:12:00    2017-11-01 22:12:00
132339    38994    580    2017-11-01 06:04:00    2017-11-01 06:04:00
132340    38995    474    2017-11-01 18:43:00    2017-11-01 18:43:00
132341    38995    775    2017-11-01 14:39:00    2017-11-01 14:39:00
132342    38995    584    2017-11-01 18:40:00    2017-11-01 18:40:00
132343    38995    522    2017-11-01 21:09:00    2017-11-01 21:09:00
132344    38995    764    2017-11-01 06:34:00    2017-11-01 06:34:00
132345    38996    912    2017-11-01 06:26:00    2017-11-01 06:26:00
132346    38996    890    2017-11-01 23:07:00    2017-11-01 23:07:00
132347    38996    464    2017-11-01 14:16:00    2017-11-01 14:16:00
132348    38996    531    2017-11-01 02:32:00    2017-11-01 02:32:00
132349    38996    766    2017-11-01 14:23:00    2017-11-01 14:23:00
132350    38997    773    2017-11-01 03:02:00    2017-11-01 03:02:00
132351    38997    617    2017-11-01 20:19:00    2017-11-01 20:19:00
132352    38997    940    2017-11-01 21:31:00    2017-11-01 21:31:00
132353    38997    593    2017-11-01 12:35:00    2017-11-01 12:35:00
132354    38997    603    2017-11-01 17:57:00    2017-11-01 17:57:00
132355    38998    847    2017-11-01 13:04:00    2017-11-01 13:04:00
132356    38998    564    2017-11-01 14:06:00    2017-11-01 14:06:00
132357    38998    619    2017-11-01 03:25:00    2017-11-01 03:25:00
132358    38998    908    2017-11-01 06:37:00    2017-11-01 06:37:00
132359    38998    927    2017-11-01 07:06:00    2017-11-01 07:06:00
132360    38999    623    2017-11-01 21:14:00    2017-11-01 21:14:00
132361    38999    915    2017-11-01 09:00:00    2017-11-01 09:00:00
132362    38999    828    2017-11-01 09:23:00    2017-11-01 09:23:00
132363    38999    491    2017-11-01 10:42:00    2017-11-01 10:42:00
132364    38999    474    2017-11-01 01:13:00    2017-11-01 01:13:00
132365    39000    958    2017-11-01 05:39:00    2017-11-01 05:39:00
132366    39000    646    2017-11-01 15:10:00    2017-11-01 15:10:00
132367    39000    736    2017-11-01 20:40:00    2017-11-01 20:40:00
132368    39000    777    2017-11-01 02:15:00    2017-11-01 02:15:00
132369    39000    644    2017-11-01 12:24:00    2017-11-01 12:24:00
132370    39001    934    2017-11-01 06:46:00    2017-11-01 06:46:00
132371    39001    758    2017-11-01 06:56:00    2017-11-01 06:56:00
132372    39001    514    2017-11-01 18:05:00    2017-11-01 18:05:00
132373    39001    499    2017-11-01 02:53:00    2017-11-01 02:53:00
132374    39001    556    2017-11-01 06:00:00    2017-11-01 06:00:00
132375    39002    698    2017-11-01 18:44:00    2017-11-01 18:44:00
132376    39002    857    2017-11-01 13:03:00    2017-11-01 13:03:00
132377    39002    604    2017-11-01 17:10:00    2017-11-01 17:10:00
132378    39002    857    2017-11-01 18:51:00    2017-11-01 18:51:00
132379    39002    753    2017-11-01 12:05:00    2017-11-01 12:05:00
132380    39003    960    2017-11-01 06:24:00    2017-11-01 06:24:00
132381    39003    516    2017-11-01 02:54:00    2017-11-01 02:54:00
132382    39003    562    2017-11-01 20:36:00    2017-11-01 20:36:00
132383    39003    924    2017-11-01 17:54:00    2017-11-01 17:54:00
132384    39003    556    2017-11-01 07:31:00    2017-11-01 07:31:00
132385    39004    700    2017-11-01 08:46:00    2017-11-01 08:46:00
132386    39004    805    2017-11-01 23:56:00    2017-11-01 23:56:00
132387    39004    721    2017-11-01 20:00:00    2017-11-01 20:00:00
132388    39004    655    2017-11-01 02:09:00    2017-11-01 02:09:00
132389    39004    514    2017-11-01 09:36:00    2017-11-01 09:36:00
132390    39005    807    2017-11-01 04:38:00    2017-11-01 04:38:00
132391    39005    654    2017-11-01 14:13:00    2017-11-01 14:13:00
132392    39005    917    2017-11-01 05:32:00    2017-11-01 05:32:00
132393    39005    642    2017-11-01 09:02:00    2017-11-01 09:02:00
132394    39005    641    2017-11-01 07:26:00    2017-11-01 07:26:00
132395    39006    467    2017-11-01 15:34:00    2017-11-01 15:34:00
132396    39006    745    2017-11-01 05:09:00    2017-11-01 05:09:00
132397    39006    896    2017-11-01 07:39:00    2017-11-01 07:39:00
132398    39006    829    2017-11-01 21:08:00    2017-11-01 21:08:00
132399    39006    930    2017-11-01 01:16:00    2017-11-01 01:16:00
132400    39007    831    2017-11-01 04:17:00    2017-11-01 04:17:00
132401    39007    495    2017-11-01 06:52:00    2017-11-01 06:52:00
132402    39007    854    2017-11-01 07:57:00    2017-11-01 07:57:00
132403    39007    940    2017-11-01 19:30:00    2017-11-01 19:30:00
132404    39007    857    2017-11-01 08:38:00    2017-11-01 08:38:00
132405    39008    838    2017-11-01 18:18:00    2017-11-01 18:18:00
132406    39008    925    2017-11-01 20:52:00    2017-11-01 20:52:00
132407    39008    497    2017-11-01 21:16:00    2017-11-01 21:16:00
132408    39008    714    2017-11-01 01:47:00    2017-11-01 01:47:00
132409    39008    563    2017-11-01 17:37:00    2017-11-01 17:37:00
132410    39009    695    2017-11-01 20:34:00    2017-11-01 20:34:00
132411    39009    592    2017-11-01 04:42:00    2017-11-01 04:42:00
132412    39009    715    2017-11-01 06:23:00    2017-11-01 06:23:00
132413    39009    494    2017-11-01 19:22:00    2017-11-01 19:22:00
132414    39009    579    2017-11-01 20:51:00    2017-11-01 20:51:00
132415    39010    800    2017-11-01 20:47:00    2017-11-01 20:47:00
132416    39010    911    2017-11-01 04:42:00    2017-11-01 04:42:00
132417    39010    801    2017-11-01 04:26:00    2017-11-01 04:26:00
132418    39010    566    2017-11-01 06:30:00    2017-11-01 06:30:00
132419    39010    886    2017-11-01 09:22:00    2017-11-01 09:22:00
132420    39011    531    2017-11-01 08:52:00    2017-11-01 08:52:00
132421    39011    515    2017-11-01 20:47:00    2017-11-01 20:47:00
132422    39011    958    2017-11-01 23:10:00    2017-11-01 23:10:00
132423    39011    885    2017-11-01 13:06:00    2017-11-01 13:06:00
132424    39011    728    2017-11-01 13:44:00    2017-11-01 13:44:00
132425    39012    480    2017-11-01 18:58:00    2017-11-01 18:58:00
132426    39012    906    2017-11-01 08:00:00    2017-11-01 08:00:00
132427    39012    951    2017-11-01 14:00:00    2017-11-01 14:00:00
132428    39012    914    2017-11-01 01:34:00    2017-11-01 01:34:00
132429    39012    646    2017-11-01 11:41:00    2017-11-01 11:41:00
132430    39013    910    2017-11-01 07:18:00    2017-11-01 07:18:00
132431    39013    464    2017-11-01 14:23:00    2017-11-01 14:23:00
132432    39013    844    2017-11-01 13:01:00    2017-11-01 13:01:00
132433    39013    583    2017-11-01 10:57:00    2017-11-01 10:57:00
132434    39013    834    2017-11-01 10:48:00    2017-11-01 10:48:00
132435    39014    744    2017-11-01 11:49:00    2017-11-01 11:49:00
132436    39014    824    2017-11-01 11:57:00    2017-11-01 11:57:00
132437    39014    702    2017-11-01 06:22:00    2017-11-01 06:22:00
132438    39014    912    2017-11-01 21:35:00    2017-11-01 21:35:00
132439    39014    644    2017-11-01 07:31:00    2017-11-01 07:31:00
132440    39015    821    2017-11-01 23:32:00    2017-11-01 23:32:00
132441    39015    589    2017-11-01 01:58:00    2017-11-01 01:58:00
132442    39015    531    2017-11-01 18:45:00    2017-11-01 18:45:00
132443    39015    943    2017-11-01 23:35:00    2017-11-01 23:35:00
132444    39015    867    2017-11-01 03:59:00    2017-11-01 03:59:00
132445    39016    526    2017-11-01 19:43:00    2017-11-01 19:43:00
132446    39016    786    2017-11-01 21:27:00    2017-11-01 21:27:00
132447    39016    520    2017-11-01 18:28:00    2017-11-01 18:28:00
132448    39016    575    2017-11-01 01:01:00    2017-11-01 01:01:00
132449    39016    790    2017-11-01 17:24:00    2017-11-01 17:24:00
132450    39017    608    2017-11-01 07:56:00    2017-11-01 07:56:00
132451    39017    846    2017-11-01 14:21:00    2017-11-01 14:21:00
132452    39017    953    2017-11-01 10:20:00    2017-11-01 10:20:00
132453    39017    553    2017-11-01 19:52:00    2017-11-01 19:52:00
132454    39017    849    2017-11-01 09:02:00    2017-11-01 09:02:00
132455    39018    891    2017-11-01 01:15:00    2017-11-01 01:15:00
132456    39018    587    2017-11-01 20:51:00    2017-11-01 20:51:00
132457    39018    686    2017-11-01 19:16:00    2017-11-01 19:16:00
132458    39018    914    2017-11-01 23:20:00    2017-11-01 23:20:00
132459    39018    829    2017-11-01 20:59:00    2017-11-01 20:59:00
132460    39019    811    2017-11-01 19:46:00    2017-11-01 19:46:00
132461    39019    618    2017-11-01 11:13:00    2017-11-01 11:13:00
132462    39019    855    2017-11-01 11:31:00    2017-11-01 11:31:00
132463    39019    841    2017-11-01 03:08:00    2017-11-01 03:08:00
132464    39019    732    2017-11-01 22:48:00    2017-11-01 22:48:00
132465    39020    676    2017-11-01 21:09:00    2017-11-01 21:09:00
132466    39020    578    2017-11-01 19:57:00    2017-11-01 19:57:00
132467    39020    820    2017-11-01 19:52:00    2017-11-01 19:52:00
132468    39020    541    2017-11-01 05:10:00    2017-11-01 05:10:00
132469    39020    545    2017-11-01 09:26:00    2017-11-01 09:26:00
132470    39021    729    2017-11-01 06:08:00    2017-11-01 06:08:00
132471    39021    574    2017-11-01 20:27:00    2017-11-01 20:27:00
132472    39021    714    2017-11-01 01:31:00    2017-11-01 01:31:00
132473    39021    511    2017-11-01 04:28:00    2017-11-01 04:28:00
132474    39021    860    2017-11-01 02:12:00    2017-11-01 02:12:00
132475    39022    714    2017-11-01 12:51:00    2017-11-01 12:51:00
132476    39022    649    2017-11-01 19:23:00    2017-11-01 19:23:00
132477    39022    721    2017-11-01 10:10:00    2017-11-01 10:10:00
132478    39022    722    2017-11-01 12:51:00    2017-11-01 12:51:00
132479    39022    494    2017-11-01 02:10:00    2017-11-01 02:10:00
132480    39023    887    2017-11-01 02:45:00    2017-11-01 02:45:00
132481    39023    891    2017-11-01 22:54:00    2017-11-01 22:54:00
132482    39023    550    2017-11-01 02:43:00    2017-11-01 02:43:00
132483    39023    488    2017-11-01 21:36:00    2017-11-01 21:36:00
132484    39023    744    2017-11-01 19:28:00    2017-11-01 19:28:00
132485    39024    531    2017-11-01 08:22:00    2017-11-01 08:22:00
132486    39024    521    2017-11-01 16:31:00    2017-11-01 16:31:00
132487    39024    916    2017-11-01 05:17:00    2017-11-01 05:17:00
132488    39024    589    2017-11-01 08:05:00    2017-11-01 08:05:00
132489    39024    923    2017-11-01 04:18:00    2017-11-01 04:18:00
132490    39025    922    2017-11-01 09:28:00    2017-11-01 09:28:00
132491    39025    724    2017-11-01 21:55:00    2017-11-01 21:55:00
132492    39025    900    2017-11-01 14:03:00    2017-11-01 14:03:00
132493    39025    589    2017-11-01 16:27:00    2017-11-01 16:27:00
132494    39025    696    2017-11-01 01:50:00    2017-11-01 01:50:00
132495    39026    586    2017-11-02 09:16:00    2017-11-02 09:16:00
132496    39026    945    2017-11-02 11:22:00    2017-11-02 11:22:00
132497    39026    556    2017-11-02 06:49:00    2017-11-02 06:49:00
132498    39026    482    2017-11-02 17:45:00    2017-11-02 17:45:00
132499    39026    921    2017-11-02 16:56:00    2017-11-02 16:56:00
132500    39027    482    2017-11-02 12:19:00    2017-11-02 12:19:00
132501    39027    505    2017-11-02 18:56:00    2017-11-02 18:56:00
132502    39027    676    2017-11-02 14:20:00    2017-11-02 14:20:00
132503    39027    594    2017-11-02 02:48:00    2017-11-02 02:48:00
132504    39027    625    2017-11-02 05:29:00    2017-11-02 05:29:00
132505    39028    707    2017-11-02 08:44:00    2017-11-02 08:44:00
132506    39028    676    2017-11-02 04:45:00    2017-11-02 04:45:00
132507    39028    645    2017-11-02 11:54:00    2017-11-02 11:54:00
132508    39028    865    2017-11-02 09:59:00    2017-11-02 09:59:00
132509    39028    895    2017-11-02 03:53:00    2017-11-02 03:53:00
132510    39029    661    2017-11-02 12:07:00    2017-11-02 12:07:00
132511    39029    948    2017-11-02 18:42:00    2017-11-02 18:42:00
132512    39029    906    2017-11-02 18:42:00    2017-11-02 18:42:00
132513    39029    502    2017-11-02 11:04:00    2017-11-02 11:04:00
132514    39029    732    2017-11-02 05:56:00    2017-11-02 05:56:00
132515    39030    554    2017-11-02 10:10:00    2017-11-02 10:10:00
132516    39030    574    2017-11-03 00:00:00    2017-11-03 00:00:00
132517    39030    820    2017-11-02 02:10:00    2017-11-02 02:10:00
132518    39030    588    2017-11-02 12:55:00    2017-11-02 12:55:00
132519    39030    546    2017-11-02 07:31:00    2017-11-02 07:31:00
132520    39031    552    2017-11-02 23:53:00    2017-11-02 23:53:00
132521    39031    863    2017-11-02 13:34:00    2017-11-02 13:34:00
132522    39031    484    2017-11-02 15:58:00    2017-11-02 15:58:00
132523    39031    467    2017-11-02 14:11:00    2017-11-02 14:11:00
132524    39031    902    2017-11-02 02:49:00    2017-11-02 02:49:00
132525    39032    821    2017-11-02 22:33:00    2017-11-02 22:33:00
132526    39032    919    2017-11-02 22:46:00    2017-11-02 22:46:00
132527    39032    609    2017-11-02 18:02:00    2017-11-02 18:02:00
132528    39032    525    2017-11-02 13:36:00    2017-11-02 13:36:00
132529    39032    878    2017-11-02 13:34:00    2017-11-02 13:34:00
132530    39033    689    2017-11-02 09:46:00    2017-11-02 09:46:00
132531    39033    804    2017-11-02 02:35:00    2017-11-02 02:35:00
132532    39033    561    2017-11-02 06:06:00    2017-11-02 06:06:00
132533    39033    570    2017-11-02 13:00:00    2017-11-02 13:00:00
132534    39033    748    2017-11-02 02:30:00    2017-11-02 02:30:00
132535    39034    893    2017-11-02 07:14:00    2017-11-02 07:14:00
132536    39034    513    2017-11-02 23:48:00    2017-11-02 23:48:00
132537    39034    879    2017-11-02 03:33:00    2017-11-02 03:33:00
132538    39034    928    2017-11-02 11:50:00    2017-11-02 11:50:00
132539    39034    887    2017-11-02 07:29:00    2017-11-02 07:29:00
132540    39035    593    2017-11-02 20:42:00    2017-11-02 20:42:00
132541    39035    830    2017-11-02 16:35:00    2017-11-02 16:35:00
132542    39035    942    2017-11-02 19:00:00    2017-11-02 19:00:00
132543    39035    869    2017-11-02 15:07:00    2017-11-02 15:07:00
132544    39035    949    2017-11-02 14:32:00    2017-11-02 14:32:00
132545    39036    555    2017-11-02 21:32:00    2017-11-02 21:32:00
132546    39036    685    2017-11-02 23:47:00    2017-11-02 23:47:00
132547    39036    486    2017-11-02 02:20:00    2017-11-02 02:20:00
132548    39036    501    2017-11-02 23:34:00    2017-11-02 23:34:00
132549    39036    607    2017-11-02 04:25:00    2017-11-02 04:25:00
132550    39037    667    2017-11-02 22:30:00    2017-11-02 22:30:00
132551    39037    477    2017-11-02 18:35:00    2017-11-02 18:35:00
132552    39037    936    2017-11-02 10:19:00    2017-11-02 10:19:00
132553    39037    643    2017-11-02 02:40:00    2017-11-02 02:40:00
132554    39037    755    2017-11-02 04:22:00    2017-11-02 04:22:00
132555    39038    923    2017-11-02 09:53:00    2017-11-02 09:53:00
132556    39038    630    2017-11-02 05:16:00    2017-11-02 05:16:00
132557    39038    905    2017-11-02 19:50:00    2017-11-02 19:50:00
132558    39038    471    2017-11-02 08:17:00    2017-11-02 08:17:00
132559    39038    949    2017-11-02 12:08:00    2017-11-02 12:08:00
132560    39039    872    2017-11-03 11:37:00    2017-11-03 11:37:00
132561    39039    961    2017-11-03 11:00:00    2017-11-03 11:00:00
132562    39039    947    2017-11-03 13:09:00    2017-11-03 13:09:00
132563    39039    670    2017-11-03 01:33:00    2017-11-03 01:33:00
132564    39039    894    2017-11-03 09:15:00    2017-11-03 09:15:00
132565    39040    885    2017-11-03 16:59:00    2017-11-03 16:59:00
132566    39040    591    2017-11-03 10:12:00    2017-11-03 10:12:00
132567    39040    961    2017-11-03 08:01:00    2017-11-03 08:01:00
132568    39040    527    2017-11-03 11:48:00    2017-11-03 11:48:00
132569    39040    665    2017-11-03 22:00:00    2017-11-03 22:00:00
132570    39041    478    2017-11-03 22:01:00    2017-11-03 22:01:00
132571    39041    804    2017-11-03 08:48:00    2017-11-03 08:48:00
132572    39041    498    2017-11-03 18:29:00    2017-11-03 18:29:00
132573    39041    904    2017-11-03 11:08:00    2017-11-03 11:08:00
132574    39041    499    2017-11-03 16:13:00    2017-11-03 16:13:00
132575    39042    788    2017-11-03 21:28:00    2017-11-03 21:28:00
132576    39042    469    2017-11-03 18:44:00    2017-11-03 18:44:00
132577    39042    542    2017-11-03 03:08:00    2017-11-03 03:08:00
132578    39042    954    2017-11-03 01:06:00    2017-11-03 01:06:00
132579    39042    709    2017-11-03 02:33:00    2017-11-03 02:33:00
132580    39043    698    2017-11-03 13:32:00    2017-11-03 13:32:00
132581    39043    746    2017-11-03 10:28:00    2017-11-03 10:28:00
132582    39043    627    2017-11-03 03:12:00    2017-11-03 03:12:00
132583    39043    634    2017-11-03 05:24:00    2017-11-03 05:24:00
132584    39043    851    2017-11-03 15:58:00    2017-11-03 15:58:00
132585    39044    595    2017-11-03 09:04:00    2017-11-03 09:04:00
132586    39044    697    2017-11-03 23:33:00    2017-11-03 23:33:00
132587    39044    922    2017-11-03 03:06:00    2017-11-03 03:06:00
132588    39044    629    2017-11-03 10:22:00    2017-11-03 10:22:00
132589    39044    536    2017-11-03 12:23:00    2017-11-03 12:23:00
132590    39045    617    2017-11-03 10:50:00    2017-11-03 10:50:00
132591    39045    604    2017-11-03 14:48:00    2017-11-03 14:48:00
132592    39045    889    2017-11-03 16:32:00    2017-11-03 16:32:00
132593    39045    802    2017-11-03 15:19:00    2017-11-03 15:19:00
132594    39045    645    2017-11-03 02:13:00    2017-11-03 02:13:00
132595    39046    477    2017-11-03 16:08:00    2017-11-03 16:08:00
132596    39046    714    2017-11-03 22:46:00    2017-11-03 22:46:00
132597    39046    728    2017-11-03 18:30:00    2017-11-03 18:30:00
132598    39046    915    2017-11-03 04:12:00    2017-11-03 04:12:00
132599    39046    707    2017-11-03 23:37:00    2017-11-03 23:37:00
132600    39047    610    2017-11-03 02:03:00    2017-11-03 02:03:00
132601    39047    648    2017-11-03 04:39:00    2017-11-03 04:39:00
132602    39047    652    2017-11-03 11:56:00    2017-11-03 11:56:00
132603    39047    755    2017-11-03 20:05:00    2017-11-03 20:05:00
132604    39047    767    2017-11-03 14:10:00    2017-11-03 14:10:00
132605    39048    523    2017-11-03 15:02:00    2017-11-03 15:02:00
132606    39048    614    2017-11-03 07:36:00    2017-11-03 07:36:00
132607    39048    650    2017-11-03 08:00:00    2017-11-03 08:00:00
132608    39048    766    2017-11-03 11:49:00    2017-11-03 11:49:00
132609    39048    552    2017-11-03 16:05:00    2017-11-03 16:05:00
132610    39049    946    2017-11-03 17:31:00    2017-11-03 17:31:00
132611    39049    503    2017-11-03 18:01:00    2017-11-03 18:01:00
132612    39049    684    2017-11-03 01:05:00    2017-11-03 01:05:00
132613    39049    940    2017-11-03 04:27:00    2017-11-03 04:27:00
132614    39049    868    2017-11-03 10:06:00    2017-11-03 10:06:00
132615    39050    595    2017-11-03 03:48:00    2017-11-03 03:48:00
132616    39050    816    2017-11-03 16:29:00    2017-11-03 16:29:00
132617    39050    708    2017-11-03 08:58:00    2017-11-03 08:58:00
132618    39050    555    2017-11-03 21:40:00    2017-11-03 21:40:00
132619    39050    658    2017-11-03 15:20:00    2017-11-03 15:20:00
132620    39051    915    2017-11-03 15:42:00    2017-11-03 15:42:00
132621    39051    735    2017-11-03 01:46:00    2017-11-03 01:46:00
132622    39051    561    2017-11-03 06:09:00    2017-11-03 06:09:00
132623    39051    692    2017-11-03 23:17:00    2017-11-03 23:17:00
132624    39051    838    2017-11-03 22:04:00    2017-11-03 22:04:00
132625    39052    712    2017-11-03 16:10:00    2017-11-03 16:10:00
132626    39052    491    2017-11-03 20:33:00    2017-11-03 20:33:00
132627    39052    765    2017-11-03 05:21:00    2017-11-03 05:21:00
132628    39052    863    2017-11-03 12:32:00    2017-11-03 12:32:00
132629    39052    945    2017-11-03 14:25:00    2017-11-03 14:25:00
132630    39053    719    2017-11-03 21:16:00    2017-11-03 21:16:00
132631    39053    582    2017-11-03 14:11:00    2017-11-03 14:11:00
132632    39053    819    2017-11-03 11:05:00    2017-11-03 11:05:00
132633    39053    546    2017-11-03 23:35:00    2017-11-03 23:35:00
132634    39053    809    2017-11-03 17:40:00    2017-11-03 17:40:00
132635    39054    485    2017-11-03 17:30:00    2017-11-03 17:30:00
132636    39054    654    2017-11-03 12:20:00    2017-11-03 12:20:00
132637    39054    555    2017-11-03 01:22:00    2017-11-03 01:22:00
132638    39054    533    2017-11-03 01:46:00    2017-11-03 01:46:00
132639    39054    700    2017-11-03 16:20:00    2017-11-03 16:20:00
132640    39055    537    2017-11-03 10:34:00    2017-11-03 10:34:00
132641    39055    598    2017-11-03 01:15:00    2017-11-03 01:15:00
132642    39055    931    2017-11-03 11:59:00    2017-11-03 11:59:00
132643    39055    467    2017-11-03 11:49:00    2017-11-03 11:49:00
132644    39055    935    2017-11-03 06:22:00    2017-11-03 06:22:00
132645    39056    591    2017-11-03 04:44:00    2017-11-03 04:44:00
132646    39056    568    2017-11-03 11:01:00    2017-11-03 11:01:00
132647    39056    650    2017-11-03 16:47:00    2017-11-03 16:47:00
132648    39056    668    2017-11-03 23:53:00    2017-11-03 23:53:00
132649    39056    801    2017-11-03 18:25:00    2017-11-03 18:25:00
132650    39057    867    2017-11-03 20:34:00    2017-11-03 20:34:00
132651    39057    572    2017-11-03 20:40:00    2017-11-03 20:40:00
132652    39057    719    2017-11-03 17:20:00    2017-11-03 17:20:00
132653    39057    814    2017-11-03 08:18:00    2017-11-03 08:18:00
132654    39057    954    2017-11-03 05:27:00    2017-11-03 05:27:00
132655    39058    834    2017-11-03 14:27:00    2017-11-03 14:27:00
132656    39058    749    2017-11-03 02:41:00    2017-11-03 02:41:00
132657    39058    722    2017-11-03 08:45:00    2017-11-03 08:45:00
132658    39058    795    2017-11-03 20:51:00    2017-11-03 20:51:00
132659    39058    854    2017-11-03 16:06:00    2017-11-03 16:06:00
132660    39059    731    2017-11-03 17:54:00    2017-11-03 17:54:00
132661    39059    750    2017-11-03 06:15:00    2017-11-03 06:15:00
132662    39059    503    2017-11-03 22:31:00    2017-11-03 22:31:00
132663    39059    938    2017-11-03 01:49:00    2017-11-03 01:49:00
132664    39059    742    2017-11-03 16:58:00    2017-11-03 16:58:00
132665    39060    831    2017-11-03 14:54:00    2017-11-03 14:54:00
132666    39060    586    2017-11-03 12:00:00    2017-11-03 12:00:00
132667    39060    773    2017-11-03 09:27:00    2017-11-03 09:27:00
132668    39060    858    2017-11-03 20:05:00    2017-11-03 20:05:00
132669    39060    781    2017-11-03 17:30:00    2017-11-03 17:30:00
132670    39061    655    2017-11-03 16:12:00    2017-11-03 16:12:00
132671    39061    735    2017-11-03 07:03:00    2017-11-03 07:03:00
132672    39061    659    2017-11-03 06:00:00    2017-11-03 06:00:00
132673    39061    899    2017-11-03 16:08:00    2017-11-03 16:08:00
132674    39061    929    2017-11-03 23:06:00    2017-11-03 23:06:00
132675    39062    706    2017-11-03 04:31:00    2017-11-03 04:31:00
132676    39062    498    2017-11-03 20:10:00    2017-11-03 20:10:00
132677    39062    503    2017-11-03 05:36:00    2017-11-03 05:36:00
132678    39062    885    2017-11-03 01:02:00    2017-11-03 01:02:00
132679    39062    746    2017-11-03 08:39:00    2017-11-03 08:39:00
132680    39063    904    2017-11-03 08:09:00    2017-11-03 08:09:00
132681    39063    556    2017-11-03 08:34:00    2017-11-03 08:34:00
132682    39063    794    2017-11-03 21:06:00    2017-11-03 21:06:00
132683    39063    952    2017-11-03 08:36:00    2017-11-03 08:36:00
132684    39063    926    2017-11-03 19:42:00    2017-11-03 19:42:00
132685    39064    675    2017-11-03 03:34:00    2017-11-03 03:34:00
132686    39064    726    2017-11-03 06:00:00    2017-11-03 06:00:00
132687    39064    856    2017-11-03 05:07:00    2017-11-03 05:07:00
132688    39064    571    2017-11-03 04:50:00    2017-11-03 04:50:00
132689    39064    761    2017-11-03 14:18:00    2017-11-03 14:18:00
132690    39065    536    2017-11-03 20:02:00    2017-11-03 20:02:00
132691    39065    624    2017-11-03 11:31:00    2017-11-03 11:31:00
132692    39065    937    2017-11-03 19:05:00    2017-11-03 19:05:00
132693    39065    735    2017-11-03 07:51:00    2017-11-03 07:51:00
132694    39065    752    2017-11-03 06:07:00    2017-11-03 06:07:00
132695    39066    783    2017-11-03 20:03:00    2017-11-03 20:03:00
132696    39066    949    2017-11-03 04:20:00    2017-11-03 04:20:00
132697    39066    880    2017-11-03 21:47:00    2017-11-03 21:47:00
132698    39066    883    2017-11-03 12:37:00    2017-11-03 12:37:00
132699    39066    593    2017-11-03 16:59:00    2017-11-03 16:59:00
132700    39067    603    2017-11-03 15:46:00    2017-11-03 15:46:00
132701    39067    906    2017-11-03 10:58:00    2017-11-03 10:58:00
132702    39067    650    2017-11-03 04:52:00    2017-11-03 04:52:00
132703    39067    592    2017-11-03 06:33:00    2017-11-03 06:33:00
132704    39067    529    2017-11-03 13:45:00    2017-11-03 13:45:00
132705    39068    625    2017-11-03 02:39:00    2017-11-03 02:39:00
132706    39068    813    2017-11-03 10:33:00    2017-11-03 10:33:00
132707    39068    631    2017-11-03 21:50:00    2017-11-03 21:50:00
132708    39068    725    2017-11-03 04:11:00    2017-11-03 04:11:00
132709    39068    719    2017-11-03 07:04:00    2017-11-03 07:04:00
132710    39069    867    2017-11-03 22:58:00    2017-11-03 22:58:00
132711    39069    466    2017-11-03 20:53:00    2017-11-03 20:53:00
132712    39069    828    2017-11-03 14:06:00    2017-11-03 14:06:00
132713    39069    756    2017-11-03 09:02:00    2017-11-03 09:02:00
132714    39069    593    2017-11-03 02:01:00    2017-11-03 02:01:00
132715    39070    743    2017-11-03 05:08:00    2017-11-03 05:08:00
132716    39070    467    2017-11-03 12:37:00    2017-11-03 12:37:00
132717    39070    570    2017-11-03 03:47:00    2017-11-03 03:47:00
132718    39070    487    2017-11-03 10:00:00    2017-11-03 10:00:00
132719    39070    475    2017-11-03 14:57:00    2017-11-03 14:57:00
132720    39071    610    2017-11-03 11:22:00    2017-11-03 11:22:00
132721    39071    773    2017-11-03 22:53:00    2017-11-03 22:53:00
132722    39071    815    2017-11-03 06:16:00    2017-11-03 06:16:00
132723    39071    873    2017-11-03 23:40:00    2017-11-03 23:40:00
132724    39071    470    2017-11-03 13:12:00    2017-11-03 13:12:00
132725    39072    824    2017-11-03 22:15:00    2017-11-03 22:15:00
132726    39072    709    2017-11-03 18:00:00    2017-11-03 18:00:00
132727    39072    959    2017-11-03 11:32:00    2017-11-03 11:32:00
132728    39072    853    2017-11-03 14:10:00    2017-11-03 14:10:00
132729    39072    875    2017-11-03 18:27:00    2017-11-03 18:27:00
132730    39073    502    2017-11-03 11:50:00    2017-11-03 11:50:00
132731    39073    836    2017-11-03 23:46:00    2017-11-03 23:46:00
132732    39073    892    2017-11-03 09:00:00    2017-11-03 09:00:00
132733    39073    898    2017-11-03 10:57:00    2017-11-03 10:57:00
132734    39073    792    2017-11-03 08:58:00    2017-11-03 08:58:00
132735    39074    839    2017-11-03 03:14:00    2017-11-03 03:14:00
132736    39074    745    2017-11-03 22:10:00    2017-11-03 22:10:00
132737    39074    894    2017-11-03 11:19:00    2017-11-03 11:19:00
132738    39074    873    2017-11-03 08:20:00    2017-11-03 08:20:00
132739    39074    561    2017-11-03 16:06:00    2017-11-03 16:06:00
132740    39075    551    2017-11-03 10:28:00    2017-11-03 10:28:00
132741    39075    775    2017-11-03 21:28:00    2017-11-03 21:28:00
132742    39075    684    2017-11-03 06:39:00    2017-11-03 06:39:00
132743    39075    955    2017-11-03 01:00:00    2017-11-03 01:00:00
132744    39075    647    2017-11-03 04:52:00    2017-11-03 04:52:00
132745    39076    474    2017-11-03 23:12:00    2017-11-03 23:12:00
132746    39076    786    2017-11-03 07:17:00    2017-11-03 07:17:00
132747    39076    478    2017-11-03 08:13:00    2017-11-03 08:13:00
132748    39076    885    2017-11-03 13:13:00    2017-11-03 13:13:00
132749    39076    636    2017-11-03 16:59:00    2017-11-03 16:59:00
132750    39077    908    2017-11-04 19:58:00    2017-11-04 19:58:00
132751    39077    747    2017-11-04 18:26:00    2017-11-04 18:26:00
132752    39077    729    2017-11-04 16:15:00    2017-11-04 16:15:00
132753    39077    575    2017-11-04 12:17:00    2017-11-04 12:17:00
132754    39077    800    2017-11-04 02:43:00    2017-11-04 02:43:00
132755    39078    941    2017-11-04 19:15:00    2017-11-04 19:15:00
132756    39078    655    2017-11-04 05:33:00    2017-11-04 05:33:00
132757    39078    825    2017-11-04 12:00:00    2017-11-04 12:00:00
132758    39078    902    2017-11-04 04:45:00    2017-11-04 04:45:00
132759    39078    686    2017-11-04 04:02:00    2017-11-04 04:02:00
132760    39079    851    2017-11-04 12:52:00    2017-11-04 12:52:00
132761    39079    730    2017-11-04 08:09:00    2017-11-04 08:09:00
132762    39079    642    2017-11-04 22:30:00    2017-11-04 22:30:00
132763    39079    522    2017-11-04 11:29:00    2017-11-04 11:29:00
132764    39079    834    2017-11-04 15:00:00    2017-11-04 15:00:00
132765    39080    611    2017-11-04 08:58:00    2017-11-04 08:58:00
132766    39080    810    2017-11-04 11:52:00    2017-11-04 11:52:00
132767    39080    709    2017-11-04 15:37:00    2017-11-04 15:37:00
132768    39080    476    2017-11-04 05:15:00    2017-11-04 05:15:00
132769    39080    954    2017-11-04 09:05:00    2017-11-04 09:05:00
132770    39081    746    2017-11-04 05:58:00    2017-11-04 05:58:00
132771    39081    908    2017-11-04 16:31:00    2017-11-04 16:31:00
132772    39081    626    2017-11-04 09:45:00    2017-11-04 09:45:00
132773    39081    754    2017-11-04 10:18:00    2017-11-04 10:18:00
132774    39081    770    2017-11-04 23:39:00    2017-11-04 23:39:00
132775    39082    497    2017-11-04 02:55:00    2017-11-04 02:55:00
132776    39082    465    2017-11-04 14:17:00    2017-11-04 14:17:00
132777    39082    877    2017-11-04 11:02:00    2017-11-04 11:02:00
132778    39082    633    2017-11-04 07:29:00    2017-11-04 07:29:00
132779    39082    806    2017-11-04 07:05:00    2017-11-04 07:05:00
132780    39083    824    2017-11-04 06:34:00    2017-11-04 06:34:00
132781    39083    836    2017-11-04 10:45:00    2017-11-04 10:45:00
132782    39083    781    2017-11-04 06:38:00    2017-11-04 06:38:00
132783    39083    918    2017-11-04 06:42:00    2017-11-04 06:42:00
132784    39083    912    2017-11-04 06:26:00    2017-11-04 06:26:00
132785    39084    634    2017-11-04 15:08:00    2017-11-04 15:08:00
132786    39084    777    2017-11-04 14:32:00    2017-11-04 14:32:00
132787    39084    922    2017-11-04 16:15:00    2017-11-04 16:15:00
132788    39084    880    2017-11-04 19:00:00    2017-11-04 19:00:00
132789    39084    825    2017-11-04 04:21:00    2017-11-04 04:21:00
132790    39085    933    2017-11-04 05:28:00    2017-11-04 05:28:00
132791    39085    917    2017-11-04 23:05:00    2017-11-04 23:05:00
132792    39085    503    2017-11-04 13:07:00    2017-11-04 13:07:00
132793    39085    876    2017-11-04 13:08:00    2017-11-04 13:08:00
132794    39085    943    2017-11-04 06:39:00    2017-11-04 06:39:00
132795    39086    781    2017-11-04 03:24:00    2017-11-04 03:24:00
132796    39086    590    2017-11-04 15:53:00    2017-11-04 15:53:00
132797    39086    751    2017-11-04 03:41:00    2017-11-04 03:41:00
132798    39086    797    2017-11-04 10:42:00    2017-11-04 10:42:00
132799    39086    504    2017-11-04 02:39:00    2017-11-04 02:39:00
132800    39087    793    2017-11-04 02:43:00    2017-11-04 02:43:00
132801    39087    875    2017-11-04 08:58:00    2017-11-04 08:58:00
132802    39087    878    2017-11-04 13:14:00    2017-11-04 13:14:00
132803    39087    906    2017-11-04 21:32:00    2017-11-04 21:32:00
132804    39087    527    2017-11-04 20:00:00    2017-11-04 20:00:00
132805    39088    750    2017-11-04 18:06:00    2017-11-04 18:06:00
132806    39088    513    2017-11-04 11:33:00    2017-11-04 11:33:00
132807    39088    698    2017-11-04 07:05:00    2017-11-04 07:05:00
132808    39088    531    2017-11-04 01:33:00    2017-11-04 01:33:00
132809    39088    879    2017-11-04 21:40:00    2017-11-04 21:40:00
132810    39089    943    2017-11-04 20:00:00    2017-11-04 20:00:00
132811    39089    897    2017-11-04 10:18:00    2017-11-04 10:18:00
132812    39089    626    2017-11-04 20:34:00    2017-11-04 20:34:00
132813    39089    889    2017-11-04 18:42:00    2017-11-04 18:42:00
132814    39089    895    2017-11-04 03:40:00    2017-11-04 03:40:00
132815    39090    664    2017-11-04 22:14:00    2017-11-04 22:14:00
132816    39090    888    2017-11-04 10:23:00    2017-11-04 10:23:00
132817    39090    874    2017-11-04 19:47:00    2017-11-04 19:47:00
132818    39090    943    2017-11-04 15:50:00    2017-11-04 15:50:00
132819    39090    603    2017-11-04 05:26:00    2017-11-04 05:26:00
132820    39091    778    2017-11-04 15:38:00    2017-11-04 15:38:00
132821    39091    743    2017-11-04 12:21:00    2017-11-04 12:21:00
132822    39091    602    2017-11-04 07:59:00    2017-11-04 07:59:00
132823    39091    952    2017-11-04 03:12:00    2017-11-04 03:12:00
132824    39091    759    2017-11-04 23:06:00    2017-11-04 23:06:00
132825    39092    886    2017-11-04 18:23:00    2017-11-04 18:23:00
132826    39092    834    2017-11-04 19:19:00    2017-11-04 19:19:00
132827    39092    777    2017-11-04 14:30:00    2017-11-04 14:30:00
132828    39092    646    2017-11-04 19:38:00    2017-11-04 19:38:00
132829    39092    870    2017-11-04 06:48:00    2017-11-04 06:48:00
132830    39093    850    2017-11-04 20:04:00    2017-11-04 20:04:00
132831    39093    624    2017-11-04 12:55:00    2017-11-04 12:55:00
132832    39093    679    2017-11-04 13:53:00    2017-11-04 13:53:00
132833    39093    746    2017-11-04 19:02:00    2017-11-04 19:02:00
132834    39093    811    2017-11-04 16:17:00    2017-11-04 16:17:00
132835    39094    595    2017-11-04 13:00:00    2017-11-04 13:00:00
132836    39094    580    2017-11-04 17:56:00    2017-11-04 17:56:00
132837    39094    886    2017-11-04 10:47:00    2017-11-04 10:47:00
132838    39094    732    2017-11-04 18:30:00    2017-11-04 18:30:00
132839    39094    488    2017-11-04 14:14:00    2017-11-04 14:14:00
132840    39095    568    2017-11-04 01:58:00    2017-11-04 01:58:00
132841    39095    660    2017-11-04 18:18:00    2017-11-04 18:18:00
132842    39095    792    2017-11-04 17:57:00    2017-11-04 17:57:00
132843    39095    475    2017-11-04 13:14:00    2017-11-04 13:14:00
132844    39095    581    2017-11-04 02:36:00    2017-11-04 02:36:00
132845    39096    532    2017-11-04 04:17:00    2017-11-04 04:17:00
132846    39096    528    2017-11-04 12:59:00    2017-11-04 12:59:00
132847    39096    714    2017-11-04 16:43:00    2017-11-04 16:43:00
132848    39096    817    2017-11-04 07:43:00    2017-11-04 07:43:00
132849    39096    863    2017-11-04 11:42:00    2017-11-04 11:42:00
132850    39097    503    2017-11-04 10:51:00    2017-11-04 10:51:00
132851    39097    926    2017-11-04 05:37:00    2017-11-04 05:37:00
132852    39097    600    2017-11-04 05:40:00    2017-11-04 05:40:00
132853    39097    573    2017-11-04 08:00:00    2017-11-04 08:00:00
132854    39097    636    2017-11-04 13:26:00    2017-11-04 13:26:00
132855    39098    551    2017-11-04 12:20:00    2017-11-04 12:20:00
132856    39098    716    2017-11-04 21:24:00    2017-11-04 21:24:00
132857    39098    497    2017-11-04 08:46:00    2017-11-04 08:46:00
132858    39098    688    2017-11-04 23:00:00    2017-11-04 23:00:00
132859    39098    845    2017-11-04 15:10:00    2017-11-04 15:10:00
132860    39099    491    2017-11-04 16:04:00    2017-11-04 16:04:00
132861    39099    568    2017-11-04 16:05:00    2017-11-04 16:05:00
132862    39099    526    2017-11-04 15:52:00    2017-11-04 15:52:00
132863    39099    790    2017-11-04 03:13:00    2017-11-04 03:13:00
132864    39099    782    2017-11-04 03:52:00    2017-11-04 03:52:00
132865    39100    502    2017-11-04 08:52:00    2017-11-04 08:52:00
132866    39100    745    2017-11-04 07:25:00    2017-11-04 07:25:00
132867    39100    865    2017-11-04 06:00:00    2017-11-04 06:00:00
132868    39100    917    2017-11-04 16:35:00    2017-11-04 16:35:00
132869    39100    644    2017-11-04 18:36:00    2017-11-04 18:36:00
132870    39101    765    2017-11-04 07:01:00    2017-11-04 07:01:00
132871    39101    587    2017-11-04 01:37:00    2017-11-04 01:37:00
132872    39101    852    2017-11-04 18:51:00    2017-11-04 18:51:00
132873    39101    662    2017-11-04 18:43:00    2017-11-04 18:43:00
132874    39101    642    2017-11-04 10:15:00    2017-11-04 10:15:00
132875    39102    616    2017-11-04 03:25:00    2017-11-04 03:25:00
132876    39102    858    2017-11-04 13:23:00    2017-11-04 13:23:00
132877    39102    615    2017-11-04 08:28:00    2017-11-04 08:28:00
132878    39102    863    2017-11-04 16:51:00    2017-11-04 16:51:00
132879    39102    615    2017-11-04 06:07:00    2017-11-04 06:07:00
132880    39103    507    2017-11-04 23:02:00    2017-11-04 23:02:00
132881    39103    745    2017-11-04 19:37:00    2017-11-04 19:37:00
132882    39103    895    2017-11-04 18:27:00    2017-11-04 18:27:00
132883    39103    600    2017-11-04 03:38:00    2017-11-04 03:38:00
132884    39103    678    2017-11-04 11:15:00    2017-11-04 11:15:00
132885    39104    876    2017-11-04 14:34:00    2017-11-04 14:34:00
132886    39104    835    2017-11-04 11:13:00    2017-11-04 11:13:00
132887    39104    919    2017-11-04 02:20:00    2017-11-04 02:20:00
132888    39104    859    2017-11-04 22:53:00    2017-11-04 22:53:00
132889    39104    795    2017-11-04 15:11:00    2017-11-04 15:11:00
132890    39105    571    2017-11-05 03:27:00    2017-11-05 03:27:00
132891    39105    481    2017-11-05 16:41:00    2017-11-05 16:41:00
132892    39105    909    2017-11-05 02:24:00    2017-11-05 02:24:00
132893    39105    759    2017-11-05 11:01:00    2017-11-05 11:01:00
132894    39105    637    2017-11-05 20:20:00    2017-11-05 20:20:00
132895    39106    815    2017-11-05 11:25:00    2017-11-05 11:25:00
132896    39106    597    2017-11-05 06:53:00    2017-11-05 06:53:00
132897    39106    766    2017-11-05 01:35:00    2017-11-05 01:35:00
132898    39106    810    2017-11-05 10:30:00    2017-11-05 10:30:00
132899    39106    784    2017-11-05 21:27:00    2017-11-05 21:27:00
132900    39107    855    2017-11-05 20:27:00    2017-11-05 20:27:00
132901    39107    924    2017-11-05 12:50:00    2017-11-05 12:50:00
132902    39107    677    2017-11-05 14:02:00    2017-11-05 14:02:00
132903    39107    811    2017-11-05 01:58:00    2017-11-05 01:58:00
132904    39107    871    2017-11-05 03:17:00    2017-11-05 03:17:00
132905    39108    698    2017-11-05 01:48:00    2017-11-05 01:48:00
132906    39108    467    2017-11-05 16:15:00    2017-11-05 16:15:00
132907    39108    580    2017-11-05 22:57:00    2017-11-05 22:57:00
132908    39108    612    2017-11-05 22:40:00    2017-11-05 22:40:00
132909    39108    783    2017-11-05 11:56:00    2017-11-05 11:56:00
132910    39109    832    2017-11-05 18:50:00    2017-11-05 18:50:00
132911    39109    624    2017-11-05 05:45:00    2017-11-05 05:45:00
132912    39109    900    2017-11-05 19:49:00    2017-11-05 19:49:00
132913    39109    671    2017-11-05 14:06:00    2017-11-05 14:06:00
132914    39109    699    2017-11-05 05:30:00    2017-11-05 05:30:00
132915    39110    870    2017-11-05 02:13:00    2017-11-05 02:13:00
132916    39110    712    2017-11-05 12:25:00    2017-11-05 12:25:00
132917    39110    799    2017-11-05 09:16:00    2017-11-05 09:16:00
132918    39110    666    2017-11-05 15:02:00    2017-11-05 15:02:00
132919    39110    495    2017-11-05 19:26:00    2017-11-05 19:26:00
132920    39111    883    2017-11-05 05:25:00    2017-11-05 05:25:00
132921    39111    532    2017-11-05 18:08:00    2017-11-05 18:08:00
132922    39111    551    2017-11-05 10:17:00    2017-11-05 10:17:00
132923    39111    574    2017-11-05 17:08:00    2017-11-05 17:08:00
132924    39111    771    2017-11-05 12:01:00    2017-11-05 12:01:00
132925    39112    531    2017-11-05 20:17:00    2017-11-05 20:17:00
132926    39112    826    2017-11-05 04:05:00    2017-11-05 04:05:00
132927    39112    880    2017-11-05 07:59:00    2017-11-05 07:59:00
132928    39112    510    2017-11-05 16:39:00    2017-11-05 16:39:00
132929    39112    596    2017-11-05 07:16:00    2017-11-05 07:16:00
132930    39113    898    2017-11-05 23:29:00    2017-11-05 23:29:00
132931    39113    470    2017-11-05 07:11:00    2017-11-05 07:11:00
132932    39113    500    2017-11-05 07:12:00    2017-11-05 07:12:00
132933    39113    932    2017-11-05 06:38:00    2017-11-05 06:38:00
132934    39113    785    2017-11-05 16:09:00    2017-11-05 16:09:00
132935    39114    542    2017-11-05 07:39:00    2017-11-05 07:39:00
132936    39114    527    2017-11-05 21:34:00    2017-11-05 21:34:00
132937    39114    942    2017-11-05 12:30:00    2017-11-05 12:30:00
132938    39114    890    2017-11-05 11:44:00    2017-11-05 11:44:00
132939    39114    765    2017-11-05 14:27:00    2017-11-05 14:27:00
132940    39115    670    2017-11-05 01:38:00    2017-11-05 01:38:00
132941    39115    810    2017-11-05 20:48:00    2017-11-05 20:48:00
132942    39115    947    2017-11-05 05:28:00    2017-11-05 05:28:00
132943    39115    944    2017-11-05 16:31:00    2017-11-05 16:31:00
132944    39115    711    2017-11-05 18:16:00    2017-11-05 18:16:00
132945    39116    846    2017-11-05 06:03:00    2017-11-05 06:03:00
132946    39116    627    2017-11-05 21:23:00    2017-11-05 21:23:00
132947    39116    537    2017-11-05 18:37:00    2017-11-05 18:37:00
132948    39116    893    2017-11-05 11:12:00    2017-11-05 11:12:00
132949    39116    501    2017-11-05 19:43:00    2017-11-05 19:43:00
132950    39117    689    2017-11-05 19:00:00    2017-11-05 19:00:00
132951    39117    783    2017-11-05 14:10:00    2017-11-05 14:10:00
132952    39117    709    2017-11-05 09:13:00    2017-11-05 09:13:00
132953    39117    478    2017-11-05 04:43:00    2017-11-05 04:43:00
132954    39117    531    2017-11-05 11:05:00    2017-11-05 11:05:00
132955    39118    579    2017-11-05 13:06:00    2017-11-05 13:06:00
132956    39118    841    2017-11-05 14:17:00    2017-11-05 14:17:00
132957    39118    597    2017-11-05 18:00:00    2017-11-05 18:00:00
132958    39118    842    2017-11-05 23:59:00    2017-11-05 23:59:00
132959    39118    859    2017-11-05 15:57:00    2017-11-05 15:57:00
132960    39119    539    2017-11-05 10:40:00    2017-11-05 10:40:00
132961    39119    582    2017-11-05 21:42:00    2017-11-05 21:42:00
132962    39119    570    2017-11-05 08:26:00    2017-11-05 08:26:00
132963    39119    649    2017-11-05 03:34:00    2017-11-05 03:34:00
132964    39119    602    2017-11-05 14:10:00    2017-11-05 14:10:00
132965    39120    764    2017-11-05 03:06:00    2017-11-05 03:06:00
132966    39120    846    2017-11-05 03:53:00    2017-11-05 03:53:00
132967    39120    609    2017-11-05 21:54:00    2017-11-05 21:54:00
132968    39120    884    2017-11-05 13:38:00    2017-11-05 13:38:00
132969    39120    606    2017-11-05 22:54:00    2017-11-05 22:54:00
132970    39121    464    2017-11-05 11:52:00    2017-11-05 11:52:00
132971    39121    949    2017-11-05 20:25:00    2017-11-05 20:25:00
132972    39121    820    2017-11-05 16:59:00    2017-11-05 16:59:00
132973    39121    784    2017-11-05 06:55:00    2017-11-05 06:55:00
132974    39121    470    2017-11-05 05:56:00    2017-11-05 05:56:00
132975    39122    468    2017-11-05 21:51:00    2017-11-05 21:51:00
132976    39122    629    2017-11-05 04:40:00    2017-11-05 04:40:00
132977    39122    483    2017-11-05 21:41:00    2017-11-05 21:41:00
132978    39122    531    2017-11-05 07:14:00    2017-11-05 07:14:00
132979    39122    820    2017-11-05 15:38:00    2017-11-05 15:38:00
132980    39123    470    2017-11-05 16:34:00    2017-11-05 16:34:00
132981    39123    916    2017-11-05 04:56:00    2017-11-05 04:56:00
132982    39123    553    2017-11-05 04:38:00    2017-11-05 04:38:00
132983    39123    881    2017-11-05 20:18:00    2017-11-05 20:18:00
132984    39123    550    2017-11-05 02:56:00    2017-11-05 02:56:00
132985    39124    618    2017-11-05 07:28:00    2017-11-05 07:28:00
132986    39124    640    2017-11-05 11:06:00    2017-11-05 11:06:00
132987    39124    895    2017-11-05 18:15:00    2017-11-05 18:15:00
132988    39124    631    2017-11-05 08:11:00    2017-11-05 08:11:00
132989    39124    629    2017-11-05 12:52:00    2017-11-05 12:52:00
132990    39125    543    2017-11-05 12:46:00    2017-11-05 12:46:00
132991    39125    793    2017-11-05 06:33:00    2017-11-05 06:33:00
132992    39125    793    2017-11-05 03:54:00    2017-11-05 03:54:00
132993    39125    584    2017-11-05 16:19:00    2017-11-05 16:19:00
132994    39125    604    2017-11-05 11:38:00    2017-11-05 11:38:00
132995    39126    865    2017-11-05 19:18:00    2017-11-05 19:18:00
132996    39126    654    2017-11-05 07:28:00    2017-11-05 07:28:00
132997    39126    697    2017-11-05 10:11:00    2017-11-05 10:11:00
132998    39126    757    2017-11-05 04:56:00    2017-11-05 04:56:00
132999    39126    934    2017-11-05 06:24:00    2017-11-05 06:24:00
133000    39127    937    2017-11-05 08:29:00    2017-11-05 08:29:00
133001    39127    958    2017-11-05 01:02:00    2017-11-05 01:02:00
133002    39127    526    2017-11-05 08:23:00    2017-11-05 08:23:00
133003    39127    475    2017-11-05 11:34:00    2017-11-05 11:34:00
133004    39127    755    2017-11-05 03:52:00    2017-11-05 03:52:00
133005    39128    889    2017-11-05 21:25:00    2017-11-05 21:25:00
133006    39128    696    2017-11-05 08:53:00    2017-11-05 08:53:00
133007    39128    918    2017-11-05 13:20:00    2017-11-05 13:20:00
133008    39128    876    2017-11-05 15:32:00    2017-11-05 15:32:00
133009    39128    919    2017-11-05 23:34:00    2017-11-05 23:34:00
133010    39129    757    2017-11-05 11:18:00    2017-11-05 11:18:00
133011    39129    905    2017-11-05 13:14:00    2017-11-05 13:14:00
133012    39129    775    2017-11-05 18:29:00    2017-11-05 18:29:00
133013    39129    649    2017-11-05 13:12:00    2017-11-05 13:12:00
133014    39129    810    2017-11-05 14:29:00    2017-11-05 14:29:00
133015    39130    817    2017-11-05 07:50:00    2017-11-05 07:50:00
133016    39130    506    2017-11-05 22:04:00    2017-11-05 22:04:00
133017    39130    693    2017-11-05 20:59:00    2017-11-05 20:59:00
133018    39130    945    2017-11-05 01:06:00    2017-11-05 01:06:00
133019    39130    698    2017-11-05 09:28:00    2017-11-05 09:28:00
133020    39131    880    2017-11-05 18:45:00    2017-11-05 18:45:00
133021    39131    856    2017-11-05 16:10:00    2017-11-05 16:10:00
133022    39131    709    2017-11-05 16:58:00    2017-11-05 16:58:00
133023    39131    704    2017-11-05 08:35:00    2017-11-05 08:35:00
133024    39131    672    2017-11-05 04:24:00    2017-11-05 04:24:00
133025    39132    590    2017-11-05 02:17:00    2017-11-05 02:17:00
133026    39132    688    2017-11-05 09:46:00    2017-11-05 09:46:00
133027    39132    730    2017-11-05 21:38:00    2017-11-05 21:38:00
133028    39132    697    2017-11-05 03:36:00    2017-11-05 03:36:00
133029    39132    687    2017-11-05 20:44:00    2017-11-05 20:44:00
133030    39133    620    2017-11-05 07:13:00    2017-11-05 07:13:00
133031    39133    569    2017-11-05 18:14:00    2017-11-05 18:14:00
133032    39133    504    2017-11-05 23:37:00    2017-11-05 23:37:00
133033    39133    830    2017-11-05 05:58:00    2017-11-05 05:58:00
133034    39133    748    2017-11-05 11:11:00    2017-11-05 11:11:00
133035    39134    728    2017-11-05 17:43:00    2017-11-05 17:43:00
133036    39134    956    2017-11-05 10:08:00    2017-11-05 10:08:00
133037    39134    632    2017-11-05 19:07:00    2017-11-05 19:07:00
133038    39134    791    2017-11-05 21:17:00    2017-11-05 21:17:00
133039    39134    900    2017-11-05 06:25:00    2017-11-05 06:25:00
133040    39135    956    2017-11-05 04:40:00    2017-11-05 04:40:00
133041    39135    855    2017-11-05 20:49:00    2017-11-05 20:49:00
133042    39135    625    2017-11-05 14:19:00    2017-11-05 14:19:00
133043    39135    625    2017-11-05 21:55:00    2017-11-05 21:55:00
133044    39135    847    2017-11-05 19:34:00    2017-11-05 19:34:00
133045    39136    847    2017-11-05 18:04:00    2017-11-05 18:04:00
133046    39136    819    2017-11-05 02:11:00    2017-11-05 02:11:00
133047    39136    898    2017-11-05 19:51:00    2017-11-05 19:51:00
133048    39136    688    2017-11-05 22:01:00    2017-11-05 22:01:00
133049    39136    699    2017-11-05 18:30:00    2017-11-05 18:30:00
133050    39137    724    2017-11-05 02:10:00    2017-11-05 02:10:00
133051    39137    780    2017-11-05 06:19:00    2017-11-05 06:19:00
133052    39137    810    2017-11-05 05:22:00    2017-11-05 05:22:00
133053    39137    542    2017-11-05 07:15:00    2017-11-05 07:15:00
133054    39137    899    2017-11-05 08:23:00    2017-11-05 08:23:00
133055    39138    541    2017-11-05 17:39:00    2017-11-05 17:39:00
133056    39138    545    2017-11-05 04:26:00    2017-11-05 04:26:00
133057    39138    540    2017-11-05 17:38:00    2017-11-05 17:38:00
133058    39138    485    2017-11-05 23:19:00    2017-11-05 23:19:00
133059    39138    725    2017-11-05 04:18:00    2017-11-05 04:18:00
133060    39139    911    2017-11-05 15:29:00    2017-11-05 15:29:00
133061    39139    566    2017-11-05 01:45:00    2017-11-05 01:45:00
133062    39139    763    2017-11-05 09:47:00    2017-11-05 09:47:00
133063    39139    801    2017-11-05 10:01:00    2017-11-05 10:01:00
133064    39139    798    2017-11-05 22:33:00    2017-11-05 22:33:00
133065    39140    624    2017-11-05 16:13:00    2017-11-05 16:13:00
133066    39140    816    2017-11-05 21:07:00    2017-11-05 21:07:00
133067    39140    691    2017-11-05 06:08:00    2017-11-05 06:08:00
133068    39140    829    2017-11-05 17:22:00    2017-11-05 17:22:00
133069    39140    788    2017-11-05 19:00:00    2017-11-05 19:00:00
133070    39141    524    2017-11-05 03:56:00    2017-11-05 03:56:00
133071    39141    480    2017-11-05 23:12:00    2017-11-05 23:12:00
133072    39141    805    2017-11-05 02:37:00    2017-11-05 02:37:00
133073    39141    498    2017-11-05 08:26:00    2017-11-05 08:26:00
133074    39141    920    2017-11-05 05:03:00    2017-11-05 05:03:00
133075    39142    599    2017-11-05 15:10:00    2017-11-05 15:10:00
133076    39142    833    2017-11-05 13:00:00    2017-11-05 13:00:00
133077    39142    732    2017-11-05 06:56:00    2017-11-05 06:56:00
133078    39142    860    2017-11-05 14:28:00    2017-11-05 14:28:00
133079    39142    624    2017-11-05 07:54:00    2017-11-05 07:54:00
133080    39143    789    2017-11-05 10:05:00    2017-11-05 10:05:00
133081    39143    681    2017-11-05 15:37:00    2017-11-05 15:37:00
133082    39143    623    2017-11-05 11:29:00    2017-11-05 11:29:00
133083    39143    930    2017-11-05 08:06:00    2017-11-05 08:06:00
133084    39143    515    2017-11-05 22:00:00    2017-11-05 22:00:00
133085    39144    676    2017-11-05 06:13:00    2017-11-05 06:13:00
133086    39144    894    2017-11-05 07:50:00    2017-11-05 07:50:00
133087    39144    610    2017-11-05 14:02:00    2017-11-05 14:02:00
133088    39144    941    2017-11-05 20:49:00    2017-11-05 20:49:00
133089    39144    505    2017-11-05 01:59:00    2017-11-05 01:59:00
133090    39145    502    2017-11-05 15:08:00    2017-11-05 15:08:00
133091    39145    601    2017-11-05 06:43:00    2017-11-05 06:43:00
133092    39145    944    2017-11-05 13:00:00    2017-11-05 13:00:00
133093    39145    883    2017-11-05 03:28:00    2017-11-05 03:28:00
133094    39145    471    2017-11-05 06:51:00    2017-11-05 06:51:00
133095    39146    944    2017-11-05 15:47:00    2017-11-05 15:47:00
133096    39146    915    2017-11-05 13:02:00    2017-11-05 13:02:00
133097    39146    798    2017-11-05 07:00:00    2017-11-05 07:00:00
133098    39146    467    2017-11-05 01:10:00    2017-11-05 01:10:00
133099    39146    776    2017-11-05 19:08:00    2017-11-05 19:08:00
133100    39147    875    2017-11-05 04:45:00    2017-11-05 04:45:00
133101    39147    752    2017-11-05 03:48:00    2017-11-05 03:48:00
133102    39147    835    2017-11-05 07:36:00    2017-11-05 07:36:00
133103    39147    781    2017-11-05 10:10:00    2017-11-05 10:10:00
133104    39147    597    2017-11-05 22:08:00    2017-11-05 22:08:00
133105    39148    802    2017-11-05 10:59:00    2017-11-05 10:59:00
133106    39148    687    2017-11-05 05:09:00    2017-11-05 05:09:00
133107    39148    487    2017-11-05 22:07:00    2017-11-05 22:07:00
133108    39148    499    2017-11-05 08:52:00    2017-11-05 08:52:00
133109    39148    516    2017-11-05 03:00:00    2017-11-05 03:00:00
133110    39149    707    2017-11-05 15:16:00    2017-11-05 15:16:00
133111    39149    647    2017-11-05 04:39:00    2017-11-05 04:39:00
133112    39149    845    2017-11-05 12:25:00    2017-11-05 12:25:00
133113    39149    696    2017-11-05 04:18:00    2017-11-05 04:18:00
133114    39149    576    2017-11-05 18:17:00    2017-11-05 18:17:00
133115    39150    610    2017-11-05 15:23:00    2017-11-05 15:23:00
133116    39150    688    2017-11-05 05:28:00    2017-11-05 05:28:00
133117    39150    842    2017-11-05 18:11:00    2017-11-05 18:11:00
133118    39150    820    2017-11-05 10:02:00    2017-11-05 10:02:00
133119    39150    835    2017-11-05 17:30:00    2017-11-05 17:30:00
133120    39151    890    2017-11-05 07:18:00    2017-11-05 07:18:00
133121    39151    907    2017-11-05 03:16:00    2017-11-05 03:16:00
133122    39151    729    2017-11-05 01:42:00    2017-11-05 01:42:00
133123    39151    786    2017-11-05 01:10:00    2017-11-05 01:10:00
133124    39151    526    2017-11-05 04:56:00    2017-11-05 04:56:00
133125    39152    810    2017-11-05 10:21:00    2017-11-05 10:21:00
133126    39152    933    2017-11-05 18:40:00    2017-11-05 18:40:00
133127    39152    537    2017-11-05 09:05:00    2017-11-05 09:05:00
133128    39152    493    2017-11-05 04:16:00    2017-11-05 04:16:00
133129    39152    546    2017-11-05 19:18:00    2017-11-05 19:18:00
133130    39153    927    2017-11-05 23:28:00    2017-11-05 23:28:00
133131    39153    626    2017-11-05 01:31:00    2017-11-05 01:31:00
133132    39153    612    2017-11-05 05:58:00    2017-11-05 05:58:00
133133    39153    504    2017-11-05 03:48:00    2017-11-05 03:48:00
133134    39153    696    2017-11-05 11:49:00    2017-11-05 11:49:00
133135    39154    771    2017-11-05 03:10:00    2017-11-05 03:10:00
133136    39154    513    2017-11-05 08:12:00    2017-11-05 08:12:00
133137    39154    825    2017-11-05 13:39:00    2017-11-05 13:39:00
133138    39154    895    2017-11-05 09:38:00    2017-11-05 09:38:00
133139    39154    649    2017-11-05 10:42:00    2017-11-05 10:42:00
133140    39155    737    2017-11-05 16:19:00    2017-11-05 16:19:00
133141    39155    942    2017-11-05 15:27:00    2017-11-05 15:27:00
133142    39155    773    2017-11-05 02:51:00    2017-11-05 02:51:00
133143    39155    588    2017-11-05 18:28:00    2017-11-05 18:28:00
133144    39155    645    2017-11-05 01:24:00    2017-11-05 01:24:00
133145    39156    473    2017-11-05 16:02:00    2017-11-05 16:02:00
133146    39156    467    2017-11-05 10:50:00    2017-11-05 10:50:00
133147    39156    627    2017-11-05 20:56:00    2017-11-05 20:56:00
133148    39156    873    2017-11-05 21:36:00    2017-11-05 21:36:00
133149    39156    480    2017-11-05 04:13:00    2017-11-05 04:13:00
133150    39157    542    2017-11-05 04:04:00    2017-11-05 04:04:00
133151    39157    550    2017-11-05 02:33:00    2017-11-05 02:33:00
133152    39157    801    2017-11-05 05:23:00    2017-11-05 05:23:00
133153    39157    599    2017-11-05 02:20:00    2017-11-05 02:20:00
133154    39157    556    2017-11-05 13:55:00    2017-11-05 13:55:00
133155    39158    661    2017-11-05 20:18:00    2017-11-05 20:18:00
133156    39158    849    2017-11-05 18:28:00    2017-11-05 18:28:00
133157    39158    865    2017-11-05 03:00:00    2017-11-05 03:00:00
133158    39158    648    2017-11-05 21:50:00    2017-11-05 21:50:00
133159    39158    572    2017-11-05 11:01:00    2017-11-05 11:01:00
133160    39159    858    2017-11-05 18:00:00    2017-11-05 18:00:00
133161    39159    718    2017-11-05 07:23:00    2017-11-05 07:23:00
133162    39159    821    2017-11-05 19:00:00    2017-11-05 19:00:00
133163    39159    576    2017-11-05 23:39:00    2017-11-05 23:39:00
133164    39159    896    2017-11-05 16:17:00    2017-11-05 16:17:00
133165    39160    821    2017-11-05 23:00:00    2017-11-05 23:00:00
133166    39160    685    2017-11-05 18:42:00    2017-11-05 18:42:00
133167    39160    791    2017-11-05 22:50:00    2017-11-05 22:50:00
133168    39160    727    2017-11-05 06:29:00    2017-11-05 06:29:00
133169    39160    868    2017-11-05 04:24:00    2017-11-05 04:24:00
133170    39161    805    2017-11-05 15:25:00    2017-11-05 15:25:00
133171    39161    685    2017-11-05 08:01:00    2017-11-05 08:01:00
133172    39161    536    2017-11-05 07:58:00    2017-11-05 07:58:00
133173    39161    653    2017-11-05 11:17:00    2017-11-05 11:17:00
133174    39161    550    2017-11-05 17:42:00    2017-11-05 17:42:00
133175    39162    843    2017-11-05 11:01:00    2017-11-05 11:01:00
133176    39162    709    2017-11-05 03:29:00    2017-11-05 03:29:00
133177    39162    697    2017-11-05 10:42:00    2017-11-05 10:42:00
133178    39162    506    2017-11-05 08:00:00    2017-11-05 08:00:00
133179    39162    738    2017-11-05 13:44:00    2017-11-05 13:44:00
133180    39163    616    2017-11-05 18:51:00    2017-11-05 18:51:00
133181    39163    897    2017-11-05 07:18:00    2017-11-05 07:18:00
133182    39163    682    2017-11-05 20:34:00    2017-11-05 20:34:00
133183    39163    599    2017-11-05 20:01:00    2017-11-05 20:01:00
133184    39163    700    2017-11-05 18:28:00    2017-11-05 18:28:00
133185    39164    614    2017-11-05 05:38:00    2017-11-05 05:38:00
133186    39164    483    2017-11-05 21:37:00    2017-11-05 21:37:00
133187    39164    727    2017-11-05 18:19:00    2017-11-05 18:19:00
133188    39164    784    2017-11-05 09:33:00    2017-11-05 09:33:00
133189    39164    597    2017-11-05 18:24:00    2017-11-05 18:24:00
133190    39165    876    2017-11-05 13:34:00    2017-11-05 13:34:00
133191    39165    589    2017-11-05 04:54:00    2017-11-05 04:54:00
133192    39165    527    2017-11-05 06:35:00    2017-11-05 06:35:00
133193    39165    519    2017-11-05 13:58:00    2017-11-05 13:58:00
133194    39165    761    2017-11-05 18:49:00    2017-11-05 18:49:00
133195    39166    823    2017-11-05 14:13:00    2017-11-05 14:13:00
133196    39166    628    2017-11-05 04:54:00    2017-11-05 04:54:00
133197    39166    570    2017-11-05 16:06:00    2017-11-05 16:06:00
133198    39166    814    2017-11-05 09:11:00    2017-11-05 09:11:00
133199    39166    511    2017-11-05 13:00:00    2017-11-05 13:00:00
133200    39167    948    2017-11-05 18:12:00    2017-11-05 18:12:00
133201    39167    959    2017-11-05 10:09:00    2017-11-05 10:09:00
133202    39167    744    2017-11-05 08:35:00    2017-11-05 08:35:00
133203    39167    572    2017-11-05 06:13:00    2017-11-05 06:13:00
133204    39167    578    2017-11-05 19:44:00    2017-11-05 19:44:00
133205    39168    766    2017-11-05 03:45:00    2017-11-05 03:45:00
133206    39168    748    2017-11-05 06:36:00    2017-11-05 06:36:00
133207    39168    708    2017-11-05 09:01:00    2017-11-05 09:01:00
133208    39168    870    2017-11-05 17:58:00    2017-11-05 17:58:00
133209    39168    695    2017-11-05 10:16:00    2017-11-05 10:16:00
133210    39169    464    2017-11-05 21:38:00    2017-11-05 21:38:00
133211    39169    575    2017-11-05 05:57:00    2017-11-05 05:57:00
133212    39169    797    2017-11-05 14:24:00    2017-11-05 14:24:00
133213    39169    614    2017-11-05 22:33:00    2017-11-05 22:33:00
133214    39169    940    2017-11-05 10:15:00    2017-11-05 10:15:00
133215    39170    943    2017-11-05 23:00:00    2017-11-05 23:00:00
133216    39170    961    2017-11-05 06:25:00    2017-11-05 06:25:00
133217    39170    715    2017-11-05 11:49:00    2017-11-05 11:49:00
133218    39170    939    2017-11-05 20:25:00    2017-11-05 20:25:00
133219    39170    829    2017-11-05 04:42:00    2017-11-05 04:42:00
133220    39171    669    2017-11-05 15:30:00    2017-11-05 15:30:00
133221    39171    819    2017-11-05 08:00:00    2017-11-05 08:00:00
133222    39171    746    2017-11-05 01:03:00    2017-11-05 01:03:00
133223    39171    530    2017-11-05 22:01:00    2017-11-05 22:01:00
133224    39171    614    2017-11-05 09:20:00    2017-11-05 09:20:00
133225    39172    619    2017-11-05 19:49:00    2017-11-05 19:49:00
133226    39172    827    2017-11-05 11:06:00    2017-11-05 11:06:00
133227    39172    531    2017-11-05 12:28:00    2017-11-05 12:28:00
133228    39172    896    2017-11-05 03:47:00    2017-11-05 03:47:00
133229    39172    926    2017-11-05 10:30:00    2017-11-05 10:30:00
133230    39173    905    2017-11-05 20:59:00    2017-11-05 20:59:00
133231    39173    524    2017-11-05 11:13:00    2017-11-05 11:13:00
133232    39173    838    2017-11-05 13:29:00    2017-11-05 13:29:00
133233    39173    688    2017-11-05 01:39:00    2017-11-05 01:39:00
133234    39173    565    2017-11-05 17:02:00    2017-11-05 17:02:00
133235    39174    645    2017-11-05 17:00:00    2017-11-05 17:00:00
133236    39174    762    2017-11-05 14:00:00    2017-11-05 14:00:00
133237    39174    949    2017-11-05 22:07:00    2017-11-05 22:07:00
133238    39174    680    2017-11-05 10:41:00    2017-11-05 10:41:00
133239    39174    619    2017-11-05 04:48:00    2017-11-05 04:48:00
133240    39175    744    2017-11-05 02:24:00    2017-11-05 02:24:00
133241    39175    595    2017-11-05 16:21:00    2017-11-05 16:21:00
133242    39175    796    2017-11-05 20:10:00    2017-11-05 20:10:00
133243    39175    690    2017-11-05 04:00:00    2017-11-05 04:00:00
133244    39175    868    2017-11-05 03:36:00    2017-11-05 03:36:00
133245    39176    754    2017-11-05 02:48:00    2017-11-05 02:48:00
133246    39176    742    2017-11-05 01:29:00    2017-11-05 01:29:00
133247    39176    819    2017-11-05 22:25:00    2017-11-05 22:25:00
133248    39176    668    2017-11-05 22:53:00    2017-11-05 22:53:00
133249    39176    906    2017-11-05 21:50:00    2017-11-05 21:50:00
133250    39177    653    2017-11-05 03:16:00    2017-11-05 03:16:00
133251    39177    558    2017-11-05 13:31:00    2017-11-05 13:31:00
133252    39177    898    2017-11-05 15:41:00    2017-11-05 15:41:00
133253    39177    667    2017-11-05 01:37:00    2017-11-05 01:37:00
133254    39177    594    2017-11-05 03:44:00    2017-11-05 03:44:00
133255    39178    697    2017-11-05 03:25:00    2017-11-05 03:25:00
133256    39178    806    2017-11-05 03:56:00    2017-11-05 03:56:00
133257    39178    725    2017-11-05 05:13:00    2017-11-05 05:13:00
133258    39178    637    2017-11-05 22:19:00    2017-11-05 22:19:00
133259    39178    631    2017-11-05 22:44:00    2017-11-05 22:44:00
133260    39179    914    2017-11-05 09:42:00    2017-11-05 09:42:00
133261    39179    550    2017-11-05 23:02:00    2017-11-05 23:02:00
133262    39179    509    2017-11-05 12:34:00    2017-11-05 12:34:00
133263    39179    655    2017-11-05 03:53:00    2017-11-05 03:53:00
133264    39179    566    2017-11-05 02:25:00    2017-11-05 02:25:00
133265    39180    939    2017-11-05 20:24:00    2017-11-05 20:24:00
133266    39180    793    2017-11-05 14:43:00    2017-11-05 14:43:00
133267    39180    523    2017-11-05 11:25:00    2017-11-05 11:25:00
133268    39180    851    2017-11-05 16:14:00    2017-11-05 16:14:00
133269    39180    784    2017-11-05 05:03:00    2017-11-05 05:03:00
133270    39181    754    2017-11-05 18:06:00    2017-11-05 18:06:00
133271    39181    635    2017-11-05 11:19:00    2017-11-05 11:19:00
133272    39181    948    2017-11-05 12:07:00    2017-11-05 12:07:00
133273    39181    676    2017-11-05 06:18:00    2017-11-05 06:18:00
133274    39181    878    2017-11-05 04:34:00    2017-11-05 04:34:00
133275    39182    935    2017-11-05 03:48:00    2017-11-05 03:48:00
133276    39182    941    2017-11-05 03:49:00    2017-11-05 03:49:00
133277    39182    669    2017-11-05 15:04:00    2017-11-05 15:04:00
133278    39182    682    2017-11-05 11:27:00    2017-11-05 11:27:00
133279    39182    724    2017-11-05 03:15:00    2017-11-05 03:15:00
133280    39183    537    2017-11-05 11:43:00    2017-11-05 11:43:00
133281    39183    781    2017-11-05 06:42:00    2017-11-05 06:42:00
133282    39183    640    2017-11-05 06:26:00    2017-11-05 06:26:00
133283    39183    704    2017-11-05 15:07:00    2017-11-05 15:07:00
133284    39183    517    2017-11-05 21:43:00    2017-11-05 21:43:00
133285    39184    860    2017-11-05 02:51:00    2017-11-05 02:51:00
133286    39184    650    2017-11-05 16:16:00    2017-11-05 16:16:00
133287    39184    525    2017-11-05 05:09:00    2017-11-05 05:09:00
133288    39184    601    2017-11-05 10:22:00    2017-11-05 10:22:00
133289    39184    899    2017-11-05 02:03:00    2017-11-05 02:03:00
133290    39185    844    2017-11-05 14:07:00    2017-11-05 14:07:00
133291    39185    922    2017-11-05 15:33:00    2017-11-05 15:33:00
133292    39185    609    2017-11-05 12:15:00    2017-11-05 12:15:00
133293    39185    815    2017-11-05 09:06:00    2017-11-05 09:06:00
133294    39185    788    2017-11-05 02:46:00    2017-11-05 02:46:00
133295    39186    549    2017-11-05 22:21:00    2017-11-05 22:21:00
133296    39186    910    2017-11-05 14:43:00    2017-11-05 14:43:00
133297    39186    510    2017-11-05 03:57:00    2017-11-05 03:57:00
133298    39186    923    2017-11-05 05:44:00    2017-11-05 05:44:00
133299    39186    663    2017-11-05 09:11:00    2017-11-05 09:11:00
133300    39187    871    2017-11-05 11:13:00    2017-11-05 11:13:00
133301    39187    864    2017-11-05 14:47:00    2017-11-05 14:47:00
133302    39187    622    2017-11-05 19:45:00    2017-11-05 19:45:00
133303    39187    922    2017-11-05 04:11:00    2017-11-05 04:11:00
133304    39187    908    2017-11-05 12:15:00    2017-11-05 12:15:00
133305    39188    920    2017-11-05 10:58:00    2017-11-05 10:58:00
133306    39188    523    2017-11-05 17:49:00    2017-11-05 17:49:00
133307    39188    874    2017-11-05 12:41:00    2017-11-05 12:41:00
133308    39188    647    2017-11-05 20:41:00    2017-11-05 20:41:00
133309    39188    567    2017-11-05 18:04:00    2017-11-05 18:04:00
133310    39189    885    2017-11-05 03:12:00    2017-11-05 03:12:00
133311    39189    516    2017-11-05 02:44:00    2017-11-05 02:44:00
133312    39189    805    2017-11-05 18:19:00    2017-11-05 18:19:00
133313    39189    936    2017-11-05 04:38:00    2017-11-05 04:38:00
133314    39189    909    2017-11-05 19:19:00    2017-11-05 19:19:00
133315    39190    572    2017-11-05 19:58:00    2017-11-05 19:58:00
133316    39190    909    2017-11-05 04:09:00    2017-11-05 04:09:00
133317    39190    666    2017-11-05 02:12:00    2017-11-05 02:12:00
133318    39190    785    2017-11-05 23:49:00    2017-11-05 23:49:00
133319    39190    875    2017-11-05 07:05:00    2017-11-05 07:05:00
133320    39191    516    2017-11-05 22:51:00    2017-11-05 22:51:00
133321    39191    750    2017-11-05 14:29:00    2017-11-05 14:29:00
133322    39191    762    2017-11-05 08:08:00    2017-11-05 08:08:00
133323    39191    573    2017-11-05 17:53:00    2017-11-05 17:53:00
133324    39191    551    2017-11-05 06:07:00    2017-11-05 06:07:00
133325    39192    669    2017-11-05 21:08:00    2017-11-05 21:08:00
133326    39192    934    2017-11-05 07:05:00    2017-11-05 07:05:00
133327    39192    757    2017-11-05 02:19:00    2017-11-05 02:19:00
133328    39192    555    2017-11-05 18:07:00    2017-11-05 18:07:00
133329    39192    912    2017-11-05 16:00:00    2017-11-05 16:00:00
133330    39193    531    2017-11-05 08:45:00    2017-11-05 08:45:00
133331    39193    563    2017-11-05 22:37:00    2017-11-05 22:37:00
133332    39193    648    2017-11-05 13:10:00    2017-11-05 13:10:00
133333    39193    500    2017-11-05 04:17:00    2017-11-05 04:17:00
133334    39193    580    2017-11-05 15:09:00    2017-11-05 15:09:00
133335    39194    694    2017-11-06 20:57:00    2017-11-06 20:57:00
133336    39194    641    2017-11-06 09:39:00    2017-11-06 09:39:00
133337    39194    924    2017-11-06 16:44:00    2017-11-06 16:44:00
133338    39194    835    2017-11-06 22:27:00    2017-11-06 22:27:00
133339    39194    870    2017-11-06 10:26:00    2017-11-06 10:26:00
133340    39195    558    2017-11-06 16:16:00    2017-11-06 16:16:00
133341    39195    529    2017-11-06 18:03:00    2017-11-06 18:03:00
133342    39195    505    2017-11-06 09:49:00    2017-11-06 09:49:00
133343    39195    899    2017-11-06 01:21:00    2017-11-06 01:21:00
133344    39195    936    2017-11-06 09:00:00    2017-11-06 09:00:00
133345    39196    631    2017-11-06 21:33:00    2017-11-06 21:33:00
133346    39196    956    2017-11-06 18:17:00    2017-11-06 18:17:00
133347    39196    520    2017-11-06 11:05:00    2017-11-06 11:05:00
133348    39196    920    2017-11-06 14:47:00    2017-11-06 14:47:00
133349    39196    534    2017-11-06 08:04:00    2017-11-06 08:04:00
133350    39197    627    2017-11-06 23:54:00    2017-11-06 23:54:00
133351    39197    931    2017-11-06 10:07:00    2017-11-06 10:07:00
133352    39197    542    2017-11-06 01:25:00    2017-11-06 01:25:00
133353    39197    606    2017-11-06 07:29:00    2017-11-06 07:29:00
133354    39197    887    2017-11-06 21:23:00    2017-11-06 21:23:00
133355    39198    770    2017-11-06 10:20:00    2017-11-06 10:20:00
133356    39198    633    2017-11-06 14:54:00    2017-11-06 14:54:00
133357    39198    912    2017-11-06 20:48:00    2017-11-06 20:48:00
133358    39198    632    2017-11-06 02:39:00    2017-11-06 02:39:00
133359    39198    811    2017-11-06 10:31:00    2017-11-06 10:31:00
133360    39199    624    2017-11-06 14:09:00    2017-11-06 14:09:00
133361    39199    961    2017-11-06 14:29:00    2017-11-06 14:29:00
133362    39199    555    2017-11-06 01:45:00    2017-11-06 01:45:00
133363    39199    638    2017-11-06 20:02:00    2017-11-06 20:02:00
133364    39199    486    2017-11-06 23:55:00    2017-11-06 23:55:00
133365    39200    926    2017-11-06 02:39:00    2017-11-06 02:39:00
133366    39200    852    2017-11-06 11:08:00    2017-11-06 11:08:00
133367    39200    619    2017-11-06 03:33:00    2017-11-06 03:33:00
133368    39200    494    2017-11-06 23:50:00    2017-11-06 23:50:00
133369    39200    938    2017-11-06 08:07:00    2017-11-06 08:07:00
133370    39201    914    2017-11-06 03:22:00    2017-11-06 03:22:00
133371    39201    632    2017-11-06 19:48:00    2017-11-06 19:48:00
133372    39201    901    2017-11-06 07:03:00    2017-11-06 07:03:00
133373    39201    538    2017-11-06 09:17:00    2017-11-06 09:17:00
133374    39201    934    2017-11-06 09:08:00    2017-11-06 09:08:00
133375    39202    703    2017-11-06 09:02:00    2017-11-06 09:02:00
133376    39202    724    2017-11-06 05:07:00    2017-11-06 05:07:00
133377    39202    722    2017-11-06 03:07:00    2017-11-06 03:07:00
133378    39202    582    2017-11-06 07:45:00    2017-11-06 07:45:00
133379    39202    657    2017-11-06 19:03:00    2017-11-06 19:03:00
133380    39203    789    2017-11-06 06:01:00    2017-11-06 06:01:00
133381    39203    722    2017-11-06 09:21:00    2017-11-06 09:21:00
133382    39203    489    2017-11-06 13:30:00    2017-11-06 13:30:00
133383    39203    946    2017-11-06 13:30:00    2017-11-06 13:30:00
133384    39203    650    2017-11-06 11:10:00    2017-11-06 11:10:00
133385    39204    736    2017-11-06 04:38:00    2017-11-06 04:38:00
133386    39204    521    2017-11-06 21:12:00    2017-11-06 21:12:00
133387    39204    691    2017-11-06 13:50:00    2017-11-06 13:50:00
133388    39204    794    2017-11-06 09:55:00    2017-11-06 09:55:00
133389    39204    824    2017-11-06 16:46:00    2017-11-06 16:46:00
133390    39205    810    2017-11-06 03:54:00    2017-11-06 03:54:00
133391    39205    685    2017-11-06 18:57:00    2017-11-06 18:57:00
133392    39205    475    2017-11-06 16:08:00    2017-11-06 16:08:00
133393    39205    481    2017-11-06 21:44:00    2017-11-06 21:44:00
133394    39205    736    2017-11-06 03:11:00    2017-11-06 03:11:00
133395    39206    644    2017-11-06 12:37:00    2017-11-06 12:37:00
133396    39206    606    2017-11-06 21:08:00    2017-11-06 21:08:00
133397    39206    953    2017-11-06 21:41:00    2017-11-06 21:41:00
133398    39206    829    2017-11-06 03:59:00    2017-11-06 03:59:00
133399    39206    761    2017-11-06 22:00:00    2017-11-06 22:00:00
133400    39207    809    2017-11-07 17:14:00    2017-11-07 17:14:00
133401    39207    945    2017-11-07 21:59:00    2017-11-07 21:59:00
133402    39207    952    2017-11-07 06:59:00    2017-11-07 06:59:00
133403    39207    676    2017-11-07 18:02:00    2017-11-07 18:02:00
133404    39207    569    2017-11-07 15:04:00    2017-11-07 15:04:00
133405    39208    658    2017-11-07 13:45:00    2017-11-07 13:45:00
133406    39208    638    2017-11-07 12:29:00    2017-11-07 12:29:00
133407    39208    562    2017-11-07 16:48:00    2017-11-07 16:48:00
133408    39208    952    2017-11-07 23:57:00    2017-11-07 23:57:00
133409    39208    496    2017-11-07 21:15:00    2017-11-07 21:15:00
133410    39209    785    2017-11-07 20:32:00    2017-11-07 20:32:00
133411    39209    563    2017-11-07 09:07:00    2017-11-07 09:07:00
133412    39209    794    2017-11-07 03:21:00    2017-11-07 03:21:00
133413    39209    558    2017-11-07 04:23:00    2017-11-07 04:23:00
133414    39209    943    2017-11-07 23:54:00    2017-11-07 23:54:00
133415    39210    645    2017-11-07 04:00:00    2017-11-07 04:00:00
133416    39210    568    2017-11-07 05:28:00    2017-11-07 05:28:00
133417    39210    928    2017-11-07 11:25:00    2017-11-07 11:25:00
133418    39210    539    2017-11-07 15:31:00    2017-11-07 15:31:00
133419    39210    615    2017-11-07 13:29:00    2017-11-07 13:29:00
133420    39211    896    2017-11-07 19:44:00    2017-11-07 19:44:00
133421    39211    550    2017-11-07 21:32:00    2017-11-07 21:32:00
133422    39211    941    2017-11-07 17:04:00    2017-11-07 17:04:00
133423    39211    742    2017-11-07 15:30:00    2017-11-07 15:30:00
133424    39211    797    2017-11-07 14:41:00    2017-11-07 14:41:00
133425    39212    464    2017-11-07 04:58:00    2017-11-07 04:58:00
133426    39212    803    2017-11-07 11:28:00    2017-11-07 11:28:00
133427    39212    890    2017-11-07 18:50:00    2017-11-07 18:50:00
133428    39212    570    2017-11-07 05:47:00    2017-11-07 05:47:00
133429    39212    956    2017-11-07 16:37:00    2017-11-07 16:37:00
133430    39213    667    2017-11-07 23:53:00    2017-11-07 23:53:00
133431    39213    764    2017-11-07 23:36:00    2017-11-07 23:36:00
133432    39213    806    2017-11-07 15:01:00    2017-11-07 15:01:00
133433    39213    604    2017-11-07 02:50:00    2017-11-07 02:50:00
133434    39213    562    2017-11-07 02:54:00    2017-11-07 02:54:00
133435    39214    842    2017-11-07 06:04:00    2017-11-07 06:04:00
133436    39214    851    2017-11-07 07:11:00    2017-11-07 07:11:00
133437    39214    846    2017-11-07 23:41:00    2017-11-07 23:41:00
133438    39214    900    2017-11-07 01:39:00    2017-11-07 01:39:00
133439    39214    470    2017-11-07 14:57:00    2017-11-07 14:57:00
133440    39215    589    2017-11-07 01:45:00    2017-11-07 01:45:00
133441    39215    554    2017-11-07 05:22:00    2017-11-07 05:22:00
133442    39215    933    2017-11-07 09:23:00    2017-11-07 09:23:00
133443    39215    537    2017-11-07 15:55:00    2017-11-07 15:55:00
133444    39215    688    2017-11-07 14:17:00    2017-11-07 14:17:00
133445    39216    484    2017-11-07 15:21:00    2017-11-07 15:21:00
133446    39216    879    2017-11-07 09:43:00    2017-11-07 09:43:00
133447    39216    509    2017-11-07 09:38:00    2017-11-07 09:38:00
133448    39216    489    2017-11-07 10:18:00    2017-11-07 10:18:00
133449    39216    487    2017-11-07 06:08:00    2017-11-07 06:08:00
133450    39217    706    2017-11-07 18:30:00    2017-11-07 18:30:00
133451    39217    777    2017-11-07 11:20:00    2017-11-07 11:20:00
133452    39217    621    2017-11-07 17:46:00    2017-11-07 17:46:00
133453    39217    711    2017-11-07 05:59:00    2017-11-07 05:59:00
133454    39217    743    2017-11-07 11:46:00    2017-11-07 11:46:00
133455    39218    718    2017-11-07 07:33:00    2017-11-07 07:33:00
133456    39218    634    2017-11-07 08:43:00    2017-11-07 08:43:00
133457    39218    810    2017-11-07 06:00:00    2017-11-07 06:00:00
133458    39218    525    2017-11-07 23:15:00    2017-11-07 23:15:00
133459    39218    724    2017-11-07 09:49:00    2017-11-07 09:49:00
133460    39219    477    2017-11-07 22:04:00    2017-11-07 22:04:00
133461    39219    943    2017-11-07 16:16:00    2017-11-07 16:16:00
133462    39219    640    2017-11-07 07:14:00    2017-11-07 07:14:00
133463    39219    951    2017-11-07 07:27:00    2017-11-07 07:27:00
133464    39219    646    2017-11-07 03:03:00    2017-11-07 03:03:00
133465    39220    653    2017-11-07 23:36:00    2017-11-07 23:36:00
133466    39220    519    2017-11-07 08:46:00    2017-11-07 08:46:00
133467    39220    960    2017-11-07 09:26:00    2017-11-07 09:26:00
133468    39220    958    2017-11-07 18:04:00    2017-11-07 18:04:00
133469    39220    776    2017-11-07 04:49:00    2017-11-07 04:49:00
133470    39221    606    2017-11-07 13:04:00    2017-11-07 13:04:00
133471    39221    912    2017-11-07 15:44:00    2017-11-07 15:44:00
133472    39221    730    2017-11-07 10:43:00    2017-11-07 10:43:00
133473    39221    526    2017-11-07 13:54:00    2017-11-07 13:54:00
133474    39221    635    2017-11-07 13:40:00    2017-11-07 13:40:00
133475    39222    640    2017-11-07 02:38:00    2017-11-07 02:38:00
133476    39222    585    2017-11-07 06:48:00    2017-11-07 06:48:00
133477    39222    713    2017-11-07 01:17:00    2017-11-07 01:17:00
133478    39222    653    2017-11-07 01:41:00    2017-11-07 01:41:00
133479    39222    511    2017-11-07 12:39:00    2017-11-07 12:39:00
133480    39223    678    2017-11-07 23:14:00    2017-11-07 23:14:00
133481    39223    818    2017-11-07 21:20:00    2017-11-07 21:20:00
133482    39223    954    2017-11-07 17:51:00    2017-11-07 17:51:00
133483    39223    628    2017-11-07 13:46:00    2017-11-07 13:46:00
133484    39223    640    2017-11-07 18:16:00    2017-11-07 18:16:00
133485    39224    557    2017-11-07 16:10:00    2017-11-07 16:10:00
133486    39224    541    2017-11-07 20:49:00    2017-11-07 20:49:00
133487    39224    606    2017-11-07 15:31:00    2017-11-07 15:31:00
133488    39224    683    2017-11-07 08:16:00    2017-11-07 08:16:00
133489    39224    551    2017-11-07 23:16:00    2017-11-07 23:16:00
133490    39225    553    2017-11-07 22:04:00    2017-11-07 22:04:00
133491    39225    605    2017-11-07 16:24:00    2017-11-07 16:24:00
133492    39225    760    2017-11-07 02:17:00    2017-11-07 02:17:00
133493    39225    464    2017-11-07 16:14:00    2017-11-07 16:14:00
133494    39225    545    2017-11-07 21:44:00    2017-11-07 21:44:00
133495    39226    813    2017-11-07 02:18:00    2017-11-07 02:18:00
133496    39226    806    2017-11-07 10:36:00    2017-11-07 10:36:00
133497    39226    534    2017-11-07 05:02:00    2017-11-07 05:02:00
133498    39226    578    2017-11-07 19:14:00    2017-11-07 19:14:00
133499    39226    621    2017-11-07 03:55:00    2017-11-07 03:55:00
133500    39227    527    2017-11-07 11:32:00    2017-11-07 11:32:00
133501    39227    930    2017-11-07 08:00:00    2017-11-07 08:00:00
133502    39227    720    2017-11-07 04:56:00    2017-11-07 04:56:00
133503    39227    639    2017-11-07 23:51:00    2017-11-07 23:51:00
133504    39227    483    2017-11-07 12:00:00    2017-11-07 12:00:00
133505    39228    842    2017-11-07 19:08:00    2017-11-07 19:08:00
133506    39228    556    2017-11-07 16:34:00    2017-11-07 16:34:00
133507    39228    717    2017-11-07 02:43:00    2017-11-07 02:43:00
133508    39228    512    2017-11-07 22:58:00    2017-11-07 22:58:00
133509    39228    822    2017-11-07 02:40:00    2017-11-07 02:40:00
133510    39229    667    2017-11-07 18:09:00    2017-11-07 18:09:00
133511    39229    536    2017-11-07 15:24:00    2017-11-07 15:24:00
133512    39229    618    2017-11-07 01:22:00    2017-11-07 01:22:00
133513    39229    926    2017-11-07 16:46:00    2017-11-07 16:46:00
133514    39229    729    2017-11-07 05:25:00    2017-11-07 05:25:00
133515    39230    539    2017-11-07 02:02:00    2017-11-07 02:02:00
133516    39230    565    2017-11-07 20:11:00    2017-11-07 20:11:00
133517    39230    502    2017-11-07 20:28:00    2017-11-07 20:28:00
133518    39230    561    2017-11-07 14:12:00    2017-11-07 14:12:00
133519    39230    580    2017-11-07 12:53:00    2017-11-07 12:53:00
133520    39231    682    2017-11-07 11:37:00    2017-11-07 11:37:00
133521    39231    588    2017-11-07 17:59:00    2017-11-07 17:59:00
133522    39231    690    2017-11-07 02:29:00    2017-11-07 02:29:00
133523    39231    690    2017-11-07 04:09:00    2017-11-07 04:09:00
133524    39231    605    2017-11-07 11:45:00    2017-11-07 11:45:00
133525    39232    856    2017-11-07 05:05:00    2017-11-07 05:05:00
133526    39232    475    2017-11-07 06:53:00    2017-11-07 06:53:00
133527    39232    740    2017-11-07 06:18:00    2017-11-07 06:18:00
133528    39232    700    2017-11-07 14:17:00    2017-11-07 14:17:00
133529    39232    780    2017-11-07 10:56:00    2017-11-07 10:56:00
133530    39233    924    2017-11-07 18:53:00    2017-11-07 18:53:00
133531    39233    499    2017-11-07 17:02:00    2017-11-07 17:02:00
133532    39233    862    2017-11-07 12:05:00    2017-11-07 12:05:00
133533    39233    671    2017-11-07 22:01:00    2017-11-07 22:01:00
133534    39233    844    2017-11-07 13:26:00    2017-11-07 13:26:00
133535    39234    634    2017-11-07 01:44:00    2017-11-07 01:44:00
133536    39234    744    2017-11-07 07:14:00    2017-11-07 07:14:00
133537    39234    756    2017-11-07 17:52:00    2017-11-07 17:52:00
133538    39234    639    2017-11-07 18:49:00    2017-11-07 18:49:00
133539    39234    782    2017-11-07 21:40:00    2017-11-07 21:40:00
133540    39235    815    2017-11-07 11:49:00    2017-11-07 11:49:00
133541    39235    846    2017-11-07 12:58:00    2017-11-07 12:58:00
133542    39235    472    2017-11-07 22:33:00    2017-11-07 22:33:00
133543    39235    627    2017-11-07 14:00:00    2017-11-07 14:00:00
133544    39235    486    2017-11-07 04:30:00    2017-11-07 04:30:00
133545    39236    688    2017-11-07 14:30:00    2017-11-07 14:30:00
133546    39236    498    2017-11-07 20:14:00    2017-11-07 20:14:00
133547    39236    538    2017-11-07 23:37:00    2017-11-07 23:37:00
133548    39236    532    2017-11-07 11:43:00    2017-11-07 11:43:00
133549    39236    535    2017-11-07 06:47:00    2017-11-07 06:47:00
133550    39237    819    2017-11-07 19:37:00    2017-11-07 19:37:00
133551    39237    537    2017-11-07 16:05:00    2017-11-07 16:05:00
133552    39237    511    2017-11-07 12:56:00    2017-11-07 12:56:00
133553    39237    676    2017-11-07 09:43:00    2017-11-07 09:43:00
133554    39237    846    2017-11-07 04:01:00    2017-11-07 04:01:00
133555    39238    882    2017-11-07 19:34:00    2017-11-07 19:34:00
133556    39238    524    2017-11-07 17:34:00    2017-11-07 17:34:00
133557    39238    552    2017-11-07 04:43:00    2017-11-07 04:43:00
133558    39238    872    2017-11-07 05:25:00    2017-11-07 05:25:00
133559    39238    698    2017-11-07 18:49:00    2017-11-07 18:49:00
133560    39239    770    2017-11-07 23:15:00    2017-11-07 23:15:00
133561    39239    735    2017-11-07 11:16:00    2017-11-07 11:16:00
133562    39239    712    2017-11-07 01:37:00    2017-11-07 01:37:00
133563    39239    559    2017-11-07 03:44:00    2017-11-07 03:44:00
133564    39239    826    2017-11-07 04:25:00    2017-11-07 04:25:00
133565    39240    577    2017-11-07 20:44:00    2017-11-07 20:44:00
133566    39240    761    2017-11-07 07:22:00    2017-11-07 07:22:00
133567    39240    482    2017-11-07 03:37:00    2017-11-07 03:37:00
133568    39240    620    2017-11-07 02:23:00    2017-11-07 02:23:00
133569    39240    620    2017-11-07 09:29:00    2017-11-07 09:29:00
133570    39241    652    2017-11-07 06:08:00    2017-11-07 06:08:00
133571    39241    708    2017-11-07 18:15:00    2017-11-07 18:15:00
133572    39241    517    2017-11-07 21:17:00    2017-11-07 21:17:00
133573    39241    816    2017-11-07 01:48:00    2017-11-07 01:48:00
133574    39241    512    2017-11-07 12:14:00    2017-11-07 12:14:00
133575    39242    748    2017-11-07 02:04:00    2017-11-07 02:04:00
133576    39242    529    2017-11-07 04:03:00    2017-11-07 04:03:00
133577    39242    925    2017-11-07 01:42:00    2017-11-07 01:42:00
133578    39242    724    2017-11-07 19:09:00    2017-11-07 19:09:00
133579    39242    899    2017-11-07 01:22:00    2017-11-07 01:22:00
133580    39243    821    2017-11-07 02:22:00    2017-11-07 02:22:00
133581    39243    565    2017-11-07 13:32:00    2017-11-07 13:32:00
133582    39243    663    2017-11-07 15:24:00    2017-11-07 15:24:00
133583    39243    509    2017-11-07 18:35:00    2017-11-07 18:35:00
133584    39243    949    2017-11-07 11:42:00    2017-11-07 11:42:00
133585    39244    818    2017-11-07 08:11:00    2017-11-07 08:11:00
133586    39244    698    2017-11-07 02:54:00    2017-11-07 02:54:00
133587    39244    516    2017-11-07 13:55:00    2017-11-07 13:55:00
133588    39244    604    2017-11-07 15:58:00    2017-11-07 15:58:00
133589    39244    597    2017-11-07 18:59:00    2017-11-07 18:59:00
133590    39245    842    2017-11-07 21:44:00    2017-11-07 21:44:00
133591    39245    497    2017-11-07 02:49:00    2017-11-07 02:49:00
133592    39245    915    2017-11-07 13:20:00    2017-11-07 13:20:00
133593    39245    754    2017-11-07 01:08:00    2017-11-07 01:08:00
133594    39245    628    2017-11-07 02:39:00    2017-11-07 02:39:00
133595    39246    589    2017-11-07 17:13:00    2017-11-07 17:13:00
133596    39246    656    2017-11-07 19:42:00    2017-11-07 19:42:00
133597    39246    771    2017-11-07 16:25:00    2017-11-07 16:25:00
133598    39246    931    2017-11-07 12:43:00    2017-11-07 12:43:00
133599    39246    932    2017-11-07 23:34:00    2017-11-07 23:34:00
133600    39247    493    2017-11-07 16:48:00    2017-11-07 16:48:00
133601    39247    926    2017-11-07 05:47:00    2017-11-07 05:47:00
133602    39247    700    2017-11-07 20:29:00    2017-11-07 20:29:00
133603    39247    876    2017-11-07 08:33:00    2017-11-07 08:33:00
133604    39247    545    2017-11-07 13:06:00    2017-11-07 13:06:00
133605    39248    872    2017-11-07 20:25:00    2017-11-07 20:25:00
133606    39248    720    2017-11-07 14:44:00    2017-11-07 14:44:00
133607    39248    933    2017-11-07 23:15:00    2017-11-07 23:15:00
133608    39248    746    2017-11-07 03:52:00    2017-11-07 03:52:00
133609    39248    597    2017-11-07 05:16:00    2017-11-07 05:16:00
133610    39249    628    2017-11-07 13:20:00    2017-11-07 13:20:00
133611    39249    532    2017-11-07 05:05:00    2017-11-07 05:05:00
133612    39249    481    2017-11-07 20:06:00    2017-11-07 20:06:00
133613    39249    864    2017-11-07 23:33:00    2017-11-07 23:33:00
133614    39249    555    2017-11-07 13:37:00    2017-11-07 13:37:00
133615    39250    716    2017-11-07 13:55:00    2017-11-07 13:55:00
133616    39250    928    2017-11-07 12:04:00    2017-11-07 12:04:00
133617    39250    525    2017-11-07 08:15:00    2017-11-07 08:15:00
133618    39250    566    2017-11-07 14:21:00    2017-11-07 14:21:00
133619    39250    752    2017-11-07 20:05:00    2017-11-07 20:05:00
133620    39251    715    2017-11-07 08:53:00    2017-11-07 08:53:00
133621    39251    504    2017-11-07 09:55:00    2017-11-07 09:55:00
133622    39251    550    2017-11-07 22:02:00    2017-11-07 22:02:00
133623    39251    572    2017-11-07 20:56:00    2017-11-07 20:56:00
133624    39251    942    2017-11-07 08:23:00    2017-11-07 08:23:00
133625    39252    941    2017-11-07 07:02:00    2017-11-07 07:02:00
133626    39252    561    2017-11-07 19:30:00    2017-11-07 19:30:00
133627    39252    545    2017-11-07 04:56:00    2017-11-07 04:56:00
133628    39252    675    2017-11-07 03:39:00    2017-11-07 03:39:00
133629    39252    700    2017-11-07 10:44:00    2017-11-07 10:44:00
133630    39253    937    2017-11-07 16:30:00    2017-11-07 16:30:00
133631    39253    496    2017-11-07 21:14:00    2017-11-07 21:14:00
133632    39253    605    2017-11-07 06:58:00    2017-11-07 06:58:00
133633    39253    810    2017-11-07 09:16:00    2017-11-07 09:16:00
133634    39253    490    2017-11-07 09:09:00    2017-11-07 09:09:00
133635    39254    591    2017-11-07 19:40:00    2017-11-07 19:40:00
133636    39254    501    2017-11-07 06:19:00    2017-11-07 06:19:00
133637    39254    753    2017-11-07 05:21:00    2017-11-07 05:21:00
133638    39254    761    2017-11-07 01:24:00    2017-11-07 01:24:00
133639    39254    955    2017-11-07 14:49:00    2017-11-07 14:49:00
133640    39255    641    2017-11-07 14:58:00    2017-11-07 14:58:00
133641    39255    544    2017-11-07 13:59:00    2017-11-07 13:59:00
133642    39255    911    2017-11-07 23:52:00    2017-11-07 23:52:00
133643    39255    959    2017-11-07 03:59:00    2017-11-07 03:59:00
133644    39255    603    2017-11-07 12:31:00    2017-11-07 12:31:00
133645    39256    717    2017-11-07 20:09:00    2017-11-07 20:09:00
133646    39256    871    2017-11-07 06:58:00    2017-11-07 06:58:00
133647    39256    711    2017-11-07 11:21:00    2017-11-07 11:21:00
133648    39256    700    2017-11-07 17:36:00    2017-11-07 17:36:00
133649    39256    887    2017-11-07 09:01:00    2017-11-07 09:01:00
133650    39257    673    2017-11-07 04:27:00    2017-11-07 04:27:00
133651    39257    538    2017-11-07 21:56:00    2017-11-07 21:56:00
133652    39257    542    2017-11-07 07:34:00    2017-11-07 07:34:00
133653    39257    958    2017-11-07 05:33:00    2017-11-07 05:33:00
133654    39257    825    2017-11-07 22:46:00    2017-11-07 22:46:00
133655    39258    735    2017-11-07 10:32:00    2017-11-07 10:32:00
133656    39258    917    2017-11-07 16:45:00    2017-11-07 16:45:00
133657    39258    844    2017-11-07 07:01:00    2017-11-07 07:01:00
133658    39258    668    2017-11-07 17:06:00    2017-11-07 17:06:00
133659    39258    719    2017-11-07 16:10:00    2017-11-07 16:10:00
133660    39259    582    2017-11-07 06:06:00    2017-11-07 06:06:00
133661    39259    958    2017-11-07 13:18:00    2017-11-07 13:18:00
133662    39259    575    2017-11-07 13:29:00    2017-11-07 13:29:00
133663    39259    929    2017-11-07 15:18:00    2017-11-07 15:18:00
133664    39259    933    2017-11-07 02:54:00    2017-11-07 02:54:00
133665    39260    498    2017-11-07 16:53:00    2017-11-07 16:53:00
133666    39260    588    2017-11-07 13:00:00    2017-11-07 13:00:00
133667    39260    882    2017-11-07 22:19:00    2017-11-07 22:19:00
133668    39260    595    2017-11-07 19:33:00    2017-11-07 19:33:00
133669    39260    530    2017-11-07 21:55:00    2017-11-07 21:55:00
133670    39261    953    2017-11-07 19:39:00    2017-11-07 19:39:00
133671    39261    737    2017-11-07 02:37:00    2017-11-07 02:37:00
133672    39261    934    2017-11-07 08:41:00    2017-11-07 08:41:00
133673    39261    768    2017-11-07 20:30:00    2017-11-07 20:30:00
133674    39261    640    2017-11-07 18:17:00    2017-11-07 18:17:00
133675    39262    674    2017-11-07 01:58:00    2017-11-07 01:58:00
133676    39262    748    2017-11-07 13:36:00    2017-11-07 13:36:00
133677    39262    542    2017-11-07 01:13:00    2017-11-07 01:13:00
133678    39262    809    2017-11-07 14:10:00    2017-11-07 14:10:00
133679    39262    795    2017-11-07 07:14:00    2017-11-07 07:14:00
133680    39263    663    2017-11-07 13:16:00    2017-11-07 13:16:00
133681    39263    479    2017-11-07 02:19:00    2017-11-07 02:19:00
133682    39263    725    2017-11-07 07:51:00    2017-11-07 07:51:00
133683    39263    873    2017-11-07 06:51:00    2017-11-07 06:51:00
133684    39263    769    2017-11-07 21:13:00    2017-11-07 21:13:00
133685    39264    627    2017-11-07 17:13:00    2017-11-07 17:13:00
133686    39264    790    2017-11-07 14:58:00    2017-11-07 14:58:00
133687    39264    619    2017-11-07 10:16:00    2017-11-07 10:16:00
133688    39264    791    2017-11-07 22:53:00    2017-11-07 22:53:00
133689    39264    488    2017-11-07 16:48:00    2017-11-07 16:48:00
133690    39265    699    2017-11-07 16:02:00    2017-11-07 16:02:00
133691    39265    749    2017-11-07 23:51:00    2017-11-07 23:51:00
133692    39265    768    2017-11-07 03:46:00    2017-11-07 03:46:00
133693    39265    833    2017-11-07 20:34:00    2017-11-07 20:34:00
133694    39265    551    2017-11-07 10:00:00    2017-11-07 10:00:00
133695    39266    556    2017-11-07 07:07:00    2017-11-07 07:07:00
133696    39266    636    2017-11-07 19:14:00    2017-11-07 19:14:00
133697    39266    535    2017-11-07 22:27:00    2017-11-07 22:27:00
133698    39266    645    2017-11-07 11:47:00    2017-11-07 11:47:00
133699    39266    906    2017-11-07 01:20:00    2017-11-07 01:20:00
133700    39267    756    2017-11-07 21:11:00    2017-11-07 21:11:00
133701    39267    618    2017-11-07 19:17:00    2017-11-07 19:17:00
133702    39267    943    2017-11-07 07:33:00    2017-11-07 07:33:00
133703    39267    931    2017-11-07 13:07:00    2017-11-07 13:07:00
133704    39267    945    2017-11-07 02:12:00    2017-11-07 02:12:00
133705    39268    651    2017-11-07 11:28:00    2017-11-07 11:28:00
133706    39268    844    2017-11-07 15:40:00    2017-11-07 15:40:00
133707    39268    742    2017-11-07 01:34:00    2017-11-07 01:34:00
133708    39268    844    2017-11-07 13:59:00    2017-11-07 13:59:00
133709    39268    764    2017-11-07 01:26:00    2017-11-07 01:26:00
133710    39269    961    2017-11-07 09:45:00    2017-11-07 09:45:00
133711    39269    509    2017-11-07 07:21:00    2017-11-07 07:21:00
133712    39269    564    2017-11-07 14:49:00    2017-11-07 14:49:00
133713    39269    654    2017-11-07 02:39:00    2017-11-07 02:39:00
133714    39269    834    2017-11-07 16:39:00    2017-11-07 16:39:00
133715    39270    875    2017-11-07 04:59:00    2017-11-07 04:59:00
133716    39270    760    2017-11-07 04:55:00    2017-11-07 04:55:00
133717    39270    624    2017-11-07 04:30:00    2017-11-07 04:30:00
133718    39270    953    2017-11-07 10:31:00    2017-11-07 10:31:00
133719    39270    592    2017-11-07 21:25:00    2017-11-07 21:25:00
133720    39271    794    2017-11-07 02:08:00    2017-11-07 02:08:00
133721    39271    544    2017-11-07 19:20:00    2017-11-07 19:20:00
133722    39271    787    2017-11-07 07:32:00    2017-11-07 07:32:00
133723    39271    814    2017-11-07 03:43:00    2017-11-07 03:43:00
133724    39271    834    2017-11-07 16:05:00    2017-11-07 16:05:00
133725    39272    601    2017-11-07 22:25:00    2017-11-07 22:25:00
133726    39272    526    2017-11-07 14:26:00    2017-11-07 14:26:00
133727    39272    538    2017-11-07 07:35:00    2017-11-07 07:35:00
133728    39272    808    2017-11-07 22:36:00    2017-11-07 22:36:00
133729    39272    696    2017-11-07 07:21:00    2017-11-07 07:21:00
133730    39273    837    2017-11-07 20:04:00    2017-11-07 20:04:00
133731    39273    770    2017-11-07 17:00:00    2017-11-07 17:00:00
133732    39273    884    2017-11-07 11:44:00    2017-11-07 11:44:00
133733    39273    602    2017-11-07 23:32:00    2017-11-07 23:32:00
133734    39273    530    2017-11-07 16:26:00    2017-11-07 16:26:00
133735    39274    744    2017-11-07 15:31:00    2017-11-07 15:31:00
133736    39274    571    2017-11-07 16:46:00    2017-11-07 16:46:00
133737    39274    707    2017-11-07 11:54:00    2017-11-07 11:54:00
133738    39274    675    2017-11-07 10:47:00    2017-11-07 10:47:00
133739    39274    534    2017-11-07 15:56:00    2017-11-07 15:56:00
133740    39275    512    2017-11-07 03:28:00    2017-11-07 03:28:00
133741    39275    909    2017-11-07 10:05:00    2017-11-07 10:05:00
133742    39275    852    2017-11-07 22:03:00    2017-11-07 22:03:00
133743    39275    743    2017-11-07 14:38:00    2017-11-07 14:38:00
133744    39275    496    2017-11-07 06:29:00    2017-11-07 06:29:00
133745    39276    839    2017-11-07 19:55:00    2017-11-07 19:55:00
133746    39276    623    2017-11-07 22:04:00    2017-11-07 22:04:00
133747    39276    816    2017-11-07 09:48:00    2017-11-07 09:48:00
133748    39276    864    2017-11-07 19:59:00    2017-11-07 19:59:00
133749    39276    940    2017-11-07 06:41:00    2017-11-07 06:41:00
133750    39277    467    2017-11-07 08:51:00    2017-11-07 08:51:00
133751    39277    705    2017-11-07 11:41:00    2017-11-07 11:41:00
133752    39277    464    2017-11-07 22:44:00    2017-11-07 22:44:00
133753    39277    740    2017-11-07 09:22:00    2017-11-07 09:22:00
133754    39277    480    2017-11-07 12:09:00    2017-11-07 12:09:00
133755    39278    856    2017-11-07 22:37:00    2017-11-07 22:37:00
133756    39278    539    2017-11-07 19:22:00    2017-11-07 19:22:00
133757    39278    502    2017-11-07 14:30:00    2017-11-07 14:30:00
133758    39278    884    2017-11-07 16:58:00    2017-11-07 16:58:00
133759    39278    952    2017-11-07 08:19:00    2017-11-07 08:19:00
133760    39279    535    2017-11-07 02:46:00    2017-11-07 02:46:00
133761    39279    474    2017-11-07 10:37:00    2017-11-07 10:37:00
133762    39279    764    2017-11-07 06:50:00    2017-11-07 06:50:00
133763    39279    920    2017-11-07 13:52:00    2017-11-07 13:52:00
133764    39279    845    2017-11-07 20:01:00    2017-11-07 20:01:00
133765    39280    825    2017-11-07 23:09:00    2017-11-07 23:09:00
133766    39280    785    2017-11-07 04:47:00    2017-11-07 04:47:00
133767    39280    721    2017-11-07 17:30:00    2017-11-07 17:30:00
133768    39280    558    2017-11-07 20:49:00    2017-11-07 20:49:00
133769    39280    534    2017-11-07 07:55:00    2017-11-07 07:55:00
133770    39281    875    2017-11-07 07:00:00    2017-11-07 07:00:00
133771    39281    897    2017-11-07 23:30:00    2017-11-07 23:30:00
133772    39281    911    2017-11-07 04:06:00    2017-11-07 04:06:00
133773    39281    890    2017-11-07 12:06:00    2017-11-07 12:06:00
133774    39281    681    2017-11-07 12:07:00    2017-11-07 12:07:00
133775    39282    903    2017-11-07 11:37:00    2017-11-07 11:37:00
133776    39282    807    2017-11-07 13:33:00    2017-11-07 13:33:00
133777    39282    959    2017-11-07 20:33:00    2017-11-07 20:33:00
133778    39282    668    2017-11-07 16:15:00    2017-11-07 16:15:00
133779    39282    780    2017-11-07 13:58:00    2017-11-07 13:58:00
133780    39283    859    2017-11-07 05:00:00    2017-11-07 05:00:00
133781    39283    830    2017-11-07 02:30:00    2017-11-07 02:30:00
133782    39283    604    2017-11-07 09:41:00    2017-11-07 09:41:00
133783    39283    764    2017-11-07 08:03:00    2017-11-07 08:03:00
133784    39283    658    2017-11-07 19:31:00    2017-11-07 19:31:00
133785    39284    540    2017-11-07 22:30:00    2017-11-07 22:30:00
133786    39284    896    2017-11-07 02:52:00    2017-11-07 02:52:00
133787    39284    591    2017-11-07 02:13:00    2017-11-07 02:13:00
133788    39284    955    2017-11-07 07:45:00    2017-11-07 07:45:00
133789    39284    774    2017-11-07 20:18:00    2017-11-07 20:18:00
133790    39285    784    2017-11-07 13:05:00    2017-11-07 13:05:00
133791    39285    553    2017-11-07 13:42:00    2017-11-07 13:42:00
133792    39285    685    2017-11-07 07:06:00    2017-11-07 07:06:00
133793    39285    829    2017-11-07 18:06:00    2017-11-07 18:06:00
133794    39285    669    2017-11-07 08:36:00    2017-11-07 08:36:00
133795    39286    762    2017-11-07 08:01:00    2017-11-07 08:01:00
133796    39286    696    2017-11-07 22:34:00    2017-11-07 22:34:00
133797    39286    754    2017-11-07 07:13:00    2017-11-07 07:13:00
133798    39286    829    2017-11-07 22:21:00    2017-11-07 22:21:00
133799    39286    620    2017-11-07 09:28:00    2017-11-07 09:28:00
133800    39287    772    2017-11-07 22:28:00    2017-11-07 22:28:00
133801    39287    483    2017-11-07 12:49:00    2017-11-07 12:49:00
133802    39287    892    2017-11-07 22:56:00    2017-11-07 22:56:00
133803    39287    506    2017-11-07 20:47:00    2017-11-07 20:47:00
133804    39287    724    2017-11-07 15:27:00    2017-11-07 15:27:00
133805    39288    750    2017-11-07 13:12:00    2017-11-07 13:12:00
133806    39288    684    2017-11-07 21:47:00    2017-11-07 21:47:00
133807    39288    561    2017-11-07 23:21:00    2017-11-07 23:21:00
133808    39288    816    2017-11-07 11:26:00    2017-11-07 11:26:00
133809    39288    942    2017-11-07 10:03:00    2017-11-07 10:03:00
133810    39289    529    2017-11-07 16:49:00    2017-11-07 16:49:00
133811    39289    894    2017-11-07 04:06:00    2017-11-07 04:06:00
133812    39289    837    2017-11-07 16:54:00    2017-11-07 16:54:00
133813    39289    935    2017-11-07 13:51:00    2017-11-07 13:51:00
133814    39289    709    2017-11-07 03:42:00    2017-11-07 03:42:00
133815    39290    796    2017-11-07 02:02:00    2017-11-07 02:02:00
133816    39290    768    2017-11-07 09:05:00    2017-11-07 09:05:00
133817    39290    725    2017-11-07 02:09:00    2017-11-07 02:09:00
133818    39290    721    2017-11-07 14:53:00    2017-11-07 14:53:00
133819    39290    953    2017-11-07 18:36:00    2017-11-07 18:36:00
133820    39291    685    2017-11-07 18:21:00    2017-11-07 18:21:00
133821    39291    933    2017-11-07 15:09:00    2017-11-07 15:09:00
133822    39291    586    2017-11-07 11:50:00    2017-11-07 11:50:00
133823    39291    689    2017-11-07 02:40:00    2017-11-07 02:40:00
133824    39291    648    2017-11-07 18:20:00    2017-11-07 18:20:00
133825    39292    772    2017-11-07 10:11:00    2017-11-07 10:11:00
133826    39292    598    2017-11-07 07:56:00    2017-11-07 07:56:00
133827    39292    565    2017-11-07 21:02:00    2017-11-07 21:02:00
133828    39292    545    2017-11-07 11:15:00    2017-11-07 11:15:00
133829    39292    538    2017-11-07 03:04:00    2017-11-07 03:04:00
133830    39293    757    2017-11-07 17:56:00    2017-11-07 17:56:00
133831    39293    639    2017-11-07 16:01:00    2017-11-07 16:01:00
133832    39293    661    2017-11-07 04:56:00    2017-11-07 04:56:00
133833    39293    570    2017-11-07 22:55:00    2017-11-07 22:55:00
133834    39293    744    2017-11-07 08:57:00    2017-11-07 08:57:00
133835    39294    821    2017-11-07 16:09:00    2017-11-07 16:09:00
133836    39294    889    2017-11-07 06:56:00    2017-11-07 06:56:00
133837    39294    797    2017-11-07 01:48:00    2017-11-07 01:48:00
133838    39294    552    2017-11-07 04:24:00    2017-11-07 04:24:00
133839    39294    499    2017-11-07 02:46:00    2017-11-07 02:46:00
133840    39295    693    2017-11-07 11:23:00    2017-11-07 11:23:00
133841    39295    548    2017-11-07 22:42:00    2017-11-07 22:42:00
133842    39295    860    2017-11-07 12:29:00    2017-11-07 12:29:00
133843    39295    493    2017-11-07 14:00:00    2017-11-07 14:00:00
133844    39295    604    2017-11-07 03:01:00    2017-11-07 03:01:00
133845    39296    815    2017-11-08 23:03:00    2017-11-08 23:03:00
133846    39296    544    2017-11-08 22:43:00    2017-11-08 22:43:00
133847    39296    507    2017-11-08 19:43:00    2017-11-08 19:43:00
133848    39296    504    2017-11-08 15:20:00    2017-11-08 15:20:00
133849    39296    728    2017-11-08 17:43:00    2017-11-08 17:43:00
133850    39297    660    2017-11-08 07:24:00    2017-11-08 07:24:00
133851    39297    906    2017-11-08 18:31:00    2017-11-08 18:31:00
133852    39297    933    2017-11-08 04:23:00    2017-11-08 04:23:00
133853    39297    823    2017-11-08 21:12:00    2017-11-08 21:12:00
133854    39297    726    2017-11-08 18:23:00    2017-11-08 18:23:00
133855    39298    760    2017-11-08 08:49:00    2017-11-08 08:49:00
133856    39298    823    2017-11-08 05:35:00    2017-11-08 05:35:00
133857    39298    639    2017-11-08 01:28:00    2017-11-08 01:28:00
133858    39298    609    2017-11-08 05:53:00    2017-11-08 05:53:00
133859    39298    734    2017-11-08 14:07:00    2017-11-08 14:07:00
133860    39299    703    2017-11-08 14:30:00    2017-11-08 14:30:00
133861    39299    811    2017-11-08 05:03:00    2017-11-08 05:03:00
133862    39299    818    2017-11-08 21:10:00    2017-11-08 21:10:00
133863    39299    773    2017-11-08 12:13:00    2017-11-08 12:13:00
133864    39299    609    2017-11-08 03:55:00    2017-11-08 03:55:00
133865    39300    745    2017-11-08 11:54:00    2017-11-08 11:54:00
133866    39300    723    2017-11-08 05:15:00    2017-11-08 05:15:00
133867    39300    795    2017-11-08 08:24:00    2017-11-08 08:24:00
133868    39300    571    2017-11-08 22:34:00    2017-11-08 22:34:00
133869    39300    556    2017-11-08 19:57:00    2017-11-08 19:57:00
133870    39301    887    2017-11-08 12:50:00    2017-11-08 12:50:00
133871    39301    871    2017-11-08 05:27:00    2017-11-08 05:27:00
133872    39301    638    2017-11-08 23:35:00    2017-11-08 23:35:00
133873    39301    578    2017-11-08 14:26:00    2017-11-08 14:26:00
133874    39301    691    2017-11-08 19:51:00    2017-11-08 19:51:00
133875    39302    944    2017-11-08 23:04:00    2017-11-08 23:04:00
133876    39302    946    2017-11-08 20:32:00    2017-11-08 20:32:00
133877    39302    704    2017-11-08 02:02:00    2017-11-08 02:02:00
133878    39302    569    2017-11-08 21:18:00    2017-11-08 21:18:00
133879    39302    699    2017-11-08 05:03:00    2017-11-08 05:03:00
133880    39303    576    2017-11-08 03:02:00    2017-11-08 03:02:00
133881    39303    789    2017-11-08 07:13:00    2017-11-08 07:13:00
133882    39303    584    2017-11-08 03:18:00    2017-11-08 03:18:00
133883    39303    790    2017-11-08 16:40:00    2017-11-08 16:40:00
133884    39303    537    2017-11-08 10:50:00    2017-11-08 10:50:00
133885    39304    587    2017-11-08 04:53:00    2017-11-08 04:53:00
133886    39304    502    2017-11-08 19:52:00    2017-11-08 19:52:00
133887    39304    583    2017-11-08 23:44:00    2017-11-08 23:44:00
133888    39304    463    2017-11-08 07:25:00    2017-11-08 07:25:00
133889    39304    904    2017-11-08 09:53:00    2017-11-08 09:53:00
133890    39305    500    2017-11-08 12:11:00    2017-11-08 12:11:00
133891    39305    907    2017-11-08 12:04:00    2017-11-08 12:04:00
133892    39305    765    2017-11-08 21:25:00    2017-11-08 21:25:00
133893    39305    530    2017-11-08 12:29:00    2017-11-08 12:29:00
133894    39305    698    2017-11-08 22:58:00    2017-11-08 22:58:00
133895    39306    635    2017-11-08 02:13:00    2017-11-08 02:13:00
133896    39306    827    2017-11-08 15:49:00    2017-11-08 15:49:00
133897    39306    820    2017-11-08 13:10:00    2017-11-08 13:10:00
133898    39306    849    2017-11-08 17:50:00    2017-11-08 17:50:00
133899    39306    848    2017-11-08 04:08:00    2017-11-08 04:08:00
133900    39307    622    2017-11-08 05:41:00    2017-11-08 05:41:00
133901    39307    518    2017-11-08 06:24:00    2017-11-08 06:24:00
133902    39307    843    2017-11-08 01:50:00    2017-11-08 01:50:00
133903    39307    843    2017-11-08 02:01:00    2017-11-08 02:01:00
133904    39307    863    2017-11-08 08:10:00    2017-11-08 08:10:00
133905    39308    585    2017-11-08 19:39:00    2017-11-08 19:39:00
133906    39308    604    2017-11-08 14:09:00    2017-11-08 14:09:00
133907    39308    942    2017-11-08 17:18:00    2017-11-08 17:18:00
133908    39308    847    2017-11-08 08:01:00    2017-11-08 08:01:00
133909    39308    516    2017-11-08 12:12:00    2017-11-08 12:12:00
133910    39309    952    2017-11-08 01:27:00    2017-11-08 01:27:00
133911    39309    912    2017-11-08 13:38:00    2017-11-08 13:38:00
133912    39309    516    2017-11-08 23:24:00    2017-11-08 23:24:00
133913    39309    947    2017-11-08 16:23:00    2017-11-08 16:23:00
133914    39309    478    2017-11-08 12:11:00    2017-11-08 12:11:00
133915    39310    710    2017-11-08 14:12:00    2017-11-08 14:12:00
133916    39310    559    2017-11-08 10:17:00    2017-11-08 10:17:00
133917    39310    707    2017-11-08 05:30:00    2017-11-08 05:30:00
133918    39310    674    2017-11-08 19:26:00    2017-11-08 19:26:00
133919    39310    721    2017-11-08 10:58:00    2017-11-08 10:58:00
133920    39311    875    2017-11-08 03:20:00    2017-11-08 03:20:00
133921    39311    581    2017-11-08 21:46:00    2017-11-08 21:46:00
133922    39311    498    2017-11-08 17:15:00    2017-11-08 17:15:00
133923    39311    798    2017-11-08 18:51:00    2017-11-08 18:51:00
133924    39311    847    2017-11-08 20:39:00    2017-11-08 20:39:00
133925    39312    718    2017-11-08 04:41:00    2017-11-08 04:41:00
133926    39312    805    2017-11-08 05:59:00    2017-11-08 05:59:00
133927    39312    797    2017-11-08 14:51:00    2017-11-08 14:51:00
133928    39312    737    2017-11-08 18:50:00    2017-11-08 18:50:00
133929    39312    777    2017-11-08 22:51:00    2017-11-08 22:51:00
133930    39313    767    2017-11-08 12:19:00    2017-11-08 12:19:00
133931    39313    927    2017-11-08 12:57:00    2017-11-08 12:57:00
133932    39313    809    2017-11-08 15:26:00    2017-11-08 15:26:00
133933    39313    521    2017-11-08 21:14:00    2017-11-08 21:14:00
133934    39313    494    2017-11-08 10:15:00    2017-11-08 10:15:00
133935    39314    666    2017-11-08 21:32:00    2017-11-08 21:32:00
133936    39314    946    2017-11-08 21:13:00    2017-11-08 21:13:00
133937    39314    758    2017-11-08 05:12:00    2017-11-08 05:12:00
133938    39314    931    2017-11-08 03:48:00    2017-11-08 03:48:00
133939    39314    954    2017-11-08 12:00:00    2017-11-08 12:00:00
133940    39315    873    2017-11-08 14:28:00    2017-11-08 14:28:00
133941    39315    954    2017-11-08 05:28:00    2017-11-08 05:28:00
133942    39315    862    2017-11-08 19:02:00    2017-11-08 19:02:00
133943    39315    896    2017-11-08 16:29:00    2017-11-08 16:29:00
133944    39315    945    2017-11-08 17:50:00    2017-11-08 17:50:00
133945    39316    924    2017-11-08 22:14:00    2017-11-08 22:14:00
133946    39316    720    2017-11-08 19:43:00    2017-11-08 19:43:00
133947    39316    625    2017-11-08 08:29:00    2017-11-08 08:29:00
133948    39316    687    2017-11-08 20:00:00    2017-11-08 20:00:00
133949    39316    526    2017-11-08 21:06:00    2017-11-08 21:06:00
133950    39317    930    2017-11-08 18:33:00    2017-11-08 18:33:00
133951    39317    615    2017-11-08 12:19:00    2017-11-08 12:19:00
133952    39317    589    2017-11-08 16:52:00    2017-11-08 16:52:00
133953    39317    734    2017-11-08 22:46:00    2017-11-08 22:46:00
133954    39317    726    2017-11-08 11:47:00    2017-11-08 11:47:00
133955    39318    714    2017-11-08 18:17:00    2017-11-08 18:17:00
133956    39318    599    2017-11-08 01:16:00    2017-11-08 01:16:00
133957    39318    796    2017-11-08 09:19:00    2017-11-08 09:19:00
133958    39318    619    2017-11-08 14:03:00    2017-11-08 14:03:00
133959    39318    881    2017-11-08 10:04:00    2017-11-08 10:04:00
133960    39319    506    2017-11-08 02:36:00    2017-11-08 02:36:00
133961    39319    515    2017-11-08 03:15:00    2017-11-08 03:15:00
133962    39319    790    2017-11-08 22:14:00    2017-11-08 22:14:00
133963    39319    557    2017-11-08 05:33:00    2017-11-08 05:33:00
133964    39319    916    2017-11-08 20:57:00    2017-11-08 20:57:00
133965    39320    631    2017-11-08 19:54:00    2017-11-08 19:54:00
133966    39320    725    2017-11-08 15:11:00    2017-11-08 15:11:00
133967    39320    785    2017-11-08 12:58:00    2017-11-08 12:58:00
133968    39320    498    2017-11-08 14:53:00    2017-11-08 14:53:00
133969    39320    699    2017-11-08 13:03:00    2017-11-08 13:03:00
133970    39321    617    2017-11-08 12:38:00    2017-11-08 12:38:00
133971    39321    616    2017-11-08 01:12:00    2017-11-08 01:12:00
133972    39321    943    2017-11-08 06:03:00    2017-11-08 06:03:00
133973    39321    764    2017-11-08 01:46:00    2017-11-08 01:46:00
133974    39321    681    2017-11-08 07:50:00    2017-11-08 07:50:00
133975    39322    765    2017-11-08 07:04:00    2017-11-08 07:04:00
133976    39322    469    2017-11-08 05:27:00    2017-11-08 05:27:00
133977    39322    507    2017-11-08 15:19:00    2017-11-08 15:19:00
133978    39322    875    2017-11-08 10:48:00    2017-11-08 10:48:00
133979    39322    813    2017-11-08 08:38:00    2017-11-08 08:38:00
133980    39323    829    2017-11-08 11:20:00    2017-11-08 11:20:00
133981    39323    691    2017-11-08 16:12:00    2017-11-08 16:12:00
133982    39323    623    2017-11-08 05:25:00    2017-11-08 05:25:00
133983    39323    520    2017-11-08 23:39:00    2017-11-08 23:39:00
133984    39323    796    2017-11-08 05:38:00    2017-11-08 05:38:00
133985    39324    943    2017-11-08 06:19:00    2017-11-08 06:19:00
133986    39324    818    2017-11-08 13:00:00    2017-11-08 13:00:00
133987    39324    739    2017-11-08 07:17:00    2017-11-08 07:17:00
133988    39324    762    2017-11-08 20:08:00    2017-11-08 20:08:00
133989    39324    889    2017-11-08 09:52:00    2017-11-08 09:52:00
133990    39325    758    2017-11-08 22:36:00    2017-11-08 22:36:00
133991    39325    587    2017-11-08 01:28:00    2017-11-08 01:28:00
133992    39325    548    2017-11-08 11:44:00    2017-11-08 11:44:00
133993    39325    747    2017-11-08 09:21:00    2017-11-08 09:21:00
133994    39325    792    2017-11-08 22:53:00    2017-11-08 22:53:00
133995    39326    617    2017-11-08 13:54:00    2017-11-08 13:54:00
133996    39326    530    2017-11-08 13:31:00    2017-11-08 13:31:00
133997    39326    708    2017-11-08 18:53:00    2017-11-08 18:53:00
133998    39326    891    2017-11-08 21:55:00    2017-11-08 21:55:00
133999    39326    598    2017-11-08 12:03:00    2017-11-08 12:03:00
134000    39327    587    2017-11-08 05:40:00    2017-11-08 05:40:00
134001    39327    725    2017-11-08 16:04:00    2017-11-08 16:04:00
134002    39327    819    2017-11-08 07:43:00    2017-11-08 07:43:00
134003    39327    614    2017-11-08 09:41:00    2017-11-08 09:41:00
134004    39327    556    2017-11-08 20:59:00    2017-11-08 20:59:00
134005    39328    658    2017-11-08 21:20:00    2017-11-08 21:20:00
134006    39328    741    2017-11-08 12:07:00    2017-11-08 12:07:00
134007    39328    694    2017-11-08 17:41:00    2017-11-08 17:41:00
134008    39328    626    2017-11-08 23:00:00    2017-11-08 23:00:00
134009    39328    877    2017-11-08 09:52:00    2017-11-08 09:52:00
134010    39329    706    2017-11-08 13:20:00    2017-11-08 13:20:00
134011    39329    941    2017-11-08 19:14:00    2017-11-08 19:14:00
134012    39329    501    2017-11-08 19:26:00    2017-11-08 19:26:00
134013    39329    823    2017-11-08 09:49:00    2017-11-08 09:49:00
134014    39329    763    2017-11-08 05:24:00    2017-11-08 05:24:00
134015    39330    669    2017-11-08 10:28:00    2017-11-08 10:28:00
134016    39330    545    2017-11-08 23:41:00    2017-11-08 23:41:00
134017    39330    550    2017-11-08 11:21:00    2017-11-08 11:21:00
134018    39330    853    2017-11-09 00:00:00    2017-11-09 00:00:00
134019    39330    708    2017-11-08 18:22:00    2017-11-08 18:22:00
134020    39331    568    2017-11-08 04:16:00    2017-11-08 04:16:00
134021    39331    764    2017-11-08 17:36:00    2017-11-08 17:36:00
134022    39331    948    2017-11-08 17:34:00    2017-11-08 17:34:00
134023    39331    647    2017-11-08 19:40:00    2017-11-08 19:40:00
134024    39331    875    2017-11-08 04:24:00    2017-11-08 04:24:00
134025    39332    915    2017-11-08 21:48:00    2017-11-08 21:48:00
134026    39332    807    2017-11-08 18:32:00    2017-11-08 18:32:00
134027    39332    849    2017-11-08 22:57:00    2017-11-08 22:57:00
134028    39332    702    2017-11-08 06:07:00    2017-11-08 06:07:00
134029    39332    566    2017-11-08 17:45:00    2017-11-08 17:45:00
134030    39333    650    2017-11-08 08:57:00    2017-11-08 08:57:00
134031    39333    668    2017-11-08 11:58:00    2017-11-08 11:58:00
134032    39333    609    2017-11-08 16:25:00    2017-11-08 16:25:00
134033    39333    890    2017-11-08 06:37:00    2017-11-08 06:37:00
134034    39333    784    2017-11-08 08:39:00    2017-11-08 08:39:00
134035    39334    844    2017-11-08 02:26:00    2017-11-08 02:26:00
134036    39334    767    2017-11-08 03:05:00    2017-11-08 03:05:00
134037    39334    923    2017-11-08 13:17:00    2017-11-08 13:17:00
134038    39334    751    2017-11-08 13:56:00    2017-11-08 13:56:00
134039    39334    939    2017-11-08 21:06:00    2017-11-08 21:06:00
134040    39335    781    2017-11-08 03:12:00    2017-11-08 03:12:00
134041    39335    478    2017-11-08 03:18:00    2017-11-08 03:18:00
134042    39335    688    2017-11-08 16:48:00    2017-11-08 16:48:00
134043    39335    732    2017-11-08 20:19:00    2017-11-08 20:19:00
134044    39335    715    2017-11-08 03:06:00    2017-11-08 03:06:00
134045    39336    891    2017-11-08 19:42:00    2017-11-08 19:42:00
134046    39336    939    2017-11-08 20:42:00    2017-11-08 20:42:00
134047    39336    821    2017-11-08 21:11:00    2017-11-08 21:11:00
134048    39336    500    2017-11-08 10:29:00    2017-11-08 10:29:00
134049    39336    496    2017-11-08 22:23:00    2017-11-08 22:23:00
134050    39337    869    2017-11-08 12:41:00    2017-11-08 12:41:00
134051    39337    896    2017-11-08 05:40:00    2017-11-08 05:40:00
134052    39337    595    2017-11-08 06:24:00    2017-11-08 06:24:00
134053    39337    824    2017-11-08 23:56:00    2017-11-08 23:56:00
134054    39337    605    2017-11-08 08:49:00    2017-11-08 08:49:00
134055    39338    522    2017-11-08 09:27:00    2017-11-08 09:27:00
134056    39338    693    2017-11-08 02:40:00    2017-11-08 02:40:00
134057    39338    635    2017-11-08 04:57:00    2017-11-08 04:57:00
134058    39338    910    2017-11-08 23:24:00    2017-11-08 23:24:00
134059    39338    516    2017-11-08 18:15:00    2017-11-08 18:15:00
134060    39339    884    2017-11-08 20:32:00    2017-11-08 20:32:00
134061    39339    957    2017-11-08 10:47:00    2017-11-08 10:47:00
134062    39339    832    2017-11-08 23:26:00    2017-11-08 23:26:00
134063    39339    681    2017-11-08 10:55:00    2017-11-08 10:55:00
134064    39339    892    2017-11-08 09:14:00    2017-11-08 09:14:00
134065    39340    771    2017-11-08 15:39:00    2017-11-08 15:39:00
134066    39340    621    2017-11-08 03:54:00    2017-11-08 03:54:00
134067    39340    503    2017-11-08 02:28:00    2017-11-08 02:28:00
134068    39340    746    2017-11-08 10:59:00    2017-11-08 10:59:00
134069    39340    641    2017-11-08 10:07:00    2017-11-08 10:07:00
134070    39341    512    2017-11-08 19:21:00    2017-11-08 19:21:00
134071    39341    944    2017-11-08 05:56:00    2017-11-08 05:56:00
134072    39341    899    2017-11-08 05:29:00    2017-11-08 05:29:00
134073    39341    720    2017-11-08 02:29:00    2017-11-08 02:29:00
134074    39341    687    2017-11-08 09:12:00    2017-11-08 09:12:00
134075    39342    724    2017-11-08 07:37:00    2017-11-08 07:37:00
134076    39342    755    2017-11-08 08:37:00    2017-11-08 08:37:00
134077    39342    912    2017-11-08 04:05:00    2017-11-08 04:05:00
134078    39342    826    2017-11-08 18:03:00    2017-11-08 18:03:00
134079    39342    679    2017-11-08 12:05:00    2017-11-08 12:05:00
134080    39343    712    2017-11-08 23:10:00    2017-11-08 23:10:00
134081    39343    629    2017-11-08 11:37:00    2017-11-08 11:37:00
134082    39343    944    2017-11-08 08:07:00    2017-11-08 08:07:00
134083    39343    893    2017-11-08 11:38:00    2017-11-08 11:38:00
134084    39343    639    2017-11-08 17:53:00    2017-11-08 17:53:00
134085    39344    723    2017-11-08 06:24:00    2017-11-08 06:24:00
134086    39344    521    2017-11-08 11:36:00    2017-11-08 11:36:00
134087    39344    797    2017-11-08 12:33:00    2017-11-08 12:33:00
134088    39344    705    2017-11-08 04:47:00    2017-11-08 04:47:00
134089    39344    607    2017-11-08 06:29:00    2017-11-08 06:29:00
134090    39345    677    2017-11-08 04:23:00    2017-11-08 04:23:00
134091    39345    518    2017-11-08 16:05:00    2017-11-08 16:05:00
134092    39345    921    2017-11-08 04:42:00    2017-11-08 04:42:00
134093    39345    730    2017-11-08 06:26:00    2017-11-08 06:26:00
134094    39345    735    2017-11-08 11:07:00    2017-11-08 11:07:00
134095    39346    672    2017-11-08 20:02:00    2017-11-08 20:02:00
134096    39346    687    2017-11-08 07:01:00    2017-11-08 07:01:00
134097    39346    525    2017-11-08 16:52:00    2017-11-08 16:52:00
134098    39346    498    2017-11-08 06:35:00    2017-11-08 06:35:00
134099    39346    732    2017-11-08 05:25:00    2017-11-08 05:25:00
134100    39347    617    2017-11-08 04:09:00    2017-11-08 04:09:00
134101    39347    814    2017-11-08 12:42:00    2017-11-08 12:42:00
134102    39347    955    2017-11-08 13:55:00    2017-11-08 13:55:00
134103    39347    937    2017-11-08 17:56:00    2017-11-08 17:56:00
134104    39347    828    2017-11-08 08:10:00    2017-11-08 08:10:00
134105    39348    877    2017-11-08 12:40:00    2017-11-08 12:40:00
134106    39348    722    2017-11-08 20:46:00    2017-11-08 20:46:00
134107    39348    476    2017-11-08 09:53:00    2017-11-08 09:53:00
134108    39348    850    2017-11-08 18:20:00    2017-11-08 18:20:00
134109    39348    668    2017-11-08 21:35:00    2017-11-08 21:35:00
134110    39349    563    2017-11-08 12:16:00    2017-11-08 12:16:00
134111    39349    791    2017-11-08 13:17:00    2017-11-08 13:17:00
134112    39349    892    2017-11-08 22:19:00    2017-11-08 22:19:00
134113    39349    488    2017-11-08 09:37:00    2017-11-08 09:37:00
134114    39349    716    2017-11-08 16:42:00    2017-11-08 16:42:00
134115    39350    643    2017-11-09 16:41:00    2017-11-09 16:41:00
134116    39350    637    2017-11-09 16:37:00    2017-11-09 16:37:00
134117    39350    585    2017-11-09 02:57:00    2017-11-09 02:57:00
134118    39350    568    2017-11-09 03:46:00    2017-11-09 03:46:00
134119    39350    682    2017-11-09 03:28:00    2017-11-09 03:28:00
134120    39351    577    2017-11-09 10:58:00    2017-11-09 10:58:00
134121    39351    766    2017-11-09 20:36:00    2017-11-09 20:36:00
134122    39351    939    2017-11-09 20:19:00    2017-11-09 20:19:00
134123    39351    793    2017-11-09 02:15:00    2017-11-09 02:15:00
134124    39351    881    2017-11-09 11:58:00    2017-11-09 11:58:00
134125    39352    513    2017-11-09 10:32:00    2017-11-09 10:32:00
134126    39352    562    2017-11-09 17:29:00    2017-11-09 17:29:00
134127    39352    878    2017-11-09 23:14:00    2017-11-09 23:14:00
134128    39352    642    2017-11-09 08:49:00    2017-11-09 08:49:00
134129    39352    624    2017-11-09 14:30:00    2017-11-09 14:30:00
134130    39353    531    2017-11-09 03:35:00    2017-11-09 03:35:00
134131    39353    601    2017-11-09 15:04:00    2017-11-09 15:04:00
134132    39353    942    2017-11-09 11:17:00    2017-11-09 11:17:00
134133    39353    862    2017-11-09 23:38:00    2017-11-09 23:38:00
134134    39353    560    2017-11-09 22:18:00    2017-11-09 22:18:00
134135    39354    726    2017-11-09 08:50:00    2017-11-09 08:50:00
134136    39354    492    2017-11-09 17:17:00    2017-11-09 17:17:00
134137    39354    781    2017-11-09 22:57:00    2017-11-09 22:57:00
134138    39354    676    2017-11-09 14:48:00    2017-11-09 14:48:00
134139    39354    638    2017-11-09 04:22:00    2017-11-09 04:22:00
134140    39355    611    2017-11-09 23:16:00    2017-11-09 23:16:00
134141    39355    626    2017-11-09 11:34:00    2017-11-09 11:34:00
134142    39355    707    2017-11-09 04:03:00    2017-11-09 04:03:00
134143    39355    705    2017-11-09 02:54:00    2017-11-09 02:54:00
134144    39355    466    2017-11-09 18:02:00    2017-11-09 18:02:00
134145    39356    607    2017-11-09 16:22:00    2017-11-09 16:22:00
134146    39356    796    2017-11-09 13:56:00    2017-11-09 13:56:00
134147    39356    802    2017-11-09 21:05:00    2017-11-09 21:05:00
134148    39356    547    2017-11-09 16:23:00    2017-11-09 16:23:00
134149    39356    764    2017-11-09 03:19:00    2017-11-09 03:19:00
134150    39357    682    2017-11-09 13:39:00    2017-11-09 13:39:00
134151    39357    549    2017-11-09 10:29:00    2017-11-09 10:29:00
134152    39357    660    2017-11-09 20:00:00    2017-11-09 20:00:00
134153    39357    751    2017-11-09 12:32:00    2017-11-09 12:32:00
134154    39357    935    2017-11-09 10:52:00    2017-11-09 10:52:00
134155    39358    530    2017-11-09 12:42:00    2017-11-09 12:42:00
134156    39358    690    2017-11-09 05:52:00    2017-11-09 05:52:00
134157    39358    677    2017-11-09 03:40:00    2017-11-09 03:40:00
134158    39358    814    2017-11-09 15:11:00    2017-11-09 15:11:00
134159    39358    734    2017-11-09 02:15:00    2017-11-09 02:15:00
134160    39359    739    2017-11-09 13:33:00    2017-11-09 13:33:00
134161    39359    483    2017-11-09 06:00:00    2017-11-09 06:00:00
134162    39359    771    2017-11-09 04:44:00    2017-11-09 04:44:00
134163    39359    759    2017-11-09 04:46:00    2017-11-09 04:46:00
134164    39359    900    2017-11-09 15:37:00    2017-11-09 15:37:00
134165    39360    479    2017-11-09 21:19:00    2017-11-09 21:19:00
134166    39360    858    2017-11-09 02:16:00    2017-11-09 02:16:00
134167    39360    505    2017-11-09 20:07:00    2017-11-09 20:07:00
134168    39360    886    2017-11-09 16:03:00    2017-11-09 16:03:00
134169    39360    625    2017-11-09 10:37:00    2017-11-09 10:37:00
134170    39361    710    2017-11-09 19:20:00    2017-11-09 19:20:00
134171    39361    579    2017-11-09 22:48:00    2017-11-09 22:48:00
134172    39361    928    2017-11-09 03:18:00    2017-11-09 03:18:00
134173    39361    518    2017-11-09 06:03:00    2017-11-09 06:03:00
134174    39361    790    2017-11-09 17:27:00    2017-11-09 17:27:00
134175    39362    946    2017-11-09 08:06:00    2017-11-09 08:06:00
134176    39362    603    2017-11-09 08:20:00    2017-11-09 08:20:00
134177    39362    795    2017-11-09 17:44:00    2017-11-09 17:44:00
134178    39362    898    2017-11-09 15:57:00    2017-11-09 15:57:00
134179    39362    480    2017-11-09 07:46:00    2017-11-09 07:46:00
134180    39363    533    2017-11-09 04:20:00    2017-11-09 04:20:00
134181    39363    909    2017-11-09 11:30:00    2017-11-09 11:30:00
134182    39363    783    2017-11-09 10:15:00    2017-11-09 10:15:00
134183    39363    514    2017-11-09 15:27:00    2017-11-09 15:27:00
134184    39363    768    2017-11-09 11:20:00    2017-11-09 11:20:00
134185    39364    753    2017-11-10 10:08:00    2017-11-10 10:08:00
134186    39364    640    2017-11-10 13:37:00    2017-11-10 13:37:00
134187    39364    509    2017-11-10 21:51:00    2017-11-10 21:51:00
134188    39364    878    2017-11-10 21:09:00    2017-11-10 21:09:00
134189    39364    506    2017-11-10 02:38:00    2017-11-10 02:38:00
134190    39365    695    2017-11-10 12:21:00    2017-11-10 12:21:00
134191    39365    610    2017-11-10 23:10:00    2017-11-10 23:10:00
134192    39365    907    2017-11-10 21:02:00    2017-11-10 21:02:00
134193    39365    816    2017-11-10 12:52:00    2017-11-10 12:52:00
134194    39365    893    2017-11-10 18:30:00    2017-11-10 18:30:00
134195    39366    868    2017-11-10 08:52:00    2017-11-10 08:52:00
134196    39366    686    2017-11-10 12:23:00    2017-11-10 12:23:00
134197    39366    487    2017-11-10 04:23:00    2017-11-10 04:23:00
134198    39366    513    2017-11-10 11:07:00    2017-11-10 11:07:00
134199    39366    840    2017-11-10 18:51:00    2017-11-10 18:51:00
134200    39367    619    2017-11-10 19:06:00    2017-11-10 19:06:00
134201    39367    682    2017-11-10 03:54:00    2017-11-10 03:54:00
134202    39367    943    2017-11-10 11:36:00    2017-11-10 11:36:00
134203    39367    854    2017-11-10 19:39:00    2017-11-10 19:39:00
134204    39367    750    2017-11-10 23:03:00    2017-11-10 23:03:00
134205    39368    500    2017-11-10 05:11:00    2017-11-10 05:11:00
134206    39368    920    2017-11-10 14:21:00    2017-11-10 14:21:00
134207    39368    959    2017-11-10 16:12:00    2017-11-10 16:12:00
134208    39368    803    2017-11-10 03:00:00    2017-11-10 03:00:00
134209    39368    848    2017-11-10 20:44:00    2017-11-10 20:44:00
134210    39369    758    2017-11-10 12:43:00    2017-11-10 12:43:00
134211    39369    746    2017-11-10 14:53:00    2017-11-10 14:53:00
134212    39369    562    2017-11-10 04:19:00    2017-11-10 04:19:00
134213    39369    732    2017-11-10 11:05:00    2017-11-10 11:05:00
134214    39369    603    2017-11-10 01:43:00    2017-11-10 01:43:00
134215    39370    739    2017-11-10 07:17:00    2017-11-10 07:17:00
134216    39370    849    2017-11-10 04:26:00    2017-11-10 04:26:00
134217    39370    908    2017-11-10 05:44:00    2017-11-10 05:44:00
134218    39370    663    2017-11-10 22:44:00    2017-11-10 22:44:00
134219    39370    548    2017-11-10 15:13:00    2017-11-10 15:13:00
134220    39371    671    2017-11-10 22:06:00    2017-11-10 22:06:00
134221    39371    700    2017-11-10 10:29:00    2017-11-10 10:29:00
134222    39371    705    2017-11-10 18:35:00    2017-11-10 18:35:00
134223    39371    651    2017-11-10 14:57:00    2017-11-10 14:57:00
134224    39371    643    2017-11-10 23:09:00    2017-11-10 23:09:00
134225    39372    779    2017-11-10 07:51:00    2017-11-10 07:51:00
134226    39372    837    2017-11-10 13:22:00    2017-11-10 13:22:00
134227    39372    477    2017-11-10 18:37:00    2017-11-10 18:37:00
134228    39372    730    2017-11-10 07:55:00    2017-11-10 07:55:00
134229    39372    863    2017-11-10 20:22:00    2017-11-10 20:22:00
134230    39373    502    2017-11-10 05:27:00    2017-11-10 05:27:00
134231    39373    771    2017-11-10 01:30:00    2017-11-10 01:30:00
134232    39373    855    2017-11-10 10:21:00    2017-11-10 10:21:00
134233    39373    467    2017-11-10 04:29:00    2017-11-10 04:29:00
134234    39373    893    2017-11-10 09:31:00    2017-11-10 09:31:00
134235    39374    474    2017-11-10 05:56:00    2017-11-10 05:56:00
134236    39374    566    2017-11-10 07:27:00    2017-11-10 07:27:00
134237    39374    558    2017-11-10 16:02:00    2017-11-10 16:02:00
134238    39374    472    2017-11-10 12:56:00    2017-11-10 12:56:00
134239    39374    697    2017-11-10 11:02:00    2017-11-10 11:02:00
134240    39375    713    2017-11-10 01:32:00    2017-11-10 01:32:00
134241    39375    634    2017-11-10 16:03:00    2017-11-10 16:03:00
134242    39375    463    2017-11-10 02:44:00    2017-11-10 02:44:00
134243    39375    930    2017-11-10 16:13:00    2017-11-10 16:13:00
134244    39375    695    2017-11-10 03:08:00    2017-11-10 03:08:00
134245    39376    589    2017-11-10 22:33:00    2017-11-10 22:33:00
134246    39376    525    2017-11-10 15:57:00    2017-11-10 15:57:00
134247    39376    847    2017-11-10 10:27:00    2017-11-10 10:27:00
134248    39376    696    2017-11-10 07:00:00    2017-11-10 07:00:00
134249    39376    892    2017-11-10 06:04:00    2017-11-10 06:04:00
134250    39377    793    2017-11-10 20:25:00    2017-11-10 20:25:00
134251    39377    757    2017-11-10 02:23:00    2017-11-10 02:23:00
134252    39377    730    2017-11-10 04:57:00    2017-11-10 04:57:00
134253    39377    769    2017-11-10 15:38:00    2017-11-10 15:38:00
134254    39377    635    2017-11-10 09:55:00    2017-11-10 09:55:00
134255    39378    539    2017-11-10 14:58:00    2017-11-10 14:58:00
134256    39378    669    2017-11-10 01:34:00    2017-11-10 01:34:00
134257    39378    761    2017-11-10 20:37:00    2017-11-10 20:37:00
134258    39378    501    2017-11-10 07:30:00    2017-11-10 07:30:00
134259    39378    594    2017-11-10 23:51:00    2017-11-10 23:51:00
134260    39379    518    2017-11-10 19:04:00    2017-11-10 19:04:00
134261    39379    883    2017-11-10 21:44:00    2017-11-10 21:44:00
134262    39379    874    2017-11-10 17:42:00    2017-11-10 17:42:00
134263    39379    503    2017-11-10 22:45:00    2017-11-10 22:45:00
134264    39379    679    2017-11-10 14:33:00    2017-11-10 14:33:00
134265    39380    840    2017-11-10 04:10:00    2017-11-10 04:10:00
134266    39380    473    2017-11-10 17:05:00    2017-11-10 17:05:00
134267    39380    611    2017-11-10 12:46:00    2017-11-10 12:46:00
134268    39380    813    2017-11-10 13:52:00    2017-11-10 13:52:00
134269    39380    516    2017-11-10 13:19:00    2017-11-10 13:19:00
134270    39381    480    2017-11-10 09:51:00    2017-11-10 09:51:00
134271    39381    666    2017-11-10 15:31:00    2017-11-10 15:31:00
134272    39381    472    2017-11-10 02:11:00    2017-11-10 02:11:00
134273    39381    675    2017-11-10 17:11:00    2017-11-10 17:11:00
134274    39381    694    2017-11-10 20:24:00    2017-11-10 20:24:00
134275    39382    706    2017-11-10 08:31:00    2017-11-10 08:31:00
134276    39382    758    2017-11-10 20:33:00    2017-11-10 20:33:00
134277    39382    737    2017-11-10 14:23:00    2017-11-10 14:23:00
134278    39382    832    2017-11-10 09:09:00    2017-11-10 09:09:00
134279    39382    918    2017-11-10 07:21:00    2017-11-10 07:21:00
134280    39383    712    2017-11-10 09:28:00    2017-11-10 09:28:00
134281    39383    519    2017-11-10 17:02:00    2017-11-10 17:02:00
134282    39383    953    2017-11-10 15:14:00    2017-11-10 15:14:00
134283    39383    737    2017-11-10 14:49:00    2017-11-10 14:49:00
134284    39383    743    2017-11-10 03:26:00    2017-11-10 03:26:00
134285    39384    517    2017-11-10 18:04:00    2017-11-10 18:04:00
134286    39384    466    2017-11-10 21:58:00    2017-11-10 21:58:00
134287    39384    901    2017-11-10 06:43:00    2017-11-10 06:43:00
134288    39384    470    2017-11-10 12:09:00    2017-11-10 12:09:00
134289    39384    790    2017-11-10 06:57:00    2017-11-10 06:57:00
134290    39385    811    2017-11-10 17:14:00    2017-11-10 17:14:00
134291    39385    914    2017-11-10 23:46:00    2017-11-10 23:46:00
134292    39385    788    2017-11-10 22:46:00    2017-11-10 22:46:00
134293    39385    660    2017-11-10 20:46:00    2017-11-10 20:46:00
134294    39385    702    2017-11-10 16:26:00    2017-11-10 16:26:00
134295    39386    642    2017-11-10 14:19:00    2017-11-10 14:19:00
134296    39386    896    2017-11-10 13:22:00    2017-11-10 13:22:00
134297    39386    928    2017-11-10 20:00:00    2017-11-10 20:00:00
134298    39386    593    2017-11-10 06:16:00    2017-11-10 06:16:00
134299    39386    750    2017-11-10 22:32:00    2017-11-10 22:32:00
134300    39387    907    2017-11-10 10:35:00    2017-11-10 10:35:00
134301    39387    785    2017-11-10 09:18:00    2017-11-10 09:18:00
134302    39387    626    2017-11-10 19:01:00    2017-11-10 19:01:00
134303    39387    654    2017-11-10 23:21:00    2017-11-10 23:21:00
134304    39387    703    2017-11-10 07:24:00    2017-11-10 07:24:00
134305    39388    948    2017-11-10 21:00:00    2017-11-10 21:00:00
134306    39388    867    2017-11-10 19:33:00    2017-11-10 19:33:00
134307    39388    811    2017-11-10 21:24:00    2017-11-10 21:24:00
134308    39388    468    2017-11-10 13:58:00    2017-11-10 13:58:00
134309    39388    595    2017-11-10 09:26:00    2017-11-10 09:26:00
134310    39389    570    2017-11-10 16:08:00    2017-11-10 16:08:00
134311    39389    827    2017-11-10 01:21:00    2017-11-10 01:21:00
134312    39389    872    2017-11-10 15:46:00    2017-11-10 15:46:00
134313    39389    792    2017-11-10 23:41:00    2017-11-10 23:41:00
134314    39389    680    2017-11-10 17:06:00    2017-11-10 17:06:00
134315    39390    531    2017-11-10 20:48:00    2017-11-10 20:48:00
134316    39390    960    2017-11-10 13:15:00    2017-11-10 13:15:00
134317    39390    933    2017-11-10 05:07:00    2017-11-10 05:07:00
134318    39390    931    2017-11-10 14:56:00    2017-11-10 14:56:00
134319    39390    930    2017-11-10 01:28:00    2017-11-10 01:28:00
134320    39391    701    2017-11-10 23:00:00    2017-11-10 23:00:00
134321    39391    897    2017-11-10 10:39:00    2017-11-10 10:39:00
134322    39391    519    2017-11-10 21:25:00    2017-11-10 21:25:00
134323    39391    508    2017-11-10 20:48:00    2017-11-10 20:48:00
134324    39391    776    2017-11-10 18:59:00    2017-11-10 18:59:00
134325    39392    524    2017-11-10 20:12:00    2017-11-10 20:12:00
134326    39392    797    2017-11-10 09:56:00    2017-11-10 09:56:00
134327    39392    824    2017-11-10 16:15:00    2017-11-10 16:15:00
134328    39392    769    2017-11-10 14:57:00    2017-11-10 14:57:00
134329    39392    870    2017-11-10 01:37:00    2017-11-10 01:37:00
134330    39393    873    2017-11-10 09:33:00    2017-11-10 09:33:00
134331    39393    586    2017-11-10 01:59:00    2017-11-10 01:59:00
134332    39393    931    2017-11-10 15:50:00    2017-11-10 15:50:00
134333    39393    637    2017-11-10 10:20:00    2017-11-10 10:20:00
134334    39393    796    2017-11-10 02:43:00    2017-11-10 02:43:00
134335    39394    658    2017-11-10 20:33:00    2017-11-10 20:33:00
134336    39394    662    2017-11-10 18:20:00    2017-11-10 18:20:00
134337    39394    760    2017-11-10 21:52:00    2017-11-10 21:52:00
134338    39394    756    2017-11-10 14:00:00    2017-11-10 14:00:00
134339    39394    788    2017-11-10 14:18:00    2017-11-10 14:18:00
134340    39395    744    2017-11-10 18:34:00    2017-11-10 18:34:00
134341    39395    670    2017-11-10 05:07:00    2017-11-10 05:07:00
134342    39395    697    2017-11-10 13:07:00    2017-11-10 13:07:00
134343    39395    664    2017-11-10 22:36:00    2017-11-10 22:36:00
134344    39395    498    2017-11-10 19:21:00    2017-11-10 19:21:00
134345    39396    827    2017-11-10 01:39:00    2017-11-10 01:39:00
134346    39396    609    2017-11-10 21:31:00    2017-11-10 21:31:00
134347    39396    614    2017-11-10 05:45:00    2017-11-10 05:45:00
134348    39396    865    2017-11-10 11:54:00    2017-11-10 11:54:00
134349    39396    832    2017-11-10 18:00:00    2017-11-10 18:00:00
134350    39397    499    2017-11-10 19:52:00    2017-11-10 19:52:00
134351    39397    631    2017-11-10 15:02:00    2017-11-10 15:02:00
134352    39397    791    2017-11-10 18:34:00    2017-11-10 18:34:00
134353    39397    537    2017-11-10 06:54:00    2017-11-10 06:54:00
134354    39397    722    2017-11-10 15:27:00    2017-11-10 15:27:00
134355    39398    536    2017-11-10 13:21:00    2017-11-10 13:21:00
134356    39398    517    2017-11-10 18:04:00    2017-11-10 18:04:00
134357    39398    859    2017-11-10 18:32:00    2017-11-10 18:32:00
134358    39398    794    2017-11-10 19:51:00    2017-11-10 19:51:00
134359    39398    698    2017-11-10 15:42:00    2017-11-10 15:42:00
134360    39399    845    2017-11-10 08:19:00    2017-11-10 08:19:00
134361    39399    555    2017-11-10 07:00:00    2017-11-10 07:00:00
134362    39399    521    2017-11-10 11:05:00    2017-11-10 11:05:00
134363    39399    657    2017-11-10 16:53:00    2017-11-10 16:53:00
134364    39399    880    2017-11-10 05:53:00    2017-11-10 05:53:00
134365    39400    758    2017-11-10 01:23:00    2017-11-10 01:23:00
134366    39400    567    2017-11-10 15:07:00    2017-11-10 15:07:00
134367    39400    483    2017-11-10 12:04:00    2017-11-10 12:04:00
134368    39400    743    2017-11-10 06:55:00    2017-11-10 06:55:00
134369    39400    840    2017-11-10 05:23:00    2017-11-10 05:23:00
134370    39401    786    2017-11-10 07:34:00    2017-11-10 07:34:00
134371    39401    837    2017-11-10 08:47:00    2017-11-10 08:47:00
134372    39401    616    2017-11-10 12:31:00    2017-11-10 12:31:00
134373    39401    573    2017-11-10 21:42:00    2017-11-10 21:42:00
134374    39401    906    2017-11-10 06:28:00    2017-11-10 06:28:00
134375    39402    822    2017-11-10 03:17:00    2017-11-10 03:17:00
134376    39402    917    2017-11-10 15:08:00    2017-11-10 15:08:00
134377    39402    502    2017-11-10 16:11:00    2017-11-10 16:11:00
134378    39402    879    2017-11-10 16:40:00    2017-11-10 16:40:00
134379    39402    536    2017-11-10 03:22:00    2017-11-10 03:22:00
134380    39403    642    2017-11-10 23:29:00    2017-11-10 23:29:00
134381    39403    879    2017-11-10 15:00:00    2017-11-10 15:00:00
134382    39403    559    2017-11-10 02:35:00    2017-11-10 02:35:00
134383    39403    680    2017-11-10 13:42:00    2017-11-10 13:42:00
134384    39403    907    2017-11-10 21:27:00    2017-11-10 21:27:00
134385    39404    597    2017-11-10 08:21:00    2017-11-10 08:21:00
134386    39404    508    2017-11-10 14:57:00    2017-11-10 14:57:00
134387    39404    813    2017-11-10 11:05:00    2017-11-10 11:05:00
134388    39404    797    2017-11-10 23:22:00    2017-11-10 23:22:00
134389    39404    642    2017-11-10 21:39:00    2017-11-10 21:39:00
134390    39405    649    2017-11-10 19:51:00    2017-11-10 19:51:00
134391    39405    789    2017-11-10 10:19:00    2017-11-10 10:19:00
134392    39405    495    2017-11-10 14:03:00    2017-11-10 14:03:00
134393    39405    543    2017-11-10 15:00:00    2017-11-10 15:00:00
134394    39405    520    2017-11-10 02:20:00    2017-11-10 02:20:00
134395    39406    912    2017-11-10 22:28:00    2017-11-10 22:28:00
134396    39406    646    2017-11-10 02:46:00    2017-11-10 02:46:00
134397    39406    674    2017-11-10 04:56:00    2017-11-10 04:56:00
134398    39406    676    2017-11-10 10:56:00    2017-11-10 10:56:00
134399    39406    847    2017-11-10 21:02:00    2017-11-10 21:02:00
134400    39407    863    2017-11-10 05:33:00    2017-11-10 05:33:00
134401    39407    644    2017-11-10 05:24:00    2017-11-10 05:24:00
134402    39407    850    2017-11-10 21:41:00    2017-11-10 21:41:00
134403    39407    916    2017-11-10 17:53:00    2017-11-10 17:53:00
134404    39407    487    2017-11-10 16:00:00    2017-11-10 16:00:00
134405    39408    863    2017-11-10 10:38:00    2017-11-10 10:38:00
134406    39408    643    2017-11-10 18:30:00    2017-11-10 18:30:00
134407    39408    767    2017-11-10 05:09:00    2017-11-10 05:09:00
134408    39408    789    2017-11-10 12:20:00    2017-11-10 12:20:00
134409    39408    496    2017-11-10 03:46:00    2017-11-10 03:46:00
134410    39409    639    2017-11-10 06:45:00    2017-11-10 06:45:00
134411    39409    697    2017-11-10 09:39:00    2017-11-10 09:39:00
134412    39409    941    2017-11-10 23:21:00    2017-11-10 23:21:00
134413    39409    469    2017-11-10 11:03:00    2017-11-10 11:03:00
134414    39409    489    2017-11-10 19:47:00    2017-11-10 19:47:00
134415    39410    870    2017-11-10 06:01:00    2017-11-10 06:01:00
134416    39410    464    2017-11-10 13:50:00    2017-11-10 13:50:00
134417    39410    943    2017-11-10 14:54:00    2017-11-10 14:54:00
134418    39410    615    2017-11-10 10:53:00    2017-11-10 10:53:00
134419    39410    591    2017-11-10 09:41:00    2017-11-10 09:41:00
134420    39411    546    2017-11-10 04:10:00    2017-11-10 04:10:00
134421    39411    545    2017-11-10 02:01:00    2017-11-10 02:01:00
134422    39411    567    2017-11-10 11:18:00    2017-11-10 11:18:00
134423    39411    913    2017-11-10 10:35:00    2017-11-10 10:35:00
134424    39411    697    2017-11-10 04:10:00    2017-11-10 04:10:00
134425    39412    916    2017-11-10 18:37:00    2017-11-10 18:37:00
134426    39412    654    2017-11-10 20:52:00    2017-11-10 20:52:00
134427    39412    878    2017-11-10 01:07:00    2017-11-10 01:07:00
134428    39412    540    2017-11-10 04:03:00    2017-11-10 04:03:00
134429    39412    548    2017-11-10 17:22:00    2017-11-10 17:22:00
134430    39413    820    2017-11-10 02:05:00    2017-11-10 02:05:00
134431    39413    893    2017-11-10 08:21:00    2017-11-10 08:21:00
134432    39413    927    2017-11-10 12:11:00    2017-11-10 12:11:00
134433    39413    724    2017-11-10 04:43:00    2017-11-10 04:43:00
134434    39413    704    2017-11-10 09:54:00    2017-11-10 09:54:00
134435    39414    698    2017-11-10 04:32:00    2017-11-10 04:32:00
134436    39414    569    2017-11-10 04:20:00    2017-11-10 04:20:00
134437    39414    684    2017-11-10 03:40:00    2017-11-10 03:40:00
134438    39414    666    2017-11-10 22:33:00    2017-11-10 22:33:00
134439    39414    569    2017-11-10 01:28:00    2017-11-10 01:28:00
134440    39415    709    2017-11-10 19:30:00    2017-11-10 19:30:00
134441    39415    791    2017-11-10 04:41:00    2017-11-10 04:41:00
134442    39415    544    2017-11-10 12:57:00    2017-11-10 12:57:00
134443    39415    843    2017-11-10 01:28:00    2017-11-10 01:28:00
134444    39415    619    2017-11-10 16:02:00    2017-11-10 16:02:00
134445    39416    777    2017-11-10 16:45:00    2017-11-10 16:45:00
134446    39416    507    2017-11-10 08:59:00    2017-11-10 08:59:00
134447    39416    754    2017-11-10 01:16:00    2017-11-10 01:16:00
134448    39416    522    2017-11-10 02:32:00    2017-11-10 02:32:00
134449    39416    935    2017-11-10 15:17:00    2017-11-10 15:17:00
134450    39417    682    2017-11-10 21:16:00    2017-11-10 21:16:00
134451    39417    699    2017-11-10 18:35:00    2017-11-10 18:35:00
134452    39417    513    2017-11-10 18:22:00    2017-11-10 18:22:00
134453    39417    846    2017-11-10 06:29:00    2017-11-10 06:29:00
134454    39417    525    2017-11-10 11:22:00    2017-11-10 11:22:00
134455    39418    596    2017-11-10 12:09:00    2017-11-10 12:09:00
134456    39418    842    2017-11-10 03:35:00    2017-11-10 03:35:00
134457    39418    637    2017-11-10 22:42:00    2017-11-10 22:42:00
134458    39418    732    2017-11-10 17:46:00    2017-11-10 17:46:00
134459    39418    579    2017-11-10 03:47:00    2017-11-10 03:47:00
134460    39419    606    2017-11-10 13:52:00    2017-11-10 13:52:00
134461    39419    814    2017-11-10 22:58:00    2017-11-10 22:58:00
134462    39419    721    2017-11-10 20:10:00    2017-11-10 20:10:00
134463    39419    741    2017-11-10 22:19:00    2017-11-10 22:19:00
134464    39419    821    2017-11-10 11:53:00    2017-11-10 11:53:00
134465    39420    502    2017-11-10 06:39:00    2017-11-10 06:39:00
134466    39420    627    2017-11-10 05:16:00    2017-11-10 05:16:00
134467    39420    744    2017-11-10 06:27:00    2017-11-10 06:27:00
134468    39420    824    2017-11-10 09:58:00    2017-11-10 09:58:00
134469    39420    584    2017-11-10 01:41:00    2017-11-10 01:41:00
134470    39421    526    2017-11-10 20:51:00    2017-11-10 20:51:00
134471    39421    608    2017-11-10 13:37:00    2017-11-10 13:37:00
134472    39421    677    2017-11-10 05:56:00    2017-11-10 05:56:00
134473    39421    808    2017-11-10 12:41:00    2017-11-10 12:41:00
134474    39421    863    2017-11-10 16:16:00    2017-11-10 16:16:00
134475    39422    570    2017-11-10 14:55:00    2017-11-10 14:55:00
134476    39422    958    2017-11-10 17:01:00    2017-11-10 17:01:00
134477    39422    512    2017-11-10 03:04:00    2017-11-10 03:04:00
134478    39422    822    2017-11-10 18:49:00    2017-11-10 18:49:00
134479    39422    875    2017-11-10 05:30:00    2017-11-10 05:30:00
134480    39423    797    2017-11-10 14:19:00    2017-11-10 14:19:00
134481    39423    866    2017-11-10 23:33:00    2017-11-10 23:33:00
134482    39423    502    2017-11-10 10:24:00    2017-11-10 10:24:00
134483    39423    684    2017-11-10 12:51:00    2017-11-10 12:51:00
134484    39423    782    2017-11-10 08:20:00    2017-11-10 08:20:00
134485    39424    777    2017-11-10 08:00:00    2017-11-10 08:00:00
134486    39424    909    2017-11-10 16:19:00    2017-11-10 16:19:00
134487    39424    554    2017-11-10 02:13:00    2017-11-10 02:13:00
134488    39424    855    2017-11-10 17:17:00    2017-11-10 17:17:00
134489    39424    620    2017-11-10 21:28:00    2017-11-10 21:28:00
134490    39425    501    2017-11-10 18:20:00    2017-11-10 18:20:00
134491    39425    960    2017-11-10 08:59:00    2017-11-10 08:59:00
134492    39425    917    2017-11-10 02:45:00    2017-11-10 02:45:00
134493    39425    720    2017-11-10 06:14:00    2017-11-10 06:14:00
134494    39425    918    2017-11-10 08:36:00    2017-11-10 08:36:00
134495    39426    587    2017-11-10 20:52:00    2017-11-10 20:52:00
134496    39426    795    2017-11-10 16:32:00    2017-11-10 16:32:00
134497    39426    828    2017-11-10 18:31:00    2017-11-10 18:31:00
134498    39426    816    2017-11-10 21:18:00    2017-11-10 21:18:00
134499    39426    769    2017-11-10 01:42:00    2017-11-10 01:42:00
134500    39427    706    2017-11-10 11:25:00    2017-11-10 11:25:00
134501    39427    711    2017-11-10 03:08:00    2017-11-10 03:08:00
134502    39427    898    2017-11-10 20:58:00    2017-11-10 20:58:00
134503    39427    482    2017-11-10 07:11:00    2017-11-10 07:11:00
134504    39427    927    2017-11-10 07:43:00    2017-11-10 07:43:00
134505    39428    753    2017-11-10 22:09:00    2017-11-10 22:09:00
134506    39428    641    2017-11-10 08:28:00    2017-11-10 08:28:00
134507    39428    891    2017-11-10 20:56:00    2017-11-10 20:56:00
134508    39428    625    2017-11-10 19:27:00    2017-11-10 19:27:00
134509    39428    611    2017-11-10 03:06:00    2017-11-10 03:06:00
134510    39429    558    2017-11-10 08:40:00    2017-11-10 08:40:00
134511    39429    832    2017-11-10 11:12:00    2017-11-10 11:12:00
134512    39429    834    2017-11-10 04:42:00    2017-11-10 04:42:00
134513    39429    625    2017-11-10 19:55:00    2017-11-10 19:55:00
134514    39429    661    2017-11-10 23:50:00    2017-11-10 23:50:00
134515    39430    653    2017-11-10 14:24:00    2017-11-10 14:24:00
134516    39430    959    2017-11-10 10:11:00    2017-11-10 10:11:00
134517    39430    865    2017-11-10 07:31:00    2017-11-10 07:31:00
134518    39430    698    2017-11-10 13:16:00    2017-11-10 13:16:00
134519    39430    819    2017-11-10 05:45:00    2017-11-10 05:45:00
134520    39431    853    2017-11-10 21:10:00    2017-11-10 21:10:00
134521    39431    599    2017-11-10 08:59:00    2017-11-10 08:59:00
134522    39431    810    2017-11-10 23:04:00    2017-11-10 23:04:00
134523    39431    803    2017-11-10 01:22:00    2017-11-10 01:22:00
134524    39431    743    2017-11-10 11:44:00    2017-11-10 11:44:00
134525    39432    676    2017-11-10 02:23:00    2017-11-10 02:23:00
134526    39432    689    2017-11-10 12:15:00    2017-11-10 12:15:00
134527    39432    525    2017-11-10 06:32:00    2017-11-10 06:32:00
134528    39432    891    2017-11-10 22:30:00    2017-11-10 22:30:00
134529    39432    498    2017-11-10 09:19:00    2017-11-10 09:19:00
134530    39433    731    2017-11-10 17:10:00    2017-11-10 17:10:00
134531    39433    748    2017-11-10 03:38:00    2017-11-10 03:38:00
134532    39433    507    2017-11-10 07:51:00    2017-11-10 07:51:00
134533    39433    711    2017-11-10 11:01:00    2017-11-10 11:01:00
134534    39433    591    2017-11-10 01:12:00    2017-11-10 01:12:00
134535    39434    906    2017-11-10 16:29:00    2017-11-10 16:29:00
134536    39434    830    2017-11-10 03:49:00    2017-11-10 03:49:00
134537    39434    845    2017-11-10 06:56:00    2017-11-10 06:56:00
134538    39434    714    2017-11-10 03:40:00    2017-11-10 03:40:00
134539    39434    602    2017-11-10 14:40:00    2017-11-10 14:40:00
134540    39435    556    2017-11-10 20:17:00    2017-11-10 20:17:00
134541    39435    655    2017-11-10 12:34:00    2017-11-10 12:34:00
134542    39435    873    2017-11-10 10:31:00    2017-11-10 10:31:00
134543    39435    726    2017-11-10 14:57:00    2017-11-10 14:57:00
134544    39435    935    2017-11-10 08:24:00    2017-11-10 08:24:00
134545    39436    702    2017-11-10 06:37:00    2017-11-10 06:37:00
134546    39436    789    2017-11-10 19:42:00    2017-11-10 19:42:00
134547    39436    601    2017-11-10 14:47:00    2017-11-10 14:47:00
134548    39436    788    2017-11-10 15:38:00    2017-11-10 15:38:00
134549    39436    918    2017-11-10 14:49:00    2017-11-10 14:49:00
134550    39437    808    2017-11-10 14:32:00    2017-11-10 14:32:00
134551    39437    814    2017-11-10 10:45:00    2017-11-10 10:45:00
134552    39437    933    2017-11-10 12:13:00    2017-11-10 12:13:00
134553    39437    776    2017-11-10 03:36:00    2017-11-10 03:36:00
134554    39437    902    2017-11-10 17:16:00    2017-11-10 17:16:00
134555    39438    722    2017-11-10 17:35:00    2017-11-10 17:35:00
134556    39438    720    2017-11-10 01:03:00    2017-11-10 01:03:00
134557    39438    900    2017-11-10 02:35:00    2017-11-10 02:35:00
134558    39438    595    2017-11-10 02:39:00    2017-11-10 02:39:00
134559    39438    701    2017-11-10 12:51:00    2017-11-10 12:51:00
134560    39439    940    2017-11-10 18:39:00    2017-11-10 18:39:00
134561    39439    865    2017-11-10 06:36:00    2017-11-10 06:36:00
134562    39439    513    2017-11-10 16:49:00    2017-11-10 16:49:00
134563    39439    810    2017-11-10 16:47:00    2017-11-10 16:47:00
134564    39439    727    2017-11-10 19:45:00    2017-11-10 19:45:00
134565    39440    508    2017-11-10 11:50:00    2017-11-10 11:50:00
134566    39440    914    2017-11-10 23:42:00    2017-11-10 23:42:00
134567    39440    882    2017-11-10 23:22:00    2017-11-10 23:22:00
134568    39440    711    2017-11-10 16:27:00    2017-11-10 16:27:00
134569    39440    816    2017-11-10 01:37:00    2017-11-10 01:37:00
134570    39441    877    2017-11-10 08:29:00    2017-11-10 08:29:00
134571    39441    935    2017-11-10 18:55:00    2017-11-10 18:55:00
134572    39441    624    2017-11-10 23:21:00    2017-11-10 23:21:00
134573    39441    896    2017-11-10 02:37:00    2017-11-10 02:37:00
134574    39441    708    2017-11-10 07:25:00    2017-11-10 07:25:00
134575    39442    484    2017-11-10 06:15:00    2017-11-10 06:15:00
134576    39442    738    2017-11-10 07:56:00    2017-11-10 07:56:00
134577    39442    513    2017-11-10 11:47:00    2017-11-10 11:47:00
134578    39442    792    2017-11-10 11:30:00    2017-11-10 11:30:00
134579    39442    922    2017-11-10 17:54:00    2017-11-10 17:54:00
134580    39443    505    2017-11-10 23:23:00    2017-11-10 23:23:00
134581    39443    634    2017-11-10 06:57:00    2017-11-10 06:57:00
134582    39443    692    2017-11-10 12:54:00    2017-11-10 12:54:00
134583    39443    800    2017-11-10 21:00:00    2017-11-10 21:00:00
134584    39443    592    2017-11-10 05:13:00    2017-11-10 05:13:00
134585    39444    724    2017-11-10 05:47:00    2017-11-10 05:47:00
134586    39444    609    2017-11-10 14:52:00    2017-11-10 14:52:00
134587    39444    727    2017-11-10 19:43:00    2017-11-10 19:43:00
134588    39444    779    2017-11-10 02:53:00    2017-11-10 02:53:00
134589    39444    798    2017-11-10 23:13:00    2017-11-10 23:13:00
134590    39445    881    2017-11-11 11:30:00    2017-11-11 11:30:00
134591    39445    798    2017-11-11 01:37:00    2017-11-11 01:37:00
134592    39445    810    2017-11-11 19:57:00    2017-11-11 19:57:00
134593    39445    711    2017-11-11 14:55:00    2017-11-11 14:55:00
134594    39445    884    2017-11-11 20:59:00    2017-11-11 20:59:00
134595    39446    789    2017-11-11 16:37:00    2017-11-11 16:37:00
134596    39446    797    2017-11-11 17:07:00    2017-11-11 17:07:00
134597    39446    894    2017-11-11 15:10:00    2017-11-11 15:10:00
134598    39446    675    2017-11-11 06:10:00    2017-11-11 06:10:00
134599    39446    777    2017-11-11 06:52:00    2017-11-11 06:52:00
134600    39447    738    2017-11-11 01:39:00    2017-11-11 01:39:00
134601    39447    716    2017-11-11 04:49:00    2017-11-11 04:49:00
134602    39447    553    2017-11-11 16:50:00    2017-11-11 16:50:00
134603    39447    839    2017-11-11 12:13:00    2017-11-11 12:13:00
134604    39447    805    2017-11-11 20:36:00    2017-11-11 20:36:00
134605    39448    521    2017-11-11 22:04:00    2017-11-11 22:04:00
134606    39448    907    2017-11-11 06:22:00    2017-11-11 06:22:00
134607    39448    830    2017-11-11 07:24:00    2017-11-11 07:24:00
134608    39448    825    2017-11-11 13:45:00    2017-11-11 13:45:00
134609    39448    850    2017-11-11 08:28:00    2017-11-11 08:28:00
134610    39449    800    2017-11-11 01:24:00    2017-11-11 01:24:00
134611    39449    730    2017-11-11 03:44:00    2017-11-11 03:44:00
134612    39449    823    2017-11-11 09:24:00    2017-11-11 09:24:00
134613    39449    786    2017-11-11 13:34:00    2017-11-11 13:34:00
134614    39449    597    2017-11-11 02:51:00    2017-11-11 02:51:00
134615    39450    919    2017-11-11 06:28:00    2017-11-11 06:28:00
134616    39450    522    2017-11-11 03:36:00    2017-11-11 03:36:00
134617    39450    944    2017-11-11 11:31:00    2017-11-11 11:31:00
134618    39450    565    2017-11-11 20:15:00    2017-11-11 20:15:00
134619    39450    693    2017-11-11 11:49:00    2017-11-11 11:49:00
134620    39451    721    2017-11-11 01:25:00    2017-11-11 01:25:00
134621    39451    653    2017-11-11 07:55:00    2017-11-11 07:55:00
134622    39451    592    2017-11-11 09:40:00    2017-11-11 09:40:00
134623    39451    761    2017-11-11 18:49:00    2017-11-11 18:49:00
134624    39451    864    2017-11-11 21:59:00    2017-11-11 21:59:00
134625    39452    822    2017-11-11 05:34:00    2017-11-11 05:34:00
134626    39452    649    2017-11-11 18:03:00    2017-11-11 18:03:00
134627    39452    890    2017-11-11 20:41:00    2017-11-11 20:41:00
134628    39452    721    2017-11-11 09:33:00    2017-11-11 09:33:00
134629    39452    665    2017-11-11 09:21:00    2017-11-11 09:21:00
134630    39453    911    2017-11-11 21:33:00    2017-11-11 21:33:00
134631    39453    553    2017-11-11 09:52:00    2017-11-11 09:52:00
134632    39453    474    2017-11-11 15:42:00    2017-11-11 15:42:00
134633    39453    546    2017-11-11 11:44:00    2017-11-11 11:44:00
134634    39453    889    2017-11-11 12:54:00    2017-11-11 12:54:00
134635    39454    624    2017-11-11 19:26:00    2017-11-11 19:26:00
134636    39454    627    2017-11-11 19:18:00    2017-11-11 19:18:00
134637    39454    733    2017-11-11 14:15:00    2017-11-11 14:15:00
134638    39454    768    2017-11-11 07:23:00    2017-11-11 07:23:00
134639    39454    939    2017-11-11 09:06:00    2017-11-11 09:06:00
134640    39455    568    2017-11-11 22:41:00    2017-11-11 22:41:00
134641    39455    476    2017-11-11 06:40:00    2017-11-11 06:40:00
134642    39455    697    2017-11-11 14:17:00    2017-11-11 14:17:00
134643    39455    897    2017-11-11 23:43:00    2017-11-11 23:43:00
134644    39455    700    2017-11-11 22:17:00    2017-11-11 22:17:00
134645    39456    778    2017-11-11 08:30:00    2017-11-11 08:30:00
134646    39456    888    2017-11-11 08:15:00    2017-11-11 08:15:00
134647    39456    747    2017-11-11 08:47:00    2017-11-11 08:47:00
134648    39456    639    2017-11-11 22:32:00    2017-11-11 22:32:00
134649    39456    710    2017-11-11 23:24:00    2017-11-11 23:24:00
134650    39457    703    2017-11-11 10:23:00    2017-11-11 10:23:00
134651    39457    585    2017-11-11 14:11:00    2017-11-11 14:11:00
134652    39457    504    2017-11-11 06:37:00    2017-11-11 06:37:00
134653    39457    500    2017-11-11 10:53:00    2017-11-11 10:53:00
134654    39457    608    2017-11-11 21:43:00    2017-11-11 21:43:00
134655    39458    611    2017-11-11 21:42:00    2017-11-11 21:42:00
134656    39458    653    2017-11-11 08:12:00    2017-11-11 08:12:00
134657    39458    611    2017-11-11 11:10:00    2017-11-11 11:10:00
134658    39458    769    2017-11-11 11:48:00    2017-11-11 11:48:00
134659    39458    616    2017-11-11 19:13:00    2017-11-11 19:13:00
134660    39459    677    2017-11-11 07:43:00    2017-11-11 07:43:00
134661    39459    581    2017-11-11 11:26:00    2017-11-11 11:26:00
134662    39459    480    2017-11-11 20:10:00    2017-11-11 20:10:00
134663    39459    859    2017-11-11 22:26:00    2017-11-11 22:26:00
134664    39459    482    2017-11-11 13:43:00    2017-11-11 13:43:00
134665    39460    613    2017-11-11 22:51:00    2017-11-11 22:51:00
134666    39460    706    2017-11-11 09:56:00    2017-11-11 09:56:00
134667    39460    757    2017-11-11 07:49:00    2017-11-11 07:49:00
134668    39460    724    2017-11-11 16:05:00    2017-11-11 16:05:00
134669    39460    854    2017-11-11 02:28:00    2017-11-11 02:28:00
134670    39461    737    2017-11-11 12:59:00    2017-11-11 12:59:00
134671    39461    550    2017-11-11 22:32:00    2017-11-11 22:32:00
134672    39461    612    2017-11-11 11:00:00    2017-11-11 11:00:00
134673    39461    617    2017-11-11 20:25:00    2017-11-11 20:25:00
134674    39461    577    2017-11-11 22:41:00    2017-11-11 22:41:00
134675    39462    682    2017-11-11 02:55:00    2017-11-11 02:55:00
134676    39462    832    2017-11-11 03:51:00    2017-11-11 03:51:00
134677    39462    664    2017-11-11 15:52:00    2017-11-11 15:52:00
134678    39462    685    2017-11-11 18:07:00    2017-11-11 18:07:00
134679    39462    678    2017-11-11 16:28:00    2017-11-11 16:28:00
134680    39463    490    2017-11-11 22:23:00    2017-11-11 22:23:00
134681    39463    772    2017-11-11 02:59:00    2017-11-11 02:59:00
134682    39463    810    2017-11-11 08:10:00    2017-11-11 08:10:00
134683    39463    511    2017-11-11 06:34:00    2017-11-11 06:34:00
134684    39463    650    2017-11-11 22:36:00    2017-11-11 22:36:00
134685    39464    954    2017-11-11 03:04:00    2017-11-11 03:04:00
134686    39464    894    2017-11-11 06:38:00    2017-11-11 06:38:00
134687    39464    798    2017-11-11 14:07:00    2017-11-11 14:07:00
134688    39464    472    2017-11-11 03:18:00    2017-11-11 03:18:00
134689    39464    797    2017-11-11 07:48:00    2017-11-11 07:48:00
134690    39465    958    2017-11-11 13:31:00    2017-11-11 13:31:00
134691    39465    745    2017-11-11 18:05:00    2017-11-11 18:05:00
134692    39465    677    2017-11-11 23:24:00    2017-11-11 23:24:00
134693    39465    881    2017-11-11 11:37:00    2017-11-11 11:37:00
134694    39465    584    2017-11-11 10:07:00    2017-11-11 10:07:00
134695    39466    541    2017-11-11 06:19:00    2017-11-11 06:19:00
134696    39466    780    2017-11-11 22:51:00    2017-11-11 22:51:00
134697    39466    860    2017-11-11 08:46:00    2017-11-11 08:46:00
134698    39466    515    2017-11-11 06:26:00    2017-11-11 06:26:00
134699    39466    818    2017-11-11 16:41:00    2017-11-11 16:41:00
134700    39467    897    2017-11-11 08:55:00    2017-11-11 08:55:00
134701    39467    573    2017-11-11 09:28:00    2017-11-11 09:28:00
134702    39467    607    2017-11-11 10:17:00    2017-11-11 10:17:00
134703    39467    505    2017-11-11 12:30:00    2017-11-11 12:30:00
134704    39467    774    2017-11-11 18:22:00    2017-11-11 18:22:00
134705    39468    900    2017-11-11 01:55:00    2017-11-11 01:55:00
134706    39468    853    2017-11-11 05:37:00    2017-11-11 05:37:00
134707    39468    508    2017-11-11 02:15:00    2017-11-11 02:15:00
134708    39468    605    2017-11-11 06:45:00    2017-11-11 06:45:00
134709    39468    840    2017-11-11 15:10:00    2017-11-11 15:10:00
134710    39469    587    2017-11-11 16:24:00    2017-11-11 16:24:00
134711    39469    877    2017-11-11 17:50:00    2017-11-11 17:50:00
134712    39469    902    2017-11-11 23:49:00    2017-11-11 23:49:00
134713    39469    835    2017-11-11 15:59:00    2017-11-11 15:59:00
134714    39469    722    2017-11-11 01:08:00    2017-11-11 01:08:00
134715    39470    540    2017-11-11 01:58:00    2017-11-11 01:58:00
134716    39470    959    2017-11-11 05:51:00    2017-11-11 05:51:00
134717    39470    788    2017-11-11 09:34:00    2017-11-11 09:34:00
134718    39470    803    2017-11-11 18:11:00    2017-11-11 18:11:00
134719    39470    890    2017-11-11 11:09:00    2017-11-11 11:09:00
134720    39471    551    2017-11-11 04:09:00    2017-11-11 04:09:00
134721    39471    518    2017-11-11 04:58:00    2017-11-11 04:58:00
134722    39471    922    2017-11-11 18:33:00    2017-11-11 18:33:00
134723    39471    588    2017-11-11 06:09:00    2017-11-11 06:09:00
134724    39471    926    2017-11-11 22:15:00    2017-11-11 22:15:00
134725    39472    512    2017-11-11 16:56:00    2017-11-11 16:56:00
134726    39472    480    2017-11-11 19:53:00    2017-11-11 19:53:00
134727    39472    583    2017-11-11 22:47:00    2017-11-11 22:47:00
134728    39472    607    2017-11-11 04:29:00    2017-11-11 04:29:00
134729    39472    804    2017-11-11 17:21:00    2017-11-11 17:21:00
134730    39473    627    2017-11-11 09:18:00    2017-11-11 09:18:00
134731    39473    749    2017-11-11 14:07:00    2017-11-11 14:07:00
134732    39473    911    2017-11-11 10:44:00    2017-11-11 10:44:00
134733    39473    792    2017-11-11 19:52:00    2017-11-11 19:52:00
134734    39473    557    2017-11-11 04:19:00    2017-11-11 04:19:00
134735    39474    517    2017-11-11 06:21:00    2017-11-11 06:21:00
134736    39474    516    2017-11-11 10:34:00    2017-11-11 10:34:00
134737    39474    574    2017-11-11 03:18:00    2017-11-11 03:18:00
134738    39474    784    2017-11-11 05:12:00    2017-11-11 05:12:00
134739    39474    514    2017-11-11 12:38:00    2017-11-11 12:38:00
134740    39475    848    2017-11-11 08:43:00    2017-11-11 08:43:00
134741    39475    710    2017-11-11 09:00:00    2017-11-11 09:00:00
134742    39475    558    2017-11-11 16:33:00    2017-11-11 16:33:00
134743    39475    635    2017-11-11 23:35:00    2017-11-11 23:35:00
134744    39475    644    2017-11-11 15:54:00    2017-11-11 15:54:00
134745    39476    645    2017-11-11 16:48:00    2017-11-11 16:48:00
134746    39476    779    2017-11-11 17:03:00    2017-11-11 17:03:00
134747    39476    638    2017-11-11 06:25:00    2017-11-11 06:25:00
134748    39476    824    2017-11-11 20:43:00    2017-11-11 20:43:00
134749    39476    834    2017-11-11 16:04:00    2017-11-11 16:04:00
134750    39477    557    2017-11-11 03:00:00    2017-11-11 03:00:00
134751    39477    846    2017-11-11 16:52:00    2017-11-11 16:52:00
134752    39477    693    2017-11-11 19:23:00    2017-11-11 19:23:00
134753    39477    738    2017-11-11 15:55:00    2017-11-11 15:55:00
134754    39477    489    2017-11-11 11:41:00    2017-11-11 11:41:00
134755    39478    623    2017-11-11 11:34:00    2017-11-11 11:34:00
134756    39478    921    2017-11-11 15:42:00    2017-11-11 15:42:00
134757    39478    709    2017-11-11 15:00:00    2017-11-11 15:00:00
134758    39478    869    2017-11-11 06:37:00    2017-11-11 06:37:00
134759    39478    679    2017-11-11 21:09:00    2017-11-11 21:09:00
134760    39479    722    2017-11-11 20:52:00    2017-11-11 20:52:00
134761    39479    686    2017-11-11 22:46:00    2017-11-11 22:46:00
134762    39479    757    2017-11-11 13:51:00    2017-11-11 13:51:00
134763    39479    770    2017-11-11 07:36:00    2017-11-11 07:36:00
134764    39479    834    2017-11-11 17:43:00    2017-11-11 17:43:00
134765    39480    757    2017-11-11 07:04:00    2017-11-11 07:04:00
134766    39480    945    2017-11-11 01:08:00    2017-11-11 01:08:00
134767    39480    746    2017-11-11 15:07:00    2017-11-11 15:07:00
134768    39480    819    2017-11-11 08:03:00    2017-11-11 08:03:00
134769    39480    556    2017-11-11 04:51:00    2017-11-11 04:51:00
134770    39481    608    2017-11-11 05:56:00    2017-11-11 05:56:00
134771    39481    857    2017-11-11 12:33:00    2017-11-11 12:33:00
134772    39481    472    2017-11-11 20:36:00    2017-11-11 20:36:00
134773    39481    686    2017-11-11 22:35:00    2017-11-11 22:35:00
134774    39481    588    2017-11-11 18:25:00    2017-11-11 18:25:00
134775    39482    673    2017-11-11 07:43:00    2017-11-11 07:43:00
134776    39482    961    2017-11-11 23:44:00    2017-11-11 23:44:00
134777    39482    677    2017-11-11 14:39:00    2017-11-11 14:39:00
134778    39482    610    2017-11-11 02:05:00    2017-11-11 02:05:00
134779    39482    791    2017-11-11 13:14:00    2017-11-11 13:14:00
134780    39483    878    2017-11-11 01:57:00    2017-11-11 01:57:00
134781    39483    646    2017-11-11 14:49:00    2017-11-11 14:49:00
134782    39483    864    2017-11-11 03:39:00    2017-11-11 03:39:00
134783    39483    908    2017-11-11 15:52:00    2017-11-11 15:52:00
134784    39483    801    2017-11-11 19:41:00    2017-11-11 19:41:00
134785    39484    813    2017-11-11 14:48:00    2017-11-11 14:48:00
134786    39484    548    2017-11-11 12:42:00    2017-11-11 12:42:00
134787    39484    851    2017-11-11 01:36:00    2017-11-11 01:36:00
134788    39484    490    2017-11-11 10:10:00    2017-11-11 10:10:00
134789    39484    649    2017-11-11 12:52:00    2017-11-11 12:52:00
134790    39485    828    2017-11-11 18:26:00    2017-11-11 18:26:00
134791    39485    463    2017-11-11 13:08:00    2017-11-11 13:08:00
134792    39485    863    2017-11-11 07:31:00    2017-11-11 07:31:00
134793    39485    543    2017-11-11 19:30:00    2017-11-11 19:30:00
134794    39485    743    2017-11-11 13:24:00    2017-11-11 13:24:00
134795    39486    773    2017-11-11 15:20:00    2017-11-11 15:20:00
134796    39486    913    2017-11-11 05:23:00    2017-11-11 05:23:00
134797    39486    468    2017-11-11 18:17:00    2017-11-11 18:17:00
134798    39486    643    2017-11-11 10:57:00    2017-11-11 10:57:00
134799    39486    913    2017-11-11 18:46:00    2017-11-11 18:46:00
134800    39487    894    2017-11-11 10:23:00    2017-11-11 10:23:00
134801    39487    551    2017-11-11 18:29:00    2017-11-11 18:29:00
134802    39487    782    2017-11-11 01:12:00    2017-11-11 01:12:00
134803    39487    531    2017-11-11 09:26:00    2017-11-11 09:26:00
134804    39487    612    2017-11-11 04:16:00    2017-11-11 04:16:00
134805    39488    581    2017-11-11 14:34:00    2017-11-11 14:34:00
134806    39488    906    2017-11-11 02:39:00    2017-11-11 02:39:00
134807    39488    733    2017-11-11 10:26:00    2017-11-11 10:26:00
134808    39488    874    2017-11-11 13:16:00    2017-11-11 13:16:00
134809    39488    582    2017-11-11 11:11:00    2017-11-11 11:11:00
134810    39489    881    2017-11-11 01:38:00    2017-11-11 01:38:00
134811    39489    823    2017-11-11 03:09:00    2017-11-11 03:09:00
134812    39489    890    2017-11-11 13:05:00    2017-11-11 13:05:00
134813    39489    950    2017-11-11 18:54:00    2017-11-11 18:54:00
134814    39489    657    2017-11-11 14:11:00    2017-11-11 14:11:00
134815    39490    954    2017-11-11 21:42:00    2017-11-11 21:42:00
134816    39490    859    2017-11-11 21:56:00    2017-11-11 21:56:00
134817    39490    506    2017-11-11 01:05:00    2017-11-11 01:05:00
134818    39490    887    2017-11-11 21:18:00    2017-11-11 21:18:00
134819    39490    953    2017-11-11 13:39:00    2017-11-11 13:39:00
134820    39491    688    2017-11-11 06:56:00    2017-11-11 06:56:00
134821    39491    532    2017-11-11 01:25:00    2017-11-11 01:25:00
134822    39491    596    2017-11-11 07:33:00    2017-11-11 07:33:00
134823    39491    504    2017-11-11 03:53:00    2017-11-11 03:53:00
134824    39491    694    2017-11-11 16:40:00    2017-11-11 16:40:00
134825    39492    914    2017-11-11 20:54:00    2017-11-11 20:54:00
134826    39492    730    2017-11-11 20:15:00    2017-11-11 20:15:00
134827    39492    876    2017-11-11 14:35:00    2017-11-11 14:35:00
134828    39492    525    2017-11-11 19:04:00    2017-11-11 19:04:00
134829    39492    610    2017-11-11 21:41:00    2017-11-11 21:41:00
134830    39493    636    2017-11-11 23:43:00    2017-11-11 23:43:00
134831    39493    821    2017-11-11 22:21:00    2017-11-11 22:21:00
134832    39493    683    2017-11-11 12:35:00    2017-11-11 12:35:00
134833    39493    597    2017-11-11 04:11:00    2017-11-11 04:11:00
134834    39493    883    2017-11-11 04:44:00    2017-11-11 04:44:00
134835    39494    893    2017-11-11 13:05:00    2017-11-11 13:05:00
134836    39494    942    2017-11-11 10:26:00    2017-11-11 10:26:00
134837    39494    504    2017-11-11 11:50:00    2017-11-11 11:50:00
134838    39494    796    2017-11-11 09:09:00    2017-11-11 09:09:00
134839    39494    748    2017-11-11 15:11:00    2017-11-11 15:11:00
134840    39495    519    2017-11-11 15:41:00    2017-11-11 15:41:00
134841    39495    953    2017-11-11 12:18:00    2017-11-11 12:18:00
134842    39495    951    2017-11-11 13:55:00    2017-11-11 13:55:00
134843    39495    803    2017-11-11 07:59:00    2017-11-11 07:59:00
134844    39495    806    2017-11-11 11:25:00    2017-11-11 11:25:00
134845    39496    630    2017-11-11 11:05:00    2017-11-11 11:05:00
134846    39496    590    2017-11-11 18:49:00    2017-11-11 18:49:00
134847    39496    945    2017-11-11 13:11:00    2017-11-11 13:11:00
134848    39496    830    2017-11-11 03:04:00    2017-11-11 03:04:00
134849    39496    464    2017-11-11 21:38:00    2017-11-11 21:38:00
134850    39497    745    2017-11-11 04:21:00    2017-11-11 04:21:00
134851    39497    503    2017-11-11 06:32:00    2017-11-11 06:32:00
134852    39497    899    2017-11-11 17:14:00    2017-11-11 17:14:00
134853    39497    689    2017-11-11 13:54:00    2017-11-11 13:54:00
134854    39497    919    2017-11-11 05:11:00    2017-11-11 05:11:00
134855    39498    925    2017-11-11 05:33:00    2017-11-11 05:33:00
134856    39498    858    2017-11-11 23:03:00    2017-11-11 23:03:00
134857    39498    628    2017-11-11 16:33:00    2017-11-11 16:33:00
134858    39498    888    2017-11-11 06:25:00    2017-11-11 06:25:00
134859    39498    722    2017-11-11 23:42:00    2017-11-11 23:42:00
134860    39499    504    2017-11-11 23:25:00    2017-11-11 23:25:00
134861    39499    648    2017-11-11 17:05:00    2017-11-11 17:05:00
134863    39499    866    2017-11-11 07:30:00    2017-11-11 07:30:00
134864    39499    571    2017-11-11 10:04:00    2017-11-11 10:04:00
134865    39500    865    2017-11-11 13:10:00    2017-11-11 13:10:00
134866    39500    684    2017-11-11 04:17:00    2017-11-11 04:17:00
134867    39500    716    2017-11-11 21:25:00    2017-11-11 21:25:00
134868    39500    473    2017-11-11 15:43:00    2017-11-11 15:43:00
134869    39500    749    2017-11-11 21:27:00    2017-11-11 21:27:00
134870    39501    834    2017-11-11 15:58:00    2017-11-11 15:58:00
134871    39501    833    2017-11-11 04:55:00    2017-11-11 04:55:00
134872    39501    874    2017-11-11 12:57:00    2017-11-11 12:57:00
134873    39501    463    2017-11-11 12:25:00    2017-11-11 12:25:00
134874    39501    884    2017-11-11 23:26:00    2017-11-11 23:26:00
134875    39502    642    2017-11-11 10:29:00    2017-11-11 10:29:00
134876    39502    630    2017-11-11 07:48:00    2017-11-11 07:48:00
134877    39502    708    2017-11-11 06:49:00    2017-11-11 06:49:00
134878    39502    911    2017-11-11 12:48:00    2017-11-11 12:48:00
134879    39502    907    2017-11-11 17:26:00    2017-11-11 17:26:00
134880    39503    744    2017-11-11 21:14:00    2017-11-11 21:14:00
134881    39503    636    2017-11-11 19:00:00    2017-11-11 19:00:00
134882    39503    501    2017-11-11 21:27:00    2017-11-11 21:27:00
134883    39503    799    2017-11-11 20:57:00    2017-11-11 20:57:00
134884    39503    832    2017-11-11 04:23:00    2017-11-11 04:23:00
134885    39504    653    2017-11-11 04:32:00    2017-11-11 04:32:00
134886    39504    627    2017-11-11 02:41:00    2017-11-11 02:41:00
134887    39504    523    2017-11-11 19:59:00    2017-11-11 19:59:00
134888    39504    682    2017-11-11 04:18:00    2017-11-11 04:18:00
134889    39504    482    2017-11-11 09:23:00    2017-11-11 09:23:00
134890    39505    488    2017-11-11 14:55:00    2017-11-11 14:55:00
134891    39505    625    2017-11-11 21:47:00    2017-11-11 21:47:00
134892    39505    852    2017-11-11 11:37:00    2017-11-11 11:37:00
134893    39505    825    2017-11-11 19:47:00    2017-11-11 19:47:00
134894    39505    491    2017-11-11 22:58:00    2017-11-11 22:58:00
134895    39506    681    2017-11-11 10:12:00    2017-11-11 10:12:00
134896    39506    578    2017-11-11 06:20:00    2017-11-11 06:20:00
134897    39506    957    2017-11-11 16:24:00    2017-11-11 16:24:00
134898    39506    589    2017-11-11 16:23:00    2017-11-11 16:23:00
134899    39506    850    2017-11-11 18:54:00    2017-11-11 18:54:00
134900    39507    955    2017-11-11 20:55:00    2017-11-11 20:55:00
134901    39507    572    2017-11-11 23:40:00    2017-11-11 23:40:00
134902    39507    750    2017-11-11 23:07:00    2017-11-11 23:07:00
134903    39507    858    2017-11-11 03:07:00    2017-11-11 03:07:00
134904    39507    866    2017-11-11 15:53:00    2017-11-11 15:53:00
134905    39508    638    2017-11-11 21:42:00    2017-11-11 21:42:00
134906    39508    852    2017-11-11 23:47:00    2017-11-11 23:47:00
134907    39508    647    2017-11-11 15:41:00    2017-11-11 15:41:00
134908    39508    620    2017-11-11 07:24:00    2017-11-11 07:24:00
134909    39508    843    2017-11-11 18:08:00    2017-11-11 18:08:00
134910    39509    673    2017-11-11 17:00:00    2017-11-11 17:00:00
134911    39509    745    2017-11-11 08:46:00    2017-11-11 08:46:00
134912    39509    934    2017-11-11 09:58:00    2017-11-11 09:58:00
134913    39509    829    2017-11-11 18:26:00    2017-11-11 18:26:00
134914    39509    722    2017-11-11 01:12:00    2017-11-11 01:12:00
134915    39510    467    2017-11-11 20:07:00    2017-11-11 20:07:00
134916    39510    836    2017-11-11 13:28:00    2017-11-11 13:28:00
134917    39510    666    2017-11-11 20:54:00    2017-11-11 20:54:00
134918    39510    806    2017-11-11 10:26:00    2017-11-11 10:26:00
134919    39510    859    2017-11-11 01:20:00    2017-11-11 01:20:00
134920    39511    763    2017-11-11 21:36:00    2017-11-11 21:36:00
134921    39511    551    2017-11-11 13:06:00    2017-11-11 13:06:00
134922    39511    688    2017-11-11 11:34:00    2017-11-11 11:34:00
134923    39511    683    2017-11-11 15:49:00    2017-11-11 15:49:00
134924    39511    928    2017-11-11 11:09:00    2017-11-11 11:09:00
134925    39512    730    2017-11-11 03:07:00    2017-11-11 03:07:00
134926    39512    664    2017-11-11 18:24:00    2017-11-11 18:24:00
134927    39512    655    2017-11-11 01:27:00    2017-11-11 01:27:00
134928    39512    484    2017-11-11 04:44:00    2017-11-11 04:44:00
134929    39512    687    2017-11-11 15:41:00    2017-11-11 15:41:00
134930    39513    836    2017-11-11 20:33:00    2017-11-11 20:33:00
134931    39513    872    2017-11-11 11:00:00    2017-11-11 11:00:00
134932    39513    490    2017-11-11 21:08:00    2017-11-11 21:08:00
134933    39513    806    2017-11-11 08:09:00    2017-11-11 08:09:00
134934    39513    882    2017-11-11 14:25:00    2017-11-11 14:25:00
134935    39514    840    2017-11-11 02:06:00    2017-11-11 02:06:00
134936    39514    504    2017-11-11 21:50:00    2017-11-11 21:50:00
134937    39514    520    2017-11-11 11:29:00    2017-11-11 11:29:00
134938    39514    927    2017-11-11 08:40:00    2017-11-11 08:40:00
134939    39514    697    2017-11-11 04:18:00    2017-11-11 04:18:00
134940    39515    685    2017-11-11 20:25:00    2017-11-11 20:25:00
134941    39515    645    2017-11-11 10:42:00    2017-11-11 10:42:00
134942    39515    693    2017-11-11 08:25:00    2017-11-11 08:25:00
134943    39515    955    2017-11-11 19:39:00    2017-11-11 19:39:00
134944    39515    534    2017-11-11 17:15:00    2017-11-11 17:15:00
134945    39516    961    2017-11-11 02:55:00    2017-11-11 02:55:00
134946    39516    705    2017-11-11 15:59:00    2017-11-11 15:59:00
134947    39516    951    2017-11-11 01:29:00    2017-11-11 01:29:00
134948    39516    677    2017-11-11 19:27:00    2017-11-11 19:27:00
134949    39516    524    2017-11-11 21:08:00    2017-11-11 21:08:00
134950    39517    899    2017-11-11 18:40:00    2017-11-11 18:40:00
134951    39517    773    2017-11-11 10:22:00    2017-11-11 10:22:00
134952    39517    552    2017-11-11 19:28:00    2017-11-11 19:28:00
134953    39517    875    2017-11-11 18:37:00    2017-11-11 18:37:00
134954    39517    716    2017-11-11 22:38:00    2017-11-11 22:38:00
134955    39518    683    2017-11-11 21:44:00    2017-11-11 21:44:00
134956    39518    801    2017-11-11 08:43:00    2017-11-11 08:43:00
134957    39518    524    2017-11-11 14:11:00    2017-11-11 14:11:00
134958    39518    793    2017-11-11 12:03:00    2017-11-11 12:03:00
134959    39518    476    2017-11-11 16:55:00    2017-11-11 16:55:00
134960    39519    503    2017-11-11 20:21:00    2017-11-11 20:21:00
134961    39519    513    2017-11-11 09:15:00    2017-11-11 09:15:00
134962    39519    760    2017-11-11 02:21:00    2017-11-11 02:21:00
134963    39519    908    2017-11-11 08:23:00    2017-11-11 08:23:00
134964    39519    809    2017-11-11 13:57:00    2017-11-11 13:57:00
134965    39520    928    2017-11-11 05:06:00    2017-11-11 05:06:00
134966    39520    606    2017-11-11 13:44:00    2017-11-11 13:44:00
134967    39520    530    2017-11-11 19:31:00    2017-11-11 19:31:00
134968    39520    715    2017-11-11 13:43:00    2017-11-11 13:43:00
134969    39520    903    2017-11-11 23:38:00    2017-11-11 23:38:00
134970    39521    714    2017-11-11 09:19:00    2017-11-11 09:19:00
134971    39521    510    2017-11-11 21:46:00    2017-11-11 21:46:00
134972    39521    482    2017-11-11 09:54:00    2017-11-11 09:54:00
134973    39521    695    2017-11-11 02:12:00    2017-11-11 02:12:00
134974    39521    765    2017-11-11 12:12:00    2017-11-11 12:12:00
134862    39499    961    2017-11-12 00:00:00    2017-11-12 01:05:32.24066
134975    39522    599    2017-11-12 17:07:00    2017-11-12 17:07:00
134976    39522    939    2017-11-12 23:56:00    2017-11-12 23:56:00
134977    39522    952    2017-11-12 06:33:00    2017-11-12 06:33:00
134978    39522    867    2017-11-12 05:53:00    2017-11-12 05:53:00
134979    39522    854    2017-11-12 23:06:00    2017-11-12 23:06:00
134980    39523    551    2017-11-12 19:54:00    2017-11-12 19:54:00
134981    39523    770    2017-11-12 05:59:00    2017-11-12 05:59:00
134982    39523    653    2017-11-12 15:54:00    2017-11-12 15:54:00
134983    39523    470    2017-11-12 11:36:00    2017-11-12 11:36:00
134984    39523    637    2017-11-12 05:49:00    2017-11-12 05:49:00
134985    39524    572    2017-11-12 03:08:00    2017-11-12 03:08:00
134986    39524    857    2017-11-12 04:19:00    2017-11-12 04:19:00
134987    39524    492    2017-11-12 19:43:00    2017-11-12 19:43:00
134988    39524    915    2017-11-12 06:35:00    2017-11-12 06:35:00
134989    39524    623    2017-11-12 17:25:00    2017-11-12 17:25:00
134990    39525    515    2017-11-12 04:33:00    2017-11-12 04:33:00
134991    39525    467    2017-11-12 14:19:00    2017-11-12 14:19:00
134992    39525    502    2017-11-12 06:35:00    2017-11-12 06:35:00
134993    39525    833    2017-11-12 19:50:00    2017-11-12 19:50:00
134994    39525    705    2017-11-12 02:07:00    2017-11-12 02:07:00
134995    39526    599    2017-11-12 02:27:00    2017-11-12 02:27:00
134996    39526    867    2017-11-12 20:28:00    2017-11-12 20:28:00
134997    39526    727    2017-11-12 18:15:00    2017-11-12 18:15:00
134998    39526    821    2017-11-12 20:43:00    2017-11-12 20:43:00
134999    39526    855    2017-11-12 16:57:00    2017-11-12 16:57:00
135000    39527    852    2017-11-12 17:55:00    2017-11-12 17:55:00
135001    39527    514    2017-11-12 08:54:00    2017-11-12 08:54:00
135002    39527    552    2017-11-12 18:09:00    2017-11-12 18:09:00
135003    39527    777    2017-11-12 20:44:00    2017-11-12 20:44:00
135004    39527    484    2017-11-12 19:56:00    2017-11-12 19:56:00
135005    39528    874    2017-11-12 19:22:00    2017-11-12 19:22:00
135006    39528    692    2017-11-12 20:39:00    2017-11-12 20:39:00
135007    39528    570    2017-11-12 17:32:00    2017-11-12 17:32:00
135008    39528    665    2017-11-12 03:47:00    2017-11-12 03:47:00
135009    39528    951    2017-11-12 10:03:00    2017-11-12 10:03:00
135010    39529    535    2017-11-12 18:30:00    2017-11-12 18:30:00
135011    39529    755    2017-11-12 01:44:00    2017-11-12 01:44:00
135012    39529    485    2017-11-12 18:56:00    2017-11-12 18:56:00
135013    39529    820    2017-11-12 04:01:00    2017-11-12 04:01:00
135014    39529    829    2017-11-12 13:21:00    2017-11-12 13:21:00
135015    39530    650    2017-11-12 21:57:00    2017-11-12 21:57:00
135016    39530    586    2017-11-12 10:31:00    2017-11-12 10:31:00
135017    39530    823    2017-11-12 09:00:00    2017-11-12 09:00:00
135018    39530    476    2017-11-12 17:34:00    2017-11-12 17:34:00
135019    39530    674    2017-11-12 06:20:00    2017-11-12 06:20:00
135020    39531    825    2017-11-12 04:12:00    2017-11-12 04:12:00
135021    39531    747    2017-11-12 18:39:00    2017-11-12 18:39:00
135022    39531    675    2017-11-12 08:31:00    2017-11-12 08:31:00
135023    39531    525    2017-11-12 18:19:00    2017-11-12 18:19:00
135024    39531    669    2017-11-12 09:02:00    2017-11-12 09:02:00
135025    39532    741    2017-11-12 19:35:00    2017-11-12 19:35:00
135026    39532    588    2017-11-12 16:56:00    2017-11-12 16:56:00
135027    39532    503    2017-11-12 09:24:00    2017-11-12 09:24:00
135028    39532    921    2017-11-12 22:14:00    2017-11-12 22:14:00
135029    39532    575    2017-11-12 02:18:00    2017-11-12 02:18:00
135030    39533    655    2017-11-12 01:31:00    2017-11-12 01:31:00
135031    39533    705    2017-11-12 12:09:00    2017-11-12 12:09:00
135032    39533    759    2017-11-12 19:07:00    2017-11-12 19:07:00
135033    39533    937    2017-11-12 08:52:00    2017-11-12 08:52:00
135034    39533    848    2017-11-12 02:12:00    2017-11-12 02:12:00
135035    39534    935    2017-11-12 09:34:00    2017-11-12 09:34:00
135036    39534    577    2017-11-12 06:29:00    2017-11-12 06:29:00
135037    39534    520    2017-11-12 12:48:00    2017-11-12 12:48:00
135038    39534    721    2017-11-12 10:26:00    2017-11-12 10:26:00
135039    39534    492    2017-11-12 23:30:00    2017-11-12 23:30:00
135040    39535    840    2017-11-12 17:38:00    2017-11-12 17:38:00
135041    39535    737    2017-11-12 08:31:00    2017-11-12 08:31:00
135042    39535    763    2017-11-12 08:32:00    2017-11-12 08:32:00
135043    39535    466    2017-11-12 17:20:00    2017-11-12 17:20:00
135044    39535    883    2017-11-12 10:53:00    2017-11-12 10:53:00
135045    39536    826    2017-11-12 12:35:00    2017-11-12 12:35:00
135046    39536    959    2017-11-12 01:22:00    2017-11-12 01:22:00
135047    39536    710    2017-11-12 01:01:00    2017-11-12 01:01:00
135048    39536    614    2017-11-12 15:14:00    2017-11-12 15:14:00
135049    39536    698    2017-11-12 21:12:00    2017-11-12 21:12:00
135050    39537    899    2017-11-12 21:09:00    2017-11-12 21:09:00
135051    39537    856    2017-11-12 04:58:00    2017-11-12 04:58:00
135052    39537    958    2017-11-12 05:01:00    2017-11-12 05:01:00
135053    39537    736    2017-11-12 17:50:00    2017-11-12 17:50:00
135054    39537    538    2017-11-12 14:58:00    2017-11-12 14:58:00
135055    39538    633    2017-11-12 17:26:00    2017-11-12 17:26:00
135056    39538    847    2017-11-12 12:43:00    2017-11-12 12:43:00
135057    39538    919    2017-11-12 19:45:00    2017-11-12 19:45:00
135058    39538    879    2017-11-12 18:42:00    2017-11-12 18:42:00
135059    39538    770    2017-11-12 02:00:00    2017-11-12 02:00:00
135060    39539    731    2017-11-12 17:33:00    2017-11-12 17:33:00
135061    39539    943    2017-11-12 02:47:00    2017-11-12 02:47:00
135062    39539    699    2017-11-12 15:33:00    2017-11-12 15:33:00
135063    39539    955    2017-11-12 20:10:00    2017-11-12 20:10:00
135064    39539    935    2017-11-12 03:57:00    2017-11-12 03:57:00
135065    39540    650    2017-11-12 22:54:00    2017-11-12 22:54:00
135066    39540    670    2017-11-12 09:39:00    2017-11-12 09:39:00
135067    39540    804    2017-11-12 04:07:00    2017-11-12 04:07:00
135068    39540    861    2017-11-12 08:06:00    2017-11-12 08:06:00
135069    39540    746    2017-11-12 05:18:00    2017-11-12 05:18:00
135070    39541    829    2017-11-12 12:26:00    2017-11-12 12:26:00
135071    39541    525    2017-11-12 12:48:00    2017-11-12 12:48:00
135072    39541    950    2017-11-12 21:30:00    2017-11-12 21:30:00
135073    39541    815    2017-11-12 12:09:00    2017-11-12 12:09:00
135074    39541    596    2017-11-12 07:45:00    2017-11-12 07:45:00
135075    39542    471    2017-11-12 22:51:00    2017-11-12 22:51:00
135076    39542    826    2017-11-12 16:13:00    2017-11-12 16:13:00
135077    39542    750    2017-11-12 16:46:00    2017-11-12 16:46:00
135078    39542    948    2017-11-12 03:15:00    2017-11-12 03:15:00
135079    39542    523    2017-11-12 22:04:00    2017-11-12 22:04:00
135080    39543    519    2017-11-12 05:20:00    2017-11-12 05:20:00
135081    39543    519    2017-11-12 14:59:00    2017-11-12 14:59:00
135082    39543    561    2017-11-12 22:39:00    2017-11-12 22:39:00
135083    39543    662    2017-11-12 23:11:00    2017-11-12 23:11:00
135084    39543    724    2017-11-12 15:35:00    2017-11-12 15:35:00
135085    39544    957    2017-11-12 11:37:00    2017-11-12 11:37:00
135086    39544    473    2017-11-12 05:44:00    2017-11-12 05:44:00
135087    39544    706    2017-11-12 01:13:00    2017-11-12 01:13:00
135088    39544    695    2017-11-12 07:17:00    2017-11-12 07:17:00
135089    39544    501    2017-11-12 12:54:00    2017-11-12 12:54:00
135090    39545    506    2017-11-12 22:14:00    2017-11-12 22:14:00
135091    39545    568    2017-11-12 22:42:00    2017-11-12 22:42:00
135092    39545    797    2017-11-12 20:03:00    2017-11-12 20:03:00
135093    39545    622    2017-11-12 12:13:00    2017-11-12 12:13:00
135094    39545    496    2017-11-12 18:56:00    2017-11-12 18:56:00
135095    39546    589    2017-11-12 21:37:00    2017-11-12 21:37:00
135096    39546    539    2017-11-12 14:52:00    2017-11-12 14:52:00
135097    39546    800    2017-11-12 11:57:00    2017-11-12 11:57:00
135098    39546    751    2017-11-12 19:25:00    2017-11-12 19:25:00
135099    39546    475    2017-11-12 16:31:00    2017-11-12 16:31:00
135100    39547    958    2017-11-12 16:46:00    2017-11-12 16:46:00
135101    39547    768    2017-11-12 17:49:00    2017-11-12 17:49:00
135102    39547    753    2017-11-12 11:47:00    2017-11-12 11:47:00
135103    39547    800    2017-11-12 05:08:00    2017-11-12 05:08:00
135104    39547    574    2017-11-12 14:13:00    2017-11-12 14:13:00
135105    39548    727    2017-11-12 21:18:00    2017-11-12 21:18:00
135106    39548    698    2017-11-12 20:35:00    2017-11-12 20:35:00
135107    39548    572    2017-11-12 05:16:00    2017-11-12 05:16:00
135108    39548    581    2017-11-12 01:43:00    2017-11-12 01:43:00
135109    39548    740    2017-11-12 04:52:00    2017-11-12 04:52:00
135110    39549    681    2017-11-12 12:15:00    2017-11-12 12:15:00
135111    39549    664    2017-11-12 17:51:00    2017-11-12 17:51:00
135112    39549    578    2017-11-12 05:48:00    2017-11-12 05:48:00
135113    39549    836    2017-11-12 18:48:00    2017-11-12 18:48:00
135114    39549    573    2017-11-12 18:31:00    2017-11-12 18:31:00
135115    39550    675    2017-11-12 17:11:00    2017-11-12 17:11:00
135116    39550    837    2017-11-12 11:14:00    2017-11-12 11:14:00
135117    39550    667    2017-11-12 12:15:00    2017-11-12 12:15:00
135118    39550    613    2017-11-12 12:52:00    2017-11-12 12:52:00
135119    39550    636    2017-11-12 09:21:00    2017-11-12 09:21:00
135120    39551    484    2017-11-12 20:28:00    2017-11-12 20:28:00
135121    39551    544    2017-11-12 07:19:00    2017-11-12 07:19:00
135122    39551    572    2017-11-12 14:25:00    2017-11-12 14:25:00
135123    39551    863    2017-11-12 20:30:00    2017-11-12 20:30:00
135124    39551    498    2017-11-12 07:07:00    2017-11-12 07:07:00
135125    39552    525    2017-11-12 13:35:00    2017-11-12 13:35:00
135126    39552    762    2017-11-12 06:25:00    2017-11-12 06:25:00
135127    39552    550    2017-11-12 18:38:00    2017-11-12 18:38:00
135128    39552    562    2017-11-12 15:47:00    2017-11-12 15:47:00
135129    39552    583    2017-11-12 15:40:00    2017-11-12 15:40:00
135130    39553    540    2017-11-12 15:00:00    2017-11-12 15:00:00
135131    39553    617    2017-11-12 03:52:00    2017-11-12 03:52:00
135132    39553    767    2017-11-12 13:56:00    2017-11-12 13:56:00
135133    39553    855    2017-11-12 11:04:00    2017-11-12 11:04:00
135134    39553    611    2017-11-12 03:18:00    2017-11-12 03:18:00
135135    39554    591    2017-11-12 07:09:00    2017-11-12 07:09:00
135136    39554    846    2017-11-12 08:18:00    2017-11-12 08:18:00
135137    39554    541    2017-11-12 04:12:00    2017-11-12 04:12:00
135138    39554    675    2017-11-12 13:48:00    2017-11-12 13:48:00
135139    39554    623    2017-11-12 18:07:00    2017-11-12 18:07:00
135140    39555    761    2017-11-12 18:02:00    2017-11-12 18:02:00
135141    39555    836    2017-11-12 02:32:00    2017-11-12 02:32:00
135142    39555    551    2017-11-12 20:28:00    2017-11-12 20:28:00
135143    39555    801    2017-11-12 13:19:00    2017-11-12 13:19:00
135144    39555    473    2017-11-12 13:22:00    2017-11-12 13:22:00
135145    39556    869    2017-11-12 20:03:00    2017-11-12 20:03:00
135146    39556    639    2017-11-12 16:44:00    2017-11-12 16:44:00
135147    39556    483    2017-11-12 09:37:00    2017-11-12 09:37:00
135148    39556    829    2017-11-12 19:49:00    2017-11-12 19:49:00
135149    39556    713    2017-11-12 19:50:00    2017-11-12 19:50:00
135150    39557    527    2017-11-12 22:32:00    2017-11-12 22:32:00
135151    39557    795    2017-11-12 15:28:00    2017-11-12 15:28:00
135152    39557    492    2017-11-12 13:20:00    2017-11-12 13:20:00
135153    39557    881    2017-11-12 02:22:00    2017-11-12 02:22:00
135154    39557    663    2017-11-12 02:14:00    2017-11-12 02:14:00
135155    39558    762    2017-11-12 10:53:00    2017-11-12 10:53:00
135156    39558    474    2017-11-12 13:46:00    2017-11-12 13:46:00
135157    39558    725    2017-11-12 05:02:00    2017-11-12 05:02:00
135158    39558    750    2017-11-12 23:18:00    2017-11-12 23:18:00
135159    39558    622    2017-11-12 13:26:00    2017-11-12 13:26:00
135160    39559    951    2017-11-12 11:49:00    2017-11-12 11:49:00
135161    39559    527    2017-11-12 16:32:00    2017-11-12 16:32:00
135162    39559    744    2017-11-12 11:24:00    2017-11-12 11:24:00
135163    39559    825    2017-11-12 20:11:00    2017-11-12 20:11:00
135164    39559    935    2017-11-12 18:16:00    2017-11-12 18:16:00
135165    39560    804    2017-11-12 13:01:00    2017-11-12 13:01:00
135166    39560    929    2017-11-12 09:42:00    2017-11-12 09:42:00
135167    39560    719    2017-11-12 08:59:00    2017-11-12 08:59:00
135168    39560    739    2017-11-12 21:32:00    2017-11-12 21:32:00
135169    39560    928    2017-11-12 07:24:00    2017-11-12 07:24:00
135170    39561    817    2017-11-12 14:44:00    2017-11-12 14:44:00
135171    39561    800    2017-11-12 23:56:00    2017-11-12 23:56:00
135172    39561    870    2017-11-12 16:33:00    2017-11-12 16:33:00
135173    39561    743    2017-11-12 11:00:00    2017-11-12 11:00:00
135174    39561    673    2017-11-12 06:04:00    2017-11-12 06:04:00
135175    39562    580    2017-11-12 18:24:00    2017-11-12 18:24:00
135176    39562    939    2017-11-12 18:16:00    2017-11-12 18:16:00
135177    39562    606    2017-11-12 06:09:00    2017-11-12 06:09:00
135178    39562    947    2017-11-12 14:50:00    2017-11-12 14:50:00
135179    39562    717    2017-11-12 22:34:00    2017-11-12 22:34:00
135180    39563    550    2017-11-12 01:07:00    2017-11-12 01:07:00
135181    39563    526    2017-11-12 04:00:00    2017-11-12 04:00:00
135182    39563    655    2017-11-12 05:31:00    2017-11-12 05:31:00
135183    39563    623    2017-11-12 19:02:00    2017-11-12 19:02:00
135184    39563    633    2017-11-12 03:35:00    2017-11-12 03:35:00
135185    39564    783    2017-11-12 07:47:00    2017-11-12 07:47:00
135186    39564    950    2017-11-12 01:47:00    2017-11-12 01:47:00
135187    39564    922    2017-11-12 15:22:00    2017-11-12 15:22:00
135188    39564    846    2017-11-12 05:46:00    2017-11-12 05:46:00
135189    39564    652    2017-11-12 17:04:00    2017-11-12 17:04:00
135190    39565    546    2017-11-12 07:44:00    2017-11-12 07:44:00
135191    39565    883    2017-11-12 10:47:00    2017-11-12 10:47:00
135192    39565    665    2017-11-12 12:58:00    2017-11-12 12:58:00
135193    39565    474    2017-11-12 23:19:00    2017-11-12 23:19:00
135194    39565    689    2017-11-12 14:52:00    2017-11-12 14:52:00
135195    39566    697    2017-11-12 22:01:00    2017-11-12 22:01:00
135196    39566    813    2017-11-12 10:00:00    2017-11-12 10:00:00
135197    39566    869    2017-11-12 23:03:00    2017-11-12 23:03:00
135198    39566    657    2017-11-12 06:10:00    2017-11-12 06:10:00
135199    39566    815    2017-11-12 20:47:00    2017-11-12 20:47:00
135200    39567    493    2017-11-12 10:02:00    2017-11-12 10:02:00
135201    39567    649    2017-11-12 09:01:00    2017-11-12 09:01:00
135202    39567    640    2017-11-12 02:07:00    2017-11-12 02:07:00
135203    39567    802    2017-11-12 09:23:00    2017-11-12 09:23:00
135204    39567    652    2017-11-12 15:48:00    2017-11-12 15:48:00
135205    39568    731    2017-11-12 15:10:00    2017-11-12 15:10:00
135206    39568    515    2017-11-12 08:18:00    2017-11-12 08:18:00
135207    39568    835    2017-11-12 12:12:00    2017-11-12 12:12:00
135208    39568    672    2017-11-12 07:06:00    2017-11-12 07:06:00
135209    39568    731    2017-11-12 18:50:00    2017-11-12 18:50:00
135210    39569    579    2017-11-12 23:24:00    2017-11-12 23:24:00
135211    39569    663    2017-11-12 13:04:00    2017-11-12 13:04:00
135212    39569    623    2017-11-12 07:54:00    2017-11-12 07:54:00
135213    39569    951    2017-11-12 10:14:00    2017-11-12 10:14:00
135214    39569    485    2017-11-12 20:00:00    2017-11-12 20:00:00
135215    39570    581    2017-11-12 09:06:00    2017-11-12 09:06:00
135216    39570    524    2017-11-12 01:01:00    2017-11-12 01:01:00
135217    39570    899    2017-11-12 06:51:00    2017-11-12 06:51:00
135218    39570    954    2017-11-12 16:16:00    2017-11-12 16:16:00
135219    39570    941    2017-11-12 17:20:00    2017-11-12 17:20:00
135220    39571    688    2017-11-12 07:49:00    2017-11-12 07:49:00
135221    39571    673    2017-11-12 19:40:00    2017-11-12 19:40:00
135222    39571    919    2017-11-12 11:30:00    2017-11-12 11:30:00
135223    39571    528    2017-11-12 12:30:00    2017-11-12 12:30:00
135224    39571    891    2017-11-12 23:03:00    2017-11-12 23:03:00
135225    39572    653    2017-11-12 19:18:00    2017-11-12 19:18:00
135226    39572    463    2017-11-12 23:27:00    2017-11-12 23:27:00
135227    39572    533    2017-11-12 13:45:00    2017-11-12 13:45:00
135228    39572    789    2017-11-12 22:16:00    2017-11-12 22:16:00
135229    39572    516    2017-11-12 12:14:00    2017-11-12 12:14:00
135230    39573    853    2017-11-12 01:07:00    2017-11-12 01:07:00
135231    39573    510    2017-11-12 16:07:00    2017-11-12 16:07:00
135232    39573    738    2017-11-12 11:51:00    2017-11-12 11:51:00
135233    39573    652    2017-11-12 22:03:00    2017-11-12 22:03:00
135234    39573    739    2017-11-12 02:28:00    2017-11-12 02:28:00
135235    39574    699    2017-11-12 14:54:00    2017-11-12 14:54:00
135236    39574    524    2017-11-12 18:30:00    2017-11-12 18:30:00
135237    39574    713    2017-11-12 22:37:00    2017-11-12 22:37:00
135238    39574    851    2017-11-12 12:59:00    2017-11-12 12:59:00
135239    39574    722    2017-11-12 22:00:00    2017-11-12 22:00:00
135240    39575    706    2017-11-12 14:40:00    2017-11-12 14:40:00
135241    39575    909    2017-11-12 06:14:00    2017-11-12 06:14:00
135242    39575    505    2017-11-12 20:40:00    2017-11-12 20:40:00
135243    39575    667    2017-11-12 16:46:00    2017-11-12 16:46:00
135244    39575    821    2017-11-12 02:54:00    2017-11-12 02:54:00
135245    39576    528    2017-11-12 01:15:00    2017-11-12 01:15:00
135246    39576    629    2017-11-12 05:32:00    2017-11-12 05:32:00
135247    39576    932    2017-11-12 05:27:00    2017-11-12 05:27:00
135248    39576    516    2017-11-12 02:14:00    2017-11-12 02:14:00
135249    39576    935    2017-11-12 19:18:00    2017-11-12 19:18:00
135250    39577    653    2017-11-12 07:50:00    2017-11-12 07:50:00
135251    39577    814    2017-11-12 19:38:00    2017-11-12 19:38:00
135252    39577    478    2017-11-12 15:35:00    2017-11-12 15:35:00
135253    39577    513    2017-11-12 14:16:00    2017-11-12 14:16:00
135254    39577    771    2017-11-12 03:07:00    2017-11-12 03:07:00
135255    39578    876    2017-11-12 19:23:00    2017-11-12 19:23:00
135256    39578    914    2017-11-12 10:54:00    2017-11-12 10:54:00
135257    39578    554    2017-11-12 11:17:00    2017-11-12 11:17:00
135258    39578    529    2017-11-12 06:51:00    2017-11-12 06:51:00
135259    39578    499    2017-11-12 07:25:00    2017-11-12 07:25:00
135260    39579    764    2017-11-12 20:18:00    2017-11-12 20:18:00
135261    39579    705    2017-11-12 16:52:00    2017-11-12 16:52:00
135262    39579    604    2017-11-12 09:37:00    2017-11-12 09:37:00
135263    39579    906    2017-11-12 12:08:00    2017-11-12 12:08:00
135264    39579    710    2017-11-12 07:09:00    2017-11-12 07:09:00
135265    39580    759    2017-11-12 18:43:00    2017-11-12 18:43:00
135266    39580    848    2017-11-12 15:13:00    2017-11-12 15:13:00
135267    39580    546    2017-11-12 05:14:00    2017-11-12 05:14:00
135268    39580    626    2017-11-12 01:45:00    2017-11-12 01:45:00
135269    39580    498    2017-11-12 03:52:00    2017-11-12 03:52:00
135270    39581    758    2017-11-12 03:35:00    2017-11-12 03:35:00
135271    39581    955    2017-11-12 19:13:00    2017-11-12 19:13:00
135272    39581    589    2017-11-12 21:08:00    2017-11-12 21:08:00
135273    39581    738    2017-11-12 23:04:00    2017-11-12 23:04:00
135274    39581    919    2017-11-12 05:00:00    2017-11-12 05:00:00
135275    39582    939    2017-11-12 15:22:00    2017-11-12 15:22:00
135276    39582    557    2017-11-12 12:05:00    2017-11-12 12:05:00
135277    39582    864    2017-11-12 08:23:00    2017-11-12 08:23:00
135278    39582    786    2017-11-12 16:06:00    2017-11-12 16:06:00
135279    39582    863    2017-11-12 22:45:00    2017-11-12 22:45:00
135280    39583    596    2017-11-12 12:07:00    2017-11-12 12:07:00
135281    39583    623    2017-11-12 19:00:00    2017-11-12 19:00:00
135282    39583    529    2017-11-12 05:17:00    2017-11-12 05:17:00
135283    39583    722    2017-11-12 04:13:00    2017-11-12 04:13:00
135284    39583    626    2017-11-12 04:06:00    2017-11-12 04:06:00
135285    39584    702    2017-11-12 13:00:00    2017-11-12 13:00:00
135286    39584    756    2017-11-12 14:47:00    2017-11-12 14:47:00
135287    39584    661    2017-11-12 17:13:00    2017-11-12 17:13:00
135288    39584    936    2017-11-12 07:51:00    2017-11-12 07:51:00
135289    39584    895    2017-11-12 05:38:00    2017-11-12 05:38:00
135290    39585    655    2017-11-12 06:58:00    2017-11-12 06:58:00
135291    39585    604    2017-11-12 10:57:00    2017-11-12 10:57:00
135292    39585    614    2017-11-12 14:59:00    2017-11-12 14:59:00
135293    39585    722    2017-11-12 22:41:00    2017-11-12 22:41:00
135294    39585    777    2017-11-12 16:20:00    2017-11-12 16:20:00
135295    39586    572    2017-11-12 10:26:00    2017-11-12 10:26:00
135296    39586    750    2017-11-12 13:22:00    2017-11-12 13:22:00
135297    39586    722    2017-11-12 12:29:00    2017-11-12 12:29:00
135298    39586    578    2017-11-12 18:17:00    2017-11-12 18:17:00
135299    39586    549    2017-11-12 05:24:00    2017-11-12 05:24:00
135300    39587    856    2017-11-12 12:47:00    2017-11-12 12:47:00
135301    39587    952    2017-11-12 03:52:00    2017-11-12 03:52:00
135302    39587    466    2017-11-12 04:08:00    2017-11-12 04:08:00
135303    39587    464    2017-11-12 15:01:00    2017-11-12 15:01:00
135304    39587    688    2017-11-12 06:22:00    2017-11-12 06:22:00
135305    39588    492    2017-11-12 02:58:00    2017-11-12 02:58:00
135306    39588    917    2017-11-12 16:57:00    2017-11-12 16:57:00
135307    39588    958    2017-11-12 07:02:00    2017-11-12 07:02:00
135308    39588    516    2017-11-12 06:27:00    2017-11-12 06:27:00
135309    39588    874    2017-11-12 15:48:00    2017-11-12 15:48:00
135310    39589    617    2017-11-12 14:46:00    2017-11-12 14:46:00
135311    39589    658    2017-11-12 21:12:00    2017-11-12 21:12:00
135312    39589    529    2017-11-12 06:08:00    2017-11-12 06:08:00
135313    39589    627    2017-11-12 20:01:00    2017-11-12 20:01:00
135314    39589    680    2017-11-12 12:24:00    2017-11-12 12:24:00
135315    39590    533    2017-11-12 19:20:00    2017-11-12 19:20:00
135316    39590    530    2017-11-12 12:12:00    2017-11-12 12:12:00
135317    39590    772    2017-11-12 19:02:00    2017-11-12 19:02:00
135318    39590    783    2017-11-12 19:28:00    2017-11-12 19:28:00
135319    39590    562    2017-11-12 11:35:00    2017-11-12 11:35:00
135320    39591    666    2017-11-12 06:49:00    2017-11-12 06:49:00
135321    39591    841    2017-11-12 19:33:00    2017-11-12 19:33:00
135322    39591    800    2017-11-12 21:01:00    2017-11-12 21:01:00
135323    39591    718    2017-11-12 15:27:00    2017-11-12 15:27:00
135324    39591    893    2017-11-12 04:45:00    2017-11-12 04:45:00
135325    39592    472    2017-11-12 10:57:00    2017-11-12 10:57:00
135326    39592    947    2017-11-12 12:41:00    2017-11-12 12:41:00
135327    39592    948    2017-11-12 21:56:00    2017-11-12 21:56:00
135328    39592    515    2017-11-12 10:30:00    2017-11-12 10:30:00
135329    39592    615    2017-11-12 02:39:00    2017-11-12 02:39:00
135330    39593    806    2017-11-12 17:45:00    2017-11-12 17:45:00
135331    39593    651    2017-11-12 22:01:00    2017-11-12 22:01:00
135332    39593    518    2017-11-12 22:33:00    2017-11-12 22:33:00
135333    39593    879    2017-11-12 15:15:00    2017-11-12 15:15:00
135334    39593    463    2017-11-12 22:54:00    2017-11-12 22:54:00
135335    39594    513    2017-11-12 08:35:00    2017-11-12 08:35:00
135336    39594    634    2017-11-12 21:31:00    2017-11-12 21:31:00
135337    39594    935    2017-11-12 02:34:00    2017-11-12 02:34:00
135338    39594    936    2017-11-12 13:00:00    2017-11-12 13:00:00
135339    39594    751    2017-11-12 09:45:00    2017-11-12 09:45:00
135340    39595    825    2017-11-12 04:51:00    2017-11-12 04:51:00
135341    39595    790    2017-11-12 07:53:00    2017-11-12 07:53:00
135342    39595    475    2017-11-12 08:48:00    2017-11-12 08:48:00
135343    39595    516    2017-11-12 11:45:00    2017-11-12 11:45:00
135344    39595    594    2017-11-12 11:58:00    2017-11-12 11:58:00
135345    39596    757    2017-11-12 17:46:00    2017-11-12 17:46:00
135346    39596    832    2017-11-12 04:06:00    2017-11-12 04:06:00
135347    39596    587    2017-11-12 01:09:00    2017-11-12 01:09:00
135348    39596    685    2017-11-12 22:09:00    2017-11-12 22:09:00
135349    39596    827    2017-11-12 18:00:00    2017-11-12 18:00:00
135350    39597    644    2017-11-12 16:14:00    2017-11-12 16:14:00
135351    39597    797    2017-11-12 20:01:00    2017-11-12 20:01:00
135352    39597    955    2017-11-12 02:37:00    2017-11-12 02:37:00
135353    39597    727    2017-11-12 15:37:00    2017-11-12 15:37:00
135354    39597    642    2017-11-12 04:38:00    2017-11-12 04:38:00
135355    39598    793    2017-11-12 05:12:00    2017-11-12 05:12:00
135356    39598    796    2017-11-12 19:35:00    2017-11-12 19:35:00
135357    39598    543    2017-11-12 06:04:00    2017-11-12 06:04:00
135358    39598    606    2017-11-12 05:15:00    2017-11-12 05:15:00
135359    39598    554    2017-11-12 11:23:00    2017-11-12 11:23:00
135360    39599    927    2017-11-12 20:04:00    2017-11-12 20:04:00
135361    39599    530    2017-11-12 09:19:00    2017-11-12 09:19:00
135362    39599    809    2017-11-12 02:19:00    2017-11-12 02:19:00
135363    39599    564    2017-11-12 22:54:00    2017-11-12 22:54:00
135364    39599    873    2017-11-12 20:31:00    2017-11-12 20:31:00
135365    39600    937    2017-11-12 18:25:00    2017-11-12 18:25:00
135366    39600    554    2017-11-12 07:26:00    2017-11-12 07:26:00
135367    39600    606    2017-11-12 23:00:00    2017-11-12 23:00:00
135368    39600    744    2017-11-12 20:08:00    2017-11-12 20:08:00
135369    39600    540    2017-11-12 05:55:00    2017-11-12 05:55:00
135370    39601    692    2017-11-12 18:49:00    2017-11-12 18:49:00
135371    39601    553    2017-11-12 17:29:00    2017-11-12 17:29:00
135372    39601    766    2017-11-12 07:22:00    2017-11-12 07:22:00
135373    39601    589    2017-11-12 17:21:00    2017-11-12 17:21:00
135374    39601    946    2017-11-12 15:08:00    2017-11-12 15:08:00
135375    39602    477    2017-11-12 12:15:00    2017-11-12 12:15:00
135376    39602    931    2017-11-12 20:42:00    2017-11-12 20:42:00
135377    39602    950    2017-11-12 02:32:00    2017-11-12 02:32:00
135378    39602    954    2017-11-12 20:06:00    2017-11-12 20:06:00
135379    39602    687    2017-11-12 23:09:00    2017-11-12 23:09:00
135380    39603    888    2017-11-12 08:53:00    2017-11-12 08:53:00
135381    39603    904    2017-11-12 16:54:00    2017-11-12 16:54:00
135382    39603    871    2017-11-12 09:45:00    2017-11-12 09:45:00
135383    39603    490    2017-11-12 06:37:00    2017-11-12 06:37:00
135384    39603    929    2017-11-12 05:12:00    2017-11-12 05:12:00
135385    39604    540    2017-11-12 04:00:00    2017-11-12 04:00:00
135386    39604    929    2017-11-12 10:50:00    2017-11-12 10:50:00
135387    39604    925    2017-11-12 13:16:00    2017-11-12 13:16:00
135388    39604    959    2017-11-12 18:40:00    2017-11-12 18:40:00
135389    39604    932    2017-11-12 16:33:00    2017-11-12 16:33:00
135390    39605    887    2017-11-12 08:35:00    2017-11-12 08:35:00
135391    39605    474    2017-11-12 17:27:00    2017-11-12 17:27:00
135392    39605    862    2017-11-12 18:26:00    2017-11-12 18:26:00
135393    39605    516    2017-11-12 21:07:00    2017-11-12 21:07:00
135394    39605    466    2017-11-12 14:38:00    2017-11-12 14:38:00
135395    39606    474    2017-11-12 20:04:00    2017-11-12 20:04:00
135396    39606    470    2017-11-12 23:09:00    2017-11-12 23:09:00
135397    39606    860    2017-11-12 11:55:00    2017-11-12 11:55:00
135398    39606    856    2017-11-12 22:18:00    2017-11-12 22:18:00
135399    39606    719    2017-11-12 09:00:00    2017-11-12 09:00:00
135400    39607    763    2017-11-12 15:42:00    2017-11-12 15:42:00
135401    39607    558    2017-11-12 19:41:00    2017-11-12 19:41:00
135402    39607    713    2017-11-12 20:35:00    2017-11-12 20:35:00
135403    39607    863    2017-11-12 22:48:00    2017-11-12 22:48:00
135404    39607    794    2017-11-12 04:24:00    2017-11-12 04:24:00
135405    39608    646    2017-11-12 21:02:00    2017-11-12 21:02:00
135406    39608    831    2017-11-12 14:15:00    2017-11-12 14:15:00
135407    39608    545    2017-11-12 11:40:00    2017-11-12 11:40:00
135408    39608    913    2017-11-12 08:45:00    2017-11-12 08:45:00
135409    39608    513    2017-11-12 01:20:00    2017-11-12 01:20:00
135410    39609    836    2017-11-12 19:52:00    2017-11-12 19:52:00
135411    39609    883    2017-11-12 01:14:00    2017-11-12 01:14:00
135412    39609    804    2017-11-12 05:05:00    2017-11-12 05:05:00
135413    39609    637    2017-11-12 22:36:00    2017-11-12 22:36:00
135414    39609    666    2017-11-12 16:32:00    2017-11-12 16:32:00
135415    39610    693    2017-11-12 04:33:00    2017-11-12 04:33:00
135416    39610    516    2017-11-12 14:27:00    2017-11-12 14:27:00
135417    39610    646    2017-11-12 23:04:00    2017-11-12 23:04:00
135418    39610    899    2017-11-12 09:32:00    2017-11-12 09:32:00
135419    39610    564    2017-11-12 06:50:00    2017-11-12 06:50:00
135420    39611    546    2017-11-12 05:34:00    2017-11-12 05:34:00
135421    39611    884    2017-11-12 02:39:00    2017-11-12 02:39:00
135422    39611    751    2017-11-12 19:34:00    2017-11-12 19:34:00
135423    39611    796    2017-11-12 09:27:00    2017-11-12 09:27:00
135424    39611    812    2017-11-12 16:54:00    2017-11-12 16:54:00
135425    39612    923    2017-11-12 21:56:00    2017-11-12 21:56:00
135426    39612    798    2017-11-12 19:31:00    2017-11-12 19:31:00
135427    39612    536    2017-11-12 08:50:00    2017-11-12 08:50:00
135428    39612    846    2017-11-12 04:58:00    2017-11-12 04:58:00
135429    39612    570    2017-11-12 04:57:00    2017-11-12 04:57:00
135430    39613    728    2017-11-12 18:55:00    2017-11-12 18:55:00
135431    39613    661    2017-11-12 13:21:00    2017-11-12 13:21:00
135432    39613    761    2017-11-12 20:49:00    2017-11-12 20:49:00
135433    39613    495    2017-11-12 03:44:00    2017-11-12 03:44:00
135434    39613    905    2017-11-12 08:30:00    2017-11-12 08:30:00
135435    39614    556    2017-11-12 18:53:00    2017-11-12 18:53:00
135436    39614    527    2017-11-12 13:02:00    2017-11-12 13:02:00
135437    39614    920    2017-11-12 19:29:00    2017-11-12 19:29:00
135438    39614    778    2017-11-12 23:05:00    2017-11-12 23:05:00
135439    39614    653    2017-11-12 18:49:00    2017-11-12 18:49:00
135440    39615    665    2017-11-12 18:02:00    2017-11-12 18:02:00
135441    39615    598    2017-11-12 01:06:00    2017-11-12 01:06:00
135442    39615    534    2017-11-12 08:21:00    2017-11-12 08:21:00
135443    39615    634    2017-11-12 22:57:00    2017-11-12 22:57:00
135444    39615    568    2017-11-12 07:56:00    2017-11-12 07:56:00
135445    39616    778    2017-11-12 04:00:00    2017-11-12 04:00:00
135446    39616    560    2017-11-12 17:15:00    2017-11-12 17:15:00
135447    39616    914    2017-11-12 17:44:00    2017-11-12 17:44:00
135448    39616    953    2017-11-12 12:11:00    2017-11-12 12:11:00
135449    39616    666    2017-11-12 11:32:00    2017-11-12 11:32:00
135450    39617    837    2017-11-12 03:53:00    2017-11-12 03:53:00
135451    39617    815    2017-11-12 22:35:00    2017-11-12 22:35:00
135452    39617    479    2017-11-12 15:25:00    2017-11-12 15:25:00
135453    39617    471    2017-11-12 04:02:00    2017-11-12 04:02:00
135454    39617    944    2017-11-12 22:04:00    2017-11-12 22:04:00
135455    39618    746    2017-11-12 02:08:00    2017-11-12 02:08:00
135456    39618    760    2017-11-12 03:06:00    2017-11-12 03:06:00
135457    39618    953    2017-11-12 13:29:00    2017-11-12 13:29:00
135458    39618    619    2017-11-12 10:47:00    2017-11-12 10:47:00
135459    39618    564    2017-11-12 08:52:00    2017-11-12 08:52:00
\.


--
-- Data for Name: schema_migrations; Type: TABLE DATA; Schema: public; Owner: -
--

COPY public.schema_migrations (version) FROM stdin;
20160412154252
20160413202755
20160413203740
20160413204138
20160420095045
20160420144201
20160420150643
20160420195428
20160421065741
20160421070722
20160421072550
20160421101528
20160428111225
20160428122735
20160930081834
20161014094914
20161014123249
20161018174412
\.


--
-- Name: actor_images_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.actor_images_id_seq', 5499, true);


--
-- Name: actors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.actors_id_seq', 1556, true);


--
-- Name: comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.comments_id_seq', 35249, true);


--
-- Name: countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.countries_id_seq', 37, true);


--
-- Name: customers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.customers_id_seq', 39618, true);


--
-- Name: genres_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.genres_id_seq', 26, true);


--
-- Name: movies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.movies_id_seq', 961, true);


--
-- Name: rentals_id_seq; Type: SEQUENCE SET; Schema: public; Owner: -
--

SELECT pg_catalog.setval('public.rentals_id_seq', 135459, true);


--
-- Name: actor_images actor_images_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.actor_images
    ADD CONSTRAINT actor_images_pkey PRIMARY KEY (id);


--
-- Name: actors actors_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.actors
    ADD CONSTRAINT actors_pkey PRIMARY KEY (id);


--
-- Name: comments comments_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.comments
    ADD CONSTRAINT comments_pkey PRIMARY KEY (id);


--
-- Name: countries countries_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.countries
    ADD CONSTRAINT countries_pkey PRIMARY KEY (id);


--
-- Name: customers customers_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.customers
    ADD CONSTRAINT customers_pkey PRIMARY KEY (id);


--
-- Name: genres genres_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.genres
    ADD CONSTRAINT genres_pkey PRIMARY KEY (id);


--
-- Name: movies movies_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.movies
    ADD CONSTRAINT movies_pkey PRIMARY KEY (id);


--
-- Name: rentals rentals_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--

ALTER TABLE ONLY public.rentals
    ADD CONSTRAINT rentals_pkey PRIMARY KEY (id);


--
-- Name: index_actor_images_on_actor_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_actor_images_on_actor_id ON public.actor_images USING btree (actor_id);


--
-- Name: index_actors_movies_on_actor_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_actors_movies_on_actor_id ON public.actors_movies USING btree (actor_id);


--
-- Name: index_actors_movies_on_movie_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_actors_movies_on_movie_id ON public.actors_movies USING btree (movie_id);


--
-- Name: index_comments_on_customer_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_comments_on_customer_id ON public.comments USING btree (customer_id);


--
-- Name: index_comments_on_movie_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_comments_on_movie_id ON public.comments USING btree (movie_id);


--
-- Name: index_countries_movies_on_country_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_countries_movies_on_country_id ON public.countries_movies USING btree (country_id);


--
-- Name: index_countries_movies_on_movie_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_countries_movies_on_movie_id ON public.countries_movies USING btree (movie_id);


--
-- Name: index_customers_on_email; Type: INDEX; Schema: public; Owner: -
--

CREATE UNIQUE INDEX index_customers_on_email ON public.customers USING btree (email);


--
-- Name: index_customers_on_reset_password_token; Type: INDEX; Schema: public; Owner: -
--

CREATE UNIQUE INDEX index_customers_on_reset_password_token ON public.customers USING btree (reset_password_token);


--
-- Name: index_genres_movies_on_genre_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_genres_movies_on_genre_id ON public.genres_movies USING btree (genre_id);


--
-- Name: index_genres_movies_on_movie_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_genres_movies_on_movie_id ON public.genres_movies USING btree (movie_id);


--
-- Name: index_rentals_on_customer_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_rentals_on_customer_id ON public.rentals USING btree (customer_id);


--
-- Name: index_rentals_on_movie_id; Type: INDEX; Schema: public; Owner: -
--

CREATE INDEX index_rentals_on_movie_id ON public.rentals USING btree (movie_id);


--
-- Name: unique_schema_migrations; Type: INDEX; Schema: public; Owner: -
--

CREATE UNIQUE INDEX unique_schema_migrations ON public.schema_migrations USING btree (version);


--
-- PostgreSQL database dump complete
--